
    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_c00000 {
    display:none;
  }
  .loading-indicator_c00000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00000 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_c00000 { 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_c00000" -> "#page-container .classname_c00000")
 */
.pf_c00000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00000 { /* 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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00000 { /* 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_c00000 { /* 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_c00000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00000 {overflow:visible;}
  }
}
.c_c00000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00000 { /* 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_c00000:after { /* webkit #35443 */
  content: '';
}
.t_c00000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00000 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 */
}
.__c00000 { /* 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_c00000 { /* info for Javascript */
  display:none;
}
.l_c00000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00000: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_c00000 {
    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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00000.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_c00000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_9691fc1bdbc69af01f5bbe9e.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.000000;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_c00000{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_c00000{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);}
.v0_c00000{vertical-align:0.000000px;}
.ls1_c00000{letter-spacing:0.000000px;}
.ls0_c00000{letter-spacing:2.666130px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{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__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:-29.727347px;}
.ws1_c00000{word-spacing:0.000000px;}
._2_c00000{margin-left:-4.665727px;}
._0_c00000{margin-left:-2.799436px;}
._1_c00000{margin-left:-1.732984px;}
._3_c00000{width:3.066049px;}
.fc0_c00000{color:rgb(35,31,32);}
.fs0_c00000{font-size:133.306488px;}
.y0_c00000{bottom:0.000000px;}
.y4_c00000{bottom:119.755360px;}
.y3_c00000{bottom:339.285199px;}
.y2_c00000{bottom:379.743718px;}
.y1_c00000{bottom:420.202237px;}
.h2_c00000{height:106.645190px;}
.h1_c00000{height:1269.000000px;}
.h0_c00000{height:1269.359985px;}
.w0_c00000{width:948.600036px;}
.w1_c00000{width:948.750000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:75.194810px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls1_c00000{letter-spacing:0.000000pt;}
.ls0_c00000{letter-spacing:2.369893pt;}
.ws0_c00000{word-spacing:-26.424308pt;}
.ws1_c00000{word-spacing:0.000000pt;}
._2_c00000{margin-left:-4.147313pt;}
._0_c00000{margin-left:-2.488388pt;}
._1_c00000{margin-left:-1.540431pt;}
._3_c00000{width:2.725377pt;}
.fs0_c00000{font-size:118.494656pt;}
.y0_c00000{bottom:0.000000pt;}
.y4_c00000{bottom:106.449209pt;}
.y3_c00000{bottom:301.586843pt;}
.y2_c00000{bottom:337.549971pt;}
.y1_c00000{bottom:373.513099pt;}
.h2_c00000{height:94.795725pt;}
.h1_c00000{height:1128.000000pt;}
.h0_c00000{height:1128.319987pt;}
.w0_c00000{width:843.200032pt;}
.w1_c00000{width:843.333333pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:66.839831pt;}
}





/* 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_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 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_c00001 { 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_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* 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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* 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_c00001 { /* 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_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* 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_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 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 */
}
.__c00001 { /* 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_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001: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_c00001 {
    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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.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_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_562464e2e7dd140d945b962e.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;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:ff2_c00001;src:url('chunks/assets/font_625c42d95280eb7e9327e94d.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;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:ff3_c00001;src:url('chunks/assets/font_337d71ecdbec9af6177e629d.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;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:ff4_c00001;src:url('chunks/assets/font_a7213c443ae23284f3c85780.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.281250;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_c00001{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_c00001{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);}
.v0_c00001{vertical-align:0.000000px;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls0_c00001{letter-spacing:29.885208px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{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__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c00001{word-spacing:-1.972674px;}
.wse_c00001{word-spacing:-1.554228px;}
.ws17_c00001{word-spacing:-1.494450px;}
.ws7_c00001{word-spacing:-1.076004px;}
.ws5_c00001{word-spacing:-0.777114px;}
.ws10_c00001{word-spacing:-0.538002px;}
.ws6_c00001{word-spacing:-0.478224px;}
.ws0_c00001{word-spacing:0.000000px;}
.ws15_c00001{word-spacing:1.135782px;}
.wsf_c00001{word-spacing:1.374894px;}
.wsc_c00001{word-spacing:1.434672px;}
.ws1a_c00001{word-spacing:1.793340px;}
.ws12_c00001{word-spacing:2.092230px;}
.ws19_c00001{word-spacing:2.331342px;}
.ws4_c00001{word-spacing:2.749788px;}
.ws9_c00001{word-spacing:3.108456px;}
.ws8_c00001{word-spacing:3.228012px;}
.ws1_c00001{word-spacing:3.467124px;}
.ws18_c00001{word-spacing:3.526902px;}
.ws3_c00001{word-spacing:3.706236px;}
.ws14_c00001{word-spacing:3.825792px;}
.wsb_c00001{word-spacing:4.005126px;}
.ws16_c00001{word-spacing:4.423572px;}
.ws2_c00001{word-spacing:4.782240px;}
.ws13_c00001{word-spacing:4.901796px;}
.wsa_c00001{word-spacing:5.559354px;}
.wsd_c00001{word-spacing:8.189586px;}
._11_c00001{margin-left:-24.867648px;}
._13_c00001{margin-left:-6.994026px;}
._2_c00001{margin-left:-5.499576px;}
._c_c00001{margin-left:-4.124682px;}
._3_c00001{margin-left:-2.391120px;}
._0_c00001{margin-left:-1.076004px;}
._10_c00001{width:5.858244px;}
._5_c00001{width:15.183612px;}
._4_c00001{width:17.395398px;}
._6_c00001{width:18.411624px;}
._a_c00001{width:20.145186px;}
._9_c00001{width:22.835196px;}
._d_c00001{width:23.851422px;}
._12_c00001{width:26.242542px;}
._7_c00001{width:27.796770px;}
._e_c00001{width:29.052108px;}
._1_c00001{width:30.546558px;}
._f_c00001{width:31.622562px;}
._8_c00001{width:35.269020px;}
._b_c00001{width:42.920604px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:59.778000px;}
.y28_c00001{bottom:-44.832000px;}
.y0_c00001{bottom:0.000000px;}
.y27_c00001{bottom:132.081000px;}
.y26_c00001{bottom:150.013500px;}
.y25_c00001{bottom:167.946000px;}
.y24_c00001{bottom:185.878500px;}
.y23_c00001{bottom:218.382000px;}
.y22_c00001{bottom:262.653000px;}
.y21_c00001{bottom:280.585500px;}
.y20_c00001{bottom:298.518000px;}
.y1f_c00001{bottom:316.452000px;}
.y1e_c00001{bottom:334.384500px;}
.y1d_c00001{bottom:352.317000px;}
.y1c_c00001{bottom:382.204500px;}
.y1b_c00001{bottom:400.137000px;}
.y1a_c00001{bottom:418.071000px;}
.y19_c00001{bottom:447.958500px;}
.y18_c00001{bottom:465.891000px;}
.y17_c00001{bottom:483.823500px;}
.y16_c00001{bottom:501.756000px;}
.y15_c00001{bottom:531.645000px;}
.y14_c00001{bottom:549.577500px;}
.y13_c00001{bottom:567.510000px;}
.y12_c00001{bottom:604.870500px;}
.y11_c00001{bottom:627.286500px;}
.y10_c00001{bottom:645.219000px;}
.yf_c00001{bottom:663.151500px;}
.ye_c00001{bottom:681.084000px;}
.yd_c00001{bottom:699.016500px;}
.yc_c00001{bottom:731.520000px;}
.yb_c00001{bottom:775.791000px;}
.ya_c00001{bottom:793.723500px;}
.y9_c00001{bottom:816.139500px;}
.y8_c00001{bottom:834.073500px;}
.y7_c00001{bottom:852.006000px;}
.y6_c00001{bottom:869.938500px;}
.y5_c00001{bottom:887.871000px;}
.y4_c00001{bottom:910.287000px;}
.y3_c00001{bottom:928.219500px;}
.y2_c00001{bottom:946.152000px;}
.y1_c00001{bottom:978.655500px;}
.h2_c00001{height:58.668838px;}
.h1_c00001{height:60.245016px;}
.h0_c00001{height:1188.000000px;}
.w0_c00001{width:918.000000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:21.600000px;}
.x2_c00001{left:43.059000px;}
.x3_c00001{left:58.959000px;}
.x4_c00001{left:455.263500px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls0_c00001{letter-spacing:26.564629pt;}
.ws11_c00001{word-spacing:-1.753488pt;}
.wse_c00001{word-spacing:-1.381536pt;}
.ws17_c00001{word-spacing:-1.328400pt;}
.ws7_c00001{word-spacing:-0.956448pt;}
.ws5_c00001{word-spacing:-0.690768pt;}
.ws10_c00001{word-spacing:-0.478224pt;}
.ws6_c00001{word-spacing:-0.425088pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.ws15_c00001{word-spacing:1.009584pt;}
.wsf_c00001{word-spacing:1.222128pt;}
.wsc_c00001{word-spacing:1.275264pt;}
.ws1a_c00001{word-spacing:1.594080pt;}
.ws12_c00001{word-spacing:1.859760pt;}
.ws19_c00001{word-spacing:2.072304pt;}
.ws4_c00001{word-spacing:2.444256pt;}
.ws9_c00001{word-spacing:2.763072pt;}
.ws8_c00001{word-spacing:2.869344pt;}
.ws1_c00001{word-spacing:3.081888pt;}
.ws18_c00001{word-spacing:3.135024pt;}
.ws3_c00001{word-spacing:3.294432pt;}
.ws14_c00001{word-spacing:3.400704pt;}
.wsb_c00001{word-spacing:3.560112pt;}
.ws16_c00001{word-spacing:3.932064pt;}
.ws2_c00001{word-spacing:4.250880pt;}
.ws13_c00001{word-spacing:4.357152pt;}
.wsa_c00001{word-spacing:4.941648pt;}
.wsd_c00001{word-spacing:7.279632pt;}
._11_c00001{margin-left:-22.104576pt;}
._13_c00001{margin-left:-6.216912pt;}
._2_c00001{margin-left:-4.888512pt;}
._c_c00001{margin-left:-3.666384pt;}
._3_c00001{margin-left:-2.125440pt;}
._0_c00001{margin-left:-0.956448pt;}
._10_c00001{width:5.207328pt;}
._5_c00001{width:13.496544pt;}
._4_c00001{width:15.462576pt;}
._6_c00001{width:16.365888pt;}
._a_c00001{width:17.906832pt;}
._9_c00001{width:20.297952pt;}
._d_c00001{width:21.201264pt;}
._12_c00001{width:23.326704pt;}
._7_c00001{width:24.708240pt;}
._e_c00001{width:25.824096pt;}
._1_c00001{width:27.152496pt;}
._f_c00001{width:28.108944pt;}
._8_c00001{width:31.350240pt;}
._b_c00001{width:38.151648pt;}
.fs0_c00001{font-size:53.136000pt;}
.y28_c00001{bottom:-39.850667pt;}
.y0_c00001{bottom:0.000000pt;}
.y27_c00001{bottom:117.405333pt;}
.y26_c00001{bottom:133.345333pt;}
.y25_c00001{bottom:149.285333pt;}
.y24_c00001{bottom:165.225333pt;}
.y23_c00001{bottom:194.117333pt;}
.y22_c00001{bottom:233.469333pt;}
.y21_c00001{bottom:249.409333pt;}
.y20_c00001{bottom:265.349333pt;}
.y1f_c00001{bottom:281.290667pt;}
.y1e_c00001{bottom:297.230667pt;}
.y1d_c00001{bottom:313.170667pt;}
.y1c_c00001{bottom:339.737333pt;}
.y1b_c00001{bottom:355.677333pt;}
.y1a_c00001{bottom:371.618667pt;}
.y19_c00001{bottom:398.185333pt;}
.y18_c00001{bottom:414.125333pt;}
.y17_c00001{bottom:430.065333pt;}
.y16_c00001{bottom:446.005333pt;}
.y15_c00001{bottom:472.573333pt;}
.y14_c00001{bottom:488.513333pt;}
.y13_c00001{bottom:504.453333pt;}
.y12_c00001{bottom:537.662667pt;}
.y11_c00001{bottom:557.588000pt;}
.y10_c00001{bottom:573.528000pt;}
.yf_c00001{bottom:589.468000pt;}
.ye_c00001{bottom:605.408000pt;}
.yd_c00001{bottom:621.348000pt;}
.yc_c00001{bottom:650.240000pt;}
.yb_c00001{bottom:689.592000pt;}
.ya_c00001{bottom:705.532000pt;}
.y9_c00001{bottom:725.457333pt;}
.y8_c00001{bottom:741.398667pt;}
.y7_c00001{bottom:757.338667pt;}
.y6_c00001{bottom:773.278667pt;}
.y5_c00001{bottom:789.218667pt;}
.y4_c00001{bottom:809.144000pt;}
.y3_c00001{bottom:825.084000pt;}
.y2_c00001{bottom:841.024000pt;}
.y1_c00001{bottom:869.916000pt;}
.h2_c00001{height:52.150078pt;}
.h1_c00001{height:53.551125pt;}
.h0_c00001{height:1056.000000pt;}
.w0_c00001{width:816.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:19.200000pt;}
.x2_c00001{left:38.274667pt;}
.x3_c00001{left:52.408000pt;}
.x4_c00001{left:404.678667pt;}
}





/* 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_c00002 {
    display:none;
  }
  .loading-indicator_c00002.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00002 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_c00002 { 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_c00002" -> "#page-container .classname_c00002")
 */
.pf_c00002 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00002 { /* 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_c00002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00002 { /* 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_c00002 { /* 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_c00002 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00002 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00002 {overflow:visible;}
  }
}
.c_c00002 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00002 { /* 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_c00002:after { /* webkit #35443 */
  content: '';
}
.t_c00002:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00002 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 */
}
.__c00002 { /* 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_c00002 { /* info for Javascript */
  display:none;
}
.l_c00002 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00002 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00002 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00002: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_c00002 {
    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_c00002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00002.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_c00002 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00002{font-family:sans-serif;visibility:hidden;}
.sc__c00002{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
}
.y0_c00002{bottom:0.000000px;}
.h0_c00002{height:5135.178225px;}
.h1_c00002{height:5135.250000px;}
.w0_c00002{width:3898.356075px;}
.w1_c00002{width:3898.500000px;}
.x0_c00002{left:0.000000px;}
@media print{
.y0_c00002{bottom:0.000000pt;}
.h0_c00002{height:4564.602867pt;}
.h1_c00002{height:4564.666667pt;}
.w0_c00002{width:3465.205400pt;}
.w1_c00002{width:3465.333333pt;}
.x0_c00002{left:0.000000pt;}
}





/* 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_c00003 {
    display:none;
  }
  .loading-indicator_c00003.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00003 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_c00003 { 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_c00003" -> "#page-container .classname_c00003")
 */
.pf_c00003 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00003 { /* 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_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00003 { /* 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_c00003 { /* 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_c00003 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00003 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00003 {overflow:visible;}
  }
}
.c_c00003 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00003 { /* 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_c00003:after { /* webkit #35443 */
  content: '';
}
.t_c00003:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00003 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 */
}
.__c00003 { /* 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_c00003 { /* info for Javascript */
  display:none;
}
.l_c00003 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00003 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00003 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00003: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_c00003 {
    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_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00003.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_c00003 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_802220e544de0ec2325ddc83.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.000000;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;}
.mb_c00003{transform:matrix(0.000000,4.140000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,4.140000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,4.140000,-0.250000,0.000000,0,0);}
.mc_c00003{transform:matrix(0.000000,2.100000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.100000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.100000,-0.250000,0.000000,0,0);}
.m4_c00003{transform:matrix(0.000000,2.070000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.070000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.070000,-0.250000,0.000000,0,0);}
.m2_c00003{transform:matrix(0.000000,2.040000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,2.040000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,2.040000,-0.250000,0.000000,0,0);}
.me_c00003{transform:matrix(0.000000,1.680000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.680000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.680000,-0.250000,0.000000,0,0);}
.ma_c00003{transform:matrix(0.000000,1.500000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-0.250000,0.000000,0,0);}
.m9_c00003{transform:matrix(0.000000,1.380000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.380000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.380000,-0.250000,0.000000,0,0);}
.m6_c00003{transform:matrix(0.000000,1.182750,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,1.182750,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.182750,-0.250000,0.000000,0,0);}
.m7_c00003{transform:matrix(0.000000,0.780000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.780000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.780000,-0.250000,0.000000,0,0);}
.m3_c00003{transform:matrix(0.000000,0.750000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.750000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.750000,-0.250000,0.000000,0,0);}
.md_c00003{transform:matrix(0.000000,0.600000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.600000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.600000,-0.250000,0.000000,0,0);}
.m8_c00003{transform:matrix(0.000000,0.500000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.500000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.500000,-0.250000,0.000000,0,0);}
.m5_c00003{transform:matrix(0.000000,0.428500,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.428500,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.428500,-0.250000,0.000000,0,0);}
.m1_c00003{transform:matrix(0.000000,0.390000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.390000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.390000,-0.250000,0.000000,0,0);}
.m0_c00003{transform:matrix(0.000000,0.030000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.030000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.030000,-0.250000,0.000000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls0_c00003{letter-spacing:0.000000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{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__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:0.000000px;}
.fc0_c00003{color:transparent;}
.fs3_c00003{font-size:12.000000px;}
.fs0_c00003{font-size:24.000000px;}
.fs4_c00003{font-size:30.000000px;}
.fs2_c00003{font-size:36.000000px;}
.fs1_c00003{font-size:42.000000px;}
.y0_c00003{bottom:0.000000px;}
.y3_c00003{bottom:24.450000px;}
.y5_c00003{bottom:24.750000px;}
.y7_c00003{bottom:25.050000px;}
.y1_c00003{bottom:42.150000px;}
.y4_c00003{bottom:42.750000px;}
.y6_c00003{bottom:43.050000px;}
.y2_c00003{bottom:43.200000px;}
.h5_c00003{height:12.000000px;}
.h2_c00003{height:24.000000px;}
.h6_c00003{height:30.000000px;}
.h4_c00003{height:36.000000px;}
.h3_c00003{height:42.000000px;}
.h1_c00003{height:1249.500000px;}
.h0_c00003{height:1249.559967px;}
.w0_c00003{width:948.600036px;}
.w1_c00003{width:948.750000px;}
.x0_c00003{left:0.000000px;}
.xe_c00003{left:399.600000px;}
.xf_c00003{left:401.700000px;}
.xd_c00003{left:408.300000px;}
.xc_c00003{left:417.300000px;}
.xb_c00003{left:427.350000px;}
.xa_c00003{left:429.450000px;}
.x9_c00003{left:437.400000px;}
.x7_c00003{left:446.400000px;}
.x8_c00003{left:453.900000px;}
.x5_c00003{left:457.500000px;}
.x6_c00003{left:459.300000px;}
.x3_c00003{left:466.200000px;}
.x4_c00003{left:469.050000px;}
.x2_c00003{left:474.150000px;}
.x1_c00003{left:517.650000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.fs3_c00003{font-size:10.666667pt;}
.fs0_c00003{font-size:21.333333pt;}
.fs4_c00003{font-size:26.666667pt;}
.fs2_c00003{font-size:32.000000pt;}
.fs1_c00003{font-size:37.333333pt;}
.y0_c00003{bottom:0.000000pt;}
.y3_c00003{bottom:21.733333pt;}
.y5_c00003{bottom:22.000000pt;}
.y7_c00003{bottom:22.266667pt;}
.y1_c00003{bottom:37.466667pt;}
.y4_c00003{bottom:38.000000pt;}
.y6_c00003{bottom:38.266667pt;}
.y2_c00003{bottom:38.400000pt;}
.h5_c00003{height:10.666667pt;}
.h2_c00003{height:21.333333pt;}
.h6_c00003{height:26.666667pt;}
.h4_c00003{height:32.000000pt;}
.h3_c00003{height:37.333333pt;}
.h1_c00003{height:1110.666667pt;}
.h0_c00003{height:1110.719971pt;}
.w0_c00003{width:843.200032pt;}
.w1_c00003{width:843.333333pt;}
.x0_c00003{left:0.000000pt;}
.xe_c00003{left:355.200000pt;}
.xf_c00003{left:357.066667pt;}
.xd_c00003{left:362.933333pt;}
.xc_c00003{left:370.933333pt;}
.xb_c00003{left:379.866667pt;}
.xa_c00003{left:381.733333pt;}
.x9_c00003{left:388.800000pt;}
.x7_c00003{left:396.800000pt;}
.x8_c00003{left:403.466667pt;}
.x5_c00003{left:406.666667pt;}
.x6_c00003{left:408.266667pt;}
.x3_c00003{left:414.400000pt;}
.x4_c00003{left:416.933333pt;}
.x2_c00003{left:421.466667pt;}
.x1_c00003{left:460.133333pt;}
}





/* 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_c00004 {
    display:none;
  }
  .loading-indicator_c00004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00004 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_c00004 { 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_c00004" -> "#page-container .classname_c00004")
 */
.pf_c00004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00004 { /* 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_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00004 { /* 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_c00004 { /* 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_c00004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00004 {overflow:visible;}
  }
}
.c_c00004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00004 { /* 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_c00004:after { /* webkit #35443 */
  content: '';
}
.t_c00004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00004 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 */
}
.__c00004 { /* 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_c00004 { /* info for Javascript */
  display:none;
}
.l_c00004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00004: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_c00004 {
    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_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00004.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_c00004 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00004{font-family:sans-serif;visibility:hidden;}
.sc__c00004{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
}
.y0_c00004{bottom:0.000000px;}
.h1_c00004{height:1249.500000px;}
.h0_c00004{height:1249.559967px;}
.w0_c00004{width:948.600036px;}
.w1_c00004{width:948.750000px;}
.x0_c00004{left:0.000000px;}
@media print{
.y0_c00004{bottom:0.000000pt;}
.h1_c00004{height:1110.666667pt;}
.h0_c00004{height:1110.719971pt;}
.w0_c00004{width:843.200032pt;}
.w1_c00004{width:843.333333pt;}
.x0_c00004{left:0.000000pt;}
}





/* 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_c00005 {
    display:none;
  }
  .loading-indicator_c00005.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00005 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_c00005 { 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_c00005" -> "#page-container .classname_c00005")
 */
.pf_c00005 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00005 { /* 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_c00005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00005 { /* 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_c00005 { /* 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_c00005 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00005 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00005 {overflow:visible;}
  }
}
.c_c00005 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00005 { /* 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_c00005:after { /* webkit #35443 */
  content: '';
}
.t_c00005:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00005 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 */
}
.__c00005 { /* 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_c00005 { /* info for Javascript */
  display:none;
}
.l_c00005 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00005 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00005 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00005: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_c00005 {
    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_c00005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00005.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_c00005 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00005{font-family:sans-serif;visibility:hidden;}
.sc__c00005{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
}
.y0_c00005{bottom:0.000000px;}
.h1_c00005{height:1268.250000px;}
.h0_c00005{height:1268.279937px;}
.w0_c00005{width:948.600036px;}
.w1_c00005{width:948.750000px;}
.x0_c00005{left:0.000000px;}
@media print{
.y0_c00005{bottom:0.000000pt;}
.h1_c00005{height:1127.333333pt;}
.h0_c00005{height:1127.359944pt;}
.w0_c00005{width:843.200032pt;}
.w1_c00005{width:843.333333pt;}
.x0_c00005{left:0.000000pt;}
}





/* 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_c00006 {
    display:none;
  }
  .loading-indicator_c00006.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00006 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_c00006 { 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_c00006" -> "#page-container .classname_c00006")
 */
.pf_c00006 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00006 { /* 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_c00006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00006 { /* 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_c00006 { /* 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_c00006 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00006 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00006 {overflow:visible;}
  }
}
.c_c00006 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00006 { /* 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_c00006:after { /* webkit #35443 */
  content: '';
}
.t_c00006:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00006 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 */
}
.__c00006 { /* 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_c00006 { /* info for Javascript */
  display:none;
}
.l_c00006 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00006 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00006 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00006: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_c00006 {
    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_c00006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00006.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_c00006 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00006{font-family:sans-serif;visibility:hidden;}
.sc__c00006{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
}
.y0_c00006{bottom:0.000000px;}
.h1_c00006{height:1248.000000px;}
.h0_c00006{height:1248.119934px;}
.w0_c00006{width:948.600036px;}
.w1_c00006{width:948.750000px;}
.x0_c00006{left:0.000000px;}
@media print{
.y0_c00006{bottom:0.000000pt;}
.h1_c00006{height:1109.333333pt;}
.h0_c00006{height:1109.439941pt;}
.w0_c00006{width:843.200032pt;}
.w1_c00006{width:843.333333pt;}
.x0_c00006{left:0.000000pt;}
}





/* 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_c00007 {
    display:none;
  }
  .loading-indicator_c00007.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00007 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_c00007 { 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_c00007" -> "#page-container .classname_c00007")
 */
.pf_c00007 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00007 { /* 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_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00007 { /* 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_c00007 { /* 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_c00007 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00007 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00007 {overflow:visible;}
  }
}
.c_c00007 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00007 { /* 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_c00007:after { /* webkit #35443 */
  content: '';
}
.t_c00007:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00007 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 */
}
.__c00007 { /* 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_c00007 { /* info for Javascript */
  display:none;
}
.l_c00007 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00007 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00007 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00007: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_c00007 {
    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_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00007.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_c00007 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00007;src:url('chunks/assets/font_e56fba6cf97c9082f46a9631.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.000000;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_c00007{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls0_c00007{letter-spacing:0.000000px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{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__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:0.000000px;}
.fc0_c00007{color:transparent;}
.fs0_c00007{font-size:48.000000px;}
.y0_c00007{bottom:0.000000px;}
.y1_c00007{bottom:13.650000px;}
.h2_c00007{height:48.000000px;}
.h1_c00007{height:1280.250000px;}
.h0_c00007{height:1280.519990px;}
.w0_c00007{width:948.600036px;}
.w1_c00007{width:948.750000px;}
.x0_c00007{left:0.000000px;}
.x1_c00007{left:493.200000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ws0_c00007{word-spacing:0.000000pt;}
.fs0_c00007{font-size:42.666667pt;}
.y0_c00007{bottom:0.000000pt;}
.y1_c00007{bottom:12.133333pt;}
.h2_c00007{height:42.666667pt;}
.h1_c00007{height:1138.000000pt;}
.h0_c00007{height:1138.239991pt;}
.w0_c00007{width:843.200032pt;}
.w1_c00007{width:843.333333pt;}
.x0_c00007{left:0.000000pt;}
.x1_c00007{left:438.400000pt;}
}





/* 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_c00008 {
    display:none;
  }
  .loading-indicator_c00008.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00008 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_c00008 { 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_c00008" -> "#page-container .classname_c00008")
 */
.pf_c00008 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00008 { /* 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_c00008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00008 { /* 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_c00008 { /* 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_c00008 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00008 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00008 {overflow:visible;}
  }
}
.c_c00008 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00008 { /* 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_c00008:after { /* webkit #35443 */
  content: '';
}
.t_c00008:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00008 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 */
}
.__c00008 { /* 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_c00008 { /* info for Javascript */
  display:none;
}
.l_c00008 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00008 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00008 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00008: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_c00008 {
    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_c00008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00008.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_c00008 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00008;src:url('chunks/assets/font_e1e4ccb8355ad646fba53eb7.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.000000;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;}
.m4_c00008{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m6_c00008{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m3_c00008{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m5_c00008{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{transform:matrix(0.442750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442750,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(0.513250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513250,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls0_c00008{letter-spacing:0.000000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{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__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:0.000000px;}
.fc0_c00008{color:transparent;}
.fs1_c00008{font-size:54.000000px;}
.fs2_c00008{font-size:144.000000px;}
.fs0_c00008{font-size:168.000000px;}
.y0_c00008{bottom:0.000000px;}
.y3_c00008{bottom:659.550000px;}
.y2_c00008{bottom:723.600000px;}
.y1_c00008{bottom:775.500000px;}
.h3_c00008{height:54.000000px;}
.h4_c00008{height:144.000000px;}
.h2_c00008{height:168.000000px;}
.h1_c00008{height:1248.750000px;}
.h0_c00008{height:1248.839997px;}
.w0_c00008{width:948.600036px;}
.w1_c00008{width:948.750000px;}
.x0_c00008{left:0.000000px;}
.x3_c00008{left:88.950000px;}
.x1_c00008{left:266.400000px;}
.x4_c00008{left:318.600000px;}
.x5_c00008{left:393.150000px;}
.x2_c00008{left:438.450000px;}
.x6_c00008{left:536.400000px;}
.x7_c00008{left:591.450000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ws0_c00008{word-spacing:0.000000pt;}
.fs1_c00008{font-size:48.000000pt;}
.fs2_c00008{font-size:128.000000pt;}
.fs0_c00008{font-size:149.333333pt;}
.y0_c00008{bottom:0.000000pt;}
.y3_c00008{bottom:586.266667pt;}
.y2_c00008{bottom:643.200000pt;}
.y1_c00008{bottom:689.333333pt;}
.h3_c00008{height:48.000000pt;}
.h4_c00008{height:128.000000pt;}
.h2_c00008{height:149.333333pt;}
.h1_c00008{height:1110.000000pt;}
.h0_c00008{height:1110.079997pt;}
.w0_c00008{width:843.200032pt;}
.w1_c00008{width:843.333333pt;}
.x0_c00008{left:0.000000pt;}
.x3_c00008{left:79.066667pt;}
.x1_c00008{left:236.800000pt;}
.x4_c00008{left:283.200000pt;}
.x5_c00008{left:349.466667pt;}
.x2_c00008{left:389.733333pt;}
.x6_c00008{left:476.800000pt;}
.x7_c00008{left:525.733333pt;}
}





/* 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_c00009 {
    display:none;
  }
  .loading-indicator_c00009.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00009 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_c00009 { 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_c00009" -> "#page-container .classname_c00009")
 */
.pf_c00009 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00009 { /* 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_c00009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00009 { /* 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_c00009 { /* 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_c00009 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00009 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00009 {overflow:visible;}
  }
}
.c_c00009 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00009 { /* 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_c00009:after { /* webkit #35443 */
  content: '';
}
.t_c00009:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00009 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 */
}
.__c00009 { /* 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_c00009 { /* info for Javascript */
  display:none;
}
.l_c00009 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00009 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00009 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00009: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_c00009 {
    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_c00009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00009.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_c00009 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00009;src:url('chunks/assets/font_939242d5f6d3873aaa85e13c.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.000000;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_c00009{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls0_c00009{letter-spacing:0.000000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{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__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:0.000000px;}
.fc0_c00009{color:transparent;}
.fs1_c00009{font-size:12.000000px;}
.fs0_c00009{font-size:18.000000px;}
.y0_c00009{bottom:0.000000px;}
.y1_c00009{bottom:8.250000px;}
.y2_c00009{bottom:9.750000px;}
.h3_c00009{height:12.000000px;}
.h2_c00009{height:18.000000px;}
.h1_c00009{height:1273.500000px;}
.h0_c00009{height:1273.679993px;}
.w0_c00009{width:948.600036px;}
.w1_c00009{width:948.750000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:452.550000px;}
.x2_c00009{left:482.400000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
.fs1_c00009{font-size:10.666667pt;}
.fs0_c00009{font-size:16.000000pt;}
.y0_c00009{bottom:0.000000pt;}
.y1_c00009{bottom:7.333333pt;}
.y2_c00009{bottom:8.666667pt;}
.h3_c00009{height:10.666667pt;}
.h2_c00009{height:16.000000pt;}
.h1_c00009{height:1132.000000pt;}
.h0_c00009{height:1132.159993pt;}
.w0_c00009{width:843.200032pt;}
.w1_c00009{width:843.333333pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:402.266667pt;}
.x2_c00009{left:428.800000pt;}
}





/* 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_c00010 {
    display:none;
  }
  .loading-indicator_c00010.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00010 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_c00010 { 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_c00010" -> "#page-container .classname_c00010")
 */
.pf_c00010 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00010 { /* 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_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00010 { /* 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_c00010 { /* 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_c00010 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00010 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00010 {overflow:visible;}
  }
}
.c_c00010 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00010 { /* 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_c00010:after { /* webkit #35443 */
  content: '';
}
.t_c00010:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00010 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 */
}
.__c00010 { /* 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_c00010 { /* info for Javascript */
  display:none;
}
.l_c00010 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00010 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00010 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00010: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_c00010 {
    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_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00010.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_c00010 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00010;src:url('chunks/assets/font_fa2bbdc3a2871d777158af48.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.000000;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;}
.m31_c00010{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m47_c00010{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m48_c00010{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m30_c00010{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m20_c00010{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m26_c00010{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00010{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00010{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m17_c00010{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m25_c00010{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00010{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m38_c00010{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m44_c00010{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00010{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m18_c00010{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00010{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00010{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m24_c00010{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m34_c00010{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m21_c00010{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m19_c00010{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m27_c00010{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m33_c00010{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m29_c00010{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m28_c00010{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m16_c00010{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00010{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00010{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m39_c00010{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00010{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m14_c00010{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m32_c00010{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m43_c00010{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m22_c00010{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m15_c00010{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m42_c00010{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m23_c00010{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m41_c00010{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m40_c00010{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00010{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00010{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2_c00010{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3_c00010{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6_c00010{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00010{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m37_c00010{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5_c00010{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m46_c00010{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m35_c00010{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m12_c00010{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00010{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00010{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00010{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00010{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m11_c00010{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00010{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m36_c00010{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m45_c00010{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00010{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.m8_c00010{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c00010{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);}
.ma_c00010{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m10_c00010{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c00010{transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);}
.mc_c00010{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m7_c00010{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.mb_c00010{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m13_c00010{transform:matrix(0.415500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415500,0.000000,0.000000,0.250000,0,0);}
.m9_c00010{transform:matrix(0.438250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438250,0.000000,0.000000,0.250000,0,0);}
.me_c00010{transform:matrix(0.443250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443250,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls0_c00010{letter-spacing:0.000000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{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__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00010{word-spacing:0.000000px;}
.ws0_c00010{word-spacing:3.825328px;}
.fc0_c00010{color:transparent;}
.fsa_c00010{font-size:18.000000px;}
.fs9_c00010{font-size:30.000000px;}
.fs8_c00010{font-size:36.000000px;}
.fs4_c00010{font-size:48.000000px;}
.fs1_c00010{font-size:60.000000px;}
.fs6_c00010{font-size:66.000000px;}
.fs5_c00010{font-size:78.000000px;}
.fs3_c00010{font-size:84.000000px;}
.fs7_c00010{font-size:150.000000px;}
.fs2_c00010{font-size:162.000000px;}
.fs0_c00010{font-size:216.000000px;}
.y0_c00010{bottom:0.000000px;}
.ye_c00010{bottom:22.350000px;}
.yf_c00010{bottom:29.850000px;}
.y10_c00010{bottom:33.150000px;}
.yd_c00010{bottom:198.750000px;}
.yc_c00010{bottom:263.850000px;}
.yb_c00010{bottom:302.100000px;}
.ya_c00010{bottom:691.950000px;}
.y9_c00010{bottom:729.450000px;}
.y8_c00010{bottom:742.350000px;}
.y7_c00010{bottom:765.750000px;}
.y6_c00010{bottom:806.400000px;}
.y5_c00010{bottom:881.250000px;}
.y4_c00010{bottom:917.700000px;}
.y3_c00010{bottom:1006.200000px;}
.y2_c00010{bottom:1065.600000px;}
.y1_c00010{bottom:1113.450000px;}
.hc_c00010{height:18.000000px;}
.hb_c00010{height:30.000000px;}
.ha_c00010{height:36.000000px;}
.h6_c00010{height:48.000000px;}
.h3_c00010{height:60.000000px;}
.h8_c00010{height:66.000000px;}
.h7_c00010{height:78.000000px;}
.h5_c00010{height:84.000000px;}
.h9_c00010{height:150.000000px;}
.h4_c00010{height:162.000000px;}
.h2_c00010{height:216.000000px;}
.h1_c00010{height:1243.500000px;}
.h0_c00010{height:1243.799927px;}
.w0_c00010{width:948.600036px;}
.w1_c00010{width:948.750000px;}
.x0_c00010{left:0.000000px;}
.x3_c00010{left:104.400000px;}
.x25_c00010{left:124.050000px;}
.xa_c00010{left:132.450000px;}
.x41_c00010{left:136.050000px;}
.x3d_c00010{left:147.900000px;}
.x18_c00010{left:183.300000px;}
.x31_c00010{left:191.850000px;}
.x3e_c00010{left:193.650000px;}
.x19_c00010{left:204.900000px;}
.x26_c00010{left:221.250000px;}
.x42_c00010{left:233.550000px;}
.xb_c00010{left:235.350000px;}
.x27_c00010{left:245.700000px;}
.x32_c00010{left:261.000000px;}
.x1_c00010{left:265.650000px;}
.x1a_c00010{left:268.200000px;}
.xc_c00010{left:271.350000px;}
.x1b_c00010{left:281.100000px;}
.x33_c00010{left:287.700000px;}
.x28_c00010{left:294.600000px;}
.x43_c00010{left:299.100000px;}
.x34_c00010{left:309.000000px;}
.x14_c00010{left:310.650000px;}
.x4_c00010{left:330.900000px;}
.x8_c00010{left:333.000000px;}
.xd_c00010{left:339.000000px;}
.x29_c00010{left:348.600000px;}
.x35_c00010{left:357.300000px;}
.x2a_c00010{left:369.900000px;}
.xe_c00010{left:375.300000px;}
.x1c_c00010{left:379.350000px;}
.x3f_c00010{left:380.550000px;}
.x15_c00010{left:392.100000px;}
.x44_c00010{left:394.800000px;}
.x5_c00010{left:402.600000px;}
.x36_c00010{left:406.950000px;}
.x16_c00010{left:423.750000px;}
.x40_c00010{left:430.650000px;}
.x49_c00010{left:439.200000px;}
.x2_c00010{left:447.900000px;}
.x17_c00010{left:455.850000px;}
.xf_c00010{left:459.150000px;}
.x1d_c00010{left:462.900000px;}
.x9_c00010{left:484.950000px;}
.x10_c00010{left:495.900000px;}
.x1e_c00010{left:508.650000px;}
.x1f_c00010{left:527.400000px;}
.x37_c00010{left:534.450000px;}
.x6_c00010{left:546.600000px;}
.x2b_c00010{left:549.600000px;}
.x38_c00010{left:555.000000px;}
.x2c_c00010{left:574.500000px;}
.x45_c00010{left:581.250000px;}
.x4a_c00010{left:583.200000px;}
.x4b_c00010{left:594.300000px;}
.x7_c00010{left:601.650000px;}
.x20_c00010{left:604.800000px;}
.x39_c00010{left:610.800000px;}
.x46_c00010{left:618.000000px;}
.x11_c00010{left:621.600000px;}
.x12_c00010{left:647.100000px;}
.x47_c00010{left:654.300000px;}
.x21_c00010{left:671.100000px;}
.x2d_c00010{left:675.000000px;}
.x13_c00010{left:684.150000px;}
.x2e_c00010{left:698.400000px;}
.x3a_c00010{left:703.650000px;}
.x2f_c00010{left:720.300000px;}
.x3b_c00010{left:724.500000px;}
.x22_c00010{left:731.250000px;}
.x3c_c00010{left:750.450000px;}
.x23_c00010{left:752.550000px;}
.x24_c00010{left:772.350000px;}
.x48_c00010{left:777.750000px;}
.x30_c00010{left:798.000000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws1_c00010{word-spacing:0.000000pt;}
.ws0_c00010{word-spacing:3.400291pt;}
.fsa_c00010{font-size:16.000000pt;}
.fs9_c00010{font-size:26.666667pt;}
.fs8_c00010{font-size:32.000000pt;}
.fs4_c00010{font-size:42.666667pt;}
.fs1_c00010{font-size:53.333333pt;}
.fs6_c00010{font-size:58.666667pt;}
.fs5_c00010{font-size:69.333333pt;}
.fs3_c00010{font-size:74.666667pt;}
.fs7_c00010{font-size:133.333333pt;}
.fs2_c00010{font-size:144.000000pt;}
.fs0_c00010{font-size:192.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.ye_c00010{bottom:19.866667pt;}
.yf_c00010{bottom:26.533333pt;}
.y10_c00010{bottom:29.466667pt;}
.yd_c00010{bottom:176.666667pt;}
.yc_c00010{bottom:234.533333pt;}
.yb_c00010{bottom:268.533333pt;}
.ya_c00010{bottom:615.066667pt;}
.y9_c00010{bottom:648.400000pt;}
.y8_c00010{bottom:659.866667pt;}
.y7_c00010{bottom:680.666667pt;}
.y6_c00010{bottom:716.800000pt;}
.y5_c00010{bottom:783.333333pt;}
.y4_c00010{bottom:815.733333pt;}
.y3_c00010{bottom:894.400000pt;}
.y2_c00010{bottom:947.200000pt;}
.y1_c00010{bottom:989.733333pt;}
.hc_c00010{height:16.000000pt;}
.hb_c00010{height:26.666667pt;}
.ha_c00010{height:32.000000pt;}
.h6_c00010{height:42.666667pt;}
.h3_c00010{height:53.333333pt;}
.h8_c00010{height:58.666667pt;}
.h7_c00010{height:69.333333pt;}
.h5_c00010{height:74.666667pt;}
.h9_c00010{height:133.333333pt;}
.h4_c00010{height:144.000000pt;}
.h2_c00010{height:192.000000pt;}
.h1_c00010{height:1105.333333pt;}
.h0_c00010{height:1105.599935pt;}
.w0_c00010{width:843.200032pt;}
.w1_c00010{width:843.333333pt;}
.x0_c00010{left:0.000000pt;}
.x3_c00010{left:92.800000pt;}
.x25_c00010{left:110.266667pt;}
.xa_c00010{left:117.733333pt;}
.x41_c00010{left:120.933333pt;}
.x3d_c00010{left:131.466667pt;}
.x18_c00010{left:162.933333pt;}
.x31_c00010{left:170.533333pt;}
.x3e_c00010{left:172.133333pt;}
.x19_c00010{left:182.133333pt;}
.x26_c00010{left:196.666667pt;}
.x42_c00010{left:207.600000pt;}
.xb_c00010{left:209.200000pt;}
.x27_c00010{left:218.400000pt;}
.x32_c00010{left:232.000000pt;}
.x1_c00010{left:236.133333pt;}
.x1a_c00010{left:238.400000pt;}
.xc_c00010{left:241.200000pt;}
.x1b_c00010{left:249.866667pt;}
.x33_c00010{left:255.733333pt;}
.x28_c00010{left:261.866667pt;}
.x43_c00010{left:265.866667pt;}
.x34_c00010{left:274.666667pt;}
.x14_c00010{left:276.133333pt;}
.x4_c00010{left:294.133333pt;}
.x8_c00010{left:296.000000pt;}
.xd_c00010{left:301.333333pt;}
.x29_c00010{left:309.866667pt;}
.x35_c00010{left:317.600000pt;}
.x2a_c00010{left:328.800000pt;}
.xe_c00010{left:333.600000pt;}
.x1c_c00010{left:337.200000pt;}
.x3f_c00010{left:338.266667pt;}
.x15_c00010{left:348.533333pt;}
.x44_c00010{left:350.933333pt;}
.x5_c00010{left:357.866667pt;}
.x36_c00010{left:361.733333pt;}
.x16_c00010{left:376.666667pt;}
.x40_c00010{left:382.800000pt;}
.x49_c00010{left:390.400000pt;}
.x2_c00010{left:398.133333pt;}
.x17_c00010{left:405.200000pt;}
.xf_c00010{left:408.133333pt;}
.x1d_c00010{left:411.466667pt;}
.x9_c00010{left:431.066667pt;}
.x10_c00010{left:440.800000pt;}
.x1e_c00010{left:452.133333pt;}
.x1f_c00010{left:468.800000pt;}
.x37_c00010{left:475.066667pt;}
.x6_c00010{left:485.866667pt;}
.x2b_c00010{left:488.533333pt;}
.x38_c00010{left:493.333333pt;}
.x2c_c00010{left:510.666667pt;}
.x45_c00010{left:516.666667pt;}
.x4a_c00010{left:518.400000pt;}
.x4b_c00010{left:528.266667pt;}
.x7_c00010{left:534.800000pt;}
.x20_c00010{left:537.600000pt;}
.x39_c00010{left:542.933333pt;}
.x46_c00010{left:549.333333pt;}
.x11_c00010{left:552.533333pt;}
.x12_c00010{left:575.200000pt;}
.x47_c00010{left:581.600000pt;}
.x21_c00010{left:596.533333pt;}
.x2d_c00010{left:600.000000pt;}
.x13_c00010{left:608.133333pt;}
.x2e_c00010{left:620.800000pt;}
.x3a_c00010{left:625.466667pt;}
.x2f_c00010{left:640.266667pt;}
.x3b_c00010{left:644.000000pt;}
.x22_c00010{left:650.000000pt;}
.x3c_c00010{left:667.066667pt;}
.x23_c00010{left:668.933333pt;}
.x24_c00010{left:686.533333pt;}
.x48_c00010{left:691.333333pt;}
.x30_c00010{left:709.333333pt;}
}





/* 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_c00011 {
    display:none;
  }
  .loading-indicator_c00011.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00011 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_c00011 { 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_c00011" -> "#page-container .classname_c00011")
 */
.pf_c00011 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00011 { /* 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_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00011 { /* 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_c00011 { /* 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_c00011 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00011 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00011 {overflow:visible;}
  }
}
.c_c00011 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00011 { /* 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_c00011:after { /* webkit #35443 */
  content: '';
}
.t_c00011:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00011 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 */
}
.__c00011 { /* 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_c00011 { /* info for Javascript */
  display:none;
}
.l_c00011 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00011 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00011 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00011: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_c00011 {
    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_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00011.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_c00011 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00011;src:url('chunks/assets/font_939242d5f6d3873aaa85e13c.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00011{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m0_c00011{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls0_c00011{letter-spacing:0.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{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__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:0.000000px;}
.fc0_c00011{color:transparent;}
.fs0_c00011{font-size:12.000000px;}
.y0_c00011{bottom:0.000000px;}
.y1_c00011{bottom:650.850000px;}
.y2_c00011{bottom:737.700000px;}
.y3_c00011{bottom:900.750000px;}
.h2_c00011{height:12.000000px;}
.h1_c00011{height:1277.250000px;}
.h0_c00011{height:1277.280030px;}
.w0_c00011{width:948.600036px;}
.w1_c00011{width:948.750000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:23.400000px;}
.x2_c00011{left:547.500000px;}
.x3_c00011{left:822.300000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:0.000000pt;}
.fs0_c00011{font-size:10.666667pt;}
.y0_c00011{bottom:0.000000pt;}
.y1_c00011{bottom:578.533333pt;}
.y2_c00011{bottom:655.733333pt;}
.y3_c00011{bottom:800.666667pt;}
.h2_c00011{height:10.666667pt;}
.h1_c00011{height:1135.333333pt;}
.h0_c00011{height:1135.360027pt;}
.w0_c00011{width:843.200032pt;}
.w1_c00011{width:843.333333pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:20.800000pt;}
.x2_c00011{left:486.666667pt;}
.x3_c00011{left:730.933333pt;}
}





/* 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_c00012 {
    display:none;
  }
  .loading-indicator_c00012.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00012 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_c00012 { 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_c00012" -> "#page-container .classname_c00012")
 */
.pf_c00012 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00012 { /* 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_c00012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00012 { /* 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_c00012 { /* 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_c00012 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00012 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00012 {overflow:visible;}
  }
}
.c_c00012 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00012 { /* 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_c00012:after { /* webkit #35443 */
  content: '';
}
.t_c00012:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00012 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 */
}
.__c00012 { /* 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_c00012 { /* info for Javascript */
  display:none;
}
.l_c00012 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00012 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00012 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00012: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_c00012 {
    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_c00012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00012.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_c00012 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00012;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.000000;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;}
.m76_c00012{transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00012{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m11_c00012{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00012{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00012{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00012{transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);}
.me_c00012{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00012{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m13_c00012{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m80_c00012{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m85_c00012{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m34_c00012{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00012{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00012{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mac_c00012{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m42_c00012{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00012{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00012{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00012{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00012{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00012{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m64_c00012{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m55_c00012{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00012{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m86_c00012{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m26_c00012{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m98_c00012{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00012{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m21_c00012{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00012{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00012{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m67_c00012{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00012{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m46_c00012{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.maf_c00012{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m41_c00012{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m87_c00012{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00012{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m79_c00012{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00012{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m10_c00012{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00012{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m73_c00012{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00012{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00012{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m23_c00012{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9_c00012{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00012{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00012{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m68_c00012{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00012{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mba_c00012{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m32_c00012{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00012{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00012{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m39_c00012{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00012{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m72_c00012{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00012{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00012{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m16_c00012{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m50_c00012{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m71_c00012{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m82_c00012{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00012{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00012{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m56_c00012{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00012{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m12_c00012{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00012{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00012{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m94_c00012{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m97_c00012{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m18_c00012{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00012{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00012{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m65_c00012{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m51_c00012{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m92_c00012{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m59_c00012{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m57_c00012{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m31_c00012{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00012{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m20_c00012{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m52_c00012{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00012{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb_c00012{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m22_c00012{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m95_c00012{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m83_c00012{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m74_c00012{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m45_c00012{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m58_c00012{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf_c00012{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mae_c00012{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.maa_c00012{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00012{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m29_c00012{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00012{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00012{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m81_c00012{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00012{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00012{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m44_c00012{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m35_c00012{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00012{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma_c00012{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00012{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00012{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m60_c00012{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m47_c00012{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m8_c00012{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m27_c00012{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7_c00012{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00012{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m43_c00012{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m96_c00012{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m61_c00012{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m30_c00012{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m28_c00012{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m15_c00012{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m69_c00012{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m19_c00012{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00012{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m54_c00012{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00012{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00012{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00012{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00012{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00012{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00012{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m62_c00012{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00012{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m93_c00012{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m99_c00012{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc_c00012{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00012{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00012{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m78_c00012{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00012{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m89_c00012{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m3_c00012{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m77_c00012{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m53_c00012{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00012{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m75_c00012{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14_c00012{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00012{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);}
.m37_c00012{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2_c00012{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m90_c00012{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4_c00012{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6_c00012{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m25_c00012{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m88_c00012{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5_c00012{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00012{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00012{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m48_c00012{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00012{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00012{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mad_c00012{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md_c00012{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mab_c00012{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24_c00012{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00012{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m38_c00012{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00012{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00012{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00012{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17_c00012{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00012{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m40_c00012{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m66_c00012{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00012{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m91_c00012{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00012{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00012{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00012{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00012{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m36_c00012{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00012{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m63_c00012{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m49_c00012{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m70_c00012{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m84_c00012{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m33_c00012{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m0_c00012{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{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__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:-13.110609px;}
.ws3_c00012{word-spacing:-12.466586px;}
.ws2_c00012{word-spacing:-8.248307px;}
.ws1_c00012{word-spacing:-8.214447px;}
.ws4_c00012{word-spacing:0.000000px;}
.fc0_c00012{color:transparent;}
.fs1_c00012{font-size:72.000000px;}
.fs2_c00012{font-size:78.000000px;}
.fs3_c00012{font-size:84.000000px;}
.fs0_c00012{font-size:156.000000px;}
.y0_c00012{bottom:0.000000px;}
.y1f_c00012{bottom:207.600000px;}
.y1e_c00012{bottom:232.500000px;}
.y1d_c00012{bottom:256.650000px;}
.y1c_c00012{bottom:281.100000px;}
.y1b_c00012{bottom:306.000000px;}
.y1a_c00012{bottom:330.450000px;}
.y19_c00012{bottom:355.350000px;}
.y18_c00012{bottom:379.800000px;}
.y17_c00012{bottom:404.250000px;}
.y16_c00012{bottom:428.400000px;}
.y15_c00012{bottom:453.300000px;}
.y14_c00012{bottom:486.300000px;}
.y13_c00012{bottom:513.000000px;}
.y12_c00012{bottom:535.650000px;}
.y11_c00012{bottom:568.350000px;}
.y10_c00012{bottom:593.250000px;}
.yf_c00012{bottom:617.400000px;}
.ye_c00012{bottom:642.300000px;}
.yd_c00012{bottom:666.450000px;}
.yc_c00012{bottom:690.900000px;}
.yb_c00012{bottom:715.350000px;}
.ya_c00012{bottom:747.450000px;}
.y9_c00012{bottom:772.350000px;}
.y8_c00012{bottom:797.250000px;}
.y7_c00012{bottom:821.700000px;}
.y6_c00012{bottom:846.600000px;}
.y5_c00012{bottom:870.750000px;}
.y4_c00012{bottom:895.650000px;}
.y3_c00012{bottom:928.050000px;}
.y2_c00012{bottom:952.950000px;}
.y1_c00012{bottom:1078.950000px;}
.h3_c00012{height:72.000000px;}
.h4_c00012{height:78.000000px;}
.h5_c00012{height:84.000000px;}
.h2_c00012{height:156.000000px;}
.h0_c00012{height:1269.720063px;}
.h1_c00012{height:1269.750000px;}
.w0_c00012{width:948.600036px;}
.w1_c00012{width:948.750000px;}
.x0_c00012{left:0.000000px;}
.xd7_c00012{left:56.100000px;}
.xc0_c00012{left:57.450000px;}
.x8b_c00012{left:58.500000px;}
.x5b_c00012{left:59.700000px;}
.x42_c00012{left:61.650000px;}
.x83_c00012{left:63.600000px;}
.x36_c00012{left:65.850000px;}
.x2_c00012{left:66.900000px;}
.xb9_c00012{left:78.450000px;}
.xa5_c00012{left:80.250000px;}
.xa0_c00012{left:82.350000px;}
.x5c_c00012{left:83.850000px;}
.x1c_c00012{left:86.100000px;}
.x43_c00012{left:91.200000px;}
.xc1_c00012{left:95.250000px;}
.xe0_c00012{left:99.750000px;}
.x3_c00012{left:102.150000px;}
.x4f_c00012{left:104.100000px;}
.xaa_c00012{left:105.600000px;}
.xb5_c00012{left:107.250000px;}
.xce_c00012{left:108.450000px;}
.xba_c00012{left:110.100000px;}
.x70_c00012{left:114.900000px;}
.x5d_c00012{left:117.000000px;}
.xc2_c00012{left:119.400000px;}
.x66_c00012{left:121.950000px;}
.xb6_c00012{left:123.150000px;}
.x1d_c00012{left:126.750000px;}
.xa1_c00012{left:129.150000px;}
.xd8_c00012{left:130.200000px;}
.xd_c00012{left:132.600000px;}
.x50_c00012{left:137.550000px;}
.xa2_c00012{left:141.000000px;}
.x94_c00012{left:142.200000px;}
.xf3_c00012{left:144.150000px;}
.x79_c00012{left:149.250000px;}
.x67_c00012{left:151.800000px;}
.xc9_c00012{left:154.050000px;}
.x44_c00012{left:155.250000px;}
.x28_c00012{left:156.450000px;}
.xe_c00012{left:158.100000px;}
.xd9_c00012{left:161.100000px;}
.xa6_c00012{left:162.300000px;}
.x29_c00012{left:166.500000px;}
.x4_c00012{left:171.600000px;}
.xe1_c00012{left:173.250000px;}
.x68_c00012{left:175.050000px;}
.xf4_c00012{left:176.850000px;}
.xab_c00012{left:178.650000px;}
.xcf_c00012{left:181.500000px;}
.x84_c00012{left:182.700000px;}
.xbb_c00012{left:184.650000px;}
.x1e_c00012{left:185.850000px;}
.x71_c00012{left:189.000000px;}
.x2a_c00012{left:191.400000px;}
.x37_c00012{left:192.900000px;}
.x95_c00012{left:194.700000px;}
.xea_c00012{left:195.900000px;}
.x51_c00012{left:201.300000px;}
.xd0_c00012{left:203.850000px;}
.x5_c00012{left:205.800000px;}
.xac_c00012{left:210.000000px;}
.x5e_c00012{left:211.350000px;}
.xef_c00012{left:213.600000px;}
.x1_c00012{left:215.700000px;}
.x2b_c00012{left:216.900000px;}
.x8c_c00012{left:222.150000px;}
.xe2_c00012{left:225.150000px;}
.xeb_c00012{left:226.800000px;}
.x69_c00012{left:229.800000px;}
.x45_c00012{left:231.150000px;}
.x52_c00012{left:233.400000px;}
.x38_c00012{left:238.200000px;}
.x5f_c00012{left:241.200000px;}
.xa3_c00012{left:244.800000px;}
.x46_c00012{left:245.850000px;}
.xd1_c00012{left:248.550000px;}
.xa7_c00012{left:252.300000px;}
.x6a_c00012{left:255.300000px;}
.xad_c00012{left:260.700000px;}
.xf_c00012{left:265.800000px;}
.x39_c00012{left:272.100000px;}
.x60_c00012{left:275.400000px;}
.x10_c00012{left:278.400000px;}
.xc3_c00012{left:279.900000px;}
.x7a_c00012{left:282.900000px;}
.x6_c00012{left:284.700000px;}
.x11_c00012{left:292.500000px;}
.x96_c00012{left:294.450000px;}
.x85_c00012{left:297.150000px;}
.x1f_c00012{left:299.550000px;}
.x53_c00012{left:301.500000px;}
.xd2_c00012{left:303.300000px;}
.x61_c00012{left:304.950000px;}
.x7_c00012{left:309.600000px;}
.x72_c00012{left:312.900000px;}
.x8d_c00012{left:317.250000px;}
.x97_c00012{left:318.600000px;}
.x12_c00012{left:322.050000px;}
.x47_c00012{left:326.100000px;}
.x20_c00012{left:334.050000px;}
.x2c_c00012{left:336.750000px;}
.x73_c00012{left:340.950000px;}
.x7b_c00012{left:345.600000px;}
.xf0_c00012{left:348.300000px;}
.xc6_c00012{left:349.650000px;}
.x98_c00012{left:351.000000px;}
.x54_c00012{left:353.250000px;}
.xca_c00012{left:354.600000px;}
.x48_c00012{left:358.200000px;}
.x74_c00012{left:367.200000px;}
.x86_c00012{left:369.150000px;}
.x2d_c00012{left:370.650000px;}
.xb7_c00012{left:373.050000px;}
.xec_c00012{left:374.700000px;}
.xae_c00012{left:378.000000px;}
.x13_c00012{left:380.400000px;}
.xd3_c00012{left:382.200000px;}
.xa4_c00012{left:384.150000px;}
.xe3_c00012{left:385.800000px;}
.x7c_c00012{left:388.050000px;}
.x6b_c00012{left:389.550000px;}
.x21_c00012{left:391.350000px;}
.x14_c00012{left:393.300000px;}
.xe8_c00012{left:394.500000px;}
.xcb_c00012{left:395.700000px;}
.x87_c00012{left:398.250000px;}
.xc4_c00012{left:400.500000px;}
.x6c_c00012{left:403.200000px;}
.x3a_c00012{left:404.550000px;}
.x62_c00012{left:412.950000px;}
.xaf_c00012{left:415.800000px;}
.xda_c00012{left:417.000000px;}
.x8e_c00012{left:418.050000px;}
.xbc_c00012{left:422.250000px;}
.x49_c00012{left:424.500000px;}
.x3b_c00012{left:426.150000px;}
.x99_c00012{left:433.050000px;}
.xf1_c00012{left:437.250000px;}
.x15_c00012{left:438.600000px;}
.xb8_c00012{left:441.450000px;}
.xbd_c00012{left:447.750000px;}
.x2e_c00012{left:448.800000px;}
.xd4_c00012{left:451.350000px;}
.x8_c00012{left:453.300000px;}
.x22_c00012{left:454.650000px;}
.x63_c00012{left:457.200000px;}
.xe4_c00012{left:464.700000px;}
.x7d_c00012{left:466.500000px;}
.x9a_c00012{left:469.350000px;}
.x8f_c00012{left:471.300000px;}
.x2f_c00012{left:473.700000px;}
.x6d_c00012{left:475.950000px;}
.xd5_c00012{left:478.650000px;}
.x7e_c00012{left:480.150000px;}
.x23_c00012{left:481.950000px;}
.xe5_c00012{left:484.800000px;}
.x64_c00012{left:488.850000px;}
.xa8_c00012{left:491.100000px;}
.xdb_c00012{left:493.350000px;}
.x16_c00012{left:496.500000px;}
.x55_c00012{left:500.850000px;}
.x24_c00012{left:505.650000px;}
.x7f_c00012{left:506.850000px;}
.x90_c00012{left:511.200000px;}
.x75_c00012{left:512.250000px;}
.x17_c00012{left:513.450000px;}
.x3c_c00012{left:516.450000px;}
.x56_c00012{left:521.400000px;}
.xe9_c00012{left:524.550000px;}
.x91_c00012{left:525.600000px;}
.x18_c00012{left:530.700000px;}
.x9_c00012{left:534.300000px;}
.xd6_c00012{left:539.850000px;}
.xf2_c00012{left:543.750000px;}
.x4a_c00012{left:544.800000px;}
.x19_c00012{left:546.150000px;}
.xa_c00012{left:547.650000px;}
.x9b_c00012{left:550.350000px;}
.x88_c00012{left:552.750000px;}
.x76_c00012{left:555.150000px;}
.xdc_c00012{left:556.350000px;}
.x92_c00012{left:559.050000px;}
.x30_c00012{left:560.100000px;}
.xb0_c00012{left:562.200000px;}
.x4b_c00012{left:565.350000px;}
.x3d_c00012{left:570.450000px;}
.xc5_c00012{left:572.850000px;}
.x89_c00012{left:574.350000px;}
.xf5_c00012{left:579.450000px;}
.xdd_c00012{left:584.400000px;}
.x3e_c00012{left:586.650000px;}
.x57_c00012{left:588.300000px;}
.x31_c00012{left:591.000000px;}
.x25_c00012{left:592.800000px;}
.x4c_c00012{left:597.000000px;}
.x9c_c00012{left:598.500000px;}
.x58_c00012{left:601.200000px;}
.xb1_c00012{left:603.300000px;}
.x80_c00012{left:604.350000px;}
.xed_c00012{left:609.000000px;}
.xe6_c00012{left:611.550000px;}
.x3f_c00012{left:616.500000px;}
.xc7_c00012{left:617.850000px;}
.x1a_c00012{left:619.200000px;}
.x6e_c00012{left:625.500000px;}
.x77_c00012{left:628.200000px;}
.xc8_c00012{left:629.400000px;}
.x93_c00012{left:634.950000px;}
.xe7_c00012{left:638.250000px;}
.xbe_c00012{left:641.400000px;}
.x40_c00012{left:643.800000px;}
.xb_c00012{left:644.850000px;}
.x32_c00012{left:647.850000px;}
.x9d_c00012{left:651.450000px;}
.x8a_c00012{left:656.100000px;}
.xde_c00012{left:657.450000px;}
.x33_c00012{left:659.700000px;}
.x26_c00012{left:661.500000px;}
.xa9_c00012{left:662.850000px;}
.x4d_c00012{left:665.700000px;}
.xb2_c00012{left:667.800000px;}
.xc_c00012{left:671.550000px;}
.xcc_c00012{left:672.600000px;}
.x1b_c00012{left:674.250000px;}
.xbf_c00012{left:675.900000px;}
.x6f_c00012{left:682.650000px;}
.x9e_c00012{left:684.900000px;}
.xb3_c00012{left:688.650000px;}
.x27_c00012{left:691.350000px;}
.x4e_c00012{left:693.000000px;}
.x65_c00012{left:699.450000px;}
.xdf_c00012{left:700.650000px;}
.x59_c00012{left:703.050000px;}
.xee_c00012{left:707.250000px;}
.x81_c00012{left:711.600000px;}
.x78_c00012{left:714.900000px;}
.xcd_c00012{left:716.100000px;}
.x34_c00012{left:718.800000px;}
.xb4_c00012{left:727.200000px;}
.x41_c00012{left:730.200000px;}
.x82_c00012{left:733.200000px;}
.x5a_c00012{left:736.500000px;}
.xf6_c00012{left:748.050000px;}
.x9f_c00012{left:751.200000px;}
.x35_c00012{left:754.500000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws0_c00012{word-spacing:-11.653875pt;}
.ws3_c00012{word-spacing:-11.081409pt;}
.ws2_c00012{word-spacing:-7.331828pt;}
.ws1_c00012{word-spacing:-7.301731pt;}
.ws4_c00012{word-spacing:0.000000pt;}
.fs1_c00012{font-size:64.000000pt;}
.fs2_c00012{font-size:69.333333pt;}
.fs3_c00012{font-size:74.666667pt;}
.fs0_c00012{font-size:138.666667pt;}
.y0_c00012{bottom:0.000000pt;}
.y1f_c00012{bottom:184.533333pt;}
.y1e_c00012{bottom:206.666667pt;}
.y1d_c00012{bottom:228.133333pt;}
.y1c_c00012{bottom:249.866667pt;}
.y1b_c00012{bottom:272.000000pt;}
.y1a_c00012{bottom:293.733333pt;}
.y19_c00012{bottom:315.866667pt;}
.y18_c00012{bottom:337.600000pt;}
.y17_c00012{bottom:359.333333pt;}
.y16_c00012{bottom:380.800000pt;}
.y15_c00012{bottom:402.933333pt;}
.y14_c00012{bottom:432.266667pt;}
.y13_c00012{bottom:456.000000pt;}
.y12_c00012{bottom:476.133333pt;}
.y11_c00012{bottom:505.200000pt;}
.y10_c00012{bottom:527.333333pt;}
.yf_c00012{bottom:548.800000pt;}
.ye_c00012{bottom:570.933333pt;}
.yd_c00012{bottom:592.400000pt;}
.yc_c00012{bottom:614.133333pt;}
.yb_c00012{bottom:635.866667pt;}
.ya_c00012{bottom:664.400000pt;}
.y9_c00012{bottom:686.533333pt;}
.y8_c00012{bottom:708.666667pt;}
.y7_c00012{bottom:730.400000pt;}
.y6_c00012{bottom:752.533333pt;}
.y5_c00012{bottom:774.000000pt;}
.y4_c00012{bottom:796.133333pt;}
.y3_c00012{bottom:824.933333pt;}
.y2_c00012{bottom:847.066667pt;}
.y1_c00012{bottom:959.066667pt;}
.h3_c00012{height:64.000000pt;}
.h4_c00012{height:69.333333pt;}
.h5_c00012{height:74.666667pt;}
.h2_c00012{height:138.666667pt;}
.h0_c00012{height:1128.640056pt;}
.h1_c00012{height:1128.666667pt;}
.w0_c00012{width:843.200032pt;}
.w1_c00012{width:843.333333pt;}
.x0_c00012{left:0.000000pt;}
.xd7_c00012{left:49.866667pt;}
.xc0_c00012{left:51.066667pt;}
.x8b_c00012{left:52.000000pt;}
.x5b_c00012{left:53.066667pt;}
.x42_c00012{left:54.800000pt;}
.x83_c00012{left:56.533333pt;}
.x36_c00012{left:58.533333pt;}
.x2_c00012{left:59.466667pt;}
.xb9_c00012{left:69.733333pt;}
.xa5_c00012{left:71.333333pt;}
.xa0_c00012{left:73.200000pt;}
.x5c_c00012{left:74.533333pt;}
.x1c_c00012{left:76.533333pt;}
.x43_c00012{left:81.066667pt;}
.xc1_c00012{left:84.666667pt;}
.xe0_c00012{left:88.666667pt;}
.x3_c00012{left:90.800000pt;}
.x4f_c00012{left:92.533333pt;}
.xaa_c00012{left:93.866667pt;}
.xb5_c00012{left:95.333333pt;}
.xce_c00012{left:96.400000pt;}
.xba_c00012{left:97.866667pt;}
.x70_c00012{left:102.133333pt;}
.x5d_c00012{left:104.000000pt;}
.xc2_c00012{left:106.133333pt;}
.x66_c00012{left:108.400000pt;}
.xb6_c00012{left:109.466667pt;}
.x1d_c00012{left:112.666667pt;}
.xa1_c00012{left:114.800000pt;}
.xd8_c00012{left:115.733333pt;}
.xd_c00012{left:117.866667pt;}
.x50_c00012{left:122.266667pt;}
.xa2_c00012{left:125.333333pt;}
.x94_c00012{left:126.400000pt;}
.xf3_c00012{left:128.133333pt;}
.x79_c00012{left:132.666667pt;}
.x67_c00012{left:134.933333pt;}
.xc9_c00012{left:136.933333pt;}
.x44_c00012{left:138.000000pt;}
.x28_c00012{left:139.066667pt;}
.xe_c00012{left:140.533333pt;}
.xd9_c00012{left:143.200000pt;}
.xa6_c00012{left:144.266667pt;}
.x29_c00012{left:148.000000pt;}
.x4_c00012{left:152.533333pt;}
.xe1_c00012{left:154.000000pt;}
.x68_c00012{left:155.600000pt;}
.xf4_c00012{left:157.200000pt;}
.xab_c00012{left:158.800000pt;}
.xcf_c00012{left:161.333333pt;}
.x84_c00012{left:162.400000pt;}
.xbb_c00012{left:164.133333pt;}
.x1e_c00012{left:165.200000pt;}
.x71_c00012{left:168.000000pt;}
.x2a_c00012{left:170.133333pt;}
.x37_c00012{left:171.466667pt;}
.x95_c00012{left:173.066667pt;}
.xea_c00012{left:174.133333pt;}
.x51_c00012{left:178.933333pt;}
.xd0_c00012{left:181.200000pt;}
.x5_c00012{left:182.933333pt;}
.xac_c00012{left:186.666667pt;}
.x5e_c00012{left:187.866667pt;}
.xef_c00012{left:189.866667pt;}
.x1_c00012{left:191.733333pt;}
.x2b_c00012{left:192.800000pt;}
.x8c_c00012{left:197.466667pt;}
.xe2_c00012{left:200.133333pt;}
.xeb_c00012{left:201.600000pt;}
.x69_c00012{left:204.266667pt;}
.x45_c00012{left:205.466667pt;}
.x52_c00012{left:207.466667pt;}
.x38_c00012{left:211.733333pt;}
.x5f_c00012{left:214.400000pt;}
.xa3_c00012{left:217.600000pt;}
.x46_c00012{left:218.533333pt;}
.xd1_c00012{left:220.933333pt;}
.xa7_c00012{left:224.266667pt;}
.x6a_c00012{left:226.933333pt;}
.xad_c00012{left:231.733333pt;}
.xf_c00012{left:236.266667pt;}
.x39_c00012{left:241.866667pt;}
.x60_c00012{left:244.800000pt;}
.x10_c00012{left:247.466667pt;}
.xc3_c00012{left:248.800000pt;}
.x7a_c00012{left:251.466667pt;}
.x6_c00012{left:253.066667pt;}
.x11_c00012{left:260.000000pt;}
.x96_c00012{left:261.733333pt;}
.x85_c00012{left:264.133333pt;}
.x1f_c00012{left:266.266667pt;}
.x53_c00012{left:268.000000pt;}
.xd2_c00012{left:269.600000pt;}
.x61_c00012{left:271.066667pt;}
.x7_c00012{left:275.200000pt;}
.x72_c00012{left:278.133333pt;}
.x8d_c00012{left:282.000000pt;}
.x97_c00012{left:283.200000pt;}
.x12_c00012{left:286.266667pt;}
.x47_c00012{left:289.866667pt;}
.x20_c00012{left:296.933333pt;}
.x2c_c00012{left:299.333333pt;}
.x73_c00012{left:303.066667pt;}
.x7b_c00012{left:307.200000pt;}
.xf0_c00012{left:309.600000pt;}
.xc6_c00012{left:310.800000pt;}
.x98_c00012{left:312.000000pt;}
.x54_c00012{left:314.000000pt;}
.xca_c00012{left:315.200000pt;}
.x48_c00012{left:318.400000pt;}
.x74_c00012{left:326.400000pt;}
.x86_c00012{left:328.133333pt;}
.x2d_c00012{left:329.466667pt;}
.xb7_c00012{left:331.600000pt;}
.xec_c00012{left:333.066667pt;}
.xae_c00012{left:336.000000pt;}
.x13_c00012{left:338.133333pt;}
.xd3_c00012{left:339.733333pt;}
.xa4_c00012{left:341.466667pt;}
.xe3_c00012{left:342.933333pt;}
.x7c_c00012{left:344.933333pt;}
.x6b_c00012{left:346.266667pt;}
.x21_c00012{left:347.866667pt;}
.x14_c00012{left:349.600000pt;}
.xe8_c00012{left:350.666667pt;}
.xcb_c00012{left:351.733333pt;}
.x87_c00012{left:354.000000pt;}
.xc4_c00012{left:356.000000pt;}
.x6c_c00012{left:358.400000pt;}
.x3a_c00012{left:359.600000pt;}
.x62_c00012{left:367.066667pt;}
.xaf_c00012{left:369.600000pt;}
.xda_c00012{left:370.666667pt;}
.x8e_c00012{left:371.600000pt;}
.xbc_c00012{left:375.333333pt;}
.x49_c00012{left:377.333333pt;}
.x3b_c00012{left:378.800000pt;}
.x99_c00012{left:384.933333pt;}
.xf1_c00012{left:388.666667pt;}
.x15_c00012{left:389.866667pt;}
.xb8_c00012{left:392.400000pt;}
.xbd_c00012{left:398.000000pt;}
.x2e_c00012{left:398.933333pt;}
.xd4_c00012{left:401.200000pt;}
.x8_c00012{left:402.933333pt;}
.x22_c00012{left:404.133333pt;}
.x63_c00012{left:406.400000pt;}
.xe4_c00012{left:413.066667pt;}
.x7d_c00012{left:414.666667pt;}
.x9a_c00012{left:417.200000pt;}
.x8f_c00012{left:418.933333pt;}
.x2f_c00012{left:421.066667pt;}
.x6d_c00012{left:423.066667pt;}
.xd5_c00012{left:425.466667pt;}
.x7e_c00012{left:426.800000pt;}
.x23_c00012{left:428.400000pt;}
.xe5_c00012{left:430.933333pt;}
.x64_c00012{left:434.533333pt;}
.xa8_c00012{left:436.533333pt;}
.xdb_c00012{left:438.533333pt;}
.x16_c00012{left:441.333333pt;}
.x55_c00012{left:445.200000pt;}
.x24_c00012{left:449.466667pt;}
.x7f_c00012{left:450.533333pt;}
.x90_c00012{left:454.400000pt;}
.x75_c00012{left:455.333333pt;}
.x17_c00012{left:456.400000pt;}
.x3c_c00012{left:459.066667pt;}
.x56_c00012{left:463.466667pt;}
.xe9_c00012{left:466.266667pt;}
.x91_c00012{left:467.200000pt;}
.x18_c00012{left:471.733333pt;}
.x9_c00012{left:474.933333pt;}
.xd6_c00012{left:479.866667pt;}
.xf2_c00012{left:483.333333pt;}
.x4a_c00012{left:484.266667pt;}
.x19_c00012{left:485.466667pt;}
.xa_c00012{left:486.800000pt;}
.x9b_c00012{left:489.200000pt;}
.x88_c00012{left:491.333333pt;}
.x76_c00012{left:493.466667pt;}
.xdc_c00012{left:494.533333pt;}
.x92_c00012{left:496.933333pt;}
.x30_c00012{left:497.866667pt;}
.xb0_c00012{left:499.733333pt;}
.x4b_c00012{left:502.533333pt;}
.x3d_c00012{left:507.066667pt;}
.xc5_c00012{left:509.200000pt;}
.x89_c00012{left:510.533333pt;}
.xf5_c00012{left:515.066667pt;}
.xdd_c00012{left:519.466667pt;}
.x3e_c00012{left:521.466667pt;}
.x57_c00012{left:522.933333pt;}
.x31_c00012{left:525.333333pt;}
.x25_c00012{left:526.933333pt;}
.x4c_c00012{left:530.666667pt;}
.x9c_c00012{left:532.000000pt;}
.x58_c00012{left:534.400000pt;}
.xb1_c00012{left:536.266667pt;}
.x80_c00012{left:537.200000pt;}
.xed_c00012{left:541.333333pt;}
.xe6_c00012{left:543.600000pt;}
.x3f_c00012{left:548.000000pt;}
.xc7_c00012{left:549.200000pt;}
.x1a_c00012{left:550.400000pt;}
.x6e_c00012{left:556.000000pt;}
.x77_c00012{left:558.400000pt;}
.xc8_c00012{left:559.466667pt;}
.x93_c00012{left:564.400000pt;}
.xe7_c00012{left:567.333333pt;}
.xbe_c00012{left:570.133333pt;}
.x40_c00012{left:572.266667pt;}
.xb_c00012{left:573.200000pt;}
.x32_c00012{left:575.866667pt;}
.x9d_c00012{left:579.066667pt;}
.x8a_c00012{left:583.200000pt;}
.xde_c00012{left:584.400000pt;}
.x33_c00012{left:586.400000pt;}
.x26_c00012{left:588.000000pt;}
.xa9_c00012{left:589.200000pt;}
.x4d_c00012{left:591.733333pt;}
.xb2_c00012{left:593.600000pt;}
.xc_c00012{left:596.933333pt;}
.xcc_c00012{left:597.866667pt;}
.x1b_c00012{left:599.333333pt;}
.xbf_c00012{left:600.800000pt;}
.x6f_c00012{left:606.800000pt;}
.x9e_c00012{left:608.800000pt;}
.xb3_c00012{left:612.133333pt;}
.x27_c00012{left:614.533333pt;}
.x4e_c00012{left:616.000000pt;}
.x65_c00012{left:621.733333pt;}
.xdf_c00012{left:622.800000pt;}
.x59_c00012{left:624.933333pt;}
.xee_c00012{left:628.666667pt;}
.x81_c00012{left:632.533333pt;}
.x78_c00012{left:635.466667pt;}
.xcd_c00012{left:636.533333pt;}
.x34_c00012{left:638.933333pt;}
.xb4_c00012{left:646.400000pt;}
.x41_c00012{left:649.066667pt;}
.x82_c00012{left:651.733333pt;}
.x5a_c00012{left:654.666667pt;}
.xf6_c00012{left:664.933333pt;}
.x9f_c00012{left:667.733333pt;}
.x35_c00012{left:670.666667pt;}
}





/* 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_c00013 {
    display:none;
  }
  .loading-indicator_c00013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00013 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_c00013 { 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_c00013" -> "#page-container .classname_c00013")
 */
.pf_c00013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00013 { /* 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_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00013 { /* 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_c00013 { /* 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_c00013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00013 {overflow:visible;}
  }
}
.c_c00013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00013 { /* 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_c00013:after { /* webkit #35443 */
  content: '';
}
.t_c00013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00013 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 */
}
.__c00013 { /* 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_c00013 { /* info for Javascript */
  display:none;
}
.l_c00013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00013: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_c00013 {
    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_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00013.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_c00013 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00013;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.000000;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;}
.m7b_c00013{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m68_c00013{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m40_c00013{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m22_c00013{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m17_c00013{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00013{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m94_c00013{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m0_c00013{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00013{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m83_c00013{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00013{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00013{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00013{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00013{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00013{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00013{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.me_c00013{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00013{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m49_c00013{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00013{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m73_c00013{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m50_c00013{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00013{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4_c00013{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00013{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00013{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m37_c00013{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md2_c00013{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00013{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m60_c00013{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m13_c00013{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m62_c00013{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m26_c00013{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m76_c00013{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m12_c00013{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mda_c00013{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m59_c00013{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00013{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00013{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m58_c00013{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m7_c00013{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m72_c00013{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00013{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00013{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00013{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mba_c00013{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00013{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mca_c00013{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00013{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00013{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m63_c00013{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00013{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00013{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00013{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m52_c00013{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00013{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m66_c00013{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00013{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m78_c00013{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00013{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00013{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.md6_c00013{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md7_c00013{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00013{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m75_c00013{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00013{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6_c00013{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00013{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m71_c00013{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00013{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00013{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m18_c00013{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m56_c00013{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00013{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m74_c00013{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.md9_c00013{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00013{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m82_c00013{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m80_c00013{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00013{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m99_c00013{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md0_c00013{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m32_c00013{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m28_c00013{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m85_c00013{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m41_c00013{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m38_c00013{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m27_c00013{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00013{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m57_c00013{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m61_c00013{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00013{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00013{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m64_c00013{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m44_c00013{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00013{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m14_c00013{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00013{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00013{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m29_c00013{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m33_c00013{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf_c00013{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00013{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma_c00013{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8_c00013{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m31_c00013{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00013{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00013{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00013{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m36_c00013{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00013{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2_c00013{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00013{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m35_c00013{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00013{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5_c00013{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00013{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00013{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m10_c00013{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00013{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc_c00013{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m88_c00013{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00013{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m69_c00013{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00013{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m67_c00013{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m84_c00013{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m51_c00013{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m16_c00013{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m96_c00013{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9_c00013{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m21_c00013{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m24_c00013{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00013{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md8_c00013{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m19_c00013{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.md1_c00013{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00013{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00013{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb_c00013{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m43_c00013{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);}
.m77_c00013{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md_c00013{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m45_c00013{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00013{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00013{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m54_c00013{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md3_c00013{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m55_c00013{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m79_c00013{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00013{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mce_c00013{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00013{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00013{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00013{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00013{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m23_c00013{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m46_c00013{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m20_c00013{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00013{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m97_c00013{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mac_c00013{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00013{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00013{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00013{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m81_c00013{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m48_c00013{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00013{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m34_c00013{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m91_c00013{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m70_c00013{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00013{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.md5_c00013{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00013{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m42_c00013{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00013{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00013{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m25_c00013{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m65_c00013{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m86_c00013{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m15_c00013{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.mae_c00013{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m39_c00013{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00013{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00013{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00013{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00013{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00013{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m87_c00013{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m92_c00013{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00013{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00013{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m90_c00013{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.maf_c00013{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.md4_c00013{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.m30_c00013{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.maa_c00013{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00013{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00013{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00013{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00013{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00013{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00013{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.mad_c00013{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m89_c00013{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00013{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00013{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00013{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m47_c00013{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m53_c00013{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m98_c00013{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00013{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mab_c00013{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00013{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00013{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m95_c00013{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00013{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m93_c00013{transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00013{transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls0_c00013{letter-spacing:0.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{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__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00013{word-spacing:-12.222222px;}
.ws0_c00013{word-spacing:-4.038462px;}
.ws2_c00013{word-spacing:-2.819026px;}
.ws4_c00013{word-spacing:0.000000px;}
.ws3_c00013{word-spacing:24.865007px;}
.fc0_c00013{color:transparent;}
.fs3_c00013{font-size:66.000000px;}
.fs2_c00013{font-size:72.000000px;}
.fs1_c00013{font-size:78.000000px;}
.fs0_c00013{font-size:108.000000px;}
.y0_c00013{bottom:0.000000px;}
.y24_c00013{bottom:225.150000px;}
.y23_c00013{bottom:250.050000px;}
.y22_c00013{bottom:274.950000px;}
.y21_c00013{bottom:299.100000px;}
.y20_c00013{bottom:324.000000px;}
.y1f_c00013{bottom:348.150000px;}
.y1e_c00013{bottom:386.250000px;}
.y1d_c00013{bottom:411.150000px;}
.y1c_c00013{bottom:435.300000px;}
.y1b_c00013{bottom:460.200000px;}
.y1a_c00013{bottom:484.650000px;}
.y19_c00013{bottom:509.100000px;}
.y18_c00013{bottom:533.550000px;}
.y17_c00013{bottom:571.050000px;}
.y16_c00013{bottom:595.500000px;}
.y15_c00013{bottom:619.950000px;}
.y14_c00013{bottom:658.800000px;}
.y13_c00013{bottom:682.950000px;}
.y12_c00013{bottom:707.400000px;}
.y11_c00013{bottom:731.850000px;}
.y10_c00013{bottom:756.750000px;}
.yf_c00013{bottom:780.900000px;}
.ye_c00013{bottom:805.350000px;}
.yd_c00013{bottom:829.500000px;}
.yc_c00013{bottom:866.400000px;}
.yb_c00013{bottom:891.300000px;}
.ya_c00013{bottom:915.000000px;}
.y9_c00013{bottom:939.900000px;}
.y8_c00013{bottom:964.800000px;}
.y7_c00013{bottom:989.250000px;}
.y6_c00013{bottom:1013.700000px;}
.y5_c00013{bottom:1036.800000px;}
.y4_c00013{bottom:1070.250000px;}
.y3_c00013{bottom:1095.150000px;}
.y2_c00013{bottom:1119.300000px;}
.y1_c00013{bottom:1148.400000px;}
.h5_c00013{height:66.000000px;}
.h4_c00013{height:72.000000px;}
.h3_c00013{height:78.000000px;}
.h2_c00013{height:108.000000px;}
.h1_c00013{height:1272.000000px;}
.h0_c00013{height:1272.239960px;}
.w0_c00013{width:948.600036px;}
.w1_c00013{width:948.750000px;}
.x0_c00013{left:0.000000px;}
.xd3_c00013{left:177.450000px;}
.x7f_c00013{left:179.250000px;}
.x1_c00013{left:182.100000px;}
.x3_c00013{left:183.300000px;}
.xf6_c00013{left:184.800000px;}
.x1c_c00013{left:203.400000px;}
.xc7_c00013{left:207.000000px;}
.xb9_c00013{left:218.250000px;}
.xb0_c00013{left:221.550000px;}
.x3b_c00013{left:225.750000px;}
.xe7_c00013{left:228.300000px;}
.xf_c00013{left:230.700000px;}
.xa7_c00013{left:232.950000px;}
.xcc_c00013{left:235.650000px;}
.xf3_c00013{left:236.850000px;}
.x80_c00013{left:240.450000px;}
.xa4_c00013{left:242.850000px;}
.x19_c00013{left:244.350000px;}
.x4f_c00013{left:245.400000px;}
.x88_c00013{left:247.650000px;}
.x78_c00013{left:250.800000px;}
.x10_c00013{left:253.350000px;}
.xc8_c00013{left:254.850000px;}
.x81_c00013{left:256.350000px;}
.x31_c00013{left:257.400000px;}
.x1d_c00013{left:260.700000px;}
.x64_c00013{left:261.900000px;}
.x4_c00013{left:265.800000px;}
.x48_c00013{left:267.150000px;}
.x27_c00013{left:268.350000px;}
.x9b_c00013{left:269.550000px;}
.x59_c00013{left:274.800000px;}
.xb1_c00013{left:278.400000px;}
.xba_c00013{left:279.450000px;}
.x9c_c00013{left:280.650000px;}
.x6d_c00013{left:281.850000px;}
.x65_c00013{left:283.200000px;}
.xcd_c00013{left:284.550000px;}
.x3c_c00013{left:289.500000px;}
.x1a_c00013{left:291.150000px;}
.x89_c00013{left:293.400000px;}
.x5_c00013{left:294.600000px;}
.x6e_c00013{left:295.950000px;}
.x79_c00013{left:297.300000px;}
.xc1_c00013{left:298.350000px;}
.x82_c00013{left:300.300000px;}
.x66_c00013{left:305.100000px;}
.xe8_c00013{left:307.200000px;}
.x11_c00013{left:309.150000px;}
.xc9_c00013{left:311.700000px;}
.xa8_c00013{left:313.200000px;}
.x1e_c00013{left:318.600000px;}
.xce_c00013{left:321.300000px;}
.x6_c00013{left:323.400000px;}
.xe5_c00013{left:324.750000px;}
.x50_c00013{left:326.100000px;}
.x5a_c00013{left:329.550000px;}
.x1b_c00013{left:331.500000px;}
.x49_c00013{left:335.250000px;}
.x3d_c00013{left:336.300000px;}
.xb2_c00013{left:339.600000px;}
.x28_c00013{left:345.750000px;}
.xed_c00013{left:347.550000px;}
.xa5_c00013{left:348.750000px;}
.x51_c00013{left:350.250000px;}
.x1f_c00013{left:351.750000px;}
.xe9_c00013{left:355.050000px;}
.xb3_c00013{left:356.550000px;}
.xe1_c00013{left:357.750000px;}
.x32_c00013{left:363.600000px;}
.x12_c00013{left:365.250000px;}
.x4a_c00013{left:367.650000px;}
.x67_c00013{left:368.850000px;}
.x7a_c00013{left:378.600000px;}
.xbb_c00013{left:381.300000px;}
.x8a_c00013{left:382.350000px;}
.x5b_c00013{left:384.300000px;}
.x33_c00013{left:388.500000px;}
.x52_c00013{left:390.900000px;}
.x68_c00013{left:391.950000px;}
.x7_c00013{left:393.600000px;}
.x8b_c00013{left:395.700000px;}
.xd4_c00013{left:396.750000px;}
.xcf_c00013{left:403.350000px;}
.xdc_c00013{left:407.550000px;}
.x2_c00013{left:411.000000px;}
.x3e_c00013{left:413.700000px;}
.x5c_c00013{left:415.200000px;}
.x9d_c00013{left:416.400000px;}
.xa6_c00013{left:422.550000px;}
.x98_c00013{left:425.550000px;}
.x53_c00013{left:426.900000px;}
.x9e_c00013{left:428.250000px;}
.xd5_c00013{left:429.900000px;}
.xca_c00013{left:432.600000px;}
.x93_c00013{left:433.950000px;}
.x29_c00013{left:435.000000px;}
.x6f_c00013{left:436.350000px;}
.x8c_c00013{left:438.150000px;}
.xee_c00013{left:440.850000px;}
.x13_c00013{left:445.200000px;}
.x8d_c00013{left:448.650000px;}
.x8_c00013{left:450.900000px;}
.xa9_c00013{left:452.250000px;}
.x20_c00013{left:454.350000px;}
.xdd_c00013{left:459.000000px;}
.x83_c00013{left:460.950000px;}
.x2a_c00013{left:467.700000px;}
.xb4_c00013{left:468.750000px;}
.x54_c00013{left:472.650000px;}
.xde_c00013{left:476.700000px;}
.x9_c00013{left:478.950000px;}
.xc2_c00013{left:481.200000px;}
.xe6_c00013{left:482.850000px;}
.xb5_c00013{left:483.900000px;}
.x5d_c00013{left:485.400000px;}
.xe0_c00013{left:486.600000px;}
.xd6_c00013{left:496.800000px;}
.xe2_c00013{left:499.950000px;}
.x34_c00013{left:506.250000px;}
.xea_c00013{left:507.600000px;}
.xdf_c00013{left:509.100000px;}
.x94_c00013{left:510.300000px;}
.x9f_c00013{left:511.800000px;}
.xbc_c00013{left:516.300000px;}
.x3f_c00013{left:519.900000px;}
.x35_c00013{left:521.400000px;}
.x7b_c00013{left:524.700000px;}
.x8e_c00013{left:528.150000px;}
.xaa_c00013{left:537.600000px;}
.x8f_c00013{left:538.650000px;}
.x21_c00013{left:539.700000px;}
.x4b_c00013{left:541.650000px;}
.x40_c00013{left:543.600000px;}
.x70_c00013{left:549.450000px;}
.xab_c00013{left:552.000000px;}
.x2b_c00013{left:555.600000px;}
.xa0_c00013{left:559.350000px;}
.xef_c00013{left:560.700000px;}
.xa_c00013{left:561.750000px;}
.x36_c00013{left:566.100000px;}
.xc3_c00013{left:567.300000px;}
.x84_c00013{left:569.700000px;}
.x7c_c00013{left:570.750000px;}
.xa1_c00013{left:573.750000px;}
.xd7_c00013{left:574.950000px;}
.xb6_c00013{left:576.150000px;}
.x69_c00013{left:578.100000px;}
.x95_c00013{left:579.750000px;}
.x71_c00013{left:584.400000px;}
.x90_c00013{left:585.750000px;}
.xb7_c00013{left:588.000000px;}
.xf0_c00013{left:595.200000px;}
.x37_c00013{left:597.450000px;}
.x41_c00013{left:599.100000px;}
.xcb_c00013{left:602.400000px;}
.x5e_c00013{left:603.900000px;}
.x14_c00013{left:605.700000px;}
.xd8_c00013{left:610.200000px;}
.x55_c00013{left:612.150000px;}
.x72_c00013{left:614.250000px;}
.xc4_c00013{left:619.500000px;}
.xeb_c00013{left:624.000000px;}
.xb_c00013{left:625.050000px;}
.x42_c00013{left:627.150000px;}
.xd0_c00013{left:630.450000px;}
.x15_c00013{left:631.650000px;}
.xac_c00013{left:633.000000px;}
.x22_c00013{left:634.350000px;}
.x5f_c00013{left:646.050000px;}
.x73_c00013{left:647.700000px;}
.x23_c00013{left:649.800000px;}
.xa2_c00013{left:651.150000px;}
.x2c_c00013{left:655.350000px;}
.x4c_c00013{left:656.850000px;}
.x6a_c00013{left:663.450000px;}
.x96_c00013{left:665.850000px;}
.xc_c00013{left:668.550000px;}
.xf4_c00013{left:670.800000px;}
.xd1_c00013{left:672.600000px;}
.xbd_c00013{left:673.950000px;}
.x6b_c00013{left:678.150000px;}
.x43_c00013{left:679.650000px;}
.xd9_c00013{left:682.200000px;}
.x56_c00013{left:686.700000px;}
.x2d_c00013{left:688.050000px;}
.x4d_c00013{left:693.600000px;}
.x16_c00013{left:703.350000px;}
.x85_c00013{left:705.150000px;}
.xf5_c00013{left:706.500000px;}
.x38_c00013{left:712.950000px;}
.xe3_c00013{left:718.200000px;}
.xda_c00013{left:720.000000px;}
.x60_c00013{left:721.350000px;}
.xc5_c00013{left:722.700000px;}
.x24_c00013{left:723.900000px;}
.x74_c00013{left:725.850000px;}
.x99_c00013{left:727.500000px;}
.x44_c00013{left:730.800000px;}
.x39_c00013{left:733.800000px;}
.xa3_c00013{left:737.250000px;}
.xd_c00013{left:738.450000px;}
.x2e_c00013{left:740.550000px;}
.x7d_c00013{left:744.900000px;}
.xbe_c00013{left:747.750000px;}
.x45_c00013{left:749.850000px;}
.xad_c00013{left:752.850000px;}
.x91_c00013{left:756.000000px;}
.x61_c00013{left:759.450000px;}
.x6c_c00013{left:762.450000px;}
.x92_c00013{left:767.550000px;}
.xf1_c00013{left:768.600000px;}
.x57_c00013{left:770.550000px;}
.xc6_c00013{left:774.600000px;}
.x46_c00013{left:775.800000px;}
.x2f_c00013{left:777.600000px;}
.x86_c00013{left:778.950000px;}
.xec_c00013{left:780.300000px;}
.x17_c00013{left:783.600000px;}
.x62_c00013{left:784.950000px;}
.xe_c00013{left:788.100000px;}
.x3a_c00013{left:791.700000px;}
.xae_c00013{left:793.200000px;}
.x75_c00013{left:794.550000px;}
.x58_c00013{left:796.800000px;}
.xd2_c00013{left:798.900000px;}
.xf2_c00013{left:799.950000px;}
.xb8_c00013{left:804.750000px;}
.xaf_c00013{left:808.350000px;}
.x76_c00013{left:814.650000px;}
.x30_c00013{left:816.150000px;}
.xbf_c00013{left:824.400000px;}
.x77_c00013{left:825.450000px;}
.x63_c00013{left:828.150000px;}
.x25_c00013{left:830.100000px;}
.x9a_c00013{left:832.650000px;}
.x87_c00013{left:834.000000px;}
.x4e_c00013{left:839.700000px;}
.xc0_c00013{left:840.900000px;}
.x7e_c00013{left:842.850000px;}
.x47_c00013{left:848.550000px;}
.x26_c00013{left:852.000000px;}
.xdb_c00013{left:858.300000px;}
.xe4_c00013{left:861.750000px;}
.xf7_c00013{left:866.850000px;}
.x18_c00013{left:871.500000px;}
.x97_c00013{left:874.200000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws1_c00013{word-spacing:-10.864198pt;}
.ws0_c00013{word-spacing:-3.589744pt;}
.ws2_c00013{word-spacing:-2.505800pt;}
.ws4_c00013{word-spacing:0.000000pt;}
.ws3_c00013{word-spacing:22.102228pt;}
.fs3_c00013{font-size:58.666667pt;}
.fs2_c00013{font-size:64.000000pt;}
.fs1_c00013{font-size:69.333333pt;}
.fs0_c00013{font-size:96.000000pt;}
.y0_c00013{bottom:0.000000pt;}
.y24_c00013{bottom:200.133333pt;}
.y23_c00013{bottom:222.266667pt;}
.y22_c00013{bottom:244.400000pt;}
.y21_c00013{bottom:265.866667pt;}
.y20_c00013{bottom:288.000000pt;}
.y1f_c00013{bottom:309.466667pt;}
.y1e_c00013{bottom:343.333333pt;}
.y1d_c00013{bottom:365.466667pt;}
.y1c_c00013{bottom:386.933333pt;}
.y1b_c00013{bottom:409.066667pt;}
.y1a_c00013{bottom:430.800000pt;}
.y19_c00013{bottom:452.533333pt;}
.y18_c00013{bottom:474.266667pt;}
.y17_c00013{bottom:507.600000pt;}
.y16_c00013{bottom:529.333333pt;}
.y15_c00013{bottom:551.066667pt;}
.y14_c00013{bottom:585.600000pt;}
.y13_c00013{bottom:607.066667pt;}
.y12_c00013{bottom:628.800000pt;}
.y11_c00013{bottom:650.533333pt;}
.y10_c00013{bottom:672.666667pt;}
.yf_c00013{bottom:694.133333pt;}
.ye_c00013{bottom:715.866667pt;}
.yd_c00013{bottom:737.333333pt;}
.yc_c00013{bottom:770.133333pt;}
.yb_c00013{bottom:792.266667pt;}
.ya_c00013{bottom:813.333333pt;}
.y9_c00013{bottom:835.466667pt;}
.y8_c00013{bottom:857.600000pt;}
.y7_c00013{bottom:879.333333pt;}
.y6_c00013{bottom:901.066667pt;}
.y5_c00013{bottom:921.600000pt;}
.y4_c00013{bottom:951.333333pt;}
.y3_c00013{bottom:973.466667pt;}
.y2_c00013{bottom:994.933333pt;}
.y1_c00013{bottom:1020.800000pt;}
.h5_c00013{height:58.666667pt;}
.h4_c00013{height:64.000000pt;}
.h3_c00013{height:69.333333pt;}
.h2_c00013{height:96.000000pt;}
.h1_c00013{height:1130.666667pt;}
.h0_c00013{height:1130.879964pt;}
.w0_c00013{width:843.200032pt;}
.w1_c00013{width:843.333333pt;}
.x0_c00013{left:0.000000pt;}
.xd3_c00013{left:157.733333pt;}
.x7f_c00013{left:159.333333pt;}
.x1_c00013{left:161.866667pt;}
.x3_c00013{left:162.933333pt;}
.xf6_c00013{left:164.266667pt;}
.x1c_c00013{left:180.800000pt;}
.xc7_c00013{left:184.000000pt;}
.xb9_c00013{left:194.000000pt;}
.xb0_c00013{left:196.933333pt;}
.x3b_c00013{left:200.666667pt;}
.xe7_c00013{left:202.933333pt;}
.xf_c00013{left:205.066667pt;}
.xa7_c00013{left:207.066667pt;}
.xcc_c00013{left:209.466667pt;}
.xf3_c00013{left:210.533333pt;}
.x80_c00013{left:213.733333pt;}
.xa4_c00013{left:215.866667pt;}
.x19_c00013{left:217.200000pt;}
.x4f_c00013{left:218.133333pt;}
.x88_c00013{left:220.133333pt;}
.x78_c00013{left:222.933333pt;}
.x10_c00013{left:225.200000pt;}
.xc8_c00013{left:226.533333pt;}
.x81_c00013{left:227.866667pt;}
.x31_c00013{left:228.800000pt;}
.x1d_c00013{left:231.733333pt;}
.x64_c00013{left:232.800000pt;}
.x4_c00013{left:236.266667pt;}
.x48_c00013{left:237.466667pt;}
.x27_c00013{left:238.533333pt;}
.x9b_c00013{left:239.600000pt;}
.x59_c00013{left:244.266667pt;}
.xb1_c00013{left:247.466667pt;}
.xba_c00013{left:248.400000pt;}
.x9c_c00013{left:249.466667pt;}
.x6d_c00013{left:250.533333pt;}
.x65_c00013{left:251.733333pt;}
.xcd_c00013{left:252.933333pt;}
.x3c_c00013{left:257.333333pt;}
.x1a_c00013{left:258.800000pt;}
.x89_c00013{left:260.800000pt;}
.x5_c00013{left:261.866667pt;}
.x6e_c00013{left:263.066667pt;}
.x79_c00013{left:264.266667pt;}
.xc1_c00013{left:265.200000pt;}
.x82_c00013{left:266.933333pt;}
.x66_c00013{left:271.200000pt;}
.xe8_c00013{left:273.066667pt;}
.x11_c00013{left:274.800000pt;}
.xc9_c00013{left:277.066667pt;}
.xa8_c00013{left:278.400000pt;}
.x1e_c00013{left:283.200000pt;}
.xce_c00013{left:285.600000pt;}
.x6_c00013{left:287.466667pt;}
.xe5_c00013{left:288.666667pt;}
.x50_c00013{left:289.866667pt;}
.x5a_c00013{left:292.933333pt;}
.x1b_c00013{left:294.666667pt;}
.x49_c00013{left:298.000000pt;}
.x3d_c00013{left:298.933333pt;}
.xb2_c00013{left:301.866667pt;}
.x28_c00013{left:307.333333pt;}
.xed_c00013{left:308.933333pt;}
.xa5_c00013{left:310.000000pt;}
.x51_c00013{left:311.333333pt;}
.x1f_c00013{left:312.666667pt;}
.xe9_c00013{left:315.600000pt;}
.xb3_c00013{left:316.933333pt;}
.xe1_c00013{left:318.000000pt;}
.x32_c00013{left:323.200000pt;}
.x12_c00013{left:324.666667pt;}
.x4a_c00013{left:326.800000pt;}
.x67_c00013{left:327.866667pt;}
.x7a_c00013{left:336.533333pt;}
.xbb_c00013{left:338.933333pt;}
.x8a_c00013{left:339.866667pt;}
.x5b_c00013{left:341.600000pt;}
.x33_c00013{left:345.333333pt;}
.x52_c00013{left:347.466667pt;}
.x68_c00013{left:348.400000pt;}
.x7_c00013{left:349.866667pt;}
.x8b_c00013{left:351.733333pt;}
.xd4_c00013{left:352.666667pt;}
.xcf_c00013{left:358.533333pt;}
.xdc_c00013{left:362.266667pt;}
.x2_c00013{left:365.333333pt;}
.x3e_c00013{left:367.733333pt;}
.x5c_c00013{left:369.066667pt;}
.x9d_c00013{left:370.133333pt;}
.xa6_c00013{left:375.600000pt;}
.x98_c00013{left:378.266667pt;}
.x53_c00013{left:379.466667pt;}
.x9e_c00013{left:380.666667pt;}
.xd5_c00013{left:382.133333pt;}
.xca_c00013{left:384.533333pt;}
.x93_c00013{left:385.733333pt;}
.x29_c00013{left:386.666667pt;}
.x6f_c00013{left:387.866667pt;}
.x8c_c00013{left:389.466667pt;}
.xee_c00013{left:391.866667pt;}
.x13_c00013{left:395.733333pt;}
.x8d_c00013{left:398.800000pt;}
.x8_c00013{left:400.800000pt;}
.xa9_c00013{left:402.000000pt;}
.x20_c00013{left:403.866667pt;}
.xdd_c00013{left:408.000000pt;}
.x83_c00013{left:409.733333pt;}
.x2a_c00013{left:415.733333pt;}
.xb4_c00013{left:416.666667pt;}
.x54_c00013{left:420.133333pt;}
.xde_c00013{left:423.733333pt;}
.x9_c00013{left:425.733333pt;}
.xc2_c00013{left:427.733333pt;}
.xe6_c00013{left:429.200000pt;}
.xb5_c00013{left:430.133333pt;}
.x5d_c00013{left:431.466667pt;}
.xe0_c00013{left:432.533333pt;}
.xd6_c00013{left:441.600000pt;}
.xe2_c00013{left:444.400000pt;}
.x34_c00013{left:450.000000pt;}
.xea_c00013{left:451.200000pt;}
.xdf_c00013{left:452.533333pt;}
.x94_c00013{left:453.600000pt;}
.x9f_c00013{left:454.933333pt;}
.xbc_c00013{left:458.933333pt;}
.x3f_c00013{left:462.133333pt;}
.x35_c00013{left:463.466667pt;}
.x7b_c00013{left:466.400000pt;}
.x8e_c00013{left:469.466667pt;}
.xaa_c00013{left:477.866667pt;}
.x8f_c00013{left:478.800000pt;}
.x21_c00013{left:479.733333pt;}
.x4b_c00013{left:481.466667pt;}
.x40_c00013{left:483.200000pt;}
.x70_c00013{left:488.400000pt;}
.xab_c00013{left:490.666667pt;}
.x2b_c00013{left:493.866667pt;}
.xa0_c00013{left:497.200000pt;}
.xef_c00013{left:498.400000pt;}
.xa_c00013{left:499.333333pt;}
.x36_c00013{left:503.200000pt;}
.xc3_c00013{left:504.266667pt;}
.x84_c00013{left:506.400000pt;}
.x7c_c00013{left:507.333333pt;}
.xa1_c00013{left:510.000000pt;}
.xd7_c00013{left:511.066667pt;}
.xb6_c00013{left:512.133333pt;}
.x69_c00013{left:513.866667pt;}
.x95_c00013{left:515.333333pt;}
.x71_c00013{left:519.466667pt;}
.x90_c00013{left:520.666667pt;}
.xb7_c00013{left:522.666667pt;}
.xf0_c00013{left:529.066667pt;}
.x37_c00013{left:531.066667pt;}
.x41_c00013{left:532.533333pt;}
.xcb_c00013{left:535.466667pt;}
.x5e_c00013{left:536.800000pt;}
.x14_c00013{left:538.400000pt;}
.xd8_c00013{left:542.400000pt;}
.x55_c00013{left:544.133333pt;}
.x72_c00013{left:546.000000pt;}
.xc4_c00013{left:550.666667pt;}
.xeb_c00013{left:554.666667pt;}
.xb_c00013{left:555.600000pt;}
.x42_c00013{left:557.466667pt;}
.xd0_c00013{left:560.400000pt;}
.x15_c00013{left:561.466667pt;}
.xac_c00013{left:562.666667pt;}
.x22_c00013{left:563.866667pt;}
.x5f_c00013{left:574.266667pt;}
.x73_c00013{left:575.733333pt;}
.x23_c00013{left:577.600000pt;}
.xa2_c00013{left:578.800000pt;}
.x2c_c00013{left:582.533333pt;}
.x4c_c00013{left:583.866667pt;}
.x6a_c00013{left:589.733333pt;}
.x96_c00013{left:591.866667pt;}
.xc_c00013{left:594.266667pt;}
.xf4_c00013{left:596.266667pt;}
.xd1_c00013{left:597.866667pt;}
.xbd_c00013{left:599.066667pt;}
.x6b_c00013{left:602.800000pt;}
.x43_c00013{left:604.133333pt;}
.xd9_c00013{left:606.400000pt;}
.x56_c00013{left:610.400000pt;}
.x2d_c00013{left:611.600000pt;}
.x4d_c00013{left:616.533333pt;}
.x16_c00013{left:625.200000pt;}
.x85_c00013{left:626.800000pt;}
.xf5_c00013{left:628.000000pt;}
.x38_c00013{left:633.733333pt;}
.xe3_c00013{left:638.400000pt;}
.xda_c00013{left:640.000000pt;}
.x60_c00013{left:641.200000pt;}
.xc5_c00013{left:642.400000pt;}
.x24_c00013{left:643.466667pt;}
.x74_c00013{left:645.200000pt;}
.x99_c00013{left:646.666667pt;}
.x44_c00013{left:649.600000pt;}
.x39_c00013{left:652.266667pt;}
.xa3_c00013{left:655.333333pt;}
.xd_c00013{left:656.400000pt;}
.x2e_c00013{left:658.266667pt;}
.x7d_c00013{left:662.133333pt;}
.xbe_c00013{left:664.666667pt;}
.x45_c00013{left:666.533333pt;}
.xad_c00013{left:669.200000pt;}
.x91_c00013{left:672.000000pt;}
.x61_c00013{left:675.066667pt;}
.x6c_c00013{left:677.733333pt;}
.x92_c00013{left:682.266667pt;}
.xf1_c00013{left:683.200000pt;}
.x57_c00013{left:684.933333pt;}
.xc6_c00013{left:688.533333pt;}
.x46_c00013{left:689.600000pt;}
.x2f_c00013{left:691.200000pt;}
.x86_c00013{left:692.400000pt;}
.xec_c00013{left:693.600000pt;}
.x17_c00013{left:696.533333pt;}
.x62_c00013{left:697.733333pt;}
.xe_c00013{left:700.533333pt;}
.x3a_c00013{left:703.733333pt;}
.xae_c00013{left:705.066667pt;}
.x75_c00013{left:706.266667pt;}
.x58_c00013{left:708.266667pt;}
.xd2_c00013{left:710.133333pt;}
.xf2_c00013{left:711.066667pt;}
.xb8_c00013{left:715.333333pt;}
.xaf_c00013{left:718.533333pt;}
.x76_c00013{left:724.133333pt;}
.x30_c00013{left:725.466667pt;}
.xbf_c00013{left:732.800000pt;}
.x77_c00013{left:733.733333pt;}
.x63_c00013{left:736.133333pt;}
.x25_c00013{left:737.866667pt;}
.x9a_c00013{left:740.133333pt;}
.x87_c00013{left:741.333333pt;}
.x4e_c00013{left:746.400000pt;}
.xc0_c00013{left:747.466667pt;}
.x7e_c00013{left:749.200000pt;}
.x47_c00013{left:754.266667pt;}
.x26_c00013{left:757.333333pt;}
.xdb_c00013{left:762.933333pt;}
.xe4_c00013{left:766.000000pt;}
.xf7_c00013{left:770.533333pt;}
.x18_c00013{left:774.666667pt;}
.x97_c00013{left:777.066667pt;}
}





/* 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_c00014 {
    display:none;
  }
  .loading-indicator_c00014.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00014 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_c00014 { 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_c00014" -> "#page-container .classname_c00014")
 */
.pf_c00014 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00014 { /* 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_c00014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00014 { /* 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_c00014 { /* 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_c00014 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00014 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00014 {overflow:visible;}
  }
}
.c_c00014 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00014 { /* 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_c00014:after { /* webkit #35443 */
  content: '';
}
.t_c00014:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00014 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 */
}
.__c00014 { /* 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_c00014 { /* info for Javascript */
  display:none;
}
.l_c00014 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00014 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00014 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00014: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_c00014 {
    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_c00014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00014.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_c00014 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00014;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.000000;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;}
.m81_c00014{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.me_c00014{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00014{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.md5_c00014{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.md1_c00014{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00014{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00014{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00014{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m55_c00014{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m25_c00014{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00014{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00014{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.md6_c00014{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00014{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mba_c00014{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00014{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00014{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00014{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00014{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.ma_c00014{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9_c00014{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m98_c00014{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.md9_c00014{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m96_c00014{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m2_c00014{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m15_c00014{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m8_c00014{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m45_c00014{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00014{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00014{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00014{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mda_c00014{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m27_c00014{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00014{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00014{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m30_c00014{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m95_c00014{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m99_c00014{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m12_c00014{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m37_c00014{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00014{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m16_c00014{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00014{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m36_c00014{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m89_c00014{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5_c00014{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m18_c00014{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m31_c00014{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00014{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mab_c00014{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m47_c00014{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mae_c00014{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m14_c00014{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00014{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00014{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb_c00014{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mac_c00014{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m97_c00014{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m13_c00014{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00014{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m26_c00014{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00014{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m19_c00014{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00014{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m53_c00014{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mce_c00014{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6_c00014{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m73_c00014{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00014{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m91_c00014{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md2_c00014{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m87_c00014{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00014{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00014{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00014{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00014{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m3_c00014{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00014{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m74_c00014{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.maa_c00014{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00014{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m59_c00014{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m11_c00014{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00014{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m17_c00014{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00014{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m28_c00014{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00014{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4_c00014{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m70_c00014{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00014{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00014{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m22_c00014{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00014{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00014{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m58_c00014{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00014{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00014{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m57_c00014{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mca_c00014{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m39_c00014{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m67_c00014{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m20_c00014{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m51_c00014{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m82_c00014{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00014{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m33_c00014{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00014{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00014{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00014{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00014{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00014{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m10_c00014{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00014{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m24_c00014{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md4_c00014{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m88_c00014{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00014{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m54_c00014{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00014{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00014{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m84_c00014{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m86_c00014{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.md0_c00014{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m21_c00014{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00014{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m35_c00014{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00014{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m32_c00014{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00014{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00014{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00014{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m44_c00014{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m56_c00014{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00014{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7_c00014{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00014{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m43_c00014{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m92_c00014{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00014{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m38_c00014{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00014{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.md_c00014{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m72_c00014{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00014{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mc_c00014{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m93_c00014{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00014{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.maf_c00014{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m78_c00014{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m94_c00014{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m52_c00014{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m90_c00014{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00014{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m42_c00014{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m75_c00014{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m41_c00014{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00014{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m40_c00014{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m46_c00014{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);}
.mb4_c00014{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00014{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00014{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00014{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m85_c00014{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00014{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00014{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00014{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m34_c00014{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m48_c00014{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m71_c00014{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m63_c00014{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00014{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m23_c00014{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00014{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00014{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00014{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.md7_c00014{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00014{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00014{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mf_c00014{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m80_c00014{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00014{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md3_c00014{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00014{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00014{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m29_c00014{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m50_c00014{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00014{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m83_c00014{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m68_c00014{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00014{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00014{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m62_c00014{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mad_c00014{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00014{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.md8_c00014{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m76_c00014{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00014{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m66_c00014{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m64_c00014{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m65_c00014{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00014{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00014{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m79_c00014{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m77_c00014{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00014{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00014{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00014{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00014{transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00014{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00014{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m49_c00014{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00014{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m61_c00014{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00014{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m60_c00014{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00014{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m0_c00014{transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls0_c00014{letter-spacing:0.000000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{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__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:-14.275190px;}
.ws1_c00014{word-spacing:-7.200000px;}
.ws4_c00014{word-spacing:0.000000px;}
.ws3_c00014{word-spacing:5.312500px;}
.ws2_c00014{word-spacing:10.625000px;}
.fc0_c00014{color:transparent;}
.fs6_c00014{font-size:30.000000px;}
.fs4_c00014{font-size:54.000000px;}
.fs5_c00014{font-size:60.000000px;}
.fs3_c00014{font-size:66.000000px;}
.fs1_c00014{font-size:72.000000px;}
.fs0_c00014{font-size:78.000000px;}
.fs2_c00014{font-size:84.000000px;}
.y0_c00014{bottom:0.000000px;}
.y29_c00014{bottom:3.900000px;}
.y26_c00014{bottom:213.150000px;}
.y28_c00014{bottom:216.450000px;}
.y25_c00014{bottom:232.950000px;}
.y27_c00014{bottom:235.500000px;}
.y24_c00014{bottom:250.950000px;}
.y23_c00014{bottom:254.550000px;}
.y22_c00014{bottom:270.000000px;}
.y21_c00014{bottom:272.850000px;}
.y20_c00014{bottom:335.550000px;}
.y1f_c00014{bottom:365.400000px;}
.y1e_c00014{bottom:390.300000px;}
.y1d_c00014{bottom:415.200000px;}
.y1c_c00014{bottom:439.650000px;}
.y1b_c00014{bottom:464.100000px;}
.y1a_c00014{bottom:488.550000px;}
.y19_c00014{bottom:521.550000px;}
.y18_c00014{bottom:547.050000px;}
.y17_c00014{bottom:571.200000px;}
.y16_c00014{bottom:596.100000px;}
.y15_c00014{bottom:620.250000px;}
.y14_c00014{bottom:645.150000px;}
.y13_c00014{bottom:669.600000px;}
.y12_c00014{bottom:694.050000px;}
.y11_c00014{bottom:726.750000px;}
.y10_c00014{bottom:751.650000px;}
.yf_c00014{bottom:776.550000px;}
.ye_c00014{bottom:801.000000px;}
.yd_c00014{bottom:832.950000px;}
.yc_c00014{bottom:858.150000px;}
.yb_c00014{bottom:882.300000px;}
.ya_c00014{bottom:906.750000px;}
.y9_c00014{bottom:930.900000px;}
.y8_c00014{bottom:955.350000px;}
.y7_c00014{bottom:979.800000px;}
.y6_c00014{bottom:1004.700000px;}
.y5_c00014{bottom:1028.850000px;}
.y4_c00014{bottom:1053.750000px;}
.y3_c00014{bottom:1086.150000px;}
.y2_c00014{bottom:1111.350000px;}
.y1_c00014{bottom:1140.150000px;}
.h8_c00014{height:30.000000px;}
.h6_c00014{height:54.000000px;}
.h7_c00014{height:60.000000px;}
.h5_c00014{height:66.000000px;}
.h3_c00014{height:72.000000px;}
.h2_c00014{height:78.000000px;}
.h4_c00014{height:84.000000px;}
.h0_c00014{height:1268.640015px;}
.h1_c00014{height:1269.000000px;}
.w0_c00014{width:948.600036px;}
.w1_c00014{width:948.750000px;}
.x0_c00014{left:0.000000px;}
.x2a_c00014{left:64.650000px;}
.x3a_c00014{left:65.850000px;}
.x3_c00014{left:66.900000px;}
.xe9_c00014{left:76.650000px;}
.xde_c00014{left:77.700000px;}
.xdb_c00014{left:82.050000px;}
.xbc_c00014{left:84.600000px;}
.x12_c00014{left:86.400000px;}
.x69_c00014{left:88.500000px;}
.x7c_c00014{left:95.850000px;}
.x4_c00014{left:98.250000px;}
.x92_c00014{left:99.300000px;}
.x4c_c00014{left:102.150000px;}
.xcd_c00014{left:105.000000px;}
.x57_c00014{left:111.600000px;}
.x6c_c00014{left:118.500000px;}
.xab_c00014{left:119.550000px;}
.xaf_c00014{left:121.800000px;}
.x1f_c00014{left:125.550000px;}
.x2b_c00014{left:128.700000px;}
.x88_c00014{left:132.750000px;}
.xd6_c00014{left:135.000000px;}
.x58_c00014{left:137.850000px;}
.x13_c00014{left:139.650000px;}
.x3b_c00014{left:144.300000px;}
.xc4_c00014{left:146.400000px;}
.x60_c00014{left:148.350000px;}
.x2c_c00014{left:151.800000px;}
.x89_c00014{left:155.850000px;}
.xac_c00014{left:158.100000px;}
.xe6_c00014{left:159.150000px;}
.xd1_c00014{left:163.200000px;}
.x46_c00014{left:168.000000px;}
.x20_c00014{left:169.050000px;}
.x93_c00014{left:170.250000px;}
.x3c_c00014{left:177.000000px;}
.x9c_c00014{left:178.200000px;}
.x21_c00014{left:180.150000px;}
.xca_c00014{left:181.800000px;}
.x5_c00014{left:184.350000px;}
.xbd_c00014{left:185.700000px;}
.x6d_c00014{left:189.750000px;}
.x7d_c00014{left:190.950000px;}
.x4d_c00014{left:193.200000px;}
.x8a_c00014{left:194.700000px;}
.x14_c00014{left:196.200000px;}
.x6a_c00014{left:198.000000px;}
.xd2_c00014{left:200.700000px;}
.xa4_c00014{left:204.300000px;}
.x6_c00014{left:205.650000px;}
.x22_c00014{left:209.700000px;}
.xb6_c00014{left:214.650000px;}
.xce_c00014{left:217.350000px;}
.x94_c00014{left:220.650000px;}
.x2d_c00014{left:225.900000px;}
.x4e_c00014{left:227.100000px;}
.xd7_c00014{left:229.200000px;}
.xb0_c00014{left:230.550000px;}
.x7e_c00014{left:232.650000px;}
.x65_c00014{left:235.950000px;}
.xa5_c00014{left:241.650000px;}
.x66_c00014{left:246.450000px;}
.xe7_c00014{left:248.100000px;}
.x4f_c00014{left:249.450000px;}
.xb7_c00014{left:250.950000px;}
.x2e_c00014{left:252.150000px;}
.xd8_c00014{left:255.900000px;}
.x3d_c00014{left:258.000000px;}
.xc5_c00014{left:259.050000px;}
.x75_c00014{left:260.250000px;}
.x8b_c00014{left:264.900000px;}
.xba_c00014{left:268.050000px;}
.x15_c00014{left:270.750000px;}
.x6b_c00014{left:271.800000px;}
.xb8_c00014{left:280.500000px;}
.x95_c00014{left:284.700000px;}
.x16_c00014{left:286.950000px;}
.xe8_c00014{left:288.000000px;}
.x9d_c00014{left:289.050000px;}
.x1_c00014{left:291.300000px;}
.x61_c00014{left:292.650000px;}
.x96_c00014{left:296.250000px;}
.x6e_c00014{left:297.750000px;}
.x59_c00014{left:302.700000px;}
.x62_c00014{left:305.250000px;}
.x7_c00014{left:309.000000px;}
.x47_c00014{left:310.950000px;}
.x23_c00014{left:314.100000px;}
.x2f_c00014{left:316.650000px;}
.x86_c00014{left:318.900000px;}
.x5a_c00014{left:319.950000px;}
.x97_c00014{left:321.450000px;}
.x11_c00014{left:325.650000px;}
.x76_c00014{left:328.950000px;}
.xbe_c00014{left:332.550000px;}
.x67_c00014{left:333.900000px;}
.xa6_c00014{left:335.250000px;}
.x6f_c00014{left:336.600000px;}
.x8_c00014{left:338.100000px;}
.xcf_c00014{left:351.600000px;}
.x50_c00014{left:360.600000px;}
.x8c_c00014{left:363.600000px;}
.xb1_c00014{left:365.550000px;}
.x30_c00014{left:372.450000px;}
.x17_c00014{left:375.150000px;}
.x7f_c00014{left:377.400000px;}
.x5b_c00014{left:379.350000px;}
.x3e_c00014{left:382.200000px;}
.x51_c00014{left:385.800000px;}
.x8d_c00014{left:387.300000px;}
.x9_c00014{left:388.500000px;}
.x24_c00014{left:392.250000px;}
.xbb_c00014{left:394.350000px;}
.x77_c00014{left:398.850000px;}
.x63_c00014{left:401.250000px;}
.x5c_c00014{left:406.050000px;}
.x18_c00014{left:409.350000px;}
.x8e_c00014{left:417.150000px;}
.x80_c00014{left:418.500000px;}
.xd3_c00014{left:421.050000px;}
.xe0_c00014{left:422.250000px;}
.x31_c00014{left:423.900000px;}
.xc6_c00014{left:426.750000px;}
.xd0_c00014{left:427.950000px;}
.x3f_c00014{left:429.300000px;}
.x48_c00014{left:435.900000px;}
.xdf_c00014{left:437.100000px;}
.x78_c00014{left:443.850000px;}
.xbf_c00014{left:445.200000px;}
.x81_c00014{left:447.300000px;}
.x25_c00014{left:453.150000px;}
.xd4_c00014{left:454.950000px;}
.xe2_c00014{left:457.200000px;}
.x40_c00014{left:458.850000px;}
.x5d_c00014{left:461.850000px;}
.x32_c00014{left:463.500000px;}
.xd9_c00014{left:464.700000px;}
.xc0_c00014{left:468.600000px;}
.x9e_c00014{left:471.300000px;}
.x26_c00014{left:473.700000px;}
.x82_c00014{left:477.150000px;}
.xb2_c00014{left:479.550000px;}
.x70_c00014{left:483.600000px;}
.x9f_c00014{left:484.650000px;}
.xe1_c00014{left:489.300000px;}
.xda_c00014{left:491.400000px;}
.x8f_c00014{left:494.250000px;}
.xd5_c00014{left:498.450000px;}
.xa_c00014{left:499.800000px;}
.x52_c00014{left:504.900000px;}
.xb9_c00014{left:507.000000px;}
.xad_c00014{left:508.050000px;}
.x19_c00014{left:511.950000px;}
.x41_c00014{left:513.600000px;}
.x53_c00014{left:516.750000px;}
.x71_c00014{left:517.800000px;}
.xb_c00014{left:521.100000px;}
.x33_c00014{left:528.000000px;}
.x87_c00014{left:529.800000px;}
.x5e_c00014{left:534.150000px;}
.xc1_c00014{left:535.500000px;}
.xc_c00014{left:537.300000px;}
.xc7_c00014{left:538.800000px;}
.x68_c00014{left:539.850000px;}
.xa7_c00014{left:542.700000px;}
.x1a_c00014{left:544.350000px;}
.x34_c00014{left:546.000000px;}
.x27_c00014{left:552.600000px;}
.xc2_c00014{left:554.250000px;}
.xa0_c00014{left:555.600000px;}
.x98_c00014{left:559.350000px;}
.x54_c00014{left:561.000000px;}
.x79_c00014{left:563.400000px;}
.x49_c00014{left:565.500000px;}
.xd_c00014{left:568.950000px;}
.xa8_c00014{left:570.750000px;}
.xe3_c00014{left:572.100000px;}
.x1b_c00014{left:579.300000px;}
.xa9_c00014{left:580.800000px;}
.x7a_c00014{left:583.950000px;}
.xc8_c00014{left:585.600000px;}
.xa1_c00014{left:587.700000px;}
.x35_c00014{left:589.200000px;}
.x55_c00014{left:593.100000px;}
.x42_c00014{left:597.450000px;}
.x99_c00014{left:599.700000px;}
.x36_c00014{left:601.500000px;}
.x72_c00014{left:608.100000px;}
.xe_c00014{left:611.400000px;}
.xdc_c00014{left:613.050000px;}
.x64_c00014{left:614.100000px;}
.xb3_c00014{left:615.300000px;}
.x43_c00014{left:621.150000px;}
.xae_c00014{left:625.650000px;}
.x37_c00014{left:628.800000px;}
.x9a_c00014{left:631.800000px;}
.x28_c00014{left:636.000000px;}
.x1c_c00014{left:640.800000px;}
.x44_c00014{left:642.000000px;}
.xb4_c00014{left:644.850000px;}
.x4a_c00014{left:646.050000px;}
.x38_c00014{left:651.900000px;}
.x83_c00014{left:655.050000px;}
.xcb_c00014{left:659.250000px;}
.xe4_c00014{left:661.950000px;}
.xf_c00014{left:666.900000px;}
.xaa_c00014{left:668.250000px;}
.x1d_c00014{left:671.700000px;}
.xa2_c00014{left:673.050000px;}
.x45_c00014{left:675.450000px;}
.x90_c00014{left:677.100000px;}
.xb5_c00014{left:681.600000px;}
.xc3_c00014{left:683.250000px;}
.x84_c00014{left:685.350000px;}
.xc9_c00014{left:693.300000px;}
.x5f_c00014{left:695.550000px;}
.x56_c00014{left:698.100000px;}
.x4b_c00014{left:699.750000px;}
.xe5_c00014{left:702.600000px;}
.x91_c00014{left:704.400000px;}
.x39_c00014{left:709.200000px;}
.x10_c00014{left:716.250000px;}
.x73_c00014{left:717.900000px;}
.x7b_c00014{left:720.000000px;}
.xa3_c00014{left:724.200000px;}
.xcc_c00014{left:726.600000px;}
.xdd_c00014{left:728.550000px;}
.x9b_c00014{left:730.800000px;}
.x2_c00014{left:737.400000px;}
.x1e_c00014{left:739.800000px;}
.x85_c00014{left:744.750000px;}
.x74_c00014{left:748.800000px;}
.x29_c00014{left:754.050000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ws0_c00014{word-spacing:-12.689057pt;}
.ws1_c00014{word-spacing:-6.400000pt;}
.ws4_c00014{word-spacing:0.000000pt;}
.ws3_c00014{word-spacing:4.722222pt;}
.ws2_c00014{word-spacing:9.444444pt;}
.fs6_c00014{font-size:26.666667pt;}
.fs4_c00014{font-size:48.000000pt;}
.fs5_c00014{font-size:53.333333pt;}
.fs3_c00014{font-size:58.666667pt;}
.fs1_c00014{font-size:64.000000pt;}
.fs0_c00014{font-size:69.333333pt;}
.fs2_c00014{font-size:74.666667pt;}
.y0_c00014{bottom:0.000000pt;}
.y29_c00014{bottom:3.466667pt;}
.y26_c00014{bottom:189.466667pt;}
.y28_c00014{bottom:192.400000pt;}
.y25_c00014{bottom:207.066667pt;}
.y27_c00014{bottom:209.333333pt;}
.y24_c00014{bottom:223.066667pt;}
.y23_c00014{bottom:226.266667pt;}
.y22_c00014{bottom:240.000000pt;}
.y21_c00014{bottom:242.533333pt;}
.y20_c00014{bottom:298.266667pt;}
.y1f_c00014{bottom:324.800000pt;}
.y1e_c00014{bottom:346.933333pt;}
.y1d_c00014{bottom:369.066667pt;}
.y1c_c00014{bottom:390.800000pt;}
.y1b_c00014{bottom:412.533333pt;}
.y1a_c00014{bottom:434.266667pt;}
.y19_c00014{bottom:463.600000pt;}
.y18_c00014{bottom:486.266667pt;}
.y17_c00014{bottom:507.733333pt;}
.y16_c00014{bottom:529.866667pt;}
.y15_c00014{bottom:551.333333pt;}
.y14_c00014{bottom:573.466667pt;}
.y13_c00014{bottom:595.200000pt;}
.y12_c00014{bottom:616.933333pt;}
.y11_c00014{bottom:646.000000pt;}
.y10_c00014{bottom:668.133333pt;}
.yf_c00014{bottom:690.266667pt;}
.ye_c00014{bottom:712.000000pt;}
.yd_c00014{bottom:740.400000pt;}
.yc_c00014{bottom:762.800000pt;}
.yb_c00014{bottom:784.266667pt;}
.ya_c00014{bottom:806.000000pt;}
.y9_c00014{bottom:827.466667pt;}
.y8_c00014{bottom:849.200000pt;}
.y7_c00014{bottom:870.933333pt;}
.y6_c00014{bottom:893.066667pt;}
.y5_c00014{bottom:914.533333pt;}
.y4_c00014{bottom:936.666667pt;}
.y3_c00014{bottom:965.466667pt;}
.y2_c00014{bottom:987.866667pt;}
.y1_c00014{bottom:1013.466667pt;}
.h8_c00014{height:26.666667pt;}
.h6_c00014{height:48.000000pt;}
.h7_c00014{height:53.333333pt;}
.h5_c00014{height:58.666667pt;}
.h3_c00014{height:64.000000pt;}
.h2_c00014{height:69.333333pt;}
.h4_c00014{height:74.666667pt;}
.h0_c00014{height:1127.680013pt;}
.h1_c00014{height:1128.000000pt;}
.w0_c00014{width:843.200032pt;}
.w1_c00014{width:843.333333pt;}
.x0_c00014{left:0.000000pt;}
.x2a_c00014{left:57.466667pt;}
.x3a_c00014{left:58.533333pt;}
.x3_c00014{left:59.466667pt;}
.xe9_c00014{left:68.133333pt;}
.xde_c00014{left:69.066667pt;}
.xdb_c00014{left:72.933333pt;}
.xbc_c00014{left:75.200000pt;}
.x12_c00014{left:76.800000pt;}
.x69_c00014{left:78.666667pt;}
.x7c_c00014{left:85.200000pt;}
.x4_c00014{left:87.333333pt;}
.x92_c00014{left:88.266667pt;}
.x4c_c00014{left:90.800000pt;}
.xcd_c00014{left:93.333333pt;}
.x57_c00014{left:99.200000pt;}
.x6c_c00014{left:105.333333pt;}
.xab_c00014{left:106.266667pt;}
.xaf_c00014{left:108.266667pt;}
.x1f_c00014{left:111.600000pt;}
.x2b_c00014{left:114.400000pt;}
.x88_c00014{left:118.000000pt;}
.xd6_c00014{left:120.000000pt;}
.x58_c00014{left:122.533333pt;}
.x13_c00014{left:124.133333pt;}
.x3b_c00014{left:128.266667pt;}
.xc4_c00014{left:130.133333pt;}
.x60_c00014{left:131.866667pt;}
.x2c_c00014{left:134.933333pt;}
.x89_c00014{left:138.533333pt;}
.xac_c00014{left:140.533333pt;}
.xe6_c00014{left:141.466667pt;}
.xd1_c00014{left:145.066667pt;}
.x46_c00014{left:149.333333pt;}
.x20_c00014{left:150.266667pt;}
.x93_c00014{left:151.333333pt;}
.x3c_c00014{left:157.333333pt;}
.x9c_c00014{left:158.400000pt;}
.x21_c00014{left:160.133333pt;}
.xca_c00014{left:161.600000pt;}
.x5_c00014{left:163.866667pt;}
.xbd_c00014{left:165.066667pt;}
.x6d_c00014{left:168.666667pt;}
.x7d_c00014{left:169.733333pt;}
.x4d_c00014{left:171.733333pt;}
.x8a_c00014{left:173.066667pt;}
.x14_c00014{left:174.400000pt;}
.x6a_c00014{left:176.000000pt;}
.xd2_c00014{left:178.400000pt;}
.xa4_c00014{left:181.600000pt;}
.x6_c00014{left:182.800000pt;}
.x22_c00014{left:186.400000pt;}
.xb6_c00014{left:190.800000pt;}
.xce_c00014{left:193.200000pt;}
.x94_c00014{left:196.133333pt;}
.x2d_c00014{left:200.800000pt;}
.x4e_c00014{left:201.866667pt;}
.xd7_c00014{left:203.733333pt;}
.xb0_c00014{left:204.933333pt;}
.x7e_c00014{left:206.800000pt;}
.x65_c00014{left:209.733333pt;}
.xa5_c00014{left:214.800000pt;}
.x66_c00014{left:219.066667pt;}
.xe7_c00014{left:220.533333pt;}
.x4f_c00014{left:221.733333pt;}
.xb7_c00014{left:223.066667pt;}
.x2e_c00014{left:224.133333pt;}
.xd8_c00014{left:227.466667pt;}
.x3d_c00014{left:229.333333pt;}
.xc5_c00014{left:230.266667pt;}
.x75_c00014{left:231.333333pt;}
.x8b_c00014{left:235.466667pt;}
.xba_c00014{left:238.266667pt;}
.x15_c00014{left:240.666667pt;}
.x6b_c00014{left:241.600000pt;}
.xb8_c00014{left:249.333333pt;}
.x95_c00014{left:253.066667pt;}
.x16_c00014{left:255.066667pt;}
.xe8_c00014{left:256.000000pt;}
.x9d_c00014{left:256.933333pt;}
.x1_c00014{left:258.933333pt;}
.x61_c00014{left:260.133333pt;}
.x96_c00014{left:263.333333pt;}
.x6e_c00014{left:264.666667pt;}
.x59_c00014{left:269.066667pt;}
.x62_c00014{left:271.333333pt;}
.x7_c00014{left:274.666667pt;}
.x47_c00014{left:276.400000pt;}
.x23_c00014{left:279.200000pt;}
.x2f_c00014{left:281.466667pt;}
.x86_c00014{left:283.466667pt;}
.x5a_c00014{left:284.400000pt;}
.x97_c00014{left:285.733333pt;}
.x11_c00014{left:289.466667pt;}
.x76_c00014{left:292.400000pt;}
.xbe_c00014{left:295.600000pt;}
.x67_c00014{left:296.800000pt;}
.xa6_c00014{left:298.000000pt;}
.x6f_c00014{left:299.200000pt;}
.x8_c00014{left:300.533333pt;}
.xcf_c00014{left:312.533333pt;}
.x50_c00014{left:320.533333pt;}
.x8c_c00014{left:323.200000pt;}
.xb1_c00014{left:324.933333pt;}
.x30_c00014{left:331.066667pt;}
.x17_c00014{left:333.466667pt;}
.x7f_c00014{left:335.466667pt;}
.x5b_c00014{left:337.200000pt;}
.x3e_c00014{left:339.733333pt;}
.x51_c00014{left:342.933333pt;}
.x8d_c00014{left:344.266667pt;}
.x9_c00014{left:345.333333pt;}
.x24_c00014{left:348.666667pt;}
.xbb_c00014{left:350.533333pt;}
.x77_c00014{left:354.533333pt;}
.x63_c00014{left:356.666667pt;}
.x5c_c00014{left:360.933333pt;}
.x18_c00014{left:363.866667pt;}
.x8e_c00014{left:370.800000pt;}
.x80_c00014{left:372.000000pt;}
.xd3_c00014{left:374.266667pt;}
.xe0_c00014{left:375.333333pt;}
.x31_c00014{left:376.800000pt;}
.xc6_c00014{left:379.333333pt;}
.xd0_c00014{left:380.400000pt;}
.x3f_c00014{left:381.600000pt;}
.x48_c00014{left:387.466667pt;}
.xdf_c00014{left:388.533333pt;}
.x78_c00014{left:394.533333pt;}
.xbf_c00014{left:395.733333pt;}
.x81_c00014{left:397.600000pt;}
.x25_c00014{left:402.800000pt;}
.xd4_c00014{left:404.400000pt;}
.xe2_c00014{left:406.400000pt;}
.x40_c00014{left:407.866667pt;}
.x5d_c00014{left:410.533333pt;}
.x32_c00014{left:412.000000pt;}
.xd9_c00014{left:413.066667pt;}
.xc0_c00014{left:416.533333pt;}
.x9e_c00014{left:418.933333pt;}
.x26_c00014{left:421.066667pt;}
.x82_c00014{left:424.133333pt;}
.xb2_c00014{left:426.266667pt;}
.x70_c00014{left:429.866667pt;}
.x9f_c00014{left:430.800000pt;}
.xe1_c00014{left:434.933333pt;}
.xda_c00014{left:436.800000pt;}
.x8f_c00014{left:439.333333pt;}
.xd5_c00014{left:443.066667pt;}
.xa_c00014{left:444.266667pt;}
.x52_c00014{left:448.800000pt;}
.xb9_c00014{left:450.666667pt;}
.xad_c00014{left:451.600000pt;}
.x19_c00014{left:455.066667pt;}
.x41_c00014{left:456.533333pt;}
.x53_c00014{left:459.333333pt;}
.x71_c00014{left:460.266667pt;}
.xb_c00014{left:463.200000pt;}
.x33_c00014{left:469.333333pt;}
.x87_c00014{left:470.933333pt;}
.x5e_c00014{left:474.800000pt;}
.xc1_c00014{left:476.000000pt;}
.xc_c00014{left:477.600000pt;}
.xc7_c00014{left:478.933333pt;}
.x68_c00014{left:479.866667pt;}
.xa7_c00014{left:482.400000pt;}
.x1a_c00014{left:483.866667pt;}
.x34_c00014{left:485.333333pt;}
.x27_c00014{left:491.200000pt;}
.xc2_c00014{left:492.666667pt;}
.xa0_c00014{left:493.866667pt;}
.x98_c00014{left:497.200000pt;}
.x54_c00014{left:498.666667pt;}
.x79_c00014{left:500.800000pt;}
.x49_c00014{left:502.666667pt;}
.xd_c00014{left:505.733333pt;}
.xa8_c00014{left:507.333333pt;}
.xe3_c00014{left:508.533333pt;}
.x1b_c00014{left:514.933333pt;}
.xa9_c00014{left:516.266667pt;}
.x7a_c00014{left:519.066667pt;}
.xc8_c00014{left:520.533333pt;}
.xa1_c00014{left:522.400000pt;}
.x35_c00014{left:523.733333pt;}
.x55_c00014{left:527.200000pt;}
.x42_c00014{left:531.066667pt;}
.x99_c00014{left:533.066667pt;}
.x36_c00014{left:534.666667pt;}
.x72_c00014{left:540.533333pt;}
.xe_c00014{left:543.466667pt;}
.xdc_c00014{left:544.933333pt;}
.x64_c00014{left:545.866667pt;}
.xb3_c00014{left:546.933333pt;}
.x43_c00014{left:552.133333pt;}
.xae_c00014{left:556.133333pt;}
.x37_c00014{left:558.933333pt;}
.x9a_c00014{left:561.600000pt;}
.x28_c00014{left:565.333333pt;}
.x1c_c00014{left:569.600000pt;}
.x44_c00014{left:570.666667pt;}
.xb4_c00014{left:573.200000pt;}
.x4a_c00014{left:574.266667pt;}
.x38_c00014{left:579.466667pt;}
.x83_c00014{left:582.266667pt;}
.xcb_c00014{left:586.000000pt;}
.xe4_c00014{left:588.400000pt;}
.xf_c00014{left:592.800000pt;}
.xaa_c00014{left:594.000000pt;}
.x1d_c00014{left:597.066667pt;}
.xa2_c00014{left:598.266667pt;}
.x45_c00014{left:600.400000pt;}
.x90_c00014{left:601.866667pt;}
.xb5_c00014{left:605.866667pt;}
.xc3_c00014{left:607.333333pt;}
.x84_c00014{left:609.200000pt;}
.xc9_c00014{left:616.266667pt;}
.x5f_c00014{left:618.266667pt;}
.x56_c00014{left:620.533333pt;}
.x4b_c00014{left:622.000000pt;}
.xe5_c00014{left:624.533333pt;}
.x91_c00014{left:626.133333pt;}
.x39_c00014{left:630.400000pt;}
.x10_c00014{left:636.666667pt;}
.x73_c00014{left:638.133333pt;}
.x7b_c00014{left:640.000000pt;}
.xa3_c00014{left:643.733333pt;}
.xcc_c00014{left:645.866667pt;}
.xdd_c00014{left:647.600000pt;}
.x9b_c00014{left:649.600000pt;}
.x2_c00014{left:655.466667pt;}
.x1e_c00014{left:657.600000pt;}
.x85_c00014{left:662.000000pt;}
.x74_c00014{left:665.600000pt;}
.x29_c00014{left:670.266667pt;}
}





/* 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_c00015 {
    display:none;
  }
  .loading-indicator_c00015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00015 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_c00015 { 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_c00015" -> "#page-container .classname_c00015")
 */
.pf_c00015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00015 { /* 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_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00015 { /* 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_c00015 { /* 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_c00015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00015 {overflow:visible;}
  }
}
.c_c00015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00015 { /* 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_c00015:after { /* webkit #35443 */
  content: '';
}
.t_c00015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00015 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 */
}
.__c00015 { /* 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_c00015 { /* info for Javascript */
  display:none;
}
.l_c00015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00015: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_c00015 {
    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_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00015.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_c00015 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00015;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.000000;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;}
.m7b_c00015{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00015{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m33_c00015{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m0_c00015{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m26_c00015{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00015{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m89_c00015{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00015{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m78_c00015{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00015{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m55_c00015{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m77_c00015{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m12_c00015{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m34_c00015{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00015{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00015{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.me_c00015{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00015{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00015{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00015{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00015{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m47_c00015{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m96_c00015{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00015{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m20_c00015{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m21_c00015{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00015{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m40_c00015{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00015{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00015{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00015{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m7_c00015{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m19_c00015{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m93_c00015{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00015{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m44_c00015{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00015{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m48_c00015{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m52_c00015{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m85_c00015{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m17_c00015{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00015{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5_c00015{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00015{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00015{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00015{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00015{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m42_c00015{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mad_c00015{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6_c00015{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00015{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00015{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m30_c00015{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00015{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m25_c00015{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00015{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00015{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m13_c00015{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00015{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.maf_c00015{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m75_c00015{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m53_c00015{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m59_c00015{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.md_c00015{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m10_c00015{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m56_c00015{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf_c00015{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m46_c00015{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m35_c00015{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m80_c00015{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00015{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m31_c00015{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00015{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m39_c00015{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m65_c00015{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mae_c00015{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m99_c00015{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00015{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m24_c00015{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m83_c00015{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00015{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00015{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00015{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma_c00015{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m68_c00015{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00015{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m74_c00015{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m37_c00015{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00015{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m32_c00015{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00015{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00015{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00015{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m43_c00015{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00015{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m15_c00015{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m95_c00015{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00015{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m36_c00015{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m11_c00015{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00015{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m97_c00015{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m73_c00015{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00015{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00015{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m92_c00015{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00015{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m41_c00015{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m88_c00015{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m81_c00015{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m63_c00015{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00015{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m72_c00015{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m60_c00015{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m27_c00015{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m9_c00015{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m76_c00015{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m71_c00015{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8_c00015{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m64_c00015{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00015{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m94_c00015{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m45_c00015{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m87_c00015{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m98_c00015{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00015{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m22_c00015{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb_c00015{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m66_c00015{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m58_c00015{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m2_c00015{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00015{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m79_c00015{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m84_c00015{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00015{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m49_c00015{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00015{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m28_c00015{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00015{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4_c00015{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m23_c00015{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m61_c00015{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00015{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m51_c00015{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m38_c00015{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00015{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m50_c00015{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.maa_c00015{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m14_c00015{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m18_c00015{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m91_c00015{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00015{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m82_c00015{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mc_c00015{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00015{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00015{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m29_c00015{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00015{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00015{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m90_c00015{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00015{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00015{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mac_c00015{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00015{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m54_c00015{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00015{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m16_c00015{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mab_c00015{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m70_c00015{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00015{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00015{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00015{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00015{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m67_c00015{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00015{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00015{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00015{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m57_c00015{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m62_c00015{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.mba_c00015{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00015{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00015{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m86_c00015{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00015{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00015{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00015{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00015{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m69_c00015{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00015{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00015{transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00015{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00015{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00015{transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00015{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00015{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00015{transform:matrix(0.726750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00015{transform:matrix(1.016000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.016000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.016000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00015{transform:matrix(3.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.690000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{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__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:-3.661470px;}
.ws4_c00015{word-spacing:0.000000px;}
.ws3_c00015{word-spacing:4.618510px;}
.ws1_c00015{word-spacing:7.447796px;}
.ws2_c00015{word-spacing:8.203252px;}
.fc0_c00015{color:transparent;}
.fs3_c00015{font-size:30.000000px;}
.fs1_c00015{font-size:72.000000px;}
.fs0_c00015{font-size:78.000000px;}
.fs2_c00015{font-size:84.000000px;}
.y0_c00015{bottom:0.000000px;}
.y23_c00015{bottom:6.150000px;}
.y22_c00015{bottom:175.350000px;}
.y21_c00015{bottom:336.300000px;}
.y20_c00015{bottom:345.600000px;}
.y1f_c00015{bottom:369.300000px;}
.y1e_c00015{bottom:394.500000px;}
.y1d_c00015{bottom:419.100000px;}
.y1c_c00015{bottom:443.100000px;}
.y1b_c00015{bottom:468.000000px;}
.y1a_c00015{bottom:492.900000px;}
.y19_c00015{bottom:525.900000px;}
.y18_c00015{bottom:550.800000px;}
.y17_c00015{bottom:575.250000px;}
.y16_c00015{bottom:600.150000px;}
.y15_c00015{bottom:633.600000px;}
.y14_c00015{bottom:658.050000px;}
.y13_c00015{bottom:682.950000px;}
.y12_c00015{bottom:707.400000px;}
.y11_c00015{bottom:732.300000px;}
.y10_c00015{bottom:756.750000px;}
.yf_c00015{bottom:781.200000px;}
.ye_c00015{bottom:814.050000px;}
.yd_c00015{bottom:838.950000px;}
.yc_c00015{bottom:863.400000px;}
.yb_c00015{bottom:887.550000px;}
.ya_c00015{bottom:912.450000px;}
.y9_c00015{bottom:937.350000px;}
.y8_c00015{bottom:962.250000px;}
.y7_c00015{bottom:986.700000px;}
.y6_c00015{bottom:1019.400000px;}
.y5_c00015{bottom:1044.300000px;}
.y4_c00015{bottom:1068.750000px;}
.y3_c00015{bottom:1092.900000px;}
.y2_c00015{bottom:1117.800000px;}
.y1_c00015{bottom:1145.850000px;}
.h5_c00015{height:30.000000px;}
.h3_c00015{height:72.000000px;}
.h2_c00015{height:78.000000px;}
.h4_c00015{height:84.000000px;}
.h0_c00015{height:1270.440033px;}
.h1_c00015{height:1270.500000px;}
.w0_c00015{width:948.600036px;}
.w1_c00015{width:948.750000px;}
.x0_c00015{left:0.000000px;}
.xef_c00015{left:93.600000px;}
.x3_c00015{left:181.500000px;}
.x1_c00015{left:182.550000px;}
.x19_c00015{left:183.750000px;}
.x60_c00015{left:184.800000px;}
.x99_c00015{left:186.300000px;}
.x32_c00015{left:203.400000px;}
.xb0_c00015{left:204.450000px;}
.xc4_c00015{left:205.950000px;}
.x61_c00015{left:211.050000px;}
.x4a_c00015{left:212.100000px;}
.x4_c00015{left:216.750000px;}
.xdd_c00015{left:220.350000px;}
.x1a_c00015{left:221.550000px;}
.xa9_c00015{left:224.700000px;}
.x6f_c00015{left:226.650000px;}
.x88_c00015{left:229.650000px;}
.x57_c00015{left:231.150000px;}
.xcd_c00015{left:232.800000px;}
.x3e_c00015{left:236.400000px;}
.xd4_c00015{left:241.500000px;}
.x9a_c00015{left:246.000000px;}
.x4b_c00015{left:247.800000px;}
.x2b_c00015{left:250.500000px;}
.x33_c00015{left:253.800000px;}
.x77_c00015{left:258.150000px;}
.xc5_c00015{left:261.000000px;}
.x62_c00015{left:265.050000px;}
.xce_c00015{left:268.800000px;}
.x1b_c00015{left:270.150000px;}
.xe5_c00015{left:273.600000px;}
.x58_c00015{left:277.650000px;}
.xf_c00015{left:280.800000px;}
.x67_c00015{left:282.300000px;}
.xd5_c00015{left:283.650000px;}
.x2c_c00015{left:284.700000px;}
.x5_c00015{left:286.950000px;}
.x4c_c00015{left:289.200000px;}
.x3f_c00015{left:290.700000px;}
.xbf_c00015{left:293.550000px;}
.x89_c00015{left:295.500000px;}
.xe6_c00015{left:301.350000px;}
.x23_c00015{left:308.700000px;}
.xdb_c00015{left:311.400000px;}
.xd6_c00015{left:312.750000px;}
.x78_c00015{left:315.000000px;}
.x34_c00015{left:317.850000px;}
.xb9_c00015{left:319.050000px;}
.x1c_c00015{left:320.250000px;}
.xeb_c00015{left:321.450000px;}
.x90_c00015{left:322.950000px;}
.x9b_c00015{left:332.400000px;}
.xaa_c00015{left:334.500000px;}
.x6_c00015{left:336.600000px;}
.x91_c00015{left:339.150000px;}
.xc6_c00015{left:343.050000px;}
.x10_c00015{left:346.650000px;}
.xb4_c00015{left:348.750000px;}
.x45_c00015{left:350.700000px;}
.xba_c00015{left:354.000000px;}
.xab_c00015{left:356.400000px;}
.x92_c00015{left:364.050000px;}
.x11_c00015{left:366.450000px;}
.x40_c00015{left:368.400000px;}
.x70_c00015{left:372.750000px;}
.xe7_c00015{left:376.200000px;}
.x2d_c00015{left:377.250000px;}
.x24_c00015{left:379.650000px;}
.x46_c00015{left:382.350000px;}
.x35_c00015{left:385.200000px;}
.xcf_c00015{left:388.650000px;}
.xa2_c00015{left:390.000000px;}
.xca_c00015{left:391.650000px;}
.x80_c00015{left:394.200000px;}
.x4d_c00015{left:395.400000px;}
.x59_c00015{left:399.000000px;}
.xec_c00015{left:400.350000px;}
.x2e_c00015{left:402.450000px;}
.xde_c00015{left:404.550000px;}
.x9c_c00015{left:409.500000px;}
.x2_c00015{left:411.150000px;}
.xac_c00015{left:412.500000px;}
.xa3_c00015{left:415.950000px;}
.xd0_c00015{left:419.550000px;}
.x1d_c00015{left:426.000000px;}
.x81_c00015{left:430.200000px;}
.x71_c00015{left:431.850000px;}
.x7_c00015{left:434.850000px;}
.x2f_c00015{left:436.650000px;}
.x4e_c00015{left:437.850000px;}
.x79_c00015{left:439.650000px;}
.x93_c00015{left:443.250000px;}
.xd7_c00015{left:446.250000px;}
.x36_c00015{left:448.200000px;}
.xc7_c00015{left:451.350000px;}
.x25_c00015{left:458.100000px;}
.x12_c00015{left:459.750000px;}
.x8_c00015{left:464.700000px;}
.x4f_c00015{left:467.400000px;}
.x41_c00015{left:472.500000px;}
.x1e_c00015{left:474.300000px;}
.x68_c00015{left:477.150000px;}
.x72_c00015{left:478.350000px;}
.x7a_c00015{left:486.150000px;}
.x47_c00015{left:488.250000px;}
.x26_c00015{left:491.550000px;}
.xb5_c00015{left:495.000000px;}
.x8a_c00015{left:496.800000px;}
.x42_c00015{left:500.250000px;}
.x73_c00015{left:503.250000px;}
.xa4_c00015{left:509.550000px;}
.x69_c00015{left:511.350000px;}
.x37_c00015{left:514.800000px;}
.x82_c00015{left:515.850000px;}
.x9d_c00015{left:518.250000px;}
.x5a_c00015{left:521.100000px;}
.xc0_c00015{left:525.750000px;}
.xad_c00015{left:528.300000px;}
.x9_c00015{left:530.550000px;}
.x83_c00015{left:532.800000px;}
.xdf_c00015{left:535.200000px;}
.x30_c00015{left:540.000000px;}
.xf0_c00015{left:543.300000px;}
.xd8_c00015{left:546.300000px;}
.x27_c00015{left:547.350000px;}
.x5b_c00015{left:548.400000px;}
.x50_c00015{left:550.950000px;}
.x94_c00015{left:552.000000px;}
.xa5_c00015{left:554.850000px;}
.x31_c00015{left:556.950000px;}
.xdc_c00015{left:560.400000px;}
.xcb_c00015{left:565.500000px;}
.x13_c00015{left:569.250000px;}
.x9e_c00015{left:571.200000px;}
.xa_c00015{left:573.000000px;}
.x38_c00015{left:576.300000px;}
.xa6_c00015{left:578.550000px;}
.x5c_c00015{left:580.500000px;}
.x63_c00015{left:583.650000px;}
.xe0_c00015{left:587.400000px;}
.x1f_c00015{left:591.000000px;}
.x84_c00015{left:592.500000px;}
.x95_c00015{left:597.750000px;}
.x51_c00015{left:601.350000px;}
.xf1_c00015{left:602.400000px;}
.x28_c00015{left:606.750000px;}
.xb1_c00015{left:610.500000px;}
.x43_c00015{left:612.600000px;}
.x7b_c00015{left:613.950000px;}
.xb6_c00015{left:616.350000px;}
.xb_c00015{left:621.300000px;}
.x74_c00015{left:624.600000px;}
.xae_c00015{left:628.350000px;}
.x14_c00015{left:630.750000px;}
.xd1_c00015{left:633.300000px;}
.xbb_c00015{left:635.100000px;}
.x20_c00015{left:638.100000px;}
.x6a_c00015{left:639.150000px;}
.x39_c00015{left:640.800000px;}
.x48_c00015{left:641.850000px;}
.x7c_c00015{left:646.050000px;}
.x64_c00015{left:651.000000px;}
.xc_c00015{left:653.700000px;}
.x52_c00015{left:655.650000px;}
.xe1_c00015{left:657.300000px;}
.x75_c00015{left:659.850000px;}
.x8b_c00015{left:663.900000px;}
.x3a_c00015{left:666.000000px;}
.xbc_c00015{left:667.500000px;}
.xd2_c00015{left:669.000000px;}
.x5d_c00015{left:671.550000px;}
.x7d_c00015{left:674.100000px;}
.xc1_c00015{left:676.950000px;}
.x65_c00015{left:680.100000px;}
.x29_c00015{left:683.100000px;}
.x85_c00015{left:684.750000px;}
.x96_c00015{left:690.000000px;}
.x53_c00015{left:691.950000px;}
.x15_c00015{left:696.600000px;}
.xd9_c00015{left:698.550000px;}
.xe2_c00015{left:702.000000px;}
.xf2_c00015{left:703.500000px;}
.xc8_c00015{left:704.850000px;}
.x6b_c00015{left:708.300000px;}
.xd_c00015{left:711.600000px;}
.xa7_c00015{left:713.550000px;}
.x8c_c00015{left:715.050000px;}
.xed_c00015{left:717.900000px;}
.xcc_c00015{left:721.350000px;}
.xb7_c00015{left:726.900000px;}
.x16_c00015{left:727.950000px;}
.xaf_c00015{left:729.900000px;}
.xc2_c00015{left:735.300000px;}
.xb2_c00015{left:738.300000px;}
.xe8_c00015{left:740.700000px;}
.x7e_c00015{left:741.750000px;}
.x97_c00015{left:743.250000px;}
.xe3_c00015{left:749.100000px;}
.x76_c00015{left:750.600000px;}
.xc3_c00015{left:753.000000px;}
.x54_c00015{left:754.200000px;}
.xe_c00015{left:757.350000px;}
.xa8_c00015{left:758.550000px;}
.xee_c00015{left:760.800000px;}
.x5e_c00015{left:763.050000px;}
.x66_c00015{left:768.300000px;}
.x86_c00015{left:770.400000px;}
.x55_c00015{left:772.500000px;}
.xbd_c00015{left:774.750000px;}
.x7f_c00015{left:776.250000px;}
.x21_c00015{left:778.800000px;}
.x6c_c00015{left:780.000000px;}
.x8d_c00015{left:781.650000px;}
.x44_c00015{left:783.600000px;}
.xb3_c00015{left:785.400000px;}
.xda_c00015{left:787.050000px;}
.x9f_c00015{left:788.550000px;}
.x49_c00015{left:792.750000px;}
.x98_c00015{left:798.300000px;}
.x3b_c00015{left:800.250000px;}
.xc9_c00015{left:802.350000px;}
.xe9_c00015{left:807.300000px;}
.x6d_c00015{left:808.800000px;}
.xe4_c00015{left:810.300000px;}
.x3c_c00015{left:812.850000px;}
.x5f_c00015{left:821.700000px;}
.x8e_c00015{left:823.800000px;}
.x17_c00015{left:826.650000px;}
.xa0_c00015{left:828.450000px;}
.xf3_c00015{left:829.500000px;}
.xd3_c00015{left:831.900000px;}
.x6e_c00015{left:833.700000px;}
.xbe_c00015{left:834.900000px;}
.xb8_c00015{left:836.700000px;}
.x56_c00015{left:838.800000px;}
.x2a_c00015{left:845.850000px;}
.x3d_c00015{left:847.050000px;}
.xea_c00015{left:848.400000px;}
.x22_c00015{left:853.650000px;}
.xa1_c00015{left:858.000000px;}
.x18_c00015{left:859.050000px;}
.x8f_c00015{left:865.950000px;}
.x87_c00015{left:871.200000px;}
.xf4_c00015{left:898.650000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws0_c00015{word-spacing:-3.254640pt;}
.ws4_c00015{word-spacing:0.000000pt;}
.ws3_c00015{word-spacing:4.105342pt;}
.ws1_c00015{word-spacing:6.620263pt;}
.ws2_c00015{word-spacing:7.291780pt;}
.fs3_c00015{font-size:26.666667pt;}
.fs1_c00015{font-size:64.000000pt;}
.fs0_c00015{font-size:69.333333pt;}
.fs2_c00015{font-size:74.666667pt;}
.y0_c00015{bottom:0.000000pt;}
.y23_c00015{bottom:5.466667pt;}
.y22_c00015{bottom:155.866667pt;}
.y21_c00015{bottom:298.933333pt;}
.y20_c00015{bottom:307.200000pt;}
.y1f_c00015{bottom:328.266667pt;}
.y1e_c00015{bottom:350.666667pt;}
.y1d_c00015{bottom:372.533333pt;}
.y1c_c00015{bottom:393.866667pt;}
.y1b_c00015{bottom:416.000000pt;}
.y1a_c00015{bottom:438.133333pt;}
.y19_c00015{bottom:467.466667pt;}
.y18_c00015{bottom:489.600000pt;}
.y17_c00015{bottom:511.333333pt;}
.y16_c00015{bottom:533.466667pt;}
.y15_c00015{bottom:563.200000pt;}
.y14_c00015{bottom:584.933333pt;}
.y13_c00015{bottom:607.066667pt;}
.y12_c00015{bottom:628.800000pt;}
.y11_c00015{bottom:650.933333pt;}
.y10_c00015{bottom:672.666667pt;}
.yf_c00015{bottom:694.400000pt;}
.ye_c00015{bottom:723.600000pt;}
.yd_c00015{bottom:745.733333pt;}
.yc_c00015{bottom:767.466667pt;}
.yb_c00015{bottom:788.933333pt;}
.ya_c00015{bottom:811.066667pt;}
.y9_c00015{bottom:833.200000pt;}
.y8_c00015{bottom:855.333333pt;}
.y7_c00015{bottom:877.066667pt;}
.y6_c00015{bottom:906.133333pt;}
.y5_c00015{bottom:928.266667pt;}
.y4_c00015{bottom:950.000000pt;}
.y3_c00015{bottom:971.466667pt;}
.y2_c00015{bottom:993.600000pt;}
.y1_c00015{bottom:1018.533333pt;}
.h5_c00015{height:26.666667pt;}
.h3_c00015{height:64.000000pt;}
.h2_c00015{height:69.333333pt;}
.h4_c00015{height:74.666667pt;}
.h0_c00015{height:1129.280029pt;}
.h1_c00015{height:1129.333333pt;}
.w0_c00015{width:843.200032pt;}
.w1_c00015{width:843.333333pt;}
.x0_c00015{left:0.000000pt;}
.xef_c00015{left:83.200000pt;}
.x3_c00015{left:161.333333pt;}
.x1_c00015{left:162.266667pt;}
.x19_c00015{left:163.333333pt;}
.x60_c00015{left:164.266667pt;}
.x99_c00015{left:165.600000pt;}
.x32_c00015{left:180.800000pt;}
.xb0_c00015{left:181.733333pt;}
.xc4_c00015{left:183.066667pt;}
.x61_c00015{left:187.600000pt;}
.x4a_c00015{left:188.533333pt;}
.x4_c00015{left:192.666667pt;}
.xdd_c00015{left:195.866667pt;}
.x1a_c00015{left:196.933333pt;}
.xa9_c00015{left:199.733333pt;}
.x6f_c00015{left:201.466667pt;}
.x88_c00015{left:204.133333pt;}
.x57_c00015{left:205.466667pt;}
.xcd_c00015{left:206.933333pt;}
.x3e_c00015{left:210.133333pt;}
.xd4_c00015{left:214.666667pt;}
.x9a_c00015{left:218.666667pt;}
.x4b_c00015{left:220.266667pt;}
.x2b_c00015{left:222.666667pt;}
.x33_c00015{left:225.600000pt;}
.x77_c00015{left:229.466667pt;}
.xc5_c00015{left:232.000000pt;}
.x62_c00015{left:235.600000pt;}
.xce_c00015{left:238.933333pt;}
.x1b_c00015{left:240.133333pt;}
.xe5_c00015{left:243.200000pt;}
.x58_c00015{left:246.800000pt;}
.xf_c00015{left:249.600000pt;}
.x67_c00015{left:250.933333pt;}
.xd5_c00015{left:252.133333pt;}
.x2c_c00015{left:253.066667pt;}
.x5_c00015{left:255.066667pt;}
.x4c_c00015{left:257.066667pt;}
.x3f_c00015{left:258.400000pt;}
.xbf_c00015{left:260.933333pt;}
.x89_c00015{left:262.666667pt;}
.xe6_c00015{left:267.866667pt;}
.x23_c00015{left:274.400000pt;}
.xdb_c00015{left:276.800000pt;}
.xd6_c00015{left:278.000000pt;}
.x78_c00015{left:280.000000pt;}
.x34_c00015{left:282.533333pt;}
.xb9_c00015{left:283.600000pt;}
.x1c_c00015{left:284.666667pt;}
.xeb_c00015{left:285.733333pt;}
.x90_c00015{left:287.066667pt;}
.x9b_c00015{left:295.466667pt;}
.xaa_c00015{left:297.333333pt;}
.x6_c00015{left:299.200000pt;}
.x91_c00015{left:301.466667pt;}
.xc6_c00015{left:304.933333pt;}
.x10_c00015{left:308.133333pt;}
.xb4_c00015{left:310.000000pt;}
.x45_c00015{left:311.733333pt;}
.xba_c00015{left:314.666667pt;}
.xab_c00015{left:316.800000pt;}
.x92_c00015{left:323.600000pt;}
.x11_c00015{left:325.733333pt;}
.x40_c00015{left:327.466667pt;}
.x70_c00015{left:331.333333pt;}
.xe7_c00015{left:334.400000pt;}
.x2d_c00015{left:335.333333pt;}
.x24_c00015{left:337.466667pt;}
.x46_c00015{left:339.866667pt;}
.x35_c00015{left:342.400000pt;}
.xcf_c00015{left:345.466667pt;}
.xa2_c00015{left:346.666667pt;}
.xca_c00015{left:348.133333pt;}
.x80_c00015{left:350.400000pt;}
.x4d_c00015{left:351.466667pt;}
.x59_c00015{left:354.666667pt;}
.xec_c00015{left:355.866667pt;}
.x2e_c00015{left:357.733333pt;}
.xde_c00015{left:359.600000pt;}
.x9c_c00015{left:364.000000pt;}
.x2_c00015{left:365.466667pt;}
.xac_c00015{left:366.666667pt;}
.xa3_c00015{left:369.733333pt;}
.xd0_c00015{left:372.933333pt;}
.x1d_c00015{left:378.666667pt;}
.x81_c00015{left:382.400000pt;}
.x71_c00015{left:383.866667pt;}
.x7_c00015{left:386.533333pt;}
.x2f_c00015{left:388.133333pt;}
.x4e_c00015{left:389.200000pt;}
.x79_c00015{left:390.800000pt;}
.x93_c00015{left:394.000000pt;}
.xd7_c00015{left:396.666667pt;}
.x36_c00015{left:398.400000pt;}
.xc7_c00015{left:401.200000pt;}
.x25_c00015{left:407.200000pt;}
.x12_c00015{left:408.666667pt;}
.x8_c00015{left:413.066667pt;}
.x4f_c00015{left:415.466667pt;}
.x41_c00015{left:420.000000pt;}
.x1e_c00015{left:421.600000pt;}
.x68_c00015{left:424.133333pt;}
.x72_c00015{left:425.200000pt;}
.x7a_c00015{left:432.133333pt;}
.x47_c00015{left:434.000000pt;}
.x26_c00015{left:436.933333pt;}
.xb5_c00015{left:440.000000pt;}
.x8a_c00015{left:441.600000pt;}
.x42_c00015{left:444.666667pt;}
.x73_c00015{left:447.333333pt;}
.xa4_c00015{left:452.933333pt;}
.x69_c00015{left:454.533333pt;}
.x37_c00015{left:457.600000pt;}
.x82_c00015{left:458.533333pt;}
.x9d_c00015{left:460.666667pt;}
.x5a_c00015{left:463.200000pt;}
.xc0_c00015{left:467.333333pt;}
.xad_c00015{left:469.600000pt;}
.x9_c00015{left:471.600000pt;}
.x83_c00015{left:473.600000pt;}
.xdf_c00015{left:475.733333pt;}
.x30_c00015{left:480.000000pt;}
.xf0_c00015{left:482.933333pt;}
.xd8_c00015{left:485.600000pt;}
.x27_c00015{left:486.533333pt;}
.x5b_c00015{left:487.466667pt;}
.x50_c00015{left:489.733333pt;}
.x94_c00015{left:490.666667pt;}
.xa5_c00015{left:493.200000pt;}
.x31_c00015{left:495.066667pt;}
.xdc_c00015{left:498.133333pt;}
.xcb_c00015{left:502.666667pt;}
.x13_c00015{left:506.000000pt;}
.x9e_c00015{left:507.733333pt;}
.xa_c00015{left:509.333333pt;}
.x38_c00015{left:512.266667pt;}
.xa6_c00015{left:514.266667pt;}
.x5c_c00015{left:516.000000pt;}
.x63_c00015{left:518.800000pt;}
.xe0_c00015{left:522.133333pt;}
.x1f_c00015{left:525.333333pt;}
.x84_c00015{left:526.666667pt;}
.x95_c00015{left:531.333333pt;}
.x51_c00015{left:534.533333pt;}
.xf1_c00015{left:535.466667pt;}
.x28_c00015{left:539.333333pt;}
.xb1_c00015{left:542.666667pt;}
.x43_c00015{left:544.533333pt;}
.x7b_c00015{left:545.733333pt;}
.xb6_c00015{left:547.866667pt;}
.xb_c00015{left:552.266667pt;}
.x74_c00015{left:555.200000pt;}
.xae_c00015{left:558.533333pt;}
.x14_c00015{left:560.666667pt;}
.xd1_c00015{left:562.933333pt;}
.xbb_c00015{left:564.533333pt;}
.x20_c00015{left:567.200000pt;}
.x6a_c00015{left:568.133333pt;}
.x39_c00015{left:569.600000pt;}
.x48_c00015{left:570.533333pt;}
.x7c_c00015{left:574.266667pt;}
.x64_c00015{left:578.666667pt;}
.xc_c00015{left:581.066667pt;}
.x52_c00015{left:582.800000pt;}
.xe1_c00015{left:584.266667pt;}
.x75_c00015{left:586.533333pt;}
.x8b_c00015{left:590.133333pt;}
.x3a_c00015{left:592.000000pt;}
.xbc_c00015{left:593.333333pt;}
.xd2_c00015{left:594.666667pt;}
.x5d_c00015{left:596.933333pt;}
.x7d_c00015{left:599.200000pt;}
.xc1_c00015{left:601.733333pt;}
.x65_c00015{left:604.533333pt;}
.x29_c00015{left:607.200000pt;}
.x85_c00015{left:608.666667pt;}
.x96_c00015{left:613.333333pt;}
.x53_c00015{left:615.066667pt;}
.x15_c00015{left:619.200000pt;}
.xd9_c00015{left:620.933333pt;}
.xe2_c00015{left:624.000000pt;}
.xf2_c00015{left:625.333333pt;}
.xc8_c00015{left:626.533333pt;}
.x6b_c00015{left:629.600000pt;}
.xd_c00015{left:632.533333pt;}
.xa7_c00015{left:634.266667pt;}
.x8c_c00015{left:635.600000pt;}
.xed_c00015{left:638.133333pt;}
.xcc_c00015{left:641.200000pt;}
.xb7_c00015{left:646.133333pt;}
.x16_c00015{left:647.066667pt;}
.xaf_c00015{left:648.800000pt;}
.xc2_c00015{left:653.600000pt;}
.xb2_c00015{left:656.266667pt;}
.xe8_c00015{left:658.400000pt;}
.x7e_c00015{left:659.333333pt;}
.x97_c00015{left:660.666667pt;}
.xe3_c00015{left:665.866667pt;}
.x76_c00015{left:667.200000pt;}
.xc3_c00015{left:669.333333pt;}
.x54_c00015{left:670.400000pt;}
.xe_c00015{left:673.200000pt;}
.xa8_c00015{left:674.266667pt;}
.xee_c00015{left:676.266667pt;}
.x5e_c00015{left:678.266667pt;}
.x66_c00015{left:682.933333pt;}
.x86_c00015{left:684.800000pt;}
.x55_c00015{left:686.666667pt;}
.xbd_c00015{left:688.666667pt;}
.x7f_c00015{left:690.000000pt;}
.x21_c00015{left:692.266667pt;}
.x6c_c00015{left:693.333333pt;}
.x8d_c00015{left:694.800000pt;}
.x44_c00015{left:696.533333pt;}
.xb3_c00015{left:698.133333pt;}
.xda_c00015{left:699.600000pt;}
.x9f_c00015{left:700.933333pt;}
.x49_c00015{left:704.666667pt;}
.x98_c00015{left:709.600000pt;}
.x3b_c00015{left:711.333333pt;}
.xc9_c00015{left:713.200000pt;}
.xe9_c00015{left:717.600000pt;}
.x6d_c00015{left:718.933333pt;}
.xe4_c00015{left:720.266667pt;}
.x3c_c00015{left:722.533333pt;}
.x5f_c00015{left:730.400000pt;}
.x8e_c00015{left:732.266667pt;}
.x17_c00015{left:734.800000pt;}
.xa0_c00015{left:736.400000pt;}
.xf3_c00015{left:737.333333pt;}
.xd3_c00015{left:739.466667pt;}
.x6e_c00015{left:741.066667pt;}
.xbe_c00015{left:742.133333pt;}
.xb8_c00015{left:743.733333pt;}
.x56_c00015{left:745.600000pt;}
.x2a_c00015{left:751.866667pt;}
.x3d_c00015{left:752.933333pt;}
.xea_c00015{left:754.133333pt;}
.x22_c00015{left:758.800000pt;}
.xa1_c00015{left:762.666667pt;}
.x18_c00015{left:763.600000pt;}
.x8f_c00015{left:769.733333pt;}
.x87_c00015{left:774.400000pt;}
.xf4_c00015{left:798.800000pt;}
}





/* 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_c00016 {
    display:none;
  }
  .loading-indicator_c00016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00016 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_c00016 { 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_c00016" -> "#page-container .classname_c00016")
 */
.pf_c00016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00016 { /* 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_c00016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00016 { /* 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_c00016 { /* 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_c00016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00016 {overflow:visible;}
  }
}
.c_c00016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00016 { /* 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_c00016:after { /* webkit #35443 */
  content: '';
}
.t_c00016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00016 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 */
}
.__c00016 { /* 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_c00016 { /* info for Javascript */
  display:none;
}
.l_c00016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00016: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_c00016 {
    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_c00016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00016.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_c00016 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00016;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.000000;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;}
.m7b_c00016{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m112_c00016{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00016{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m100_c00016{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m110_c00016{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00016{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md9_c00016{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00016{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00016{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m46_c00016{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00016{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mda_c00016{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00016{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m88_c00016{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m41_c00016{transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);}
.m59_c00016{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m98_c00016{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m79_c00016{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m116_c00016{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m103_c00016{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00016{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00016{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00016{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11_c00016{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m120_c00016{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mad_c00016{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00016{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.md2_c00016{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m111_c00016{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mab_c00016{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m89_c00016{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m73_c00016{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md6_c00016{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00016{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00016{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mae_c00016{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00016{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00016{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m14_c00016{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00016{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m101_c00016{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00016{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.md8_c00016{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00016{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md0_c00016{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m66_c00016{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m23_c00016{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00016{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00016{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.med_c00016{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00016{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00016{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00016{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00016{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m104_c00016{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00016{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mac_c00016{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00016{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00016{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m12_c00016{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00016{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m83_c00016{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00016{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m28_c00016{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00016{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00016{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m30_c00016{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m26_c00016{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m51_c00016{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m40_c00016{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.me1_c00016{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md3_c00016{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m25_c00016{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m13_c00016{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.md7_c00016{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00016{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m53_c00016{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00016{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00016{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m108_c00016{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00016{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m115_c00016{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me9_c00016{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m82_c00016{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00016{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00016{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00016{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00016{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00016{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m18_c00016{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m118_c00016{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00016{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00016{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00016{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me3_c00016{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00016{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m49_c00016{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00016{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m96_c00016{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m76_c00016{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md4_c00016{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me2_c00016{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md5_c00016{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00016{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m33_c00016{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00016{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m99_c00016{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m34_c00016{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00016{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me8_c00016{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00016{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00016{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m95_c00016{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00016{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00016{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00016{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m27_c00016{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00016{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m62_c00016{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m113_c00016{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m54_c00016{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00016{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me5_c00016{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m24_c00016{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00016{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.me6_c00016{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mff_c00016{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00016{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00016{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m32_c00016{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00016{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.me4_c00016{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m50_c00016{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m105_c00016{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00016{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00016{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00016{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00016{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m44_c00016{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00016{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00016{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00016{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m77_c00016{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00016{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m48_c00016{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00016{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m22_c00016{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m38_c00016{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00016{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00016{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m119_c00016{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00016{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m57_c00016{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00016{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00016{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00016{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00016{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m97_c00016{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m106_c00016{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mec_c00016{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00016{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.maf_c00016{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00016{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m39_c00016{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m52_c00016{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00016{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m102_c00016{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m61_c00016{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00016{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m60_c00016{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m72_c00016{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m78_c00016{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m121_c00016{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m92_c00016{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00016{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00016{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00016{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00016{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m94_c00016{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m29_c00016{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00016{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m75_c00016{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00016{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m91_c00016{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m85_c00016{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m31_c00016{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00016{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00016{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00016{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m20_c00016{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m21_c00016{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00016{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.maa_c00016{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00016{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.md1_c00016{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m55_c00016{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mef_c00016{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m93_c00016{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m17_c00016{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00016{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m35_c00016{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m42_c00016{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m37_c00016{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00016{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00016{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00016{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m47_c00016{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00016{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00016{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00016{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00016{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m58_c00016{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m80_c00016{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00016{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m114_c00016{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00016{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00016{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00016{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.meb_c00016{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00016{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00016{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m15_c00016{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mce_c00016{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00016{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m117_c00016{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00016{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m36_c00016{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00016{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mea_c00016{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m86_c00016{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m90_c00016{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m19_c00016{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m107_c00016{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10_c00016{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m70_c00016{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);}
.mdf_c00016{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m16_c00016{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00016{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00016{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m69_c00016{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mba_c00016{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m81_c00016{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me7_c00016{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mee_c00016{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m87_c00016{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mde_c00016{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mca_c00016{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m56_c00016{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00016{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m63_c00016{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m65_c00016{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m45_c00016{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me0_c00016{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m68_c00016{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00016{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m84_c00016{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00016{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m67_c00016{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00016{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00016{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00016{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m43_c00016{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00016{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m109_c00016{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00016{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00016{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf_c00016{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m71_c00016{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00016{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m74_c00016{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00016{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m64_c00016{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00016{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00016{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00016{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.me_c00016{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);}
.m4_c00016{transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);}
.mc_c00016{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00016{transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);}
.md_c00016{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m9_c00016{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c00016{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m5_c00016{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00016{transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);}
.m8_c00016{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.m3_c00016{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m122_c00016{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.mb_c00016{transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);}
.ma_c00016{transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);}
.m7_c00016{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls0_c00016{letter-spacing:0.000000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{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__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00016{word-spacing:-16.008677px;}
.ws7_c00016{word-spacing:-14.473684px;}
.ws5_c00016{word-spacing:-8.781145px;}
.ws8_c00016{word-spacing:-6.527778px;}
.ws0_c00016{word-spacing:-2.750000px;}
.ws9_c00016{word-spacing:0.000000px;}
.ws3_c00016{word-spacing:0.307278px;}
.ws4_c00016{word-spacing:5.475814px;}
.ws1_c00016{word-spacing:10.909091px;}
.ws2_c00016{word-spacing:14.114478px;}
.fc0_c00016{color:transparent;}
.fs1_c00016{font-size:48.000000px;}
.fs6_c00016{font-size:54.000000px;}
.fs3_c00016{font-size:60.000000px;}
.fs4_c00016{font-size:66.000000px;}
.fs5_c00016{font-size:72.000000px;}
.fs2_c00016{font-size:78.000000px;}
.fs0_c00016{font-size:126.000000px;}
.y0_c00016{bottom:0.000000px;}
.y5a_c00016{bottom:179.550000px;}
.y2e_c00016{bottom:195.900000px;}
.y59_c00016{bottom:196.500000px;}
.y2d_c00016{bottom:210.600000px;}
.y2c_c00016{bottom:225.000000px;}
.y58_c00016{bottom:226.050000px;}
.y2b_c00016{bottom:239.700000px;}
.y57_c00016{bottom:241.950000px;}
.y2a_c00016{bottom:254.100000px;}
.y56_c00016{bottom:257.700000px;}
.y29_c00016{bottom:268.500000px;}
.y55_c00016{bottom:273.300000px;}
.y28_c00016{bottom:282.600000px;}
.y54_c00016{bottom:289.500000px;}
.y27_c00016{bottom:297.300000px;}
.y53_c00016{bottom:304.500000px;}
.y26_c00016{bottom:310.950000px;}
.y52_c00016{bottom:320.400000px;}
.y25_c00016{bottom:325.350000px;}
.y51_c00016{bottom:336.000000px;}
.y24_c00016{bottom:339.450000px;}
.y50_c00016{bottom:350.700000px;}
.y23_c00016{bottom:354.150000px;}
.y4f_c00016{bottom:365.850000px;}
.y22_c00016{bottom:368.250000px;}
.y4e_c00016{bottom:380.250000px;}
.y21_c00016{bottom:382.650000px;}
.y4d_c00016{bottom:396.750000px;}
.y20_c00016{bottom:397.050000px;}
.y4c_c00016{bottom:409.050000px;}
.y1f_c00016{bottom:411.150000px;}
.y4b_c00016{bottom:422.700000px;}
.y1e_c00016{bottom:425.850000px;}
.y4a_c00016{bottom:437.400000px;}
.y1d_c00016{bottom:441.300000px;}
.y49_c00016{bottom:451.500000px;}
.y48_c00016{bottom:465.900000px;}
.y47_c00016{bottom:480.600000px;}
.y1c_c00016{bottom:487.800000px;}
.y46_c00016{bottom:494.250000px;}
.y1b_c00016{bottom:510.150000px;}
.y1a_c00016{bottom:528.450000px;}
.y19_c00016{bottom:546.150000px;}
.y45_c00016{bottom:550.050000px;}
.y18_c00016{bottom:558.450000px;}
.y17_c00016{bottom:564.150000px;}
.y44_c00016{bottom:567.750000px;}
.y16_c00016{bottom:582.150000px;}
.y43_c00016{bottom:585.750000px;}
.y42_c00016{bottom:612.300000px;}
.y15_c00016{bottom:615.900000px;}
.y41_c00016{bottom:630.300000px;}
.y40_c00016{bottom:648.300000px;}
.y14_c00016{bottom:653.700000px;}
.y3f_c00016{bottom:670.200000px;}
.y3e_c00016{bottom:688.200000px;}
.y13_c00016{bottom:693.750000px;}
.y3d_c00016{bottom:706.200000px;}
.y12_c00016{bottom:711.750000px;}
.y3c_c00016{bottom:723.900000px;}
.y11_c00016{bottom:729.900000px;}
.y3b_c00016{bottom:742.200000px;}
.y10_c00016{bottom:747.600000px;}
.y3a_c00016{bottom:759.900000px;}
.yf_c00016{bottom:765.600000px;}
.y39_c00016{bottom:777.900000px;}
.ye_c00016{bottom:783.600000px;}
.y38_c00016{bottom:795.600000px;}
.yd_c00016{bottom:801.300000px;}
.y37_c00016{bottom:813.600000px;}
.yc_c00016{bottom:819.300000px;}
.y36_c00016{bottom:832.650000px;}
.yb_c00016{bottom:837.000000px;}
.y35_c00016{bottom:853.950000px;}
.ya_c00016{bottom:858.450000px;}
.y34_c00016{bottom:875.700000px;}
.y9_c00016{bottom:876.450000px;}
.y33_c00016{bottom:893.700000px;}
.y8_c00016{bottom:894.150000px;}
.y32_c00016{bottom:911.400000px;}
.y7_c00016{bottom:912.150000px;}
.y31_c00016{bottom:929.400000px;}
.y6_c00016{bottom:929.850000px;}
.y30_c00016{bottom:947.100000px;}
.y5_c00016{bottom:947.850000px;}
.y2f_c00016{bottom:965.100000px;}
.y4_c00016{bottom:965.550000px;}
.y3_c00016{bottom:1050.150000px;}
.y2_c00016{bottom:1067.400000px;}
.y1_c00016{bottom:1107.750000px;}
.h3_c00016{height:48.000000px;}
.h8_c00016{height:54.000000px;}
.h5_c00016{height:60.000000px;}
.h6_c00016{height:66.000000px;}
.h7_c00016{height:72.000000px;}
.h4_c00016{height:78.000000px;}
.h2_c00016{height:126.000000px;}
.h0_c00016{height:1276.199982px;}
.h1_c00016{height:1276.500000px;}
.w0_c00016{width:948.600036px;}
.w1_c00016{width:948.750000px;}
.x0_c00016{left:0.000000px;}
.x4_c00016{left:72.000000px;}
.x10_c00016{left:73.050000px;}
.x4c_c00016{left:75.900000px;}
.x5c_c00016{left:76.950000px;}
.x76_c00016{left:78.750000px;}
.x97_c00016{left:79.950000px;}
.x9e_c00016{left:81.300000px;}
.xa4_c00016{left:82.500000px;}
.x15_c00016{left:88.500000px;}
.x48_c00016{left:93.300000px;}
.x68_c00016{left:94.350000px;}
.x81_c00016{left:96.150000px;}
.x6b_c00016{left:98.250000px;}
.x65_c00016{left:100.050000px;}
.x54_c00016{left:102.900000px;}
.x95_c00016{left:105.150000px;}
.xa8_c00016{left:106.950000px;}
.x60_c00016{left:109.500000px;}
.x25_c00016{left:111.150000px;}
.x1_c00016{left:112.350000px;}
.x1e_c00016{left:114.150000px;}
.x9f_c00016{left:115.200000px;}
.x5_c00016{left:116.250000px;}
.x3e_c00016{left:117.450000px;}
.x73_c00016{left:118.650000px;}
.x2e_c00016{left:120.750000px;}
.x7d_c00016{left:122.100000px;}
.x82_c00016{left:123.900000px;}
.x16_c00016{left:125.250000px;}
.x6c_c00016{left:126.750000px;}
.x26_c00016{left:128.100000px;}
.x36_c00016{left:129.450000px;}
.x61_c00016{left:130.800000px;}
.x1f_c00016{left:132.450000px;}
.x3f_c00016{left:135.150000px;}
.x8b_c00016{left:136.800000px;}
.x98_c00016{left:138.600000px;}
.x4d_c00016{left:141.000000px;}
.x37_c00016{left:143.100000px;}
.x77_c00016{left:144.300000px;}
.x27_c00016{left:145.800000px;}
.xae_c00016{left:146.850000px;}
.x70_c00016{left:147.900000px;}
.x4e_c00016{left:150.000000px;}
.xa5_c00016{left:151.200000px;}
.x66_c00016{left:154.050000px;}
.x2f_c00016{left:156.450000px;}
.x40_c00016{left:157.500000px;}
.x7a_c00016{left:159.750000px;}
.x38_c00016{left:160.800000px;}
.x58_c00016{left:162.450000px;}
.x17_c00016{left:165.600000px;}
.x7e_c00016{left:167.100000px;}
.x41_c00016{left:169.800000px;}
.x8e_c00016{left:171.150000px;}
.x92_c00016{left:172.650000px;}
.x9c_c00016{left:174.300000px;}
.x30_c00016{left:176.550000px;}
.xad_c00016{left:177.900000px;}
.x87_c00016{left:179.100000px;}
.x83_c00016{left:181.050000px;}
.x18_c00016{left:183.300000px;}
.x71_c00016{left:184.650000px;}
.x4f_c00016{left:185.700000px;}
.x28_c00016{left:187.500000px;}
.xab_c00016{left:188.700000px;}
.x7f_c00016{left:190.500000px;}
.x20_c00016{left:192.900000px;}
.x85_c00016{left:194.250000px;}
.x96_c00016{left:196.500000px;}
.xa0_c00016{left:199.950000px;}
.x84_c00016{left:201.150000px;}
.x42_c00016{left:203.250000px;}
.x59_c00016{left:205.350000px;}
.x50_c00016{left:207.600000px;}
.x8c_c00016{left:211.350000px;}
.x11_c00016{left:214.500000px;}
.x69_c00016{left:216.450000px;}
.x43_c00016{left:220.500000px;}
.x19_c00016{left:224.700000px;}
.x5a_c00016{left:225.900000px;}
.x6_c00016{left:228.150000px;}
.x8f_c00016{left:229.950000px;}
.x39_c00016{left:232.050000px;}
.x21_c00016{left:233.550000px;}
.x12_c00016{left:236.100000px;}
.x1a_c00016{left:238.800000px;}
.xa3_c00016{left:240.600000px;}
.x88_c00016{left:243.150000px;}
.x62_c00016{left:244.950000px;}
.x44_c00016{left:248.550000px;}
.x31_c00016{left:250.350000px;}
.x5d_c00016{left:251.550000px;}
.x64_c00016{left:253.200000px;}
.x6d_c00016{left:255.300000px;}
.x3a_c00016{left:256.500000px;}
.x7_c00016{left:260.850000px;}
.x29_c00016{left:262.050000px;}
.x99_c00016{left:263.100000px;}
.x22_c00016{left:264.150000px;}
.x13_c00016{left:266.400000px;}
.x63_c00016{left:268.350000px;}
.x5b_c00016{left:269.850000px;}
.x2a_c00016{left:271.350000px;}
.x6e_c00016{left:274.350000px;}
.xa9_c00016{left:276.150000px;}
.x51_c00016{left:278.850000px;}
.x90_c00016{left:280.050000px;}
.xa6_c00016{left:282.600000px;}
.x78_c00016{left:283.650000px;}
.x9a_c00016{left:284.700000px;}
.x49_c00016{left:287.100000px;}
.x55_c00016{left:288.450000px;}
.x14_c00016{left:290.550000px;}
.x67_c00016{left:291.600000px;}
.x45_c00016{left:293.250000px;}
.xaa_c00016{left:297.750000px;}
.x91_c00016{left:299.100000px;}
.x1b_c00016{left:300.750000px;}
.x2b_c00016{left:303.000000px;}
.x32_c00016{left:305.100000px;}
.x56_c00016{left:308.250000px;}
.x23_c00016{left:310.950000px;}
.x3b_c00016{left:315.150000px;}
.x33_c00016{left:316.200000px;}
.x89_c00016{left:317.700000px;}
.x46_c00016{left:319.950000px;}
.x2c_c00016{left:321.750000px;}
.x6a_c00016{left:325.050000px;}
.x5f_c00016{left:328.050000px;}
.x1c_c00016{left:329.850000px;}
.x3c_c00016{left:334.950000px;}
.x74_c00016{left:336.450000px;}
.x34_c00016{left:337.800000px;}
.x52_c00016{left:340.050000px;}
.x47_c00016{left:341.250000px;}
.x86_c00016{left:343.650000px;}
.xa1_c00016{left:344.700000px;}
.x7b_c00016{left:345.750000px;}
.x4a_c00016{left:347.250000px;}
.x8_c00016{left:349.800000px;}
.x57_c00016{left:351.450000px;}
.x5e_c00016{left:352.500000px;}
.x1d_c00016{left:354.000000px;}
.xac_c00016{left:355.800000px;}
.x2d_c00016{left:360.300000px;}
.x7c_c00016{left:361.950000px;}
.x80_c00016{left:364.800000px;}
.x93_c00016{left:366.900000px;}
.xa7_c00016{left:369.000000px;}
.x8d_c00016{left:371.100000px;}
.x4b_c00016{left:372.150000px;}
.x8a_c00016{left:374.550000px;}
.xf_c00016{left:376.500000px;}
.x53_c00016{left:378.300000px;}
.xaf_c00016{left:380.100000px;}
.x79_c00016{left:382.350000px;}
.x35_c00016{left:384.600000px;}
.x24_c00016{left:386.550000px;}
.xa2_c00016{left:389.400000px;}
.x3d_c00016{left:393.300000px;}
.x9_c00016{left:394.800000px;}
.x75_c00016{left:399.150000px;}
.x2_c00016{left:400.650000px;}
.x6f_c00016{left:401.700000px;}
.x9b_c00016{left:404.700000px;}
.x94_c00016{left:405.750000px;}
.x9d_c00016{left:406.800000px;}
.x72_c00016{left:411.450000px;}
.xb0_c00016{left:432.000000px;}
.xd0_c00016{left:433.200000px;}
.xe4_c00016{left:434.550000px;}
.xf9_c00016{left:435.750000px;}
.x123_c00016{left:438.450000px;}
.x145_c00016{left:439.950000px;}
.x14b_c00016{left:441.450000px;}
.x148_c00016{left:450.750000px;}
.xd9_c00016{left:451.800000px;}
.x110_c00016{left:454.200000px;}
.x11e_c00016{left:455.850000px;}
.x131_c00016{left:457.500000px;}
.x14c_c00016{left:461.550000px;}
.x108_c00016{left:463.950000px;}
.x12c_c00016{left:468.000000px;}
.x10b_c00016{left:472.650000px;}
.xd8_c00016{left:475.350000px;}
.xb1_c00016{left:478.050000px;}
.xfa_c00016{left:479.700000px;}
.xdf_c00016{left:482.100000px;}
.x3_c00016{left:483.450000px;}
.x12d_c00016{left:488.100000px;}
.xa_c00016{left:489.450000px;}
.xe5_c00016{left:491.100000px;}
.xbe_c00016{left:492.600000px;}
.xb8_c00016{left:493.650000px;}
.x104_c00016{left:495.750000px;}
.x11a_c00016{left:498.300000px;}
.x101_c00016{left:499.950000px;}
.xfc_c00016{left:501.150000px;}
.xda_c00016{left:503.250000px;}
.xe6_c00016{left:508.050000px;}
.x147_c00016{left:509.100000px;}
.x135_c00016{left:511.050000px;}
.xb2_c00016{left:513.000000px;}
.xb9_c00016{left:514.200000px;}
.xf1_c00016{left:515.700000px;}
.x102_c00016{left:516.900000px;}
.xc8_c00016{left:518.250000px;}
.x10c_c00016{left:519.450000px;}
.xb_c00016{left:521.100000px;}
.xfb_c00016{left:522.150000px;}
.xf6_c00016{left:523.350000px;}
.xe0_c00016{left:524.550000px;}
.x146_c00016{left:525.600000px;}
.xd1_c00016{left:527.100000px;}
.x109_c00016{left:528.450000px;}
.xbf_c00016{left:530.400000px;}
.x129_c00016{left:533.250000px;}
.x13e_c00016{left:534.750000px;}
.xc0_c00016{left:539.400000px;}
.xb3_c00016{left:541.800000px;}
.x132_c00016{left:546.450000px;}
.x111_c00016{left:547.800000px;}
.xc9_c00016{left:548.850000px;}
.x105_c00016{left:550.500000px;}
.x10a_c00016{left:551.850000px;}
.x124_c00016{left:558.900000px;}
.x12a_c00016{left:559.950000px;}
.x114_c00016{left:561.600000px;}
.xdb_c00016{left:563.700000px;}
.x12e_c00016{left:566.850000px;}
.x136_c00016{left:568.650000px;}
.xc1_c00016{left:570.750000px;}
.xe7_c00016{left:573.600000px;}
.xe1_c00016{left:574.650000px;}
.x141_c00016{left:575.850000px;}
.xd2_c00016{left:577.800000px;}
.x116_c00016{left:579.150000px;}
.xfd_c00016{left:581.100000px;}
.x125_c00016{left:582.600000px;}
.xdc_c00016{left:584.550000px;}
.x10d_c00016{left:586.050000px;}
.x115_c00016{left:587.100000px;}
.x11b_c00016{left:588.300000px;}
.x149_c00016{left:589.350000px;}
.x117_c00016{left:590.700000px;}
.xc_c00016{left:592.800000px;}
.x106_c00016{left:594.450000px;}
.xc2_c00016{left:596.250000px;}
.x10e_c00016{left:597.900000px;}
.x103_c00016{left:601.200000px;}
.xd3_c00016{left:602.700000px;}
.x112_c00016{left:603.900000px;}
.x13f_c00016{left:605.250000px;}
.x14d_c00016{left:606.300000px;}
.xb4_c00016{left:607.350000px;}
.xfe_c00016{left:608.850000px;}
.x14a_c00016{left:609.900000px;}
.x142_c00016{left:611.550000px;}
.xea_c00016{left:615.450000px;}
.xd4_c00016{left:616.800000px;}
.x12f_c00016{left:618.000000px;}
.xf2_c00016{left:619.800000px;}
.x138_c00016{left:621.000000px;}
.xdd_c00016{left:623.100000px;}
.x143_c00016{left:624.150000px;}
.x133_c00016{left:625.650000px;}
.xeb_c00016{left:627.300000px;}
.xba_c00016{left:628.350000px;}
.xca_c00016{left:629.550000px;}
.x12b_c00016{left:631.200000px;}
.x13b_c00016{left:632.400000px;}
.xd_c00016{left:636.300000px;}
.xde_c00016{left:637.800000px;}
.x113_c00016{left:639.150000px;}
.x11f_c00016{left:640.950000px;}
.xd5_c00016{left:642.750000px;}
.xf3_c00016{left:644.700000px;}
.x144_c00016{left:646.500000px;}
.xbb_c00016{left:648.450000px;}
.xf7_c00016{left:650.100000px;}
.xcb_c00016{left:652.200000px;}
.xc3_c00016{left:653.550000px;}
.xcc_c00016{left:661.200000px;}
.x13c_c00016{left:662.250000px;}
.xec_c00016{left:663.300000px;}
.x126_c00016{left:666.150000px;}
.xe8_c00016{left:667.200000px;}
.xe_c00016{left:668.400000px;}
.x140_c00016{left:670.050000px;}
.x120_c00016{left:673.050000px;}
.xf8_c00016{left:675.600000px;}
.xc4_c00016{left:676.650000px;}
.xff_c00016{left:680.100000px;}
.x10f_c00016{left:682.500000px;}
.xed_c00016{left:685.650000px;}
.xe9_c00016{left:686.700000px;}
.xc5_c00016{left:689.250000px;}
.xcd_c00016{left:690.300000px;}
.x11c_c00016{left:691.650000px;}
.xb5_c00016{left:694.800000px;}
.x121_c00016{left:698.250000px;}
.x14e_c00016{left:699.900000px;}
.xee_c00016{left:701.850000px;}
.xf4_c00016{left:703.350000px;}
.x127_c00016{left:705.450000px;}
.xbc_c00016{left:708.900000px;}
.xe2_c00016{left:710.700000px;}
.x134_c00016{left:712.050000px;}
.xd6_c00016{left:713.700000px;}
.x107_c00016{left:715.350000px;}
.x137_c00016{left:716.700000px;}
.xb6_c00016{left:719.250000px;}
.x128_c00016{left:721.650000px;}
.xce_c00016{left:723.000000px;}
.xbd_c00016{left:729.450000px;}
.xe3_c00016{left:730.800000px;}
.xf5_c00016{left:733.950000px;}
.x11d_c00016{left:735.600000px;}
.xb7_c00016{left:736.950000px;}
.x139_c00016{left:738.000000px;}
.xef_c00016{left:739.650000px;}
.xc6_c00016{left:742.500000px;}
.x130_c00016{left:743.700000px;}
.xcf_c00016{left:747.150000px;}
.x13d_c00016{left:748.350000px;}
.x118_c00016{left:751.350000px;}
.xd7_c00016{left:753.750000px;}
.xf0_c00016{left:756.600000px;}
.x122_c00016{left:759.450000px;}
.x119_c00016{left:763.200000px;}
.xc7_c00016{left:765.600000px;}
.x100_c00016{left:767.700000px;}
.x13a_c00016{left:778.200000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws6_c00016{word-spacing:-14.229935pt;}
.ws7_c00016{word-spacing:-12.865497pt;}
.ws5_c00016{word-spacing:-7.805462pt;}
.ws8_c00016{word-spacing:-5.802469pt;}
.ws0_c00016{word-spacing:-2.444444pt;}
.ws9_c00016{word-spacing:0.000000pt;}
.ws3_c00016{word-spacing:0.273136pt;}
.ws4_c00016{word-spacing:4.867391pt;}
.ws1_c00016{word-spacing:9.696970pt;}
.ws2_c00016{word-spacing:12.546203pt;}
.fs1_c00016{font-size:42.666667pt;}
.fs6_c00016{font-size:48.000000pt;}
.fs3_c00016{font-size:53.333333pt;}
.fs4_c00016{font-size:58.666667pt;}
.fs5_c00016{font-size:64.000000pt;}
.fs2_c00016{font-size:69.333333pt;}
.fs0_c00016{font-size:112.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y5a_c00016{bottom:159.600000pt;}
.y2e_c00016{bottom:174.133333pt;}
.y59_c00016{bottom:174.666667pt;}
.y2d_c00016{bottom:187.200000pt;}
.y2c_c00016{bottom:200.000000pt;}
.y58_c00016{bottom:200.933333pt;}
.y2b_c00016{bottom:213.066667pt;}
.y57_c00016{bottom:215.066667pt;}
.y2a_c00016{bottom:225.866667pt;}
.y56_c00016{bottom:229.066667pt;}
.y29_c00016{bottom:238.666667pt;}
.y55_c00016{bottom:242.933333pt;}
.y28_c00016{bottom:251.200000pt;}
.y54_c00016{bottom:257.333333pt;}
.y27_c00016{bottom:264.266667pt;}
.y53_c00016{bottom:270.666667pt;}
.y26_c00016{bottom:276.400000pt;}
.y52_c00016{bottom:284.800000pt;}
.y25_c00016{bottom:289.200000pt;}
.y51_c00016{bottom:298.666667pt;}
.y24_c00016{bottom:301.733333pt;}
.y50_c00016{bottom:311.733333pt;}
.y23_c00016{bottom:314.800000pt;}
.y4f_c00016{bottom:325.200000pt;}
.y22_c00016{bottom:327.333333pt;}
.y4e_c00016{bottom:338.000000pt;}
.y21_c00016{bottom:340.133333pt;}
.y4d_c00016{bottom:352.666667pt;}
.y20_c00016{bottom:352.933333pt;}
.y4c_c00016{bottom:363.600000pt;}
.y1f_c00016{bottom:365.466667pt;}
.y4b_c00016{bottom:375.733333pt;}
.y1e_c00016{bottom:378.533333pt;}
.y4a_c00016{bottom:388.800000pt;}
.y1d_c00016{bottom:392.266667pt;}
.y49_c00016{bottom:401.333333pt;}
.y48_c00016{bottom:414.133333pt;}
.y47_c00016{bottom:427.200000pt;}
.y1c_c00016{bottom:433.600000pt;}
.y46_c00016{bottom:439.333333pt;}
.y1b_c00016{bottom:453.466667pt;}
.y1a_c00016{bottom:469.733333pt;}
.y19_c00016{bottom:485.466667pt;}
.y45_c00016{bottom:488.933333pt;}
.y18_c00016{bottom:496.400000pt;}
.y17_c00016{bottom:501.466667pt;}
.y44_c00016{bottom:504.666667pt;}
.y16_c00016{bottom:517.466667pt;}
.y43_c00016{bottom:520.666667pt;}
.y42_c00016{bottom:544.266667pt;}
.y15_c00016{bottom:547.466667pt;}
.y41_c00016{bottom:560.266667pt;}
.y40_c00016{bottom:576.266667pt;}
.y14_c00016{bottom:581.066667pt;}
.y3f_c00016{bottom:595.733333pt;}
.y3e_c00016{bottom:611.733333pt;}
.y13_c00016{bottom:616.666667pt;}
.y3d_c00016{bottom:627.733333pt;}
.y12_c00016{bottom:632.666667pt;}
.y3c_c00016{bottom:643.466667pt;}
.y11_c00016{bottom:648.800000pt;}
.y3b_c00016{bottom:659.733333pt;}
.y10_c00016{bottom:664.533333pt;}
.y3a_c00016{bottom:675.466667pt;}
.yf_c00016{bottom:680.533333pt;}
.y39_c00016{bottom:691.466667pt;}
.ye_c00016{bottom:696.533333pt;}
.y38_c00016{bottom:707.200000pt;}
.yd_c00016{bottom:712.266667pt;}
.y37_c00016{bottom:723.200000pt;}
.yc_c00016{bottom:728.266667pt;}
.y36_c00016{bottom:740.133333pt;}
.yb_c00016{bottom:744.000000pt;}
.y35_c00016{bottom:759.066667pt;}
.ya_c00016{bottom:763.066667pt;}
.y34_c00016{bottom:778.400000pt;}
.y9_c00016{bottom:779.066667pt;}
.y33_c00016{bottom:794.400000pt;}
.y8_c00016{bottom:794.800000pt;}
.y32_c00016{bottom:810.133333pt;}
.y7_c00016{bottom:810.800000pt;}
.y31_c00016{bottom:826.133333pt;}
.y6_c00016{bottom:826.533333pt;}
.y30_c00016{bottom:841.866667pt;}
.y5_c00016{bottom:842.533333pt;}
.y2f_c00016{bottom:857.866667pt;}
.y4_c00016{bottom:858.266667pt;}
.y3_c00016{bottom:933.466667pt;}
.y2_c00016{bottom:948.800000pt;}
.y1_c00016{bottom:984.666667pt;}
.h3_c00016{height:42.666667pt;}
.h8_c00016{height:48.000000pt;}
.h5_c00016{height:53.333333pt;}
.h6_c00016{height:58.666667pt;}
.h7_c00016{height:64.000000pt;}
.h4_c00016{height:69.333333pt;}
.h2_c00016{height:112.000000pt;}
.h0_c00016{height:1134.399984pt;}
.h1_c00016{height:1134.666667pt;}
.w0_c00016{width:843.200032pt;}
.w1_c00016{width:843.333333pt;}
.x0_c00016{left:0.000000pt;}
.x4_c00016{left:64.000000pt;}
.x10_c00016{left:64.933333pt;}
.x4c_c00016{left:67.466667pt;}
.x5c_c00016{left:68.400000pt;}
.x76_c00016{left:70.000000pt;}
.x97_c00016{left:71.066667pt;}
.x9e_c00016{left:72.266667pt;}
.xa4_c00016{left:73.333333pt;}
.x15_c00016{left:78.666667pt;}
.x48_c00016{left:82.933333pt;}
.x68_c00016{left:83.866667pt;}
.x81_c00016{left:85.466667pt;}
.x6b_c00016{left:87.333333pt;}
.x65_c00016{left:88.933333pt;}
.x54_c00016{left:91.466667pt;}
.x95_c00016{left:93.466667pt;}
.xa8_c00016{left:95.066667pt;}
.x60_c00016{left:97.333333pt;}
.x25_c00016{left:98.800000pt;}
.x1_c00016{left:99.866667pt;}
.x1e_c00016{left:101.466667pt;}
.x9f_c00016{left:102.400000pt;}
.x5_c00016{left:103.333333pt;}
.x3e_c00016{left:104.400000pt;}
.x73_c00016{left:105.466667pt;}
.x2e_c00016{left:107.333333pt;}
.x7d_c00016{left:108.533333pt;}
.x82_c00016{left:110.133333pt;}
.x16_c00016{left:111.333333pt;}
.x6c_c00016{left:112.666667pt;}
.x26_c00016{left:113.866667pt;}
.x36_c00016{left:115.066667pt;}
.x61_c00016{left:116.266667pt;}
.x1f_c00016{left:117.733333pt;}
.x3f_c00016{left:120.133333pt;}
.x8b_c00016{left:121.600000pt;}
.x98_c00016{left:123.200000pt;}
.x4d_c00016{left:125.333333pt;}
.x37_c00016{left:127.200000pt;}
.x77_c00016{left:128.266667pt;}
.x27_c00016{left:129.600000pt;}
.xae_c00016{left:130.533333pt;}
.x70_c00016{left:131.466667pt;}
.x4e_c00016{left:133.333333pt;}
.xa5_c00016{left:134.400000pt;}
.x66_c00016{left:136.933333pt;}
.x2f_c00016{left:139.066667pt;}
.x40_c00016{left:140.000000pt;}
.x7a_c00016{left:142.000000pt;}
.x38_c00016{left:142.933333pt;}
.x58_c00016{left:144.400000pt;}
.x17_c00016{left:147.200000pt;}
.x7e_c00016{left:148.533333pt;}
.x41_c00016{left:150.933333pt;}
.x8e_c00016{left:152.133333pt;}
.x92_c00016{left:153.466667pt;}
.x9c_c00016{left:154.933333pt;}
.x30_c00016{left:156.933333pt;}
.xad_c00016{left:158.133333pt;}
.x87_c00016{left:159.200000pt;}
.x83_c00016{left:160.933333pt;}
.x18_c00016{left:162.933333pt;}
.x71_c00016{left:164.133333pt;}
.x4f_c00016{left:165.066667pt;}
.x28_c00016{left:166.666667pt;}
.xab_c00016{left:167.733333pt;}
.x7f_c00016{left:169.333333pt;}
.x20_c00016{left:171.466667pt;}
.x85_c00016{left:172.666667pt;}
.x96_c00016{left:174.666667pt;}
.xa0_c00016{left:177.733333pt;}
.x84_c00016{left:178.800000pt;}
.x42_c00016{left:180.666667pt;}
.x59_c00016{left:182.533333pt;}
.x50_c00016{left:184.533333pt;}
.x8c_c00016{left:187.866667pt;}
.x11_c00016{left:190.666667pt;}
.x69_c00016{left:192.400000pt;}
.x43_c00016{left:196.000000pt;}
.x19_c00016{left:199.733333pt;}
.x5a_c00016{left:200.800000pt;}
.x6_c00016{left:202.800000pt;}
.x8f_c00016{left:204.400000pt;}
.x39_c00016{left:206.266667pt;}
.x21_c00016{left:207.600000pt;}
.x12_c00016{left:209.866667pt;}
.x1a_c00016{left:212.266667pt;}
.xa3_c00016{left:213.866667pt;}
.x88_c00016{left:216.133333pt;}
.x62_c00016{left:217.733333pt;}
.x44_c00016{left:220.933333pt;}
.x31_c00016{left:222.533333pt;}
.x5d_c00016{left:223.600000pt;}
.x64_c00016{left:225.066667pt;}
.x6d_c00016{left:226.933333pt;}
.x3a_c00016{left:228.000000pt;}
.x7_c00016{left:231.866667pt;}
.x29_c00016{left:232.933333pt;}
.x99_c00016{left:233.866667pt;}
.x22_c00016{left:234.800000pt;}
.x13_c00016{left:236.800000pt;}
.x63_c00016{left:238.533333pt;}
.x5b_c00016{left:239.866667pt;}
.x2a_c00016{left:241.200000pt;}
.x6e_c00016{left:243.866667pt;}
.xa9_c00016{left:245.466667pt;}
.x51_c00016{left:247.866667pt;}
.x90_c00016{left:248.933333pt;}
.xa6_c00016{left:251.200000pt;}
.x78_c00016{left:252.133333pt;}
.x9a_c00016{left:253.066667pt;}
.x49_c00016{left:255.200000pt;}
.x55_c00016{left:256.400000pt;}
.x14_c00016{left:258.266667pt;}
.x67_c00016{left:259.200000pt;}
.x45_c00016{left:260.666667pt;}
.xaa_c00016{left:264.666667pt;}
.x91_c00016{left:265.866667pt;}
.x1b_c00016{left:267.333333pt;}
.x2b_c00016{left:269.333333pt;}
.x32_c00016{left:271.200000pt;}
.x56_c00016{left:274.000000pt;}
.x23_c00016{left:276.400000pt;}
.x3b_c00016{left:280.133333pt;}
.x33_c00016{left:281.066667pt;}
.x89_c00016{left:282.400000pt;}
.x46_c00016{left:284.400000pt;}
.x2c_c00016{left:286.000000pt;}
.x6a_c00016{left:288.933333pt;}
.x5f_c00016{left:291.600000pt;}
.x1c_c00016{left:293.200000pt;}
.x3c_c00016{left:297.733333pt;}
.x74_c00016{left:299.066667pt;}
.x34_c00016{left:300.266667pt;}
.x52_c00016{left:302.266667pt;}
.x47_c00016{left:303.333333pt;}
.x86_c00016{left:305.466667pt;}
.xa1_c00016{left:306.400000pt;}
.x7b_c00016{left:307.333333pt;}
.x4a_c00016{left:308.666667pt;}
.x8_c00016{left:310.933333pt;}
.x57_c00016{left:312.400000pt;}
.x5e_c00016{left:313.333333pt;}
.x1d_c00016{left:314.666667pt;}
.xac_c00016{left:316.266667pt;}
.x2d_c00016{left:320.266667pt;}
.x7c_c00016{left:321.733333pt;}
.x80_c00016{left:324.266667pt;}
.x93_c00016{left:326.133333pt;}
.xa7_c00016{left:328.000000pt;}
.x8d_c00016{left:329.866667pt;}
.x4b_c00016{left:330.800000pt;}
.x8a_c00016{left:332.933333pt;}
.xf_c00016{left:334.666667pt;}
.x53_c00016{left:336.266667pt;}
.xaf_c00016{left:337.866667pt;}
.x79_c00016{left:339.866667pt;}
.x35_c00016{left:341.866667pt;}
.x24_c00016{left:343.600000pt;}
.xa2_c00016{left:346.133333pt;}
.x3d_c00016{left:349.600000pt;}
.x9_c00016{left:350.933333pt;}
.x75_c00016{left:354.800000pt;}
.x2_c00016{left:356.133333pt;}
.x6f_c00016{left:357.066667pt;}
.x9b_c00016{left:359.733333pt;}
.x94_c00016{left:360.666667pt;}
.x9d_c00016{left:361.600000pt;}
.x72_c00016{left:365.733333pt;}
.xb0_c00016{left:384.000000pt;}
.xd0_c00016{left:385.066667pt;}
.xe4_c00016{left:386.266667pt;}
.xf9_c00016{left:387.333333pt;}
.x123_c00016{left:389.733333pt;}
.x145_c00016{left:391.066667pt;}
.x14b_c00016{left:392.400000pt;}
.x148_c00016{left:400.666667pt;}
.xd9_c00016{left:401.600000pt;}
.x110_c00016{left:403.733333pt;}
.x11e_c00016{left:405.200000pt;}
.x131_c00016{left:406.666667pt;}
.x14c_c00016{left:410.266667pt;}
.x108_c00016{left:412.400000pt;}
.x12c_c00016{left:416.000000pt;}
.x10b_c00016{left:420.133333pt;}
.xd8_c00016{left:422.533333pt;}
.xb1_c00016{left:424.933333pt;}
.xfa_c00016{left:426.400000pt;}
.xdf_c00016{left:428.533333pt;}
.x3_c00016{left:429.733333pt;}
.x12d_c00016{left:433.866667pt;}
.xa_c00016{left:435.066667pt;}
.xe5_c00016{left:436.533333pt;}
.xbe_c00016{left:437.866667pt;}
.xb8_c00016{left:438.800000pt;}
.x104_c00016{left:440.666667pt;}
.x11a_c00016{left:442.933333pt;}
.x101_c00016{left:444.400000pt;}
.xfc_c00016{left:445.466667pt;}
.xda_c00016{left:447.333333pt;}
.xe6_c00016{left:451.600000pt;}
.x147_c00016{left:452.533333pt;}
.x135_c00016{left:454.266667pt;}
.xb2_c00016{left:456.000000pt;}
.xb9_c00016{left:457.066667pt;}
.xf1_c00016{left:458.400000pt;}
.x102_c00016{left:459.466667pt;}
.xc8_c00016{left:460.666667pt;}
.x10c_c00016{left:461.733333pt;}
.xb_c00016{left:463.200000pt;}
.xfb_c00016{left:464.133333pt;}
.xf6_c00016{left:465.200000pt;}
.xe0_c00016{left:466.266667pt;}
.x146_c00016{left:467.200000pt;}
.xd1_c00016{left:468.533333pt;}
.x109_c00016{left:469.733333pt;}
.xbf_c00016{left:471.466667pt;}
.x129_c00016{left:474.000000pt;}
.x13e_c00016{left:475.333333pt;}
.xc0_c00016{left:479.466667pt;}
.xb3_c00016{left:481.600000pt;}
.x132_c00016{left:485.733333pt;}
.x111_c00016{left:486.933333pt;}
.xc9_c00016{left:487.866667pt;}
.x105_c00016{left:489.333333pt;}
.x10a_c00016{left:490.533333pt;}
.x124_c00016{left:496.800000pt;}
.x12a_c00016{left:497.733333pt;}
.x114_c00016{left:499.200000pt;}
.xdb_c00016{left:501.066667pt;}
.x12e_c00016{left:503.866667pt;}
.x136_c00016{left:505.466667pt;}
.xc1_c00016{left:507.333333pt;}
.xe7_c00016{left:509.866667pt;}
.xe1_c00016{left:510.800000pt;}
.x141_c00016{left:511.866667pt;}
.xd2_c00016{left:513.600000pt;}
.x116_c00016{left:514.800000pt;}
.xfd_c00016{left:516.533333pt;}
.x125_c00016{left:517.866667pt;}
.xdc_c00016{left:519.600000pt;}
.x10d_c00016{left:520.933333pt;}
.x115_c00016{left:521.866667pt;}
.x11b_c00016{left:522.933333pt;}
.x149_c00016{left:523.866667pt;}
.x117_c00016{left:525.066667pt;}
.xc_c00016{left:526.933333pt;}
.x106_c00016{left:528.400000pt;}
.xc2_c00016{left:530.000000pt;}
.x10e_c00016{left:531.466667pt;}
.x103_c00016{left:534.400000pt;}
.xd3_c00016{left:535.733333pt;}
.x112_c00016{left:536.800000pt;}
.x13f_c00016{left:538.000000pt;}
.x14d_c00016{left:538.933333pt;}
.xb4_c00016{left:539.866667pt;}
.xfe_c00016{left:541.200000pt;}
.x14a_c00016{left:542.133333pt;}
.x142_c00016{left:543.600000pt;}
.xea_c00016{left:547.066667pt;}
.xd4_c00016{left:548.266667pt;}
.x12f_c00016{left:549.333333pt;}
.xf2_c00016{left:550.933333pt;}
.x138_c00016{left:552.000000pt;}
.xdd_c00016{left:553.866667pt;}
.x143_c00016{left:554.800000pt;}
.x133_c00016{left:556.133333pt;}
.xeb_c00016{left:557.600000pt;}
.xba_c00016{left:558.533333pt;}
.xca_c00016{left:559.600000pt;}
.x12b_c00016{left:561.066667pt;}
.x13b_c00016{left:562.133333pt;}
.xd_c00016{left:565.600000pt;}
.xde_c00016{left:566.933333pt;}
.x113_c00016{left:568.133333pt;}
.x11f_c00016{left:569.733333pt;}
.xd5_c00016{left:571.333333pt;}
.xf3_c00016{left:573.066667pt;}
.x144_c00016{left:574.666667pt;}
.xbb_c00016{left:576.400000pt;}
.xf7_c00016{left:577.866667pt;}
.xcb_c00016{left:579.733333pt;}
.xc3_c00016{left:580.933333pt;}
.xcc_c00016{left:587.733333pt;}
.x13c_c00016{left:588.666667pt;}
.xec_c00016{left:589.600000pt;}
.x126_c00016{left:592.133333pt;}
.xe8_c00016{left:593.066667pt;}
.xe_c00016{left:594.133333pt;}
.x140_c00016{left:595.600000pt;}
.x120_c00016{left:598.266667pt;}
.xf8_c00016{left:600.533333pt;}
.xc4_c00016{left:601.466667pt;}
.xff_c00016{left:604.533333pt;}
.x10f_c00016{left:606.666667pt;}
.xed_c00016{left:609.466667pt;}
.xe9_c00016{left:610.400000pt;}
.xc5_c00016{left:612.666667pt;}
.xcd_c00016{left:613.600000pt;}
.x11c_c00016{left:614.800000pt;}
.xb5_c00016{left:617.600000pt;}
.x121_c00016{left:620.666667pt;}
.x14e_c00016{left:622.133333pt;}
.xee_c00016{left:623.866667pt;}
.xf4_c00016{left:625.200000pt;}
.x127_c00016{left:627.066667pt;}
.xbc_c00016{left:630.133333pt;}
.xe2_c00016{left:631.733333pt;}
.x134_c00016{left:632.933333pt;}
.xd6_c00016{left:634.400000pt;}
.x107_c00016{left:635.866667pt;}
.x137_c00016{left:637.066667pt;}
.xb6_c00016{left:639.333333pt;}
.x128_c00016{left:641.466667pt;}
.xce_c00016{left:642.666667pt;}
.xbd_c00016{left:648.400000pt;}
.xe3_c00016{left:649.600000pt;}
.xf5_c00016{left:652.400000pt;}
.x11d_c00016{left:653.866667pt;}
.xb7_c00016{left:655.066667pt;}
.x139_c00016{left:656.000000pt;}
.xef_c00016{left:657.466667pt;}
.xc6_c00016{left:660.000000pt;}
.x130_c00016{left:661.066667pt;}
.xcf_c00016{left:664.133333pt;}
.x13d_c00016{left:665.200000pt;}
.x118_c00016{left:667.866667pt;}
.xd7_c00016{left:670.000000pt;}
.xf0_c00016{left:672.533333pt;}
.x122_c00016{left:675.066667pt;}
.x119_c00016{left:678.400000pt;}
.xc7_c00016{left:680.533333pt;}
.x100_c00016{left:682.400000pt;}
.x13a_c00016{left:691.733333pt;}
}





/* 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_c00017 {
    display:none;
  }
  .loading-indicator_c00017.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00017 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_c00017 { 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_c00017" -> "#page-container .classname_c00017")
 */
.pf_c00017 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00017 { /* 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_c00017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00017 { /* 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_c00017 { /* 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_c00017 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00017 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00017 {overflow:visible;}
  }
}
.c_c00017 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00017 { /* 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_c00017:after { /* webkit #35443 */
  content: '';
}
.t_c00017:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00017 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 */
}
.__c00017 { /* 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_c00017 { /* info for Javascript */
  display:none;
}
.l_c00017 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00017 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00017 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00017: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_c00017 {
    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_c00017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00017.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_c00017 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00017;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.000000;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;}
.mc2_c00017{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m100_c00017{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m115_c00017{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m111_c00017{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.me7_c00017{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m18_c00017{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mde_c00017{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00017{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m82_c00017{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc_c00017{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me0_c00017{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m102_c00017{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00017{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4_c00017{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m46_c00017{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m101_c00017{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00017{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00017{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m29_c00017{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m99_c00017{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m91_c00017{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00017{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00017{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mff_c00017{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00017{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00017{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00017{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00017{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00017{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.mb_c00017{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00017{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00017{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00017{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m42_c00017{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00017{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m21_c00017{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00017{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00017{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m13_c00017{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00017{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m26_c00017{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00017{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m65_c00017{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00017{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00017{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mf_c00017{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00017{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md2_c00017{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m38_c00017{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00017{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m74_c00017{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m79_c00017{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md5_c00017{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00017{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00017{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mac_c00017{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00017{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00017{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00017{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00017{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00017{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00017{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00017{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m44_c00017{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md7_c00017{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00017{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m14_c00017{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m93_c00017{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m15_c00017{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m90_c00017{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00017{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00017{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m78_c00017{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m69_c00017{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.med_c00017{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00017{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00017{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m12_c00017{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00017{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me6_c00017{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00017{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m72_c00017{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md1_c00017{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00017{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00017{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m51_c00017{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m36_c00017{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m6_c00017{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00017{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m45_c00017{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m7_c00017{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00017{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.md4_c00017{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00017{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m67_c00017{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m89_c00017{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m57_c00017{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00017{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00017{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me8_c00017{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m104_c00017{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00017{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m58_c00017{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.md0_c00017{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m17_c00017{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00017{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m71_c00017{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma_c00017{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m105_c00017{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00017{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m10_c00017{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m41_c00017{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me_c00017{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3_c00017{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.me9_c00017{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00017{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5_c00017{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m32_c00017{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m33_c00017{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m94_c00017{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m31_c00017{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00017{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00017{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00017{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00017{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00017{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m22_c00017{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m39_c00017{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m23_c00017{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00017{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00017{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m64_c00017{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m68_c00017{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m96_c00017{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m56_c00017{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m87_c00017{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m83_c00017{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00017{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2_c00017{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me2_c00017{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.meb_c00017{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m43_c00017{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m16_c00017{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m24_c00017{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mda_c00017{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.md_c00017{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m85_c00017{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m61_c00017{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m80_c00017{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mec_c00017{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m40_c00017{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00017{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00017{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md6_c00017{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m103_c00017{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00017{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m97_c00017{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m34_c00017{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00017{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00017{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00017{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00017{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00017{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m19_c00017{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00017{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mab_c00017{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m28_c00017{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m49_c00017{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00017{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mea_c00017{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m30_c00017{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00017{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me4_c00017{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m84_c00017{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.me3_c00017{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m59_c00017{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m53_c00017{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m25_c00017{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m73_c00017{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m88_c00017{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m75_c00017{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m20_c00017{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m62_c00017{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00017{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md9_c00017{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mce_c00017{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00017{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00017{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00017{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00017{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00017{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m108_c00017{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00017{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m52_c00017{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m50_c00017{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00017{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m114_c00017{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00017{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mba_c00017{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m86_c00017{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m47_c00017{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00017{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m27_c00017{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.maf_c00017{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00017{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m55_c00017{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m117_c00017{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9_c00017{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00017{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.maa_c00017{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m11_c00017{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md8_c00017{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00017{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m48_c00017{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00017{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00017{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00017{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mee_c00017{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m66_c00017{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mca_c00017{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mad_c00017{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m54_c00017{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00017{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00017{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00017{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m119_c00017{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00017{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m98_c00017{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00017{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m113_c00017{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m70_c00017{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00017{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);}
.md3_c00017{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00017{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00017{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m110_c00017{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00017{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00017{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00017{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m118_c00017{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me1_c00017{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mef_c00017{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m60_c00017{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m63_c00017{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m109_c00017{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m106_c00017{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00017{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00017{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m95_c00017{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00017{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00017{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00017{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00017{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00017{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mae_c00017{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m81_c00017{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m107_c00017{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m37_c00017{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00017{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00017{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00017{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00017{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00017{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00017{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00017{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00017{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m77_c00017{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00017{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m92_c00017{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m35_c00017{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00017{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m112_c00017{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m76_c00017{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me5_c00017{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m0_c00017{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00017{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00017{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00017{transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00017{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m116_c00017{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00017{transform:matrix(0.866750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.866750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.866750,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{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__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00017{word-spacing:-20.526316px;}
.ws5_c00017{word-spacing:-11.634232px;}
.wsa_c00017{word-spacing:-11.354839px;}
.ws7_c00017{word-spacing:-9.736842px;}
.ws6_c00017{word-spacing:-8.222222px;}
.ws3_c00017{word-spacing:-0.156250px;}
.wsb_c00017{word-spacing:0.000000px;}
.ws1_c00017{word-spacing:4.146497px;}
.ws2_c00017{word-spacing:7.336957px;}
.ws0_c00017{word-spacing:10.833333px;}
.ws4_c00017{word-spacing:19.170732px;}
.ws9_c00017{word-spacing:24.750000px;}
.fc0_c00017{color:transparent;}
.fs6_c00017{font-size:30.000000px;}
.fs3_c00017{font-size:42.000000px;}
.fs5_c00017{font-size:48.000000px;}
.fs4_c00017{font-size:54.000000px;}
.fs2_c00017{font-size:60.000000px;}
.fs1_c00017{font-size:66.000000px;}
.fs7_c00017{font-size:72.000000px;}
.fs0_c00017{font-size:108.000000px;}
.y0_c00017{bottom:0.000000px;}
.y36_c00017{bottom:3.600000px;}
.y6e_c00017{bottom:198.600000px;}
.y35_c00017{bottom:199.200000px;}
.y6d_c00017{bottom:213.000000px;}
.y34_c00017{bottom:213.900000px;}
.y6c_c00017{bottom:227.700000px;}
.y33_c00017{bottom:228.600000px;}
.y6b_c00017{bottom:241.800000px;}
.y32_c00017{bottom:242.250000px;}
.y6a_c00017{bottom:255.900000px;}
.y31_c00017{bottom:257.100000px;}
.y69_c00017{bottom:270.000000px;}
.y30_c00017{bottom:271.800000px;}
.y68_c00017{bottom:284.400000px;}
.y2f_c00017{bottom:285.450000px;}
.y67_c00017{bottom:298.800000px;}
.y2e_c00017{bottom:299.850000px;}
.y66_c00017{bottom:313.200000px;}
.y2d_c00017{bottom:318.600000px;}
.y65_c00017{bottom:327.300000px;}
.y2c_c00017{bottom:333.000000px;}
.y64_c00017{bottom:341.700000px;}
.y2b_c00017{bottom:347.400000px;}
.y63_c00017{bottom:356.100000px;}
.y2a_c00017{bottom:362.550000px;}
.y62_c00017{bottom:370.800000px;}
.y29_c00017{bottom:375.900000px;}
.y61_c00017{bottom:384.900000px;}
.y28_c00017{bottom:392.400000px;}
.y60_c00017{bottom:398.550000px;}
.y5f_c00017{bottom:415.500000px;}
.y5e_c00017{bottom:427.650000px;}
.y27_c00017{bottom:439.950000px;}
.y26_c00017{bottom:462.450000px;}
.y5c_c00017{bottom:467.250000px;}
.y25_c00017{bottom:480.450000px;}
.y5b_c00017{bottom:485.250000px;}
.y24_c00017{bottom:498.450000px;}
.y5a_c00017{bottom:503.250000px;}
.y23_c00017{bottom:516.150000px;}
.y59_c00017{bottom:521.250000px;}
.y22_c00017{bottom:533.850000px;}
.y58_c00017{bottom:539.250000px;}
.y21_c00017{bottom:556.050000px;}
.y57_c00017{bottom:557.250000px;}
.y20_c00017{bottom:574.050000px;}
.y56_c00017{bottom:574.950000px;}
.y1f_c00017{bottom:591.750000px;}
.y55_c00017{bottom:592.950000px;}
.y1e_c00017{bottom:609.450000px;}
.y54_c00017{bottom:610.500000px;}
.y1d_c00017{bottom:627.150000px;}
.y53_c00017{bottom:628.500000px;}
.y1c_c00017{bottom:645.450000px;}
.y52_c00017{bottom:646.200000px;}
.y1b_c00017{bottom:663.150000px;}
.y5d_c00017{bottom:663.450000px;}
.y51_c00017{bottom:664.200000px;}
.y1a_c00017{bottom:680.400000px;}
.y50_c00017{bottom:681.600000px;}
.y19_c00017{bottom:698.700000px;}
.y4f_c00017{bottom:699.600000px;}
.y18_c00017{bottom:716.400000px;}
.y4e_c00017{bottom:717.300000px;}
.y17_c00017{bottom:734.100000px;}
.y4d_c00017{bottom:735.300000px;}
.y4c_c00017{bottom:753.000000px;}
.y16_c00017{bottom:756.300000px;}
.y4b_c00017{bottom:770.700000px;}
.y15_c00017{bottom:774.450000px;}
.y4a_c00017{bottom:788.700000px;}
.y14_c00017{bottom:792.450000px;}
.y49_c00017{bottom:806.400000px;}
.y13_c00017{bottom:810.150000px;}
.y48_c00017{bottom:824.400000px;}
.y12_c00017{bottom:828.150000px;}
.y47_c00017{bottom:842.400000px;}
.y11_c00017{bottom:845.850000px;}
.y46_c00017{bottom:860.100000px;}
.y10_c00017{bottom:863.550000px;}
.y45_c00017{bottom:877.650000px;}
.yf_c00017{bottom:881.250000px;}
.y44_c00017{bottom:895.650000px;}
.ye_c00017{bottom:903.600000px;}
.y43_c00017{bottom:913.650000px;}
.yd_c00017{bottom:921.900000px;}
.y42_c00017{bottom:931.350000px;}
.yc_c00017{bottom:939.600000px;}
.y41_c00017{bottom:949.350000px;}
.yb_c00017{bottom:957.300000px;}
.y40_c00017{bottom:970.950000px;}
.ya_c00017{bottom:974.550000px;}
.y3f_c00017{bottom:989.250000px;}
.y9_c00017{bottom:996.900000px;}
.y3e_c00017{bottom:1011.300000px;}
.y8_c00017{bottom:1014.450000px;}
.y3d_c00017{bottom:1029.600000px;}
.y7_c00017{bottom:1032.450000px;}
.y6_c00017{bottom:1050.150000px;}
.y3c_c00017{bottom:1050.900000px;}
.y5_c00017{bottom:1068.150000px;}
.y3b_c00017{bottom:1069.950000px;}
.y4_c00017{bottom:1085.700000px;}
.y3a_c00017{bottom:1087.950000px;}
.y3_c00017{bottom:1108.350000px;}
.y39_c00017{bottom:1110.300000px;}
.y2_c00017{bottom:1126.050000px;}
.y38_c00017{bottom:1127.550000px;}
.y37_c00017{bottom:1139.400000px;}
.y1_c00017{bottom:1153.050000px;}
.h8_c00017{height:30.000000px;}
.h5_c00017{height:42.000000px;}
.h7_c00017{height:48.000000px;}
.h6_c00017{height:54.000000px;}
.h4_c00017{height:60.000000px;}
.h3_c00017{height:66.000000px;}
.h9_c00017{height:72.000000px;}
.h2_c00017{height:108.000000px;}
.h1_c00017{height:1269.000000px;}
.h0_c00017{height:1269.359985px;}
.w0_c00017{width:948.600036px;}
.w1_c00017{width:948.750000px;}
.x0_c00017{left:0.000000px;}
.xa8_c00017{left:152.250000px;}
.x9c_c00017{left:156.000000px;}
.x7a_c00017{left:159.150000px;}
.x77_c00017{left:161.100000px;}
.x71_c00017{left:163.650000px;}
.x5c_c00017{left:164.700000px;}
.x4f_c00017{left:166.650000px;}
.x45_c00017{left:167.850000px;}
.x34_c00017{left:168.900000px;}
.xa5_c00017{left:169.950000px;}
.x9d_c00017{left:171.300000px;}
.x96_c00017{left:172.500000px;}
.x92_c00017{left:175.950000px;}
.x8a_c00017{left:177.150000px;}
.x7f_c00017{left:179.550000px;}
.x6e_c00017{left:182.550000px;}
.x49_c00017{left:184.650000px;}
.x2d_c00017{left:186.450000px;}
.x27_c00017{left:187.950000px;}
.x12_c00017{left:189.000000px;}
.x2_c00017{left:190.050000px;}
.xa4_c00017{left:192.150000px;}
.x66_c00017{left:194.100000px;}
.x8b_c00017{left:195.450000px;}
.x35_c00017{left:197.400000px;}
.x46_c00017{left:199.950000px;}
.x5d_c00017{left:202.200000px;}
.x13_c00017{left:204.150000px;}
.x82_c00017{left:205.800000px;}
.xe_c00017{left:208.800000px;}
.x55_c00017{left:210.750000px;}
.x6c_c00017{left:212.100000px;}
.xb_c00017{left:215.100000px;}
.xa7_c00017{left:216.300000px;}
.x83_c00017{left:218.400000px;}
.xc_c00017{left:222.600000px;}
.x74_c00017{left:224.250000px;}
.x88_c00017{left:226.800000px;}
.x6f_c00017{left:227.850000px;}
.x36_c00017{left:230.550000px;}
.x99_c00017{left:232.950000px;}
.x50_c00017{left:234.750000px;}
.xd_c00017{left:237.750000px;}
.x61_c00017{left:238.800000px;}
.x20_c00017{left:240.000000px;}
.x19_c00017{left:242.250000px;}
.x5e_c00017{left:243.900000px;}
.x89_c00017{left:245.100000px;}
.x62_c00017{left:248.550000px;}
.x47_c00017{left:250.050000px;}
.xa2_c00017{left:251.100000px;}
.x3_c00017{left:252.750000px;}
.xf_c00017{left:254.550000px;}
.x41_c00017{left:256.050000px;}
.x67_c00017{left:258.900000px;}
.x5f_c00017{left:260.400000px;}
.x75_c00017{left:262.350000px;}
.x63_c00017{left:264.000000px;}
.x8c_c00017{left:265.650000px;}
.x3c_c00017{left:267.750000px;}
.x28_c00017{left:268.950000px;}
.x80_c00017{left:272.850000px;}
.x56_c00017{left:275.100000px;}
.x9e_c00017{left:279.000000px;}
.x4_c00017{left:280.050000px;}
.x72_c00017{left:282.000000px;}
.x42_c00017{left:283.350000px;}
.xa6_c00017{left:284.400000px;}
.x87_c00017{left:286.200000px;}
.x84_c00017{left:289.350000px;}
.x57_c00017{left:291.300000px;}
.x1a_c00017{left:293.700000px;}
.x3d_c00017{left:295.500000px;}
.x21_c00017{left:296.550000px;}
.x97_c00017{left:298.050000px;}
.x2e_c00017{left:299.250000px;}
.x60_c00017{left:301.050000px;}
.x14_c00017{left:303.450000px;}
.x22_c00017{left:305.850000px;}
.x8f_c00017{left:306.900000px;}
.xaa_c00017{left:308.850000px;}
.x37_c00017{left:310.800000px;}
.x1b_c00017{left:316.350000px;}
.x4a_c00017{left:317.550000px;}
.x98_c00017{left:319.350000px;}
.x2f_c00017{left:320.550000px;}
.x93_c00017{left:322.500000px;}
.x10_c00017{left:324.000000px;}
.x58_c00017{left:326.550000px;}
.x15_c00017{left:327.600000px;}
.x68_c00017{left:329.100000px;}
.x78_c00017{left:330.600000px;}
.x7b_c00017{left:332.250000px;}
.x29_c00017{left:334.050000px;}
.x4b_c00017{left:335.250000px;}
.x11_c00017{left:336.300000px;}
.x69_c00017{left:338.400000px;}
.x23_c00017{left:340.350000px;}
.x94_c00017{left:342.150000px;}
.x5_c00017{left:344.550000px;}
.x64_c00017{left:347.100000px;}
.x59_c00017{left:348.150000px;}
.x38_c00017{left:350.100000px;}
.xa3_c00017{left:351.450000px;}
.x7c_c00017{left:353.850000px;}
.x2a_c00017{left:355.350000px;}
.x51_c00017{left:357.150000px;}
.x6_c00017{left:358.200000px;}
.x9a_c00017{left:360.150000px;}
.x1c_c00017{left:361.650000px;}
.x30_c00017{left:363.000000px;}
.x9f_c00017{left:364.200000px;}
.x3e_c00017{left:367.200000px;}
.x6a_c00017{left:371.550000px;}
.x2b_c00017{left:373.650000px;}
.x81_c00017{left:375.000000px;}
.x91_c00017{left:376.050000px;}
.x1d_c00017{left:379.950000px;}
.x31_c00017{left:382.050000px;}
.x4c_c00017{left:383.100000px;}
.x43_c00017{left:384.150000px;}
.x16_c00017{left:385.200000px;}
.x6d_c00017{left:386.700000px;}
.x24_c00017{left:390.450000px;}
.x3f_c00017{left:392.400000px;}
.x5a_c00017{left:395.700000px;}
.x32_c00017{left:396.750000px;}
.x7d_c00017{left:400.950000px;}
.xa1_c00017{left:402.000000px;}
.x25_c00017{left:408.150000px;}
.x52_c00017{left:410.400000px;}
.x6b_c00017{left:411.450000px;}
.x7_c00017{left:412.500000px;}
.x39_c00017{left:413.850000px;}
.x1_c00017{left:415.800000px;}
.x85_c00017{left:416.850000px;}
.x17_c00017{left:422.700000px;}
.x2c_c00017{left:424.350000px;}
.x48_c00017{left:426.150000px;}
.x8d_c00017{left:427.650000px;}
.xa0_c00017{left:431.100000px;}
.x53_c00017{left:434.550000px;}
.x8_c00017{left:436.200000px;}
.x8e_c00017{left:438.150000px;}
.xa9_c00017{left:440.100000px;}
.x1e_c00017{left:441.900000px;}
.x90_c00017{left:444.450000px;}
.x33_c00017{left:446.400000px;}
.x26_c00017{left:447.450000px;}
.x44_c00017{left:449.700000px;}
.x3a_c00017{left:452.700000px;}
.x9_c00017{left:457.500000px;}
.x4d_c00017{left:459.000000px;}
.x9b_c00017{left:460.950000px;}
.x54_c00017{left:464.850000px;}
.x70_c00017{left:467.550000px;}
.x5b_c00017{left:469.200000px;}
.x3b_c00017{left:471.450000px;}
.x73_c00017{left:474.450000px;}
.x76_c00017{left:476.850000px;}
.x95_c00017{left:477.900000px;}
.x7e_c00017{left:480.150000px;}
.xa_c00017{left:481.200000px;}
.x79_c00017{left:482.850000px;}
.x4e_c00017{left:486.750000px;}
.x86_c00017{left:489.150000px;}
.x40_c00017{left:492.900000px;}
.x65_c00017{left:496.500000px;}
.x1f_c00017{left:499.800000px;}
.x18_c00017{left:503.700000px;}
.x13e_c00017{left:511.200000px;}
.x13c_c00017{left:513.000000px;}
.x149_c00017{left:518.550000px;}
.x14d_c00017{left:525.750000px;}
.x137_c00017{left:527.400000px;}
.x133_c00017{left:530.700000px;}
.x140_c00017{left:531.750000px;}
.x11f_c00017{left:534.150000px;}
.x119_c00017{left:535.200000px;}
.x10f_c00017{left:536.400000px;}
.x104_c00017{left:537.900000px;}
.xf4_c00017{left:539.250000px;}
.xe9_c00017{left:540.750000px;}
.xd2_c00017{left:542.700000px;}
.xc2_c00017{left:545.400000px;}
.xb3_c00017{left:546.600000px;}
.xab_c00017{left:547.950000px;}
.x143_c00017{left:549.900000px;}
.x12f_c00017{left:551.850000px;}
.x11d_c00017{left:552.900000px;}
.x105_c00017{left:555.900000px;}
.x110_c00017{left:557.700000px;}
.x14c_c00017{left:558.750000px;}
.xd5_c00017{left:559.800000px;}
.xca_c00017{left:561.900000px;}
.xb9_c00017{left:563.700000px;}
.xd3_c00017{left:566.400000px;}
.xb4_c00017{left:568.950000px;}
.xea_c00017{left:571.050000px;}
.xef_c00017{left:574.800000px;}
.xf9_c00017{left:577.050000px;}
.x111_c00017{left:578.550000px;}
.x122_c00017{left:581.400000px;}
.xd6_c00017{left:583.500000px;}
.x144_c00017{left:586.650000px;}
.xcb_c00017{left:588.150000px;}
.xba_c00017{left:589.950000px;}
.xe4_c00017{left:592.200000px;}
.xac_c00017{left:594.750000px;}
.x12c_c00017{left:596.100000px;}
.x108_c00017{left:598.350000px;}
.x125_c00017{left:601.200000px;}
.x14a_c00017{left:603.150000px;}
.xf5_c00017{left:604.800000px;}
.xb5_c00017{left:607.500000px;}
.xe0_c00017{left:608.850000px;}
.xc3_c00017{left:610.950000px;}
.x120_c00017{left:612.300000px;}
.x13f_c00017{left:613.500000px;}
.x12d_c00017{left:615.150000px;}
.x127_c00017{left:617.700000px;}
.x146_c00017{left:619.050000px;}
.x106_c00017{left:621.450000px;}
.x109_c00017{left:623.250000px;}
.x138_c00017{left:624.750000px;}
.xd7_c00017{left:626.400000px;}
.xad_c00017{left:627.900000px;}
.xfe_c00017{left:629.250000px;}
.x147_c00017{left:630.300000px;}
.x112_c00017{left:631.500000px;}
.xeb_c00017{left:637.050000px;}
.x11e_c00017{left:638.550000px;}
.xe1_c00017{left:641.250000px;}
.xe5_c00017{left:643.650000px;}
.x10a_c00017{left:645.150000px;}
.xbb_c00017{left:647.850000px;}
.xdc_c00017{left:650.850000px;}
.xcc_c00017{left:652.650000px;}
.x130_c00017{left:653.850000px;}
.x141_c00017{left:654.900000px;}
.xae_c00017{left:657.750000px;}
.x113_c00017{left:659.550000px;}
.xd4_c00017{left:661.050000px;}
.x121_c00017{left:663.750000px;}
.x145_c00017{left:664.800000px;}
.x12a_c00017{left:666.000000px;}
.x14b_c00017{left:667.200000px;}
.xcd_c00017{left:669.150000px;}
.x11a_c00017{left:670.200000px;}
.xf6_c00017{left:671.850000px;}
.xf0_c00017{left:674.850000px;}
.xd8_c00017{left:676.800000px;}
.x148_c00017{left:679.500000px;}
.xaf_c00017{left:680.850000px;}
.xb6_c00017{left:684.900000px;}
.xfa_c00017{left:686.250000px;}
.x13d_c00017{left:687.750000px;}
.xc4_c00017{left:689.100000px;}
.xce_c00017{left:692.850000px;}
.xd9_c00017{left:695.850000px;}
.xbc_c00017{left:699.000000px;}
.xf1_c00017{left:701.850000px;}
.xfb_c00017{left:704.550000px;}
.xe6_c00017{left:706.350000px;}
.xb7_c00017{left:708.300000px;}
.xec_c00017{left:709.500000px;}
.xbd_c00017{left:710.850000px;}
.xdd_c00017{left:712.800000px;}
.x123_c00017{left:715.350000px;}
.xc5_c00017{left:716.400000px;}
.xe2_c00017{left:720.450000px;}
.xcf_c00017{left:723.450000px;}
.xb0_c00017{left:725.100000px;}
.xbe_c00017{left:727.050000px;}
.x14e_c00017{left:729.450000px;}
.xff_c00017{left:730.800000px;}
.x128_c00017{left:732.150000px;}
.xf7_c00017{left:733.650000px;}
.x132_c00017{left:736.350000px;}
.x142_c00017{left:738.150000px;}
.xda_c00017{left:740.100000px;}
.x139_c00017{left:741.450000px;}
.x100_c00017{left:744.450000px;}
.x129_c00017{left:745.800000px;}
.x12e_c00017{left:747.600000px;}
.x117_c00017{left:751.050000px;}
.xc6_c00017{left:752.400000px;}
.x114_c00017{left:754.950000px;}
.x134_c00017{left:756.300000px;}
.xbf_c00017{left:757.950000px;}
.xed_c00017{left:759.150000px;}
.xdb_c00017{left:760.650000px;}
.xf2_c00017{left:762.450000px;}
.x124_c00017{left:764.250000px;}
.xe7_c00017{left:765.300000px;}
.xb8_c00017{left:767.400000px;}
.xe3_c00017{left:769.350000px;}
.xd0_c00017{left:770.550000px;}
.x10c_c00017{left:771.900000px;}
.x107_c00017{left:773.400000px;}
.x13a_c00017{left:775.950000px;}
.xb1_c00017{left:777.000000px;}
.x101_c00017{left:778.650000px;}
.x118_c00017{left:780.450000px;}
.xc7_c00017{left:782.250000px;}
.xfc_c00017{left:784.800000px;}
.x11b_c00017{left:786.450000px;}
.x12b_c00017{left:790.500000px;}
.x10d_c00017{left:791.700000px;}
.x102_c00017{left:793.800000px;}
.xb2_c00017{left:795.300000px;}
.xf3_c00017{left:796.950000px;}
.xee_c00017{left:799.800000px;}
.xc8_c00017{left:802.350000px;}
.xf8_c00017{left:805.350000px;}
.x115_c00017{left:807.900000px;}
.x11c_c00017{left:809.850000px;}
.xd1_c00017{left:813.450000px;}
.x135_c00017{left:814.950000px;}
.xfd_c00017{left:817.200000px;}
.xde_c00017{left:818.250000px;}
.x131_c00017{left:823.500000px;}
.x126_c00017{left:825.450000px;}
.xdf_c00017{left:826.950000px;}
.x103_c00017{left:828.750000px;}
.xc0_c00017{left:833.850000px;}
.x10b_c00017{left:835.050000px;}
.x10e_c00017{left:838.500000px;}
.x136_c00017{left:839.550000px;}
.x116_c00017{left:840.600000px;}
.xe8_c00017{left:843.450000px;}
.xc9_c00017{left:849.150000px;}
.xc1_c00017{left:854.700000px;}
.x13b_c00017{left:858.750000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws8_c00017{word-spacing:-18.245614pt;}
.ws5_c00017{word-spacing:-10.341540pt;}
.wsa_c00017{word-spacing:-10.093190pt;}
.ws7_c00017{word-spacing:-8.654971pt;}
.ws6_c00017{word-spacing:-7.308642pt;}
.ws3_c00017{word-spacing:-0.138889pt;}
.wsb_c00017{word-spacing:0.000000pt;}
.ws1_c00017{word-spacing:3.685775pt;}
.ws2_c00017{word-spacing:6.521739pt;}
.ws0_c00017{word-spacing:9.629630pt;}
.ws4_c00017{word-spacing:17.040650pt;}
.ws9_c00017{word-spacing:22.000000pt;}
.fs6_c00017{font-size:26.666667pt;}
.fs3_c00017{font-size:37.333333pt;}
.fs5_c00017{font-size:42.666667pt;}
.fs4_c00017{font-size:48.000000pt;}
.fs2_c00017{font-size:53.333333pt;}
.fs1_c00017{font-size:58.666667pt;}
.fs7_c00017{font-size:64.000000pt;}
.fs0_c00017{font-size:96.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y36_c00017{bottom:3.200000pt;}
.y6e_c00017{bottom:176.533333pt;}
.y35_c00017{bottom:177.066667pt;}
.y6d_c00017{bottom:189.333333pt;}
.y34_c00017{bottom:190.133333pt;}
.y6c_c00017{bottom:202.400000pt;}
.y33_c00017{bottom:203.200000pt;}
.y6b_c00017{bottom:214.933333pt;}
.y32_c00017{bottom:215.333333pt;}
.y6a_c00017{bottom:227.466667pt;}
.y31_c00017{bottom:228.533333pt;}
.y69_c00017{bottom:240.000000pt;}
.y30_c00017{bottom:241.600000pt;}
.y68_c00017{bottom:252.800000pt;}
.y2f_c00017{bottom:253.733333pt;}
.y67_c00017{bottom:265.600000pt;}
.y2e_c00017{bottom:266.533333pt;}
.y66_c00017{bottom:278.400000pt;}
.y2d_c00017{bottom:283.200000pt;}
.y65_c00017{bottom:290.933333pt;}
.y2c_c00017{bottom:296.000000pt;}
.y64_c00017{bottom:303.733333pt;}
.y2b_c00017{bottom:308.800000pt;}
.y63_c00017{bottom:316.533333pt;}
.y2a_c00017{bottom:322.266667pt;}
.y62_c00017{bottom:329.600000pt;}
.y29_c00017{bottom:334.133333pt;}
.y61_c00017{bottom:342.133333pt;}
.y28_c00017{bottom:348.800000pt;}
.y60_c00017{bottom:354.266667pt;}
.y5f_c00017{bottom:369.333333pt;}
.y5e_c00017{bottom:380.133333pt;}
.y27_c00017{bottom:391.066667pt;}
.y26_c00017{bottom:411.066667pt;}
.y5c_c00017{bottom:415.333333pt;}
.y25_c00017{bottom:427.066667pt;}
.y5b_c00017{bottom:431.333333pt;}
.y24_c00017{bottom:443.066667pt;}
.y5a_c00017{bottom:447.333333pt;}
.y23_c00017{bottom:458.800000pt;}
.y59_c00017{bottom:463.333333pt;}
.y22_c00017{bottom:474.533333pt;}
.y58_c00017{bottom:479.333333pt;}
.y21_c00017{bottom:494.266667pt;}
.y57_c00017{bottom:495.333333pt;}
.y20_c00017{bottom:510.266667pt;}
.y56_c00017{bottom:511.066667pt;}
.y1f_c00017{bottom:526.000000pt;}
.y55_c00017{bottom:527.066667pt;}
.y1e_c00017{bottom:541.733333pt;}
.y54_c00017{bottom:542.666667pt;}
.y1d_c00017{bottom:557.466667pt;}
.y53_c00017{bottom:558.666667pt;}
.y1c_c00017{bottom:573.733333pt;}
.y52_c00017{bottom:574.400000pt;}
.y1b_c00017{bottom:589.466667pt;}
.y5d_c00017{bottom:589.733333pt;}
.y51_c00017{bottom:590.400000pt;}
.y1a_c00017{bottom:604.800000pt;}
.y50_c00017{bottom:605.866667pt;}
.y19_c00017{bottom:621.066667pt;}
.y4f_c00017{bottom:621.866667pt;}
.y18_c00017{bottom:636.800000pt;}
.y4e_c00017{bottom:637.600000pt;}
.y17_c00017{bottom:652.533333pt;}
.y4d_c00017{bottom:653.600000pt;}
.y4c_c00017{bottom:669.333333pt;}
.y16_c00017{bottom:672.266667pt;}
.y4b_c00017{bottom:685.066667pt;}
.y15_c00017{bottom:688.400000pt;}
.y4a_c00017{bottom:701.066667pt;}
.y14_c00017{bottom:704.400000pt;}
.y49_c00017{bottom:716.800000pt;}
.y13_c00017{bottom:720.133333pt;}
.y48_c00017{bottom:732.800000pt;}
.y12_c00017{bottom:736.133333pt;}
.y47_c00017{bottom:748.800000pt;}
.y11_c00017{bottom:751.866667pt;}
.y46_c00017{bottom:764.533333pt;}
.y10_c00017{bottom:767.600000pt;}
.y45_c00017{bottom:780.133333pt;}
.yf_c00017{bottom:783.333333pt;}
.y44_c00017{bottom:796.133333pt;}
.ye_c00017{bottom:803.200000pt;}
.y43_c00017{bottom:812.133333pt;}
.yd_c00017{bottom:819.466667pt;}
.y42_c00017{bottom:827.866667pt;}
.yc_c00017{bottom:835.200000pt;}
.y41_c00017{bottom:843.866667pt;}
.yb_c00017{bottom:850.933333pt;}
.y40_c00017{bottom:863.066667pt;}
.ya_c00017{bottom:866.266667pt;}
.y3f_c00017{bottom:879.333333pt;}
.y9_c00017{bottom:886.133333pt;}
.y3e_c00017{bottom:898.933333pt;}
.y8_c00017{bottom:901.733333pt;}
.y3d_c00017{bottom:915.200000pt;}
.y7_c00017{bottom:917.733333pt;}
.y6_c00017{bottom:933.466667pt;}
.y3c_c00017{bottom:934.133333pt;}
.y5_c00017{bottom:949.466667pt;}
.y3b_c00017{bottom:951.066667pt;}
.y4_c00017{bottom:965.066667pt;}
.y3a_c00017{bottom:967.066667pt;}
.y3_c00017{bottom:985.200000pt;}
.y39_c00017{bottom:986.933333pt;}
.y2_c00017{bottom:1000.933333pt;}
.y38_c00017{bottom:1002.266667pt;}
.y37_c00017{bottom:1012.800000pt;}
.y1_c00017{bottom:1024.933333pt;}
.h8_c00017{height:26.666667pt;}
.h5_c00017{height:37.333333pt;}
.h7_c00017{height:42.666667pt;}
.h6_c00017{height:48.000000pt;}
.h4_c00017{height:53.333333pt;}
.h3_c00017{height:58.666667pt;}
.h9_c00017{height:64.000000pt;}
.h2_c00017{height:96.000000pt;}
.h1_c00017{height:1128.000000pt;}
.h0_c00017{height:1128.319987pt;}
.w0_c00017{width:843.200032pt;}
.w1_c00017{width:843.333333pt;}
.x0_c00017{left:0.000000pt;}
.xa8_c00017{left:135.333333pt;}
.x9c_c00017{left:138.666667pt;}
.x7a_c00017{left:141.466667pt;}
.x77_c00017{left:143.200000pt;}
.x71_c00017{left:145.466667pt;}
.x5c_c00017{left:146.400000pt;}
.x4f_c00017{left:148.133333pt;}
.x45_c00017{left:149.200000pt;}
.x34_c00017{left:150.133333pt;}
.xa5_c00017{left:151.066667pt;}
.x9d_c00017{left:152.266667pt;}
.x96_c00017{left:153.333333pt;}
.x92_c00017{left:156.400000pt;}
.x8a_c00017{left:157.466667pt;}
.x7f_c00017{left:159.600000pt;}
.x6e_c00017{left:162.266667pt;}
.x49_c00017{left:164.133333pt;}
.x2d_c00017{left:165.733333pt;}
.x27_c00017{left:167.066667pt;}
.x12_c00017{left:168.000000pt;}
.x2_c00017{left:168.933333pt;}
.xa4_c00017{left:170.800000pt;}
.x66_c00017{left:172.533333pt;}
.x8b_c00017{left:173.733333pt;}
.x35_c00017{left:175.466667pt;}
.x46_c00017{left:177.733333pt;}
.x5d_c00017{left:179.733333pt;}
.x13_c00017{left:181.466667pt;}
.x82_c00017{left:182.933333pt;}
.xe_c00017{left:185.600000pt;}
.x55_c00017{left:187.333333pt;}
.x6c_c00017{left:188.533333pt;}
.xb_c00017{left:191.200000pt;}
.xa7_c00017{left:192.266667pt;}
.x83_c00017{left:194.133333pt;}
.xc_c00017{left:197.866667pt;}
.x74_c00017{left:199.333333pt;}
.x88_c00017{left:201.600000pt;}
.x6f_c00017{left:202.533333pt;}
.x36_c00017{left:204.933333pt;}
.x99_c00017{left:207.066667pt;}
.x50_c00017{left:208.666667pt;}
.xd_c00017{left:211.333333pt;}
.x61_c00017{left:212.266667pt;}
.x20_c00017{left:213.333333pt;}
.x19_c00017{left:215.333333pt;}
.x5e_c00017{left:216.800000pt;}
.x89_c00017{left:217.866667pt;}
.x62_c00017{left:220.933333pt;}
.x47_c00017{left:222.266667pt;}
.xa2_c00017{left:223.200000pt;}
.x3_c00017{left:224.666667pt;}
.xf_c00017{left:226.266667pt;}
.x41_c00017{left:227.600000pt;}
.x67_c00017{left:230.133333pt;}
.x5f_c00017{left:231.466667pt;}
.x75_c00017{left:233.200000pt;}
.x63_c00017{left:234.666667pt;}
.x8c_c00017{left:236.133333pt;}
.x3c_c00017{left:238.000000pt;}
.x28_c00017{left:239.066667pt;}
.x80_c00017{left:242.533333pt;}
.x56_c00017{left:244.533333pt;}
.x9e_c00017{left:248.000000pt;}
.x4_c00017{left:248.933333pt;}
.x72_c00017{left:250.666667pt;}
.x42_c00017{left:251.866667pt;}
.xa6_c00017{left:252.800000pt;}
.x87_c00017{left:254.400000pt;}
.x84_c00017{left:257.200000pt;}
.x57_c00017{left:258.933333pt;}
.x1a_c00017{left:261.066667pt;}
.x3d_c00017{left:262.666667pt;}
.x21_c00017{left:263.600000pt;}
.x97_c00017{left:264.933333pt;}
.x2e_c00017{left:266.000000pt;}
.x60_c00017{left:267.600000pt;}
.x14_c00017{left:269.733333pt;}
.x22_c00017{left:271.866667pt;}
.x8f_c00017{left:272.800000pt;}
.xaa_c00017{left:274.533333pt;}
.x37_c00017{left:276.266667pt;}
.x1b_c00017{left:281.200000pt;}
.x4a_c00017{left:282.266667pt;}
.x98_c00017{left:283.866667pt;}
.x2f_c00017{left:284.933333pt;}
.x93_c00017{left:286.666667pt;}
.x10_c00017{left:288.000000pt;}
.x58_c00017{left:290.266667pt;}
.x15_c00017{left:291.200000pt;}
.x68_c00017{left:292.533333pt;}
.x78_c00017{left:293.866667pt;}
.x7b_c00017{left:295.333333pt;}
.x29_c00017{left:296.933333pt;}
.x4b_c00017{left:298.000000pt;}
.x11_c00017{left:298.933333pt;}
.x69_c00017{left:300.800000pt;}
.x23_c00017{left:302.533333pt;}
.x94_c00017{left:304.133333pt;}
.x5_c00017{left:306.266667pt;}
.x64_c00017{left:308.533333pt;}
.x59_c00017{left:309.466667pt;}
.x38_c00017{left:311.200000pt;}
.xa3_c00017{left:312.400000pt;}
.x7c_c00017{left:314.533333pt;}
.x2a_c00017{left:315.866667pt;}
.x51_c00017{left:317.466667pt;}
.x6_c00017{left:318.400000pt;}
.x9a_c00017{left:320.133333pt;}
.x1c_c00017{left:321.466667pt;}
.x30_c00017{left:322.666667pt;}
.x9f_c00017{left:323.733333pt;}
.x3e_c00017{left:326.400000pt;}
.x6a_c00017{left:330.266667pt;}
.x2b_c00017{left:332.133333pt;}
.x81_c00017{left:333.333333pt;}
.x91_c00017{left:334.266667pt;}
.x1d_c00017{left:337.733333pt;}
.x31_c00017{left:339.600000pt;}
.x4c_c00017{left:340.533333pt;}
.x43_c00017{left:341.466667pt;}
.x16_c00017{left:342.400000pt;}
.x6d_c00017{left:343.733333pt;}
.x24_c00017{left:347.066667pt;}
.x3f_c00017{left:348.800000pt;}
.x5a_c00017{left:351.733333pt;}
.x32_c00017{left:352.666667pt;}
.x7d_c00017{left:356.400000pt;}
.xa1_c00017{left:357.333333pt;}
.x25_c00017{left:362.800000pt;}
.x52_c00017{left:364.800000pt;}
.x6b_c00017{left:365.733333pt;}
.x7_c00017{left:366.666667pt;}
.x39_c00017{left:367.866667pt;}
.x1_c00017{left:369.600000pt;}
.x85_c00017{left:370.533333pt;}
.x17_c00017{left:375.733333pt;}
.x2c_c00017{left:377.200000pt;}
.x48_c00017{left:378.800000pt;}
.x8d_c00017{left:380.133333pt;}
.xa0_c00017{left:383.200000pt;}
.x53_c00017{left:386.266667pt;}
.x8_c00017{left:387.733333pt;}
.x8e_c00017{left:389.466667pt;}
.xa9_c00017{left:391.200000pt;}
.x1e_c00017{left:392.800000pt;}
.x90_c00017{left:395.066667pt;}
.x33_c00017{left:396.800000pt;}
.x26_c00017{left:397.733333pt;}
.x44_c00017{left:399.733333pt;}
.x3a_c00017{left:402.400000pt;}
.x9_c00017{left:406.666667pt;}
.x4d_c00017{left:408.000000pt;}
.x9b_c00017{left:409.733333pt;}
.x54_c00017{left:413.200000pt;}
.x70_c00017{left:415.600000pt;}
.x5b_c00017{left:417.066667pt;}
.x3b_c00017{left:419.066667pt;}
.x73_c00017{left:421.733333pt;}
.x76_c00017{left:423.866667pt;}
.x95_c00017{left:424.800000pt;}
.x7e_c00017{left:426.800000pt;}
.xa_c00017{left:427.733333pt;}
.x79_c00017{left:429.200000pt;}
.x4e_c00017{left:432.666667pt;}
.x86_c00017{left:434.800000pt;}
.x40_c00017{left:438.133333pt;}
.x65_c00017{left:441.333333pt;}
.x1f_c00017{left:444.266667pt;}
.x18_c00017{left:447.733333pt;}
.x13e_c00017{left:454.400000pt;}
.x13c_c00017{left:456.000000pt;}
.x149_c00017{left:460.933333pt;}
.x14d_c00017{left:467.333333pt;}
.x137_c00017{left:468.800000pt;}
.x133_c00017{left:471.733333pt;}
.x140_c00017{left:472.666667pt;}
.x11f_c00017{left:474.800000pt;}
.x119_c00017{left:475.733333pt;}
.x10f_c00017{left:476.800000pt;}
.x104_c00017{left:478.133333pt;}
.xf4_c00017{left:479.333333pt;}
.xe9_c00017{left:480.666667pt;}
.xd2_c00017{left:482.400000pt;}
.xc2_c00017{left:484.800000pt;}
.xb3_c00017{left:485.866667pt;}
.xab_c00017{left:487.066667pt;}
.x143_c00017{left:488.800000pt;}
.x12f_c00017{left:490.533333pt;}
.x11d_c00017{left:491.466667pt;}
.x105_c00017{left:494.133333pt;}
.x110_c00017{left:495.733333pt;}
.x14c_c00017{left:496.666667pt;}
.xd5_c00017{left:497.600000pt;}
.xca_c00017{left:499.466667pt;}
.xb9_c00017{left:501.066667pt;}
.xd3_c00017{left:503.466667pt;}
.xb4_c00017{left:505.733333pt;}
.xea_c00017{left:507.600000pt;}
.xef_c00017{left:510.933333pt;}
.xf9_c00017{left:512.933333pt;}
.x111_c00017{left:514.266667pt;}
.x122_c00017{left:516.800000pt;}
.xd6_c00017{left:518.666667pt;}
.x144_c00017{left:521.466667pt;}
.xcb_c00017{left:522.800000pt;}
.xba_c00017{left:524.400000pt;}
.xe4_c00017{left:526.400000pt;}
.xac_c00017{left:528.666667pt;}
.x12c_c00017{left:529.866667pt;}
.x108_c00017{left:531.866667pt;}
.x125_c00017{left:534.400000pt;}
.x14a_c00017{left:536.133333pt;}
.xf5_c00017{left:537.600000pt;}
.xb5_c00017{left:540.000000pt;}
.xe0_c00017{left:541.200000pt;}
.xc3_c00017{left:543.066667pt;}
.x120_c00017{left:544.266667pt;}
.x13f_c00017{left:545.333333pt;}
.x12d_c00017{left:546.800000pt;}
.x127_c00017{left:549.066667pt;}
.x146_c00017{left:550.266667pt;}
.x106_c00017{left:552.400000pt;}
.x109_c00017{left:554.000000pt;}
.x138_c00017{left:555.333333pt;}
.xd7_c00017{left:556.800000pt;}
.xad_c00017{left:558.133333pt;}
.xfe_c00017{left:559.333333pt;}
.x147_c00017{left:560.266667pt;}
.x112_c00017{left:561.333333pt;}
.xeb_c00017{left:566.266667pt;}
.x11e_c00017{left:567.600000pt;}
.xe1_c00017{left:570.000000pt;}
.xe5_c00017{left:572.133333pt;}
.x10a_c00017{left:573.466667pt;}
.xbb_c00017{left:575.866667pt;}
.xdc_c00017{left:578.533333pt;}
.xcc_c00017{left:580.133333pt;}
.x130_c00017{left:581.200000pt;}
.x141_c00017{left:582.133333pt;}
.xae_c00017{left:584.666667pt;}
.x113_c00017{left:586.266667pt;}
.xd4_c00017{left:587.600000pt;}
.x121_c00017{left:590.000000pt;}
.x145_c00017{left:590.933333pt;}
.x12a_c00017{left:592.000000pt;}
.x14b_c00017{left:593.066667pt;}
.xcd_c00017{left:594.800000pt;}
.x11a_c00017{left:595.733333pt;}
.xf6_c00017{left:597.200000pt;}
.xf0_c00017{left:599.866667pt;}
.xd8_c00017{left:601.600000pt;}
.x148_c00017{left:604.000000pt;}
.xaf_c00017{left:605.200000pt;}
.xb6_c00017{left:608.800000pt;}
.xfa_c00017{left:610.000000pt;}
.x13d_c00017{left:611.333333pt;}
.xc4_c00017{left:612.533333pt;}
.xce_c00017{left:615.866667pt;}
.xd9_c00017{left:618.533333pt;}
.xbc_c00017{left:621.333333pt;}
.xf1_c00017{left:623.866667pt;}
.xfb_c00017{left:626.266667pt;}
.xe6_c00017{left:627.866667pt;}
.xb7_c00017{left:629.600000pt;}
.xec_c00017{left:630.666667pt;}
.xbd_c00017{left:631.866667pt;}
.xdd_c00017{left:633.600000pt;}
.x123_c00017{left:635.866667pt;}
.xc5_c00017{left:636.800000pt;}
.xe2_c00017{left:640.400000pt;}
.xcf_c00017{left:643.066667pt;}
.xb0_c00017{left:644.533333pt;}
.xbe_c00017{left:646.266667pt;}
.x14e_c00017{left:648.400000pt;}
.xff_c00017{left:649.600000pt;}
.x128_c00017{left:650.800000pt;}
.xf7_c00017{left:652.133333pt;}
.x132_c00017{left:654.533333pt;}
.x142_c00017{left:656.133333pt;}
.xda_c00017{left:657.866667pt;}
.x139_c00017{left:659.066667pt;}
.x100_c00017{left:661.733333pt;}
.x129_c00017{left:662.933333pt;}
.x12e_c00017{left:664.533333pt;}
.x117_c00017{left:667.600000pt;}
.xc6_c00017{left:668.800000pt;}
.x114_c00017{left:671.066667pt;}
.x134_c00017{left:672.266667pt;}
.xbf_c00017{left:673.733333pt;}
.xed_c00017{left:674.800000pt;}
.xdb_c00017{left:676.133333pt;}
.xf2_c00017{left:677.733333pt;}
.x124_c00017{left:679.333333pt;}
.xe7_c00017{left:680.266667pt;}
.xb8_c00017{left:682.133333pt;}
.xe3_c00017{left:683.866667pt;}
.xd0_c00017{left:684.933333pt;}
.x10c_c00017{left:686.133333pt;}
.x107_c00017{left:687.466667pt;}
.x13a_c00017{left:689.733333pt;}
.xb1_c00017{left:690.666667pt;}
.x101_c00017{left:692.133333pt;}
.x118_c00017{left:693.733333pt;}
.xc7_c00017{left:695.333333pt;}
.xfc_c00017{left:697.600000pt;}
.x11b_c00017{left:699.066667pt;}
.x12b_c00017{left:702.666667pt;}
.x10d_c00017{left:703.733333pt;}
.x102_c00017{left:705.600000pt;}
.xb2_c00017{left:706.933333pt;}
.xf3_c00017{left:708.400000pt;}
.xee_c00017{left:710.933333pt;}
.xc8_c00017{left:713.200000pt;}
.xf8_c00017{left:715.866667pt;}
.x115_c00017{left:718.133333pt;}
.x11c_c00017{left:719.866667pt;}
.xd1_c00017{left:723.066667pt;}
.x135_c00017{left:724.400000pt;}
.xfd_c00017{left:726.400000pt;}
.xde_c00017{left:727.333333pt;}
.x131_c00017{left:732.000000pt;}
.x126_c00017{left:733.733333pt;}
.xdf_c00017{left:735.066667pt;}
.x103_c00017{left:736.666667pt;}
.xc0_c00017{left:741.200000pt;}
.x10b_c00017{left:742.266667pt;}
.x10e_c00017{left:745.333333pt;}
.x136_c00017{left:746.266667pt;}
.x116_c00017{left:747.200000pt;}
.xe8_c00017{left:749.733333pt;}
.xc9_c00017{left:754.800000pt;}
.xc1_c00017{left:759.733333pt;}
.x13b_c00017{left:763.333333pt;}
}





/* 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_c00018 {
    display:none;
  }
  .loading-indicator_c00018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00018 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_c00018 { 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_c00018" -> "#page-container .classname_c00018")
 */
.pf_c00018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00018 { /* 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_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00018 { /* 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_c00018 { /* 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_c00018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00018 {overflow:visible;}
  }
}
.c_c00018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00018 { /* 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_c00018:after { /* webkit #35443 */
  content: '';
}
.t_c00018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00018 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 */
}
.__c00018 { /* 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_c00018 { /* info for Javascript */
  display:none;
}
.l_c00018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00018: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_c00018 {
    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_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00018.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_c00018 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00018;src:url('chunks/assets/font_fa2bbdc3a2871d777158af48.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.000000;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;}
.mba_c00018{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.mca_c00018{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mda_c00018{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mad_c00018{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00018{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00018{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00018{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mec_c00018{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m89_c00018{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00018{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00018{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m78_c00018{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00018{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00018{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mae_c00018{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m72_c00018{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5_c00018{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me_c00018{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);}
.m77_c00018{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md6_c00018{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.me5_c00018{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m83_c00018{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md7_c00018{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00018{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m67_c00018{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md3_c00018{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md2_c00018{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.maf_c00018{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00018{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00018{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00018{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m10_c00018{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00018{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00018{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00018{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m44_c00018{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00018{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me1_c00018{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m82_c00018{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m49_c00018{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00018{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00018{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00018{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00018{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00018{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m12_c00018{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00018{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00018{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m30_c00018{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m26_c00018{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me4_c00018{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m87_c00018{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m14_c00018{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m66_c00018{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00018{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00018{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m24_c00018{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00018{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m51_c00018{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8_c00018{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m53_c00018{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m27_c00018{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00018{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m9_c00018{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m21_c00018{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m41_c00018{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00018{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00018{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.md_c00018{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00018{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00018{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.me3_c00018{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00018{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m62_c00018{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me8_c00018{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00018{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00018{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m52_c00018{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.me7_c00018{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m31_c00018{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00018{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m47_c00018{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00018{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00018{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m19_c00018{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00018{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00018{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m69_c00018{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00018{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m25_c00018{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m70_c00018{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m91_c00018{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m45_c00018{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m38_c00018{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m13_c00018{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00018{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m93_c00018{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m88_c00018{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mf_c00018{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00018{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00018{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.meb_c00018{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m57_c00018{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00018{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00018{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00018{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m76_c00018{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m16_c00018{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mab_c00018{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00018{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m11_c00018{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mff_c00018{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00018{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00018{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m35_c00018{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00018{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m68_c00018{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m17_c00018{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00018{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00018{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00018{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00018{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m40_c00018{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m54_c00018{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m99_c00018{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.md0_c00018{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m28_c00018{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m18_c00018{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00018{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00018{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00018{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m22_c00018{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md8_c00018{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00018{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m36_c00018{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m55_c00018{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me9_c00018{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.md1_c00018{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m20_c00018{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00018{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m48_c00018{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00018{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m60_c00018{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m59_c00018{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mde_c00018{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m63_c00018{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00018{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00018{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m65_c00018{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m81_c00018{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m37_c00018{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m92_c00018{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mce_c00018{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00018{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m86_c00018{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m58_c00018{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00018{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7_c00018{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4_c00018{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m50_c00018{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m32_c00018{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m97_c00018{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00018{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00018{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m23_c00018{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m100_c00018{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me2_c00018{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc_c00018{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m39_c00018{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00018{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m46_c00018{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m15_c00018{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00018{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma_c00018{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00018{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m56_c00018{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00018{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me0_c00018{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m80_c00018{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.maa_c00018{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mb_c00018{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me6_c00018{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m84_c00018{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00018{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m90_c00018{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00018{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00018{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00018{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00018{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00018{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3_c00018{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m34_c00018{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00018{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00018{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00018{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m94_c00018{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m43_c00018{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00018{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md4_c00018{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00018{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00018{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m73_c00018{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m33_c00018{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00018{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00018{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00018{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00018{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m29_c00018{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00018{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m95_c00018{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00018{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m79_c00018{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m42_c00018{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00018{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.med_c00018{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00018{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m71_c00018{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00018{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mef_c00018{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00018{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m75_c00018{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00018{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00018{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00018{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.md5_c00018{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00018{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m64_c00018{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m74_c00018{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mee_c00018{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mac_c00018{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m85_c00018{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mea_c00018{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00018{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00018{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00018{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m61_c00018{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00018{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m96_c00018{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00018{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00018{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00018{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00018{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00018{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6_c00018{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md9_c00018{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00018{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00018{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00018{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m98_c00018{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00018{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00018{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00018{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m101_c00018{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00018{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00018{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.m2_c00018{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.m0_c00018{transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls0_c00018{letter-spacing:0.000000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{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__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00018{word-spacing:-9.433297px;}
.ws3_c00018{word-spacing:-8.333333px;}
.ws5_c00018{word-spacing:0.000000px;}
.ws2_c00018{word-spacing:6.773270px;}
.ws1_c00018{word-spacing:8.970588px;}
.ws0_c00018{word-spacing:10.581423px;}
.fc0_c00018{color:transparent;}
.fs2_c00018{font-size:30.000000px;}
.fs7_c00018{font-size:48.000000px;}
.fs6_c00018{font-size:54.000000px;}
.fs5_c00018{font-size:60.000000px;}
.fs3_c00018{font-size:66.000000px;}
.fs4_c00018{font-size:72.000000px;}
.fs0_c00018{font-size:78.000000px;}
.fs1_c00018{font-size:84.000000px;}
.fs8_c00018{font-size:126.000000px;}
.y0_c00018{bottom:0.000000px;}
.y74_c00018{bottom:173.550000px;}
.y39_c00018{bottom:187.950000px;}
.y73_c00018{bottom:190.350000px;}
.y38_c00018{bottom:202.650000px;}
.y72_c00018{bottom:204.450000px;}
.y37_c00018{bottom:216.000000px;}
.y71_c00018{bottom:219.600000px;}
.y36_c00018{bottom:231.450000px;}
.y70_c00018{bottom:233.400000px;}
.y35_c00018{bottom:245.100000px;}
.y6f_c00018{bottom:248.100000px;}
.y34_c00018{bottom:259.650000px;}
.y6e_c00018{bottom:262.350000px;}
.y33_c00018{bottom:274.350000px;}
.y6d_c00018{bottom:276.450000px;}
.y32_c00018{bottom:289.500000px;}
.y6c_c00018{bottom:290.550000px;}
.y31_c00018{bottom:302.100000px;}
.y6b_c00018{bottom:304.950000px;}
.y30_c00018{bottom:316.500000px;}
.y6a_c00018{bottom:319.350000px;}
.y2f_c00018{bottom:331.200000px;}
.y69_c00018{bottom:334.050000px;}
.y2e_c00018{bottom:344.850000px;}
.y68_c00018{bottom:348.450000px;}
.y2d_c00018{bottom:358.650000px;}
.y67_c00018{bottom:362.550000px;}
.y2c_c00018{bottom:374.100000px;}
.y66_c00018{bottom:376.950000px;}
.y2b_c00018{bottom:388.800000px;}
.y65_c00018{bottom:390.600000px;}
.y2a_c00018{bottom:402.150000px;}
.y64_c00018{bottom:405.750000px;}
.y63_c00018{bottom:419.700000px;}
.y62_c00018{bottom:433.050000px;}
.y29_c00018{bottom:437.700000px;}
.y61_c00018{bottom:448.200000px;}
.y28_c00018{bottom:456.450000px;}
.y60_c00018{bottom:462.300000px;}
.y27_c00018{bottom:473.700000px;}
.y5f_c00018{bottom:477.000000px;}
.y26_c00018{bottom:490.650000px;}
.y5e_c00018{bottom:491.400000px;}
.y5d_c00018{bottom:505.800000px;}
.y25_c00018{bottom:509.700000px;}
.y5c_c00018{bottom:519.450000px;}
.y24_c00018{bottom:531.450000px;}
.y5b_c00018{bottom:534.600000px;}
.y5a_c00018{bottom:547.950000px;}
.y23_c00018{bottom:553.050000px;}
.y22_c00018{bottom:574.950000px;}
.y59_c00018{bottom:587.250000px;}
.y21_c00018{bottom:597.150000px;}
.y58_c00018{bottom:604.500000px;}
.y20_c00018{bottom:614.100000px;}
.y57_c00018{bottom:626.100000px;}
.y1f_c00018{bottom:632.550000px;}
.y56_c00018{bottom:644.400000px;}
.y1e_c00018{bottom:649.650000px;}
.y55_c00018{bottom:662.100000px;}
.y1d_c00018{bottom:668.400000px;}
.y54_c00018{bottom:684.450000px;}
.y1c_c00018{bottom:686.100000px;}
.y53_c00018{bottom:702.150000px;}
.y1b_c00018{bottom:704.100000px;}
.y1a_c00018{bottom:721.500000px;}
.y52_c00018{bottom:723.750000px;}
.y19_c00018{bottom:739.200000px;}
.y51_c00018{bottom:746.100000px;}
.y18_c00018{bottom:756.900000px;}
.y50_c00018{bottom:766.950000px;}
.y17_c00018{bottom:774.900000px;}
.y4f_c00018{bottom:785.700000px;}
.y16_c00018{bottom:792.600000px;}
.y4e_c00018{bottom:807.300000px;}
.y15_c00018{bottom:810.300000px;}
.y4d_c00018{bottom:825.600000px;}
.y14_c00018{bottom:828.300000px;}
.y13_c00018{bottom:846.000000px;}
.y4c_c00018{bottom:847.200000px;}
.y4b_c00018{bottom:865.200000px;}
.y12_c00018{bottom:867.600000px;}
.y11_c00018{bottom:885.600000px;}
.y4a_c00018{bottom:886.050000px;}
.y10_c00018{bottom:902.850000px;}
.y49_c00018{bottom:904.800000px;}
.yf_c00018{bottom:920.850000px;}
.y48_c00018{bottom:925.650000px;}
.ye_c00018{bottom:938.550000px;}
.y47_c00018{bottom:943.950000px;}
.yd_c00018{bottom:956.250000px;}
.y46_c00018{bottom:970.200000px;}
.yc_c00018{bottom:974.250000px;}
.y45_c00018{bottom:988.200000px;}
.yb_c00018{bottom:991.950000px;}
.ya_c00018{bottom:1009.950000px;}
.y44_c00018{bottom:1010.250000px;}
.y43_c00018{bottom:1028.250000px;}
.y9_c00018{bottom:1037.700000px;}
.y42_c00018{bottom:1045.200000px;}
.y8_c00018{bottom:1045.650000px;}
.y7_c00018{bottom:1063.350000px;}
.y41_c00018{bottom:1063.500000px;}
.y6_c00018{bottom:1081.050000px;}
.y40_c00018{bottom:1081.200000px;}
.y3f_c00018{bottom:1098.450000px;}
.y5_c00018{bottom:1099.050000px;}
.y3e_c00018{bottom:1116.750000px;}
.y4_c00018{bottom:1126.800000px;}
.y1_c00018{bottom:1143.750000px;}
.y2_c00018{bottom:1144.050000px;}
.y3d_c00018{bottom:1264.050000px;}
.y3a_c00018{bottom:1264.350000px;}
.y3b_c00018{bottom:1265.400000px;}
.y3c_c00018{bottom:1266.150000px;}
.y3_c00018{bottom:1266.900000px;}
.h4_c00018{height:30.000000px;}
.h9_c00018{height:48.000000px;}
.h8_c00018{height:54.000000px;}
.h7_c00018{height:60.000000px;}
.h5_c00018{height:66.000000px;}
.h6_c00018{height:72.000000px;}
.h2_c00018{height:78.000000px;}
.h3_c00018{height:84.000000px;}
.ha_c00018{height:126.000000px;}
.h0_c00018{height:1268.640015px;}
.h1_c00018{height:1269.000000px;}
.w0_c00018{width:948.600036px;}
.w1_c00018{width:948.750000px;}
.x0_c00018{left:0.000000px;}
.x67_c00018{left:83.400000px;}
.x69_c00018{left:84.750000px;}
.xf_c00018{left:85.800000px;}
.x6_c00018{left:90.000000px;}
.x4a_c00018{left:96.900000px;}
.x98_c00018{left:100.500000px;}
.x6d_c00018{left:101.550000px;}
.xa1_c00018{left:102.600000px;}
.x7_c00018{left:103.650000px;}
.x71_c00018{left:107.100000px;}
.x10_c00018{left:108.450000px;}
.x5c_c00018{left:109.500000px;}
.x57_c00018{left:111.300000px;}
.x88_c00018{left:113.400000px;}
.x18_c00018{left:116.550000px;}
.x78_c00018{left:119.400000px;}
.x63_c00018{left:122.100000px;}
.x99_c00018{left:124.200000px;}
.x1d_c00018{left:125.700000px;}
.x8_c00018{left:128.100000px;}
.x4b_c00018{left:129.300000px;}
.x5d_c00018{left:130.800000px;}
.x8c_c00018{left:132.000000px;}
.xa3_c00018{left:134.550000px;}
.xa4_c00018{left:135.750000px;}
.x52_c00018{left:137.100000px;}
.x19_c00018{left:139.950000px;}
.x48_c00018{left:141.450000px;}
.x2c_c00018{left:143.100000px;}
.x11_c00018{left:144.150000px;}
.x61_c00018{left:145.500000px;}
.x3b_c00018{left:146.550000px;}
.x8d_c00018{left:148.950000px;}
.x9c_c00018{left:151.350000px;}
.x44_c00018{left:154.200000px;}
.x64_c00018{left:156.600000px;}
.x9a_c00018{left:158.400000px;}
.x6a_c00018{left:159.600000px;}
.x6e_c00018{left:161.250000px;}
.x9d_c00018{left:162.600000px;}
.x3e_c00018{left:165.000000px;}
.x2d_c00018{left:166.800000px;}
.x12_c00018{left:168.300000px;}
.x8e_c00018{left:171.600000px;}
.x4c_c00018{left:173.250000px;}
.x45_c00018{left:174.300000px;}
.x53_c00018{left:175.650000px;}
.x36_c00018{left:176.850000px;}
.x50_c00018{left:179.400000px;}
.x23_c00018{left:181.500000px;}
.x9e_c00018{left:183.450000px;}
.x1a_c00018{left:185.250000px;}
.x72_c00018{left:187.350000px;}
.x49_c00018{left:189.000000px;}
.x9_c00018{left:190.050000px;}
.x37_c00018{left:192.750000px;}
.x30_c00018{left:194.850000px;}
.x28_c00018{left:196.350000px;}
.x3f_c00018{left:199.200000px;}
.x51_c00018{left:200.700000px;}
.x1e_c00018{left:203.850000px;}
.x97_c00018{left:206.550000px;}
.x81_c00018{left:211.650000px;}
.x2e_c00018{left:212.850000px;}
.x1b_c00018{left:214.350000px;}
.x31_c00018{left:217.200000px;}
.x9b_c00018{left:218.250000px;}
.x40_c00018{left:219.750000px;}
.x24_c00018{left:221.400000px;}
.x7b_c00018{left:223.200000px;}
.x7d_c00018{left:224.400000px;}
.x7a_c00018{left:227.100000px;}
.x3c_c00018{left:229.050000px;}
.x38_c00018{left:230.850000px;}
.x9f_c00018{left:232.350000px;}
.x13_c00018{left:233.850000px;}
.x46_c00018{left:235.800000px;}
.x1f_c00018{left:237.000000px;}
.x86_c00018{left:238.650000px;}
.x39_c00018{left:240.150000px;}
.x73_c00018{left:241.350000px;}
.x76_c00018{left:242.700000px;}
.x4d_c00018{left:246.000000px;}
.x62_c00018{left:247.350000px;}
.x5e_c00018{left:248.400000px;}
.x32_c00018{left:249.600000px;}
.x92_c00018{left:251.250000px;}
.x14_c00018{left:252.600000px;}
.xa_c00018{left:254.850000px;}
.x6f_c00018{left:255.900000px;}
.x2f_c00018{left:257.100000px;}
.x59_c00018{left:260.550000px;}
.x25_c00018{left:262.050000px;}
.x82_c00018{left:264.450000px;}
.x29_c00018{left:266.550000px;}
.xa0_c00018{left:268.350000px;}
.x4e_c00018{left:270.450000px;}
.x6b_c00018{left:272.250000px;}
.x20_c00018{left:274.500000px;}
.x7c_c00018{left:275.700000px;}
.xb_c00018{left:277.200000px;}
.x54_c00018{left:280.350000px;}
.x93_c00018{left:281.850000px;}
.x41_c00018{left:283.800000px;}
.x2a_c00018{left:285.600000px;}
.x3a_c00018{left:289.500000px;}
.x4f_c00018{left:291.000000px;}
.x6c_c00018{left:294.150000px;}
.x5a_c00018{left:296.850000px;}
.x89_c00018{left:298.950000px;}
.x33_c00018{left:300.300000px;}
.x55_c00018{left:304.500000px;}
.x79_c00018{left:305.700000px;}
.x42_c00018{left:306.900000px;}
.x74_c00018{left:309.450000px;}
.x85_c00018{left:311.100000px;}
.x5f_c00018{left:312.900000px;}
.x15_c00018{left:314.550000px;}
.x65_c00018{left:315.600000px;}
.x21_c00018{left:321.000000px;}
.x34_c00018{left:322.200000px;}
.x47_c00018{left:324.300000px;}
.xc_c00018{left:326.100000px;}
.x16_c00018{left:328.950000px;}
.x8f_c00018{left:330.450000px;}
.x1_c00018{left:332.250000px;}
.x7e_c00018{left:335.250000px;}
.x8a_c00018{left:338.550000px;}
.xa2_c00018{left:340.050000px;}
.x77_c00018{left:341.550000px;}
.x66_c00018{left:342.900000px;}
.xd_c00018{left:345.900000px;}
.x3_c00018{left:347.400000px;}
.x3d_c00018{left:348.600000px;}
.x83_c00018{left:353.550000px;}
.x2b_c00018{left:357.600000px;}
.x94_c00018{left:358.800000px;}
.x17_c00018{left:359.850000px;}
.x26_c00018{left:361.050000px;}
.x58_c00018{left:363.300000px;}
.x43_c00018{left:366.600000px;}
.x7f_c00018{left:367.950000px;}
.x75_c00018{left:370.950000px;}
.x95_c00018{left:376.050000px;}
.x80_c00018{left:377.700000px;}
.x56_c00018{left:379.050000px;}
.x5b_c00018{left:380.250000px;}
.x35_c00018{left:383.100000px;}
.x87_c00018{left:385.950000px;}
.x68_c00018{left:387.900000px;}
.x60_c00018{left:390.000000px;}
.x27_c00018{left:391.650000px;}
.x1c_c00018{left:393.150000px;}
.x4_c00018{left:395.700000px;}
.x90_c00018{left:397.350000px;}
.x96_c00018{left:400.200000px;}
.x22_c00018{left:401.250000px;}
.x70_c00018{left:404.550000px;}
.x5_c00018{left:406.200000px;}
.x84_c00018{left:409.350000px;}
.x8b_c00018{left:411.300000px;}
.x91_c00018{left:416.400000px;}
.xe_c00018{left:418.500000px;}
.xa5_c00018{left:423.750000px;}
.x103_c00018{left:438.150000px;}
.x104_c00018{left:441.000000px;}
.xbc_c00018{left:443.850000px;}
.x10f_c00018{left:444.900000px;}
.x128_c00018{left:446.250000px;}
.x134_c00018{left:447.300000px;}
.xfc_c00018{left:458.700000px;}
.xff_c00018{left:459.750000px;}
.xb4_c00018{left:461.400000px;}
.x11d_c00018{left:465.750000px;}
.x12f_c00018{left:468.750000px;}
.x130_c00018{left:475.650000px;}
.x105_c00018{left:477.750000px;}
.xbe_c00018{left:478.800000px;}
.xeb_c00018{left:479.850000px;}
.x110_c00018{left:481.200000px;}
.xfd_c00018{left:482.400000px;}
.x100_c00018{left:484.200000px;}
.x106_c00018{left:488.100000px;}
.xa6_c00018{left:489.300000px;}
.x119_c00018{left:491.400000px;}
.xdc_c00018{left:492.600000px;}
.xe4_c00018{left:495.600000px;}
.xd1_c00018{left:496.800000px;}
.xad_c00018{left:497.850000px;}
.x111_c00018{left:500.700000px;}
.xa7_c00018{left:503.400000px;}
.x124_c00018{left:505.950000px;}
.xd6_c00018{left:507.300000px;}
.x136_c00018{left:509.100000px;}
.xc8_c00018{left:510.150000px;}
.xb5_c00018{left:513.300000px;}
.xb0_c00018{left:515.100000px;}
.xa8_c00018{left:516.750000px;}
.xf8_c00018{left:518.250000px;}
.xae_c00018{left:520.950000px;}
.xbf_c00018{left:525.900000px;}
.xaf_c00018{left:529.200000px;}
.xd9_c00018{left:531.900000px;}
.xce_c00018{left:534.600000px;}
.x135_c00018{left:536.250000px;}
.x10b_c00018{left:537.450000px;}
.xe5_c00018{left:539.850000px;}
.xf5_c00018{left:542.700000px;}
.xec_c00018{left:547.050000px;}
.xb6_c00018{left:548.550000px;}
.x109_c00018{left:550.650000px;}
.x11e_c00018{left:552.900000px;}
.xb1_c00018{left:555.450000px;}
.x112_c00018{left:557.250000px;}
.xa9_c00018{left:559.800000px;}
.xc0_c00018{left:561.150000px;}
.x12a_c00018{left:564.450000px;}
.x137_c00018{left:566.700000px;}
.x129_c00018{left:568.650000px;}
.xe7_c00018{left:569.700000px;}
.x11f_c00018{left:572.700000px;}
.xc9_c00018{left:574.200000px;}
.xcf_c00018{left:575.250000px;}
.xd2_c00018{left:578.550000px;}
.xda_c00018{left:580.050000px;}
.xaa_c00018{left:581.100000px;}
.x131_c00018{left:582.600000px;}
.xef_c00018{left:584.550000px;}
.xed_c00018{left:585.600000px;}
.xd7_c00018{left:588.750000px;}
.xdd_c00018{left:589.800000px;}
.x12b_c00018{left:593.550000px;}
.x101_c00018{left:594.750000px;}
.x120_c00018{left:596.400000px;}
.xfe_c00018{left:598.800000px;}
.x113_c00018{left:601.500000px;}
.xc1_c00018{left:604.050000px;}
.x121_c00018{left:605.400000px;}
.xb7_c00018{left:607.650000px;}
.xe1_c00018{left:609.750000px;}
.x114_c00018{left:611.250000px;}
.x10c_c00018{left:613.050000px;}
.xb2_c00018{left:616.200000px;}
.x11a_c00018{left:617.700000px;}
.x127_c00018{left:619.500000px;}
.xf2_c00018{left:620.550000px;}
.x10d_c00018{left:625.350000px;}
.xca_c00018{left:626.400000px;}
.x117_c00018{left:627.600000px;}
.x138_c00018{left:631.800000px;}
.xd0_c00018{left:633.600000px;}
.xe6_c00018{left:635.250000px;}
.xb8_c00018{left:637.500000px;}
.x139_c00018{left:640.500000px;}
.xf9_c00018{left:642.450000px;}
.x132_c00018{left:645.600000px;}
.x125_c00018{left:647.400000px;}
.xab_c00018{left:648.750000px;}
.x126_c00018{left:650.550000px;}
.xee_c00018{left:654.000000px;}
.xc2_c00018{left:656.550000px;}
.x115_c00018{left:657.750000px;}
.xc5_c00018{left:660.000000px;}
.xe8_c00018{left:661.200000px;}
.xfa_c00018{left:662.550000px;}
.xf3_c00018{left:664.800000px;}
.xd3_c00018{left:666.450000px;}
.xf0_c00018{left:669.150000px;}
.xf6_c00018{left:674.100000px;}
.xb9_c00018{left:677.400000px;}
.xc3_c00018{left:680.250000px;}
.xc6_c00018{left:681.900000px;}
.x10e_c00018{left:684.150000px;}
.xb3_c00018{left:685.650000px;}
.xf1_c00018{left:687.900000px;}
.xc7_c00018{left:691.200000px;}
.xd8_c00018{left:693.900000px;}
.xe9_c00018{left:695.400000px;}
.x12c_c00018{left:697.050000px;}
.xdb_c00018{left:699.300000px;}
.xcb_c00018{left:701.250000px;}
.x13a_c00018{left:703.950000px;}
.xe2_c00018{left:705.150000px;}
.xde_c00018{left:706.650000px;}
.x118_c00018{left:707.850000px;}
.xf7_c00018{left:709.050000px;}
.x11b_c00018{left:710.550000px;}
.x133_c00018{left:712.200000px;}
.xac_c00018{left:715.650000px;}
.xd4_c00018{left:718.650000px;}
.xcc_c00018{left:721.050000px;}
.xdf_c00018{left:723.600000px;}
.xc4_c00018{left:725.550000px;}
.xe3_c00018{left:727.800000px;}
.x122_c00018{left:732.150000px;}
.x107_c00018{left:733.200000px;}
.x12d_c00018{left:738.450000px;}
.xfb_c00018{left:739.650000px;}
.xd5_c00018{left:741.300000px;}
.xea_c00018{left:742.950000px;}
.xe0_c00018{left:747.300000px;}
.xba_c00018{left:748.350000px;}
.x108_c00018{left:749.400000px;}
.x11c_c00018{left:751.950000px;}
.x10a_c00018{left:753.600000px;}
.x102_c00018{left:755.700000px;}
.xf4_c00018{left:757.200000px;}
.xcd_c00018{left:759.900000px;}
.xbb_c00018{left:761.700000px;}
.xbd_c00018{left:764.250000px;}
.x116_c00018{left:766.500000px;}
.x2_c00018{left:772.950000px;}
.x123_c00018{left:774.600000px;}
.x12e_c00018{left:778.050000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws4_c00018{word-spacing:-8.385153pt;}
.ws3_c00018{word-spacing:-7.407407pt;}
.ws5_c00018{word-spacing:0.000000pt;}
.ws2_c00018{word-spacing:6.020684pt;}
.ws1_c00018{word-spacing:7.973856pt;}
.ws0_c00018{word-spacing:9.405710pt;}
.fs2_c00018{font-size:26.666667pt;}
.fs7_c00018{font-size:42.666667pt;}
.fs6_c00018{font-size:48.000000pt;}
.fs5_c00018{font-size:53.333333pt;}
.fs3_c00018{font-size:58.666667pt;}
.fs4_c00018{font-size:64.000000pt;}
.fs0_c00018{font-size:69.333333pt;}
.fs1_c00018{font-size:74.666667pt;}
.fs8_c00018{font-size:112.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y74_c00018{bottom:154.266667pt;}
.y39_c00018{bottom:167.066667pt;}
.y73_c00018{bottom:169.200000pt;}
.y38_c00018{bottom:180.133333pt;}
.y72_c00018{bottom:181.733333pt;}
.y37_c00018{bottom:192.000000pt;}
.y71_c00018{bottom:195.200000pt;}
.y36_c00018{bottom:205.733333pt;}
.y70_c00018{bottom:207.466667pt;}
.y35_c00018{bottom:217.866667pt;}
.y6f_c00018{bottom:220.533333pt;}
.y34_c00018{bottom:230.800000pt;}
.y6e_c00018{bottom:233.200000pt;}
.y33_c00018{bottom:243.866667pt;}
.y6d_c00018{bottom:245.733333pt;}
.y32_c00018{bottom:257.333333pt;}
.y6c_c00018{bottom:258.266667pt;}
.y31_c00018{bottom:268.533333pt;}
.y6b_c00018{bottom:271.066667pt;}
.y30_c00018{bottom:281.333333pt;}
.y6a_c00018{bottom:283.866667pt;}
.y2f_c00018{bottom:294.400000pt;}
.y69_c00018{bottom:296.933333pt;}
.y2e_c00018{bottom:306.533333pt;}
.y68_c00018{bottom:309.733333pt;}
.y2d_c00018{bottom:318.800000pt;}
.y67_c00018{bottom:322.266667pt;}
.y2c_c00018{bottom:332.533333pt;}
.y66_c00018{bottom:335.066667pt;}
.y2b_c00018{bottom:345.600000pt;}
.y65_c00018{bottom:347.200000pt;}
.y2a_c00018{bottom:357.466667pt;}
.y64_c00018{bottom:360.666667pt;}
.y63_c00018{bottom:373.066667pt;}
.y62_c00018{bottom:384.933333pt;}
.y29_c00018{bottom:389.066667pt;}
.y61_c00018{bottom:398.400000pt;}
.y28_c00018{bottom:405.733333pt;}
.y60_c00018{bottom:410.933333pt;}
.y27_c00018{bottom:421.066667pt;}
.y5f_c00018{bottom:424.000000pt;}
.y26_c00018{bottom:436.133333pt;}
.y5e_c00018{bottom:436.800000pt;}
.y5d_c00018{bottom:449.600000pt;}
.y25_c00018{bottom:453.066667pt;}
.y5c_c00018{bottom:461.733333pt;}
.y24_c00018{bottom:472.400000pt;}
.y5b_c00018{bottom:475.200000pt;}
.y5a_c00018{bottom:487.066667pt;}
.y23_c00018{bottom:491.600000pt;}
.y22_c00018{bottom:511.066667pt;}
.y59_c00018{bottom:522.000000pt;}
.y21_c00018{bottom:530.800000pt;}
.y58_c00018{bottom:537.333333pt;}
.y20_c00018{bottom:545.866667pt;}
.y57_c00018{bottom:556.533333pt;}
.y1f_c00018{bottom:562.266667pt;}
.y56_c00018{bottom:572.800000pt;}
.y1e_c00018{bottom:577.466667pt;}
.y55_c00018{bottom:588.533333pt;}
.y1d_c00018{bottom:594.133333pt;}
.y54_c00018{bottom:608.400000pt;}
.y1c_c00018{bottom:609.866667pt;}
.y53_c00018{bottom:624.133333pt;}
.y1b_c00018{bottom:625.866667pt;}
.y1a_c00018{bottom:641.333333pt;}
.y52_c00018{bottom:643.333333pt;}
.y19_c00018{bottom:657.066667pt;}
.y51_c00018{bottom:663.200000pt;}
.y18_c00018{bottom:672.800000pt;}
.y50_c00018{bottom:681.733333pt;}
.y17_c00018{bottom:688.800000pt;}
.y4f_c00018{bottom:698.400000pt;}
.y16_c00018{bottom:704.533333pt;}
.y4e_c00018{bottom:717.600000pt;}
.y15_c00018{bottom:720.266667pt;}
.y4d_c00018{bottom:733.866667pt;}
.y14_c00018{bottom:736.266667pt;}
.y13_c00018{bottom:752.000000pt;}
.y4c_c00018{bottom:753.066667pt;}
.y4b_c00018{bottom:769.066667pt;}
.y12_c00018{bottom:771.200000pt;}
.y11_c00018{bottom:787.200000pt;}
.y4a_c00018{bottom:787.600000pt;}
.y10_c00018{bottom:802.533333pt;}
.y49_c00018{bottom:804.266667pt;}
.yf_c00018{bottom:818.533333pt;}
.y48_c00018{bottom:822.800000pt;}
.ye_c00018{bottom:834.266667pt;}
.y47_c00018{bottom:839.066667pt;}
.yd_c00018{bottom:850.000000pt;}
.y46_c00018{bottom:862.400000pt;}
.yc_c00018{bottom:866.000000pt;}
.y45_c00018{bottom:878.400000pt;}
.yb_c00018{bottom:881.733333pt;}
.ya_c00018{bottom:897.733333pt;}
.y44_c00018{bottom:898.000000pt;}
.y43_c00018{bottom:914.000000pt;}
.y9_c00018{bottom:922.400000pt;}
.y42_c00018{bottom:929.066667pt;}
.y8_c00018{bottom:929.466667pt;}
.y7_c00018{bottom:945.200000pt;}
.y41_c00018{bottom:945.333333pt;}
.y6_c00018{bottom:960.933333pt;}
.y40_c00018{bottom:961.066667pt;}
.y3f_c00018{bottom:976.400000pt;}
.y5_c00018{bottom:976.933333pt;}
.y3e_c00018{bottom:992.666667pt;}
.y4_c00018{bottom:1001.600000pt;}
.y1_c00018{bottom:1016.666667pt;}
.y2_c00018{bottom:1016.933333pt;}
.y3d_c00018{bottom:1123.600000pt;}
.y3a_c00018{bottom:1123.866667pt;}
.y3b_c00018{bottom:1124.800000pt;}
.y3c_c00018{bottom:1125.466667pt;}
.y3_c00018{bottom:1126.133333pt;}
.h4_c00018{height:26.666667pt;}
.h9_c00018{height:42.666667pt;}
.h8_c00018{height:48.000000pt;}
.h7_c00018{height:53.333333pt;}
.h5_c00018{height:58.666667pt;}
.h6_c00018{height:64.000000pt;}
.h2_c00018{height:69.333333pt;}
.h3_c00018{height:74.666667pt;}
.ha_c00018{height:112.000000pt;}
.h0_c00018{height:1127.680013pt;}
.h1_c00018{height:1128.000000pt;}
.w0_c00018{width:843.200032pt;}
.w1_c00018{width:843.333333pt;}
.x0_c00018{left:0.000000pt;}
.x67_c00018{left:74.133333pt;}
.x69_c00018{left:75.333333pt;}
.xf_c00018{left:76.266667pt;}
.x6_c00018{left:80.000000pt;}
.x4a_c00018{left:86.133333pt;}
.x98_c00018{left:89.333333pt;}
.x6d_c00018{left:90.266667pt;}
.xa1_c00018{left:91.200000pt;}
.x7_c00018{left:92.133333pt;}
.x71_c00018{left:95.200000pt;}
.x10_c00018{left:96.400000pt;}
.x5c_c00018{left:97.333333pt;}
.x57_c00018{left:98.933333pt;}
.x88_c00018{left:100.800000pt;}
.x18_c00018{left:103.600000pt;}
.x78_c00018{left:106.133333pt;}
.x63_c00018{left:108.533333pt;}
.x99_c00018{left:110.400000pt;}
.x1d_c00018{left:111.733333pt;}
.x8_c00018{left:113.866667pt;}
.x4b_c00018{left:114.933333pt;}
.x5d_c00018{left:116.266667pt;}
.x8c_c00018{left:117.333333pt;}
.xa3_c00018{left:119.600000pt;}
.xa4_c00018{left:120.666667pt;}
.x52_c00018{left:121.866667pt;}
.x19_c00018{left:124.400000pt;}
.x48_c00018{left:125.733333pt;}
.x2c_c00018{left:127.200000pt;}
.x11_c00018{left:128.133333pt;}
.x61_c00018{left:129.333333pt;}
.x3b_c00018{left:130.266667pt;}
.x8d_c00018{left:132.400000pt;}
.x9c_c00018{left:134.533333pt;}
.x44_c00018{left:137.066667pt;}
.x64_c00018{left:139.200000pt;}
.x9a_c00018{left:140.800000pt;}
.x6a_c00018{left:141.866667pt;}
.x6e_c00018{left:143.333333pt;}
.x9d_c00018{left:144.533333pt;}
.x3e_c00018{left:146.666667pt;}
.x2d_c00018{left:148.266667pt;}
.x12_c00018{left:149.600000pt;}
.x8e_c00018{left:152.533333pt;}
.x4c_c00018{left:154.000000pt;}
.x45_c00018{left:154.933333pt;}
.x53_c00018{left:156.133333pt;}
.x36_c00018{left:157.200000pt;}
.x50_c00018{left:159.466667pt;}
.x23_c00018{left:161.333333pt;}
.x9e_c00018{left:163.066667pt;}
.x1a_c00018{left:164.666667pt;}
.x72_c00018{left:166.533333pt;}
.x49_c00018{left:168.000000pt;}
.x9_c00018{left:168.933333pt;}
.x37_c00018{left:171.333333pt;}
.x30_c00018{left:173.200000pt;}
.x28_c00018{left:174.533333pt;}
.x3f_c00018{left:177.066667pt;}
.x51_c00018{left:178.400000pt;}
.x1e_c00018{left:181.200000pt;}
.x97_c00018{left:183.600000pt;}
.x81_c00018{left:188.133333pt;}
.x2e_c00018{left:189.200000pt;}
.x1b_c00018{left:190.533333pt;}
.x31_c00018{left:193.066667pt;}
.x9b_c00018{left:194.000000pt;}
.x40_c00018{left:195.333333pt;}
.x24_c00018{left:196.800000pt;}
.x7b_c00018{left:198.400000pt;}
.x7d_c00018{left:199.466667pt;}
.x7a_c00018{left:201.866667pt;}
.x3c_c00018{left:203.600000pt;}
.x38_c00018{left:205.200000pt;}
.x9f_c00018{left:206.533333pt;}
.x13_c00018{left:207.866667pt;}
.x46_c00018{left:209.600000pt;}
.x1f_c00018{left:210.666667pt;}
.x86_c00018{left:212.133333pt;}
.x39_c00018{left:213.466667pt;}
.x73_c00018{left:214.533333pt;}
.x76_c00018{left:215.733333pt;}
.x4d_c00018{left:218.666667pt;}
.x62_c00018{left:219.866667pt;}
.x5e_c00018{left:220.800000pt;}
.x32_c00018{left:221.866667pt;}
.x92_c00018{left:223.333333pt;}
.x14_c00018{left:224.533333pt;}
.xa_c00018{left:226.533333pt;}
.x6f_c00018{left:227.466667pt;}
.x2f_c00018{left:228.533333pt;}
.x59_c00018{left:231.600000pt;}
.x25_c00018{left:232.933333pt;}
.x82_c00018{left:235.066667pt;}
.x29_c00018{left:236.933333pt;}
.xa0_c00018{left:238.533333pt;}
.x4e_c00018{left:240.400000pt;}
.x6b_c00018{left:242.000000pt;}
.x20_c00018{left:244.000000pt;}
.x7c_c00018{left:245.066667pt;}
.xb_c00018{left:246.400000pt;}
.x54_c00018{left:249.200000pt;}
.x93_c00018{left:250.533333pt;}
.x41_c00018{left:252.266667pt;}
.x2a_c00018{left:253.866667pt;}
.x3a_c00018{left:257.333333pt;}
.x4f_c00018{left:258.666667pt;}
.x6c_c00018{left:261.466667pt;}
.x5a_c00018{left:263.866667pt;}
.x89_c00018{left:265.733333pt;}
.x33_c00018{left:266.933333pt;}
.x55_c00018{left:270.666667pt;}
.x79_c00018{left:271.733333pt;}
.x42_c00018{left:272.800000pt;}
.x74_c00018{left:275.066667pt;}
.x85_c00018{left:276.533333pt;}
.x5f_c00018{left:278.133333pt;}
.x15_c00018{left:279.600000pt;}
.x65_c00018{left:280.533333pt;}
.x21_c00018{left:285.333333pt;}
.x34_c00018{left:286.400000pt;}
.x47_c00018{left:288.266667pt;}
.xc_c00018{left:289.866667pt;}
.x16_c00018{left:292.400000pt;}
.x8f_c00018{left:293.733333pt;}
.x1_c00018{left:295.333333pt;}
.x7e_c00018{left:298.000000pt;}
.x8a_c00018{left:300.933333pt;}
.xa2_c00018{left:302.266667pt;}
.x77_c00018{left:303.600000pt;}
.x66_c00018{left:304.800000pt;}
.xd_c00018{left:307.466667pt;}
.x3_c00018{left:308.800000pt;}
.x3d_c00018{left:309.866667pt;}
.x83_c00018{left:314.266667pt;}
.x2b_c00018{left:317.866667pt;}
.x94_c00018{left:318.933333pt;}
.x17_c00018{left:319.866667pt;}
.x26_c00018{left:320.933333pt;}
.x58_c00018{left:322.933333pt;}
.x43_c00018{left:325.866667pt;}
.x7f_c00018{left:327.066667pt;}
.x75_c00018{left:329.733333pt;}
.x95_c00018{left:334.266667pt;}
.x80_c00018{left:335.733333pt;}
.x56_c00018{left:336.933333pt;}
.x5b_c00018{left:338.000000pt;}
.x35_c00018{left:340.533333pt;}
.x87_c00018{left:343.066667pt;}
.x68_c00018{left:344.800000pt;}
.x60_c00018{left:346.666667pt;}
.x27_c00018{left:348.133333pt;}
.x1c_c00018{left:349.466667pt;}
.x4_c00018{left:351.733333pt;}
.x90_c00018{left:353.200000pt;}
.x96_c00018{left:355.733333pt;}
.x22_c00018{left:356.666667pt;}
.x70_c00018{left:359.600000pt;}
.x5_c00018{left:361.066667pt;}
.x84_c00018{left:363.866667pt;}
.x8b_c00018{left:365.600000pt;}
.x91_c00018{left:370.133333pt;}
.xe_c00018{left:372.000000pt;}
.xa5_c00018{left:376.666667pt;}
.x103_c00018{left:389.466667pt;}
.x104_c00018{left:392.000000pt;}
.xbc_c00018{left:394.533333pt;}
.x10f_c00018{left:395.466667pt;}
.x128_c00018{left:396.666667pt;}
.x134_c00018{left:397.600000pt;}
.xfc_c00018{left:407.733333pt;}
.xff_c00018{left:408.666667pt;}
.xb4_c00018{left:410.133333pt;}
.x11d_c00018{left:414.000000pt;}
.x12f_c00018{left:416.666667pt;}
.x130_c00018{left:422.800000pt;}
.x105_c00018{left:424.666667pt;}
.xbe_c00018{left:425.600000pt;}
.xeb_c00018{left:426.533333pt;}
.x110_c00018{left:427.733333pt;}
.xfd_c00018{left:428.800000pt;}
.x100_c00018{left:430.400000pt;}
.x106_c00018{left:433.866667pt;}
.xa6_c00018{left:434.933333pt;}
.x119_c00018{left:436.800000pt;}
.xdc_c00018{left:437.866667pt;}
.xe4_c00018{left:440.533333pt;}
.xd1_c00018{left:441.600000pt;}
.xad_c00018{left:442.533333pt;}
.x111_c00018{left:445.066667pt;}
.xa7_c00018{left:447.466667pt;}
.x124_c00018{left:449.733333pt;}
.xd6_c00018{left:450.933333pt;}
.x136_c00018{left:452.533333pt;}
.xc8_c00018{left:453.466667pt;}
.xb5_c00018{left:456.266667pt;}
.xb0_c00018{left:457.866667pt;}
.xa8_c00018{left:459.333333pt;}
.xf8_c00018{left:460.666667pt;}
.xae_c00018{left:463.066667pt;}
.xbf_c00018{left:467.466667pt;}
.xaf_c00018{left:470.400000pt;}
.xd9_c00018{left:472.800000pt;}
.xce_c00018{left:475.200000pt;}
.x135_c00018{left:476.666667pt;}
.x10b_c00018{left:477.733333pt;}
.xe5_c00018{left:479.866667pt;}
.xf5_c00018{left:482.400000pt;}
.xec_c00018{left:486.266667pt;}
.xb6_c00018{left:487.600000pt;}
.x109_c00018{left:489.466667pt;}
.x11e_c00018{left:491.466667pt;}
.xb1_c00018{left:493.733333pt;}
.x112_c00018{left:495.333333pt;}
.xa9_c00018{left:497.600000pt;}
.xc0_c00018{left:498.800000pt;}
.x12a_c00018{left:501.733333pt;}
.x137_c00018{left:503.733333pt;}
.x129_c00018{left:505.466667pt;}
.xe7_c00018{left:506.400000pt;}
.x11f_c00018{left:509.066667pt;}
.xc9_c00018{left:510.400000pt;}
.xcf_c00018{left:511.333333pt;}
.xd2_c00018{left:514.266667pt;}
.xda_c00018{left:515.600000pt;}
.xaa_c00018{left:516.533333pt;}
.x131_c00018{left:517.866667pt;}
.xef_c00018{left:519.600000pt;}
.xed_c00018{left:520.533333pt;}
.xd7_c00018{left:523.333333pt;}
.xdd_c00018{left:524.266667pt;}
.x12b_c00018{left:527.600000pt;}
.x101_c00018{left:528.666667pt;}
.x120_c00018{left:530.133333pt;}
.xfe_c00018{left:532.266667pt;}
.x113_c00018{left:534.666667pt;}
.xc1_c00018{left:536.933333pt;}
.x121_c00018{left:538.133333pt;}
.xb7_c00018{left:540.133333pt;}
.xe1_c00018{left:542.000000pt;}
.x114_c00018{left:543.333333pt;}
.x10c_c00018{left:544.933333pt;}
.xb2_c00018{left:547.733333pt;}
.x11a_c00018{left:549.066667pt;}
.x127_c00018{left:550.666667pt;}
.xf2_c00018{left:551.600000pt;}
.x10d_c00018{left:555.866667pt;}
.xca_c00018{left:556.800000pt;}
.x117_c00018{left:557.866667pt;}
.x138_c00018{left:561.600000pt;}
.xd0_c00018{left:563.200000pt;}
.xe6_c00018{left:564.666667pt;}
.xb8_c00018{left:566.666667pt;}
.x139_c00018{left:569.333333pt;}
.xf9_c00018{left:571.066667pt;}
.x132_c00018{left:573.866667pt;}
.x125_c00018{left:575.466667pt;}
.xab_c00018{left:576.666667pt;}
.x126_c00018{left:578.266667pt;}
.xee_c00018{left:581.333333pt;}
.xc2_c00018{left:583.600000pt;}
.x115_c00018{left:584.666667pt;}
.xc5_c00018{left:586.666667pt;}
.xe8_c00018{left:587.733333pt;}
.xfa_c00018{left:588.933333pt;}
.xf3_c00018{left:590.933333pt;}
.xd3_c00018{left:592.400000pt;}
.xf0_c00018{left:594.800000pt;}
.xf6_c00018{left:599.200000pt;}
.xb9_c00018{left:602.133333pt;}
.xc3_c00018{left:604.666667pt;}
.xc6_c00018{left:606.133333pt;}
.x10e_c00018{left:608.133333pt;}
.xb3_c00018{left:609.466667pt;}
.xf1_c00018{left:611.466667pt;}
.xc7_c00018{left:614.400000pt;}
.xd8_c00018{left:616.800000pt;}
.xe9_c00018{left:618.133333pt;}
.x12c_c00018{left:619.600000pt;}
.xdb_c00018{left:621.600000pt;}
.xcb_c00018{left:623.333333pt;}
.x13a_c00018{left:625.733333pt;}
.xe2_c00018{left:626.800000pt;}
.xde_c00018{left:628.133333pt;}
.x118_c00018{left:629.200000pt;}
.xf7_c00018{left:630.266667pt;}
.x11b_c00018{left:631.600000pt;}
.x133_c00018{left:633.066667pt;}
.xac_c00018{left:636.133333pt;}
.xd4_c00018{left:638.800000pt;}
.xcc_c00018{left:640.933333pt;}
.xdf_c00018{left:643.200000pt;}
.xc4_c00018{left:644.933333pt;}
.xe3_c00018{left:646.933333pt;}
.x122_c00018{left:650.800000pt;}
.x107_c00018{left:651.733333pt;}
.x12d_c00018{left:656.400000pt;}
.xfb_c00018{left:657.466667pt;}
.xd5_c00018{left:658.933333pt;}
.xea_c00018{left:660.400000pt;}
.xe0_c00018{left:664.266667pt;}
.xba_c00018{left:665.200000pt;}
.x108_c00018{left:666.133333pt;}
.x11c_c00018{left:668.400000pt;}
.x10a_c00018{left:669.866667pt;}
.x102_c00018{left:671.733333pt;}
.xf4_c00018{left:673.066667pt;}
.xcd_c00018{left:675.466667pt;}
.xbb_c00018{left:677.066667pt;}
.xbd_c00018{left:679.333333pt;}
.x116_c00018{left:681.333333pt;}
.x2_c00018{left:687.066667pt;}
.x123_c00018{left:688.533333pt;}
.x12e_c00018{left:691.600000pt;}
}





/* 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_c00019 {
    display:none;
  }
  .loading-indicator_c00019.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00019 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_c00019 { 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_c00019" -> "#page-container .classname_c00019")
 */
.pf_c00019 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00019 { /* 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_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00019 { /* 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_c00019 { /* 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_c00019 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00019 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00019 {overflow:visible;}
  }
}
.c_c00019 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00019 { /* 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_c00019:after { /* webkit #35443 */
  content: '';
}
.t_c00019:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00019 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 */
}
.__c00019 { /* 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_c00019 { /* info for Javascript */
  display:none;
}
.l_c00019 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00019 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00019 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00019: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_c00019 {
    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_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00019.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_c00019 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00019;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.000000;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;}
.me6_c00019{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00019{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00019{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.meb_c00019{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00019{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00019{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m75_c00019{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00019{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m13_c00019{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00019{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00019{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m73_c00019{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00019{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00019{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m52_c00019{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00019{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m91_c00019{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m55_c00019{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00019{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00019{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.maf_c00019{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00019{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00019{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00019{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00019{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m93_c00019{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.maa_c00019{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00019{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00019{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md6_c00019{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00019{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.mac_c00019{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00019{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00019{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00019{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m24_c00019{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mba_c00019{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00019{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00019{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m25_c00019{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me2_c00019{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00019{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m89_c00019{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00019{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7_c00019{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00019{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00019{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m94_c00019{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00019{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00019{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00019{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mde_c00019{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m15_c00019{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00019{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m46_c00019{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00019{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.med_c00019{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00019{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m31_c00019{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00019{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00019{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00019{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00019{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00019{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00019{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m37_c00019{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me1_c00019{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m90_c00019{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00019{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9_c00019{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m68_c00019{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00019{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me4_c00019{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m74_c00019{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m66_c00019{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00019{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00019{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m82_c00019{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m10_c00019{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00019{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00019{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m97_c00019{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00019{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m95_c00019{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5_c00019{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00019{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00019{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00019{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00019{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00019{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00019{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00019{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00019{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00019{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00019{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m54_c00019{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m35_c00019{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00019{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m87_c00019{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m18_c00019{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m14_c00019{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00019{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m42_c00019{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6_c00019{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00019{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00019{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m49_c00019{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mae_c00019{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m29_c00019{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mab_c00019{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00019{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00019{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m80_c00019{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m40_c00019{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00019{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00019{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me5_c00019{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m20_c00019{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m33_c00019{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me8_c00019{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00019{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00019{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m26_c00019{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m57_c00019{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m28_c00019{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb_c00019{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00019{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m63_c00019{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00019{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me0_c00019{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00019{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m65_c00019{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m86_c00019{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m56_c00019{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00019{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md1_c00019{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m44_c00019{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m17_c00019{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mad_c00019{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00019{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m69_c00019{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m34_c00019{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m92_c00019{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m61_c00019{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me9_c00019{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m22_c00019{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m45_c00019{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00019{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m98_c00019{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m53_c00019{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00019{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m16_c00019{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc_c00019{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m84_c00019{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00019{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00019{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00019{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m99_c00019{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00019{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00019{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m62_c00019{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mca_c00019{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00019{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md0_c00019{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m83_c00019{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m64_c00019{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00019{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m67_c00019{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00019{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m50_c00019{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00019{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m72_c00019{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m85_c00019{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m79_c00019{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m23_c00019{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mec_c00019{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md5_c00019{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m4_c00019{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m12_c00019{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m81_c00019{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me_c00019{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00019{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md8_c00019{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00019{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m71_c00019{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m19_c00019{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00019{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m58_c00019{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00019{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m8_c00019{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00019{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m88_c00019{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mef_c00019{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m30_c00019{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mee_c00019{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00019{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.md9_c00019{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m41_c00019{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m27_c00019{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00019{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00019{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00019{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00019{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m43_c00019{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00019{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m59_c00019{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00019{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mce_c00019{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.md_c00019{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m47_c00019{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m32_c00019{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m76_c00019{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md7_c00019{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m39_c00019{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m48_c00019{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00019{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m96_c00019{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00019{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m36_c00019{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11_c00019{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m21_c00019{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf_c00019{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00019{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m38_c00019{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.md3_c00019{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m77_c00019{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00019{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00019{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mda_c00019{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00019{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m78_c00019{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma_c00019{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m51_c00019{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00019{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00019{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00019{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00019{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mea_c00019{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3_c00019{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me3_c00019{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.md4_c00019{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m60_c00019{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.md2_c00019{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m2_c00019{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00019{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m70_c00019{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00019{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(0.319750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00019{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.me7_c00019{transform:matrix(18.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(18.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(18.620000,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls0_c00019{letter-spacing:0.000000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{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__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00019{word-spacing:-13.839357px;}
.ws2_c00019{word-spacing:-10.087420px;}
.ws5_c00019{word-spacing:-5.096463px;}
.ws1_c00019{word-spacing:-1.000000px;}
.ws7_c00019{word-spacing:-0.681818px;}
.ws8_c00019{word-spacing:0.000000px;}
.ws4_c00019{word-spacing:1.896261px;}
.ws0_c00019{word-spacing:2.439024px;}
.ws3_c00019{word-spacing:8.996381px;}
._0_c00019{width:38.166667px;}
.fc0_c00019{color:transparent;}
.fs1_c00019{font-size:30.000000px;}
.fs7_c00019{font-size:36.000000px;}
.fs6_c00019{font-size:48.000000px;}
.fs5_c00019{font-size:54.000000px;}
.fs3_c00019{font-size:60.000000px;}
.fs2_c00019{font-size:66.000000px;}
.fs4_c00019{font-size:72.000000px;}
.fs0_c00019{font-size:120.000000px;}
.y0_c00019{bottom:0.000000px;}
.y66_c00019{bottom:201.600000px;}
.y33_c00019{bottom:203.100000px;}
.y65_c00019{bottom:215.700000px;}
.y32_c00019{bottom:217.500000px;}
.y64_c00019{bottom:231.900000px;}
.y31_c00019{bottom:236.550000px;}
.y63_c00019{bottom:248.100000px;}
.y30_c00019{bottom:255.300000px;}
.y62_c00019{bottom:264.600000px;}
.y2f_c00019{bottom:270.000000px;}
.y61_c00019{bottom:280.800000px;}
.y2e_c00019{bottom:286.200000px;}
.y60_c00019{bottom:297.750000px;}
.y2d_c00019{bottom:302.100000px;}
.y5f_c00019{bottom:314.700000px;}
.y2c_c00019{bottom:316.800000px;}
.y5e_c00019{bottom:329.100000px;}
.y5d_c00019{bottom:345.600000px;}
.y5c_c00019{bottom:362.550000px;}
.y2b_c00019{bottom:372.000000px;}
.y5b_c00019{bottom:378.750000px;}
.y2a_c00019{bottom:390.000000px;}
.y5a_c00019{bottom:403.950000px;}
.y29_c00019{bottom:408.300000px;}
.y28_c00019{bottom:429.900000px;}
.y59_c00019{bottom:434.100000px;}
.y27_c00019{bottom:447.750000px;}
.y58_c00019{bottom:452.100000px;}
.y26_c00019{bottom:465.750000px;}
.y57_c00019{bottom:478.800000px;}
.y25_c00019{bottom:483.450000px;}
.y56_c00019{bottom:496.500000px;}
.y24_c00019{bottom:501.450000px;}
.y55_c00019{bottom:514.500000px;}
.y23_c00019{bottom:519.150000px;}
.y54_c00019{bottom:532.800000px;}
.y22_c00019{bottom:537.450000px;}
.y53_c00019{bottom:550.500000px;}
.y21_c00019{bottom:554.700000px;}
.y52_c00019{bottom:568.500000px;}
.y20_c00019{bottom:576.450000px;}
.y1f_c00019{bottom:594.750000px;}
.y51_c00019{bottom:594.900000px;}
.y1e_c00019{bottom:613.050000px;}
.y50_c00019{bottom:613.200000px;}
.y4f_c00019{bottom:630.900000px;}
.y1d_c00019{bottom:635.100000px;}
.y4e_c00019{bottom:648.900000px;}
.y1c_c00019{bottom:652.800000px;}
.y4d_c00019{bottom:666.600000px;}
.y1b_c00019{bottom:671.100000px;}
.y4c_c00019{bottom:684.600000px;}
.y1a_c00019{bottom:689.100000px;}
.y4b_c00019{bottom:702.300000px;}
.y19_c00019{bottom:710.700000px;}
.y4a_c00019{bottom:720.300000px;}
.y18_c00019{bottom:729.000000px;}
.y49_c00019{bottom:738.000000px;}
.y17_c00019{bottom:746.700000px;}
.y48_c00019{bottom:756.000000px;}
.y16_c00019{bottom:768.300000px;}
.y47_c00019{bottom:783.000000px;}
.y15_c00019{bottom:786.600000px;}
.y46_c00019{bottom:801.000000px;}
.y14_c00019{bottom:804.600000px;}
.y45_c00019{bottom:818.400000px;}
.y13_c00019{bottom:826.500000px;}
.y44_c00019{bottom:836.400000px;}
.y12_c00019{bottom:844.500000px;}
.y43_c00019{bottom:854.100000px;}
.y11_c00019{bottom:865.800000px;}
.y42_c00019{bottom:872.100000px;}
.y10_c00019{bottom:884.100000px;}
.y41_c00019{bottom:889.800000px;}
.yf_c00019{bottom:906.450000px;}
.y40_c00019{bottom:907.500000px;}
.ye_c00019{bottom:924.150000px;}
.y3f_c00019{bottom:933.600000px;}
.yd_c00019{bottom:946.350000px;}
.y3e_c00019{bottom:951.600000px;}
.yc_c00019{bottom:964.350000px;}
.y3d_c00019{bottom:969.600000px;}
.yb_c00019{bottom:982.050000px;}
.y3c_c00019{bottom:987.300000px;}
.ya_c00019{bottom:1000.050000px;}
.y3b_c00019{bottom:1005.300000px;}
.y9_c00019{bottom:1021.800000px;}
.y3a_c00019{bottom:1023.300000px;}
.y8_c00019{bottom:1040.100000px;}
.y39_c00019{bottom:1041.000000px;}
.y7_c00019{bottom:1058.100000px;}
.y38_c00019{bottom:1059.000000px;}
.y6_c00019{bottom:1076.100000px;}
.y37_c00019{bottom:1077.000000px;}
.y5_c00019{bottom:1094.100000px;}
.y36_c00019{bottom:1094.700000px;}
.y4_c00019{bottom:1116.000000px;}
.y35_c00019{bottom:1117.500000px;}
.y3_c00019{bottom:1134.000000px;}
.y34_c00019{bottom:1134.750000px;}
.y1_c00019{bottom:1161.300000px;}
.y2_c00019{bottom:1270.500000px;}
.h3_c00019{height:30.000000px;}
.h9_c00019{height:36.000000px;}
.h8_c00019{height:48.000000px;}
.h7_c00019{height:54.000000px;}
.h5_c00019{height:60.000000px;}
.h4_c00019{height:66.000000px;}
.h6_c00019{height:72.000000px;}
.h2_c00019{height:120.000000px;}
.h1_c00019{height:1281.000000px;}
.h0_c00019{height:1281.240051px;}
.w0_c00019{width:948.600036px;}
.w1_c00019{width:948.750000px;}
.x0_c00019{left:0.000000px;}
.xe_c00019{left:153.300000px;}
.x1_c00019{left:154.800000px;}
.x8a_c00019{left:161.700000px;}
.x5_c00019{left:172.500000px;}
.x1c_c00019{left:173.850000px;}
.x2f_c00019{left:175.200000px;}
.x68_c00019{left:176.250000px;}
.x8e_c00019{left:177.450000px;}
.x8f_c00019{left:183.600000px;}
.x91_c00019{left:184.650000px;}
.x8c_c00019{left:185.700000px;}
.x16_c00019{left:191.100000px;}
.x28_c00019{left:192.300000px;}
.x60_c00019{left:194.100000px;}
.x6d_c00019{left:195.450000px;}
.x8d_c00019{left:196.500000px;}
.x74_c00019{left:197.550000px;}
.x64_c00019{left:201.150000px;}
.x92_c00019{left:204.450000px;}
.x24_c00019{left:206.850000px;}
.x30_c00019{left:210.450000px;}
.x57_c00019{left:212.400000px;}
.x6_c00019{left:214.950000px;}
.xf_c00019{left:216.300000px;}
.x6e_c00019{left:217.350000px;}
.x3_c00019{left:218.850000px;}
.x4b_c00019{left:220.200000px;}
.x45_c00019{left:222.150000px;}
.x61_c00019{left:224.700000px;}
.x4e_c00019{left:226.050000px;}
.x25_c00019{left:227.700000px;}
.x59_c00019{left:228.900000px;}
.x35_c00019{left:231.000000px;}
.x93_c00019{left:234.300000px;}
.x4_c00019{left:236.100000px;}
.x31_c00019{left:239.250000px;}
.x1d_c00019{left:241.200000px;}
.x10_c00019{left:244.050000px;}
.x7_c00019{left:245.250000px;}
.x21_c00019{left:247.350000px;}
.x6f_c00019{left:251.250000px;}
.x5a_c00019{left:252.300000px;}
.x7a_c00019{left:253.800000px;}
.x29_c00019{left:257.550000px;}
.x77_c00019{left:258.900000px;}
.x90_c00019{left:260.250000px;}
.x96_c00019{left:261.300000px;}
.x32_c00019{left:262.650000px;}
.x36_c00019{left:264.900000px;}
.x53_c00019{left:267.300000px;}
.x17_c00019{left:270.000000px;}
.x78_c00019{left:274.350000px;}
.x80_c00019{left:275.850000px;}
.x4c_c00019{left:277.050000px;}
.x62_c00019{left:280.200000px;}
.x5b_c00019{left:281.400000px;}
.x65_c00019{left:283.500000px;}
.x46_c00019{left:285.450000px;}
.x81_c00019{left:286.650000px;}
.x5e_c00019{left:288.000000px;}
.x6a_c00019{left:289.050000px;}
.x11_c00019{left:290.850000px;}
.x48_c00019{left:293.400000px;}
.x41_c00019{left:294.600000px;}
.x26_c00019{left:297.900000px;}
.x1e_c00019{left:300.300000px;}
.x8_c00019{left:302.550000px;}
.x37_c00019{left:305.250000px;}
.x70_c00019{left:308.100000px;}
.x12_c00019{left:311.400000px;}
.x47_c00019{left:312.450000px;}
.x33_c00019{left:315.900000px;}
.x5f_c00019{left:317.850000px;}
.x82_c00019{left:318.900000px;}
.x9_c00019{left:320.250000px;}
.x54_c00019{left:324.900000px;}
.x13_c00019{left:327.900000px;}
.x38_c00019{left:328.950000px;}
.x4f_c00019{left:330.000000px;}
.x8b_c00019{left:331.350000px;}
.x75_c00019{left:334.200000px;}
.x2a_c00019{left:335.700000px;}
.x73_c00019{left:337.350000px;}
.x85_c00019{left:339.150000px;}
.x18_c00019{left:341.700000px;}
.x39_c00019{left:347.250000px;}
.x42_c00019{left:348.300000px;}
.xa_c00019{left:349.800000px;}
.x50_c00019{left:351.600000px;}
.x3d_c00019{left:353.550000px;}
.x89_c00019{left:356.250000px;}
.x86_c00019{left:357.450000px;}
.x83_c00019{left:360.300000px;}
.x69_c00019{left:362.100000px;}
.x7b_c00019{left:363.600000px;}
.x2b_c00019{left:369.600000px;}
.x6b_c00019{left:371.850000px;}
.x7c_c00019{left:374.400000px;}
.x71_c00019{left:376.200000px;}
.x19_c00019{left:378.000000px;}
.x94_c00019{left:379.350000px;}
.x34_c00019{left:382.200000px;}
.x14_c00019{left:384.750000px;}
.x22_c00019{left:386.250000px;}
.x1f_c00019{left:388.800000px;}
.x63_c00019{left:390.300000px;}
.x3e_c00019{left:392.850000px;}
.x2_c00019{left:396.750000px;}
.x5c_c00019{left:398.400000px;}
.xb_c00019{left:400.500000px;}
.x66_c00019{left:402.300000px;}
.x88_c00019{left:403.500000px;}
.x43_c00019{left:409.200000px;}
.x20_c00019{left:410.700000px;}
.x7d_c00019{left:412.200000px;}
.x72_c00019{left:413.250000px;}
.x4d_c00019{left:414.600000px;}
.x3a_c00019{left:416.400000px;}
.x27_c00019{left:417.450000px;}
.x49_c00019{left:420.150000px;}
.x6c_c00019{left:421.200000px;}
.x23_c00019{left:422.250000px;}
.xc_c00019{left:424.650000px;}
.x2c_c00019{left:426.450000px;}
.x44_c00019{left:428.700000px;}
.x1a_c00019{left:432.000000px;}
.x4a_c00019{left:433.050000px;}
.x2d_c00019{left:435.450000px;}
.x3f_c00019{left:437.850000px;}
.x67_c00019{left:439.800000px;}
.x7e_c00019{left:441.300000px;}
.x15_c00019{left:444.150000px;}
.x84_c00019{left:446.400000px;}
.x58_c00019{left:447.450000px;}
.x55_c00019{left:450.150000px;}
.x95_c00019{left:452.100000px;}
.x1b_c00019{left:456.450000px;}
.x76_c00019{left:458.100000px;}
.x52_c00019{left:460.500000px;}
.xd_c00019{left:465.000000px;}
.x2e_c00019{left:466.050000px;}
.x51_c00019{left:468.600000px;}
.x3b_c00019{left:471.450000px;}
.x56_c00019{left:474.600000px;}
.x40_c00019{left:477.150000px;}
.x5d_c00019{left:479.850000px;}
.x3c_c00019{left:481.500000px;}
.x79_c00019{left:484.200000px;}
.x7f_c00019{left:485.250000px;}
.x87_c00019{left:493.500000px;}
.xde_c00019{left:513.900000px;}
.x116_c00019{left:515.400000px;}
.x131_c00019{left:517.350000px;}
.xd8_c00019{left:531.750000px;}
.x120_c00019{left:533.550000px;}
.x125_c00019{left:534.750000px;}
.x105_c00019{left:536.850000px;}
.x10c_c00019{left:541.050000px;}
.xe3_c00019{left:542.400000px;}
.x97_c00019{left:546.900000px;}
.xbe_c00019{left:548.550000px;}
.x9d_c00019{left:549.900000px;}
.xb0_c00019{left:550.950000px;}
.x12f_c00019{left:552.300000px;}
.xe8_c00019{left:553.950000px;}
.xf1_c00019{left:555.150000px;}
.x134_c00019{left:556.200000px;}
.x132_c00019{left:557.400000px;}
.xfc_c00019{left:559.350000px;}
.x101_c00019{left:560.400000px;}
.xd9_c00019{left:562.350000px;}
.x138_c00019{left:566.250000px;}
.xa2_c00019{left:567.300000px;}
.xf6_c00019{left:570.300000px;}
.xce_c00019{left:575.550000px;}
.x9e_c00019{left:576.600000px;}
.xf9_c00019{left:579.300000px;}
.x139_c00019{left:581.400000px;}
.x133_c00019{left:583.350000px;}
.xf2_c00019{left:585.000000px;}
.x135_c00019{left:586.200000px;}
.xc3_c00019{left:588.600000px;}
.xa8_c00019{left:589.800000px;}
.xb1_c00019{left:592.650000px;}
.x12e_c00019{left:593.700000px;}
.xbf_c00019{left:597.900000px;}
.x13b_c00019{left:598.950000px;}
.xdf_c00019{left:600.300000px;}
.xb7_c00019{left:601.350000px;}
.xf7_c00019{left:602.400000px;}
.xe4_c00019{left:603.600000px;}
.xfa_c00019{left:606.000000px;}
.x126_c00019{left:608.250000px;}
.xa9_c00019{left:609.900000px;}
.x102_c00019{left:611.550000px;}
.x121_c00019{left:616.950000px;}
.xfd_c00019{left:619.500000px;}
.x13a_c00019{left:621.000000px;}
.xc4_c00019{left:622.800000px;}
.xe5_c00019{left:624.150000px;}
.x98_c00019{left:625.350000px;}
.x136_c00019{left:627.600000px;}
.x109_c00019{left:629.850000px;}
.xb2_c00019{left:631.500000px;}
.xc5_c00019{left:632.850000px;}
.xc0_c00019{left:634.650000px;}
.xda_c00019{left:636.150000px;}
.xf3_c00019{left:637.950000px;}
.x12a_c00019{left:639.150000px;}
.xe0_c00019{left:640.650000px;}
.xee_c00019{left:641.700000px;}
.x114_c00019{left:643.050000px;}
.x10d_c00019{left:646.800000px;}
.x127_c00019{left:648.900000px;}
.xc6_c00019{left:651.600000px;}
.x106_c00019{left:652.800000px;}
.xa3_c00019{left:654.000000px;}
.x9f_c00019{left:657.150000px;}
.xaa_c00019{left:659.250000px;}
.x99_c00019{left:661.350000px;}
.x12b_c00019{left:662.550000px;}
.xb8_c00019{left:664.050000px;}
.xfb_c00019{left:666.450000px;}
.x13c_c00019{left:668.400000px;}
.x11f_c00019{left:669.750000px;}
.xc7_c00019{left:671.700000px;}
.x9a_c00019{left:673.950000px;}
.xe9_c00019{left:675.000000px;}
.xd4_c00019{left:676.800000px;}
.x13d_c00019{left:679.500000px;}
.xdb_c00019{left:680.850000px;}
.xcf_c00019{left:682.500000px;}
.x117_c00019{left:683.550000px;}
.xf4_c00019{left:685.800000px;}
.xf8_c00019{left:688.500000px;}
.xb9_c00019{left:689.550000px;}
.x10a_c00019{left:691.050000px;}
.xea_c00019{left:693.000000px;}
.xab_c00019{left:694.200000px;}
.xe6_c00019{left:696.150000px;}
.xe1_c00019{left:699.000000px;}
.xdc_c00019{left:702.150000px;}
.xa4_c00019{left:703.350000px;}
.x13e_c00019{left:704.400000px;}
.xba_c00019{left:705.450000px;}
.x110_c00019{left:708.150000px;}
.xd5_c00019{left:709.200000px;}
.xd0_c00019{left:711.000000px;}
.xac_c00019{left:712.200000px;}
.xb3_c00019{left:716.100000px;}
.x10b_c00019{left:718.350000px;}
.xeb_c00019{left:720.000000px;}
.xc1_c00019{left:721.050000px;}
.xca_c00019{left:723.750000px;}
.x9b_c00019{left:725.850000px;}
.x11b_c00019{left:727.050000px;}
.x128_c00019{left:729.150000px;}
.xef_c00019{left:731.100000px;}
.xe7_c00019{left:732.150000px;}
.xfe_c00019{left:733.950000px;}
.x137_c00019{left:735.900000px;}
.x122_c00019{left:737.100000px;}
.xa5_c00019{left:739.650000px;}
.xa0_c00019{left:742.050000px;}
.xd1_c00019{left:743.700000px;}
.xb4_c00019{left:746.250000px;}
.x118_c00019{left:748.050000px;}
.x111_c00019{left:749.250000px;}
.xcb_c00019{left:750.450000px;}
.x129_c00019{left:752.250000px;}
.x107_c00019{left:753.600000px;}
.xbb_c00019{left:755.550000px;}
.x119_c00019{left:757.350000px;}
.xe2_c00019{left:759.900000px;}
.x10e_c00019{left:760.950000px;}
.x103_c00019{left:762.000000px;}
.xa1_c00019{left:763.950000px;}
.xd6_c00019{left:767.100000px;}
.xad_c00019{left:769.500000px;}
.xc8_c00019{left:773.700000px;}
.xa6_c00019{left:775.950000px;}
.x9c_c00019{left:777.750000px;}
.x115_c00019{left:778.800000px;}
.xec_c00019{left:780.450000px;}
.xcc_c00019{left:783.600000px;}
.x112_c00019{left:785.550000px;}
.x108_c00019{left:786.750000px;}
.xff_c00019{left:789.450000px;}
.xb5_c00019{left:790.950000px;}
.xed_c00019{left:792.300000px;}
.x11c_c00019{left:793.950000px;}
.xdd_c00019{left:795.450000px;}
.xf5_c00019{left:797.100000px;}
.xc2_c00019{left:799.200000px;}
.x12c_c00019{left:801.150000px;}
.x11d_c00019{left:803.250000px;}
.xd2_c00019{left:804.900000px;}
.x100_c00019{left:808.500000px;}
.x123_c00019{left:809.850000px;}
.xb6_c00019{left:812.250000px;}
.x10f_c00019{left:813.900000px;}
.xcd_c00019{left:815.250000px;}
.x11a_c00019{left:817.800000px;}
.x12d_c00019{left:819.450000px;}
.xc9_c00019{left:822.000000px;}
.xae_c00019{left:823.500000px;}
.xd3_c00019{left:825.450000px;}
.xbc_c00019{left:826.500000px;}
.xd7_c00019{left:827.550000px;}
.x113_c00019{left:832.350000px;}
.xa7_c00019{left:834.600000px;}
.xf0_c00019{left:836.250000px;}
.x11e_c00019{left:837.450000px;}
.x130_c00019{left:838.800000px;}
.xbd_c00019{left:840.150000px;}
.x104_c00019{left:843.300000px;}
.xaf_c00019{left:846.150000px;}
.x124_c00019{left:849.450000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws6_c00019{word-spacing:-12.301651pt;}
.ws2_c00019{word-spacing:-8.966596pt;}
.ws5_c00019{word-spacing:-4.530189pt;}
.ws1_c00019{word-spacing:-0.888889pt;}
.ws7_c00019{word-spacing:-0.606061pt;}
.ws8_c00019{word-spacing:0.000000pt;}
.ws4_c00019{word-spacing:1.685565pt;}
.ws0_c00019{word-spacing:2.168022pt;}
.ws3_c00019{word-spacing:7.996783pt;}
._0_c00019{width:33.925926pt;}
.fs1_c00019{font-size:26.666667pt;}
.fs7_c00019{font-size:32.000000pt;}
.fs6_c00019{font-size:42.666667pt;}
.fs5_c00019{font-size:48.000000pt;}
.fs3_c00019{font-size:53.333333pt;}
.fs2_c00019{font-size:58.666667pt;}
.fs4_c00019{font-size:64.000000pt;}
.fs0_c00019{font-size:106.666667pt;}
.y0_c00019{bottom:0.000000pt;}
.y66_c00019{bottom:179.200000pt;}
.y33_c00019{bottom:180.533333pt;}
.y65_c00019{bottom:191.733333pt;}
.y32_c00019{bottom:193.333333pt;}
.y64_c00019{bottom:206.133333pt;}
.y31_c00019{bottom:210.266667pt;}
.y63_c00019{bottom:220.533333pt;}
.y30_c00019{bottom:226.933333pt;}
.y62_c00019{bottom:235.200000pt;}
.y2f_c00019{bottom:240.000000pt;}
.y61_c00019{bottom:249.600000pt;}
.y2e_c00019{bottom:254.400000pt;}
.y60_c00019{bottom:264.666667pt;}
.y2d_c00019{bottom:268.533333pt;}
.y5f_c00019{bottom:279.733333pt;}
.y2c_c00019{bottom:281.600000pt;}
.y5e_c00019{bottom:292.533333pt;}
.y5d_c00019{bottom:307.200000pt;}
.y5c_c00019{bottom:322.266667pt;}
.y2b_c00019{bottom:330.666667pt;}
.y5b_c00019{bottom:336.666667pt;}
.y2a_c00019{bottom:346.666667pt;}
.y5a_c00019{bottom:359.066667pt;}
.y29_c00019{bottom:362.933333pt;}
.y28_c00019{bottom:382.133333pt;}
.y59_c00019{bottom:385.866667pt;}
.y27_c00019{bottom:398.000000pt;}
.y58_c00019{bottom:401.866667pt;}
.y26_c00019{bottom:414.000000pt;}
.y57_c00019{bottom:425.600000pt;}
.y25_c00019{bottom:429.733333pt;}
.y56_c00019{bottom:441.333333pt;}
.y24_c00019{bottom:445.733333pt;}
.y55_c00019{bottom:457.333333pt;}
.y23_c00019{bottom:461.466667pt;}
.y54_c00019{bottom:473.600000pt;}
.y22_c00019{bottom:477.733333pt;}
.y53_c00019{bottom:489.333333pt;}
.y21_c00019{bottom:493.066667pt;}
.y52_c00019{bottom:505.333333pt;}
.y20_c00019{bottom:512.400000pt;}
.y1f_c00019{bottom:528.666667pt;}
.y51_c00019{bottom:528.800000pt;}
.y1e_c00019{bottom:544.933333pt;}
.y50_c00019{bottom:545.066667pt;}
.y4f_c00019{bottom:560.800000pt;}
.y1d_c00019{bottom:564.533333pt;}
.y4e_c00019{bottom:576.800000pt;}
.y1c_c00019{bottom:580.266667pt;}
.y4d_c00019{bottom:592.533333pt;}
.y1b_c00019{bottom:596.533333pt;}
.y4c_c00019{bottom:608.533333pt;}
.y1a_c00019{bottom:612.533333pt;}
.y4b_c00019{bottom:624.266667pt;}
.y19_c00019{bottom:631.733333pt;}
.y4a_c00019{bottom:640.266667pt;}
.y18_c00019{bottom:648.000000pt;}
.y49_c00019{bottom:656.000000pt;}
.y17_c00019{bottom:663.733333pt;}
.y48_c00019{bottom:672.000000pt;}
.y16_c00019{bottom:682.933333pt;}
.y47_c00019{bottom:696.000000pt;}
.y15_c00019{bottom:699.200000pt;}
.y46_c00019{bottom:712.000000pt;}
.y14_c00019{bottom:715.200000pt;}
.y45_c00019{bottom:727.466667pt;}
.y13_c00019{bottom:734.666667pt;}
.y44_c00019{bottom:743.466667pt;}
.y12_c00019{bottom:750.666667pt;}
.y43_c00019{bottom:759.200000pt;}
.y11_c00019{bottom:769.600000pt;}
.y42_c00019{bottom:775.200000pt;}
.y10_c00019{bottom:785.866667pt;}
.y41_c00019{bottom:790.933333pt;}
.yf_c00019{bottom:805.733333pt;}
.y40_c00019{bottom:806.666667pt;}
.ye_c00019{bottom:821.466667pt;}
.y3f_c00019{bottom:829.866667pt;}
.yd_c00019{bottom:841.200000pt;}
.y3e_c00019{bottom:845.866667pt;}
.yc_c00019{bottom:857.200000pt;}
.y3d_c00019{bottom:861.866667pt;}
.yb_c00019{bottom:872.933333pt;}
.y3c_c00019{bottom:877.600000pt;}
.ya_c00019{bottom:888.933333pt;}
.y3b_c00019{bottom:893.600000pt;}
.y9_c00019{bottom:908.266667pt;}
.y3a_c00019{bottom:909.600000pt;}
.y8_c00019{bottom:924.533333pt;}
.y39_c00019{bottom:925.333333pt;}
.y7_c00019{bottom:940.533333pt;}
.y38_c00019{bottom:941.333333pt;}
.y6_c00019{bottom:956.533333pt;}
.y37_c00019{bottom:957.333333pt;}
.y5_c00019{bottom:972.533333pt;}
.y36_c00019{bottom:973.066667pt;}
.y4_c00019{bottom:992.000000pt;}
.y35_c00019{bottom:993.333333pt;}
.y3_c00019{bottom:1008.000000pt;}
.y34_c00019{bottom:1008.666667pt;}
.y1_c00019{bottom:1032.266667pt;}
.y2_c00019{bottom:1129.333333pt;}
.h3_c00019{height:26.666667pt;}
.h9_c00019{height:32.000000pt;}
.h8_c00019{height:42.666667pt;}
.h7_c00019{height:48.000000pt;}
.h5_c00019{height:53.333333pt;}
.h4_c00019{height:58.666667pt;}
.h6_c00019{height:64.000000pt;}
.h2_c00019{height:106.666667pt;}
.h1_c00019{height:1138.666667pt;}
.h0_c00019{height:1138.880045pt;}
.w0_c00019{width:843.200032pt;}
.w1_c00019{width:843.333333pt;}
.x0_c00019{left:0.000000pt;}
.xe_c00019{left:136.266667pt;}
.x1_c00019{left:137.600000pt;}
.x8a_c00019{left:143.733333pt;}
.x5_c00019{left:153.333333pt;}
.x1c_c00019{left:154.533333pt;}
.x2f_c00019{left:155.733333pt;}
.x68_c00019{left:156.666667pt;}
.x8e_c00019{left:157.733333pt;}
.x8f_c00019{left:163.200000pt;}
.x91_c00019{left:164.133333pt;}
.x8c_c00019{left:165.066667pt;}
.x16_c00019{left:169.866667pt;}
.x28_c00019{left:170.933333pt;}
.x60_c00019{left:172.533333pt;}
.x6d_c00019{left:173.733333pt;}
.x8d_c00019{left:174.666667pt;}
.x74_c00019{left:175.600000pt;}
.x64_c00019{left:178.800000pt;}
.x92_c00019{left:181.733333pt;}
.x24_c00019{left:183.866667pt;}
.x30_c00019{left:187.066667pt;}
.x57_c00019{left:188.800000pt;}
.x6_c00019{left:191.066667pt;}
.xf_c00019{left:192.266667pt;}
.x6e_c00019{left:193.200000pt;}
.x3_c00019{left:194.533333pt;}
.x4b_c00019{left:195.733333pt;}
.x45_c00019{left:197.466667pt;}
.x61_c00019{left:199.733333pt;}
.x4e_c00019{left:200.933333pt;}
.x25_c00019{left:202.400000pt;}
.x59_c00019{left:203.466667pt;}
.x35_c00019{left:205.333333pt;}
.x93_c00019{left:208.266667pt;}
.x4_c00019{left:209.866667pt;}
.x31_c00019{left:212.666667pt;}
.x1d_c00019{left:214.400000pt;}
.x10_c00019{left:216.933333pt;}
.x7_c00019{left:218.000000pt;}
.x21_c00019{left:219.866667pt;}
.x6f_c00019{left:223.333333pt;}
.x5a_c00019{left:224.266667pt;}
.x7a_c00019{left:225.600000pt;}
.x29_c00019{left:228.933333pt;}
.x77_c00019{left:230.133333pt;}
.x90_c00019{left:231.333333pt;}
.x96_c00019{left:232.266667pt;}
.x32_c00019{left:233.466667pt;}
.x36_c00019{left:235.466667pt;}
.x53_c00019{left:237.600000pt;}
.x17_c00019{left:240.000000pt;}
.x78_c00019{left:243.866667pt;}
.x80_c00019{left:245.200000pt;}
.x4c_c00019{left:246.266667pt;}
.x62_c00019{left:249.066667pt;}
.x5b_c00019{left:250.133333pt;}
.x65_c00019{left:252.000000pt;}
.x46_c00019{left:253.733333pt;}
.x81_c00019{left:254.800000pt;}
.x5e_c00019{left:256.000000pt;}
.x6a_c00019{left:256.933333pt;}
.x11_c00019{left:258.533333pt;}
.x48_c00019{left:260.800000pt;}
.x41_c00019{left:261.866667pt;}
.x26_c00019{left:264.800000pt;}
.x1e_c00019{left:266.933333pt;}
.x8_c00019{left:268.933333pt;}
.x37_c00019{left:271.333333pt;}
.x70_c00019{left:273.866667pt;}
.x12_c00019{left:276.800000pt;}
.x47_c00019{left:277.733333pt;}
.x33_c00019{left:280.800000pt;}
.x5f_c00019{left:282.533333pt;}
.x82_c00019{left:283.466667pt;}
.x9_c00019{left:284.666667pt;}
.x54_c00019{left:288.800000pt;}
.x13_c00019{left:291.466667pt;}
.x38_c00019{left:292.400000pt;}
.x4f_c00019{left:293.333333pt;}
.x8b_c00019{left:294.533333pt;}
.x75_c00019{left:297.066667pt;}
.x2a_c00019{left:298.400000pt;}
.x73_c00019{left:299.866667pt;}
.x85_c00019{left:301.466667pt;}
.x18_c00019{left:303.733333pt;}
.x39_c00019{left:308.666667pt;}
.x42_c00019{left:309.600000pt;}
.xa_c00019{left:310.933333pt;}
.x50_c00019{left:312.533333pt;}
.x3d_c00019{left:314.266667pt;}
.x89_c00019{left:316.666667pt;}
.x86_c00019{left:317.733333pt;}
.x83_c00019{left:320.266667pt;}
.x69_c00019{left:321.866667pt;}
.x7b_c00019{left:323.200000pt;}
.x2b_c00019{left:328.533333pt;}
.x6b_c00019{left:330.533333pt;}
.x7c_c00019{left:332.800000pt;}
.x71_c00019{left:334.400000pt;}
.x19_c00019{left:336.000000pt;}
.x94_c00019{left:337.200000pt;}
.x34_c00019{left:339.733333pt;}
.x14_c00019{left:342.000000pt;}
.x22_c00019{left:343.333333pt;}
.x1f_c00019{left:345.600000pt;}
.x63_c00019{left:346.933333pt;}
.x3e_c00019{left:349.200000pt;}
.x2_c00019{left:352.666667pt;}
.x5c_c00019{left:354.133333pt;}
.xb_c00019{left:356.000000pt;}
.x66_c00019{left:357.600000pt;}
.x88_c00019{left:358.666667pt;}
.x43_c00019{left:363.733333pt;}
.x20_c00019{left:365.066667pt;}
.x7d_c00019{left:366.400000pt;}
.x72_c00019{left:367.333333pt;}
.x4d_c00019{left:368.533333pt;}
.x3a_c00019{left:370.133333pt;}
.x27_c00019{left:371.066667pt;}
.x49_c00019{left:373.466667pt;}
.x6c_c00019{left:374.400000pt;}
.x23_c00019{left:375.333333pt;}
.xc_c00019{left:377.466667pt;}
.x2c_c00019{left:379.066667pt;}
.x44_c00019{left:381.066667pt;}
.x1a_c00019{left:384.000000pt;}
.x4a_c00019{left:384.933333pt;}
.x2d_c00019{left:387.066667pt;}
.x3f_c00019{left:389.200000pt;}
.x67_c00019{left:390.933333pt;}
.x7e_c00019{left:392.266667pt;}
.x15_c00019{left:394.800000pt;}
.x84_c00019{left:396.800000pt;}
.x58_c00019{left:397.733333pt;}
.x55_c00019{left:400.133333pt;}
.x95_c00019{left:401.866667pt;}
.x1b_c00019{left:405.733333pt;}
.x76_c00019{left:407.200000pt;}
.x52_c00019{left:409.333333pt;}
.xd_c00019{left:413.333333pt;}
.x2e_c00019{left:414.266667pt;}
.x51_c00019{left:416.533333pt;}
.x3b_c00019{left:419.066667pt;}
.x56_c00019{left:421.866667pt;}
.x40_c00019{left:424.133333pt;}
.x5d_c00019{left:426.533333pt;}
.x3c_c00019{left:428.000000pt;}
.x79_c00019{left:430.400000pt;}
.x7f_c00019{left:431.333333pt;}
.x87_c00019{left:438.666667pt;}
.xde_c00019{left:456.800000pt;}
.x116_c00019{left:458.133333pt;}
.x131_c00019{left:459.866667pt;}
.xd8_c00019{left:472.666667pt;}
.x120_c00019{left:474.266667pt;}
.x125_c00019{left:475.333333pt;}
.x105_c00019{left:477.200000pt;}
.x10c_c00019{left:480.933333pt;}
.xe3_c00019{left:482.133333pt;}
.x97_c00019{left:486.133333pt;}
.xbe_c00019{left:487.600000pt;}
.x9d_c00019{left:488.800000pt;}
.xb0_c00019{left:489.733333pt;}
.x12f_c00019{left:490.933333pt;}
.xe8_c00019{left:492.400000pt;}
.xf1_c00019{left:493.466667pt;}
.x134_c00019{left:494.400000pt;}
.x132_c00019{left:495.466667pt;}
.xfc_c00019{left:497.200000pt;}
.x101_c00019{left:498.133333pt;}
.xd9_c00019{left:499.866667pt;}
.x138_c00019{left:503.333333pt;}
.xa2_c00019{left:504.266667pt;}
.xf6_c00019{left:506.933333pt;}
.xce_c00019{left:511.600000pt;}
.x9e_c00019{left:512.533333pt;}
.xf9_c00019{left:514.933333pt;}
.x139_c00019{left:516.800000pt;}
.x133_c00019{left:518.533333pt;}
.xf2_c00019{left:520.000000pt;}
.x135_c00019{left:521.066667pt;}
.xc3_c00019{left:523.200000pt;}
.xa8_c00019{left:524.266667pt;}
.xb1_c00019{left:526.800000pt;}
.x12e_c00019{left:527.733333pt;}
.xbf_c00019{left:531.466667pt;}
.x13b_c00019{left:532.400000pt;}
.xdf_c00019{left:533.600000pt;}
.xb7_c00019{left:534.533333pt;}
.xf7_c00019{left:535.466667pt;}
.xe4_c00019{left:536.533333pt;}
.xfa_c00019{left:538.666667pt;}
.x126_c00019{left:540.666667pt;}
.xa9_c00019{left:542.133333pt;}
.x102_c00019{left:543.600000pt;}
.x121_c00019{left:548.400000pt;}
.xfd_c00019{left:550.666667pt;}
.x13a_c00019{left:552.000000pt;}
.xc4_c00019{left:553.600000pt;}
.xe5_c00019{left:554.800000pt;}
.x98_c00019{left:555.866667pt;}
.x136_c00019{left:557.866667pt;}
.x109_c00019{left:559.866667pt;}
.xb2_c00019{left:561.333333pt;}
.xc5_c00019{left:562.533333pt;}
.xc0_c00019{left:564.133333pt;}
.xda_c00019{left:565.466667pt;}
.xf3_c00019{left:567.066667pt;}
.x12a_c00019{left:568.133333pt;}
.xe0_c00019{left:569.466667pt;}
.xee_c00019{left:570.400000pt;}
.x114_c00019{left:571.600000pt;}
.x10d_c00019{left:574.933333pt;}
.x127_c00019{left:576.800000pt;}
.xc6_c00019{left:579.200000pt;}
.x106_c00019{left:580.266667pt;}
.xa3_c00019{left:581.333333pt;}
.x9f_c00019{left:584.133333pt;}
.xaa_c00019{left:586.000000pt;}
.x99_c00019{left:587.866667pt;}
.x12b_c00019{left:588.933333pt;}
.xb8_c00019{left:590.266667pt;}
.xfb_c00019{left:592.400000pt;}
.x13c_c00019{left:594.133333pt;}
.x11f_c00019{left:595.333333pt;}
.xc7_c00019{left:597.066667pt;}
.x9a_c00019{left:599.066667pt;}
.xe9_c00019{left:600.000000pt;}
.xd4_c00019{left:601.600000pt;}
.x13d_c00019{left:604.000000pt;}
.xdb_c00019{left:605.200000pt;}
.xcf_c00019{left:606.666667pt;}
.x117_c00019{left:607.600000pt;}
.xf4_c00019{left:609.600000pt;}
.xf8_c00019{left:612.000000pt;}
.xb9_c00019{left:612.933333pt;}
.x10a_c00019{left:614.266667pt;}
.xea_c00019{left:616.000000pt;}
.xab_c00019{left:617.066667pt;}
.xe6_c00019{left:618.800000pt;}
.xe1_c00019{left:621.333333pt;}
.xdc_c00019{left:624.133333pt;}
.xa4_c00019{left:625.200000pt;}
.x13e_c00019{left:626.133333pt;}
.xba_c00019{left:627.066667pt;}
.x110_c00019{left:629.466667pt;}
.xd5_c00019{left:630.400000pt;}
.xd0_c00019{left:632.000000pt;}
.xac_c00019{left:633.066667pt;}
.xb3_c00019{left:636.533333pt;}
.x10b_c00019{left:638.533333pt;}
.xeb_c00019{left:640.000000pt;}
.xc1_c00019{left:640.933333pt;}
.xca_c00019{left:643.333333pt;}
.x9b_c00019{left:645.200000pt;}
.x11b_c00019{left:646.266667pt;}
.x128_c00019{left:648.133333pt;}
.xef_c00019{left:649.866667pt;}
.xe7_c00019{left:650.800000pt;}
.xfe_c00019{left:652.400000pt;}
.x137_c00019{left:654.133333pt;}
.x122_c00019{left:655.200000pt;}
.xa5_c00019{left:657.466667pt;}
.xa0_c00019{left:659.600000pt;}
.xd1_c00019{left:661.066667pt;}
.xb4_c00019{left:663.333333pt;}
.x118_c00019{left:664.933333pt;}
.x111_c00019{left:666.000000pt;}
.xcb_c00019{left:667.066667pt;}
.x129_c00019{left:668.666667pt;}
.x107_c00019{left:669.866667pt;}
.xbb_c00019{left:671.600000pt;}
.x119_c00019{left:673.200000pt;}
.xe2_c00019{left:675.466667pt;}
.x10e_c00019{left:676.400000pt;}
.x103_c00019{left:677.333333pt;}
.xa1_c00019{left:679.066667pt;}
.xd6_c00019{left:681.866667pt;}
.xad_c00019{left:684.000000pt;}
.xc8_c00019{left:687.733333pt;}
.xa6_c00019{left:689.733333pt;}
.x9c_c00019{left:691.333333pt;}
.x115_c00019{left:692.266667pt;}
.xec_c00019{left:693.733333pt;}
.xcc_c00019{left:696.533333pt;}
.x112_c00019{left:698.266667pt;}
.x108_c00019{left:699.333333pt;}
.xff_c00019{left:701.733333pt;}
.xb5_c00019{left:703.066667pt;}
.xed_c00019{left:704.266667pt;}
.x11c_c00019{left:705.733333pt;}
.xdd_c00019{left:707.066667pt;}
.xf5_c00019{left:708.533333pt;}
.xc2_c00019{left:710.400000pt;}
.x12c_c00019{left:712.133333pt;}
.x11d_c00019{left:714.000000pt;}
.xd2_c00019{left:715.466667pt;}
.x100_c00019{left:718.666667pt;}
.x123_c00019{left:719.866667pt;}
.xb6_c00019{left:722.000000pt;}
.x10f_c00019{left:723.466667pt;}
.xcd_c00019{left:724.666667pt;}
.x11a_c00019{left:726.933333pt;}
.x12d_c00019{left:728.400000pt;}
.xc9_c00019{left:730.666667pt;}
.xae_c00019{left:732.000000pt;}
.xd3_c00019{left:733.733333pt;}
.xbc_c00019{left:734.666667pt;}
.xd7_c00019{left:735.600000pt;}
.x113_c00019{left:739.866667pt;}
.xa7_c00019{left:741.866667pt;}
.xf0_c00019{left:743.333333pt;}
.x11e_c00019{left:744.400000pt;}
.x130_c00019{left:745.600000pt;}
.xbd_c00019{left:746.800000pt;}
.x104_c00019{left:749.600000pt;}
.xaf_c00019{left:752.133333pt;}
.x124_c00019{left:755.066667pt;}
}





/* 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_c00020 {
    display:none;
  }
  .loading-indicator_c00020.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00020 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_c00020 { 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_c00020" -> "#page-container .classname_c00020")
 */
.pf_c00020 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00020 { /* 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_c00020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00020 { /* 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_c00020 { /* 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_c00020 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00020 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00020 {overflow:visible;}
  }
}
.c_c00020 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00020 { /* 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_c00020:after { /* webkit #35443 */
  content: '';
}
.t_c00020:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00020 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 */
}
.__c00020 { /* 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_c00020 { /* info for Javascript */
  display:none;
}
.l_c00020 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00020 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00020 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00020: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_c00020 {
    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_c00020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00020.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_c00020 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00020;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.000000;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;}
.m1_c00020{transform:matrix(0.019000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00020{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mce_c00020{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.me_c00020{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m116_c00020{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00020{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00020{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00020{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00020{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m91_c00020{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00020{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m118_c00020{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00020{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m44_c00020{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00020{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m59_c00020{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m110_c00020{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.meb_c00020{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md6_c00020{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m17_c00020{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00020{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00020{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00020{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00020{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.md2_c00020{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00020{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m5_c00020{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m56_c00020{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00020{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00020{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m32_c00020{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00020{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m93_c00020{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mee_c00020{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00020{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md_c00020{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m18_c00020{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m30_c00020{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m77_c00020{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00020{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m10_c00020{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9_c00020{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m4_c00020{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00020{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m41_c00020{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00020{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.mb_c00020{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m73_c00020{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00020{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00020{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md9_c00020{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00020{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me6_c00020{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00020{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m84_c00020{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m39_c00020{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00020{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.me2_c00020{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00020{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m14_c00020{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7_c00020{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00020{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00020{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00020{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m49_c00020{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00020{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00020{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00020{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m48_c00020{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m82_c00020{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m21_c00020{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m38_c00020{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m69_c00020{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00020{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00020{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m25_c00020{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m121_c00020{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00020{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00020{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00020{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00020{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m22_c00020{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m67_c00020{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00020{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00020{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00020{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00020{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00020{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m101_c00020{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m104_c00020{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00020{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m23_c00020{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00020{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00020{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m43_c00020{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00020{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6_c00020{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m119_c00020{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m79_c00020{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m45_c00020{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m99_c00020{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00020{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00020{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.ma_c00020{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m12_c00020{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md8_c00020{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00020{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m81_c00020{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00020{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00020{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m46_c00020{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.maf_c00020{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m58_c00020{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m68_c00020{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m29_c00020{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m55_c00020{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md0_c00020{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m27_c00020{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m50_c00020{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00020{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m102_c00020{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00020{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me9_c00020{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m31_c00020{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00020{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m70_c00020{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc_c00020{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m100_c00020{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00020{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m90_c00020{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m34_c00020{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00020{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00020{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m107_c00020{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m86_c00020{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m80_c00020{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00020{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m85_c00020{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m52_c00020{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m108_c00020{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00020{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00020{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m74_c00020{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m47_c00020{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m53_c00020{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m33_c00020{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00020{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m3_c00020{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m24_c00020{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m54_c00020{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m42_c00020{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00020{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00020{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.md4_c00020{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m123_c00020{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m37_c00020{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me8_c00020{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m16_c00020{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m109_c00020{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m92_c00020{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.med_c00020{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m13_c00020{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf_c00020{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m105_c00020{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00020{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00020{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00020{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00020{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mde_c00020{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8_c00020{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00020{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00020{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m35_c00020{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00020{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00020{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m19_c00020{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00020{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00020{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00020{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00020{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00020{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mae_c00020{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00020{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.maa_c00020{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m78_c00020{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mca_c00020{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00020{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00020{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00020{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me7_c00020{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m51_c00020{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m71_c00020{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md5_c00020{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m76_c00020{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00020{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00020{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00020{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m15_c00020{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m122_c00020{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00020{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00020{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m20_c00020{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00020{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00020{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00020{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mec_c00020{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00020{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00020{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00020{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mda_c00020{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m120_c00020{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m66_c00020{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00020{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00020{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00020{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00020{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00020{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me0_c00020{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me4_c00020{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me5_c00020{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m117_c00020{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m98_c00020{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m83_c00020{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00020{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.md1_c00020{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m40_c00020{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mab_c00020{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00020{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00020{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m75_c00020{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m103_c00020{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11_c00020{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m89_c00020{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m115_c00020{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00020{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);}
.m3d_c00020{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00020{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00020{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mac_c00020{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00020{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m88_c00020{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00020{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00020{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.me3_c00020{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mff_c00020{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m28_c00020{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mba_c00020{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m65_c00020{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m87_c00020{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00020{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m60_c00020{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m112_c00020{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.md3_c00020{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00020{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m113_c00020{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m57_c00020{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.me1_c00020{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00020{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mad_c00020{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.md7_c00020{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00020{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00020{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00020{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mea_c00020{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m36_c00020{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mef_c00020{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00020{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m106_c00020{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m0_c00020{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00020{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m96_c00020{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m61_c00020{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00020{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00020{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m72_c00020{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m26_c00020{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m111_c00020{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m114_c00020{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m94_c00020{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00020{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00020{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00020{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00020{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00020{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m2_c00020{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00020{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00020{transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);}
.m97_c00020{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m95_c00020{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m64_c00020{transform:matrix(0.492750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492750,0.000000,0.000000,0.250000,0,0);}
.m63_c00020{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m62_c00020{transform:matrix(0.537250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537250,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls0_c00020{letter-spacing:0.000000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{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__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00020{word-spacing:-6.184211px;}
.ws6_c00020{word-spacing:-5.966851px;}
.wsf_c00020{word-spacing:-5.913462px;}
.ws3_c00020{word-spacing:-5.341375px;}
.ws4_c00020{word-spacing:-4.932730px;}
.wsd_c00020{word-spacing:-3.464244px;}
.wsc_c00020{word-spacing:-3.193435px;}
.wsb_c00020{word-spacing:-0.645161px;}
.ws9_c00020{word-spacing:-0.178571px;}
.ws10_c00020{word-spacing:0.000000px;}
.ws7_c00020{word-spacing:0.147059px;}
.ws5_c00020{word-spacing:3.750000px;}
.ws2_c00020{word-spacing:12.077364px;}
.ws8_c00020{word-spacing:15.833333px;}
.wsa_c00020{word-spacing:18.088757px;}
.ws0_c00020{word-spacing:45.250000px;}
.ws1_c00020{word-spacing:75.000000px;}
._0_c00020{width:41.250000px;}
.fc0_c00020{color:transparent;}
.fs6_c00020{font-size:18.000000px;}
.fs4_c00020{font-size:30.000000px;}
.fs7_c00020{font-size:36.000000px;}
.fs5_c00020{font-size:42.000000px;}
.fs9_c00020{font-size:48.000000px;}
.fs8_c00020{font-size:54.000000px;}
.fs3_c00020{font-size:60.000000px;}
.fs2_c00020{font-size:66.000000px;}
.fs1_c00020{font-size:72.000000px;}
.fs0_c00020{font-size:114.000000px;}
.y0_c00020{bottom:0.000000px;}
.y38_c00020{bottom:187.950000px;}
.y70_c00020{bottom:189.750000px;}
.y37_c00020{bottom:202.350000px;}
.y6f_c00020{bottom:204.900000px;}
.y36_c00020{bottom:216.750000px;}
.y6e_c00020{bottom:222.900000px;}
.y35_c00020{bottom:230.400000px;}
.y6d_c00020{bottom:238.350000px;}
.y34_c00020{bottom:243.300000px;}
.y6c_c00020{bottom:252.750000px;}
.y33_c00020{bottom:259.500000px;}
.y6b_c00020{bottom:266.700000px;}
.y32_c00020{bottom:274.650000px;}
.y6a_c00020{bottom:281.850000px;}
.y31_c00020{bottom:288.000000px;}
.y69_c00020{bottom:296.250000px;}
.y30_c00020{bottom:301.650000px;}
.y68_c00020{bottom:310.350000px;}
.y2f_c00020{bottom:316.050000px;}
.y67_c00020{bottom:324.750000px;}
.y2e_c00020{bottom:330.150000px;}
.y66_c00020{bottom:339.450000px;}
.y2d_c00020{bottom:344.850000px;}
.y2c_c00020{bottom:358.200000px;}
.y65_c00020{bottom:372.900000px;}
.y2b_c00020{bottom:373.350000px;}
.y64_c00020{bottom:387.000000px;}
.y2a_c00020{bottom:387.750000px;}
.y63_c00020{bottom:400.650000px;}
.y29_c00020{bottom:402.150000px;}
.y62_c00020{bottom:415.050000px;}
.y61_c00020{bottom:430.200000px;}
.y60_c00020{bottom:443.850000px;}
.y26_c00020{bottom:445.200000px;}
.y5f_c00020{bottom:459.000000px;}
.y25_c00020{bottom:463.200000px;}
.y5e_c00020{bottom:473.100000px;}
.y24_c00020{bottom:480.900000px;}
.y5d_c00020{bottom:487.500000px;}
.y23_c00020{bottom:498.900000px;}
.y5c_c00020{bottom:505.800000px;}
.y22_c00020{bottom:516.600000px;}
.y5b_c00020{bottom:520.500000px;}
.y5a_c00020{bottom:534.600000px;}
.y21_c00020{bottom:537.750000px;}
.y59_c00020{bottom:549.300000px;}
.y20_c00020{bottom:556.800000px;}
.y58_c00020{bottom:567.600000px;}
.y1f_c00020{bottom:574.050000px;}
.y57_c00020{bottom:582.750000px;}
.y1e_c00020{bottom:592.350000px;}
.y56_c00020{bottom:597.900000px;}
.y1d_c00020{bottom:610.050000px;}
.y55_c00020{bottom:612.000000px;}
.y54_c00020{bottom:626.400000px;}
.y1c_c00020{bottom:628.050000px;}
.y53_c00020{bottom:641.100000px;}
.y1b_c00020{bottom:645.750000px;}
.y52_c00020{bottom:655.200000px;}
.y1a_c00020{bottom:663.750000px;}
.y51_c00020{bottom:669.300000px;}
.y19_c00020{bottom:681.450000px;}
.y50_c00020{bottom:684.000000px;}
.y4f_c00020{bottom:698.400000px;}
.y18_c00020{bottom:699.150000px;}
.y4e_c00020{bottom:712.500000px;}
.y28_c00020{bottom:717.000000px;}
.y17_c00020{bottom:720.750000px;}
.y4d_c00020{bottom:726.900000px;}
.y27_c00020{bottom:727.500000px;}
.y16_c00020{bottom:727.950000px;}
.y4c_c00020{bottom:741.000000px;}
.y15_c00020{bottom:743.100000px;}
.y4b_c00020{bottom:755.700000px;}
.y14_c00020{bottom:760.650000px;}
.y4a_c00020{bottom:769.350000px;}
.y13_c00020{bottom:783.000000px;}
.y49_c00020{bottom:784.050000px;}
.y48_c00020{bottom:798.150000px;}
.y12_c00020{bottom:804.600000px;}
.y47_c00020{bottom:812.850000px;}
.y11_c00020{bottom:822.600000px;}
.y46_c00020{bottom:827.250000px;}
.y10_c00020{bottom:844.500000px;}
.y45_c00020{bottom:845.700000px;}
.y44_c00020{bottom:860.400000px;}
.yf_c00020{bottom:862.800000px;}
.y43_c00020{bottom:874.800000px;}
.ye_c00020{bottom:880.500000px;}
.y42_c00020{bottom:888.900000px;}
.yd_c00020{bottom:902.550000px;}
.y41_c00020{bottom:903.300000px;}
.y40_c00020{bottom:918.000000px;}
.yc_c00020{bottom:920.550000px;}
.y3f_c00020{bottom:931.650000px;}
.yb_c00020{bottom:942.750000px;}
.y3e_c00020{bottom:946.050000px;}
.ya_c00020{bottom:960.450000px;}
.y9_c00020{bottom:982.800000px;}
.y8_c00020{bottom:1000.800000px;}
.y3d_c00020{bottom:1004.700000px;}
.y7_c00020{bottom:1022.400000px;}
.y3c_c00020{bottom:1022.700000px;}
.y6_c00020{bottom:1040.700000px;}
.y3b_c00020{bottom:1048.950000px;}
.y5_c00020{bottom:1062.750000px;}
.y3a_c00020{bottom:1066.950000px;}
.y4_c00020{bottom:1080.750000px;}
.y39_c00020{bottom:1084.650000px;}
.y3_c00020{bottom:1102.650000px;}
.y2_c00020{bottom:1120.350000px;}
.y1_c00020{bottom:1171.800000px;}
.h8_c00020{height:18.000000px;}
.h6_c00020{height:30.000000px;}
.h9_c00020{height:36.000000px;}
.h7_c00020{height:42.000000px;}
.hb_c00020{height:48.000000px;}
.ha_c00020{height:54.000000px;}
.h5_c00020{height:60.000000px;}
.h4_c00020{height:66.000000px;}
.h3_c00020{height:72.000000px;}
.h2_c00020{height:114.000000px;}
.h1_c00020{height:1272.750000px;}
.h0_c00020{height:1272.960022px;}
.w0_c00020{width:948.600036px;}
.w1_c00020{width:948.750000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:60.900000px;}
.x79_c00020{left:62.250000px;}
.x75_c00020{left:72.750000px;}
.x94_c00020{left:76.050000px;}
.x4e_c00020{left:77.100000px;}
.x5a_c00020{left:78.600000px;}
.x93_c00020{left:90.750000px;}
.x42_c00020{left:92.550000px;}
.xc_c00020{left:93.750000px;}
.x58_c00020{left:95.400000px;}
.x56_c00020{left:97.950000px;}
.x52_c00020{left:99.750000px;}
.x8b_c00020{left:100.800000px;}
.x5f_c00020{left:102.450000px;}
.x83_c00020{left:103.950000px;}
.x67_c00020{left:107.250000px;}
.x92_c00020{left:109.350000px;}
.x5_c00020{left:110.850000px;}
.x10_c00020{left:112.650000px;}
.x3e_c00020{left:114.150000px;}
.x1d_c00020{left:116.250000px;}
.x7d_c00020{left:118.350000px;}
.x4f_c00020{left:122.400000px;}
.x53_c00020{left:126.750000px;}
.x17_c00020{left:128.100000px;}
.x6b_c00020{left:134.100000px;}
.x32_c00020{left:135.450000px;}
.x1e_c00020{left:136.800000px;}
.x24_c00020{left:138.600000px;}
.x3f_c00020{left:139.650000px;}
.x50_c00020{left:143.700000px;}
.x48_c00020{left:145.050000px;}
.x88_c00020{left:146.250000px;}
.x86_c00020{left:147.600000px;}
.x84_c00020{left:149.700000px;}
.x31_c00020{left:151.950000px;}
.x91_c00020{left:153.600000px;}
.xd_c00020{left:154.950000px;}
.x5b_c00020{left:156.300000px;}
.x49_c00020{left:157.350000px;}
.x2a_c00020{left:159.450000px;}
.x68_c00020{left:160.500000px;}
.x95_c00020{left:163.050000px;}
.x89_c00020{left:164.550000px;}
.x8c_c00020{left:165.900000px;}
.x8d_c00020{left:168.450000px;}
.x18_c00020{left:169.800000px;}
.x1f_c00020{left:172.050000px;}
.x71_c00020{left:173.850000px;}
.x85_c00020{left:175.200000px;}
.x40_c00020{left:176.400000px;}
.x6_c00020{left:177.750000px;}
.x25_c00020{left:182.100000px;}
.x2c_c00020{left:184.050000px;}
.x2_c00020{left:186.900000px;}
.x5c_c00020{left:187.950000px;}
.x4a_c00020{left:189.000000px;}
.x19_c00020{left:190.650000px;}
.x37_c00020{left:192.000000px;}
.x8f_c00020{left:193.350000px;}
.x7_c00020{left:196.050000px;}
.x11_c00020{left:197.250000px;}
.x33_c00020{left:200.250000px;}
.x46_c00020{left:201.600000px;}
.x76_c00020{left:203.700000px;}
.x7e_c00020{left:207.000000px;}
.x57_c00020{left:209.100000px;}
.x54_c00020{left:210.300000px;}
.x12_c00020{left:212.700000px;}
.x20_c00020{left:219.150000px;}
.x87_c00020{left:221.400000px;}
.x8a_c00020{left:223.200000px;}
.xe_c00020{left:225.450000px;}
.x70_c00020{left:229.200000px;}
.x43_c00020{left:231.900000px;}
.x55_c00020{left:235.800000px;}
.x51_c00020{left:237.600000px;}
.x77_c00020{left:238.950000px;}
.x26_c00020{left:240.450000px;}
.x21_c00020{left:241.800000px;}
.x60_c00020{left:243.450000px;}
.x4b_c00020{left:245.100000px;}
.x1a_c00020{left:246.150000px;}
.x34_c00020{left:247.800000px;}
.x6c_c00020{left:249.300000px;}
.x2b_c00020{left:250.950000px;}
.x8_c00020{left:252.900000px;}
.x35_c00020{left:257.850000px;}
.x1b_c00020{left:259.050000px;}
.x82_c00020{left:260.550000px;}
.x78_c00020{left:261.600000px;}
.x13_c00020{left:263.400000px;}
.x7f_c00020{left:267.450000px;}
.x72_c00020{left:268.500000px;}
.x27_c00020{left:270.000000px;}
.x22_c00020{left:272.100000px;}
.x38_c00020{left:274.800000px;}
.x2d_c00020{left:276.150000px;}
.x73_c00020{left:278.550000px;}
.x44_c00020{left:282.000000px;}
.x47_c00020{left:283.800000px;}
.x90_c00020{left:285.150000px;}
.x6d_c00020{left:286.800000px;}
.x9_c00020{left:289.200000px;}
.x14_c00020{left:293.700000px;}
.x4c_c00020{left:294.750000px;}
.x3_c00020{left:298.200000px;}
.x28_c00020{left:301.650000px;}
.x2e_c00020{left:302.850000px;}
.x8e_c00020{left:306.750000px;}
.x3b_c00020{left:310.950000px;}
.x39_c00020{left:313.350000px;}
.x64_c00020{left:316.950000px;}
.x2f_c00020{left:318.300000px;}
.xf_c00020{left:319.800000px;}
.x7a_c00020{left:325.050000px;}
.x23_c00020{left:326.100000px;}
.x36_c00020{left:328.800000px;}
.x69_c00020{left:330.600000px;}
.xa_c00020{left:332.100000px;}
.x6e_c00020{left:333.900000px;}
.x3c_c00020{left:337.200000px;}
.x15_c00020{left:339.000000px;}
.x6a_c00020{left:340.350000px;}
.x80_c00020{left:342.000000px;}
.x5d_c00020{left:344.700000px;}
.x45_c00020{left:346.500000px;}
.x74_c00020{left:349.500000px;}
.x61_c00020{left:350.850000px;}
.x1c_c00020{left:352.350000px;}
.x3d_c00020{left:354.150000px;}
.x6f_c00020{left:356.250000px;}
.x41_c00020{left:357.900000px;}
.x30_c00020{left:360.750000px;}
.x81_c00020{left:361.800000px;}
.x16_c00020{left:366.000000px;}
.x3a_c00020{left:368.100000px;}
.x4d_c00020{left:369.300000px;}
.x62_c00020{left:370.650000px;}
.xb_c00020{left:374.250000px;}
.x5e_c00020{left:375.300000px;}
.x7b_c00020{left:376.950000px;}
.x29_c00020{left:379.050000px;}
.x65_c00020{left:381.300000px;}
.x59_c00020{left:388.500000px;}
.x63_c00020{left:390.150000px;}
.x66_c00020{left:396.750000px;}
.x7c_c00020{left:398.100000px;}
.x96_c00020{left:415.800000px;}
.xcc_c00020{left:417.300000px;}
.xdf_c00020{left:418.500000px;}
.x114_c00020{left:419.850000px;}
.x127_c00020{left:420.900000px;}
.x135_c00020{left:421.950000px;}
.x140_c00020{left:423.000000px;}
.x14f_c00020{left:424.050000px;}
.x11f_c00020{left:427.650000px;}
.xc2_c00020{left:431.700000px;}
.xed_c00020{left:433.050000px;}
.xb5_c00020{left:434.550000px;}
.x115_c00020{left:436.350000px;}
.x97_c00020{left:437.400000px;}
.x116_c00020{left:440.250000px;}
.x143_c00020{left:441.450000px;}
.xff_c00020{left:442.500000px;}
.x105_c00020{left:444.750000px;}
.x151_c00020{left:446.400000px;}
.x12f_c00020{left:447.750000px;}
.xb2_c00020{left:449.100000px;}
.xbc_c00020{left:450.450000px;}
.xab_c00020{left:451.500000px;}
.x14c_c00020{left:452.550000px;}
.xee_c00020{left:455.400000px;}
.x132_c00020{left:456.450000px;}
.xc3_c00020{left:457.650000px;}
.xb6_c00020{left:459.750000px;}
.x9e_c00020{left:461.550000px;}
.x133_c00020{left:463.350000px;}
.xe0_c00020{left:468.450000px;}
.xb3_c00020{left:469.650000px;}
.x98_c00020{left:470.850000px;}
.x152_c00020{left:472.350000px;}
.xc4_c00020{left:474.900000px;}
.x122_c00020{left:476.400000px;}
.x11b_c00020{left:477.450000px;}
.xcd_c00020{left:480.600000px;}
.xa6_c00020{left:482.100000px;}
.x102_c00020{left:484.350000px;}
.xf3_c00020{left:485.400000px;}
.xbd_c00020{left:486.750000px;}
.x130_c00020{left:489.150000px;}
.x117_c00020{left:490.350000px;}
.x9f_c00020{left:492.150000px;}
.xe5_c00020{left:494.400000px;}
.x128_c00020{left:497.100000px;}
.xfb_c00020{left:498.900000px;}
.x110_c00020{left:501.000000px;}
.x134_c00020{left:502.050000px;}
.xef_c00020{left:503.550000px;}
.x13c_c00020{left:504.750000px;}
.x129_c00020{left:506.100000px;}
.xd7_c00020{left:507.150000px;}
.xe1_c00020{left:509.100000px;}
.xac_c00020{left:510.150000px;}
.xb4_c00020{left:512.100000px;}
.xeb_c00020{left:513.900000px;}
.xce_c00020{left:515.850000px;}
.xb7_c00020{left:518.400000px;}
.xbe_c00020{left:522.000000px;}
.x125_c00020{left:523.200000px;}
.xdb_c00020{left:524.550000px;}
.x111_c00020{left:527.250000px;}
.x99_c00020{left:529.500000px;}
.xfc_c00020{left:530.550000px;}
.xec_c00020{left:532.650000px;}
.xcf_c00020{left:535.650000px;}
.x149_c00020{left:537.000000px;}
.xbf_c00020{left:538.950000px;}
.x108_c00020{left:540.450000px;}
.x136_c00020{left:541.500000px;}
.x131_c00020{left:542.850000px;}
.xad_c00020{left:544.650000px;}
.xe6_c00020{left:546.600000px;}
.xc5_c00020{left:547.650000px;}
.x106_c00020{left:549.600000px;}
.xf0_c00020{left:551.850000px;}
.x141_c00020{left:552.900000px;}
.xa0_c00020{left:555.150000px;}
.x10b_c00020{left:557.700000px;}
.xc0_c00020{left:559.050000px;}
.x100_c00020{left:560.250000px;}
.x14d_c00020{left:561.300000px;}
.xb8_c00020{left:562.950000px;}
.xae_c00020{left:565.500000px;}
.x10c_c00020{left:567.000000px;}
.x9a_c00020{left:568.050000px;}
.x145_c00020{left:570.000000px;}
.x123_c00020{left:572.400000px;}
.x14a_c00020{left:573.750000px;}
.xd0_c00020{left:576.000000px;}
.xf4_c00020{left:577.650000px;}
.x147_c00020{left:581.100000px;}
.xa7_c00020{left:582.900000px;}
.x12a_c00020{left:584.850000px;}
.xdc_c00020{left:586.200000px;}
.x113_c00020{left:587.550000px;}
.x13d_c00020{left:589.650000px;}
.x101_c00020{left:590.850000px;}
.xe2_c00020{left:594.450000px;}
.x142_c00020{left:595.950000px;}
.xc6_c00020{left:597.450000px;}
.xe7_c00020{left:598.800000px;}
.xa1_c00020{left:601.200000px;}
.x137_c00020{left:602.550000px;}
.x126_c00020{left:603.750000px;}
.xfd_c00020{left:606.450000px;}
.x11c_c00020{left:607.800000px;}
.xd8_c00020{left:610.050000px;}
.xe8_c00020{left:611.400000px;}
.x148_c00020{left:612.900000px;}
.xc7_c00020{left:615.150000px;}
.x12c_c00020{left:616.950000px;}
.x124_c00020{left:618.900000px;}
.x109_c00020{left:620.400000px;}
.x139_c00020{left:621.600000px;}
.xf5_c00020{left:623.700000px;}
.xb9_c00020{left:625.650000px;}
.xaf_c00020{left:627.000000px;}
.xf1_c00020{left:628.050000px;}
.x11d_c00020{left:629.400000px;}
.x12b_c00020{left:631.950000px;}
.x146_c00020{left:633.450000px;}
.xd4_c00020{left:635.550000px;}
.x9b_c00020{left:637.200000px;}
.x12d_c00020{left:639.600000px;}
.xd1_c00020{left:640.800000px;}
.xf6_c00020{left:643.500000px;}
.xa8_c00020{left:644.850000px;}
.xb0_c00020{left:646.050000px;}
.x118_c00020{left:647.400000px;}
.xa2_c00020{left:649.800000px;}
.x10d_c00020{left:651.150000px;}
.xd2_c00020{left:653.100000px;}
.xc8_c00020{left:655.050000px;}
.xd5_c00020{left:656.100000px;}
.x11e_c00020{left:657.450000px;}
.x103_c00020{left:658.950000px;}
.xe9_c00020{left:660.300000px;}
.x9c_c00020{left:662.100000px;}
.x14b_c00020{left:663.450000px;}
.xba_c00020{left:666.000000px;}
.x107_c00020{left:667.200000px;}
.xa3_c00020{left:669.300000px;}
.xa9_c00020{left:672.150000px;}
.x121_c00020{left:673.800000px;}
.x104_c00020{left:674.850000px;}
.xc9_c00020{left:676.650000px;}
.x144_c00020{left:678.000000px;}
.x120_c00020{left:680.400000px;}
.xd9_c00020{left:681.750000px;}
.xf7_c00020{left:683.100000px;}
.xfe_c00020{left:685.650000px;}
.xf2_c00020{left:687.750000px;}
.x119_c00020{left:689.550000px;}
.xf8_c00020{left:691.800000px;}
.x13e_c00020{left:693.300000px;}
.xd6_c00020{left:695.400000px;}
.x10a_c00020{left:697.050000px;}
.xd3_c00020{left:698.100000px;}
.xa4_c00020{left:699.150000px;}
.xca_c00020{left:700.350000px;}
.x13a_c00020{left:702.000000px;}
.xdd_c00020{left:703.200000px;}
.x154_c00020{left:704.550000px;}
.xe3_c00020{left:705.750000px;}
.xb1_c00020{left:707.550000px;}
.xf9_c00020{left:709.050000px;}
.xc1_c00020{left:710.550000px;}
.x153_c00020{left:712.500000px;}
.x10e_c00020{left:714.150000px;}
.x112_c00020{left:715.650000px;}
.xbb_c00020{left:717.150000px;}
.x138_c00020{left:718.800000px;}
.xcb_c00020{left:720.450000px;}
.xfa_c00020{left:723.450000px;}
.x13b_c00020{left:726.150000px;}
.x9d_c00020{left:727.950000px;}
.xaa_c00020{left:729.750000px;}
.x11a_c00020{left:732.750000px;}
.xea_c00020{left:733.800000px;}
.x14e_c00020{left:734.850000px;}
.xe4_c00020{left:736.050000px;}
.xa5_c00020{left:738.000000px;}
.xda_c00020{left:740.550000px;}
.x4_c00020{left:742.500000px;}
.xde_c00020{left:744.600000px;}
.x10f_c00020{left:746.850000px;}
.x12e_c00020{left:747.900000px;}
.x13f_c00020{left:755.250000px;}
.x150_c00020{left:768.150000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.wse_c00020{word-spacing:-5.497076pt;}
.ws6_c00020{word-spacing:-5.303867pt;}
.wsf_c00020{word-spacing:-5.256410pt;}
.ws3_c00020{word-spacing:-4.747889pt;}
.ws4_c00020{word-spacing:-4.384649pt;}
.wsd_c00020{word-spacing:-3.079328pt;}
.wsc_c00020{word-spacing:-2.838609pt;}
.wsb_c00020{word-spacing:-0.573477pt;}
.ws9_c00020{word-spacing:-0.158730pt;}
.ws10_c00020{word-spacing:0.000000pt;}
.ws7_c00020{word-spacing:0.130719pt;}
.ws5_c00020{word-spacing:3.333333pt;}
.ws2_c00020{word-spacing:10.735435pt;}
.ws8_c00020{word-spacing:14.074074pt;}
.wsa_c00020{word-spacing:16.078895pt;}
.ws0_c00020{word-spacing:40.222222pt;}
.ws1_c00020{word-spacing:66.666667pt;}
._0_c00020{width:36.666667pt;}
.fs6_c00020{font-size:16.000000pt;}
.fs4_c00020{font-size:26.666667pt;}
.fs7_c00020{font-size:32.000000pt;}
.fs5_c00020{font-size:37.333333pt;}
.fs9_c00020{font-size:42.666667pt;}
.fs8_c00020{font-size:48.000000pt;}
.fs3_c00020{font-size:53.333333pt;}
.fs2_c00020{font-size:58.666667pt;}
.fs1_c00020{font-size:64.000000pt;}
.fs0_c00020{font-size:101.333333pt;}
.y0_c00020{bottom:0.000000pt;}
.y38_c00020{bottom:167.066667pt;}
.y70_c00020{bottom:168.666667pt;}
.y37_c00020{bottom:179.866667pt;}
.y6f_c00020{bottom:182.133333pt;}
.y36_c00020{bottom:192.666667pt;}
.y6e_c00020{bottom:198.133333pt;}
.y35_c00020{bottom:204.800000pt;}
.y6d_c00020{bottom:211.866667pt;}
.y34_c00020{bottom:216.266667pt;}
.y6c_c00020{bottom:224.666667pt;}
.y33_c00020{bottom:230.666667pt;}
.y6b_c00020{bottom:237.066667pt;}
.y32_c00020{bottom:244.133333pt;}
.y6a_c00020{bottom:250.533333pt;}
.y31_c00020{bottom:256.000000pt;}
.y69_c00020{bottom:263.333333pt;}
.y30_c00020{bottom:268.133333pt;}
.y68_c00020{bottom:275.866667pt;}
.y2f_c00020{bottom:280.933333pt;}
.y67_c00020{bottom:288.666667pt;}
.y2e_c00020{bottom:293.466667pt;}
.y66_c00020{bottom:301.733333pt;}
.y2d_c00020{bottom:306.533333pt;}
.y2c_c00020{bottom:318.400000pt;}
.y65_c00020{bottom:331.466667pt;}
.y2b_c00020{bottom:331.866667pt;}
.y64_c00020{bottom:344.000000pt;}
.y2a_c00020{bottom:344.666667pt;}
.y63_c00020{bottom:356.133333pt;}
.y29_c00020{bottom:357.466667pt;}
.y62_c00020{bottom:368.933333pt;}
.y61_c00020{bottom:382.400000pt;}
.y60_c00020{bottom:394.533333pt;}
.y26_c00020{bottom:395.733333pt;}
.y5f_c00020{bottom:408.000000pt;}
.y25_c00020{bottom:411.733333pt;}
.y5e_c00020{bottom:420.533333pt;}
.y24_c00020{bottom:427.466667pt;}
.y5d_c00020{bottom:433.333333pt;}
.y23_c00020{bottom:443.466667pt;}
.y5c_c00020{bottom:449.600000pt;}
.y22_c00020{bottom:459.200000pt;}
.y5b_c00020{bottom:462.666667pt;}
.y5a_c00020{bottom:475.200000pt;}
.y21_c00020{bottom:478.000000pt;}
.y59_c00020{bottom:488.266667pt;}
.y20_c00020{bottom:494.933333pt;}
.y58_c00020{bottom:504.533333pt;}
.y1f_c00020{bottom:510.266667pt;}
.y57_c00020{bottom:518.000000pt;}
.y1e_c00020{bottom:526.533333pt;}
.y56_c00020{bottom:531.466667pt;}
.y1d_c00020{bottom:542.266667pt;}
.y55_c00020{bottom:544.000000pt;}
.y54_c00020{bottom:556.800000pt;}
.y1c_c00020{bottom:558.266667pt;}
.y53_c00020{bottom:569.866667pt;}
.y1b_c00020{bottom:574.000000pt;}
.y52_c00020{bottom:582.400000pt;}
.y1a_c00020{bottom:590.000000pt;}
.y51_c00020{bottom:594.933333pt;}
.y19_c00020{bottom:605.733333pt;}
.y50_c00020{bottom:608.000000pt;}
.y4f_c00020{bottom:620.800000pt;}
.y18_c00020{bottom:621.466667pt;}
.y4e_c00020{bottom:633.333333pt;}
.y28_c00020{bottom:637.333333pt;}
.y17_c00020{bottom:640.666667pt;}
.y4d_c00020{bottom:646.133333pt;}
.y27_c00020{bottom:646.666667pt;}
.y16_c00020{bottom:647.066667pt;}
.y4c_c00020{bottom:658.666667pt;}
.y15_c00020{bottom:660.533333pt;}
.y4b_c00020{bottom:671.733333pt;}
.y14_c00020{bottom:676.133333pt;}
.y4a_c00020{bottom:683.866667pt;}
.y13_c00020{bottom:696.000000pt;}
.y49_c00020{bottom:696.933333pt;}
.y48_c00020{bottom:709.466667pt;}
.y12_c00020{bottom:715.200000pt;}
.y47_c00020{bottom:722.533333pt;}
.y11_c00020{bottom:731.200000pt;}
.y46_c00020{bottom:735.333333pt;}
.y10_c00020{bottom:750.666667pt;}
.y45_c00020{bottom:751.733333pt;}
.y44_c00020{bottom:764.800000pt;}
.yf_c00020{bottom:766.933333pt;}
.y43_c00020{bottom:777.600000pt;}
.ye_c00020{bottom:782.666667pt;}
.y42_c00020{bottom:790.133333pt;}
.yd_c00020{bottom:802.266667pt;}
.y41_c00020{bottom:802.933333pt;}
.y40_c00020{bottom:816.000000pt;}
.yc_c00020{bottom:818.266667pt;}
.y3f_c00020{bottom:828.133333pt;}
.yb_c00020{bottom:838.000000pt;}
.y3e_c00020{bottom:840.933333pt;}
.ya_c00020{bottom:853.733333pt;}
.y9_c00020{bottom:873.600000pt;}
.y8_c00020{bottom:889.600000pt;}
.y3d_c00020{bottom:893.066667pt;}
.y7_c00020{bottom:908.800000pt;}
.y3c_c00020{bottom:909.066667pt;}
.y6_c00020{bottom:925.066667pt;}
.y3b_c00020{bottom:932.400000pt;}
.y5_c00020{bottom:944.666667pt;}
.y3a_c00020{bottom:948.400000pt;}
.y4_c00020{bottom:960.666667pt;}
.y39_c00020{bottom:964.133333pt;}
.y3_c00020{bottom:980.133333pt;}
.y2_c00020{bottom:995.866667pt;}
.y1_c00020{bottom:1041.600000pt;}
.h8_c00020{height:16.000000pt;}
.h6_c00020{height:26.666667pt;}
.h9_c00020{height:32.000000pt;}
.h7_c00020{height:37.333333pt;}
.hb_c00020{height:42.666667pt;}
.ha_c00020{height:48.000000pt;}
.h5_c00020{height:53.333333pt;}
.h4_c00020{height:58.666667pt;}
.h3_c00020{height:64.000000pt;}
.h2_c00020{height:101.333333pt;}
.h1_c00020{height:1131.333333pt;}
.h0_c00020{height:1131.520020pt;}
.w0_c00020{width:843.200032pt;}
.w1_c00020{width:843.333333pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:54.133333pt;}
.x79_c00020{left:55.333333pt;}
.x75_c00020{left:64.666667pt;}
.x94_c00020{left:67.600000pt;}
.x4e_c00020{left:68.533333pt;}
.x5a_c00020{left:69.866667pt;}
.x93_c00020{left:80.666667pt;}
.x42_c00020{left:82.266667pt;}
.xc_c00020{left:83.333333pt;}
.x58_c00020{left:84.800000pt;}
.x56_c00020{left:87.066667pt;}
.x52_c00020{left:88.666667pt;}
.x8b_c00020{left:89.600000pt;}
.x5f_c00020{left:91.066667pt;}
.x83_c00020{left:92.400000pt;}
.x67_c00020{left:95.333333pt;}
.x92_c00020{left:97.200000pt;}
.x5_c00020{left:98.533333pt;}
.x10_c00020{left:100.133333pt;}
.x3e_c00020{left:101.466667pt;}
.x1d_c00020{left:103.333333pt;}
.x7d_c00020{left:105.200000pt;}
.x4f_c00020{left:108.800000pt;}
.x53_c00020{left:112.666667pt;}
.x17_c00020{left:113.866667pt;}
.x6b_c00020{left:119.200000pt;}
.x32_c00020{left:120.400000pt;}
.x1e_c00020{left:121.600000pt;}
.x24_c00020{left:123.200000pt;}
.x3f_c00020{left:124.133333pt;}
.x50_c00020{left:127.733333pt;}
.x48_c00020{left:128.933333pt;}
.x88_c00020{left:130.000000pt;}
.x86_c00020{left:131.200000pt;}
.x84_c00020{left:133.066667pt;}
.x31_c00020{left:135.066667pt;}
.x91_c00020{left:136.533333pt;}
.xd_c00020{left:137.733333pt;}
.x5b_c00020{left:138.933333pt;}
.x49_c00020{left:139.866667pt;}
.x2a_c00020{left:141.733333pt;}
.x68_c00020{left:142.666667pt;}
.x95_c00020{left:144.933333pt;}
.x89_c00020{left:146.266667pt;}
.x8c_c00020{left:147.466667pt;}
.x8d_c00020{left:149.733333pt;}
.x18_c00020{left:150.933333pt;}
.x1f_c00020{left:152.933333pt;}
.x71_c00020{left:154.533333pt;}
.x85_c00020{left:155.733333pt;}
.x40_c00020{left:156.800000pt;}
.x6_c00020{left:158.000000pt;}
.x25_c00020{left:161.866667pt;}
.x2c_c00020{left:163.600000pt;}
.x2_c00020{left:166.133333pt;}
.x5c_c00020{left:167.066667pt;}
.x4a_c00020{left:168.000000pt;}
.x19_c00020{left:169.466667pt;}
.x37_c00020{left:170.666667pt;}
.x8f_c00020{left:171.866667pt;}
.x7_c00020{left:174.266667pt;}
.x11_c00020{left:175.333333pt;}
.x33_c00020{left:178.000000pt;}
.x46_c00020{left:179.200000pt;}
.x76_c00020{left:181.066667pt;}
.x7e_c00020{left:184.000000pt;}
.x57_c00020{left:185.866667pt;}
.x54_c00020{left:186.933333pt;}
.x12_c00020{left:189.066667pt;}
.x20_c00020{left:194.800000pt;}
.x87_c00020{left:196.800000pt;}
.x8a_c00020{left:198.400000pt;}
.xe_c00020{left:200.400000pt;}
.x70_c00020{left:203.733333pt;}
.x43_c00020{left:206.133333pt;}
.x55_c00020{left:209.600000pt;}
.x51_c00020{left:211.200000pt;}
.x77_c00020{left:212.400000pt;}
.x26_c00020{left:213.733333pt;}
.x21_c00020{left:214.933333pt;}
.x60_c00020{left:216.400000pt;}
.x4b_c00020{left:217.866667pt;}
.x1a_c00020{left:218.800000pt;}
.x34_c00020{left:220.266667pt;}
.x6c_c00020{left:221.600000pt;}
.x2b_c00020{left:223.066667pt;}
.x8_c00020{left:224.800000pt;}
.x35_c00020{left:229.200000pt;}
.x1b_c00020{left:230.266667pt;}
.x82_c00020{left:231.600000pt;}
.x78_c00020{left:232.533333pt;}
.x13_c00020{left:234.133333pt;}
.x7f_c00020{left:237.733333pt;}
.x72_c00020{left:238.666667pt;}
.x27_c00020{left:240.000000pt;}
.x22_c00020{left:241.866667pt;}
.x38_c00020{left:244.266667pt;}
.x2d_c00020{left:245.466667pt;}
.x73_c00020{left:247.600000pt;}
.x44_c00020{left:250.666667pt;}
.x47_c00020{left:252.266667pt;}
.x90_c00020{left:253.466667pt;}
.x6d_c00020{left:254.933333pt;}
.x9_c00020{left:257.066667pt;}
.x14_c00020{left:261.066667pt;}
.x4c_c00020{left:262.000000pt;}
.x3_c00020{left:265.066667pt;}
.x28_c00020{left:268.133333pt;}
.x2e_c00020{left:269.200000pt;}
.x8e_c00020{left:272.666667pt;}
.x3b_c00020{left:276.400000pt;}
.x39_c00020{left:278.533333pt;}
.x64_c00020{left:281.733333pt;}
.x2f_c00020{left:282.933333pt;}
.xf_c00020{left:284.266667pt;}
.x7a_c00020{left:288.933333pt;}
.x23_c00020{left:289.866667pt;}
.x36_c00020{left:292.266667pt;}
.x69_c00020{left:293.866667pt;}
.xa_c00020{left:295.200000pt;}
.x6e_c00020{left:296.800000pt;}
.x3c_c00020{left:299.733333pt;}
.x15_c00020{left:301.333333pt;}
.x6a_c00020{left:302.533333pt;}
.x80_c00020{left:304.000000pt;}
.x5d_c00020{left:306.400000pt;}
.x45_c00020{left:308.000000pt;}
.x74_c00020{left:310.666667pt;}
.x61_c00020{left:311.866667pt;}
.x1c_c00020{left:313.200000pt;}
.x3d_c00020{left:314.800000pt;}
.x6f_c00020{left:316.666667pt;}
.x41_c00020{left:318.133333pt;}
.x30_c00020{left:320.666667pt;}
.x81_c00020{left:321.600000pt;}
.x16_c00020{left:325.333333pt;}
.x3a_c00020{left:327.200000pt;}
.x4d_c00020{left:328.266667pt;}
.x62_c00020{left:329.466667pt;}
.xb_c00020{left:332.666667pt;}
.x5e_c00020{left:333.600000pt;}
.x7b_c00020{left:335.066667pt;}
.x29_c00020{left:336.933333pt;}
.x65_c00020{left:338.933333pt;}
.x59_c00020{left:345.333333pt;}
.x63_c00020{left:346.800000pt;}
.x66_c00020{left:352.666667pt;}
.x7c_c00020{left:353.866667pt;}
.x96_c00020{left:369.600000pt;}
.xcc_c00020{left:370.933333pt;}
.xdf_c00020{left:372.000000pt;}
.x114_c00020{left:373.200000pt;}
.x127_c00020{left:374.133333pt;}
.x135_c00020{left:375.066667pt;}
.x140_c00020{left:376.000000pt;}
.x14f_c00020{left:376.933333pt;}
.x11f_c00020{left:380.133333pt;}
.xc2_c00020{left:383.733333pt;}
.xed_c00020{left:384.933333pt;}
.xb5_c00020{left:386.266667pt;}
.x115_c00020{left:387.866667pt;}
.x97_c00020{left:388.800000pt;}
.x116_c00020{left:391.333333pt;}
.x143_c00020{left:392.400000pt;}
.xff_c00020{left:393.333333pt;}
.x105_c00020{left:395.333333pt;}
.x151_c00020{left:396.800000pt;}
.x12f_c00020{left:398.000000pt;}
.xb2_c00020{left:399.200000pt;}
.xbc_c00020{left:400.400000pt;}
.xab_c00020{left:401.333333pt;}
.x14c_c00020{left:402.266667pt;}
.xee_c00020{left:404.800000pt;}
.x132_c00020{left:405.733333pt;}
.xc3_c00020{left:406.800000pt;}
.xb6_c00020{left:408.666667pt;}
.x9e_c00020{left:410.266667pt;}
.x133_c00020{left:411.866667pt;}
.xe0_c00020{left:416.400000pt;}
.xb3_c00020{left:417.466667pt;}
.x98_c00020{left:418.533333pt;}
.x152_c00020{left:419.866667pt;}
.xc4_c00020{left:422.133333pt;}
.x122_c00020{left:423.466667pt;}
.x11b_c00020{left:424.400000pt;}
.xcd_c00020{left:427.200000pt;}
.xa6_c00020{left:428.533333pt;}
.x102_c00020{left:430.533333pt;}
.xf3_c00020{left:431.466667pt;}
.xbd_c00020{left:432.666667pt;}
.x130_c00020{left:434.800000pt;}
.x117_c00020{left:435.866667pt;}
.x9f_c00020{left:437.466667pt;}
.xe5_c00020{left:439.466667pt;}
.x128_c00020{left:441.866667pt;}
.xfb_c00020{left:443.466667pt;}
.x110_c00020{left:445.333333pt;}
.x134_c00020{left:446.266667pt;}
.xef_c00020{left:447.600000pt;}
.x13c_c00020{left:448.666667pt;}
.x129_c00020{left:449.866667pt;}
.xd7_c00020{left:450.800000pt;}
.xe1_c00020{left:452.533333pt;}
.xac_c00020{left:453.466667pt;}
.xb4_c00020{left:455.200000pt;}
.xeb_c00020{left:456.800000pt;}
.xce_c00020{left:458.533333pt;}
.xb7_c00020{left:460.800000pt;}
.xbe_c00020{left:464.000000pt;}
.x125_c00020{left:465.066667pt;}
.xdb_c00020{left:466.266667pt;}
.x111_c00020{left:468.666667pt;}
.x99_c00020{left:470.666667pt;}
.xfc_c00020{left:471.600000pt;}
.xec_c00020{left:473.466667pt;}
.xcf_c00020{left:476.133333pt;}
.x149_c00020{left:477.333333pt;}
.xbf_c00020{left:479.066667pt;}
.x108_c00020{left:480.400000pt;}
.x136_c00020{left:481.333333pt;}
.x131_c00020{left:482.533333pt;}
.xad_c00020{left:484.133333pt;}
.xe6_c00020{left:485.866667pt;}
.xc5_c00020{left:486.800000pt;}
.x106_c00020{left:488.533333pt;}
.xf0_c00020{left:490.533333pt;}
.x141_c00020{left:491.466667pt;}
.xa0_c00020{left:493.466667pt;}
.x10b_c00020{left:495.733333pt;}
.xc0_c00020{left:496.933333pt;}
.x100_c00020{left:498.000000pt;}
.x14d_c00020{left:498.933333pt;}
.xb8_c00020{left:500.400000pt;}
.xae_c00020{left:502.666667pt;}
.x10c_c00020{left:504.000000pt;}
.x9a_c00020{left:504.933333pt;}
.x145_c00020{left:506.666667pt;}
.x123_c00020{left:508.800000pt;}
.x14a_c00020{left:510.000000pt;}
.xd0_c00020{left:512.000000pt;}
.xf4_c00020{left:513.466667pt;}
.x147_c00020{left:516.533333pt;}
.xa7_c00020{left:518.133333pt;}
.x12a_c00020{left:519.866667pt;}
.xdc_c00020{left:521.066667pt;}
.x113_c00020{left:522.266667pt;}
.x13d_c00020{left:524.133333pt;}
.x101_c00020{left:525.200000pt;}
.xe2_c00020{left:528.400000pt;}
.x142_c00020{left:529.733333pt;}
.xc6_c00020{left:531.066667pt;}
.xe7_c00020{left:532.266667pt;}
.xa1_c00020{left:534.400000pt;}
.x137_c00020{left:535.600000pt;}
.x126_c00020{left:536.666667pt;}
.xfd_c00020{left:539.066667pt;}
.x11c_c00020{left:540.266667pt;}
.xd8_c00020{left:542.266667pt;}
.xe8_c00020{left:543.466667pt;}
.x148_c00020{left:544.800000pt;}
.xc7_c00020{left:546.800000pt;}
.x12c_c00020{left:548.400000pt;}
.x124_c00020{left:550.133333pt;}
.x109_c00020{left:551.466667pt;}
.x139_c00020{left:552.533333pt;}
.xf5_c00020{left:554.400000pt;}
.xb9_c00020{left:556.133333pt;}
.xaf_c00020{left:557.333333pt;}
.xf1_c00020{left:558.266667pt;}
.x11d_c00020{left:559.466667pt;}
.x12b_c00020{left:561.733333pt;}
.x146_c00020{left:563.066667pt;}
.xd4_c00020{left:564.933333pt;}
.x9b_c00020{left:566.400000pt;}
.x12d_c00020{left:568.533333pt;}
.xd1_c00020{left:569.600000pt;}
.xf6_c00020{left:572.000000pt;}
.xa8_c00020{left:573.200000pt;}
.xb0_c00020{left:574.266667pt;}
.x118_c00020{left:575.466667pt;}
.xa2_c00020{left:577.600000pt;}
.x10d_c00020{left:578.800000pt;}
.xd2_c00020{left:580.533333pt;}
.xc8_c00020{left:582.266667pt;}
.xd5_c00020{left:583.200000pt;}
.x11e_c00020{left:584.400000pt;}
.x103_c00020{left:585.733333pt;}
.xe9_c00020{left:586.933333pt;}
.x9c_c00020{left:588.533333pt;}
.x14b_c00020{left:589.733333pt;}
.xba_c00020{left:592.000000pt;}
.x107_c00020{left:593.066667pt;}
.xa3_c00020{left:594.933333pt;}
.xa9_c00020{left:597.466667pt;}
.x121_c00020{left:598.933333pt;}
.x104_c00020{left:599.866667pt;}
.xc9_c00020{left:601.466667pt;}
.x144_c00020{left:602.666667pt;}
.x120_c00020{left:604.800000pt;}
.xd9_c00020{left:606.000000pt;}
.xf7_c00020{left:607.200000pt;}
.xfe_c00020{left:609.466667pt;}
.xf2_c00020{left:611.333333pt;}
.x119_c00020{left:612.933333pt;}
.xf8_c00020{left:614.933333pt;}
.x13e_c00020{left:616.266667pt;}
.xd6_c00020{left:618.133333pt;}
.x10a_c00020{left:619.600000pt;}
.xd3_c00020{left:620.533333pt;}
.xa4_c00020{left:621.466667pt;}
.xca_c00020{left:622.533333pt;}
.x13a_c00020{left:624.000000pt;}
.xdd_c00020{left:625.066667pt;}
.x154_c00020{left:626.266667pt;}
.xe3_c00020{left:627.333333pt;}
.xb1_c00020{left:628.933333pt;}
.xf9_c00020{left:630.266667pt;}
.xc1_c00020{left:631.600000pt;}
.x153_c00020{left:633.333333pt;}
.x10e_c00020{left:634.800000pt;}
.x112_c00020{left:636.133333pt;}
.xbb_c00020{left:637.466667pt;}
.x138_c00020{left:638.933333pt;}
.xcb_c00020{left:640.400000pt;}
.xfa_c00020{left:643.066667pt;}
.x13b_c00020{left:645.466667pt;}
.x9d_c00020{left:647.066667pt;}
.xaa_c00020{left:648.666667pt;}
.x11a_c00020{left:651.333333pt;}
.xea_c00020{left:652.266667pt;}
.x14e_c00020{left:653.200000pt;}
.xe4_c00020{left:654.266667pt;}
.xa5_c00020{left:656.000000pt;}
.xda_c00020{left:658.266667pt;}
.x4_c00020{left:660.000000pt;}
.xde_c00020{left:661.866667pt;}
.x10f_c00020{left:663.866667pt;}
.x12e_c00020{left:664.800000pt;}
.x13f_c00020{left:671.333333pt;}
.x150_c00020{left:682.800000pt;}
}





/* 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_c00021 {
    display:none;
  }
  .loading-indicator_c00021.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00021 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_c00021 { 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_c00021" -> "#page-container .classname_c00021")
 */
.pf_c00021 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00021 { /* 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_c00021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00021 { /* 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_c00021 { /* 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_c00021 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00021 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00021 {overflow:visible;}
  }
}
.c_c00021 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00021 { /* 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_c00021:after { /* webkit #35443 */
  content: '';
}
.t_c00021:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00021 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 */
}
.__c00021 { /* 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_c00021 { /* info for Javascript */
  display:none;
}
.l_c00021 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00021 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00021 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00021: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_c00021 {
    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_c00021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00021.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_c00021 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00021;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.000000;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;}
.m11d_c00021{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00021{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mac_c00021{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00021{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00021{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.ma_c00021{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m108_c00021{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00021{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00021{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m38_c00021{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m64_c00021{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00021{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m14_c00021{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00021{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me1_c00021{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00021{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mad_c00021{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00021{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m56_c00021{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mf_c00021{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m55_c00021{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.m39_c00021{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00021{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m112_c00021{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00021{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mef_c00021{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00021{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00021{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00021{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m123_c00021{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m53_c00021{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m46_c00021{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00021{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m48_c00021{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m103_c00021{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00021{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m58_c00021{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mca_c00021{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.me3_c00021{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00021{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m37_c00021{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m50_c00021{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m101_c00021{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m45_c00021{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mae_c00021{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.maf_c00021{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m33_c00021{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00021{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00021{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m49_c00021{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m62_c00021{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00021{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00021{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m105_c00021{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00021{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00021{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00021{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00021{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00021{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m21_c00021{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m40_c00021{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00021{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00021{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m102_c00021{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m96_c00021{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00021{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mb_c00021{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00021{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m70_c00021{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m74_c00021{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00021{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m22_c00021{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00021{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m83_c00021{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m95_c00021{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00021{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m43_c00021{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m60_c00021{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.md9_c00021{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me_c00021{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m61_c00021{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00021{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m82_c00021{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00021{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00021{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00021{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00021{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00021{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.maa_c00021{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m90_c00021{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00021{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00021{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00021{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00021{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m32_c00021{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00021{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00021{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m106_c00021{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m71_c00021{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m78_c00021{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m17_c00021{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m80_c00021{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.md_c00021{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m107_c00021{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.me4_c00021{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00021{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00021{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m34_c00021{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00021{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00021{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m69_c00021{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.meb_c00021{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m24_c00021{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m47_c00021{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00021{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m57_c00021{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m97_c00021{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00021{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m30_c00021{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m15_c00021{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00021{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00021{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00021{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.md0_c00021{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00021{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00021{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00021{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00021{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m104_c00021{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00021{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mda_c00021{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m91_c00021{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m63_c00021{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00021{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md2_c00021{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md4_c00021{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00021{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4_c00021{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m35_c00021{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m31_c00021{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m81_c00021{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00021{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00021{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8_c00021{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00021{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m28_c00021{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me8_c00021{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md5_c00021{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mce_c00021{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m119_c00021{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00021{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md8_c00021{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md3_c00021{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00021{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m110_c00021{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00021{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m23_c00021{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m36_c00021{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m68_c00021{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00021{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m10_c00021{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00021{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me9_c00021{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6_c00021{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m72_c00021{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mee_c00021{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00021{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00021{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00021{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mea_c00021{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00021{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m54_c00021{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me2_c00021{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m59_c00021{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m11_c00021{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m89_c00021{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00021{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00021{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00021{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.md7_c00021{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m75_c00021{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9_c00021{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m12_c00021{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m51_c00021{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00021{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00021{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00021{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00021{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m41_c00021{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00021{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.med_c00021{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00021{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m87_c00021{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mab_c00021{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00021{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m42_c00021{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00021{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00021{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m98_c00021{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.me7_c00021{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m26_c00021{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m77_c00021{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00021{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00021{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00021{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me5_c00021{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3_c00021{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me0_c00021{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m16_c00021{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00021{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md1_c00021{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m67_c00021{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00021{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00021{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mba_c00021{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m94_c00021{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00021{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2_c00021{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m20_c00021{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m92_c00021{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m66_c00021{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00021{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00021{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md6_c00021{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m86_c00021{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00021{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00021{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mde_c00021{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00021{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00021{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00021{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00021{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mec_c00021{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00021{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00021{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m85_c00021{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00021{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00021{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m76_c00021{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me6_c00021{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m52_c00021{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00021{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m99_c00021{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m100_c00021{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00021{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00021{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m84_c00021{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m13_c00021{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m65_c00021{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00021{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7_c00021{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m79_c00021{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00021{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00021{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m19_c00021{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00021{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m18_c00021{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00021{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00021{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m109_c00021{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00021{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00021{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00021{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m73_c00021{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mff_c00021{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m113_c00021{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m88_c00021{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m27_c00021{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m44_c00021{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00021{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m29_c00021{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00021{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m120_c00021{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00021{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00021{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc_c00021{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m111_c00021{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m115_c00021{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m118_c00021{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m116_c00021{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m25_c00021{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m114_c00021{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00021{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m93_c00021{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m121_c00021{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00021{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m122_c00021{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00021{transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);}
.m117_c00021{transform:matrix(11.076000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(11.076000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(11.076000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls0_c00021{letter-spacing:0.000000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{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__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00021{word-spacing:-11.724138px;}
.ws2_c00021{word-spacing:-8.110254px;}
.ws4_c00021{word-spacing:0.000000px;}
.ws0_c00021{word-spacing:7.242038px;}
.ws3_c00021{word-spacing:904.583333px;}
._0_c00021{width:45.955414px;}
.fc0_c00021{color:transparent;}
.fs5_c00021{font-size:24.000000px;}
.fs6_c00021{font-size:48.000000px;}
.fs4_c00021{font-size:54.000000px;}
.fs1_c00021{font-size:60.000000px;}
.fs2_c00021{font-size:66.000000px;}
.fs3_c00021{font-size:72.000000px;}
.fs0_c00021{font-size:78.000000px;}
.y0_c00021{bottom:0.000000px;}
.y6d_c00021{bottom:196.200000px;}
.y66_c00021{bottom:196.950000px;}
.y65_c00021{bottom:219.450000px;}
.y6c_c00021{bottom:227.550000px;}
.y6b_c00021{bottom:229.350000px;}
.y64_c00021{bottom:234.150000px;}
.y6a_c00021{bottom:248.100000px;}
.y63_c00021{bottom:248.250000px;}
.y62_c00021{bottom:263.400000px;}
.y69_c00021{bottom:267.000000px;}
.y61_c00021{bottom:277.500000px;}
.y60_c00021{bottom:290.850000px;}
.y68_c00021{bottom:291.150000px;}
.y5f_c00021{bottom:305.250000px;}
.y5e_c00021{bottom:319.350000px;}
.y67_c00021{bottom:321.450000px;}
.y5d_c00021{bottom:333.750000px;}
.y39_c00021{bottom:339.150000px;}
.y38_c00021{bottom:347.100000px;}
.y5c_c00021{bottom:348.450000px;}
.y37_c00021{bottom:356.700000px;}
.y5b_c00021{bottom:362.850000px;}
.y36_c00021{bottom:374.400000px;}
.y5a_c00021{bottom:377.250000px;}
.y59_c00021{bottom:391.350000px;}
.y35_c00021{bottom:391.650000px;}
.y58_c00021{bottom:405.750000px;}
.y34_c00021{bottom:415.800000px;}
.y57_c00021{bottom:419.850000px;}
.y33_c00021{bottom:433.800000px;}
.y56_c00021{bottom:434.250000px;}
.y55_c00021{bottom:447.900000px;}
.y32_c00021{bottom:451.050000px;}
.y54_c00021{bottom:462.600000px;}
.y31_c00021{bottom:472.950000px;}
.y53_c00021{bottom:475.500000px;}
.y52_c00021{bottom:490.650000px;}
.y30_c00021{bottom:490.950000px;}
.y51_c00021{bottom:505.050000px;}
.y2f_c00021{bottom:508.650000px;}
.y50_c00021{bottom:519.150000px;}
.y2e_c00021{bottom:526.350000px;}
.y4f_c00021{bottom:533.100000px;}
.y4e_c00021{bottom:547.500000px;}
.y2d_c00021{bottom:548.700000px;}
.y4d_c00021{bottom:561.900000px;}
.y2c_c00021{bottom:566.700000px;}
.y4c_c00021{bottom:576.300000px;}
.y2b_c00021{bottom:584.550000px;}
.y4b_c00021{bottom:589.650000px;}
.y2a_c00021{bottom:602.250000px;}
.y4a_c00021{bottom:604.350000px;}
.y49_c00021{bottom:619.050000px;}
.y29_c00021{bottom:620.250000px;}
.y48_c00021{bottom:633.150000px;}
.y28_c00021{bottom:637.500000px;}
.y47_c00021{bottom:647.250000px;}
.y27_c00021{bottom:655.200000px;}
.y46_c00021{bottom:661.950000px;}
.y45_c00021{bottom:676.050000px;}
.y26_c00021{bottom:677.100000px;}
.y44_c00021{bottom:689.700000px;}
.y25_c00021{bottom:695.100000px;}
.y43_c00021{bottom:704.100000px;}
.y24_c00021{bottom:713.100000px;}
.y42_c00021{bottom:718.200000px;}
.y23_c00021{bottom:730.800000px;}
.y41_c00021{bottom:732.600000px;}
.y40_c00021{bottom:746.400000px;}
.y22_c00021{bottom:748.800000px;}
.y3f_c00021{bottom:761.100000px;}
.y21_c00021{bottom:766.500000px;}
.y3e_c00021{bottom:776.550000px;}
.y20_c00021{bottom:788.850000px;}
.y3d_c00021{bottom:789.450000px;}
.y3c_c00021{bottom:804.150000px;}
.y1f_c00021{bottom:806.100000px;}
.y3b_c00021{bottom:818.250000px;}
.y1e_c00021{bottom:828.000000px;}
.y3a_c00021{bottom:832.650000px;}
.y1d_c00021{bottom:846.000000px;}
.y1c_c00021{bottom:863.700000px;}
.y1b_c00021{bottom:886.200000px;}
.ye_c00021{bottom:888.900000px;}
.y1a_c00021{bottom:903.900000px;}
.yd_c00021{bottom:913.500000px;}
.y19_c00021{bottom:921.600000px;}
.yc_c00021{bottom:932.550000px;}
.y18_c00021{bottom:943.500000px;}
.yb_c00021{bottom:950.250000px;}
.y17_c00021{bottom:961.500000px;}
.ya_c00021{bottom:967.950000px;}
.y16_c00021{bottom:983.850000px;}
.y9_c00021{bottom:985.650000px;}
.y15_c00021{bottom:1001.400000px;}
.y8_c00021{bottom:1003.650000px;}
.y14_c00021{bottom:1019.100000px;}
.y7_c00021{bottom:1020.900000px;}
.y13_c00021{bottom:1037.100000px;}
.y6_c00021{bottom:1042.800000px;}
.y12_c00021{bottom:1059.450000px;}
.y5_c00021{bottom:1060.500000px;}
.y11_c00021{bottom:1077.150000px;}
.y4_c00021{bottom:1078.500000px;}
.y10_c00021{bottom:1099.350000px;}
.y3_c00021{bottom:1099.800000px;}
.yf_c00021{bottom:1117.050000px;}
.y2_c00021{bottom:1117.800000px;}
.y1_c00021{bottom:1144.500000px;}
.h7_c00021{height:24.000000px;}
.h8_c00021{height:48.000000px;}
.h6_c00021{height:54.000000px;}
.h3_c00021{height:60.000000px;}
.h4_c00021{height:66.000000px;}
.h5_c00021{height:72.000000px;}
.h2_c00021{height:78.000000px;}
.h1_c00021{height:1269.000000px;}
.h0_c00021{height:1269.359985px;}
.w0_c00021{width:948.600036px;}
.w1_c00021{width:948.750000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:183.900000px;}
.xd1_c00021{left:185.100000px;}
.x102_c00021{left:193.650000px;}
.xf0_c00021{left:199.800000px;}
.x120_c00021{left:200.850000px;}
.xb_c00021{left:202.350000px;}
.x129_c00021{left:205.200000px;}
.x126_c00021{left:208.350000px;}
.x119_c00021{left:209.550000px;}
.xdf_c00021{left:211.050000px;}
.x11d_c00021{left:212.700000px;}
.xeb_c00021{left:214.350000px;}
.x125_c00021{left:216.150000px;}
.x3_c00021{left:217.800000px;}
.x3e_c00021{left:219.450000px;}
.x16_c00021{left:220.500000px;}
.x1e_c00021{left:221.850000px;}
.xec_c00021{left:223.050000px;}
.x111_c00021{left:224.400000px;}
.xd2_c00021{left:226.500000px;}
.x142_c00021{left:229.350000px;}
.x107_c00021{left:232.500000px;}
.x103_c00021{left:234.000000px;}
.xe0_c00021{left:235.200000px;}
.x133_c00021{left:236.550000px;}
.xfd_c00021{left:238.350000px;}
.xe_c00021{left:240.450000px;}
.x13f_c00021{left:241.800000px;}
.xe5_c00021{left:243.000000px;}
.x1f_c00021{left:244.200000px;}
.x4_c00021{left:245.550000px;}
.x17_c00021{left:247.200000px;}
.xf9_c00021{left:248.550000px;}
.xc_c00021{left:249.900000px;}
.xd7_c00021{left:251.100000px;}
.xf6_c00021{left:254.250000px;}
.x18_c00021{left:256.950000px;}
.x112_c00021{left:258.450000px;}
.x127_c00021{left:260.250000px;}
.xf1_c00021{left:261.750000px;}
.x12e_c00021{left:262.950000px;}
.x26_c00021{left:264.150000px;}
.x134_c00021{left:265.350000px;}
.xf_c00021{left:267.450000px;}
.x13a_c00021{left:268.650000px;}
.x11a_c00021{left:270.000000px;}
.xfe_c00021{left:271.050000px;}
.xd3_c00021{left:273.000000px;}
.x20_c00021{left:275.100000px;}
.x19_c00021{left:276.450000px;}
.x11e_c00021{left:278.250000px;}
.x31_c00021{left:279.900000px;}
.xfa_c00021{left:283.050000px;}
.xf2_c00021{left:285.450000px;}
.x27_c00021{left:286.500000px;}
.x136_c00021{left:288.450000px;}
.x128_c00021{left:289.800000px;}
.x10_c00021{left:291.150000px;}
.x3f_c00021{left:292.500000px;}
.xd_c00021{left:294.900000px;}
.x11f_c00021{left:298.050000px;}
.x5_c00021{left:299.550000px;}
.x13d_c00021{left:301.200000px;}
.x116_c00021{left:302.850000px;}
.xed_c00021{left:304.500000px;}
.x1a_c00021{left:306.000000px;}
.x141_c00021{left:307.050000px;}
.xd8_c00021{left:308.100000px;}
.x11b_c00021{left:309.600000px;}
.xe1_c00021{left:310.800000px;}
.x135_c00021{left:312.450000px;}
.xee_c00021{left:313.500000px;}
.x10b_c00021{left:315.450000px;}
.xf3_c00021{left:316.800000px;}
.x144_c00021{left:318.300000px;}
.x121_c00021{left:320.400000px;}
.xff_c00021{left:322.200000px;}
.xd4_c00021{left:323.700000px;}
.x2c_c00021{left:327.900000px;}
.x1b_c00021{left:329.700000px;}
.x113_c00021{left:331.950000px;}
.xd9_c00021{left:333.000000px;}
.xfb_c00021{left:334.200000px;}
.x11_c00021{left:335.400000px;}
.x12c_c00021{left:337.050000px;}
.x21_c00021{left:338.850000px;}
.x39_c00021{left:341.100000px;}
.xe6_c00021{left:343.050000px;}
.x12f_c00021{left:344.700000px;}
.x22_c00021{left:346.350000px;}
.x117_c00021{left:347.850000px;}
.xda_c00021{left:349.200000px;}
.x122_c00021{left:351.750000px;}
.x13b_c00021{left:352.950000px;}
.x108_c00021{left:354.150000px;}
.x2d_c00021{left:355.950000px;}
.x140_c00021{left:357.750000px;}
.x10e_c00021{left:359.100000px;}
.x32_c00021{left:361.650000px;}
.x2e_c00021{left:363.450000px;}
.x6_c00021{left:364.650000px;}
.x11c_c00021{left:365.700000px;}
.x3a_c00021{left:367.350000px;}
.xfc_c00021{left:368.400000px;}
.x114_c00021{left:370.500000px;}
.x123_c00021{left:371.550000px;}
.xf4_c00021{left:376.200000px;}
.x110_c00021{left:377.400000px;}
.x109_c00021{left:379.350000px;}
.x2f_c00021{left:380.400000px;}
.x7_c00021{left:381.900000px;}
.xe2_c00021{left:384.300000px;}
.x104_c00021{left:385.650000px;}
.x28_c00021{left:388.500000px;}
.x1c_c00021{left:389.850000px;}
.x23_c00021{left:391.350000px;}
.x12_c00021{left:393.300000px;}
.xdb_c00021{left:396.300000px;}
.x130_c00021{left:398.250000px;}
.x36_c00021{left:399.450000px;}
.xe7_c00021{left:401.700000px;}
.x115_c00021{left:403.950000px;}
.x13c_c00021{left:405.450000px;}
.x13_c00021{left:406.650000px;}
.x137_c00021{left:407.700000px;}
.x42_c00021{left:410.850000px;}
.x29_c00021{left:414.450000px;}
.x40_c00021{left:416.550000px;}
.x24_c00021{left:418.650000px;}
.x10a_c00021{left:420.300000px;}
.x37_c00021{left:421.800000px;}
.x131_c00021{left:423.000000px;}
.x8_c00021{left:424.800000px;}
.x2_c00021{left:426.600000px;}
.x10c_c00021{left:428.100000px;}
.x100_c00021{left:429.750000px;}
.x105_c00021{left:430.950000px;}
.x14_c00021{left:432.900000px;}
.x13e_c00021{left:434.550000px;}
.x43_c00021{left:436.350000px;}
.x132_c00021{left:437.700000px;}
.x33_c00021{left:439.050000px;}
.xdc_c00021{left:440.550000px;}
.xf7_c00021{left:443.400000px;}
.x9_c00021{left:445.350000px;}
.x3b_c00021{left:446.550000px;}
.xe3_c00021{left:449.100000px;}
.x124_c00021{left:451.800000px;}
.xd5_c00021{left:453.000000px;}
.xe8_c00021{left:454.950000px;}
.x44_c00021{left:456.900000px;}
.xea_c00021{left:458.100000px;}
.x2a_c00021{left:459.450000px;}
.x25_c00021{left:461.400000px;}
.x41_c00021{left:464.400000px;}
.x34_c00021{left:466.050000px;}
.x3c_c00021{left:467.850000px;}
.x12a_c00021{left:469.500000px;}
.x38_c00021{left:470.850000px;}
.xef_c00021{left:471.900000px;}
.xe4_c00021{left:474.000000px;}
.xd6_c00021{left:475.350000px;}
.x101_c00021{left:476.850000px;}
.xdd_c00021{left:479.400000px;}
.x10f_c00021{left:482.550000px;}
.x138_c00021{left:485.100000px;}
.xe9_c00021{left:486.300000px;}
.xf8_c00021{left:487.650000px;}
.xde_c00021{left:488.700000px;}
.x12b_c00021{left:490.350000px;}
.x35_c00021{left:491.550000px;}
.x30_c00021{left:495.600000px;}
.x10d_c00021{left:498.750000px;}
.x1d_c00021{left:500.100000px;}
.x118_c00021{left:502.200000px;}
.x3d_c00021{left:503.850000px;}
.x12d_c00021{left:505.200000px;}
.xa_c00021{left:506.250000px;}
.x143_c00021{left:507.300000px;}
.x2b_c00021{left:508.350000px;}
.x15_c00021{left:509.550000px;}
.xf5_c00021{left:510.600000px;}
.x106_c00021{left:514.050000px;}
.x45_c00021{left:517.050000px;}
.x139_c00021{left:519.600000px;}
.xb6_c00021{left:542.550000px;}
.x14e_c00021{left:543.600000px;}
.x146_c00021{left:545.700000px;}
.x147_c00021{left:558.300000px;}
.xc5_c00021{left:560.250000px;}
.x99_c00021{left:561.450000px;}
.x73_c00021{left:562.800000px;}
.x6d_c00021{left:573.450000px;}
.x14f_c00021{left:576.300000px;}
.xbf_c00021{left:577.800000px;}
.xa5_c00021{left:578.850000px;}
.x46_c00021{left:579.900000px;}
.x149_c00021{left:584.550000px;}
.xc6_c00021{left:587.550000px;}
.xb4_c00021{left:591.150000px;}
.xc1_c00021{left:594.300000px;}
.x47_c00021{left:595.800000px;}
.x77_c00021{left:597.300000px;}
.x51_c00021{left:598.350000px;}
.x94_c00021{left:602.700000px;}
.x60_c00021{left:606.150000px;}
.x83_c00021{left:609.150000px;}
.x6e_c00021{left:611.250000px;}
.xaf_c00021{left:612.900000px;}
.x6a_c00021{left:615.600000px;}
.xba_c00021{left:617.100000px;}
.x14b_c00021{left:618.600000px;}
.xab_c00021{left:619.800000px;}
.x5a_c00021{left:621.600000px;}
.xb3_c00021{left:622.800000px;}
.x9c_c00021{left:625.200000px;}
.x52_c00021{left:626.400000px;}
.x84_c00021{left:628.950000px;}
.xcc_c00021{left:630.150000px;}
.x6b_c00021{left:631.800000px;}
.x14c_c00021{left:633.300000px;}
.xa3_c00021{left:635.850000px;}
.x48_c00021{left:637.200000px;}
.x65_c00021{left:638.700000px;}
.x7f_c00021{left:640.350000px;}
.x151_c00021{left:641.550000px;}
.xa0_c00021{left:644.250000px;}
.x4f_c00021{left:645.450000px;}
.xbb_c00021{left:646.650000px;}
.x53_c00021{left:649.050000px;}
.xcf_c00021{left:651.000000px;}
.xc7_c00021{left:653.100000px;}
.x5b_c00021{left:656.100000px;}
.xc2_c00021{left:657.300000px;}
.x6f_c00021{left:658.800000px;}
.x9d_c00021{left:660.450000px;}
.x78_c00021{left:662.850000px;}
.x61_c00021{left:664.500000px;}
.x49_c00021{left:666.000000px;}
.x85_c00021{left:670.050000px;}
.xbc_c00021{left:671.850000px;}
.x5c_c00021{left:673.350000px;}
.xc8_c00021{left:675.300000px;}
.x95_c00021{left:676.500000px;}
.x74_c00021{left:677.550000px;}
.xc9_c00021{left:679.800000px;}
.x8f_c00021{left:681.150000px;}
.x6c_c00021{left:684.000000px;}
.x79_c00021{left:685.950000px;}
.xae_c00021{left:687.300000px;}
.x54_c00021{left:689.700000px;}
.x5d_c00021{left:691.050000px;}
.xa8_c00021{left:692.100000px;}
.xcd_c00021{left:693.150000px;}
.xbd_c00021{left:694.500000px;}
.x4a_c00021{left:695.550000px;}
.x80_c00021{left:696.900000px;}
.x75_c00021{left:698.400000px;}
.x50_c00021{left:700.950000px;}
.x90_c00021{left:703.800000px;}
.xca_c00021{left:705.000000px;}
.xb1_c00021{left:707.400000px;}
.x81_c00021{left:709.500000px;}
.xa4_c00021{left:711.150000px;}
.x96_c00021{left:713.700000px;}
.xa9_c00021{left:715.500000px;}
.x9e_c00021{left:718.050000px;}
.xac_c00021{left:721.350000px;}
.xa2_c00021{left:723.000000px;}
.x66_c00021{left:724.050000px;}
.x7a_c00021{left:727.350000px;}
.xcb_c00021{left:728.700000px;}
.xb0_c00021{left:731.700000px;}
.x76_c00021{left:735.150000px;}
.x62_c00021{left:737.250000px;}
.x86_c00021{left:739.200000px;}
.x7b_c00021{left:741.450000px;}
.x14d_c00021{left:743.850000px;}
.x4b_c00021{left:744.900000px;}
.x67_c00021{left:747.450000px;}
.x9f_c00021{left:750.450000px;}
.x87_c00021{left:751.500000px;}
.x55_c00021{left:753.000000px;}
.x8b_c00021{left:757.200000px;}
.xb2_c00021{left:760.650000px;}
.x97_c00021{left:762.300000px;}
.xb8_c00021{left:766.500000px;}
.x4c_c00021{left:767.550000px;}
.x5e_c00021{left:770.250000px;}
.xc0_c00021{left:771.300000px;}
.x56_c00021{left:772.800000px;}
.x70_c00021{left:774.750000px;}
.x63_c00021{left:776.250000px;}
.x8c_c00021{left:777.300000px;}
.xb7_c00021{left:778.350000px;}
.x148_c00021{left:780.450000px;}
.xa6_c00021{left:781.500000px;}
.xc3_c00021{left:782.550000px;}
.x7c_c00021{left:784.350000px;}
.x150_c00021{left:786.900000px;}
.x14a_c00021{left:788.400000px;}
.x88_c00021{left:791.100000px;}
.x5f_c00021{left:792.900000px;}
.xbe_c00021{left:797.400000px;}
.x91_c00021{left:798.600000px;}
.xb9_c00021{left:799.650000px;}
.xad_c00021{left:803.550000px;}
.x8d_c00021{left:805.050000px;}
.xb5_c00021{left:806.400000px;}
.x4d_c00021{left:810.750000px;}
.x7d_c00021{left:812.400000px;}
.x57_c00021{left:814.500000px;}
.xa1_c00021{left:815.700000px;}
.x89_c00021{left:817.350000px;}
.x68_c00021{left:818.400000px;}
.x92_c00021{left:820.200000px;}
.x98_c00021{left:821.400000px;}
.x71_c00021{left:823.050000px;}
.x58_c00021{left:825.300000px;}
.x82_c00021{left:827.250000px;}
.x145_c00021{left:828.300000px;}
.xce_c00021{left:829.950000px;}
.x7e_c00021{left:832.950000px;}
.xc4_c00021{left:835.350000px;}
.x8e_c00021{left:837.450000px;}
.x9a_c00021{left:840.450000px;}
.x72_c00021{left:842.550000px;}
.x8a_c00021{left:844.650000px;}
.xa7_c00021{left:846.600000px;}
.x59_c00021{left:851.250000px;}
.x64_c00021{left:852.900000px;}
.x69_c00021{left:854.400000px;}
.xd0_c00021{left:857.700000px;}
.x9b_c00021{left:863.550000px;}
.x4e_c00021{left:865.050000px;}
.xaa_c00021{left:873.900000px;}
.x93_c00021{left:876.750000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.ws1_c00021{word-spacing:-10.421456pt;}
.ws2_c00021{word-spacing:-7.209114pt;}
.ws4_c00021{word-spacing:0.000000pt;}
.ws0_c00021{word-spacing:6.437367pt;}
.ws3_c00021{word-spacing:804.074074pt;}
._0_c00021{width:40.849257pt;}
.fs5_c00021{font-size:21.333333pt;}
.fs6_c00021{font-size:42.666667pt;}
.fs4_c00021{font-size:48.000000pt;}
.fs1_c00021{font-size:53.333333pt;}
.fs2_c00021{font-size:58.666667pt;}
.fs3_c00021{font-size:64.000000pt;}
.fs0_c00021{font-size:69.333333pt;}
.y0_c00021{bottom:0.000000pt;}
.y6d_c00021{bottom:174.400000pt;}
.y66_c00021{bottom:175.066667pt;}
.y65_c00021{bottom:195.066667pt;}
.y6c_c00021{bottom:202.266667pt;}
.y6b_c00021{bottom:203.866667pt;}
.y64_c00021{bottom:208.133333pt;}
.y6a_c00021{bottom:220.533333pt;}
.y63_c00021{bottom:220.666667pt;}
.y62_c00021{bottom:234.133333pt;}
.y69_c00021{bottom:237.333333pt;}
.y61_c00021{bottom:246.666667pt;}
.y60_c00021{bottom:258.533333pt;}
.y68_c00021{bottom:258.800000pt;}
.y5f_c00021{bottom:271.333333pt;}
.y5e_c00021{bottom:283.866667pt;}
.y67_c00021{bottom:285.733333pt;}
.y5d_c00021{bottom:296.666667pt;}
.y39_c00021{bottom:301.466667pt;}
.y38_c00021{bottom:308.533333pt;}
.y5c_c00021{bottom:309.733333pt;}
.y37_c00021{bottom:317.066667pt;}
.y5b_c00021{bottom:322.533333pt;}
.y36_c00021{bottom:332.800000pt;}
.y5a_c00021{bottom:335.333333pt;}
.y59_c00021{bottom:347.866667pt;}
.y35_c00021{bottom:348.133333pt;}
.y58_c00021{bottom:360.666667pt;}
.y34_c00021{bottom:369.600000pt;}
.y57_c00021{bottom:373.200000pt;}
.y33_c00021{bottom:385.600000pt;}
.y56_c00021{bottom:386.000000pt;}
.y55_c00021{bottom:398.133333pt;}
.y32_c00021{bottom:400.933333pt;}
.y54_c00021{bottom:411.200000pt;}
.y31_c00021{bottom:420.400000pt;}
.y53_c00021{bottom:422.666667pt;}
.y52_c00021{bottom:436.133333pt;}
.y30_c00021{bottom:436.400000pt;}
.y51_c00021{bottom:448.933333pt;}
.y2f_c00021{bottom:452.133333pt;}
.y50_c00021{bottom:461.466667pt;}
.y2e_c00021{bottom:467.866667pt;}
.y4f_c00021{bottom:473.866667pt;}
.y4e_c00021{bottom:486.666667pt;}
.y2d_c00021{bottom:487.733333pt;}
.y4d_c00021{bottom:499.466667pt;}
.y2c_c00021{bottom:503.733333pt;}
.y4c_c00021{bottom:512.266667pt;}
.y2b_c00021{bottom:519.600000pt;}
.y4b_c00021{bottom:524.133333pt;}
.y2a_c00021{bottom:535.333333pt;}
.y4a_c00021{bottom:537.200000pt;}
.y49_c00021{bottom:550.266667pt;}
.y29_c00021{bottom:551.333333pt;}
.y48_c00021{bottom:562.800000pt;}
.y28_c00021{bottom:566.666667pt;}
.y47_c00021{bottom:575.333333pt;}
.y27_c00021{bottom:582.400000pt;}
.y46_c00021{bottom:588.400000pt;}
.y45_c00021{bottom:600.933333pt;}
.y26_c00021{bottom:601.866667pt;}
.y44_c00021{bottom:613.066667pt;}
.y25_c00021{bottom:617.866667pt;}
.y43_c00021{bottom:625.866667pt;}
.y24_c00021{bottom:633.866667pt;}
.y42_c00021{bottom:638.400000pt;}
.y23_c00021{bottom:649.600000pt;}
.y41_c00021{bottom:651.200000pt;}
.y40_c00021{bottom:663.466667pt;}
.y22_c00021{bottom:665.600000pt;}
.y3f_c00021{bottom:676.533333pt;}
.y21_c00021{bottom:681.333333pt;}
.y3e_c00021{bottom:690.266667pt;}
.y20_c00021{bottom:701.200000pt;}
.y3d_c00021{bottom:701.733333pt;}
.y3c_c00021{bottom:714.800000pt;}
.y1f_c00021{bottom:716.533333pt;}
.y3b_c00021{bottom:727.333333pt;}
.y1e_c00021{bottom:736.000000pt;}
.y3a_c00021{bottom:740.133333pt;}
.y1d_c00021{bottom:752.000000pt;}
.y1c_c00021{bottom:767.733333pt;}
.y1b_c00021{bottom:787.733333pt;}
.ye_c00021{bottom:790.133333pt;}
.y1a_c00021{bottom:803.466667pt;}
.yd_c00021{bottom:812.000000pt;}
.y19_c00021{bottom:819.200000pt;}
.yc_c00021{bottom:828.933333pt;}
.y18_c00021{bottom:838.666667pt;}
.yb_c00021{bottom:844.666667pt;}
.y17_c00021{bottom:854.666667pt;}
.ya_c00021{bottom:860.400000pt;}
.y16_c00021{bottom:874.533333pt;}
.y9_c00021{bottom:876.133333pt;}
.y15_c00021{bottom:890.133333pt;}
.y8_c00021{bottom:892.133333pt;}
.y14_c00021{bottom:905.866667pt;}
.y7_c00021{bottom:907.466667pt;}
.y13_c00021{bottom:921.866667pt;}
.y6_c00021{bottom:926.933333pt;}
.y12_c00021{bottom:941.733333pt;}
.y5_c00021{bottom:942.666667pt;}
.y11_c00021{bottom:957.466667pt;}
.y4_c00021{bottom:958.666667pt;}
.y10_c00021{bottom:977.200000pt;}
.y3_c00021{bottom:977.600000pt;}
.yf_c00021{bottom:992.933333pt;}
.y2_c00021{bottom:993.600000pt;}
.y1_c00021{bottom:1017.333333pt;}
.h7_c00021{height:21.333333pt;}
.h8_c00021{height:42.666667pt;}
.h6_c00021{height:48.000000pt;}
.h3_c00021{height:53.333333pt;}
.h4_c00021{height:58.666667pt;}
.h5_c00021{height:64.000000pt;}
.h2_c00021{height:69.333333pt;}
.h1_c00021{height:1128.000000pt;}
.h0_c00021{height:1128.319987pt;}
.w0_c00021{width:843.200032pt;}
.w1_c00021{width:843.333333pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:163.466667pt;}
.xd1_c00021{left:164.533333pt;}
.x102_c00021{left:172.133333pt;}
.xf0_c00021{left:177.600000pt;}
.x120_c00021{left:178.533333pt;}
.xb_c00021{left:179.866667pt;}
.x129_c00021{left:182.400000pt;}
.x126_c00021{left:185.200000pt;}
.x119_c00021{left:186.266667pt;}
.xdf_c00021{left:187.600000pt;}
.x11d_c00021{left:189.066667pt;}
.xeb_c00021{left:190.533333pt;}
.x125_c00021{left:192.133333pt;}
.x3_c00021{left:193.600000pt;}
.x3e_c00021{left:195.066667pt;}
.x16_c00021{left:196.000000pt;}
.x1e_c00021{left:197.200000pt;}
.xec_c00021{left:198.266667pt;}
.x111_c00021{left:199.466667pt;}
.xd2_c00021{left:201.333333pt;}
.x142_c00021{left:203.866667pt;}
.x107_c00021{left:206.666667pt;}
.x103_c00021{left:208.000000pt;}
.xe0_c00021{left:209.066667pt;}
.x133_c00021{left:210.266667pt;}
.xfd_c00021{left:211.866667pt;}
.xe_c00021{left:213.733333pt;}
.x13f_c00021{left:214.933333pt;}
.xe5_c00021{left:216.000000pt;}
.x1f_c00021{left:217.066667pt;}
.x4_c00021{left:218.266667pt;}
.x17_c00021{left:219.733333pt;}
.xf9_c00021{left:220.933333pt;}
.xc_c00021{left:222.133333pt;}
.xd7_c00021{left:223.200000pt;}
.xf6_c00021{left:226.000000pt;}
.x18_c00021{left:228.400000pt;}
.x112_c00021{left:229.733333pt;}
.x127_c00021{left:231.333333pt;}
.xf1_c00021{left:232.666667pt;}
.x12e_c00021{left:233.733333pt;}
.x26_c00021{left:234.800000pt;}
.x134_c00021{left:235.866667pt;}
.xf_c00021{left:237.733333pt;}
.x13a_c00021{left:238.800000pt;}
.x11a_c00021{left:240.000000pt;}
.xfe_c00021{left:240.933333pt;}
.xd3_c00021{left:242.666667pt;}
.x20_c00021{left:244.533333pt;}
.x19_c00021{left:245.733333pt;}
.x11e_c00021{left:247.333333pt;}
.x31_c00021{left:248.800000pt;}
.xfa_c00021{left:251.600000pt;}
.xf2_c00021{left:253.733333pt;}
.x27_c00021{left:254.666667pt;}
.x136_c00021{left:256.400000pt;}
.x128_c00021{left:257.600000pt;}
.x10_c00021{left:258.800000pt;}
.x3f_c00021{left:260.000000pt;}
.xd_c00021{left:262.133333pt;}
.x11f_c00021{left:264.933333pt;}
.x5_c00021{left:266.266667pt;}
.x13d_c00021{left:267.733333pt;}
.x116_c00021{left:269.200000pt;}
.xed_c00021{left:270.666667pt;}
.x1a_c00021{left:272.000000pt;}
.x141_c00021{left:272.933333pt;}
.xd8_c00021{left:273.866667pt;}
.x11b_c00021{left:275.200000pt;}
.xe1_c00021{left:276.266667pt;}
.x135_c00021{left:277.733333pt;}
.xee_c00021{left:278.666667pt;}
.x10b_c00021{left:280.400000pt;}
.xf3_c00021{left:281.600000pt;}
.x144_c00021{left:282.933333pt;}
.x121_c00021{left:284.800000pt;}
.xff_c00021{left:286.400000pt;}
.xd4_c00021{left:287.733333pt;}
.x2c_c00021{left:291.466667pt;}
.x1b_c00021{left:293.066667pt;}
.x113_c00021{left:295.066667pt;}
.xd9_c00021{left:296.000000pt;}
.xfb_c00021{left:297.066667pt;}
.x11_c00021{left:298.133333pt;}
.x12c_c00021{left:299.600000pt;}
.x21_c00021{left:301.200000pt;}
.x39_c00021{left:303.200000pt;}
.xe6_c00021{left:304.933333pt;}
.x12f_c00021{left:306.400000pt;}
.x22_c00021{left:307.866667pt;}
.x117_c00021{left:309.200000pt;}
.xda_c00021{left:310.400000pt;}
.x122_c00021{left:312.666667pt;}
.x13b_c00021{left:313.733333pt;}
.x108_c00021{left:314.800000pt;}
.x2d_c00021{left:316.400000pt;}
.x140_c00021{left:318.000000pt;}
.x10e_c00021{left:319.200000pt;}
.x32_c00021{left:321.466667pt;}
.x2e_c00021{left:323.066667pt;}
.x6_c00021{left:324.133333pt;}
.x11c_c00021{left:325.066667pt;}
.x3a_c00021{left:326.533333pt;}
.xfc_c00021{left:327.466667pt;}
.x114_c00021{left:329.333333pt;}
.x123_c00021{left:330.266667pt;}
.xf4_c00021{left:334.400000pt;}
.x110_c00021{left:335.466667pt;}
.x109_c00021{left:337.200000pt;}
.x2f_c00021{left:338.133333pt;}
.x7_c00021{left:339.466667pt;}
.xe2_c00021{left:341.600000pt;}
.x104_c00021{left:342.800000pt;}
.x28_c00021{left:345.333333pt;}
.x1c_c00021{left:346.533333pt;}
.x23_c00021{left:347.866667pt;}
.x12_c00021{left:349.600000pt;}
.xdb_c00021{left:352.266667pt;}
.x130_c00021{left:354.000000pt;}
.x36_c00021{left:355.066667pt;}
.xe7_c00021{left:357.066667pt;}
.x115_c00021{left:359.066667pt;}
.x13c_c00021{left:360.400000pt;}
.x13_c00021{left:361.466667pt;}
.x137_c00021{left:362.400000pt;}
.x42_c00021{left:365.200000pt;}
.x29_c00021{left:368.400000pt;}
.x40_c00021{left:370.266667pt;}
.x24_c00021{left:372.133333pt;}
.x10a_c00021{left:373.600000pt;}
.x37_c00021{left:374.933333pt;}
.x131_c00021{left:376.000000pt;}
.x8_c00021{left:377.600000pt;}
.x2_c00021{left:379.200000pt;}
.x10c_c00021{left:380.533333pt;}
.x100_c00021{left:382.000000pt;}
.x105_c00021{left:383.066667pt;}
.x14_c00021{left:384.800000pt;}
.x13e_c00021{left:386.266667pt;}
.x43_c00021{left:387.866667pt;}
.x132_c00021{left:389.066667pt;}
.x33_c00021{left:390.266667pt;}
.xdc_c00021{left:391.600000pt;}
.xf7_c00021{left:394.133333pt;}
.x9_c00021{left:395.866667pt;}
.x3b_c00021{left:396.933333pt;}
.xe3_c00021{left:399.200000pt;}
.x124_c00021{left:401.600000pt;}
.xd5_c00021{left:402.666667pt;}
.xe8_c00021{left:404.400000pt;}
.x44_c00021{left:406.133333pt;}
.xea_c00021{left:407.200000pt;}
.x2a_c00021{left:408.400000pt;}
.x25_c00021{left:410.133333pt;}
.x41_c00021{left:412.800000pt;}
.x34_c00021{left:414.266667pt;}
.x3c_c00021{left:415.866667pt;}
.x12a_c00021{left:417.333333pt;}
.x38_c00021{left:418.533333pt;}
.xef_c00021{left:419.466667pt;}
.xe4_c00021{left:421.333333pt;}
.xd6_c00021{left:422.533333pt;}
.x101_c00021{left:423.866667pt;}
.xdd_c00021{left:426.133333pt;}
.x10f_c00021{left:428.933333pt;}
.x138_c00021{left:431.200000pt;}
.xe9_c00021{left:432.266667pt;}
.xf8_c00021{left:433.466667pt;}
.xde_c00021{left:434.400000pt;}
.x12b_c00021{left:435.866667pt;}
.x35_c00021{left:436.933333pt;}
.x30_c00021{left:440.533333pt;}
.x10d_c00021{left:443.333333pt;}
.x1d_c00021{left:444.533333pt;}
.x118_c00021{left:446.400000pt;}
.x3d_c00021{left:447.866667pt;}
.x12d_c00021{left:449.066667pt;}
.xa_c00021{left:450.000000pt;}
.x143_c00021{left:450.933333pt;}
.x2b_c00021{left:451.866667pt;}
.x15_c00021{left:452.933333pt;}
.xf5_c00021{left:453.866667pt;}
.x106_c00021{left:456.933333pt;}
.x45_c00021{left:459.600000pt;}
.x139_c00021{left:461.866667pt;}
.xb6_c00021{left:482.266667pt;}
.x14e_c00021{left:483.200000pt;}
.x146_c00021{left:485.066667pt;}
.x147_c00021{left:496.266667pt;}
.xc5_c00021{left:498.000000pt;}
.x99_c00021{left:499.066667pt;}
.x73_c00021{left:500.266667pt;}
.x6d_c00021{left:509.733333pt;}
.x14f_c00021{left:512.266667pt;}
.xbf_c00021{left:513.600000pt;}
.xa5_c00021{left:514.533333pt;}
.x46_c00021{left:515.466667pt;}
.x149_c00021{left:519.600000pt;}
.xc6_c00021{left:522.266667pt;}
.xb4_c00021{left:525.466667pt;}
.xc1_c00021{left:528.266667pt;}
.x47_c00021{left:529.600000pt;}
.x77_c00021{left:530.933333pt;}
.x51_c00021{left:531.866667pt;}
.x94_c00021{left:535.733333pt;}
.x60_c00021{left:538.800000pt;}
.x83_c00021{left:541.466667pt;}
.x6e_c00021{left:543.333333pt;}
.xaf_c00021{left:544.800000pt;}
.x6a_c00021{left:547.200000pt;}
.xba_c00021{left:548.533333pt;}
.x14b_c00021{left:549.866667pt;}
.xab_c00021{left:550.933333pt;}
.x5a_c00021{left:552.533333pt;}
.xb3_c00021{left:553.600000pt;}
.x9c_c00021{left:555.733333pt;}
.x52_c00021{left:556.800000pt;}
.x84_c00021{left:559.066667pt;}
.xcc_c00021{left:560.133333pt;}
.x6b_c00021{left:561.600000pt;}
.x14c_c00021{left:562.933333pt;}
.xa3_c00021{left:565.200000pt;}
.x48_c00021{left:566.400000pt;}
.x65_c00021{left:567.733333pt;}
.x7f_c00021{left:569.200000pt;}
.x151_c00021{left:570.266667pt;}
.xa0_c00021{left:572.666667pt;}
.x4f_c00021{left:573.733333pt;}
.xbb_c00021{left:574.800000pt;}
.x53_c00021{left:576.933333pt;}
.xcf_c00021{left:578.666667pt;}
.xc7_c00021{left:580.533333pt;}
.x5b_c00021{left:583.200000pt;}
.xc2_c00021{left:584.266667pt;}
.x6f_c00021{left:585.600000pt;}
.x9d_c00021{left:587.066667pt;}
.x78_c00021{left:589.200000pt;}
.x61_c00021{left:590.666667pt;}
.x49_c00021{left:592.000000pt;}
.x85_c00021{left:595.600000pt;}
.xbc_c00021{left:597.200000pt;}
.x5c_c00021{left:598.533333pt;}
.xc8_c00021{left:600.266667pt;}
.x95_c00021{left:601.333333pt;}
.x74_c00021{left:602.266667pt;}
.xc9_c00021{left:604.266667pt;}
.x8f_c00021{left:605.466667pt;}
.x6c_c00021{left:608.000000pt;}
.x79_c00021{left:609.733333pt;}
.xae_c00021{left:610.933333pt;}
.x54_c00021{left:613.066667pt;}
.x5d_c00021{left:614.266667pt;}
.xa8_c00021{left:615.200000pt;}
.xcd_c00021{left:616.133333pt;}
.xbd_c00021{left:617.333333pt;}
.x4a_c00021{left:618.266667pt;}
.x80_c00021{left:619.466667pt;}
.x75_c00021{left:620.800000pt;}
.x50_c00021{left:623.066667pt;}
.x90_c00021{left:625.600000pt;}
.xca_c00021{left:626.666667pt;}
.xb1_c00021{left:628.800000pt;}
.x81_c00021{left:630.666667pt;}
.xa4_c00021{left:632.133333pt;}
.x96_c00021{left:634.400000pt;}
.xa9_c00021{left:636.000000pt;}
.x9e_c00021{left:638.266667pt;}
.xac_c00021{left:641.200000pt;}
.xa2_c00021{left:642.666667pt;}
.x66_c00021{left:643.600000pt;}
.x7a_c00021{left:646.533333pt;}
.xcb_c00021{left:647.733333pt;}
.xb0_c00021{left:650.400000pt;}
.x76_c00021{left:653.466667pt;}
.x62_c00021{left:655.333333pt;}
.x86_c00021{left:657.066667pt;}
.x7b_c00021{left:659.066667pt;}
.x14d_c00021{left:661.200000pt;}
.x4b_c00021{left:662.133333pt;}
.x67_c00021{left:664.400000pt;}
.x9f_c00021{left:667.066667pt;}
.x87_c00021{left:668.000000pt;}
.x55_c00021{left:669.333333pt;}
.x8b_c00021{left:673.066667pt;}
.xb2_c00021{left:676.133333pt;}
.x97_c00021{left:677.600000pt;}
.xb8_c00021{left:681.333333pt;}
.x4c_c00021{left:682.266667pt;}
.x5e_c00021{left:684.666667pt;}
.xc0_c00021{left:685.600000pt;}
.x56_c00021{left:686.933333pt;}
.x70_c00021{left:688.666667pt;}
.x63_c00021{left:690.000000pt;}
.x8c_c00021{left:690.933333pt;}
.xb7_c00021{left:691.866667pt;}
.x148_c00021{left:693.733333pt;}
.xa6_c00021{left:694.666667pt;}
.xc3_c00021{left:695.600000pt;}
.x7c_c00021{left:697.200000pt;}
.x150_c00021{left:699.466667pt;}
.x14a_c00021{left:700.800000pt;}
.x88_c00021{left:703.200000pt;}
.x5f_c00021{left:704.800000pt;}
.xbe_c00021{left:708.800000pt;}
.x91_c00021{left:709.866667pt;}
.xb9_c00021{left:710.800000pt;}
.xad_c00021{left:714.266667pt;}
.x8d_c00021{left:715.600000pt;}
.xb5_c00021{left:716.800000pt;}
.x4d_c00021{left:720.666667pt;}
.x7d_c00021{left:722.133333pt;}
.x57_c00021{left:724.000000pt;}
.xa1_c00021{left:725.066667pt;}
.x89_c00021{left:726.533333pt;}
.x68_c00021{left:727.466667pt;}
.x92_c00021{left:729.066667pt;}
.x98_c00021{left:730.133333pt;}
.x71_c00021{left:731.600000pt;}
.x58_c00021{left:733.600000pt;}
.x82_c00021{left:735.333333pt;}
.x145_c00021{left:736.266667pt;}
.xce_c00021{left:737.733333pt;}
.x7e_c00021{left:740.400000pt;}
.xc4_c00021{left:742.533333pt;}
.x8e_c00021{left:744.400000pt;}
.x9a_c00021{left:747.066667pt;}
.x72_c00021{left:748.933333pt;}
.x8a_c00021{left:750.800000pt;}
.xa7_c00021{left:752.533333pt;}
.x59_c00021{left:756.666667pt;}
.x64_c00021{left:758.133333pt;}
.x69_c00021{left:759.466667pt;}
.xd0_c00021{left:762.400000pt;}
.x9b_c00021{left:767.600000pt;}
.x4e_c00021{left:768.933333pt;}
.xaa_c00021{left:776.800000pt;}
.x93_c00021{left:779.333333pt;}
}





/* 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_c00022 {
    display:none;
  }
  .loading-indicator_c00022.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00022 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_c00022 { 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_c00022" -> "#page-container .classname_c00022")
 */
.pf_c00022 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00022 { /* 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_c00022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00022 { /* 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_c00022 { /* 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_c00022 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00022 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00022 {overflow:visible;}
  }
}
.c_c00022 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00022 { /* 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_c00022:after { /* webkit #35443 */
  content: '';
}
.t_c00022:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00022 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 */
}
.__c00022 { /* 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_c00022 { /* info for Javascript */
  display:none;
}
.l_c00022 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00022 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00022 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00022: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_c00022 {
    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_c00022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00022.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_c00022 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00022;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.000000;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;}
.m95_c00022{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00022{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m11_c00022{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00022{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m32_c00022{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m40_c00022{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md9_c00022{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m98_c00022{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m5_c00022{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m26_c00022{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00022{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m27_c00022{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m92_c00022{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mb_c00022{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00022{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00022{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m57_c00022{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00022{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m93_c00022{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m66_c00022{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00022{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00022{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00022{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m47_c00022{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00022{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m45_c00022{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m43_c00022{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00022{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.mac_c00022{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me6_c00022{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.me0_c00022{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00022{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00022{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00022{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m44_c00022{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00022{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00022{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md0_c00022{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m69_c00022{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m46_c00022{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00022{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00022{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00022{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m41_c00022{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00022{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m35_c00022{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m23_c00022{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7_c00022{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m96_c00022{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m48_c00022{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00022{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.med_c00022{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mad_c00022{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m21_c00022{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m54_c00022{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m80_c00022{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m79_c00022{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m10_c00022{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m58_c00022{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m39_c00022{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m72_c00022{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1_c00022{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md4_c00022{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m84_c00022{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md8_c00022{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00022{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00022{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m91_c00022{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00022{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00022{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md6_c00022{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00022{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00022{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mf_c00022{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m56_c00022{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00022{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00022{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me9_c00022{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m89_c00022{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m4_c00022{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me7_c00022{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m42_c00022{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00022{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00022{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m88_c00022{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m90_c00022{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00022{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00022{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mab_c00022{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m52_c00022{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00022{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m87_c00022{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m64_c00022{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mae_c00022{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00022{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6_c00022{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00022{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00022{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m25_c00022{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m70_c00022{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m67_c00022{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00022{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00022{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00022{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00022{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00022{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00022{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00022{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00022{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m12_c00022{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.md_c00022{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00022{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00022{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00022{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m73_c00022{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m34_c00022{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mef_c00022{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m37_c00022{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.me3_c00022{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00022{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00022{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00022{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.meb_c00022{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3_c00022{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m28_c00022{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m86_c00022{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00022{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m29_c00022{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00022{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00022{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00022{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00022{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m59_c00022{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00022{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.md7_c00022{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00022{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00022{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m65_c00022{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m18_c00022{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00022{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m53_c00022{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m99_c00022{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m75_c00022{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9_c00022{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mee_c00022{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m68_c00022{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00022{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma_c00022{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m14_c00022{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m61_c00022{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m82_c00022{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m51_c00022{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00022{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m62_c00022{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00022{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00022{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00022{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00022{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00022{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00022{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m2_c00022{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m97_c00022{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m19_c00022{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00022{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00022{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m94_c00022{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00022{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m31_c00022{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m71_c00022{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m74_c00022{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m22_c00022{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00022{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00022{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m49_c00022{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md5_c00022{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00022{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me8_c00022{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mea_c00022{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00022{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m17_c00022{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8_c00022{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m15_c00022{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m60_c00022{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00022{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m36_c00022{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00022{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00022{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00022{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me2_c00022{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00022{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00022{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m33_c00022{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mff_c00022{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00022{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m24_c00022{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m20_c00022{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me4_c00022{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mba_c00022{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00022{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m83_c00022{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mec_c00022{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00022{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m38_c00022{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.maa_c00022{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.md2_c00022{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m50_c00022{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00022{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00022{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00022{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m81_c00022{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00022{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m85_c00022{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.maf_c00022{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m16_c00022{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00022{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mce_c00022{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m77_c00022{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00022{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00022{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me_c00022{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00022{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00022{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mda_c00022{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me1_c00022{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m30_c00022{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00022{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m55_c00022{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);}
.mfd_c00022{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00022{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00022{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m76_c00022{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00022{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00022{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me5_c00022{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m78_c00022{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00022{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mde_c00022{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00022{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00022{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00022{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00022{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m63_c00022{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00022{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00022{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00022{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00022{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00022{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md1_c00022{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00022{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00022{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mca_c00022{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m13_c00022{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m100_c00022{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md3_c00022{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00022{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m0_c00022{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00022{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{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__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00022{word-spacing:-12.612565px;}
.ws5_c00022{word-spacing:-9.652921px;}
.ws3_c00022{word-spacing:-9.167598px;}
.ws7_c00022{word-spacing:-7.567568px;}
.ws1_c00022{word-spacing:-7.453815px;}
.ws4_c00022{word-spacing:-4.703057px;}
.ws0_c00022{word-spacing:-3.735849px;}
.ws8_c00022{word-spacing:0.000000px;}
.ws6_c00022{word-spacing:8.333333px;}
.fc0_c00022{color:transparent;}
.fs4_c00022{font-size:48.000000px;}
.fs5_c00022{font-size:54.000000px;}
.fs3_c00022{font-size:60.000000px;}
.fs2_c00022{font-size:66.000000px;}
.fs1_c00022{font-size:72.000000px;}
.fs0_c00022{font-size:114.000000px;}
.y0_c00022{bottom:0.000000px;}
.y68_c00022{bottom:197.250000px;}
.y65_c00022{bottom:198.000000px;}
.y64_c00022{bottom:211.650000px;}
.y67_c00022{bottom:211.950000px;}
.y66_c00022{bottom:227.100000px;}
.y63_c00022{bottom:227.550000px;}
.y62_c00022{bottom:241.500000px;}
.y61_c00022{bottom:255.600000px;}
.y60_c00022{bottom:270.300000px;}
.y58_c00022{bottom:272.850000px;}
.y5f_c00022{bottom:284.400000px;}
.y57_c00022{bottom:290.550000px;}
.y5e_c00022{bottom:299.550000px;}
.y56_c00022{bottom:308.550000px;}
.y5d_c00022{bottom:313.500000px;}
.y55_c00022{bottom:326.100000px;}
.y5c_c00022{bottom:341.250000px;}
.y54_c00022{bottom:344.100000px;}
.y5b_c00022{bottom:355.650000px;}
.y53_c00022{bottom:361.800000px;}
.y5a_c00022{bottom:370.200000px;}
.y52_c00022{bottom:379.800000px;}
.y59_c00022{bottom:384.900000px;}
.y51_c00022{bottom:397.350000px;}
.y26_c00022{bottom:399.300000px;}
.y50_c00022{bottom:415.050000px;}
.y4f_c00022{bottom:432.750000px;}
.y4e_c00022{bottom:450.750000px;}
.y25_c00022{bottom:462.300000px;}
.y4d_c00022{bottom:468.300000px;}
.y24_c00022{bottom:484.500000px;}
.y4c_c00022{bottom:486.300000px;}
.y23_c00022{bottom:502.200000px;}
.y4b_c00022{bottom:504.300000px;}
.y4a_c00022{bottom:522.000000px;}
.y22_c00022{bottom:524.400000px;}
.y49_c00022{bottom:539.700000px;}
.y21_c00022{bottom:542.400000px;}
.y48_c00022{bottom:557.400000px;}
.y20_c00022{bottom:560.100000px;}
.y47_c00022{bottom:575.100000px;}
.y1f_c00022{bottom:577.800000px;}
.y46_c00022{bottom:593.100000px;}
.y1e_c00022{bottom:600.000000px;}
.y45_c00022{bottom:610.800000px;}
.y1d_c00022{bottom:618.000000px;}
.y44_c00022{bottom:628.500000px;}
.y1c_c00022{bottom:636.000000px;}
.y43_c00022{bottom:646.500000px;}
.y1b_c00022{bottom:653.700000px;}
.y42_c00022{bottom:664.500000px;}
.y1a_c00022{bottom:675.600000px;}
.y41_c00022{bottom:682.200000px;}
.y27_c00022{bottom:693.300000px;}
.y19_c00022{bottom:693.600000px;}
.y40_c00022{bottom:700.050000px;}
.y18_c00022{bottom:711.600000px;}
.y3f_c00022{bottom:717.750000px;}
.y17_c00022{bottom:729.300000px;}
.y3e_c00022{bottom:735.450000px;}
.y16_c00022{bottom:747.300000px;}
.y3d_c00022{bottom:753.300000px;}
.y15_c00022{bottom:765.000000px;}
.y3c_c00022{bottom:771.000000px;}
.y14_c00022{bottom:783.000000px;}
.y3b_c00022{bottom:788.700000px;}
.y13_c00022{bottom:800.700000px;}
.y3a_c00022{bottom:806.700000px;}
.y12_c00022{bottom:822.450000px;}
.y39_c00022{bottom:824.400000px;}
.y11_c00022{bottom:840.150000px;}
.y38_c00022{bottom:842.100000px;}
.y10_c00022{bottom:858.150000px;}
.y37_c00022{bottom:860.100000px;}
.yf_c00022{bottom:875.850000px;}
.y36_c00022{bottom:878.100000px;}
.y35_c00022{bottom:895.350000px;}
.ye_c00022{bottom:898.200000px;}
.y34_c00022{bottom:912.900000px;}
.yd_c00022{bottom:916.200000px;}
.y33_c00022{bottom:930.900000px;}
.yc_c00022{bottom:938.550000px;}
.y32_c00022{bottom:948.150000px;}
.yb_c00022{bottom:956.550000px;}
.y31_c00022{bottom:966.150000px;}
.ya_c00022{bottom:978.450000px;}
.y30_c00022{bottom:983.850000px;}
.y9_c00022{bottom:996.450000px;}
.y2f_c00022{bottom:1005.450000px;}
.y8_c00022{bottom:1018.050000px;}
.y2e_c00022{bottom:1023.450000px;}
.y7_c00022{bottom:1035.600000px;}
.y2d_c00022{bottom:1041.150000px;}
.y6_c00022{bottom:1053.300000px;}
.y2c_c00022{bottom:1058.700000px;}
.y5_c00022{bottom:1071.750000px;}
.y2b_c00022{bottom:1076.700000px;}
.y4_c00022{bottom:1093.350000px;}
.y2a_c00022{bottom:1094.700000px;}
.y3_c00022{bottom:1111.650000px;}
.y29_c00022{bottom:1112.400000px;}
.y2_c00022{bottom:1129.350000px;}
.y28_c00022{bottom:1130.100000px;}
.y1_c00022{bottom:1157.400000px;}
.h6_c00022{height:48.000000px;}
.h7_c00022{height:54.000000px;}
.h5_c00022{height:60.000000px;}
.h4_c00022{height:66.000000px;}
.h3_c00022{height:72.000000px;}
.h2_c00022{height:114.000000px;}
.h0_c00022{height:1268.640015px;}
.h1_c00022{height:1269.000000px;}
.w0_c00022{width:948.600036px;}
.w1_c00022{width:948.750000px;}
.x0_c00022{left:0.000000px;}
.x14a_c00022{left:46.200000px;}
.x142_c00022{left:47.250000px;}
.x134_c00022{left:48.450000px;}
.x12e_c00022{left:49.650000px;}
.x14b_c00022{left:58.800000px;}
.x144_c00022{left:60.450000px;}
.x139_c00022{left:62.250000px;}
.x136_c00022{left:63.300000px;}
.x87_c00022{left:64.800000px;}
.x82_c00022{left:69.450000px;}
.x88_c00022{left:72.300000px;}
.x143_c00022{left:78.150000px;}
.x12f_c00022{left:79.500000px;}
.x14c_c00022{left:84.300000px;}
.x137_c00022{left:87.750000px;}
.x80_c00022{left:88.800000px;}
.x7c_c00022{left:90.150000px;}
.x6e_c00022{left:91.350000px;}
.x130_c00022{left:92.850000px;}
.x5f_c00022{left:93.900000px;}
.x43_c00022{left:94.950000px;}
.x27_c00022{left:96.150000px;}
.x46_c00022{left:97.950000px;}
.x18_c00022{left:100.800000px;}
.x24_c00022{left:101.850000px;}
.x3_c00022{left:103.350000px;}
.x131_c00022{left:106.200000px;}
.x73_c00022{left:109.050000px;}
.x83_c00022{left:111.150000px;}
.x56_c00022{left:112.350000px;}
.x49_c00022{left:113.700000px;}
.x39_c00022{left:115.800000px;}
.x35_c00022{left:117.450000px;}
.x2d_c00022{left:118.650000px;}
.x13_c00022{left:121.350000px;}
.x147_c00022{left:124.200000px;}
.x89_c00022{left:125.250000px;}
.xe_c00022{left:127.800000px;}
.x60_c00022{left:130.650000px;}
.x13a_c00022{left:132.900000px;}
.x31_c00022{left:134.250000px;}
.x25_c00022{left:135.750000px;}
.x28_c00022{left:137.850000px;}
.x6a_c00022{left:140.400000px;}
.x4a_c00022{left:142.800000px;}
.x3d_c00022{left:144.300000px;}
.x57_c00022{left:145.800000px;}
.x133_c00022{left:147.750000px;}
.x14_c00022{left:149.100000px;}
.xf_c00022{left:150.450000px;}
.x13b_c00022{left:154.200000px;}
.x19_c00022{left:155.850000px;}
.x65_c00022{left:158.250000px;}
.x26_c00022{left:160.200000px;}
.x58_c00022{left:164.550000px;}
.x74_c00022{left:166.200000px;}
.x4b_c00022{left:167.700000px;}
.x10_c00022{left:169.200000px;}
.x6b_c00022{left:170.250000px;}
.x7e_c00022{left:171.600000px;}
.x3a_c00022{left:172.650000px;}
.x6f_c00022{left:174.150000px;}
.x9_c00022{left:176.850000px;}
.x51_c00022{left:178.350000px;}
.x135_c00022{left:179.850000px;}
.x2e_c00022{left:180.900000px;}
.x148_c00022{left:182.400000px;}
.x13f_c00022{left:184.350000px;}
.x3b_c00022{left:185.550000px;}
.x44_c00022{left:186.750000px;}
.x36_c00022{left:189.150000px;}
.x1f_c00022{left:191.100000px;}
.x59_c00022{left:193.650000px;}
.x140_c00022{left:196.200000px;}
.x145_c00022{left:197.550000px;}
.x71_c00022{left:199.500000px;}
.x29_c00022{left:200.850000px;}
.x3c_c00022{left:202.500000px;}
.x149_c00022{left:206.100000px;}
.x4_c00022{left:207.450000px;}
.x138_c00022{left:208.650000px;}
.x141_c00022{left:209.850000px;}
.x20_c00022{left:211.200000px;}
.x4c_c00022{left:212.700000px;}
.x37_c00022{left:215.100000px;}
.x32_c00022{left:216.750000px;}
.x62_c00022{left:217.800000px;}
.x1a_c00022{left:220.350000px;}
.x47_c00022{left:222.750000px;}
.x72_c00022{left:223.950000px;}
.x3e_c00022{left:225.000000px;}
.x4d_c00022{left:227.100000px;}
.x77_c00022{left:228.150000px;}
.x1b_c00022{left:229.350000px;}
.x52_c00022{left:230.550000px;}
.x8a_c00022{left:234.300000px;}
.x21_c00022{left:236.100000px;}
.x13e_c00022{left:237.300000px;}
.x5b_c00022{left:238.350000px;}
.x11_c00022{left:241.200000px;}
.x13c_c00022{left:242.400000px;}
.x45_c00022{left:243.750000px;}
.x146_c00022{left:245.400000px;}
.x81_c00022{left:246.900000px;}
.x48_c00022{left:248.250000px;}
.x15_c00022{left:249.900000px;}
.x53_c00022{left:253.200000px;}
.xa_c00022{left:258.600000px;}
.x84_c00022{left:260.550000px;}
.x2f_c00022{left:262.350000px;}
.x7a_c00022{left:265.050000px;}
.x66_c00022{left:266.250000px;}
.x2a_c00022{left:267.450000px;}
.x3f_c00022{left:271.350000px;}
.x16_c00022{left:272.550000px;}
.x63_c00022{left:273.600000px;}
.x4e_c00022{left:277.200000px;}
.x75_c00022{left:279.150000px;}
.x5_c00022{left:280.950000px;}
.x13d_c00022{left:282.450000px;}
.x61_c00022{left:284.100000px;}
.x22_c00022{left:285.750000px;}
.x2b_c00022{left:288.000000px;}
.x5c_c00022{left:291.600000px;}
.x7f_c00022{left:292.950000px;}
.x6c_c00022{left:294.750000px;}
.x40_c00022{left:296.850000px;}
.x7d_c00022{left:297.900000px;}
.x38_c00022{left:300.450000px;}
.x132_c00022{left:302.100000px;}
.x14d_c00022{left:303.750000px;}
.x54_c00022{left:304.950000px;}
.x1c_c00022{left:306.000000px;}
.x70_c00022{left:308.100000px;}
.x1_c00022{left:310.350000px;}
.x78_c00022{left:312.450000px;}
.x8b_c00022{left:313.500000px;}
.x67_c00022{left:314.550000px;}
.x41_c00022{left:317.400000px;}
.x69_c00022{left:318.450000px;}
.x7b_c00022{left:321.600000px;}
.x23_c00022{left:323.550000px;}
.xb_c00022{left:324.900000px;}
.x85_c00022{left:326.550000px;}
.x64_c00022{left:328.050000px;}
.x33_c00022{left:330.150000px;}
.x76_c00022{left:334.200000px;}
.xc_c00022{left:336.000000px;}
.x86_c00022{left:337.350000px;}
.x5a_c00022{left:340.950000px;}
.x5d_c00022{left:343.050000px;}
.x1d_c00022{left:345.600000px;}
.x2c_c00022{left:348.450000px;}
.x6_c00022{left:352.950000px;}
.x34_c00022{left:355.350000px;}
.x79_c00022{left:356.700000px;}
.x6d_c00022{left:359.250000px;}
.x4f_c00022{left:360.750000px;}
.x7_c00022{left:364.050000px;}
.x17_c00022{left:365.700000px;}
.x42_c00022{left:367.800000px;}
.xd_c00022{left:370.950000px;}
.x1e_c00022{left:374.400000px;}
.x5e_c00022{left:376.200000px;}
.x68_c00022{left:379.650000px;}
.x50_c00022{left:383.100000px;}
.x8_c00022{left:392.100000px;}
.x55_c00022{left:393.450000px;}
.x30_c00022{left:394.800000px;}
.x12_c00022{left:398.550000px;}
.x152_c00022{left:405.750000px;}
.x14e_c00022{left:421.500000px;}
.xb5_c00022{left:422.700000px;}
.x8c_c00022{left:424.050000px;}
.x12d_c00022{left:425.550000px;}
.xc2_c00022{left:439.050000px;}
.x129_c00022{left:440.400000px;}
.xac_c00022{left:441.450000px;}
.x12b_c00022{left:443.100000px;}
.x121_c00022{left:445.350000px;}
.x9e_c00022{left:446.550000px;}
.x10e_c00022{left:447.900000px;}
.x111_c00022{left:449.700000px;}
.xf8_c00022{left:451.950000px;}
.xf2_c00022{left:453.600000px;}
.xe0_c00022{left:455.100000px;}
.xda_c00022{left:456.900000px;}
.xbd_c00022{left:458.250000px;}
.xc3_c00022{left:459.600000px;}
.x123_c00022{left:463.350000px;}
.x96_c00022{left:464.400000px;}
.x12c_c00022{left:466.500000px;}
.x113_c00022{left:467.700000px;}
.xcd_c00022{left:470.250000px;}
.xe7_c00022{left:471.300000px;}
.xd4_c00022{left:474.000000px;}
.x8d_c00022{left:475.950000px;}
.xd7_c00022{left:477.000000px;}
.x11b_c00022{left:478.800000px;}
.xfb_c00022{left:479.850000px;}
.xae_c00022{left:483.150000px;}
.x8e_c00022{left:485.700000px;}
.xb6_c00022{left:488.250000px;}
.xdb_c00022{left:490.800000px;}
.x9f_c00022{left:491.850000px;}
.x10b_c00022{left:493.800000px;}
.xc7_c00022{left:496.350000px;}
.x14f_c00022{left:498.900000px;}
.xad_c00022{left:500.550000px;}
.x10f_c00022{left:501.900000px;}
.xce_c00022{left:503.700000px;}
.x11c_c00022{left:505.500000px;}
.xaf_c00022{left:506.550000px;}
.x12a_c00022{left:508.650000px;}
.xf3_c00022{left:510.150000px;}
.x8f_c00022{left:512.700000px;}
.xec_c00022{left:513.750000px;}
.x97_c00022{left:514.800000px;}
.x100_c00022{left:516.000000px;}
.xd5_c00022{left:517.950000px;}
.xf4_c00022{left:519.900000px;}
.x104_c00022{left:522.000000px;}
.x11f_c00022{left:523.800000px;}
.xe8_c00022{left:526.350000px;}
.xa7_c00022{left:529.500000px;}
.xa0_c00022{left:531.000000px;}
.xbb_c00022{left:533.100000px;}
.x122_c00022{left:535.350000px;}
.x150_c00022{left:536.400000px;}
.x98_c00022{left:537.900000px;}
.xed_c00022{left:539.250000px;}
.xc4_c00022{left:540.300000px;}
.x125_c00022{left:543.300000px;}
.xfc_c00022{left:544.350000px;}
.x90_c00022{left:546.150000px;}
.xbe_c00022{left:550.050000px;}
.xa8_c00022{left:552.150000px;}
.xf5_c00022{left:553.800000px;}
.x99_c00022{left:555.900000px;}
.xdc_c00022{left:557.700000px;}
.x126_c00022{left:560.250000px;}
.xe9_c00022{left:564.450000px;}
.xe1_c00022{left:565.650000px;}
.xe4_c00022{left:567.000000px;}
.xb0_c00022{left:568.500000px;}
.xf6_c00022{left:570.000000px;}
.xc8_c00022{left:571.200000px;}
.xea_c00022{left:572.400000px;}
.x10c_c00022{left:574.500000px;}
.xc5_c00022{left:576.300000px;}
.xd8_c00022{left:577.800000px;}
.x114_c00022{left:579.150000px;}
.x119_c00022{left:580.200000px;}
.x11e_c00022{left:581.400000px;}
.xb7_c00022{left:582.900000px;}
.x101_c00022{left:584.850000px;}
.xcf_c00022{left:586.500000px;}
.x10a_c00022{left:588.000000px;}
.xc9_c00022{left:589.950000px;}
.xb1_c00022{left:591.900000px;}
.xbc_c00022{left:597.600000px;}
.xa9_c00022{left:599.250000px;}
.xd6_c00022{left:604.050000px;}
.x9a_c00022{left:606.000000px;}
.x105_c00022{left:607.350000px;}
.xa1_c00022{left:609.150000px;}
.xb8_c00022{left:611.400000px;}
.x91_c00022{left:615.300000px;}
.xee_c00022{left:616.350000px;}
.x10d_c00022{left:617.400000px;}
.xca_c00022{left:619.500000px;}
.xd0_c00022{left:620.700000px;}
.xfd_c00022{left:621.750000px;}
.xbf_c00022{left:622.800000px;}
.x92_c00022{left:624.000000px;}
.xe5_c00022{left:625.350000px;}
.xaa_c00022{left:626.550000px;}
.xa2_c00022{left:628.200000px;}
.x127_c00022{left:630.000000px;}
.xdd_c00022{left:631.500000px;}
.xfe_c00022{left:632.850000px;}
.xc0_c00022{left:636.450000px;}
.xd1_c00022{left:637.950000px;}
.x112_c00022{left:639.150000px;}
.xb2_c00022{left:640.500000px;}
.xff_c00022{left:642.600000px;}
.x102_c00022{left:644.550000px;}
.x151_c00022{left:645.750000px;}
.xef_c00022{left:646.950000px;}
.x117_c00022{left:648.600000px;}
.xa3_c00022{left:650.100000px;}
.x106_c00022{left:652.650000px;}
.xab_c00022{left:655.350000px;}
.x93_c00022{left:658.500000px;}
.x9b_c00022{left:660.750000px;}
.x128_c00022{left:662.400000px;}
.xf7_c00022{left:663.600000px;}
.x118_c00022{left:665.550000px;}
.xa4_c00022{left:667.800000px;}
.xd2_c00022{left:670.350000px;}
.xcb_c00022{left:672.450000px;}
.xde_c00022{left:673.950000px;}
.x94_c00022{left:675.450000px;}
.xf9_c00022{left:677.400000px;}
.xb3_c00022{left:678.600000px;}
.xc6_c00022{left:680.700000px;}
.x11a_c00022{left:683.250000px;}
.x110_c00022{left:685.200000px;}
.x103_c00022{left:687.000000px;}
.xb9_c00022{left:688.500000px;}
.xfa_c00022{left:689.700000px;}
.xeb_c00022{left:691.950000px;}
.x9c_c00022{left:694.200000px;}
.xcc_c00022{left:695.550000px;}
.xdf_c00022{left:698.100000px;}
.xc1_c00022{left:701.550000px;}
.x115_c00022{left:703.050000px;}
.x107_c00022{left:704.550000px;}
.xe2_c00022{left:706.200000px;}
.xa5_c00022{left:710.250000px;}
.xf0_c00022{left:713.550000px;}
.x124_c00022{left:717.300000px;}
.x9d_c00022{left:718.350000px;}
.x116_c00022{left:722.100000px;}
.xe3_c00022{left:725.700000px;}
.x120_c00022{left:726.900000px;}
.x11d_c00022{left:727.950000px;}
.xd3_c00022{left:729.000000px;}
.xa6_c00022{left:730.800000px;}
.xb4_c00022{left:732.600000px;}
.x95_c00022{left:734.850000px;}
.x108_c00022{left:735.900000px;}
.xf1_c00022{left:739.800000px;}
.xd9_c00022{left:741.600000px;}
.xba_c00022{left:748.650000px;}
.xe6_c00022{left:752.100000px;}
.x2_c00022{left:755.700000px;}
.x109_c00022{left:757.800000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws2_c00022{word-spacing:-11.211169pt;}
.ws5_c00022{word-spacing:-8.580374pt;}
.ws3_c00022{word-spacing:-8.148976pt;}
.ws7_c00022{word-spacing:-6.726727pt;}
.ws1_c00022{word-spacing:-6.625614pt;}
.ws4_c00022{word-spacing:-4.180495pt;}
.ws0_c00022{word-spacing:-3.320755pt;}
.ws8_c00022{word-spacing:0.000000pt;}
.ws6_c00022{word-spacing:7.407407pt;}
.fs4_c00022{font-size:42.666667pt;}
.fs5_c00022{font-size:48.000000pt;}
.fs3_c00022{font-size:53.333333pt;}
.fs2_c00022{font-size:58.666667pt;}
.fs1_c00022{font-size:64.000000pt;}
.fs0_c00022{font-size:101.333333pt;}
.y0_c00022{bottom:0.000000pt;}
.y68_c00022{bottom:175.333333pt;}
.y65_c00022{bottom:176.000000pt;}
.y64_c00022{bottom:188.133333pt;}
.y67_c00022{bottom:188.400000pt;}
.y66_c00022{bottom:201.866667pt;}
.y63_c00022{bottom:202.266667pt;}
.y62_c00022{bottom:214.666667pt;}
.y61_c00022{bottom:227.200000pt;}
.y60_c00022{bottom:240.266667pt;}
.y58_c00022{bottom:242.533333pt;}
.y5f_c00022{bottom:252.800000pt;}
.y57_c00022{bottom:258.266667pt;}
.y5e_c00022{bottom:266.266667pt;}
.y56_c00022{bottom:274.266667pt;}
.y5d_c00022{bottom:278.666667pt;}
.y55_c00022{bottom:289.866667pt;}
.y5c_c00022{bottom:303.333333pt;}
.y54_c00022{bottom:305.866667pt;}
.y5b_c00022{bottom:316.133333pt;}
.y53_c00022{bottom:321.600000pt;}
.y5a_c00022{bottom:329.066667pt;}
.y52_c00022{bottom:337.600000pt;}
.y59_c00022{bottom:342.133333pt;}
.y51_c00022{bottom:353.200000pt;}
.y26_c00022{bottom:354.933333pt;}
.y50_c00022{bottom:368.933333pt;}
.y4f_c00022{bottom:384.666667pt;}
.y4e_c00022{bottom:400.666667pt;}
.y25_c00022{bottom:410.933333pt;}
.y4d_c00022{bottom:416.266667pt;}
.y24_c00022{bottom:430.666667pt;}
.y4c_c00022{bottom:432.266667pt;}
.y23_c00022{bottom:446.400000pt;}
.y4b_c00022{bottom:448.266667pt;}
.y4a_c00022{bottom:464.000000pt;}
.y22_c00022{bottom:466.133333pt;}
.y49_c00022{bottom:479.733333pt;}
.y21_c00022{bottom:482.133333pt;}
.y48_c00022{bottom:495.466667pt;}
.y20_c00022{bottom:497.866667pt;}
.y47_c00022{bottom:511.200000pt;}
.y1f_c00022{bottom:513.600000pt;}
.y46_c00022{bottom:527.200000pt;}
.y1e_c00022{bottom:533.333333pt;}
.y45_c00022{bottom:542.933333pt;}
.y1d_c00022{bottom:549.333333pt;}
.y44_c00022{bottom:558.666667pt;}
.y1c_c00022{bottom:565.333333pt;}
.y43_c00022{bottom:574.666667pt;}
.y1b_c00022{bottom:581.066667pt;}
.y42_c00022{bottom:590.666667pt;}
.y1a_c00022{bottom:600.533333pt;}
.y41_c00022{bottom:606.400000pt;}
.y27_c00022{bottom:616.266667pt;}
.y19_c00022{bottom:616.533333pt;}
.y40_c00022{bottom:622.266667pt;}
.y18_c00022{bottom:632.533333pt;}
.y3f_c00022{bottom:638.000000pt;}
.y17_c00022{bottom:648.266667pt;}
.y3e_c00022{bottom:653.733333pt;}
.y16_c00022{bottom:664.266667pt;}
.y3d_c00022{bottom:669.600000pt;}
.y15_c00022{bottom:680.000000pt;}
.y3c_c00022{bottom:685.333333pt;}
.y14_c00022{bottom:696.000000pt;}
.y3b_c00022{bottom:701.066667pt;}
.y13_c00022{bottom:711.733333pt;}
.y3a_c00022{bottom:717.066667pt;}
.y12_c00022{bottom:731.066667pt;}
.y39_c00022{bottom:732.800000pt;}
.y11_c00022{bottom:746.800000pt;}
.y38_c00022{bottom:748.533333pt;}
.y10_c00022{bottom:762.800000pt;}
.y37_c00022{bottom:764.533333pt;}
.yf_c00022{bottom:778.533333pt;}
.y36_c00022{bottom:780.533333pt;}
.y35_c00022{bottom:795.866667pt;}
.ye_c00022{bottom:798.400000pt;}
.y34_c00022{bottom:811.466667pt;}
.yd_c00022{bottom:814.400000pt;}
.y33_c00022{bottom:827.466667pt;}
.yc_c00022{bottom:834.266667pt;}
.y32_c00022{bottom:842.800000pt;}
.yb_c00022{bottom:850.266667pt;}
.y31_c00022{bottom:858.800000pt;}
.ya_c00022{bottom:869.733333pt;}
.y30_c00022{bottom:874.533333pt;}
.y9_c00022{bottom:885.733333pt;}
.y2f_c00022{bottom:893.733333pt;}
.y8_c00022{bottom:904.933333pt;}
.y2e_c00022{bottom:909.733333pt;}
.y7_c00022{bottom:920.533333pt;}
.y2d_c00022{bottom:925.466667pt;}
.y6_c00022{bottom:936.266667pt;}
.y2c_c00022{bottom:941.066667pt;}
.y5_c00022{bottom:952.666667pt;}
.y2b_c00022{bottom:957.066667pt;}
.y4_c00022{bottom:971.866667pt;}
.y2a_c00022{bottom:973.066667pt;}
.y3_c00022{bottom:988.133333pt;}
.y29_c00022{bottom:988.800000pt;}
.y2_c00022{bottom:1003.866667pt;}
.y28_c00022{bottom:1004.533333pt;}
.y1_c00022{bottom:1028.800000pt;}
.h6_c00022{height:42.666667pt;}
.h7_c00022{height:48.000000pt;}
.h5_c00022{height:53.333333pt;}
.h4_c00022{height:58.666667pt;}
.h3_c00022{height:64.000000pt;}
.h2_c00022{height:101.333333pt;}
.h0_c00022{height:1127.680013pt;}
.h1_c00022{height:1128.000000pt;}
.w0_c00022{width:843.200032pt;}
.w1_c00022{width:843.333333pt;}
.x0_c00022{left:0.000000pt;}
.x14a_c00022{left:41.066667pt;}
.x142_c00022{left:42.000000pt;}
.x134_c00022{left:43.066667pt;}
.x12e_c00022{left:44.133333pt;}
.x14b_c00022{left:52.266667pt;}
.x144_c00022{left:53.733333pt;}
.x139_c00022{left:55.333333pt;}
.x136_c00022{left:56.266667pt;}
.x87_c00022{left:57.600000pt;}
.x82_c00022{left:61.733333pt;}
.x88_c00022{left:64.266667pt;}
.x143_c00022{left:69.466667pt;}
.x12f_c00022{left:70.666667pt;}
.x14c_c00022{left:74.933333pt;}
.x137_c00022{left:78.000000pt;}
.x80_c00022{left:78.933333pt;}
.x7c_c00022{left:80.133333pt;}
.x6e_c00022{left:81.200000pt;}
.x130_c00022{left:82.533333pt;}
.x5f_c00022{left:83.466667pt;}
.x43_c00022{left:84.400000pt;}
.x27_c00022{left:85.466667pt;}
.x46_c00022{left:87.066667pt;}
.x18_c00022{left:89.600000pt;}
.x24_c00022{left:90.533333pt;}
.x3_c00022{left:91.866667pt;}
.x131_c00022{left:94.400000pt;}
.x73_c00022{left:96.933333pt;}
.x83_c00022{left:98.800000pt;}
.x56_c00022{left:99.866667pt;}
.x49_c00022{left:101.066667pt;}
.x39_c00022{left:102.933333pt;}
.x35_c00022{left:104.400000pt;}
.x2d_c00022{left:105.466667pt;}
.x13_c00022{left:107.866667pt;}
.x147_c00022{left:110.400000pt;}
.x89_c00022{left:111.333333pt;}
.xe_c00022{left:113.600000pt;}
.x60_c00022{left:116.133333pt;}
.x13a_c00022{left:118.133333pt;}
.x31_c00022{left:119.333333pt;}
.x25_c00022{left:120.666667pt;}
.x28_c00022{left:122.533333pt;}
.x6a_c00022{left:124.800000pt;}
.x4a_c00022{left:126.933333pt;}
.x3d_c00022{left:128.266667pt;}
.x57_c00022{left:129.600000pt;}
.x133_c00022{left:131.333333pt;}
.x14_c00022{left:132.533333pt;}
.xf_c00022{left:133.733333pt;}
.x13b_c00022{left:137.066667pt;}
.x19_c00022{left:138.533333pt;}
.x65_c00022{left:140.666667pt;}
.x26_c00022{left:142.400000pt;}
.x58_c00022{left:146.266667pt;}
.x74_c00022{left:147.733333pt;}
.x4b_c00022{left:149.066667pt;}
.x10_c00022{left:150.400000pt;}
.x6b_c00022{left:151.333333pt;}
.x7e_c00022{left:152.533333pt;}
.x3a_c00022{left:153.466667pt;}
.x6f_c00022{left:154.800000pt;}
.x9_c00022{left:157.200000pt;}
.x51_c00022{left:158.533333pt;}
.x135_c00022{left:159.866667pt;}
.x2e_c00022{left:160.800000pt;}
.x148_c00022{left:162.133333pt;}
.x13f_c00022{left:163.866667pt;}
.x3b_c00022{left:164.933333pt;}
.x44_c00022{left:166.000000pt;}
.x36_c00022{left:168.133333pt;}
.x1f_c00022{left:169.866667pt;}
.x59_c00022{left:172.133333pt;}
.x140_c00022{left:174.400000pt;}
.x145_c00022{left:175.600000pt;}
.x71_c00022{left:177.333333pt;}
.x29_c00022{left:178.533333pt;}
.x3c_c00022{left:180.000000pt;}
.x149_c00022{left:183.200000pt;}
.x4_c00022{left:184.400000pt;}
.x138_c00022{left:185.466667pt;}
.x141_c00022{left:186.533333pt;}
.x20_c00022{left:187.733333pt;}
.x4c_c00022{left:189.066667pt;}
.x37_c00022{left:191.200000pt;}
.x32_c00022{left:192.666667pt;}
.x62_c00022{left:193.600000pt;}
.x1a_c00022{left:195.866667pt;}
.x47_c00022{left:198.000000pt;}
.x72_c00022{left:199.066667pt;}
.x3e_c00022{left:200.000000pt;}
.x4d_c00022{left:201.866667pt;}
.x77_c00022{left:202.800000pt;}
.x1b_c00022{left:203.866667pt;}
.x52_c00022{left:204.933333pt;}
.x8a_c00022{left:208.266667pt;}
.x21_c00022{left:209.866667pt;}
.x13e_c00022{left:210.933333pt;}
.x5b_c00022{left:211.866667pt;}
.x11_c00022{left:214.400000pt;}
.x13c_c00022{left:215.466667pt;}
.x45_c00022{left:216.666667pt;}
.x146_c00022{left:218.133333pt;}
.x81_c00022{left:219.466667pt;}
.x48_c00022{left:220.666667pt;}
.x15_c00022{left:222.133333pt;}
.x53_c00022{left:225.066667pt;}
.xa_c00022{left:229.866667pt;}
.x84_c00022{left:231.600000pt;}
.x2f_c00022{left:233.200000pt;}
.x7a_c00022{left:235.600000pt;}
.x66_c00022{left:236.666667pt;}
.x2a_c00022{left:237.733333pt;}
.x3f_c00022{left:241.200000pt;}
.x16_c00022{left:242.266667pt;}
.x63_c00022{left:243.200000pt;}
.x4e_c00022{left:246.400000pt;}
.x75_c00022{left:248.133333pt;}
.x5_c00022{left:249.733333pt;}
.x13d_c00022{left:251.066667pt;}
.x61_c00022{left:252.533333pt;}
.x22_c00022{left:254.000000pt;}
.x2b_c00022{left:256.000000pt;}
.x5c_c00022{left:259.200000pt;}
.x7f_c00022{left:260.400000pt;}
.x6c_c00022{left:262.000000pt;}
.x40_c00022{left:263.866667pt;}
.x7d_c00022{left:264.800000pt;}
.x38_c00022{left:267.066667pt;}
.x132_c00022{left:268.533333pt;}
.x14d_c00022{left:270.000000pt;}
.x54_c00022{left:271.066667pt;}
.x1c_c00022{left:272.000000pt;}
.x70_c00022{left:273.866667pt;}
.x1_c00022{left:275.866667pt;}
.x78_c00022{left:277.733333pt;}
.x8b_c00022{left:278.666667pt;}
.x67_c00022{left:279.600000pt;}
.x41_c00022{left:282.133333pt;}
.x69_c00022{left:283.066667pt;}
.x7b_c00022{left:285.866667pt;}
.x23_c00022{left:287.600000pt;}
.xb_c00022{left:288.800000pt;}
.x85_c00022{left:290.266667pt;}
.x64_c00022{left:291.600000pt;}
.x33_c00022{left:293.466667pt;}
.x76_c00022{left:297.066667pt;}
.xc_c00022{left:298.666667pt;}
.x86_c00022{left:299.866667pt;}
.x5a_c00022{left:303.066667pt;}
.x5d_c00022{left:304.933333pt;}
.x1d_c00022{left:307.200000pt;}
.x2c_c00022{left:309.733333pt;}
.x6_c00022{left:313.733333pt;}
.x34_c00022{left:315.866667pt;}
.x79_c00022{left:317.066667pt;}
.x6d_c00022{left:319.333333pt;}
.x4f_c00022{left:320.666667pt;}
.x7_c00022{left:323.600000pt;}
.x17_c00022{left:325.066667pt;}
.x42_c00022{left:326.933333pt;}
.xd_c00022{left:329.733333pt;}
.x1e_c00022{left:332.800000pt;}
.x5e_c00022{left:334.400000pt;}
.x68_c00022{left:337.466667pt;}
.x50_c00022{left:340.533333pt;}
.x8_c00022{left:348.533333pt;}
.x55_c00022{left:349.733333pt;}
.x30_c00022{left:350.933333pt;}
.x12_c00022{left:354.266667pt;}
.x152_c00022{left:360.666667pt;}
.x14e_c00022{left:374.666667pt;}
.xb5_c00022{left:375.733333pt;}
.x8c_c00022{left:376.933333pt;}
.x12d_c00022{left:378.266667pt;}
.xc2_c00022{left:390.266667pt;}
.x129_c00022{left:391.466667pt;}
.xac_c00022{left:392.400000pt;}
.x12b_c00022{left:393.866667pt;}
.x121_c00022{left:395.866667pt;}
.x9e_c00022{left:396.933333pt;}
.x10e_c00022{left:398.133333pt;}
.x111_c00022{left:399.733333pt;}
.xf8_c00022{left:401.733333pt;}
.xf2_c00022{left:403.200000pt;}
.xe0_c00022{left:404.533333pt;}
.xda_c00022{left:406.133333pt;}
.xbd_c00022{left:407.333333pt;}
.xc3_c00022{left:408.533333pt;}
.x123_c00022{left:411.866667pt;}
.x96_c00022{left:412.800000pt;}
.x12c_c00022{left:414.666667pt;}
.x113_c00022{left:415.733333pt;}
.xcd_c00022{left:418.000000pt;}
.xe7_c00022{left:418.933333pt;}
.xd4_c00022{left:421.333333pt;}
.x8d_c00022{left:423.066667pt;}
.xd7_c00022{left:424.000000pt;}
.x11b_c00022{left:425.600000pt;}
.xfb_c00022{left:426.533333pt;}
.xae_c00022{left:429.466667pt;}
.x8e_c00022{left:431.733333pt;}
.xb6_c00022{left:434.000000pt;}
.xdb_c00022{left:436.266667pt;}
.x9f_c00022{left:437.200000pt;}
.x10b_c00022{left:438.933333pt;}
.xc7_c00022{left:441.200000pt;}
.x14f_c00022{left:443.466667pt;}
.xad_c00022{left:444.933333pt;}
.x10f_c00022{left:446.133333pt;}
.xce_c00022{left:447.733333pt;}
.x11c_c00022{left:449.333333pt;}
.xaf_c00022{left:450.266667pt;}
.x12a_c00022{left:452.133333pt;}
.xf3_c00022{left:453.466667pt;}
.x8f_c00022{left:455.733333pt;}
.xec_c00022{left:456.666667pt;}
.x97_c00022{left:457.600000pt;}
.x100_c00022{left:458.666667pt;}
.xd5_c00022{left:460.400000pt;}
.xf4_c00022{left:462.133333pt;}
.x104_c00022{left:464.000000pt;}
.x11f_c00022{left:465.600000pt;}
.xe8_c00022{left:467.866667pt;}
.xa7_c00022{left:470.666667pt;}
.xa0_c00022{left:472.000000pt;}
.xbb_c00022{left:473.866667pt;}
.x122_c00022{left:475.866667pt;}
.x150_c00022{left:476.800000pt;}
.x98_c00022{left:478.133333pt;}
.xed_c00022{left:479.333333pt;}
.xc4_c00022{left:480.266667pt;}
.x125_c00022{left:482.933333pt;}
.xfc_c00022{left:483.866667pt;}
.x90_c00022{left:485.466667pt;}
.xbe_c00022{left:488.933333pt;}
.xa8_c00022{left:490.800000pt;}
.xf5_c00022{left:492.266667pt;}
.x99_c00022{left:494.133333pt;}
.xdc_c00022{left:495.733333pt;}
.x126_c00022{left:498.000000pt;}
.xe9_c00022{left:501.733333pt;}
.xe1_c00022{left:502.800000pt;}
.xe4_c00022{left:504.000000pt;}
.xb0_c00022{left:505.333333pt;}
.xf6_c00022{left:506.666667pt;}
.xc8_c00022{left:507.733333pt;}
.xea_c00022{left:508.800000pt;}
.x10c_c00022{left:510.666667pt;}
.xc5_c00022{left:512.266667pt;}
.xd8_c00022{left:513.600000pt;}
.x114_c00022{left:514.800000pt;}
.x119_c00022{left:515.733333pt;}
.x11e_c00022{left:516.800000pt;}
.xb7_c00022{left:518.133333pt;}
.x101_c00022{left:519.866667pt;}
.xcf_c00022{left:521.333333pt;}
.x10a_c00022{left:522.666667pt;}
.xc9_c00022{left:524.400000pt;}
.xb1_c00022{left:526.133333pt;}
.xbc_c00022{left:531.200000pt;}
.xa9_c00022{left:532.666667pt;}
.xd6_c00022{left:536.933333pt;}
.x9a_c00022{left:538.666667pt;}
.x105_c00022{left:539.866667pt;}
.xa1_c00022{left:541.466667pt;}
.xb8_c00022{left:543.466667pt;}
.x91_c00022{left:546.933333pt;}
.xee_c00022{left:547.866667pt;}
.x10d_c00022{left:548.800000pt;}
.xca_c00022{left:550.666667pt;}
.xd0_c00022{left:551.733333pt;}
.xfd_c00022{left:552.666667pt;}
.xbf_c00022{left:553.600000pt;}
.x92_c00022{left:554.666667pt;}
.xe5_c00022{left:555.866667pt;}
.xaa_c00022{left:556.933333pt;}
.xa2_c00022{left:558.400000pt;}
.x127_c00022{left:560.000000pt;}
.xdd_c00022{left:561.333333pt;}
.xfe_c00022{left:562.533333pt;}
.xc0_c00022{left:565.733333pt;}
.xd1_c00022{left:567.066667pt;}
.x112_c00022{left:568.133333pt;}
.xb2_c00022{left:569.333333pt;}
.xff_c00022{left:571.200000pt;}
.x102_c00022{left:572.933333pt;}
.x151_c00022{left:574.000000pt;}
.xef_c00022{left:575.066667pt;}
.x117_c00022{left:576.533333pt;}
.xa3_c00022{left:577.866667pt;}
.x106_c00022{left:580.133333pt;}
.xab_c00022{left:582.533333pt;}
.x93_c00022{left:585.333333pt;}
.x9b_c00022{left:587.333333pt;}
.x128_c00022{left:588.800000pt;}
.xf7_c00022{left:589.866667pt;}
.x118_c00022{left:591.600000pt;}
.xa4_c00022{left:593.600000pt;}
.xd2_c00022{left:595.866667pt;}
.xcb_c00022{left:597.733333pt;}
.xde_c00022{left:599.066667pt;}
.x94_c00022{left:600.400000pt;}
.xf9_c00022{left:602.133333pt;}
.xb3_c00022{left:603.200000pt;}
.xc6_c00022{left:605.066667pt;}
.x11a_c00022{left:607.333333pt;}
.x110_c00022{left:609.066667pt;}
.x103_c00022{left:610.666667pt;}
.xb9_c00022{left:612.000000pt;}
.xfa_c00022{left:613.066667pt;}
.xeb_c00022{left:615.066667pt;}
.x9c_c00022{left:617.066667pt;}
.xcc_c00022{left:618.266667pt;}
.xdf_c00022{left:620.533333pt;}
.xc1_c00022{left:623.600000pt;}
.x115_c00022{left:624.933333pt;}
.x107_c00022{left:626.266667pt;}
.xe2_c00022{left:627.733333pt;}
.xa5_c00022{left:631.333333pt;}
.xf0_c00022{left:634.266667pt;}
.x124_c00022{left:637.600000pt;}
.x9d_c00022{left:638.533333pt;}
.x116_c00022{left:641.866667pt;}
.xe3_c00022{left:645.066667pt;}
.x120_c00022{left:646.133333pt;}
.x11d_c00022{left:647.066667pt;}
.xd3_c00022{left:648.000000pt;}
.xa6_c00022{left:649.600000pt;}
.xb4_c00022{left:651.200000pt;}
.x95_c00022{left:653.200000pt;}
.x108_c00022{left:654.133333pt;}
.xf1_c00022{left:657.600000pt;}
.xd9_c00022{left:659.200000pt;}
.xba_c00022{left:665.466667pt;}
.xe6_c00022{left:668.533333pt;}
.x2_c00022{left:671.733333pt;}
.x109_c00022{left:673.600000pt;}
}





/* 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_c00023 {
    display:none;
  }
  .loading-indicator_c00023.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00023 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_c00023 { 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_c00023" -> "#page-container .classname_c00023")
 */
.pf_c00023 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00023 { /* 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_c00023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00023 { /* 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_c00023 { /* 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_c00023 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00023 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00023 {overflow:visible;}
  }
}
.c_c00023 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00023 { /* 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_c00023:after { /* webkit #35443 */
  content: '';
}
.t_c00023:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00023 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 */
}
.__c00023 { /* 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_c00023 { /* info for Javascript */
  display:none;
}
.l_c00023 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00023 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00023 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00023: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_c00023 {
    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_c00023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00023.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_c00023 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00023;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.000000;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;}
.md2_c00023{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.me9_c00023{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00023{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.md0_c00023{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m53_c00023{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00023{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m102_c00023{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m32_c00023{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m94_c00023{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00023{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00023{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m97_c00023{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00023{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00023{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.me2_c00023{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00023{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00023{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00023{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00023{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m75_c00023{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00023{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00023{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00023{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m54_c00023{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.maf_c00023{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00023{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m92_c00023{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00023{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mce_c00023{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00023{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mba_c00023{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m20_c00023{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md5_c00023{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00023{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m51_c00023{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00023{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00023{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.md4_c00023{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00023{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00023{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00023{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00023{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m23_c00023{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m71_c00023{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m48_c00023{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m17_c00023{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m47_c00023{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00023{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m84_c00023{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00023{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00023{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m101_c00023{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mad_c00023{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md3_c00023{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m22_c00023{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m95_c00023{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00023{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m90_c00023{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m69_c00023{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m81_c00023{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m93_c00023{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00023{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00023{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00023{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00023{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00023{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00023{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00023{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00023{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00023{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m65_c00023{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m27_c00023{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m66_c00023{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma_c00023{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00023{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mff_c00023{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.me6_c00023{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m10_c00023{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00023{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00023{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m16_c00023{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me1_c00023{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me3_c00023{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00023{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mac_c00023{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m87_c00023{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00023{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m96_c00023{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m38_c00023{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb_c00023{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mec_c00023{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m98_c00023{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00023{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m24_c00023{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m35_c00023{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00023{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00023{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m57_c00023{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m86_c00023{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00023{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m74_c00023{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m14_c00023{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m21_c00023{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m89_c00023{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00023{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00023{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me7_c00023{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00023{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00023{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00023{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.meb_c00023{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00023{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00023{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m82_c00023{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m26_c00023{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00023{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me_c00023{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00023{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00023{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mca_c00023{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00023{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00023{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m42_c00023{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m64_c00023{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00023{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00023{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m46_c00023{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m67_c00023{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00023{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00023{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00023{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m18_c00023{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m13_c00023{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m30_c00023{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00023{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m72_c00023{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m73_c00023{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m111_c00023{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.md_c00023{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00023{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00023{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00023{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m103_c00023{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.med_c00023{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00023{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md7_c00023{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00023{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00023{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00023{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m50_c00023{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m99_c00023{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00023{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00023{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00023{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00023{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m39_c00023{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m55_c00023{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m0_c00023{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m44_c00023{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m112_c00023{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m19_c00023{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00023{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m85_c00023{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m61_c00023{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m88_c00023{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m34_c00023{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m83_c00023{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00023{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00023{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m11_c00023{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00023{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m58_c00023{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md6_c00023{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m49_c00023{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m15_c00023{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m41_c00023{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m59_c00023{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m40_c00023{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m12_c00023{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m60_c00023{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md9_c00023{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.maa_c00023{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00023{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m43_c00023{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00023{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m45_c00023{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mef_c00023{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00023{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00023{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00023{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00023{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m108_c00023{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m28_c00023{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00023{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m105_c00023{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mc_c00023{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m113_c00023{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m107_c00023{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m110_c00023{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00023{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00023{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00023{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00023{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m70_c00023{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m37_c00023{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00023{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00023{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m31_c00023{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m100_c00023{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00023{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00023{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mee_c00023{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00023{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2_c00023{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00023{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mde_c00023{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me5_c00023{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00023{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m114_c00023{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00023{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mae_c00023{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m33_c00023{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00023{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m80_c00023{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m109_c00023{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m52_c00023{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md1_c00023{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00023{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00023{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00023{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00023{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00023{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.me8_c00023{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m106_c00023{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m79_c00023{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m62_c00023{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md8_c00023{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m115_c00023{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m63_c00023{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mab_c00023{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m91_c00023{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00023{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00023{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m25_c00023{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00023{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m36_c00023{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m56_c00023{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00023{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00023{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8_c00023{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00023{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mea_c00023{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m104_c00023{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m9_c00023{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.me0_c00023{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00023{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me4_c00023{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m76_c00023{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00023{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00023{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00023{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m68_c00023{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00023{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m77_c00023{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m6_c00023{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m29_c00023{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00023{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mda_c00023{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mf_c00023{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m4_c00023{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m5_c00023{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00023{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00023{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m78_c00023{transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3_c00023{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00023{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls0_c00023{letter-spacing:0.000000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{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__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00023{word-spacing:-10.923274px;}
.ws8_c00023{word-spacing:-9.274809px;}
.ws1_c00023{word-spacing:-9.148093px;}
.ws5_c00023{word-spacing:-8.454545px;}
.ws9_c00023{word-spacing:-7.773208px;}
.wsb_c00023{word-spacing:-7.187500px;}
.ws0_c00023{word-spacing:-3.149655px;}
.wsc_c00023{word-spacing:-0.292264px;}
.wse_c00023{word-spacing:0.000000px;}
.ws7_c00023{word-spacing:2.000000px;}
.wsa_c00023{word-spacing:4.473684px;}
.ws6_c00023{word-spacing:4.493450px;}
.wsd_c00023{word-spacing:24.166667px;}
.ws2_c00023{word-spacing:118.571429px;}
.ws3_c00023{word-spacing:897.535714px;}
.fc0_c00023{color:transparent;}
.fs5_c00023{font-size:18.000000px;}
.fs1_c00023{font-size:42.000000px;}
.fs6_c00023{font-size:54.000000px;}
.fs4_c00023{font-size:60.000000px;}
.fs2_c00023{font-size:66.000000px;}
.fs3_c00023{font-size:72.000000px;}
.fs0_c00023{font-size:84.000000px;}
.y0_c00023{bottom:0.000000px;}
.y63_c00023{bottom:187.950000px;}
.y62_c00023{bottom:211.650000px;}
.y31_c00023{bottom:216.000000px;}
.y30_c00023{bottom:233.250000px;}
.y61_c00023{bottom:234.300000px;}
.y60_c00023{bottom:252.000000px;}
.y2f_c00023{bottom:261.150000px;}
.y5f_c00023{bottom:269.250000px;}
.y2e_c00023{bottom:278.850000px;}
.y5e_c00023{bottom:291.600000px;}
.y2d_c00023{bottom:296.550000px;}
.y5d_c00023{bottom:309.600000px;}
.y2c_c00023{bottom:314.250000px;}
.y5c_c00023{bottom:327.300000px;}
.y2b_c00023{bottom:331.200000px;}
.y5b_c00023{bottom:349.200000px;}
.y2a_c00023{bottom:358.500000px;}
.y5a_c00023{bottom:366.900000px;}
.y29_c00023{bottom:376.800000px;}
.y59_c00023{bottom:384.300000px;}
.y28_c00023{bottom:393.750000px;}
.y58_c00023{bottom:402.300000px;}
.y27_c00023{bottom:410.700000px;}
.y57_c00023{bottom:420.000000px;}
.y56_c00023{bottom:437.700000px;}
.y26_c00023{bottom:438.450000px;}
.y55_c00023{bottom:455.400000px;}
.y25_c00023{bottom:456.150000px;}
.y24_c00023{bottom:474.150000px;}
.y54_c00023{bottom:478.050000px;}
.y23_c00023{bottom:491.850000px;}
.y53_c00023{bottom:495.750000px;}
.y22_c00023{bottom:509.100000px;}
.y52_c00023{bottom:513.750000px;}
.y51_c00023{bottom:531.750000px;}
.y21_c00023{bottom:536.400000px;}
.y50_c00023{bottom:553.500000px;}
.y20_c00023{bottom:554.400000px;}
.y1f_c00023{bottom:571.200000px;}
.y1e_c00023{bottom:579.900000px;}
.y4f_c00023{bottom:589.200000px;}
.y1d_c00023{bottom:589.650000px;}
.y1c_c00023{bottom:606.900000px;}
.y4e_c00023{bottom:629.700000px;}
.y1b_c00023{bottom:638.550000px;}
.y4d_c00023{bottom:647.700000px;}
.y1a_c00023{bottom:656.550000px;}
.y4c_c00023{bottom:665.550000px;}
.y19_c00023{bottom:674.250000px;}
.y4b_c00023{bottom:683.250000px;}
.y18_c00023{bottom:692.250000px;}
.y4a_c00023{bottom:700.950000px;}
.y17_c00023{bottom:709.200000px;}
.y49_c00023{bottom:723.000000px;}
.y16_c00023{bottom:731.850000px;}
.y15_c00023{bottom:739.800000px;}
.y48_c00023{bottom:741.000000px;}
.y47_c00023{bottom:759.000000px;}
.y14_c00023{bottom:766.500000px;}
.y46_c00023{bottom:777.000000px;}
.y13_c00023{bottom:784.500000px;}
.y45_c00023{bottom:794.700000px;}
.y12_c00023{bottom:802.050000px;}
.y44_c00023{bottom:812.400000px;}
.y11_c00023{bottom:828.000000px;}
.y43_c00023{bottom:830.400000px;}
.y10_c00023{bottom:846.000000px;}
.y42_c00023{bottom:848.100000px;}
.yf_c00023{bottom:863.250000px;}
.y41_c00023{bottom:870.900000px;}
.y40_c00023{bottom:888.450000px;}
.ye_c00023{bottom:890.100000px;}
.y3f_c00023{bottom:906.000000px;}
.yd_c00023{bottom:907.800000px;}
.y3e_c00023{bottom:924.000000px;}
.yc_c00023{bottom:925.500000px;}
.y3d_c00023{bottom:942.300000px;}
.yb_c00023{bottom:943.200000px;}
.y3c_c00023{bottom:960.000000px;}
.ya_c00023{bottom:960.450000px;}
.y3b_c00023{bottom:978.000000px;}
.y9_c00023{bottom:991.800000px;}
.y3a_c00023{bottom:996.000000px;}
.y8_c00023{bottom:1009.500000px;}
.y39_c00023{bottom:1013.700000px;}
.y7_c00023{bottom:1027.500000px;}
.y38_c00023{bottom:1031.700000px;}
.y6_c00023{bottom:1045.200000px;}
.y37_c00023{bottom:1049.700000px;}
.y5_c00023{bottom:1063.200000px;}
.y36_c00023{bottom:1067.400000px;}
.y4_c00023{bottom:1080.450000px;}
.y35_c00023{bottom:1085.400000px;}
.y3_c00023{bottom:1097.700000px;}
.y34_c00023{bottom:1103.400000px;}
.y33_c00023{bottom:1121.100000px;}
.y2_c00023{bottom:1135.800000px;}
.y32_c00023{bottom:1139.400000px;}
.y1_c00023{bottom:1166.100000px;}
.h7_c00023{height:18.000000px;}
.h3_c00023{height:42.000000px;}
.h8_c00023{height:54.000000px;}
.h6_c00023{height:60.000000px;}
.h4_c00023{height:66.000000px;}
.h5_c00023{height:72.000000px;}
.h2_c00023{height:84.000000px;}
.h1_c00023{height:1277.250000px;}
.h0_c00023{height:1277.280030px;}
.w0_c00023{width:948.600036px;}
.w1_c00023{width:948.750000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:191.100000px;}
.x24_c00023{left:192.300000px;}
.x85_c00023{left:193.800000px;}
.x3_c00023{left:196.950000px;}
.x16_c00023{left:200.550000px;}
.xa_c00023{left:208.800000px;}
.x32_c00023{left:209.850000px;}
.x50_c00023{left:210.900000px;}
.x65_c00023{left:212.550000px;}
.x25_c00023{left:214.650000px;}
.x4_c00023{left:217.800000px;}
.x39_c00023{left:220.200000px;}
.x7a_c00023{left:222.450000px;}
.x40_c00023{left:224.850000px;}
.x11_c00023{left:228.600000px;}
.x1c_c00023{left:230.850000px;}
.x93_c00023{left:233.100000px;}
.xb_c00023{left:234.300000px;}
.x90_c00023{left:235.650000px;}
.x75_c00023{left:236.700000px;}
.x33_c00023{left:238.950000px;}
.x2f_c00023{left:240.600000px;}
.x1d_c00023{left:241.650000px;}
.x5_c00023{left:243.750000px;}
.x51_c00023{left:245.100000px;}
.x87_c00023{left:246.300000px;}
.x5e_c00023{left:249.150000px;}
.x54_c00023{left:250.950000px;}
.x3a_c00023{left:252.300000px;}
.x12_c00023{left:254.850000px;}
.x77_c00023{left:256.800000px;}
.x88_c00023{left:257.850000px;}
.x61_c00023{left:259.200000px;}
.x47_c00023{left:263.850000px;}
.x82_c00023{left:267.300000px;}
.x43_c00023{left:269.250000px;}
.x72_c00023{left:270.450000px;}
.xc_c00023{left:271.800000px;}
.x1e_c00023{left:273.750000px;}
.x30_c00023{left:275.850000px;}
.x17_c00023{left:284.100000px;}
.x4d_c00023{left:286.950000px;}
.x62_c00023{left:289.800000px;}
.x55_c00023{left:291.300000px;}
.x26_c00023{left:292.800000px;}
.x91_c00023{left:293.850000px;}
.x44_c00023{left:295.200000px;}
.x3b_c00023{left:297.600000px;}
.x5f_c00023{left:301.050000px;}
.x34_c00023{left:302.400000px;}
.x5d_c00023{left:304.650000px;}
.x1f_c00023{left:308.700000px;}
.x27_c00023{left:311.850000px;}
.x70_c00023{left:315.750000px;}
.x6_c00023{left:316.950000px;}
.x73_c00023{left:318.600000px;}
.x68_c00023{left:319.650000px;}
.x7b_c00023{left:321.750000px;}
.x35_c00023{left:323.700000px;}
.x56_c00023{left:325.050000px;}
.x83_c00023{left:326.850000px;}
.x6d_c00023{left:332.400000px;}
.x31_c00023{left:333.750000px;}
.x28_c00023{left:335.550000px;}
.x2a_c00023{left:338.400000px;}
.x36_c00023{left:339.900000px;}
.x48_c00023{left:341.250000px;}
.x18_c00023{left:343.200000px;}
.x5a_c00023{left:345.450000px;}
.xd_c00023{left:347.100000px;}
.x74_c00023{left:350.700000px;}
.x71_c00023{left:352.500000px;}
.x69_c00023{left:354.600000px;}
.x52_c00023{left:355.950000px;}
.x13_c00023{left:358.200000px;}
.x57_c00023{left:360.750000px;}
.x49_c00023{left:362.850000px;}
.x5b_c00023{left:364.950000px;}
.x6e_c00023{left:366.150000px;}
.xe_c00023{left:367.200000px;}
.x89_c00023{left:368.250000px;}
.x7_c00023{left:370.200000px;}
.x78_c00023{left:371.250000px;}
.x19_c00023{left:375.300000px;}
.x45_c00023{left:378.000000px;}
.x20_c00023{left:379.200000px;}
.x41_c00023{left:382.650000px;}
.x60_c00023{left:386.700000px;}
.x58_c00023{left:387.750000px;}
.x8b_c00023{left:388.950000px;}
.x3c_c00023{left:393.750000px;}
.x37_c00023{left:395.400000px;}
.x7d_c00023{left:397.800000px;}
.x4a_c00023{left:398.850000px;}
.x2b_c00023{left:401.700000px;}
.x46_c00023{left:403.200000px;}
.x66_c00023{left:407.100000px;}
.x4e_c00023{left:408.600000px;}
.x81_c00023{left:410.100000px;}
.x8_c00023{left:411.900000px;}
.x14_c00023{left:412.950000px;}
.x53_c00023{left:415.800000px;}
.x21_c00023{left:419.100000px;}
.x2c_c00023{left:421.800000px;}
.x92_c00023{left:422.850000px;}
.x6a_c00023{left:425.100000px;}
.x38_c00023{left:427.500000px;}
.x29_c00023{left:429.900000px;}
.x3d_c00023{left:431.550000px;}
.x84_c00023{left:433.350000px;}
.x2_c00023{left:434.850000px;}
.x7e_c00023{left:436.350000px;}
.x63_c00023{left:438.900000px;}
.x22_c00023{left:440.700000px;}
.xf_c00023{left:443.550000px;}
.x6b_c00023{left:445.200000px;}
.x9_c00023{left:448.200000px;}
.x6f_c00023{left:449.250000px;}
.x8c_c00023{left:451.650000px;}
.x1a_c00023{left:453.450000px;}
.x76_c00023{left:457.800000px;}
.x7f_c00023{left:459.750000px;}
.x4b_c00023{left:463.650000px;}
.x7c_c00023{left:464.700000px;}
.x79_c00023{left:465.750000px;}
.x3e_c00023{left:467.250000px;}
.x67_c00023{left:468.750000px;}
.x10_c00023{left:470.550000px;}
.x8f_c00023{left:474.900000px;}
.x2d_c00023{left:476.850000px;}
.x1b_c00023{left:478.950000px;}
.x5c_c00023{left:482.250000px;}
.x4c_c00023{left:484.200000px;}
.x59_c00023{left:486.000000px;}
.x86_c00023{left:487.800000px;}
.x4f_c00023{left:491.100000px;}
.x23_c00023{left:494.400000px;}
.x64_c00023{left:495.450000px;}
.x15_c00023{left:496.500000px;}
.x8e_c00023{left:499.950000px;}
.x80_c00023{left:501.450000px;}
.x2e_c00023{left:503.100000px;}
.x6c_c00023{left:504.900000px;}
.x42_c00023{left:506.100000px;}
.x3f_c00023{left:516.900000px;}
.x8a_c00023{left:518.400000px;}
.x8d_c00023{left:525.450000px;}
.xe4_c00023{left:540.750000px;}
.x117_c00023{left:547.500000px;}
.x94_c00023{left:548.700000px;}
.x108_c00023{left:549.750000px;}
.xf6_c00023{left:561.000000px;}
.x131_c00023{left:562.200000px;}
.xea_c00023{left:566.700000px;}
.x9c_c00023{left:568.650000px;}
.xec_c00023{left:569.700000px;}
.x112_c00023{left:572.100000px;}
.xa4_c00023{left:573.300000px;}
.x11c_c00023{left:574.350000px;}
.x10c_c00023{left:576.000000px;}
.xf7_c00023{left:577.500000px;}
.xab_c00023{left:580.050000px;}
.xbb_c00023{left:584.250000px;}
.x95_c00023{left:586.500000px;}
.xc1_c00023{left:588.600000px;}
.x109_c00023{left:590.100000px;}
.x9d_c00023{left:591.750000px;}
.xfb_c00023{left:592.950000px;}
.x106_c00023{left:595.350000px;}
.x113_c00023{left:597.150000px;}
.x137_c00023{left:598.650000px;}
.x118_c00023{left:599.700000px;}
.xee_c00023{left:601.650000px;}
.x124_c00023{left:602.850000px;}
.x96_c00023{left:604.200000px;}
.xb5_c00023{left:605.850000px;}
.xac_c00023{left:610.650000px;}
.xf3_c00023{left:611.850000px;}
.xd0_c00023{left:613.200000px;}
.xfc_c00023{left:614.250000px;}
.xd4_c00023{left:617.700000px;}
.x10d_c00023{left:620.700000px;}
.xf4_c00023{left:621.900000px;}
.x10f_c00023{left:623.400000px;}
.xcb_c00023{left:625.500000px;}
.x101_c00023{left:626.700000px;}
.xe5_c00023{left:628.500000px;}
.xc7_c00023{left:629.550000px;}
.xdb_c00023{left:631.350000px;}
.x11d_c00023{left:632.400000px;}
.x12f_c00023{left:633.900000px;}
.xef_c00023{left:635.850000px;}
.x97_c00023{left:637.350000px;}
.xbc_c00023{left:640.350000px;}
.x125_c00023{left:643.200000px;}
.x110_c00023{left:644.700000px;}
.x12d_c00023{left:646.200000px;}
.xf8_c00023{left:647.400000px;}
.x9e_c00023{left:648.600000px;}
.x107_c00023{left:650.400000px;}
.x136_c00023{left:651.750000px;}
.x114_c00023{left:654.750000px;}
.x119_c00023{left:656.550000px;}
.xc2_c00023{left:657.750000px;}
.xa5_c00023{left:659.700000px;}
.x98_c00023{left:661.500000px;}
.x126_c00023{left:663.000000px;}
.xbd_c00023{left:665.850000px;}
.xc8_c00023{left:667.050000px;}
.xd5_c00023{left:668.100000px;}
.xad_c00023{left:669.750000px;}
.x129_c00023{left:671.100000px;}
.xd1_c00023{left:672.600000px;}
.xcc_c00023{left:675.150000px;}
.xc3_c00023{left:677.250000px;}
.x12a_c00023{left:679.350000px;}
.xa6_c00023{left:681.600000px;}
.x9f_c00023{left:684.900000px;}
.xae_c00023{left:687.450000px;}
.x127_c00023{left:688.500000px;}
.xdc_c00023{left:690.750000px;}
.xb6_c00023{left:691.950000px;}
.x115_c00023{left:693.600000px;}
.xe6_c00023{left:695.850000px;}
.xcd_c00023{left:697.800000px;}
.xd2_c00023{left:700.350000px;}
.x10a_c00023{left:702.150000px;}
.xe7_c00023{left:704.850000px;}
.x102_c00023{left:707.700000px;}
.x11f_c00023{left:708.900000px;}
.x132_c00023{left:712.500000px;}
.xf9_c00023{left:714.000000px;}
.xce_c00023{left:715.800000px;}
.xdf_c00023{left:717.300000px;}
.xa7_c00023{left:718.350000px;}
.x116_c00023{left:719.850000px;}
.xc9_c00023{left:722.550000px;}
.xe8_c00023{left:723.600000px;}
.xfa_c00023{left:725.550000px;}
.xe0_c00023{left:727.050000px;}
.x12e_c00023{left:728.700000px;}
.xaf_c00023{left:730.650000px;}
.xf0_c00023{left:732.000000px;}
.xfd_c00023{left:733.650000px;}
.xbe_c00023{left:735.300000px;}
.xca_c00023{left:736.950000px;}
.xa8_c00023{left:742.050000px;}
.xb7_c00023{left:744.150000px;}
.xa0_c00023{left:747.150000px;}
.xe1_c00023{left:748.350000px;}
.xb0_c00023{left:750.150000px;}
.x11a_c00023{left:751.950000px;}
.xf1_c00023{left:753.600000px;}
.xb8_c00023{left:756.000000px;}
.xc4_c00023{left:757.500000px;}
.x138_c00023{left:758.550000px;}
.x99_c00023{left:761.250000px;}
.xb1_c00023{left:764.250000px;}
.xd8_c00023{left:765.600000px;}
.x11b_c00023{left:769.950000px;}
.xb9_c00023{left:772.950000px;}
.x104_c00023{left:774.300000px;}
.xa9_c00023{left:776.550000px;}
.xe9_c00023{left:778.350000px;}
.xa1_c00023{left:779.550000px;}
.x122_c00023{left:781.200000px;}
.xc5_c00023{left:784.500000px;}
.x135_c00023{left:785.550000px;}
.xf2_c00023{left:786.750000px;}
.xd6_c00023{left:788.550000px;}
.xfe_c00023{left:790.500000px;}
.xd9_c00023{left:793.350000px;}
.x103_c00023{left:796.200000px;}
.x120_c00023{left:797.400000px;}
.xb2_c00023{left:801.000000px;}
.xe2_c00023{left:802.650000px;}
.x10b_c00023{left:806.550000px;}
.x9a_c00023{left:808.350000px;}
.x128_c00023{left:809.700000px;}
.x11e_c00023{left:811.650000px;}
.xe3_c00023{left:813.150000px;}
.xbf_c00023{left:816.300000px;}
.x111_c00023{left:817.950000px;}
.xd7_c00023{left:819.450000px;}
.xd3_c00023{left:821.400000px;}
.xdd_c00023{left:823.200000px;}
.x105_c00023{left:824.700000px;}
.xeb_c00023{left:826.350000px;}
.x139_c00023{left:827.700000px;}
.x9b_c00023{left:828.900000px;}
.x133_c00023{left:833.400000px;}
.x12b_c00023{left:834.600000px;}
.xaa_c00023{left:836.700000px;}
.xba_c00023{left:840.300000px;}
.xff_c00023{left:842.250000px;}
.xc6_c00023{left:844.200000px;}
.xed_c00023{left:848.250000px;}
.x123_c00023{left:852.750000px;}
.xb3_c00023{left:853.950000px;}
.xa2_c00023{left:856.200000px;}
.xc0_c00023{left:858.000000px;}
.xcf_c00023{left:859.050000px;}
.x13a_c00023{left:860.100000px;}
.xde_c00023{left:861.300000px;}
.xa3_c00023{left:864.900000px;}
.x134_c00023{left:868.350000px;}
.xda_c00023{left:870.750000px;}
.x100_c00023{left:871.800000px;}
.x10e_c00023{left:873.000000px;}
.xb4_c00023{left:876.600000px;}
.x12c_c00023{left:877.800000px;}
.x130_c00023{left:880.200000px;}
.x121_c00023{left:882.000000px;}
.xf5_c00023{left:883.950000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws4_c00023{word-spacing:-9.709577pt;}
.ws8_c00023{word-spacing:-8.244275pt;}
.ws1_c00023{word-spacing:-8.131638pt;}
.ws5_c00023{word-spacing:-7.515152pt;}
.ws9_c00023{word-spacing:-6.909518pt;}
.wsb_c00023{word-spacing:-6.388889pt;}
.ws0_c00023{word-spacing:-2.799693pt;}
.wsc_c00023{word-spacing:-0.259790pt;}
.wse_c00023{word-spacing:0.000000pt;}
.ws7_c00023{word-spacing:1.777778pt;}
.wsa_c00023{word-spacing:3.976608pt;}
.ws6_c00023{word-spacing:3.994178pt;}
.wsd_c00023{word-spacing:21.481481pt;}
.ws2_c00023{word-spacing:105.396825pt;}
.ws3_c00023{word-spacing:797.809524pt;}
.fs5_c00023{font-size:16.000000pt;}
.fs1_c00023{font-size:37.333333pt;}
.fs6_c00023{font-size:48.000000pt;}
.fs4_c00023{font-size:53.333333pt;}
.fs2_c00023{font-size:58.666667pt;}
.fs3_c00023{font-size:64.000000pt;}
.fs0_c00023{font-size:74.666667pt;}
.y0_c00023{bottom:0.000000pt;}
.y63_c00023{bottom:167.066667pt;}
.y62_c00023{bottom:188.133333pt;}
.y31_c00023{bottom:192.000000pt;}
.y30_c00023{bottom:207.333333pt;}
.y61_c00023{bottom:208.266667pt;}
.y60_c00023{bottom:224.000000pt;}
.y2f_c00023{bottom:232.133333pt;}
.y5f_c00023{bottom:239.333333pt;}
.y2e_c00023{bottom:247.866667pt;}
.y5e_c00023{bottom:259.200000pt;}
.y2d_c00023{bottom:263.600000pt;}
.y5d_c00023{bottom:275.200000pt;}
.y2c_c00023{bottom:279.333333pt;}
.y5c_c00023{bottom:290.933333pt;}
.y2b_c00023{bottom:294.400000pt;}
.y5b_c00023{bottom:310.400000pt;}
.y2a_c00023{bottom:318.666667pt;}
.y5a_c00023{bottom:326.133333pt;}
.y29_c00023{bottom:334.933333pt;}
.y59_c00023{bottom:341.600000pt;}
.y28_c00023{bottom:350.000000pt;}
.y58_c00023{bottom:357.600000pt;}
.y27_c00023{bottom:365.066667pt;}
.y57_c00023{bottom:373.333333pt;}
.y56_c00023{bottom:389.066667pt;}
.y26_c00023{bottom:389.733333pt;}
.y55_c00023{bottom:404.800000pt;}
.y25_c00023{bottom:405.466667pt;}
.y24_c00023{bottom:421.466667pt;}
.y54_c00023{bottom:424.933333pt;}
.y23_c00023{bottom:437.200000pt;}
.y53_c00023{bottom:440.666667pt;}
.y22_c00023{bottom:452.533333pt;}
.y52_c00023{bottom:456.666667pt;}
.y51_c00023{bottom:472.666667pt;}
.y21_c00023{bottom:476.800000pt;}
.y50_c00023{bottom:492.000000pt;}
.y20_c00023{bottom:492.800000pt;}
.y1f_c00023{bottom:507.733333pt;}
.y1e_c00023{bottom:515.466667pt;}
.y4f_c00023{bottom:523.733333pt;}
.y1d_c00023{bottom:524.133333pt;}
.y1c_c00023{bottom:539.466667pt;}
.y4e_c00023{bottom:559.733333pt;}
.y1b_c00023{bottom:567.600000pt;}
.y4d_c00023{bottom:575.733333pt;}
.y1a_c00023{bottom:583.600000pt;}
.y4c_c00023{bottom:591.600000pt;}
.y19_c00023{bottom:599.333333pt;}
.y4b_c00023{bottom:607.333333pt;}
.y18_c00023{bottom:615.333333pt;}
.y4a_c00023{bottom:623.066667pt;}
.y17_c00023{bottom:630.400000pt;}
.y49_c00023{bottom:642.666667pt;}
.y16_c00023{bottom:650.533333pt;}
.y15_c00023{bottom:657.600000pt;}
.y48_c00023{bottom:658.666667pt;}
.y47_c00023{bottom:674.666667pt;}
.y14_c00023{bottom:681.333333pt;}
.y46_c00023{bottom:690.666667pt;}
.y13_c00023{bottom:697.333333pt;}
.y45_c00023{bottom:706.400000pt;}
.y12_c00023{bottom:712.933333pt;}
.y44_c00023{bottom:722.133333pt;}
.y11_c00023{bottom:736.000000pt;}
.y43_c00023{bottom:738.133333pt;}
.y10_c00023{bottom:752.000000pt;}
.y42_c00023{bottom:753.866667pt;}
.yf_c00023{bottom:767.333333pt;}
.y41_c00023{bottom:774.133333pt;}
.y40_c00023{bottom:789.733333pt;}
.ye_c00023{bottom:791.200000pt;}
.y3f_c00023{bottom:805.333333pt;}
.yd_c00023{bottom:806.933333pt;}
.y3e_c00023{bottom:821.333333pt;}
.yc_c00023{bottom:822.666667pt;}
.y3d_c00023{bottom:837.600000pt;}
.yb_c00023{bottom:838.400000pt;}
.y3c_c00023{bottom:853.333333pt;}
.ya_c00023{bottom:853.733333pt;}
.y3b_c00023{bottom:869.333333pt;}
.y9_c00023{bottom:881.600000pt;}
.y3a_c00023{bottom:885.333333pt;}
.y8_c00023{bottom:897.333333pt;}
.y39_c00023{bottom:901.066667pt;}
.y7_c00023{bottom:913.333333pt;}
.y38_c00023{bottom:917.066667pt;}
.y6_c00023{bottom:929.066667pt;}
.y37_c00023{bottom:933.066667pt;}
.y5_c00023{bottom:945.066667pt;}
.y36_c00023{bottom:948.800000pt;}
.y4_c00023{bottom:960.400000pt;}
.y35_c00023{bottom:964.800000pt;}
.y3_c00023{bottom:975.733333pt;}
.y34_c00023{bottom:980.800000pt;}
.y33_c00023{bottom:996.533333pt;}
.y2_c00023{bottom:1009.600000pt;}
.y32_c00023{bottom:1012.800000pt;}
.y1_c00023{bottom:1036.533333pt;}
.h7_c00023{height:16.000000pt;}
.h3_c00023{height:37.333333pt;}
.h8_c00023{height:48.000000pt;}
.h6_c00023{height:53.333333pt;}
.h4_c00023{height:58.666667pt;}
.h5_c00023{height:64.000000pt;}
.h2_c00023{height:74.666667pt;}
.h1_c00023{height:1135.333333pt;}
.h0_c00023{height:1135.360027pt;}
.w0_c00023{width:843.200032pt;}
.w1_c00023{width:843.333333pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:169.866667pt;}
.x24_c00023{left:170.933333pt;}
.x85_c00023{left:172.266667pt;}
.x3_c00023{left:175.066667pt;}
.x16_c00023{left:178.266667pt;}
.xa_c00023{left:185.600000pt;}
.x32_c00023{left:186.533333pt;}
.x50_c00023{left:187.466667pt;}
.x65_c00023{left:188.933333pt;}
.x25_c00023{left:190.800000pt;}
.x4_c00023{left:193.600000pt;}
.x39_c00023{left:195.733333pt;}
.x7a_c00023{left:197.733333pt;}
.x40_c00023{left:199.866667pt;}
.x11_c00023{left:203.200000pt;}
.x1c_c00023{left:205.200000pt;}
.x93_c00023{left:207.200000pt;}
.xb_c00023{left:208.266667pt;}
.x90_c00023{left:209.466667pt;}
.x75_c00023{left:210.400000pt;}
.x33_c00023{left:212.400000pt;}
.x2f_c00023{left:213.866667pt;}
.x1d_c00023{left:214.800000pt;}
.x5_c00023{left:216.666667pt;}
.x51_c00023{left:217.866667pt;}
.x87_c00023{left:218.933333pt;}
.x5e_c00023{left:221.466667pt;}
.x54_c00023{left:223.066667pt;}
.x3a_c00023{left:224.266667pt;}
.x12_c00023{left:226.533333pt;}
.x77_c00023{left:228.266667pt;}
.x88_c00023{left:229.200000pt;}
.x61_c00023{left:230.400000pt;}
.x47_c00023{left:234.533333pt;}
.x82_c00023{left:237.600000pt;}
.x43_c00023{left:239.333333pt;}
.x72_c00023{left:240.400000pt;}
.xc_c00023{left:241.600000pt;}
.x1e_c00023{left:243.333333pt;}
.x30_c00023{left:245.200000pt;}
.x17_c00023{left:252.533333pt;}
.x4d_c00023{left:255.066667pt;}
.x62_c00023{left:257.600000pt;}
.x55_c00023{left:258.933333pt;}
.x26_c00023{left:260.266667pt;}
.x91_c00023{left:261.200000pt;}
.x44_c00023{left:262.400000pt;}
.x3b_c00023{left:264.533333pt;}
.x5f_c00023{left:267.600000pt;}
.x34_c00023{left:268.800000pt;}
.x5d_c00023{left:270.800000pt;}
.x1f_c00023{left:274.400000pt;}
.x27_c00023{left:277.200000pt;}
.x70_c00023{left:280.666667pt;}
.x6_c00023{left:281.733333pt;}
.x73_c00023{left:283.200000pt;}
.x68_c00023{left:284.133333pt;}
.x7b_c00023{left:286.000000pt;}
.x35_c00023{left:287.733333pt;}
.x56_c00023{left:288.933333pt;}
.x83_c00023{left:290.533333pt;}
.x6d_c00023{left:295.466667pt;}
.x31_c00023{left:296.666667pt;}
.x28_c00023{left:298.266667pt;}
.x2a_c00023{left:300.800000pt;}
.x36_c00023{left:302.133333pt;}
.x48_c00023{left:303.333333pt;}
.x18_c00023{left:305.066667pt;}
.x5a_c00023{left:307.066667pt;}
.xd_c00023{left:308.533333pt;}
.x74_c00023{left:311.733333pt;}
.x71_c00023{left:313.333333pt;}
.x69_c00023{left:315.200000pt;}
.x52_c00023{left:316.400000pt;}
.x13_c00023{left:318.400000pt;}
.x57_c00023{left:320.666667pt;}
.x49_c00023{left:322.533333pt;}
.x5b_c00023{left:324.400000pt;}
.x6e_c00023{left:325.466667pt;}
.xe_c00023{left:326.400000pt;}
.x89_c00023{left:327.333333pt;}
.x7_c00023{left:329.066667pt;}
.x78_c00023{left:330.000000pt;}
.x19_c00023{left:333.600000pt;}
.x45_c00023{left:336.000000pt;}
.x20_c00023{left:337.066667pt;}
.x41_c00023{left:340.133333pt;}
.x60_c00023{left:343.733333pt;}
.x58_c00023{left:344.666667pt;}
.x8b_c00023{left:345.733333pt;}
.x3c_c00023{left:350.000000pt;}
.x37_c00023{left:351.466667pt;}
.x7d_c00023{left:353.600000pt;}
.x4a_c00023{left:354.533333pt;}
.x2b_c00023{left:357.066667pt;}
.x46_c00023{left:358.400000pt;}
.x66_c00023{left:361.866667pt;}
.x4e_c00023{left:363.200000pt;}
.x81_c00023{left:364.533333pt;}
.x8_c00023{left:366.133333pt;}
.x14_c00023{left:367.066667pt;}
.x53_c00023{left:369.600000pt;}
.x21_c00023{left:372.533333pt;}
.x2c_c00023{left:374.933333pt;}
.x92_c00023{left:375.866667pt;}
.x6a_c00023{left:377.866667pt;}
.x38_c00023{left:380.000000pt;}
.x29_c00023{left:382.133333pt;}
.x3d_c00023{left:383.600000pt;}
.x84_c00023{left:385.200000pt;}
.x2_c00023{left:386.533333pt;}
.x7e_c00023{left:387.866667pt;}
.x63_c00023{left:390.133333pt;}
.x22_c00023{left:391.733333pt;}
.xf_c00023{left:394.266667pt;}
.x6b_c00023{left:395.733333pt;}
.x9_c00023{left:398.400000pt;}
.x6f_c00023{left:399.333333pt;}
.x8c_c00023{left:401.466667pt;}
.x1a_c00023{left:403.066667pt;}
.x76_c00023{left:406.933333pt;}
.x7f_c00023{left:408.666667pt;}
.x4b_c00023{left:412.133333pt;}
.x7c_c00023{left:413.066667pt;}
.x79_c00023{left:414.000000pt;}
.x3e_c00023{left:415.333333pt;}
.x67_c00023{left:416.666667pt;}
.x10_c00023{left:418.266667pt;}
.x8f_c00023{left:422.133333pt;}
.x2d_c00023{left:423.866667pt;}
.x1b_c00023{left:425.733333pt;}
.x5c_c00023{left:428.666667pt;}
.x4c_c00023{left:430.400000pt;}
.x59_c00023{left:432.000000pt;}
.x86_c00023{left:433.600000pt;}
.x4f_c00023{left:436.533333pt;}
.x23_c00023{left:439.466667pt;}
.x64_c00023{left:440.400000pt;}
.x15_c00023{left:441.333333pt;}
.x8e_c00023{left:444.400000pt;}
.x80_c00023{left:445.733333pt;}
.x2e_c00023{left:447.200000pt;}
.x6c_c00023{left:448.800000pt;}
.x42_c00023{left:449.866667pt;}
.x3f_c00023{left:459.466667pt;}
.x8a_c00023{left:460.800000pt;}
.x8d_c00023{left:467.066667pt;}
.xe4_c00023{left:480.666667pt;}
.x117_c00023{left:486.666667pt;}
.x94_c00023{left:487.733333pt;}
.x108_c00023{left:488.666667pt;}
.xf6_c00023{left:498.666667pt;}
.x131_c00023{left:499.733333pt;}
.xea_c00023{left:503.733333pt;}
.x9c_c00023{left:505.466667pt;}
.xec_c00023{left:506.400000pt;}
.x112_c00023{left:508.533333pt;}
.xa4_c00023{left:509.600000pt;}
.x11c_c00023{left:510.533333pt;}
.x10c_c00023{left:512.000000pt;}
.xf7_c00023{left:513.333333pt;}
.xab_c00023{left:515.600000pt;}
.xbb_c00023{left:519.333333pt;}
.x95_c00023{left:521.333333pt;}
.xc1_c00023{left:523.200000pt;}
.x109_c00023{left:524.533333pt;}
.x9d_c00023{left:526.000000pt;}
.xfb_c00023{left:527.066667pt;}
.x106_c00023{left:529.200000pt;}
.x113_c00023{left:530.800000pt;}
.x137_c00023{left:532.133333pt;}
.x118_c00023{left:533.066667pt;}
.xee_c00023{left:534.800000pt;}
.x124_c00023{left:535.866667pt;}
.x96_c00023{left:537.066667pt;}
.xb5_c00023{left:538.533333pt;}
.xac_c00023{left:542.800000pt;}
.xf3_c00023{left:543.866667pt;}
.xd0_c00023{left:545.066667pt;}
.xfc_c00023{left:546.000000pt;}
.xd4_c00023{left:549.066667pt;}
.x10d_c00023{left:551.733333pt;}
.xf4_c00023{left:552.800000pt;}
.x10f_c00023{left:554.133333pt;}
.xcb_c00023{left:556.000000pt;}
.x101_c00023{left:557.066667pt;}
.xe5_c00023{left:558.666667pt;}
.xc7_c00023{left:559.600000pt;}
.xdb_c00023{left:561.200000pt;}
.x11d_c00023{left:562.133333pt;}
.x12f_c00023{left:563.466667pt;}
.xef_c00023{left:565.200000pt;}
.x97_c00023{left:566.533333pt;}
.xbc_c00023{left:569.200000pt;}
.x125_c00023{left:571.733333pt;}
.x110_c00023{left:573.066667pt;}
.x12d_c00023{left:574.400000pt;}
.xf8_c00023{left:575.466667pt;}
.x9e_c00023{left:576.533333pt;}
.x107_c00023{left:578.133333pt;}
.x136_c00023{left:579.333333pt;}
.x114_c00023{left:582.000000pt;}
.x119_c00023{left:583.600000pt;}
.xc2_c00023{left:584.666667pt;}
.xa5_c00023{left:586.400000pt;}
.x98_c00023{left:588.000000pt;}
.x126_c00023{left:589.333333pt;}
.xbd_c00023{left:591.866667pt;}
.xc8_c00023{left:592.933333pt;}
.xd5_c00023{left:593.866667pt;}
.xad_c00023{left:595.333333pt;}
.x129_c00023{left:596.533333pt;}
.xd1_c00023{left:597.866667pt;}
.xcc_c00023{left:600.133333pt;}
.xc3_c00023{left:602.000000pt;}
.x12a_c00023{left:603.866667pt;}
.xa6_c00023{left:605.866667pt;}
.x9f_c00023{left:608.800000pt;}
.xae_c00023{left:611.066667pt;}
.x127_c00023{left:612.000000pt;}
.xdc_c00023{left:614.000000pt;}
.xb6_c00023{left:615.066667pt;}
.x115_c00023{left:616.533333pt;}
.xe6_c00023{left:618.533333pt;}
.xcd_c00023{left:620.266667pt;}
.xd2_c00023{left:622.533333pt;}
.x10a_c00023{left:624.133333pt;}
.xe7_c00023{left:626.533333pt;}
.x102_c00023{left:629.066667pt;}
.x11f_c00023{left:630.133333pt;}
.x132_c00023{left:633.333333pt;}
.xf9_c00023{left:634.666667pt;}
.xce_c00023{left:636.266667pt;}
.xdf_c00023{left:637.600000pt;}
.xa7_c00023{left:638.533333pt;}
.x116_c00023{left:639.866667pt;}
.xc9_c00023{left:642.266667pt;}
.xe8_c00023{left:643.200000pt;}
.xfa_c00023{left:644.933333pt;}
.xe0_c00023{left:646.266667pt;}
.x12e_c00023{left:647.733333pt;}
.xaf_c00023{left:649.466667pt;}
.xf0_c00023{left:650.666667pt;}
.xfd_c00023{left:652.133333pt;}
.xbe_c00023{left:653.600000pt;}
.xca_c00023{left:655.066667pt;}
.xa8_c00023{left:659.600000pt;}
.xb7_c00023{left:661.466667pt;}
.xa0_c00023{left:664.133333pt;}
.xe1_c00023{left:665.200000pt;}
.xb0_c00023{left:666.800000pt;}
.x11a_c00023{left:668.400000pt;}
.xf1_c00023{left:669.866667pt;}
.xb8_c00023{left:672.000000pt;}
.xc4_c00023{left:673.333333pt;}
.x138_c00023{left:674.266667pt;}
.x99_c00023{left:676.666667pt;}
.xb1_c00023{left:679.333333pt;}
.xd8_c00023{left:680.533333pt;}
.x11b_c00023{left:684.400000pt;}
.xb9_c00023{left:687.066667pt;}
.x104_c00023{left:688.266667pt;}
.xa9_c00023{left:690.266667pt;}
.xe9_c00023{left:691.866667pt;}
.xa1_c00023{left:692.933333pt;}
.x122_c00023{left:694.400000pt;}
.xc5_c00023{left:697.333333pt;}
.x135_c00023{left:698.266667pt;}
.xf2_c00023{left:699.333333pt;}
.xd6_c00023{left:700.933333pt;}
.xfe_c00023{left:702.666667pt;}
.xd9_c00023{left:705.200000pt;}
.x103_c00023{left:707.733333pt;}
.x120_c00023{left:708.800000pt;}
.xb2_c00023{left:712.000000pt;}
.xe2_c00023{left:713.466667pt;}
.x10b_c00023{left:716.933333pt;}
.x9a_c00023{left:718.533333pt;}
.x128_c00023{left:719.733333pt;}
.x11e_c00023{left:721.466667pt;}
.xe3_c00023{left:722.800000pt;}
.xbf_c00023{left:725.600000pt;}
.x111_c00023{left:727.066667pt;}
.xd7_c00023{left:728.400000pt;}
.xd3_c00023{left:730.133333pt;}
.xdd_c00023{left:731.733333pt;}
.x105_c00023{left:733.066667pt;}
.xeb_c00023{left:734.533333pt;}
.x139_c00023{left:735.733333pt;}
.x9b_c00023{left:736.800000pt;}
.x133_c00023{left:740.800000pt;}
.x12b_c00023{left:741.866667pt;}
.xaa_c00023{left:743.733333pt;}
.xba_c00023{left:746.933333pt;}
.xff_c00023{left:748.666667pt;}
.xc6_c00023{left:750.400000pt;}
.xed_c00023{left:754.000000pt;}
.x123_c00023{left:758.000000pt;}
.xb3_c00023{left:759.066667pt;}
.xa2_c00023{left:761.066667pt;}
.xc0_c00023{left:762.666667pt;}
.xcf_c00023{left:763.600000pt;}
.x13a_c00023{left:764.533333pt;}
.xde_c00023{left:765.600000pt;}
.xa3_c00023{left:768.800000pt;}
.x134_c00023{left:771.866667pt;}
.xda_c00023{left:774.000000pt;}
.x100_c00023{left:774.933333pt;}
.x10e_c00023{left:776.000000pt;}
.xb4_c00023{left:779.200000pt;}
.x12c_c00023{left:780.266667pt;}
.x130_c00023{left:782.400000pt;}
.x121_c00023{left:784.000000pt;}
.xf5_c00023{left:785.733333pt;}
}





/* 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_c00024 {
    display:none;
  }
  .loading-indicator_c00024.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00024 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_c00024 { 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_c00024" -> "#page-container .classname_c00024")
 */
.pf_c00024 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00024 { /* 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_c00024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00024 { /* 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_c00024 { /* 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_c00024 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00024 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00024 {overflow:visible;}
  }
}
.c_c00024 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00024 { /* 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_c00024:after { /* webkit #35443 */
  content: '';
}
.t_c00024:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00024 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 */
}
.__c00024 { /* 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_c00024 { /* info for Javascript */
  display:none;
}
.l_c00024 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00024 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00024 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00024: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_c00024 {
    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_c00024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00024.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_c00024 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00024;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.000000;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;}
.m110_c00024{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m105_c00024{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00024{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mea_c00024{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.me8_c00024{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m22_c00024{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md7_c00024{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00024{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m23_c00024{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m60_c00024{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m14_c00024{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m77_c00024{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m42_c00024{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00024{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m35_c00024{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mca_c00024{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00024{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mac_c00024{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m20_c00024{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m7_c00024{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00024{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m50_c00024{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m48_c00024{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m73_c00024{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.ma_c00024{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m16_c00024{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc_c00024{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m1_c00024{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m75_c00024{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00024{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00024{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00024{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m74_c00024{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m17_c00024{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.maa_c00024{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md0_c00024{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00024{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00024{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00024{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00024{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.me3_c00024{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m107_c00024{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00024{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mb_c00024{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m71_c00024{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00024{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m11_c00024{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m49_c00024{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m108_c00024{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00024{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m57_c00024{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00024{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m6_c00024{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00024{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m8_c00024{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md8_c00024{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00024{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m15_c00024{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00024{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m18_c00024{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m81_c00024{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m79_c00024{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00024{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00024{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00024{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mef_c00024{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m62_c00024{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m99_c00024{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00024{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m84_c00024{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00024{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00024{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00024{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m56_c00024{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00024{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00024{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m24_c00024{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m19_c00024{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00024{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00024{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m27_c00024{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m54_c00024{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00024{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00024{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00024{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00024{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00024{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m67_c00024{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00024{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00024{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00024{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00024{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m40_c00024{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m58_c00024{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mce_c00024{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m78_c00024{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9_c00024{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00024{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m65_c00024{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mda_c00024{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.me6_c00024{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m36_c00024{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00024{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m87_c00024{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00024{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00024{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00024{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md2_c00024{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m55_c00024{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me_c00024{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00024{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10_c00024{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m72_c00024{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00024{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00024{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00024{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00024{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md1_c00024{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m21_c00024{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00024{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00024{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m93_c00024{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m100_c00024{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m32_c00024{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m69_c00024{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5_c00024{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m82_c00024{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00024{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m68_c00024{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m88_c00024{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00024{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00024{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00024{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m31_c00024{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00024{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m45_c00024{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m63_c00024{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00024{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md_c00024{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00024{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m46_c00024{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m39_c00024{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00024{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mae_c00024{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00024{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m30_c00024{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00024{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m101_c00024{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mde_c00024{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m13_c00024{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00024{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m29_c00024{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00024{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m44_c00024{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m33_c00024{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m103_c00024{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m96_c00024{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mff_c00024{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00024{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00024{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.maf_c00024{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3_c00024{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00024{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00024{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00024{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00024{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00024{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00024{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mad_c00024{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m37_c00024{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m90_c00024{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00024{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00024{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00024{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m25_c00024{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00024{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m89_c00024{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m102_c00024{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00024{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me7_c00024{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00024{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00024{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m104_c00024{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00024{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me9_c00024{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m52_c00024{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00024{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mab_c00024{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00024{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00024{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m97_c00024{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00024{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00024{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.meb_c00024{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00024{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00024{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m66_c00024{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mf_c00024{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me2_c00024{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00024{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m94_c00024{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00024{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m98_c00024{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.md3_c00024{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mec_c00024{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m92_c00024{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00024{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00024{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00024{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m106_c00024{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me5_c00024{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.med_c00024{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00024{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m26_c00024{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00024{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m86_c00024{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m64_c00024{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m53_c00024{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00024{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00024{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12_c00024{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md5_c00024{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00024{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m41_c00024{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00024{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mba_c00024{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00024{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.me0_c00024{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00024{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m28_c00024{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md9_c00024{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m43_c00024{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00024{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00024{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m109_c00024{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m95_c00024{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00024{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00024{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m61_c00024{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00024{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mee_c00024{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00024{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m91_c00024{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.md6_c00024{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m59_c00024{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.me4_c00024{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m76_c00024{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00024{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00024{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00024{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00024{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00024{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m70_c00024{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00024{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.md4_c00024{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00024{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00024{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m83_c00024{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m47_c00024{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00024{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m38_c00024{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m51_c00024{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m80_c00024{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00024{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00024{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.m0_c00024{transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00024{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m34_c00024{transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);}
.m85_c00024{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00024{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.me1_c00024{transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls0_c00024{letter-spacing:0.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{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__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00024{word-spacing:-10.789474px;}
.ws1_c00024{word-spacing:-2.200573px;}
.ws4_c00024{word-spacing:0.000000px;}
.ws0_c00024{word-spacing:1.312715px;}
.ws2_c00024{word-spacing:4.375000px;}
.fc0_c00024{color:transparent;}
.fs5_c00024{font-size:24.000000px;}
.fs6_c00024{font-size:48.000000px;}
.fs4_c00024{font-size:54.000000px;}
.fs3_c00024{font-size:60.000000px;}
.fs2_c00024{font-size:66.000000px;}
.fs1_c00024{font-size:72.000000px;}
.fs0_c00024{font-size:114.000000px;}
.y0_c00024{bottom:0.000000px;}
.y64_c00024{bottom:175.650000px;}
.y63_c00024{bottom:193.350000px;}
.y32_c00024{bottom:193.650000px;}
.y62_c00024{bottom:211.350000px;}
.y31_c00024{bottom:211.650000px;}
.y30_c00024{bottom:229.350000px;}
.y2f_c00024{bottom:247.050000px;}
.y61_c00024{bottom:247.350000px;}
.y2e_c00024{bottom:264.750000px;}
.y60_c00024{bottom:265.350000px;}
.y2d_c00024{bottom:283.050000px;}
.y5f_c00024{bottom:286.950000px;}
.y2c_c00024{bottom:300.000000px;}
.y5e_c00024{bottom:305.250000px;}
.y2b_c00024{bottom:318.000000px;}
.y5d_c00024{bottom:323.250000px;}
.y2a_c00024{bottom:335.700000px;}
.y5c_c00024{bottom:340.950000px;}
.y29_c00024{bottom:353.400000px;}
.y5b_c00024{bottom:367.200000px;}
.y28_c00024{bottom:371.100000px;}
.y5a_c00024{bottom:384.900000px;}
.y27_c00024{bottom:398.100000px;}
.y59_c00024{bottom:402.900000px;}
.y26_c00024{bottom:415.800000px;}
.y58_c00024{bottom:420.900000px;}
.y25_c00024{bottom:435.600000px;}
.y57_c00024{bottom:446.700000px;}
.y65_c00024{bottom:450.750000px;}
.y24_c00024{bottom:451.500000px;}
.y56_c00024{bottom:464.400000px;}
.y23_c00024{bottom:469.500000px;}
.y55_c00024{bottom:486.750000px;}
.y22_c00024{bottom:487.500000px;}
.y54_c00024{bottom:504.600000px;}
.y21_c00024{bottom:513.750000px;}
.y53_c00024{bottom:522.600000px;}
.y20_c00024{bottom:531.750000px;}
.y52_c00024{bottom:540.300000px;}
.y1f_c00024{bottom:550.050000px;}
.y51_c00024{bottom:558.600000px;}
.y1e_c00024{bottom:575.700000px;}
.y50_c00024{bottom:576.300000px;}
.y1d_c00024{bottom:593.550000px;}
.y4f_c00024{bottom:594.000000px;}
.y1c_c00024{bottom:611.550000px;}
.y4e_c00024{bottom:611.700000px;}
.y1b_c00024{bottom:629.250000px;}
.y4d_c00024{bottom:629.700000px;}
.y1a_c00024{bottom:647.250000px;}
.y4c_c00024{bottom:655.800000px;}
.y19_c00024{bottom:673.500000px;}
.y4b_c00024{bottom:673.800000px;}
.y18_c00024{bottom:691.500000px;}
.y4a_c00024{bottom:709.500000px;}
.y17_c00024{bottom:717.450000px;}
.y49_c00024{bottom:731.550000px;}
.y16_c00024{bottom:736.050000px;}
.y48_c00024{bottom:749.850000px;}
.y15_c00024{bottom:753.750000px;}
.y47_c00024{bottom:767.100000px;}
.y14_c00024{bottom:771.750000px;}
.y46_c00024{bottom:784.800000px;}
.y13_c00024{bottom:789.450000px;}
.y45_c00024{bottom:802.800000px;}
.y12_c00024{bottom:807.150000px;}
.y44_c00024{bottom:820.800000px;}
.y11_c00024{bottom:825.150000px;}
.y43_c00024{bottom:833.700000px;}
.y42_c00024{bottom:842.850000px;}
.y10_c00024{bottom:851.700000px;}
.y41_c00024{bottom:860.550000px;}
.yf_c00024{bottom:869.700000px;}
.y40_c00024{bottom:878.250000px;}
.ye_c00024{bottom:887.700000px;}
.y3f_c00024{bottom:896.250000px;}
.yd_c00024{bottom:905.400000px;}
.y3e_c00024{bottom:913.950000px;}
.yc_c00024{bottom:923.400000px;}
.y3d_c00024{bottom:931.650000px;}
.yb_c00024{bottom:940.950000px;}
.y3c_c00024{bottom:954.900000px;}
.ya_c00024{bottom:958.650000px;}
.y3b_c00024{bottom:972.150000px;}
.y9_c00024{bottom:976.350000px;}
.y3a_c00024{bottom:990.450000px;}
.y8_c00024{bottom:1002.900000px;}
.y39_c00024{bottom:1007.700000px;}
.y7_c00024{bottom:1020.900000px;}
.y38_c00024{bottom:1024.950000px;}
.y6_c00024{bottom:1038.600000px;}
.y37_c00024{bottom:1043.250000px;}
.y36_c00024{bottom:1060.950000px;}
.y5_c00024{bottom:1065.150000px;}
.y35_c00024{bottom:1078.200000px;}
.y4_c00024{bottom:1083.150000px;}
.y34_c00024{bottom:1100.100000px;}
.y3_c00024{bottom:1100.850000px;}
.y33_c00024{bottom:1118.100000px;}
.y2_c00024{bottom:1118.550000px;}
.y1_c00024{bottom:1145.550000px;}
.h7_c00024{height:24.000000px;}
.h8_c00024{height:48.000000px;}
.h6_c00024{height:54.000000px;}
.h5_c00024{height:60.000000px;}
.h4_c00024{height:66.000000px;}
.h3_c00024{height:72.000000px;}
.h2_c00024{height:114.000000px;}
.h0_c00024{height:1268.640015px;}
.h1_c00024{height:1269.000000px;}
.w0_c00024{width:948.600036px;}
.w1_c00024{width:948.750000px;}
.x0_c00024{left:0.000000px;}
.xa0_c00024{left:68.100000px;}
.x92_c00024{left:69.150000px;}
.x8b_c00024{left:70.650000px;}
.x85_c00024{left:73.050000px;}
.x73_c00024{left:74.400000px;}
.x64_c00024{left:76.200000px;}
.x54_c00024{left:78.300000px;}
.x39_c00024{left:79.800000px;}
.x26_c00024{left:81.300000px;}
.x13_c00024{left:82.950000px;}
.x3_c00024{left:84.300000px;}
.x99_c00024{left:87.150000px;}
.x88_c00024{left:89.700000px;}
.x7d_c00024{left:91.800000px;}
.x27_c00024{left:92.850000px;}
.x60_c00024{left:95.700000px;}
.x2f_c00024{left:97.650000px;}
.x1d_c00024{left:100.800000px;}
.x6b_c00024{left:102.150000px;}
.x59_c00024{left:103.800000px;}
.x65_c00024{left:105.000000px;}
.x40_c00024{left:107.100000px;}
.x4_c00024{left:109.800000px;}
.x9a_c00024{left:112.350000px;}
.x9d_c00024{left:113.850000px;}
.xa_c00024{left:115.950000px;}
.x30_c00024{left:117.450000px;}
.x78_c00024{left:119.100000px;}
.x98_c00024{left:121.200000px;}
.x14_c00024{left:123.300000px;}
.x28_c00024{left:127.050000px;}
.x4c_c00024{left:128.100000px;}
.xa3_c00024{left:129.600000px;}
.x80_c00024{left:130.650000px;}
.x6f_c00024{left:132.750000px;}
.xb_c00024{left:133.950000px;}
.x47_c00024{left:135.750000px;}
.x74_c00024{left:137.400000px;}
.x3a_c00024{left:139.950000px;}
.x1e_c00024{left:143.250000px;}
.x1a_c00024{left:144.750000px;}
.x86_c00024{left:147.300000px;}
.x4d_c00024{left:149.400000px;}
.x48_c00024{left:150.900000px;}
.x6c_c00024{left:152.550000px;}
.x8f_c00024{left:154.650000px;}
.x33_c00024{left:155.850000px;}
.x75_c00024{left:158.250000px;}
.x1f_c00024{left:159.750000px;}
.x5e_c00024{left:160.950000px;}
.x89_c00024{left:162.750000px;}
.x8c_c00024{left:164.550000px;}
.x55_c00024{left:169.800000px;}
.x5_c00024{left:172.050000px;}
.x9b_c00024{left:174.600000px;}
.x29_c00024{left:177.450000px;}
.x4e_c00024{left:179.250000px;}
.x31_c00024{left:181.200000px;}
.x91_c00024{left:182.850000px;}
.x5a_c00024{left:184.050000px;}
.x93_c00024{left:185.700000px;}
.x56_c00024{left:187.050000px;}
.x6_c00024{left:188.250000px;}
.x3b_c00024{left:189.300000px;}
.x68_c00024{left:190.500000px;}
.x61_c00024{left:191.850000px;}
.xa4_c00024{left:194.100000px;}
.xc_c00024{left:195.450000px;}
.x2a_c00024{left:198.300000px;}
.x41_c00024{left:199.350000px;}
.x3c_c00024{left:204.750000px;}
.x32_c00024{left:206.700000px;}
.x5f_c00024{left:207.750000px;}
.x6d_c00024{left:209.400000px;}
.x8a_c00024{left:211.050000px;}
.x5b_c00024{left:212.100000px;}
.xd_c00024{left:214.500000px;}
.x1b_c00024{left:216.000000px;}
.x34_c00024{left:218.100000px;}
.x70_c00024{left:220.950000px;}
.x62_c00024{left:222.450000px;}
.x79_c00024{left:224.250000px;}
.x15_c00024{left:226.200000px;}
.xa9_c00024{left:227.400000px;}
.x9f_c00024{left:228.900000px;}
.xe_c00024{left:231.000000px;}
.x9e_c00024{left:235.050000px;}
.x3d_c00024{left:236.850000px;}
.x1c_c00024{left:238.650000px;}
.x35_c00024{left:240.000000px;}
.x4f_c00024{left:241.950000px;}
.x7c_c00024{left:244.500000px;}
.x16_c00024{left:246.300000px;}
.x87_c00024{left:247.500000px;}
.x76_c00024{left:248.850000px;}
.x42_c00024{left:253.050000px;}
.x7_c00024{left:255.150000px;}
.xa7_c00024{left:256.200000px;}
.xab_c00024{left:258.600000px;}
.x2b_c00024{left:261.000000px;}
.xa1_c00024{left:263.250000px;}
.x43_c00024{left:264.600000px;}
.x57_c00024{left:266.550000px;}
.x17_c00024{left:268.950000px;}
.x8d_c00024{left:271.800000px;}
.x69_c00024{left:272.850000px;}
.x5c_c00024{left:275.100000px;}
.x49_c00024{left:278.250000px;}
.xa5_c00024{left:279.450000px;}
.x96_c00024{left:282.750000px;}
.x7e_c00024{left:284.400000px;}
.x2c_c00024{left:286.200000px;}
.x71_c00024{left:289.050000px;}
.x50_c00024{left:291.300000px;}
.xf_c00024{left:293.250000px;}
.x20_c00024{left:295.200000px;}
.x3e_c00024{left:296.550000px;}
.x6e_c00024{left:299.700000px;}
.x77_c00024{left:302.550000px;}
.x2d_c00024{left:307.800000px;}
.x51_c00024{left:311.850000px;}
.x7a_c00024{left:313.500000px;}
.x21_c00024{left:314.700000px;}
.x36_c00024{left:317.100000px;}
.x44_c00024{left:318.600000px;}
.x10_c00024{left:320.550000px;}
.x2e_c00024{left:322.950000px;}
.x72_c00024{left:326.100000px;}
.x83_c00024{left:327.600000px;}
.x1_c00024{left:329.700000px;}
.x94_c00024{left:333.150000px;}
.x8_c00024{left:334.350000px;}
.x4a_c00024{left:336.150000px;}
.x66_c00024{left:338.700000px;}
.x22_c00024{left:340.950000px;}
.x11_c00024{left:343.200000px;}
.x84_c00024{left:345.600000px;}
.x52_c00024{left:346.800000px;}
.x67_c00024{left:348.750000px;}
.xa8_c00024{left:349.800000px;}
.x3f_c00024{left:352.650000px;}
.xaa_c00024{left:354.150000px;}
.x9_c00024{left:355.950000px;}
.x4b_c00024{left:357.750000px;}
.x6a_c00024{left:358.800000px;}
.x18_c00024{left:360.000000px;}
.x9c_c00024{left:363.150000px;}
.x97_c00024{left:364.800000px;}
.x45_c00024{left:366.150000px;}
.xa2_c00024{left:368.250000px;}
.x37_c00024{left:369.300000px;}
.x7f_c00024{left:370.800000px;}
.x81_c00024{left:372.600000px;}
.x63_c00024{left:374.700000px;}
.x12_c00024{left:378.450000px;}
.x38_c00024{left:381.150000px;}
.x90_c00024{left:382.500000px;}
.x46_c00024{left:384.150000px;}
.x7b_c00024{left:386.250000px;}
.x95_c00024{left:388.200000px;}
.x23_c00024{left:389.550000px;}
.xa6_c00024{left:393.150000px;}
.x8e_c00024{left:394.650000px;}
.x82_c00024{left:395.700000px;}
.x5d_c00024{left:397.500000px;}
.x24_c00024{left:399.600000px;}
.x58_c00024{left:402.600000px;}
.x53_c00024{left:405.150000px;}
.x19_c00024{left:408.600000px;}
.x25_c00024{left:412.200000px;}
.x13d_c00024{left:427.950000px;}
.x152_c00024{left:429.000000px;}
.x136_c00024{left:430.350000px;}
.x141_c00024{left:431.400000px;}
.x130_c00024{left:432.900000px;}
.x121_c00024{left:433.950000px;}
.x11b_c00024{left:435.000000px;}
.xfc_c00024{left:436.200000px;}
.xe2_c00024{left:437.400000px;}
.xcd_c00024{left:438.600000px;}
.xb3_c00024{left:439.950000px;}
.xac_c00024{left:441.000000px;}
.x102_c00024{left:443.100000px;}
.x154_c00024{left:446.100000px;}
.x149_c00024{left:447.150000px;}
.x14e_c00024{left:448.950000px;}
.x12b_c00024{left:451.500000px;}
.xff_c00024{left:452.550000px;}
.x103_c00024{left:453.900000px;}
.xd5_c00024{left:455.550000px;}
.xb8_c00024{left:457.200000px;}
.x14c_c00024{left:459.000000px;}
.x161_c00024{left:460.050000px;}
.xc0_c00024{left:461.100000px;}
.x10c_c00024{left:463.500000px;}
.x153_c00024{left:465.300000px;}
.x109_c00024{left:466.650000px;}
.x131_c00024{left:469.200000px;}
.xb4_c00024{left:475.200000px;}
.x137_c00024{left:476.400000px;}
.xd6_c00024{left:477.450000px;}
.x12c_c00024{left:478.500000px;}
.xfd_c00024{left:479.700000px;}
.xce_c00024{left:481.500000px;}
.x11d_c00024{left:482.850000px;}
.xad_c00024{left:484.200000px;}
.x111_c00024{left:485.400000px;}
.x142_c00024{left:487.200000px;}
.x100_c00024{left:488.250000px;}
.x11c_c00024{left:490.800000px;}
.xc1_c00024{left:493.800000px;}
.xb5_c00024{left:496.050000px;}
.x13e_c00024{left:497.700000px;}
.xf5_c00024{left:502.200000px;}
.xc6_c00024{left:503.850000px;}
.x101_c00024{left:505.200000px;}
.x15d_c00024{left:507.000000px;}
.x157_c00024{left:508.650000px;}
.x13f_c00024{left:511.050000px;}
.x15a_c00024{left:512.400000px;}
.x122_c00024{left:513.450000px;}
.xae_c00024{left:515.100000px;}
.xdd_c00024{left:516.300000px;}
.x117_c00024{left:518.850000px;}
.xe9_c00024{left:519.900000px;}
.x15e_c00024{left:521.100000px;}
.xc7_c00024{left:522.600000px;}
.x143_c00024{left:525.300000px;}
.xf6_c00024{left:526.350000px;}
.x138_c00024{left:527.550000px;}
.x11e_c00024{left:529.350000px;}
.x123_c00024{left:533.550000px;}
.xcf_c00024{left:535.800000px;}
.x10d_c00024{left:538.050000px;}
.xea_c00024{left:540.450000px;}
.xb9_c00024{left:542.100000px;}
.xb6_c00024{left:543.150000px;}
.x112_c00024{left:544.800000px;}
.xd7_c00024{left:546.150000px;}
.x104_c00024{left:547.650000px;}
.xd0_c00024{left:550.950000px;}
.x128_c00024{left:552.150000px;}
.x10e_c00024{left:553.950000px;}
.x11f_c00024{left:555.300000px;}
.x139_c00024{left:557.100000px;}
.xd8_c00024{left:558.750000px;}
.xb7_c00024{left:562.200000px;}
.xba_c00024{left:564.450000px;}
.x14f_c00024{left:569.550000px;}
.x113_c00024{left:572.100000px;}
.xde_c00024{left:573.900000px;}
.xc2_c00024{left:575.100000px;}
.xef_c00024{left:576.150000px;}
.xd9_c00024{left:577.500000px;}
.x118_c00024{left:578.550000px;}
.xe3_c00024{left:579.600000px;}
.xf7_c00024{left:580.650000px;}
.x124_c00024{left:581.850000px;}
.x144_c00024{left:583.200000px;}
.x129_c00024{left:584.550000px;}
.x150_c00024{left:586.500000px;}
.x15b_c00024{left:588.300000px;}
.xbb_c00024{left:589.650000px;}
.xe4_c00024{left:591.150000px;}
.xf0_c00024{left:593.400000px;}
.xd1_c00024{left:595.650000px;}
.xaf_c00024{left:598.650000px;}
.x10f_c00024{left:600.750000px;}
.x13a_c00024{left:602.100000px;}
.x125_c00024{left:603.150000px;}
.xf8_c00024{left:604.350000px;}
.x14a_c00024{left:607.200000px;}
.x105_c00024{left:608.850000px;}
.xe5_c00024{left:610.650000px;}
.xbc_c00024{left:613.050000px;}
.x114_c00024{left:615.300000px;}
.x119_c00024{left:619.650000px;}
.x147_c00024{left:621.750000px;}
.xed_c00024{left:624.600000px;}
.x155_c00024{left:626.100000px;}
.xfe_c00024{left:627.600000px;}
.xbd_c00024{left:629.250000px;}
.x10a_c00024{left:631.950000px;}
.xdf_c00024{left:633.000000px;}
.x15f_c00024{left:634.800000px;}
.x126_c00024{left:636.300000px;}
.x145_c00024{left:637.950000px;}
.x13b_c00024{left:639.600000px;}
.xc8_c00024{left:642.450000px;}
.xf1_c00024{left:645.600000px;}
.xf9_c00024{left:647.250000px;}
.x158_c00024{left:648.750000px;}
.xb0_c00024{left:649.800000px;}
.x12a_c00024{left:651.150000px;}
.xe0_c00024{left:654.600000px;}
.xc3_c00024{left:656.100000px;}
.x148_c00024{left:657.450000px;}
.x115_c00024{left:658.800000px;}
.xbe_c00024{left:659.850000px;}
.xd2_c00024{left:661.200000px;}
.xc9_c00024{left:662.550000px;}
.xda_c00024{left:666.300000px;}
.xb1_c00024{left:667.800000px;}
.x11a_c00024{left:670.050000px;}
.x106_c00024{left:671.100000px;}
.xee_c00024{left:673.200000px;}
.x12d_c00024{left:676.200000px;}
.xf2_c00024{left:677.250000px;}
.xdb_c00024{left:678.600000px;}
.x10b_c00024{left:679.800000px;}
.x133_c00024{left:682.650000px;}
.xfa_c00024{left:684.000000px;}
.x162_c00024{left:685.350000px;}
.xd3_c00024{left:686.400000px;}
.xc4_c00024{left:688.800000px;}
.xca_c00024{left:692.850000px;}
.x134_c00024{left:694.200000px;}
.x12e_c00024{left:696.000000px;}
.xf3_c00024{left:697.350000px;}
.xe1_c00024{left:699.900000px;}
.x120_c00024{left:701.400000px;}
.x127_c00024{left:703.350000px;}
.xcb_c00024{left:704.400000px;}
.xd4_c00024{left:706.200000px;}
.x116_c00024{left:708.150000px;}
.xbf_c00024{left:709.200000px;}
.x15c_c00024{left:710.400000px;}
.x135_c00024{left:711.900000px;}
.x160_c00024{left:712.950000px;}
.xe6_c00024{left:714.000000px;}
.x14b_c00024{left:716.400000px;}
.x107_c00024{left:718.650000px;}
.x132_c00024{left:724.500000px;}
.x151_c00024{left:726.000000px;}
.xb2_c00024{left:727.200000px;}
.x13c_c00024{left:728.850000px;}
.x159_c00024{left:730.200000px;}
.xeb_c00024{left:731.550000px;}
.xe7_c00024{left:732.750000px;}
.x14d_c00024{left:734.550000px;}
.x140_c00024{left:737.700000px;}
.x108_c00024{left:739.500000px;}
.xf4_c00024{left:741.600000px;}
.x156_c00024{left:743.100000px;}
.x12f_c00024{left:746.400000px;}
.x146_c00024{left:747.450000px;}
.xe8_c00024{left:750.000000px;}
.xdc_c00024{left:751.650000px;}
.xc5_c00024{left:755.100000px;}
.xec_c00024{left:758.850000px;}
.xfb_c00024{left:759.900000px;}
.x110_c00024{left:761.250000px;}
.xcc_c00024{left:762.300000px;}
.x2_c00024{left:769.650000px;}
.x163_c00024{left:788.700000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws3_c00024{word-spacing:-9.590643pt;}
.ws1_c00024{word-spacing:-1.956065pt;}
.ws4_c00024{word-spacing:0.000000pt;}
.ws0_c00024{word-spacing:1.166858pt;}
.ws2_c00024{word-spacing:3.888889pt;}
.fs5_c00024{font-size:21.333333pt;}
.fs6_c00024{font-size:42.666667pt;}
.fs4_c00024{font-size:48.000000pt;}
.fs3_c00024{font-size:53.333333pt;}
.fs2_c00024{font-size:58.666667pt;}
.fs1_c00024{font-size:64.000000pt;}
.fs0_c00024{font-size:101.333333pt;}
.y0_c00024{bottom:0.000000pt;}
.y64_c00024{bottom:156.133333pt;}
.y63_c00024{bottom:171.866667pt;}
.y32_c00024{bottom:172.133333pt;}
.y62_c00024{bottom:187.866667pt;}
.y31_c00024{bottom:188.133333pt;}
.y30_c00024{bottom:203.866667pt;}
.y2f_c00024{bottom:219.600000pt;}
.y61_c00024{bottom:219.866667pt;}
.y2e_c00024{bottom:235.333333pt;}
.y60_c00024{bottom:235.866667pt;}
.y2d_c00024{bottom:251.600000pt;}
.y5f_c00024{bottom:255.066667pt;}
.y2c_c00024{bottom:266.666667pt;}
.y5e_c00024{bottom:271.333333pt;}
.y2b_c00024{bottom:282.666667pt;}
.y5d_c00024{bottom:287.333333pt;}
.y2a_c00024{bottom:298.400000pt;}
.y5c_c00024{bottom:303.066667pt;}
.y29_c00024{bottom:314.133333pt;}
.y5b_c00024{bottom:326.400000pt;}
.y28_c00024{bottom:329.866667pt;}
.y5a_c00024{bottom:342.133333pt;}
.y27_c00024{bottom:353.866667pt;}
.y59_c00024{bottom:358.133333pt;}
.y26_c00024{bottom:369.600000pt;}
.y58_c00024{bottom:374.133333pt;}
.y25_c00024{bottom:387.200000pt;}
.y57_c00024{bottom:397.066667pt;}
.y65_c00024{bottom:400.666667pt;}
.y24_c00024{bottom:401.333333pt;}
.y56_c00024{bottom:412.800000pt;}
.y23_c00024{bottom:417.333333pt;}
.y55_c00024{bottom:432.666667pt;}
.y22_c00024{bottom:433.333333pt;}
.y54_c00024{bottom:448.533333pt;}
.y21_c00024{bottom:456.666667pt;}
.y53_c00024{bottom:464.533333pt;}
.y20_c00024{bottom:472.666667pt;}
.y52_c00024{bottom:480.266667pt;}
.y1f_c00024{bottom:488.933333pt;}
.y51_c00024{bottom:496.533333pt;}
.y1e_c00024{bottom:511.733333pt;}
.y50_c00024{bottom:512.266667pt;}
.y1d_c00024{bottom:527.600000pt;}
.y4f_c00024{bottom:528.000000pt;}
.y1c_c00024{bottom:543.600000pt;}
.y4e_c00024{bottom:543.733333pt;}
.y1b_c00024{bottom:559.333333pt;}
.y4d_c00024{bottom:559.733333pt;}
.y1a_c00024{bottom:575.333333pt;}
.y4c_c00024{bottom:582.933333pt;}
.y19_c00024{bottom:598.666667pt;}
.y4b_c00024{bottom:598.933333pt;}
.y18_c00024{bottom:614.666667pt;}
.y4a_c00024{bottom:630.666667pt;}
.y17_c00024{bottom:637.733333pt;}
.y49_c00024{bottom:650.266667pt;}
.y16_c00024{bottom:654.266667pt;}
.y48_c00024{bottom:666.533333pt;}
.y15_c00024{bottom:670.000000pt;}
.y47_c00024{bottom:681.866667pt;}
.y14_c00024{bottom:686.000000pt;}
.y46_c00024{bottom:697.600000pt;}
.y13_c00024{bottom:701.733333pt;}
.y45_c00024{bottom:713.600000pt;}
.y12_c00024{bottom:717.466667pt;}
.y44_c00024{bottom:729.600000pt;}
.y11_c00024{bottom:733.466667pt;}
.y43_c00024{bottom:741.066667pt;}
.y42_c00024{bottom:749.200000pt;}
.y10_c00024{bottom:757.066667pt;}
.y41_c00024{bottom:764.933333pt;}
.yf_c00024{bottom:773.066667pt;}
.y40_c00024{bottom:780.666667pt;}
.ye_c00024{bottom:789.066667pt;}
.y3f_c00024{bottom:796.666667pt;}
.yd_c00024{bottom:804.800000pt;}
.y3e_c00024{bottom:812.400000pt;}
.yc_c00024{bottom:820.800000pt;}
.y3d_c00024{bottom:828.133333pt;}
.yb_c00024{bottom:836.400000pt;}
.y3c_c00024{bottom:848.800000pt;}
.ya_c00024{bottom:852.133333pt;}
.y3b_c00024{bottom:864.133333pt;}
.y9_c00024{bottom:867.866667pt;}
.y3a_c00024{bottom:880.400000pt;}
.y8_c00024{bottom:891.466667pt;}
.y39_c00024{bottom:895.733333pt;}
.y7_c00024{bottom:907.466667pt;}
.y38_c00024{bottom:911.066667pt;}
.y6_c00024{bottom:923.200000pt;}
.y37_c00024{bottom:927.333333pt;}
.y36_c00024{bottom:943.066667pt;}
.y5_c00024{bottom:946.800000pt;}
.y35_c00024{bottom:958.400000pt;}
.y4_c00024{bottom:962.800000pt;}
.y34_c00024{bottom:977.866667pt;}
.y3_c00024{bottom:978.533333pt;}
.y33_c00024{bottom:993.866667pt;}
.y2_c00024{bottom:994.266667pt;}
.y1_c00024{bottom:1018.266667pt;}
.h7_c00024{height:21.333333pt;}
.h8_c00024{height:42.666667pt;}
.h6_c00024{height:48.000000pt;}
.h5_c00024{height:53.333333pt;}
.h4_c00024{height:58.666667pt;}
.h3_c00024{height:64.000000pt;}
.h2_c00024{height:101.333333pt;}
.h0_c00024{height:1127.680013pt;}
.h1_c00024{height:1128.000000pt;}
.w0_c00024{width:843.200032pt;}
.w1_c00024{width:843.333333pt;}
.x0_c00024{left:0.000000pt;}
.xa0_c00024{left:60.533333pt;}
.x92_c00024{left:61.466667pt;}
.x8b_c00024{left:62.800000pt;}
.x85_c00024{left:64.933333pt;}
.x73_c00024{left:66.133333pt;}
.x64_c00024{left:67.733333pt;}
.x54_c00024{left:69.600000pt;}
.x39_c00024{left:70.933333pt;}
.x26_c00024{left:72.266667pt;}
.x13_c00024{left:73.733333pt;}
.x3_c00024{left:74.933333pt;}
.x99_c00024{left:77.466667pt;}
.x88_c00024{left:79.733333pt;}
.x7d_c00024{left:81.600000pt;}
.x27_c00024{left:82.533333pt;}
.x60_c00024{left:85.066667pt;}
.x2f_c00024{left:86.800000pt;}
.x1d_c00024{left:89.600000pt;}
.x6b_c00024{left:90.800000pt;}
.x59_c00024{left:92.266667pt;}
.x65_c00024{left:93.333333pt;}
.x40_c00024{left:95.200000pt;}
.x4_c00024{left:97.600000pt;}
.x9a_c00024{left:99.866667pt;}
.x9d_c00024{left:101.200000pt;}
.xa_c00024{left:103.066667pt;}
.x30_c00024{left:104.400000pt;}
.x78_c00024{left:105.866667pt;}
.x98_c00024{left:107.733333pt;}
.x14_c00024{left:109.600000pt;}
.x28_c00024{left:112.933333pt;}
.x4c_c00024{left:113.866667pt;}
.xa3_c00024{left:115.200000pt;}
.x80_c00024{left:116.133333pt;}
.x6f_c00024{left:118.000000pt;}
.xb_c00024{left:119.066667pt;}
.x47_c00024{left:120.666667pt;}
.x74_c00024{left:122.133333pt;}
.x3a_c00024{left:124.400000pt;}
.x1e_c00024{left:127.333333pt;}
.x1a_c00024{left:128.666667pt;}
.x86_c00024{left:130.933333pt;}
.x4d_c00024{left:132.800000pt;}
.x48_c00024{left:134.133333pt;}
.x6c_c00024{left:135.600000pt;}
.x8f_c00024{left:137.466667pt;}
.x33_c00024{left:138.533333pt;}
.x75_c00024{left:140.666667pt;}
.x1f_c00024{left:142.000000pt;}
.x5e_c00024{left:143.066667pt;}
.x89_c00024{left:144.666667pt;}
.x8c_c00024{left:146.266667pt;}
.x55_c00024{left:150.933333pt;}
.x5_c00024{left:152.933333pt;}
.x9b_c00024{left:155.200000pt;}
.x29_c00024{left:157.733333pt;}
.x4e_c00024{left:159.333333pt;}
.x31_c00024{left:161.066667pt;}
.x91_c00024{left:162.533333pt;}
.x5a_c00024{left:163.600000pt;}
.x93_c00024{left:165.066667pt;}
.x56_c00024{left:166.266667pt;}
.x6_c00024{left:167.333333pt;}
.x3b_c00024{left:168.266667pt;}
.x68_c00024{left:169.333333pt;}
.x61_c00024{left:170.533333pt;}
.xa4_c00024{left:172.533333pt;}
.xc_c00024{left:173.733333pt;}
.x2a_c00024{left:176.266667pt;}
.x41_c00024{left:177.200000pt;}
.x3c_c00024{left:182.000000pt;}
.x32_c00024{left:183.733333pt;}
.x5f_c00024{left:184.666667pt;}
.x6d_c00024{left:186.133333pt;}
.x8a_c00024{left:187.600000pt;}
.x5b_c00024{left:188.533333pt;}
.xd_c00024{left:190.666667pt;}
.x1b_c00024{left:192.000000pt;}
.x34_c00024{left:193.866667pt;}
.x70_c00024{left:196.400000pt;}
.x62_c00024{left:197.733333pt;}
.x79_c00024{left:199.333333pt;}
.x15_c00024{left:201.066667pt;}
.xa9_c00024{left:202.133333pt;}
.x9f_c00024{left:203.466667pt;}
.xe_c00024{left:205.333333pt;}
.x9e_c00024{left:208.933333pt;}
.x3d_c00024{left:210.533333pt;}
.x1c_c00024{left:212.133333pt;}
.x35_c00024{left:213.333333pt;}
.x4f_c00024{left:215.066667pt;}
.x7c_c00024{left:217.333333pt;}
.x16_c00024{left:218.933333pt;}
.x87_c00024{left:220.000000pt;}
.x76_c00024{left:221.200000pt;}
.x42_c00024{left:224.933333pt;}
.x7_c00024{left:226.800000pt;}
.xa7_c00024{left:227.733333pt;}
.xab_c00024{left:229.866667pt;}
.x2b_c00024{left:232.000000pt;}
.xa1_c00024{left:234.000000pt;}
.x43_c00024{left:235.200000pt;}
.x57_c00024{left:236.933333pt;}
.x17_c00024{left:239.066667pt;}
.x8d_c00024{left:241.600000pt;}
.x69_c00024{left:242.533333pt;}
.x5c_c00024{left:244.533333pt;}
.x49_c00024{left:247.333333pt;}
.xa5_c00024{left:248.400000pt;}
.x96_c00024{left:251.333333pt;}
.x7e_c00024{left:252.800000pt;}
.x2c_c00024{left:254.400000pt;}
.x71_c00024{left:256.933333pt;}
.x50_c00024{left:258.933333pt;}
.xf_c00024{left:260.666667pt;}
.x20_c00024{left:262.400000pt;}
.x3e_c00024{left:263.600000pt;}
.x6e_c00024{left:266.400000pt;}
.x77_c00024{left:268.933333pt;}
.x2d_c00024{left:273.600000pt;}
.x51_c00024{left:277.200000pt;}
.x7a_c00024{left:278.666667pt;}
.x21_c00024{left:279.733333pt;}
.x36_c00024{left:281.866667pt;}
.x44_c00024{left:283.200000pt;}
.x10_c00024{left:284.933333pt;}
.x2e_c00024{left:287.066667pt;}
.x72_c00024{left:289.866667pt;}
.x83_c00024{left:291.200000pt;}
.x1_c00024{left:293.066667pt;}
.x94_c00024{left:296.133333pt;}
.x8_c00024{left:297.200000pt;}
.x4a_c00024{left:298.800000pt;}
.x66_c00024{left:301.066667pt;}
.x22_c00024{left:303.066667pt;}
.x11_c00024{left:305.066667pt;}
.x84_c00024{left:307.200000pt;}
.x52_c00024{left:308.266667pt;}
.x67_c00024{left:310.000000pt;}
.xa8_c00024{left:310.933333pt;}
.x3f_c00024{left:313.466667pt;}
.xaa_c00024{left:314.800000pt;}
.x9_c00024{left:316.400000pt;}
.x4b_c00024{left:318.000000pt;}
.x6a_c00024{left:318.933333pt;}
.x18_c00024{left:320.000000pt;}
.x9c_c00024{left:322.800000pt;}
.x97_c00024{left:324.266667pt;}
.x45_c00024{left:325.466667pt;}
.xa2_c00024{left:327.333333pt;}
.x37_c00024{left:328.266667pt;}
.x7f_c00024{left:329.600000pt;}
.x81_c00024{left:331.200000pt;}
.x63_c00024{left:333.066667pt;}
.x12_c00024{left:336.400000pt;}
.x38_c00024{left:338.800000pt;}
.x90_c00024{left:340.000000pt;}
.x46_c00024{left:341.466667pt;}
.x7b_c00024{left:343.333333pt;}
.x95_c00024{left:345.066667pt;}
.x23_c00024{left:346.266667pt;}
.xa6_c00024{left:349.466667pt;}
.x8e_c00024{left:350.800000pt;}
.x82_c00024{left:351.733333pt;}
.x5d_c00024{left:353.333333pt;}
.x24_c00024{left:355.200000pt;}
.x58_c00024{left:357.866667pt;}
.x53_c00024{left:360.133333pt;}
.x19_c00024{left:363.200000pt;}
.x25_c00024{left:366.400000pt;}
.x13d_c00024{left:380.400000pt;}
.x152_c00024{left:381.333333pt;}
.x136_c00024{left:382.533333pt;}
.x141_c00024{left:383.466667pt;}
.x130_c00024{left:384.800000pt;}
.x121_c00024{left:385.733333pt;}
.x11b_c00024{left:386.666667pt;}
.xfc_c00024{left:387.733333pt;}
.xe2_c00024{left:388.800000pt;}
.xcd_c00024{left:389.866667pt;}
.xb3_c00024{left:391.066667pt;}
.xac_c00024{left:392.000000pt;}
.x102_c00024{left:393.866667pt;}
.x154_c00024{left:396.533333pt;}
.x149_c00024{left:397.466667pt;}
.x14e_c00024{left:399.066667pt;}
.x12b_c00024{left:401.333333pt;}
.xff_c00024{left:402.266667pt;}
.x103_c00024{left:403.466667pt;}
.xd5_c00024{left:404.933333pt;}
.xb8_c00024{left:406.400000pt;}
.x14c_c00024{left:408.000000pt;}
.x161_c00024{left:408.933333pt;}
.xc0_c00024{left:409.866667pt;}
.x10c_c00024{left:412.000000pt;}
.x153_c00024{left:413.600000pt;}
.x109_c00024{left:414.800000pt;}
.x131_c00024{left:417.066667pt;}
.xb4_c00024{left:422.400000pt;}
.x137_c00024{left:423.466667pt;}
.xd6_c00024{left:424.400000pt;}
.x12c_c00024{left:425.333333pt;}
.xfd_c00024{left:426.400000pt;}
.xce_c00024{left:428.000000pt;}
.x11d_c00024{left:429.200000pt;}
.xad_c00024{left:430.400000pt;}
.x111_c00024{left:431.466667pt;}
.x142_c00024{left:433.066667pt;}
.x100_c00024{left:434.000000pt;}
.x11c_c00024{left:436.266667pt;}
.xc1_c00024{left:438.933333pt;}
.xb5_c00024{left:440.933333pt;}
.x13e_c00024{left:442.400000pt;}
.xf5_c00024{left:446.400000pt;}
.xc6_c00024{left:447.866667pt;}
.x101_c00024{left:449.066667pt;}
.x15d_c00024{left:450.666667pt;}
.x157_c00024{left:452.133333pt;}
.x13f_c00024{left:454.266667pt;}
.x15a_c00024{left:455.466667pt;}
.x122_c00024{left:456.400000pt;}
.xae_c00024{left:457.866667pt;}
.xdd_c00024{left:458.933333pt;}
.x117_c00024{left:461.200000pt;}
.xe9_c00024{left:462.133333pt;}
.x15e_c00024{left:463.200000pt;}
.xc7_c00024{left:464.533333pt;}
.x143_c00024{left:466.933333pt;}
.xf6_c00024{left:467.866667pt;}
.x138_c00024{left:468.933333pt;}
.x11e_c00024{left:470.533333pt;}
.x123_c00024{left:474.266667pt;}
.xcf_c00024{left:476.266667pt;}
.x10d_c00024{left:478.266667pt;}
.xea_c00024{left:480.400000pt;}
.xb9_c00024{left:481.866667pt;}
.xb6_c00024{left:482.800000pt;}
.x112_c00024{left:484.266667pt;}
.xd7_c00024{left:485.466667pt;}
.x104_c00024{left:486.800000pt;}
.xd0_c00024{left:489.733333pt;}
.x128_c00024{left:490.800000pt;}
.x10e_c00024{left:492.400000pt;}
.x11f_c00024{left:493.600000pt;}
.x139_c00024{left:495.200000pt;}
.xd8_c00024{left:496.666667pt;}
.xb7_c00024{left:499.733333pt;}
.xba_c00024{left:501.733333pt;}
.x14f_c00024{left:506.266667pt;}
.x113_c00024{left:508.533333pt;}
.xde_c00024{left:510.133333pt;}
.xc2_c00024{left:511.200000pt;}
.xef_c00024{left:512.133333pt;}
.xd9_c00024{left:513.333333pt;}
.x118_c00024{left:514.266667pt;}
.xe3_c00024{left:515.200000pt;}
.xf7_c00024{left:516.133333pt;}
.x124_c00024{left:517.200000pt;}
.x144_c00024{left:518.400000pt;}
.x129_c00024{left:519.600000pt;}
.x150_c00024{left:521.333333pt;}
.x15b_c00024{left:522.933333pt;}
.xbb_c00024{left:524.133333pt;}
.xe4_c00024{left:525.466667pt;}
.xf0_c00024{left:527.466667pt;}
.xd1_c00024{left:529.466667pt;}
.xaf_c00024{left:532.133333pt;}
.x10f_c00024{left:534.000000pt;}
.x13a_c00024{left:535.200000pt;}
.x125_c00024{left:536.133333pt;}
.xf8_c00024{left:537.200000pt;}
.x14a_c00024{left:539.733333pt;}
.x105_c00024{left:541.200000pt;}
.xe5_c00024{left:542.800000pt;}
.xbc_c00024{left:544.933333pt;}
.x114_c00024{left:546.933333pt;}
.x119_c00024{left:550.800000pt;}
.x147_c00024{left:552.666667pt;}
.xed_c00024{left:555.200000pt;}
.x155_c00024{left:556.533333pt;}
.xfe_c00024{left:557.866667pt;}
.xbd_c00024{left:559.333333pt;}
.x10a_c00024{left:561.733333pt;}
.xdf_c00024{left:562.666667pt;}
.x15f_c00024{left:564.266667pt;}
.x126_c00024{left:565.600000pt;}
.x145_c00024{left:567.066667pt;}
.x13b_c00024{left:568.533333pt;}
.xc8_c00024{left:571.066667pt;}
.xf1_c00024{left:573.866667pt;}
.xf9_c00024{left:575.333333pt;}
.x158_c00024{left:576.666667pt;}
.xb0_c00024{left:577.600000pt;}
.x12a_c00024{left:578.800000pt;}
.xe0_c00024{left:581.866667pt;}
.xc3_c00024{left:583.200000pt;}
.x148_c00024{left:584.400000pt;}
.x115_c00024{left:585.600000pt;}
.xbe_c00024{left:586.533333pt;}
.xd2_c00024{left:587.733333pt;}
.xc9_c00024{left:588.933333pt;}
.xda_c00024{left:592.266667pt;}
.xb1_c00024{left:593.600000pt;}
.x11a_c00024{left:595.600000pt;}
.x106_c00024{left:596.533333pt;}
.xee_c00024{left:598.400000pt;}
.x12d_c00024{left:601.066667pt;}
.xf2_c00024{left:602.000000pt;}
.xdb_c00024{left:603.200000pt;}
.x10b_c00024{left:604.266667pt;}
.x133_c00024{left:606.800000pt;}
.xfa_c00024{left:608.000000pt;}
.x162_c00024{left:609.200000pt;}
.xd3_c00024{left:610.133333pt;}
.xc4_c00024{left:612.266667pt;}
.xca_c00024{left:615.866667pt;}
.x134_c00024{left:617.066667pt;}
.x12e_c00024{left:618.666667pt;}
.xf3_c00024{left:619.866667pt;}
.xe1_c00024{left:622.133333pt;}
.x120_c00024{left:623.466667pt;}
.x127_c00024{left:625.200000pt;}
.xcb_c00024{left:626.133333pt;}
.xd4_c00024{left:627.733333pt;}
.x116_c00024{left:629.466667pt;}
.xbf_c00024{left:630.400000pt;}
.x15c_c00024{left:631.466667pt;}
.x135_c00024{left:632.800000pt;}
.x160_c00024{left:633.733333pt;}
.xe6_c00024{left:634.666667pt;}
.x14b_c00024{left:636.800000pt;}
.x107_c00024{left:638.800000pt;}
.x132_c00024{left:644.000000pt;}
.x151_c00024{left:645.333333pt;}
.xb2_c00024{left:646.400000pt;}
.x13c_c00024{left:647.866667pt;}
.x159_c00024{left:649.066667pt;}
.xeb_c00024{left:650.266667pt;}
.xe7_c00024{left:651.333333pt;}
.x14d_c00024{left:652.933333pt;}
.x140_c00024{left:655.733333pt;}
.x108_c00024{left:657.333333pt;}
.xf4_c00024{left:659.200000pt;}
.x156_c00024{left:660.533333pt;}
.x12f_c00024{left:663.466667pt;}
.x146_c00024{left:664.400000pt;}
.xe8_c00024{left:666.666667pt;}
.xdc_c00024{left:668.133333pt;}
.xc5_c00024{left:671.200000pt;}
.xec_c00024{left:674.533333pt;}
.xfb_c00024{left:675.466667pt;}
.x110_c00024{left:676.666667pt;}
.xcc_c00024{left:677.600000pt;}
.x2_c00024{left:684.133333pt;}
.x163_c00024{left:701.066667pt;}
}





/* 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_c00025 {
    display:none;
  }
  .loading-indicator_c00025.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00025 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_c00025 { 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_c00025" -> "#page-container .classname_c00025")
 */
.pf_c00025 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00025 { /* 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_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00025 { /* 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_c00025 { /* 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_c00025 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00025 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00025 {overflow:visible;}
  }
}
.c_c00025 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00025 { /* 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_c00025:after { /* webkit #35443 */
  content: '';
}
.t_c00025:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00025 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 */
}
.__c00025 { /* 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_c00025 { /* info for Javascript */
  display:none;
}
.l_c00025 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00025 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00025 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00025: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_c00025 {
    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_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00025.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_c00025 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00025;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.000000;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;}
.m10a_c00025{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.md6_c00025{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00025{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m107_c00025{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00025{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.maa_c00025{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.me1_c00025{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m73_c00025{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m56_c00025{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m12_c00025{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00025{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mf_c00025{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00025{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m16_c00025{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10_c00025{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m23_c00025{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00025{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md5_c00025{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.meb_c00025{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00025{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m4_c00025{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00025{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m66_c00025{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00025{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m81_c00025{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00025{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m46_c00025{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me7_c00025{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m8_c00025{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00025{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m83_c00025{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.md8_c00025{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00025{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m70_c00025{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00025{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md7_c00025{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00025{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m24_c00025{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00025{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m26_c00025{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m72_c00025{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00025{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m52_c00025{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md0_c00025{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00025{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m57_c00025{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m97_c00025{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md_c00025{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m109_c00025{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m42_c00025{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00025{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m14_c00025{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m101_c00025{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m18_c00025{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mde_c00025{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m17_c00025{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00025{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m22_c00025{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00025{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m43_c00025{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00025{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00025{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md9_c00025{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me4_c00025{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00025{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00025{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m92_c00025{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m27_c00025{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00025{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00025{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00025{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m15_c00025{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m38_c00025{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m90_c00025{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m39_c00025{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00025{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me0_c00025{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mba_c00025{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me6_c00025{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m32_c00025{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mee_c00025{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m51_c00025{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me_c00025{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00025{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00025{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00025{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mec_c00025{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00025{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00025{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md4_c00025{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m49_c00025{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m91_c00025{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m28_c00025{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me9_c00025{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m96_c00025{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6_c00025{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00025{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mea_c00025{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00025{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00025{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m34_c00025{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m64_c00025{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m33_c00025{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m98_c00025{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m71_c00025{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m47_c00025{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00025{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00025{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00025{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00025{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00025{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m77_c00025{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc_c00025{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m29_c00025{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00025{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00025{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00025{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me3_c00025{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00025{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mad_c00025{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00025{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00025{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m63_c00025{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00025{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m62_c00025{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m58_c00025{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md3_c00025{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00025{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00025{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5_c00025{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00025{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00025{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m76_c00025{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mff_c00025{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m55_c00025{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00025{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.maf_c00025{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00025{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.me5_c00025{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma_c00025{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00025{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m94_c00025{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mce_c00025{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00025{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md1_c00025{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m106_c00025{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m69_c00025{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m87_c00025{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00025{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m36_c00025{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m31_c00025{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m74_c00025{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m45_c00025{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.med_c00025{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00025{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00025{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00025{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m19_c00025{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00025{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00025{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00025{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00025{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mac_c00025{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m68_c00025{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00025{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mef_c00025{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00025{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00025{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m11_c00025{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m48_c00025{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00025{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m67_c00025{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00025{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m30_c00025{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00025{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m100_c00025{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00025{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00025{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m105_c00025{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00025{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00025{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m44_c00025{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00025{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m95_c00025{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00025{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m53_c00025{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m21_c00025{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m61_c00025{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m103_c00025{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mab_c00025{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m50_c00025{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00025{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m37_c00025{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00025{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m59_c00025{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m35_c00025{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00025{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00025{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m75_c00025{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00025{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me2_c00025{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m85_c00025{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m25_c00025{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m78_c00025{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m99_c00025{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00025{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m41_c00025{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00025{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00025{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00025{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md2_c00025{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7_c00025{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00025{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00025{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m54_c00025{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m86_c00025{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00025{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00025{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00025{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m3_c00025{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m80_c00025{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m20_c00025{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mca_c00025{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);}
.m4e_c00025{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m102_c00025{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mae_c00025{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m104_c00025{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00025{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m82_c00025{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m89_c00025{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00025{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m40_c00025{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m65_c00025{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00025{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00025{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00025{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m108_c00025{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m79_c00025{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m88_c00025{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00025{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m60_c00025{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00025{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mda_c00025{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00025{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m93_c00025{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00025{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00025{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m13_c00025{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00025{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00025{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00025{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00025{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00025{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m84_c00025{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.me8_c00025{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00025{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00025{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00025{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00025{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m2_c00025{transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);}
.m0_c00025{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00025{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00025{transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00025{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00025{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls0_c00025{letter-spacing:0.000000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{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__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00025{word-spacing:-15.767189px;}
.ws0_c00025{word-spacing:-10.625000px;}
.ws3_c00025{word-spacing:-0.113402px;}
.ws4_c00025{word-spacing:0.000000px;}
.ws2_c00025{word-spacing:2.432665px;}
.fc0_c00025{color:transparent;}
.fs6_c00025{font-size:24.000000px;}
.fs1_c00025{font-size:30.000000px;}
.fs9_c00025{font-size:36.000000px;}
.fs0_c00025{font-size:48.000000px;}
.fs7_c00025{font-size:54.000000px;}
.fs4_c00025{font-size:60.000000px;}
.fs3_c00025{font-size:66.000000px;}
.fs5_c00025{font-size:72.000000px;}
.fs8_c00025{font-size:78.000000px;}
.fs2_c00025{font-size:102.000000px;}
.y0_c00025{bottom:0.000000px;}
.y65_c00025{bottom:54.750000px;}
.y64_c00025{bottom:195.600000px;}
.y63_c00025{bottom:213.300000px;}
.y62_c00025{bottom:231.000000px;}
.y61_c00025{bottom:248.700000px;}
.y60_c00025{bottom:266.700000px;}
.y34_c00025{bottom:274.200000px;}
.y33_c00025{bottom:276.750000px;}
.y5f_c00025{bottom:284.400000px;}
.y32_c00025{bottom:288.300000px;}
.y31_c00025{bottom:296.250000px;}
.y5e_c00025{bottom:302.700000px;}
.y30_c00025{bottom:314.550000px;}
.y5d_c00025{bottom:320.400000px;}
.y2d_c00025{bottom:327.300000px;}
.y2f_c00025{bottom:330.450000px;}
.y5c_c00025{bottom:342.750000px;}
.y2c_c00025{bottom:345.300000px;}
.y2e_c00025{bottom:348.150000px;}
.y2b_c00025{bottom:360.750000px;}
.y5b_c00025{bottom:378.000000px;}
.y2a_c00025{bottom:379.500000px;}
.y29_c00025{bottom:394.650000px;}
.y28_c00025{bottom:413.700000px;}
.y5a_c00025{bottom:415.050000px;}
.y27_c00025{bottom:432.000000px;}
.y26_c00025{bottom:448.500000px;}
.y59_c00025{bottom:454.650000px;}
.y25_c00025{bottom:465.450000px;}
.y58_c00025{bottom:472.650000px;}
.y24_c00025{bottom:484.500000px;}
.y57_c00025{bottom:490.200000px;}
.y23_c00025{bottom:501.750000px;}
.y56_c00025{bottom:508.200000px;}
.y22_c00025{bottom:518.700000px;}
.y55_c00025{bottom:525.900000px;}
.y21_c00025{bottom:538.800000px;}
.y54_c00025{bottom:543.900000px;}
.y20_c00025{bottom:556.500000px;}
.y53_c00025{bottom:565.800000px;}
.y1f_c00025{bottom:574.200000px;}
.y52_c00025{bottom:583.800000px;}
.y1e_c00025{bottom:593.250000px;}
.y51_c00025{bottom:601.500000px;}
.y1d_c00025{bottom:610.200000px;}
.y50_c00025{bottom:619.500000px;}
.y1c_c00025{bottom:626.400000px;}
.y4f_c00025{bottom:641.400000px;}
.y1b_c00025{bottom:650.550000px;}
.y4e_c00025{bottom:659.100000px;}
.y4d_c00025{bottom:681.750000px;}
.y4c_c00025{bottom:699.450000px;}
.y1a_c00025{bottom:712.200000px;}
.y4b_c00025{bottom:717.450000px;}
.y19_c00025{bottom:729.450000px;}
.y4a_c00025{bottom:735.450000px;}
.y18_c00025{bottom:747.450000px;}
.y49_c00025{bottom:752.700000px;}
.y17_c00025{bottom:764.700000px;}
.y48_c00025{bottom:775.350000px;}
.y16_c00025{bottom:781.950000px;}
.y47_c00025{bottom:793.350000px;}
.y15_c00025{bottom:808.500000px;}
.y46_c00025{bottom:811.350000px;}
.y14_c00025{bottom:815.400000px;}
.y13_c00025{bottom:825.900000px;}
.y45_c00025{bottom:829.350000px;}
.y12_c00025{bottom:843.450000px;}
.y44_c00025{bottom:847.050000px;}
.y11_c00025{bottom:860.400000px;}
.y43_c00025{bottom:865.050000px;}
.y42_c00025{bottom:882.750000px;}
.y10_c00025{bottom:887.100000px;}
.yf_c00025{bottom:904.350000px;}
.y41_c00025{bottom:905.100000px;}
.ye_c00025{bottom:921.900000px;}
.y40_c00025{bottom:923.100000px;}
.y3f_c00025{bottom:941.100000px;}
.yd_c00025{bottom:947.700000px;}
.y3e_c00025{bottom:959.100000px;}
.yc_c00025{bottom:965.400000px;}
.y3d_c00025{bottom:977.100000px;}
.yb_c00025{bottom:983.100000px;}
.y3c_c00025{bottom:998.700000px;}
.ya_c00025{bottom:1000.050000px;}
.y3b_c00025{bottom:1017.000000px;}
.y9_c00025{bottom:1026.300000px;}
.y3a_c00025{bottom:1035.000000px;}
.y8_c00025{bottom:1044.000000px;}
.y39_c00025{bottom:1053.000000px;}
.y7_c00025{bottom:1061.700000px;}
.y38_c00025{bottom:1071.000000px;}
.y6_c00025{bottom:1087.800000px;}
.y37_c00025{bottom:1088.700000px;}
.y5_c00025{bottom:1105.500000px;}
.y36_c00025{bottom:1106.700000px;}
.y4_c00025{bottom:1123.500000px;}
.y35_c00025{bottom:1124.700000px;}
.y1_c00025{bottom:1148.700000px;}
.y3_c00025{bottom:1150.500000px;}
.y2_c00025{bottom:1163.400000px;}
.h8_c00025{height:24.000000px;}
.h3_c00025{height:30.000000px;}
.hb_c00025{height:36.000000px;}
.h2_c00025{height:48.000000px;}
.h9_c00025{height:54.000000px;}
.h6_c00025{height:60.000000px;}
.h5_c00025{height:66.000000px;}
.h7_c00025{height:72.000000px;}
.ha_c00025{height:78.000000px;}
.h4_c00025{height:102.000000px;}
.h0_c00025{height:1278.719970px;}
.h1_c00025{height:1278.750000px;}
.w0_c00025{width:948.600036px;}
.w1_c00025{width:948.750000px;}
.x0_c00025{left:0.000000px;}
.x152_c00025{left:29.850000px;}
.x1_c00025{left:177.150000px;}
.x16_c00025{left:178.500000px;}
.x21_c00025{left:179.550000px;}
.x3f_c00025{left:180.900000px;}
.x4d_c00025{left:181.950000px;}
.x9f_c00025{left:185.700000px;}
.x6e_c00025{left:190.200000px;}
.x2_c00025{left:194.100000px;}
.x4_c00025{left:195.900000px;}
.x1b_c00025{left:197.250000px;}
.x2c_c00025{left:198.300000px;}
.x4f_c00025{left:199.500000px;}
.xd_c00025{left:201.600000px;}
.x31_c00025{left:203.100000px;}
.x40_c00025{left:205.050000px;}
.xa0_c00025{left:207.600000px;}
.x5a_c00025{left:210.300000px;}
.x85_c00025{left:211.950000px;}
.x17_c00025{left:213.750000px;}
.x56_c00025{left:216.750000px;}
.xa4_c00025{left:217.950000px;}
.x42_c00025{left:221.100000px;}
.x1c_c00025{left:222.450000px;}
.x18_c00025{left:223.500000px;}
.x9b_c00025{left:225.000000px;}
.x41_c00025{left:226.650000px;}
.x50_c00025{left:228.000000px;}
.x22_c00025{left:231.750000px;}
.x62_c00025{left:234.450000px;}
.xe_c00025{left:235.800000px;}
.x63_c00025{left:237.750000px;}
.x4e_c00025{left:238.800000px;}
.x6a_c00025{left:240.300000px;}
.x5_c00025{left:241.650000px;}
.x37_c00025{left:243.750000px;}
.x65_c00025{left:247.650000px;}
.x88_c00025{left:249.600000px;}
.x6_c00025{left:252.450000px;}
.x98_c00025{left:254.250000px;}
.x38_c00025{left:256.350000px;}
.x2b_c00025{left:257.850000px;}
.x2d_c00025{left:260.550000px;}
.x1d_c00025{left:262.350000px;}
.x43_c00025{left:264.000000px;}
.x48_c00025{left:265.050000px;}
.x9e_c00025{left:267.450000px;}
.x5b_c00025{left:269.400000px;}
.x67_c00025{left:270.600000px;}
.x93_c00025{left:271.650000px;}
.x23_c00025{left:275.700000px;}
.x39_c00025{left:276.900000px;}
.x82_c00025{left:278.250000px;}
.x64_c00025{left:280.200000px;}
.x7b_c00025{left:281.250000px;}
.x7_c00025{left:285.150000px;}
.x49_c00025{left:286.650000px;}
.x94_c00025{left:287.850000px;}
.x68_c00025{left:289.350000px;}
.xf_c00025{left:290.850000px;}
.x24_c00025{left:294.000000px;}
.x86_c00025{left:297.300000px;}
.x10_c00025{left:300.150000px;}
.x75_c00025{left:301.350000px;}
.x9c_c00025{left:302.400000px;}
.x6f_c00025{left:306.150000px;}
.x51_c00025{left:307.500000px;}
.x8c_c00025{left:309.150000px;}
.x8_c00025{left:310.350000px;}
.xa2_c00025{left:312.600000px;}
.x89_c00025{left:313.950000px;}
.x76_c00025{left:315.000000px;}
.x44_c00025{left:316.950000px;}
.x11_c00025{left:318.450000px;}
.x19_c00025{left:320.400000px;}
.x5c_c00025{left:322.350000px;}
.x70_c00025{left:323.550000px;}
.x7f_c00025{left:325.200000px;}
.x57_c00025{left:327.450000px;}
.x8d_c00025{left:328.650000px;}
.x7c_c00025{left:329.850000px;}
.x2e_c00025{left:331.350000px;}
.x1e_c00025{left:336.150000px;}
.x25_c00025{left:338.250000px;}
.x52_c00025{left:340.200000px;}
.x3a_c00025{left:342.450000px;}
.x32_c00025{left:344.550000px;}
.x77_c00025{left:345.600000px;}
.x26_c00025{left:347.550000px;}
.x83_c00025{left:353.850000px;}
.x71_c00025{left:354.900000px;}
.x5d_c00025{left:357.300000px;}
.x6c_c00025{left:360.150000px;}
.x80_c00025{left:361.500000px;}
.x53_c00025{left:362.550000px;}
.x45_c00025{left:364.500000px;}
.x1a_c00025{left:366.450000px;}
.x78_c00025{left:369.000000px;}
.x27_c00025{left:370.200000px;}
.x9_c00025{left:371.550000px;}
.x12_c00025{left:374.550000px;}
.x91_c00025{left:375.750000px;}
.x5e_c00025{left:377.400000px;}
.x9d_c00025{left:379.050000px;}
.xa5_c00025{left:380.100000px;}
.x33_c00025{left:382.050000px;}
.x13_c00025{left:383.550000px;}
.x8e_c00025{left:385.950000px;}
.xa_c00025{left:387.750000px;}
.x84_c00025{left:388.800000px;}
.x79_c00025{left:390.600000px;}
.x4a_c00025{left:395.400000px;}
.xa6_c00025{left:398.400000px;}
.x8f_c00025{left:402.900000px;}
.x7d_c00025{left:405.150000px;}
.x54_c00025{left:407.850000px;}
.x3b_c00025{left:409.350000px;}
.x96_c00025{left:411.450000px;}
.x46_c00025{left:412.800000px;}
.x2f_c00025{left:415.950000px;}
.x3_c00025{left:418.800000px;}
.x99_c00025{left:420.150000px;}
.x58_c00025{left:422.100000px;}
.x6b_c00025{left:423.600000px;}
.x1f_c00025{left:425.400000px;}
.x72_c00025{left:427.950000px;}
.x97_c00025{left:429.150000px;}
.x9a_c00025{left:430.650000px;}
.x47_c00025{left:432.600000px;}
.x28_c00025{left:435.300000px;}
.x14_c00025{left:436.500000px;}
.x6d_c00025{left:437.550000px;}
.xa7_c00025{left:438.750000px;}
.x92_c00025{left:439.800000px;}
.x3c_c00025{left:441.750000px;}
.x29_c00025{left:444.000000px;}
.xa3_c00025{left:445.350000px;}
.xb_c00025{left:446.400000px;}
.x30_c00025{left:447.600000px;}
.x34_c00025{left:449.400000px;}
.x59_c00025{left:451.200000px;}
.x5f_c00025{left:453.300000px;}
.xa1_c00025{left:454.650000px;}
.x66_c00025{left:456.750000px;}
.x35_c00025{left:459.450000px;}
.x2a_c00025{left:460.500000px;}
.x60_c00025{left:462.300000px;}
.x73_c00025{left:464.700000px;}
.xc_c00025{left:466.200000px;}
.x81_c00025{left:468.750000px;}
.x15_c00025{left:470.400000px;}
.x4b_c00025{left:473.100000px;}
.x3d_c00025{left:474.900000px;}
.x7e_c00025{left:477.150000px;}
.x61_c00025{left:478.200000px;}
.x90_c00025{left:479.250000px;}
.x4c_c00025{left:481.050000px;}
.x8a_c00025{left:483.450000px;}
.x87_c00025{left:484.800000px;}
.x55_c00025{left:486.750000px;}
.x36_c00025{left:488.250000px;}
.x69_c00025{left:489.750000px;}
.x3e_c00025{left:492.600000px;}
.x20_c00025{left:497.400000px;}
.x7a_c00025{left:500.850000px;}
.x8b_c00025{left:504.000000px;}
.x74_c00025{left:506.550000px;}
.x95_c00025{left:508.950000px;}
.x140_c00025{left:529.200000px;}
.x13f_c00025{left:530.250000px;}
.xa8_c00025{left:532.500000px;}
.xcb_c00025{left:534.000000px;}
.xfc_c00025{left:535.350000px;}
.x10d_c00025{left:536.400000px;}
.x132_c00025{left:537.750000px;}
.x139_c00025{left:539.250000px;}
.x14c_c00025{left:540.600000px;}
.xf7_c00025{left:546.450000px;}
.x121_c00025{left:549.600000px;}
.xf5_c00025{left:550.800000px;}
.xdb_c00025{left:551.850000px;}
.x11b_c00025{left:552.900000px;}
.x113_c00025{left:554.100000px;}
.xd2_c00025{left:556.050000px;}
.x104_c00025{left:558.450000px;}
.xd9_c00025{left:560.550000px;}
.x102_c00025{left:562.050000px;}
.x145_c00025{left:563.250000px;}
.xf8_c00025{left:564.750000px;}
.x12f_c00025{left:568.950000px;}
.xbe_c00025{left:570.450000px;}
.xa9_c00025{left:572.400000px;}
.xb8_c00025{left:574.800000px;}
.xfd_c00025{left:577.050000px;}
.xe7_c00025{left:579.450000px;}
.xda_c00025{left:581.400000px;}
.x125_c00025{left:582.450000px;}
.xdc_c00025{left:583.500000px;}
.x11c_c00025{left:585.600000px;}
.xef_c00025{left:586.650000px;}
.xf3_c00025{left:588.750000px;}
.xcc_c00025{left:591.900000px;}
.xaa_c00025{left:594.300000px;}
.xe1_c00025{left:595.650000px;}
.x137_c00025{left:597.150000px;}
.xb2_c00025{left:598.500000px;}
.x13a_c00025{left:600.450000px;}
.xcd_c00025{left:601.650000px;}
.xf4_c00025{left:604.200000px;}
.x133_c00025{left:605.700000px;}
.xf0_c00025{left:608.550000px;}
.xbf_c00025{left:610.800000px;}
.xf9_c00025{left:613.350000px;}
.x148_c00025{left:615.300000px;}
.xe2_c00025{left:616.500000px;}
.x10e_c00025{left:619.650000px;}
.xc7_c00025{left:622.050000px;}
.x122_c00025{left:625.800000px;}
.xb3_c00025{left:627.000000px;}
.xf1_c00025{left:630.150000px;}
.x10a_c00025{left:633.000000px;}
.xf6_c00025{left:634.350000px;}
.xe8_c00025{left:636.750000px;}
.x14b_c00025{left:637.800000px;}
.x105_c00025{left:639.600000px;}
.xb9_c00025{left:641.100000px;}
.xd3_c00025{left:646.050000px;}
.xfe_c00025{left:647.700000px;}
.xc0_c00025{left:649.650000px;}
.x126_c00025{left:651.900000px;}
.xfa_c00025{left:653.700000px;}
.xe9_c00025{left:655.050000px;}
.x14d_c00025{left:656.100000px;}
.x134_c00025{left:657.150000px;}
.xe3_c00025{left:658.650000px;}
.xc1_c00025{left:661.200000px;}
.x114_c00025{left:662.550000px;}
.xba_c00025{left:664.200000px;}
.xab_c00025{left:665.550000px;}
.x10f_c00025{left:667.500000px;}
.xce_c00025{left:669.000000px;}
.x11d_c00025{left:670.500000px;}
.x138_c00025{left:673.800000px;}
.x142_c00025{left:675.300000px;}
.x110_c00025{left:676.500000px;}
.xac_c00025{left:677.850000px;}
.xb4_c00025{left:680.250000px;}
.x11e_c00025{left:681.300000px;}
.xc2_c00025{left:682.800000px;}
.x12d_c00025{left:683.850000px;}
.x106_c00025{left:686.400000px;}
.xcf_c00025{left:688.050000px;}
.xea_c00025{left:690.300000px;}
.x13c_c00025{left:697.200000px;}
.x118_c00025{left:698.700000px;}
.x143_c00025{left:700.800000px;}
.xc3_c00025{left:706.200000px;}
.xff_c00025{left:708.600000px;}
.xeb_c00025{left:710.850000px;}
.x129_c00025{left:711.900000px;}
.xad_c00025{left:714.600000px;}
.xbb_c00025{left:717.450000px;}
.x13d_c00025{left:719.100000px;}
.x130_c00025{left:720.600000px;}
.x146_c00025{left:722.250000px;}
.x12a_c00025{left:723.750000px;}
.xae_c00025{left:725.400000px;}
.xdd_c00025{left:726.750000px;}
.x107_c00025{left:728.100000px;}
.xd4_c00025{left:730.350000px;}
.x14e_c00025{left:731.700000px;}
.xc8_c00025{left:735.150000px;}
.x115_c00025{left:736.650000px;}
.x141_c00025{left:739.200000px;}
.xd5_c00025{left:740.400000px;}
.xf2_c00025{left:741.750000px;}
.x119_c00025{left:743.700000px;}
.x127_c00025{left:748.050000px;}
.xaf_c00025{left:749.100000px;}
.x135_c00025{left:750.450000px;}
.x150_c00025{left:751.950000px;}
.xde_c00025{left:753.000000px;}
.xc9_c00025{left:756.450000px;}
.x111_c00025{left:758.550000px;}
.x103_c00025{left:760.050000px;}
.x100_c00025{left:762.300000px;}
.x10b_c00025{left:764.550000px;}
.xd6_c00025{left:766.350000px;}
.xb0_c00025{left:767.400000px;}
.x12e_c00025{left:769.350000px;}
.x131_c00025{left:770.700000px;}
.xc4_c00025{left:772.050000px;}
.xe4_c00025{left:773.100000px;}
.xb5_c00025{left:774.600000px;}
.x12b_c00025{left:779.250000px;}
.x11a_c00025{left:780.750000px;}
.xc5_c00025{left:783.900000px;}
.xec_c00025{left:787.200000px;}
.xd7_c00025{left:789.450000px;}
.xb6_c00025{left:791.550000px;}
.xbc_c00025{left:793.350000px;}
.x151_c00025{left:794.400000px;}
.xdf_c00025{left:795.900000px;}
.xe5_c00025{left:798.300000px;}
.x108_c00025{left:801.600000px;}
.x112_c00025{left:804.300000px;}
.xd0_c00025{left:805.800000px;}
.xb1_c00025{left:807.300000px;}
.x14a_c00025{left:808.800000px;}
.xed_c00025{left:810.300000px;}
.x13b_c00025{left:811.350000px;}
.x116_c00025{left:812.550000px;}
.x101_c00025{left:815.550000px;}
.xc6_c00025{left:819.600000px;}
.x13e_c00025{left:820.650000px;}
.xd1_c00025{left:821.700000px;}
.xbd_c00025{left:823.200000px;}
.xd8_c00025{left:824.700000px;}
.x12c_c00025{left:827.100000px;}
.x128_c00025{left:829.050000px;}
.xee_c00025{left:831.900000px;}
.x11f_c00025{left:834.000000px;}
.xb7_c00025{left:836.550000px;}
.x147_c00025{left:840.300000px;}
.xe6_c00025{left:842.250000px;}
.xfb_c00025{left:846.750000px;}
.x14f_c00025{left:850.500000px;}
.x123_c00025{left:852.300000px;}
.xe0_c00025{left:856.350000px;}
.x109_c00025{left:858.450000px;}
.x136_c00025{left:859.500000px;}
.xca_c00025{left:860.550000px;}
.x10c_c00025{left:862.500000px;}
.x124_c00025{left:863.850000px;}
.x149_c00025{left:867.300000px;}
.x117_c00025{left:869.400000px;}
.x120_c00025{left:870.750000px;}
.x144_c00025{left:872.400000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws1_c00025{word-spacing:-14.015279pt;}
.ws0_c00025{word-spacing:-9.444444pt;}
.ws3_c00025{word-spacing:-0.100802pt;}
.ws4_c00025{word-spacing:0.000000pt;}
.ws2_c00025{word-spacing:2.162369pt;}
.fs6_c00025{font-size:21.333333pt;}
.fs1_c00025{font-size:26.666667pt;}
.fs9_c00025{font-size:32.000000pt;}
.fs0_c00025{font-size:42.666667pt;}
.fs7_c00025{font-size:48.000000pt;}
.fs4_c00025{font-size:53.333333pt;}
.fs3_c00025{font-size:58.666667pt;}
.fs5_c00025{font-size:64.000000pt;}
.fs8_c00025{font-size:69.333333pt;}
.fs2_c00025{font-size:90.666667pt;}
.y0_c00025{bottom:0.000000pt;}
.y65_c00025{bottom:48.666667pt;}
.y64_c00025{bottom:173.866667pt;}
.y63_c00025{bottom:189.600000pt;}
.y62_c00025{bottom:205.333333pt;}
.y61_c00025{bottom:221.066667pt;}
.y60_c00025{bottom:237.066667pt;}
.y34_c00025{bottom:243.733333pt;}
.y33_c00025{bottom:246.000000pt;}
.y5f_c00025{bottom:252.800000pt;}
.y32_c00025{bottom:256.266667pt;}
.y31_c00025{bottom:263.333333pt;}
.y5e_c00025{bottom:269.066667pt;}
.y30_c00025{bottom:279.600000pt;}
.y5d_c00025{bottom:284.800000pt;}
.y2d_c00025{bottom:290.933333pt;}
.y2f_c00025{bottom:293.733333pt;}
.y5c_c00025{bottom:304.666667pt;}
.y2c_c00025{bottom:306.933333pt;}
.y2e_c00025{bottom:309.466667pt;}
.y2b_c00025{bottom:320.666667pt;}
.y5b_c00025{bottom:336.000000pt;}
.y2a_c00025{bottom:337.333333pt;}
.y29_c00025{bottom:350.800000pt;}
.y28_c00025{bottom:367.733333pt;}
.y5a_c00025{bottom:368.933333pt;}
.y27_c00025{bottom:384.000000pt;}
.y26_c00025{bottom:398.666667pt;}
.y59_c00025{bottom:404.133333pt;}
.y25_c00025{bottom:413.733333pt;}
.y58_c00025{bottom:420.133333pt;}
.y24_c00025{bottom:430.666667pt;}
.y57_c00025{bottom:435.733333pt;}
.y23_c00025{bottom:446.000000pt;}
.y56_c00025{bottom:451.733333pt;}
.y22_c00025{bottom:461.066667pt;}
.y55_c00025{bottom:467.466667pt;}
.y21_c00025{bottom:478.933333pt;}
.y54_c00025{bottom:483.466667pt;}
.y20_c00025{bottom:494.666667pt;}
.y53_c00025{bottom:502.933333pt;}
.y1f_c00025{bottom:510.400000pt;}
.y52_c00025{bottom:518.933333pt;}
.y1e_c00025{bottom:527.333333pt;}
.y51_c00025{bottom:534.666667pt;}
.y1d_c00025{bottom:542.400000pt;}
.y50_c00025{bottom:550.666667pt;}
.y1c_c00025{bottom:556.800000pt;}
.y4f_c00025{bottom:570.133333pt;}
.y1b_c00025{bottom:578.266667pt;}
.y4e_c00025{bottom:585.866667pt;}
.y4d_c00025{bottom:606.000000pt;}
.y4c_c00025{bottom:621.733333pt;}
.y1a_c00025{bottom:633.066667pt;}
.y4b_c00025{bottom:637.733333pt;}
.y19_c00025{bottom:648.400000pt;}
.y4a_c00025{bottom:653.733333pt;}
.y18_c00025{bottom:664.400000pt;}
.y49_c00025{bottom:669.066667pt;}
.y17_c00025{bottom:679.733333pt;}
.y48_c00025{bottom:689.200000pt;}
.y16_c00025{bottom:695.066667pt;}
.y47_c00025{bottom:705.200000pt;}
.y15_c00025{bottom:718.666667pt;}
.y46_c00025{bottom:721.200000pt;}
.y14_c00025{bottom:724.800000pt;}
.y13_c00025{bottom:734.133333pt;}
.y45_c00025{bottom:737.200000pt;}
.y12_c00025{bottom:749.733333pt;}
.y44_c00025{bottom:752.933333pt;}
.y11_c00025{bottom:764.800000pt;}
.y43_c00025{bottom:768.933333pt;}
.y42_c00025{bottom:784.666667pt;}
.y10_c00025{bottom:788.533333pt;}
.yf_c00025{bottom:803.866667pt;}
.y41_c00025{bottom:804.533333pt;}
.ye_c00025{bottom:819.466667pt;}
.y40_c00025{bottom:820.533333pt;}
.y3f_c00025{bottom:836.533333pt;}
.yd_c00025{bottom:842.400000pt;}
.y3e_c00025{bottom:852.533333pt;}
.yc_c00025{bottom:858.133333pt;}
.y3d_c00025{bottom:868.533333pt;}
.yb_c00025{bottom:873.866667pt;}
.y3c_c00025{bottom:887.733333pt;}
.ya_c00025{bottom:888.933333pt;}
.y3b_c00025{bottom:904.000000pt;}
.y9_c00025{bottom:912.266667pt;}
.y3a_c00025{bottom:920.000000pt;}
.y8_c00025{bottom:928.000000pt;}
.y39_c00025{bottom:936.000000pt;}
.y7_c00025{bottom:943.733333pt;}
.y38_c00025{bottom:952.000000pt;}
.y6_c00025{bottom:966.933333pt;}
.y37_c00025{bottom:967.733333pt;}
.y5_c00025{bottom:982.666667pt;}
.y36_c00025{bottom:983.733333pt;}
.y4_c00025{bottom:998.666667pt;}
.y35_c00025{bottom:999.733333pt;}
.y1_c00025{bottom:1021.066667pt;}
.y3_c00025{bottom:1022.666667pt;}
.y2_c00025{bottom:1034.133333pt;}
.h8_c00025{height:21.333333pt;}
.h3_c00025{height:26.666667pt;}
.hb_c00025{height:32.000000pt;}
.h2_c00025{height:42.666667pt;}
.h9_c00025{height:48.000000pt;}
.h6_c00025{height:53.333333pt;}
.h5_c00025{height:58.666667pt;}
.h7_c00025{height:64.000000pt;}
.ha_c00025{height:69.333333pt;}
.h4_c00025{height:90.666667pt;}
.h0_c00025{height:1136.639973pt;}
.h1_c00025{height:1136.666667pt;}
.w0_c00025{width:843.200032pt;}
.w1_c00025{width:843.333333pt;}
.x0_c00025{left:0.000000pt;}
.x152_c00025{left:26.533333pt;}
.x1_c00025{left:157.466667pt;}
.x16_c00025{left:158.666667pt;}
.x21_c00025{left:159.600000pt;}
.x3f_c00025{left:160.800000pt;}
.x4d_c00025{left:161.733333pt;}
.x9f_c00025{left:165.066667pt;}
.x6e_c00025{left:169.066667pt;}
.x2_c00025{left:172.533333pt;}
.x4_c00025{left:174.133333pt;}
.x1b_c00025{left:175.333333pt;}
.x2c_c00025{left:176.266667pt;}
.x4f_c00025{left:177.333333pt;}
.xd_c00025{left:179.200000pt;}
.x31_c00025{left:180.533333pt;}
.x40_c00025{left:182.266667pt;}
.xa0_c00025{left:184.533333pt;}
.x5a_c00025{left:186.933333pt;}
.x85_c00025{left:188.400000pt;}
.x17_c00025{left:190.000000pt;}
.x56_c00025{left:192.666667pt;}
.xa4_c00025{left:193.733333pt;}
.x42_c00025{left:196.533333pt;}
.x1c_c00025{left:197.733333pt;}
.x18_c00025{left:198.666667pt;}
.x9b_c00025{left:200.000000pt;}
.x41_c00025{left:201.466667pt;}
.x50_c00025{left:202.666667pt;}
.x22_c00025{left:206.000000pt;}
.x62_c00025{left:208.400000pt;}
.xe_c00025{left:209.600000pt;}
.x63_c00025{left:211.333333pt;}
.x4e_c00025{left:212.266667pt;}
.x6a_c00025{left:213.600000pt;}
.x5_c00025{left:214.800000pt;}
.x37_c00025{left:216.666667pt;}
.x65_c00025{left:220.133333pt;}
.x88_c00025{left:221.866667pt;}
.x6_c00025{left:224.400000pt;}
.x98_c00025{left:226.000000pt;}
.x38_c00025{left:227.866667pt;}
.x2b_c00025{left:229.200000pt;}
.x2d_c00025{left:231.600000pt;}
.x1d_c00025{left:233.200000pt;}
.x43_c00025{left:234.666667pt;}
.x48_c00025{left:235.600000pt;}
.x9e_c00025{left:237.733333pt;}
.x5b_c00025{left:239.466667pt;}
.x67_c00025{left:240.533333pt;}
.x93_c00025{left:241.466667pt;}
.x23_c00025{left:245.066667pt;}
.x39_c00025{left:246.133333pt;}
.x82_c00025{left:247.333333pt;}
.x64_c00025{left:249.066667pt;}
.x7b_c00025{left:250.000000pt;}
.x7_c00025{left:253.466667pt;}
.x49_c00025{left:254.800000pt;}
.x94_c00025{left:255.866667pt;}
.x68_c00025{left:257.200000pt;}
.xf_c00025{left:258.533333pt;}
.x24_c00025{left:261.333333pt;}
.x86_c00025{left:264.266667pt;}
.x10_c00025{left:266.800000pt;}
.x75_c00025{left:267.866667pt;}
.x9c_c00025{left:268.800000pt;}
.x6f_c00025{left:272.133333pt;}
.x51_c00025{left:273.333333pt;}
.x8c_c00025{left:274.800000pt;}
.x8_c00025{left:275.866667pt;}
.xa2_c00025{left:277.866667pt;}
.x89_c00025{left:279.066667pt;}
.x76_c00025{left:280.000000pt;}
.x44_c00025{left:281.733333pt;}
.x11_c00025{left:283.066667pt;}
.x19_c00025{left:284.800000pt;}
.x5c_c00025{left:286.533333pt;}
.x70_c00025{left:287.600000pt;}
.x7f_c00025{left:289.066667pt;}
.x57_c00025{left:291.066667pt;}
.x8d_c00025{left:292.133333pt;}
.x7c_c00025{left:293.200000pt;}
.x2e_c00025{left:294.533333pt;}
.x1e_c00025{left:298.800000pt;}
.x25_c00025{left:300.666667pt;}
.x52_c00025{left:302.400000pt;}
.x3a_c00025{left:304.400000pt;}
.x32_c00025{left:306.266667pt;}
.x77_c00025{left:307.200000pt;}
.x26_c00025{left:308.933333pt;}
.x83_c00025{left:314.533333pt;}
.x71_c00025{left:315.466667pt;}
.x5d_c00025{left:317.600000pt;}
.x6c_c00025{left:320.133333pt;}
.x80_c00025{left:321.333333pt;}
.x53_c00025{left:322.266667pt;}
.x45_c00025{left:324.000000pt;}
.x1a_c00025{left:325.733333pt;}
.x78_c00025{left:328.000000pt;}
.x27_c00025{left:329.066667pt;}
.x9_c00025{left:330.266667pt;}
.x12_c00025{left:332.933333pt;}
.x91_c00025{left:334.000000pt;}
.x5e_c00025{left:335.466667pt;}
.x9d_c00025{left:336.933333pt;}
.xa5_c00025{left:337.866667pt;}
.x33_c00025{left:339.600000pt;}
.x13_c00025{left:340.933333pt;}
.x8e_c00025{left:343.066667pt;}
.xa_c00025{left:344.666667pt;}
.x84_c00025{left:345.600000pt;}
.x79_c00025{left:347.200000pt;}
.x4a_c00025{left:351.466667pt;}
.xa6_c00025{left:354.133333pt;}
.x8f_c00025{left:358.133333pt;}
.x7d_c00025{left:360.133333pt;}
.x54_c00025{left:362.533333pt;}
.x3b_c00025{left:363.866667pt;}
.x96_c00025{left:365.733333pt;}
.x46_c00025{left:366.933333pt;}
.x2f_c00025{left:369.733333pt;}
.x3_c00025{left:372.266667pt;}
.x99_c00025{left:373.466667pt;}
.x58_c00025{left:375.200000pt;}
.x6b_c00025{left:376.533333pt;}
.x1f_c00025{left:378.133333pt;}
.x72_c00025{left:380.400000pt;}
.x97_c00025{left:381.466667pt;}
.x9a_c00025{left:382.800000pt;}
.x47_c00025{left:384.533333pt;}
.x28_c00025{left:386.933333pt;}
.x14_c00025{left:388.000000pt;}
.x6d_c00025{left:388.933333pt;}
.xa7_c00025{left:390.000000pt;}
.x92_c00025{left:390.933333pt;}
.x3c_c00025{left:392.666667pt;}
.x29_c00025{left:394.666667pt;}
.xa3_c00025{left:395.866667pt;}
.xb_c00025{left:396.800000pt;}
.x30_c00025{left:397.866667pt;}
.x34_c00025{left:399.466667pt;}
.x59_c00025{left:401.066667pt;}
.x5f_c00025{left:402.933333pt;}
.xa1_c00025{left:404.133333pt;}
.x66_c00025{left:406.000000pt;}
.x35_c00025{left:408.400000pt;}
.x2a_c00025{left:409.333333pt;}
.x60_c00025{left:410.933333pt;}
.x73_c00025{left:413.066667pt;}
.xc_c00025{left:414.400000pt;}
.x81_c00025{left:416.666667pt;}
.x15_c00025{left:418.133333pt;}
.x4b_c00025{left:420.533333pt;}
.x3d_c00025{left:422.133333pt;}
.x7e_c00025{left:424.133333pt;}
.x61_c00025{left:425.066667pt;}
.x90_c00025{left:426.000000pt;}
.x4c_c00025{left:427.600000pt;}
.x8a_c00025{left:429.733333pt;}
.x87_c00025{left:430.933333pt;}
.x55_c00025{left:432.666667pt;}
.x36_c00025{left:434.000000pt;}
.x69_c00025{left:435.333333pt;}
.x3e_c00025{left:437.866667pt;}
.x20_c00025{left:442.133333pt;}
.x7a_c00025{left:445.200000pt;}
.x8b_c00025{left:448.000000pt;}
.x74_c00025{left:450.266667pt;}
.x95_c00025{left:452.400000pt;}
.x140_c00025{left:470.400000pt;}
.x13f_c00025{left:471.333333pt;}
.xa8_c00025{left:473.333333pt;}
.xcb_c00025{left:474.666667pt;}
.xfc_c00025{left:475.866667pt;}
.x10d_c00025{left:476.800000pt;}
.x132_c00025{left:478.000000pt;}
.x139_c00025{left:479.333333pt;}
.x14c_c00025{left:480.533333pt;}
.xf7_c00025{left:485.733333pt;}
.x121_c00025{left:488.533333pt;}
.xf5_c00025{left:489.600000pt;}
.xdb_c00025{left:490.533333pt;}
.x11b_c00025{left:491.466667pt;}
.x113_c00025{left:492.533333pt;}
.xd2_c00025{left:494.266667pt;}
.x104_c00025{left:496.400000pt;}
.xd9_c00025{left:498.266667pt;}
.x102_c00025{left:499.600000pt;}
.x145_c00025{left:500.666667pt;}
.xf8_c00025{left:502.000000pt;}
.x12f_c00025{left:505.733333pt;}
.xbe_c00025{left:507.066667pt;}
.xa9_c00025{left:508.800000pt;}
.xb8_c00025{left:510.933333pt;}
.xfd_c00025{left:512.933333pt;}
.xe7_c00025{left:515.066667pt;}
.xda_c00025{left:516.800000pt;}
.x125_c00025{left:517.733333pt;}
.xdc_c00025{left:518.666667pt;}
.x11c_c00025{left:520.533333pt;}
.xef_c00025{left:521.466667pt;}
.xf3_c00025{left:523.333333pt;}
.xcc_c00025{left:526.133333pt;}
.xaa_c00025{left:528.266667pt;}
.xe1_c00025{left:529.466667pt;}
.x137_c00025{left:530.800000pt;}
.xb2_c00025{left:532.000000pt;}
.x13a_c00025{left:533.733333pt;}
.xcd_c00025{left:534.800000pt;}
.xf4_c00025{left:537.066667pt;}
.x133_c00025{left:538.400000pt;}
.xf0_c00025{left:540.933333pt;}
.xbf_c00025{left:542.933333pt;}
.xf9_c00025{left:545.200000pt;}
.x148_c00025{left:546.933333pt;}
.xe2_c00025{left:548.000000pt;}
.x10e_c00025{left:550.800000pt;}
.xc7_c00025{left:552.933333pt;}
.x122_c00025{left:556.266667pt;}
.xb3_c00025{left:557.333333pt;}
.xf1_c00025{left:560.133333pt;}
.x10a_c00025{left:562.666667pt;}
.xf6_c00025{left:563.866667pt;}
.xe8_c00025{left:566.000000pt;}
.x14b_c00025{left:566.933333pt;}
.x105_c00025{left:568.533333pt;}
.xb9_c00025{left:569.866667pt;}
.xd3_c00025{left:574.266667pt;}
.xfe_c00025{left:575.733333pt;}
.xc0_c00025{left:577.466667pt;}
.x126_c00025{left:579.466667pt;}
.xfa_c00025{left:581.066667pt;}
.xe9_c00025{left:582.266667pt;}
.x14d_c00025{left:583.200000pt;}
.x134_c00025{left:584.133333pt;}
.xe3_c00025{left:585.466667pt;}
.xc1_c00025{left:587.733333pt;}
.x114_c00025{left:588.933333pt;}
.xba_c00025{left:590.400000pt;}
.xab_c00025{left:591.600000pt;}
.x10f_c00025{left:593.333333pt;}
.xce_c00025{left:594.666667pt;}
.x11d_c00025{left:596.000000pt;}
.x138_c00025{left:598.933333pt;}
.x142_c00025{left:600.266667pt;}
.x110_c00025{left:601.333333pt;}
.xac_c00025{left:602.533333pt;}
.xb4_c00025{left:604.666667pt;}
.x11e_c00025{left:605.600000pt;}
.xc2_c00025{left:606.933333pt;}
.x12d_c00025{left:607.866667pt;}
.x106_c00025{left:610.133333pt;}
.xcf_c00025{left:611.600000pt;}
.xea_c00025{left:613.600000pt;}
.x13c_c00025{left:619.733333pt;}
.x118_c00025{left:621.066667pt;}
.x143_c00025{left:622.933333pt;}
.xc3_c00025{left:627.733333pt;}
.xff_c00025{left:629.866667pt;}
.xeb_c00025{left:631.866667pt;}
.x129_c00025{left:632.800000pt;}
.xad_c00025{left:635.200000pt;}
.xbb_c00025{left:637.733333pt;}
.x13d_c00025{left:639.200000pt;}
.x130_c00025{left:640.533333pt;}
.x146_c00025{left:642.000000pt;}
.x12a_c00025{left:643.333333pt;}
.xae_c00025{left:644.800000pt;}
.xdd_c00025{left:646.000000pt;}
.x107_c00025{left:647.200000pt;}
.xd4_c00025{left:649.200000pt;}
.x14e_c00025{left:650.400000pt;}
.xc8_c00025{left:653.466667pt;}
.x115_c00025{left:654.800000pt;}
.x141_c00025{left:657.066667pt;}
.xd5_c00025{left:658.133333pt;}
.xf2_c00025{left:659.333333pt;}
.x119_c00025{left:661.066667pt;}
.x127_c00025{left:664.933333pt;}
.xaf_c00025{left:665.866667pt;}
.x135_c00025{left:667.066667pt;}
.x150_c00025{left:668.400000pt;}
.xde_c00025{left:669.333333pt;}
.xc9_c00025{left:672.400000pt;}
.x111_c00025{left:674.266667pt;}
.x103_c00025{left:675.600000pt;}
.x100_c00025{left:677.600000pt;}
.x10b_c00025{left:679.600000pt;}
.xd6_c00025{left:681.200000pt;}
.xb0_c00025{left:682.133333pt;}
.x12e_c00025{left:683.866667pt;}
.x131_c00025{left:685.066667pt;}
.xc4_c00025{left:686.266667pt;}
.xe4_c00025{left:687.200000pt;}
.xb5_c00025{left:688.533333pt;}
.x12b_c00025{left:692.666667pt;}
.x11a_c00025{left:694.000000pt;}
.xc5_c00025{left:696.800000pt;}
.xec_c00025{left:699.733333pt;}
.xd7_c00025{left:701.733333pt;}
.xb6_c00025{left:703.600000pt;}
.xbc_c00025{left:705.200000pt;}
.x151_c00025{left:706.133333pt;}
.xdf_c00025{left:707.466667pt;}
.xe5_c00025{left:709.600000pt;}
.x108_c00025{left:712.533333pt;}
.x112_c00025{left:714.933333pt;}
.xd0_c00025{left:716.266667pt;}
.xb1_c00025{left:717.600000pt;}
.x14a_c00025{left:718.933333pt;}
.xed_c00025{left:720.266667pt;}
.x13b_c00025{left:721.200000pt;}
.x116_c00025{left:722.266667pt;}
.x101_c00025{left:724.933333pt;}
.xc6_c00025{left:728.533333pt;}
.x13e_c00025{left:729.466667pt;}
.xd1_c00025{left:730.400000pt;}
.xbd_c00025{left:731.733333pt;}
.xd8_c00025{left:733.066667pt;}
.x12c_c00025{left:735.200000pt;}
.x128_c00025{left:736.933333pt;}
.xee_c00025{left:739.466667pt;}
.x11f_c00025{left:741.333333pt;}
.xb7_c00025{left:743.600000pt;}
.x147_c00025{left:746.933333pt;}
.xe6_c00025{left:748.666667pt;}
.xfb_c00025{left:752.666667pt;}
.x14f_c00025{left:756.000000pt;}
.x123_c00025{left:757.600000pt;}
.xe0_c00025{left:761.200000pt;}
.x109_c00025{left:763.066667pt;}
.x136_c00025{left:764.000000pt;}
.xca_c00025{left:764.933333pt;}
.x10c_c00025{left:766.666667pt;}
.x124_c00025{left:767.866667pt;}
.x149_c00025{left:770.933333pt;}
.x117_c00025{left:772.800000pt;}
.x120_c00025{left:774.000000pt;}
.x144_c00025{left:775.466667pt;}
}





/* 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_c00026 {
    display:none;
  }
  .loading-indicator_c00026.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00026 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_c00026 { 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_c00026" -> "#page-container .classname_c00026")
 */
.pf_c00026 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00026 { /* 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_c00026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00026 { /* 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_c00026 { /* 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_c00026 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00026 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00026 {overflow:visible;}
  }
}
.c_c00026 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00026 { /* 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_c00026:after { /* webkit #35443 */
  content: '';
}
.t_c00026:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00026 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 */
}
.__c00026 { /* 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_c00026 { /* info for Javascript */
  display:none;
}
.l_c00026 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00026 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00026 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00026: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_c00026 {
    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_c00026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00026.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_c00026 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00026;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.000000;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;}
.ma3_c00026{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m2_c00026{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00026{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m17_c00026{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m6_c00026{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00026{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m69_c00026{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md5_c00026{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00026{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00026{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00026{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mec_c00026{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.meb_c00026{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m89_c00026{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m107_c00026{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00026{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00026{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mc_c00026{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m82_c00026{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m3_c00026{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00026{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me3_c00026{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m100_c00026{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00026{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m95_c00026{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me7_c00026{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m42_c00026{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m49_c00026{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me8_c00026{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m66_c00026{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m9_c00026{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m19_c00026{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00026{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m18_c00026{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7_c00026{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mef_c00026{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.me9_c00026{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me1_c00026{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m20_c00026{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m35_c00026{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00026{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00026{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00026{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md6_c00026{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00026{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m106_c00026{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m22_c00026{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m26_c00026{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m5_c00026{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00026{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md9_c00026{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m27_c00026{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m33_c00026{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m23_c00026{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4_c00026{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00026{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mde_c00026{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m78_c00026{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00026{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00026{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00026{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m51_c00026{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00026{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m53_c00026{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m108_c00026{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m64_c00026{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb_c00026{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00026{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00026{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m79_c00026{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00026{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00026{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.me4_c00026{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00026{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m45_c00026{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8_c00026{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m76_c00026{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m29_c00026{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m21_c00026{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mad_c00026{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00026{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00026{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mce_c00026{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00026{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m48_c00026{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00026{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00026{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m28_c00026{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00026{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m98_c00026{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00026{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m84_c00026{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m99_c00026{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.me5_c00026{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00026{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m41_c00026{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m54_c00026{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00026{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00026{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00026{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00026{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00026{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00026{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00026{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m85_c00026{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m68_c00026{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00026{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00026{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf_c00026{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00026{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m86_c00026{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00026{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00026{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m34_c00026{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m52_c00026{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m71_c00026{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00026{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mea_c00026{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.maf_c00026{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00026{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m80_c00026{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mac_c00026{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m72_c00026{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m61_c00026{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mae_c00026{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m24_c00026{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00026{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00026{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m70_c00026{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m91_c00026{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00026{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mff_c00026{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00026{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00026{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m57_c00026{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m47_c00026{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m65_c00026{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00026{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m73_c00026{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00026{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mee_c00026{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m32_c00026{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m83_c00026{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00026{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00026{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m37_c00026{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00026{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma_c00026{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me2_c00026{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00026{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md2_c00026{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md3_c00026{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m62_c00026{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m36_c00026{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00026{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00026{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m46_c00026{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m31_c00026{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me6_c00026{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00026{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m60_c00026{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00026{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00026{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m88_c00026{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00026{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00026{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00026{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00026{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m55_c00026{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00026{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m16_c00026{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00026{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00026{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m94_c00026{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m10_c00026{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00026{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m93_c00026{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00026{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m40_c00026{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00026{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00026{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00026{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00026{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00026{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m67_c00026{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00026{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m103_c00026{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m11_c00026{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m39_c00026{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md1_c00026{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.med_c00026{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m14_c00026{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m90_c00026{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m77_c00026{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m101_c00026{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md8_c00026{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00026{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m38_c00026{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mda_c00026{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m44_c00026{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00026{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mca_c00026{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00026{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00026{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m102_c00026{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m96_c00026{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00026{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00026{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m63_c00026{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00026{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m30_c00026{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m59_c00026{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.me_c00026{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00026{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00026{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m50_c00026{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00026{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m15_c00026{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m74_c00026{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m43_c00026{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m97_c00026{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m92_c00026{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.maa_c00026{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00026{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m75_c00026{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mab_c00026{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00026{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);}
.m87_c00026{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12_c00026{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md7_c00026{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00026{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m105_c00026{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mba_c00026{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00026{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00026{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m58_c00026{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00026{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m81_c00026{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00026{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m13_c00026{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00026{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m56_c00026{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00026{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.md_c00026{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m25_c00026{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00026{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00026{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.md0_c00026{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00026{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00026{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m104_c00026{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md4_c00026{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00026{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00026{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00026{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00026{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00026{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00026{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me0_c00026{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00026{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00026{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00026{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m0_c00026{transform:matrix(0.501000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00026{transform:matrix(37.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(37.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(37.320000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls0_c00026{letter-spacing:0.000000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{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__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00026{word-spacing:-9.663230px;}
.ws7_c00026{word-spacing:-5.609808px;}
.ws0_c00026{word-spacing:-4.604468px;}
.ws2_c00026{word-spacing:-3.793451px;}
.ws4_c00026{word-spacing:-2.476190px;}
.ws8_c00026{word-spacing:0.000000px;}
.ws6_c00026{word-spacing:0.967742px;}
.ws1_c00026{word-spacing:7.058824px;}
.ws3_c00026{word-spacing:165.192661px;}
.fc0_c00026{color:transparent;}
.fs5_c00026{font-size:18.000000px;}
.fs4_c00026{font-size:48.000000px;}
.fs6_c00026{font-size:54.000000px;}
.fs2_c00026{font-size:60.000000px;}
.fs3_c00026{font-size:66.000000px;}
.fs1_c00026{font-size:72.000000px;}
.fs0_c00026{font-size:78.000000px;}
.y0_c00026{bottom:0.000000px;}
.y32_c00026{bottom:188.250000px;}
.y64_c00026{bottom:192.900000px;}
.y63_c00026{bottom:208.800000px;}
.y31_c00026{bottom:209.100000px;}
.y62_c00026{bottom:221.100000px;}
.y30_c00026{bottom:227.100000px;}
.y61_c00026{bottom:236.250000px;}
.y2f_c00026{bottom:244.800000px;}
.y60_c00026{bottom:249.900000px;}
.y2e_c00026{bottom:262.800000px;}
.y5f_c00026{bottom:264.600000px;}
.y5e_c00026{bottom:279.750000px;}
.y2d_c00026{bottom:283.950000px;}
.y2c_c00026{bottom:301.950000px;}
.y5d_c00026{bottom:305.700000px;}
.y2b_c00026{bottom:320.250000px;}
.y5c_c00026{bottom:335.550000px;}
.y2a_c00026{bottom:337.500000px;}
.y29_c00026{bottom:355.200000px;}
.y5b_c00026{bottom:357.300000px;}
.y28_c00026{bottom:373.200000px;}
.y5a_c00026{bottom:374.550000px;}
.y27_c00026{bottom:390.900000px;}
.y59_c00026{bottom:392.550000px;}
.y26_c00026{bottom:408.900000px;}
.y58_c00026{bottom:410.250000px;}
.y25_c00026{bottom:426.600000px;}
.y57_c00026{bottom:427.950000px;}
.y24_c00026{bottom:444.600000px;}
.y56_c00026{bottom:445.650000px;}
.y23_c00026{bottom:465.150000px;}
.y55_c00026{bottom:470.100000px;}
.y22_c00026{bottom:484.200000px;}
.y54_c00026{bottom:489.900000px;}
.y53_c00026{bottom:507.900000px;}
.y21_c00026{bottom:522.750000px;}
.y52_c00026{bottom:525.600000px;}
.y51_c00026{bottom:551.850000px;}
.y20_c00026{bottom:562.800000px;}
.y50_c00026{bottom:569.850000px;}
.y1f_c00026{bottom:581.100000px;}
.y4f_c00026{bottom:591.900000px;}
.y1e_c00026{bottom:601.950000px;}
.y4e_c00026{bottom:613.200000px;}
.y1d_c00026{bottom:621.000000px;}
.y4d_c00026{bottom:631.500000px;}
.y1c_c00026{bottom:639.000000px;}
.y4c_c00026{bottom:652.050000px;}
.y1b_c00026{bottom:656.700000px;}
.y4b_c00026{bottom:671.100000px;}
.y1a_c00026{bottom:674.400000px;}
.y19_c00026{bottom:692.400000px;}
.y4a_c00026{bottom:697.650000px;}
.y18_c00026{bottom:710.100000px;}
.y49_c00026{bottom:715.650000px;}
.y17_c00026{bottom:728.100000px;}
.y48_c00026{bottom:737.700000px;}
.y16_c00026{bottom:745.800000px;}
.y47_c00026{bottom:755.700000px;}
.y15_c00026{bottom:763.500000px;}
.y46_c00026{bottom:776.400000px;}
.y14_c00026{bottom:781.500000px;}
.y45_c00026{bottom:795.150000px;}
.y13_c00026{bottom:799.200000px;}
.y44_c00026{bottom:813.150000px;}
.y12_c00026{bottom:817.200000px;}
.y43_c00026{bottom:830.850000px;}
.y11_c00026{bottom:839.100000px;}
.y10_c00026{bottom:857.100000px;}
.y42_c00026{bottom:857.550000px;}
.yf_c00026{bottom:874.800000px;}
.y41_c00026{bottom:875.550000px;}
.y40_c00026{bottom:892.800000px;}
.ye_c00026{bottom:896.700000px;}
.y3f_c00026{bottom:914.400000px;}
.yd_c00026{bottom:914.700000px;}
.y3e_c00026{bottom:932.400000px;}
.yc_c00026{bottom:932.700000px;}
.y3d_c00026{bottom:950.100000px;}
.yb_c00026{bottom:950.400000px;}
.y3c_c00026{bottom:968.100000px;}
.ya_c00026{bottom:972.300000px;}
.y3b_c00026{bottom:990.000000px;}
.y9_c00026{bottom:990.300000px;}
.y3a_c00026{bottom:1002.600000px;}
.y8_c00026{bottom:1008.300000px;}
.y39_c00026{bottom:1022.400000px;}
.y38_c00026{bottom:1025.700000px;}
.y7_c00026{bottom:1026.000000px;}
.y6_c00026{bottom:1043.700000px;}
.y37_c00026{bottom:1065.600000px;}
.y5_c00026{bottom:1065.900000px;}
.y36_c00026{bottom:1078.200000px;}
.y35_c00026{bottom:1083.600000px;}
.y4_c00026{bottom:1083.900000px;}
.y34_c00026{bottom:1101.600000px;}
.y3_c00026{bottom:1101.900000px;}
.y33_c00026{bottom:1119.300000px;}
.y2_c00026{bottom:1119.900000px;}
.y1_c00026{bottom:1146.600000px;}
.h7_c00026{height:18.000000px;}
.h6_c00026{height:48.000000px;}
.h8_c00026{height:54.000000px;}
.h4_c00026{height:60.000000px;}
.h5_c00026{height:66.000000px;}
.h3_c00026{height:72.000000px;}
.h2_c00026{height:78.000000px;}
.h1_c00026{height:1273.500000px;}
.h0_c00026{height:1273.679993px;}
.w0_c00026{width:948.600036px;}
.w1_c00026{width:948.750000px;}
.x0_c00026{left:0.000000px;}
.x95_c00026{left:92.250000px;}
.x38_c00026{left:93.450000px;}
.x3_c00026{left:94.650000px;}
.x1f_c00026{left:95.700000px;}
.x4_c00026{left:106.500000px;}
.x24_c00026{left:112.650000px;}
.x84_c00026{left:113.700000px;}
.x2a_c00026{left:114.750000px;}
.xf_c00026{left:116.100000px;}
.x86_c00026{left:118.350000px;}
.x8f_c00026{left:120.900000px;}
.x5_c00026{left:123.450000px;}
.x56_c00026{left:125.100000px;}
.x52_c00026{left:126.750000px;}
.x41_c00026{left:128.550000px;}
.x6a_c00026{left:129.750000px;}
.x96_c00026{left:132.600000px;}
.x3b_c00026{left:133.650000px;}
.x25_c00026{left:135.300000px;}
.x16_c00026{left:137.400000px;}
.x20_c00026{left:138.600000px;}
.x4c_c00026{left:140.400000px;}
.x5a_c00026{left:141.600000px;}
.x70_c00026{left:142.650000px;}
.x60_c00026{left:145.500000px;}
.x76_c00026{left:148.350000px;}
.x97_c00026{left:151.650000px;}
.x5e_c00026{left:153.000000px;}
.x42_c00026{left:154.500000px;}
.x6_c00026{left:157.350000px;}
.x2b_c00026{left:159.000000px;}
.x17_c00026{left:160.500000px;}
.x64_c00026{left:161.850000px;}
.x78_c00026{left:166.650000px;}
.x65_c00026{left:169.050000px;}
.x61_c00026{left:170.700000px;}
.x21_c00026{left:171.750000px;}
.x4d_c00026{left:174.300000px;}
.x57_c00026{left:176.250000px;}
.x9a_c00026{left:177.300000px;}
.x3c_c00026{left:178.650000px;}
.x53_c00026{left:180.450000px;}
.x80_c00026{left:181.500000px;}
.x71_c00026{left:182.550000px;}
.x7c_c00026{left:184.350000px;}
.x26_c00026{left:186.000000px;}
.x10_c00026{left:187.350000px;}
.x47_c00026{left:188.550000px;}
.x85_c00026{left:190.350000px;}
.x94_c00026{left:191.550000px;}
.x77_c00026{left:193.350000px;}
.x91_c00026{left:196.350000px;}
.x4e_c00026{left:198.450000px;}
.x4b_c00026{left:199.650000px;}
.x66_c00026{left:201.750000px;}
.x8e_c00026{left:203.100000px;}
.x54_c00026{left:204.600000px;}
.x79_c00026{left:206.250000px;}
.x22_c00026{left:208.800000px;}
.x43_c00026{left:210.000000px;}
.x39_c00026{left:211.650000px;}
.x18_c00026{left:212.700000px;}
.x7d_c00026{left:215.700000px;}
.x98_c00026{left:217.950000px;}
.x6b_c00026{left:219.450000px;}
.x27_c00026{left:220.950000px;}
.x48_c00026{left:223.500000px;}
.x7_c00026{left:225.450000px;}
.x2c_c00026{left:227.400000px;}
.x31_c00026{left:232.800000px;}
.x8_c00026{left:234.150000px;}
.x35_c00026{left:235.650000px;}
.x7e_c00026{left:237.000000px;}
.x3d_c00026{left:238.350000px;}
.x3a_c00026{left:240.150000px;}
.x67_c00026{left:241.650000px;}
.x19_c00026{left:243.000000px;}
.x9c_c00026{left:244.800000px;}
.x62_c00026{left:246.000000px;}
.x87_c00026{left:247.650000px;}
.x9_c00026{left:251.100000px;}
.x28_c00026{left:252.300000px;}
.x11_c00026{left:253.950000px;}
.x23_c00026{left:259.200000px;}
.x72_c00026{left:262.200000px;}
.x1a_c00026{left:264.900000px;}
.x12_c00026{left:266.250000px;}
.x88_c00026{left:267.750000px;}
.x74_c00026{left:269.550000px;}
.x36_c00026{left:270.900000px;}
.x6c_c00026{left:272.700000px;}
.x58_c00026{left:273.900000px;}
.xa_c00026{left:276.600000px;}
.x4f_c00026{left:278.400000px;}
.x2d_c00026{left:279.900000px;}
.x8b_c00026{left:283.800000px;}
.x8c_c00026{left:287.400000px;}
.x82_c00026{left:290.550000px;}
.x6d_c00026{left:293.550000px;}
.x13_c00026{left:295.800000px;}
.x63_c00026{left:297.450000px;}
.xb_c00026{left:298.950000px;}
.x37_c00026{left:300.450000px;}
.x8a_c00026{left:303.450000px;}
.x44_c00026{left:306.900000px;}
.x3e_c00026{left:309.300000px;}
.x49_c00026{left:310.650000px;}
.x1b_c00026{left:315.600000px;}
.x75_c00026{left:318.000000px;}
.x59_c00026{left:321.000000px;}
.x83_c00026{left:326.550000px;}
.x5b_c00026{left:327.900000px;}
.x32_c00026{left:329.250000px;}
.x68_c00026{left:330.600000px;}
.x1c_c00026{left:333.300000px;}
.x1_c00026{left:336.900000px;}
.x5f_c00026{left:338.850000px;}
.x14_c00026{left:340.800000px;}
.x3f_c00026{left:342.000000px;}
.x6e_c00026{left:343.200000px;}
.x7f_c00026{left:345.900000px;}
.x5c_c00026{left:347.400000px;}
.xc_c00026{left:350.400000px;}
.x45_c00026{left:353.400000px;}
.x7a_c00026{left:354.900000px;}
.x90_c00026{left:356.700000px;}
.x2e_c00026{left:358.050000px;}
.x33_c00026{left:360.900000px;}
.x6f_c00026{left:362.250000px;}
.x93_c00026{left:364.050000px;}
.x50_c00026{left:365.100000px;}
.x1d_c00026{left:366.750000px;}
.x2f_c00026{left:369.150000px;}
.x92_c00026{left:370.650000px;}
.x69_c00026{left:371.700000px;}
.x15_c00026{left:373.950000px;}
.x9b_c00026{left:375.900000px;}
.x7b_c00026{left:377.250000px;}
.x34_c00026{left:382.200000px;}
.xd_c00026{left:384.300000px;}
.x73_c00026{left:386.400000px;}
.x30_c00026{left:392.250000px;}
.x8d_c00026{left:393.900000px;}
.x40_c00026{left:395.250000px;}
.x5d_c00026{left:398.100000px;}
.x1e_c00026{left:400.200000px;}
.xe_c00026{left:402.300000px;}
.x46_c00026{left:404.250000px;}
.x51_c00026{left:406.800000px;}
.x29_c00026{left:408.150000px;}
.x81_c00026{left:409.350000px;}
.x89_c00026{left:415.050000px;}
.x4a_c00026{left:417.150000px;}
.x9d_c00026{left:419.400000px;}
.x55_c00026{left:420.600000px;}
.x99_c00026{left:429.300000px;}
.xa8_c00026{left:452.550000px;}
.x136_c00026{left:453.750000px;}
.xb0_c00026{left:460.650000px;}
.x111_c00026{left:465.900000px;}
.xdc_c00026{left:468.600000px;}
.x9e_c00026{left:470.850000px;}
.x119_c00026{left:473.100000px;}
.xc5_c00026{left:475.050000px;}
.x112_c00026{left:477.450000px;}
.xf0_c00026{left:480.600000px;}
.x11c_c00026{left:483.450000px;}
.x12a_c00026{left:489.000000px;}
.xb1_c00026{left:490.200000px;}
.xe1_c00026{left:492.150000px;}
.xd5_c00026{left:493.200000px;}
.x123_c00026{left:494.550000px;}
.x12f_c00026{left:496.950000px;}
.xcf_c00026{left:498.750000px;}
.x12b_c00026{left:500.250000px;}
.x102_c00026{left:502.350000px;}
.xc2_c00026{left:504.900000px;}
.x109_c00026{left:508.950000px;}
.xe9_c00026{left:510.000000px;}
.xc6_c00026{left:511.050000px;}
.xb2_c00026{left:512.550000px;}
.xe2_c00026{left:514.800000px;}
.xd0_c00026{left:516.000000px;}
.xf9_c00026{left:517.800000px;}
.x127_c00026{left:519.000000px;}
.xbd_c00026{left:521.100000px;}
.x12c_c00026{left:522.900000px;}
.xd6_c00026{left:524.100000px;}
.x9f_c00026{left:527.400000px;}
.x105_c00026{left:529.650000px;}
.xa9_c00026{left:532.800000px;}
.x124_c00026{left:534.900000px;}
.x132_c00026{left:537.000000px;}
.xcd_c00026{left:538.800000px;}
.xe7_c00026{left:540.300000px;}
.xf5_c00026{left:542.100000px;}
.xea_c00026{left:543.150000px;}
.xd7_c00026{left:544.650000px;}
.x113_c00026{left:546.150000px;}
.xba_c00026{left:547.350000px;}
.x11d_c00026{left:548.700000px;}
.xc7_c00026{left:550.650000px;}
.xe3_c00026{left:552.600000px;}
.xfd_c00026{left:554.250000px;}
.xa0_c00026{left:556.500000px;}
.x133_c00026{left:557.550000px;}
.x121_c00026{left:558.750000px;}
.x106_c00026{left:560.550000px;}
.x10e_c00026{left:562.950000px;}
.xb3_c00026{left:564.000000px;}
.x114_c00026{left:565.200000px;}
.x128_c00026{left:568.650000px;}
.xdd_c00026{left:571.950000px;}
.x137_c00026{left:573.600000px;}
.xd1_c00026{left:575.100000px;}
.x11e_c00026{left:577.800000px;}
.xa1_c00026{left:578.850000px;}
.xbe_c00026{left:580.500000px;}
.x117_c00026{left:581.700000px;}
.xaa_c00026{left:583.500000px;}
.xb7_c00026{left:584.850000px;}
.xfe_c00026{left:585.900000px;}
.xc8_c00026{left:588.150000px;}
.x130_c00026{left:590.550000px;}
.xb4_c00026{left:593.850000px;}
.xd2_c00026{left:595.950000px;}
.x10f_c00026{left:599.700000px;}
.xd8_c00026{left:600.750000px;}
.x11b_c00026{left:601.950000px;}
.xab_c00026{left:604.050000px;}
.xc9_c00026{left:606.900000px;}
.x10c_c00026{left:609.150000px;}
.xfb_c00026{left:611.250000px;}
.xf6_c00026{left:612.300000px;}
.xb8_c00026{left:614.700000px;}
.x11a_c00026{left:616.050000px;}
.xde_c00026{left:619.500000px;}
.xa2_c00026{left:623.550000px;}
.xeb_c00026{left:625.650000px;}
.xd3_c00026{left:628.050000px;}
.xca_c00026{left:630.600000px;}
.xc3_c00026{left:631.650000px;}
.xfa_c00026{left:633.000000px;}
.xa3_c00026{left:634.350000px;}
.x135_c00026{left:636.600000px;}
.xac_c00026{left:640.800000px;}
.xbf_c00026{left:642.750000px;}
.x107_c00026{left:646.500000px;}
.xec_c00026{left:649.050000px;}
.xe4_c00026{left:651.150000px;}
.xf1_c00026{left:652.200000px;}
.xa4_c00026{left:655.650000px;}
.xad_c00026{left:657.750000px;}
.xb5_c00026{left:660.450000px;}
.x10d_c00026{left:662.400000px;}
.xc0_c00026{left:665.100000px;}
.x10a_c00026{left:667.650000px;}
.xf2_c00026{left:669.150000px;}
.x103_c00026{left:675.750000px;}
.xae_c00026{left:677.250000px;}
.x110_c00026{left:682.200000px;}
.xd9_c00026{left:683.850000px;}
.x108_c00026{left:686.400000px;}
.xa5_c00026{left:688.800000px;}
.xed_c00026{left:690.150000px;}
.x104_c00026{left:692.250000px;}
.xf7_c00026{left:693.750000px;}
.xf3_c00026{left:696.150000px;}
.x125_c00026{left:697.950000px;}
.xee_c00026{left:699.450000px;}
.xdf_c00026{left:701.400000px;}
.xd4_c00026{left:702.600000px;}
.x115_c00026{left:704.100000px;}
.xe5_c00026{left:705.450000px;}
.xff_c00026{left:707.850000px;}
.xe8_c00026{left:710.400000px;}
.x12d_c00026{left:712.950000px;}
.x11f_c00026{left:714.000000px;}
.xda_c00026{left:716.250000px;}
.xb9_c00026{left:717.300000px;}
.xc4_c00026{left:719.100000px;}
.xef_c00026{left:720.750000px;}
.x134_c00026{left:721.800000px;}
.x100_c00026{left:724.050000px;}
.xa6_c00026{left:725.100000px;}
.xb6_c00026{left:726.750000px;}
.xbb_c00026{left:728.400000px;}
.xf4_c00026{left:734.700000px;}
.xcb_c00026{left:736.800000px;}
.xfc_c00026{left:738.300000px;}
.x129_c00026{left:741.450000px;}
.x101_c00026{left:742.800000px;}
.x122_c00026{left:744.600000px;}
.xa7_c00026{left:745.650000px;}
.xe0_c00026{left:747.150000px;}
.xe6_c00026{left:748.200000px;}
.xc1_c00026{left:749.700000px;}
.xaf_c00026{left:752.550000px;}
.xbc_c00026{left:755.100000px;}
.x120_c00026{left:758.250000px;}
.x12e_c00026{left:759.750000px;}
.x118_c00026{left:761.400000px;}
.x10b_c00026{left:764.550000px;}
.xdb_c00026{left:766.650000px;}
.xce_c00026{left:768.750000px;}
.x131_c00026{left:769.950000px;}
.xf8_c00026{left:774.150000px;}
.x2_c00026{left:775.800000px;}
.xcc_c00026{left:779.250000px;}
.x116_c00026{left:780.300000px;}
.x126_c00026{left:782.850000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws5_c00026{word-spacing:-8.589538pt;}
.ws7_c00026{word-spacing:-4.986496pt;}
.ws0_c00026{word-spacing:-4.092860pt;}
.ws2_c00026{word-spacing:-3.371956pt;}
.ws4_c00026{word-spacing:-2.201058pt;}
.ws8_c00026{word-spacing:0.000000pt;}
.ws6_c00026{word-spacing:0.860215pt;}
.ws1_c00026{word-spacing:6.274510pt;}
.ws3_c00026{word-spacing:146.837920pt;}
.fs5_c00026{font-size:16.000000pt;}
.fs4_c00026{font-size:42.666667pt;}
.fs6_c00026{font-size:48.000000pt;}
.fs2_c00026{font-size:53.333333pt;}
.fs3_c00026{font-size:58.666667pt;}
.fs1_c00026{font-size:64.000000pt;}
.fs0_c00026{font-size:69.333333pt;}
.y0_c00026{bottom:0.000000pt;}
.y32_c00026{bottom:167.333333pt;}
.y64_c00026{bottom:171.466667pt;}
.y63_c00026{bottom:185.600000pt;}
.y31_c00026{bottom:185.866667pt;}
.y62_c00026{bottom:196.533333pt;}
.y30_c00026{bottom:201.866667pt;}
.y61_c00026{bottom:210.000000pt;}
.y2f_c00026{bottom:217.600000pt;}
.y60_c00026{bottom:222.133333pt;}
.y2e_c00026{bottom:233.600000pt;}
.y5f_c00026{bottom:235.200000pt;}
.y5e_c00026{bottom:248.666667pt;}
.y2d_c00026{bottom:252.400000pt;}
.y2c_c00026{bottom:268.400000pt;}
.y5d_c00026{bottom:271.733333pt;}
.y2b_c00026{bottom:284.666667pt;}
.y5c_c00026{bottom:298.266667pt;}
.y2a_c00026{bottom:300.000000pt;}
.y29_c00026{bottom:315.733333pt;}
.y5b_c00026{bottom:317.600000pt;}
.y28_c00026{bottom:331.733333pt;}
.y5a_c00026{bottom:332.933333pt;}
.y27_c00026{bottom:347.466667pt;}
.y59_c00026{bottom:348.933333pt;}
.y26_c00026{bottom:363.466667pt;}
.y58_c00026{bottom:364.666667pt;}
.y25_c00026{bottom:379.200000pt;}
.y57_c00026{bottom:380.400000pt;}
.y24_c00026{bottom:395.200000pt;}
.y56_c00026{bottom:396.133333pt;}
.y23_c00026{bottom:413.466667pt;}
.y55_c00026{bottom:417.866667pt;}
.y22_c00026{bottom:430.400000pt;}
.y54_c00026{bottom:435.466667pt;}
.y53_c00026{bottom:451.466667pt;}
.y21_c00026{bottom:464.666667pt;}
.y52_c00026{bottom:467.200000pt;}
.y51_c00026{bottom:490.533333pt;}
.y20_c00026{bottom:500.266667pt;}
.y50_c00026{bottom:506.533333pt;}
.y1f_c00026{bottom:516.533333pt;}
.y4f_c00026{bottom:526.133333pt;}
.y1e_c00026{bottom:535.066667pt;}
.y4e_c00026{bottom:545.066667pt;}
.y1d_c00026{bottom:552.000000pt;}
.y4d_c00026{bottom:561.333333pt;}
.y1c_c00026{bottom:568.000000pt;}
.y4c_c00026{bottom:579.600000pt;}
.y1b_c00026{bottom:583.733333pt;}
.y4b_c00026{bottom:596.533333pt;}
.y1a_c00026{bottom:599.466667pt;}
.y19_c00026{bottom:615.466667pt;}
.y4a_c00026{bottom:620.133333pt;}
.y18_c00026{bottom:631.200000pt;}
.y49_c00026{bottom:636.133333pt;}
.y17_c00026{bottom:647.200000pt;}
.y48_c00026{bottom:655.733333pt;}
.y16_c00026{bottom:662.933333pt;}
.y47_c00026{bottom:671.733333pt;}
.y15_c00026{bottom:678.666667pt;}
.y46_c00026{bottom:690.133333pt;}
.y14_c00026{bottom:694.666667pt;}
.y45_c00026{bottom:706.800000pt;}
.y13_c00026{bottom:710.400000pt;}
.y44_c00026{bottom:722.800000pt;}
.y12_c00026{bottom:726.400000pt;}
.y43_c00026{bottom:738.533333pt;}
.y11_c00026{bottom:745.866667pt;}
.y10_c00026{bottom:761.866667pt;}
.y42_c00026{bottom:762.266667pt;}
.yf_c00026{bottom:777.600000pt;}
.y41_c00026{bottom:778.266667pt;}
.y40_c00026{bottom:793.600000pt;}
.ye_c00026{bottom:797.066667pt;}
.y3f_c00026{bottom:812.800000pt;}
.yd_c00026{bottom:813.066667pt;}
.y3e_c00026{bottom:828.800000pt;}
.yc_c00026{bottom:829.066667pt;}
.y3d_c00026{bottom:844.533333pt;}
.yb_c00026{bottom:844.800000pt;}
.y3c_c00026{bottom:860.533333pt;}
.ya_c00026{bottom:864.266667pt;}
.y3b_c00026{bottom:880.000000pt;}
.y9_c00026{bottom:880.266667pt;}
.y3a_c00026{bottom:891.200000pt;}
.y8_c00026{bottom:896.266667pt;}
.y39_c00026{bottom:908.800000pt;}
.y38_c00026{bottom:911.733333pt;}
.y7_c00026{bottom:912.000000pt;}
.y6_c00026{bottom:927.733333pt;}
.y37_c00026{bottom:947.200000pt;}
.y5_c00026{bottom:947.466667pt;}
.y36_c00026{bottom:958.400000pt;}
.y35_c00026{bottom:963.200000pt;}
.y4_c00026{bottom:963.466667pt;}
.y34_c00026{bottom:979.200000pt;}
.y3_c00026{bottom:979.466667pt;}
.y33_c00026{bottom:994.933333pt;}
.y2_c00026{bottom:995.466667pt;}
.y1_c00026{bottom:1019.200000pt;}
.h7_c00026{height:16.000000pt;}
.h6_c00026{height:42.666667pt;}
.h8_c00026{height:48.000000pt;}
.h4_c00026{height:53.333333pt;}
.h5_c00026{height:58.666667pt;}
.h3_c00026{height:64.000000pt;}
.h2_c00026{height:69.333333pt;}
.h1_c00026{height:1132.000000pt;}
.h0_c00026{height:1132.159993pt;}
.w0_c00026{width:843.200032pt;}
.w1_c00026{width:843.333333pt;}
.x0_c00026{left:0.000000pt;}
.x95_c00026{left:82.000000pt;}
.x38_c00026{left:83.066667pt;}
.x3_c00026{left:84.133333pt;}
.x1f_c00026{left:85.066667pt;}
.x4_c00026{left:94.666667pt;}
.x24_c00026{left:100.133333pt;}
.x84_c00026{left:101.066667pt;}
.x2a_c00026{left:102.000000pt;}
.xf_c00026{left:103.200000pt;}
.x86_c00026{left:105.200000pt;}
.x8f_c00026{left:107.466667pt;}
.x5_c00026{left:109.733333pt;}
.x56_c00026{left:111.200000pt;}
.x52_c00026{left:112.666667pt;}
.x41_c00026{left:114.266667pt;}
.x6a_c00026{left:115.333333pt;}
.x96_c00026{left:117.866667pt;}
.x3b_c00026{left:118.800000pt;}
.x25_c00026{left:120.266667pt;}
.x16_c00026{left:122.133333pt;}
.x20_c00026{left:123.200000pt;}
.x4c_c00026{left:124.800000pt;}
.x5a_c00026{left:125.866667pt;}
.x70_c00026{left:126.800000pt;}
.x60_c00026{left:129.333333pt;}
.x76_c00026{left:131.866667pt;}
.x97_c00026{left:134.800000pt;}
.x5e_c00026{left:136.000000pt;}
.x42_c00026{left:137.333333pt;}
.x6_c00026{left:139.866667pt;}
.x2b_c00026{left:141.333333pt;}
.x17_c00026{left:142.666667pt;}
.x64_c00026{left:143.866667pt;}
.x78_c00026{left:148.133333pt;}
.x65_c00026{left:150.266667pt;}
.x61_c00026{left:151.733333pt;}
.x21_c00026{left:152.666667pt;}
.x4d_c00026{left:154.933333pt;}
.x57_c00026{left:156.666667pt;}
.x9a_c00026{left:157.600000pt;}
.x3c_c00026{left:158.800000pt;}
.x53_c00026{left:160.400000pt;}
.x80_c00026{left:161.333333pt;}
.x71_c00026{left:162.266667pt;}
.x7c_c00026{left:163.866667pt;}
.x26_c00026{left:165.333333pt;}
.x10_c00026{left:166.533333pt;}
.x47_c00026{left:167.600000pt;}
.x85_c00026{left:169.200000pt;}
.x94_c00026{left:170.266667pt;}
.x77_c00026{left:171.866667pt;}
.x91_c00026{left:174.533333pt;}
.x4e_c00026{left:176.400000pt;}
.x4b_c00026{left:177.466667pt;}
.x66_c00026{left:179.333333pt;}
.x8e_c00026{left:180.533333pt;}
.x54_c00026{left:181.866667pt;}
.x79_c00026{left:183.333333pt;}
.x22_c00026{left:185.600000pt;}
.x43_c00026{left:186.666667pt;}
.x39_c00026{left:188.133333pt;}
.x18_c00026{left:189.066667pt;}
.x7d_c00026{left:191.733333pt;}
.x98_c00026{left:193.733333pt;}
.x6b_c00026{left:195.066667pt;}
.x27_c00026{left:196.400000pt;}
.x48_c00026{left:198.666667pt;}
.x7_c00026{left:200.400000pt;}
.x2c_c00026{left:202.133333pt;}
.x31_c00026{left:206.933333pt;}
.x8_c00026{left:208.133333pt;}
.x35_c00026{left:209.466667pt;}
.x7e_c00026{left:210.666667pt;}
.x3d_c00026{left:211.866667pt;}
.x3a_c00026{left:213.466667pt;}
.x67_c00026{left:214.800000pt;}
.x19_c00026{left:216.000000pt;}
.x9c_c00026{left:217.600000pt;}
.x62_c00026{left:218.666667pt;}
.x87_c00026{left:220.133333pt;}
.x9_c00026{left:223.200000pt;}
.x28_c00026{left:224.266667pt;}
.x11_c00026{left:225.733333pt;}
.x23_c00026{left:230.400000pt;}
.x72_c00026{left:233.066667pt;}
.x1a_c00026{left:235.466667pt;}
.x12_c00026{left:236.666667pt;}
.x88_c00026{left:238.000000pt;}
.x74_c00026{left:239.600000pt;}
.x36_c00026{left:240.800000pt;}
.x6c_c00026{left:242.400000pt;}
.x58_c00026{left:243.466667pt;}
.xa_c00026{left:245.866667pt;}
.x4f_c00026{left:247.466667pt;}
.x2d_c00026{left:248.800000pt;}
.x8b_c00026{left:252.266667pt;}
.x8c_c00026{left:255.466667pt;}
.x82_c00026{left:258.266667pt;}
.x6d_c00026{left:260.933333pt;}
.x13_c00026{left:262.933333pt;}
.x63_c00026{left:264.400000pt;}
.xb_c00026{left:265.733333pt;}
.x37_c00026{left:267.066667pt;}
.x8a_c00026{left:269.733333pt;}
.x44_c00026{left:272.800000pt;}
.x3e_c00026{left:274.933333pt;}
.x49_c00026{left:276.133333pt;}
.x1b_c00026{left:280.533333pt;}
.x75_c00026{left:282.666667pt;}
.x59_c00026{left:285.333333pt;}
.x83_c00026{left:290.266667pt;}
.x5b_c00026{left:291.466667pt;}
.x32_c00026{left:292.666667pt;}
.x68_c00026{left:293.866667pt;}
.x1c_c00026{left:296.266667pt;}
.x1_c00026{left:299.466667pt;}
.x5f_c00026{left:301.200000pt;}
.x14_c00026{left:302.933333pt;}
.x3f_c00026{left:304.000000pt;}
.x6e_c00026{left:305.066667pt;}
.x7f_c00026{left:307.466667pt;}
.x5c_c00026{left:308.800000pt;}
.xc_c00026{left:311.466667pt;}
.x45_c00026{left:314.133333pt;}
.x7a_c00026{left:315.466667pt;}
.x90_c00026{left:317.066667pt;}
.x2e_c00026{left:318.266667pt;}
.x33_c00026{left:320.800000pt;}
.x6f_c00026{left:322.000000pt;}
.x93_c00026{left:323.600000pt;}
.x50_c00026{left:324.533333pt;}
.x1d_c00026{left:326.000000pt;}
.x2f_c00026{left:328.133333pt;}
.x92_c00026{left:329.466667pt;}
.x69_c00026{left:330.400000pt;}
.x15_c00026{left:332.400000pt;}
.x9b_c00026{left:334.133333pt;}
.x7b_c00026{left:335.333333pt;}
.x34_c00026{left:339.733333pt;}
.xd_c00026{left:341.600000pt;}
.x73_c00026{left:343.466667pt;}
.x30_c00026{left:348.666667pt;}
.x8d_c00026{left:350.133333pt;}
.x40_c00026{left:351.333333pt;}
.x5d_c00026{left:353.866667pt;}
.x1e_c00026{left:355.733333pt;}
.xe_c00026{left:357.600000pt;}
.x46_c00026{left:359.333333pt;}
.x51_c00026{left:361.600000pt;}
.x29_c00026{left:362.800000pt;}
.x81_c00026{left:363.866667pt;}
.x89_c00026{left:368.933333pt;}
.x4a_c00026{left:370.800000pt;}
.x9d_c00026{left:372.800000pt;}
.x55_c00026{left:373.866667pt;}
.x99_c00026{left:381.600000pt;}
.xa8_c00026{left:402.266667pt;}
.x136_c00026{left:403.333333pt;}
.xb0_c00026{left:409.466667pt;}
.x111_c00026{left:414.133333pt;}
.xdc_c00026{left:416.533333pt;}
.x9e_c00026{left:418.533333pt;}
.x119_c00026{left:420.533333pt;}
.xc5_c00026{left:422.266667pt;}
.x112_c00026{left:424.400000pt;}
.xf0_c00026{left:427.200000pt;}
.x11c_c00026{left:429.733333pt;}
.x12a_c00026{left:434.666667pt;}
.xb1_c00026{left:435.733333pt;}
.xe1_c00026{left:437.466667pt;}
.xd5_c00026{left:438.400000pt;}
.x123_c00026{left:439.600000pt;}
.x12f_c00026{left:441.733333pt;}
.xcf_c00026{left:443.333333pt;}
.x12b_c00026{left:444.666667pt;}
.x102_c00026{left:446.533333pt;}
.xc2_c00026{left:448.800000pt;}
.x109_c00026{left:452.400000pt;}
.xe9_c00026{left:453.333333pt;}
.xc6_c00026{left:454.266667pt;}
.xb2_c00026{left:455.600000pt;}
.xe2_c00026{left:457.600000pt;}
.xd0_c00026{left:458.666667pt;}
.xf9_c00026{left:460.266667pt;}
.x127_c00026{left:461.333333pt;}
.xbd_c00026{left:463.200000pt;}
.x12c_c00026{left:464.800000pt;}
.xd6_c00026{left:465.866667pt;}
.x9f_c00026{left:468.800000pt;}
.x105_c00026{left:470.800000pt;}
.xa9_c00026{left:473.600000pt;}
.x124_c00026{left:475.466667pt;}
.x132_c00026{left:477.333333pt;}
.xcd_c00026{left:478.933333pt;}
.xe7_c00026{left:480.266667pt;}
.xf5_c00026{left:481.866667pt;}
.xea_c00026{left:482.800000pt;}
.xd7_c00026{left:484.133333pt;}
.x113_c00026{left:485.466667pt;}
.xba_c00026{left:486.533333pt;}
.x11d_c00026{left:487.733333pt;}
.xc7_c00026{left:489.466667pt;}
.xe3_c00026{left:491.200000pt;}
.xfd_c00026{left:492.666667pt;}
.xa0_c00026{left:494.666667pt;}
.x133_c00026{left:495.600000pt;}
.x121_c00026{left:496.666667pt;}
.x106_c00026{left:498.266667pt;}
.x10e_c00026{left:500.400000pt;}
.xb3_c00026{left:501.333333pt;}
.x114_c00026{left:502.400000pt;}
.x128_c00026{left:505.466667pt;}
.xdd_c00026{left:508.400000pt;}
.x137_c00026{left:509.866667pt;}
.xd1_c00026{left:511.200000pt;}
.x11e_c00026{left:513.600000pt;}
.xa1_c00026{left:514.533333pt;}
.xbe_c00026{left:516.000000pt;}
.x117_c00026{left:517.066667pt;}
.xaa_c00026{left:518.666667pt;}
.xb7_c00026{left:519.866667pt;}
.xfe_c00026{left:520.800000pt;}
.xc8_c00026{left:522.800000pt;}
.x130_c00026{left:524.933333pt;}
.xb4_c00026{left:527.866667pt;}
.xd2_c00026{left:529.733333pt;}
.x10f_c00026{left:533.066667pt;}
.xd8_c00026{left:534.000000pt;}
.x11b_c00026{left:535.066667pt;}
.xab_c00026{left:536.933333pt;}
.xc9_c00026{left:539.466667pt;}
.x10c_c00026{left:541.466667pt;}
.xfb_c00026{left:543.333333pt;}
.xf6_c00026{left:544.266667pt;}
.xb8_c00026{left:546.400000pt;}
.x11a_c00026{left:547.600000pt;}
.xde_c00026{left:550.666667pt;}
.xa2_c00026{left:554.266667pt;}
.xeb_c00026{left:556.133333pt;}
.xd3_c00026{left:558.266667pt;}
.xca_c00026{left:560.533333pt;}
.xc3_c00026{left:561.466667pt;}
.xfa_c00026{left:562.666667pt;}
.xa3_c00026{left:563.866667pt;}
.x135_c00026{left:565.866667pt;}
.xac_c00026{left:569.600000pt;}
.xbf_c00026{left:571.333333pt;}
.x107_c00026{left:574.666667pt;}
.xec_c00026{left:576.933333pt;}
.xe4_c00026{left:578.800000pt;}
.xf1_c00026{left:579.733333pt;}
.xa4_c00026{left:582.800000pt;}
.xad_c00026{left:584.666667pt;}
.xb5_c00026{left:587.066667pt;}
.x10d_c00026{left:588.800000pt;}
.xc0_c00026{left:591.200000pt;}
.x10a_c00026{left:593.466667pt;}
.xf2_c00026{left:594.800000pt;}
.x103_c00026{left:600.666667pt;}
.xae_c00026{left:602.000000pt;}
.x110_c00026{left:606.400000pt;}
.xd9_c00026{left:607.866667pt;}
.x108_c00026{left:610.133333pt;}
.xa5_c00026{left:612.266667pt;}
.xed_c00026{left:613.466667pt;}
.x104_c00026{left:615.333333pt;}
.xf7_c00026{left:616.666667pt;}
.xf3_c00026{left:618.800000pt;}
.x125_c00026{left:620.400000pt;}
.xee_c00026{left:621.733333pt;}
.xdf_c00026{left:623.466667pt;}
.xd4_c00026{left:624.533333pt;}
.x115_c00026{left:625.866667pt;}
.xe5_c00026{left:627.066667pt;}
.xff_c00026{left:629.200000pt;}
.xe8_c00026{left:631.466667pt;}
.x12d_c00026{left:633.733333pt;}
.x11f_c00026{left:634.666667pt;}
.xda_c00026{left:636.666667pt;}
.xb9_c00026{left:637.600000pt;}
.xc4_c00026{left:639.200000pt;}
.xef_c00026{left:640.666667pt;}
.x134_c00026{left:641.600000pt;}
.x100_c00026{left:643.600000pt;}
.xa6_c00026{left:644.533333pt;}
.xb6_c00026{left:646.000000pt;}
.xbb_c00026{left:647.466667pt;}
.xf4_c00026{left:653.066667pt;}
.xcb_c00026{left:654.933333pt;}
.xfc_c00026{left:656.266667pt;}
.x129_c00026{left:659.066667pt;}
.x101_c00026{left:660.266667pt;}
.x122_c00026{left:661.866667pt;}
.xa7_c00026{left:662.800000pt;}
.xe0_c00026{left:664.133333pt;}
.xe6_c00026{left:665.066667pt;}
.xc1_c00026{left:666.400000pt;}
.xaf_c00026{left:668.933333pt;}
.xbc_c00026{left:671.200000pt;}
.x120_c00026{left:674.000000pt;}
.x12e_c00026{left:675.333333pt;}
.x118_c00026{left:676.800000pt;}
.x10b_c00026{left:679.600000pt;}
.xdb_c00026{left:681.466667pt;}
.xce_c00026{left:683.333333pt;}
.x131_c00026{left:684.400000pt;}
.xf8_c00026{left:688.133333pt;}
.x2_c00026{left:689.600000pt;}
.xcc_c00026{left:692.666667pt;}
.x116_c00026{left:693.600000pt;}
.x126_c00026{left:695.866667pt;}
}





/* 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_c00027 {
    display:none;
  }
  .loading-indicator_c00027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00027 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_c00027 { 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_c00027" -> "#page-container .classname_c00027")
 */
.pf_c00027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00027 { /* 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_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00027 { /* 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_c00027 { /* 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_c00027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00027 {overflow:visible;}
  }
}
.c_c00027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00027 { /* 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_c00027:after { /* webkit #35443 */
  content: '';
}
.t_c00027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00027 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 */
}
.__c00027 { /* 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_c00027 { /* info for Javascript */
  display:none;
}
.l_c00027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00027: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_c00027 {
    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_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00027.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_c00027 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00027;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.000000;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;}
.maf_c00027{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00027{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00027{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00027{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mca_c00027{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m46_c00027{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md_c00027{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m61_c00027{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m110_c00027{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m14_c00027{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00027{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m84_c00027{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m74_c00027{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m37_c00027{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m86_c00027{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mba_c00027{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00027{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00027{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00027{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00027{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00027{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00027{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.md9_c00027{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m47_c00027{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00027{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m85_c00027{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mde_c00027{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00027{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m81_c00027{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00027{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m69_c00027{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00027{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00027{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m107_c00027{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7_c00027{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m55_c00027{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m83_c00027{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mf_c00027{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m108_c00027{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00027{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00027{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m48_c00027{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m87_c00027{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00027{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00027{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.me8_c00027{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00027{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m100_c00027{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m109_c00027{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00027{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00027{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me4_c00027{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00027{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mea_c00027{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00027{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00027{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m41_c00027{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00027{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00027{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00027{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md4_c00027{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m112_c00027{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m36_c00027{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m35_c00027{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m82_c00027{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00027{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m31_c00027{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md0_c00027{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00027{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00027{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00027{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00027{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00027{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m68_c00027{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m9_c00027{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m30_c00027{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00027{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m96_c00027{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md5_c00027{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6_c00027{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m102_c00027{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00027{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00027{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00027{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00027{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m93_c00027{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m67_c00027{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m62_c00027{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00027{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00027{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mce_c00027{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m66_c00027{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00027{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m88_c00027{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md3_c00027{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m92_c00027{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.maa_c00027{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00027{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00027{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m53_c00027{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma_c00027{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00027{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mda_c00027{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4_c00027{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00027{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00027{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m26_c00027{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m97_c00027{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m63_c00027{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m25_c00027{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mff_c00027{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.me_c00027{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00027{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m105_c00027{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m51_c00027{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00027{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00027{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m11_c00027{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md2_c00027{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m65_c00027{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m29_c00027{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00027{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00027{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m70_c00027{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.meb_c00027{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m80_c00027{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00027{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00027{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00027{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m58_c00027{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00027{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m42_c00027{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m15_c00027{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00027{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.md6_c00027{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00027{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m79_c00027{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00027{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00027{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5_c00027{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m89_c00027{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m57_c00027{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00027{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mab_c00027{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m99_c00027{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mee_c00027{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m10_c00027{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m60_c00027{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00027{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00027{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me0_c00027{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m104_c00027{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m21_c00027{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mb_c00027{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00027{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m50_c00027{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00027{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m27_c00027{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md1_c00027{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m71_c00027{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md7_c00027{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m103_c00027{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me9_c00027{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m28_c00027{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00027{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00027{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m18_c00027{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m38_c00027{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00027{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m16_c00027{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me3_c00027{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m32_c00027{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m106_c00027{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m44_c00027{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m19_c00027{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00027{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m34_c00027{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m17_c00027{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00027{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00027{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m64_c00027{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00027{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m91_c00027{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m22_c00027{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m54_c00027{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00027{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m95_c00027{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m78_c00027{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m94_c00027{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00027{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md8_c00027{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m75_c00027{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00027{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00027{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00027{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m43_c00027{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m77_c00027{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m101_c00027{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00027{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m40_c00027{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m59_c00027{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00027{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00027{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00027{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00027{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m49_c00027{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00027{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00027{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m76_c00027{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00027{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m23_c00027{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00027{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8_c00027{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00027{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m72_c00027{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00027{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00027{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m98_c00027{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00027{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00027{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00027{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m33_c00027{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me7_c00027{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00027{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00027{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00027{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mae_c00027{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mc_c00027{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mec_c00027{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me2_c00027{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00027{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m12_c00027{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me6_c00027{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m52_c00027{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00027{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00027{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m90_c00027{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00027{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mef_c00027{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m20_c00027{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m111_c00027{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mad_c00027{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00027{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m24_c00027{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00027{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m45_c00027{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00027{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00027{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m13_c00027{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.med_c00027{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00027{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00027{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m3_c00027{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me1_c00027{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m56_c00027{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00027{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00027{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00027{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00027{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00027{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.me5_c00027{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00027{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m73_c00027{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00027{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00027{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m39_c00027{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00027{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00027{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00027{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00027{transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00027{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mac_c00027{transform:matrix(5.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.214500,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls0_c00027{letter-spacing:0.000000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{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__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00027{word-spacing:-11.725086px;}
.ws0_c00027{word-spacing:-2.195122px;}
.ws3_c00027{word-spacing:-1.929936px;}
.ws4_c00027{word-spacing:-1.900763px;}
.ws5_c00027{word-spacing:0.000000px;}
.ws2_c00027{word-spacing:1.694656px;}
.fc0_c00027{color:transparent;}
.fs7_c00027{font-size:30.000000px;}
.fs6_c00027{font-size:42.000000px;}
.fs5_c00027{font-size:48.000000px;}
.fs4_c00027{font-size:54.000000px;}
.fs2_c00027{font-size:60.000000px;}
.fs1_c00027{font-size:66.000000px;}
.fs3_c00027{font-size:72.000000px;}
.fs0_c00027{font-size:78.000000px;}
.y0_c00027{bottom:0.000000px;}
.y6e_c00027{bottom:195.750000px;}
.y3b_c00027{bottom:209.850000px;}
.y6d_c00027{bottom:210.900000px;}
.y3a_c00027{bottom:224.250000px;}
.y6c_c00027{bottom:227.850000px;}
.y37_c00027{bottom:229.950000px;}
.y39_c00027{bottom:237.600000px;}
.y6b_c00027{bottom:241.950000px;}
.y36_c00027{bottom:249.450000px;}
.y38_c00027{bottom:250.200000px;}
.y35_c00027{bottom:254.850000px;}
.y6a_c00027{bottom:258.150000px;}
.y69_c00027{bottom:273.600000px;}
.y34_c00027{bottom:280.500000px;}
.y33_c00027{bottom:285.900000px;}
.y68_c00027{bottom:289.050000px;}
.y32_c00027{bottom:289.500000px;}
.y2f_c00027{bottom:291.600000px;}
.y31_c00027{bottom:295.500000px;}
.y67_c00027{bottom:305.250000px;}
.y2e_c00027{bottom:306.000000px;}
.y30_c00027{bottom:309.600000px;}
.y2d_c00027{bottom:320.400000px;}
.y66_c00027{bottom:320.700000px;}
.y2c_c00027{bottom:335.850000px;}
.y65_c00027{bottom:336.600000px;}
.y64_c00027{bottom:351.750000px;}
.y2b_c00027{bottom:364.950000px;}
.y63_c00027{bottom:367.500000px;}
.y62_c00027{bottom:383.400000px;}
.y2a_c00027{bottom:384.000000px;}
.y61_c00027{bottom:398.850000px;}
.y29_c00027{bottom:401.250000px;}
.y60_c00027{bottom:414.750000px;}
.y28_c00027{bottom:417.750000px;}
.y5f_c00027{bottom:430.200000px;}
.y27_c00027{bottom:434.250000px;}
.y5e_c00027{bottom:444.900000px;}
.y26_c00027{bottom:454.350000px;}
.y25_c00027{bottom:474.450000px;}
.y24_c00027{bottom:489.600000px;}
.y5d_c00027{bottom:508.200000px;}
.y23_c00027{bottom:510.900000px;}
.y5c_c00027{bottom:526.200000px;}
.y22_c00027{bottom:527.100000px;}
.y5b_c00027{bottom:543.900000px;}
.y21_c00027{bottom:545.850000px;}
.y5a_c00027{bottom:561.900000px;}
.y20_c00027{bottom:562.800000px;}
.y59_c00027{bottom:579.900000px;}
.y1f_c00027{bottom:583.350000px;}
.y58_c00027{bottom:597.600000px;}
.y1e_c00027{bottom:602.850000px;}
.y1d_c00027{bottom:618.750000px;}
.y57_c00027{bottom:623.700000px;}
.y1c_c00027{bottom:635.250000px;}
.y56_c00027{bottom:641.700000px;}
.y1b_c00027{bottom:656.550000px;}
.y55_c00027{bottom:659.700000px;}
.y1a_c00027{bottom:673.500000px;}
.y54_c00027{bottom:677.700000px;}
.y19_c00027{bottom:691.200000px;}
.y53_c00027{bottom:695.400000px;}
.y18_c00027{bottom:708.900000px;}
.y52_c00027{bottom:713.400000px;}
.y51_c00027{bottom:731.100000px;}
.y17_c00027{bottom:731.250000px;}
.y16_c00027{bottom:748.500000px;}
.y50_c00027{bottom:749.100000px;}
.y4f_c00027{bottom:767.100000px;}
.y15_c00027{bottom:770.400000px;}
.y14_c00027{bottom:788.100000px;}
.y4e_c00027{bottom:792.750000px;}
.y13_c00027{bottom:809.550000px;}
.y4d_c00027{bottom:810.750000px;}
.y12_c00027{bottom:827.250000px;}
.y4c_c00027{bottom:829.050000px;}
.y4b_c00027{bottom:846.750000px;}
.y11_c00027{bottom:848.850000px;}
.y4a_c00027{bottom:864.450000px;}
.y10_c00027{bottom:865.800000px;}
.y49_c00027{bottom:882.450000px;}
.yf_c00027{bottom:887.700000px;}
.y48_c00027{bottom:900.450000px;}
.ye_c00027{bottom:905.700000px;}
.y47_c00027{bottom:918.150000px;}
.yd_c00027{bottom:922.950000px;}
.y46_c00027{bottom:935.850000px;}
.yc_c00027{bottom:940.200000px;}
.y45_c00027{bottom:953.850000px;}
.yb_c00027{bottom:957.900000px;}
.y44_c00027{bottom:971.850000px;}
.ya_c00027{bottom:975.600000px;}
.y43_c00027{bottom:989.850000px;}
.y9_c00027{bottom:996.600000px;}
.y42_c00027{bottom:1007.550000px;}
.y8_c00027{bottom:1014.300000px;}
.y41_c00027{bottom:1025.550000px;}
.y7_c00027{bottom:1032.300000px;}
.y40_c00027{bottom:1043.250000px;}
.y6_c00027{bottom:1050.300000px;}
.y5_c00027{bottom:1068.000000px;}
.y3f_c00027{bottom:1069.500000px;}
.y4_c00027{bottom:1085.700000px;}
.y3e_c00027{bottom:1087.500000px;}
.y3_c00027{bottom:1104.000000px;}
.y3d_c00027{bottom:1105.200000px;}
.y2_c00027{bottom:1121.700000px;}
.y3c_c00027{bottom:1123.200000px;}
.y1_c00027{bottom:1148.400000px;}
.h8_c00027{height:30.000000px;}
.h7_c00027{height:42.000000px;}
.h6_c00027{height:48.000000px;}
.h5_c00027{height:54.000000px;}
.h3_c00027{height:60.000000px;}
.h2_c00027{height:66.000000px;}
.h4_c00027{height:72.000000px;}
.h1_c00027{height:78.000000px;}
.h0_c00027{height:1278.000000px;}
.w0_c00027{width:948.600036px;}
.w1_c00027{width:948.750000px;}
.x0_c00027{left:0.000000px;}
.xac_c00027{left:148.650000px;}
.x9f_c00027{left:152.850000px;}
.x75_c00027{left:153.900000px;}
.x1_c00027{left:156.300000px;}
.x3b_c00027{left:158.400000px;}
.x50_c00027{left:159.600000px;}
.xa5_c00027{left:164.400000px;}
.x8f_c00027{left:165.600000px;}
.x7b_c00027{left:174.450000px;}
.x33_c00027{left:177.450000px;}
.xa_c00027{left:180.450000px;}
.xad_c00027{left:182.850000px;}
.x12_c00027{left:183.900000px;}
.x6f_c00027{left:186.450000px;}
.x60_c00027{left:187.950000px;}
.x5c_c00027{left:189.300000px;}
.x3_c00027{left:191.100000px;}
.x4b_c00027{left:193.950000px;}
.x90_c00027{left:197.250000px;}
.x9a_c00027{left:198.300000px;}
.xa0_c00027{left:199.350000px;}
.x93_c00027{left:201.600000px;}
.x19_c00027{left:202.650000px;}
.x57_c00027{left:204.000000px;}
.x6b_c00027{left:205.500000px;}
.x13_c00027{left:206.550000px;}
.x61_c00027{left:208.500000px;}
.x70_c00027{left:211.350000px;}
.xb_c00027{left:213.150000px;}
.x3c_c00027{left:214.500000px;}
.x51_c00027{left:216.450000px;}
.x78_c00027{left:217.800000px;}
.x8c_c00027{left:220.800000px;}
.x41_c00027{left:223.350000px;}
.xae_c00027{left:226.350000px;}
.x59_c00027{left:227.850000px;}
.x7f_c00027{left:229.350000px;}
.x1e_c00027{left:231.000000px;}
.x66_c00027{left:233.250000px;}
.x29_c00027{left:234.750000px;}
.x2e_c00027{left:236.100000px;}
.x5a_c00027{left:237.150000px;}
.x62_c00027{left:239.400000px;}
.xa8_c00027{left:240.750000px;}
.x3d_c00027{left:242.250000px;}
.x4_c00027{left:244.050000px;}
.x23_c00027{left:245.850000px;}
.x4c_c00027{left:246.900000px;}
.x94_c00027{left:248.400000px;}
.x84_c00027{left:249.750000px;}
.x67_c00027{left:251.250000px;}
.x34_c00027{left:254.550000px;}
.x45_c00027{left:255.600000px;}
.x97_c00027{left:257.700000px;}
.x2f_c00027{left:259.500000px;}
.x1a_c00027{left:260.550000px;}
.x1f_c00027{left:262.650000px;}
.x89_c00027{left:266.850000px;}
.xaf_c00027{left:268.800000px;}
.x46_c00027{left:270.000000px;}
.x14_c00027{left:271.350000px;}
.xb0_c00027{left:273.300000px;}
.x9b_c00027{left:275.250000px;}
.x24_c00027{left:276.750000px;}
.xa7_c00027{left:278.250000px;}
.x35_c00027{left:279.450000px;}
.xb1_c00027{left:280.500000px;}
.x15_c00027{left:283.650000px;}
.x1b_c00027{left:284.700000px;}
.x85_c00027{left:285.750000px;}
.xc_c00027{left:287.700000px;}
.x2a_c00027{left:290.250000px;}
.x42_c00027{left:291.300000px;}
.x9c_c00027{left:293.550000px;}
.x5_c00027{left:295.950000px;}
.x69_c00027{left:297.000000px;}
.x52_c00027{left:298.200000px;}
.x25_c00027{left:301.200000px;}
.x4d_c00027{left:303.150000px;}
.x30_c00027{left:304.800000px;}
.x68_c00027{left:306.600000px;}
.x9d_c00027{left:308.250000px;}
.xd_c00027{left:309.600000px;}
.x95_c00027{left:310.650000px;}
.x7c_c00027{left:312.750000px;}
.x6c_c00027{left:314.850000px;}
.x6_c00027{left:316.500000px;}
.xa3_c00027{left:318.000000px;}
.x58_c00027{left:319.500000px;}
.x98_c00027{left:320.700000px;}
.x3e_c00027{left:323.250000px;}
.x53_c00027{left:325.500000px;}
.x4e_c00027{left:326.550000px;}
.x31_c00027{left:327.750000px;}
.x47_c00027{left:333.300000px;}
.x36_c00027{left:334.500000px;}
.x54_c00027{left:336.000000px;}
.x86_c00027{left:338.550000px;}
.x3f_c00027{left:340.500000px;}
.x20_c00027{left:342.150000px;}
.x5d_c00027{left:343.350000px;}
.x16_c00027{left:344.400000px;}
.x26_c00027{left:346.500000px;}
.x32_c00027{left:347.850000px;}
.x80_c00027{left:349.200000px;}
.x63_c00027{left:351.750000px;}
.x7_c00027{left:354.000000px;}
.x7d_c00027{left:355.350000px;}
.x37_c00027{left:356.400000px;}
.x48_c00027{left:358.200000px;}
.x2b_c00027{left:361.200000px;}
.x76_c00027{left:362.400000px;}
.x21_c00027{left:364.050000px;}
.x79_c00027{left:366.300000px;}
.x55_c00027{left:368.700000px;}
.xaa_c00027{left:369.750000px;}
.x91_c00027{left:370.800000px;}
.x43_c00027{left:372.300000px;}
.xe_c00027{left:373.650000px;}
.x38_c00027{left:375.150000px;}
.x27_c00027{left:377.400000px;}
.x96_c00027{left:379.050000px;}
.x92_c00027{left:380.100000px;}
.xf_c00027{left:382.950000px;}
.x6d_c00027{left:384.000000px;}
.x87_c00027{left:387.450000px;}
.x8_c00027{left:389.700000px;}
.x6e_c00027{left:391.500000px;}
.x64_c00027{left:393.450000px;}
.x99_c00027{left:394.500000px;}
.xa9_c00027{left:396.600000px;}
.x2_c00027{left:399.000000px;}
.xa6_c00027{left:403.950000px;}
.x88_c00027{left:406.200000px;}
.x22_c00027{left:409.350000px;}
.x4f_c00027{left:411.150000px;}
.x9_c00027{left:412.350000px;}
.x40_c00027{left:414.600000px;}
.x10_c00027{left:416.100000px;}
.x65_c00027{left:417.150000px;}
.x17_c00027{left:418.950000px;}
.x81_c00027{left:420.000000px;}
.x7e_c00027{left:421.200000px;}
.x1c_c00027{left:424.500000px;}
.x8a_c00027{left:426.300000px;}
.x5e_c00027{left:429.150000px;}
.x73_c00027{left:430.800000px;}
.xa4_c00027{left:432.450000px;}
.x5b_c00027{left:433.650000px;}
.x11_c00027{left:437.400000px;}
.xa1_c00027{left:438.450000px;}
.xab_c00027{left:440.250000px;}
.x2c_c00027{left:442.800000px;}
.x8b_c00027{left:444.300000px;}
.x8d_c00027{left:445.800000px;}
.x6a_c00027{left:448.500000px;}
.x49_c00027{left:450.000000px;}
.x71_c00027{left:451.650000px;}
.x18_c00027{left:453.150000px;}
.x39_c00027{left:454.650000px;}
.x28_c00027{left:456.900000px;}
.x56_c00027{left:458.250000px;}
.x82_c00027{left:460.200000px;}
.x5f_c00027{left:461.550000px;}
.x72_c00027{left:464.250000px;}
.x3a_c00027{left:465.450000px;}
.x2d_c00027{left:466.500000px;}
.x4a_c00027{left:470.550000px;}
.x1d_c00027{left:473.400000px;}
.x44_c00027{left:474.450000px;}
.xa2_c00027{left:475.650000px;}
.x77_c00027{left:478.800000px;}
.x83_c00027{left:480.750000px;}
.x74_c00027{left:483.300000px;}
.x7a_c00027{left:484.350000px;}
.x8e_c00027{left:485.700000px;}
.x9e_c00027{left:490.500000px;}
.xb2_c00027{left:514.050000px;}
.x100_c00027{left:515.100000px;}
.x134_c00027{left:516.150000px;}
.x14e_c00027{left:517.350000px;}
.xcf_c00027{left:531.750000px;}
.x141_c00027{left:532.800000px;}
.xb3_c00027{left:534.150000px;}
.x10a_c00027{left:536.100000px;}
.xcb_c00027{left:537.750000px;}
.x135_c00027{left:540.300000px;}
.x12e_c00027{left:541.650000px;}
.xc5_c00027{left:544.200000px;}
.x11b_c00027{left:545.850000px;}
.xbe_c00027{left:548.700000px;}
.x13a_c00027{left:550.200000px;}
.x11f_c00027{left:551.250000px;}
.x127_c00027{left:552.300000px;}
.x13f_c00027{left:553.650000px;}
.xe7_c00027{left:555.900000px;}
.xd8_c00027{left:558.150000px;}
.x14f_c00027{left:559.800000px;}
.xd0_c00027{left:560.850000px;}
.x142_c00027{left:562.350000px;}
.x10f_c00027{left:563.400000px;}
.x148_c00027{left:565.200000px;}
.xf0_c00027{left:568.050000px;}
.x105_c00027{left:572.400000px;}
.xdd_c00027{left:573.900000px;}
.x136_c00027{left:576.000000px;}
.xe2_c00027{left:579.000000px;}
.x140_c00027{left:581.100000px;}
.xe8_c00027{left:582.600000px;}
.xb4_c00027{left:584.250000px;}
.xde_c00027{left:585.450000px;}
.x101_c00027{left:587.850000px;}
.x143_c00027{left:589.350000px;}
.x145_c00027{left:590.850000px;}
.xbf_c00027{left:592.650000px;}
.xfc_c00027{left:594.450000px;}
.x14c_c00027{left:595.500000px;}
.x106_c00027{left:597.300000px;}
.x118_c00027{left:599.100000px;}
.xf1_c00027{left:601.500000px;}
.xd1_c00027{left:604.800000px;}
.xb5_c00027{left:606.900000px;}
.xfa_c00027{left:608.100000px;}
.x114_c00027{left:609.900000px;}
.xcc_c00027{left:611.550000px;}
.xf5_c00027{left:615.450000px;}
.xe3_c00027{left:617.550000px;}
.x13b_c00027{left:622.200000px;}
.xfd_c00027{left:624.750000px;}
.xd9_c00027{left:626.250000px;}
.x12c_c00027{left:629.850000px;}
.xc6_c00027{left:630.900000px;}
.x128_c00027{left:632.100000px;}
.x146_c00027{left:636.900000px;}
.xd2_c00027{left:638.700000px;}
.xc7_c00027{left:640.650000px;}
.xdf_c00027{left:642.750000px;}
.x144_c00027{left:644.250000px;}
.xc0_c00027{left:646.350000px;}
.x126_c00027{left:647.700000px;}
.xe9_c00027{left:649.200000px;}
.xda_c00027{left:650.700000px;}
.x107_c00027{left:653.850000px;}
.xb6_c00027{left:655.800000px;}
.x137_c00027{left:657.750000px;}
.x110_c00027{left:659.400000px;}
.xf2_c00027{left:665.550000px;}
.xec_c00027{left:669.900000px;}
.xd3_c00027{left:671.100000px;}
.x102_c00027{left:672.750000px;}
.xdb_c00027{left:674.100000px;}
.xc1_c00027{left:675.150000px;}
.xf3_c00027{left:676.350000px;}
.x10b_c00027{left:678.000000px;}
.xb7_c00027{left:679.500000px;}
.xe4_c00027{left:681.600000px;}
.x108_c00027{left:684.150000px;}
.xcd_c00027{left:687.900000px;}
.xb8_c00027{left:692.400000px;}
.xd4_c00027{left:693.450000px;}
.x122_c00027{left:695.400000px;}
.xf6_c00027{left:697.950000px;}
.x147_c00027{left:700.200000px;}
.xe5_c00027{left:701.400000px;}
.xed_c00027{left:704.100000px;}
.x129_c00027{left:706.950000px;}
.xf4_c00027{left:708.000000px;}
.xfe_c00027{left:709.350000px;}
.xc8_c00027{left:712.350000px;}
.x10c_c00027{left:714.300000px;}
.x119_c00027{left:715.350000px;}
.xc2_c00027{left:716.550000px;}
.x120_c00027{left:717.900000px;}
.x149_c00027{left:720.150000px;}
.xfb_c00027{left:721.500000px;}
.x111_c00027{left:722.700000px;}
.x11c_c00027{left:723.900000px;}
.x10d_c00027{left:725.700000px;}
.xf7_c00027{left:727.050000px;}
.x14d_c00027{left:728.850000px;}
.x123_c00027{left:730.950000px;}
.x131_c00027{left:733.650000px;}
.x12f_c00027{left:734.850000px;}
.xe6_c00027{left:736.350000px;}
.x115_c00027{left:737.400000px;}
.xd5_c00027{left:739.500000px;}
.xff_c00027{left:740.700000px;}
.x112_c00027{left:742.800000px;}
.xe0_c00027{left:743.850000px;}
.x103_c00027{left:745.050000px;}
.x116_c00027{left:746.700000px;}
.xb9_c00027{left:750.750000px;}
.x132_c00027{left:754.200000px;}
.x11d_c00027{left:756.300000px;}
.xdc_c00027{left:761.550000px;}
.x138_c00027{left:764.100000px;}
.xba_c00027{left:765.450000px;}
.xce_c00027{left:767.100000px;}
.xf8_c00027{left:769.500000px;}
.x12d_c00027{left:770.550000px;}
.x11e_c00027{left:771.750000px;}
.x10e_c00027{left:772.800000px;}
.xc3_c00027{left:773.850000px;}
.x12b_c00027{left:775.800000px;}
.xea_c00027{left:778.050000px;}
.x109_c00027{left:779.100000px;}
.x130_c00027{left:780.600000px;}
.x104_c00027{left:783.150000px;}
.x12a_c00027{left:785.550000px;}
.x121_c00027{left:786.600000px;}
.x139_c00027{left:792.150000px;}
.xd6_c00027{left:793.200000px;}
.xee_c00027{left:797.400000px;}
.xbb_c00027{left:798.900000px;}
.x117_c00027{left:802.950000px;}
.xc9_c00027{left:804.150000px;}
.x124_c00027{left:805.800000px;}
.x13c_c00027{left:809.400000px;}
.x133_c00027{left:813.150000px;}
.xc4_c00027{left:814.200000px;}
.xef_c00027{left:815.700000px;}
.x13d_c00027{left:817.350000px;}
.x14a_c00027{left:820.500000px;}
.xca_c00027{left:822.450000px;}
.xbc_c00027{left:824.400000px;}
.x125_c00027{left:828.450000px;}
.x113_c00027{left:832.050000px;}
.x13e_c00027{left:833.550000px;}
.xf9_c00027{left:835.350000px;}
.xd7_c00027{left:836.400000px;}
.x14b_c00027{left:837.450000px;}
.xeb_c00027{left:838.500000px;}
.x11a_c00027{left:840.300000px;}
.xbd_c00027{left:844.950000px;}
.xe1_c00027{left:848.250000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws1_c00027{word-spacing:-10.422299pt;}
.ws0_c00027{word-spacing:-1.951220pt;}
.ws3_c00027{word-spacing:-1.715499pt;}
.ws4_c00027{word-spacing:-1.689567pt;}
.ws5_c00027{word-spacing:0.000000pt;}
.ws2_c00027{word-spacing:1.506361pt;}
.fs7_c00027{font-size:26.666667pt;}
.fs6_c00027{font-size:37.333333pt;}
.fs5_c00027{font-size:42.666667pt;}
.fs4_c00027{font-size:48.000000pt;}
.fs2_c00027{font-size:53.333333pt;}
.fs1_c00027{font-size:58.666667pt;}
.fs3_c00027{font-size:64.000000pt;}
.fs0_c00027{font-size:69.333333pt;}
.y0_c00027{bottom:0.000000pt;}
.y6e_c00027{bottom:174.000000pt;}
.y3b_c00027{bottom:186.533333pt;}
.y6d_c00027{bottom:187.466667pt;}
.y3a_c00027{bottom:199.333333pt;}
.y6c_c00027{bottom:202.533333pt;}
.y37_c00027{bottom:204.400000pt;}
.y39_c00027{bottom:211.200000pt;}
.y6b_c00027{bottom:215.066667pt;}
.y36_c00027{bottom:221.733333pt;}
.y38_c00027{bottom:222.400000pt;}
.y35_c00027{bottom:226.533333pt;}
.y6a_c00027{bottom:229.466667pt;}
.y69_c00027{bottom:243.200000pt;}
.y34_c00027{bottom:249.333333pt;}
.y33_c00027{bottom:254.133333pt;}
.y68_c00027{bottom:256.933333pt;}
.y32_c00027{bottom:257.333333pt;}
.y2f_c00027{bottom:259.200000pt;}
.y31_c00027{bottom:262.666667pt;}
.y67_c00027{bottom:271.333333pt;}
.y2e_c00027{bottom:272.000000pt;}
.y30_c00027{bottom:275.200000pt;}
.y2d_c00027{bottom:284.800000pt;}
.y66_c00027{bottom:285.066667pt;}
.y2c_c00027{bottom:298.533333pt;}
.y65_c00027{bottom:299.200000pt;}
.y64_c00027{bottom:312.666667pt;}
.y2b_c00027{bottom:324.400000pt;}
.y63_c00027{bottom:326.666667pt;}
.y62_c00027{bottom:340.800000pt;}
.y2a_c00027{bottom:341.333333pt;}
.y61_c00027{bottom:354.533333pt;}
.y29_c00027{bottom:356.666667pt;}
.y60_c00027{bottom:368.666667pt;}
.y28_c00027{bottom:371.333333pt;}
.y5f_c00027{bottom:382.400000pt;}
.y27_c00027{bottom:386.000000pt;}
.y5e_c00027{bottom:395.466667pt;}
.y26_c00027{bottom:403.866667pt;}
.y25_c00027{bottom:421.733333pt;}
.y24_c00027{bottom:435.200000pt;}
.y5d_c00027{bottom:451.733333pt;}
.y23_c00027{bottom:454.133333pt;}
.y5c_c00027{bottom:467.733333pt;}
.y22_c00027{bottom:468.533333pt;}
.y5b_c00027{bottom:483.466667pt;}
.y21_c00027{bottom:485.200000pt;}
.y5a_c00027{bottom:499.466667pt;}
.y20_c00027{bottom:500.266667pt;}
.y59_c00027{bottom:515.466667pt;}
.y1f_c00027{bottom:518.533333pt;}
.y58_c00027{bottom:531.200000pt;}
.y1e_c00027{bottom:535.866667pt;}
.y1d_c00027{bottom:550.000000pt;}
.y57_c00027{bottom:554.400000pt;}
.y1c_c00027{bottom:564.666667pt;}
.y56_c00027{bottom:570.400000pt;}
.y1b_c00027{bottom:583.600000pt;}
.y55_c00027{bottom:586.400000pt;}
.y1a_c00027{bottom:598.666667pt;}
.y54_c00027{bottom:602.400000pt;}
.y19_c00027{bottom:614.400000pt;}
.y53_c00027{bottom:618.133333pt;}
.y18_c00027{bottom:630.133333pt;}
.y52_c00027{bottom:634.133333pt;}
.y51_c00027{bottom:649.866667pt;}
.y17_c00027{bottom:650.000000pt;}
.y16_c00027{bottom:665.333333pt;}
.y50_c00027{bottom:665.866667pt;}
.y4f_c00027{bottom:681.866667pt;}
.y15_c00027{bottom:684.800000pt;}
.y14_c00027{bottom:700.533333pt;}
.y4e_c00027{bottom:704.666667pt;}
.y13_c00027{bottom:719.600000pt;}
.y4d_c00027{bottom:720.666667pt;}
.y12_c00027{bottom:735.333333pt;}
.y4c_c00027{bottom:736.933333pt;}
.y4b_c00027{bottom:752.666667pt;}
.y11_c00027{bottom:754.533333pt;}
.y4a_c00027{bottom:768.400000pt;}
.y10_c00027{bottom:769.600000pt;}
.y49_c00027{bottom:784.400000pt;}
.yf_c00027{bottom:789.066667pt;}
.y48_c00027{bottom:800.400000pt;}
.ye_c00027{bottom:805.066667pt;}
.y47_c00027{bottom:816.133333pt;}
.yd_c00027{bottom:820.400000pt;}
.y46_c00027{bottom:831.866667pt;}
.yc_c00027{bottom:835.733333pt;}
.y45_c00027{bottom:847.866667pt;}
.yb_c00027{bottom:851.466667pt;}
.y44_c00027{bottom:863.866667pt;}
.ya_c00027{bottom:867.200000pt;}
.y43_c00027{bottom:879.866667pt;}
.y9_c00027{bottom:885.866667pt;}
.y42_c00027{bottom:895.600000pt;}
.y8_c00027{bottom:901.600000pt;}
.y41_c00027{bottom:911.600000pt;}
.y7_c00027{bottom:917.600000pt;}
.y40_c00027{bottom:927.333333pt;}
.y6_c00027{bottom:933.600000pt;}
.y5_c00027{bottom:949.333333pt;}
.y3f_c00027{bottom:950.666667pt;}
.y4_c00027{bottom:965.066667pt;}
.y3e_c00027{bottom:966.666667pt;}
.y3_c00027{bottom:981.333333pt;}
.y3d_c00027{bottom:982.400000pt;}
.y2_c00027{bottom:997.066667pt;}
.y3c_c00027{bottom:998.400000pt;}
.y1_c00027{bottom:1020.800000pt;}
.h8_c00027{height:26.666667pt;}
.h7_c00027{height:37.333333pt;}
.h6_c00027{height:42.666667pt;}
.h5_c00027{height:48.000000pt;}
.h3_c00027{height:53.333333pt;}
.h2_c00027{height:58.666667pt;}
.h4_c00027{height:64.000000pt;}
.h1_c00027{height:69.333333pt;}
.h0_c00027{height:1136.000000pt;}
.w0_c00027{width:843.200032pt;}
.w1_c00027{width:843.333333pt;}
.x0_c00027{left:0.000000pt;}
.xac_c00027{left:132.133333pt;}
.x9f_c00027{left:135.866667pt;}
.x75_c00027{left:136.800000pt;}
.x1_c00027{left:138.933333pt;}
.x3b_c00027{left:140.800000pt;}
.x50_c00027{left:141.866667pt;}
.xa5_c00027{left:146.133333pt;}
.x8f_c00027{left:147.200000pt;}
.x7b_c00027{left:155.066667pt;}
.x33_c00027{left:157.733333pt;}
.xa_c00027{left:160.400000pt;}
.xad_c00027{left:162.533333pt;}
.x12_c00027{left:163.466667pt;}
.x6f_c00027{left:165.733333pt;}
.x60_c00027{left:167.066667pt;}
.x5c_c00027{left:168.266667pt;}
.x3_c00027{left:169.866667pt;}
.x4b_c00027{left:172.400000pt;}
.x90_c00027{left:175.333333pt;}
.x9a_c00027{left:176.266667pt;}
.xa0_c00027{left:177.200000pt;}
.x93_c00027{left:179.200000pt;}
.x19_c00027{left:180.133333pt;}
.x57_c00027{left:181.333333pt;}
.x6b_c00027{left:182.666667pt;}
.x13_c00027{left:183.600000pt;}
.x61_c00027{left:185.333333pt;}
.x70_c00027{left:187.866667pt;}
.xb_c00027{left:189.466667pt;}
.x3c_c00027{left:190.666667pt;}
.x51_c00027{left:192.400000pt;}
.x78_c00027{left:193.600000pt;}
.x8c_c00027{left:196.266667pt;}
.x41_c00027{left:198.533333pt;}
.xae_c00027{left:201.200000pt;}
.x59_c00027{left:202.533333pt;}
.x7f_c00027{left:203.866667pt;}
.x1e_c00027{left:205.333333pt;}
.x66_c00027{left:207.333333pt;}
.x29_c00027{left:208.666667pt;}
.x2e_c00027{left:209.866667pt;}
.x5a_c00027{left:210.800000pt;}
.x62_c00027{left:212.800000pt;}
.xa8_c00027{left:214.000000pt;}
.x3d_c00027{left:215.333333pt;}
.x4_c00027{left:216.933333pt;}
.x23_c00027{left:218.533333pt;}
.x4c_c00027{left:219.466667pt;}
.x94_c00027{left:220.800000pt;}
.x84_c00027{left:222.000000pt;}
.x67_c00027{left:223.333333pt;}
.x34_c00027{left:226.266667pt;}
.x45_c00027{left:227.200000pt;}
.x97_c00027{left:229.066667pt;}
.x2f_c00027{left:230.666667pt;}
.x1a_c00027{left:231.600000pt;}
.x1f_c00027{left:233.466667pt;}
.x89_c00027{left:237.200000pt;}
.xaf_c00027{left:238.933333pt;}
.x46_c00027{left:240.000000pt;}
.x14_c00027{left:241.200000pt;}
.xb0_c00027{left:242.933333pt;}
.x9b_c00027{left:244.666667pt;}
.x24_c00027{left:246.000000pt;}
.xa7_c00027{left:247.333333pt;}
.x35_c00027{left:248.400000pt;}
.xb1_c00027{left:249.333333pt;}
.x15_c00027{left:252.133333pt;}
.x1b_c00027{left:253.066667pt;}
.x85_c00027{left:254.000000pt;}
.xc_c00027{left:255.733333pt;}
.x2a_c00027{left:258.000000pt;}
.x42_c00027{left:258.933333pt;}
.x9c_c00027{left:260.933333pt;}
.x5_c00027{left:263.066667pt;}
.x69_c00027{left:264.000000pt;}
.x52_c00027{left:265.066667pt;}
.x25_c00027{left:267.733333pt;}
.x4d_c00027{left:269.466667pt;}
.x30_c00027{left:270.933333pt;}
.x68_c00027{left:272.533333pt;}
.x9d_c00027{left:274.000000pt;}
.xd_c00027{left:275.200000pt;}
.x95_c00027{left:276.133333pt;}
.x7c_c00027{left:278.000000pt;}
.x6c_c00027{left:279.866667pt;}
.x6_c00027{left:281.333333pt;}
.xa3_c00027{left:282.666667pt;}
.x58_c00027{left:284.000000pt;}
.x98_c00027{left:285.066667pt;}
.x3e_c00027{left:287.333333pt;}
.x53_c00027{left:289.333333pt;}
.x4e_c00027{left:290.266667pt;}
.x31_c00027{left:291.333333pt;}
.x47_c00027{left:296.266667pt;}
.x36_c00027{left:297.333333pt;}
.x54_c00027{left:298.666667pt;}
.x86_c00027{left:300.933333pt;}
.x3f_c00027{left:302.666667pt;}
.x20_c00027{left:304.133333pt;}
.x5d_c00027{left:305.200000pt;}
.x16_c00027{left:306.133333pt;}
.x26_c00027{left:308.000000pt;}
.x32_c00027{left:309.200000pt;}
.x80_c00027{left:310.400000pt;}
.x63_c00027{left:312.666667pt;}
.x7_c00027{left:314.666667pt;}
.x7d_c00027{left:315.866667pt;}
.x37_c00027{left:316.800000pt;}
.x48_c00027{left:318.400000pt;}
.x2b_c00027{left:321.066667pt;}
.x76_c00027{left:322.133333pt;}
.x21_c00027{left:323.600000pt;}
.x79_c00027{left:325.600000pt;}
.x55_c00027{left:327.733333pt;}
.xaa_c00027{left:328.666667pt;}
.x91_c00027{left:329.600000pt;}
.x43_c00027{left:330.933333pt;}
.xe_c00027{left:332.133333pt;}
.x38_c00027{left:333.466667pt;}
.x27_c00027{left:335.466667pt;}
.x96_c00027{left:336.933333pt;}
.x92_c00027{left:337.866667pt;}
.xf_c00027{left:340.400000pt;}
.x6d_c00027{left:341.333333pt;}
.x87_c00027{left:344.400000pt;}
.x8_c00027{left:346.400000pt;}
.x6e_c00027{left:348.000000pt;}
.x64_c00027{left:349.733333pt;}
.x99_c00027{left:350.666667pt;}
.xa9_c00027{left:352.533333pt;}
.x2_c00027{left:354.666667pt;}
.xa6_c00027{left:359.066667pt;}
.x88_c00027{left:361.066667pt;}
.x22_c00027{left:363.866667pt;}
.x4f_c00027{left:365.466667pt;}
.x9_c00027{left:366.533333pt;}
.x40_c00027{left:368.533333pt;}
.x10_c00027{left:369.866667pt;}
.x65_c00027{left:370.800000pt;}
.x17_c00027{left:372.400000pt;}
.x81_c00027{left:373.333333pt;}
.x7e_c00027{left:374.400000pt;}
.x1c_c00027{left:377.333333pt;}
.x8a_c00027{left:378.933333pt;}
.x5e_c00027{left:381.466667pt;}
.x73_c00027{left:382.933333pt;}
.xa4_c00027{left:384.400000pt;}
.x5b_c00027{left:385.466667pt;}
.x11_c00027{left:388.800000pt;}
.xa1_c00027{left:389.733333pt;}
.xab_c00027{left:391.333333pt;}
.x2c_c00027{left:393.600000pt;}
.x8b_c00027{left:394.933333pt;}
.x8d_c00027{left:396.266667pt;}
.x6a_c00027{left:398.666667pt;}
.x49_c00027{left:400.000000pt;}
.x71_c00027{left:401.466667pt;}
.x18_c00027{left:402.800000pt;}
.x39_c00027{left:404.133333pt;}
.x28_c00027{left:406.133333pt;}
.x56_c00027{left:407.333333pt;}
.x82_c00027{left:409.066667pt;}
.x5f_c00027{left:410.266667pt;}
.x72_c00027{left:412.666667pt;}
.x3a_c00027{left:413.733333pt;}
.x2d_c00027{left:414.666667pt;}
.x4a_c00027{left:418.266667pt;}
.x1d_c00027{left:420.800000pt;}
.x44_c00027{left:421.733333pt;}
.xa2_c00027{left:422.800000pt;}
.x77_c00027{left:425.600000pt;}
.x83_c00027{left:427.333333pt;}
.x74_c00027{left:429.600000pt;}
.x7a_c00027{left:430.533333pt;}
.x8e_c00027{left:431.733333pt;}
.x9e_c00027{left:436.000000pt;}
.xb2_c00027{left:456.933333pt;}
.x100_c00027{left:457.866667pt;}
.x134_c00027{left:458.800000pt;}
.x14e_c00027{left:459.866667pt;}
.xcf_c00027{left:472.666667pt;}
.x141_c00027{left:473.600000pt;}
.xb3_c00027{left:474.800000pt;}
.x10a_c00027{left:476.533333pt;}
.xcb_c00027{left:478.000000pt;}
.x135_c00027{left:480.266667pt;}
.x12e_c00027{left:481.466667pt;}
.xc5_c00027{left:483.733333pt;}
.x11b_c00027{left:485.200000pt;}
.xbe_c00027{left:487.733333pt;}
.x13a_c00027{left:489.066667pt;}
.x11f_c00027{left:490.000000pt;}
.x127_c00027{left:490.933333pt;}
.x13f_c00027{left:492.133333pt;}
.xe7_c00027{left:494.133333pt;}
.xd8_c00027{left:496.133333pt;}
.x14f_c00027{left:497.600000pt;}
.xd0_c00027{left:498.533333pt;}
.x142_c00027{left:499.866667pt;}
.x10f_c00027{left:500.800000pt;}
.x148_c00027{left:502.400000pt;}
.xf0_c00027{left:504.933333pt;}
.x105_c00027{left:508.800000pt;}
.xdd_c00027{left:510.133333pt;}
.x136_c00027{left:512.000000pt;}
.xe2_c00027{left:514.666667pt;}
.x140_c00027{left:516.533333pt;}
.xe8_c00027{left:517.866667pt;}
.xb4_c00027{left:519.333333pt;}
.xde_c00027{left:520.400000pt;}
.x101_c00027{left:522.533333pt;}
.x143_c00027{left:523.866667pt;}
.x145_c00027{left:525.200000pt;}
.xbf_c00027{left:526.800000pt;}
.xfc_c00027{left:528.400000pt;}
.x14c_c00027{left:529.333333pt;}
.x106_c00027{left:530.933333pt;}
.x118_c00027{left:532.533333pt;}
.xf1_c00027{left:534.666667pt;}
.xd1_c00027{left:537.600000pt;}
.xb5_c00027{left:539.466667pt;}
.xfa_c00027{left:540.533333pt;}
.x114_c00027{left:542.133333pt;}
.xcc_c00027{left:543.600000pt;}
.xf5_c00027{left:547.066667pt;}
.xe3_c00027{left:548.933333pt;}
.x13b_c00027{left:553.066667pt;}
.xfd_c00027{left:555.333333pt;}
.xd9_c00027{left:556.666667pt;}
.x12c_c00027{left:559.866667pt;}
.xc6_c00027{left:560.800000pt;}
.x128_c00027{left:561.866667pt;}
.x146_c00027{left:566.133333pt;}
.xd2_c00027{left:567.733333pt;}
.xc7_c00027{left:569.466667pt;}
.xdf_c00027{left:571.333333pt;}
.x144_c00027{left:572.666667pt;}
.xc0_c00027{left:574.533333pt;}
.x126_c00027{left:575.733333pt;}
.xe9_c00027{left:577.066667pt;}
.xda_c00027{left:578.400000pt;}
.x107_c00027{left:581.200000pt;}
.xb6_c00027{left:582.933333pt;}
.x137_c00027{left:584.666667pt;}
.x110_c00027{left:586.133333pt;}
.xf2_c00027{left:591.600000pt;}
.xec_c00027{left:595.466667pt;}
.xd3_c00027{left:596.533333pt;}
.x102_c00027{left:598.000000pt;}
.xdb_c00027{left:599.200000pt;}
.xc1_c00027{left:600.133333pt;}
.xf3_c00027{left:601.200000pt;}
.x10b_c00027{left:602.666667pt;}
.xb7_c00027{left:604.000000pt;}
.xe4_c00027{left:605.866667pt;}
.x108_c00027{left:608.133333pt;}
.xcd_c00027{left:611.466667pt;}
.xb8_c00027{left:615.466667pt;}
.xd4_c00027{left:616.400000pt;}
.x122_c00027{left:618.133333pt;}
.xf6_c00027{left:620.400000pt;}
.x147_c00027{left:622.400000pt;}
.xe5_c00027{left:623.466667pt;}
.xed_c00027{left:625.866667pt;}
.x129_c00027{left:628.400000pt;}
.xf4_c00027{left:629.333333pt;}
.xfe_c00027{left:630.533333pt;}
.xc8_c00027{left:633.200000pt;}
.x10c_c00027{left:634.933333pt;}
.x119_c00027{left:635.866667pt;}
.xc2_c00027{left:636.933333pt;}
.x120_c00027{left:638.133333pt;}
.x149_c00027{left:640.133333pt;}
.xfb_c00027{left:641.333333pt;}
.x111_c00027{left:642.400000pt;}
.x11c_c00027{left:643.466667pt;}
.x10d_c00027{left:645.066667pt;}
.xf7_c00027{left:646.266667pt;}
.x14d_c00027{left:647.866667pt;}
.x123_c00027{left:649.733333pt;}
.x131_c00027{left:652.133333pt;}
.x12f_c00027{left:653.200000pt;}
.xe6_c00027{left:654.533333pt;}
.x115_c00027{left:655.466667pt;}
.xd5_c00027{left:657.333333pt;}
.xff_c00027{left:658.400000pt;}
.x112_c00027{left:660.266667pt;}
.xe0_c00027{left:661.200000pt;}
.x103_c00027{left:662.266667pt;}
.x116_c00027{left:663.733333pt;}
.xb9_c00027{left:667.333333pt;}
.x132_c00027{left:670.400000pt;}
.x11d_c00027{left:672.266667pt;}
.xdc_c00027{left:676.933333pt;}
.x138_c00027{left:679.200000pt;}
.xba_c00027{left:680.400000pt;}
.xce_c00027{left:681.866667pt;}
.xf8_c00027{left:684.000000pt;}
.x12d_c00027{left:684.933333pt;}
.x11e_c00027{left:686.000000pt;}
.x10e_c00027{left:686.933333pt;}
.xc3_c00027{left:687.866667pt;}
.x12b_c00027{left:689.600000pt;}
.xea_c00027{left:691.600000pt;}
.x109_c00027{left:692.533333pt;}
.x130_c00027{left:693.866667pt;}
.x104_c00027{left:696.133333pt;}
.x12a_c00027{left:698.266667pt;}
.x121_c00027{left:699.200000pt;}
.x139_c00027{left:704.133333pt;}
.xd6_c00027{left:705.066667pt;}
.xee_c00027{left:708.800000pt;}
.xbb_c00027{left:710.133333pt;}
.x117_c00027{left:713.733333pt;}
.xc9_c00027{left:714.800000pt;}
.x124_c00027{left:716.266667pt;}
.x13c_c00027{left:719.466667pt;}
.x133_c00027{left:722.800000pt;}
.xc4_c00027{left:723.733333pt;}
.xef_c00027{left:725.066667pt;}
.x13d_c00027{left:726.533333pt;}
.x14a_c00027{left:729.333333pt;}
.xca_c00027{left:731.066667pt;}
.xbc_c00027{left:732.800000pt;}
.x125_c00027{left:736.400000pt;}
.x113_c00027{left:739.600000pt;}
.x13e_c00027{left:740.933333pt;}
.xf9_c00027{left:742.533333pt;}
.xd7_c00027{left:743.466667pt;}
.x14b_c00027{left:744.400000pt;}
.xeb_c00027{left:745.333333pt;}
.x11a_c00027{left:746.933333pt;}
.xbd_c00027{left:751.066667pt;}
.xe1_c00027{left:754.000000pt;}
}





/* 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_c00028 {
    display:none;
  }
  .loading-indicator_c00028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00028 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_c00028 { 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_c00028" -> "#page-container .classname_c00028")
 */
.pf_c00028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00028 { /* 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_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00028 { /* 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_c00028 { /* 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_c00028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00028 {overflow:visible;}
  }
}
.c_c00028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00028 { /* 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_c00028:after { /* webkit #35443 */
  content: '';
}
.t_c00028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00028 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 */
}
.__c00028 { /* 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_c00028 { /* info for Javascript */
  display:none;
}
.l_c00028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00028: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_c00028 {
    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_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00028.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_c00028 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00028;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.000000;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;}
.mf0_c00028{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m53_c00028{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m47_c00028{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mca_c00028{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m70_c00028{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m77_c00028{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m19_c00028{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00028{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00028{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00028{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m27_c00028{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me4_c00028{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00028{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m46_c00028{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00028{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m96_c00028{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00028{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00028{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m68_c00028{transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00028{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m5_c00028{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00028{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.mde_c00028{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me6_c00028{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m89_c00028{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m12_c00028{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m52_c00028{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.ma_c00028{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m86_c00028{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m40_c00028{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m72_c00028{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.md4_c00028{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00028{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00028{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00028{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m35_c00028{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00028{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m74_c00028{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00028{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00028{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00028{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m82_c00028{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00028{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00028{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md_c00028{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00028{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00028{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00028{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00028{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m25_c00028{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.me0_c00028{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m43_c00028{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00028{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00028{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00028{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m99_c00028{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m44_c00028{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m49_c00028{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m13_c00028{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00028{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00028{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00028{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m20_c00028{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00028{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00028{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.md5_c00028{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00028{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m45_c00028{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m102_c00028{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00028{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m29_c00028{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00028{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9_c00028{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m11_c00028{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me_c00028{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m51_c00028{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m87_c00028{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00028{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me8_c00028{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00028{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m69_c00028{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m94_c00028{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.md2_c00028{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m71_c00028{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me7_c00028{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00028{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00028{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00028{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md6_c00028{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m28_c00028{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.meb_c00028{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m109_c00028{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00028{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m93_c00028{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc_c00028{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mce_c00028{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m73_c00028{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m50_c00028{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m91_c00028{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00028{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m39_c00028{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m67_c00028{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md3_c00028{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00028{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00028{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00028{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7_c00028{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md0_c00028{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00028{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00028{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00028{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00028{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00028{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00028{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00028{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me2_c00028{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m101_c00028{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m34_c00028{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m63_c00028{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00028{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00028{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10_c00028{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m15_c00028{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m56_c00028{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00028{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00028{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m65_c00028{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m8_c00028{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf_c00028{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00028{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00028{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00028{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00028{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m42_c00028{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m21_c00028{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00028{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00028{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mb_c00028{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00028{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m38_c00028{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m31_c00028{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m16_c00028{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m85_c00028{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m36_c00028{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m95_c00028{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00028{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00028{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00028{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00028{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m37_c00028{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00028{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m23_c00028{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m18_c00028{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m107_c00028{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00028{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00028{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3_c00028{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m98_c00028{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.maf_c00028{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m78_c00028{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00028{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m48_c00028{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00028{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m41_c00028{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m76_c00028{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m103_c00028{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m6_c00028{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m59_c00028{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m90_c00028{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m54_c00028{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md7_c00028{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m81_c00028{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00028{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2_c00028{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m61_c00028{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m14_c00028{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00028{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m24_c00028{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m79_c00028{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m22_c00028{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m104_c00028{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00028{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m62_c00028{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00028{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me9_c00028{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00028{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mda_c00028{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mba_c00028{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m17_c00028{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m57_c00028{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m55_c00028{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00028{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4_c00028{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me5_c00028{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md8_c00028{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m60_c00028{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00028{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00028{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00028{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00028{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md9_c00028{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00028{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m33_c00028{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00028{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00028{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00028{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m26_c00028{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00028{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00028{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00028{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00028{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mea_c00028{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mad_c00028{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1_c00028{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00028{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m66_c00028{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mac_c00028{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00028{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00028{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m64_c00028{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m58_c00028{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m80_c00028{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00028{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00028{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00028{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);}
.m6f_c00028{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m75_c00028{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00028{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00028{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m97_c00028{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.med_c00028{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00028{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00028{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.me3_c00028{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m83_c00028{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.md1_c00028{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.maa_c00028{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mee_c00028{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00028{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00028{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m88_c00028{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00028{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m30_c00028{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00028{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00028{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mef_c00028{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m92_c00028{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m32_c00028{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.me1_c00028{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00028{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00028{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00028{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m106_c00028{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m105_c00028{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00028{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m84_c00028{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00028{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00028{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mab_c00028{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00028{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mff_c00028{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00028{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00028{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mec_c00028{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m108_c00028{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mae_c00028{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00028{transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);}
.m100_c00028{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.m0_c00028{transform:matrix(0.466000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466000,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls0_c00028{letter-spacing:0.000000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{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__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:-4.841924px;}
.ws2_c00028{word-spacing:-4.638037px;}
.ws4_c00028{word-spacing:0.000000px;}
.ws1_c00028{word-spacing:7.142857px;}
.ws3_c00028{word-spacing:24.870968px;}
.fc0_c00028{color:transparent;}
.fs6_c00028{font-size:36.000000px;}
.fs5_c00028{font-size:48.000000px;}
.fs4_c00028{font-size:54.000000px;}
.fs3_c00028{font-size:60.000000px;}
.fs2_c00028{font-size:66.000000px;}
.fs1_c00028{font-size:72.000000px;}
.fs0_c00028{font-size:84.000000px;}
.y0_c00028{bottom:0.000000px;}
.y37_c00028{bottom:198.750000px;}
.y68_c00028{bottom:213.150000px;}
.y36_c00028{bottom:213.450000px;}
.y35_c00028{bottom:227.850000px;}
.y67_c00028{bottom:228.300000px;}
.y34_c00028{bottom:241.500000px;}
.y66_c00028{bottom:242.400000px;}
.y65_c00028{bottom:256.050000px;}
.y33_c00028{bottom:256.350000px;}
.y32_c00028{bottom:270.750000px;}
.y64_c00028{bottom:284.400000px;}
.y31_c00028{bottom:284.700000px;}
.y30_c00028{bottom:298.500000px;}
.y63_c00028{bottom:299.100000px;}
.y2f_c00028{bottom:313.350000px;}
.y62_c00028{bottom:313.950000px;}
.y2e_c00028{bottom:328.050000px;}
.y61_c00028{bottom:328.650000px;}
.y60_c00028{bottom:342.300000px;}
.y2d_c00028{bottom:342.450000px;}
.y2c_c00028{bottom:356.100000px;}
.y5f_c00028{bottom:357.150000px;}
.y2b_c00028{bottom:369.750000px;}
.y2a_c00028{bottom:384.900000px;}
.y5e_c00028{bottom:394.500000px;}
.y29_c00028{bottom:399.300000px;}
.y28_c00028{bottom:412.200000px;}
.y27_c00028{bottom:428.400000px;}
.y5d_c00028{bottom:429.900000px;}
.y5c_c00028{bottom:452.100000px;}
.y26_c00028{bottom:468.900000px;}
.y5b_c00028{bottom:469.800000px;}
.y25_c00028{bottom:486.900000px;}
.y5a_c00028{bottom:487.800000px;}
.y24_c00028{bottom:504.900000px;}
.y59_c00028{bottom:505.650000px;}
.y23_c00028{bottom:522.900000px;}
.y58_c00028{bottom:523.350000px;}
.y22_c00028{bottom:540.600000px;}
.y57_c00028{bottom:541.050000px;}
.y21_c00028{bottom:558.300000px;}
.y56_c00028{bottom:559.050000px;}
.y20_c00028{bottom:576.300000px;}
.y55_c00028{bottom:581.100000px;}
.y1f_c00028{bottom:594.000000px;}
.y54_c00028{bottom:598.650000px;}
.y1e_c00028{bottom:616.050000px;}
.y53_c00028{bottom:616.650000px;}
.y1d_c00028{bottom:634.050000px;}
.y52_c00028{bottom:638.700000px;}
.y1c_c00028{bottom:651.750000px;}
.y51_c00028{bottom:656.400000px;}
.y1b_c00028{bottom:669.450000px;}
.y50_c00028{bottom:674.100000px;}
.y1a_c00028{bottom:687.450000px;}
.y4f_c00028{bottom:691.800000px;}
.y19_c00028{bottom:705.150000px;}
.y4e_c00028{bottom:709.800000px;}
.y18_c00028{bottom:722.850000px;}
.y4d_c00028{bottom:727.500000px;}
.y17_c00028{bottom:744.450000px;}
.y4c_c00028{bottom:745.200000px;}
.y16_c00028{bottom:762.450000px;}
.y4b_c00028{bottom:762.900000px;}
.y15_c00028{bottom:780.450000px;}
.y4a_c00028{bottom:784.350000px;}
.y14_c00028{bottom:798.150000px;}
.y49_c00028{bottom:803.100000px;}
.y13_c00028{bottom:815.850000px;}
.y48_c00028{bottom:820.800000px;}
.y12_c00028{bottom:833.850000px;}
.y47_c00028{bottom:838.800000px;}
.y11_c00028{bottom:851.850000px;}
.y46_c00028{bottom:856.500000px;}
.y10_c00028{bottom:869.550000px;}
.y45_c00028{bottom:874.200000px;}
.yf_c00028{bottom:887.250000px;}
.y44_c00028{bottom:891.900000px;}
.ye_c00028{bottom:904.950000px;}
.y43_c00028{bottom:909.900000px;}
.yd_c00028{bottom:922.950000px;}
.y42_c00028{bottom:927.150000px;}
.yc_c00028{bottom:940.650000px;}
.y41_c00028{bottom:945.150000px;}
.yb_c00028{bottom:962.400000px;}
.y40_c00028{bottom:962.850000px;}
.ya_c00028{bottom:980.400000px;}
.y3f_c00028{bottom:980.850000px;}
.y9_c00028{bottom:998.100000px;}
.y3e_c00028{bottom:998.550000px;}
.y8_c00028{bottom:1016.100000px;}
.y3d_c00028{bottom:1016.550000px;}
.y7_c00028{bottom:1033.800000px;}
.y3c_c00028{bottom:1034.250000px;}
.y6_c00028{bottom:1051.800000px;}
.y3b_c00028{bottom:1052.250000px;}
.y5_c00028{bottom:1069.800000px;}
.y3a_c00028{bottom:1069.950000px;}
.y4_c00028{bottom:1087.500000px;}
.y39_c00028{bottom:1105.500000px;}
.y3_c00028{bottom:1108.800000px;}
.y38_c00028{bottom:1123.500000px;}
.y2_c00028{bottom:1126.800000px;}
.y1_c00028{bottom:1154.100000px;}
.h8_c00028{height:36.000000px;}
.h7_c00028{height:48.000000px;}
.h6_c00028{height:54.000000px;}
.h5_c00028{height:60.000000px;}
.h4_c00028{height:66.000000px;}
.h3_c00028{height:72.000000px;}
.h2_c00028{height:84.000000px;}
.h1_c00028{height:1280.250000px;}
.h0_c00028{height:1280.519990px;}
.w0_c00028{width:948.600036px;}
.w1_c00028{width:948.750000px;}
.x0_c00028{left:0.000000px;}
.x9f_c00028{left:65.100000px;}
.x88_c00028{left:67.500000px;}
.x59_c00028{left:69.600000px;}
.x41_c00028{left:71.400000px;}
.x1b_c00028{left:72.600000px;}
.x14_c00028{left:74.550000px;}
.x3_c00028{left:75.600000px;}
.xa2_c00028{left:80.100000px;}
.x81_c00028{left:81.600000px;}
.x71_c00028{left:86.400000px;}
.x8e_c00028{left:88.500000px;}
.x38_c00028{left:89.700000px;}
.xe_c00028{left:91.050000px;}
.x99_c00028{left:98.700000px;}
.x6c_c00028{left:99.750000px;}
.x7d_c00028{left:101.700000px;}
.x98_c00028{left:103.050000px;}
.x4_c00028{left:104.400000px;}
.xa4_c00028{left:106.200000px;}
.xd_c00028{left:107.400000px;}
.x97_c00028{left:109.050000px;}
.x9a_c00028{left:110.550000px;}
.x63_c00028{left:111.600000px;}
.x7e_c00028{left:112.800000px;}
.xa6_c00028{left:114.600000px;}
.xf_c00028{left:115.950000px;}
.x67_c00028{left:117.000000px;}
.x8b_c00028{left:118.800000px;}
.x42_c00028{left:121.050000px;}
.x47_c00028{left:125.250000px;}
.x20_c00028{left:126.450000px;}
.x5a_c00028{left:129.750000px;}
.x57_c00028{left:131.250000px;}
.x76_c00028{left:132.450000px;}
.xa0_c00028{left:133.800000px;}
.x85_c00028{left:135.600000px;}
.x2b_c00028{left:137.700000px;}
.x43_c00028{left:139.050000px;}
.x39_c00028{left:140.400000px;}
.x30_c00028{left:142.650000px;}
.x50_c00028{left:144.450000px;}
.x68_c00028{left:145.500000px;}
.x4e_c00028{left:146.700000px;}
.x70_c00028{left:149.100000px;}
.x15_c00028{left:152.700000px;}
.x6d_c00028{left:153.750000px;}
.x79_c00028{left:158.550000px;}
.x2c_c00028{left:159.600000px;}
.x8f_c00028{left:164.100000px;}
.x5e_c00028{left:165.600000px;}
.x3a_c00028{left:167.400000px;}
.x51_c00028{left:168.900000px;}
.x94_c00028{left:171.150000px;}
.x48_c00028{left:172.800000px;}
.x44_c00028{left:174.300000px;}
.x5_c00028{left:175.650000px;}
.x58_c00028{left:176.850000px;}
.x31_c00028{left:177.900000px;}
.x7f_c00028{left:180.000000px;}
.x9c_c00028{left:181.050000px;}
.x52_c00028{left:183.000000px;}
.x36_c00028{left:184.950000px;}
.x8c_c00028{left:186.750000px;}
.xa3_c00028{left:189.900000px;}
.x1c_c00028{left:191.400000px;}
.x91_c00028{left:192.450000px;}
.x26_c00028{left:195.600000px;}
.x6_c00028{left:196.950000px;}
.x21_c00028{left:198.150000px;}
.x53_c00028{left:200.250000px;}
.x16_c00028{left:201.600000px;}
.xa1_c00028{left:203.250000px;}
.x2d_c00028{left:204.600000px;}
.x49_c00028{left:206.700000px;}
.x32_c00028{left:210.000000px;}
.x86_c00028{left:211.500000px;}
.x7_c00028{left:214.200000px;}
.x1d_c00028{left:215.550000px;}
.xa5_c00028{left:217.650000px;}
.x69_c00028{left:218.850000px;}
.x5b_c00028{left:220.500000px;}
.x27_c00028{left:221.850000px;}
.x72_c00028{left:223.500000px;}
.x9d_c00028{left:224.550000px;}
.x7a_c00028{left:226.950000px;}
.x22_c00028{left:228.450000px;}
.x6a_c00028{left:230.400000px;}
.x95_c00028{left:232.800000px;}
.x89_c00028{left:234.900000px;}
.x37_c00028{left:236.850000px;}
.x82_c00028{left:238.650000px;}
.x3b_c00028{left:240.150000px;}
.x10_c00028{left:241.500000px;}
.x9b_c00028{left:242.700000px;}
.x17_c00028{left:245.100000px;}
.x54_c00028{left:246.750000px;}
.x73_c00028{left:251.250000px;}
.x23_c00028{left:252.600000px;}
.x3c_c00028{left:254.250000px;}
.x77_c00028{left:255.900000px;}
.x64_c00028{left:257.550000px;}
.x8_c00028{left:258.900000px;}
.x11_c00028{left:262.050000px;}
.x5f_c00028{left:264.600000px;}
.x92_c00028{left:267.000000px;}
.x5c_c00028{left:268.050000px;}
.x74_c00028{left:271.350000px;}
.x2e_c00028{left:274.050000px;}
.x28_c00028{left:276.150000px;}
.x4a_c00028{left:277.200000px;}
.x6e_c00028{left:278.550000px;}
.x3d_c00028{left:280.200000px;}
.x75_c00028{left:283.950000px;}
.x9_c00028{left:290.250000px;}
.x60_c00028{left:291.300000px;}
.x80_c00028{left:292.650000px;}
.x33_c00028{left:294.300000px;}
.x5d_c00028{left:297.150000px;}
.x55_c00028{left:298.650000px;}
.x45_c00028{left:300.600000px;}
.x18_c00028{left:301.650000px;}
.x6b_c00028{left:306.000000px;}
.x3e_c00028{left:311.550000px;}
.x4b_c00028{left:314.700000px;}
.x1_c00028{left:315.750000px;}
.x1e_c00028{left:318.900000px;}
.x24_c00028{left:323.100000px;}
.x83_c00028{left:325.800000px;}
.x4f_c00028{left:327.000000px;}
.x6f_c00028{left:329.250000px;}
.x34_c00028{left:330.600000px;}
.x7b_c00028{left:333.600000px;}
.x61_c00028{left:335.550000px;}
.x96_c00028{left:336.900000px;}
.x4c_c00028{left:338.100000px;}
.x8d_c00028{left:341.550000px;}
.x3f_c00028{left:344.250000px;}
.xa_c00028{left:345.300000px;}
.x65_c00028{left:347.100000px;}
.x19_c00028{left:350.550000px;}
.x29_c00028{left:352.500000px;}
.x12_c00028{left:355.050000px;}
.x93_c00028{left:356.250000px;}
.x78_c00028{left:357.600000px;}
.xb_c00028{left:358.950000px;}
.x2f_c00028{left:361.200000px;}
.x1a_c00028{left:362.400000px;}
.x62_c00028{left:364.050000px;}
.x46_c00028{left:366.900000px;}
.x66_c00028{left:367.950000px;}
.x40_c00028{left:369.450000px;}
.x87_c00028{left:371.400000px;}
.x7c_c00028{left:372.450000px;}
.x8a_c00028{left:374.850000px;}
.xc_c00028{left:376.950000px;}
.x13_c00028{left:378.750000px;}
.x84_c00028{left:380.100000px;}
.x4d_c00028{left:383.850000px;}
.x25_c00028{left:387.150000px;}
.x9e_c00028{left:389.100000px;}
.x35_c00028{left:390.450000px;}
.x90_c00028{left:391.650000px;}
.x56_c00028{left:395.850000px;}
.x1f_c00028{left:399.600000px;}
.x2a_c00028{left:400.800000px;}
.x150_c00028{left:423.600000px;}
.x14c_c00028{left:425.250000px;}
.x123_c00028{left:426.300000px;}
.x11b_c00028{left:427.350000px;}
.xff_c00028{left:428.850000px;}
.xf7_c00028{left:430.650000px;}
.xc4_c00028{left:431.700000px;}
.xa7_c00028{left:432.750000px;}
.x145_c00028{left:440.250000px;}
.x12a_c00028{left:443.850000px;}
.x11d_c00028{left:444.900000px;}
.x100_c00028{left:446.100000px;}
.x10d_c00028{left:448.950000px;}
.xb1_c00028{left:450.000000px;}
.x14e_c00028{left:451.200000px;}
.xdd_c00028{left:452.850000px;}
.xe1_c00028{left:456.450000px;}
.x114_c00028{left:457.500000px;}
.x12f_c00028{left:460.050000px;}
.xbc_c00028{left:462.750000px;}
.x147_c00028{left:464.400000px;}
.x124_c00028{left:466.200000px;}
.xef_c00028{left:467.550000px;}
.xa8_c00028{left:469.500000px;}
.x133_c00028{left:470.550000px;}
.x12b_c00028{left:471.900000px;}
.xb2_c00028{left:473.100000px;}
.xc1_c00028{left:474.600000px;}
.x101_c00028{left:477.000000px;}
.x121_c00028{left:479.400000px;}
.xe6_c00028{left:481.500000px;}
.xde_c00028{left:483.150000px;}
.xbd_c00028{left:484.650000px;}
.xfc_c00028{left:486.150000px;}
.x138_c00028{left:489.150000px;}
.xd0_c00028{left:490.950000px;}
.x146_c00028{left:492.150000px;}
.xd4_c00028{left:494.100000px;}
.xf0_c00028{left:495.300000px;}
.x115_c00028{left:498.150000px;}
.x125_c00028{left:501.450000px;}
.x140_c00028{left:504.000000px;}
.x11e_c00028{left:506.400000px;}
.xed_c00028{left:507.450000px;}
.xb3_c00028{left:509.100000px;}
.xe2_c00028{left:511.200000px;}
.x13d_c00028{left:513.300000px;}
.xfd_c00028{left:516.750000px;}
.x11f_c00028{left:519.000000px;}
.x109_c00028{left:520.350000px;}
.x126_c00028{left:522.300000px;}
.x135_c00028{left:524.100000px;}
.xd1_c00028{left:525.150000px;}
.xdf_c00028{left:527.400000px;}
.xbe_c00028{left:528.900000px;}
.xb4_c00028{left:533.250000px;}
.xa9_c00028{left:535.350000px;}
.xf8_c00028{left:537.600000px;}
.x144_c00028{left:538.650000px;}
.xd5_c00028{left:540.600000px;}
.xad_c00028{left:541.800000px;}
.x12c_c00028{left:543.150000px;}
.x149_c00028{left:544.800000px;}
.xe9_c00028{left:547.350000px;}
.xc5_c00028{left:548.700000px;}
.xf3_c00028{left:550.350000px;}
.xd6_c00028{left:551.700000px;}
.x11c_c00028{left:553.500000px;}
.x116_c00028{left:556.500000px;}
.xf9_c00028{left:559.200000px;}
.xae_c00028{left:561.300000px;}
.xb5_c00028{left:563.550000px;}
.x139_c00028{left:564.750000px;}
.x12e_c00028{left:567.300000px;}
.xea_c00028{left:568.950000px;}
.xe7_c00028{left:571.500000px;}
.x117_c00028{left:574.200000px;}
.xee_c00028{left:577.650000px;}
.xf1_c00028{left:579.150000px;}
.x141_c00028{left:581.100000px;}
.xc6_c00028{left:582.150000px;}
.x105_c00028{left:583.650000px;}
.xb6_c00028{left:584.850000px;}
.x148_c00028{left:588.750000px;}
.x120_c00028{left:589.800000px;}
.xd7_c00028{left:591.000000px;}
.x10a_c00028{left:592.650000px;}
.xaf_c00028{left:593.700000px;}
.x127_c00028{left:595.050000px;}
.xcb_c00028{left:598.200000px;}
.xc7_c00028{left:605.250000px;}
.x110_c00028{left:606.300000px;}
.xaa_c00028{left:608.100000px;}
.x136_c00028{left:609.450000px;}
.x14f_c00028{left:611.400000px;}
.xb0_c00028{left:612.750000px;}
.x151_c00028{left:613.950000px;}
.x111_c00028{left:617.400000px;}
.xe0_c00028{left:618.450000px;}
.x130_c00028{left:619.950000px;}
.xd8_c00028{left:621.300000px;}
.x10e_c00028{left:622.350000px;}
.x102_c00028{left:624.150000px;}
.x128_c00028{left:625.650000px;}
.xd2_c00028{left:626.700000px;}
.x152_c00028{left:628.050000px;}
.xb7_c00028{left:630.600000px;}
.xc8_c00028{left:631.950000px;}
.xbf_c00028{left:633.750000px;}
.xcc_c00028{left:635.700000px;}
.xf4_c00028{left:637.500000px;}
.xd9_c00028{left:640.350000px;}
.xc2_c00028{left:645.900000px;}
.x13a_c00028{left:647.850000px;}
.xeb_c00028{left:650.700000px;}
.x118_c00028{left:653.850000px;}
.x106_c00028{left:655.350000px;}
.xf2_c00028{left:657.300000px;}
.xab_c00028{left:659.250000px;}
.xc9_c00028{left:660.450000px;}
.xe3_c00028{left:661.800000px;}
.xd3_c00028{left:663.750000px;}
.xda_c00028{left:665.250000px;}
.xcd_c00028{left:667.050000px;}
.xf5_c00028{left:668.850000px;}
.x10b_c00028{left:671.550000px;}
.xb8_c00028{left:673.500000px;}
.x14a_c00028{left:675.150000px;}
.xc3_c00028{left:676.200000px;}
.x14d_c00028{left:678.300000px;}
.xdb_c00028{left:679.350000px;}
.x131_c00028{left:680.850000px;}
.x107_c00028{left:683.100000px;}
.xb9_c00028{left:684.600000px;}
.x10f_c00028{left:686.850000px;}
.x112_c00028{left:689.400000px;}
.x119_c00028{left:692.400000px;}
.x122_c00028{left:693.600000px;}
.xfa_c00028{left:694.950000px;}
.x142_c00028{left:699.900000px;}
.x103_c00028{left:701.550000px;}
.x13e_c00028{left:703.050000px;}
.xba_c00028{left:704.400000px;}
.xdc_c00028{left:705.600000px;}
.x13b_c00028{left:707.250000px;}
.x143_c00028{left:709.200000px;}
.xce_c00028{left:710.550000px;}
.x14b_c00028{left:712.500000px;}
.xac_c00028{left:713.550000px;}
.x12d_c00028{left:715.650000px;}
.x132_c00028{left:717.900000px;}
.x134_c00028{left:719.700000px;}
.xe4_c00028{left:721.200000px;}
.xca_c00028{left:722.400000px;}
.xfe_c00028{left:723.450000px;}
.xec_c00028{left:726.600000px;}
.x13f_c00028{left:729.300000px;}
.x153_c00028{left:730.800000px;}
.x13c_c00028{left:732.450000px;}
.xc0_c00028{left:734.250000px;}
.x104_c00028{left:735.450000px;}
.xf6_c00028{left:736.950000px;}
.xe8_c00028{left:738.150000px;}
.xcf_c00028{left:739.350000px;}
.x108_c00028{left:740.400000px;}
.x113_c00028{left:741.600000px;}
.xbb_c00028{left:743.250000px;}
.xe5_c00028{left:745.350000px;}
.xfb_c00028{left:746.850000px;}
.x11a_c00028{left:748.500000px;}
.x2_c00028{left:753.150000px;}
.x10c_c00028{left:758.250000px;}
.x129_c00028{left:759.900000px;}
.x137_c00028{left:768.000000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ws0_c00028{word-spacing:-4.303933pt;}
.ws2_c00028{word-spacing:-4.122699pt;}
.ws4_c00028{word-spacing:0.000000pt;}
.ws1_c00028{word-spacing:6.349206pt;}
.ws3_c00028{word-spacing:22.107527pt;}
.fs6_c00028{font-size:32.000000pt;}
.fs5_c00028{font-size:42.666667pt;}
.fs4_c00028{font-size:48.000000pt;}
.fs3_c00028{font-size:53.333333pt;}
.fs2_c00028{font-size:58.666667pt;}
.fs1_c00028{font-size:64.000000pt;}
.fs0_c00028{font-size:74.666667pt;}
.y0_c00028{bottom:0.000000pt;}
.y37_c00028{bottom:176.666667pt;}
.y68_c00028{bottom:189.466667pt;}
.y36_c00028{bottom:189.733333pt;}
.y35_c00028{bottom:202.533333pt;}
.y67_c00028{bottom:202.933333pt;}
.y34_c00028{bottom:214.666667pt;}
.y66_c00028{bottom:215.466667pt;}
.y65_c00028{bottom:227.600000pt;}
.y33_c00028{bottom:227.866667pt;}
.y32_c00028{bottom:240.666667pt;}
.y64_c00028{bottom:252.800000pt;}
.y31_c00028{bottom:253.066667pt;}
.y30_c00028{bottom:265.333333pt;}
.y63_c00028{bottom:265.866667pt;}
.y2f_c00028{bottom:278.533333pt;}
.y62_c00028{bottom:279.066667pt;}
.y2e_c00028{bottom:291.600000pt;}
.y61_c00028{bottom:292.133333pt;}
.y60_c00028{bottom:304.266667pt;}
.y2d_c00028{bottom:304.400000pt;}
.y2c_c00028{bottom:316.533333pt;}
.y5f_c00028{bottom:317.466667pt;}
.y2b_c00028{bottom:328.666667pt;}
.y2a_c00028{bottom:342.133333pt;}
.y5e_c00028{bottom:350.666667pt;}
.y29_c00028{bottom:354.933333pt;}
.y28_c00028{bottom:366.400000pt;}
.y27_c00028{bottom:380.800000pt;}
.y5d_c00028{bottom:382.133333pt;}
.y5c_c00028{bottom:401.866667pt;}
.y26_c00028{bottom:416.800000pt;}
.y5b_c00028{bottom:417.600000pt;}
.y25_c00028{bottom:432.800000pt;}
.y5a_c00028{bottom:433.600000pt;}
.y24_c00028{bottom:448.800000pt;}
.y59_c00028{bottom:449.466667pt;}
.y23_c00028{bottom:464.800000pt;}
.y58_c00028{bottom:465.200000pt;}
.y22_c00028{bottom:480.533333pt;}
.y57_c00028{bottom:480.933333pt;}
.y21_c00028{bottom:496.266667pt;}
.y56_c00028{bottom:496.933333pt;}
.y20_c00028{bottom:512.266667pt;}
.y55_c00028{bottom:516.533333pt;}
.y1f_c00028{bottom:528.000000pt;}
.y54_c00028{bottom:532.133333pt;}
.y1e_c00028{bottom:547.600000pt;}
.y53_c00028{bottom:548.133333pt;}
.y1d_c00028{bottom:563.600000pt;}
.y52_c00028{bottom:567.733333pt;}
.y1c_c00028{bottom:579.333333pt;}
.y51_c00028{bottom:583.466667pt;}
.y1b_c00028{bottom:595.066667pt;}
.y50_c00028{bottom:599.200000pt;}
.y1a_c00028{bottom:611.066667pt;}
.y4f_c00028{bottom:614.933333pt;}
.y19_c00028{bottom:626.800000pt;}
.y4e_c00028{bottom:630.933333pt;}
.y18_c00028{bottom:642.533333pt;}
.y4d_c00028{bottom:646.666667pt;}
.y17_c00028{bottom:661.733333pt;}
.y4c_c00028{bottom:662.400000pt;}
.y16_c00028{bottom:677.733333pt;}
.y4b_c00028{bottom:678.133333pt;}
.y15_c00028{bottom:693.733333pt;}
.y4a_c00028{bottom:697.200000pt;}
.y14_c00028{bottom:709.466667pt;}
.y49_c00028{bottom:713.866667pt;}
.y13_c00028{bottom:725.200000pt;}
.y48_c00028{bottom:729.600000pt;}
.y12_c00028{bottom:741.200000pt;}
.y47_c00028{bottom:745.600000pt;}
.y11_c00028{bottom:757.200000pt;}
.y46_c00028{bottom:761.333333pt;}
.y10_c00028{bottom:772.933333pt;}
.y45_c00028{bottom:777.066667pt;}
.yf_c00028{bottom:788.666667pt;}
.y44_c00028{bottom:792.800000pt;}
.ye_c00028{bottom:804.400000pt;}
.y43_c00028{bottom:808.800000pt;}
.yd_c00028{bottom:820.400000pt;}
.y42_c00028{bottom:824.133333pt;}
.yc_c00028{bottom:836.133333pt;}
.y41_c00028{bottom:840.133333pt;}
.yb_c00028{bottom:855.466667pt;}
.y40_c00028{bottom:855.866667pt;}
.ya_c00028{bottom:871.466667pt;}
.y3f_c00028{bottom:871.866667pt;}
.y9_c00028{bottom:887.200000pt;}
.y3e_c00028{bottom:887.600000pt;}
.y8_c00028{bottom:903.200000pt;}
.y3d_c00028{bottom:903.600000pt;}
.y7_c00028{bottom:918.933333pt;}
.y3c_c00028{bottom:919.333333pt;}
.y6_c00028{bottom:934.933333pt;}
.y3b_c00028{bottom:935.333333pt;}
.y5_c00028{bottom:950.933333pt;}
.y3a_c00028{bottom:951.066667pt;}
.y4_c00028{bottom:966.666667pt;}
.y39_c00028{bottom:982.666667pt;}
.y3_c00028{bottom:985.600000pt;}
.y38_c00028{bottom:998.666667pt;}
.y2_c00028{bottom:1001.600000pt;}
.y1_c00028{bottom:1025.866667pt;}
.h8_c00028{height:32.000000pt;}
.h7_c00028{height:42.666667pt;}
.h6_c00028{height:48.000000pt;}
.h5_c00028{height:53.333333pt;}
.h4_c00028{height:58.666667pt;}
.h3_c00028{height:64.000000pt;}
.h2_c00028{height:74.666667pt;}
.h1_c00028{height:1138.000000pt;}
.h0_c00028{height:1138.239991pt;}
.w0_c00028{width:843.200032pt;}
.w1_c00028{width:843.333333pt;}
.x0_c00028{left:0.000000pt;}
.x9f_c00028{left:57.866667pt;}
.x88_c00028{left:60.000000pt;}
.x59_c00028{left:61.866667pt;}
.x41_c00028{left:63.466667pt;}
.x1b_c00028{left:64.533333pt;}
.x14_c00028{left:66.266667pt;}
.x3_c00028{left:67.200000pt;}
.xa2_c00028{left:71.200000pt;}
.x81_c00028{left:72.533333pt;}
.x71_c00028{left:76.800000pt;}
.x8e_c00028{left:78.666667pt;}
.x38_c00028{left:79.733333pt;}
.xe_c00028{left:80.933333pt;}
.x99_c00028{left:87.733333pt;}
.x6c_c00028{left:88.666667pt;}
.x7d_c00028{left:90.400000pt;}
.x98_c00028{left:91.600000pt;}
.x4_c00028{left:92.800000pt;}
.xa4_c00028{left:94.400000pt;}
.xd_c00028{left:95.466667pt;}
.x97_c00028{left:96.933333pt;}
.x9a_c00028{left:98.266667pt;}
.x63_c00028{left:99.200000pt;}
.x7e_c00028{left:100.266667pt;}
.xa6_c00028{left:101.866667pt;}
.xf_c00028{left:103.066667pt;}
.x67_c00028{left:104.000000pt;}
.x8b_c00028{left:105.600000pt;}
.x42_c00028{left:107.600000pt;}
.x47_c00028{left:111.333333pt;}
.x20_c00028{left:112.400000pt;}
.x5a_c00028{left:115.333333pt;}
.x57_c00028{left:116.666667pt;}
.x76_c00028{left:117.733333pt;}
.xa0_c00028{left:118.933333pt;}
.x85_c00028{left:120.533333pt;}
.x2b_c00028{left:122.400000pt;}
.x43_c00028{left:123.600000pt;}
.x39_c00028{left:124.800000pt;}
.x30_c00028{left:126.800000pt;}
.x50_c00028{left:128.400000pt;}
.x68_c00028{left:129.333333pt;}
.x4e_c00028{left:130.400000pt;}
.x70_c00028{left:132.533333pt;}
.x15_c00028{left:135.733333pt;}
.x6d_c00028{left:136.666667pt;}
.x79_c00028{left:140.933333pt;}
.x2c_c00028{left:141.866667pt;}
.x8f_c00028{left:145.866667pt;}
.x5e_c00028{left:147.200000pt;}
.x3a_c00028{left:148.800000pt;}
.x51_c00028{left:150.133333pt;}
.x94_c00028{left:152.133333pt;}
.x48_c00028{left:153.600000pt;}
.x44_c00028{left:154.933333pt;}
.x5_c00028{left:156.133333pt;}
.x58_c00028{left:157.200000pt;}
.x31_c00028{left:158.133333pt;}
.x7f_c00028{left:160.000000pt;}
.x9c_c00028{left:160.933333pt;}
.x52_c00028{left:162.666667pt;}
.x36_c00028{left:164.400000pt;}
.x8c_c00028{left:166.000000pt;}
.xa3_c00028{left:168.800000pt;}
.x1c_c00028{left:170.133333pt;}
.x91_c00028{left:171.066667pt;}
.x26_c00028{left:173.866667pt;}
.x6_c00028{left:175.066667pt;}
.x21_c00028{left:176.133333pt;}
.x53_c00028{left:178.000000pt;}
.x16_c00028{left:179.200000pt;}
.xa1_c00028{left:180.666667pt;}
.x2d_c00028{left:181.866667pt;}
.x49_c00028{left:183.733333pt;}
.x32_c00028{left:186.666667pt;}
.x86_c00028{left:188.000000pt;}
.x7_c00028{left:190.400000pt;}
.x1d_c00028{left:191.600000pt;}
.xa5_c00028{left:193.466667pt;}
.x69_c00028{left:194.533333pt;}
.x5b_c00028{left:196.000000pt;}
.x27_c00028{left:197.200000pt;}
.x72_c00028{left:198.666667pt;}
.x9d_c00028{left:199.600000pt;}
.x7a_c00028{left:201.733333pt;}
.x22_c00028{left:203.066667pt;}
.x6a_c00028{left:204.800000pt;}
.x95_c00028{left:206.933333pt;}
.x89_c00028{left:208.800000pt;}
.x37_c00028{left:210.533333pt;}
.x82_c00028{left:212.133333pt;}
.x3b_c00028{left:213.466667pt;}
.x10_c00028{left:214.666667pt;}
.x9b_c00028{left:215.733333pt;}
.x17_c00028{left:217.866667pt;}
.x54_c00028{left:219.333333pt;}
.x73_c00028{left:223.333333pt;}
.x23_c00028{left:224.533333pt;}
.x3c_c00028{left:226.000000pt;}
.x77_c00028{left:227.466667pt;}
.x64_c00028{left:228.933333pt;}
.x8_c00028{left:230.133333pt;}
.x11_c00028{left:232.933333pt;}
.x5f_c00028{left:235.200000pt;}
.x92_c00028{left:237.333333pt;}
.x5c_c00028{left:238.266667pt;}
.x74_c00028{left:241.200000pt;}
.x2e_c00028{left:243.600000pt;}
.x28_c00028{left:245.466667pt;}
.x4a_c00028{left:246.400000pt;}
.x6e_c00028{left:247.600000pt;}
.x3d_c00028{left:249.066667pt;}
.x75_c00028{left:252.400000pt;}
.x9_c00028{left:258.000000pt;}
.x60_c00028{left:258.933333pt;}
.x80_c00028{left:260.133333pt;}
.x33_c00028{left:261.600000pt;}
.x5d_c00028{left:264.133333pt;}
.x55_c00028{left:265.466667pt;}
.x45_c00028{left:267.200000pt;}
.x18_c00028{left:268.133333pt;}
.x6b_c00028{left:272.000000pt;}
.x3e_c00028{left:276.933333pt;}
.x4b_c00028{left:279.733333pt;}
.x1_c00028{left:280.666667pt;}
.x1e_c00028{left:283.466667pt;}
.x24_c00028{left:287.200000pt;}
.x83_c00028{left:289.600000pt;}
.x4f_c00028{left:290.666667pt;}
.x6f_c00028{left:292.666667pt;}
.x34_c00028{left:293.866667pt;}
.x7b_c00028{left:296.533333pt;}
.x61_c00028{left:298.266667pt;}
.x96_c00028{left:299.466667pt;}
.x4c_c00028{left:300.533333pt;}
.x8d_c00028{left:303.600000pt;}
.x3f_c00028{left:306.000000pt;}
.xa_c00028{left:306.933333pt;}
.x65_c00028{left:308.533333pt;}
.x19_c00028{left:311.600000pt;}
.x29_c00028{left:313.333333pt;}
.x12_c00028{left:315.600000pt;}
.x93_c00028{left:316.666667pt;}
.x78_c00028{left:317.866667pt;}
.xb_c00028{left:319.066667pt;}
.x2f_c00028{left:321.066667pt;}
.x1a_c00028{left:322.133333pt;}
.x62_c00028{left:323.600000pt;}
.x46_c00028{left:326.133333pt;}
.x66_c00028{left:327.066667pt;}
.x40_c00028{left:328.400000pt;}
.x87_c00028{left:330.133333pt;}
.x7c_c00028{left:331.066667pt;}
.x8a_c00028{left:333.200000pt;}
.xc_c00028{left:335.066667pt;}
.x13_c00028{left:336.666667pt;}
.x84_c00028{left:337.866667pt;}
.x4d_c00028{left:341.200000pt;}
.x25_c00028{left:344.133333pt;}
.x9e_c00028{left:345.866667pt;}
.x35_c00028{left:347.066667pt;}
.x90_c00028{left:348.133333pt;}
.x56_c00028{left:351.866667pt;}
.x1f_c00028{left:355.200000pt;}
.x2a_c00028{left:356.266667pt;}
.x150_c00028{left:376.533333pt;}
.x14c_c00028{left:378.000000pt;}
.x123_c00028{left:378.933333pt;}
.x11b_c00028{left:379.866667pt;}
.xff_c00028{left:381.200000pt;}
.xf7_c00028{left:382.800000pt;}
.xc4_c00028{left:383.733333pt;}
.xa7_c00028{left:384.666667pt;}
.x145_c00028{left:391.333333pt;}
.x12a_c00028{left:394.533333pt;}
.x11d_c00028{left:395.466667pt;}
.x100_c00028{left:396.533333pt;}
.x10d_c00028{left:399.066667pt;}
.xb1_c00028{left:400.000000pt;}
.x14e_c00028{left:401.066667pt;}
.xdd_c00028{left:402.533333pt;}
.xe1_c00028{left:405.733333pt;}
.x114_c00028{left:406.666667pt;}
.x12f_c00028{left:408.933333pt;}
.xbc_c00028{left:411.333333pt;}
.x147_c00028{left:412.800000pt;}
.x124_c00028{left:414.400000pt;}
.xef_c00028{left:415.600000pt;}
.xa8_c00028{left:417.333333pt;}
.x133_c00028{left:418.266667pt;}
.x12b_c00028{left:419.466667pt;}
.xb2_c00028{left:420.533333pt;}
.xc1_c00028{left:421.866667pt;}
.x101_c00028{left:424.000000pt;}
.x121_c00028{left:426.133333pt;}
.xe6_c00028{left:428.000000pt;}
.xde_c00028{left:429.466667pt;}
.xbd_c00028{left:430.800000pt;}
.xfc_c00028{left:432.133333pt;}
.x138_c00028{left:434.800000pt;}
.xd0_c00028{left:436.400000pt;}
.x146_c00028{left:437.466667pt;}
.xd4_c00028{left:439.200000pt;}
.xf0_c00028{left:440.266667pt;}
.x115_c00028{left:442.800000pt;}
.x125_c00028{left:445.733333pt;}
.x140_c00028{left:448.000000pt;}
.x11e_c00028{left:450.133333pt;}
.xed_c00028{left:451.066667pt;}
.xb3_c00028{left:452.533333pt;}
.xe2_c00028{left:454.400000pt;}
.x13d_c00028{left:456.266667pt;}
.xfd_c00028{left:459.333333pt;}
.x11f_c00028{left:461.333333pt;}
.x109_c00028{left:462.533333pt;}
.x126_c00028{left:464.266667pt;}
.x135_c00028{left:465.866667pt;}
.xd1_c00028{left:466.800000pt;}
.xdf_c00028{left:468.800000pt;}
.xbe_c00028{left:470.133333pt;}
.xb4_c00028{left:474.000000pt;}
.xa9_c00028{left:475.866667pt;}
.xf8_c00028{left:477.866667pt;}
.x144_c00028{left:478.800000pt;}
.xd5_c00028{left:480.533333pt;}
.xad_c00028{left:481.600000pt;}
.x12c_c00028{left:482.800000pt;}
.x149_c00028{left:484.266667pt;}
.xe9_c00028{left:486.533333pt;}
.xc5_c00028{left:487.733333pt;}
.xf3_c00028{left:489.200000pt;}
.xd6_c00028{left:490.400000pt;}
.x11c_c00028{left:492.000000pt;}
.x116_c00028{left:494.666667pt;}
.xf9_c00028{left:497.066667pt;}
.xae_c00028{left:498.933333pt;}
.xb5_c00028{left:500.933333pt;}
.x139_c00028{left:502.000000pt;}
.x12e_c00028{left:504.266667pt;}
.xea_c00028{left:505.733333pt;}
.xe7_c00028{left:508.000000pt;}
.x117_c00028{left:510.400000pt;}
.xee_c00028{left:513.466667pt;}
.xf1_c00028{left:514.800000pt;}
.x141_c00028{left:516.533333pt;}
.xc6_c00028{left:517.466667pt;}
.x105_c00028{left:518.800000pt;}
.xb6_c00028{left:519.866667pt;}
.x148_c00028{left:523.333333pt;}
.x120_c00028{left:524.266667pt;}
.xd7_c00028{left:525.333333pt;}
.x10a_c00028{left:526.800000pt;}
.xaf_c00028{left:527.733333pt;}
.x127_c00028{left:528.933333pt;}
.xcb_c00028{left:531.733333pt;}
.xc7_c00028{left:538.000000pt;}
.x110_c00028{left:538.933333pt;}
.xaa_c00028{left:540.533333pt;}
.x136_c00028{left:541.733333pt;}
.x14f_c00028{left:543.466667pt;}
.xb0_c00028{left:544.666667pt;}
.x151_c00028{left:545.733333pt;}
.x111_c00028{left:548.800000pt;}
.xe0_c00028{left:549.733333pt;}
.x130_c00028{left:551.066667pt;}
.xd8_c00028{left:552.266667pt;}
.x10e_c00028{left:553.200000pt;}
.x102_c00028{left:554.800000pt;}
.x128_c00028{left:556.133333pt;}
.xd2_c00028{left:557.066667pt;}
.x152_c00028{left:558.266667pt;}
.xb7_c00028{left:560.533333pt;}
.xc8_c00028{left:561.733333pt;}
.xbf_c00028{left:563.333333pt;}
.xcc_c00028{left:565.066667pt;}
.xf4_c00028{left:566.666667pt;}
.xd9_c00028{left:569.200000pt;}
.xc2_c00028{left:574.133333pt;}
.x13a_c00028{left:575.866667pt;}
.xeb_c00028{left:578.400000pt;}
.x118_c00028{left:581.200000pt;}
.x106_c00028{left:582.533333pt;}
.xf2_c00028{left:584.266667pt;}
.xab_c00028{left:586.000000pt;}
.xc9_c00028{left:587.066667pt;}
.xe3_c00028{left:588.266667pt;}
.xd3_c00028{left:590.000000pt;}
.xda_c00028{left:591.333333pt;}
.xcd_c00028{left:592.933333pt;}
.xf5_c00028{left:594.533333pt;}
.x10b_c00028{left:596.933333pt;}
.xb8_c00028{left:598.666667pt;}
.x14a_c00028{left:600.133333pt;}
.xc3_c00028{left:601.066667pt;}
.x14d_c00028{left:602.933333pt;}
.xdb_c00028{left:603.866667pt;}
.x131_c00028{left:605.200000pt;}
.x107_c00028{left:607.200000pt;}
.xb9_c00028{left:608.533333pt;}
.x10f_c00028{left:610.533333pt;}
.x112_c00028{left:612.800000pt;}
.x119_c00028{left:615.466667pt;}
.x122_c00028{left:616.533333pt;}
.xfa_c00028{left:617.733333pt;}
.x142_c00028{left:622.133333pt;}
.x103_c00028{left:623.600000pt;}
.x13e_c00028{left:624.933333pt;}
.xba_c00028{left:626.133333pt;}
.xdc_c00028{left:627.200000pt;}
.x13b_c00028{left:628.666667pt;}
.x143_c00028{left:630.400000pt;}
.xce_c00028{left:631.600000pt;}
.x14b_c00028{left:633.333333pt;}
.xac_c00028{left:634.266667pt;}
.x12d_c00028{left:636.133333pt;}
.x132_c00028{left:638.133333pt;}
.x134_c00028{left:639.733333pt;}
.xe4_c00028{left:641.066667pt;}
.xca_c00028{left:642.133333pt;}
.xfe_c00028{left:643.066667pt;}
.xec_c00028{left:645.866667pt;}
.x13f_c00028{left:648.266667pt;}
.x153_c00028{left:649.600000pt;}
.x13c_c00028{left:651.066667pt;}
.xc0_c00028{left:652.666667pt;}
.x104_c00028{left:653.733333pt;}
.xf6_c00028{left:655.066667pt;}
.xe8_c00028{left:656.133333pt;}
.xcf_c00028{left:657.200000pt;}
.x108_c00028{left:658.133333pt;}
.x113_c00028{left:659.200000pt;}
.xbb_c00028{left:660.666667pt;}
.xe5_c00028{left:662.533333pt;}
.xfb_c00028{left:663.866667pt;}
.x11a_c00028{left:665.333333pt;}
.x2_c00028{left:669.466667pt;}
.x10c_c00028{left:674.000000pt;}
.x129_c00028{left:675.466667pt;}
.x137_c00028{left:682.666667pt;}
}





/* 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_c00029 {
    display:none;
  }
  .loading-indicator_c00029.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00029 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_c00029 { 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_c00029" -> "#page-container .classname_c00029")
 */
.pf_c00029 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00029 { /* 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_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00029 { /* 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_c00029 { /* 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_c00029 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00029 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00029 {overflow:visible;}
  }
}
.c_c00029 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00029 { /* 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_c00029:after { /* webkit #35443 */
  content: '';
}
.t_c00029:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00029 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 */
}
.__c00029 { /* 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_c00029 { /* info for Javascript */
  display:none;
}
.l_c00029 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00029 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00029 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00029: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_c00029 {
    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_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00029.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_c00029 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00029;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.000000;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;}
.mcf_c00029{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00029{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00029{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m107_c00029{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00029{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m120_c00029{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00029{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00029{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00029{transform:matrix(0.091250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091250,0.000000,0.000000,0.250000,0,0);}
.m109_c00029{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m0_c00029{transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);}
.m72_c00029{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m20_c00029{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00029{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00029{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m59_c00029{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00029{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m7_c00029{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00029{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m46_c00029{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m84_c00029{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m102_c00029{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m70_c00029{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00029{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m80_c00029{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00029{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.md6_c00029{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00029{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m3_c00029{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00029{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00029{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mca_c00029{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00029{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m61_c00029{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00029{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00029{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m75_c00029{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m66_c00029{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00029{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00029{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00029{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00029{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00029{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me_c00029{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00029{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m114_c00029{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00029{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00029{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00029{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00029{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00029{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00029{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m10_c00029{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m48_c00029{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00029{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m36_c00029{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md0_c00029{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mce_c00029{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me4_c00029{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m64_c00029{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00029{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00029{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00029{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2_c00029{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00029{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00029{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m79_c00029{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00029{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m118_c00029{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m29_c00029{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md7_c00029{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00029{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00029{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m33_c00029{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00029{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m30_c00029{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mff_c00029{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00029{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00029{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.me0_c00029{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m24_c00029{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m116_c00029{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m22_c00029{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00029{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00029{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00029{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m25_c00029{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m82_c00029{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00029{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m115_c00029{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.md_c00029{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m16_c00029{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m101_c00029{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00029{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m65_c00029{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00029{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m67_c00029{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00029{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00029{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m40_c00029{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m11_c00029{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00029{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00029{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00029{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me1_c00029{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m44_c00029{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00029{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00029{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6_c00029{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m87_c00029{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mda_c00029{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00029{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md4_c00029{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m5_c00029{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me9_c00029{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md2_c00029{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.maf_c00029{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m49_c00029{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00029{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m108_c00029{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m62_c00029{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m21_c00029{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m100_c00029{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00029{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m54_c00029{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m34_c00029{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m88_c00029{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m26_c00029{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00029{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00029{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00029{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m104_c00029{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m45_c00029{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00029{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md9_c00029{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00029{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00029{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mea_c00029{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00029{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mf_c00029{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00029{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00029{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00029{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00029{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00029{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00029{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00029{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma_c00029{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00029{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m56_c00029{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00029{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m47_c00029{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.med_c00029{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m73_c00029{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00029{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me2_c00029{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m19_c00029{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00029{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m60_c00029{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mc_c00029{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m94_c00029{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00029{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00029{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me5_c00029{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m97_c00029{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m38_c00029{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00029{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me3_c00029{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m27_c00029{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m8_c00029{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00029{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m117_c00029{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m98_c00029{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m12_c00029{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m77_c00029{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m119_c00029{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00029{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00029{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m13_c00029{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md8_c00029{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m55_c00029{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00029{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00029{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m32_c00029{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00029{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m92_c00029{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m83_c00029{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m35_c00029{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00029{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m53_c00029{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mee_c00029{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m28_c00029{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m17_c00029{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00029{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md3_c00029{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m51_c00029{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mec_c00029{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4_c00029{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m112_c00029{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md1_c00029{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m63_c00029{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00029{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m76_c00029{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00029{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00029{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00029{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mad_c00029{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00029{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md5_c00029{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.meb_c00029{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m50_c00029{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m43_c00029{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m42_c00029{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.maa_c00029{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m18_c00029{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00029{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m95_c00029{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m85_c00029{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00029{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m68_c00029{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.me6_c00029{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m91_c00029{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mde_c00029{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m78_c00029{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m69_c00029{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m37_c00029{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00029{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00029{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9_c00029{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00029{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m39_c00029{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00029{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00029{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00029{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00029{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m110_c00029{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00029{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m105_c00029{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mef_c00029{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m52_c00029{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m111_c00029{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m14_c00029{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00029{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00029{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m31_c00029{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00029{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00029{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m81_c00029{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me7_c00029{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mae_c00029{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);}
.m71_c00029{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m89_c00029{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00029{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m106_c00029{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mb_c00029{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00029{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m86_c00029{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00029{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m96_c00029{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00029{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00029{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m41_c00029{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00029{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m15_c00029{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mab_c00029{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00029{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m113_c00029{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m93_c00029{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00029{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m57_c00029{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00029{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00029{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.me8_c00029{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m99_c00029{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00029{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m74_c00029{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00029{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m23_c00029{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00029{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m90_c00029{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mba_c00029{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.mac_c00029{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00029{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00029{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m58_c00029{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m103_c00029{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00029{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00029{transform:matrix(0.427250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00029{transform:matrix(22.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(22.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(22.320000,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls0_c00029{letter-spacing:0.000000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{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__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00029{word-spacing:-15.767189px;}
.ws9_c00029{word-spacing:-12.000000px;}
.ws0_c00029{word-spacing:-10.666667px;}
.ws2_c00029{word-spacing:-5.751592px;}
.ws8_c00029{word-spacing:-4.166667px;}
.ws6_c00029{word-spacing:-0.041237px;}
.wsa_c00029{word-spacing:0.000000px;}
.ws7_c00029{word-spacing:0.675393px;}
.ws1_c00029{word-spacing:1.896261px;}
.ws4_c00029{word-spacing:4.046647px;}
.ws3_c00029{word-spacing:10.778542px;}
._0_c00029{margin-left:-24.000000px;}
.fc0_c00029{color:transparent;}
.fs8_c00029{font-size:24.000000px;}
.fs4_c00029{font-size:30.000000px;}
.fs5_c00029{font-size:42.000000px;}
.fs7_c00029{font-size:48.000000px;}
.fs6_c00029{font-size:54.000000px;}
.fs2_c00029{font-size:60.000000px;}
.fs1_c00029{font-size:66.000000px;}
.fs3_c00029{font-size:72.000000px;}
.fs0_c00029{font-size:84.000000px;}
.y0_c00029{bottom:0.000000px;}
.y69_c00029{bottom:190.500000px;}
.y38_c00029{bottom:191.850000px;}
.y37_c00029{bottom:207.300000px;}
.y68_c00029{bottom:209.550000px;}
.y36_c00029{bottom:221.700000px;}
.y67_c00029{bottom:227.850000px;}
.y35_c00029{bottom:235.800000px;}
.y66_c00029{bottom:246.600000px;}
.y34_c00029{bottom:249.450000px;}
.y33_c00029{bottom:263.550000px;}
.y65_c00029{bottom:264.600000px;}
.y32_c00029{bottom:278.250000px;}
.y64_c00029{bottom:283.650000px;}
.y31_c00029{bottom:292.650000px;}
.y63_c00029{bottom:301.350000px;}
.y30_c00029{bottom:306.300000px;}
.y62_c00029{bottom:319.950000px;}
.y2f_c00029{bottom:320.850000px;}
.y61_c00029{bottom:334.350000px;}
.y2e_c00029{bottom:334.500000px;}
.y2d_c00029{bottom:348.450000px;}
.y60_c00029{bottom:348.750000px;}
.y6e_c00029{bottom:360.300000px;}
.y5f_c00029{bottom:362.850000px;}
.y2c_c00029{bottom:363.300000px;}
.y2b_c00029{bottom:377.250000px;}
.y2a_c00029{bottom:391.350000px;}
.y29_c00029{bottom:405.000000px;}
.y28_c00029{bottom:419.700000px;}
.y5e_c00029{bottom:424.050000px;}
.y27_c00029{bottom:433.800000px;}
.y5d_c00029{bottom:442.050000px;}
.y26_c00029{bottom:451.050000px;}
.y5c_c00029{bottom:459.750000px;}
.y25_c00029{bottom:474.450000px;}
.y5b_c00029{bottom:487.500000px;}
.y24_c00029{bottom:492.150000px;}
.y5a_c00029{bottom:504.000000px;}
.y23_c00029{bottom:509.400000px;}
.y59_c00029{bottom:522.000000px;}
.y22_c00029{bottom:527.100000px;}
.y58_c00029{bottom:539.700000px;}
.y21_c00029{bottom:544.800000px;}
.y57_c00029{bottom:557.700000px;}
.y20_c00029{bottom:562.050000px;}
.y56_c00029{bottom:575.700000px;}
.y1f_c00029{bottom:579.750000px;}
.y55_c00029{bottom:593.400000px;}
.y1e_c00029{bottom:597.000000px;}
.y54_c00029{bottom:611.400000px;}
.y1d_c00029{bottom:613.500000px;}
.y53_c00029{bottom:629.700000px;}
.y1c_c00029{bottom:635.700000px;}
.y6d_c00029{bottom:644.700000px;}
.y52_c00029{bottom:651.000000px;}
.y1b_c00029{bottom:652.950000px;}
.y51_c00029{bottom:668.700000px;}
.y1a_c00029{bottom:670.950000px;}
.y50_c00029{bottom:686.700000px;}
.y19_c00029{bottom:687.900000px;}
.y4f_c00029{bottom:704.700000px;}
.y18_c00029{bottom:709.950000px;}
.y4e_c00029{bottom:722.400000px;}
.y17_c00029{bottom:736.200000px;}
.y4d_c00029{bottom:740.400000px;}
.y16_c00029{bottom:757.500000px;}
.y4c_c00029{bottom:758.100000px;}
.y6c_c00029{bottom:771.450000px;}
.y15_c00029{bottom:775.800000px;}
.y4b_c00029{bottom:776.100000px;}
.y4a_c00029{bottom:794.100000px;}
.y14_c00029{bottom:797.400000px;}
.y49_c00029{bottom:811.800000px;}
.y13_c00029{bottom:815.700000px;}
.y48_c00029{bottom:838.050000px;}
.y6b_c00029{bottom:840.600000px;}
.y12_c00029{bottom:841.650000px;}
.y47_c00029{bottom:856.050000px;}
.y11_c00029{bottom:859.650000px;}
.y46_c00029{bottom:873.750000px;}
.y6a_c00029{bottom:876.300000px;}
.y10_c00029{bottom:880.950000px;}
.yf_c00029{bottom:899.700000px;}
.y45_c00029{bottom:900.300000px;}
.y44_c00029{bottom:918.600000px;}
.ye_c00029{bottom:919.800000px;}
.y43_c00029{bottom:936.300000px;}
.yd_c00029{bottom:939.300000px;}
.y42_c00029{bottom:954.300000px;}
.yc_c00029{bottom:960.300000px;}
.y41_c00029{bottom:972.000000px;}
.yb_c00029{bottom:979.350000px;}
.y40_c00029{bottom:990.000000px;}
.ya_c00029{bottom:997.350000px;}
.y3f_c00029{bottom:1007.700000px;}
.y9_c00029{bottom:1015.350000px;}
.y3e_c00029{bottom:1029.300000px;}
.y8_c00029{bottom:1032.600000px;}
.y3d_c00029{bottom:1047.600000px;}
.y7_c00029{bottom:1050.900000px;}
.y6_c00029{bottom:1068.900000px;}
.y3c_c00029{bottom:1069.950000px;}
.y5_c00029{bottom:1090.050000px;}
.y3b_c00029{bottom:1091.550000px;}
.y4_c00029{bottom:1108.800000px;}
.y3a_c00029{bottom:1110.300000px;}
.y3_c00029{bottom:1126.800000px;}
.y39_c00029{bottom:1128.300000px;}
.y2_c00029{bottom:1143.750000px;}
.y1_c00029{bottom:1154.550000px;}
.ha_c00029{height:24.000000px;}
.h6_c00029{height:30.000000px;}
.h7_c00029{height:42.000000px;}
.h9_c00029{height:48.000000px;}
.h8_c00029{height:54.000000px;}
.h4_c00029{height:60.000000px;}
.h3_c00029{height:66.000000px;}
.h5_c00029{height:72.000000px;}
.h2_c00029{height:84.000000px;}
.h1_c00029{height:1278.750000px;}
.h0_c00029{height:1279.079957px;}
.w0_c00029{width:948.600036px;}
.w1_c00029{width:948.750000px;}
.x0_c00029{left:0.000000px;}
.x3_c00029{left:188.700000px;}
.x5b_c00029{left:191.100000px;}
.x6c_c00029{left:192.300000px;}
.x4_c00029{left:199.200000px;}
.x97_c00029{left:203.100000px;}
.x1_c00029{left:204.150000px;}
.xd_c00029{left:205.500000px;}
.x23_c00029{left:207.450000px;}
.x35_c00029{left:208.500000px;}
.x56_c00029{left:209.550000px;}
.x74_c00029{left:210.600000px;}
.x6d_c00029{left:215.700000px;}
.x5_c00029{left:218.100000px;}
.x8d_c00029{left:219.600000px;}
.x6f_c00029{left:223.200000px;}
.x1b_c00029{left:225.300000px;}
.x45_c00029{left:226.800000px;}
.x5e_c00029{left:227.850000px;}
.x8a_c00029{left:229.650000px;}
.x84_c00029{left:230.700000px;}
.x57_c00029{left:231.900000px;}
.x7c_c00029{left:235.050000px;}
.x8b_c00029{left:236.550000px;}
.x3d_c00029{left:237.750000px;}
.x70_c00029{left:239.100000px;}
.x4c_c00029{left:241.050000px;}
.x36_c00029{left:242.400000px;}
.x68_c00029{left:243.450000px;}
.x53_c00029{left:244.650000px;}
.x7d_c00029{left:247.950000px;}
.x15_c00029{left:251.100000px;}
.x2f_c00029{left:253.500000px;}
.x87_c00029{left:254.550000px;}
.x60_c00029{left:256.350000px;}
.xe_c00029{left:257.400000px;}
.x8c_c00029{left:258.450000px;}
.x58_c00029{left:259.650000px;}
.x24_c00029{left:261.450000px;}
.x98_c00029{left:262.800000px;}
.x93_c00029{left:263.850000px;}
.x43_c00029{left:265.500000px;}
.x7e_c00029{left:267.450000px;}
.x5f_c00029{left:268.500000px;}
.xf_c00029{left:271.050000px;}
.x16_c00029{left:272.400000px;}
.x46_c00029{left:273.600000px;}
.x5c_c00029{left:276.450000px;}
.x6_c00029{left:277.500000px;}
.x37_c00029{left:279.900000px;}
.x1c_c00029{left:281.850000px;}
.x50_c00029{left:283.350000px;}
.x69_c00029{left:284.550000px;}
.x59_c00029{left:285.600000px;}
.x88_c00029{left:287.250000px;}
.x10_c00029{left:288.300000px;}
.x17_c00029{left:290.100000px;}
.x47_c00029{left:292.350000px;}
.x1d_c00029{left:293.700000px;}
.x8e_c00029{left:295.950000px;}
.x3e_c00029{left:297.900000px;}
.x44_c00029{left:299.400000px;}
.x85_c00029{left:300.450000px;}
.x30_c00029{left:301.650000px;}
.x86_c00029{left:303.000000px;}
.x75_c00029{left:304.950000px;}
.x38_c00029{left:306.150000px;}
.x95_c00029{left:307.350000px;}
.x71_c00029{left:308.550000px;}
.x82_c00029{left:310.800000px;}
.x25_c00029{left:315.150000px;}
.x89_c00029{left:316.800000px;}
.x96_c00029{left:318.150000px;}
.x29_c00029{left:321.000000px;}
.x7_c00029{left:322.200000px;}
.x54_c00029{left:325.050000px;}
.x3f_c00029{left:327.000000px;}
.x91_c00029{left:328.650000px;}
.x5a_c00029{left:330.900000px;}
.x5d_c00029{left:332.550000px;}
.x94_c00029{left:334.050000px;}
.x73_c00029{left:335.400000px;}
.x4f_c00029{left:340.950000px;}
.x83_c00029{left:343.650000px;}
.x40_c00029{left:345.000000px;}
.x55_c00029{left:347.700000px;}
.x31_c00029{left:349.950000px;}
.x8_c00029{left:351.300000px;}
.x7a_c00029{left:352.800000px;}
.x1e_c00029{left:355.950000px;}
.x48_c00029{left:358.950000px;}
.x9_c00029{left:361.350000px;}
.x51_c00029{left:368.700000px;}
.x76_c00029{left:370.500000px;}
.x32_c00029{left:371.550000px;}
.x92_c00029{left:375.450000px;}
.x61_c00029{left:376.650000px;}
.x2a_c00029{left:378.900000px;}
.x63_c00029{left:381.300000px;}
.x18_c00029{left:382.950000px;}
.x11_c00029{left:384.000000px;}
.x39_c00029{left:386.100000px;}
.x1f_c00029{left:388.050000px;}
.x6a_c00029{left:391.800000px;}
.x26_c00029{left:394.950000px;}
.x49_c00029{left:396.450000px;}
.x33_c00029{left:400.650000px;}
.x19_c00029{left:401.700000px;}
.x3a_c00029{left:404.850000px;}
.xa_c00029{left:408.900000px;}
.x6e_c00029{left:411.150000px;}
.x12_c00029{left:412.500000px;}
.x2b_c00029{left:415.200000px;}
.x7f_c00029{left:420.450000px;}
.x64_c00029{left:423.000000px;}
.x41_c00029{left:424.200000px;}
.x34_c00029{left:425.550000px;}
.x8f_c00029{left:426.900000px;}
.x2_c00029{left:429.150000px;}
.xb_c00029{left:431.250000px;}
.x4d_c00029{left:433.050000px;}
.x2c_c00029{left:437.550000px;}
.x65_c00029{left:439.200000px;}
.x4a_c00029{left:441.450000px;}
.x3b_c00029{left:442.950000px;}
.x90_c00029{left:444.900000px;}
.x1a_c00029{left:446.400000px;}
.x27_c00029{left:450.450000px;}
.x2d_c00029{left:452.250000px;}
.x20_c00029{left:453.600000px;}
.x13_c00029{left:456.750000px;}
.x4e_c00029{left:458.550000px;}
.x77_c00029{left:460.800000px;}
.x81_c00029{left:462.750000px;}
.x4b_c00029{left:466.350000px;}
.x28_c00029{left:468.150000px;}
.x62_c00029{left:469.200000px;}
.x3c_c00029{left:470.700000px;}
.x72_c00029{left:472.050000px;}
.x14_c00029{left:475.500000px;}
.x21_c00029{left:477.000000px;}
.x78_c00029{left:481.350000px;}
.x42_c00029{left:484.350000px;}
.x66_c00029{left:486.750000px;}
.x7b_c00029{left:488.850000px;}
.x22_c00029{left:492.900000px;}
.x80_c00029{left:493.950000px;}
.x6b_c00029{left:496.200000px;}
.x2e_c00029{left:498.300000px;}
.x67_c00029{left:502.950000px;}
.xc_c00029{left:510.150000px;}
.x52_c00029{left:512.850000px;}
.x79_c00029{left:523.800000px;}
.xa4_c00029{left:545.250000px;}
.xc7_c00029{left:546.450000px;}
.xe7_c00029{left:547.500000px;}
.x13d_c00029{left:561.900000px;}
.x99_c00029{left:563.400000px;}
.xec_c00029{left:565.500000px;}
.x137_c00029{left:569.250000px;}
.xb6_c00029{left:573.450000px;}
.x9a_c00029{left:582.450000px;}
.x138_c00029{left:583.650000px;}
.x11c_c00029{left:584.850000px;}
.x12d_c00029{left:586.350000px;}
.x13b_c00029{left:587.550000px;}
.xd8_c00029{left:589.950000px;}
.xab_c00029{left:591.000000px;}
.xd1_c00029{left:592.200000px;}
.xba_c00029{left:593.250000px;}
.xb7_c00029{left:595.350000px;}
.x9b_c00029{left:596.850000px;}
.xe8_c00029{left:601.800000px;}
.xbf_c00029{left:604.500000px;}
.xf4_c00029{left:607.350000px;}
.xcb_c00029{left:608.700000px;}
.x9c_c00029{left:610.500000px;}
.xf7_c00029{left:611.550000px;}
.xa5_c00029{left:612.900000px;}
.xd2_c00029{left:614.100000px;}
.x116_c00029{left:615.750000px;}
.xf5_c00029{left:617.850000px;}
.xfd_c00029{left:618.900000px;}
.x13a_c00029{left:621.150000px;}
.x10e_c00029{left:622.800000px;}
.xed_c00029{left:623.850000px;}
.xd9_c00029{left:625.650000px;}
.xb1_c00029{left:626.700000px;}
.xe9_c00029{left:628.500000px;}
.x123_c00029{left:629.850000px;}
.x107_c00029{left:631.350000px;}
.xe3_c00029{left:632.550000px;}
.x117_c00029{left:633.750000px;}
.xb8_c00029{left:638.850000px;}
.x131_c00029{left:641.400000px;}
.xc8_c00029{left:643.200000px;}
.x13c_c00029{left:644.400000px;}
.x129_c00029{left:645.750000px;}
.xfe_c00029{left:647.250000px;}
.xac_c00029{left:648.600000px;}
.x11b_c00029{left:649.950000px;}
.x112_c00029{left:652.650000px;}
.xcc_c00029{left:655.500000px;}
.xe0_c00029{left:657.750000px;}
.xda_c00029{left:658.800000px;}
.xd3_c00029{left:660.600000px;}
.x13e_c00029{left:661.950000px;}
.xea_c00029{left:663.750000px;}
.xee_c00029{left:666.000000px;}
.x102_c00029{left:668.400000px;}
.xf8_c00029{left:669.450000px;}
.xbb_c00029{left:672.150000px;}
.x9d_c00029{left:674.250000px;}
.xc0_c00029{left:676.200000px;}
.x132_c00029{left:678.450000px;}
.x13f_c00029{left:679.950000px;}
.xff_c00029{left:681.150000px;}
.xd4_c00029{left:682.950000px;}
.xf9_c00029{left:687.150000px;}
.xef_c00029{left:688.350000px;}
.xc5_c00029{left:689.550000px;}
.x118_c00029{left:690.600000px;}
.x10f_c00029{left:692.250000px;}
.x113_c00029{left:694.350000px;}
.x135_c00029{left:696.150000px;}
.xb2_c00029{left:697.200000px;}
.x100_c00029{left:699.450000px;}
.xa6_c00029{left:702.150000px;}
.xdb_c00029{left:704.550000px;}
.xeb_c00029{left:705.900000px;}
.xad_c00029{left:706.950000px;}
.x12a_c00029{left:708.300000px;}
.x142_c00029{left:709.950000px;}
.x9e_c00029{left:711.000000px;}
.xf0_c00029{left:713.850000px;}
.xa7_c00029{left:715.050000px;}
.x120_c00029{left:716.550000px;}
.x10a_c00029{left:717.750000px;}
.x110_c00029{left:720.300000px;}
.xe1_c00029{left:722.850000px;}
.xd5_c00029{left:726.150000px;}
.xc6_c00029{left:727.800000px;}
.x139_c00029{left:729.150000px;}
.xae_c00029{left:732.150000px;}
.xbc_c00029{left:734.550000px;}
.x11d_c00029{left:739.050000px;}
.x103_c00029{left:740.400000px;}
.x10b_c00029{left:742.650000px;}
.x9f_c00029{left:743.700000px;}
.xdc_c00029{left:745.200000px;}
.x126_c00029{left:747.600000px;}
.xcd_c00029{left:749.100000px;}
.x124_c00029{left:750.600000px;}
.xe4_c00029{left:754.200000px;}
.x101_c00029{left:755.250000px;}
.xce_c00029{left:756.600000px;}
.x127_c00029{left:758.100000px;}
.xf1_c00029{left:759.600000px;}
.xbd_c00029{left:761.850000px;}
.x12b_c00029{left:763.050000px;}
.x104_c00029{left:764.550000px;}
.x115_c00029{left:766.500000px;}
.xb9_c00029{left:771.750000px;}
.xfa_c00029{left:774.150000px;}
.xa8_c00029{left:775.800000px;}
.x111_c00029{left:776.850000px;}
.xb3_c00029{left:777.900000px;}
.xdd_c00029{left:779.100000px;}
.xd6_c00029{left:780.900000px;}
.x12e_c00029{left:782.250000px;}
.xa0_c00029{left:784.350000px;}
.x133_c00029{left:788.250000px;}
.xaf_c00029{left:789.450000px;}
.x105_c00029{left:790.500000px;}
.x140_c00029{left:791.550000px;}
.x125_c00029{left:792.750000px;}
.xe2_c00029{left:793.800000px;}
.xc1_c00029{left:795.000000px;}
.x141_c00029{left:796.050000px;}
.xbe_c00029{left:799.950000px;}
.xb4_c00029{left:801.600000px;}
.x10c_c00029{left:802.800000px;}
.x119_c00029{left:805.800000px;}
.xf2_c00029{left:807.450000px;}
.xa1_c00029{left:809.850000px;}
.xb0_c00029{left:811.050000px;}
.xc9_c00029{left:813.300000px;}
.x128_c00029{left:816.450000px;}
.xf3_c00029{left:818.550000px;}
.x12f_c00029{left:820.800000px;}
.x108_c00029{left:822.300000px;}
.x114_c00029{left:824.700000px;}
.xc2_c00029{left:826.350000px;}
.x12c_c00029{left:828.150000px;}
.xa9_c00029{left:831.150000px;}
.xa2_c00029{left:832.500000px;}
.xfb_c00029{left:834.300000px;}
.xc3_c00029{left:835.350000px;}
.xd7_c00029{left:837.750000px;}
.xe5_c00029{left:840.900000px;}
.xcf_c00029{left:841.950000px;}
.x10d_c00029{left:843.450000px;}
.x130_c00029{left:844.500000px;}
.xca_c00029{left:845.700000px;}
.x121_c00029{left:846.900000px;}
.xf6_c00029{left:849.150000px;}
.x106_c00029{left:851.700000px;}
.xe6_c00029{left:852.750000px;}
.xde_c00029{left:855.750000px;}
.xd0_c00029{left:859.650000px;}
.xb5_c00029{left:861.000000px;}
.xc4_c00029{left:862.350000px;}
.xaa_c00029{left:863.550000px;}
.x11e_c00029{left:864.600000px;}
.xdf_c00029{left:865.800000px;}
.x109_c00029{left:869.100000px;}
.xa3_c00029{left:871.050000px;}
.xfc_c00029{left:872.400000px;}
.x134_c00029{left:873.600000px;}
.x11f_c00029{left:877.500000px;}
.x122_c00029{left:883.200000px;}
.x11a_c00029{left:887.250000px;}
.x136_c00029{left:888.450000px;}
.x146_c00029{left:941.100000px;}
.x147_c00029{left:942.150000px;}
.x144_c00029{left:943.500000px;}
.x143_c00029{left:945.750000px;}
.x145_c00029{left:947.550000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ws5_c00029{word-spacing:-14.015279pt;}
.ws9_c00029{word-spacing:-10.666667pt;}
.ws0_c00029{word-spacing:-9.481481pt;}
.ws2_c00029{word-spacing:-5.112527pt;}
.ws8_c00029{word-spacing:-3.703704pt;}
.ws6_c00029{word-spacing:-0.036655pt;}
.wsa_c00029{word-spacing:0.000000pt;}
.ws7_c00029{word-spacing:0.600349pt;}
.ws1_c00029{word-spacing:1.685565pt;}
.ws4_c00029{word-spacing:3.597020pt;}
.ws3_c00029{word-spacing:9.580926pt;}
._0_c00029{margin-left:-21.333333pt;}
.fs8_c00029{font-size:21.333333pt;}
.fs4_c00029{font-size:26.666667pt;}
.fs5_c00029{font-size:37.333333pt;}
.fs7_c00029{font-size:42.666667pt;}
.fs6_c00029{font-size:48.000000pt;}
.fs2_c00029{font-size:53.333333pt;}
.fs1_c00029{font-size:58.666667pt;}
.fs3_c00029{font-size:64.000000pt;}
.fs0_c00029{font-size:74.666667pt;}
.y0_c00029{bottom:0.000000pt;}
.y69_c00029{bottom:169.333333pt;}
.y38_c00029{bottom:170.533333pt;}
.y37_c00029{bottom:184.266667pt;}
.y68_c00029{bottom:186.266667pt;}
.y36_c00029{bottom:197.066667pt;}
.y67_c00029{bottom:202.533333pt;}
.y35_c00029{bottom:209.600000pt;}
.y66_c00029{bottom:219.200000pt;}
.y34_c00029{bottom:221.733333pt;}
.y33_c00029{bottom:234.266667pt;}
.y65_c00029{bottom:235.200000pt;}
.y32_c00029{bottom:247.333333pt;}
.y64_c00029{bottom:252.133333pt;}
.y31_c00029{bottom:260.133333pt;}
.y63_c00029{bottom:267.866667pt;}
.y30_c00029{bottom:272.266667pt;}
.y62_c00029{bottom:284.400000pt;}
.y2f_c00029{bottom:285.200000pt;}
.y61_c00029{bottom:297.200000pt;}
.y2e_c00029{bottom:297.333333pt;}
.y2d_c00029{bottom:309.733333pt;}
.y60_c00029{bottom:310.000000pt;}
.y6e_c00029{bottom:320.266667pt;}
.y5f_c00029{bottom:322.533333pt;}
.y2c_c00029{bottom:322.933333pt;}
.y2b_c00029{bottom:335.333333pt;}
.y2a_c00029{bottom:347.866667pt;}
.y29_c00029{bottom:360.000000pt;}
.y28_c00029{bottom:373.066667pt;}
.y5e_c00029{bottom:376.933333pt;}
.y27_c00029{bottom:385.600000pt;}
.y5d_c00029{bottom:392.933333pt;}
.y26_c00029{bottom:400.933333pt;}
.y5c_c00029{bottom:408.666667pt;}
.y25_c00029{bottom:421.733333pt;}
.y5b_c00029{bottom:433.333333pt;}
.y24_c00029{bottom:437.466667pt;}
.y5a_c00029{bottom:448.000000pt;}
.y23_c00029{bottom:452.800000pt;}
.y59_c00029{bottom:464.000000pt;}
.y22_c00029{bottom:468.533333pt;}
.y58_c00029{bottom:479.733333pt;}
.y21_c00029{bottom:484.266667pt;}
.y57_c00029{bottom:495.733333pt;}
.y20_c00029{bottom:499.600000pt;}
.y56_c00029{bottom:511.733333pt;}
.y1f_c00029{bottom:515.333333pt;}
.y55_c00029{bottom:527.466667pt;}
.y1e_c00029{bottom:530.666667pt;}
.y54_c00029{bottom:543.466667pt;}
.y1d_c00029{bottom:545.333333pt;}
.y53_c00029{bottom:559.733333pt;}
.y1c_c00029{bottom:565.066667pt;}
.y6d_c00029{bottom:573.066667pt;}
.y52_c00029{bottom:578.666667pt;}
.y1b_c00029{bottom:580.400000pt;}
.y51_c00029{bottom:594.400000pt;}
.y1a_c00029{bottom:596.400000pt;}
.y50_c00029{bottom:610.400000pt;}
.y19_c00029{bottom:611.466667pt;}
.y4f_c00029{bottom:626.400000pt;}
.y18_c00029{bottom:631.066667pt;}
.y4e_c00029{bottom:642.133333pt;}
.y17_c00029{bottom:654.400000pt;}
.y4d_c00029{bottom:658.133333pt;}
.y16_c00029{bottom:673.333333pt;}
.y4c_c00029{bottom:673.866667pt;}
.y6c_c00029{bottom:685.733333pt;}
.y15_c00029{bottom:689.600000pt;}
.y4b_c00029{bottom:689.866667pt;}
.y4a_c00029{bottom:705.866667pt;}
.y14_c00029{bottom:708.800000pt;}
.y49_c00029{bottom:721.600000pt;}
.y13_c00029{bottom:725.066667pt;}
.y48_c00029{bottom:744.933333pt;}
.y6b_c00029{bottom:747.200000pt;}
.y12_c00029{bottom:748.133333pt;}
.y47_c00029{bottom:760.933333pt;}
.y11_c00029{bottom:764.133333pt;}
.y46_c00029{bottom:776.666667pt;}
.y6a_c00029{bottom:778.933333pt;}
.y10_c00029{bottom:783.066667pt;}
.yf_c00029{bottom:799.733333pt;}
.y45_c00029{bottom:800.266667pt;}
.y44_c00029{bottom:816.533333pt;}
.ye_c00029{bottom:817.600000pt;}
.y43_c00029{bottom:832.266667pt;}
.yd_c00029{bottom:834.933333pt;}
.y42_c00029{bottom:848.266667pt;}
.yc_c00029{bottom:853.600000pt;}
.y41_c00029{bottom:864.000000pt;}
.yb_c00029{bottom:870.533333pt;}
.y40_c00029{bottom:880.000000pt;}
.ya_c00029{bottom:886.533333pt;}
.y3f_c00029{bottom:895.733333pt;}
.y9_c00029{bottom:902.533333pt;}
.y3e_c00029{bottom:914.933333pt;}
.y8_c00029{bottom:917.866667pt;}
.y3d_c00029{bottom:931.200000pt;}
.y7_c00029{bottom:934.133333pt;}
.y6_c00029{bottom:950.133333pt;}
.y3c_c00029{bottom:951.066667pt;}
.y5_c00029{bottom:968.933333pt;}
.y3b_c00029{bottom:970.266667pt;}
.y4_c00029{bottom:985.600000pt;}
.y3a_c00029{bottom:986.933333pt;}
.y3_c00029{bottom:1001.600000pt;}
.y39_c00029{bottom:1002.933333pt;}
.y2_c00029{bottom:1016.666667pt;}
.y1_c00029{bottom:1026.266667pt;}
.ha_c00029{height:21.333333pt;}
.h6_c00029{height:26.666667pt;}
.h7_c00029{height:37.333333pt;}
.h9_c00029{height:42.666667pt;}
.h8_c00029{height:48.000000pt;}
.h4_c00029{height:53.333333pt;}
.h3_c00029{height:58.666667pt;}
.h5_c00029{height:64.000000pt;}
.h2_c00029{height:74.666667pt;}
.h1_c00029{height:1136.666667pt;}
.h0_c00029{height:1136.959961pt;}
.w0_c00029{width:843.200032pt;}
.w1_c00029{width:843.333333pt;}
.x0_c00029{left:0.000000pt;}
.x3_c00029{left:167.733333pt;}
.x5b_c00029{left:169.866667pt;}
.x6c_c00029{left:170.933333pt;}
.x4_c00029{left:177.066667pt;}
.x97_c00029{left:180.533333pt;}
.x1_c00029{left:181.466667pt;}
.xd_c00029{left:182.666667pt;}
.x23_c00029{left:184.400000pt;}
.x35_c00029{left:185.333333pt;}
.x56_c00029{left:186.266667pt;}
.x74_c00029{left:187.200000pt;}
.x6d_c00029{left:191.733333pt;}
.x5_c00029{left:193.866667pt;}
.x8d_c00029{left:195.200000pt;}
.x6f_c00029{left:198.400000pt;}
.x1b_c00029{left:200.266667pt;}
.x45_c00029{left:201.600000pt;}
.x5e_c00029{left:202.533333pt;}
.x8a_c00029{left:204.133333pt;}
.x84_c00029{left:205.066667pt;}
.x57_c00029{left:206.133333pt;}
.x7c_c00029{left:208.933333pt;}
.x8b_c00029{left:210.266667pt;}
.x3d_c00029{left:211.333333pt;}
.x70_c00029{left:212.533333pt;}
.x4c_c00029{left:214.266667pt;}
.x36_c00029{left:215.466667pt;}
.x68_c00029{left:216.400000pt;}
.x53_c00029{left:217.466667pt;}
.x7d_c00029{left:220.400000pt;}
.x15_c00029{left:223.200000pt;}
.x2f_c00029{left:225.333333pt;}
.x87_c00029{left:226.266667pt;}
.x60_c00029{left:227.866667pt;}
.xe_c00029{left:228.800000pt;}
.x8c_c00029{left:229.733333pt;}
.x58_c00029{left:230.800000pt;}
.x24_c00029{left:232.400000pt;}
.x98_c00029{left:233.600000pt;}
.x93_c00029{left:234.533333pt;}
.x43_c00029{left:236.000000pt;}
.x7e_c00029{left:237.733333pt;}
.x5f_c00029{left:238.666667pt;}
.xf_c00029{left:240.933333pt;}
.x16_c00029{left:242.133333pt;}
.x46_c00029{left:243.200000pt;}
.x5c_c00029{left:245.733333pt;}
.x6_c00029{left:246.666667pt;}
.x37_c00029{left:248.800000pt;}
.x1c_c00029{left:250.533333pt;}
.x50_c00029{left:251.866667pt;}
.x69_c00029{left:252.933333pt;}
.x59_c00029{left:253.866667pt;}
.x88_c00029{left:255.333333pt;}
.x10_c00029{left:256.266667pt;}
.x17_c00029{left:257.866667pt;}
.x47_c00029{left:259.866667pt;}
.x1d_c00029{left:261.066667pt;}
.x8e_c00029{left:263.066667pt;}
.x3e_c00029{left:264.800000pt;}
.x44_c00029{left:266.133333pt;}
.x85_c00029{left:267.066667pt;}
.x30_c00029{left:268.133333pt;}
.x86_c00029{left:269.333333pt;}
.x75_c00029{left:271.066667pt;}
.x38_c00029{left:272.133333pt;}
.x95_c00029{left:273.200000pt;}
.x71_c00029{left:274.266667pt;}
.x82_c00029{left:276.266667pt;}
.x25_c00029{left:280.133333pt;}
.x89_c00029{left:281.600000pt;}
.x96_c00029{left:282.800000pt;}
.x29_c00029{left:285.333333pt;}
.x7_c00029{left:286.400000pt;}
.x54_c00029{left:288.933333pt;}
.x3f_c00029{left:290.666667pt;}
.x91_c00029{left:292.133333pt;}
.x5a_c00029{left:294.133333pt;}
.x5d_c00029{left:295.600000pt;}
.x94_c00029{left:296.933333pt;}
.x73_c00029{left:298.133333pt;}
.x4f_c00029{left:303.066667pt;}
.x83_c00029{left:305.466667pt;}
.x40_c00029{left:306.666667pt;}
.x55_c00029{left:309.066667pt;}
.x31_c00029{left:311.066667pt;}
.x8_c00029{left:312.266667pt;}
.x7a_c00029{left:313.600000pt;}
.x1e_c00029{left:316.400000pt;}
.x48_c00029{left:319.066667pt;}
.x9_c00029{left:321.200000pt;}
.x51_c00029{left:327.733333pt;}
.x76_c00029{left:329.333333pt;}
.x32_c00029{left:330.266667pt;}
.x92_c00029{left:333.733333pt;}
.x61_c00029{left:334.800000pt;}
.x2a_c00029{left:336.800000pt;}
.x63_c00029{left:338.933333pt;}
.x18_c00029{left:340.400000pt;}
.x11_c00029{left:341.333333pt;}
.x39_c00029{left:343.200000pt;}
.x1f_c00029{left:344.933333pt;}
.x6a_c00029{left:348.266667pt;}
.x26_c00029{left:351.066667pt;}
.x49_c00029{left:352.400000pt;}
.x33_c00029{left:356.133333pt;}
.x19_c00029{left:357.066667pt;}
.x3a_c00029{left:359.866667pt;}
.xa_c00029{left:363.466667pt;}
.x6e_c00029{left:365.466667pt;}
.x12_c00029{left:366.666667pt;}
.x2b_c00029{left:369.066667pt;}
.x7f_c00029{left:373.733333pt;}
.x64_c00029{left:376.000000pt;}
.x41_c00029{left:377.066667pt;}
.x34_c00029{left:378.266667pt;}
.x8f_c00029{left:379.466667pt;}
.x2_c00029{left:381.466667pt;}
.xb_c00029{left:383.333333pt;}
.x4d_c00029{left:384.933333pt;}
.x2c_c00029{left:388.933333pt;}
.x65_c00029{left:390.400000pt;}
.x4a_c00029{left:392.400000pt;}
.x3b_c00029{left:393.733333pt;}
.x90_c00029{left:395.466667pt;}
.x1a_c00029{left:396.800000pt;}
.x27_c00029{left:400.400000pt;}
.x2d_c00029{left:402.000000pt;}
.x20_c00029{left:403.200000pt;}
.x13_c00029{left:406.000000pt;}
.x4e_c00029{left:407.600000pt;}
.x77_c00029{left:409.600000pt;}
.x81_c00029{left:411.333333pt;}
.x4b_c00029{left:414.533333pt;}
.x28_c00029{left:416.133333pt;}
.x62_c00029{left:417.066667pt;}
.x3c_c00029{left:418.400000pt;}
.x72_c00029{left:419.600000pt;}
.x14_c00029{left:422.666667pt;}
.x21_c00029{left:424.000000pt;}
.x78_c00029{left:427.866667pt;}
.x42_c00029{left:430.533333pt;}
.x66_c00029{left:432.666667pt;}
.x7b_c00029{left:434.533333pt;}
.x22_c00029{left:438.133333pt;}
.x80_c00029{left:439.066667pt;}
.x6b_c00029{left:441.066667pt;}
.x2e_c00029{left:442.933333pt;}
.x67_c00029{left:447.066667pt;}
.xc_c00029{left:453.466667pt;}
.x52_c00029{left:455.866667pt;}
.x79_c00029{left:465.600000pt;}
.xa4_c00029{left:484.666667pt;}
.xc7_c00029{left:485.733333pt;}
.xe7_c00029{left:486.666667pt;}
.x13d_c00029{left:499.466667pt;}
.x99_c00029{left:500.800000pt;}
.xec_c00029{left:502.666667pt;}
.x137_c00029{left:506.000000pt;}
.xb6_c00029{left:509.733333pt;}
.x9a_c00029{left:517.733333pt;}
.x138_c00029{left:518.800000pt;}
.x11c_c00029{left:519.866667pt;}
.x12d_c00029{left:521.200000pt;}
.x13b_c00029{left:522.266667pt;}
.xd8_c00029{left:524.400000pt;}
.xab_c00029{left:525.333333pt;}
.xd1_c00029{left:526.400000pt;}
.xba_c00029{left:527.333333pt;}
.xb7_c00029{left:529.200000pt;}
.x9b_c00029{left:530.533333pt;}
.xe8_c00029{left:534.933333pt;}
.xbf_c00029{left:537.333333pt;}
.xf4_c00029{left:539.866667pt;}
.xcb_c00029{left:541.066667pt;}
.x9c_c00029{left:542.666667pt;}
.xf7_c00029{left:543.600000pt;}
.xa5_c00029{left:544.800000pt;}
.xd2_c00029{left:545.866667pt;}
.x116_c00029{left:547.333333pt;}
.xf5_c00029{left:549.200000pt;}
.xfd_c00029{left:550.133333pt;}
.x13a_c00029{left:552.133333pt;}
.x10e_c00029{left:553.600000pt;}
.xed_c00029{left:554.533333pt;}
.xd9_c00029{left:556.133333pt;}
.xb1_c00029{left:557.066667pt;}
.xe9_c00029{left:558.666667pt;}
.x123_c00029{left:559.866667pt;}
.x107_c00029{left:561.200000pt;}
.xe3_c00029{left:562.266667pt;}
.x117_c00029{left:563.333333pt;}
.xb8_c00029{left:567.866667pt;}
.x131_c00029{left:570.133333pt;}
.xc8_c00029{left:571.733333pt;}
.x13c_c00029{left:572.800000pt;}
.x129_c00029{left:574.000000pt;}
.xfe_c00029{left:575.333333pt;}
.xac_c00029{left:576.533333pt;}
.x11b_c00029{left:577.733333pt;}
.x112_c00029{left:580.133333pt;}
.xcc_c00029{left:582.666667pt;}
.xe0_c00029{left:584.666667pt;}
.xda_c00029{left:585.600000pt;}
.xd3_c00029{left:587.200000pt;}
.x13e_c00029{left:588.400000pt;}
.xea_c00029{left:590.000000pt;}
.xee_c00029{left:592.000000pt;}
.x102_c00029{left:594.133333pt;}
.xf8_c00029{left:595.066667pt;}
.xbb_c00029{left:597.466667pt;}
.x9d_c00029{left:599.333333pt;}
.xc0_c00029{left:601.066667pt;}
.x132_c00029{left:603.066667pt;}
.x13f_c00029{left:604.400000pt;}
.xff_c00029{left:605.466667pt;}
.xd4_c00029{left:607.066667pt;}
.xf9_c00029{left:610.800000pt;}
.xef_c00029{left:611.866667pt;}
.xc5_c00029{left:612.933333pt;}
.x118_c00029{left:613.866667pt;}
.x10f_c00029{left:615.333333pt;}
.x113_c00029{left:617.200000pt;}
.x135_c00029{left:618.800000pt;}
.xb2_c00029{left:619.733333pt;}
.x100_c00029{left:621.733333pt;}
.xa6_c00029{left:624.133333pt;}
.xdb_c00029{left:626.266667pt;}
.xeb_c00029{left:627.466667pt;}
.xad_c00029{left:628.400000pt;}
.x12a_c00029{left:629.600000pt;}
.x142_c00029{left:631.066667pt;}
.x9e_c00029{left:632.000000pt;}
.xf0_c00029{left:634.533333pt;}
.xa7_c00029{left:635.600000pt;}
.x120_c00029{left:636.933333pt;}
.x10a_c00029{left:638.000000pt;}
.x110_c00029{left:640.266667pt;}
.xe1_c00029{left:642.533333pt;}
.xd5_c00029{left:645.466667pt;}
.xc6_c00029{left:646.933333pt;}
.x139_c00029{left:648.133333pt;}
.xae_c00029{left:650.800000pt;}
.xbc_c00029{left:652.933333pt;}
.x11d_c00029{left:656.933333pt;}
.x103_c00029{left:658.133333pt;}
.x10b_c00029{left:660.133333pt;}
.x9f_c00029{left:661.066667pt;}
.xdc_c00029{left:662.400000pt;}
.x126_c00029{left:664.533333pt;}
.xcd_c00029{left:665.866667pt;}
.x124_c00029{left:667.200000pt;}
.xe4_c00029{left:670.400000pt;}
.x101_c00029{left:671.333333pt;}
.xce_c00029{left:672.533333pt;}
.x127_c00029{left:673.866667pt;}
.xf1_c00029{left:675.200000pt;}
.xbd_c00029{left:677.200000pt;}
.x12b_c00029{left:678.266667pt;}
.x104_c00029{left:679.600000pt;}
.x115_c00029{left:681.333333pt;}
.xb9_c00029{left:686.000000pt;}
.xfa_c00029{left:688.133333pt;}
.xa8_c00029{left:689.600000pt;}
.x111_c00029{left:690.533333pt;}
.xb3_c00029{left:691.466667pt;}
.xdd_c00029{left:692.533333pt;}
.xd6_c00029{left:694.133333pt;}
.x12e_c00029{left:695.333333pt;}
.xa0_c00029{left:697.200000pt;}
.x133_c00029{left:700.666667pt;}
.xaf_c00029{left:701.733333pt;}
.x105_c00029{left:702.666667pt;}
.x140_c00029{left:703.600000pt;}
.x125_c00029{left:704.666667pt;}
.xe2_c00029{left:705.600000pt;}
.xc1_c00029{left:706.666667pt;}
.x141_c00029{left:707.600000pt;}
.xbe_c00029{left:711.066667pt;}
.xb4_c00029{left:712.533333pt;}
.x10c_c00029{left:713.600000pt;}
.x119_c00029{left:716.266667pt;}
.xf2_c00029{left:717.733333pt;}
.xa1_c00029{left:719.866667pt;}
.xb0_c00029{left:720.933333pt;}
.xc9_c00029{left:722.933333pt;}
.x128_c00029{left:725.733333pt;}
.xf3_c00029{left:727.600000pt;}
.x12f_c00029{left:729.600000pt;}
.x108_c00029{left:730.933333pt;}
.x114_c00029{left:733.066667pt;}
.xc2_c00029{left:734.533333pt;}
.x12c_c00029{left:736.133333pt;}
.xa9_c00029{left:738.800000pt;}
.xa2_c00029{left:740.000000pt;}
.xfb_c00029{left:741.600000pt;}
.xc3_c00029{left:742.533333pt;}
.xd7_c00029{left:744.666667pt;}
.xe5_c00029{left:747.466667pt;}
.xcf_c00029{left:748.400000pt;}
.x10d_c00029{left:749.733333pt;}
.x130_c00029{left:750.666667pt;}
.xca_c00029{left:751.733333pt;}
.x121_c00029{left:752.800000pt;}
.xf6_c00029{left:754.800000pt;}
.x106_c00029{left:757.066667pt;}
.xe6_c00029{left:758.000000pt;}
.xde_c00029{left:760.666667pt;}
.xd0_c00029{left:764.133333pt;}
.xb5_c00029{left:765.333333pt;}
.xc4_c00029{left:766.533333pt;}
.xaa_c00029{left:767.600000pt;}
.x11e_c00029{left:768.533333pt;}
.xdf_c00029{left:769.600000pt;}
.x109_c00029{left:772.533333pt;}
.xa3_c00029{left:774.266667pt;}
.xfc_c00029{left:775.466667pt;}
.x134_c00029{left:776.533333pt;}
.x11f_c00029{left:780.000000pt;}
.x122_c00029{left:785.066667pt;}
.x11a_c00029{left:788.666667pt;}
.x136_c00029{left:789.733333pt;}
.x146_c00029{left:836.533333pt;}
.x147_c00029{left:837.466667pt;}
.x144_c00029{left:838.666667pt;}
.x143_c00029{left:840.666667pt;}
.x145_c00029{left:842.266667pt;}
}





/* 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_c00030 {
    display:none;
  }
  .loading-indicator_c00030.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00030 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_c00030 { 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_c00030" -> "#page-container .classname_c00030")
 */
.pf_c00030 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00030 { /* 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_c00030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00030 { /* 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_c00030 { /* 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_c00030 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00030 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00030 {overflow:visible;}
  }
}
.c_c00030 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00030 { /* 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_c00030:after { /* webkit #35443 */
  content: '';
}
.t_c00030:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00030 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 */
}
.__c00030 { /* 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_c00030 { /* info for Javascript */
  display:none;
}
.l_c00030 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00030 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00030 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00030: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_c00030 {
    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_c00030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00030.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_c00030 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00030;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.000000;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;}
.me8_c00030{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00030{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.me1_c00030{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m57_c00030{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m40_c00030{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00030{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m91_c00030{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00030{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m27_c00030{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00030{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00030{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3_c00030{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00030{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00030{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m46_c00030{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m28_c00030{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mad_c00030{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m111_c00030{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m6_c00030{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00030{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m84_c00030{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.me4_c00030{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.md_c00030{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m115_c00030{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00030{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00030{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m86_c00030{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00030{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00030{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00030{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00030{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m48_c00030{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00030{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00030{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00030{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.ma_c00030{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m26_c00030{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mef_c00030{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc_c00030{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00030{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00030{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00030{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00030{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mba_c00030{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me6_c00030{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m12_c00030{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md6_c00030{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md2_c00030{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00030{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00030{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m80_c00030{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m37_c00030{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00030{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m92_c00030{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m73_c00030{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m65_c00030{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00030{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m89_c00030{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00030{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00030{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m47_c00030{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00030{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m29_c00030{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m116_c00030{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00030{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me7_c00030{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00030{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00030{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00030{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m94_c00030{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00030{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m30_c00030{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m62_c00030{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mda_c00030{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m21_c00030{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m34_c00030{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m108_c00030{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m61_c00030{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m112_c00030{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m105_c00030{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.med_c00030{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00030{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00030{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m97_c00030{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.meb_c00030{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00030{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.md5_c00030{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m52_c00030{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m87_c00030{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md4_c00030{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00030{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00030{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m79_c00030{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m103_c00030{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m43_c00030{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me0_c00030{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m68_c00030{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m74_c00030{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m69_c00030{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00030{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00030{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00030{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m72_c00030{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00030{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00030{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mde_c00030{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00030{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m44_c00030{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00030{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m41_c00030{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00030{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m109_c00030{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00030{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m14_c00030{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m39_c00030{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m99_c00030{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md7_c00030{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m88_c00030{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m70_c00030{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m100_c00030{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m96_c00030{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m93_c00030{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m56_c00030{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00030{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00030{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00030{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00030{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m110_c00030{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m32_c00030{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me2_c00030{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m10_c00030{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00030{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m45_c00030{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00030{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00030{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m15_c00030{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00030{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00030{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m106_c00030{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb_c00030{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mac_c00030{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00030{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m53_c00030{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00030{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00030{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8_c00030{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m19_c00030{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5_c00030{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00030{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m82_c00030{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00030{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m13_c00030{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00030{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00030{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00030{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m16_c00030{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.maa_c00030{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00030{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4_c00030{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00030{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00030{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2_c00030{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m55_c00030{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00030{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m66_c00030{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00030{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mea_c00030{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m67_c00030{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00030{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m49_c00030{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m81_c00030{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m58_c00030{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m76_c00030{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00030{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9_c00030{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m119_c00030{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mec_c00030{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00030{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m64_c00030{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00030{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m18_c00030{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m85_c00030{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00030{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00030{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00030{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m95_c00030{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m36_c00030{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00030{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m78_c00030{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m98_c00030{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00030{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md0_c00030{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mee_c00030{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00030{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00030{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00030{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00030{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m59_c00030{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.md9_c00030{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00030{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7_c00030{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m17_c00030{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00030{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m54_c00030{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00030{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me5_c00030{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m38_c00030{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00030{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00030{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11_c00030{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00030{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00030{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m60_c00030{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m90_c00030{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00030{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m35_c00030{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md1_c00030{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00030{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m50_c00030{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mab_c00030{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00030{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00030{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m33_c00030{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mca_c00030{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00030{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m63_c00030{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mff_c00030{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m51_c00030{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md3_c00030{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m23_c00030{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00030{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m107_c00030{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m118_c00030{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me3_c00030{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00030{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00030{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00030{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00030{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00030{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m77_c00030{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m75_c00030{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m24_c00030{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00030{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mae_c00030{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00030{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00030{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m31_c00030{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00030{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00030{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00030{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00030{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00030{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m83_c00030{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00030{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00030{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00030{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m42_c00030{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00030{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m104_c00030{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00030{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00030{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.md8_c00030{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me9_c00030{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00030{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m102_c00030{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m25_c00030{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00030{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00030{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me_c00030{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00030{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00030{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00030{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mce_c00030{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00030{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00030{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m113_c00030{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m71_c00030{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf_c00030{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.maf_c00030{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m20_c00030{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m114_c00030{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00030{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m101_c00030{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00030{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m0_c00030{transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);}
.m1_c00030{transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);}
.m117_c00030{transform:matrix(22.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(22.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(22.152000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls0_c00030{letter-spacing:0.000000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{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__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00030{word-spacing:-6.908323px;}
.ws2_c00030{word-spacing:-6.626948px;}
.ws0_c00030{word-spacing:-4.285714px;}
.ws4_c00030{word-spacing:-1.811321px;}
.ws5_c00030{word-spacing:0.000000px;}
.ws3_c00030{word-spacing:7.023810px;}
.fc0_c00030{color:transparent;}
.fs1_c00030{font-size:30.000000px;}
.fs5_c00030{font-size:54.000000px;}
.fs4_c00030{font-size:60.000000px;}
.fs2_c00030{font-size:66.000000px;}
.fs3_c00030{font-size:72.000000px;}
.fs0_c00030{font-size:84.000000px;}
.y0_c00030{bottom:0.000000px;}
.y62_c00030{bottom:174.150000px;}
.y33_c00030{bottom:176.400000px;}
.y32_c00030{bottom:188.700000px;}
.y61_c00030{bottom:192.900000px;}
.y31_c00030{bottom:205.950000px;}
.y60_c00030{bottom:212.400000px;}
.y30_c00030{bottom:219.900000px;}
.y5f_c00030{bottom:226.500000px;}
.y2f_c00030{bottom:234.000000px;}
.y5e_c00030{bottom:245.850000px;}
.y2e_c00030{bottom:249.450000px;}
.y5d_c00030{bottom:259.950000px;}
.y2d_c00030{bottom:262.050000px;}
.y2c_c00030{bottom:277.500000px;}
.y5c_c00030{bottom:286.500000px;}
.y2b_c00030{bottom:291.300000px;}
.y2a_c00030{bottom:306.000000px;}
.y5b_c00030{bottom:317.100000px;}
.y29_c00030{bottom:320.400000px;}
.y28_c00030{bottom:334.800000px;}
.y27_c00030{bottom:348.450000px;}
.y5a_c00030{bottom:352.800000px;}
.y26_c00030{bottom:362.850000px;}
.y59_c00030{bottom:374.700000px;}
.y25_c00030{bottom:377.250000px;}
.y24_c00030{bottom:391.650000px;}
.y58_c00030{bottom:392.700000px;}
.y57_c00030{bottom:410.700000px;}
.y56_c00030{bottom:428.400000px;}
.y23_c00030{bottom:450.000000px;}
.y55_c00030{bottom:451.050000px;}
.y22_c00030{bottom:468.300000px;}
.y54_c00030{bottom:469.050000px;}
.y53_c00030{bottom:487.050000px;}
.y21_c00030{bottom:491.100000px;}
.y52_c00030{bottom:504.750000px;}
.y20_c00030{bottom:512.250000px;}
.y1f_c00030{bottom:531.000000px;}
.y51_c00030{bottom:548.700000px;}
.y1e_c00030{bottom:575.250000px;}
.y50_c00030{bottom:576.000000px;}
.y4f_c00030{bottom:594.000000px;}
.y1d_c00030{bottom:597.600000px;}
.y4e_c00030{bottom:611.700000px;}
.y1c_c00030{bottom:619.500000px;}
.y4d_c00030{bottom:629.400000px;}
.y1b_c00030{bottom:641.850000px;}
.y4c_c00030{bottom:647.400000px;}
.y1a_c00030{bottom:659.850000px;}
.y4b_c00030{bottom:665.100000px;}
.y4a_c00030{bottom:683.100000px;}
.y19_c00030{bottom:685.800000px;}
.y49_c00030{bottom:701.100000px;}
.y18_c00030{bottom:703.800000px;}
.y48_c00030{bottom:718.800000px;}
.y17_c00030{bottom:721.800000px;}
.y47_c00030{bottom:736.800000px;}
.y16_c00030{bottom:748.200000px;}
.y46_c00030{bottom:754.800000px;}
.y15_c00030{bottom:766.500000px;}
.y45_c00030{bottom:772.500000px;}
.y14_c00030{bottom:784.500000px;}
.y44_c00030{bottom:790.500000px;}
.y43_c00030{bottom:808.500000px;}
.y13_c00030{bottom:811.350000px;}
.y42_c00030{bottom:826.200000px;}
.y12_c00030{bottom:829.350000px;}
.y41_c00030{bottom:843.900000px;}
.y11_c00030{bottom:847.050000px;}
.y10_c00030{bottom:864.750000px;}
.y40_c00030{bottom:874.800000px;}
.yf_c00030{bottom:883.050000px;}
.y3f_c00030{bottom:892.800000px;}
.ye_c00030{bottom:901.050000px;}
.y3e_c00030{bottom:915.000000px;}
.yd_c00030{bottom:919.050000px;}
.y3d_c00030{bottom:932.700000px;}
.yc_c00030{bottom:936.300000px;}
.yb_c00030{bottom:954.300000px;}
.y3c_c00030{bottom:955.500000px;}
.ya_c00030{bottom:972.000000px;}
.y3b_c00030{bottom:973.500000px;}
.y9_c00030{bottom:990.300000px;}
.y3a_c00030{bottom:990.600000px;}
.y8_c00030{bottom:1012.050000px;}
.y39_c00030{bottom:1012.950000px;}
.y7_c00030{bottom:1030.350000px;}
.y38_c00030{bottom:1030.650000px;}
.y6_c00030{bottom:1048.650000px;}
.y37_c00030{bottom:1053.000000px;}
.y5_c00030{bottom:1066.650000px;}
.y36_c00030{bottom:1071.000000px;}
.y4_c00030{bottom:1092.600000px;}
.y35_c00030{bottom:1093.350000px;}
.y3_c00030{bottom:1111.350000px;}
.y34_c00030{bottom:1111.650000px;}
.y2_c00030{bottom:1137.600000px;}
.y1_c00030{bottom:1139.100000px;}
.h3_c00030{height:30.000000px;}
.h7_c00030{height:54.000000px;}
.h6_c00030{height:60.000000px;}
.h4_c00030{height:66.000000px;}
.h5_c00030{height:72.000000px;}
.h2_c00030{height:84.000000px;}
.h0_c00030{height:1278.719970px;}
.h1_c00030{height:1278.750000px;}
.w0_c00030{width:948.600036px;}
.w1_c00030{width:948.750000px;}
.x0_c00030{left:0.000000px;}
.xa6_c00030{left:48.750000px;}
.xa2_c00030{left:51.300000px;}
.x99_c00030{left:54.150000px;}
.x8f_c00030{left:55.500000px;}
.x16_c00030{left:56.850000px;}
.x3_c00030{left:57.900000px;}
.xa7_c00030{left:65.550000px;}
.xa4_c00030{left:67.650000px;}
.x9f_c00030{left:69.900000px;}
.x95_c00030{left:70.950000px;}
.x8e_c00030{left:73.050000px;}
.x67_c00030{left:74.100000px;}
.xb_c00030{left:75.150000px;}
.x25_c00030{left:76.650000px;}
.x72_c00030{left:77.700000px;}
.x6e_c00030{left:80.400000px;}
.x94_c00030{left:84.300000px;}
.x9e_c00030{left:86.100000px;}
.x1e_c00030{left:88.350000px;}
.x53_c00030{left:90.450000px;}
.x79_c00030{left:92.550000px;}
.x17_c00030{left:93.900000px;}
.x88_c00030{left:95.400000px;}
.x57_c00030{left:97.500000px;}
.x1f_c00030{left:98.850000px;}
.x29_c00030{left:100.050000px;}
.xe_c00030{left:101.850000px;}
.x5d_c00030{left:105.150000px;}
.x26_c00030{left:108.750000px;}
.x66_c00030{left:110.700000px;}
.x2e_c00030{left:113.400000px;}
.x9a_c00030{left:115.350000px;}
.x61_c00030{left:116.850000px;}
.x92_c00030{left:118.200000px;}
.x18_c00030{left:120.900000px;}
.x3e_c00030{left:123.000000px;}
.xc_c00030{left:126.300000px;}
.x54_c00030{left:127.500000px;}
.x4_c00030{left:131.700000px;}
.x96_c00030{left:132.900000px;}
.x39_c00030{left:134.250000px;}
.x9b_c00030{left:135.750000px;}
.x5_c00030{left:140.700000px;}
.x68_c00030{left:141.750000px;}
.x7a_c00030{left:144.750000px;}
.x3f_c00030{left:150.000000px;}
.xf_c00030{left:151.500000px;}
.x19_c00030{left:153.600000px;}
.x90_c00030{left:155.250000px;}
.x74_c00030{left:156.600000px;}
.x97_c00030{left:157.950000px;}
.x58_c00030{left:159.000000px;}
.x6f_c00030{left:160.050000px;}
.x7c_c00030{left:161.700000px;}
.x27_c00030{left:163.800000px;}
.x2f_c00030{left:164.850000px;}
.x6_c00030{left:166.650000px;}
.x59_c00030{left:168.000000px;}
.x20_c00030{left:169.050000px;}
.x4d_c00030{left:171.450000px;}
.x7e_c00030{left:174.900000px;}
.x35_c00030{left:178.800000px;}
.x5e_c00030{left:180.000000px;}
.x82_c00030{left:181.200000px;}
.x51_c00030{left:183.000000px;}
.x10_c00030{left:185.400000px;}
.x46_c00030{left:189.450000px;}
.x4e_c00030{left:191.550000px;}
.x86_c00030{left:192.900000px;}
.x30_c00030{left:193.950000px;}
.x2a_c00030{left:196.200000px;}
.x89_c00030{left:198.750000px;}
.x7_c00030{left:200.850000px;}
.x3a_c00030{left:202.650000px;}
.x62_c00030{left:204.000000px;}
.xa3_c00030{left:205.350000px;}
.x28_c00030{left:206.700000px;}
.x5a_c00030{left:208.050000px;}
.x47_c00030{left:210.000000px;}
.x40_c00030{left:212.250000px;}
.xd_c00030{left:214.200000px;}
.x63_c00030{left:216.600000px;}
.x70_c00030{left:218.400000px;}
.x8a_c00030{left:219.600000px;}
.x4f_c00030{left:222.900000px;}
.x75_c00030{left:223.950000px;}
.x9c_c00030{left:225.000000px;}
.x48_c00030{left:226.200000px;}
.x41_c00030{left:228.450000px;}
.x11_c00030{left:229.650000px;}
.x31_c00030{left:231.000000px;}
.x50_c00030{left:232.200000px;}
.x5f_c00030{left:233.700000px;}
.x83_c00030{left:239.850000px;}
.x36_c00030{left:241.200000px;}
.x4b_c00030{left:243.750000px;}
.xa0_c00030{left:244.950000px;}
.x7d_c00030{left:247.500000px;}
.x84_c00030{left:248.550000px;}
.x2b_c00030{left:250.200000px;}
.x12_c00030{left:251.550000px;}
.x5b_c00030{left:252.750000px;}
.x1a_c00030{left:254.100000px;}
.x8_c00030{left:258.150000px;}
.x7f_c00030{left:259.500000px;}
.x49_c00030{left:261.150000px;}
.x21_c00030{left:267.000000px;}
.x76_c00030{left:270.000000px;}
.x42_c00030{left:271.650000px;}
.x5c_c00030{left:272.850000px;}
.x69_c00030{left:274.050000px;}
.x85_c00030{left:276.600000px;}
.x9_c00030{left:277.950000px;}
.x55_c00030{left:280.050000px;}
.x32_c00030{left:282.150000px;}
.x22_c00030{left:284.700000px;}
.x73_c00030{left:287.550000px;}
.x64_c00030{left:288.900000px;}
.x87_c00030{left:290.850000px;}
.x56_c00030{left:292.650000px;}
.x80_c00030{left:293.700000px;}
.x91_c00030{left:295.050000px;}
.x71_c00030{left:296.850000px;}
.x13_c00030{left:299.100000px;}
.x23_c00030{left:300.600000px;}
.x1_c00030{left:301.650000px;}
.x4a_c00030{left:303.300000px;}
.x8b_c00030{left:304.500000px;}
.x6a_c00030{left:308.550000px;}
.x1b_c00030{left:310.200000px;}
.x37_c00030{left:311.700000px;}
.x77_c00030{left:313.950000px;}
.x3b_c00030{left:315.300000px;}
.x6b_c00030{left:317.250000px;}
.x43_c00030{left:321.750000px;}
.x7b_c00030{left:323.250000px;}
.x2c_c00030{left:324.750000px;}
.x65_c00030{left:325.950000px;}
.x1c_c00030{left:327.150000px;}
.x8c_c00030{left:328.200000px;}
.x24_c00030{left:331.200000px;}
.x14_c00030{left:333.300000px;}
.xa1_c00030{left:336.750000px;}
.x33_c00030{left:339.450000px;}
.x6c_c00030{left:341.700000px;}
.x60_c00030{left:342.900000px;}
.x2d_c00030{left:344.550000px;}
.xa_c00030{left:346.050000px;}
.x81_c00030{left:347.700000px;}
.x44_c00030{left:348.750000px;}
.x38_c00030{left:349.800000px;}
.xa5_c00030{left:355.500000px;}
.x93_c00030{left:358.350000px;}
.x1d_c00030{left:359.850000px;}
.x6d_c00030{left:361.200000px;}
.x52_c00030{left:362.700000px;}
.x45_c00030{left:363.900000px;}
.x8d_c00030{left:364.950000px;}
.x34_c00030{left:367.200000px;}
.x9d_c00030{left:375.150000px;}
.x3c_c00030{left:378.300000px;}
.x98_c00030{left:380.700000px;}
.x78_c00030{left:382.050000px;}
.x3d_c00030{left:384.450000px;}
.x4c_c00030{left:385.950000px;}
.x15_c00030{left:391.650000px;}
.xb2_c00030{left:415.500000px;}
.xea_c00030{left:416.850000px;}
.x11b_c00030{left:418.200000px;}
.x136_c00030{left:419.700000px;}
.xf3_c00030{left:430.500000px;}
.xa8_c00030{left:434.100000px;}
.xdf_c00030{left:435.450000px;}
.x115_c00030{left:437.850000px;}
.xb3_c00030{left:439.950000px;}
.xfc_c00030{left:442.800000px;}
.x100_c00030{left:445.200000px;}
.xb4_c00030{left:451.500000px;}
.xc2_c00030{left:452.550000px;}
.xeb_c00030{left:454.650000px;}
.xd8_c00030{left:455.850000px;}
.x137_c00030{left:457.500000px;}
.x10f_c00030{left:460.050000px;}
.xe0_c00030{left:461.400000px;}
.xc9_c00030{left:464.250000px;}
.x11f_c00030{left:466.500000px;}
.x12a_c00030{left:467.700000px;}
.xa9_c00030{left:472.200000px;}
.x108_c00030{left:473.850000px;}
.xd1_c00030{left:477.750000px;}
.x105_c00030{left:480.900000px;}
.xbb_c00030{left:483.600000px;}
.x11c_c00030{left:486.600000px;}
.x110_c00030{left:488.100000px;}
.xc3_c00030{left:489.300000px;}
.x124_c00030{left:490.350000px;}
.x101_c00030{left:493.050000px;}
.xe6_c00030{left:497.850000px;}
.x132_c00030{left:499.050000px;}
.xc4_c00030{left:500.100000px;}
.x12f_c00030{left:502.200000px;}
.x122_c00030{left:504.300000px;}
.xaa_c00030{left:508.500000px;}
.x126_c00030{left:510.000000px;}
.xb5_c00030{left:511.200000px;}
.xf8_c00030{left:513.000000px;}
.xf4_c00030{left:514.350000px;}
.xfd_c00030{left:515.850000px;}
.x125_c00030{left:517.350000px;}
.xe4_c00030{left:518.400000px;}
.x138_c00030{left:520.500000px;}
.xcc_c00030{left:521.700000px;}
.x13d_c00030{left:524.100000px;}
.x111_c00030{left:525.600000px;}
.x11d_c00030{left:528.000000px;}
.xd2_c00030{left:529.650000px;}
.x106_c00030{left:531.000000px;}
.xab_c00030{left:532.950000px;}
.xf5_c00030{left:534.450000px;}
.xf0_c00030{left:539.100000px;}
.xd3_c00030{left:541.200000px;}
.xec_c00030{left:543.150000px;}
.x116_c00030{left:545.100000px;}
.x12c_c00030{left:546.300000px;}
.xd9_c00030{left:548.250000px;}
.x109_c00030{left:549.750000px;}
.xac_c00030{left:551.700000px;}
.x13b_c00030{left:552.750000px;}
.xf6_c00030{left:557.100000px;}
.xda_c00030{left:559.050000px;}
.x129_c00030{left:560.100000px;}
.xca_c00030{left:562.800000px;}
.xed_c00030{left:564.750000px;}
.xb6_c00030{left:565.950000px;}
.x107_c00030{left:567.750000px;}
.xf9_c00030{left:569.850000px;}
.xe7_c00030{left:572.250000px;}
.x131_c00030{left:574.500000px;}
.x130_c00030{left:575.700000px;}
.xc5_c00030{left:576.750000px;}
.xd4_c00030{left:578.250000px;}
.xcb_c00030{left:583.350000px;}
.xee_c00030{left:584.850000px;}
.x139_c00030{left:586.050000px;}
.x133_c00030{left:587.400000px;}
.xbc_c00030{left:589.050000px;}
.x13c_c00030{left:591.150000px;}
.xb7_c00030{left:592.200000px;}
.x112_c00030{left:593.400000px;}
.xe1_c00030{left:594.750000px;}
.x127_c00030{left:596.700000px;}
.xd5_c00030{left:599.550000px;}
.xad_c00030{left:600.600000px;}
.xe9_c00030{left:604.800000px;}
.x128_c00030{left:605.850000px;}
.x11e_c00030{left:608.100000px;}
.xdb_c00030{left:609.750000px;}
.x117_c00030{left:611.400000px;}
.x120_c00030{left:613.350000px;}
.xcd_c00030{left:614.550000px;}
.x102_c00030{left:615.600000px;}
.xe2_c00030{left:616.650000px;}
.xef_c00030{left:620.850000px;}
.x12d_c00030{left:621.900000px;}
.xbd_c00030{left:623.550000px;}
.xae_c00030{left:624.750000px;}
.xdc_c00030{left:627.000000px;}
.x13e_c00030{left:628.200000px;}
.xc6_c00030{left:630.750000px;}
.x123_c00030{left:632.700000px;}
.xd6_c00030{left:635.850000px;}
.xfa_c00030{left:637.200000px;}
.x118_c00030{left:639.150000px;}
.xbe_c00030{left:640.800000px;}
.x10e_c00030{left:644.250000px;}
.x12b_c00030{left:645.450000px;}
.x10a_c00030{left:648.000000px;}
.xb8_c00030{left:650.100000px;}
.xaf_c00030{left:652.050000px;}
.xfe_c00030{left:653.400000px;}
.x103_c00030{left:654.450000px;}
.xce_c00030{left:655.950000px;}
.x13a_c00030{left:657.750000px;}
.xe8_c00030{left:661.500000px;}
.xc7_c00030{left:663.150000px;}
.x119_c00030{left:668.700000px;}
.x10b_c00030{left:672.150000px;}
.xdd_c00030{left:673.500000px;}
.xf7_c00030{left:675.450000px;}
.xff_c00030{left:677.100000px;}
.xb9_c00030{left:678.600000px;}
.x134_c00030{left:681.150000px;}
.xf1_c00030{left:683.850000px;}
.x12e_c00030{left:685.200000px;}
.xbf_c00030{left:688.650000px;}
.xd7_c00030{left:690.600000px;}
.xcf_c00030{left:693.750000px;}
.xde_c00030{left:695.400000px;}
.x10c_c00030{left:700.200000px;}
.xe3_c00030{left:702.300000px;}
.x113_c00030{left:708.600000px;}
.x121_c00030{left:712.350000px;}
.xc0_c00030{left:713.550000px;}
.xc8_c00030{left:715.650000px;}
.xb0_c00030{left:718.950000px;}
.x114_c00030{left:720.450000px;}
.x11a_c00030{left:722.700000px;}
.xc1_c00030{left:724.350000px;}
.x104_c00030{left:726.150000px;}
.x2_c00030{left:727.200000px;}
.xb1_c00030{left:732.300000px;}
.xe5_c00030{left:737.700000px;}
.xd0_c00030{left:738.750000px;}
.x10d_c00030{left:740.250000px;}
.xfb_c00030{left:741.900000px;}
.xba_c00030{left:743.100000px;}
.xf2_c00030{left:746.550000px;}
.x135_c00030{left:749.550000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws1_c00030{word-spacing:-6.140732pt;}
.ws2_c00030{word-spacing:-5.890620pt;}
.ws0_c00030{word-spacing:-3.809524pt;}
.ws4_c00030{word-spacing:-1.610063pt;}
.ws5_c00030{word-spacing:0.000000pt;}
.ws3_c00030{word-spacing:6.243386pt;}
.fs1_c00030{font-size:26.666667pt;}
.fs5_c00030{font-size:48.000000pt;}
.fs4_c00030{font-size:53.333333pt;}
.fs2_c00030{font-size:58.666667pt;}
.fs3_c00030{font-size:64.000000pt;}
.fs0_c00030{font-size:74.666667pt;}
.y0_c00030{bottom:0.000000pt;}
.y62_c00030{bottom:154.800000pt;}
.y33_c00030{bottom:156.800000pt;}
.y32_c00030{bottom:167.733333pt;}
.y61_c00030{bottom:171.466667pt;}
.y31_c00030{bottom:183.066667pt;}
.y60_c00030{bottom:188.800000pt;}
.y30_c00030{bottom:195.466667pt;}
.y5f_c00030{bottom:201.333333pt;}
.y2f_c00030{bottom:208.000000pt;}
.y5e_c00030{bottom:218.533333pt;}
.y2e_c00030{bottom:221.733333pt;}
.y5d_c00030{bottom:231.066667pt;}
.y2d_c00030{bottom:232.933333pt;}
.y2c_c00030{bottom:246.666667pt;}
.y5c_c00030{bottom:254.666667pt;}
.y2b_c00030{bottom:258.933333pt;}
.y2a_c00030{bottom:272.000000pt;}
.y5b_c00030{bottom:281.866667pt;}
.y29_c00030{bottom:284.800000pt;}
.y28_c00030{bottom:297.600000pt;}
.y27_c00030{bottom:309.733333pt;}
.y5a_c00030{bottom:313.600000pt;}
.y26_c00030{bottom:322.533333pt;}
.y59_c00030{bottom:333.066667pt;}
.y25_c00030{bottom:335.333333pt;}
.y24_c00030{bottom:348.133333pt;}
.y58_c00030{bottom:349.066667pt;}
.y57_c00030{bottom:365.066667pt;}
.y56_c00030{bottom:380.800000pt;}
.y23_c00030{bottom:400.000000pt;}
.y55_c00030{bottom:400.933333pt;}
.y22_c00030{bottom:416.266667pt;}
.y54_c00030{bottom:416.933333pt;}
.y53_c00030{bottom:432.933333pt;}
.y21_c00030{bottom:436.533333pt;}
.y52_c00030{bottom:448.666667pt;}
.y20_c00030{bottom:455.333333pt;}
.y1f_c00030{bottom:472.000000pt;}
.y51_c00030{bottom:487.733333pt;}
.y1e_c00030{bottom:511.333333pt;}
.y50_c00030{bottom:512.000000pt;}
.y4f_c00030{bottom:528.000000pt;}
.y1d_c00030{bottom:531.200000pt;}
.y4e_c00030{bottom:543.733333pt;}
.y1c_c00030{bottom:550.666667pt;}
.y4d_c00030{bottom:559.466667pt;}
.y1b_c00030{bottom:570.533333pt;}
.y4c_c00030{bottom:575.466667pt;}
.y1a_c00030{bottom:586.533333pt;}
.y4b_c00030{bottom:591.200000pt;}
.y4a_c00030{bottom:607.200000pt;}
.y19_c00030{bottom:609.600000pt;}
.y49_c00030{bottom:623.200000pt;}
.y18_c00030{bottom:625.600000pt;}
.y48_c00030{bottom:638.933333pt;}
.y17_c00030{bottom:641.600000pt;}
.y47_c00030{bottom:654.933333pt;}
.y16_c00030{bottom:665.066667pt;}
.y46_c00030{bottom:670.933333pt;}
.y15_c00030{bottom:681.333333pt;}
.y45_c00030{bottom:686.666667pt;}
.y14_c00030{bottom:697.333333pt;}
.y44_c00030{bottom:702.666667pt;}
.y43_c00030{bottom:718.666667pt;}
.y13_c00030{bottom:721.200000pt;}
.y42_c00030{bottom:734.400000pt;}
.y12_c00030{bottom:737.200000pt;}
.y41_c00030{bottom:750.133333pt;}
.y11_c00030{bottom:752.933333pt;}
.y10_c00030{bottom:768.666667pt;}
.y40_c00030{bottom:777.600000pt;}
.yf_c00030{bottom:784.933333pt;}
.y3f_c00030{bottom:793.600000pt;}
.ye_c00030{bottom:800.933333pt;}
.y3e_c00030{bottom:813.333333pt;}
.yd_c00030{bottom:816.933333pt;}
.y3d_c00030{bottom:829.066667pt;}
.yc_c00030{bottom:832.266667pt;}
.yb_c00030{bottom:848.266667pt;}
.y3c_c00030{bottom:849.333333pt;}
.ya_c00030{bottom:864.000000pt;}
.y3b_c00030{bottom:865.333333pt;}
.y9_c00030{bottom:880.266667pt;}
.y3a_c00030{bottom:880.533333pt;}
.y8_c00030{bottom:899.600000pt;}
.y39_c00030{bottom:900.400000pt;}
.y7_c00030{bottom:915.866667pt;}
.y38_c00030{bottom:916.133333pt;}
.y6_c00030{bottom:932.133333pt;}
.y37_c00030{bottom:936.000000pt;}
.y5_c00030{bottom:948.133333pt;}
.y36_c00030{bottom:952.000000pt;}
.y4_c00030{bottom:971.200000pt;}
.y35_c00030{bottom:971.866667pt;}
.y3_c00030{bottom:987.866667pt;}
.y34_c00030{bottom:988.133333pt;}
.y2_c00030{bottom:1011.200000pt;}
.y1_c00030{bottom:1012.533333pt;}
.h3_c00030{height:26.666667pt;}
.h7_c00030{height:48.000000pt;}
.h6_c00030{height:53.333333pt;}
.h4_c00030{height:58.666667pt;}
.h5_c00030{height:64.000000pt;}
.h2_c00030{height:74.666667pt;}
.h0_c00030{height:1136.639973pt;}
.h1_c00030{height:1136.666667pt;}
.w0_c00030{width:843.200032pt;}
.w1_c00030{width:843.333333pt;}
.x0_c00030{left:0.000000pt;}
.xa6_c00030{left:43.333333pt;}
.xa2_c00030{left:45.600000pt;}
.x99_c00030{left:48.133333pt;}
.x8f_c00030{left:49.333333pt;}
.x16_c00030{left:50.533333pt;}
.x3_c00030{left:51.466667pt;}
.xa7_c00030{left:58.266667pt;}
.xa4_c00030{left:60.133333pt;}
.x9f_c00030{left:62.133333pt;}
.x95_c00030{left:63.066667pt;}
.x8e_c00030{left:64.933333pt;}
.x67_c00030{left:65.866667pt;}
.xb_c00030{left:66.800000pt;}
.x25_c00030{left:68.133333pt;}
.x72_c00030{left:69.066667pt;}
.x6e_c00030{left:71.466667pt;}
.x94_c00030{left:74.933333pt;}
.x9e_c00030{left:76.533333pt;}
.x1e_c00030{left:78.533333pt;}
.x53_c00030{left:80.400000pt;}
.x79_c00030{left:82.266667pt;}
.x17_c00030{left:83.466667pt;}
.x88_c00030{left:84.800000pt;}
.x57_c00030{left:86.666667pt;}
.x1f_c00030{left:87.866667pt;}
.x29_c00030{left:88.933333pt;}
.xe_c00030{left:90.533333pt;}
.x5d_c00030{left:93.466667pt;}
.x26_c00030{left:96.666667pt;}
.x66_c00030{left:98.400000pt;}
.x2e_c00030{left:100.800000pt;}
.x9a_c00030{left:102.533333pt;}
.x61_c00030{left:103.866667pt;}
.x92_c00030{left:105.066667pt;}
.x18_c00030{left:107.466667pt;}
.x3e_c00030{left:109.333333pt;}
.xc_c00030{left:112.266667pt;}
.x54_c00030{left:113.333333pt;}
.x4_c00030{left:117.066667pt;}
.x96_c00030{left:118.133333pt;}
.x39_c00030{left:119.333333pt;}
.x9b_c00030{left:120.666667pt;}
.x5_c00030{left:125.066667pt;}
.x68_c00030{left:126.000000pt;}
.x7a_c00030{left:128.666667pt;}
.x3f_c00030{left:133.333333pt;}
.xf_c00030{left:134.666667pt;}
.x19_c00030{left:136.533333pt;}
.x90_c00030{left:138.000000pt;}
.x74_c00030{left:139.200000pt;}
.x97_c00030{left:140.400000pt;}
.x58_c00030{left:141.333333pt;}
.x6f_c00030{left:142.266667pt;}
.x7c_c00030{left:143.733333pt;}
.x27_c00030{left:145.600000pt;}
.x2f_c00030{left:146.533333pt;}
.x6_c00030{left:148.133333pt;}
.x59_c00030{left:149.333333pt;}
.x20_c00030{left:150.266667pt;}
.x4d_c00030{left:152.400000pt;}
.x7e_c00030{left:155.466667pt;}
.x35_c00030{left:158.933333pt;}
.x5e_c00030{left:160.000000pt;}
.x82_c00030{left:161.066667pt;}
.x51_c00030{left:162.666667pt;}
.x10_c00030{left:164.800000pt;}
.x46_c00030{left:168.400000pt;}
.x4e_c00030{left:170.266667pt;}
.x86_c00030{left:171.466667pt;}
.x30_c00030{left:172.400000pt;}
.x2a_c00030{left:174.400000pt;}
.x89_c00030{left:176.666667pt;}
.x7_c00030{left:178.533333pt;}
.x3a_c00030{left:180.133333pt;}
.x62_c00030{left:181.333333pt;}
.xa3_c00030{left:182.533333pt;}
.x28_c00030{left:183.733333pt;}
.x5a_c00030{left:184.933333pt;}
.x47_c00030{left:186.666667pt;}
.x40_c00030{left:188.666667pt;}
.xd_c00030{left:190.400000pt;}
.x63_c00030{left:192.533333pt;}
.x70_c00030{left:194.133333pt;}
.x8a_c00030{left:195.200000pt;}
.x4f_c00030{left:198.133333pt;}
.x75_c00030{left:199.066667pt;}
.x9c_c00030{left:200.000000pt;}
.x48_c00030{left:201.066667pt;}
.x41_c00030{left:203.066667pt;}
.x11_c00030{left:204.133333pt;}
.x31_c00030{left:205.333333pt;}
.x50_c00030{left:206.400000pt;}
.x5f_c00030{left:207.733333pt;}
.x83_c00030{left:213.200000pt;}
.x36_c00030{left:214.400000pt;}
.x4b_c00030{left:216.666667pt;}
.xa0_c00030{left:217.733333pt;}
.x7d_c00030{left:220.000000pt;}
.x84_c00030{left:220.933333pt;}
.x2b_c00030{left:222.400000pt;}
.x12_c00030{left:223.600000pt;}
.x5b_c00030{left:224.666667pt;}
.x1a_c00030{left:225.866667pt;}
.x8_c00030{left:229.466667pt;}
.x7f_c00030{left:230.666667pt;}
.x49_c00030{left:232.133333pt;}
.x21_c00030{left:237.333333pt;}
.x76_c00030{left:240.000000pt;}
.x42_c00030{left:241.466667pt;}
.x5c_c00030{left:242.533333pt;}
.x69_c00030{left:243.600000pt;}
.x85_c00030{left:245.866667pt;}
.x9_c00030{left:247.066667pt;}
.x55_c00030{left:248.933333pt;}
.x32_c00030{left:250.800000pt;}
.x22_c00030{left:253.066667pt;}
.x73_c00030{left:255.600000pt;}
.x64_c00030{left:256.800000pt;}
.x87_c00030{left:258.533333pt;}
.x56_c00030{left:260.133333pt;}
.x80_c00030{left:261.066667pt;}
.x91_c00030{left:262.266667pt;}
.x71_c00030{left:263.866667pt;}
.x13_c00030{left:265.866667pt;}
.x23_c00030{left:267.200000pt;}
.x1_c00030{left:268.133333pt;}
.x4a_c00030{left:269.600000pt;}
.x8b_c00030{left:270.666667pt;}
.x6a_c00030{left:274.266667pt;}
.x1b_c00030{left:275.733333pt;}
.x37_c00030{left:277.066667pt;}
.x77_c00030{left:279.066667pt;}
.x3b_c00030{left:280.266667pt;}
.x6b_c00030{left:282.000000pt;}
.x43_c00030{left:286.000000pt;}
.x7b_c00030{left:287.333333pt;}
.x2c_c00030{left:288.666667pt;}
.x65_c00030{left:289.733333pt;}
.x1c_c00030{left:290.800000pt;}
.x8c_c00030{left:291.733333pt;}
.x24_c00030{left:294.400000pt;}
.x14_c00030{left:296.266667pt;}
.xa1_c00030{left:299.333333pt;}
.x33_c00030{left:301.733333pt;}
.x6c_c00030{left:303.733333pt;}
.x60_c00030{left:304.800000pt;}
.x2d_c00030{left:306.266667pt;}
.xa_c00030{left:307.600000pt;}
.x81_c00030{left:309.066667pt;}
.x44_c00030{left:310.000000pt;}
.x38_c00030{left:310.933333pt;}
.xa5_c00030{left:316.000000pt;}
.x93_c00030{left:318.533333pt;}
.x1d_c00030{left:319.866667pt;}
.x6d_c00030{left:321.066667pt;}
.x52_c00030{left:322.400000pt;}
.x45_c00030{left:323.466667pt;}
.x8d_c00030{left:324.400000pt;}
.x34_c00030{left:326.400000pt;}
.x9d_c00030{left:333.466667pt;}
.x3c_c00030{left:336.266667pt;}
.x98_c00030{left:338.400000pt;}
.x78_c00030{left:339.600000pt;}
.x3d_c00030{left:341.733333pt;}
.x4c_c00030{left:343.066667pt;}
.x15_c00030{left:348.133333pt;}
.xb2_c00030{left:369.333333pt;}
.xea_c00030{left:370.533333pt;}
.x11b_c00030{left:371.733333pt;}
.x136_c00030{left:373.066667pt;}
.xf3_c00030{left:382.666667pt;}
.xa8_c00030{left:385.866667pt;}
.xdf_c00030{left:387.066667pt;}
.x115_c00030{left:389.200000pt;}
.xb3_c00030{left:391.066667pt;}
.xfc_c00030{left:393.600000pt;}
.x100_c00030{left:395.733333pt;}
.xb4_c00030{left:401.333333pt;}
.xc2_c00030{left:402.266667pt;}
.xeb_c00030{left:404.133333pt;}
.xd8_c00030{left:405.200000pt;}
.x137_c00030{left:406.666667pt;}
.x10f_c00030{left:408.933333pt;}
.xe0_c00030{left:410.133333pt;}
.xc9_c00030{left:412.666667pt;}
.x11f_c00030{left:414.666667pt;}
.x12a_c00030{left:415.733333pt;}
.xa9_c00030{left:419.733333pt;}
.x108_c00030{left:421.200000pt;}
.xd1_c00030{left:424.666667pt;}
.x105_c00030{left:427.466667pt;}
.xbb_c00030{left:429.866667pt;}
.x11c_c00030{left:432.533333pt;}
.x110_c00030{left:433.866667pt;}
.xc3_c00030{left:434.933333pt;}
.x124_c00030{left:435.866667pt;}
.x101_c00030{left:438.266667pt;}
.xe6_c00030{left:442.533333pt;}
.x132_c00030{left:443.600000pt;}
.xc4_c00030{left:444.533333pt;}
.x12f_c00030{left:446.400000pt;}
.x122_c00030{left:448.266667pt;}
.xaa_c00030{left:452.000000pt;}
.x126_c00030{left:453.333333pt;}
.xb5_c00030{left:454.400000pt;}
.xf8_c00030{left:456.000000pt;}
.xf4_c00030{left:457.200000pt;}
.xfd_c00030{left:458.533333pt;}
.x125_c00030{left:459.866667pt;}
.xe4_c00030{left:460.800000pt;}
.x138_c00030{left:462.666667pt;}
.xcc_c00030{left:463.733333pt;}
.x13d_c00030{left:465.866667pt;}
.x111_c00030{left:467.200000pt;}
.x11d_c00030{left:469.333333pt;}
.xd2_c00030{left:470.800000pt;}
.x106_c00030{left:472.000000pt;}
.xab_c00030{left:473.733333pt;}
.xf5_c00030{left:475.066667pt;}
.xf0_c00030{left:479.200000pt;}
.xd3_c00030{left:481.066667pt;}
.xec_c00030{left:482.800000pt;}
.x116_c00030{left:484.533333pt;}
.x12c_c00030{left:485.600000pt;}
.xd9_c00030{left:487.333333pt;}
.x109_c00030{left:488.666667pt;}
.xac_c00030{left:490.400000pt;}
.x13b_c00030{left:491.333333pt;}
.xf6_c00030{left:495.200000pt;}
.xda_c00030{left:496.933333pt;}
.x129_c00030{left:497.866667pt;}
.xca_c00030{left:500.266667pt;}
.xed_c00030{left:502.000000pt;}
.xb6_c00030{left:503.066667pt;}
.x107_c00030{left:504.666667pt;}
.xf9_c00030{left:506.533333pt;}
.xe7_c00030{left:508.666667pt;}
.x131_c00030{left:510.666667pt;}
.x130_c00030{left:511.733333pt;}
.xc5_c00030{left:512.666667pt;}
.xd4_c00030{left:514.000000pt;}
.xcb_c00030{left:518.533333pt;}
.xee_c00030{left:519.866667pt;}
.x139_c00030{left:520.933333pt;}
.x133_c00030{left:522.133333pt;}
.xbc_c00030{left:523.600000pt;}
.x13c_c00030{left:525.466667pt;}
.xb7_c00030{left:526.400000pt;}
.x112_c00030{left:527.466667pt;}
.xe1_c00030{left:528.666667pt;}
.x127_c00030{left:530.400000pt;}
.xd5_c00030{left:532.933333pt;}
.xad_c00030{left:533.866667pt;}
.xe9_c00030{left:537.600000pt;}
.x128_c00030{left:538.533333pt;}
.x11e_c00030{left:540.533333pt;}
.xdb_c00030{left:542.000000pt;}
.x117_c00030{left:543.466667pt;}
.x120_c00030{left:545.200000pt;}
.xcd_c00030{left:546.266667pt;}
.x102_c00030{left:547.200000pt;}
.xe2_c00030{left:548.133333pt;}
.xef_c00030{left:551.866667pt;}
.x12d_c00030{left:552.800000pt;}
.xbd_c00030{left:554.266667pt;}
.xae_c00030{left:555.333333pt;}
.xdc_c00030{left:557.333333pt;}
.x13e_c00030{left:558.400000pt;}
.xc6_c00030{left:560.666667pt;}
.x123_c00030{left:562.400000pt;}
.xd6_c00030{left:565.200000pt;}
.xfa_c00030{left:566.400000pt;}
.x118_c00030{left:568.133333pt;}
.xbe_c00030{left:569.600000pt;}
.x10e_c00030{left:572.666667pt;}
.x12b_c00030{left:573.733333pt;}
.x10a_c00030{left:576.000000pt;}
.xb8_c00030{left:577.866667pt;}
.xaf_c00030{left:579.600000pt;}
.xfe_c00030{left:580.800000pt;}
.x103_c00030{left:581.733333pt;}
.xce_c00030{left:583.066667pt;}
.x13a_c00030{left:584.666667pt;}
.xe8_c00030{left:588.000000pt;}
.xc7_c00030{left:589.466667pt;}
.x119_c00030{left:594.400000pt;}
.x10b_c00030{left:597.466667pt;}
.xdd_c00030{left:598.666667pt;}
.xf7_c00030{left:600.400000pt;}
.xff_c00030{left:601.866667pt;}
.xb9_c00030{left:603.200000pt;}
.x134_c00030{left:605.466667pt;}
.xf1_c00030{left:607.866667pt;}
.x12e_c00030{left:609.066667pt;}
.xbf_c00030{left:612.133333pt;}
.xd7_c00030{left:613.866667pt;}
.xcf_c00030{left:616.666667pt;}
.xde_c00030{left:618.133333pt;}
.x10c_c00030{left:622.400000pt;}
.xe3_c00030{left:624.266667pt;}
.x113_c00030{left:629.866667pt;}
.x121_c00030{left:633.200000pt;}
.xc0_c00030{left:634.266667pt;}
.xc8_c00030{left:636.133333pt;}
.xb0_c00030{left:639.066667pt;}
.x114_c00030{left:640.400000pt;}
.x11a_c00030{left:642.400000pt;}
.xc1_c00030{left:643.866667pt;}
.x104_c00030{left:645.466667pt;}
.x2_c00030{left:646.400000pt;}
.xb1_c00030{left:650.933333pt;}
.xe5_c00030{left:655.733333pt;}
.xd0_c00030{left:656.666667pt;}
.x10d_c00030{left:658.000000pt;}
.xfb_c00030{left:659.466667pt;}
.xba_c00030{left:660.533333pt;}
.xf2_c00030{left:663.600000pt;}
.x135_c00030{left:666.266667pt;}
}





/* 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_c00031 {
    display:none;
  }
  .loading-indicator_c00031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00031 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_c00031 { 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_c00031" -> "#page-container .classname_c00031")
 */
.pf_c00031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00031 { /* 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_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00031 { /* 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_c00031 { /* 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_c00031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00031 {overflow:visible;}
  }
}
.c_c00031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00031 { /* 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_c00031:after { /* webkit #35443 */
  content: '';
}
.t_c00031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00031 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 */
}
.__c00031 { /* 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_c00031 { /* info for Javascript */
  display:none;
}
.l_c00031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00031: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_c00031 {
    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_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00031.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_c00031 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00031;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.000000;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;}
.m5e_c00031{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00031{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00031{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00031{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m57_c00031{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00031{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m118_c00031{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00031{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00031{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m28_c00031{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.med_c00031{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m49_c00031{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m134_c00031{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00031{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00031{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m47_c00031{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md4_c00031{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m75_c00031{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md2_c00031{transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00031{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00031{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00031{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00031{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00031{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.md5_c00031{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m78_c00031{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m129_c00031{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00031{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00031{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00031{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00031{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00031{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m130_c00031{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m122_c00031{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.m80_c00031{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m108_c00031{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.md0_c00031{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00031{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00031{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00031{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.md3_c00031{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00031{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m35_c00031{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00031{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mee_c00031{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m19_c00031{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md1_c00031{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m10_c00031{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m77_c00031{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m64_c00031{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00031{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00031{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00031{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m46_c00031{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m114_c00031{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m12_c00031{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00031{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00031{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m56_c00031{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00031{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00031{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m15_c00031{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00031{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00031{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m60_c00031{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00031{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mb_c00031{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00031{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m63_c00031{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00031{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00031{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00031{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00031{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me9_c00031{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m67_c00031{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m50_c00031{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00031{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m5_c00031{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00031{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00031{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.me8_c00031{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m81_c00031{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00031{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3_c00031{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00031{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00031{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00031{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00031{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m100_c00031{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00031{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m131_c00031{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00031{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00031{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m124_c00031{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00031{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m61_c00031{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m31_c00031{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00031{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m37_c00031{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00031{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00031{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00031{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.ma_c00031{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00031{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m82_c00031{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m20_c00031{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mab_c00031{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00031{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc_c00031{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00031{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00031{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m132_c00031{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4_c00031{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m68_c00031{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m113_c00031{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m38_c00031{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7_c00031{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m43_c00031{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00031{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00031{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.md_c00031{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m76_c00031{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m14_c00031{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00031{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m98_c00031{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00031{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m79_c00031{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m102_c00031{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00031{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00031{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00031{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00031{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m24_c00031{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00031{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m125_c00031{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6_c00031{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maa_c00031{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00031{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m54_c00031{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00031{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00031{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9_c00031{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00031{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mce_c00031{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m128_c00031{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8_c00031{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00031{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00031{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m11_c00031{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m13_c00031{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m112_c00031{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00031{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md9_c00031{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m36_c00031{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00031{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m45_c00031{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.meb_c00031{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m52_c00031{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mf_c00031{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mad_c00031{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m87_c00031{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00031{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m133_c00031{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00031{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00031{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m111_c00031{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m83_c00031{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00031{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00031{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00031{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00031{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m99_c00031{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.md6_c00031{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m119_c00031{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m18_c00031{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m89_c00031{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00031{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m34_c00031{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m65_c00031{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00031{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00031{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m32_c00031{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m55_c00031{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m44_c00031{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2_c00031{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00031{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m53_c00031{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m96_c00031{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mac_c00031{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m91_c00031{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m51_c00031{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m103_c00031{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m29_c00031{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m42_c00031{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m117_c00031{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00031{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00031{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m30_c00031{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m71_c00031{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00031{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m93_c00031{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m59_c00031{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m127_c00031{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00031{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md8_c00031{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m72_c00031{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00031{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m116_c00031{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m110_c00031{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m66_c00031{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m21_c00031{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me3_c00031{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m33_c00031{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00031{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m126_c00031{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00031{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m94_c00031{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00031{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m84_c00031{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mea_c00031{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m105_c00031{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00031{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m115_c00031{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00031{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00031{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mae_c00031{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m69_c00031{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m106_c00031{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00031{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00031{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00031{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m109_c00031{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m48_c00031{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me7_c00031{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m25_c00031{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00031{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00031{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m107_c00031{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m22_c00031{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00031{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00031{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m26_c00031{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m92_c00031{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m88_c00031{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m95_c00031{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00031{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00031{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m85_c00031{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m23_c00031{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m27_c00031{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00031{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me2_c00031{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00031{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m62_c00031{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m123_c00031{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);}
.m17_c00031{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m58_c00031{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m97_c00031{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00031{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00031{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00031{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00031{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00031{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00031{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00031{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mff_c00031{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.me0_c00031{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00031{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00031{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m40_c00031{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m16_c00031{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.me6_c00031{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m86_c00031{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m74_c00031{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mca_c00031{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m73_c00031{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me4_c00031{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mde_c00031{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m39_c00031{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m121_c00031{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00031{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.me1_c00031{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00031{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m0_c00031{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00031{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mec_c00031{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00031{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.maf_c00031{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m136_c00031{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m41_c00031{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00031{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m120_c00031{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00031{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00031{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mba_c00031{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me5_c00031{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mda_c00031{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m135_c00031{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00031{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00031{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00031{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m101_c00031{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.md7_c00031{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00031{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.m70_c00031{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.mef_c00031{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00031{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m90_c00031{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00031{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);}
.m104_c00031{transform:matrix(22.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(22.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(22.320000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls0_c00031{letter-spacing:0.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{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__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00031{word-spacing:-7.156425px;}
.ws2_c00031{word-spacing:-5.340909px;}
.wsa_c00031{word-spacing:-4.931276px;}
.ws3_c00031{word-spacing:-2.650771px;}
.wsb_c00031{word-spacing:-1.111111px;}
.wsc_c00031{word-spacing:0.000000px;}
.ws5_c00031{word-spacing:0.189112px;}
.ws8_c00031{word-spacing:5.428571px;}
.ws4_c00031{word-spacing:7.738544px;}
.ws7_c00031{word-spacing:21.000000px;}
.ws0_c00031{word-spacing:23.436185px;}
.ws1_c00031{word-spacing:35.097421px;}
.ws9_c00031{word-spacing:1232.250000px;}
.fc0_c00031{color:transparent;}
.fs5_c00031{font-size:18.000000px;}
.fs9_c00031{font-size:24.000000px;}
.fs7_c00031{font-size:30.000000px;}
.fsa_c00031{font-size:36.000000px;}
.fs4_c00031{font-size:48.000000px;}
.fs6_c00031{font-size:54.000000px;}
.fs3_c00031{font-size:60.000000px;}
.fs0_c00031{font-size:66.000000px;}
.fs2_c00031{font-size:72.000000px;}
.fs1_c00031{font-size:84.000000px;}
.fs8_c00031{font-size:90.000000px;}
.y0_c00031{bottom:0.000000px;}
.y78_c00031{bottom:200.550000px;}
.y77_c00031{bottom:213.900000px;}
.y43_c00031{bottom:217.050000px;}
.y42_c00031{bottom:219.600000px;}
.y76_c00031{bottom:229.350000px;}
.y41_c00031{bottom:231.450000px;}
.y75_c00031{bottom:242.700000px;}
.y40_c00031{bottom:243.150000px;}
.y3f_c00031{bottom:253.200000px;}
.y74_c00031{bottom:256.650000px;}
.y3e_c00031{bottom:267.300000px;}
.y73_c00031{bottom:272.400000px;}
.y3d_c00031{bottom:282.750000px;}
.y72_c00031{bottom:286.800000px;}
.y3c_c00031{bottom:297.450000px;}
.y71_c00031{bottom:300.900000px;}
.y3b_c00031{bottom:305.700000px;}
.y70_c00031{bottom:315.000000px;}
.y3a_c00031{bottom:322.650000px;}
.y6f_c00031{bottom:328.350000px;}
.y39_c00031{bottom:333.750000px;}
.y6e_c00031{bottom:344.100000px;}
.y38_c00031{bottom:356.100000px;}
.y6d_c00031{bottom:356.700000px;}
.y6c_c00031{bottom:371.850000px;}
.y37_c00031{bottom:374.400000px;}
.y36_c00031{bottom:377.700000px;}
.y6b_c00031{bottom:386.250000px;}
.y35_c00031{bottom:391.350000px;}
.y6a_c00031{bottom:400.950000px;}
.y34_c00031{bottom:403.950000px;}
.y69_c00031{bottom:415.050000px;}
.y33_c00031{bottom:418.350000px;}
.y68_c00031{bottom:429.150000px;}
.y67_c00031{bottom:443.550000px;}
.y32_c00031{bottom:445.350000px;}
.y31_c00031{bottom:456.150000px;}
.y66_c00031{bottom:457.950000px;}
.y65_c00031{bottom:472.050000px;}
.y30_c00031{bottom:472.350000px;}
.y2f_c00031{bottom:486.450000px;}
.y64_c00031{bottom:486.750000px;}
.y2e_c00031{bottom:498.300000px;}
.y63_c00031{bottom:501.150000px;}
.y62_c00031{bottom:514.500000px;}
.y2d_c00031{bottom:515.550000px;}
.y2c_c00031{bottom:527.400000px;}
.y61_c00031{bottom:529.950000px;}
.y2b_c00031{bottom:542.850000px;}
.y60_c00031{bottom:544.650000px;}
.y2a_c00031{bottom:555.150000px;}
.y5f_c00031{bottom:558.750000px;}
.y5e_c00031{bottom:564.750000px;}
.y29_c00031{bottom:568.500000px;}
.y5d_c00031{bottom:572.700000px;}
.y28_c00031{bottom:582.150000px;}
.y5c_c00031{bottom:587.100000px;}
.y27_c00031{bottom:597.600000px;}
.y5b_c00031{bottom:601.500000px;}
.y26_c00031{bottom:612.300000px;}
.y5a_c00031{bottom:615.900000px;}
.y25_c00031{bottom:625.350000px;}
.y59_c00031{bottom:630.000000px;}
.y58_c00031{bottom:645.150000px;}
.y57_c00031{bottom:658.500000px;}
.y56_c00031{bottom:673.650000px;}
.y24_c00031{bottom:677.100000px;}
.y55_c00031{bottom:687.750000px;}
.y23_c00031{bottom:694.350000px;}
.y54_c00031{bottom:701.400000px;}
.y22_c00031{bottom:704.100000px;}
.y21_c00031{bottom:711.000000px;}
.y53_c00031{bottom:716.850000px;}
.y52_c00031{bottom:730.500000px;}
.y20_c00031{bottom:733.650000px;}
.y51_c00031{bottom:744.900000px;}
.y50_c00031{bottom:745.950000px;}
.y1f_c00031{bottom:750.600000px;}
.y4f_c00031{bottom:765.300000px;}
.y1e_c00031{bottom:772.950000px;}
.y1d_c00031{bottom:789.900000px;}
.y4e_c00031{bottom:796.950000px;}
.y1c_c00031{bottom:807.450000px;}
.y4d_c00031{bottom:814.650000px;}
.y1b_c00031{bottom:825.150000px;}
.y4c_c00031{bottom:832.650000px;}
.y1a_c00031{bottom:848.550000px;}
.y19_c00031{bottom:860.100000px;}
.y4b_c00031{bottom:872.550000px;}
.y18_c00031{bottom:876.600000px;}
.y4a_c00031{bottom:890.550000px;}
.y17_c00031{bottom:899.250000px;}
.y49_c00031{bottom:908.550000px;}
.y16_c00031{bottom:916.500000px;}
.y48_c00031{bottom:926.550000px;}
.y15_c00031{bottom:938.550000px;}
.y47_c00031{bottom:944.550000px;}
.y14_c00031{bottom:955.800000px;}
.y46_c00031{bottom:961.500000px;}
.y13_c00031{bottom:977.400000px;}
.y45_c00031{bottom:984.300000px;}
.y11_c00031{bottom:994.950000px;}
.ya_c00031{bottom:1002.300000px;}
.y44_c00031{bottom:1015.500000px;}
.y10_c00031{bottom:1016.550000px;}
.y9_c00031{bottom:1019.550000px;}
.yf_c00031{bottom:1034.250000px;}
.y8_c00031{bottom:1037.550000px;}
.ye_c00031{bottom:1051.500000px;}
.y7_c00031{bottom:1055.550000px;}
.y6_c00031{bottom:1073.550000px;}
.yd_c00031{bottom:1090.800000px;}
.y5_c00031{bottom:1091.550000px;}
.yc_c00031{bottom:1108.050000px;}
.y4_c00031{bottom:1109.550000px;}
.y3_c00031{bottom:1126.800000px;}
.yb_c00031{bottom:1130.100000px;}
.y12_c00031{bottom:1140.900000px;}
.y2_c00031{bottom:1155.900000px;}
.y1_c00031{bottom:1156.650000px;}
.h7_c00031{height:18.000000px;}
.hb_c00031{height:24.000000px;}
.h9_c00031{height:30.000000px;}
.hc_c00031{height:36.000000px;}
.h6_c00031{height:48.000000px;}
.h8_c00031{height:54.000000px;}
.h5_c00031{height:60.000000px;}
.h2_c00031{height:66.000000px;}
.h4_c00031{height:72.000000px;}
.h3_c00031{height:84.000000px;}
.ha_c00031{height:90.000000px;}
.h1_c00031{height:1281.750000px;}
.h0_c00031{height:1281.960022px;}
.w0_c00031{width:948.600036px;}
.w1_c00031{width:948.750000px;}
.x0_c00031{left:0.000000px;}
.xf0_c00031{left:173.400000px;}
.xe4_c00031{left:176.700000px;}
.xe0_c00031{left:178.950000px;}
.xda_c00031{left:180.450000px;}
.xd9_c00031{left:181.950000px;}
.xc7_c00031{left:184.350000px;}
.xc1_c00031{left:186.000000px;}
.xc0_c00031{left:187.500000px;}
.xdd_c00031{left:188.700000px;}
.xb5_c00031{left:190.050000px;}
.xcb_c00031{left:191.550000px;}
.xa6_c00031{left:194.100000px;}
.x9f_c00031{left:195.900000px;}
.xcc_c00031{left:196.950000px;}
.x54_c00031{left:200.250000px;}
.xbd_c00031{left:202.350000px;}
.x1_c00031{left:203.400000px;}
.xb2_c00031{left:205.200000px;}
.xac_c00031{left:206.700000px;}
.xa5_c00031{left:209.550000px;}
.x94_c00031{left:214.050000px;}
.x80_c00031{left:215.250000px;}
.x55_c00031{left:217.500000px;}
.x3a_c00031{left:218.550000px;}
.xea_c00031{left:220.050000px;}
.xdb_c00031{left:221.550000px;}
.xc8_c00031{left:223.950000px;}
.x82_c00031{left:225.000000px;}
.xb6_c00031{left:226.800000px;}
.xbe_c00031{left:228.600000px;}
.xba_c00031{left:230.400000px;}
.xaf_c00031{left:232.200000px;}
.x71_c00031{left:233.250000px;}
.x7c_c00031{left:234.300000px;}
.x6a_c00031{left:235.350000px;}
.xcf_c00031{left:236.850000px;}
.x42_c00031{left:238.650000px;}
.xed_c00031{left:240.150000px;}
.x4c_c00031{left:241.500000px;}
.x3b_c00031{left:243.450000px;}
.xe5_c00031{left:245.250000px;}
.x56_c00031{left:246.300000px;}
.xb0_c00031{left:249.450000px;}
.xa0_c00031{left:250.650000px;}
.x67_c00031{left:252.450000px;}
.xbb_c00031{left:253.800000px;}
.x5e_c00031{left:255.000000px;}
.x98_c00031{left:256.050000px;}
.x57_c00031{left:258.150000px;}
.x86_c00031{left:260.850000px;}
.xb3_c00031{left:264.600000px;}
.x5f_c00031{left:267.300000px;}
.x72_c00031{left:268.500000px;}
.x48_c00031{left:269.550000px;}
.x8b_c00031{left:272.700000px;}
.xa1_c00031{left:274.800000px;}
.xab_c00031{left:276.000000px;}
.x3c_c00031{left:277.650000px;}
.x7a_c00031{left:278.700000px;}
.xc9_c00031{left:280.500000px;}
.x58_c00031{left:281.550000px;}
.x49_c00031{left:283.200000px;}
.xbc_c00031{left:285.450000px;}
.x60_c00031{left:287.400000px;}
.x43_c00031{left:288.750000px;}
.xcd_c00031{left:290.100000px;}
.x73_c00031{left:291.600000px;}
.x6b_c00031{left:293.250000px;}
.xb1_c00031{left:295.500000px;}
.x99_c00031{left:300.300000px;}
.x68_c00031{left:301.650000px;}
.x44_c00031{left:302.850000px;}
.x3d_c00031{left:305.400000px;}
.xb7_c00031{left:307.200000px;}
.x59_c00031{left:310.050000px;}
.x83_c00031{left:311.400000px;}
.x61_c00031{left:313.350000px;}
.xc2_c00031{left:316.350000px;}
.xdc_c00031{left:318.450000px;}
.xa7_c00031{left:319.500000px;}
.xbf_c00031{left:320.700000px;}
.x87_c00031{left:323.100000px;}
.x69_c00031{left:325.050000px;}
.xeb_c00031{left:326.550000px;}
.x4d_c00031{left:327.900000px;}
.x7b_c00031{left:330.450000px;}
.x95_c00031{left:332.100000px;}
.xee_c00031{left:333.450000px;}
.xd6_c00031{left:335.250000px;}
.x62_c00031{left:337.800000px;}
.x90_c00031{left:339.450000px;}
.xc3_c00031{left:340.800000px;}
.xa8_c00031{left:341.850000px;}
.xf1_c00031{left:343.650000px;}
.x3e_c00031{left:345.300000px;}
.x76_c00031{left:346.800000px;}
.xe1_c00031{left:349.200000px;}
.x4e_c00031{left:351.000000px;}
.xe7_c00031{left:352.650000px;}
.x7d_c00031{left:354.900000px;}
.xe2_c00031{left:358.500000px;}
.x4a_c00031{left:359.850000px;}
.x5a_c00031{left:362.250000px;}
.x6c_c00031{left:363.450000px;}
.x74_c00031{left:365.400000px;}
.x77_c00031{left:368.100000px;}
.xf2_c00031{left:371.400000px;}
.xd1_c00031{left:373.350000px;}
.x4b_c00031{left:374.550000px;}
.x91_c00031{left:375.750000px;}
.x8c_c00031{left:377.100000px;}
.x63_c00031{left:378.450000px;}
.xb8_c00031{left:380.250000px;}
.xe8_c00031{left:381.750000px;}
.xc4_c00031{left:384.000000px;}
.xde_c00031{left:385.950000px;}
.xa9_c00031{left:387.600000px;}
.xe6_c00031{left:388.800000px;}
.x4f_c00031{left:390.300000px;}
.x5b_c00031{left:392.100000px;}
.x45_c00031{left:394.950000px;}
.xc5_c00031{left:396.600000px;}
.xd4_c00031{left:399.000000px;}
.x3f_c00031{left:400.050000px;}
.x64_c00031{left:401.550000px;}
.x50_c00031{left:402.600000px;}
.x9a_c00031{left:403.650000px;}
.x7e_c00031{left:405.600000px;}
.xa2_c00031{left:406.950000px;}
.xdf_c00031{left:411.150000px;}
.x6d_c00031{left:414.150000px;}
.x92_c00031{left:415.350000px;}
.x51_c00031{left:418.050000px;}
.xc6_c00031{left:419.700000px;}
.x96_c00031{left:421.800000px;}
.x78_c00031{left:423.600000px;}
.x9b_c00031{left:426.300000px;}
.x75_c00031{left:427.650000px;}
.xd7_c00031{left:429.750000px;}
.xaa_c00031{left:430.800000px;}
.xd0_c00031{left:433.050000px;}
.xad_c00031{left:434.550000px;}
.x40_c00031{left:438.150000px;}
.x8d_c00031{left:440.100000px;}
.x46_c00031{left:443.850000px;}
.x2_c00031{left:447.450000px;}
.xa3_c00031{left:449.400000px;}
.xec_c00031{left:450.750000px;}
.x79_c00031{left:453.150000px;}
.xae_c00031{left:454.650000px;}
.xe3_c00031{left:456.750000px;}
.x65_c00031{left:458.100000px;}
.x52_c00031{left:459.450000px;}
.xb9_c00031{left:460.800000px;}
.xb4_c00031{left:462.150000px;}
.xce_c00031{left:464.250000px;}
.xd5_c00031{left:465.300000px;}
.xe9_c00031{left:466.350000px;}
.x9d_c00031{left:470.550000px;}
.x88_c00031{left:471.750000px;}
.xd2_c00031{left:474.150000px;}
.x84_c00031{left:475.500000px;}
.x5c_c00031{left:476.700000px;}
.xa4_c00031{left:478.200000px;}
.xf3_c00031{left:479.700000px;}
.x89_c00031{left:480.750000px;}
.x6e_c00031{left:481.800000px;}
.x93_c00031{left:483.000000px;}
.x97_c00031{left:486.300000px;}
.x5d_c00031{left:489.000000px;}
.x9e_c00031{left:491.850000px;}
.xd3_c00031{left:492.900000px;}
.x85_c00031{left:494.250000px;}
.x8a_c00031{left:498.000000px;}
.xca_c00031{left:500.400000px;}
.x81_c00031{left:501.750000px;}
.x6f_c00031{left:503.400000px;}
.x8e_c00031{left:505.350000px;}
.x47_c00031{left:507.150000px;}
.xd8_c00031{left:510.300000px;}
.xef_c00031{left:511.800000px;}
.x41_c00031{left:515.550000px;}
.x9c_c00031{left:517.350000px;}
.x8f_c00031{left:518.700000px;}
.x7f_c00031{left:520.350000px;}
.x66_c00031{left:523.950000px;}
.x53_c00031{left:526.050000px;}
.x16e_c00031{left:537.900000px;}
.x15e_c00031{left:540.600000px;}
.xf4_c00031{left:542.100000px;}
.x14e_c00031{left:543.900000px;}
.x70_c00031{left:546.450000px;}
.x142_c00031{left:547.650000px;}
.x113_c00031{left:548.850000px;}
.x12c_c00031{left:550.050000px;}
.x121_c00031{left:551.100000px;}
.x11f_c00031{left:552.300000px;}
.x119_c00031{left:553.350000px;}
.x10f_c00031{left:555.600000px;}
.xfe_c00031{left:557.400000px;}
.xf5_c00031{left:558.750000px;}
.x22_c00031{left:560.550000px;}
.xb_c00031{left:562.050000px;}
.x171_c00031{left:563.850000px;}
.x14a_c00031{left:567.600000px;}
.x12f_c00031{left:569.100000px;}
.x115_c00031{left:571.350000px;}
.x156_c00031{left:573.900000px;}
.x163_c00031{left:574.950000px;}
.xfb_c00031{left:576.000000px;}
.x143_c00031{left:577.650000px;}
.x3_c00031{left:579.900000px;}
.x133_c00031{left:582.150000px;}
.x16f_c00031{left:583.350000px;}
.x14f_c00031{left:584.550000px;}
.x11a_c00031{left:585.750000px;}
.x167_c00031{left:587.100000px;}
.x13_c00031{left:588.450000px;}
.x172_c00031{left:589.800000px;}
.x19_c00031{left:591.750000px;}
.x12d_c00031{left:595.050000px;}
.x10a_c00031{left:596.100000px;}
.x23_c00031{left:598.050000px;}
.x15b_c00031{left:599.250000px;}
.x33_c00031{left:600.900000px;}
.x125_c00031{left:603.150000px;}
.x148_c00031{left:604.350000px;}
.x152_c00031{left:606.750000px;}
.x11c_c00031{left:607.950000px;}
.x150_c00031{left:609.000000px;}
.x1a_c00031{left:610.500000px;}
.x4_c00031{left:611.550000px;}
.x14c_c00031{left:612.750000px;}
.xf6_c00031{left:615.300000px;}
.x116_c00031{left:616.350000px;}
.x139_c00031{left:618.150000px;}
.x34_c00031{left:620.400000px;}
.xc_c00031{left:621.450000px;}
.x122_c00031{left:623.400000px;}
.x1b_c00031{left:624.900000px;}
.xf7_c00031{left:626.100000px;}
.x105_c00031{left:628.050000px;}
.x15f_c00031{left:630.600000px;}
.x126_c00031{left:631.650000px;}
.x161_c00031{left:633.150000px;}
.x24_c00031{left:635.850000px;}
.x35_c00031{left:638.400000px;}
.x157_c00031{left:639.450000px;}
.x114_c00031{left:641.100000px;}
.x16a_c00031{left:642.300000px;}
.x13a_c00031{left:643.650000px;}
.x130_c00031{left:646.650000px;}
.x10b_c00031{left:648.600000px;}
.x2f_c00031{left:649.950000px;}
.x28_c00031{left:652.050000px;}
.xd_c00031{left:655.950000px;}
.x16c_c00031{left:657.750000px;}
.x1c_c00031{left:658.800000px;}
.x13f_c00031{left:659.850000px;}
.x110_c00031{left:661.800000px;}
.x15c_c00031{left:664.050000px;}
.x5_c00031{left:665.850000px;}
.x127_c00031{left:666.900000px;}
.x14b_c00031{left:670.500000px;}
.x1d_c00031{left:673.200000px;}
.x29_c00031{left:675.750000px;}
.x158_c00031{left:679.050000px;}
.x123_c00031{left:680.700000px;}
.xf8_c00031{left:681.900000px;}
.x164_c00031{left:684.000000px;}
.xff_c00031{left:686.250000px;}
.x2a_c00031{left:687.600000px;}
.x106_c00031{left:689.550000px;}
.xf9_c00031{left:690.600000px;}
.x144_c00031{left:692.100000px;}
.x30_c00031{left:693.450000px;}
.x12b_c00031{left:695.850000px;}
.x100_c00031{left:697.350000px;}
.x168_c00031{left:699.000000px;}
.x6_c00031{left:700.050000px;}
.x146_c00031{left:701.550000px;}
.x14_c00031{left:704.400000px;}
.x134_c00031{left:706.050000px;}
.xfc_c00031{left:707.100000px;}
.x1e_c00031{left:708.150000px;}
.x131_c00031{left:711.750000px;}
.xe_c00031{left:712.800000px;}
.x169_c00031{left:714.150000px;}
.xfa_c00031{left:718.350000px;}
.x12e_c00031{left:720.300000px;}
.x10c_c00031{left:723.150000px;}
.x25_c00031{left:724.800000px;}
.x140_c00031{left:726.900000px;}
.x162_c00031{left:729.000000px;}
.x117_c00031{left:730.950000px;}
.x10d_c00031{left:732.450000px;}
.x165_c00031{left:736.950000px;}
.x13b_c00031{left:738.300000px;}
.x15_c00031{left:740.700000px;}
.x135_c00031{left:742.800000px;}
.xf_c00031{left:744.150000px;}
.x160_c00031{left:747.300000px;}
.x7_c00031{left:748.350000px;}
.x111_c00031{left:750.300000px;}
.xfd_c00031{left:751.350000px;}
.x2b_c00031{left:752.400000px;}
.x147_c00031{left:753.450000px;}
.x14d_c00031{left:754.950000px;}
.x151_c00031{left:756.600000px;}
.x153_c00031{left:757.800000px;}
.x107_c00031{left:760.200000px;}
.x101_c00031{left:762.900000px;}
.x16d_c00031{left:766.800000px;}
.x36_c00031{left:768.000000px;}
.x128_c00031{left:769.200000px;}
.x8_c00031{left:770.700000px;}
.x10_c00031{left:772.950000px;}
.x16_c00031{left:774.900000px;}
.x124_c00031{left:777.900000px;}
.x2c_c00031{left:779.400000px;}
.x37_c00031{left:781.350000px;}
.x108_c00031{left:783.900000px;}
.x1f_c00031{left:785.100000px;}
.x136_c00031{left:787.800000px;}
.x129_c00031{left:789.750000px;}
.x132_c00031{left:792.750000px;}
.x159_c00031{left:793.950000px;}
.x170_c00031{left:795.000000px;}
.x109_c00031{left:796.200000px;}
.x137_c00031{left:798.900000px;}
.x166_c00031{left:800.100000px;}
.x26_c00031{left:801.750000px;}
.x102_c00031{left:804.000000px;}
.x15d_c00031{left:805.500000px;}
.x2d_c00031{left:808.950000px;}
.x154_c00031{left:811.050000px;}
.x13c_c00031{left:814.350000px;}
.x11d_c00031{left:816.000000px;}
.x15a_c00031{left:817.050000px;}
.x20_c00031{left:818.550000px;}
.x31_c00031{left:820.050000px;}
.x141_c00031{left:821.850000px;}
.x38_c00031{left:823.500000px;}
.x11_c00031{left:824.850000px;}
.x9_c00031{left:829.050000px;}
.x155_c00031{left:830.100000px;}
.x145_c00031{left:832.500000px;}
.x10e_c00031{left:835.050000px;}
.x112_c00031{left:837.900000px;}
.x27_c00031{left:840.300000px;}
.x118_c00031{left:841.500000px;}
.x173_c00031{left:842.550000px;}
.x138_c00031{left:843.900000px;}
.x11e_c00031{left:845.550000px;}
.x39_c00031{left:846.900000px;}
.x17_c00031{left:848.400000px;}
.x32_c00031{left:849.900000px;}
.x120_c00031{left:851.400000px;}
.x16b_c00031{left:853.650000px;}
.x13d_c00031{left:857.850000px;}
.x103_c00031{left:859.050000px;}
.x11b_c00031{left:860.550000px;}
.x12_c00031{left:862.350000px;}
.x18_c00031{left:865.350000px;}
.x12a_c00031{left:867.150000px;}
.x2e_c00031{left:869.100000px;}
.x149_c00031{left:870.750000px;}
.x21_c00031{left:872.250000px;}
.x13e_c00031{left:874.050000px;}
.xa_c00031{left:875.550000px;}
.x104_c00031{left:877.800000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws6_c00031{word-spacing:-6.361266pt;}
.ws2_c00031{word-spacing:-4.747475pt;}
.wsa_c00031{word-spacing:-4.383357pt;}
.ws3_c00031{word-spacing:-2.356241pt;}
.wsb_c00031{word-spacing:-0.987654pt;}
.wsc_c00031{word-spacing:0.000000pt;}
.ws5_c00031{word-spacing:0.168099pt;}
.ws8_c00031{word-spacing:4.825397pt;}
.ws4_c00031{word-spacing:6.878706pt;}
.ws7_c00031{word-spacing:18.666667pt;}
.ws0_c00031{word-spacing:20.832165pt;}
.ws1_c00031{word-spacing:31.197708pt;}
.ws9_c00031{word-spacing:1095.333333pt;}
.fs5_c00031{font-size:16.000000pt;}
.fs9_c00031{font-size:21.333333pt;}
.fs7_c00031{font-size:26.666667pt;}
.fsa_c00031{font-size:32.000000pt;}
.fs4_c00031{font-size:42.666667pt;}
.fs6_c00031{font-size:48.000000pt;}
.fs3_c00031{font-size:53.333333pt;}
.fs0_c00031{font-size:58.666667pt;}
.fs2_c00031{font-size:64.000000pt;}
.fs1_c00031{font-size:74.666667pt;}
.fs8_c00031{font-size:80.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y78_c00031{bottom:178.266667pt;}
.y77_c00031{bottom:190.133333pt;}
.y43_c00031{bottom:192.933333pt;}
.y42_c00031{bottom:195.200000pt;}
.y76_c00031{bottom:203.866667pt;}
.y41_c00031{bottom:205.733333pt;}
.y75_c00031{bottom:215.733333pt;}
.y40_c00031{bottom:216.133333pt;}
.y3f_c00031{bottom:225.066667pt;}
.y74_c00031{bottom:228.133333pt;}
.y3e_c00031{bottom:237.600000pt;}
.y73_c00031{bottom:242.133333pt;}
.y3d_c00031{bottom:251.333333pt;}
.y72_c00031{bottom:254.933333pt;}
.y3c_c00031{bottom:264.400000pt;}
.y71_c00031{bottom:267.466667pt;}
.y3b_c00031{bottom:271.733333pt;}
.y70_c00031{bottom:280.000000pt;}
.y3a_c00031{bottom:286.800000pt;}
.y6f_c00031{bottom:291.866667pt;}
.y39_c00031{bottom:296.666667pt;}
.y6e_c00031{bottom:305.866667pt;}
.y38_c00031{bottom:316.533333pt;}
.y6d_c00031{bottom:317.066667pt;}
.y6c_c00031{bottom:330.533333pt;}
.y37_c00031{bottom:332.800000pt;}
.y36_c00031{bottom:335.733333pt;}
.y6b_c00031{bottom:343.333333pt;}
.y35_c00031{bottom:347.866667pt;}
.y6a_c00031{bottom:356.400000pt;}
.y34_c00031{bottom:359.066667pt;}
.y69_c00031{bottom:368.933333pt;}
.y33_c00031{bottom:371.866667pt;}
.y68_c00031{bottom:381.466667pt;}
.y67_c00031{bottom:394.266667pt;}
.y32_c00031{bottom:395.866667pt;}
.y31_c00031{bottom:405.466667pt;}
.y66_c00031{bottom:407.066667pt;}
.y65_c00031{bottom:419.600000pt;}
.y30_c00031{bottom:419.866667pt;}
.y2f_c00031{bottom:432.400000pt;}
.y64_c00031{bottom:432.666667pt;}
.y2e_c00031{bottom:442.933333pt;}
.y63_c00031{bottom:445.466667pt;}
.y62_c00031{bottom:457.333333pt;}
.y2d_c00031{bottom:458.266667pt;}
.y2c_c00031{bottom:468.800000pt;}
.y61_c00031{bottom:471.066667pt;}
.y2b_c00031{bottom:482.533333pt;}
.y60_c00031{bottom:484.133333pt;}
.y2a_c00031{bottom:493.466667pt;}
.y5f_c00031{bottom:496.666667pt;}
.y5e_c00031{bottom:502.000000pt;}
.y29_c00031{bottom:505.333333pt;}
.y5d_c00031{bottom:509.066667pt;}
.y28_c00031{bottom:517.466667pt;}
.y5c_c00031{bottom:521.866667pt;}
.y27_c00031{bottom:531.200000pt;}
.y5b_c00031{bottom:534.666667pt;}
.y26_c00031{bottom:544.266667pt;}
.y5a_c00031{bottom:547.466667pt;}
.y25_c00031{bottom:555.866667pt;}
.y59_c00031{bottom:560.000000pt;}
.y58_c00031{bottom:573.466667pt;}
.y57_c00031{bottom:585.333333pt;}
.y56_c00031{bottom:598.800000pt;}
.y24_c00031{bottom:601.866667pt;}
.y55_c00031{bottom:611.333333pt;}
.y23_c00031{bottom:617.200000pt;}
.y54_c00031{bottom:623.466667pt;}
.y22_c00031{bottom:625.866667pt;}
.y21_c00031{bottom:632.000000pt;}
.y53_c00031{bottom:637.200000pt;}
.y52_c00031{bottom:649.333333pt;}
.y20_c00031{bottom:652.133333pt;}
.y51_c00031{bottom:662.133333pt;}
.y50_c00031{bottom:663.066667pt;}
.y1f_c00031{bottom:667.200000pt;}
.y4f_c00031{bottom:680.266667pt;}
.y1e_c00031{bottom:687.066667pt;}
.y1d_c00031{bottom:702.133333pt;}
.y4e_c00031{bottom:708.400000pt;}
.y1c_c00031{bottom:717.733333pt;}
.y4d_c00031{bottom:724.133333pt;}
.y1b_c00031{bottom:733.466667pt;}
.y4c_c00031{bottom:740.133333pt;}
.y1a_c00031{bottom:754.266667pt;}
.y19_c00031{bottom:764.533333pt;}
.y4b_c00031{bottom:775.600000pt;}
.y18_c00031{bottom:779.200000pt;}
.y4a_c00031{bottom:791.600000pt;}
.y17_c00031{bottom:799.333333pt;}
.y49_c00031{bottom:807.600000pt;}
.y16_c00031{bottom:814.666667pt;}
.y48_c00031{bottom:823.600000pt;}
.y15_c00031{bottom:834.266667pt;}
.y47_c00031{bottom:839.600000pt;}
.y14_c00031{bottom:849.600000pt;}
.y46_c00031{bottom:854.666667pt;}
.y13_c00031{bottom:868.800000pt;}
.y45_c00031{bottom:874.933333pt;}
.y11_c00031{bottom:884.400000pt;}
.ya_c00031{bottom:890.933333pt;}
.y44_c00031{bottom:902.666667pt;}
.y10_c00031{bottom:903.600000pt;}
.y9_c00031{bottom:906.266667pt;}
.yf_c00031{bottom:919.333333pt;}
.y8_c00031{bottom:922.266667pt;}
.ye_c00031{bottom:934.666667pt;}
.y7_c00031{bottom:938.266667pt;}
.y6_c00031{bottom:954.266667pt;}
.yd_c00031{bottom:969.600000pt;}
.y5_c00031{bottom:970.266667pt;}
.yc_c00031{bottom:984.933333pt;}
.y4_c00031{bottom:986.266667pt;}
.y3_c00031{bottom:1001.600000pt;}
.yb_c00031{bottom:1004.533333pt;}
.y12_c00031{bottom:1014.133333pt;}
.y2_c00031{bottom:1027.466667pt;}
.y1_c00031{bottom:1028.133333pt;}
.h7_c00031{height:16.000000pt;}
.hb_c00031{height:21.333333pt;}
.h9_c00031{height:26.666667pt;}
.hc_c00031{height:32.000000pt;}
.h6_c00031{height:42.666667pt;}
.h8_c00031{height:48.000000pt;}
.h5_c00031{height:53.333333pt;}
.h2_c00031{height:58.666667pt;}
.h4_c00031{height:64.000000pt;}
.h3_c00031{height:74.666667pt;}
.ha_c00031{height:80.000000pt;}
.h1_c00031{height:1139.333333pt;}
.h0_c00031{height:1139.520020pt;}
.w0_c00031{width:843.200032pt;}
.w1_c00031{width:843.333333pt;}
.x0_c00031{left:0.000000pt;}
.xf0_c00031{left:154.133333pt;}
.xe4_c00031{left:157.066667pt;}
.xe0_c00031{left:159.066667pt;}
.xda_c00031{left:160.400000pt;}
.xd9_c00031{left:161.733333pt;}
.xc7_c00031{left:163.866667pt;}
.xc1_c00031{left:165.333333pt;}
.xc0_c00031{left:166.666667pt;}
.xdd_c00031{left:167.733333pt;}
.xb5_c00031{left:168.933333pt;}
.xcb_c00031{left:170.266667pt;}
.xa6_c00031{left:172.533333pt;}
.x9f_c00031{left:174.133333pt;}
.xcc_c00031{left:175.066667pt;}
.x54_c00031{left:178.000000pt;}
.xbd_c00031{left:179.866667pt;}
.x1_c00031{left:180.800000pt;}
.xb2_c00031{left:182.400000pt;}
.xac_c00031{left:183.733333pt;}
.xa5_c00031{left:186.266667pt;}
.x94_c00031{left:190.266667pt;}
.x80_c00031{left:191.333333pt;}
.x55_c00031{left:193.333333pt;}
.x3a_c00031{left:194.266667pt;}
.xea_c00031{left:195.600000pt;}
.xdb_c00031{left:196.933333pt;}
.xc8_c00031{left:199.066667pt;}
.x82_c00031{left:200.000000pt;}
.xb6_c00031{left:201.600000pt;}
.xbe_c00031{left:203.200000pt;}
.xba_c00031{left:204.800000pt;}
.xaf_c00031{left:206.400000pt;}
.x71_c00031{left:207.333333pt;}
.x7c_c00031{left:208.266667pt;}
.x6a_c00031{left:209.200000pt;}
.xcf_c00031{left:210.533333pt;}
.x42_c00031{left:212.133333pt;}
.xed_c00031{left:213.466667pt;}
.x4c_c00031{left:214.666667pt;}
.x3b_c00031{left:216.400000pt;}
.xe5_c00031{left:218.000000pt;}
.x56_c00031{left:218.933333pt;}
.xb0_c00031{left:221.733333pt;}
.xa0_c00031{left:222.800000pt;}
.x67_c00031{left:224.400000pt;}
.xbb_c00031{left:225.600000pt;}
.x5e_c00031{left:226.666667pt;}
.x98_c00031{left:227.600000pt;}
.x57_c00031{left:229.466667pt;}
.x86_c00031{left:231.866667pt;}
.xb3_c00031{left:235.200000pt;}
.x5f_c00031{left:237.600000pt;}
.x72_c00031{left:238.666667pt;}
.x48_c00031{left:239.600000pt;}
.x8b_c00031{left:242.400000pt;}
.xa1_c00031{left:244.266667pt;}
.xab_c00031{left:245.333333pt;}
.x3c_c00031{left:246.800000pt;}
.x7a_c00031{left:247.733333pt;}
.xc9_c00031{left:249.333333pt;}
.x58_c00031{left:250.266667pt;}
.x49_c00031{left:251.733333pt;}
.xbc_c00031{left:253.733333pt;}
.x60_c00031{left:255.466667pt;}
.x43_c00031{left:256.666667pt;}
.xcd_c00031{left:257.866667pt;}
.x73_c00031{left:259.200000pt;}
.x6b_c00031{left:260.666667pt;}
.xb1_c00031{left:262.666667pt;}
.x99_c00031{left:266.933333pt;}
.x68_c00031{left:268.133333pt;}
.x44_c00031{left:269.200000pt;}
.x3d_c00031{left:271.466667pt;}
.xb7_c00031{left:273.066667pt;}
.x59_c00031{left:275.600000pt;}
.x83_c00031{left:276.800000pt;}
.x61_c00031{left:278.533333pt;}
.xc2_c00031{left:281.200000pt;}
.xdc_c00031{left:283.066667pt;}
.xa7_c00031{left:284.000000pt;}
.xbf_c00031{left:285.066667pt;}
.x87_c00031{left:287.200000pt;}
.x69_c00031{left:288.933333pt;}
.xeb_c00031{left:290.266667pt;}
.x4d_c00031{left:291.466667pt;}
.x7b_c00031{left:293.733333pt;}
.x95_c00031{left:295.200000pt;}
.xee_c00031{left:296.400000pt;}
.xd6_c00031{left:298.000000pt;}
.x62_c00031{left:300.266667pt;}
.x90_c00031{left:301.733333pt;}
.xc3_c00031{left:302.933333pt;}
.xa8_c00031{left:303.866667pt;}
.xf1_c00031{left:305.466667pt;}
.x3e_c00031{left:306.933333pt;}
.x76_c00031{left:308.266667pt;}
.xe1_c00031{left:310.400000pt;}
.x4e_c00031{left:312.000000pt;}
.xe7_c00031{left:313.466667pt;}
.x7d_c00031{left:315.466667pt;}
.xe2_c00031{left:318.666667pt;}
.x4a_c00031{left:319.866667pt;}
.x5a_c00031{left:322.000000pt;}
.x6c_c00031{left:323.066667pt;}
.x74_c00031{left:324.800000pt;}
.x77_c00031{left:327.200000pt;}
.xf2_c00031{left:330.133333pt;}
.xd1_c00031{left:331.866667pt;}
.x4b_c00031{left:332.933333pt;}
.x91_c00031{left:334.000000pt;}
.x8c_c00031{left:335.200000pt;}
.x63_c00031{left:336.400000pt;}
.xb8_c00031{left:338.000000pt;}
.xe8_c00031{left:339.333333pt;}
.xc4_c00031{left:341.333333pt;}
.xde_c00031{left:343.066667pt;}
.xa9_c00031{left:344.533333pt;}
.xe6_c00031{left:345.600000pt;}
.x4f_c00031{left:346.933333pt;}
.x5b_c00031{left:348.533333pt;}
.x45_c00031{left:351.066667pt;}
.xc5_c00031{left:352.533333pt;}
.xd4_c00031{left:354.666667pt;}
.x3f_c00031{left:355.600000pt;}
.x64_c00031{left:356.933333pt;}
.x50_c00031{left:357.866667pt;}
.x9a_c00031{left:358.800000pt;}
.x7e_c00031{left:360.533333pt;}
.xa2_c00031{left:361.733333pt;}
.xdf_c00031{left:365.466667pt;}
.x6d_c00031{left:368.133333pt;}
.x92_c00031{left:369.200000pt;}
.x51_c00031{left:371.600000pt;}
.xc6_c00031{left:373.066667pt;}
.x96_c00031{left:374.933333pt;}
.x78_c00031{left:376.533333pt;}
.x9b_c00031{left:378.933333pt;}
.x75_c00031{left:380.133333pt;}
.xd7_c00031{left:382.000000pt;}
.xaa_c00031{left:382.933333pt;}
.xd0_c00031{left:384.933333pt;}
.xad_c00031{left:386.266667pt;}
.x40_c00031{left:389.466667pt;}
.x8d_c00031{left:391.200000pt;}
.x46_c00031{left:394.533333pt;}
.x2_c00031{left:397.733333pt;}
.xa3_c00031{left:399.466667pt;}
.xec_c00031{left:400.666667pt;}
.x79_c00031{left:402.800000pt;}
.xae_c00031{left:404.133333pt;}
.xe3_c00031{left:406.000000pt;}
.x65_c00031{left:407.200000pt;}
.x52_c00031{left:408.400000pt;}
.xb9_c00031{left:409.600000pt;}
.xb4_c00031{left:410.800000pt;}
.xce_c00031{left:412.666667pt;}
.xd5_c00031{left:413.600000pt;}
.xe9_c00031{left:414.533333pt;}
.x9d_c00031{left:418.266667pt;}
.x88_c00031{left:419.333333pt;}
.xd2_c00031{left:421.466667pt;}
.x84_c00031{left:422.666667pt;}
.x5c_c00031{left:423.733333pt;}
.xa4_c00031{left:425.066667pt;}
.xf3_c00031{left:426.400000pt;}
.x89_c00031{left:427.333333pt;}
.x6e_c00031{left:428.266667pt;}
.x93_c00031{left:429.333333pt;}
.x97_c00031{left:432.266667pt;}
.x5d_c00031{left:434.666667pt;}
.x9e_c00031{left:437.200000pt;}
.xd3_c00031{left:438.133333pt;}
.x85_c00031{left:439.333333pt;}
.x8a_c00031{left:442.666667pt;}
.xca_c00031{left:444.800000pt;}
.x81_c00031{left:446.000000pt;}
.x6f_c00031{left:447.466667pt;}
.x8e_c00031{left:449.200000pt;}
.x47_c00031{left:450.800000pt;}
.xd8_c00031{left:453.600000pt;}
.xef_c00031{left:454.933333pt;}
.x41_c00031{left:458.266667pt;}
.x9c_c00031{left:459.866667pt;}
.x8f_c00031{left:461.066667pt;}
.x7f_c00031{left:462.533333pt;}
.x66_c00031{left:465.733333pt;}
.x53_c00031{left:467.600000pt;}
.x16e_c00031{left:478.133333pt;}
.x15e_c00031{left:480.533333pt;}
.xf4_c00031{left:481.866667pt;}
.x14e_c00031{left:483.466667pt;}
.x70_c00031{left:485.733333pt;}
.x142_c00031{left:486.800000pt;}
.x113_c00031{left:487.866667pt;}
.x12c_c00031{left:488.933333pt;}
.x121_c00031{left:489.866667pt;}
.x11f_c00031{left:490.933333pt;}
.x119_c00031{left:491.866667pt;}
.x10f_c00031{left:493.866667pt;}
.xfe_c00031{left:495.466667pt;}
.xf5_c00031{left:496.666667pt;}
.x22_c00031{left:498.266667pt;}
.xb_c00031{left:499.600000pt;}
.x171_c00031{left:501.200000pt;}
.x14a_c00031{left:504.533333pt;}
.x12f_c00031{left:505.866667pt;}
.x115_c00031{left:507.866667pt;}
.x156_c00031{left:510.133333pt;}
.x163_c00031{left:511.066667pt;}
.xfb_c00031{left:512.000000pt;}
.x143_c00031{left:513.466667pt;}
.x3_c00031{left:515.466667pt;}
.x133_c00031{left:517.466667pt;}
.x16f_c00031{left:518.533333pt;}
.x14f_c00031{left:519.600000pt;}
.x11a_c00031{left:520.666667pt;}
.x167_c00031{left:521.866667pt;}
.x13_c00031{left:523.066667pt;}
.x172_c00031{left:524.266667pt;}
.x19_c00031{left:526.000000pt;}
.x12d_c00031{left:528.933333pt;}
.x10a_c00031{left:529.866667pt;}
.x23_c00031{left:531.600000pt;}
.x15b_c00031{left:532.666667pt;}
.x33_c00031{left:534.133333pt;}
.x125_c00031{left:536.133333pt;}
.x148_c00031{left:537.200000pt;}
.x152_c00031{left:539.333333pt;}
.x11c_c00031{left:540.400000pt;}
.x150_c00031{left:541.333333pt;}
.x1a_c00031{left:542.666667pt;}
.x4_c00031{left:543.600000pt;}
.x14c_c00031{left:544.666667pt;}
.xf6_c00031{left:546.933333pt;}
.x116_c00031{left:547.866667pt;}
.x139_c00031{left:549.466667pt;}
.x34_c00031{left:551.466667pt;}
.xc_c00031{left:552.400000pt;}
.x122_c00031{left:554.133333pt;}
.x1b_c00031{left:555.466667pt;}
.xf7_c00031{left:556.533333pt;}
.x105_c00031{left:558.266667pt;}
.x15f_c00031{left:560.533333pt;}
.x126_c00031{left:561.466667pt;}
.x161_c00031{left:562.800000pt;}
.x24_c00031{left:565.200000pt;}
.x35_c00031{left:567.466667pt;}
.x157_c00031{left:568.400000pt;}
.x114_c00031{left:569.866667pt;}
.x16a_c00031{left:570.933333pt;}
.x13a_c00031{left:572.133333pt;}
.x130_c00031{left:574.800000pt;}
.x10b_c00031{left:576.533333pt;}
.x2f_c00031{left:577.733333pt;}
.x28_c00031{left:579.600000pt;}
.xd_c00031{left:583.066667pt;}
.x16c_c00031{left:584.666667pt;}
.x1c_c00031{left:585.600000pt;}
.x13f_c00031{left:586.533333pt;}
.x110_c00031{left:588.266667pt;}
.x15c_c00031{left:590.266667pt;}
.x5_c00031{left:591.866667pt;}
.x127_c00031{left:592.800000pt;}
.x14b_c00031{left:596.000000pt;}
.x1d_c00031{left:598.400000pt;}
.x29_c00031{left:600.666667pt;}
.x158_c00031{left:603.600000pt;}
.x123_c00031{left:605.066667pt;}
.xf8_c00031{left:606.133333pt;}
.x164_c00031{left:608.000000pt;}
.xff_c00031{left:610.000000pt;}
.x2a_c00031{left:611.200000pt;}
.x106_c00031{left:612.933333pt;}
.xf9_c00031{left:613.866667pt;}
.x144_c00031{left:615.200000pt;}
.x30_c00031{left:616.400000pt;}
.x12b_c00031{left:618.533333pt;}
.x100_c00031{left:619.866667pt;}
.x168_c00031{left:621.333333pt;}
.x6_c00031{left:622.266667pt;}
.x146_c00031{left:623.600000pt;}
.x14_c00031{left:626.133333pt;}
.x134_c00031{left:627.600000pt;}
.xfc_c00031{left:628.533333pt;}
.x1e_c00031{left:629.466667pt;}
.x131_c00031{left:632.666667pt;}
.xe_c00031{left:633.600000pt;}
.x169_c00031{left:634.800000pt;}
.xfa_c00031{left:638.533333pt;}
.x12e_c00031{left:640.266667pt;}
.x10c_c00031{left:642.800000pt;}
.x25_c00031{left:644.266667pt;}
.x140_c00031{left:646.133333pt;}
.x162_c00031{left:648.000000pt;}
.x117_c00031{left:649.733333pt;}
.x10d_c00031{left:651.066667pt;}
.x165_c00031{left:655.066667pt;}
.x13b_c00031{left:656.266667pt;}
.x15_c00031{left:658.400000pt;}
.x135_c00031{left:660.266667pt;}
.xf_c00031{left:661.466667pt;}
.x160_c00031{left:664.266667pt;}
.x7_c00031{left:665.200000pt;}
.x111_c00031{left:666.933333pt;}
.xfd_c00031{left:667.866667pt;}
.x2b_c00031{left:668.800000pt;}
.x147_c00031{left:669.733333pt;}
.x14d_c00031{left:671.066667pt;}
.x151_c00031{left:672.533333pt;}
.x153_c00031{left:673.600000pt;}
.x107_c00031{left:675.733333pt;}
.x101_c00031{left:678.133333pt;}
.x16d_c00031{left:681.600000pt;}
.x36_c00031{left:682.666667pt;}
.x128_c00031{left:683.733333pt;}
.x8_c00031{left:685.066667pt;}
.x10_c00031{left:687.066667pt;}
.x16_c00031{left:688.800000pt;}
.x124_c00031{left:691.466667pt;}
.x2c_c00031{left:692.800000pt;}
.x37_c00031{left:694.533333pt;}
.x108_c00031{left:696.800000pt;}
.x1f_c00031{left:697.866667pt;}
.x136_c00031{left:700.266667pt;}
.x129_c00031{left:702.000000pt;}
.x132_c00031{left:704.666667pt;}
.x159_c00031{left:705.733333pt;}
.x170_c00031{left:706.666667pt;}
.x109_c00031{left:707.733333pt;}
.x137_c00031{left:710.133333pt;}
.x166_c00031{left:711.200000pt;}
.x26_c00031{left:712.666667pt;}
.x102_c00031{left:714.666667pt;}
.x15d_c00031{left:716.000000pt;}
.x2d_c00031{left:719.066667pt;}
.x154_c00031{left:720.933333pt;}
.x13c_c00031{left:723.866667pt;}
.x11d_c00031{left:725.333333pt;}
.x15a_c00031{left:726.266667pt;}
.x20_c00031{left:727.600000pt;}
.x31_c00031{left:728.933333pt;}
.x141_c00031{left:730.533333pt;}
.x38_c00031{left:732.000000pt;}
.x11_c00031{left:733.200000pt;}
.x9_c00031{left:736.933333pt;}
.x155_c00031{left:737.866667pt;}
.x145_c00031{left:740.000000pt;}
.x10e_c00031{left:742.266667pt;}
.x112_c00031{left:744.800000pt;}
.x27_c00031{left:746.933333pt;}
.x118_c00031{left:748.000000pt;}
.x173_c00031{left:748.933333pt;}
.x138_c00031{left:750.133333pt;}
.x11e_c00031{left:751.600000pt;}
.x39_c00031{left:752.800000pt;}
.x17_c00031{left:754.133333pt;}
.x32_c00031{left:755.466667pt;}
.x120_c00031{left:756.800000pt;}
.x16b_c00031{left:758.800000pt;}
.x13d_c00031{left:762.533333pt;}
.x103_c00031{left:763.600000pt;}
.x11b_c00031{left:764.933333pt;}
.x12_c00031{left:766.533333pt;}
.x18_c00031{left:769.200000pt;}
.x12a_c00031{left:770.800000pt;}
.x2e_c00031{left:772.533333pt;}
.x149_c00031{left:774.000000pt;}
.x21_c00031{left:775.333333pt;}
.x13e_c00031{left:776.933333pt;}
.xa_c00031{left:778.266667pt;}
.x104_c00031{left:780.266667pt;}
}





/* 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_c00032 {
    display:none;
  }
  .loading-indicator_c00032.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00032 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_c00032 { 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_c00032" -> "#page-container .classname_c00032")
 */
.pf_c00032 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00032 { /* 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_c00032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00032 { /* 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_c00032 { /* 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_c00032 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00032 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00032 {overflow:visible;}
  }
}
.c_c00032 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00032 { /* 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_c00032:after { /* webkit #35443 */
  content: '';
}
.t_c00032:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00032 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 */
}
.__c00032 { /* 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_c00032 { /* info for Javascript */
  display:none;
}
.l_c00032 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00032 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00032 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00032: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_c00032 {
    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_c00032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00032.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_c00032 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00032;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.000000;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;}
.mc7_c00032{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m57_c00032{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m104_c00032{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00032{transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);}
.m94_c00032{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00032{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00032{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.maa_c00032{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m103_c00032{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mef_c00032{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00032{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00032{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m6_c00032{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me2_c00032{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.md6_c00032{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m31_c00032{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m38_c00032{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00032{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00032{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me4_c00032{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00032{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m106_c00032{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.md7_c00032{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00032{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m91_c00032{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mca_c00032{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m110_c00032{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m108_c00032{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m10_c00032{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00032{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m62_c00032{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.mda_c00032{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00032{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00032{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mce_c00032{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00032{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00032{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m44_c00032{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00032{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m53_c00032{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m95_c00032{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00032{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00032{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m24_c00032{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00032{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mff_c00032{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m25_c00032{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m85_c00032{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00032{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00032{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00032{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m80_c00032{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m72_c00032{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m90_c00032{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00032{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00032{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m100_c00032{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m37_c00032{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md5_c00032{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m15_c00032{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3_c00032{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00032{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.me1_c00032{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m84_c00032{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m89_c00032{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m88_c00032{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m101_c00032{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00032{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00032{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mb_c00032{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md1_c00032{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00032{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md_c00032{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00032{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc_c00032{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00032{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m59_c00032{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00032{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.maf_c00032{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00032{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00032{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00032{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m28_c00032{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00032{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00032{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m56_c00032{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m63_c00032{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mde_c00032{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00032{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m81_c00032{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7_c00032{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00032{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00032{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00032{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m46_c00032{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m66_c00032{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.me9_c00032{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m54_c00032{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00032{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00032{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m20_c00032{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00032{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m102_c00032{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mae_c00032{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mee_c00032{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00032{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m18_c00032{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mad_c00032{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2_c00032{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00032{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00032{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00032{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m92_c00032{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00032{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m40_c00032{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma_c00032{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md2_c00032{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mf_c00032{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00032{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00032{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00032{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md3_c00032{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m27_c00032{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00032{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00032{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8_c00032{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m73_c00032{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mec_c00032{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m61_c00032{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00032{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00032{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m34_c00032{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m68_c00032{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m98_c00032{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m11_c00032{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00032{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9_c00032{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00032{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00032{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m35_c00032{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m39_c00032{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m30_c00032{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m82_c00032{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me3_c00032{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1_c00032{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me0_c00032{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00032{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00032{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m69_c00032{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m16_c00032{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00032{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m48_c00032{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m26_c00032{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00032{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00032{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m97_c00032{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me8_c00032{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m29_c00032{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00032{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m50_c00032{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m41_c00032{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m36_c00032{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00032{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m86_c00032{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m33_c00032{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00032{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md9_c00032{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.md0_c00032{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00032{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00032{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m93_c00032{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m32_c00032{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m67_c00032{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m43_c00032{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mac_c00032{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00032{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00032{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m74_c00032{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m70_c00032{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5_c00032{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00032{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00032{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00032{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m49_c00032{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m23_c00032{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00032{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00032{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m52_c00032{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m55_c00032{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m83_c00032{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m47_c00032{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me_c00032{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00032{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m75_c00032{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m17_c00032{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md4_c00032{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md8_c00032{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00032{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m64_c00032{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me7_c00032{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00032{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4_c00032{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00032{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m51_c00032{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00032{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m42_c00032{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m21_c00032{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m14_c00032{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00032{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00032{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00032{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00032{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m22_c00032{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m58_c00032{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00032{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00032{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00032{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00032{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00032{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00032{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00032{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m96_c00032{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00032{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m77_c00032{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m45_c00032{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00032{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00032{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00032{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);}
.m78_c00032{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00032{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mba_c00032{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00032{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m109_c00032{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00032{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m71_c00032{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mea_c00032{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00032{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m87_c00032{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00032{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m79_c00032{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00032{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00032{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m107_c00032{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m12_c00032{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m65_c00032{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m76_c00032{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.meb_c00032{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.me6_c00032{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00032{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00032{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m13_c00032{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00032{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00032{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m105_c00032{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00032{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00032{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00032{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00032{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00032{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00032{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00032{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00032{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00032{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.med_c00032{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mab_c00032{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me5_c00032{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00032{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m99_c00032{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m60_c00032{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m111_c00032{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00032{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m0_c00032{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00032{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00032{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls0_c00032{letter-spacing:0.000000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{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__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00032{word-spacing:-3.095238px;}
.ws2_c00032{word-spacing:-2.209302px;}
.ws8_c00032{word-spacing:0.000000px;}
.ws5_c00032{word-spacing:4.650655px;}
.ws4_c00032{word-spacing:6.060172px;}
.ws1_c00032{word-spacing:6.343511px;}
.ws0_c00032{word-spacing:8.750000px;}
.ws6_c00032{word-spacing:16.186246px;}
.ws7_c00032{word-spacing:22.435897px;}
.fc0_c00032{color:transparent;}
.fs4_c00032{font-size:30.000000px;}
.fs5_c00032{font-size:48.000000px;}
.fs6_c00032{font-size:54.000000px;}
.fs2_c00032{font-size:60.000000px;}
.fs1_c00032{font-size:66.000000px;}
.fs3_c00032{font-size:72.000000px;}
.fs0_c00032{font-size:84.000000px;}
.y0_c00032{bottom:0.000000px;}
.y62_c00032{bottom:186.900000px;}
.y35_c00032{bottom:202.350000px;}
.y61_c00032{bottom:215.850000px;}
.y34_c00032{bottom:228.900000px;}
.y60_c00032{bottom:232.050000px;}
.y33_c00032{bottom:246.900000px;}
.y5f_c00032{bottom:260.550000px;}
.y32_c00032{bottom:264.900000px;}
.y31_c00032{bottom:282.150000px;}
.y5e_c00032{bottom:288.600000px;}
.y30_c00032{bottom:299.850000px;}
.y5d_c00032{bottom:302.700000px;}
.y2f_c00032{bottom:317.550000px;}
.y2e_c00032{bottom:334.800000px;}
.y5c_c00032{bottom:359.100000px;}
.y2d_c00032{bottom:360.750000px;}
.y2c_c00032{bottom:378.450000px;}
.y5b_c00032{bottom:378.600000px;}
.y5a_c00032{bottom:396.300000px;}
.y2b_c00032{bottom:396.450000px;}
.y2a_c00032{bottom:413.700000px;}
.y59_c00032{bottom:416.550000px;}
.y29_c00032{bottom:431.700000px;}
.y58_c00032{bottom:435.600000px;}
.y28_c00032{bottom:449.400000px;}
.y57_c00032{bottom:456.900000px;}
.y27_c00032{bottom:467.100000px;}
.y56_c00032{bottom:475.200000px;}
.y26_c00032{bottom:484.800000px;}
.y55_c00032{bottom:496.800000px;}
.y25_c00032{bottom:502.500000px;}
.y24_c00032{bottom:520.200000px;}
.y54_c00032{bottom:522.300000px;}
.y23_c00032{bottom:537.900000px;}
.y53_c00032{bottom:541.050000px;}
.y22_c00032{bottom:555.900000px;}
.y52_c00032{bottom:561.900000px;}
.y51_c00032{bottom:580.650000px;}
.y21_c00032{bottom:582.750000px;}
.y50_c00032{bottom:598.350000px;}
.y20_c00032{bottom:600.750000px;}
.y1f_c00032{bottom:618.450000px;}
.y1e_c00032{bottom:636.150000px;}
.y4f_c00032{bottom:640.500000px;}
.y1d_c00032{bottom:653.850000px;}
.y4e_c00032{bottom:659.550000px;}
.y1c_c00032{bottom:671.550000px;}
.y4d_c00032{bottom:677.250000px;}
.y1b_c00032{bottom:689.250000px;}
.y4c_c00032{bottom:694.950000px;}
.y1a_c00032{bottom:707.250000px;}
.y4b_c00032{bottom:712.650000px;}
.y19_c00032{bottom:724.500000px;}
.y4a_c00032{bottom:730.350000px;}
.y18_c00032{bottom:742.500000px;}
.y49_c00032{bottom:748.350000px;}
.y17_c00032{bottom:760.200000px;}
.y48_c00032{bottom:765.600000px;}
.y16_c00032{bottom:777.900000px;}
.y47_c00032{bottom:783.300000px;}
.y15_c00032{bottom:795.600000px;}
.y46_c00032{bottom:801.000000px;}
.y14_c00032{bottom:813.300000px;}
.y45_c00032{bottom:819.000000px;}
.y13_c00032{bottom:835.350000px;}
.y44_c00032{bottom:836.250000px;}
.y12_c00032{bottom:853.050000px;}
.y43_c00032{bottom:853.950000px;}
.y11_c00032{bottom:870.750000px;}
.y42_c00032{bottom:871.650000px;}
.y10_c00032{bottom:888.450000px;}
.y41_c00032{bottom:888.900000px;}
.yf_c00032{bottom:910.050000px;}
.y40_c00032{bottom:910.500000px;}
.ye_c00032{bottom:928.050000px;}
.y3f_c00032{bottom:928.200000px;}
.yd_c00032{bottom:946.050000px;}
.y3e_c00032{bottom:946.200000px;}
.yc_c00032{bottom:963.000000px;}
.y3d_c00032{bottom:963.450000px;}
.yb_c00032{bottom:980.700000px;}
.y3c_c00032{bottom:981.150000px;}
.ya_c00032{bottom:998.400000px;}
.y3b_c00032{bottom:999.150000px;}
.y9_c00032{bottom:1016.400000px;}
.y8_c00032{bottom:1034.100000px;}
.y7_c00032{bottom:1051.800000px;}
.y6_c00032{bottom:1069.500000px;}
.y3a_c00032{bottom:1086.750000px;}
.y5_c00032{bottom:1087.500000px;}
.y39_c00032{bottom:1104.450000px;}
.y4_c00032{bottom:1105.200000px;}
.y37_c00032{bottom:1105.950000px;}
.y38_c00032{bottom:1122.450000px;}
.y3_c00032{bottom:1122.900000px;}
.y1_c00032{bottom:1148.700000px;}
.y2_c00032{bottom:1149.000000px;}
.y36_c00032{bottom:1270.800000px;}
.h6_c00032{height:30.000000px;}
.h7_c00032{height:48.000000px;}
.h8_c00032{height:54.000000px;}
.h4_c00032{height:60.000000px;}
.h3_c00032{height:66.000000px;}
.h5_c00032{height:72.000000px;}
.h2_c00032{height:84.000000px;}
.h1_c00032{height:1272.750000px;}
.h0_c00032{height:1272.960022px;}
.w0_c00032{width:948.600036px;}
.w1_c00032{width:948.750000px;}
.x0_c00032{left:0.000000px;}
.xd_c00032{left:77.250000px;}
.x3_c00032{left:78.450000px;}
.x1c_c00032{left:79.950000px;}
.x4d_c00032{left:82.500000px;}
.x5c_c00032{left:84.750000px;}
.x72_c00032{left:86.250000px;}
.x83_c00032{left:87.450000px;}
.x89_c00032{left:89.250000px;}
.xa2_c00032{left:90.450000px;}
.xab_c00032{left:91.800000px;}
.x4_c00032{left:93.150000px;}
.x33_c00032{left:99.150000px;}
.x5e_c00032{left:102.300000px;}
.x47_c00032{left:106.200000px;}
.x3a_c00032{left:108.000000px;}
.x7f_c00032{left:109.650000px;}
.x54_c00032{left:111.150000px;}
.x60_c00032{left:112.950000px;}
.x85_c00032{left:114.150000px;}
.x27_c00032{left:117.150000px;}
.x9f_c00032{left:118.500000px;}
.x41_c00032{left:122.100000px;}
.x4e_c00032{left:123.150000px;}
.x1d_c00032{left:125.700000px;}
.x76_c00032{left:127.950000px;}
.x80_c00032{left:130.200000px;}
.x5_c00032{left:132.000000px;}
.xe_c00032{left:134.100000px;}
.x4a_c00032{left:138.900000px;}
.x73_c00032{left:140.550000px;}
.x55_c00032{left:141.750000px;}
.x3b_c00032{left:142.950000px;}
.xb0_c00032{left:144.300000px;}
.x8a_c00032{left:145.800000px;}
.x15_c00032{left:147.450000px;}
.x2e_c00032{left:148.950000px;}
.x28_c00032{left:150.600000px;}
.xac_c00032{left:152.700000px;}
.x6_c00032{left:153.900000px;}
.x42_c00032{left:156.600000px;}
.x94_c00032{left:158.400000px;}
.x86_c00032{left:159.900000px;}
.x48_c00032{left:161.250000px;}
.xf_c00032{left:162.900000px;}
.x8b_c00032{left:164.550000px;}
.x61_c00032{left:166.200000px;}
.x97_c00032{left:168.900000px;}
.x34_c00032{left:170.100000px;}
.x16_c00032{left:172.950000px;}
.x62_c00032{left:175.200000px;}
.x81_c00032{left:176.700000px;}
.x7a_c00032{left:178.650000px;}
.xa3_c00032{left:180.000000px;}
.xa5_c00032{left:181.350000px;}
.x8e_c00032{left:182.550000px;}
.x77_c00032{left:183.750000px;}
.x66_c00032{left:184.800000px;}
.x56_c00032{left:186.750000px;}
.x7_c00032{left:189.600000px;}
.x4f_c00032{left:190.800000px;}
.x4b_c00032{left:192.600000px;}
.x6f_c00032{left:194.850000px;}
.x3c_c00032{left:196.950000px;}
.x82_c00032{left:199.050000px;}
.x2f_c00032{left:202.350000px;}
.x8_c00032{left:203.700000px;}
.x95_c00032{left:205.500000px;}
.xb1_c00032{left:207.600000px;}
.x29_c00032{left:210.750000px;}
.x69_c00032{left:212.700000px;}
.x7d_c00032{left:214.200000px;}
.xae_c00032{left:216.000000px;}
.x57_c00032{left:218.400000px;}
.x8f_c00032{left:222.900000px;}
.x5a_c00032{left:224.400000px;}
.xaa_c00032{left:226.350000px;}
.x10_c00032{left:228.450000px;}
.x17_c00032{left:230.250000px;}
.x43_c00032{left:231.450000px;}
.x1e_c00032{left:232.950000px;}
.x70_c00032{left:234.450000px;}
.x63_c00032{left:237.450000px;}
.xa9_c00032{left:239.850000px;}
.x58_c00032{left:241.050000px;}
.x3d_c00032{left:242.700000px;}
.x50_c00032{left:245.100000px;}
.x5b_c00032{left:246.300000px;}
.x7e_c00032{left:247.350000px;}
.x78_c00032{left:249.300000px;}
.x49_c00032{left:250.500000px;}
.xa6_c00032{left:251.550000px;}
.xa4_c00032{left:252.750000px;}
.xad_c00032{left:255.900000px;}
.x22_c00032{left:257.250000px;}
.x87_c00032{left:258.750000px;}
.x9b_c00032{left:260.250000px;}
.x44_c00032{left:262.050000px;}
.x9_c00032{left:263.400000px;}
.x18_c00032{left:264.450000px;}
.x51_c00032{left:265.650000px;}
.x1f_c00032{left:269.250000px;}
.x8c_c00032{left:270.900000px;}
.x2a_c00032{left:271.950000px;}
.x99_c00032{left:273.300000px;}
.x35_c00032{left:275.550000px;}
.x30_c00032{left:277.200000px;}
.x23_c00032{left:278.550000px;}
.xa0_c00032{left:280.050000px;}
.xb2_c00032{left:281.400000px;}
.x11_c00032{left:283.200000px;}
.xa_c00032{left:285.300000px;}
.x19_c00032{left:286.350000px;}
.x7b_c00032{left:288.600000px;}
.x20_c00032{left:290.100000px;}
.xa7_c00032{left:291.600000px;}
.x79_c00032{left:292.800000px;}
.x6c_c00032{left:295.650000px;}
.x36_c00032{left:300.450000px;}
.x74_c00032{left:303.900000px;}
.x1a_c00032{left:305.400000px;}
.x5f_c00032{left:309.000000px;}
.x45_c00032{left:310.650000px;}
.x7c_c00032{left:314.100000px;}
.x90_c00032{left:315.450000px;}
.x3e_c00032{left:316.500000px;}
.x64_c00032{left:317.700000px;}
.x37_c00032{left:321.750000px;}
.x1_c00032{left:323.250000px;}
.x6a_c00032{left:324.300000px;}
.x21_c00032{left:326.850000px;}
.x3f_c00032{left:328.050000px;}
.xa1_c00032{left:329.400000px;}
.x9c_c00032{left:332.250000px;}
.x12_c00032{left:333.900000px;}
.x5d_c00032{left:334.950000px;}
.x24_c00032{left:336.450000px;}
.x91_c00032{left:337.800000px;}
.x67_c00032{left:339.150000px;}
.x9a_c00032{left:340.350000px;}
.x2b_c00032{left:342.900000px;}
.x31_c00032{left:346.350000px;}
.x25_c00032{left:348.000000px;}
.x46_c00032{left:349.500000px;}
.xaf_c00032{left:351.600000px;}
.x2c_c00032{left:353.700000px;}
.x8d_c00032{left:355.800000px;}
.xb_c00032{left:357.600000px;}
.x9d_c00032{left:358.950000px;}
.x38_c00032{left:360.300000px;}
.x59_c00032{left:361.350000px;}
.xa8_c00032{left:363.000000px;}
.x75_c00032{left:364.050000px;}
.x88_c00032{left:365.850000px;}
.x13_c00032{left:367.050000px;}
.x96_c00032{left:369.000000px;}
.x71_c00032{left:370.650000px;}
.x65_c00032{left:372.450000px;}
.x40_c00032{left:374.850000px;}
.x6d_c00032{left:376.350000px;}
.x1b_c00032{left:380.250000px;}
.x52_c00032{left:381.750000px;}
.x92_c00032{left:383.850000px;}
.x39_c00032{left:385.200000px;}
.x6e_c00032{left:386.400000px;}
.x14_c00032{left:387.900000px;}
.x26_c00032{left:393.000000px;}
.x9e_c00032{left:394.650000px;}
.x68_c00032{left:395.700000px;}
.x84_c00032{left:397.200000px;}
.x98_c00032{left:398.700000px;}
.xc_c00032{left:399.750000px;}
.x4c_c00032{left:403.650000px;}
.x2d_c00032{left:409.500000px;}
.x6b_c00032{left:411.150000px;}
.x32_c00032{left:412.650000px;}
.x93_c00032{left:414.450000px;}
.x53_c00032{left:415.650000px;}
.xbb_c00032{left:422.250000px;}
.xb3_c00032{left:429.150000px;}
.xbc_c00032{left:436.350000px;}
.xe4_c00032{left:437.400000px;}
.xfb_c00032{left:438.450000px;}
.x108_c00032{left:440.700000px;}
.x10e_c00032{left:442.350000px;}
.x12b_c00032{left:443.550000px;}
.xb4_c00032{left:446.850000px;}
.x155_c00032{left:450.150000px;}
.x10d_c00032{left:455.850000px;}
.xde_c00032{left:458.100000px;}
.x13b_c00032{left:462.600000px;}
.x145_c00032{left:463.800000px;}
.x14c_c00032{left:465.150000px;}
.x154_c00032{left:466.350000px;}
.x126_c00032{left:469.800000px;}
.xcc_c00032{left:473.250000px;}
.xc4_c00032{left:477.750000px;}
.x134_c00032{left:479.850000px;}
.xb5_c00032{left:481.350000px;}
.x117_c00032{left:483.000000px;}
.x14f_c00032{left:484.200000px;}
.xed_c00032{left:485.550000px;}
.xd8_c00032{left:486.900000px;}
.x109_c00032{left:489.000000px;}
.x112_c00032{left:490.350000px;}
.x118_c00032{left:492.000000px;}
.xdf_c00032{left:493.050000px;}
.xcd_c00032{left:495.150000px;}
.x120_c00032{left:496.950000px;}
.x13f_c00032{left:498.600000px;}
.xbd_c00032{left:500.100000px;}
.x100_c00032{left:502.500000px;}
.x12c_c00032{left:505.050000px;}
.xe5_c00032{left:507.000000px;}
.x101_c00032{left:510.150000px;}
.x146_c00032{left:511.650000px;}
.xc5_c00032{left:513.750000px;}
.xb6_c00032{left:515.250000px;}
.x121_c00032{left:516.750000px;}
.x14d_c00032{left:519.150000px;}
.xf7_c00032{left:520.950000px;}
.xd9_c00032{left:522.900000px;}
.xd3_c00032{left:525.150000px;}
.x13c_c00032{left:528.000000px;}
.xbe_c00032{left:534.300000px;}
.xd4_c00032{left:538.050000px;}
.x11c_c00032{left:539.700000px;}
.x127_c00032{left:541.050000px;}
.x10a_c00032{left:542.700000px;}
.xce_c00032{left:544.500000px;}
.x14e_c00032{left:546.900000px;}
.x102_c00032{left:549.000000px;}
.x139_c00032{left:551.700000px;}
.xee_c00032{left:553.200000px;}
.x147_c00032{left:554.850000px;}
.x158_c00032{left:555.900000px;}
.x14a_c00032{left:557.400000px;}
.xd5_c00032{left:558.900000px;}
.xea_c00032{left:560.700000px;}
.xda_c00032{left:562.200000px;}
.xf2_c00032{left:563.550000px;}
.xc6_c00032{left:564.900000px;}
.xb7_c00032{left:566.700000px;}
.xe6_c00032{left:567.900000px;}
.x12d_c00032{left:569.550000px;}
.x13d_c00032{left:570.900000px;}
.x103_c00032{left:572.100000px;}
.x140_c00032{left:573.450000px;}
.xe0_c00032{left:575.400000px;}
.x135_c00032{left:577.800000px;}
.x13a_c00032{left:579.000000px;}
.xe7_c00032{left:580.500000px;}
.x113_c00032{left:581.850000px;}
.x152_c00032{left:583.950000px;}
.x159_c00032{left:585.450000px;}
.xf3_c00032{left:586.650000px;}
.x12e_c00032{left:588.300000px;}
.xfc_c00032{left:591.000000px;}
.xe1_c00032{left:592.650000px;}
.x114_c00032{left:594.750000px;}
.x11d_c00032{left:596.250000px;}
.x136_c00032{left:597.300000px;}
.x14b_c00032{left:600.600000px;}
.xbf_c00032{left:602.700000px;}
.x12f_c00032{left:607.800000px;}
.xdb_c00032{left:610.800000px;}
.xcf_c00032{left:613.650000px;}
.x128_c00032{left:614.850000px;}
.xc0_c00032{left:616.350000px;}
.xef_c00032{left:619.800000px;}
.x143_c00032{left:620.850000px;}
.x156_c00032{left:622.050000px;}
.xb8_c00032{left:623.250000px;}
.xc7_c00032{left:625.050000px;}
.x10f_c00032{left:629.250000px;}
.xfd_c00032{left:630.300000px;}
.xeb_c00032{left:633.300000px;}
.x104_c00032{left:636.150000px;}
.xf4_c00032{left:637.350000px;}
.xb9_c00032{left:638.400000px;}
.x122_c00032{left:641.550000px;}
.xc8_c00032{left:642.750000px;}
.x137_c00032{left:643.800000px;}
.x150_c00032{left:645.450000px;}
.x115_c00032{left:647.250000px;}
.x141_c00032{left:648.750000px;}
.x11a_c00032{left:650.250000px;}
.x15a_c00032{left:652.350000px;}
.xf8_c00032{left:656.700000px;}
.xc1_c00032{left:659.250000px;}
.x10b_c00032{left:661.500000px;}
.x129_c00032{left:663.150000px;}
.x119_c00032{left:667.650000px;}
.x110_c00032{left:668.850000px;}
.x148_c00032{left:671.100000px;}
.x130_c00032{left:673.050000px;}
.xdc_c00032{left:674.850000px;}
.xba_c00032{left:678.750000px;}
.xf0_c00032{left:679.950000px;}
.xd0_c00032{left:681.000000px;}
.xf5_c00032{left:682.650000px;}
.x123_c00032{left:685.800000px;}
.xfe_c00032{left:686.850000px;}
.xc9_c00032{left:688.050000px;}
.xe2_c00032{left:689.850000px;}
.x11b_c00032{left:692.700000px;}
.x149_c00032{left:694.200000px;}
.x153_c00032{left:695.250000px;}
.x12a_c00032{left:696.600000px;}
.xec_c00032{left:698.400000px;}
.xd6_c00032{left:700.500000px;}
.xe8_c00032{left:702.900000px;}
.x15b_c00032{left:704.550000px;}
.xdd_c00032{left:708.300000px;}
.x131_c00032{left:711.600000px;}
.x124_c00032{left:712.800000px;}
.x151_c00032{left:717.150000px;}
.xf9_c00032{left:718.650000px;}
.xf1_c00032{left:720.300000px;}
.xf6_c00032{left:721.950000px;}
.xd1_c00032{left:724.200000px;}
.xff_c00032{left:726.450000px;}
.xd7_c00032{left:727.500000px;}
.x125_c00032{left:729.000000px;}
.x105_c00032{left:730.050000px;}
.xe9_c00032{left:732.750000px;}
.x144_c00032{left:735.600000px;}
.x13e_c00032{left:737.100000px;}
.xca_c00032{left:739.200000px;}
.x106_c00032{left:742.350000px;}
.x132_c00032{left:743.700000px;}
.x11e_c00032{left:745.500000px;}
.x116_c00032{left:747.300000px;}
.xe3_c00032{left:748.500000px;}
.xcb_c00032{left:750.000000px;}
.xc2_c00032{left:751.350000px;}
.x142_c00032{left:755.250000px;}
.x2_c00032{left:757.350000px;}
.xd2_c00032{left:758.400000px;}
.xfa_c00032{left:760.350000px;}
.x11f_c00032{left:762.000000px;}
.x111_c00032{left:763.200000px;}
.x138_c00032{left:764.400000px;}
.x133_c00032{left:767.100000px;}
.xc3_c00032{left:769.050000px;}
.x107_c00032{left:770.100000px;}
.x10c_c00032{left:774.150000px;}
.x157_c00032{left:781.950000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws3_c00032{word-spacing:-2.751323pt;}
.ws2_c00032{word-spacing:-1.963824pt;}
.ws8_c00032{word-spacing:0.000000pt;}
.ws5_c00032{word-spacing:4.133916pt;}
.ws4_c00032{word-spacing:5.386819pt;}
.ws1_c00032{word-spacing:5.638677pt;}
.ws0_c00032{word-spacing:7.777778pt;}
.ws6_c00032{word-spacing:14.387775pt;}
.ws7_c00032{word-spacing:19.943020pt;}
.fs4_c00032{font-size:26.666667pt;}
.fs5_c00032{font-size:42.666667pt;}
.fs6_c00032{font-size:48.000000pt;}
.fs2_c00032{font-size:53.333333pt;}
.fs1_c00032{font-size:58.666667pt;}
.fs3_c00032{font-size:64.000000pt;}
.fs0_c00032{font-size:74.666667pt;}
.y0_c00032{bottom:0.000000pt;}
.y62_c00032{bottom:166.133333pt;}
.y35_c00032{bottom:179.866667pt;}
.y61_c00032{bottom:191.866667pt;}
.y34_c00032{bottom:203.466667pt;}
.y60_c00032{bottom:206.266667pt;}
.y33_c00032{bottom:219.466667pt;}
.y5f_c00032{bottom:231.600000pt;}
.y32_c00032{bottom:235.466667pt;}
.y31_c00032{bottom:250.800000pt;}
.y5e_c00032{bottom:256.533333pt;}
.y30_c00032{bottom:266.533333pt;}
.y5d_c00032{bottom:269.066667pt;}
.y2f_c00032{bottom:282.266667pt;}
.y2e_c00032{bottom:297.600000pt;}
.y5c_c00032{bottom:319.200000pt;}
.y2d_c00032{bottom:320.666667pt;}
.y2c_c00032{bottom:336.400000pt;}
.y5b_c00032{bottom:336.533333pt;}
.y5a_c00032{bottom:352.266667pt;}
.y2b_c00032{bottom:352.400000pt;}
.y2a_c00032{bottom:367.733333pt;}
.y59_c00032{bottom:370.266667pt;}
.y29_c00032{bottom:383.733333pt;}
.y58_c00032{bottom:387.200000pt;}
.y28_c00032{bottom:399.466667pt;}
.y57_c00032{bottom:406.133333pt;}
.y27_c00032{bottom:415.200000pt;}
.y56_c00032{bottom:422.400000pt;}
.y26_c00032{bottom:430.933333pt;}
.y55_c00032{bottom:441.600000pt;}
.y25_c00032{bottom:446.666667pt;}
.y24_c00032{bottom:462.400000pt;}
.y54_c00032{bottom:464.266667pt;}
.y23_c00032{bottom:478.133333pt;}
.y53_c00032{bottom:480.933333pt;}
.y22_c00032{bottom:494.133333pt;}
.y52_c00032{bottom:499.466667pt;}
.y51_c00032{bottom:516.133333pt;}
.y21_c00032{bottom:518.000000pt;}
.y50_c00032{bottom:531.866667pt;}
.y20_c00032{bottom:534.000000pt;}
.y1f_c00032{bottom:549.733333pt;}
.y1e_c00032{bottom:565.466667pt;}
.y4f_c00032{bottom:569.333333pt;}
.y1d_c00032{bottom:581.200000pt;}
.y4e_c00032{bottom:586.266667pt;}
.y1c_c00032{bottom:596.933333pt;}
.y4d_c00032{bottom:602.000000pt;}
.y1b_c00032{bottom:612.666667pt;}
.y4c_c00032{bottom:617.733333pt;}
.y1a_c00032{bottom:628.666667pt;}
.y4b_c00032{bottom:633.466667pt;}
.y19_c00032{bottom:644.000000pt;}
.y4a_c00032{bottom:649.200000pt;}
.y18_c00032{bottom:660.000000pt;}
.y49_c00032{bottom:665.200000pt;}
.y17_c00032{bottom:675.733333pt;}
.y48_c00032{bottom:680.533333pt;}
.y16_c00032{bottom:691.466667pt;}
.y47_c00032{bottom:696.266667pt;}
.y15_c00032{bottom:707.200000pt;}
.y46_c00032{bottom:712.000000pt;}
.y14_c00032{bottom:722.933333pt;}
.y45_c00032{bottom:728.000000pt;}
.y13_c00032{bottom:742.533333pt;}
.y44_c00032{bottom:743.333333pt;}
.y12_c00032{bottom:758.266667pt;}
.y43_c00032{bottom:759.066667pt;}
.y11_c00032{bottom:774.000000pt;}
.y42_c00032{bottom:774.800000pt;}
.y10_c00032{bottom:789.733333pt;}
.y41_c00032{bottom:790.133333pt;}
.yf_c00032{bottom:808.933333pt;}
.y40_c00032{bottom:809.333333pt;}
.ye_c00032{bottom:824.933333pt;}
.y3f_c00032{bottom:825.066667pt;}
.yd_c00032{bottom:840.933333pt;}
.y3e_c00032{bottom:841.066667pt;}
.yc_c00032{bottom:856.000000pt;}
.y3d_c00032{bottom:856.400000pt;}
.yb_c00032{bottom:871.733333pt;}
.y3c_c00032{bottom:872.133333pt;}
.ya_c00032{bottom:887.466667pt;}
.y3b_c00032{bottom:888.133333pt;}
.y9_c00032{bottom:903.466667pt;}
.y8_c00032{bottom:919.200000pt;}
.y7_c00032{bottom:934.933333pt;}
.y6_c00032{bottom:950.666667pt;}
.y3a_c00032{bottom:966.000000pt;}
.y5_c00032{bottom:966.666667pt;}
.y39_c00032{bottom:981.733333pt;}
.y4_c00032{bottom:982.400000pt;}
.y37_c00032{bottom:983.066667pt;}
.y38_c00032{bottom:997.733333pt;}
.y3_c00032{bottom:998.133333pt;}
.y1_c00032{bottom:1021.066667pt;}
.y2_c00032{bottom:1021.333333pt;}
.y36_c00032{bottom:1129.600000pt;}
.h6_c00032{height:26.666667pt;}
.h7_c00032{height:42.666667pt;}
.h8_c00032{height:48.000000pt;}
.h4_c00032{height:53.333333pt;}
.h3_c00032{height:58.666667pt;}
.h5_c00032{height:64.000000pt;}
.h2_c00032{height:74.666667pt;}
.h1_c00032{height:1131.333333pt;}
.h0_c00032{height:1131.520020pt;}
.w0_c00032{width:843.200032pt;}
.w1_c00032{width:843.333333pt;}
.x0_c00032{left:0.000000pt;}
.xd_c00032{left:68.666667pt;}
.x3_c00032{left:69.733333pt;}
.x1c_c00032{left:71.066667pt;}
.x4d_c00032{left:73.333333pt;}
.x5c_c00032{left:75.333333pt;}
.x72_c00032{left:76.666667pt;}
.x83_c00032{left:77.733333pt;}
.x89_c00032{left:79.333333pt;}
.xa2_c00032{left:80.400000pt;}
.xab_c00032{left:81.600000pt;}
.x4_c00032{left:82.800000pt;}
.x33_c00032{left:88.133333pt;}
.x5e_c00032{left:90.933333pt;}
.x47_c00032{left:94.400000pt;}
.x3a_c00032{left:96.000000pt;}
.x7f_c00032{left:97.466667pt;}
.x54_c00032{left:98.800000pt;}
.x60_c00032{left:100.400000pt;}
.x85_c00032{left:101.466667pt;}
.x27_c00032{left:104.133333pt;}
.x9f_c00032{left:105.333333pt;}
.x41_c00032{left:108.533333pt;}
.x4e_c00032{left:109.466667pt;}
.x1d_c00032{left:111.733333pt;}
.x76_c00032{left:113.733333pt;}
.x80_c00032{left:115.733333pt;}
.x5_c00032{left:117.333333pt;}
.xe_c00032{left:119.200000pt;}
.x4a_c00032{left:123.466667pt;}
.x73_c00032{left:124.933333pt;}
.x55_c00032{left:126.000000pt;}
.x3b_c00032{left:127.066667pt;}
.xb0_c00032{left:128.266667pt;}
.x8a_c00032{left:129.600000pt;}
.x15_c00032{left:131.066667pt;}
.x2e_c00032{left:132.400000pt;}
.x28_c00032{left:133.866667pt;}
.xac_c00032{left:135.733333pt;}
.x6_c00032{left:136.800000pt;}
.x42_c00032{left:139.200000pt;}
.x94_c00032{left:140.800000pt;}
.x86_c00032{left:142.133333pt;}
.x48_c00032{left:143.333333pt;}
.xf_c00032{left:144.800000pt;}
.x8b_c00032{left:146.266667pt;}
.x61_c00032{left:147.733333pt;}
.x97_c00032{left:150.133333pt;}
.x34_c00032{left:151.200000pt;}
.x16_c00032{left:153.733333pt;}
.x62_c00032{left:155.733333pt;}
.x81_c00032{left:157.066667pt;}
.x7a_c00032{left:158.800000pt;}
.xa3_c00032{left:160.000000pt;}
.xa5_c00032{left:161.200000pt;}
.x8e_c00032{left:162.266667pt;}
.x77_c00032{left:163.333333pt;}
.x66_c00032{left:164.266667pt;}
.x56_c00032{left:166.000000pt;}
.x7_c00032{left:168.533333pt;}
.x4f_c00032{left:169.600000pt;}
.x4b_c00032{left:171.200000pt;}
.x6f_c00032{left:173.200000pt;}
.x3c_c00032{left:175.066667pt;}
.x82_c00032{left:176.933333pt;}
.x2f_c00032{left:179.866667pt;}
.x8_c00032{left:181.066667pt;}
.x95_c00032{left:182.666667pt;}
.xb1_c00032{left:184.533333pt;}
.x29_c00032{left:187.333333pt;}
.x69_c00032{left:189.066667pt;}
.x7d_c00032{left:190.400000pt;}
.xae_c00032{left:192.000000pt;}
.x57_c00032{left:194.133333pt;}
.x8f_c00032{left:198.133333pt;}
.x5a_c00032{left:199.466667pt;}
.xaa_c00032{left:201.200000pt;}
.x10_c00032{left:203.066667pt;}
.x17_c00032{left:204.666667pt;}
.x43_c00032{left:205.733333pt;}
.x1e_c00032{left:207.066667pt;}
.x70_c00032{left:208.400000pt;}
.x63_c00032{left:211.066667pt;}
.xa9_c00032{left:213.200000pt;}
.x58_c00032{left:214.266667pt;}
.x3d_c00032{left:215.733333pt;}
.x50_c00032{left:217.866667pt;}
.x5b_c00032{left:218.933333pt;}
.x7e_c00032{left:219.866667pt;}
.x78_c00032{left:221.600000pt;}
.x49_c00032{left:222.666667pt;}
.xa6_c00032{left:223.600000pt;}
.xa4_c00032{left:224.666667pt;}
.xad_c00032{left:227.466667pt;}
.x22_c00032{left:228.666667pt;}
.x87_c00032{left:230.000000pt;}
.x9b_c00032{left:231.333333pt;}
.x44_c00032{left:232.933333pt;}
.x9_c00032{left:234.133333pt;}
.x18_c00032{left:235.066667pt;}
.x51_c00032{left:236.133333pt;}
.x1f_c00032{left:239.333333pt;}
.x8c_c00032{left:240.800000pt;}
.x2a_c00032{left:241.733333pt;}
.x99_c00032{left:242.933333pt;}
.x35_c00032{left:244.933333pt;}
.x30_c00032{left:246.400000pt;}
.x23_c00032{left:247.600000pt;}
.xa0_c00032{left:248.933333pt;}
.xb2_c00032{left:250.133333pt;}
.x11_c00032{left:251.733333pt;}
.xa_c00032{left:253.600000pt;}
.x19_c00032{left:254.533333pt;}
.x7b_c00032{left:256.533333pt;}
.x20_c00032{left:257.866667pt;}
.xa7_c00032{left:259.200000pt;}
.x79_c00032{left:260.266667pt;}
.x6c_c00032{left:262.800000pt;}
.x36_c00032{left:267.066667pt;}
.x74_c00032{left:270.133333pt;}
.x1a_c00032{left:271.466667pt;}
.x5f_c00032{left:274.666667pt;}
.x45_c00032{left:276.133333pt;}
.x7c_c00032{left:279.200000pt;}
.x90_c00032{left:280.400000pt;}
.x3e_c00032{left:281.333333pt;}
.x64_c00032{left:282.400000pt;}
.x37_c00032{left:286.000000pt;}
.x1_c00032{left:287.333333pt;}
.x6a_c00032{left:288.266667pt;}
.x21_c00032{left:290.533333pt;}
.x3f_c00032{left:291.600000pt;}
.xa1_c00032{left:292.800000pt;}
.x9c_c00032{left:295.333333pt;}
.x12_c00032{left:296.800000pt;}
.x5d_c00032{left:297.733333pt;}
.x24_c00032{left:299.066667pt;}
.x91_c00032{left:300.266667pt;}
.x67_c00032{left:301.466667pt;}
.x9a_c00032{left:302.533333pt;}
.x2b_c00032{left:304.800000pt;}
.x31_c00032{left:307.866667pt;}
.x25_c00032{left:309.333333pt;}
.x46_c00032{left:310.666667pt;}
.xaf_c00032{left:312.533333pt;}
.x2c_c00032{left:314.400000pt;}
.x8d_c00032{left:316.266667pt;}
.xb_c00032{left:317.866667pt;}
.x9d_c00032{left:319.066667pt;}
.x38_c00032{left:320.266667pt;}
.x59_c00032{left:321.200000pt;}
.xa8_c00032{left:322.666667pt;}
.x75_c00032{left:323.600000pt;}
.x88_c00032{left:325.200000pt;}
.x13_c00032{left:326.266667pt;}
.x96_c00032{left:328.000000pt;}
.x71_c00032{left:329.466667pt;}
.x65_c00032{left:331.066667pt;}
.x40_c00032{left:333.200000pt;}
.x6d_c00032{left:334.533333pt;}
.x1b_c00032{left:338.000000pt;}
.x52_c00032{left:339.333333pt;}
.x92_c00032{left:341.200000pt;}
.x39_c00032{left:342.400000pt;}
.x6e_c00032{left:343.466667pt;}
.x14_c00032{left:344.800000pt;}
.x26_c00032{left:349.333333pt;}
.x9e_c00032{left:350.800000pt;}
.x68_c00032{left:351.733333pt;}
.x84_c00032{left:353.066667pt;}
.x98_c00032{left:354.400000pt;}
.xc_c00032{left:355.333333pt;}
.x4c_c00032{left:358.800000pt;}
.x2d_c00032{left:364.000000pt;}
.x6b_c00032{left:365.466667pt;}
.x32_c00032{left:366.800000pt;}
.x93_c00032{left:368.400000pt;}
.x53_c00032{left:369.466667pt;}
.xbb_c00032{left:375.333333pt;}
.xb3_c00032{left:381.466667pt;}
.xbc_c00032{left:387.866667pt;}
.xe4_c00032{left:388.800000pt;}
.xfb_c00032{left:389.733333pt;}
.x108_c00032{left:391.733333pt;}
.x10e_c00032{left:393.200000pt;}
.x12b_c00032{left:394.266667pt;}
.xb4_c00032{left:397.200000pt;}
.x155_c00032{left:400.133333pt;}
.x10d_c00032{left:405.200000pt;}
.xde_c00032{left:407.200000pt;}
.x13b_c00032{left:411.200000pt;}
.x145_c00032{left:412.266667pt;}
.x14c_c00032{left:413.466667pt;}
.x154_c00032{left:414.533333pt;}
.x126_c00032{left:417.600000pt;}
.xcc_c00032{left:420.666667pt;}
.xc4_c00032{left:424.666667pt;}
.x134_c00032{left:426.533333pt;}
.xb5_c00032{left:427.866667pt;}
.x117_c00032{left:429.333333pt;}
.x14f_c00032{left:430.400000pt;}
.xed_c00032{left:431.600000pt;}
.xd8_c00032{left:432.800000pt;}
.x109_c00032{left:434.666667pt;}
.x112_c00032{left:435.866667pt;}
.x118_c00032{left:437.333333pt;}
.xdf_c00032{left:438.266667pt;}
.xcd_c00032{left:440.133333pt;}
.x120_c00032{left:441.733333pt;}
.x13f_c00032{left:443.200000pt;}
.xbd_c00032{left:444.533333pt;}
.x100_c00032{left:446.666667pt;}
.x12c_c00032{left:448.933333pt;}
.xe5_c00032{left:450.666667pt;}
.x101_c00032{left:453.466667pt;}
.x146_c00032{left:454.800000pt;}
.xc5_c00032{left:456.666667pt;}
.xb6_c00032{left:458.000000pt;}
.x121_c00032{left:459.333333pt;}
.x14d_c00032{left:461.466667pt;}
.xf7_c00032{left:463.066667pt;}
.xd9_c00032{left:464.800000pt;}
.xd3_c00032{left:466.800000pt;}
.x13c_c00032{left:469.333333pt;}
.xbe_c00032{left:474.933333pt;}
.xd4_c00032{left:478.266667pt;}
.x11c_c00032{left:479.733333pt;}
.x127_c00032{left:480.933333pt;}
.x10a_c00032{left:482.400000pt;}
.xce_c00032{left:484.000000pt;}
.x14e_c00032{left:486.133333pt;}
.x102_c00032{left:488.000000pt;}
.x139_c00032{left:490.400000pt;}
.xee_c00032{left:491.733333pt;}
.x147_c00032{left:493.200000pt;}
.x158_c00032{left:494.133333pt;}
.x14a_c00032{left:495.466667pt;}
.xd5_c00032{left:496.800000pt;}
.xea_c00032{left:498.400000pt;}
.xda_c00032{left:499.733333pt;}
.xf2_c00032{left:500.933333pt;}
.xc6_c00032{left:502.133333pt;}
.xb7_c00032{left:503.733333pt;}
.xe6_c00032{left:504.800000pt;}
.x12d_c00032{left:506.266667pt;}
.x13d_c00032{left:507.466667pt;}
.x103_c00032{left:508.533333pt;}
.x140_c00032{left:509.733333pt;}
.xe0_c00032{left:511.466667pt;}
.x135_c00032{left:513.600000pt;}
.x13a_c00032{left:514.666667pt;}
.xe7_c00032{left:516.000000pt;}
.x113_c00032{left:517.200000pt;}
.x152_c00032{left:519.066667pt;}
.x159_c00032{left:520.400000pt;}
.xf3_c00032{left:521.466667pt;}
.x12e_c00032{left:522.933333pt;}
.xfc_c00032{left:525.333333pt;}
.xe1_c00032{left:526.800000pt;}
.x114_c00032{left:528.666667pt;}
.x11d_c00032{left:530.000000pt;}
.x136_c00032{left:530.933333pt;}
.x14b_c00032{left:533.866667pt;}
.xbf_c00032{left:535.733333pt;}
.x12f_c00032{left:540.266667pt;}
.xdb_c00032{left:542.933333pt;}
.xcf_c00032{left:545.466667pt;}
.x128_c00032{left:546.533333pt;}
.xc0_c00032{left:547.866667pt;}
.xef_c00032{left:550.933333pt;}
.x143_c00032{left:551.866667pt;}
.x156_c00032{left:552.933333pt;}
.xb8_c00032{left:554.000000pt;}
.xc7_c00032{left:555.600000pt;}
.x10f_c00032{left:559.333333pt;}
.xfd_c00032{left:560.266667pt;}
.xeb_c00032{left:562.933333pt;}
.x104_c00032{left:565.466667pt;}
.xf4_c00032{left:566.533333pt;}
.xb9_c00032{left:567.466667pt;}
.x122_c00032{left:570.266667pt;}
.xc8_c00032{left:571.333333pt;}
.x137_c00032{left:572.266667pt;}
.x150_c00032{left:573.733333pt;}
.x115_c00032{left:575.333333pt;}
.x141_c00032{left:576.666667pt;}
.x11a_c00032{left:578.000000pt;}
.x15a_c00032{left:579.866667pt;}
.xf8_c00032{left:583.733333pt;}
.xc1_c00032{left:586.000000pt;}
.x10b_c00032{left:588.000000pt;}
.x129_c00032{left:589.466667pt;}
.x119_c00032{left:593.466667pt;}
.x110_c00032{left:594.533333pt;}
.x148_c00032{left:596.533333pt;}
.x130_c00032{left:598.266667pt;}
.xdc_c00032{left:599.866667pt;}
.xba_c00032{left:603.333333pt;}
.xf0_c00032{left:604.400000pt;}
.xd0_c00032{left:605.333333pt;}
.xf5_c00032{left:606.800000pt;}
.x123_c00032{left:609.600000pt;}
.xfe_c00032{left:610.533333pt;}
.xc9_c00032{left:611.600000pt;}
.xe2_c00032{left:613.200000pt;}
.x11b_c00032{left:615.733333pt;}
.x149_c00032{left:617.066667pt;}
.x153_c00032{left:618.000000pt;}
.x12a_c00032{left:619.200000pt;}
.xec_c00032{left:620.800000pt;}
.xd6_c00032{left:622.666667pt;}
.xe8_c00032{left:624.800000pt;}
.x15b_c00032{left:626.266667pt;}
.xdd_c00032{left:629.600000pt;}
.x131_c00032{left:632.533333pt;}
.x124_c00032{left:633.600000pt;}
.x151_c00032{left:637.466667pt;}
.xf9_c00032{left:638.800000pt;}
.xf1_c00032{left:640.266667pt;}
.xf6_c00032{left:641.733333pt;}
.xd1_c00032{left:643.733333pt;}
.xff_c00032{left:645.733333pt;}
.xd7_c00032{left:646.666667pt;}
.x125_c00032{left:648.000000pt;}
.x105_c00032{left:648.933333pt;}
.xe9_c00032{left:651.333333pt;}
.x144_c00032{left:653.866667pt;}
.x13e_c00032{left:655.200000pt;}
.xca_c00032{left:657.066667pt;}
.x106_c00032{left:659.866667pt;}
.x132_c00032{left:661.066667pt;}
.x11e_c00032{left:662.666667pt;}
.x116_c00032{left:664.266667pt;}
.xe3_c00032{left:665.333333pt;}
.xcb_c00032{left:666.666667pt;}
.xc2_c00032{left:667.866667pt;}
.x142_c00032{left:671.333333pt;}
.x2_c00032{left:673.200000pt;}
.xd2_c00032{left:674.133333pt;}
.xfa_c00032{left:675.866667pt;}
.x11f_c00032{left:677.333333pt;}
.x111_c00032{left:678.400000pt;}
.x138_c00032{left:679.466667pt;}
.x133_c00032{left:681.866667pt;}
.xc3_c00032{left:683.600000pt;}
.x107_c00032{left:684.533333pt;}
.x10c_c00032{left:688.133333pt;}
.x157_c00032{left:695.066667pt;}
}





/* 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_c00033 {
    display:none;
  }
  .loading-indicator_c00033.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00033 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_c00033 { 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_c00033" -> "#page-container .classname_c00033")
 */
.pf_c00033 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00033 { /* 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_c00033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00033 { /* 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_c00033 { /* 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_c00033 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00033 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00033 {overflow:visible;}
  }
}
.c_c00033 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00033 { /* 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_c00033:after { /* webkit #35443 */
  content: '';
}
.t_c00033:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00033 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 */
}
.__c00033 { /* 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_c00033 { /* info for Javascript */
  display:none;
}
.l_c00033 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00033 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00033 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00033: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_c00033 {
    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_c00033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00033.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_c00033 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00033;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.000000;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;}
.m96_c00033{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.me_c00033{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m42_c00033{transform:matrix(0.032000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032000,0.000000,0.000000,0.250000,0,0);}
.m111_c00033{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00033{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.md3_c00033{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m16_c00033{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00033{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m64_c00033{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m41_c00033{transform:matrix(0.090750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090750,0.000000,0.000000,0.250000,0,0);}
.m112_c00033{transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00033{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00033{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00033{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00033{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m15_c00033{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00033{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m108_c00033{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00033{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.ma_c00033{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m40_c00033{transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00033{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00033{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00033{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m86_c00033{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00033{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m46_c00033{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00033{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m117_c00033{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.mb_c00033{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md5_c00033{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00033{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.maa_c00033{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.md8_c00033{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m43_c00033{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m57_c00033{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00033{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00033{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.md_c00033{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00033{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00033{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00033{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m113_c00033{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00033{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m65_c00033{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.mba_c00033{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m7_c00033{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6_c00033{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00033{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00033{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me5_c00033{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00033{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m71_c00033{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mae_c00033{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3_c00033{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mab_c00033{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00033{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00033{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00033{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00033{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m52_c00033{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00033{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m109_c00033{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00033{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.me4_c00033{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00033{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md7_c00033{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m69_c00033{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me6_c00033{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00033{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m47_c00033{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00033{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00033{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00033{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00033{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00033{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00033{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m12_c00033{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m105_c00033{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.me2_c00033{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00033{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m98_c00033{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00033{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m62_c00033{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00033{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00033{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m49_c00033{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m106_c00033{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00033{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00033{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me7_c00033{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00033{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m55_c00033{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m26_c00033{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00033{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00033{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me3_c00033{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc_c00033{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00033{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00033{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mee_c00033{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00033{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m93_c00033{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m66_c00033{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m45_c00033{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mac_c00033{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m54_c00033{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m32_c00033{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mef_c00033{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00033{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m29_c00033{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m70_c00033{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00033{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00033{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00033{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mff_c00033{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m78_c00033{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md1_c00033{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m110_c00033{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00033{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m14_c00033{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m48_c00033{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m116_c00033{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00033{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00033{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00033{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00033{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00033{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m0_c00033{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m73_c00033{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00033{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m30_c00033{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m18_c00033{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mde_c00033{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00033{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00033{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md0_c00033{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m107_c00033{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m75_c00033{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m77_c00033{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m31_c00033{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4_c00033{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m68_c00033{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00033{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00033{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mce_c00033{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md2_c00033{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m92_c00033{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m118_c00033{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00033{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m61_c00033{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m34_c00033{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00033{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00033{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m102_c00033{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00033{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m63_c00033{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m91_c00033{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m36_c00033{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mca_c00033{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00033{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00033{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00033{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.md4_c00033{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00033{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me9_c00033{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m67_c00033{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00033{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m83_c00033{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00033{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00033{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00033{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m51_c00033{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00033{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m10_c00033{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00033{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m72_c00033{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00033{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00033{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m85_c00033{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00033{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m22_c00033{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m87_c00033{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00033{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00033{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m81_c00033{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00033{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00033{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m28_c00033{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00033{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00033{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m89_c00033{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m59_c00033{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md9_c00033{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00033{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5_c00033{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m20_c00033{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00033{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00033{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m33_c00033{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m80_c00033{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m76_c00033{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2_c00033{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00033{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m74_c00033{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m13_c00033{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m60_c00033{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00033{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00033{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00033{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mea_c00033{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m99_c00033{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m95_c00033{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00033{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m38_c00033{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m94_c00033{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m19_c00033{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8_c00033{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m84_c00033{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.maf_c00033{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00033{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00033{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00033{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.meb_c00033{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me0_c00033{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00033{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m11_c00033{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mda_c00033{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m39_c00033{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m44_c00033{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00033{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m25_c00033{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00033{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m27_c00033{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mad_c00033{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md6_c00033{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00033{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m17_c00033{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m100_c00033{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00033{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00033{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00033{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m103_c00033{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me8_c00033{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24_c00033{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00033{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00033{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00033{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00033{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m101_c00033{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00033{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9_c00033{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mec_c00033{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00033{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m90_c00033{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m119_c00033{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00033{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m114_c00033{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00033{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.med_c00033{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m115_c00033{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00033{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00033{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m35_c00033{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00033{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00033{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m53_c00033{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00033{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00033{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00033{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c00033{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m37_c00033{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m104_c00033{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m58_c00033{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m88_c00033{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m97_c00033{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me1_c00033{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m56_c00033{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m79_c00033{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00033{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m21_c00033{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m50_c00033{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00033{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00033{transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);}
.m82_c00033{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf_c00033{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(0.488500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488500,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls0_c00033{letter-spacing:0.000000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{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__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:-17.900344px;}
.ws5_c00033{word-spacing:-11.730769px;}
.ws3_c00033{word-spacing:-5.979843px;}
.ws6_c00033{word-spacing:0.000000px;}
.ws4_c00033{word-spacing:10.112554px;}
.ws2_c00033{word-spacing:11.388889px;}
.ws1_c00033{word-spacing:17.187500px;}
.fc0_c00033{color:transparent;}
.fs5_c00033{font-size:48.000000px;}
.fs4_c00033{font-size:54.000000px;}
.fs2_c00033{font-size:60.000000px;}
.fs0_c00033{font-size:66.000000px;}
.fs6_c00033{font-size:72.000000px;}
.fs1_c00033{font-size:78.000000px;}
.fs3_c00033{font-size:90.000000px;}
.y0_c00033{bottom:0.000000px;}
.y68_c00033{bottom:190.800000px;}
.y35_c00033{bottom:192.600000px;}
.y67_c00033{bottom:205.950000px;}
.y34_c00033{bottom:206.700000px;}
.y66_c00033{bottom:219.300000px;}
.y33_c00033{bottom:221.400000px;}
.y65_c00033{bottom:234.300000px;}
.y32_c00033{bottom:235.050000px;}
.y64_c00033{bottom:248.400000px;}
.y31_c00033{bottom:249.450000px;}
.y63_c00033{bottom:262.800000px;}
.y30_c00033{bottom:264.300000px;}
.y62_c00033{bottom:276.900000px;}
.y2f_c00033{bottom:278.550000px;}
.y61_c00033{bottom:291.300000px;}
.y2e_c00033{bottom:292.650000px;}
.y60_c00033{bottom:306.000000px;}
.y2d_c00033{bottom:307.500000px;}
.y2c_c00033{bottom:321.900000px;}
.y5f_c00033{bottom:322.500000px;}
.y2b_c00033{bottom:335.550000px;}
.y2a_c00033{bottom:350.700000px;}
.y5e_c00033{bottom:370.500000px;}
.y5d_c00033{bottom:378.000000px;}
.y5c_c00033{bottom:392.400000px;}
.y29_c00033{bottom:396.750000px;}
.y5b_c00033{bottom:410.100000px;}
.y28_c00033{bottom:415.050000px;}
.y5a_c00033{bottom:428.100000px;}
.y27_c00033{bottom:432.750000px;}
.y59_c00033{bottom:445.800000px;}
.y26_c00033{bottom:451.050000px;}
.y58_c00033{bottom:463.500000px;}
.y25_c00033{bottom:468.900000px;}
.y57_c00033{bottom:481.500000px;}
.y24_c00033{bottom:486.150000px;}
.y56_c00033{bottom:499.200000px;}
.y23_c00033{bottom:503.850000px;}
.y55_c00033{bottom:517.200000px;}
.y22_c00033{bottom:521.850000px;}
.y54_c00033{bottom:534.900000px;}
.y21_c00033{bottom:539.100000px;}
.y53_c00033{bottom:552.900000px;}
.y20_c00033{bottom:556.800000px;}
.y52_c00033{bottom:570.600000px;}
.y1f_c00033{bottom:574.800000px;}
.y51_c00033{bottom:588.150000px;}
.y1e_c00033{bottom:592.500000px;}
.y50_c00033{bottom:605.850000px;}
.y1d_c00033{bottom:615.150000px;}
.y4f_c00033{bottom:623.850000px;}
.y1c_c00033{bottom:633.150000px;}
.y4e_c00033{bottom:641.550000px;}
.y1b_c00033{bottom:650.850000px;}
.y4d_c00033{bottom:659.550000px;}
.y1a_c00033{bottom:668.100000px;}
.y4c_c00033{bottom:677.250000px;}
.y19_c00033{bottom:691.200000px;}
.y4b_c00033{bottom:694.950000px;}
.y18_c00033{bottom:708.900000px;}
.y4a_c00033{bottom:712.650000px;}
.y17_c00033{bottom:726.150000px;}
.y49_c00033{bottom:730.650000px;}
.y48_c00033{bottom:748.650000px;}
.y16_c00033{bottom:748.800000px;}
.y47_c00033{bottom:766.350000px;}
.y15_c00033{bottom:766.800000px;}
.y14_c00033{bottom:784.050000px;}
.y13_c00033{bottom:801.750000px;}
.y46_c00033{bottom:805.800000px;}
.y12_c00033{bottom:822.900000px;}
.y45_c00033{bottom:824.100000px;}
.y11_c00033{bottom:841.650000px;}
.y44_c00033{bottom:845.550000px;}
.y10_c00033{bottom:857.850000px;}
.y43_c00033{bottom:864.300000px;}
.yf_c00033{bottom:880.950000px;}
.y42_c00033{bottom:882.000000px;}
.ye_c00033{bottom:898.650000px;}
.y41_c00033{bottom:900.300000px;}
.yd_c00033{bottom:916.650000px;}
.y40_c00033{bottom:918.000000px;}
.yc_c00033{bottom:933.150000px;}
.y3f_c00033{bottom:935.700000px;}
.y3e_c00033{bottom:956.400000px;}
.yb_c00033{bottom:960.750000px;}
.y3d_c00033{bottom:975.900000px;}
.ya_c00033{bottom:977.700000px;}
.y3c_c00033{bottom:993.900000px;}
.y9_c00033{bottom:1004.100000px;}
.y3b_c00033{bottom:1011.900000px;}
.y8_c00033{bottom:1022.100000px;}
.y3a_c00033{bottom:1029.600000px;}
.y7_c00033{bottom:1044.450000px;}
.y39_c00033{bottom:1047.300000px;}
.y6_c00033{bottom:1061.700000px;}
.y38_c00033{bottom:1068.000000px;}
.y5_c00033{bottom:1083.600000px;}
.y37_c00033{bottom:1087.500000px;}
.y4_c00033{bottom:1105.500000px;}
.y36_c00033{bottom:1123.200000px;}
.y3_c00033{bottom:1123.500000px;}
.y2_c00033{bottom:1148.700000px;}
.y1_c00033{bottom:1152.000000px;}
.h7_c00033{height:48.000000px;}
.h6_c00033{height:54.000000px;}
.h4_c00033{height:60.000000px;}
.h2_c00033{height:66.000000px;}
.h8_c00033{height:72.000000px;}
.h3_c00033{height:78.000000px;}
.h5_c00033{height:90.000000px;}
.h0_c00033{height:1272.600036px;}
.h1_c00033{height:1272.750000px;}
.w0_c00033{width:948.600036px;}
.w1_c00033{width:948.750000px;}
.x0_c00033{left:0.000000px;}
.x7b_c00033{left:157.950000px;}
.x8b_c00033{left:159.750000px;}
.x78_c00033{left:160.800000px;}
.x6e_c00033{left:162.000000px;}
.x55_c00033{left:163.050000px;}
.xb_c00033{left:165.450000px;}
.x1_c00033{left:169.200000px;}
.x97_c00033{left:171.000000px;}
.xa1_c00033{left:173.550000px;}
.x5f_c00033{left:174.900000px;}
.x89_c00033{left:177.450000px;}
.x62_c00033{left:179.550000px;}
.x9d_c00033{left:181.050000px;}
.x3f_c00033{left:182.250000px;}
.x36_c00033{left:183.600000px;}
.x3_c00033{left:184.650000px;}
.x1d_c00033{left:186.150000px;}
.x2f_c00033{left:190.500000px;}
.x8f_c00033{left:191.700000px;}
.x69_c00033{left:192.900000px;}
.x80_c00033{left:194.100000px;}
.x17_c00033{left:196.200000px;}
.x98_c00033{left:197.700000px;}
.x41_c00033{left:199.500000px;}
.x9a_c00033{left:200.550000px;}
.x1f_c00033{left:201.600000px;}
.x18_c00033{left:204.900000px;}
.x11_c00033{left:206.250000px;}
.x48_c00033{left:207.600000px;}
.x37_c00033{left:213.900000px;}
.x2a_c00033{left:216.000000px;}
.xc_c00033{left:217.350000px;}
.x90_c00033{left:218.700000px;}
.x7c_c00033{left:219.900000px;}
.x6f_c00033{left:222.150000px;}
.x30_c00033{left:223.200000px;}
.x26_c00033{left:224.700000px;}
.x76_c00033{left:226.950000px;}
.xd_c00033{left:228.150000px;}
.x4f_c00033{left:230.700000px;}
.x83_c00033{left:231.750000px;}
.x5b_c00033{left:233.700000px;}
.xa2_c00033{left:234.750000px;}
.x56_c00033{left:236.550000px;}
.x8c_c00033{left:237.900000px;}
.xa9_c00033{left:238.950000px;}
.x1e_c00033{left:240.150000px;}
.xe_c00033{left:242.550000px;}
.x70_c00033{left:243.750000px;}
.x49_c00033{left:246.450000px;}
.xa8_c00033{left:248.100000px;}
.x57_c00033{left:249.900000px;}
.x20_c00033{left:251.250000px;}
.x2b_c00033{left:253.050000px;}
.x60_c00033{left:254.100000px;}
.x3a_c00033{left:255.600000px;}
.x50_c00033{left:259.500000px;}
.x63_c00033{left:260.850000px;}
.x42_c00033{left:262.200000px;}
.xf_c00033{left:264.450000px;}
.x7e_c00033{left:267.450000px;}
.x4a_c00033{left:269.850000px;}
.x31_c00033{left:272.550000px;}
.xa4_c00033{left:273.900000px;}
.x43_c00033{left:275.550000px;}
.x38_c00033{left:278.700000px;}
.x64_c00033{left:280.950000px;}
.x99_c00033{left:282.000000px;}
.x27_c00033{left:285.600000px;}
.x21_c00033{left:287.250000px;}
.x32_c00033{left:288.450000px;}
.x4b_c00033{left:289.650000px;}
.x71_c00033{left:291.300000px;}
.x3b_c00033{left:292.350000px;}
.x12_c00033{left:293.850000px;}
.x8a_c00033{left:296.250000px;}
.x19_c00033{left:298.500000px;}
.x4_c00033{left:299.850000px;}
.x61_c00033{left:301.650000px;}
.x6b_c00033{left:303.150000px;}
.x28_c00033{left:307.200000px;}
.x22_c00033{left:310.950000px;}
.x84_c00033{left:312.750000px;}
.x51_c00033{left:314.850000px;}
.x3c_c00033{left:316.800000px;}
.x4c_c00033{left:318.150000px;}
.x5_c00033{left:320.400000px;}
.x44_c00033{left:322.650000px;}
.x91_c00033{left:325.350000px;}
.x5c_c00033{left:326.550000px;}
.x13_c00033{left:329.100000px;}
.x10_c00033{left:330.750000px;}
.x9e_c00033{left:333.000000px;}
.x85_c00033{left:334.650000px;}
.x67_c00033{left:337.950000px;}
.x45_c00033{left:339.600000px;}
.x29_c00033{left:341.700000px;}
.x2c_c00033{left:343.050000px;}
.x52_c00033{left:345.150000px;}
.x5d_c00033{left:347.400000px;}
.x14_c00033{left:348.900000px;}
.x1a_c00033{left:349.950000px;}
.x33_c00033{left:353.550000px;}
.x81_c00033{left:355.350000px;}
.x72_c00033{left:356.400000px;}
.x74_c00033{left:359.850000px;}
.x3d_c00033{left:362.550000px;}
.x1b_c00033{left:363.600000px;}
.x23_c00033{left:366.750000px;}
.x79_c00033{left:370.650000px;}
.x92_c00033{left:373.950000px;}
.x2d_c00033{left:375.450000px;}
.x6_c00033{left:378.300000px;}
.x86_c00033{left:379.350000px;}
.x95_c00033{left:380.550000px;}
.x53_c00033{left:382.650000px;}
.x34_c00033{left:386.700000px;}
.x96_c00033{left:389.850000px;}
.x8d_c00033{left:392.250000px;}
.x24_c00033{left:395.250000px;}
.x9b_c00033{left:397.050000px;}
.x40_c00033{left:398.400000px;}
.x1c_c00033{left:399.600000px;}
.x7_c00033{left:402.750000px;}
.x77_c00033{left:404.550000px;}
.x82_c00033{left:406.200000px;}
.x75_c00033{left:408.450000px;}
.x9f_c00033{left:411.150000px;}
.x2_c00033{left:412.500000px;}
.x58_c00033{left:414.450000px;}
.x6c_c00033{left:419.700000px;}
.x54_c00033{left:420.750000px;}
.xa3_c00033{left:421.800000px;}
.x8_c00033{left:423.300000px;}
.x4d_c00033{left:424.350000px;}
.xa5_c00033{left:426.150000px;}
.x65_c00033{left:428.550000px;}
.xa0_c00033{left:430.650000px;}
.x25_c00033{left:432.750000px;}
.x68_c00033{left:433.800000px;}
.x2e_c00033{left:435.600000px;}
.x87_c00033{left:436.950000px;}
.x93_c00033{left:438.750000px;}
.x73_c00033{left:439.950000px;}
.x46_c00033{left:441.450000px;}
.x6a_c00033{left:443.550000px;}
.x8e_c00033{left:446.700000px;}
.x94_c00033{left:448.800000px;}
.xa6_c00033{left:451.050000px;}
.x5e_c00033{left:452.850000px;}
.x7f_c00033{left:454.350000px;}
.x35_c00033{left:456.150000px;}
.x7d_c00033{left:459.000000px;}
.x3e_c00033{left:463.050000px;}
.x6d_c00033{left:466.200000px;}
.x59_c00033{left:467.400000px;}
.x15_c00033{left:469.050000px;}
.x9_c00033{left:470.400000px;}
.x7a_c00033{left:471.450000px;}
.x39_c00033{left:473.100000px;}
.x9c_c00033{left:479.100000px;}
.x47_c00033{left:482.550000px;}
.x4e_c00033{left:484.950000px;}
.x66_c00033{left:487.350000px;}
.x5a_c00033{left:490.050000px;}
.x16_c00033{left:492.150000px;}
.xa_c00033{left:494.850000px;}
.xa7_c00033{left:499.950000px;}
.x88_c00033{left:503.250000px;}
.x143_c00033{left:513.150000px;}
.x13f_c00033{left:514.800000px;}
.x12d_c00033{left:516.150000px;}
.x116_c00033{left:517.200000px;}
.x10a_c00033{left:518.250000px;}
.x111_c00033{left:519.600000px;}
.xfe_c00033{left:520.800000px;}
.xe6_c00033{left:522.300000px;}
.xdb_c00033{left:523.500000px;}
.xaa_c00033{left:524.850000px;}
.x148_c00033{left:529.500000px;}
.x146_c00033{left:533.100000px;}
.x101_c00033{left:534.900000px;}
.xf7_c00033{left:538.950000px;}
.xe0_c00033{left:541.050000px;}
.xc6_c00033{left:543.300000px;}
.xef_c00033{left:546.300000px;}
.xd5_c00033{left:548.850000px;}
.x127_c00033{left:551.100000px;}
.x14b_c00033{left:552.150000px;}
.xf6_c00033{left:553.200000px;}
.x10b_c00033{left:554.550000px;}
.xc5_c00033{left:556.500000px;}
.x120_c00033{left:558.300000px;}
.x14f_c00033{left:559.800000px;}
.xbc_c00033{left:562.650000px;}
.xf0_c00033{left:564.600000px;}
.xe1_c00033{left:566.250000px;}
.x117_c00033{left:568.650000px;}
.xc7_c00033{left:571.350000px;}
.x104_c00033{left:573.150000px;}
.x138_c00033{left:574.950000px;}
.x130_c00033{left:576.300000px;}
.x10c_c00033{left:579.450000px;}
.x12e_c00033{left:582.750000px;}
.xab_c00033{left:583.950000px;}
.xe7_c00033{left:585.000000px;}
.xbd_c00033{left:587.850000px;}
.xb2_c00033{left:589.050000px;}
.xce_c00033{left:592.050000px;}
.xe8_c00033{left:594.000000px;}
.x122_c00033{left:596.100000px;}
.xf8_c00033{left:598.650000px;}
.xcf_c00033{left:600.000000px;}
.x102_c00033{left:605.850000px;}
.x128_c00033{left:606.900000px;}
.xc8_c00033{left:609.150000px;}
.x139_c00033{left:611.250000px;}
.x12f_c00033{left:612.600000px;}
.x14e_c00033{left:614.250000px;}
.x129_c00033{left:616.650000px;}
.xd6_c00033{left:618.300000px;}
.xd0_c00033{left:619.500000px;}
.xb3_c00033{left:621.450000px;}
.xbe_c00033{left:623.100000px;}
.xac_c00033{left:624.300000px;}
.x141_c00033{left:625.800000px;}
.x149_c00033{left:627.450000px;}
.xff_c00033{left:630.150000px;}
.x123_c00033{left:632.100000px;}
.xeb_c00033{left:634.800000px;}
.xdc_c00033{left:636.150000px;}
.x10e_c00033{left:638.400000px;}
.xe2_c00033{left:640.500000px;}
.x105_c00033{left:643.350000px;}
.xcb_c00033{left:644.550000px;}
.x142_c00033{left:645.900000px;}
.x14a_c00033{left:646.950000px;}
.x11e_c00033{left:648.300000px;}
.x14c_c00033{left:651.300000px;}
.xb4_c00033{left:652.350000px;}
.x140_c00033{left:655.650000px;}
.x132_c00033{left:656.850000px;}
.xe3_c00033{left:658.800000px;}
.x112_c00033{left:660.300000px;}
.x118_c00033{left:661.950000px;}
.xdd_c00033{left:663.150000px;}
.xd7_c00033{left:664.350000px;}
.x11c_c00033{left:667.350000px;}
.x124_c00033{left:671.400000px;}
.xbf_c00033{left:673.200000px;}
.xde_c00033{left:674.250000px;}
.xf9_c00033{left:675.450000px;}
.xcc_c00033{left:677.700000px;}
.xf1_c00033{left:681.600000px;}
.x11a_c00033{left:682.650000px;}
.xc9_c00033{left:685.800000px;}
.x13a_c00033{left:687.150000px;}
.xc0_c00033{left:689.100000px;}
.x136_c00033{left:690.150000px;}
.xec_c00033{left:693.900000px;}
.xdf_c00033{left:696.150000px;}
.x10f_c00033{left:697.800000px;}
.xe9_c00033{left:699.450000px;}
.xb5_c00033{left:702.750000px;}
.xd1_c00033{left:704.400000px;}
.x108_c00033{left:705.750000px;}
.xad_c00033{left:708.150000px;}
.x13b_c00033{left:711.300000px;}
.xb6_c00033{left:713.550000px;}
.x12a_c00033{left:714.900000px;}
.xed_c00033{left:717.300000px;}
.x14d_c00033{left:718.800000px;}
.x113_c00033{left:722.550000px;}
.x12b_c00033{left:724.200000px;}
.xfa_c00033{left:725.550000px;}
.xc1_c00033{left:727.200000px;}
.xb7_c00033{left:730.800000px;}
.xae_c00033{left:733.050000px;}
.x11f_c00033{left:734.400000px;}
.x114_c00033{left:737.250000px;}
.x103_c00033{left:738.300000px;}
.x144_c00033{left:739.650000px;}
.xcd_c00033{left:742.500000px;}
.x11d_c00033{left:746.550000px;}
.xd8_c00033{left:749.250000px;}
.xfb_c00033{left:750.750000px;}
.x10d_c00033{left:753.300000px;}
.xe4_c00033{left:756.000000px;}
.x133_c00033{left:757.200000px;}
.x106_c00033{left:759.000000px;}
.xc2_c00033{left:762.900000px;}
.x151_c00033{left:765.750000px;}
.x147_c00033{left:768.600000px;}
.x12c_c00033{left:770.250000px;}
.xb8_c00033{left:772.200000px;}
.xaf_c00033{left:773.400000px;}
.xd2_c00033{left:774.900000px;}
.x125_c00033{left:777.150000px;}
.x13c_c00033{left:778.350000px;}
.xe5_c00033{left:779.700000px;}
.x153_c00033{left:781.950000px;}
.xfc_c00033{left:783.150000px;}
.x107_c00033{left:788.550000px;}
.xd3_c00033{left:793.650000px;}
.x145_c00033{left:795.600000px;}
.xb9_c00033{left:797.100000px;}
.xea_c00033{left:798.150000px;}
.x134_c00033{left:799.350000px;}
.x131_c00033{left:800.850000px;}
.x110_c00033{left:804.000000px;}
.xca_c00033{left:805.350000px;}
.x152_c00033{left:806.400000px;}
.xc3_c00033{left:808.200000px;}
.xd9_c00033{left:810.150000px;}
.xee_c00033{left:811.200000px;}
.xba_c00033{left:813.600000px;}
.x13e_c00033{left:816.150000px;}
.x11b_c00033{left:817.650000px;}
.x121_c00033{left:819.300000px;}
.xf4_c00033{left:821.400000px;}
.x137_c00033{left:822.600000px;}
.x135_c00033{left:823.800000px;}
.x150_c00033{left:826.050000px;}
.xb0_c00033{left:827.400000px;}
.x109_c00033{left:831.450000px;}
.xf2_c00033{left:832.500000px;}
.xda_c00033{left:834.300000px;}
.xd4_c00033{left:836.100000px;}
.x13d_c00033{left:837.750000px;}
.x119_c00033{left:839.550000px;}
.xfd_c00033{left:843.000000px;}
.xbb_c00033{left:845.250000px;}
.xf3_c00033{left:846.600000px;}
.xf5_c00033{left:847.650000px;}
.xc4_c00033{left:849.600000px;}
.x115_c00033{left:851.250000px;}
.xb1_c00033{left:852.300000px;}
.x100_c00033{left:854.400000px;}
.x126_c00033{left:859.650000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:-15.911417pt;}
.ws5_c00033{word-spacing:-10.427350pt;}
.ws3_c00033{word-spacing:-5.315416pt;}
.ws6_c00033{word-spacing:0.000000pt;}
.ws4_c00033{word-spacing:8.988937pt;}
.ws2_c00033{word-spacing:10.123457pt;}
.ws1_c00033{word-spacing:15.277778pt;}
.fs5_c00033{font-size:42.666667pt;}
.fs4_c00033{font-size:48.000000pt;}
.fs2_c00033{font-size:53.333333pt;}
.fs0_c00033{font-size:58.666667pt;}
.fs6_c00033{font-size:64.000000pt;}
.fs1_c00033{font-size:69.333333pt;}
.fs3_c00033{font-size:80.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y68_c00033{bottom:169.600000pt;}
.y35_c00033{bottom:171.200000pt;}
.y67_c00033{bottom:183.066667pt;}
.y34_c00033{bottom:183.733333pt;}
.y66_c00033{bottom:194.933333pt;}
.y33_c00033{bottom:196.800000pt;}
.y65_c00033{bottom:208.266667pt;}
.y32_c00033{bottom:208.933333pt;}
.y64_c00033{bottom:220.800000pt;}
.y31_c00033{bottom:221.733333pt;}
.y63_c00033{bottom:233.600000pt;}
.y30_c00033{bottom:234.933333pt;}
.y62_c00033{bottom:246.133333pt;}
.y2f_c00033{bottom:247.600000pt;}
.y61_c00033{bottom:258.933333pt;}
.y2e_c00033{bottom:260.133333pt;}
.y60_c00033{bottom:272.000000pt;}
.y2d_c00033{bottom:273.333333pt;}
.y2c_c00033{bottom:286.133333pt;}
.y5f_c00033{bottom:286.666667pt;}
.y2b_c00033{bottom:298.266667pt;}
.y2a_c00033{bottom:311.733333pt;}
.y5e_c00033{bottom:329.333333pt;}
.y5d_c00033{bottom:336.000000pt;}
.y5c_c00033{bottom:348.800000pt;}
.y29_c00033{bottom:352.666667pt;}
.y5b_c00033{bottom:364.533333pt;}
.y28_c00033{bottom:368.933333pt;}
.y5a_c00033{bottom:380.533333pt;}
.y27_c00033{bottom:384.666667pt;}
.y59_c00033{bottom:396.266667pt;}
.y26_c00033{bottom:400.933333pt;}
.y58_c00033{bottom:412.000000pt;}
.y25_c00033{bottom:416.800000pt;}
.y57_c00033{bottom:428.000000pt;}
.y24_c00033{bottom:432.133333pt;}
.y56_c00033{bottom:443.733333pt;}
.y23_c00033{bottom:447.866667pt;}
.y55_c00033{bottom:459.733333pt;}
.y22_c00033{bottom:463.866667pt;}
.y54_c00033{bottom:475.466667pt;}
.y21_c00033{bottom:479.200000pt;}
.y53_c00033{bottom:491.466667pt;}
.y20_c00033{bottom:494.933333pt;}
.y52_c00033{bottom:507.200000pt;}
.y1f_c00033{bottom:510.933333pt;}
.y51_c00033{bottom:522.800000pt;}
.y1e_c00033{bottom:526.666667pt;}
.y50_c00033{bottom:538.533333pt;}
.y1d_c00033{bottom:546.800000pt;}
.y4f_c00033{bottom:554.533333pt;}
.y1c_c00033{bottom:562.800000pt;}
.y4e_c00033{bottom:570.266667pt;}
.y1b_c00033{bottom:578.533333pt;}
.y4d_c00033{bottom:586.266667pt;}
.y1a_c00033{bottom:593.866667pt;}
.y4c_c00033{bottom:602.000000pt;}
.y19_c00033{bottom:614.400000pt;}
.y4b_c00033{bottom:617.733333pt;}
.y18_c00033{bottom:630.133333pt;}
.y4a_c00033{bottom:633.466667pt;}
.y17_c00033{bottom:645.466667pt;}
.y49_c00033{bottom:649.466667pt;}
.y48_c00033{bottom:665.466667pt;}
.y16_c00033{bottom:665.600000pt;}
.y47_c00033{bottom:681.200000pt;}
.y15_c00033{bottom:681.600000pt;}
.y14_c00033{bottom:696.933333pt;}
.y13_c00033{bottom:712.666667pt;}
.y46_c00033{bottom:716.266667pt;}
.y12_c00033{bottom:731.466667pt;}
.y45_c00033{bottom:732.533333pt;}
.y11_c00033{bottom:748.133333pt;}
.y44_c00033{bottom:751.600000pt;}
.y10_c00033{bottom:762.533333pt;}
.y43_c00033{bottom:768.266667pt;}
.yf_c00033{bottom:783.066667pt;}
.y42_c00033{bottom:784.000000pt;}
.ye_c00033{bottom:798.800000pt;}
.y41_c00033{bottom:800.266667pt;}
.yd_c00033{bottom:814.800000pt;}
.y40_c00033{bottom:816.000000pt;}
.yc_c00033{bottom:829.466667pt;}
.y3f_c00033{bottom:831.733333pt;}
.y3e_c00033{bottom:850.133333pt;}
.yb_c00033{bottom:854.000000pt;}
.y3d_c00033{bottom:867.466667pt;}
.ya_c00033{bottom:869.066667pt;}
.y3c_c00033{bottom:883.466667pt;}
.y9_c00033{bottom:892.533333pt;}
.y3b_c00033{bottom:899.466667pt;}
.y8_c00033{bottom:908.533333pt;}
.y3a_c00033{bottom:915.200000pt;}
.y7_c00033{bottom:928.400000pt;}
.y39_c00033{bottom:930.933333pt;}
.y6_c00033{bottom:943.733333pt;}
.y38_c00033{bottom:949.333333pt;}
.y5_c00033{bottom:963.200000pt;}
.y37_c00033{bottom:966.666667pt;}
.y4_c00033{bottom:982.666667pt;}
.y36_c00033{bottom:998.400000pt;}
.y3_c00033{bottom:998.666667pt;}
.y2_c00033{bottom:1021.066667pt;}
.y1_c00033{bottom:1024.000000pt;}
.h7_c00033{height:42.666667pt;}
.h6_c00033{height:48.000000pt;}
.h4_c00033{height:53.333333pt;}
.h2_c00033{height:58.666667pt;}
.h8_c00033{height:64.000000pt;}
.h3_c00033{height:69.333333pt;}
.h5_c00033{height:80.000000pt;}
.h0_c00033{height:1131.200032pt;}
.h1_c00033{height:1131.333333pt;}
.w0_c00033{width:843.200032pt;}
.w1_c00033{width:843.333333pt;}
.x0_c00033{left:0.000000pt;}
.x7b_c00033{left:140.400000pt;}
.x8b_c00033{left:142.000000pt;}
.x78_c00033{left:142.933333pt;}
.x6e_c00033{left:144.000000pt;}
.x55_c00033{left:144.933333pt;}
.xb_c00033{left:147.066667pt;}
.x1_c00033{left:150.400000pt;}
.x97_c00033{left:152.000000pt;}
.xa1_c00033{left:154.266667pt;}
.x5f_c00033{left:155.466667pt;}
.x89_c00033{left:157.733333pt;}
.x62_c00033{left:159.600000pt;}
.x9d_c00033{left:160.933333pt;}
.x3f_c00033{left:162.000000pt;}
.x36_c00033{left:163.200000pt;}
.x3_c00033{left:164.133333pt;}
.x1d_c00033{left:165.466667pt;}
.x2f_c00033{left:169.333333pt;}
.x8f_c00033{left:170.400000pt;}
.x69_c00033{left:171.466667pt;}
.x80_c00033{left:172.533333pt;}
.x17_c00033{left:174.400000pt;}
.x98_c00033{left:175.733333pt;}
.x41_c00033{left:177.333333pt;}
.x9a_c00033{left:178.266667pt;}
.x1f_c00033{left:179.200000pt;}
.x18_c00033{left:182.133333pt;}
.x11_c00033{left:183.333333pt;}
.x48_c00033{left:184.533333pt;}
.x37_c00033{left:190.133333pt;}
.x2a_c00033{left:192.000000pt;}
.xc_c00033{left:193.200000pt;}
.x90_c00033{left:194.400000pt;}
.x7c_c00033{left:195.466667pt;}
.x6f_c00033{left:197.466667pt;}
.x30_c00033{left:198.400000pt;}
.x26_c00033{left:199.733333pt;}
.x76_c00033{left:201.733333pt;}
.xd_c00033{left:202.800000pt;}
.x4f_c00033{left:205.066667pt;}
.x83_c00033{left:206.000000pt;}
.x5b_c00033{left:207.733333pt;}
.xa2_c00033{left:208.666667pt;}
.x56_c00033{left:210.266667pt;}
.x8c_c00033{left:211.466667pt;}
.xa9_c00033{left:212.400000pt;}
.x1e_c00033{left:213.466667pt;}
.xe_c00033{left:215.600000pt;}
.x70_c00033{left:216.666667pt;}
.x49_c00033{left:219.066667pt;}
.xa8_c00033{left:220.533333pt;}
.x57_c00033{left:222.133333pt;}
.x20_c00033{left:223.333333pt;}
.x2b_c00033{left:224.933333pt;}
.x60_c00033{left:225.866667pt;}
.x3a_c00033{left:227.200000pt;}
.x50_c00033{left:230.666667pt;}
.x63_c00033{left:231.866667pt;}
.x42_c00033{left:233.066667pt;}
.xf_c00033{left:235.066667pt;}
.x7e_c00033{left:237.733333pt;}
.x4a_c00033{left:239.866667pt;}
.x31_c00033{left:242.266667pt;}
.xa4_c00033{left:243.466667pt;}
.x43_c00033{left:244.933333pt;}
.x38_c00033{left:247.733333pt;}
.x64_c00033{left:249.733333pt;}
.x99_c00033{left:250.666667pt;}
.x27_c00033{left:253.866667pt;}
.x21_c00033{left:255.333333pt;}
.x32_c00033{left:256.400000pt;}
.x4b_c00033{left:257.466667pt;}
.x71_c00033{left:258.933333pt;}
.x3b_c00033{left:259.866667pt;}
.x12_c00033{left:261.200000pt;}
.x8a_c00033{left:263.333333pt;}
.x19_c00033{left:265.333333pt;}
.x4_c00033{left:266.533333pt;}
.x61_c00033{left:268.133333pt;}
.x6b_c00033{left:269.466667pt;}
.x28_c00033{left:273.066667pt;}
.x22_c00033{left:276.400000pt;}
.x84_c00033{left:278.000000pt;}
.x51_c00033{left:279.866667pt;}
.x3c_c00033{left:281.600000pt;}
.x4c_c00033{left:282.800000pt;}
.x5_c00033{left:284.800000pt;}
.x44_c00033{left:286.800000pt;}
.x91_c00033{left:289.200000pt;}
.x5c_c00033{left:290.266667pt;}
.x13_c00033{left:292.533333pt;}
.x10_c00033{left:294.000000pt;}
.x9e_c00033{left:296.000000pt;}
.x85_c00033{left:297.466667pt;}
.x67_c00033{left:300.400000pt;}
.x45_c00033{left:301.866667pt;}
.x29_c00033{left:303.733333pt;}
.x2c_c00033{left:304.933333pt;}
.x52_c00033{left:306.800000pt;}
.x5d_c00033{left:308.800000pt;}
.x14_c00033{left:310.133333pt;}
.x1a_c00033{left:311.066667pt;}
.x33_c00033{left:314.266667pt;}
.x81_c00033{left:315.866667pt;}
.x72_c00033{left:316.800000pt;}
.x74_c00033{left:319.866667pt;}
.x3d_c00033{left:322.266667pt;}
.x1b_c00033{left:323.200000pt;}
.x23_c00033{left:326.000000pt;}
.x79_c00033{left:329.466667pt;}
.x92_c00033{left:332.400000pt;}
.x2d_c00033{left:333.733333pt;}
.x6_c00033{left:336.266667pt;}
.x86_c00033{left:337.200000pt;}
.x95_c00033{left:338.266667pt;}
.x53_c00033{left:340.133333pt;}
.x34_c00033{left:343.733333pt;}
.x96_c00033{left:346.533333pt;}
.x8d_c00033{left:348.666667pt;}
.x24_c00033{left:351.333333pt;}
.x9b_c00033{left:352.933333pt;}
.x40_c00033{left:354.133333pt;}
.x1c_c00033{left:355.200000pt;}
.x7_c00033{left:358.000000pt;}
.x77_c00033{left:359.600000pt;}
.x82_c00033{left:361.066667pt;}
.x75_c00033{left:363.066667pt;}
.x9f_c00033{left:365.466667pt;}
.x2_c00033{left:366.666667pt;}
.x58_c00033{left:368.400000pt;}
.x6c_c00033{left:373.066667pt;}
.x54_c00033{left:374.000000pt;}
.xa3_c00033{left:374.933333pt;}
.x8_c00033{left:376.266667pt;}
.x4d_c00033{left:377.200000pt;}
.xa5_c00033{left:378.800000pt;}
.x65_c00033{left:380.933333pt;}
.xa0_c00033{left:382.800000pt;}
.x25_c00033{left:384.666667pt;}
.x68_c00033{left:385.600000pt;}
.x2e_c00033{left:387.200000pt;}
.x87_c00033{left:388.400000pt;}
.x93_c00033{left:390.000000pt;}
.x73_c00033{left:391.066667pt;}
.x46_c00033{left:392.400000pt;}
.x6a_c00033{left:394.266667pt;}
.x8e_c00033{left:397.066667pt;}
.x94_c00033{left:398.933333pt;}
.xa6_c00033{left:400.933333pt;}
.x5e_c00033{left:402.533333pt;}
.x7f_c00033{left:403.866667pt;}
.x35_c00033{left:405.466667pt;}
.x7d_c00033{left:408.000000pt;}
.x3e_c00033{left:411.600000pt;}
.x6d_c00033{left:414.400000pt;}
.x59_c00033{left:415.466667pt;}
.x15_c00033{left:416.933333pt;}
.x9_c00033{left:418.133333pt;}
.x7a_c00033{left:419.066667pt;}
.x39_c00033{left:420.533333pt;}
.x9c_c00033{left:425.866667pt;}
.x47_c00033{left:428.933333pt;}
.x4e_c00033{left:431.066667pt;}
.x66_c00033{left:433.200000pt;}
.x5a_c00033{left:435.600000pt;}
.x16_c00033{left:437.466667pt;}
.xa_c00033{left:439.866667pt;}
.xa7_c00033{left:444.400000pt;}
.x88_c00033{left:447.333333pt;}
.x143_c00033{left:456.133333pt;}
.x13f_c00033{left:457.600000pt;}
.x12d_c00033{left:458.800000pt;}
.x116_c00033{left:459.733333pt;}
.x10a_c00033{left:460.666667pt;}
.x111_c00033{left:461.866667pt;}
.xfe_c00033{left:462.933333pt;}
.xe6_c00033{left:464.266667pt;}
.xdb_c00033{left:465.333333pt;}
.xaa_c00033{left:466.533333pt;}
.x148_c00033{left:470.666667pt;}
.x146_c00033{left:473.866667pt;}
.x101_c00033{left:475.466667pt;}
.xf7_c00033{left:479.066667pt;}
.xe0_c00033{left:480.933333pt;}
.xc6_c00033{left:482.933333pt;}
.xef_c00033{left:485.600000pt;}
.xd5_c00033{left:487.866667pt;}
.x127_c00033{left:489.866667pt;}
.x14b_c00033{left:490.800000pt;}
.xf6_c00033{left:491.733333pt;}
.x10b_c00033{left:492.933333pt;}
.xc5_c00033{left:494.666667pt;}
.x120_c00033{left:496.266667pt;}
.x14f_c00033{left:497.600000pt;}
.xbc_c00033{left:500.133333pt;}
.xf0_c00033{left:501.866667pt;}
.xe1_c00033{left:503.333333pt;}
.x117_c00033{left:505.466667pt;}
.xc7_c00033{left:507.866667pt;}
.x104_c00033{left:509.466667pt;}
.x138_c00033{left:511.066667pt;}
.x130_c00033{left:512.266667pt;}
.x10c_c00033{left:515.066667pt;}
.x12e_c00033{left:518.000000pt;}
.xab_c00033{left:519.066667pt;}
.xe7_c00033{left:520.000000pt;}
.xbd_c00033{left:522.533333pt;}
.xb2_c00033{left:523.600000pt;}
.xce_c00033{left:526.266667pt;}
.xe8_c00033{left:528.000000pt;}
.x122_c00033{left:529.866667pt;}
.xf8_c00033{left:532.133333pt;}
.xcf_c00033{left:533.333333pt;}
.x102_c00033{left:538.533333pt;}
.x128_c00033{left:539.466667pt;}
.xc8_c00033{left:541.466667pt;}
.x139_c00033{left:543.333333pt;}
.x12f_c00033{left:544.533333pt;}
.x14e_c00033{left:546.000000pt;}
.x129_c00033{left:548.133333pt;}
.xd6_c00033{left:549.600000pt;}
.xd0_c00033{left:550.666667pt;}
.xb3_c00033{left:552.400000pt;}
.xbe_c00033{left:553.866667pt;}
.xac_c00033{left:554.933333pt;}
.x141_c00033{left:556.266667pt;}
.x149_c00033{left:557.733333pt;}
.xff_c00033{left:560.133333pt;}
.x123_c00033{left:561.866667pt;}
.xeb_c00033{left:564.266667pt;}
.xdc_c00033{left:565.466667pt;}
.x10e_c00033{left:567.466667pt;}
.xe2_c00033{left:569.333333pt;}
.x105_c00033{left:571.866667pt;}
.xcb_c00033{left:572.933333pt;}
.x142_c00033{left:574.133333pt;}
.x14a_c00033{left:575.066667pt;}
.x11e_c00033{left:576.266667pt;}
.x14c_c00033{left:578.933333pt;}
.xb4_c00033{left:579.866667pt;}
.x140_c00033{left:582.800000pt;}
.x132_c00033{left:583.866667pt;}
.xe3_c00033{left:585.600000pt;}
.x112_c00033{left:586.933333pt;}
.x118_c00033{left:588.400000pt;}
.xdd_c00033{left:589.466667pt;}
.xd7_c00033{left:590.533333pt;}
.x11c_c00033{left:593.200000pt;}
.x124_c00033{left:596.800000pt;}
.xbf_c00033{left:598.400000pt;}
.xde_c00033{left:599.333333pt;}
.xf9_c00033{left:600.400000pt;}
.xcc_c00033{left:602.400000pt;}
.xf1_c00033{left:605.866667pt;}
.x11a_c00033{left:606.800000pt;}
.xc9_c00033{left:609.600000pt;}
.x13a_c00033{left:610.800000pt;}
.xc0_c00033{left:612.533333pt;}
.x136_c00033{left:613.466667pt;}
.xec_c00033{left:616.800000pt;}
.xdf_c00033{left:618.800000pt;}
.x10f_c00033{left:620.266667pt;}
.xe9_c00033{left:621.733333pt;}
.xb5_c00033{left:624.666667pt;}
.xd1_c00033{left:626.133333pt;}
.x108_c00033{left:627.333333pt;}
.xad_c00033{left:629.466667pt;}
.x13b_c00033{left:632.266667pt;}
.xb6_c00033{left:634.266667pt;}
.x12a_c00033{left:635.466667pt;}
.xed_c00033{left:637.600000pt;}
.x14d_c00033{left:638.933333pt;}
.x113_c00033{left:642.266667pt;}
.x12b_c00033{left:643.733333pt;}
.xfa_c00033{left:644.933333pt;}
.xc1_c00033{left:646.400000pt;}
.xb7_c00033{left:649.600000pt;}
.xae_c00033{left:651.600000pt;}
.x11f_c00033{left:652.800000pt;}
.x114_c00033{left:655.333333pt;}
.x103_c00033{left:656.266667pt;}
.x144_c00033{left:657.466667pt;}
.xcd_c00033{left:660.000000pt;}
.x11d_c00033{left:663.600000pt;}
.xd8_c00033{left:666.000000pt;}
.xfb_c00033{left:667.333333pt;}
.x10d_c00033{left:669.600000pt;}
.xe4_c00033{left:672.000000pt;}
.x133_c00033{left:673.066667pt;}
.x106_c00033{left:674.666667pt;}
.xc2_c00033{left:678.133333pt;}
.x151_c00033{left:680.666667pt;}
.x147_c00033{left:683.200000pt;}
.x12c_c00033{left:684.666667pt;}
.xb8_c00033{left:686.400000pt;}
.xaf_c00033{left:687.466667pt;}
.xd2_c00033{left:688.800000pt;}
.x125_c00033{left:690.800000pt;}
.x13c_c00033{left:691.866667pt;}
.xe5_c00033{left:693.066667pt;}
.x153_c00033{left:695.066667pt;}
.xfc_c00033{left:696.133333pt;}
.x107_c00033{left:700.933333pt;}
.xd3_c00033{left:705.466667pt;}
.x145_c00033{left:707.200000pt;}
.xb9_c00033{left:708.533333pt;}
.xea_c00033{left:709.466667pt;}
.x134_c00033{left:710.533333pt;}
.x131_c00033{left:711.866667pt;}
.x110_c00033{left:714.666667pt;}
.xca_c00033{left:715.866667pt;}
.x152_c00033{left:716.800000pt;}
.xc3_c00033{left:718.400000pt;}
.xd9_c00033{left:720.133333pt;}
.xee_c00033{left:721.066667pt;}
.xba_c00033{left:723.200000pt;}
.x13e_c00033{left:725.466667pt;}
.x11b_c00033{left:726.800000pt;}
.x121_c00033{left:728.266667pt;}
.xf4_c00033{left:730.133333pt;}
.x137_c00033{left:731.200000pt;}
.x135_c00033{left:732.266667pt;}
.x150_c00033{left:734.266667pt;}
.xb0_c00033{left:735.466667pt;}
.x109_c00033{left:739.066667pt;}
.xf2_c00033{left:740.000000pt;}
.xda_c00033{left:741.600000pt;}
.xd4_c00033{left:743.200000pt;}
.x13d_c00033{left:744.666667pt;}
.x119_c00033{left:746.266667pt;}
.xfd_c00033{left:749.333333pt;}
.xbb_c00033{left:751.333333pt;}
.xf3_c00033{left:752.533333pt;}
.xf5_c00033{left:753.466667pt;}
.xc4_c00033{left:755.200000pt;}
.x115_c00033{left:756.666667pt;}
.xb1_c00033{left:757.600000pt;}
.x100_c00033{left:759.466667pt;}
.x126_c00033{left:764.133333pt;}
}





/* 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_c00034 {
    display:none;
  }
  .loading-indicator_c00034.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00034 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_c00034 { 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_c00034" -> "#page-container .classname_c00034")
 */
.pf_c00034 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00034 { /* 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_c00034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00034 { /* 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_c00034 { /* 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_c00034 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00034 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00034 {overflow:visible;}
  }
}
.c_c00034 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00034 { /* 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_c00034:after { /* webkit #35443 */
  content: '';
}
.t_c00034:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00034 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 */
}
.__c00034 { /* 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_c00034 { /* info for Javascript */
  display:none;
}
.l_c00034 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00034 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00034 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00034: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_c00034 {
    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_c00034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00034.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_c00034 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00034;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.000000;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;}
.m124_c00034{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m39_c00034{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00034{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m100_c00034{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00034{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00034{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00034{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00034{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.m3_c00034{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00034{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m40_c00034{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00034{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00034{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.md_c00034{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00034{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00034{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00034{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00034{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m4_c00034{transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);}
.m22_c00034{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m107_c00034{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00034{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m106_c00034{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m125_c00034{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00034{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00034{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00034{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m126_c00034{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m8_c00034{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.mde_c00034{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.md3_c00034{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00034{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00034{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m90_c00034{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m72_c00034{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m12_c00034{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00034{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00034{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00034{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m89_c00034{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m63_c00034{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m86_c00034{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m56_c00034{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00034{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00034{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m108_c00034{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mce_c00034{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00034{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00034{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m41_c00034{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00034{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00034{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me4_c00034{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00034{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.med_c00034{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m36_c00034{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m99_c00034{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m121_c00034{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m29_c00034{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00034{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00034{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00034{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00034{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00034{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00034{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m68_c00034{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m47_c00034{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me8_c00034{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m26_c00034{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mab_c00034{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m15_c00034{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00034{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m102_c00034{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00034{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5_c00034{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m18_c00034{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m95_c00034{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m50_c00034{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m118_c00034{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m49_c00034{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.meb_c00034{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m25_c00034{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00034{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00034{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00034{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m10_c00034{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m75_c00034{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m105_c00034{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00034{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00034{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m16_c00034{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00034{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m122_c00034{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m23_c00034{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m66_c00034{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mba_c00034{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m52_c00034{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m76_c00034{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me6_c00034{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf_c00034{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00034{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me2_c00034{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m11_c00034{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00034{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m34_c00034{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00034{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00034{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00034{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb_c00034{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m42_c00034{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mec_c00034{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00034{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00034{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md1_c00034{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m64_c00034{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m45_c00034{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m98_c00034{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m31_c00034{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m101_c00034{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00034{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m33_c00034{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m46_c00034{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m14_c00034{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00034{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m97_c00034{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mc_c00034{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00034{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00034{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00034{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mca_c00034{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m96_c00034{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m70_c00034{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m80_c00034{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00034{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00034{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00034{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m65_c00034{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mff_c00034{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00034{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00034{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00034{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m38_c00034{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00034{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m20_c00034{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m43_c00034{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00034{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma_c00034{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00034{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m59_c00034{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m120_c00034{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mee_c00034{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m32_c00034{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00034{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mda_c00034{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m57_c00034{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m48_c00034{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m84_c00034{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00034{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00034{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mef_c00034{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m28_c00034{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m73_c00034{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00034{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mae_c00034{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m37_c00034{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00034{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m111_c00034{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m54_c00034{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00034{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00034{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00034{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00034{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m17_c00034{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00034{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00034{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.maf_c00034{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00034{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m87_c00034{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m109_c00034{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00034{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6_c00034{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m123_c00034{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m67_c00034{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me3_c00034{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00034{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00034{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00034{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7_c00034{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00034{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m94_c00034{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00034{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00034{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00034{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me1_c00034{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00034{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m24_c00034{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00034{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m110_c00034{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m88_c00034{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.md0_c00034{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m61_c00034{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00034{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.maa_c00034{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m60_c00034{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00034{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00034{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me7_c00034{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00034{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me_c00034{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m74_c00034{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m83_c00034{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md9_c00034{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9_c00034{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00034{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md8_c00034{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00034{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mad_c00034{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m85_c00034{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m62_c00034{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m58_c00034{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00034{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00034{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00034{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00034{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m51_c00034{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00034{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00034{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md5_c00034{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m30_c00034{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.md6_c00034{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m35_c00034{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00034{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00034{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00034{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m21_c00034{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00034{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me5_c00034{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00034{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m81_c00034{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m55_c00034{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00034{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00034{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00034{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m27_c00034{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00034{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00034{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00034{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m13_c00034{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m103_c00034{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md2_c00034{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m53_c00034{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md4_c00034{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00034{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00034{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00034{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mac_c00034{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m92_c00034{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00034{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m115_c00034{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00034{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00034{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m112_c00034{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00034{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m82_c00034{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00034{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m113_c00034{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00034{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00034{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m93_c00034{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m77_c00034{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00034{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mea_c00034{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00034{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.md7_c00034{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m71_c00034{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m69_c00034{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m114_c00034{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m117_c00034{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.me9_c00034{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m79_c00034{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me0_c00034{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m116_c00034{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00034{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00034{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m44_c00034{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m127_c00034{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m104_c00034{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m2_c00034{transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);}
.m0_c00034{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00034{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00034{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m91_c00034{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m78_c00034{transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);}
.m119_c00034{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00034{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls0_c00034{letter-spacing:0.000000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{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__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00034{word-spacing:-6.260870px;}
.ws2_c00034{word-spacing:-6.048518px;}
.ws5_c00034{word-spacing:0.000000px;}
.ws0_c00034{word-spacing:1.428571px;}
.ws1_c00034{word-spacing:1.875000px;}
.ws3_c00034{word-spacing:3.837209px;}
.fc0_c00034{color:transparent;}
.fs7_c00034{font-size:30.000000px;}
.fs4_c00034{font-size:42.000000px;}
.fs9_c00034{font-size:48.000000px;}
.fs6_c00034{font-size:54.000000px;}
.fs5_c00034{font-size:60.000000px;}
.fs1_c00034{font-size:66.000000px;}
.fs3_c00034{font-size:72.000000px;}
.fs2_c00034{font-size:84.000000px;}
.fs0_c00034{font-size:120.000000px;}
.fs8_c00034{font-size:150.000000px;}
.y0_c00034{bottom:0.000000px;}
.y67_c00034{bottom:181.500000px;}
.y34_c00034{bottom:195.900000px;}
.y66_c00034{bottom:198.450000px;}
.y33_c00034{bottom:210.600000px;}
.y65_c00034{bottom:216.450000px;}
.y32_c00034{bottom:224.700000px;}
.y64_c00034{bottom:231.900000px;}
.y31_c00034{bottom:239.100000px;}
.y30_c00034{bottom:253.500000px;}
.y63_c00034{bottom:264.600000px;}
.y2f_c00034{bottom:267.900000px;}
.y62_c00034{bottom:280.350000px;}
.y61_c00034{bottom:296.250000px;}
.y2e_c00034{bottom:323.250000px;}
.y60_c00034{bottom:323.400000px;}
.y5f_c00034{bottom:340.650000px;}
.y2d_c00034{bottom:341.100000px;}
.y2c_c00034{bottom:358.800000px;}
.y5e_c00034{bottom:358.950000px;}
.y5d_c00034{bottom:376.200000px;}
.y2b_c00034{bottom:376.500000px;}
.y5c_c00034{bottom:394.200000px;}
.y2a_c00034{bottom:394.500000px;}
.y29_c00034{bottom:412.500000px;}
.y5b_c00034{bottom:419.700000px;}
.y28_c00034{bottom:430.200000px;}
.y5a_c00034{bottom:438.000000px;}
.y27_c00034{bottom:448.200000px;}
.y59_c00034{bottom:458.550000px;}
.y26_c00034{bottom:466.200000px;}
.y58_c00034{bottom:473.250000px;}
.y25_c00034{bottom:484.200000px;}
.y57_c00034{bottom:491.250000px;}
.y24_c00034{bottom:507.900000px;}
.y56_c00034{bottom:509.250000px;}
.y23_c00034{bottom:525.600000px;}
.y55_c00034{bottom:526.950000px;}
.y54_c00034{bottom:544.650000px;}
.y22_c00034{bottom:547.800000px;}
.y53_c00034{bottom:562.350000px;}
.y21_c00034{bottom:566.100000px;}
.y20_c00034{bottom:583.800000px;}
.y1f_c00034{bottom:601.500000px;}
.y52_c00034{bottom:602.100000px;}
.y1e_c00034{bottom:619.500000px;}
.y51_c00034{bottom:620.100000px;}
.y1d_c00034{bottom:637.200000px;}
.y50_c00034{bottom:637.800000px;}
.y1c_c00034{bottom:654.900000px;}
.y4f_c00034{bottom:655.500000px;}
.y1b_c00034{bottom:672.600000px;}
.y4e_c00034{bottom:673.200000px;}
.y1a_c00034{bottom:690.900000px;}
.y4d_c00034{bottom:691.200000px;}
.y19_c00034{bottom:708.450000px;}
.y4c_c00034{bottom:708.900000px;}
.y18_c00034{bottom:731.100000px;}
.y4b_c00034{bottom:735.000000px;}
.y17_c00034{bottom:748.800000px;}
.y4a_c00034{bottom:756.300000px;}
.y16_c00034{bottom:768.600000px;}
.y49_c00034{bottom:771.000000px;}
.y15_c00034{bottom:785.100000px;}
.y48_c00034{bottom:788.700000px;}
.y14_c00034{bottom:804.900000px;}
.y47_c00034{bottom:806.700000px;}
.y13_c00034{bottom:820.050000px;}
.y46_c00034{bottom:824.400000px;}
.y12_c00034{bottom:838.200000px;}
.y11_c00034{bottom:857.250000px;}
.y45_c00034{bottom:858.300000px;}
.y10_c00034{bottom:873.750000px;}
.y44_c00034{bottom:889.500000px;}
.yf_c00034{bottom:891.750000px;}
.ye_c00034{bottom:909.000000px;}
.y43_c00034{bottom:911.850000px;}
.y42_c00034{bottom:925.200000px;}
.yd_c00034{bottom:928.800000px;}
.yc_c00034{bottom:944.700000px;}
.y41_c00034{bottom:947.550000px;}
.yb_c00034{bottom:962.700000px;}
.y40_c00034{bottom:965.550000px;}
.ya_c00034{bottom:980.550000px;}
.y3f_c00034{bottom:983.100000px;}
.y9_c00034{bottom:998.250000px;}
.y3e_c00034{bottom:1000.800000px;}
.y8_c00034{bottom:1015.800000px;}
.y3d_c00034{bottom:1018.500000px;}
.y3c_c00034{bottom:1036.500000px;}
.y7_c00034{bottom:1038.900000px;}
.y6_c00034{bottom:1053.000000px;}
.y3b_c00034{bottom:1054.050000px;}
.y3a_c00034{bottom:1072.500000px;}
.y5_c00034{bottom:1073.850000px;}
.y4_c00034{bottom:1093.650000px;}
.y39_c00034{bottom:1094.850000px;}
.y38_c00034{bottom:1107.750000px;}
.y3_c00034{bottom:1109.850000px;}
.y37_c00034{bottom:1125.300000px;}
.y2_c00034{bottom:1127.850000px;}
.y36_c00034{bottom:1150.500000px;}
.y1_c00034{bottom:1152.300000px;}
.y35_c00034{bottom:1267.950000px;}
.h9_c00034{height:30.000000px;}
.h6_c00034{height:42.000000px;}
.hb_c00034{height:48.000000px;}
.h8_c00034{height:54.000000px;}
.h7_c00034{height:60.000000px;}
.h3_c00034{height:66.000000px;}
.h5_c00034{height:72.000000px;}
.h4_c00034{height:84.000000px;}
.h2_c00034{height:120.000000px;}
.ha_c00034{height:150.000000px;}
.h0_c00034{height:1271.879975px;}
.h1_c00034{height:1272.000000px;}
.w0_c00034{width:948.600036px;}
.w1_c00034{width:948.750000px;}
.x0_c00034{left:0.000000px;}
.x99_c00034{left:60.600000px;}
.x4b_c00034{left:61.950000px;}
.x35_c00034{left:63.000000px;}
.xd_c00034{left:64.500000px;}
.x6_c00034{left:65.550000px;}
.xa0_c00034{left:73.800000px;}
.x8a_c00034{left:75.600000px;}
.x18_c00034{left:78.150000px;}
.x6b_c00034{left:81.000000px;}
.x58_c00034{left:84.000000px;}
.x9e_c00034{left:85.200000px;}
.x36_c00034{left:88.500000px;}
.x43_c00034{left:90.000000px;}
.x1f_c00034{left:91.650000px;}
.x81_c00034{left:93.150000px;}
.xe_c00034{left:95.400000px;}
.x88_c00034{left:98.250000px;}
.xa4_c00034{left:99.600000px;}
.xa1_c00034{left:100.800000px;}
.x67_c00034{left:103.800000px;}
.xf_c00034{left:105.900000px;}
.x20_c00034{left:107.550000px;}
.x5f_c00034{left:109.800000px;}
.x2a_c00034{left:111.300000px;}
.x90_c00034{left:113.400000px;}
.x7_c00034{left:114.450000px;}
.x51_c00034{left:116.100000px;}
.x16_c00034{left:118.800000px;}
.xa2_c00034{left:119.850000px;}
.x76_c00034{left:122.100000px;}
.x3e_c00034{left:123.450000px;}
.x97_c00034{left:124.500000px;}
.xa5_c00034{left:125.700000px;}
.x8c_c00034{left:127.050000px;}
.x48_c00034{left:129.450000px;}
.x4c_c00034{left:132.150000px;}
.x2b_c00034{left:133.200000px;}
.x37_c00034{left:136.050000px;}
.x7e_c00034{left:138.450000px;}
.x44_c00034{left:141.450000px;}
.x19_c00034{left:145.800000px;}
.x72_c00034{left:147.300000px;}
.x10_c00034{left:149.100000px;}
.x4d_c00034{left:150.450000px;}
.x6c_c00034{left:151.500000px;}
.x7b_c00034{left:152.850000px;}
.x21_c00034{left:155.850000px;}
.x25_c00034{left:157.800000px;}
.x65_c00034{left:159.900000px;}
.x8e_c00034{left:162.300000px;}
.x60_c00034{left:163.500000px;}
.x31_c00034{left:165.450000px;}
.xa9_c00034{left:166.650000px;}
.x82_c00034{left:168.000000px;}
.x91_c00034{left:170.250000px;}
.x9b_c00034{left:172.050000px;}
.x52_c00034{left:174.000000px;}
.x49_c00034{left:176.250000px;}
.xa3_c00034{left:177.450000px;}
.x45_c00034{left:179.250000px;}
.x9f_c00034{left:180.600000px;}
.x53_c00034{left:182.550000px;}
.x38_c00034{left:184.350000px;}
.x8_c00034{left:186.750000px;}
.x2c_c00034{left:188.700000px;}
.x3f_c00034{left:189.750000px;}
.x26_c00034{left:192.750000px;}
.x83_c00034{left:196.050000px;}
.x68_c00034{left:197.100000px;}
.x87_c00034{left:198.450000px;}
.x4e_c00034{left:200.850000px;}
.x39_c00034{left:202.650000px;}
.x6d_c00034{left:204.750000px;}
.x92_c00034{left:205.950000px;}
.x5b_c00034{left:207.000000px;}
.xa6_c00034{left:208.200000px;}
.x6f_c00034{left:209.400000px;}
.x1a_c00034{left:210.900000px;}
.x22_c00034{left:212.400000px;}
.x32_c00034{left:218.400000px;}
.x8b_c00034{left:219.750000px;}
.x3a_c00034{left:222.150000px;}
.x84_c00034{left:223.350000px;}
.x61_c00034{left:225.750000px;}
.xaa_c00034{left:227.250000px;}
.x54_c00034{left:230.400000px;}
.x89_c00034{left:231.750000px;}
.x5c_c00034{left:232.950000px;}
.x2d_c00034{left:235.800000px;}
.x9_c00034{left:237.450000px;}
.x8d_c00034{left:238.950000px;}
.x3c_c00034{left:242.250000px;}
.x86_c00034{left:244.200000px;}
.x77_c00034{left:245.250000px;}
.x23_c00034{left:248.100000px;}
.x4a_c00034{left:249.600000px;}
.x7c_c00034{left:250.800000px;}
.x9d_c00034{left:253.200000px;}
.x1b_c00034{left:256.650000px;}
.x11_c00034{left:259.950000px;}
.xa_c00034{left:261.150000px;}
.xa7_c00034{left:262.950000px;}
.x7f_c00034{left:265.950000px;}
.x8f_c00034{left:267.450000px;}
.x3b_c00034{left:270.150000px;}
.x9a_c00034{left:271.650000px;}
.x69_c00034{left:273.450000px;}
.x62_c00034{left:276.450000px;}
.x2e_c00034{left:277.650000px;}
.x12_c00034{left:280.800000px;}
.x70_c00034{left:284.250000px;}
.x63_c00034{left:285.750000px;}
.x40_c00034{left:287.250000px;}
.x1c_c00034{left:289.050000px;}
.x78_c00034{left:290.550000px;}
.x5d_c00034{left:291.600000px;}
.x59_c00034{left:293.850000px;}
.x66_c00034{left:294.900000px;}
.x79_c00034{left:297.150000px;}
.xb_c00034{left:300.000000px;}
.x4f_c00034{left:302.100000px;}
.x73_c00034{left:303.750000px;}
.x93_c00034{left:305.400000px;}
.x1d_c00034{left:307.350000px;}
.x6a_c00034{left:308.400000px;}
.x1_c00034{left:310.350000px;}
.x55_c00034{left:312.150000px;}
.x27_c00034{left:313.650000px;}
.x33_c00034{left:316.350000px;}
.x5a_c00034{left:318.300000px;}
.x50_c00034{left:319.350000px;}
.x46_c00034{left:323.250000px;}
.x96_c00034{left:325.800000px;}
.x74_c00034{left:327.900000px;}
.x7a_c00034{left:329.550000px;}
.x2f_c00034{left:331.350000px;}
.x17_c00034{left:333.000000px;}
.x80_c00034{left:334.350000px;}
.x85_c00034{left:337.050000px;}
.x28_c00034{left:339.900000px;}
.x71_c00034{left:342.150000px;}
.x75_c00034{left:343.800000px;}
.x13_c00034{left:345.900000px;}
.x56_c00034{left:347.850000px;}
.x41_c00034{left:349.950000px;}
.x47_c00034{left:351.300000px;}
.x94_c00034{left:353.250000px;}
.xc_c00034{left:355.050000px;}
.x9c_c00034{left:356.550000px;}
.x7d_c00034{left:358.050000px;}
.x2_c00034{left:359.250000px;}
.x5e_c00034{left:361.050000px;}
.x57_c00034{left:362.250000px;}
.x14_c00034{left:363.900000px;}
.x42_c00034{left:368.250000px;}
.x1e_c00034{left:369.600000px;}
.x3d_c00034{left:372.900000px;}
.x24_c00034{left:374.850000px;}
.x29_c00034{left:377.400000px;}
.xa8_c00034{left:379.500000px;}
.x64_c00034{left:380.550000px;}
.x98_c00034{left:381.750000px;}
.x15_c00034{left:383.700000px;}
.x3_c00034{left:384.750000px;}
.x30_c00034{left:386.400000px;}
.x6e_c00034{left:388.350000px;}
.x95_c00034{left:395.400000px;}
.x34_c00034{left:405.600000px;}
.x134_c00034{left:417.450000px;}
.x122_c00034{left:418.950000px;}
.xff_c00034{left:420.150000px;}
.xd9_c00034{left:421.500000px;}
.xca_c00034{left:423.000000px;}
.xad_c00034{left:424.500000px;}
.xdf_c00034{left:432.600000px;}
.xda_c00034{left:434.850000px;}
.x12d_c00034{left:435.900000px;}
.xeb_c00034{left:437.550000px;}
.xed_c00034{left:439.500000px;}
.x131_c00034{left:440.850000px;}
.x135_c00034{left:446.250000px;}
.x118_c00034{left:447.300000px;}
.xc3_c00034{left:449.700000px;}
.xae_c00034{left:450.750000px;}
.x12e_c00034{left:453.150000px;}
.x136_c00034{left:454.200000px;}
.xb4_c00034{left:457.200000px;}
.xcb_c00034{left:459.300000px;}
.x142_c00034{left:460.350000px;}
.xbc_c00034{left:461.550000px;}
.xc4_c00034{left:463.050000px;}
.xee_c00034{left:465.750000px;}
.x101_c00034{left:468.450000px;}
.x143_c00034{left:469.650000px;}
.x4_c00034{left:470.850000px;}
.x137_c00034{left:472.200000px;}
.xe0_c00034{left:474.300000px;}
.xec_c00034{left:476.100000px;}
.xf4_c00034{left:477.300000px;}
.xb5_c00034{left:479.100000px;}
.xfc_c00034{left:480.900000px;}
.xcf_c00034{left:482.550000px;}
.xbd_c00034{left:483.900000px;}
.x10f_c00034{left:485.250000px;}
.x102_c00034{left:486.750000px;}
.xdb_c00034{left:488.550000px;}
.x105_c00034{left:492.000000px;}
.x5_c00034{left:493.950000px;}
.xe6_c00034{left:501.450000px;}
.x107_c00034{left:505.350000px;}
.x12c_c00034{left:507.000000px;}
.xc5_c00034{left:508.050000px;}
.x10c_c00034{left:509.850000px;}
.x128_c00034{left:513.300000px;}
.x103_c00034{left:514.500000px;}
.x119_c00034{left:517.500000px;}
.xd0_c00034{left:519.300000px;}
.xaf_c00034{left:520.650000px;}
.xe1_c00034{left:522.900000px;}
.x12f_c00034{left:524.400000px;}
.x10a_c00034{left:525.600000px;}
.xb6_c00034{left:526.650000px;}
.x113_c00034{left:527.700000px;}
.xfa_c00034{left:529.050000px;}
.x11a_c00034{left:531.600000px;}
.xef_c00034{left:533.400000px;}
.xd5_c00034{left:538.500000px;}
.x11f_c00034{left:539.850000px;}
.xf0_c00034{left:542.700000px;}
.x13a_c00034{left:544.050000px;}
.xcc_c00034{left:545.400000px;}
.xb7_c00034{left:546.750000px;}
.xdc_c00034{left:548.250000px;}
.xb0_c00034{left:549.750000px;}
.x141_c00034{left:552.900000px;}
.x11b_c00034{left:554.250000px;}
.xcd_c00034{left:555.900000px;}
.x11d_c00034{left:557.250000px;}
.xbe_c00034{left:558.450000px;}
.xf1_c00034{left:563.250000px;}
.x108_c00034{left:566.100000px;}
.x120_c00034{left:568.350000px;}
.x124_c00034{left:570.600000px;}
.xb1_c00034{left:571.650000px;}
.xf5_c00034{left:573.000000px;}
.x110_c00034{left:574.050000px;}
.xce_c00034{left:576.000000px;}
.x12b_c00034{left:581.700000px;}
.xd6_c00034{left:582.750000px;}
.xe7_c00034{left:586.500000px;}
.x114_c00034{left:588.150000px;}
.xb8_c00034{left:592.500000px;}
.x13b_c00034{left:593.700000px;}
.x132_c00034{left:595.650000px;}
.xe2_c00034{left:596.700000px;}
.xfd_c00034{left:599.100000px;}
.x116_c00034{left:602.850000px;}
.xdd_c00034{left:604.350000px;}
.x138_c00034{left:605.400000px;}
.x10e_c00034{left:607.950000px;}
.xbf_c00034{left:609.600000px;}
.xc6_c00034{left:612.750000px;}
.xd7_c00034{left:615.150000px;}
.x11e_c00034{left:616.350000px;}
.x13f_c00034{left:617.850000px;}
.x129_c00034{left:619.200000px;}
.xf2_c00034{left:622.950000px;}
.xd1_c00034{left:625.950000px;}
.x111_c00034{left:628.500000px;}
.x130_c00034{left:629.550000px;}
.x121_c00034{left:631.350000px;}
.xc7_c00034{left:635.850000px;}
.xf6_c00034{left:637.200000px;}
.xfb_c00034{left:640.950000px;}
.xe3_c00034{left:643.500000px;}
.xb2_c00034{left:646.500000px;}
.x13c_c00034{left:647.700000px;}
.xf7_c00034{left:649.050000px;}
.xb9_c00034{left:650.850000px;}
.x125_c00034{left:651.900000px;}
.x140_c00034{left:653.850000px;}
.x139_c00034{left:656.100000px;}
.xc0_c00034{left:659.250000px;}
.xd2_c00034{left:660.450000px;}
.x10b_c00034{left:661.800000px;}
.x13d_c00034{left:665.400000px;}
.x104_c00034{left:667.350000px;}
.xfe_c00034{left:668.550000px;}
.xba_c00034{left:669.600000px;}
.xe8_c00034{left:671.550000px;}
.xf3_c00034{left:672.750000px;}
.xe4_c00034{left:676.200000px;}
.x11c_c00034{left:680.700000px;}
.xf8_c00034{left:682.200000px;}
.x109_c00034{left:686.100000px;}
.x10d_c00034{left:687.300000px;}
.x126_c00034{left:689.400000px;}
.xc8_c00034{left:690.600000px;}
.x12a_c00034{left:691.950000px;}
.x13e_c00034{left:693.150000px;}
.xc1_c00034{left:695.550000px;}
.x117_c00034{left:699.300000px;}
.x133_c00034{left:700.350000px;}
.xde_c00034{left:701.550000px;}
.xf9_c00034{left:703.050000px;}
.xd3_c00034{left:705.150000px;}
.x106_c00034{left:707.250000px;}
.xd8_c00034{left:709.050000px;}
.xe9_c00034{left:711.450000px;}
.xbb_c00034{left:713.550000px;}
.xb3_c00034{left:714.900000px;}
.xc2_c00034{left:720.000000px;}
.x127_c00034{left:721.050000px;}
.xc9_c00034{left:723.750000px;}
.xab_c00034{left:726.450000px;}
.xd4_c00034{left:728.250000px;}
.x100_c00034{left:734.250000px;}
.x112_c00034{left:735.750000px;}
.xe5_c00034{left:739.200000px;}
.x115_c00034{left:740.850000px;}
.xac_c00034{left:743.100000px;}
.x123_c00034{left:752.100000px;}
.xea_c00034{left:762.900000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws4_c00034{word-spacing:-5.565217pt;}
.ws2_c00034{word-spacing:-5.376460pt;}
.ws5_c00034{word-spacing:0.000000pt;}
.ws0_c00034{word-spacing:1.269841pt;}
.ws1_c00034{word-spacing:1.666667pt;}
.ws3_c00034{word-spacing:3.410853pt;}
.fs7_c00034{font-size:26.666667pt;}
.fs4_c00034{font-size:37.333333pt;}
.fs9_c00034{font-size:42.666667pt;}
.fs6_c00034{font-size:48.000000pt;}
.fs5_c00034{font-size:53.333333pt;}
.fs1_c00034{font-size:58.666667pt;}
.fs3_c00034{font-size:64.000000pt;}
.fs2_c00034{font-size:74.666667pt;}
.fs0_c00034{font-size:106.666667pt;}
.fs8_c00034{font-size:133.333333pt;}
.y0_c00034{bottom:0.000000pt;}
.y67_c00034{bottom:161.333333pt;}
.y34_c00034{bottom:174.133333pt;}
.y66_c00034{bottom:176.400000pt;}
.y33_c00034{bottom:187.200000pt;}
.y65_c00034{bottom:192.400000pt;}
.y32_c00034{bottom:199.733333pt;}
.y64_c00034{bottom:206.133333pt;}
.y31_c00034{bottom:212.533333pt;}
.y30_c00034{bottom:225.333333pt;}
.y63_c00034{bottom:235.200000pt;}
.y2f_c00034{bottom:238.133333pt;}
.y62_c00034{bottom:249.200000pt;}
.y61_c00034{bottom:263.333333pt;}
.y2e_c00034{bottom:287.333333pt;}
.y60_c00034{bottom:287.466667pt;}
.y5f_c00034{bottom:302.800000pt;}
.y2d_c00034{bottom:303.200000pt;}
.y2c_c00034{bottom:318.933333pt;}
.y5e_c00034{bottom:319.066667pt;}
.y5d_c00034{bottom:334.400000pt;}
.y2b_c00034{bottom:334.666667pt;}
.y5c_c00034{bottom:350.400000pt;}
.y2a_c00034{bottom:350.666667pt;}
.y29_c00034{bottom:366.666667pt;}
.y5b_c00034{bottom:373.066667pt;}
.y28_c00034{bottom:382.400000pt;}
.y5a_c00034{bottom:389.333333pt;}
.y27_c00034{bottom:398.400000pt;}
.y59_c00034{bottom:407.600000pt;}
.y26_c00034{bottom:414.400000pt;}
.y58_c00034{bottom:420.666667pt;}
.y25_c00034{bottom:430.400000pt;}
.y57_c00034{bottom:436.666667pt;}
.y24_c00034{bottom:451.466667pt;}
.y56_c00034{bottom:452.666667pt;}
.y23_c00034{bottom:467.200000pt;}
.y55_c00034{bottom:468.400000pt;}
.y54_c00034{bottom:484.133333pt;}
.y22_c00034{bottom:486.933333pt;}
.y53_c00034{bottom:499.866667pt;}
.y21_c00034{bottom:503.200000pt;}
.y20_c00034{bottom:518.933333pt;}
.y1f_c00034{bottom:534.666667pt;}
.y52_c00034{bottom:535.200000pt;}
.y1e_c00034{bottom:550.666667pt;}
.y51_c00034{bottom:551.200000pt;}
.y1d_c00034{bottom:566.400000pt;}
.y50_c00034{bottom:566.933333pt;}
.y1c_c00034{bottom:582.133333pt;}
.y4f_c00034{bottom:582.666667pt;}
.y1b_c00034{bottom:597.866667pt;}
.y4e_c00034{bottom:598.400000pt;}
.y1a_c00034{bottom:614.133333pt;}
.y4d_c00034{bottom:614.400000pt;}
.y19_c00034{bottom:629.733333pt;}
.y4c_c00034{bottom:630.133333pt;}
.y18_c00034{bottom:649.866667pt;}
.y4b_c00034{bottom:653.333333pt;}
.y17_c00034{bottom:665.600000pt;}
.y4a_c00034{bottom:672.266667pt;}
.y16_c00034{bottom:683.200000pt;}
.y49_c00034{bottom:685.333333pt;}
.y15_c00034{bottom:697.866667pt;}
.y48_c00034{bottom:701.066667pt;}
.y14_c00034{bottom:715.466667pt;}
.y47_c00034{bottom:717.066667pt;}
.y13_c00034{bottom:728.933333pt;}
.y46_c00034{bottom:732.800000pt;}
.y12_c00034{bottom:745.066667pt;}
.y11_c00034{bottom:762.000000pt;}
.y45_c00034{bottom:762.933333pt;}
.y10_c00034{bottom:776.666667pt;}
.y44_c00034{bottom:790.666667pt;}
.yf_c00034{bottom:792.666667pt;}
.ye_c00034{bottom:808.000000pt;}
.y43_c00034{bottom:810.533333pt;}
.y42_c00034{bottom:822.400000pt;}
.yd_c00034{bottom:825.600000pt;}
.yc_c00034{bottom:839.733333pt;}
.y41_c00034{bottom:842.266667pt;}
.yb_c00034{bottom:855.733333pt;}
.y40_c00034{bottom:858.266667pt;}
.ya_c00034{bottom:871.600000pt;}
.y3f_c00034{bottom:873.866667pt;}
.y9_c00034{bottom:887.333333pt;}
.y3e_c00034{bottom:889.600000pt;}
.y8_c00034{bottom:902.933333pt;}
.y3d_c00034{bottom:905.333333pt;}
.y3c_c00034{bottom:921.333333pt;}
.y7_c00034{bottom:923.466667pt;}
.y6_c00034{bottom:936.000000pt;}
.y3b_c00034{bottom:936.933333pt;}
.y3a_c00034{bottom:953.333333pt;}
.y5_c00034{bottom:954.533333pt;}
.y4_c00034{bottom:972.133333pt;}
.y39_c00034{bottom:973.200000pt;}
.y38_c00034{bottom:984.666667pt;}
.y3_c00034{bottom:986.533333pt;}
.y37_c00034{bottom:1000.266667pt;}
.y2_c00034{bottom:1002.533333pt;}
.y36_c00034{bottom:1022.666667pt;}
.y1_c00034{bottom:1024.266667pt;}
.y35_c00034{bottom:1127.066667pt;}
.h9_c00034{height:26.666667pt;}
.h6_c00034{height:37.333333pt;}
.hb_c00034{height:42.666667pt;}
.h8_c00034{height:48.000000pt;}
.h7_c00034{height:53.333333pt;}
.h3_c00034{height:58.666667pt;}
.h5_c00034{height:64.000000pt;}
.h4_c00034{height:74.666667pt;}
.h2_c00034{height:106.666667pt;}
.ha_c00034{height:133.333333pt;}
.h0_c00034{height:1130.559977pt;}
.h1_c00034{height:1130.666667pt;}
.w0_c00034{width:843.200032pt;}
.w1_c00034{width:843.333333pt;}
.x0_c00034{left:0.000000pt;}
.x99_c00034{left:53.866667pt;}
.x4b_c00034{left:55.066667pt;}
.x35_c00034{left:56.000000pt;}
.xd_c00034{left:57.333333pt;}
.x6_c00034{left:58.266667pt;}
.xa0_c00034{left:65.600000pt;}
.x8a_c00034{left:67.200000pt;}
.x18_c00034{left:69.466667pt;}
.x6b_c00034{left:72.000000pt;}
.x58_c00034{left:74.666667pt;}
.x9e_c00034{left:75.733333pt;}
.x36_c00034{left:78.666667pt;}
.x43_c00034{left:80.000000pt;}
.x1f_c00034{left:81.466667pt;}
.x81_c00034{left:82.800000pt;}
.xe_c00034{left:84.800000pt;}
.x88_c00034{left:87.333333pt;}
.xa4_c00034{left:88.533333pt;}
.xa1_c00034{left:89.600000pt;}
.x67_c00034{left:92.266667pt;}
.xf_c00034{left:94.133333pt;}
.x20_c00034{left:95.600000pt;}
.x5f_c00034{left:97.600000pt;}
.x2a_c00034{left:98.933333pt;}
.x90_c00034{left:100.800000pt;}
.x7_c00034{left:101.733333pt;}
.x51_c00034{left:103.200000pt;}
.x16_c00034{left:105.600000pt;}
.xa2_c00034{left:106.533333pt;}
.x76_c00034{left:108.533333pt;}
.x3e_c00034{left:109.733333pt;}
.x97_c00034{left:110.666667pt;}
.xa5_c00034{left:111.733333pt;}
.x8c_c00034{left:112.933333pt;}
.x48_c00034{left:115.066667pt;}
.x4c_c00034{left:117.466667pt;}
.x2b_c00034{left:118.400000pt;}
.x37_c00034{left:120.933333pt;}
.x7e_c00034{left:123.066667pt;}
.x44_c00034{left:125.733333pt;}
.x19_c00034{left:129.600000pt;}
.x72_c00034{left:130.933333pt;}
.x10_c00034{left:132.533333pt;}
.x4d_c00034{left:133.733333pt;}
.x6c_c00034{left:134.666667pt;}
.x7b_c00034{left:135.866667pt;}
.x21_c00034{left:138.533333pt;}
.x25_c00034{left:140.266667pt;}
.x65_c00034{left:142.133333pt;}
.x8e_c00034{left:144.266667pt;}
.x60_c00034{left:145.333333pt;}
.x31_c00034{left:147.066667pt;}
.xa9_c00034{left:148.133333pt;}
.x82_c00034{left:149.333333pt;}
.x91_c00034{left:151.333333pt;}
.x9b_c00034{left:152.933333pt;}
.x52_c00034{left:154.666667pt;}
.x49_c00034{left:156.666667pt;}
.xa3_c00034{left:157.733333pt;}
.x45_c00034{left:159.333333pt;}
.x9f_c00034{left:160.533333pt;}
.x53_c00034{left:162.266667pt;}
.x38_c00034{left:163.866667pt;}
.x8_c00034{left:166.000000pt;}
.x2c_c00034{left:167.733333pt;}
.x3f_c00034{left:168.666667pt;}
.x26_c00034{left:171.333333pt;}
.x83_c00034{left:174.266667pt;}
.x68_c00034{left:175.200000pt;}
.x87_c00034{left:176.400000pt;}
.x4e_c00034{left:178.533333pt;}
.x39_c00034{left:180.133333pt;}
.x6d_c00034{left:182.000000pt;}
.x92_c00034{left:183.066667pt;}
.x5b_c00034{left:184.000000pt;}
.xa6_c00034{left:185.066667pt;}
.x6f_c00034{left:186.133333pt;}
.x1a_c00034{left:187.466667pt;}
.x22_c00034{left:188.800000pt;}
.x32_c00034{left:194.133333pt;}
.x8b_c00034{left:195.333333pt;}
.x3a_c00034{left:197.466667pt;}
.x84_c00034{left:198.533333pt;}
.x61_c00034{left:200.666667pt;}
.xaa_c00034{left:202.000000pt;}
.x54_c00034{left:204.800000pt;}
.x89_c00034{left:206.000000pt;}
.x5c_c00034{left:207.066667pt;}
.x2d_c00034{left:209.600000pt;}
.x9_c00034{left:211.066667pt;}
.x8d_c00034{left:212.400000pt;}
.x3c_c00034{left:215.333333pt;}
.x86_c00034{left:217.066667pt;}
.x77_c00034{left:218.000000pt;}
.x23_c00034{left:220.533333pt;}
.x4a_c00034{left:221.866667pt;}
.x7c_c00034{left:222.933333pt;}
.x9d_c00034{left:225.066667pt;}
.x1b_c00034{left:228.133333pt;}
.x11_c00034{left:231.066667pt;}
.xa_c00034{left:232.133333pt;}
.xa7_c00034{left:233.733333pt;}
.x7f_c00034{left:236.400000pt;}
.x8f_c00034{left:237.733333pt;}
.x3b_c00034{left:240.133333pt;}
.x9a_c00034{left:241.466667pt;}
.x69_c00034{left:243.066667pt;}
.x62_c00034{left:245.733333pt;}
.x2e_c00034{left:246.800000pt;}
.x12_c00034{left:249.600000pt;}
.x70_c00034{left:252.666667pt;}
.x63_c00034{left:254.000000pt;}
.x40_c00034{left:255.333333pt;}
.x1c_c00034{left:256.933333pt;}
.x78_c00034{left:258.266667pt;}
.x5d_c00034{left:259.200000pt;}
.x59_c00034{left:261.200000pt;}
.x66_c00034{left:262.133333pt;}
.x79_c00034{left:264.133333pt;}
.xb_c00034{left:266.666667pt;}
.x4f_c00034{left:268.533333pt;}
.x73_c00034{left:270.000000pt;}
.x93_c00034{left:271.466667pt;}
.x1d_c00034{left:273.200000pt;}
.x6a_c00034{left:274.133333pt;}
.x1_c00034{left:275.866667pt;}
.x55_c00034{left:277.466667pt;}
.x27_c00034{left:278.800000pt;}
.x33_c00034{left:281.200000pt;}
.x5a_c00034{left:282.933333pt;}
.x50_c00034{left:283.866667pt;}
.x46_c00034{left:287.333333pt;}
.x96_c00034{left:289.600000pt;}
.x74_c00034{left:291.466667pt;}
.x7a_c00034{left:292.933333pt;}
.x2f_c00034{left:294.533333pt;}
.x17_c00034{left:296.000000pt;}
.x80_c00034{left:297.200000pt;}
.x85_c00034{left:299.600000pt;}
.x28_c00034{left:302.133333pt;}
.x71_c00034{left:304.133333pt;}
.x75_c00034{left:305.600000pt;}
.x13_c00034{left:307.466667pt;}
.x56_c00034{left:309.200000pt;}
.x41_c00034{left:311.066667pt;}
.x47_c00034{left:312.266667pt;}
.x94_c00034{left:314.000000pt;}
.xc_c00034{left:315.600000pt;}
.x9c_c00034{left:316.933333pt;}
.x7d_c00034{left:318.266667pt;}
.x2_c00034{left:319.333333pt;}
.x5e_c00034{left:320.933333pt;}
.x57_c00034{left:322.000000pt;}
.x14_c00034{left:323.466667pt;}
.x42_c00034{left:327.333333pt;}
.x1e_c00034{left:328.533333pt;}
.x3d_c00034{left:331.466667pt;}
.x24_c00034{left:333.200000pt;}
.x29_c00034{left:335.466667pt;}
.xa8_c00034{left:337.333333pt;}
.x64_c00034{left:338.266667pt;}
.x98_c00034{left:339.333333pt;}
.x15_c00034{left:341.066667pt;}
.x3_c00034{left:342.000000pt;}
.x30_c00034{left:343.466667pt;}
.x6e_c00034{left:345.200000pt;}
.x95_c00034{left:351.466667pt;}
.x34_c00034{left:360.533333pt;}
.x134_c00034{left:371.066667pt;}
.x122_c00034{left:372.400000pt;}
.xff_c00034{left:373.466667pt;}
.xd9_c00034{left:374.666667pt;}
.xca_c00034{left:376.000000pt;}
.xad_c00034{left:377.333333pt;}
.xdf_c00034{left:384.533333pt;}
.xda_c00034{left:386.533333pt;}
.x12d_c00034{left:387.466667pt;}
.xeb_c00034{left:388.933333pt;}
.xed_c00034{left:390.666667pt;}
.x131_c00034{left:391.866667pt;}
.x135_c00034{left:396.666667pt;}
.x118_c00034{left:397.600000pt;}
.xc3_c00034{left:399.733333pt;}
.xae_c00034{left:400.666667pt;}
.x12e_c00034{left:402.800000pt;}
.x136_c00034{left:403.733333pt;}
.xb4_c00034{left:406.400000pt;}
.xcb_c00034{left:408.266667pt;}
.x142_c00034{left:409.200000pt;}
.xbc_c00034{left:410.266667pt;}
.xc4_c00034{left:411.600000pt;}
.xee_c00034{left:414.000000pt;}
.x101_c00034{left:416.400000pt;}
.x143_c00034{left:417.466667pt;}
.x4_c00034{left:418.533333pt;}
.x137_c00034{left:419.733333pt;}
.xe0_c00034{left:421.600000pt;}
.xec_c00034{left:423.200000pt;}
.xf4_c00034{left:424.266667pt;}
.xb5_c00034{left:425.866667pt;}
.xfc_c00034{left:427.466667pt;}
.xcf_c00034{left:428.933333pt;}
.xbd_c00034{left:430.133333pt;}
.x10f_c00034{left:431.333333pt;}
.x102_c00034{left:432.666667pt;}
.xdb_c00034{left:434.266667pt;}
.x105_c00034{left:437.333333pt;}
.x5_c00034{left:439.066667pt;}
.xe6_c00034{left:445.733333pt;}
.x107_c00034{left:449.200000pt;}
.x12c_c00034{left:450.666667pt;}
.xc5_c00034{left:451.600000pt;}
.x10c_c00034{left:453.200000pt;}
.x128_c00034{left:456.266667pt;}
.x103_c00034{left:457.333333pt;}
.x119_c00034{left:460.000000pt;}
.xd0_c00034{left:461.600000pt;}
.xaf_c00034{left:462.800000pt;}
.xe1_c00034{left:464.800000pt;}
.x12f_c00034{left:466.133333pt;}
.x10a_c00034{left:467.200000pt;}
.xb6_c00034{left:468.133333pt;}
.x113_c00034{left:469.066667pt;}
.xfa_c00034{left:470.266667pt;}
.x11a_c00034{left:472.533333pt;}
.xef_c00034{left:474.133333pt;}
.xd5_c00034{left:478.666667pt;}
.x11f_c00034{left:479.866667pt;}
.xf0_c00034{left:482.400000pt;}
.x13a_c00034{left:483.600000pt;}
.xcc_c00034{left:484.800000pt;}
.xb7_c00034{left:486.000000pt;}
.xdc_c00034{left:487.333333pt;}
.xb0_c00034{left:488.666667pt;}
.x141_c00034{left:491.466667pt;}
.x11b_c00034{left:492.666667pt;}
.xcd_c00034{left:494.133333pt;}
.x11d_c00034{left:495.333333pt;}
.xbe_c00034{left:496.400000pt;}
.xf1_c00034{left:500.666667pt;}
.x108_c00034{left:503.200000pt;}
.x120_c00034{left:505.200000pt;}
.x124_c00034{left:507.200000pt;}
.xb1_c00034{left:508.133333pt;}
.xf5_c00034{left:509.333333pt;}
.x110_c00034{left:510.266667pt;}
.xce_c00034{left:512.000000pt;}
.x12b_c00034{left:517.066667pt;}
.xd6_c00034{left:518.000000pt;}
.xe7_c00034{left:521.333333pt;}
.x114_c00034{left:522.800000pt;}
.xb8_c00034{left:526.666667pt;}
.x13b_c00034{left:527.733333pt;}
.x132_c00034{left:529.466667pt;}
.xe2_c00034{left:530.400000pt;}
.xfd_c00034{left:532.533333pt;}
.x116_c00034{left:535.866667pt;}
.xdd_c00034{left:537.200000pt;}
.x138_c00034{left:538.133333pt;}
.x10e_c00034{left:540.400000pt;}
.xbf_c00034{left:541.866667pt;}
.xc6_c00034{left:544.666667pt;}
.xd7_c00034{left:546.800000pt;}
.x11e_c00034{left:547.866667pt;}
.x13f_c00034{left:549.200000pt;}
.x129_c00034{left:550.400000pt;}
.xf2_c00034{left:553.733333pt;}
.xd1_c00034{left:556.400000pt;}
.x111_c00034{left:558.666667pt;}
.x130_c00034{left:559.600000pt;}
.x121_c00034{left:561.200000pt;}
.xc7_c00034{left:565.200000pt;}
.xf6_c00034{left:566.400000pt;}
.xfb_c00034{left:569.733333pt;}
.xe3_c00034{left:572.000000pt;}
.xb2_c00034{left:574.666667pt;}
.x13c_c00034{left:575.733333pt;}
.xf7_c00034{left:576.933333pt;}
.xb9_c00034{left:578.533333pt;}
.x125_c00034{left:579.466667pt;}
.x140_c00034{left:581.200000pt;}
.x139_c00034{left:583.200000pt;}
.xc0_c00034{left:586.000000pt;}
.xd2_c00034{left:587.066667pt;}
.x10b_c00034{left:588.266667pt;}
.x13d_c00034{left:591.466667pt;}
.x104_c00034{left:593.200000pt;}
.xfe_c00034{left:594.266667pt;}
.xba_c00034{left:595.200000pt;}
.xe8_c00034{left:596.933333pt;}
.xf3_c00034{left:598.000000pt;}
.xe4_c00034{left:601.066667pt;}
.x11c_c00034{left:605.066667pt;}
.xf8_c00034{left:606.400000pt;}
.x109_c00034{left:609.866667pt;}
.x10d_c00034{left:610.933333pt;}
.x126_c00034{left:612.800000pt;}
.xc8_c00034{left:613.866667pt;}
.x12a_c00034{left:615.066667pt;}
.x13e_c00034{left:616.133333pt;}
.xc1_c00034{left:618.266667pt;}
.x117_c00034{left:621.600000pt;}
.x133_c00034{left:622.533333pt;}
.xde_c00034{left:623.600000pt;}
.xf9_c00034{left:624.933333pt;}
.xd3_c00034{left:626.800000pt;}
.x106_c00034{left:628.666667pt;}
.xd8_c00034{left:630.266667pt;}
.xe9_c00034{left:632.400000pt;}
.xbb_c00034{left:634.266667pt;}
.xb3_c00034{left:635.466667pt;}
.xc2_c00034{left:640.000000pt;}
.x127_c00034{left:640.933333pt;}
.xc9_c00034{left:643.333333pt;}
.xab_c00034{left:645.733333pt;}
.xd4_c00034{left:647.333333pt;}
.x100_c00034{left:652.666667pt;}
.x112_c00034{left:654.000000pt;}
.xe5_c00034{left:657.066667pt;}
.x115_c00034{left:658.533333pt;}
.xac_c00034{left:660.533333pt;}
.x123_c00034{left:668.533333pt;}
.xea_c00034{left:678.133333pt;}
}





/* 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_c00035 {
    display:none;
  }
  .loading-indicator_c00035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00035 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_c00035 { 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_c00035" -> "#page-container .classname_c00035")
 */
.pf_c00035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00035 { /* 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_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00035 { /* 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_c00035 { /* 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_c00035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00035 {overflow:visible;}
  }
}
.c_c00035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00035 { /* 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_c00035:after { /* webkit #35443 */
  content: '';
}
.t_c00035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00035 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 */
}
.__c00035 { /* 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_c00035 { /* info for Javascript */
  display:none;
}
.l_c00035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00035: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_c00035 {
    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_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00035.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_c00035 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00035;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.000000;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;}
.mf9_c00035{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m116_c00035{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00035{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m58_c00035{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00035{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m115_c00035{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.maf_c00035{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m117_c00035{transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);}
.m96_c00035{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00035{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me_c00035{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m13_c00035{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m44_c00035{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00035{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00035{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00035{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00035{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00035{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mad_c00035{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00035{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00035{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m118_c00035{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00035{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m21_c00035{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m42_c00035{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00035{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00035{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00035{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mba_c00035{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m35_c00035{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00035{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00035{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00035{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00035{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00035{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00035{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00035{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00035{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00035{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00035{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00035{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00035{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m45_c00035{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00035{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m75_c00035{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb_c00035{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m92_c00035{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m25_c00035{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m59_c00035{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00035{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m65_c00035{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m31_c00035{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md1_c00035{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m85_c00035{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00035{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00035{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00035{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m49_c00035{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m93_c00035{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md_c00035{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00035{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m46_c00035{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00035{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m57_c00035{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m68_c00035{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00035{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m61_c00035{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me3_c00035{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m109_c00035{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00035{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m7_c00035{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00035{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00035{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00035{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00035{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mae_c00035{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf_c00035{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md2_c00035{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m105_c00035{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m53_c00035{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00035{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mce_c00035{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc_c00035{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m110_c00035{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m4_c00035{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me5_c00035{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m27_c00035{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00035{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m48_c00035{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m12_c00035{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00035{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m20_c00035{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m15_c00035{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00035{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00035{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00035{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00035{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m103_c00035{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m22_c00035{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00035{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m94_c00035{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00035{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m56_c00035{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00035{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m64_c00035{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m33_c00035{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mee_c00035{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m101_c00035{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m51_c00035{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mab_c00035{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m80_c00035{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m30_c00035{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.maa_c00035{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m95_c00035{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m97_c00035{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00035{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m3_c00035{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m98_c00035{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m43_c00035{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5_c00035{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00035{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00035{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m90_c00035{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00035{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00035{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00035{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8_c00035{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00035{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00035{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m73_c00035{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma_c00035{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m83_c00035{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me6_c00035{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m36_c00035{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m108_c00035{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00035{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me4_c00035{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m40_c00035{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m66_c00035{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md5_c00035{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.me8_c00035{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m89_c00035{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m81_c00035{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00035{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00035{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00035{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m54_c00035{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00035{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00035{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00035{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00035{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00035{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me7_c00035{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m39_c00035{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00035{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m86_c00035{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m29_c00035{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m17_c00035{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00035{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00035{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m28_c00035{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00035{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m88_c00035{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m34_c00035{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mea_c00035{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00035{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m14_c00035{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6_c00035{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m63_c00035{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me9_c00035{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00035{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00035{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00035{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00035{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md6_c00035{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00035{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m18_c00035{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m19_c00035{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m60_c00035{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00035{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m69_c00035{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m78_c00035{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00035{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00035{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00035{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m106_c00035{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00035{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m38_c00035{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00035{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m32_c00035{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m82_c00035{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md8_c00035{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m55_c00035{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m16_c00035{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m23_c00035{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mff_c00035{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.meb_c00035{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m10_c00035{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m11_c00035{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m41_c00035{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m100_c00035{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mda_c00035{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me0_c00035{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00035{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mec_c00035{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m62_c00035{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m37_c00035{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me1_c00035{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00035{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m74_c00035{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m87_c00035{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00035{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m0_c00035{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m111_c00035{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m102_c00035{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00035{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00035{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00035{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00035{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m67_c00035{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00035{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00035{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00035{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00035{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m24_c00035{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00035{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md3_c00035{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m76_c00035{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00035{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);}
.m2c_c00035{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00035{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m84_c00035{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00035{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m52_c00035{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m26_c00035{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00035{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m47_c00035{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00035{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m107_c00035{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00035{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m104_c00035{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00035{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00035{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.md9_c00035{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00035{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00035{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m79_c00035{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mef_c00035{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00035{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m50_c00035{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m77_c00035{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m71_c00035{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mde_c00035{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m91_c00035{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00035{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00035{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00035{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m113_c00035{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00035{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00035{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00035{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md7_c00035{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00035{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mca_c00035{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00035{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md4_c00035{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00035{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m99_c00035{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.med_c00035{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00035{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m114_c00035{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m72_c00035{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.me2_c00035{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00035{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00035{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.md0_c00035{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m70_c00035{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m1_c00035{transform:matrix(0.489250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489250,0.000000,0.000000,0.250000,0,0);}
.m2_c00035{transform:matrix(0.824000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.824000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.824000,0.000000,0.000000,0.250000,0,0);}
.mac_c00035{transform:matrix(15.737250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(15.737250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(15.737250,0.000000,0.000000,0.250000,0,0);}
.m112_c00035{transform:matrix(22.512000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(22.512000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(22.512000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls0_c00035{letter-spacing:0.000000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{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__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00035{word-spacing:-5.617834px;}
.ws1_c00035{word-spacing:-3.756333px;}
.ws5_c00035{word-spacing:-0.146132px;}
.ws8_c00035{word-spacing:0.000000px;}
.ws6_c00035{word-spacing:8.333333px;}
.ws3_c00035{word-spacing:9.736842px;}
.ws7_c00035{word-spacing:12.666667px;}
.ws0_c00035{word-spacing:15.671159px;}
.ws2_c00035{word-spacing:18.333333px;}
.fc0_c00035{color:transparent;}
.fs1_c00035{font-size:30.000000px;}
.fs5_c00035{font-size:42.000000px;}
.fs4_c00035{font-size:54.000000px;}
.fs3_c00035{font-size:60.000000px;}
.fs2_c00035{font-size:66.000000px;}
.fs6_c00035{font-size:72.000000px;}
.fs0_c00035{font-size:78.000000px;}
.y0_c00035{bottom:0.000000px;}
.y62_c00035{bottom:209.100000px;}
.y32_c00035{bottom:216.750000px;}
.y61_c00035{bottom:233.700000px;}
.y31_c00035{bottom:240.150000px;}
.y66_c00035{bottom:264.300000px;}
.y60_c00035{bottom:265.050000px;}
.y30_c00035{bottom:268.500000px;}
.y5f_c00035{bottom:283.050000px;}
.y2f_c00035{bottom:285.150000px;}
.y65_c00035{bottom:298.050000px;}
.y5e_c00035{bottom:301.050000px;}
.y2e_c00035{bottom:302.850000px;}
.y64_c00035{bottom:310.650000px;}
.y5d_c00035{bottom:318.300000px;}
.y2d_c00035{bottom:320.550000px;}
.y5c_c00035{bottom:335.850000px;}
.y2c_c00035{bottom:338.550000px;}
.y2b_c00035{bottom:356.250000px;}
.y5b_c00035{bottom:358.500000px;}
.y2a_c00035{bottom:373.950000px;}
.y5a_c00035{bottom:376.500000px;}
.y29_c00035{bottom:391.650000px;}
.y59_c00035{bottom:394.500000px;}
.y58_c00035{bottom:412.200000px;}
.y28_c00035{bottom:417.750000px;}
.y57_c00035{bottom:430.200000px;}
.y27_c00035{bottom:436.050000px;}
.y56_c00035{bottom:447.900000px;}
.y26_c00035{bottom:454.050000px;}
.y25_c00035{bottom:471.300000px;}
.y55_c00035{bottom:474.750000px;}
.y54_c00035{bottom:492.750000px;}
.y24_c00035{bottom:493.500000px;}
.y63_c00035{bottom:509.400000px;}
.y53_c00035{bottom:510.750000px;}
.y23_c00035{bottom:511.500000px;}
.y22_c00035{bottom:528.750000px;}
.y21_c00035{bottom:546.450000px;}
.y52_c00035{bottom:564.450000px;}
.y20_c00035{bottom:573.000000px;}
.y51_c00035{bottom:582.150000px;}
.y1f_c00035{bottom:590.700000px;}
.y50_c00035{bottom:603.000000px;}
.y1e_c00035{bottom:608.400000px;}
.y1d_c00035{bottom:626.100000px;}
.y4f_c00035{bottom:626.400000px;}
.y4e_c00035{bottom:644.100000px;}
.y1c_c00035{bottom:652.650000px;}
.y4d_c00035{bottom:661.800000px;}
.y1b_c00035{bottom:670.950000px;}
.y4c_c00035{bottom:679.500000px;}
.y1a_c00035{bottom:688.650000px;}
.y4b_c00035{bottom:697.500000px;}
.y19_c00035{bottom:706.350000px;}
.y4a_c00035{bottom:715.500000px;}
.y18_c00035{bottom:728.550000px;}
.y49_c00035{bottom:733.500000px;}
.y17_c00035{bottom:746.250000px;}
.y48_c00035{bottom:751.200000px;}
.y16_c00035{bottom:763.950000px;}
.y47_c00035{bottom:768.900000px;}
.y15_c00035{bottom:781.950000px;}
.y46_c00035{bottom:786.600000px;}
.y14_c00035{bottom:798.900000px;}
.y45_c00035{bottom:804.600000px;}
.y13_c00035{bottom:820.650000px;}
.y44_c00035{bottom:822.300000px;}
.y12_c00035{bottom:838.650000px;}
.y43_c00035{bottom:840.300000px;}
.y11_c00035{bottom:856.350000px;}
.y42_c00035{bottom:857.550000px;}
.y10_c00035{bottom:874.050000px;}
.y41_c00035{bottom:880.050000px;}
.yf_c00035{bottom:891.300000px;}
.y40_c00035{bottom:897.750000px;}
.ye_c00035{bottom:909.000000px;}
.y3f_c00035{bottom:915.450000px;}
.yd_c00035{bottom:926.250000px;}
.y3e_c00035{bottom:933.150000px;}
.yc_c00035{bottom:948.750000px;}
.y3d_c00035{bottom:955.050000px;}
.yb_c00035{bottom:966.750000px;}
.y3c_c00035{bottom:973.050000px;}
.ya_c00035{bottom:983.700000px;}
.y3b_c00035{bottom:990.750000px;}
.y9_c00035{bottom:1001.400000px;}
.y3a_c00035{bottom:1008.450000px;}
.y8_c00035{bottom:1019.100000px;}
.y39_c00035{bottom:1026.450000px;}
.y7_c00035{bottom:1037.100000px;}
.y38_c00035{bottom:1044.150000px;}
.y6_c00035{bottom:1054.050000px;}
.y37_c00035{bottom:1061.850000px;}
.y5_c00035{bottom:1071.750000px;}
.y36_c00035{bottom:1079.550000px;}
.y4_c00035{bottom:1093.650000px;}
.y35_c00035{bottom:1097.250000px;}
.y3_c00035{bottom:1115.700000px;}
.y34_c00035{bottom:1119.300000px;}
.y2_c00035{bottom:1133.700000px;}
.y33_c00035{bottom:1137.600000px;}
.y1_c00035{bottom:1163.850000px;}
.h3_c00035{height:30.000000px;}
.h7_c00035{height:42.000000px;}
.h6_c00035{height:54.000000px;}
.h5_c00035{height:60.000000px;}
.h4_c00035{height:66.000000px;}
.h8_c00035{height:72.000000px;}
.h2_c00035{height:78.000000px;}
.h0_c00035{height:1276.199982px;}
.h1_c00035{height:1276.500000px;}
.w0_c00035{width:948.600036px;}
.w1_c00035{width:948.750000px;}
.x0_c00035{left:0.000000px;}
.x3_c00035{left:96.450000px;}
.x4f_c00035{left:166.500000px;}
.x56_c00035{left:168.000000px;}
.x39_c00035{left:169.800000px;}
.x4_c00035{left:171.000000px;}
.x1_c00035{left:172.800000px;}
.xa9_c00035{left:175.350000px;}
.xa6_c00035{left:181.500000px;}
.xaa_c00035{left:186.150000px;}
.x5d_c00035{left:187.500000px;}
.x96_c00035{left:188.700000px;}
.xa_c00035{left:190.050000px;}
.x10_c00035{left:191.100000px;}
.x45_c00035{left:192.600000px;}
.x98_c00035{left:195.300000px;}
.xa7_c00035{left:202.350000px;}
.x4a_c00035{left:204.000000px;}
.x84_c00035{left:206.850000px;}
.x2d_c00035{left:207.900000px;}
.x3a_c00035{left:209.400000px;}
.x32_c00035{left:213.000000px;}
.x11_c00035{left:214.500000px;}
.x87_c00035{left:215.550000px;}
.x5e_c00035{left:216.600000px;}
.xb_c00035{left:218.100000px;}
.x27_c00035{left:220.050000px;}
.x18_c00035{left:222.000000px;}
.x6e_c00035{left:223.050000px;}
.xa2_c00035{left:225.000000px;}
.x5_c00035{left:226.500000px;}
.x3b_c00035{left:228.900000px;}
.x57_c00035{left:229.950000px;}
.x74_c00035{left:231.000000px;}
.xa3_c00035{left:232.950000px;}
.x1c_c00035{left:234.750000px;}
.x81_c00035{left:236.250000px;}
.x58_c00035{left:241.050000px;}
.x7e_c00035{left:242.550000px;}
.x20_c00035{left:243.750000px;}
.x33_c00035{left:245.100000px;}
.x6_c00035{left:247.350000px;}
.x28_c00035{left:248.550000px;}
.x99_c00035{left:249.600000px;}
.x7a_c00035{left:251.400000px;}
.x3c_c00035{left:254.400000px;}
.x50_c00035{left:255.450000px;}
.x12_c00035{left:257.700000px;}
.x59_c00035{left:259.800000px;}
.x82_c00035{left:261.150000px;}
.x21_c00035{left:262.800000px;}
.x2e_c00035{left:264.450000px;}
.x51_c00035{left:268.050000px;}
.xa0_c00035{left:269.700000px;}
.x6b_c00035{left:270.900000px;}
.x7b_c00035{left:272.250000px;}
.x4b_c00035{left:273.450000px;}
.x66_c00035{left:274.800000px;}
.x7_c00035{left:276.150000px;}
.xc_c00035{left:277.500000px;}
.x46_c00035{left:279.750000px;}
.x13_c00035{left:280.800000px;}
.x40_c00035{left:283.350000px;}
.x52_c00035{left:285.000000px;}
.x4c_c00035{left:287.100000px;}
.x7f_c00035{left:288.300000px;}
.x5f_c00035{left:290.100000px;}
.x3d_c00035{left:294.600000px;}
.x6f_c00035{left:295.950000px;}
.x63_c00035{left:298.350000px;}
.x85_c00035{left:300.150000px;}
.x77_c00035{left:301.200000px;}
.x94_c00035{left:305.850000px;}
.x34_c00035{left:307.050000px;}
.x53_c00035{left:308.400000px;}
.xd_c00035{left:310.950000px;}
.x29_c00035{left:312.300000px;}
.x70_c00035{left:315.750000px;}
.x35_c00035{left:317.100000px;}
.x95_c00035{left:319.950000px;}
.x5a_c00035{left:322.800000px;}
.x22_c00035{left:324.300000px;}
.x86_c00035{left:326.400000px;}
.x9a_c00035{left:327.750000px;}
.x2a_c00035{left:329.250000px;}
.x83_c00035{left:330.300000px;}
.x7c_c00035{left:331.650000px;}
.x2f_c00035{left:332.850000px;}
.x88_c00035{left:335.400000px;}
.x1d_c00035{left:337.050000px;}
.x41_c00035{left:338.850000px;}
.x64_c00035{left:340.800000px;}
.x97_c00035{left:343.200000px;}
.x23_c00035{left:344.400000px;}
.x30_c00035{left:346.200000px;}
.x60_c00035{left:347.700000px;}
.x80_c00035{left:349.500000px;}
.xa1_c00035{left:350.700000px;}
.x89_c00035{left:351.900000px;}
.xab_c00035{left:353.550000px;}
.x67_c00035{left:355.050000px;}
.xa4_c00035{left:356.100000px;}
.x8_c00035{left:357.150000px;}
.x42_c00035{left:358.950000px;}
.x71_c00035{left:361.050000px;}
.x14_c00035{left:366.450000px;}
.x9d_c00035{left:367.500000px;}
.x19_c00035{left:369.150000px;}
.xa8_c00035{left:370.950000px;}
.xe_c00035{left:373.200000px;}
.x43_c00035{left:374.400000px;}
.x15_c00035{left:375.750000px;}
.x8a_c00035{left:376.800000px;}
.x72_c00035{left:379.050000px;}
.x68_c00035{left:382.350000px;}
.x8f_c00035{left:383.550000px;}
.x3e_c00035{left:384.600000px;}
.x9e_c00035{left:386.400000px;}
.x61_c00035{left:387.600000px;}
.x2b_c00035{left:389.400000px;}
.x1a_c00035{left:391.050000px;}
.x36_c00035{left:393.750000px;}
.x47_c00035{left:395.250000px;}
.x6c_c00035{left:396.450000px;}
.x24_c00035{left:398.700000px;}
.x4d_c00035{left:401.250000px;}
.x16_c00035{left:402.450000px;}
.x8c_c00035{left:403.500000px;}
.x65_c00035{left:405.600000px;}
.x9b_c00035{left:406.650000px;}
.x62_c00035{left:408.150000px;}
.x37_c00035{left:409.650000px;}
.x2_c00035{left:413.250000px;}
.x78_c00035{left:415.800000px;}
.x1e_c00035{left:419.100000px;}
.x31_c00035{left:423.300000px;}
.x7d_c00035{left:424.800000px;}
.x8d_c00035{left:425.850000px;}
.x25_c00035{left:427.800000px;}
.x2c_c00035{left:430.050000px;}
.xf_c00035{left:431.550000px;}
.x3f_c00035{left:432.750000px;}
.x91_c00035{left:434.700000px;}
.x17_c00035{left:436.950000px;}
.x9c_c00035{left:438.750000px;}
.x44_c00035{left:441.750000px;}
.x79_c00035{left:443.550000px;}
.x6d_c00035{left:445.050000px;}
.x48_c00035{left:446.700000px;}
.x5b_c00035{left:448.800000px;}
.x69_c00035{left:451.050000px;}
.x92_c00035{left:452.400000px;}
.x8b_c00035{left:454.500000px;}
.x9f_c00035{left:456.600000px;}
.x1b_c00035{left:458.700000px;}
.x5c_c00035{left:460.650000px;}
.x73_c00035{left:464.700000px;}
.x9_c00035{left:466.650000px;}
.x54_c00035{left:468.600000px;}
.x93_c00035{left:472.950000px;}
.x49_c00035{left:474.000000px;}
.x75_c00035{left:476.100000px;}
.x90_c00035{left:477.900000px;}
.x26_c00035{left:478.950000px;}
.x1f_c00035{left:480.300000px;}
.x6a_c00035{left:481.650000px;}
.xa5_c00035{left:483.450000px;}
.x55_c00035{left:486.300000px;}
.x4e_c00035{left:488.400000px;}
.x76_c00035{left:489.750000px;}
.x8e_c00035{left:494.850000px;}
.x38_c00035{left:499.950000px;}
.x128_c00035{left:516.600000px;}
.x13b_c00035{left:519.150000px;}
.x11a_c00035{left:522.600000px;}
.x114_c00035{left:524.100000px;}
.xe6_c00035{left:525.450000px;}
.xac_c00035{left:526.650000px;}
.x14b_c00035{left:541.800000px;}
.xd8_c00035{left:542.850000px;}
.xb4_c00035{left:543.900000px;}
.x11d_c00035{left:544.950000px;}
.x148_c00035{left:548.400000px;}
.xc5_c00035{left:549.750000px;}
.x100_c00035{left:552.750000px;}
.x12b_c00035{left:555.150000px;}
.xe7_c00035{left:557.550000px;}
.xeb_c00035{left:560.550000px;}
.xbf_c00035{left:562.200000px;}
.xf3_c00035{left:563.700000px;}
.xb5_c00035{left:564.750000px;}
.x121_c00035{left:566.550000px;}
.xc6_c00035{left:569.250000px;}
.x11e_c00035{left:571.950000px;}
.x10e_c00035{left:573.450000px;}
.xad_c00035{left:576.000000px;}
.xcb_c00035{left:577.500000px;}
.xd2_c00035{left:579.600000px;}
.xe1_c00035{left:581.850000px;}
.x134_c00035{left:583.950000px;}
.xf4_c00035{left:586.350000px;}
.x122_c00035{left:589.650000px;}
.xdd_c00035{left:591.300000px;}
.x135_c00035{left:592.800000px;}
.x101_c00035{left:594.150000px;}
.xf5_c00035{left:597.150000px;}
.xe8_c00035{left:598.950000px;}
.x139_c00035{left:602.550000px;}
.xc0_c00035{left:603.600000px;}
.xd9_c00035{left:605.100000px;}
.xb3_c00035{left:607.500000px;}
.xec_c00035{left:608.700000px;}
.x149_c00035{left:610.350000px;}
.x11b_c00035{left:611.550000px;}
.x10b_c00035{left:612.750000px;}
.xb6_c00035{left:614.850000px;}
.xe2_c00035{left:616.350000px;}
.x111_c00035{left:617.550000px;}
.x125_c00035{left:619.500000px;}
.xe9_c00035{left:621.600000px;}
.x13e_c00035{left:623.100000px;}
.x144_c00035{left:625.650000px;}
.xc1_c00035{left:626.700000px;}
.x106_c00035{left:629.100000px;}
.x141_c00035{left:631.050000px;}
.x137_c00035{left:632.100000px;}
.xe3_c00035{left:633.600000px;}
.x117_c00035{left:636.300000px;}
.xea_c00035{left:637.500000px;}
.xde_c00035{left:640.200000px;}
.x10f_c00035{left:641.700000px;}
.xae_c00035{left:644.100000px;}
.x126_c00035{left:646.200000px;}
.xd3_c00035{left:648.000000px;}
.x107_c00035{left:649.200000px;}
.x132_c00035{left:650.250000px;}
.x13f_c00035{left:652.200000px;}
.x123_c00035{left:654.150000px;}
.xf6_c00035{left:656.550000px;}
.xaf_c00035{left:657.750000px;}
.x145_c00035{left:658.800000px;}
.xb7_c00035{left:659.850000px;}
.xed_c00035{left:661.950000px;}
.xd4_c00035{left:665.700000px;}
.x12c_c00035{left:666.750000px;}
.xcc_c00035{left:670.050000px;}
.x129_c00035{left:672.900000px;}
.x136_c00035{left:675.000000px;}
.xf8_c00035{left:676.200000px;}
.x12d_c00035{left:677.850000px;}
.x140_c00035{left:678.900000px;}
.xda_c00035{left:680.700000px;}
.xfb_c00035{left:682.650000px;}
.xe4_c00035{left:684.300000px;}
.xd5_c00035{left:686.550000px;}
.x142_c00035{left:688.950000px;}
.x108_c00035{left:691.650000px;}
.xdf_c00035{left:692.700000px;}
.xf2_c00035{left:695.850000px;}
.x115_c00035{left:696.900000px;}
.xcd_c00035{left:699.600000px;}
.xb8_c00035{left:703.050000px;}
.xee_c00035{left:704.100000px;}
.xe0_c00035{left:706.050000px;}
.x14a_c00035{left:707.250000px;}
.x12a_c00035{left:709.650000px;}
.xdb_c00035{left:711.600000px;}
.x14c_c00035{left:712.800000px;}
.x102_c00035{left:715.200000px;}
.x127_c00035{left:716.400000px;}
.xc7_c00035{left:718.350000px;}
.xce_c00035{left:721.500000px;}
.x12f_c00035{left:725.550000px;}
.x109_c00035{left:727.350000px;}
.x110_c00035{left:729.450000px;}
.x112_c00035{left:730.500000px;}
.xb9_c00035{left:731.850000px;}
.xc2_c00035{left:734.400000px;}
.x10c_c00035{left:736.200000px;}
.x138_c00035{left:737.250000px;}
.x11f_c00035{left:740.850000px;}
.xba_c00035{left:746.250000px;}
.xb0_c00035{left:747.750000px;}
.x12e_c00035{left:749.100000px;}
.xc8_c00035{left:750.450000px;}
.xef_c00035{left:756.000000px;}
.xf9_c00035{left:757.200000px;}
.x103_c00035{left:758.700000px;}
.xf7_c00035{left:762.000000px;}
.x147_c00035{left:763.050000px;}
.x143_c00035{left:765.300000px;}
.xd6_c00035{left:768.300000px;}
.xc3_c00035{left:771.150000px;}
.x130_c00035{left:772.650000px;}
.xfc_c00035{left:775.200000px;}
.xbb_c00035{left:777.150000px;}
.x13c_c00035{left:781.500000px;}
.xc9_c00035{left:784.950000px;}
.x13a_c00035{left:786.150000px;}
.xe5_c00035{left:787.500000px;}
.x131_c00035{left:788.550000px;}
.xcf_c00035{left:789.900000px;}
.x10d_c00035{left:794.850000px;}
.xbc_c00035{left:795.900000px;}
.xfa_c00035{left:798.300000px;}
.x146_c00035{left:799.950000px;}
.xf0_c00035{left:801.000000px;}
.xfd_c00035{left:802.200000px;}
.xb1_c00035{left:804.300000px;}
.x10a_c00035{left:806.550000px;}
.x116_c00035{left:808.050000px;}
.x118_c00035{left:809.100000px;}
.x133_c00035{left:810.150000px;}
.xbd_c00035{left:812.100000px;}
.x104_c00035{left:813.750000px;}
.xdc_c00035{left:815.700000px;}
.xd0_c00035{left:817.950000px;}
.xfe_c00035{left:819.900000px;}
.xf1_c00035{left:821.100000px;}
.x105_c00035{left:822.750000px;}
.xc4_c00035{left:825.150000px;}
.x119_c00035{left:826.800000px;}
.xb2_c00035{left:828.450000px;}
.xff_c00035{left:830.700000px;}
.x120_c00035{left:833.700000px;}
.x11c_c00035{left:835.200000px;}
.x13d_c00035{left:838.800000px;}
.xd1_c00035{left:840.300000px;}
.xca_c00035{left:846.450000px;}
.xd7_c00035{left:850.650000px;}
.x124_c00035{left:855.300000px;}
.x113_c00035{left:856.800000px;}
.xbe_c00035{left:859.200000px;}
.x14d_c00035{left:932.400000px;}
.x14e_c00035{left:933.450000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ws4_c00035{word-spacing:-4.993631pt;}
.ws1_c00035{word-spacing:-3.338963pt;}
.ws5_c00035{word-spacing:-0.129895pt;}
.ws8_c00035{word-spacing:0.000000pt;}
.ws6_c00035{word-spacing:7.407407pt;}
.ws3_c00035{word-spacing:8.654971pt;}
.ws7_c00035{word-spacing:11.259259pt;}
.ws0_c00035{word-spacing:13.929919pt;}
.ws2_c00035{word-spacing:16.296296pt;}
.fs1_c00035{font-size:26.666667pt;}
.fs5_c00035{font-size:37.333333pt;}
.fs4_c00035{font-size:48.000000pt;}
.fs3_c00035{font-size:53.333333pt;}
.fs2_c00035{font-size:58.666667pt;}
.fs6_c00035{font-size:64.000000pt;}
.fs0_c00035{font-size:69.333333pt;}
.y0_c00035{bottom:0.000000pt;}
.y62_c00035{bottom:185.866667pt;}
.y32_c00035{bottom:192.666667pt;}
.y61_c00035{bottom:207.733333pt;}
.y31_c00035{bottom:213.466667pt;}
.y66_c00035{bottom:234.933333pt;}
.y60_c00035{bottom:235.600000pt;}
.y30_c00035{bottom:238.666667pt;}
.y5f_c00035{bottom:251.600000pt;}
.y2f_c00035{bottom:253.466667pt;}
.y65_c00035{bottom:264.933333pt;}
.y5e_c00035{bottom:267.600000pt;}
.y2e_c00035{bottom:269.200000pt;}
.y64_c00035{bottom:276.133333pt;}
.y5d_c00035{bottom:282.933333pt;}
.y2d_c00035{bottom:284.933333pt;}
.y5c_c00035{bottom:298.533333pt;}
.y2c_c00035{bottom:300.933333pt;}
.y2b_c00035{bottom:316.666667pt;}
.y5b_c00035{bottom:318.666667pt;}
.y2a_c00035{bottom:332.400000pt;}
.y5a_c00035{bottom:334.666667pt;}
.y29_c00035{bottom:348.133333pt;}
.y59_c00035{bottom:350.666667pt;}
.y58_c00035{bottom:366.400000pt;}
.y28_c00035{bottom:371.333333pt;}
.y57_c00035{bottom:382.400000pt;}
.y27_c00035{bottom:387.600000pt;}
.y56_c00035{bottom:398.133333pt;}
.y26_c00035{bottom:403.600000pt;}
.y25_c00035{bottom:418.933333pt;}
.y55_c00035{bottom:422.000000pt;}
.y54_c00035{bottom:438.000000pt;}
.y24_c00035{bottom:438.666667pt;}
.y63_c00035{bottom:452.800000pt;}
.y53_c00035{bottom:454.000000pt;}
.y23_c00035{bottom:454.666667pt;}
.y22_c00035{bottom:470.000000pt;}
.y21_c00035{bottom:485.733333pt;}
.y52_c00035{bottom:501.733333pt;}
.y20_c00035{bottom:509.333333pt;}
.y51_c00035{bottom:517.466667pt;}
.y1f_c00035{bottom:525.066667pt;}
.y50_c00035{bottom:536.000000pt;}
.y1e_c00035{bottom:540.800000pt;}
.y1d_c00035{bottom:556.533333pt;}
.y4f_c00035{bottom:556.800000pt;}
.y4e_c00035{bottom:572.533333pt;}
.y1c_c00035{bottom:580.133333pt;}
.y4d_c00035{bottom:588.266667pt;}
.y1b_c00035{bottom:596.400000pt;}
.y4c_c00035{bottom:604.000000pt;}
.y1a_c00035{bottom:612.133333pt;}
.y4b_c00035{bottom:620.000000pt;}
.y19_c00035{bottom:627.866667pt;}
.y4a_c00035{bottom:636.000000pt;}
.y18_c00035{bottom:647.600000pt;}
.y49_c00035{bottom:652.000000pt;}
.y17_c00035{bottom:663.333333pt;}
.y48_c00035{bottom:667.733333pt;}
.y16_c00035{bottom:679.066667pt;}
.y47_c00035{bottom:683.466667pt;}
.y15_c00035{bottom:695.066667pt;}
.y46_c00035{bottom:699.200000pt;}
.y14_c00035{bottom:710.133333pt;}
.y45_c00035{bottom:715.200000pt;}
.y13_c00035{bottom:729.466667pt;}
.y44_c00035{bottom:730.933333pt;}
.y12_c00035{bottom:745.466667pt;}
.y43_c00035{bottom:746.933333pt;}
.y11_c00035{bottom:761.200000pt;}
.y42_c00035{bottom:762.266667pt;}
.y10_c00035{bottom:776.933333pt;}
.y41_c00035{bottom:782.266667pt;}
.yf_c00035{bottom:792.266667pt;}
.y40_c00035{bottom:798.000000pt;}
.ye_c00035{bottom:808.000000pt;}
.y3f_c00035{bottom:813.733333pt;}
.yd_c00035{bottom:823.333333pt;}
.y3e_c00035{bottom:829.466667pt;}
.yc_c00035{bottom:843.333333pt;}
.y3d_c00035{bottom:848.933333pt;}
.yb_c00035{bottom:859.333333pt;}
.y3c_c00035{bottom:864.933333pt;}
.ya_c00035{bottom:874.400000pt;}
.y3b_c00035{bottom:880.666667pt;}
.y9_c00035{bottom:890.133333pt;}
.y3a_c00035{bottom:896.400000pt;}
.y8_c00035{bottom:905.866667pt;}
.y39_c00035{bottom:912.400000pt;}
.y7_c00035{bottom:921.866667pt;}
.y38_c00035{bottom:928.133333pt;}
.y6_c00035{bottom:936.933333pt;}
.y37_c00035{bottom:943.866667pt;}
.y5_c00035{bottom:952.666667pt;}
.y36_c00035{bottom:959.600000pt;}
.y4_c00035{bottom:972.133333pt;}
.y35_c00035{bottom:975.333333pt;}
.y3_c00035{bottom:991.733333pt;}
.y34_c00035{bottom:994.933333pt;}
.y2_c00035{bottom:1007.733333pt;}
.y33_c00035{bottom:1011.200000pt;}
.y1_c00035{bottom:1034.533333pt;}
.h3_c00035{height:26.666667pt;}
.h7_c00035{height:37.333333pt;}
.h6_c00035{height:48.000000pt;}
.h5_c00035{height:53.333333pt;}
.h4_c00035{height:58.666667pt;}
.h8_c00035{height:64.000000pt;}
.h2_c00035{height:69.333333pt;}
.h0_c00035{height:1134.399984pt;}
.h1_c00035{height:1134.666667pt;}
.w0_c00035{width:843.200032pt;}
.w1_c00035{width:843.333333pt;}
.x0_c00035{left:0.000000pt;}
.x3_c00035{left:85.733333pt;}
.x4f_c00035{left:148.000000pt;}
.x56_c00035{left:149.333333pt;}
.x39_c00035{left:150.933333pt;}
.x4_c00035{left:152.000000pt;}
.x1_c00035{left:153.600000pt;}
.xa9_c00035{left:155.866667pt;}
.xa6_c00035{left:161.333333pt;}
.xaa_c00035{left:165.466667pt;}
.x5d_c00035{left:166.666667pt;}
.x96_c00035{left:167.733333pt;}
.xa_c00035{left:168.933333pt;}
.x10_c00035{left:169.866667pt;}
.x45_c00035{left:171.200000pt;}
.x98_c00035{left:173.600000pt;}
.xa7_c00035{left:179.866667pt;}
.x4a_c00035{left:181.333333pt;}
.x84_c00035{left:183.866667pt;}
.x2d_c00035{left:184.800000pt;}
.x3a_c00035{left:186.133333pt;}
.x32_c00035{left:189.333333pt;}
.x11_c00035{left:190.666667pt;}
.x87_c00035{left:191.600000pt;}
.x5e_c00035{left:192.533333pt;}
.xb_c00035{left:193.866667pt;}
.x27_c00035{left:195.600000pt;}
.x18_c00035{left:197.333333pt;}
.x6e_c00035{left:198.266667pt;}
.xa2_c00035{left:200.000000pt;}
.x5_c00035{left:201.333333pt;}
.x3b_c00035{left:203.466667pt;}
.x57_c00035{left:204.400000pt;}
.x74_c00035{left:205.333333pt;}
.xa3_c00035{left:207.066667pt;}
.x1c_c00035{left:208.666667pt;}
.x81_c00035{left:210.000000pt;}
.x58_c00035{left:214.266667pt;}
.x7e_c00035{left:215.600000pt;}
.x20_c00035{left:216.666667pt;}
.x33_c00035{left:217.866667pt;}
.x6_c00035{left:219.866667pt;}
.x28_c00035{left:220.933333pt;}
.x99_c00035{left:221.866667pt;}
.x7a_c00035{left:223.466667pt;}
.x3c_c00035{left:226.133333pt;}
.x50_c00035{left:227.066667pt;}
.x12_c00035{left:229.066667pt;}
.x59_c00035{left:230.933333pt;}
.x82_c00035{left:232.133333pt;}
.x21_c00035{left:233.600000pt;}
.x2e_c00035{left:235.066667pt;}
.x51_c00035{left:238.266667pt;}
.xa0_c00035{left:239.733333pt;}
.x6b_c00035{left:240.800000pt;}
.x7b_c00035{left:242.000000pt;}
.x4b_c00035{left:243.066667pt;}
.x66_c00035{left:244.266667pt;}
.x7_c00035{left:245.466667pt;}
.xc_c00035{left:246.666667pt;}
.x46_c00035{left:248.666667pt;}
.x13_c00035{left:249.600000pt;}
.x40_c00035{left:251.866667pt;}
.x52_c00035{left:253.333333pt;}
.x4c_c00035{left:255.200000pt;}
.x7f_c00035{left:256.266667pt;}
.x5f_c00035{left:257.866667pt;}
.x3d_c00035{left:261.866667pt;}
.x6f_c00035{left:263.066667pt;}
.x63_c00035{left:265.200000pt;}
.x85_c00035{left:266.800000pt;}
.x77_c00035{left:267.733333pt;}
.x94_c00035{left:271.866667pt;}
.x34_c00035{left:272.933333pt;}
.x53_c00035{left:274.133333pt;}
.xd_c00035{left:276.400000pt;}
.x29_c00035{left:277.600000pt;}
.x70_c00035{left:280.666667pt;}
.x35_c00035{left:281.866667pt;}
.x95_c00035{left:284.400000pt;}
.x5a_c00035{left:286.933333pt;}
.x22_c00035{left:288.266667pt;}
.x86_c00035{left:290.133333pt;}
.x9a_c00035{left:291.333333pt;}
.x2a_c00035{left:292.666667pt;}
.x83_c00035{left:293.600000pt;}
.x7c_c00035{left:294.800000pt;}
.x2f_c00035{left:295.866667pt;}
.x88_c00035{left:298.133333pt;}
.x1d_c00035{left:299.600000pt;}
.x41_c00035{left:301.200000pt;}
.x64_c00035{left:302.933333pt;}
.x97_c00035{left:305.066667pt;}
.x23_c00035{left:306.133333pt;}
.x30_c00035{left:307.733333pt;}
.x60_c00035{left:309.066667pt;}
.x80_c00035{left:310.666667pt;}
.xa1_c00035{left:311.733333pt;}
.x89_c00035{left:312.800000pt;}
.xab_c00035{left:314.266667pt;}
.x67_c00035{left:315.600000pt;}
.xa4_c00035{left:316.533333pt;}
.x8_c00035{left:317.466667pt;}
.x42_c00035{left:319.066667pt;}
.x71_c00035{left:320.933333pt;}
.x14_c00035{left:325.733333pt;}
.x9d_c00035{left:326.666667pt;}
.x19_c00035{left:328.133333pt;}
.xa8_c00035{left:329.733333pt;}
.xe_c00035{left:331.733333pt;}
.x43_c00035{left:332.800000pt;}
.x15_c00035{left:334.000000pt;}
.x8a_c00035{left:334.933333pt;}
.x72_c00035{left:336.933333pt;}
.x68_c00035{left:339.866667pt;}
.x8f_c00035{left:340.933333pt;}
.x3e_c00035{left:341.866667pt;}
.x9e_c00035{left:343.466667pt;}
.x61_c00035{left:344.533333pt;}
.x2b_c00035{left:346.133333pt;}
.x1a_c00035{left:347.600000pt;}
.x36_c00035{left:350.000000pt;}
.x47_c00035{left:351.333333pt;}
.x6c_c00035{left:352.400000pt;}
.x24_c00035{left:354.400000pt;}
.x4d_c00035{left:356.666667pt;}
.x16_c00035{left:357.733333pt;}
.x8c_c00035{left:358.666667pt;}
.x65_c00035{left:360.533333pt;}
.x9b_c00035{left:361.466667pt;}
.x62_c00035{left:362.800000pt;}
.x37_c00035{left:364.133333pt;}
.x2_c00035{left:367.333333pt;}
.x78_c00035{left:369.600000pt;}
.x1e_c00035{left:372.533333pt;}
.x31_c00035{left:376.266667pt;}
.x7d_c00035{left:377.600000pt;}
.x8d_c00035{left:378.533333pt;}
.x25_c00035{left:380.266667pt;}
.x2c_c00035{left:382.266667pt;}
.xf_c00035{left:383.600000pt;}
.x3f_c00035{left:384.666667pt;}
.x91_c00035{left:386.400000pt;}
.x17_c00035{left:388.400000pt;}
.x9c_c00035{left:390.000000pt;}
.x44_c00035{left:392.666667pt;}
.x79_c00035{left:394.266667pt;}
.x6d_c00035{left:395.600000pt;}
.x48_c00035{left:397.066667pt;}
.x5b_c00035{left:398.933333pt;}
.x69_c00035{left:400.933333pt;}
.x92_c00035{left:402.133333pt;}
.x8b_c00035{left:404.000000pt;}
.x9f_c00035{left:405.866667pt;}
.x1b_c00035{left:407.733333pt;}
.x5c_c00035{left:409.466667pt;}
.x73_c00035{left:413.066667pt;}
.x9_c00035{left:414.800000pt;}
.x54_c00035{left:416.533333pt;}
.x93_c00035{left:420.400000pt;}
.x49_c00035{left:421.333333pt;}
.x75_c00035{left:423.200000pt;}
.x90_c00035{left:424.800000pt;}
.x26_c00035{left:425.733333pt;}
.x1f_c00035{left:426.933333pt;}
.x6a_c00035{left:428.133333pt;}
.xa5_c00035{left:429.733333pt;}
.x55_c00035{left:432.266667pt;}
.x4e_c00035{left:434.133333pt;}
.x76_c00035{left:435.333333pt;}
.x8e_c00035{left:439.866667pt;}
.x38_c00035{left:444.400000pt;}
.x128_c00035{left:459.200000pt;}
.x13b_c00035{left:461.466667pt;}
.x11a_c00035{left:464.533333pt;}
.x114_c00035{left:465.866667pt;}
.xe6_c00035{left:467.066667pt;}
.xac_c00035{left:468.133333pt;}
.x14b_c00035{left:481.600000pt;}
.xd8_c00035{left:482.533333pt;}
.xb4_c00035{left:483.466667pt;}
.x11d_c00035{left:484.400000pt;}
.x148_c00035{left:487.466667pt;}
.xc5_c00035{left:488.666667pt;}
.x100_c00035{left:491.333333pt;}
.x12b_c00035{left:493.466667pt;}
.xe7_c00035{left:495.600000pt;}
.xeb_c00035{left:498.266667pt;}
.xbf_c00035{left:499.733333pt;}
.xf3_c00035{left:501.066667pt;}
.xb5_c00035{left:502.000000pt;}
.x121_c00035{left:503.600000pt;}
.xc6_c00035{left:506.000000pt;}
.x11e_c00035{left:508.400000pt;}
.x10e_c00035{left:509.733333pt;}
.xad_c00035{left:512.000000pt;}
.xcb_c00035{left:513.333333pt;}
.xd2_c00035{left:515.200000pt;}
.xe1_c00035{left:517.200000pt;}
.x134_c00035{left:519.066667pt;}
.xf4_c00035{left:521.200000pt;}
.x122_c00035{left:524.133333pt;}
.xdd_c00035{left:525.600000pt;}
.x135_c00035{left:526.933333pt;}
.x101_c00035{left:528.133333pt;}
.xf5_c00035{left:530.800000pt;}
.xe8_c00035{left:532.400000pt;}
.x139_c00035{left:535.600000pt;}
.xc0_c00035{left:536.533333pt;}
.xd9_c00035{left:537.866667pt;}
.xb3_c00035{left:540.000000pt;}
.xec_c00035{left:541.066667pt;}
.x149_c00035{left:542.533333pt;}
.x11b_c00035{left:543.600000pt;}
.x10b_c00035{left:544.666667pt;}
.xb6_c00035{left:546.533333pt;}
.xe2_c00035{left:547.866667pt;}
.x111_c00035{left:548.933333pt;}
.x125_c00035{left:550.666667pt;}
.xe9_c00035{left:552.533333pt;}
.x13e_c00035{left:553.866667pt;}
.x144_c00035{left:556.133333pt;}
.xc1_c00035{left:557.066667pt;}
.x106_c00035{left:559.200000pt;}
.x141_c00035{left:560.933333pt;}
.x137_c00035{left:561.866667pt;}
.xe3_c00035{left:563.200000pt;}
.x117_c00035{left:565.600000pt;}
.xea_c00035{left:566.666667pt;}
.xde_c00035{left:569.066667pt;}
.x10f_c00035{left:570.400000pt;}
.xae_c00035{left:572.533333pt;}
.x126_c00035{left:574.400000pt;}
.xd3_c00035{left:576.000000pt;}
.x107_c00035{left:577.066667pt;}
.x132_c00035{left:578.000000pt;}
.x13f_c00035{left:579.733333pt;}
.x123_c00035{left:581.466667pt;}
.xf6_c00035{left:583.600000pt;}
.xaf_c00035{left:584.666667pt;}
.x145_c00035{left:585.600000pt;}
.xb7_c00035{left:586.533333pt;}
.xed_c00035{left:588.400000pt;}
.xd4_c00035{left:591.733333pt;}
.x12c_c00035{left:592.666667pt;}
.xcc_c00035{left:595.600000pt;}
.x129_c00035{left:598.133333pt;}
.x136_c00035{left:600.000000pt;}
.xf8_c00035{left:601.066667pt;}
.x12d_c00035{left:602.533333pt;}
.x140_c00035{left:603.466667pt;}
.xda_c00035{left:605.066667pt;}
.xfb_c00035{left:606.800000pt;}
.xe4_c00035{left:608.266667pt;}
.xd5_c00035{left:610.266667pt;}
.x142_c00035{left:612.400000pt;}
.x108_c00035{left:614.800000pt;}
.xdf_c00035{left:615.733333pt;}
.xf2_c00035{left:618.533333pt;}
.x115_c00035{left:619.466667pt;}
.xcd_c00035{left:621.866667pt;}
.xb8_c00035{left:624.933333pt;}
.xee_c00035{left:625.866667pt;}
.xe0_c00035{left:627.600000pt;}
.x14a_c00035{left:628.666667pt;}
.x12a_c00035{left:630.800000pt;}
.xdb_c00035{left:632.533333pt;}
.x14c_c00035{left:633.600000pt;}
.x102_c00035{left:635.733333pt;}
.x127_c00035{left:636.800000pt;}
.xc7_c00035{left:638.533333pt;}
.xce_c00035{left:641.333333pt;}
.x12f_c00035{left:644.933333pt;}
.x109_c00035{left:646.533333pt;}
.x110_c00035{left:648.400000pt;}
.x112_c00035{left:649.333333pt;}
.xb9_c00035{left:650.533333pt;}
.xc2_c00035{left:652.800000pt;}
.x10c_c00035{left:654.400000pt;}
.x138_c00035{left:655.333333pt;}
.x11f_c00035{left:658.533333pt;}
.xba_c00035{left:663.333333pt;}
.xb0_c00035{left:664.666667pt;}
.x12e_c00035{left:665.866667pt;}
.xc8_c00035{left:667.066667pt;}
.xef_c00035{left:672.000000pt;}
.xf9_c00035{left:673.066667pt;}
.x103_c00035{left:674.400000pt;}
.xf7_c00035{left:677.333333pt;}
.x147_c00035{left:678.266667pt;}
.x143_c00035{left:680.266667pt;}
.xd6_c00035{left:682.933333pt;}
.xc3_c00035{left:685.466667pt;}
.x130_c00035{left:686.800000pt;}
.xfc_c00035{left:689.066667pt;}
.xbb_c00035{left:690.800000pt;}
.x13c_c00035{left:694.666667pt;}
.xc9_c00035{left:697.733333pt;}
.x13a_c00035{left:698.800000pt;}
.xe5_c00035{left:700.000000pt;}
.x131_c00035{left:700.933333pt;}
.xcf_c00035{left:702.133333pt;}
.x10d_c00035{left:706.533333pt;}
.xbc_c00035{left:707.466667pt;}
.xfa_c00035{left:709.600000pt;}
.x146_c00035{left:711.066667pt;}
.xf0_c00035{left:712.000000pt;}
.xfd_c00035{left:713.066667pt;}
.xb1_c00035{left:714.933333pt;}
.x10a_c00035{left:716.933333pt;}
.x116_c00035{left:718.266667pt;}
.x118_c00035{left:719.200000pt;}
.x133_c00035{left:720.133333pt;}
.xbd_c00035{left:721.866667pt;}
.x104_c00035{left:723.333333pt;}
.xdc_c00035{left:725.066667pt;}
.xd0_c00035{left:727.066667pt;}
.xfe_c00035{left:728.800000pt;}
.xf1_c00035{left:729.866667pt;}
.x105_c00035{left:731.333333pt;}
.xc4_c00035{left:733.466667pt;}
.x119_c00035{left:734.933333pt;}
.xb2_c00035{left:736.400000pt;}
.xff_c00035{left:738.400000pt;}
.x120_c00035{left:741.066667pt;}
.x11c_c00035{left:742.400000pt;}
.x13d_c00035{left:745.600000pt;}
.xd1_c00035{left:746.933333pt;}
.xca_c00035{left:752.400000pt;}
.xd7_c00035{left:756.133333pt;}
.x124_c00035{left:760.266667pt;}
.x113_c00035{left:761.600000pt;}
.xbe_c00035{left:763.733333pt;}
.x14d_c00035{left:828.800000pt;}
.x14e_c00035{left:829.733333pt;}
}





/* 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_c00036 {
    display:none;
  }
  .loading-indicator_c00036.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00036 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_c00036 { 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_c00036" -> "#page-container .classname_c00036")
 */
.pf_c00036 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00036 { /* 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_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00036 { /* 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_c00036 { /* 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_c00036 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00036 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00036 {overflow:visible;}
  }
}
.c_c00036 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00036 { /* 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_c00036:after { /* webkit #35443 */
  content: '';
}
.t_c00036:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00036 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 */
}
.__c00036 { /* 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_c00036 { /* info for Javascript */
  display:none;
}
.l_c00036 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00036 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00036 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00036: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_c00036 {
    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_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00036.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_c00036 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00036;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.000000;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;}
.m1d_c00036{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00036{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.me0_c00036{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m107_c00036{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00036{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m106_c00036{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00036{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00036{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.me6_c00036{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00036{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00036{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00036{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m110_c00036{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m43_c00036{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7_c00036{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00036{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m69_c00036{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m45_c00036{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m64_c00036{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m56_c00036{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m100_c00036{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00036{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00036{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00036{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00036{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.me9_c00036{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m81_c00036{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m48_c00036{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.mec_c00036{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m96_c00036{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00036{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00036{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.me_c00036{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m119_c00036{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m22_c00036{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mab_c00036{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m65_c00036{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m75_c00036{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m6_c00036{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00036{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m66_c00036{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.maf_c00036{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00036{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m23_c00036{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00036{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m41_c00036{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m25_c00036{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8_c00036{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me7_c00036{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00036{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m5_c00036{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mee_c00036{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me4_c00036{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00036{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00036{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m87_c00036{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00036{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mff_c00036{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00036{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m94_c00036{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m47_c00036{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00036{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00036{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m36_c00036{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00036{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m85_c00036{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.meb_c00036{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00036{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00036{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m30_c00036{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3_c00036{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mea_c00036{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00036{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9_c00036{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00036{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00036{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m84_c00036{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m80_c00036{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m12_c00036{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00036{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00036{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m4_c00036{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00036{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m37_c00036{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00036{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m83_c00036{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mde_c00036{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m31_c00036{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m89_c00036{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m21_c00036{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00036{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00036{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00036{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m88_c00036{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m108_c00036{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mac_c00036{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m86_c00036{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m42_c00036{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m118_c00036{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md2_c00036{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00036{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md3_c00036{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00036{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m51_c00036{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m98_c00036{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00036{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m99_c00036{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m115_c00036{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00036{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00036{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00036{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00036{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m58_c00036{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m117_c00036{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m19_c00036{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m60_c00036{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m67_c00036{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb_c00036{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00036{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m54_c00036{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00036{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m57_c00036{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me5_c00036{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.me3_c00036{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00036{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m29_c00036{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m102_c00036{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m77_c00036{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00036{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m39_c00036{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00036{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00036{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00036{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00036{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00036{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00036{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m26_c00036{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m33_c00036{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00036{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m11_c00036{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m78_c00036{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m2_c00036{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00036{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00036{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00036{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m101_c00036{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m14_c00036{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00036{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00036{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m90_c00036{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m92_c00036{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00036{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md8_c00036{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m82_c00036{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mae_c00036{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00036{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00036{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m20_c00036{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00036{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m112_c00036{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m16_c00036{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00036{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00036{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m32_c00036{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md1_c00036{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mf_c00036{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00036{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00036{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m76_c00036{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00036{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00036{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md_c00036{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m68_c00036{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m63_c00036{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00036{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.md6_c00036{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00036{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m18_c00036{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m62_c00036{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00036{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc_c00036{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me1_c00036{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m55_c00036{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.md9_c00036{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m40_c00036{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mda_c00036{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md7_c00036{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00036{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.med_c00036{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mce_c00036{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00036{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00036{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m27_c00036{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00036{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m114_c00036{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m46_c00036{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00036{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00036{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m93_c00036{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00036{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m34_c00036{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00036{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m95_c00036{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00036{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00036{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m38_c00036{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00036{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00036{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m53_c00036{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma_c00036{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00036{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00036{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00036{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00036{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m49_c00036{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00036{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m59_c00036{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m17_c00036{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m28_c00036{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mad_c00036{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00036{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00036{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00036{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m111_c00036{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m70_c00036{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00036{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md0_c00036{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m24_c00036{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m105_c00036{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m13_c00036{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00036{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m104_c00036{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m73_c00036{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m15_c00036{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m50_c00036{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m97_c00036{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00036{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00036{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00036{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00036{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m109_c00036{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m74_c00036{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00036{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.maa_c00036{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00036{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00036{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m71_c00036{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00036{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00036{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00036{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00036{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00036{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00036{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00036{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00036{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m61_c00036{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00036{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m116_c00036{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00036{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00036{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m103_c00036{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00036{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m44_c00036{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m79_c00036{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mba_c00036{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.me2_c00036{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00036{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00036{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m52_c00036{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md4_c00036{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00036{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00036{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mca_c00036{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mef_c00036{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00036{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m91_c00036{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me8_c00036{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m72_c00036{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m1_c00036{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m35_c00036{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00036{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m113_c00036{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.md5_c00036{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m0_c00036{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls0_c00036{letter-spacing:0.000000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{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__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00036{word-spacing:-14.814126px;}
.ws0_c00036{word-spacing:-10.051213px;}
.ws4_c00036{word-spacing:-9.780669px;}
.ws8_c00036{word-spacing:-5.129032px;}
.ws7_c00036{word-spacing:-4.444126px;}
.ws1_c00036{word-spacing:-1.657682px;}
.wsa_c00036{word-spacing:0.000000px;}
.ws3_c00036{word-spacing:0.292683px;}
.ws9_c00036{word-spacing:13.217184px;}
.ws5_c00036{word-spacing:14.292453px;}
.ws6_c00036{word-spacing:845.450382px;}
.fc0_c00036{color:transparent;}
.fs5_c00036{font-size:48.000000px;}
.fs1_c00036{font-size:54.000000px;}
.fs4_c00036{font-size:60.000000px;}
.fs3_c00036{font-size:66.000000px;}
.fs2_c00036{font-size:72.000000px;}
.fs0_c00036{font-size:84.000000px;}
.y0_c00036{bottom:0.000000px;}
.y6a_c00036{bottom:199.050000px;}
.y2e_c00036{bottom:204.000000px;}
.y2d_c00036{bottom:218.400000px;}
.y36_c00036{bottom:230.100000px;}
.y2c_c00036{bottom:232.500000px;}
.y69_c00036{bottom:246.900000px;}
.y35_c00036{bottom:247.650000px;}
.y34_c00036{bottom:261.450000px;}
.y68_c00036{bottom:264.600000px;}
.y33_c00036{bottom:275.850000px;}
.y67_c00036{bottom:282.300000px;}
.y32_c00036{bottom:290.550000px;}
.y66_c00036{bottom:304.950000px;}
.y31_c00036{bottom:307.800000px;}
.y6c_c00036{bottom:318.600000px;}
.y65_c00036{bottom:322.650000px;}
.y30_c00036{bottom:322.950000px;}
.y2f_c00036{bottom:337.350000px;}
.y64_c00036{bottom:339.900000px;}
.y2b_c00036{bottom:383.700000px;}
.y2a_c00036{bottom:401.700000px;}
.y63_c00036{bottom:424.800000px;}
.y29_c00036{bottom:427.800000px;}
.y28_c00036{bottom:445.800000px;}
.y62_c00036{bottom:446.400000px;}
.y6b_c00036{bottom:456.450000px;}
.y27_c00036{bottom:463.500000px;}
.y61_c00036{bottom:464.700000px;}
.y26_c00036{bottom:481.500000px;}
.y60_c00036{bottom:482.400000px;}
.y25_c00036{bottom:499.500000px;}
.y5f_c00036{bottom:500.400000px;}
.y24_c00036{bottom:517.200000px;}
.y5e_c00036{bottom:518.100000px;}
.y23_c00036{bottom:535.200000px;}
.y5d_c00036{bottom:536.100000px;}
.y22_c00036{bottom:553.200000px;}
.y5c_c00036{bottom:554.100000px;}
.y21_c00036{bottom:570.450000px;}
.y5b_c00036{bottom:571.350000px;}
.y20_c00036{bottom:588.150000px;}
.y5a_c00036{bottom:589.350000px;}
.y1f_c00036{bottom:605.850000px;}
.y59_c00036{bottom:606.900000px;}
.y58_c00036{bottom:624.900000px;}
.y1e_c00036{bottom:631.950000px;}
.y57_c00036{bottom:642.600000px;}
.y1d_c00036{bottom:649.950000px;}
.y56_c00036{bottom:660.600000px;}
.y1c_c00036{bottom:667.950000px;}
.y55_c00036{bottom:676.500000px;}
.y38_c00036{bottom:678.150000px;}
.y1b_c00036{bottom:685.650000px;}
.y54_c00036{bottom:691.800000px;}
.y37_c00036{bottom:695.850000px;}
.y1a_c00036{bottom:703.350000px;}
.y53_c00036{bottom:709.500000px;}
.y50_c00036{bottom:713.550000px;}
.y19_c00036{bottom:721.350000px;}
.y52_c00036{bottom:727.500000px;}
.y4f_c00036{bottom:731.550000px;}
.y18_c00036{bottom:739.050000px;}
.y4e_c00036{bottom:749.550000px;}
.y17_c00036{bottom:756.750000px;}
.y4d_c00036{bottom:766.950000px;}
.y16_c00036{bottom:783.150000px;}
.y4c_c00036{bottom:784.650000px;}
.y15_c00036{bottom:801.150000px;}
.y4b_c00036{bottom:802.650000px;}
.y14_c00036{bottom:818.850000px;}
.y4a_c00036{bottom:820.350000px;}
.y13_c00036{bottom:836.550000px;}
.y49_c00036{bottom:838.350000px;}
.y12_c00036{bottom:854.550000px;}
.y48_c00036{bottom:856.350000px;}
.y11_c00036{bottom:872.250000px;}
.y47_c00036{bottom:874.050000px;}
.y51_c00036{bottom:885.300000px;}
.y10_c00036{bottom:889.950000px;}
.y46_c00036{bottom:891.750000px;}
.yf_c00036{bottom:907.950000px;}
.y45_c00036{bottom:909.000000px;}
.ye_c00036{bottom:925.650000px;}
.y44_c00036{bottom:931.650000px;}
.yd_c00036{bottom:943.350000px;}
.y43_c00036{bottom:949.350000px;}
.yc_c00036{bottom:961.350000px;}
.y42_c00036{bottom:967.050000px;}
.yb_c00036{bottom:979.050000px;}
.y41_c00036{bottom:984.750000px;}
.ya_c00036{bottom:996.750000px;}
.y40_c00036{bottom:1002.750000px;}
.y9_c00036{bottom:1014.450000px;}
.y3f_c00036{bottom:1020.450000px;}
.y8_c00036{bottom:1032.450000px;}
.y3e_c00036{bottom:1038.150000px;}
.y7_c00036{bottom:1050.150000px;}
.y3d_c00036{bottom:1055.850000px;}
.y3c_c00036{bottom:1073.550000px;}
.y6_c00036{bottom:1086.450000px;}
.y3b_c00036{bottom:1091.400000px;}
.y5_c00036{bottom:1094.400000px;}
.y3a_c00036{bottom:1109.100000px;}
.y4_c00036{bottom:1111.950000px;}
.y39_c00036{bottom:1126.800000px;}
.y3_c00036{bottom:1129.650000px;}
.y2_c00036{bottom:1148.700000px;}
.y1_c00036{bottom:1153.800000px;}
.h7_c00036{height:48.000000px;}
.h3_c00036{height:54.000000px;}
.h6_c00036{height:60.000000px;}
.h5_c00036{height:66.000000px;}
.h4_c00036{height:72.000000px;}
.h2_c00036{height:84.000000px;}
.h0_c00036{height:1274.759949px;}
.h1_c00036{height:1275.000000px;}
.w0_c00036{width:948.600036px;}
.w1_c00036{width:948.750000px;}
.x0_c00036{left:0.000000px;}
.x99_c00036{left:62.700000px;}
.x96_c00036{left:64.800000px;}
.xa7_c00036{left:67.350000px;}
.xa5_c00036{left:69.000000px;}
.xa3_c00036{left:70.950000px;}
.xd_c00036{left:72.300000px;}
.x15_c00036{left:73.500000px;}
.x3_c00036{left:74.550000px;}
.xa8_c00036{left:81.750000px;}
.xa2_c00036{left:86.400000px;}
.x9d_c00036{left:87.900000px;}
.x77_c00036{left:90.000000px;}
.x1f_c00036{left:91.050000px;}
.x61_c00036{left:92.100000px;}
.x74_c00036{left:93.450000px;}
.x4_c00036{left:95.100000px;}
.x7e_c00036{left:97.950000px;}
.x6c_c00036{left:99.600000px;}
.x97_c00036{left:100.800000px;}
.x5f_c00036{left:103.950000px;}
.x8c_c00036{left:107.400000px;}
.x20_c00036{left:108.750000px;}
.x7a_c00036{left:110.400000px;}
.x4b_c00036{left:112.800000px;}
.x83_c00036{left:114.300000px;}
.x1d_c00036{left:117.450000px;}
.x53_c00036{left:118.500000px;}
.x5_c00036{left:120.600000px;}
.x3a_c00036{left:121.950000px;}
.x21_c00036{left:123.900000px;}
.xe_c00036{left:125.550000px;}
.x89_c00036{left:127.950000px;}
.xa4_c00036{left:130.350000px;}
.x62_c00036{left:133.200000px;}
.x3b_c00036{left:134.550000px;}
.x8d_c00036{left:136.200000px;}
.x54_c00036{left:138.000000px;}
.x5b_c00036{left:139.950000px;}
.x4d_c00036{left:141.750000px;}
.x75_c00036{left:143.100000px;}
.x59_c00036{left:144.450000px;}
.x84_c00036{left:145.950000px;}
.x69_c00036{left:148.200000px;}
.x39_c00036{left:154.050000px;}
.x55_c00036{left:155.250000px;}
.x2b_c00036{left:158.850000px;}
.x16_c00036{left:159.900000px;}
.x22_c00036{left:162.450000px;}
.x7f_c00036{left:164.250000px;}
.x36_c00036{left:165.900000px;}
.x5a_c00036{left:168.150000px;}
.x70_c00036{left:169.200000px;}
.x6d_c00036{left:171.900000px;}
.x2f_c00036{left:173.400000px;}
.xa1_c00036{left:176.550000px;}
.x67_c00036{left:177.600000px;}
.x6_c00036{left:178.950000px;}
.x45_c00036{left:181.050000px;}
.x23_c00036{left:183.300000px;}
.x7b_c00036{left:187.950000px;}
.x42_c00036{left:190.950000px;}
.xf_c00036{left:192.450000px;}
.x8e_c00036{left:194.100000px;}
.x3c_c00036{left:195.450000px;}
.x1e_c00036{left:197.400000px;}
.x8f_c00036{left:199.950000px;}
.x88_c00036{left:202.800000px;}
.x37_c00036{left:204.000000px;}
.x30_c00036{left:207.300000px;}
.x17_c00036{left:211.350000px;}
.x56_c00036{left:212.850000px;}
.x82_c00036{left:215.400000px;}
.x7c_c00036{left:218.250000px;}
.x94_c00036{left:219.600000px;}
.x28_c00036{left:220.800000px;}
.x2c_c00036{left:222.600000px;}
.x4e_c00036{left:224.250000px;}
.x31_c00036{left:225.300000px;}
.x46_c00036{left:227.850000px;}
.x57_c00036{left:231.600000px;}
.x86_c00036{left:233.700000px;}
.x92_c00036{left:235.800000px;}
.x63_c00036{left:236.850000px;}
.x95_c00036{left:238.650000px;}
.x85_c00036{left:242.100000px;}
.x6a_c00036{left:243.600000px;}
.x47_c00036{left:245.100000px;}
.x4f_c00036{left:246.900000px;}
.x9a_c00036{left:248.850000px;}
.x24_c00036{left:250.650000px;}
.x7_c00036{left:252.750000px;}
.x71_c00036{left:255.150000px;}
.x50_c00036{left:257.400000px;}
.x10_c00036{left:260.550000px;}
.x3d_c00036{left:262.350000px;}
.x18_c00036{left:263.850000px;}
.x9e_c00036{left:266.100000px;}
.x78_c00036{left:267.150000px;}
.x64_c00036{left:268.200000px;}
.x5c_c00036{left:269.550000px;}
.x3e_c00036{left:271.050000px;}
.x11_c00036{left:273.150000px;}
.x9f_c00036{left:274.800000px;}
.x8_c00036{left:276.150000px;}
.x91_c00036{left:277.650000px;}
.xa9_c00036{left:278.700000px;}
.x68_c00036{left:279.750000px;}
.x72_c00036{left:281.400000px;}
.x76_c00036{left:283.950000px;}
.x9_c00036{left:285.450000px;}
.x87_c00036{left:286.650000px;}
.x93_c00036{left:288.000000px;}
.x19_c00036{left:289.050000px;}
.x58_c00036{left:291.000000px;}
.x25_c00036{left:293.100000px;}
.x48_c00036{left:295.200000px;}
.xa0_c00036{left:298.500000px;}
.x51_c00036{left:300.300000px;}
.x43_c00036{left:301.950000px;}
.xa_c00036{left:303.450000px;}
.x7d_c00036{left:305.700000px;}
.x12_c00036{left:308.400000px;}
.xa6_c00036{left:309.750000px;}
.x26_c00036{left:311.400000px;}
.x9b_c00036{left:313.350000px;}
.x1_c00036{left:314.700000px;}
.x73_c00036{left:315.900000px;}
.x6e_c00036{left:317.400000px;}
.x49_c00036{left:319.350000px;}
.x2d_c00036{left:321.300000px;}
.xb_c00036{left:323.550000px;}
.x38_c00036{left:324.750000px;}
.x29_c00036{left:326.250000px;}
.x52_c00036{left:327.600000px;}
.x3f_c00036{left:330.150000px;}
.x32_c00036{left:331.500000px;}
.x5d_c00036{left:333.600000px;}
.x13_c00036{left:335.400000px;}
.x79_c00036{left:336.900000px;}
.x1a_c00036{left:338.100000px;}
.x90_c00036{left:339.750000px;}
.x65_c00036{left:341.700000px;}
.x5e_c00036{left:344.100000px;}
.x6b_c00036{left:345.450000px;}
.x40_c00036{left:348.900000px;}
.x9c_c00036{left:350.100000px;}
.x27_c00036{left:351.750000px;}
.x80_c00036{left:354.300000px;}
.x1b_c00036{left:355.800000px;}
.x4c_c00036{left:357.000000px;}
.x44_c00036{left:361.800000px;}
.x2a_c00036{left:363.750000px;}
.x4a_c00036{left:366.150000px;}
.x8b_c00036{left:367.350000px;}
.x14_c00036{left:369.300000px;}
.x33_c00036{left:371.400000px;}
.x81_c00036{left:376.650000px;}
.x2e_c00036{left:378.900000px;}
.x34_c00036{left:383.700000px;}
.x60_c00036{left:386.100000px;}
.x98_c00036{left:387.450000px;}
.x41_c00036{left:388.500000px;}
.x66_c00036{left:390.000000px;}
.x1c_c00036{left:392.100000px;}
.xc_c00036{left:394.800000px;}
.x8a_c00036{left:396.600000px;}
.x35_c00036{left:400.650000px;}
.x6f_c00036{left:407.400000px;}
.xaa_c00036{left:422.250000px;}
.xb0_c00036{left:426.750000px;}
.xb4_c00036{left:428.400000px;}
.xab_c00036{left:430.950000px;}
.xbe_c00036{left:432.000000px;}
.x148_c00036{left:439.950000px;}
.x14d_c00036{left:446.100000px;}
.xb1_c00036{left:449.100000px;}
.xf3_c00036{left:450.300000px;}
.xbf_c00036{left:452.100000px;}
.x108_c00036{left:453.750000px;}
.x11e_c00036{left:456.000000px;}
.x112_c00036{left:459.000000px;}
.x130_c00036{left:461.850000px;}
.xb5_c00036{left:465.150000px;}
.xce_c00036{left:466.800000px;}
.x113_c00036{left:468.750000px;}
.xc9_c00036{left:470.100000px;}
.xc0_c00036{left:471.900000px;}
.xf4_c00036{left:475.200000px;}
.x10a_c00036{left:476.250000px;}
.xdc_c00036{left:477.900000px;}
.xac_c00036{left:479.250000px;}
.xc8_c00036{left:481.200000px;}
.xec_c00036{left:483.900000px;}
.xcf_c00036{left:485.850000px;}
.xb2_c00036{left:487.650000px;}
.x139_c00036{left:488.850000px;}
.xb6_c00036{left:490.650000px;}
.xdd_c00036{left:494.400000px;}
.x140_c00036{left:495.600000px;}
.xfc_c00036{left:496.800000px;}
.x109_c00036{left:500.250000px;}
.xed_c00036{left:504.750000px;}
.x119_c00036{left:506.400000px;}
.x104_c00036{left:507.600000px;}
.xb3_c00036{left:509.550000px;}
.x114_c00036{left:510.900000px;}
.xb7_c00036{left:512.550000px;}
.xde_c00036{left:514.950000px;}
.xe8_c00036{left:516.450000px;}
.xfd_c00036{left:517.650000px;}
.x122_c00036{left:518.700000px;}
.xf8_c00036{left:520.950000px;}
.x11f_c00036{left:522.750000px;}
.xe3_c00036{left:523.800000px;}
.x13a_c00036{left:524.850000px;}
.x10b_c00036{left:525.900000px;}
.xee_c00036{left:528.150000px;}
.xb8_c00036{left:529.800000px;}
.x12e_c00036{left:532.650000px;}
.xc1_c00036{left:533.850000px;}
.x123_c00036{left:536.700000px;}
.x129_c00036{left:538.500000px;}
.xf6_c00036{left:540.000000px;}
.x134_c00036{left:542.850000px;}
.xc2_c00036{left:544.350000px;}
.x10c_c00036{left:545.400000px;}
.x105_c00036{left:546.900000px;}
.xd0_c00036{left:548.850000px;}
.xd7_c00036{left:550.950000px;}
.xad_c00036{left:553.350000px;}
.xfe_c00036{left:554.700000px;}
.xca_c00036{left:556.050000px;}
.x106_c00036{left:558.450000px;}
.x12a_c00036{left:561.600000px;}
.x10d_c00036{left:563.400000px;}
.xae_c00036{left:567.450000px;}
.x115_c00036{left:569.850000px;}
.x135_c00036{left:570.900000px;}
.x14a_c00036{left:572.850000px;}
.x13e_c00036{left:574.200000px;}
.xb9_c00036{left:576.600000px;}
.xc3_c00036{left:578.550000px;}
.xf5_c00036{left:580.650000px;}
.x124_c00036{left:581.700000px;}
.xf9_c00036{left:583.200000px;}
.xd1_c00036{left:585.150000px;}
.xcb_c00036{left:586.950000px;}
.xef_c00036{left:589.050000px;}
.x13d_c00036{left:590.250000px;}
.x107_c00036{left:591.600000px;}
.xc4_c00036{left:595.050000px;}
.xf7_c00036{left:598.650000px;}
.xaf_c00036{left:602.400000px;}
.xba_c00036{left:603.900000px;}
.xff_c00036{left:605.100000px;}
.xd2_c00036{left:607.500000px;}
.xf0_c00036{left:610.650000px;}
.x147_c00036{left:611.850000px;}
.xdf_c00036{left:613.200000px;}
.x100_c00036{left:614.400000px;}
.x141_c00036{left:615.450000px;}
.x11b_c00036{left:616.800000px;}
.xd8_c00036{left:620.100000px;}
.x136_c00036{left:621.300000px;}
.x138_c00036{left:623.100000px;}
.x127_c00036{left:624.150000px;}
.x120_c00036{left:625.650000px;}
.x10e_c00036{left:627.150000px;}
.x12c_c00036{left:628.200000px;}
.xc5_c00036{left:629.550000px;}
.x144_c00036{left:631.350000px;}
.x146_c00036{left:633.300000px;}
.xe0_c00036{left:634.800000px;}
.xbb_c00036{left:637.050000px;}
.x116_c00036{left:640.350000px;}
.xd9_c00036{left:642.750000px;}
.x12d_c00036{left:644.400000px;}
.xe5_c00036{left:646.050000px;}
.x101_c00036{left:649.350000px;}
.x125_c00036{left:650.850000px;}
.xc6_c00036{left:652.200000px;}
.x143_c00036{left:653.400000px;}
.xbc_c00036{left:654.750000px;}
.x131_c00036{left:657.450000px;}
.xfa_c00036{left:658.800000px;}
.x149_c00036{left:661.050000px;}
.xda_c00036{left:664.050000px;}
.xe9_c00036{left:666.150000px;}
.x10f_c00036{left:670.650000px;}
.xd3_c00036{left:672.300000px;}
.xe6_c00036{left:675.150000px;}
.x11c_c00036{left:676.200000px;}
.xcc_c00036{left:678.000000px;}
.x13b_c00036{left:681.450000px;}
.xd4_c00036{left:683.850000px;}
.x102_c00036{left:686.100000px;}
.x145_c00036{left:687.150000px;}
.xc7_c00036{left:691.800000px;}
.x132_c00036{left:693.150000px;}
.x117_c00036{left:695.850000px;}
.x11a_c00036{left:698.250000px;}
.xbd_c00036{left:700.500000px;}
.x121_c00036{left:702.300000px;}
.x14b_c00036{left:703.500000px;}
.x118_c00036{left:705.150000px;}
.x110_c00036{left:706.950000px;}
.xcd_c00036{left:708.600000px;}
.x13f_c00036{left:709.800000px;}
.x12f_c00036{left:710.850000px;}
.xfb_c00036{left:712.050000px;}
.xf1_c00036{left:716.850000px;}
.xea_c00036{left:719.400000px;}
.xd5_c00036{left:720.600000px;}
.xe1_c00036{left:722.550000px;}
.x103_c00036{left:724.650000px;}
.xdb_c00036{left:727.350000px;}
.xd6_c00036{left:729.600000px;}
.x12b_c00036{left:730.650000px;}
.xe2_c00036{left:731.850000px;}
.x111_c00036{left:733.650000px;}
.x14e_c00036{left:737.400000px;}
.xf2_c00036{left:739.200000px;}
.x137_c00036{left:741.150000px;}
.x126_c00036{left:742.950000px;}
.xe7_c00036{left:744.300000px;}
.x14c_c00036{left:748.500000px;}
.x2_c00036{left:749.550000px;}
.xe4_c00036{left:750.600000px;}
.x128_c00036{left:754.200000px;}
.xeb_c00036{left:755.700000px;}
.x11d_c00036{left:762.000000px;}
.x142_c00036{left:766.050000px;}
.x133_c00036{left:774.150000px;}
.x13c_c00036{left:784.350000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws2_c00036{word-spacing:-13.168112pt;}
.ws0_c00036{word-spacing:-8.934412pt;}
.ws4_c00036{word-spacing:-8.693928pt;}
.ws8_c00036{word-spacing:-4.559140pt;}
.ws7_c00036{word-spacing:-3.950334pt;}
.ws1_c00036{word-spacing:-1.473495pt;}
.wsa_c00036{word-spacing:0.000000pt;}
.ws3_c00036{word-spacing:0.260163pt;}
.ws9_c00036{word-spacing:11.748608pt;}
.ws5_c00036{word-spacing:12.704403pt;}
.ws6_c00036{word-spacing:751.511450pt;}
.fs5_c00036{font-size:42.666667pt;}
.fs1_c00036{font-size:48.000000pt;}
.fs4_c00036{font-size:53.333333pt;}
.fs3_c00036{font-size:58.666667pt;}
.fs2_c00036{font-size:64.000000pt;}
.fs0_c00036{font-size:74.666667pt;}
.y0_c00036{bottom:0.000000pt;}
.y6a_c00036{bottom:176.933333pt;}
.y2e_c00036{bottom:181.333333pt;}
.y2d_c00036{bottom:194.133333pt;}
.y36_c00036{bottom:204.533333pt;}
.y2c_c00036{bottom:206.666667pt;}
.y69_c00036{bottom:219.466667pt;}
.y35_c00036{bottom:220.133333pt;}
.y34_c00036{bottom:232.400000pt;}
.y68_c00036{bottom:235.200000pt;}
.y33_c00036{bottom:245.200000pt;}
.y67_c00036{bottom:250.933333pt;}
.y32_c00036{bottom:258.266667pt;}
.y66_c00036{bottom:271.066667pt;}
.y31_c00036{bottom:273.600000pt;}
.y6c_c00036{bottom:283.200000pt;}
.y65_c00036{bottom:286.800000pt;}
.y30_c00036{bottom:287.066667pt;}
.y2f_c00036{bottom:299.866667pt;}
.y64_c00036{bottom:302.133333pt;}
.y2b_c00036{bottom:341.066667pt;}
.y2a_c00036{bottom:357.066667pt;}
.y63_c00036{bottom:377.600000pt;}
.y29_c00036{bottom:380.266667pt;}
.y28_c00036{bottom:396.266667pt;}
.y62_c00036{bottom:396.800000pt;}
.y6b_c00036{bottom:405.733333pt;}
.y27_c00036{bottom:412.000000pt;}
.y61_c00036{bottom:413.066667pt;}
.y26_c00036{bottom:428.000000pt;}
.y60_c00036{bottom:428.800000pt;}
.y25_c00036{bottom:444.000000pt;}
.y5f_c00036{bottom:444.800000pt;}
.y24_c00036{bottom:459.733333pt;}
.y5e_c00036{bottom:460.533333pt;}
.y23_c00036{bottom:475.733333pt;}
.y5d_c00036{bottom:476.533333pt;}
.y22_c00036{bottom:491.733333pt;}
.y5c_c00036{bottom:492.533333pt;}
.y21_c00036{bottom:507.066667pt;}
.y5b_c00036{bottom:507.866667pt;}
.y20_c00036{bottom:522.800000pt;}
.y5a_c00036{bottom:523.866667pt;}
.y1f_c00036{bottom:538.533333pt;}
.y59_c00036{bottom:539.466667pt;}
.y58_c00036{bottom:555.466667pt;}
.y1e_c00036{bottom:561.733333pt;}
.y57_c00036{bottom:571.200000pt;}
.y1d_c00036{bottom:577.733333pt;}
.y56_c00036{bottom:587.200000pt;}
.y1c_c00036{bottom:593.733333pt;}
.y55_c00036{bottom:601.333333pt;}
.y38_c00036{bottom:602.800000pt;}
.y1b_c00036{bottom:609.466667pt;}
.y54_c00036{bottom:614.933333pt;}
.y37_c00036{bottom:618.533333pt;}
.y1a_c00036{bottom:625.200000pt;}
.y53_c00036{bottom:630.666667pt;}
.y50_c00036{bottom:634.266667pt;}
.y19_c00036{bottom:641.200000pt;}
.y52_c00036{bottom:646.666667pt;}
.y4f_c00036{bottom:650.266667pt;}
.y18_c00036{bottom:656.933333pt;}
.y4e_c00036{bottom:666.266667pt;}
.y17_c00036{bottom:672.666667pt;}
.y4d_c00036{bottom:681.733333pt;}
.y16_c00036{bottom:696.133333pt;}
.y4c_c00036{bottom:697.466667pt;}
.y15_c00036{bottom:712.133333pt;}
.y4b_c00036{bottom:713.466667pt;}
.y14_c00036{bottom:727.866667pt;}
.y4a_c00036{bottom:729.200000pt;}
.y13_c00036{bottom:743.600000pt;}
.y49_c00036{bottom:745.200000pt;}
.y12_c00036{bottom:759.600000pt;}
.y48_c00036{bottom:761.200000pt;}
.y11_c00036{bottom:775.333333pt;}
.y47_c00036{bottom:776.933333pt;}
.y51_c00036{bottom:786.933333pt;}
.y10_c00036{bottom:791.066667pt;}
.y46_c00036{bottom:792.666667pt;}
.yf_c00036{bottom:807.066667pt;}
.y45_c00036{bottom:808.000000pt;}
.ye_c00036{bottom:822.800000pt;}
.y44_c00036{bottom:828.133333pt;}
.yd_c00036{bottom:838.533333pt;}
.y43_c00036{bottom:843.866667pt;}
.yc_c00036{bottom:854.533333pt;}
.y42_c00036{bottom:859.600000pt;}
.yb_c00036{bottom:870.266667pt;}
.y41_c00036{bottom:875.333333pt;}
.ya_c00036{bottom:886.000000pt;}
.y40_c00036{bottom:891.333333pt;}
.y9_c00036{bottom:901.733333pt;}
.y3f_c00036{bottom:907.066667pt;}
.y8_c00036{bottom:917.733333pt;}
.y3e_c00036{bottom:922.800000pt;}
.y7_c00036{bottom:933.466667pt;}
.y3d_c00036{bottom:938.533333pt;}
.y3c_c00036{bottom:954.266667pt;}
.y6_c00036{bottom:965.733333pt;}
.y3b_c00036{bottom:970.133333pt;}
.y5_c00036{bottom:972.800000pt;}
.y3a_c00036{bottom:985.866667pt;}
.y4_c00036{bottom:988.400000pt;}
.y39_c00036{bottom:1001.600000pt;}
.y3_c00036{bottom:1004.133333pt;}
.y2_c00036{bottom:1021.066667pt;}
.y1_c00036{bottom:1025.600000pt;}
.h7_c00036{height:42.666667pt;}
.h3_c00036{height:48.000000pt;}
.h6_c00036{height:53.333333pt;}
.h5_c00036{height:58.666667pt;}
.h4_c00036{height:64.000000pt;}
.h2_c00036{height:74.666667pt;}
.h0_c00036{height:1133.119955pt;}
.h1_c00036{height:1133.333333pt;}
.w0_c00036{width:843.200032pt;}
.w1_c00036{width:843.333333pt;}
.x0_c00036{left:0.000000pt;}
.x99_c00036{left:55.733333pt;}
.x96_c00036{left:57.600000pt;}
.xa7_c00036{left:59.866667pt;}
.xa5_c00036{left:61.333333pt;}
.xa3_c00036{left:63.066667pt;}
.xd_c00036{left:64.266667pt;}
.x15_c00036{left:65.333333pt;}
.x3_c00036{left:66.266667pt;}
.xa8_c00036{left:72.666667pt;}
.xa2_c00036{left:76.800000pt;}
.x9d_c00036{left:78.133333pt;}
.x77_c00036{left:80.000000pt;}
.x1f_c00036{left:80.933333pt;}
.x61_c00036{left:81.866667pt;}
.x74_c00036{left:83.066667pt;}
.x4_c00036{left:84.533333pt;}
.x7e_c00036{left:87.066667pt;}
.x6c_c00036{left:88.533333pt;}
.x97_c00036{left:89.600000pt;}
.x5f_c00036{left:92.400000pt;}
.x8c_c00036{left:95.466667pt;}
.x20_c00036{left:96.666667pt;}
.x7a_c00036{left:98.133333pt;}
.x4b_c00036{left:100.266667pt;}
.x83_c00036{left:101.600000pt;}
.x1d_c00036{left:104.400000pt;}
.x53_c00036{left:105.333333pt;}
.x5_c00036{left:107.200000pt;}
.x3a_c00036{left:108.400000pt;}
.x21_c00036{left:110.133333pt;}
.xe_c00036{left:111.600000pt;}
.x89_c00036{left:113.733333pt;}
.xa4_c00036{left:115.866667pt;}
.x62_c00036{left:118.400000pt;}
.x3b_c00036{left:119.600000pt;}
.x8d_c00036{left:121.066667pt;}
.x54_c00036{left:122.666667pt;}
.x5b_c00036{left:124.400000pt;}
.x4d_c00036{left:126.000000pt;}
.x75_c00036{left:127.200000pt;}
.x59_c00036{left:128.400000pt;}
.x84_c00036{left:129.733333pt;}
.x69_c00036{left:131.733333pt;}
.x39_c00036{left:136.933333pt;}
.x55_c00036{left:138.000000pt;}
.x2b_c00036{left:141.200000pt;}
.x16_c00036{left:142.133333pt;}
.x22_c00036{left:144.400000pt;}
.x7f_c00036{left:146.000000pt;}
.x36_c00036{left:147.466667pt;}
.x5a_c00036{left:149.466667pt;}
.x70_c00036{left:150.400000pt;}
.x6d_c00036{left:152.800000pt;}
.x2f_c00036{left:154.133333pt;}
.xa1_c00036{left:156.933333pt;}
.x67_c00036{left:157.866667pt;}
.x6_c00036{left:159.066667pt;}
.x45_c00036{left:160.933333pt;}
.x23_c00036{left:162.933333pt;}
.x7b_c00036{left:167.066667pt;}
.x42_c00036{left:169.733333pt;}
.xf_c00036{left:171.066667pt;}
.x8e_c00036{left:172.533333pt;}
.x3c_c00036{left:173.733333pt;}
.x1e_c00036{left:175.466667pt;}
.x8f_c00036{left:177.733333pt;}
.x88_c00036{left:180.266667pt;}
.x37_c00036{left:181.333333pt;}
.x30_c00036{left:184.266667pt;}
.x17_c00036{left:187.866667pt;}
.x56_c00036{left:189.200000pt;}
.x82_c00036{left:191.466667pt;}
.x7c_c00036{left:194.000000pt;}
.x94_c00036{left:195.200000pt;}
.x28_c00036{left:196.266667pt;}
.x2c_c00036{left:197.866667pt;}
.x4e_c00036{left:199.333333pt;}
.x31_c00036{left:200.266667pt;}
.x46_c00036{left:202.533333pt;}
.x57_c00036{left:205.866667pt;}
.x86_c00036{left:207.733333pt;}
.x92_c00036{left:209.600000pt;}
.x63_c00036{left:210.533333pt;}
.x95_c00036{left:212.133333pt;}
.x85_c00036{left:215.200000pt;}
.x6a_c00036{left:216.533333pt;}
.x47_c00036{left:217.866667pt;}
.x4f_c00036{left:219.466667pt;}
.x9a_c00036{left:221.200000pt;}
.x24_c00036{left:222.800000pt;}
.x7_c00036{left:224.666667pt;}
.x71_c00036{left:226.800000pt;}
.x50_c00036{left:228.800000pt;}
.x10_c00036{left:231.600000pt;}
.x3d_c00036{left:233.200000pt;}
.x18_c00036{left:234.533333pt;}
.x9e_c00036{left:236.533333pt;}
.x78_c00036{left:237.466667pt;}
.x64_c00036{left:238.400000pt;}
.x5c_c00036{left:239.600000pt;}
.x3e_c00036{left:240.933333pt;}
.x11_c00036{left:242.800000pt;}
.x9f_c00036{left:244.266667pt;}
.x8_c00036{left:245.466667pt;}
.x91_c00036{left:246.800000pt;}
.xa9_c00036{left:247.733333pt;}
.x68_c00036{left:248.666667pt;}
.x72_c00036{left:250.133333pt;}
.x76_c00036{left:252.400000pt;}
.x9_c00036{left:253.733333pt;}
.x87_c00036{left:254.800000pt;}
.x93_c00036{left:256.000000pt;}
.x19_c00036{left:256.933333pt;}
.x58_c00036{left:258.666667pt;}
.x25_c00036{left:260.533333pt;}
.x48_c00036{left:262.400000pt;}
.xa0_c00036{left:265.333333pt;}
.x51_c00036{left:266.933333pt;}
.x43_c00036{left:268.400000pt;}
.xa_c00036{left:269.733333pt;}
.x7d_c00036{left:271.733333pt;}
.x12_c00036{left:274.133333pt;}
.xa6_c00036{left:275.333333pt;}
.x26_c00036{left:276.800000pt;}
.x9b_c00036{left:278.533333pt;}
.x1_c00036{left:279.733333pt;}
.x73_c00036{left:280.800000pt;}
.x6e_c00036{left:282.133333pt;}
.x49_c00036{left:283.866667pt;}
.x2d_c00036{left:285.600000pt;}
.xb_c00036{left:287.600000pt;}
.x38_c00036{left:288.666667pt;}
.x29_c00036{left:290.000000pt;}
.x52_c00036{left:291.200000pt;}
.x3f_c00036{left:293.466667pt;}
.x32_c00036{left:294.666667pt;}
.x5d_c00036{left:296.533333pt;}
.x13_c00036{left:298.133333pt;}
.x79_c00036{left:299.466667pt;}
.x1a_c00036{left:300.533333pt;}
.x90_c00036{left:302.000000pt;}
.x65_c00036{left:303.733333pt;}
.x5e_c00036{left:305.866667pt;}
.x6b_c00036{left:307.066667pt;}
.x40_c00036{left:310.133333pt;}
.x9c_c00036{left:311.200000pt;}
.x27_c00036{left:312.666667pt;}
.x80_c00036{left:314.933333pt;}
.x1b_c00036{left:316.266667pt;}
.x4c_c00036{left:317.333333pt;}
.x44_c00036{left:321.600000pt;}
.x2a_c00036{left:323.333333pt;}
.x4a_c00036{left:325.466667pt;}
.x8b_c00036{left:326.533333pt;}
.x14_c00036{left:328.266667pt;}
.x33_c00036{left:330.133333pt;}
.x81_c00036{left:334.800000pt;}
.x2e_c00036{left:336.800000pt;}
.x34_c00036{left:341.066667pt;}
.x60_c00036{left:343.200000pt;}
.x98_c00036{left:344.400000pt;}
.x41_c00036{left:345.333333pt;}
.x66_c00036{left:346.666667pt;}
.x1c_c00036{left:348.533333pt;}
.xc_c00036{left:350.933333pt;}
.x8a_c00036{left:352.533333pt;}
.x35_c00036{left:356.133333pt;}
.x6f_c00036{left:362.133333pt;}
.xaa_c00036{left:375.333333pt;}
.xb0_c00036{left:379.333333pt;}
.xb4_c00036{left:380.800000pt;}
.xab_c00036{left:383.066667pt;}
.xbe_c00036{left:384.000000pt;}
.x148_c00036{left:391.066667pt;}
.x14d_c00036{left:396.533333pt;}
.xb1_c00036{left:399.200000pt;}
.xf3_c00036{left:400.266667pt;}
.xbf_c00036{left:401.866667pt;}
.x108_c00036{left:403.333333pt;}
.x11e_c00036{left:405.333333pt;}
.x112_c00036{left:408.000000pt;}
.x130_c00036{left:410.533333pt;}
.xb5_c00036{left:413.466667pt;}
.xce_c00036{left:414.933333pt;}
.x113_c00036{left:416.666667pt;}
.xc9_c00036{left:417.866667pt;}
.xc0_c00036{left:419.466667pt;}
.xf4_c00036{left:422.400000pt;}
.x10a_c00036{left:423.333333pt;}
.xdc_c00036{left:424.800000pt;}
.xac_c00036{left:426.000000pt;}
.xc8_c00036{left:427.733333pt;}
.xec_c00036{left:430.133333pt;}
.xcf_c00036{left:431.866667pt;}
.xb2_c00036{left:433.466667pt;}
.x139_c00036{left:434.533333pt;}
.xb6_c00036{left:436.133333pt;}
.xdd_c00036{left:439.466667pt;}
.x140_c00036{left:440.533333pt;}
.xfc_c00036{left:441.600000pt;}
.x109_c00036{left:444.666667pt;}
.xed_c00036{left:448.666667pt;}
.x119_c00036{left:450.133333pt;}
.x104_c00036{left:451.200000pt;}
.xb3_c00036{left:452.933333pt;}
.x114_c00036{left:454.133333pt;}
.xb7_c00036{left:455.600000pt;}
.xde_c00036{left:457.733333pt;}
.xe8_c00036{left:459.066667pt;}
.xfd_c00036{left:460.133333pt;}
.x122_c00036{left:461.066667pt;}
.xf8_c00036{left:463.066667pt;}
.x11f_c00036{left:464.666667pt;}
.xe3_c00036{left:465.600000pt;}
.x13a_c00036{left:466.533333pt;}
.x10b_c00036{left:467.466667pt;}
.xee_c00036{left:469.466667pt;}
.xb8_c00036{left:470.933333pt;}
.x12e_c00036{left:473.466667pt;}
.xc1_c00036{left:474.533333pt;}
.x123_c00036{left:477.066667pt;}
.x129_c00036{left:478.666667pt;}
.xf6_c00036{left:480.000000pt;}
.x134_c00036{left:482.533333pt;}
.xc2_c00036{left:483.866667pt;}
.x10c_c00036{left:484.800000pt;}
.x105_c00036{left:486.133333pt;}
.xd0_c00036{left:487.866667pt;}
.xd7_c00036{left:489.733333pt;}
.xad_c00036{left:491.866667pt;}
.xfe_c00036{left:493.066667pt;}
.xca_c00036{left:494.266667pt;}
.x106_c00036{left:496.400000pt;}
.x12a_c00036{left:499.200000pt;}
.x10d_c00036{left:500.800000pt;}
.xae_c00036{left:504.400000pt;}
.x115_c00036{left:506.533333pt;}
.x135_c00036{left:507.466667pt;}
.x14a_c00036{left:509.200000pt;}
.x13e_c00036{left:510.400000pt;}
.xb9_c00036{left:512.533333pt;}
.xc3_c00036{left:514.266667pt;}
.xf5_c00036{left:516.133333pt;}
.x124_c00036{left:517.066667pt;}
.xf9_c00036{left:518.400000pt;}
.xd1_c00036{left:520.133333pt;}
.xcb_c00036{left:521.733333pt;}
.xef_c00036{left:523.600000pt;}
.x13d_c00036{left:524.666667pt;}
.x107_c00036{left:525.866667pt;}
.xc4_c00036{left:528.933333pt;}
.xf7_c00036{left:532.133333pt;}
.xaf_c00036{left:535.466667pt;}
.xba_c00036{left:536.800000pt;}
.xff_c00036{left:537.866667pt;}
.xd2_c00036{left:540.000000pt;}
.xf0_c00036{left:542.800000pt;}
.x147_c00036{left:543.866667pt;}
.xdf_c00036{left:545.066667pt;}
.x100_c00036{left:546.133333pt;}
.x141_c00036{left:547.066667pt;}
.x11b_c00036{left:548.266667pt;}
.xd8_c00036{left:551.200000pt;}
.x136_c00036{left:552.266667pt;}
.x138_c00036{left:553.866667pt;}
.x127_c00036{left:554.800000pt;}
.x120_c00036{left:556.133333pt;}
.x10e_c00036{left:557.466667pt;}
.x12c_c00036{left:558.400000pt;}
.xc5_c00036{left:559.600000pt;}
.x144_c00036{left:561.200000pt;}
.x146_c00036{left:562.933333pt;}
.xe0_c00036{left:564.266667pt;}
.xbb_c00036{left:566.266667pt;}
.x116_c00036{left:569.200000pt;}
.xd9_c00036{left:571.333333pt;}
.x12d_c00036{left:572.800000pt;}
.xe5_c00036{left:574.266667pt;}
.x101_c00036{left:577.200000pt;}
.x125_c00036{left:578.533333pt;}
.xc6_c00036{left:579.733333pt;}
.x143_c00036{left:580.800000pt;}
.xbc_c00036{left:582.000000pt;}
.x131_c00036{left:584.400000pt;}
.xfa_c00036{left:585.600000pt;}
.x149_c00036{left:587.600000pt;}
.xda_c00036{left:590.266667pt;}
.xe9_c00036{left:592.133333pt;}
.x10f_c00036{left:596.133333pt;}
.xd3_c00036{left:597.600000pt;}
.xe6_c00036{left:600.133333pt;}
.x11c_c00036{left:601.066667pt;}
.xcc_c00036{left:602.666667pt;}
.x13b_c00036{left:605.733333pt;}
.xd4_c00036{left:607.866667pt;}
.x102_c00036{left:609.866667pt;}
.x145_c00036{left:610.800000pt;}
.xc7_c00036{left:614.933333pt;}
.x132_c00036{left:616.133333pt;}
.x117_c00036{left:618.533333pt;}
.x11a_c00036{left:620.666667pt;}
.xbd_c00036{left:622.666667pt;}
.x121_c00036{left:624.266667pt;}
.x14b_c00036{left:625.333333pt;}
.x118_c00036{left:626.800000pt;}
.x110_c00036{left:628.400000pt;}
.xcd_c00036{left:629.866667pt;}
.x13f_c00036{left:630.933333pt;}
.x12f_c00036{left:631.866667pt;}
.xfb_c00036{left:632.933333pt;}
.xf1_c00036{left:637.200000pt;}
.xea_c00036{left:639.466667pt;}
.xd5_c00036{left:640.533333pt;}
.xe1_c00036{left:642.266667pt;}
.x103_c00036{left:644.133333pt;}
.xdb_c00036{left:646.533333pt;}
.xd6_c00036{left:648.533333pt;}
.x12b_c00036{left:649.466667pt;}
.xe2_c00036{left:650.533333pt;}
.x111_c00036{left:652.133333pt;}
.x14e_c00036{left:655.466667pt;}
.xf2_c00036{left:657.066667pt;}
.x137_c00036{left:658.800000pt;}
.x126_c00036{left:660.400000pt;}
.xe7_c00036{left:661.600000pt;}
.x14c_c00036{left:665.333333pt;}
.x2_c00036{left:666.266667pt;}
.xe4_c00036{left:667.200000pt;}
.x128_c00036{left:670.400000pt;}
.xeb_c00036{left:671.733333pt;}
.x11d_c00036{left:677.333333pt;}
.x142_c00036{left:680.933333pt;}
.x133_c00036{left:688.133333pt;}
.x13c_c00036{left:697.200000pt;}
}





/* 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_c00037 {
    display:none;
  }
  .loading-indicator_c00037.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00037 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_c00037 { 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_c00037" -> "#page-container .classname_c00037")
 */
.pf_c00037 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00037 { /* 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_c00037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00037 { /* 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_c00037 { /* 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_c00037 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00037 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00037 {overflow:visible;}
  }
}
.c_c00037 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00037 { /* 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_c00037:after { /* webkit #35443 */
  content: '';
}
.t_c00037:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00037 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 */
}
.__c00037 { /* 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_c00037 { /* info for Javascript */
  display:none;
}
.l_c00037 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00037 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00037 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00037: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_c00037 {
    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_c00037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00037.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_c00037 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00037;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.000000;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;}
.mfe_c00037{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00037{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00037{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m100_c00037{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00037{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m71_c00037{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md2_c00037{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m38_c00037{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m88_c00037{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00037{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m63_c00037{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m13_c00037{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m27_c00037{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mda_c00037{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.me8_c00037{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00037{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00037{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00037{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00037{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00037{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00037{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00037{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00037{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m51_c00037{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m22_c00037{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m86_c00037{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m58_c00037{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.maf_c00037{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.me4_c00037{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00037{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00037{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mab_c00037{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00037{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m90_c00037{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mef_c00037{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m87_c00037{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00037{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00037{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md6_c00037{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m31_c00037{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m89_c00037{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00037{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m74_c00037{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00037{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m26_c00037{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00037{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m73_c00037{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00037{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m15_c00037{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md1_c00037{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m70_c00037{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mac_c00037{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00037{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00037{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m93_c00037{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00037{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m23_c00037{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m25_c00037{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00037{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00037{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m102_c00037{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m9_c00037{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00037{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md8_c00037{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me5_c00037{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc_c00037{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m54_c00037{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m91_c00037{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md7_c00037{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00037{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00037{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00037{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m98_c00037{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.ma_c00037{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00037{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m101_c00037{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m75_c00037{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m92_c00037{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4_c00037{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mec_c00037{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m20_c00037{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00037{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00037{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00037{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00037{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00037{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m50_c00037{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m45_c00037{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00037{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m64_c00037{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00037{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m18_c00037{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00037{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00037{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me1_c00037{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m49_c00037{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md4_c00037{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00037{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m30_c00037{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m37_c00037{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m72_c00037{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00037{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00037{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00037{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00037{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mf_c00037{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m39_c00037{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m17_c00037{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md_c00037{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me7_c00037{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m44_c00037{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00037{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mb_c00037{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00037{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mea_c00037{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00037{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00037{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m61_c00037{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00037{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m19_c00037{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00037{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00037{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m14_c00037{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00037{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00037{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m96_c00037{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00037{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00037{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mae_c00037{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m43_c00037{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m69_c00037{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m40_c00037{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m29_c00037{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00037{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m32_c00037{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m56_c00037{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.meb_c00037{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00037{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m28_c00037{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00037{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m77_c00037{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m76_c00037{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m8_c00037{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00037{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m60_c00037{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00037{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00037{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m57_c00037{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m21_c00037{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00037{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10_c00037{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00037{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00037{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00037{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.med_c00037{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00037{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00037{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m80_c00037{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md5_c00037{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m53_c00037{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m16_c00037{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00037{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00037{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m36_c00037{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.md3_c00037{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m12_c00037{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mad_c00037{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00037{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00037{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00037{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m62_c00037{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00037{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m99_c00037{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00037{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m11_c00037{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00037{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m66_c00037{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m46_c00037{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m97_c00037{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me6_c00037{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.md0_c00037{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m55_c00037{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2_c00037{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m104_c00037{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m82_c00037{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00037{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m65_c00037{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00037{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00037{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m52_c00037{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3_c00037{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m84_c00037{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m94_c00037{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00037{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6_c00037{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me_c00037{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00037{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m81_c00037{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m0_c00037{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m48_c00037{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00037{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00037{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m78_c00037{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00037{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00037{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00037{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m95_c00037{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.me2_c00037{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m103_c00037{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m33_c00037{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.maa_c00037{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00037{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00037{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m67_c00037{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mde_c00037{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00037{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00037{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mce_c00037{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m42_c00037{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5_c00037{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00037{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00037{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00037{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00037{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m79_c00037{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m59_c00037{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00037{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m35_c00037{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00037{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md9_c00037{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00037{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m34_c00037{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00037{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00037{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m24_c00037{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00037{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m83_c00037{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mff_c00037{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00037{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00037{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00037{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m41_c00037{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00037{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00037{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m68_c00037{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mca_c00037{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me3_c00037{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me0_c00037{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00037{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00037{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mba_c00037{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00037{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mee_c00037{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00037{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m7_c00037{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00037{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00037{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m85_c00037{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m47_c00037{transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);}
.me9_c00037{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(0.360500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360500,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls0_c00037{letter-spacing:0.000000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{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__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00037{word-spacing:-8.309278px;}
.ws1_c00037{word-spacing:-6.903780px;}
.ws2_c00037{word-spacing:-4.166667px;}
.ws0_c00037{word-spacing:-1.657682px;}
.ws6_c00037{word-spacing:-1.500000px;}
.ws7_c00037{word-spacing:0.000000px;}
.ws4_c00037{word-spacing:1.343643px;}
.ws3_c00037{word-spacing:4.012739px;}
.fc0_c00037{color:transparent;}
.fs1_c00037{font-size:60.000000px;}
.fs2_c00037{font-size:66.000000px;}
.fs3_c00037{font-size:72.000000px;}
.fs0_c00037{font-size:78.000000px;}
.y0_c00037{bottom:0.000000px;}
.y65_c00037{bottom:191.100000px;}
.y33_c00037{bottom:191.400000px;}
.y32_c00037{bottom:209.100000px;}
.y64_c00037{bottom:226.800000px;}
.y31_c00037{bottom:227.100000px;}
.y63_c00037{bottom:244.500000px;}
.y30_c00037{bottom:245.100000px;}
.y62_c00037{bottom:262.500000px;}
.y2f_c00037{bottom:263.100000px;}
.y61_c00037{bottom:280.500000px;}
.y2e_c00037{bottom:280.800000px;}
.y60_c00037{bottom:298.200000px;}
.y2d_c00037{bottom:299.100000px;}
.y5f_c00037{bottom:316.200000px;}
.y2c_c00037{bottom:316.800000px;}
.y2b_c00037{bottom:334.500000px;}
.y5e_c00037{bottom:335.250000px;}
.y5d_c00037{bottom:352.500000px;}
.y2a_c00037{bottom:354.300000px;}
.y5c_c00037{bottom:369.750000px;}
.y29_c00037{bottom:373.200000px;}
.y28_c00037{bottom:392.700000px;}
.y5b_c00037{bottom:396.000000px;}
.y27_c00037{bottom:411.000000px;}
.y5a_c00037{bottom:414.000000px;}
.y26_c00037{bottom:428.700000px;}
.y59_c00037{bottom:431.700000px;}
.y25_c00037{bottom:446.700000px;}
.y58_c00037{bottom:449.700000px;}
.y24_c00037{bottom:464.400000px;}
.y57_c00037{bottom:467.700000px;}
.y23_c00037{bottom:482.400000px;}
.y56_c00037{bottom:485.700000px;}
.y22_c00037{bottom:500.400000px;}
.y55_c00037{bottom:503.700000px;}
.y21_c00037{bottom:518.100000px;}
.y54_c00037{bottom:521.700000px;}
.y20_c00037{bottom:536.100000px;}
.y53_c00037{bottom:539.400000px;}
.y1f_c00037{bottom:554.100000px;}
.y52_c00037{bottom:557.700000px;}
.y1e_c00037{bottom:572.100000px;}
.y51_c00037{bottom:575.700000px;}
.y1d_c00037{bottom:592.200000px;}
.y50_c00037{bottom:593.400000px;}
.y4f_c00037{bottom:611.400000px;}
.y1c_c00037{bottom:612.000000px;}
.y4e_c00037{bottom:629.100000px;}
.y1b_c00037{bottom:629.700000px;}
.y4d_c00037{bottom:646.800000px;}
.y1a_c00037{bottom:647.700000px;}
.y19_c00037{bottom:665.700000px;}
.y4c_c00037{bottom:665.850000px;}
.y4b_c00037{bottom:683.850000px;}
.y18_c00037{bottom:686.850000px;}
.y4a_c00037{bottom:700.800000px;}
.y17_c00037{bottom:705.900000px;}
.y49_c00037{bottom:718.800000px;}
.y16_c00037{bottom:723.900000px;}
.y48_c00037{bottom:737.100000px;}
.y15_c00037{bottom:741.600000px;}
.y47_c00037{bottom:754.800000px;}
.y14_c00037{bottom:759.300000px;}
.y46_c00037{bottom:772.500000px;}
.y13_c00037{bottom:777.300000px;}
.y45_c00037{bottom:790.500000px;}
.y12_c00037{bottom:795.600000px;}
.y44_c00037{bottom:808.500000px;}
.y43_c00037{bottom:826.500000px;}
.y11_c00037{bottom:830.550000px;}
.y42_c00037{bottom:844.200000px;}
.y10_c00037{bottom:848.550000px;}
.y41_c00037{bottom:861.900000px;}
.y40_c00037{bottom:879.900000px;}
.yf_c00037{bottom:883.500000px;}
.y3f_c00037{bottom:897.900000px;}
.ye_c00037{bottom:901.800000px;}
.y3e_c00037{bottom:915.600000px;}
.yd_c00037{bottom:919.800000px;}
.y3d_c00037{bottom:933.600000px;}
.yc_c00037{bottom:937.800000px;}
.y3c_c00037{bottom:951.300000px;}
.yb_c00037{bottom:956.100000px;}
.y3b_c00037{bottom:969.300000px;}
.ya_c00037{bottom:973.050000px;}
.y3a_c00037{bottom:987.000000px;}
.y9_c00037{bottom:991.050000px;}
.y39_c00037{bottom:1005.000000px;}
.y8_c00037{bottom:1008.750000px;}
.y38_c00037{bottom:1022.700000px;}
.y7_c00037{bottom:1026.750000px;}
.y37_c00037{bottom:1040.700000px;}
.y6_c00037{bottom:1048.350000px;}
.y36_c00037{bottom:1058.700000px;}
.y5_c00037{bottom:1066.650000px;}
.y4_c00037{bottom:1085.700000px;}
.y3_c00037{bottom:1102.350000px;}
.y35_c00037{bottom:1103.400000px;}
.y2_c00037{bottom:1120.350000px;}
.y34_c00037{bottom:1121.400000px;}
.y1_c00037{bottom:1147.350000px;}
.h3_c00037{height:60.000000px;}
.h4_c00037{height:66.000000px;}
.h5_c00037{height:72.000000px;}
.h2_c00037{height:78.000000px;}
.h0_c00037{height:1271.160094px;}
.h1_c00037{height:1271.250000px;}
.w0_c00037{width:948.600036px;}
.w1_c00037{width:948.750000px;}
.x0_c00037{left:0.000000px;}
.xa5_c00037{left:166.500000px;}
.xa2_c00037{left:167.850000px;}
.x98_c00037{left:168.900000px;}
.x8b_c00037{left:169.950000px;}
.x76_c00037{left:171.000000px;}
.x66_c00037{left:172.350000px;}
.x48_c00037{left:174.000000px;}
.x31_c00037{left:175.350000px;}
.x3_c00037{left:176.700000px;}
.x1_c00037{left:177.900000px;}
.xa0_c00037{left:184.200000px;}
.x8c_c00037{left:186.150000px;}
.x9c_c00037{left:187.500000px;}
.x71_c00037{left:189.300000px;}
.x56_c00037{left:191.550000px;}
.x1c_c00037{left:194.400000px;}
.x4f_c00037{left:196.650000px;}
.x90_c00037{left:198.000000px;}
.x15_c00037{left:201.900000px;}
.x9_c00037{left:203.100000px;}
.x4_c00037{left:204.750000px;}
.x42_c00037{left:207.300000px;}
.x5c_c00037{left:209.100000px;}
.x83_c00037{left:211.650000px;}
.xe_c00037{left:212.700000px;}
.x3c_c00037{left:214.950000px;}
.x6b_c00037{left:216.000000px;}
.x9d_c00037{left:217.800000px;}
.x67_c00037{left:219.900000px;}
.x99_c00037{left:221.850000px;}
.x16_c00037{left:224.550000px;}
.x25_c00037{left:228.450000px;}
.x50_c00037{left:229.800000px;}
.x32_c00037{left:230.850000px;}
.xa1_c00037{left:233.100000px;}
.x43_c00037{left:236.400000px;}
.x6d_c00037{left:238.500000px;}
.x9e_c00037{left:240.450000px;}
.x1d_c00037{left:242.250000px;}
.x94_c00037{left:243.450000px;}
.x1b_c00037{left:244.650000px;}
.xf_c00037{left:246.150000px;}
.x5d_c00037{left:247.200000px;}
.x6e_c00037{left:248.250000px;}
.x53_c00037{left:250.650000px;}
.x26_c00037{left:252.900000px;}
.xa_c00037{left:256.050000px;}
.x44_c00037{left:258.000000px;}
.x7b_c00037{left:260.250000px;}
.x96_c00037{left:261.750000px;}
.x8d_c00037{left:264.300000px;}
.x1e_c00037{left:265.650000px;}
.x2c_c00037{left:266.850000px;}
.x84_c00037{left:268.200000px;}
.x5_c00037{left:269.250000px;}
.x63_c00037{left:271.350000px;}
.x27_c00037{left:274.200000px;}
.x72_c00037{left:278.250000px;}
.x4e_c00037{left:280.050000px;}
.x89_c00037{left:281.100000px;}
.x5e_c00037{left:282.150000px;}
.x3d_c00037{left:284.850000px;}
.x91_c00037{left:285.900000px;}
.x9b_c00037{left:287.100000px;}
.x85_c00037{left:288.750000px;}
.x68_c00037{left:290.850000px;}
.x45_c00037{left:292.500000px;}
.x38_c00037{left:296.400000px;}
.x49_c00037{left:298.200000px;}
.xa3_c00037{left:299.400000px;}
.x10_c00037{left:300.900000px;}
.x69_c00037{left:304.200000px;}
.x46_c00037{left:306.600000px;}
.x54_c00037{left:308.700000px;}
.x9a_c00037{left:310.500000px;}
.x77_c00037{left:311.850000px;}
.x4a_c00037{left:314.100000px;}
.x1f_c00037{left:317.550000px;}
.x5f_c00037{left:319.200000px;}
.x6_c00037{left:324.300000px;}
.xa4_c00037{left:325.350000px;}
.x6c_c00037{left:326.550000px;}
.x33_c00037{left:327.600000px;}
.x2d_c00037{left:329.100000px;}
.x6f_c00037{left:330.750000px;}
.x28_c00037{left:332.550000px;}
.x20_c00037{left:334.500000px;}
.x55_c00037{left:336.000000px;}
.x7f_c00037{left:339.150000px;}
.x95_c00037{left:340.350000px;}
.x3e_c00037{left:342.150000px;}
.x17_c00037{left:343.650000px;}
.x51_c00037{left:346.050000px;}
.x57_c00037{left:347.250000px;}
.x73_c00037{left:351.000000px;}
.x60_c00037{left:352.350000px;}
.x39_c00037{left:354.000000px;}
.x86_c00037{left:355.650000px;}
.x21_c00037{left:357.150000px;}
.x58_c00037{left:361.650000px;}
.x7c_c00037{left:362.850000px;}
.x47_c00037{left:367.050000px;}
.x8e_c00037{left:368.700000px;}
.x7_c00037{left:370.050000px;}
.xb_c00037{left:371.250000px;}
.x4b_c00037{left:372.450000px;}
.x52_c00037{left:376.350000px;}
.x3f_c00037{left:378.150000px;}
.x92_c00037{left:380.250000px;}
.x18_c00037{left:381.450000px;}
.x11_c00037{left:384.450000px;}
.xa6_c00037{left:385.500000px;}
.x34_c00037{left:387.300000px;}
.x7d_c00037{left:389.100000px;}
.x87_c00037{left:390.600000px;}
.x6a_c00037{left:392.850000px;}
.xc_c00037{left:395.400000px;}
.x4c_c00037{left:396.900000px;}
.x81_c00037{left:401.700000px;}
.x40_c00037{left:404.850000px;}
.x19_c00037{left:405.900000px;}
.x22_c00037{left:407.850000px;}
.x2e_c00037{left:409.350000px;}
.x35_c00037{left:412.200000px;}
.x82_c00037{left:414.600000px;}
.x29_c00037{left:417.150000px;}
.x2_c00037{left:419.100000px;}
.x2f_c00037{left:420.150000px;}
.x97_c00037{left:421.950000px;}
.x74_c00037{left:425.100000px;}
.x59_c00037{left:428.250000px;}
.x8f_c00037{left:429.900000px;}
.x61_c00037{left:431.550000px;}
.x36_c00037{left:432.750000px;}
.x41_c00037{left:434.400000px;}
.x78_c00037{left:436.350000px;}
.x70_c00037{left:439.200000px;}
.x8_c00037{left:440.250000px;}
.x3a_c00037{left:442.200000px;}
.x80_c00037{left:443.550000px;}
.x12_c00037{left:444.900000px;}
.x23_c00037{left:446.700000px;}
.x5a_c00037{left:448.050000px;}
.x88_c00037{left:449.550000px;}
.x2a_c00037{left:452.100000px;}
.x62_c00037{left:453.150000px;}
.x30_c00037{left:454.350000px;}
.x1a_c00037{left:458.100000px;}
.xd_c00037{left:462.300000px;}
.x3b_c00037{left:464.100000px;}
.x7e_c00037{left:465.750000px;}
.x79_c00037{left:466.950000px;}
.x2b_c00037{left:468.000000px;}
.x4d_c00037{left:471.900000px;}
.x9f_c00037{left:474.150000px;}
.x93_c00037{left:475.650000px;}
.x7a_c00037{left:478.800000px;}
.x64_c00037{left:480.900000px;}
.x5b_c00037{left:483.300000px;}
.x24_c00037{left:485.250000px;}
.x13_c00037{left:486.300000px;}
.x37_c00037{left:487.800000px;}
.x8a_c00037{left:490.350000px;}
.x75_c00037{left:494.250000px;}
.x65_c00037{left:496.050000px;}
.x14_c00037{left:498.600000px;}
.x14c_c00037{left:522.150000px;}
.x141_c00037{left:523.650000px;}
.x132_c00037{left:524.850000px;}
.x122_c00037{left:525.900000px;}
.xf5_c00037{left:527.550000px;}
.xe2_c00037{left:528.600000px;}
.xc4_c00037{left:529.950000px;}
.xa7_c00037{left:531.000000px;}
.x138_c00037{left:540.750000px;}
.x12e_c00037{left:541.800000px;}
.x13e_c00037{left:542.850000px;}
.xe3_c00037{left:544.050000px;}
.xd7_c00037{left:546.750000px;}
.xbd_c00037{left:549.000000px;}
.x144_c00037{left:551.700000px;}
.xaf_c00037{left:552.900000px;}
.xd1_c00037{left:556.650000px;}
.xa8_c00037{left:560.100000px;}
.x142_c00037{left:561.150000px;}
.x11b_c00037{left:564.600000px;}
.x129_c00037{left:566.100000px;}
.x110_c00037{left:568.650000px;}
.xf3_c00037{left:569.850000px;}
.xfd_c00037{left:571.050000px;}
.x139_c00037{left:572.100000px;}
.x136_c00037{left:574.200000px;}
.xbe_c00037{left:575.700000px;}
.x107_c00037{left:577.650000px;}
.xd8_c00037{left:579.450000px;}
.xa9_c00037{left:582.450000px;}
.x112_c00037{left:584.700000px;}
.x10d_c00037{left:586.500000px;}
.xb0_c00037{left:589.950000px;}
.x111_c00037{left:592.050000px;}
.x119_c00037{left:594.600000px;}
.x12f_c00037{left:596.100000px;}
.xd9_c00037{left:597.750000px;}
.x104_c00037{left:598.950000px;}
.xb6_c00037{left:600.450000px;}
.x124_c00037{left:603.750000px;}
.xc5_c00037{left:604.800000px;}
.x146_c00037{left:606.750000px;}
.xb7_c00037{left:608.700000px;}
.x105_c00037{left:611.850000px;}
.x12c_c00037{left:613.500000px;}
.xf6_c00037{left:615.750000px;}
.x13f_c00037{left:616.950000px;}
.xcc_c00037{left:620.550000px;}
.xc6_c00037{left:621.750000px;}
.xb1_c00037{left:624.150000px;}
.xe6_c00037{left:625.200000px;}
.x11c_c00037{left:626.850000px;}
.xd2_c00037{left:628.050000px;}
.xfe_c00037{left:631.200000px;}
.x130_c00037{left:634.200000px;}
.xbf_c00037{left:635.850000px;}
.xe4_c00037{left:638.400000px;}
.x116_c00037{left:639.600000px;}
.x14e_c00037{left:641.850000px;}
.xda_c00037{left:643.050000px;}
.x147_c00037{left:644.250000px;}
.x133_c00037{left:646.950000px;}
.x10e_c00037{left:649.200000px;}
.xaa_c00037{left:651.600000px;}
.x113_c00037{left:653.100000px;}
.xd3_c00037{left:654.300000px;}
.x10b_c00037{left:657.450000px;}
.x11d_c00037{left:659.550000px;}
.xc7_c00037{left:661.350000px;}
.xab_c00037{left:662.700000px;}
.xf4_c00037{left:663.900000px;}
.x125_c00037{left:665.250000px;}
.x131_c00037{left:666.600000px;}
.x14d_c00037{left:668.400000px;}
.xb2_c00037{left:669.900000px;}
.xe7_c00037{left:671.250000px;}
.xcd_c00037{left:672.300000px;}
.xdb_c00037{left:673.350000px;}
.x145_c00037{left:675.900000px;}
.x143_c00037{left:678.150000px;}
.xdf_c00037{left:679.800000px;}
.x127_c00037{left:680.850000px;}
.x13b_c00037{left:681.900000px;}
.xf7_c00037{left:683.400000px;}
.xb8_c00037{left:685.350000px;}
.xc8_c00037{left:686.850000px;}
.x12b_c00037{left:687.900000px;}
.xe8_c00037{left:689.250000px;}
.x134_c00037{left:690.900000px;}
.x114_c00037{left:691.950000px;}
.xc0_c00037{left:693.450000px;}
.xb9_c00037{left:694.650000px;}
.x11e_c00037{left:697.350000px;}
.x117_c00037{left:699.300000px;}
.xe0_c00037{left:700.350000px;}
.xff_c00037{left:703.500000px;}
.xf8_c00037{left:706.050000px;}
.xc1_c00037{left:707.100000px;}
.xec_c00037{left:708.300000px;}
.x11f_c00037{left:710.250000px;}
.xb3_c00037{left:711.600000px;}
.xdc_c00037{left:713.700000px;}
.x12d_c00037{left:717.900000px;}
.x11a_c00037{left:723.000000px;}
.xef_c00037{left:724.950000px;}
.xac_c00037{left:727.200000px;}
.xba_c00037{left:729.150000px;}
.xe9_c00037{left:731.700000px;}
.x118_c00037{left:733.500000px;}
.xb4_c00037{left:735.000000px;}
.xc2_c00037{left:738.750000px;}
.x149_c00037{left:741.300000px;}
.xbb_c00037{left:743.550000px;}
.xf0_c00037{left:744.750000px;}
.xc9_c00037{left:748.350000px;}
.x108_c00037{left:750.450000px;}
.xea_c00037{left:753.300000px;}
.x100_c00037{left:754.350000px;}
.x120_c00037{left:756.750000px;}
.xdd_c00037{left:757.950000px;}
.xfb_c00037{left:759.300000px;}
.x13c_c00037{left:760.350000px;}
.x10c_c00037{left:761.550000px;}
.xad_c00037{left:766.050000px;}
.xd4_c00037{left:767.700000px;}
.x12a_c00037{left:769.500000px;}
.xed_c00037{left:772.050000px;}
.x101_c00037{left:774.150000px;}
.x13a_c00037{left:776.850000px;}
.x106_c00037{left:778.200000px;}
.xce_c00037{left:780.600000px;}
.x14a_c00037{left:782.400000px;}
.x126_c00037{left:784.350000px;}
.x10f_c00037{left:787.350000px;}
.x137_c00037{left:790.200000px;}
.xde_c00037{left:792.150000px;}
.xb5_c00037{left:793.350000px;}
.xcf_c00037{left:795.750000px;}
.xd5_c00037{left:798.000000px;}
.xbc_c00037{left:799.650000px;}
.xc3_c00037{left:802.500000px;}
.xca_c00037{left:804.900000px;}
.xf1_c00037{left:807.450000px;}
.xe1_c00037{left:809.100000px;}
.xf9_c00037{left:811.200000px;}
.xeb_c00037{left:815.250000px;}
.xf2_c00037{left:819.000000px;}
.x109_c00037{left:822.450000px;}
.x128_c00037{left:824.250000px;}
.x121_c00037{left:826.200000px;}
.x123_c00037{left:827.250000px;}
.x102_c00037{left:829.650000px;}
.x13d_c00037{left:831.000000px;}
.x10a_c00037{left:834.000000px;}
.xd0_c00037{left:835.650000px;}
.xfa_c00037{left:836.700000px;}
.xe5_c00037{left:837.900000px;}
.x135_c00037{left:839.850000px;}
.x148_c00037{left:843.300000px;}
.xae_c00037{left:845.550000px;}
.xee_c00037{left:848.400000px;}
.xcb_c00037{left:849.900000px;}
.x103_c00037{left:851.250000px;}
.xfc_c00037{left:852.900000px;}
.x140_c00037{left:854.550000px;}
.xd6_c00037{left:861.300000px;}
.x14b_c00037{left:864.150000px;}
.x115_c00037{left:866.250000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws5_c00037{word-spacing:-7.386025pt;}
.ws1_c00037{word-spacing:-6.136693pt;}
.ws2_c00037{word-spacing:-3.703704pt;}
.ws0_c00037{word-spacing:-1.473495pt;}
.ws6_c00037{word-spacing:-1.333333pt;}
.ws7_c00037{word-spacing:0.000000pt;}
.ws4_c00037{word-spacing:1.194349pt;}
.ws3_c00037{word-spacing:3.566879pt;}
.fs1_c00037{font-size:53.333333pt;}
.fs2_c00037{font-size:58.666667pt;}
.fs3_c00037{font-size:64.000000pt;}
.fs0_c00037{font-size:69.333333pt;}
.y0_c00037{bottom:0.000000pt;}
.y65_c00037{bottom:169.866667pt;}
.y33_c00037{bottom:170.133333pt;}
.y32_c00037{bottom:185.866667pt;}
.y64_c00037{bottom:201.600000pt;}
.y31_c00037{bottom:201.866667pt;}
.y63_c00037{bottom:217.333333pt;}
.y30_c00037{bottom:217.866667pt;}
.y62_c00037{bottom:233.333333pt;}
.y2f_c00037{bottom:233.866667pt;}
.y61_c00037{bottom:249.333333pt;}
.y2e_c00037{bottom:249.600000pt;}
.y60_c00037{bottom:265.066667pt;}
.y2d_c00037{bottom:265.866667pt;}
.y5f_c00037{bottom:281.066667pt;}
.y2c_c00037{bottom:281.600000pt;}
.y2b_c00037{bottom:297.333333pt;}
.y5e_c00037{bottom:298.000000pt;}
.y5d_c00037{bottom:313.333333pt;}
.y2a_c00037{bottom:314.933333pt;}
.y5c_c00037{bottom:328.666667pt;}
.y29_c00037{bottom:331.733333pt;}
.y28_c00037{bottom:349.066667pt;}
.y5b_c00037{bottom:352.000000pt;}
.y27_c00037{bottom:365.333333pt;}
.y5a_c00037{bottom:368.000000pt;}
.y26_c00037{bottom:381.066667pt;}
.y59_c00037{bottom:383.733333pt;}
.y25_c00037{bottom:397.066667pt;}
.y58_c00037{bottom:399.733333pt;}
.y24_c00037{bottom:412.800000pt;}
.y57_c00037{bottom:415.733333pt;}
.y23_c00037{bottom:428.800000pt;}
.y56_c00037{bottom:431.733333pt;}
.y22_c00037{bottom:444.800000pt;}
.y55_c00037{bottom:447.733333pt;}
.y21_c00037{bottom:460.533333pt;}
.y54_c00037{bottom:463.733333pt;}
.y20_c00037{bottom:476.533333pt;}
.y53_c00037{bottom:479.466667pt;}
.y1f_c00037{bottom:492.533333pt;}
.y52_c00037{bottom:495.733333pt;}
.y1e_c00037{bottom:508.533333pt;}
.y51_c00037{bottom:511.733333pt;}
.y1d_c00037{bottom:526.400000pt;}
.y50_c00037{bottom:527.466667pt;}
.y4f_c00037{bottom:543.466667pt;}
.y1c_c00037{bottom:544.000000pt;}
.y4e_c00037{bottom:559.200000pt;}
.y1b_c00037{bottom:559.733333pt;}
.y4d_c00037{bottom:574.933333pt;}
.y1a_c00037{bottom:575.733333pt;}
.y19_c00037{bottom:591.733333pt;}
.y4c_c00037{bottom:591.866667pt;}
.y4b_c00037{bottom:607.866667pt;}
.y18_c00037{bottom:610.533333pt;}
.y4a_c00037{bottom:622.933333pt;}
.y17_c00037{bottom:627.466667pt;}
.y49_c00037{bottom:638.933333pt;}
.y16_c00037{bottom:643.466667pt;}
.y48_c00037{bottom:655.200000pt;}
.y15_c00037{bottom:659.200000pt;}
.y47_c00037{bottom:670.933333pt;}
.y14_c00037{bottom:674.933333pt;}
.y46_c00037{bottom:686.666667pt;}
.y13_c00037{bottom:690.933333pt;}
.y45_c00037{bottom:702.666667pt;}
.y12_c00037{bottom:707.200000pt;}
.y44_c00037{bottom:718.666667pt;}
.y43_c00037{bottom:734.666667pt;}
.y11_c00037{bottom:738.266667pt;}
.y42_c00037{bottom:750.400000pt;}
.y10_c00037{bottom:754.266667pt;}
.y41_c00037{bottom:766.133333pt;}
.y40_c00037{bottom:782.133333pt;}
.yf_c00037{bottom:785.333333pt;}
.y3f_c00037{bottom:798.133333pt;}
.ye_c00037{bottom:801.600000pt;}
.y3e_c00037{bottom:813.866667pt;}
.yd_c00037{bottom:817.600000pt;}
.y3d_c00037{bottom:829.866667pt;}
.yc_c00037{bottom:833.600000pt;}
.y3c_c00037{bottom:845.600000pt;}
.yb_c00037{bottom:849.866667pt;}
.y3b_c00037{bottom:861.600000pt;}
.ya_c00037{bottom:864.933333pt;}
.y3a_c00037{bottom:877.333333pt;}
.y9_c00037{bottom:880.933333pt;}
.y39_c00037{bottom:893.333333pt;}
.y8_c00037{bottom:896.666667pt;}
.y38_c00037{bottom:909.066667pt;}
.y7_c00037{bottom:912.666667pt;}
.y37_c00037{bottom:925.066667pt;}
.y6_c00037{bottom:931.866667pt;}
.y36_c00037{bottom:941.066667pt;}
.y5_c00037{bottom:948.133333pt;}
.y4_c00037{bottom:965.066667pt;}
.y3_c00037{bottom:979.866667pt;}
.y35_c00037{bottom:980.800000pt;}
.y2_c00037{bottom:995.866667pt;}
.y34_c00037{bottom:996.800000pt;}
.y1_c00037{bottom:1019.866667pt;}
.h3_c00037{height:53.333333pt;}
.h4_c00037{height:58.666667pt;}
.h5_c00037{height:64.000000pt;}
.h2_c00037{height:69.333333pt;}
.h0_c00037{height:1129.920084pt;}
.h1_c00037{height:1130.000000pt;}
.w0_c00037{width:843.200032pt;}
.w1_c00037{width:843.333333pt;}
.x0_c00037{left:0.000000pt;}
.xa5_c00037{left:148.000000pt;}
.xa2_c00037{left:149.200000pt;}
.x98_c00037{left:150.133333pt;}
.x8b_c00037{left:151.066667pt;}
.x76_c00037{left:152.000000pt;}
.x66_c00037{left:153.200000pt;}
.x48_c00037{left:154.666667pt;}
.x31_c00037{left:155.866667pt;}
.x3_c00037{left:157.066667pt;}
.x1_c00037{left:158.133333pt;}
.xa0_c00037{left:163.733333pt;}
.x8c_c00037{left:165.466667pt;}
.x9c_c00037{left:166.666667pt;}
.x71_c00037{left:168.266667pt;}
.x56_c00037{left:170.266667pt;}
.x1c_c00037{left:172.800000pt;}
.x4f_c00037{left:174.800000pt;}
.x90_c00037{left:176.000000pt;}
.x15_c00037{left:179.466667pt;}
.x9_c00037{left:180.533333pt;}
.x4_c00037{left:182.000000pt;}
.x42_c00037{left:184.266667pt;}
.x5c_c00037{left:185.866667pt;}
.x83_c00037{left:188.133333pt;}
.xe_c00037{left:189.066667pt;}
.x3c_c00037{left:191.066667pt;}
.x6b_c00037{left:192.000000pt;}
.x9d_c00037{left:193.600000pt;}
.x67_c00037{left:195.466667pt;}
.x99_c00037{left:197.200000pt;}
.x16_c00037{left:199.600000pt;}
.x25_c00037{left:203.066667pt;}
.x50_c00037{left:204.266667pt;}
.x32_c00037{left:205.200000pt;}
.xa1_c00037{left:207.200000pt;}
.x43_c00037{left:210.133333pt;}
.x6d_c00037{left:212.000000pt;}
.x9e_c00037{left:213.733333pt;}
.x1d_c00037{left:215.333333pt;}
.x94_c00037{left:216.400000pt;}
.x1b_c00037{left:217.466667pt;}
.xf_c00037{left:218.800000pt;}
.x5d_c00037{left:219.733333pt;}
.x6e_c00037{left:220.666667pt;}
.x53_c00037{left:222.800000pt;}
.x26_c00037{left:224.800000pt;}
.xa_c00037{left:227.600000pt;}
.x44_c00037{left:229.333333pt;}
.x7b_c00037{left:231.333333pt;}
.x96_c00037{left:232.666667pt;}
.x8d_c00037{left:234.933333pt;}
.x1e_c00037{left:236.133333pt;}
.x2c_c00037{left:237.200000pt;}
.x84_c00037{left:238.400000pt;}
.x5_c00037{left:239.333333pt;}
.x63_c00037{left:241.200000pt;}
.x27_c00037{left:243.733333pt;}
.x72_c00037{left:247.333333pt;}
.x4e_c00037{left:248.933333pt;}
.x89_c00037{left:249.866667pt;}
.x5e_c00037{left:250.800000pt;}
.x3d_c00037{left:253.200000pt;}
.x91_c00037{left:254.133333pt;}
.x9b_c00037{left:255.200000pt;}
.x85_c00037{left:256.666667pt;}
.x68_c00037{left:258.533333pt;}
.x45_c00037{left:260.000000pt;}
.x38_c00037{left:263.466667pt;}
.x49_c00037{left:265.066667pt;}
.xa3_c00037{left:266.133333pt;}
.x10_c00037{left:267.466667pt;}
.x69_c00037{left:270.400000pt;}
.x46_c00037{left:272.533333pt;}
.x54_c00037{left:274.400000pt;}
.x9a_c00037{left:276.000000pt;}
.x77_c00037{left:277.200000pt;}
.x4a_c00037{left:279.200000pt;}
.x1f_c00037{left:282.266667pt;}
.x5f_c00037{left:283.733333pt;}
.x6_c00037{left:288.266667pt;}
.xa4_c00037{left:289.200000pt;}
.x6c_c00037{left:290.266667pt;}
.x33_c00037{left:291.200000pt;}
.x2d_c00037{left:292.533333pt;}
.x6f_c00037{left:294.000000pt;}
.x28_c00037{left:295.600000pt;}
.x20_c00037{left:297.333333pt;}
.x55_c00037{left:298.666667pt;}
.x7f_c00037{left:301.466667pt;}
.x95_c00037{left:302.533333pt;}
.x3e_c00037{left:304.133333pt;}
.x17_c00037{left:305.466667pt;}
.x51_c00037{left:307.600000pt;}
.x57_c00037{left:308.666667pt;}
.x73_c00037{left:312.000000pt;}
.x60_c00037{left:313.200000pt;}
.x39_c00037{left:314.666667pt;}
.x86_c00037{left:316.133333pt;}
.x21_c00037{left:317.466667pt;}
.x58_c00037{left:321.466667pt;}
.x7c_c00037{left:322.533333pt;}
.x47_c00037{left:326.266667pt;}
.x8e_c00037{left:327.733333pt;}
.x7_c00037{left:328.933333pt;}
.xb_c00037{left:330.000000pt;}
.x4b_c00037{left:331.066667pt;}
.x52_c00037{left:334.533333pt;}
.x3f_c00037{left:336.133333pt;}
.x92_c00037{left:338.000000pt;}
.x18_c00037{left:339.066667pt;}
.x11_c00037{left:341.733333pt;}
.xa6_c00037{left:342.666667pt;}
.x34_c00037{left:344.266667pt;}
.x7d_c00037{left:345.866667pt;}
.x87_c00037{left:347.200000pt;}
.x6a_c00037{left:349.200000pt;}
.xc_c00037{left:351.466667pt;}
.x4c_c00037{left:352.800000pt;}
.x81_c00037{left:357.066667pt;}
.x40_c00037{left:359.866667pt;}
.x19_c00037{left:360.800000pt;}
.x22_c00037{left:362.533333pt;}
.x2e_c00037{left:363.866667pt;}
.x35_c00037{left:366.400000pt;}
.x82_c00037{left:368.533333pt;}
.x29_c00037{left:370.800000pt;}
.x2_c00037{left:372.533333pt;}
.x2f_c00037{left:373.466667pt;}
.x97_c00037{left:375.066667pt;}
.x74_c00037{left:377.866667pt;}
.x59_c00037{left:380.666667pt;}
.x8f_c00037{left:382.133333pt;}
.x61_c00037{left:383.600000pt;}
.x36_c00037{left:384.666667pt;}
.x41_c00037{left:386.133333pt;}
.x78_c00037{left:387.866667pt;}
.x70_c00037{left:390.400000pt;}
.x8_c00037{left:391.333333pt;}
.x3a_c00037{left:393.066667pt;}
.x80_c00037{left:394.266667pt;}
.x12_c00037{left:395.466667pt;}
.x23_c00037{left:397.066667pt;}
.x5a_c00037{left:398.266667pt;}
.x88_c00037{left:399.600000pt;}
.x2a_c00037{left:401.866667pt;}
.x62_c00037{left:402.800000pt;}
.x30_c00037{left:403.866667pt;}
.x1a_c00037{left:407.200000pt;}
.xd_c00037{left:410.933333pt;}
.x3b_c00037{left:412.533333pt;}
.x7e_c00037{left:414.000000pt;}
.x79_c00037{left:415.066667pt;}
.x2b_c00037{left:416.000000pt;}
.x4d_c00037{left:419.466667pt;}
.x9f_c00037{left:421.466667pt;}
.x93_c00037{left:422.800000pt;}
.x7a_c00037{left:425.600000pt;}
.x64_c00037{left:427.466667pt;}
.x5b_c00037{left:429.600000pt;}
.x24_c00037{left:431.333333pt;}
.x13_c00037{left:432.266667pt;}
.x37_c00037{left:433.600000pt;}
.x8a_c00037{left:435.866667pt;}
.x75_c00037{left:439.333333pt;}
.x65_c00037{left:440.933333pt;}
.x14_c00037{left:443.200000pt;}
.x14c_c00037{left:464.133333pt;}
.x141_c00037{left:465.466667pt;}
.x132_c00037{left:466.533333pt;}
.x122_c00037{left:467.466667pt;}
.xf5_c00037{left:468.933333pt;}
.xe2_c00037{left:469.866667pt;}
.xc4_c00037{left:471.066667pt;}
.xa7_c00037{left:472.000000pt;}
.x138_c00037{left:480.666667pt;}
.x12e_c00037{left:481.600000pt;}
.x13e_c00037{left:482.533333pt;}
.xe3_c00037{left:483.600000pt;}
.xd7_c00037{left:486.000000pt;}
.xbd_c00037{left:488.000000pt;}
.x144_c00037{left:490.400000pt;}
.xaf_c00037{left:491.466667pt;}
.xd1_c00037{left:494.800000pt;}
.xa8_c00037{left:497.866667pt;}
.x142_c00037{left:498.800000pt;}
.x11b_c00037{left:501.866667pt;}
.x129_c00037{left:503.200000pt;}
.x110_c00037{left:505.466667pt;}
.xf3_c00037{left:506.533333pt;}
.xfd_c00037{left:507.600000pt;}
.x139_c00037{left:508.533333pt;}
.x136_c00037{left:510.400000pt;}
.xbe_c00037{left:511.733333pt;}
.x107_c00037{left:513.466667pt;}
.xd8_c00037{left:515.066667pt;}
.xa9_c00037{left:517.733333pt;}
.x112_c00037{left:519.733333pt;}
.x10d_c00037{left:521.333333pt;}
.xb0_c00037{left:524.400000pt;}
.x111_c00037{left:526.266667pt;}
.x119_c00037{left:528.533333pt;}
.x12f_c00037{left:529.866667pt;}
.xd9_c00037{left:531.333333pt;}
.x104_c00037{left:532.400000pt;}
.xb6_c00037{left:533.733333pt;}
.x124_c00037{left:536.666667pt;}
.xc5_c00037{left:537.600000pt;}
.x146_c00037{left:539.333333pt;}
.xb7_c00037{left:541.066667pt;}
.x105_c00037{left:543.866667pt;}
.x12c_c00037{left:545.333333pt;}
.xf6_c00037{left:547.333333pt;}
.x13f_c00037{left:548.400000pt;}
.xcc_c00037{left:551.600000pt;}
.xc6_c00037{left:552.666667pt;}
.xb1_c00037{left:554.800000pt;}
.xe6_c00037{left:555.733333pt;}
.x11c_c00037{left:557.200000pt;}
.xd2_c00037{left:558.266667pt;}
.xfe_c00037{left:561.066667pt;}
.x130_c00037{left:563.733333pt;}
.xbf_c00037{left:565.200000pt;}
.xe4_c00037{left:567.466667pt;}
.x116_c00037{left:568.533333pt;}
.x14e_c00037{left:570.533333pt;}
.xda_c00037{left:571.600000pt;}
.x147_c00037{left:572.666667pt;}
.x133_c00037{left:575.066667pt;}
.x10e_c00037{left:577.066667pt;}
.xaa_c00037{left:579.200000pt;}
.x113_c00037{left:580.533333pt;}
.xd3_c00037{left:581.600000pt;}
.x10b_c00037{left:584.400000pt;}
.x11d_c00037{left:586.266667pt;}
.xc7_c00037{left:587.866667pt;}
.xab_c00037{left:589.066667pt;}
.xf4_c00037{left:590.133333pt;}
.x125_c00037{left:591.333333pt;}
.x131_c00037{left:592.533333pt;}
.x14d_c00037{left:594.133333pt;}
.xb2_c00037{left:595.466667pt;}
.xe7_c00037{left:596.666667pt;}
.xcd_c00037{left:597.600000pt;}
.xdb_c00037{left:598.533333pt;}
.x145_c00037{left:600.800000pt;}
.x143_c00037{left:602.800000pt;}
.xdf_c00037{left:604.266667pt;}
.x127_c00037{left:605.200000pt;}
.x13b_c00037{left:606.133333pt;}
.xf7_c00037{left:607.466667pt;}
.xb8_c00037{left:609.200000pt;}
.xc8_c00037{left:610.533333pt;}
.x12b_c00037{left:611.466667pt;}
.xe8_c00037{left:612.666667pt;}
.x134_c00037{left:614.133333pt;}
.x114_c00037{left:615.066667pt;}
.xc0_c00037{left:616.400000pt;}
.xb9_c00037{left:617.466667pt;}
.x11e_c00037{left:619.866667pt;}
.x117_c00037{left:621.600000pt;}
.xe0_c00037{left:622.533333pt;}
.xff_c00037{left:625.333333pt;}
.xf8_c00037{left:627.600000pt;}
.xc1_c00037{left:628.533333pt;}
.xec_c00037{left:629.600000pt;}
.x11f_c00037{left:631.333333pt;}
.xb3_c00037{left:632.533333pt;}
.xdc_c00037{left:634.400000pt;}
.x12d_c00037{left:638.133333pt;}
.x11a_c00037{left:642.666667pt;}
.xef_c00037{left:644.400000pt;}
.xac_c00037{left:646.400000pt;}
.xba_c00037{left:648.133333pt;}
.xe9_c00037{left:650.400000pt;}
.x118_c00037{left:652.000000pt;}
.xb4_c00037{left:653.333333pt;}
.xc2_c00037{left:656.666667pt;}
.x149_c00037{left:658.933333pt;}
.xbb_c00037{left:660.933333pt;}
.xf0_c00037{left:662.000000pt;}
.xc9_c00037{left:665.200000pt;}
.x108_c00037{left:667.066667pt;}
.xea_c00037{left:669.600000pt;}
.x100_c00037{left:670.533333pt;}
.x120_c00037{left:672.666667pt;}
.xdd_c00037{left:673.733333pt;}
.xfb_c00037{left:674.933333pt;}
.x13c_c00037{left:675.866667pt;}
.x10c_c00037{left:676.933333pt;}
.xad_c00037{left:680.933333pt;}
.xd4_c00037{left:682.400000pt;}
.x12a_c00037{left:684.000000pt;}
.xed_c00037{left:686.266667pt;}
.x101_c00037{left:688.133333pt;}
.x13a_c00037{left:690.533333pt;}
.x106_c00037{left:691.733333pt;}
.xce_c00037{left:693.866667pt;}
.x14a_c00037{left:695.466667pt;}
.x126_c00037{left:697.200000pt;}
.x10f_c00037{left:699.866667pt;}
.x137_c00037{left:702.400000pt;}
.xde_c00037{left:704.133333pt;}
.xb5_c00037{left:705.200000pt;}
.xcf_c00037{left:707.333333pt;}
.xd5_c00037{left:709.333333pt;}
.xbc_c00037{left:710.800000pt;}
.xc3_c00037{left:713.333333pt;}
.xca_c00037{left:715.466667pt;}
.xf1_c00037{left:717.733333pt;}
.xe1_c00037{left:719.200000pt;}
.xf9_c00037{left:721.066667pt;}
.xeb_c00037{left:724.666667pt;}
.xf2_c00037{left:728.000000pt;}
.x109_c00037{left:731.066667pt;}
.x128_c00037{left:732.666667pt;}
.x121_c00037{left:734.400000pt;}
.x123_c00037{left:735.333333pt;}
.x102_c00037{left:737.466667pt;}
.x13d_c00037{left:738.666667pt;}
.x10a_c00037{left:741.333333pt;}
.xd0_c00037{left:742.800000pt;}
.xfa_c00037{left:743.733333pt;}
.xe5_c00037{left:744.800000pt;}
.x135_c00037{left:746.533333pt;}
.x148_c00037{left:749.600000pt;}
.xae_c00037{left:751.600000pt;}
.xee_c00037{left:754.133333pt;}
.xcb_c00037{left:755.466667pt;}
.x103_c00037{left:756.666667pt;}
.xfc_c00037{left:758.133333pt;}
.x140_c00037{left:759.600000pt;}
.xd6_c00037{left:765.600000pt;}
.x14b_c00037{left:768.133333pt;}
.x115_c00037{left:770.000000pt;}
}





/* 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_c00038 {
    display:none;
  }
  .loading-indicator_c00038.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00038 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_c00038 { 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_c00038" -> "#page-container .classname_c00038")
 */
.pf_c00038 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00038 { /* 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_c00038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00038 { /* 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_c00038 { /* 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_c00038 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00038 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00038 {overflow:visible;}
  }
}
.c_c00038 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00038 { /* 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_c00038:after { /* webkit #35443 */
  content: '';
}
.t_c00038:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00038 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 */
}
.__c00038 { /* 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_c00038 { /* info for Javascript */
  display:none;
}
.l_c00038 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00038 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00038 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00038: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_c00038 {
    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_c00038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00038.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_c00038 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00038;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.000000;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;}
.m4b_c00038{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m21_c00038{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00038{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00038{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m14_c00038{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.me4_c00038{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.mb_c00038{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00038{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00038{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00038{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m47_c00038{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m12_c00038{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m42_c00038{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md9_c00038{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00038{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00038{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m11_c00038{transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);}
.mce_c00038{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m105_c00038{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m121_c00038{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00038{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md3_c00038{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m88_c00038{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m50_c00038{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00038{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.md5_c00038{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00038{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00038{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m95_c00038{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m20_c00038{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00038{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00038{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00038{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m18_c00038{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m73_c00038{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m120_c00038{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00038{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m17_c00038{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00038{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m4_c00038{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m122_c00038{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00038{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m40_c00038{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m63_c00038{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me8_c00038{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00038{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me7_c00038{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mc_c00038{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00038{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00038{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00038{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m65_c00038{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m109_c00038{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00038{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00038{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7_c00038{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00038{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00038{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m67_c00038{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00038{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00038{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00038{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00038{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m27_c00038{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m97_c00038{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00038{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mab_c00038{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mda_c00038{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00038{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m106_c00038{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m53_c00038{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m25_c00038{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00038{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m74_c00038{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mac_c00038{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.me0_c00038{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m15_c00038{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me6_c00038{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m69_c00038{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m24_c00038{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00038{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00038{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00038{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mec_c00038{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m89_c00038{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00038{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00038{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00038{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00038{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00038{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00038{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00038{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m71_c00038{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m52_c00038{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m51_c00038{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00038{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m23_c00038{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00038{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00038{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m10_c00038{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mee_c00038{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00038{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf_c00038{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m93_c00038{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m77_c00038{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00038{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00038{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mef_c00038{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00038{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00038{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m55_c00038{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.maf_c00038{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m46_c00038{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m39_c00038{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md4_c00038{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m26_c00038{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00038{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00038{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md7_c00038{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m48_c00038{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m66_c00038{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m56_c00038{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m84_c00038{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.me2_c00038{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m22_c00038{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m80_c00038{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m49_c00038{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00038{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00038{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m116_c00038{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m75_c00038{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m108_c00038{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00038{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00038{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00038{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00038{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m59_c00038{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00038{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m16_c00038{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m29_c00038{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.med_c00038{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00038{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00038{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00038{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6_c00038{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m90_c00038{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00038{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00038{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m78_c00038{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00038{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9_c00038{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m68_c00038{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m81_c00038{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m92_c00038{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00038{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00038{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.meb_c00038{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.md_c00038{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m13_c00038{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mae_c00038{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00038{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m83_c00038{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00038{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00038{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00038{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00038{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00038{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m119_c00038{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m60_c00038{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00038{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00038{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m72_c00038{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00038{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m28_c00038{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m86_c00038{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00038{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00038{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00038{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00038{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00038{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me5_c00038{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m62_c00038{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00038{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m79_c00038{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m8_c00038{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00038{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00038{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00038{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mff_c00038{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00038{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00038{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00038{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00038{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00038{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00038{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.me9_c00038{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m85_c00038{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m19_c00038{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.md6_c00038{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m107_c00038{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m91_c00038{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00038{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00038{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.me3_c00038{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00038{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m61_c00038{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m99_c00038{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00038{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00038{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00038{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1_c00038{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m96_c00038{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00038{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m87_c00038{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m35_c00038{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m94_c00038{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00038{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mde_c00038{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m54_c00038{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me_c00038{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00038{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00038{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma_c00038{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m98_c00038{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00038{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00038{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00038{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mba_c00038{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m118_c00038{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me1_c00038{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00038{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00038{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m44_c00038{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m76_c00038{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00038{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mca_c00038{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m32_c00038{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00038{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m3_c00038{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md2_c00038{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m70_c00038{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m30_c00038{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m45_c00038{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m58_c00038{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00038{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5_c00038{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m117_c00038{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m36_c00038{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m115_c00038{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);}
.m33_c00038{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m38_c00038{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00038{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m112_c00038{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m57_c00038{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m103_c00038{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m102_c00038{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00038{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00038{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00038{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m82_c00038{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00038{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00038{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m34_c00038{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00038{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md8_c00038{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m100_c00038{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00038{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m111_c00038{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m114_c00038{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00038{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00038{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m64_c00038{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.md0_c00038{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mad_c00038{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m110_c00038{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m31_c00038{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00038{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.m41_c00038{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mea_c00038{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m113_c00038{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m104_c00038{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m43_c00038{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.maa_c00038{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00038{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00038{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m2_c00038{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m101_c00038{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m37_c00038{transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);}
.md1_c00038{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m0_c00038{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00038{transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls0_c00038{letter-spacing:0.000000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{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__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:-17.844475px;}
.ws5_c00038{word-spacing:-12.878049px;}
.ws4_c00038{word-spacing:-10.535714px;}
.ws3_c00038{word-spacing:-7.951965px;}
.ws2_c00038{word-spacing:-7.156425px;}
.ws1_c00038{word-spacing:-5.833333px;}
.ws8_c00038{word-spacing:0.000000px;}
.ws7_c00038{word-spacing:0.878049px;}
.ws6_c00038{word-spacing:13.358491px;}
.fc0_c00038{color:transparent;}
.fs6_c00038{font-size:30.000000px;}
.fs3_c00038{font-size:42.000000px;}
.fs4_c00038{font-size:48.000000px;}
.fs5_c00038{font-size:60.000000px;}
.fs1_c00038{font-size:66.000000px;}
.fs2_c00038{font-size:72.000000px;}
.fs7_c00038{font-size:78.000000px;}
.fs0_c00038{font-size:84.000000px;}
.y0_c00038{bottom:0.000000px;}
.y3a_c00038{bottom:9.000000px;}
.y6a_c00038{bottom:200.700000px;}
.y39_c00038{bottom:201.900000px;}
.y69_c00038{bottom:218.700000px;}
.y38_c00038{bottom:219.450000px;}
.y68_c00038{bottom:236.700000px;}
.y37_c00038{bottom:237.150000px;}
.y67_c00038{bottom:254.400000px;}
.y36_c00038{bottom:255.150000px;}
.y66_c00038{bottom:272.100000px;}
.y35_c00038{bottom:272.850000px;}
.y65_c00038{bottom:290.100000px;}
.y34_c00038{bottom:290.550000px;}
.y64_c00038{bottom:307.800000px;}
.y33_c00038{bottom:308.250000px;}
.y3b_c00038{bottom:324.750000px;}
.y63_c00038{bottom:325.800000px;}
.y32_c00038{bottom:325.950000px;}
.y62_c00038{bottom:343.050000px;}
.y31_c00038{bottom:343.650000px;}
.y61_c00038{bottom:361.050000px;}
.y30_c00038{bottom:361.350000px;}
.y60_c00038{bottom:378.750000px;}
.y2f_c00038{bottom:379.050000px;}
.y2e_c00038{bottom:397.350000px;}
.y5f_c00038{bottom:400.350000px;}
.y5e_c00038{bottom:418.650000px;}
.y2d_c00038{bottom:419.250000px;}
.y2c_c00038{bottom:432.600000px;}
.y5d_c00038{bottom:436.650000px;}
.y2b_c00038{bottom:450.300000px;}
.y5c_c00038{bottom:454.350000px;}
.y2a_c00038{bottom:468.000000px;}
.y5b_c00038{bottom:472.350000px;}
.y29_c00038{bottom:486.000000px;}
.y5a_c00038{bottom:489.600000px;}
.y28_c00038{bottom:503.700000px;}
.y59_c00038{bottom:507.600000px;}
.y58_c00038{bottom:525.600000px;}
.y27_c00038{bottom:525.900000px;}
.y57_c00038{bottom:543.600000px;}
.y26_c00038{bottom:543.900000px;}
.y56_c00038{bottom:560.850000px;}
.y25_c00038{bottom:561.900000px;}
.y55_c00038{bottom:579.150000px;}
.y24_c00038{bottom:579.900000px;}
.y54_c00038{bottom:596.400000px;}
.y23_c00038{bottom:597.150000px;}
.y53_c00038{bottom:614.400000px;}
.y22_c00038{bottom:614.850000px;}
.y52_c00038{bottom:632.100000px;}
.y21_c00038{bottom:632.850000px;}
.y51_c00038{bottom:649.800000px;}
.y20_c00038{bottom:650.550000px;}
.y50_c00038{bottom:667.500000px;}
.y1f_c00038{bottom:668.550000px;}
.y4f_c00038{bottom:690.300000px;}
.y1e_c00038{bottom:690.450000px;}
.y4e_c00038{bottom:708.000000px;}
.y1d_c00038{bottom:708.300000px;}
.y4d_c00038{bottom:725.700000px;}
.y1c_c00038{bottom:726.300000px;}
.y4c_c00038{bottom:743.400000px;}
.y1b_c00038{bottom:744.000000px;}
.y4b_c00038{bottom:761.400000px;}
.y1a_c00038{bottom:762.000000px;}
.y4a_c00038{bottom:779.100000px;}
.y19_c00038{bottom:779.700000px;}
.y18_c00038{bottom:797.700000px;}
.y49_c00038{bottom:799.200000px;}
.y17_c00038{bottom:815.400000px;}
.y48_c00038{bottom:819.300000px;}
.y47_c00038{bottom:832.650000px;}
.y16_c00038{bottom:833.400000px;}
.y46_c00038{bottom:850.350000px;}
.y15_c00038{bottom:851.100000px;}
.y45_c00038{bottom:868.350000px;}
.y14_c00038{bottom:873.000000px;}
.y44_c00038{bottom:885.600000px;}
.y13_c00038{bottom:886.650000px;}
.y12_c00038{bottom:904.350000px;}
.y43_c00038{bottom:908.250000px;}
.y11_c00038{bottom:922.350000px;}
.y42_c00038{bottom:925.500000px;}
.y10_c00038{bottom:940.350000px;}
.y41_c00038{bottom:943.500000px;}
.yf_c00038{bottom:958.350000px;}
.y40_c00038{bottom:961.200000px;}
.ye_c00038{bottom:975.900000px;}
.y3f_c00038{bottom:979.200000px;}
.yd_c00038{bottom:993.600000px;}
.y3e_c00038{bottom:997.950000px;}
.y3d_c00038{bottom:1014.450000px;}
.yc_c00038{bottom:1015.950000px;}
.y6c_c00038{bottom:1032.450000px;}
.yb_c00038{bottom:1033.500000px;}
.ya_c00038{bottom:1051.500000px;}
.y3c_c00038{bottom:1056.300000px;}
.y9_c00038{bottom:1069.200000px;}
.y6b_c00038{bottom:1072.800000px;}
.y8_c00038{bottom:1086.900000px;}
.y4_c00038{bottom:1091.850000px;}
.y3_c00038{bottom:1108.050000px;}
.y6_c00038{bottom:1109.100000px;}
.y2_c00038{bottom:1125.750000px;}
.y5_c00038{bottom:1126.800000px;}
.y7_c00038{bottom:1132.200000px;}
.y1_c00038{bottom:1152.750000px;}
.h8_c00038{height:30.000000px;}
.h5_c00038{height:42.000000px;}
.h6_c00038{height:48.000000px;}
.h7_c00038{height:60.000000px;}
.h3_c00038{height:66.000000px;}
.h4_c00038{height:72.000000px;}
.h9_c00038{height:78.000000px;}
.h2_c00038{height:84.000000px;}
.h0_c00038{height:1275.480010px;}
.h1_c00038{height:1275.750000px;}
.w0_c00038{width:948.600036px;}
.w1_c00038{width:948.750000px;}
.x0_c00038{left:0.000000px;}
.xc4_c00038{left:46.800000px;}
.xc3_c00038{left:49.350000px;}
.xc1_c00038{left:51.750000px;}
.xbb_c00038{left:53.400000px;}
.x9b_c00038{left:54.450000px;}
.x9a_c00038{left:55.500000px;}
.x99_c00038{left:57.000000px;}
.x7d_c00038{left:58.050000px;}
.x63_c00038{left:59.850000px;}
.x6b_c00038{left:62.250000px;}
.x70_c00038{left:63.300000px;}
.x51_c00038{left:65.100000px;}
.x42_c00038{left:67.350000px;}
.x18_c00038{left:69.150000px;}
.x1f_c00038{left:70.800000px;}
.x95_c00038{left:75.450000px;}
.x91_c00038{left:79.500000px;}
.x8e_c00038{left:81.000000px;}
.xa6_c00038{left:82.050000px;}
.xb9_c00038{left:84.000000px;}
.x22_c00038{left:88.500000px;}
.x7b_c00038{left:90.450000px;}
.x2e_c00038{left:92.100000px;}
.x19_c00038{left:94.350000px;}
.x5a_c00038{left:96.600000px;}
.x57_c00038{left:98.550000px;}
.xb1_c00038{left:100.200000px;}
.x64_c00038{left:101.550000px;}
.x43_c00038{left:104.100000px;}
.x9d_c00038{left:105.600000px;}
.x65_c00038{left:107.700000px;}
.x2b_c00038{left:108.750000px;}
.x3a_c00038{left:110.400000px;}
.x3d_c00038{left:112.200000px;}
.xaf_c00038{left:113.850000px;}
.x33_c00038{left:115.800000px;}
.x5b_c00038{left:118.200000px;}
.x52_c00038{left:124.050000px;}
.x98_c00038{left:126.000000px;}
.x6c_c00038{left:127.500000px;}
.x20_c00038{left:130.200000px;}
.x4a_c00038{left:131.400000px;}
.xad_c00038{left:132.450000px;}
.xc5_c00038{left:133.650000px;}
.x86_c00038{left:135.150000px;}
.x23_c00038{left:137.100000px;}
.x1a_c00038{left:138.600000px;}
.xbe_c00038{left:140.700000px;}
.x2f_c00038{left:143.550000px;}
.x7e_c00038{left:146.250000px;}
.x94_c00038{left:147.450000px;}
.x24_c00038{left:148.650000px;}
.x4b_c00038{left:151.500000px;}
.xc2_c00038{left:153.000000px;}
.x44_c00038{left:154.500000px;}
.x71_c00038{left:155.850000px;}
.x1b_c00038{left:157.650000px;}
.x66_c00038{left:158.850000px;}
.x8b_c00038{left:161.100000px;}
.x58_c00038{left:162.600000px;}
.x9e_c00038{left:165.750000px;}
.x45_c00038{left:167.100000px;}
.x25_c00038{left:168.150000px;}
.xab_c00038{left:169.350000px;}
.x3b_c00038{left:172.350000px;}
.x34_c00038{left:175.200000px;}
.x67_c00038{left:177.150000px;}
.x92_c00038{left:178.500000px;}
.x30_c00038{left:179.550000px;}
.x2c_c00038{left:180.750000px;}
.xb2_c00038{left:184.200000px;}
.xb7_c00038{left:189.300000px;}
.xc6_c00038{left:191.550000px;}
.xbc_c00038{left:195.300000px;}
.x8f_c00038{left:197.250000px;}
.xb4_c00038{left:198.750000px;}
.x5c_c00038{left:199.950000px;}
.x5e_c00038{left:201.300000px;}
.x68_c00038{left:204.450000px;}
.x72_c00038{left:206.550000px;}
.x83_c00038{left:209.250000px;}
.xa1_c00038{left:211.050000px;}
.x87_c00038{left:212.250000px;}
.x3e_c00038{left:213.450000px;}
.x7c_c00038{left:214.650000px;}
.x6d_c00038{left:218.100000px;}
.x77_c00038{left:219.600000px;}
.xa3_c00038{left:220.650000px;}
.x35_c00038{left:221.700000px;}
.x7f_c00038{left:223.950000px;}
.x3f_c00038{left:225.750000px;}
.xa9_c00038{left:227.850000px;}
.x73_c00038{left:229.200000px;}
.x26_c00038{left:232.650000px;}
.x9c_c00038{left:234.300000px;}
.x53_c00038{left:237.150000px;}
.xbd_c00038{left:238.200000px;}
.x36_c00038{left:242.250000px;}
.x90_c00038{left:243.300000px;}
.x46_c00038{left:245.250000px;}
.x6e_c00038{left:247.950000px;}
.x3c_c00038{left:250.800000px;}
.x5f_c00038{left:252.750000px;}
.x4c_c00038{left:255.900000px;}
.x80_c00038{left:257.100000px;}
.x9f_c00038{left:259.050000px;}
.x74_c00038{left:261.300000px;}
.x27_c00038{left:264.300000px;}
.x1c_c00038{left:266.400000px;}
.x78_c00038{left:267.900000px;}
.xa4_c00038{left:268.950000px;}
.x69_c00038{left:270.300000px;}
.x59_c00038{left:273.150000px;}
.x4d_c00038{left:275.700000px;}
.x96_c00038{left:277.350000px;}
.x5d_c00038{left:279.900000px;}
.x54_c00038{left:282.450000px;}
.xa7_c00038{left:283.650000px;}
.x37_c00038{left:284.700000px;}
.x47_c00038{left:285.900000px;}
.xb3_c00038{left:287.250000px;}
.x84_c00038{left:289.200000px;}
.x88_c00038{left:291.150000px;}
.xae_c00038{left:292.350000px;}
.x55_c00038{left:293.550000px;}
.xb8_c00038{left:295.200000px;}
.x79_c00038{left:296.700000px;}
.x89_c00038{left:300.150000px;}
.x28_c00038{left:302.100000px;}
.x75_c00038{left:304.500000px;}
.xb0_c00038{left:305.700000px;}
.xba_c00038{left:307.500000px;}
.xa2_c00038{left:309.000000px;}
.x40_c00038{left:310.650000px;}
.x4e_c00038{left:311.700000px;}
.x31_c00038{left:314.550000px;}
.xb5_c00038{left:316.350000px;}
.x1_c00038{left:317.550000px;}
.x6f_c00038{left:319.650000px;}
.x38_c00038{left:323.550000px;}
.xc0_c00038{left:325.350000px;}
.x1d_c00038{left:327.600000px;}
.xa0_c00038{left:329.550000px;}
.x4f_c00038{left:331.800000px;}
.xa8_c00038{left:334.050000px;}
.x8a_c00038{left:335.400000px;}
.x60_c00038{left:336.600000px;}
.x32_c00038{left:338.250000px;}
.x29_c00038{left:339.600000px;}
.x56_c00038{left:341.400000px;}
.xac_c00038{left:343.200000px;}
.xaa_c00038{left:344.400000px;}
.x8c_c00038{left:346.650000px;}
.x39_c00038{left:348.450000px;}
.x81_c00038{left:350.250000px;}
.xa5_c00038{left:354.900000px;}
.x61_c00038{left:357.900000px;}
.x2a_c00038{left:359.400000px;}
.xb6_c00038{left:360.900000px;}
.x1e_c00038{left:362.100000px;}
.x7a_c00038{left:364.350000px;}
.x97_c00038{left:367.650000px;}
.x93_c00038{left:368.850000px;}
.x41_c00038{left:370.050000px;}
.x50_c00038{left:371.700000px;}
.x8d_c00038{left:372.900000px;}
.x82_c00038{left:375.450000px;}
.x62_c00038{left:378.450000px;}
.xbf_c00038{left:381.450000px;}
.x6a_c00038{left:387.750000px;}
.x85_c00038{left:389.400000px;}
.x48_c00038{left:394.200000px;}
.x76_c00038{left:397.800000px;}
.xc7_c00038{left:399.300000px;}
.x2d_c00038{left:404.250000px;}
.x149_c00038{left:407.550000px;}
.x49_c00038{left:411.900000px;}
.x147_c00038{left:413.250000px;}
.x140_c00038{left:415.050000px;}
.x21_c00038{left:416.100000px;}
.x115_c00038{left:418.200000px;}
.xf7_c00038{left:419.250000px;}
.xe6_c00038{left:421.200000px;}
.xe0_c00038{left:422.400000px;}
.xc8_c00038{left:425.100000px;}
.x9_c00038{left:426.450000px;}
.xff_c00038{left:427.500000px;}
.x14b_c00038{left:430.200000px;}
.x155_c00038{left:435.300000px;}
.x123_c00038{left:438.150000px;}
.xf1_c00038{left:439.200000px;}
.x14e_c00038{left:440.550000px;}
.xe1_c00038{left:442.500000px;}
.x160_c00038{left:444.600000px;}
.x3_c00038{left:447.900000px;}
.x14c_c00038{left:449.550000px;}
.xed_c00038{left:450.750000px;}
.x10b_c00038{left:452.400000px;}
.x13e_c00038{left:454.050000px;}
.xca_c00038{left:457.200000px;}
.x129_c00038{left:460.650000px;}
.x100_c00038{left:461.700000px;}
.x14f_c00038{left:462.900000px;}
.xd2_c00038{left:467.100000px;}
.x126_c00038{left:468.900000px;}
.x12a_c00038{left:470.400000px;}
.x15b_c00038{left:471.450000px;}
.x151_c00038{left:472.800000px;}
.x4_c00038{left:474.900000px;}
.x14a_c00038{left:475.950000px;}
.x101_c00038{left:477.900000px;}
.x158_c00038{left:479.550000px;}
.x116_c00038{left:480.750000px;}
.x120_c00038{left:482.550000px;}
.x132_c00038{left:486.600000px;}
.x10e_c00038{left:488.100000px;}
.xc9_c00038{left:489.150000px;}
.xcb_c00038{left:491.100000px;}
.x11_c00038{left:493.800000px;}
.x15e_c00038{left:495.750000px;}
.x12e_c00038{left:497.100000px;}
.xdc_c00038{left:500.400000px;}
.xd8_c00038{left:502.650000px;}
.xd3_c00038{left:505.200000px;}
.x105_c00038{left:507.300000px;}
.x13f_c00038{left:508.500000px;}
.x11d_c00038{left:510.600000px;}
.xcc_c00038{left:513.000000px;}
.xa_c00038{left:515.100000px;}
.x12b_c00038{left:517.200000px;}
.xe7_c00038{left:518.700000px;}
.xf8_c00038{left:521.100000px;}
.x142_c00038{left:522.450000px;}
.xee_c00038{left:523.800000px;}
.x137_c00038{left:525.000000px;}
.x152_c00038{left:526.050000px;}
.x12f_c00038{left:528.000000px;}
.xf9_c00038{left:529.050000px;}
.x12_c00038{left:531.900000px;}
.x102_c00038{left:533.700000px;}
.x12c_c00038{left:535.050000px;}
.x111_c00038{left:537.150000px;}
.xf2_c00038{left:539.250000px;}
.x13_c00038{left:540.600000px;}
.xef_c00038{left:542.100000px;}
.x138_c00038{left:543.750000px;}
.x106_c00038{left:544.800000px;}
.xfa_c00038{left:546.750000px;}
.x156_c00038{left:547.950000px;}
.x150_c00038{left:551.100000px;}
.x15d_c00038{left:552.600000px;}
.xe8_c00038{left:553.650000px;}
.x153_c00038{left:554.850000px;}
.x14d_c00038{left:556.500000px;}
.x148_c00038{left:557.700000px;}
.xcd_c00038{left:558.750000px;}
.x134_c00038{left:562.050000px;}
.x15c_c00038{left:564.750000px;}
.xf0_c00038{left:565.800000px;}
.x107_c00038{left:567.900000px;}
.x127_c00038{left:569.250000px;}
.x112_c00038{left:570.900000px;}
.x14_c00038{left:572.250000px;}
.x124_c00038{left:574.200000px;}
.x15_c00038{left:576.900000px;}
.x11e_c00038{left:578.250000px;}
.x5_c00038{left:580.050000px;}
.x139_c00038{left:581.550000px;}
.x159_c00038{left:583.350000px;}
.xfb_c00038{left:584.850000px;}
.xd4_c00038{left:586.500000px;}
.xe2_c00038{left:590.100000px;}
.xdd_c00038{left:591.900000px;}
.x10c_c00038{left:594.600000px;}
.xd9_c00038{left:597.300000px;}
.xb_c00038{left:598.950000px;}
.xfc_c00038{left:602.100000px;}
.x6_c00038{left:604.200000px;}
.x11a_c00038{left:606.000000px;}
.x121_c00038{left:608.550000px;}
.xc_c00038{left:611.250000px;}
.xda_c00038{left:612.750000px;}
.xce_c00038{left:614.250000px;}
.x143_c00038{left:615.300000px;}
.x117_c00038{left:616.950000px;}
.xe9_c00038{left:620.250000px;}
.xf3_c00038{left:622.350000px;}
.x145_c00038{left:623.850000px;}
.xde_c00038{left:625.050000px;}
.x108_c00038{left:626.550000px;}
.x113_c00038{left:628.500000px;}
.x133_c00038{left:630.900000px;}
.x135_c00038{left:634.050000px;}
.xe3_c00038{left:635.850000px;}
.x118_c00038{left:638.550000px;}
.x109_c00038{left:641.250000px;}
.xf4_c00038{left:642.450000px;}
.x130_c00038{left:645.750000px;}
.xd_c00038{left:647.250000px;}
.x154_c00038{left:649.200000px;}
.x13c_c00038{left:651.750000px;}
.xfd_c00038{left:654.600000px;}
.x103_c00038{left:655.800000px;}
.xdb_c00038{left:659.850000px;}
.x11b_c00038{left:661.800000px;}
.x13d_c00038{left:662.850000px;}
.x16_c00038{left:665.550000px;}
.xe_c00038{left:667.350000px;}
.xcf_c00038{left:669.000000px;}
.x15f_c00038{left:671.100000px;}
.x125_c00038{left:672.900000px;}
.x12d_c00038{left:673.950000px;}
.xf5_c00038{left:676.650000px;}
.x10f_c00038{left:677.850000px;}
.x122_c00038{left:680.850000px;}
.xe4_c00038{left:683.700000px;}
.xd0_c00038{left:685.200000px;}
.x11c_c00038{left:687.000000px;}
.x10a_c00038{left:689.550000px;}
.x146_c00038{left:691.500000px;}
.xea_c00038{left:693.750000px;}
.xdf_c00038{left:695.250000px;}
.xd5_c00038{left:697.350000px;}
.x141_c00038{left:699.900000px;}
.x136_c00038{left:701.100000px;}
.x13a_c00038{left:702.600000px;}
.x7_c00038{left:703.950000px;}
.x114_c00038{left:705.450000px;}
.x128_c00038{left:706.650000px;}
.x10d_c00038{left:708.000000px;}
.xd6_c00038{left:709.950000px;}
.x110_c00038{left:711.750000px;}
.xeb_c00038{left:713.550000px;}
.x15a_c00038{left:714.750000px;}
.xe5_c00038{left:716.100000px;}
.x131_c00038{left:717.750000px;}
.xf6_c00038{left:720.900000px;}
.xf_c00038{left:724.950000px;}
.x11f_c00038{left:726.600000px;}
.xec_c00038{left:730.050000px;}
.x157_c00038{left:731.550000px;}
.x8_c00038{left:732.750000px;}
.x144_c00038{left:734.850000px;}
.x13b_c00038{left:736.500000px;}
.x104_c00038{left:738.300000px;}
.x17_c00038{left:739.350000px;}
.x119_c00038{left:740.700000px;}
.xd1_c00038{left:748.200000px;}
.x10_c00038{left:749.400000px;}
.x2_c00038{left:751.050000px;}
.xd7_c00038{left:752.100000px;}
.xfe_c00038{left:754.800000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:-15.861755pt;}
.ws5_c00038{word-spacing:-11.447154pt;}
.ws4_c00038{word-spacing:-9.365079pt;}
.ws3_c00038{word-spacing:-7.068413pt;}
.ws2_c00038{word-spacing:-6.361266pt;}
.ws1_c00038{word-spacing:-5.185185pt;}
.ws8_c00038{word-spacing:0.000000pt;}
.ws7_c00038{word-spacing:0.780488pt;}
.ws6_c00038{word-spacing:11.874214pt;}
.fs6_c00038{font-size:26.666667pt;}
.fs3_c00038{font-size:37.333333pt;}
.fs4_c00038{font-size:42.666667pt;}
.fs5_c00038{font-size:53.333333pt;}
.fs1_c00038{font-size:58.666667pt;}
.fs2_c00038{font-size:64.000000pt;}
.fs7_c00038{font-size:69.333333pt;}
.fs0_c00038{font-size:74.666667pt;}
.y0_c00038{bottom:0.000000pt;}
.y3a_c00038{bottom:8.000000pt;}
.y6a_c00038{bottom:178.400000pt;}
.y39_c00038{bottom:179.466667pt;}
.y69_c00038{bottom:194.400000pt;}
.y38_c00038{bottom:195.066667pt;}
.y68_c00038{bottom:210.400000pt;}
.y37_c00038{bottom:210.800000pt;}
.y67_c00038{bottom:226.133333pt;}
.y36_c00038{bottom:226.800000pt;}
.y66_c00038{bottom:241.866667pt;}
.y35_c00038{bottom:242.533333pt;}
.y65_c00038{bottom:257.866667pt;}
.y34_c00038{bottom:258.266667pt;}
.y64_c00038{bottom:273.600000pt;}
.y33_c00038{bottom:274.000000pt;}
.y3b_c00038{bottom:288.666667pt;}
.y63_c00038{bottom:289.600000pt;}
.y32_c00038{bottom:289.733333pt;}
.y62_c00038{bottom:304.933333pt;}
.y31_c00038{bottom:305.466667pt;}
.y61_c00038{bottom:320.933333pt;}
.y30_c00038{bottom:321.200000pt;}
.y60_c00038{bottom:336.666667pt;}
.y2f_c00038{bottom:336.933333pt;}
.y2e_c00038{bottom:353.200000pt;}
.y5f_c00038{bottom:355.866667pt;}
.y5e_c00038{bottom:372.133333pt;}
.y2d_c00038{bottom:372.666667pt;}
.y2c_c00038{bottom:384.533333pt;}
.y5d_c00038{bottom:388.133333pt;}
.y2b_c00038{bottom:400.266667pt;}
.y5c_c00038{bottom:403.866667pt;}
.y2a_c00038{bottom:416.000000pt;}
.y5b_c00038{bottom:419.866667pt;}
.y29_c00038{bottom:432.000000pt;}
.y5a_c00038{bottom:435.200000pt;}
.y28_c00038{bottom:447.733333pt;}
.y59_c00038{bottom:451.200000pt;}
.y58_c00038{bottom:467.200000pt;}
.y27_c00038{bottom:467.466667pt;}
.y57_c00038{bottom:483.200000pt;}
.y26_c00038{bottom:483.466667pt;}
.y56_c00038{bottom:498.533333pt;}
.y25_c00038{bottom:499.466667pt;}
.y55_c00038{bottom:514.800000pt;}
.y24_c00038{bottom:515.466667pt;}
.y54_c00038{bottom:530.133333pt;}
.y23_c00038{bottom:530.800000pt;}
.y53_c00038{bottom:546.133333pt;}
.y22_c00038{bottom:546.533333pt;}
.y52_c00038{bottom:561.866667pt;}
.y21_c00038{bottom:562.533333pt;}
.y51_c00038{bottom:577.600000pt;}
.y20_c00038{bottom:578.266667pt;}
.y50_c00038{bottom:593.333333pt;}
.y1f_c00038{bottom:594.266667pt;}
.y4f_c00038{bottom:613.600000pt;}
.y1e_c00038{bottom:613.733333pt;}
.y4e_c00038{bottom:629.333333pt;}
.y1d_c00038{bottom:629.600000pt;}
.y4d_c00038{bottom:645.066667pt;}
.y1c_c00038{bottom:645.600000pt;}
.y4c_c00038{bottom:660.800000pt;}
.y1b_c00038{bottom:661.333333pt;}
.y4b_c00038{bottom:676.800000pt;}
.y1a_c00038{bottom:677.333333pt;}
.y4a_c00038{bottom:692.533333pt;}
.y19_c00038{bottom:693.066667pt;}
.y18_c00038{bottom:709.066667pt;}
.y49_c00038{bottom:710.400000pt;}
.y17_c00038{bottom:724.800000pt;}
.y48_c00038{bottom:728.266667pt;}
.y47_c00038{bottom:740.133333pt;}
.y16_c00038{bottom:740.800000pt;}
.y46_c00038{bottom:755.866667pt;}
.y15_c00038{bottom:756.533333pt;}
.y45_c00038{bottom:771.866667pt;}
.y14_c00038{bottom:776.000000pt;}
.y44_c00038{bottom:787.200000pt;}
.y13_c00038{bottom:788.133333pt;}
.y12_c00038{bottom:803.866667pt;}
.y43_c00038{bottom:807.333333pt;}
.y11_c00038{bottom:819.866667pt;}
.y42_c00038{bottom:822.666667pt;}
.y10_c00038{bottom:835.866667pt;}
.y41_c00038{bottom:838.666667pt;}
.yf_c00038{bottom:851.866667pt;}
.y40_c00038{bottom:854.400000pt;}
.ye_c00038{bottom:867.466667pt;}
.y3f_c00038{bottom:870.400000pt;}
.yd_c00038{bottom:883.200000pt;}
.y3e_c00038{bottom:887.066667pt;}
.y3d_c00038{bottom:901.733333pt;}
.yc_c00038{bottom:903.066667pt;}
.y6c_c00038{bottom:917.733333pt;}
.yb_c00038{bottom:918.666667pt;}
.ya_c00038{bottom:934.666667pt;}
.y3c_c00038{bottom:938.933333pt;}
.y9_c00038{bottom:950.400000pt;}
.y6b_c00038{bottom:953.600000pt;}
.y8_c00038{bottom:966.133333pt;}
.y4_c00038{bottom:970.533333pt;}
.y3_c00038{bottom:984.933333pt;}
.y6_c00038{bottom:985.866667pt;}
.y2_c00038{bottom:1000.666667pt;}
.y5_c00038{bottom:1001.600000pt;}
.y7_c00038{bottom:1006.400000pt;}
.y1_c00038{bottom:1024.666667pt;}
.h8_c00038{height:26.666667pt;}
.h5_c00038{height:37.333333pt;}
.h6_c00038{height:42.666667pt;}
.h7_c00038{height:53.333333pt;}
.h3_c00038{height:58.666667pt;}
.h4_c00038{height:64.000000pt;}
.h9_c00038{height:69.333333pt;}
.h2_c00038{height:74.666667pt;}
.h0_c00038{height:1133.760009pt;}
.h1_c00038{height:1134.000000pt;}
.w0_c00038{width:843.200032pt;}
.w1_c00038{width:843.333333pt;}
.x0_c00038{left:0.000000pt;}
.xc4_c00038{left:41.600000pt;}
.xc3_c00038{left:43.866667pt;}
.xc1_c00038{left:46.000000pt;}
.xbb_c00038{left:47.466667pt;}
.x9b_c00038{left:48.400000pt;}
.x9a_c00038{left:49.333333pt;}
.x99_c00038{left:50.666667pt;}
.x7d_c00038{left:51.600000pt;}
.x63_c00038{left:53.200000pt;}
.x6b_c00038{left:55.333333pt;}
.x70_c00038{left:56.266667pt;}
.x51_c00038{left:57.866667pt;}
.x42_c00038{left:59.866667pt;}
.x18_c00038{left:61.466667pt;}
.x1f_c00038{left:62.933333pt;}
.x95_c00038{left:67.066667pt;}
.x91_c00038{left:70.666667pt;}
.x8e_c00038{left:72.000000pt;}
.xa6_c00038{left:72.933333pt;}
.xb9_c00038{left:74.666667pt;}
.x22_c00038{left:78.666667pt;}
.x7b_c00038{left:80.400000pt;}
.x2e_c00038{left:81.866667pt;}
.x19_c00038{left:83.866667pt;}
.x5a_c00038{left:85.866667pt;}
.x57_c00038{left:87.600000pt;}
.xb1_c00038{left:89.066667pt;}
.x64_c00038{left:90.266667pt;}
.x43_c00038{left:92.533333pt;}
.x9d_c00038{left:93.866667pt;}
.x65_c00038{left:95.733333pt;}
.x2b_c00038{left:96.666667pt;}
.x3a_c00038{left:98.133333pt;}
.x3d_c00038{left:99.733333pt;}
.xaf_c00038{left:101.200000pt;}
.x33_c00038{left:102.933333pt;}
.x5b_c00038{left:105.066667pt;}
.x52_c00038{left:110.266667pt;}
.x98_c00038{left:112.000000pt;}
.x6c_c00038{left:113.333333pt;}
.x20_c00038{left:115.733333pt;}
.x4a_c00038{left:116.800000pt;}
.xad_c00038{left:117.733333pt;}
.xc5_c00038{left:118.800000pt;}
.x86_c00038{left:120.133333pt;}
.x23_c00038{left:121.866667pt;}
.x1a_c00038{left:123.200000pt;}
.xbe_c00038{left:125.066667pt;}
.x2f_c00038{left:127.600000pt;}
.x7e_c00038{left:130.000000pt;}
.x94_c00038{left:131.066667pt;}
.x24_c00038{left:132.133333pt;}
.x4b_c00038{left:134.666667pt;}
.xc2_c00038{left:136.000000pt;}
.x44_c00038{left:137.333333pt;}
.x71_c00038{left:138.533333pt;}
.x1b_c00038{left:140.133333pt;}
.x66_c00038{left:141.200000pt;}
.x8b_c00038{left:143.200000pt;}
.x58_c00038{left:144.533333pt;}
.x9e_c00038{left:147.333333pt;}
.x45_c00038{left:148.533333pt;}
.x25_c00038{left:149.466667pt;}
.xab_c00038{left:150.533333pt;}
.x3b_c00038{left:153.200000pt;}
.x34_c00038{left:155.733333pt;}
.x67_c00038{left:157.466667pt;}
.x92_c00038{left:158.666667pt;}
.x30_c00038{left:159.600000pt;}
.x2c_c00038{left:160.666667pt;}
.xb2_c00038{left:163.733333pt;}
.xb7_c00038{left:168.266667pt;}
.xc6_c00038{left:170.266667pt;}
.xbc_c00038{left:173.600000pt;}
.x8f_c00038{left:175.333333pt;}
.xb4_c00038{left:176.666667pt;}
.x5c_c00038{left:177.733333pt;}
.x5e_c00038{left:178.933333pt;}
.x68_c00038{left:181.733333pt;}
.x72_c00038{left:183.600000pt;}
.x83_c00038{left:186.000000pt;}
.xa1_c00038{left:187.600000pt;}
.x87_c00038{left:188.666667pt;}
.x3e_c00038{left:189.733333pt;}
.x7c_c00038{left:190.800000pt;}
.x6d_c00038{left:193.866667pt;}
.x77_c00038{left:195.200000pt;}
.xa3_c00038{left:196.133333pt;}
.x35_c00038{left:197.066667pt;}
.x7f_c00038{left:199.066667pt;}
.x3f_c00038{left:200.666667pt;}
.xa9_c00038{left:202.533333pt;}
.x73_c00038{left:203.733333pt;}
.x26_c00038{left:206.800000pt;}
.x9c_c00038{left:208.266667pt;}
.x53_c00038{left:210.800000pt;}
.xbd_c00038{left:211.733333pt;}
.x36_c00038{left:215.333333pt;}
.x90_c00038{left:216.266667pt;}
.x46_c00038{left:218.000000pt;}
.x6e_c00038{left:220.400000pt;}
.x3c_c00038{left:222.933333pt;}
.x5f_c00038{left:224.666667pt;}
.x4c_c00038{left:227.466667pt;}
.x80_c00038{left:228.533333pt;}
.x9f_c00038{left:230.266667pt;}
.x74_c00038{left:232.266667pt;}
.x27_c00038{left:234.933333pt;}
.x1c_c00038{left:236.800000pt;}
.x78_c00038{left:238.133333pt;}
.xa4_c00038{left:239.066667pt;}
.x69_c00038{left:240.266667pt;}
.x59_c00038{left:242.800000pt;}
.x4d_c00038{left:245.066667pt;}
.x96_c00038{left:246.533333pt;}
.x5d_c00038{left:248.800000pt;}
.x54_c00038{left:251.066667pt;}
.xa7_c00038{left:252.133333pt;}
.x37_c00038{left:253.066667pt;}
.x47_c00038{left:254.133333pt;}
.xb3_c00038{left:255.333333pt;}
.x84_c00038{left:257.066667pt;}
.x88_c00038{left:258.800000pt;}
.xae_c00038{left:259.866667pt;}
.x55_c00038{left:260.933333pt;}
.xb8_c00038{left:262.400000pt;}
.x79_c00038{left:263.733333pt;}
.x89_c00038{left:266.800000pt;}
.x28_c00038{left:268.533333pt;}
.x75_c00038{left:270.666667pt;}
.xb0_c00038{left:271.733333pt;}
.xba_c00038{left:273.333333pt;}
.xa2_c00038{left:274.666667pt;}
.x40_c00038{left:276.133333pt;}
.x4e_c00038{left:277.066667pt;}
.x31_c00038{left:279.600000pt;}
.xb5_c00038{left:281.200000pt;}
.x1_c00038{left:282.266667pt;}
.x6f_c00038{left:284.133333pt;}
.x38_c00038{left:287.600000pt;}
.xc0_c00038{left:289.200000pt;}
.x1d_c00038{left:291.200000pt;}
.xa0_c00038{left:292.933333pt;}
.x4f_c00038{left:294.933333pt;}
.xa8_c00038{left:296.933333pt;}
.x8a_c00038{left:298.133333pt;}
.x60_c00038{left:299.200000pt;}
.x32_c00038{left:300.666667pt;}
.x29_c00038{left:301.866667pt;}
.x56_c00038{left:303.466667pt;}
.xac_c00038{left:305.066667pt;}
.xaa_c00038{left:306.133333pt;}
.x8c_c00038{left:308.133333pt;}
.x39_c00038{left:309.733333pt;}
.x81_c00038{left:311.333333pt;}
.xa5_c00038{left:315.466667pt;}
.x61_c00038{left:318.133333pt;}
.x2a_c00038{left:319.466667pt;}
.xb6_c00038{left:320.800000pt;}
.x1e_c00038{left:321.866667pt;}
.x7a_c00038{left:323.866667pt;}
.x97_c00038{left:326.800000pt;}
.x93_c00038{left:327.866667pt;}
.x41_c00038{left:328.933333pt;}
.x50_c00038{left:330.400000pt;}
.x8d_c00038{left:331.466667pt;}
.x82_c00038{left:333.733333pt;}
.x62_c00038{left:336.400000pt;}
.xbf_c00038{left:339.066667pt;}
.x6a_c00038{left:344.666667pt;}
.x85_c00038{left:346.133333pt;}
.x48_c00038{left:350.400000pt;}
.x76_c00038{left:353.600000pt;}
.xc7_c00038{left:354.933333pt;}
.x2d_c00038{left:359.333333pt;}
.x149_c00038{left:362.266667pt;}
.x49_c00038{left:366.133333pt;}
.x147_c00038{left:367.333333pt;}
.x140_c00038{left:368.933333pt;}
.x21_c00038{left:369.866667pt;}
.x115_c00038{left:371.733333pt;}
.xf7_c00038{left:372.666667pt;}
.xe6_c00038{left:374.400000pt;}
.xe0_c00038{left:375.466667pt;}
.xc8_c00038{left:377.866667pt;}
.x9_c00038{left:379.066667pt;}
.xff_c00038{left:380.000000pt;}
.x14b_c00038{left:382.400000pt;}
.x155_c00038{left:386.933333pt;}
.x123_c00038{left:389.466667pt;}
.xf1_c00038{left:390.400000pt;}
.x14e_c00038{left:391.600000pt;}
.xe1_c00038{left:393.333333pt;}
.x160_c00038{left:395.200000pt;}
.x3_c00038{left:398.133333pt;}
.x14c_c00038{left:399.600000pt;}
.xed_c00038{left:400.666667pt;}
.x10b_c00038{left:402.133333pt;}
.x13e_c00038{left:403.600000pt;}
.xca_c00038{left:406.400000pt;}
.x129_c00038{left:409.466667pt;}
.x100_c00038{left:410.400000pt;}
.x14f_c00038{left:411.466667pt;}
.xd2_c00038{left:415.200000pt;}
.x126_c00038{left:416.800000pt;}
.x12a_c00038{left:418.133333pt;}
.x15b_c00038{left:419.066667pt;}
.x151_c00038{left:420.266667pt;}
.x4_c00038{left:422.133333pt;}
.x14a_c00038{left:423.066667pt;}
.x101_c00038{left:424.800000pt;}
.x158_c00038{left:426.266667pt;}
.x116_c00038{left:427.333333pt;}
.x120_c00038{left:428.933333pt;}
.x132_c00038{left:432.533333pt;}
.x10e_c00038{left:433.866667pt;}
.xc9_c00038{left:434.800000pt;}
.xcb_c00038{left:436.533333pt;}
.x11_c00038{left:438.933333pt;}
.x15e_c00038{left:440.666667pt;}
.x12e_c00038{left:441.866667pt;}
.xdc_c00038{left:444.800000pt;}
.xd8_c00038{left:446.800000pt;}
.xd3_c00038{left:449.066667pt;}
.x105_c00038{left:450.933333pt;}
.x13f_c00038{left:452.000000pt;}
.x11d_c00038{left:453.866667pt;}
.xcc_c00038{left:456.000000pt;}
.xa_c00038{left:457.866667pt;}
.x12b_c00038{left:459.733333pt;}
.xe7_c00038{left:461.066667pt;}
.xf8_c00038{left:463.200000pt;}
.x142_c00038{left:464.400000pt;}
.xee_c00038{left:465.600000pt;}
.x137_c00038{left:466.666667pt;}
.x152_c00038{left:467.600000pt;}
.x12f_c00038{left:469.333333pt;}
.xf9_c00038{left:470.266667pt;}
.x12_c00038{left:472.800000pt;}
.x102_c00038{left:474.400000pt;}
.x12c_c00038{left:475.600000pt;}
.x111_c00038{left:477.466667pt;}
.xf2_c00038{left:479.333333pt;}
.x13_c00038{left:480.533333pt;}
.xef_c00038{left:481.866667pt;}
.x138_c00038{left:483.333333pt;}
.x106_c00038{left:484.266667pt;}
.xfa_c00038{left:486.000000pt;}
.x156_c00038{left:487.066667pt;}
.x150_c00038{left:489.866667pt;}
.x15d_c00038{left:491.200000pt;}
.xe8_c00038{left:492.133333pt;}
.x153_c00038{left:493.200000pt;}
.x14d_c00038{left:494.666667pt;}
.x148_c00038{left:495.733333pt;}
.xcd_c00038{left:496.666667pt;}
.x134_c00038{left:499.600000pt;}
.x15c_c00038{left:502.000000pt;}
.xf0_c00038{left:502.933333pt;}
.x107_c00038{left:504.800000pt;}
.x127_c00038{left:506.000000pt;}
.x112_c00038{left:507.466667pt;}
.x14_c00038{left:508.666667pt;}
.x124_c00038{left:510.400000pt;}
.x15_c00038{left:512.800000pt;}
.x11e_c00038{left:514.000000pt;}
.x5_c00038{left:515.600000pt;}
.x139_c00038{left:516.933333pt;}
.x159_c00038{left:518.533333pt;}
.xfb_c00038{left:519.866667pt;}
.xd4_c00038{left:521.333333pt;}
.xe2_c00038{left:524.533333pt;}
.xdd_c00038{left:526.133333pt;}
.x10c_c00038{left:528.533333pt;}
.xd9_c00038{left:530.933333pt;}
.xb_c00038{left:532.400000pt;}
.xfc_c00038{left:535.200000pt;}
.x6_c00038{left:537.066667pt;}
.x11a_c00038{left:538.666667pt;}
.x121_c00038{left:540.933333pt;}
.xc_c00038{left:543.333333pt;}
.xda_c00038{left:544.666667pt;}
.xce_c00038{left:546.000000pt;}
.x143_c00038{left:546.933333pt;}
.x117_c00038{left:548.400000pt;}
.xe9_c00038{left:551.333333pt;}
.xf3_c00038{left:553.200000pt;}
.x145_c00038{left:554.533333pt;}
.xde_c00038{left:555.600000pt;}
.x108_c00038{left:556.933333pt;}
.x113_c00038{left:558.666667pt;}
.x133_c00038{left:560.800000pt;}
.x135_c00038{left:563.600000pt;}
.xe3_c00038{left:565.200000pt;}
.x118_c00038{left:567.600000pt;}
.x109_c00038{left:570.000000pt;}
.xf4_c00038{left:571.066667pt;}
.x130_c00038{left:574.000000pt;}
.xd_c00038{left:575.333333pt;}
.x154_c00038{left:577.066667pt;}
.x13c_c00038{left:579.333333pt;}
.xfd_c00038{left:581.866667pt;}
.x103_c00038{left:582.933333pt;}
.xdb_c00038{left:586.533333pt;}
.x11b_c00038{left:588.266667pt;}
.x13d_c00038{left:589.200000pt;}
.x16_c00038{left:591.600000pt;}
.xe_c00038{left:593.200000pt;}
.xcf_c00038{left:594.666667pt;}
.x15f_c00038{left:596.533333pt;}
.x125_c00038{left:598.133333pt;}
.x12d_c00038{left:599.066667pt;}
.xf5_c00038{left:601.466667pt;}
.x10f_c00038{left:602.533333pt;}
.x122_c00038{left:605.200000pt;}
.xe4_c00038{left:607.733333pt;}
.xd0_c00038{left:609.066667pt;}
.x11c_c00038{left:610.666667pt;}
.x10a_c00038{left:612.933333pt;}
.x146_c00038{left:614.666667pt;}
.xea_c00038{left:616.666667pt;}
.xdf_c00038{left:618.000000pt;}
.xd5_c00038{left:619.866667pt;}
.x141_c00038{left:622.133333pt;}
.x136_c00038{left:623.200000pt;}
.x13a_c00038{left:624.533333pt;}
.x7_c00038{left:625.733333pt;}
.x114_c00038{left:627.066667pt;}
.x128_c00038{left:628.133333pt;}
.x10d_c00038{left:629.333333pt;}
.xd6_c00038{left:631.066667pt;}
.x110_c00038{left:632.666667pt;}
.xeb_c00038{left:634.266667pt;}
.x15a_c00038{left:635.333333pt;}
.xe5_c00038{left:636.533333pt;}
.x131_c00038{left:638.000000pt;}
.xf6_c00038{left:640.800000pt;}
.xf_c00038{left:644.400000pt;}
.x11f_c00038{left:645.866667pt;}
.xec_c00038{left:648.933333pt;}
.x157_c00038{left:650.266667pt;}
.x8_c00038{left:651.333333pt;}
.x144_c00038{left:653.200000pt;}
.x13b_c00038{left:654.666667pt;}
.x104_c00038{left:656.266667pt;}
.x17_c00038{left:657.200000pt;}
.x119_c00038{left:658.400000pt;}
.xd1_c00038{left:665.066667pt;}
.x10_c00038{left:666.133333pt;}
.x2_c00038{left:667.600000pt;}
.xd7_c00038{left:668.533333pt;}
.xfe_c00038{left:670.933333pt;}
}





/* 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_c00039 {
    display:none;
  }
  .loading-indicator_c00039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00039 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_c00039 { 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_c00039" -> "#page-container .classname_c00039")
 */
.pf_c00039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00039 { /* 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_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00039 { /* 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_c00039 { /* 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_c00039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00039 {overflow:visible;}
  }
}
.c_c00039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00039 { /* 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_c00039:after { /* webkit #35443 */
  content: '';
}
.t_c00039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00039 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 */
}
.__c00039 { /* 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_c00039 { /* info for Javascript */
  display:none;
}
.l_c00039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00039: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_c00039 {
    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_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00039.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_c00039 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00039{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00039;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.000000;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;}
.mfe_c00039{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00039{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.m26_c00039{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m13_c00039{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m53_c00039{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mef_c00039{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m16_c00039{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8_c00039{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m98_c00039{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m68_c00039{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m96_c00039{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m37_c00039{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md4_c00039{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00039{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mde_c00039{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00039{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00039{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00039{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me3_c00039{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00039{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.me_c00039{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mb_c00039{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m41_c00039{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00039{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me9_c00039{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00039{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00039{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00039{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m52_c00039{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00039{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00039{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4_c00039{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00039{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m27_c00039{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10_c00039{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.md7_c00039{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m109_c00039{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m34_c00039{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m99_c00039{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md8_c00039{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m49_c00039{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m71_c00039{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00039{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m42_c00039{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m106_c00039{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m101_c00039{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf_c00039{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md1_c00039{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m45_c00039{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m23_c00039{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m79_c00039{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m100_c00039{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.md6_c00039{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00039{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00039{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m64_c00039{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m58_c00039{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00039{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00039{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m25_c00039{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m22_c00039{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00039{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m20_c00039{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00039{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00039{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m6_c00039{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00039{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mab_c00039{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m80_c00039{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00039{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00039{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m82_c00039{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00039{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9_c00039{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00039{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00039{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.md_c00039{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma_c00039{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00039{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00039{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m57_c00039{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00039{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m32_c00039{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00039{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me6_c00039{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mad_c00039{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00039{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m15_c00039{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md5_c00039{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m105_c00039{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m38_c00039{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m30_c00039{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m59_c00039{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00039{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00039{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00039{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m43_c00039{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m65_c00039{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me5_c00039{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m63_c00039{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mae_c00039{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00039{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00039{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00039{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m104_c00039{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.meb_c00039{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00039{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00039{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m48_c00039{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m67_c00039{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m83_c00039{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00039{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00039{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00039{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3_c00039{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m18_c00039{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00039{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00039{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m84_c00039{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m14_c00039{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m94_c00039{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m28_c00039{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00039{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00039{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mce_c00039{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00039{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00039{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.med_c00039{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m90_c00039{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00039{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.me4_c00039{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00039{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00039{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00039{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mea_c00039{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00039{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00039{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m97_c00039{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md2_c00039{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m56_c00039{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00039{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m55_c00039{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00039{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5_c00039{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00039{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00039{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m103_c00039{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7_c00039{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m72_c00039{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00039{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00039{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m69_c00039{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00039{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00039{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00039{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m89_c00039{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00039{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m35_c00039{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me7_c00039{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00039{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m19_c00039{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00039{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00039{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00039{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m88_c00039{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00039{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00039{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.maa_c00039{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m12_c00039{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00039{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m70_c00039{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m87_c00039{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00039{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m81_c00039{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m36_c00039{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md0_c00039{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00039{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00039{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m60_c00039{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m39_c00039{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00039{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00039{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m33_c00039{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m107_c00039{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mda_c00039{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00039{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m17_c00039{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m78_c00039{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me2_c00039{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00039{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.maf_c00039{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m77_c00039{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00039{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00039{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00039{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md9_c00039{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00039{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00039{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m40_c00039{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me0_c00039{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m51_c00039{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00039{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m44_c00039{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00039{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00039{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m31_c00039{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00039{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m21_c00039{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m95_c00039{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m29_c00039{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m73_c00039{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mca_c00039{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.me1_c00039{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00039{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00039{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m54_c00039{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00039{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00039{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00039{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m86_c00039{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00039{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m24_c00039{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m85_c00039{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00039{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m0_c00039{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mee_c00039{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m74_c00039{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m50_c00039{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00039{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mff_c00039{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m76_c00039{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00039{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00039{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00039{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00039{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00039{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00039{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00039{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me8_c00039{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00039{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00039{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m61_c00039{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00039{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m66_c00039{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m47_c00039{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mba_c00039{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mc_c00039{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mac_c00039{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m46_c00039{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00039{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m93_c00039{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m75_c00039{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mec_c00039{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.md3_c00039{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00039{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m91_c00039{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00039{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m62_c00039{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00039{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00039{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m108_c00039{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m11_c00039{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00039{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00039{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m102_c00039{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00039{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m92_c00039{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00039{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00039{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00039{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(0.477750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477750,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls0_c00039{letter-spacing:0.000000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{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__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00039{word-spacing:-11.361186px;}
.ws5_c00039{word-spacing:-6.903780px;}
.ws4_c00039{word-spacing:-3.209607px;}
.ws2_c00039{word-spacing:-2.799076px;}
.ws3_c00039{word-spacing:-1.865330px;}
.ws6_c00039{word-spacing:0.000000px;}
.ws0_c00039{word-spacing:15.571429px;}
.fc0_c00039{color:transparent;}
.fs4_c00039{font-size:54.000000px;}
.fs3_c00039{font-size:60.000000px;}
.fs2_c00039{font-size:66.000000px;}
.fs1_c00039{font-size:72.000000px;}
.fs0_c00039{font-size:78.000000px;}
.y0_c00039{bottom:0.000000px;}
.y68_c00039{bottom:184.350000px;}
.y35_c00039{bottom:199.050000px;}
.y67_c00039{bottom:201.600000px;}
.y34_c00039{bottom:216.750000px;}
.y66_c00039{bottom:219.300000px;}
.y65_c00039{bottom:237.300000px;}
.y33_c00039{bottom:237.750000px;}
.y64_c00039{bottom:254.550000px;}
.y32_c00039{bottom:256.050000px;}
.y63_c00039{bottom:272.250000px;}
.y31_c00039{bottom:274.050000px;}
.y62_c00039{bottom:290.250000px;}
.y30_c00039{bottom:291.300000px;}
.y61_c00039{bottom:307.500000px;}
.y2f_c00039{bottom:309.300000px;}
.y60_c00039{bottom:325.200000px;}
.y2e_c00039{bottom:326.850000px;}
.y5f_c00039{bottom:343.200000px;}
.y2d_c00039{bottom:344.850000px;}
.y5e_c00039{bottom:361.200000px;}
.y2c_c00039{bottom:362.100000px;}
.y5d_c00039{bottom:378.450000px;}
.y2b_c00039{bottom:387.450000px;}
.y5c_c00039{bottom:396.150000px;}
.y2a_c00039{bottom:405.750000px;}
.y5b_c00039{bottom:413.850000px;}
.y29_c00039{bottom:422.850000px;}
.y5a_c00039{bottom:431.550000px;}
.y28_c00039{bottom:440.550000px;}
.y59_c00039{bottom:449.250000px;}
.y27_c00039{bottom:458.550000px;}
.y58_c00039{bottom:467.250000px;}
.y26_c00039{bottom:476.550000px;}
.y57_c00039{bottom:484.950000px;}
.y25_c00039{bottom:494.250000px;}
.y56_c00039{bottom:502.650000px;}
.y24_c00039{bottom:511.950000px;}
.y55_c00039{bottom:520.350000px;}
.y23_c00039{bottom:529.950000px;}
.y54_c00039{bottom:538.350000px;}
.y22_c00039{bottom:547.650000px;}
.y53_c00039{bottom:555.600000px;}
.y21_c00039{bottom:565.350000px;}
.y52_c00039{bottom:573.300000px;}
.y20_c00039{bottom:583.050000px;}
.y51_c00039{bottom:591.300000px;}
.y1f_c00039{bottom:601.050000px;}
.y50_c00039{bottom:609.000000px;}
.y1e_c00039{bottom:618.750000px;}
.y4f_c00039{bottom:626.700000px;}
.y1d_c00039{bottom:636.450000px;}
.y4e_c00039{bottom:644.400000px;}
.y1c_c00039{bottom:654.450000px;}
.y4d_c00039{bottom:670.350000px;}
.y1b_c00039{bottom:672.150000px;}
.y4c_c00039{bottom:688.650000px;}
.y1a_c00039{bottom:689.850000px;}
.y4b_c00039{bottom:705.900000px;}
.y19_c00039{bottom:707.850000px;}
.y4a_c00039{bottom:723.900000px;}
.y18_c00039{bottom:725.550000px;}
.y49_c00039{bottom:741.600000px;}
.y17_c00039{bottom:743.250000px;}
.y48_c00039{bottom:759.300000px;}
.y16_c00039{bottom:760.500000px;}
.y47_c00039{bottom:777.300000px;}
.y15_c00039{bottom:778.200000px;}
.y46_c00039{bottom:795.000000px;}
.y14_c00039{bottom:796.200000px;}
.y45_c00039{bottom:812.700000px;}
.y13_c00039{bottom:813.900000px;}
.y44_c00039{bottom:830.400000px;}
.y12_c00039{bottom:834.900000px;}
.y43_c00039{bottom:848.400000px;}
.y11_c00039{bottom:853.200000px;}
.y42_c00039{bottom:866.100000px;}
.y10_c00039{bottom:871.350000px;}
.y41_c00039{bottom:888.450000px;}
.yf_c00039{bottom:889.050000px;}
.y40_c00039{bottom:906.150000px;}
.ye_c00039{bottom:906.750000px;}
.y3f_c00039{bottom:923.700000px;}
.yd_c00039{bottom:924.450000px;}
.y3e_c00039{bottom:941.700000px;}
.yc_c00039{bottom:942.150000px;}
.y3d_c00039{bottom:959.400000px;}
.yb_c00039{bottom:962.700000px;}
.ya_c00039{bottom:981.450000px;}
.y3c_c00039{bottom:981.600000px;}
.y9_c00039{bottom:999.150000px;}
.y3b_c00039{bottom:999.300000px;}
.y8_c00039{bottom:1016.850000px;}
.y3a_c00039{bottom:1017.000000px;}
.y7_c00039{bottom:1034.550000px;}
.y39_c00039{bottom:1035.000000px;}
.y6_c00039{bottom:1052.250000px;}
.y38_c00039{bottom:1053.000000px;}
.y5_c00039{bottom:1070.250000px;}
.y37_c00039{bottom:1070.700000px;}
.y4_c00039{bottom:1088.250000px;}
.y36_c00039{bottom:1088.700000px;}
.y3_c00039{bottom:1105.950000px;}
.y2_c00039{bottom:1123.950000px;}
.y1_c00039{bottom:1150.500000px;}
.h6_c00039{height:54.000000px;}
.h5_c00039{height:60.000000px;}
.h4_c00039{height:66.000000px;}
.h3_c00039{height:72.000000px;}
.h2_c00039{height:78.000000px;}
.h0_c00039{height:1269.720063px;}
.h1_c00039{height:1269.750000px;}
.w0_c00039{width:948.600036px;}
.w1_c00039{width:948.750000px;}
.x0_c00039{left:0.000000px;}
.x3_c00039{left:196.500000px;}
.x1_c00039{left:197.700000px;}
.x27_c00039{left:199.650000px;}
.x4c_c00039{left:201.150000px;}
.x6b_c00039{left:202.200000px;}
.x70_c00039{left:203.550000px;}
.x79_c00039{left:204.750000px;}
.x8e_c00039{left:205.950000px;}
.x9d_c00039{left:208.050000px;}
.xa6_c00039{left:209.100000px;}
.xa9_c00039{left:210.300000px;}
.x4d_c00039{left:211.950000px;}
.x41_c00039{left:218.550000px;}
.x65_c00039{left:220.650000px;}
.x1c_c00039{left:224.400000px;}
.x7c_c00039{left:225.900000px;}
.x55_c00039{left:226.950000px;}
.xb4_c00039{left:228.150000px;}
.xaf_c00039{left:229.200000px;}
.x85_c00039{left:231.600000px;}
.x2d_c00039{left:233.250000px;}
.x22_c00039{left:235.800000px;}
.x72_c00039{left:239.700000px;}
.x42_c00039{left:242.250000px;}
.x66_c00039{left:244.050000px;}
.xaa_c00039{left:245.250000px;}
.x5e_c00039{left:246.600000px;}
.x86_c00039{left:249.300000px;}
.x33_c00039{left:250.350000px;}
.x14_c00039{left:253.050000px;}
.x28_c00039{left:255.150000px;}
.x4_c00039{left:257.700000px;}
.xb2_c00039{left:260.250000px;}
.x59_c00039{left:261.300000px;}
.x3b_c00039{left:262.650000px;}
.x56_c00039{left:264.000000px;}
.x98_c00039{left:265.200000px;}
.x80_c00039{left:267.000000px;}
.x5a_c00039{left:270.600000px;}
.x4e_c00039{left:273.900000px;}
.x3c_c00039{left:275.550000px;}
.x23_c00039{left:277.500000px;}
.x5f_c00039{left:279.000000px;}
.x81_c00039{left:280.650000px;}
.x5_c00039{left:282.150000px;}
.x8a_c00039{left:285.000000px;}
.xab_c00039{left:287.100000px;}
.x87_c00039{left:291.000000px;}
.x43_c00039{left:293.700000px;}
.x1d_c00039{left:294.900000px;}
.x60_c00039{left:297.300000px;}
.x92_c00039{left:299.250000px;}
.x82_c00039{left:300.750000px;}
.x53_c00039{left:301.950000px;}
.x2e_c00039{left:303.450000px;}
.x5b_c00039{left:304.500000px;}
.x34_c00039{left:306.450000px;}
.x3d_c00039{left:308.700000px;}
.xa4_c00039{left:310.950000px;}
.x44_c00039{left:314.250000px;}
.x9e_c00039{left:315.750000px;}
.x73_c00039{left:318.150000px;}
.x99_c00039{left:319.500000px;}
.x6c_c00039{left:322.350000px;}
.x57_c00039{left:324.000000px;}
.x2f_c00039{left:325.050000px;}
.x76_c00039{left:326.850000px;}
.x15_c00039{left:328.650000px;}
.x6d_c00039{left:330.300000px;}
.x6_c00039{left:333.300000px;}
.x35_c00039{left:334.950000px;}
.x96_c00039{left:336.450000px;}
.x45_c00039{left:337.950000px;}
.x16_c00039{left:340.500000px;}
.x67_c00039{left:342.600000px;}
.x29_c00039{left:343.650000px;}
.x4f_c00039{left:345.600000px;}
.xb0_c00039{left:347.250000px;}
.x88_c00039{left:348.300000px;}
.xa7_c00039{left:349.350000px;}
.x36_c00039{left:350.850000px;}
.x6e_c00039{left:356.550000px;}
.x83_c00039{left:358.950000px;}
.x1e_c00039{left:360.000000px;}
.x46_c00039{left:361.350000px;}
.x95_c00039{left:363.000000px;}
.x39_c00039{left:364.950000px;}
.xa5_c00039{left:366.450000px;}
.x61_c00039{left:371.100000px;}
.x77_c00039{left:372.600000px;}
.xac_c00039{left:374.550000px;}
.x68_c00039{left:375.750000px;}
.x8b_c00039{left:378.300000px;}
.x9c_c00039{left:380.100000px;}
.xb3_c00039{left:381.150000px;}
.x3a_c00039{left:382.200000px;}
.x2a_c00039{left:383.550000px;}
.x7_c00039{left:387.000000px;}
.x8c_c00039{left:389.100000px;}
.x37_c00039{left:391.950000px;}
.xa0_c00039{left:393.450000px;}
.x47_c00039{left:394.500000px;}
.x5c_c00039{left:397.050000px;}
.x17_c00039{left:399.150000px;}
.x93_c00039{left:402.900000px;}
.x24_c00039{left:404.550000px;}
.x71_c00039{left:405.900000px;}
.x7d_c00039{left:407.700000px;}
.x78_c00039{left:408.900000px;}
.xa8_c00039{left:410.550000px;}
.x48_c00039{left:412.200000px;}
.x3e_c00039{left:414.600000px;}
.x7a_c00039{left:415.650000px;}
.x62_c00039{left:418.200000px;}
.x91_c00039{left:420.450000px;}
.x5d_c00039{left:422.550000px;}
.xad_c00039{left:423.900000px;}
.x8_c00039{left:425.550000px;}
.x2_c00039{left:426.600000px;}
.x58_c00039{left:428.100000px;}
.x1f_c00039{left:430.500000px;}
.x50_c00039{left:432.300000px;}
.x7e_c00039{left:433.650000px;}
.x30_c00039{left:436.200000px;}
.x69_c00039{left:438.000000px;}
.x18_c00039{left:439.050000px;}
.xa2_c00039{left:442.800000px;}
.x49_c00039{left:446.400000px;}
.x3f_c00039{left:448.800000px;}
.x9_c00039{left:450.750000px;}
.x6f_c00039{left:454.200000px;}
.x54_c00039{left:455.250000px;}
.x8f_c00039{left:456.450000px;}
.x20_c00039{left:458.550000px;}
.x94_c00039{left:460.200000px;}
.x63_c00039{left:461.700000px;}
.x31_c00039{left:463.500000px;}
.x74_c00039{left:465.450000px;}
.x19_c00039{left:467.850000px;}
.x97_c00039{left:468.900000px;}
.x38_c00039{left:470.400000px;}
.x40_c00039{left:475.050000px;}
.x1a_c00039{left:476.850000px;}
.x4a_c00039{left:478.050000px;}
.x6a_c00039{left:479.700000px;}
.x9f_c00039{left:483.000000px;}
.x64_c00039{left:484.050000px;}
.x21_c00039{left:485.250000px;}
.x8d_c00039{left:487.800000px;}
.x25_c00039{left:489.150000px;}
.x2b_c00039{left:492.150000px;}
.x89_c00039{left:493.800000px;}
.x9a_c00039{left:495.150000px;}
.x1b_c00039{left:496.950000px;}
.x4b_c00039{left:498.900000px;}
.xa3_c00039{left:501.300000px;}
.x51_c00039{left:504.300000px;}
.x26_c00039{left:506.400000px;}
.x7b_c00039{left:509.250000px;}
.x84_c00039{left:511.350000px;}
.xb1_c00039{left:513.150000px;}
.x2c_c00039{left:514.800000px;}
.x32_c00039{left:516.450000px;}
.xa1_c00039{left:518.400000px;}
.x75_c00039{left:520.500000px;}
.x7f_c00039{left:522.600000px;}
.x52_c00039{left:524.100000px;}
.xa_c00039{left:526.050000px;}
.x90_c00039{left:532.050000px;}
.x9b_c00039{left:533.700000px;}
.xae_c00039{left:539.100000px;}
.xb_c00039{left:549.750000px;}
.xb5_c00039{left:550.800000px;}
.xda_c00039{left:552.000000px;}
.xe6_c00039{left:553.200000px;}
.x104_c00039{left:554.700000px;}
.x110_c00039{left:555.750000px;}
.x124_c00039{left:556.800000px;}
.x12d_c00039{left:557.850000px;}
.x13f_c00039{left:559.050000px;}
.x146_c00039{left:560.100000px;}
.x14f_c00039{left:561.450000px;}
.xf8_c00039{left:562.950000px;}
.x160_c00039{left:564.300000px;}
.xe9_c00039{left:571.650000px;}
.xb6_c00039{left:572.700000px;}
.xd3_c00039{left:574.050000px;}
.x107_c00039{left:576.450000px;}
.x159_c00039{left:580.500000px;}
.xc3_c00039{left:582.000000px;}
.x14c_c00039{left:583.200000px;}
.x14a_c00039{left:585.000000px;}
.xe0_c00039{left:586.500000px;}
.xc_c00039{left:588.600000px;}
.x11d_c00039{left:591.300000px;}
.xbc_c00039{left:593.250000px;}
.xf2_c00039{left:594.900000px;}
.x10d_c00039{left:596.400000px;}
.xcc_c00039{left:598.200000px;}
.x111_c00039{left:599.700000px;}
.x142_c00039{left:601.800000px;}
.xbd_c00039{left:603.300000px;}
.x101_c00039{left:605.250000px;}
.x158_c00039{left:606.600000px;}
.x125_c00039{left:607.800000px;}
.x162_c00039{left:609.000000px;}
.xe1_c00039{left:610.650000px;}
.xf9_c00039{left:613.350000px;}
.xea_c00039{left:615.150000px;}
.x140_c00039{left:616.350000px;}
.x117_c00039{left:618.300000px;}
.xd_c00039{left:621.000000px;}
.xdb_c00039{left:622.500000px;}
.x15a_c00039{left:624.000000px;}
.xe7_c00039{left:625.200000px;}
.x133_c00039{left:626.550000px;}
.x12a_c00039{left:628.500000px;}
.x118_c00039{left:629.850000px;}
.x109_c00039{left:631.950000px;}
.xc4_c00039{left:635.250000px;}
.x150_c00039{left:637.350000px;}
.xe_c00039{left:638.700000px;}
.xfa_c00039{left:640.350000px;}
.x108_c00039{left:642.000000px;}
.x143_c00039{left:643.500000px;}
.xb7_c00039{left:645.450000px;}
.x132_c00039{left:646.800000px;}
.x151_c00039{left:647.850000px;}
.xeb_c00039{left:649.650000px;}
.x112_c00039{left:650.850000px;}
.xe8_c00039{left:651.900000px;}
.x134_c00039{left:655.050000px;}
.xd4_c00039{left:657.600000px;}
.x15e_c00039{left:659.250000px;}
.xcd_c00039{left:660.750000px;}
.x11e_c00039{left:661.950000px;}
.x152_c00039{left:664.350000px;}
.x127_c00039{left:666.300000px;}
.x10e_c00039{left:667.350000px;}
.x14d_c00039{left:669.300000px;}
.xec_c00039{left:671.550000px;}
.x105_c00039{left:673.800000px;}
.xf_c00039{left:675.450000px;}
.xe2_c00039{left:678.000000px;}
.xfe_c00039{left:679.350000px;}
.x145_c00039{left:681.000000px;}
.x141_c00039{left:682.200000px;}
.xc5_c00039{left:683.250000px;}
.xbe_c00039{left:684.300000px;}
.x153_c00039{left:685.650000px;}
.x156_c00039{left:687.600000px;}
.x128_c00039{left:688.650000px;}
.x102_c00039{left:692.550000px;}
.xdc_c00039{left:694.800000px;}
.x138_c00039{left:695.850000px;}
.xf3_c00039{left:697.200000px;}
.xd5_c00039{left:699.000000px;}
.xce_c00039{left:702.150000px;}
.x12f_c00039{left:703.500000px;}
.x113_c00039{left:705.600000px;}
.x149_c00039{left:706.950000px;}
.x10a_c00039{left:708.150000px;}
.x119_c00039{left:709.500000px;}
.xb8_c00039{left:711.300000px;}
.x147_c00039{left:714.600000px;}
.xff_c00039{left:716.100000px;}
.xbf_c00039{left:719.250000px;}
.xfb_c00039{left:720.600000px;}
.xd6_c00039{left:722.700000px;}
.xb9_c00039{left:724.650000px;}
.x130_c00039{left:726.150000px;}
.x10_c00039{left:727.950000px;}
.x114_c00039{left:730.500000px;}
.x11f_c00039{left:731.700000px;}
.x154_c00039{left:732.750000px;}
.x15b_c00039{left:734.250000px;}
.xe3_c00039{left:735.300000px;}
.x13d_c00039{left:736.950000px;}
.x135_c00039{left:740.700000px;}
.x106_c00039{left:743.250000px;}
.xc6_c00039{left:745.200000px;}
.x115_c00039{left:750.000000px;}
.x126_c00039{left:751.950000px;}
.xc7_c00039{left:754.500000px;}
.xf4_c00039{left:756.600000px;}
.xed_c00039{left:757.650000px;}
.xba_c00039{left:759.600000px;}
.xc0_c00039{left:760.650000px;}
.x136_c00039{left:762.600000px;}
.xe4_c00039{left:764.100000px;}
.x12e_c00039{left:765.750000px;}
.xcf_c00039{left:768.000000px;}
.xdd_c00039{left:769.650000px;}
.x144_c00039{left:771.300000px;}
.x120_c00039{left:773.100000px;}
.x10b_c00039{left:775.050000px;}
.x139_c00039{left:777.900000px;}
.x100_c00039{left:779.100000px;}
.xc8_c00039{left:780.750000px;}
.xee_c00039{left:783.150000px;}
.x10c_c00039{left:786.600000px;}
.x15d_c00039{left:787.950000px;}
.x11_c00039{left:789.150000px;}
.x163_c00039{left:790.500000px;}
.x13a_c00039{left:792.000000px;}
.x157_c00039{left:793.350000px;}
.xc1_c00039{left:795.600000px;}
.x137_c00039{left:797.100000px;}
.x12_c00039{left:799.200000px;}
.xc9_c00039{left:800.550000px;}
.xde_c00039{left:802.050000px;}
.xd7_c00039{left:804.000000px;}
.xef_c00039{left:805.800000px;}
.x15f_c00039{left:807.300000px;}
.xf5_c00039{left:810.600000px;}
.xd8_c00039{left:813.300000px;}
.xd0_c00039{left:814.800000px;}
.x131_c00039{left:816.450000px;}
.xfc_c00039{left:820.650000px;}
.xe5_c00039{left:822.150000px;}
.xd1_c00039{left:824.550000px;}
.xc2_c00039{left:826.500000px;}
.x13b_c00039{left:828.300000px;}
.x13_c00039{left:830.850000px;}
.x11a_c00039{left:833.700000px;}
.x121_c00039{left:835.800000px;}
.xf0_c00039{left:837.450000px;}
.xbb_c00039{left:838.500000px;}
.xd2_c00039{left:840.000000px;}
.xf6_c00039{left:842.700000px;}
.xca_c00039{left:845.250000px;}
.x129_c00039{left:846.300000px;}
.xd9_c00039{left:847.500000px;}
.x12b_c00039{left:848.850000px;}
.x116_c00039{left:852.300000px;}
.x11b_c00039{left:853.800000px;}
.x122_c00039{left:856.650000px;}
.xf1_c00039{left:858.000000px;}
.xf7_c00039{left:859.200000px;}
.xcb_c00039{left:861.450000px;}
.xdf_c00039{left:863.550000px;}
.x14b_c00039{left:867.150000px;}
.x161_c00039{left:868.200000px;}
.x13e_c00039{left:869.700000px;}
.x123_c00039{left:875.400000px;}
.x103_c00039{left:877.200000px;}
.x11c_c00039{left:880.050000px;}
.x12c_c00039{left:881.550000px;}
.x13c_c00039{left:883.050000px;}
.xfd_c00039{left:884.850000px;}
.x10f_c00039{left:885.900000px;}
.x14e_c00039{left:888.000000px;}
.x15c_c00039{left:889.650000px;}
.x164_c00039{left:891.600000px;}
.x148_c00039{left:892.800000px;}
.x155_c00039{left:894.000000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ws1_c00039{word-spacing:-10.098832pt;}
.ws5_c00039{word-spacing:-6.136693pt;}
.ws4_c00039{word-spacing:-2.852984pt;}
.ws2_c00039{word-spacing:-2.488068pt;}
.ws3_c00039{word-spacing:-1.658071pt;}
.ws6_c00039{word-spacing:0.000000pt;}
.ws0_c00039{word-spacing:13.841270pt;}
.fs4_c00039{font-size:48.000000pt;}
.fs3_c00039{font-size:53.333333pt;}
.fs2_c00039{font-size:58.666667pt;}
.fs1_c00039{font-size:64.000000pt;}
.fs0_c00039{font-size:69.333333pt;}
.y0_c00039{bottom:0.000000pt;}
.y68_c00039{bottom:163.866667pt;}
.y35_c00039{bottom:176.933333pt;}
.y67_c00039{bottom:179.200000pt;}
.y34_c00039{bottom:192.666667pt;}
.y66_c00039{bottom:194.933333pt;}
.y65_c00039{bottom:210.933333pt;}
.y33_c00039{bottom:211.333333pt;}
.y64_c00039{bottom:226.266667pt;}
.y32_c00039{bottom:227.600000pt;}
.y63_c00039{bottom:242.000000pt;}
.y31_c00039{bottom:243.600000pt;}
.y62_c00039{bottom:258.000000pt;}
.y30_c00039{bottom:258.933333pt;}
.y61_c00039{bottom:273.333333pt;}
.y2f_c00039{bottom:274.933333pt;}
.y60_c00039{bottom:289.066667pt;}
.y2e_c00039{bottom:290.533333pt;}
.y5f_c00039{bottom:305.066667pt;}
.y2d_c00039{bottom:306.533333pt;}
.y5e_c00039{bottom:321.066667pt;}
.y2c_c00039{bottom:321.866667pt;}
.y5d_c00039{bottom:336.400000pt;}
.y2b_c00039{bottom:344.400000pt;}
.y5c_c00039{bottom:352.133333pt;}
.y2a_c00039{bottom:360.666667pt;}
.y5b_c00039{bottom:367.866667pt;}
.y29_c00039{bottom:375.866667pt;}
.y5a_c00039{bottom:383.600000pt;}
.y28_c00039{bottom:391.600000pt;}
.y59_c00039{bottom:399.333333pt;}
.y27_c00039{bottom:407.600000pt;}
.y58_c00039{bottom:415.333333pt;}
.y26_c00039{bottom:423.600000pt;}
.y57_c00039{bottom:431.066667pt;}
.y25_c00039{bottom:439.333333pt;}
.y56_c00039{bottom:446.800000pt;}
.y24_c00039{bottom:455.066667pt;}
.y55_c00039{bottom:462.533333pt;}
.y23_c00039{bottom:471.066667pt;}
.y54_c00039{bottom:478.533333pt;}
.y22_c00039{bottom:486.800000pt;}
.y53_c00039{bottom:493.866667pt;}
.y21_c00039{bottom:502.533333pt;}
.y52_c00039{bottom:509.600000pt;}
.y20_c00039{bottom:518.266667pt;}
.y51_c00039{bottom:525.600000pt;}
.y1f_c00039{bottom:534.266667pt;}
.y50_c00039{bottom:541.333333pt;}
.y1e_c00039{bottom:550.000000pt;}
.y4f_c00039{bottom:557.066667pt;}
.y1d_c00039{bottom:565.733333pt;}
.y4e_c00039{bottom:572.800000pt;}
.y1c_c00039{bottom:581.733333pt;}
.y4d_c00039{bottom:595.866667pt;}
.y1b_c00039{bottom:597.466667pt;}
.y4c_c00039{bottom:612.133333pt;}
.y1a_c00039{bottom:613.200000pt;}
.y4b_c00039{bottom:627.466667pt;}
.y19_c00039{bottom:629.200000pt;}
.y4a_c00039{bottom:643.466667pt;}
.y18_c00039{bottom:644.933333pt;}
.y49_c00039{bottom:659.200000pt;}
.y17_c00039{bottom:660.666667pt;}
.y48_c00039{bottom:674.933333pt;}
.y16_c00039{bottom:676.000000pt;}
.y47_c00039{bottom:690.933333pt;}
.y15_c00039{bottom:691.733333pt;}
.y46_c00039{bottom:706.666667pt;}
.y14_c00039{bottom:707.733333pt;}
.y45_c00039{bottom:722.400000pt;}
.y13_c00039{bottom:723.466667pt;}
.y44_c00039{bottom:738.133333pt;}
.y12_c00039{bottom:742.133333pt;}
.y43_c00039{bottom:754.133333pt;}
.y11_c00039{bottom:758.400000pt;}
.y42_c00039{bottom:769.866667pt;}
.y10_c00039{bottom:774.533333pt;}
.y41_c00039{bottom:789.733333pt;}
.yf_c00039{bottom:790.266667pt;}
.y40_c00039{bottom:805.466667pt;}
.ye_c00039{bottom:806.000000pt;}
.y3f_c00039{bottom:821.066667pt;}
.yd_c00039{bottom:821.733333pt;}
.y3e_c00039{bottom:837.066667pt;}
.yc_c00039{bottom:837.466667pt;}
.y3d_c00039{bottom:852.800000pt;}
.yb_c00039{bottom:855.733333pt;}
.ya_c00039{bottom:872.400000pt;}
.y3c_c00039{bottom:872.533333pt;}
.y9_c00039{bottom:888.133333pt;}
.y3b_c00039{bottom:888.266667pt;}
.y8_c00039{bottom:903.866667pt;}
.y3a_c00039{bottom:904.000000pt;}
.y7_c00039{bottom:919.600000pt;}
.y39_c00039{bottom:920.000000pt;}
.y6_c00039{bottom:935.333333pt;}
.y38_c00039{bottom:936.000000pt;}
.y5_c00039{bottom:951.333333pt;}
.y37_c00039{bottom:951.733333pt;}
.y4_c00039{bottom:967.333333pt;}
.y36_c00039{bottom:967.733333pt;}
.y3_c00039{bottom:983.066667pt;}
.y2_c00039{bottom:999.066667pt;}
.y1_c00039{bottom:1022.666667pt;}
.h6_c00039{height:48.000000pt;}
.h5_c00039{height:53.333333pt;}
.h4_c00039{height:58.666667pt;}
.h3_c00039{height:64.000000pt;}
.h2_c00039{height:69.333333pt;}
.h0_c00039{height:1128.640056pt;}
.h1_c00039{height:1128.666667pt;}
.w0_c00039{width:843.200032pt;}
.w1_c00039{width:843.333333pt;}
.x0_c00039{left:0.000000pt;}
.x3_c00039{left:174.666667pt;}
.x1_c00039{left:175.733333pt;}
.x27_c00039{left:177.466667pt;}
.x4c_c00039{left:178.800000pt;}
.x6b_c00039{left:179.733333pt;}
.x70_c00039{left:180.933333pt;}
.x79_c00039{left:182.000000pt;}
.x8e_c00039{left:183.066667pt;}
.x9d_c00039{left:184.933333pt;}
.xa6_c00039{left:185.866667pt;}
.xa9_c00039{left:186.933333pt;}
.x4d_c00039{left:188.400000pt;}
.x41_c00039{left:194.266667pt;}
.x65_c00039{left:196.133333pt;}
.x1c_c00039{left:199.466667pt;}
.x7c_c00039{left:200.800000pt;}
.x55_c00039{left:201.733333pt;}
.xb4_c00039{left:202.800000pt;}
.xaf_c00039{left:203.733333pt;}
.x85_c00039{left:205.866667pt;}
.x2d_c00039{left:207.333333pt;}
.x22_c00039{left:209.600000pt;}
.x72_c00039{left:213.066667pt;}
.x42_c00039{left:215.333333pt;}
.x66_c00039{left:216.933333pt;}
.xaa_c00039{left:218.000000pt;}
.x5e_c00039{left:219.200000pt;}
.x86_c00039{left:221.600000pt;}
.x33_c00039{left:222.533333pt;}
.x14_c00039{left:224.933333pt;}
.x28_c00039{left:226.800000pt;}
.x4_c00039{left:229.066667pt;}
.xb2_c00039{left:231.333333pt;}
.x59_c00039{left:232.266667pt;}
.x3b_c00039{left:233.466667pt;}
.x56_c00039{left:234.666667pt;}
.x98_c00039{left:235.733333pt;}
.x80_c00039{left:237.333333pt;}
.x5a_c00039{left:240.533333pt;}
.x4e_c00039{left:243.466667pt;}
.x3c_c00039{left:244.933333pt;}
.x23_c00039{left:246.666667pt;}
.x5f_c00039{left:248.000000pt;}
.x81_c00039{left:249.466667pt;}
.x5_c00039{left:250.800000pt;}
.x8a_c00039{left:253.333333pt;}
.xab_c00039{left:255.200000pt;}
.x87_c00039{left:258.666667pt;}
.x43_c00039{left:261.066667pt;}
.x1d_c00039{left:262.133333pt;}
.x60_c00039{left:264.266667pt;}
.x92_c00039{left:266.000000pt;}
.x82_c00039{left:267.333333pt;}
.x53_c00039{left:268.400000pt;}
.x2e_c00039{left:269.733333pt;}
.x5b_c00039{left:270.666667pt;}
.x34_c00039{left:272.400000pt;}
.x3d_c00039{left:274.400000pt;}
.xa4_c00039{left:276.400000pt;}
.x44_c00039{left:279.333333pt;}
.x9e_c00039{left:280.666667pt;}
.x73_c00039{left:282.800000pt;}
.x99_c00039{left:284.000000pt;}
.x6c_c00039{left:286.533333pt;}
.x57_c00039{left:288.000000pt;}
.x2f_c00039{left:288.933333pt;}
.x76_c00039{left:290.533333pt;}
.x15_c00039{left:292.133333pt;}
.x6d_c00039{left:293.600000pt;}
.x6_c00039{left:296.266667pt;}
.x35_c00039{left:297.733333pt;}
.x96_c00039{left:299.066667pt;}
.x45_c00039{left:300.400000pt;}
.x16_c00039{left:302.666667pt;}
.x67_c00039{left:304.533333pt;}
.x29_c00039{left:305.466667pt;}
.x4f_c00039{left:307.200000pt;}
.xb0_c00039{left:308.666667pt;}
.x88_c00039{left:309.600000pt;}
.xa7_c00039{left:310.533333pt;}
.x36_c00039{left:311.866667pt;}
.x6e_c00039{left:316.933333pt;}
.x83_c00039{left:319.066667pt;}
.x1e_c00039{left:320.000000pt;}
.x46_c00039{left:321.200000pt;}
.x95_c00039{left:322.666667pt;}
.x39_c00039{left:324.400000pt;}
.xa5_c00039{left:325.733333pt;}
.x61_c00039{left:329.866667pt;}
.x77_c00039{left:331.200000pt;}
.xac_c00039{left:332.933333pt;}
.x68_c00039{left:334.000000pt;}
.x8b_c00039{left:336.266667pt;}
.x9c_c00039{left:337.866667pt;}
.xb3_c00039{left:338.800000pt;}
.x3a_c00039{left:339.733333pt;}
.x2a_c00039{left:340.933333pt;}
.x7_c00039{left:344.000000pt;}
.x8c_c00039{left:345.866667pt;}
.x37_c00039{left:348.400000pt;}
.xa0_c00039{left:349.733333pt;}
.x47_c00039{left:350.666667pt;}
.x5c_c00039{left:352.933333pt;}
.x17_c00039{left:354.800000pt;}
.x93_c00039{left:358.133333pt;}
.x24_c00039{left:359.600000pt;}
.x71_c00039{left:360.800000pt;}
.x7d_c00039{left:362.400000pt;}
.x78_c00039{left:363.466667pt;}
.xa8_c00039{left:364.933333pt;}
.x48_c00039{left:366.400000pt;}
.x3e_c00039{left:368.533333pt;}
.x7a_c00039{left:369.466667pt;}
.x62_c00039{left:371.733333pt;}
.x91_c00039{left:373.733333pt;}
.x5d_c00039{left:375.600000pt;}
.xad_c00039{left:376.800000pt;}
.x8_c00039{left:378.266667pt;}
.x2_c00039{left:379.200000pt;}
.x58_c00039{left:380.533333pt;}
.x1f_c00039{left:382.666667pt;}
.x50_c00039{left:384.266667pt;}
.x7e_c00039{left:385.466667pt;}
.x30_c00039{left:387.733333pt;}
.x69_c00039{left:389.333333pt;}
.x18_c00039{left:390.266667pt;}
.xa2_c00039{left:393.600000pt;}
.x49_c00039{left:396.800000pt;}
.x3f_c00039{left:398.933333pt;}
.x9_c00039{left:400.666667pt;}
.x6f_c00039{left:403.733333pt;}
.x54_c00039{left:404.666667pt;}
.x8f_c00039{left:405.733333pt;}
.x20_c00039{left:407.600000pt;}
.x94_c00039{left:409.066667pt;}
.x63_c00039{left:410.400000pt;}
.x31_c00039{left:412.000000pt;}
.x74_c00039{left:413.733333pt;}
.x19_c00039{left:415.866667pt;}
.x97_c00039{left:416.800000pt;}
.x38_c00039{left:418.133333pt;}
.x40_c00039{left:422.266667pt;}
.x1a_c00039{left:423.866667pt;}
.x4a_c00039{left:424.933333pt;}
.x6a_c00039{left:426.400000pt;}
.x9f_c00039{left:429.333333pt;}
.x64_c00039{left:430.266667pt;}
.x21_c00039{left:431.333333pt;}
.x8d_c00039{left:433.600000pt;}
.x25_c00039{left:434.800000pt;}
.x2b_c00039{left:437.466667pt;}
.x89_c00039{left:438.933333pt;}
.x9a_c00039{left:440.133333pt;}
.x1b_c00039{left:441.733333pt;}
.x4b_c00039{left:443.466667pt;}
.xa3_c00039{left:445.600000pt;}
.x51_c00039{left:448.266667pt;}
.x26_c00039{left:450.133333pt;}
.x7b_c00039{left:452.666667pt;}
.x84_c00039{left:454.533333pt;}
.xb1_c00039{left:456.133333pt;}
.x2c_c00039{left:457.600000pt;}
.x32_c00039{left:459.066667pt;}
.xa1_c00039{left:460.800000pt;}
.x75_c00039{left:462.666667pt;}
.x7f_c00039{left:464.533333pt;}
.x52_c00039{left:465.866667pt;}
.xa_c00039{left:467.600000pt;}
.x90_c00039{left:472.933333pt;}
.x9b_c00039{left:474.400000pt;}
.xae_c00039{left:479.200000pt;}
.xb_c00039{left:488.666667pt;}
.xb5_c00039{left:489.600000pt;}
.xda_c00039{left:490.666667pt;}
.xe6_c00039{left:491.733333pt;}
.x104_c00039{left:493.066667pt;}
.x110_c00039{left:494.000000pt;}
.x124_c00039{left:494.933333pt;}
.x12d_c00039{left:495.866667pt;}
.x13f_c00039{left:496.933333pt;}
.x146_c00039{left:497.866667pt;}
.x14f_c00039{left:499.066667pt;}
.xf8_c00039{left:500.400000pt;}
.x160_c00039{left:501.600000pt;}
.xe9_c00039{left:508.133333pt;}
.xb6_c00039{left:509.066667pt;}
.xd3_c00039{left:510.266667pt;}
.x107_c00039{left:512.400000pt;}
.x159_c00039{left:516.000000pt;}
.xc3_c00039{left:517.333333pt;}
.x14c_c00039{left:518.400000pt;}
.x14a_c00039{left:520.000000pt;}
.xe0_c00039{left:521.333333pt;}
.xc_c00039{left:523.200000pt;}
.x11d_c00039{left:525.600000pt;}
.xbc_c00039{left:527.333333pt;}
.xf2_c00039{left:528.800000pt;}
.x10d_c00039{left:530.133333pt;}
.xcc_c00039{left:531.733333pt;}
.x111_c00039{left:533.066667pt;}
.x142_c00039{left:534.933333pt;}
.xbd_c00039{left:536.266667pt;}
.x101_c00039{left:538.000000pt;}
.x158_c00039{left:539.200000pt;}
.x125_c00039{left:540.266667pt;}
.x162_c00039{left:541.333333pt;}
.xe1_c00039{left:542.800000pt;}
.xf9_c00039{left:545.200000pt;}
.xea_c00039{left:546.800000pt;}
.x140_c00039{left:547.866667pt;}
.x117_c00039{left:549.600000pt;}
.xd_c00039{left:552.000000pt;}
.xdb_c00039{left:553.333333pt;}
.x15a_c00039{left:554.666667pt;}
.xe7_c00039{left:555.733333pt;}
.x133_c00039{left:556.933333pt;}
.x12a_c00039{left:558.666667pt;}
.x118_c00039{left:559.866667pt;}
.x109_c00039{left:561.733333pt;}
.xc4_c00039{left:564.666667pt;}
.x150_c00039{left:566.533333pt;}
.xe_c00039{left:567.733333pt;}
.xfa_c00039{left:569.200000pt;}
.x108_c00039{left:570.666667pt;}
.x143_c00039{left:572.000000pt;}
.xb7_c00039{left:573.733333pt;}
.x132_c00039{left:574.933333pt;}
.x151_c00039{left:575.866667pt;}
.xeb_c00039{left:577.466667pt;}
.x112_c00039{left:578.533333pt;}
.xe8_c00039{left:579.466667pt;}
.x134_c00039{left:582.266667pt;}
.xd4_c00039{left:584.533333pt;}
.x15e_c00039{left:586.000000pt;}
.xcd_c00039{left:587.333333pt;}
.x11e_c00039{left:588.400000pt;}
.x152_c00039{left:590.533333pt;}
.x127_c00039{left:592.266667pt;}
.x10e_c00039{left:593.200000pt;}
.x14d_c00039{left:594.933333pt;}
.xec_c00039{left:596.933333pt;}
.x105_c00039{left:598.933333pt;}
.xf_c00039{left:600.400000pt;}
.xe2_c00039{left:602.666667pt;}
.xfe_c00039{left:603.866667pt;}
.x145_c00039{left:605.333333pt;}
.x141_c00039{left:606.400000pt;}
.xc5_c00039{left:607.333333pt;}
.xbe_c00039{left:608.266667pt;}
.x153_c00039{left:609.466667pt;}
.x156_c00039{left:611.200000pt;}
.x128_c00039{left:612.133333pt;}
.x102_c00039{left:615.600000pt;}
.xdc_c00039{left:617.600000pt;}
.x138_c00039{left:618.533333pt;}
.xf3_c00039{left:619.733333pt;}
.xd5_c00039{left:621.333333pt;}
.xce_c00039{left:624.133333pt;}
.x12f_c00039{left:625.333333pt;}
.x113_c00039{left:627.200000pt;}
.x149_c00039{left:628.400000pt;}
.x10a_c00039{left:629.466667pt;}
.x119_c00039{left:630.666667pt;}
.xb8_c00039{left:632.266667pt;}
.x147_c00039{left:635.200000pt;}
.xff_c00039{left:636.533333pt;}
.xbf_c00039{left:639.333333pt;}
.xfb_c00039{left:640.533333pt;}
.xd6_c00039{left:642.400000pt;}
.xb9_c00039{left:644.133333pt;}
.x130_c00039{left:645.466667pt;}
.x10_c00039{left:647.066667pt;}
.x114_c00039{left:649.333333pt;}
.x11f_c00039{left:650.400000pt;}
.x154_c00039{left:651.333333pt;}
.x15b_c00039{left:652.666667pt;}
.xe3_c00039{left:653.600000pt;}
.x13d_c00039{left:655.066667pt;}
.x135_c00039{left:658.400000pt;}
.x106_c00039{left:660.666667pt;}
.xc6_c00039{left:662.400000pt;}
.x115_c00039{left:666.666667pt;}
.x126_c00039{left:668.400000pt;}
.xc7_c00039{left:670.666667pt;}
.xf4_c00039{left:672.533333pt;}
.xed_c00039{left:673.466667pt;}
.xba_c00039{left:675.200000pt;}
.xc0_c00039{left:676.133333pt;}
.x136_c00039{left:677.866667pt;}
.xe4_c00039{left:679.200000pt;}
.x12e_c00039{left:680.666667pt;}
.xcf_c00039{left:682.666667pt;}
.xdd_c00039{left:684.133333pt;}
.x144_c00039{left:685.600000pt;}
.x120_c00039{left:687.200000pt;}
.x10b_c00039{left:688.933333pt;}
.x139_c00039{left:691.466667pt;}
.x100_c00039{left:692.533333pt;}
.xc8_c00039{left:694.000000pt;}
.xee_c00039{left:696.133333pt;}
.x10c_c00039{left:699.200000pt;}
.x15d_c00039{left:700.400000pt;}
.x11_c00039{left:701.466667pt;}
.x163_c00039{left:702.666667pt;}
.x13a_c00039{left:704.000000pt;}
.x157_c00039{left:705.200000pt;}
.xc1_c00039{left:707.200000pt;}
.x137_c00039{left:708.533333pt;}
.x12_c00039{left:710.400000pt;}
.xc9_c00039{left:711.600000pt;}
.xde_c00039{left:712.933333pt;}
.xd7_c00039{left:714.666667pt;}
.xef_c00039{left:716.266667pt;}
.x15f_c00039{left:717.600000pt;}
.xf5_c00039{left:720.533333pt;}
.xd8_c00039{left:722.933333pt;}
.xd0_c00039{left:724.266667pt;}
.x131_c00039{left:725.733333pt;}
.xfc_c00039{left:729.466667pt;}
.xe5_c00039{left:730.800000pt;}
.xd1_c00039{left:732.933333pt;}
.xc2_c00039{left:734.666667pt;}
.x13b_c00039{left:736.266667pt;}
.x13_c00039{left:738.533333pt;}
.x11a_c00039{left:741.066667pt;}
.x121_c00039{left:742.933333pt;}
.xf0_c00039{left:744.400000pt;}
.xbb_c00039{left:745.333333pt;}
.xd2_c00039{left:746.666667pt;}
.xf6_c00039{left:749.066667pt;}
.xca_c00039{left:751.333333pt;}
.x129_c00039{left:752.266667pt;}
.xd9_c00039{left:753.333333pt;}
.x12b_c00039{left:754.533333pt;}
.x116_c00039{left:757.600000pt;}
.x11b_c00039{left:758.933333pt;}
.x122_c00039{left:761.466667pt;}
.xf1_c00039{left:762.666667pt;}
.xf7_c00039{left:763.733333pt;}
.xcb_c00039{left:765.733333pt;}
.xdf_c00039{left:767.600000pt;}
.x14b_c00039{left:770.800000pt;}
.x161_c00039{left:771.733333pt;}
.x13e_c00039{left:773.066667pt;}
.x123_c00039{left:778.133333pt;}
.x103_c00039{left:779.733333pt;}
.x11c_c00039{left:782.266667pt;}
.x12c_c00039{left:783.600000pt;}
.x13c_c00039{left:784.933333pt;}
.xfd_c00039{left:786.533333pt;}
.x10f_c00039{left:787.466667pt;}
.x14e_c00039{left:789.333333pt;}
.x15c_c00039{left:790.800000pt;}
.x164_c00039{left:792.533333pt;}
.x148_c00039{left:793.600000pt;}
.x155_c00039{left:794.666667pt;}
}





/* 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_c00040 {
    display:none;
  }
  .loading-indicator_c00040.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00040 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_c00040 { 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_c00040" -> "#page-container .classname_c00040")
 */
.pf_c00040 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00040 { /* 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_c00040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00040 { /* 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_c00040 { /* 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_c00040 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00040 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00040 {overflow:visible;}
  }
}
.c_c00040 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00040 { /* 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_c00040:after { /* webkit #35443 */
  content: '';
}
.t_c00040:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00040 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 */
}
.__c00040 { /* 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_c00040 { /* info for Javascript */
  display:none;
}
.l_c00040 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00040 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00040 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00040: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_c00040 {
    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_c00040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00040.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_c00040 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00040;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.000000;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;}
.m66_c00040{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00040{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00040{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m81_c00040{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m57_c00040{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m48_c00040{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00040{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00040{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m65_c00040{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m30_c00040{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00040{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00040{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00040{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m93_c00040{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m6_c00040{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.me2_c00040{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00040{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m54_c00040{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00040{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00040{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00040{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m103_c00040{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00040{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m28_c00040{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m21_c00040{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m106_c00040{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m63_c00040{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00040{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m86_c00040{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m46_c00040{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00040{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m50_c00040{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00040{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00040{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00040{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00040{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m78_c00040{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mb_c00040{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m89_c00040{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m47_c00040{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me3_c00040{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m36_c00040{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00040{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mda_c00040{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m60_c00040{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m4_c00040{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m55_c00040{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md9_c00040{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m7_c00040{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00040{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00040{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00040{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m5_c00040{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00040{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00040{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me4_c00040{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00040{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00040{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mca_c00040{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m35_c00040{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.meb_c00040{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m9_c00040{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m12_c00040{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m104_c00040{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m49_c00040{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me7_c00040{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m38_c00040{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me8_c00040{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me1_c00040{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m61_c00040{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00040{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00040{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00040{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m23_c00040{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8_c00040{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00040{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00040{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00040{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mad_c00040{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m20_c00040{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00040{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m52_c00040{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00040{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00040{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00040{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me_c00040{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md2_c00040{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00040{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma_c00040{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md0_c00040{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m87_c00040{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00040{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m16_c00040{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md_c00040{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m32_c00040{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m59_c00040{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00040{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00040{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00040{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00040{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00040{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m67_c00040{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m45_c00040{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00040{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00040{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00040{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00040{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m26_c00040{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00040{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m44_c00040{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m82_c00040{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mce_c00040{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m56_c00040{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00040{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00040{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m22_c00040{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m91_c00040{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m85_c00040{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m92_c00040{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00040{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md6_c00040{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00040{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m13_c00040{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00040{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m39_c00040{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m96_c00040{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m64_c00040{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.me0_c00040{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m17_c00040{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00040{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m95_c00040{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.md3_c00040{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00040{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m98_c00040{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m31_c00040{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00040{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00040{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m27_c00040{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00040{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00040{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00040{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00040{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m84_c00040{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m15_c00040{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00040{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mf_c00040{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00040{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m100_c00040{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m14_c00040{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m90_c00040{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00040{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00040{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m77_c00040{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md4_c00040{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00040{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m41_c00040{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m101_c00040{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m18_c00040{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m25_c00040{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00040{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m97_c00040{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m80_c00040{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m33_c00040{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m99_c00040{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m53_c00040{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m51_c00040{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m75_c00040{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me6_c00040{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m24_c00040{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00040{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00040{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00040{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m62_c00040{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m42_c00040{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mba_c00040{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00040{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m37_c00040{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m105_c00040{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00040{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00040{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m58_c00040{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maf_c00040{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.maa_c00040{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00040{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00040{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00040{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00040{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00040{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.med_c00040{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mee_c00040{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mea_c00040{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m102_c00040{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00040{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00040{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00040{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me9_c00040{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md1_c00040{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00040{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m29_c00040{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m71_c00040{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00040{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00040{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00040{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00040{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m83_c00040{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00040{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00040{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00040{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md5_c00040{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mff_c00040{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00040{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mef_c00040{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m76_c00040{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00040{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00040{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11_c00040{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00040{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m74_c00040{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00040{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00040{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m40_c00040{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00040{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00040{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00040{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00040{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m10_c00040{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00040{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00040{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00040{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00040{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00040{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m72_c00040{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00040{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m70_c00040{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m73_c00040{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00040{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mec_c00040{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mde_c00040{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc_c00040{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.md8_c00040{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00040{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.me5_c00040{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00040{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m34_c00040{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.md7_c00040{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00040{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mae_c00040{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m19_c00040{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mac_c00040{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mab_c00040{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m43_c00040{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m68_c00040{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00040{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m88_c00040{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00040{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m79_c00040{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00040{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m94_c00040{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00040{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m107_c00040{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00040{transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls0_c00040{letter-spacing:0.000000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{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__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:-7.333333px;}
.ws1_c00040{word-spacing:-7.310966px;}
.ws2_c00040{word-spacing:-6.172840px;}
.ws5_c00040{word-spacing:-0.146132px;}
.ws6_c00040{word-spacing:0.000000px;}
.ws4_c00040{word-spacing:1.333333px;}
.ws3_c00040{word-spacing:12.747851px;}
.fc0_c00040{color:transparent;}
.fs1_c00040{font-size:42.000000px;}
.fs3_c00040{font-size:60.000000px;}
.fs2_c00040{font-size:66.000000px;}
.fs4_c00040{font-size:72.000000px;}
.fs0_c00040{font-size:84.000000px;}
.y0_c00040{bottom:0.000000px;}
.y68_c00040{bottom:167.100000px;}
.y35_c00040{bottom:185.700000px;}
.y67_c00040{bottom:203.400000px;}
.y34_c00040{bottom:203.550000px;}
.y33_c00040{bottom:221.550000px;}
.y66_c00040{bottom:229.800000px;}
.y32_c00040{bottom:239.250000px;}
.y65_c00040{bottom:247.500000px;}
.y31_c00040{bottom:257.250000px;}
.y64_c00040{bottom:265.800000px;}
.y30_c00040{bottom:274.950000px;}
.y63_c00040{bottom:283.500000px;}
.y2f_c00040{bottom:292.650000px;}
.y62_c00040{bottom:301.500000px;}
.y2e_c00040{bottom:310.650000px;}
.y61_c00040{bottom:319.500000px;}
.y2d_c00040{bottom:328.650000px;}
.y60_c00040{bottom:337.500000px;}
.y2c_c00040{bottom:346.650000px;}
.y5f_c00040{bottom:355.500000px;}
.y2b_c00040{bottom:364.350000px;}
.y5e_c00040{bottom:373.500000px;}
.y2a_c00040{bottom:382.350000px;}
.y5d_c00040{bottom:391.200000px;}
.y29_c00040{bottom:404.700000px;}
.y5c_c00040{bottom:409.200000px;}
.y28_c00040{bottom:426.900000px;}
.y5b_c00040{bottom:427.200000px;}
.y27_c00040{bottom:444.900000px;}
.y26_c00040{bottom:462.600000px;}
.y5a_c00040{bottom:471.000000px;}
.y25_c00040{bottom:480.600000px;}
.y59_c00040{bottom:489.000000px;}
.y24_c00040{bottom:498.600000px;}
.y58_c00040{bottom:507.000000px;}
.y23_c00040{bottom:516.300000px;}
.y57_c00040{bottom:525.000000px;}
.y56_c00040{bottom:542.700000px;}
.y22_c00040{bottom:547.200000px;}
.y55_c00040{bottom:560.700000px;}
.y54_c00040{bottom:578.700000px;}
.y21_c00040{bottom:587.100000px;}
.y53_c00040{bottom:597.000000px;}
.y20_c00040{bottom:605.100000px;}
.y52_c00040{bottom:614.250000px;}
.y1f_c00040{bottom:623.100000px;}
.y51_c00040{bottom:632.250000px;}
.y1e_c00040{bottom:640.800000px;}
.y50_c00040{bottom:650.250000px;}
.y1d_c00040{bottom:659.100000px;}
.y4f_c00040{bottom:667.950000px;}
.y1c_c00040{bottom:676.800000px;}
.y4e_c00040{bottom:685.650000px;}
.y1b_c00040{bottom:694.500000px;}
.y4d_c00040{bottom:703.650000px;}
.y1a_c00040{bottom:712.500000px;}
.y4c_c00040{bottom:721.650000px;}
.y19_c00040{bottom:730.500000px;}
.y4b_c00040{bottom:739.350000px;}
.y18_c00040{bottom:748.200000px;}
.y4a_c00040{bottom:757.350000px;}
.y17_c00040{bottom:766.200000px;}
.y49_c00040{bottom:775.050000px;}
.y16_c00040{bottom:784.200000px;}
.y48_c00040{bottom:793.050000px;}
.y15_c00040{bottom:801.900000px;}
.y47_c00040{bottom:811.050000px;}
.y14_c00040{bottom:819.900000px;}
.y46_c00040{bottom:829.050000px;}
.y13_c00040{bottom:837.900000px;}
.y45_c00040{bottom:846.750000px;}
.y12_c00040{bottom:855.600000px;}
.y44_c00040{bottom:864.750000px;}
.y11_c00040{bottom:873.600000px;}
.y43_c00040{bottom:882.450000px;}
.y10_c00040{bottom:891.300000px;}
.y42_c00040{bottom:900.450000px;}
.yf_c00040{bottom:913.200000px;}
.y41_c00040{bottom:918.150000px;}
.ye_c00040{bottom:931.500000px;}
.y40_c00040{bottom:935.850000px;}
.yd_c00040{bottom:949.200000px;}
.y3f_c00040{bottom:954.150000px;}
.yc_c00040{bottom:967.200000px;}
.y3e_c00040{bottom:971.850000px;}
.yb_c00040{bottom:984.900000px;}
.y3d_c00040{bottom:989.850000px;}
.ya_c00040{bottom:1002.900000px;}
.y3c_c00040{bottom:1007.550000px;}
.y9_c00040{bottom:1020.900000px;}
.y3b_c00040{bottom:1025.550000px;}
.y8_c00040{bottom:1038.600000px;}
.y3a_c00040{bottom:1043.250000px;}
.y7_c00040{bottom:1056.600000px;}
.y39_c00040{bottom:1061.250000px;}
.y6_c00040{bottom:1078.500000px;}
.y38_c00040{bottom:1079.250000px;}
.y5_c00040{bottom:1096.500000px;}
.y37_c00040{bottom:1097.250000px;}
.y4_c00040{bottom:1114.500000px;}
.y36_c00040{bottom:1114.950000px;}
.y3_c00040{bottom:1141.650000px;}
.y1_c00040{bottom:1141.950000px;}
.y2_c00040{bottom:1151.700000px;}
.h3_c00040{height:42.000000px;}
.h5_c00040{height:60.000000px;}
.h4_c00040{height:66.000000px;}
.h6_c00040{height:72.000000px;}
.h2_c00040{height:84.000000px;}
.h1_c00040{height:1279.500000px;}
.h0_c00040{height:1279.800018px;}
.w0_c00040{width:948.600036px;}
.w1_c00040{width:948.750000px;}
.x0_c00040{left:0.000000px;}
.xa7_c00040{left:73.050000px;}
.xa6_c00040{left:74.850000px;}
.xa3_c00040{left:77.100000px;}
.xa0_c00040{left:78.600000px;}
.x4_c00040{left:80.250000px;}
.xc_c00040{left:81.600000px;}
.x85_c00040{left:96.600000px;}
.x19_c00040{left:99.300000px;}
.xd_c00040{left:101.100000px;}
.x52_c00040{left:103.800000px;}
.x8d_c00040{left:104.850000px;}
.x3f_c00040{left:107.700000px;}
.x2f_c00040{left:111.900000px;}
.x8f_c00040{left:113.550000px;}
.x68_c00040{left:115.650000px;}
.x28_c00040{left:117.750000px;}
.x5d_c00040{left:121.050000px;}
.x1a_c00040{left:122.700000px;}
.x63_c00040{left:123.750000px;}
.x80_c00040{left:126.000000px;}
.x34_c00040{left:127.050000px;}
.x47_c00040{left:128.100000px;}
.x69_c00040{left:130.350000px;}
.x5f_c00040{left:132.150000px;}
.x21_c00040{left:133.950000px;}
.x8b_c00040{left:136.350000px;}
.x7a_c00040{left:140.400000px;}
.x4e_c00040{left:142.050000px;}
.x71_c00040{left:144.450000px;}
.x22_c00040{left:145.800000px;}
.x39_c00040{left:146.850000px;}
.x6a_c00040{left:151.650000px;}
.x93_c00040{left:153.900000px;}
.x58_c00040{left:155.100000px;}
.x99_c00040{left:157.650000px;}
.x96_c00040{left:158.700000px;}
.x29_c00040{left:160.200000px;}
.xe_c00040{left:162.600000px;}
.x45_c00040{left:164.100000px;}
.x4f_c00040{left:166.200000px;}
.x35_c00040{left:168.750000px;}
.x87_c00040{left:170.700000px;}
.x1b_c00040{left:172.800000px;}
.x94_c00040{left:174.000000px;}
.x46_c00040{left:176.400000px;}
.x5_c00040{left:178.200000px;}
.x9d_c00040{left:179.400000px;}
.x90_c00040{left:181.950000px;}
.x64_c00040{left:183.600000px;}
.x76_c00040{left:185.100000px;}
.x40_c00040{left:187.200000px;}
.x8e_c00040{left:188.400000px;}
.x23_c00040{left:189.750000px;}
.x9b_c00040{left:191.850000px;}
.x1c_c00040{left:192.900000px;}
.x30_c00040{left:194.700000px;}
.x86_c00040{left:196.350000px;}
.x13_c00040{left:198.450000px;}
.x60_c00040{left:199.800000px;}
.x48_c00040{left:202.500000px;}
.x65_c00040{left:204.150000px;}
.x9a_c00040{left:205.950000px;}
.x88_c00040{left:207.750000px;}
.x2a_c00040{left:209.550000px;}
.x72_c00040{left:211.800000px;}
.x24_c00040{left:213.150000px;}
.x14_c00040{left:214.950000px;}
.x6d_c00040{left:219.600000px;}
.x3a_c00040{left:222.150000px;}
.x41_c00040{left:223.500000px;}
.x8c_c00040{left:225.300000px;}
.x49_c00040{left:227.700000px;}
.x6_c00040{left:230.400000px;}
.x77_c00040{left:231.900000px;}
.x73_c00040{left:233.100000px;}
.x31_c00040{left:234.300000px;}
.x97_c00040{left:236.100000px;}
.xa1_c00040{left:238.350000px;}
.xf_c00040{left:240.300000px;}
.x59_c00040{left:243.300000px;}
.x2b_c00040{left:245.550000px;}
.x83_c00040{left:247.050000px;}
.x4c_c00040{left:250.500000px;}
.x53_c00040{left:253.650000px;}
.x42_c00040{left:256.200000px;}
.x4a_c00040{left:257.550000px;}
.x15_c00040{left:258.900000px;}
.x66_c00040{left:260.700000px;}
.x25_c00040{left:262.500000px;}
.x36_c00040{left:265.950000px;}
.x2c_c00040{left:269.250000px;}
.x16_c00040{left:270.750000px;}
.xa2_c00040{left:272.550000px;}
.x67_c00040{left:274.050000px;}
.xa4_c00040{left:275.400000px;}
.x7_c00040{left:276.450000px;}
.x6e_c00040{left:278.250000px;}
.x3b_c00040{left:280.800000px;}
.x1d_c00040{left:282.600000px;}
.xa8_c00040{left:284.400000px;}
.x81_c00040{left:285.900000px;}
.x8_c00040{left:287.250000px;}
.x78_c00040{left:288.750000px;}
.x89_c00040{left:291.150000px;}
.x10_c00040{left:293.550000px;}
.x7e_c00040{left:294.600000px;}
.x7b_c00040{left:296.850000px;}
.x50_c00040{left:298.650000px;}
.x5a_c00040{left:299.850000px;}
.x62_c00040{left:304.050000px;}
.x84_c00040{left:305.400000px;}
.x54_c00040{left:307.650000px;}
.x3c_c00040{left:309.600000px;}
.x1e_c00040{left:311.100000px;}
.x43_c00040{left:313.500000px;}
.x95_c00040{left:315.450000px;}
.x6b_c00040{left:318.300000px;}
.x9_c00040{left:320.250000px;}
.x51_c00040{left:321.300000px;}
.x32_c00040{left:326.400000px;}
.x1_c00040{left:327.600000px;}
.x74_c00040{left:328.950000px;}
.x2d_c00040{left:331.950000px;}
.x26_c00040{left:333.000000px;}
.x6f_c00040{left:334.050000px;}
.x55_c00040{left:337.950000px;}
.x5b_c00040{left:339.150000px;}
.x4b_c00040{left:342.150000px;}
.x37_c00040{left:344.400000px;}
.x3d_c00040{left:347.100000px;}
.x9e_c00040{left:349.050000px;}
.x1f_c00040{left:351.000000px;}
.x11_c00040{left:352.650000px;}
.x56_c00040{left:353.850000px;}
.x17_c00040{left:356.100000px;}
.x5c_c00040{left:357.150000px;}
.x79_c00040{left:359.700000px;}
.x4d_c00040{left:362.400000px;}
.x5e_c00040{left:365.100000px;}
.x91_c00040{left:366.300000px;}
.x20_c00040{left:368.700000px;}
.xa5_c00040{left:370.350000px;}
.x98_c00040{left:371.400000px;}
.x7c_c00040{left:372.450000px;}
.x18_c00040{left:374.100000px;}
.x27_c00040{left:375.900000px;}
.x9f_c00040{left:378.600000px;}
.x75_c00040{left:380.100000px;}
.xa_c00040{left:382.950000px;}
.x61_c00040{left:384.600000px;}
.x6c_c00040{left:386.700000px;}
.x70_c00040{left:391.650000px;}
.x38_c00040{left:392.700000px;}
.xb_c00040{left:394.500000px;}
.x7f_c00040{left:395.700000px;}
.x2e_c00040{left:397.050000px;}
.xa9_c00040{left:399.300000px;}
.x92_c00040{left:400.800000px;}
.x8a_c00040{left:402.000000px;}
.x57_c00040{left:404.550000px;}
.x12_c00040{left:408.750000px;}
.x7d_c00040{left:409.950000px;}
.x3e_c00040{left:411.600000px;}
.x44_c00040{left:413.550000px;}
.x33_c00040{left:415.350000px;}
.x9c_c00040{left:416.700000px;}
.x82_c00040{left:418.050000px;}
.xee_c00040{left:439.950000px;}
.xce_c00040{left:441.000000px;}
.xaa_c00040{left:442.050000px;}
.x140_c00040{left:458.250000px;}
.x157_c00040{left:460.500000px;}
.x10d_c00040{left:462.150000px;}
.xc7_c00040{left:465.150000px;}
.xf6_c00040{left:466.200000px;}
.xc1_c00040{left:467.700000px;}
.x108_c00040{left:469.350000px;}
.x127_c00040{left:471.750000px;}
.xb5_c00040{left:474.150000px;}
.xe8_c00040{left:475.500000px;}
.xab_c00040{left:477.300000px;}
.x131_c00040{left:478.350000px;}
.x112_c00040{left:481.200000px;}
.x123_c00040{left:483.150000px;}
.x13d_c00040{left:484.650000px;}
.xe0_c00040{left:486.600000px;}
.xd6_c00040{left:488.250000px;}
.xcf_c00040{left:489.900000px;}
.x147_c00040{left:492.000000px;}
.xbc_c00040{left:493.050000px;}
.x156_c00040{left:494.250000px;}
.x103_c00040{left:495.450000px;}
.xb6_c00040{left:496.500000px;}
.x133_c00040{left:498.000000px;}
.xac_c00040{left:499.200000px;}
.xd8_c00040{left:500.850000px;}
.xe4_c00040{left:502.500000px;}
.x113_c00040{left:504.300000px;}
.xc8_c00040{left:506.550000px;}
.x155_c00040{left:507.900000px;}
.x120_c00040{left:511.350000px;}
.xd0_c00040{left:512.550000px;}
.x148_c00040{left:513.600000px;}
.xfe_c00040{left:515.250000px;}
.xef_c00040{left:518.850000px;}
.x143_c00040{left:522.300000px;}
.x116_c00040{left:524.250000px;}
.xe9_c00040{left:525.900000px;}
.x159_c00040{left:528.300000px;}
.xd9_c00040{left:529.350000px;}
.x10e_c00040{left:530.550000px;}
.x13a_c00040{left:532.050000px;}
.xe5_c00040{left:533.400000px;}
.x137_c00040{left:534.900000px;}
.xc2_c00040{left:536.400000px;}
.xea_c00040{left:538.200000px;}
.xc9_c00040{left:540.450000px;}
.x13b_c00040{left:541.800000px;}
.xda_c00040{left:543.450000px;}
.xad_c00040{left:544.950000px;}
.x104_c00040{left:546.900000px;}
.xf0_c00040{left:548.700000px;}
.xfb_c00040{left:550.200000px;}
.xb7_c00040{left:551.550000px;}
.x14a_c00040{left:553.050000px;}
.x109_c00040{left:554.250000px;}
.xae_c00040{left:557.250000px;}
.xc3_c00040{left:559.500000px;}
.x128_c00040{left:562.500000px;}
.x114_c00040{left:564.150000px;}
.xe1_c00040{left:565.200000px;}
.xbd_c00040{left:567.900000px;}
.x12c_c00040{left:569.550000px;}
.x13c_c00040{left:571.200000px;}
.x144_c00040{left:572.700000px;}
.x118_c00040{left:574.350000px;}
.xb8_c00040{left:577.500000px;}
.xaf_c00040{left:578.850000px;}
.x136_c00040{left:580.500000px;}
.x158_c00040{left:582.150000px;}
.xff_c00040{left:583.650000px;}
.xf7_c00040{left:585.600000px;}
.x142_c00040{left:587.100000px;}
.xfc_c00040{left:589.350000px;}
.xc4_c00040{left:590.850000px;}
.x100_c00040{left:592.350000px;}
.x151_c00040{left:598.050000px;}
.xca_c00040{left:600.300000px;}
.x119_c00040{left:601.650000px;}
.xf1_c00040{left:603.000000px;}
.x124_c00040{left:604.500000px;}
.x10f_c00040{left:605.850000px;}
.x138_c00040{left:606.900000px;}
.xdb_c00040{left:609.000000px;}
.x121_c00040{left:611.400000px;}
.xbe_c00040{left:613.200000px;}
.x132_c00040{left:614.850000px;}
.x101_c00040{left:617.550000px;}
.xd1_c00040{left:618.750000px;}
.x115_c00040{left:620.700000px;}
.x110_c00040{left:622.350000px;}
.xf8_c00040{left:625.500000px;}
.x125_c00040{left:626.850000px;}
.xdc_c00040{left:629.100000px;}
.xe6_c00040{left:630.600000px;}
.x152_c00040{left:631.950000px;}
.xb9_c00040{left:633.000000px;}
.x14b_c00040{left:634.050000px;}
.x10a_c00040{left:636.300000px;}
.xd2_c00040{left:637.800000px;}
.x14e_c00040{left:639.600000px;}
.x134_c00040{left:641.550000px;}
.x15a_c00040{left:643.500000px;}
.x139_c00040{left:644.700000px;}
.x141_c00040{left:645.750000px;}
.xb0_c00040{left:646.950000px;}
.x12f_c00040{left:648.600000px;}
.xfd_c00040{left:652.350000px;}
.x129_c00040{left:653.850000px;}
.x12d_c00040{left:655.200000px;}
.xd3_c00040{left:656.850000px;}
.xeb_c00040{left:658.800000px;}
.xc5_c00040{left:661.050000px;}
.x14f_c00040{left:663.750000px;}
.x11d_c00040{left:665.250000px;}
.x102_c00040{left:666.900000px;}
.xcb_c00040{left:667.950000px;}
.x126_c00040{left:669.450000px;}
.xf2_c00040{left:670.950000px;}
.xf9_c00040{left:672.600000px;}
.xe2_c00040{left:674.550000px;}
.x13e_c00040{left:676.500000px;}
.x11a_c00040{left:677.550000px;}
.xbf_c00040{left:678.750000px;}
.xcc_c00040{left:679.800000px;}
.x150_c00040{left:683.100000px;}
.xdd_c00040{left:684.150000px;}
.x153_c00040{left:685.650000px;}
.xc6_c00040{left:688.350000px;}
.x122_c00040{left:690.600000px;}
.xfa_c00040{left:693.150000px;}
.xf3_c00040{left:694.650000px;}
.xb1_c00040{left:696.600000px;}
.x135_c00040{left:697.650000px;}
.x15b_c00040{left:698.700000px;}
.xd4_c00040{left:700.350000px;}
.xde_c00040{left:701.400000px;}
.x11e_c00040{left:702.750000px;}
.x149_c00040{left:703.950000px;}
.xc0_c00040{left:707.850000px;}
.xb2_c00040{left:709.950000px;}
.x14c_c00040{left:711.000000px;}
.x11b_c00040{left:712.050000px;}
.xec_c00040{left:714.300000px;}
.x12a_c00040{left:716.100000px;}
.xba_c00040{left:717.300000px;}
.xcd_c00040{left:719.400000px;}
.x10b_c00040{left:720.600000px;}
.x130_c00040{left:722.100000px;}
.xf4_c00040{left:723.750000px;}
.x14d_c00040{left:728.700000px;}
.x11f_c00040{left:730.050000px;}
.xe7_c00040{left:731.100000px;}
.xb3_c00040{left:735.150000px;}
.xed_c00040{left:736.200000px;}
.x11c_c00040{left:737.250000px;}
.x105_c00040{left:738.600000px;}
.xdf_c00040{left:740.700000px;}
.x13f_c00040{left:741.750000px;}
.x145_c00040{left:742.950000px;}
.x111_c00040{left:746.850000px;}
.x106_c00040{left:747.900000px;}
.xd7_c00040{left:749.250000px;}
.x146_c00040{left:750.750000px;}
.xb4_c00040{left:752.400000px;}
.xbb_c00040{left:754.050000px;}
.x10c_c00040{left:755.100000px;}
.xe3_c00040{left:758.100000px;}
.x107_c00040{left:760.200000px;}
.x3_c00040{left:761.400000px;}
.xd5_c00040{left:762.600000px;}
.x117_c00040{left:764.400000px;}
.xf5_c00040{left:766.500000px;}
.x12e_c00040{left:769.050000px;}
.x154_c00040{left:770.400000px;}
.x12b_c00040{left:771.600000px;}
.x2_c00040{left:773.250000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:-6.518519pt;}
.ws1_c00040{word-spacing:-6.498636pt;}
.ws2_c00040{word-spacing:-5.486968pt;}
.ws5_c00040{word-spacing:-0.129895pt;}
.ws6_c00040{word-spacing:0.000000pt;}
.ws4_c00040{word-spacing:1.185185pt;}
.ws3_c00040{word-spacing:11.331423pt;}
.fs1_c00040{font-size:37.333333pt;}
.fs3_c00040{font-size:53.333333pt;}
.fs2_c00040{font-size:58.666667pt;}
.fs4_c00040{font-size:64.000000pt;}
.fs0_c00040{font-size:74.666667pt;}
.y0_c00040{bottom:0.000000pt;}
.y68_c00040{bottom:148.533333pt;}
.y35_c00040{bottom:165.066667pt;}
.y67_c00040{bottom:180.800000pt;}
.y34_c00040{bottom:180.933333pt;}
.y33_c00040{bottom:196.933333pt;}
.y66_c00040{bottom:204.266667pt;}
.y32_c00040{bottom:212.666667pt;}
.y65_c00040{bottom:220.000000pt;}
.y31_c00040{bottom:228.666667pt;}
.y64_c00040{bottom:236.266667pt;}
.y30_c00040{bottom:244.400000pt;}
.y63_c00040{bottom:252.000000pt;}
.y2f_c00040{bottom:260.133333pt;}
.y62_c00040{bottom:268.000000pt;}
.y2e_c00040{bottom:276.133333pt;}
.y61_c00040{bottom:284.000000pt;}
.y2d_c00040{bottom:292.133333pt;}
.y60_c00040{bottom:300.000000pt;}
.y2c_c00040{bottom:308.133333pt;}
.y5f_c00040{bottom:316.000000pt;}
.y2b_c00040{bottom:323.866667pt;}
.y5e_c00040{bottom:332.000000pt;}
.y2a_c00040{bottom:339.866667pt;}
.y5d_c00040{bottom:347.733333pt;}
.y29_c00040{bottom:359.733333pt;}
.y5c_c00040{bottom:363.733333pt;}
.y28_c00040{bottom:379.466667pt;}
.y5b_c00040{bottom:379.733333pt;}
.y27_c00040{bottom:395.466667pt;}
.y26_c00040{bottom:411.200000pt;}
.y5a_c00040{bottom:418.666667pt;}
.y25_c00040{bottom:427.200000pt;}
.y59_c00040{bottom:434.666667pt;}
.y24_c00040{bottom:443.200000pt;}
.y58_c00040{bottom:450.666667pt;}
.y23_c00040{bottom:458.933333pt;}
.y57_c00040{bottom:466.666667pt;}
.y56_c00040{bottom:482.400000pt;}
.y22_c00040{bottom:486.400000pt;}
.y55_c00040{bottom:498.400000pt;}
.y54_c00040{bottom:514.400000pt;}
.y21_c00040{bottom:521.866667pt;}
.y53_c00040{bottom:530.666667pt;}
.y20_c00040{bottom:537.866667pt;}
.y52_c00040{bottom:546.000000pt;}
.y1f_c00040{bottom:553.866667pt;}
.y51_c00040{bottom:562.000000pt;}
.y1e_c00040{bottom:569.600000pt;}
.y50_c00040{bottom:578.000000pt;}
.y1d_c00040{bottom:585.866667pt;}
.y4f_c00040{bottom:593.733333pt;}
.y1c_c00040{bottom:601.600000pt;}
.y4e_c00040{bottom:609.466667pt;}
.y1b_c00040{bottom:617.333333pt;}
.y4d_c00040{bottom:625.466667pt;}
.y1a_c00040{bottom:633.333333pt;}
.y4c_c00040{bottom:641.466667pt;}
.y19_c00040{bottom:649.333333pt;}
.y4b_c00040{bottom:657.200000pt;}
.y18_c00040{bottom:665.066667pt;}
.y4a_c00040{bottom:673.200000pt;}
.y17_c00040{bottom:681.066667pt;}
.y49_c00040{bottom:688.933333pt;}
.y16_c00040{bottom:697.066667pt;}
.y48_c00040{bottom:704.933333pt;}
.y15_c00040{bottom:712.800000pt;}
.y47_c00040{bottom:720.933333pt;}
.y14_c00040{bottom:728.800000pt;}
.y46_c00040{bottom:736.933333pt;}
.y13_c00040{bottom:744.800000pt;}
.y45_c00040{bottom:752.666667pt;}
.y12_c00040{bottom:760.533333pt;}
.y44_c00040{bottom:768.666667pt;}
.y11_c00040{bottom:776.533333pt;}
.y43_c00040{bottom:784.400000pt;}
.y10_c00040{bottom:792.266667pt;}
.y42_c00040{bottom:800.400000pt;}
.yf_c00040{bottom:811.733333pt;}
.y41_c00040{bottom:816.133333pt;}
.ye_c00040{bottom:828.000000pt;}
.y40_c00040{bottom:831.866667pt;}
.yd_c00040{bottom:843.733333pt;}
.y3f_c00040{bottom:848.133333pt;}
.yc_c00040{bottom:859.733333pt;}
.y3e_c00040{bottom:863.866667pt;}
.yb_c00040{bottom:875.466667pt;}
.y3d_c00040{bottom:879.866667pt;}
.ya_c00040{bottom:891.466667pt;}
.y3c_c00040{bottom:895.600000pt;}
.y9_c00040{bottom:907.466667pt;}
.y3b_c00040{bottom:911.600000pt;}
.y8_c00040{bottom:923.200000pt;}
.y3a_c00040{bottom:927.333333pt;}
.y7_c00040{bottom:939.200000pt;}
.y39_c00040{bottom:943.333333pt;}
.y6_c00040{bottom:958.666667pt;}
.y38_c00040{bottom:959.333333pt;}
.y5_c00040{bottom:974.666667pt;}
.y37_c00040{bottom:975.333333pt;}
.y4_c00040{bottom:990.666667pt;}
.y36_c00040{bottom:991.066667pt;}
.y3_c00040{bottom:1014.800000pt;}
.y1_c00040{bottom:1015.066667pt;}
.y2_c00040{bottom:1023.733333pt;}
.h3_c00040{height:37.333333pt;}
.h5_c00040{height:53.333333pt;}
.h4_c00040{height:58.666667pt;}
.h6_c00040{height:64.000000pt;}
.h2_c00040{height:74.666667pt;}
.h1_c00040{height:1137.333333pt;}
.h0_c00040{height:1137.600016pt;}
.w0_c00040{width:843.200032pt;}
.w1_c00040{width:843.333333pt;}
.x0_c00040{left:0.000000pt;}
.xa7_c00040{left:64.933333pt;}
.xa6_c00040{left:66.533333pt;}
.xa3_c00040{left:68.533333pt;}
.xa0_c00040{left:69.866667pt;}
.x4_c00040{left:71.333333pt;}
.xc_c00040{left:72.533333pt;}
.x85_c00040{left:85.866667pt;}
.x19_c00040{left:88.266667pt;}
.xd_c00040{left:89.866667pt;}
.x52_c00040{left:92.266667pt;}
.x8d_c00040{left:93.200000pt;}
.x3f_c00040{left:95.733333pt;}
.x2f_c00040{left:99.466667pt;}
.x8f_c00040{left:100.933333pt;}
.x68_c00040{left:102.800000pt;}
.x28_c00040{left:104.666667pt;}
.x5d_c00040{left:107.600000pt;}
.x1a_c00040{left:109.066667pt;}
.x63_c00040{left:110.000000pt;}
.x80_c00040{left:112.000000pt;}
.x34_c00040{left:112.933333pt;}
.x47_c00040{left:113.866667pt;}
.x69_c00040{left:115.866667pt;}
.x5f_c00040{left:117.466667pt;}
.x21_c00040{left:119.066667pt;}
.x8b_c00040{left:121.200000pt;}
.x7a_c00040{left:124.800000pt;}
.x4e_c00040{left:126.266667pt;}
.x71_c00040{left:128.400000pt;}
.x22_c00040{left:129.600000pt;}
.x39_c00040{left:130.533333pt;}
.x6a_c00040{left:134.800000pt;}
.x93_c00040{left:136.800000pt;}
.x58_c00040{left:137.866667pt;}
.x99_c00040{left:140.133333pt;}
.x96_c00040{left:141.066667pt;}
.x29_c00040{left:142.400000pt;}
.xe_c00040{left:144.533333pt;}
.x45_c00040{left:145.866667pt;}
.x4f_c00040{left:147.733333pt;}
.x35_c00040{left:150.000000pt;}
.x87_c00040{left:151.733333pt;}
.x1b_c00040{left:153.600000pt;}
.x94_c00040{left:154.666667pt;}
.x46_c00040{left:156.800000pt;}
.x5_c00040{left:158.400000pt;}
.x9d_c00040{left:159.466667pt;}
.x90_c00040{left:161.733333pt;}
.x64_c00040{left:163.200000pt;}
.x76_c00040{left:164.533333pt;}
.x40_c00040{left:166.400000pt;}
.x8e_c00040{left:167.466667pt;}
.x23_c00040{left:168.666667pt;}
.x9b_c00040{left:170.533333pt;}
.x1c_c00040{left:171.466667pt;}
.x30_c00040{left:173.066667pt;}
.x86_c00040{left:174.533333pt;}
.x13_c00040{left:176.400000pt;}
.x60_c00040{left:177.600000pt;}
.x48_c00040{left:180.000000pt;}
.x65_c00040{left:181.466667pt;}
.x9a_c00040{left:183.066667pt;}
.x88_c00040{left:184.666667pt;}
.x2a_c00040{left:186.266667pt;}
.x72_c00040{left:188.266667pt;}
.x24_c00040{left:189.466667pt;}
.x14_c00040{left:191.066667pt;}
.x6d_c00040{left:195.200000pt;}
.x3a_c00040{left:197.466667pt;}
.x41_c00040{left:198.666667pt;}
.x8c_c00040{left:200.266667pt;}
.x49_c00040{left:202.400000pt;}
.x6_c00040{left:204.800000pt;}
.x77_c00040{left:206.133333pt;}
.x73_c00040{left:207.200000pt;}
.x31_c00040{left:208.266667pt;}
.x97_c00040{left:209.866667pt;}
.xa1_c00040{left:211.866667pt;}
.xf_c00040{left:213.600000pt;}
.x59_c00040{left:216.266667pt;}
.x2b_c00040{left:218.266667pt;}
.x83_c00040{left:219.600000pt;}
.x4c_c00040{left:222.666667pt;}
.x53_c00040{left:225.466667pt;}
.x42_c00040{left:227.733333pt;}
.x4a_c00040{left:228.933333pt;}
.x15_c00040{left:230.133333pt;}
.x66_c00040{left:231.733333pt;}
.x25_c00040{left:233.333333pt;}
.x36_c00040{left:236.400000pt;}
.x2c_c00040{left:239.333333pt;}
.x16_c00040{left:240.666667pt;}
.xa2_c00040{left:242.266667pt;}
.x67_c00040{left:243.600000pt;}
.xa4_c00040{left:244.800000pt;}
.x7_c00040{left:245.733333pt;}
.x6e_c00040{left:247.333333pt;}
.x3b_c00040{left:249.600000pt;}
.x1d_c00040{left:251.200000pt;}
.xa8_c00040{left:252.800000pt;}
.x81_c00040{left:254.133333pt;}
.x8_c00040{left:255.333333pt;}
.x78_c00040{left:256.666667pt;}
.x89_c00040{left:258.800000pt;}
.x10_c00040{left:260.933333pt;}
.x7e_c00040{left:261.866667pt;}
.x7b_c00040{left:263.866667pt;}
.x50_c00040{left:265.466667pt;}
.x5a_c00040{left:266.533333pt;}
.x62_c00040{left:270.266667pt;}
.x84_c00040{left:271.466667pt;}
.x54_c00040{left:273.466667pt;}
.x3c_c00040{left:275.200000pt;}
.x1e_c00040{left:276.533333pt;}
.x43_c00040{left:278.666667pt;}
.x95_c00040{left:280.400000pt;}
.x6b_c00040{left:282.933333pt;}
.x9_c00040{left:284.666667pt;}
.x51_c00040{left:285.600000pt;}
.x32_c00040{left:290.133333pt;}
.x1_c00040{left:291.200000pt;}
.x74_c00040{left:292.400000pt;}
.x2d_c00040{left:295.066667pt;}
.x26_c00040{left:296.000000pt;}
.x6f_c00040{left:296.933333pt;}
.x55_c00040{left:300.400000pt;}
.x5b_c00040{left:301.466667pt;}
.x4b_c00040{left:304.133333pt;}
.x37_c00040{left:306.133333pt;}
.x3d_c00040{left:308.533333pt;}
.x9e_c00040{left:310.266667pt;}
.x1f_c00040{left:312.000000pt;}
.x11_c00040{left:313.466667pt;}
.x56_c00040{left:314.533333pt;}
.x17_c00040{left:316.533333pt;}
.x5c_c00040{left:317.466667pt;}
.x79_c00040{left:319.733333pt;}
.x4d_c00040{left:322.133333pt;}
.x5e_c00040{left:324.533333pt;}
.x91_c00040{left:325.600000pt;}
.x20_c00040{left:327.733333pt;}
.xa5_c00040{left:329.200000pt;}
.x98_c00040{left:330.133333pt;}
.x7c_c00040{left:331.066667pt;}
.x18_c00040{left:332.533333pt;}
.x27_c00040{left:334.133333pt;}
.x9f_c00040{left:336.533333pt;}
.x75_c00040{left:337.866667pt;}
.xa_c00040{left:340.400000pt;}
.x61_c00040{left:341.866667pt;}
.x6c_c00040{left:343.733333pt;}
.x70_c00040{left:348.133333pt;}
.x38_c00040{left:349.066667pt;}
.xb_c00040{left:350.666667pt;}
.x7f_c00040{left:351.733333pt;}
.x2e_c00040{left:352.933333pt;}
.xa9_c00040{left:354.933333pt;}
.x92_c00040{left:356.266667pt;}
.x8a_c00040{left:357.333333pt;}
.x57_c00040{left:359.600000pt;}
.x12_c00040{left:363.333333pt;}
.x7d_c00040{left:364.400000pt;}
.x3e_c00040{left:365.866667pt;}
.x44_c00040{left:367.600000pt;}
.x33_c00040{left:369.200000pt;}
.x9c_c00040{left:370.400000pt;}
.x82_c00040{left:371.600000pt;}
.xee_c00040{left:391.066667pt;}
.xce_c00040{left:392.000000pt;}
.xaa_c00040{left:392.933333pt;}
.x140_c00040{left:407.333333pt;}
.x157_c00040{left:409.333333pt;}
.x10d_c00040{left:410.800000pt;}
.xc7_c00040{left:413.466667pt;}
.xf6_c00040{left:414.400000pt;}
.xc1_c00040{left:415.733333pt;}
.x108_c00040{left:417.200000pt;}
.x127_c00040{left:419.333333pt;}
.xb5_c00040{left:421.466667pt;}
.xe8_c00040{left:422.666667pt;}
.xab_c00040{left:424.266667pt;}
.x131_c00040{left:425.200000pt;}
.x112_c00040{left:427.733333pt;}
.x123_c00040{left:429.466667pt;}
.x13d_c00040{left:430.800000pt;}
.xe0_c00040{left:432.533333pt;}
.xd6_c00040{left:434.000000pt;}
.xcf_c00040{left:435.466667pt;}
.x147_c00040{left:437.333333pt;}
.xbc_c00040{left:438.266667pt;}
.x156_c00040{left:439.333333pt;}
.x103_c00040{left:440.400000pt;}
.xb6_c00040{left:441.333333pt;}
.x133_c00040{left:442.666667pt;}
.xac_c00040{left:443.733333pt;}
.xd8_c00040{left:445.200000pt;}
.xe4_c00040{left:446.666667pt;}
.x113_c00040{left:448.266667pt;}
.xc8_c00040{left:450.266667pt;}
.x155_c00040{left:451.466667pt;}
.x120_c00040{left:454.533333pt;}
.xd0_c00040{left:455.600000pt;}
.x148_c00040{left:456.533333pt;}
.xfe_c00040{left:458.000000pt;}
.xef_c00040{left:461.200000pt;}
.x143_c00040{left:464.266667pt;}
.x116_c00040{left:466.000000pt;}
.xe9_c00040{left:467.466667pt;}
.x159_c00040{left:469.600000pt;}
.xd9_c00040{left:470.533333pt;}
.x10e_c00040{left:471.600000pt;}
.x13a_c00040{left:472.933333pt;}
.xe5_c00040{left:474.133333pt;}
.x137_c00040{left:475.466667pt;}
.xc2_c00040{left:476.800000pt;}
.xea_c00040{left:478.400000pt;}
.xc9_c00040{left:480.400000pt;}
.x13b_c00040{left:481.600000pt;}
.xda_c00040{left:483.066667pt;}
.xad_c00040{left:484.400000pt;}
.x104_c00040{left:486.133333pt;}
.xf0_c00040{left:487.733333pt;}
.xfb_c00040{left:489.066667pt;}
.xb7_c00040{left:490.266667pt;}
.x14a_c00040{left:491.600000pt;}
.x109_c00040{left:492.666667pt;}
.xae_c00040{left:495.333333pt;}
.xc3_c00040{left:497.333333pt;}
.x128_c00040{left:500.000000pt;}
.x114_c00040{left:501.466667pt;}
.xe1_c00040{left:502.400000pt;}
.xbd_c00040{left:504.800000pt;}
.x12c_c00040{left:506.266667pt;}
.x13c_c00040{left:507.733333pt;}
.x144_c00040{left:509.066667pt;}
.x118_c00040{left:510.533333pt;}
.xb8_c00040{left:513.333333pt;}
.xaf_c00040{left:514.533333pt;}
.x136_c00040{left:516.000000pt;}
.x158_c00040{left:517.466667pt;}
.xff_c00040{left:518.800000pt;}
.xf7_c00040{left:520.533333pt;}
.x142_c00040{left:521.866667pt;}
.xfc_c00040{left:523.866667pt;}
.xc4_c00040{left:525.200000pt;}
.x100_c00040{left:526.533333pt;}
.x151_c00040{left:531.600000pt;}
.xca_c00040{left:533.600000pt;}
.x119_c00040{left:534.800000pt;}
.xf1_c00040{left:536.000000pt;}
.x124_c00040{left:537.333333pt;}
.x10f_c00040{left:538.533333pt;}
.x138_c00040{left:539.466667pt;}
.xdb_c00040{left:541.333333pt;}
.x121_c00040{left:543.466667pt;}
.xbe_c00040{left:545.066667pt;}
.x132_c00040{left:546.533333pt;}
.x101_c00040{left:548.933333pt;}
.xd1_c00040{left:550.000000pt;}
.x115_c00040{left:551.733333pt;}
.x110_c00040{left:553.200000pt;}
.xf8_c00040{left:556.000000pt;}
.x125_c00040{left:557.200000pt;}
.xdc_c00040{left:559.200000pt;}
.xe6_c00040{left:560.533333pt;}
.x152_c00040{left:561.733333pt;}
.xb9_c00040{left:562.666667pt;}
.x14b_c00040{left:563.600000pt;}
.x10a_c00040{left:565.600000pt;}
.xd2_c00040{left:566.933333pt;}
.x14e_c00040{left:568.533333pt;}
.x134_c00040{left:570.266667pt;}
.x15a_c00040{left:572.000000pt;}
.x139_c00040{left:573.066667pt;}
.x141_c00040{left:574.000000pt;}
.xb0_c00040{left:575.066667pt;}
.x12f_c00040{left:576.533333pt;}
.xfd_c00040{left:579.866667pt;}
.x129_c00040{left:581.200000pt;}
.x12d_c00040{left:582.400000pt;}
.xd3_c00040{left:583.866667pt;}
.xeb_c00040{left:585.600000pt;}
.xc5_c00040{left:587.600000pt;}
.x14f_c00040{left:590.000000pt;}
.x11d_c00040{left:591.333333pt;}
.x102_c00040{left:592.800000pt;}
.xcb_c00040{left:593.733333pt;}
.x126_c00040{left:595.066667pt;}
.xf2_c00040{left:596.400000pt;}
.xf9_c00040{left:597.866667pt;}
.xe2_c00040{left:599.600000pt;}
.x13e_c00040{left:601.333333pt;}
.x11a_c00040{left:602.266667pt;}
.xbf_c00040{left:603.333333pt;}
.xcc_c00040{left:604.266667pt;}
.x150_c00040{left:607.200000pt;}
.xdd_c00040{left:608.133333pt;}
.x153_c00040{left:609.466667pt;}
.xc6_c00040{left:611.866667pt;}
.x122_c00040{left:613.866667pt;}
.xfa_c00040{left:616.133333pt;}
.xf3_c00040{left:617.466667pt;}
.xb1_c00040{left:619.200000pt;}
.x135_c00040{left:620.133333pt;}
.x15b_c00040{left:621.066667pt;}
.xd4_c00040{left:622.533333pt;}
.xde_c00040{left:623.466667pt;}
.x11e_c00040{left:624.666667pt;}
.x149_c00040{left:625.733333pt;}
.xc0_c00040{left:629.200000pt;}
.xb2_c00040{left:631.066667pt;}
.x14c_c00040{left:632.000000pt;}
.x11b_c00040{left:632.933333pt;}
.xec_c00040{left:634.933333pt;}
.x12a_c00040{left:636.533333pt;}
.xba_c00040{left:637.600000pt;}
.xcd_c00040{left:639.466667pt;}
.x10b_c00040{left:640.533333pt;}
.x130_c00040{left:641.866667pt;}
.xf4_c00040{left:643.333333pt;}
.x14d_c00040{left:647.733333pt;}
.x11f_c00040{left:648.933333pt;}
.xe7_c00040{left:649.866667pt;}
.xb3_c00040{left:653.466667pt;}
.xed_c00040{left:654.400000pt;}
.x11c_c00040{left:655.333333pt;}
.x105_c00040{left:656.533333pt;}
.xdf_c00040{left:658.400000pt;}
.x13f_c00040{left:659.333333pt;}
.x145_c00040{left:660.400000pt;}
.x111_c00040{left:663.866667pt;}
.x106_c00040{left:664.800000pt;}
.xd7_c00040{left:666.000000pt;}
.x146_c00040{left:667.333333pt;}
.xb4_c00040{left:668.800000pt;}
.xbb_c00040{left:670.266667pt;}
.x10c_c00040{left:671.200000pt;}
.xe3_c00040{left:673.866667pt;}
.x107_c00040{left:675.733333pt;}
.x3_c00040{left:676.800000pt;}
.xd5_c00040{left:677.866667pt;}
.x117_c00040{left:679.466667pt;}
.xf5_c00040{left:681.333333pt;}
.x12e_c00040{left:683.600000pt;}
.x154_c00040{left:684.800000pt;}
.x12b_c00040{left:685.866667pt;}
.x2_c00040{left:687.333333pt;}
}





/* 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_c00041 {
    display:none;
  }
  .loading-indicator_c00041.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00041 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_c00041 { 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_c00041" -> "#page-container .classname_c00041")
 */
.pf_c00041 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00041 { /* 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_c00041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00041 { /* 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_c00041 { /* 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_c00041 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00041 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00041 {overflow:visible;}
  }
}
.c_c00041 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00041 { /* 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_c00041:after { /* webkit #35443 */
  content: '';
}
.t_c00041:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00041 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 */
}
.__c00041 { /* 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_c00041 { /* info for Javascript */
  display:none;
}
.l_c00041 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00041 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00041 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00041: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_c00041 {
    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_c00041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00041.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_c00041 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00041;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.000000;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;}
.m104_c00041{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00041{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m119_c00041{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00041{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00041{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m101_c00041{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00041{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00041{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00041{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m32_c00041{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m41_c00041{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00041{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00041{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00041{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m76_c00041{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.maf_c00041{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00041{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md6_c00041{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00041{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m55_c00041{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m30_c00041{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00041{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00041{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m124_c00041{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m7_c00041{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m97_c00041{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m122_c00041{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00041{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00041{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00041{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00041{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mda_c00041{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m45_c00041{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mac_c00041{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00041{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb_c00041{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m12_c00041{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m82_c00041{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m90_c00041{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00041{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00041{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md1_c00041{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00041{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m63_c00041{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me2_c00041{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mec_c00041{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00041{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m86_c00041{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00041{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00041{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m68_c00041{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m8_c00041{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00041{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m20_c00041{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m22_c00041{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m111_c00041{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m43_c00041{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m110_c00041{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m125_c00041{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00041{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m35_c00041{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.maa_c00041{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.me3_c00041{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma_c00041{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m19_c00041{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m14_c00041{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md9_c00041{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m27_c00041{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m70_c00041{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m5_c00041{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me4_c00041{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m42_c00041{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m69_c00041{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00041{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m113_c00041{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mef_c00041{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00041{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m61_c00041{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00041{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m94_c00041{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m115_c00041{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m59_c00041{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00041{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00041{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m13_c00041{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m74_c00041{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m87_c00041{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00041{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00041{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00041{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00041{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00041{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00041{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m93_c00041{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m11_c00041{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00041{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00041{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m66_c00041{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00041{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m37_c00041{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m91_c00041{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m40_c00041{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me1_c00041{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00041{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00041{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m60_c00041{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00041{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00041{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m62_c00041{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc_c00041{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00041{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m29_c00041{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mae_c00041{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00041{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m10_c00041{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m127_c00041{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m105_c00041{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00041{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00041{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m64_c00041{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m88_c00041{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00041{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m44_c00041{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00041{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m84_c00041{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m83_c00041{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00041{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00041{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m78_c00041{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00041{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00041{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00041{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00041{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00041{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m23_c00041{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00041{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m99_c00041{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00041{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m46_c00041{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00041{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00041{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00041{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00041{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m128_c00041{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00041{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00041{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00041{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mff_c00041{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00041{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m25_c00041{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m31_c00041{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00041{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m114_c00041{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00041{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00041{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m103_c00041{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00041{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m3_c00041{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m100_c00041{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00041{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m134_c00041{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00041{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00041{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m56_c00041{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00041{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mab_c00041{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m108_c00041{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m77_c00041{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m15_c00041{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m118_c00041{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00041{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00041{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m96_c00041{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00041{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00041{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m80_c00041{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00041{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.med_c00041{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00041{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.md7_c00041{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00041{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00041{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m48_c00041{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m117_c00041{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md0_c00041{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m112_c00041{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00041{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m21_c00041{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m17_c00041{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m89_c00041{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m36_c00041{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m65_c00041{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m52_c00041{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m38_c00041{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00041{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m71_c00041{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m116_c00041{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mf_c00041{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mad_c00041{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00041{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me6_c00041{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4_c00041{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m50_c00041{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m98_c00041{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00041{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m135_c00041{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mca_c00041{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me_c00041{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m16_c00041{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m39_c00041{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00041{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m28_c00041{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00041{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m123_c00041{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.me7_c00041{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00041{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m51_c00041{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00041{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m26_c00041{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00041{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m67_c00041{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md8_c00041{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00041{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00041{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m79_c00041{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00041{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m95_c00041{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00041{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m75_c00041{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m85_c00041{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00041{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00041{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.meb_c00041{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00041{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mde_c00041{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00041{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m47_c00041{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00041{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00041{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m132_c00041{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00041{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m106_c00041{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00041{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m121_c00041{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m33_c00041{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00041{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m126_c00041{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00041{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mba_c00041{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m58_c00041{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me5_c00041{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00041{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00041{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00041{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m49_c00041{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m129_c00041{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m34_c00041{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m107_c00041{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);}
.m120_c00041{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m73_c00041{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mea_c00041{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00041{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me8_c00041{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00041{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md3_c00041{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m57_c00041{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00041{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00041{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00041{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00041{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m130_c00041{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.md_c00041{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md5_c00041{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00041{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00041{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m18_c00041{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00041{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m109_c00041{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m0_c00041{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mce_c00041{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00041{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m54_c00041{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m102_c00041{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9_c00041{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.md4_c00041{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00041{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m6_c00041{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00041{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00041{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m24_c00041{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m72_c00041{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m2_c00041{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00041{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md2_c00041{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00041{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mee_c00041{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00041{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m81_c00041{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00041{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.me0_c00041{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00041{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00041{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m131_c00041{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m133_c00041{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m92_c00041{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00041{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00041{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m53_c00041{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.me9_c00041{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls0_c00041{letter-spacing:0.000000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{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__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00041{word-spacing:-9.318182px;}
.ws5_c00041{word-spacing:-8.942099px;}
.wsa_c00041{word-spacing:-8.333333px;}
.ws3_c00041{word-spacing:-7.219542px;}
.ws0_c00041{word-spacing:-6.924399px;}
.ws9_c00041{word-spacing:-4.736842px;}
.wsb_c00041{word-spacing:0.000000px;}
.ws7_c00041{word-spacing:0.147059px;}
.ws8_c00041{word-spacing:1.666667px;}
.ws6_c00041{word-spacing:6.000000px;}
.ws2_c00041{word-spacing:8.804348px;}
.ws1_c00041{word-spacing:12.955414px;}
.fc0_c00041{color:transparent;}
.fs2_c00041{font-size:48.000000px;}
.fs5_c00041{font-size:54.000000px;}
.fs4_c00041{font-size:60.000000px;}
.fs3_c00041{font-size:66.000000px;}
.fs0_c00041{font-size:72.000000px;}
.fs1_c00041{font-size:84.000000px;}
.y0_c00041{bottom:0.000000px;}
.y38_c00041{bottom:185.400000px;}
.y73_c00041{bottom:186.300000px;}
.y37_c00041{bottom:200.850000px;}
.y72_c00041{bottom:202.800000px;}
.y36_c00041{bottom:215.100000px;}
.y71_c00041{bottom:215.700000px;}
.y35_c00041{bottom:229.500000px;}
.y70_c00041{bottom:232.200000px;}
.y34_c00041{bottom:243.600000px;}
.y6f_c00041{bottom:244.050000px;}
.y33_c00041{bottom:258.000000px;}
.y6e_c00041{bottom:258.450000px;}
.y32_c00041{bottom:272.700000px;}
.y6d_c00041{bottom:272.850000px;}
.y31_c00041{bottom:286.800000px;}
.y6c_c00041{bottom:286.950000px;}
.y30_c00041{bottom:301.950000px;}
.y6b_c00041{bottom:304.950000px;}
.y2f_c00041{bottom:316.050000px;}
.y6a_c00041{bottom:320.100000px;}
.y2e_c00041{bottom:330.450000px;}
.y69_c00041{bottom:334.500000px;}
.y2d_c00041{bottom:344.850000px;}
.y68_c00041{bottom:348.900000px;}
.y2c_c00041{bottom:359.250000px;}
.y67_c00041{bottom:363.300000px;}
.y2b_c00041{bottom:373.650000px;}
.y66_c00041{bottom:378.000000px;}
.y2a_c00041{bottom:388.200000px;}
.y65_c00041{bottom:392.100000px;}
.y29_c00041{bottom:402.900000px;}
.y64_c00041{bottom:406.800000px;}
.y28_c00041{bottom:417.600000px;}
.y63_c00041{bottom:421.500000px;}
.y62_c00041{bottom:435.900000px;}
.y61_c00041{bottom:454.950000px;}
.y27_c00041{bottom:464.400000px;}
.y60_c00041{bottom:469.050000px;}
.y26_c00041{bottom:482.400000px;}
.y5f_c00041{bottom:483.750000px;}
.y5e_c00041{bottom:497.850000px;}
.y25_c00041{bottom:500.400000px;}
.y5d_c00041{bottom:513.000000px;}
.y24_c00041{bottom:518.400000px;}
.y5c_c00041{bottom:526.650000px;}
.y23_c00041{bottom:536.400000px;}
.y5b_c00041{bottom:541.500000px;}
.y5a_c00041{bottom:555.900000px;}
.y22_c00041{bottom:562.650000px;}
.y59_c00041{bottom:570.600000px;}
.y21_c00041{bottom:581.400000px;}
.y58_c00041{bottom:584.700000px;}
.y57_c00041{bottom:599.400000px;}
.y20_c00041{bottom:599.700000px;}
.y56_c00041{bottom:613.500000px;}
.y1f_c00041{bottom:618.000000px;}
.y55_c00041{bottom:628.200000px;}
.y1e_c00041{bottom:635.250000px;}
.y54_c00041{bottom:642.300000px;}
.y1d_c00041{bottom:653.550000px;}
.y53_c00041{bottom:656.700000px;}
.y1c_c00041{bottom:671.250000px;}
.y52_c00041{bottom:671.400000px;}
.y51_c00041{bottom:685.800000px;}
.y1b_c00041{bottom:689.250000px;}
.y50_c00041{bottom:700.200000px;}
.y1a_c00041{bottom:707.250000px;}
.y4f_c00041{bottom:714.900000px;}
.y19_c00041{bottom:725.250000px;}
.y4e_c00041{bottom:729.300000px;}
.y18_c00041{bottom:743.250000px;}
.y4d_c00041{bottom:743.400000px;}
.y4c_c00041{bottom:758.100000px;}
.y17_c00041{bottom:760.950000px;}
.y4b_c00041{bottom:772.950000px;}
.y16_c00041{bottom:779.250000px;}
.y4a_c00041{bottom:787.200000px;}
.y15_c00041{bottom:797.250000px;}
.y49_c00041{bottom:801.300000px;}
.y14_c00041{bottom:815.250000px;}
.y48_c00041{bottom:815.700000px;}
.y47_c00041{bottom:830.100000px;}
.y13_c00041{bottom:832.950000px;}
.y46_c00041{bottom:845.250000px;}
.y12_c00041{bottom:850.950000px;}
.y45_c00041{bottom:858.600000px;}
.y11_c00041{bottom:868.650000px;}
.y10_c00041{bottom:886.650000px;}
.yf_c00041{bottom:904.650000px;}
.y44_c00041{bottom:914.400000px;}
.ye_c00041{bottom:922.650000px;}
.y43_c00041{bottom:932.400000px;}
.yd_c00041{bottom:940.650000px;}
.y42_c00041{bottom:950.400000px;}
.yc_c00041{bottom:967.050000px;}
.y41_c00041{bottom:976.650000px;}
.yb_c00041{bottom:985.350000px;}
.y40_c00041{bottom:994.650000px;}
.ya_c00041{bottom:1003.350000px;}
.y3f_c00041{bottom:1012.650000px;}
.y9_c00041{bottom:1021.350000px;}
.y3e_c00041{bottom:1030.650000px;}
.y8_c00041{bottom:1047.600000px;}
.y3d_c00041{bottom:1048.950000px;}
.y7_c00041{bottom:1065.600000px;}
.y3c_c00041{bottom:1066.650000px;}
.y6_c00041{bottom:1083.600000px;}
.y3b_c00041{bottom:1084.650000px;}
.y5_c00041{bottom:1101.600000px;}
.y3a_c00041{bottom:1102.650000px;}
.y4_c00041{bottom:1119.600000px;}
.y39_c00041{bottom:1120.650000px;}
.y1_c00041{bottom:1145.850000px;}
.y2_c00041{bottom:1146.900000px;}
.y3_c00041{bottom:1175.700000px;}
.h4_c00041{height:48.000000px;}
.h7_c00041{height:54.000000px;}
.h6_c00041{height:60.000000px;}
.h5_c00041{height:66.000000px;}
.h2_c00041{height:72.000000px;}
.h3_c00041{height:84.000000px;}
.h1_c00041{height:1268.250000px;}
.h0_c00041{height:1268.279937px;}
.w0_c00041{width:948.600036px;}
.w1_c00041{width:948.750000px;}
.x0_c00041{left:0.000000px;}
.x3_c00041{left:151.200000px;}
.x1_c00041{left:156.300000px;}
.x2b_c00041{left:157.950000px;}
.x46_c00041{left:159.000000px;}
.x83_c00041{left:160.200000px;}
.x90_c00041{left:161.250000px;}
.x9c_c00041{left:162.300000px;}
.x96_c00041{left:169.950000px;}
.xa0_c00041{left:172.500000px;}
.x26_c00041{left:175.350000px;}
.x89_c00041{left:176.700000px;}
.x8a_c00041{left:178.500000px;}
.x6c_c00041{left:180.450000px;}
.x4a_c00041{left:183.450000px;}
.x4f_c00041{left:185.850000px;}
.x19_c00041{left:188.100000px;}
.x40_c00041{left:190.050000px;}
.x4_c00041{left:192.600000px;}
.xa4_c00041{left:193.950000px;}
.x4b_c00041{left:195.000000px;}
.x13_c00041{left:198.600000px;}
.x6d_c00041{left:201.000000px;}
.x27_c00041{left:202.650000px;}
.x5a_c00041{left:205.050000px;}
.xd_c00041{left:207.150000px;}
.x91_c00041{left:208.350000px;}
.x5d_c00041{left:209.550000px;}
.x1a_c00041{left:210.750000px;}
.x41_c00041{left:211.950000px;}
.x80_c00041{left:213.600000px;}
.x8e_c00041{left:214.800000px;}
.x50_c00041{left:215.850000px;}
.x5_c00041{left:217.050000px;}
.x47_c00041{left:219.150000px;}
.x8f_c00041{left:221.400000px;}
.x68_c00041{left:222.900000px;}
.x92_c00041{left:224.550000px;}
.x84_c00041{left:226.800000px;}
.x98_c00041{left:228.600000px;}
.x56_c00041{left:230.400000px;}
.x72_c00041{left:231.450000px;}
.x6_c00041{left:232.500000px;}
.x2c_c00041{left:234.300000px;}
.x64_c00041{left:236.850000px;}
.xa6_c00041{left:237.900000px;}
.x14_c00041{left:239.250000px;}
.x5e_c00041{left:241.650000px;}
.x57_c00041{left:242.700000px;}
.x3b_c00041{left:244.200000px;}
.xa9_c00041{left:247.350000px;}
.x37_c00041{left:248.700000px;}
.x31_c00041{left:253.950000px;}
.x21_c00041{left:255.300000px;}
.x1b_c00041{left:256.800000px;}
.x38_c00041{left:259.200000px;}
.x6e_c00041{left:260.700000px;}
.xa3_c00041{left:261.900000px;}
.x76_c00041{left:263.550000px;}
.x4c_c00041{left:265.500000px;}
.xe_c00041{left:266.850000px;}
.x51_c00041{left:269.100000px;}
.x85_c00041{left:270.300000px;}
.x7a_c00041{left:273.750000px;}
.x22_c00041{left:276.900000px;}
.x28_c00041{left:278.550000px;}
.x7_c00041{left:280.350000px;}
.x15_c00041{left:282.750000px;}
.x69_c00041{left:285.450000px;}
.x48_c00041{left:288.150000px;}
.x78_c00041{left:289.950000px;}
.x32_c00041{left:291.000000px;}
.x7b_c00041{left:293.550000px;}
.x7e_c00041{left:295.650000px;}
.x99_c00041{left:297.900000px;}
.x65_c00041{left:299.550000px;}
.x58_c00041{left:302.850000px;}
.x3c_c00041{left:306.900000px;}
.x2d_c00041{left:308.100000px;}
.x60_c00041{left:309.150000px;}
.x8_c00041{left:310.650000px;}
.x9d_c00041{left:312.750000px;}
.x33_c00041{left:315.150000px;}
.x7f_c00041{left:316.500000px;}
.xf_c00041{left:317.550000px;}
.x23_c00041{left:320.100000px;}
.x73_c00041{left:321.450000px;}
.x39_c00041{left:322.800000px;}
.x7d_c00041{left:325.500000px;}
.x93_c00041{left:328.350000px;}
.x86_c00041{left:329.400000px;}
.x6f_c00041{left:331.200000px;}
.x59_c00041{left:334.200000px;}
.x3d_c00041{left:336.150000px;}
.xa5_c00041{left:337.200000px;}
.x10_c00041{left:338.400000px;}
.x16_c00041{left:340.350000px;}
.x3a_c00041{left:342.300000px;}
.x9_c00041{left:343.350000px;}
.x1c_c00041{left:348.300000px;}
.x52_c00041{left:349.800000px;}
.x29_c00041{left:350.850000px;}
.x66_c00041{left:352.200000px;}
.x9e_c00041{left:353.850000px;}
.x5f_c00041{left:355.350000px;}
.x42_c00041{left:357.750000px;}
.xa1_c00041{left:359.400000px;}
.x34_c00041{left:360.900000px;}
.x5b_c00041{left:363.450000px;}
.x2e_c00041{left:365.400000px;}
.x74_c00041{left:368.250000px;}
.x4d_c00041{left:369.900000px;}
.x1d_c00041{left:371.400000px;}
.x3e_c00041{left:373.200000px;}
.x24_c00041{left:374.850000px;}
.x94_c00041{left:376.200000px;}
.x61_c00041{left:377.250000px;}
.x35_c00041{left:378.900000px;}
.xa_c00041{left:381.450000px;}
.x77_c00041{left:383.100000px;}
.x67_c00041{left:384.600000px;}
.x53_c00041{left:386.850000px;}
.x11_c00041{left:389.100000px;}
.x87_c00041{left:390.300000px;}
.x43_c00041{left:392.250000px;}
.x4e_c00041{left:395.100000px;}
.x25_c00041{left:396.450000px;}
.x97_c00041{left:398.100000px;}
.x2_c00041{left:400.350000px;}
.x8b_c00041{left:402.600000px;}
.x7c_c00041{left:404.100000px;}
.x75_c00041{left:405.750000px;}
.xa7_c00041{left:407.250000px;}
.x44_c00041{left:411.750000px;}
.x2f_c00041{left:413.700000px;}
.x8d_c00041{left:417.000000px;}
.x81_c00041{left:419.100000px;}
.x17_c00041{left:420.300000px;}
.xa2_c00041{left:421.350000px;}
.x1e_c00041{left:425.400000px;}
.x70_c00041{left:427.350000px;}
.x62_c00041{left:429.450000px;}
.x95_c00041{left:430.500000px;}
.x2a_c00041{left:431.550000px;}
.x9f_c00041{left:432.750000px;}
.x9a_c00041{left:434.100000px;}
.x82_c00041{left:439.950000px;}
.x18_c00041{left:441.150000px;}
.x30_c00041{left:443.250000px;}
.x71_c00041{left:445.350000px;}
.x5c_c00041{left:447.300000px;}
.x49_c00041{left:449.400000px;}
.x6a_c00041{left:450.900000px;}
.xb_c00041{left:452.400000px;}
.x54_c00041{left:454.500000px;}
.x45_c00041{left:455.700000px;}
.x88_c00041{left:457.200000px;}
.x12_c00041{left:458.550000px;}
.x1f_c00041{left:460.350000px;}
.x6b_c00041{left:462.000000px;}
.x8c_c00041{left:464.100000px;}
.x3f_c00041{left:465.750000px;}
.x36_c00041{left:467.550000px;}
.x55_c00041{left:470.400000px;}
.x79_c00041{left:474.600000px;}
.xa8_c00041{left:475.950000px;}
.xc_c00041{left:477.600000px;}
.x63_c00041{left:479.850000px;}
.x20_c00041{left:482.700000px;}
.x9b_c00041{left:490.950000px;}
.xba_c00041{left:505.050000px;}
.xaa_c00041{left:513.750000px;}
.xd6_c00041{left:514.950000px;}
.x120_c00041{left:516.300000px;}
.x13c_c00041{left:517.950000px;}
.x147_c00041{left:519.000000px;}
.x156_c00041{left:520.800000px;}
.x160_c00041{left:521.850000px;}
.xf7_c00041{left:524.700000px;}
.x14e_c00041{left:526.650000px;}
.xef_c00041{left:529.500000px;}
.x125_c00041{left:530.700000px;}
.x132_c00041{left:531.750000px;}
.xb3_c00041{left:532.800000px;}
.x12f_c00041{left:535.050000px;}
.xbb_c00041{left:536.700000px;}
.x119_c00041{left:537.900000px;}
.x148_c00041{left:539.850000px;}
.x13d_c00041{left:543.150000px;}
.xab_c00041{left:544.350000px;}
.x11a_c00041{left:545.400000px;}
.x153_c00041{left:546.900000px;}
.xd0_c00041{left:549.150000px;}
.xfb_c00041{left:552.300000px;}
.x10b_c00041{left:554.100000px;}
.xea_c00041{left:555.300000px;}
.xf0_c00041{left:556.800000px;}
.xdb_c00041{left:558.750000px;}
.x14d_c00041{left:560.250000px;}
.x137_c00041{left:561.600000px;}
.x131_c00041{left:563.850000px;}
.xd1_c00041{left:568.200000px;}
.x151_c00041{left:569.850000px;}
.x11b_c00041{left:570.900000px;}
.x143_c00041{left:572.100000px;}
.x142_c00041{left:573.150000px;}
.xb4_c00041{left:574.200000px;}
.x126_c00041{left:576.600000px;}
.xc2_c00041{left:578.100000px;}
.x152_c00041{left:579.150000px;}
.xcb_c00041{left:580.800000px;}
.xe4_c00041{left:583.200000px;}
.x121_c00041{left:584.400000px;}
.xfc_c00041{left:586.800000px;}
.xbc_c00041{left:588.900000px;}
.x157_c00041{left:589.950000px;}
.x114_c00041{left:591.000000px;}
.xeb_c00041{left:592.350000px;}
.x104_c00041{left:593.400000px;}
.x10c_c00041{left:594.750000px;}
.xc3_c00041{left:598.200000px;}
.x14f_c00041{left:599.700000px;}
.x140_c00041{left:600.900000px;}
.xd7_c00041{left:602.100000px;}
.x12a_c00041{left:604.050000px;}
.x115_c00041{left:605.400000px;}
.x122_c00041{left:607.800000px;}
.xf1_c00041{left:609.000000px;}
.xac_c00041{left:610.650000px;}
.xc4_c00041{left:612.900000px;}
.xe5_c00041{left:614.100000px;}
.x133_c00041{left:615.750000px;}
.xe2_c00041{left:617.250000px;}
.xbd_c00041{left:619.200000px;}
.xdc_c00041{left:620.250000px;}
.x138_c00041{left:622.200000px;}
.xd8_c00041{left:623.400000px;}
.x108_c00041{left:625.200000px;}
.xfd_c00041{left:627.450000px;}
.xf2_c00041{left:629.100000px;}
.xad_c00041{left:630.750000px;}
.x11c_c00041{left:632.700000px;}
.xf8_c00041{left:633.900000px;}
.xd2_c00041{left:636.300000px;}
.xe3_c00041{left:639.600000px;}
.x10d_c00041{left:642.900000px;}
.xf9_c00041{left:644.400000px;}
.xbe_c00041{left:646.950000px;}
.xc5_c00041{left:649.650000px;}
.x10e_c00041{left:651.600000px;}
.x15b_c00041{left:653.100000px;}
.x146_c00041{left:655.050000px;}
.xd3_c00041{left:656.400000px;}
.xec_c00041{left:658.950000px;}
.xfe_c00041{left:660.900000px;}
.x144_c00041{left:663.300000px;}
.xdd_c00041{left:664.500000px;}
.x158_c00041{left:665.850000px;}
.xd9_c00041{left:668.100000px;}
.xb5_c00041{left:669.600000px;}
.xc6_c00041{left:672.300000px;}
.xcc_c00041{left:673.650000px;}
.x105_c00041{left:675.450000px;}
.x127_c00041{left:676.650000px;}
.xae_c00041{left:679.650000px;}
.x139_c00041{left:681.900000px;}
.x15c_c00041{left:683.400000px;}
.x109_c00041{left:685.350000px;}
.x130_c00041{left:686.850000px;}
.x111_c00041{left:688.050000px;}
.xde_c00041{left:690.000000px;}
.xb6_c00041{left:691.500000px;}
.xe6_c00041{left:692.550000px;}
.x10f_c00041{left:694.200000px;}
.xf3_c00041{left:695.700000px;}
.x13a_c00041{left:697.650000px;}
.x159_c00041{left:699.000000px;}
.x154_c00041{left:700.500000px;}
.x123_c00041{left:703.800000px;}
.xfa_c00041{left:705.900000px;}
.xcd_c00041{left:707.550000px;}
.x118_c00041{left:708.600000px;}
.x12b_c00041{left:710.850000px;}
.x112_c00041{left:712.050000px;}
.xaf_c00041{left:714.150000px;}
.x116_c00041{left:715.200000px;}
.x149_c00041{left:716.550000px;}
.x11d_c00041{left:717.900000px;}
.xc7_c00041{left:719.850000px;}
.xff_c00041{left:721.050000px;}
.x13e_c00041{left:722.550000px;}
.x135_c00041{left:723.900000px;}
.x12c_c00041{left:727.350000px;}
.xe7_c00041{left:728.550000px;}
.xbf_c00041{left:729.750000px;}
.xf4_c00041{left:731.400000px;}
.xc8_c00041{left:732.450000px;}
.x117_c00041{left:734.250000px;}
.x102_c00041{left:736.200000px;}
.x150_c00041{left:740.250000px;}
.xb7_c00041{left:741.900000px;}
.xdf_c00041{left:743.250000px;}
.xed_c00041{left:744.300000px;}
.x113_c00041{left:746.250000px;}
.xda_c00041{left:747.300000px;}
.x136_c00041{left:748.800000px;}
.x124_c00041{left:750.600000px;}
.xf5_c00041{left:751.950000px;}
.x128_c00041{left:754.350000px;}
.xe0_c00041{left:756.150000px;}
.xc9_c00041{left:757.950000px;}
.x155_c00041{left:759.150000px;}
.x145_c00041{left:763.350000px;}
.xb0_c00041{left:764.550000px;}
.xe8_c00041{left:766.050000px;}
.x10a_c00041{left:767.400000px;}
.x106_c00041{left:771.150000px;}
.x100_c00041{left:774.000000px;}
.x12d_c00041{left:775.500000px;}
.xce_c00041{left:776.700000px;}
.x14a_c00041{left:779.850000px;}
.x141_c00041{left:780.900000px;}
.x103_c00041{left:783.300000px;}
.x13b_c00041{left:784.800000px;}
.x15a_c00041{left:787.800000px;}
.xd4_c00041{left:791.400000px;}
.xb1_c00041{left:793.050000px;}
.xcf_c00041{left:795.000000px;}
.x101_c00041{left:797.100000px;}
.x107_c00041{left:798.450000px;}
.xee_c00041{left:800.400000px;}
.xe1_c00041{left:802.200000px;}
.x134_c00041{left:803.700000px;}
.x14b_c00041{left:806.550000px;}
.x15f_c00041{left:808.500000px;}
.xb8_c00041{left:811.350000px;}
.xd5_c00041{left:813.750000px;}
.x14c_c00041{left:815.550000px;}
.xc0_c00041{left:817.650000px;}
.x11f_c00041{left:820.800000px;}
.xf6_c00041{left:822.450000px;}
.xca_c00041{left:823.800000px;}
.xe9_c00041{left:825.750000px;}
.x13f_c00041{left:828.000000px;}
.x129_c00041{left:832.500000px;}
.x15d_c00041{left:833.850000px;}
.x110_c00041{left:835.050000px;}
.xb2_c00041{left:836.250000px;}
.x161_c00041{left:840.450000px;}
.xc1_c00041{left:842.550000px;}
.x162_c00041{left:843.600000px;}
.x12e_c00041{left:844.950000px;}
.x15e_c00041{left:846.150000px;}
.xb9_c00041{left:848.400000px;}
.x11e_c00041{left:851.850000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws4_c00041{word-spacing:-8.282828pt;}
.ws5_c00041{word-spacing:-7.948532pt;}
.wsa_c00041{word-spacing:-7.407407pt;}
.ws3_c00041{word-spacing:-6.417370pt;}
.ws0_c00041{word-spacing:-6.155021pt;}
.ws9_c00041{word-spacing:-4.210526pt;}
.wsb_c00041{word-spacing:0.000000pt;}
.ws7_c00041{word-spacing:0.130719pt;}
.ws8_c00041{word-spacing:1.481481pt;}
.ws6_c00041{word-spacing:5.333333pt;}
.ws2_c00041{word-spacing:7.826087pt;}
.ws1_c00041{word-spacing:11.515924pt;}
.fs2_c00041{font-size:42.666667pt;}
.fs5_c00041{font-size:48.000000pt;}
.fs4_c00041{font-size:53.333333pt;}
.fs3_c00041{font-size:58.666667pt;}
.fs0_c00041{font-size:64.000000pt;}
.fs1_c00041{font-size:74.666667pt;}
.y0_c00041{bottom:0.000000pt;}
.y38_c00041{bottom:164.800000pt;}
.y73_c00041{bottom:165.600000pt;}
.y37_c00041{bottom:178.533333pt;}
.y72_c00041{bottom:180.266667pt;}
.y36_c00041{bottom:191.200000pt;}
.y71_c00041{bottom:191.733333pt;}
.y35_c00041{bottom:204.000000pt;}
.y70_c00041{bottom:206.400000pt;}
.y34_c00041{bottom:216.533333pt;}
.y6f_c00041{bottom:216.933333pt;}
.y33_c00041{bottom:229.333333pt;}
.y6e_c00041{bottom:229.733333pt;}
.y32_c00041{bottom:242.400000pt;}
.y6d_c00041{bottom:242.533333pt;}
.y31_c00041{bottom:254.933333pt;}
.y6c_c00041{bottom:255.066667pt;}
.y30_c00041{bottom:268.400000pt;}
.y6b_c00041{bottom:271.066667pt;}
.y2f_c00041{bottom:280.933333pt;}
.y6a_c00041{bottom:284.533333pt;}
.y2e_c00041{bottom:293.733333pt;}
.y69_c00041{bottom:297.333333pt;}
.y2d_c00041{bottom:306.533333pt;}
.y68_c00041{bottom:310.133333pt;}
.y2c_c00041{bottom:319.333333pt;}
.y67_c00041{bottom:322.933333pt;}
.y2b_c00041{bottom:332.133333pt;}
.y66_c00041{bottom:336.000000pt;}
.y2a_c00041{bottom:345.066667pt;}
.y65_c00041{bottom:348.533333pt;}
.y29_c00041{bottom:358.133333pt;}
.y64_c00041{bottom:361.600000pt;}
.y28_c00041{bottom:371.200000pt;}
.y63_c00041{bottom:374.666667pt;}
.y62_c00041{bottom:387.466667pt;}
.y61_c00041{bottom:404.400000pt;}
.y27_c00041{bottom:412.800000pt;}
.y60_c00041{bottom:416.933333pt;}
.y26_c00041{bottom:428.800000pt;}
.y5f_c00041{bottom:430.000000pt;}
.y5e_c00041{bottom:442.533333pt;}
.y25_c00041{bottom:444.800000pt;}
.y5d_c00041{bottom:456.000000pt;}
.y24_c00041{bottom:460.800000pt;}
.y5c_c00041{bottom:468.133333pt;}
.y23_c00041{bottom:476.800000pt;}
.y5b_c00041{bottom:481.333333pt;}
.y5a_c00041{bottom:494.133333pt;}
.y22_c00041{bottom:500.133333pt;}
.y59_c00041{bottom:507.200000pt;}
.y21_c00041{bottom:516.800000pt;}
.y58_c00041{bottom:519.733333pt;}
.y57_c00041{bottom:532.800000pt;}
.y20_c00041{bottom:533.066667pt;}
.y56_c00041{bottom:545.333333pt;}
.y1f_c00041{bottom:549.333333pt;}
.y55_c00041{bottom:558.400000pt;}
.y1e_c00041{bottom:564.666667pt;}
.y54_c00041{bottom:570.933333pt;}
.y1d_c00041{bottom:580.933333pt;}
.y53_c00041{bottom:583.733333pt;}
.y1c_c00041{bottom:596.666667pt;}
.y52_c00041{bottom:596.800000pt;}
.y51_c00041{bottom:609.600000pt;}
.y1b_c00041{bottom:612.666667pt;}
.y50_c00041{bottom:622.400000pt;}
.y1a_c00041{bottom:628.666667pt;}
.y4f_c00041{bottom:635.466667pt;}
.y19_c00041{bottom:644.666667pt;}
.y4e_c00041{bottom:648.266667pt;}
.y18_c00041{bottom:660.666667pt;}
.y4d_c00041{bottom:660.800000pt;}
.y4c_c00041{bottom:673.866667pt;}
.y17_c00041{bottom:676.400000pt;}
.y4b_c00041{bottom:687.066667pt;}
.y16_c00041{bottom:692.666667pt;}
.y4a_c00041{bottom:699.733333pt;}
.y15_c00041{bottom:708.666667pt;}
.y49_c00041{bottom:712.266667pt;}
.y14_c00041{bottom:724.666667pt;}
.y48_c00041{bottom:725.066667pt;}
.y47_c00041{bottom:737.866667pt;}
.y13_c00041{bottom:740.400000pt;}
.y46_c00041{bottom:751.333333pt;}
.y12_c00041{bottom:756.400000pt;}
.y45_c00041{bottom:763.200000pt;}
.y11_c00041{bottom:772.133333pt;}
.y10_c00041{bottom:788.133333pt;}
.yf_c00041{bottom:804.133333pt;}
.y44_c00041{bottom:812.800000pt;}
.ye_c00041{bottom:820.133333pt;}
.y43_c00041{bottom:828.800000pt;}
.yd_c00041{bottom:836.133333pt;}
.y42_c00041{bottom:844.800000pt;}
.yc_c00041{bottom:859.600000pt;}
.y41_c00041{bottom:868.133333pt;}
.yb_c00041{bottom:875.866667pt;}
.y40_c00041{bottom:884.133333pt;}
.ya_c00041{bottom:891.866667pt;}
.y3f_c00041{bottom:900.133333pt;}
.y9_c00041{bottom:907.866667pt;}
.y3e_c00041{bottom:916.133333pt;}
.y8_c00041{bottom:931.200000pt;}
.y3d_c00041{bottom:932.400000pt;}
.y7_c00041{bottom:947.200000pt;}
.y3c_c00041{bottom:948.133333pt;}
.y6_c00041{bottom:963.200000pt;}
.y3b_c00041{bottom:964.133333pt;}
.y5_c00041{bottom:979.200000pt;}
.y3a_c00041{bottom:980.133333pt;}
.y4_c00041{bottom:995.200000pt;}
.y39_c00041{bottom:996.133333pt;}
.y1_c00041{bottom:1018.533333pt;}
.y2_c00041{bottom:1019.466667pt;}
.y3_c00041{bottom:1045.066667pt;}
.h4_c00041{height:42.666667pt;}
.h7_c00041{height:48.000000pt;}
.h6_c00041{height:53.333333pt;}
.h5_c00041{height:58.666667pt;}
.h2_c00041{height:64.000000pt;}
.h3_c00041{height:74.666667pt;}
.h1_c00041{height:1127.333333pt;}
.h0_c00041{height:1127.359944pt;}
.w0_c00041{width:843.200032pt;}
.w1_c00041{width:843.333333pt;}
.x0_c00041{left:0.000000pt;}
.x3_c00041{left:134.400000pt;}
.x1_c00041{left:138.933333pt;}
.x2b_c00041{left:140.400000pt;}
.x46_c00041{left:141.333333pt;}
.x83_c00041{left:142.400000pt;}
.x90_c00041{left:143.333333pt;}
.x9c_c00041{left:144.266667pt;}
.x96_c00041{left:151.066667pt;}
.xa0_c00041{left:153.333333pt;}
.x26_c00041{left:155.866667pt;}
.x89_c00041{left:157.066667pt;}
.x8a_c00041{left:158.666667pt;}
.x6c_c00041{left:160.400000pt;}
.x4a_c00041{left:163.066667pt;}
.x4f_c00041{left:165.200000pt;}
.x19_c00041{left:167.200000pt;}
.x40_c00041{left:168.933333pt;}
.x4_c00041{left:171.200000pt;}
.xa4_c00041{left:172.400000pt;}
.x4b_c00041{left:173.333333pt;}
.x13_c00041{left:176.533333pt;}
.x6d_c00041{left:178.666667pt;}
.x27_c00041{left:180.133333pt;}
.x5a_c00041{left:182.266667pt;}
.xd_c00041{left:184.133333pt;}
.x91_c00041{left:185.200000pt;}
.x5d_c00041{left:186.266667pt;}
.x1a_c00041{left:187.333333pt;}
.x41_c00041{left:188.400000pt;}
.x80_c00041{left:189.866667pt;}
.x8e_c00041{left:190.933333pt;}
.x50_c00041{left:191.866667pt;}
.x5_c00041{left:192.933333pt;}
.x47_c00041{left:194.800000pt;}
.x8f_c00041{left:196.800000pt;}
.x68_c00041{left:198.133333pt;}
.x92_c00041{left:199.600000pt;}
.x84_c00041{left:201.600000pt;}
.x98_c00041{left:203.200000pt;}
.x56_c00041{left:204.800000pt;}
.x72_c00041{left:205.733333pt;}
.x6_c00041{left:206.666667pt;}
.x2c_c00041{left:208.266667pt;}
.x64_c00041{left:210.533333pt;}
.xa6_c00041{left:211.466667pt;}
.x14_c00041{left:212.666667pt;}
.x5e_c00041{left:214.800000pt;}
.x57_c00041{left:215.733333pt;}
.x3b_c00041{left:217.066667pt;}
.xa9_c00041{left:219.866667pt;}
.x37_c00041{left:221.066667pt;}
.x31_c00041{left:225.733333pt;}
.x21_c00041{left:226.933333pt;}
.x1b_c00041{left:228.266667pt;}
.x38_c00041{left:230.400000pt;}
.x6e_c00041{left:231.733333pt;}
.xa3_c00041{left:232.800000pt;}
.x76_c00041{left:234.266667pt;}
.x4c_c00041{left:236.000000pt;}
.xe_c00041{left:237.200000pt;}
.x51_c00041{left:239.200000pt;}
.x85_c00041{left:240.266667pt;}
.x7a_c00041{left:243.333333pt;}
.x22_c00041{left:246.133333pt;}
.x28_c00041{left:247.600000pt;}
.x7_c00041{left:249.200000pt;}
.x15_c00041{left:251.333333pt;}
.x69_c00041{left:253.733333pt;}
.x48_c00041{left:256.133333pt;}
.x78_c00041{left:257.733333pt;}
.x32_c00041{left:258.666667pt;}
.x7b_c00041{left:260.933333pt;}
.x7e_c00041{left:262.800000pt;}
.x99_c00041{left:264.800000pt;}
.x65_c00041{left:266.266667pt;}
.x58_c00041{left:269.200000pt;}
.x3c_c00041{left:272.800000pt;}
.x2d_c00041{left:273.866667pt;}
.x60_c00041{left:274.800000pt;}
.x8_c00041{left:276.133333pt;}
.x9d_c00041{left:278.000000pt;}
.x33_c00041{left:280.133333pt;}
.x7f_c00041{left:281.333333pt;}
.xf_c00041{left:282.266667pt;}
.x23_c00041{left:284.533333pt;}
.x73_c00041{left:285.733333pt;}
.x39_c00041{left:286.933333pt;}
.x7d_c00041{left:289.333333pt;}
.x93_c00041{left:291.866667pt;}
.x86_c00041{left:292.800000pt;}
.x6f_c00041{left:294.400000pt;}
.x59_c00041{left:297.066667pt;}
.x3d_c00041{left:298.800000pt;}
.xa5_c00041{left:299.733333pt;}
.x10_c00041{left:300.800000pt;}
.x16_c00041{left:302.533333pt;}
.x3a_c00041{left:304.266667pt;}
.x9_c00041{left:305.200000pt;}
.x1c_c00041{left:309.600000pt;}
.x52_c00041{left:310.933333pt;}
.x29_c00041{left:311.866667pt;}
.x66_c00041{left:313.066667pt;}
.x9e_c00041{left:314.533333pt;}
.x5f_c00041{left:315.866667pt;}
.x42_c00041{left:318.000000pt;}
.xa1_c00041{left:319.466667pt;}
.x34_c00041{left:320.800000pt;}
.x5b_c00041{left:323.066667pt;}
.x2e_c00041{left:324.800000pt;}
.x74_c00041{left:327.333333pt;}
.x4d_c00041{left:328.800000pt;}
.x1d_c00041{left:330.133333pt;}
.x3e_c00041{left:331.733333pt;}
.x24_c00041{left:333.200000pt;}
.x94_c00041{left:334.400000pt;}
.x61_c00041{left:335.333333pt;}
.x35_c00041{left:336.800000pt;}
.xa_c00041{left:339.066667pt;}
.x77_c00041{left:340.533333pt;}
.x67_c00041{left:341.866667pt;}
.x53_c00041{left:343.866667pt;}
.x11_c00041{left:345.866667pt;}
.x87_c00041{left:346.933333pt;}
.x43_c00041{left:348.666667pt;}
.x4e_c00041{left:351.200000pt;}
.x25_c00041{left:352.400000pt;}
.x97_c00041{left:353.866667pt;}
.x2_c00041{left:355.866667pt;}
.x8b_c00041{left:357.866667pt;}
.x7c_c00041{left:359.200000pt;}
.x75_c00041{left:360.666667pt;}
.xa7_c00041{left:362.000000pt;}
.x44_c00041{left:366.000000pt;}
.x2f_c00041{left:367.733333pt;}
.x8d_c00041{left:370.666667pt;}
.x81_c00041{left:372.533333pt;}
.x17_c00041{left:373.600000pt;}
.xa2_c00041{left:374.533333pt;}
.x1e_c00041{left:378.133333pt;}
.x70_c00041{left:379.866667pt;}
.x62_c00041{left:381.733333pt;}
.x95_c00041{left:382.666667pt;}
.x2a_c00041{left:383.600000pt;}
.x9f_c00041{left:384.666667pt;}
.x9a_c00041{left:385.866667pt;}
.x82_c00041{left:391.066667pt;}
.x18_c00041{left:392.133333pt;}
.x30_c00041{left:394.000000pt;}
.x71_c00041{left:395.866667pt;}
.x5c_c00041{left:397.600000pt;}
.x49_c00041{left:399.466667pt;}
.x6a_c00041{left:400.800000pt;}
.xb_c00041{left:402.133333pt;}
.x54_c00041{left:404.000000pt;}
.x45_c00041{left:405.066667pt;}
.x88_c00041{left:406.400000pt;}
.x12_c00041{left:407.600000pt;}
.x1f_c00041{left:409.200000pt;}
.x6b_c00041{left:410.666667pt;}
.x8c_c00041{left:412.533333pt;}
.x3f_c00041{left:414.000000pt;}
.x36_c00041{left:415.600000pt;}
.x55_c00041{left:418.133333pt;}
.x79_c00041{left:421.866667pt;}
.xa8_c00041{left:423.066667pt;}
.xc_c00041{left:424.533333pt;}
.x63_c00041{left:426.533333pt;}
.x20_c00041{left:429.066667pt;}
.x9b_c00041{left:436.400000pt;}
.xba_c00041{left:448.933333pt;}
.xaa_c00041{left:456.666667pt;}
.xd6_c00041{left:457.733333pt;}
.x120_c00041{left:458.933333pt;}
.x13c_c00041{left:460.400000pt;}
.x147_c00041{left:461.333333pt;}
.x156_c00041{left:462.933333pt;}
.x160_c00041{left:463.866667pt;}
.xf7_c00041{left:466.400000pt;}
.x14e_c00041{left:468.133333pt;}
.xef_c00041{left:470.666667pt;}
.x125_c00041{left:471.733333pt;}
.x132_c00041{left:472.666667pt;}
.xb3_c00041{left:473.600000pt;}
.x12f_c00041{left:475.600000pt;}
.xbb_c00041{left:477.066667pt;}
.x119_c00041{left:478.133333pt;}
.x148_c00041{left:479.866667pt;}
.x13d_c00041{left:482.800000pt;}
.xab_c00041{left:483.866667pt;}
.x11a_c00041{left:484.800000pt;}
.x153_c00041{left:486.133333pt;}
.xd0_c00041{left:488.133333pt;}
.xfb_c00041{left:490.933333pt;}
.x10b_c00041{left:492.533333pt;}
.xea_c00041{left:493.600000pt;}
.xf0_c00041{left:494.933333pt;}
.xdb_c00041{left:496.666667pt;}
.x14d_c00041{left:498.000000pt;}
.x137_c00041{left:499.200000pt;}
.x131_c00041{left:501.200000pt;}
.xd1_c00041{left:505.066667pt;}
.x151_c00041{left:506.533333pt;}
.x11b_c00041{left:507.466667pt;}
.x143_c00041{left:508.533333pt;}
.x142_c00041{left:509.466667pt;}
.xb4_c00041{left:510.400000pt;}
.x126_c00041{left:512.533333pt;}
.xc2_c00041{left:513.866667pt;}
.x152_c00041{left:514.800000pt;}
.xcb_c00041{left:516.266667pt;}
.xe4_c00041{left:518.400000pt;}
.x121_c00041{left:519.466667pt;}
.xfc_c00041{left:521.600000pt;}
.xbc_c00041{left:523.466667pt;}
.x157_c00041{left:524.400000pt;}
.x114_c00041{left:525.333333pt;}
.xeb_c00041{left:526.533333pt;}
.x104_c00041{left:527.466667pt;}
.x10c_c00041{left:528.666667pt;}
.xc3_c00041{left:531.733333pt;}
.x14f_c00041{left:533.066667pt;}
.x140_c00041{left:534.133333pt;}
.xd7_c00041{left:535.200000pt;}
.x12a_c00041{left:536.933333pt;}
.x115_c00041{left:538.133333pt;}
.x122_c00041{left:540.266667pt;}
.xf1_c00041{left:541.333333pt;}
.xac_c00041{left:542.800000pt;}
.xc4_c00041{left:544.800000pt;}
.xe5_c00041{left:545.866667pt;}
.x133_c00041{left:547.333333pt;}
.xe2_c00041{left:548.666667pt;}
.xbd_c00041{left:550.400000pt;}
.xdc_c00041{left:551.333333pt;}
.x138_c00041{left:553.066667pt;}
.xd8_c00041{left:554.133333pt;}
.x108_c00041{left:555.733333pt;}
.xfd_c00041{left:557.733333pt;}
.xf2_c00041{left:559.200000pt;}
.xad_c00041{left:560.666667pt;}
.x11c_c00041{left:562.400000pt;}
.xf8_c00041{left:563.466667pt;}
.xd2_c00041{left:565.600000pt;}
.xe3_c00041{left:568.533333pt;}
.x10d_c00041{left:571.466667pt;}
.xf9_c00041{left:572.800000pt;}
.xbe_c00041{left:575.066667pt;}
.xc5_c00041{left:577.466667pt;}
.x10e_c00041{left:579.200000pt;}
.x15b_c00041{left:580.533333pt;}
.x146_c00041{left:582.266667pt;}
.xd3_c00041{left:583.466667pt;}
.xec_c00041{left:585.733333pt;}
.xfe_c00041{left:587.466667pt;}
.x144_c00041{left:589.600000pt;}
.xdd_c00041{left:590.666667pt;}
.x158_c00041{left:591.866667pt;}
.xd9_c00041{left:593.866667pt;}
.xb5_c00041{left:595.200000pt;}
.xc6_c00041{left:597.600000pt;}
.xcc_c00041{left:598.800000pt;}
.x105_c00041{left:600.400000pt;}
.x127_c00041{left:601.466667pt;}
.xae_c00041{left:604.133333pt;}
.x139_c00041{left:606.133333pt;}
.x15c_c00041{left:607.466667pt;}
.x109_c00041{left:609.200000pt;}
.x130_c00041{left:610.533333pt;}
.x111_c00041{left:611.600000pt;}
.xde_c00041{left:613.333333pt;}
.xb6_c00041{left:614.666667pt;}
.xe6_c00041{left:615.600000pt;}
.x10f_c00041{left:617.066667pt;}
.xf3_c00041{left:618.400000pt;}
.x13a_c00041{left:620.133333pt;}
.x159_c00041{left:621.333333pt;}
.x154_c00041{left:622.666667pt;}
.x123_c00041{left:625.600000pt;}
.xfa_c00041{left:627.466667pt;}
.xcd_c00041{left:628.933333pt;}
.x118_c00041{left:629.866667pt;}
.x12b_c00041{left:631.866667pt;}
.x112_c00041{left:632.933333pt;}
.xaf_c00041{left:634.800000pt;}
.x116_c00041{left:635.733333pt;}
.x149_c00041{left:636.933333pt;}
.x11d_c00041{left:638.133333pt;}
.xc7_c00041{left:639.866667pt;}
.xff_c00041{left:640.933333pt;}
.x13e_c00041{left:642.266667pt;}
.x135_c00041{left:643.466667pt;}
.x12c_c00041{left:646.533333pt;}
.xe7_c00041{left:647.600000pt;}
.xbf_c00041{left:648.666667pt;}
.xf4_c00041{left:650.133333pt;}
.xc8_c00041{left:651.066667pt;}
.x117_c00041{left:652.666667pt;}
.x102_c00041{left:654.400000pt;}
.x150_c00041{left:658.000000pt;}
.xb7_c00041{left:659.466667pt;}
.xdf_c00041{left:660.666667pt;}
.xed_c00041{left:661.600000pt;}
.x113_c00041{left:663.333333pt;}
.xda_c00041{left:664.266667pt;}
.x136_c00041{left:665.600000pt;}
.x124_c00041{left:667.200000pt;}
.xf5_c00041{left:668.400000pt;}
.x128_c00041{left:670.533333pt;}
.xe0_c00041{left:672.133333pt;}
.xc9_c00041{left:673.733333pt;}
.x155_c00041{left:674.800000pt;}
.x145_c00041{left:678.533333pt;}
.xb0_c00041{left:679.600000pt;}
.xe8_c00041{left:680.933333pt;}
.x10a_c00041{left:682.133333pt;}
.x106_c00041{left:685.466667pt;}
.x100_c00041{left:688.000000pt;}
.x12d_c00041{left:689.333333pt;}
.xce_c00041{left:690.400000pt;}
.x14a_c00041{left:693.200000pt;}
.x141_c00041{left:694.133333pt;}
.x103_c00041{left:696.266667pt;}
.x13b_c00041{left:697.600000pt;}
.x15a_c00041{left:700.266667pt;}
.xd4_c00041{left:703.466667pt;}
.xb1_c00041{left:704.933333pt;}
.xcf_c00041{left:706.666667pt;}
.x101_c00041{left:708.533333pt;}
.x107_c00041{left:709.733333pt;}
.xee_c00041{left:711.466667pt;}
.xe1_c00041{left:713.066667pt;}
.x134_c00041{left:714.400000pt;}
.x14b_c00041{left:716.933333pt;}
.x15f_c00041{left:718.666667pt;}
.xb8_c00041{left:721.200000pt;}
.xd5_c00041{left:723.333333pt;}
.x14c_c00041{left:724.933333pt;}
.xc0_c00041{left:726.800000pt;}
.x11f_c00041{left:729.600000pt;}
.xf6_c00041{left:731.066667pt;}
.xca_c00041{left:732.266667pt;}
.xe9_c00041{left:734.000000pt;}
.x13f_c00041{left:736.000000pt;}
.x129_c00041{left:740.000000pt;}
.x15d_c00041{left:741.200000pt;}
.x110_c00041{left:742.266667pt;}
.xb2_c00041{left:743.333333pt;}
.x161_c00041{left:747.066667pt;}
.xc1_c00041{left:748.933333pt;}
.x162_c00041{left:749.866667pt;}
.x12e_c00041{left:751.066667pt;}
.x15e_c00041{left:752.133333pt;}
.xb9_c00041{left:754.133333pt;}
.x11e_c00041{left:757.200000pt;}
}





/* 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_c00042 {
    display:none;
  }
  .loading-indicator_c00042.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00042 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_c00042 { 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_c00042" -> "#page-container .classname_c00042")
 */
.pf_c00042 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00042 { /* 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_c00042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00042 { /* 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_c00042 { /* 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_c00042 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00042 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00042 {overflow:visible;}
  }
}
.c_c00042 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00042 { /* 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_c00042:after { /* webkit #35443 */
  content: '';
}
.t_c00042:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00042 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 */
}
.__c00042 { /* 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_c00042 { /* info for Javascript */
  display:none;
}
.l_c00042 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00042 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00042 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00042: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_c00042 {
    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_c00042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00042.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_c00042 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00042;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.000000;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;}
.mb3_c00042{transform:matrix(0.008000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00042{transform:matrix(0.019000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019000,0.000000,0.000000,0.250000,0,0);}
.m106_c00042{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mac_c00042{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mf_c00042{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00042{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m100_c00042{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00042{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00042{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00042{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m48_c00042{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md0_c00042{transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);}
.mef_c00042{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m96_c00042{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.me0_c00042{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00042{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00042{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00042{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00042{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m26_c00042{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m64_c00042{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m69_c00042{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m19_c00042{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00042{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m37_c00042{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00042{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m44_c00042{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00042{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00042{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me7_c00042{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00042{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m80_c00042{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me6_c00042{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00042{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00042{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m58_c00042{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m23_c00042{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m56_c00042{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00042{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00042{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m73_c00042{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m108_c00042{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m24_c00042{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00042{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00042{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00042{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m20_c00042{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00042{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00042{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00042{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00042{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00042{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00042{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00042{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00042{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00042{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00042{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mba_c00042{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00042{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m8_c00042{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00042{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m52_c00042{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m89_c00042{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m109_c00042{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m11_c00042{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md6_c00042{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00042{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mea_c00042{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00042{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00042{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mc_c00042{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m43_c00042{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m77_c00042{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m81_c00042{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00042{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m82_c00042{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m75_c00042{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m60_c00042{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m30_c00042{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00042{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me8_c00042{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00042{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.md_c00042{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m17_c00042{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m86_c00042{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md3_c00042{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9_c00042{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5_c00042{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00042{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00042{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00042{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m13_c00042{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mde_c00042{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me3_c00042{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00042{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00042{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m90_c00042{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00042{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00042{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mab_c00042{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m62_c00042{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4_c00042{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00042{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00042{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00042{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m38_c00042{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00042{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md4_c00042{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m61_c00042{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m67_c00042{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m39_c00042{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m27_c00042{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00042{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7_c00042{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00042{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.maf_c00042{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2_c00042{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m70_c00042{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00042{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m78_c00042{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.maa_c00042{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m63_c00042{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00042{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00042{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me_c00042{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00042{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md5_c00042{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00042{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00042{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6_c00042{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00042{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00042{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00042{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00042{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00042{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m12_c00042{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m72_c00042{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m74_c00042{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m51_c00042{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m88_c00042{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.me2_c00042{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m57_c00042{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00042{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00042{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m18_c00042{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md7_c00042{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.meb_c00042{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mee_c00042{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00042{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m36_c00042{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m94_c00042{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00042{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m42_c00042{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00042{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00042{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m103_c00042{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00042{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m14_c00042{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00042{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m84_c00042{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.med_c00042{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00042{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me4_c00042{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m83_c00042{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m104_c00042{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00042{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00042{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00042{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00042{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m53_c00042{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m92_c00042{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m93_c00042{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3_c00042{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m34_c00042{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00042{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m91_c00042{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00042{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m66_c00042{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m45_c00042{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m25_c00042{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m79_c00042{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mec_c00042{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00042{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00042{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m22_c00042{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m97_c00042{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.md1_c00042{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m15_c00042{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m95_c00042{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m40_c00042{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mca_c00042{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m76_c00042{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m21_c00042{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00042{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mae_c00042{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m10_c00042{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m101_c00042{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00042{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00042{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m49_c00042{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00042{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m29_c00042{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00042{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m85_c00042{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00042{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m87_c00042{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m98_c00042{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m65_c00042{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00042{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00042{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00042{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00042{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m16_c00042{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00042{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb_c00042{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00042{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00042{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m107_c00042{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m54_c00042{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mad_c00042{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m41_c00042{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00042{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m59_c00042{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mda_c00042{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me9_c00042{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00042{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00042{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me1_c00042{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m102_c00042{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);}
.m55_c00042{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m31_c00042{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md8_c00042{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00042{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md9_c00042{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00042{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00042{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00042{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m105_c00042{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m35_c00042{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00042{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mce_c00042{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00042{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00042{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00042{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m28_c00042{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mff_c00042{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md2_c00042{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m71_c00042{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00042{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00042{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m68_c00042{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00042{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00042{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00042{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00042{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m32_c00042{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m46_c00042{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m47_c00042{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00042{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00042{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00042{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00042{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00042{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00042{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m99_c00042{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.me5_c00042{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m50_c00042{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00042{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.ma_c00042{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m33_c00042{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m110_c00042{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m0_c00042{transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls0_c00042{letter-spacing:0.000000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{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__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00042{word-spacing:-8.278351px;}
.ws0_c00042{word-spacing:-7.375000px;}
.ws6_c00042{word-spacing:-7.333333px;}
.wsb_c00042{word-spacing:0.000000px;}
.ws1_c00042{word-spacing:0.653631px;}
.ws7_c00042{word-spacing:1.375000px;}
.ws2_c00042{word-spacing:2.266504px;}
.ws8_c00042{word-spacing:6.040724px;}
.ws4_c00042{word-spacing:16.375000px;}
.ws3_c00042{word-spacing:17.294118px;}
.wsa_c00042{word-spacing:269.595506px;}
.ws9_c00042{word-spacing:1310.044944px;}
.fc0_c00042{color:transparent;}
.fs4_c00042{font-size:30.000000px;}
.fs7_c00042{font-size:48.000000px;}
.fs6_c00042{font-size:54.000000px;}
.fs2_c00042{font-size:60.000000px;}
.fs1_c00042{font-size:66.000000px;}
.fs3_c00042{font-size:72.000000px;}
.fs0_c00042{font-size:78.000000px;}
.fs5_c00042{font-size:114.000000px;}
.y0_c00042{bottom:0.000000px;}
.y6b_c00042{bottom:163.500000px;}
.y36_c00042{bottom:178.200000px;}
.y6a_c00042{bottom:180.300000px;}
.y38_c00042{bottom:184.350000px;}
.y69_c00042{bottom:195.450000px;}
.y35_c00042{bottom:196.500000px;}
.y68_c00042{bottom:206.250000px;}
.y34_c00042{bottom:215.250000px;}
.y67_c00042{bottom:224.250000px;}
.y33_c00042{bottom:232.500000px;}
.y66_c00042{bottom:236.550000px;}
.y65_c00042{bottom:249.450000px;}
.y32_c00042{bottom:250.800000px;}
.y64_c00042{bottom:266.700000px;}
.y31_c00042{bottom:268.500000px;}
.y63_c00042{bottom:279.300000px;}
.y30_c00042{bottom:294.300000px;}
.y62_c00042{bottom:295.500000px;}
.y61_c00042{bottom:309.900000px;}
.y2f_c00042{bottom:312.000000px;}
.y60_c00042{bottom:324.600000px;}
.y2e_c00042{bottom:330.300000px;}
.y5f_c00042{bottom:338.700000px;}
.y2d_c00042{bottom:348.000000px;}
.y37_c00042{bottom:351.300000px;}
.y5e_c00042{bottom:353.100000px;}
.y2c_c00042{bottom:366.300000px;}
.y5d_c00042{bottom:367.500000px;}
.y2b_c00042{bottom:384.300000px;}
.y2a_c00042{bottom:402.000000px;}
.y29_c00042{bottom:420.000000px;}
.y5c_c00042{bottom:420.750000px;}
.y28_c00042{bottom:437.700000px;}
.y5b_c00042{bottom:438.750000px;}
.y27_c00042{bottom:456.000000px;}
.y5a_c00042{bottom:456.750000px;}
.y26_c00042{bottom:474.000000px;}
.y59_c00042{bottom:474.450000px;}
.y25_c00042{bottom:492.000000px;}
.y58_c00042{bottom:492.450000px;}
.y24_c00042{bottom:509.700000px;}
.y57_c00042{bottom:510.450000px;}
.y23_c00042{bottom:527.700000px;}
.y56_c00042{bottom:528.150000px;}
.y22_c00042{bottom:545.700000px;}
.y55_c00042{bottom:548.250000px;}
.y21_c00042{bottom:564.000000px;}
.y54_c00042{bottom:568.800000px;}
.y20_c00042{bottom:581.700000px;}
.y53_c00042{bottom:586.800000px;}
.y1f_c00042{bottom:599.700000px;}
.y52_c00042{bottom:604.500000px;}
.y1e_c00042{bottom:618.000000px;}
.y51_c00042{bottom:625.800000px;}
.y1d_c00042{bottom:636.000000px;}
.y50_c00042{bottom:644.100000px;}
.y1c_c00042{bottom:654.000000px;}
.y4f_c00042{bottom:662.100000px;}
.y1b_c00042{bottom:672.000000px;}
.y4e_c00042{bottom:680.100000px;}
.y1a_c00042{bottom:690.000000px;}
.y4d_c00042{bottom:698.100000px;}
.y19_c00042{bottom:707.700000px;}
.y4c_c00042{bottom:716.100000px;}
.y18_c00042{bottom:725.700000px;}
.y4b_c00042{bottom:736.650000px;}
.y17_c00042{bottom:752.700000px;}
.y4a_c00042{bottom:755.700000px;}
.y16_c00042{bottom:771.000000px;}
.y49_c00042{bottom:776.850000px;}
.y15_c00042{bottom:789.000000px;}
.y48_c00042{bottom:795.900000px;}
.y14_c00042{bottom:807.000000px;}
.y47_c00042{bottom:813.900000px;}
.y13_c00042{bottom:825.000000px;}
.y46_c00042{bottom:831.900000px;}
.y12_c00042{bottom:843.000000px;}
.y45_c00042{bottom:849.900000px;}
.y11_c00042{bottom:861.300000px;}
.y10_c00042{bottom:879.300000px;}
.y44_c00042{bottom:889.500000px;}
.yf_c00042{bottom:897.000000px;}
.ye_c00042{bottom:915.000000px;}
.y43_c00042{bottom:929.850000px;}
.yd_c00042{bottom:933.000000px;}
.y42_c00042{bottom:947.850000px;}
.yc_c00042{bottom:951.000000px;}
.y41_c00042{bottom:965.850000px;}
.yb_c00042{bottom:969.000000px;}
.y40_c00042{bottom:983.850000px;}
.ya_c00042{bottom:987.000000px;}
.y3f_c00042{bottom:1001.550000px;}
.y9_c00042{bottom:1004.700000px;}
.y3e_c00042{bottom:1019.550000px;}
.y8_c00042{bottom:1022.700000px;}
.y3d_c00042{bottom:1037.550000px;}
.y7_c00042{bottom:1040.700000px;}
.y3c_c00042{bottom:1055.550000px;}
.y6_c00042{bottom:1058.700000px;}
.y3b_c00042{bottom:1073.550000px;}
.y5_c00042{bottom:1076.700000px;}
.y4_c00042{bottom:1094.700000px;}
.y3a_c00042{bottom:1095.900000px;}
.y3_c00042{bottom:1112.700000px;}
.y39_c00042{bottom:1113.900000px;}
.y2_c00042{bottom:1140.600000px;}
.y1_c00042{bottom:1140.900000px;}
.h6_c00042{height:30.000000px;}
.h9_c00042{height:48.000000px;}
.h8_c00042{height:54.000000px;}
.h4_c00042{height:60.000000px;}
.h3_c00042{height:66.000000px;}
.h5_c00042{height:72.000000px;}
.h2_c00042{height:78.000000px;}
.h7_c00042{height:114.000000px;}
.h0_c00042{height:1271.160094px;}
.h1_c00042{height:1271.250000px;}
.w0_c00042{width:948.600036px;}
.w1_c00042{width:948.750000px;}
.x0_c00042{left:0.000000px;}
.xaf_c00042{left:82.350000px;}
.xac_c00042{left:84.000000px;}
.xa6_c00042{left:85.050000px;}
.x96_c00042{left:86.100000px;}
.x92_c00042{left:87.450000px;}
.x84_c00042{left:88.800000px;}
.x7c_c00042{left:90.150000px;}
.x67_c00042{left:91.350000px;}
.x45_c00042{left:92.400000px;}
.x2c_c00042{left:93.900000px;}
.x16_c00042{left:95.250000px;}
.xb_c00042{left:96.750000px;}
.x9f_c00042{left:103.650000px;}
.xb0_c00042{left:104.700000px;}
.x94_c00042{left:107.400000px;}
.x77_c00042{left:109.500000px;}
.x90_c00042{left:111.300000px;}
.x3_c00042{left:114.450000px;}
.x6a_c00042{left:118.050000px;}
.x8b_c00042{left:120.750000px;}
.xa9_c00042{left:122.850000px;}
.xa7_c00042{left:123.900000px;}
.xc_c00042{left:125.250000px;}
.x8a_c00042{left:126.450000px;}
.x7d_c00042{left:128.250000px;}
.x2d_c00042{left:130.200000px;}
.x71_c00042{left:132.600000px;}
.x89_c00042{left:134.400000px;}
.x27_c00042{left:135.750000px;}
.x7e_c00042{left:138.000000px;}
.x6b_c00042{left:139.350000px;}
.x9b_c00042{left:140.550000px;}
.x1d_c00042{left:142.350000px;}
.x3d_c00042{left:143.700000px;}
.xa8_c00042{left:145.500000px;}
.x49_c00042{left:148.800000px;}
.x5b_c00042{left:149.850000px;}
.x2e_c00042{left:151.500000px;}
.x9c_c00042{left:153.150000px;}
.x4f_c00042{left:154.350000px;}
.x28_c00042{left:157.350000px;}
.x32_c00042{left:159.750000px;}
.x46_c00042{left:161.550000px;}
.xa3_c00042{left:163.200000px;}
.x91_c00042{left:165.600000px;}
.x5e_c00042{left:168.300000px;}
.xd_c00042{left:170.250000px;}
.x97_c00042{left:171.450000px;}
.x3e_c00042{left:172.500000px;}
.x4_c00042{left:174.150000px;}
.x33_c00042{left:176.250000px;}
.x17_c00042{left:177.300000px;}
.x5c_c00042{left:178.650000px;}
.x2f_c00042{left:180.300000px;}
.x81_c00042{left:181.650000px;}
.xe_c00042{left:183.150000px;}
.x50_c00042{left:184.650000px;}
.x55_c00042{left:186.300000px;}
.xa4_c00042{left:187.650000px;}
.x82_c00042{left:190.350000px;}
.x63_c00042{left:192.450000px;}
.x5_c00042{left:194.250000px;}
.x1e_c00042{left:196.650000px;}
.xf_c00042{left:201.150000px;}
.x4a_c00042{left:203.550000px;}
.x1f_c00042{left:205.950000px;}
.x8c_c00042{left:207.450000px;}
.x56_c00042{left:208.650000px;}
.x72_c00042{left:210.750000px;}
.x4b_c00042{left:211.800000px;}
.x78_c00042{left:213.150000px;}
.x34_c00042{left:214.800000px;}
.x68_c00042{left:218.100000px;}
.x6e_c00042{left:220.200000px;}
.x20_c00042{left:222.450000px;}
.x47_c00042{left:223.800000px;}
.xaa_c00042{left:225.450000px;}
.x35_c00042{left:226.650000px;}
.x3f_c00042{left:230.400000px;}
.x39_c00042{left:232.650000px;}
.x98_c00042{left:234.450000px;}
.x75_c00042{left:236.250000px;}
.x57_c00042{left:237.750000px;}
.x5f_c00042{left:239.550000px;}
.xa0_c00042{left:242.550000px;}
.x18_c00042{left:245.400000px;}
.x6_c00042{left:246.750000px;}
.x8d_c00042{left:247.800000px;}
.xad_c00042{left:248.850000px;}
.x79_c00042{left:249.900000px;}
.x10_c00042{left:253.350000px;}
.xa2_c00042{left:255.750000px;}
.x21_c00042{left:257.400000px;}
.x58_c00042{left:261.450000px;}
.x11_c00042{left:263.100000px;}
.x87_c00042{left:264.150000px;}
.x64_c00042{left:265.800000px;}
.x29_c00042{left:267.900000px;}
.x30_c00042{left:269.850000px;}
.x7_c00042{left:271.200000px;}
.x9d_c00042{left:272.850000px;}
.x5d_c00042{left:275.550000px;}
.x65_c00042{left:277.350000px;}
.x51_c00042{left:279.000000px;}
.x6c_c00042{left:281.250000px;}
.x73_c00042{left:282.450000px;}
.x7a_c00042{left:283.800000px;}
.x93_c00042{left:285.150000px;}
.x59_c00042{left:286.950000px;}
.x4c_c00042{left:289.200000px;}
.x40_c00042{left:290.850000px;}
.x12_c00042{left:292.950000px;}
.x19_c00042{left:295.500000px;}
.x83_c00042{left:297.300000px;}
.x85_c00042{left:298.650000px;}
.xa1_c00042{left:300.450000px;}
.x2a_c00042{left:303.600000px;}
.x3a_c00042{left:305.100000px;}
.x6f_c00042{left:308.400000px;}
.xab_c00042{left:311.100000px;}
.x36_c00042{left:312.300000px;}
.x8e_c00042{left:313.350000px;}
.x22_c00042{left:317.100000px;}
.x52_c00042{left:318.300000px;}
.x6d_c00042{left:320.550000px;}
.x13_c00042{left:322.800000px;}
.x66_c00042{left:324.600000px;}
.x76_c00042{left:325.650000px;}
.x8_c00042{left:326.700000px;}
.x1a_c00042{left:329.700000px;}
.x8f_c00042{left:331.050000px;}
.x41_c00042{left:333.300000px;}
.x23_c00042{left:335.100000px;}
.x53_c00042{left:338.100000px;}
.x2b_c00042{left:341.100000px;}
.x1_c00042{left:343.050000px;}
.xae_c00042{left:344.850000px;}
.x9_c00042{left:347.250000px;}
.x31_c00042{left:348.300000px;}
.x37_c00042{left:351.150000px;}
.x42_c00042{left:353.400000px;}
.x7f_c00042{left:354.750000px;}
.x4d_c00042{left:358.350000px;}
.x5a_c00042{left:360.000000px;}
.x74_c00042{left:361.050000px;}
.x60_c00042{left:363.000000px;}
.xa_c00042{left:364.950000px;}
.x9e_c00042{left:367.200000px;}
.x3b_c00042{left:368.400000px;}
.x99_c00042{left:370.200000px;}
.x7b_c00042{left:371.250000px;}
.x24_c00042{left:373.200000px;}
.x80_c00042{left:375.600000px;}
.x14_c00042{left:377.550000px;}
.x4e_c00042{left:378.900000px;}
.x43_c00042{left:381.450000px;}
.x69_c00042{left:382.650000px;}
.x1b_c00042{left:384.750000px;}
.x25_c00042{left:385.800000px;}
.x9a_c00042{left:388.200000px;}
.x38_c00042{left:390.750000px;}
.x3c_c00042{left:395.100000px;}
.x54_c00042{left:396.150000px;}
.x48_c00042{left:397.200000px;}
.xa5_c00042{left:399.000000px;}
.x88_c00042{left:400.650000px;}
.x61_c00042{left:402.300000px;}
.x26_c00042{left:404.550000px;}
.x70_c00042{left:405.600000px;}
.x1c_c00042{left:407.400000px;}
.x44_c00042{left:409.200000px;}
.x86_c00042{left:412.950000px;}
.x95_c00042{left:414.000000px;}
.x15_c00042{left:415.350000px;}
.x62_c00042{left:419.250000px;}
.xb1_c00042{left:432.750000px;}
.xb2_c00042{left:434.550000px;}
.x154_c00042{left:443.550000px;}
.x13b_c00042{left:444.900000px;}
.x135_c00042{left:445.950000px;}
.x12c_c00042{left:447.450000px;}
.x11d_c00042{left:449.400000px;}
.x114_c00042{left:450.900000px;}
.x108_c00042{left:452.250000px;}
.xe5_c00042{left:453.600000px;}
.xc8_c00042{left:454.650000px;}
.xb3_c00042{left:456.150000px;}
.x144_c00042{left:459.750000px;}
.xfb_c00042{left:461.550000px;}
.x12a_c00042{left:466.500000px;}
.x141_c00042{left:468.150000px;}
.x100_c00042{left:469.800000px;}
.xc1_c00042{left:473.100000px;}
.x14a_c00042{left:475.800000px;}
.x12d_c00042{left:477.000000px;}
.x157_c00042{left:478.800000px;}
.xe6_c00042{left:480.900000px;}
.xfc_c00042{left:482.850000px;}
.x120_c00042{left:484.950000px;}
.x151_c00042{left:486.000000px;}
.x155_c00042{left:487.200000px;}
.xba_c00042{left:489.000000px;}
.xc9_c00042{left:490.650000px;}
.xdf_c00042{left:492.000000px;}
.x11a_c00042{left:493.950000px;}
.x119_c00042{left:495.600000px;}
.x115_c00042{left:497.850000px;}
.xf9_c00042{left:499.200000px;}
.x13a_c00042{left:500.400000px;}
.x14d_c00042{left:501.750000px;}
.xda_c00042{left:502.800000px;}
.x13c_c00042{left:505.350000px;}
.xb4_c00042{left:506.850000px;}
.xc2_c00042{left:508.050000px;}
.x10d_c00042{left:509.250000px;}
.x11e_c00042{left:510.900000px;}
.x101_c00042{left:511.950000px;}
.xf1_c00042{left:513.300000px;}
.xca_c00042{left:514.350000px;}
.xfa_c00042{left:516.450000px;}
.xbb_c00042{left:517.800000px;}
.xeb_c00042{left:520.650000px;}
.xe0_c00042{left:522.300000px;}
.xd2_c00042{left:524.700000px;}
.x112_c00042{left:526.650000px;}
.xb5_c00042{left:532.350000px;}
.x126_c00042{left:534.450000px;}
.xf2_c00042{left:535.950000px;}
.x12e_c00042{left:537.150000px;}
.x145_c00042{left:540.000000px;}
.x152_c00042{left:542.250000px;}
.x13d_c00042{left:543.450000px;}
.xe1_c00042{left:544.650000px;}
.xcb_c00042{left:546.450000px;}
.x11f_c00042{left:549.750000px;}
.x121_c00042{left:550.800000px;}
.xfd_c00042{left:553.800000px;}
.xec_c00042{left:556.350000px;}
.xd3_c00042{left:559.950000px;}
.xe7_c00042{left:562.350000px;}
.x116_c00042{left:564.150000px;}
.x12b_c00042{left:567.300000px;}
.x138_c00042{left:570.300000px;}
.x109_c00042{left:571.350000px;}
.x156_c00042{left:572.850000px;}
.x146_c00042{left:573.900000px;}
.xbc_c00042{left:575.700000px;}
.x130_c00042{left:577.650000px;}
.x102_c00042{left:579.000000px;}
.xd4_c00042{left:580.800000px;}
.x136_c00042{left:582.300000px;}
.x14e_c00042{left:583.350000px;}
.x10e_c00042{left:584.850000px;}
.x122_c00042{left:586.500000px;}
.xdb_c00042{left:589.500000px;}
.x117_c00042{left:590.850000px;}
.x125_c00042{left:593.550000px;}
.x129_c00042{left:595.350000px;}
.xcc_c00042{left:597.150000px;}
.xb6_c00042{left:598.650000px;}
.xc3_c00042{left:600.900000px;}
.x14f_c00042{left:603.900000px;}
.xf3_c00042{left:605.700000px;}
.x13e_c00042{left:606.750000px;}
.x103_c00042{left:609.600000px;}
.x14b_c00042{left:612.450000px;}
.x10a_c00042{left:615.300000px;}
.xbd_c00042{left:617.100000px;}
.xed_c00042{left:619.050000px;}
.xb7_c00042{left:621.750000px;}
.x137_c00042{left:624.750000px;}
.x131_c00042{left:626.250000px;}
.x12f_c00042{left:627.450000px;}
.xbe_c00042{left:628.950000px;}
.x134_c00042{left:630.300000px;}
.x139_c00042{left:632.250000px;}
.x104_c00042{left:634.050000px;}
.xdc_c00042{left:637.800000px;}
.x149_c00042{left:639.300000px;}
.x132_c00042{left:640.350000px;}
.x14c_c00042{left:643.800000px;}
.xbf_c00042{left:645.900000px;}
.xee_c00042{left:648.150000px;}
.x10b_c00042{left:650.250000px;}
.xe8_c00042{left:651.900000px;}
.xd5_c00042{left:653.850000px;}
.xfe_c00042{left:656.400000px;}
.x105_c00042{left:657.450000px;}
.xf4_c00042{left:660.450000px;}
.x123_c00042{left:661.500000px;}
.x118_c00042{left:662.550000px;}
.x127_c00042{left:665.850000px;}
.xc4_c00042{left:668.550000px;}
.xe2_c00042{left:670.050000px;}
.xb8_c00042{left:672.150000px;}
.x153_c00042{left:673.200000px;}
.xcd_c00042{left:677.100000px;}
.x11b_c00042{left:678.600000px;}
.xe9_c00042{left:682.200000px;}
.x13f_c00042{left:684.150000px;}
.xff_c00042{left:685.500000px;}
.xc0_c00042{left:686.550000px;}
.x142_c00042{left:688.350000px;}
.xd6_c00042{left:689.550000px;}
.x10f_c00042{left:692.100000px;}
.xf5_c00042{left:695.700000px;}
.xce_c00042{left:697.650000px;}
.xb9_c00042{left:699.900000px;}
.xdd_c00042{left:702.600000px;}
.xd7_c00042{left:703.950000px;}
.x150_c00042{left:706.800000px;}
.xc5_c00042{left:708.450000px;}
.x143_c00042{left:709.950000px;}
.x133_c00042{left:711.600000px;}
.xf6_c00042{left:713.400000px;}
.x110_c00042{left:714.450000px;}
.xe3_c00042{left:716.100000px;}
.xd8_c00042{left:718.350000px;}
.x147_c00042{left:719.400000px;}
.xde_c00042{left:721.350000px;}
.xc6_c00042{left:723.900000px;}
.xcf_c00042{left:725.700000px;}
.x106_c00042{left:727.650000px;}
.xd9_c00042{left:729.900000px;}
.x140_c00042{left:732.300000px;}
.x124_c00042{left:733.500000px;}
.xe4_c00042{left:735.900000px;}
.x148_c00042{left:738.450000px;}
.x113_c00042{left:739.650000px;}
.xc7_c00042{left:743.400000px;}
.x111_c00042{left:744.750000px;}
.x107_c00042{left:748.950000px;}
.xef_c00042{left:750.150000px;}
.xd0_c00042{left:757.350000px;}
.x128_c00042{left:758.700000px;}
.xf7_c00042{left:760.200000px;}
.x11c_c00042{left:764.400000px;}
.xf0_c00042{left:767.100000px;}
.xd1_c00042{left:771.000000px;}
.x10c_c00042{left:773.400000px;}
.xea_c00042{left:774.450000px;}
.x2_c00042{left:776.550000px;}
.xf8_c00042{left:779.700000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ws5_c00042{word-spacing:-7.358534pt;}
.ws0_c00042{word-spacing:-6.555556pt;}
.ws6_c00042{word-spacing:-6.518519pt;}
.wsb_c00042{word-spacing:0.000000pt;}
.ws1_c00042{word-spacing:0.581006pt;}
.ws7_c00042{word-spacing:1.222222pt;}
.ws2_c00042{word-spacing:2.014670pt;}
.ws8_c00042{word-spacing:5.369532pt;}
.ws4_c00042{word-spacing:14.555556pt;}
.ws3_c00042{word-spacing:15.372549pt;}
.wsa_c00042{word-spacing:239.640449pt;}
.ws9_c00042{word-spacing:1164.484395pt;}
.fs4_c00042{font-size:26.666667pt;}
.fs7_c00042{font-size:42.666667pt;}
.fs6_c00042{font-size:48.000000pt;}
.fs2_c00042{font-size:53.333333pt;}
.fs1_c00042{font-size:58.666667pt;}
.fs3_c00042{font-size:64.000000pt;}
.fs0_c00042{font-size:69.333333pt;}
.fs5_c00042{font-size:101.333333pt;}
.y0_c00042{bottom:0.000000pt;}
.y6b_c00042{bottom:145.333333pt;}
.y36_c00042{bottom:158.400000pt;}
.y6a_c00042{bottom:160.266667pt;}
.y38_c00042{bottom:163.866667pt;}
.y69_c00042{bottom:173.733333pt;}
.y35_c00042{bottom:174.666667pt;}
.y68_c00042{bottom:183.333333pt;}
.y34_c00042{bottom:191.333333pt;}
.y67_c00042{bottom:199.333333pt;}
.y33_c00042{bottom:206.666667pt;}
.y66_c00042{bottom:210.266667pt;}
.y65_c00042{bottom:221.733333pt;}
.y32_c00042{bottom:222.933333pt;}
.y64_c00042{bottom:237.066667pt;}
.y31_c00042{bottom:238.666667pt;}
.y63_c00042{bottom:248.266667pt;}
.y30_c00042{bottom:261.600000pt;}
.y62_c00042{bottom:262.666667pt;}
.y61_c00042{bottom:275.466667pt;}
.y2f_c00042{bottom:277.333333pt;}
.y60_c00042{bottom:288.533333pt;}
.y2e_c00042{bottom:293.600000pt;}
.y5f_c00042{bottom:301.066667pt;}
.y2d_c00042{bottom:309.333333pt;}
.y37_c00042{bottom:312.266667pt;}
.y5e_c00042{bottom:313.866667pt;}
.y2c_c00042{bottom:325.600000pt;}
.y5d_c00042{bottom:326.666667pt;}
.y2b_c00042{bottom:341.600000pt;}
.y2a_c00042{bottom:357.333333pt;}
.y29_c00042{bottom:373.333333pt;}
.y5c_c00042{bottom:374.000000pt;}
.y28_c00042{bottom:389.066667pt;}
.y5b_c00042{bottom:390.000000pt;}
.y27_c00042{bottom:405.333333pt;}
.y5a_c00042{bottom:406.000000pt;}
.y26_c00042{bottom:421.333333pt;}
.y59_c00042{bottom:421.733333pt;}
.y25_c00042{bottom:437.333333pt;}
.y58_c00042{bottom:437.733333pt;}
.y24_c00042{bottom:453.066667pt;}
.y57_c00042{bottom:453.733333pt;}
.y23_c00042{bottom:469.066667pt;}
.y56_c00042{bottom:469.466667pt;}
.y22_c00042{bottom:485.066667pt;}
.y55_c00042{bottom:487.333333pt;}
.y21_c00042{bottom:501.333333pt;}
.y54_c00042{bottom:505.600000pt;}
.y20_c00042{bottom:517.066667pt;}
.y53_c00042{bottom:521.600000pt;}
.y1f_c00042{bottom:533.066667pt;}
.y52_c00042{bottom:537.333333pt;}
.y1e_c00042{bottom:549.333333pt;}
.y51_c00042{bottom:556.266667pt;}
.y1d_c00042{bottom:565.333333pt;}
.y50_c00042{bottom:572.533333pt;}
.y1c_c00042{bottom:581.333333pt;}
.y4f_c00042{bottom:588.533333pt;}
.y1b_c00042{bottom:597.333333pt;}
.y4e_c00042{bottom:604.533333pt;}
.y1a_c00042{bottom:613.333333pt;}
.y4d_c00042{bottom:620.533333pt;}
.y19_c00042{bottom:629.066667pt;}
.y4c_c00042{bottom:636.533333pt;}
.y18_c00042{bottom:645.066667pt;}
.y4b_c00042{bottom:654.800000pt;}
.y17_c00042{bottom:669.066667pt;}
.y4a_c00042{bottom:671.733333pt;}
.y16_c00042{bottom:685.333333pt;}
.y49_c00042{bottom:690.533333pt;}
.y15_c00042{bottom:701.333333pt;}
.y48_c00042{bottom:707.466667pt;}
.y14_c00042{bottom:717.333333pt;}
.y47_c00042{bottom:723.466667pt;}
.y13_c00042{bottom:733.333333pt;}
.y46_c00042{bottom:739.466667pt;}
.y12_c00042{bottom:749.333333pt;}
.y45_c00042{bottom:755.466667pt;}
.y11_c00042{bottom:765.600000pt;}
.y10_c00042{bottom:781.600000pt;}
.y44_c00042{bottom:790.666667pt;}
.yf_c00042{bottom:797.333333pt;}
.ye_c00042{bottom:813.333333pt;}
.y43_c00042{bottom:826.533333pt;}
.yd_c00042{bottom:829.333333pt;}
.y42_c00042{bottom:842.533333pt;}
.yc_c00042{bottom:845.333333pt;}
.y41_c00042{bottom:858.533333pt;}
.yb_c00042{bottom:861.333333pt;}
.y40_c00042{bottom:874.533333pt;}
.ya_c00042{bottom:877.333333pt;}
.y3f_c00042{bottom:890.266667pt;}
.y9_c00042{bottom:893.066667pt;}
.y3e_c00042{bottom:906.266667pt;}
.y8_c00042{bottom:909.066667pt;}
.y3d_c00042{bottom:922.266667pt;}
.y7_c00042{bottom:925.066667pt;}
.y3c_c00042{bottom:938.266667pt;}
.y6_c00042{bottom:941.066667pt;}
.y3b_c00042{bottom:954.266667pt;}
.y5_c00042{bottom:957.066667pt;}
.y4_c00042{bottom:973.066667pt;}
.y3a_c00042{bottom:974.133333pt;}
.y3_c00042{bottom:989.066667pt;}
.y39_c00042{bottom:990.133333pt;}
.y2_c00042{bottom:1013.866667pt;}
.y1_c00042{bottom:1014.133333pt;}
.h6_c00042{height:26.666667pt;}
.h9_c00042{height:42.666667pt;}
.h8_c00042{height:48.000000pt;}
.h4_c00042{height:53.333333pt;}
.h3_c00042{height:58.666667pt;}
.h5_c00042{height:64.000000pt;}
.h2_c00042{height:69.333333pt;}
.h7_c00042{height:101.333333pt;}
.h0_c00042{height:1129.920084pt;}
.h1_c00042{height:1130.000000pt;}
.w0_c00042{width:843.200032pt;}
.w1_c00042{width:843.333333pt;}
.x0_c00042{left:0.000000pt;}
.xaf_c00042{left:73.200000pt;}
.xac_c00042{left:74.666667pt;}
.xa6_c00042{left:75.600000pt;}
.x96_c00042{left:76.533333pt;}
.x92_c00042{left:77.733333pt;}
.x84_c00042{left:78.933333pt;}
.x7c_c00042{left:80.133333pt;}
.x67_c00042{left:81.200000pt;}
.x45_c00042{left:82.133333pt;}
.x2c_c00042{left:83.466667pt;}
.x16_c00042{left:84.666667pt;}
.xb_c00042{left:86.000000pt;}
.x9f_c00042{left:92.133333pt;}
.xb0_c00042{left:93.066667pt;}
.x94_c00042{left:95.466667pt;}
.x77_c00042{left:97.333333pt;}
.x90_c00042{left:98.933333pt;}
.x3_c00042{left:101.733333pt;}
.x6a_c00042{left:104.933333pt;}
.x8b_c00042{left:107.333333pt;}
.xa9_c00042{left:109.200000pt;}
.xa7_c00042{left:110.133333pt;}
.xc_c00042{left:111.333333pt;}
.x8a_c00042{left:112.400000pt;}
.x7d_c00042{left:114.000000pt;}
.x2d_c00042{left:115.733333pt;}
.x71_c00042{left:117.866667pt;}
.x89_c00042{left:119.466667pt;}
.x27_c00042{left:120.666667pt;}
.x7e_c00042{left:122.666667pt;}
.x6b_c00042{left:123.866667pt;}
.x9b_c00042{left:124.933333pt;}
.x1d_c00042{left:126.533333pt;}
.x3d_c00042{left:127.733333pt;}
.xa8_c00042{left:129.333333pt;}
.x49_c00042{left:132.266667pt;}
.x5b_c00042{left:133.200000pt;}
.x2e_c00042{left:134.666667pt;}
.x9c_c00042{left:136.133333pt;}
.x4f_c00042{left:137.200000pt;}
.x28_c00042{left:139.866667pt;}
.x32_c00042{left:142.000000pt;}
.x46_c00042{left:143.600000pt;}
.xa3_c00042{left:145.066667pt;}
.x91_c00042{left:147.200000pt;}
.x5e_c00042{left:149.600000pt;}
.xd_c00042{left:151.333333pt;}
.x97_c00042{left:152.400000pt;}
.x3e_c00042{left:153.333333pt;}
.x4_c00042{left:154.800000pt;}
.x33_c00042{left:156.666667pt;}
.x17_c00042{left:157.600000pt;}
.x5c_c00042{left:158.800000pt;}
.x2f_c00042{left:160.266667pt;}
.x81_c00042{left:161.466667pt;}
.xe_c00042{left:162.800000pt;}
.x50_c00042{left:164.133333pt;}
.x55_c00042{left:165.600000pt;}
.xa4_c00042{left:166.800000pt;}
.x82_c00042{left:169.200000pt;}
.x63_c00042{left:171.066667pt;}
.x5_c00042{left:172.666667pt;}
.x1e_c00042{left:174.800000pt;}
.xf_c00042{left:178.800000pt;}
.x4a_c00042{left:180.933333pt;}
.x1f_c00042{left:183.066667pt;}
.x8c_c00042{left:184.400000pt;}
.x56_c00042{left:185.466667pt;}
.x72_c00042{left:187.333333pt;}
.x4b_c00042{left:188.266667pt;}
.x78_c00042{left:189.466667pt;}
.x34_c00042{left:190.933333pt;}
.x68_c00042{left:193.866667pt;}
.x6e_c00042{left:195.733333pt;}
.x20_c00042{left:197.733333pt;}
.x47_c00042{left:198.933333pt;}
.xaa_c00042{left:200.400000pt;}
.x35_c00042{left:201.466667pt;}
.x3f_c00042{left:204.800000pt;}
.x39_c00042{left:206.800000pt;}
.x98_c00042{left:208.400000pt;}
.x75_c00042{left:210.000000pt;}
.x57_c00042{left:211.333333pt;}
.x5f_c00042{left:212.933333pt;}
.xa0_c00042{left:215.600000pt;}
.x18_c00042{left:218.133333pt;}
.x6_c00042{left:219.333333pt;}
.x8d_c00042{left:220.266667pt;}
.xad_c00042{left:221.200000pt;}
.x79_c00042{left:222.133333pt;}
.x10_c00042{left:225.200000pt;}
.xa2_c00042{left:227.333333pt;}
.x21_c00042{left:228.800000pt;}
.x58_c00042{left:232.400000pt;}
.x11_c00042{left:233.866667pt;}
.x87_c00042{left:234.800000pt;}
.x64_c00042{left:236.266667pt;}
.x29_c00042{left:238.133333pt;}
.x30_c00042{left:239.866667pt;}
.x7_c00042{left:241.066667pt;}
.x9d_c00042{left:242.533333pt;}
.x5d_c00042{left:244.933333pt;}
.x65_c00042{left:246.533333pt;}
.x51_c00042{left:248.000000pt;}
.x6c_c00042{left:250.000000pt;}
.x73_c00042{left:251.066667pt;}
.x7a_c00042{left:252.266667pt;}
.x93_c00042{left:253.466667pt;}
.x59_c00042{left:255.066667pt;}
.x4c_c00042{left:257.066667pt;}
.x40_c00042{left:258.533333pt;}
.x12_c00042{left:260.400000pt;}
.x19_c00042{left:262.666667pt;}
.x83_c00042{left:264.266667pt;}
.x85_c00042{left:265.466667pt;}
.xa1_c00042{left:267.066667pt;}
.x2a_c00042{left:269.866667pt;}
.x3a_c00042{left:271.200000pt;}
.x6f_c00042{left:274.133333pt;}
.xab_c00042{left:276.533333pt;}
.x36_c00042{left:277.600000pt;}
.x8e_c00042{left:278.533333pt;}
.x22_c00042{left:281.866667pt;}
.x52_c00042{left:282.933333pt;}
.x6d_c00042{left:284.933333pt;}
.x13_c00042{left:286.933333pt;}
.x66_c00042{left:288.533333pt;}
.x76_c00042{left:289.466667pt;}
.x8_c00042{left:290.400000pt;}
.x1a_c00042{left:293.066667pt;}
.x8f_c00042{left:294.266667pt;}
.x41_c00042{left:296.266667pt;}
.x23_c00042{left:297.866667pt;}
.x53_c00042{left:300.533333pt;}
.x2b_c00042{left:303.200000pt;}
.x1_c00042{left:304.933333pt;}
.xae_c00042{left:306.533333pt;}
.x9_c00042{left:308.666667pt;}
.x31_c00042{left:309.600000pt;}
.x37_c00042{left:312.133333pt;}
.x42_c00042{left:314.133333pt;}
.x7f_c00042{left:315.333333pt;}
.x4d_c00042{left:318.533333pt;}
.x5a_c00042{left:320.000000pt;}
.x74_c00042{left:320.933333pt;}
.x60_c00042{left:322.666667pt;}
.xa_c00042{left:324.400000pt;}
.x9e_c00042{left:326.400000pt;}
.x3b_c00042{left:327.466667pt;}
.x99_c00042{left:329.066667pt;}
.x7b_c00042{left:330.000000pt;}
.x24_c00042{left:331.733333pt;}
.x80_c00042{left:333.866667pt;}
.x14_c00042{left:335.600000pt;}
.x4e_c00042{left:336.800000pt;}
.x43_c00042{left:339.066667pt;}
.x69_c00042{left:340.133333pt;}
.x1b_c00042{left:342.000000pt;}
.x25_c00042{left:342.933333pt;}
.x9a_c00042{left:345.066667pt;}
.x38_c00042{left:347.333333pt;}
.x3c_c00042{left:351.200000pt;}
.x54_c00042{left:352.133333pt;}
.x48_c00042{left:353.066667pt;}
.xa5_c00042{left:354.666667pt;}
.x88_c00042{left:356.133333pt;}
.x61_c00042{left:357.600000pt;}
.x26_c00042{left:359.600000pt;}
.x70_c00042{left:360.533333pt;}
.x1c_c00042{left:362.133333pt;}
.x44_c00042{left:363.733333pt;}
.x86_c00042{left:367.066667pt;}
.x95_c00042{left:368.000000pt;}
.x15_c00042{left:369.200000pt;}
.x62_c00042{left:372.666667pt;}
.xb1_c00042{left:384.666667pt;}
.xb2_c00042{left:386.266667pt;}
.x154_c00042{left:394.266667pt;}
.x13b_c00042{left:395.466667pt;}
.x135_c00042{left:396.400000pt;}
.x12c_c00042{left:397.733333pt;}
.x11d_c00042{left:399.466667pt;}
.x114_c00042{left:400.800000pt;}
.x108_c00042{left:402.000000pt;}
.xe5_c00042{left:403.200000pt;}
.xc8_c00042{left:404.133333pt;}
.xb3_c00042{left:405.466667pt;}
.x144_c00042{left:408.666667pt;}
.xfb_c00042{left:410.266667pt;}
.x12a_c00042{left:414.666667pt;}
.x141_c00042{left:416.133333pt;}
.x100_c00042{left:417.600000pt;}
.xc1_c00042{left:420.533333pt;}
.x14a_c00042{left:422.933333pt;}
.x12d_c00042{left:424.000000pt;}
.x157_c00042{left:425.600000pt;}
.xe6_c00042{left:427.466667pt;}
.xfc_c00042{left:429.200000pt;}
.x120_c00042{left:431.066667pt;}
.x151_c00042{left:432.000000pt;}
.x155_c00042{left:433.066667pt;}
.xba_c00042{left:434.666667pt;}
.xc9_c00042{left:436.133333pt;}
.xdf_c00042{left:437.333333pt;}
.x11a_c00042{left:439.066667pt;}
.x119_c00042{left:440.533333pt;}
.x115_c00042{left:442.533333pt;}
.xf9_c00042{left:443.733333pt;}
.x13a_c00042{left:444.800000pt;}
.x14d_c00042{left:446.000000pt;}
.xda_c00042{left:446.933333pt;}
.x13c_c00042{left:449.200000pt;}
.xb4_c00042{left:450.533333pt;}
.xc2_c00042{left:451.600000pt;}
.x10d_c00042{left:452.666667pt;}
.x11e_c00042{left:454.133333pt;}
.x101_c00042{left:455.066667pt;}
.xf1_c00042{left:456.266667pt;}
.xca_c00042{left:457.200000pt;}
.xfa_c00042{left:459.066667pt;}
.xbb_c00042{left:460.266667pt;}
.xeb_c00042{left:462.800000pt;}
.xe0_c00042{left:464.266667pt;}
.xd2_c00042{left:466.400000pt;}
.x112_c00042{left:468.133333pt;}
.xb5_c00042{left:473.200000pt;}
.x126_c00042{left:475.066667pt;}
.xf2_c00042{left:476.400000pt;}
.x12e_c00042{left:477.466667pt;}
.x145_c00042{left:480.000000pt;}
.x152_c00042{left:482.000000pt;}
.x13d_c00042{left:483.066667pt;}
.xe1_c00042{left:484.133333pt;}
.xcb_c00042{left:485.733333pt;}
.x11f_c00042{left:488.666667pt;}
.x121_c00042{left:489.600000pt;}
.xfd_c00042{left:492.266667pt;}
.xec_c00042{left:494.533333pt;}
.xd3_c00042{left:497.733333pt;}
.xe7_c00042{left:499.866667pt;}
.x116_c00042{left:501.466667pt;}
.x12b_c00042{left:504.266667pt;}
.x138_c00042{left:506.933333pt;}
.x109_c00042{left:507.866667pt;}
.x156_c00042{left:509.200000pt;}
.x146_c00042{left:510.133333pt;}
.xbc_c00042{left:511.733333pt;}
.x130_c00042{left:513.466667pt;}
.x102_c00042{left:514.666667pt;}
.xd4_c00042{left:516.266667pt;}
.x136_c00042{left:517.600000pt;}
.x14e_c00042{left:518.533333pt;}
.x10e_c00042{left:519.866667pt;}
.x122_c00042{left:521.333333pt;}
.xdb_c00042{left:524.000000pt;}
.x117_c00042{left:525.200000pt;}
.x125_c00042{left:527.600000pt;}
.x129_c00042{left:529.200000pt;}
.xcc_c00042{left:530.800000pt;}
.xb6_c00042{left:532.133333pt;}
.xc3_c00042{left:534.133333pt;}
.x14f_c00042{left:536.800000pt;}
.xf3_c00042{left:538.400000pt;}
.x13e_c00042{left:539.333333pt;}
.x103_c00042{left:541.866667pt;}
.x14b_c00042{left:544.400000pt;}
.x10a_c00042{left:546.933333pt;}
.xbd_c00042{left:548.533333pt;}
.xed_c00042{left:550.266667pt;}
.xb7_c00042{left:552.666667pt;}
.x137_c00042{left:555.333333pt;}
.x131_c00042{left:556.666667pt;}
.x12f_c00042{left:557.733333pt;}
.xbe_c00042{left:559.066667pt;}
.x134_c00042{left:560.266667pt;}
.x139_c00042{left:562.000000pt;}
.x104_c00042{left:563.600000pt;}
.xdc_c00042{left:566.933333pt;}
.x149_c00042{left:568.266667pt;}
.x132_c00042{left:569.200000pt;}
.x14c_c00042{left:572.266667pt;}
.xbf_c00042{left:574.133333pt;}
.xee_c00042{left:576.133333pt;}
.x10b_c00042{left:578.000000pt;}
.xe8_c00042{left:579.466667pt;}
.xd5_c00042{left:581.200000pt;}
.xfe_c00042{left:583.466667pt;}
.x105_c00042{left:584.400000pt;}
.xf4_c00042{left:587.066667pt;}
.x123_c00042{left:588.000000pt;}
.x118_c00042{left:588.933333pt;}
.x127_c00042{left:591.866667pt;}
.xc4_c00042{left:594.266667pt;}
.xe2_c00042{left:595.600000pt;}
.xb8_c00042{left:597.466667pt;}
.x153_c00042{left:598.400000pt;}
.xcd_c00042{left:601.866667pt;}
.x11b_c00042{left:603.200000pt;}
.xe9_c00042{left:606.400000pt;}
.x13f_c00042{left:608.133333pt;}
.xff_c00042{left:609.333333pt;}
.xc0_c00042{left:610.266667pt;}
.x142_c00042{left:611.866667pt;}
.xd6_c00042{left:612.933333pt;}
.x10f_c00042{left:615.200000pt;}
.xf5_c00042{left:618.400000pt;}
.xce_c00042{left:620.133333pt;}
.xb9_c00042{left:622.133333pt;}
.xdd_c00042{left:624.533333pt;}
.xd7_c00042{left:625.733333pt;}
.x150_c00042{left:628.266667pt;}
.xc5_c00042{left:629.733333pt;}
.x143_c00042{left:631.066667pt;}
.x133_c00042{left:632.533333pt;}
.xf6_c00042{left:634.133333pt;}
.x110_c00042{left:635.066667pt;}
.xe3_c00042{left:636.533333pt;}
.xd8_c00042{left:638.533333pt;}
.x147_c00042{left:639.466667pt;}
.xde_c00042{left:641.200000pt;}
.xc6_c00042{left:643.466667pt;}
.xcf_c00042{left:645.066667pt;}
.x106_c00042{left:646.800000pt;}
.xd9_c00042{left:648.800000pt;}
.x140_c00042{left:650.933333pt;}
.x124_c00042{left:652.000000pt;}
.xe4_c00042{left:654.133333pt;}
.x148_c00042{left:656.400000pt;}
.x113_c00042{left:657.466667pt;}
.xc7_c00042{left:660.800000pt;}
.x111_c00042{left:662.000000pt;}
.x107_c00042{left:665.733333pt;}
.xef_c00042{left:666.800000pt;}
.xd0_c00042{left:673.200000pt;}
.x128_c00042{left:674.400000pt;}
.xf7_c00042{left:675.733333pt;}
.x11c_c00042{left:679.466667pt;}
.xf0_c00042{left:681.866667pt;}
.xd1_c00042{left:685.333333pt;}
.x10c_c00042{left:687.466667pt;}
.xea_c00042{left:688.400000pt;}
.x2_c00042{left:690.266667pt;}
.xf8_c00042{left:693.066667pt;}
}





/* 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_c00043 {
    display:none;
  }
  .loading-indicator_c00043.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00043 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_c00043 { 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_c00043" -> "#page-container .classname_c00043")
 */
.pf_c00043 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00043 { /* 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_c00043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00043 { /* 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_c00043 { /* 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_c00043 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00043 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00043 {overflow:visible;}
  }
}
.c_c00043 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00043 { /* 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_c00043:after { /* webkit #35443 */
  content: '';
}
.t_c00043:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00043 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 */
}
.__c00043 { /* 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_c00043 { /* info for Javascript */
  display:none;
}
.l_c00043 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00043 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00043 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00043: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_c00043 {
    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_c00043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00043.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_c00043 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00043;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.000000;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;}
.ma7_c00043{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00043{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00043{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00043{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00043{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00043{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00043{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m83_c00043{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m18_c00043{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m79_c00043{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00043{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m20_c00043{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00043{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mca_c00043{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00043{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.m35_c00043{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m31_c00043{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m69_c00043{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m5_c00043{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00043{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m37_c00043{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m91_c00043{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00043{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m59_c00043{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00043{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mf_c00043{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m92_c00043{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m30_c00043{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00043{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m27_c00043{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m19_c00043{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00043{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00043{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m90_c00043{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m56_c00043{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m39_c00043{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m46_c00043{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m16_c00043{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m81_c00043{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00043{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00043{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m33_c00043{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mab_c00043{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m29_c00043{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00043{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00043{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m88_c00043{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m66_c00043{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m89_c00043{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m28_c00043{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00043{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00043{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.maf_c00043{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00043{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m72_c00043{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.mb_c00043{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m42_c00043{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m34_c00043{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m38_c00043{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00043{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00043{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m44_c00043{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00043{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m36_c00043{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6_c00043{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00043{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00043{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m85_c00043{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m11_c00043{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00043{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m50_c00043{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00043{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m97_c00043{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00043{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00043{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00043{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md_c00043{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m98_c00043{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00043{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00043{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m52_c00043{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m84_c00043{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00043{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m96_c00043{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00043{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m17_c00043{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00043{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me_c00043{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00043{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m21_c00043{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00043{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m23_c00043{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00043{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00043{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m26_c00043{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m24_c00043{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00043{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10_c00043{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00043{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00043{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00043{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00043{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m61_c00043{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m15_c00043{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00043{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00043{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00043{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00043{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m43_c00043{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m64_c00043{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8_c00043{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00043{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00043{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00043{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00043{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00043{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m71_c00043{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m12_c00043{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m55_c00043{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m25_c00043{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m57_c00043{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00043{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.maa_c00043{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m86_c00043{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m13_c00043{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00043{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00043{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m40_c00043{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m41_c00043{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00043{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00043{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00043{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7_c00043{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00043{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m94_c00043{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4_c00043{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m54_c00043{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m80_c00043{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00043{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00043{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m45_c00043{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m82_c00043{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m93_c00043{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m51_c00043{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00043{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00043{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00043{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00043{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m32_c00043{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m22_c00043{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mba_c00043{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00043{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m74_c00043{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00043{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00043{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m58_c00043{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00043{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00043{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m48_c00043{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m75_c00043{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m14_c00043{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00043{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00043{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m87_c00043{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2_c00043{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m95_c00043{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00043{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00043{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00043{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m53_c00043{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc_c00043{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m60_c00043{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m76_c00043{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m65_c00043{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m78_c00043{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mac_c00043{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9_c00043{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m70_c00043{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00043{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.ma_c00043{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m77_c00043{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m0_c00043{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00043{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00043{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00043{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00043{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00043{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00043{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00043{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mae_c00043{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00043{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m67_c00043{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00043{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m73_c00043{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m63_c00043{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mad_c00043{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m49_c00043{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m99_c00043{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m47_c00043{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m68_c00043{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00043{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(0.517000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517000,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls0_c00043{letter-spacing:0.000000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{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__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00043{word-spacing:-13.750000px;}
.ws0_c00043{word-spacing:-9.000000px;}
.ws3_c00043{word-spacing:-4.062500px;}
.ws2_c00043{word-spacing:-0.294118px;}
.ws5_c00043{word-spacing:0.000000px;}
.ws1_c00043{word-spacing:13.214286px;}
.fc0_c00043{color:transparent;}
.fs4_c00043{font-size:54.000000px;}
.fs3_c00043{font-size:60.000000px;}
.fs2_c00043{font-size:66.000000px;}
.fs0_c00043{font-size:72.000000px;}
.fs1_c00043{font-size:78.000000px;}
.y0_c00043{bottom:0.000000px;}
.y24_c00043{bottom:543.150000px;}
.y43_c00043{bottom:543.600000px;}
.y23_c00043{bottom:557.550000px;}
.y42_c00043{bottom:558.000000px;}
.y22_c00043{bottom:572.250000px;}
.y41_c00043{bottom:572.700000px;}
.y21_c00043{bottom:586.350000px;}
.y40_c00043{bottom:586.800000px;}
.y20_c00043{bottom:600.750000px;}
.y3f_c00043{bottom:606.900000px;}
.y1f_c00043{bottom:615.150000px;}
.y1e_c00043{bottom:629.550000px;}
.y1d_c00043{bottom:644.700000px;}
.y3e_c00043{bottom:650.100000px;}
.y1c_c00043{bottom:661.950000px;}
.y3d_c00043{bottom:668.100000px;}
.y1b_c00043{bottom:677.100000px;}
.y3c_c00043{bottom:686.100000px;}
.y1a_c00043{bottom:691.500000px;}
.y3b_c00043{bottom:704.100000px;}
.y19_c00043{bottom:705.900000px;}
.y18_c00043{bottom:720.300000px;}
.y3a_c00043{bottom:722.100000px;}
.y17_c00043{bottom:734.400000px;}
.y39_c00043{bottom:739.800000px;}
.y16_c00043{bottom:753.900000px;}
.y38_c00043{bottom:757.800000px;}
.y15_c00043{bottom:768.300000px;}
.y37_c00043{bottom:780.150000px;}
.y14_c00043{bottom:783.000000px;}
.y36_c00043{bottom:798.450000px;}
.y13_c00043{bottom:801.000000px;}
.y12_c00043{bottom:815.400000px;}
.y35_c00043{bottom:816.150000px;}
.y11_c00043{bottom:831.600000px;}
.y34_c00043{bottom:838.050000px;}
.y33_c00043{bottom:856.050000px;}
.y32_c00043{bottom:873.750000px;}
.y10_c00043{bottom:879.150000px;}
.y31_c00043{bottom:892.050000px;}
.yf_c00043{bottom:897.000000px;}
.y30_c00043{bottom:909.750000px;}
.ye_c00043{bottom:916.050000px;}
.y2f_c00043{bottom:927.750000px;}
.yd_c00043{bottom:933.000000px;}
.y2e_c00043{bottom:950.250000px;}
.yc_c00043{bottom:950.700000px;}
.y2d_c00043{bottom:967.950000px;}
.yb_c00043{bottom:972.900000px;}
.y2c_c00043{bottom:985.950000px;}
.ya_c00043{bottom:990.600000px;}
.y2b_c00043{bottom:1003.650000px;}
.y9_c00043{bottom:1008.600000px;}
.y2a_c00043{bottom:1021.650000px;}
.y8_c00043{bottom:1026.900000px;}
.y29_c00043{bottom:1039.950000px;}
.y7_c00043{bottom:1044.600000px;}
.y28_c00043{bottom:1057.650000px;}
.y6_c00043{bottom:1062.300000px;}
.y27_c00043{bottom:1075.650000px;}
.y5_c00043{bottom:1080.300000px;}
.y26_c00043{bottom:1097.700000px;}
.y4_c00043{bottom:1102.350000px;}
.y25_c00043{bottom:1115.700000px;}
.y3_c00043{bottom:1120.350000px;}
.y1_c00043{bottom:1146.900000px;}
.y2_c00043{bottom:1147.200000px;}
.h6_c00043{height:54.000000px;}
.h5_c00043{height:60.000000px;}
.h4_c00043{height:66.000000px;}
.h2_c00043{height:72.000000px;}
.h3_c00043{height:78.000000px;}
.h0_c00043{height:1270.440033px;}
.h1_c00043{height:1270.500000px;}
.w0_c00043{width:948.600036px;}
.w1_c00043{width:948.750000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:154.500000px;}
.x3_c00043{left:155.550000px;}
.x16_c00043{left:156.600000px;}
.x2a_c00043{left:157.650000px;}
.x4c_c00043{left:171.300000px;}
.x75_c00043{left:172.800000px;}
.xb_c00043{left:173.850000px;}
.x36_c00043{left:177.450000px;}
.x24_c00043{left:186.450000px;}
.x56_c00043{left:190.050000px;}
.x2b_c00043{left:192.900000px;}
.x11_c00043{left:194.250000px;}
.xa_c00043{left:195.600000px;}
.x4d_c00043{left:197.250000px;}
.x4_c00043{left:198.450000px;}
.x37_c00043{left:201.150000px;}
.x7e_c00043{left:202.500000px;}
.x77_c00043{left:204.900000px;}
.x53_c00043{left:206.400000px;}
.x1d_c00043{left:210.450000px;}
.x42_c00043{left:211.650000px;}
.x2c_c00043{left:216.300000px;}
.x88_c00043{left:217.500000px;}
.x45_c00043{left:221.400000px;}
.x25_c00043{left:223.200000px;}
.x4e_c00043{left:224.550000px;}
.x58_c00043{left:226.350000px;}
.x3c_c00043{left:228.750000px;}
.x78_c00043{left:231.150000px;}
.x17_c00043{left:232.500000px;}
.x57_c00043{left:236.100000px;}
.x32_c00043{left:237.150000px;}
.x18_c00043{left:243.000000px;}
.x5f_c00043{left:248.850000px;}
.x7c_c00043{left:250.500000px;}
.x26_c00043{left:251.700000px;}
.x5d_c00043{left:253.200000px;}
.x65_c00043{left:254.400000px;}
.x54_c00043{left:255.750000px;}
.x63_c00043{left:259.500000px;}
.x12_c00043{left:260.850000px;}
.x5_c00043{left:263.550000px;}
.x79_c00043{left:269.250000px;}
.xc_c00043{left:270.300000px;}
.x38_c00043{left:272.400000px;}
.x59_c00043{left:276.000000px;}
.x3d_c00043{left:277.350000px;}
.x46_c00043{left:282.900000px;}
.x1e_c00043{left:284.550000px;}
.x33_c00043{left:287.250000px;}
.x60_c00043{left:288.750000px;}
.x3e_c00043{left:289.950000px;}
.x6c_c00043{left:291.600000px;}
.x1f_c00043{left:293.850000px;}
.x4f_c00043{left:295.500000px;}
.x5a_c00043{left:297.600000px;}
.x4b_c00043{left:301.050000px;}
.x83_c00043{left:302.550000px;}
.x7a_c00043{left:304.500000px;}
.x2d_c00043{left:306.000000px;}
.x34_c00043{left:307.050000px;}
.x3f_c00043{left:313.350000px;}
.x61_c00043{left:314.700000px;}
.x84_c00043{left:315.900000px;}
.x72_c00043{left:318.000000px;}
.x20_c00043{left:319.050000px;}
.x6d_c00043{left:321.450000px;}
.x35_c00043{left:323.550000px;}
.x19_c00043{left:324.750000px;}
.x69_c00043{left:325.950000px;}
.xd_c00043{left:327.900000px;}
.x7f_c00043{left:330.150000px;}
.x2e_c00043{left:331.200000px;}
.x6_c00043{left:335.550000px;}
.x50_c00043{left:337.950000px;}
.x27_c00043{left:339.150000px;}
.x6e_c00043{left:340.200000px;}
.x6a_c00043{left:345.000000px;}
.x1a_c00043{left:346.650000px;}
.x64_c00043{left:348.000000px;}
.xe_c00043{left:354.150000px;}
.x13_c00043{left:356.250000px;}
.x39_c00043{left:358.050000px;}
.x89_c00043{left:361.050000px;}
.x43_c00043{left:362.400000px;}
.x47_c00043{left:363.900000px;}
.x7_c00043{left:369.450000px;}
.x55_c00043{left:371.550000px;}
.x21_c00043{left:373.050000px;}
.xf_c00043{left:374.700000px;}
.x62_c00043{left:376.950000px;}
.x3a_c00043{left:378.150000px;}
.x73_c00043{left:379.200000px;}
.x48_c00043{left:387.000000px;}
.x51_c00043{left:388.800000px;}
.x2f_c00043{left:390.900000px;}
.x6f_c00043{left:392.400000px;}
.x2_c00043{left:393.900000px;}
.x74_c00043{left:395.700000px;}
.x5b_c00043{left:396.900000px;}
.x22_c00043{left:398.550000px;}
.x76_c00043{left:400.350000px;}
.x1b_c00043{left:402.450000px;}
.x8a_c00043{left:405.300000px;}
.x85_c00043{left:409.350000px;}
.x52_c00043{left:410.700000px;}
.x7d_c00043{left:412.500000px;}
.x5e_c00043{left:414.150000px;}
.x28_c00043{left:415.350000px;}
.x70_c00043{left:418.350000px;}
.x14_c00043{left:420.000000px;}
.x44_c00043{left:422.850000px;}
.x86_c00043{left:426.600000px;}
.x66_c00043{left:427.950000px;}
.x10_c00043{left:429.000000px;}
.x40_c00043{left:430.050000px;}
.x3b_c00043{left:431.850000px;}
.x82_c00043{left:433.950000px;}
.x30_c00043{left:435.150000px;}
.x80_c00043{left:436.350000px;}
.x67_c00043{left:439.050000px;}
.x41_c00043{left:443.700000px;}
.x7b_c00043{left:444.900000px;}
.x8_c00043{left:446.100000px;}
.x71_c00043{left:448.650000px;}
.x5c_c00043{left:449.850000px;}
.x29_c00043{left:453.900000px;}
.x49_c00043{left:463.350000px;}
.x23_c00043{left:464.700000px;}
.x81_c00043{left:468.000000px;}
.x9_c00043{left:469.500000px;}
.x1c_c00043{left:471.150000px;}
.x4a_c00043{left:473.400000px;}
.x6b_c00043{left:476.400000px;}
.x31_c00043{left:477.600000px;}
.x68_c00043{left:479.700000px;}
.x15_c00043{left:480.900000px;}
.x87_c00043{left:489.900000px;}
.x94_c00043{left:512.550000px;}
.x9e_c00043{left:513.600000px;}
.xe7_c00043{left:515.100000px;}
.xfa_c00043{left:528.450000px;}
.x8b_c00043{left:530.250000px;}
.x98_c00043{left:531.750000px;}
.xba_c00043{left:532.950000px;}
.x9f_c00043{left:534.450000px;}
.xc7_c00043{left:541.200000px;}
.x95_c00043{left:545.700000px;}
.xda_c00043{left:551.250000px;}
.xf7_c00043{left:555.450000px;}
.xc3_c00043{left:556.950000px;}
.x99_c00043{left:558.750000px;}
.xc1_c00043{left:561.450000px;}
.xd3_c00043{left:563.250000px;}
.xcc_c00043{left:567.300000px;}
.xe8_c00043{left:568.800000px;}
.xf1_c00043{left:571.800000px;}
.xdb_c00043{left:575.400000px;}
.x96_c00043{left:579.150000px;}
.x8c_c00043{left:580.950000px;}
.xb4_c00043{left:582.150000px;}
.xae_c00043{left:584.400000px;}
.xbb_c00043{left:586.650000px;}
.xd6_c00043{left:589.050000px;}
.xec_c00043{left:590.400000px;}
.xfb_c00043{left:591.600000px;}
.xdf_c00043{left:595.200000px;}
.xb5_c00043{left:598.350000px;}
.xa0_c00043{left:599.550000px;}
.xa8_c00043{left:602.550000px;}
.x8d_c00043{left:603.600000px;}
.xa4_c00043{left:609.000000px;}
.xd7_c00043{left:610.950000px;}
.xee_c00043{left:615.150000px;}
.xc2_c00043{left:620.850000px;}
.xdc_c00043{left:623.700000px;}
.xa5_c00043{left:625.200000px;}
.xbc_c00043{left:627.300000px;}
.x9a_c00043{left:631.800000px;}
.xf2_c00043{left:633.000000px;}
.xe0_c00043{left:634.050000px;}
.xd4_c00043{left:635.550000px;}
.xc8_c00043{left:639.450000px;}
.xf8_c00043{left:643.650000px;}
.xc9_c00043{left:646.950000px;}
.xff_c00043{left:648.300000px;}
.xaf_c00043{left:650.250000px;}
.xe9_c00043{left:652.350000px;}
.xef_c00043{left:654.450000px;}
.xfc_c00043{left:655.950000px;}
.x97_c00043{left:658.050000px;}
.x8e_c00043{left:664.050000px;}
.xea_c00043{left:666.000000px;}
.xb0_c00043{left:669.300000px;}
.xca_c00043{left:670.650000px;}
.xa6_c00043{left:674.100000px;}
.xb6_c00043{left:678.600000px;}
.xe1_c00043{left:680.850000px;}
.xcd_c00043{left:682.800000px;}
.xc4_c00043{left:684.750000px;}
.xdd_c00043{left:685.950000px;}
.xf3_c00043{left:687.000000px;}
.x9b_c00043{left:690.900000px;}
.xb1_c00043{left:691.950000px;}
.xce_c00043{left:694.350000px;}
.x8f_c00043{left:696.150000px;}
.xe4_c00043{left:697.500000px;}
.xb7_c00043{left:699.900000px;}
.xa1_c00043{left:701.550000px;}
.xc5_c00043{left:709.650000px;}
.xa9_c00043{left:712.650000px;}
.x9c_c00043{left:717.900000px;}
.xd8_c00043{left:719.850000px;}
.x90_c00043{left:724.650000px;}
.xd5_c00043{left:727.050000px;}
.xde_c00043{left:729.150000px;}
.xcb_c00043{left:730.500000px;}
.x100_c00043{left:733.950000px;}
.xf9_c00043{left:743.400000px;}
.x9d_c00043{left:744.600000px;}
.xaa_c00043{left:746.850000px;}
.xbd_c00043{left:748.350000px;}
.xd9_c00043{left:750.750000px;}
.xf4_c00043{left:754.200000px;}
.xa2_c00043{left:755.250000px;}
.xeb_c00043{left:757.050000px;}
.x101_c00043{left:758.400000px;}
.xed_c00043{left:760.950000px;}
.xcf_c00043{left:762.750000px;}
.xab_c00043{left:764.100000px;}
.xe5_c00043{left:765.600000px;}
.xa7_c00043{left:768.150000px;}
.xbe_c00043{left:771.000000px;}
.xe2_c00043{left:772.950000px;}
.x91_c00043{left:778.950000px;}
.xf0_c00043{left:780.750000px;}
.xb2_c00043{left:782.700000px;}
.xfd_c00043{left:785.550000px;}
.xbf_c00043{left:787.200000px;}
.xe6_c00043{left:788.250000px;}
.xd0_c00043{left:796.950000px;}
.xac_c00043{left:799.050000px;}
.x92_c00043{left:800.550000px;}
.xb8_c00043{left:806.100000px;}
.xb3_c00043{left:807.150000px;}
.xd1_c00043{left:808.800000px;}
.x93_c00043{left:809.850000px;}
.xb9_c00043{left:814.800000px;}
.xf6_c00043{left:816.450000px;}
.xc0_c00043{left:817.500000px;}
.xad_c00043{left:821.400000px;}
.xa3_c00043{left:828.300000px;}
.xe3_c00043{left:830.850000px;}
.xd2_c00043{left:834.300000px;}
.xfe_c00043{left:841.350000px;}
.xf5_c00043{left:844.200000px;}
.xc6_c00043{left:846.900000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws4_c00043{word-spacing:-12.222222pt;}
.ws0_c00043{word-spacing:-8.000000pt;}
.ws3_c00043{word-spacing:-3.611111pt;}
.ws2_c00043{word-spacing:-0.261438pt;}
.ws5_c00043{word-spacing:0.000000pt;}
.ws1_c00043{word-spacing:11.746032pt;}
.fs4_c00043{font-size:48.000000pt;}
.fs3_c00043{font-size:53.333333pt;}
.fs2_c00043{font-size:58.666667pt;}
.fs0_c00043{font-size:64.000000pt;}
.fs1_c00043{font-size:69.333333pt;}
.y0_c00043{bottom:0.000000pt;}
.y24_c00043{bottom:482.800000pt;}
.y43_c00043{bottom:483.200000pt;}
.y23_c00043{bottom:495.600000pt;}
.y42_c00043{bottom:496.000000pt;}
.y22_c00043{bottom:508.666667pt;}
.y41_c00043{bottom:509.066667pt;}
.y21_c00043{bottom:521.200000pt;}
.y40_c00043{bottom:521.600000pt;}
.y20_c00043{bottom:534.000000pt;}
.y3f_c00043{bottom:539.466667pt;}
.y1f_c00043{bottom:546.800000pt;}
.y1e_c00043{bottom:559.600000pt;}
.y1d_c00043{bottom:573.066667pt;}
.y3e_c00043{bottom:577.866667pt;}
.y1c_c00043{bottom:588.400000pt;}
.y3d_c00043{bottom:593.866667pt;}
.y1b_c00043{bottom:601.866667pt;}
.y3c_c00043{bottom:609.866667pt;}
.y1a_c00043{bottom:614.666667pt;}
.y3b_c00043{bottom:625.866667pt;}
.y19_c00043{bottom:627.466667pt;}
.y18_c00043{bottom:640.266667pt;}
.y3a_c00043{bottom:641.866667pt;}
.y17_c00043{bottom:652.800000pt;}
.y39_c00043{bottom:657.600000pt;}
.y16_c00043{bottom:670.133333pt;}
.y38_c00043{bottom:673.600000pt;}
.y15_c00043{bottom:682.933333pt;}
.y37_c00043{bottom:693.466667pt;}
.y14_c00043{bottom:696.000000pt;}
.y36_c00043{bottom:709.733333pt;}
.y13_c00043{bottom:712.000000pt;}
.y12_c00043{bottom:724.800000pt;}
.y35_c00043{bottom:725.466667pt;}
.y11_c00043{bottom:739.200000pt;}
.y34_c00043{bottom:744.933333pt;}
.y33_c00043{bottom:760.933333pt;}
.y32_c00043{bottom:776.666667pt;}
.y10_c00043{bottom:781.466667pt;}
.y31_c00043{bottom:792.933333pt;}
.yf_c00043{bottom:797.333333pt;}
.y30_c00043{bottom:808.666667pt;}
.ye_c00043{bottom:814.266667pt;}
.y2f_c00043{bottom:824.666667pt;}
.yd_c00043{bottom:829.333333pt;}
.y2e_c00043{bottom:844.666667pt;}
.yc_c00043{bottom:845.066667pt;}
.y2d_c00043{bottom:860.400000pt;}
.yb_c00043{bottom:864.800000pt;}
.y2c_c00043{bottom:876.400000pt;}
.ya_c00043{bottom:880.533333pt;}
.y2b_c00043{bottom:892.133333pt;}
.y9_c00043{bottom:896.533333pt;}
.y2a_c00043{bottom:908.133333pt;}
.y8_c00043{bottom:912.800000pt;}
.y29_c00043{bottom:924.400000pt;}
.y7_c00043{bottom:928.533333pt;}
.y28_c00043{bottom:940.133333pt;}
.y6_c00043{bottom:944.266667pt;}
.y27_c00043{bottom:956.133333pt;}
.y5_c00043{bottom:960.266667pt;}
.y26_c00043{bottom:975.733333pt;}
.y4_c00043{bottom:979.866667pt;}
.y25_c00043{bottom:991.733333pt;}
.y3_c00043{bottom:995.866667pt;}
.y1_c00043{bottom:1019.466667pt;}
.y2_c00043{bottom:1019.733333pt;}
.h6_c00043{height:48.000000pt;}
.h5_c00043{height:53.333333pt;}
.h4_c00043{height:58.666667pt;}
.h2_c00043{height:64.000000pt;}
.h3_c00043{height:69.333333pt;}
.h0_c00043{height:1129.280029pt;}
.h1_c00043{height:1129.333333pt;}
.w0_c00043{width:843.200032pt;}
.w1_c00043{width:843.333333pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:137.333333pt;}
.x3_c00043{left:138.266667pt;}
.x16_c00043{left:139.200000pt;}
.x2a_c00043{left:140.133333pt;}
.x4c_c00043{left:152.266667pt;}
.x75_c00043{left:153.600000pt;}
.xb_c00043{left:154.533333pt;}
.x36_c00043{left:157.733333pt;}
.x24_c00043{left:165.733333pt;}
.x56_c00043{left:168.933333pt;}
.x2b_c00043{left:171.466667pt;}
.x11_c00043{left:172.666667pt;}
.xa_c00043{left:173.866667pt;}
.x4d_c00043{left:175.333333pt;}
.x4_c00043{left:176.400000pt;}
.x37_c00043{left:178.800000pt;}
.x7e_c00043{left:180.000000pt;}
.x77_c00043{left:182.133333pt;}
.x53_c00043{left:183.466667pt;}
.x1d_c00043{left:187.066667pt;}
.x42_c00043{left:188.133333pt;}
.x2c_c00043{left:192.266667pt;}
.x88_c00043{left:193.333333pt;}
.x45_c00043{left:196.800000pt;}
.x25_c00043{left:198.400000pt;}
.x4e_c00043{left:199.600000pt;}
.x58_c00043{left:201.200000pt;}
.x3c_c00043{left:203.333333pt;}
.x78_c00043{left:205.466667pt;}
.x17_c00043{left:206.666667pt;}
.x57_c00043{left:209.866667pt;}
.x32_c00043{left:210.800000pt;}
.x18_c00043{left:216.000000pt;}
.x5f_c00043{left:221.200000pt;}
.x7c_c00043{left:222.666667pt;}
.x26_c00043{left:223.733333pt;}
.x5d_c00043{left:225.066667pt;}
.x65_c00043{left:226.133333pt;}
.x54_c00043{left:227.333333pt;}
.x63_c00043{left:230.666667pt;}
.x12_c00043{left:231.866667pt;}
.x5_c00043{left:234.266667pt;}
.x79_c00043{left:239.333333pt;}
.xc_c00043{left:240.266667pt;}
.x38_c00043{left:242.133333pt;}
.x59_c00043{left:245.333333pt;}
.x3d_c00043{left:246.533333pt;}
.x46_c00043{left:251.466667pt;}
.x1e_c00043{left:252.933333pt;}
.x33_c00043{left:255.333333pt;}
.x60_c00043{left:256.666667pt;}
.x3e_c00043{left:257.733333pt;}
.x6c_c00043{left:259.200000pt;}
.x1f_c00043{left:261.200000pt;}
.x4f_c00043{left:262.666667pt;}
.x5a_c00043{left:264.533333pt;}
.x4b_c00043{left:267.600000pt;}
.x83_c00043{left:268.933333pt;}
.x7a_c00043{left:270.666667pt;}
.x2d_c00043{left:272.000000pt;}
.x34_c00043{left:272.933333pt;}
.x3f_c00043{left:278.533333pt;}
.x61_c00043{left:279.733333pt;}
.x84_c00043{left:280.800000pt;}
.x72_c00043{left:282.666667pt;}
.x20_c00043{left:283.600000pt;}
.x6d_c00043{left:285.733333pt;}
.x35_c00043{left:287.600000pt;}
.x19_c00043{left:288.666667pt;}
.x69_c00043{left:289.733333pt;}
.xd_c00043{left:291.466667pt;}
.x7f_c00043{left:293.466667pt;}
.x2e_c00043{left:294.400000pt;}
.x6_c00043{left:298.266667pt;}
.x50_c00043{left:300.400000pt;}
.x27_c00043{left:301.466667pt;}
.x6e_c00043{left:302.400000pt;}
.x6a_c00043{left:306.666667pt;}
.x1a_c00043{left:308.133333pt;}
.x64_c00043{left:309.333333pt;}
.xe_c00043{left:314.800000pt;}
.x13_c00043{left:316.666667pt;}
.x39_c00043{left:318.266667pt;}
.x89_c00043{left:320.933333pt;}
.x43_c00043{left:322.133333pt;}
.x47_c00043{left:323.466667pt;}
.x7_c00043{left:328.400000pt;}
.x55_c00043{left:330.266667pt;}
.x21_c00043{left:331.600000pt;}
.xf_c00043{left:333.066667pt;}
.x62_c00043{left:335.066667pt;}
.x3a_c00043{left:336.133333pt;}
.x73_c00043{left:337.066667pt;}
.x48_c00043{left:344.000000pt;}
.x51_c00043{left:345.600000pt;}
.x2f_c00043{left:347.466667pt;}
.x6f_c00043{left:348.800000pt;}
.x2_c00043{left:350.133333pt;}
.x74_c00043{left:351.733333pt;}
.x5b_c00043{left:352.800000pt;}
.x22_c00043{left:354.266667pt;}
.x76_c00043{left:355.866667pt;}
.x1b_c00043{left:357.733333pt;}
.x8a_c00043{left:360.266667pt;}
.x85_c00043{left:363.866667pt;}
.x52_c00043{left:365.066667pt;}
.x7d_c00043{left:366.666667pt;}
.x5e_c00043{left:368.133333pt;}
.x28_c00043{left:369.200000pt;}
.x70_c00043{left:371.866667pt;}
.x14_c00043{left:373.333333pt;}
.x44_c00043{left:375.866667pt;}
.x86_c00043{left:379.200000pt;}
.x66_c00043{left:380.400000pt;}
.x10_c00043{left:381.333333pt;}
.x40_c00043{left:382.266667pt;}
.x3b_c00043{left:383.866667pt;}
.x82_c00043{left:385.733333pt;}
.x30_c00043{left:386.800000pt;}
.x80_c00043{left:387.866667pt;}
.x67_c00043{left:390.266667pt;}
.x41_c00043{left:394.400000pt;}
.x7b_c00043{left:395.466667pt;}
.x8_c00043{left:396.533333pt;}
.x71_c00043{left:398.800000pt;}
.x5c_c00043{left:399.866667pt;}
.x29_c00043{left:403.466667pt;}
.x49_c00043{left:411.866667pt;}
.x23_c00043{left:413.066667pt;}
.x81_c00043{left:416.000000pt;}
.x9_c00043{left:417.333333pt;}
.x1c_c00043{left:418.800000pt;}
.x4a_c00043{left:420.800000pt;}
.x6b_c00043{left:423.466667pt;}
.x31_c00043{left:424.533333pt;}
.x68_c00043{left:426.400000pt;}
.x15_c00043{left:427.466667pt;}
.x87_c00043{left:435.466667pt;}
.x94_c00043{left:455.600000pt;}
.x9e_c00043{left:456.533333pt;}
.xe7_c00043{left:457.866667pt;}
.xfa_c00043{left:469.733333pt;}
.x8b_c00043{left:471.333333pt;}
.x98_c00043{left:472.666667pt;}
.xba_c00043{left:473.733333pt;}
.x9f_c00043{left:475.066667pt;}
.xc7_c00043{left:481.066667pt;}
.x95_c00043{left:485.066667pt;}
.xda_c00043{left:490.000000pt;}
.xf7_c00043{left:493.733333pt;}
.xc3_c00043{left:495.066667pt;}
.x99_c00043{left:496.666667pt;}
.xc1_c00043{left:499.066667pt;}
.xd3_c00043{left:500.666667pt;}
.xcc_c00043{left:504.266667pt;}
.xe8_c00043{left:505.600000pt;}
.xf1_c00043{left:508.266667pt;}
.xdb_c00043{left:511.466667pt;}
.x96_c00043{left:514.800000pt;}
.x8c_c00043{left:516.400000pt;}
.xb4_c00043{left:517.466667pt;}
.xae_c00043{left:519.466667pt;}
.xbb_c00043{left:521.466667pt;}
.xd6_c00043{left:523.600000pt;}
.xec_c00043{left:524.800000pt;}
.xfb_c00043{left:525.866667pt;}
.xdf_c00043{left:529.066667pt;}
.xb5_c00043{left:531.866667pt;}
.xa0_c00043{left:532.933333pt;}
.xa8_c00043{left:535.600000pt;}
.x8d_c00043{left:536.533333pt;}
.xa4_c00043{left:541.333333pt;}
.xd7_c00043{left:543.066667pt;}
.xee_c00043{left:546.800000pt;}
.xc2_c00043{left:551.866667pt;}
.xdc_c00043{left:554.400000pt;}
.xa5_c00043{left:555.733333pt;}
.xbc_c00043{left:557.600000pt;}
.x9a_c00043{left:561.600000pt;}
.xf2_c00043{left:562.666667pt;}
.xe0_c00043{left:563.600000pt;}
.xd4_c00043{left:564.933333pt;}
.xc8_c00043{left:568.400000pt;}
.xf8_c00043{left:572.133333pt;}
.xc9_c00043{left:575.066667pt;}
.xff_c00043{left:576.266667pt;}
.xaf_c00043{left:578.000000pt;}
.xe9_c00043{left:579.866667pt;}
.xef_c00043{left:581.733333pt;}
.xfc_c00043{left:583.066667pt;}
.x97_c00043{left:584.933333pt;}
.x8e_c00043{left:590.266667pt;}
.xea_c00043{left:592.000000pt;}
.xb0_c00043{left:594.933333pt;}
.xca_c00043{left:596.133333pt;}
.xa6_c00043{left:599.200000pt;}
.xb6_c00043{left:603.200000pt;}
.xe1_c00043{left:605.200000pt;}
.xcd_c00043{left:606.933333pt;}
.xc4_c00043{left:608.666667pt;}
.xdd_c00043{left:609.733333pt;}
.xf3_c00043{left:610.666667pt;}
.x9b_c00043{left:614.133333pt;}
.xb1_c00043{left:615.066667pt;}
.xce_c00043{left:617.200000pt;}
.x8f_c00043{left:618.800000pt;}
.xe4_c00043{left:620.000000pt;}
.xb7_c00043{left:622.133333pt;}
.xa1_c00043{left:623.600000pt;}
.xc5_c00043{left:630.800000pt;}
.xa9_c00043{left:633.466667pt;}
.x9c_c00043{left:638.133333pt;}
.xd8_c00043{left:639.866667pt;}
.x90_c00043{left:644.133333pt;}
.xd5_c00043{left:646.266667pt;}
.xde_c00043{left:648.133333pt;}
.xcb_c00043{left:649.333333pt;}
.x100_c00043{left:652.400000pt;}
.xf9_c00043{left:660.800000pt;}
.x9d_c00043{left:661.866667pt;}
.xaa_c00043{left:663.866667pt;}
.xbd_c00043{left:665.200000pt;}
.xd9_c00043{left:667.333333pt;}
.xf4_c00043{left:670.400000pt;}
.xa2_c00043{left:671.333333pt;}
.xeb_c00043{left:672.933333pt;}
.x101_c00043{left:674.133333pt;}
.xed_c00043{left:676.400000pt;}
.xcf_c00043{left:678.000000pt;}
.xab_c00043{left:679.200000pt;}
.xe5_c00043{left:680.533333pt;}
.xa7_c00043{left:682.800000pt;}
.xbe_c00043{left:685.333333pt;}
.xe2_c00043{left:687.066667pt;}
.x91_c00043{left:692.400000pt;}
.xf0_c00043{left:694.000000pt;}
.xb2_c00043{left:695.733333pt;}
.xfd_c00043{left:698.266667pt;}
.xbf_c00043{left:699.733333pt;}
.xe6_c00043{left:700.666667pt;}
.xd0_c00043{left:708.400000pt;}
.xac_c00043{left:710.266667pt;}
.x92_c00043{left:711.600000pt;}
.xb8_c00043{left:716.533333pt;}
.xb3_c00043{left:717.466667pt;}
.xd1_c00043{left:718.933333pt;}
.x93_c00043{left:719.866667pt;}
.xb9_c00043{left:724.266667pt;}
.xf6_c00043{left:725.733333pt;}
.xc0_c00043{left:726.666667pt;}
.xad_c00043{left:730.133333pt;}
.xa3_c00043{left:736.266667pt;}
.xe3_c00043{left:738.533333pt;}
.xd2_c00043{left:741.600000pt;}
.xfe_c00043{left:747.866667pt;}
.xf5_c00043{left:750.400000pt;}
.xc6_c00043{left:752.800000pt;}
}





/* 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_c00044 {
    display:none;
  }
  .loading-indicator_c00044.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00044 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_c00044 { 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_c00044" -> "#page-container .classname_c00044")
 */
.pf_c00044 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00044 { /* 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_c00044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00044 { /* 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_c00044 { /* 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_c00044 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00044 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00044 {overflow:visible;}
  }
}
.c_c00044 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00044 { /* 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_c00044:after { /* webkit #35443 */
  content: '';
}
.t_c00044:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00044 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 */
}
.__c00044 { /* 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_c00044 { /* info for Javascript */
  display:none;
}
.l_c00044 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00044 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00044 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00044: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_c00044 {
    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_c00044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00044.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_c00044 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00044;src:url('chunks/assets/font_1585989469fe058db9afec51.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.000000;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;}
.m89_c00044{transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00044{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m82_c00044{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00044{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00044{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m37_c00044{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m93_c00044{transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00044{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m81_c00044{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00044{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00044{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00044{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00044{transform:matrix(0.064750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064750,0.000000,0.000000,0.250000,0,0);}
.m99_c00044{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m70_c00044{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00044{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m79_c00044{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00044{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m91_c00044{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00044{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00044{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00044{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m66_c00044{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00044{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mde_c00044{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m42_c00044{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00044{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00044{transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00044{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00044{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m44_c00044{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00044{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00044{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m71_c00044{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m12_c00044{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m46_c00044{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00044{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m98_c00044{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m61_c00044{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m77_c00044{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00044{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00044{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00044{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00044{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00044{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m76_c00044{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00044{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m14_c00044{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00044{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00044{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc_c00044{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me3_c00044{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m10_c00044{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me5_c00044{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m92_c00044{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00044{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00044{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00044{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00044{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00044{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m78_c00044{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m60_c00044{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00044{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m13_c00044{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m65_c00044{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00044{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mca_c00044{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md1_c00044{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m85_c00044{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00044{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md0_c00044{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mf_c00044{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00044{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00044{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00044{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00044{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m75_c00044{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00044{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00044{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00044{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00044{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mae_c00044{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mce_c00044{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00044{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00044{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m32_c00044{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m25_c00044{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m22_c00044{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00044{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m51_c00044{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00044{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md_c00044{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00044{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00044{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m36_c00044{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me2_c00044{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00044{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00044{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m15_c00044{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m90_c00044{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00044{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00044{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m23_c00044{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00044{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00044{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md4_c00044{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00044{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00044{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m29_c00044{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m45_c00044{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m20_c00044{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md2_c00044{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00044{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me_c00044{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m72_c00044{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m52_c00044{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m17_c00044{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m73_c00044{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00044{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m95_c00044{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m84_c00044{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00044{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00044{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mac_c00044{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m27_c00044{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m18_c00044{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md3_c00044{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00044{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mda_c00044{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m50_c00044{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m47_c00044{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00044{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00044{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m69_c00044{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m80_c00044{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m16_c00044{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00044{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00044{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00044{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00044{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m88_c00044{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m54_c00044{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m83_c00044{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m28_c00044{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m86_c00044{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma_c00044{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m55_c00044{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m30_c00044{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00044{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me4_c00044{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me1_c00044{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00044{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00044{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00044{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m33_c00044{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m48_c00044{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00044{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m43_c00044{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00044{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m21_c00044{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md7_c00044{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m97_c00044{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mab_c00044{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00044{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m56_c00044{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m74_c00044{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m96_c00044{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m59_c00044{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00044{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00044{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00044{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m41_c00044{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00044{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2_c00044{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00044{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00044{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9_c00044{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3_c00044{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m62_c00044{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m24_c00044{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mad_c00044{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00044{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m31_c00044{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m35_c00044{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m57_c00044{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md6_c00044{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m11_c00044{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00044{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m38_c00044{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00044{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5_c00044{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m40_c00044{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md8_c00044{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00044{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.maf_c00044{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m67_c00044{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m49_c00044{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00044{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00044{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m64_c00044{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md9_c00044{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m19_c00044{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m8_c00044{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m34_c00044{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00044{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m39_c00044{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00044{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m87_c00044{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.maa_c00044{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m58_c00044{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6_c00044{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m94_c00044{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00044{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m63_c00044{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00044{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.me0_c00044{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m68_c00044{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m26_c00044{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00044{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00044{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m4_c00044{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m7_c00044{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00044{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m53_c00044{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00044{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.mba_c00044{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00044{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.md5_c00044{transform:matrix(19.028500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(19.028500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(19.028500,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls0_c00044{letter-spacing:0.000000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{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__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:-9.791411px;}
.ws5_c00044{word-spacing:-9.267477px;}
.ws3_c00044{word-spacing:-6.615199px;}
.ws6_c00044{word-spacing:0.000000px;}
.ws4_c00044{word-spacing:4.493450px;}
.ws1_c00044{word-spacing:4.842105px;}
.ws2_c00044{word-spacing:1332.857143px;}
.fc0_c00044{color:transparent;}
.fs5_c00044{font-size:42.000000px;}
.fs6_c00044{font-size:54.000000px;}
.fs3_c00044{font-size:60.000000px;}
.fs2_c00044{font-size:66.000000px;}
.fs4_c00044{font-size:72.000000px;}
.fs1_c00044{font-size:126.000000px;}
.fs0_c00044{font-size:168.000000px;}
.y0_c00044{bottom:0.000000px;}
.y2f_c00044{bottom:173.550000px;}
.y2e_c00044{bottom:190.050000px;}
.y2d_c00044{bottom:197.700000px;}
.y2c_c00044{bottom:202.350000px;}
.y2b_c00044{bottom:223.200000px;}
.y11_c00044{bottom:249.150000px;}
.y10_c00044{bottom:267.150000px;}
.yf_c00044{bottom:285.450000px;}
.ye_c00044{bottom:302.700000px;}
.yd_c00044{bottom:320.700000px;}
.yc_c00044{bottom:342.600000px;}
.y13_c00044{bottom:354.900000px;}
.yb_c00044{bottom:360.300000px;}
.ya_c00044{bottom:378.300000px;}
.y9_c00044{bottom:396.300000px;}
.y12_c00044{bottom:396.750000px;}
.y8_c00044{bottom:414.300000px;}
.y2a_c00044{bottom:432.300000px;}
.y29_c00044{bottom:450.300000px;}
.y28_c00044{bottom:472.650000px;}
.y27_c00044{bottom:490.950000px;}
.y26_c00044{bottom:508.950000px;}
.y25_c00044{bottom:528.000000px;}
.y24_c00044{bottom:551.400000px;}
.y23_c00044{bottom:566.850000px;}
.y22_c00044{bottom:584.850000px;}
.y21_c00044{bottom:603.150000px;}
.y20_c00044{bottom:620.850000px;}
.y1f_c00044{bottom:645.300000px;}
.y1e_c00044{bottom:661.200000px;}
.y1d_c00044{bottom:679.200000px;}
.y1c_c00044{bottom:700.500000px;}
.y1b_c00044{bottom:714.900000px;}
.y1a_c00044{bottom:737.550000px;}
.y19_c00044{bottom:755.250000px;}
.y18_c00044{bottom:776.850000px;}
.y17_c00044{bottom:791.250000px;}
.y16_c00044{bottom:809.250000px;}
.y15_c00044{bottom:831.600000px;}
.y14_c00044{bottom:849.900000px;}
.y7_c00044{bottom:867.600000px;}
.y6_c00044{bottom:889.950000px;}
.y5_c00044{bottom:908.250000px;}
.y4_c00044{bottom:926.250000px;}
.y3_c00044{bottom:943.950000px;}
.y2_c00044{bottom:1017.750000px;}
.y1_c00044{bottom:1097.250000px;}
.h7_c00044{height:42.000000px;}
.h8_c00044{height:54.000000px;}
.h5_c00044{height:60.000000px;}
.h4_c00044{height:66.000000px;}
.h6_c00044{height:72.000000px;}
.h3_c00044{height:126.000000px;}
.h2_c00044{height:168.000000px;}
.h1_c00044{height:1269.000000px;}
.h0_c00044{height:1269.359985px;}
.w0_c00044{width:948.600036px;}
.w1_c00044{width:948.750000px;}
.x0_c00044{left:0.000000px;}
.xcd_c00044{left:65.550000px;}
.xf1_c00044{left:69.750000px;}
.x82_c00044{left:70.950000px;}
.xbb_c00044{left:72.000000px;}
.x108_c00044{left:73.800000px;}
.x1_c00044{left:74.850000px;}
.xce_c00044{left:77.400000px;}
.xbd_c00044{left:82.500000px;}
.xc4_c00044{left:84.300000px;}
.xa8_c00044{left:87.150000px;}
.xc7_c00044{left:89.850000px;}
.x9b_c00044{left:95.550000px;}
.x80_c00044{left:97.500000px;}
.x6f_c00044{left:98.550000px;}
.x83_c00044{left:100.500000px;}
.x109_c00044{left:102.300000px;}
.xfb_c00044{left:103.650000px;}
.x85_c00044{left:110.100000px;}
.x94_c00044{left:115.950000px;}
.xe6_c00044{left:117.000000px;}
.xb2_c00044{left:118.800000px;}
.x86_c00044{left:120.900000px;}
.x81_c00044{left:123.450000px;}
.xac_c00044{left:124.800000px;}
.xda_c00044{left:126.900000px;}
.xf2_c00044{left:130.650000px;}
.x9f_c00044{left:132.300000px;}
.xfc_c00044{left:134.250000px;}
.xdd_c00044{left:135.600000px;}
.xa9_c00044{left:142.500000px;}
.xb3_c00044{left:144.750000px;}
.xe7_c00044{left:146.550000px;}
.x8d_c00044{left:153.300000px;}
.xde_c00044{left:154.350000px;}
.xaa_c00044{left:158.700000px;}
.xfd_c00044{left:167.700000px;}
.xf5_c00044{left:170.400000px;}
.x102_c00044{left:180.450000px;}
.x8_c00044{left:187.500000px;}
.x60_c00044{left:189.300000px;}
.x95_c00044{left:195.450000px;}
.x10a_c00044{left:201.300000px;}
.x5_c00044{left:204.150000px;}
.x2_c00044{left:205.500000px;}
.x2f_c00044{left:207.000000px;}
.x70_c00044{left:208.050000px;}
.xfe_c00044{left:211.950000px;}
.x104_c00044{left:216.000000px;}
.xbe_c00044{left:223.950000px;}
.x42_c00044{left:225.300000px;}
.xcf_c00044{left:227.400000px;}
.x4a_c00044{left:229.200000px;}
.xbc_c00044{left:232.650000px;}
.x7d_c00044{left:234.600000px;}
.x39_c00044{left:237.900000px;}
.xff_c00044{left:240.750000px;}
.x1c_c00044{left:243.750000px;}
.xe2_c00044{left:245.400000px;}
.x4b_c00044{left:250.500000px;}
.x71_c00044{left:251.550000px;}
.x30_c00044{left:257.100000px;}
.xdb_c00044{left:259.350000px;}
.xf6_c00044{left:261.000000px;}
.x12_c00044{left:263.850000px;}
.xc5_c00044{left:266.850000px;}
.x4c_c00044{left:268.200000px;}
.xe8_c00044{left:270.150000px;}
.xa0_c00044{left:271.500000px;}
.x43_c00044{left:272.850000px;}
.x5c_c00044{left:274.800000px;}
.x9c_c00044{left:278.550000px;}
.xd0_c00044{left:279.900000px;}
.x13_c00044{left:281.550000px;}
.x105_c00044{left:287.250000px;}
.xc9_c00044{left:288.750000px;}
.xb4_c00044{left:290.850000px;}
.x1d_c00044{left:294.150000px;}
.x106_c00044{left:295.200000px;}
.x28_c00044{left:297.000000px;}
.xad_c00044{left:298.200000px;}
.x9_c00044{left:299.850000px;}
.x61_c00044{left:300.900000px;}
.x9d_c00044{left:302.250000px;}
.x8e_c00044{left:303.450000px;}
.x44_c00044{left:305.250000px;}
.x7e_c00044{left:306.300000px;}
.x14_c00044{left:308.250000px;}
.x107_c00044{left:309.900000px;}
.xd1_c00044{left:312.300000px;}
.x1e_c00044{left:317.550000px;}
.x3a_c00044{left:318.600000px;}
.x5d_c00044{left:320.550000px;}
.x96_c00044{left:327.600000px;}
.x4d_c00044{left:329.400000px;}
.x31_c00044{left:333.000000px;}
.x15_c00044{left:336.300000px;}
.x3b_c00044{left:339.450000px;}
.x5e_c00044{left:341.400000px;}
.xbf_c00044{left:343.050000px;}
.xa1_c00044{left:344.550000px;}
.x45_c00044{left:348.450000px;}
.x75_c00044{left:353.100000px;}
.x4e_c00044{left:356.400000px;}
.x68_c00044{left:359.700000px;}
.x1f_c00044{left:360.750000px;}
.xe9_c00044{left:363.000000px;}
.x5f_c00044{left:365.550000px;}
.xf7_c00044{left:366.900000px;}
.xb5_c00044{left:369.300000px;}
.x72_c00044{left:370.350000px;}
.x46_c00044{left:373.650000px;}
.x100_c00044{left:375.000000px;}
.x20_c00044{left:377.250000px;}
.xa_c00044{left:379.050000px;}
.x97_c00044{left:381.900000px;}
.x10b_c00044{left:383.100000px;}
.xae_c00044{left:386.400000px;}
.x103_c00044{left:387.750000px;}
.x7f_c00044{left:389.100000px;}
.xb6_c00044{left:391.200000px;}
.x3c_c00044{left:396.750000px;}
.xd2_c00044{left:399.450000px;}
.xdc_c00044{left:401.250000px;}
.x4f_c00044{left:403.200000px;}
.x62_c00044{left:405.750000px;}
.xc0_c00044{left:409.350000px;}
.xa2_c00044{left:411.150000px;}
.x50_c00044{left:412.950000px;}
.x8f_c00044{left:414.300000px;}
.x6_c00044{left:415.800000px;}
.x3d_c00044{left:418.650000px;}
.x21_c00044{left:420.150000px;}
.x16_c00044{left:421.650000px;}
.x32_c00044{left:423.000000px;}
.x69_c00044{left:424.800000px;}
.x76_c00044{left:426.150000px;}
.xec_c00044{left:427.950000px;}
.xb7_c00044{left:430.050000px;}
.xd5_c00044{left:432.000000px;}
.xc8_c00044{left:433.200000px;}
.xb_c00044{left:435.150000px;}
.xaf_c00044{left:437.100000px;}
.xf3_c00044{left:440.250000px;}
.x63_c00044{left:443.850000px;}
.x3_c00044{left:445.200000px;}
.xe3_c00044{left:446.400000px;}
.x51_c00044{left:448.650000px;}
.xab_c00044{left:452.250000px;}
.xf8_c00044{left:453.450000px;}
.xed_c00044{left:454.650000px;}
.x3e_c00044{left:457.200000px;}
.x87_c00044{left:459.000000px;}
.xa3_c00044{left:460.500000px;}
.x10c_c00044{left:462.150000px;}
.x84_c00044{left:463.650000px;}
.x52_c00044{left:464.850000px;}
.x101_c00044{left:465.900000px;}
.xc1_c00044{left:466.950000px;}
.x90_c00044{left:470.100000px;}
.x29_c00044{left:472.050000px;}
.x22_c00044{left:475.200000px;}
.xdf_c00044{left:476.250000px;}
.x3f_c00044{left:479.850000px;}
.x33_c00044{left:480.900000px;}
.x6a_c00044{left:482.400000px;}
.xc6_c00044{left:485.100000px;}
.x77_c00044{left:487.800000px;}
.xd6_c00044{left:495.300000px;}
.x7_c00044{left:497.100000px;}
.x17_c00044{left:500.100000px;}
.x40_c00044{left:501.750000px;}
.x34_c00044{left:505.800000px;}
.xee_c00044{left:507.150000px;}
.xb8_c00044{left:509.250000px;}
.x73_c00044{left:511.050000px;}
.x23_c00044{left:513.300000px;}
.x9e_c00044{left:516.450000px;}
.x64_c00044{left:517.950000px;}
.xea_c00044{left:519.750000px;}
.x35_c00044{left:523.800000px;}
.xc_c00044{left:525.150000px;}
.x4_c00044{left:526.500000px;}
.x88_c00044{left:527.700000px;}
.xef_c00044{left:529.050000px;}
.x24_c00044{left:531.000000px;}
.x18_c00044{left:532.500000px;}
.x53_c00044{left:533.850000px;}
.xb9_c00044{left:535.200000px;}
.x6b_c00044{left:538.500000px;}
.xca_c00044{left:542.550000px;}
.x74_c00044{left:546.300000px;}
.x2a_c00044{left:547.350000px;}
.x6c_c00044{left:548.550000px;}
.xd7_c00044{left:551.400000px;}
.x89_c00044{left:552.900000px;}
.x54_c00044{left:555.150000px;}
.x91_c00044{left:558.600000px;}
.x47_c00044{left:561.450000px;}
.x78_c00044{left:562.650000px;}
.xd_c00044{left:565.500000px;}
.x19_c00044{left:567.750000px;}
.xcb_c00044{left:570.600000px;}
.xa4_c00044{left:572.100000px;}
.x8a_c00044{left:575.550000px;}
.xd8_c00044{left:577.650000px;}
.x48_c00044{left:581.250000px;}
.x25_c00044{left:584.700000px;}
.x79_c00044{left:588.150000px;}
.xe_c00044{left:592.200000px;}
.xe0_c00044{left:593.250000px;}
.x65_c00044{left:595.350000px;}
.x55_c00044{left:599.850000px;}
.x92_c00044{left:602.100000px;}
.xa5_c00044{left:607.350000px;}
.x56_c00044{left:610.650000px;}
.xd3_c00044{left:613.050000px;}
.x7a_c00044{left:614.100000px;}
.x2b_c00044{left:617.850000px;}
.x8b_c00044{left:619.050000px;}
.x98_c00044{left:621.750000px;}
.xf4_c00044{left:626.850000px;}
.x57_c00044{left:628.350000px;}
.xa6_c00044{left:630.750000px;}
.x1a_c00044{left:632.250000px;}
.x8c_c00044{left:636.300000px;}
.xba_c00044{left:640.200000px;}
.xb0_c00044{left:642.600000px;}
.xcc_c00044{left:645.150000px;}
.x36_c00044{left:649.800000px;}
.xe4_c00044{left:654.900000px;}
.xf0_c00044{left:656.550000px;}
.x41_c00044{left:659.400000px;}
.x26_c00044{left:661.050000px;}
.x58_c00044{left:663.600000px;}
.x7b_c00044{left:667.350000px;}
.x2c_c00044{left:669.450000px;}
.xd4_c00044{left:670.650000px;}
.xe5_c00044{left:672.150000px;}
.xf_c00044{left:679.350000px;}
.x59_c00044{left:680.850000px;}
.x1b_c00044{left:683.400000px;}
.x37_c00044{left:686.100000px;}
.x99_c00044{left:690.150000px;}
.xd9_c00044{left:692.100000px;}
.xf9_c00044{left:697.500000px;}
.x27_c00044{left:700.350000px;}
.x49_c00044{left:701.400000px;}
.x38_c00044{left:704.400000px;}
.xc2_c00044{left:705.600000px;}
.xa7_c00044{left:707.850000px;}
.x93_c00044{left:709.350000px;}
.xe1_c00044{left:710.400000px;}
.x6d_c00044{left:711.900000px;}
.x2d_c00044{left:713.400000px;}
.xfa_c00044{left:717.600000px;}
.xc3_c00044{left:719.250000px;}
.xb1_c00044{left:720.750000px;}
.x2e_c00044{left:722.700000px;}
.x66_c00044{left:724.650000px;}
.x5a_c00044{left:733.050000px;}
.x10_c00044{left:736.200000px;}
.x6e_c00044{left:738.600000px;}
.x67_c00044{left:743.400000px;}
.x7c_c00044{left:746.550000px;}
.x11_c00044{left:751.650000px;}
.xeb_c00044{left:753.750000px;}
.x5b_c00044{left:755.700000px;}
.x9a_c00044{left:757.500000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:-8.703476pt;}
.ws5_c00044{word-spacing:-8.237758pt;}
.ws3_c00044{word-spacing:-5.880177pt;}
.ws6_c00044{word-spacing:0.000000pt;}
.ws4_c00044{word-spacing:3.994178pt;}
.ws1_c00044{word-spacing:4.304094pt;}
.ws2_c00044{word-spacing:1184.761905pt;}
.fs5_c00044{font-size:37.333333pt;}
.fs6_c00044{font-size:48.000000pt;}
.fs3_c00044{font-size:53.333333pt;}
.fs2_c00044{font-size:58.666667pt;}
.fs4_c00044{font-size:64.000000pt;}
.fs1_c00044{font-size:112.000000pt;}
.fs0_c00044{font-size:149.333333pt;}
.y0_c00044{bottom:0.000000pt;}
.y2f_c00044{bottom:154.266667pt;}
.y2e_c00044{bottom:168.933333pt;}
.y2d_c00044{bottom:175.733333pt;}
.y2c_c00044{bottom:179.866667pt;}
.y2b_c00044{bottom:198.400000pt;}
.y11_c00044{bottom:221.466667pt;}
.y10_c00044{bottom:237.466667pt;}
.yf_c00044{bottom:253.733333pt;}
.ye_c00044{bottom:269.066667pt;}
.yd_c00044{bottom:285.066667pt;}
.yc_c00044{bottom:304.533333pt;}
.y13_c00044{bottom:315.466667pt;}
.yb_c00044{bottom:320.266667pt;}
.ya_c00044{bottom:336.266667pt;}
.y9_c00044{bottom:352.266667pt;}
.y12_c00044{bottom:352.666667pt;}
.y8_c00044{bottom:368.266667pt;}
.y2a_c00044{bottom:384.266667pt;}
.y29_c00044{bottom:400.266667pt;}
.y28_c00044{bottom:420.133333pt;}
.y27_c00044{bottom:436.400000pt;}
.y26_c00044{bottom:452.400000pt;}
.y25_c00044{bottom:469.333333pt;}
.y24_c00044{bottom:490.133333pt;}
.y23_c00044{bottom:503.866667pt;}
.y22_c00044{bottom:519.866667pt;}
.y21_c00044{bottom:536.133333pt;}
.y20_c00044{bottom:551.866667pt;}
.y1f_c00044{bottom:573.600000pt;}
.y1e_c00044{bottom:587.733333pt;}
.y1d_c00044{bottom:603.733333pt;}
.y1c_c00044{bottom:622.666667pt;}
.y1b_c00044{bottom:635.466667pt;}
.y1a_c00044{bottom:655.600000pt;}
.y19_c00044{bottom:671.333333pt;}
.y18_c00044{bottom:690.533333pt;}
.y17_c00044{bottom:703.333333pt;}
.y16_c00044{bottom:719.333333pt;}
.y15_c00044{bottom:739.200000pt;}
.y14_c00044{bottom:755.466667pt;}
.y7_c00044{bottom:771.200000pt;}
.y6_c00044{bottom:791.066667pt;}
.y5_c00044{bottom:807.333333pt;}
.y4_c00044{bottom:823.333333pt;}
.y3_c00044{bottom:839.066667pt;}
.y2_c00044{bottom:904.666667pt;}
.y1_c00044{bottom:975.333333pt;}
.h7_c00044{height:37.333333pt;}
.h8_c00044{height:48.000000pt;}
.h5_c00044{height:53.333333pt;}
.h4_c00044{height:58.666667pt;}
.h6_c00044{height:64.000000pt;}
.h3_c00044{height:112.000000pt;}
.h2_c00044{height:149.333333pt;}
.h1_c00044{height:1128.000000pt;}
.h0_c00044{height:1128.319987pt;}
.w0_c00044{width:843.200032pt;}
.w1_c00044{width:843.333333pt;}
.x0_c00044{left:0.000000pt;}
.xcd_c00044{left:58.266667pt;}
.xf1_c00044{left:62.000000pt;}
.x82_c00044{left:63.066667pt;}
.xbb_c00044{left:64.000000pt;}
.x108_c00044{left:65.600000pt;}
.x1_c00044{left:66.533333pt;}
.xce_c00044{left:68.800000pt;}
.xbd_c00044{left:73.333333pt;}
.xc4_c00044{left:74.933333pt;}
.xa8_c00044{left:77.466667pt;}
.xc7_c00044{left:79.866667pt;}
.x9b_c00044{left:84.933333pt;}
.x80_c00044{left:86.666667pt;}
.x6f_c00044{left:87.600000pt;}
.x83_c00044{left:89.333333pt;}
.x109_c00044{left:90.933333pt;}
.xfb_c00044{left:92.133333pt;}
.x85_c00044{left:97.866667pt;}
.x94_c00044{left:103.066667pt;}
.xe6_c00044{left:104.000000pt;}
.xb2_c00044{left:105.600000pt;}
.x86_c00044{left:107.466667pt;}
.x81_c00044{left:109.733333pt;}
.xac_c00044{left:110.933333pt;}
.xda_c00044{left:112.800000pt;}
.xf2_c00044{left:116.133333pt;}
.x9f_c00044{left:117.600000pt;}
.xfc_c00044{left:119.333333pt;}
.xdd_c00044{left:120.533333pt;}
.xa9_c00044{left:126.666667pt;}
.xb3_c00044{left:128.666667pt;}
.xe7_c00044{left:130.266667pt;}
.x8d_c00044{left:136.266667pt;}
.xde_c00044{left:137.200000pt;}
.xaa_c00044{left:141.066667pt;}
.xfd_c00044{left:149.066667pt;}
.xf5_c00044{left:151.466667pt;}
.x102_c00044{left:160.400000pt;}
.x8_c00044{left:166.666667pt;}
.x60_c00044{left:168.266667pt;}
.x95_c00044{left:173.733333pt;}
.x10a_c00044{left:178.933333pt;}
.x5_c00044{left:181.466667pt;}
.x2_c00044{left:182.666667pt;}
.x2f_c00044{left:184.000000pt;}
.x70_c00044{left:184.933333pt;}
.xfe_c00044{left:188.400000pt;}
.x104_c00044{left:192.000000pt;}
.xbe_c00044{left:199.066667pt;}
.x42_c00044{left:200.266667pt;}
.xcf_c00044{left:202.133333pt;}
.x4a_c00044{left:203.733333pt;}
.xbc_c00044{left:206.800000pt;}
.x7d_c00044{left:208.533333pt;}
.x39_c00044{left:211.466667pt;}
.xff_c00044{left:214.000000pt;}
.x1c_c00044{left:216.666667pt;}
.xe2_c00044{left:218.133333pt;}
.x4b_c00044{left:222.666667pt;}
.x71_c00044{left:223.600000pt;}
.x30_c00044{left:228.533333pt;}
.xdb_c00044{left:230.533333pt;}
.xf6_c00044{left:232.000000pt;}
.x12_c00044{left:234.533333pt;}
.xc5_c00044{left:237.200000pt;}
.x4c_c00044{left:238.400000pt;}
.xe8_c00044{left:240.133333pt;}
.xa0_c00044{left:241.333333pt;}
.x43_c00044{left:242.533333pt;}
.x5c_c00044{left:244.266667pt;}
.x9c_c00044{left:247.600000pt;}
.xd0_c00044{left:248.800000pt;}
.x13_c00044{left:250.266667pt;}
.x105_c00044{left:255.333333pt;}
.xc9_c00044{left:256.666667pt;}
.xb4_c00044{left:258.533333pt;}
.x1d_c00044{left:261.466667pt;}
.x106_c00044{left:262.400000pt;}
.x28_c00044{left:264.000000pt;}
.xad_c00044{left:265.066667pt;}
.x9_c00044{left:266.533333pt;}
.x61_c00044{left:267.466667pt;}
.x9d_c00044{left:268.666667pt;}
.x8e_c00044{left:269.733333pt;}
.x44_c00044{left:271.333333pt;}
.x7e_c00044{left:272.266667pt;}
.x14_c00044{left:274.000000pt;}
.x107_c00044{left:275.466667pt;}
.xd1_c00044{left:277.600000pt;}
.x1e_c00044{left:282.266667pt;}
.x3a_c00044{left:283.200000pt;}
.x5d_c00044{left:284.933333pt;}
.x96_c00044{left:291.200000pt;}
.x4d_c00044{left:292.800000pt;}
.x31_c00044{left:296.000000pt;}
.x15_c00044{left:298.933333pt;}
.x3b_c00044{left:301.733333pt;}
.x5e_c00044{left:303.466667pt;}
.xbf_c00044{left:304.933333pt;}
.xa1_c00044{left:306.266667pt;}
.x45_c00044{left:309.733333pt;}
.x75_c00044{left:313.866667pt;}
.x4e_c00044{left:316.800000pt;}
.x68_c00044{left:319.733333pt;}
.x1f_c00044{left:320.666667pt;}
.xe9_c00044{left:322.666667pt;}
.x5f_c00044{left:324.933333pt;}
.xf7_c00044{left:326.133333pt;}
.xb5_c00044{left:328.266667pt;}
.x72_c00044{left:329.200000pt;}
.x46_c00044{left:332.133333pt;}
.x100_c00044{left:333.333333pt;}
.x20_c00044{left:335.333333pt;}
.xa_c00044{left:336.933333pt;}
.x97_c00044{left:339.466667pt;}
.x10b_c00044{left:340.533333pt;}
.xae_c00044{left:343.466667pt;}
.x103_c00044{left:344.666667pt;}
.x7f_c00044{left:345.866667pt;}
.xb6_c00044{left:347.733333pt;}
.x3c_c00044{left:352.666667pt;}
.xd2_c00044{left:355.066667pt;}
.xdc_c00044{left:356.666667pt;}
.x4f_c00044{left:358.400000pt;}
.x62_c00044{left:360.666667pt;}
.xc0_c00044{left:363.866667pt;}
.xa2_c00044{left:365.466667pt;}
.x50_c00044{left:367.066667pt;}
.x8f_c00044{left:368.266667pt;}
.x6_c00044{left:369.600000pt;}
.x3d_c00044{left:372.133333pt;}
.x21_c00044{left:373.466667pt;}
.x16_c00044{left:374.800000pt;}
.x32_c00044{left:376.000000pt;}
.x69_c00044{left:377.600000pt;}
.x76_c00044{left:378.800000pt;}
.xec_c00044{left:380.400000pt;}
.xb7_c00044{left:382.266667pt;}
.xd5_c00044{left:384.000000pt;}
.xc8_c00044{left:385.066667pt;}
.xb_c00044{left:386.800000pt;}
.xaf_c00044{left:388.533333pt;}
.xf3_c00044{left:391.333333pt;}
.x63_c00044{left:394.533333pt;}
.x3_c00044{left:395.733333pt;}
.xe3_c00044{left:396.800000pt;}
.x51_c00044{left:398.800000pt;}
.xab_c00044{left:402.000000pt;}
.xf8_c00044{left:403.066667pt;}
.xed_c00044{left:404.133333pt;}
.x3e_c00044{left:406.400000pt;}
.x87_c00044{left:408.000000pt;}
.xa3_c00044{left:409.333333pt;}
.x10c_c00044{left:410.800000pt;}
.x84_c00044{left:412.133333pt;}
.x52_c00044{left:413.200000pt;}
.x101_c00044{left:414.133333pt;}
.xc1_c00044{left:415.066667pt;}
.x90_c00044{left:417.866667pt;}
.x29_c00044{left:419.600000pt;}
.x22_c00044{left:422.400000pt;}
.xdf_c00044{left:423.333333pt;}
.x3f_c00044{left:426.533333pt;}
.x33_c00044{left:427.466667pt;}
.x6a_c00044{left:428.800000pt;}
.xc6_c00044{left:431.200000pt;}
.x77_c00044{left:433.600000pt;}
.xd6_c00044{left:440.266667pt;}
.x7_c00044{left:441.866667pt;}
.x17_c00044{left:444.533333pt;}
.x40_c00044{left:446.000000pt;}
.x34_c00044{left:449.600000pt;}
.xee_c00044{left:450.800000pt;}
.xb8_c00044{left:452.666667pt;}
.x73_c00044{left:454.266667pt;}
.x23_c00044{left:456.266667pt;}
.x9e_c00044{left:459.066667pt;}
.x64_c00044{left:460.400000pt;}
.xea_c00044{left:462.000000pt;}
.x35_c00044{left:465.600000pt;}
.xc_c00044{left:466.800000pt;}
.x4_c00044{left:468.000000pt;}
.x88_c00044{left:469.066667pt;}
.xef_c00044{left:470.266667pt;}
.x24_c00044{left:472.000000pt;}
.x18_c00044{left:473.333333pt;}
.x53_c00044{left:474.533333pt;}
.xb9_c00044{left:475.733333pt;}
.x6b_c00044{left:478.666667pt;}
.xca_c00044{left:482.266667pt;}
.x74_c00044{left:485.600000pt;}
.x2a_c00044{left:486.533333pt;}
.x6c_c00044{left:487.600000pt;}
.xd7_c00044{left:490.133333pt;}
.x89_c00044{left:491.466667pt;}
.x54_c00044{left:493.466667pt;}
.x91_c00044{left:496.533333pt;}
.x47_c00044{left:499.066667pt;}
.x78_c00044{left:500.133333pt;}
.xd_c00044{left:502.666667pt;}
.x19_c00044{left:504.666667pt;}
.xcb_c00044{left:507.200000pt;}
.xa4_c00044{left:508.533333pt;}
.x8a_c00044{left:511.600000pt;}
.xd8_c00044{left:513.466667pt;}
.x48_c00044{left:516.666667pt;}
.x25_c00044{left:519.733333pt;}
.x79_c00044{left:522.800000pt;}
.xe_c00044{left:526.400000pt;}
.xe0_c00044{left:527.333333pt;}
.x65_c00044{left:529.200000pt;}
.x55_c00044{left:533.200000pt;}
.x92_c00044{left:535.200000pt;}
.xa5_c00044{left:539.866667pt;}
.x56_c00044{left:542.800000pt;}
.xd3_c00044{left:544.933333pt;}
.x7a_c00044{left:545.866667pt;}
.x2b_c00044{left:549.200000pt;}
.x8b_c00044{left:550.266667pt;}
.x98_c00044{left:552.666667pt;}
.xf4_c00044{left:557.200000pt;}
.x57_c00044{left:558.533333pt;}
.xa6_c00044{left:560.666667pt;}
.x1a_c00044{left:562.000000pt;}
.x8c_c00044{left:565.600000pt;}
.xba_c00044{left:569.066667pt;}
.xb0_c00044{left:571.200000pt;}
.xcc_c00044{left:573.466667pt;}
.x36_c00044{left:577.600000pt;}
.xe4_c00044{left:582.133333pt;}
.xf0_c00044{left:583.600000pt;}
.x41_c00044{left:586.133333pt;}
.x26_c00044{left:587.600000pt;}
.x58_c00044{left:589.866667pt;}
.x7b_c00044{left:593.200000pt;}
.x2c_c00044{left:595.066667pt;}
.xd4_c00044{left:596.133333pt;}
.xe5_c00044{left:597.466667pt;}
.xf_c00044{left:603.866667pt;}
.x59_c00044{left:605.200000pt;}
.x1b_c00044{left:607.466667pt;}
.x37_c00044{left:609.866667pt;}
.x99_c00044{left:613.466667pt;}
.xd9_c00044{left:615.200000pt;}
.xf9_c00044{left:620.000000pt;}
.x27_c00044{left:622.533333pt;}
.x49_c00044{left:623.466667pt;}
.x38_c00044{left:626.133333pt;}
.xc2_c00044{left:627.200000pt;}
.xa7_c00044{left:629.200000pt;}
.x93_c00044{left:630.533333pt;}
.xe1_c00044{left:631.466667pt;}
.x6d_c00044{left:632.800000pt;}
.x2d_c00044{left:634.133333pt;}
.xfa_c00044{left:637.866667pt;}
.xc3_c00044{left:639.333333pt;}
.xb1_c00044{left:640.666667pt;}
.x2e_c00044{left:642.400000pt;}
.x66_c00044{left:644.133333pt;}
.x5a_c00044{left:651.600000pt;}
.x10_c00044{left:654.400000pt;}
.x6e_c00044{left:656.533333pt;}
.x67_c00044{left:660.800000pt;}
.x7c_c00044{left:663.600000pt;}
.x11_c00044{left:668.133333pt;}
.xeb_c00044{left:670.000000pt;}
.x5b_c00044{left:671.733333pt;}
.x9a_c00044{left:673.333333pt;}
}





/* 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_c00045 {
    display:none;
  }
  .loading-indicator_c00045.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00045 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_c00045 { 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_c00045" -> "#page-container .classname_c00045")
 */
.pf_c00045 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00045 { /* 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_c00045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00045 { /* 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_c00045 { /* 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_c00045 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00045 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00045 {overflow:visible;}
  }
}
.c_c00045 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00045 { /* 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_c00045:after { /* webkit #35443 */
  content: '';
}
.t_c00045:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00045 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 */
}
.__c00045 { /* 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_c00045 { /* info for Javascript */
  display:none;
}
.l_c00045 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00045 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00045 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00045: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_c00045 {
    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_c00045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00045.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_c00045 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00045;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.000000;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;}
.m8c_c00045{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m80_c00045{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m28_c00045{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m68_c00045{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m40_c00045{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m98_c00045{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m57_c00045{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m67_c00045{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mea_c00045{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m72_c00045{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m41_c00045{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m56_c00045{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00045{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.maa_c00045{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m42_c00045{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m46_c00045{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00045{transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00045{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m59_c00045{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00045{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me5_c00045{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m37_c00045{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00045{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m31_c00045{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00045{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9_c00045{transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);}
.m19_c00045{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00045{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m8_c00045{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.maf_c00045{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00045{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m55_c00045{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mce_c00045{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.md0_c00045{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.m44_c00045{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me6_c00045{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00045{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me_c00045{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.md4_c00045{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.mad_c00045{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me8_c00045{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10_c00045{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00045{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m11_c00045{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00045{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00045{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m90_c00045{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00045{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00045{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md_c00045{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m47_c00045{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00045{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m53_c00045{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m71_c00045{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00045{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mf_c00045{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00045{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00045{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me3_c00045{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m62_c00045{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00045{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00045{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m73_c00045{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00045{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m96_c00045{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00045{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00045{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md5_c00045{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mac_c00045{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00045{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00045{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.meb_c00045{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00045{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m66_c00045{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00045{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00045{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00045{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m60_c00045{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m25_c00045{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00045{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00045{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m52_c00045{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00045{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md2_c00045{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00045{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m65_c00045{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00045{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00045{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m15_c00045{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m54_c00045{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m16_c00045{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m85_c00045{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00045{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m89_c00045{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me1_c00045{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mda_c00045{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m77_c00045{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m78_c00045{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00045{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00045{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m82_c00045{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m13_c00045{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m69_c00045{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00045{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md6_c00045{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00045{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mae_c00045{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00045{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md9_c00045{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00045{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00045{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m22_c00045{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m50_c00045{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00045{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m64_c00045{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m88_c00045{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mba_c00045{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me0_c00045{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00045{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00045{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m14_c00045{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00045{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00045{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m91_c00045{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00045{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00045{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m74_c00045{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m87_c00045{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md7_c00045{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m75_c00045{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00045{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m51_c00045{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m23_c00045{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m95_c00045{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00045{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m12_c00045{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m83_c00045{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me9_c00045{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m63_c00045{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00045{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00045{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00045{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m86_c00045{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.me2_c00045{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m24_c00045{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00045{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m94_c00045{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00045{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00045{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00045{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.md8_c00045{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00045{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me7_c00045{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m20_c00045{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m43_c00045{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00045{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00045{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mab_c00045{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m26_c00045{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc_c00045{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00045{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00045{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00045{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00045{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00045{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00045{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00045{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m39_c00045{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00045{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00045{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00045{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m5_c00045{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00045{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00045{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00045{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00045{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m76_c00045{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00045{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m38_c00045{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mec_c00045{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00045{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb_c00045{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md1_c00045{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m17_c00045{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m61_c00045{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00045{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m84_c00045{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00045{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00045{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00045{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m70_c00045{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00045{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00045{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00045{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00045{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00045{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m36_c00045{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00045{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mef_c00045{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m33_c00045{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m81_c00045{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00045{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m32_c00045{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00045{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m48_c00045{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.md3_c00045{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00045{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.me4_c00045{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m79_c00045{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.med_c00045{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m92_c00045{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00045{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00045{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m35_c00045{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m93_c00045{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00045{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mde_c00045{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00045{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00045{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m49_c00045{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00045{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00045{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00045{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00045{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m7_c00045{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m2_c00045{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m97_c00045{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00045{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c00045{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00045{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mca_c00045{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00045{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.m0_c00045{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00045{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00045{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m99_c00045{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00045{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.m6_c00045{transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m3_c00045{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00045{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.m29_c00045{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m34_c00045{transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);}
.m45_c00045{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.m27_c00045{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m18_c00045{transform:matrix(0.423000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423000,0.000000,0.000000,0.250000,0,0);}
.m30_c00045{transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);}
.mee_c00045{transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00045{transform:matrix(0.484750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00045{transform:matrix(0.554250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554250,0.000000,0.000000,0.250000,0,0);}
.m58_c00045{transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls0_c00045{letter-spacing:0.000000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{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__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00045{word-spacing:-11.849162px;}
.ws4_c00045{word-spacing:-8.268041px;}
.wsd_c00045{word-spacing:0.000000px;}
.ws9_c00045{word-spacing:1.008593px;}
.ws7_c00045{word-spacing:4.807860px;}
.wsc_c00045{word-spacing:7.160839px;}
.wsa_c00045{word-spacing:18.586957px;}
.ws3_c00045{word-spacing:47.500000px;}
.ws1_c00045{word-spacing:251.877551px;}
.wsb_c00045{word-spacing:379.714286px;}
.ws2_c00045{word-spacing:398.125000px;}
.ws0_c00045{word-spacing:710.833333px;}
.ws6_c00045{word-spacing:1024.076336px;}
.ws8_c00045{word-spacing:2937.428571px;}
.fc0_c00045{color:transparent;}
.fs5_c00045{font-size:30.000000px;}
.fs4_c00045{font-size:42.000000px;}
.fs3_c00045{font-size:48.000000px;}
.fs2_c00045{font-size:60.000000px;}
.fs1_c00045{font-size:66.000000px;}
.fs6_c00045{font-size:72.000000px;}
.fs0_c00045{font-size:84.000000px;}
.y0_c00045{bottom:0.000000px;}
.y38_c00045{bottom:4.650000px;}
.y37_c00045{bottom:169.650000px;}
.y36_c00045{bottom:188.700000px;}
.y35_c00045{bottom:208.500000px;}
.y2f_c00045{bottom:236.550000px;}
.y2e_c00045{bottom:254.550000px;}
.y2d_c00045{bottom:285.450000px;}
.y32_c00045{bottom:303.450000px;}
.y33_c00045{bottom:304.950000px;}
.y2c_c00045{bottom:306.000000px;}
.y31_c00045{bottom:323.700000px;}
.y30_c00045{bottom:339.900000px;}
.y29_c00045{bottom:357.900000px;}
.y28_c00045{bottom:381.300000px;}
.y27_c00045{bottom:398.250000px;}
.y34_c00045{bottom:414.750000px;}
.y26_c00045{bottom:417.000000px;}
.y2b_c00045{bottom:420.150000px;}
.y25_c00045{bottom:434.250000px;}
.y24_c00045{bottom:452.550000px;}
.y23_c00045{bottom:474.450000px;}
.y22_c00045{bottom:492.450000px;}
.y2a_c00045{bottom:510.150000px;}
.y21_c00045{bottom:510.450000px;}
.y20_c00045{bottom:529.950000px;}
.y1f_c00045{bottom:546.450000px;}
.y1d_c00045{bottom:566.550000px;}
.y1e_c00045{bottom:568.800000px;}
.y1c_c00045{bottom:569.850000px;}
.y1b_c00045{bottom:587.100000px;}
.y18_c00045{bottom:605.100000px;}
.y17_c00045{bottom:627.900000px;}
.y1a_c00045{bottom:645.900000px;}
.y16_c00045{bottom:647.400000px;}
.y15_c00045{bottom:663.900000px;}
.y14_c00045{bottom:686.550000px;}
.y13_c00045{bottom:704.550000px;}
.y19_c00045{bottom:713.550000px;}
.y12_c00045{bottom:722.850000px;}
.y11_c00045{bottom:740.850000px;}
.y10_c00045{bottom:763.200000px;}
.yf_c00045{bottom:781.200000px;}
.yd_c00045{bottom:794.550000px;}
.ye_c00045{bottom:798.150000px;}
.yc_c00045{bottom:808.500000px;}
.yb_c00045{bottom:826.200000px;}
.ya_c00045{bottom:842.400000px;}
.y9_c00045{bottom:862.500000px;}
.y8_c00045{bottom:880.200000px;}
.y7_c00045{bottom:915.900000px;}
.y6_c00045{bottom:972.300000px;}
.y5_c00045{bottom:974.100000px;}
.y4_c00045{bottom:1009.800000px;}
.y3_c00045{bottom:1048.350000px;}
.y2_c00045{bottom:1065.900000px;}
.y1_c00045{bottom:1110.300000px;}
.h7_c00045{height:30.000000px;}
.h6_c00045{height:42.000000px;}
.h5_c00045{height:48.000000px;}
.h4_c00045{height:60.000000px;}
.h3_c00045{height:66.000000px;}
.h8_c00045{height:72.000000px;}
.h2_c00045{height:84.000000px;}
.h1_c00045{height:1270.500000px;}
.h0_c00045{height:1270.799927px;}
.w0_c00045{width:948.600036px;}
.w1_c00045{width:948.750000px;}
.x0_c00045{left:0.000000px;}
.x104_c00045{left:178.050000px;}
.xf7_c00045{left:182.100000px;}
.xfd_c00045{left:183.900000px;}
.xe1_c00045{left:186.450000px;}
.xa1_c00045{left:188.250000px;}
.x9_c00045{left:189.300000px;}
.x64_c00045{left:192.750000px;}
.x27_c00045{left:201.600000px;}
.xf8_c00045{left:204.450000px;}
.x1_c00045{left:207.300000px;}
.x6f_c00045{left:209.850000px;}
.xa2_c00045{left:211.350000px;}
.xa0_c00045{left:214.200000px;}
.xa_c00045{left:216.300000px;}
.x28_c00045{left:228.300000px;}
.x58_c00045{left:245.550000px;}
.xb_c00045{left:247.650000px;}
.x4e_c00045{left:250.050000px;}
.x59_c00045{left:254.550000px;}
.x70_c00045{left:263.850000px;}
.xfe_c00045{left:268.800000px;}
.x71_c00045{left:270.750000px;}
.xec_c00045{left:279.000000px;}
.x42_c00045{left:284.400000px;}
.x98_c00045{left:286.500000px;}
.xe2_c00045{left:290.100000px;}
.x3c_c00045{left:292.200000px;}
.x29_c00045{left:293.400000px;}
.xff_c00045{left:294.900000px;}
.x1b_c00045{left:296.700000px;}
.x43_c00045{left:298.500000px;}
.xc4_c00045{left:301.350000px;}
.xaa_c00045{left:303.900000px;}
.x99_c00045{left:305.550000px;}
.x8d_c00045{left:306.750000px;}
.x65_c00045{left:307.950000px;}
.x45_c00045{left:309.450000px;}
.xd0_c00045{left:310.650000px;}
.x34_c00045{left:312.450000px;}
.x1c_c00045{left:313.650000px;}
.xe8_c00045{left:316.050000px;}
.xd1_c00045{left:318.900000px;}
.xb5_c00045{left:320.100000px;}
.xa3_c00045{left:322.200000px;}
.x91_c00045{left:323.850000px;}
.x72_c00045{left:325.050000px;}
.x82_c00045{left:326.100000px;}
.x2a_c00045{left:331.500000px;}
.x46_c00045{left:335.400000px;}
.xb8_c00045{left:338.400000px;}
.x2f_c00045{left:339.900000px;}
.x35_c00045{left:341.550000px;}
.x84_c00045{left:342.750000px;}
.xbe_c00045{left:345.300000px;}
.x3d_c00045{left:351.300000px;}
.x5a_c00045{left:352.350000px;}
.x2_c00045{left:355.650000px;}
.x3e_c00045{left:362.850000px;}
.x47_c00045{left:366.750000px;}
.x7a_c00045{left:367.950000px;}
.x73_c00045{left:371.100000px;}
.x48_c00045{left:374.700000px;}
.xe9_c00045{left:375.750000px;}
.x1d_c00045{left:377.400000px;}
.x4f_c00045{left:379.350000px;}
.x30_c00045{left:382.350000px;}
.xc_c00045{left:384.150000px;}
.xab_c00045{left:385.200000px;}
.xf0_c00045{left:386.250000px;}
.x1e_c00045{left:387.900000px;}
.x105_c00045{left:389.400000px;}
.x109_c00045{left:391.050000px;}
.xb6_c00045{left:392.100000px;}
.x18_c00045{left:393.450000px;}
.xc5_c00045{left:395.250000px;}
.x2b_c00045{left:398.100000px;}
.xdc_c00045{left:399.450000px;}
.xea_c00045{left:402.450000px;}
.xa4_c00045{left:405.450000px;}
.x31_c00045{left:406.500000px;}
.x2c_c00045{left:408.600000px;}
.x3_c00045{left:409.650000px;}
.x85_c00045{left:412.200000px;}
.xb9_c00045{left:413.700000px;}
.x3f_c00045{left:415.800000px;}
.x66_c00045{left:417.750000px;}
.x19_c00045{left:421.200000px;}
.xbf_c00045{left:423.450000px;}
.x67_c00045{left:427.050000px;}
.x44_c00045{left:428.550000px;}
.xf9_c00045{left:432.600000px;}
.xd2_c00045{left:433.800000px;}
.x50_c00045{left:435.450000px;}
.x14_c00045{left:437.400000px;}
.x7b_c00045{left:439.650000px;}
.x83_c00045{left:442.650000px;}
.xd3_c00045{left:444.900000px;}
.xe3_c00045{left:449.250000px;}
.x2d_c00045{left:453.600000px;}
.x86_c00045{left:455.700000px;}
.xba_c00045{left:457.650000px;}
.xb2_c00045{left:459.000000px;}
.xc6_c00045{left:460.800000px;}
.x32_c00045{left:462.300000px;}
.x97_c00045{left:464.250000px;}
.xe4_c00045{left:469.050000px;}
.x51_c00045{left:470.400000px;}
.xd4_c00045{left:471.900000px;}
.x1a_c00045{left:476.700000px;}
.xbb_c00045{left:477.750000px;}
.x87_c00045{left:479.100000px;}
.x74_c00045{left:480.900000px;}
.x15_c00045{left:482.100000px;}
.x2e_c00045{left:484.500000px;}
.x7c_c00045{left:485.700000px;}
.x106_c00045{left:488.400000px;}
.x40_c00045{left:489.600000px;}
.x9a_c00045{left:490.800000px;}
.xf1_c00045{left:495.000000px;}
.x1f_c00045{left:496.200000px;}
.x49_c00045{left:497.550000px;}
.x52_c00045{left:499.500000px;}
.xb7_c00045{left:500.850000px;}
.xa5_c00045{left:502.950000px;}
.x41_c00045{left:506.850000px;}
.xc7_c00045{left:509.100000px;}
.xfa_c00045{left:510.750000px;}
.x75_c00045{left:512.550000px;}
.xd_c00045{left:515.850000px;}
.x5b_c00045{left:518.700000px;}
.x92_c00045{left:520.050000px;}
.xbc_c00045{left:522.750000px;}
.xac_c00045{left:523.800000px;}
.x16_c00045{left:526.350000px;}
.x7d_c00045{left:527.400000px;}
.x9b_c00045{left:530.100000px;}
.x100_c00045{left:531.300000px;}
.x88_c00045{left:532.800000px;}
.xc0_c00045{left:536.100000px;}
.x4_c00045{left:539.250000px;}
.xd5_c00045{left:544.350000px;}
.x36_c00045{left:546.000000px;}
.xe5_c00045{left:549.000000px;}
.x7e_c00045{left:550.800000px;}
.xed_c00045{left:552.450000px;}
.x68_c00045{left:554.100000px;}
.xf2_c00045{left:557.250000px;}
.xd7_c00045{left:561.600000px;}
.x5c_c00045{left:562.950000px;}
.xad_c00045{left:564.900000px;}
.x10a_c00045{left:567.750000px;}
.xdd_c00045{left:568.800000px;}
.x17_c00045{left:569.850000px;}
.xd6_c00045{left:571.350000px;}
.x5d_c00045{left:573.750000px;}
.xc8_c00045{left:574.950000px;}
.x101_c00045{left:576.900000px;}
.x7f_c00045{left:578.850000px;}
.xfb_c00045{left:580.950000px;}
.xa6_c00045{left:583.200000px;}
.x9c_c00045{left:587.700000px;}
.x80_c00045{left:590.400000px;}
.x5_c00045{left:594.750000px;}
.x20_c00045{left:596.550000px;}
.xc9_c00045{left:599.400000px;}
.x4a_c00045{left:603.450000px;}
.x93_c00045{left:604.650000px;}
.xf3_c00045{left:605.850000px;}
.xae_c00045{left:612.450000px;}
.xca_c00045{left:613.800000px;}
.x69_c00045{left:615.750000px;}
.x37_c00045{left:616.950000px;}
.x53_c00045{left:619.050000px;}
.x21_c00045{left:620.250000px;}
.xf4_c00045{left:623.100000px;}
.xaf_c00045{left:625.800000px;}
.x76_c00045{left:627.000000px;}
.x4b_c00045{left:631.200000px;}
.x9d_c00045{left:633.450000px;}
.x8c_c00045{left:635.100000px;}
.xee_c00045{left:636.750000px;}
.x77_c00045{left:643.500000px;}
.x5e_c00045{left:645.450000px;}
.xe_c00045{left:646.950000px;}
.x6a_c00045{left:649.200000px;}
.xd8_c00045{left:650.850000px;}
.xc1_c00045{left:653.550000px;}
.xcb_c00045{left:658.050000px;}
.xa7_c00045{left:660.300000px;}
.xb3_c00045{left:663.150000px;}
.x22_c00045{left:664.200000px;}
.xc2_c00045{left:665.400000px;}
.xb0_c00045{left:667.200000px;}
.x10d_c00045{left:668.400000px;}
.x94_c00045{left:670.500000px;}
.xd9_c00045{left:672.750000px;}
.x54_c00045{left:675.150000px;}
.x6b_c00045{left:676.950000px;}
.x4c_c00045{left:678.750000px;}
.xe6_c00045{left:680.100000px;}
.x33_c00045{left:681.150000px;}
.x6_c00045{left:682.950000px;}
.x89_c00045{left:684.600000px;}
.x9e_c00045{left:686.400000px;}
.xa8_c00045{left:688.800000px;}
.x5f_c00045{left:691.050000px;}
.x95_c00045{left:694.950000px;}
.xb1_c00045{left:697.800000px;}
.x8e_c00045{left:700.800000px;}
.x4d_c00045{left:702.150000px;}
.xde_c00045{left:704.100000px;}
.xda_c00045{left:705.450000px;}
.x8a_c00045{left:708.750000px;}
.xc3_c00045{left:711.450000px;}
.x10b_c00045{left:713.550000px;}
.xf_c00045{left:715.350000px;}
.x23_c00045{left:716.700000px;}
.x6c_c00045{left:718.650000px;}
.x7_c00045{left:720.450000px;}
.xeb_c00045{left:721.800000px;}
.xfc_c00045{left:723.150000px;}
.xdb_c00045{left:727.050000px;}
.xe7_c00045{left:729.000000px;}
.xcc_c00045{left:730.500000px;}
.xbd_c00045{left:733.200000px;}
.x8f_c00045{left:734.250000px;}
.x38_c00045{left:739.650000px;}
.x102_c00045{left:742.200000px;}
.x60_c00045{left:745.350000px;}
.xb4_c00045{left:747.000000px;}
.x24_c00045{left:751.200000px;}
.x39_c00045{left:754.050000px;}
.xf5_c00045{left:755.250000px;}
.x10c_c00045{left:757.500000px;}
.x10_c00045{left:758.850000px;}
.x55_c00045{left:761.850000px;}
.x61_c00045{left:770.550000px;}
.x8_c00045{left:775.950000px;}
.xce_c00045{left:777.600000px;}
.x81_c00045{left:779.700000px;}
.x25_c00045{left:787.500000px;}
.xdf_c00045{left:788.550000px;}
.x78_c00045{left:790.050000px;}
.x11_c00045{left:792.750000px;}
.x6d_c00045{left:796.800000px;}
.x3a_c00045{left:798.300000px;}
.x56_c00045{left:802.500000px;}
.xef_c00045{left:807.750000px;}
.x79_c00045{left:809.100000px;}
.x26_c00045{left:810.600000px;}
.x62_c00045{left:813.750000px;}
.xf6_c00045{left:820.800000px;}
.x107_c00045{left:823.500000px;}
.x57_c00045{left:826.650000px;}
.xcd_c00045{left:827.700000px;}
.x103_c00045{left:829.650000px;}
.x108_c00045{left:831.750000px;}
.x12_c00045{left:833.400000px;}
.x90_c00045{left:835.050000px;}
.x6e_c00045{left:837.150000px;}
.x10e_c00045{left:842.250000px;}
.x63_c00045{left:845.850000px;}
.x3b_c00045{left:847.650000px;}
.x96_c00045{left:848.700000px;}
.xa9_c00045{left:853.350000px;}
.x9f_c00045{left:854.850000px;}
.xcf_c00045{left:856.050000px;}
.xe0_c00045{left:859.050000px;}
.x13_c00045{left:861.150000px;}
.x8b_c00045{left:874.050000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws5_c00045{word-spacing:-10.532588pt;}
.ws4_c00045{word-spacing:-7.349370pt;}
.wsd_c00045{word-spacing:0.000000pt;}
.ws9_c00045{word-spacing:0.896527pt;}
.ws7_c00045{word-spacing:4.273654pt;}
.wsc_c00045{word-spacing:6.365190pt;}
.wsa_c00045{word-spacing:16.521739pt;}
.ws3_c00045{word-spacing:42.222222pt;}
.ws1_c00045{word-spacing:223.891156pt;}
.wsb_c00045{word-spacing:337.523810pt;}
.ws2_c00045{word-spacing:353.888889pt;}
.ws0_c00045{word-spacing:631.851852pt;}
.ws6_c00045{word-spacing:910.290076pt;}
.ws8_c00045{word-spacing:2611.047619pt;}
.fs5_c00045{font-size:26.666667pt;}
.fs4_c00045{font-size:37.333333pt;}
.fs3_c00045{font-size:42.666667pt;}
.fs2_c00045{font-size:53.333333pt;}
.fs1_c00045{font-size:58.666667pt;}
.fs6_c00045{font-size:64.000000pt;}
.fs0_c00045{font-size:74.666667pt;}
.y0_c00045{bottom:0.000000pt;}
.y38_c00045{bottom:4.133333pt;}
.y37_c00045{bottom:150.800000pt;}
.y36_c00045{bottom:167.733333pt;}
.y35_c00045{bottom:185.333333pt;}
.y2f_c00045{bottom:210.266667pt;}
.y2e_c00045{bottom:226.266667pt;}
.y2d_c00045{bottom:253.733333pt;}
.y32_c00045{bottom:269.733333pt;}
.y33_c00045{bottom:271.066667pt;}
.y2c_c00045{bottom:272.000000pt;}
.y31_c00045{bottom:287.733333pt;}
.y30_c00045{bottom:302.133333pt;}
.y29_c00045{bottom:318.133333pt;}
.y28_c00045{bottom:338.933333pt;}
.y27_c00045{bottom:354.000000pt;}
.y34_c00045{bottom:368.666667pt;}
.y26_c00045{bottom:370.666667pt;}
.y2b_c00045{bottom:373.466667pt;}
.y25_c00045{bottom:386.000000pt;}
.y24_c00045{bottom:402.266667pt;}
.y23_c00045{bottom:421.733333pt;}
.y22_c00045{bottom:437.733333pt;}
.y2a_c00045{bottom:453.466667pt;}
.y21_c00045{bottom:453.733333pt;}
.y20_c00045{bottom:471.066667pt;}
.y1f_c00045{bottom:485.733333pt;}
.y1d_c00045{bottom:503.600000pt;}
.y1e_c00045{bottom:505.600000pt;}
.y1c_c00045{bottom:506.533333pt;}
.y1b_c00045{bottom:521.866667pt;}
.y18_c00045{bottom:537.866667pt;}
.y17_c00045{bottom:558.133333pt;}
.y1a_c00045{bottom:574.133333pt;}
.y16_c00045{bottom:575.466667pt;}
.y15_c00045{bottom:590.133333pt;}
.y14_c00045{bottom:610.266667pt;}
.y13_c00045{bottom:626.266667pt;}
.y19_c00045{bottom:634.266667pt;}
.y12_c00045{bottom:642.533333pt;}
.y11_c00045{bottom:658.533333pt;}
.y10_c00045{bottom:678.400000pt;}
.yf_c00045{bottom:694.400000pt;}
.yd_c00045{bottom:706.266667pt;}
.ye_c00045{bottom:709.466667pt;}
.yc_c00045{bottom:718.666667pt;}
.yb_c00045{bottom:734.400000pt;}
.ya_c00045{bottom:748.800000pt;}
.y9_c00045{bottom:766.666667pt;}
.y8_c00045{bottom:782.400000pt;}
.y7_c00045{bottom:814.133333pt;}
.y6_c00045{bottom:864.266667pt;}
.y5_c00045{bottom:865.866667pt;}
.y4_c00045{bottom:897.600000pt;}
.y3_c00045{bottom:931.866667pt;}
.y2_c00045{bottom:947.466667pt;}
.y1_c00045{bottom:986.933333pt;}
.h7_c00045{height:26.666667pt;}
.h6_c00045{height:37.333333pt;}
.h5_c00045{height:42.666667pt;}
.h4_c00045{height:53.333333pt;}
.h3_c00045{height:58.666667pt;}
.h8_c00045{height:64.000000pt;}
.h2_c00045{height:74.666667pt;}
.h1_c00045{height:1129.333333pt;}
.h0_c00045{height:1129.599935pt;}
.w0_c00045{width:843.200032pt;}
.w1_c00045{width:843.333333pt;}
.x0_c00045{left:0.000000pt;}
.x104_c00045{left:158.266667pt;}
.xf7_c00045{left:161.866667pt;}
.xfd_c00045{left:163.466667pt;}
.xe1_c00045{left:165.733333pt;}
.xa1_c00045{left:167.333333pt;}
.x9_c00045{left:168.266667pt;}
.x64_c00045{left:171.333333pt;}
.x27_c00045{left:179.200000pt;}
.xf8_c00045{left:181.733333pt;}
.x1_c00045{left:184.266667pt;}
.x6f_c00045{left:186.533333pt;}
.xa2_c00045{left:187.866667pt;}
.xa0_c00045{left:190.400000pt;}
.xa_c00045{left:192.266667pt;}
.x28_c00045{left:202.933333pt;}
.x58_c00045{left:218.266667pt;}
.xb_c00045{left:220.133333pt;}
.x4e_c00045{left:222.266667pt;}
.x59_c00045{left:226.266667pt;}
.x70_c00045{left:234.533333pt;}
.xfe_c00045{left:238.933333pt;}
.x71_c00045{left:240.666667pt;}
.xec_c00045{left:248.000000pt;}
.x42_c00045{left:252.800000pt;}
.x98_c00045{left:254.666667pt;}
.xe2_c00045{left:257.866667pt;}
.x3c_c00045{left:259.733333pt;}
.x29_c00045{left:260.800000pt;}
.xff_c00045{left:262.133333pt;}
.x1b_c00045{left:263.733333pt;}
.x43_c00045{left:265.333333pt;}
.xc4_c00045{left:267.866667pt;}
.xaa_c00045{left:270.133333pt;}
.x99_c00045{left:271.600000pt;}
.x8d_c00045{left:272.666667pt;}
.x65_c00045{left:273.733333pt;}
.x45_c00045{left:275.066667pt;}
.xd0_c00045{left:276.133333pt;}
.x34_c00045{left:277.733333pt;}
.x1c_c00045{left:278.800000pt;}
.xe8_c00045{left:280.933333pt;}
.xd1_c00045{left:283.466667pt;}
.xb5_c00045{left:284.533333pt;}
.xa3_c00045{left:286.400000pt;}
.x91_c00045{left:287.866667pt;}
.x72_c00045{left:288.933333pt;}
.x82_c00045{left:289.866667pt;}
.x2a_c00045{left:294.666667pt;}
.x46_c00045{left:298.133333pt;}
.xb8_c00045{left:300.800000pt;}
.x2f_c00045{left:302.133333pt;}
.x35_c00045{left:303.600000pt;}
.x84_c00045{left:304.666667pt;}
.xbe_c00045{left:306.933333pt;}
.x3d_c00045{left:312.266667pt;}
.x5a_c00045{left:313.200000pt;}
.x2_c00045{left:316.133333pt;}
.x3e_c00045{left:322.533333pt;}
.x47_c00045{left:326.000000pt;}
.x7a_c00045{left:327.066667pt;}
.x73_c00045{left:329.866667pt;}
.x48_c00045{left:333.066667pt;}
.xe9_c00045{left:334.000000pt;}
.x1d_c00045{left:335.466667pt;}
.x4f_c00045{left:337.200000pt;}
.x30_c00045{left:339.866667pt;}
.xc_c00045{left:341.466667pt;}
.xab_c00045{left:342.400000pt;}
.xf0_c00045{left:343.333333pt;}
.x1e_c00045{left:344.800000pt;}
.x105_c00045{left:346.133333pt;}
.x109_c00045{left:347.600000pt;}
.xb6_c00045{left:348.533333pt;}
.x18_c00045{left:349.733333pt;}
.xc5_c00045{left:351.333333pt;}
.x2b_c00045{left:353.866667pt;}
.xdc_c00045{left:355.066667pt;}
.xea_c00045{left:357.733333pt;}
.xa4_c00045{left:360.400000pt;}
.x31_c00045{left:361.333333pt;}
.x2c_c00045{left:363.200000pt;}
.x3_c00045{left:364.133333pt;}
.x85_c00045{left:366.400000pt;}
.xb9_c00045{left:367.733333pt;}
.x3f_c00045{left:369.600000pt;}
.x66_c00045{left:371.333333pt;}
.x19_c00045{left:374.400000pt;}
.xbf_c00045{left:376.400000pt;}
.x67_c00045{left:379.600000pt;}
.x44_c00045{left:380.933333pt;}
.xf9_c00045{left:384.533333pt;}
.xd2_c00045{left:385.600000pt;}
.x50_c00045{left:387.066667pt;}
.x14_c00045{left:388.800000pt;}
.x7b_c00045{left:390.800000pt;}
.x83_c00045{left:393.466667pt;}
.xd3_c00045{left:395.466667pt;}
.xe3_c00045{left:399.333333pt;}
.x2d_c00045{left:403.200000pt;}
.x86_c00045{left:405.066667pt;}
.xba_c00045{left:406.800000pt;}
.xb2_c00045{left:408.000000pt;}
.xc6_c00045{left:409.600000pt;}
.x32_c00045{left:410.933333pt;}
.x97_c00045{left:412.666667pt;}
.xe4_c00045{left:416.933333pt;}
.x51_c00045{left:418.133333pt;}
.xd4_c00045{left:419.466667pt;}
.x1a_c00045{left:423.733333pt;}
.xbb_c00045{left:424.666667pt;}
.x87_c00045{left:425.866667pt;}
.x74_c00045{left:427.466667pt;}
.x15_c00045{left:428.533333pt;}
.x2e_c00045{left:430.666667pt;}
.x7c_c00045{left:431.733333pt;}
.x106_c00045{left:434.133333pt;}
.x40_c00045{left:435.200000pt;}
.x9a_c00045{left:436.266667pt;}
.xf1_c00045{left:440.000000pt;}
.x1f_c00045{left:441.066667pt;}
.x49_c00045{left:442.266667pt;}
.x52_c00045{left:444.000000pt;}
.xb7_c00045{left:445.200000pt;}
.xa5_c00045{left:447.066667pt;}
.x41_c00045{left:450.533333pt;}
.xc7_c00045{left:452.533333pt;}
.xfa_c00045{left:454.000000pt;}
.x75_c00045{left:455.600000pt;}
.xd_c00045{left:458.533333pt;}
.x5b_c00045{left:461.066667pt;}
.x92_c00045{left:462.266667pt;}
.xbc_c00045{left:464.666667pt;}
.xac_c00045{left:465.600000pt;}
.x16_c00045{left:467.866667pt;}
.x7d_c00045{left:468.800000pt;}
.x9b_c00045{left:471.200000pt;}
.x100_c00045{left:472.266667pt;}
.x88_c00045{left:473.600000pt;}
.xc0_c00045{left:476.533333pt;}
.x4_c00045{left:479.333333pt;}
.xd5_c00045{left:483.866667pt;}
.x36_c00045{left:485.333333pt;}
.xe5_c00045{left:488.000000pt;}
.x7e_c00045{left:489.600000pt;}
.xed_c00045{left:491.066667pt;}
.x68_c00045{left:492.533333pt;}
.xf2_c00045{left:495.333333pt;}
.xd7_c00045{left:499.200000pt;}
.x5c_c00045{left:500.400000pt;}
.xad_c00045{left:502.133333pt;}
.x10a_c00045{left:504.666667pt;}
.xdd_c00045{left:505.600000pt;}
.x17_c00045{left:506.533333pt;}
.xd6_c00045{left:507.866667pt;}
.x5d_c00045{left:510.000000pt;}
.xc8_c00045{left:511.066667pt;}
.x101_c00045{left:512.800000pt;}
.x7f_c00045{left:514.533333pt;}
.xfb_c00045{left:516.400000pt;}
.xa6_c00045{left:518.400000pt;}
.x9c_c00045{left:522.400000pt;}
.x80_c00045{left:524.800000pt;}
.x5_c00045{left:528.666667pt;}
.x20_c00045{left:530.266667pt;}
.xc9_c00045{left:532.800000pt;}
.x4a_c00045{left:536.400000pt;}
.x93_c00045{left:537.466667pt;}
.xf3_c00045{left:538.533333pt;}
.xae_c00045{left:544.400000pt;}
.xca_c00045{left:545.600000pt;}
.x69_c00045{left:547.333333pt;}
.x37_c00045{left:548.400000pt;}
.x53_c00045{left:550.266667pt;}
.x21_c00045{left:551.333333pt;}
.xf4_c00045{left:553.866667pt;}
.xaf_c00045{left:556.266667pt;}
.x76_c00045{left:557.333333pt;}
.x4b_c00045{left:561.066667pt;}
.x9d_c00045{left:563.066667pt;}
.x8c_c00045{left:564.533333pt;}
.xee_c00045{left:566.000000pt;}
.x77_c00045{left:572.000000pt;}
.x5e_c00045{left:573.733333pt;}
.xe_c00045{left:575.066667pt;}
.x6a_c00045{left:577.066667pt;}
.xd8_c00045{left:578.533333pt;}
.xc1_c00045{left:580.933333pt;}
.xcb_c00045{left:584.933333pt;}
.xa7_c00045{left:586.933333pt;}
.xb3_c00045{left:589.466667pt;}
.x22_c00045{left:590.400000pt;}
.xc2_c00045{left:591.466667pt;}
.xb0_c00045{left:593.066667pt;}
.x10d_c00045{left:594.133333pt;}
.x94_c00045{left:596.000000pt;}
.xd9_c00045{left:598.000000pt;}
.x54_c00045{left:600.133333pt;}
.x6b_c00045{left:601.733333pt;}
.x4c_c00045{left:603.333333pt;}
.xe6_c00045{left:604.533333pt;}
.x33_c00045{left:605.466667pt;}
.x6_c00045{left:607.066667pt;}
.x89_c00045{left:608.533333pt;}
.x9e_c00045{left:610.133333pt;}
.xa8_c00045{left:612.266667pt;}
.x5f_c00045{left:614.266667pt;}
.x95_c00045{left:617.733333pt;}
.xb1_c00045{left:620.266667pt;}
.x8e_c00045{left:622.933333pt;}
.x4d_c00045{left:624.133333pt;}
.xde_c00045{left:625.866667pt;}
.xda_c00045{left:627.066667pt;}
.x8a_c00045{left:630.000000pt;}
.xc3_c00045{left:632.400000pt;}
.x10b_c00045{left:634.266667pt;}
.xf_c00045{left:635.866667pt;}
.x23_c00045{left:637.066667pt;}
.x6c_c00045{left:638.800000pt;}
.x7_c00045{left:640.400000pt;}
.xeb_c00045{left:641.600000pt;}
.xfc_c00045{left:642.800000pt;}
.xdb_c00045{left:646.266667pt;}
.xe7_c00045{left:648.000000pt;}
.xcc_c00045{left:649.333333pt;}
.xbd_c00045{left:651.733333pt;}
.x8f_c00045{left:652.666667pt;}
.x38_c00045{left:657.466667pt;}
.x102_c00045{left:659.733333pt;}
.x60_c00045{left:662.533333pt;}
.xb4_c00045{left:664.000000pt;}
.x24_c00045{left:667.733333pt;}
.x39_c00045{left:670.266667pt;}
.xf5_c00045{left:671.333333pt;}
.x10c_c00045{left:673.333333pt;}
.x10_c00045{left:674.533333pt;}
.x55_c00045{left:677.200000pt;}
.x61_c00045{left:684.933333pt;}
.x8_c00045{left:689.733333pt;}
.xce_c00045{left:691.200000pt;}
.x81_c00045{left:693.066667pt;}
.x25_c00045{left:700.000000pt;}
.xdf_c00045{left:700.933333pt;}
.x78_c00045{left:702.266667pt;}
.x11_c00045{left:704.666667pt;}
.x6d_c00045{left:708.266667pt;}
.x3a_c00045{left:709.600000pt;}
.x56_c00045{left:713.333333pt;}
.xef_c00045{left:718.000000pt;}
.x79_c00045{left:719.200000pt;}
.x26_c00045{left:720.533333pt;}
.x62_c00045{left:723.333333pt;}
.xf6_c00045{left:729.600000pt;}
.x107_c00045{left:732.000000pt;}
.x57_c00045{left:734.800000pt;}
.xcd_c00045{left:735.733333pt;}
.x103_c00045{left:737.466667pt;}
.x108_c00045{left:739.333333pt;}
.x12_c00045{left:740.800000pt;}
.x90_c00045{left:742.266667pt;}
.x6e_c00045{left:744.133333pt;}
.x10e_c00045{left:748.666667pt;}
.x63_c00045{left:751.866667pt;}
.x3b_c00045{left:753.466667pt;}
.x96_c00045{left:754.400000pt;}
.xa9_c00045{left:758.533333pt;}
.x9f_c00045{left:759.866667pt;}
.xcf_c00045{left:760.933333pt;}
.xe0_c00045{left:763.600000pt;}
.x13_c00045{left:765.466667pt;}
.x8b_c00045{left:776.933333pt;}
}





/* 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_c00046 {
    display:none;
  }
  .loading-indicator_c00046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00046 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_c00046 { 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_c00046" -> "#page-container .classname_c00046")
 */
.pf_c00046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00046 { /* 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_c00046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00046 { /* 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_c00046 { /* 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_c00046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00046 {overflow:visible;}
  }
}
.c_c00046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00046 { /* 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_c00046:after { /* webkit #35443 */
  content: '';
}
.t_c00046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00046 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 */
}
.__c00046 { /* 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_c00046 { /* info for Javascript */
  display:none;
}
.l_c00046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00046: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_c00046 {
    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_c00046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00046.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_c00046 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00046;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.000000;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;}
.m7d_c00046{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m41_c00046{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m42_c00046{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mca_c00046{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00046{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00046{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m3_c00046{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m76_c00046{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00046{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00046{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m24_c00046{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00046{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m84_c00046{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb_c00046{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00046{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00046{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m73_c00046{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m44_c00046{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00046{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m40_c00046{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00046{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00046{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m58_c00046{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m70_c00046{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00046{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00046{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m54_c00046{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00046{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6_c00046{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m19_c00046{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m30_c00046{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m65_c00046{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m55_c00046{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.me9_c00046{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m9_c00046{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m83_c00046{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mde_c00046{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00046{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00046{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me5_c00046{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m46_c00046{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00046{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m45_c00046{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00046{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me6_c00046{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mce_c00046{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m69_c00046{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m4_c00046{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00046{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m52_c00046{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00046{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00046{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m61_c00046{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me4_c00046{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m47_c00046{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m20_c00046{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00046{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m93_c00046{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00046{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m39_c00046{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m60_c00046{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mea_c00046{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00046{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00046{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m29_c00046{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00046{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00046{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00046{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00046{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00046{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m25_c00046{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00046{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00046{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00046{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m68_c00046{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mda_c00046{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00046{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00046{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00046{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m80_c00046{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mc_c00046{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00046{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00046{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00046{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m64_c00046{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00046{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00046{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m37_c00046{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m53_c00046{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00046{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m99_c00046{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00046{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00046{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00046{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mab_c00046{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00046{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00046{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00046{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md9_c00046{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m85_c00046{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m34_c00046{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.maa_c00046{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m18_c00046{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00046{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.me2_c00046{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00046{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00046{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m72_c00046{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00046{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00046{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8_c00046{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00046{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00046{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00046{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m91_c00046{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m92_c00046{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md_c00046{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m95_c00046{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00046{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00046{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m26_c00046{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m75_c00046{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m97_c00046{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m94_c00046{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md6_c00046{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00046{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m28_c00046{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m27_c00046{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma_c00046{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00046{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00046{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00046{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7_c00046{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m63_c00046{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m50_c00046{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00046{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.maf_c00046{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m31_c00046{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m51_c00046{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md2_c00046{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00046{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m89_c00046{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me3_c00046{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me8_c00046{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00046{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m12_c00046{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00046{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m35_c00046{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m88_c00046{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5_c00046{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00046{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00046{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mba_c00046{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00046{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00046{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00046{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m87_c00046{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00046{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00046{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00046{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md1_c00046{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00046{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00046{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00046{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00046{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00046{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m48_c00046{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m32_c00046{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m36_c00046{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m78_c00046{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2_c00046{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m82_c00046{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m33_c00046{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00046{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00046{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md0_c00046{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m38_c00046{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m62_c00046{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md5_c00046{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m90_c00046{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me_c00046{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m49_c00046{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00046{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m10_c00046{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m13_c00046{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00046{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m98_c00046{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mae_c00046{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m74_c00046{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00046{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00046{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m43_c00046{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mf_c00046{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00046{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me7_c00046{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00046{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17_c00046{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m96_c00046{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m79_c00046{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m16_c00046{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m11_c00046{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00046{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md3_c00046{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00046{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m81_c00046{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m15_c00046{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m71_c00046{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md8_c00046{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m77_c00046{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m21_c00046{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me1_c00046{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00046{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m66_c00046{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m23_c00046{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00046{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mac_c00046{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00046{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.md4_c00046{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m14_c00046{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.md7_c00046{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m67_c00046{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m59_c00046{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00046{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00046{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m22_c00046{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m56_c00046{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.m86_c00046{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.me0_c00046{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00046{transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);}
.mad_c00046{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.meb_c00046{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00046{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);}
.m57_c00046{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00046{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.med_c00046{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.mec_c00046{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls0_c00046{letter-spacing:0.000000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{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__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00046{word-spacing:-9.694158px;}
.ws4_c00046{word-spacing:-9.248408px;}
.ws0_c00046{word-spacing:-1.571429px;}
.ws3_c00046{word-spacing:-0.142857px;}
.ws5_c00046{word-spacing:0.000000px;}
.ws1_c00046{word-spacing:5.773585px;}
.fc0_c00046{color:transparent;}
.fs8_c00046{font-size:18.000000px;}
.fs5_c00046{font-size:24.000000px;}
.fs4_c00046{font-size:30.000000px;}
.fs7_c00046{font-size:42.000000px;}
.fs6_c00046{font-size:54.000000px;}
.fs2_c00046{font-size:60.000000px;}
.fs3_c00046{font-size:66.000000px;}
.fs1_c00046{font-size:72.000000px;}
.fs0_c00046{font-size:78.000000px;}
.y0_c00046{bottom:0.000000px;}
.y40_c00046{bottom:172.050000px;}
.y3f_c00046{bottom:190.050000px;}
.y42_c00046{bottom:200.400000px;}
.y3e_c00046{bottom:207.750000px;}
.y3d_c00046{bottom:225.750000px;}
.y3b_c00046{bottom:252.600000px;}
.y3a_c00046{bottom:270.300000px;}
.y3c_c00046{bottom:271.800000px;}
.y39_c00046{bottom:288.300000px;}
.y38_c00046{bottom:315.300000px;}
.y37_c00046{bottom:334.050000px;}
.y41_c00046{bottom:351.300000px;}
.y35_c00046{bottom:378.750000px;}
.y34_c00046{bottom:396.450000px;}
.y36_c00046{bottom:397.050000px;}
.y33_c00046{bottom:414.750000px;}
.y31_c00046{bottom:440.700000px;}
.y30_c00046{bottom:459.000000px;}
.y32_c00046{bottom:460.050000px;}
.y2f_c00046{bottom:477.300000px;}
.y2d_c00046{bottom:503.400000px;}
.y2c_c00046{bottom:521.700000px;}
.y2e_c00046{bottom:522.000000px;}
.y2b_c00046{bottom:539.700000px;}
.y29_c00046{bottom:574.950000px;}
.y28_c00046{bottom:575.250000px;}
.y2a_c00046{bottom:583.950000px;}
.y27_c00046{bottom:593.250000px;}
.y26_c00046{bottom:610.950000px;}
.y25_c00046{bottom:628.950000px;}
.y1e_c00046{bottom:665.250000px;}
.y1d_c00046{bottom:683.250000px;}
.y1c_c00046{bottom:701.250000px;}
.y23_c00046{bottom:709.500000px;}
.y1b_c00046{bottom:719.250000px;}
.y1a_c00046{bottom:737.250000px;}
.y19_c00046{bottom:755.250000px;}
.y18_c00046{bottom:781.500000px;}
.y17_c00046{bottom:799.500000px;}
.y15_c00046{bottom:818.700000px;}
.y16_c00046{bottom:827.250000px;}
.y22_c00046{bottom:830.400000px;}
.y21_c00046{bottom:840.900000px;}
.y14_c00046{bottom:849.150000px;}
.y13_c00046{bottom:862.500000px;}
.y12_c00046{bottom:892.800000px;}
.y11_c00046{bottom:911.550000px;}
.y24_c00046{bottom:928.800000px;}
.y10_c00046{bottom:948.300000px;}
.ye_c00046{bottom:955.800000px;}
.yf_c00046{bottom:973.500000px;}
.yd_c00046{bottom:977.100000px;}
.y20_c00046{bottom:994.650000px;}
.yc_c00046{bottom:1003.950000px;}
.yb_c00046{bottom:1008.600000px;}
.ya_c00046{bottom:1013.700000px;}
.y9_c00046{bottom:1018.050000px;}
.y8_c00046{bottom:1024.500000px;}
.y1f_c00046{bottom:1035.300000px;}
.y7_c00046{bottom:1036.800000px;}
.y6_c00046{bottom:1054.500000px;}
.y4_c00046{bottom:1081.200000px;}
.y5_c00046{bottom:1098.750000px;}
.y3_c00046{bottom:1099.500000px;}
.y2_c00046{bottom:1117.500000px;}
.y1_c00046{bottom:1145.550000px;}
.ha_c00046{height:18.000000px;}
.h7_c00046{height:24.000000px;}
.h6_c00046{height:30.000000px;}
.h9_c00046{height:42.000000px;}
.h8_c00046{height:54.000000px;}
.h4_c00046{height:60.000000px;}
.h5_c00046{height:66.000000px;}
.h3_c00046{height:72.000000px;}
.h2_c00046{height:78.000000px;}
.h1_c00046{height:1269.000000px;}
.h0_c00046{height:1269.359985px;}
.w0_c00046{width:948.600036px;}
.w1_c00046{width:948.750000px;}
.x0_c00046{left:0.000000px;}
.x22_c00046{left:67.350000px;}
.x62_c00046{left:69.450000px;}
.x7e_c00046{left:70.500000px;}
.xe8_c00046{left:72.300000px;}
.x63_c00046{left:79.500000px;}
.x101_c00046{left:82.500000px;}
.x75_c00046{left:88.500000px;}
.x23_c00046{left:105.900000px;}
.x64_c00046{left:107.250000px;}
.xf2_c00046{left:108.450000px;}
.x84_c00046{left:110.100000px;}
.x6d_c00046{left:116.250000px;}
.x85_c00046{left:123.750000px;}
.x48_c00046{left:126.750000px;}
.x46_c00046{left:129.600000px;}
.x4a_c00046{left:132.450000px;}
.xb5_c00046{left:134.550000px;}
.x47_c00046{left:138.300000px;}
.x65_c00046{left:140.400000px;}
.xb4_c00046{left:141.450000px;}
.xb6_c00046{left:149.250000px;}
.x10f_c00046{left:152.250000px;}
.xb3_c00046{left:165.300000px;}
.xb7_c00046{left:177.450000px;}
.xc1_c00046{left:180.600000px;}
.xcb_c00046{left:182.400000px;}
.x3_c00046{left:191.850000px;}
.x24_c00046{left:195.150000px;}
.xbc_c00046{left:196.200000px;}
.xc2_c00046{left:200.700000px;}
.xe_c00046{left:210.450000px;}
.x17_c00046{left:211.500000px;}
.x3c_c00046{left:213.150000px;}
.x30_c00046{left:214.200000px;}
.xae_c00046{left:216.150000px;}
.xbd_c00046{left:218.850000px;}
.xcc_c00046{left:230.250000px;}
.x60_c00046{left:231.450000px;}
.xd4_c00046{left:236.550000px;}
.x31_c00046{left:237.600000px;}
.x76_c00046{left:243.000000px;}
.xd9_c00046{left:244.050000px;}
.xaf_c00046{left:246.450000px;}
.x8c_c00046{left:249.750000px;}
.x61_c00046{left:252.300000px;}
.x49_c00046{left:253.800000px;}
.xda_c00046{left:256.350000px;}
.xb0_c00046{left:259.050000px;}
.x7f_c00046{left:260.850000px;}
.x4b_c00046{left:264.600000px;}
.x55_c00046{left:266.100000px;}
.xb8_c00046{left:267.450000px;}
.x3d_c00046{left:268.650000px;}
.x105_c00046{left:269.700000px;}
.xf8_c00046{left:271.200000px;}
.x25_c00046{left:272.550000px;}
.xfa_c00046{left:274.050000px;}
.x4c_c00046{left:275.100000px;}
.x18_c00046{left:276.600000px;}
.x8d_c00046{left:278.850000px;}
.xb1_c00046{left:280.350000px;}
.x26_c00046{left:282.300000px;}
.x56_c00046{left:284.850000px;}
.xf3_c00046{left:286.800000px;}
.xc3_c00046{left:289.650000px;}
.xa3_c00046{left:291.000000px;}
.x32_c00046{left:292.650000px;}
.x19_c00046{left:294.300000px;}
.x8e_c00046{left:296.850000px;}
.x4_c00046{left:298.050000px;}
.xe9_c00046{left:299.400000px;}
.xdb_c00046{left:300.600000px;}
.x86_c00046{left:302.700000px;}
.xb2_c00046{left:304.500000px;}
.xa9_c00046{left:305.550000px;}
.x1_c00046{left:306.750000px;}
.xff_c00046{left:312.750000px;}
.xbe_c00046{left:314.550000px;}
.x3e_c00046{left:317.250000px;}
.xf_c00046{left:319.200000px;}
.x6e_c00046{left:321.150000px;}
.xec_c00046{left:322.200000px;}
.xc4_c00046{left:323.550000px;}
.xa4_c00046{left:324.900000px;}
.x66_c00046{left:330.600000px;}
.x95_c00046{left:332.250000px;}
.x1a_c00046{left:334.950000px;}
.x102_c00046{left:337.200000px;}
.x27_c00046{left:342.750000px;}
.x57_c00046{left:345.750000px;}
.x3f_c00046{left:346.800000px;}
.xc5_c00046{left:348.450000px;}
.xaa_c00046{left:350.550000px;}
.xf4_c00046{left:351.900000px;}
.xdc_c00046{left:353.100000px;}
.x6f_c00046{left:355.050000px;}
.x67_c00046{left:358.650000px;}
.x1b_c00046{left:363.450000px;}
.x80_c00046{left:366.750000px;}
.x108_c00046{left:369.000000px;}
.x10_c00046{left:371.100000px;}
.xd5_c00046{left:372.150000px;}
.x33_c00046{left:373.950000px;}
.x5_c00046{left:376.050000px;}
.x109_c00046{left:378.750000px;}
.x77_c00046{left:383.400000px;}
.xf0_c00046{left:384.750000px;}
.x28_c00046{left:388.050000px;}
.x58_c00046{left:391.050000px;}
.x103_c00046{left:392.700000px;}
.xd6_c00046{left:394.050000px;}
.x78_c00046{left:396.000000px;}
.xc6_c00046{left:398.550000px;}
.xfd_c00046{left:399.750000px;}
.xa5_c00046{left:400.800000px;}
.x1c_c00046{left:406.350000px;}
.xcd_c00046{left:407.400000px;}
.x9e_c00046{left:409.800000px;}
.x8f_c00046{left:411.450000px;}
.x68_c00046{left:413.700000px;}
.xea_c00046{left:415.350000px;}
.x11_c00046{left:417.150000px;}
.xab_c00046{left:418.650000px;}
.xce_c00046{left:419.700000px;}
.x6_c00046{left:421.350000px;}
.x34_c00046{left:424.650000px;}
.x1d_c00046{left:426.900000px;}
.x29_c00046{left:427.950000px;}
.x96_c00046{left:429.900000px;}
.x79_c00046{left:436.350000px;}
.xf5_c00046{left:437.550000px;}
.x70_c00046{left:439.650000px;}
.x100_c00046{left:442.650000px;}
.xfb_c00046{left:446.100000px;}
.x99_c00046{left:447.900000px;}
.x4d_c00046{left:449.100000px;}
.x10c_c00046{left:450.150000px;}
.x2a_c00046{left:452.100000px;}
.xcf_c00046{left:454.950000px;}
.x1e_c00046{left:456.450000px;}
.xf9_c00046{left:458.250000px;}
.x7_c00046{left:460.950000px;}
.x59_c00046{left:462.750000px;}
.xc7_c00046{left:465.450000px;}
.x9f_c00046{left:468.900000px;}
.x35_c00046{left:472.200000px;}
.x9a_c00046{left:476.400000px;}
.x2b_c00046{left:479.850000px;}
.x7a_c00046{left:482.400000px;}
.xf1_c00046{left:484.500000px;}
.x9b_c00046{left:486.900000px;}
.x4e_c00046{left:489.000000px;}
.xb9_c00046{left:491.700000px;}
.x36_c00046{left:494.850000px;}
.x12_c00046{left:496.350000px;}
.x5a_c00046{left:498.750000px;}
.x7b_c00046{left:500.100000px;}
.x10d_c00046{left:501.600000px;}
.x71_c00046{left:503.700000px;}
.xd0_c00046{left:507.450000px;}
.x40_c00046{left:510.300000px;}
.x8_c00046{left:511.800000px;}
.x97_c00046{left:513.450000px;}
.xe4_c00046{left:514.650000px;}
.xf6_c00046{left:516.000000px;}
.x4f_c00046{left:517.050000px;}
.xe5_c00046{left:518.250000px;}
.xba_c00046{left:520.500000px;}
.xd1_c00046{left:525.150000px;}
.x1f_c00046{left:526.350000px;}
.x72_c00046{left:528.150000px;}
.x69_c00046{left:529.950000px;}
.x5b_c00046{left:531.900000px;}
.x98_c00046{left:534.300000px;}
.x41_c00046{left:540.900000px;}
.x2c_c00046{left:546.150000px;}
.x6a_c00046{left:547.650000px;}
.xdd_c00046{left:549.600000px;}
.x90_c00046{left:551.100000px;}
.x20_c00046{left:554.400000px;}
.x81_c00046{left:555.450000px;}
.xa0_c00046{left:557.100000px;}
.x37_c00046{left:558.150000px;}
.xde_c00046{left:560.400000px;}
.x13_c00046{left:561.450000px;}
.x42_c00046{left:563.550000px;}
.x10e_c00046{left:564.600000px;}
.x73_c00046{left:568.800000px;}
.x50_c00046{left:570.750000px;}
.xe7_c00046{left:572.400000px;}
.x2d_c00046{left:573.900000px;}
.x82_c00046{left:576.000000px;}
.x9_c00046{left:578.400000px;}
.x21_c00046{left:581.400000px;}
.xdf_c00046{left:583.800000px;}
.x106_c00046{left:586.050000px;}
.xc8_c00046{left:587.100000px;}
.x87_c00046{left:594.300000px;}
.x14_c00046{left:598.500000px;}
.xd7_c00046{left:600.450000px;}
.xac_c00046{left:601.800000px;}
.x38_c00046{left:604.650000px;}
.x5c_c00046{left:605.700000px;}
.xeb_c00046{left:607.950000px;}
.xa_c00046{left:609.750000px;}
.x83_c00046{left:611.700000px;}
.xa6_c00046{left:613.200000px;}
.x91_c00046{left:617.700000px;}
.xd2_c00046{left:619.500000px;}
.x51_c00046{left:624.000000px;}
.x5d_c00046{left:625.200000px;}
.x43_c00046{left:626.550000px;}
.x3b_c00046{left:628.200000px;}
.xe2_c00046{left:629.550000px;}
.x7c_c00046{left:631.050000px;}
.x88_c00046{left:632.100000px;}
.x44_c00046{left:639.900000px;}
.xfe_c00046{left:641.100000px;}
.x107_c00046{left:642.150000px;}
.xed_c00046{left:643.350000px;}
.xf7_c00046{left:645.450000px;}
.x10a_c00046{left:647.700000px;}
.xa1_c00046{left:649.950000px;}
.xd3_c00046{left:651.600000px;}
.xb_c00046{left:652.950000px;}
.x15_c00046{left:654.300000px;}
.xe0_c00046{left:659.100000px;}
.xc_c00046{left:662.250000px;}
.x9c_c00046{left:664.650000px;}
.xee_c00046{left:666.000000px;}
.x45_c00046{left:669.450000px;}
.x6b_c00046{left:671.550000px;}
.x52_c00046{left:672.600000px;}
.xbb_c00046{left:674.100000px;}
.x5e_c00046{left:676.350000px;}
.x7d_c00046{left:683.250000px;}
.x74_c00046{left:685.050000px;}
.x39_c00046{left:686.400000px;}
.xad_c00046{left:687.450000px;}
.x92_c00046{left:688.650000px;}
.xa7_c00046{left:690.300000px;}
.x53_c00046{left:691.350000px;}
.x89_c00046{left:693.300000px;}
.xbf_c00046{left:694.350000px;}
.xfc_c00046{left:697.500000px;}
.xa2_c00046{left:699.600000px;}
.x16_c00046{left:700.800000px;}
.x93_c00046{left:703.350000px;}
.x5f_c00046{left:704.850000px;}
.xe6_c00046{left:706.500000px;}
.x2e_c00046{left:709.950000px;}
.x8a_c00046{left:715.650000px;}
.xc9_c00046{left:718.500000px;}
.xc0_c00046{left:720.600000px;}
.xef_c00046{left:721.800000px;}
.xe3_c00046{left:723.450000px;}
.x10b_c00046{left:725.850000px;}
.x94_c00046{left:727.050000px;}
.x9d_c00046{left:730.800000px;}
.x6c_c00046{left:732.750000px;}
.xe1_c00046{left:735.450000px;}
.xd_c00046{left:738.900000px;}
.x104_c00046{left:740.250000px;}
.x8b_c00046{left:742.350000px;}
.x54_c00046{left:743.550000px;}
.xca_c00046{left:746.550000px;}
.x2_c00046{left:749.250000px;}
.x3a_c00046{left:753.000000px;}
.xa8_c00046{left:754.500000px;}
.xd8_c00046{left:760.650000px;}
.x2f_c00046{left:764.250000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws2_c00046{word-spacing:-8.617029pt;}
.ws4_c00046{word-spacing:-8.220807pt;}
.ws0_c00046{word-spacing:-1.396825pt;}
.ws3_c00046{word-spacing:-0.126984pt;}
.ws5_c00046{word-spacing:0.000000pt;}
.ws1_c00046{word-spacing:5.132075pt;}
.fs8_c00046{font-size:16.000000pt;}
.fs5_c00046{font-size:21.333333pt;}
.fs4_c00046{font-size:26.666667pt;}
.fs7_c00046{font-size:37.333333pt;}
.fs6_c00046{font-size:48.000000pt;}
.fs2_c00046{font-size:53.333333pt;}
.fs3_c00046{font-size:58.666667pt;}
.fs1_c00046{font-size:64.000000pt;}
.fs0_c00046{font-size:69.333333pt;}
.y0_c00046{bottom:0.000000pt;}
.y40_c00046{bottom:152.933333pt;}
.y3f_c00046{bottom:168.933333pt;}
.y42_c00046{bottom:178.133333pt;}
.y3e_c00046{bottom:184.666667pt;}
.y3d_c00046{bottom:200.666667pt;}
.y3b_c00046{bottom:224.533333pt;}
.y3a_c00046{bottom:240.266667pt;}
.y3c_c00046{bottom:241.600000pt;}
.y39_c00046{bottom:256.266667pt;}
.y38_c00046{bottom:280.266667pt;}
.y37_c00046{bottom:296.933333pt;}
.y41_c00046{bottom:312.266667pt;}
.y35_c00046{bottom:336.666667pt;}
.y34_c00046{bottom:352.400000pt;}
.y36_c00046{bottom:352.933333pt;}
.y33_c00046{bottom:368.666667pt;}
.y31_c00046{bottom:391.733333pt;}
.y30_c00046{bottom:408.000000pt;}
.y32_c00046{bottom:408.933333pt;}
.y2f_c00046{bottom:424.266667pt;}
.y2d_c00046{bottom:447.466667pt;}
.y2c_c00046{bottom:463.733333pt;}
.y2e_c00046{bottom:464.000000pt;}
.y2b_c00046{bottom:479.733333pt;}
.y29_c00046{bottom:511.066667pt;}
.y28_c00046{bottom:511.333333pt;}
.y2a_c00046{bottom:519.066667pt;}
.y27_c00046{bottom:527.333333pt;}
.y26_c00046{bottom:543.066667pt;}
.y25_c00046{bottom:559.066667pt;}
.y1e_c00046{bottom:591.333333pt;}
.y1d_c00046{bottom:607.333333pt;}
.y1c_c00046{bottom:623.333333pt;}
.y23_c00046{bottom:630.666667pt;}
.y1b_c00046{bottom:639.333333pt;}
.y1a_c00046{bottom:655.333333pt;}
.y19_c00046{bottom:671.333333pt;}
.y18_c00046{bottom:694.666667pt;}
.y17_c00046{bottom:710.666667pt;}
.y15_c00046{bottom:727.733333pt;}
.y16_c00046{bottom:735.333333pt;}
.y22_c00046{bottom:738.133333pt;}
.y21_c00046{bottom:747.466667pt;}
.y14_c00046{bottom:754.800000pt;}
.y13_c00046{bottom:766.666667pt;}
.y12_c00046{bottom:793.600000pt;}
.y11_c00046{bottom:810.266667pt;}
.y24_c00046{bottom:825.600000pt;}
.y10_c00046{bottom:842.933333pt;}
.ye_c00046{bottom:849.600000pt;}
.yf_c00046{bottom:865.333333pt;}
.yd_c00046{bottom:868.533333pt;}
.y20_c00046{bottom:884.133333pt;}
.yc_c00046{bottom:892.400000pt;}
.yb_c00046{bottom:896.533333pt;}
.ya_c00046{bottom:901.066667pt;}
.y9_c00046{bottom:904.933333pt;}
.y8_c00046{bottom:910.666667pt;}
.y1f_c00046{bottom:920.266667pt;}
.y7_c00046{bottom:921.600000pt;}
.y6_c00046{bottom:937.333333pt;}
.y4_c00046{bottom:961.066667pt;}
.y5_c00046{bottom:976.666667pt;}
.y3_c00046{bottom:977.333333pt;}
.y2_c00046{bottom:993.333333pt;}
.y1_c00046{bottom:1018.266667pt;}
.ha_c00046{height:16.000000pt;}
.h7_c00046{height:21.333333pt;}
.h6_c00046{height:26.666667pt;}
.h9_c00046{height:37.333333pt;}
.h8_c00046{height:48.000000pt;}
.h4_c00046{height:53.333333pt;}
.h5_c00046{height:58.666667pt;}
.h3_c00046{height:64.000000pt;}
.h2_c00046{height:69.333333pt;}
.h1_c00046{height:1128.000000pt;}
.h0_c00046{height:1128.319987pt;}
.w0_c00046{width:843.200032pt;}
.w1_c00046{width:843.333333pt;}
.x0_c00046{left:0.000000pt;}
.x22_c00046{left:59.866667pt;}
.x62_c00046{left:61.733333pt;}
.x7e_c00046{left:62.666667pt;}
.xe8_c00046{left:64.266667pt;}
.x63_c00046{left:70.666667pt;}
.x101_c00046{left:73.333333pt;}
.x75_c00046{left:78.666667pt;}
.x23_c00046{left:94.133333pt;}
.x64_c00046{left:95.333333pt;}
.xf2_c00046{left:96.400000pt;}
.x84_c00046{left:97.866667pt;}
.x6d_c00046{left:103.333333pt;}
.x85_c00046{left:110.000000pt;}
.x48_c00046{left:112.666667pt;}
.x46_c00046{left:115.200000pt;}
.x4a_c00046{left:117.733333pt;}
.xb5_c00046{left:119.600000pt;}
.x47_c00046{left:122.933333pt;}
.x65_c00046{left:124.800000pt;}
.xb4_c00046{left:125.733333pt;}
.xb6_c00046{left:132.666667pt;}
.x10f_c00046{left:135.333333pt;}
.xb3_c00046{left:146.933333pt;}
.xb7_c00046{left:157.733333pt;}
.xc1_c00046{left:160.533333pt;}
.xcb_c00046{left:162.133333pt;}
.x3_c00046{left:170.533333pt;}
.x24_c00046{left:173.466667pt;}
.xbc_c00046{left:174.400000pt;}
.xc2_c00046{left:178.400000pt;}
.xe_c00046{left:187.066667pt;}
.x17_c00046{left:188.000000pt;}
.x3c_c00046{left:189.466667pt;}
.x30_c00046{left:190.400000pt;}
.xae_c00046{left:192.133333pt;}
.xbd_c00046{left:194.533333pt;}
.xcc_c00046{left:204.666667pt;}
.x60_c00046{left:205.733333pt;}
.xd4_c00046{left:210.266667pt;}
.x31_c00046{left:211.200000pt;}
.x76_c00046{left:216.000000pt;}
.xd9_c00046{left:216.933333pt;}
.xaf_c00046{left:219.066667pt;}
.x8c_c00046{left:222.000000pt;}
.x61_c00046{left:224.266667pt;}
.x49_c00046{left:225.600000pt;}
.xda_c00046{left:227.866667pt;}
.xb0_c00046{left:230.266667pt;}
.x7f_c00046{left:231.866667pt;}
.x4b_c00046{left:235.200000pt;}
.x55_c00046{left:236.533333pt;}
.xb8_c00046{left:237.733333pt;}
.x3d_c00046{left:238.800000pt;}
.x105_c00046{left:239.733333pt;}
.xf8_c00046{left:241.066667pt;}
.x25_c00046{left:242.266667pt;}
.xfa_c00046{left:243.600000pt;}
.x4c_c00046{left:244.533333pt;}
.x18_c00046{left:245.866667pt;}
.x8d_c00046{left:247.866667pt;}
.xb1_c00046{left:249.200000pt;}
.x26_c00046{left:250.933333pt;}
.x56_c00046{left:253.200000pt;}
.xf3_c00046{left:254.933333pt;}
.xc3_c00046{left:257.466667pt;}
.xa3_c00046{left:258.666667pt;}
.x32_c00046{left:260.133333pt;}
.x19_c00046{left:261.600000pt;}
.x8e_c00046{left:263.866667pt;}
.x4_c00046{left:264.933333pt;}
.xe9_c00046{left:266.133333pt;}
.xdb_c00046{left:267.200000pt;}
.x86_c00046{left:269.066667pt;}
.xb2_c00046{left:270.666667pt;}
.xa9_c00046{left:271.600000pt;}
.x1_c00046{left:272.666667pt;}
.xff_c00046{left:278.000000pt;}
.xbe_c00046{left:279.600000pt;}
.x3e_c00046{left:282.000000pt;}
.xf_c00046{left:283.733333pt;}
.x6e_c00046{left:285.466667pt;}
.xec_c00046{left:286.400000pt;}
.xc4_c00046{left:287.600000pt;}
.xa4_c00046{left:288.800000pt;}
.x66_c00046{left:293.866667pt;}
.x95_c00046{left:295.333333pt;}
.x1a_c00046{left:297.733333pt;}
.x102_c00046{left:299.733333pt;}
.x27_c00046{left:304.666667pt;}
.x57_c00046{left:307.333333pt;}
.x3f_c00046{left:308.266667pt;}
.xc5_c00046{left:309.733333pt;}
.xaa_c00046{left:311.600000pt;}
.xf4_c00046{left:312.800000pt;}
.xdc_c00046{left:313.866667pt;}
.x6f_c00046{left:315.600000pt;}
.x67_c00046{left:318.800000pt;}
.x1b_c00046{left:323.066667pt;}
.x80_c00046{left:326.000000pt;}
.x108_c00046{left:328.000000pt;}
.x10_c00046{left:329.866667pt;}
.xd5_c00046{left:330.800000pt;}
.x33_c00046{left:332.400000pt;}
.x5_c00046{left:334.266667pt;}
.x109_c00046{left:336.666667pt;}
.x77_c00046{left:340.800000pt;}
.xf0_c00046{left:342.000000pt;}
.x28_c00046{left:344.933333pt;}
.x58_c00046{left:347.600000pt;}
.x103_c00046{left:349.066667pt;}
.xd6_c00046{left:350.266667pt;}
.x78_c00046{left:352.000000pt;}
.xc6_c00046{left:354.266667pt;}
.xfd_c00046{left:355.333333pt;}
.xa5_c00046{left:356.266667pt;}
.x1c_c00046{left:361.200000pt;}
.xcd_c00046{left:362.133333pt;}
.x9e_c00046{left:364.266667pt;}
.x8f_c00046{left:365.733333pt;}
.x68_c00046{left:367.733333pt;}
.xea_c00046{left:369.200000pt;}
.x11_c00046{left:370.800000pt;}
.xab_c00046{left:372.133333pt;}
.xce_c00046{left:373.066667pt;}
.x6_c00046{left:374.533333pt;}
.x34_c00046{left:377.466667pt;}
.x1d_c00046{left:379.466667pt;}
.x29_c00046{left:380.400000pt;}
.x96_c00046{left:382.133333pt;}
.x79_c00046{left:387.866667pt;}
.xf5_c00046{left:388.933333pt;}
.x70_c00046{left:390.800000pt;}
.x100_c00046{left:393.466667pt;}
.xfb_c00046{left:396.533333pt;}
.x99_c00046{left:398.133333pt;}
.x4d_c00046{left:399.200000pt;}
.x10c_c00046{left:400.133333pt;}
.x2a_c00046{left:401.866667pt;}
.xcf_c00046{left:404.400000pt;}
.x1e_c00046{left:405.733333pt;}
.xf9_c00046{left:407.333333pt;}
.x7_c00046{left:409.733333pt;}
.x59_c00046{left:411.333333pt;}
.xc7_c00046{left:413.733333pt;}
.x9f_c00046{left:416.800000pt;}
.x35_c00046{left:419.733333pt;}
.x9a_c00046{left:423.466667pt;}
.x2b_c00046{left:426.533333pt;}
.x7a_c00046{left:428.800000pt;}
.xf1_c00046{left:430.666667pt;}
.x9b_c00046{left:432.800000pt;}
.x4e_c00046{left:434.666667pt;}
.xb9_c00046{left:437.066667pt;}
.x36_c00046{left:439.866667pt;}
.x12_c00046{left:441.200000pt;}
.x5a_c00046{left:443.333333pt;}
.x7b_c00046{left:444.533333pt;}
.x10d_c00046{left:445.866667pt;}
.x71_c00046{left:447.733333pt;}
.xd0_c00046{left:451.066667pt;}
.x40_c00046{left:453.600000pt;}
.x8_c00046{left:454.933333pt;}
.x97_c00046{left:456.400000pt;}
.xe4_c00046{left:457.466667pt;}
.xf6_c00046{left:458.666667pt;}
.x4f_c00046{left:459.600000pt;}
.xe5_c00046{left:460.666667pt;}
.xba_c00046{left:462.666667pt;}
.xd1_c00046{left:466.800000pt;}
.x1f_c00046{left:467.866667pt;}
.x72_c00046{left:469.466667pt;}
.x69_c00046{left:471.066667pt;}
.x5b_c00046{left:472.800000pt;}
.x98_c00046{left:474.933333pt;}
.x41_c00046{left:480.800000pt;}
.x2c_c00046{left:485.466667pt;}
.x6a_c00046{left:486.800000pt;}
.xdd_c00046{left:488.533333pt;}
.x90_c00046{left:489.866667pt;}
.x20_c00046{left:492.800000pt;}
.x81_c00046{left:493.733333pt;}
.xa0_c00046{left:495.200000pt;}
.x37_c00046{left:496.133333pt;}
.xde_c00046{left:498.133333pt;}
.x13_c00046{left:499.066667pt;}
.x42_c00046{left:500.933333pt;}
.x10e_c00046{left:501.866667pt;}
.x73_c00046{left:505.600000pt;}
.x50_c00046{left:507.333333pt;}
.xe7_c00046{left:508.800000pt;}
.x2d_c00046{left:510.133333pt;}
.x82_c00046{left:512.000000pt;}
.x9_c00046{left:514.133333pt;}
.x21_c00046{left:516.800000pt;}
.xdf_c00046{left:518.933333pt;}
.x106_c00046{left:520.933333pt;}
.xc8_c00046{left:521.866667pt;}
.x87_c00046{left:528.266667pt;}
.x14_c00046{left:532.000000pt;}
.xd7_c00046{left:533.733333pt;}
.xac_c00046{left:534.933333pt;}
.x38_c00046{left:537.466667pt;}
.x5c_c00046{left:538.400000pt;}
.xeb_c00046{left:540.400000pt;}
.xa_c00046{left:542.000000pt;}
.x83_c00046{left:543.733333pt;}
.xa6_c00046{left:545.066667pt;}
.x91_c00046{left:549.066667pt;}
.xd2_c00046{left:550.666667pt;}
.x51_c00046{left:554.666667pt;}
.x5d_c00046{left:555.733333pt;}
.x43_c00046{left:556.933333pt;}
.x3b_c00046{left:558.400000pt;}
.xe2_c00046{left:559.600000pt;}
.x7c_c00046{left:560.933333pt;}
.x88_c00046{left:561.866667pt;}
.x44_c00046{left:568.800000pt;}
.xfe_c00046{left:569.866667pt;}
.x107_c00046{left:570.800000pt;}
.xed_c00046{left:571.866667pt;}
.xf7_c00046{left:573.733333pt;}
.x10a_c00046{left:575.733333pt;}
.xa1_c00046{left:577.733333pt;}
.xd3_c00046{left:579.200000pt;}
.xb_c00046{left:580.400000pt;}
.x15_c00046{left:581.600000pt;}
.xe0_c00046{left:585.866667pt;}
.xc_c00046{left:588.666667pt;}
.x9c_c00046{left:590.800000pt;}
.xee_c00046{left:592.000000pt;}
.x45_c00046{left:595.066667pt;}
.x6b_c00046{left:596.933333pt;}
.x52_c00046{left:597.866667pt;}
.xbb_c00046{left:599.200000pt;}
.x5e_c00046{left:601.200000pt;}
.x7d_c00046{left:607.333333pt;}
.x74_c00046{left:608.933333pt;}
.x39_c00046{left:610.133333pt;}
.xad_c00046{left:611.066667pt;}
.x92_c00046{left:612.133333pt;}
.xa7_c00046{left:613.600000pt;}
.x53_c00046{left:614.533333pt;}
.x89_c00046{left:616.266667pt;}
.xbf_c00046{left:617.200000pt;}
.xfc_c00046{left:620.000000pt;}
.xa2_c00046{left:621.866667pt;}
.x16_c00046{left:622.933333pt;}
.x93_c00046{left:625.200000pt;}
.x5f_c00046{left:626.533333pt;}
.xe6_c00046{left:628.000000pt;}
.x2e_c00046{left:631.066667pt;}
.x8a_c00046{left:636.133333pt;}
.xc9_c00046{left:638.666667pt;}
.xc0_c00046{left:640.533333pt;}
.xef_c00046{left:641.600000pt;}
.xe3_c00046{left:643.066667pt;}
.x10b_c00046{left:645.200000pt;}
.x94_c00046{left:646.266667pt;}
.x9d_c00046{left:649.600000pt;}
.x6c_c00046{left:651.333333pt;}
.xe1_c00046{left:653.733333pt;}
.xd_c00046{left:656.800000pt;}
.x104_c00046{left:658.000000pt;}
.x8b_c00046{left:659.866667pt;}
.x54_c00046{left:660.933333pt;}
.xca_c00046{left:663.600000pt;}
.x2_c00046{left:666.000000pt;}
.x3a_c00046{left:669.333333pt;}
.xa8_c00046{left:670.666667pt;}
.xd8_c00046{left:676.133333pt;}
.x2f_c00046{left:679.333333pt;}
}





/* 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_c00047 {
    display:none;
  }
  .loading-indicator_c00047.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00047 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_c00047 { 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_c00047" -> "#page-container .classname_c00047")
 */
.pf_c00047 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00047 { /* 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_c00047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00047 { /* 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_c00047 { /* 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_c00047 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00047 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00047 {overflow:visible;}
  }
}
.c_c00047 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00047 { /* 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_c00047:after { /* webkit #35443 */
  content: '';
}
.t_c00047:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00047 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 */
}
.__c00047 { /* 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_c00047 { /* info for Javascript */
  display:none;
}
.l_c00047 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00047 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00047 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00047: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_c00047 {
    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_c00047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00047.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_c00047 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00047;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.000000;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;}
.m1_c00047{transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);}
.m75_c00047{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00047{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.mac_c00047{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00047{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00047{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00047{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m31_c00047{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00047{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4_c00047{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m21_c00047{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m35_c00047{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00047{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m36_c00047{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m44_c00047{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7_c00047{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00047{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m78_c00047{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m24_c00047{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00047{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m69_c00047{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00047{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00047{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m32_c00047{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m61_c00047{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m92_c00047{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00047{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00047{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00047{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m81_c00047{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m11_c00047{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m77_c00047{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00047{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m91_c00047{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00047{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00047{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00047{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00047{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m19_c00047{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00047{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00047{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m52_c00047{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8_c00047{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00047{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00047{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m17_c00047{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m22_c00047{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00047{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m25_c00047{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mae_c00047{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00047{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m93_c00047{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m45_c00047{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m54_c00047{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mf_c00047{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m82_c00047{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00047{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00047{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m30_c00047{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00047{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m97_c00047{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m85_c00047{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m53_c00047{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m74_c00047{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9_c00047{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mad_c00047{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00047{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00047{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m26_c00047{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00047{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m80_c00047{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m23_c00047{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m96_c00047{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00047{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m13_c00047{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00047{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m42_c00047{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m43_c00047{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m94_c00047{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5_c00047{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00047{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00047{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m33_c00047{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m55_c00047{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00047{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m50_c00047{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m14_c00047{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00047{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00047{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00047{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00047{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00047{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m12_c00047{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md0_c00047{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mab_c00047{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m56_c00047{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00047{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m57_c00047{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m86_c00047{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00047{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m40_c00047{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00047{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00047{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m46_c00047{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00047{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mce_c00047{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00047{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00047{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00047{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m16_c00047{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m79_c00047{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00047{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m95_c00047{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00047{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m84_c00047{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00047{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m67_c00047{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00047{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00047{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00047{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc_c00047{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00047{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me_c00047{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m66_c00047{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00047{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00047{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m20_c00047{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00047{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00047{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00047{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m27_c00047{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00047{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m58_c00047{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00047{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00047{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00047{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00047{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m90_c00047{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00047{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m15_c00047{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m71_c00047{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m70_c00047{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m65_c00047{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00047{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m0_c00047{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00047{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00047{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m73_c00047{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00047{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00047{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m83_c00047{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m87_c00047{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mba_c00047{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma_c00047{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m48_c00047{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m59_c00047{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00047{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00047{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mca_c00047{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00047{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00047{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m29_c00047{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb_c00047{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00047{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00047{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m98_c00047{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m47_c00047{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.maf_c00047{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00047{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m34_c00047{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m28_c00047{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m72_c00047{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00047{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00047{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m60_c00047{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00047{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m63_c00047{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00047{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m18_c00047{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m49_c00047{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00047{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m37_c00047{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3_c00047{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00047{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00047{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m76_c00047{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m38_c00047{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m68_c00047{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m39_c00047{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m64_c00047{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6_c00047{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.maa_c00047{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m41_c00047{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m89_c00047{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00047{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00047{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m88_c00047{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m62_c00047{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00047{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m51_c00047{transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);}
.m10_c00047{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00047{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00047{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00047{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m99_c00047{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00047{transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00047{transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00047{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls0_c00047{letter-spacing:0.000000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{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__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:-18.681223px;}
.ws1_c00047{word-spacing:0.000000px;}
.fc0_c00047{color:transparent;}
.fs6_c00047{font-size:30.000000px;}
.fs3_c00047{font-size:42.000000px;}
.fs2_c00047{font-size:60.000000px;}
.fs1_c00047{font-size:66.000000px;}
.fs4_c00047{font-size:72.000000px;}
.fs7_c00047{font-size:78.000000px;}
.fs0_c00047{font-size:84.000000px;}
.fs5_c00047{font-size:96.000000px;}
.y0_c00047{bottom:0.000000px;}
.y32_c00047{bottom:194.400000px;}
.y2f_c00047{bottom:211.350000px;}
.y31_c00047{bottom:228.600000px;}
.y2e_c00047{bottom:230.400000px;}
.y2d_c00047{bottom:248.100000px;}
.y2c_c00047{bottom:282.900000px;}
.y33_c00047{bottom:301.350000px;}
.y2b_c00047{bottom:313.650000px;}
.y2a_c00047{bottom:319.350000px;}
.y29_c00047{bottom:337.350000px;}
.y27_c00047{bottom:368.400000px;}
.y26_c00047{bottom:386.700000px;}
.y28_c00047{bottom:403.200000px;}
.y25_c00047{bottom:405.000000px;}
.y24_c00047{bottom:422.700000px;}
.y30_c00047{bottom:440.700000px;}
.y23_c00047{bottom:473.400000px;}
.y22_c00047{bottom:475.950000px;}
.y20_c00047{bottom:515.550000px;}
.y1f_c00047{bottom:533.550000px;}
.y21_c00047{bottom:541.500000px;}
.y1e_c00047{bottom:551.850000px;}
.y1d_c00047{bottom:569.850000px;}
.y1b_c00047{bottom:600.150000px;}
.y1a_c00047{bottom:618.900000px;}
.y1c_c00047{bottom:626.700000px;}
.y19_c00047{bottom:636.900000px;}
.y18_c00047{bottom:654.900000px;}
.y17_c00047{bottom:690.150000px;}
.y16_c00047{bottom:725.700000px;}
.y15_c00047{bottom:744.450000px;}
.y14_c00047{bottom:762.150000px;}
.y12_c00047{bottom:797.250000px;}
.y11_c00047{bottom:816.750000px;}
.y13_c00047{bottom:823.650000px;}
.y10_c00047{bottom:834.450000px;}
.yf_c00047{bottom:852.450000px;}
.ye_c00047{bottom:891.750000px;}
.yd_c00047{bottom:910.050000px;}
.yc_c00047{bottom:950.100000px;}
.yb_c00047{bottom:968.400000px;}
.ya_c00047{bottom:986.400000px;}
.y9_c00047{bottom:1021.650000px;}
.y6_c00047{bottom:1062.750000px;}
.y5_c00047{bottom:1080.750000px;}
.y8_c00047{bottom:1097.250000px;}
.y4_c00047{bottom:1099.050000px;}
.y3_c00047{bottom:1117.050000px;}
.y7_c00047{bottom:1127.100000px;}
.y2_c00047{bottom:1135.050000px;}
.y1_c00047{bottom:1162.500000px;}
.h8_c00047{height:30.000000px;}
.h5_c00047{height:42.000000px;}
.h4_c00047{height:60.000000px;}
.h3_c00047{height:66.000000px;}
.h6_c00047{height:72.000000px;}
.h9_c00047{height:78.000000px;}
.h2_c00047{height:84.000000px;}
.h7_c00047{height:96.000000px;}
.h0_c00047{height:1280.879975px;}
.h1_c00047{height:1281.000000px;}
.w0_c00047{width:948.600036px;}
.w1_c00047{width:948.750000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:168.900000px;}
.x90_c00047{left:178.950000px;}
.x38_c00047{left:181.050000px;}
.x78_c00047{left:183.900000px;}
.xb7_c00047{left:186.150000px;}
.xcf_c00047{left:187.500000px;}
.xda_c00047{left:188.850000px;}
.xf0_c00047{left:190.650000px;}
.x39_c00047{left:213.450000px;}
.x79_c00047{left:216.000000px;}
.xa5_c00047{left:217.050000px;}
.xb8_c00047{left:218.550000px;}
.xd0_c00047{left:219.600000px;}
.xdb_c00047{left:221.250000px;}
.x36_c00047{left:260.700000px;}
.x37_c00047{left:269.700000px;}
.x46_c00047{left:278.700000px;}
.x5b_c00047{left:280.050000px;}
.x8a_c00047{left:282.150000px;}
.xec_c00047{left:286.200000px;}
.xf1_c00047{left:288.900000px;}
.x4_c00047{left:297.300000px;}
.x47_c00047{left:299.250000px;}
.x91_c00047{left:300.300000px;}
.x7a_c00047{left:301.350000px;}
.xd1_c00047{left:304.950000px;}
.xe0_c00047{left:306.000000px;}
.x80_c00047{left:309.450000px;}
.x8b_c00047{left:314.550000px;}
.xf_c00047{left:315.600000px;}
.x6e_c00047{left:317.850000px;}
.xa4_c00047{left:319.350000px;}
.xa9_c00047{left:320.550000px;}
.xbf_c00047{left:321.900000px;}
.x52_c00047{left:322.950000px;}
.x3d_c00047{left:324.750000px;}
.xaf_c00047{left:338.550000px;}
.x67_c00047{left:342.300000px;}
.xb9_c00047{left:343.350000px;}
.x81_c00047{left:344.400000px;}
.x6f_c00047{left:346.650000px;}
.x77_c00047{left:348.000000px;}
.x53_c00047{left:349.200000px;}
.x8c_c00047{left:350.250000px;}
.x48_c00047{left:351.750000px;}
.x10_c00047{left:353.100000px;}
.x32_c00047{left:358.950000px;}
.x27_c00047{left:360.300000px;}
.x9a_c00047{left:362.550000px;}
.xc3_c00047{left:366.450000px;}
.x3a_c00047{left:370.500000px;}
.xc8_c00047{left:371.550000px;}
.x5_c00047{left:374.700000px;}
.x82_c00047{left:376.500000px;}
.xf2_c00047{left:378.750000px;}
.xed_c00047{left:381.300000px;}
.x11_c00047{left:383.400000px;}
.x7b_c00047{left:384.750000px;}
.x2_c00047{left:387.450000px;}
.x6_c00047{left:390.150000px;}
.x54_c00047{left:393.900000px;}
.xd7_c00047{left:394.950000px;}
.x3b_c00047{left:396.000000px;}
.x49_c00047{left:397.050000px;}
.xb1_c00047{left:400.050000px;}
.xd2_c00047{left:401.850000px;}
.xaa_c00047{left:403.350000px;}
.x92_c00047{left:405.450000px;}
.x3e_c00047{left:407.550000px;}
.x9b_c00047{left:408.600000px;}
.xd3_c00047{left:410.100000px;}
.xa6_c00047{left:411.900000px;}
.x70_c00047{left:412.950000px;}
.x3_c00047{left:414.450000px;}
.x55_c00047{left:415.500000px;}
.xa1_c00047{left:418.950000px;}
.x71_c00047{left:422.700000px;}
.xe1_c00047{left:424.200000px;}
.x28_c00047{left:425.550000px;}
.xb2_c00047{left:428.100000px;}
.x12_c00047{left:429.900000px;}
.x61_c00047{left:433.800000px;}
.xe7_c00047{left:435.600000px;}
.x33_c00047{left:439.200000px;}
.x5c_c00047{left:440.550000px;}
.x3f_c00047{left:441.750000px;}
.xf3_c00047{left:444.300000px;}
.x62_c00047{left:445.350000px;}
.x1d_c00047{left:449.100000px;}
.x3c_c00047{left:454.650000px;}
.xc9_c00047{left:457.950000px;}
.xc4_c00047{left:459.450000px;}
.x4a_c00047{left:460.800000px;}
.x68_c00047{left:462.900000px;}
.xf4_c00047{left:464.100000px;}
.xee_c00047{left:467.400000px;}
.x7_c00047{left:468.600000px;}
.x1e_c00047{left:469.650000px;}
.x83_c00047{left:471.900000px;}
.x5d_c00047{left:475.800000px;}
.xea_c00047{left:481.350000px;}
.x9c_c00047{left:483.150000px;}
.x34_c00047{left:486.750000px;}
.x13_c00047{left:489.600000px;}
.xd4_c00047{left:492.600000px;}
.xe8_c00047{left:495.300000px;}
.xba_c00047{left:498.150000px;}
.xca_c00047{left:502.950000px;}
.x8d_c00047{left:504.750000px;}
.xab_c00047{left:506.400000px;}
.x29_c00047{left:508.350000px;}
.xbb_c00047{left:510.450000px;}
.x1f_c00047{left:513.900000px;}
.xe9_c00047{left:515.400000px;}
.x8_c00047{left:516.450000px;}
.x8e_c00047{left:519.450000px;}
.x5e_c00047{left:521.100000px;}
.x4b_c00047{left:525.300000px;}
.x7c_c00047{left:528.000000px;}
.xb3_c00047{left:532.800000px;}
.x14_c00047{left:534.900000px;}
.x69_c00047{left:537.150000px;}
.x20_c00047{left:538.800000px;}
.x56_c00047{left:540.300000px;}
.x63_c00047{left:541.800000px;}
.x72_c00047{left:546.900000px;}
.xac_c00047{left:552.450000px;}
.xb4_c00047{left:555.900000px;}
.x35_c00047{left:558.750000px;}
.xad_c00047{left:563.550000px;}
.x9_c00047{left:565.350000px;}
.x2a_c00047{left:567.000000px;}
.x84_c00047{left:570.150000px;}
.xbc_c00047{left:571.650000px;}
.xb5_c00047{left:573.600000px;}
.x8f_c00047{left:578.850000px;}
.x73_c00047{left:581.400000px;}
.x5f_c00047{left:585.900000px;}
.x2b_c00047{left:587.100000px;}
.xa2_c00047{left:588.300000px;}
.x93_c00047{left:589.800000px;}
.x21_c00047{left:591.300000px;}
.x4c_c00047{left:593.400000px;}
.x57_c00047{left:600.750000px;}
.x94_c00047{left:605.700000px;}
.xd8_c00047{left:608.250000px;}
.xeb_c00047{left:609.300000px;}
.x74_c00047{left:611.250000px;}
.xf5_c00047{left:612.750000px;}
.x4d_c00047{left:615.750000px;}
.x40_c00047{left:617.400000px;}
.xdc_c00047{left:618.600000px;}
.x22_c00047{left:622.650000px;}
.x15_c00047{left:624.600000px;}
.x2c_c00047{left:625.950000px;}
.xdd_c00047{left:627.900000px;}
.xa_c00047{left:630.150000px;}
.x58_c00047{left:634.650000px;}
.x4e_c00047{left:635.850000px;}
.x16_c00047{left:639.300000px;}
.x6a_c00047{left:640.500000px;}
.x85_c00047{left:642.900000px;}
.xcb_c00047{left:644.400000px;}
.xb_c00047{left:647.100000px;}
.x64_c00047{left:649.050000px;}
.x7d_c00047{left:653.850000px;}
.x41_c00047{left:655.500000px;}
.xcc_c00047{left:657.300000px;}
.xc0_c00047{left:658.350000px;}
.x2d_c00047{left:659.850000px;}
.x95_c00047{left:661.500000px;}
.x23_c00047{left:669.150000px;}
.x86_c00047{left:670.200000px;}
.xb0_c00047{left:676.800000px;}
.xc5_c00047{left:679.050000px;}
.x2e_c00047{left:681.150000px;}
.x17_c00047{left:682.800000px;}
.xb6_c00047{left:684.450000px;}
.xbd_c00047{left:686.850000px;}
.x59_c00047{left:688.350000px;}
.x60_c00047{left:689.550000px;}
.xe2_c00047{left:693.000000px;}
.x87_c00047{left:694.350000px;}
.x9d_c00047{left:700.950000px;}
.xc_c00047{left:702.900000px;}
.x42_c00047{left:704.100000px;}
.x18_c00047{left:707.700000px;}
.xe3_c00047{left:711.000000px;}
.xa3_c00047{left:714.300000px;}
.x9e_c00047{left:715.350000px;}
.xef_c00047{left:717.600000px;}
.x6b_c00047{left:718.650000px;}
.xd5_c00047{left:723.450000px;}
.x2f_c00047{left:724.650000px;}
.x65_c00047{left:730.350000px;}
.x88_c00047{left:732.450000px;}
.xc1_c00047{left:735.450000px;}
.xcd_c00047{left:738.000000px;}
.x43_c00047{left:743.400000px;}
.x96_c00047{left:746.100000px;}
.x24_c00047{left:748.050000px;}
.xa7_c00047{left:751.050000px;}
.x7e_c00047{left:754.950000px;}
.xde_c00047{left:758.550000px;}
.x9f_c00047{left:759.600000px;}
.x19_c00047{left:762.750000px;}
.xd9_c00047{left:765.900000px;}
.x97_c00047{left:771.300000px;}
.x44_c00047{left:774.000000px;}
.x5a_c00047{left:775.050000px;}
.x1a_c00047{left:777.150000px;}
.x89_c00047{left:780.300000px;}
.x6c_c00047{left:782.700000px;}
.xd_c00047{left:784.950000px;}
.x4f_c00047{left:787.050000px;}
.xdf_c00047{left:788.700000px;}
.x75_c00047{left:792.300000px;}
.x30_c00047{left:794.550000px;}
.xe4_c00047{left:795.600000px;}
.x66_c00047{left:799.500000px;}
.xd6_c00047{left:803.400000px;}
.xc2_c00047{left:807.450000px;}
.x50_c00047{left:809.700000px;}
.x98_c00047{left:811.950000px;}
.xa8_c00047{left:813.750000px;}
.x1b_c00047{left:816.000000px;}
.x45_c00047{left:818.250000px;}
.xbe_c00047{left:819.300000px;}
.x31_c00047{left:821.850000px;}
.xe5_c00047{left:824.100000px;}
.x25_c00047{left:826.950000px;}
.xc6_c00047{left:829.050000px;}
.x76_c00047{left:830.850000px;}
.xa0_c00047{left:834.000000px;}
.xae_c00047{left:835.050000px;}
.x7f_c00047{left:836.400000px;}
.x26_c00047{left:840.300000px;}
.x6d_c00047{left:841.350000px;}
.xce_c00047{left:844.500000px;}
.xc7_c00047{left:848.550000px;}
.xe_c00047{left:853.050000px;}
.x51_c00047{left:854.700000px;}
.x99_c00047{left:857.250000px;}
.x1c_c00047{left:863.850000px;}
.xe6_c00047{left:871.200000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws0_c00047{word-spacing:-16.605531pt;}
.ws1_c00047{word-spacing:0.000000pt;}
.fs6_c00047{font-size:26.666667pt;}
.fs3_c00047{font-size:37.333333pt;}
.fs2_c00047{font-size:53.333333pt;}
.fs1_c00047{font-size:58.666667pt;}
.fs4_c00047{font-size:64.000000pt;}
.fs7_c00047{font-size:69.333333pt;}
.fs0_c00047{font-size:74.666667pt;}
.fs5_c00047{font-size:85.333333pt;}
.y0_c00047{bottom:0.000000pt;}
.y32_c00047{bottom:172.800000pt;}
.y2f_c00047{bottom:187.866667pt;}
.y31_c00047{bottom:203.200000pt;}
.y2e_c00047{bottom:204.800000pt;}
.y2d_c00047{bottom:220.533333pt;}
.y2c_c00047{bottom:251.466667pt;}
.y33_c00047{bottom:267.866667pt;}
.y2b_c00047{bottom:278.800000pt;}
.y2a_c00047{bottom:283.866667pt;}
.y29_c00047{bottom:299.866667pt;}
.y27_c00047{bottom:327.466667pt;}
.y26_c00047{bottom:343.733333pt;}
.y28_c00047{bottom:358.400000pt;}
.y25_c00047{bottom:360.000000pt;}
.y24_c00047{bottom:375.733333pt;}
.y30_c00047{bottom:391.733333pt;}
.y23_c00047{bottom:420.800000pt;}
.y22_c00047{bottom:423.066667pt;}
.y20_c00047{bottom:458.266667pt;}
.y1f_c00047{bottom:474.266667pt;}
.y21_c00047{bottom:481.333333pt;}
.y1e_c00047{bottom:490.533333pt;}
.y1d_c00047{bottom:506.533333pt;}
.y1b_c00047{bottom:533.466667pt;}
.y1a_c00047{bottom:550.133333pt;}
.y1c_c00047{bottom:557.066667pt;}
.y19_c00047{bottom:566.133333pt;}
.y18_c00047{bottom:582.133333pt;}
.y17_c00047{bottom:613.466667pt;}
.y16_c00047{bottom:645.066667pt;}
.y15_c00047{bottom:661.733333pt;}
.y14_c00047{bottom:677.466667pt;}
.y12_c00047{bottom:708.666667pt;}
.y11_c00047{bottom:726.000000pt;}
.y13_c00047{bottom:732.133333pt;}
.y10_c00047{bottom:741.733333pt;}
.yf_c00047{bottom:757.733333pt;}
.ye_c00047{bottom:792.666667pt;}
.yd_c00047{bottom:808.933333pt;}
.yc_c00047{bottom:844.533333pt;}
.yb_c00047{bottom:860.800000pt;}
.ya_c00047{bottom:876.800000pt;}
.y9_c00047{bottom:908.133333pt;}
.y6_c00047{bottom:944.666667pt;}
.y5_c00047{bottom:960.666667pt;}
.y8_c00047{bottom:975.333333pt;}
.y4_c00047{bottom:976.933333pt;}
.y3_c00047{bottom:992.933333pt;}
.y7_c00047{bottom:1001.866667pt;}
.y2_c00047{bottom:1008.933333pt;}
.y1_c00047{bottom:1033.333333pt;}
.h8_c00047{height:26.666667pt;}
.h5_c00047{height:37.333333pt;}
.h4_c00047{height:53.333333pt;}
.h3_c00047{height:58.666667pt;}
.h6_c00047{height:64.000000pt;}
.h9_c00047{height:69.333333pt;}
.h2_c00047{height:74.666667pt;}
.h7_c00047{height:85.333333pt;}
.h0_c00047{height:1138.559977pt;}
.h1_c00047{height:1138.666667pt;}
.w0_c00047{width:843.200032pt;}
.w1_c00047{width:843.333333pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:150.133333pt;}
.x90_c00047{left:159.066667pt;}
.x38_c00047{left:160.933333pt;}
.x78_c00047{left:163.466667pt;}
.xb7_c00047{left:165.466667pt;}
.xcf_c00047{left:166.666667pt;}
.xda_c00047{left:167.866667pt;}
.xf0_c00047{left:169.466667pt;}
.x39_c00047{left:189.733333pt;}
.x79_c00047{left:192.000000pt;}
.xa5_c00047{left:192.933333pt;}
.xb8_c00047{left:194.266667pt;}
.xd0_c00047{left:195.200000pt;}
.xdb_c00047{left:196.666667pt;}
.x36_c00047{left:231.733333pt;}
.x37_c00047{left:239.733333pt;}
.x46_c00047{left:247.733333pt;}
.x5b_c00047{left:248.933333pt;}
.x8a_c00047{left:250.800000pt;}
.xec_c00047{left:254.400000pt;}
.xf1_c00047{left:256.800000pt;}
.x4_c00047{left:264.266667pt;}
.x47_c00047{left:266.000000pt;}
.x91_c00047{left:266.933333pt;}
.x7a_c00047{left:267.866667pt;}
.xd1_c00047{left:271.066667pt;}
.xe0_c00047{left:272.000000pt;}
.x80_c00047{left:275.066667pt;}
.x8b_c00047{left:279.600000pt;}
.xf_c00047{left:280.533333pt;}
.x6e_c00047{left:282.533333pt;}
.xa4_c00047{left:283.866667pt;}
.xa9_c00047{left:284.933333pt;}
.xbf_c00047{left:286.133333pt;}
.x52_c00047{left:287.066667pt;}
.x3d_c00047{left:288.666667pt;}
.xaf_c00047{left:300.933333pt;}
.x67_c00047{left:304.266667pt;}
.xb9_c00047{left:305.200000pt;}
.x81_c00047{left:306.133333pt;}
.x6f_c00047{left:308.133333pt;}
.x77_c00047{left:309.333333pt;}
.x53_c00047{left:310.400000pt;}
.x8c_c00047{left:311.333333pt;}
.x48_c00047{left:312.666667pt;}
.x10_c00047{left:313.866667pt;}
.x32_c00047{left:319.066667pt;}
.x27_c00047{left:320.266667pt;}
.x9a_c00047{left:322.266667pt;}
.xc3_c00047{left:325.733333pt;}
.x3a_c00047{left:329.333333pt;}
.xc8_c00047{left:330.266667pt;}
.x5_c00047{left:333.066667pt;}
.x82_c00047{left:334.666667pt;}
.xf2_c00047{left:336.666667pt;}
.xed_c00047{left:338.933333pt;}
.x11_c00047{left:340.800000pt;}
.x7b_c00047{left:342.000000pt;}
.x2_c00047{left:344.400000pt;}
.x6_c00047{left:346.800000pt;}
.x54_c00047{left:350.133333pt;}
.xd7_c00047{left:351.066667pt;}
.x3b_c00047{left:352.000000pt;}
.x49_c00047{left:352.933333pt;}
.xb1_c00047{left:355.600000pt;}
.xd2_c00047{left:357.200000pt;}
.xaa_c00047{left:358.533333pt;}
.x92_c00047{left:360.400000pt;}
.x3e_c00047{left:362.266667pt;}
.x9b_c00047{left:363.200000pt;}
.xd3_c00047{left:364.533333pt;}
.xa6_c00047{left:366.133333pt;}
.x70_c00047{left:367.066667pt;}
.x3_c00047{left:368.400000pt;}
.x55_c00047{left:369.333333pt;}
.xa1_c00047{left:372.400000pt;}
.x71_c00047{left:375.733333pt;}
.xe1_c00047{left:377.066667pt;}
.x28_c00047{left:378.266667pt;}
.xb2_c00047{left:380.533333pt;}
.x12_c00047{left:382.133333pt;}
.x61_c00047{left:385.600000pt;}
.xe7_c00047{left:387.200000pt;}
.x33_c00047{left:390.400000pt;}
.x5c_c00047{left:391.600000pt;}
.x3f_c00047{left:392.666667pt;}
.xf3_c00047{left:394.933333pt;}
.x62_c00047{left:395.866667pt;}
.x1d_c00047{left:399.200000pt;}
.x3c_c00047{left:404.133333pt;}
.xc9_c00047{left:407.066667pt;}
.xc4_c00047{left:408.400000pt;}
.x4a_c00047{left:409.600000pt;}
.x68_c00047{left:411.466667pt;}
.xf4_c00047{left:412.533333pt;}
.xee_c00047{left:415.466667pt;}
.x7_c00047{left:416.533333pt;}
.x1e_c00047{left:417.466667pt;}
.x83_c00047{left:419.466667pt;}
.x5d_c00047{left:422.933333pt;}
.xea_c00047{left:427.866667pt;}
.x9c_c00047{left:429.466667pt;}
.x34_c00047{left:432.666667pt;}
.x13_c00047{left:435.200000pt;}
.xd4_c00047{left:437.866667pt;}
.xe8_c00047{left:440.266667pt;}
.xba_c00047{left:442.800000pt;}
.xca_c00047{left:447.066667pt;}
.x8d_c00047{left:448.666667pt;}
.xab_c00047{left:450.133333pt;}
.x29_c00047{left:451.866667pt;}
.xbb_c00047{left:453.733333pt;}
.x1f_c00047{left:456.800000pt;}
.xe9_c00047{left:458.133333pt;}
.x8_c00047{left:459.066667pt;}
.x8e_c00047{left:461.733333pt;}
.x5e_c00047{left:463.200000pt;}
.x4b_c00047{left:466.933333pt;}
.x7c_c00047{left:469.333333pt;}
.xb3_c00047{left:473.600000pt;}
.x14_c00047{left:475.466667pt;}
.x69_c00047{left:477.466667pt;}
.x20_c00047{left:478.933333pt;}
.x56_c00047{left:480.266667pt;}
.x63_c00047{left:481.600000pt;}
.x72_c00047{left:486.133333pt;}
.xac_c00047{left:491.066667pt;}
.xb4_c00047{left:494.133333pt;}
.x35_c00047{left:496.666667pt;}
.xad_c00047{left:500.933333pt;}
.x9_c00047{left:502.533333pt;}
.x2a_c00047{left:504.000000pt;}
.x84_c00047{left:506.800000pt;}
.xbc_c00047{left:508.133333pt;}
.xb5_c00047{left:509.866667pt;}
.x8f_c00047{left:514.533333pt;}
.x73_c00047{left:516.800000pt;}
.x5f_c00047{left:520.800000pt;}
.x2b_c00047{left:521.866667pt;}
.xa2_c00047{left:522.933333pt;}
.x93_c00047{left:524.266667pt;}
.x21_c00047{left:525.600000pt;}
.x4c_c00047{left:527.466667pt;}
.x57_c00047{left:534.000000pt;}
.x94_c00047{left:538.400000pt;}
.xd8_c00047{left:540.666667pt;}
.xeb_c00047{left:541.600000pt;}
.x74_c00047{left:543.333333pt;}
.xf5_c00047{left:544.666667pt;}
.x4d_c00047{left:547.333333pt;}
.x40_c00047{left:548.800000pt;}
.xdc_c00047{left:549.866667pt;}
.x22_c00047{left:553.466667pt;}
.x15_c00047{left:555.200000pt;}
.x2c_c00047{left:556.400000pt;}
.xdd_c00047{left:558.133333pt;}
.xa_c00047{left:560.133333pt;}
.x58_c00047{left:564.133333pt;}
.x4e_c00047{left:565.200000pt;}
.x16_c00047{left:568.266667pt;}
.x6a_c00047{left:569.333333pt;}
.x85_c00047{left:571.466667pt;}
.xcb_c00047{left:572.800000pt;}
.xb_c00047{left:575.200000pt;}
.x64_c00047{left:576.933333pt;}
.x7d_c00047{left:581.200000pt;}
.x41_c00047{left:582.666667pt;}
.xcc_c00047{left:584.266667pt;}
.xc0_c00047{left:585.200000pt;}
.x2d_c00047{left:586.533333pt;}
.x95_c00047{left:588.000000pt;}
.x23_c00047{left:594.800000pt;}
.x86_c00047{left:595.733333pt;}
.xb0_c00047{left:601.600000pt;}
.xc5_c00047{left:603.600000pt;}
.x2e_c00047{left:605.466667pt;}
.x17_c00047{left:606.933333pt;}
.xb6_c00047{left:608.400000pt;}
.xbd_c00047{left:610.533333pt;}
.x59_c00047{left:611.866667pt;}
.x60_c00047{left:612.933333pt;}
.xe2_c00047{left:616.000000pt;}
.x87_c00047{left:617.200000pt;}
.x9d_c00047{left:623.066667pt;}
.xc_c00047{left:624.800000pt;}
.x42_c00047{left:625.866667pt;}
.x18_c00047{left:629.066667pt;}
.xe3_c00047{left:632.000000pt;}
.xa3_c00047{left:634.933333pt;}
.x9e_c00047{left:635.866667pt;}
.xef_c00047{left:637.866667pt;}
.x6b_c00047{left:638.800000pt;}
.xd5_c00047{left:643.066667pt;}
.x2f_c00047{left:644.133333pt;}
.x65_c00047{left:649.200000pt;}
.x88_c00047{left:651.066667pt;}
.xc1_c00047{left:653.733333pt;}
.xcd_c00047{left:656.000000pt;}
.x43_c00047{left:660.800000pt;}
.x96_c00047{left:663.200000pt;}
.x24_c00047{left:664.933333pt;}
.xa7_c00047{left:667.600000pt;}
.x7e_c00047{left:671.066667pt;}
.xde_c00047{left:674.266667pt;}
.x9f_c00047{left:675.200000pt;}
.x19_c00047{left:678.000000pt;}
.xd9_c00047{left:680.800000pt;}
.x97_c00047{left:685.600000pt;}
.x44_c00047{left:688.000000pt;}
.x5a_c00047{left:688.933333pt;}
.x1a_c00047{left:690.800000pt;}
.x89_c00047{left:693.600000pt;}
.x6c_c00047{left:695.733333pt;}
.xd_c00047{left:697.733333pt;}
.x4f_c00047{left:699.600000pt;}
.xdf_c00047{left:701.066667pt;}
.x75_c00047{left:704.266667pt;}
.x30_c00047{left:706.266667pt;}
.xe4_c00047{left:707.200000pt;}
.x66_c00047{left:710.666667pt;}
.xd6_c00047{left:714.133333pt;}
.xc2_c00047{left:717.733333pt;}
.x50_c00047{left:719.733333pt;}
.x98_c00047{left:721.733333pt;}
.xa8_c00047{left:723.333333pt;}
.x1b_c00047{left:725.333333pt;}
.x45_c00047{left:727.333333pt;}
.xbe_c00047{left:728.266667pt;}
.x31_c00047{left:730.533333pt;}
.xe5_c00047{left:732.533333pt;}
.x25_c00047{left:735.066667pt;}
.xc6_c00047{left:736.933333pt;}
.x76_c00047{left:738.533333pt;}
.xa0_c00047{left:741.333333pt;}
.xae_c00047{left:742.266667pt;}
.x7f_c00047{left:743.466667pt;}
.x26_c00047{left:746.933333pt;}
.x6d_c00047{left:747.866667pt;}
.xce_c00047{left:750.666667pt;}
.xc7_c00047{left:754.266667pt;}
.xe_c00047{left:758.266667pt;}
.x51_c00047{left:759.733333pt;}
.x99_c00047{left:762.000000pt;}
.x1c_c00047{left:767.866667pt;}
.xe6_c00047{left:774.400000pt;}
}





/* 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_c00048 {
    display:none;
  }
  .loading-indicator_c00048.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00048 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_c00048 { 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_c00048" -> "#page-container .classname_c00048")
 */
.pf_c00048 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00048 { /* 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_c00048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00048 { /* 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_c00048 { /* 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_c00048 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00048 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00048 {overflow:visible;}
  }
}
.c_c00048 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00048 { /* 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_c00048:after { /* webkit #35443 */
  content: '';
}
.t_c00048:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00048 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 */
}
.__c00048 { /* 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_c00048 { /* info for Javascript */
  display:none;
}
.l_c00048 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00048 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00048 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00048: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_c00048 {
    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_c00048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00048.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_c00048 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00048;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.000000;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;}
.m7a_c00048{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00048{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m94_c00048{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m62_c00048{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00048{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00048{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00048{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m12_c00048{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00048{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m58_c00048{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3_c00048{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8_c00048{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m23_c00048{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mce_c00048{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00048{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m34_c00048{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md0_c00048{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00048{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m89_c00048{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m85_c00048{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00048{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00048{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m84_c00048{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m99_c00048{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00048{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m10_c00048{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00048{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00048{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00048{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m70_c00048{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m4_c00048{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md1_c00048{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m82_c00048{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m20_c00048{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m33_c00048{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00048{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00048{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m87_c00048{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m98_c00048{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m40_c00048{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00048{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m60_c00048{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma_c00048{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m13_c00048{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m50_c00048{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m93_c00048{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m68_c00048{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00048{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md_c00048{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00048{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mca_c00048{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00048{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m66_c00048{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00048{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m49_c00048{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6_c00048{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb_c00048{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00048{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00048{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00048{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00048{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00048{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00048{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00048{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mba_c00048{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00048{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m71_c00048{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00048{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m45_c00048{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00048{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m29_c00048{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00048{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m90_c00048{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00048{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00048{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m48_c00048{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00048{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m61_c00048{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m91_c00048{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00048{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m16_c00048{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00048{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m22_c00048{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00048{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m7_c00048{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mab_c00048{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m21_c00048{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m69_c00048{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00048{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00048{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00048{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00048{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf_c00048{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m36_c00048{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00048{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00048{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m39_c00048{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00048{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m32_c00048{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00048{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m14_c00048{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m72_c00048{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00048{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00048{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m46_c00048{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m31_c00048{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00048{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m76_c00048{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m57_c00048{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m65_c00048{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc_c00048{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00048{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m88_c00048{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00048{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00048{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m44_c00048{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00048{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m80_c00048{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m78_c00048{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m18_c00048{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m59_c00048{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m47_c00048{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m86_c00048{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m92_c00048{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m42_c00048{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00048{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.maa_c00048{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m79_c00048{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00048{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m17_c00048{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m55_c00048{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00048{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m41_c00048{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m83_c00048{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00048{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00048{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m11_c00048{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00048{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m81_c00048{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m30_c00048{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00048{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mac_c00048{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m56_c00048{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00048{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00048{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m26_c00048{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00048{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00048{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00048{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m51_c00048{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00048{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m25_c00048{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m15_c00048{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m75_c00048{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00048{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00048{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m37_c00048{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9_c00048{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m74_c00048{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00048{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00048{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00048{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5_c00048{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m52_c00048{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m63_c00048{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00048{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00048{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00048{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m77_c00048{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00048{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00048{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00048{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00048{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me_c00048{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m28_c00048{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m53_c00048{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m95_c00048{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m38_c00048{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md4_c00048{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);}
.m43_c00048{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27_c00048{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00048{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00048{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m54_c00048{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00048{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m73_c00048{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mad_c00048{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00048{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00048{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m64_c00048{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mae_c00048{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00048{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00048{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00048{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00048{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00048{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00048{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00048{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m24_c00048{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00048{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m96_c00048{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00048{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00048{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.md3_c00048{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00048{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m97_c00048{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m67_c00048{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.maf_c00048{transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);}
.md2_c00048{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m35_c00048{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m0_c00048{transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{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__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00048{word-spacing:-6.914089px;}
.ws2_c00048{word-spacing:-3.052402px;}
.ws5_c00048{word-spacing:0.000000px;}
.ws0_c00048{word-spacing:0.156250px;}
.ws3_c00048{word-spacing:16.509554px;}
.ws1_c00048{word-spacing:18.448669px;}
.fc0_c00048{color:transparent;}
.fs2_c00048{font-size:60.000000px;}
.fs1_c00048{font-size:66.000000px;}
.fs3_c00048{font-size:72.000000px;}
.fs0_c00048{font-size:84.000000px;}
.y0_c00048{bottom:0.000000px;}
.y34_c00048{bottom:192.600000px;}
.y33_c00048{bottom:210.600000px;}
.y32_c00048{bottom:227.850000px;}
.y35_c00048{bottom:245.550000px;}
.y31_c00048{bottom:246.600000px;}
.y30_c00048{bottom:264.600000px;}
.y2f_c00048{bottom:282.600000px;}
.y2e_c00048{bottom:300.300000px;}
.y2d_c00048{bottom:329.700000px;}
.y2c_c00048{bottom:348.450000px;}
.y2b_c00048{bottom:366.450000px;}
.y2a_c00048{bottom:384.450000px;}
.y37_c00048{bottom:404.700000px;}
.y29_c00048{bottom:410.100000px;}
.y28_c00048{bottom:428.400000px;}
.y27_c00048{bottom:446.400000px;}
.y26_c00048{bottom:464.400000px;}
.y25_c00048{bottom:482.100000px;}
.y23_c00048{bottom:511.950000px;}
.y22_c00048{bottom:530.250000px;}
.y24_c00048{bottom:546.450000px;}
.y21_c00048{bottom:548.250000px;}
.y20_c00048{bottom:565.950000px;}
.y36_c00048{bottom:583.950000px;}
.y1e_c00048{bottom:610.500000px;}
.y1d_c00048{bottom:628.200000px;}
.y1f_c00048{bottom:644.100000px;}
.y1c_c00048{bottom:646.200000px;}
.y1b_c00048{bottom:663.900000px;}
.y1a_c00048{bottom:681.900000px;}
.y18_c00048{bottom:707.700000px;}
.y17_c00048{bottom:725.700000px;}
.y19_c00048{bottom:741.900000px;}
.y16_c00048{bottom:743.700000px;}
.y15_c00048{bottom:761.700000px;}
.y14_c00048{bottom:779.400000px;}
.y13_c00048{bottom:806.250000px;}
.y12_c00048{bottom:823.950000px;}
.y11_c00048{bottom:841.950000px;}
.y10_c00048{bottom:859.950000px;}
.yf_c00048{bottom:877.650000px;}
.ye_c00048{bottom:904.350000px;}
.yd_c00048{bottom:921.600000px;}
.yc_c00048{bottom:939.300000px;}
.yb_c00048{bottom:957.300000px;}
.ya_c00048{bottom:983.550000px;}
.y9_c00048{bottom:1001.550000px;}
.y8_c00048{bottom:1019.100000px;}
.y7_c00048{bottom:1037.100000px;}
.y5_c00048{bottom:1063.650000px;}
.y4_c00048{bottom:1081.650000px;}
.y6_c00048{bottom:1090.500000px;}
.y3_c00048{bottom:1099.350000px;}
.y2_c00048{bottom:1117.050000px;}
.y1_c00048{bottom:1144.500000px;}
.h4_c00048{height:60.000000px;}
.h3_c00048{height:66.000000px;}
.h5_c00048{height:72.000000px;}
.h2_c00048{height:84.000000px;}
.h0_c00048{height:1267.919952px;}
.h1_c00048{height:1268.250000px;}
.w0_c00048{width:948.600036px;}
.w1_c00048{width:948.750000px;}
.x0_c00048{left:0.000000px;}
.x33_c00048{left:90.000000px;}
.x4a_c00048{left:92.100000px;}
.xa9_c00048{left:93.900000px;}
.x3e_c00048{left:101.850000px;}
.x34_c00048{left:125.250000px;}
.xc5_c00048{left:128.850000px;}
.xaa_c00048{left:130.200000px;}
.x4b_c00048{left:182.400000px;}
.xff_c00048{left:198.300000px;}
.x102_c00048{left:199.500000px;}
.x3_c00048{left:209.850000px;}
.x35_c00048{left:212.100000px;}
.x75_c00048{left:214.500000px;}
.xd2_c00048{left:216.300000px;}
.xe2_c00048{left:218.100000px;}
.xed_c00048{left:219.300000px;}
.xe_c00048{left:228.300000px;}
.x2a_c00048{left:230.250000px;}
.x67_c00048{left:231.600000px;}
.x83_c00048{left:232.800000px;}
.xb7_c00048{left:234.000000px;}
.xc3_c00048{left:235.350000px;}
.xf1_c00048{left:237.300000px;}
.xfd_c00048{left:239.250000px;}
.x2b_c00048{left:247.950000px;}
.x55_c00048{left:250.500000px;}
.x1c_c00048{left:251.550000px;}
.xdb_c00048{left:255.900000px;}
.x3f_c00048{left:259.650000px;}
.xec_c00048{left:262.050000px;}
.xb8_c00048{left:269.250000px;}
.x97_c00048{left:270.300000px;}
.xe0_c00048{left:272.700000px;}
.x1d_c00048{left:275.250000px;}
.x6e_c00048{left:278.100000px;}
.x93_c00048{left:280.050000px;}
.xf_c00048{left:281.550000px;}
.x4c_c00048{left:283.500000px;}
.xa7_c00048{left:285.150000px;}
.x5f_c00048{left:288.300000px;}
.x9f_c00048{left:289.500000px;}
.x98_c00048{left:292.650000px;}
.xca_c00048{left:294.450000px;}
.xc4_c00048{left:295.500000px;}
.xe5_c00048{left:297.750000px;}
.xa0_c00048{left:298.800000px;}
.xd3_c00048{left:299.850000px;}
.x4_c00048{left:301.350000px;}
.x2c_c00048{left:305.250000px;}
.xfe_c00048{left:307.650000px;}
.xbc_c00048{left:308.850000px;}
.xe8_c00048{left:309.900000px;}
.x87_c00048{left:311.550000px;}
.x5_c00048{left:315.450000px;}
.x84_c00048{left:317.100000px;}
.xdc_c00048{left:320.250000px;}
.x8f_c00048{left:321.450000px;}
.xf5_c00048{left:324.450000px;}
.x1_c00048{left:325.500000px;}
.xfa_c00048{left:327.000000px;}
.x6f_c00048{left:328.800000px;}
.xa1_c00048{left:330.150000px;}
.x8c_c00048{left:331.200000px;}
.x5b_c00048{left:333.750000px;}
.xe1_c00048{left:335.700000px;}
.x99_c00048{left:337.650000px;}
.x40_c00048{left:338.850000px;}
.x1e_c00048{left:340.050000px;}
.xcd_c00048{left:342.750000px;}
.xb9_c00048{left:343.800000px;}
.xee_c00048{left:347.400000px;}
.xf6_c00048{left:348.900000px;}
.x10_c00048{left:353.250000px;}
.xf8_c00048{left:355.800000px;}
.xd7_c00048{left:357.300000px;}
.x56_c00048{left:358.350000px;}
.x4d_c00048{left:359.400000px;}
.x88_c00048{left:365.550000px;}
.x11_c00048{left:366.600000px;}
.x1f_c00048{left:368.100000px;}
.xb2_c00048{left:373.650000px;}
.x41_c00048{left:376.650000px;}
.x6_c00048{left:377.700000px;}
.xcb_c00048{left:380.550000px;}
.x9a_c00048{left:383.250000px;}
.x8d_c00048{left:385.200000px;}
.xbd_c00048{left:387.300000px;}
.x60_c00048{left:388.800000px;}
.x89_c00048{left:391.050000px;}
.x2d_c00048{left:392.400000px;}
.x7b_c00048{left:395.850000px;}
.xa2_c00048{left:398.250000px;}
.x20_c00048{left:399.450000px;}
.x100_c00048{left:401.100000px;}
.x70_c00048{left:403.350000px;}
.x4e_c00048{left:405.150000px;}
.x68_c00048{left:408.300000px;}
.xb3_c00048{left:412.950000px;}
.xd9_c00048{left:414.000000px;}
.x57_c00048{left:415.200000px;}
.xd4_c00048{left:416.400000px;}
.x90_c00048{left:418.350000px;}
.x12_c00048{left:420.900000px;}
.x5c_c00048{left:423.450000px;}
.xce_c00048{left:424.500000px;}
.xc6_c00048{left:429.000000px;}
.xe9_c00048{left:432.600000px;}
.x7_c00048{left:435.600000px;}
.x4f_c00048{left:437.550000px;}
.xcf_c00048{left:439.950000px;}
.x21_c00048{left:441.150000px;}
.xa3_c00048{left:442.200000px;}
.x76_c00048{left:446.100000px;}
.x58_c00048{left:450.450000px;}
.xc7_c00048{left:453.450000px;}
.x9b_c00048{left:454.500000px;}
.x85_c00048{left:457.050000px;}
.x22_c00048{left:459.900000px;}
.x13_c00048{left:463.800000px;}
.x61_c00048{left:466.950000px;}
.x59_c00048{left:468.450000px;}
.x36_c00048{left:472.500000px;}
.xea_c00048{left:473.700000px;}
.x7c_c00048{left:475.350000px;}
.x5d_c00048{left:476.400000px;}
.x69_c00048{left:477.750000px;}
.xab_c00048{left:479.100000px;}
.x71_c00048{left:480.750000px;}
.x14_c00048{left:483.300000px;}
.x42_c00048{left:485.250000px;}
.x2e_c00048{left:487.500000px;}
.xb4_c00048{left:489.300000px;}
.xc8_c00048{left:492.750000px;}
.x7d_c00048{left:494.400000px;}
.x8_c00048{left:499.350000px;}
.x50_c00048{left:500.850000px;}
.xa4_c00048{left:502.650000px;}
.x23_c00048{left:508.800000px;}
.xf2_c00048{left:510.000000px;}
.x94_c00048{left:512.550000px;}
.x6a_c00048{left:514.500000px;}
.x77_c00048{left:516.300000px;}
.xdd_c00048{left:520.350000px;}
.x43_c00048{left:523.050000px;}
.x15_c00048{left:525.000000px;}
.xd0_c00048{left:526.800000px;}
.x91_c00048{left:528.450000px;}
.x37_c00048{left:530.400000px;}
.x95_c00048{left:533.850000px;}
.x16_c00048{left:536.550000px;}
.xb5_c00048{left:540.000000px;}
.x5a_c00048{left:541.200000px;}
.xf3_c00048{left:544.500000px;}
.x7e_c00048{left:546.300000px;}
.x44_c00048{left:548.250000px;}
.xe6_c00048{left:549.600000px;}
.x38_c00048{left:550.950000px;}
.x62_c00048{left:553.050000px;}
.xac_c00048{left:555.000000px;}
.xeb_c00048{left:556.200000px;}
.x51_c00048{left:561.300000px;}
.xad_c00048{left:564.750000px;}
.x2f_c00048{left:567.000000px;}
.x7f_c00048{left:569.400000px;}
.xde_c00048{left:570.450000px;}
.xd5_c00048{left:573.000000px;}
.xbe_c00048{left:574.050000px;}
.x72_c00048{left:575.100000px;}
.x24_c00048{left:576.900000px;}
.x9_c00048{left:578.250000px;}
.x17_c00048{left:579.450000px;}
.x6b_c00048{left:580.500000px;}
.x39_c00048{left:584.100000px;}
.xc9_c00048{left:585.900000px;}
.x80_c00048{left:588.450000px;}
.xae_c00048{left:589.950000px;}
.xe7_c00048{left:591.000000px;}
.xfb_c00048{left:594.150000px;}
.xa_c00048{left:595.500000px;}
.x18_c00048{left:596.700000px;}
.x78_c00048{left:599.400000px;}
.x3a_c00048{left:601.350000px;}
.xcc_c00048{left:602.400000px;}
.xda_c00048{left:605.850000px;}
.xf4_c00048{left:607.800000px;}
.x25_c00048{left:610.800000px;}
.x52_c00048{left:613.500000px;}
.xef_c00048{left:616.350000px;}
.x45_c00048{left:618.750000px;}
.xd6_c00048{left:619.800000px;}
.x30_c00048{left:621.000000px;}
.x3b_c00048{left:622.200000px;}
.x53_c00048{left:624.600000px;}
.x8a_c00048{left:627.150000px;}
.xe3_c00048{left:628.650000px;}
.x63_c00048{left:629.700000px;}
.xf7_c00048{left:631.200000px;}
.x26_c00048{left:632.400000px;}
.x101_c00048{left:633.450000px;}
.xb_c00048{left:636.150000px;}
.x19_c00048{left:637.800000px;}
.x9c_c00048{left:641.250000px;}
.x6c_c00048{left:643.050000px;}
.x79_c00048{left:645.900000px;}
.x73_c00048{left:647.100000px;}
.xba_c00048{left:649.050000px;}
.x8b_c00048{left:650.850000px;}
.xf0_c00048{left:652.050000px;}
.x86_c00048{left:653.700000px;}
.x3c_c00048{left:656.100000px;}
.x1a_c00048{left:658.350000px;}
.xbf_c00048{left:660.150000px;}
.xaf_c00048{left:663.450000px;}
.xb6_c00048{left:666.000000px;}
.x46_c00048{left:667.650000px;}
.xf9_c00048{left:672.750000px;}
.x27_c00048{left:674.850000px;}
.xc0_c00048{left:677.400000px;}
.x54_c00048{left:679.650000px;}
.xbb_c00048{left:682.200000px;}
.x28_c00048{left:684.150000px;}
.x81_c00048{left:688.500000px;}
.x47_c00048{left:692.100000px;}
.x64_c00048{left:694.200000px;}
.x92_c00048{left:697.650000px;}
.xb0_c00048{left:699.750000px;}
.xc_c00048{left:700.950000px;}
.x31_c00048{left:702.750000px;}
.x7a_c00048{left:705.000000px;}
.x9d_c00048{left:706.800000px;}
.x96_c00048{left:708.000000px;}
.x3d_c00048{left:709.350000px;}
.x48_c00048{left:715.800000px;}
.x65_c00048{left:719.400000px;}
.xc1_c00048{left:721.350000px;}
.x74_c00048{left:722.700000px;}
.xa5_c00048{left:724.350000px;}
.x49_c00048{left:728.100000px;}
.x1b_c00048{left:729.600000px;}
.x32_c00048{left:731.550000px;}
.x5e_c00048{left:733.350000px;}
.xa6_c00048{left:735.150000px;}
.x29_c00048{left:736.350000px;}
.xfc_c00048{left:737.850000px;}
.x8e_c00048{left:739.050000px;}
.xb1_c00048{left:742.200000px;}
.xa8_c00048{left:748.800000px;}
.x66_c00048{left:750.000000px;}
.x82_c00048{left:751.500000px;}
.xd8_c00048{left:752.700000px;}
.xe4_c00048{left:756.750000px;}
.x2_c00048{left:760.050000px;}
.xd1_c00048{left:764.250000px;}
.x6d_c00048{left:765.900000px;}
.xc2_c00048{left:769.950000px;}
.xdf_c00048{left:771.000000px;}
.xd_c00048{left:774.750000px;}
.x9e_c00048{left:777.300000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws4_c00048{word-spacing:-6.145857pt;}
.ws2_c00048{word-spacing:-2.713246pt;}
.ws5_c00048{word-spacing:0.000000pt;}
.ws0_c00048{word-spacing:0.138889pt;}
.ws3_c00048{word-spacing:14.675159pt;}
.ws1_c00048{word-spacing:16.398817pt;}
.fs2_c00048{font-size:53.333333pt;}
.fs1_c00048{font-size:58.666667pt;}
.fs3_c00048{font-size:64.000000pt;}
.fs0_c00048{font-size:74.666667pt;}
.y0_c00048{bottom:0.000000pt;}
.y34_c00048{bottom:171.200000pt;}
.y33_c00048{bottom:187.200000pt;}
.y32_c00048{bottom:202.533333pt;}
.y35_c00048{bottom:218.266667pt;}
.y31_c00048{bottom:219.200000pt;}
.y30_c00048{bottom:235.200000pt;}
.y2f_c00048{bottom:251.200000pt;}
.y2e_c00048{bottom:266.933333pt;}
.y2d_c00048{bottom:293.066667pt;}
.y2c_c00048{bottom:309.733333pt;}
.y2b_c00048{bottom:325.733333pt;}
.y2a_c00048{bottom:341.733333pt;}
.y37_c00048{bottom:359.733333pt;}
.y29_c00048{bottom:364.533333pt;}
.y28_c00048{bottom:380.800000pt;}
.y27_c00048{bottom:396.800000pt;}
.y26_c00048{bottom:412.800000pt;}
.y25_c00048{bottom:428.533333pt;}
.y23_c00048{bottom:455.066667pt;}
.y22_c00048{bottom:471.333333pt;}
.y24_c00048{bottom:485.733333pt;}
.y21_c00048{bottom:487.333333pt;}
.y20_c00048{bottom:503.066667pt;}
.y36_c00048{bottom:519.066667pt;}
.y1e_c00048{bottom:542.666667pt;}
.y1d_c00048{bottom:558.400000pt;}
.y1f_c00048{bottom:572.533333pt;}
.y1c_c00048{bottom:574.400000pt;}
.y1b_c00048{bottom:590.133333pt;}
.y1a_c00048{bottom:606.133333pt;}
.y18_c00048{bottom:629.066667pt;}
.y17_c00048{bottom:645.066667pt;}
.y19_c00048{bottom:659.466667pt;}
.y16_c00048{bottom:661.066667pt;}
.y15_c00048{bottom:677.066667pt;}
.y14_c00048{bottom:692.800000pt;}
.y13_c00048{bottom:716.666667pt;}
.y12_c00048{bottom:732.400000pt;}
.y11_c00048{bottom:748.400000pt;}
.y10_c00048{bottom:764.400000pt;}
.yf_c00048{bottom:780.133333pt;}
.ye_c00048{bottom:803.866667pt;}
.yd_c00048{bottom:819.200000pt;}
.yc_c00048{bottom:834.933333pt;}
.yb_c00048{bottom:850.933333pt;}
.ya_c00048{bottom:874.266667pt;}
.y9_c00048{bottom:890.266667pt;}
.y8_c00048{bottom:905.866667pt;}
.y7_c00048{bottom:921.866667pt;}
.y5_c00048{bottom:945.466667pt;}
.y4_c00048{bottom:961.466667pt;}
.y6_c00048{bottom:969.333333pt;}
.y3_c00048{bottom:977.200000pt;}
.y2_c00048{bottom:992.933333pt;}
.y1_c00048{bottom:1017.333333pt;}
.h4_c00048{height:53.333333pt;}
.h3_c00048{height:58.666667pt;}
.h5_c00048{height:64.000000pt;}
.h2_c00048{height:74.666667pt;}
.h0_c00048{height:1127.039957pt;}
.h1_c00048{height:1127.333333pt;}
.w0_c00048{width:843.200032pt;}
.w1_c00048{width:843.333333pt;}
.x0_c00048{left:0.000000pt;}
.x33_c00048{left:80.000000pt;}
.x4a_c00048{left:81.866667pt;}
.xa9_c00048{left:83.466667pt;}
.x3e_c00048{left:90.533333pt;}
.x34_c00048{left:111.333333pt;}
.xc5_c00048{left:114.533333pt;}
.xaa_c00048{left:115.733333pt;}
.x4b_c00048{left:162.133333pt;}
.xff_c00048{left:176.266667pt;}
.x102_c00048{left:177.333333pt;}
.x3_c00048{left:186.533333pt;}
.x35_c00048{left:188.533333pt;}
.x75_c00048{left:190.666667pt;}
.xd2_c00048{left:192.266667pt;}
.xe2_c00048{left:193.866667pt;}
.xed_c00048{left:194.933333pt;}
.xe_c00048{left:202.933333pt;}
.x2a_c00048{left:204.666667pt;}
.x67_c00048{left:205.866667pt;}
.x83_c00048{left:206.933333pt;}
.xb7_c00048{left:208.000000pt;}
.xc3_c00048{left:209.200000pt;}
.xf1_c00048{left:210.933333pt;}
.xfd_c00048{left:212.666667pt;}
.x2b_c00048{left:220.400000pt;}
.x55_c00048{left:222.666667pt;}
.x1c_c00048{left:223.600000pt;}
.xdb_c00048{left:227.466667pt;}
.x3f_c00048{left:230.800000pt;}
.xec_c00048{left:232.933333pt;}
.xb8_c00048{left:239.333333pt;}
.x97_c00048{left:240.266667pt;}
.xe0_c00048{left:242.400000pt;}
.x1d_c00048{left:244.666667pt;}
.x6e_c00048{left:247.200000pt;}
.x93_c00048{left:248.933333pt;}
.xf_c00048{left:250.266667pt;}
.x4c_c00048{left:252.000000pt;}
.xa7_c00048{left:253.466667pt;}
.x5f_c00048{left:256.266667pt;}
.x9f_c00048{left:257.333333pt;}
.x98_c00048{left:260.133333pt;}
.xca_c00048{left:261.733333pt;}
.xc4_c00048{left:262.666667pt;}
.xe5_c00048{left:264.666667pt;}
.xa0_c00048{left:265.600000pt;}
.xd3_c00048{left:266.533333pt;}
.x4_c00048{left:267.866667pt;}
.x2c_c00048{left:271.333333pt;}
.xfe_c00048{left:273.466667pt;}
.xbc_c00048{left:274.533333pt;}
.xe8_c00048{left:275.466667pt;}
.x87_c00048{left:276.933333pt;}
.x5_c00048{left:280.400000pt;}
.x84_c00048{left:281.866667pt;}
.xdc_c00048{left:284.666667pt;}
.x8f_c00048{left:285.733333pt;}
.xf5_c00048{left:288.400000pt;}
.x1_c00048{left:289.333333pt;}
.xfa_c00048{left:290.666667pt;}
.x6f_c00048{left:292.266667pt;}
.xa1_c00048{left:293.466667pt;}
.x8c_c00048{left:294.400000pt;}
.x5b_c00048{left:296.666667pt;}
.xe1_c00048{left:298.400000pt;}
.x99_c00048{left:300.133333pt;}
.x40_c00048{left:301.200000pt;}
.x1e_c00048{left:302.266667pt;}
.xcd_c00048{left:304.666667pt;}
.xb9_c00048{left:305.600000pt;}
.xee_c00048{left:308.800000pt;}
.xf6_c00048{left:310.133333pt;}
.x10_c00048{left:314.000000pt;}
.xf8_c00048{left:316.266667pt;}
.xd7_c00048{left:317.600000pt;}
.x56_c00048{left:318.533333pt;}
.x4d_c00048{left:319.466667pt;}
.x88_c00048{left:324.933333pt;}
.x11_c00048{left:325.866667pt;}
.x1f_c00048{left:327.200000pt;}
.xb2_c00048{left:332.133333pt;}
.x41_c00048{left:334.800000pt;}
.x6_c00048{left:335.733333pt;}
.xcb_c00048{left:338.266667pt;}
.x9a_c00048{left:340.666667pt;}
.x8d_c00048{left:342.400000pt;}
.xbd_c00048{left:344.266667pt;}
.x60_c00048{left:345.600000pt;}
.x89_c00048{left:347.600000pt;}
.x2d_c00048{left:348.800000pt;}
.x7b_c00048{left:351.866667pt;}
.xa2_c00048{left:354.000000pt;}
.x20_c00048{left:355.066667pt;}
.x100_c00048{left:356.533333pt;}
.x70_c00048{left:358.533333pt;}
.x4e_c00048{left:360.133333pt;}
.x68_c00048{left:362.933333pt;}
.xb3_c00048{left:367.066667pt;}
.xd9_c00048{left:368.000000pt;}
.x57_c00048{left:369.066667pt;}
.xd4_c00048{left:370.133333pt;}
.x90_c00048{left:371.866667pt;}
.x12_c00048{left:374.133333pt;}
.x5c_c00048{left:376.400000pt;}
.xce_c00048{left:377.333333pt;}
.xc6_c00048{left:381.333333pt;}
.xe9_c00048{left:384.533333pt;}
.x7_c00048{left:387.200000pt;}
.x4f_c00048{left:388.933333pt;}
.xcf_c00048{left:391.066667pt;}
.x21_c00048{left:392.133333pt;}
.xa3_c00048{left:393.066667pt;}
.x76_c00048{left:396.533333pt;}
.x58_c00048{left:400.400000pt;}
.xc7_c00048{left:403.066667pt;}
.x9b_c00048{left:404.000000pt;}
.x85_c00048{left:406.266667pt;}
.x22_c00048{left:408.800000pt;}
.x13_c00048{left:412.266667pt;}
.x61_c00048{left:415.066667pt;}
.x59_c00048{left:416.400000pt;}
.x36_c00048{left:420.000000pt;}
.xea_c00048{left:421.066667pt;}
.x7c_c00048{left:422.533333pt;}
.x5d_c00048{left:423.466667pt;}
.x69_c00048{left:424.666667pt;}
.xab_c00048{left:425.866667pt;}
.x71_c00048{left:427.333333pt;}
.x14_c00048{left:429.600000pt;}
.x42_c00048{left:431.333333pt;}
.x2e_c00048{left:433.333333pt;}
.xb4_c00048{left:434.933333pt;}
.xc8_c00048{left:438.000000pt;}
.x7d_c00048{left:439.466667pt;}
.x8_c00048{left:443.866667pt;}
.x50_c00048{left:445.200000pt;}
.xa4_c00048{left:446.800000pt;}
.x23_c00048{left:452.266667pt;}
.xf2_c00048{left:453.333333pt;}
.x94_c00048{left:455.600000pt;}
.x6a_c00048{left:457.333333pt;}
.x77_c00048{left:458.933333pt;}
.xdd_c00048{left:462.533333pt;}
.x43_c00048{left:464.933333pt;}
.x15_c00048{left:466.666667pt;}
.xd0_c00048{left:468.266667pt;}
.x91_c00048{left:469.733333pt;}
.x37_c00048{left:471.466667pt;}
.x95_c00048{left:474.533333pt;}
.x16_c00048{left:476.933333pt;}
.xb5_c00048{left:480.000000pt;}
.x5a_c00048{left:481.066667pt;}
.xf3_c00048{left:484.000000pt;}
.x7e_c00048{left:485.600000pt;}
.x44_c00048{left:487.333333pt;}
.xe6_c00048{left:488.533333pt;}
.x38_c00048{left:489.733333pt;}
.x62_c00048{left:491.600000pt;}
.xac_c00048{left:493.333333pt;}
.xeb_c00048{left:494.400000pt;}
.x51_c00048{left:498.933333pt;}
.xad_c00048{left:502.000000pt;}
.x2f_c00048{left:504.000000pt;}
.x7f_c00048{left:506.133333pt;}
.xde_c00048{left:507.066667pt;}
.xd5_c00048{left:509.333333pt;}
.xbe_c00048{left:510.266667pt;}
.x72_c00048{left:511.200000pt;}
.x24_c00048{left:512.800000pt;}
.x9_c00048{left:514.000000pt;}
.x17_c00048{left:515.066667pt;}
.x6b_c00048{left:516.000000pt;}
.x39_c00048{left:519.200000pt;}
.xc9_c00048{left:520.800000pt;}
.x80_c00048{left:523.066667pt;}
.xae_c00048{left:524.400000pt;}
.xe7_c00048{left:525.333333pt;}
.xfb_c00048{left:528.133333pt;}
.xa_c00048{left:529.333333pt;}
.x18_c00048{left:530.400000pt;}
.x78_c00048{left:532.800000pt;}
.x3a_c00048{left:534.533333pt;}
.xcc_c00048{left:535.466667pt;}
.xda_c00048{left:538.533333pt;}
.xf4_c00048{left:540.266667pt;}
.x25_c00048{left:542.933333pt;}
.x52_c00048{left:545.333333pt;}
.xef_c00048{left:547.866667pt;}
.x45_c00048{left:550.000000pt;}
.xd6_c00048{left:550.933333pt;}
.x30_c00048{left:552.000000pt;}
.x3b_c00048{left:553.066667pt;}
.x53_c00048{left:555.200000pt;}
.x8a_c00048{left:557.466667pt;}
.xe3_c00048{left:558.800000pt;}
.x63_c00048{left:559.733333pt;}
.xf7_c00048{left:561.066667pt;}
.x26_c00048{left:562.133333pt;}
.x101_c00048{left:563.066667pt;}
.xb_c00048{left:565.466667pt;}
.x19_c00048{left:566.933333pt;}
.x9c_c00048{left:570.000000pt;}
.x6c_c00048{left:571.600000pt;}
.x79_c00048{left:574.133333pt;}
.x73_c00048{left:575.200000pt;}
.xba_c00048{left:576.933333pt;}
.x8b_c00048{left:578.533333pt;}
.xf0_c00048{left:579.600000pt;}
.x86_c00048{left:581.066667pt;}
.x3c_c00048{left:583.200000pt;}
.x1a_c00048{left:585.200000pt;}
.xbf_c00048{left:586.800000pt;}
.xaf_c00048{left:589.733333pt;}
.xb6_c00048{left:592.000000pt;}
.x46_c00048{left:593.466667pt;}
.xf9_c00048{left:598.000000pt;}
.x27_c00048{left:599.866667pt;}
.xc0_c00048{left:602.133333pt;}
.x54_c00048{left:604.133333pt;}
.xbb_c00048{left:606.400000pt;}
.x28_c00048{left:608.133333pt;}
.x81_c00048{left:612.000000pt;}
.x47_c00048{left:615.200000pt;}
.x64_c00048{left:617.066667pt;}
.x92_c00048{left:620.133333pt;}
.xb0_c00048{left:622.000000pt;}
.xc_c00048{left:623.066667pt;}
.x31_c00048{left:624.666667pt;}
.x7a_c00048{left:626.666667pt;}
.x9d_c00048{left:628.266667pt;}
.x96_c00048{left:629.333333pt;}
.x3d_c00048{left:630.533333pt;}
.x48_c00048{left:636.266667pt;}
.x65_c00048{left:639.466667pt;}
.xc1_c00048{left:641.200000pt;}
.x74_c00048{left:642.400000pt;}
.xa5_c00048{left:643.866667pt;}
.x49_c00048{left:647.200000pt;}
.x1b_c00048{left:648.533333pt;}
.x32_c00048{left:650.266667pt;}
.x5e_c00048{left:651.866667pt;}
.xa6_c00048{left:653.466667pt;}
.x29_c00048{left:654.533333pt;}
.xfc_c00048{left:655.866667pt;}
.x8e_c00048{left:656.933333pt;}
.xb1_c00048{left:659.733333pt;}
.xa8_c00048{left:665.600000pt;}
.x66_c00048{left:666.666667pt;}
.x82_c00048{left:668.000000pt;}
.xd8_c00048{left:669.066667pt;}
.xe4_c00048{left:672.666667pt;}
.x2_c00048{left:675.600000pt;}
.xd1_c00048{left:679.333333pt;}
.x6d_c00048{left:680.800000pt;}
.xc2_c00048{left:684.400000pt;}
.xdf_c00048{left:685.333333pt;}
.xd_c00048{left:688.666667pt;}
.x9e_c00048{left:690.933333pt;}
}





/* 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_c00049 {
    display:none;
  }
  .loading-indicator_c00049.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00049 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_c00049 { 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_c00049" -> "#page-container .classname_c00049")
 */
.pf_c00049 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00049 { /* 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_c00049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00049 { /* 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_c00049 { /* 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_c00049 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00049 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00049 {overflow:visible;}
  }
}
.c_c00049 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00049 { /* 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_c00049:after { /* webkit #35443 */
  content: '';
}
.t_c00049:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00049 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 */
}
.__c00049 { /* 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_c00049 { /* info for Javascript */
  display:none;
}
.l_c00049 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00049 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00049 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00049: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_c00049 {
    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_c00049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00049.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_c00049 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00049;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.000000;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;}
.m25_c00049{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m73_c00049{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m26_c00049{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m86_c00049{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00049{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00049{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m13_c00049{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m81_c00049{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m69_c00049{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3_c00049{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m39_c00049{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m63_c00049{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00049{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00049{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m87_c00049{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00049{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00049{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md0_c00049{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m37_c00049{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00049{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00049{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m38_c00049{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00049{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00049{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00049{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00049{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m15_c00049{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00049{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m83_c00049{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00049{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00049{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m36_c00049{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00049{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.maf_c00049{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m22_c00049{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m80_c00049{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00049{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00049{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md1_c00049{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m47_c00049{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m60_c00049{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00049{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m90_c00049{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m49_c00049{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m34_c00049{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00049{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mba_c00049{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00049{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00049{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf_c00049{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6_c00049{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m53_c00049{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00049{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m76_c00049{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00049{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00049{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00049{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m24_c00049{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00049{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00049{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00049{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mac_c00049{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m92_c00049{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00049{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m20_c00049{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m58_c00049{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m79_c00049{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00049{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00049{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00049{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00049{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00049{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00049{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m19_c00049{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00049{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00049{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m55_c00049{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m0_c00049{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00049{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m82_c00049{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00049{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00049{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md5_c00049{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m32_c00049{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00049{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00049{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4_c00049{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m41_c00049{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00049{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m99_c00049{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00049{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00049{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m46_c00049{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00049{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m66_c00049{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mce_c00049{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m33_c00049{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m44_c00049{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m50_c00049{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00049{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00049{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m29_c00049{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00049{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m84_c00049{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m72_c00049{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md4_c00049{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m35_c00049{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00049{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m77_c00049{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m85_c00049{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m31_c00049{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00049{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m14_c00049{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00049{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m45_c00049{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m51_c00049{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m88_c00049{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00049{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md6_c00049{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m17_c00049{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m61_c00049{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00049{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00049{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m56_c00049{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m52_c00049{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00049{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m18_c00049{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m93_c00049{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m96_c00049{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mca_c00049{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00049{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m30_c00049{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00049{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb_c00049{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md3_c00049{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00049{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00049{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00049{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m21_c00049{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00049{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m40_c00049{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m70_c00049{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5_c00049{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m64_c00049{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mad_c00049{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m57_c00049{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7_c00049{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m42_c00049{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00049{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00049{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00049{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m68_c00049{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00049{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m75_c00049{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00049{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m62_c00049{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma_c00049{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00049{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m8_c00049{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00049{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9_c00049{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00049{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00049{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00049{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m65_c00049{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m98_c00049{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00049{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m12_c00049{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m94_c00049{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m48_c00049{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00049{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m59_c00049{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m54_c00049{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mae_c00049{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m23_c00049{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m95_c00049{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m71_c00049{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m27_c00049{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00049{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00049{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m89_c00049{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00049{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m10_c00049{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00049{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m43_c00049{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc_c00049{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00049{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.md_c00049{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00049{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c00049{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00049{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m97_c00049{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m67_c00049{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00049{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00049{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m78_c00049{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m16_c00049{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00049{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00049{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00049{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.mab_c00049{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00049{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00049{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00049{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m74_c00049{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m28_c00049{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.maa_c00049{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.md7_c00049{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00049{transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);}
.m2_c00049{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m91_c00049{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00049{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.md2_c00049{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00049{transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00049{transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{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__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:-8.329897px;}
.ws3_c00049{word-spacing:0.000000px;}
.ws1_c00049{word-spacing:342.631579px;}
.ws2_c00049{word-spacing:1971.250000px;}
.fc0_c00049{color:transparent;}
.fs4_c00049{font-size:30.000000px;}
.fs3_c00049{font-size:60.000000px;}
.fs1_c00049{font-size:66.000000px;}
.fs2_c00049{font-size:72.000000px;}
.fs0_c00049{font-size:108.000000px;}
.y0_c00049{bottom:0.000000px;}
.y37_c00049{bottom:197.400000px;}
.y36_c00049{bottom:215.700000px;}
.y38_c00049{bottom:232.500000px;}
.y35_c00049{bottom:233.250000px;}
.y34_c00049{bottom:251.250000px;}
.y33_c00049{bottom:268.950000px;}
.y32_c00049{bottom:295.500000px;}
.y31_c00049{bottom:313.500000px;}
.y2e_c00049{bottom:339.750000px;}
.y30_c00049{bottom:345.600000px;}
.y2d_c00049{bottom:357.750000px;}
.y2f_c00049{bottom:374.700000px;}
.y2c_c00049{bottom:375.750000px;}
.y2b_c00049{bottom:393.450000px;}
.y2a_c00049{bottom:411.450000px;}
.y29_c00049{bottom:437.700000px;}
.y28_c00049{bottom:456.450000px;}
.y27_c00049{bottom:474.450000px;}
.y26_c00049{bottom:492.450000px;}
.y23_c00049{bottom:528.000000px;}
.y22_c00049{bottom:545.700000px;}
.y25_c00049{bottom:553.650000px;}
.y21_c00049{bottom:564.000000px;}
.y20_c00049{bottom:581.700000px;}
.y1e_c00049{bottom:607.350000px;}
.y1d_c00049{bottom:625.650000px;}
.y1f_c00049{bottom:643.650000px;}
.y1c_c00049{bottom:643.950000px;}
.y1b_c00049{bottom:657.600000px;}
.y1a_c00049{bottom:661.950000px;}
.y19_c00049{bottom:679.650000px;}
.y17_c00049{bottom:706.650000px;}
.y16_c00049{bottom:724.650000px;}
.y18_c00049{bottom:733.350000px;}
.y15_c00049{bottom:742.350000px;}
.y24_c00049{bottom:760.650000px;}
.y13_c00049{bottom:786.600000px;}
.y12_c00049{bottom:805.350000px;}
.y14_c00049{bottom:813.900000px;}
.y11_c00049{bottom:824.100000px;}
.y10_c00049{bottom:842.100000px;}
.ye_c00049{bottom:867.600000px;}
.yd_c00049{bottom:887.100000px;}
.yf_c00049{bottom:894.300000px;}
.yc_c00049{bottom:905.100000px;}
.yb_c00049{bottom:923.100000px;}
.ya_c00049{bottom:956.550000px;}
.y9_c00049{bottom:976.350000px;}
.y8_c00049{bottom:1012.050000px;}
.y7_c00049{bottom:1030.350000px;}
.y5_c00049{bottom:1064.100000px;}
.y4_c00049{bottom:1082.850000px;}
.y6_c00049{bottom:1091.850000px;}
.y3_c00049{bottom:1100.850000px;}
.y2_c00049{bottom:1118.850000px;}
.y1_c00049{bottom:1145.550000px;}
.h6_c00049{height:30.000000px;}
.h5_c00049{height:60.000000px;}
.h3_c00049{height:66.000000px;}
.h4_c00049{height:72.000000px;}
.h2_c00049{height:108.000000px;}
.h0_c00049{height:1270.440033px;}
.h1_c00049{height:1270.500000px;}
.w0_c00049{width:948.600036px;}
.w1_c00049{width:948.750000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:172.500000px;}
.x109_c00049{left:176.100000px;}
.x98_c00049{left:177.900000px;}
.x88_c00049{left:179.250000px;}
.x6e_c00049{left:180.300000px;}
.x2b_c00049{left:181.800000px;}
.xf1_c00049{left:191.850000px;}
.xb4_c00049{left:209.550000px;}
.xce_c00049{left:210.600000px;}
.x99_c00049{left:211.800000px;}
.x6f_c00049{left:213.000000px;}
.x2c_c00049{left:215.250000px;}
.xcf_c00049{left:275.400000px;}
.xc9_c00049{left:276.900000px;}
.x36_c00049{left:279.600000px;}
.xf0_c00049{left:289.050000px;}
.xdc_c00049{left:291.750000px;}
.xd3_c00049{left:292.800000px;}
.x48_c00049{left:294.300000px;}
.x4f_c00049{left:296.250000px;}
.x3_c00049{left:298.500000px;}
.x2d_c00049{left:299.550000px;}
.xf2_c00049{left:306.300000px;}
.xa0_c00049{left:310.950000px;}
.x60_c00049{left:312.900000px;}
.x56_c00049{left:314.100000px;}
.xf_c00049{left:316.500000px;}
.x2e_c00049{left:323.250000px;}
.xe2_c00049{left:331.500000px;}
.x37_c00049{left:333.300000px;}
.xd0_c00049{left:336.600000px;}
.xdd_c00049{left:340.050000px;}
.x49_c00049{left:341.400000px;}
.x3f_c00049{left:342.450000px;}
.x77_c00049{left:345.600000px;}
.x69_c00049{left:347.250000px;}
.xa1_c00049{left:349.050000px;}
.x89_c00049{left:351.300000px;}
.x24_c00049{left:352.650000px;}
.x78_c00049{left:354.900000px;}
.x57_c00049{left:356.250000px;}
.x10_c00049{left:358.650000px;}
.xa2_c00049{left:359.850000px;}
.x87_c00049{left:361.050000px;}
.xf7_c00049{left:362.250000px;}
.xec_c00049{left:363.300000px;}
.x61_c00049{left:366.150000px;}
.xaf_c00049{left:369.000000px;}
.x106_c00049{left:371.550000px;}
.x25_c00049{left:372.750000px;}
.x9a_c00049{left:374.700000px;}
.x50_c00049{left:376.500000px;}
.xaa_c00049{left:379.500000px;}
.x11_c00049{left:381.300000px;}
.x4_c00049{left:384.600000px;}
.x51_c00049{left:387.000000px;}
.x4a_c00049{left:389.700000px;}
.x6a_c00049{left:391.950000px;}
.x7f_c00049{left:393.450000px;}
.x79_c00049{left:394.500000px;}
.x5_c00049{left:397.500000px;}
.xa3_c00049{left:400.200000px;}
.x2f_c00049{left:402.150000px;}
.xd4_c00049{left:404.700000px;}
.x90_c00049{left:406.200000px;}
.x1c_c00049{left:407.400000px;}
.x2_c00049{left:408.600000px;}
.xf3_c00049{left:409.950000px;}
.x58_c00049{left:411.300000px;}
.x40_c00049{left:414.150000px;}
.x26_c00049{left:418.050000px;}
.xb5_c00049{left:420.900000px;}
.x62_c00049{left:421.950000px;}
.x4b_c00049{left:423.600000px;}
.x12_c00049{left:425.550000px;}
.x8a_c00049{left:426.900000px;}
.x107_c00049{left:428.100000px;}
.x27_c00049{left:429.900000px;}
.x9b_c00049{left:431.550000px;}
.x30_c00049{left:433.050000px;}
.x59_c00049{left:435.750000px;}
.xd5_c00049{left:437.850000px;}
.xfb_c00049{left:439.500000px;}
.x91_c00049{left:442.200000px;}
.xb8_c00049{left:443.700000px;}
.x1d_c00049{left:444.900000px;}
.xb0_c00049{left:446.400000px;}
.xfc_c00049{left:447.750000px;}
.x13_c00049{left:450.000000px;}
.x28_c00049{left:451.500000px;}
.xa4_c00049{left:453.150000px;}
.x52_c00049{left:454.650000px;}
.xd6_c00049{left:455.850000px;}
.x70_c00049{left:457.950000px;}
.x41_c00049{left:460.650000px;}
.xf4_c00049{left:462.150000px;}
.xed_c00049{left:463.800000px;}
.x6_c00049{left:466.200000px;}
.x80_c00049{left:469.350000px;}
.x4c_c00049{left:471.150000px;}
.x14_c00049{left:473.400000px;}
.xab_c00049{left:475.950000px;}
.xca_c00049{left:480.000000px;}
.xa5_c00049{left:481.200000px;}
.x63_c00049{left:482.850000px;}
.x100_c00049{left:484.050000px;}
.x1e_c00049{left:485.250000px;}
.x92_c00049{left:489.300000px;}
.x5a_c00049{left:493.350000px;}
.x38_c00049{left:494.550000px;}
.xe9_c00049{left:495.600000px;}
.x4d_c00049{left:496.650000px;}
.xb1_c00049{left:500.400000px;}
.xc3_c00049{left:504.000000px;}
.x7a_c00049{left:505.800000px;}
.xa6_c00049{left:507.450000px;}
.xee_c00049{left:508.800000px;}
.xfd_c00049{left:510.750000px;}
.x7_c00049{left:512.700000px;}
.x42_c00049{left:514.950000px;}
.xa7_c00049{left:516.750000px;}
.x53_c00049{left:518.700000px;}
.x4e_c00049{left:520.800000px;}
.xf5_c00049{left:522.300000px;}
.x71_c00049{left:525.300000px;}
.xac_c00049{left:530.250000px;}
.xbc_c00049{left:532.950000px;}
.x104_c00049{left:535.800000px;}
.xcb_c00049{left:537.600000px;}
.x64_c00049{left:540.150000px;}
.xd7_c00049{left:541.950000px;}
.xe3_c00049{left:543.450000px;}
.x101_c00049{left:547.050000px;}
.x5b_c00049{left:550.950000px;}
.x39_c00049{left:552.900000px;}
.xad_c00049{left:555.450000px;}
.x6b_c00049{left:556.500000px;}
.xe4_c00049{left:562.500000px;}
.x93_c00049{left:564.600000px;}
.x15_c00049{left:567.750000px;}
.x6c_c00049{left:569.400000px;}
.x97_c00049{left:571.650000px;}
.x1f_c00049{left:574.200000px;}
.x31_c00049{left:575.550000px;}
.x94_c00049{left:577.950000px;}
.x43_c00049{left:579.000000px;}
.x8b_c00049{left:582.600000px;}
.xb9_c00049{left:585.150000px;}
.x8_c00049{left:586.200000px;}
.x3a_c00049{left:592.200000px;}
.xef_c00049{left:595.800000px;}
.x65_c00049{left:597.450000px;}
.xc4_c00049{left:599.100000px;}
.x44_c00049{left:601.350000px;}
.x6d_c00049{left:602.850000px;}
.x72_c00049{left:604.800000px;}
.x81_c00049{left:606.150000px;}
.xba_c00049{left:607.500000px;}
.xde_c00049{left:609.750000px;}
.x5c_c00049{left:612.150000px;}
.x16_c00049{left:614.250000px;}
.xcc_c00049{left:615.750000px;}
.x9_c00049{left:616.800000px;}
.x82_c00049{left:618.450000px;}
.x105_c00049{left:621.450000px;}
.x3b_c00049{left:624.900000px;}
.xb2_c00049{left:626.850000px;}
.xbd_c00049{left:628.650000px;}
.x9c_c00049{left:630.600000px;}
.x8c_c00049{left:632.250000px;}
.xdf_c00049{left:634.500000px;}
.xbe_c00049{left:636.900000px;}
.xd8_c00049{left:638.100000px;}
.x20_c00049{left:639.750000px;}
.xae_c00049{left:640.800000px;}
.x9d_c00049{left:642.900000px;}
.x66_c00049{left:645.300000px;}
.xb3_c00049{left:648.450000px;}
.xc5_c00049{left:651.000000px;}
.x21_c00049{left:653.100000px;}
.xbb_c00049{left:654.300000px;}
.xfe_c00049{left:655.500000px;}
.xa_c00049{left:656.700000px;}
.x32_c00049{left:661.950000px;}
.x17_c00049{left:664.350000px;}
.xe5_c00049{left:667.950000px;}
.x83_c00049{left:670.950000px;}
.x8d_c00049{left:674.400000px;}
.x18_c00049{left:676.200000px;}
.x108_c00049{left:678.300000px;}
.x29_c00049{left:679.800000px;}
.xd9_c00049{left:681.000000px;}
.x9e_c00049{left:684.300000px;}
.x5d_c00049{left:685.950000px;}
.xea_c00049{left:690.600000px;}
.x54_c00049{left:693.600000px;}
.x7b_c00049{left:696.150000px;}
.x73_c00049{left:697.200000px;}
.xf8_c00049{left:701.550000px;}
.xbf_c00049{left:705.000000px;}
.x22_c00049{left:706.350000px;}
.x3c_c00049{left:708.450000px;}
.xa8_c00049{left:711.450000px;}
.xb6_c00049{left:715.050000px;}
.xcd_c00049{left:716.100000px;}
.xd1_c00049{left:718.050000px;}
.x84_c00049{left:719.850000px;}
.x95_c00049{left:721.800000px;}
.xb7_c00049{left:724.050000px;}
.x2a_c00049{left:725.100000px;}
.x8e_c00049{left:726.900000px;}
.xe0_c00049{left:730.650000px;}
.x67_c00049{left:734.250000px;}
.xf9_c00049{left:741.150000px;}
.xe6_c00049{left:742.500000px;}
.xb_c00049{left:743.850000px;}
.x19_c00049{left:746.400000px;}
.xda_c00049{left:747.900000px;}
.xc6_c00049{left:748.950000px;}
.x96_c00049{left:750.300000px;}
.x55_c00049{left:751.950000px;}
.x5e_c00049{left:753.600000px;}
.x7c_c00049{left:756.300000px;}
.xc0_c00049{left:758.250000px;}
.x74_c00049{left:760.950000px;}
.x33_c00049{left:762.000000px;}
.x85_c00049{left:764.550000px;}
.x1a_c00049{left:765.900000px;}
.x45_c00049{left:767.400000px;}
.xc1_c00049{left:769.350000px;}
.x3d_c00049{left:772.500000px;}
.xc_c00049{left:774.750000px;}
.xfa_c00049{left:778.950000px;}
.x75_c00049{left:780.450000px;}
.x68_c00049{left:782.550000px;}
.x34_c00049{left:785.400000px;}
.x9f_c00049{left:787.200000px;}
.xd2_c00049{left:788.550000px;}
.xc7_c00049{left:789.600000px;}
.xeb_c00049{left:791.400000px;}
.x3e_c00049{left:795.150000px;}
.x86_c00049{left:796.650000px;}
.xa9_c00049{left:800.550000px;}
.xff_c00049{left:803.400000px;}
.xc2_c00049{left:804.600000px;}
.xc8_c00049{left:809.700000px;}
.x23_c00049{left:812.850000px;}
.x8f_c00049{left:815.100000px;}
.xe7_c00049{left:818.400000px;}
.xf6_c00049{left:820.650000px;}
.x7d_c00049{left:821.850000px;}
.x35_c00049{left:823.200000px;}
.xd_c00049{left:824.850000px;}
.xe1_c00049{left:827.550000px;}
.x46_c00049{left:831.450000px;}
.x7e_c00049{left:832.950000px;}
.x76_c00049{left:837.000000px;}
.xe_c00049{left:839.250000px;}
.x102_c00049{left:842.550000px;}
.x1b_c00049{left:844.800000px;}
.x5f_c00049{left:847.200000px;}
.x47_c00049{left:851.550000px;}
.x103_c00049{left:853.650000px;}
.xe8_c00049{left:855.000000px;}
.xdb_c00049{left:856.200000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:-7.404353pt;}
.ws3_c00049{word-spacing:0.000000pt;}
.ws1_c00049{word-spacing:304.561404pt;}
.ws2_c00049{word-spacing:1752.222222pt;}
.fs4_c00049{font-size:26.666667pt;}
.fs3_c00049{font-size:53.333333pt;}
.fs1_c00049{font-size:58.666667pt;}
.fs2_c00049{font-size:64.000000pt;}
.fs0_c00049{font-size:96.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y37_c00049{bottom:175.466667pt;}
.y36_c00049{bottom:191.733333pt;}
.y38_c00049{bottom:206.666667pt;}
.y35_c00049{bottom:207.333333pt;}
.y34_c00049{bottom:223.333333pt;}
.y33_c00049{bottom:239.066667pt;}
.y32_c00049{bottom:262.666667pt;}
.y31_c00049{bottom:278.666667pt;}
.y2e_c00049{bottom:302.000000pt;}
.y30_c00049{bottom:307.200000pt;}
.y2d_c00049{bottom:318.000000pt;}
.y2f_c00049{bottom:333.066667pt;}
.y2c_c00049{bottom:334.000000pt;}
.y2b_c00049{bottom:349.733333pt;}
.y2a_c00049{bottom:365.733333pt;}
.y29_c00049{bottom:389.066667pt;}
.y28_c00049{bottom:405.733333pt;}
.y27_c00049{bottom:421.733333pt;}
.y26_c00049{bottom:437.733333pt;}
.y23_c00049{bottom:469.333333pt;}
.y22_c00049{bottom:485.066667pt;}
.y25_c00049{bottom:492.133333pt;}
.y21_c00049{bottom:501.333333pt;}
.y20_c00049{bottom:517.066667pt;}
.y1e_c00049{bottom:539.866667pt;}
.y1d_c00049{bottom:556.133333pt;}
.y1f_c00049{bottom:572.133333pt;}
.y1c_c00049{bottom:572.400000pt;}
.y1b_c00049{bottom:584.533333pt;}
.y1a_c00049{bottom:588.400000pt;}
.y19_c00049{bottom:604.133333pt;}
.y17_c00049{bottom:628.133333pt;}
.y16_c00049{bottom:644.133333pt;}
.y18_c00049{bottom:651.866667pt;}
.y15_c00049{bottom:659.866667pt;}
.y24_c00049{bottom:676.133333pt;}
.y13_c00049{bottom:699.200000pt;}
.y12_c00049{bottom:715.866667pt;}
.y14_c00049{bottom:723.466667pt;}
.y11_c00049{bottom:732.533333pt;}
.y10_c00049{bottom:748.533333pt;}
.ye_c00049{bottom:771.200000pt;}
.yd_c00049{bottom:788.533333pt;}
.yf_c00049{bottom:794.933333pt;}
.yc_c00049{bottom:804.533333pt;}
.yb_c00049{bottom:820.533333pt;}
.ya_c00049{bottom:850.266667pt;}
.y9_c00049{bottom:867.866667pt;}
.y8_c00049{bottom:899.600000pt;}
.y7_c00049{bottom:915.866667pt;}
.y5_c00049{bottom:945.866667pt;}
.y4_c00049{bottom:962.533333pt;}
.y6_c00049{bottom:970.533333pt;}
.y3_c00049{bottom:978.533333pt;}
.y2_c00049{bottom:994.533333pt;}
.y1_c00049{bottom:1018.266667pt;}
.h6_c00049{height:26.666667pt;}
.h5_c00049{height:53.333333pt;}
.h3_c00049{height:58.666667pt;}
.h4_c00049{height:64.000000pt;}
.h2_c00049{height:96.000000pt;}
.h0_c00049{height:1129.280029pt;}
.h1_c00049{height:1129.333333pt;}
.w0_c00049{width:843.200032pt;}
.w1_c00049{width:843.333333pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:153.333333pt;}
.x109_c00049{left:156.533333pt;}
.x98_c00049{left:158.133333pt;}
.x88_c00049{left:159.333333pt;}
.x6e_c00049{left:160.266667pt;}
.x2b_c00049{left:161.600000pt;}
.xf1_c00049{left:170.533333pt;}
.xb4_c00049{left:186.266667pt;}
.xce_c00049{left:187.200000pt;}
.x99_c00049{left:188.266667pt;}
.x6f_c00049{left:189.333333pt;}
.x2c_c00049{left:191.333333pt;}
.xcf_c00049{left:244.800000pt;}
.xc9_c00049{left:246.133333pt;}
.x36_c00049{left:248.533333pt;}
.xf0_c00049{left:256.933333pt;}
.xdc_c00049{left:259.333333pt;}
.xd3_c00049{left:260.266667pt;}
.x48_c00049{left:261.600000pt;}
.x4f_c00049{left:263.333333pt;}
.x3_c00049{left:265.333333pt;}
.x2d_c00049{left:266.266667pt;}
.xf2_c00049{left:272.266667pt;}
.xa0_c00049{left:276.400000pt;}
.x60_c00049{left:278.133333pt;}
.x56_c00049{left:279.200000pt;}
.xf_c00049{left:281.333333pt;}
.x2e_c00049{left:287.333333pt;}
.xe2_c00049{left:294.666667pt;}
.x37_c00049{left:296.266667pt;}
.xd0_c00049{left:299.200000pt;}
.xdd_c00049{left:302.266667pt;}
.x49_c00049{left:303.466667pt;}
.x3f_c00049{left:304.400000pt;}
.x77_c00049{left:307.200000pt;}
.x69_c00049{left:308.666667pt;}
.xa1_c00049{left:310.266667pt;}
.x89_c00049{left:312.266667pt;}
.x24_c00049{left:313.466667pt;}
.x78_c00049{left:315.466667pt;}
.x57_c00049{left:316.666667pt;}
.x10_c00049{left:318.800000pt;}
.xa2_c00049{left:319.866667pt;}
.x87_c00049{left:320.933333pt;}
.xf7_c00049{left:322.000000pt;}
.xec_c00049{left:322.933333pt;}
.x61_c00049{left:325.466667pt;}
.xaf_c00049{left:328.000000pt;}
.x106_c00049{left:330.266667pt;}
.x25_c00049{left:331.333333pt;}
.x9a_c00049{left:333.066667pt;}
.x50_c00049{left:334.666667pt;}
.xaa_c00049{left:337.333333pt;}
.x11_c00049{left:338.933333pt;}
.x4_c00049{left:341.866667pt;}
.x51_c00049{left:344.000000pt;}
.x4a_c00049{left:346.400000pt;}
.x6a_c00049{left:348.400000pt;}
.x7f_c00049{left:349.733333pt;}
.x79_c00049{left:350.666667pt;}
.x5_c00049{left:353.333333pt;}
.xa3_c00049{left:355.733333pt;}
.x2f_c00049{left:357.466667pt;}
.xd4_c00049{left:359.733333pt;}
.x90_c00049{left:361.066667pt;}
.x1c_c00049{left:362.133333pt;}
.x2_c00049{left:363.200000pt;}
.xf3_c00049{left:364.400000pt;}
.x58_c00049{left:365.600000pt;}
.x40_c00049{left:368.133333pt;}
.x26_c00049{left:371.600000pt;}
.xb5_c00049{left:374.133333pt;}
.x62_c00049{left:375.066667pt;}
.x4b_c00049{left:376.533333pt;}
.x12_c00049{left:378.266667pt;}
.x8a_c00049{left:379.466667pt;}
.x107_c00049{left:380.533333pt;}
.x27_c00049{left:382.133333pt;}
.x9b_c00049{left:383.600000pt;}
.x30_c00049{left:384.933333pt;}
.x59_c00049{left:387.333333pt;}
.xd5_c00049{left:389.200000pt;}
.xfb_c00049{left:390.666667pt;}
.x91_c00049{left:393.066667pt;}
.xb8_c00049{left:394.400000pt;}
.x1d_c00049{left:395.466667pt;}
.xb0_c00049{left:396.800000pt;}
.xfc_c00049{left:398.000000pt;}
.x13_c00049{left:400.000000pt;}
.x28_c00049{left:401.333333pt;}
.xa4_c00049{left:402.800000pt;}
.x52_c00049{left:404.133333pt;}
.xd6_c00049{left:405.200000pt;}
.x70_c00049{left:407.066667pt;}
.x41_c00049{left:409.466667pt;}
.xf4_c00049{left:410.800000pt;}
.xed_c00049{left:412.266667pt;}
.x6_c00049{left:414.400000pt;}
.x80_c00049{left:417.200000pt;}
.x4c_c00049{left:418.800000pt;}
.x14_c00049{left:420.800000pt;}
.xab_c00049{left:423.066667pt;}
.xca_c00049{left:426.666667pt;}
.xa5_c00049{left:427.733333pt;}
.x63_c00049{left:429.200000pt;}
.x100_c00049{left:430.266667pt;}
.x1e_c00049{left:431.333333pt;}
.x92_c00049{left:434.933333pt;}
.x5a_c00049{left:438.533333pt;}
.x38_c00049{left:439.600000pt;}
.xe9_c00049{left:440.533333pt;}
.x4d_c00049{left:441.466667pt;}
.xb1_c00049{left:444.800000pt;}
.xc3_c00049{left:448.000000pt;}
.x7a_c00049{left:449.600000pt;}
.xa6_c00049{left:451.066667pt;}
.xee_c00049{left:452.266667pt;}
.xfd_c00049{left:454.000000pt;}
.x7_c00049{left:455.733333pt;}
.x42_c00049{left:457.733333pt;}
.xa7_c00049{left:459.333333pt;}
.x53_c00049{left:461.066667pt;}
.x4e_c00049{left:462.933333pt;}
.xf5_c00049{left:464.266667pt;}
.x71_c00049{left:466.933333pt;}
.xac_c00049{left:471.333333pt;}
.xbc_c00049{left:473.733333pt;}
.x104_c00049{left:476.266667pt;}
.xcb_c00049{left:477.866667pt;}
.x64_c00049{left:480.133333pt;}
.xd7_c00049{left:481.733333pt;}
.xe3_c00049{left:483.066667pt;}
.x101_c00049{left:486.266667pt;}
.x5b_c00049{left:489.733333pt;}
.x39_c00049{left:491.466667pt;}
.xad_c00049{left:493.733333pt;}
.x6b_c00049{left:494.666667pt;}
.xe4_c00049{left:500.000000pt;}
.x93_c00049{left:501.866667pt;}
.x15_c00049{left:504.666667pt;}
.x6c_c00049{left:506.133333pt;}
.x97_c00049{left:508.133333pt;}
.x1f_c00049{left:510.400000pt;}
.x31_c00049{left:511.600000pt;}
.x94_c00049{left:513.733333pt;}
.x43_c00049{left:514.666667pt;}
.x8b_c00049{left:517.866667pt;}
.xb9_c00049{left:520.133333pt;}
.x8_c00049{left:521.066667pt;}
.x3a_c00049{left:526.400000pt;}
.xef_c00049{left:529.600000pt;}
.x65_c00049{left:531.066667pt;}
.xc4_c00049{left:532.533333pt;}
.x44_c00049{left:534.533333pt;}
.x6d_c00049{left:535.866667pt;}
.x72_c00049{left:537.600000pt;}
.x81_c00049{left:538.800000pt;}
.xba_c00049{left:540.000000pt;}
.xde_c00049{left:542.000000pt;}
.x5c_c00049{left:544.133333pt;}
.x16_c00049{left:546.000000pt;}
.xcc_c00049{left:547.333333pt;}
.x9_c00049{left:548.266667pt;}
.x82_c00049{left:549.733333pt;}
.x105_c00049{left:552.400000pt;}
.x3b_c00049{left:555.466667pt;}
.xb2_c00049{left:557.200000pt;}
.xbd_c00049{left:558.800000pt;}
.x9c_c00049{left:560.533333pt;}
.x8c_c00049{left:562.000000pt;}
.xdf_c00049{left:564.000000pt;}
.xbe_c00049{left:566.133333pt;}
.xd8_c00049{left:567.200000pt;}
.x20_c00049{left:568.666667pt;}
.xae_c00049{left:569.600000pt;}
.x9d_c00049{left:571.466667pt;}
.x66_c00049{left:573.600000pt;}
.xb3_c00049{left:576.400000pt;}
.xc5_c00049{left:578.666667pt;}
.x21_c00049{left:580.533333pt;}
.xbb_c00049{left:581.600000pt;}
.xfe_c00049{left:582.666667pt;}
.xa_c00049{left:583.733333pt;}
.x32_c00049{left:588.400000pt;}
.x17_c00049{left:590.533333pt;}
.xe5_c00049{left:593.733333pt;}
.x83_c00049{left:596.400000pt;}
.x8d_c00049{left:599.466667pt;}
.x18_c00049{left:601.066667pt;}
.x108_c00049{left:602.933333pt;}
.x29_c00049{left:604.266667pt;}
.xd9_c00049{left:605.333333pt;}
.x9e_c00049{left:608.266667pt;}
.x5d_c00049{left:609.733333pt;}
.xea_c00049{left:613.866667pt;}
.x54_c00049{left:616.533333pt;}
.x7b_c00049{left:618.800000pt;}
.x73_c00049{left:619.733333pt;}
.xf8_c00049{left:623.600000pt;}
.xbf_c00049{left:626.666667pt;}
.x22_c00049{left:627.866667pt;}
.x3c_c00049{left:629.733333pt;}
.xa8_c00049{left:632.400000pt;}
.xb6_c00049{left:635.600000pt;}
.xcd_c00049{left:636.533333pt;}
.xd1_c00049{left:638.266667pt;}
.x84_c00049{left:639.866667pt;}
.x95_c00049{left:641.600000pt;}
.xb7_c00049{left:643.600000pt;}
.x2a_c00049{left:644.533333pt;}
.x8e_c00049{left:646.133333pt;}
.xe0_c00049{left:649.466667pt;}
.x67_c00049{left:652.666667pt;}
.xf9_c00049{left:658.800000pt;}
.xe6_c00049{left:660.000000pt;}
.xb_c00049{left:661.200000pt;}
.x19_c00049{left:663.466667pt;}
.xda_c00049{left:664.800000pt;}
.xc6_c00049{left:665.733333pt;}
.x96_c00049{left:666.933333pt;}
.x55_c00049{left:668.400000pt;}
.x5e_c00049{left:669.866667pt;}
.x7c_c00049{left:672.266667pt;}
.xc0_c00049{left:674.000000pt;}
.x74_c00049{left:676.400000pt;}
.x33_c00049{left:677.333333pt;}
.x85_c00049{left:679.600000pt;}
.x1a_c00049{left:680.800000pt;}
.x45_c00049{left:682.133333pt;}
.xc1_c00049{left:683.866667pt;}
.x3d_c00049{left:686.666667pt;}
.xc_c00049{left:688.666667pt;}
.xfa_c00049{left:692.400000pt;}
.x75_c00049{left:693.733333pt;}
.x68_c00049{left:695.600000pt;}
.x34_c00049{left:698.133333pt;}
.x9f_c00049{left:699.733333pt;}
.xd2_c00049{left:700.933333pt;}
.xc7_c00049{left:701.866667pt;}
.xeb_c00049{left:703.466667pt;}
.x3e_c00049{left:706.800000pt;}
.x86_c00049{left:708.133333pt;}
.xa9_c00049{left:711.600000pt;}
.xff_c00049{left:714.133333pt;}
.xc2_c00049{left:715.200000pt;}
.xc8_c00049{left:719.733333pt;}
.x23_c00049{left:722.533333pt;}
.x8f_c00049{left:724.533333pt;}
.xe7_c00049{left:727.466667pt;}
.xf6_c00049{left:729.466667pt;}
.x7d_c00049{left:730.533333pt;}
.x35_c00049{left:731.733333pt;}
.xd_c00049{left:733.200000pt;}
.xe1_c00049{left:735.600000pt;}
.x46_c00049{left:739.066667pt;}
.x7e_c00049{left:740.400000pt;}
.x76_c00049{left:744.000000pt;}
.xe_c00049{left:746.000000pt;}
.x102_c00049{left:748.933333pt;}
.x1b_c00049{left:750.933333pt;}
.x5f_c00049{left:753.066667pt;}
.x47_c00049{left:756.933333pt;}
.x103_c00049{left:758.800000pt;}
.xe8_c00049{left:760.000000pt;}
.xdb_c00049{left:761.066667pt;}
}





/* 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_c00050 {
    display:none;
  }
  .loading-indicator_c00050.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00050 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_c00050 { 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_c00050" -> "#page-container .classname_c00050")
 */
.pf_c00050 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00050 { /* 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_c00050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00050 { /* 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_c00050 { /* 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_c00050 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00050 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00050 {overflow:visible;}
  }
}
.c_c00050 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00050 { /* 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_c00050:after { /* webkit #35443 */
  content: '';
}
.t_c00050:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00050 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 */
}
.__c00050 { /* 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_c00050 { /* info for Javascript */
  display:none;
}
.l_c00050 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00050 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00050 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00050: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_c00050 {
    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_c00050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00050.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_c00050 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00050;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.000000;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;}
.m1_c00050{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m34_c00050{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m95_c00050{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m75_c00050{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.me3_c00050{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m16_c00050{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m84_c00050{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb_c00050{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m81_c00050{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m25_c00050{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4_c00050{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m93_c00050{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m54_c00050{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mab_c00050{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00050{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mde_c00050{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m39_c00050{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00050{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00050{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00050{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m86_c00050{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00050{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m94_c00050{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m30_c00050{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m21_c00050{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m36_c00050{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00050{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00050{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md8_c00050{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m9_c00050{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00050{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m91_c00050{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m13_c00050{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m92_c00050{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m96_c00050{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m62_c00050{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m87_c00050{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00050{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00050{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00050{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00050{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mce_c00050{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.me_c00050{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00050{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m80_c00050{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m59_c00050{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00050{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m38_c00050{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00050{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m53_c00050{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m33_c00050{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00050{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m15_c00050{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m17_c00050{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5_c00050{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00050{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md5_c00050{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00050{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00050{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00050{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00050{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00050{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc_c00050{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00050{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m8_c00050{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m35_c00050{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m78_c00050{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00050{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00050{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00050{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma_c00050{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00050{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m44_c00050{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m41_c00050{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md7_c00050{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m64_c00050{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m85_c00050{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m32_c00050{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m19_c00050{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00050{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m43_c00050{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00050{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00050{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me0_c00050{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m83_c00050{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m72_c00050{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7_c00050{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m97_c00050{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m71_c00050{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00050{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mca_c00050{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00050{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00050{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mf_c00050{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00050{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md1_c00050{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00050{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6_c00050{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m31_c00050{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m69_c00050{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00050{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00050{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m82_c00050{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m56_c00050{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00050{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00050{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00050{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m61_c00050{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m76_c00050{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00050{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m52_c00050{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00050{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m70_c00050{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00050{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m45_c00050{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00050{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00050{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md_c00050{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00050{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00050{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00050{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00050{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00050{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00050{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00050{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10_c00050{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m88_c00050{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m73_c00050{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m57_c00050{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00050{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00050{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00050{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00050{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00050{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00050{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00050{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00050{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md3_c00050{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00050{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m50_c00050{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00050{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00050{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md6_c00050{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m12_c00050{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m20_c00050{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m65_c00050{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m90_c00050{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m89_c00050{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00050{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m74_c00050{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md9_c00050{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m14_c00050{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00050{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00050{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00050{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m48_c00050{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00050{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00050{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m23_c00050{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00050{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00050{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11_c00050{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00050{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m40_c00050{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mba_c00050{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m55_c00050{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md2_c00050{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m18_c00050{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m26_c00050{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m24_c00050{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00050{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m58_c00050{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00050{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m51_c00050{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00050{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mae_c00050{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00050{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.maf_c00050{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00050{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m67_c00050{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m27_c00050{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00050{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m68_c00050{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00050{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m77_c00050{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m49_c00050{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00050{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);}
.m79_c00050{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00050{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m46_c00050{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00050{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m47_c00050{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m22_c00050{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m66_c00050{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00050{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m63_c00050{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mac_c00050{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mad_c00050{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.maa_c00050{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m28_c00050{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m37_c00050{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00050{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m99_c00050{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00050{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00050{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md0_c00050{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00050{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00050{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m29_c00050{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00050{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mda_c00050{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m98_c00050{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00050{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00050{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00050{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00050{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00050{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00050{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m60_c00050{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00050{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.md4_c00050{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m42_c00050{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00050{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00050{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00050{transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);}
.me2_c00050{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00050{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.me1_c00050{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls0_c00050{letter-spacing:0.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{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__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00050{word-spacing:-17.153374px;}
.ws4_c00050{word-spacing:-8.452381px;}
.ws2_c00050{word-spacing:-6.250000px;}
.ws8_c00050{word-spacing:0.000000px;}
.ws0_c00050{word-spacing:3.353952px;}
.ws3_c00050{word-spacing:4.511450px;}
.ws6_c00050{word-spacing:5.526316px;}
.ws5_c00050{word-spacing:7.375796px;}
.ws1_c00050{word-spacing:11.652921px;}
.fc0_c00050{color:transparent;}
.fs2_c00050{font-size:60.000000px;}
.fs1_c00050{font-size:66.000000px;}
.fs3_c00050{font-size:72.000000px;}
.fs4_c00050{font-size:78.000000px;}
.fs0_c00050{font-size:108.000000px;}
.y0_c00050{bottom:0.000000px;}
.y35_c00050{bottom:168.150000px;}
.y33_c00050{bottom:187.650000px;}
.y32_c00050{bottom:205.650000px;}
.y34_c00050{bottom:215.700000px;}
.y31_c00050{bottom:222.900000px;}
.y30_c00050{bottom:241.200000px;}
.y2f_c00050{bottom:276.450000px;}
.y2e_c00050{bottom:294.450000px;}
.y2d_c00050{bottom:334.500000px;}
.y2a_c00050{bottom:368.700000px;}
.y29_c00050{bottom:387.000000px;}
.y28_c00050{bottom:405.000000px;}
.y2b_c00050{bottom:414.300000px;}
.y27_c00050{bottom:423.000000px;}
.y26_c00050{bottom:440.250000px;}
.y25_c00050{bottom:458.250000px;}
.y23_c00050{bottom:489.150000px;}
.y22_c00050{bottom:507.900000px;}
.y24_c00050{bottom:525.300000px;}
.y21_c00050{bottom:525.600000px;}
.y20_c00050{bottom:543.600000px;}
.y1f_c00050{bottom:561.300000px;}
.y1d_c00050{bottom:591.900000px;}
.y1c_c00050{bottom:610.200000px;}
.y1e_c00050{bottom:627.450000px;}
.y1b_c00050{bottom:628.200000px;}
.y1a_c00050{bottom:645.900000px;}
.y2c_c00050{bottom:663.900000px;}
.y19_c00050{bottom:690.300000px;}
.y18_c00050{bottom:708.000000px;}
.y17_c00050{bottom:726.000000px;}
.y16_c00050{bottom:743.700000px;}
.y14_c00050{bottom:770.400000px;}
.y13_c00050{bottom:788.400000px;}
.y15_c00050{bottom:803.550000px;}
.y12_c00050{bottom:806.400000px;}
.y11_c00050{bottom:824.100000px;}
.yf_c00050{bottom:850.350000px;}
.ye_c00050{bottom:868.350000px;}
.y10_c00050{bottom:876.600000px;}
.yd_c00050{bottom:886.350000px;}
.yc_c00050{bottom:904.350000px;}
.yb_c00050{bottom:939.300000px;}
.ya_c00050{bottom:957.600000px;}
.y9_c00050{bottom:993.000000px;}
.y8_c00050{bottom:1011.300000px;}
.y7_c00050{bottom:1029.300000px;}
.y5_c00050{bottom:1063.350000px;}
.y4_c00050{bottom:1081.350000px;}
.y6_c00050{bottom:1090.050000px;}
.y3_c00050{bottom:1099.350000px;}
.y2_c00050{bottom:1117.050000px;}
.y1_c00050{bottom:1144.800000px;}
.h4_c00050{height:60.000000px;}
.h3_c00050{height:66.000000px;}
.h5_c00050{height:72.000000px;}
.h6_c00050{height:78.000000px;}
.h2_c00050{height:108.000000px;}
.h0_c00050{height:1271.160094px;}
.h1_c00050{height:1271.250000px;}
.w0_c00050{width:948.600036px;}
.w1_c00050{width:948.750000px;}
.x0_c00050{left:0.000000px;}
.x10b_c00050{left:80.700000px;}
.xef_c00050{left:83.850000px;}
.xbd_c00050{left:85.350000px;}
.x71_c00050{left:87.450000px;}
.x2e_c00050{left:91.500000px;}
.x8d_c00050{left:99.000000px;}
.x10c_c00050{left:120.600000px;}
.xf0_c00050{left:123.150000px;}
.xd2_c00050{left:126.000000px;}
.xbe_c00050{left:127.050000px;}
.x72_c00050{left:129.600000px;}
.x2f_c00050{left:131.100000px;}
.xf9_c00050{left:181.050000px;}
.xf1_c00050{left:198.300000px;}
.x3a_c00050{left:199.800000px;}
.xf7_c00050{left:213.900000px;}
.x4_c00050{left:216.000000px;}
.x4d_c00050{left:217.500000px;}
.x30_c00050{left:219.600000px;}
.x4c_c00050{left:223.050000px;}
.xcb_c00050{left:232.350000px;}
.xa3_c00050{left:233.550000px;}
.x11_c00050{left:234.900000px;}
.x41_c00050{left:237.150000px;}
.x31_c00050{left:241.500000px;}
.x42_c00050{left:245.850000px;}
.x44_c00050{left:247.350000px;}
.xde_c00050{left:250.650000px;}
.x5a_c00050{left:258.300000px;}
.x10a_c00050{left:260.250000px;}
.x4e_c00050{left:262.200000px;}
.x8e_c00050{left:270.450000px;}
.x4f_c00050{left:271.950000px;}
.x6d_c00050{left:274.800000px;}
.x80_c00050{left:276.000000px;}
.x9d_c00050{left:277.200000px;}
.xea_c00050{left:278.250000px;}
.x8f_c00050{left:281.250000px;}
.x1f_c00050{left:282.600000px;}
.xc3_c00050{left:284.100000px;}
.x5_c00050{left:285.150000px;}
.x77_c00050{left:286.950000px;}
.x12_c00050{left:290.400000px;}
.x3b_c00050{left:292.650000px;}
.x101_c00050{left:294.150000px;}
.x6e_c00050{left:295.650000px;}
.x89_c00050{left:297.150000px;}
.x43_c00050{left:298.350000px;}
.x6_c00050{left:300.300000px;}
.xd3_c00050{left:303.900000px;}
.x29_c00050{left:305.400000px;}
.x45_c00050{left:306.750000px;}
.xa4_c00050{left:308.550000px;}
.x5b_c00050{left:312.000000px;}
.xb1_c00050{left:313.050000px;}
.x50_c00050{left:314.100000px;}
.xdf_c00050{left:316.200000px;}
.x102_c00050{left:318.600000px;}
.xaa_c00050{left:320.100000px;}
.x32_c00050{left:322.200000px;}
.xd8_c00050{left:323.550000px;}
.x78_c00050{left:329.400000px;}
.xeb_c00050{left:330.450000px;}
.xff_c00050{left:331.650000px;}
.xfa_c00050{left:333.300000px;}
.xcc_c00050{left:334.650000px;}
.x1_c00050{left:336.300000px;}
.x98_c00050{left:338.850000px;}
.xb5_c00050{left:340.800000px;}
.x5c_c00050{left:344.700000px;}
.x8a_c00050{left:346.950000px;}
.x99_c00050{left:348.150000px;}
.x20_c00050{left:349.200000px;}
.x33_c00050{left:352.500000px;}
.xf2_c00050{left:353.850000px;}
.x5d_c00050{left:356.250000px;}
.x6f_c00050{left:358.950000px;}
.xc5_c00050{left:360.900000px;}
.x7_c00050{left:363.300000px;}
.x79_c00050{left:365.100000px;}
.xbc_c00050{left:366.450000px;}
.x8b_c00050{left:367.500000px;}
.xec_c00050{left:371.550000px;}
.x66_c00050{left:373.350000px;}
.x13_c00050{left:374.700000px;}
.x51_c00050{left:376.350000px;}
.x103_c00050{left:378.000000px;}
.xc6_c00050{left:379.200000px;}
.x9e_c00050{left:380.850000px;}
.xed_c00050{left:383.100000px;}
.x3c_c00050{left:387.000000px;}
.x21_c00050{left:388.500000px;}
.x8_c00050{left:392.850000px;}
.x5e_c00050{left:394.800000px;}
.x52_c00050{left:396.900000px;}
.xe0_c00050{left:399.300000px;}
.xd1_c00050{left:400.950000px;}
.xcd_c00050{left:403.050000px;}
.x100_c00050{left:406.500000px;}
.x2a_c00050{left:409.800000px;}
.x67_c00050{left:411.150000px;}
.x53_c00050{left:413.400000px;}
.x14_c00050{left:415.050000px;}
.xab_c00050{left:416.700000px;}
.x5f_c00050{left:419.700000px;}
.x7a_c00050{left:421.650000px;}
.xe1_c00050{left:424.800000px;}
.xac_c00050{left:427.500000px;}
.x70_c00050{left:430.200000px;}
.x8c_c00050{left:431.550000px;}
.x90_c00050{left:432.900000px;}
.x81_c00050{left:434.700000px;}
.xb6_c00050{left:438.000000px;}
.x9f_c00050{left:439.500000px;}
.xc7_c00050{left:440.700000px;}
.x46_c00050{left:442.500000px;}
.xb2_c00050{left:444.000000px;}
.x9a_c00050{left:447.000000px;}
.xce_c00050{left:449.550000px;}
.xd9_c00050{left:451.050000px;}
.x9_c00050{left:455.850000px;}
.xd4_c00050{left:458.400000px;}
.x2b_c00050{left:464.100000px;}
.x104_c00050{left:465.150000px;}
.xbf_c00050{left:470.550000px;}
.x15_c00050{left:472.350000px;}
.x2c_c00050{left:473.400000px;}
.x3d_c00050{left:474.450000px;}
.xb7_c00050{left:475.500000px;}
.xfd_c00050{left:477.450000px;}
.x34_c00050{left:481.800000px;}
.xad_c00050{left:485.100000px;}
.x7b_c00050{left:486.750000px;}
.xb8_c00050{left:490.200000px;}
.x82_c00050{left:494.850000px;}
.x16_c00050{left:496.500000px;}
.xa5_c00050{left:498.300000px;}
.x91_c00050{left:499.500000px;}
.x7c_c00050{left:501.150000px;}
.x68_c00050{left:503.250000px;}
.xb3_c00050{left:504.900000px;}
.x22_c00050{left:506.700000px;}
.x35_c00050{left:509.100000px;}
.xda_c00050{left:511.200000px;}
.x69_c00050{left:512.550000px;}
.x2d_c00050{left:513.750000px;}
.x47_c00050{left:516.000000px;}
.xa6_c00050{left:517.050000px;}
.xae_c00050{left:520.050000px;}
.xf3_c00050{left:522.000000px;}
.x9b_c00050{left:529.050000px;}
.xe5_c00050{left:530.550000px;}
.xa_c00050{left:534.300000px;}
.xf8_c00050{left:536.400000px;}
.x83_c00050{left:537.750000px;}
.x48_c00050{left:539.700000px;}
.x60_c00050{left:542.100000px;}
.x23_c00050{left:545.250000px;}
.xe2_c00050{left:546.900000px;}
.x54_c00050{left:550.200000px;}
.xf4_c00050{left:553.650000px;}
.xcf_c00050{left:554.700000px;}
.xb_c00050{left:556.650000px;}
.x73_c00050{left:558.750000px;}
.xa0_c00050{left:561.150000px;}
.xfe_c00050{left:562.500000px;}
.xe3_c00050{left:564.150000px;}
.x92_c00050{left:567.150000px;}
.x36_c00050{left:569.250000px;}
.x24_c00050{left:573.000000px;}
.x55_c00050{left:574.650000px;}
.x3e_c00050{left:576.000000px;}
.x17_c00050{left:577.950000px;}
.xc8_c00050{left:579.750000px;}
.xc_c00050{left:581.550000px;}
.x37_c00050{left:583.650000px;}
.x49_c00050{left:586.800000px;}
.x105_c00050{left:588.900000px;}
.x93_c00050{left:592.050000px;}
.x84_c00050{left:595.350000px;}
.xfb_c00050{left:597.750000px;}
.xa7_c00050{left:598.800000px;}
.xc0_c00050{left:600.150000px;}
.xaf_c00050{left:602.550000px;}
.x56_c00050{left:604.500000px;}
.x18_c00050{left:606.000000px;}
.xe6_c00050{left:607.350000px;}
.x94_c00050{left:608.550000px;}
.xa1_c00050{left:609.750000px;}
.x106_c00050{left:613.050000px;}
.x61_c00050{left:615.150000px;}
.x6a_c00050{left:616.200000px;}
.xc1_c00050{left:618.150000px;}
.xc4_c00050{left:622.200000px;}
.x19_c00050{left:625.800000px;}
.x62_c00050{left:627.450000px;}
.xe7_c00050{left:628.650000px;}
.xd0_c00050{left:631.350000px;}
.x74_c00050{left:634.050000px;}
.xc9_c00050{left:635.550000px;}
.x38_c00050{left:637.650000px;}
.x63_c00050{left:641.550000px;}
.x2_c00050{left:645.150000px;}
.xd5_c00050{left:646.950000px;}
.x107_c00050{left:648.000000px;}
.xa8_c00050{left:649.500000px;}
.x7d_c00050{left:650.850000px;}
.x25_c00050{left:652.200000px;}
.x95_c00050{left:654.300000px;}
.xd_c00050{left:655.350000px;}
.xdb_c00050{left:658.050000px;}
.x1a_c00050{left:660.300000px;}
.xf5_c00050{left:664.200000px;}
.xee_c00050{left:666.150000px;}
.xe_c00050{left:667.200000px;}
.xa9_c00050{left:669.600000px;}
.x1b_c00050{left:672.150000px;}
.x9c_c00050{left:673.650000px;}
.x85_c00050{left:676.650000px;}
.x4a_c00050{left:678.450000px;}
.x6b_c00050{left:679.950000px;}
.x75_c00050{left:682.950000px;}
.xc2_c00050{left:686.250000px;}
.xb9_c00050{left:687.450000px;}
.x57_c00050{left:689.550000px;}
.x1c_c00050{left:691.950000px;}
.x86_c00050{left:693.150000px;}
.x26_c00050{left:694.350000px;}
.x3f_c00050{left:695.850000px;}
.x58_c00050{left:699.300000px;}
.xf6_c00050{left:702.000000px;}
.xa2_c00050{left:703.350000px;}
.x96_c00050{left:705.000000px;}
.x27_c00050{left:708.750000px;}
.x10d_c00050{left:712.800000px;}
.x1d_c00050{left:713.850000px;}
.xf_c00050{left:715.500000px;}
.xba_c00050{left:717.750000px;}
.xb4_c00050{left:719.100000px;}
.x40_c00050{left:721.050000px;}
.xe4_c00050{left:723.000000px;}
.x7e_c00050{left:724.950000px;}
.x108_c00050{left:726.750000px;}
.xe8_c00050{left:727.950000px;}
.x97_c00050{left:729.900000px;}
.x59_c00050{left:730.950000px;}
.xdc_c00050{left:732.600000px;}
.xd6_c00050{left:733.650000px;}
.x6c_c00050{left:735.300000px;}
.x4b_c00050{left:737.100000px;}
.x87_c00050{left:740.700000px;}
.x28_c00050{left:747.300000px;}
.x3_c00050{left:748.500000px;}
.x109_c00050{left:750.150000px;}
.xca_c00050{left:754.650000px;}
.x64_c00050{left:757.500000px;}
.x88_c00050{left:760.500000px;}
.xd7_c00050{left:765.000000px;}
.xdd_c00050{left:766.500000px;}
.xe9_c00050{left:767.850000px;}
.x76_c00050{left:770.100000px;}
.xfc_c00050{left:771.300000px;}
.xb0_c00050{left:772.800000px;}
.x1e_c00050{left:774.300000px;}
.x39_c00050{left:777.000000px;}
.x65_c00050{left:779.400000px;}
.xbb_c00050{left:780.450000px;}
.x7f_c00050{left:781.500000px;}
.x10_c00050{left:783.600000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws7_c00050{word-spacing:-15.247444pt;}
.ws4_c00050{word-spacing:-7.513228pt;}
.ws2_c00050{word-spacing:-5.555556pt;}
.ws8_c00050{word-spacing:0.000000pt;}
.ws0_c00050{word-spacing:2.981291pt;}
.ws3_c00050{word-spacing:4.010178pt;}
.ws6_c00050{word-spacing:4.912281pt;}
.ws5_c00050{word-spacing:6.556263pt;}
.ws1_c00050{word-spacing:10.358152pt;}
.fs2_c00050{font-size:53.333333pt;}
.fs1_c00050{font-size:58.666667pt;}
.fs3_c00050{font-size:64.000000pt;}
.fs4_c00050{font-size:69.333333pt;}
.fs0_c00050{font-size:96.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y35_c00050{bottom:149.466667pt;}
.y33_c00050{bottom:166.800000pt;}
.y32_c00050{bottom:182.800000pt;}
.y34_c00050{bottom:191.733333pt;}
.y31_c00050{bottom:198.133333pt;}
.y30_c00050{bottom:214.400000pt;}
.y2f_c00050{bottom:245.733333pt;}
.y2e_c00050{bottom:261.733333pt;}
.y2d_c00050{bottom:297.333333pt;}
.y2a_c00050{bottom:327.733333pt;}
.y29_c00050{bottom:344.000000pt;}
.y28_c00050{bottom:360.000000pt;}
.y2b_c00050{bottom:368.266667pt;}
.y27_c00050{bottom:376.000000pt;}
.y26_c00050{bottom:391.333333pt;}
.y25_c00050{bottom:407.333333pt;}
.y23_c00050{bottom:434.800000pt;}
.y22_c00050{bottom:451.466667pt;}
.y24_c00050{bottom:466.933333pt;}
.y21_c00050{bottom:467.200000pt;}
.y20_c00050{bottom:483.200000pt;}
.y1f_c00050{bottom:498.933333pt;}
.y1d_c00050{bottom:526.133333pt;}
.y1c_c00050{bottom:542.400000pt;}
.y1e_c00050{bottom:557.733333pt;}
.y1b_c00050{bottom:558.400000pt;}
.y1a_c00050{bottom:574.133333pt;}
.y2c_c00050{bottom:590.133333pt;}
.y19_c00050{bottom:613.600000pt;}
.y18_c00050{bottom:629.333333pt;}
.y17_c00050{bottom:645.333333pt;}
.y16_c00050{bottom:661.066667pt;}
.y14_c00050{bottom:684.800000pt;}
.y13_c00050{bottom:700.800000pt;}
.y15_c00050{bottom:714.266667pt;}
.y12_c00050{bottom:716.800000pt;}
.y11_c00050{bottom:732.533333pt;}
.yf_c00050{bottom:755.866667pt;}
.ye_c00050{bottom:771.866667pt;}
.y10_c00050{bottom:779.200000pt;}
.yd_c00050{bottom:787.866667pt;}
.yc_c00050{bottom:803.866667pt;}
.yb_c00050{bottom:834.933333pt;}
.ya_c00050{bottom:851.200000pt;}
.y9_c00050{bottom:882.666667pt;}
.y8_c00050{bottom:898.933333pt;}
.y7_c00050{bottom:914.933333pt;}
.y5_c00050{bottom:945.200000pt;}
.y4_c00050{bottom:961.200000pt;}
.y6_c00050{bottom:968.933333pt;}
.y3_c00050{bottom:977.200000pt;}
.y2_c00050{bottom:992.933333pt;}
.y1_c00050{bottom:1017.600000pt;}
.h4_c00050{height:53.333333pt;}
.h3_c00050{height:58.666667pt;}
.h5_c00050{height:64.000000pt;}
.h6_c00050{height:69.333333pt;}
.h2_c00050{height:96.000000pt;}
.h0_c00050{height:1129.920084pt;}
.h1_c00050{height:1130.000000pt;}
.w0_c00050{width:843.200032pt;}
.w1_c00050{width:843.333333pt;}
.x0_c00050{left:0.000000pt;}
.x10b_c00050{left:71.733333pt;}
.xef_c00050{left:74.533333pt;}
.xbd_c00050{left:75.866667pt;}
.x71_c00050{left:77.733333pt;}
.x2e_c00050{left:81.333333pt;}
.x8d_c00050{left:88.000000pt;}
.x10c_c00050{left:107.200000pt;}
.xf0_c00050{left:109.466667pt;}
.xd2_c00050{left:112.000000pt;}
.xbe_c00050{left:112.933333pt;}
.x72_c00050{left:115.200000pt;}
.x2f_c00050{left:116.533333pt;}
.xf9_c00050{left:160.933333pt;}
.xf1_c00050{left:176.266667pt;}
.x3a_c00050{left:177.600000pt;}
.xf7_c00050{left:190.133333pt;}
.x4_c00050{left:192.000000pt;}
.x4d_c00050{left:193.333333pt;}
.x30_c00050{left:195.200000pt;}
.x4c_c00050{left:198.266667pt;}
.xcb_c00050{left:206.533333pt;}
.xa3_c00050{left:207.600000pt;}
.x11_c00050{left:208.800000pt;}
.x41_c00050{left:210.800000pt;}
.x31_c00050{left:214.666667pt;}
.x42_c00050{left:218.533333pt;}
.x44_c00050{left:219.866667pt;}
.xde_c00050{left:222.800000pt;}
.x5a_c00050{left:229.600000pt;}
.x10a_c00050{left:231.333333pt;}
.x4e_c00050{left:233.066667pt;}
.x8e_c00050{left:240.400000pt;}
.x4f_c00050{left:241.733333pt;}
.x6d_c00050{left:244.266667pt;}
.x80_c00050{left:245.333333pt;}
.x9d_c00050{left:246.400000pt;}
.xea_c00050{left:247.333333pt;}
.x8f_c00050{left:250.000000pt;}
.x1f_c00050{left:251.200000pt;}
.xc3_c00050{left:252.533333pt;}
.x5_c00050{left:253.466667pt;}
.x77_c00050{left:255.066667pt;}
.x12_c00050{left:258.133333pt;}
.x3b_c00050{left:260.133333pt;}
.x101_c00050{left:261.466667pt;}
.x6e_c00050{left:262.800000pt;}
.x89_c00050{left:264.133333pt;}
.x43_c00050{left:265.200000pt;}
.x6_c00050{left:266.933333pt;}
.xd3_c00050{left:270.133333pt;}
.x29_c00050{left:271.466667pt;}
.x45_c00050{left:272.666667pt;}
.xa4_c00050{left:274.266667pt;}
.x5b_c00050{left:277.333333pt;}
.xb1_c00050{left:278.266667pt;}
.x50_c00050{left:279.200000pt;}
.xdf_c00050{left:281.066667pt;}
.x102_c00050{left:283.200000pt;}
.xaa_c00050{left:284.533333pt;}
.x32_c00050{left:286.400000pt;}
.xd8_c00050{left:287.600000pt;}
.x78_c00050{left:292.800000pt;}
.xeb_c00050{left:293.733333pt;}
.xff_c00050{left:294.800000pt;}
.xfa_c00050{left:296.266667pt;}
.xcc_c00050{left:297.466667pt;}
.x1_c00050{left:298.933333pt;}
.x98_c00050{left:301.200000pt;}
.xb5_c00050{left:302.933333pt;}
.x5c_c00050{left:306.400000pt;}
.x8a_c00050{left:308.400000pt;}
.x99_c00050{left:309.466667pt;}
.x20_c00050{left:310.400000pt;}
.x33_c00050{left:313.333333pt;}
.xf2_c00050{left:314.533333pt;}
.x5d_c00050{left:316.666667pt;}
.x6f_c00050{left:319.066667pt;}
.xc5_c00050{left:320.800000pt;}
.x7_c00050{left:322.933333pt;}
.x79_c00050{left:324.533333pt;}
.xbc_c00050{left:325.733333pt;}
.x8b_c00050{left:326.666667pt;}
.xec_c00050{left:330.266667pt;}
.x66_c00050{left:331.866667pt;}
.x13_c00050{left:333.066667pt;}
.x51_c00050{left:334.533333pt;}
.x103_c00050{left:336.000000pt;}
.xc6_c00050{left:337.066667pt;}
.x9e_c00050{left:338.533333pt;}
.xed_c00050{left:340.533333pt;}
.x3c_c00050{left:344.000000pt;}
.x21_c00050{left:345.333333pt;}
.x8_c00050{left:349.200000pt;}
.x5e_c00050{left:350.933333pt;}
.x52_c00050{left:352.800000pt;}
.xe0_c00050{left:354.933333pt;}
.xd1_c00050{left:356.400000pt;}
.xcd_c00050{left:358.266667pt;}
.x100_c00050{left:361.333333pt;}
.x2a_c00050{left:364.266667pt;}
.x67_c00050{left:365.466667pt;}
.x53_c00050{left:367.466667pt;}
.x14_c00050{left:368.933333pt;}
.xab_c00050{left:370.400000pt;}
.x5f_c00050{left:373.066667pt;}
.x7a_c00050{left:374.800000pt;}
.xe1_c00050{left:377.600000pt;}
.xac_c00050{left:380.000000pt;}
.x70_c00050{left:382.400000pt;}
.x8c_c00050{left:383.600000pt;}
.x90_c00050{left:384.800000pt;}
.x81_c00050{left:386.400000pt;}
.xb6_c00050{left:389.333333pt;}
.x9f_c00050{left:390.666667pt;}
.xc7_c00050{left:391.733333pt;}
.x46_c00050{left:393.333333pt;}
.xb2_c00050{left:394.666667pt;}
.x9a_c00050{left:397.333333pt;}
.xce_c00050{left:399.600000pt;}
.xd9_c00050{left:400.933333pt;}
.x9_c00050{left:405.200000pt;}
.xd4_c00050{left:407.466667pt;}
.x2b_c00050{left:412.533333pt;}
.x104_c00050{left:413.466667pt;}
.xbf_c00050{left:418.266667pt;}
.x15_c00050{left:419.866667pt;}
.x2c_c00050{left:420.800000pt;}
.x3d_c00050{left:421.733333pt;}
.xb7_c00050{left:422.666667pt;}
.xfd_c00050{left:424.400000pt;}
.x34_c00050{left:428.266667pt;}
.xad_c00050{left:431.200000pt;}
.x7b_c00050{left:432.666667pt;}
.xb8_c00050{left:435.733333pt;}
.x82_c00050{left:439.866667pt;}
.x16_c00050{left:441.333333pt;}
.xa5_c00050{left:442.933333pt;}
.x91_c00050{left:444.000000pt;}
.x7c_c00050{left:445.466667pt;}
.x68_c00050{left:447.333333pt;}
.xb3_c00050{left:448.800000pt;}
.x22_c00050{left:450.400000pt;}
.x35_c00050{left:452.533333pt;}
.xda_c00050{left:454.400000pt;}
.x69_c00050{left:455.600000pt;}
.x2d_c00050{left:456.666667pt;}
.x47_c00050{left:458.666667pt;}
.xa6_c00050{left:459.600000pt;}
.xae_c00050{left:462.266667pt;}
.xf3_c00050{left:464.000000pt;}
.x9b_c00050{left:470.266667pt;}
.xe5_c00050{left:471.600000pt;}
.xa_c00050{left:474.933333pt;}
.xf8_c00050{left:476.800000pt;}
.x83_c00050{left:478.000000pt;}
.x48_c00050{left:479.733333pt;}
.x60_c00050{left:481.866667pt;}
.x23_c00050{left:484.666667pt;}
.xe2_c00050{left:486.133333pt;}
.x54_c00050{left:489.066667pt;}
.xf4_c00050{left:492.133333pt;}
.xcf_c00050{left:493.066667pt;}
.xb_c00050{left:494.800000pt;}
.x73_c00050{left:496.666667pt;}
.xa0_c00050{left:498.800000pt;}
.xfe_c00050{left:500.000000pt;}
.xe3_c00050{left:501.466667pt;}
.x92_c00050{left:504.133333pt;}
.x36_c00050{left:506.000000pt;}
.x24_c00050{left:509.333333pt;}
.x55_c00050{left:510.800000pt;}
.x3e_c00050{left:512.000000pt;}
.x17_c00050{left:513.733333pt;}
.xc8_c00050{left:515.333333pt;}
.xc_c00050{left:516.933333pt;}
.x37_c00050{left:518.800000pt;}
.x49_c00050{left:521.600000pt;}
.x105_c00050{left:523.466667pt;}
.x93_c00050{left:526.266667pt;}
.x84_c00050{left:529.200000pt;}
.xfb_c00050{left:531.333333pt;}
.xa7_c00050{left:532.266667pt;}
.xc0_c00050{left:533.466667pt;}
.xaf_c00050{left:535.600000pt;}
.x56_c00050{left:537.333333pt;}
.x18_c00050{left:538.666667pt;}
.xe6_c00050{left:539.866667pt;}
.x94_c00050{left:540.933333pt;}
.xa1_c00050{left:542.000000pt;}
.x106_c00050{left:544.933333pt;}
.x61_c00050{left:546.800000pt;}
.x6a_c00050{left:547.733333pt;}
.xc1_c00050{left:549.466667pt;}
.xc4_c00050{left:553.066667pt;}
.x19_c00050{left:556.266667pt;}
.x62_c00050{left:557.733333pt;}
.xe7_c00050{left:558.800000pt;}
.xd0_c00050{left:561.200000pt;}
.x74_c00050{left:563.600000pt;}
.xc9_c00050{left:564.933333pt;}
.x38_c00050{left:566.800000pt;}
.x63_c00050{left:570.266667pt;}
.x2_c00050{left:573.466667pt;}
.xd5_c00050{left:575.066667pt;}
.x107_c00050{left:576.000000pt;}
.xa8_c00050{left:577.333333pt;}
.x7d_c00050{left:578.533333pt;}
.x25_c00050{left:579.733333pt;}
.x95_c00050{left:581.600000pt;}
.xd_c00050{left:582.533333pt;}
.xdb_c00050{left:584.933333pt;}
.x1a_c00050{left:586.933333pt;}
.xf5_c00050{left:590.400000pt;}
.xee_c00050{left:592.133333pt;}
.xe_c00050{left:593.066667pt;}
.xa9_c00050{left:595.200000pt;}
.x1b_c00050{left:597.466667pt;}
.x9c_c00050{left:598.800000pt;}
.x85_c00050{left:601.466667pt;}
.x4a_c00050{left:603.066667pt;}
.x6b_c00050{left:604.400000pt;}
.x75_c00050{left:607.066667pt;}
.xc2_c00050{left:610.000000pt;}
.xb9_c00050{left:611.066667pt;}
.x57_c00050{left:612.933333pt;}
.x1c_c00050{left:615.066667pt;}
.x86_c00050{left:616.133333pt;}
.x26_c00050{left:617.200000pt;}
.x3f_c00050{left:618.533333pt;}
.x58_c00050{left:621.600000pt;}
.xf6_c00050{left:624.000000pt;}
.xa2_c00050{left:625.200000pt;}
.x96_c00050{left:626.666667pt;}
.x27_c00050{left:630.000000pt;}
.x10d_c00050{left:633.600000pt;}
.x1d_c00050{left:634.533333pt;}
.xf_c00050{left:636.000000pt;}
.xba_c00050{left:638.000000pt;}
.xb4_c00050{left:639.200000pt;}
.x40_c00050{left:640.933333pt;}
.xe4_c00050{left:642.666667pt;}
.x7e_c00050{left:644.400000pt;}
.x108_c00050{left:646.000000pt;}
.xe8_c00050{left:647.066667pt;}
.x97_c00050{left:648.800000pt;}
.x59_c00050{left:649.733333pt;}
.xdc_c00050{left:651.200000pt;}
.xd6_c00050{left:652.133333pt;}
.x6c_c00050{left:653.600000pt;}
.x4b_c00050{left:655.200000pt;}
.x87_c00050{left:658.400000pt;}
.x28_c00050{left:664.266667pt;}
.x3_c00050{left:665.333333pt;}
.x109_c00050{left:666.800000pt;}
.xca_c00050{left:670.800000pt;}
.x64_c00050{left:673.333333pt;}
.x88_c00050{left:676.000000pt;}
.xd7_c00050{left:680.000000pt;}
.xdd_c00050{left:681.333333pt;}
.xe9_c00050{left:682.533333pt;}
.x76_c00050{left:684.533333pt;}
.xfc_c00050{left:685.600000pt;}
.xb0_c00050{left:686.933333pt;}
.x1e_c00050{left:688.266667pt;}
.x39_c00050{left:690.666667pt;}
.x65_c00050{left:692.800000pt;}
.xbb_c00050{left:693.733333pt;}
.x7f_c00050{left:694.666667pt;}
.x10_c00050{left:696.533333pt;}
}





/* 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_c00051 {
    display:none;
  }
  .loading-indicator_c00051.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00051 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_c00051 { 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_c00051" -> "#page-container .classname_c00051")
 */
.pf_c00051 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00051 { /* 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_c00051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00051 { /* 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_c00051 { /* 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_c00051 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00051 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00051 {overflow:visible;}
  }
}
.c_c00051 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00051 { /* 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_c00051:after { /* webkit #35443 */
  content: '';
}
.t_c00051:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00051 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 */
}
.__c00051 { /* 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_c00051 { /* info for Javascript */
  display:none;
}
.l_c00051 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00051 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00051 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00051: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_c00051 {
    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_c00051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00051.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_c00051 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00051;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.000000;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;}
.m22_c00051{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00051{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00051{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00051{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00051{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00051{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00051{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m14_c00051{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m69_c00051{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00051{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8_c00051{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00051{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m91_c00051{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mda_c00051{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m43_c00051{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00051{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m15_c00051{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m61_c00051{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m73_c00051{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00051{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md6_c00051{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00051{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m21_c00051{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m62_c00051{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m65_c00051{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m24_c00051{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00051{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00051{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00051{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m53_c00051{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m48_c00051{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m80_c00051{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m93_c00051{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00051{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00051{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m64_c00051{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00051{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00051{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m13_c00051{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m60_c00051{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mca_c00051{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00051{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m52_c00051{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00051{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00051{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00051{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00051{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mad_c00051{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m83_c00051{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m20_c00051{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00051{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m57_c00051{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m70_c00051{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m67_c00051{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00051{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00051{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m97_c00051{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m31_c00051{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00051{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00051{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mde_c00051{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00051{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m19_c00051{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00051{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00051{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m63_c00051{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00051{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00051{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m95_c00051{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m71_c00051{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m51_c00051{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00051{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00051{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00051{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mba_c00051{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m39_c00051{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m92_c00051{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md8_c00051{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m40_c00051{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m55_c00051{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.me_c00051{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md1_c00051{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m42_c00051{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m16_c00051{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00051{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00051{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00051{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00051{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m86_c00051{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m50_c00051{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m79_c00051{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m54_c00051{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m28_c00051{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00051{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m41_c00051{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00051{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00051{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00051{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m47_c00051{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00051{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00051{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m12_c00051{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m17_c00051{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00051{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m99_c00051{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m72_c00051{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m66_c00051{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00051{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00051{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m18_c00051{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mac_c00051{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m58_c00051{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m77_c00051{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00051{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00051{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md3_c00051{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00051{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m45_c00051{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00051{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00051{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00051{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5_c00051{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m98_c00051{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m29_c00051{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00051{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m94_c00051{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m27_c00051{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mce_c00051{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m90_c00051{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m46_c00051{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m76_c00051{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00051{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00051{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00051{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00051{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m87_c00051{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md4_c00051{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m81_c00051{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00051{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma_c00051{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00051{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md_c00051{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00051{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00051{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc_c00051{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m74_c00051{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m10_c00051{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mae_c00051{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m26_c00051{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m38_c00051{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00051{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m30_c00051{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00051{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00051{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m89_c00051{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00051{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00051{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00051{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00051{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mb_c00051{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00051{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00051{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m25_c00051{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md5_c00051{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00051{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00051{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00051{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00051{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m78_c00051{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00051{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m59_c00051{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m33_c00051{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m75_c00051{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m56_c00051{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00051{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7_c00051{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00051{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md2_c00051{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00051{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00051{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m34_c00051{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m88_c00051{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md0_c00051{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mab_c00051{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00051{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);}
.m9b_c00051{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00051{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m82_c00051{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m37_c00051{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m9_c00051{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md7_c00051{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00051{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00051{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6_c00051{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00051{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mf_c00051{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m68_c00051{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m44_c00051{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00051{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m35_c00051{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m49_c00051{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c00051{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00051{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00051{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.md9_c00051{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m96_c00051{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m0_c00051{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00051{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m32_c00051{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00051{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00051{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m11_c00051{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m23_c00051{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.maf_c00051{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me0_c00051{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00051{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00051{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00051{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.m84_c00051{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m85_c00051{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.maa_c00051{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.m3_c00051{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m2_c00051{transform:matrix(0.500750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500750,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls0_c00051{letter-spacing:0.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{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__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:-7.545852px;}
.ws6_c00051{word-spacing:0.000000px;}
.ws4_c00051{word-spacing:0.314410px;}
.ws5_c00051{word-spacing:5.312500px;}
.ws3_c00051{word-spacing:6.115242px;}
.ws2_c00051{word-spacing:7.925764px;}
.ws1_c00051{word-spacing:18.765043px;}
._0_c00051{width:41.250000px;}
.fc0_c00051{color:transparent;}
.fs4_c00051{font-size:30.000000px;}
.fs3_c00051{font-size:54.000000px;}
.fs1_c00051{font-size:60.000000px;}
.fs2_c00051{font-size:66.000000px;}
.fs0_c00051{font-size:72.000000px;}
.y0_c00051{bottom:0.000000px;}
.y3d_c00051{bottom:5.400000px;}
.y3b_c00051{bottom:191.550000px;}
.y3a_c00051{bottom:209.550000px;}
.y39_c00051{bottom:227.400000px;}
.y38_c00051{bottom:245.400000px;}
.y3c_c00051{bottom:245.850000px;}
.ye_c00051{bottom:246.900000px;}
.y37_c00051{bottom:263.100000px;}
.y36_c00051{bottom:280.800000px;}
.y35_c00051{bottom:298.500000px;}
.y34_c00051{bottom:325.350000px;}
.y33_c00051{bottom:343.050000px;}
.y30_c00051{bottom:369.600000px;}
.y2f_c00051{bottom:387.300000px;}
.y32_c00051{bottom:387.750000px;}
.yd_c00051{bottom:388.500000px;}
.y2e_c00051{bottom:405.000000px;}
.y2c_c00051{bottom:442.350000px;}
.y2b_c00051{bottom:449.550000px;}
.y2a_c00051{bottom:467.250000px;}
.y2d_c00051{bottom:468.000000px;}
.yc_c00051{bottom:468.300000px;}
.y29_c00051{bottom:485.250000px;}
.y28_c00051{bottom:502.500000px;}
.y27_c00051{bottom:529.500000px;}
.yb_c00051{bottom:547.950000px;}
.y26_c00051{bottom:565.200000px;}
.y25_c00051{bottom:591.900000px;}
.y23_c00051{bottom:618.450000px;}
.ya_c00051{bottom:636.450000px;}
.y24_c00051{bottom:636.900000px;}
.y22_c00051{bottom:654.450000px;}
.y21_c00051{bottom:681.150000px;}
.y20_c00051{bottom:699.450000px;}
.y31_c00051{bottom:708.150000px;}
.y9_c00051{bottom:708.900000px;}
.y1f_c00051{bottom:716.700000px;}
.y1e_c00051{bottom:734.700000px;}
.y1c_c00051{bottom:761.400000px;}
.y1b_c00051{bottom:779.100000px;}
.y1a_c00051{bottom:797.250000px;}
.y8_c00051{bottom:802.050000px;}
.y1d_c00051{bottom:806.100000px;}
.y19_c00051{bottom:814.950000px;}
.y18_c00051{bottom:832.950000px;}
.y17_c00051{bottom:850.650000px;}
.y16_c00051{bottom:876.900000px;}
.y15_c00051{bottom:895.650000px;}
.y7_c00051{bottom:912.300000px;}
.y14_c00051{bottom:913.050000px;}
.y13_c00051{bottom:931.350000px;}
.y12_c00051{bottom:949.350000px;}
.y11_c00051{bottom:975.300000px;}
.y10_c00051{bottom:994.350000px;}
.yf_c00051{bottom:1020.600000px;}
.y6_c00051{bottom:1039.650000px;}
.y5_c00051{bottom:1057.350000px;}
.y4_c00051{bottom:1082.550000px;}
.y3_c00051{bottom:1101.600000px;}
.y2_c00051{bottom:1119.600000px;}
.y1_c00051{bottom:1146.300000px;}
.h6_c00051{height:30.000000px;}
.h5_c00051{height:54.000000px;}
.h3_c00051{height:60.000000px;}
.h4_c00051{height:66.000000px;}
.h2_c00051{height:72.000000px;}
.h0_c00051{height:1275.480010px;}
.h1_c00051{height:1275.750000px;}
.w0_c00051{width:948.600036px;}
.w1_c00051{width:948.750000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:163.050000px;}
.x36_c00051{left:172.500000px;}
.x11_c00051{left:174.300000px;}
.x93_c00051{left:204.900000px;}
.x12_c00051{left:206.400000px;}
.xff_c00051{left:207.750000px;}
.xe9_c00051{left:270.750000px;}
.xea_c00051{left:272.100000px;}
.x94_c00051{left:288.300000px;}
.x4_c00051{left:289.800000px;}
.xeb_c00051{left:291.900000px;}
.xee_c00051{left:297.900000px;}
.xa6_c00051{left:306.000000px;}
.x13_c00051{left:307.500000px;}
.xf2_c00051{left:308.850000px;}
.x37_c00051{left:310.350000px;}
.xec_c00051{left:312.450000px;}
.x5d_c00051{left:324.000000px;}
.x99_c00051{left:328.500000px;}
.x47_c00051{left:329.700000px;}
.x20_c00051{left:331.050000px;}
.x69_c00051{left:333.000000px;}
.x38_c00051{left:342.750000px;}
.x49_c00051{left:344.250000px;}
.xcc_c00051{left:347.400000px;}
.x90_c00051{left:349.050000px;}
.x7b_c00051{left:352.200000px;}
.x2c_c00051{left:353.700000px;}
.xf9_c00051{left:354.900000px;}
.xf6_c00051{left:356.100000px;}
.x74_c00051{left:358.050000px;}
.x5b_c00051{left:360.000000px;}
.x48_c00051{left:361.350000px;}
.xa7_c00051{left:362.550000px;}
.x14_c00051{left:365.400000px;}
.x6a_c00051{left:366.900000px;}
.x2_c00051{left:367.950000px;}
.x89_c00051{left:369.000000px;}
.xd1_c00051{left:370.500000px;}
.x5e_c00051{left:372.900000px;}
.xad_c00051{left:374.850000px;}
.xb4_c00051{left:378.000000px;}
.x5_c00051{left:380.100000px;}
.xfa_c00051{left:381.900000px;}
.xd6_c00051{left:383.700000px;}
.x52_c00051{left:385.800000px;}
.x95_c00051{left:388.350000px;}
.x6_c00051{left:390.900000px;}
.x7c_c00051{left:392.850000px;}
.x4a_c00051{left:395.700000px;}
.x96_c00051{left:397.050000px;}
.x15_c00051{left:398.850000px;}
.x3f_c00051{left:400.350000px;}
.xbf_c00051{left:402.450000px;}
.x3_c00051{left:403.950000px;}
.x21_c00051{left:405.900000px;}
.x24_c00051{left:408.750000px;}
.x16_c00051{left:410.700000px;}
.x2d_c00051{left:413.550000px;}
.x5c_c00051{left:416.550000px;}
.xba_c00051{left:418.200000px;}
.x85_c00051{left:426.450000px;}
.x6b_c00051{left:427.800000px;}
.xa8_c00051{left:428.850000px;}
.x17_c00051{left:432.600000px;}
.xe3_c00051{left:433.650000px;}
.x39_c00051{left:434.850000px;}
.x7d_c00051{left:437.850000px;}
.x75_c00051{left:439.800000px;}
.x40_c00051{left:441.750000px;}
.xc0_c00051{left:443.100000px;}
.xda_c00051{left:445.950000px;}
.x5f_c00051{left:450.600000px;}
.xd2_c00051{left:454.050000px;}
.x25_c00051{left:455.550000px;}
.x7_c00051{left:456.750000px;}
.x7e_c00051{left:459.150000px;}
.x86_c00051{left:460.350000px;}
.xc1_c00051{left:461.850000px;}
.x8a_c00051{left:463.350000px;}
.xcd_c00051{left:464.700000px;}
.x9e_c00051{left:466.350000px;}
.xc6_c00051{left:468.300000px;}
.x6c_c00051{left:469.950000px;}
.x91_c00051{left:471.450000px;}
.x3a_c00051{left:472.950000px;}
.xae_c00051{left:474.600000px;}
.x53_c00051{left:476.550000px;}
.xe1_c00051{left:478.050000px;}
.xa9_c00051{left:479.550000px;}
.xce_c00051{left:480.600000px;}
.x7f_c00051{left:483.300000px;}
.x87_c00051{left:484.500000px;}
.x54_c00051{left:485.550000px;}
.x60_c00051{left:488.100000px;}
.x9f_c00051{left:491.850000px;}
.x6d_c00051{left:494.100000px;}
.x2e_c00051{left:495.300000px;}
.x76_c00051{left:496.650000px;}
.x92_c00051{left:498.150000px;}
.xbb_c00051{left:501.000000px;}
.xd7_c00051{left:502.500000px;}
.x8_c00051{left:504.300000px;}
.x2f_c00051{left:506.100000px;}
.x8b_c00051{left:508.650000px;}
.xc2_c00051{left:509.700000px;}
.xe5_c00051{left:511.200000px;}
.x97_c00051{left:513.000000px;}
.xef_c00051{left:514.650000px;}
.x4b_c00051{left:518.100000px;}
.x22_c00051{left:521.100000px;}
.x41_c00051{left:525.600000px;}
.x61_c00051{left:526.650000px;}
.xcf_c00051{left:528.450000px;}
.xfb_c00051{left:529.500000px;}
.x88_c00051{left:531.300000px;}
.xf0_c00051{left:532.350000px;}
.x3b_c00051{left:533.850000px;}
.x9a_c00051{left:535.500000px;}
.x26_c00051{left:538.050000px;}
.xf7_c00051{left:539.550000px;}
.x80_c00051{left:540.600000px;}
.x18_c00051{left:544.950000px;}
.xbc_c00051{left:546.750000px;}
.x6e_c00051{left:548.100000px;}
.xaf_c00051{left:550.200000px;}
.x4c_c00051{left:552.000000px;}
.x9_c00051{left:553.200000px;}
.xc7_c00051{left:555.900000px;}
.x30_c00051{left:557.550000px;}
.xb0_c00051{left:559.500000px;}
.xe7_c00051{left:561.300000px;}
.x77_c00051{left:563.700000px;}
.xa_c00051{left:565.500000px;}
.x8c_c00051{left:568.350000px;}
.xe8_c00051{left:570.300000px;}
.x42_c00051{left:572.100000px;}
.xb1_c00051{left:573.600000px;}
.x98_c00051{left:575.700000px;}
.xd3_c00051{left:577.350000px;}
.xfc_c00051{left:580.200000px;}
.x6f_c00051{left:583.350000px;}
.x81_c00051{left:584.850000px;}
.x3c_c00051{left:588.900000px;}
.x55_c00051{left:589.950000px;}
.x62_c00051{left:591.750000px;}
.x27_c00051{left:593.100000px;}
.xc3_c00051{left:595.800000px;}
.x19_c00051{left:597.900000px;}
.xf1_c00051{left:599.700000px;}
.xa0_c00051{left:601.200000px;}
.x4d_c00051{left:606.000000px;}
.xf3_c00051{left:608.550000px;}
.x1a_c00051{left:609.750000px;}
.xd0_c00051{left:612.000000px;}
.xb5_c00051{left:613.050000px;}
.x78_c00051{left:615.600000px;}
.xb_c00051{left:621.000000px;}
.x43_c00051{left:622.800000px;}
.xa1_c00051{left:624.900000px;}
.xdb_c00051{left:626.250000px;}
.x56_c00051{left:628.800000px;}
.x70_c00051{left:629.850000px;}
.x63_c00051{left:632.850000px;}
.xc8_c00051{left:635.850000px;}
.x57_c00051{left:638.550000px;}
.x44_c00051{left:643.350000px;}
.xc4_c00051{left:646.500000px;}
.x8d_c00051{left:652.200000px;}
.xfd_c00051{left:653.250000px;}
.xf4_c00051{left:654.300000px;}
.x1b_c00051{left:658.350000px;}
.x28_c00051{left:660.000000px;}
.xaa_c00051{left:661.800000px;}
.x4e_c00051{left:664.350000px;}
.xb2_c00051{left:667.650000px;}
.xc_c00051{left:669.900000px;}
.x31_c00051{left:673.050000px;}
.x58_c00051{left:674.550000px;}
.xde_c00051{left:676.350000px;}
.x3d_c00051{left:678.900000px;}
.xa2_c00051{left:680.700000px;}
.xdc_c00051{left:683.850000px;}
.x32_c00051{left:684.900000px;}
.xb6_c00051{left:686.550000px;}
.xd8_c00051{left:687.750000px;}
.x8e_c00051{left:688.950000px;}
.x79_c00051{left:690.150000px;}
.xed_c00051{left:692.850000px;}
.x82_c00051{left:694.350000px;}
.xc9_c00051{left:696.750000px;}
.x64_c00051{left:697.950000px;}
.xd_c00051{left:700.200000px;}
.x29_c00051{left:702.150000px;}
.x1c_c00051{left:705.150000px;}
.xab_c00051{left:710.400000px;}
.xb3_c00051{left:713.400000px;}
.x59_c00051{left:715.200000px;}
.x2a_c00051{left:718.350000px;}
.x45_c00051{left:721.050000px;}
.x7a_c00051{left:722.550000px;}
.xd9_c00051{left:724.500000px;}
.xfe_c00051{left:726.000000px;}
.x8f_c00051{left:727.050000px;}
.x9b_c00051{left:728.400000px;}
.x4f_c00051{left:731.550000px;}
.x71_c00051{left:733.200000px;}
.xe6_c00051{left:735.000000px;}
.xf5_c00051{left:737.400000px;}
.xb7_c00051{left:739.500000px;}
.xe_c00051{left:742.650000px;}
.x65_c00051{left:744.750000px;}
.x72_c00051{left:745.800000px;}
.x33_c00051{left:746.850000px;}
.xb8_c00051{left:748.800000px;}
.x23_c00051{left:752.550000px;}
.x1d_c00051{left:754.500000px;}
.xa3_c00051{left:755.550000px;}
.xac_c00051{left:759.450000px;}
.x3e_c00051{left:761.400000px;}
.xdf_c00051{left:763.500000px;}
.x66_c00051{left:764.850000px;}
.xe4_c00051{left:768.600000px;}
.x34_c00051{left:770.550000px;}
.xbd_c00051{left:772.950000px;}
.x1e_c00051{left:774.600000px;}
.x83_c00051{left:775.650000px;}
.xa4_c00051{left:776.850000px;}
.xd4_c00051{left:783.300000px;}
.x73_c00051{left:785.100000px;}
.x50_c00051{left:786.300000px;}
.x9c_c00051{left:788.850000px;}
.x67_c00051{left:791.850000px;}
.xc5_c00051{left:794.550000px;}
.xf_c00051{left:797.400000px;}
.xa5_c00051{left:801.000000px;}
.x2b_c00051{left:803.700000px;}
.xca_c00051{left:804.750000px;}
.x5a_c00051{left:806.700000px;}
.x84_c00051{left:808.800000px;}
.x35_c00051{left:810.150000px;}
.xdd_c00051{left:813.750000px;}
.xd5_c00051{left:816.000000px;}
.x9d_c00051{left:818.700000px;}
.x10_c00051{left:820.500000px;}
.xbe_c00051{left:824.850000px;}
.xf8_c00051{left:828.300000px;}
.x46_c00051{left:831.600000px;}
.x51_c00051{left:833.400000px;}
.xcb_c00051{left:839.700000px;}
.xe2_c00051{left:841.350000px;}
.x68_c00051{left:845.550000px;}
.xe0_c00051{left:850.950000px;}
.xb9_c00051{left:852.450000px;}
.x1f_c00051{left:853.800000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws0_c00051{word-spacing:-6.707424pt;}
.ws6_c00051{word-spacing:0.000000pt;}
.ws4_c00051{word-spacing:0.279476pt;}
.ws5_c00051{word-spacing:4.722222pt;}
.ws3_c00051{word-spacing:5.435770pt;}
.ws2_c00051{word-spacing:7.045124pt;}
.ws1_c00051{word-spacing:16.680038pt;}
._0_c00051{width:36.666667pt;}
.fs4_c00051{font-size:26.666667pt;}
.fs3_c00051{font-size:48.000000pt;}
.fs1_c00051{font-size:53.333333pt;}
.fs2_c00051{font-size:58.666667pt;}
.fs0_c00051{font-size:64.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y3d_c00051{bottom:4.800000pt;}
.y3b_c00051{bottom:170.266667pt;}
.y3a_c00051{bottom:186.266667pt;}
.y39_c00051{bottom:202.133333pt;}
.y38_c00051{bottom:218.133333pt;}
.y3c_c00051{bottom:218.533333pt;}
.ye_c00051{bottom:219.466667pt;}
.y37_c00051{bottom:233.866667pt;}
.y36_c00051{bottom:249.600000pt;}
.y35_c00051{bottom:265.333333pt;}
.y34_c00051{bottom:289.200000pt;}
.y33_c00051{bottom:304.933333pt;}
.y30_c00051{bottom:328.533333pt;}
.y2f_c00051{bottom:344.266667pt;}
.y32_c00051{bottom:344.666667pt;}
.yd_c00051{bottom:345.333333pt;}
.y2e_c00051{bottom:360.000000pt;}
.y2c_c00051{bottom:393.200000pt;}
.y2b_c00051{bottom:399.600000pt;}
.y2a_c00051{bottom:415.333333pt;}
.y2d_c00051{bottom:416.000000pt;}
.yc_c00051{bottom:416.266667pt;}
.y29_c00051{bottom:431.333333pt;}
.y28_c00051{bottom:446.666667pt;}
.y27_c00051{bottom:470.666667pt;}
.yb_c00051{bottom:487.066667pt;}
.y26_c00051{bottom:502.400000pt;}
.y25_c00051{bottom:526.133333pt;}
.y23_c00051{bottom:549.733333pt;}
.ya_c00051{bottom:565.733333pt;}
.y24_c00051{bottom:566.133333pt;}
.y22_c00051{bottom:581.733333pt;}
.y21_c00051{bottom:605.466667pt;}
.y20_c00051{bottom:621.733333pt;}
.y31_c00051{bottom:629.466667pt;}
.y9_c00051{bottom:630.133333pt;}
.y1f_c00051{bottom:637.066667pt;}
.y1e_c00051{bottom:653.066667pt;}
.y1c_c00051{bottom:676.800000pt;}
.y1b_c00051{bottom:692.533333pt;}
.y1a_c00051{bottom:708.666667pt;}
.y8_c00051{bottom:712.933333pt;}
.y1d_c00051{bottom:716.533333pt;}
.y19_c00051{bottom:724.400000pt;}
.y18_c00051{bottom:740.400000pt;}
.y17_c00051{bottom:756.133333pt;}
.y16_c00051{bottom:779.466667pt;}
.y15_c00051{bottom:796.133333pt;}
.y7_c00051{bottom:810.933333pt;}
.y14_c00051{bottom:811.600000pt;}
.y13_c00051{bottom:827.866667pt;}
.y12_c00051{bottom:843.866667pt;}
.y11_c00051{bottom:866.933333pt;}
.y10_c00051{bottom:883.866667pt;}
.yf_c00051{bottom:907.200000pt;}
.y6_c00051{bottom:924.133333pt;}
.y5_c00051{bottom:939.866667pt;}
.y4_c00051{bottom:962.266667pt;}
.y3_c00051{bottom:979.200000pt;}
.y2_c00051{bottom:995.200000pt;}
.y1_c00051{bottom:1018.933333pt;}
.h6_c00051{height:26.666667pt;}
.h5_c00051{height:48.000000pt;}
.h3_c00051{height:53.333333pt;}
.h4_c00051{height:58.666667pt;}
.h2_c00051{height:64.000000pt;}
.h0_c00051{height:1133.760009pt;}
.h1_c00051{height:1134.000000pt;}
.w0_c00051{width:843.200032pt;}
.w1_c00051{width:843.333333pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:144.933333pt;}
.x36_c00051{left:153.333333pt;}
.x11_c00051{left:154.933333pt;}
.x93_c00051{left:182.133333pt;}
.x12_c00051{left:183.466667pt;}
.xff_c00051{left:184.666667pt;}
.xe9_c00051{left:240.666667pt;}
.xea_c00051{left:241.866667pt;}
.x94_c00051{left:256.266667pt;}
.x4_c00051{left:257.600000pt;}
.xeb_c00051{left:259.466667pt;}
.xee_c00051{left:264.800000pt;}
.xa6_c00051{left:272.000000pt;}
.x13_c00051{left:273.333333pt;}
.xf2_c00051{left:274.533333pt;}
.x37_c00051{left:275.866667pt;}
.xec_c00051{left:277.733333pt;}
.x5d_c00051{left:288.000000pt;}
.x99_c00051{left:292.000000pt;}
.x47_c00051{left:293.066667pt;}
.x20_c00051{left:294.266667pt;}
.x69_c00051{left:296.000000pt;}
.x38_c00051{left:304.666667pt;}
.x49_c00051{left:306.000000pt;}
.xcc_c00051{left:308.800000pt;}
.x90_c00051{left:310.266667pt;}
.x7b_c00051{left:313.066667pt;}
.x2c_c00051{left:314.400000pt;}
.xf9_c00051{left:315.466667pt;}
.xf6_c00051{left:316.533333pt;}
.x74_c00051{left:318.266667pt;}
.x5b_c00051{left:320.000000pt;}
.x48_c00051{left:321.200000pt;}
.xa7_c00051{left:322.266667pt;}
.x14_c00051{left:324.800000pt;}
.x6a_c00051{left:326.133333pt;}
.x2_c00051{left:327.066667pt;}
.x89_c00051{left:328.000000pt;}
.xd1_c00051{left:329.333333pt;}
.x5e_c00051{left:331.466667pt;}
.xad_c00051{left:333.200000pt;}
.xb4_c00051{left:336.000000pt;}
.x5_c00051{left:337.866667pt;}
.xfa_c00051{left:339.466667pt;}
.xd6_c00051{left:341.066667pt;}
.x52_c00051{left:342.933333pt;}
.x95_c00051{left:345.200000pt;}
.x6_c00051{left:347.466667pt;}
.x7c_c00051{left:349.200000pt;}
.x4a_c00051{left:351.733333pt;}
.x96_c00051{left:352.933333pt;}
.x15_c00051{left:354.533333pt;}
.x3f_c00051{left:355.866667pt;}
.xbf_c00051{left:357.733333pt;}
.x3_c00051{left:359.066667pt;}
.x21_c00051{left:360.800000pt;}
.x24_c00051{left:363.333333pt;}
.x16_c00051{left:365.066667pt;}
.x2d_c00051{left:367.600000pt;}
.x5c_c00051{left:370.266667pt;}
.xba_c00051{left:371.733333pt;}
.x85_c00051{left:379.066667pt;}
.x6b_c00051{left:380.266667pt;}
.xa8_c00051{left:381.200000pt;}
.x17_c00051{left:384.533333pt;}
.xe3_c00051{left:385.466667pt;}
.x39_c00051{left:386.533333pt;}
.x7d_c00051{left:389.200000pt;}
.x75_c00051{left:390.933333pt;}
.x40_c00051{left:392.666667pt;}
.xc0_c00051{left:393.866667pt;}
.xda_c00051{left:396.400000pt;}
.x5f_c00051{left:400.533333pt;}
.xd2_c00051{left:403.600000pt;}
.x25_c00051{left:404.933333pt;}
.x7_c00051{left:406.000000pt;}
.x7e_c00051{left:408.133333pt;}
.x86_c00051{left:409.200000pt;}
.xc1_c00051{left:410.533333pt;}
.x8a_c00051{left:411.866667pt;}
.xcd_c00051{left:413.066667pt;}
.x9e_c00051{left:414.533333pt;}
.xc6_c00051{left:416.266667pt;}
.x6c_c00051{left:417.733333pt;}
.x91_c00051{left:419.066667pt;}
.x3a_c00051{left:420.400000pt;}
.xae_c00051{left:421.866667pt;}
.x53_c00051{left:423.600000pt;}
.xe1_c00051{left:424.933333pt;}
.xa9_c00051{left:426.266667pt;}
.xce_c00051{left:427.200000pt;}
.x7f_c00051{left:429.600000pt;}
.x87_c00051{left:430.666667pt;}
.x54_c00051{left:431.600000pt;}
.x60_c00051{left:433.866667pt;}
.x9f_c00051{left:437.200000pt;}
.x6d_c00051{left:439.200000pt;}
.x2e_c00051{left:440.266667pt;}
.x76_c00051{left:441.466667pt;}
.x92_c00051{left:442.800000pt;}
.xbb_c00051{left:445.333333pt;}
.xd7_c00051{left:446.666667pt;}
.x8_c00051{left:448.266667pt;}
.x2f_c00051{left:449.866667pt;}
.x8b_c00051{left:452.133333pt;}
.xc2_c00051{left:453.066667pt;}
.xe5_c00051{left:454.400000pt;}
.x97_c00051{left:456.000000pt;}
.xef_c00051{left:457.466667pt;}
.x4b_c00051{left:460.533333pt;}
.x22_c00051{left:463.200000pt;}
.x41_c00051{left:467.200000pt;}
.x61_c00051{left:468.133333pt;}
.xcf_c00051{left:469.733333pt;}
.xfb_c00051{left:470.666667pt;}
.x88_c00051{left:472.266667pt;}
.xf0_c00051{left:473.200000pt;}
.x3b_c00051{left:474.533333pt;}
.x9a_c00051{left:476.000000pt;}
.x26_c00051{left:478.266667pt;}
.xf7_c00051{left:479.600000pt;}
.x80_c00051{left:480.533333pt;}
.x18_c00051{left:484.400000pt;}
.xbc_c00051{left:486.000000pt;}
.x6e_c00051{left:487.200000pt;}
.xaf_c00051{left:489.066667pt;}
.x4c_c00051{left:490.666667pt;}
.x9_c00051{left:491.733333pt;}
.xc7_c00051{left:494.133333pt;}
.x30_c00051{left:495.600000pt;}
.xb0_c00051{left:497.333333pt;}
.xe7_c00051{left:498.933333pt;}
.x77_c00051{left:501.066667pt;}
.xa_c00051{left:502.666667pt;}
.x8c_c00051{left:505.200000pt;}
.xe8_c00051{left:506.933333pt;}
.x42_c00051{left:508.533333pt;}
.xb1_c00051{left:509.866667pt;}
.x98_c00051{left:511.733333pt;}
.xd3_c00051{left:513.200000pt;}
.xfc_c00051{left:515.733333pt;}
.x6f_c00051{left:518.533333pt;}
.x81_c00051{left:519.866667pt;}
.x3c_c00051{left:523.466667pt;}
.x55_c00051{left:524.400000pt;}
.x62_c00051{left:526.000000pt;}
.x27_c00051{left:527.200000pt;}
.xc3_c00051{left:529.600000pt;}
.x19_c00051{left:531.466667pt;}
.xf1_c00051{left:533.066667pt;}
.xa0_c00051{left:534.400000pt;}
.x4d_c00051{left:538.666667pt;}
.xf3_c00051{left:540.933333pt;}
.x1a_c00051{left:542.000000pt;}
.xd0_c00051{left:544.000000pt;}
.xb5_c00051{left:544.933333pt;}
.x78_c00051{left:547.200000pt;}
.xb_c00051{left:552.000000pt;}
.x43_c00051{left:553.600000pt;}
.xa1_c00051{left:555.466667pt;}
.xdb_c00051{left:556.666667pt;}
.x56_c00051{left:558.933333pt;}
.x70_c00051{left:559.866667pt;}
.x63_c00051{left:562.533333pt;}
.xc8_c00051{left:565.200000pt;}
.x57_c00051{left:567.600000pt;}
.x44_c00051{left:571.866667pt;}
.xc4_c00051{left:574.666667pt;}
.x8d_c00051{left:579.733333pt;}
.xfd_c00051{left:580.666667pt;}
.xf4_c00051{left:581.600000pt;}
.x1b_c00051{left:585.200000pt;}
.x28_c00051{left:586.666667pt;}
.xaa_c00051{left:588.266667pt;}
.x4e_c00051{left:590.533333pt;}
.xb2_c00051{left:593.466667pt;}
.xc_c00051{left:595.466667pt;}
.x31_c00051{left:598.266667pt;}
.x58_c00051{left:599.600000pt;}
.xde_c00051{left:601.200000pt;}
.x3d_c00051{left:603.466667pt;}
.xa2_c00051{left:605.066667pt;}
.xdc_c00051{left:607.866667pt;}
.x32_c00051{left:608.800000pt;}
.xb6_c00051{left:610.266667pt;}
.xd8_c00051{left:611.333333pt;}
.x8e_c00051{left:612.400000pt;}
.x79_c00051{left:613.466667pt;}
.xed_c00051{left:615.866667pt;}
.x82_c00051{left:617.200000pt;}
.xc9_c00051{left:619.333333pt;}
.x64_c00051{left:620.400000pt;}
.xd_c00051{left:622.400000pt;}
.x29_c00051{left:624.133333pt;}
.x1c_c00051{left:626.800000pt;}
.xab_c00051{left:631.466667pt;}
.xb3_c00051{left:634.133333pt;}
.x59_c00051{left:635.733333pt;}
.x2a_c00051{left:638.533333pt;}
.x45_c00051{left:640.933333pt;}
.x7a_c00051{left:642.266667pt;}
.xd9_c00051{left:644.000000pt;}
.xfe_c00051{left:645.333333pt;}
.x8f_c00051{left:646.266667pt;}
.x9b_c00051{left:647.466667pt;}
.x4f_c00051{left:650.266667pt;}
.x71_c00051{left:651.733333pt;}
.xe6_c00051{left:653.333333pt;}
.xf5_c00051{left:655.466667pt;}
.xb7_c00051{left:657.333333pt;}
.xe_c00051{left:660.133333pt;}
.x65_c00051{left:662.000000pt;}
.x72_c00051{left:662.933333pt;}
.x33_c00051{left:663.866667pt;}
.xb8_c00051{left:665.600000pt;}
.x23_c00051{left:668.933333pt;}
.x1d_c00051{left:670.666667pt;}
.xa3_c00051{left:671.600000pt;}
.xac_c00051{left:675.066667pt;}
.x3e_c00051{left:676.800000pt;}
.xdf_c00051{left:678.666667pt;}
.x66_c00051{left:679.866667pt;}
.xe4_c00051{left:683.200000pt;}
.x34_c00051{left:684.933333pt;}
.xbd_c00051{left:687.066667pt;}
.x1e_c00051{left:688.533333pt;}
.x83_c00051{left:689.466667pt;}
.xa4_c00051{left:690.533333pt;}
.xd4_c00051{left:696.266667pt;}
.x73_c00051{left:697.866667pt;}
.x50_c00051{left:698.933333pt;}
.x9c_c00051{left:701.200000pt;}
.x67_c00051{left:703.866667pt;}
.xc5_c00051{left:706.266667pt;}
.xf_c00051{left:708.800000pt;}
.xa5_c00051{left:712.000000pt;}
.x2b_c00051{left:714.400000pt;}
.xca_c00051{left:715.333333pt;}
.x5a_c00051{left:717.066667pt;}
.x84_c00051{left:718.933333pt;}
.x35_c00051{left:720.133333pt;}
.xdd_c00051{left:723.333333pt;}
.xd5_c00051{left:725.333333pt;}
.x9d_c00051{left:727.733333pt;}
.x10_c00051{left:729.333333pt;}
.xbe_c00051{left:733.200000pt;}
.xf8_c00051{left:736.266667pt;}
.x46_c00051{left:739.200000pt;}
.x51_c00051{left:740.800000pt;}
.xcb_c00051{left:746.400000pt;}
.xe2_c00051{left:747.866667pt;}
.x68_c00051{left:751.600000pt;}
.xe0_c00051{left:756.400000pt;}
.xb9_c00051{left:757.733333pt;}
.x1f_c00051{left:758.933333pt;}
}





/* 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_c00052 {
    display:none;
  }
  .loading-indicator_c00052.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00052 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_c00052 { 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_c00052" -> "#page-container .classname_c00052")
 */
.pf_c00052 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00052 { /* 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_c00052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00052 { /* 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_c00052 { /* 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_c00052 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00052 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00052 {overflow:visible;}
  }
}
.c_c00052 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00052 { /* 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_c00052:after { /* webkit #35443 */
  content: '';
}
.t_c00052:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00052 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 */
}
.__c00052 { /* 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_c00052 { /* info for Javascript */
  display:none;
}
.l_c00052 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00052 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00052 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00052: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_c00052 {
    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_c00052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00052.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_c00052 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00052;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.000000;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;}
.m1e_c00052{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00052{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00052{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mda_c00052{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00052{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m47_c00052{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m50_c00052{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00052{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m23_c00052{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m12_c00052{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m90_c00052{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m10_c00052{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00052{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00052{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m51_c00052{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00052{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00052{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mab_c00052{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m52_c00052{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00052{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m94_c00052{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00052{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me0_c00052{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m27_c00052{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00052{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00052{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m97_c00052{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mad_c00052{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m38_c00052{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m45_c00052{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00052{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00052{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m71_c00052{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md5_c00052{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00052{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mac_c00052{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mae_c00052{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m57_c00052{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00052{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m44_c00052{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00052{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00052{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m78_c00052{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m95_c00052{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00052{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00052{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m61_c00052{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mce_c00052{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00052{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m24_c00052{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m63_c00052{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00052{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m53_c00052{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m40_c00052{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00052{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00052{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m89_c00052{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m86_c00052{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00052{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00052{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m46_c00052{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m76_c00052{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.maa_c00052{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m98_c00052{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m65_c00052{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00052{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me2_c00052{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00052{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mde_c00052{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md8_c00052{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md9_c00052{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00052{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00052{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00052{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m49_c00052{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00052{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m67_c00052{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m85_c00052{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m43_c00052{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00052{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00052{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m79_c00052{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00052{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m87_c00052{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m84_c00052{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m66_c00052{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m74_c00052{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m13_c00052{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00052{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00052{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00052{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m77_c00052{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m16_c00052{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m81_c00052{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00052{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00052{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00052{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00052{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00052{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m15_c00052{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md2_c00052{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00052{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00052{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m99_c00052{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00052{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.maf_c00052{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00052{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m34_c00052{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m41_c00052{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m19_c00052{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m82_c00052{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.md4_c00052{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00052{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00052{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00052{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m30_c00052{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m29_c00052{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00052{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m73_c00052{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m20_c00052{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00052{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00052{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00052{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00052{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m25_c00052{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00052{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00052{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me1_c00052{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m91_c00052{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m22_c00052{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00052{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m48_c00052{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m58_c00052{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m93_c00052{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m96_c00052{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00052{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m56_c00052{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m26_c00052{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m83_c00052{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m33_c00052{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m42_c00052{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m92_c00052{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m39_c00052{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00052{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00052{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m18_c00052{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m55_c00052{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m21_c00052{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00052{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00052{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m80_c00052{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00052{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m35_c00052{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00052{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00052{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mca_c00052{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00052{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m28_c00052{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00052{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00052{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00052{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00052{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m64_c00052{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00052{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00052{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m70_c00052{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00052{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma_c00052{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00052{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m37_c00052{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m36_c00052{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00052{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00052{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00052{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00052{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8_c00052{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md0_c00052{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m14_c00052{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00052{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00052{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00052{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m69_c00052{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m72_c00052{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m17_c00052{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00052{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00052{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m68_c00052{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.md1_c00052{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00052{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00052{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m62_c00052{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00052{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00052{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m59_c00052{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00052{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00052{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mba_c00052{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m31_c00052{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00052{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00052{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5_c00052{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m88_c00052{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00052{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m54_c00052{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md3_c00052{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m9_c00052{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m60_c00052{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.mb_c00052{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md7_c00052{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m6_c00052{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00052{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00052{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m75_c00052{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.me_c00052{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00052{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m2_c00052{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mc_c00052{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00052{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.md6_c00052{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m32_c00052{transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);}
.m7_c00052{transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);}
.m11_c00052{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c00052{transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);}
.mf_c00052{transform:matrix(0.528500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528500,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls0_c00052{letter-spacing:0.000000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{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__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00052{word-spacing:-7.653359px;}
.ws2_c00052{word-spacing:-4.070618px;}
.ws6_c00052{word-spacing:0.000000px;}
.ws4_c00052{word-spacing:3.000000px;}
.ws5_c00052{word-spacing:8.194444px;}
.ws3_c00052{word-spacing:12.266476px;}
.ws0_c00052{word-spacing:31.412170px;}
.fc0_c00052{color:transparent;}
.fs6_c00052{font-size:24.000000px;}
.fs3_c00052{font-size:42.000000px;}
.fs5_c00052{font-size:54.000000px;}
.fs1_c00052{font-size:60.000000px;}
.fs4_c00052{font-size:66.000000px;}
.fs2_c00052{font-size:72.000000px;}
.fs0_c00052{font-size:78.000000px;}
.y0_c00052{bottom:0.000000px;}
.y35_c00052{bottom:188.250000px;}
.y34_c00052{bottom:206.250000px;}
.y33_c00052{bottom:224.250000px;}
.y32_c00052{bottom:242.250000px;}
.y31_c00052{bottom:256.350000px;}
.y30_c00052{bottom:277.500000px;}
.y2f_c00052{bottom:295.500000px;}
.y2e_c00052{bottom:313.050000px;}
.y8_c00052{bottom:316.050000px;}
.y2d_c00052{bottom:330.750000px;}
.y2c_c00052{bottom:348.450000px;}
.y2b_c00052{bottom:379.050000px;}
.y2a_c00052{bottom:397.050000px;}
.y7_c00052{bottom:405.000000px;}
.y29_c00052{bottom:414.750000px;}
.y28_c00052{bottom:432.750000px;}
.y27_c00052{bottom:462.300000px;}
.y26_c00052{bottom:481.800000px;}
.y25_c00052{bottom:499.500000px;}
.y24_c00052{bottom:517.200000px;}
.y23_c00052{bottom:534.900000px;}
.y22_c00052{bottom:569.100000px;}
.y20_c00052{bottom:588.150000px;}
.y6_c00052{bottom:604.500000px;}
.y1f_c00052{bottom:606.150000px;}
.y1e_c00052{bottom:624.150000px;}
.y1d_c00052{bottom:641.850000px;}
.y1c_c00052{bottom:672.750000px;}
.y1b_c00052{bottom:690.450000px;}
.y5_c00052{bottom:698.100000px;}
.y1a_c00052{bottom:708.450000px;}
.y21_c00052{bottom:726.450000px;}
.y19_c00052{bottom:757.050000px;}
.y4_c00052{bottom:774.300000px;}
.y18_c00052{bottom:775.050000px;}
.y17_c00052{bottom:792.750000px;}
.y16_c00052{bottom:823.650000px;}
.y15_c00052{bottom:841.650000px;}
.y3_c00052{bottom:849.900000px;}
.y14_c00052{bottom:859.350000px;}
.y13_c00052{bottom:877.350000px;}
.y12_c00052{bottom:917.250000px;}
.y11_c00052{bottom:934.950000px;}
.y10_c00052{bottom:970.200000px;}
.yf_c00052{bottom:988.200000px;}
.ye_c00052{bottom:1005.900000px;}
.yd_c00052{bottom:1023.900000px;}
.yc_c00052{bottom:1041.900000px;}
.yb_c00052{bottom:1077.150000px;}
.y2_c00052{bottom:1094.100000px;}
.ya_c00052{bottom:1095.150000px;}
.y9_c00052{bottom:1113.150000px;}
.y1_c00052{bottom:1139.400000px;}
.h8_c00052{height:24.000000px;}
.h5_c00052{height:42.000000px;}
.h7_c00052{height:54.000000px;}
.h3_c00052{height:60.000000px;}
.h6_c00052{height:66.000000px;}
.h4_c00052{height:72.000000px;}
.h2_c00052{height:78.000000px;}
.h1_c00052{height:1273.500000px;}
.h0_c00052{height:1273.679993px;}
.w0_c00052{width:948.600036px;}
.w1_c00052{width:948.750000px;}
.x0_c00052{left:0.000000px;}
.xb_c00052{left:63.750000px;}
.xd_c00052{left:65.550000px;}
.x9_c00052{left:69.150000px;}
.x7_c00052{left:70.500000px;}
.x5_c00052{left:71.700000px;}
.x3_c00052{left:75.900000px;}
.xc_c00052{left:104.100000px;}
.xa_c00052{left:107.250000px;}
.x8_c00052{left:109.800000px;}
.x6_c00052{left:111.300000px;}
.x4_c00052{left:114.450000px;}
.xba_c00052{left:179.250000px;}
.x32_c00052{left:181.500000px;}
.x3f_c00052{left:182.550000px;}
.xe_c00052{left:185.700000px;}
.xf6_c00052{left:192.900000px;}
.xc4_c00052{left:193.950000px;}
.x66_c00052{left:195.300000px;}
.xa7_c00052{left:196.500000px;}
.xe5_c00052{left:198.000000px;}
.xf_c00052{left:199.050000px;}
.x56_c00052{left:204.450000px;}
.x33_c00052{left:211.350000px;}
.xd6_c00052{left:213.150000px;}
.xe2_c00052{left:214.200000px;}
.x71_c00052{left:215.250000px;}
.x7b_c00052{left:216.450000px;}
.x1d_c00052{left:218.100000px;}
.x2e_c00052{left:220.350000px;}
.xf7_c00052{left:223.500000px;}
.xc5_c00052{left:227.100000px;}
.xe3_c00052{left:228.300000px;}
.xd2_c00052{left:232.050000px;}
.xc0_c00052{left:236.550000px;}
.x4a_c00052{left:237.600000px;}
.x1e_c00052{left:241.200000px;}
.x100_c00052{left:244.650000px;}
.x60_c00052{left:247.050000px;}
.x57_c00052{left:249.150000px;}
.x4b_c00052{left:250.200000px;}
.xd7_c00052{left:251.250000px;}
.xf2_c00052{left:252.300000px;}
.xb0_c00052{left:253.800000px;}
.x34_c00052{left:256.350000px;}
.x10_c00052{left:257.400000px;}
.xe4_c00052{left:258.900000px;}
.x40_c00052{left:266.400000px;}
.x11_c00052{left:267.450000px;}
.x90_c00052{left:268.950000px;}
.xd8_c00052{left:270.750000px;}
.x9c_c00052{left:272.550000px;}
.x58_c00052{left:273.600000px;}
.xa2_c00052{left:276.300000px;}
.x29_c00052{left:279.000000px;}
.xdc_c00052{left:281.700000px;}
.x4c_c00052{left:282.900000px;}
.x9d_c00052{left:284.100000px;}
.xbb_c00052{left:287.250000px;}
.x7c_c00052{left:288.450000px;}
.xf8_c00052{left:290.400000px;}
.x59_c00052{left:293.700000px;}
.xa8_c00052{left:294.750000px;}
.x99_c00052{left:295.800000px;}
.x83_c00052{left:297.600000px;}
.x2f_c00052{left:301.050000px;}
.x91_c00052{left:302.100000px;}
.x1f_c00052{left:303.900000px;}
.x41_c00052{left:306.750000px;}
.xc1_c00052{left:307.800000px;}
.xeb_c00052{left:309.000000px;}
.x92_c00052{left:311.400000px;}
.x35_c00052{left:312.450000px;}
.x1_c00052{left:313.950000px;}
.x67_c00052{left:315.900000px;}
.xca_c00052{left:317.100000px;}
.x61_c00052{left:320.550000px;}
.x4d_c00052{left:324.300000px;}
.x9a_c00052{left:328.200000px;}
.x12_c00052{left:332.550000px;}
.x5a_c00052{left:333.600000px;}
.xb7_c00052{left:336.300000px;}
.x4e_c00052{left:337.950000px;}
.x36_c00052{left:340.950000px;}
.x5b_c00052{left:344.400000px;}
.x62_c00052{left:349.650000px;}
.xa3_c00052{left:350.850000px;}
.xcb_c00052{left:355.650000px;}
.x72_c00052{left:357.150000px;}
.x69_c00052{left:361.500000px;}
.xd9_c00052{left:363.300000px;}
.xec_c00052{left:364.500000px;}
.x37_c00052{left:365.850000px;}
.xe6_c00052{left:367.200000px;}
.x42_c00052{left:369.150000px;}
.x2a_c00052{left:371.550000px;}
.x13_c00052{left:374.250000px;}
.x5c_c00052{left:379.350000px;}
.x20_c00052{left:380.550000px;}
.x9e_c00052{left:382.800000px;}
.x93_c00052{left:387.000000px;}
.x84_c00052{left:388.800000px;}
.x5d_c00052{left:394.050000px;}
.x68_c00052{left:396.600000px;}
.xa5_c00052{left:398.400000px;}
.xb8_c00052{left:399.600000px;}
.x21_c00052{left:403.200000px;}
.xa9_c00052{left:405.750000px;}
.x4f_c00052{left:409.950000px;}
.x73_c00052{left:411.900000px;}
.xdd_c00052{left:414.900000px;}
.x43_c00052{left:418.800000px;}
.xa6_c00052{left:420.300000px;}
.x2b_c00052{left:422.250000px;}
.xcc_c00052{left:424.350000px;}
.xd4_c00052{left:425.850000px;}
.xf3_c00052{left:427.350000px;}
.x38_c00052{left:428.850000px;}
.xb1_c00052{left:430.200000px;}
.x85_c00052{left:431.250000px;}
.x5e_c00052{left:435.150000px;}
.xd3_c00052{left:439.800000px;}
.x2c_c00052{left:441.000000px;}
.x50_c00052{left:443.100000px;}
.xc6_c00052{left:444.750000px;}
.x14_c00052{left:447.750000px;}
.x22_c00052{left:450.750000px;}
.x74_c00052{left:452.550000px;}
.xf9_c00052{left:455.850000px;}
.x5f_c00052{left:457.800000px;}
.x6a_c00052{left:460.050000px;}
.xbc_c00052{left:461.100000px;}
.x23_c00052{left:464.400000px;}
.x63_c00052{left:465.600000px;}
.x15_c00052{left:466.800000px;}
.xaa_c00052{left:469.050000px;}
.xe9_c00052{left:470.400000px;}
.xde_c00052{left:473.550000px;}
.xb2_c00052{left:475.500000px;}
.x8a_c00052{left:479.100000px;}
.x7d_c00052{left:481.650000px;}
.x86_c00052{left:482.700000px;}
.x39_c00052{left:483.900000px;}
.x24_c00052{left:485.250000px;}
.x64_c00052{left:487.200000px;}
.x16_c00052{left:488.400000px;}
.x51_c00052{left:490.950000px;}
.x9b_c00052{left:493.350000px;}
.x94_c00052{left:496.050000px;}
.xed_c00052{left:497.400000px;}
.xae_c00052{left:499.050000px;}
.x87_c00052{left:503.550000px;}
.x95_c00052{left:505.050000px;}
.x3a_c00052{left:508.350000px;}
.x2d_c00052{left:511.500000px;}
.x75_c00052{left:513.450000px;}
.x9f_c00052{left:515.550000px;}
.x7e_c00052{left:519.750000px;}
.xb3_c00052{left:522.300000px;}
.x44_c00052{left:523.650000px;}
.xda_c00052{left:526.500000px;}
.xa0_c00052{left:528.450000px;}
.xce_c00052{left:532.350000px;}
.x6b_c00052{left:533.550000px;}
.xc2_c00052{left:534.600000px;}
.xfc_c00052{left:535.800000px;}
.x17_c00052{left:541.350000px;}
.xee_c00052{left:545.250000px;}
.x45_c00052{left:547.800000px;}
.xdf_c00052{left:549.150000px;}
.x88_c00052{left:550.650000px;}
.xb9_c00052{left:553.650000px;}
.xbd_c00052{left:555.000000px;}
.x8b_c00052{left:556.200000px;}
.xef_c00052{left:557.550000px;}
.x65_c00052{left:559.200000px;}
.xea_c00052{left:560.400000px;}
.x25_c00052{left:562.350000px;}
.x8c_c00052{left:565.200000px;}
.xdb_c00052{left:566.400000px;}
.xf4_c00052{left:567.750000px;}
.x6c_c00052{left:568.800000px;}
.xfd_c00052{left:571.050000px;}
.x30_c00052{left:572.700000px;}
.xcf_c00052{left:575.550000px;}
.x96_c00052{left:578.850000px;}
.xab_c00052{left:580.350000px;}
.x76_c00052{left:581.850000px;}
.x89_c00052{left:584.550000px;}
.x3b_c00052{left:585.750000px;}
.x7f_c00052{left:589.650000px;}
.x6d_c00052{left:592.950000px;}
.x8d_c00052{left:596.100000px;}
.x26_c00052{left:599.400000px;}
.x46_c00052{left:606.450000px;}
.x97_c00052{left:608.400000px;}
.x52_c00052{left:610.050000px;}
.xf0_c00052{left:611.550000px;}
.x80_c00052{left:613.050000px;}
.x18_c00052{left:614.400000px;}
.xb4_c00052{left:617.700000px;}
.x27_c00052{left:620.700000px;}
.x19_c00052{left:623.100000px;}
.x77_c00052{left:627.900000px;}
.xc3_c00052{left:628.950000px;}
.x53_c00052{left:630.600000px;}
.xe0_c00052{left:632.250000px;}
.x6e_c00052{left:634.050000px;}
.xb5_c00052{left:637.200000px;}
.xc7_c00052{left:643.200000px;}
.xd0_c00052{left:645.450000px;}
.xbe_c00052{left:648.900000px;}
.x3c_c00052{left:650.250000px;}
.xfa_c00052{left:651.600000px;}
.xe7_c00052{left:653.700000px;}
.x47_c00052{left:654.750000px;}
.xfe_c00052{left:656.400000px;}
.x1a_c00052{left:658.800000px;}
.xa4_c00052{left:660.150000px;}
.xa1_c00052{left:662.250000px;}
.xcd_c00052{left:664.500000px;}
.xc8_c00052{left:665.850000px;}
.x6f_c00052{left:668.550000px;}
.x78_c00052{left:677.550000px;}
.x8e_c00052{left:678.600000px;}
.xd5_c00052{left:680.100000px;}
.xff_c00052{left:682.650000px;}
.xf1_c00052{left:685.050000px;}
.xd1_c00052{left:688.350000px;}
.x28_c00052{left:691.200000px;}
.x81_c00052{left:692.550000px;}
.x48_c00052{left:694.350000px;}
.x54_c00052{left:700.050000px;}
.xe8_c00052{left:701.550000px;}
.xac_c00052{left:702.750000px;}
.x70_c00052{left:704.850000px;}
.xfb_c00052{left:705.900000px;}
.x8f_c00052{left:707.100000px;}
.x79_c00052{left:709.200000px;}
.xb6_c00052{left:712.050000px;}
.x31_c00052{left:715.350000px;}
.x1b_c00052{left:720.750000px;}
.x3d_c00052{left:723.300000px;}
.x82_c00052{left:726.450000px;}
.x55_c00052{left:729.600000px;}
.xf5_c00052{left:731.100000px;}
.xe1_c00052{left:732.300000px;}
.xc9_c00052{left:733.950000px;}
.x98_c00052{left:735.450000px;}
.xbf_c00052{left:739.950000px;}
.x49_c00052{left:742.200000px;}
.xaf_c00052{left:747.000000px;}
.x2_c00052{left:748.050000px;}
.x7a_c00052{left:749.550000px;}
.x3e_c00052{left:753.150000px;}
.xad_c00052{left:759.600000px;}
.x1c_c00052{left:773.250000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ws1_c00052{word-spacing:-6.802986pt;}
.ws2_c00052{word-spacing:-3.618327pt;}
.ws6_c00052{word-spacing:0.000000pt;}
.ws4_c00052{word-spacing:2.666667pt;}
.ws5_c00052{word-spacing:7.283951pt;}
.ws3_c00052{word-spacing:10.903534pt;}
.ws0_c00052{word-spacing:27.921929pt;}
.fs6_c00052{font-size:21.333333pt;}
.fs3_c00052{font-size:37.333333pt;}
.fs5_c00052{font-size:48.000000pt;}
.fs1_c00052{font-size:53.333333pt;}
.fs4_c00052{font-size:58.666667pt;}
.fs2_c00052{font-size:64.000000pt;}
.fs0_c00052{font-size:69.333333pt;}
.y0_c00052{bottom:0.000000pt;}
.y35_c00052{bottom:167.333333pt;}
.y34_c00052{bottom:183.333333pt;}
.y33_c00052{bottom:199.333333pt;}
.y32_c00052{bottom:215.333333pt;}
.y31_c00052{bottom:227.866667pt;}
.y30_c00052{bottom:246.666667pt;}
.y2f_c00052{bottom:262.666667pt;}
.y2e_c00052{bottom:278.266667pt;}
.y8_c00052{bottom:280.933333pt;}
.y2d_c00052{bottom:294.000000pt;}
.y2c_c00052{bottom:309.733333pt;}
.y2b_c00052{bottom:336.933333pt;}
.y2a_c00052{bottom:352.933333pt;}
.y7_c00052{bottom:360.000000pt;}
.y29_c00052{bottom:368.666667pt;}
.y28_c00052{bottom:384.666667pt;}
.y27_c00052{bottom:410.933333pt;}
.y26_c00052{bottom:428.266667pt;}
.y25_c00052{bottom:444.000000pt;}
.y24_c00052{bottom:459.733333pt;}
.y23_c00052{bottom:475.466667pt;}
.y22_c00052{bottom:505.866667pt;}
.y20_c00052{bottom:522.800000pt;}
.y6_c00052{bottom:537.333333pt;}
.y1f_c00052{bottom:538.800000pt;}
.y1e_c00052{bottom:554.800000pt;}
.y1d_c00052{bottom:570.533333pt;}
.y1c_c00052{bottom:598.000000pt;}
.y1b_c00052{bottom:613.733333pt;}
.y5_c00052{bottom:620.533333pt;}
.y1a_c00052{bottom:629.733333pt;}
.y21_c00052{bottom:645.733333pt;}
.y19_c00052{bottom:672.933333pt;}
.y4_c00052{bottom:688.266667pt;}
.y18_c00052{bottom:688.933333pt;}
.y17_c00052{bottom:704.666667pt;}
.y16_c00052{bottom:732.133333pt;}
.y15_c00052{bottom:748.133333pt;}
.y3_c00052{bottom:755.466667pt;}
.y14_c00052{bottom:763.866667pt;}
.y13_c00052{bottom:779.866667pt;}
.y12_c00052{bottom:815.333333pt;}
.y11_c00052{bottom:831.066667pt;}
.y10_c00052{bottom:862.400000pt;}
.yf_c00052{bottom:878.400000pt;}
.ye_c00052{bottom:894.133333pt;}
.yd_c00052{bottom:910.133333pt;}
.yc_c00052{bottom:926.133333pt;}
.yb_c00052{bottom:957.466667pt;}
.y2_c00052{bottom:972.533333pt;}
.ya_c00052{bottom:973.466667pt;}
.y9_c00052{bottom:989.466667pt;}
.y1_c00052{bottom:1012.800000pt;}
.h8_c00052{height:21.333333pt;}
.h5_c00052{height:37.333333pt;}
.h7_c00052{height:48.000000pt;}
.h3_c00052{height:53.333333pt;}
.h6_c00052{height:58.666667pt;}
.h4_c00052{height:64.000000pt;}
.h2_c00052{height:69.333333pt;}
.h1_c00052{height:1132.000000pt;}
.h0_c00052{height:1132.159993pt;}
.w0_c00052{width:843.200032pt;}
.w1_c00052{width:843.333333pt;}
.x0_c00052{left:0.000000pt;}
.xb_c00052{left:56.666667pt;}
.xd_c00052{left:58.266667pt;}
.x9_c00052{left:61.466667pt;}
.x7_c00052{left:62.666667pt;}
.x5_c00052{left:63.733333pt;}
.x3_c00052{left:67.466667pt;}
.xc_c00052{left:92.533333pt;}
.xa_c00052{left:95.333333pt;}
.x8_c00052{left:97.600000pt;}
.x6_c00052{left:98.933333pt;}
.x4_c00052{left:101.733333pt;}
.xba_c00052{left:159.333333pt;}
.x32_c00052{left:161.333333pt;}
.x3f_c00052{left:162.266667pt;}
.xe_c00052{left:165.066667pt;}
.xf6_c00052{left:171.466667pt;}
.xc4_c00052{left:172.400000pt;}
.x66_c00052{left:173.600000pt;}
.xa7_c00052{left:174.666667pt;}
.xe5_c00052{left:176.000000pt;}
.xf_c00052{left:176.933333pt;}
.x56_c00052{left:181.733333pt;}
.x33_c00052{left:187.866667pt;}
.xd6_c00052{left:189.466667pt;}
.xe2_c00052{left:190.400000pt;}
.x71_c00052{left:191.333333pt;}
.x7b_c00052{left:192.400000pt;}
.x1d_c00052{left:193.866667pt;}
.x2e_c00052{left:195.866667pt;}
.xf7_c00052{left:198.666667pt;}
.xc5_c00052{left:201.866667pt;}
.xe3_c00052{left:202.933333pt;}
.xd2_c00052{left:206.266667pt;}
.xc0_c00052{left:210.266667pt;}
.x4a_c00052{left:211.200000pt;}
.x1e_c00052{left:214.400000pt;}
.x100_c00052{left:217.466667pt;}
.x60_c00052{left:219.600000pt;}
.x57_c00052{left:221.466667pt;}
.x4b_c00052{left:222.400000pt;}
.xd7_c00052{left:223.333333pt;}
.xf2_c00052{left:224.266667pt;}
.xb0_c00052{left:225.600000pt;}
.x34_c00052{left:227.866667pt;}
.x10_c00052{left:228.800000pt;}
.xe4_c00052{left:230.133333pt;}
.x40_c00052{left:236.800000pt;}
.x11_c00052{left:237.733333pt;}
.x90_c00052{left:239.066667pt;}
.xd8_c00052{left:240.666667pt;}
.x9c_c00052{left:242.266667pt;}
.x58_c00052{left:243.200000pt;}
.xa2_c00052{left:245.600000pt;}
.x29_c00052{left:248.000000pt;}
.xdc_c00052{left:250.400000pt;}
.x4c_c00052{left:251.466667pt;}
.x9d_c00052{left:252.533333pt;}
.xbb_c00052{left:255.333333pt;}
.x7c_c00052{left:256.400000pt;}
.xf8_c00052{left:258.133333pt;}
.x59_c00052{left:261.066667pt;}
.xa8_c00052{left:262.000000pt;}
.x99_c00052{left:262.933333pt;}
.x83_c00052{left:264.533333pt;}
.x2f_c00052{left:267.600000pt;}
.x91_c00052{left:268.533333pt;}
.x1f_c00052{left:270.133333pt;}
.x41_c00052{left:272.666667pt;}
.xc1_c00052{left:273.600000pt;}
.xeb_c00052{left:274.666667pt;}
.x92_c00052{left:276.800000pt;}
.x35_c00052{left:277.733333pt;}
.x1_c00052{left:279.066667pt;}
.x67_c00052{left:280.800000pt;}
.xca_c00052{left:281.866667pt;}
.x61_c00052{left:284.933333pt;}
.x4d_c00052{left:288.266667pt;}
.x9a_c00052{left:291.733333pt;}
.x12_c00052{left:295.600000pt;}
.x5a_c00052{left:296.533333pt;}
.xb7_c00052{left:298.933333pt;}
.x4e_c00052{left:300.400000pt;}
.x36_c00052{left:303.066667pt;}
.x5b_c00052{left:306.133333pt;}
.x62_c00052{left:310.800000pt;}
.xa3_c00052{left:311.866667pt;}
.xcb_c00052{left:316.133333pt;}
.x72_c00052{left:317.466667pt;}
.x69_c00052{left:321.333333pt;}
.xd9_c00052{left:322.933333pt;}
.xec_c00052{left:324.000000pt;}
.x37_c00052{left:325.200000pt;}
.xe6_c00052{left:326.400000pt;}
.x42_c00052{left:328.133333pt;}
.x2a_c00052{left:330.266667pt;}
.x13_c00052{left:332.666667pt;}
.x5c_c00052{left:337.200000pt;}
.x20_c00052{left:338.266667pt;}
.x9e_c00052{left:340.266667pt;}
.x93_c00052{left:344.000000pt;}
.x84_c00052{left:345.600000pt;}
.x5d_c00052{left:350.266667pt;}
.x68_c00052{left:352.533333pt;}
.xa5_c00052{left:354.133333pt;}
.xb8_c00052{left:355.200000pt;}
.x21_c00052{left:358.400000pt;}
.xa9_c00052{left:360.666667pt;}
.x4f_c00052{left:364.400000pt;}
.x73_c00052{left:366.133333pt;}
.xdd_c00052{left:368.800000pt;}
.x43_c00052{left:372.266667pt;}
.xa6_c00052{left:373.600000pt;}
.x2b_c00052{left:375.333333pt;}
.xcc_c00052{left:377.200000pt;}
.xd4_c00052{left:378.533333pt;}
.xf3_c00052{left:379.866667pt;}
.x38_c00052{left:381.200000pt;}
.xb1_c00052{left:382.400000pt;}
.x85_c00052{left:383.333333pt;}
.x5e_c00052{left:386.800000pt;}
.xd3_c00052{left:390.933333pt;}
.x2c_c00052{left:392.000000pt;}
.x50_c00052{left:393.866667pt;}
.xc6_c00052{left:395.333333pt;}
.x14_c00052{left:398.000000pt;}
.x22_c00052{left:400.666667pt;}
.x74_c00052{left:402.266667pt;}
.xf9_c00052{left:405.200000pt;}
.x5f_c00052{left:406.933333pt;}
.x6a_c00052{left:408.933333pt;}
.xbc_c00052{left:409.866667pt;}
.x23_c00052{left:412.800000pt;}
.x63_c00052{left:413.866667pt;}
.x15_c00052{left:414.933333pt;}
.xaa_c00052{left:416.933333pt;}
.xe9_c00052{left:418.133333pt;}
.xde_c00052{left:420.933333pt;}
.xb2_c00052{left:422.666667pt;}
.x8a_c00052{left:425.866667pt;}
.x7d_c00052{left:428.133333pt;}
.x86_c00052{left:429.066667pt;}
.x39_c00052{left:430.133333pt;}
.x24_c00052{left:431.333333pt;}
.x64_c00052{left:433.066667pt;}
.x16_c00052{left:434.133333pt;}
.x51_c00052{left:436.400000pt;}
.x9b_c00052{left:438.533333pt;}
.x94_c00052{left:440.933333pt;}
.xed_c00052{left:442.133333pt;}
.xae_c00052{left:443.600000pt;}
.x87_c00052{left:447.600000pt;}
.x95_c00052{left:448.933333pt;}
.x3a_c00052{left:451.866667pt;}
.x2d_c00052{left:454.666667pt;}
.x75_c00052{left:456.400000pt;}
.x9f_c00052{left:458.266667pt;}
.x7e_c00052{left:462.000000pt;}
.xb3_c00052{left:464.266667pt;}
.x44_c00052{left:465.466667pt;}
.xda_c00052{left:468.000000pt;}
.xa0_c00052{left:469.733333pt;}
.xce_c00052{left:473.200000pt;}
.x6b_c00052{left:474.266667pt;}
.xc2_c00052{left:475.200000pt;}
.xfc_c00052{left:476.266667pt;}
.x17_c00052{left:481.200000pt;}
.xee_c00052{left:484.666667pt;}
.x45_c00052{left:486.933333pt;}
.xdf_c00052{left:488.133333pt;}
.x88_c00052{left:489.466667pt;}
.xb9_c00052{left:492.133333pt;}
.xbd_c00052{left:493.333333pt;}
.x8b_c00052{left:494.400000pt;}
.xef_c00052{left:495.600000pt;}
.x65_c00052{left:497.066667pt;}
.xea_c00052{left:498.133333pt;}
.x25_c00052{left:499.866667pt;}
.x8c_c00052{left:502.400000pt;}
.xdb_c00052{left:503.466667pt;}
.xf4_c00052{left:504.666667pt;}
.x6c_c00052{left:505.600000pt;}
.xfd_c00052{left:507.600000pt;}
.x30_c00052{left:509.066667pt;}
.xcf_c00052{left:511.600000pt;}
.x96_c00052{left:514.533333pt;}
.xab_c00052{left:515.866667pt;}
.x76_c00052{left:517.200000pt;}
.x89_c00052{left:519.600000pt;}
.x3b_c00052{left:520.666667pt;}
.x7f_c00052{left:524.133333pt;}
.x6d_c00052{left:527.066667pt;}
.x8d_c00052{left:529.866667pt;}
.x26_c00052{left:532.800000pt;}
.x46_c00052{left:539.066667pt;}
.x97_c00052{left:540.800000pt;}
.x52_c00052{left:542.266667pt;}
.xf0_c00052{left:543.600000pt;}
.x80_c00052{left:544.933333pt;}
.x18_c00052{left:546.133333pt;}
.xb4_c00052{left:549.066667pt;}
.x27_c00052{left:551.733333pt;}
.x19_c00052{left:553.866667pt;}
.x77_c00052{left:558.133333pt;}
.xc3_c00052{left:559.066667pt;}
.x53_c00052{left:560.533333pt;}
.xe0_c00052{left:562.000000pt;}
.x6e_c00052{left:563.600000pt;}
.xb5_c00052{left:566.400000pt;}
.xc7_c00052{left:571.733333pt;}
.xd0_c00052{left:573.733333pt;}
.xbe_c00052{left:576.800000pt;}
.x3c_c00052{left:578.000000pt;}
.xfa_c00052{left:579.200000pt;}
.xe7_c00052{left:581.066667pt;}
.x47_c00052{left:582.000000pt;}
.xfe_c00052{left:583.466667pt;}
.x1a_c00052{left:585.600000pt;}
.xa4_c00052{left:586.800000pt;}
.xa1_c00052{left:588.666667pt;}
.xcd_c00052{left:590.666667pt;}
.xc8_c00052{left:591.866667pt;}
.x6f_c00052{left:594.266667pt;}
.x78_c00052{left:602.266667pt;}
.x8e_c00052{left:603.200000pt;}
.xd5_c00052{left:604.533333pt;}
.xff_c00052{left:606.800000pt;}
.xf1_c00052{left:608.933333pt;}
.xd1_c00052{left:611.866667pt;}
.x28_c00052{left:614.400000pt;}
.x81_c00052{left:615.600000pt;}
.x48_c00052{left:617.200000pt;}
.x54_c00052{left:622.266667pt;}
.xe8_c00052{left:623.600000pt;}
.xac_c00052{left:624.666667pt;}
.x70_c00052{left:626.533333pt;}
.xfb_c00052{left:627.466667pt;}
.x8f_c00052{left:628.533333pt;}
.x79_c00052{left:630.400000pt;}
.xb6_c00052{left:632.933333pt;}
.x31_c00052{left:635.866667pt;}
.x1b_c00052{left:640.666667pt;}
.x3d_c00052{left:642.933333pt;}
.x82_c00052{left:645.733333pt;}
.x55_c00052{left:648.533333pt;}
.xf5_c00052{left:649.866667pt;}
.xe1_c00052{left:650.933333pt;}
.xc9_c00052{left:652.400000pt;}
.x98_c00052{left:653.733333pt;}
.xbf_c00052{left:657.733333pt;}
.x49_c00052{left:659.733333pt;}
.xaf_c00052{left:664.000000pt;}
.x2_c00052{left:664.933333pt;}
.x7a_c00052{left:666.266667pt;}
.x3e_c00052{left:669.466667pt;}
.xad_c00052{left:675.200000pt;}
.x1c_c00052{left:687.333333pt;}
}





/* 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_c00053 {
    display:none;
  }
  .loading-indicator_c00053.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00053 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_c00053 { 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_c00053" -> "#page-container .classname_c00053")
 */
.pf_c00053 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00053 { /* 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_c00053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00053 { /* 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_c00053 { /* 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_c00053 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00053 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00053 {overflow:visible;}
  }
}
.c_c00053 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00053 { /* 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_c00053:after { /* webkit #35443 */
  content: '';
}
.t_c00053:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00053 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 */
}
.__c00053 { /* 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_c00053 { /* info for Javascript */
  display:none;
}
.l_c00053 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00053 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00053 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00053: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_c00053 {
    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_c00053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00053.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_c00053 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00053;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.000000;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;}
.m92_c00053{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00053{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m91_c00053{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m68_c00053{transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00053{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00053{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m76_c00053{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m21_c00053{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m70_c00053{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mf_c00053{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m60_c00053{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m72_c00053{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m7_c00053{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00053{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00053{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00053{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00053{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00053{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md5_c00053{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m24_c00053{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m29_c00053{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00053{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00053{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00053{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m75_c00053{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00053{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m73_c00053{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00053{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00053{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00053{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00053{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00053{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m84_c00053{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00053{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00053{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00053{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m55_c00053{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00053{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m28_c00053{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00053{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00053{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00053{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m40_c00053{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00053{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00053{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00053{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m71_c00053{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00053{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mac_c00053{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mca_c00053{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m53_c00053{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m79_c00053{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m81_c00053{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00053{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.maf_c00053{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m85_c00053{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m39_c00053{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m38_c00053{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md0_c00053{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00053{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00053{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00053{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00053{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8_c00053{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m62_c00053{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mad_c00053{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00053{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00053{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00053{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m45_c00053{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00053{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m78_c00053{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m20_c00053{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m4_c00053{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m74_c00053{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00053{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00053{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m13_c00053{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00053{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00053{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00053{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m32_c00053{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m97_c00053{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m44_c00053{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m67_c00053{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00053{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m30_c00053{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00053{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m31_c00053{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00053{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m94_c00053{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mba_c00053{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m64_c00053{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m48_c00053{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00053{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00053{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m59_c00053{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00053{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00053{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00053{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m25_c00053{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00053{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00053{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md6_c00053{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00053{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00053{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00053{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00053{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mce_c00053{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m10_c00053{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00053{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m86_c00053{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.md7_c00053{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00053{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma_c00053{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00053{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m96_c00053{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m82_c00053{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m61_c00053{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m27_c00053{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mab_c00053{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00053{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00053{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00053{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md4_c00053{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m58_c00053{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00053{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00053{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m69_c00053{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m26_c00053{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m14_c00053{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md2_c00053{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m42_c00053{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m17_c00053{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb_c00053{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md1_c00053{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m35_c00053{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m90_c00053{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md9_c00053{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m52_c00053{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m77_c00053{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m41_c00053{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00053{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m51_c00053{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m99_c00053{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m63_c00053{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m46_c00053{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m56_c00053{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m19_c00053{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00053{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m98_c00053{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m43_c00053{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00053{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00053{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00053{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00053{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mae_c00053{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m18_c00053{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00053{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00053{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m87_c00053{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m11_c00053{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00053{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mda_c00053{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.maa_c00053{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00053{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00053{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00053{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m23_c00053{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00053{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m89_c00053{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m83_c00053{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m95_c00053{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6_c00053{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m12_c00053{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00053{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m49_c00053{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m65_c00053{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9_c00053{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m80_c00053{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m33_c00053{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc_c00053{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me_c00053{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00053{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md3_c00053{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md8_c00053{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m15_c00053{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00053{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00053{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00053{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m54_c00053{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00053{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md_c00053{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m16_c00053{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5_c00053{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00053{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00053{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m34_c00053{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00053{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00053{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m66_c00053{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00053{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mde_c00053{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m36_c00053{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00053{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00053{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00053{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m57_c00053{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m37_c00053{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00053{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00053{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00053{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m93_c00053{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00053{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00053{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00053{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m88_c00053{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m47_c00053{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m2_c00053{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m50_c00053{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls0_c00053{letter-spacing:0.000000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{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__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00053{word-spacing:-7.050955px;}
.ws3_c00053{word-spacing:-1.411339px;}
.ws0_c00053{word-spacing:-0.312500px;}
.ws5_c00053{word-spacing:0.000000px;}
.ws4_c00053{word-spacing:23.189189px;}
.ws1_c00053{word-spacing:813.750000px;}
.fc0_c00053{color:transparent;}
.fs3_c00053{font-size:36.000000px;}
.fs6_c00053{font-size:54.000000px;}
.fs1_c00053{font-size:60.000000px;}
.fs2_c00053{font-size:66.000000px;}
.fs4_c00053{font-size:72.000000px;}
.fs0_c00053{font-size:78.000000px;}
.fs5_c00053{font-size:102.000000px;}
.y0_c00053{bottom:0.000000px;}
.y31_c00053{bottom:178.950000px;}
.y30_c00053{bottom:194.100000px;}
.y2f_c00053{bottom:208.500000px;}
.y2e_c00053{bottom:246.300000px;}
.y2d_c00053{bottom:264.300000px;}
.y2c_c00053{bottom:282.300000px;}
.y2a_c00053{bottom:308.550000px;}
.y29_c00053{bottom:326.550000px;}
.y28_c00053{bottom:344.550000px;}
.y2b_c00053{bottom:353.100000px;}
.y27_c00053{bottom:362.550000px;}
.y26_c00053{bottom:380.550000px;}
.y25_c00053{bottom:398.550000px;}
.y23_c00053{bottom:424.800000px;}
.y22_c00053{bottom:443.100000px;}
.y24_c00053{bottom:457.200000px;}
.y21_c00053{bottom:461.100000px;}
.y20_c00053{bottom:479.100000px;}
.y1f_c00053{bottom:514.050000px;}
.y1d_c00053{bottom:549.300000px;}
.y1c_c00053{bottom:585.000000px;}
.y1b_c00053{bottom:603.300000px;}
.y1e_c00053{bottom:611.700000px;}
.y1a_c00053{bottom:621.300000px;}
.y19_c00053{bottom:639.000000px;}
.y18_c00053{bottom:670.050000px;}
.y17_c00053{bottom:693.750000px;}
.y16_c00053{bottom:723.150000px;}
.y15_c00053{bottom:741.150000px;}
.y14_c00053{bottom:759.150000px;}
.y13_c00053{bottom:776.850000px;}
.y12_c00053{bottom:794.850000px;}
.y11_c00053{bottom:834.750000px;}
.y10_c00053{bottom:852.450000px;}
.yf_c00053{bottom:887.100000px;}
.ye_c00053{bottom:905.400000px;}
.yd_c00053{bottom:923.700000px;}
.yc_c00053{bottom:941.700000px;}
.yb_c00053{bottom:952.800000px;}
.ya_c00053{bottom:959.700000px;}
.y9_c00053{bottom:990.000000px;}
.y8_c00053{bottom:1008.000000px;}
.y6_c00053{bottom:1043.250000px;}
.y5_c00053{bottom:1061.250000px;}
.y4_c00053{bottom:1079.250000px;}
.y7_c00053{bottom:1085.100000px;}
.y3_c00053{bottom:1096.950000px;}
.y2_c00053{bottom:1115.250000px;}
.y1_c00053{bottom:1142.250000px;}
.h5_c00053{height:36.000000px;}
.h8_c00053{height:54.000000px;}
.h3_c00053{height:60.000000px;}
.h4_c00053{height:66.000000px;}
.h6_c00053{height:72.000000px;}
.h2_c00053{height:78.000000px;}
.h7_c00053{height:102.000000px;}
.h1_c00053{height:1269.750000px;}
.h0_c00053{height:1270.080048px;}
.w0_c00053{width:948.600036px;}
.w1_c00053{width:948.750000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:175.650000px;}
.xfd_c00053{left:177.600000px;}
.xc4_c00053{left:184.650000px;}
.x3c_c00053{left:187.200000px;}
.xf5_c00053{left:192.600000px;}
.x102_c00053{left:197.100000px;}
.xf1_c00053{left:203.550000px;}
.x93_c00053{left:205.050000px;}
.xed_c00053{left:215.700000px;}
.xc5_c00053{left:218.850000px;}
.x3d_c00053{left:220.650000px;}
.xf6_c00053{left:241.200000px;}
.x28_c00053{left:285.900000px;}
.xf7_c00053{left:297.750000px;}
.x7d_c00053{left:301.500000px;}
.xac_c00053{left:303.000000px;}
.x3_c00053{left:304.200000px;}
.xf8_c00053{left:306.750000px;}
.xde_c00053{left:316.800000px;}
.xe_c00053{left:320.250000px;}
.x1b_c00053{left:321.600000px;}
.xc6_c00053{left:322.950000px;}
.x75_c00053{left:324.000000px;}
.xf9_c00053{left:327.600000px;}
.x33_c00053{left:330.000000px;}
.xfe_c00053{left:333.900000px;}
.x9a_c00053{left:339.450000px;}
.x3e_c00053{left:342.750000px;}
.x76_c00053{left:345.600000px;}
.xa2_c00053{left:349.800000px;}
.x34_c00053{left:352.650000px;}
.x7e_c00053{left:354.450000px;}
.x5f_c00053{left:356.250000px;}
.x84_c00053{left:360.450000px;}
.x94_c00053{left:361.650000px;}
.x47_c00053{left:363.750000px;}
.xee_c00053{left:367.950000px;}
.xf_c00053{left:369.150000px;}
.x69_c00053{left:371.100000px;}
.x85_c00053{left:372.750000px;}
.x1c_c00053{left:374.850000px;}
.xd5_c00053{left:376.050000px;}
.x60_c00053{left:379.950000px;}
.xc3_c00053{left:381.000000px;}
.x5a_c00053{left:383.100000px;}
.x4_c00053{left:385.500000px;}
.x29_c00053{left:386.700000px;}
.x8b_c00053{left:395.100000px;}
.x59_c00053{left:396.450000px;}
.x9b_c00053{left:397.800000px;}
.x5_c00053{left:400.200000px;}
.xce_c00053{left:401.850000px;}
.xd1_c00053{left:404.700000px;}
.x73_c00053{left:406.650000px;}
.x3f_c00053{left:408.300000px;}
.x4d_c00053{left:410.100000px;}
.x1d_c00053{left:411.150000px;}
.xba_c00053{left:412.350000px;}
.x77_c00053{left:414.750000px;}
.xe9_c00053{left:416.100000px;}
.xa8_c00053{left:418.950000px;}
.xa3_c00053{left:420.450000px;}
.xaf_c00053{left:422.250000px;}
.x2_c00053{left:424.800000px;}
.x1e_c00053{left:428.850000px;}
.x74_c00053{left:430.350000px;}
.x2a_c00053{left:431.700000px;}
.x10_c00053{left:433.950000px;}
.xbb_c00053{left:435.000000px;}
.xd2_c00053{left:438.000000px;}
.xad_c00053{left:440.550000px;}
.x9c_c00053{left:443.850000px;}
.xb5_c00053{left:444.900000px;}
.xef_c00053{left:446.100000px;}
.x11_c00053{left:448.050000px;}
.xd6_c00053{left:449.850000px;}
.x35_c00053{left:453.450000px;}
.x40_c00053{left:456.600000px;}
.x78_c00053{left:458.250000px;}
.xd7_c00053{left:460.650000px;}
.x5b_c00053{left:464.100000px;}
.xa4_c00053{left:466.200000px;}
.x6_c00053{left:468.900000px;}
.x8c_c00053{left:471.750000px;}
.x86_c00053{left:474.300000px;}
.x1f_c00053{left:475.350000px;}
.x4e_c00053{left:479.550000px;}
.xea_c00053{left:481.200000px;}
.x48_c00053{left:482.250000px;}
.x61_c00053{left:483.300000px;}
.x36_c00053{left:484.800000px;}
.x6a_c00053{left:488.850000px;}
.x9d_c00053{left:490.350000px;}
.xca_c00053{left:491.700000px;}
.xb6_c00053{left:493.500000px;}
.xd8_c00053{left:495.150000px;}
.x2b_c00053{left:496.500000px;}
.x49_c00053{left:500.250000px;}
.xbc_c00053{left:501.300000px;}
.x37_c00053{left:503.550000px;}
.x7_c00053{left:509.550000px;}
.x2c_c00053{left:510.900000px;}
.x4a_c00053{left:512.850000px;}
.xbd_c00053{left:515.400000px;}
.xb0_c00053{left:516.600000px;}
.x87_c00053{left:519.000000px;}
.xa5_c00053{left:521.250000px;}
.x4f_c00053{left:522.450000px;}
.x12_c00053{left:524.400000px;}
.xa9_c00053{left:525.600000px;}
.x8d_c00053{left:528.300000px;}
.x6b_c00053{left:530.700000px;}
.x20_c00053{left:536.250000px;}
.xfa_c00053{left:538.200000px;}
.x8e_c00053{left:539.850000px;}
.xc7_c00053{left:541.050000px;}
.xd9_c00053{left:542.700000px;}
.x5c_c00053{left:547.200000px;}
.x62_c00053{left:549.150000px;}
.x4b_c00053{left:550.650000px;}
.x8f_c00053{left:553.200000px;}
.x7f_c00053{left:554.550000px;}
.xa6_c00053{left:555.750000px;}
.x88_c00053{left:556.800000px;}
.x95_c00053{left:558.150000px;}
.x50_c00053{left:559.500000px;}
.xb1_c00053{left:561.900000px;}
.x21_c00053{left:563.550000px;}
.x41_c00053{left:565.950000px;}
.x38_c00053{left:567.600000px;}
.x8_c00053{left:568.650000px;}
.xbe_c00053{left:570.150000px;}
.xe6_c00053{left:571.200000px;}
.x79_c00053{left:572.700000px;}
.x6c_c00053{left:574.650000px;}
.xcb_c00053{left:576.300000px;}
.x51_c00053{left:581.100000px;}
.x9_c00053{left:583.350000px;}
.xc8_c00053{left:584.850000px;}
.x13_c00053{left:587.700000px;}
.x39_c00053{left:590.250000px;}
.x52_c00053{left:595.200000px;}
.xf0_c00053{left:597.300000px;}
.x80_c00053{left:600.300000px;}
.xaa_c00053{left:605.550000px;}
.xda_c00053{left:606.750000px;}
.x14_c00053{left:609.600000px;}
.x7a_c00053{left:611.250000px;}
.xff_c00053{left:619.050000px;}
.x3a_c00053{left:620.100000px;}
.x96_c00053{left:621.450000px;}
.x2d_c00053{left:624.300000px;}
.xcf_c00053{left:627.750000px;}
.x100_c00053{left:628.800000px;}
.x4c_c00053{left:630.600000px;}
.x22_c00053{left:631.650000px;}
.x3b_c00053{left:634.500000px;}
.x63_c00053{left:637.050000px;}
.xe7_c00053{left:638.100000px;}
.xa_c00053{left:639.150000px;}
.x2e_c00053{left:645.150000px;}
.x15_c00053{left:647.100000px;}
.xe0_c00053{left:648.300000px;}
.xa7_c00053{left:649.650000px;}
.xdb_c00053{left:651.000000px;}
.x53_c00053{left:653.550000px;}
.x6d_c00053{left:657.750000px;}
.xe1_c00053{left:659.850000px;}
.x90_c00053{left:662.100000px;}
.xf2_c00053{left:664.650000px;}
.xbf_c00053{left:666.900000px;}
.x64_c00053{left:668.400000px;}
.x23_c00053{left:670.950000px;}
.x42_c00053{left:673.350000px;}
.xcc_c00053{left:680.250000px;}
.x81_c00053{left:682.050000px;}
.x7b_c00053{left:683.550000px;}
.xdf_c00053{left:685.800000px;}
.x16_c00053{left:687.450000px;}
.x97_c00053{left:689.100000px;}
.x9e_c00053{left:690.600000px;}
.x6e_c00053{left:692.700000px;}
.xab_c00053{left:693.750000px;}
.x2f_c00053{left:695.850000px;}
.xf3_c00053{left:697.050000px;}
.x54_c00053{left:701.400000px;}
.xfb_c00053{left:702.450000px;}
.x43_c00053{left:704.250000px;}
.xb_c00053{left:707.550000px;}
.xc0_c00053{left:709.050000px;}
.x82_c00053{left:710.100000px;}
.x5d_c00053{left:711.750000px;}
.x6f_c00053{left:717.600000px;}
.xd3_c00053{left:719.850000px;}
.xc1_c00053{left:721.350000px;}
.x17_c00053{left:724.950000px;}
.xb7_c00053{left:727.500000px;}
.x83_c00053{left:729.900000px;}
.x89_c00053{left:732.000000px;}
.x65_c00053{left:734.700000px;}
.x18_c00053{left:735.750000px;}
.xb2_c00053{left:738.150000px;}
.xf4_c00053{left:739.800000px;}
.x24_c00053{left:741.150000px;}
.xdc_c00053{left:742.800000px;}
.x44_c00053{left:744.600000px;}
.xc_c00053{left:747.900000px;}
.xe8_c00053{left:750.000000px;}
.x55_c00053{left:751.050000px;}
.xb8_c00053{left:752.700000px;}
.x25_c00053{left:754.500000px;}
.xd4_c00053{left:755.550000px;}
.xc9_c00053{left:759.900000px;}
.xeb_c00053{left:762.150000px;}
.xe2_c00053{left:763.650000px;}
.x56_c00053{left:766.500000px;}
.x30_c00053{left:768.150000px;}
.x91_c00053{left:769.500000px;}
.x45_c00053{left:770.550000px;}
.x9f_c00053{left:773.700000px;}
.xec_c00053{left:775.050000px;}
.x19_c00053{left:776.400000px;}
.x70_c00053{left:777.750000px;}
.x66_c00053{left:780.000000px;}
.xb3_c00053{left:784.950000px;}
.x71_c00053{left:787.500000px;}
.x26_c00053{left:789.750000px;}
.xc2_c00053{left:791.100000px;}
.xdd_c00053{left:795.300000px;}
.xa0_c00053{left:796.800000px;}
.x98_c00053{left:798.900000px;}
.xb9_c00053{left:801.000000px;}
.x46_c00053{left:805.500000px;}
.xe3_c00053{left:806.550000px;}
.xd0_c00053{left:808.350000px;}
.x57_c00053{left:809.400000px;}
.x31_c00053{left:812.100000px;}
.x8a_c00053{left:813.750000px;}
.x92_c00053{left:815.550000px;}
.xe4_c00053{left:819.900000px;}
.xd_c00053{left:823.200000px;}
.x72_c00053{left:824.250000px;}
.x67_c00053{left:827.550000px;}
.x58_c00053{left:831.750000px;}
.xa1_c00053{left:834.300000px;}
.x27_c00053{left:836.250000px;}
.x68_c00053{left:839.100000px;}
.x99_c00053{left:840.600000px;}
.x32_c00053{left:842.700000px;}
.xb4_c00053{left:845.100000px;}
.x7c_c00053{left:846.150000px;}
.x1a_c00053{left:848.700000px;}
.xfc_c00053{left:851.850000px;}
.x101_c00053{left:853.500000px;}
.xcd_c00053{left:855.450000px;}
.xae_c00053{left:858.900000px;}
.xe5_c00053{left:867.450000px;}
.x5e_c00053{left:869.700000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws2_c00053{word-spacing:-6.267516pt;}
.ws3_c00053{word-spacing:-1.254524pt;}
.ws0_c00053{word-spacing:-0.277778pt;}
.ws5_c00053{word-spacing:0.000000pt;}
.ws4_c00053{word-spacing:20.612613pt;}
.ws1_c00053{word-spacing:723.333333pt;}
.fs3_c00053{font-size:32.000000pt;}
.fs6_c00053{font-size:48.000000pt;}
.fs1_c00053{font-size:53.333333pt;}
.fs2_c00053{font-size:58.666667pt;}
.fs4_c00053{font-size:64.000000pt;}
.fs0_c00053{font-size:69.333333pt;}
.fs5_c00053{font-size:90.666667pt;}
.y0_c00053{bottom:0.000000pt;}
.y31_c00053{bottom:159.066667pt;}
.y30_c00053{bottom:172.533333pt;}
.y2f_c00053{bottom:185.333333pt;}
.y2e_c00053{bottom:218.933333pt;}
.y2d_c00053{bottom:234.933333pt;}
.y2c_c00053{bottom:250.933333pt;}
.y2a_c00053{bottom:274.266667pt;}
.y29_c00053{bottom:290.266667pt;}
.y28_c00053{bottom:306.266667pt;}
.y2b_c00053{bottom:313.866667pt;}
.y27_c00053{bottom:322.266667pt;}
.y26_c00053{bottom:338.266667pt;}
.y25_c00053{bottom:354.266667pt;}
.y23_c00053{bottom:377.600000pt;}
.y22_c00053{bottom:393.866667pt;}
.y24_c00053{bottom:406.400000pt;}
.y21_c00053{bottom:409.866667pt;}
.y20_c00053{bottom:425.866667pt;}
.y1f_c00053{bottom:456.933333pt;}
.y1d_c00053{bottom:488.266667pt;}
.y1c_c00053{bottom:520.000000pt;}
.y1b_c00053{bottom:536.266667pt;}
.y1e_c00053{bottom:543.733333pt;}
.y1a_c00053{bottom:552.266667pt;}
.y19_c00053{bottom:568.000000pt;}
.y18_c00053{bottom:595.600000pt;}
.y17_c00053{bottom:616.666667pt;}
.y16_c00053{bottom:642.800000pt;}
.y15_c00053{bottom:658.800000pt;}
.y14_c00053{bottom:674.800000pt;}
.y13_c00053{bottom:690.533333pt;}
.y12_c00053{bottom:706.533333pt;}
.y11_c00053{bottom:742.000000pt;}
.y10_c00053{bottom:757.733333pt;}
.yf_c00053{bottom:788.533333pt;}
.ye_c00053{bottom:804.800000pt;}
.yd_c00053{bottom:821.066667pt;}
.yc_c00053{bottom:837.066667pt;}
.yb_c00053{bottom:846.933333pt;}
.ya_c00053{bottom:853.066667pt;}
.y9_c00053{bottom:880.000000pt;}
.y8_c00053{bottom:896.000000pt;}
.y6_c00053{bottom:927.333333pt;}
.y5_c00053{bottom:943.333333pt;}
.y4_c00053{bottom:959.333333pt;}
.y7_c00053{bottom:964.533333pt;}
.y3_c00053{bottom:975.066667pt;}
.y2_c00053{bottom:991.333333pt;}
.y1_c00053{bottom:1015.333333pt;}
.h5_c00053{height:32.000000pt;}
.h8_c00053{height:48.000000pt;}
.h3_c00053{height:53.333333pt;}
.h4_c00053{height:58.666667pt;}
.h6_c00053{height:64.000000pt;}
.h2_c00053{height:69.333333pt;}
.h7_c00053{height:90.666667pt;}
.h1_c00053{height:1128.666667pt;}
.h0_c00053{height:1128.960043pt;}
.w0_c00053{width:843.200032pt;}
.w1_c00053{width:843.333333pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:156.133333pt;}
.xfd_c00053{left:157.866667pt;}
.xc4_c00053{left:164.133333pt;}
.x3c_c00053{left:166.400000pt;}
.xf5_c00053{left:171.200000pt;}
.x102_c00053{left:175.200000pt;}
.xf1_c00053{left:180.933333pt;}
.x93_c00053{left:182.266667pt;}
.xed_c00053{left:191.733333pt;}
.xc5_c00053{left:194.533333pt;}
.x3d_c00053{left:196.133333pt;}
.xf6_c00053{left:214.400000pt;}
.x28_c00053{left:254.133333pt;}
.xf7_c00053{left:264.666667pt;}
.x7d_c00053{left:268.000000pt;}
.xac_c00053{left:269.333333pt;}
.x3_c00053{left:270.400000pt;}
.xf8_c00053{left:272.666667pt;}
.xde_c00053{left:281.600000pt;}
.xe_c00053{left:284.666667pt;}
.x1b_c00053{left:285.866667pt;}
.xc6_c00053{left:287.066667pt;}
.x75_c00053{left:288.000000pt;}
.xf9_c00053{left:291.200000pt;}
.x33_c00053{left:293.333333pt;}
.xfe_c00053{left:296.800000pt;}
.x9a_c00053{left:301.733333pt;}
.x3e_c00053{left:304.666667pt;}
.x76_c00053{left:307.200000pt;}
.xa2_c00053{left:310.933333pt;}
.x34_c00053{left:313.466667pt;}
.x7e_c00053{left:315.066667pt;}
.x5f_c00053{left:316.666667pt;}
.x84_c00053{left:320.400000pt;}
.x94_c00053{left:321.466667pt;}
.x47_c00053{left:323.333333pt;}
.xee_c00053{left:327.066667pt;}
.xf_c00053{left:328.133333pt;}
.x69_c00053{left:329.866667pt;}
.x85_c00053{left:331.333333pt;}
.x1c_c00053{left:333.200000pt;}
.xd5_c00053{left:334.266667pt;}
.x60_c00053{left:337.733333pt;}
.xc3_c00053{left:338.666667pt;}
.x5a_c00053{left:340.533333pt;}
.x4_c00053{left:342.666667pt;}
.x29_c00053{left:343.733333pt;}
.x8b_c00053{left:351.200000pt;}
.x59_c00053{left:352.400000pt;}
.x9b_c00053{left:353.600000pt;}
.x5_c00053{left:355.733333pt;}
.xce_c00053{left:357.200000pt;}
.xd1_c00053{left:359.733333pt;}
.x73_c00053{left:361.466667pt;}
.x3f_c00053{left:362.933333pt;}
.x4d_c00053{left:364.533333pt;}
.x1d_c00053{left:365.466667pt;}
.xba_c00053{left:366.533333pt;}
.x77_c00053{left:368.666667pt;}
.xe9_c00053{left:369.866667pt;}
.xa8_c00053{left:372.400000pt;}
.xa3_c00053{left:373.733333pt;}
.xaf_c00053{left:375.333333pt;}
.x2_c00053{left:377.600000pt;}
.x1e_c00053{left:381.200000pt;}
.x74_c00053{left:382.533333pt;}
.x2a_c00053{left:383.733333pt;}
.x10_c00053{left:385.733333pt;}
.xbb_c00053{left:386.666667pt;}
.xd2_c00053{left:389.333333pt;}
.xad_c00053{left:391.600000pt;}
.x9c_c00053{left:394.533333pt;}
.xb5_c00053{left:395.466667pt;}
.xef_c00053{left:396.533333pt;}
.x11_c00053{left:398.266667pt;}
.xd6_c00053{left:399.866667pt;}
.x35_c00053{left:403.066667pt;}
.x40_c00053{left:405.866667pt;}
.x78_c00053{left:407.333333pt;}
.xd7_c00053{left:409.466667pt;}
.x5b_c00053{left:412.533333pt;}
.xa4_c00053{left:414.400000pt;}
.x6_c00053{left:416.800000pt;}
.x8c_c00053{left:419.333333pt;}
.x86_c00053{left:421.600000pt;}
.x1f_c00053{left:422.533333pt;}
.x4e_c00053{left:426.266667pt;}
.xea_c00053{left:427.733333pt;}
.x48_c00053{left:428.666667pt;}
.x61_c00053{left:429.600000pt;}
.x36_c00053{left:430.933333pt;}
.x6a_c00053{left:434.533333pt;}
.x9d_c00053{left:435.866667pt;}
.xca_c00053{left:437.066667pt;}
.xb6_c00053{left:438.666667pt;}
.xd8_c00053{left:440.133333pt;}
.x2b_c00053{left:441.333333pt;}
.x49_c00053{left:444.666667pt;}
.xbc_c00053{left:445.600000pt;}
.x37_c00053{left:447.600000pt;}
.x7_c00053{left:452.933333pt;}
.x2c_c00053{left:454.133333pt;}
.x4a_c00053{left:455.866667pt;}
.xbd_c00053{left:458.133333pt;}
.xb0_c00053{left:459.200000pt;}
.x87_c00053{left:461.333333pt;}
.xa5_c00053{left:463.333333pt;}
.x4f_c00053{left:464.400000pt;}
.x12_c00053{left:466.133333pt;}
.xa9_c00053{left:467.200000pt;}
.x8d_c00053{left:469.600000pt;}
.x6b_c00053{left:471.733333pt;}
.x20_c00053{left:476.666667pt;}
.xfa_c00053{left:478.400000pt;}
.x8e_c00053{left:479.866667pt;}
.xc7_c00053{left:480.933333pt;}
.xd9_c00053{left:482.400000pt;}
.x5c_c00053{left:486.400000pt;}
.x62_c00053{left:488.133333pt;}
.x4b_c00053{left:489.466667pt;}
.x8f_c00053{left:491.733333pt;}
.x7f_c00053{left:492.933333pt;}
.xa6_c00053{left:494.000000pt;}
.x88_c00053{left:494.933333pt;}
.x95_c00053{left:496.133333pt;}
.x50_c00053{left:497.333333pt;}
.xb1_c00053{left:499.466667pt;}
.x21_c00053{left:500.933333pt;}
.x41_c00053{left:503.066667pt;}
.x38_c00053{left:504.533333pt;}
.x8_c00053{left:505.466667pt;}
.xbe_c00053{left:506.800000pt;}
.xe6_c00053{left:507.733333pt;}
.x79_c00053{left:509.066667pt;}
.x6c_c00053{left:510.800000pt;}
.xcb_c00053{left:512.266667pt;}
.x51_c00053{left:516.533333pt;}
.x9_c00053{left:518.533333pt;}
.xc8_c00053{left:519.866667pt;}
.x13_c00053{left:522.400000pt;}
.x39_c00053{left:524.666667pt;}
.x52_c00053{left:529.066667pt;}
.xf0_c00053{left:530.933333pt;}
.x80_c00053{left:533.600000pt;}
.xaa_c00053{left:538.266667pt;}
.xda_c00053{left:539.333333pt;}
.x14_c00053{left:541.866667pt;}
.x7a_c00053{left:543.333333pt;}
.xff_c00053{left:550.266667pt;}
.x3a_c00053{left:551.200000pt;}
.x96_c00053{left:552.400000pt;}
.x2d_c00053{left:554.933333pt;}
.xcf_c00053{left:558.000000pt;}
.x100_c00053{left:558.933333pt;}
.x4c_c00053{left:560.533333pt;}
.x22_c00053{left:561.466667pt;}
.x3b_c00053{left:564.000000pt;}
.x63_c00053{left:566.266667pt;}
.xe7_c00053{left:567.200000pt;}
.xa_c00053{left:568.133333pt;}
.x2e_c00053{left:573.466667pt;}
.x15_c00053{left:575.200000pt;}
.xe0_c00053{left:576.266667pt;}
.xa7_c00053{left:577.466667pt;}
.xdb_c00053{left:578.666667pt;}
.x53_c00053{left:580.933333pt;}
.x6d_c00053{left:584.666667pt;}
.xe1_c00053{left:586.533333pt;}
.x90_c00053{left:588.533333pt;}
.xf2_c00053{left:590.800000pt;}
.xbf_c00053{left:592.800000pt;}
.x64_c00053{left:594.133333pt;}
.x23_c00053{left:596.400000pt;}
.x42_c00053{left:598.533333pt;}
.xcc_c00053{left:604.666667pt;}
.x81_c00053{left:606.266667pt;}
.x7b_c00053{left:607.600000pt;}
.xdf_c00053{left:609.600000pt;}
.x16_c00053{left:611.066667pt;}
.x97_c00053{left:612.533333pt;}
.x9e_c00053{left:613.866667pt;}
.x6e_c00053{left:615.733333pt;}
.xab_c00053{left:616.666667pt;}
.x2f_c00053{left:618.533333pt;}
.xf3_c00053{left:619.600000pt;}
.x54_c00053{left:623.466667pt;}
.xfb_c00053{left:624.400000pt;}
.x43_c00053{left:626.000000pt;}
.xb_c00053{left:628.933333pt;}
.xc0_c00053{left:630.266667pt;}
.x82_c00053{left:631.200000pt;}
.x5d_c00053{left:632.666667pt;}
.x6f_c00053{left:637.866667pt;}
.xd3_c00053{left:639.866667pt;}
.xc1_c00053{left:641.200000pt;}
.x17_c00053{left:644.400000pt;}
.xb7_c00053{left:646.666667pt;}
.x83_c00053{left:648.800000pt;}
.x89_c00053{left:650.666667pt;}
.x65_c00053{left:653.066667pt;}
.x18_c00053{left:654.000000pt;}
.xb2_c00053{left:656.133333pt;}
.xf4_c00053{left:657.600000pt;}
.x24_c00053{left:658.800000pt;}
.xdc_c00053{left:660.266667pt;}
.x44_c00053{left:661.866667pt;}
.xc_c00053{left:664.800000pt;}
.xe8_c00053{left:666.666667pt;}
.x55_c00053{left:667.600000pt;}
.xb8_c00053{left:669.066667pt;}
.x25_c00053{left:670.666667pt;}
.xd4_c00053{left:671.600000pt;}
.xc9_c00053{left:675.466667pt;}
.xeb_c00053{left:677.466667pt;}
.xe2_c00053{left:678.800000pt;}
.x56_c00053{left:681.333333pt;}
.x30_c00053{left:682.800000pt;}
.x91_c00053{left:684.000000pt;}
.x45_c00053{left:684.933333pt;}
.x9f_c00053{left:687.733333pt;}
.xec_c00053{left:688.933333pt;}
.x19_c00053{left:690.133333pt;}
.x70_c00053{left:691.333333pt;}
.x66_c00053{left:693.333333pt;}
.xb3_c00053{left:697.733333pt;}
.x71_c00053{left:700.000000pt;}
.x26_c00053{left:702.000000pt;}
.xc2_c00053{left:703.200000pt;}
.xdd_c00053{left:706.933333pt;}
.xa0_c00053{left:708.266667pt;}
.x98_c00053{left:710.133333pt;}
.xb9_c00053{left:712.000000pt;}
.x46_c00053{left:716.000000pt;}
.xe3_c00053{left:716.933333pt;}
.xd0_c00053{left:718.533333pt;}
.x57_c00053{left:719.466667pt;}
.x31_c00053{left:721.866667pt;}
.x8a_c00053{left:723.333333pt;}
.x92_c00053{left:724.933333pt;}
.xe4_c00053{left:728.800000pt;}
.xd_c00053{left:731.733333pt;}
.x72_c00053{left:732.666667pt;}
.x67_c00053{left:735.600000pt;}
.x58_c00053{left:739.333333pt;}
.xa1_c00053{left:741.600000pt;}
.x27_c00053{left:743.333333pt;}
.x68_c00053{left:745.866667pt;}
.x99_c00053{left:747.200000pt;}
.x32_c00053{left:749.066667pt;}
.xb4_c00053{left:751.200000pt;}
.x7c_c00053{left:752.133333pt;}
.x1a_c00053{left:754.400000pt;}
.xfc_c00053{left:757.200000pt;}
.x101_c00053{left:758.666667pt;}
.xcd_c00053{left:760.400000pt;}
.xae_c00053{left:763.466667pt;}
.xe5_c00053{left:771.066667pt;}
.x5e_c00053{left:773.066667pt;}
}





/* 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_c00054 {
    display:none;
  }
  .loading-indicator_c00054.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00054 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_c00054 { 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_c00054" -> "#page-container .classname_c00054")
 */
.pf_c00054 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00054 { /* 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_c00054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00054 { /* 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_c00054 { /* 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_c00054 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00054 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00054 {overflow:visible;}
  }
}
.c_c00054 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00054 { /* 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_c00054:after { /* webkit #35443 */
  content: '';
}
.t_c00054:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00054 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 */
}
.__c00054 { /* 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_c00054 { /* info for Javascript */
  display:none;
}
.l_c00054 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00054 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00054 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00054: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_c00054 {
    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_c00054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00054.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_c00054 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00054;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.000000;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;}
.m1_c00054{transform:matrix(0.011500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011500,0.000000,0.000000,0.250000,0,0);}
.m8_c00054{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m18_c00054{transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00054{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.md2_c00054{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00054{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00054{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m44_c00054{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00054{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m98_c00054{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me5_c00054{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb_c00054{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.meb_c00054{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md0_c00054{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m59_c00054{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m65_c00054{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00054{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2_c00054{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00054{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m56_c00054{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m54_c00054{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m91_c00054{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00054{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00054{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.mef_c00054{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00054{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m55_c00054{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00054{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m95_c00054{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me2_c00054{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00054{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m58_c00054{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.med_c00054{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00054{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mec_c00054{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00054{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mde_c00054{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.md3_c00054{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00054{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m40_c00054{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m47_c00054{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m11_c00054{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00054{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m28_c00054{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m88_c00054{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00054{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00054{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00054{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mee_c00054{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m64_c00054{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00054{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m57_c00054{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m22_c00054{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00054{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00054{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m52_c00054{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00054{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00054{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m71_c00054{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mac_c00054{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m86_c00054{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m76_c00054{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m42_c00054{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m19_c00054{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00054{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00054{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00054{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m93_c00054{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m30_c00054{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m62_c00054{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mae_c00054{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00054{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00054{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00054{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00054{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m51_c00054{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m73_c00054{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m66_c00054{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m25_c00054{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m13_c00054{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md1_c00054{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00054{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00054{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00054{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00054{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00054{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00054{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00054{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md4_c00054{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m14_c00054{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me3_c00054{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m15_c00054{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m60_c00054{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m61_c00054{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m49_c00054{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m70_c00054{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m89_c00054{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00054{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00054{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m67_c00054{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md_c00054{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m33_c00054{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m21_c00054{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00054{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m17_c00054{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m48_c00054{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mad_c00054{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00054{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m80_c00054{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mc_c00054{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00054{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m23_c00054{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00054{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m63_c00054{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m94_c00054{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.maf_c00054{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m12_c00054{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00054{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m77_c00054{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mf_c00054{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m10_c00054{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m37_c00054{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00054{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m53_c00054{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00054{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00054{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m85_c00054{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m75_c00054{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00054{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00054{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00054{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00054{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me0_c00054{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00054{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m31_c00054{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m20_c00054{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00054{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m97_c00054{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00054{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma_c00054{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me4_c00054{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00054{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00054{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m26_c00054{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m69_c00054{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00054{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6_c00054{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00054{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m83_c00054{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m24_c00054{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m84_c00054{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me_c00054{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me1_c00054{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00054{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00054{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m87_c00054{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00054{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m74_c00054{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.maa_c00054{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00054{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mce_c00054{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9_c00054{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m36_c00054{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00054{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m92_c00054{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m16_c00054{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00054{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m50_c00054{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00054{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me9_c00054{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00054{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m39_c00054{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7_c00054{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m82_c00054{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00054{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00054{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00054{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m68_c00054{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m46_c00054{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00054{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00054{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00054{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00054{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00054{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m32_c00054{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00054{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mab_c00054{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00054{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.md8_c00054{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m38_c00054{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md6_c00054{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00054{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m29_c00054{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m72_c00054{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md9_c00054{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00054{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md7_c00054{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);}
.ma9_c00054{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27_c00054{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m78_c00054{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m45_c00054{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m35_c00054{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mca_c00054{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00054{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m81_c00054{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00054{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00054{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m34_c00054{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m99_c00054{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00054{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00054{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me8_c00054{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00054{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00054{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00054{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me7_c00054{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00054{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.md5_c00054{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m96_c00054{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00054{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.mda_c00054{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00054{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00054{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mea_c00054{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m79_c00054{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00054{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00054{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m41_c00054{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mba_c00054{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m43_c00054{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.me6_c00054{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00054{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00054{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00054{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00054{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m90_c00054{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00054{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00054{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00054{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00054{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls0_c00054{letter-spacing:0.000000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{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__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00054{word-spacing:-3.125000px;}
.ws0_c00054{word-spacing:-1.309524px;}
.ws4_c00054{word-spacing:0.000000px;}
.ws2_c00054{word-spacing:13.419162px;}
.ws3_c00054{word-spacing:24.166667px;}
.fc0_c00054{color:transparent;}
.fs4_c00054{font-size:54.000000px;}
.fs2_c00054{font-size:60.000000px;}
.fs1_c00054{font-size:66.000000px;}
.fs3_c00054{font-size:72.000000px;}
.fs0_c00054{font-size:126.000000px;}
.y0_c00054{bottom:0.000000px;}
.y37_c00054{bottom:195.150000px;}
.y36_c00054{bottom:212.100000px;}
.y35_c00054{bottom:226.350000px;}
.y34_c00054{bottom:241.050000px;}
.y33_c00054{bottom:255.450000px;}
.y32_c00054{bottom:269.550000px;}
.y31_c00054{bottom:283.950000px;}
.y30_c00054{bottom:299.100000px;}
.y2e_c00054{bottom:358.500000px;}
.y2d_c00054{bottom:376.200000px;}
.y2f_c00054{bottom:384.150000px;}
.y2c_c00054{bottom:394.200000px;}
.y2b_c00054{bottom:411.450000px;}
.y28_c00054{bottom:437.850000px;}
.y27_c00054{bottom:455.850000px;}
.y29_c00054{bottom:473.400000px;}
.y26_c00054{bottom:474.150000px;}
.y25_c00054{bottom:491.400000px;}
.y24_c00054{bottom:509.400000px;}
.y23_c00054{bottom:535.350000px;}
.y21_c00054{bottom:553.200000px;}
.y22_c00054{bottom:570.600000px;}
.y20_c00054{bottom:571.200000px;}
.y1f_c00054{bottom:589.200000px;}
.y1e_c00054{bottom:606.900000px;}
.y1d_c00054{bottom:633.900000px;}
.y1c_c00054{bottom:651.900000px;}
.y1b_c00054{bottom:669.600000px;}
.y19_c00054{bottom:696.150000px;}
.y18_c00054{bottom:713.850000px;}
.y17_c00054{bottom:731.850000px;}
.y1a_c00054{bottom:739.500000px;}
.y16_c00054{bottom:749.550000px;}
.y15_c00054{bottom:767.550000px;}
.y2a_c00054{bottom:785.100000px;}
.y13_c00054{bottom:812.100000px;}
.y12_c00054{bottom:829.800000px;}
.y14_c00054{bottom:837.300000px;}
.y11_c00054{bottom:848.100000px;}
.y10_c00054{bottom:865.800000px;}
.ye_c00054{bottom:891.300000px;}
.yd_c00054{bottom:909.600000px;}
.yf_c00054{bottom:926.700000px;}
.yc_c00054{bottom:931.200000px;}
.yb_c00054{bottom:945.300000px;}
.ya_c00054{bottom:963.000000px;}
.y9_c00054{bottom:989.700000px;}
.y8_c00054{bottom:1007.700000px;}
.y7_c00054{bottom:1025.700000px;}
.y6_c00054{bottom:1043.700000px;}
.y5_c00054{bottom:1061.700000px;}
.y4_c00054{bottom:1088.250000px;}
.y3_c00054{bottom:1105.950000px;}
.y2_c00054{bottom:1124.250000px;}
.y1_c00054{bottom:1151.250000px;}
.h6_c00054{height:54.000000px;}
.h4_c00054{height:60.000000px;}
.h3_c00054{height:66.000000px;}
.h5_c00054{height:72.000000px;}
.h2_c00054{height:126.000000px;}
.h1_c00054{height:1279.500000px;}
.h0_c00054{height:1279.800018px;}
.w0_c00054{width:948.600036px;}
.w1_c00054{width:948.750000px;}
.x0_c00054{left:0.000000px;}
.xfc_c00054{left:65.400000px;}
.xf2_c00054{left:76.350000px;}
.xde_c00054{left:77.400000px;}
.xcc_c00054{left:80.250000px;}
.xb3_c00054{left:82.050000px;}
.x70_c00054{left:83.550000px;}
.x111_c00054{left:85.050000px;}
.x11c_c00054{left:93.000000px;}
.x116_c00054{left:94.650000px;}
.x10b_c00054{left:97.500000px;}
.x102_c00054{left:102.450000px;}
.x11d_c00054{left:105.900000px;}
.x122_c00054{left:106.950000px;}
.xf4_c00054{left:111.600000px;}
.xf3_c00054{left:114.150000px;}
.xdf_c00054{left:115.500000px;}
.xcd_c00054{left:116.550000px;}
.xb4_c00054{left:119.850000px;}
.x95_c00054{left:120.900000px;}
.x71_c00054{left:122.100000px;}
.x112_c00054{left:132.450000px;}
.x103_c00054{left:133.800000px;}
.xfd_c00054{left:141.750000px;}
.x117_c00054{left:158.400000px;}
.xfe_c00054{left:164.850000px;}
.x104_c00054{left:167.250000px;}
.x10c_c00054{left:171.000000px;}
.xf5_c00054{left:184.350000px;}
.x118_c00054{left:186.450000px;}
.x105_c00054{left:187.800000px;}
.xe0_c00054{left:191.550000px;}
.x113_c00054{left:194.700000px;}
.xff_c00054{left:206.250000px;}
.x4d_c00054{left:209.100000px;}
.x72_c00054{left:210.900000px;}
.x4_c00054{left:212.100000px;}
.x60_c00054{left:222.750000px;}
.x11e_c00054{left:223.950000px;}
.xd3_c00054{left:226.350000px;}
.x55_c00054{left:227.400000px;}
.x96_c00054{left:228.900000px;}
.x11_c00054{left:229.950000px;}
.x100_c00054{left:231.450000px;}
.xdd_c00054{left:237.450000px;}
.xf6_c00054{left:240.900000px;}
.x119_c00054{left:242.550000px;}
.x56_c00054{left:246.150000px;}
.xe8_c00054{left:248.100000px;}
.xeb_c00054{left:249.450000px;}
.x4e_c00054{left:251.550000px;}
.xb1_c00054{left:256.950000px;}
.x41_c00054{left:260.250000px;}
.x4f_c00054{left:262.650000px;}
.x11a_c00054{left:263.850000px;}
.xc0_c00054{left:265.200000px;}
.x9e_c00054{left:267.000000px;}
.x61_c00054{left:268.500000px;}
.x106_c00054{left:272.100000px;}
.x97_c00054{left:274.200000px;}
.x42_c00054{left:276.450000px;}
.x2d_c00054{left:280.500000px;}
.xab_c00054{left:282.600000px;}
.xd8_c00054{left:284.250000px;}
.x4b_c00054{left:285.600000px;}
.x62_c00054{left:287.550000px;}
.x5_c00054{left:289.800000px;}
.x1b_c00054{left:291.750000px;}
.x3b_c00054{left:297.000000px;}
.x6a_c00054{left:298.950000px;}
.x73_c00054{left:300.900000px;}
.x6_c00054{left:302.400000px;}
.xce_c00054{left:304.200000px;}
.x57_c00054{left:305.850000px;}
.x82_c00054{left:307.800000px;}
.x8c_c00054{left:308.850000px;}
.x43_c00054{left:311.700000px;}
.xe3_c00054{left:312.750000px;}
.x98_c00054{left:314.250000px;}
.x2e_c00054{left:315.750000px;}
.xbc_c00054{left:320.250000px;}
.xc4_c00054{left:321.900000px;}
.x12_c00054{left:323.550000px;}
.xc9_c00054{left:324.750000px;}
.x2f_c00054{left:327.300000px;}
.x1_c00054{left:329.400000px;}
.xc1_c00054{left:330.750000px;}
.x79_c00054{left:334.650000px;}
.xb9_c00054{left:336.600000px;}
.xf7_c00054{left:338.400000px;}
.x6b_c00054{left:340.350000px;}
.x10d_c00054{left:344.100000px;}
.x1c_c00054{left:346.800000px;}
.x24_c00054{left:349.200000px;}
.x63_c00054{left:351.600000px;}
.x4c_c00054{left:353.550000px;}
.xec_c00054{left:354.900000px;}
.x8d_c00054{left:357.450000px;}
.x7_c00054{left:360.300000px;}
.x1d_c00054{left:362.250000px;}
.x30_c00054{left:364.050000px;}
.xc2_c00054{left:366.000000px;}
.x99_c00054{left:367.500000px;}
.xb5_c00054{left:368.700000px;}
.x3c_c00054{left:370.500000px;}
.xe4_c00054{left:373.650000px;}
.xa6_c00054{left:376.950000px;}
.x83_c00054{left:379.050000px;}
.x44_c00054{left:380.100000px;}
.xb2_c00054{left:383.400000px;}
.x74_c00054{left:385.500000px;}
.xed_c00054{left:387.000000px;}
.x31_c00054{left:390.300000px;}
.xd1_c00054{left:391.350000px;}
.x3d_c00054{left:392.400000px;}
.xc5_c00054{left:394.200000px;}
.x7a_c00054{left:395.550000px;}
.x58_c00054{left:398.100000px;}
.x1e_c00054{left:401.550000px;}
.x8e_c00054{left:405.300000px;}
.x9f_c00054{left:406.500000px;}
.x84_c00054{left:408.150000px;}
.xbd_c00054{left:409.950000px;}
.x13_c00054{left:411.000000px;}
.x25_c00054{left:412.500000px;}
.x59_c00054{left:416.850000px;}
.x45_c00054{left:418.650000px;}
.x1f_c00054{left:421.050000px;}
.x8_c00054{left:424.800000px;}
.xd9_c00054{left:429.300000px;}
.xc6_c00054{left:430.500000px;}
.x9a_c00054{left:432.300000px;}
.x107_c00054{left:434.700000px;}
.xa0_c00054{left:437.400000px;}
.x5a_c00054{left:440.250000px;}
.x32_c00054{left:445.500000px;}
.xe1_c00054{left:446.700000px;}
.x46_c00054{left:448.200000px;}
.xac_c00054{left:450.150000px;}
.x75_c00054{left:451.800000px;}
.x50_c00054{left:453.750000px;}
.x33_c00054{left:455.250000px;}
.xee_c00054{left:456.900000px;}
.xa1_c00054{left:459.000000px;}
.xca_c00054{left:460.500000px;}
.x9b_c00054{left:463.650000px;}
.x14_c00054{left:467.100000px;}
.x20_c00054{left:468.900000px;}
.xba_c00054{left:470.850000px;}
.x26_c00054{left:471.900000px;}
.xd2_c00054{left:474.450000px;}
.x34_c00054{left:476.100000px;}
.xd4_c00054{left:477.900000px;}
.x10e_c00054{left:479.100000px;}
.x114_c00054{left:480.900000px;}
.x27_c00054{left:481.950000px;}
.x85_c00054{left:483.750000px;}
.xf8_c00054{left:486.600000px;}
.x108_c00054{left:487.950000px;}
.x64_c00054{left:489.000000px;}
.x5b_c00054{left:490.350000px;}
.x7b_c00054{left:494.250000px;}
.xa7_c00054{left:496.050000px;}
.x8f_c00054{left:497.550000px;}
.x9_c00054{left:498.600000px;}
.x47_c00054{left:500.400000px;}
.x115_c00054{left:501.750000px;}
.x3e_c00054{left:502.950000px;}
.x51_c00054{left:504.450000px;}
.x9c_c00054{left:508.350000px;}
.xf0_c00054{left:510.000000px;}
.xa_c00054{left:511.200000px;}
.xe5_c00054{left:512.250000px;}
.x5c_c00054{left:513.750000px;}
.x21_c00054{left:517.200000px;}
.x90_c00054{left:519.450000px;}
.xd5_c00054{left:522.150000px;}
.xb_c00054{left:524.550000px;}
.xc7_c00054{left:526.350000px;}
.xb6_c00054{left:530.400000px;}
.x35_c00054{left:531.600000px;}
.xe9_c00054{left:534.300000px;}
.x65_c00054{left:535.500000px;}
.xad_c00054{left:537.300000px;}
.xf9_c00054{left:539.550000px;}
.x86_c00054{left:543.450000px;}
.xb7_c00054{left:544.800000px;}
.x6c_c00054{left:550.500000px;}
.x11f_c00054{left:552.450000px;}
.xa2_c00054{left:554.700000px;}
.x28_c00054{left:556.050000px;}
.x7c_c00054{left:557.250000px;}
.x5d_c00054{left:558.750000px;}
.xda_c00054{left:560.400000px;}
.xae_c00054{left:562.200000px;}
.x91_c00054{left:563.400000px;}
.xd6_c00054{left:566.100000px;}
.x15_c00054{left:567.150000px;}
.xa8_c00054{left:568.500000px;}
.xe2_c00054{left:570.900000px;}
.xf1_c00054{left:572.250000px;}
.xbe_c00054{left:574.200000px;}
.x36_c00054{left:578.400000px;}
.x7d_c00054{left:580.650000px;}
.x101_c00054{left:582.000000px;}
.xe6_c00054{left:583.500000px;}
.x52_c00054{left:584.700000px;}
.x2_c00054{left:588.300000px;}
.xc_c00054{left:590.400000px;}
.x92_c00054{left:592.500000px;}
.x22_c00054{left:594.600000px;}
.xfa_c00054{left:596.850000px;}
.xbb_c00054{left:600.750000px;}
.x6d_c00054{left:603.450000px;}
.x109_c00054{left:606.750000px;}
.x120_c00054{left:608.100000px;}
.xea_c00054{left:609.150000px;}
.xaf_c00054{left:612.600000px;}
.x23_c00054{left:614.700000px;}
.x16_c00054{left:616.800000px;}
.x7e_c00054{left:618.750000px;}
.x66_c00054{left:620.550000px;}
.x37_c00054{left:623.100000px;}
.xa3_c00054{left:625.500000px;}
.x87_c00054{left:628.050000px;}
.x29_c00054{left:629.850000px;}
.xd_c00054{left:631.050000px;}
.xa9_c00054{left:635.400000px;}
.x93_c00054{left:637.200000px;}
.x88_c00054{left:639.600000px;}
.xe_c00054{left:642.150000px;}
.x7f_c00054{left:643.650000px;}
.xdb_c00054{left:645.300000px;}
.x17_c00054{left:647.100000px;}
.x76_c00054{left:648.900000px;}
.x10f_c00054{left:650.250000px;}
.x5e_c00054{left:653.400000px;}
.x2a_c00054{left:655.350000px;}
.x80_c00054{left:656.550000px;}
.x94_c00054{left:658.050000px;}
.xaa_c00054{left:659.100000px;}
.xbf_c00054{left:660.600000px;}
.xa4_c00054{left:663.600000px;}
.x48_c00054{left:667.050000px;}
.xd7_c00054{left:669.750000px;}
.x77_c00054{left:671.550000px;}
.x3f_c00054{left:673.200000px;}
.x9d_c00054{left:675.300000px;}
.xcf_c00054{left:677.850000px;}
.xa5_c00054{left:682.650000px;}
.x89_c00054{left:684.300000px;}
.xef_c00054{left:685.350000px;}
.x67_c00054{left:686.400000px;}
.x6e_c00054{left:689.100000px;}
.x49_c00054{left:691.950000px;}
.xc8_c00054{left:694.200000px;}
.x18_c00054{left:695.400000px;}
.x38_c00054{left:697.200000px;}
.x68_c00054{left:699.300000px;}
.xc3_c00054{left:700.650000px;}
.x2b_c00054{left:703.950000px;}
.x6f_c00054{left:706.350000px;}
.x53_c00054{left:707.550000px;}
.xb8_c00054{left:711.000000px;}
.xfb_c00054{left:713.100000px;}
.x39_c00054{left:715.200000px;}
.x8a_c00054{left:716.700000px;}
.xf_c00054{left:718.050000px;}
.x54_c00054{left:719.850000px;}
.x78_c00054{left:720.900000px;}
.xcb_c00054{left:723.300000px;}
.x19_c00054{left:724.950000px;}
.xe7_c00054{left:726.150000px;}
.x121_c00054{left:729.300000px;}
.x11b_c00054{left:730.500000px;}
.x3a_c00054{left:736.500000px;}
.x8b_c00054{left:738.300000px;}
.xdc_c00054{left:740.400000px;}
.x110_c00054{left:744.600000px;}
.x10_c00054{left:745.800000px;}
.xb0_c00054{left:747.900000px;}
.x5f_c00054{left:749.100000px;}
.x4a_c00054{left:752.100000px;}
.x10a_c00054{left:755.550000px;}
.x69_c00054{left:757.950000px;}
.xd0_c00054{left:760.950000px;}
.x3_c00054{left:762.600000px;}
.x40_c00054{left:766.800000px;}
.x1a_c00054{left:768.150000px;}
.x81_c00054{left:772.500000px;}
.x2c_c00054{left:778.800000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws1_c00054{word-spacing:-2.777778pt;}
.ws0_c00054{word-spacing:-1.164021pt;}
.ws4_c00054{word-spacing:0.000000pt;}
.ws2_c00054{word-spacing:11.928144pt;}
.ws3_c00054{word-spacing:21.481481pt;}
.fs4_c00054{font-size:48.000000pt;}
.fs2_c00054{font-size:53.333333pt;}
.fs1_c00054{font-size:58.666667pt;}
.fs3_c00054{font-size:64.000000pt;}
.fs0_c00054{font-size:112.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y37_c00054{bottom:173.466667pt;}
.y36_c00054{bottom:188.533333pt;}
.y35_c00054{bottom:201.200000pt;}
.y34_c00054{bottom:214.266667pt;}
.y33_c00054{bottom:227.066667pt;}
.y32_c00054{bottom:239.600000pt;}
.y31_c00054{bottom:252.400000pt;}
.y30_c00054{bottom:265.866667pt;}
.y2e_c00054{bottom:318.666667pt;}
.y2d_c00054{bottom:334.400000pt;}
.y2f_c00054{bottom:341.466667pt;}
.y2c_c00054{bottom:350.400000pt;}
.y2b_c00054{bottom:365.733333pt;}
.y28_c00054{bottom:389.200000pt;}
.y27_c00054{bottom:405.200000pt;}
.y29_c00054{bottom:420.800000pt;}
.y26_c00054{bottom:421.466667pt;}
.y25_c00054{bottom:436.800000pt;}
.y24_c00054{bottom:452.800000pt;}
.y23_c00054{bottom:475.866667pt;}
.y21_c00054{bottom:491.733333pt;}
.y22_c00054{bottom:507.200000pt;}
.y20_c00054{bottom:507.733333pt;}
.y1f_c00054{bottom:523.733333pt;}
.y1e_c00054{bottom:539.466667pt;}
.y1d_c00054{bottom:563.466667pt;}
.y1c_c00054{bottom:579.466667pt;}
.y1b_c00054{bottom:595.200000pt;}
.y19_c00054{bottom:618.800000pt;}
.y18_c00054{bottom:634.533333pt;}
.y17_c00054{bottom:650.533333pt;}
.y1a_c00054{bottom:657.333333pt;}
.y16_c00054{bottom:666.266667pt;}
.y15_c00054{bottom:682.266667pt;}
.y2a_c00054{bottom:697.866667pt;}
.y13_c00054{bottom:721.866667pt;}
.y12_c00054{bottom:737.600000pt;}
.y14_c00054{bottom:744.266667pt;}
.y11_c00054{bottom:753.866667pt;}
.y10_c00054{bottom:769.600000pt;}
.ye_c00054{bottom:792.266667pt;}
.yd_c00054{bottom:808.533333pt;}
.yf_c00054{bottom:823.733333pt;}
.yc_c00054{bottom:827.733333pt;}
.yb_c00054{bottom:840.266667pt;}
.ya_c00054{bottom:856.000000pt;}
.y9_c00054{bottom:879.733333pt;}
.y8_c00054{bottom:895.733333pt;}
.y7_c00054{bottom:911.733333pt;}
.y6_c00054{bottom:927.733333pt;}
.y5_c00054{bottom:943.733333pt;}
.y4_c00054{bottom:967.333333pt;}
.y3_c00054{bottom:983.066667pt;}
.y2_c00054{bottom:999.333333pt;}
.y1_c00054{bottom:1023.333333pt;}
.h6_c00054{height:48.000000pt;}
.h4_c00054{height:53.333333pt;}
.h3_c00054{height:58.666667pt;}
.h5_c00054{height:64.000000pt;}
.h2_c00054{height:112.000000pt;}
.h1_c00054{height:1137.333333pt;}
.h0_c00054{height:1137.600016pt;}
.w0_c00054{width:843.200032pt;}
.w1_c00054{width:843.333333pt;}
.x0_c00054{left:0.000000pt;}
.xfc_c00054{left:58.133333pt;}
.xf2_c00054{left:67.866667pt;}
.xde_c00054{left:68.800000pt;}
.xcc_c00054{left:71.333333pt;}
.xb3_c00054{left:72.933333pt;}
.x70_c00054{left:74.266667pt;}
.x111_c00054{left:75.600000pt;}
.x11c_c00054{left:82.666667pt;}
.x116_c00054{left:84.133333pt;}
.x10b_c00054{left:86.666667pt;}
.x102_c00054{left:91.066667pt;}
.x11d_c00054{left:94.133333pt;}
.x122_c00054{left:95.066667pt;}
.xf4_c00054{left:99.200000pt;}
.xf3_c00054{left:101.466667pt;}
.xdf_c00054{left:102.666667pt;}
.xcd_c00054{left:103.600000pt;}
.xb4_c00054{left:106.533333pt;}
.x95_c00054{left:107.466667pt;}
.x71_c00054{left:108.533333pt;}
.x112_c00054{left:117.733333pt;}
.x103_c00054{left:118.933333pt;}
.xfd_c00054{left:126.000000pt;}
.x117_c00054{left:140.800000pt;}
.xfe_c00054{left:146.533333pt;}
.x104_c00054{left:148.666667pt;}
.x10c_c00054{left:152.000000pt;}
.xf5_c00054{left:163.866667pt;}
.x118_c00054{left:165.733333pt;}
.x105_c00054{left:166.933333pt;}
.xe0_c00054{left:170.266667pt;}
.x113_c00054{left:173.066667pt;}
.xff_c00054{left:183.333333pt;}
.x4d_c00054{left:185.866667pt;}
.x72_c00054{left:187.466667pt;}
.x4_c00054{left:188.533333pt;}
.x60_c00054{left:198.000000pt;}
.x11e_c00054{left:199.066667pt;}
.xd3_c00054{left:201.200000pt;}
.x55_c00054{left:202.133333pt;}
.x96_c00054{left:203.466667pt;}
.x11_c00054{left:204.400000pt;}
.x100_c00054{left:205.733333pt;}
.xdd_c00054{left:211.066667pt;}
.xf6_c00054{left:214.133333pt;}
.x119_c00054{left:215.600000pt;}
.x56_c00054{left:218.800000pt;}
.xe8_c00054{left:220.533333pt;}
.xeb_c00054{left:221.733333pt;}
.x4e_c00054{left:223.600000pt;}
.xb1_c00054{left:228.400000pt;}
.x41_c00054{left:231.333333pt;}
.x4f_c00054{left:233.466667pt;}
.x11a_c00054{left:234.533333pt;}
.xc0_c00054{left:235.733333pt;}
.x9e_c00054{left:237.333333pt;}
.x61_c00054{left:238.666667pt;}
.x106_c00054{left:241.866667pt;}
.x97_c00054{left:243.733333pt;}
.x42_c00054{left:245.733333pt;}
.x2d_c00054{left:249.333333pt;}
.xab_c00054{left:251.200000pt;}
.xd8_c00054{left:252.666667pt;}
.x4b_c00054{left:253.866667pt;}
.x62_c00054{left:255.600000pt;}
.x5_c00054{left:257.600000pt;}
.x1b_c00054{left:259.333333pt;}
.x3b_c00054{left:264.000000pt;}
.x6a_c00054{left:265.733333pt;}
.x73_c00054{left:267.466667pt;}
.x6_c00054{left:268.800000pt;}
.xce_c00054{left:270.400000pt;}
.x57_c00054{left:271.866667pt;}
.x82_c00054{left:273.600000pt;}
.x8c_c00054{left:274.533333pt;}
.x43_c00054{left:277.066667pt;}
.xe3_c00054{left:278.000000pt;}
.x98_c00054{left:279.333333pt;}
.x2e_c00054{left:280.666667pt;}
.xbc_c00054{left:284.666667pt;}
.xc4_c00054{left:286.133333pt;}
.x12_c00054{left:287.600000pt;}
.xc9_c00054{left:288.666667pt;}
.x2f_c00054{left:290.933333pt;}
.x1_c00054{left:292.800000pt;}
.xc1_c00054{left:294.000000pt;}
.x79_c00054{left:297.466667pt;}
.xb9_c00054{left:299.200000pt;}
.xf7_c00054{left:300.800000pt;}
.x6b_c00054{left:302.533333pt;}
.x10d_c00054{left:305.866667pt;}
.x1c_c00054{left:308.266667pt;}
.x24_c00054{left:310.400000pt;}
.x63_c00054{left:312.533333pt;}
.x4c_c00054{left:314.266667pt;}
.xec_c00054{left:315.466667pt;}
.x8d_c00054{left:317.733333pt;}
.x7_c00054{left:320.266667pt;}
.x1d_c00054{left:322.000000pt;}
.x30_c00054{left:323.600000pt;}
.xc2_c00054{left:325.333333pt;}
.x99_c00054{left:326.666667pt;}
.xb5_c00054{left:327.733333pt;}
.x3c_c00054{left:329.333333pt;}
.xe4_c00054{left:332.133333pt;}
.xa6_c00054{left:335.066667pt;}
.x83_c00054{left:336.933333pt;}
.x44_c00054{left:337.866667pt;}
.xb2_c00054{left:340.800000pt;}
.x74_c00054{left:342.666667pt;}
.xed_c00054{left:344.000000pt;}
.x31_c00054{left:346.933333pt;}
.xd1_c00054{left:347.866667pt;}
.x3d_c00054{left:348.800000pt;}
.xc5_c00054{left:350.400000pt;}
.x7a_c00054{left:351.600000pt;}
.x58_c00054{left:353.866667pt;}
.x1e_c00054{left:356.933333pt;}
.x8e_c00054{left:360.266667pt;}
.x9f_c00054{left:361.333333pt;}
.x84_c00054{left:362.800000pt;}
.xbd_c00054{left:364.400000pt;}
.x13_c00054{left:365.333333pt;}
.x25_c00054{left:366.666667pt;}
.x59_c00054{left:370.533333pt;}
.x45_c00054{left:372.133333pt;}
.x1f_c00054{left:374.266667pt;}
.x8_c00054{left:377.600000pt;}
.xd9_c00054{left:381.600000pt;}
.xc6_c00054{left:382.666667pt;}
.x9a_c00054{left:384.266667pt;}
.x107_c00054{left:386.400000pt;}
.xa0_c00054{left:388.800000pt;}
.x5a_c00054{left:391.333333pt;}
.x32_c00054{left:396.000000pt;}
.xe1_c00054{left:397.066667pt;}
.x46_c00054{left:398.400000pt;}
.xac_c00054{left:400.133333pt;}
.x75_c00054{left:401.600000pt;}
.x50_c00054{left:403.333333pt;}
.x33_c00054{left:404.666667pt;}
.xee_c00054{left:406.133333pt;}
.xa1_c00054{left:408.000000pt;}
.xca_c00054{left:409.333333pt;}
.x9b_c00054{left:412.133333pt;}
.x14_c00054{left:415.200000pt;}
.x20_c00054{left:416.800000pt;}
.xba_c00054{left:418.533333pt;}
.x26_c00054{left:419.466667pt;}
.xd2_c00054{left:421.733333pt;}
.x34_c00054{left:423.200000pt;}
.xd4_c00054{left:424.800000pt;}
.x10e_c00054{left:425.866667pt;}
.x114_c00054{left:427.466667pt;}
.x27_c00054{left:428.400000pt;}
.x85_c00054{left:430.000000pt;}
.xf8_c00054{left:432.533333pt;}
.x108_c00054{left:433.733333pt;}
.x64_c00054{left:434.666667pt;}
.x5b_c00054{left:435.866667pt;}
.x7b_c00054{left:439.333333pt;}
.xa7_c00054{left:440.933333pt;}
.x8f_c00054{left:442.266667pt;}
.x9_c00054{left:443.200000pt;}
.x47_c00054{left:444.800000pt;}
.x115_c00054{left:446.000000pt;}
.x3e_c00054{left:447.066667pt;}
.x51_c00054{left:448.400000pt;}
.x9c_c00054{left:451.866667pt;}
.xf0_c00054{left:453.333333pt;}
.xa_c00054{left:454.400000pt;}
.xe5_c00054{left:455.333333pt;}
.x5c_c00054{left:456.666667pt;}
.x21_c00054{left:459.733333pt;}
.x90_c00054{left:461.733333pt;}
.xd5_c00054{left:464.133333pt;}
.xb_c00054{left:466.266667pt;}
.xc7_c00054{left:467.866667pt;}
.xb6_c00054{left:471.466667pt;}
.x35_c00054{left:472.533333pt;}
.xe9_c00054{left:474.933333pt;}
.x65_c00054{left:476.000000pt;}
.xad_c00054{left:477.600000pt;}
.xf9_c00054{left:479.600000pt;}
.x86_c00054{left:483.066667pt;}
.xb7_c00054{left:484.266667pt;}
.x6c_c00054{left:489.333333pt;}
.x11f_c00054{left:491.066667pt;}
.xa2_c00054{left:493.066667pt;}
.x28_c00054{left:494.266667pt;}
.x7c_c00054{left:495.333333pt;}
.x5d_c00054{left:496.666667pt;}
.xda_c00054{left:498.133333pt;}
.xae_c00054{left:499.733333pt;}
.x91_c00054{left:500.800000pt;}
.xd6_c00054{left:503.200000pt;}
.x15_c00054{left:504.133333pt;}
.xa8_c00054{left:505.333333pt;}
.xe2_c00054{left:507.466667pt;}
.xf1_c00054{left:508.666667pt;}
.xbe_c00054{left:510.400000pt;}
.x36_c00054{left:514.133333pt;}
.x7d_c00054{left:516.133333pt;}
.x101_c00054{left:517.333333pt;}
.xe6_c00054{left:518.666667pt;}
.x52_c00054{left:519.733333pt;}
.x2_c00054{left:522.933333pt;}
.xc_c00054{left:524.800000pt;}
.x92_c00054{left:526.666667pt;}
.x22_c00054{left:528.533333pt;}
.xfa_c00054{left:530.533333pt;}
.xbb_c00054{left:534.000000pt;}
.x6d_c00054{left:536.400000pt;}
.x109_c00054{left:539.333333pt;}
.x120_c00054{left:540.533333pt;}
.xea_c00054{left:541.466667pt;}
.xaf_c00054{left:544.533333pt;}
.x23_c00054{left:546.400000pt;}
.x16_c00054{left:548.266667pt;}
.x7e_c00054{left:550.000000pt;}
.x66_c00054{left:551.600000pt;}
.x37_c00054{left:553.866667pt;}
.xa3_c00054{left:556.000000pt;}
.x87_c00054{left:558.266667pt;}
.x29_c00054{left:559.866667pt;}
.xd_c00054{left:560.933333pt;}
.xa9_c00054{left:564.800000pt;}
.x93_c00054{left:566.400000pt;}
.x88_c00054{left:568.533333pt;}
.xe_c00054{left:570.800000pt;}
.x7f_c00054{left:572.133333pt;}
.xdb_c00054{left:573.600000pt;}
.x17_c00054{left:575.200000pt;}
.x76_c00054{left:576.800000pt;}
.x10f_c00054{left:578.000000pt;}
.x5e_c00054{left:580.800000pt;}
.x2a_c00054{left:582.533333pt;}
.x80_c00054{left:583.600000pt;}
.x94_c00054{left:584.933333pt;}
.xaa_c00054{left:585.866667pt;}
.xbf_c00054{left:587.200000pt;}
.xa4_c00054{left:589.866667pt;}
.x48_c00054{left:592.933333pt;}
.xd7_c00054{left:595.333333pt;}
.x77_c00054{left:596.933333pt;}
.x3f_c00054{left:598.400000pt;}
.x9d_c00054{left:600.266667pt;}
.xcf_c00054{left:602.533333pt;}
.xa5_c00054{left:606.800000pt;}
.x89_c00054{left:608.266667pt;}
.xef_c00054{left:609.200000pt;}
.x67_c00054{left:610.133333pt;}
.x6e_c00054{left:612.533333pt;}
.x49_c00054{left:615.066667pt;}
.xc8_c00054{left:617.066667pt;}
.x18_c00054{left:618.133333pt;}
.x38_c00054{left:619.733333pt;}
.x68_c00054{left:621.600000pt;}
.xc3_c00054{left:622.800000pt;}
.x2b_c00054{left:625.733333pt;}
.x6f_c00054{left:627.866667pt;}
.x53_c00054{left:628.933333pt;}
.xb8_c00054{left:632.000000pt;}
.xfb_c00054{left:633.866667pt;}
.x39_c00054{left:635.733333pt;}
.x8a_c00054{left:637.066667pt;}
.xf_c00054{left:638.266667pt;}
.x54_c00054{left:639.866667pt;}
.x78_c00054{left:640.800000pt;}
.xcb_c00054{left:642.933333pt;}
.x19_c00054{left:644.400000pt;}
.xe7_c00054{left:645.466667pt;}
.x121_c00054{left:648.266667pt;}
.x11b_c00054{left:649.333333pt;}
.x3a_c00054{left:654.666667pt;}
.x8b_c00054{left:656.266667pt;}
.xdc_c00054{left:658.133333pt;}
.x110_c00054{left:661.866667pt;}
.x10_c00054{left:662.933333pt;}
.xb0_c00054{left:664.800000pt;}
.x5f_c00054{left:665.866667pt;}
.x4a_c00054{left:668.533333pt;}
.x10a_c00054{left:671.600000pt;}
.x69_c00054{left:673.733333pt;}
.xd0_c00054{left:676.400000pt;}
.x3_c00054{left:677.866667pt;}
.x40_c00054{left:681.600000pt;}
.x1a_c00054{left:682.800000pt;}
.x81_c00054{left:686.666667pt;}
.x2c_c00054{left:692.266667pt;}
}





/* 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_c00055 {
    display:none;
  }
  .loading-indicator_c00055.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00055 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_c00055 { 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_c00055" -> "#page-container .classname_c00055")
 */
.pf_c00055 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00055 { /* 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_c00055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00055 { /* 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_c00055 { /* 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_c00055 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00055 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00055 {overflow:visible;}
  }
}
.c_c00055 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00055 { /* 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_c00055:after { /* webkit #35443 */
  content: '';
}
.t_c00055:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00055 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 */
}
.__c00055 { /* 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_c00055 { /* info for Javascript */
  display:none;
}
.l_c00055 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00055 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00055 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00055: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_c00055 {
    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_c00055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00055.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_c00055 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00055;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.000000;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;}
.mb6_c00055{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00055{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00055{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00055{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m71_c00055{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00055{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md3_c00055{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00055{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00055{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m77_c00055{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md9_c00055{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.maa_c00055{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m29_c00055{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00055{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00055{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00055{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00055{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m80_c00055{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00055{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m75_c00055{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00055{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00055{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00055{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m32_c00055{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00055{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m18_c00055{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00055{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00055{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m45_c00055{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00055{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00055{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00055{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00055{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00055{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mc_c00055{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m61_c00055{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m47_c00055{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m30_c00055{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m57_c00055{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m53_c00055{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m7_c00055{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00055{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m46_c00055{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m72_c00055{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m97_c00055{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m23_c00055{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m49_c00055{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m89_c00055{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m38_c00055{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m13_c00055{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m69_c00055{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00055{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md1_c00055{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.md4_c00055{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00055{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m9_c00055{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m79_c00055{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m74_c00055{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m25_c00055{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00055{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00055{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m48_c00055{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mce_c00055{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00055{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00055{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m14_c00055{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00055{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m50_c00055{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00055{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m73_c00055{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m87_c00055{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00055{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00055{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m68_c00055{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00055{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00055{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m42_c00055{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00055{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m85_c00055{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m10_c00055{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00055{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m36_c00055{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md_c00055{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00055{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m37_c00055{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00055{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m67_c00055{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00055{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00055{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00055{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00055{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00055{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m26_c00055{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mad_c00055{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00055{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00055{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m19_c00055{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00055{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m4_c00055{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m40_c00055{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m83_c00055{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m33_c00055{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m20_c00055{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m39_c00055{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m95_c00055{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m92_c00055{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00055{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00055{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00055{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00055{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m16_c00055{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00055{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mca_c00055{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m63_c00055{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m21_c00055{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00055{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m58_c00055{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00055{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m62_c00055{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m70_c00055{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00055{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m11_c00055{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m64_c00055{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m94_c00055{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m66_c00055{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m78_c00055{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8_c00055{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m96_c00055{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00055{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md2_c00055{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00055{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m93_c00055{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m55_c00055{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00055{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00055{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m88_c00055{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00055{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m90_c00055{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00055{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m22_c00055{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md6_c00055{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m91_c00055{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00055{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00055{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00055{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m99_c00055{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m82_c00055{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m35_c00055{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me_c00055{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00055{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00055{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00055{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00055{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m60_c00055{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m15_c00055{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md7_c00055{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m56_c00055{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00055{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md0_c00055{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00055{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m12_c00055{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m65_c00055{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m43_c00055{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00055{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00055{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m54_c00055{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mf_c00055{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00055{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mae_c00055{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma_c00055{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m81_c00055{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00055{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00055{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m44_c00055{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00055{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00055{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00055{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00055{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m98_c00055{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5_c00055{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m34_c00055{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m24_c00055{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00055{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mac_c00055{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mab_c00055{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m86_c00055{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m84_c00055{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00055{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m59_c00055{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00055{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00055{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m41_c00055{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md5_c00055{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.maf_c00055{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00055{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mda_c00055{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mba_c00055{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00055{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00055{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00055{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.md8_c00055{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m76_c00055{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00055{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00055{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m52_c00055{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00055{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00055{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m31_c00055{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m17_c00055{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m28_c00055{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m6_c00055{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00055{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m27_c00055{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m51_c00055{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00055{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00055{transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00055{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00055{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls0_c00055{letter-spacing:0.000000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{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__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00055{word-spacing:-9.262009px;}
.ws3_c00055{word-spacing:-8.292683px;}
.ws5_c00055{word-spacing:-8.195719px;}
.ws2_c00055{word-spacing:-7.500000px;}
.ws8_c00055{word-spacing:-6.160714px;}
.ws9_c00055{word-spacing:0.000000px;}
.ws0_c00055{word-spacing:0.786780px;}
.ws6_c00055{word-spacing:3.902439px;}
.ws7_c00055{word-spacing:4.965018px;}
.ws1_c00055{word-spacing:17.544029px;}
.fc0_c00055{color:transparent;}
.fs3_c00055{font-size:30.000000px;}
.fs2_c00055{font-size:36.000000px;}
.fs1_c00055{font-size:42.000000px;}
.fs7_c00055{font-size:48.000000px;}
.fs5_c00055{font-size:60.000000px;}
.fs6_c00055{font-size:66.000000px;}
.fs4_c00055{font-size:72.000000px;}
.fs0_c00055{font-size:84.000000px;}
.y0_c00055{bottom:0.000000px;}
.y3f_c00055{bottom:185.400000px;}
.y3c_c00055{bottom:209.400000px;}
.y3b_c00055{bottom:227.400000px;}
.y3a_c00055{bottom:245.400000px;}
.y3d_c00055{bottom:245.550000px;}
.y39_c00055{bottom:263.100000px;}
.y38_c00055{bottom:280.800000px;}
.y36_c00055{bottom:306.000000px;}
.y35_c00055{bottom:307.050000px;}
.y34_c00055{bottom:325.050000px;}
.y37_c00055{bottom:333.750000px;}
.y33_c00055{bottom:342.750000px;}
.y32_c00055{bottom:362.100000px;}
.y31_c00055{bottom:387.150000px;}
.y30_c00055{bottom:404.850000px;}
.y2f_c00055{bottom:422.850000px;}
.y5_c00055{bottom:431.700000px;}
.y2e_c00055{bottom:440.550000px;}
.y2d_c00055{bottom:458.550000px;}
.y2c_c00055{bottom:476.250000px;}
.y2a_c00055{bottom:502.800000px;}
.y3e_c00055{bottom:504.300000px;}
.y29_c00055{bottom:520.500000px;}
.y28_c00055{bottom:538.500000px;}
.y6_c00055{bottom:550.800000px;}
.y2b_c00055{bottom:555.450000px;}
.y27_c00055{bottom:556.200000px;}
.y26_c00055{bottom:574.200000px;}
.y25_c00055{bottom:592.200000px;}
.y24_c00055{bottom:609.900000px;}
.y23_c00055{bottom:645.150000px;}
.y22_c00055{bottom:650.550000px;}
.y21_c00055{bottom:685.050000px;}
.y20_c00055{bottom:703.350000px;}
.y1f_c00055{bottom:721.050000px;}
.y1e_c00055{bottom:738.750000px;}
.y1c_c00055{bottom:763.950000px;}
.y1b_c00055{bottom:782.700000px;}
.y1a_c00055{bottom:800.850000px;}
.y19_c00055{bottom:818.550000px;}
.y1d_c00055{bottom:824.700000px;}
.y4_c00055{bottom:827.700000px;}
.y18_c00055{bottom:836.550000px;}
.y17_c00055{bottom:854.250000px;}
.y16_c00055{bottom:872.250000px;}
.y15_c00055{bottom:889.950000px;}
.y14_c00055{bottom:916.500000px;}
.y13_c00055{bottom:934.200000px;}
.y3_c00055{bottom:940.650000px;}
.y12_c00055{bottom:952.200000px;}
.y11_c00055{bottom:970.200000px;}
.yf_c00055{bottom:996.750000px;}
.ye_c00055{bottom:1014.450000px;}
.y2_c00055{bottom:1015.950000px;}
.y10_c00055{bottom:1020.600000px;}
.yd_c00055{bottom:1032.750000px;}
.yc_c00055{bottom:1050.450000px;}
.ya_c00055{bottom:1076.700000px;}
.y9_c00055{bottom:1095.000000px;}
.yb_c00055{bottom:1100.850000px;}
.y8_c00055{bottom:1112.700000px;}
.y7_c00055{bottom:1130.700000px;}
.y1_c00055{bottom:1157.400000px;}
.h5_c00055{height:30.000000px;}
.h4_c00055{height:36.000000px;}
.h3_c00055{height:42.000000px;}
.h9_c00055{height:48.000000px;}
.h7_c00055{height:60.000000px;}
.h8_c00055{height:66.000000px;}
.h6_c00055{height:72.000000px;}
.h2_c00055{height:84.000000px;}
.h0_c00055{height:1280.160003px;}
.h1_c00055{height:1280.250000px;}
.w0_c00055{width:948.600036px;}
.w1_c00055{width:948.750000px;}
.x0_c00055{left:0.000000px;}
.x2_c00055{left:180.300000px;}
.x3_c00055{left:182.550000px;}
.x6_c00055{left:183.900000px;}
.x4_c00055{left:185.700000px;}
.x113_c00055{left:186.900000px;}
.xd7_c00055{left:194.700000px;}
.x2b_c00055{left:213.450000px;}
.xa2_c00055{left:214.500000px;}
.x5_c00055{left:215.550000px;}
.xd8_c00055{left:217.350000px;}
.x102_c00055{left:219.150000px;}
.x114_c00055{left:280.050000px;}
.x115_c00055{left:281.100000px;}
.x7_c00055{left:296.700000px;}
.x75_c00055{left:297.750000px;}
.xa3_c00055{left:299.850000px;}
.xd9_c00055{left:302.100000px;}
.x103_c00055{left:303.900000px;}
.x10_c00055{left:315.450000px;}
.x4a_c00055{left:316.650000px;}
.x83_c00055{left:318.000000px;}
.xb7_c00055{left:320.100000px;}
.xe4_c00055{left:321.300000px;}
.xd1_c00055{left:328.350000px;}
.x99_c00055{left:335.850000px;}
.xd2_c00055{left:337.050000px;}
.xaa_c00055{left:340.650000px;}
.x111_c00055{left:341.700000px;}
.xb8_c00055{left:342.750000px;}
.xf9_c00055{left:344.850000px;}
.xa1_c00055{left:346.200000px;}
.xf2_c00055{left:347.400000px;}
.x5c_c00055{left:351.300000px;}
.xee_c00055{left:353.700000px;}
.x6c_c00055{left:355.350000px;}
.x3a_c00055{left:356.400000px;}
.xd5_c00055{left:358.050000px;}
.x104_c00055{left:360.450000px;}
.x2c_c00055{left:362.400000px;}
.xaf_c00055{left:363.450000px;}
.x6d_c00055{left:365.400000px;}
.x7b_c00055{left:366.450000px;}
.x43_c00055{left:369.150000px;}
.x10d_c00055{left:370.800000px;}
.x24_c00055{left:371.850000px;}
.xda_c00055{left:374.400000px;}
.x11_c00055{left:375.600000px;}
.xeb_c00055{left:376.650000px;}
.xab_c00055{left:377.700000px;}
.xc9_c00055{left:379.050000px;}
.x64_c00055{left:380.400000px;}
.x9a_c00055{left:382.650000px;}
.x94_c00055{left:384.000000px;}
.x100_c00055{left:385.050000px;}
.x8e_c00055{left:386.700000px;}
.x25_c00055{left:389.100000px;}
.x4b_c00055{left:390.150000px;}
.x54_c00055{left:391.200000px;}
.x10a_c00055{left:393.600000px;}
.x5d_c00055{left:394.950000px;}
.x12_c00055{left:397.500000px;}
.xb9_c00055{left:398.850000px;}
.x88_c00055{left:400.050000px;}
.x55_c00055{left:402.300000px;}
.x1c_c00055{left:403.500000px;}
.x9b_c00055{left:407.100000px;}
.xba_c00055{left:408.900000px;}
.x1_c00055{left:412.950000px;}
.xa4_c00055{left:414.750000px;}
.x6e_c00055{left:416.100000px;}
.x7c_c00055{left:418.350000px;}
.x8_c00055{left:419.850000px;}
.x89_c00055{left:423.150000px;}
.xd6_c00055{left:424.350000px;}
.x2d_c00055{left:427.950000px;}
.xfa_c00055{left:429.750000px;}
.x6f_c00055{left:433.050000px;}
.x26_c00055{left:434.850000px;}
.xcf_c00055{left:438.300000px;}
.xf3_c00055{left:440.250000px;}
.x95_c00055{left:443.400000px;}
.x76_c00055{left:446.400000px;}
.x9c_c00055{left:448.500000px;}
.x13_c00055{left:449.700000px;}
.xd3_c00055{left:450.750000px;}
.xac_c00055{left:451.950000px;}
.xbb_c00055{left:453.150000px;}
.x8f_c00055{left:454.350000px;}
.xc1_c00055{left:455.400000px;}
.x65_c00055{left:458.850000px;}
.x3b_c00055{left:460.800000px;}
.x112_c00055{left:462.300000px;}
.x5e_c00055{left:463.350000px;}
.x105_c00055{left:464.850000px;}
.xef_c00055{left:467.100000px;}
.x56_c00055{left:469.200000px;}
.x10e_c00055{left:471.150000px;}
.x27_c00055{left:472.350000px;}
.xb0_c00055{left:474.750000px;}
.x70_c00055{left:475.950000px;}
.xdd_c00055{left:477.450000px;}
.xca_c00055{left:478.800000px;}
.x10f_c00055{left:480.450000px;}
.xa5_c00055{left:482.400000px;}
.x14_c00055{left:484.200000px;}
.xb1_c00055{left:486.300000px;}
.x101_c00055{left:487.650000px;}
.x96_c00055{left:490.200000px;}
.x90_c00055{left:491.400000px;}
.x8a_c00055{left:492.600000px;}
.x2e_c00055{left:494.850000px;}
.xd0_c00055{left:495.900000px;}
.x7d_c00055{left:497.250000px;}
.x9_c00055{left:500.850000px;}
.xc0_c00055{left:502.650000px;}
.xec_c00055{left:504.450000px;}
.x57_c00055{left:509.550000px;}
.x1d_c00055{left:511.050000px;}
.x77_c00055{left:512.250000px;}
.x15_c00055{left:513.750000px;}
.xe8_c00055{left:515.700000px;}
.x84_c00055{left:516.750000px;}
.xbc_c00055{left:518.700000px;}
.xb2_c00055{left:520.200000px;}
.x66_c00055{left:522.150000px;}
.x9d_c00055{left:523.350000px;}
.xff_c00055{left:525.750000px;}
.x71_c00055{left:527.850000px;}
.xcd_c00055{left:528.900000px;}
.x7e_c00055{left:532.200000px;}
.x3c_c00055{left:536.400000px;}
.xe5_c00055{left:537.900000px;}
.x72_c00055{left:540.750000px;}
.xe1_c00055{left:542.700000px;}
.x9e_c00055{left:544.650000px;}
.x5f_c00055{left:547.200000px;}
.x2f_c00055{left:548.550000px;}
.xf0_c00055{left:551.400000px;}
.x1e_c00055{left:552.450000px;}
.x4c_c00055{left:556.050000px;}
.xa6_c00055{left:558.450000px;}
.xa_c00055{left:559.500000px;}
.x7f_c00055{left:560.700000px;}
.xe9_c00055{left:564.300000px;}
.x4d_c00055{left:565.800000px;}
.x28_c00055{left:567.000000px;}
.x58_c00055{left:568.950000px;}
.x3d_c00055{left:570.300000px;}
.x30_c00055{left:573.750000px;}
.x85_c00055{left:576.450000px;}
.x4e_c00055{left:577.650000px;}
.x67_c00055{left:579.450000px;}
.x9f_c00055{left:580.650000px;}
.x73_c00055{left:583.200000px;}
.x3e_c00055{left:584.700000px;}
.xb3_c00055{left:585.750000px;}
.x44_c00055{left:589.050000px;}
.x78_c00055{left:592.200000px;}
.xce_c00055{left:593.400000px;}
.x16_c00055{left:597.300000px;}
.xf4_c00055{left:600.750000px;}
.x45_c00055{left:603.450000px;}
.x97_c00055{left:609.000000px;}
.xbd_c00055{left:611.100000px;}
.x31_c00055{left:612.300000px;}
.xfb_c00055{left:615.450000px;}
.xc5_c00055{left:616.650000px;}
.x8b_c00055{left:618.300000px;}
.x29_c00055{left:619.950000px;}
.x1f_c00055{left:624.450000px;}
.xb_c00055{left:626.100000px;}
.x86_c00055{left:627.900000px;}
.x108_c00055{left:631.500000px;}
.xbe_c00055{left:632.700000px;}
.xea_c00055{left:634.200000px;}
.x46_c00055{left:637.350000px;}
.x91_c00055{left:639.300000px;}
.xc_c00055{left:642.300000px;}
.x80_c00055{left:643.800000px;}
.x3f_c00055{left:645.150000px;}
.x68_c00055{left:648.150000px;}
.xe2_c00055{left:649.200000px;}
.xe6_c00055{left:650.550000px;}
.x10b_c00055{left:652.500000px;}
.x32_c00055{left:654.750000px;}
.x2a_c00055{left:657.000000px;}
.xdb_c00055{left:658.800000px;}
.x17_c00055{left:660.600000px;}
.x109_c00055{left:662.100000px;}
.x33_c00055{left:664.050000px;}
.xa0_c00055{left:666.000000px;}
.x69_c00055{left:668.250000px;}
.x40_c00055{left:670.650000px;}
.x20_c00055{left:672.000000px;}
.xc2_c00055{left:675.300000px;}
.xf5_c00055{left:676.650000px;}
.x4f_c00055{left:678.000000px;}
.x60_c00055{left:679.950000px;}
.xdc_c00055{left:682.200000px;}
.x47_c00055{left:683.400000px;}
.x87_c00055{left:689.400000px;}
.xf1_c00055{left:691.050000px;}
.xc6_c00055{left:696.150000px;}
.x34_c00055{left:697.200000px;}
.x10c_c00055{left:698.250000px;}
.x59_c00055{left:700.950000px;}
.xb4_c00055{left:702.000000px;}
.x81_c00055{left:705.750000px;}
.xd4_c00055{left:709.950000px;}
.x74_c00055{left:711.000000px;}
.xfc_c00055{left:712.650000px;}
.xd_c00055{left:714.300000px;}
.x35_c00055{left:717.750000px;}
.xa7_c00055{left:720.150000px;}
.x50_c00055{left:721.500000px;}
.x6a_c00055{left:723.750000px;}
.x98_c00055{left:726.300000px;}
.x48_c00055{left:728.400000px;}
.xcb_c00055{left:731.850000px;}
.x61_c00055{left:733.200000px;}
.x21_c00055{left:735.000000px;}
.x18_c00055{left:736.950000px;}
.xde_c00055{left:738.450000px;}
.x8c_c00055{left:739.500000px;}
.x110_c00055{left:741.300000px;}
.xad_c00055{left:743.550000px;}
.xf6_c00055{left:745.800000px;}
.x79_c00055{left:747.000000px;}
.xbf_c00055{left:748.650000px;}
.x92_c00055{left:750.450000px;}
.xc3_c00055{left:751.950000px;}
.x36_c00055{left:753.450000px;}
.xe7_c00055{left:757.500000px;}
.x19_c00055{left:758.850000px;}
.xfd_c00055{left:760.950000px;}
.x41_c00055{left:763.200000px;}
.x62_c00055{left:768.900000px;}
.x51_c00055{left:770.850000px;}
.xdf_c00055{left:771.900000px;}
.xe_c00055{left:774.450000px;}
.xc4_c00055{left:775.650000px;}
.xc7_c00055{left:777.900000px;}
.x106_c00055{left:779.400000px;}
.x82_c00055{left:782.400000px;}
.x63_c00055{left:784.050000px;}
.x5a_c00055{left:785.550000px;}
.x52_c00055{left:787.800000px;}
.x49_c00055{left:790.350000px;}
.x107_c00055{left:793.050000px;}
.x1a_c00055{left:794.550000px;}
.x37_c00055{left:797.400000px;}
.x5b_c00055{left:800.250000px;}
.xf_c00055{left:802.500000px;}
.x22_c00055{left:804.900000px;}
.xa8_c00055{left:807.900000px;}
.xcc_c00055{left:809.250000px;}
.xb5_c00055{left:814.650000px;}
.x53_c00055{left:818.100000px;}
.xed_c00055{left:819.450000px;}
.x38_c00055{left:823.350000px;}
.xa9_c00055{left:825.150000px;}
.xc8_c00055{left:827.250000px;}
.x93_c00055{left:828.600000px;}
.x6b_c00055{left:830.550000px;}
.xb6_c00055{left:831.600000px;}
.xe0_c00055{left:832.800000px;}
.xfe_c00055{left:834.000000px;}
.x39_c00055{left:835.950000px;}
.xae_c00055{left:838.650000px;}
.xe3_c00055{left:840.000000px;}
.x8d_c00055{left:842.100000px;}
.xf7_c00055{left:846.900000px;}
.x1b_c00055{left:850.650000px;}
.x7a_c00055{left:854.250000px;}
.xf8_c00055{left:856.200000px;}
.x23_c00055{left:860.700000px;}
.x42_c00055{left:861.900000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws4_c00055{word-spacing:-8.232897pt;}
.ws3_c00055{word-spacing:-7.371274pt;}
.ws5_c00055{word-spacing:-7.285083pt;}
.ws2_c00055{word-spacing:-6.666667pt;}
.ws8_c00055{word-spacing:-5.476190pt;}
.ws9_c00055{word-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.699360pt;}
.ws6_c00055{word-spacing:3.468835pt;}
.ws7_c00055{word-spacing:4.413349pt;}
.ws1_c00055{word-spacing:15.594692pt;}
.fs3_c00055{font-size:26.666667pt;}
.fs2_c00055{font-size:32.000000pt;}
.fs1_c00055{font-size:37.333333pt;}
.fs7_c00055{font-size:42.666667pt;}
.fs5_c00055{font-size:53.333333pt;}
.fs6_c00055{font-size:58.666667pt;}
.fs4_c00055{font-size:64.000000pt;}
.fs0_c00055{font-size:74.666667pt;}
.y0_c00055{bottom:0.000000pt;}
.y3f_c00055{bottom:164.800000pt;}
.y3c_c00055{bottom:186.133333pt;}
.y3b_c00055{bottom:202.133333pt;}
.y3a_c00055{bottom:218.133333pt;}
.y3d_c00055{bottom:218.266667pt;}
.y39_c00055{bottom:233.866667pt;}
.y38_c00055{bottom:249.600000pt;}
.y36_c00055{bottom:272.000000pt;}
.y35_c00055{bottom:272.933333pt;}
.y34_c00055{bottom:288.933333pt;}
.y37_c00055{bottom:296.666667pt;}
.y33_c00055{bottom:304.666667pt;}
.y32_c00055{bottom:321.866667pt;}
.y31_c00055{bottom:344.133333pt;}
.y30_c00055{bottom:359.866667pt;}
.y2f_c00055{bottom:375.866667pt;}
.y5_c00055{bottom:383.733333pt;}
.y2e_c00055{bottom:391.600000pt;}
.y2d_c00055{bottom:407.600000pt;}
.y2c_c00055{bottom:423.333333pt;}
.y2a_c00055{bottom:446.933333pt;}
.y3e_c00055{bottom:448.266667pt;}
.y29_c00055{bottom:462.666667pt;}
.y28_c00055{bottom:478.666667pt;}
.y6_c00055{bottom:489.600000pt;}
.y2b_c00055{bottom:493.733333pt;}
.y27_c00055{bottom:494.400000pt;}
.y26_c00055{bottom:510.400000pt;}
.y25_c00055{bottom:526.400000pt;}
.y24_c00055{bottom:542.133333pt;}
.y23_c00055{bottom:573.466667pt;}
.y22_c00055{bottom:578.266667pt;}
.y21_c00055{bottom:608.933333pt;}
.y20_c00055{bottom:625.200000pt;}
.y1f_c00055{bottom:640.933333pt;}
.y1e_c00055{bottom:656.666667pt;}
.y1c_c00055{bottom:679.066667pt;}
.y1b_c00055{bottom:695.733333pt;}
.y1a_c00055{bottom:711.866667pt;}
.y19_c00055{bottom:727.600000pt;}
.y1d_c00055{bottom:733.066667pt;}
.y4_c00055{bottom:735.733333pt;}
.y18_c00055{bottom:743.600000pt;}
.y17_c00055{bottom:759.333333pt;}
.y16_c00055{bottom:775.333333pt;}
.y15_c00055{bottom:791.066667pt;}
.y14_c00055{bottom:814.666667pt;}
.y13_c00055{bottom:830.400000pt;}
.y3_c00055{bottom:836.133333pt;}
.y12_c00055{bottom:846.400000pt;}
.y11_c00055{bottom:862.400000pt;}
.yf_c00055{bottom:886.000000pt;}
.ye_c00055{bottom:901.733333pt;}
.y2_c00055{bottom:903.066667pt;}
.y10_c00055{bottom:907.200000pt;}
.yd_c00055{bottom:918.000000pt;}
.yc_c00055{bottom:933.733333pt;}
.ya_c00055{bottom:957.066667pt;}
.y9_c00055{bottom:973.333333pt;}
.yb_c00055{bottom:978.533333pt;}
.y8_c00055{bottom:989.066667pt;}
.y7_c00055{bottom:1005.066667pt;}
.y1_c00055{bottom:1028.800000pt;}
.h5_c00055{height:26.666667pt;}
.h4_c00055{height:32.000000pt;}
.h3_c00055{height:37.333333pt;}
.h9_c00055{height:42.666667pt;}
.h7_c00055{height:53.333333pt;}
.h8_c00055{height:58.666667pt;}
.h6_c00055{height:64.000000pt;}
.h2_c00055{height:74.666667pt;}
.h0_c00055{height:1137.920003pt;}
.h1_c00055{height:1138.000000pt;}
.w0_c00055{width:843.200032pt;}
.w1_c00055{width:843.333333pt;}
.x0_c00055{left:0.000000pt;}
.x2_c00055{left:160.266667pt;}
.x3_c00055{left:162.266667pt;}
.x6_c00055{left:163.466667pt;}
.x4_c00055{left:165.066667pt;}
.x113_c00055{left:166.133333pt;}
.xd7_c00055{left:173.066667pt;}
.x2b_c00055{left:189.733333pt;}
.xa2_c00055{left:190.666667pt;}
.x5_c00055{left:191.600000pt;}
.xd8_c00055{left:193.200000pt;}
.x102_c00055{left:194.800000pt;}
.x114_c00055{left:248.933333pt;}
.x115_c00055{left:249.866667pt;}
.x7_c00055{left:263.733333pt;}
.x75_c00055{left:264.666667pt;}
.xa3_c00055{left:266.533333pt;}
.xd9_c00055{left:268.533333pt;}
.x103_c00055{left:270.133333pt;}
.x10_c00055{left:280.400000pt;}
.x4a_c00055{left:281.466667pt;}
.x83_c00055{left:282.666667pt;}
.xb7_c00055{left:284.533333pt;}
.xe4_c00055{left:285.600000pt;}
.xd1_c00055{left:291.866667pt;}
.x99_c00055{left:298.533333pt;}
.xd2_c00055{left:299.600000pt;}
.xaa_c00055{left:302.800000pt;}
.x111_c00055{left:303.733333pt;}
.xb8_c00055{left:304.666667pt;}
.xf9_c00055{left:306.533333pt;}
.xa1_c00055{left:307.733333pt;}
.xf2_c00055{left:308.800000pt;}
.x5c_c00055{left:312.266667pt;}
.xee_c00055{left:314.400000pt;}
.x6c_c00055{left:315.866667pt;}
.x3a_c00055{left:316.800000pt;}
.xd5_c00055{left:318.266667pt;}
.x104_c00055{left:320.400000pt;}
.x2c_c00055{left:322.133333pt;}
.xaf_c00055{left:323.066667pt;}
.x6d_c00055{left:324.800000pt;}
.x7b_c00055{left:325.733333pt;}
.x43_c00055{left:328.133333pt;}
.x10d_c00055{left:329.600000pt;}
.x24_c00055{left:330.533333pt;}
.xda_c00055{left:332.800000pt;}
.x11_c00055{left:333.866667pt;}
.xeb_c00055{left:334.800000pt;}
.xab_c00055{left:335.733333pt;}
.xc9_c00055{left:336.933333pt;}
.x64_c00055{left:338.133333pt;}
.x9a_c00055{left:340.133333pt;}
.x94_c00055{left:341.333333pt;}
.x100_c00055{left:342.266667pt;}
.x8e_c00055{left:343.733333pt;}
.x25_c00055{left:345.866667pt;}
.x4b_c00055{left:346.800000pt;}
.x54_c00055{left:347.733333pt;}
.x10a_c00055{left:349.866667pt;}
.x5d_c00055{left:351.066667pt;}
.x12_c00055{left:353.333333pt;}
.xb9_c00055{left:354.533333pt;}
.x88_c00055{left:355.600000pt;}
.x55_c00055{left:357.600000pt;}
.x1c_c00055{left:358.666667pt;}
.x9b_c00055{left:361.866667pt;}
.xba_c00055{left:363.466667pt;}
.x1_c00055{left:367.066667pt;}
.xa4_c00055{left:368.666667pt;}
.x6e_c00055{left:369.866667pt;}
.x7c_c00055{left:371.866667pt;}
.x8_c00055{left:373.200000pt;}
.x89_c00055{left:376.133333pt;}
.xd6_c00055{left:377.200000pt;}
.x2d_c00055{left:380.400000pt;}
.xfa_c00055{left:382.000000pt;}
.x6f_c00055{left:384.933333pt;}
.x26_c00055{left:386.533333pt;}
.xcf_c00055{left:389.600000pt;}
.xf3_c00055{left:391.333333pt;}
.x95_c00055{left:394.133333pt;}
.x76_c00055{left:396.800000pt;}
.x9c_c00055{left:398.666667pt;}
.x13_c00055{left:399.733333pt;}
.xd3_c00055{left:400.666667pt;}
.xac_c00055{left:401.733333pt;}
.xbb_c00055{left:402.800000pt;}
.x8f_c00055{left:403.866667pt;}
.xc1_c00055{left:404.800000pt;}
.x65_c00055{left:407.866667pt;}
.x3b_c00055{left:409.600000pt;}
.x112_c00055{left:410.933333pt;}
.x5e_c00055{left:411.866667pt;}
.x105_c00055{left:413.200000pt;}
.xef_c00055{left:415.200000pt;}
.x56_c00055{left:417.066667pt;}
.x10e_c00055{left:418.800000pt;}
.x27_c00055{left:419.866667pt;}
.xb0_c00055{left:422.000000pt;}
.x70_c00055{left:423.066667pt;}
.xdd_c00055{left:424.400000pt;}
.xca_c00055{left:425.600000pt;}
.x10f_c00055{left:427.066667pt;}
.xa5_c00055{left:428.800000pt;}
.x14_c00055{left:430.400000pt;}
.xb1_c00055{left:432.266667pt;}
.x101_c00055{left:433.466667pt;}
.x96_c00055{left:435.733333pt;}
.x90_c00055{left:436.800000pt;}
.x8a_c00055{left:437.866667pt;}
.x2e_c00055{left:439.866667pt;}
.xd0_c00055{left:440.800000pt;}
.x7d_c00055{left:442.000000pt;}
.x9_c00055{left:445.200000pt;}
.xc0_c00055{left:446.800000pt;}
.xec_c00055{left:448.400000pt;}
.x57_c00055{left:452.933333pt;}
.x1d_c00055{left:454.266667pt;}
.x77_c00055{left:455.333333pt;}
.x15_c00055{left:456.666667pt;}
.xe8_c00055{left:458.400000pt;}
.x84_c00055{left:459.333333pt;}
.xbc_c00055{left:461.066667pt;}
.xb2_c00055{left:462.400000pt;}
.x66_c00055{left:464.133333pt;}
.x9d_c00055{left:465.200000pt;}
.xff_c00055{left:467.333333pt;}
.x71_c00055{left:469.200000pt;}
.xcd_c00055{left:470.133333pt;}
.x7e_c00055{left:473.066667pt;}
.x3c_c00055{left:476.800000pt;}
.xe5_c00055{left:478.133333pt;}
.x72_c00055{left:480.666667pt;}
.xe1_c00055{left:482.400000pt;}
.x9e_c00055{left:484.133333pt;}
.x5f_c00055{left:486.400000pt;}
.x2f_c00055{left:487.600000pt;}
.xf0_c00055{left:490.133333pt;}
.x1e_c00055{left:491.066667pt;}
.x4c_c00055{left:494.266667pt;}
.xa6_c00055{left:496.400000pt;}
.xa_c00055{left:497.333333pt;}
.x7f_c00055{left:498.400000pt;}
.xe9_c00055{left:501.600000pt;}
.x4d_c00055{left:502.933333pt;}
.x28_c00055{left:504.000000pt;}
.x58_c00055{left:505.733333pt;}
.x3d_c00055{left:506.933333pt;}
.x30_c00055{left:510.000000pt;}
.x85_c00055{left:512.400000pt;}
.x4e_c00055{left:513.466667pt;}
.x67_c00055{left:515.066667pt;}
.x9f_c00055{left:516.133333pt;}
.x73_c00055{left:518.400000pt;}
.x3e_c00055{left:519.733333pt;}
.xb3_c00055{left:520.666667pt;}
.x44_c00055{left:523.600000pt;}
.x78_c00055{left:526.400000pt;}
.xce_c00055{left:527.466667pt;}
.x16_c00055{left:530.933333pt;}
.xf4_c00055{left:534.000000pt;}
.x45_c00055{left:536.400000pt;}
.x97_c00055{left:541.333333pt;}
.xbd_c00055{left:543.200000pt;}
.x31_c00055{left:544.266667pt;}
.xfb_c00055{left:547.066667pt;}
.xc5_c00055{left:548.133333pt;}
.x8b_c00055{left:549.600000pt;}
.x29_c00055{left:551.066667pt;}
.x1f_c00055{left:555.066667pt;}
.xb_c00055{left:556.533333pt;}
.x86_c00055{left:558.133333pt;}
.x108_c00055{left:561.333333pt;}
.xbe_c00055{left:562.400000pt;}
.xea_c00055{left:563.733333pt;}
.x46_c00055{left:566.533333pt;}
.x91_c00055{left:568.266667pt;}
.xc_c00055{left:570.933333pt;}
.x80_c00055{left:572.266667pt;}
.x3f_c00055{left:573.466667pt;}
.x68_c00055{left:576.133333pt;}
.xe2_c00055{left:577.066667pt;}
.xe6_c00055{left:578.266667pt;}
.x10b_c00055{left:580.000000pt;}
.x32_c00055{left:582.000000pt;}
.x2a_c00055{left:584.000000pt;}
.xdb_c00055{left:585.600000pt;}
.x17_c00055{left:587.200000pt;}
.x109_c00055{left:588.533333pt;}
.x33_c00055{left:590.266667pt;}
.xa0_c00055{left:592.000000pt;}
.x69_c00055{left:594.000000pt;}
.x40_c00055{left:596.133333pt;}
.x20_c00055{left:597.333333pt;}
.xc2_c00055{left:600.266667pt;}
.xf5_c00055{left:601.466667pt;}
.x4f_c00055{left:602.666667pt;}
.x60_c00055{left:604.400000pt;}
.xdc_c00055{left:606.400000pt;}
.x47_c00055{left:607.466667pt;}
.x87_c00055{left:612.800000pt;}
.xf1_c00055{left:614.266667pt;}
.xc6_c00055{left:618.800000pt;}
.x34_c00055{left:619.733333pt;}
.x10c_c00055{left:620.666667pt;}
.x59_c00055{left:623.066667pt;}
.xb4_c00055{left:624.000000pt;}
.x81_c00055{left:627.333333pt;}
.xd4_c00055{left:631.066667pt;}
.x74_c00055{left:632.000000pt;}
.xfc_c00055{left:633.466667pt;}
.xd_c00055{left:634.933333pt;}
.x35_c00055{left:638.000000pt;}
.xa7_c00055{left:640.133333pt;}
.x50_c00055{left:641.333333pt;}
.x6a_c00055{left:643.333333pt;}
.x98_c00055{left:645.600000pt;}
.x48_c00055{left:647.466667pt;}
.xcb_c00055{left:650.533333pt;}
.x61_c00055{left:651.733333pt;}
.x21_c00055{left:653.333333pt;}
.x18_c00055{left:655.066667pt;}
.xde_c00055{left:656.400000pt;}
.x8c_c00055{left:657.333333pt;}
.x110_c00055{left:658.933333pt;}
.xad_c00055{left:660.933333pt;}
.xf6_c00055{left:662.933333pt;}
.x79_c00055{left:664.000000pt;}
.xbf_c00055{left:665.466667pt;}
.x92_c00055{left:667.066667pt;}
.xc3_c00055{left:668.400000pt;}
.x36_c00055{left:669.733333pt;}
.xe7_c00055{left:673.333333pt;}
.x19_c00055{left:674.533333pt;}
.xfd_c00055{left:676.400000pt;}
.x41_c00055{left:678.400000pt;}
.x62_c00055{left:683.466667pt;}
.x51_c00055{left:685.200000pt;}
.xdf_c00055{left:686.133333pt;}
.xe_c00055{left:688.400000pt;}
.xc4_c00055{left:689.466667pt;}
.xc7_c00055{left:691.466667pt;}
.x106_c00055{left:692.800000pt;}
.x82_c00055{left:695.466667pt;}
.x63_c00055{left:696.933333pt;}
.x5a_c00055{left:698.266667pt;}
.x52_c00055{left:700.266667pt;}
.x49_c00055{left:702.533333pt;}
.x107_c00055{left:704.933333pt;}
.x1a_c00055{left:706.266667pt;}
.x37_c00055{left:708.800000pt;}
.x5b_c00055{left:711.333333pt;}
.xf_c00055{left:713.333333pt;}
.x22_c00055{left:715.466667pt;}
.xa8_c00055{left:718.133333pt;}
.xcc_c00055{left:719.333333pt;}
.xb5_c00055{left:724.133333pt;}
.x53_c00055{left:727.200000pt;}
.xed_c00055{left:728.400000pt;}
.x38_c00055{left:731.866667pt;}
.xa9_c00055{left:733.466667pt;}
.xc8_c00055{left:735.333333pt;}
.x93_c00055{left:736.533333pt;}
.x6b_c00055{left:738.266667pt;}
.xb6_c00055{left:739.200000pt;}
.xe0_c00055{left:740.266667pt;}
.xfe_c00055{left:741.333333pt;}
.x39_c00055{left:743.066667pt;}
.xae_c00055{left:745.466667pt;}
.xe3_c00055{left:746.666667pt;}
.x8d_c00055{left:748.533333pt;}
.xf7_c00055{left:752.800000pt;}
.x1b_c00055{left:756.133333pt;}
.x7a_c00055{left:759.333333pt;}
.xf8_c00055{left:761.066667pt;}
.x23_c00055{left:765.066667pt;}
.x42_c00055{left:766.133333pt;}
}





/* 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_c00056 {
    display:none;
  }
  .loading-indicator_c00056.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00056 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_c00056 { 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_c00056" -> "#page-container .classname_c00056")
 */
.pf_c00056 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00056 { /* 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_c00056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00056 { /* 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_c00056 { /* 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_c00056 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00056 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00056 {overflow:visible;}
  }
}
.c_c00056 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00056 { /* 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_c00056:after { /* webkit #35443 */
  content: '';
}
.t_c00056:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00056 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 */
}
.__c00056 { /* 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_c00056 { /* info for Javascript */
  display:none;
}
.l_c00056 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00056 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00056 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00056: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_c00056 {
    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_c00056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00056.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_c00056 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00056;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.000000;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;}
.m9b_c00056{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00056{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.md6_c00056{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00056{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00056{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m3_c00056{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00056{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m30_c00056{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m54_c00056{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m64_c00056{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m27_c00056{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m67_c00056{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m28_c00056{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m82_c00056{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00056{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00056{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m22_c00056{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00056{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m49_c00056{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00056{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m26_c00056{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m91_c00056{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m68_c00056{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m63_c00056{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m92_c00056{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m90_c00056{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00056{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m20_c00056{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m80_c00056{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00056{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m4_c00056{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00056{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00056{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m76_c00056{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m93_c00056{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mac_c00056{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m83_c00056{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00056{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me_c00056{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00056{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00056{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00056{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m86_c00056{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md1_c00056{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m34_c00056{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m75_c00056{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m31_c00056{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00056{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00056{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m33_c00056{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m52_c00056{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m73_c00056{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00056{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m74_c00056{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00056{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m62_c00056{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00056{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9_c00056{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00056{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m16_c00056{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00056{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m38_c00056{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m8_c00056{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00056{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m71_c00056{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00056{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6_c00056{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.md0_c00056{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m41_c00056{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00056{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m21_c00056{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00056{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.md2_c00056{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m40_c00056{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00056{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m23_c00056{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m66_c00056{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00056{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mba_c00056{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00056{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00056{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m77_c00056{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00056{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m47_c00056{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00056{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb_c00056{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00056{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m53_c00056{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m24_c00056{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m14_c00056{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m18_c00056{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00056{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00056{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m45_c00056{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00056{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mab_c00056{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m56_c00056{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m44_c00056{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m85_c00056{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00056{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00056{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00056{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m65_c00056{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00056{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00056{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m48_c00056{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00056{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.maa_c00056{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma_c00056{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00056{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m70_c00056{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m39_c00056{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m13_c00056{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m79_c00056{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.maf_c00056{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00056{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00056{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m35_c00056{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00056{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00056{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00056{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7_c00056{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m55_c00056{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5_c00056{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00056{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00056{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m59_c00056{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m32_c00056{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00056{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00056{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m89_c00056{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mca_c00056{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m81_c00056{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00056{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mad_c00056{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m15_c00056{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10_c00056{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00056{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.md_c00056{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00056{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00056{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m95_c00056{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m87_c00056{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00056{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m88_c00056{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m60_c00056{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00056{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc_c00056{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00056{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00056{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mce_c00056{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00056{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00056{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m94_c00056{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11_c00056{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00056{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m51_c00056{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00056{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00056{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00056{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m57_c00056{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mf_c00056{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m97_c00056{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m42_c00056{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00056{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00056{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m17_c00056{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m43_c00056{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00056{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m78_c00056{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00056{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m50_c00056{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m12_c00056{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00056{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m25_c00056{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m72_c00056{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00056{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m99_c00056{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00056{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00056{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00056{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m58_c00056{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00056{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m46_c00056{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00056{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m61_c00056{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00056{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md5_c00056{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00056{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m36_c00056{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00056{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00056{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mae_c00056{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.md3_c00056{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.md4_c00056{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m98_c00056{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m69_c00056{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m2_c00056{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00056{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m37_c00056{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00056{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00056{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00056{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00056{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m29_c00056{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00056{transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00056{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00056{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m84_c00056{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m96_c00056{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00056{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00056{transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);}
.md7_c00056{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00056{transform:matrix(17.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(17.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(17.140000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{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__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00056{word-spacing:0.000000px;}
.ws1_c00056{word-spacing:1.625000px;}
.ws2_c00056{word-spacing:2.360341px;}
.ws0_c00056{word-spacing:2070.500000px;}
.fc0_c00056{color:transparent;}
.fs6_c00056{font-size:36.000000px;}
.fs3_c00056{font-size:48.000000px;}
.fs7_c00056{font-size:54.000000px;}
.fs4_c00056{font-size:60.000000px;}
.fs2_c00056{font-size:66.000000px;}
.fs1_c00056{font-size:72.000000px;}
.fs5_c00056{font-size:90.000000px;}
.fs0_c00056{font-size:108.000000px;}
.y0_c00056{bottom:0.000000px;}
.y34_c00056{bottom:190.350000px;}
.y33_c00056{bottom:205.500000px;}
.y32_c00056{bottom:226.050000px;}
.y31_c00056{bottom:252.600000px;}
.y30_c00056{bottom:270.600000px;}
.y2f_c00056{bottom:288.600000px;}
.y2e_c00056{bottom:306.600000px;}
.y2d_c00056{bottom:324.300000px;}
.y2c_c00056{bottom:342.300000px;}
.y2a_c00056{bottom:368.550000px;}
.y29_c00056{bottom:386.250000px;}
.y2b_c00056{bottom:395.250000px;}
.y28_c00056{bottom:403.950000px;}
.y27_c00056{bottom:421.950000px;}
.y25_c00056{bottom:448.500000px;}
.y24_c00056{bottom:466.500000px;}
.y23_c00056{bottom:484.200000px;}
.y26_c00056{bottom:492.150000px;}
.y22_c00056{bottom:502.200000px;}
.y21_c00056{bottom:520.200000px;}
.y20_c00056{bottom:537.900000px;}
.y1f_c00056{bottom:573.150000px;}
.y1e_c00056{bottom:591.450000px;}
.y1c_c00056{bottom:631.050000px;}
.y1b_c00056{bottom:649.050000px;}
.y1d_c00056{bottom:656.250000px;}
.y1a_c00056{bottom:666.750000px;}
.y19_c00056{bottom:684.750000px;}
.y18_c00056{bottom:711.000000px;}
.y17_c00056{bottom:729.000000px;}
.y16_c00056{bottom:750.900000px;}
.y15_c00056{bottom:764.550000px;}
.y14_c00056{bottom:782.250000px;}
.y13_c00056{bottom:817.950000px;}
.y11_c00056{bottom:857.850000px;}
.y10_c00056{bottom:887.700000px;}
.yf_c00056{bottom:905.700000px;}
.y12_c00056{bottom:922.650000px;}
.ye_c00056{bottom:923.700000px;}
.yd_c00056{bottom:941.400000px;}
.yc_c00056{bottom:959.400000px;}
.yb_c00056{bottom:985.350000px;}
.ya_c00056{bottom:1003.350000px;}
.y9_c00056{bottom:1021.350000px;}
.y8_c00056{bottom:1039.050000px;}
.y7_c00056{bottom:1065.300000px;}
.y6_c00056{bottom:1080.000000px;}
.y5_c00056{bottom:1082.850000px;}
.y4_c00056{bottom:1091.850000px;}
.y3_c00056{bottom:1101.150000px;}
.y2_c00056{bottom:1118.850000px;}
.y1_c00056{bottom:1145.850000px;}
.h8_c00056{height:36.000000px;}
.h5_c00056{height:48.000000px;}
.h9_c00056{height:54.000000px;}
.h6_c00056{height:60.000000px;}
.h4_c00056{height:66.000000px;}
.h3_c00056{height:72.000000px;}
.h7_c00056{height:90.000000px;}
.h2_c00056{height:108.000000px;}
.h0_c00056{height:1271.879975px;}
.h1_c00056{height:1272.000000px;}
.w0_c00056{width:948.600036px;}
.w1_c00056{width:948.750000px;}
.x0_c00056{left:0.000000px;}
.x107_c00056{left:77.850000px;}
.x101_c00056{left:80.250000px;}
.xed_c00056{left:82.500000px;}
.xde_c00056{left:84.600000px;}
.xb6_c00056{left:86.100000px;}
.x8a_c00056{left:87.900000px;}
.x75_c00056{left:90.750000px;}
.xf7_c00056{left:91.950000px;}
.xee_c00056{left:93.000000px;}
.xb7_c00056{left:97.200000px;}
.x1d_c00056{left:101.850000px;}
.x8b_c00056{left:111.300000px;}
.x19_c00056{left:113.400000px;}
.x102_c00056{left:129.600000px;}
.xef_c00056{left:132.600000px;}
.xdf_c00056{left:135.000000px;}
.x8c_c00056{left:137.550000px;}
.x1a_c00056{left:138.900000px;}
.x76_c00056{left:140.100000px;}
.x108_c00056{left:162.450000px;}
.x109_c00056{left:185.850000px;}
.xbd_c00056{left:191.550000px;}
.x103_c00056{left:203.100000px;}
.xbb_c00056{left:205.200000px;}
.x10a_c00056{left:208.500000px;}
.x31_c00056{left:224.250000px;}
.x3_c00056{left:225.300000px;}
.x10b_c00056{left:229.800000px;}
.xf4_c00056{left:238.050000px;}
.xe_c00056{left:241.950000px;}
.x5b_c00056{left:243.150000px;}
.xb8_c00056{left:246.600000px;}
.x77_c00056{left:250.950000px;}
.x9f_c00056{left:267.750000px;}
.x52_c00056{left:271.050000px;}
.x85_c00056{left:273.000000px;}
.x3b_c00056{left:279.150000px;}
.x4a_c00056{left:281.250000px;}
.xbe_c00056{left:283.350000px;}
.x2e_c00056{left:286.200000px;}
.x32_c00056{left:287.550000px;}
.xb4_c00056{left:289.950000px;}
.x4_c00056{left:292.200000px;}
.xf1_c00056{left:293.850000px;}
.x5c_c00056{left:295.050000px;}
.x2f_c00056{left:297.300000px;}
.x33_c00056{left:298.650000px;}
.x86_c00056{left:300.000000px;}
.x1e_c00056{left:301.650000px;}
.xb9_c00056{left:303.450000px;}
.x5_c00056{left:304.500000px;}
.x97_c00056{left:305.700000px;}
.xf8_c00056{left:307.650000px;}
.x8d_c00056{left:310.800000px;}
.xf_c00056{left:312.150000px;}
.xd5_c00056{left:313.200000px;}
.xe7_c00056{left:315.600000px;}
.xad_c00056{left:318.150000px;}
.x73_c00056{left:319.650000px;}
.x1b_c00056{left:321.750000px;}
.x72_c00056{left:324.150000px;}
.xa0_c00056{left:329.250000px;}
.x8e_c00056{left:332.400000px;}
.x30_c00056{left:334.350000px;}
.x1f_c00056{left:339.450000px;}
.xe0_c00056{left:341.250000px;}
.x1_c00056{left:342.750000px;}
.x43_c00056{left:344.850000px;}
.x6_c00056{left:348.750000px;}
.x6d_c00056{left:350.850000px;}
.xbf_c00056{left:353.550000px;}
.x20_c00056{left:354.900000px;}
.x53_c00056{left:355.950000px;}
.x68_c00056{left:357.900000px;}
.xdc_c00056{left:359.100000px;}
.x5d_c00056{left:360.150000px;}
.x4b_c00056{left:361.950000px;}
.xe8_c00056{left:363.900000px;}
.xaa_c00056{left:365.700000px;}
.xe4_c00056{left:368.700000px;}
.x5e_c00056{left:371.700000px;}
.x74_c00056{left:374.400000px;}
.x34_c00056{left:377.100000px;}
.x7c_c00056{left:378.300000px;}
.x4c_c00056{left:382.800000px;}
.xc0_c00056{left:384.150000px;}
.xdd_c00056{left:386.850000px;}
.xf5_c00056{left:388.950000px;}
.x8f_c00056{left:391.350000px;}
.x69_c00056{left:394.650000px;}
.x21_c00056{left:396.300000px;}
.xae_c00056{left:397.650000px;}
.x7_c00056{left:400.950000px;}
.x3c_c00056{left:402.300000px;}
.x54_c00056{left:407.100000px;}
.x6e_c00056{left:409.050000px;}
.x7d_c00056{left:410.700000px;}
.xd6_c00056{left:411.750000px;}
.xbc_c00056{left:414.450000px;}
.x90_c00056{left:417.300000px;}
.x10_c00056{left:418.650000px;}
.x104_c00056{left:420.150000px;}
.x22_c00056{left:422.550000px;}
.x98_c00056{left:424.050000px;}
.xc1_c00056{left:425.250000px;}
.x87_c00056{left:426.750000px;}
.x35_c00056{left:429.000000px;}
.xc6_c00056{left:431.100000px;}
.xa3_c00056{left:436.200000px;}
.x4d_c00056{left:439.650000px;}
.xa1_c00056{left:441.900000px;}
.x99_c00056{left:445.950000px;}
.x6f_c00056{left:447.900000px;}
.x91_c00056{left:449.700000px;}
.xc7_c00056{left:451.950000px;}
.xf9_c00056{left:453.150000px;}
.x5f_c00056{left:454.200000px;}
.xec_c00056{left:455.250000px;}
.x11_c00056{left:460.350000px;}
.xa2_c00056{left:462.750000px;}
.x8_c00056{left:464.250000px;}
.x70_c00056{left:466.200000px;}
.x60_c00056{left:467.850000px;}
.x55_c00056{left:469.350000px;}
.x3d_c00056{left:470.400000px;}
.xe9_c00056{left:472.650000px;}
.x7e_c00056{left:473.700000px;}
.x29_c00056{left:477.000000px;}
.xf2_c00056{left:478.950000px;}
.x78_c00056{left:481.350000px;}
.xf0_c00056{left:482.400000px;}
.x44_c00056{left:483.450000px;}
.x12_c00056{left:484.500000px;}
.xc2_c00056{left:485.700000px;}
.x36_c00056{left:487.350000px;}
.x23_c00056{left:490.950000px;}
.xa4_c00056{left:493.800000px;}
.xc8_c00056{left:496.200000px;}
.x4e_c00056{left:497.250000px;}
.xaf_c00056{left:500.250000px;}
.x9a_c00056{left:503.250000px;}
.x88_c00056{left:504.450000px;}
.x2a_c00056{left:507.600000px;}
.x3e_c00056{left:509.250000px;}
.xcf_c00056{left:514.800000px;}
.x24_c00056{left:516.150000px;}
.xb5_c00056{left:517.650000px;}
.x79_c00056{left:519.900000px;}
.x61_c00056{left:522.600000px;}
.xd0_c00056{left:524.850000px;}
.x9b_c00056{left:526.650000px;}
.x45_c00056{left:530.550000px;}
.x105_c00056{left:533.550000px;}
.xc9_c00056{left:535.800000px;}
.x9_c00056{left:538.350000px;}
.xd8_c00056{left:539.400000px;}
.xfd_c00056{left:540.900000px;}
.x13_c00056{left:542.100000px;}
.xf6_c00056{left:545.250000px;}
.xca_c00056{left:546.300000px;}
.xd1_c00056{left:548.550000px;}
.x4f_c00056{left:550.500000px;}
.x56_c00056{left:553.650000px;}
.x62_c00056{left:554.700000px;}
.xfe_c00056{left:556.050000px;}
.x7f_c00056{left:559.050000px;}
.xa5_c00056{left:560.100000px;}
.x46_c00056{left:561.150000px;}
.x37_c00056{left:562.200000px;}
.xea_c00056{left:563.400000px;}
.x92_c00056{left:564.600000px;}
.x63_c00056{left:566.550000px;}
.x3f_c00056{left:568.650000px;}
.x6a_c00056{left:571.500000px;}
.xb0_c00056{left:572.550000px;}
.x50_c00056{left:573.600000px;}
.x80_c00056{left:576.750000px;}
.x7a_c00056{left:578.250000px;}
.x93_c00056{left:581.100000px;}
.x2b_c00056{left:582.150000px;}
.xe5_c00056{left:583.350000px;}
.x14_c00056{left:593.250000px;}
.xc3_c00056{left:594.450000px;}
.xe1_c00056{left:595.800000px;}
.x57_c00056{left:596.850000px;}
.xab_c00056{left:598.650000px;}
.xa_c00056{left:599.850000px;}
.xff_c00056{left:602.550000px;}
.x81_c00056{left:603.750000px;}
.x47_c00056{left:605.400000px;}
.x58_c00056{left:606.600000px;}
.xd2_c00056{left:607.650000px;}
.xd9_c00056{left:616.800000px;}
.x106_c00056{left:618.150000px;}
.x59_c00056{left:619.500000px;}
.x38_c00056{left:620.850000px;}
.x100_c00056{left:622.650000px;}
.xb1_c00056{left:624.450000px;}
.x51_c00056{left:625.800000px;}
.x64_c00056{left:628.800000px;}
.xa6_c00056{left:630.000000px;}
.xba_c00056{left:633.900000px;}
.x40_c00056{left:639.600000px;}
.x94_c00056{left:640.800000px;}
.x15_c00056{left:642.600000px;}
.xf3_c00056{left:644.550000px;}
.x2c_c00056{left:649.500000px;}
.x7b_c00056{left:651.300000px;}
.xb_c00056{left:652.800000px;}
.x82_c00056{left:655.950000px;}
.xb2_c00056{left:657.150000px;}
.xc4_c00056{left:658.200000px;}
.x48_c00056{left:660.000000px;}
.xd3_c00056{left:663.150000px;}
.x25_c00056{left:664.200000px;}
.xda_c00056{left:666.900000px;}
.xcb_c00056{left:667.950000px;}
.x89_c00056{left:669.000000px;}
.x9c_c00056{left:671.400000px;}
.xac_c00056{left:672.750000px;}
.x65_c00056{left:675.900000px;}
.xfa_c00056{left:677.400000px;}
.x95_c00056{left:678.900000px;}
.xb3_c00056{left:680.250000px;}
.xa7_c00056{left:681.900000px;}
.xe2_c00056{left:683.700000px;}
.x5a_c00056{left:685.350000px;}
.x26_c00056{left:687.600000px;}
.xd4_c00056{left:688.650000px;}
.x41_c00056{left:689.700000px;}
.xa8_c00056{left:694.800000px;}
.x66_c00056{left:696.750000px;}
.x16_c00056{left:698.400000px;}
.x83_c00056{left:699.900000px;}
.xc5_c00056{left:702.450000px;}
.xcc_c00056{left:705.000000px;}
.x71_c00056{left:706.350000px;}
.x49_c00056{left:708.300000px;}
.xc_c00056{left:711.450000px;}
.x6b_c00056{left:712.950000px;}
.x9d_c00056{left:715.650000px;}
.xe6_c00056{left:719.400000px;}
.x39_c00056{left:720.600000px;}
.xcd_c00056{left:722.250000px;}
.xfb_c00056{left:725.250000px;}
.xe3_c00056{left:727.200000px;}
.x17_c00056{left:730.500000px;}
.x3a_c00056{left:732.150000px;}
.x9e_c00056{left:733.650000px;}
.x27_c00056{left:735.450000px;}
.x42_c00056{left:740.400000px;}
.x84_c00056{left:742.800000px;}
.xdb_c00056{left:749.400000px;}
.xfc_c00056{left:752.550000px;}
.xd7_c00056{left:753.900000px;}
.x2d_c00056{left:757.500000px;}
.xd_c00056{left:761.850000px;}
.xa9_c00056{left:763.500000px;}
.x28_c00056{left:765.750000px;}
.x96_c00056{left:767.100000px;}
.x6c_c00056{left:768.750000px;}
.x2_c00056{left:774.450000px;}
.x67_c00056{left:776.250000px;}
.x18_c00056{left:777.600000px;}
.x1c_c00056{left:778.950000px;}
.xce_c00056{left:780.900000px;}
.xeb_c00056{left:784.800000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws3_c00056{word-spacing:0.000000pt;}
.ws1_c00056{word-spacing:1.444444pt;}
.ws2_c00056{word-spacing:2.098081pt;}
.ws0_c00056{word-spacing:1840.444444pt;}
.fs6_c00056{font-size:32.000000pt;}
.fs3_c00056{font-size:42.666667pt;}
.fs7_c00056{font-size:48.000000pt;}
.fs4_c00056{font-size:53.333333pt;}
.fs2_c00056{font-size:58.666667pt;}
.fs1_c00056{font-size:64.000000pt;}
.fs5_c00056{font-size:80.000000pt;}
.fs0_c00056{font-size:96.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y34_c00056{bottom:169.200000pt;}
.y33_c00056{bottom:182.666667pt;}
.y32_c00056{bottom:200.933333pt;}
.y31_c00056{bottom:224.533333pt;}
.y30_c00056{bottom:240.533333pt;}
.y2f_c00056{bottom:256.533333pt;}
.y2e_c00056{bottom:272.533333pt;}
.y2d_c00056{bottom:288.266667pt;}
.y2c_c00056{bottom:304.266667pt;}
.y2a_c00056{bottom:327.600000pt;}
.y29_c00056{bottom:343.333333pt;}
.y2b_c00056{bottom:351.333333pt;}
.y28_c00056{bottom:359.066667pt;}
.y27_c00056{bottom:375.066667pt;}
.y25_c00056{bottom:398.666667pt;}
.y24_c00056{bottom:414.666667pt;}
.y23_c00056{bottom:430.400000pt;}
.y26_c00056{bottom:437.466667pt;}
.y22_c00056{bottom:446.400000pt;}
.y21_c00056{bottom:462.400000pt;}
.y20_c00056{bottom:478.133333pt;}
.y1f_c00056{bottom:509.466667pt;}
.y1e_c00056{bottom:525.733333pt;}
.y1c_c00056{bottom:560.933333pt;}
.y1b_c00056{bottom:576.933333pt;}
.y1d_c00056{bottom:583.333333pt;}
.y1a_c00056{bottom:592.666667pt;}
.y19_c00056{bottom:608.666667pt;}
.y18_c00056{bottom:632.000000pt;}
.y17_c00056{bottom:648.000000pt;}
.y16_c00056{bottom:667.466667pt;}
.y15_c00056{bottom:679.600000pt;}
.y14_c00056{bottom:695.333333pt;}
.y13_c00056{bottom:727.066667pt;}
.y11_c00056{bottom:762.533333pt;}
.y10_c00056{bottom:789.066667pt;}
.yf_c00056{bottom:805.066667pt;}
.y12_c00056{bottom:820.133333pt;}
.ye_c00056{bottom:821.066667pt;}
.yd_c00056{bottom:836.800000pt;}
.yc_c00056{bottom:852.800000pt;}
.yb_c00056{bottom:875.866667pt;}
.ya_c00056{bottom:891.866667pt;}
.y9_c00056{bottom:907.866667pt;}
.y8_c00056{bottom:923.600000pt;}
.y7_c00056{bottom:946.933333pt;}
.y6_c00056{bottom:960.000000pt;}
.y5_c00056{bottom:962.533333pt;}
.y4_c00056{bottom:970.533333pt;}
.y3_c00056{bottom:978.800000pt;}
.y2_c00056{bottom:994.533333pt;}
.y1_c00056{bottom:1018.533333pt;}
.h8_c00056{height:32.000000pt;}
.h5_c00056{height:42.666667pt;}
.h9_c00056{height:48.000000pt;}
.h6_c00056{height:53.333333pt;}
.h4_c00056{height:58.666667pt;}
.h3_c00056{height:64.000000pt;}
.h7_c00056{height:80.000000pt;}
.h2_c00056{height:96.000000pt;}
.h0_c00056{height:1130.559977pt;}
.h1_c00056{height:1130.666667pt;}
.w0_c00056{width:843.200032pt;}
.w1_c00056{width:843.333333pt;}
.x0_c00056{left:0.000000pt;}
.x107_c00056{left:69.200000pt;}
.x101_c00056{left:71.333333pt;}
.xed_c00056{left:73.333333pt;}
.xde_c00056{left:75.200000pt;}
.xb6_c00056{left:76.533333pt;}
.x8a_c00056{left:78.133333pt;}
.x75_c00056{left:80.666667pt;}
.xf7_c00056{left:81.733333pt;}
.xee_c00056{left:82.666667pt;}
.xb7_c00056{left:86.400000pt;}
.x1d_c00056{left:90.533333pt;}
.x8b_c00056{left:98.933333pt;}
.x19_c00056{left:100.800000pt;}
.x102_c00056{left:115.200000pt;}
.xef_c00056{left:117.866667pt;}
.xdf_c00056{left:120.000000pt;}
.x8c_c00056{left:122.266667pt;}
.x1a_c00056{left:123.466667pt;}
.x76_c00056{left:124.533333pt;}
.x108_c00056{left:144.400000pt;}
.x109_c00056{left:165.200000pt;}
.xbd_c00056{left:170.266667pt;}
.x103_c00056{left:180.533333pt;}
.xbb_c00056{left:182.400000pt;}
.x10a_c00056{left:185.333333pt;}
.x31_c00056{left:199.333333pt;}
.x3_c00056{left:200.266667pt;}
.x10b_c00056{left:204.266667pt;}
.xf4_c00056{left:211.600000pt;}
.xe_c00056{left:215.066667pt;}
.x5b_c00056{left:216.133333pt;}
.xb8_c00056{left:219.200000pt;}
.x77_c00056{left:223.066667pt;}
.x9f_c00056{left:238.000000pt;}
.x52_c00056{left:240.933333pt;}
.x85_c00056{left:242.666667pt;}
.x3b_c00056{left:248.133333pt;}
.x4a_c00056{left:250.000000pt;}
.xbe_c00056{left:251.866667pt;}
.x2e_c00056{left:254.400000pt;}
.x32_c00056{left:255.600000pt;}
.xb4_c00056{left:257.733333pt;}
.x4_c00056{left:259.733333pt;}
.xf1_c00056{left:261.200000pt;}
.x5c_c00056{left:262.266667pt;}
.x2f_c00056{left:264.266667pt;}
.x33_c00056{left:265.466667pt;}
.x86_c00056{left:266.666667pt;}
.x1e_c00056{left:268.133333pt;}
.xb9_c00056{left:269.733333pt;}
.x5_c00056{left:270.666667pt;}
.x97_c00056{left:271.733333pt;}
.xf8_c00056{left:273.466667pt;}
.x8d_c00056{left:276.266667pt;}
.xf_c00056{left:277.466667pt;}
.xd5_c00056{left:278.400000pt;}
.xe7_c00056{left:280.533333pt;}
.xad_c00056{left:282.800000pt;}
.x73_c00056{left:284.133333pt;}
.x1b_c00056{left:286.000000pt;}
.x72_c00056{left:288.133333pt;}
.xa0_c00056{left:292.666667pt;}
.x8e_c00056{left:295.466667pt;}
.x30_c00056{left:297.200000pt;}
.x1f_c00056{left:301.733333pt;}
.xe0_c00056{left:303.333333pt;}
.x1_c00056{left:304.666667pt;}
.x43_c00056{left:306.533333pt;}
.x6_c00056{left:310.000000pt;}
.x6d_c00056{left:311.866667pt;}
.xbf_c00056{left:314.266667pt;}
.x20_c00056{left:315.466667pt;}
.x53_c00056{left:316.400000pt;}
.x68_c00056{left:318.133333pt;}
.xdc_c00056{left:319.200000pt;}
.x5d_c00056{left:320.133333pt;}
.x4b_c00056{left:321.733333pt;}
.xe8_c00056{left:323.466667pt;}
.xaa_c00056{left:325.066667pt;}
.xe4_c00056{left:327.733333pt;}
.x5e_c00056{left:330.400000pt;}
.x74_c00056{left:332.800000pt;}
.x34_c00056{left:335.200000pt;}
.x7c_c00056{left:336.266667pt;}
.x4c_c00056{left:340.266667pt;}
.xc0_c00056{left:341.466667pt;}
.xdd_c00056{left:343.866667pt;}
.xf5_c00056{left:345.733333pt;}
.x8f_c00056{left:347.866667pt;}
.x69_c00056{left:350.800000pt;}
.x21_c00056{left:352.266667pt;}
.xae_c00056{left:353.466667pt;}
.x7_c00056{left:356.400000pt;}
.x3c_c00056{left:357.600000pt;}
.x54_c00056{left:361.866667pt;}
.x6e_c00056{left:363.600000pt;}
.x7d_c00056{left:365.066667pt;}
.xd6_c00056{left:366.000000pt;}
.xbc_c00056{left:368.400000pt;}
.x90_c00056{left:370.933333pt;}
.x10_c00056{left:372.133333pt;}
.x104_c00056{left:373.466667pt;}
.x22_c00056{left:375.600000pt;}
.x98_c00056{left:376.933333pt;}
.xc1_c00056{left:378.000000pt;}
.x87_c00056{left:379.333333pt;}
.x35_c00056{left:381.333333pt;}
.xc6_c00056{left:383.200000pt;}
.xa3_c00056{left:387.733333pt;}
.x4d_c00056{left:390.800000pt;}
.xa1_c00056{left:392.800000pt;}
.x99_c00056{left:396.400000pt;}
.x6f_c00056{left:398.133333pt;}
.x91_c00056{left:399.733333pt;}
.xc7_c00056{left:401.733333pt;}
.xf9_c00056{left:402.800000pt;}
.x5f_c00056{left:403.733333pt;}
.xec_c00056{left:404.666667pt;}
.x11_c00056{left:409.200000pt;}
.xa2_c00056{left:411.333333pt;}
.x8_c00056{left:412.666667pt;}
.x70_c00056{left:414.400000pt;}
.x60_c00056{left:415.866667pt;}
.x55_c00056{left:417.200000pt;}
.x3d_c00056{left:418.133333pt;}
.xe9_c00056{left:420.133333pt;}
.x7e_c00056{left:421.066667pt;}
.x29_c00056{left:424.000000pt;}
.xf2_c00056{left:425.733333pt;}
.x78_c00056{left:427.866667pt;}
.xf0_c00056{left:428.800000pt;}
.x44_c00056{left:429.733333pt;}
.x12_c00056{left:430.666667pt;}
.xc2_c00056{left:431.733333pt;}
.x36_c00056{left:433.200000pt;}
.x23_c00056{left:436.400000pt;}
.xa4_c00056{left:438.933333pt;}
.xc8_c00056{left:441.066667pt;}
.x4e_c00056{left:442.000000pt;}
.xaf_c00056{left:444.666667pt;}
.x9a_c00056{left:447.333333pt;}
.x88_c00056{left:448.400000pt;}
.x2a_c00056{left:451.200000pt;}
.x3e_c00056{left:452.666667pt;}
.xcf_c00056{left:457.600000pt;}
.x24_c00056{left:458.800000pt;}
.xb5_c00056{left:460.133333pt;}
.x79_c00056{left:462.133333pt;}
.x61_c00056{left:464.533333pt;}
.xd0_c00056{left:466.533333pt;}
.x9b_c00056{left:468.133333pt;}
.x45_c00056{left:471.600000pt;}
.x105_c00056{left:474.266667pt;}
.xc9_c00056{left:476.266667pt;}
.x9_c00056{left:478.533333pt;}
.xd8_c00056{left:479.466667pt;}
.xfd_c00056{left:480.800000pt;}
.x13_c00056{left:481.866667pt;}
.xf6_c00056{left:484.666667pt;}
.xca_c00056{left:485.600000pt;}
.xd1_c00056{left:487.600000pt;}
.x4f_c00056{left:489.333333pt;}
.x56_c00056{left:492.133333pt;}
.x62_c00056{left:493.066667pt;}
.xfe_c00056{left:494.266667pt;}
.x7f_c00056{left:496.933333pt;}
.xa5_c00056{left:497.866667pt;}
.x46_c00056{left:498.800000pt;}
.x37_c00056{left:499.733333pt;}
.xea_c00056{left:500.800000pt;}
.x92_c00056{left:501.866667pt;}
.x63_c00056{left:503.600000pt;}
.x3f_c00056{left:505.466667pt;}
.x6a_c00056{left:508.000000pt;}
.xb0_c00056{left:508.933333pt;}
.x50_c00056{left:509.866667pt;}
.x80_c00056{left:512.666667pt;}
.x7a_c00056{left:514.000000pt;}
.x93_c00056{left:516.533333pt;}
.x2b_c00056{left:517.466667pt;}
.xe5_c00056{left:518.533333pt;}
.x14_c00056{left:527.333333pt;}
.xc3_c00056{left:528.400000pt;}
.xe1_c00056{left:529.600000pt;}
.x57_c00056{left:530.533333pt;}
.xab_c00056{left:532.133333pt;}
.xa_c00056{left:533.200000pt;}
.xff_c00056{left:535.600000pt;}
.x81_c00056{left:536.666667pt;}
.x47_c00056{left:538.133333pt;}
.x58_c00056{left:539.200000pt;}
.xd2_c00056{left:540.133333pt;}
.xd9_c00056{left:548.266667pt;}
.x106_c00056{left:549.466667pt;}
.x59_c00056{left:550.666667pt;}
.x38_c00056{left:551.866667pt;}
.x100_c00056{left:553.466667pt;}
.xb1_c00056{left:555.066667pt;}
.x51_c00056{left:556.266667pt;}
.x64_c00056{left:558.933333pt;}
.xa6_c00056{left:560.000000pt;}
.xba_c00056{left:563.466667pt;}
.x40_c00056{left:568.533333pt;}
.x94_c00056{left:569.600000pt;}
.x15_c00056{left:571.200000pt;}
.xf3_c00056{left:572.933333pt;}
.x2c_c00056{left:577.333333pt;}
.x7b_c00056{left:578.933333pt;}
.xb_c00056{left:580.266667pt;}
.x82_c00056{left:583.066667pt;}
.xb2_c00056{left:584.133333pt;}
.xc4_c00056{left:585.066667pt;}
.x48_c00056{left:586.666667pt;}
.xd3_c00056{left:589.466667pt;}
.x25_c00056{left:590.400000pt;}
.xda_c00056{left:592.800000pt;}
.xcb_c00056{left:593.733333pt;}
.x89_c00056{left:594.666667pt;}
.x9c_c00056{left:596.800000pt;}
.xac_c00056{left:598.000000pt;}
.x65_c00056{left:600.800000pt;}
.xfa_c00056{left:602.133333pt;}
.x95_c00056{left:603.466667pt;}
.xb3_c00056{left:604.666667pt;}
.xa7_c00056{left:606.133333pt;}
.xe2_c00056{left:607.733333pt;}
.x5a_c00056{left:609.200000pt;}
.x26_c00056{left:611.200000pt;}
.xd4_c00056{left:612.133333pt;}
.x41_c00056{left:613.066667pt;}
.xa8_c00056{left:617.600000pt;}
.x66_c00056{left:619.333333pt;}
.x16_c00056{left:620.800000pt;}
.x83_c00056{left:622.133333pt;}
.xc5_c00056{left:624.400000pt;}
.xcc_c00056{left:626.666667pt;}
.x71_c00056{left:627.866667pt;}
.x49_c00056{left:629.600000pt;}
.xc_c00056{left:632.400000pt;}
.x6b_c00056{left:633.733333pt;}
.x9d_c00056{left:636.133333pt;}
.xe6_c00056{left:639.466667pt;}
.x39_c00056{left:640.533333pt;}
.xcd_c00056{left:642.000000pt;}
.xfb_c00056{left:644.666667pt;}
.xe3_c00056{left:646.400000pt;}
.x17_c00056{left:649.333333pt;}
.x3a_c00056{left:650.800000pt;}
.x9e_c00056{left:652.133333pt;}
.x27_c00056{left:653.733333pt;}
.x42_c00056{left:658.133333pt;}
.x84_c00056{left:660.266667pt;}
.xdb_c00056{left:666.133333pt;}
.xfc_c00056{left:668.933333pt;}
.xd7_c00056{left:670.133333pt;}
.x2d_c00056{left:673.333333pt;}
.xd_c00056{left:677.200000pt;}
.xa9_c00056{left:678.666667pt;}
.x28_c00056{left:680.666667pt;}
.x96_c00056{left:681.866667pt;}
.x6c_c00056{left:683.333333pt;}
.x2_c00056{left:688.400000pt;}
.x67_c00056{left:690.000000pt;}
.x18_c00056{left:691.200000pt;}
.x1c_c00056{left:692.400000pt;}
.xce_c00056{left:694.133333pt;}
.xeb_c00056{left:697.600000pt;}
}





/* 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_c00057 {
    display:none;
  }
  .loading-indicator_c00057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00057 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_c00057 { 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_c00057" -> "#page-container .classname_c00057")
 */
.pf_c00057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00057 { /* 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_c00057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00057 { /* 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_c00057 { /* 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_c00057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00057 {overflow:visible;}
  }
}
.c_c00057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00057 { /* 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_c00057:after { /* webkit #35443 */
  content: '';
}
.t_c00057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00057 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 */
}
.__c00057 { /* 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_c00057 { /* info for Javascript */
  display:none;
}
.l_c00057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00057: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_c00057 {
    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_c00057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00057.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_c00057 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00057;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.000000;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;}
.m1_c00057{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.md8_c00057{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m71_c00057{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m76_c00057{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.md2_c00057{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m4_c00057{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00057{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m42_c00057{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md_c00057{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m50_c00057{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00057{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mac_c00057{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m56_c00057{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00057{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00057{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00057{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m95_c00057{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m32_c00057{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00057{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m66_c00057{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00057{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m84_c00057{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00057{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00057{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00057{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00057{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m34_c00057{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00057{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mde_c00057{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m25_c00057{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m78_c00057{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00057{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00057{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mad_c00057{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m64_c00057{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m40_c00057{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m63_c00057{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc_c00057{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00057{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m19_c00057{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00057{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb_c00057{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m88_c00057{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m39_c00057{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00057{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00057{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m48_c00057{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m0_c00057{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m61_c00057{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m86_c00057{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mba_c00057{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00057{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00057{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m47_c00057{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mae_c00057{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00057{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m77_c00057{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00057{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00057{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00057{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m11_c00057{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00057{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m79_c00057{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m65_c00057{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mce_c00057{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00057{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00057{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00057{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.me1_c00057{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00057{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mda_c00057{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00057{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00057{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00057{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m80_c00057{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00057{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00057{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m67_c00057{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8_c00057{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m68_c00057{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00057{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.maf_c00057{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00057{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9_c00057{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00057{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m5_c00057{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00057{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m24_c00057{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00057{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md5_c00057{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00057{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m16_c00057{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me_c00057{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md3_c00057{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m96_c00057{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00057{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md6_c00057{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m15_c00057{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m44_c00057{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m22_c00057{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00057{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m81_c00057{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mf_c00057{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m28_c00057{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10_c00057{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m21_c00057{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00057{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6_c00057{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m30_c00057{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md9_c00057{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mab_c00057{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00057{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m37_c00057{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m74_c00057{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00057{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m23_c00057{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00057{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m85_c00057{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00057{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m87_c00057{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m62_c00057{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00057{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00057{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00057{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m60_c00057{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00057{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00057{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00057{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m53_c00057{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00057{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma_c00057{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00057{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m27_c00057{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00057{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00057{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00057{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00057{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m55_c00057{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m26_c00057{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7_c00057{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00057{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m59_c00057{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00057{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m13_c00057{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00057{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00057{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00057{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00057{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m54_c00057{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m58_c00057{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m29_c00057{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00057{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m35_c00057{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m31_c00057{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00057{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m45_c00057{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m36_c00057{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00057{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.maa_c00057{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00057{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me0_c00057{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m14_c00057{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m93_c00057{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00057{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00057{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md4_c00057{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m33_c00057{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m51_c00057{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m46_c00057{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00057{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m12_c00057{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m17_c00057{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m90_c00057{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m75_c00057{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00057{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00057{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00057{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m70_c00057{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m20_c00057{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00057{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00057{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00057{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m49_c00057{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m89_c00057{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00057{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m82_c00057{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00057{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m99_c00057{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m94_c00057{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m91_c00057{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);}
.m52_c00057{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m73_c00057{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md0_c00057{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md7_c00057{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m43_c00057{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m57_c00057{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m92_c00057{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00057{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00057{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00057{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00057{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00057{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00057{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m83_c00057{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m18_c00057{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.md1_c00057{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00057{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m41_c00057{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00057{transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);}
.m38_c00057{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00057{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00057{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m72_c00057{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00057{transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00057{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00057{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00057{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00057{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.me2_c00057{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00057{transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00057{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m98_c00057{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m97_c00057{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00057{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mca_c00057{transform:matrix(0.429500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429500,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls0_c00057{letter-spacing:0.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{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__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00057{word-spacing:-19.500000px;}
.wsa_c00057{word-spacing:-7.951965px;}
.wsb_c00057{word-spacing:-4.862543px;}
.ws7_c00057{word-spacing:-3.882353px;}
.ws2_c00057{word-spacing:-1.796178px;}
.wsd_c00057{word-spacing:0.000000px;}
.ws1_c00057{word-spacing:4.749141px;}
.wsc_c00057{word-spacing:5.909091px;}
.ws4_c00057{word-spacing:7.333333px;}
.ws5_c00057{word-spacing:8.294118px;}
.ws8_c00057{word-spacing:13.875000px;}
.ws9_c00057{word-spacing:15.019108px;}
.ws0_c00057{word-spacing:19.059299px;}
.ws3_c00057{word-spacing:1671.250000px;}
.fc0_c00057{color:transparent;}
.fs3_c00057{font-size:60.000000px;}
.fs2_c00057{font-size:66.000000px;}
.fs1_c00057{font-size:72.000000px;}
.fs0_c00057{font-size:108.000000px;}
.y0_c00057{bottom:0.000000px;}
.y30_c00057{bottom:194.100000px;}
.y2f_c00057{bottom:211.500000px;}
.y2e_c00057{bottom:229.500000px;}
.y31_c00057{bottom:243.300000px;}
.y2d_c00057{bottom:247.500000px;}
.y2c_c00057{bottom:265.200000px;}
.y2b_c00057{bottom:282.900000px;}
.y2a_c00057{bottom:313.950000px;}
.y29_c00057{bottom:344.100000px;}
.y28_c00057{bottom:362.850000px;}
.y27_c00057{bottom:393.450000px;}
.y26_c00057{bottom:411.450000px;}
.y25_c00057{bottom:429.450000px;}
.y23_c00057{bottom:456.450000px;}
.y22_c00057{bottom:474.150000px;}
.y21_c00057{bottom:492.450000px;}
.y24_c00057{bottom:500.700000px;}
.y20_c00057{bottom:510.450000px;}
.y1f_c00057{bottom:528.450000px;}
.y1e_c00057{bottom:546.150000px;}
.y1d_c00057{bottom:576.750000px;}
.y1c_c00057{bottom:594.750000px;}
.y1b_c00057{bottom:621.300000px;}
.y1a_c00057{bottom:652.800000px;}
.y19_c00057{bottom:671.100000px;}
.y18_c00057{bottom:700.950000px;}
.y17_c00057{bottom:719.700000px;}
.y16_c00057{bottom:737.700000px;}
.y15_c00057{bottom:756.000000px;}
.y14_c00057{bottom:773.550000px;}
.y13_c00057{bottom:791.250000px;}
.y12_c00057{bottom:808.950000px;}
.y11_c00057{bottom:835.350000px;}
.y10_c00057{bottom:853.650000px;}
.yf_c00057{bottom:871.350000px;}
.ye_c00057{bottom:889.350000px;}
.yd_c00057{bottom:907.350000px;}
.yc_c00057{bottom:934.650000px;}
.yb_c00057{bottom:942.900000px;}
.ya_c00057{bottom:969.300000px;}
.y9_c00057{bottom:987.600000px;}
.y8_c00057{bottom:1005.900000px;}
.y7_c00057{bottom:1023.900000px;}
.y6_c00057{bottom:1050.150000px;}
.y5_c00057{bottom:1068.450000px;}
.y4_c00057{bottom:1092.150000px;}
.y3_c00057{bottom:1104.450000px;}
.y2_c00057{bottom:1122.450000px;}
.y1_c00057{bottom:1149.450000px;}
.h5_c00057{height:60.000000px;}
.h4_c00057{height:66.000000px;}
.h3_c00057{height:72.000000px;}
.h2_c00057{height:108.000000px;}
.h0_c00057{height:1270.440033px;}
.h1_c00057{height:1270.500000px;}
.w0_c00057{width:948.600036px;}
.w1_c00057{width:948.750000px;}
.x0_c00057{left:0.000000px;}
.xbb_c00057{left:166.650000px;}
.x1_c00057{left:168.150000px;}
.x1a_c00057{left:170.400000px;}
.x10b_c00057{left:186.150000px;}
.xbc_c00057{left:193.350000px;}
.x6e_c00057{left:209.400000px;}
.x1b_c00057{left:212.100000px;}
.xbd_c00057{left:220.650000px;}
.xbe_c00057{left:239.400000px;}
.xbf_c00057{left:252.300000px;}
.xc0_c00057{left:267.000000px;}
.x49_c00057{left:274.350000px;}
.xce_c00057{left:275.400000px;}
.x3e_c00057{left:276.900000px;}
.xc1_c00057{left:288.600000px;}
.x54_c00057{left:292.350000px;}
.x87_c00057{left:293.400000px;}
.x34_c00057{left:294.900000px;}
.x4_c00057{left:296.700000px;}
.xfe_c00057{left:299.850000px;}
.xf2_c00057{left:301.650000px;}
.x2_c00057{left:306.450000px;}
.x52_c00057{left:308.250000px;}
.x77_c00057{left:309.750000px;}
.x67_c00057{left:310.950000px;}
.x61_c00057{left:312.000000px;}
.x9b_c00057{left:313.350000px;}
.x11_c00057{left:315.000000px;}
.x35_c00057{left:322.950000px;}
.x4a_c00057{left:325.050000px;}
.x3f_c00057{left:326.550000px;}
.x6f_c00057{left:327.750000px;}
.xaf_c00057{left:329.250000px;}
.x53_c00057{left:330.600000px;}
.xd5_c00057{left:333.900000px;}
.xb9_c00057{left:335.400000px;}
.x8f_c00057{left:340.350000px;}
.xf3_c00057{left:342.750000px;}
.xa0_c00057{left:343.950000px;}
.x2e_c00057{left:355.650000px;}
.xc2_c00057{left:357.300000px;}
.x90_c00057{left:361.950000px;}
.x55_c00057{left:366.450000px;}
.x86_c00057{left:367.500000px;}
.x1c_c00057{left:369.150000px;}
.x22_c00057{left:370.950000px;}
.x2f_c00057{left:372.600000px;}
.x56_c00057{left:375.750000px;}
.xb0_c00057{left:377.100000px;}
.x5_c00057{left:379.800000px;}
.x4b_c00057{left:381.600000px;}
.x78_c00057{left:382.800000px;}
.x70_c00057{left:383.850000px;}
.x36_c00057{left:386.700000px;}
.xb1_c00057{left:388.200000px;}
.x6_c00057{left:389.550000px;}
.xba_c00057{left:390.900000px;}
.xe0_c00057{left:391.950000px;}
.x68_c00057{left:395.850000px;}
.x23_c00057{left:396.900000px;}
.xa1_c00057{left:402.300000px;}
.x71_c00057{left:403.950000px;}
.xc8_c00057{left:405.000000px;}
.xf6_c00057{left:406.350000px;}
.x79_c00057{left:407.700000px;}
.x91_c00057{left:409.800000px;}
.xb2_c00057{left:411.300000px;}
.x3_c00057{left:414.150000px;}
.x7f_c00057{left:417.300000px;}
.xf7_c00057{left:418.950000px;}
.x92_c00057{left:420.600000px;}
.x37_c00057{left:423.000000px;}
.x10a_c00057{left:424.950000px;}
.x40_c00057{left:426.900000px;}
.x62_c00057{left:428.550000px;}
.x12_c00057{left:430.500000px;}
.x57_c00057{left:435.150000px;}
.x7_c00057{left:437.100000px;}
.x30_c00057{left:438.450000px;}
.xc9_c00057{left:439.500000px;}
.xa2_c00057{left:442.950000px;}
.xc7_c00057{left:446.400000px;}
.x24_c00057{left:448.800000px;}
.x88_c00057{left:451.050000px;}
.x72_c00057{left:454.050000px;}
.x41_c00057{left:456.750000px;}
.x31_c00057{left:458.250000px;}
.x93_c00057{left:461.250000px;}
.xc3_c00057{left:462.450000px;}
.xf4_c00057{left:464.400000px;}
.xa6_c00057{left:465.450000px;}
.x1d_c00057{left:467.100000px;}
.x80_c00057{left:469.200000px;}
.xca_c00057{left:470.400000px;}
.x7a_c00057{left:474.000000px;}
.x13_c00057{left:477.000000px;}
.xc5_c00057{left:479.700000px;}
.x8_c00057{left:481.050000px;}
.x94_c00057{left:482.550000px;}
.xe3_c00057{left:484.650000px;}
.x25_c00057{left:486.300000px;}
.xf5_c00057{left:487.500000px;}
.xa7_c00057{left:489.150000px;}
.xee_c00057{left:492.450000px;}
.x58_c00057{left:494.250000px;}
.xea_c00057{left:495.600000px;}
.xa3_c00057{left:497.250000px;}
.xcb_c00057{left:500.700000px;}
.x9_c00057{left:502.350000px;}
.x7b_c00057{left:503.550000px;}
.x38_c00057{left:504.750000px;}
.xc6_c00057{left:505.950000px;}
.xb3_c00057{left:509.250000px;}
.xcf_c00057{left:511.950000px;}
.xd0_c00057{left:513.900000px;}
.xd9_c00057{left:515.250000px;}
.xa4_c00057{left:517.050000px;}
.xf8_c00057{left:520.050000px;}
.x32_c00057{left:522.300000px;}
.xff_c00057{left:524.250000px;}
.xa8_c00057{left:525.450000px;}
.x42_c00057{left:527.250000px;}
.x102_c00057{left:528.600000px;}
.x95_c00057{left:532.650000px;}
.x26_c00057{left:534.900000px;}
.xa9_c00057{left:537.750000px;}
.x63_c00057{left:540.150000px;}
.xa_c00057{left:542.250000px;}
.x33_c00057{left:543.900000px;}
.xe4_c00057{left:545.850000px;}
.x69_c00057{left:547.950000px;}
.x14_c00057{left:549.750000px;}
.x89_c00057{left:556.200000px;}
.x43_c00057{left:559.650000px;}
.x1e_c00057{left:561.450000px;}
.xb_c00057{left:564.600000px;}
.xb4_c00057{left:567.300000px;}
.x59_c00057{left:568.350000px;}
.xeb_c00057{left:569.700000px;}
.x107_c00057{left:572.700000px;}
.xaa_c00057{left:575.250000px;}
.xd3_c00057{left:578.550000px;}
.x103_c00057{left:580.050000px;}
.x27_c00057{left:581.700000px;}
.x44_c00057{left:583.350000px;}
.xe1_c00057{left:584.700000px;}
.x5a_c00057{left:587.400000px;}
.x6a_c00057{left:589.650000px;}
.xfc_c00057{left:591.150000px;}
.xe2_c00057{left:595.500000px;}
.xd1_c00057{left:597.450000px;}
.xd4_c00057{left:602.250000px;}
.xc_c00057{left:605.250000px;}
.xab_c00057{left:606.900000px;}
.x4c_c00057{left:608.700000px;}
.x8a_c00057{left:611.250000px;}
.x7c_c00057{left:615.600000px;}
.xd6_c00057{left:618.300000px;}
.x104_c00057{left:621.000000px;}
.xcc_c00057{left:623.400000px;}
.x39_c00057{left:625.350000px;}
.xda_c00057{left:626.550000px;}
.xef_c00057{left:628.950000px;}
.x1f_c00057{left:630.600000px;}
.xb5_c00057{left:632.100000px;}
.x4d_c00057{left:633.150000px;}
.xe7_c00057{left:636.600000px;}
.x15_c00057{left:639.450000px;}
.x9c_c00057{left:642.450000px;}
.x28_c00057{left:643.650000px;}
.x64_c00057{left:646.650000px;}
.xcd_c00057{left:649.350000px;}
.xe5_c00057{left:651.000000px;}
.x20_c00057{left:655.050000px;}
.x3a_c00057{left:657.450000px;}
.xa5_c00057{left:660.900000px;}
.x8b_c00057{left:662.400000px;}
.xb6_c00057{left:663.450000px;}
.x5b_c00057{left:665.850000px;}
.x73_c00057{left:668.250000px;}
.x45_c00057{left:669.750000px;}
.x105_c00057{left:671.400000px;}
.xd_c00057{left:673.350000px;}
.x4e_c00057{left:678.150000px;}
.x5c_c00057{left:679.500000px;}
.x108_c00057{left:681.750000px;}
.xdb_c00057{left:683.100000px;}
.x81_c00057{left:684.150000px;}
.x100_c00057{left:685.500000px;}
.xe6_c00057{left:687.300000px;}
.x6b_c00057{left:688.950000px;}
.x96_c00057{left:693.150000px;}
.xec_c00057{left:699.000000px;}
.x9d_c00057{left:700.050000px;}
.xdc_c00057{left:703.650000px;}
.x29_c00057{left:705.600000px;}
.x109_c00057{left:706.950000px;}
.xd7_c00057{left:712.650000px;}
.x7d_c00057{left:714.300000px;}
.x46_c00057{left:715.800000px;}
.x16_c00057{left:718.350000px;}
.x82_c00057{left:720.150000px;}
.x2a_c00057{left:721.800000px;}
.xb7_c00057{left:723.150000px;}
.x8c_c00057{left:726.150000px;}
.xf0_c00057{left:729.750000px;}
.xed_c00057{left:731.100000px;}
.x74_c00057{left:734.100000px;}
.xac_c00057{left:737.550000px;}
.xf9_c00057{left:739.200000px;}
.x5d_c00057{left:740.400000px;}
.xe_c00057{left:741.750000px;}
.x17_c00057{left:743.550000px;}
.x9e_c00057{left:745.050000px;}
.x6c_c00057{left:749.400000px;}
.xfa_c00057{left:752.100000px;}
.xf1_c00057{left:753.150000px;}
.xdd_c00057{left:755.100000px;}
.x2b_c00057{left:756.750000px;}
.x101_c00057{left:758.250000px;}
.x97_c00057{left:761.550000px;}
.x3b_c00057{left:765.450000px;}
.x5e_c00057{left:768.150000px;}
.xfd_c00057{left:769.200000px;}
.x4f_c00057{left:771.450000px;}
.x98_c00057{left:773.100000px;}
.x21_c00057{left:777.750000px;}
.xde_c00057{left:781.050000px;}
.x2c_c00057{left:783.000000px;}
.x83_c00057{left:784.650000px;}
.x8d_c00057{left:786.300000px;}
.x47_c00057{left:788.100000px;}
.x3c_c00057{left:789.900000px;}
.xe8_c00057{left:791.700000px;}
.x99_c00057{left:792.900000px;}
.x18_c00057{left:795.750000px;}
.x65_c00057{left:797.400000px;}
.x5f_c00057{left:798.750000px;}
.xb8_c00057{left:799.800000px;}
.xad_c00057{left:800.850000px;}
.xc4_c00057{left:802.200000px;}
.xdf_c00057{left:805.950000px;}
.x6d_c00057{left:807.000000px;}
.x50_c00057{left:811.050000px;}
.xd2_c00057{left:813.900000px;}
.xf_c00057{left:815.850000px;}
.x3d_c00057{left:816.900000px;}
.xd8_c00057{left:818.100000px;}
.xfb_c00057{left:820.800000px;}
.x19_c00057{left:822.750000px;}
.x9f_c00057{left:824.550000px;}
.x10_c00057{left:825.900000px;}
.x75_c00057{left:827.100000px;}
.x84_c00057{left:831.750000px;}
.xae_c00057{left:833.250000px;}
.x2d_c00057{left:835.500000px;}
.x60_c00057{left:837.600000px;}
.x7e_c00057{left:838.800000px;}
.x48_c00057{left:840.600000px;}
.x85_c00057{left:843.300000px;}
.x9a_c00057{left:849.000000px;}
.x8e_c00057{left:850.800000px;}
.xe9_c00057{left:851.850000px;}
.x76_c00057{left:855.900000px;}
.x51_c00057{left:860.400000px;}
.x66_c00057{left:861.450000px;}
.x106_c00057{left:862.500000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws6_c00057{word-spacing:-17.333333pt;}
.wsa_c00057{word-spacing:-7.068413pt;}
.wsb_c00057{word-spacing:-4.322260pt;}
.ws7_c00057{word-spacing:-3.450980pt;}
.ws2_c00057{word-spacing:-1.596603pt;}
.wsd_c00057{word-spacing:0.000000pt;}
.ws1_c00057{word-spacing:4.221459pt;}
.wsc_c00057{word-spacing:5.252525pt;}
.ws4_c00057{word-spacing:6.518519pt;}
.ws5_c00057{word-spacing:7.372549pt;}
.ws8_c00057{word-spacing:12.333333pt;}
.ws9_c00057{word-spacing:13.350318pt;}
.ws0_c00057{word-spacing:16.941599pt;}
.ws3_c00057{word-spacing:1485.555556pt;}
.fs3_c00057{font-size:53.333333pt;}
.fs2_c00057{font-size:58.666667pt;}
.fs1_c00057{font-size:64.000000pt;}
.fs0_c00057{font-size:96.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y30_c00057{bottom:172.533333pt;}
.y2f_c00057{bottom:188.000000pt;}
.y2e_c00057{bottom:204.000000pt;}
.y31_c00057{bottom:216.266667pt;}
.y2d_c00057{bottom:220.000000pt;}
.y2c_c00057{bottom:235.733333pt;}
.y2b_c00057{bottom:251.466667pt;}
.y2a_c00057{bottom:279.066667pt;}
.y29_c00057{bottom:305.866667pt;}
.y28_c00057{bottom:322.533333pt;}
.y27_c00057{bottom:349.733333pt;}
.y26_c00057{bottom:365.733333pt;}
.y25_c00057{bottom:381.733333pt;}
.y23_c00057{bottom:405.733333pt;}
.y22_c00057{bottom:421.466667pt;}
.y21_c00057{bottom:437.733333pt;}
.y24_c00057{bottom:445.066667pt;}
.y20_c00057{bottom:453.733333pt;}
.y1f_c00057{bottom:469.733333pt;}
.y1e_c00057{bottom:485.466667pt;}
.y1d_c00057{bottom:512.666667pt;}
.y1c_c00057{bottom:528.666667pt;}
.y1b_c00057{bottom:552.266667pt;}
.y1a_c00057{bottom:580.266667pt;}
.y19_c00057{bottom:596.533333pt;}
.y18_c00057{bottom:623.066667pt;}
.y17_c00057{bottom:639.733333pt;}
.y16_c00057{bottom:655.733333pt;}
.y15_c00057{bottom:672.000000pt;}
.y14_c00057{bottom:687.600000pt;}
.y13_c00057{bottom:703.333333pt;}
.y12_c00057{bottom:719.066667pt;}
.y11_c00057{bottom:742.533333pt;}
.y10_c00057{bottom:758.800000pt;}
.yf_c00057{bottom:774.533333pt;}
.ye_c00057{bottom:790.533333pt;}
.yd_c00057{bottom:806.533333pt;}
.yc_c00057{bottom:830.800000pt;}
.yb_c00057{bottom:838.133333pt;}
.ya_c00057{bottom:861.600000pt;}
.y9_c00057{bottom:877.866667pt;}
.y8_c00057{bottom:894.133333pt;}
.y7_c00057{bottom:910.133333pt;}
.y6_c00057{bottom:933.466667pt;}
.y5_c00057{bottom:949.733333pt;}
.y4_c00057{bottom:970.800000pt;}
.y3_c00057{bottom:981.733333pt;}
.y2_c00057{bottom:997.733333pt;}
.y1_c00057{bottom:1021.733333pt;}
.h5_c00057{height:53.333333pt;}
.h4_c00057{height:58.666667pt;}
.h3_c00057{height:64.000000pt;}
.h2_c00057{height:96.000000pt;}
.h0_c00057{height:1129.280029pt;}
.h1_c00057{height:1129.333333pt;}
.w0_c00057{width:843.200032pt;}
.w1_c00057{width:843.333333pt;}
.x0_c00057{left:0.000000pt;}
.xbb_c00057{left:148.133333pt;}
.x1_c00057{left:149.466667pt;}
.x1a_c00057{left:151.466667pt;}
.x10b_c00057{left:165.466667pt;}
.xbc_c00057{left:171.866667pt;}
.x6e_c00057{left:186.133333pt;}
.x1b_c00057{left:188.533333pt;}
.xbd_c00057{left:196.133333pt;}
.xbe_c00057{left:212.800000pt;}
.xbf_c00057{left:224.266667pt;}
.xc0_c00057{left:237.333333pt;}
.x49_c00057{left:243.866667pt;}
.xce_c00057{left:244.800000pt;}
.x3e_c00057{left:246.133333pt;}
.xc1_c00057{left:256.533333pt;}
.x54_c00057{left:259.866667pt;}
.x87_c00057{left:260.800000pt;}
.x34_c00057{left:262.133333pt;}
.x4_c00057{left:263.733333pt;}
.xfe_c00057{left:266.533333pt;}
.xf2_c00057{left:268.133333pt;}
.x2_c00057{left:272.400000pt;}
.x52_c00057{left:274.000000pt;}
.x77_c00057{left:275.333333pt;}
.x67_c00057{left:276.400000pt;}
.x61_c00057{left:277.333333pt;}
.x9b_c00057{left:278.533333pt;}
.x11_c00057{left:280.000000pt;}
.x35_c00057{left:287.066667pt;}
.x4a_c00057{left:288.933333pt;}
.x3f_c00057{left:290.266667pt;}
.x6f_c00057{left:291.333333pt;}
.xaf_c00057{left:292.666667pt;}
.x53_c00057{left:293.866667pt;}
.xd5_c00057{left:296.800000pt;}
.xb9_c00057{left:298.133333pt;}
.x8f_c00057{left:302.533333pt;}
.xf3_c00057{left:304.666667pt;}
.xa0_c00057{left:305.733333pt;}
.x2e_c00057{left:316.133333pt;}
.xc2_c00057{left:317.600000pt;}
.x90_c00057{left:321.733333pt;}
.x55_c00057{left:325.733333pt;}
.x86_c00057{left:326.666667pt;}
.x1c_c00057{left:328.133333pt;}
.x22_c00057{left:329.733333pt;}
.x2f_c00057{left:331.200000pt;}
.x56_c00057{left:334.000000pt;}
.xb0_c00057{left:335.200000pt;}
.x5_c00057{left:337.600000pt;}
.x4b_c00057{left:339.200000pt;}
.x78_c00057{left:340.266667pt;}
.x70_c00057{left:341.200000pt;}
.x36_c00057{left:343.733333pt;}
.xb1_c00057{left:345.066667pt;}
.x6_c00057{left:346.266667pt;}
.xba_c00057{left:347.466667pt;}
.xe0_c00057{left:348.400000pt;}
.x68_c00057{left:351.866667pt;}
.x23_c00057{left:352.800000pt;}
.xa1_c00057{left:357.600000pt;}
.x71_c00057{left:359.066667pt;}
.xc8_c00057{left:360.000000pt;}
.xf6_c00057{left:361.200000pt;}
.x79_c00057{left:362.400000pt;}
.x91_c00057{left:364.266667pt;}
.xb2_c00057{left:365.600000pt;}
.x3_c00057{left:368.133333pt;}
.x7f_c00057{left:370.933333pt;}
.xf7_c00057{left:372.400000pt;}
.x92_c00057{left:373.866667pt;}
.x37_c00057{left:376.000000pt;}
.x10a_c00057{left:377.733333pt;}
.x40_c00057{left:379.466667pt;}
.x62_c00057{left:380.933333pt;}
.x12_c00057{left:382.666667pt;}
.x57_c00057{left:386.800000pt;}
.x7_c00057{left:388.533333pt;}
.x30_c00057{left:389.733333pt;}
.xc9_c00057{left:390.666667pt;}
.xa2_c00057{left:393.733333pt;}
.xc7_c00057{left:396.800000pt;}
.x24_c00057{left:398.933333pt;}
.x88_c00057{left:400.933333pt;}
.x72_c00057{left:403.600000pt;}
.x41_c00057{left:406.000000pt;}
.x31_c00057{left:407.333333pt;}
.x93_c00057{left:410.000000pt;}
.xc3_c00057{left:411.066667pt;}
.xf4_c00057{left:412.800000pt;}
.xa6_c00057{left:413.733333pt;}
.x1d_c00057{left:415.200000pt;}
.x80_c00057{left:417.066667pt;}
.xca_c00057{left:418.133333pt;}
.x7a_c00057{left:421.333333pt;}
.x13_c00057{left:424.000000pt;}
.xc5_c00057{left:426.400000pt;}
.x8_c00057{left:427.600000pt;}
.x94_c00057{left:428.933333pt;}
.xe3_c00057{left:430.800000pt;}
.x25_c00057{left:432.266667pt;}
.xf5_c00057{left:433.333333pt;}
.xa7_c00057{left:434.800000pt;}
.xee_c00057{left:437.733333pt;}
.x58_c00057{left:439.333333pt;}
.xea_c00057{left:440.533333pt;}
.xa3_c00057{left:442.000000pt;}
.xcb_c00057{left:445.066667pt;}
.x9_c00057{left:446.533333pt;}
.x7b_c00057{left:447.600000pt;}
.x38_c00057{left:448.666667pt;}
.xc6_c00057{left:449.733333pt;}
.xb3_c00057{left:452.666667pt;}
.xcf_c00057{left:455.066667pt;}
.xd0_c00057{left:456.800000pt;}
.xd9_c00057{left:458.000000pt;}
.xa4_c00057{left:459.600000pt;}
.xf8_c00057{left:462.266667pt;}
.x32_c00057{left:464.266667pt;}
.xff_c00057{left:466.000000pt;}
.xa8_c00057{left:467.066667pt;}
.x42_c00057{left:468.666667pt;}
.x102_c00057{left:469.866667pt;}
.x95_c00057{left:473.466667pt;}
.x26_c00057{left:475.466667pt;}
.xa9_c00057{left:478.000000pt;}
.x63_c00057{left:480.133333pt;}
.xa_c00057{left:482.000000pt;}
.x33_c00057{left:483.466667pt;}
.xe4_c00057{left:485.200000pt;}
.x69_c00057{left:487.066667pt;}
.x14_c00057{left:488.666667pt;}
.x89_c00057{left:494.400000pt;}
.x43_c00057{left:497.466667pt;}
.x1e_c00057{left:499.066667pt;}
.xb_c00057{left:501.866667pt;}
.xb4_c00057{left:504.266667pt;}
.x59_c00057{left:505.200000pt;}
.xeb_c00057{left:506.400000pt;}
.x107_c00057{left:509.066667pt;}
.xaa_c00057{left:511.333333pt;}
.xd3_c00057{left:514.266667pt;}
.x103_c00057{left:515.600000pt;}
.x27_c00057{left:517.066667pt;}
.x44_c00057{left:518.533333pt;}
.xe1_c00057{left:519.733333pt;}
.x5a_c00057{left:522.133333pt;}
.x6a_c00057{left:524.133333pt;}
.xfc_c00057{left:525.466667pt;}
.xe2_c00057{left:529.333333pt;}
.xd1_c00057{left:531.066667pt;}
.xd4_c00057{left:535.333333pt;}
.xc_c00057{left:538.000000pt;}
.xab_c00057{left:539.466667pt;}
.x4c_c00057{left:541.066667pt;}
.x8a_c00057{left:543.333333pt;}
.x7c_c00057{left:547.200000pt;}
.xd6_c00057{left:549.600000pt;}
.x104_c00057{left:552.000000pt;}
.xcc_c00057{left:554.133333pt;}
.x39_c00057{left:555.866667pt;}
.xda_c00057{left:556.933333pt;}
.xef_c00057{left:559.066667pt;}
.x1f_c00057{left:560.533333pt;}
.xb5_c00057{left:561.866667pt;}
.x4d_c00057{left:562.800000pt;}
.xe7_c00057{left:565.866667pt;}
.x15_c00057{left:568.400000pt;}
.x9c_c00057{left:571.066667pt;}
.x28_c00057{left:572.133333pt;}
.x64_c00057{left:574.800000pt;}
.xcd_c00057{left:577.200000pt;}
.xe5_c00057{left:578.666667pt;}
.x20_c00057{left:582.266667pt;}
.x3a_c00057{left:584.400000pt;}
.xa5_c00057{left:587.466667pt;}
.x8b_c00057{left:588.800000pt;}
.xb6_c00057{left:589.733333pt;}
.x5b_c00057{left:591.866667pt;}
.x73_c00057{left:594.000000pt;}
.x45_c00057{left:595.333333pt;}
.x105_c00057{left:596.800000pt;}
.xd_c00057{left:598.533333pt;}
.x4e_c00057{left:602.800000pt;}
.x5c_c00057{left:604.000000pt;}
.x108_c00057{left:606.000000pt;}
.xdb_c00057{left:607.200000pt;}
.x81_c00057{left:608.133333pt;}
.x100_c00057{left:609.333333pt;}
.xe6_c00057{left:610.933333pt;}
.x6b_c00057{left:612.400000pt;}
.x96_c00057{left:616.133333pt;}
.xec_c00057{left:621.333333pt;}
.x9d_c00057{left:622.266667pt;}
.xdc_c00057{left:625.466667pt;}
.x29_c00057{left:627.200000pt;}
.x109_c00057{left:628.400000pt;}
.xd7_c00057{left:633.466667pt;}
.x7d_c00057{left:634.933333pt;}
.x46_c00057{left:636.266667pt;}
.x16_c00057{left:638.533333pt;}
.x82_c00057{left:640.133333pt;}
.x2a_c00057{left:641.600000pt;}
.xb7_c00057{left:642.800000pt;}
.x8c_c00057{left:645.466667pt;}
.xf0_c00057{left:648.666667pt;}
.xed_c00057{left:649.866667pt;}
.x74_c00057{left:652.533333pt;}
.xac_c00057{left:655.600000pt;}
.xf9_c00057{left:657.066667pt;}
.x5d_c00057{left:658.133333pt;}
.xe_c00057{left:659.333333pt;}
.x17_c00057{left:660.933333pt;}
.x9e_c00057{left:662.266667pt;}
.x6c_c00057{left:666.133333pt;}
.xfa_c00057{left:668.533333pt;}
.xf1_c00057{left:669.466667pt;}
.xdd_c00057{left:671.200000pt;}
.x2b_c00057{left:672.666667pt;}
.x101_c00057{left:674.000000pt;}
.x97_c00057{left:676.933333pt;}
.x3b_c00057{left:680.400000pt;}
.x5e_c00057{left:682.800000pt;}
.xfd_c00057{left:683.733333pt;}
.x4f_c00057{left:685.733333pt;}
.x98_c00057{left:687.200000pt;}
.x21_c00057{left:691.333333pt;}
.xde_c00057{left:694.266667pt;}
.x2c_c00057{left:696.000000pt;}
.x83_c00057{left:697.466667pt;}
.x8d_c00057{left:698.933333pt;}
.x47_c00057{left:700.533333pt;}
.x3c_c00057{left:702.133333pt;}
.xe8_c00057{left:703.733333pt;}
.x99_c00057{left:704.800000pt;}
.x18_c00057{left:707.333333pt;}
.x65_c00057{left:708.800000pt;}
.x5f_c00057{left:710.000000pt;}
.xb8_c00057{left:710.933333pt;}
.xad_c00057{left:711.866667pt;}
.xc4_c00057{left:713.066667pt;}
.xdf_c00057{left:716.400000pt;}
.x6d_c00057{left:717.333333pt;}
.x50_c00057{left:720.933333pt;}
.xd2_c00057{left:723.466667pt;}
.xf_c00057{left:725.200000pt;}
.x3d_c00057{left:726.133333pt;}
.xd8_c00057{left:727.200000pt;}
.xfb_c00057{left:729.600000pt;}
.x19_c00057{left:731.333333pt;}
.x9f_c00057{left:732.933333pt;}
.x10_c00057{left:734.133333pt;}
.x75_c00057{left:735.200000pt;}
.x84_c00057{left:739.333333pt;}
.xae_c00057{left:740.666667pt;}
.x2d_c00057{left:742.666667pt;}
.x60_c00057{left:744.533333pt;}
.x7e_c00057{left:745.600000pt;}
.x48_c00057{left:747.200000pt;}
.x85_c00057{left:749.600000pt;}
.x9a_c00057{left:754.666667pt;}
.x8e_c00057{left:756.266667pt;}
.xe9_c00057{left:757.200000pt;}
.x76_c00057{left:760.800000pt;}
.x51_c00057{left:764.800000pt;}
.x66_c00057{left:765.733333pt;}
.x106_c00057{left:766.666667pt;}
}





/* 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_c00058 {
    display:none;
  }
  .loading-indicator_c00058.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00058 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_c00058 { 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_c00058" -> "#page-container .classname_c00058")
 */
.pf_c00058 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00058 { /* 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_c00058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00058 { /* 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_c00058 { /* 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_c00058 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00058 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00058 {overflow:visible;}
  }
}
.c_c00058 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00058 { /* 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_c00058:after { /* webkit #35443 */
  content: '';
}
.t_c00058:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00058 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 */
}
.__c00058 { /* 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_c00058 { /* info for Javascript */
  display:none;
}
.l_c00058 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00058 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00058 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00058: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_c00058 {
    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_c00058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00058.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_c00058 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00058;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.000000;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;}
.mf5_c00058{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00058{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m87_c00058{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m8_c00058{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m86_c00058{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.maa_c00058{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mec_c00058{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m94_c00058{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m53_c00058{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00058{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m50_c00058{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m11_c00058{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m97_c00058{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mef_c00058{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00058{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00058{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00058{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00058{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m60_c00058{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m26_c00058{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m57_c00058{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00058{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m64_c00058{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00058{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00058{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m67_c00058{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m47_c00058{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc_c00058{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m62_c00058{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me6_c00058{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m54_c00058{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00058{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m91_c00058{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m92_c00058{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m35_c00058{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m21_c00058{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00058{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00058{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mab_c00058{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00058{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m34_c00058{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00058{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00058{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m18_c00058{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m89_c00058{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00058{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00058{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf_c00058{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m40_c00058{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.maf_c00058{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00058{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mee_c00058{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mda_c00058{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00058{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00058{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00058{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00058{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m61_c00058{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m27_c00058{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00058{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m68_c00058{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00058{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m65_c00058{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m12_c00058{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m63_c00058{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m22_c00058{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.med_c00058{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m49_c00058{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00058{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00058{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00058{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m58_c00058{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00058{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m41_c00058{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.meb_c00058{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00058{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00058{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00058{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m15_c00058{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md7_c00058{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mca_c00058{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m42_c00058{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m14_c00058{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00058{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7_c00058{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m80_c00058{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me7_c00058{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mde_c00058{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.md4_c00058{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m83_c00058{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00058{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m96_c00058{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m16_c00058{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md8_c00058{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00058{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mac_c00058{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00058{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00058{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00058{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mce_c00058{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00058{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10_c00058{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00058{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00058{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m75_c00058{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m99_c00058{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me9_c00058{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md0_c00058{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00058{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb_c00058{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m24_c00058{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00058{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m33_c00058{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m48_c00058{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00058{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m30_c00058{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m32_c00058{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00058{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me1_c00058{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m23_c00058{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m55_c00058{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00058{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m19_c00058{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m56_c00058{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m38_c00058{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00058{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00058{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m25_c00058{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00058{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00058{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma_c00058{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m31_c00058{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00058{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md5_c00058{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00058{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m46_c00058{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9_c00058{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00058{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mad_c00058{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00058{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m43_c00058{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md9_c00058{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m59_c00058{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me_c00058{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00058{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md_c00058{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00058{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00058{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00058{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m71_c00058{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m69_c00058{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00058{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00058{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mae_c00058{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00058{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m88_c00058{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00058{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00058{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m90_c00058{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m20_c00058{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00058{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md6_c00058{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00058{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00058{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00058{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m72_c00058{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00058{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me4_c00058{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00058{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m93_c00058{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m95_c00058{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me3_c00058{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00058{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00058{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00058{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m76_c00058{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m39_c00058{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m29_c00058{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m84_c00058{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00058{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m98_c00058{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m45_c00058{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m44_c00058{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00058{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00058{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me0_c00058{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m79_c00058{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m81_c00058{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mba_c00058{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m77_c00058{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00058{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00058{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00058{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00058{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00058{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00058{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me2_c00058{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mea_c00058{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me8_c00058{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00058{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28_c00058{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00058{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m74_c00058{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m78_c00058{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m70_c00058{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m85_c00058{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.md3_c00058{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00058{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m52_c00058{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me5_c00058{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m73_c00058{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00058{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00058{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00058{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m66_c00058{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00058{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00058{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00058{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m51_c00058{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m82_c00058{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00058{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00058{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00058{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00058{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00058{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00058{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00058{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m37_c00058{transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00058{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00058{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00058{transform:matrix(0.347000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347000,0.000000,0.000000,0.250000,0,0);}
.m36_c00058{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00058{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.md1_c00058{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00058{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00058{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00058{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00058{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md2_c00058{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00058{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls0_c00058{letter-spacing:0.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{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__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00058{word-spacing:-9.076433px;}
.ws7_c00058{word-spacing:0.000000px;}
.ws5_c00058{word-spacing:0.888268px;}
.ws6_c00058{word-spacing:2.000000px;}
.ws1_c00058{word-spacing:4.923077px;}
.ws0_c00058{word-spacing:6.896552px;}
.ws2_c00058{word-spacing:42.580756px;}
.ws3_c00058{word-spacing:494.454545px;}
._0_c00058{width:978.818182px;}
.fc0_c00058{color:transparent;}
.fs4_c00058{font-size:18.000000px;}
.fs7_c00058{font-size:30.000000px;}
.fs5_c00058{font-size:36.000000px;}
.fs6_c00058{font-size:48.000000px;}
.fs3_c00058{font-size:60.000000px;}
.fs2_c00058{font-size:66.000000px;}
.fs1_c00058{font-size:72.000000px;}
.fs0_c00058{font-size:120.000000px;}
.y0_c00058{bottom:0.000000px;}
.y39_c00058{bottom:15.150000px;}
.y3a_c00058{bottom:48.600000px;}
.y3b_c00058{bottom:163.500000px;}
.y37_c00058{bottom:180.900000px;}
.y36_c00058{bottom:199.650000px;}
.y35_c00058{bottom:217.950000px;}
.y38_c00058{bottom:231.900000px;}
.y34_c00058{bottom:235.650000px;}
.y33_c00058{bottom:253.350000px;}
.y32_c00058{bottom:271.050000px;}
.y31_c00058{bottom:302.400000px;}
.y30_c00058{bottom:320.400000px;}
.y2f_c00058{bottom:338.400000px;}
.y2e_c00058{bottom:356.100000px;}
.y2d_c00058{bottom:374.100000px;}
.y2b_c00058{bottom:404.550000px;}
.y2a_c00058{bottom:422.550000px;}
.y29_c00058{bottom:440.550000px;}
.y2c_c00058{bottom:443.850000px;}
.y28_c00058{bottom:458.550000px;}
.y27_c00058{bottom:476.250000px;}
.y25_c00058{bottom:506.550000px;}
.y24_c00058{bottom:525.300000px;}
.y23_c00058{bottom:543.300000px;}
.y26_c00058{bottom:551.100000px;}
.y22_c00058{bottom:561.300000px;}
.y21_c00058{bottom:578.850000px;}
.y20_c00058{bottom:596.850000px;}
.y1f_c00058{bottom:631.500000px;}
.y1e_c00058{bottom:649.500000px;}
.y1c_c00058{bottom:684.900000px;}
.y1b_c00058{bottom:702.900000px;}
.y1a_c00058{bottom:720.600000px;}
.y1d_c00058{bottom:730.500000px;}
.y19_c00058{bottom:738.600000px;}
.y18_c00058{bottom:756.300000px;}
.y17_c00058{bottom:774.300000px;}
.y16_c00058{bottom:806.100000px;}
.y15_c00058{bottom:820.350000px;}
.y14_c00058{bottom:823.650000px;}
.y13_c00058{bottom:834.150000px;}
.y12_c00058{bottom:841.650000px;}
.y11_c00058{bottom:859.650000px;}
.y10_c00058{bottom:877.650000px;}
.yf_c00058{bottom:895.650000px;}
.ye_c00058{bottom:913.350000px;}
.yc_c00058{bottom:943.500000px;}
.yb_c00058{bottom:961.500000px;}
.yd_c00058{bottom:970.500000px;}
.ya_c00058{bottom:979.200000px;}
.y9_c00058{bottom:997.200000px;}
.y7_c00058{bottom:1023.900000px;}
.y6_c00058{bottom:1041.750000px;}
.y5_c00058{bottom:1059.750000px;}
.y8_c00058{bottom:1070.700000px;}
.y4_c00058{bottom:1077.450000px;}
.y3_c00058{bottom:1095.450000px;}
.y2_c00058{bottom:1113.150000px;}
.y1_c00058{bottom:1166.100000px;}
.h6_c00058{height:18.000000px;}
.h9_c00058{height:30.000000px;}
.h7_c00058{height:36.000000px;}
.h8_c00058{height:48.000000px;}
.h5_c00058{height:60.000000px;}
.h4_c00058{height:66.000000px;}
.h3_c00058{height:72.000000px;}
.h2_c00058{height:120.000000px;}
.h0_c00058{height:1271.879975px;}
.h1_c00058{height:1272.000000px;}
.w0_c00058{width:948.600036px;}
.w1_c00058{width:948.750000px;}
.x0_c00058{left:0.000000px;}
.x105_c00058{left:76.350000px;}
.xf3_c00058{left:78.150000px;}
.xa6_c00058{left:82.800000px;}
.x44_c00058{left:86.100000px;}
.x127_c00058{left:87.900000px;}
.x106_c00058{left:88.950000px;}
.xf4_c00058{left:91.500000px;}
.xcb_c00058{left:94.350000px;}
.x45_c00058{left:97.650000px;}
.x107_c00058{left:99.000000px;}
.x66_c00058{left:100.500000px;}
.x46_c00058{left:110.250000px;}
.x67_c00058{left:111.300000px;}
.x128_c00058{left:129.000000px;}
.x108_c00058{left:131.100000px;}
.xf5_c00058{left:132.150000px;}
.xcc_c00058{left:135.450000px;}
.xa7_c00058{left:137.850000px;}
.x47_c00058{left:139.800000px;}
.x10a_c00058{left:161.550000px;}
.x12a_c00058{left:218.550000px;}
.xd1_c00058{left:226.500000px;}
.x48_c00058{left:227.550000px;}
.x3_c00058{left:229.650000px;}
.x102_c00058{left:242.700000px;}
.xd0_c00058{left:243.750000px;}
.x71_c00058{left:244.800000px;}
.x3d_c00058{left:245.850000px;}
.x11_c00058{left:247.050000px;}
.x126_c00058{left:248.850000px;}
.x96_c00058{left:253.050000px;}
.x10d_c00058{left:258.450000px;}
.x88_c00058{left:266.400000px;}
.xbb_c00058{left:268.500000px;}
.x21_c00058{left:272.850000px;}
.xad_c00058{left:274.950000px;}
.x80_c00058{left:278.550000px;}
.x12_c00058{left:281.250000px;}
.x89_c00058{left:282.600000px;}
.x3e_c00058{left:284.400000px;}
.xe2_c00058{left:285.600000px;}
.xd7_c00058{left:286.950000px;}
.x29_c00058{left:288.750000px;}
.x61_c00058{left:289.950000px;}
.x117_c00058{left:291.000000px;}
.xc7_c00058{left:294.150000px;}
.x33_c00058{left:297.000000px;}
.x81_c00058{left:299.850000px;}
.xbc_c00058{left:302.700000px;}
.x72_c00058{left:304.650000px;}
.xda_c00058{left:305.700000px;}
.x2a_c00058{left:307.500000px;}
.x111_c00058{left:309.150000px;}
.xf2_c00058{left:310.200000px;}
.x4_c00058{left:312.150000px;}
.xdb_c00058{left:315.000000px;}
.xe3_c00058{left:323.700000px;}
.x13_c00058{left:325.200000px;}
.x118_c00058{left:326.250000px;}
.x97_c00058{left:328.350000px;}
.x4f_c00058{left:329.850000px;}
.x9e_c00058{left:331.950000px;}
.x92_c00058{left:333.000000px;}
.x22_c00058{left:334.050000px;}
.x14_c00058{left:335.250000px;}
.x73_c00058{left:336.300000px;}
.xeb_c00058{left:339.000000px;}
.xcd_c00058{left:340.200000px;}
.x5_c00058{left:342.750000px;}
.x8a_c00058{left:343.800000px;}
.x109_c00058{left:344.850000px;}
.x82_c00058{left:345.900000px;}
.x1_c00058{left:347.400000px;}
.xc8_c00058{left:351.000000px;}
.xf6_c00058{left:352.200000px;}
.x9f_c00058{left:353.250000px;}
.x15_c00058{left:355.050000px;}
.x23_c00058{left:356.700000px;}
.xec_c00058{left:357.750000px;}
.x34_c00058{left:359.250000px;}
.x50_c00058{left:362.250000px;}
.x68_c00058{left:364.050000px;}
.xc3_c00058{left:365.700000px;}
.x122_c00058{left:367.350000px;}
.xfe_c00058{left:368.700000px;}
.xb5_c00058{left:370.800000px;}
.x35_c00058{left:372.900000px;}
.xa0_c00058{left:377.700000px;}
.x3f_c00058{left:379.050000px;}
.xfc_c00058{left:380.250000px;}
.x62_c00058{left:384.600000px;}
.x5a_c00058{left:385.800000px;}
.xbd_c00058{left:387.300000px;}
.xc4_c00058{left:388.350000px;}
.xae_c00058{left:389.850000px;}
.x16_c00058{left:393.600000px;}
.x6_c00058{left:395.700000px;}
.xed_c00058{left:397.050000px;}
.x40_c00058{left:399.600000px;}
.xf7_c00058{left:400.800000px;}
.x8b_c00058{left:402.450000px;}
.x123_c00058{left:404.850000px;}
.x63_c00058{left:405.900000px;}
.x5b_c00058{left:408.150000px;}
.x2b_c00058{left:409.650000px;}
.xc9_c00058{left:413.250000px;}
.x69_c00058{left:415.950000px;}
.x24_c00058{left:417.600000px;}
.x51_c00058{left:419.550000px;}
.x8c_c00058{left:420.750000px;}
.x10e_c00058{left:424.050000px;}
.x124_c00058{left:425.400000px;}
.x11d_c00058{left:428.700000px;}
.xdc_c00058{left:429.750000px;}
.x9d_c00058{left:431.550000px;}
.x83_c00058{left:434.400000px;}
.xbe_c00058{left:435.900000px;}
.x41_c00058{left:437.700000px;}
.x36_c00058{left:440.250000px;}
.xe4_c00058{left:442.500000px;}
.x7_c00058{left:444.000000px;}
.xa8_c00058{left:448.200000px;}
.xa1_c00058{left:450.450000px;}
.xce_c00058{left:451.500000px;}
.x93_c00058{left:452.850000px;}
.x103_c00058{left:454.050000px;}
.x49_c00058{left:455.700000px;}
.x52_c00058{left:457.050000px;}
.x8_c00058{left:459.450000px;}
.x6a_c00058{left:462.000000px;}
.xf8_c00058{left:463.050000px;}
.x17_c00058{left:464.100000px;}
.x7b_c00058{left:466.650000px;}
.xaf_c00058{left:468.000000px;}
.xa2_c00058{left:469.200000px;}
.x64_c00058{left:470.700000px;}
.x5c_c00058{left:473.250000px;}
.x25_c00058{left:475.200000px;}
.x98_c00058{left:477.600000px;}
.xd2_c00058{left:479.550000px;}
.x8d_c00058{left:481.200000px;}
.x42_c00058{left:482.700000px;}
.x129_c00058{left:484.500000px;}
.x2c_c00058{left:486.300000px;}
.x26_c00058{left:487.800000px;}
.x120_c00058{left:489.750000px;}
.x6b_c00058{left:491.550000px;}
.x43_c00058{left:493.500000px;}
.x74_c00058{left:495.900000px;}
.xee_c00058{left:497.550000px;}
.x11e_c00058{left:499.350000px;}
.x4a_c00058{left:501.750000px;}
.xa3_c00058{left:504.450000px;}
.x75_c00058{left:510.300000px;}
.x9_c00058{left:512.400000px;}
.x2d_c00058{left:515.100000px;}
.xdd_c00058{left:516.150000px;}
.x53_c00058{left:517.500000px;}
.x112_c00058{left:519.750000px;}
.x7c_c00058{left:520.950000px;}
.xe5_c00058{left:522.900000px;}
.xcf_c00058{left:525.600000px;}
.x37_c00058{left:526.650000px;}
.xca_c00058{left:528.150000px;}
.x6c_c00058{left:529.350000px;}
.x18_c00058{left:531.750000px;}
.xe6_c00058{left:533.700000px;}
.x38_c00058{left:535.650000px;}
.xde_c00058{left:536.700000px;}
.xd3_c00058{left:538.200000px;}
.x5d_c00058{left:540.900000px;}
.xa_c00058{left:545.550000px;}
.xf9_c00058{left:546.900000px;}
.x6d_c00058{left:549.150000px;}
.xbf_c00058{left:551.100000px;}
.x5e_c00058{left:552.450000px;}
.xd8_c00058{left:553.950000px;}
.x84_c00058{left:555.750000px;}
.xb6_c00058{left:557.250000px;}
.x76_c00058{left:558.600000px;}
.xb_c00058{left:559.950000px;}
.xe7_c00058{left:561.450000px;}
.x19_c00058{left:564.900000px;}
.xb0_c00058{left:565.950000px;}
.x113_c00058{left:567.000000px;}
.x2e_c00058{left:570.150000px;}
.x119_c00058{left:574.650000px;}
.x54_c00058{left:575.850000px;}
.x4b_c00058{left:577.350000px;}
.xa9_c00058{left:579.600000px;}
.xe8_c00058{left:582.000000px;}
.xc5_c00058{left:583.500000px;}
.xff_c00058{left:585.450000px;}
.x10f_c00058{left:586.500000px;}
.x27_c00058{left:589.650000px;}
.x55_c00058{left:595.650000px;}
.xa4_c00058{left:597.000000px;}
.x6e_c00058{left:598.050000px;}
.xc_c00058{left:601.350000px;}
.xfa_c00058{left:602.700000px;}
.xaa_c00058{left:605.100000px;}
.x10b_c00058{left:606.300000px;}
.x99_c00058{left:608.100000px;}
.x1a_c00058{left:609.900000px;}
.xef_c00058{left:611.250000px;}
.x8e_c00058{left:612.450000px;}
.xd4_c00058{left:614.550000px;}
.x94_c00058{left:616.200000px;}
.x100_c00058{left:617.550000px;}
.xe9_c00058{left:619.050000px;}
.x114_c00058{left:621.300000px;}
.xa5_c00058{left:623.250000px;}
.x110_c00058{left:624.600000px;}
.x85_c00058{left:625.650000px;}
.x95_c00058{left:626.700000px;}
.xfd_c00058{left:627.900000px;}
.x1b_c00058{left:628.950000px;}
.x10c_c00058{left:631.200000px;}
.x11a_c00058{left:632.550000px;}
.x5f_c00058{left:633.750000px;}
.x4c_c00058{left:634.950000px;}
.xb1_c00058{left:636.900000px;}
.x28_c00058{left:639.300000px;}
.x8f_c00058{left:640.500000px;}
.x115_c00058{left:642.600000px;}
.x2f_c00058{left:644.700000px;}
.x39_c00058{left:645.750000px;}
.xc0_c00058{left:646.950000px;}
.x104_c00058{left:648.150000px;}
.x11b_c00058{left:649.800000px;}
.x9a_c00058{left:651.300000px;}
.x1c_c00058{left:653.100000px;}
.x56_c00058{left:655.050000px;}
.x65_c00058{left:656.700000px;}
.xdf_c00058{left:657.900000px;}
.x101_c00058{left:659.700000px;}
.xf0_c00058{left:661.950000px;}
.x3a_c00058{left:663.000000px;}
.xab_c00058{left:664.800000px;}
.x6f_c00058{left:667.800000px;}
.xd_c00058{left:669.000000px;}
.x9b_c00058{left:670.050000px;}
.x4d_c00058{left:671.250000px;}
.xc6_c00058{left:673.500000px;}
.x77_c00058{left:675.000000px;}
.x30_c00058{left:676.350000px;}
.x57_c00058{left:677.400000px;}
.x7d_c00058{left:681.750000px;}
.xd5_c00058{left:683.250000px;}
.x11c_c00058{left:685.500000px;}
.xc1_c00058{left:687.300000px;}
.xb7_c00058{left:688.350000px;}
.x86_c00058{left:690.450000px;}
.x31_c00058{left:692.550000px;}
.xb2_c00058{left:696.000000px;}
.x4e_c00058{left:700.050000px;}
.x70_c00058{left:703.800000px;}
.x90_c00058{left:705.000000px;}
.x12b_c00058{left:706.350000px;}
.x58_c00058{left:710.550000px;}
.xd6_c00058{left:713.100000px;}
.x78_c00058{left:714.600000px;}
.x1d_c00058{left:716.400000px;}
.xe_c00058{left:719.100000px;}
.x59_c00058{left:722.100000px;}
.x60_c00058{left:724.800000px;}
.x32_c00058{left:726.000000px;}
.x7e_c00058{left:730.050000px;}
.xb8_c00058{left:732.300000px;}
.x91_c00058{left:734.100000px;}
.xe0_c00058{left:736.050000px;}
.x79_c00058{left:737.250000px;}
.xf_c00058{left:739.200000px;}
.xb3_c00058{left:742.050000px;}
.x1e_c00058{left:744.150000px;}
.x3b_c00058{left:746.850000px;}
.xe1_c00058{left:747.900000px;}
.xc2_c00058{left:749.250000px;}
.xd9_c00058{left:751.500000px;}
.x121_c00058{left:756.000000px;}
.x116_c00058{left:759.000000px;}
.xf1_c00058{left:760.200000px;}
.x1f_c00058{left:761.400000px;}
.xfb_c00058{left:764.400000px;}
.xb4_c00058{left:765.450000px;}
.x3c_c00058{left:768.450000px;}
.x11f_c00058{left:770.100000px;}
.xb9_c00058{left:775.500000px;}
.x87_c00058{left:778.650000px;}
.x9c_c00058{left:780.450000px;}
.x2_c00058{left:781.500000px;}
.x125_c00058{left:783.750000px;}
.xba_c00058{left:784.800000px;}
.x10_c00058{left:786.750000px;}
.x7f_c00058{left:787.950000px;}
.xea_c00058{left:790.200000px;}
.xac_c00058{left:793.050000px;}
.x7a_c00058{left:794.850000px;}
.x20_c00058{left:797.400000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws4_c00058{word-spacing:-8.067941pt;}
.ws7_c00058{word-spacing:0.000000pt;}
.ws5_c00058{word-spacing:0.789572pt;}
.ws6_c00058{word-spacing:1.777778pt;}
.ws1_c00058{word-spacing:4.376068pt;}
.ws0_c00058{word-spacing:6.130268pt;}
.ws2_c00058{word-spacing:37.849561pt;}
.ws3_c00058{word-spacing:439.515152pt;}
._0_c00058{width:870.060606pt;}
.fs4_c00058{font-size:16.000000pt;}
.fs7_c00058{font-size:26.666667pt;}
.fs5_c00058{font-size:32.000000pt;}
.fs6_c00058{font-size:42.666667pt;}
.fs3_c00058{font-size:53.333333pt;}
.fs2_c00058{font-size:58.666667pt;}
.fs1_c00058{font-size:64.000000pt;}
.fs0_c00058{font-size:106.666667pt;}
.y0_c00058{bottom:0.000000pt;}
.y39_c00058{bottom:13.466667pt;}
.y3a_c00058{bottom:43.200000pt;}
.y3b_c00058{bottom:145.333333pt;}
.y37_c00058{bottom:160.800000pt;}
.y36_c00058{bottom:177.466667pt;}
.y35_c00058{bottom:193.733333pt;}
.y38_c00058{bottom:206.133333pt;}
.y34_c00058{bottom:209.466667pt;}
.y33_c00058{bottom:225.200000pt;}
.y32_c00058{bottom:240.933333pt;}
.y31_c00058{bottom:268.800000pt;}
.y30_c00058{bottom:284.800000pt;}
.y2f_c00058{bottom:300.800000pt;}
.y2e_c00058{bottom:316.533333pt;}
.y2d_c00058{bottom:332.533333pt;}
.y2b_c00058{bottom:359.600000pt;}
.y2a_c00058{bottom:375.600000pt;}
.y29_c00058{bottom:391.600000pt;}
.y2c_c00058{bottom:394.533333pt;}
.y28_c00058{bottom:407.600000pt;}
.y27_c00058{bottom:423.333333pt;}
.y25_c00058{bottom:450.266667pt;}
.y24_c00058{bottom:466.933333pt;}
.y23_c00058{bottom:482.933333pt;}
.y26_c00058{bottom:489.866667pt;}
.y22_c00058{bottom:498.933333pt;}
.y21_c00058{bottom:514.533333pt;}
.y20_c00058{bottom:530.533333pt;}
.y1f_c00058{bottom:561.333333pt;}
.y1e_c00058{bottom:577.333333pt;}
.y1c_c00058{bottom:608.800000pt;}
.y1b_c00058{bottom:624.800000pt;}
.y1a_c00058{bottom:640.533333pt;}
.y1d_c00058{bottom:649.333333pt;}
.y19_c00058{bottom:656.533333pt;}
.y18_c00058{bottom:672.266667pt;}
.y17_c00058{bottom:688.266667pt;}
.y16_c00058{bottom:716.533333pt;}
.y15_c00058{bottom:729.200000pt;}
.y14_c00058{bottom:732.133333pt;}
.y13_c00058{bottom:741.466667pt;}
.y12_c00058{bottom:748.133333pt;}
.y11_c00058{bottom:764.133333pt;}
.y10_c00058{bottom:780.133333pt;}
.yf_c00058{bottom:796.133333pt;}
.ye_c00058{bottom:811.866667pt;}
.yc_c00058{bottom:838.666667pt;}
.yb_c00058{bottom:854.666667pt;}
.yd_c00058{bottom:862.666667pt;}
.ya_c00058{bottom:870.400000pt;}
.y9_c00058{bottom:886.400000pt;}
.y7_c00058{bottom:910.133333pt;}
.y6_c00058{bottom:926.000000pt;}
.y5_c00058{bottom:942.000000pt;}
.y8_c00058{bottom:951.733333pt;}
.y4_c00058{bottom:957.733333pt;}
.y3_c00058{bottom:973.733333pt;}
.y2_c00058{bottom:989.466667pt;}
.y1_c00058{bottom:1036.533333pt;}
.h6_c00058{height:16.000000pt;}
.h9_c00058{height:26.666667pt;}
.h7_c00058{height:32.000000pt;}
.h8_c00058{height:42.666667pt;}
.h5_c00058{height:53.333333pt;}
.h4_c00058{height:58.666667pt;}
.h3_c00058{height:64.000000pt;}
.h2_c00058{height:106.666667pt;}
.h0_c00058{height:1130.559977pt;}
.h1_c00058{height:1130.666667pt;}
.w0_c00058{width:843.200032pt;}
.w1_c00058{width:843.333333pt;}
.x0_c00058{left:0.000000pt;}
.x105_c00058{left:67.866667pt;}
.xf3_c00058{left:69.466667pt;}
.xa6_c00058{left:73.600000pt;}
.x44_c00058{left:76.533333pt;}
.x127_c00058{left:78.133333pt;}
.x106_c00058{left:79.066667pt;}
.xf4_c00058{left:81.333333pt;}
.xcb_c00058{left:83.866667pt;}
.x45_c00058{left:86.800000pt;}
.x107_c00058{left:88.000000pt;}
.x66_c00058{left:89.333333pt;}
.x46_c00058{left:98.000000pt;}
.x67_c00058{left:98.933333pt;}
.x128_c00058{left:114.666667pt;}
.x108_c00058{left:116.533333pt;}
.xf5_c00058{left:117.466667pt;}
.xcc_c00058{left:120.400000pt;}
.xa7_c00058{left:122.533333pt;}
.x47_c00058{left:124.266667pt;}
.x10a_c00058{left:143.600000pt;}
.x12a_c00058{left:194.266667pt;}
.xd1_c00058{left:201.333333pt;}
.x48_c00058{left:202.266667pt;}
.x3_c00058{left:204.133333pt;}
.x102_c00058{left:215.733333pt;}
.xd0_c00058{left:216.666667pt;}
.x71_c00058{left:217.600000pt;}
.x3d_c00058{left:218.533333pt;}
.x11_c00058{left:219.600000pt;}
.x126_c00058{left:221.200000pt;}
.x96_c00058{left:224.933333pt;}
.x10d_c00058{left:229.733333pt;}
.x88_c00058{left:236.800000pt;}
.xbb_c00058{left:238.666667pt;}
.x21_c00058{left:242.533333pt;}
.xad_c00058{left:244.400000pt;}
.x80_c00058{left:247.600000pt;}
.x12_c00058{left:250.000000pt;}
.x89_c00058{left:251.200000pt;}
.x3e_c00058{left:252.800000pt;}
.xe2_c00058{left:253.866667pt;}
.xd7_c00058{left:255.066667pt;}
.x29_c00058{left:256.666667pt;}
.x61_c00058{left:257.733333pt;}
.x117_c00058{left:258.666667pt;}
.xc7_c00058{left:261.466667pt;}
.x33_c00058{left:264.000000pt;}
.x81_c00058{left:266.533333pt;}
.xbc_c00058{left:269.066667pt;}
.x72_c00058{left:270.800000pt;}
.xda_c00058{left:271.733333pt;}
.x2a_c00058{left:273.333333pt;}
.x111_c00058{left:274.800000pt;}
.xf2_c00058{left:275.733333pt;}
.x4_c00058{left:277.466667pt;}
.xdb_c00058{left:280.000000pt;}
.xe3_c00058{left:287.733333pt;}
.x13_c00058{left:289.066667pt;}
.x118_c00058{left:290.000000pt;}
.x97_c00058{left:291.866667pt;}
.x4f_c00058{left:293.200000pt;}
.x9e_c00058{left:295.066667pt;}
.x92_c00058{left:296.000000pt;}
.x22_c00058{left:296.933333pt;}
.x14_c00058{left:298.000000pt;}
.x73_c00058{left:298.933333pt;}
.xeb_c00058{left:301.333333pt;}
.xcd_c00058{left:302.400000pt;}
.x5_c00058{left:304.666667pt;}
.x8a_c00058{left:305.600000pt;}
.x109_c00058{left:306.533333pt;}
.x82_c00058{left:307.466667pt;}
.x1_c00058{left:308.800000pt;}
.xc8_c00058{left:312.000000pt;}
.xf6_c00058{left:313.066667pt;}
.x9f_c00058{left:314.000000pt;}
.x15_c00058{left:315.600000pt;}
.x23_c00058{left:317.066667pt;}
.xec_c00058{left:318.000000pt;}
.x34_c00058{left:319.333333pt;}
.x50_c00058{left:322.000000pt;}
.x68_c00058{left:323.600000pt;}
.xc3_c00058{left:325.066667pt;}
.x122_c00058{left:326.533333pt;}
.xfe_c00058{left:327.733333pt;}
.xb5_c00058{left:329.600000pt;}
.x35_c00058{left:331.466667pt;}
.xa0_c00058{left:335.733333pt;}
.x3f_c00058{left:336.933333pt;}
.xfc_c00058{left:338.000000pt;}
.x62_c00058{left:341.866667pt;}
.x5a_c00058{left:342.933333pt;}
.xbd_c00058{left:344.266667pt;}
.xc4_c00058{left:345.200000pt;}
.xae_c00058{left:346.533333pt;}
.x16_c00058{left:349.866667pt;}
.x6_c00058{left:351.733333pt;}
.xed_c00058{left:352.933333pt;}
.x40_c00058{left:355.200000pt;}
.xf7_c00058{left:356.266667pt;}
.x8b_c00058{left:357.733333pt;}
.x123_c00058{left:359.866667pt;}
.x63_c00058{left:360.800000pt;}
.x5b_c00058{left:362.800000pt;}
.x2b_c00058{left:364.133333pt;}
.xc9_c00058{left:367.333333pt;}
.x69_c00058{left:369.733333pt;}
.x24_c00058{left:371.200000pt;}
.x51_c00058{left:372.933333pt;}
.x8c_c00058{left:374.000000pt;}
.x10e_c00058{left:376.933333pt;}
.x124_c00058{left:378.133333pt;}
.x11d_c00058{left:381.066667pt;}
.xdc_c00058{left:382.000000pt;}
.x9d_c00058{left:383.600000pt;}
.x83_c00058{left:386.133333pt;}
.xbe_c00058{left:387.466667pt;}
.x41_c00058{left:389.066667pt;}
.x36_c00058{left:391.333333pt;}
.xe4_c00058{left:393.333333pt;}
.x7_c00058{left:394.666667pt;}
.xa8_c00058{left:398.400000pt;}
.xa1_c00058{left:400.400000pt;}
.xce_c00058{left:401.333333pt;}
.x93_c00058{left:402.533333pt;}
.x103_c00058{left:403.600000pt;}
.x49_c00058{left:405.066667pt;}
.x52_c00058{left:406.266667pt;}
.x8_c00058{left:408.400000pt;}
.x6a_c00058{left:410.666667pt;}
.xf8_c00058{left:411.600000pt;}
.x17_c00058{left:412.533333pt;}
.x7b_c00058{left:414.800000pt;}
.xaf_c00058{left:416.000000pt;}
.xa2_c00058{left:417.066667pt;}
.x64_c00058{left:418.400000pt;}
.x5c_c00058{left:420.666667pt;}
.x25_c00058{left:422.400000pt;}
.x98_c00058{left:424.533333pt;}
.xd2_c00058{left:426.266667pt;}
.x8d_c00058{left:427.733333pt;}
.x42_c00058{left:429.066667pt;}
.x129_c00058{left:430.666667pt;}
.x2c_c00058{left:432.266667pt;}
.x26_c00058{left:433.600000pt;}
.x120_c00058{left:435.333333pt;}
.x6b_c00058{left:436.933333pt;}
.x43_c00058{left:438.666667pt;}
.x74_c00058{left:440.800000pt;}
.xee_c00058{left:442.266667pt;}
.x11e_c00058{left:443.866667pt;}
.x4a_c00058{left:446.000000pt;}
.xa3_c00058{left:448.400000pt;}
.x75_c00058{left:453.600000pt;}
.x9_c00058{left:455.466667pt;}
.x2d_c00058{left:457.866667pt;}
.xdd_c00058{left:458.800000pt;}
.x53_c00058{left:460.000000pt;}
.x112_c00058{left:462.000000pt;}
.x7c_c00058{left:463.066667pt;}
.xe5_c00058{left:464.800000pt;}
.xcf_c00058{left:467.200000pt;}
.x37_c00058{left:468.133333pt;}
.xca_c00058{left:469.466667pt;}
.x6c_c00058{left:470.533333pt;}
.x18_c00058{left:472.666667pt;}
.xe6_c00058{left:474.400000pt;}
.x38_c00058{left:476.133333pt;}
.xde_c00058{left:477.066667pt;}
.xd3_c00058{left:478.400000pt;}
.x5d_c00058{left:480.800000pt;}
.xa_c00058{left:484.933333pt;}
.xf9_c00058{left:486.133333pt;}
.x6d_c00058{left:488.133333pt;}
.xbf_c00058{left:489.866667pt;}
.x5e_c00058{left:491.066667pt;}
.xd8_c00058{left:492.400000pt;}
.x84_c00058{left:494.000000pt;}
.xb6_c00058{left:495.333333pt;}
.x76_c00058{left:496.533333pt;}
.xb_c00058{left:497.733333pt;}
.xe7_c00058{left:499.066667pt;}
.x19_c00058{left:502.133333pt;}
.xb0_c00058{left:503.066667pt;}
.x113_c00058{left:504.000000pt;}
.x2e_c00058{left:506.800000pt;}
.x119_c00058{left:510.800000pt;}
.x54_c00058{left:511.866667pt;}
.x4b_c00058{left:513.200000pt;}
.xa9_c00058{left:515.200000pt;}
.xe8_c00058{left:517.333333pt;}
.xc5_c00058{left:518.666667pt;}
.xff_c00058{left:520.400000pt;}
.x10f_c00058{left:521.333333pt;}
.x27_c00058{left:524.133333pt;}
.x55_c00058{left:529.466667pt;}
.xa4_c00058{left:530.666667pt;}
.x6e_c00058{left:531.600000pt;}
.xc_c00058{left:534.533333pt;}
.xfa_c00058{left:535.733333pt;}
.xaa_c00058{left:537.866667pt;}
.x10b_c00058{left:538.933333pt;}
.x99_c00058{left:540.533333pt;}
.x1a_c00058{left:542.133333pt;}
.xef_c00058{left:543.333333pt;}
.x8e_c00058{left:544.400000pt;}
.xd4_c00058{left:546.266667pt;}
.x94_c00058{left:547.733333pt;}
.x100_c00058{left:548.933333pt;}
.xe9_c00058{left:550.266667pt;}
.x114_c00058{left:552.266667pt;}
.xa5_c00058{left:554.000000pt;}
.x110_c00058{left:555.200000pt;}
.x85_c00058{left:556.133333pt;}
.x95_c00058{left:557.066667pt;}
.xfd_c00058{left:558.133333pt;}
.x1b_c00058{left:559.066667pt;}
.x10c_c00058{left:561.066667pt;}
.x11a_c00058{left:562.266667pt;}
.x5f_c00058{left:563.333333pt;}
.x4c_c00058{left:564.400000pt;}
.xb1_c00058{left:566.133333pt;}
.x28_c00058{left:568.266667pt;}
.x8f_c00058{left:569.333333pt;}
.x115_c00058{left:571.200000pt;}
.x2f_c00058{left:573.066667pt;}
.x39_c00058{left:574.000000pt;}
.xc0_c00058{left:575.066667pt;}
.x104_c00058{left:576.133333pt;}
.x11b_c00058{left:577.600000pt;}
.x9a_c00058{left:578.933333pt;}
.x1c_c00058{left:580.533333pt;}
.x56_c00058{left:582.266667pt;}
.x65_c00058{left:583.733333pt;}
.xdf_c00058{left:584.800000pt;}
.x101_c00058{left:586.400000pt;}
.xf0_c00058{left:588.400000pt;}
.x3a_c00058{left:589.333333pt;}
.xab_c00058{left:590.933333pt;}
.x6f_c00058{left:593.600000pt;}
.xd_c00058{left:594.666667pt;}
.x9b_c00058{left:595.600000pt;}
.x4d_c00058{left:596.666667pt;}
.xc6_c00058{left:598.666667pt;}
.x77_c00058{left:600.000000pt;}
.x30_c00058{left:601.200000pt;}
.x57_c00058{left:602.133333pt;}
.x7d_c00058{left:606.000000pt;}
.xd5_c00058{left:607.333333pt;}
.x11c_c00058{left:609.333333pt;}
.xc1_c00058{left:610.933333pt;}
.xb7_c00058{left:611.866667pt;}
.x86_c00058{left:613.733333pt;}
.x31_c00058{left:615.600000pt;}
.xb2_c00058{left:618.666667pt;}
.x4e_c00058{left:622.266667pt;}
.x70_c00058{left:625.600000pt;}
.x90_c00058{left:626.666667pt;}
.x12b_c00058{left:627.866667pt;}
.x58_c00058{left:631.600000pt;}
.xd6_c00058{left:633.866667pt;}
.x78_c00058{left:635.200000pt;}
.x1d_c00058{left:636.800000pt;}
.xe_c00058{left:639.200000pt;}
.x59_c00058{left:641.866667pt;}
.x60_c00058{left:644.266667pt;}
.x32_c00058{left:645.333333pt;}
.x7e_c00058{left:648.933333pt;}
.xb8_c00058{left:650.933333pt;}
.x91_c00058{left:652.533333pt;}
.xe0_c00058{left:654.266667pt;}
.x79_c00058{left:655.333333pt;}
.xf_c00058{left:657.066667pt;}
.xb3_c00058{left:659.600000pt;}
.x1e_c00058{left:661.466667pt;}
.x3b_c00058{left:663.866667pt;}
.xe1_c00058{left:664.800000pt;}
.xc2_c00058{left:666.000000pt;}
.xd9_c00058{left:668.000000pt;}
.x121_c00058{left:672.000000pt;}
.x116_c00058{left:674.666667pt;}
.xf1_c00058{left:675.733333pt;}
.x1f_c00058{left:676.800000pt;}
.xfb_c00058{left:679.466667pt;}
.xb4_c00058{left:680.400000pt;}
.x3c_c00058{left:683.066667pt;}
.x11f_c00058{left:684.533333pt;}
.xb9_c00058{left:689.333333pt;}
.x87_c00058{left:692.133333pt;}
.x9c_c00058{left:693.733333pt;}
.x2_c00058{left:694.666667pt;}
.x125_c00058{left:696.666667pt;}
.xba_c00058{left:697.600000pt;}
.x10_c00058{left:699.333333pt;}
.x7f_c00058{left:700.400000pt;}
.xea_c00058{left:702.400000pt;}
.xac_c00058{left:704.933333pt;}
.x7a_c00058{left:706.533333pt;}
.x20_c00058{left:708.800000pt;}
}





/* 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_c00059 {
    display:none;
  }
  .loading-indicator_c00059.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00059 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_c00059 { 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_c00059" -> "#page-container .classname_c00059")
 */
.pf_c00059 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00059 { /* 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_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00059 { /* 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_c00059 { /* 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_c00059 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00059 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00059 {overflow:visible;}
  }
}
.c_c00059 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00059 { /* 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_c00059:after { /* webkit #35443 */
  content: '';
}
.t_c00059:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00059 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 */
}
.__c00059 { /* 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_c00059 { /* info for Javascript */
  display:none;
}
.l_c00059 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00059 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00059 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00059: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_c00059 {
    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_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00059.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_c00059 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00059;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.000000;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;}
.m81_c00059{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00059{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00059{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m92_c00059{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00059{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00059{transform:matrix(0.103500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00059{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m32_c00059{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00059{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00059{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00059{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m72_c00059{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md8_c00059{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m51_c00059{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00059{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00059{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00059{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00059{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m53_c00059{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00059{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00059{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00059{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m28_c00059{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.md0_c00059{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00059{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00059{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma_c00059{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m52_c00059{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m54_c00059{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md7_c00059{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00059{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00059{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2_c00059{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m71_c00059{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00059{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m7_c00059{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m74_c00059{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00059{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m22_c00059{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m75_c00059{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m62_c00059{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mad_c00059{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m57_c00059{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00059{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m69_c00059{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.me_c00059{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m55_c00059{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc_c00059{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m61_c00059{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m17_c00059{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m99_c00059{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m12_c00059{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00059{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m63_c00059{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m25_c00059{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.md1_c00059{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m56_c00059{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00059{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m77_c00059{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00059{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m76_c00059{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m58_c00059{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m85_c00059{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00059{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00059{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00059{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00059{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m8_c00059{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00059{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m88_c00059{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00059{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m29_c00059{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00059{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00059{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mae_c00059{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00059{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m10_c00059{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m59_c00059{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00059{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m39_c00059{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00059{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m87_c00059{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00059{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m68_c00059{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00059{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m41_c00059{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m13_c00059{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m84_c00059{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00059{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m82_c00059{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00059{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m46_c00059{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00059{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9_c00059{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00059{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m33_c00059{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00059{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m91_c00059{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mab_c00059{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m21_c00059{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m35_c00059{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00059{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mca_c00059{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00059{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00059{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m34_c00059{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.md4_c00059{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00059{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00059{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00059{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m64_c00059{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md6_c00059{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m20_c00059{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m18_c00059{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m49_c00059{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00059{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00059{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00059{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00059{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m23_c00059{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00059{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m65_c00059{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m24_c00059{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m30_c00059{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m11_c00059{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00059{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md_c00059{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00059{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m86_c00059{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m38_c00059{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m60_c00059{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00059{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.maf_c00059{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00059{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00059{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mac_c00059{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00059{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m89_c00059{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m79_c00059{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00059{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m4_c00059{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m70_c00059{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m19_c00059{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.maa_c00059{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb_c00059{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m94_c00059{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00059{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m44_c00059{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00059{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m95_c00059{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00059{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m66_c00059{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00059{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m96_c00059{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m36_c00059{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00059{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m50_c00059{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00059{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m26_c00059{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m16_c00059{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m42_c00059{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m31_c00059{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00059{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00059{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m27_c00059{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m14_c00059{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00059{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m15_c00059{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m37_c00059{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m93_c00059{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00059{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m97_c00059{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md2_c00059{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mba_c00059{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00059{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00059{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00059{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00059{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m47_c00059{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m78_c00059{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m48_c00059{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00059{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m43_c00059{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m45_c00059{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00059{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m98_c00059{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00059{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m40_c00059{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m83_c00059{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00059{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00059{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m67_c00059{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mce_c00059{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00059{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.md3_c00059{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00059{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00059{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m80_c00059{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00059{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md5_c00059{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00059{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m5_c00059{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00059{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00059{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00059{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m90_c00059{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00059{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m6_c00059{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00059{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mf_c00059{transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00059{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00059{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m73_c00059{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00059{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls0_c00059{letter-spacing:0.000000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{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__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00059{word-spacing:-10.407720px;}
.ws1_c00059{word-spacing:-7.625337px;}
.ws2_c00059{word-spacing:0.000000px;}
.fc0_c00059{color:transparent;}
.fs6_c00059{font-size:24.000000px;}
.fs4_c00059{font-size:60.000000px;}
.fs2_c00059{font-size:66.000000px;}
.fs1_c00059{font-size:72.000000px;}
.fs5_c00059{font-size:78.000000px;}
.fs3_c00059{font-size:102.000000px;}
.fs0_c00059{font-size:126.000000px;}
.y0_c00059{bottom:0.000000px;}
.y32_c00059{bottom:168.150000px;}
.y31_c00059{bottom:183.600000px;}
.y2f_c00059{bottom:239.250000px;}
.y2e_c00059{bottom:258.000000px;}
.y30_c00059{bottom:273.600000px;}
.y2d_c00059{bottom:276.000000px;}
.y2c_c00059{bottom:294.000000px;}
.y2b_c00059{bottom:311.700000px;}
.y28_c00059{bottom:347.100000px;}
.y27_c00059{bottom:365.100000px;}
.y2a_c00059{bottom:384.450000px;}
.y26_c00059{bottom:394.950000px;}
.y25_c00059{bottom:414.000000px;}
.y29_c00059{bottom:419.700000px;}
.y24_c00059{bottom:432.300000px;}
.y23_c00059{bottom:450.300000px;}
.y22_c00059{bottom:488.250000px;}
.y21_c00059{bottom:507.300000px;}
.y20_c00059{bottom:525.300000px;}
.y1f_c00059{bottom:564.900000px;}
.y1c_c00059{bottom:604.350000px;}
.y1b_c00059{bottom:622.350000px;}
.y1e_c00059{bottom:637.500000px;}
.y1a_c00059{bottom:640.050000px;}
.y19_c00059{bottom:658.050000px;}
.y18_c00059{bottom:676.050000px;}
.y16_c00059{bottom:706.350000px;}
.y15_c00059{bottom:725.100000px;}
.y17_c00059{bottom:731.550000px;}
.y14_c00059{bottom:743.100000px;}
.y1d_c00059{bottom:760.650000px;}
.y12_c00059{bottom:791.550000px;}
.y11_c00059{bottom:809.550000px;}
.y10_c00059{bottom:827.550000px;}
.y13_c00059{bottom:834.150000px;}
.yf_c00059{bottom:845.550000px;}
.ye_c00059{bottom:863.550000px;}
.yd_c00059{bottom:881.250000px;}
.yb_c00059{bottom:912.300000px;}
.ya_c00059{bottom:948.300000px;}
.y9_c00059{bottom:974.100000px;}
.y8_c00059{bottom:991.350000px;}
.y7_c00059{bottom:1009.350000px;}
.yc_c00059{bottom:1016.250000px;}
.y6_c00059{bottom:1027.350000px;}
.y5_c00059{bottom:1045.050000px;}
.y4_c00059{bottom:1062.750000px;}
.y3_c00059{bottom:1092.600000px;}
.y2_c00059{bottom:1112.100000px;}
.y1_c00059{bottom:1139.100000px;}
.h8_c00059{height:24.000000px;}
.h6_c00059{height:60.000000px;}
.h4_c00059{height:66.000000px;}
.h3_c00059{height:72.000000px;}
.h7_c00059{height:78.000000px;}
.h5_c00059{height:102.000000px;}
.h2_c00059{height:126.000000px;}
.h0_c00059{height:1271.879975px;}
.h1_c00059{height:1272.000000px;}
.w0_c00059{width:948.600036px;}
.w1_c00059{width:948.750000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:167.700000px;}
.x54_c00059{left:175.350000px;}
.x85_c00059{left:177.450000px;}
.xb9_c00059{left:179.250000px;}
.xf4_c00059{left:181.050000px;}
.x55_c00059{left:184.050000px;}
.x86_c00059{left:186.150000px;}
.xba_c00059{left:187.950000px;}
.xf6_c00059{left:193.650000px;}
.xff_c00059{left:207.900000px;}
.x56_c00059{left:216.450000px;}
.x87_c00059{left:218.550000px;}
.xbb_c00059{left:220.350000px;}
.xf5_c00059{left:222.450000px;}
.x100_c00059{left:239.550000px;}
.xf7_c00059{left:256.050000px;}
.x101_c00059{left:268.650000px;}
.x10_c00059{left:280.050000px;}
.xe6_c00059{left:282.600000px;}
.xb4_c00059{left:284.100000px;}
.xbc_c00059{left:285.150000px;}
.xc2_c00059{left:293.400000px;}
.xdb_c00059{left:294.900000px;}
.x3_c00059{left:299.550000px;}
.x57_c00059{left:302.100000px;}
.x93_c00059{left:303.900000px;}
.xcd_c00059{left:305.700000px;}
.xc3_c00059{left:309.600000px;}
.xc7_c00059{left:313.350000px;}
.x1e_c00059{left:318.300000px;}
.x3b_c00059{left:319.650000px;}
.x4_c00059{left:321.150000px;}
.xb1_c00059{left:322.350000px;}
.xf2_c00059{left:323.550000px;}
.x11_c00059{left:330.750000px;}
.x27_c00059{left:331.950000px;}
.x47_c00059{left:340.950000px;}
.x68_c00059{left:343.200000px;}
.x7b_c00059{left:345.000000px;}
.xcc_c00059{left:347.250000px;}
.x4e_c00059{left:349.500000px;}
.xce_c00059{left:351.000000px;}
.x60_c00059{left:353.550000px;}
.x3c_c00059{left:355.650000px;}
.xd1_c00059{left:356.700000px;}
.xda_c00059{left:358.200000px;}
.x69_c00059{left:361.200000px;}
.x71_c00059{left:362.250000px;}
.x98_c00059{left:365.100000px;}
.xc8_c00059{left:368.850000px;}
.x88_c00059{left:370.050000px;}
.xf3_c00059{left:371.850000px;}
.x4b_c00059{left:373.350000px;}
.x99_c00059{left:374.850000px;}
.xf1_c00059{left:376.050000px;}
.x12_c00059{left:377.250000px;}
.xe7_c00059{left:378.750000px;}
.x48_c00059{left:383.100000px;}
.x61_c00059{left:388.050000px;}
.x32_c00059{left:390.000000px;}
.xd4_c00059{left:391.950000px;}
.x58_c00059{left:393.150000px;}
.xeb_c00059{left:394.950000px;}
.x28_c00059{left:397.500000px;}
.x4c_c00059{left:400.350000px;}
.x5_c00059{left:403.200000px;}
.x7c_c00059{left:405.450000px;}
.xb2_c00059{left:408.750000px;}
.x6a_c00059{left:410.100000px;}
.xbd_c00059{left:411.300000px;}
.x2_c00059{left:414.000000px;}
.xa9_c00059{left:415.350000px;}
.x3d_c00059{left:418.950000px;}
.x4f_c00059{left:421.800000px;}
.x13_c00059{left:423.300000px;}
.x9a_c00059{left:425.550000px;}
.xf8_c00059{left:428.550000px;}
.x49_c00059{left:430.200000px;}
.x7d_c00059{left:432.750000px;}
.x8e_c00059{left:434.100000px;}
.x6_c00059{left:435.900000px;}
.x6b_c00059{left:437.100000px;}
.x72_c00059{left:439.950000px;}
.x3e_c00059{left:441.300000px;}
.xf9_c00059{left:444.000000px;}
.x9b_c00059{left:445.650000px;}
.xd2_c00059{left:447.900000px;}
.x14_c00059{left:450.300000px;}
.xc9_c00059{left:451.950000px;}
.x59_c00059{left:455.400000px;}
.x4d_c00059{left:457.950000px;}
.x4a_c00059{left:460.800000px;}
.x9c_c00059{left:461.850000px;}
.x1f_c00059{left:464.700000px;}
.x6c_c00059{left:467.400000px;}
.x33_c00059{left:469.200000px;}
.x73_c00059{left:470.550000px;}
.xe1_c00059{left:473.100000px;}
.xd5_c00059{left:474.750000px;}
.xa4_c00059{left:478.950000px;}
.xfa_c00059{left:481.800000px;}
.xb5_c00059{left:483.900000px;}
.x7e_c00059{left:486.000000px;}
.x5a_c00059{left:488.550000px;}
.x20_c00059{left:489.600000px;}
.x89_c00059{left:490.950000px;}
.x50_c00059{left:492.300000px;}
.x102_c00059{left:499.200000px;}
.xaa_c00059{left:502.050000px;}
.xfb_c00059{left:504.450000px;}
.x7f_c00059{left:506.100000px;}
.x34_c00059{left:508.050000px;}
.x15_c00059{left:511.200000px;}
.x3f_c00059{left:513.600000px;}
.x29_c00059{left:515.250000px;}
.x103_c00059{left:517.200000px;}
.x74_c00059{left:519.150000px;}
.x21_c00059{left:520.500000px;}
.x16_c00059{left:523.050000px;}
.xe8_c00059{left:524.100000px;}
.xfc_c00059{left:525.750000px;}
.xa5_c00059{left:526.800000px;}
.xb3_c00059{left:530.400000px;}
.x8f_c00059{left:532.500000px;}
.x40_c00059{left:534.450000px;}
.xab_c00059{left:536.550000px;}
.x2a_c00059{left:538.350000px;}
.x75_c00059{left:540.000000px;}
.x5b_c00059{left:541.050000px;}
.xb6_c00059{left:543.600000px;}
.x9d_c00059{left:547.500000px;}
.x7_c00059{left:549.300000px;}
.xec_c00059{left:550.950000px;}
.x62_c00059{left:552.600000px;}
.xb7_c00059{left:555.150000px;}
.x35_c00059{left:557.700000px;}
.x22_c00059{left:560.850000px;}
.xac_c00059{left:565.050000px;}
.xcf_c00059{left:566.550000px;}
.x5c_c00059{left:568.800000px;}
.xd6_c00059{left:570.450000px;}
.xa6_c00059{left:573.900000px;}
.x17_c00059{left:574.950000px;}
.x80_c00059{left:579.150000px;}
.x8_c00059{left:583.200000px;}
.x90_c00059{left:585.150000px;}
.x76_c00059{left:586.500000px;}
.xca_c00059{left:588.750000px;}
.x8a_c00059{left:595.050000px;}
.xe2_c00059{left:597.900000px;}
.xbe_c00059{left:599.550000px;}
.x81_c00059{left:603.600000px;}
.x5d_c00059{left:605.550000px;}
.xad_c00059{left:609.300000px;}
.x9e_c00059{left:610.800000px;}
.x2b_c00059{left:614.250000px;}
.x94_c00059{left:617.100000px;}
.x9_c00059{left:618.450000px;}
.x9f_c00059{left:619.800000px;}
.xdc_c00059{left:624.600000px;}
.xd0_c00059{left:628.800000px;}
.x23_c00059{left:631.500000px;}
.xee_c00059{left:634.050000px;}
.x41_c00059{left:635.700000px;}
.x95_c00059{left:639.450000px;}
.xbf_c00059{left:641.250000px;}
.xfd_c00059{left:645.300000px;}
.xed_c00059{left:646.650000px;}
.xae_c00059{left:647.700000px;}
.xe3_c00059{left:648.750000px;}
.x18_c00059{left:650.550000px;}
.x51_c00059{left:653.400000px;}
.x2c_c00059{left:656.400000px;}
.x36_c00059{left:658.200000px;}
.xa_c00059{left:660.900000px;}
.xe4_c00059{left:668.250000px;}
.xef_c00059{left:670.050000px;}
.x19_c00059{left:671.400000px;}
.x77_c00059{left:672.900000px;}
.xc0_c00059{left:674.400000px;}
.x52_c00059{left:676.050000px;}
.x63_c00059{left:682.200000px;}
.x82_c00059{left:683.550000px;}
.xe5_c00059{left:685.950000px;}
.x5e_c00059{left:688.650000px;}
.x96_c00059{left:690.900000px;}
.x42_c00059{left:694.050000px;}
.xd7_c00059{left:696.750000px;}
.x91_c00059{left:698.550000px;}
.x78_c00059{left:701.400000px;}
.xa0_c00059{left:702.600000px;}
.x8b_c00059{left:704.400000px;}
.x6d_c00059{left:707.100000px;}
.x2d_c00059{left:710.400000px;}
.x53_c00059{left:712.050000px;}
.x5f_c00059{left:715.350000px;}
.xa1_c00059{left:717.750000px;}
.x1a_c00059{left:718.950000px;}
.xc1_c00059{left:720.450000px;}
.x2e_c00059{left:721.950000px;}
.x37_c00059{left:724.050000px;}
.x64_c00059{left:725.400000px;}
.xb_c00059{left:729.300000px;}
.x24_c00059{left:730.800000px;}
.xfe_c00059{left:733.500000px;}
.x43_c00059{left:736.500000px;}
.xaf_c00059{left:737.700000px;}
.x83_c00059{left:739.650000px;}
.xdd_c00059{left:743.850000px;}
.x6e_c00059{left:744.900000px;}
.x65_c00059{left:745.950000px;}
.x44_c00059{left:748.350000px;}
.xc_c00059{left:752.700000px;}
.x25_c00059{left:754.200000px;}
.xb8_c00059{left:755.250000px;}
.x38_c00059{left:756.750000px;}
.xc4_c00059{left:761.100000px;}
.x84_c00059{left:762.300000px;}
.x8c_c00059{left:763.500000px;}
.x2f_c00059{left:764.850000px;}
.x79_c00059{left:767.250000px;}
.xa7_c00059{left:769.050000px;}
.x39_c00059{left:770.400000px;}
.x1b_c00059{left:771.450000px;}
.xd_c00059{left:780.000000px;}
.xde_c00059{left:782.700000px;}
.xd8_c00059{left:785.250000px;}
.x30_c00059{left:787.200000px;}
.xf0_c00059{left:792.600000px;}
.x45_c00059{left:794.850000px;}
.xa2_c00059{left:796.500000px;}
.x66_c00059{left:798.900000px;}
.xc5_c00059{left:800.400000px;}
.x8d_c00059{left:803.100000px;}
.xe9_c00059{left:804.600000px;}
.x1c_c00059{left:805.650000px;}
.x92_c00059{left:809.850000px;}
.x7a_c00059{left:812.550000px;}
.xd9_c00059{left:814.050000px;}
.x26_c00059{left:816.150000px;}
.x6f_c00059{left:817.200000px;}
.xe_c00059{left:818.550000px;}
.xb0_c00059{left:820.200000px;}
.x46_c00059{left:825.150000px;}
.xea_c00059{left:826.950000px;}
.x1d_c00059{left:828.000000px;}
.xd3_c00059{left:830.400000px;}
.xdf_c00059{left:833.400000px;}
.x97_c00059{left:835.650000px;}
.xa8_c00059{left:837.150000px;}
.x31_c00059{left:838.650000px;}
.xa3_c00059{left:841.200000px;}
.x67_c00059{left:845.400000px;}
.x3a_c00059{left:849.900000px;}
.xc6_c00059{left:852.300000px;}
.xcb_c00059{left:854.100000px;}
.xe0_c00059{left:860.400000px;}
.xf_c00059{left:862.500000px;}
.x70_c00059{left:866.850000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:-9.251307pt;}
.ws1_c00059{word-spacing:-6.778077pt;}
.ws2_c00059{word-spacing:0.000000pt;}
.fs6_c00059{font-size:21.333333pt;}
.fs4_c00059{font-size:53.333333pt;}
.fs2_c00059{font-size:58.666667pt;}
.fs1_c00059{font-size:64.000000pt;}
.fs5_c00059{font-size:69.333333pt;}
.fs3_c00059{font-size:90.666667pt;}
.fs0_c00059{font-size:112.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y32_c00059{bottom:149.466667pt;}
.y31_c00059{bottom:163.200000pt;}
.y2f_c00059{bottom:212.666667pt;}
.y2e_c00059{bottom:229.333333pt;}
.y30_c00059{bottom:243.200000pt;}
.y2d_c00059{bottom:245.333333pt;}
.y2c_c00059{bottom:261.333333pt;}
.y2b_c00059{bottom:277.066667pt;}
.y28_c00059{bottom:308.533333pt;}
.y27_c00059{bottom:324.533333pt;}
.y2a_c00059{bottom:341.733333pt;}
.y26_c00059{bottom:351.066667pt;}
.y25_c00059{bottom:368.000000pt;}
.y29_c00059{bottom:373.066667pt;}
.y24_c00059{bottom:384.266667pt;}
.y23_c00059{bottom:400.266667pt;}
.y22_c00059{bottom:434.000000pt;}
.y21_c00059{bottom:450.933333pt;}
.y20_c00059{bottom:466.933333pt;}
.y1f_c00059{bottom:502.133333pt;}
.y1c_c00059{bottom:537.200000pt;}
.y1b_c00059{bottom:553.200000pt;}
.y1e_c00059{bottom:566.666667pt;}
.y1a_c00059{bottom:568.933333pt;}
.y19_c00059{bottom:584.933333pt;}
.y18_c00059{bottom:600.933333pt;}
.y16_c00059{bottom:627.866667pt;}
.y15_c00059{bottom:644.533333pt;}
.y17_c00059{bottom:650.266667pt;}
.y14_c00059{bottom:660.533333pt;}
.y1d_c00059{bottom:676.133333pt;}
.y12_c00059{bottom:703.600000pt;}
.y11_c00059{bottom:719.600000pt;}
.y10_c00059{bottom:735.600000pt;}
.y13_c00059{bottom:741.466667pt;}
.yf_c00059{bottom:751.600000pt;}
.ye_c00059{bottom:767.600000pt;}
.yd_c00059{bottom:783.333333pt;}
.yb_c00059{bottom:810.933333pt;}
.ya_c00059{bottom:842.933333pt;}
.y9_c00059{bottom:865.866667pt;}
.y8_c00059{bottom:881.200000pt;}
.y7_c00059{bottom:897.200000pt;}
.yc_c00059{bottom:903.333333pt;}
.y6_c00059{bottom:913.200000pt;}
.y5_c00059{bottom:928.933333pt;}
.y4_c00059{bottom:944.666667pt;}
.y3_c00059{bottom:971.200000pt;}
.y2_c00059{bottom:988.533333pt;}
.y1_c00059{bottom:1012.533333pt;}
.h8_c00059{height:21.333333pt;}
.h6_c00059{height:53.333333pt;}
.h4_c00059{height:58.666667pt;}
.h3_c00059{height:64.000000pt;}
.h7_c00059{height:69.333333pt;}
.h5_c00059{height:90.666667pt;}
.h2_c00059{height:112.000000pt;}
.h0_c00059{height:1130.559977pt;}
.h1_c00059{height:1130.666667pt;}
.w0_c00059{width:843.200032pt;}
.w1_c00059{width:843.333333pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:149.066667pt;}
.x54_c00059{left:155.866667pt;}
.x85_c00059{left:157.733333pt;}
.xb9_c00059{left:159.333333pt;}
.xf4_c00059{left:160.933333pt;}
.x55_c00059{left:163.600000pt;}
.x86_c00059{left:165.466667pt;}
.xba_c00059{left:167.066667pt;}
.xf6_c00059{left:172.133333pt;}
.xff_c00059{left:184.800000pt;}
.x56_c00059{left:192.400000pt;}
.x87_c00059{left:194.266667pt;}
.xbb_c00059{left:195.866667pt;}
.xf5_c00059{left:197.733333pt;}
.x100_c00059{left:212.933333pt;}
.xf7_c00059{left:227.600000pt;}
.x101_c00059{left:238.800000pt;}
.x10_c00059{left:248.933333pt;}
.xe6_c00059{left:251.200000pt;}
.xb4_c00059{left:252.533333pt;}
.xbc_c00059{left:253.466667pt;}
.xc2_c00059{left:260.800000pt;}
.xdb_c00059{left:262.133333pt;}
.x3_c00059{left:266.266667pt;}
.x57_c00059{left:268.533333pt;}
.x93_c00059{left:270.133333pt;}
.xcd_c00059{left:271.733333pt;}
.xc3_c00059{left:275.200000pt;}
.xc7_c00059{left:278.533333pt;}
.x1e_c00059{left:282.933333pt;}
.x3b_c00059{left:284.133333pt;}
.x4_c00059{left:285.466667pt;}
.xb1_c00059{left:286.533333pt;}
.xf2_c00059{left:287.600000pt;}
.x11_c00059{left:294.000000pt;}
.x27_c00059{left:295.066667pt;}
.x47_c00059{left:303.066667pt;}
.x68_c00059{left:305.066667pt;}
.x7b_c00059{left:306.666667pt;}
.xcc_c00059{left:308.666667pt;}
.x4e_c00059{left:310.666667pt;}
.xce_c00059{left:312.000000pt;}
.x60_c00059{left:314.266667pt;}
.x3c_c00059{left:316.133333pt;}
.xd1_c00059{left:317.066667pt;}
.xda_c00059{left:318.400000pt;}
.x69_c00059{left:321.066667pt;}
.x71_c00059{left:322.000000pt;}
.x98_c00059{left:324.533333pt;}
.xc8_c00059{left:327.866667pt;}
.x88_c00059{left:328.933333pt;}
.xf3_c00059{left:330.533333pt;}
.x4b_c00059{left:331.866667pt;}
.x99_c00059{left:333.200000pt;}
.xf1_c00059{left:334.266667pt;}
.x12_c00059{left:335.333333pt;}
.xe7_c00059{left:336.666667pt;}
.x48_c00059{left:340.533333pt;}
.x61_c00059{left:344.933333pt;}
.x32_c00059{left:346.666667pt;}
.xd4_c00059{left:348.400000pt;}
.x58_c00059{left:349.466667pt;}
.xeb_c00059{left:351.066667pt;}
.x28_c00059{left:353.333333pt;}
.x4c_c00059{left:355.866667pt;}
.x5_c00059{left:358.400000pt;}
.x7c_c00059{left:360.400000pt;}
.xb2_c00059{left:363.333333pt;}
.x6a_c00059{left:364.533333pt;}
.xbd_c00059{left:365.600000pt;}
.x2_c00059{left:368.000000pt;}
.xa9_c00059{left:369.200000pt;}
.x3d_c00059{left:372.400000pt;}
.x4f_c00059{left:374.933333pt;}
.x13_c00059{left:376.266667pt;}
.x9a_c00059{left:378.266667pt;}
.xf8_c00059{left:380.933333pt;}
.x49_c00059{left:382.400000pt;}
.x7d_c00059{left:384.666667pt;}
.x8e_c00059{left:385.866667pt;}
.x6_c00059{left:387.466667pt;}
.x6b_c00059{left:388.533333pt;}
.x72_c00059{left:391.066667pt;}
.x3e_c00059{left:392.266667pt;}
.xf9_c00059{left:394.666667pt;}
.x9b_c00059{left:396.133333pt;}
.xd2_c00059{left:398.133333pt;}
.x14_c00059{left:400.266667pt;}
.xc9_c00059{left:401.733333pt;}
.x59_c00059{left:404.800000pt;}
.x4d_c00059{left:407.066667pt;}
.x4a_c00059{left:409.600000pt;}
.x9c_c00059{left:410.533333pt;}
.x1f_c00059{left:413.066667pt;}
.x6c_c00059{left:415.466667pt;}
.x33_c00059{left:417.066667pt;}
.x73_c00059{left:418.266667pt;}
.xe1_c00059{left:420.533333pt;}
.xd5_c00059{left:422.000000pt;}
.xa4_c00059{left:425.733333pt;}
.xfa_c00059{left:428.266667pt;}
.xb5_c00059{left:430.133333pt;}
.x7e_c00059{left:432.000000pt;}
.x5a_c00059{left:434.266667pt;}
.x20_c00059{left:435.200000pt;}
.x89_c00059{left:436.400000pt;}
.x50_c00059{left:437.600000pt;}
.x102_c00059{left:443.733333pt;}
.xaa_c00059{left:446.266667pt;}
.xfb_c00059{left:448.400000pt;}
.x7f_c00059{left:449.866667pt;}
.x34_c00059{left:451.600000pt;}
.x15_c00059{left:454.400000pt;}
.x3f_c00059{left:456.533333pt;}
.x29_c00059{left:458.000000pt;}
.x103_c00059{left:459.733333pt;}
.x74_c00059{left:461.466667pt;}
.x21_c00059{left:462.666667pt;}
.x16_c00059{left:464.933333pt;}
.xe8_c00059{left:465.866667pt;}
.xfc_c00059{left:467.333333pt;}
.xa5_c00059{left:468.266667pt;}
.xb3_c00059{left:471.466667pt;}
.x8f_c00059{left:473.333333pt;}
.x40_c00059{left:475.066667pt;}
.xab_c00059{left:476.933333pt;}
.x2a_c00059{left:478.533333pt;}
.x75_c00059{left:480.000000pt;}
.x5b_c00059{left:480.933333pt;}
.xb6_c00059{left:483.200000pt;}
.x9d_c00059{left:486.666667pt;}
.x7_c00059{left:488.266667pt;}
.xec_c00059{left:489.733333pt;}
.x62_c00059{left:491.200000pt;}
.xb7_c00059{left:493.466667pt;}
.x35_c00059{left:495.733333pt;}
.x22_c00059{left:498.533333pt;}
.xac_c00059{left:502.266667pt;}
.xcf_c00059{left:503.600000pt;}
.x5c_c00059{left:505.600000pt;}
.xd6_c00059{left:507.066667pt;}
.xa6_c00059{left:510.133333pt;}
.x17_c00059{left:511.066667pt;}
.x80_c00059{left:514.800000pt;}
.x8_c00059{left:518.400000pt;}
.x90_c00059{left:520.133333pt;}
.x76_c00059{left:521.333333pt;}
.xca_c00059{left:523.333333pt;}
.x8a_c00059{left:528.933333pt;}
.xe2_c00059{left:531.466667pt;}
.xbe_c00059{left:532.933333pt;}
.x81_c00059{left:536.533333pt;}
.x5d_c00059{left:538.266667pt;}
.xad_c00059{left:541.600000pt;}
.x9e_c00059{left:542.933333pt;}
.x2b_c00059{left:546.000000pt;}
.x94_c00059{left:548.533333pt;}
.x9_c00059{left:549.733333pt;}
.x9f_c00059{left:550.933333pt;}
.xdc_c00059{left:555.200000pt;}
.xd0_c00059{left:558.933333pt;}
.x23_c00059{left:561.333333pt;}
.xee_c00059{left:563.600000pt;}
.x41_c00059{left:565.066667pt;}
.x95_c00059{left:568.400000pt;}
.xbf_c00059{left:570.000000pt;}
.xfd_c00059{left:573.600000pt;}
.xed_c00059{left:574.800000pt;}
.xae_c00059{left:575.733333pt;}
.xe3_c00059{left:576.666667pt;}
.x18_c00059{left:578.266667pt;}
.x51_c00059{left:580.800000pt;}
.x2c_c00059{left:583.466667pt;}
.x36_c00059{left:585.066667pt;}
.xa_c00059{left:587.466667pt;}
.xe4_c00059{left:594.000000pt;}
.xef_c00059{left:595.600000pt;}
.x19_c00059{left:596.800000pt;}
.x77_c00059{left:598.133333pt;}
.xc0_c00059{left:599.466667pt;}
.x52_c00059{left:600.933333pt;}
.x63_c00059{left:606.400000pt;}
.x82_c00059{left:607.600000pt;}
.xe5_c00059{left:609.733333pt;}
.x5e_c00059{left:612.133333pt;}
.x96_c00059{left:614.133333pt;}
.x42_c00059{left:616.933333pt;}
.xd7_c00059{left:619.333333pt;}
.x91_c00059{left:620.933333pt;}
.x78_c00059{left:623.466667pt;}
.xa0_c00059{left:624.533333pt;}
.x8b_c00059{left:626.133333pt;}
.x6d_c00059{left:628.533333pt;}
.x2d_c00059{left:631.466667pt;}
.x53_c00059{left:632.933333pt;}
.x5f_c00059{left:635.866667pt;}
.xa1_c00059{left:638.000000pt;}
.x1a_c00059{left:639.066667pt;}
.xc1_c00059{left:640.400000pt;}
.x2e_c00059{left:641.733333pt;}
.x37_c00059{left:643.600000pt;}
.x64_c00059{left:644.800000pt;}
.xb_c00059{left:648.266667pt;}
.x24_c00059{left:649.600000pt;}
.xfe_c00059{left:652.000000pt;}
.x43_c00059{left:654.666667pt;}
.xaf_c00059{left:655.733333pt;}
.x83_c00059{left:657.466667pt;}
.xdd_c00059{left:661.200000pt;}
.x6e_c00059{left:662.133333pt;}
.x65_c00059{left:663.066667pt;}
.x44_c00059{left:665.200000pt;}
.xc_c00059{left:669.066667pt;}
.x25_c00059{left:670.400000pt;}
.xb8_c00059{left:671.333333pt;}
.x38_c00059{left:672.666667pt;}
.xc4_c00059{left:676.533333pt;}
.x84_c00059{left:677.600000pt;}
.x8c_c00059{left:678.666667pt;}
.x2f_c00059{left:679.866667pt;}
.x79_c00059{left:682.000000pt;}
.xa7_c00059{left:683.600000pt;}
.x39_c00059{left:684.800000pt;}
.x1b_c00059{left:685.733333pt;}
.xd_c00059{left:693.333333pt;}
.xde_c00059{left:695.733333pt;}
.xd8_c00059{left:698.000000pt;}
.x30_c00059{left:699.733333pt;}
.xf0_c00059{left:704.533333pt;}
.x45_c00059{left:706.533333pt;}
.xa2_c00059{left:708.000000pt;}
.x66_c00059{left:710.133333pt;}
.xc5_c00059{left:711.466667pt;}
.x8d_c00059{left:713.866667pt;}
.xe9_c00059{left:715.200000pt;}
.x1c_c00059{left:716.133333pt;}
.x92_c00059{left:719.866667pt;}
.x7a_c00059{left:722.266667pt;}
.xd9_c00059{left:723.600000pt;}
.x26_c00059{left:725.466667pt;}
.x6f_c00059{left:726.400000pt;}
.xe_c00059{left:727.600000pt;}
.xb0_c00059{left:729.066667pt;}
.x46_c00059{left:733.466667pt;}
.xea_c00059{left:735.066667pt;}
.x1d_c00059{left:736.000000pt;}
.xd3_c00059{left:738.133333pt;}
.xdf_c00059{left:740.800000pt;}
.x97_c00059{left:742.800000pt;}
.xa8_c00059{left:744.133333pt;}
.x31_c00059{left:745.466667pt;}
.xa3_c00059{left:747.733333pt;}
.x67_c00059{left:751.466667pt;}
.x3a_c00059{left:755.466667pt;}
.xc6_c00059{left:757.600000pt;}
.xcb_c00059{left:759.200000pt;}
.xe0_c00059{left:764.800000pt;}
.xf_c00059{left:766.666667pt;}
.x70_c00059{left:770.533333pt;}
}





/* 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_c00060 {
    display:none;
  }
  .loading-indicator_c00060.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00060 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_c00060 { 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_c00060" -> "#page-container .classname_c00060")
 */
.pf_c00060 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00060 { /* 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_c00060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00060 { /* 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_c00060 { /* 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_c00060 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00060 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00060 {overflow:visible;}
  }
}
.c_c00060 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00060 { /* 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_c00060:after { /* webkit #35443 */
  content: '';
}
.t_c00060:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00060 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 */
}
.__c00060 { /* 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_c00060 { /* info for Javascript */
  display:none;
}
.l_c00060 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00060 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00060 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00060: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_c00060 {
    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_c00060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00060.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_c00060 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00060;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.000000;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;}
.m6f_c00060{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00060{transform:matrix(0.028000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00060{transform:matrix(0.029250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00060{transform:matrix(0.030750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030750,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m19_c00060{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m64_c00060{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m87_c00060{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m12_c00060{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m18_c00060{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m46_c00060{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m68_c00060{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00060{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m26_c00060{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00060{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m84_c00060{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m37_c00060{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00060{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00060{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.me9_c00060{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00060{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c00060{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.maa_c00060{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m95_c00060{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me2_c00060{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mde_c00060{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00060{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00060{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00060{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00060{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00060{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00060{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m27_c00060{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00060{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00060{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.me1_c00060{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m52_c00060{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m8_c00060{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m21_c00060{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00060{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.meb_c00060{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00060{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m96_c00060{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md0_c00060{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mca_c00060{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m17_c00060{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m24_c00060{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00060{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00060{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00060{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mec_c00060{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m69_c00060{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m14_c00060{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m89_c00060{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00060{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00060{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m85_c00060{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00060{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m7_c00060{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m45_c00060{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m29_c00060{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m60_c00060{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m62_c00060{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m94_c00060{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00060{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m23_c00060{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00060{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00060{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me3_c00060{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00060{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00060{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00060{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00060{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00060{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m73_c00060{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m49_c00060{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc_c00060{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m74_c00060{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00060{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00060{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m38_c00060{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m51_c00060{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00060{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00060{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00060{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00060{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mae_c00060{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00060{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m33_c00060{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m40_c00060{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m75_c00060{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m36_c00060{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00060{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m61_c00060{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00060{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00060{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00060{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00060{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00060{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m92_c00060{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m20_c00060{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00060{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m28_c00060{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me_c00060{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m35_c00060{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m48_c00060{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m47_c00060{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9_c00060{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m59_c00060{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00060{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00060{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m58_c00060{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m57_c00060{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m53_c00060{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md5_c00060{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00060{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00060{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me0_c00060{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00060{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m44_c00060{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m86_c00060{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m90_c00060{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00060{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m63_c00060{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m88_c00060{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m70_c00060{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00060{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.me7_c00060{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m80_c00060{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00060{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m93_c00060{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md_c00060{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m30_c00060{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00060{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m72_c00060{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md8_c00060{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mb_c00060{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00060{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00060{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m31_c00060{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.me8_c00060{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00060{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m11_c00060{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m50_c00060{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00060{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mac_c00060{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m39_c00060{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m22_c00060{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00060{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m34_c00060{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m15_c00060{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00060{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m99_c00060{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m32_c00060{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00060{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m41_c00060{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m55_c00060{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf_c00060{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma_c00060{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m77_c00060{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00060{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00060{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m79_c00060{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m65_c00060{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00060{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00060{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m81_c00060{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00060{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00060{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00060{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m42_c00060{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mea_c00060{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md6_c00060{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m82_c00060{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mda_c00060{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m16_c00060{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.maf_c00060{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mad_c00060{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mce_c00060{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.md7_c00060{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m78_c00060{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00060{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00060{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);}
.mcd_c00060{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00060{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00060{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m71_c00060{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00060{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m76_c00060{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00060{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00060{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m54_c00060{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00060{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m25_c00060{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00060{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m43_c00060{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00060{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m13_c00060{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m91_c00060{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00060{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00060{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m98_c00060{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mab_c00060{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00060{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00060{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00060{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00060{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m67_c00060{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m56_c00060{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me4_c00060{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.md9_c00060{transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00060{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md1_c00060{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00060{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.me6_c00060{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.me5_c00060{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.md2_c00060{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.md4_c00060{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m97_c00060{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00060{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00060{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00060{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00060{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.md3_c00060{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.m66_c00060{transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);}
.m83_c00060{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00060{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00060{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00060{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.mba_c00060{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00060{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m6_c00060{transform:matrix(0.746500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.746500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.746500,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{transform:matrix(1.731500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.731500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.731500,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{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__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00060{word-spacing:-13.260870px;}
.ws0_c00060{word-spacing:-12.537118px;}
.ws1_c00060{word-spacing:-8.168443px;}
.ws3_c00060{word-spacing:-4.833333px;}
.ws4_c00060{word-spacing:-3.690832px;}
.ws8_c00060{word-spacing:0.000000px;}
.ws2_c00060{word-spacing:4.097561px;}
.ws7_c00060{word-spacing:13.318471px;}
.ws6_c00060{word-spacing:29.984962px;}
.fc0_c00060{color:transparent;}
.fs8_c00060{font-size:30.000000px;}
.fs1_c00060{font-size:42.000000px;}
.fs6_c00060{font-size:54.000000px;}
.fs2_c00060{font-size:60.000000px;}
.fs3_c00060{font-size:66.000000px;}
.fs4_c00060{font-size:72.000000px;}
.fs7_c00060{font-size:84.000000px;}
.fs0_c00060{font-size:108.000000px;}
.fs5_c00060{font-size:564.000000px;}
.y0_c00060{bottom:0.000000px;}
.y3a_c00060{bottom:176.700000px;}
.y38_c00060{bottom:194.700000px;}
.y39_c00060{bottom:195.450000px;}
.y37_c00060{bottom:212.700000px;}
.y36_c00060{bottom:234.750000px;}
.y34_c00060{bottom:243.300000px;}
.y33_c00060{bottom:261.000000px;}
.y35_c00060{bottom:278.250000px;}
.y32_c00060{bottom:279.000000px;}
.y31_c00060{bottom:297.000000px;}
.y30_c00060{bottom:315.000000px;}
.y2f_c00060{bottom:349.950000px;}
.y2e_c00060{bottom:367.950000px;}
.y2d_c00060{bottom:385.950000px;}
.y2c_c00060{bottom:424.800000px;}
.y2b_c00060{bottom:469.050000px;}
.y2a_c00060{bottom:487.050000px;}
.y28_c00060{bottom:526.950000px;}
.y27_c00060{bottom:544.950000px;}
.y29_c00060{bottom:561.600000px;}
.y26_c00060{bottom:562.950000px;}
.y25_c00060{bottom:580.950000px;}
.y24_c00060{bottom:598.650000px;}
.y23_c00060{bottom:618.000000px;}
.y1f_c00060{bottom:625.350000px;}
.y1e_c00060{bottom:643.350000px;}
.y20_c00060{bottom:650.550000px;}
.y1d_c00060{bottom:661.350000px;}
.y1c_c00060{bottom:678.600000px;}
.y22_c00060{bottom:699.750000px;}
.y1a_c00060{bottom:704.850000px;}
.y19_c00060{bottom:723.600000px;}
.y18_c00060{bottom:741.600000px;}
.y1b_c00060{bottom:748.500000px;}
.y17_c00060{bottom:759.600000px;}
.y16_c00060{bottom:777.600000px;}
.y15_c00060{bottom:795.300000px;}
.y14_c00060{bottom:821.400000px;}
.y13_c00060{bottom:840.150000px;}
.y21_c00060{bottom:850.650000px;}
.y12_c00060{bottom:857.850000px;}
.y11_c00060{bottom:875.550000px;}
.y10_c00060{bottom:893.550000px;}
.ye_c00060{bottom:918.900000px;}
.yd_c00060{bottom:937.200000px;}
.yc_c00060{bottom:955.500000px;}
.yb_c00060{bottom:972.900000px;}
.yf_c00060{bottom:988.950000px;}
.ya_c00060{bottom:990.900000px;}
.y9_c00060{bottom:1008.600000px;}
.y8_c00060{bottom:1026.900000px;}
.y7_c00060{bottom:1044.600000px;}
.y6_c00060{bottom:1062.300000px;}
.y5_c00060{bottom:1098.000000px;}
.y4_c00060{bottom:1109.850000px;}
.y3_c00060{bottom:1116.300000px;}
.y1_c00060{bottom:1142.700000px;}
.y2_c00060{bottom:1268.250000px;}
.ha_c00060{height:30.000000px;}
.h3_c00060{height:42.000000px;}
.h8_c00060{height:54.000000px;}
.h4_c00060{height:60.000000px;}
.h5_c00060{height:66.000000px;}
.h6_c00060{height:72.000000px;}
.h9_c00060{height:84.000000px;}
.h2_c00060{height:108.000000px;}
.h7_c00060{height:564.000000px;}
.h1_c00060{height:1274.250000px;}
.h0_c00060{height:1274.400056px;}
.w0_c00060{width:948.600036px;}
.w1_c00060{width:948.750000px;}
.x0_c00060{left:0.000000px;}
.xee_c00060{left:89.250000px;}
.xce_c00060{left:91.050000px;}
.x11c_c00060{left:92.100000px;}
.xec_c00060{left:93.300000px;}
.x76_c00060{left:95.100000px;}
.x11d_c00060{left:102.600000px;}
.xcf_c00060{left:104.700000px;}
.x113_c00060{left:105.900000px;}
.x77_c00060{left:107.400000px;}
.x11e_c00060{left:114.150000px;}
.xed_c00060{left:115.200000px;}
.xd1_c00060{left:118.500000px;}
.xef_c00060{left:123.450000px;}
.xf0_c00060{left:136.350000px;}
.xd0_c00060{left:145.800000px;}
.x78_c00060{left:147.300000px;}
.x114_c00060{left:148.350000px;}
.xb7_c00060{left:149.700000px;}
.xfc_c00060{left:159.600000px;}
.xf1_c00060{left:184.950000px;}
.xf2_c00060{left:218.100000px;}
.xd2_c00060{left:220.350000px;}
.x8_c00060{left:225.000000px;}
.xf3_c00060{left:232.500000px;}
.x2a_c00060{left:235.050000px;}
.x9_c00060{left:236.550000px;}
.x79_c00060{left:238.650000px;}
.xd3_c00060{left:240.150000px;}
.x82_c00060{left:241.650000px;}
.x115_c00060{left:243.300000px;}
.xfd_c00060{left:244.950000px;}
.xa_c00060{left:246.300000px;}
.x3_c00060{left:249.450000px;}
.x33_c00060{left:253.050000px;}
.x1f_c00060{left:254.700000px;}
.x74_c00060{left:256.050000px;}
.xa9_c00060{left:257.100000px;}
.xb5_c00060{left:258.300000px;}
.xe3_c00060{left:259.500000px;}
.x118_c00060{left:260.850000px;}
.xb_c00060{left:262.200000px;}
.x4_c00060{left:263.550000px;}
.x1b_c00060{left:267.300000px;}
.x64_c00060{left:271.050000px;}
.x5_c00060{left:272.250000px;}
.x101_c00060{left:275.700000px;}
.x5e_c00060{left:279.300000px;}
.x3e_c00060{left:282.150000px;}
.xb6_c00060{left:283.200000px;}
.x20_c00060{left:284.550000px;}
.x6b_c00060{left:285.900000px;}
.xd4_c00060{left:288.750000px;}
.xf4_c00060{left:290.100000px;}
.x94_c00060{left:291.750000px;}
.xc4_c00060{left:295.350000px;}
.xb0_c00060{left:297.000000px;}
.xaa_c00060{left:298.200000px;}
.x21_c00060{left:299.250000px;}
.xb8_c00060{left:301.050000px;}
.x34_c00060{left:302.400000px;}
.x6c_c00060{left:303.600000px;}
.x53_c00060{left:305.700000px;}
.xdf_c00060{left:307.050000px;}
.x8a_c00060{left:312.900000px;}
.x99_c00060{left:313.950000px;}
.x1c_c00060{left:315.900000px;}
.x3f_c00060{left:318.150000px;}
.xf5_c00060{left:320.400000px;}
.x95_c00060{left:321.600000px;}
.x112_c00060{left:323.850000px;}
.xab_c00060{left:325.200000px;}
.x22_c00060{left:327.000000px;}
.x6d_c00060{left:328.800000px;}
.xc5_c00060{left:330.000000px;}
.x106_c00060{left:335.700000px;}
.xd9_c00060{left:336.900000px;}
.xa1_c00060{left:338.250000px;}
.xfe_c00060{left:339.600000px;}
.x40_c00060{left:341.250000px;}
.x54_c00060{left:342.450000px;}
.x110_c00060{left:343.800000px;}
.xf6_c00060{left:345.900000px;}
.x1d_c00060{left:347.550000px;}
.x100_c00060{left:350.250000px;}
.x1_c00060{left:353.850000px;}
.xc_c00060{left:355.800000px;}
.xda_c00060{left:359.250000px;}
.x23_c00060{left:361.950000px;}
.x9a_c00060{left:364.350000px;}
.x8b_c00060{left:365.400000px;}
.xe4_c00060{left:371.400000px;}
.xea_c00060{left:372.450000px;}
.xd_c00060{left:373.800000px;}
.xcc_c00060{left:377.550000px;}
.x41_c00060{left:378.750000px;}
.xbd_c00060{left:382.950000px;}
.x4a_c00060{left:384.750000px;}
.xf7_c00060{left:385.800000px;}
.x5f_c00060{left:387.600000px;}
.xc6_c00060{left:389.400000px;}
.x2b_c00060{left:390.900000px;}
.x24_c00060{left:392.550000px;}
.x60_c00060{left:397.350000px;}
.x55_c00060{left:399.000000px;}
.xe0_c00060{left:400.350000px;}
.xdb_c00060{left:404.250000px;}
.xf8_c00060{left:405.900000px;}
.xe_c00060{left:407.250000px;}
.x35_c00060{left:410.700000px;}
.x6e_c00060{left:412.650000px;}
.x7a_c00060{left:414.750000px;}
.x65_c00060{left:416.400000px;}
.x9b_c00060{left:417.600000px;}
.xeb_c00060{left:421.800000px;}
.x83_c00060{left:423.150000px;}
.xa4_c00060{left:425.700000px;}
.x103_c00060{left:427.050000px;}
.x42_c00060{left:429.150000px;}
.xf9_c00060{left:431.100000px;}
.xac_c00060{left:432.150000px;}
.x116_c00060{left:434.850000px;}
.x4b_c00060{left:437.700000px;}
.x111_c00060{left:442.350000px;}
.x84_c00060{left:444.750000px;}
.xbe_c00060{left:446.250000px;}
.x25_c00060{left:448.050000px;}
.xf_c00060{left:450.450000px;}
.xe5_c00060{left:453.150000px;}
.xd5_c00060{left:456.300000px;}
.x4c_c00060{left:457.800000px;}
.x8c_c00060{left:460.500000px;}
.x7b_c00060{left:461.850000px;}
.x107_c00060{left:463.500000px;}
.x26_c00060{left:464.550000px;}
.x9c_c00060{left:466.950000px;}
.x119_c00060{left:468.300000px;}
.x36_c00060{left:469.350000px;}
.x66_c00060{left:472.500000px;}
.x10e_c00060{left:477.300000px;}
.x56_c00060{left:480.000000px;}
.x85_c00060{left:481.050000px;}
.x61_c00060{left:484.800000px;}
.x7c_c00060{left:488.100000px;}
.x8d_c00060{left:490.800000px;}
.xb1_c00060{left:491.850000px;}
.x4d_c00060{left:493.500000px;}
.x67_c00060{left:495.150000px;}
.xbf_c00060{left:497.100000px;}
.x6f_c00060{left:499.800000px;}
.xb9_c00060{left:501.900000px;}
.xd6_c00060{left:503.100000px;}
.x10_c00060{left:504.450000px;}
.x11f_c00060{left:505.500000px;}
.x109_c00060{left:508.950000px;}
.xe6_c00060{left:510.000000px;}
.x43_c00060{left:513.750000px;}
.x2c_c00060{left:516.900000px;}
.xa2_c00060{left:518.250000px;}
.xff_c00060{left:521.400000px;}
.x27_c00060{left:523.200000px;}
.x96_c00060{left:524.250000px;}
.x68_c00060{left:525.450000px;}
.x120_c00060{left:526.800000px;}
.x4e_c00060{left:530.100000px;}
.xe7_c00060{left:531.300000px;}
.x44_c00060{left:533.250000px;}
.x57_c00060{left:536.850000px;}
.xe1_c00060{left:538.200000px;}
.x11_c00060{left:540.150000px;}
.x37_c00060{left:541.650000px;}
.x9d_c00060{left:543.900000px;}
.x2d_c00060{left:546.450000px;}
.x10f_c00060{left:549.000000px;}
.xba_c00060{left:550.800000px;}
.x86_c00060{left:552.600000px;}
.xc7_c00060{left:556.500000px;}
.x8e_c00060{left:559.200000px;}
.x28_c00060{left:561.000000px;}
.x58_c00060{left:563.100000px;}
.x10a_c00060{left:565.800000px;}
.xad_c00060{left:566.850000px;}
.x12_c00060{left:569.250000px;}
.x108_c00060{left:572.550000px;}
.xd7_c00060{left:574.050000px;}
.x45_c00060{left:575.400000px;}
.xc8_c00060{left:577.800000px;}
.x29_c00060{left:580.800000px;}
.x104_c00060{left:581.850000px;}
.x38_c00060{left:584.850000px;}
.x7d_c00060{left:586.350000px;}
.xb2_c00060{left:588.000000px;}
.x4f_c00060{left:589.500000px;}
.x13_c00060{left:591.150000px;}
.x62_c00060{left:596.700000px;}
.x2e_c00060{left:600.750000px;}
.x8f_c00060{left:602.400000px;}
.x105_c00060{left:605.550000px;}
.x50_c00060{left:607.800000px;}
.x39_c00060{left:609.750000px;}
.x59_c00060{left:612.750000px;}
.x46_c00060{left:615.000000px;}
.x69_c00060{left:616.950000px;}
.x9e_c00060{left:619.800000px;}
.xd8_c00060{left:620.850000px;}
.xbb_c00060{left:623.550000px;}
.xae_c00060{left:625.200000px;}
.x90_c00060{left:626.550000px;}
.x14_c00060{left:628.200000px;}
.xc0_c00060{left:629.700000px;}
.x9f_c00060{left:632.700000px;}
.x5a_c00060{left:634.650000px;}
.x51_c00060{left:638.100000px;}
.x63_c00060{left:639.300000px;}
.x15_c00060{left:641.550000px;}
.xfa_c00060{left:643.500000px;}
.xc9_c00060{left:645.750000px;}
.x2f_c00060{left:647.250000px;}
.x97_c00060{left:649.050000px;}
.xb3_c00060{left:650.250000px;}
.x70_c00060{left:654.300000px;}
.x121_c00060{left:656.400000px;}
.x7e_c00060{left:657.900000px;}
.x3a_c00060{left:660.150000px;}
.x6_c00060{left:661.800000px;}
.x11a_c00060{left:664.950000px;}
.x30_c00060{left:666.750000px;}
.xb4_c00060{left:669.750000px;}
.xa0_c00060{left:671.250000px;}
.x3b_c00060{left:673.500000px;}
.x16_c00060{left:674.700000px;}
.xbc_c00060{left:676.050000px;}
.x102_c00060{left:678.150000px;}
.x87_c00060{left:679.350000px;}
.x75_c00060{left:681.300000px;}
.x10b_c00060{left:683.250000px;}
.xa5_c00060{left:684.900000px;}
.xa3_c00060{left:686.700000px;}
.x7_c00060{left:687.750000px;}
.x11b_c00060{left:689.400000px;}
.xca_c00060{left:690.750000px;}
.x3c_c00060{left:691.800000px;}
.x6a_c00060{left:696.600000px;}
.x17_c00060{left:699.600000px;}
.x52_c00060{left:701.400000px;}
.xe8_c00060{left:702.600000px;}
.x7f_c00060{left:705.450000px;}
.xaf_c00060{left:706.950000px;}
.xfb_c00060{left:708.300000px;}
.xc1_c00060{left:709.950000px;}
.x88_c00060{left:714.600000px;}
.x47_c00060{left:715.800000px;}
.x71_c00060{left:717.600000px;}
.xdc_c00060{left:718.950000px;}
.x91_c00060{left:721.200000px;}
.xa6_c00060{left:723.000000px;}
.x5b_c00060{left:724.650000px;}
.xe2_c00060{left:726.150000px;}
.x18_c00060{left:727.350000px;}
.x80_c00060{left:730.950000px;}
.x72_c00060{left:733.800000px;}
.xc2_c00060{left:734.850000px;}
.xa7_c00060{left:735.900000px;}
.xdd_c00060{left:736.950000px;}
.x48_c00060{left:740.700000px;}
.x92_c00060{left:743.550000px;}
.x98_c00060{left:744.750000px;}
.x31_c00060{left:747.300000px;}
.x117_c00060{left:749.100000px;}
.x3d_c00060{left:750.450000px;}
.xa8_c00060{left:752.850000px;}
.x89_c00060{left:754.650000px;}
.x19_c00060{left:756.900000px;}
.x73_c00060{left:757.950000px;}
.x81_c00060{left:759.000000px;}
.xcd_c00060{left:761.250000px;}
.x49_c00060{left:762.600000px;}
.x1e_c00060{left:763.800000px;}
.x32_c00060{left:766.800000px;}
.xcb_c00060{left:767.850000px;}
.xde_c00060{left:770.400000px;}
.x10c_c00060{left:772.500000px;}
.xc3_c00060{left:775.200000px;}
.x1a_c00060{left:779.550000px;}
.x5c_c00060{left:783.300000px;}
.x10d_c00060{left:784.800000px;}
.x2_c00060{left:786.900000px;}
.xe9_c00060{left:792.600000px;}
.x5d_c00060{left:794.850000px;}
.x93_c00060{left:796.800000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws5_c00060{word-spacing:-11.787440pt;}
.ws0_c00060{word-spacing:-11.144105pt;}
.ws1_c00060{word-spacing:-7.260839pt;}
.ws3_c00060{word-spacing:-4.296296pt;}
.ws4_c00060{word-spacing:-3.280739pt;}
.ws8_c00060{word-spacing:0.000000pt;}
.ws2_c00060{word-spacing:3.642276pt;}
.ws7_c00060{word-spacing:11.838641pt;}
.ws6_c00060{word-spacing:26.653300pt;}
.fs8_c00060{font-size:26.666667pt;}
.fs1_c00060{font-size:37.333333pt;}
.fs6_c00060{font-size:48.000000pt;}
.fs2_c00060{font-size:53.333333pt;}
.fs3_c00060{font-size:58.666667pt;}
.fs4_c00060{font-size:64.000000pt;}
.fs7_c00060{font-size:74.666667pt;}
.fs0_c00060{font-size:96.000000pt;}
.fs5_c00060{font-size:501.333333pt;}
.y0_c00060{bottom:0.000000pt;}
.y3a_c00060{bottom:157.066667pt;}
.y38_c00060{bottom:173.066667pt;}
.y39_c00060{bottom:173.733333pt;}
.y37_c00060{bottom:189.066667pt;}
.y36_c00060{bottom:208.666667pt;}
.y34_c00060{bottom:216.266667pt;}
.y33_c00060{bottom:232.000000pt;}
.y35_c00060{bottom:247.333333pt;}
.y32_c00060{bottom:248.000000pt;}
.y31_c00060{bottom:264.000000pt;}
.y30_c00060{bottom:280.000000pt;}
.y2f_c00060{bottom:311.066667pt;}
.y2e_c00060{bottom:327.066667pt;}
.y2d_c00060{bottom:343.066667pt;}
.y2c_c00060{bottom:377.600000pt;}
.y2b_c00060{bottom:416.933333pt;}
.y2a_c00060{bottom:432.933333pt;}
.y28_c00060{bottom:468.400000pt;}
.y27_c00060{bottom:484.400000pt;}
.y29_c00060{bottom:499.200000pt;}
.y26_c00060{bottom:500.400000pt;}
.y25_c00060{bottom:516.400000pt;}
.y24_c00060{bottom:532.133333pt;}
.y23_c00060{bottom:549.333333pt;}
.y1f_c00060{bottom:555.866667pt;}
.y1e_c00060{bottom:571.866667pt;}
.y20_c00060{bottom:578.266667pt;}
.y1d_c00060{bottom:587.866667pt;}
.y1c_c00060{bottom:603.200000pt;}
.y22_c00060{bottom:622.000000pt;}
.y1a_c00060{bottom:626.533333pt;}
.y19_c00060{bottom:643.200000pt;}
.y18_c00060{bottom:659.200000pt;}
.y1b_c00060{bottom:665.333333pt;}
.y17_c00060{bottom:675.200000pt;}
.y16_c00060{bottom:691.200000pt;}
.y15_c00060{bottom:706.933333pt;}
.y14_c00060{bottom:730.133333pt;}
.y13_c00060{bottom:746.800000pt;}
.y21_c00060{bottom:756.133333pt;}
.y12_c00060{bottom:762.533333pt;}
.y11_c00060{bottom:778.266667pt;}
.y10_c00060{bottom:794.266667pt;}
.ye_c00060{bottom:816.800000pt;}
.yd_c00060{bottom:833.066667pt;}
.yc_c00060{bottom:849.333333pt;}
.yb_c00060{bottom:864.800000pt;}
.yf_c00060{bottom:879.066667pt;}
.ya_c00060{bottom:880.800000pt;}
.y9_c00060{bottom:896.533333pt;}
.y8_c00060{bottom:912.800000pt;}
.y7_c00060{bottom:928.533333pt;}
.y6_c00060{bottom:944.266667pt;}
.y5_c00060{bottom:976.000000pt;}
.y4_c00060{bottom:986.533333pt;}
.y3_c00060{bottom:992.266667pt;}
.y1_c00060{bottom:1015.733333pt;}
.y2_c00060{bottom:1127.333333pt;}
.ha_c00060{height:26.666667pt;}
.h3_c00060{height:37.333333pt;}
.h8_c00060{height:48.000000pt;}
.h4_c00060{height:53.333333pt;}
.h5_c00060{height:58.666667pt;}
.h6_c00060{height:64.000000pt;}
.h9_c00060{height:74.666667pt;}
.h2_c00060{height:96.000000pt;}
.h7_c00060{height:501.333333pt;}
.h1_c00060{height:1132.666667pt;}
.h0_c00060{height:1132.800049pt;}
.w0_c00060{width:843.200032pt;}
.w1_c00060{width:843.333333pt;}
.x0_c00060{left:0.000000pt;}
.xee_c00060{left:79.333333pt;}
.xce_c00060{left:80.933333pt;}
.x11c_c00060{left:81.866667pt;}
.xec_c00060{left:82.933333pt;}
.x76_c00060{left:84.533333pt;}
.x11d_c00060{left:91.200000pt;}
.xcf_c00060{left:93.066667pt;}
.x113_c00060{left:94.133333pt;}
.x77_c00060{left:95.466667pt;}
.x11e_c00060{left:101.466667pt;}
.xed_c00060{left:102.400000pt;}
.xd1_c00060{left:105.333333pt;}
.xef_c00060{left:109.733333pt;}
.xf0_c00060{left:121.200000pt;}
.xd0_c00060{left:129.600000pt;}
.x78_c00060{left:130.933333pt;}
.x114_c00060{left:131.866667pt;}
.xb7_c00060{left:133.066667pt;}
.xfc_c00060{left:141.866667pt;}
.xf1_c00060{left:164.400000pt;}
.xf2_c00060{left:193.866667pt;}
.xd2_c00060{left:195.866667pt;}
.x8_c00060{left:200.000000pt;}
.xf3_c00060{left:206.666667pt;}
.x2a_c00060{left:208.933333pt;}
.x9_c00060{left:210.266667pt;}
.x79_c00060{left:212.133333pt;}
.xd3_c00060{left:213.466667pt;}
.x82_c00060{left:214.800000pt;}
.x115_c00060{left:216.266667pt;}
.xfd_c00060{left:217.733333pt;}
.xa_c00060{left:218.933333pt;}
.x3_c00060{left:221.733333pt;}
.x33_c00060{left:224.933333pt;}
.x1f_c00060{left:226.400000pt;}
.x74_c00060{left:227.600000pt;}
.xa9_c00060{left:228.533333pt;}
.xb5_c00060{left:229.600000pt;}
.xe3_c00060{left:230.666667pt;}
.x118_c00060{left:231.866667pt;}
.xb_c00060{left:233.066667pt;}
.x4_c00060{left:234.266667pt;}
.x1b_c00060{left:237.600000pt;}
.x64_c00060{left:240.933333pt;}
.x5_c00060{left:242.000000pt;}
.x101_c00060{left:245.066667pt;}
.x5e_c00060{left:248.266667pt;}
.x3e_c00060{left:250.800000pt;}
.xb6_c00060{left:251.733333pt;}
.x20_c00060{left:252.933333pt;}
.x6b_c00060{left:254.133333pt;}
.xd4_c00060{left:256.666667pt;}
.xf4_c00060{left:257.866667pt;}
.x94_c00060{left:259.333333pt;}
.xc4_c00060{left:262.533333pt;}
.xb0_c00060{left:264.000000pt;}
.xaa_c00060{left:265.066667pt;}
.x21_c00060{left:266.000000pt;}
.xb8_c00060{left:267.600000pt;}
.x34_c00060{left:268.800000pt;}
.x6c_c00060{left:269.866667pt;}
.x53_c00060{left:271.733333pt;}
.xdf_c00060{left:272.933333pt;}
.x8a_c00060{left:278.133333pt;}
.x99_c00060{left:279.066667pt;}
.x1c_c00060{left:280.800000pt;}
.x3f_c00060{left:282.800000pt;}
.xf5_c00060{left:284.800000pt;}
.x95_c00060{left:285.866667pt;}
.x112_c00060{left:287.866667pt;}
.xab_c00060{left:289.066667pt;}
.x22_c00060{left:290.666667pt;}
.x6d_c00060{left:292.266667pt;}
.xc5_c00060{left:293.333333pt;}
.x106_c00060{left:298.400000pt;}
.xd9_c00060{left:299.466667pt;}
.xa1_c00060{left:300.666667pt;}
.xfe_c00060{left:301.866667pt;}
.x40_c00060{left:303.333333pt;}
.x54_c00060{left:304.400000pt;}
.x110_c00060{left:305.600000pt;}
.xf6_c00060{left:307.466667pt;}
.x1d_c00060{left:308.933333pt;}
.x100_c00060{left:311.333333pt;}
.x1_c00060{left:314.533333pt;}
.xc_c00060{left:316.266667pt;}
.xda_c00060{left:319.333333pt;}
.x23_c00060{left:321.733333pt;}
.x9a_c00060{left:323.866667pt;}
.x8b_c00060{left:324.800000pt;}
.xe4_c00060{left:330.133333pt;}
.xea_c00060{left:331.066667pt;}
.xd_c00060{left:332.266667pt;}
.xcc_c00060{left:335.600000pt;}
.x41_c00060{left:336.666667pt;}
.xbd_c00060{left:340.400000pt;}
.x4a_c00060{left:342.000000pt;}
.xf7_c00060{left:342.933333pt;}
.x5f_c00060{left:344.533333pt;}
.xc6_c00060{left:346.133333pt;}
.x2b_c00060{left:347.466667pt;}
.x24_c00060{left:348.933333pt;}
.x60_c00060{left:353.200000pt;}
.x55_c00060{left:354.666667pt;}
.xe0_c00060{left:355.866667pt;}
.xdb_c00060{left:359.333333pt;}
.xf8_c00060{left:360.800000pt;}
.xe_c00060{left:362.000000pt;}
.x35_c00060{left:365.066667pt;}
.x6e_c00060{left:366.800000pt;}
.x7a_c00060{left:368.666667pt;}
.x65_c00060{left:370.133333pt;}
.x9b_c00060{left:371.200000pt;}
.xeb_c00060{left:374.933333pt;}
.x83_c00060{left:376.133333pt;}
.xa4_c00060{left:378.400000pt;}
.x103_c00060{left:379.600000pt;}
.x42_c00060{left:381.466667pt;}
.xf9_c00060{left:383.200000pt;}
.xac_c00060{left:384.133333pt;}
.x116_c00060{left:386.533333pt;}
.x4b_c00060{left:389.066667pt;}
.x111_c00060{left:393.200000pt;}
.x84_c00060{left:395.333333pt;}
.xbe_c00060{left:396.666667pt;}
.x25_c00060{left:398.266667pt;}
.xf_c00060{left:400.400000pt;}
.xe5_c00060{left:402.800000pt;}
.xd5_c00060{left:405.600000pt;}
.x4c_c00060{left:406.933333pt;}
.x8c_c00060{left:409.333333pt;}
.x7b_c00060{left:410.533333pt;}
.x107_c00060{left:412.000000pt;}
.x26_c00060{left:412.933333pt;}
.x9c_c00060{left:415.066667pt;}
.x119_c00060{left:416.266667pt;}
.x36_c00060{left:417.200000pt;}
.x66_c00060{left:420.000000pt;}
.x10e_c00060{left:424.266667pt;}
.x56_c00060{left:426.666667pt;}
.x85_c00060{left:427.600000pt;}
.x61_c00060{left:430.933333pt;}
.x7c_c00060{left:433.866667pt;}
.x8d_c00060{left:436.266667pt;}
.xb1_c00060{left:437.200000pt;}
.x4d_c00060{left:438.666667pt;}
.x67_c00060{left:440.133333pt;}
.xbf_c00060{left:441.866667pt;}
.x6f_c00060{left:444.266667pt;}
.xb9_c00060{left:446.133333pt;}
.xd6_c00060{left:447.200000pt;}
.x10_c00060{left:448.400000pt;}
.x11f_c00060{left:449.333333pt;}
.x109_c00060{left:452.400000pt;}
.xe6_c00060{left:453.333333pt;}
.x43_c00060{left:456.666667pt;}
.x2c_c00060{left:459.466667pt;}
.xa2_c00060{left:460.666667pt;}
.xff_c00060{left:463.466667pt;}
.x27_c00060{left:465.066667pt;}
.x96_c00060{left:466.000000pt;}
.x68_c00060{left:467.066667pt;}
.x120_c00060{left:468.266667pt;}
.x4e_c00060{left:471.200000pt;}
.xe7_c00060{left:472.266667pt;}
.x44_c00060{left:474.000000pt;}
.x57_c00060{left:477.200000pt;}
.xe1_c00060{left:478.400000pt;}
.x11_c00060{left:480.133333pt;}
.x37_c00060{left:481.466667pt;}
.x9d_c00060{left:483.466667pt;}
.x2d_c00060{left:485.733333pt;}
.x10f_c00060{left:488.000000pt;}
.xba_c00060{left:489.600000pt;}
.x86_c00060{left:491.200000pt;}
.xc7_c00060{left:494.666667pt;}
.x8e_c00060{left:497.066667pt;}
.x28_c00060{left:498.666667pt;}
.x58_c00060{left:500.533333pt;}
.x10a_c00060{left:502.933333pt;}
.xad_c00060{left:503.866667pt;}
.x12_c00060{left:506.000000pt;}
.x108_c00060{left:508.933333pt;}
.xd7_c00060{left:510.266667pt;}
.x45_c00060{left:511.466667pt;}
.xc8_c00060{left:513.600000pt;}
.x29_c00060{left:516.266667pt;}
.x104_c00060{left:517.200000pt;}
.x38_c00060{left:519.866667pt;}
.x7d_c00060{left:521.200000pt;}
.xb2_c00060{left:522.666667pt;}
.x4f_c00060{left:524.000000pt;}
.x13_c00060{left:525.466667pt;}
.x62_c00060{left:530.400000pt;}
.x2e_c00060{left:534.000000pt;}
.x8f_c00060{left:535.466667pt;}
.x105_c00060{left:538.266667pt;}
.x50_c00060{left:540.266667pt;}
.x39_c00060{left:542.000000pt;}
.x59_c00060{left:544.666667pt;}
.x46_c00060{left:546.666667pt;}
.x69_c00060{left:548.400000pt;}
.x9e_c00060{left:550.933333pt;}
.xd8_c00060{left:551.866667pt;}
.xbb_c00060{left:554.266667pt;}
.xae_c00060{left:555.733333pt;}
.x90_c00060{left:556.933333pt;}
.x14_c00060{left:558.400000pt;}
.xc0_c00060{left:559.733333pt;}
.x9f_c00060{left:562.400000pt;}
.x5a_c00060{left:564.133333pt;}
.x51_c00060{left:567.200000pt;}
.x63_c00060{left:568.266667pt;}
.x15_c00060{left:570.266667pt;}
.xfa_c00060{left:572.000000pt;}
.xc9_c00060{left:574.000000pt;}
.x2f_c00060{left:575.333333pt;}
.x97_c00060{left:576.933333pt;}
.xb3_c00060{left:578.000000pt;}
.x70_c00060{left:581.600000pt;}
.x121_c00060{left:583.466667pt;}
.x7e_c00060{left:584.800000pt;}
.x3a_c00060{left:586.800000pt;}
.x6_c00060{left:588.266667pt;}
.x11a_c00060{left:591.066667pt;}
.x30_c00060{left:592.666667pt;}
.xb4_c00060{left:595.333333pt;}
.xa0_c00060{left:596.666667pt;}
.x3b_c00060{left:598.666667pt;}
.x16_c00060{left:599.733333pt;}
.xbc_c00060{left:600.933333pt;}
.x102_c00060{left:602.800000pt;}
.x87_c00060{left:603.866667pt;}
.x75_c00060{left:605.600000pt;}
.x10b_c00060{left:607.333333pt;}
.xa5_c00060{left:608.800000pt;}
.xa3_c00060{left:610.400000pt;}
.x7_c00060{left:611.333333pt;}
.x11b_c00060{left:612.800000pt;}
.xca_c00060{left:614.000000pt;}
.x3c_c00060{left:614.933333pt;}
.x6a_c00060{left:619.200000pt;}
.x17_c00060{left:621.866667pt;}
.x52_c00060{left:623.466667pt;}
.xe8_c00060{left:624.533333pt;}
.x7f_c00060{left:627.066667pt;}
.xaf_c00060{left:628.400000pt;}
.xfb_c00060{left:629.600000pt;}
.xc1_c00060{left:631.066667pt;}
.x88_c00060{left:635.200000pt;}
.x47_c00060{left:636.266667pt;}
.x71_c00060{left:637.866667pt;}
.xdc_c00060{left:639.066667pt;}
.x91_c00060{left:641.066667pt;}
.xa6_c00060{left:642.666667pt;}
.x5b_c00060{left:644.133333pt;}
.xe2_c00060{left:645.466667pt;}
.x18_c00060{left:646.533333pt;}
.x80_c00060{left:649.733333pt;}
.x72_c00060{left:652.266667pt;}
.xc2_c00060{left:653.200000pt;}
.xa7_c00060{left:654.133333pt;}
.xdd_c00060{left:655.066667pt;}
.x48_c00060{left:658.400000pt;}
.x92_c00060{left:660.933333pt;}
.x98_c00060{left:662.000000pt;}
.x31_c00060{left:664.266667pt;}
.x117_c00060{left:665.866667pt;}
.x3d_c00060{left:667.066667pt;}
.xa8_c00060{left:669.200000pt;}
.x89_c00060{left:670.800000pt;}
.x19_c00060{left:672.800000pt;}
.x73_c00060{left:673.733333pt;}
.x81_c00060{left:674.666667pt;}
.xcd_c00060{left:676.666667pt;}
.x49_c00060{left:677.866667pt;}
.x1e_c00060{left:678.933333pt;}
.x32_c00060{left:681.600000pt;}
.xcb_c00060{left:682.533333pt;}
.xde_c00060{left:684.800000pt;}
.x10c_c00060{left:686.666667pt;}
.xc3_c00060{left:689.066667pt;}
.x1a_c00060{left:692.933333pt;}
.x5c_c00060{left:696.266667pt;}
.x10d_c00060{left:697.600000pt;}
.x2_c00060{left:699.466667pt;}
.xe9_c00060{left:704.533333pt;}
.x5d_c00060{left:706.533333pt;}
.x93_c00060{left:708.266667pt;}
}





/* 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_c00061 {
    display:none;
  }
  .loading-indicator_c00061.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00061 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_c00061 { 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_c00061" -> "#page-container .classname_c00061")
 */
.pf_c00061 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00061 { /* 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_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00061 { /* 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_c00061 { /* 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_c00061 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00061 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00061 {overflow:visible;}
  }
}
.c_c00061 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00061 { /* 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_c00061:after { /* webkit #35443 */
  content: '';
}
.t_c00061:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00061 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 */
}
.__c00061 { /* 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_c00061 { /* info for Javascript */
  display:none;
}
.l_c00061 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00061 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00061 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00061: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_c00061 {
    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_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00061.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_c00061 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00061;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.000000;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;}
.mbc_c00061{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00061{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m95_c00061{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00061{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m75_c00061{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00061{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00061{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m20_c00061{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m3_c00061{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m13_c00061{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00061{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m41_c00061{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00061{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00061{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m29_c00061{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00061{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m79_c00061{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00061{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00061{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m70_c00061{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00061{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m47_c00061{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m78_c00061{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m68_c00061{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00061{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m97_c00061{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00061{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00061{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00061{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00061{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00061{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00061{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m0_c00061{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00061{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00061{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m4_c00061{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m33_c00061{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m32_c00061{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb_c00061{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m80_c00061{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m52_c00061{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m35_c00061{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m40_c00061{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m83_c00061{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m76_c00061{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00061{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00061{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00061{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00061{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m57_c00061{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m38_c00061{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m36_c00061{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m59_c00061{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m23_c00061{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mae_c00061{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m90_c00061{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.ma_c00061{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00061{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m43_c00061{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m73_c00061{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md_c00061{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mba_c00061{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m67_c00061{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00061{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m69_c00061{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00061{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00061{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m26_c00061{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8_c00061{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m82_c00061{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mc_c00061{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m39_c00061{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00061{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00061{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m74_c00061{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00061{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf_c00061{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6_c00061{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m25_c00061{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m21_c00061{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m31_c00061{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m58_c00061{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m22_c00061{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m87_c00061{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m44_c00061{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00061{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00061{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00061{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m42_c00061{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m46_c00061{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m86_c00061{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m81_c00061{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m28_c00061{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m72_c00061{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m34_c00061{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00061{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.maf_c00061{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m94_c00061{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m96_c00061{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00061{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m89_c00061{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m54_c00061{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00061{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m71_c00061{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00061{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00061{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m60_c00061{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9_c00061{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00061{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m16_c00061{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m37_c00061{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m45_c00061{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00061{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00061{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m17_c00061{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m62_c00061{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00061{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00061{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.me_c00061{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00061{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m11_c00061{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m77_c00061{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00061{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m61_c00061{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m24_c00061{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m98_c00061{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00061{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00061{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m88_c00061{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00061{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m65_c00061{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m63_c00061{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00061{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m10_c00061{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m93_c00061{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m27_c00061{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00061{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00061{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m19_c00061{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m53_c00061{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m14_c00061{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00061{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00061{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7_c00061{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00061{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00061{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m18_c00061{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00061{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00061{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00061{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m55_c00061{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m15_c00061{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00061{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m30_c00061{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00061{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mad_c00061{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m49_c00061{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m12_c00061{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m92_c00061{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m64_c00061{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m50_c00061{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mac_c00061{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00061{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m51_c00061{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00061{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m99_c00061{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00061{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5_c00061{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00061{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2_c00061{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m56_c00061{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00061{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m85_c00061{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mab_c00061{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00061{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m66_c00061{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00061{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.maa_c00061{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00061{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00061{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m84_c00061{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00061{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00061{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m48_c00061{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m91_c00061{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00061{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00061{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00061{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls0_c00061{letter-spacing:0.000000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{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__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:-4.250000px;}
.ws2_c00061{word-spacing:-0.250000px;}
.ws3_c00061{word-spacing:0.000000px;}
.ws1_c00061{word-spacing:7.369565px;}
.fc0_c00061{color:transparent;}
.fs4_c00061{font-size:48.000000px;}
.fs3_c00061{font-size:60.000000px;}
.fs2_c00061{font-size:66.000000px;}
.fs1_c00061{font-size:72.000000px;}
.fs0_c00061{font-size:120.000000px;}
.y0_c00061{bottom:0.000000px;}
.y28_c00061{bottom:64.050000px;}
.y26_c00061{bottom:420.450000px;}
.y25_c00061{bottom:438.450000px;}
.y24_c00061{bottom:456.300000px;}
.y27_c00061{bottom:467.700000px;}
.y23_c00061{bottom:474.000000px;}
.y22_c00061{bottom:492.000000px;}
.y21_c00061{bottom:509.700000px;}
.y1f_c00061{bottom:540.300000px;}
.y1e_c00061{bottom:558.300000px;}
.y1d_c00061{bottom:576.300000px;}
.y1c_c00061{bottom:594.300000px;}
.y20_c00061{bottom:596.100000px;}
.y1b_c00061{bottom:612.000000px;}
.y1a_c00061{bottom:630.000000px;}
.y19_c00061{bottom:648.000000px;}
.y18_c00061{bottom:679.050000px;}
.y17_c00061{bottom:697.350000px;}
.y16_c00061{bottom:728.250000px;}
.y15_c00061{bottom:747.750000px;}
.y14_c00061{bottom:764.250000px;}
.y13_c00061{bottom:795.450000px;}
.y12_c00061{bottom:813.450000px;}
.y11_c00061{bottom:831.150000px;}
.y10_c00061{bottom:848.850000px;}
.yf_c00061{bottom:866.850000px;}
.ye_c00061{bottom:884.850000px;}
.yd_c00061{bottom:902.850000px;}
.yc_c00061{bottom:920.850000px;}
.yb_c00061{bottom:951.150000px;}
.y9_c00061{bottom:982.350000px;}
.y8_c00061{bottom:1001.100000px;}
.y7_c00061{bottom:1019.100000px;}
.y6_c00061{bottom:1037.100000px;}
.y5_c00061{bottom:1067.850000px;}
.y4_c00061{bottom:1086.150000px;}
.ya_c00061{bottom:1093.350000px;}
.y3_c00061{bottom:1103.850000px;}
.y2_c00061{bottom:1122.150000px;}
.y1_c00061{bottom:1149.150000px;}
.h6_c00061{height:48.000000px;}
.h5_c00061{height:60.000000px;}
.h4_c00061{height:66.000000px;}
.h3_c00061{height:72.000000px;}
.h2_c00061{height:120.000000px;}
.h0_c00061{height:1279.439941px;}
.h1_c00061{height:1279.500000px;}
.w0_c00061{width:948.600036px;}
.w1_c00061{width:948.750000px;}
.x0_c00061{left:0.000000px;}
.xed_c00061{left:12.300000px;}
.x1_c00061{left:164.550000px;}
.x50_c00061{left:167.100000px;}
.x74_c00061{left:169.950000px;}
.xeb_c00061{left:172.500000px;}
.x51_c00061{left:176.100000px;}
.x75_c00061{left:178.650000px;}
.x52_c00061{left:185.850000px;}
.x76_c00061{left:186.900000px;}
.x9b_c00061{left:195.450000px;}
.xbf_c00061{left:201.600000px;}
.x53_c00061{left:209.550000px;}
.xa1_c00061{left:210.900000px;}
.xec_c00061{left:212.400000px;}
.x36_c00061{left:276.750000px;}
.x41_c00061{left:278.700000px;}
.xb7_c00061{left:292.650000px;}
.xd5_c00061{left:293.850000px;}
.x3_c00061{left:294.900000px;}
.x5a_c00061{left:296.250000px;}
.x2e_c00061{left:297.300000px;}
.x37_c00061{left:305.550000px;}
.x9c_c00061{left:309.600000px;}
.x10_c00061{left:312.450000px;}
.x1d_c00061{left:313.500000px;}
.x54_c00061{left:315.000000px;}
.x2f_c00061{left:320.400000px;}
.xe6_c00061{left:322.500000px;}
.x85_c00061{left:329.850000px;}
.xa2_c00061{left:330.900000px;}
.xa7_c00061{left:336.150000px;}
.x55_c00061{left:340.500000px;}
.x42_c00061{left:342.000000px;}
.x81_c00061{left:346.050000px;}
.xe8_c00061{left:347.400000px;}
.x11_c00061{left:350.250000px;}
.x1e_c00061{left:351.300000px;}
.xb8_c00061{left:353.550000px;}
.xd6_c00061{left:355.050000px;}
.x77_c00061{left:358.200000px;}
.xe9_c00061{left:360.000000px;}
.x6d_c00061{left:361.200000px;}
.x4d_c00061{left:362.850000px;}
.x38_c00061{left:363.900000px;}
.xe5_c00061{left:366.600000px;}
.x99_c00061{left:367.800000px;}
.x1f_c00061{left:371.850000px;}
.x82_c00061{left:373.050000px;}
.x4_c00061{left:375.600000px;}
.x86_c00061{left:376.650000px;}
.x9d_c00061{left:378.300000px;}
.x5b_c00061{left:380.100000px;}
.x9a_c00061{left:382.500000px;}
.x12_c00061{left:384.750000px;}
.x5_c00061{left:386.400000px;}
.xa8_c00061{left:387.600000px;}
.xc4_c00061{left:390.300000px;}
.x83_c00061{left:392.100000px;}
.xb9_c00061{left:393.300000px;}
.x78_c00061{left:398.100000px;}
.x63_c00061{left:399.150000px;}
.x87_c00061{left:401.100000px;}
.xcb_c00061{left:402.600000px;}
.x2_c00061{left:405.750000px;}
.x56_c00061{left:411.450000px;}
.x30_c00061{left:412.950000px;}
.x6e_c00061{left:418.050000px;}
.x4e_c00061{left:421.950000px;}
.x43_c00061{left:425.550000px;}
.x39_c00061{left:427.200000px;}
.x20_c00061{left:429.450000px;}
.xc0_c00061{left:430.650000px;}
.xd9_c00061{left:432.300000px;}
.x6_c00061{left:437.100000px;}
.xe7_c00061{left:439.500000px;}
.xcc_c00061{left:441.600000px;}
.x3a_c00061{left:443.100000px;}
.x88_c00061{left:444.300000px;}
.x31_c00061{left:445.350000px;}
.xc5_c00061{left:446.550000px;}
.xa9_c00061{left:448.800000px;}
.x21_c00061{left:451.800000px;}
.x5c_c00061{left:452.850000px;}
.x9e_c00061{left:454.200000px;}
.x64_c00061{left:457.800000px;}
.xba_c00061{left:459.150000px;}
.x13_c00061{left:461.400000px;}
.x79_c00061{left:465.450000px;}
.x57_c00061{left:466.950000px;}
.xea_c00061{left:468.600000px;}
.x65_c00061{left:470.400000px;}
.xda_c00061{left:471.900000px;}
.x84_c00061{left:473.850000px;}
.x7a_c00061{left:476.550000px;}
.x58_c00061{left:479.550000px;}
.x92_c00061{left:482.550000px;}
.x28_c00061{left:484.950000px;}
.x6f_c00061{left:486.150000px;}
.x7_c00061{left:489.300000px;}
.xaa_c00061{left:495.600000px;}
.x22_c00061{left:496.800000px;}
.x44_c00061{left:497.850000px;}
.xc9_c00061{left:501.900000px;}
.xc1_c00061{left:503.700000px;}
.x3b_c00061{left:506.100000px;}
.x66_c00061{left:508.500000px;}
.x4f_c00061{left:512.700000px;}
.xc6_c00061{left:513.900000px;}
.xa3_c00061{left:515.250000px;}
.x9f_c00061{left:517.500000px;}
.xdb_c00061{left:518.700000px;}
.x59_c00061{left:521.250000px;}
.x7b_c00061{left:524.100000px;}
.xcd_c00061{left:525.150000px;}
.x67_c00061{left:526.500000px;}
.xae_c00061{left:527.700000px;}
.x14_c00061{left:529.500000px;}
.x5d_c00061{left:533.100000px;}
.x89_c00061{left:534.300000px;}
.x29_c00061{left:536.400000px;}
.x45_c00061{left:538.500000px;}
.x15_c00061{left:541.800000px;}
.xa4_c00061{left:544.350000px;}
.x23_c00061{left:551.850000px;}
.x8_c00061{left:553.050000px;}
.x2a_c00061{left:556.200000px;}
.x68_c00061{left:557.400000px;}
.xce_c00061{left:559.650000px;}
.x16_c00061{left:562.650000px;}
.x7c_c00061{left:564.750000px;}
.xe0_c00061{left:565.800000px;}
.x5e_c00061{left:567.000000px;}
.xd7_c00061{left:568.200000px;}
.xdc_c00061{left:571.200000px;}
.x9_c00061{left:577.200000px;}
.xca_c00061{left:578.250000px;}
.x8a_c00061{left:580.050000px;}
.x46_c00061{left:584.250000px;}
.xd8_c00061{left:590.100000px;}
.x3c_c00061{left:592.200000px;}
.xdd_c00061{left:593.550000px;}
.x7d_c00061{left:596.100000px;}
.x2b_c00061{left:598.650000px;}
.x93_c00061{left:600.600000px;}
.xab_c00061{left:604.800000px;}
.x47_c00061{left:608.700000px;}
.x2c_c00061{left:613.350000px;}
.x17_c00061{left:615.150000px;}
.x69_c00061{left:616.500000px;}
.xa_c00061{left:618.600000px;}
.xaf_c00061{left:619.950000px;}
.x94_c00061{left:624.000000px;}
.xac_c00061{left:626.700000px;}
.xbb_c00061{left:629.400000px;}
.xb0_c00061{left:632.550000px;}
.xc2_c00061{left:635.100000px;}
.xde_c00061{left:637.050000px;}
.x5f_c00061{left:639.000000px;}
.xcf_c00061{left:641.400000px;}
.xc7_c00061{left:643.500000px;}
.x18_c00061{left:648.600000px;}
.x3d_c00061{left:649.800000px;}
.xd0_c00061{left:653.700000px;}
.x2d_c00061{left:655.050000px;}
.xb1_c00061{left:658.050000px;}
.x70_c00061{left:659.700000px;}
.x8b_c00061{left:660.750000px;}
.x32_c00061{left:663.900000px;}
.x7e_c00061{left:665.550000px;}
.xa5_c00061{left:667.200000px;}
.x24_c00061{left:668.400000px;}
.x8c_c00061{left:670.800000px;}
.x19_c00061{left:674.850000px;}
.x95_c00061{left:681.600000px;}
.xb_c00061{left:684.450000px;}
.x3e_c00061{left:688.650000px;}
.xad_c00061{left:691.200000px;}
.x96_c00061{left:693.900000px;}
.xb2_c00061{left:695.850000px;}
.xc_c00061{left:697.800000px;}
.x8d_c00061{left:701.700000px;}
.x33_c00061{left:703.200000px;}
.xa0_c00061{left:705.600000px;}
.xd1_c00061{left:707.100000px;}
.x1a_c00061{left:710.850000px;}
.xb3_c00061{left:713.850000px;}
.x97_c00061{left:717.000000px;}
.x25_c00061{left:718.800000px;}
.x48_c00061{left:723.150000px;}
.x8e_c00061{left:724.350000px;}
.xdf_c00061{left:727.350000px;}
.xe1_c00061{left:728.850000px;}
.xd2_c00061{left:730.500000px;}
.xd_c00061{left:732.750000px;}
.x60_c00061{left:734.400000px;}
.x71_c00061{left:737.400000px;}
.x26_c00061{left:740.100000px;}
.xe4_c00061{left:741.450000px;}
.x3f_c00061{left:745.950000px;}
.x6a_c00061{left:748.200000px;}
.x49_c00061{left:751.200000px;}
.xd3_c00061{left:752.850000px;}
.x7f_c00061{left:758.100000px;}
.xe_c00061{left:759.450000px;}
.xe2_c00061{left:764.550000px;}
.x34_c00061{left:765.900000px;}
.xb4_c00061{left:767.550000px;}
.x72_c00061{left:776.700000px;}
.x61_c00061{left:779.700000px;}
.xbc_c00061{left:781.650000px;}
.xc3_c00061{left:784.200000px;}
.xb5_c00061{left:785.550000px;}
.x8f_c00061{left:786.600000px;}
.x1b_c00061{left:790.050000px;}
.xbd_c00061{left:792.450000px;}
.x98_c00061{left:794.700000px;}
.x90_c00061{left:797.100000px;}
.x4a_c00061{left:798.300000px;}
.x27_c00061{left:800.250000px;}
.x1c_c00061{left:801.600000px;}
.x62_c00061{left:803.100000px;}
.x6b_c00061{left:806.100000px;}
.x4b_c00061{left:813.450000px;}
.xd4_c00061{left:817.650000px;}
.x91_c00061{left:819.750000px;}
.x80_c00061{left:825.450000px;}
.x6c_c00061{left:829.200000px;}
.x40_c00061{left:830.550000px;}
.xa6_c00061{left:832.650000px;}
.x35_c00061{left:838.650000px;}
.xf_c00061{left:840.150000px;}
.x73_c00061{left:843.600000px;}
.xbe_c00061{left:846.750000px;}
.x4c_c00061{left:848.400000px;}
.xe3_c00061{left:849.450000px;}
.xb6_c00061{left:851.700000px;}
.xc8_c00061{left:860.550000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:-3.777778pt;}
.ws2_c00061{word-spacing:-0.222222pt;}
.ws3_c00061{word-spacing:0.000000pt;}
.ws1_c00061{word-spacing:6.550725pt;}
.fs4_c00061{font-size:42.666667pt;}
.fs3_c00061{font-size:53.333333pt;}
.fs2_c00061{font-size:58.666667pt;}
.fs1_c00061{font-size:64.000000pt;}
.fs0_c00061{font-size:106.666667pt;}
.y0_c00061{bottom:0.000000pt;}
.y28_c00061{bottom:56.933333pt;}
.y26_c00061{bottom:373.733333pt;}
.y25_c00061{bottom:389.733333pt;}
.y24_c00061{bottom:405.600000pt;}
.y27_c00061{bottom:415.733333pt;}
.y23_c00061{bottom:421.333333pt;}
.y22_c00061{bottom:437.333333pt;}
.y21_c00061{bottom:453.066667pt;}
.y1f_c00061{bottom:480.266667pt;}
.y1e_c00061{bottom:496.266667pt;}
.y1d_c00061{bottom:512.266667pt;}
.y1c_c00061{bottom:528.266667pt;}
.y20_c00061{bottom:529.866667pt;}
.y1b_c00061{bottom:544.000000pt;}
.y1a_c00061{bottom:560.000000pt;}
.y19_c00061{bottom:576.000000pt;}
.y18_c00061{bottom:603.600000pt;}
.y17_c00061{bottom:619.866667pt;}
.y16_c00061{bottom:647.333333pt;}
.y15_c00061{bottom:664.666667pt;}
.y14_c00061{bottom:679.333333pt;}
.y13_c00061{bottom:707.066667pt;}
.y12_c00061{bottom:723.066667pt;}
.y11_c00061{bottom:738.800000pt;}
.y10_c00061{bottom:754.533333pt;}
.yf_c00061{bottom:770.533333pt;}
.ye_c00061{bottom:786.533333pt;}
.yd_c00061{bottom:802.533333pt;}
.yc_c00061{bottom:818.533333pt;}
.yb_c00061{bottom:845.466667pt;}
.y9_c00061{bottom:873.200000pt;}
.y8_c00061{bottom:889.866667pt;}
.y7_c00061{bottom:905.866667pt;}
.y6_c00061{bottom:921.866667pt;}
.y5_c00061{bottom:949.200000pt;}
.y4_c00061{bottom:965.466667pt;}
.ya_c00061{bottom:971.866667pt;}
.y3_c00061{bottom:981.200000pt;}
.y2_c00061{bottom:997.466667pt;}
.y1_c00061{bottom:1021.466667pt;}
.h6_c00061{height:42.666667pt;}
.h5_c00061{height:53.333333pt;}
.h4_c00061{height:58.666667pt;}
.h3_c00061{height:64.000000pt;}
.h2_c00061{height:106.666667pt;}
.h0_c00061{height:1137.279948pt;}
.h1_c00061{height:1137.333333pt;}
.w0_c00061{width:843.200032pt;}
.w1_c00061{width:843.333333pt;}
.x0_c00061{left:0.000000pt;}
.xed_c00061{left:10.933333pt;}
.x1_c00061{left:146.266667pt;}
.x50_c00061{left:148.533333pt;}
.x74_c00061{left:151.066667pt;}
.xeb_c00061{left:153.333333pt;}
.x51_c00061{left:156.533333pt;}
.x75_c00061{left:158.800000pt;}
.x52_c00061{left:165.200000pt;}
.x76_c00061{left:166.133333pt;}
.x9b_c00061{left:173.733333pt;}
.xbf_c00061{left:179.200000pt;}
.x53_c00061{left:186.266667pt;}
.xa1_c00061{left:187.466667pt;}
.xec_c00061{left:188.800000pt;}
.x36_c00061{left:246.000000pt;}
.x41_c00061{left:247.733333pt;}
.xb7_c00061{left:260.133333pt;}
.xd5_c00061{left:261.200000pt;}
.x3_c00061{left:262.133333pt;}
.x5a_c00061{left:263.333333pt;}
.x2e_c00061{left:264.266667pt;}
.x37_c00061{left:271.600000pt;}
.x9c_c00061{left:275.200000pt;}
.x10_c00061{left:277.733333pt;}
.x1d_c00061{left:278.666667pt;}
.x54_c00061{left:280.000000pt;}
.x2f_c00061{left:284.800000pt;}
.xe6_c00061{left:286.666667pt;}
.x85_c00061{left:293.200000pt;}
.xa2_c00061{left:294.133333pt;}
.xa7_c00061{left:298.800000pt;}
.x55_c00061{left:302.666667pt;}
.x42_c00061{left:304.000000pt;}
.x81_c00061{left:307.600000pt;}
.xe8_c00061{left:308.800000pt;}
.x11_c00061{left:311.333333pt;}
.x1e_c00061{left:312.266667pt;}
.xb8_c00061{left:314.266667pt;}
.xd6_c00061{left:315.600000pt;}
.x77_c00061{left:318.400000pt;}
.xe9_c00061{left:320.000000pt;}
.x6d_c00061{left:321.066667pt;}
.x4d_c00061{left:322.533333pt;}
.x38_c00061{left:323.466667pt;}
.xe5_c00061{left:325.866667pt;}
.x99_c00061{left:326.933333pt;}
.x1f_c00061{left:330.533333pt;}
.x82_c00061{left:331.600000pt;}
.x4_c00061{left:333.866667pt;}
.x86_c00061{left:334.800000pt;}
.x9d_c00061{left:336.266667pt;}
.x5b_c00061{left:337.866667pt;}
.x9a_c00061{left:340.000000pt;}
.x12_c00061{left:342.000000pt;}
.x5_c00061{left:343.466667pt;}
.xa8_c00061{left:344.533333pt;}
.xc4_c00061{left:346.933333pt;}
.x83_c00061{left:348.533333pt;}
.xb9_c00061{left:349.600000pt;}
.x78_c00061{left:353.866667pt;}
.x63_c00061{left:354.800000pt;}
.x87_c00061{left:356.533333pt;}
.xcb_c00061{left:357.866667pt;}
.x2_c00061{left:360.666667pt;}
.x56_c00061{left:365.733333pt;}
.x30_c00061{left:367.066667pt;}
.x6e_c00061{left:371.600000pt;}
.x4e_c00061{left:375.066667pt;}
.x43_c00061{left:378.266667pt;}
.x39_c00061{left:379.733333pt;}
.x20_c00061{left:381.733333pt;}
.xc0_c00061{left:382.800000pt;}
.xd9_c00061{left:384.266667pt;}
.x6_c00061{left:388.533333pt;}
.xe7_c00061{left:390.666667pt;}
.xcc_c00061{left:392.533333pt;}
.x3a_c00061{left:393.866667pt;}
.x88_c00061{left:394.933333pt;}
.x31_c00061{left:395.866667pt;}
.xc5_c00061{left:396.933333pt;}
.xa9_c00061{left:398.933333pt;}
.x21_c00061{left:401.600000pt;}
.x5c_c00061{left:402.533333pt;}
.x9e_c00061{left:403.733333pt;}
.x64_c00061{left:406.933333pt;}
.xba_c00061{left:408.133333pt;}
.x13_c00061{left:410.133333pt;}
.x79_c00061{left:413.733333pt;}
.x57_c00061{left:415.066667pt;}
.xea_c00061{left:416.533333pt;}
.x65_c00061{left:418.133333pt;}
.xda_c00061{left:419.466667pt;}
.x84_c00061{left:421.200000pt;}
.x7a_c00061{left:423.600000pt;}
.x58_c00061{left:426.266667pt;}
.x92_c00061{left:428.933333pt;}
.x28_c00061{left:431.066667pt;}
.x6f_c00061{left:432.133333pt;}
.x7_c00061{left:434.933333pt;}
.xaa_c00061{left:440.533333pt;}
.x22_c00061{left:441.600000pt;}
.x44_c00061{left:442.533333pt;}
.xc9_c00061{left:446.133333pt;}
.xc1_c00061{left:447.733333pt;}
.x3b_c00061{left:449.866667pt;}
.x66_c00061{left:452.000000pt;}
.x4f_c00061{left:455.733333pt;}
.xc6_c00061{left:456.800000pt;}
.xa3_c00061{left:458.000000pt;}
.x9f_c00061{left:460.000000pt;}
.xdb_c00061{left:461.066667pt;}
.x59_c00061{left:463.333333pt;}
.x7b_c00061{left:465.866667pt;}
.xcd_c00061{left:466.800000pt;}
.x67_c00061{left:468.000000pt;}
.xae_c00061{left:469.066667pt;}
.x14_c00061{left:470.666667pt;}
.x5d_c00061{left:473.866667pt;}
.x89_c00061{left:474.933333pt;}
.x29_c00061{left:476.800000pt;}
.x45_c00061{left:478.666667pt;}
.x15_c00061{left:481.600000pt;}
.xa4_c00061{left:483.866667pt;}
.x23_c00061{left:490.533333pt;}
.x8_c00061{left:491.600000pt;}
.x2a_c00061{left:494.400000pt;}
.x68_c00061{left:495.466667pt;}
.xce_c00061{left:497.466667pt;}
.x16_c00061{left:500.133333pt;}
.x7c_c00061{left:502.000000pt;}
.xe0_c00061{left:502.933333pt;}
.x5e_c00061{left:504.000000pt;}
.xd7_c00061{left:505.066667pt;}
.xdc_c00061{left:507.733333pt;}
.x9_c00061{left:513.066667pt;}
.xca_c00061{left:514.000000pt;}
.x8a_c00061{left:515.600000pt;}
.x46_c00061{left:519.333333pt;}
.xd8_c00061{left:524.533333pt;}
.x3c_c00061{left:526.400000pt;}
.xdd_c00061{left:527.600000pt;}
.x7d_c00061{left:529.866667pt;}
.x2b_c00061{left:532.133333pt;}
.x93_c00061{left:533.866667pt;}
.xab_c00061{left:537.600000pt;}
.x47_c00061{left:541.066667pt;}
.x2c_c00061{left:545.200000pt;}
.x17_c00061{left:546.800000pt;}
.x69_c00061{left:548.000000pt;}
.xa_c00061{left:549.866667pt;}
.xaf_c00061{left:551.066667pt;}
.x94_c00061{left:554.666667pt;}
.xac_c00061{left:557.066667pt;}
.xbb_c00061{left:559.466667pt;}
.xb0_c00061{left:562.266667pt;}
.xc2_c00061{left:564.533333pt;}
.xde_c00061{left:566.266667pt;}
.x5f_c00061{left:568.000000pt;}
.xcf_c00061{left:570.133333pt;}
.xc7_c00061{left:572.000000pt;}
.x18_c00061{left:576.533333pt;}
.x3d_c00061{left:577.600000pt;}
.xd0_c00061{left:581.066667pt;}
.x2d_c00061{left:582.266667pt;}
.xb1_c00061{left:584.933333pt;}
.x70_c00061{left:586.400000pt;}
.x8b_c00061{left:587.333333pt;}
.x32_c00061{left:590.133333pt;}
.x7e_c00061{left:591.600000pt;}
.xa5_c00061{left:593.066667pt;}
.x24_c00061{left:594.133333pt;}
.x8c_c00061{left:596.266667pt;}
.x19_c00061{left:599.866667pt;}
.x95_c00061{left:605.866667pt;}
.xb_c00061{left:608.400000pt;}
.x3e_c00061{left:612.133333pt;}
.xad_c00061{left:614.400000pt;}
.x96_c00061{left:616.800000pt;}
.xb2_c00061{left:618.533333pt;}
.xc_c00061{left:620.266667pt;}
.x8d_c00061{left:623.733333pt;}
.x33_c00061{left:625.066667pt;}
.xa0_c00061{left:627.200000pt;}
.xd1_c00061{left:628.533333pt;}
.x1a_c00061{left:631.866667pt;}
.xb3_c00061{left:634.533333pt;}
.x97_c00061{left:637.333333pt;}
.x25_c00061{left:638.933333pt;}
.x48_c00061{left:642.800000pt;}
.x8e_c00061{left:643.866667pt;}
.xdf_c00061{left:646.533333pt;}
.xe1_c00061{left:647.866667pt;}
.xd2_c00061{left:649.333333pt;}
.xd_c00061{left:651.333333pt;}
.x60_c00061{left:652.800000pt;}
.x71_c00061{left:655.466667pt;}
.x26_c00061{left:657.866667pt;}
.xe4_c00061{left:659.066667pt;}
.x3f_c00061{left:663.066667pt;}
.x6a_c00061{left:665.066667pt;}
.x49_c00061{left:667.733333pt;}
.xd3_c00061{left:669.200000pt;}
.x7f_c00061{left:673.866667pt;}
.xe_c00061{left:675.066667pt;}
.xe2_c00061{left:679.600000pt;}
.x34_c00061{left:680.800000pt;}
.xb4_c00061{left:682.266667pt;}
.x72_c00061{left:690.400000pt;}
.x61_c00061{left:693.066667pt;}
.xbc_c00061{left:694.800000pt;}
.xc3_c00061{left:697.066667pt;}
.xb5_c00061{left:698.266667pt;}
.x8f_c00061{left:699.200000pt;}
.x1b_c00061{left:702.266667pt;}
.xbd_c00061{left:704.400000pt;}
.x98_c00061{left:706.400000pt;}
.x90_c00061{left:708.533333pt;}
.x4a_c00061{left:709.600000pt;}
.x27_c00061{left:711.333333pt;}
.x1c_c00061{left:712.533333pt;}
.x62_c00061{left:713.866667pt;}
.x6b_c00061{left:716.533333pt;}
.x4b_c00061{left:723.066667pt;}
.xd4_c00061{left:726.800000pt;}
.x91_c00061{left:728.666667pt;}
.x80_c00061{left:733.733333pt;}
.x6c_c00061{left:737.066667pt;}
.x40_c00061{left:738.266667pt;}
.xa6_c00061{left:740.133333pt;}
.x35_c00061{left:745.466667pt;}
.xf_c00061{left:746.800000pt;}
.x73_c00061{left:749.866667pt;}
.xbe_c00061{left:752.666667pt;}
.x4c_c00061{left:754.133333pt;}
.xe3_c00061{left:755.066667pt;}
.xb6_c00061{left:757.066667pt;}
.xc8_c00061{left:764.933333pt;}
}





/* 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_c00062 {
    display:none;
  }
  .loading-indicator_c00062.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00062 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_c00062 { 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_c00062" -> "#page-container .classname_c00062")
 */
.pf_c00062 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00062 { /* 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_c00062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00062 { /* 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_c00062 { /* 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_c00062 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00062 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00062 {overflow:visible;}
  }
}
.c_c00062 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00062 { /* 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_c00062:after { /* webkit #35443 */
  content: '';
}
.t_c00062:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00062 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 */
}
.__c00062 { /* 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_c00062 { /* info for Javascript */
  display:none;
}
.l_c00062 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00062 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00062 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00062: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_c00062 {
    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_c00062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00062.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_c00062 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00062;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.000000;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;}
.m101_c00062{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m39_c00062{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m91_c00062{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mba_c00062{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m80_c00062{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00062{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00062{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00062{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me5_c00062{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb_c00062{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00062{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mf_c00062{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m60_c00062{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00062{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00062{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00062{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.me6_c00062{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00062{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00062{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mff_c00062{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mad_c00062{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m24_c00062{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.med_c00062{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m36_c00062{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m46_c00062{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m48_c00062{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00062{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m45_c00062{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md4_c00062{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00062{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00062{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00062{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m100_c00062{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.md8_c00062{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mde_c00062{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00062{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.me3_c00062{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m71_c00062{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00062{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m32_c00062{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00062{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m40_c00062{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00062{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m27_c00062{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00062{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me_c00062{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00062{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m33_c00062{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00062{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mce_c00062{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m81_c00062{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m31_c00062{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9_c00062{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00062{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00062{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00062{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m89_c00062{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00062{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m16_c00062{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m96_c00062{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00062{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mae_c00062{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m23_c00062{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00062{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00062{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m28_c00062{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m47_c00062{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00062{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00062{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00062{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00062{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m44_c00062{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00062{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00062{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00062{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00062{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m55_c00062{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00062{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me4_c00062{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m37_c00062{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00062{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m43_c00062{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00062{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00062{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00062{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00062{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mec_c00062{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m25_c00062{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00062{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m11_c00062{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00062{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m99_c00062{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00062{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00062{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00062{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m34_c00062{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00062{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00062{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00062{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m12_c00062{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00062{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md2_c00062{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00062{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00062{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00062{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m26_c00062{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mc_c00062{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00062{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m82_c00062{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.maa_c00062{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m51_c00062{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00062{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me7_c00062{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m10_c00062{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma_c00062{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me1_c00062{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00062{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00062{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00062{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m64_c00062{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00062{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00062{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00062{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.md7_c00062{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md1_c00062{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00062{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m90_c00062{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00062{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m66_c00062{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md5_c00062{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00062{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m20_c00062{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m35_c00062{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6_c00062{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md3_c00062{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00062{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00062{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00062{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m30_c00062{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mac_c00062{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00062{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m65_c00062{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m52_c00062{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m61_c00062{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m56_c00062{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mef_c00062{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00062{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00062{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00062{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00062{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00062{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mea_c00062{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m54_c00062{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m85_c00062{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m18_c00062{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00062{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00062{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00062{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m42_c00062{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m22_c00062{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00062{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m14_c00062{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m58_c00062{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m77_c00062{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me8_c00062{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00062{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me9_c00062{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m15_c00062{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m92_c00062{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.md6_c00062{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m98_c00062{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.maf_c00062{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00062{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me2_c00062{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00062{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00062{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m67_c00062{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00062{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m94_c00062{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00062{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mab_c00062{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00062{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00062{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m70_c00062{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m83_c00062{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.me0_c00062{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.md_c00062{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m76_c00062{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.md9_c00062{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m50_c00062{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mca_c00062{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00062{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m72_c00062{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00062{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m17_c00062{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m59_c00062{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m75_c00062{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00062{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00062{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m97_c00062{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mee_c00062{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00062{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00062{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00062{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00062{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00062{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00062{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00062{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00062{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m79_c00062{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00062{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m57_c00062{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.meb_c00062{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m13_c00062{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00062{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m78_c00062{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m62_c00062{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m41_c00062{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md0_c00062{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00062{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m29_c00062{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mda_c00062{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00062{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m95_c00062{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00062{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m21_c00062{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m49_c00062{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00062{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00062{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00062{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00062{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m19_c00062{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m93_c00062{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m63_c00062{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00062{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00062{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00062{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00062{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m53_c00062{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m7_c00062{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m69_c00062{transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);}
.m86_c00062{transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);}
.m5_c00062{transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);}
.m4_c00062{transform:matrix(0.419250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00062{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m73_c00062{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00062{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00062{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m38_c00062{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m87_c00062{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m102_c00062{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m68_c00062{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m74_c00062{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m104_c00062{transform:matrix(0.604750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604750,0.000000,0.000000,0.250000,0,0);}
.m103_c00062{transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);}
.m84_c00062{transform:matrix(0.768000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768000,0.000000,0.000000,0.250000,0,0);}
.m88_c00062{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(2.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.136000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls0_c00062{letter-spacing:0.000000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{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__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:-18.698795px;}
.ws4_c00062{word-spacing:-5.000000px;}
.ws5_c00062{word-spacing:0.000000px;}
.ws3_c00062{word-spacing:1.853503px;}
.ws1_c00062{word-spacing:5.818182px;}
.ws2_c00062{word-spacing:12.747851px;}
.fc0_c00062{color:transparent;}
.fs1_c00062{font-size:30.000000px;}
.fs6_c00062{font-size:48.000000px;}
.fs4_c00062{font-size:60.000000px;}
.fs3_c00062{font-size:66.000000px;}
.fs5_c00062{font-size:72.000000px;}
.fs2_c00062{font-size:78.000000px;}
.fs0_c00062{font-size:234.000000px;}
.y0_c00062{bottom:0.000000px;}
.y55_c00062{bottom:127.500000px;}
.y54_c00062{bottom:187.200000px;}
.y2a_c00062{bottom:192.600000px;}
.y53_c00062{bottom:205.500000px;}
.y29_c00062{bottom:210.600000px;}
.y52_c00062{bottom:223.500000px;}
.y28_c00062{bottom:241.200000px;}
.y51_c00062{bottom:241.800000px;}
.y50_c00062{bottom:259.500000px;}
.y27_c00062{bottom:271.500000px;}
.y4f_c00062{bottom:277.500000px;}
.y26_c00062{bottom:288.750000px;}
.y4e_c00062{bottom:299.850000px;}
.y4d_c00062{bottom:317.850000px;}
.y25_c00062{bottom:318.900000px;}
.y24_c00062{bottom:329.700000px;}
.y4c_c00062{bottom:335.850000px;}
.y23_c00062{bottom:338.700000px;}
.y4b_c00062{bottom:353.850000px;}
.y22_c00062{bottom:354.900000px;}
.y4a_c00062{bottom:371.550000px;}
.y21_c00062{bottom:374.400000px;}
.y49_c00062{bottom:393.600000px;}
.y20_c00062{bottom:396.300000px;}
.y48_c00062{bottom:411.900000px;}
.y1f_c00062{bottom:414.300000px;}
.y47_c00062{bottom:429.900000px;}
.y46_c00062{bottom:447.900000px;}
.y1e_c00062{bottom:449.250000px;}
.y45_c00062{bottom:465.900000px;}
.y1d_c00062{bottom:484.950000px;}
.y44_c00062{bottom:501.450000px;}
.y1c_c00062{bottom:502.950000px;}
.y1b_c00062{bottom:525.300000px;}
.y43_c00062{bottom:536.400000px;}
.y1a_c00062{bottom:546.900000px;}
.y42_c00062{bottom:554.400000px;}
.y19_c00062{bottom:565.200000px;}
.y41_c00062{bottom:572.100000px;}
.y18_c00062{bottom:583.200000px;}
.y40_c00062{bottom:590.100000px;}
.y17_c00062{bottom:605.100000px;}
.y3f_c00062{bottom:607.650000px;}
.y16_c00062{bottom:627.900000px;}
.y3e_c00062{bottom:630.750000px;}
.y3d_c00062{bottom:648.300000px;}
.y15_c00062{bottom:649.050000px;}
.y3c_c00062{bottom:666.300000px;}
.y14_c00062{bottom:670.950000px;}
.y3b_c00062{bottom:684.000000px;}
.y13_c00062{bottom:689.700000px;}
.y3a_c00062{bottom:706.350000px;}
.y12_c00062{bottom:711.750000px;}
.y39_c00062{bottom:724.350000px;}
.y11_c00062{bottom:733.650000px;}
.y38_c00062{bottom:742.350000px;}
.y10_c00062{bottom:755.700000px;}
.y37_c00062{bottom:760.350000px;}
.yf_c00062{bottom:774.000000px;}
.y36_c00062{bottom:778.350000px;}
.ye_c00062{bottom:791.250000px;}
.yd_c00062{bottom:792.000000px;}
.y35_c00062{bottom:795.900000px;}
.yc_c00062{bottom:813.900000px;}
.y34_c00062{bottom:818.550000px;}
.y33_c00062{bottom:836.550000px;}
.yb_c00062{bottom:837.000000px;}
.y32_c00062{bottom:854.250000px;}
.ya_c00062{bottom:854.700000px;}
.y31_c00062{bottom:872.250000px;}
.y9_c00062{bottom:872.700000px;}
.y8_c00062{bottom:893.850000px;}
.y30_c00062{bottom:894.900000px;}
.y7_c00062{bottom:912.600000px;}
.y2f_c00062{bottom:912.900000px;}
.y6_c00062{bottom:930.600000px;}
.y5_c00062{bottom:948.300000px;}
.y2e_c00062{bottom:970.800000px;}
.y4_c00062{bottom:983.850000px;}
.y2d_c00062{bottom:988.800000px;}
.y2c_c00062{bottom:1006.500000px;}
.y3_c00062{bottom:1021.650000px;}
.y2b_c00062{bottom:1024.500000px;}
.y1_c00062{bottom:1100.550000px;}
.y2_c00062{bottom:1265.700000px;}
.y56_c00062{bottom:1267.200000px;}
.h3_c00062{height:30.000000px;}
.h8_c00062{height:48.000000px;}
.h6_c00062{height:60.000000px;}
.h5_c00062{height:66.000000px;}
.h7_c00062{height:72.000000px;}
.h4_c00062{height:78.000000px;}
.h2_c00062{height:234.000000px;}
.h0_c00062{height:1270.440033px;}
.h1_c00062{height:1270.500000px;}
.w0_c00062{width:948.600036px;}
.w1_c00062{width:948.750000px;}
.x0_c00062{left:0.000000px;}
.x61_c00062{left:63.000000px;}
.x5c_c00062{left:64.050000px;}
.x76_c00062{left:65.100000px;}
.x73_c00062{left:68.400000px;}
.x9_c00062{left:71.700000px;}
.x80_c00062{left:81.450000px;}
.x5d_c00062{left:83.100000px;}
.x6d_c00062{left:86.400000px;}
.x57_c00062{left:87.450000px;}
.x4b_c00062{left:89.850000px;}
.x36_c00062{left:91.500000px;}
.x24_c00062{left:93.750000px;}
.xf_c00062{left:95.700000px;}
.x17_c00062{left:96.750000px;}
.x7c_c00062{left:103.350000px;}
.x81_c00062{left:106.650000px;}
.x25_c00062{left:111.450000px;}
.x47_c00062{left:112.650000px;}
.x34_c00062{left:115.200000px;}
.x1f_c00062{left:119.850000px;}
.x66_c00062{left:128.550000px;}
.x79_c00062{left:130.050000px;}
.x1d_c00062{left:131.400000px;}
.x77_c00062{left:142.800000px;}
.x5_c00062{left:146.550000px;}
.x62_c00062{left:147.600000px;}
.x74_c00062{left:154.800000px;}
.x72_c00062{left:155.850000px;}
.x10_c00062{left:156.900000px;}
.x7_c00062{left:158.700000px;}
.x82_c00062{left:160.350000px;}
.x50_c00062{left:163.350000px;}
.x4c_c00062{left:164.850000px;}
.x18_c00062{left:165.900000px;}
.x37_c00062{left:167.850000px;}
.x6e_c00062{left:170.250000px;}
.x1e_c00062{left:172.500000px;}
.x3e_c00062{left:173.850000px;}
.x19_c00062{left:178.800000px;}
.x68_c00062{left:181.800000px;}
.x58_c00062{left:184.650000px;}
.x38_c00062{left:186.150000px;}
.x11_c00062{left:188.250000px;}
.x3f_c00062{left:193.950000px;}
.x75_c00062{left:195.450000px;}
.x5e_c00062{left:198.000000px;}
.x2e_c00062{left:199.200000px;}
.x63_c00062{left:200.850000px;}
.x20_c00062{left:201.900000px;}
.x7a_c00062{left:203.100000px;}
.x2b_c00062{left:204.600000px;}
.xa_c00062{left:208.500000px;}
.x83_c00062{left:211.800000px;}
.x4e_c00062{left:214.050000px;}
.x2f_c00062{left:216.600000px;}
.x26_c00062{left:217.650000px;}
.x6a_c00062{left:218.850000px;}
.x39_c00062{left:220.050000px;}
.x67_c00062{left:221.850000px;}
.x4f_c00062{left:223.200000px;}
.x4d_c00062{left:228.600000px;}
.x48_c00062{left:232.500000px;}
.x27_c00062{left:234.900000px;}
.x3a_c00062{left:235.950000px;}
.x40_c00062{left:237.450000px;}
.x59_c00062{left:240.450000px;}
.x1a_c00062{left:241.800000px;}
.x51_c00062{left:242.850000px;}
.x6f_c00062{left:244.800000px;}
.xb_c00062{left:247.800000px;}
.x12_c00062{left:252.000000px;}
.x43_c00062{left:256.800000px;}
.x41_c00062{left:261.600000px;}
.x13_c00062{left:263.850000px;}
.x30_c00062{left:267.300000px;}
.x1_c00062{left:268.500000px;}
.x1b_c00062{left:272.700000px;}
.x21_c00062{left:273.900000px;}
.x6_c00062{left:276.450000px;}
.x45_c00062{left:277.650000px;}
.x42_c00062{left:278.850000px;}
.x6b_c00062{left:283.350000px;}
.x46_c00062{left:287.400000px;}
.x3b_c00062{left:289.650000px;}
.x14_c00062{left:290.850000px;}
.x31_c00062{left:294.000000px;}
.x5a_c00062{left:297.000000px;}
.x8_c00062{left:298.800000px;}
.x3c_c00062{left:301.200000px;}
.x52_c00062{left:302.250000px;}
.x2c_c00062{left:303.300000px;}
.x7b_c00062{left:304.650000px;}
.x28_c00062{left:309.450000px;}
.xc_c00062{left:312.900000px;}
.x49_c00062{left:315.300000px;}
.x53_c00062{left:318.450000px;}
.x2d_c00062{left:319.500000px;}
.x84_c00062{left:321.900000px;}
.x6c_c00062{left:327.600000px;}
.x44_c00062{left:331.650000px;}
.x29_c00062{left:336.150000px;}
.x5f_c00062{left:338.700000px;}
.x69_c00062{left:340.500000px;}
.x22_c00062{left:341.550000px;}
.x1c_c00062{left:346.050000px;}
.x7d_c00062{left:347.100000px;}
.x54_c00062{left:348.750000px;}
.x15_c00062{left:350.250000px;}
.x64_c00062{left:352.200000px;}
.x60_c00062{left:355.650000px;}
.x55_c00062{left:358.500000px;}
.x16_c00062{left:362.850000px;}
.x32_c00062{left:367.500000px;}
.x7e_c00062{left:368.700000px;}
.x78_c00062{left:370.800000px;}
.x3d_c00062{left:373.950000px;}
.x65_c00062{left:378.450000px;}
.x2a_c00062{left:381.450000px;}
.x33_c00062{left:383.400000px;}
.x5b_c00062{left:384.450000px;}
.x35_c00062{left:387.000000px;}
.x23_c00062{left:390.450000px;}
.xd_c00062{left:393.900000px;}
.x70_c00062{left:396.300000px;}
.x4a_c00062{left:402.750000px;}
.xe_c00062{left:408.600000px;}
.x71_c00062{left:411.750000px;}
.x7f_c00062{left:413.700000px;}
.x85_c00062{left:420.900000px;}
.x56_c00062{left:422.550000px;}
.xeb_c00062{left:447.900000px;}
.x9f_c00062{left:449.250000px;}
.xf4_c00062{left:464.400000px;}
.x92_c00062{left:466.050000px;}
.x86_c00062{left:467.250000px;}
.xfa_c00062{left:483.150000px;}
.xa5_c00062{left:484.500000px;}
.xcf_c00062{left:487.050000px;}
.xac_c00062{left:488.100000px;}
.x10f_c00062{left:494.550000px;}
.xda_c00062{left:498.000000px;}
.x101_c00062{left:499.350000px;}
.xbd_c00062{left:501.900000px;}
.xb6_c00062{left:504.000000px;}
.xa6_c00062{left:505.350000px;}
.x98_c00062{left:506.850000px;}
.x87_c00062{left:510.750000px;}
.xb4_c00062{left:511.950000px;}
.xfc_c00062{left:513.150000px;}
.xca_c00062{left:515.850000px;}
.xb8_c00062{left:517.950000px;}
.xa0_c00062{left:519.150000px;}
.xa7_c00062{left:521.250000px;}
.x8d_c00062{left:523.050000px;}
.x93_c00062{left:524.700000px;}
.xd3_c00062{left:525.900000px;}
.xee_c00062{left:527.700000px;}
.xd9_c00062{left:530.250000px;}
.xd0_c00062{left:532.800000px;}
.x102_c00062{left:534.600000px;}
.xad_c00062{left:535.950000px;}
.x108_c00062{left:539.100000px;}
.xe5_c00062{left:542.250000px;}
.xd4_c00062{left:543.900000px;}
.xbe_c00062{left:547.650000px;}
.xff_c00062{left:549.450000px;}
.xf6_c00062{left:551.700000px;}
.xb7_c00062{left:553.350000px;}
.x88_c00062{left:555.450000px;}
.x8e_c00062{left:557.250000px;}
.xdb_c00062{left:558.900000px;}
.xec_c00062{left:560.250000px;}
.xe1_c00062{left:561.600000px;}
.xbf_c00062{left:563.550000px;}
.xe8_c00062{left:567.150000px;}
.x99_c00062{left:569.850000px;}
.xae_c00062{left:573.000000px;}
.xf7_c00062{left:574.800000px;}
.xdc_c00062{left:577.650000px;}
.x89_c00062{left:580.950000px;}
.xe9_c00062{left:583.350000px;}
.xf8_c00062{left:584.700000px;}
.x110_c00062{left:586.050000px;}
.xa1_c00062{left:588.300000px;}
.x2_c00062{left:590.400000px;}
.xb9_c00062{left:594.000000px;}
.xa8_c00062{left:596.850000px;}
.xa2_c00062{left:598.800000px;}
.xc6_c00062{left:600.450000px;}
.x9a_c00062{left:602.550000px;}
.xcb_c00062{left:606.600000px;}
.xd5_c00062{left:609.000000px;}
.x8a_c00062{left:610.800000px;}
.x9b_c00062{left:612.600000px;}
.xea_c00062{left:613.950000px;}
.x94_c00062{left:617.550000px;}
.xed_c00062{left:619.950000px;}
.xd1_c00062{left:621.000000px;}
.xc0_c00062{left:624.000000px;}
.x10b_c00062{left:625.800000px;}
.x107_c00062{left:627.600000px;}
.x9c_c00062{left:629.100000px;}
.xdd_c00062{left:630.900000px;}
.xc1_c00062{left:633.000000px;}
.xb5_c00062{left:635.400000px;}
.xc7_c00062{left:636.450000px;}
.xba_c00062{left:637.500000px;}
.x100_c00062{left:639.450000px;}
.xa9_c00062{left:641.100000px;}
.xfb_c00062{left:642.600000px;}
.x112_c00062{left:643.950000px;}
.x10c_c00062{left:645.300000px;}
.x103_c00062{left:649.500000px;}
.x8f_c00062{left:651.150000px;}
.xde_c00062{left:653.250000px;}
.x104_c00062{left:657.450000px;}
.xf1_c00062{left:658.500000px;}
.x3_c00062{left:660.600000px;}
.x9d_c00062{left:663.600000px;}
.xf9_c00062{left:664.950000px;}
.xc8_c00062{left:666.300000px;}
.x95_c00062{left:668.250000px;}
.x4_c00062{left:671.700000px;}
.xf5_c00062{left:673.200000px;}
.xd6_c00062{left:675.600000px;}
.xaf_c00062{left:677.850000px;}
.xcc_c00062{left:678.900000px;}
.xef_c00062{left:683.550000px;}
.xbb_c00062{left:684.600000px;}
.xfd_c00062{left:685.650000px;}
.xc9_c00062{left:687.900000px;}
.xe4_c00062{left:689.400000px;}
.xc2_c00062{left:690.900000px;}
.xcd_c00062{left:692.250000px;}
.xa3_c00062{left:693.450000px;}
.x90_c00062{left:695.400000px;}
.xb0_c00062{left:696.600000px;}
.xe2_c00062{left:698.400000px;}
.xe6_c00062{left:699.450000px;}
.x8b_c00062{left:700.800000px;}
.xd7_c00062{left:703.650000px;}
.x109_c00062{left:705.150000px;}
.xdf_c00062{left:706.950000px;}
.xbc_c00062{left:711.300000px;}
.xd2_c00062{left:712.800000px;}
.x96_c00062{left:714.000000px;}
.xa4_c00062{left:716.550000px;}
.xb1_c00062{left:718.500000px;}
.xaa_c00062{left:719.550000px;}
.xc3_c00062{left:722.550000px;}
.xe7_c00062{left:728.250000px;}
.x91_c00062{left:730.650000px;}
.xc4_c00062{left:732.600000px;}
.x9e_c00062{left:733.800000px;}
.x10d_c00062{left:736.800000px;}
.x97_c00062{left:738.450000px;}
.xf2_c00062{left:741.300000px;}
.x106_c00062{left:743.100000px;}
.x105_c00062{left:744.300000px;}
.xab_c00062{left:746.550000px;}
.x111_c00062{left:749.400000px;}
.x10e_c00062{left:750.450000px;}
.x8c_c00062{left:754.800000px;}
.xe3_c00062{left:757.800000px;}
.xfe_c00062{left:759.300000px;}
.xe0_c00062{left:762.000000px;}
.xd8_c00062{left:763.800000px;}
.xb2_c00062{left:766.800000px;}
.xf3_c00062{left:769.350000px;}
.xce_c00062{left:772.200000px;}
.xf0_c00062{left:774.600000px;}
.xc5_c00062{left:776.550000px;}
.xb3_c00062{left:777.600000px;}
.x10a_c00062{left:779.700000px;}
.x113_c00062{left:797.100000px;}
.x114_c00062{left:809.400000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws0_c00062{word-spacing:-16.621151pt;}
.ws4_c00062{word-spacing:-4.444444pt;}
.ws5_c00062{word-spacing:0.000000pt;}
.ws3_c00062{word-spacing:1.647558pt;}
.ws1_c00062{word-spacing:5.171717pt;}
.ws2_c00062{word-spacing:11.331423pt;}
.fs1_c00062{font-size:26.666667pt;}
.fs6_c00062{font-size:42.666667pt;}
.fs4_c00062{font-size:53.333333pt;}
.fs3_c00062{font-size:58.666667pt;}
.fs5_c00062{font-size:64.000000pt;}
.fs2_c00062{font-size:69.333333pt;}
.fs0_c00062{font-size:208.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y55_c00062{bottom:113.333333pt;}
.y54_c00062{bottom:166.400000pt;}
.y2a_c00062{bottom:171.200000pt;}
.y53_c00062{bottom:182.666667pt;}
.y29_c00062{bottom:187.200000pt;}
.y52_c00062{bottom:198.666667pt;}
.y28_c00062{bottom:214.400000pt;}
.y51_c00062{bottom:214.933333pt;}
.y50_c00062{bottom:230.666667pt;}
.y27_c00062{bottom:241.333333pt;}
.y4f_c00062{bottom:246.666667pt;}
.y26_c00062{bottom:256.666667pt;}
.y4e_c00062{bottom:266.533333pt;}
.y4d_c00062{bottom:282.533333pt;}
.y25_c00062{bottom:283.466667pt;}
.y24_c00062{bottom:293.066667pt;}
.y4c_c00062{bottom:298.533333pt;}
.y23_c00062{bottom:301.066667pt;}
.y4b_c00062{bottom:314.533333pt;}
.y22_c00062{bottom:315.466667pt;}
.y4a_c00062{bottom:330.266667pt;}
.y21_c00062{bottom:332.800000pt;}
.y49_c00062{bottom:349.866667pt;}
.y20_c00062{bottom:352.266667pt;}
.y48_c00062{bottom:366.133333pt;}
.y1f_c00062{bottom:368.266667pt;}
.y47_c00062{bottom:382.133333pt;}
.y46_c00062{bottom:398.133333pt;}
.y1e_c00062{bottom:399.333333pt;}
.y45_c00062{bottom:414.133333pt;}
.y1d_c00062{bottom:431.066667pt;}
.y44_c00062{bottom:445.733333pt;}
.y1c_c00062{bottom:447.066667pt;}
.y1b_c00062{bottom:466.933333pt;}
.y43_c00062{bottom:476.800000pt;}
.y1a_c00062{bottom:486.133333pt;}
.y42_c00062{bottom:492.800000pt;}
.y19_c00062{bottom:502.400000pt;}
.y41_c00062{bottom:508.533333pt;}
.y18_c00062{bottom:518.400000pt;}
.y40_c00062{bottom:524.533333pt;}
.y17_c00062{bottom:537.866667pt;}
.y3f_c00062{bottom:540.133333pt;}
.y16_c00062{bottom:558.133333pt;}
.y3e_c00062{bottom:560.666667pt;}
.y3d_c00062{bottom:576.266667pt;}
.y15_c00062{bottom:576.933333pt;}
.y3c_c00062{bottom:592.266667pt;}
.y14_c00062{bottom:596.400000pt;}
.y3b_c00062{bottom:608.000000pt;}
.y13_c00062{bottom:613.066667pt;}
.y3a_c00062{bottom:627.866667pt;}
.y12_c00062{bottom:632.666667pt;}
.y39_c00062{bottom:643.866667pt;}
.y11_c00062{bottom:652.133333pt;}
.y38_c00062{bottom:659.866667pt;}
.y10_c00062{bottom:671.733333pt;}
.y37_c00062{bottom:675.866667pt;}
.yf_c00062{bottom:688.000000pt;}
.y36_c00062{bottom:691.866667pt;}
.ye_c00062{bottom:703.333333pt;}
.yd_c00062{bottom:704.000000pt;}
.y35_c00062{bottom:707.466667pt;}
.yc_c00062{bottom:723.466667pt;}
.y34_c00062{bottom:727.600000pt;}
.y33_c00062{bottom:743.600000pt;}
.yb_c00062{bottom:744.000000pt;}
.y32_c00062{bottom:759.333333pt;}
.ya_c00062{bottom:759.733333pt;}
.y31_c00062{bottom:775.333333pt;}
.y9_c00062{bottom:775.733333pt;}
.y8_c00062{bottom:794.533333pt;}
.y30_c00062{bottom:795.466667pt;}
.y7_c00062{bottom:811.200000pt;}
.y2f_c00062{bottom:811.466667pt;}
.y6_c00062{bottom:827.200000pt;}
.y5_c00062{bottom:842.933333pt;}
.y2e_c00062{bottom:862.933333pt;}
.y4_c00062{bottom:874.533333pt;}
.y2d_c00062{bottom:878.933333pt;}
.y2c_c00062{bottom:894.666667pt;}
.y3_c00062{bottom:908.133333pt;}
.y2b_c00062{bottom:910.666667pt;}
.y1_c00062{bottom:978.266667pt;}
.y2_c00062{bottom:1125.066667pt;}
.y56_c00062{bottom:1126.400000pt;}
.h3_c00062{height:26.666667pt;}
.h8_c00062{height:42.666667pt;}
.h6_c00062{height:53.333333pt;}
.h5_c00062{height:58.666667pt;}
.h7_c00062{height:64.000000pt;}
.h4_c00062{height:69.333333pt;}
.h2_c00062{height:208.000000pt;}
.h0_c00062{height:1129.280029pt;}
.h1_c00062{height:1129.333333pt;}
.w0_c00062{width:843.200032pt;}
.w1_c00062{width:843.333333pt;}
.x0_c00062{left:0.000000pt;}
.x61_c00062{left:56.000000pt;}
.x5c_c00062{left:56.933333pt;}
.x76_c00062{left:57.866667pt;}
.x73_c00062{left:60.800000pt;}
.x9_c00062{left:63.733333pt;}
.x80_c00062{left:72.400000pt;}
.x5d_c00062{left:73.866667pt;}
.x6d_c00062{left:76.800000pt;}
.x57_c00062{left:77.733333pt;}
.x4b_c00062{left:79.866667pt;}
.x36_c00062{left:81.333333pt;}
.x24_c00062{left:83.333333pt;}
.xf_c00062{left:85.066667pt;}
.x17_c00062{left:86.000000pt;}
.x7c_c00062{left:91.866667pt;}
.x81_c00062{left:94.800000pt;}
.x25_c00062{left:99.066667pt;}
.x47_c00062{left:100.133333pt;}
.x34_c00062{left:102.400000pt;}
.x1f_c00062{left:106.533333pt;}
.x66_c00062{left:114.266667pt;}
.x79_c00062{left:115.600000pt;}
.x1d_c00062{left:116.800000pt;}
.x77_c00062{left:126.933333pt;}
.x5_c00062{left:130.266667pt;}
.x62_c00062{left:131.200000pt;}
.x74_c00062{left:137.600000pt;}
.x72_c00062{left:138.533333pt;}
.x10_c00062{left:139.466667pt;}
.x7_c00062{left:141.066667pt;}
.x82_c00062{left:142.533333pt;}
.x50_c00062{left:145.200000pt;}
.x4c_c00062{left:146.533333pt;}
.x18_c00062{left:147.466667pt;}
.x37_c00062{left:149.200000pt;}
.x6e_c00062{left:151.333333pt;}
.x1e_c00062{left:153.333333pt;}
.x3e_c00062{left:154.533333pt;}
.x19_c00062{left:158.933333pt;}
.x68_c00062{left:161.600000pt;}
.x58_c00062{left:164.133333pt;}
.x38_c00062{left:165.466667pt;}
.x11_c00062{left:167.333333pt;}
.x3f_c00062{left:172.400000pt;}
.x75_c00062{left:173.733333pt;}
.x5e_c00062{left:176.000000pt;}
.x2e_c00062{left:177.066667pt;}
.x63_c00062{left:178.533333pt;}
.x20_c00062{left:179.466667pt;}
.x7a_c00062{left:180.533333pt;}
.x2b_c00062{left:181.866667pt;}
.xa_c00062{left:185.333333pt;}
.x83_c00062{left:188.266667pt;}
.x4e_c00062{left:190.266667pt;}
.x2f_c00062{left:192.533333pt;}
.x26_c00062{left:193.466667pt;}
.x6a_c00062{left:194.533333pt;}
.x39_c00062{left:195.600000pt;}
.x67_c00062{left:197.200000pt;}
.x4f_c00062{left:198.400000pt;}
.x4d_c00062{left:203.200000pt;}
.x48_c00062{left:206.666667pt;}
.x27_c00062{left:208.800000pt;}
.x3a_c00062{left:209.733333pt;}
.x40_c00062{left:211.066667pt;}
.x59_c00062{left:213.733333pt;}
.x1a_c00062{left:214.933333pt;}
.x51_c00062{left:215.866667pt;}
.x6f_c00062{left:217.600000pt;}
.xb_c00062{left:220.266667pt;}
.x12_c00062{left:224.000000pt;}
.x43_c00062{left:228.266667pt;}
.x41_c00062{left:232.533333pt;}
.x13_c00062{left:234.533333pt;}
.x30_c00062{left:237.600000pt;}
.x1_c00062{left:238.666667pt;}
.x1b_c00062{left:242.400000pt;}
.x21_c00062{left:243.466667pt;}
.x6_c00062{left:245.733333pt;}
.x45_c00062{left:246.800000pt;}
.x42_c00062{left:247.866667pt;}
.x6b_c00062{left:251.866667pt;}
.x46_c00062{left:255.466667pt;}
.x3b_c00062{left:257.466667pt;}
.x14_c00062{left:258.533333pt;}
.x31_c00062{left:261.333333pt;}
.x5a_c00062{left:264.000000pt;}
.x8_c00062{left:265.600000pt;}
.x3c_c00062{left:267.733333pt;}
.x52_c00062{left:268.666667pt;}
.x2c_c00062{left:269.600000pt;}
.x7b_c00062{left:270.800000pt;}
.x28_c00062{left:275.066667pt;}
.xc_c00062{left:278.133333pt;}
.x49_c00062{left:280.266667pt;}
.x53_c00062{left:283.066667pt;}
.x2d_c00062{left:284.000000pt;}
.x84_c00062{left:286.133333pt;}
.x6c_c00062{left:291.200000pt;}
.x44_c00062{left:294.800000pt;}
.x29_c00062{left:298.800000pt;}
.x5f_c00062{left:301.066667pt;}
.x69_c00062{left:302.666667pt;}
.x22_c00062{left:303.600000pt;}
.x1c_c00062{left:307.600000pt;}
.x7d_c00062{left:308.533333pt;}
.x54_c00062{left:310.000000pt;}
.x15_c00062{left:311.333333pt;}
.x64_c00062{left:313.066667pt;}
.x60_c00062{left:316.133333pt;}
.x55_c00062{left:318.666667pt;}
.x16_c00062{left:322.533333pt;}
.x32_c00062{left:326.666667pt;}
.x7e_c00062{left:327.733333pt;}
.x78_c00062{left:329.600000pt;}
.x3d_c00062{left:332.400000pt;}
.x65_c00062{left:336.400000pt;}
.x2a_c00062{left:339.066667pt;}
.x33_c00062{left:340.800000pt;}
.x5b_c00062{left:341.733333pt;}
.x35_c00062{left:344.000000pt;}
.x23_c00062{left:347.066667pt;}
.xd_c00062{left:350.133333pt;}
.x70_c00062{left:352.266667pt;}
.x4a_c00062{left:358.000000pt;}
.xe_c00062{left:363.200000pt;}
.x71_c00062{left:366.000000pt;}
.x7f_c00062{left:367.733333pt;}
.x85_c00062{left:374.133333pt;}
.x56_c00062{left:375.600000pt;}
.xeb_c00062{left:398.133333pt;}
.x9f_c00062{left:399.333333pt;}
.xf4_c00062{left:412.800000pt;}
.x92_c00062{left:414.266667pt;}
.x86_c00062{left:415.333333pt;}
.xfa_c00062{left:429.466667pt;}
.xa5_c00062{left:430.666667pt;}
.xcf_c00062{left:432.933333pt;}
.xac_c00062{left:433.866667pt;}
.x10f_c00062{left:439.600000pt;}
.xda_c00062{left:442.666667pt;}
.x101_c00062{left:443.866667pt;}
.xbd_c00062{left:446.133333pt;}
.xb6_c00062{left:448.000000pt;}
.xa6_c00062{left:449.200000pt;}
.x98_c00062{left:450.533333pt;}
.x87_c00062{left:454.000000pt;}
.xb4_c00062{left:455.066667pt;}
.xfc_c00062{left:456.133333pt;}
.xca_c00062{left:458.533333pt;}
.xb8_c00062{left:460.400000pt;}
.xa0_c00062{left:461.466667pt;}
.xa7_c00062{left:463.333333pt;}
.x8d_c00062{left:464.933333pt;}
.x93_c00062{left:466.400000pt;}
.xd3_c00062{left:467.466667pt;}
.xee_c00062{left:469.066667pt;}
.xd9_c00062{left:471.333333pt;}
.xd0_c00062{left:473.600000pt;}
.x102_c00062{left:475.200000pt;}
.xad_c00062{left:476.400000pt;}
.x108_c00062{left:479.200000pt;}
.xe5_c00062{left:482.000000pt;}
.xd4_c00062{left:483.466667pt;}
.xbe_c00062{left:486.800000pt;}
.xff_c00062{left:488.400000pt;}
.xf6_c00062{left:490.400000pt;}
.xb7_c00062{left:491.866667pt;}
.x88_c00062{left:493.733333pt;}
.x8e_c00062{left:495.333333pt;}
.xdb_c00062{left:496.800000pt;}
.xec_c00062{left:498.000000pt;}
.xe1_c00062{left:499.200000pt;}
.xbf_c00062{left:500.933333pt;}
.xe8_c00062{left:504.133333pt;}
.x99_c00062{left:506.533333pt;}
.xae_c00062{left:509.333333pt;}
.xf7_c00062{left:510.933333pt;}
.xdc_c00062{left:513.466667pt;}
.x89_c00062{left:516.400000pt;}
.xe9_c00062{left:518.533333pt;}
.xf8_c00062{left:519.733333pt;}
.x110_c00062{left:520.933333pt;}
.xa1_c00062{left:522.933333pt;}
.x2_c00062{left:524.800000pt;}
.xb9_c00062{left:528.000000pt;}
.xa8_c00062{left:530.533333pt;}
.xa2_c00062{left:532.266667pt;}
.xc6_c00062{left:533.733333pt;}
.x9a_c00062{left:535.600000pt;}
.xcb_c00062{left:539.200000pt;}
.xd5_c00062{left:541.333333pt;}
.x8a_c00062{left:542.933333pt;}
.x9b_c00062{left:544.533333pt;}
.xea_c00062{left:545.733333pt;}
.x94_c00062{left:548.933333pt;}
.xed_c00062{left:551.066667pt;}
.xd1_c00062{left:552.000000pt;}
.xc0_c00062{left:554.666667pt;}
.x10b_c00062{left:556.266667pt;}
.x107_c00062{left:557.866667pt;}
.x9c_c00062{left:559.200000pt;}
.xdd_c00062{left:560.800000pt;}
.xc1_c00062{left:562.666667pt;}
.xb5_c00062{left:564.800000pt;}
.xc7_c00062{left:565.733333pt;}
.xba_c00062{left:566.666667pt;}
.x100_c00062{left:568.400000pt;}
.xa9_c00062{left:569.866667pt;}
.xfb_c00062{left:571.200000pt;}
.x112_c00062{left:572.400000pt;}
.x10c_c00062{left:573.600000pt;}
.x103_c00062{left:577.333333pt;}
.x8f_c00062{left:578.800000pt;}
.xde_c00062{left:580.666667pt;}
.x104_c00062{left:584.400000pt;}
.xf1_c00062{left:585.333333pt;}
.x3_c00062{left:587.200000pt;}
.x9d_c00062{left:589.866667pt;}
.xf9_c00062{left:591.066667pt;}
.xc8_c00062{left:592.266667pt;}
.x95_c00062{left:594.000000pt;}
.x4_c00062{left:597.066667pt;}
.xf5_c00062{left:598.400000pt;}
.xd6_c00062{left:600.533333pt;}
.xaf_c00062{left:602.533333pt;}
.xcc_c00062{left:603.466667pt;}
.xef_c00062{left:607.600000pt;}
.xbb_c00062{left:608.533333pt;}
.xfd_c00062{left:609.466667pt;}
.xc9_c00062{left:611.466667pt;}
.xe4_c00062{left:612.800000pt;}
.xc2_c00062{left:614.133333pt;}
.xcd_c00062{left:615.333333pt;}
.xa3_c00062{left:616.400000pt;}
.x90_c00062{left:618.133333pt;}
.xb0_c00062{left:619.200000pt;}
.xe2_c00062{left:620.800000pt;}
.xe6_c00062{left:621.733333pt;}
.x8b_c00062{left:622.933333pt;}
.xd7_c00062{left:625.466667pt;}
.x109_c00062{left:626.800000pt;}
.xdf_c00062{left:628.400000pt;}
.xbc_c00062{left:632.266667pt;}
.xd2_c00062{left:633.600000pt;}
.x96_c00062{left:634.666667pt;}
.xa4_c00062{left:636.933333pt;}
.xb1_c00062{left:638.666667pt;}
.xaa_c00062{left:639.600000pt;}
.xc3_c00062{left:642.266667pt;}
.xe7_c00062{left:647.333333pt;}
.x91_c00062{left:649.466667pt;}
.xc4_c00062{left:651.200000pt;}
.x9e_c00062{left:652.266667pt;}
.x10d_c00062{left:654.933333pt;}
.x97_c00062{left:656.400000pt;}
.xf2_c00062{left:658.933333pt;}
.x106_c00062{left:660.533333pt;}
.x105_c00062{left:661.600000pt;}
.xab_c00062{left:663.600000pt;}
.x111_c00062{left:666.133333pt;}
.x10e_c00062{left:667.066667pt;}
.x8c_c00062{left:670.933333pt;}
.xe3_c00062{left:673.600000pt;}
.xfe_c00062{left:674.933333pt;}
.xe0_c00062{left:677.333333pt;}
.xd8_c00062{left:678.933333pt;}
.xb2_c00062{left:681.600000pt;}
.xf3_c00062{left:683.866667pt;}
.xce_c00062{left:686.400000pt;}
.xf0_c00062{left:688.533333pt;}
.xc5_c00062{left:690.266667pt;}
.xb3_c00062{left:691.200000pt;}
.x10a_c00062{left:693.066667pt;}
.x113_c00062{left:708.533333pt;}
.x114_c00062{left:719.466667pt;}
}





/* 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_c00063 {
    display:none;
  }
  .loading-indicator_c00063.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00063 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_c00063 { 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_c00063" -> "#page-container .classname_c00063")
 */
.pf_c00063 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00063 { /* 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_c00063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00063 { /* 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_c00063 { /* 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_c00063 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00063 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00063 {overflow:visible;}
  }
}
.c_c00063 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00063 { /* 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_c00063:after { /* webkit #35443 */
  content: '';
}
.t_c00063:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00063 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 */
}
.__c00063 { /* 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_c00063 { /* info for Javascript */
  display:none;
}
.l_c00063 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00063 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00063 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00063: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_c00063 {
    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_c00063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00063.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_c00063 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00063;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.000000;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;}
.mb0_c00063{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m75_c00063{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00063{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mca_c00063{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00063{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m76_c00063{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00063{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m81_c00063{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m77_c00063{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m33_c00063{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m24_c00063{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m80_c00063{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m83_c00063{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00063{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00063{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m37_c00063{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m0_c00063{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00063{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m42_c00063{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md9_c00063{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.maf_c00063{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m104_c00063{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m106_c00063{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00063{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c00063{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m101_c00063{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00063{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m107_c00063{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00063{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00063{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00063{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00063{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m28_c00063{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00063{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00063{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00063{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m74_c00063{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mba_c00063{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m91_c00063{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00063{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00063{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m98_c00063{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00063{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m70_c00063{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mef_c00063{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00063{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m115_c00063{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00063{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00063{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m93_c00063{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00063{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00063{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00063{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00063{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m103_c00063{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m99_c00063{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mce_c00063{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.ma_c00063{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m108_c00063{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mff_c00063{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m117_c00063{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m96_c00063{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m97_c00063{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00063{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m102_c00063{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m41_c00063{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00063{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mee_c00063{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00063{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m20_c00063{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00063{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m67_c00063{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md8_c00063{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00063{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00063{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00063{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00063{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00063{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00063{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m105_c00063{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me9_c00063{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m49_c00063{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m30_c00063{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00063{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m43_c00063{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md0_c00063{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00063{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m109_c00063{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00063{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me_c00063{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m47_c00063{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m90_c00063{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00063{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m44_c00063{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m60_c00063{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00063{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m21_c00063{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00063{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00063{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m64_c00063{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00063{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mad_c00063{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00063{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00063{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mae_c00063{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00063{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m59_c00063{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mab_c00063{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m22_c00063{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m116_c00063{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.md7_c00063{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m119_c00063{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00063{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00063{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00063{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00063{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00063{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00063{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m10_c00063{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m31_c00063{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m114_c00063{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9_c00063{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m85_c00063{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00063{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m50_c00063{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00063{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m17_c00063{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m23_c00063{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00063{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m79_c00063{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m25_c00063{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00063{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m56_c00063{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00063{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m32_c00063{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00063{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me6_c00063{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00063{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00063{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mea_c00063{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m57_c00063{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00063{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00063{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m13_c00063{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00063{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00063{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m63_c00063{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb_c00063{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00063{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m94_c00063{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m29_c00063{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00063{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mde_c00063{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00063{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m87_c00063{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00063{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m48_c00063{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00063{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00063{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m88_c00063{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m65_c00063{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m16_c00063{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00063{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.md3_c00063{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me5_c00063{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m95_c00063{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m14_c00063{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m34_c00063{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00063{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00063{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m15_c00063{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mf_c00063{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mac_c00063{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me8_c00063{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00063{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.md2_c00063{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m40_c00063{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m84_c00063{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00063{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00063{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m27_c00063{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m89_c00063{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00063{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me7_c00063{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00063{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m62_c00063{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m38_c00063{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m11_c00063{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m78_c00063{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md6_c00063{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me2_c00063{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m82_c00063{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m18_c00063{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m12_c00063{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00063{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8_c00063{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00063{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00063{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00063{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00063{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00063{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00063{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m72_c00063{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00063{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m55_c00063{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);}
.m110_c00063{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00063{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m52_c00063{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m73_c00063{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m35_c00063{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m69_c00063{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7_c00063{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00063{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.maa_c00063{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m51_c00063{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00063{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00063{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m61_c00063{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m68_c00063{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m71_c00063{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc_c00063{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00063{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00063{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00063{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.me0_c00063{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00063{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00063{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00063{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m58_c00063{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00063{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00063{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.med_c00063{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00063{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m26_c00063{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m118_c00063{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m3_c00063{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m36_c00063{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00063{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m92_c00063{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00063{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.md4_c00063{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00063{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m45_c00063{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.meb_c00063{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00063{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m19_c00063{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m113_c00063{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00063{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m86_c00063{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md1_c00063{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m6_c00063{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00063{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m54_c00063{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m66_c00063{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00063{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.md5_c00063{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m39_c00063{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m112_c00063{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m2_c00063{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00063{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m111_c00063{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00063{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00063{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00063{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00063{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m100_c00063{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00063{transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00063{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m53_c00063{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m4_c00063{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00063{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me4_c00063{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00063{transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);}
.m46_c00063{transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00063{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mec_c00063{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00063{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.mda_c00063{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.me3_c00063{transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);}
.me1_c00063{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00063{transform:matrix(0.461750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00063{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00063{transform:matrix(0.483000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00063{transform:matrix(0.508250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00063{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls0_c00063{letter-spacing:0.000000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{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__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00063{word-spacing:-18.094862px;}
.wsd_c00063{word-spacing:-11.315789px;}
.ws2_c00063{word-spacing:-4.676856px;}
.ws6_c00063{word-spacing:-0.277778px;}
.wse_c00063{word-spacing:0.000000px;}
.ws0_c00063{word-spacing:10.088617px;}
.wsc_c00063{word-spacing:44.687500px;}
.ws5_c00063{word-spacing:84.750000px;}
.ws9_c00063{word-spacing:108.222222px;}
.wsa_c00063{word-spacing:201.000000px;}
.wsb_c00063{word-spacing:425.416667px;}
.ws4_c00063{word-spacing:509.002681px;}
.ws3_c00063{word-spacing:640.000000px;}
.ws8_c00063{word-spacing:646.000000px;}
.ws7_c00063{word-spacing:1550.793893px;}
._0_c00063{width:849.166667px;}
.fc0_c00063{color:transparent;}
.fs5_c00063{font-size:24.000000px;}
.fs6_c00063{font-size:42.000000px;}
.fs4_c00063{font-size:54.000000px;}
.fs1_c00063{font-size:60.000000px;}
.fs2_c00063{font-size:66.000000px;}
.fs3_c00063{font-size:72.000000px;}
.fs0_c00063{font-size:120.000000px;}
.y0_c00063{bottom:0.000000px;}
.y43_c00063{bottom:182.550000px;}
.y42_c00063{bottom:208.050000px;}
.y41_c00063{bottom:226.800000px;}
.y40_c00063{bottom:244.350000px;}
.y3f_c00063{bottom:254.100000px;}
.y3e_c00063{bottom:268.950000px;}
.y3d_c00063{bottom:288.000000px;}
.y3c_c00063{bottom:300.600000px;}
.y3b_c00063{bottom:307.050000px;}
.y3a_c00063{bottom:339.450000px;}
.y39_c00063{bottom:362.850000px;}
.y38_c00063{bottom:370.800000px;}
.y37_c00063{bottom:379.500000px;}
.y35_c00063{bottom:393.450000px;}
.y36_c00063{bottom:406.050000px;}
.y34_c00063{bottom:415.050000px;}
.y33_c00063{bottom:433.050000px;}
.y32_c00063{bottom:446.400000px;}
.y31_c00063{bottom:469.500000px;}
.y30_c00063{bottom:494.700000px;}
.y2f_c00063{bottom:512.550000px;}
.y2e_c00063{bottom:527.700000px;}
.y2d_c00063{bottom:535.050000px;}
.y2c_c00063{bottom:549.750000px;}
.y2b_c00063{bottom:556.950000px;}
.y2a_c00063{bottom:575.250000px;}
.y29_c00063{bottom:597.450000px;}
.y28_c00063{bottom:615.150000px;}
.y27_c00063{bottom:623.850000px;}
.y26_c00063{bottom:630.300000px;}
.y25_c00063{bottom:637.500000px;}
.y24_c00063{bottom:655.500000px;}
.y23_c00063{bottom:673.500000px;}
.y22_c00063{bottom:695.550000px;}
.y20_c00063{bottom:700.650000px;}
.y21_c00063{bottom:703.950000px;}
.y1f_c00063{bottom:713.550000px;}
.y1e_c00063{bottom:742.950000px;}
.y1d_c00063{bottom:771.450000px;}
.y1a_c00063{bottom:785.100000px;}
.y1c_c00063{bottom:789.450000px;}
.y19_c00063{bottom:803.100000px;}
.y1b_c00063{bottom:807.150000px;}
.y18_c00063{bottom:820.800000px;}
.y17_c00063{bottom:837.750000px;}
.y16_c00063{bottom:838.500000px;}
.y15_c00063{bottom:847.500000px;}
.y14_c00063{bottom:861.150000px;}
.y13_c00063{bottom:869.400000px;}
.y12_c00063{bottom:879.150000px;}
.y11_c00063{bottom:891.750000px;}
.y10_c00063{bottom:905.100000px;}
.yf_c00063{bottom:909.750000px;}
.ye_c00063{bottom:919.500000px;}
.yd_c00063{bottom:936.750000px;}
.yc_c00063{bottom:954.450000px;}
.yb_c00063{bottom:976.350000px;}
.ya_c00063{bottom:994.350000px;}
.y9_c00063{bottom:1011.600000px;}
.y8_c00063{bottom:1033.950000px;}
.y7_c00063{bottom:1047.300000px;}
.y6_c00063{bottom:1051.500000px;}
.y5_c00063{bottom:1069.200000px;}
.y4_c00063{bottom:1091.550000px;}
.y3_c00063{bottom:1109.250000px;}
.y2_c00063{bottom:1127.550000px;}
.y1_c00063{bottom:1154.100000px;}
.h7_c00063{height:24.000000px;}
.h8_c00063{height:42.000000px;}
.h6_c00063{height:54.000000px;}
.h3_c00063{height:60.000000px;}
.h4_c00063{height:66.000000px;}
.h5_c00063{height:72.000000px;}
.h2_c00063{height:120.000000px;}
.h0_c00063{height:1279.439941px;}
.h1_c00063{height:1279.500000px;}
.w0_c00063{width:948.600036px;}
.w1_c00063{width:948.750000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:175.650000px;}
.x25_c00063{left:178.500000px;}
.x75_c00063{left:180.900000px;}
.x116_c00063{left:190.200000px;}
.xfd_c00063{left:195.450000px;}
.x13_c00063{left:197.250000px;}
.x31_c00063{left:199.050000px;}
.x9f_c00063{left:202.350000px;}
.x110_c00063{left:210.450000px;}
.x104_c00063{left:213.300000px;}
.x4_c00063{left:215.700000px;}
.x83_c00063{left:216.750000px;}
.xcd_c00063{left:218.100000px;}
.x42_c00063{left:221.100000px;}
.x112_c00063{left:222.900000px;}
.x8a_c00063{left:225.300000px;}
.x85_c00063{left:229.650000px;}
.x14_c00063{left:231.750000px;}
.x1c_c00063{left:237.150000px;}
.x7c_c00063{left:238.950000px;}
.x5c_c00063{left:240.000000px;}
.xce_c00063{left:241.500000px;}
.x5_c00063{left:242.700000px;}
.x53_c00063{left:244.050000px;}
.x7d_c00063{left:247.200000px;}
.x109_c00063{left:248.850000px;}
.x4d_c00063{left:249.900000px;}
.x84_c00063{left:250.950000px;}
.x26_c00063{left:252.300000px;}
.x86_c00063{left:257.250000px;}
.x60_c00063{left:260.250000px;}
.xcf_c00063{left:261.300000px;}
.x32_c00063{left:263.100000px;}
.x34_c00063{left:264.150000px;}
.xf8_c00063{left:267.000000px;}
.xbf_c00063{left:269.100000px;}
.x5d_c00063{left:273.450000px;}
.xf1_c00063{left:276.150000px;}
.xc3_c00063{left:279.000000px;}
.x4e_c00063{left:280.500000px;}
.x43_c00063{left:281.550000px;}
.x56_c00063{left:284.700000px;}
.x15_c00063{left:286.050000px;}
.x69_c00063{left:287.700000px;}
.xb0_c00063{left:291.000000px;}
.x44_c00063{left:293.850000px;}
.xa5_c00063{left:294.900000px;}
.x6_c00063{left:295.950000px;}
.xb7_c00063{left:297.300000px;}
.x76_c00063{left:298.650000px;}
.xe1_c00063{left:301.350000px;}
.x6d_c00063{left:303.450000px;}
.x2_c00063{left:309.900000px;}
.xd0_c00063{left:312.300000px;}
.x105_c00063{left:313.800000px;}
.x61_c00063{left:315.000000px;}
.x113_c00063{left:318.300000px;}
.xb8_c00063{left:321.000000px;}
.x27_c00063{left:322.500000px;}
.xc4_c00063{left:325.050000px;}
.x87_c00063{left:327.000000px;}
.xe8_c00063{left:331.350000px;}
.x7_c00063{left:333.750000px;}
.x6e_c00063{left:335.550000px;}
.x8b_c00063{left:336.600000px;}
.xaf_c00063{left:337.650000px;}
.x4f_c00063{left:339.600000px;}
.xd9_c00063{left:341.250000px;}
.x16_c00063{left:342.600000px;}
.xd3_c00063{left:344.250000px;}
.x6f_c00063{left:346.350000px;}
.x28_c00063{left:349.200000px;}
.x8f_c00063{left:351.000000px;}
.xf9_c00063{left:352.650000px;}
.x117_c00063{left:353.700000px;}
.x35_c00063{left:355.950000px;}
.x8c_c00063{left:361.800000px;}
.xb9_c00063{left:363.150000px;}
.x9d_c00063{left:364.200000px;}
.x50_c00063{left:366.300000px;}
.x36_c00063{left:367.800000px;}
.x29_c00063{left:370.800000px;}
.x51_c00063{left:378.600000px;}
.x77_c00063{left:379.950000px;}
.xa3_c00063{left:382.350000px;}
.xfa_c00063{left:383.550000px;}
.x5e_c00063{left:385.350000px;}
.x88_c00063{left:386.400000px;}
.xc5_c00063{left:388.350000px;}
.x57_c00063{left:389.400000px;}
.x78_c00063{left:391.050000px;}
.xfe_c00063{left:393.750000px;}
.x7e_c00063{left:395.100000px;}
.xc0_c00063{left:396.450000px;}
.x114_c00063{left:399.000000px;}
.xa0_c00063{left:401.400000px;}
.xda_c00063{left:403.950000px;}
.x90_c00063{left:406.050000px;}
.x8_c00063{left:408.300000px;}
.xba_c00063{left:414.300000px;}
.x8d_c00063{left:416.850000px;}
.xff_c00063{left:418.200000px;}
.xe9_c00063{left:424.650000px;}
.x3_c00063{left:425.850000px;}
.xf2_c00063{left:427.050000px;}
.x8e_c00063{left:430.500000px;}
.xb1_c00063{left:432.150000px;}
.x10a_c00063{left:433.650000px;}
.xc1_c00063{left:435.000000px;}
.xe0_c00063{left:436.800000px;}
.x45_c00063{left:438.150000px;}
.x58_c00063{left:439.500000px;}
.x2a_c00063{left:441.300000px;}
.x10b_c00063{left:442.950000px;}
.x9_c00063{left:444.300000px;}
.x79_c00063{left:448.650000px;}
.xc2_c00063{left:451.500000px;}
.x89_c00063{left:454.500000px;}
.xb2_c00063{left:456.600000px;}
.x52_c00063{left:459.300000px;}
.x37_c00063{left:462.900000px;}
.xa6_c00063{left:464.700000px;}
.x46_c00063{left:465.900000px;}
.x62_c00063{left:467.250000px;}
.x17_c00063{left:468.900000px;}
.xd1_c00063{left:471.150000px;}
.x7a_c00063{left:472.350000px;}
.x59_c00063{left:477.600000px;}
.xbb_c00063{left:478.800000px;}
.xb3_c00063{left:480.300000px;}
.x111_c00063{left:482.850000px;}
.xea_c00063{left:485.250000px;}
.x2b_c00063{left:488.850000px;}
.x100_c00063{left:490.950000px;}
.xa7_c00063{left:492.750000px;}
.x91_c00063{left:495.300000px;}
.xf3_c00063{left:505.500000px;}
.x63_c00063{left:506.550000px;}
.x2c_c00063{left:507.600000px;}
.x7b_c00063{left:524.250000px;}
.xd4_c00063{left:536.700000px;}
.x1d_c00063{left:538.050000px;}
.xfb_c00063{left:541.950000px;}
.xac_c00063{left:543.000000px;}
.xc7_c00063{left:554.700000px;}
.xa_c00063{left:556.200000px;}
.x9c_c00063{left:557.250000px;}
.x101_c00063{left:561.450000px;}
.xc9_c00063{left:572.400000px;}
.x64_c00063{left:573.900000px;}
.x5f_c00063{left:575.400000px;}
.xb_c00063{left:580.650000px;}
.xd8_c00063{left:583.200000px;}
.x38_c00063{left:584.550000px;}
.x70_c00063{left:587.700000px;}
.x106_c00063{left:590.250000px;}
.x6a_c00063{left:592.950000px;}
.x102_c00063{left:597.450000px;}
.x39_c00063{left:598.950000px;}
.xb4_c00063{left:600.900000px;}
.xc_c00063{left:603.000000px;}
.x1e_c00063{left:605.400000px;}
.xd5_c00063{left:606.900000px;}
.x92_c00063{left:607.950000px;}
.x6b_c00063{left:609.450000px;}
.x71_c00063{left:611.100000px;}
.x115_c00063{left:615.000000px;}
.x3a_c00063{left:616.200000px;}
.x65_c00063{left:617.850000px;}
.x98_c00063{left:618.900000px;}
.xc6_c00063{left:620.100000px;}
.x2d_c00063{left:621.750000px;}
.x5a_c00063{left:623.850000px;}
.x7f_c00063{left:624.900000px;}
.x18_c00063{left:628.050000px;}
.x3b_c00063{left:632.100000px;}
.x1f_c00063{left:633.450000px;}
.x47_c00063{left:635.400000px;}
.x2e_c00063{left:639.000000px;}
.xad_c00063{left:640.500000px;}
.x54_c00063{left:642.150000px;}
.xdb_c00063{left:645.150000px;}
.xd2_c00063{left:646.800000px;}
.x48_c00063{left:650.850000px;}
.x3c_c00063{left:651.900000px;}
.x72_c00063{left:655.800000px;}
.xd_c00063{left:658.050000px;}
.x2f_c00063{left:659.100000px;}
.x107_c00063{left:660.450000px;}
.x93_c00063{left:662.250000px;}
.xe5_c00063{left:663.450000px;}
.x33_c00063{left:667.050000px;}
.x66_c00063{left:669.000000px;}
.xa4_c00063{left:670.650000px;}
.xfc_c00063{left:671.850000px;}
.xe2_c00063{left:674.400000px;}
.x3d_c00063{left:678.600000px;}
.xeb_c00063{left:679.650000px;}
.x49_c00063{left:681.150000px;}
.xe_c00063{left:682.950000px;}
.x10e_c00063{left:684.150000px;}
.x94_c00063{left:685.350000px;}
.x5b_c00063{left:686.850000px;}
.xb5_c00063{left:688.050000px;}
.x99_c00063{left:689.100000px;}
.x80_c00063{left:691.500000px;}
.x19_c00063{left:692.550000px;}
.x20_c00063{left:694.350000px;}
.xd6_c00063{left:696.600000px;}
.x4a_c00063{left:698.400000px;}
.xa1_c00063{left:701.700000px;}
.xf_c00063{left:703.050000px;}
.xe6_c00063{left:704.850000px;}
.xdc_c00063{left:706.500000px;}
.x81_c00063{left:708.750000px;}
.xec_c00063{left:709.800000px;}
.x9a_c00063{left:711.450000px;}
.x30_c00063{left:712.800000px;}
.x4b_c00063{left:713.850000px;}
.xbc_c00063{left:715.350000px;}
.xa8_c00063{left:716.550000px;}
.xca_c00063{left:717.750000px;}
.x1a_c00063{left:718.800000px;}
.xdd_c00063{left:721.200000px;}
.x10_c00063{left:723.600000px;}
.x10f_c00063{left:725.250000px;}
.x67_c00063{left:726.900000px;}
.x10c_c00063{left:729.300000px;}
.x9e_c00063{left:732.450000px;}
.x3e_c00063{left:734.700000px;}
.xcb_c00063{left:735.750000px;}
.xde_c00063{left:737.100000px;}
.xa9_c00063{left:738.450000px;}
.xe4_c00063{left:739.950000px;}
.x4c_c00063{left:741.900000px;}
.x95_c00063{left:744.750000px;}
.xd7_c00063{left:746.700000px;}
.x73_c00063{left:748.950000px;}
.x21_c00063{left:750.150000px;}
.xdf_c00063{left:751.500000px;}
.x103_c00063{left:754.350000px;}
.x10d_c00063{left:757.350000px;}
.x1b_c00063{left:759.150000px;}
.xcc_c00063{left:760.950000px;}
.xe3_c00063{left:764.400000px;}
.xbd_c00063{left:768.300000px;}
.x74_c00063{left:769.500000px;}
.x22_c00063{left:771.000000px;}
.x3f_c00063{left:772.200000px;}
.xf4_c00063{left:779.100000px;}
.x82_c00063{left:781.050000px;}
.x40_c00063{left:783.750000px;}
.x11_c00063{left:785.550000px;}
.xaa_c00063{left:789.900000px;}
.xae_c00063{left:794.250000px;}
.xb6_c00063{left:795.450000px;}
.x6c_c00063{left:800.250000px;}
.xed_c00063{left:802.350000px;}
.xe7_c00063{left:805.950000px;}
.xc8_c00063{left:811.500000px;}
.x96_c00063{left:813.150000px;}
.x41_c00063{left:814.800000px;}
.xab_c00063{left:822.000000px;}
.x55_c00063{left:826.500000px;}
.x68_c00063{left:831.600000px;}
.xbe_c00063{left:832.800000px;}
.xee_c00063{left:834.450000px;}
.xf5_c00063{left:835.950000px;}
.x118_c00063{left:840.600000px;}
.x12_c00063{left:841.650000px;}
.xef_c00063{left:844.200000px;}
.xf6_c00063{left:845.250000px;}
.x97_c00063{left:847.350000px;}
.x23_c00063{left:854.550000px;}
.xa2_c00063{left:857.550000px;}
.xf0_c00063{left:861.150000px;}
.x9b_c00063{left:862.200000px;}
.x24_c00063{left:863.850000px;}
.xf7_c00063{left:872.550000px;}
.x108_c00063{left:875.250000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws1_c00063{word-spacing:-16.084321pt;}
.wsd_c00063{word-spacing:-10.058480pt;}
.ws2_c00063{word-spacing:-4.157205pt;}
.ws6_c00063{word-spacing:-0.246914pt;}
.wse_c00063{word-spacing:0.000000pt;}
.ws0_c00063{word-spacing:8.967660pt;}
.wsc_c00063{word-spacing:39.722222pt;}
.ws5_c00063{word-spacing:75.333333pt;}
.ws9_c00063{word-spacing:96.197531pt;}
.wsa_c00063{word-spacing:178.666667pt;}
.wsb_c00063{word-spacing:378.148148pt;}
.ws4_c00063{word-spacing:452.446828pt;}
.ws3_c00063{word-spacing:568.888889pt;}
.ws8_c00063{word-spacing:574.222222pt;}
.ws7_c00063{word-spacing:1378.483461pt;}
._0_c00063{width:754.814815pt;}
.fs5_c00063{font-size:21.333333pt;}
.fs6_c00063{font-size:37.333333pt;}
.fs4_c00063{font-size:48.000000pt;}
.fs1_c00063{font-size:53.333333pt;}
.fs2_c00063{font-size:58.666667pt;}
.fs3_c00063{font-size:64.000000pt;}
.fs0_c00063{font-size:106.666667pt;}
.y0_c00063{bottom:0.000000pt;}
.y43_c00063{bottom:162.266667pt;}
.y42_c00063{bottom:184.933333pt;}
.y41_c00063{bottom:201.600000pt;}
.y40_c00063{bottom:217.200000pt;}
.y3f_c00063{bottom:225.866667pt;}
.y3e_c00063{bottom:239.066667pt;}
.y3d_c00063{bottom:256.000000pt;}
.y3c_c00063{bottom:267.200000pt;}
.y3b_c00063{bottom:272.933333pt;}
.y3a_c00063{bottom:301.733333pt;}
.y39_c00063{bottom:322.533333pt;}
.y38_c00063{bottom:329.600000pt;}
.y37_c00063{bottom:337.333333pt;}
.y35_c00063{bottom:349.733333pt;}
.y36_c00063{bottom:360.933333pt;}
.y34_c00063{bottom:368.933333pt;}
.y33_c00063{bottom:384.933333pt;}
.y32_c00063{bottom:396.800000pt;}
.y31_c00063{bottom:417.333333pt;}
.y30_c00063{bottom:439.733333pt;}
.y2f_c00063{bottom:455.600000pt;}
.y2e_c00063{bottom:469.066667pt;}
.y2d_c00063{bottom:475.600000pt;}
.y2c_c00063{bottom:488.666667pt;}
.y2b_c00063{bottom:495.066667pt;}
.y2a_c00063{bottom:511.333333pt;}
.y29_c00063{bottom:531.066667pt;}
.y28_c00063{bottom:546.800000pt;}
.y27_c00063{bottom:554.533333pt;}
.y26_c00063{bottom:560.266667pt;}
.y25_c00063{bottom:566.666667pt;}
.y24_c00063{bottom:582.666667pt;}
.y23_c00063{bottom:598.666667pt;}
.y22_c00063{bottom:618.266667pt;}
.y20_c00063{bottom:622.800000pt;}
.y21_c00063{bottom:625.733333pt;}
.y1f_c00063{bottom:634.266667pt;}
.y1e_c00063{bottom:660.400000pt;}
.y1d_c00063{bottom:685.733333pt;}
.y1a_c00063{bottom:697.866667pt;}
.y1c_c00063{bottom:701.733333pt;}
.y19_c00063{bottom:713.866667pt;}
.y1b_c00063{bottom:717.466667pt;}
.y18_c00063{bottom:729.600000pt;}
.y17_c00063{bottom:744.666667pt;}
.y16_c00063{bottom:745.333333pt;}
.y15_c00063{bottom:753.333333pt;}
.y14_c00063{bottom:765.466667pt;}
.y13_c00063{bottom:772.800000pt;}
.y12_c00063{bottom:781.466667pt;}
.y11_c00063{bottom:792.666667pt;}
.y10_c00063{bottom:804.533333pt;}
.yf_c00063{bottom:808.666667pt;}
.ye_c00063{bottom:817.333333pt;}
.yd_c00063{bottom:832.666667pt;}
.yc_c00063{bottom:848.400000pt;}
.yb_c00063{bottom:867.866667pt;}
.ya_c00063{bottom:883.866667pt;}
.y9_c00063{bottom:899.200000pt;}
.y8_c00063{bottom:919.066667pt;}
.y7_c00063{bottom:930.933333pt;}
.y6_c00063{bottom:934.666667pt;}
.y5_c00063{bottom:950.400000pt;}
.y4_c00063{bottom:970.266667pt;}
.y3_c00063{bottom:986.000000pt;}
.y2_c00063{bottom:1002.266667pt;}
.y1_c00063{bottom:1025.866667pt;}
.h7_c00063{height:21.333333pt;}
.h8_c00063{height:37.333333pt;}
.h6_c00063{height:48.000000pt;}
.h3_c00063{height:53.333333pt;}
.h4_c00063{height:58.666667pt;}
.h5_c00063{height:64.000000pt;}
.h2_c00063{height:106.666667pt;}
.h0_c00063{height:1137.279948pt;}
.h1_c00063{height:1137.333333pt;}
.w0_c00063{width:843.200032pt;}
.w1_c00063{width:843.333333pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:156.133333pt;}
.x25_c00063{left:158.666667pt;}
.x75_c00063{left:160.800000pt;}
.x116_c00063{left:169.066667pt;}
.xfd_c00063{left:173.733333pt;}
.x13_c00063{left:175.333333pt;}
.x31_c00063{left:176.933333pt;}
.x9f_c00063{left:179.866667pt;}
.x110_c00063{left:187.066667pt;}
.x104_c00063{left:189.600000pt;}
.x4_c00063{left:191.733333pt;}
.x83_c00063{left:192.666667pt;}
.xcd_c00063{left:193.866667pt;}
.x42_c00063{left:196.533333pt;}
.x112_c00063{left:198.133333pt;}
.x8a_c00063{left:200.266667pt;}
.x85_c00063{left:204.133333pt;}
.x14_c00063{left:206.000000pt;}
.x1c_c00063{left:210.800000pt;}
.x7c_c00063{left:212.400000pt;}
.x5c_c00063{left:213.333333pt;}
.xce_c00063{left:214.666667pt;}
.x5_c00063{left:215.733333pt;}
.x53_c00063{left:216.933333pt;}
.x7d_c00063{left:219.733333pt;}
.x109_c00063{left:221.200000pt;}
.x4d_c00063{left:222.133333pt;}
.x84_c00063{left:223.066667pt;}
.x26_c00063{left:224.266667pt;}
.x86_c00063{left:228.666667pt;}
.x60_c00063{left:231.333333pt;}
.xcf_c00063{left:232.266667pt;}
.x32_c00063{left:233.866667pt;}
.x34_c00063{left:234.800000pt;}
.xf8_c00063{left:237.333333pt;}
.xbf_c00063{left:239.200000pt;}
.x5d_c00063{left:243.066667pt;}
.xf1_c00063{left:245.466667pt;}
.xc3_c00063{left:248.000000pt;}
.x4e_c00063{left:249.333333pt;}
.x43_c00063{left:250.266667pt;}
.x56_c00063{left:253.066667pt;}
.x15_c00063{left:254.266667pt;}
.x69_c00063{left:255.733333pt;}
.xb0_c00063{left:258.666667pt;}
.x44_c00063{left:261.200000pt;}
.xa5_c00063{left:262.133333pt;}
.x6_c00063{left:263.066667pt;}
.xb7_c00063{left:264.266667pt;}
.x76_c00063{left:265.466667pt;}
.xe1_c00063{left:267.866667pt;}
.x6d_c00063{left:269.733333pt;}
.x2_c00063{left:275.466667pt;}
.xd0_c00063{left:277.600000pt;}
.x105_c00063{left:278.933333pt;}
.x61_c00063{left:280.000000pt;}
.x113_c00063{left:282.933333pt;}
.xb8_c00063{left:285.333333pt;}
.x27_c00063{left:286.666667pt;}
.xc4_c00063{left:288.933333pt;}
.x87_c00063{left:290.666667pt;}
.xe8_c00063{left:294.533333pt;}
.x7_c00063{left:296.666667pt;}
.x6e_c00063{left:298.266667pt;}
.x8b_c00063{left:299.200000pt;}
.xaf_c00063{left:300.133333pt;}
.x4f_c00063{left:301.866667pt;}
.xd9_c00063{left:303.333333pt;}
.x16_c00063{left:304.533333pt;}
.xd3_c00063{left:306.000000pt;}
.x6f_c00063{left:307.866667pt;}
.x28_c00063{left:310.400000pt;}
.x8f_c00063{left:312.000000pt;}
.xf9_c00063{left:313.466667pt;}
.x117_c00063{left:314.400000pt;}
.x35_c00063{left:316.400000pt;}
.x8c_c00063{left:321.600000pt;}
.xb9_c00063{left:322.800000pt;}
.x9d_c00063{left:323.733333pt;}
.x50_c00063{left:325.600000pt;}
.x36_c00063{left:326.933333pt;}
.x29_c00063{left:329.600000pt;}
.x51_c00063{left:336.533333pt;}
.x77_c00063{left:337.733333pt;}
.xa3_c00063{left:339.866667pt;}
.xfa_c00063{left:340.933333pt;}
.x5e_c00063{left:342.533333pt;}
.x88_c00063{left:343.466667pt;}
.xc5_c00063{left:345.200000pt;}
.x57_c00063{left:346.133333pt;}
.x78_c00063{left:347.600000pt;}
.xfe_c00063{left:350.000000pt;}
.x7e_c00063{left:351.200000pt;}
.xc0_c00063{left:352.400000pt;}
.x114_c00063{left:354.666667pt;}
.xa0_c00063{left:356.800000pt;}
.xda_c00063{left:359.066667pt;}
.x90_c00063{left:360.933333pt;}
.x8_c00063{left:362.933333pt;}
.xba_c00063{left:368.266667pt;}
.x8d_c00063{left:370.533333pt;}
.xff_c00063{left:371.733333pt;}
.xe9_c00063{left:377.466667pt;}
.x3_c00063{left:378.533333pt;}
.xf2_c00063{left:379.600000pt;}
.x8e_c00063{left:382.666667pt;}
.xb1_c00063{left:384.133333pt;}
.x10a_c00063{left:385.466667pt;}
.xc1_c00063{left:386.666667pt;}
.xe0_c00063{left:388.266667pt;}
.x45_c00063{left:389.466667pt;}
.x58_c00063{left:390.666667pt;}
.x2a_c00063{left:392.266667pt;}
.x10b_c00063{left:393.733333pt;}
.x9_c00063{left:394.933333pt;}
.x79_c00063{left:398.800000pt;}
.xc2_c00063{left:401.333333pt;}
.x89_c00063{left:404.000000pt;}
.xb2_c00063{left:405.866667pt;}
.x52_c00063{left:408.266667pt;}
.x37_c00063{left:411.466667pt;}
.xa6_c00063{left:413.066667pt;}
.x46_c00063{left:414.133333pt;}
.x62_c00063{left:415.333333pt;}
.x17_c00063{left:416.800000pt;}
.xd1_c00063{left:418.800000pt;}
.x7a_c00063{left:419.866667pt;}
.x59_c00063{left:424.533333pt;}
.xbb_c00063{left:425.600000pt;}
.xb3_c00063{left:426.933333pt;}
.x111_c00063{left:429.200000pt;}
.xea_c00063{left:431.333333pt;}
.x2b_c00063{left:434.533333pt;}
.x100_c00063{left:436.400000pt;}
.xa7_c00063{left:438.000000pt;}
.x91_c00063{left:440.266667pt;}
.xf3_c00063{left:449.333333pt;}
.x63_c00063{left:450.266667pt;}
.x2c_c00063{left:451.200000pt;}
.x7b_c00063{left:466.000000pt;}
.xd4_c00063{left:477.066667pt;}
.x1d_c00063{left:478.266667pt;}
.xfb_c00063{left:481.733333pt;}
.xac_c00063{left:482.666667pt;}
.xc7_c00063{left:493.066667pt;}
.xa_c00063{left:494.400000pt;}
.x9c_c00063{left:495.333333pt;}
.x101_c00063{left:499.066667pt;}
.xc9_c00063{left:508.800000pt;}
.x64_c00063{left:510.133333pt;}
.x5f_c00063{left:511.466667pt;}
.xb_c00063{left:516.133333pt;}
.xd8_c00063{left:518.400000pt;}
.x38_c00063{left:519.600000pt;}
.x70_c00063{left:522.400000pt;}
.x106_c00063{left:524.666667pt;}
.x6a_c00063{left:527.066667pt;}
.x102_c00063{left:531.066667pt;}
.x39_c00063{left:532.400000pt;}
.xb4_c00063{left:534.133333pt;}
.xc_c00063{left:536.000000pt;}
.x1e_c00063{left:538.133333pt;}
.xd5_c00063{left:539.466667pt;}
.x92_c00063{left:540.400000pt;}
.x6b_c00063{left:541.733333pt;}
.x71_c00063{left:543.200000pt;}
.x115_c00063{left:546.666667pt;}
.x3a_c00063{left:547.733333pt;}
.x65_c00063{left:549.200000pt;}
.x98_c00063{left:550.133333pt;}
.xc6_c00063{left:551.200000pt;}
.x2d_c00063{left:552.666667pt;}
.x5a_c00063{left:554.533333pt;}
.x7f_c00063{left:555.466667pt;}
.x18_c00063{left:558.266667pt;}
.x3b_c00063{left:561.866667pt;}
.x1f_c00063{left:563.066667pt;}
.x47_c00063{left:564.800000pt;}
.x2e_c00063{left:568.000000pt;}
.xad_c00063{left:569.333333pt;}
.x54_c00063{left:570.800000pt;}
.xdb_c00063{left:573.466667pt;}
.xd2_c00063{left:574.933333pt;}
.x48_c00063{left:578.533333pt;}
.x3c_c00063{left:579.466667pt;}
.x72_c00063{left:582.933333pt;}
.xd_c00063{left:584.933333pt;}
.x2f_c00063{left:585.866667pt;}
.x107_c00063{left:587.066667pt;}
.x93_c00063{left:588.666667pt;}
.xe5_c00063{left:589.733333pt;}
.x33_c00063{left:592.933333pt;}
.x66_c00063{left:594.666667pt;}
.xa4_c00063{left:596.133333pt;}
.xfc_c00063{left:597.200000pt;}
.xe2_c00063{left:599.466667pt;}
.x3d_c00063{left:603.200000pt;}
.xeb_c00063{left:604.133333pt;}
.x49_c00063{left:605.466667pt;}
.xe_c00063{left:607.066667pt;}
.x10e_c00063{left:608.133333pt;}
.x94_c00063{left:609.200000pt;}
.x5b_c00063{left:610.533333pt;}
.xb5_c00063{left:611.600000pt;}
.x99_c00063{left:612.533333pt;}
.x80_c00063{left:614.666667pt;}
.x19_c00063{left:615.600000pt;}
.x20_c00063{left:617.200000pt;}
.xd6_c00063{left:619.200000pt;}
.x4a_c00063{left:620.800000pt;}
.xa1_c00063{left:623.733333pt;}
.xf_c00063{left:624.933333pt;}
.xe6_c00063{left:626.533333pt;}
.xdc_c00063{left:628.000000pt;}
.x81_c00063{left:630.000000pt;}
.xec_c00063{left:630.933333pt;}
.x9a_c00063{left:632.400000pt;}
.x30_c00063{left:633.600000pt;}
.x4b_c00063{left:634.533333pt;}
.xbc_c00063{left:635.866667pt;}
.xa8_c00063{left:636.933333pt;}
.xca_c00063{left:638.000000pt;}
.x1a_c00063{left:638.933333pt;}
.xdd_c00063{left:641.066667pt;}
.x10_c00063{left:643.200000pt;}
.x10f_c00063{left:644.666667pt;}
.x67_c00063{left:646.133333pt;}
.x10c_c00063{left:648.266667pt;}
.x9e_c00063{left:651.066667pt;}
.x3e_c00063{left:653.066667pt;}
.xcb_c00063{left:654.000000pt;}
.xde_c00063{left:655.200000pt;}
.xa9_c00063{left:656.400000pt;}
.xe4_c00063{left:657.733333pt;}
.x4c_c00063{left:659.466667pt;}
.x95_c00063{left:662.000000pt;}
.xd7_c00063{left:663.733333pt;}
.x73_c00063{left:665.733333pt;}
.x21_c00063{left:666.800000pt;}
.xdf_c00063{left:668.000000pt;}
.x103_c00063{left:670.533333pt;}
.x10d_c00063{left:673.200000pt;}
.x1b_c00063{left:674.800000pt;}
.xcc_c00063{left:676.400000pt;}
.xe3_c00063{left:679.466667pt;}
.xbd_c00063{left:682.933333pt;}
.x74_c00063{left:684.000000pt;}
.x22_c00063{left:685.333333pt;}
.x3f_c00063{left:686.400000pt;}
.xf4_c00063{left:692.533333pt;}
.x82_c00063{left:694.266667pt;}
.x40_c00063{left:696.666667pt;}
.x11_c00063{left:698.266667pt;}
.xaa_c00063{left:702.133333pt;}
.xae_c00063{left:706.000000pt;}
.xb6_c00063{left:707.066667pt;}
.x6c_c00063{left:711.333333pt;}
.xed_c00063{left:713.200000pt;}
.xe7_c00063{left:716.400000pt;}
.xc8_c00063{left:721.333333pt;}
.x96_c00063{left:722.800000pt;}
.x41_c00063{left:724.266667pt;}
.xab_c00063{left:730.666667pt;}
.x55_c00063{left:734.666667pt;}
.x68_c00063{left:739.200000pt;}
.xbe_c00063{left:740.266667pt;}
.xee_c00063{left:741.733333pt;}
.xf5_c00063{left:743.066667pt;}
.x118_c00063{left:747.200000pt;}
.x12_c00063{left:748.133333pt;}
.xef_c00063{left:750.400000pt;}
.xf6_c00063{left:751.333333pt;}
.x97_c00063{left:753.200000pt;}
.x23_c00063{left:759.600000pt;}
.xa2_c00063{left:762.266667pt;}
.xf0_c00063{left:765.466667pt;}
.x9b_c00063{left:766.400000pt;}
.x24_c00063{left:767.866667pt;}
.xf7_c00063{left:775.600000pt;}
.x108_c00063{left:778.000000pt;}
}





/* 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_c00064 {
    display:none;
  }
  .loading-indicator_c00064.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00064 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_c00064 { 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_c00064" -> "#page-container .classname_c00064")
 */
.pf_c00064 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00064 { /* 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_c00064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00064 { /* 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_c00064 { /* 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_c00064 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00064 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00064 {overflow:visible;}
  }
}
.c_c00064 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00064 { /* 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_c00064:after { /* webkit #35443 */
  content: '';
}
.t_c00064:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00064 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 */
}
.__c00064 { /* 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_c00064 { /* info for Javascript */
  display:none;
}
.l_c00064 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00064 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00064 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00064: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_c00064 {
    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_c00064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00064.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_c00064 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00064;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.000000;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;}
.ma_c00064{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00064{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00064{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me0_c00064{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00064{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00064{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00064{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00064{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00064{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m73_c00064{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00064{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m41_c00064{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m47_c00064{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m17_c00064{transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00064{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m32_c00064{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m44_c00064{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me6_c00064{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00064{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m64_c00064{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m21_c00064{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me5_c00064{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00064{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me8_c00064{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mba_c00064{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00064{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m30_c00064{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m70_c00064{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00064{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00064{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m15_c00064{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m74_c00064{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m20_c00064{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00064{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00064{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m91_c00064{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00064{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00064{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00064{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m51_c00064{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00064{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00064{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00064{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m16_c00064{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me3_c00064{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00064{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00064{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00064{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00064{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m89_c00064{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m54_c00064{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m71_c00064{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00064{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mff_c00064{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00064{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00064{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00064{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m92_c00064{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00064{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00064{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m39_c00064{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00064{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00064{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m18_c00064{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00064{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m34_c00064{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m66_c00064{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md5_c00064{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00064{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00064{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00064{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00064{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md_c00064{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m25_c00064{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00064{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mce_c00064{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00064{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00064{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m12_c00064{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m22_c00064{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md6_c00064{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00064{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mca_c00064{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m11_c00064{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00064{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7_c00064{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00064{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mec_c00064{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m50_c00064{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m75_c00064{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00064{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md0_c00064{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m40_c00064{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00064{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m55_c00064{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00064{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m98_c00064{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00064{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m77_c00064{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00064{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00064{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m49_c00064{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8_c00064{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00064{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m48_c00064{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m69_c00064{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m13_c00064{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00064{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00064{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m82_c00064{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00064{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m76_c00064{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m62_c00064{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4_c00064{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m81_c00064{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00064{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.med_c00064{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00064{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00064{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m102_c00064{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m103_c00064{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00064{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md3_c00064{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mab_c00064{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00064{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m99_c00064{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m80_c00064{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m58_c00064{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m38_c00064{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf_c00064{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00064{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6_c00064{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m29_c00064{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00064{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2_c00064{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m46_c00064{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md1_c00064{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00064{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00064{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00064{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m67_c00064{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00064{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00064{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00064{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m96_c00064{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m61_c00064{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00064{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md4_c00064{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00064{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00064{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m23_c00064{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me4_c00064{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb_c00064{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m93_c00064{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m87_c00064{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00064{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00064{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10_c00064{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00064{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m31_c00064{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00064{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00064{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00064{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.maf_c00064{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00064{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.maa_c00064{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00064{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m14_c00064{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00064{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m84_c00064{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m36_c00064{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00064{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00064{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00064{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00064{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md8_c00064{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m63_c00064{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m97_c00064{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00064{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00064{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m59_c00064{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m90_c00064{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00064{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m83_c00064{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m101_c00064{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00064{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00064{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00064{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m85_c00064{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m95_c00064{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00064{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m65_c00064{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m33_c00064{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00064{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00064{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mea_c00064{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m72_c00064{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00064{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md9_c00064{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me_c00064{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00064{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);}
.me2_c00064{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m78_c00064{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m79_c00064{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00064{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m37_c00064{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m28_c00064{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m68_c00064{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m88_c00064{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00064{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md7_c00064{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00064{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m100_c00064{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m57_c00064{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md2_c00064{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00064{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m35_c00064{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00064{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00064{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00064{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m26_c00064{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00064{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00064{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m19_c00064{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m43_c00064{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mae_c00064{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m53_c00064{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00064{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m60_c00064{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.mde_c00064{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00064{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00064{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mad_c00064{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mee_c00064{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00064{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mef_c00064{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00064{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.me1_c00064{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m24_c00064{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00064{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00064{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00064{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m56_c00064{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me7_c00064{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00064{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m45_c00064{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mac_c00064{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m104_c00064{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00064{transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);}
.meb_c00064{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mda_c00064{transform:matrix(0.434000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434000,0.000000,0.000000,0.250000,0,0);}
.me9_c00064{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m86_c00064{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.505250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505250,0.000000,0.000000,0.250000,0,0);}
.m52_c00064{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m27_c00064{transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);}
.m42_c00064{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls0_c00064{letter-spacing:0.000000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{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__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00064{word-spacing:-4.569721px;}
.ws0_c00064{word-spacing:-3.170084px;}
.ws4_c00064{word-spacing:0.000000px;}
.ws2_c00064{word-spacing:16.899713px;}
.ws1_c00064{word-spacing:73.035714px;}
.fc0_c00064{color:transparent;}
.fs6_c00064{font-size:48.000000px;}
.fs4_c00064{font-size:54.000000px;}
.fs3_c00064{font-size:60.000000px;}
.fs2_c00064{font-size:66.000000px;}
.fs5_c00064{font-size:72.000000px;}
.fs0_c00064{font-size:78.000000px;}
.fs1_c00064{font-size:102.000000px;}
.y0_c00064{bottom:0.000000px;}
.y66_c00064{bottom:167.400000px;}
.y36_c00064{bottom:182.100000px;}
.y65_c00064{bottom:186.900000px;}
.y35_c00064{bottom:197.250000px;}
.y64_c00064{bottom:205.200000px;}
.y34_c00064{bottom:212.100000px;}
.y63_c00064{bottom:223.200000px;}
.y33_c00064{bottom:226.800000px;}
.y62_c00064{bottom:242.550000px;}
.y61_c00064{bottom:263.100000px;}
.y32_c00064{bottom:264.600000px;}
.y60_c00064{bottom:281.100000px;}
.y31_c00064{bottom:285.450000px;}
.y5f_c00064{bottom:303.150000px;}
.y30_c00064{bottom:304.650000px;}
.y2f_c00064{bottom:322.650000px;}
.y5e_c00064{bottom:323.250000px;}
.y2e_c00064{bottom:340.950000px;}
.y5d_c00064{bottom:345.300000px;}
.y2d_c00064{bottom:358.650000px;}
.y5c_c00064{bottom:368.250000px;}
.y2c_c00064{bottom:376.650000px;}
.y5b_c00064{bottom:388.800000px;}
.y2b_c00064{bottom:394.350000px;}
.y5a_c00064{bottom:406.800000px;}
.y2a_c00064{bottom:412.650000px;}
.y59_c00064{bottom:425.100000px;}
.y29_c00064{bottom:430.350000px;}
.y58_c00064{bottom:446.400000px;}
.y28_c00064{bottom:448.650000px;}
.y57_c00064{bottom:465.450000px;}
.y27_c00064{bottom:466.650000px;}
.y26_c00064{bottom:484.650000px;}
.y56_c00064{bottom:489.900000px;}
.y25_c00064{bottom:502.650000px;}
.y55_c00064{bottom:509.700000px;}
.y24_c00064{bottom:520.650000px;}
.y54_c00064{bottom:529.500000px;}
.y23_c00064{bottom:538.950000px;}
.y53_c00064{bottom:550.050000px;}
.y22_c00064{bottom:558.900000px;}
.y52_c00064{bottom:567.750000px;}
.y21_c00064{bottom:574.800000px;}
.y51_c00064{bottom:586.050000px;}
.y20_c00064{bottom:587.100000px;}
.y1f_c00064{bottom:602.550000px;}
.y50_c00064{bottom:604.050000px;}
.y1e_c00064{bottom:618.450000px;}
.y4f_c00064{bottom:627.000000px;}
.y1d_c00064{bottom:633.150000px;}
.y4e_c00064{bottom:642.900000px;}
.y1c_c00064{bottom:647.250000px;}
.y4d_c00064{bottom:658.050000px;}
.y1b_c00064{bottom:661.650000px;}
.y1a_c00064{bottom:674.700000px;}
.y4c_c00064{bottom:677.850000px;}
.y19_c00064{bottom:690.150000px;}
.y4b_c00064{bottom:699.750000px;}
.y18_c00064{bottom:705.600000px;}
.y4a_c00064{bottom:718.500000px;}
.y17_c00064{bottom:722.550000px;}
.y49_c00064{bottom:739.800000px;}
.y16_c00064{bottom:742.350000px;}
.y15_c00064{bottom:764.100000px;}
.y48_c00064{bottom:779.400000px;}
.y14_c00064{bottom:782.850000px;}
.y13_c00064{bottom:800.550000px;}
.y12_c00064{bottom:818.550000px;}
.y47_c00064{bottom:820.500000px;}
.y11_c00064{bottom:836.250000px;}
.y46_c00064{bottom:838.500000px;}
.y10_c00064{bottom:854.550000px;}
.y45_c00064{bottom:861.150000px;}
.yf_c00064{bottom:872.250000px;}
.y44_c00064{bottom:879.450000px;}
.ye_c00064{bottom:890.250000px;}
.y43_c00064{bottom:896.700000px;}
.yd_c00064{bottom:908.250000px;}
.y42_c00064{bottom:914.700000px;}
.yc_c00064{bottom:925.500000px;}
.y41_c00064{bottom:932.700000px;}
.yb_c00064{bottom:943.500000px;}
.y40_c00064{bottom:950.400000px;}
.ya_c00064{bottom:964.050000px;}
.y3f_c00064{bottom:971.850000px;}
.y9_c00064{bottom:983.850000px;}
.y3e_c00064{bottom:989.850000px;}
.y3d_c00064{bottom:1007.850000px;}
.y8_c00064{bottom:1009.800000px;}
.y3c_c00064{bottom:1025.550000px;}
.y7_c00064{bottom:1031.700000px;}
.y3b_c00064{bottom:1043.550000px;}
.y6_c00064{bottom:1053.300000px;}
.y3a_c00064{bottom:1061.550000px;}
.y5_c00064{bottom:1075.650000px;}
.y39_c00064{bottom:1079.250000px;}
.y4_c00064{bottom:1097.700000px;}
.y38_c00064{bottom:1101.300000px;}
.y3_c00064{bottom:1117.500000px;}
.y37_c00064{bottom:1119.600000px;}
.y2_c00064{bottom:1141.200000px;}
.y1_c00064{bottom:1145.850000px;}
.h8_c00064{height:48.000000px;}
.h6_c00064{height:54.000000px;}
.h5_c00064{height:60.000000px;}
.h4_c00064{height:66.000000px;}
.h7_c00064{height:72.000000px;}
.h2_c00064{height:78.000000px;}
.h3_c00064{height:102.000000px;}
.h1_c00064{height:1269.750000px;}
.h0_c00064{height:1270.080048px;}
.w0_c00064{width:948.600036px;}
.w1_c00064{width:948.750000px;}
.x0_c00064{left:0.000000px;}
.x91_c00064{left:66.900000px;}
.x62_c00064{left:72.300000px;}
.x5e_c00064{left:73.500000px;}
.x16_c00064{left:74.550000px;}
.x95_c00064{left:87.150000px;}
.x67_c00064{left:88.200000px;}
.x52_c00064{left:90.750000px;}
.x1b_c00064{left:93.300000px;}
.x3_c00064{left:94.350000px;}
.x17_c00064{left:99.750000px;}
.x92_c00064{left:101.100000px;}
.x68_c00064{left:104.700000px;}
.x96_c00064{left:107.100000px;}
.x10_c00064{left:111.600000px;}
.xc_c00064{left:112.650000px;}
.x8d_c00064{left:113.700000px;}
.x35_c00064{left:115.200000px;}
.x1c_c00064{left:117.000000px;}
.x53_c00064{left:118.800000px;}
.x5f_c00064{left:120.300000px;}
.x42_c00064{left:121.350000px;}
.x83_c00064{left:127.200000px;}
.x28_c00064{left:133.950000px;}
.x2e_c00064{left:135.000000px;}
.x48_c00064{left:136.200000px;}
.x4_c00064{left:137.550000px;}
.x43_c00064{left:140.400000px;}
.x3c_c00064{left:142.200000px;}
.x23_c00064{left:148.050000px;}
.x6d_c00064{left:149.550000px;}
.x4e_c00064{left:151.350000px;}
.x6e_c00064{left:153.000000px;}
.x5_c00064{left:154.050000px;}
.xd_c00064{left:155.550000px;}
.xf_c00064{left:156.600000px;}
.x7c_c00064{left:158.700000px;}
.x59_c00064{left:160.950000px;}
.x81_c00064{left:162.300000px;}
.x54_c00064{left:164.100000px;}
.x44_c00064{left:165.300000px;}
.x72_c00064{left:170.250000px;}
.x24_c00064{left:172.500000px;}
.x84_c00064{left:173.700000px;}
.x69_c00064{left:174.900000px;}
.xe_c00064{left:177.450000px;}
.x13_c00064{left:178.950000px;}
.x2f_c00064{left:180.450000px;}
.x1d_c00064{left:183.600000px;}
.x11_c00064{left:189.000000px;}
.x7d_c00064{left:191.850000px;}
.x73_c00064{left:192.900000px;}
.x63_c00064{left:194.700000px;}
.x29_c00064{left:197.700000px;}
.x85_c00064{left:199.050000px;}
.x4f_c00064{left:200.250000px;}
.x49_c00064{left:204.300000px;}
.x36_c00064{left:207.000000px;}
.x5a_c00064{left:208.500000px;}
.x6_c00064{left:210.600000px;}
.x88_c00064{left:213.450000px;}
.x1e_c00064{left:214.500000px;}
.x25_c00064{left:216.450000px;}
.x5b_c00064{left:219.000000px;}
.x2a_c00064{left:220.050000px;}
.x93_c00064{left:221.100000px;}
.x8e_c00064{left:223.350000px;}
.x30_c00064{left:224.700000px;}
.x3d_c00064{left:227.100000px;}
.x55_c00064{left:228.300000px;}
.x77_c00064{left:232.350000px;}
.x1f_c00064{left:235.050000px;}
.x7a_c00064{left:241.500000px;}
.x45_c00064{left:243.000000px;}
.x14_c00064{left:245.250000px;}
.x8b_c00064{left:246.900000px;}
.x70_c00064{left:247.950000px;}
.x4a_c00064{left:249.300000px;}
.x18_c00064{left:253.050000px;}
.x8f_c00064{left:254.250000px;}
.x74_c00064{left:256.200000px;}
.x50_c00064{left:257.850000px;}
.x5c_c00064{left:261.450000px;}
.x7e_c00064{left:263.700000px;}
.x20_c00064{left:265.350000px;}
.x7_c00064{left:267.150000px;}
.x37_c00064{left:269.250000px;}
.x86_c00064{left:272.100000px;}
.x15_c00064{left:273.750000px;}
.x64_c00064{left:276.000000px;}
.x56_c00064{left:278.400000px;}
.x8c_c00064{left:284.400000px;}
.x6a_c00064{left:285.450000px;}
.x89_c00064{left:287.550000px;}
.x31_c00064{left:289.200000px;}
.x57_c00064{left:291.300000px;}
.x90_c00064{left:292.800000px;}
.x12_c00064{left:295.950000px;}
.x21_c00064{left:297.450000px;}
.x7f_c00064{left:298.650000px;}
.x5d_c00064{left:301.050000px;}
.x26_c00064{left:303.600000px;}
.x2b_c00064{left:306.750000px;}
.x3e_c00064{left:309.150000px;}
.x38_c00064{left:313.050000px;}
.x46_c00064{left:314.250000px;}
.x2c_c00064{left:316.500000px;}
.x1_c00064{left:318.300000px;}
.x8_c00064{left:319.350000px;}
.x78_c00064{left:320.550000px;}
.x60_c00064{left:322.500000px;}
.x87_c00064{left:323.550000px;}
.x4b_c00064{left:328.200000px;}
.x47_c00064{left:330.150000px;}
.x8a_c00064{left:331.800000px;}
.x65_c00064{left:333.300000px;}
.x39_c00064{left:334.650000px;}
.x76_c00064{left:337.800000px;}
.xb_c00064{left:340.500000px;}
.x6b_c00064{left:342.450000px;}
.x19_c00064{left:343.800000px;}
.x22_c00064{left:346.050000px;}
.x3f_c00064{left:347.700000px;}
.x32_c00064{left:348.900000px;}
.x58_c00064{left:351.450000px;}
.x2d_c00064{left:353.550000px;}
.x1a_c00064{left:355.350000px;}
.x7b_c00064{left:357.750000px;}
.x9_c00064{left:358.950000px;}
.x71_c00064{left:360.900000px;}
.x66_c00064{left:364.200000px;}
.x4c_c00064{left:365.250000px;}
.x40_c00064{left:367.500000px;}
.x27_c00064{left:369.750000px;}
.x97_c00064{left:370.950000px;}
.x61_c00064{left:373.950000px;}
.x79_c00064{left:375.300000px;}
.x82_c00064{left:377.100000px;}
.x3a_c00064{left:379.350000px;}
.x6c_c00064{left:381.000000px;}
.x33_c00064{left:382.050000px;}
.x51_c00064{left:383.850000px;}
.x3b_c00064{left:387.600000px;}
.x80_c00064{left:389.850000px;}
.x6f_c00064{left:391.200000px;}
.x75_c00064{left:395.400000px;}
.x4d_c00064{left:399.150000px;}
.x34_c00064{left:400.350000px;}
.x94_c00064{left:402.150000px;}
.xa_c00064{left:403.200000px;}
.x41_c00064{left:404.550000px;}
.xc9_c00064{left:434.850000px;}
.x117_c00064{left:436.650000px;}
.x98_c00064{left:452.850000px;}
.xf4_c00064{left:453.900000px;}
.xa1_c00064{left:470.850000px;}
.x111_c00064{left:472.650000px;}
.xbd_c00064{left:474.000000px;}
.x99_c00064{left:475.200000px;}
.x107_c00064{left:476.700000px;}
.xb6_c00064{left:477.900000px;}
.xc3_c00064{left:480.750000px;}
.xd5_c00064{left:482.250000px;}
.xef_c00064{left:484.950000px;}
.xf3_c00064{left:488.100000px;}
.xe3_c00064{left:490.350000px;}
.xca_c00064{left:495.300000px;}
.xf5_c00064{left:498.150000px;}
.xe7_c00064{left:501.750000px;}
.x10e_c00064{left:502.950000px;}
.xc4_c00064{left:504.150000px;}
.xc8_c00064{left:508.500000px;}
.xdf_c00064{left:513.000000px;}
.xe9_c00064{left:514.050000px;}
.xaf_c00064{left:515.850000px;}
.xfe_c00064{left:517.200000px;}
.xa2_c00064{left:518.400000px;}
.xec_c00064{left:520.500000px;}
.xb0_c00064{left:524.850000px;}
.xf6_c00064{left:526.350000px;}
.xbe_c00064{left:527.700000px;}
.xed_c00064{left:531.300000px;}
.xd9_c00064{left:532.350000px;}
.xc5_c00064{left:534.000000px;}
.xe8_c00064{left:535.950000px;}
.xcb_c00064{left:537.750000px;}
.xaa_c00064{left:538.950000px;}
.xb1_c00064{left:541.350000px;}
.x9a_c00064{left:544.350000px;}
.xf7_c00064{left:546.450000px;}
.x114_c00064{left:548.250000px;}
.xe4_c00064{left:549.450000px;}
.xb7_c00064{left:553.500000px;}
.xcc_c00064{left:554.700000px;}
.x104_c00064{left:555.750000px;}
.xe5_c00064{left:557.700000px;}
.x10d_c00064{left:562.050000px;}
.x103_c00064{left:565.200000px;}
.x11b_c00064{left:566.700000px;}
.xbf_c00064{left:569.850000px;}
.xab_c00064{left:572.850000px;}
.xa3_c00064{left:574.200000px;}
.xda_c00064{left:577.350000px;}
.xb2_c00064{left:579.450000px;}
.xc0_c00064{left:580.950000px;}
.xcf_c00064{left:582.600000px;}
.x100_c00064{left:583.800000px;}
.xcd_c00064{left:585.300000px;}
.x9b_c00064{left:588.300000px;}
.x118_c00064{left:590.700000px;}
.xac_c00064{left:591.900000px;}
.x112_c00064{left:594.750000px;}
.xa4_c00064{left:596.550000px;}
.xb3_c00064{left:598.950000px;}
.xd0_c00064{left:600.600000px;}
.xb8_c00064{left:605.700000px;}
.xc6_c00064{left:607.800000px;}
.x9c_c00064{left:610.950000px;}
.x109_c00064{left:612.300000px;}
.xdb_c00064{left:614.100000px;}
.xf0_c00064{left:615.300000px;}
.xd1_c00064{left:616.800000px;}
.xe0_c00064{left:619.500000px;}
.xea_c00064{left:620.550000px;}
.xc7_c00064{left:622.200000px;}
.x9d_c00064{left:631.500000px;}
.xad_c00064{left:633.600000px;}
.xa5_c00064{left:636.900000px;}
.xe1_c00064{left:638.250000px;}
.x115_c00064{left:639.300000px;}
.xfb_c00064{left:644.400000px;}
.x113_c00064{left:645.450000px;}
.xd2_c00064{left:648.450000px;}
.x105_c00064{left:653.400000px;}
.xb9_c00064{left:654.750000px;}
.x11c_c00064{left:657.000000px;}
.xae_c00064{left:658.500000px;}
.x101_c00064{left:661.950000px;}
.x10f_c00064{left:663.600000px;}
.xd6_c00064{left:666.450000px;}
.xf1_c00064{left:670.050000px;}
.xa6_c00064{left:672.900000px;}
.x9e_c00064{left:675.750000px;}
.xce_c00064{left:678.900000px;}
.xdc_c00064{left:680.400000px;}
.xb4_c00064{left:681.750000px;}
.xf8_c00064{left:685.800000px;}
.xe6_c00064{left:688.500000px;}
.xd3_c00064{left:692.400000px;}
.xd7_c00064{left:693.750000px;}
.x119_c00064{left:695.850000px;}
.xdd_c00064{left:699.150000px;}
.xc1_c00064{left:701.100000px;}
.x11a_c00064{left:706.350000px;}
.xba_c00064{left:709.800000px;}
.xa7_c00064{left:711.750000px;}
.xd4_c00064{left:712.950000px;}
.xf9_c00064{left:714.300000px;}
.xe2_c00064{left:716.700000px;}
.x10c_c00064{left:718.500000px;}
.xfc_c00064{left:720.300000px;}
.x10a_c00064{left:722.100000px;}
.x110_c00064{left:724.050000px;}
.x106_c00064{left:725.100000px;}
.x9f_c00064{left:727.650000px;}
.xa8_c00064{left:730.050000px;}
.xeb_c00064{left:731.400000px;}
.xde_c00064{left:733.350000px;}
.xf2_c00064{left:734.550000px;}
.xfa_c00064{left:735.600000px;}
.x108_c00064{left:737.400000px;}
.xfd_c00064{left:739.050000px;}
.xbb_c00064{left:741.150000px;}
.xb5_c00064{left:743.700000px;}
.xa0_c00064{left:746.700000px;}
.xff_c00064{left:749.250000px;}
.xc2_c00064{left:751.500000px;}
.x102_c00064{left:753.000000px;}
.x2_c00064{left:754.200000px;}
.x10b_c00064{left:758.850000px;}
.xd8_c00064{left:760.050000px;}
.x116_c00064{left:764.250000px;}
.xa9_c00064{left:768.600000px;}
.xbc_c00064{left:769.650000px;}
.x11d_c00064{left:772.950000px;}
.xee_c00064{left:774.600000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws3_c00064{word-spacing:-4.061974pt;}
.ws0_c00064{word-spacing:-2.817853pt;}
.ws4_c00064{word-spacing:0.000000pt;}
.ws2_c00064{word-spacing:15.021968pt;}
.ws1_c00064{word-spacing:64.920635pt;}
.fs6_c00064{font-size:42.666667pt;}
.fs4_c00064{font-size:48.000000pt;}
.fs3_c00064{font-size:53.333333pt;}
.fs2_c00064{font-size:58.666667pt;}
.fs5_c00064{font-size:64.000000pt;}
.fs0_c00064{font-size:69.333333pt;}
.fs1_c00064{font-size:90.666667pt;}
.y0_c00064{bottom:0.000000pt;}
.y66_c00064{bottom:148.800000pt;}
.y36_c00064{bottom:161.866667pt;}
.y65_c00064{bottom:166.133333pt;}
.y35_c00064{bottom:175.333333pt;}
.y64_c00064{bottom:182.400000pt;}
.y34_c00064{bottom:188.533333pt;}
.y63_c00064{bottom:198.400000pt;}
.y33_c00064{bottom:201.600000pt;}
.y62_c00064{bottom:215.600000pt;}
.y61_c00064{bottom:233.866667pt;}
.y32_c00064{bottom:235.200000pt;}
.y60_c00064{bottom:249.866667pt;}
.y31_c00064{bottom:253.733333pt;}
.y5f_c00064{bottom:269.466667pt;}
.y30_c00064{bottom:270.800000pt;}
.y2f_c00064{bottom:286.800000pt;}
.y5e_c00064{bottom:287.333333pt;}
.y2e_c00064{bottom:303.066667pt;}
.y5d_c00064{bottom:306.933333pt;}
.y2d_c00064{bottom:318.800000pt;}
.y5c_c00064{bottom:327.333333pt;}
.y2c_c00064{bottom:334.800000pt;}
.y5b_c00064{bottom:345.600000pt;}
.y2b_c00064{bottom:350.533333pt;}
.y5a_c00064{bottom:361.600000pt;}
.y2a_c00064{bottom:366.800000pt;}
.y59_c00064{bottom:377.866667pt;}
.y29_c00064{bottom:382.533333pt;}
.y58_c00064{bottom:396.800000pt;}
.y28_c00064{bottom:398.800000pt;}
.y57_c00064{bottom:413.733333pt;}
.y27_c00064{bottom:414.800000pt;}
.y26_c00064{bottom:430.800000pt;}
.y56_c00064{bottom:435.466667pt;}
.y25_c00064{bottom:446.800000pt;}
.y55_c00064{bottom:453.066667pt;}
.y24_c00064{bottom:462.800000pt;}
.y54_c00064{bottom:470.666667pt;}
.y23_c00064{bottom:479.066667pt;}
.y53_c00064{bottom:488.933333pt;}
.y22_c00064{bottom:496.800000pt;}
.y52_c00064{bottom:504.666667pt;}
.y21_c00064{bottom:510.933333pt;}
.y51_c00064{bottom:520.933333pt;}
.y20_c00064{bottom:521.866667pt;}
.y1f_c00064{bottom:535.600000pt;}
.y50_c00064{bottom:536.933333pt;}
.y1e_c00064{bottom:549.733333pt;}
.y4f_c00064{bottom:557.333333pt;}
.y1d_c00064{bottom:562.800000pt;}
.y4e_c00064{bottom:571.466667pt;}
.y1c_c00064{bottom:575.333333pt;}
.y4d_c00064{bottom:584.933333pt;}
.y1b_c00064{bottom:588.133333pt;}
.y1a_c00064{bottom:599.733333pt;}
.y4c_c00064{bottom:602.533333pt;}
.y19_c00064{bottom:613.466667pt;}
.y4b_c00064{bottom:622.000000pt;}
.y18_c00064{bottom:627.200000pt;}
.y4a_c00064{bottom:638.666667pt;}
.y17_c00064{bottom:642.266667pt;}
.y49_c00064{bottom:657.600000pt;}
.y16_c00064{bottom:659.866667pt;}
.y15_c00064{bottom:679.200000pt;}
.y48_c00064{bottom:692.800000pt;}
.y14_c00064{bottom:695.866667pt;}
.y13_c00064{bottom:711.600000pt;}
.y12_c00064{bottom:727.600000pt;}
.y47_c00064{bottom:729.333333pt;}
.y11_c00064{bottom:743.333333pt;}
.y46_c00064{bottom:745.333333pt;}
.y10_c00064{bottom:759.600000pt;}
.y45_c00064{bottom:765.466667pt;}
.yf_c00064{bottom:775.333333pt;}
.y44_c00064{bottom:781.733333pt;}
.ye_c00064{bottom:791.333333pt;}
.y43_c00064{bottom:797.066667pt;}
.yd_c00064{bottom:807.333333pt;}
.y42_c00064{bottom:813.066667pt;}
.yc_c00064{bottom:822.666667pt;}
.y41_c00064{bottom:829.066667pt;}
.yb_c00064{bottom:838.666667pt;}
.y40_c00064{bottom:844.800000pt;}
.ya_c00064{bottom:856.933333pt;}
.y3f_c00064{bottom:863.866667pt;}
.y9_c00064{bottom:874.533333pt;}
.y3e_c00064{bottom:879.866667pt;}
.y3d_c00064{bottom:895.866667pt;}
.y8_c00064{bottom:897.600000pt;}
.y3c_c00064{bottom:911.600000pt;}
.y7_c00064{bottom:917.066667pt;}
.y3b_c00064{bottom:927.600000pt;}
.y6_c00064{bottom:936.266667pt;}
.y3a_c00064{bottom:943.600000pt;}
.y5_c00064{bottom:956.133333pt;}
.y39_c00064{bottom:959.333333pt;}
.y4_c00064{bottom:975.733333pt;}
.y38_c00064{bottom:978.933333pt;}
.y3_c00064{bottom:993.333333pt;}
.y37_c00064{bottom:995.200000pt;}
.y2_c00064{bottom:1014.400000pt;}
.y1_c00064{bottom:1018.533333pt;}
.h8_c00064{height:42.666667pt;}
.h6_c00064{height:48.000000pt;}
.h5_c00064{height:53.333333pt;}
.h4_c00064{height:58.666667pt;}
.h7_c00064{height:64.000000pt;}
.h2_c00064{height:69.333333pt;}
.h3_c00064{height:90.666667pt;}
.h1_c00064{height:1128.666667pt;}
.h0_c00064{height:1128.960043pt;}
.w0_c00064{width:843.200032pt;}
.w1_c00064{width:843.333333pt;}
.x0_c00064{left:0.000000pt;}
.x91_c00064{left:59.466667pt;}
.x62_c00064{left:64.266667pt;}
.x5e_c00064{left:65.333333pt;}
.x16_c00064{left:66.266667pt;}
.x95_c00064{left:77.466667pt;}
.x67_c00064{left:78.400000pt;}
.x52_c00064{left:80.666667pt;}
.x1b_c00064{left:82.933333pt;}
.x3_c00064{left:83.866667pt;}
.x17_c00064{left:88.666667pt;}
.x92_c00064{left:89.866667pt;}
.x68_c00064{left:93.066667pt;}
.x96_c00064{left:95.200000pt;}
.x10_c00064{left:99.200000pt;}
.xc_c00064{left:100.133333pt;}
.x8d_c00064{left:101.066667pt;}
.x35_c00064{left:102.400000pt;}
.x1c_c00064{left:104.000000pt;}
.x53_c00064{left:105.600000pt;}
.x5f_c00064{left:106.933333pt;}
.x42_c00064{left:107.866667pt;}
.x83_c00064{left:113.066667pt;}
.x28_c00064{left:119.066667pt;}
.x2e_c00064{left:120.000000pt;}
.x48_c00064{left:121.066667pt;}
.x4_c00064{left:122.266667pt;}
.x43_c00064{left:124.800000pt;}
.x3c_c00064{left:126.400000pt;}
.x23_c00064{left:131.600000pt;}
.x6d_c00064{left:132.933333pt;}
.x4e_c00064{left:134.533333pt;}
.x6e_c00064{left:136.000000pt;}
.x5_c00064{left:136.933333pt;}
.xd_c00064{left:138.266667pt;}
.xf_c00064{left:139.200000pt;}
.x7c_c00064{left:141.066667pt;}
.x59_c00064{left:143.066667pt;}
.x81_c00064{left:144.266667pt;}
.x54_c00064{left:145.866667pt;}
.x44_c00064{left:146.933333pt;}
.x72_c00064{left:151.333333pt;}
.x24_c00064{left:153.333333pt;}
.x84_c00064{left:154.400000pt;}
.x69_c00064{left:155.466667pt;}
.xe_c00064{left:157.733333pt;}
.x13_c00064{left:159.066667pt;}
.x2f_c00064{left:160.400000pt;}
.x1d_c00064{left:163.200000pt;}
.x11_c00064{left:168.000000pt;}
.x7d_c00064{left:170.533333pt;}
.x73_c00064{left:171.466667pt;}
.x63_c00064{left:173.066667pt;}
.x29_c00064{left:175.733333pt;}
.x85_c00064{left:176.933333pt;}
.x4f_c00064{left:178.000000pt;}
.x49_c00064{left:181.600000pt;}
.x36_c00064{left:184.000000pt;}
.x5a_c00064{left:185.333333pt;}
.x6_c00064{left:187.200000pt;}
.x88_c00064{left:189.733333pt;}
.x1e_c00064{left:190.666667pt;}
.x25_c00064{left:192.400000pt;}
.x5b_c00064{left:194.666667pt;}
.x2a_c00064{left:195.600000pt;}
.x93_c00064{left:196.533333pt;}
.x8e_c00064{left:198.533333pt;}
.x30_c00064{left:199.733333pt;}
.x3d_c00064{left:201.866667pt;}
.x55_c00064{left:202.933333pt;}
.x77_c00064{left:206.533333pt;}
.x1f_c00064{left:208.933333pt;}
.x7a_c00064{left:214.666667pt;}
.x45_c00064{left:216.000000pt;}
.x14_c00064{left:218.000000pt;}
.x8b_c00064{left:219.466667pt;}
.x70_c00064{left:220.400000pt;}
.x4a_c00064{left:221.600000pt;}
.x18_c00064{left:224.933333pt;}
.x8f_c00064{left:226.000000pt;}
.x74_c00064{left:227.733333pt;}
.x50_c00064{left:229.200000pt;}
.x5c_c00064{left:232.400000pt;}
.x7e_c00064{left:234.400000pt;}
.x20_c00064{left:235.866667pt;}
.x7_c00064{left:237.466667pt;}
.x37_c00064{left:239.333333pt;}
.x86_c00064{left:241.866667pt;}
.x15_c00064{left:243.333333pt;}
.x64_c00064{left:245.333333pt;}
.x56_c00064{left:247.466667pt;}
.x8c_c00064{left:252.800000pt;}
.x6a_c00064{left:253.733333pt;}
.x89_c00064{left:255.600000pt;}
.x31_c00064{left:257.066667pt;}
.x57_c00064{left:258.933333pt;}
.x90_c00064{left:260.266667pt;}
.x12_c00064{left:263.066667pt;}
.x21_c00064{left:264.400000pt;}
.x7f_c00064{left:265.466667pt;}
.x5d_c00064{left:267.600000pt;}
.x26_c00064{left:269.866667pt;}
.x2b_c00064{left:272.666667pt;}
.x3e_c00064{left:274.800000pt;}
.x38_c00064{left:278.266667pt;}
.x46_c00064{left:279.333333pt;}
.x2c_c00064{left:281.333333pt;}
.x1_c00064{left:282.933333pt;}
.x8_c00064{left:283.866667pt;}
.x78_c00064{left:284.933333pt;}
.x60_c00064{left:286.666667pt;}
.x87_c00064{left:287.600000pt;}
.x4b_c00064{left:291.733333pt;}
.x47_c00064{left:293.466667pt;}
.x8a_c00064{left:294.933333pt;}
.x65_c00064{left:296.266667pt;}
.x39_c00064{left:297.466667pt;}
.x76_c00064{left:300.266667pt;}
.xb_c00064{left:302.666667pt;}
.x6b_c00064{left:304.400000pt;}
.x19_c00064{left:305.600000pt;}
.x22_c00064{left:307.600000pt;}
.x3f_c00064{left:309.066667pt;}
.x32_c00064{left:310.133333pt;}
.x58_c00064{left:312.400000pt;}
.x2d_c00064{left:314.266667pt;}
.x1a_c00064{left:315.866667pt;}
.x7b_c00064{left:318.000000pt;}
.x9_c00064{left:319.066667pt;}
.x71_c00064{left:320.800000pt;}
.x66_c00064{left:323.733333pt;}
.x4c_c00064{left:324.666667pt;}
.x40_c00064{left:326.666667pt;}
.x27_c00064{left:328.666667pt;}
.x97_c00064{left:329.733333pt;}
.x61_c00064{left:332.400000pt;}
.x79_c00064{left:333.600000pt;}
.x82_c00064{left:335.200000pt;}
.x3a_c00064{left:337.200000pt;}
.x6c_c00064{left:338.666667pt;}
.x33_c00064{left:339.600000pt;}
.x51_c00064{left:341.200000pt;}
.x3b_c00064{left:344.533333pt;}
.x80_c00064{left:346.533333pt;}
.x6f_c00064{left:347.733333pt;}
.x75_c00064{left:351.466667pt;}
.x4d_c00064{left:354.800000pt;}
.x34_c00064{left:355.866667pt;}
.x94_c00064{left:357.466667pt;}
.xa_c00064{left:358.400000pt;}
.x41_c00064{left:359.600000pt;}
.xc9_c00064{left:386.533333pt;}
.x117_c00064{left:388.133333pt;}
.x98_c00064{left:402.533333pt;}
.xf4_c00064{left:403.466667pt;}
.xa1_c00064{left:418.533333pt;}
.x111_c00064{left:420.133333pt;}
.xbd_c00064{left:421.333333pt;}
.x99_c00064{left:422.400000pt;}
.x107_c00064{left:423.733333pt;}
.xb6_c00064{left:424.800000pt;}
.xc3_c00064{left:427.333333pt;}
.xd5_c00064{left:428.666667pt;}
.xef_c00064{left:431.066667pt;}
.xf3_c00064{left:433.866667pt;}
.xe3_c00064{left:435.866667pt;}
.xca_c00064{left:440.266667pt;}
.xf5_c00064{left:442.800000pt;}
.xe7_c00064{left:446.000000pt;}
.x10e_c00064{left:447.066667pt;}
.xc4_c00064{left:448.133333pt;}
.xc8_c00064{left:452.000000pt;}
.xdf_c00064{left:456.000000pt;}
.xe9_c00064{left:456.933333pt;}
.xaf_c00064{left:458.533333pt;}
.xfe_c00064{left:459.733333pt;}
.xa2_c00064{left:460.800000pt;}
.xec_c00064{left:462.666667pt;}
.xb0_c00064{left:466.533333pt;}
.xf6_c00064{left:467.866667pt;}
.xbe_c00064{left:469.066667pt;}
.xed_c00064{left:472.266667pt;}
.xd9_c00064{left:473.200000pt;}
.xc5_c00064{left:474.666667pt;}
.xe8_c00064{left:476.400000pt;}
.xcb_c00064{left:478.000000pt;}
.xaa_c00064{left:479.066667pt;}
.xb1_c00064{left:481.200000pt;}
.x9a_c00064{left:483.866667pt;}
.xf7_c00064{left:485.733333pt;}
.x114_c00064{left:487.333333pt;}
.xe4_c00064{left:488.400000pt;}
.xb7_c00064{left:492.000000pt;}
.xcc_c00064{left:493.066667pt;}
.x104_c00064{left:494.000000pt;}
.xe5_c00064{left:495.733333pt;}
.x10d_c00064{left:499.600000pt;}
.x103_c00064{left:502.400000pt;}
.x11b_c00064{left:503.733333pt;}
.xbf_c00064{left:506.533333pt;}
.xab_c00064{left:509.200000pt;}
.xa3_c00064{left:510.400000pt;}
.xda_c00064{left:513.200000pt;}
.xb2_c00064{left:515.066667pt;}
.xc0_c00064{left:516.400000pt;}
.xcf_c00064{left:517.866667pt;}
.x100_c00064{left:518.933333pt;}
.xcd_c00064{left:520.266667pt;}
.x9b_c00064{left:522.933333pt;}
.x118_c00064{left:525.066667pt;}
.xac_c00064{left:526.133333pt;}
.x112_c00064{left:528.666667pt;}
.xa4_c00064{left:530.266667pt;}
.xb3_c00064{left:532.400000pt;}
.xd0_c00064{left:533.866667pt;}
.xb8_c00064{left:538.400000pt;}
.xc6_c00064{left:540.266667pt;}
.x9c_c00064{left:543.066667pt;}
.x109_c00064{left:544.266667pt;}
.xdb_c00064{left:545.866667pt;}
.xf0_c00064{left:546.933333pt;}
.xd1_c00064{left:548.266667pt;}
.xe0_c00064{left:550.666667pt;}
.xea_c00064{left:551.600000pt;}
.xc7_c00064{left:553.066667pt;}
.x9d_c00064{left:561.333333pt;}
.xad_c00064{left:563.200000pt;}
.xa5_c00064{left:566.133333pt;}
.xe1_c00064{left:567.333333pt;}
.x115_c00064{left:568.266667pt;}
.xfb_c00064{left:572.800000pt;}
.x113_c00064{left:573.733333pt;}
.xd2_c00064{left:576.400000pt;}
.x105_c00064{left:580.800000pt;}
.xb9_c00064{left:582.000000pt;}
.x11c_c00064{left:584.000000pt;}
.xae_c00064{left:585.333333pt;}
.x101_c00064{left:588.400000pt;}
.x10f_c00064{left:589.866667pt;}
.xd6_c00064{left:592.400000pt;}
.xf1_c00064{left:595.600000pt;}
.xa6_c00064{left:598.133333pt;}
.x9e_c00064{left:600.666667pt;}
.xce_c00064{left:603.466667pt;}
.xdc_c00064{left:604.800000pt;}
.xb4_c00064{left:606.000000pt;}
.xf8_c00064{left:609.600000pt;}
.xe6_c00064{left:612.000000pt;}
.xd3_c00064{left:615.466667pt;}
.xd7_c00064{left:616.666667pt;}
.x119_c00064{left:618.533333pt;}
.xdd_c00064{left:621.466667pt;}
.xc1_c00064{left:623.200000pt;}
.x11a_c00064{left:627.866667pt;}
.xba_c00064{left:630.933333pt;}
.xa7_c00064{left:632.666667pt;}
.xd4_c00064{left:633.733333pt;}
.xf9_c00064{left:634.933333pt;}
.xe2_c00064{left:637.066667pt;}
.x10c_c00064{left:638.666667pt;}
.xfc_c00064{left:640.266667pt;}
.x10a_c00064{left:641.866667pt;}
.x110_c00064{left:643.600000pt;}
.x106_c00064{left:644.533333pt;}
.x9f_c00064{left:646.800000pt;}
.xa8_c00064{left:648.933333pt;}
.xeb_c00064{left:650.133333pt;}
.xde_c00064{left:651.866667pt;}
.xf2_c00064{left:652.933333pt;}
.xfa_c00064{left:653.866667pt;}
.x108_c00064{left:655.466667pt;}
.xfd_c00064{left:656.933333pt;}
.xbb_c00064{left:658.800000pt;}
.xb5_c00064{left:661.066667pt;}
.xa0_c00064{left:663.733333pt;}
.xff_c00064{left:666.000000pt;}
.xc2_c00064{left:668.000000pt;}
.x102_c00064{left:669.333333pt;}
.x2_c00064{left:670.400000pt;}
.x10b_c00064{left:674.533333pt;}
.xd8_c00064{left:675.600000pt;}
.x116_c00064{left:679.333333pt;}
.xa9_c00064{left:683.200000pt;}
.xbc_c00064{left:684.133333pt;}
.x11d_c00064{left:687.066667pt;}
.xee_c00064{left:688.533333pt;}
}





/* 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_c00065 {
    display:none;
  }
  .loading-indicator_c00065.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00065 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_c00065 { 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_c00065" -> "#page-container .classname_c00065")
 */
.pf_c00065 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00065 { /* 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_c00065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00065 { /* 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_c00065 { /* 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_c00065 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00065 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00065 {overflow:visible;}
  }
}
.c_c00065 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00065 { /* 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_c00065:after { /* webkit #35443 */
  content: '';
}
.t_c00065:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00065 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 */
}
.__c00065 { /* 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_c00065 { /* info for Javascript */
  display:none;
}
.l_c00065 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00065 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00065 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00065: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_c00065 {
    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_c00065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00065.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_c00065 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00065;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.000000;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;}
.m19_c00065{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m25_c00065{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00065{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00065{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m89_c00065{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00065{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00065{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m52_c00065{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m48_c00065{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m79_c00065{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00065{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me7_c00065{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00065{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m96_c00065{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00065{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m47_c00065{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00065{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m60_c00065{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00065{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00065{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m116_c00065{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m2_c00065{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00065{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m118_c00065{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m57_c00065{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m16_c00065{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m86_c00065{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m33_c00065{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00065{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00065{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.mde_c00065{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m77_c00065{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m42_c00065{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m94_c00065{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m74_c00065{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m97_c00065{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m27_c00065{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m32_c00065{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m112_c00065{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m119_c00065{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m31_c00065{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00065{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00065{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00065{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m66_c00065{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00065{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m81_c00065{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.me3_c00065{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00065{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00065{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md9_c00065{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00065{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00065{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00065{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m65_c00065{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00065{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00065{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00065{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00065{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00065{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.me9_c00065{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m40_c00065{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md6_c00065{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m23_c00065{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00065{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m29_c00065{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m87_c00065{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mad_c00065{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6_c00065{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00065{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00065{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m34_c00065{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00065{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00065{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m114_c00065{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m7_c00065{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00065{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00065{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00065{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00065{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00065{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00065{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00065{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m51_c00065{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00065{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m78_c00065{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me4_c00065{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m88_c00065{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9_c00065{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00065{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00065{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00065{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mef_c00065{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.maf_c00065{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.maa_c00065{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00065{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md2_c00065{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md5_c00065{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m72_c00065{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m83_c00065{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me5_c00065{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00065{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00065{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m41_c00065{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00065{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m84_c00065{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00065{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00065{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m92_c00065{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m90_c00065{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.md3_c00065{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00065{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m56_c00065{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00065{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00065{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me6_c00065{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m95_c00065{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00065{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00065{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mff_c00065{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m69_c00065{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m13_c00065{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m75_c00065{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m98_c00065{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m37_c00065{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00065{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m11_c00065{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00065{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m85_c00065{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md4_c00065{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00065{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me2_c00065{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m99_c00065{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00065{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.me_c00065{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00065{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m36_c00065{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00065{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m17_c00065{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00065{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00065{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mee_c00065{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00065{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00065{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m26_c00065{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00065{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m80_c00065{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00065{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00065{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m45_c00065{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md8_c00065{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00065{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00065{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00065{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.meb_c00065{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00065{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00065{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me1_c00065{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m50_c00065{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m49_c00065{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md7_c00065{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8_c00065{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m70_c00065{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m68_c00065{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m107_c00065{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m46_c00065{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00065{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00065{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb_c00065{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00065{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m61_c00065{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m30_c00065{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mda_c00065{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00065{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md1_c00065{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m117_c00065{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m53_c00065{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00065{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00065{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00065{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00065{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00065{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m93_c00065{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00065{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m102_c00065{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mca_c00065{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mac_c00065{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00065{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00065{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00065{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m120_c00065{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00065{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00065{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m71_c00065{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m73_c00065{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00065{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00065{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00065{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00065{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m109_c00065{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m59_c00065{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00065{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m104_c00065{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00065{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.med_c00065{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m10_c00065{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m44_c00065{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m123_c00065{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mba_c00065{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00065{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me8_c00065{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mc_c00065{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md_c00065{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00065{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00065{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mec_c00065{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m106_c00065{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m62_c00065{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00065{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m12_c00065{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m20_c00065{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m28_c00065{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me0_c00065{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md0_c00065{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00065{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m24_c00065{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m82_c00065{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m58_c00065{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mce_c00065{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m108_c00065{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00065{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00065{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m15_c00065{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m64_c00065{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m39_c00065{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m113_c00065{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m14_c00065{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m122_c00065{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m103_c00065{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m121_c00065{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00065{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00065{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mab_c00065{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m101_c00065{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m111_c00065{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf_c00065{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00065{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00065{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m63_c00065{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma_c00065{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00065{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mae_c00065{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m43_c00065{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m22_c00065{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00065{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00065{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00065{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00065{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00065{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m105_c00065{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00065{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m76_c00065{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00065{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mea_c00065{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m38_c00065{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00065{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00065{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00065{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00065{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m91_c00065{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m35_c00065{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m54_c00065{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00065{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00065{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m115_c00065{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00065{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m18_c00065{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m100_c00065{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m55_c00065{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00065{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m21_c00065{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00065{transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00065{transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);}
.m110_c00065{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(0.389750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00065{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m67_c00065{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00065{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls0_c00065{letter-spacing:0.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{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__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00065{word-spacing:-9.743935px;}
.ws7_c00065{word-spacing:-3.630573px;}
.ws8_c00065{word-spacing:0.000000px;}
.ws5_c00065{word-spacing:8.045822px;}
.ws4_c00065{word-spacing:24.491803px;}
.ws2_c00065{word-spacing:36.052632px;}
.ws1_c00065{word-spacing:40.000000px;}
.ws0_c00065{word-spacing:44.166667px;}
.ws3_c00065{word-spacing:48.503817px;}
.fc0_c00065{color:transparent;}
.fs4_c00065{font-size:54.000000px;}
.fs2_c00065{font-size:60.000000px;}
.fs3_c00065{font-size:66.000000px;}
.fs0_c00065{font-size:72.000000px;}
.fs1_c00065{font-size:84.000000px;}
.y0_c00065{bottom:0.000000px;}
.y33_c00065{bottom:194.850000px;}
.y64_c00065{bottom:196.950000px;}
.y32_c00065{bottom:209.550000px;}
.y63_c00065{bottom:214.950000px;}
.y31_c00065{bottom:223.950000px;}
.y62_c00065{bottom:236.850000px;}
.y30_c00065{bottom:238.350000px;}
.y61_c00065{bottom:254.850000px;}
.y60_c00065{bottom:272.850000px;}
.y2f_c00065{bottom:285.450000px;}
.y5f_c00065{bottom:290.850000px;}
.y2e_c00065{bottom:307.950000px;}
.y5e_c00065{bottom:313.500000px;}
.y2d_c00065{bottom:325.950000px;}
.y2c_c00065{bottom:343.950000px;}
.y5d_c00065{bottom:347.400000px;}
.y2b_c00065{bottom:361.950000px;}
.y5c_c00065{bottom:365.400000px;}
.y2a_c00065{bottom:379.650000px;}
.y29_c00065{bottom:397.650000px;}
.y5b_c00065{bottom:401.400000px;}
.y28_c00065{bottom:415.650000px;}
.y5a_c00065{bottom:419.400000px;}
.y27_c00065{bottom:433.950000px;}
.y59_c00065{bottom:437.100000px;}
.y26_c00065{bottom:451.950000px;}
.y58_c00065{bottom:464.400000px;}
.y25_c00065{bottom:470.250000px;}
.y57_c00065{bottom:482.400000px;}
.y24_c00065{bottom:488.250000px;}
.y56_c00065{bottom:500.400000px;}
.y23_c00065{bottom:506.550000px;}
.y55_c00065{bottom:518.400000px;}
.y22_c00065{bottom:524.550000px;}
.y54_c00065{bottom:536.400000px;}
.y21_c00065{bottom:542.550000px;}
.y53_c00065{bottom:554.400000px;}
.y20_c00065{bottom:560.550000px;}
.y52_c00065{bottom:572.400000px;}
.y1f_c00065{bottom:578.550000px;}
.y51_c00065{bottom:590.400000px;}
.y1e_c00065{bottom:596.550000px;}
.y50_c00065{bottom:608.100000px;}
.y1d_c00065{bottom:614.550000px;}
.y4f_c00065{bottom:626.100000px;}
.y1c_c00065{bottom:632.850000px;}
.y4e_c00065{bottom:652.650000px;}
.y1b_c00065{bottom:658.500000px;}
.y4d_c00065{bottom:671.100000px;}
.y1a_c00065{bottom:672.150000px;}
.y19_c00065{bottom:686.850000px;}
.y4c_c00065{bottom:689.100000px;}
.y18_c00065{bottom:701.250000px;}
.y4b_c00065{bottom:707.100000px;}
.y17_c00065{bottom:716.400000px;}
.y4a_c00065{bottom:725.100000px;}
.y16_c00065{bottom:730.500000px;}
.y49_c00065{bottom:743.100000px;}
.y15_c00065{bottom:756.300000px;}
.y48_c00065{bottom:761.100000px;}
.y14_c00065{bottom:778.050000px;}
.y47_c00065{bottom:779.100000px;}
.y13_c00065{bottom:796.050000px;}
.y46_c00065{bottom:797.400000px;}
.y12_c00065{bottom:813.750000px;}
.y45_c00065{bottom:815.100000px;}
.y11_c00065{bottom:831.450000px;}
.y44_c00065{bottom:833.100000px;}
.y10_c00065{bottom:849.150000px;}
.y43_c00065{bottom:851.100000px;}
.yf_c00065{bottom:867.150000px;}
.y42_c00065{bottom:869.400000px;}
.ye_c00065{bottom:886.650000px;}
.y41_c00065{bottom:887.100000px;}
.yd_c00065{bottom:902.100000px;}
.y40_c00065{bottom:909.450000px;}
.yc_c00065{bottom:920.100000px;}
.y3f_c00065{bottom:927.750000px;}
.yb_c00065{bottom:938.100000px;}
.y3e_c00065{bottom:945.750000px;}
.ya_c00065{bottom:959.700000px;}
.y3d_c00065{bottom:963.450000px;}
.y3c_c00065{bottom:981.450000px;}
.y9_c00065{bottom:994.350000px;}
.y3b_c00065{bottom:999.450000px;}
.y8_c00065{bottom:1013.400000px;}
.y3a_c00065{bottom:1017.450000px;}
.y39_c00065{bottom:1035.750000px;}
.y7_c00065{bottom:1048.050000px;}
.y38_c00065{bottom:1053.750000px;}
.y6_c00065{bottom:1066.350000px;}
.y37_c00065{bottom:1071.750000px;}
.y36_c00065{bottom:1089.750000px;}
.y5_c00065{bottom:1091.250000px;}
.y4_c00065{bottom:1111.350000px;}
.y35_c00065{bottom:1112.100000px;}
.y3_c00065{bottom:1129.650000px;}
.y34_c00065{bottom:1130.400000px;}
.y1_c00065{bottom:1153.800000px;}
.y2_c00065{bottom:1157.100000px;}
.h6_c00065{height:54.000000px;}
.h4_c00065{height:60.000000px;}
.h5_c00065{height:66.000000px;}
.h2_c00065{height:72.000000px;}
.h3_c00065{height:84.000000px;}
.h0_c00065{height:1278.719970px;}
.h1_c00065{height:1278.750000px;}
.w0_c00065{width:948.600036px;}
.w1_c00065{width:948.750000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:165.300000px;}
.x14_c00065{left:167.400000px;}
.x25_c00065{left:169.200000px;}
.x3_c00065{left:170.250000px;}
.x1a_c00065{left:172.950000px;}
.x35_c00065{left:174.300000px;}
.x4_c00065{left:183.600000px;}
.x12_c00065{left:186.000000px;}
.x44_c00065{left:187.200000px;}
.x7c_c00065{left:188.250000px;}
.x82_c00065{left:189.300000px;}
.x87_c00065{left:190.350000px;}
.x26_c00065{left:191.550000px;}
.x96_c00065{left:192.600000px;}
.x6d_c00065{left:197.250000px;}
.x1f_c00065{left:198.750000px;}
.x64_c00065{left:201.600000px;}
.x5_c00065{left:204.900000px;}
.x94_c00065{left:206.550000px;}
.x30_c00065{left:209.400000px;}
.x9d_c00065{left:210.900000px;}
.x45_c00065{left:213.450000px;}
.x5a_c00065{left:214.500000px;}
.x1b_c00065{left:215.850000px;}
.x6e_c00065{left:219.150000px;}
.x74_c00065{left:222.450000px;}
.x27_c00065{left:227.550000px;}
.x53_c00065{left:228.600000px;}
.x6a_c00065{left:229.650000px;}
.x40_c00065{left:232.050000px;}
.x7d_c00065{left:233.250000px;}
.xb_c00065{left:234.900000px;}
.x65_c00065{left:236.100000px;}
.x59_c00065{left:237.150000px;}
.x15_c00065{left:239.400000px;}
.x4b_c00065{left:241.800000px;}
.x89_c00065{left:243.750000px;}
.x13_c00065{left:245.700000px;}
.x3b_c00065{left:247.350000px;}
.x50_c00065{left:248.550000px;}
.x83_c00065{left:249.750000px;}
.xa0_c00065{left:250.800000px;}
.x77_c00065{left:251.850000px;}
.x54_c00065{left:253.800000px;}
.x90_c00065{left:255.300000px;}
.x1c_c00065{left:256.950000px;}
.xc_c00065{left:262.650000px;}
.x23_c00065{left:264.750000px;}
.x6_c00065{left:266.850000px;}
.x75_c00065{left:269.550000px;}
.x88_c00065{left:271.650000px;}
.x55_c00065{left:273.900000px;}
.x91_c00065{left:275.700000px;}
.x99_c00065{left:277.050000px;}
.x31_c00065{left:279.300000px;}
.x5b_c00065{left:282.600000px;}
.x1d_c00065{left:283.950000px;}
.x85_c00065{left:286.650000px;}
.x28_c00065{left:289.050000px;}
.x80_c00065{left:290.250000px;}
.x6b_c00065{left:291.900000px;}
.x93_c00065{left:293.850000px;}
.x7_c00065{left:294.900000px;}
.x4c_c00065{left:296.550000px;}
.x56_c00065{left:299.400000px;}
.x41_c00065{left:300.450000px;}
.x36_c00065{left:301.950000px;}
.x3c_c00065{left:303.150000px;}
.x1e_c00065{left:304.500000px;}
.x86_c00065{left:306.450000px;}
.x6f_c00065{left:308.100000px;}
.x7e_c00065{left:309.900000px;}
.x84_c00065{left:312.450000px;}
.x9f_c00065{left:313.650000px;}
.x61_c00065{left:319.050000px;}
.x92_c00065{left:320.250000px;}
.x57_c00065{left:321.300000px;}
.xd_c00065{left:323.100000px;}
.x5c_c00065{left:325.050000px;}
.x46_c00065{left:327.900000px;}
.x2c_c00065{left:332.250000px;}
.x3d_c00065{left:333.450000px;}
.x29_c00065{left:334.800000px;}
.x8e_c00065{left:336.300000px;}
.x4d_c00065{left:337.650000px;}
.x47_c00065{left:339.000000px;}
.x51_c00065{left:340.350000px;}
.x2a_c00065{left:342.300000px;}
.x5d_c00065{left:343.800000px;}
.x32_c00065{left:344.850000px;}
.x24_c00065{left:347.250000px;}
.x37_c00065{left:348.450000px;}
.x72_c00065{left:350.250000px;}
.x20_c00065{left:353.250000px;}
.x76_c00065{left:354.450000px;}
.x2d_c00065{left:355.650000px;}
.x8a_c00065{left:357.900000px;}
.xe_c00065{left:364.200000px;}
.x33_c00065{left:365.400000px;}
.x16_c00065{left:367.500000px;}
.x78_c00065{left:368.550000px;}
.x62_c00065{left:371.550000px;}
.x97_c00065{left:372.600000px;}
.x8_c00065{left:373.800000px;}
.x7f_c00065{left:376.950000px;}
.x3e_c00065{left:378.000000px;}
.x52_c00065{left:379.650000px;}
.x70_c00065{left:382.200000px;}
.x48_c00065{left:383.250000px;}
.x17_c00065{left:385.800000px;}
.x79_c00065{left:388.050000px;}
.x9c_c00065{left:391.200000px;}
.x66_c00065{left:393.450000px;}
.x3f_c00065{left:397.050000px;}
.x6c_c00065{left:398.400000px;}
.x2b_c00065{left:400.950000px;}
.x9_c00065{left:402.600000px;}
.x58_c00065{left:404.850000px;}
.x5e_c00065{left:406.050000px;}
.x71_c00065{left:408.450000px;}
.x9a_c00065{left:411.750000px;}
.x2_c00065{left:412.950000px;}
.x67_c00065{left:415.050000px;}
.x5f_c00065{left:416.550000px;}
.x9e_c00065{left:417.600000px;}
.x2e_c00065{left:418.950000px;}
.xf_c00065{left:426.150000px;}
.x38_c00065{left:430.800000px;}
.x7a_c00065{left:432.300000px;}
.x49_c00065{left:434.400000px;}
.x21_c00065{left:437.100000px;}
.x4e_c00065{left:441.000000px;}
.x68_c00065{left:442.800000px;}
.x39_c00065{left:445.950000px;}
.x10_c00065{left:447.450000px;}
.x95_c00065{left:449.250000px;}
.x8b_c00065{left:450.750000px;}
.x42_c00065{left:452.850000px;}
.x18_c00065{left:454.500000px;}
.x63_c00065{left:456.900000px;}
.xa_c00065{left:459.150000px;}
.x8f_c00065{left:460.500000px;}
.x60_c00065{left:461.850000px;}
.x3a_c00065{left:468.300000px;}
.x34_c00065{left:469.500000px;}
.x22_c00065{left:471.000000px;}
.x81_c00065{left:474.000000px;}
.x8c_c00065{left:475.800000px;}
.x19_c00065{left:476.850000px;}
.x9b_c00065{left:477.900000px;}
.x2f_c00065{left:479.100000px;}
.x7b_c00065{left:480.150000px;}
.x11_c00065{left:481.950000px;}
.x8d_c00065{left:485.850000px;}
.x4a_c00065{left:488.700000px;}
.x43_c00065{left:491.100000px;}
.x69_c00065{left:493.200000px;}
.x98_c00065{left:494.550000px;}
.x4f_c00065{left:496.050000px;}
.x73_c00065{left:504.300000px;}
.x119_c00065{left:528.450000px;}
.x137_c00065{left:530.250000px;}
.x138_c00065{left:531.300000px;}
.x106_c00065{left:544.200000px;}
.xa1_c00065{left:545.400000px;}
.xcd_c00065{left:546.450000px;}
.x135_c00065{left:547.950000px;}
.x13f_c00065{left:549.600000px;}
.x13c_c00065{left:550.650000px;}
.xf2_c00065{left:561.900000px;}
.xad_c00065{left:564.150000px;}
.x10c_c00065{left:565.800000px;}
.x100_c00065{left:567.300000px;}
.xa9_c00065{left:568.650000px;}
.x122_c00065{left:571.050000px;}
.xc4_c00065{left:573.600000px;}
.xef_c00065{left:577.800000px;}
.xdf_c00065{left:581.250000px;}
.xfd_c00065{left:582.300000px;}
.x12a_c00065{left:585.900000px;}
.x136_c00065{left:587.250000px;}
.xaa_c00065{left:589.200000px;}
.xd4_c00065{left:590.850000px;}
.xa2_c00065{left:592.500000px;}
.xc5_c00065{left:593.700000px;}
.xd8_c00065{left:595.350000px;}
.x12b_c00065{left:596.850000px;}
.x107_c00065{left:598.500000px;}
.xbd_c00065{left:599.550000px;}
.xab_c00065{left:600.750000px;}
.xae_c00065{left:601.950000px;}
.xb4_c00065{left:603.600000px;}
.xd9_c00065{left:604.650000px;}
.xfa_c00065{left:606.900000px;}
.xf3_c00065{left:608.700000px;}
.x140_c00065{left:610.200000px;}
.x123_c00065{left:612.450000px;}
.x11b_c00065{left:613.500000px;}
.x13d_c00065{left:616.500000px;}
.xd5_c00065{left:619.650000px;}
.xe5_c00065{left:623.250000px;}
.x126_c00065{left:625.650000px;}
.x10d_c00065{left:628.350000px;}
.xbe_c00065{left:629.400000px;}
.x116_c00065{left:631.500000px;}
.xc6_c00065{left:633.000000px;}
.xe6_c00065{left:635.850000px;}
.x127_c00065{left:637.200000px;}
.xaf_c00065{left:638.700000px;}
.xb5_c00065{left:639.900000px;}
.xce_c00065{left:641.850000px;}
.x109_c00065{left:643.200000px;}
.x132_c00065{left:644.850000px;}
.xe0_c00065{left:646.050000px;}
.xf4_c00065{left:647.550000px;}
.xbf_c00065{left:649.200000px;}
.xac_c00065{left:650.400000px;}
.xa3_c00065{left:652.200000px;}
.xff_c00065{left:654.450000px;}
.x131_c00065{left:655.650000px;}
.xda_c00065{left:656.850000px;}
.x10e_c00065{left:657.900000px;}
.xe7_c00065{left:661.050000px;}
.xd6_c00065{left:664.350000px;}
.x11a_c00065{left:666.000000px;}
.xb6_c00065{left:667.650000px;}
.xea_c00065{left:669.000000px;}
.xb0_c00065{left:670.350000px;}
.xf0_c00065{left:673.800000px;}
.x111_c00065{left:675.300000px;}
.xdb_c00065{left:676.950000px;}
.xb1_c00065{left:679.650000px;}
.xf5_c00065{left:680.700000px;}
.xb7_c00065{left:683.850000px;}
.x134_c00065{left:685.050000px;}
.x12e_c00065{left:686.700000px;}
.x113_c00065{left:688.500000px;}
.xf6_c00065{left:690.000000px;}
.xe1_c00065{left:692.100000px;}
.xa4_c00065{left:693.900000px;}
.x118_c00065{left:696.150000px;}
.x117_c00065{left:698.400000px;}
.x10a_c00065{left:700.800000px;}
.xa5_c00065{left:703.650000px;}
.xcf_c00065{left:705.900000px;}
.xfb_c00065{left:707.700000px;}
.xeb_c00065{left:708.900000px;}
.x102_c00065{left:710.550000px;}
.x13e_c00065{left:712.200000px;}
.x139_c00065{left:713.850000px;}
.xa6_c00065{left:715.200000px;}
.xf1_c00065{left:718.800000px;}
.xb8_c00065{left:720.600000px;}
.x13a_c00065{left:721.800000px;}
.xe2_c00065{left:724.800000px;}
.x11c_c00065{left:726.000000px;}
.xc0_c00065{left:727.350000px;}
.xc7_c00065{left:730.650000px;}
.xf7_c00065{left:732.150000px;}
.x101_c00065{left:733.350000px;}
.xd0_c00065{left:734.400000px;}
.xe8_c00065{left:736.950000px;}
.xec_c00065{left:738.750000px;}
.xb9_c00065{left:740.100000px;}
.xc8_c00065{left:744.750000px;}
.x10b_c00065{left:745.800000px;}
.x103_c00065{left:747.600000px;}
.xf8_c00065{left:749.100000px;}
.x11d_c00065{left:751.200000px;}
.x12c_c00065{left:752.400000px;}
.x124_c00065{left:755.250000px;}
.xa7_c00065{left:756.900000px;}
.xfe_c00065{left:759.150000px;}
.x120_c00065{left:760.500000px;}
.x11e_c00065{left:763.050000px;}
.xba_c00065{left:765.600000px;}
.xa8_c00065{left:767.700000px;}
.x12f_c00065{left:769.800000px;}
.x112_c00065{left:772.500000px;}
.xc9_c00065{left:774.300000px;}
.x128_c00065{left:775.500000px;}
.xf9_c00065{left:777.600000px;}
.xd1_c00065{left:779.100000px;}
.xe9_c00065{left:780.600000px;}
.xb2_c00065{left:783.300000px;}
.xbb_c00065{left:784.650000px;}
.xca_c00065{left:786.900000px;}
.xed_c00065{left:788.400000px;}
.x108_c00065{left:790.650000px;}
.x10f_c00065{left:791.850000px;}
.xc1_c00065{left:793.200000px;}
.x12d_c00065{left:796.650000px;}
.xd2_c00065{left:799.200000px;}
.xdc_c00065{left:800.550000px;}
.xe3_c00065{left:802.200000px;}
.x114_c00065{left:804.150000px;}
.xc2_c00065{left:805.500000px;}
.x121_c00065{left:808.350000px;}
.x110_c00065{left:809.550000px;}
.x129_c00065{left:813.000000px;}
.xfc_c00065{left:814.650000px;}
.x104_c00065{left:817.050000px;}
.x11f_c00065{left:819.300000px;}
.xee_c00065{left:822.900000px;}
.xb3_c00065{left:825.000000px;}
.x130_c00065{left:826.350000px;}
.x105_c00065{left:827.550000px;}
.xcb_c00065{left:829.050000px;}
.xe4_c00065{left:831.750000px;}
.x13b_c00065{left:834.300000px;}
.x115_c00065{left:836.250000px;}
.xdd_c00065{left:839.100000px;}
.xcc_c00065{left:840.150000px;}
.xbc_c00065{left:841.500000px;}
.xc3_c00065{left:843.000000px;}
.x133_c00065{left:844.650000px;}
.xd3_c00065{left:846.000000px;}
.xd7_c00065{left:851.250000px;}
.xde_c00065{left:856.350000px;}
.x125_c00065{left:863.550000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws6_c00065{word-spacing:-8.661276pt;}
.ws7_c00065{word-spacing:-3.227176pt;}
.ws8_c00065{word-spacing:0.000000pt;}
.ws5_c00065{word-spacing:7.151842pt;}
.ws4_c00065{word-spacing:21.770492pt;}
.ws2_c00065{word-spacing:32.046784pt;}
.ws1_c00065{word-spacing:35.555556pt;}
.ws0_c00065{word-spacing:39.259259pt;}
.ws3_c00065{word-spacing:43.114504pt;}
.fs4_c00065{font-size:48.000000pt;}
.fs2_c00065{font-size:53.333333pt;}
.fs3_c00065{font-size:58.666667pt;}
.fs0_c00065{font-size:64.000000pt;}
.fs1_c00065{font-size:74.666667pt;}
.y0_c00065{bottom:0.000000pt;}
.y33_c00065{bottom:173.200000pt;}
.y64_c00065{bottom:175.066667pt;}
.y32_c00065{bottom:186.266667pt;}
.y63_c00065{bottom:191.066667pt;}
.y31_c00065{bottom:199.066667pt;}
.y62_c00065{bottom:210.533333pt;}
.y30_c00065{bottom:211.866667pt;}
.y61_c00065{bottom:226.533333pt;}
.y60_c00065{bottom:242.533333pt;}
.y2f_c00065{bottom:253.733333pt;}
.y5f_c00065{bottom:258.533333pt;}
.y2e_c00065{bottom:273.733333pt;}
.y5e_c00065{bottom:278.666667pt;}
.y2d_c00065{bottom:289.733333pt;}
.y2c_c00065{bottom:305.733333pt;}
.y5d_c00065{bottom:308.800000pt;}
.y2b_c00065{bottom:321.733333pt;}
.y5c_c00065{bottom:324.800000pt;}
.y2a_c00065{bottom:337.466667pt;}
.y29_c00065{bottom:353.466667pt;}
.y5b_c00065{bottom:356.800000pt;}
.y28_c00065{bottom:369.466667pt;}
.y5a_c00065{bottom:372.800000pt;}
.y27_c00065{bottom:385.733333pt;}
.y59_c00065{bottom:388.533333pt;}
.y26_c00065{bottom:401.733333pt;}
.y58_c00065{bottom:412.800000pt;}
.y25_c00065{bottom:418.000000pt;}
.y57_c00065{bottom:428.800000pt;}
.y24_c00065{bottom:434.000000pt;}
.y56_c00065{bottom:444.800000pt;}
.y23_c00065{bottom:450.266667pt;}
.y55_c00065{bottom:460.800000pt;}
.y22_c00065{bottom:466.266667pt;}
.y54_c00065{bottom:476.800000pt;}
.y21_c00065{bottom:482.266667pt;}
.y53_c00065{bottom:492.800000pt;}
.y20_c00065{bottom:498.266667pt;}
.y52_c00065{bottom:508.800000pt;}
.y1f_c00065{bottom:514.266667pt;}
.y51_c00065{bottom:524.800000pt;}
.y1e_c00065{bottom:530.266667pt;}
.y50_c00065{bottom:540.533333pt;}
.y1d_c00065{bottom:546.266667pt;}
.y4f_c00065{bottom:556.533333pt;}
.y1c_c00065{bottom:562.533333pt;}
.y4e_c00065{bottom:580.133333pt;}
.y1b_c00065{bottom:585.333333pt;}
.y4d_c00065{bottom:596.533333pt;}
.y1a_c00065{bottom:597.466667pt;}
.y19_c00065{bottom:610.533333pt;}
.y4c_c00065{bottom:612.533333pt;}
.y18_c00065{bottom:623.333333pt;}
.y4b_c00065{bottom:628.533333pt;}
.y17_c00065{bottom:636.800000pt;}
.y4a_c00065{bottom:644.533333pt;}
.y16_c00065{bottom:649.333333pt;}
.y49_c00065{bottom:660.533333pt;}
.y15_c00065{bottom:672.266667pt;}
.y48_c00065{bottom:676.533333pt;}
.y14_c00065{bottom:691.600000pt;}
.y47_c00065{bottom:692.533333pt;}
.y13_c00065{bottom:707.600000pt;}
.y46_c00065{bottom:708.800000pt;}
.y12_c00065{bottom:723.333333pt;}
.y45_c00065{bottom:724.533333pt;}
.y11_c00065{bottom:739.066667pt;}
.y44_c00065{bottom:740.533333pt;}
.y10_c00065{bottom:754.800000pt;}
.y43_c00065{bottom:756.533333pt;}
.yf_c00065{bottom:770.800000pt;}
.y42_c00065{bottom:772.800000pt;}
.ye_c00065{bottom:788.133333pt;}
.y41_c00065{bottom:788.533333pt;}
.yd_c00065{bottom:801.866667pt;}
.y40_c00065{bottom:808.400000pt;}
.yc_c00065{bottom:817.866667pt;}
.y3f_c00065{bottom:824.666667pt;}
.yb_c00065{bottom:833.866667pt;}
.y3e_c00065{bottom:840.666667pt;}
.ya_c00065{bottom:853.066667pt;}
.y3d_c00065{bottom:856.400000pt;}
.y3c_c00065{bottom:872.400000pt;}
.y9_c00065{bottom:883.866667pt;}
.y3b_c00065{bottom:888.400000pt;}
.y8_c00065{bottom:900.800000pt;}
.y3a_c00065{bottom:904.400000pt;}
.y39_c00065{bottom:920.666667pt;}
.y7_c00065{bottom:931.600000pt;}
.y38_c00065{bottom:936.666667pt;}
.y6_c00065{bottom:947.866667pt;}
.y37_c00065{bottom:952.666667pt;}
.y36_c00065{bottom:968.666667pt;}
.y5_c00065{bottom:970.000000pt;}
.y4_c00065{bottom:987.866667pt;}
.y35_c00065{bottom:988.533333pt;}
.y3_c00065{bottom:1004.133333pt;}
.y34_c00065{bottom:1004.800000pt;}
.y1_c00065{bottom:1025.600000pt;}
.y2_c00065{bottom:1028.533333pt;}
.h6_c00065{height:48.000000pt;}
.h4_c00065{height:53.333333pt;}
.h5_c00065{height:58.666667pt;}
.h2_c00065{height:64.000000pt;}
.h3_c00065{height:74.666667pt;}
.h0_c00065{height:1136.639973pt;}
.h1_c00065{height:1136.666667pt;}
.w0_c00065{width:843.200032pt;}
.w1_c00065{width:843.333333pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:146.933333pt;}
.x14_c00065{left:148.800000pt;}
.x25_c00065{left:150.400000pt;}
.x3_c00065{left:151.333333pt;}
.x1a_c00065{left:153.733333pt;}
.x35_c00065{left:154.933333pt;}
.x4_c00065{left:163.200000pt;}
.x12_c00065{left:165.333333pt;}
.x44_c00065{left:166.400000pt;}
.x7c_c00065{left:167.333333pt;}
.x82_c00065{left:168.266667pt;}
.x87_c00065{left:169.200000pt;}
.x26_c00065{left:170.266667pt;}
.x96_c00065{left:171.200000pt;}
.x6d_c00065{left:175.333333pt;}
.x1f_c00065{left:176.666667pt;}
.x64_c00065{left:179.200000pt;}
.x5_c00065{left:182.133333pt;}
.x94_c00065{left:183.600000pt;}
.x30_c00065{left:186.133333pt;}
.x9d_c00065{left:187.466667pt;}
.x45_c00065{left:189.733333pt;}
.x5a_c00065{left:190.666667pt;}
.x1b_c00065{left:191.866667pt;}
.x6e_c00065{left:194.800000pt;}
.x74_c00065{left:197.733333pt;}
.x27_c00065{left:202.266667pt;}
.x53_c00065{left:203.200000pt;}
.x6a_c00065{left:204.133333pt;}
.x40_c00065{left:206.266667pt;}
.x7d_c00065{left:207.333333pt;}
.xb_c00065{left:208.800000pt;}
.x65_c00065{left:209.866667pt;}
.x59_c00065{left:210.800000pt;}
.x15_c00065{left:212.800000pt;}
.x4b_c00065{left:214.933333pt;}
.x89_c00065{left:216.666667pt;}
.x13_c00065{left:218.400000pt;}
.x3b_c00065{left:219.866667pt;}
.x50_c00065{left:220.933333pt;}
.x83_c00065{left:222.000000pt;}
.xa0_c00065{left:222.933333pt;}
.x77_c00065{left:223.866667pt;}
.x54_c00065{left:225.600000pt;}
.x90_c00065{left:226.933333pt;}
.x1c_c00065{left:228.400000pt;}
.xc_c00065{left:233.466667pt;}
.x23_c00065{left:235.333333pt;}
.x6_c00065{left:237.200000pt;}
.x75_c00065{left:239.600000pt;}
.x88_c00065{left:241.466667pt;}
.x55_c00065{left:243.466667pt;}
.x91_c00065{left:245.066667pt;}
.x99_c00065{left:246.266667pt;}
.x31_c00065{left:248.266667pt;}
.x5b_c00065{left:251.200000pt;}
.x1d_c00065{left:252.400000pt;}
.x85_c00065{left:254.800000pt;}
.x28_c00065{left:256.933333pt;}
.x80_c00065{left:258.000000pt;}
.x6b_c00065{left:259.466667pt;}
.x93_c00065{left:261.200000pt;}
.x7_c00065{left:262.133333pt;}
.x4c_c00065{left:263.600000pt;}
.x56_c00065{left:266.133333pt;}
.x41_c00065{left:267.066667pt;}
.x36_c00065{left:268.400000pt;}
.x3c_c00065{left:269.466667pt;}
.x1e_c00065{left:270.666667pt;}
.x86_c00065{left:272.400000pt;}
.x6f_c00065{left:273.866667pt;}
.x7e_c00065{left:275.466667pt;}
.x84_c00065{left:277.733333pt;}
.x9f_c00065{left:278.800000pt;}
.x61_c00065{left:283.600000pt;}
.x92_c00065{left:284.666667pt;}
.x57_c00065{left:285.600000pt;}
.xd_c00065{left:287.200000pt;}
.x5c_c00065{left:288.933333pt;}
.x46_c00065{left:291.466667pt;}
.x2c_c00065{left:295.333333pt;}
.x3d_c00065{left:296.400000pt;}
.x29_c00065{left:297.600000pt;}
.x8e_c00065{left:298.933333pt;}
.x4d_c00065{left:300.133333pt;}
.x47_c00065{left:301.333333pt;}
.x51_c00065{left:302.533333pt;}
.x2a_c00065{left:304.266667pt;}
.x5d_c00065{left:305.600000pt;}
.x32_c00065{left:306.533333pt;}
.x24_c00065{left:308.666667pt;}
.x37_c00065{left:309.733333pt;}
.x72_c00065{left:311.333333pt;}
.x20_c00065{left:314.000000pt;}
.x76_c00065{left:315.066667pt;}
.x2d_c00065{left:316.133333pt;}
.x8a_c00065{left:318.133333pt;}
.xe_c00065{left:323.733333pt;}
.x33_c00065{left:324.800000pt;}
.x16_c00065{left:326.666667pt;}
.x78_c00065{left:327.600000pt;}
.x62_c00065{left:330.266667pt;}
.x97_c00065{left:331.200000pt;}
.x8_c00065{left:332.266667pt;}
.x7f_c00065{left:335.066667pt;}
.x3e_c00065{left:336.000000pt;}
.x52_c00065{left:337.466667pt;}
.x70_c00065{left:339.733333pt;}
.x48_c00065{left:340.666667pt;}
.x17_c00065{left:342.933333pt;}
.x79_c00065{left:344.933333pt;}
.x9c_c00065{left:347.733333pt;}
.x66_c00065{left:349.733333pt;}
.x3f_c00065{left:352.933333pt;}
.x6c_c00065{left:354.133333pt;}
.x2b_c00065{left:356.400000pt;}
.x9_c00065{left:357.866667pt;}
.x58_c00065{left:359.866667pt;}
.x5e_c00065{left:360.933333pt;}
.x71_c00065{left:363.066667pt;}
.x9a_c00065{left:366.000000pt;}
.x2_c00065{left:367.066667pt;}
.x67_c00065{left:368.933333pt;}
.x5f_c00065{left:370.266667pt;}
.x9e_c00065{left:371.200000pt;}
.x2e_c00065{left:372.400000pt;}
.xf_c00065{left:378.800000pt;}
.x38_c00065{left:382.933333pt;}
.x7a_c00065{left:384.266667pt;}
.x49_c00065{left:386.133333pt;}
.x21_c00065{left:388.533333pt;}
.x4e_c00065{left:392.000000pt;}
.x68_c00065{left:393.600000pt;}
.x39_c00065{left:396.400000pt;}
.x10_c00065{left:397.733333pt;}
.x95_c00065{left:399.333333pt;}
.x8b_c00065{left:400.666667pt;}
.x42_c00065{left:402.533333pt;}
.x18_c00065{left:404.000000pt;}
.x63_c00065{left:406.133333pt;}
.xa_c00065{left:408.133333pt;}
.x8f_c00065{left:409.333333pt;}
.x60_c00065{left:410.533333pt;}
.x3a_c00065{left:416.266667pt;}
.x34_c00065{left:417.333333pt;}
.x22_c00065{left:418.666667pt;}
.x81_c00065{left:421.333333pt;}
.x8c_c00065{left:422.933333pt;}
.x19_c00065{left:423.866667pt;}
.x9b_c00065{left:424.800000pt;}
.x2f_c00065{left:425.866667pt;}
.x7b_c00065{left:426.800000pt;}
.x11_c00065{left:428.400000pt;}
.x8d_c00065{left:431.866667pt;}
.x4a_c00065{left:434.400000pt;}
.x43_c00065{left:436.533333pt;}
.x69_c00065{left:438.400000pt;}
.x98_c00065{left:439.600000pt;}
.x4f_c00065{left:440.933333pt;}
.x73_c00065{left:448.266667pt;}
.x119_c00065{left:469.733333pt;}
.x137_c00065{left:471.333333pt;}
.x138_c00065{left:472.266667pt;}
.x106_c00065{left:483.733333pt;}
.xa1_c00065{left:484.800000pt;}
.xcd_c00065{left:485.733333pt;}
.x135_c00065{left:487.066667pt;}
.x13f_c00065{left:488.533333pt;}
.x13c_c00065{left:489.466667pt;}
.xf2_c00065{left:499.466667pt;}
.xad_c00065{left:501.466667pt;}
.x10c_c00065{left:502.933333pt;}
.x100_c00065{left:504.266667pt;}
.xa9_c00065{left:505.466667pt;}
.x122_c00065{left:507.600000pt;}
.xc4_c00065{left:509.866667pt;}
.xef_c00065{left:513.600000pt;}
.xdf_c00065{left:516.666667pt;}
.xfd_c00065{left:517.600000pt;}
.x12a_c00065{left:520.800000pt;}
.x136_c00065{left:522.000000pt;}
.xaa_c00065{left:523.733333pt;}
.xd4_c00065{left:525.200000pt;}
.xa2_c00065{left:526.666667pt;}
.xc5_c00065{left:527.733333pt;}
.xd8_c00065{left:529.200000pt;}
.x12b_c00065{left:530.533333pt;}
.x107_c00065{left:532.000000pt;}
.xbd_c00065{left:532.933333pt;}
.xab_c00065{left:534.000000pt;}
.xae_c00065{left:535.066667pt;}
.xb4_c00065{left:536.533333pt;}
.xd9_c00065{left:537.466667pt;}
.xfa_c00065{left:539.466667pt;}
.xf3_c00065{left:541.066667pt;}
.x140_c00065{left:542.400000pt;}
.x123_c00065{left:544.400000pt;}
.x11b_c00065{left:545.333333pt;}
.x13d_c00065{left:548.000000pt;}
.xd5_c00065{left:550.800000pt;}
.xe5_c00065{left:554.000000pt;}
.x126_c00065{left:556.133333pt;}
.x10d_c00065{left:558.533333pt;}
.xbe_c00065{left:559.466667pt;}
.x116_c00065{left:561.333333pt;}
.xc6_c00065{left:562.666667pt;}
.xe6_c00065{left:565.200000pt;}
.x127_c00065{left:566.400000pt;}
.xaf_c00065{left:567.733333pt;}
.xb5_c00065{left:568.800000pt;}
.xce_c00065{left:570.533333pt;}
.x109_c00065{left:571.733333pt;}
.x132_c00065{left:573.200000pt;}
.xe0_c00065{left:574.266667pt;}
.xf4_c00065{left:575.600000pt;}
.xbf_c00065{left:577.066667pt;}
.xac_c00065{left:578.133333pt;}
.xa3_c00065{left:579.733333pt;}
.xff_c00065{left:581.733333pt;}
.x131_c00065{left:582.800000pt;}
.xda_c00065{left:583.866667pt;}
.x10e_c00065{left:584.800000pt;}
.xe7_c00065{left:587.600000pt;}
.xd6_c00065{left:590.533333pt;}
.x11a_c00065{left:592.000000pt;}
.xb6_c00065{left:593.466667pt;}
.xea_c00065{left:594.666667pt;}
.xb0_c00065{left:595.866667pt;}
.xf0_c00065{left:598.933333pt;}
.x111_c00065{left:600.266667pt;}
.xdb_c00065{left:601.733333pt;}
.xb1_c00065{left:604.133333pt;}
.xf5_c00065{left:605.066667pt;}
.xb7_c00065{left:607.866667pt;}
.x134_c00065{left:608.933333pt;}
.x12e_c00065{left:610.400000pt;}
.x113_c00065{left:612.000000pt;}
.xf6_c00065{left:613.333333pt;}
.xe1_c00065{left:615.200000pt;}
.xa4_c00065{left:616.800000pt;}
.x118_c00065{left:618.800000pt;}
.x117_c00065{left:620.800000pt;}
.x10a_c00065{left:622.933333pt;}
.xa5_c00065{left:625.466667pt;}
.xcf_c00065{left:627.466667pt;}
.xfb_c00065{left:629.066667pt;}
.xeb_c00065{left:630.133333pt;}
.x102_c00065{left:631.600000pt;}
.x13e_c00065{left:633.066667pt;}
.x139_c00065{left:634.533333pt;}
.xa6_c00065{left:635.733333pt;}
.xf1_c00065{left:638.933333pt;}
.xb8_c00065{left:640.533333pt;}
.x13a_c00065{left:641.600000pt;}
.xe2_c00065{left:644.266667pt;}
.x11c_c00065{left:645.333333pt;}
.xc0_c00065{left:646.533333pt;}
.xc7_c00065{left:649.466667pt;}
.xf7_c00065{left:650.800000pt;}
.x101_c00065{left:651.866667pt;}
.xd0_c00065{left:652.800000pt;}
.xe8_c00065{left:655.066667pt;}
.xec_c00065{left:656.666667pt;}
.xb9_c00065{left:657.866667pt;}
.xc8_c00065{left:662.000000pt;}
.x10b_c00065{left:662.933333pt;}
.x103_c00065{left:664.533333pt;}
.xf8_c00065{left:665.866667pt;}
.x11d_c00065{left:667.733333pt;}
.x12c_c00065{left:668.800000pt;}
.x124_c00065{left:671.333333pt;}
.xa7_c00065{left:672.800000pt;}
.xfe_c00065{left:674.800000pt;}
.x120_c00065{left:676.000000pt;}
.x11e_c00065{left:678.266667pt;}
.xba_c00065{left:680.533333pt;}
.xa8_c00065{left:682.400000pt;}
.x12f_c00065{left:684.266667pt;}
.x112_c00065{left:686.666667pt;}
.xc9_c00065{left:688.266667pt;}
.x128_c00065{left:689.333333pt;}
.xf9_c00065{left:691.200000pt;}
.xd1_c00065{left:692.533333pt;}
.xe9_c00065{left:693.866667pt;}
.xb2_c00065{left:696.266667pt;}
.xbb_c00065{left:697.466667pt;}
.xca_c00065{left:699.466667pt;}
.xed_c00065{left:700.800000pt;}
.x108_c00065{left:702.800000pt;}
.x10f_c00065{left:703.866667pt;}
.xc1_c00065{left:705.066667pt;}
.x12d_c00065{left:708.133333pt;}
.xd2_c00065{left:710.400000pt;}
.xdc_c00065{left:711.600000pt;}
.xe3_c00065{left:713.066667pt;}
.x114_c00065{left:714.800000pt;}
.xc2_c00065{left:716.000000pt;}
.x121_c00065{left:718.533333pt;}
.x110_c00065{left:719.600000pt;}
.x129_c00065{left:722.666667pt;}
.xfc_c00065{left:724.133333pt;}
.x104_c00065{left:726.266667pt;}
.x11f_c00065{left:728.266667pt;}
.xee_c00065{left:731.466667pt;}
.xb3_c00065{left:733.333333pt;}
.x130_c00065{left:734.533333pt;}
.x105_c00065{left:735.600000pt;}
.xcb_c00065{left:736.933333pt;}
.xe4_c00065{left:739.333333pt;}
.x13b_c00065{left:741.600000pt;}
.x115_c00065{left:743.333333pt;}
.xdd_c00065{left:745.866667pt;}
.xcc_c00065{left:746.800000pt;}
.xbc_c00065{left:748.000000pt;}
.xc3_c00065{left:749.333333pt;}
.x133_c00065{left:750.800000pt;}
.xd3_c00065{left:752.000000pt;}
.xd7_c00065{left:756.666667pt;}
.xde_c00065{left:761.200000pt;}
.x125_c00065{left:767.600000pt;}
}





/* 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_c00066 {
    display:none;
  }
  .loading-indicator_c00066.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00066 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_c00066 { 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_c00066" -> "#page-container .classname_c00066")
 */
.pf_c00066 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00066 { /* 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_c00066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00066 { /* 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_c00066 { /* 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_c00066 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00066 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00066 {overflow:visible;}
  }
}
.c_c00066 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00066 { /* 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_c00066:after { /* webkit #35443 */
  content: '';
}
.t_c00066:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00066 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 */
}
.__c00066 { /* 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_c00066 { /* info for Javascript */
  display:none;
}
.l_c00066 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00066 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00066 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00066: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_c00066 {
    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_c00066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00066.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_c00066 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00066;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.000000;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;}
.m10a_c00066{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00066{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00066{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00066{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00066{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00066{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m25_c00066{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m23_c00066{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md8_c00066{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m22_c00066{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m110_c00066{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m24_c00066{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00066{transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00066{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m98_c00066{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mc_c00066{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m33_c00066{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m19_c00066{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mae_c00066{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00066{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m26_c00066{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m34_c00066{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m72_c00066{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m9_c00066{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00066{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.mef_c00066{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00066{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00066{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m6_c00066{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.maf_c00066{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00066{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00066{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00066{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m17_c00066{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00066{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m13_c00066{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me9_c00066{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00066{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00066{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m77_c00066{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m37_c00066{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m107_c00066{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m7_c00066{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00066{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m106_c00066{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00066{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m87_c00066{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m96_c00066{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00066{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m85_c00066{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00066{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m99_c00066{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00066{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00066{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00066{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00066{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mac_c00066{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00066{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m89_c00066{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m88_c00066{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00066{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00066{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8_c00066{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00066{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00066{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md6_c00066{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m40_c00066{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00066{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m83_c00066{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00066{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00066{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m71_c00066{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m109_c00066{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m46_c00066{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00066{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00066{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mff_c00066{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mab_c00066{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m108_c00066{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m76_c00066{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me_c00066{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md0_c00066{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00066{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m80_c00066{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00066{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m30_c00066{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00066{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m70_c00066{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m67_c00066{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me1_c00066{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00066{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m21_c00066{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00066{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00066{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00066{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00066{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00066{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md9_c00066{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00066{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m90_c00066{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m56_c00066{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m91_c00066{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00066{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m20_c00066{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00066{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m52_c00066{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00066{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00066{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00066{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m92_c00066{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00066{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00066{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m73_c00066{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m45_c00066{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m79_c00066{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m81_c00066{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m74_c00066{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m44_c00066{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00066{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00066{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m61_c00066{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mca_c00066{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md3_c00066{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me0_c00066{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.md2_c00066{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m69_c00066{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00066{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m93_c00066{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00066{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mda_c00066{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00066{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00066{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00066{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00066{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m29_c00066{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m50_c00066{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00066{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mad_c00066{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00066{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mee_c00066{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md5_c00066{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00066{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00066{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00066{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00066{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m32_c00066{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m16_c00066{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00066{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m41_c00066{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m84_c00066{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me3_c00066{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m49_c00066{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m62_c00066{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00066{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m31_c00066{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5_c00066{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00066{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m43_c00066{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00066{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m100_c00066{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m104_c00066{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb_c00066{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m95_c00066{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m75_c00066{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00066{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m68_c00066{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00066{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mce_c00066{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m60_c00066{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00066{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m12_c00066{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00066{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00066{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00066{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00066{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00066{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m64_c00066{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00066{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m59_c00066{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mde_c00066{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00066{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md1_c00066{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m14_c00066{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m66_c00066{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00066{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m78_c00066{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m94_c00066{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00066{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m101_c00066{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4_c00066{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m48_c00066{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m58_c00066{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m47_c00066{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00066{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00066{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m36_c00066{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00066{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00066{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m65_c00066{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md_c00066{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00066{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m105_c00066{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m38_c00066{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m42_c00066{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00066{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.me5_c00066{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00066{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00066{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me2_c00066{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m103_c00066{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m39_c00066{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00066{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00066{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.me6_c00066{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00066{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m55_c00066{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md7_c00066{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00066{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00066{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md4_c00066{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma_c00066{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m97_c00066{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27_c00066{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf_c00066{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.med_c00066{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m82_c00066{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m53_c00066{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00066{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m63_c00066{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00066{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00066{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.me4_c00066{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m57_c00066{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m10_c00066{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00066{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00066{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00066{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m102_c00066{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00066{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00066{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00066{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m11_c00066{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00066{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m54_c00066{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.maa_c00066{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00066{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m111_c00066{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00066{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00066{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00066{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mba_c00066{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m51_c00066{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.mec_c00066{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m86_c00066{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00066{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00066{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00066{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me7_c00066{transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);}
.meb_c00066{transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);}
.me8_c00066{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m15_c00066{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.427750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00066{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00066{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m113_c00066{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00066{transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);}
.mea_c00066{transform:matrix(0.452750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452750,0.000000,0.000000,0.250000,0,0);}
.m35_c00066{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m114_c00066{transform:matrix(0.484250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484250,0.000000,0.000000,0.250000,0,0);}
.m28_c00066{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m112_c00066{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00066{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00066{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m115_c00066{transform:matrix(0.595750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00066{transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls0_c00066{letter-spacing:0.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{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__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00066{word-spacing:-9.000000px;}
.ws7_c00066{word-spacing:-6.460123px;}
.wsa_c00066{word-spacing:0.000000px;}
.ws6_c00066{word-spacing:1.781659px;}
.ws9_c00066{word-spacing:11.333333px;}
.ws3_c00066{word-spacing:15.000000px;}
.ws5_c00066{word-spacing:16.785714px;}
.ws1_c00066{word-spacing:34.642857px;}
.ws4_c00066{word-spacing:43.571429px;}
.ws0_c00066{word-spacing:44.166667px;}
.ws2_c00066{word-spacing:55.476190px;}
._1_c00066{width:55.714286px;}
._2_c00066{width:68.214286px;}
._0_c00066{width:1020.000000px;}
.fc0_c00066{color:transparent;}
.fs7_c00066{font-size:24.000000px;}
.fs5_c00066{font-size:42.000000px;}
.fs6_c00066{font-size:48.000000px;}
.fs3_c00066{font-size:54.000000px;}
.fs2_c00066{font-size:60.000000px;}
.fs1_c00066{font-size:66.000000px;}
.fs4_c00066{font-size:72.000000px;}
.fs0_c00066{font-size:84.000000px;}
.y0_c00066{bottom:0.000000px;}
.y6a_c00066{bottom:168.600000px;}
.y38_c00066{bottom:186.450000px;}
.y69_c00066{bottom:186.900000px;}
.y37_c00066{bottom:211.350000px;}
.y68_c00066{bottom:213.750000px;}
.y36_c00066{bottom:226.050000px;}
.y67_c00066{bottom:231.450000px;}
.y35_c00066{bottom:240.900000px;}
.y66_c00066{bottom:249.450000px;}
.y34_c00066{bottom:259.800000px;}
.y65_c00066{bottom:267.450000px;}
.y33_c00066{bottom:279.300000px;}
.y64_c00066{bottom:285.450000px;}
.y32_c00066{bottom:301.650000px;}
.y63_c00066{bottom:311.700000px;}
.y31_c00066{bottom:319.350000px;}
.y62_c00066{bottom:330.000000px;}
.y30_c00066{bottom:336.900000px;}
.y61_c00066{bottom:347.700000px;}
.y2f_c00066{bottom:354.900000px;}
.y60_c00066{bottom:365.700000px;}
.y2e_c00066{bottom:372.600000px;}
.y5f_c00066{bottom:383.700000px;}
.y2d_c00066{bottom:394.500000px;}
.y5e_c00066{bottom:401.400000px;}
.y2c_c00066{bottom:417.000000px;}
.y5d_c00066{bottom:419.400000px;}
.y2b_c00066{bottom:435.300000px;}
.y5c_c00066{bottom:446.100000px;}
.y2a_c00066{bottom:453.300000px;}
.y5b_c00066{bottom:464.400000px;}
.y29_c00066{bottom:471.300000px;}
.y28_c00066{bottom:493.500000px;}
.y5a_c00066{bottom:497.850000px;}
.y27_c00066{bottom:511.500000px;}
.y59_c00066{bottom:512.700000px;}
.y58_c00066{bottom:525.600000px;}
.y26_c00066{bottom:529.800000px;}
.y57_c00066{bottom:545.400000px;}
.y25_c00066{bottom:547.500000px;}
.y56_c00066{bottom:563.400000px;}
.y24_c00066{bottom:570.000000px;}
.y55_c00066{bottom:581.400000px;}
.y23_c00066{bottom:588.300000px;}
.y54_c00066{bottom:599.400000px;}
.y22_c00066{bottom:606.300000px;}
.y53_c00066{bottom:617.400000px;}
.y21_c00066{bottom:624.300000px;}
.y52_c00066{bottom:635.100000px;}
.y20_c00066{bottom:642.300000px;}
.y51_c00066{bottom:653.100000px;}
.y1f_c00066{bottom:664.500000px;}
.y50_c00066{bottom:680.100000px;}
.y1e_c00066{bottom:682.500000px;}
.y1d_c00066{bottom:700.500000px;}
.y4f_c00066{bottom:711.300000px;}
.y1c_c00066{bottom:718.500000px;}
.y1b_c00066{bottom:736.500000px;}
.y4e_c00066{bottom:742.350000px;}
.y1a_c00066{bottom:754.200000px;}
.y4d_c00066{bottom:760.650000px;}
.y19_c00066{bottom:772.200000px;}
.y4c_c00066{bottom:778.650000px;}
.y18_c00066{bottom:790.200000px;}
.y4b_c00066{bottom:796.650000px;}
.y17_c00066{bottom:808.200000px;}
.y4a_c00066{bottom:814.350000px;}
.y16_c00066{bottom:830.400000px;}
.y49_c00066{bottom:832.350000px;}
.y15_c00066{bottom:848.400000px;}
.y48_c00066{bottom:850.350000px;}
.y14_c00066{bottom:866.400000px;}
.y47_c00066{bottom:876.900000px;}
.y13_c00066{bottom:878.700000px;}
.y12_c00066{bottom:884.850000px;}
.y46_c00066{bottom:894.900000px;}
.y11_c00066{bottom:902.550000px;}
.y45_c00066{bottom:912.900000px;}
.y10_c00066{bottom:920.550000px;}
.y44_c00066{bottom:930.600000px;}
.yf_c00066{bottom:938.850000px;}
.y43_c00066{bottom:948.600000px;}
.ye_c00066{bottom:963.750000px;}
.y42_c00066{bottom:966.600000px;}
.yd_c00066{bottom:978.150000px;}
.y41_c00066{bottom:984.600000px;}
.yc_c00066{bottom:992.550000px;}
.y40_c00066{bottom:1002.300000px;}
.yb_c00066{bottom:1007.250000px;}
.ya_c00066{bottom:1021.650000px;}
.y3f_c00066{bottom:1029.300000px;}
.y9_c00066{bottom:1036.050000px;}
.y3e_c00066{bottom:1047.300000px;}
.y8_c00066{bottom:1050.450000px;}
.y7_c00066{bottom:1064.850000px;}
.y3d_c00066{bottom:1065.300000px;}
.y6_c00066{bottom:1079.250000px;}
.y3c_c00066{bottom:1083.300000px;}
.y5_c00066{bottom:1093.650000px;}
.y3b_c00066{bottom:1101.300000px;}
.y4_c00066{bottom:1108.350000px;}
.y3a_c00066{bottom:1118.850000px;}
.y3_c00066{bottom:1123.500000px;}
.y2_c00066{bottom:1145.550000px;}
.y1_c00066{bottom:1147.350000px;}
.y39_c00066{bottom:1265.100000px;}
.y6b_c00066{bottom:1266.450000px;}
.h9_c00066{height:24.000000px;}
.h7_c00066{height:42.000000px;}
.h8_c00066{height:48.000000px;}
.h5_c00066{height:54.000000px;}
.h4_c00066{height:60.000000px;}
.h3_c00066{height:66.000000px;}
.h6_c00066{height:72.000000px;}
.h2_c00066{height:84.000000px;}
.h1_c00066{height:1272.750000px;}
.h0_c00066{height:1272.960022px;}
.w0_c00066{width:948.600036px;}
.w1_c00066{width:948.750000px;}
.x0_c00066{left:0.000000px;}
.x3_c00066{left:71.700000px;}
.x4b_c00066{left:73.050000px;}
.x8d_c00066{left:74.550000px;}
.xac_c00066{left:75.600000px;}
.x9d_c00066{left:76.650000px;}
.x13_c00066{left:84.300000px;}
.xb_c00066{left:85.800000px;}
.x52_c00066{left:89.400000px;}
.x60_c00066{left:90.750000px;}
.x63_c00066{left:92.100000px;}
.x7b_c00066{left:93.150000px;}
.xa9_c00066{left:94.350000px;}
.x17_c00066{left:99.750000px;}
.x41_c00066{left:100.950000px;}
.x6a_c00066{left:109.500000px;}
.x75_c00066{left:111.000000px;}
.xc_c00066{left:113.100000px;}
.xa6_c00066{left:114.450000px;}
.x21_c00066{left:115.950000px;}
.x97_c00066{left:117.000000px;}
.x6f_c00066{left:118.200000px;}
.x68_c00066{left:120.300000px;}
.x18_c00066{left:121.350000px;}
.x36_c00066{left:122.400000px;}
.x9a_c00066{left:124.800000px;}
.x3a_c00066{left:126.600000px;}
.x5b_c00066{left:130.650000px;}
.x8c_c00066{left:132.450000px;}
.x4_c00066{left:133.950000px;}
.x9e_c00066{left:135.750000px;}
.x9b_c00066{left:137.400000px;}
.x19_c00066{left:139.650000px;}
.x86_c00066{left:141.450000px;}
.x42_c00066{left:142.950000px;}
.x2e_c00066{left:144.000000px;}
.x53_c00066{left:145.200000px;}
.x37_c00066{left:147.600000px;}
.x3b_c00066{left:149.100000px;}
.x8a_c00066{left:151.500000px;}
.xd_c00066{left:153.450000px;}
.x7f_c00066{left:154.800000px;}
.x3c_c00066{left:157.050000px;}
.x43_c00066{left:159.150000px;}
.x4c_c00066{left:160.950000px;}
.x22_c00066{left:162.000000px;}
.xe_c00066{left:164.250000px;}
.x66_c00066{left:165.600000px;}
.x47_c00066{left:167.550000px;}
.x91_c00066{left:168.750000px;}
.x8f_c00066{left:169.950000px;}
.x3d_c00066{left:171.750000px;}
.x8e_c00066{left:174.300000px;}
.x9f_c00066{left:176.400000px;}
.x92_c00066{left:177.750000px;}
.x3e_c00066{left:178.950000px;}
.x1a_c00066{left:181.050000px;}
.x48_c00066{left:183.000000px;}
.x9c_c00066{left:186.000000px;}
.x70_c00066{left:188.100000px;}
.x1b_c00066{left:191.550000px;}
.xad_c00066{left:193.800000px;}
.x93_c00066{left:195.750000px;}
.x44_c00066{left:198.750000px;}
.xb1_c00066{left:199.800000px;}
.x80_c00066{left:200.850000px;}
.x38_c00066{left:203.400000px;}
.x69_c00066{left:206.100000px;}
.xf_c00066{left:207.450000px;}
.x33_c00066{left:209.550000px;}
.x4d_c00066{left:210.600000px;}
.x56_c00066{left:211.650000px;}
.x2f_c00066{left:214.500000px;}
.x34_c00066{left:216.450000px;}
.x5c_c00066{left:218.850000px;}
.x96_c00066{left:220.350000px;}
.x61_c00066{left:222.150000px;}
.x81_c00066{left:223.200000px;}
.x10_c00066{left:224.700000px;}
.x30_c00066{left:226.050000px;}
.x45_c00066{left:227.550000px;}
.x7c_c00066{left:229.650000px;}
.x23_c00066{left:231.150000px;}
.xa2_c00066{left:232.200000px;}
.x1c_c00066{left:233.250000px;}
.xae_c00066{left:234.450000px;}
.x5_c00066{left:236.250000px;}
.x24_c00066{left:238.050000px;}
.x71_c00066{left:240.000000px;}
.x8b_c00066{left:241.050000px;}
.x25_c00066{left:245.550000px;}
.x1d_c00066{left:247.350000px;}
.x77_c00066{left:249.000000px;}
.x7d_c00066{left:250.500000px;}
.x5f_c00066{left:252.450000px;}
.x11_c00066{left:257.100000px;}
.x26_c00066{left:259.950000px;}
.x5d_c00066{left:261.450000px;}
.x4e_c00066{left:263.550000px;}
.x39_c00066{left:264.600000px;}
.xa0_c00066{left:265.650000px;}
.x46_c00066{left:268.950000px;}
.x31_c00066{left:270.000000px;}
.x49_c00066{left:271.200000px;}
.xb2_c00066{left:273.300000px;}
.x27_c00066{left:274.350000px;}
.x94_c00066{left:275.400000px;}
.x12_c00066{left:277.200000px;}
.x1e_c00066{left:279.450000px;}
.x28_c00066{left:281.550000px;}
.xa3_c00066{left:283.350000px;}
.x4f_c00066{left:285.150000px;}
.x32_c00066{left:286.500000px;}
.x57_c00066{left:287.550000px;}
.x6_c00066{left:289.950000px;}
.x98_c00066{left:292.650000px;}
.x72_c00066{left:293.700000px;}
.x3f_c00066{left:295.950000px;}
.x29_c00066{left:297.000000px;}
.x1f_c00066{left:298.500000px;}
.x58_c00066{left:299.850000px;}
.x5e_c00066{left:301.050000px;}
.x6b_c00066{left:302.100000px;}
.x2a_c00066{left:303.900000px;}
.x87_c00066{left:305.250000px;}
.x83_c00066{left:307.200000px;}
.x73_c00066{left:308.850000px;}
.x7_c00066{left:310.050000px;}
.x2b_c00066{left:311.850000px;}
.x95_c00066{left:313.200000px;}
.x1_c00066{left:314.700000px;}
.x79_c00066{left:316.500000px;}
.x2c_c00066{left:319.050000px;}
.x64_c00066{left:321.150000px;}
.x85_c00066{left:323.550000px;}
.x6c_c00066{left:325.500000px;}
.x8_c00066{left:328.350000px;}
.x59_c00066{left:330.450000px;}
.x78_c00066{left:331.650000px;}
.x54_c00066{left:333.000000px;}
.x40_c00066{left:337.050000px;}
.x14_c00066{left:338.100000px;}
.x4a_c00066{left:339.450000px;}
.x7a_c00066{left:342.300000px;}
.xb3_c00066{left:344.250000px;}
.x88_c00066{left:345.900000px;}
.x99_c00066{left:348.000000px;}
.x7e_c00066{left:349.200000px;}
.x62_c00066{left:350.250000px;}
.xa7_c00066{left:351.300000px;}
.x84_c00066{left:354.000000px;}
.xaa_c00066{left:355.350000px;}
.xa4_c00066{left:356.400000px;}
.xa1_c00066{left:358.350000px;}
.x9_c00066{left:359.700000px;}
.x5a_c00066{left:360.750000px;}
.x6d_c00066{left:363.000000px;}
.x20_c00066{left:364.350000px;}
.x55_c00066{left:365.400000px;}
.x2d_c00066{left:366.900000px;}
.x15_c00066{left:368.400000px;}
.x50_c00066{left:370.200000px;}
.x67_c00066{left:372.000000px;}
.x76_c00066{left:375.150000px;}
.x89_c00066{left:377.250000px;}
.xaf_c00066{left:380.250000px;}
.x65_c00066{left:381.600000px;}
.xa8_c00066{left:382.950000px;}
.x82_c00066{left:385.650000px;}
.x51_c00066{left:387.150000px;}
.xab_c00066{left:389.550000px;}
.x6e_c00066{left:391.500000px;}
.xa_c00066{left:393.600000px;}
.x16_c00066{left:396.450000px;}
.x74_c00066{left:398.550000px;}
.x90_c00066{left:402.300000px;}
.xa5_c00066{left:403.950000px;}
.x35_c00066{left:415.200000px;}
.xb0_c00066{left:422.850000px;}
.x11c_c00066{left:433.050000px;}
.x13e_c00066{left:434.550000px;}
.x156_c00066{left:436.350000px;}
.xb5_c00066{left:447.900000px;}
.xc6_c00066{left:448.950000px;}
.xfc_c00066{left:450.300000px;}
.x125_c00066{left:451.800000px;}
.x14f_c00066{left:452.850000px;}
.x120_c00066{left:461.550000px;}
.x13c_c00066{left:462.600000px;}
.xdf_c00066{left:466.500000px;}
.x104_c00066{left:467.700000px;}
.x122_c00066{left:469.800000px;}
.x119_c00066{left:471.150000px;}
.xb6_c00066{left:472.350000px;}
.x149_c00066{left:473.850000px;}
.xcf_c00066{left:475.200000px;}
.x13f_c00066{left:477.450000px;}
.x111_c00066{left:478.950000px;}
.xf2_c00066{left:481.500000px;}
.x10d_c00066{left:485.100000px;}
.xf6_c00066{left:486.150000px;}
.x133_c00066{left:487.500000px;}
.xec_c00066{left:489.600000px;}
.xbf_c00066{left:491.700000px;}
.xb4_c00066{left:493.950000px;}
.x145_c00066{left:496.800000px;}
.x11d_c00066{left:499.350000px;}
.xfd_c00066{left:501.450000px;}
.x101_c00066{left:503.250000px;}
.xe0_c00066{left:504.300000px;}
.x137_c00066{left:506.850000px;}
.xb7_c00066{left:510.450000px;}
.xc7_c00066{left:512.700000px;}
.x105_c00066{left:514.500000px;}
.xd6_c00066{left:516.450000px;}
.x11e_c00066{left:521.700000px;}
.x12b_c00066{left:522.750000px;}
.x10a_c00066{left:525.000000px;}
.xd7_c00066{left:526.200000px;}
.xed_c00066{left:529.500000px;}
.x146_c00066{left:531.300000px;}
.x11a_c00066{left:533.100000px;}
.xd0_c00066{left:536.400000px;}
.xc8_c00066{left:538.200000px;}
.x102_c00066{left:539.550000px;}
.x115_c00066{left:540.750000px;}
.x134_c00066{left:541.950000px;}
.xe7_c00066{left:543.000000px;}
.x112_c00066{left:544.800000px;}
.x138_c00066{left:546.450000px;}
.xc0_c00066{left:548.250000px;}
.xd8_c00066{left:550.350000px;}
.x123_c00066{left:552.300000px;}
.xe8_c00066{left:554.850000px;}
.xdd_c00066{left:557.100000px;}
.xf3_c00066{left:558.900000px;}
.x106_c00066{left:560.550000px;}
.x139_c00066{left:562.350000px;}
.xe1_c00066{left:564.000000px;}
.xd1_c00066{left:565.500000px;}
.x127_c00066{left:567.600000px;}
.xc1_c00066{left:569.550000px;}
.x10e_c00066{left:570.750000px;}
.x12e_c00066{left:573.300000px;}
.xb8_c00066{left:574.950000px;}
.x124_c00066{left:576.750000px;}
.x155_c00066{left:580.200000px;}
.x135_c00066{left:583.050000px;}
.xe2_c00066{left:585.600000px;}
.xc9_c00066{left:586.800000px;}
.xe9_c00066{left:588.300000px;}
.xb9_c00066{left:590.100000px;}
.x11f_c00066{left:591.150000px;}
.x157_c00066{left:592.200000px;}
.x147_c00066{left:593.250000px;}
.x13a_c00066{left:595.500000px;}
.x126_c00066{left:597.150000px;}
.x152_c00066{left:598.200000px;}
.xf7_c00066{left:601.350000px;}
.x14c_c00066{left:603.150000px;}
.xc2_c00066{left:604.500000px;}
.x141_c00066{left:605.550000px;}
.xea_c00066{left:607.350000px;}
.xba_c00066{left:609.150000px;}
.xee_c00066{left:611.700000px;}
.x103_c00066{left:613.650000px;}
.xca_c00066{left:616.350000px;}
.x107_c00066{left:617.850000px;}
.x12f_c00066{left:619.800000px;}
.x10b_c00066{left:622.650000px;}
.x128_c00066{left:624.450000px;}
.xe3_c00066{left:625.500000px;}
.xde_c00066{left:626.550000px;}
.xfe_c00066{left:628.500000px;}
.x14b_c00066{left:629.550000px;}
.xd2_c00066{left:632.700000px;}
.x153_c00066{left:634.500000px;}
.xcb_c00066{left:636.900000px;}
.xeb_c00066{left:637.950000px;}
.xd9_c00066{left:640.350000px;}
.x142_c00066{left:642.300000px;}
.x121_c00066{left:644.700000px;}
.xf8_c00066{left:647.400000px;}
.xe4_c00066{left:649.650000px;}
.x14a_c00066{left:651.600000px;}
.xd3_c00066{left:654.300000px;}
.xbb_c00066{left:655.650000px;}
.x116_c00066{left:658.350000px;}
.x11b_c00066{left:659.700000px;}
.xef_c00066{left:662.100000px;}
.x113_c00066{left:663.300000px;}
.x13d_c00066{left:664.800000px;}
.xf9_c00066{left:667.200000px;}
.xcc_c00066{left:668.550000px;}
.xc3_c00066{left:671.100000px;}
.x151_c00066{left:673.500000px;}
.x148_c00066{left:674.700000px;}
.x117_c00066{left:676.050000px;}
.x130_c00066{left:677.100000px;}
.xe5_c00066{left:678.150000px;}
.xda_c00066{left:680.250000px;}
.x154_c00066{left:681.600000px;}
.x114_c00066{left:683.100000px;}
.xff_c00066{left:684.300000px;}
.xbc_c00066{left:686.550000px;}
.xe6_c00066{left:688.950000px;}
.xd4_c00066{left:690.600000px;}
.xf5_c00066{left:693.150000px;}
.xcd_c00066{left:694.800000px;}
.xc4_c00066{left:696.000000px;}
.x136_c00066{left:698.400000px;}
.x108_c00066{left:699.900000px;}
.x118_c00066{left:702.000000px;}
.xfa_c00066{left:703.950000px;}
.x100_c00066{left:705.150000px;}
.xf4_c00066{left:706.500000px;}
.xd5_c00066{left:707.850000px;}
.x143_c00066{left:709.500000px;}
.x140_c00066{left:710.700000px;}
.x129_c00066{left:712.350000px;}
.x131_c00066{left:714.600000px;}
.xf0_c00066{left:716.100000px;}
.x12c_c00066{left:717.600000px;}
.x109_c00066{left:718.650000px;}
.xdb_c00066{left:719.850000px;}
.xfb_c00066{left:721.650000px;}
.x10c_c00066{left:722.700000px;}
.x10f_c00066{left:726.150000px;}
.x144_c00066{left:730.050000px;}
.x14d_c00066{left:731.850000px;}
.xce_c00066{left:734.400000px;}
.xc5_c00066{left:735.600000px;}
.xbd_c00066{left:739.500000px;}
.x13b_c00066{left:743.100000px;}
.x110_c00066{left:746.700000px;}
.x2_c00066{left:750.600000px;}
.xbe_c00066{left:752.400000px;}
.x12d_c00066{left:753.600000px;}
.xdc_c00066{left:754.800000px;}
.x14e_c00066{left:756.000000px;}
.x150_c00066{left:758.400000px;}
.x132_c00066{left:759.600000px;}
.x12a_c00066{left:760.650000px;}
.xf1_c00066{left:766.500000px;}
.x158_c00066{left:790.950000px;}
.x159_c00066{left:806.850000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws8_c00066{word-spacing:-8.000000pt;}
.ws7_c00066{word-spacing:-5.742331pt;}
.wsa_c00066{word-spacing:0.000000pt;}
.ws6_c00066{word-spacing:1.583697pt;}
.ws9_c00066{word-spacing:10.074074pt;}
.ws3_c00066{word-spacing:13.333333pt;}
.ws5_c00066{word-spacing:14.920635pt;}
.ws1_c00066{word-spacing:30.793651pt;}
.ws4_c00066{word-spacing:38.730159pt;}
.ws0_c00066{word-spacing:39.259259pt;}
.ws2_c00066{word-spacing:49.312169pt;}
._1_c00066{width:49.523810pt;}
._2_c00066{width:60.634921pt;}
._0_c00066{width:906.666667pt;}
.fs7_c00066{font-size:21.333333pt;}
.fs5_c00066{font-size:37.333333pt;}
.fs6_c00066{font-size:42.666667pt;}
.fs3_c00066{font-size:48.000000pt;}
.fs2_c00066{font-size:53.333333pt;}
.fs1_c00066{font-size:58.666667pt;}
.fs4_c00066{font-size:64.000000pt;}
.fs0_c00066{font-size:74.666667pt;}
.y0_c00066{bottom:0.000000pt;}
.y6a_c00066{bottom:149.866667pt;}
.y38_c00066{bottom:165.733333pt;}
.y69_c00066{bottom:166.133333pt;}
.y37_c00066{bottom:187.866667pt;}
.y68_c00066{bottom:190.000000pt;}
.y36_c00066{bottom:200.933333pt;}
.y67_c00066{bottom:205.733333pt;}
.y35_c00066{bottom:214.133333pt;}
.y66_c00066{bottom:221.733333pt;}
.y34_c00066{bottom:230.933333pt;}
.y65_c00066{bottom:237.733333pt;}
.y33_c00066{bottom:248.266667pt;}
.y64_c00066{bottom:253.733333pt;}
.y32_c00066{bottom:268.133333pt;}
.y63_c00066{bottom:277.066667pt;}
.y31_c00066{bottom:283.866667pt;}
.y62_c00066{bottom:293.333333pt;}
.y30_c00066{bottom:299.466667pt;}
.y61_c00066{bottom:309.066667pt;}
.y2f_c00066{bottom:315.466667pt;}
.y60_c00066{bottom:325.066667pt;}
.y2e_c00066{bottom:331.200000pt;}
.y5f_c00066{bottom:341.066667pt;}
.y2d_c00066{bottom:350.666667pt;}
.y5e_c00066{bottom:356.800000pt;}
.y2c_c00066{bottom:370.666667pt;}
.y5d_c00066{bottom:372.800000pt;}
.y2b_c00066{bottom:386.933333pt;}
.y5c_c00066{bottom:396.533333pt;}
.y2a_c00066{bottom:402.933333pt;}
.y5b_c00066{bottom:412.800000pt;}
.y29_c00066{bottom:418.933333pt;}
.y28_c00066{bottom:438.666667pt;}
.y5a_c00066{bottom:442.533333pt;}
.y27_c00066{bottom:454.666667pt;}
.y59_c00066{bottom:455.733333pt;}
.y58_c00066{bottom:467.200000pt;}
.y26_c00066{bottom:470.933333pt;}
.y57_c00066{bottom:484.800000pt;}
.y25_c00066{bottom:486.666667pt;}
.y56_c00066{bottom:500.800000pt;}
.y24_c00066{bottom:506.666667pt;}
.y55_c00066{bottom:516.800000pt;}
.y23_c00066{bottom:522.933333pt;}
.y54_c00066{bottom:532.800000pt;}
.y22_c00066{bottom:538.933333pt;}
.y53_c00066{bottom:548.800000pt;}
.y21_c00066{bottom:554.933333pt;}
.y52_c00066{bottom:564.533333pt;}
.y20_c00066{bottom:570.933333pt;}
.y51_c00066{bottom:580.533333pt;}
.y1f_c00066{bottom:590.666667pt;}
.y50_c00066{bottom:604.533333pt;}
.y1e_c00066{bottom:606.666667pt;}
.y1d_c00066{bottom:622.666667pt;}
.y4f_c00066{bottom:632.266667pt;}
.y1c_c00066{bottom:638.666667pt;}
.y1b_c00066{bottom:654.666667pt;}
.y4e_c00066{bottom:659.866667pt;}
.y1a_c00066{bottom:670.400000pt;}
.y4d_c00066{bottom:676.133333pt;}
.y19_c00066{bottom:686.400000pt;}
.y4c_c00066{bottom:692.133333pt;}
.y18_c00066{bottom:702.400000pt;}
.y4b_c00066{bottom:708.133333pt;}
.y17_c00066{bottom:718.400000pt;}
.y4a_c00066{bottom:723.866667pt;}
.y16_c00066{bottom:738.133333pt;}
.y49_c00066{bottom:739.866667pt;}
.y15_c00066{bottom:754.133333pt;}
.y48_c00066{bottom:755.866667pt;}
.y14_c00066{bottom:770.133333pt;}
.y47_c00066{bottom:779.466667pt;}
.y13_c00066{bottom:781.066667pt;}
.y12_c00066{bottom:786.533333pt;}
.y46_c00066{bottom:795.466667pt;}
.y11_c00066{bottom:802.266667pt;}
.y45_c00066{bottom:811.466667pt;}
.y10_c00066{bottom:818.266667pt;}
.y44_c00066{bottom:827.200000pt;}
.yf_c00066{bottom:834.533333pt;}
.y43_c00066{bottom:843.200000pt;}
.ye_c00066{bottom:856.666667pt;}
.y42_c00066{bottom:859.200000pt;}
.yd_c00066{bottom:869.466667pt;}
.y41_c00066{bottom:875.200000pt;}
.yc_c00066{bottom:882.266667pt;}
.y40_c00066{bottom:890.933333pt;}
.yb_c00066{bottom:895.333333pt;}
.ya_c00066{bottom:908.133333pt;}
.y3f_c00066{bottom:914.933333pt;}
.y9_c00066{bottom:920.933333pt;}
.y3e_c00066{bottom:930.933333pt;}
.y8_c00066{bottom:933.733333pt;}
.y7_c00066{bottom:946.533333pt;}
.y3d_c00066{bottom:946.933333pt;}
.y6_c00066{bottom:959.333333pt;}
.y3c_c00066{bottom:962.933333pt;}
.y5_c00066{bottom:972.133333pt;}
.y3b_c00066{bottom:978.933333pt;}
.y4_c00066{bottom:985.200000pt;}
.y3a_c00066{bottom:994.533333pt;}
.y3_c00066{bottom:998.666667pt;}
.y2_c00066{bottom:1018.266667pt;}
.y1_c00066{bottom:1019.866667pt;}
.y39_c00066{bottom:1124.533333pt;}
.y6b_c00066{bottom:1125.733333pt;}
.h9_c00066{height:21.333333pt;}
.h7_c00066{height:37.333333pt;}
.h8_c00066{height:42.666667pt;}
.h5_c00066{height:48.000000pt;}
.h4_c00066{height:53.333333pt;}
.h3_c00066{height:58.666667pt;}
.h6_c00066{height:64.000000pt;}
.h2_c00066{height:74.666667pt;}
.h1_c00066{height:1131.333333pt;}
.h0_c00066{height:1131.520020pt;}
.w0_c00066{width:843.200032pt;}
.w1_c00066{width:843.333333pt;}
.x0_c00066{left:0.000000pt;}
.x3_c00066{left:63.733333pt;}
.x4b_c00066{left:64.933333pt;}
.x8d_c00066{left:66.266667pt;}
.xac_c00066{left:67.200000pt;}
.x9d_c00066{left:68.133333pt;}
.x13_c00066{left:74.933333pt;}
.xb_c00066{left:76.266667pt;}
.x52_c00066{left:79.466667pt;}
.x60_c00066{left:80.666667pt;}
.x63_c00066{left:81.866667pt;}
.x7b_c00066{left:82.800000pt;}
.xa9_c00066{left:83.866667pt;}
.x17_c00066{left:88.666667pt;}
.x41_c00066{left:89.733333pt;}
.x6a_c00066{left:97.333333pt;}
.x75_c00066{left:98.666667pt;}
.xc_c00066{left:100.533333pt;}
.xa6_c00066{left:101.733333pt;}
.x21_c00066{left:103.066667pt;}
.x97_c00066{left:104.000000pt;}
.x6f_c00066{left:105.066667pt;}
.x68_c00066{left:106.933333pt;}
.x18_c00066{left:107.866667pt;}
.x36_c00066{left:108.800000pt;}
.x9a_c00066{left:110.933333pt;}
.x3a_c00066{left:112.533333pt;}
.x5b_c00066{left:116.133333pt;}
.x8c_c00066{left:117.733333pt;}
.x4_c00066{left:119.066667pt;}
.x9e_c00066{left:120.666667pt;}
.x9b_c00066{left:122.133333pt;}
.x19_c00066{left:124.133333pt;}
.x86_c00066{left:125.733333pt;}
.x42_c00066{left:127.066667pt;}
.x2e_c00066{left:128.000000pt;}
.x53_c00066{left:129.066667pt;}
.x37_c00066{left:131.200000pt;}
.x3b_c00066{left:132.533333pt;}
.x8a_c00066{left:134.666667pt;}
.xd_c00066{left:136.400000pt;}
.x7f_c00066{left:137.600000pt;}
.x3c_c00066{left:139.600000pt;}
.x43_c00066{left:141.466667pt;}
.x4c_c00066{left:143.066667pt;}
.x22_c00066{left:144.000000pt;}
.xe_c00066{left:146.000000pt;}
.x66_c00066{left:147.200000pt;}
.x47_c00066{left:148.933333pt;}
.x91_c00066{left:150.000000pt;}
.x8f_c00066{left:151.066667pt;}
.x3d_c00066{left:152.666667pt;}
.x8e_c00066{left:154.933333pt;}
.x9f_c00066{left:156.800000pt;}
.x92_c00066{left:158.000000pt;}
.x3e_c00066{left:159.066667pt;}
.x1a_c00066{left:160.933333pt;}
.x48_c00066{left:162.666667pt;}
.x9c_c00066{left:165.333333pt;}
.x70_c00066{left:167.200000pt;}
.x1b_c00066{left:170.266667pt;}
.xad_c00066{left:172.266667pt;}
.x93_c00066{left:174.000000pt;}
.x44_c00066{left:176.666667pt;}
.xb1_c00066{left:177.600000pt;}
.x80_c00066{left:178.533333pt;}
.x38_c00066{left:180.800000pt;}
.x69_c00066{left:183.200000pt;}
.xf_c00066{left:184.400000pt;}
.x33_c00066{left:186.266667pt;}
.x4d_c00066{left:187.200000pt;}
.x56_c00066{left:188.133333pt;}
.x2f_c00066{left:190.666667pt;}
.x34_c00066{left:192.400000pt;}
.x5c_c00066{left:194.533333pt;}
.x96_c00066{left:195.866667pt;}
.x61_c00066{left:197.466667pt;}
.x81_c00066{left:198.400000pt;}
.x10_c00066{left:199.733333pt;}
.x30_c00066{left:200.933333pt;}
.x45_c00066{left:202.266667pt;}
.x7c_c00066{left:204.133333pt;}
.x23_c00066{left:205.466667pt;}
.xa2_c00066{left:206.400000pt;}
.x1c_c00066{left:207.333333pt;}
.xae_c00066{left:208.400000pt;}
.x5_c00066{left:210.000000pt;}
.x24_c00066{left:211.600000pt;}
.x71_c00066{left:213.333333pt;}
.x8b_c00066{left:214.266667pt;}
.x25_c00066{left:218.266667pt;}
.x1d_c00066{left:219.866667pt;}
.x77_c00066{left:221.333333pt;}
.x7d_c00066{left:222.666667pt;}
.x5f_c00066{left:224.400000pt;}
.x11_c00066{left:228.533333pt;}
.x26_c00066{left:231.066667pt;}
.x5d_c00066{left:232.400000pt;}
.x4e_c00066{left:234.266667pt;}
.x39_c00066{left:235.200000pt;}
.xa0_c00066{left:236.133333pt;}
.x46_c00066{left:239.066667pt;}
.x31_c00066{left:240.000000pt;}
.x49_c00066{left:241.066667pt;}
.xb2_c00066{left:242.933333pt;}
.x27_c00066{left:243.866667pt;}
.x94_c00066{left:244.800000pt;}
.x12_c00066{left:246.400000pt;}
.x1e_c00066{left:248.400000pt;}
.x28_c00066{left:250.266667pt;}
.xa3_c00066{left:251.866667pt;}
.x4f_c00066{left:253.466667pt;}
.x32_c00066{left:254.666667pt;}
.x57_c00066{left:255.600000pt;}
.x6_c00066{left:257.733333pt;}
.x98_c00066{left:260.133333pt;}
.x72_c00066{left:261.066667pt;}
.x3f_c00066{left:263.066667pt;}
.x29_c00066{left:264.000000pt;}
.x1f_c00066{left:265.333333pt;}
.x58_c00066{left:266.533333pt;}
.x5e_c00066{left:267.600000pt;}
.x6b_c00066{left:268.533333pt;}
.x2a_c00066{left:270.133333pt;}
.x87_c00066{left:271.333333pt;}
.x83_c00066{left:273.066667pt;}
.x73_c00066{left:274.533333pt;}
.x7_c00066{left:275.600000pt;}
.x2b_c00066{left:277.200000pt;}
.x95_c00066{left:278.400000pt;}
.x1_c00066{left:279.733333pt;}
.x79_c00066{left:281.333333pt;}
.x2c_c00066{left:283.600000pt;}
.x64_c00066{left:285.466667pt;}
.x85_c00066{left:287.600000pt;}
.x6c_c00066{left:289.333333pt;}
.x8_c00066{left:291.866667pt;}
.x59_c00066{left:293.733333pt;}
.x78_c00066{left:294.800000pt;}
.x54_c00066{left:296.000000pt;}
.x40_c00066{left:299.600000pt;}
.x14_c00066{left:300.533333pt;}
.x4a_c00066{left:301.733333pt;}
.x7a_c00066{left:304.266667pt;}
.xb3_c00066{left:306.000000pt;}
.x88_c00066{left:307.466667pt;}
.x99_c00066{left:309.333333pt;}
.x7e_c00066{left:310.400000pt;}
.x62_c00066{left:311.333333pt;}
.xa7_c00066{left:312.266667pt;}
.x84_c00066{left:314.666667pt;}
.xaa_c00066{left:315.866667pt;}
.xa4_c00066{left:316.800000pt;}
.xa1_c00066{left:318.533333pt;}
.x9_c00066{left:319.733333pt;}
.x5a_c00066{left:320.666667pt;}
.x6d_c00066{left:322.666667pt;}
.x20_c00066{left:323.866667pt;}
.x55_c00066{left:324.800000pt;}
.x2d_c00066{left:326.133333pt;}
.x15_c00066{left:327.466667pt;}
.x50_c00066{left:329.066667pt;}
.x67_c00066{left:330.666667pt;}
.x76_c00066{left:333.466667pt;}
.x89_c00066{left:335.333333pt;}
.xaf_c00066{left:338.000000pt;}
.x65_c00066{left:339.200000pt;}
.xa8_c00066{left:340.400000pt;}
.x82_c00066{left:342.800000pt;}
.x51_c00066{left:344.133333pt;}
.xab_c00066{left:346.266667pt;}
.x6e_c00066{left:348.000000pt;}
.xa_c00066{left:349.866667pt;}
.x16_c00066{left:352.400000pt;}
.x74_c00066{left:354.266667pt;}
.x90_c00066{left:357.600000pt;}
.xa5_c00066{left:359.066667pt;}
.x35_c00066{left:369.066667pt;}
.xb0_c00066{left:375.866667pt;}
.x11c_c00066{left:384.933333pt;}
.x13e_c00066{left:386.266667pt;}
.x156_c00066{left:387.866667pt;}
.xb5_c00066{left:398.133333pt;}
.xc6_c00066{left:399.066667pt;}
.xfc_c00066{left:400.266667pt;}
.x125_c00066{left:401.600000pt;}
.x14f_c00066{left:402.533333pt;}
.x120_c00066{left:410.266667pt;}
.x13c_c00066{left:411.200000pt;}
.xdf_c00066{left:414.666667pt;}
.x104_c00066{left:415.733333pt;}
.x122_c00066{left:417.600000pt;}
.x119_c00066{left:418.800000pt;}
.xb6_c00066{left:419.866667pt;}
.x149_c00066{left:421.200000pt;}
.xcf_c00066{left:422.400000pt;}
.x13f_c00066{left:424.400000pt;}
.x111_c00066{left:425.733333pt;}
.xf2_c00066{left:428.000000pt;}
.x10d_c00066{left:431.200000pt;}
.xf6_c00066{left:432.133333pt;}
.x133_c00066{left:433.333333pt;}
.xec_c00066{left:435.200000pt;}
.xbf_c00066{left:437.066667pt;}
.xb4_c00066{left:439.066667pt;}
.x145_c00066{left:441.600000pt;}
.x11d_c00066{left:443.866667pt;}
.xfd_c00066{left:445.733333pt;}
.x101_c00066{left:447.333333pt;}
.xe0_c00066{left:448.266667pt;}
.x137_c00066{left:450.533333pt;}
.xb7_c00066{left:453.733333pt;}
.xc7_c00066{left:455.733333pt;}
.x105_c00066{left:457.333333pt;}
.xd6_c00066{left:459.066667pt;}
.x11e_c00066{left:463.733333pt;}
.x12b_c00066{left:464.666667pt;}
.x10a_c00066{left:466.666667pt;}
.xd7_c00066{left:467.733333pt;}
.xed_c00066{left:470.666667pt;}
.x146_c00066{left:472.266667pt;}
.x11a_c00066{left:473.866667pt;}
.xd0_c00066{left:476.800000pt;}
.xc8_c00066{left:478.400000pt;}
.x102_c00066{left:479.600000pt;}
.x115_c00066{left:480.666667pt;}
.x134_c00066{left:481.733333pt;}
.xe7_c00066{left:482.666667pt;}
.x112_c00066{left:484.266667pt;}
.x138_c00066{left:485.733333pt;}
.xc0_c00066{left:487.333333pt;}
.xd8_c00066{left:489.200000pt;}
.x123_c00066{left:490.933333pt;}
.xe8_c00066{left:493.200000pt;}
.xdd_c00066{left:495.200000pt;}
.xf3_c00066{left:496.800000pt;}
.x106_c00066{left:498.266667pt;}
.x139_c00066{left:499.866667pt;}
.xe1_c00066{left:501.333333pt;}
.xd1_c00066{left:502.666667pt;}
.x127_c00066{left:504.533333pt;}
.xc1_c00066{left:506.266667pt;}
.x10e_c00066{left:507.333333pt;}
.x12e_c00066{left:509.600000pt;}
.xb8_c00066{left:511.066667pt;}
.x124_c00066{left:512.666667pt;}
.x155_c00066{left:515.733333pt;}
.x135_c00066{left:518.266667pt;}
.xe2_c00066{left:520.533333pt;}
.xc9_c00066{left:521.600000pt;}
.xe9_c00066{left:522.933333pt;}
.xb9_c00066{left:524.533333pt;}
.x11f_c00066{left:525.466667pt;}
.x157_c00066{left:526.400000pt;}
.x147_c00066{left:527.333333pt;}
.x13a_c00066{left:529.333333pt;}
.x126_c00066{left:530.800000pt;}
.x152_c00066{left:531.733333pt;}
.xf7_c00066{left:534.533333pt;}
.x14c_c00066{left:536.133333pt;}
.xc2_c00066{left:537.333333pt;}
.x141_c00066{left:538.266667pt;}
.xea_c00066{left:539.866667pt;}
.xba_c00066{left:541.466667pt;}
.xee_c00066{left:543.733333pt;}
.x103_c00066{left:545.466667pt;}
.xca_c00066{left:547.866667pt;}
.x107_c00066{left:549.200000pt;}
.x12f_c00066{left:550.933333pt;}
.x10b_c00066{left:553.466667pt;}
.x128_c00066{left:555.066667pt;}
.xe3_c00066{left:556.000000pt;}
.xde_c00066{left:556.933333pt;}
.xfe_c00066{left:558.666667pt;}
.x14b_c00066{left:559.600000pt;}
.xd2_c00066{left:562.400000pt;}
.x153_c00066{left:564.000000pt;}
.xcb_c00066{left:566.133333pt;}
.xeb_c00066{left:567.066667pt;}
.xd9_c00066{left:569.200000pt;}
.x142_c00066{left:570.933333pt;}
.x121_c00066{left:573.066667pt;}
.xf8_c00066{left:575.466667pt;}
.xe4_c00066{left:577.466667pt;}
.x14a_c00066{left:579.200000pt;}
.xd3_c00066{left:581.600000pt;}
.xbb_c00066{left:582.800000pt;}
.x116_c00066{left:585.200000pt;}
.x11b_c00066{left:586.400000pt;}
.xef_c00066{left:588.533333pt;}
.x113_c00066{left:589.600000pt;}
.x13d_c00066{left:590.933333pt;}
.xf9_c00066{left:593.066667pt;}
.xcc_c00066{left:594.266667pt;}
.xc3_c00066{left:596.533333pt;}
.x151_c00066{left:598.666667pt;}
.x148_c00066{left:599.733333pt;}
.x117_c00066{left:600.933333pt;}
.x130_c00066{left:601.866667pt;}
.xe5_c00066{left:602.800000pt;}
.xda_c00066{left:604.666667pt;}
.x154_c00066{left:605.866667pt;}
.x114_c00066{left:607.200000pt;}
.xff_c00066{left:608.266667pt;}
.xbc_c00066{left:610.266667pt;}
.xe6_c00066{left:612.400000pt;}
.xd4_c00066{left:613.866667pt;}
.xf5_c00066{left:616.133333pt;}
.xcd_c00066{left:617.600000pt;}
.xc4_c00066{left:618.666667pt;}
.x136_c00066{left:620.800000pt;}
.x108_c00066{left:622.133333pt;}
.x118_c00066{left:624.000000pt;}
.xfa_c00066{left:625.733333pt;}
.x100_c00066{left:626.800000pt;}
.xf4_c00066{left:628.000000pt;}
.xd5_c00066{left:629.200000pt;}
.x143_c00066{left:630.666667pt;}
.x140_c00066{left:631.733333pt;}
.x129_c00066{left:633.200000pt;}
.x131_c00066{left:635.200000pt;}
.xf0_c00066{left:636.533333pt;}
.x12c_c00066{left:637.866667pt;}
.x109_c00066{left:638.800000pt;}
.xdb_c00066{left:639.866667pt;}
.xfb_c00066{left:641.466667pt;}
.x10c_c00066{left:642.400000pt;}
.x10f_c00066{left:645.466667pt;}
.x144_c00066{left:648.933333pt;}
.x14d_c00066{left:650.533333pt;}
.xce_c00066{left:652.800000pt;}
.xc5_c00066{left:653.866667pt;}
.xbd_c00066{left:657.333333pt;}
.x13b_c00066{left:660.533333pt;}
.x110_c00066{left:663.733333pt;}
.x2_c00066{left:667.200000pt;}
.xbe_c00066{left:668.800000pt;}
.x12d_c00066{left:669.866667pt;}
.xdc_c00066{left:670.933333pt;}
.x14e_c00066{left:672.000000pt;}
.x150_c00066{left:674.133333pt;}
.x132_c00066{left:675.200000pt;}
.x12a_c00066{left:676.133333pt;}
.xf1_c00066{left:681.333333pt;}
.x158_c00066{left:703.066667pt;}
.x159_c00066{left:717.200000pt;}
}





/* 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_c00067 {
    display:none;
  }
  .loading-indicator_c00067.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00067 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_c00067 { 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_c00067" -> "#page-container .classname_c00067")
 */
.pf_c00067 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00067 { /* 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_c00067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00067 { /* 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_c00067 { /* 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_c00067 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00067 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00067 {overflow:visible;}
  }
}
.c_c00067 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00067 { /* 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_c00067:after { /* webkit #35443 */
  content: '';
}
.t_c00067:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00067 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 */
}
.__c00067 { /* 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_c00067 { /* info for Javascript */
  display:none;
}
.l_c00067 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00067 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00067 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00067: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_c00067 {
    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_c00067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00067.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_c00067 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00067;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.000000;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;}
.m128_c00067{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md4_c00067{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00067{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m19_c00067{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00067{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mf_c00067{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m14_c00067{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m97_c00067{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00067{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m54_c00067{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00067{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m64_c00067{transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);}
.m78_c00067{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00067{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00067{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma_c00067{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m74_c00067{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m86_c00067{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00067{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m32_c00067{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m88_c00067{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m94_c00067{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00067{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00067{transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00067{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m129_c00067{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00067{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m16_c00067{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00067{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00067{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m75_c00067{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00067{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00067{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m15_c00067{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m95_c00067{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00067{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00067{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00067{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00067{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00067{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00067{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00067{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00067{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m73_c00067{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m66_c00067{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00067{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00067{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m104_c00067{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mde_c00067{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m108_c00067{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me4_c00067{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00067{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m61_c00067{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m60_c00067{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00067{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00067{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m122_c00067{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m42_c00067{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10_c00067{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00067{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00067{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00067{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m50_c00067{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00067{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m76_c00067{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m87_c00067{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mea_c00067{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m45_c00067{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me9_c00067{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m40_c00067{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00067{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m21_c00067{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00067{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00067{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00067{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m17_c00067{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md2_c00067{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m116_c00067{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00067{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me7_c00067{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m65_c00067{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md9_c00067{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00067{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m41_c00067{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me8_c00067{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m56_c00067{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00067{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8_c00067{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m106_c00067{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00067{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00067{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.med_c00067{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mad_c00067{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m13_c00067{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m20_c00067{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m109_c00067{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00067{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00067{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00067{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00067{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00067{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mac_c00067{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00067{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00067{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00067{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00067{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m68_c00067{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00067{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00067{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00067{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m36_c00067{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m63_c00067{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md7_c00067{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00067{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me0_c00067{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md5_c00067{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00067{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00067{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00067{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00067{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m115_c00067{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00067{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00067{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mda_c00067{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m37_c00067{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me2_c00067{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.maa_c00067{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m38_c00067{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m62_c00067{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m22_c00067{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m72_c00067{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00067{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m110_c00067{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m49_c00067{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m85_c00067{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00067{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m24_c00067{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m23_c00067{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00067{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md1_c00067{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m44_c00067{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m29_c00067{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.md_c00067{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m43_c00067{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00067{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m83_c00067{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00067{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m105_c00067{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00067{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m81_c00067{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00067{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00067{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mab_c00067{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00067{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m127_c00067{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m114_c00067{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m96_c00067{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3_c00067{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00067{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00067{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00067{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00067{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m35_c00067{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m107_c00067{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00067{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m103_c00067{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m126_c00067{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m84_c00067{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m69_c00067{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m39_c00067{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m26_c00067{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00067{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m47_c00067{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m100_c00067{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m57_c00067{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00067{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mca_c00067{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00067{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m125_c00067{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m117_c00067{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me_c00067{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m121_c00067{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m124_c00067{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00067{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me1_c00067{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m33_c00067{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m7_c00067{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00067{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m82_c00067{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00067{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00067{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00067{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc_c00067{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m31_c00067{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00067{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00067{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m112_c00067{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m91_c00067{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00067{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mce_c00067{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m27_c00067{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00067{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00067{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mee_c00067{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m80_c00067{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00067{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00067{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00067{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md8_c00067{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.maf_c00067{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m79_c00067{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m30_c00067{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md3_c00067{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m25_c00067{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00067{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5_c00067{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00067{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00067{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00067{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m12_c00067{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mba_c00067{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00067{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00067{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m101_c00067{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00067{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00067{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00067{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m70_c00067{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00067{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00067{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m71_c00067{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00067{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00067{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00067{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m77_c00067{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m102_c00067{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6_c00067{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00067{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.md0_c00067{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00067{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m111_c00067{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00067{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mff_c00067{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me6_c00067{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00067{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m59_c00067{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mec_c00067{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m113_c00067{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);}
.mc1_c00067{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00067{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11_c00067{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c00067{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m92_c00067{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00067{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m123_c00067{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.me5_c00067{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00067{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m93_c00067{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m52_c00067{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m89_c00067{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00067{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mae_c00067{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00067{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m28_c00067{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m0_c00067{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00067{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m99_c00067{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m58_c00067{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m34_c00067{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.md6_c00067{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m48_c00067{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m90_c00067{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00067{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00067{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.me3_c00067{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00067{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m98_c00067{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m120_c00067{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.meb_c00067{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00067{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m46_c00067{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00067{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m51_c00067{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00067{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m119_c00067{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m55_c00067{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mef_c00067{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00067{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m53_c00067{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00067{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m118_c00067{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00067{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m9_c00067{transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00067{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m18_c00067{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m67_c00067{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(0.507750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00067{transform:matrix(4.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.128000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls0_c00067{letter-spacing:0.000000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{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__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00067{word-spacing:-18.524017px;}
.ws5_c00067{word-spacing:-13.500000px;}
.ws6_c00067{word-spacing:-9.605263px;}
.ws8_c00067{word-spacing:0.000000px;}
.ws7_c00067{word-spacing:1.224490px;}
.ws0_c00067{word-spacing:12.747851px;}
.ws3_c00067{word-spacing:20.527221px;}
.ws2_c00067{word-spacing:40.000000px;}
.ws1_c00067{word-spacing:91.781065px;}
.fc0_c00067{color:transparent;}
.fs6_c00067{font-size:30.000000px;}
.fs5_c00067{font-size:36.000000px;}
.fs4_c00067{font-size:54.000000px;}
.fs3_c00067{font-size:60.000000px;}
.fs2_c00067{font-size:66.000000px;}
.fs0_c00067{font-size:72.000000px;}
.fs1_c00067{font-size:78.000000px;}
.y0_c00067{bottom:0.000000px;}
.y70_c00067{bottom:4.650000px;}
.y36_c00067{bottom:168.150000px;}
.y35_c00067{bottom:184.050000px;}
.y6f_c00067{bottom:185.400000px;}
.y6e_c00067{bottom:199.200000px;}
.y34_c00067{bottom:202.350000px;}
.y6d_c00067{bottom:213.300000px;}
.y33_c00067{bottom:220.350000px;}
.y6c_c00067{bottom:227.700000px;}
.y32_c00067{bottom:238.200000px;}
.y6b_c00067{bottom:242.400000px;}
.y31_c00067{bottom:256.200000px;}
.y6a_c00067{bottom:256.500000px;}
.y30_c00067{bottom:273.900000px;}
.y69_c00067{bottom:274.200000px;}
.y68_c00067{bottom:286.800000px;}
.y2f_c00067{bottom:291.900000px;}
.y67_c00067{bottom:300.150000px;}
.y2e_c00067{bottom:309.600000px;}
.y66_c00067{bottom:315.600000px;}
.y2d_c00067{bottom:327.600000px;}
.y65_c00067{bottom:330.000000px;}
.y64_c00067{bottom:343.650000px;}
.y2c_c00067{bottom:345.900000px;}
.y63_c00067{bottom:357.750000px;}
.y2b_c00067{bottom:363.900000px;}
.y2a_c00067{bottom:381.900000px;}
.y61_c00067{bottom:387.000000px;}
.y62_c00067{bottom:388.050000px;}
.y60_c00067{bottom:401.700000px;}
.y29_c00067{bottom:403.650000px;}
.y5f_c00067{bottom:415.800000px;}
.y28_c00067{bottom:416.550000px;}
.y5e_c00067{bottom:430.500000px;}
.y27_c00067{bottom:432.450000px;}
.y5d_c00067{bottom:445.050000px;}
.y26_c00067{bottom:445.350000px;}
.y5c_c00067{bottom:459.450000px;}
.y25_c00067{bottom:460.050000px;}
.y5b_c00067{bottom:473.850000px;}
.y24_c00067{bottom:475.950000px;}
.y5a_c00067{bottom:488.550000px;}
.y23_c00067{bottom:490.650000px;}
.y59_c00067{bottom:502.950000px;}
.y22_c00067{bottom:505.050000px;}
.y58_c00067{bottom:517.350000px;}
.y21_c00067{bottom:518.100000px;}
.y57_c00067{bottom:532.500000px;}
.y20_c00067{bottom:534.300000px;}
.y56_c00067{bottom:546.600000px;}
.y1f_c00067{bottom:552.600000px;}
.y55_c00067{bottom:561.000000px;}
.y1e_c00067{bottom:571.350000px;}
.y54_c00067{bottom:575.400000px;}
.y53_c00067{bottom:589.800000px;}
.y1d_c00067{bottom:594.000000px;}
.y52_c00067{bottom:604.200000px;}
.y1c_c00067{bottom:612.000000px;}
.y51_c00067{bottom:618.900000px;}
.y1b_c00067{bottom:630.000000px;}
.y50_c00067{bottom:633.600000px;}
.y4f_c00067{bottom:647.550000px;}
.y1a_c00067{bottom:647.700000px;}
.y4e_c00067{bottom:662.700000px;}
.y19_c00067{bottom:666.000000px;}
.y4d_c00067{bottom:676.800000px;}
.y18_c00067{bottom:684.300000px;}
.y4c_c00067{bottom:691.500000px;}
.y17_c00067{bottom:702.000000px;}
.y16_c00067{bottom:720.300000px;}
.y4b_c00067{bottom:738.300000px;}
.y15_c00067{bottom:741.900000px;}
.y4a_c00067{bottom:756.300000px;}
.y14_c00067{bottom:764.250000px;}
.y49_c00067{bottom:783.450000px;}
.y13_c00067{bottom:785.850000px;}
.y48_c00067{bottom:801.450000px;}
.y12_c00067{bottom:808.500000px;}
.y47_c00067{bottom:819.750000px;}
.y11_c00067{bottom:830.550000px;}
.y46_c00067{bottom:837.450000px;}
.y10_c00067{bottom:848.850000px;}
.y45_c00067{bottom:855.750000px;}
.yf_c00067{bottom:871.200000px;}
.y44_c00067{bottom:882.300000px;}
.ye_c00067{bottom:893.100000px;}
.y43_c00067{bottom:900.300000px;}
.yd_c00067{bottom:916.200000px;}
.y42_c00067{bottom:918.300000px;}
.yc_c00067{bottom:934.200000px;}
.y41_c00067{bottom:937.050000px;}
.y40_c00067{bottom:954.600000px;}
.yb_c00067{bottom:955.800000px;}
.y3f_c00067{bottom:972.600000px;}
.ya_c00067{bottom:974.550000px;}
.y3e_c00067{bottom:990.300000px;}
.y9_c00067{bottom:992.550000px;}
.y3d_c00067{bottom:1008.300000px;}
.y8_c00067{bottom:1015.200000px;}
.y7_c00067{bottom:1024.950000px;}
.y3c_c00067{bottom:1026.300000px;}
.y6_c00067{bottom:1044.000000px;}
.y3b_c00067{bottom:1048.050000px;}
.y3a_c00067{bottom:1067.100000px;}
.y5_c00067{bottom:1069.950000px;}
.y39_c00067{bottom:1085.850000px;}
.y4_c00067{bottom:1093.350000px;}
.y38_c00067{bottom:1103.850000px;}
.y3_c00067{bottom:1118.550000px;}
.y37_c00067{bottom:1122.150000px;}
.y1_c00067{bottom:1145.550000px;}
.y2_c00067{bottom:1147.350000px;}
.h8_c00067{height:30.000000px;}
.h7_c00067{height:36.000000px;}
.h6_c00067{height:54.000000px;}
.h5_c00067{height:60.000000px;}
.h4_c00067{height:66.000000px;}
.h2_c00067{height:72.000000px;}
.h3_c00067{height:78.000000px;}
.h1_c00067{height:1267.500000px;}
.h0_c00067{height:1267.559967px;}
.w0_c00067{width:948.600036px;}
.w1_c00067{width:948.750000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:165.900000px;}
.xa_c00067{left:167.700000px;}
.x46_c00067{left:169.950000px;}
.x7f_c00067{left:171.300000px;}
.x1b_c00067{left:181.950000px;}
.x99_c00067{left:183.900000px;}
.x69_c00067{left:185.250000px;}
.x25_c00067{left:187.200000px;}
.x40_c00067{left:188.850000px;}
.x87_c00067{left:190.050000px;}
.x96_c00067{left:191.100000px;}
.x47_c00067{left:196.200000px;}
.x75_c00067{left:199.350000px;}
.x70_c00067{left:200.400000px;}
.x1d_c00067{left:205.950000px;}
.x2f_c00067{left:207.300000px;}
.x2c_c00067{left:209.850000px;}
.x59_c00067{left:212.100000px;}
.x10_c00067{left:213.750000px;}
.x61_c00067{left:214.950000px;}
.x4a_c00067{left:217.950000px;}
.x19_c00067{left:220.050000px;}
.x4f_c00067{left:221.400000px;}
.x6c_c00067{left:222.450000px;}
.x97_c00067{left:224.400000px;}
.x56_c00067{left:227.400000px;}
.x8d_c00067{left:228.600000px;}
.x83_c00067{left:230.700000px;}
.x35_c00067{left:232.350000px;}
.x48_c00067{left:234.750000px;}
.x51_c00067{left:236.400000px;}
.x64_c00067{left:237.600000px;}
.xb_c00067{left:239.400000px;}
.x6a_c00067{left:241.050000px;}
.x3c_c00067{left:243.300000px;}
.x39_c00067{left:246.900000px;}
.x42_c00067{left:248.100000px;}
.x1a_c00067{left:249.600000px;}
.x88_c00067{left:250.950000px;}
.x5a_c00067{left:252.000000px;}
.xc_c00067{left:254.100000px;}
.x76_c00067{left:255.900000px;}
.x52_c00067{left:259.500000px;}
.x1e_c00067{left:261.750000px;}
.x2d_c00067{left:264.150000px;}
.x79_c00067{left:267.000000px;}
.x43_c00067{left:268.650000px;}
.x89_c00067{left:270.000000px;}
.x3_c00067{left:271.800000px;}
.x30_c00067{left:274.350000px;}
.x7a_c00067{left:276.000000px;}
.x26_c00067{left:280.800000px;}
.x62_c00067{left:281.850000px;}
.x13_c00067{left:283.350000px;}
.x91_c00067{left:284.700000px;}
.x4_c00067{left:286.200000px;}
.x71_c00067{left:287.550000px;}
.x9a_c00067{left:289.800000px;}
.x3a_c00067{left:292.200000px;}
.x2e_c00067{left:293.250000px;}
.x92_c00067{left:294.450000px;}
.x31_c00067{left:295.650000px;}
.x1f_c00067{left:297.000000px;}
.x5b_c00067{left:299.550000px;}
.x36_c00067{left:301.800000px;}
.x11_c00067{left:303.450000px;}
.x4c_c00067{left:305.250000px;}
.x6d_c00067{left:306.600000px;}
.x27_c00067{left:308.550000px;}
.x3b_c00067{left:311.250000px;}
.xd_c00067{left:312.450000px;}
.x1c_c00067{left:315.450000px;}
.x12_c00067{left:318.900000px;}
.x8c_c00067{left:321.450000px;}
.x5_c00067{left:322.950000px;}
.x65_c00067{left:325.500000px;}
.x7b_c00067{left:329.400000px;}
.x44_c00067{left:331.650000px;}
.x28_c00067{left:333.750000px;}
.x20_c00067{left:337.350000px;}
.x6b_c00067{left:339.750000px;}
.x6_c00067{left:342.000000px;}
.x3d_c00067{left:343.800000px;}
.x14_c00067{left:345.600000px;}
.x21_c00067{left:347.100000px;}
.x32_c00067{left:348.600000px;}
.x5c_c00067{left:350.700000px;}
.x80_c00067{left:353.850000px;}
.x4b_c00067{left:355.800000px;}
.x7_c00067{left:357.150000px;}
.x15_c00067{left:358.500000px;}
.x45_c00067{left:359.700000px;}
.x66_c00067{left:361.200000px;}
.x41_c00067{left:362.400000px;}
.x81_c00067{left:363.600000px;}
.xe_c00067{left:364.950000px;}
.x8e_c00067{left:366.450000px;}
.x77_c00067{left:370.350000px;}
.x8_c00067{left:372.600000px;}
.x37_c00067{left:376.050000px;}
.x3e_c00067{left:377.100000px;}
.x78_c00067{left:382.200000px;}
.x84_c00067{left:385.200000px;}
.x9_c00067{left:387.300000px;}
.x7c_c00067{left:389.850000px;}
.x8a_c00067{left:391.650000px;}
.x82_c00067{left:394.200000px;}
.x53_c00067{left:395.550000px;}
.x38_c00067{left:396.900000px;}
.x49_c00067{left:398.700000px;}
.x93_c00067{left:399.900000px;}
.x16_c00067{left:401.400000px;}
.x5f_c00067{left:402.900000px;}
.x29_c00067{left:404.250000px;}
.x22_c00067{left:405.750000px;}
.x2_c00067{left:408.600000px;}
.x7d_c00067{left:410.700000px;}
.xf_c00067{left:413.550000px;}
.x8f_c00067{left:414.750000px;}
.x8b_c00067{left:416.850000px;}
.x7e_c00067{left:417.900000px;}
.x4d_c00067{left:420.450000px;}
.x17_c00067{left:422.700000px;}
.x67_c00067{left:428.550000px;}
.x54_c00067{left:431.250000px;}
.x23_c00067{left:433.050000px;}
.x57_c00067{left:436.350000px;}
.x72_c00067{left:437.550000px;}
.x33_c00067{left:438.600000px;}
.x74_c00067{left:439.950000px;}
.x5d_c00067{left:442.500000px;}
.x73_c00067{left:444.300000px;}
.x3f_c00067{left:447.300000px;}
.x34_c00067{left:448.350000px;}
.x94_c00067{left:449.550000px;}
.x85_c00067{left:451.050000px;}
.x5e_c00067{left:453.600000px;}
.x9b_c00067{left:454.950000px;}
.x2a_c00067{left:458.550000px;}
.x68_c00067{left:459.900000px;}
.x58_c00067{left:463.050000px;}
.x98_c00067{left:464.700000px;}
.x50_c00067{left:466.800000px;}
.x18_c00067{left:468.750000px;}
.x2b_c00067{left:472.200000px;}
.x6e_c00067{left:473.700000px;}
.x86_c00067{left:477.300000px;}
.x90_c00067{left:479.100000px;}
.x60_c00067{left:480.750000px;}
.x63_c00067{left:482.400000px;}
.x95_c00067{left:488.400000px;}
.x55_c00067{left:490.950000px;}
.x24_c00067{left:493.200000px;}
.x6f_c00067{left:495.600000px;}
.x4e_c00067{left:498.600000px;}
.x10c_c00067{left:520.200000px;}
.x14c_c00067{left:523.800000px;}
.x138_c00067{left:526.350000px;}
.xe9_c00067{left:529.200000px;}
.x128_c00067{left:530.550000px;}
.x13e_c00067{left:531.600000px;}
.x145_c00067{left:533.250000px;}
.xd1_c00067{left:535.350000px;}
.x132_c00067{left:538.950000px;}
.x104_c00067{left:543.450000px;}
.xf3_c00067{left:545.850000px;}
.x9c_c00067{left:546.900000px;}
.x12f_c00067{left:548.100000px;}
.x11d_c00067{left:549.600000px;}
.x10d_c00067{left:551.850000px;}
.x13b_c00067{left:555.150000px;}
.xb8_c00067{left:557.700000px;}
.x134_c00067{left:562.050000px;}
.x146_c00067{left:563.100000px;}
.x116_c00067{left:564.750000px;}
.x149_c00067{left:566.250000px;}
.xf9_c00067{left:568.200000px;}
.xd2_c00067{left:570.300000px;}
.x9d_c00067{left:573.900000px;}
.x135_c00067{left:577.500000px;}
.xaa_c00067{left:578.550000px;}
.xc3_c00067{left:580.500000px;}
.xec_c00067{left:583.350000px;}
.x110_c00067{left:584.700000px;}
.xcb_c00067{left:587.700000px;}
.xde_c00067{left:589.650000px;}
.xff_c00067{left:590.850000px;}
.xb3_c00067{left:592.950000px;}
.xf4_c00067{left:594.450000px;}
.xc0_c00067{left:597.450000px;}
.x119_c00067{left:598.500000px;}
.x11e_c00067{left:600.300000px;}
.xe3_c00067{left:601.350000px;}
.x133_c00067{left:603.300000px;}
.xb9_c00067{left:606.300000px;}
.x13c_c00067{left:607.650000px;}
.x114_c00067{left:610.350000px;}
.x13a_c00067{left:611.400000px;}
.x9e_c00067{left:612.450000px;}
.xf5_c00067{left:613.950000px;}
.xb4_c00067{left:616.350000px;}
.xd7_c00067{left:618.450000px;}
.x10b_c00067{left:619.650000px;}
.x9f_c00067{left:621.450000px;}
.xab_c00067{left:623.850000px;}
.xba_c00067{left:625.350000px;}
.xf8_c00067{left:627.750000px;}
.x111_c00067{left:628.950000px;}
.xd3_c00067{left:630.750000px;}
.xc4_c00067{left:632.250000px;}
.x105_c00067{left:633.750000px;}
.xed_c00067{left:635.550000px;}
.x10e_c00067{left:636.750000px;}
.xa3_c00067{left:640.050000px;}
.xac_c00067{left:642.600000px;}
.xcc_c00067{left:643.800000px;}
.xd8_c00067{left:645.450000px;}
.x11f_c00067{left:646.800000px;}
.xdf_c00067{left:649.050000px;}
.xfa_c00067{left:651.000000px;}
.x106_c00067{left:652.050000px;}
.x124_c00067{left:653.250000px;}
.xf6_c00067{left:656.850000px;}
.xe4_c00067{left:657.900000px;}
.x112_c00067{left:660.600000px;}
.xbb_c00067{left:662.100000px;}
.xb5_c00067{left:664.200000px;}
.xc5_c00067{left:665.700000px;}
.xe5_c00067{left:667.200000px;}
.x13d_c00067{left:669.600000px;}
.x11a_c00067{left:671.250000px;}
.xad_c00067{left:672.900000px;}
.xa4_c00067{left:673.950000px;}
.x117_c00067{left:675.600000px;}
.xa0_c00067{left:676.950000px;}
.xe6_c00067{left:679.500000px;}
.xe0_c00067{left:682.500000px;}
.xee_c00067{left:685.200000px;}
.x120_c00067{left:687.600000px;}
.xd9_c00067{left:688.650000px;}
.xa5_c00067{left:693.450000px;}
.x100_c00067{left:694.500000px;}
.x125_c00067{left:695.700000px;}
.x141_c00067{left:697.200000px;}
.xc6_c00067{left:700.650000px;}
.xb6_c00067{left:702.300000px;}
.xf7_c00067{left:703.350000px;}
.xbc_c00067{left:706.350000px;}
.x147_c00067{left:707.700000px;}
.xe1_c00067{left:711.300000px;}
.xc7_c00067{left:712.950000px;}
.x136_c00067{left:714.300000px;}
.x122_c00067{left:715.500000px;}
.xfb_c00067{left:718.350000px;}
.x107_c00067{left:720.450000px;}
.xae_c00067{left:721.500000px;}
.x115_c00067{left:723.750000px;}
.xa1_c00067{left:726.300000px;}
.x118_c00067{left:728.850000px;}
.xda_c00067{left:730.500000px;}
.x143_c00067{left:732.000000px;}
.xfc_c00067{left:733.500000px;}
.xbd_c00067{left:736.200000px;}
.x11b_c00067{left:737.250000px;}
.xb7_c00067{left:738.300000px;}
.xe7_c00067{left:740.700000px;}
.x102_c00067{left:742.950000px;}
.xd4_c00067{left:744.150000px;}
.xef_c00067{left:747.450000px;}
.xaf_c00067{left:750.600000px;}
.x10f_c00067{left:752.250000px;}
.xbe_c00067{left:753.900000px;}
.x137_c00067{left:755.250000px;}
.xa6_c00067{left:756.750000px;}
.xcd_c00067{left:758.400000px;}
.x139_c00067{left:759.900000px;}
.x12c_c00067{left:761.250000px;}
.xe8_c00067{left:762.300000px;}
.xa7_c00067{left:765.000000px;}
.x108_c00067{left:766.500000px;}
.x11c_c00067{left:767.850000px;}
.xdb_c00067{left:769.050000px;}
.xc8_c00067{left:771.300000px;}
.xb0_c00067{left:772.950000px;}
.xfd_c00067{left:774.600000px;}
.xd0_c00067{left:779.100000px;}
.x126_c00067{left:780.300000px;}
.xdc_c00067{left:781.650000px;}
.x12a_c00067{left:783.000000px;}
.xd5_c00067{left:784.500000px;}
.xe2_c00067{left:786.150000px;}
.x109_c00067{left:787.350000px;}
.x130_c00067{left:789.000000px;}
.xce_c00067{left:790.800000px;}
.xa2_c00067{left:792.150000px;}
.x121_c00067{left:793.800000px;}
.x13f_c00067{left:795.450000px;}
.x12d_c00067{left:796.950000px;}
.xa8_c00067{left:798.900000px;}
.xc9_c00067{left:800.100000px;}
.x14a_c00067{left:802.050000px;}
.xf0_c00067{left:803.250000px;}
.x10a_c00067{left:805.350000px;}
.xc1_c00067{left:807.300000px;}
.x12b_c00067{left:809.250000px;}
.xd6_c00067{left:810.750000px;}
.x123_c00067{left:813.000000px;}
.xf1_c00067{left:814.800000px;}
.xb1_c00067{left:816.450000px;}
.x14b_c00067{left:817.800000px;}
.x113_c00067{left:819.450000px;}
.x142_c00067{left:820.950000px;}
.x129_c00067{left:822.150000px;}
.xa9_c00067{left:823.800000px;}
.x103_c00067{left:825.000000px;}
.xbf_c00067{left:826.950000px;}
.xb2_c00067{left:828.000000px;}
.xea_c00067{left:829.650000px;}
.x148_c00067{left:830.850000px;}
.x144_c00067{left:832.800000px;}
.xf2_c00067{left:834.900000px;}
.xc2_c00067{left:837.900000px;}
.x131_c00067{left:840.450000px;}
.x12e_c00067{left:841.500000px;}
.xca_c00067{left:842.550000px;}
.x127_c00067{left:844.800000px;}
.xfe_c00067{left:846.300000px;}
.xeb_c00067{left:847.950000px;}
.xdd_c00067{left:850.350000px;}
.x101_c00067{left:851.700000px;}
.x140_c00067{left:858.900000px;}
.xcf_c00067{left:862.500000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws4_c00067{word-spacing:-16.465793pt;}
.ws5_c00067{word-spacing:-12.000000pt;}
.ws6_c00067{word-spacing:-8.538012pt;}
.ws8_c00067{word-spacing:0.000000pt;}
.ws7_c00067{word-spacing:1.088435pt;}
.ws0_c00067{word-spacing:11.331423pt;}
.ws3_c00067{word-spacing:18.246418pt;}
.ws2_c00067{word-spacing:35.555556pt;}
.ws1_c00067{word-spacing:81.583169pt;}
.fs6_c00067{font-size:26.666667pt;}
.fs5_c00067{font-size:32.000000pt;}
.fs4_c00067{font-size:48.000000pt;}
.fs3_c00067{font-size:53.333333pt;}
.fs2_c00067{font-size:58.666667pt;}
.fs0_c00067{font-size:64.000000pt;}
.fs1_c00067{font-size:69.333333pt;}
.y0_c00067{bottom:0.000000pt;}
.y70_c00067{bottom:4.133333pt;}
.y36_c00067{bottom:149.466667pt;}
.y35_c00067{bottom:163.600000pt;}
.y6f_c00067{bottom:164.800000pt;}
.y6e_c00067{bottom:177.066667pt;}
.y34_c00067{bottom:179.866667pt;}
.y6d_c00067{bottom:189.600000pt;}
.y33_c00067{bottom:195.866667pt;}
.y6c_c00067{bottom:202.400000pt;}
.y32_c00067{bottom:211.733333pt;}
.y6b_c00067{bottom:215.466667pt;}
.y31_c00067{bottom:227.733333pt;}
.y6a_c00067{bottom:228.000000pt;}
.y30_c00067{bottom:243.466667pt;}
.y69_c00067{bottom:243.733333pt;}
.y68_c00067{bottom:254.933333pt;}
.y2f_c00067{bottom:259.466667pt;}
.y67_c00067{bottom:266.800000pt;}
.y2e_c00067{bottom:275.200000pt;}
.y66_c00067{bottom:280.533333pt;}
.y2d_c00067{bottom:291.200000pt;}
.y65_c00067{bottom:293.333333pt;}
.y64_c00067{bottom:305.466667pt;}
.y2c_c00067{bottom:307.466667pt;}
.y63_c00067{bottom:318.000000pt;}
.y2b_c00067{bottom:323.466667pt;}
.y2a_c00067{bottom:339.466667pt;}
.y61_c00067{bottom:344.000000pt;}
.y62_c00067{bottom:344.933333pt;}
.y60_c00067{bottom:357.066667pt;}
.y29_c00067{bottom:358.800000pt;}
.y5f_c00067{bottom:369.600000pt;}
.y28_c00067{bottom:370.266667pt;}
.y5e_c00067{bottom:382.666667pt;}
.y27_c00067{bottom:384.400000pt;}
.y5d_c00067{bottom:395.600000pt;}
.y26_c00067{bottom:395.866667pt;}
.y5c_c00067{bottom:408.400000pt;}
.y25_c00067{bottom:408.933333pt;}
.y5b_c00067{bottom:421.200000pt;}
.y24_c00067{bottom:423.066667pt;}
.y5a_c00067{bottom:434.266667pt;}
.y23_c00067{bottom:436.133333pt;}
.y59_c00067{bottom:447.066667pt;}
.y22_c00067{bottom:448.933333pt;}
.y58_c00067{bottom:459.866667pt;}
.y21_c00067{bottom:460.533333pt;}
.y57_c00067{bottom:473.333333pt;}
.y20_c00067{bottom:474.933333pt;}
.y56_c00067{bottom:485.866667pt;}
.y1f_c00067{bottom:491.200000pt;}
.y55_c00067{bottom:498.666667pt;}
.y1e_c00067{bottom:507.866667pt;}
.y54_c00067{bottom:511.466667pt;}
.y53_c00067{bottom:524.266667pt;}
.y1d_c00067{bottom:528.000000pt;}
.y52_c00067{bottom:537.066667pt;}
.y1c_c00067{bottom:544.000000pt;}
.y51_c00067{bottom:550.133333pt;}
.y1b_c00067{bottom:560.000000pt;}
.y50_c00067{bottom:563.200000pt;}
.y4f_c00067{bottom:575.600000pt;}
.y1a_c00067{bottom:575.733333pt;}
.y4e_c00067{bottom:589.066667pt;}
.y19_c00067{bottom:592.000000pt;}
.y4d_c00067{bottom:601.600000pt;}
.y18_c00067{bottom:608.266667pt;}
.y4c_c00067{bottom:614.666667pt;}
.y17_c00067{bottom:624.000000pt;}
.y16_c00067{bottom:640.266667pt;}
.y4b_c00067{bottom:656.266667pt;}
.y15_c00067{bottom:659.466667pt;}
.y4a_c00067{bottom:672.266667pt;}
.y14_c00067{bottom:679.333333pt;}
.y49_c00067{bottom:696.400000pt;}
.y13_c00067{bottom:698.533333pt;}
.y48_c00067{bottom:712.400000pt;}
.y12_c00067{bottom:718.666667pt;}
.y47_c00067{bottom:728.666667pt;}
.y11_c00067{bottom:738.266667pt;}
.y46_c00067{bottom:744.400000pt;}
.y10_c00067{bottom:754.533333pt;}
.y45_c00067{bottom:760.666667pt;}
.yf_c00067{bottom:774.400000pt;}
.y44_c00067{bottom:784.266667pt;}
.ye_c00067{bottom:793.866667pt;}
.y43_c00067{bottom:800.266667pt;}
.yd_c00067{bottom:814.400000pt;}
.y42_c00067{bottom:816.266667pt;}
.yc_c00067{bottom:830.400000pt;}
.y41_c00067{bottom:832.933333pt;}
.y40_c00067{bottom:848.533333pt;}
.yb_c00067{bottom:849.600000pt;}
.y3f_c00067{bottom:864.533333pt;}
.ya_c00067{bottom:866.266667pt;}
.y3e_c00067{bottom:880.266667pt;}
.y9_c00067{bottom:882.266667pt;}
.y3d_c00067{bottom:896.266667pt;}
.y8_c00067{bottom:902.400000pt;}
.y7_c00067{bottom:911.066667pt;}
.y3c_c00067{bottom:912.266667pt;}
.y6_c00067{bottom:928.000000pt;}
.y3b_c00067{bottom:931.600000pt;}
.y3a_c00067{bottom:948.533333pt;}
.y5_c00067{bottom:951.066667pt;}
.y39_c00067{bottom:965.200000pt;}
.y4_c00067{bottom:971.866667pt;}
.y38_c00067{bottom:981.200000pt;}
.y3_c00067{bottom:994.266667pt;}
.y37_c00067{bottom:997.466667pt;}
.y1_c00067{bottom:1018.266667pt;}
.y2_c00067{bottom:1019.866667pt;}
.h8_c00067{height:26.666667pt;}
.h7_c00067{height:32.000000pt;}
.h6_c00067{height:48.000000pt;}
.h5_c00067{height:53.333333pt;}
.h4_c00067{height:58.666667pt;}
.h2_c00067{height:64.000000pt;}
.h3_c00067{height:69.333333pt;}
.h1_c00067{height:1126.666667pt;}
.h0_c00067{height:1126.719971pt;}
.w0_c00067{width:843.200032pt;}
.w1_c00067{width:843.333333pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:147.466667pt;}
.xa_c00067{left:149.066667pt;}
.x46_c00067{left:151.066667pt;}
.x7f_c00067{left:152.266667pt;}
.x1b_c00067{left:161.733333pt;}
.x99_c00067{left:163.466667pt;}
.x69_c00067{left:164.666667pt;}
.x25_c00067{left:166.400000pt;}
.x40_c00067{left:167.866667pt;}
.x87_c00067{left:168.933333pt;}
.x96_c00067{left:169.866667pt;}
.x47_c00067{left:174.400000pt;}
.x75_c00067{left:177.200000pt;}
.x70_c00067{left:178.133333pt;}
.x1d_c00067{left:183.066667pt;}
.x2f_c00067{left:184.266667pt;}
.x2c_c00067{left:186.533333pt;}
.x59_c00067{left:188.533333pt;}
.x10_c00067{left:190.000000pt;}
.x61_c00067{left:191.066667pt;}
.x4a_c00067{left:193.733333pt;}
.x19_c00067{left:195.600000pt;}
.x4f_c00067{left:196.800000pt;}
.x6c_c00067{left:197.733333pt;}
.x97_c00067{left:199.466667pt;}
.x56_c00067{left:202.133333pt;}
.x8d_c00067{left:203.200000pt;}
.x83_c00067{left:205.066667pt;}
.x35_c00067{left:206.533333pt;}
.x48_c00067{left:208.666667pt;}
.x51_c00067{left:210.133333pt;}
.x64_c00067{left:211.200000pt;}
.xb_c00067{left:212.800000pt;}
.x6a_c00067{left:214.266667pt;}
.x3c_c00067{left:216.266667pt;}
.x39_c00067{left:219.466667pt;}
.x42_c00067{left:220.533333pt;}
.x1a_c00067{left:221.866667pt;}
.x88_c00067{left:223.066667pt;}
.x5a_c00067{left:224.000000pt;}
.xc_c00067{left:225.866667pt;}
.x76_c00067{left:227.466667pt;}
.x52_c00067{left:230.666667pt;}
.x1e_c00067{left:232.666667pt;}
.x2d_c00067{left:234.800000pt;}
.x79_c00067{left:237.333333pt;}
.x43_c00067{left:238.800000pt;}
.x89_c00067{left:240.000000pt;}
.x3_c00067{left:241.600000pt;}
.x30_c00067{left:243.866667pt;}
.x7a_c00067{left:245.333333pt;}
.x26_c00067{left:249.600000pt;}
.x62_c00067{left:250.533333pt;}
.x13_c00067{left:251.866667pt;}
.x91_c00067{left:253.066667pt;}
.x4_c00067{left:254.400000pt;}
.x71_c00067{left:255.600000pt;}
.x9a_c00067{left:257.600000pt;}
.x3a_c00067{left:259.733333pt;}
.x2e_c00067{left:260.666667pt;}
.x92_c00067{left:261.733333pt;}
.x31_c00067{left:262.800000pt;}
.x1f_c00067{left:264.000000pt;}
.x5b_c00067{left:266.266667pt;}
.x36_c00067{left:268.266667pt;}
.x11_c00067{left:269.733333pt;}
.x4c_c00067{left:271.333333pt;}
.x6d_c00067{left:272.533333pt;}
.x27_c00067{left:274.266667pt;}
.x3b_c00067{left:276.666667pt;}
.xd_c00067{left:277.733333pt;}
.x1c_c00067{left:280.400000pt;}
.x12_c00067{left:283.466667pt;}
.x8c_c00067{left:285.733333pt;}
.x5_c00067{left:287.066667pt;}
.x65_c00067{left:289.333333pt;}
.x7b_c00067{left:292.800000pt;}
.x44_c00067{left:294.800000pt;}
.x28_c00067{left:296.666667pt;}
.x20_c00067{left:299.866667pt;}
.x6b_c00067{left:302.000000pt;}
.x6_c00067{left:304.000000pt;}
.x3d_c00067{left:305.600000pt;}
.x14_c00067{left:307.200000pt;}
.x21_c00067{left:308.533333pt;}
.x32_c00067{left:309.866667pt;}
.x5c_c00067{left:311.733333pt;}
.x80_c00067{left:314.533333pt;}
.x4b_c00067{left:316.266667pt;}
.x7_c00067{left:317.466667pt;}
.x15_c00067{left:318.666667pt;}
.x45_c00067{left:319.733333pt;}
.x66_c00067{left:321.066667pt;}
.x41_c00067{left:322.133333pt;}
.x81_c00067{left:323.200000pt;}
.xe_c00067{left:324.400000pt;}
.x8e_c00067{left:325.733333pt;}
.x77_c00067{left:329.200000pt;}
.x8_c00067{left:331.200000pt;}
.x37_c00067{left:334.266667pt;}
.x3e_c00067{left:335.200000pt;}
.x78_c00067{left:339.733333pt;}
.x84_c00067{left:342.400000pt;}
.x9_c00067{left:344.266667pt;}
.x7c_c00067{left:346.533333pt;}
.x8a_c00067{left:348.133333pt;}
.x82_c00067{left:350.400000pt;}
.x53_c00067{left:351.600000pt;}
.x38_c00067{left:352.800000pt;}
.x49_c00067{left:354.400000pt;}
.x93_c00067{left:355.466667pt;}
.x16_c00067{left:356.800000pt;}
.x5f_c00067{left:358.133333pt;}
.x29_c00067{left:359.333333pt;}
.x22_c00067{left:360.666667pt;}
.x2_c00067{left:363.200000pt;}
.x7d_c00067{left:365.066667pt;}
.xf_c00067{left:367.600000pt;}
.x8f_c00067{left:368.666667pt;}
.x8b_c00067{left:370.533333pt;}
.x7e_c00067{left:371.466667pt;}
.x4d_c00067{left:373.733333pt;}
.x17_c00067{left:375.733333pt;}
.x67_c00067{left:380.933333pt;}
.x54_c00067{left:383.333333pt;}
.x23_c00067{left:384.933333pt;}
.x57_c00067{left:387.866667pt;}
.x72_c00067{left:388.933333pt;}
.x33_c00067{left:389.866667pt;}
.x74_c00067{left:391.066667pt;}
.x5d_c00067{left:393.333333pt;}
.x73_c00067{left:394.933333pt;}
.x3f_c00067{left:397.600000pt;}
.x34_c00067{left:398.533333pt;}
.x94_c00067{left:399.600000pt;}
.x85_c00067{left:400.933333pt;}
.x5e_c00067{left:403.200000pt;}
.x9b_c00067{left:404.400000pt;}
.x2a_c00067{left:407.600000pt;}
.x68_c00067{left:408.800000pt;}
.x58_c00067{left:411.600000pt;}
.x98_c00067{left:413.066667pt;}
.x50_c00067{left:414.933333pt;}
.x18_c00067{left:416.666667pt;}
.x2b_c00067{left:419.733333pt;}
.x6e_c00067{left:421.066667pt;}
.x86_c00067{left:424.266667pt;}
.x90_c00067{left:425.866667pt;}
.x60_c00067{left:427.333333pt;}
.x63_c00067{left:428.800000pt;}
.x95_c00067{left:434.133333pt;}
.x55_c00067{left:436.400000pt;}
.x24_c00067{left:438.400000pt;}
.x6f_c00067{left:440.533333pt;}
.x4e_c00067{left:443.200000pt;}
.x10c_c00067{left:462.400000pt;}
.x14c_c00067{left:465.600000pt;}
.x138_c00067{left:467.866667pt;}
.xe9_c00067{left:470.400000pt;}
.x128_c00067{left:471.600000pt;}
.x13e_c00067{left:472.533333pt;}
.x145_c00067{left:474.000000pt;}
.xd1_c00067{left:475.866667pt;}
.x132_c00067{left:479.066667pt;}
.x104_c00067{left:483.066667pt;}
.xf3_c00067{left:485.200000pt;}
.x9c_c00067{left:486.133333pt;}
.x12f_c00067{left:487.200000pt;}
.x11d_c00067{left:488.533333pt;}
.x10d_c00067{left:490.533333pt;}
.x13b_c00067{left:493.466667pt;}
.xb8_c00067{left:495.733333pt;}
.x134_c00067{left:499.600000pt;}
.x146_c00067{left:500.533333pt;}
.x116_c00067{left:502.000000pt;}
.x149_c00067{left:503.333333pt;}
.xf9_c00067{left:505.066667pt;}
.xd2_c00067{left:506.933333pt;}
.x9d_c00067{left:510.133333pt;}
.x135_c00067{left:513.333333pt;}
.xaa_c00067{left:514.266667pt;}
.xc3_c00067{left:516.000000pt;}
.xec_c00067{left:518.533333pt;}
.x110_c00067{left:519.733333pt;}
.xcb_c00067{left:522.400000pt;}
.xde_c00067{left:524.133333pt;}
.xff_c00067{left:525.200000pt;}
.xb3_c00067{left:527.066667pt;}
.xf4_c00067{left:528.400000pt;}
.xc0_c00067{left:531.066667pt;}
.x119_c00067{left:532.000000pt;}
.x11e_c00067{left:533.600000pt;}
.xe3_c00067{left:534.533333pt;}
.x133_c00067{left:536.266667pt;}
.xb9_c00067{left:538.933333pt;}
.x13c_c00067{left:540.133333pt;}
.x114_c00067{left:542.533333pt;}
.x13a_c00067{left:543.466667pt;}
.x9e_c00067{left:544.400000pt;}
.xf5_c00067{left:545.733333pt;}
.xb4_c00067{left:547.866667pt;}
.xd7_c00067{left:549.733333pt;}
.x10b_c00067{left:550.800000pt;}
.x9f_c00067{left:552.400000pt;}
.xab_c00067{left:554.533333pt;}
.xba_c00067{left:555.866667pt;}
.xf8_c00067{left:558.000000pt;}
.x111_c00067{left:559.066667pt;}
.xd3_c00067{left:560.666667pt;}
.xc4_c00067{left:562.000000pt;}
.x105_c00067{left:563.333333pt;}
.xed_c00067{left:564.933333pt;}
.x10e_c00067{left:566.000000pt;}
.xa3_c00067{left:568.933333pt;}
.xac_c00067{left:571.200000pt;}
.xcc_c00067{left:572.266667pt;}
.xd8_c00067{left:573.733333pt;}
.x11f_c00067{left:574.933333pt;}
.xdf_c00067{left:576.933333pt;}
.xfa_c00067{left:578.666667pt;}
.x106_c00067{left:579.600000pt;}
.x124_c00067{left:580.666667pt;}
.xf6_c00067{left:583.866667pt;}
.xe4_c00067{left:584.800000pt;}
.x112_c00067{left:587.200000pt;}
.xbb_c00067{left:588.533333pt;}
.xb5_c00067{left:590.400000pt;}
.xc5_c00067{left:591.733333pt;}
.xe5_c00067{left:593.066667pt;}
.x13d_c00067{left:595.200000pt;}
.x11a_c00067{left:596.666667pt;}
.xad_c00067{left:598.133333pt;}
.xa4_c00067{left:599.066667pt;}
.x117_c00067{left:600.533333pt;}
.xa0_c00067{left:601.733333pt;}
.xe6_c00067{left:604.000000pt;}
.xe0_c00067{left:606.666667pt;}
.xee_c00067{left:609.066667pt;}
.x120_c00067{left:611.200000pt;}
.xd9_c00067{left:612.133333pt;}
.xa5_c00067{left:616.400000pt;}
.x100_c00067{left:617.333333pt;}
.x125_c00067{left:618.400000pt;}
.x141_c00067{left:619.733333pt;}
.xc6_c00067{left:622.800000pt;}
.xb6_c00067{left:624.266667pt;}
.xf7_c00067{left:625.200000pt;}
.xbc_c00067{left:627.866667pt;}
.x147_c00067{left:629.066667pt;}
.xe1_c00067{left:632.266667pt;}
.xc7_c00067{left:633.733333pt;}
.x136_c00067{left:634.933333pt;}
.x122_c00067{left:636.000000pt;}
.xfb_c00067{left:638.533333pt;}
.x107_c00067{left:640.400000pt;}
.xae_c00067{left:641.333333pt;}
.x115_c00067{left:643.333333pt;}
.xa1_c00067{left:645.600000pt;}
.x118_c00067{left:647.866667pt;}
.xda_c00067{left:649.333333pt;}
.x143_c00067{left:650.666667pt;}
.xfc_c00067{left:652.000000pt;}
.xbd_c00067{left:654.400000pt;}
.x11b_c00067{left:655.333333pt;}
.xb7_c00067{left:656.266667pt;}
.xe7_c00067{left:658.400000pt;}
.x102_c00067{left:660.400000pt;}
.xd4_c00067{left:661.466667pt;}
.xef_c00067{left:664.400000pt;}
.xaf_c00067{left:667.200000pt;}
.x10f_c00067{left:668.666667pt;}
.xbe_c00067{left:670.133333pt;}
.x137_c00067{left:671.333333pt;}
.xa6_c00067{left:672.666667pt;}
.xcd_c00067{left:674.133333pt;}
.x139_c00067{left:675.466667pt;}
.x12c_c00067{left:676.666667pt;}
.xe8_c00067{left:677.600000pt;}
.xa7_c00067{left:680.000000pt;}
.x108_c00067{left:681.333333pt;}
.x11c_c00067{left:682.533333pt;}
.xdb_c00067{left:683.600000pt;}
.xc8_c00067{left:685.600000pt;}
.xb0_c00067{left:687.066667pt;}
.xfd_c00067{left:688.533333pt;}
.xd0_c00067{left:692.533333pt;}
.x126_c00067{left:693.600000pt;}
.xdc_c00067{left:694.800000pt;}
.x12a_c00067{left:696.000000pt;}
.xd5_c00067{left:697.333333pt;}
.xe2_c00067{left:698.800000pt;}
.x109_c00067{left:699.866667pt;}
.x130_c00067{left:701.333333pt;}
.xce_c00067{left:702.933333pt;}
.xa2_c00067{left:704.133333pt;}
.x121_c00067{left:705.600000pt;}
.x13f_c00067{left:707.066667pt;}
.x12d_c00067{left:708.400000pt;}
.xa8_c00067{left:710.133333pt;}
.xc9_c00067{left:711.200000pt;}
.x14a_c00067{left:712.933333pt;}
.xf0_c00067{left:714.000000pt;}
.x10a_c00067{left:715.866667pt;}
.xc1_c00067{left:717.600000pt;}
.x12b_c00067{left:719.333333pt;}
.xd6_c00067{left:720.666667pt;}
.x123_c00067{left:722.666667pt;}
.xf1_c00067{left:724.266667pt;}
.xb1_c00067{left:725.733333pt;}
.x14b_c00067{left:726.933333pt;}
.x113_c00067{left:728.400000pt;}
.x142_c00067{left:729.733333pt;}
.x129_c00067{left:730.800000pt;}
.xa9_c00067{left:732.266667pt;}
.x103_c00067{left:733.333333pt;}
.xbf_c00067{left:735.066667pt;}
.xb2_c00067{left:736.000000pt;}
.xea_c00067{left:737.466667pt;}
.x148_c00067{left:738.533333pt;}
.x144_c00067{left:740.266667pt;}
.xf2_c00067{left:742.133333pt;}
.xc2_c00067{left:744.800000pt;}
.x131_c00067{left:747.066667pt;}
.x12e_c00067{left:748.000000pt;}
.xca_c00067{left:748.933333pt;}
.x127_c00067{left:750.933333pt;}
.xfe_c00067{left:752.266667pt;}
.xeb_c00067{left:753.733333pt;}
.xdd_c00067{left:755.866667pt;}
.x101_c00067{left:757.066667pt;}
.x140_c00067{left:763.466667pt;}
.xcf_c00067{left:766.666667pt;}
}





/* 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_c00068 {
    display:none;
  }
  .loading-indicator_c00068.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00068 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_c00068 { 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_c00068" -> "#page-container .classname_c00068")
 */
.pf_c00068 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00068 { /* 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_c00068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00068 { /* 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_c00068 { /* 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_c00068 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00068 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00068 {overflow:visible;}
  }
}
.c_c00068 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00068 { /* 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_c00068:after { /* webkit #35443 */
  content: '';
}
.t_c00068:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00068 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 */
}
.__c00068 { /* 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_c00068 { /* info for Javascript */
  display:none;
}
.l_c00068 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00068 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00068 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00068: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_c00068 {
    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_c00068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00068.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_c00068 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00068;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.000000;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;}
.m1f_c00068{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00068{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00068{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00068{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00068{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00068{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m114_c00068{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00068{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m112_c00068{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m100_c00068{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m88_c00068{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00068{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00068{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m110_c00068{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m102_c00068{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00068{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m18_c00068{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00068{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m108_c00068{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00068{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00068{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m31_c00068{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m107_c00068{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m97_c00068{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m118_c00068{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m93_c00068{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00068{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00068{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00068{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mff_c00068{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m5_c00068{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00068{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m25_c00068{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00068{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.meb_c00068{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m119_c00068{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.mc_c00068{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m117_c00068{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00068{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00068{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00068{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.me9_c00068{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00068{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma_c00068{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00068{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8_c00068{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m54_c00068{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00068{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m103_c00068{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mee_c00068{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m74_c00068{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m32_c00068{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m77_c00068{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m46_c00068{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m35_c00068{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00068{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00068{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb_c00068{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m50_c00068{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00068{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00068{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00068{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m27_c00068{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00068{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m47_c00068{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00068{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00068{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md8_c00068{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.md4_c00068{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m78_c00068{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00068{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00068{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00068{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me7_c00068{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00068{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m127_c00068{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m16_c00068{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m111_c00068{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00068{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m37_c00068{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00068{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.me4_c00068{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m55_c00068{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00068{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mca_c00068{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00068{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00068{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m75_c00068{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00068{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00068{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m21_c00068{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m81_c00068{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00068{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00068{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00068{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00068{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m40_c00068{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00068{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m11_c00068{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00068{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00068{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m129_c00068{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m76_c00068{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00068{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00068{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m36_c00068{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00068{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m71_c00068{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00068{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m63_c00068{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m79_c00068{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m131_c00068{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m87_c00068{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00068{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m98_c00068{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00068{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m30_c00068{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me8_c00068{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00068{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m39_c00068{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m34_c00068{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m33_c00068{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00068{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00068{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00068{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00068{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m26_c00068{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00068{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me3_c00068{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m56_c00068{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00068{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m72_c00068{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00068{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m96_c00068{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mab_c00068{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00068{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.md1_c00068{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md9_c00068{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00068{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00068{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m126_c00068{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00068{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m59_c00068{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00068{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00068{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00068{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m14_c00068{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00068{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mba_c00068{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00068{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m62_c00068{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00068{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m86_c00068{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md3_c00068{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m29_c00068{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00068{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00068{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m73_c00068{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00068{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00068{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m82_c00068{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m123_c00068{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00068{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md5_c00068{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me2_c00068{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m120_c00068{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m17_c00068{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m66_c00068{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.maa_c00068{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m44_c00068{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m106_c00068{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md2_c00068{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00068{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m130_c00068{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.maf_c00068{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m61_c00068{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00068{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m13_c00068{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00068{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00068{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00068{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00068{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00068{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m109_c00068{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00068{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m19_c00068{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m28_c00068{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m83_c00068{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m53_c00068{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00068{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mce_c00068{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00068{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m22_c00068{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md0_c00068{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m42_c00068{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m84_c00068{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00068{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m113_c00068{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m15_c00068{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m60_c00068{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.med_c00068{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m48_c00068{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m12_c00068{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00068{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m99_c00068{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m80_c00068{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m89_c00068{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00068{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m58_c00068{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m85_c00068{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m94_c00068{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m20_c00068{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00068{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m92_c00068{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00068{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00068{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.md7_c00068{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m124_c00068{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m64_c00068{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m128_c00068{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00068{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m38_c00068{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00068{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m91_c00068{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00068{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m57_c00068{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00068{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00068{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00068{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00068{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m49_c00068{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mae_c00068{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m68_c00068{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00068{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m122_c00068{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00068{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m69_c00068{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00068{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m67_c00068{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m125_c00068{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mde_c00068{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m95_c00068{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mef_c00068{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00068{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00068{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mac_c00068{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);}
.m4c_c00068{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3_c00068{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9_c00068{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mec_c00068{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00068{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.me_c00068{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me1_c00068{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m41_c00068{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m24_c00068{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m90_c00068{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00068{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me5_c00068{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m121_c00068{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00068{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf_c00068{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00068{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7_c00068{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mea_c00068{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.me6_c00068{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00068{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m70_c00068{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00068{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00068{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00068{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.me0_c00068{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00068{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00068{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m65_c00068{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m45_c00068{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00068{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00068{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00068{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00068{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00068{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m10_c00068{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m52_c00068{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00068{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00068{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.md6_c00068{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m43_c00068{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00068{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mad_c00068{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mda_c00068{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m23_c00068{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m51_c00068{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m6_c00068{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m101_c00068{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00068{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00068{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00068{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00068{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00068{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m104_c00068{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.m116_c00068{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m105_c00068{transform:matrix(0.405500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405500,0.000000,0.000000,0.250000,0,0);}
.m115_c00068{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls0_c00068{letter-spacing:0.000000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{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__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00068{word-spacing:0.000000px;}
.ws0_c00068{word-spacing:6.571429px;}
.ws1_c00068{word-spacing:18.583643px;}
.ws2_c00068{word-spacing:22.142857px;}
.ws3_c00068{word-spacing:87.435115px;}
.fc0_c00068{color:transparent;}
.fs4_c00068{font-size:48.000000px;}
.fs6_c00068{font-size:54.000000px;}
.fs1_c00068{font-size:60.000000px;}
.fs3_c00068{font-size:66.000000px;}
.fs5_c00068{font-size:72.000000px;}
.fs0_c00068{font-size:78.000000px;}
.fs2_c00068{font-size:84.000000px;}
.y0_c00068{bottom:0.000000px;}
.y2a_c00068{bottom:68.100000px;}
.y63_c00068{bottom:142.500000px;}
.y62_c00068{bottom:178.500000px;}
.y61_c00068{bottom:192.900000px;}
.y5a_c00068{bottom:193.650000px;}
.y59_c00068{bottom:205.500000px;}
.y60_c00068{bottom:207.300000px;}
.y5f_c00068{bottom:221.700000px;}
.y58_c00068{bottom:236.850000px;}
.y57_c00068{bottom:245.850000px;}
.y5e_c00068{bottom:250.200000px;}
.y5d_c00068{bottom:265.350000px;}
.y56_c00068{bottom:269.250000px;}
.y55_c00068{bottom:296.250000px;}
.y5c_c00068{bottom:302.400000px;}
.y54_c00068{bottom:308.550000px;}
.y29_c00068{bottom:320.700000px;}
.y53_c00068{bottom:334.350000px;}
.y28_c00068{bottom:342.300000px;}
.y27_c00068{bottom:361.050000px;}
.y52_c00068{bottom:363.900000px;}
.y26_c00068{bottom:378.750000px;}
.y51_c00068{bottom:383.400000px;}
.y25_c00068{bottom:396.750000px;}
.y50_c00068{bottom:405.750000px;}
.y24_c00068{bottom:415.050000px;}
.y4f_c00068{bottom:424.050000px;}
.y23_c00068{bottom:433.050000px;}
.y4e_c00068{bottom:442.050000px;}
.y22_c00068{bottom:451.050000px;}
.y4d_c00068{bottom:460.050000px;}
.y21_c00068{bottom:469.050000px;}
.y4c_c00068{bottom:477.450000px;}
.y20_c00068{bottom:489.000000px;}
.y4b_c00068{bottom:495.750000px;}
.y4a_c00068{bottom:514.050000px;}
.y1f_c00068{bottom:523.500000px;}
.y49_c00068{bottom:531.750000px;}
.y1e_c00068{bottom:532.800000px;}
.y48_c00068{bottom:550.050000px;}
.y1d_c00068{bottom:551.850000px;}
.y5b_c00068{bottom:570.900000px;}
.y1c_c00068{bottom:577.500000px;}
.y47_c00068{bottom:585.300000px;}
.y1b_c00068{bottom:595.800000px;}
.y46_c00068{bottom:598.500000px;}
.y1a_c00068{bottom:614.100000px;}
.y45_c00068{bottom:614.400000px;}
.y44_c00068{bottom:630.300000px;}
.y19_c00068{bottom:631.800000px;}
.y43_c00068{bottom:649.050000px;}
.y18_c00068{bottom:649.800000px;}
.y42_c00068{bottom:666.750000px;}
.y17_c00068{bottom:667.500000px;}
.y16_c00068{bottom:685.800000px;}
.y41_c00068{bottom:689.400000px;}
.y40_c00068{bottom:707.400000px;}
.y15_c00068{bottom:707.850000px;}
.y14_c00068{bottom:729.750000px;}
.y3f_c00068{bottom:747.750000px;}
.y13_c00068{bottom:751.350000px;}
.y3e_c00068{bottom:765.750000px;}
.y12_c00068{bottom:774.000000px;}
.y3d_c00068{bottom:783.450000px;}
.y11_c00068{bottom:796.350000px;}
.y3c_c00068{bottom:801.750000px;}
.y10_c00068{bottom:818.250000px;}
.y3b_c00068{bottom:819.750000px;}
.y3a_c00068{bottom:837.750000px;}
.yf_c00068{bottom:840.600000px;}
.y39_c00068{bottom:855.750000px;}
.ye_c00068{bottom:858.900000px;}
.y38_c00068{bottom:873.750000px;}
.yd_c00068{bottom:881.250000px;}
.y37_c00068{bottom:891.300000px;}
.yc_c00068{bottom:899.250000px;}
.y36_c00068{bottom:909.750000px;}
.yb_c00068{bottom:916.800000px;}
.y35_c00068{bottom:932.100000px;}
.ya_c00068{bottom:939.150000px;}
.y34_c00068{bottom:949.650000px;}
.y9_c00068{bottom:961.500000px;}
.y33_c00068{bottom:971.250000px;}
.y8_c00068{bottom:983.850000px;}
.y32_c00068{bottom:989.550000px;}
.y7_c00068{bottom:1006.200000px;}
.y31_c00068{bottom:1007.550000px;}
.y6_c00068{bottom:1024.200000px;}
.y30_c00068{bottom:1025.250000px;}
.y5_c00068{bottom:1042.500000px;}
.y2f_c00068{bottom:1044.000000px;}
.y2e_c00068{bottom:1060.500000px;}
.y4_c00068{bottom:1064.550000px;}
.y2d_c00068{bottom:1079.250000px;}
.y3_c00068{bottom:1086.900000px;}
.y2c_c00068{bottom:1100.850000px;}
.y2_c00068{bottom:1117.050000px;}
.y2b_c00068{bottom:1119.600000px;}
.y1_c00068{bottom:1146.300000px;}
.h6_c00068{height:48.000000px;}
.h8_c00068{height:54.000000px;}
.h3_c00068{height:60.000000px;}
.h5_c00068{height:66.000000px;}
.h7_c00068{height:72.000000px;}
.h2_c00068{height:78.000000px;}
.h4_c00068{height:84.000000px;}
.h1_c00068{height:1270.500000px;}
.h0_c00068{height:1270.799927px;}
.w0_c00068{width:948.600036px;}
.w1_c00068{width:948.750000px;}
.x0_c00068{left:0.000000px;}
.x8e_c00068{left:46.500000px;}
.xa_c00068{left:65.100000px;}
.x11_c00068{left:66.300000px;}
.x4f_c00068{left:67.350000px;}
.x81_c00068{left:69.450000px;}
.x15_c00068{left:83.850000px;}
.x21_c00068{left:84.900000px;}
.x59_c00068{left:86.550000px;}
.x12a_c00068{left:89.550000px;}
.x131_c00068{left:90.750000px;}
.x50_c00068{left:92.550000px;}
.x76_c00068{left:97.650000px;}
.xd_c00068{left:101.400000px;}
.x29_c00068{left:103.350000px;}
.x47_c00068{left:104.400000px;}
.x42_c00068{left:105.450000px;}
.x54_c00068{left:106.500000px;}
.x16_c00068{left:107.550000px;}
.x12f_c00068{left:111.000000px;}
.x7b_c00068{left:112.350000px;}
.x22_c00068{left:114.000000px;}
.x46_c00068{left:117.900000px;}
.x7c_c00068{left:120.300000px;}
.x66_c00068{left:123.900000px;}
.x6d_c00068{left:124.950000px;}
.x51_c00068{left:126.750000px;}
.x73_c00068{left:128.100000px;}
.x86_c00068{left:130.800000px;}
.x3d_c00068{left:132.450000px;}
.x48_c00068{left:136.800000px;}
.x49_c00068{left:138.600000px;}
.x4d_c00068{left:139.650000px;}
.x5c_c00068{left:140.850000px;}
.x12_c00068{left:141.900000px;}
.x1_c00068{left:144.000000px;}
.x3e_c00068{left:146.550000px;}
.x17_c00068{left:148.200000px;}
.x30_c00068{left:150.300000px;}
.x6e_c00068{left:151.650000px;}
.x63_c00068{left:152.700000px;}
.x87_c00068{left:154.200000px;}
.x8a_c00068{left:155.400000px;}
.xb_c00068{left:158.700000px;}
.x2a_c00068{left:159.900000px;}
.x74_c00068{left:162.300000px;}
.x4c_c00068{left:166.650000px;}
.x39_c00068{left:170.250000px;}
.x55_c00068{left:171.300000px;}
.x23_c00068{left:172.650000px;}
.x7d_c00068{left:174.300000px;}
.x60_c00068{left:175.800000px;}
.x67_c00068{left:177.600000px;}
.x6a_c00068{left:180.000000px;}
.x4_c00068{left:181.050000px;}
.x24_c00068{left:183.450000px;}
.x6f_c00068{left:184.800000px;}
.x3a_c00068{left:189.000000px;}
.x7e_c00068{left:191.250000px;}
.x4b_c00068{left:193.950000px;}
.x5a_c00068{left:195.000000px;}
.x2b_c00068{left:197.700000px;}
.x13_c00068{left:200.250000px;}
.x4a_c00068{left:201.600000px;}
.x25_c00068{left:202.950000px;}
.x52_c00068{left:204.150000px;}
.x70_c00068{left:205.650000px;}
.xe_c00068{left:207.600000px;}
.x18_c00068{left:210.450000px;}
.x3b_c00068{left:212.400000px;}
.x5_c00068{left:214.200000px;}
.x4e_c00068{left:215.250000px;}
.x77_c00068{left:216.750000px;}
.x34_c00068{left:218.250000px;}
.x79_c00068{left:221.850000px;}
.x8b_c00068{left:223.200000px;}
.x83_c00068{left:224.250000px;}
.x68_c00068{left:225.900000px;}
.x5d_c00068{left:226.950000px;}
.x31_c00068{left:228.000000px;}
.x35_c00068{left:230.100000px;}
.x61_c00068{left:232.200000px;}
.x6_c00068{left:233.700000px;}
.x2c_c00068{left:235.500000px;}
.x19_c00068{left:237.750000px;}
.x78_c00068{left:242.700000px;}
.x1a_c00068{left:246.750000px;}
.x7_c00068{left:247.800000px;}
.x75_c00068{left:252.300000px;}
.x3f_c00068{left:253.350000px;}
.xf_c00068{left:255.900000px;}
.x26_c00068{left:258.300000px;}
.x62_c00068{left:259.950000px;}
.xc_c00068{left:261.900000px;}
.x8_c00068{left:264.000000px;}
.x8d_c00068{left:266.700000px;}
.x71_c00068{left:268.650000px;}
.x40_c00068{left:270.600000px;}
.x14_c00068{left:272.550000px;}
.x12b_c00068{left:274.650000px;}
.x2d_c00068{left:276.600000px;}
.x9_c00068{left:278.400000px;}
.x1b_c00068{left:282.450000px;}
.x5b_c00068{left:284.250000px;}
.x53_c00068{left:287.400000px;}
.x64_c00068{left:289.500000px;}
.x43_c00068{left:291.300000px;}
.x5e_c00068{left:294.300000px;}
.x85_c00068{left:295.500000px;}
.x130_c00068{left:297.300000px;}
.x1c_c00068{left:298.350000px;}
.x44_c00068{left:301.050000px;}
.x56_c00068{left:303.750000px;}
.x27_c00068{left:305.400000px;}
.x10_c00068{left:306.600000px;}
.x32_c00068{left:308.250000px;}
.x2e_c00068{left:312.900000px;}
.x2_c00068{left:313.950000px;}
.x36_c00068{left:315.750000px;}
.x88_c00068{left:319.350000px;}
.x3c_c00068{left:321.150000px;}
.x6b_c00068{left:323.700000px;}
.x129_c00068{left:325.050000px;}
.x41_c00068{left:327.150000px;}
.x33_c00068{left:328.350000px;}
.x132_c00068{left:329.700000px;}
.x37_c00068{left:331.650000px;}
.x2f_c00068{left:336.000000px;}
.x82_c00068{left:337.950000px;}
.x8c_c00068{left:339.150000px;}
.x7f_c00068{left:340.350000px;}
.x1d_c00068{left:342.600000px;}
.x84_c00068{left:345.600000px;}
.x5f_c00068{left:348.300000px;}
.x69_c00068{left:350.850000px;}
.x1e_c00068{left:353.100000px;}
.x57_c00068{left:355.200000px;}
.x7a_c00068{left:358.200000px;}
.x12e_c00068{left:359.850000px;}
.x28_c00068{left:362.250000px;}
.x12c_c00068{left:366.750000px;}
.x58_c00068{left:369.900000px;}
.x80_c00068{left:371.700000px;}
.x1f_c00068{left:372.900000px;}
.x38_c00068{left:374.100000px;}
.x65_c00068{left:375.150000px;}
.x12d_c00068{left:378.600000px;}
.x72_c00068{left:379.950000px;}
.x45_c00068{left:382.800000px;}
.x6c_c00068{left:390.000000px;}
.x89_c00068{left:392.400000px;}
.x133_c00068{left:395.100000px;}
.x20_c00068{left:417.150000px;}
.x8f_c00068{left:428.100000px;}
.x11f_c00068{left:429.150000px;}
.xec_c00068{left:430.500000px;}
.xb2_c00068{left:442.950000px;}
.xaa_c00068{left:444.450000px;}
.x97_c00068{left:445.650000px;}
.x120_c00068{left:446.850000px;}
.x98_c00068{left:452.100000px;}
.x107_c00068{left:456.450000px;}
.x11e_c00068{left:457.950000px;}
.x102_c00068{left:459.000000px;}
.xed_c00068{left:462.150000px;}
.xe7_c00068{left:464.100000px;}
.x9e_c00068{left:465.150000px;}
.xeb_c00068{left:468.450000px;}
.xf7_c00068{left:470.850000px;}
.xc4_c00068{left:472.050000px;}
.xbf_c00068{left:473.550000px;}
.x108_c00068{left:475.950000px;}
.x9f_c00068{left:477.000000px;}
.x113_c00068{left:480.750000px;}
.xc5_c00068{left:482.850000px;}
.x99_c00068{left:484.800000px;}
.xfe_c00068{left:487.500000px;}
.xdd_c00068{left:490.350000px;}
.xf1_c00068{left:492.150000px;}
.x103_c00068{left:493.500000px;}
.xee_c00068{left:495.300000px;}
.x9a_c00068{left:496.650000px;}
.x90_c00068{left:498.300000px;}
.xf2_c00068{left:502.950000px;}
.x9d_c00068{left:505.650000px;}
.xfc_c00068{left:509.850000px;}
.xab_c00068{left:511.350000px;}
.xc9_c00068{left:512.700000px;}
.xa5_c00068{left:514.350000px;}
.x104_c00068{left:516.150000px;}
.x119_c00068{left:517.500000px;}
.x10b_c00068{left:518.700000px;}
.xb8_c00068{left:520.050000px;}
.xd0_c00068{left:522.450000px;}
.xa0_c00068{left:525.300000px;}
.xc6_c00068{left:526.350000px;}
.xd9_c00068{left:527.400000px;}
.x91_c00068{left:531.000000px;}
.xf8_c00068{left:533.550000px;}
.x126_c00068{left:534.600000px;}
.xea_c00068{left:538.800000px;}
.xc0_c00068{left:539.850000px;}
.xc7_c00068{left:542.250000px;}
.x105_c00068{left:543.450000px;}
.x121_c00068{left:544.500000px;}
.xf3_c00068{left:546.150000px;}
.xac_c00068{left:548.100000px;}
.xda_c00068{left:555.150000px;}
.xd1_c00068{left:556.350000px;}
.xe1_c00068{left:558.750000px;}
.xde_c00068{left:561.900000px;}
.x9b_c00068{left:563.550000px;}
.xb9_c00068{left:567.600000px;}
.x10c_c00068{left:568.800000px;}
.xef_c00068{left:572.400000px;}
.x111_c00068{left:573.900000px;}
.xfd_c00068{left:574.950000px;}
.x92_c00068{left:576.000000px;}
.xe2_c00068{left:577.800000px;}
.xb3_c00068{left:579.300000px;}
.xc8_c00068{left:581.100000px;}
.x10d_c00068{left:582.150000px;}
.x11c_c00068{left:583.500000px;}
.xf9_c00068{left:587.100000px;}
.xc1_c00068{left:588.150000px;}
.xdf_c00068{left:589.200000px;}
.xd6_c00068{left:591.000000px;}
.x106_c00068{left:592.050000px;}
.xad_c00068{left:594.600000px;}
.xe3_c00068{left:596.100000px;}
.xd2_c00068{left:598.800000px;}
.x10f_c00068{left:599.850000px;}
.x93_c00068{left:600.900000px;}
.xba_c00068{left:606.150000px;}
.xd3_c00068{left:607.500000px;}
.x11a_c00068{left:608.550000px;}
.x114_c00068{left:611.100000px;}
.x109_c00068{left:612.750000px;}
.xca_c00068{left:615.000000px;}
.xa1_c00068{left:616.650000px;}
.xdb_c00068{left:618.150000px;}
.xb4_c00068{left:619.200000px;}
.xcd_c00068{left:621.000000px;}
.xa6_c00068{left:623.400000px;}
.xe4_c00068{left:627.000000px;}
.xe8_c00068{left:628.200000px;}
.xbb_c00068{left:629.550000px;}
.xae_c00068{left:633.900000px;}
.x11b_c00068{left:635.250000px;}
.x118_c00068{left:637.650000px;}
.xce_c00068{left:640.050000px;}
.xff_c00068{left:642.150000px;}
.x10a_c00068{left:644.100000px;}
.x122_c00068{left:645.300000px;}
.xdc_c00068{left:647.700000px;}
.xaf_c00068{left:653.700000px;}
.x116_c00068{left:657.000000px;}
.xf4_c00068{left:658.050000px;}
.xb5_c00068{left:659.850000px;}
.xd7_c00068{left:660.900000px;}
.xa7_c00068{left:661.950000px;}
.xbc_c00068{left:665.850000px;}
.xcb_c00068{left:667.950000px;}
.x110_c00068{left:669.300000px;}
.xb0_c00068{left:671.700000px;}
.xd4_c00068{left:673.800000px;}
.xf5_c00068{left:676.050000px;}
.xc2_c00068{left:679.200000px;}
.xe0_c00068{left:681.300000px;}
.xf0_c00068{left:682.950000px;}
.x9c_c00068{left:684.450000px;}
.xb6_c00068{left:685.800000px;}
.x112_c00068{left:688.800000px;}
.x11d_c00068{left:689.850000px;}
.x10e_c00068{left:691.500000px;}
.x115_c00068{left:695.400000px;}
.xa2_c00068{left:696.900000px;}
.xd5_c00068{left:699.300000px;}
.xfa_c00068{left:700.800000px;}
.xb1_c00068{left:702.600000px;}
.xa8_c00068{left:703.650000px;}
.xbd_c00068{left:704.700000px;}
.x94_c00068{left:707.850000px;}
.x123_c00068{left:712.800000px;}
.xa3_c00068{left:714.900000px;}
.x100_c00068{left:715.950000px;}
.xfb_c00068{left:721.650000px;}
.xe5_c00068{left:722.700000px;}
.x124_c00068{left:723.900000px;}
.xcf_c00068{left:725.700000px;}
.x95_c00068{left:729.750000px;}
.xa9_c00068{left:730.950000px;}
.x3_c00068{left:734.850000px;}
.x127_c00068{left:736.200000px;}
.xa4_c00068{left:740.100000px;}
.xb7_c00068{left:741.600000px;}
.x117_c00068{left:743.400000px;}
.xbe_c00068{left:745.350000px;}
.xcc_c00068{left:746.850000px;}
.xd8_c00068{left:748.500000px;}
.x128_c00068{left:749.550000px;}
.x101_c00068{left:750.900000px;}
.xe9_c00068{left:752.400000px;}
.xe6_c00068{left:754.800000px;}
.xc3_c00068{left:755.850000px;}
.x96_c00068{left:757.050000px;}
.xf6_c00068{left:761.400000px;}
.x125_c00068{left:766.650000px;}
.x136_c00068{left:930.000000px;}
.x134_c00068{left:931.350000px;}
.x135_c00068{left:935.700000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws4_c00068{word-spacing:0.000000pt;}
.ws0_c00068{word-spacing:5.841270pt;}
.ws1_c00068{word-spacing:16.518794pt;}
.ws2_c00068{word-spacing:19.682540pt;}
.ws3_c00068{word-spacing:77.720102pt;}
.fs4_c00068{font-size:42.666667pt;}
.fs6_c00068{font-size:48.000000pt;}
.fs1_c00068{font-size:53.333333pt;}
.fs3_c00068{font-size:58.666667pt;}
.fs5_c00068{font-size:64.000000pt;}
.fs0_c00068{font-size:69.333333pt;}
.fs2_c00068{font-size:74.666667pt;}
.y0_c00068{bottom:0.000000pt;}
.y2a_c00068{bottom:60.533333pt;}
.y63_c00068{bottom:126.666667pt;}
.y62_c00068{bottom:158.666667pt;}
.y61_c00068{bottom:171.466667pt;}
.y5a_c00068{bottom:172.133333pt;}
.y59_c00068{bottom:182.666667pt;}
.y60_c00068{bottom:184.266667pt;}
.y5f_c00068{bottom:197.066667pt;}
.y58_c00068{bottom:210.533333pt;}
.y57_c00068{bottom:218.533333pt;}
.y5e_c00068{bottom:222.400000pt;}
.y5d_c00068{bottom:235.866667pt;}
.y56_c00068{bottom:239.333333pt;}
.y55_c00068{bottom:263.333333pt;}
.y5c_c00068{bottom:268.800000pt;}
.y54_c00068{bottom:274.266667pt;}
.y29_c00068{bottom:285.066667pt;}
.y53_c00068{bottom:297.200000pt;}
.y28_c00068{bottom:304.266667pt;}
.y27_c00068{bottom:320.933333pt;}
.y52_c00068{bottom:323.466667pt;}
.y26_c00068{bottom:336.666667pt;}
.y51_c00068{bottom:340.800000pt;}
.y25_c00068{bottom:352.666667pt;}
.y50_c00068{bottom:360.666667pt;}
.y24_c00068{bottom:368.933333pt;}
.y4f_c00068{bottom:376.933333pt;}
.y23_c00068{bottom:384.933333pt;}
.y4e_c00068{bottom:392.933333pt;}
.y22_c00068{bottom:400.933333pt;}
.y4d_c00068{bottom:408.933333pt;}
.y21_c00068{bottom:416.933333pt;}
.y4c_c00068{bottom:424.400000pt;}
.y20_c00068{bottom:434.666667pt;}
.y4b_c00068{bottom:440.666667pt;}
.y4a_c00068{bottom:456.933333pt;}
.y1f_c00068{bottom:465.333333pt;}
.y49_c00068{bottom:472.666667pt;}
.y1e_c00068{bottom:473.600000pt;}
.y48_c00068{bottom:488.933333pt;}
.y1d_c00068{bottom:490.533333pt;}
.y5b_c00068{bottom:507.466667pt;}
.y1c_c00068{bottom:513.333333pt;}
.y47_c00068{bottom:520.266667pt;}
.y1b_c00068{bottom:529.600000pt;}
.y46_c00068{bottom:532.000000pt;}
.y1a_c00068{bottom:545.866667pt;}
.y45_c00068{bottom:546.133333pt;}
.y44_c00068{bottom:560.266667pt;}
.y19_c00068{bottom:561.600000pt;}
.y43_c00068{bottom:576.933333pt;}
.y18_c00068{bottom:577.600000pt;}
.y42_c00068{bottom:592.666667pt;}
.y17_c00068{bottom:593.333333pt;}
.y16_c00068{bottom:609.600000pt;}
.y41_c00068{bottom:612.800000pt;}
.y40_c00068{bottom:628.800000pt;}
.y15_c00068{bottom:629.200000pt;}
.y14_c00068{bottom:648.666667pt;}
.y3f_c00068{bottom:664.666667pt;}
.y13_c00068{bottom:667.866667pt;}
.y3e_c00068{bottom:680.666667pt;}
.y12_c00068{bottom:688.000000pt;}
.y3d_c00068{bottom:696.400000pt;}
.y11_c00068{bottom:707.866667pt;}
.y3c_c00068{bottom:712.666667pt;}
.y10_c00068{bottom:727.333333pt;}
.y3b_c00068{bottom:728.666667pt;}
.y3a_c00068{bottom:744.666667pt;}
.yf_c00068{bottom:747.200000pt;}
.y39_c00068{bottom:760.666667pt;}
.ye_c00068{bottom:763.466667pt;}
.y38_c00068{bottom:776.666667pt;}
.yd_c00068{bottom:783.333333pt;}
.y37_c00068{bottom:792.266667pt;}
.yc_c00068{bottom:799.333333pt;}
.y36_c00068{bottom:808.666667pt;}
.yb_c00068{bottom:814.933333pt;}
.y35_c00068{bottom:828.533333pt;}
.ya_c00068{bottom:834.800000pt;}
.y34_c00068{bottom:844.133333pt;}
.y9_c00068{bottom:854.666667pt;}
.y33_c00068{bottom:863.333333pt;}
.y8_c00068{bottom:874.533333pt;}
.y32_c00068{bottom:879.600000pt;}
.y7_c00068{bottom:894.400000pt;}
.y31_c00068{bottom:895.600000pt;}
.y6_c00068{bottom:910.400000pt;}
.y30_c00068{bottom:911.333333pt;}
.y5_c00068{bottom:926.666667pt;}
.y2f_c00068{bottom:928.000000pt;}
.y2e_c00068{bottom:942.666667pt;}
.y4_c00068{bottom:946.266667pt;}
.y2d_c00068{bottom:959.333333pt;}
.y3_c00068{bottom:966.133333pt;}
.y2c_c00068{bottom:978.533333pt;}
.y2_c00068{bottom:992.933333pt;}
.y2b_c00068{bottom:995.200000pt;}
.y1_c00068{bottom:1018.933333pt;}
.h6_c00068{height:42.666667pt;}
.h8_c00068{height:48.000000pt;}
.h3_c00068{height:53.333333pt;}
.h5_c00068{height:58.666667pt;}
.h7_c00068{height:64.000000pt;}
.h2_c00068{height:69.333333pt;}
.h4_c00068{height:74.666667pt;}
.h1_c00068{height:1129.333333pt;}
.h0_c00068{height:1129.599935pt;}
.w0_c00068{width:843.200032pt;}
.w1_c00068{width:843.333333pt;}
.x0_c00068{left:0.000000pt;}
.x8e_c00068{left:41.333333pt;}
.xa_c00068{left:57.866667pt;}
.x11_c00068{left:58.933333pt;}
.x4f_c00068{left:59.866667pt;}
.x81_c00068{left:61.733333pt;}
.x15_c00068{left:74.533333pt;}
.x21_c00068{left:75.466667pt;}
.x59_c00068{left:76.933333pt;}
.x12a_c00068{left:79.600000pt;}
.x131_c00068{left:80.666667pt;}
.x50_c00068{left:82.266667pt;}
.x76_c00068{left:86.800000pt;}
.xd_c00068{left:90.133333pt;}
.x29_c00068{left:91.866667pt;}
.x47_c00068{left:92.800000pt;}
.x42_c00068{left:93.733333pt;}
.x54_c00068{left:94.666667pt;}
.x16_c00068{left:95.600000pt;}
.x12f_c00068{left:98.666667pt;}
.x7b_c00068{left:99.866667pt;}
.x22_c00068{left:101.333333pt;}
.x46_c00068{left:104.800000pt;}
.x7c_c00068{left:106.933333pt;}
.x66_c00068{left:110.133333pt;}
.x6d_c00068{left:111.066667pt;}
.x51_c00068{left:112.666667pt;}
.x73_c00068{left:113.866667pt;}
.x86_c00068{left:116.266667pt;}
.x3d_c00068{left:117.733333pt;}
.x48_c00068{left:121.600000pt;}
.x49_c00068{left:123.200000pt;}
.x4d_c00068{left:124.133333pt;}
.x5c_c00068{left:125.200000pt;}
.x12_c00068{left:126.133333pt;}
.x1_c00068{left:128.000000pt;}
.x3e_c00068{left:130.266667pt;}
.x17_c00068{left:131.733333pt;}
.x30_c00068{left:133.600000pt;}
.x6e_c00068{left:134.800000pt;}
.x63_c00068{left:135.733333pt;}
.x87_c00068{left:137.066667pt;}
.x8a_c00068{left:138.133333pt;}
.xb_c00068{left:141.066667pt;}
.x2a_c00068{left:142.133333pt;}
.x74_c00068{left:144.266667pt;}
.x4c_c00068{left:148.133333pt;}
.x39_c00068{left:151.333333pt;}
.x55_c00068{left:152.266667pt;}
.x23_c00068{left:153.466667pt;}
.x7d_c00068{left:154.933333pt;}
.x60_c00068{left:156.266667pt;}
.x67_c00068{left:157.866667pt;}
.x6a_c00068{left:160.000000pt;}
.x4_c00068{left:160.933333pt;}
.x24_c00068{left:163.066667pt;}
.x6f_c00068{left:164.266667pt;}
.x3a_c00068{left:168.000000pt;}
.x7e_c00068{left:170.000000pt;}
.x4b_c00068{left:172.400000pt;}
.x5a_c00068{left:173.333333pt;}
.x2b_c00068{left:175.733333pt;}
.x13_c00068{left:178.000000pt;}
.x4a_c00068{left:179.200000pt;}
.x25_c00068{left:180.400000pt;}
.x52_c00068{left:181.466667pt;}
.x70_c00068{left:182.800000pt;}
.xe_c00068{left:184.533333pt;}
.x18_c00068{left:187.066667pt;}
.x3b_c00068{left:188.800000pt;}
.x5_c00068{left:190.400000pt;}
.x4e_c00068{left:191.333333pt;}
.x77_c00068{left:192.666667pt;}
.x34_c00068{left:194.000000pt;}
.x79_c00068{left:197.200000pt;}
.x8b_c00068{left:198.400000pt;}
.x83_c00068{left:199.333333pt;}
.x68_c00068{left:200.800000pt;}
.x5d_c00068{left:201.733333pt;}
.x31_c00068{left:202.666667pt;}
.x35_c00068{left:204.533333pt;}
.x61_c00068{left:206.400000pt;}
.x6_c00068{left:207.733333pt;}
.x2c_c00068{left:209.333333pt;}
.x19_c00068{left:211.333333pt;}
.x78_c00068{left:215.733333pt;}
.x1a_c00068{left:219.333333pt;}
.x7_c00068{left:220.266667pt;}
.x75_c00068{left:224.266667pt;}
.x3f_c00068{left:225.200000pt;}
.xf_c00068{left:227.466667pt;}
.x26_c00068{left:229.600000pt;}
.x62_c00068{left:231.066667pt;}
.xc_c00068{left:232.800000pt;}
.x8_c00068{left:234.666667pt;}
.x8d_c00068{left:237.066667pt;}
.x71_c00068{left:238.800000pt;}
.x40_c00068{left:240.533333pt;}
.x14_c00068{left:242.266667pt;}
.x12b_c00068{left:244.133333pt;}
.x2d_c00068{left:245.866667pt;}
.x9_c00068{left:247.466667pt;}
.x1b_c00068{left:251.066667pt;}
.x5b_c00068{left:252.666667pt;}
.x53_c00068{left:255.466667pt;}
.x64_c00068{left:257.333333pt;}
.x43_c00068{left:258.933333pt;}
.x5e_c00068{left:261.600000pt;}
.x85_c00068{left:262.666667pt;}
.x130_c00068{left:264.266667pt;}
.x1c_c00068{left:265.200000pt;}
.x44_c00068{left:267.600000pt;}
.x56_c00068{left:270.000000pt;}
.x27_c00068{left:271.466667pt;}
.x10_c00068{left:272.533333pt;}
.x32_c00068{left:274.000000pt;}
.x2e_c00068{left:278.133333pt;}
.x2_c00068{left:279.066667pt;}
.x36_c00068{left:280.666667pt;}
.x88_c00068{left:283.866667pt;}
.x3c_c00068{left:285.466667pt;}
.x6b_c00068{left:287.733333pt;}
.x129_c00068{left:288.933333pt;}
.x41_c00068{left:290.800000pt;}
.x33_c00068{left:291.866667pt;}
.x132_c00068{left:293.066667pt;}
.x37_c00068{left:294.800000pt;}
.x2f_c00068{left:298.666667pt;}
.x82_c00068{left:300.400000pt;}
.x8c_c00068{left:301.466667pt;}
.x7f_c00068{left:302.533333pt;}
.x1d_c00068{left:304.533333pt;}
.x84_c00068{left:307.200000pt;}
.x5f_c00068{left:309.600000pt;}
.x69_c00068{left:311.866667pt;}
.x1e_c00068{left:313.866667pt;}
.x57_c00068{left:315.733333pt;}
.x7a_c00068{left:318.400000pt;}
.x12e_c00068{left:319.866667pt;}
.x28_c00068{left:322.000000pt;}
.x12c_c00068{left:326.000000pt;}
.x58_c00068{left:328.800000pt;}
.x80_c00068{left:330.400000pt;}
.x1f_c00068{left:331.466667pt;}
.x38_c00068{left:332.533333pt;}
.x65_c00068{left:333.466667pt;}
.x12d_c00068{left:336.533333pt;}
.x72_c00068{left:337.733333pt;}
.x45_c00068{left:340.266667pt;}
.x6c_c00068{left:346.666667pt;}
.x89_c00068{left:348.800000pt;}
.x133_c00068{left:351.200000pt;}
.x20_c00068{left:370.800000pt;}
.x8f_c00068{left:380.533333pt;}
.x11f_c00068{left:381.466667pt;}
.xec_c00068{left:382.666667pt;}
.xb2_c00068{left:393.733333pt;}
.xaa_c00068{left:395.066667pt;}
.x97_c00068{left:396.133333pt;}
.x120_c00068{left:397.200000pt;}
.x98_c00068{left:401.866667pt;}
.x107_c00068{left:405.733333pt;}
.x11e_c00068{left:407.066667pt;}
.x102_c00068{left:408.000000pt;}
.xed_c00068{left:410.800000pt;}
.xe7_c00068{left:412.533333pt;}
.x9e_c00068{left:413.466667pt;}
.xeb_c00068{left:416.400000pt;}
.xf7_c00068{left:418.533333pt;}
.xc4_c00068{left:419.600000pt;}
.xbf_c00068{left:420.933333pt;}
.x108_c00068{left:423.066667pt;}
.x9f_c00068{left:424.000000pt;}
.x113_c00068{left:427.333333pt;}
.xc5_c00068{left:429.200000pt;}
.x99_c00068{left:430.933333pt;}
.xfe_c00068{left:433.333333pt;}
.xdd_c00068{left:435.866667pt;}
.xf1_c00068{left:437.466667pt;}
.x103_c00068{left:438.666667pt;}
.xee_c00068{left:440.266667pt;}
.x9a_c00068{left:441.466667pt;}
.x90_c00068{left:442.933333pt;}
.xf2_c00068{left:447.066667pt;}
.x9d_c00068{left:449.466667pt;}
.xfc_c00068{left:453.200000pt;}
.xab_c00068{left:454.533333pt;}
.xc9_c00068{left:455.733333pt;}
.xa5_c00068{left:457.200000pt;}
.x104_c00068{left:458.800000pt;}
.x119_c00068{left:460.000000pt;}
.x10b_c00068{left:461.066667pt;}
.xb8_c00068{left:462.266667pt;}
.xd0_c00068{left:464.400000pt;}
.xa0_c00068{left:466.933333pt;}
.xc6_c00068{left:467.866667pt;}
.xd9_c00068{left:468.800000pt;}
.x91_c00068{left:472.000000pt;}
.xf8_c00068{left:474.266667pt;}
.x126_c00068{left:475.200000pt;}
.xea_c00068{left:478.933333pt;}
.xc0_c00068{left:479.866667pt;}
.xc7_c00068{left:482.000000pt;}
.x105_c00068{left:483.066667pt;}
.x121_c00068{left:484.000000pt;}
.xf3_c00068{left:485.466667pt;}
.xac_c00068{left:487.200000pt;}
.xda_c00068{left:493.466667pt;}
.xd1_c00068{left:494.533333pt;}
.xe1_c00068{left:496.666667pt;}
.xde_c00068{left:499.466667pt;}
.x9b_c00068{left:500.933333pt;}
.xb9_c00068{left:504.533333pt;}
.x10c_c00068{left:505.600000pt;}
.xef_c00068{left:508.800000pt;}
.x111_c00068{left:510.133333pt;}
.xfd_c00068{left:511.066667pt;}
.x92_c00068{left:512.000000pt;}
.xe2_c00068{left:513.600000pt;}
.xb3_c00068{left:514.933333pt;}
.xc8_c00068{left:516.533333pt;}
.x10d_c00068{left:517.466667pt;}
.x11c_c00068{left:518.666667pt;}
.xf9_c00068{left:521.866667pt;}
.xc1_c00068{left:522.800000pt;}
.xdf_c00068{left:523.733333pt;}
.xd6_c00068{left:525.333333pt;}
.x106_c00068{left:526.266667pt;}
.xad_c00068{left:528.533333pt;}
.xe3_c00068{left:529.866667pt;}
.xd2_c00068{left:532.266667pt;}
.x10f_c00068{left:533.200000pt;}
.x93_c00068{left:534.133333pt;}
.xba_c00068{left:538.800000pt;}
.xd3_c00068{left:540.000000pt;}
.x11a_c00068{left:540.933333pt;}
.x114_c00068{left:543.200000pt;}
.x109_c00068{left:544.666667pt;}
.xca_c00068{left:546.666667pt;}
.xa1_c00068{left:548.133333pt;}
.xdb_c00068{left:549.466667pt;}
.xb4_c00068{left:550.400000pt;}
.xcd_c00068{left:552.000000pt;}
.xa6_c00068{left:554.133333pt;}
.xe4_c00068{left:557.333333pt;}
.xe8_c00068{left:558.400000pt;}
.xbb_c00068{left:559.600000pt;}
.xae_c00068{left:563.466667pt;}
.x11b_c00068{left:564.666667pt;}
.x118_c00068{left:566.800000pt;}
.xce_c00068{left:568.933333pt;}
.xff_c00068{left:570.800000pt;}
.x10a_c00068{left:572.533333pt;}
.x122_c00068{left:573.600000pt;}
.xdc_c00068{left:575.733333pt;}
.xaf_c00068{left:581.066667pt;}
.x116_c00068{left:584.000000pt;}
.xf4_c00068{left:584.933333pt;}
.xb5_c00068{left:586.533333pt;}
.xd7_c00068{left:587.466667pt;}
.xa7_c00068{left:588.400000pt;}
.xbc_c00068{left:591.866667pt;}
.xcb_c00068{left:593.733333pt;}
.x110_c00068{left:594.933333pt;}
.xb0_c00068{left:597.066667pt;}
.xd4_c00068{left:598.933333pt;}
.xf5_c00068{left:600.933333pt;}
.xc2_c00068{left:603.733333pt;}
.xe0_c00068{left:605.600000pt;}
.xf0_c00068{left:607.066667pt;}
.x9c_c00068{left:608.400000pt;}
.xb6_c00068{left:609.600000pt;}
.x112_c00068{left:612.266667pt;}
.x11d_c00068{left:613.200000pt;}
.x10e_c00068{left:614.666667pt;}
.x115_c00068{left:618.133333pt;}
.xa2_c00068{left:619.466667pt;}
.xd5_c00068{left:621.600000pt;}
.xfa_c00068{left:622.933333pt;}
.xb1_c00068{left:624.533333pt;}
.xa8_c00068{left:625.466667pt;}
.xbd_c00068{left:626.400000pt;}
.x94_c00068{left:629.200000pt;}
.x123_c00068{left:633.600000pt;}
.xa3_c00068{left:635.466667pt;}
.x100_c00068{left:636.400000pt;}
.xfb_c00068{left:641.466667pt;}
.xe5_c00068{left:642.400000pt;}
.x124_c00068{left:643.466667pt;}
.xcf_c00068{left:645.066667pt;}
.x95_c00068{left:648.666667pt;}
.xa9_c00068{left:649.733333pt;}
.x3_c00068{left:653.200000pt;}
.x127_c00068{left:654.400000pt;}
.xa4_c00068{left:657.866667pt;}
.xb7_c00068{left:659.200000pt;}
.x117_c00068{left:660.800000pt;}
.xbe_c00068{left:662.533333pt;}
.xcc_c00068{left:663.866667pt;}
.xd8_c00068{left:665.333333pt;}
.x128_c00068{left:666.266667pt;}
.x101_c00068{left:667.466667pt;}
.xe9_c00068{left:668.800000pt;}
.xe6_c00068{left:670.933333pt;}
.xc3_c00068{left:671.866667pt;}
.x96_c00068{left:672.933333pt;}
.xf6_c00068{left:676.800000pt;}
.x125_c00068{left:681.466667pt;}
.x136_c00068{left:826.666667pt;}
.x134_c00068{left:827.866667pt;}
.x135_c00068{left:831.733333pt;}
}





/* 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_c00069 {
    display:none;
  }
  .loading-indicator_c00069.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00069 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_c00069 { 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_c00069" -> "#page-container .classname_c00069")
 */
.pf_c00069 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00069 { /* 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_c00069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00069 { /* 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_c00069 { /* 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_c00069 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00069 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00069 {overflow:visible;}
  }
}
.c_c00069 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00069 { /* 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_c00069:after { /* webkit #35443 */
  content: '';
}
.t_c00069:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00069 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 */
}
.__c00069 { /* 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_c00069 { /* info for Javascript */
  display:none;
}
.l_c00069 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00069 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00069 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00069: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_c00069 {
    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_c00069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00069.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_c00069 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00069;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.000000;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;}
.m59_c00069{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m28_c00069{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m31_c00069{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00069{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mab_c00069{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00069{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00069{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m71_c00069{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m11_c00069{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00069{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00069{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m38_c00069{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m90_c00069{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00069{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mac_c00069{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00069{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m95_c00069{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.md2_c00069{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m94_c00069{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m96_c00069{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00069{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m80_c00069{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.mad_c00069{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m83_c00069{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mee_c00069{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m75_c00069{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m72_c00069{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md0_c00069{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00069{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m50_c00069{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m89_c00069{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m86_c00069{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00069{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00069{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m13_c00069{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m88_c00069{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mef_c00069{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m54_c00069{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00069{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00069{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m58_c00069{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me9_c00069{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mec_c00069{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00069{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00069{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m21_c00069{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00069{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00069{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m70_c00069{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00069{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m91_c00069{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m100_c00069{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00069{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m40_c00069{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.meb_c00069{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00069{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00069{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00069{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00069{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00069{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00069{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00069{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00069{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00069{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00069{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00069{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00069{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00069{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00069{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00069{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00069{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m33_c00069{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00069{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma_c00069{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m14_c00069{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m77_c00069{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me5_c00069{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m87_c00069{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m73_c00069{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m55_c00069{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m34_c00069{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me0_c00069{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m79_c00069{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me3_c00069{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00069{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m98_c00069{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00069{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00069{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00069{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me7_c00069{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me8_c00069{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m15_c00069{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00069{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00069{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m65_c00069{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m69_c00069{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mda_c00069{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m62_c00069{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00069{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00069{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00069{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m60_c00069{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m63_c00069{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m53_c00069{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00069{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.md1_c00069{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00069{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.md_c00069{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m74_c00069{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00069{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00069{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00069{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me6_c00069{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00069{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md8_c00069{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m29_c00069{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mca_c00069{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m85_c00069{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00069{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00069{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md9_c00069{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00069{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00069{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m93_c00069{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4_c00069{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m42_c00069{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me1_c00069{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00069{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00069{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m19_c00069{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mce_c00069{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc_c00069{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00069{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m30_c00069{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00069{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m92_c00069{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00069{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m46_c00069{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m78_c00069{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m66_c00069{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m61_c00069{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m43_c00069{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m18_c00069{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m82_c00069{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m56_c00069{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m57_c00069{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb_c00069{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00069{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m39_c00069{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m41_c00069{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m99_c00069{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mba_c00069{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m103_c00069{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00069{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00069{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me4_c00069{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m51_c00069{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m52_c00069{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00069{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00069{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00069{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.med_c00069{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00069{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00069{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00069{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00069{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00069{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m37_c00069{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m32_c00069{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00069{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m17_c00069{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00069{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10_c00069{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m47_c00069{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.maf_c00069{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00069{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m35_c00069{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m49_c00069{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.md6_c00069{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.me_c00069{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m12_c00069{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00069{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00069{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mea_c00069{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00069{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.md4_c00069{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf_c00069{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00069{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.maa_c00069{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m105_c00069{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m64_c00069{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00069{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00069{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00069{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00069{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00069{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m24_c00069{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m48_c00069{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md3_c00069{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00069{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m0_c00069{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00069{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00069{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00069{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9_c00069{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00069{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00069{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00069{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m97_c00069{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md5_c00069{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00069{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00069{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m84_c00069{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00069{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m44_c00069{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00069{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00069{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00069{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m68_c00069{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00069{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m104_c00069{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m36_c00069{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00069{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m67_c00069{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00069{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m81_c00069{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m76_c00069{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m26_c00069{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00069{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mae_c00069{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00069{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m16_c00069{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md7_c00069{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00069{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mff_c00069{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m45_c00069{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00069{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00069{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m101_c00069{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00069{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00069{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00069{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00069{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m22_c00069{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.me2_c00069{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mde_c00069{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m20_c00069{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00069{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m102_c00069{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00069{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m6_c00069{transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00069{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00069{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00069{transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);}
.m23_c00069{transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);}
.m27_c00069{transform:matrix(0.798000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798000,0.000000,0.000000,0.250000,0,0);}
.m25_c00069{transform:matrix(1.416000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.416000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.416000,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls0_c00069{letter-spacing:0.000000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{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__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00069{word-spacing:-10.545235px;}
.ws1_c00069{word-spacing:-3.095238px;}
.ws4_c00069{word-spacing:0.000000px;}
.ws0_c00069{word-spacing:15.111111px;}
.ws3_c00069{word-spacing:18.120907px;}
.fc0_c00069{color:transparent;}
.fs4_c00069{font-size:30.000000px;}
.fs3_c00069{font-size:42.000000px;}
.fs7_c00069{font-size:48.000000px;}
.fs8_c00069{font-size:54.000000px;}
.fs5_c00069{font-size:60.000000px;}
.fs2_c00069{font-size:66.000000px;}
.fs6_c00069{font-size:72.000000px;}
.fs0_c00069{font-size:102.000000px;}
.fs1_c00069{font-size:126.000000px;}
.y0_c00069{bottom:0.000000px;}
.y6a_c00069{bottom:186.150000px;}
.y38_c00069{bottom:186.450000px;}
.y69_c00069{bottom:204.150000px;}
.y68_c00069{bottom:221.850000px;}
.y37_c00069{bottom:226.800000px;}
.y67_c00069{bottom:240.150000px;}
.y36_c00069{bottom:241.650000px;}
.y35_c00069{bottom:254.550000px;}
.y34_c00069{bottom:273.300000px;}
.y66_c00069{bottom:275.100000px;}
.y65_c00069{bottom:293.100000px;}
.y33_c00069{bottom:295.500000px;}
.y32_c00069{bottom:313.200000px;}
.y64_c00069{bottom:320.100000px;}
.y31_c00069{bottom:331.200000px;}
.y63_c00069{bottom:347.100000px;}
.y30_c00069{bottom:349.500000px;}
.y62_c00069{bottom:365.400000px;}
.y2f_c00069{bottom:367.500000px;}
.y61_c00069{bottom:383.100000px;}
.y2e_c00069{bottom:385.500000px;}
.y60_c00069{bottom:401.400000px;}
.y2d_c00069{bottom:403.200000px;}
.y5f_c00069{bottom:419.400000px;}
.y2c_c00069{bottom:426.300000px;}
.y5e_c00069{bottom:437.400000px;}
.y2b_c00069{bottom:450.000000px;}
.y5d_c00069{bottom:455.400000px;}
.y2a_c00069{bottom:470.550000px;}
.y5c_c00069{bottom:473.400000px;}
.y29_c00069{bottom:488.550000px;}
.y5b_c00069{bottom:501.900000px;}
.y28_c00069{bottom:506.550000px;}
.y5a_c00069{bottom:509.850000px;}
.y27_c00069{bottom:524.550000px;}
.y59_c00069{bottom:527.850000px;}
.y58_c00069{bottom:546.150000px;}
.y26_c00069{bottom:551.100000px;}
.y57_c00069{bottom:563.850000px;}
.y25_c00069{bottom:569.100000px;}
.y56_c00069{bottom:581.850000px;}
.y24_c00069{bottom:591.750000px;}
.y55_c00069{bottom:599.850000px;}
.y23_c00069{bottom:609.750000px;}
.y54_c00069{bottom:617.850000px;}
.y22_c00069{bottom:627.750000px;}
.y53_c00069{bottom:635.850000px;}
.y21_c00069{bottom:645.450000px;}
.y52_c00069{bottom:653.850000px;}
.y20_c00069{bottom:663.750000px;}
.y51_c00069{bottom:671.850000px;}
.y1f_c00069{bottom:681.450000px;}
.y50_c00069{bottom:689.850000px;}
.y1e_c00069{bottom:702.750000px;}
.y4f_c00069{bottom:707.850000px;}
.y1d_c00069{bottom:721.800000px;}
.y4e_c00069{bottom:726.150000px;}
.y1c_c00069{bottom:738.000000px;}
.y4d_c00069{bottom:743.850000px;}
.y1b_c00069{bottom:757.800000px;}
.y4c_c00069{bottom:761.850000px;}
.y1a_c00069{bottom:777.900000px;}
.y4b_c00069{bottom:779.850000px;}
.y4a_c00069{bottom:797.850000px;}
.y19_c00069{bottom:801.000000px;}
.y49_c00069{bottom:816.150000px;}
.y18_c00069{bottom:821.100000px;}
.y48_c00069{bottom:833.850000px;}
.y17_c00069{bottom:842.850000px;}
.y47_c00069{bottom:852.150000px;}
.y16_c00069{bottom:864.750000px;}
.y46_c00069{bottom:870.150000px;}
.y15_c00069{bottom:885.900000px;}
.y45_c00069{bottom:888.150000px;}
.y14_c00069{bottom:905.400000px;}
.y44_c00069{bottom:906.150000px;}
.y13_c00069{bottom:923.400000px;}
.y43_c00069{bottom:924.150000px;}
.y12_c00069{bottom:945.000000px;}
.y42_c00069{bottom:946.500000px;}
.y11_c00069{bottom:964.500000px;}
.y41_c00069{bottom:982.800000px;}
.y10_c00069{bottom:986.400000px;}
.y40_c00069{bottom:1000.800000px;}
.y9_c00069{bottom:1008.300000px;}
.y3f_c00069{bottom:1018.800000px;}
.y8_c00069{bottom:1027.050000px;}
.y3e_c00069{bottom:1036.800000px;}
.y7_c00069{bottom:1044.300000px;}
.y3d_c00069{bottom:1054.500000px;}
.y6_c00069{bottom:1062.300000px;}
.y3c_c00069{bottom:1072.800000px;}
.y5_c00069{bottom:1080.000000px;}
.yf_c00069{bottom:1084.650000px;}
.yd_c00069{bottom:1087.500000px;}
.y3b_c00069{bottom:1090.800000px;}
.ye_c00069{bottom:1093.350000px;}
.y4_c00069{bottom:1096.500000px;}
.y3a_c00069{bottom:1108.800000px;}
.y3_c00069{bottom:1116.300000px;}
.yc_c00069{bottom:1118.250000px;}
.yb_c00069{bottom:1122.900000px;}
.y39_c00069{bottom:1126.800000px;}
.ya_c00069{bottom:1127.100000px;}
.y1_c00069{bottom:1146.300000px;}
.y2_c00069{bottom:1151.700000px;}
.h6_c00069{height:30.000000px;}
.h5_c00069{height:42.000000px;}
.h9_c00069{height:48.000000px;}
.ha_c00069{height:54.000000px;}
.h7_c00069{height:60.000000px;}
.h4_c00069{height:66.000000px;}
.h8_c00069{height:72.000000px;}
.h2_c00069{height:102.000000px;}
.h3_c00069{height:126.000000px;}
.h1_c00069{height:1272.000000px;}
.h0_c00069{height:1272.239960px;}
.w0_c00069{width:948.600036px;}
.w1_c00069{width:948.750000px;}
.x0_c00069{left:0.000000px;}
.x3_c00069{left:167.400000px;}
.x1_c00069{left:168.900000px;}
.x5d_c00069{left:172.500000px;}
.x78_c00069{left:173.850000px;}
.x8a_c00069{left:175.650000px;}
.xa3_c00069{left:176.700000px;}
.xe_c00069{left:185.850000px;}
.x23_c00069{left:187.200000px;}
.x50_c00069{left:190.200000px;}
.x69_c00069{left:191.250000px;}
.x92_c00069{left:192.300000px;}
.x25_c00069{left:193.350000px;}
.xa7_c00069{left:194.700000px;}
.x7f_c00069{left:199.500000px;}
.x9_c00069{left:202.800000px;}
.x2b_c00069{left:205.200000px;}
.x26_c00069{left:206.700000px;}
.x4a_c00069{left:207.750000px;}
.x54_c00069{left:209.850000px;}
.x8b_c00069{left:211.950000px;}
.x4_c00069{left:214.950000px;}
.x38_c00069{left:216.300000px;}
.x73_c00069{left:217.950000px;}
.x9e_c00069{left:219.000000px;}
.x5a_c00069{left:222.600000px;}
.x82_c00069{left:223.950000px;}
.x39_c00069{left:226.350000px;}
.x3c_c00069{left:228.000000px;}
.x9a_c00069{left:229.200000px;}
.x89_c00069{left:230.400000px;}
.x15_c00069{left:232.350000px;}
.x7d_c00069{left:234.000000px;}
.x47_c00069{left:237.600000px;}
.x4b_c00069{left:238.650000px;}
.x27_c00069{left:241.950000px;}
.x79_c00069{left:244.350000px;}
.x2c_c00069{left:245.850000px;}
.x6a_c00069{left:248.550000px;}
.x7_c00069{left:250.650000px;}
.x8_c00069{left:252.150000px;}
.x55_c00069{left:254.850000px;}
.xa_c00069{left:258.600000px;}
.x32_c00069{left:261.000000px;}
.x48_c00069{left:262.500000px;}
.x95_c00069{left:263.850000px;}
.x51_c00069{left:266.850000px;}
.x40_c00069{left:268.950000px;}
.x3a_c00069{left:270.600000px;}
.x85_c00069{left:271.650000px;}
.x8c_c00069{left:273.150000px;}
.x56_c00069{left:274.350000px;}
.xa5_c00069{left:275.550000px;}
.x42_c00069{left:276.900000px;}
.x64_c00069{left:278.700000px;}
.x19_c00069{left:280.950000px;}
.x33_c00069{left:282.300000px;}
.x5_c00069{left:284.100000px;}
.xf_c00069{left:285.600000px;}
.x2d_c00069{left:289.350000px;}
.x5f_c00069{left:291.300000px;}
.x8d_c00069{left:293.250000px;}
.x81_c00069{left:295.350000px;}
.x74_c00069{left:296.550000px;}
.xa1_c00069{left:298.650000px;}
.x65_c00069{left:301.050000px;}
.x8e_c00069{left:302.550000px;}
.x70_c00069{left:303.600000px;}
.x49_c00069{left:304.650000px;}
.x3d_c00069{left:305.700000px;}
.x4c_c00069{left:307.050000px;}
.x2e_c00069{left:309.900000px;}
.x86_c00069{left:312.000000px;}
.x16_c00069{left:313.050000px;}
.x28_c00069{left:314.700000px;}
.x8f_c00069{left:316.200000px;}
.x6b_c00069{left:317.250000px;}
.x10_c00069{left:319.050000px;}
.x24_c00069{left:323.250000px;}
.x3e_c00069{left:325.500000px;}
.x60_c00069{left:326.550000px;}
.x1a_c00069{left:327.750000px;}
.x75_c00069{left:328.950000px;}
.xa4_c00069{left:330.750000px;}
.x2f_c00069{left:332.250000px;}
.x87_c00069{left:334.350000px;}
.x4d_c00069{left:335.850000px;}
.x7e_c00069{left:339.000000px;}
.x6c_c00069{left:340.650000px;}
.x41_c00069{left:342.750000px;}
.x30_c00069{left:344.100000px;}
.x6_c00069{left:346.800000px;}
.x34_c00069{left:348.150000px;}
.x7a_c00069{left:351.000000px;}
.x3b_c00069{left:353.700000px;}
.x5e_c00069{left:355.350000px;}
.x96_c00069{left:356.400000px;}
.xb_c00069{left:358.650000px;}
.x11_c00069{left:360.450000px;}
.x5b_c00069{left:362.250000px;}
.x61_c00069{left:363.900000px;}
.xa2_c00069{left:364.950000px;}
.x52_c00069{left:366.600000px;}
.x93_c00069{left:367.950000px;}
.x31_c00069{left:370.050000px;}
.x29_c00069{left:371.550000px;}
.x3f_c00069{left:374.100000px;}
.x1f_c00069{left:375.450000px;}
.x1c_c00069{left:379.350000px;}
.x5c_c00069{left:380.550000px;}
.x76_c00069{left:381.900000px;}
.x43_c00069{left:383.850000px;}
.x97_c00069{left:385.200000px;}
.x4e_c00069{left:386.250000px;}
.x71_c00069{left:388.200000px;}
.x88_c00069{left:397.050000px;}
.x7b_c00069{left:398.850000px;}
.x1b_c00069{left:400.500000px;}
.x20_c00069{left:402.450000px;}
.x57_c00069{left:404.400000px;}
.x6d_c00069{left:405.450000px;}
.x2_c00069{left:406.500000px;}
.x9f_c00069{left:408.150000px;}
.x35_c00069{left:410.850000px;}
.x44_c00069{left:414.750000px;}
.x36_c00069{left:420.600000px;}
.x21_c00069{left:422.550000px;}
.x17_c00069{left:424.650000px;}
.x83_c00069{left:427.950000px;}
.x66_c00069{left:429.600000px;}
.x6e_c00069{left:430.650000px;}
.xc_c00069{left:431.700000px;}
.x12_c00069{left:433.950000px;}
.x45_c00069{left:437.400000px;}
.xa6_c00069{left:438.900000px;}
.x67_c00069{left:441.150000px;}
.x72_c00069{left:442.200000px;}
.x1d_c00069{left:444.900000px;}
.x62_c00069{left:446.400000px;}
.x18_c00069{left:448.050000px;}
.x13_c00069{left:450.450000px;}
.x58_c00069{left:451.500000px;}
.x98_c00069{left:454.950000px;}
.x90_c00069{left:456.300000px;}
.xd_c00069{left:457.650000px;}
.x68_c00069{left:460.950000px;}
.x94_c00069{left:462.600000px;}
.x37_c00069{left:465.600000px;}
.x1e_c00069{left:467.550000px;}
.x6f_c00069{left:471.300000px;}
.x2a_c00069{left:478.500000px;}
.x9b_c00069{left:479.850000px;}
.x46_c00069{left:481.350000px;}
.xa0_c00069{left:483.000000px;}
.x9c_c00069{left:484.050000px;}
.x80_c00069{left:486.150000px;}
.x77_c00069{left:488.850000px;}
.x4f_c00069{left:490.050000px;}
.x14_c00069{left:491.100000px;}
.x91_c00069{left:493.050000px;}
.x63_c00069{left:494.700000px;}
.x7c_c00069{left:496.350000px;}
.x59_c00069{left:498.300000px;}
.x22_c00069{left:499.950000px;}
.x99_c00069{left:501.000000px;}
.x84_c00069{left:502.050000px;}
.x53_c00069{left:504.450000px;}
.x9d_c00069{left:510.300000px;}
.xa8_c00069{left:528.900000px;}
.x145_c00069{left:533.100000px;}
.xc5_c00069{left:545.700000px;}
.xaf_c00069{left:546.750000px;}
.x10d_c00069{left:547.950000px;}
.x11e_c00069{left:549.150000px;}
.x134_c00069{left:550.800000px;}
.x14c_c00069{left:552.450000px;}
.x147_c00069{left:562.350000px;}
.xe4_c00069{left:564.450000px;}
.x108_c00069{left:565.500000px;}
.xd6_c00069{left:570.600000px;}
.xe8_c00069{left:571.650000px;}
.xf2_c00069{left:573.450000px;}
.x12c_c00069{left:575.550000px;}
.x103_c00069{left:577.200000px;}
.x119_c00069{left:579.150000px;}
.xc6_c00069{left:580.950000px;}
.xb0_c00069{left:582.750000px;}
.xdc_c00069{left:583.950000px;}
.x114_c00069{left:585.750000px;}
.x12a_c00069{left:587.850000px;}
.xb8_c00069{left:592.200000px;}
.x110_c00069{left:593.250000px;}
.x148_c00069{left:594.300000px;}
.xcf_c00069{left:597.600000px;}
.xf8_c00069{left:599.250000px;}
.x11f_c00069{left:600.300000px;}
.xd7_c00069{left:601.950000px;}
.x124_c00069{left:604.050000px;}
.xfd_c00069{left:605.850000px;}
.xbe_c00069{left:608.400000px;}
.xf3_c00069{left:610.950000px;}
.xa9_c00069{left:612.750000px;}
.xdd_c00069{left:613.800000px;}
.xb1_c00069{left:615.450000px;}
.x14a_c00069{left:617.850000px;}
.xf9_c00069{left:620.550000px;}
.x111_c00069{left:621.750000px;}
.xc2_c00069{left:623.400000px;}
.x11c_c00069{left:624.600000px;}
.x128_c00069{left:626.700000px;}
.x101_c00069{left:627.900000px;}
.xe9_c00069{left:629.550000px;}
.x135_c00069{left:630.600000px;}
.xee_c00069{left:632.400000px;}
.x109_c00069{left:634.500000px;}
.x118_c00069{left:637.350000px;}
.x125_c00069{left:638.550000px;}
.xf4_c00069{left:639.750000px;}
.x121_c00069{left:643.500000px;}
.xd8_c00069{left:645.900000px;}
.x10e_c00069{left:648.300000px;}
.xd0_c00069{left:650.550000px;}
.xc7_c00069{left:652.650000px;}
.x115_c00069{left:654.150000px;}
.xc3_c00069{left:655.500000px;}
.xaa_c00069{left:657.000000px;}
.xfe_c00069{left:661.350000px;}
.xb9_c00069{left:663.450000px;}
.xcb_c00069{left:665.550000px;}
.x131_c00069{left:667.050000px;}
.x11a_c00069{left:669.000000px;}
.xe5_c00069{left:670.950000px;}
.xe2_c00069{left:672.750000px;}
.xb2_c00069{left:674.850000px;}
.xef_c00069{left:677.100000px;}
.x136_c00069{left:678.450000px;}
.xf5_c00069{left:681.150000px;}
.xea_c00069{left:682.500000px;}
.x12d_c00069{left:684.000000px;}
.xff_c00069{left:685.050000px;}
.xd1_c00069{left:686.550000px;}
.xb3_c00069{left:688.200000px;}
.xbf_c00069{left:689.400000px;}
.x10f_c00069{left:693.000000px;}
.xab_c00069{left:694.050000px;}
.xfa_c00069{left:696.450000px;}
.x13a_c00069{left:698.700000px;}
.xf0_c00069{left:699.750000px;}
.x126_c00069{left:700.800000px;}
.xde_c00069{left:702.750000px;}
.x116_c00069{left:703.800000px;}
.x13e_c00069{left:706.800000px;}
.x10a_c00069{left:708.600000px;}
.x132_c00069{left:710.250000px;}
.x13c_c00069{left:712.500000px;}
.xc4_c00069{left:713.850000px;}
.xd2_c00069{left:715.650000px;}
.xba_c00069{left:717.450000px;}
.x104_c00069{left:719.850000px;}
.xb4_c00069{left:720.900000px;}
.x141_c00069{left:723.150000px;}
.xeb_c00069{left:726.000000px;}
.x146_c00069{left:727.350000px;}
.xe6_c00069{left:728.550000px;}
.x102_c00069{left:730.200000px;}
.x11d_c00069{left:731.850000px;}
.x129_c00069{left:733.950000px;}
.xcc_c00069{left:735.450000px;}
.xdf_c00069{left:736.950000px;}
.xf1_c00069{left:738.600000px;}
.x100_c00069{left:740.850000px;}
.xac_c00069{left:741.900000px;}
.xe3_c00069{left:743.250000px;}
.xfb_c00069{left:744.750000px;}
.x105_c00069{left:746.100000px;}
.xc0_c00069{left:747.750000px;}
.x120_c00069{left:749.700000px;}
.xf6_c00069{left:751.650000px;}
.xb5_c00069{left:753.600000px;}
.xc8_c00069{left:754.950000px;}
.x12b_c00069{left:756.750000px;}
.xd3_c00069{left:758.550000px;}
.xe0_c00069{left:759.600000px;}
.x123_c00069{left:761.100000px;}
.x149_c00069{left:762.150000px;}
.xec_c00069{left:763.800000px;}
.x138_c00069{left:766.350000px;}
.xbb_c00069{left:767.550000px;}
.x11b_c00069{left:769.500000px;}
.x142_c00069{left:770.700000px;}
.xad_c00069{left:771.750000px;}
.xc1_c00069{left:773.250000px;}
.x12e_c00069{left:774.300000px;}
.x13f_c00069{left:778.350000px;}
.xd9_c00069{left:779.400000px;}
.x10b_c00069{left:781.200000px;}
.xc9_c00069{left:785.550000px;}
.xbc_c00069{left:786.600000px;}
.xcd_c00069{left:789.450000px;}
.x127_c00069{left:791.850000px;}
.xed_c00069{left:792.900000px;}
.x12f_c00069{left:795.600000px;}
.x112_c00069{left:797.850000px;}
.xe7_c00069{left:799.500000px;}
.x106_c00069{left:803.700000px;}
.x133_c00069{left:805.650000px;}
.x122_c00069{left:808.350000px;}
.xb6_c00069{left:810.150000px;}
.xd4_c00069{left:812.100000px;}
.xf7_c00069{left:813.900000px;}
.x130_c00069{left:815.100000px;}
.x10c_c00069{left:819.750000px;}
.x107_c00069{left:821.400000px;}
.x139_c00069{left:822.900000px;}
.x143_c00069{left:824.400000px;}
.xae_c00069{left:825.450000px;}
.xe1_c00069{left:828.750000px;}
.xd5_c00069{left:830.850000px;}
.xbd_c00069{left:833.700000px;}
.xfc_c00069{left:835.800000px;}
.xce_c00069{left:838.350000px;}
.xda_c00069{left:840.300000px;}
.x113_c00069{left:843.900000px;}
.xb7_c00069{left:847.200000px;}
.x137_c00069{left:848.250000px;}
.x117_c00069{left:850.200000px;}
.x13d_c00069{left:851.850000px;}
.xdb_c00069{left:855.750000px;}
.x144_c00069{left:862.650000px;}
.xca_c00069{left:864.000000px;}
.x14b_c00069{left:867.750000px;}
.x13b_c00069{left:869.100000px;}
.x140_c00069{left:870.150000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws2_c00069{word-spacing:-9.373542pt;}
.ws1_c00069{word-spacing:-2.751323pt;}
.ws4_c00069{word-spacing:0.000000pt;}
.ws0_c00069{word-spacing:13.432099pt;}
.ws3_c00069{word-spacing:16.107473pt;}
.fs4_c00069{font-size:26.666667pt;}
.fs3_c00069{font-size:37.333333pt;}
.fs7_c00069{font-size:42.666667pt;}
.fs8_c00069{font-size:48.000000pt;}
.fs5_c00069{font-size:53.333333pt;}
.fs2_c00069{font-size:58.666667pt;}
.fs6_c00069{font-size:64.000000pt;}
.fs0_c00069{font-size:90.666667pt;}
.fs1_c00069{font-size:112.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y6a_c00069{bottom:165.466667pt;}
.y38_c00069{bottom:165.733333pt;}
.y69_c00069{bottom:181.466667pt;}
.y68_c00069{bottom:197.200000pt;}
.y37_c00069{bottom:201.600000pt;}
.y67_c00069{bottom:213.466667pt;}
.y36_c00069{bottom:214.800000pt;}
.y35_c00069{bottom:226.266667pt;}
.y34_c00069{bottom:242.933333pt;}
.y66_c00069{bottom:244.533333pt;}
.y65_c00069{bottom:260.533333pt;}
.y33_c00069{bottom:262.666667pt;}
.y32_c00069{bottom:278.400000pt;}
.y64_c00069{bottom:284.533333pt;}
.y31_c00069{bottom:294.400000pt;}
.y63_c00069{bottom:308.533333pt;}
.y30_c00069{bottom:310.666667pt;}
.y62_c00069{bottom:324.800000pt;}
.y2f_c00069{bottom:326.666667pt;}
.y61_c00069{bottom:340.533333pt;}
.y2e_c00069{bottom:342.666667pt;}
.y60_c00069{bottom:356.800000pt;}
.y2d_c00069{bottom:358.400000pt;}
.y5f_c00069{bottom:372.800000pt;}
.y2c_c00069{bottom:378.933333pt;}
.y5e_c00069{bottom:388.800000pt;}
.y2b_c00069{bottom:400.000000pt;}
.y5d_c00069{bottom:404.800000pt;}
.y2a_c00069{bottom:418.266667pt;}
.y5c_c00069{bottom:420.800000pt;}
.y29_c00069{bottom:434.266667pt;}
.y5b_c00069{bottom:446.133333pt;}
.y28_c00069{bottom:450.266667pt;}
.y5a_c00069{bottom:453.200000pt;}
.y27_c00069{bottom:466.266667pt;}
.y59_c00069{bottom:469.200000pt;}
.y58_c00069{bottom:485.466667pt;}
.y26_c00069{bottom:489.866667pt;}
.y57_c00069{bottom:501.200000pt;}
.y25_c00069{bottom:505.866667pt;}
.y56_c00069{bottom:517.200000pt;}
.y24_c00069{bottom:526.000000pt;}
.y55_c00069{bottom:533.200000pt;}
.y23_c00069{bottom:542.000000pt;}
.y54_c00069{bottom:549.200000pt;}
.y22_c00069{bottom:558.000000pt;}
.y53_c00069{bottom:565.200000pt;}
.y21_c00069{bottom:573.733333pt;}
.y52_c00069{bottom:581.200000pt;}
.y20_c00069{bottom:590.000000pt;}
.y51_c00069{bottom:597.200000pt;}
.y1f_c00069{bottom:605.733333pt;}
.y50_c00069{bottom:613.200000pt;}
.y1e_c00069{bottom:624.666667pt;}
.y4f_c00069{bottom:629.200000pt;}
.y1d_c00069{bottom:641.600000pt;}
.y4e_c00069{bottom:645.466667pt;}
.y1c_c00069{bottom:656.000000pt;}
.y4d_c00069{bottom:661.200000pt;}
.y1b_c00069{bottom:673.600000pt;}
.y4c_c00069{bottom:677.200000pt;}
.y1a_c00069{bottom:691.466667pt;}
.y4b_c00069{bottom:693.200000pt;}
.y4a_c00069{bottom:709.200000pt;}
.y19_c00069{bottom:712.000000pt;}
.y49_c00069{bottom:725.466667pt;}
.y18_c00069{bottom:729.866667pt;}
.y48_c00069{bottom:741.200000pt;}
.y17_c00069{bottom:749.200000pt;}
.y47_c00069{bottom:757.466667pt;}
.y16_c00069{bottom:768.666667pt;}
.y46_c00069{bottom:773.466667pt;}
.y15_c00069{bottom:787.466667pt;}
.y45_c00069{bottom:789.466667pt;}
.y14_c00069{bottom:804.800000pt;}
.y44_c00069{bottom:805.466667pt;}
.y13_c00069{bottom:820.800000pt;}
.y43_c00069{bottom:821.466667pt;}
.y12_c00069{bottom:840.000000pt;}
.y42_c00069{bottom:841.333333pt;}
.y11_c00069{bottom:857.333333pt;}
.y41_c00069{bottom:873.600000pt;}
.y10_c00069{bottom:876.800000pt;}
.y40_c00069{bottom:889.600000pt;}
.y9_c00069{bottom:896.266667pt;}
.y3f_c00069{bottom:905.600000pt;}
.y8_c00069{bottom:912.933333pt;}
.y3e_c00069{bottom:921.600000pt;}
.y7_c00069{bottom:928.266667pt;}
.y3d_c00069{bottom:937.333333pt;}
.y6_c00069{bottom:944.266667pt;}
.y3c_c00069{bottom:953.600000pt;}
.y5_c00069{bottom:960.000000pt;}
.yf_c00069{bottom:964.133333pt;}
.yd_c00069{bottom:966.666667pt;}
.y3b_c00069{bottom:969.600000pt;}
.ye_c00069{bottom:971.866667pt;}
.y4_c00069{bottom:974.666667pt;}
.y3a_c00069{bottom:985.600000pt;}
.y3_c00069{bottom:992.266667pt;}
.yc_c00069{bottom:994.000000pt;}
.yb_c00069{bottom:998.133333pt;}
.y39_c00069{bottom:1001.600000pt;}
.ya_c00069{bottom:1001.866667pt;}
.y1_c00069{bottom:1018.933333pt;}
.y2_c00069{bottom:1023.733333pt;}
.h6_c00069{height:26.666667pt;}
.h5_c00069{height:37.333333pt;}
.h9_c00069{height:42.666667pt;}
.ha_c00069{height:48.000000pt;}
.h7_c00069{height:53.333333pt;}
.h4_c00069{height:58.666667pt;}
.h8_c00069{height:64.000000pt;}
.h2_c00069{height:90.666667pt;}
.h3_c00069{height:112.000000pt;}
.h1_c00069{height:1130.666667pt;}
.h0_c00069{height:1130.879964pt;}
.w0_c00069{width:843.200032pt;}
.w1_c00069{width:843.333333pt;}
.x0_c00069{left:0.000000pt;}
.x3_c00069{left:148.800000pt;}
.x1_c00069{left:150.133333pt;}
.x5d_c00069{left:153.333333pt;}
.x78_c00069{left:154.533333pt;}
.x8a_c00069{left:156.133333pt;}
.xa3_c00069{left:157.066667pt;}
.xe_c00069{left:165.200000pt;}
.x23_c00069{left:166.400000pt;}
.x50_c00069{left:169.066667pt;}
.x69_c00069{left:170.000000pt;}
.x92_c00069{left:170.933333pt;}
.x25_c00069{left:171.866667pt;}
.xa7_c00069{left:173.066667pt;}
.x7f_c00069{left:177.333333pt;}
.x9_c00069{left:180.266667pt;}
.x2b_c00069{left:182.400000pt;}
.x26_c00069{left:183.733333pt;}
.x4a_c00069{left:184.666667pt;}
.x54_c00069{left:186.533333pt;}
.x8b_c00069{left:188.400000pt;}
.x4_c00069{left:191.066667pt;}
.x38_c00069{left:192.266667pt;}
.x73_c00069{left:193.733333pt;}
.x9e_c00069{left:194.666667pt;}
.x5a_c00069{left:197.866667pt;}
.x82_c00069{left:199.066667pt;}
.x39_c00069{left:201.200000pt;}
.x3c_c00069{left:202.666667pt;}
.x9a_c00069{left:203.733333pt;}
.x89_c00069{left:204.800000pt;}
.x15_c00069{left:206.533333pt;}
.x7d_c00069{left:208.000000pt;}
.x47_c00069{left:211.200000pt;}
.x4b_c00069{left:212.133333pt;}
.x27_c00069{left:215.066667pt;}
.x79_c00069{left:217.200000pt;}
.x2c_c00069{left:218.533333pt;}
.x6a_c00069{left:220.933333pt;}
.x7_c00069{left:222.800000pt;}
.x8_c00069{left:224.133333pt;}
.x55_c00069{left:226.533333pt;}
.xa_c00069{left:229.866667pt;}
.x32_c00069{left:232.000000pt;}
.x48_c00069{left:233.333333pt;}
.x95_c00069{left:234.533333pt;}
.x51_c00069{left:237.200000pt;}
.x40_c00069{left:239.066667pt;}
.x3a_c00069{left:240.533333pt;}
.x85_c00069{left:241.466667pt;}
.x8c_c00069{left:242.800000pt;}
.x56_c00069{left:243.866667pt;}
.xa5_c00069{left:244.933333pt;}
.x42_c00069{left:246.133333pt;}
.x64_c00069{left:247.733333pt;}
.x19_c00069{left:249.733333pt;}
.x33_c00069{left:250.933333pt;}
.x5_c00069{left:252.533333pt;}
.xf_c00069{left:253.866667pt;}
.x2d_c00069{left:257.200000pt;}
.x5f_c00069{left:258.933333pt;}
.x8d_c00069{left:260.666667pt;}
.x81_c00069{left:262.533333pt;}
.x74_c00069{left:263.600000pt;}
.xa1_c00069{left:265.466667pt;}
.x65_c00069{left:267.600000pt;}
.x8e_c00069{left:268.933333pt;}
.x70_c00069{left:269.866667pt;}
.x49_c00069{left:270.800000pt;}
.x3d_c00069{left:271.733333pt;}
.x4c_c00069{left:272.933333pt;}
.x2e_c00069{left:275.466667pt;}
.x86_c00069{left:277.333333pt;}
.x16_c00069{left:278.266667pt;}
.x28_c00069{left:279.733333pt;}
.x8f_c00069{left:281.066667pt;}
.x6b_c00069{left:282.000000pt;}
.x10_c00069{left:283.600000pt;}
.x24_c00069{left:287.333333pt;}
.x3e_c00069{left:289.333333pt;}
.x60_c00069{left:290.266667pt;}
.x1a_c00069{left:291.333333pt;}
.x75_c00069{left:292.400000pt;}
.xa4_c00069{left:294.000000pt;}
.x2f_c00069{left:295.333333pt;}
.x87_c00069{left:297.200000pt;}
.x4d_c00069{left:298.533333pt;}
.x7e_c00069{left:301.333333pt;}
.x6c_c00069{left:302.800000pt;}
.x41_c00069{left:304.666667pt;}
.x30_c00069{left:305.866667pt;}
.x6_c00069{left:308.266667pt;}
.x34_c00069{left:309.466667pt;}
.x7a_c00069{left:312.000000pt;}
.x3b_c00069{left:314.400000pt;}
.x5e_c00069{left:315.866667pt;}
.x96_c00069{left:316.800000pt;}
.xb_c00069{left:318.800000pt;}
.x11_c00069{left:320.400000pt;}
.x5b_c00069{left:322.000000pt;}
.x61_c00069{left:323.466667pt;}
.xa2_c00069{left:324.400000pt;}
.x52_c00069{left:325.866667pt;}
.x93_c00069{left:327.066667pt;}
.x31_c00069{left:328.933333pt;}
.x29_c00069{left:330.266667pt;}
.x3f_c00069{left:332.533333pt;}
.x1f_c00069{left:333.733333pt;}
.x1c_c00069{left:337.200000pt;}
.x5c_c00069{left:338.266667pt;}
.x76_c00069{left:339.466667pt;}
.x43_c00069{left:341.200000pt;}
.x97_c00069{left:342.400000pt;}
.x4e_c00069{left:343.333333pt;}
.x71_c00069{left:345.066667pt;}
.x88_c00069{left:352.933333pt;}
.x7b_c00069{left:354.533333pt;}
.x1b_c00069{left:356.000000pt;}
.x20_c00069{left:357.733333pt;}
.x57_c00069{left:359.466667pt;}
.x6d_c00069{left:360.400000pt;}
.x2_c00069{left:361.333333pt;}
.x9f_c00069{left:362.800000pt;}
.x35_c00069{left:365.200000pt;}
.x44_c00069{left:368.666667pt;}
.x36_c00069{left:373.866667pt;}
.x21_c00069{left:375.600000pt;}
.x17_c00069{left:377.466667pt;}
.x83_c00069{left:380.400000pt;}
.x66_c00069{left:381.866667pt;}
.x6e_c00069{left:382.800000pt;}
.xc_c00069{left:383.733333pt;}
.x12_c00069{left:385.733333pt;}
.x45_c00069{left:388.800000pt;}
.xa6_c00069{left:390.133333pt;}
.x67_c00069{left:392.133333pt;}
.x72_c00069{left:393.066667pt;}
.x1d_c00069{left:395.466667pt;}
.x62_c00069{left:396.800000pt;}
.x18_c00069{left:398.266667pt;}
.x13_c00069{left:400.400000pt;}
.x58_c00069{left:401.333333pt;}
.x98_c00069{left:404.400000pt;}
.x90_c00069{left:405.600000pt;}
.xd_c00069{left:406.800000pt;}
.x68_c00069{left:409.733333pt;}
.x94_c00069{left:411.200000pt;}
.x37_c00069{left:413.866667pt;}
.x1e_c00069{left:415.600000pt;}
.x6f_c00069{left:418.933333pt;}
.x2a_c00069{left:425.333333pt;}
.x9b_c00069{left:426.533333pt;}
.x46_c00069{left:427.866667pt;}
.xa0_c00069{left:429.333333pt;}
.x9c_c00069{left:430.266667pt;}
.x80_c00069{left:432.133333pt;}
.x77_c00069{left:434.533333pt;}
.x4f_c00069{left:435.600000pt;}
.x14_c00069{left:436.533333pt;}
.x91_c00069{left:438.266667pt;}
.x63_c00069{left:439.733333pt;}
.x7c_c00069{left:441.200000pt;}
.x59_c00069{left:442.933333pt;}
.x22_c00069{left:444.400000pt;}
.x99_c00069{left:445.333333pt;}
.x84_c00069{left:446.266667pt;}
.x53_c00069{left:448.400000pt;}
.x9d_c00069{left:453.600000pt;}
.xa8_c00069{left:470.133333pt;}
.x145_c00069{left:473.866667pt;}
.xc5_c00069{left:485.066667pt;}
.xaf_c00069{left:486.000000pt;}
.x10d_c00069{left:487.066667pt;}
.x11e_c00069{left:488.133333pt;}
.x134_c00069{left:489.600000pt;}
.x14c_c00069{left:491.066667pt;}
.x147_c00069{left:499.866667pt;}
.xe4_c00069{left:501.733333pt;}
.x108_c00069{left:502.666667pt;}
.xd6_c00069{left:507.200000pt;}
.xe8_c00069{left:508.133333pt;}
.xf2_c00069{left:509.733333pt;}
.x12c_c00069{left:511.600000pt;}
.x103_c00069{left:513.066667pt;}
.x119_c00069{left:514.800000pt;}
.xc6_c00069{left:516.400000pt;}
.xb0_c00069{left:518.000000pt;}
.xdc_c00069{left:519.066667pt;}
.x114_c00069{left:520.666667pt;}
.x12a_c00069{left:522.533333pt;}
.xb8_c00069{left:526.400000pt;}
.x110_c00069{left:527.333333pt;}
.x148_c00069{left:528.266667pt;}
.xcf_c00069{left:531.200000pt;}
.xf8_c00069{left:532.666667pt;}
.x11f_c00069{left:533.600000pt;}
.xd7_c00069{left:535.066667pt;}
.x124_c00069{left:536.933333pt;}
.xfd_c00069{left:538.533333pt;}
.xbe_c00069{left:540.800000pt;}
.xf3_c00069{left:543.066667pt;}
.xa9_c00069{left:544.666667pt;}
.xdd_c00069{left:545.600000pt;}
.xb1_c00069{left:547.066667pt;}
.x14a_c00069{left:549.200000pt;}
.xf9_c00069{left:551.600000pt;}
.x111_c00069{left:552.666667pt;}
.xc2_c00069{left:554.133333pt;}
.x11c_c00069{left:555.200000pt;}
.x128_c00069{left:557.066667pt;}
.x101_c00069{left:558.133333pt;}
.xe9_c00069{left:559.600000pt;}
.x135_c00069{left:560.533333pt;}
.xee_c00069{left:562.133333pt;}
.x109_c00069{left:564.000000pt;}
.x118_c00069{left:566.533333pt;}
.x125_c00069{left:567.600000pt;}
.xf4_c00069{left:568.666667pt;}
.x121_c00069{left:572.000000pt;}
.xd8_c00069{left:574.133333pt;}
.x10e_c00069{left:576.266667pt;}
.xd0_c00069{left:578.266667pt;}
.xc7_c00069{left:580.133333pt;}
.x115_c00069{left:581.466667pt;}
.xc3_c00069{left:582.666667pt;}
.xaa_c00069{left:584.000000pt;}
.xfe_c00069{left:587.866667pt;}
.xb9_c00069{left:589.733333pt;}
.xcb_c00069{left:591.600000pt;}
.x131_c00069{left:592.933333pt;}
.x11a_c00069{left:594.666667pt;}
.xe5_c00069{left:596.400000pt;}
.xe2_c00069{left:598.000000pt;}
.xb2_c00069{left:599.866667pt;}
.xef_c00069{left:601.866667pt;}
.x136_c00069{left:603.066667pt;}
.xf5_c00069{left:605.466667pt;}
.xea_c00069{left:606.666667pt;}
.x12d_c00069{left:608.000000pt;}
.xff_c00069{left:608.933333pt;}
.xd1_c00069{left:610.266667pt;}
.xb3_c00069{left:611.733333pt;}
.xbf_c00069{left:612.800000pt;}
.x10f_c00069{left:616.000000pt;}
.xab_c00069{left:616.933333pt;}
.xfa_c00069{left:619.066667pt;}
.x13a_c00069{left:621.066667pt;}
.xf0_c00069{left:622.000000pt;}
.x126_c00069{left:622.933333pt;}
.xde_c00069{left:624.666667pt;}
.x116_c00069{left:625.600000pt;}
.x13e_c00069{left:628.266667pt;}
.x10a_c00069{left:629.866667pt;}
.x132_c00069{left:631.333333pt;}
.x13c_c00069{left:633.333333pt;}
.xc4_c00069{left:634.533333pt;}
.xd2_c00069{left:636.133333pt;}
.xba_c00069{left:637.733333pt;}
.x104_c00069{left:639.866667pt;}
.xb4_c00069{left:640.800000pt;}
.x141_c00069{left:642.800000pt;}
.xeb_c00069{left:645.333333pt;}
.x146_c00069{left:646.533333pt;}
.xe6_c00069{left:647.600000pt;}
.x102_c00069{left:649.066667pt;}
.x11d_c00069{left:650.533333pt;}
.x129_c00069{left:652.400000pt;}
.xcc_c00069{left:653.733333pt;}
.xdf_c00069{left:655.066667pt;}
.xf1_c00069{left:656.533333pt;}
.x100_c00069{left:658.533333pt;}
.xac_c00069{left:659.466667pt;}
.xe3_c00069{left:660.666667pt;}
.xfb_c00069{left:662.000000pt;}
.x105_c00069{left:663.200000pt;}
.xc0_c00069{left:664.666667pt;}
.x120_c00069{left:666.400000pt;}
.xf6_c00069{left:668.133333pt;}
.xb5_c00069{left:669.866667pt;}
.xc8_c00069{left:671.066667pt;}
.x12b_c00069{left:672.666667pt;}
.xd3_c00069{left:674.266667pt;}
.xe0_c00069{left:675.200000pt;}
.x123_c00069{left:676.533333pt;}
.x149_c00069{left:677.466667pt;}
.xec_c00069{left:678.933333pt;}
.x138_c00069{left:681.200000pt;}
.xbb_c00069{left:682.266667pt;}
.x11b_c00069{left:684.000000pt;}
.x142_c00069{left:685.066667pt;}
.xad_c00069{left:686.000000pt;}
.xc1_c00069{left:687.333333pt;}
.x12e_c00069{left:688.266667pt;}
.x13f_c00069{left:691.866667pt;}
.xd9_c00069{left:692.800000pt;}
.x10b_c00069{left:694.400000pt;}
.xc9_c00069{left:698.266667pt;}
.xbc_c00069{left:699.200000pt;}
.xcd_c00069{left:701.733333pt;}
.x127_c00069{left:703.866667pt;}
.xed_c00069{left:704.800000pt;}
.x12f_c00069{left:707.200000pt;}
.x112_c00069{left:709.200000pt;}
.xe7_c00069{left:710.666667pt;}
.x106_c00069{left:714.400000pt;}
.x133_c00069{left:716.133333pt;}
.x122_c00069{left:718.533333pt;}
.xb6_c00069{left:720.133333pt;}
.xd4_c00069{left:721.866667pt;}
.xf7_c00069{left:723.466667pt;}
.x130_c00069{left:724.533333pt;}
.x10c_c00069{left:728.666667pt;}
.x107_c00069{left:730.133333pt;}
.x139_c00069{left:731.466667pt;}
.x143_c00069{left:732.800000pt;}
.xae_c00069{left:733.733333pt;}
.xe1_c00069{left:736.666667pt;}
.xd5_c00069{left:738.533333pt;}
.xbd_c00069{left:741.066667pt;}
.xfc_c00069{left:742.933333pt;}
.xce_c00069{left:745.200000pt;}
.xda_c00069{left:746.933333pt;}
.x113_c00069{left:750.133333pt;}
.xb7_c00069{left:753.066667pt;}
.x137_c00069{left:754.000000pt;}
.x117_c00069{left:755.733333pt;}
.x13d_c00069{left:757.200000pt;}
.xdb_c00069{left:760.666667pt;}
.x144_c00069{left:766.800000pt;}
.xca_c00069{left:768.000000pt;}
.x14b_c00069{left:771.333333pt;}
.x13b_c00069{left:772.533333pt;}
.x140_c00069{left:773.466667pt;}
}





/* 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_c00070 {
    display:none;
  }
  .loading-indicator_c00070.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00070 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_c00070 { 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_c00070" -> "#page-container .classname_c00070")
 */
.pf_c00070 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00070 { /* 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_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00070 { /* 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_c00070 { /* 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_c00070 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00070 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00070 {overflow:visible;}
  }
}
.c_c00070 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00070 { /* 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_c00070:after { /* webkit #35443 */
  content: '';
}
.t_c00070:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00070 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 */
}
.__c00070 { /* 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_c00070 { /* info for Javascript */
  display:none;
}
.l_c00070 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00070 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00070 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00070: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_c00070 {
    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_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00070.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_c00070 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00070;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.000000;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;}
.m74_c00070{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00070{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m107_c00070{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.m104_c00070{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00070{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00070{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00070{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.md7_c00070{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m60_c00070{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00070{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00070{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00070{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00070{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m108_c00070{transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00070{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m55_c00070{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m23_c00070{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m73_c00070{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma_c00070{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00070{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m45_c00070{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m25_c00070{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00070{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00070{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m13_c00070{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m71_c00070{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00070{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00070{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m27_c00070{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m66_c00070{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00070{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m7_c00070{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md0_c00070{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m53_c00070{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m14_c00070{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00070{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m17_c00070{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00070{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mff_c00070{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m38_c00070{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m64_c00070{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m6_c00070{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.me0_c00070{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m16_c00070{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00070{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m113_c00070{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00070{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mde_c00070{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m114_c00070{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00070{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me3_c00070{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00070{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00070{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m52_c00070{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m54_c00070{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m20_c00070{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m103_c00070{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00070{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m37_c00070{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00070{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m90_c00070{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00070{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00070{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00070{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00070{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m61_c00070{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m46_c00070{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me6_c00070{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m43_c00070{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00070{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m101_c00070{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m119_c00070{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00070{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m89_c00070{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mda_c00070{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.maa_c00070{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00070{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00070{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m97_c00070{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.md2_c00070{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00070{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m12_c00070{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m40_c00070{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf_c00070{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00070{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m11_c00070{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9_c00070{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00070{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md1_c00070{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00070{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00070{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m35_c00070{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00070{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00070{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00070{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00070{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m95_c00070{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00070{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00070{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m92_c00070{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m44_c00070{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00070{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mce_c00070{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00070{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00070{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md8_c00070{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m15_c00070{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m112_c00070{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00070{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00070{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00070{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00070{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m42_c00070{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m57_c00070{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m33_c00070{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m5_c00070{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m83_c00070{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00070{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m62_c00070{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00070{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m18_c00070{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m72_c00070{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00070{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me7_c00070{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m105_c00070{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m28_c00070{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00070{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m84_c00070{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m47_c00070{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mba_c00070{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m19_c00070{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m98_c00070{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m96_c00070{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00070{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m102_c00070{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m76_c00070{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb_c00070{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00070{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m77_c00070{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00070{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00070{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m87_c00070{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00070{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m39_c00070{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m26_c00070{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m82_c00070{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00070{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m56_c00070{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m59_c00070{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00070{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00070{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md5_c00070{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00070{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00070{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00070{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00070{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00070{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00070{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00070{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mca_c00070{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8_c00070{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00070{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m63_c00070{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m109_c00070{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.md9_c00070{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m22_c00070{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m106_c00070{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00070{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00070{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m99_c00070{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md6_c00070{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m94_c00070{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00070{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md4_c00070{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00070{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00070{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00070{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00070{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mae_c00070{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00070{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00070{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.maf_c00070{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m51_c00070{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00070{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m67_c00070{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00070{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00070{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m80_c00070{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00070{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10_c00070{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m29_c00070{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m116_c00070{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00070{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00070{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m69_c00070{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00070{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m81_c00070{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00070{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00070{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m118_c00070{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me8_c00070{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00070{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m93_c00070{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md3_c00070{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00070{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.meb_c00070{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m117_c00070{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.me_c00070{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m32_c00070{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.med_c00070{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m68_c00070{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m49_c00070{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00070{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me4_c00070{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00070{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m50_c00070{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m24_c00070{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00070{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00070{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me9_c00070{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md_c00070{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mee_c00070{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m65_c00070{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00070{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m58_c00070{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m36_c00070{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00070{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00070{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00070{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m86_c00070{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m34_c00070{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00070{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m78_c00070{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00070{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00070{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00070{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mad_c00070{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me2_c00070{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m48_c00070{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00070{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00070{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m100_c00070{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00070{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m41_c00070{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m111_c00070{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00070{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mea_c00070{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me5_c00070{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m70_c00070{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mec_c00070{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00070{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mac_c00070{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m115_c00070{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m88_c00070{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m79_c00070{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me1_c00070{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m110_c00070{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m31_c00070{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m85_c00070{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mab_c00070{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mef_c00070{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00070{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m21_c00070{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c00070{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00070{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00070{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00070{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00070{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00070{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00070{transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00070{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00070{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00070{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.459750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00070{transform:matrix(0.463000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00070{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m2_c00070{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00070{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.m75_c00070{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m91_c00070{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00070{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls0_c00070{letter-spacing:0.000000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{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__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00070{word-spacing:-6.486486px;}
.ws7_c00070{word-spacing:-5.277778px;}
.ws2_c00070{word-spacing:-5.000000px;}
.ws6_c00070{word-spacing:-4.722222px;}
.ws1_c00070{word-spacing:-0.687732px;}
.wsc_c00070{word-spacing:0.000000px;}
.ws9_c00070{word-spacing:4.736842px;}
.ws0_c00070{word-spacing:17.749326px;}
.ws3_c00070{word-spacing:29.285714px;}
.ws4_c00070{word-spacing:41.388889px;}
.wsa_c00070{word-spacing:53.046693px;}
.ws8_c00070{word-spacing:240.333333px;}
.wsb_c00070{word-spacing:698.885496px;}
._0_c00070{width:791.427481px;}
.fc0_c00070{color:transparent;}
.fs7_c00070{font-size:18.000000px;}
.fs1_c00070{font-size:30.000000px;}
.fs4_c00070{font-size:42.000000px;}
.fs6_c00070{font-size:48.000000px;}
.fs9_c00070{font-size:54.000000px;}
.fs5_c00070{font-size:60.000000px;}
.fs2_c00070{font-size:66.000000px;}
.fs3_c00070{font-size:72.000000px;}
.fs8_c00070{font-size:78.000000px;}
.fs0_c00070{font-size:84.000000px;}
.y0_c00070{bottom:0.000000px;}
.y73_c00070{bottom:186.750000px;}
.y3a_c00070{bottom:187.200000px;}
.y72_c00070{bottom:204.750000px;}
.y39_c00070{bottom:205.200000px;}
.y71_c00070{bottom:219.150000px;}
.y70_c00070{bottom:222.750000px;}
.y38_c00070{bottom:223.200000px;}
.y6f_c00070{bottom:240.750000px;}
.y37_c00070{bottom:241.200000px;}
.y36_c00070{bottom:258.900000px;}
.y6e_c00070{bottom:259.050000px;}
.y6d_c00070{bottom:269.550000px;}
.y6c_c00070{bottom:276.750000px;}
.y35_c00070{bottom:276.900000px;}
.y6b_c00070{bottom:294.750000px;}
.y34_c00070{bottom:294.900000px;}
.y6a_c00070{bottom:313.050000px;}
.y33_c00070{bottom:313.200000px;}
.y32_c00070{bottom:330.450000px;}
.y69_c00070{bottom:330.750000px;}
.y31_c00070{bottom:348.450000px;}
.y68_c00070{bottom:348.750000px;}
.y30_c00070{bottom:366.150000px;}
.y67_c00070{bottom:366.450000px;}
.y66_c00070{bottom:379.050000px;}
.y65_c00070{bottom:384.450000px;}
.y2f_c00070{bottom:387.150000px;}
.y2e_c00070{bottom:392.850000px;}
.y64_c00070{bottom:402.150000px;}
.y2d_c00070{bottom:410.850000px;}
.y63_c00070{bottom:413.700000px;}
.y62_c00070{bottom:420.150000px;}
.y2c_c00070{bottom:428.550000px;}
.y61_c00070{bottom:438.450000px;}
.y2b_c00070{bottom:446.850000px;}
.y60_c00070{bottom:456.150000px;}
.y2a_c00070{bottom:464.850000px;}
.y5f_c00070{bottom:474.450000px;}
.y29_c00070{bottom:478.500000px;}
.y28_c00070{bottom:482.400000px;}
.y5e_c00070{bottom:492.150000px;}
.y27_c00070{bottom:500.400000px;}
.y5d_c00070{bottom:508.050000px;}
.y5c_c00070{bottom:512.400000px;}
.y26_c00070{bottom:512.700000px;}
.y25_c00070{bottom:518.700000px;}
.y5b_c00070{bottom:527.100000px;}
.y24_c00070{bottom:536.400000px;}
.y5a_c00070{bottom:541.500000px;}
.y23_c00070{bottom:554.400000px;}
.y59_c00070{bottom:555.900000px;}
.y58_c00070{bottom:570.300000px;}
.y22_c00070{bottom:572.400000px;}
.y57_c00070{bottom:585.000000px;}
.y21_c00070{bottom:590.400000px;}
.y56_c00070{bottom:597.600000px;}
.y20_c00070{bottom:608.400000px;}
.y55_c00070{bottom:617.700000px;}
.y1f_c00070{bottom:626.400000px;}
.y54_c00070{bottom:635.700000px;}
.y1e_c00070{bottom:644.400000px;}
.y53_c00070{bottom:662.400000px;}
.y1d_c00070{bottom:670.050000px;}
.y52_c00070{bottom:680.700000px;}
.y1c_c00070{bottom:684.750000px;}
.y1b_c00070{bottom:698.700000px;}
.y51_c00070{bottom:699.000000px;}
.y1a_c00070{bottom:713.550000px;}
.y50_c00070{bottom:715.950000px;}
.y19_c00070{bottom:728.250000px;}
.y4f_c00070{bottom:733.950000px;}
.y18_c00070{bottom:742.350000px;}
.y4e_c00070{bottom:751.650000px;}
.y17_c00070{bottom:754.950000px;}
.y16_c00070{bottom:770.700000px;}
.y4d_c00070{bottom:774.300000px;}
.y15_c00070{bottom:789.150000px;}
.y4c_c00070{bottom:805.650000px;}
.y14_c00070{bottom:815.400000px;}
.y4b_c00070{bottom:823.350000px;}
.y13_c00070{bottom:833.700000px;}
.y4a_c00070{bottom:841.650000px;}
.y12_c00070{bottom:851.700000px;}
.y49_c00070{bottom:860.400000px;}
.y11_c00070{bottom:869.700000px;}
.y48_c00070{bottom:877.350000px;}
.y10_c00070{bottom:887.400000px;}
.y47_c00070{bottom:895.650000px;}
.yf_c00070{bottom:905.700000px;}
.y46_c00070{bottom:914.400000px;}
.ye_c00070{bottom:923.400000px;}
.y45_c00070{bottom:941.100000px;}
.yd_c00070{bottom:941.400000px;}
.y44_c00070{bottom:959.400000px;}
.yc_c00070{bottom:959.700000px;}
.yb_c00070{bottom:977.700000px;}
.y43_c00070{bottom:985.950000px;}
.ya_c00070{bottom:995.400000px;}
.y42_c00070{bottom:1004.250000px;}
.y41_c00070{bottom:1021.950000px;}
.y9_c00070{bottom:1022.400000px;}
.y40_c00070{bottom:1039.650000px;}
.y8_c00070{bottom:1040.100000px;}
.y3f_c00070{bottom:1062.300000px;}
.y3e_c00070{bottom:1070.550000px;}
.y7_c00070{bottom:1071.750000px;}
.y3d_c00070{bottom:1080.300000px;}
.y6_c00070{bottom:1089.450000px;}
.y3c_c00070{bottom:1102.650000px;}
.y5_c00070{bottom:1107.450000px;}
.y3b_c00070{bottom:1120.650000px;}
.y4_c00070{bottom:1125.750000px;}
.y2_c00070{bottom:1143.750000px;}
.y1_c00070{bottom:1149.900000px;}
.y3_c00070{bottom:1266.450000px;}
.h9_c00070{height:18.000000px;}
.h3_c00070{height:30.000000px;}
.h6_c00070{height:42.000000px;}
.h8_c00070{height:48.000000px;}
.hb_c00070{height:54.000000px;}
.h7_c00070{height:60.000000px;}
.h4_c00070{height:66.000000px;}
.h5_c00070{height:72.000000px;}
.ha_c00070{height:78.000000px;}
.h2_c00070{height:84.000000px;}
.h0_c00070{height:1270.440033px;}
.h1_c00070{height:1270.500000px;}
.w0_c00070{width:948.600036px;}
.w1_c00070{width:948.750000px;}
.x0_c00070{left:0.000000px;}
.x72_c00070{left:69.450000px;}
.x61_c00070{left:70.950000px;}
.x22_c00070{left:73.500000px;}
.x23_c00070{left:83.550000px;}
.xa5_c00070{left:86.700000px;}
.xa0_c00070{left:87.900000px;}
.x82_c00070{left:89.100000px;}
.x6_c00070{left:90.300000px;}
.x1c_c00070{left:91.800000px;}
.x2f_c00070{left:93.000000px;}
.x62_c00070{left:98.700000px;}
.x69_c00070{left:102.600000px;}
.x87_c00070{left:106.500000px;}
.x1d_c00070{left:108.750000px;}
.x24_c00070{left:112.350000px;}
.x58_c00070{left:114.900000px;}
.x13_c00070{left:116.250000px;}
.x97_c00070{left:118.200000px;}
.x63_c00070{left:120.600000px;}
.x2a_c00070{left:122.400000px;}
.x6f_c00070{left:124.950000px;}
.x14_c00070{left:127.350000px;}
.x4e_c00070{left:129.900000px;}
.x5c_c00070{left:132.300000px;}
.x41_c00070{left:135.450000px;}
.x88_c00070{left:137.100000px;}
.x92_c00070{left:138.450000px;}
.xf_c00070{left:139.800000px;}
.x30_c00070{left:142.350000px;}
.x7f_c00070{left:144.450000px;}
.x6a_c00070{left:145.800000px;}
.x1e_c00070{left:147.600000px;}
.x25_c00070{left:149.100000px;}
.x4f_c00070{left:151.200000px;}
.x71_c00070{left:152.400000px;}
.x7b_c00070{left:156.000000px;}
.x56_c00070{left:157.500000px;}
.x15_c00070{left:159.750000px;}
.x36_c00070{left:161.850000px;}
.x83_c00070{left:163.650000px;}
.x31_c00070{left:165.000000px;}
.x67_c00070{left:166.800000px;}
.x3b_c00070{left:168.600000px;}
.x5d_c00070{left:170.400000px;}
.x48_c00070{left:173.400000px;}
.x81_c00070{left:175.050000px;}
.x77_c00070{left:176.250000px;}
.x7_c00070{left:177.450000px;}
.x2b_c00070{left:178.500000px;}
.x89_c00070{left:179.550000px;}
.x3c_c00070{left:181.950000px;}
.x1f_c00070{left:184.650000px;}
.x16_c00070{left:186.450000px;}
.x64_c00070{left:187.500000px;}
.x5e_c00070{left:191.250000px;}
.x8_c00070{left:193.350000px;}
.x50_c00070{left:194.700000px;}
.x42_c00070{left:199.950000px;}
.x2c_c00070{left:202.200000px;}
.x9e_c00070{left:206.700000px;}
.x9_c00070{left:207.750000px;}
.x73_c00070{left:210.300000px;}
.x8f_c00070{left:211.350000px;}
.x3d_c00070{left:212.550000px;}
.x84_c00070{left:214.350000px;}
.x59_c00070{left:215.400000px;}
.x98_c00070{left:217.200000px;}
.x32_c00070{left:219.000000px;}
.x3_c00070{left:221.400000px;}
.x5f_c00070{left:223.650000px;}
.x26_c00070{left:225.000000px;}
.x37_c00070{left:227.700000px;}
.x10_c00070{left:229.500000px;}
.x17_c00070{left:231.450000px;}
.x65_c00070{left:235.800000px;}
.xa3_c00070{left:237.300000px;}
.x94_c00070{left:239.400000px;}
.x8b_c00070{left:241.950000px;}
.x4_c00070{left:243.000000px;}
.x74_c00070{left:244.200000px;}
.x33_c00070{left:246.000000px;}
.x20_c00070{left:249.150000px;}
.x60_c00070{left:250.950000px;}
.xa_c00070{left:252.000000px;}
.x99_c00070{left:253.950000px;}
.x2d_c00070{left:255.600000px;}
.x75_c00070{left:258.300000px;}
.x52_c00070{left:259.350000px;}
.x95_c00070{left:261.300000px;}
.x49_c00070{left:263.100000px;}
.x18_c00070{left:266.700000px;}
.x53_c00070{left:269.850000px;}
.xa1_c00070{left:272.250000px;}
.x21_c00070{left:274.350000px;}
.x38_c00070{left:275.550000px;}
.x11_c00070{left:277.350000px;}
.x19_c00070{left:279.300000px;}
.x5_c00070{left:281.550000px;}
.x7c_c00070{left:282.750000px;}
.x54_c00070{left:285.000000px;}
.x8c_c00070{left:286.650000px;}
.xb_c00070{left:287.700000px;}
.x9b_c00070{left:289.050000px;}
.x80_c00070{left:290.550000px;}
.x6b_c00070{left:291.600000px;}
.x4a_c00070{left:292.650000px;}
.x27_c00070{left:294.450000px;}
.x96_c00070{left:295.950000px;}
.x7d_c00070{left:297.900000px;}
.xc_c00070{left:300.000000px;}
.x86_c00070{left:302.250000px;}
.x43_c00070{left:304.350000px;}
.x34_c00070{left:306.150000px;}
.x28_c00070{left:307.350000px;}
.x39_c00070{left:310.500000px;}
.x9c_c00070{left:312.750000px;}
.x6c_c00070{left:314.250000px;}
.x55_c00070{left:315.600000px;}
.x1a_c00070{left:316.800000px;}
.x4b_c00070{left:318.150000px;}
.x90_c00070{left:319.800000px;}
.x1_c00070{left:321.450000px;}
.x76_c00070{left:324.150000px;}
.x44_c00070{left:327.450000px;}
.x35_c00070{left:329.250000px;}
.x8a_c00070{left:330.750000px;}
.xa2_c00070{left:332.400000px;}
.x5a_c00070{left:333.900000px;}
.x91_c00070{left:335.400000px;}
.x7e_c00070{left:337.800000px;}
.x6e_c00070{left:341.100000px;}
.x3a_c00070{left:342.150000px;}
.x57_c00070{left:344.250000px;}
.x45_c00070{left:346.200000px;}
.x2e_c00070{left:351.450000px;}
.x66_c00070{left:353.550000px;}
.x78_c00070{left:355.800000px;}
.x9d_c00070{left:357.000000px;}
.x12_c00070{left:358.050000px;}
.x3e_c00070{left:360.150000px;}
.xd_c00070{left:361.950000px;}
.x68_c00070{left:363.900000px;}
.x70_c00070{left:366.300000px;}
.x4c_c00070{left:368.550000px;}
.x8e_c00070{left:370.050000px;}
.x6d_c00070{left:371.400000px;}
.x79_c00070{left:373.050000px;}
.x3f_c00070{left:377.400000px;}
.x46_c00070{left:378.600000px;}
.x5b_c00070{left:379.950000px;}
.x51_c00070{left:381.900000px;}
.x9a_c00070{left:383.550000px;}
.xe_c00070{left:385.050000px;}
.x9f_c00070{left:388.200000px;}
.x8d_c00070{left:389.250000px;}
.x93_c00070{left:390.900000px;}
.x29_c00070{left:393.750000px;}
.x1b_c00070{left:395.700000px;}
.x47_c00070{left:398.700000px;}
.x40_c00070{left:399.750000px;}
.xa4_c00070{left:400.950000px;}
.x4d_c00070{left:402.750000px;}
.x85_c00070{left:407.700000px;}
.x7a_c00070{left:408.750000px;}
.x116_c00070{left:432.600000px;}
.xd8_c00070{left:433.800000px;}
.xd1_c00070{left:434.850000px;}
.xb8_c00070{left:435.900000px;}
.x11c_c00070{left:446.400000px;}
.xd9_c00070{left:448.500000px;}
.x100_c00070{left:450.150000px;}
.xde_c00070{left:451.650000px;}
.xc5_c00070{left:452.700000px;}
.xa6_c00070{left:453.900000px;}
.x142_c00070{left:458.250000px;}
.x119_c00070{left:461.100000px;}
.xda_c00070{left:466.500000px;}
.xb7_c00070{left:467.850000px;}
.xe9_c00070{left:469.500000px;}
.xb0_c00070{left:471.600000px;}
.x129_c00070{left:475.350000px;}
.x110_c00070{left:480.150000px;}
.xcc_c00070{left:481.950000px;}
.x11d_c00070{left:483.000000px;}
.x13b_c00070{left:485.100000px;}
.x101_c00070{left:486.150000px;}
.xc6_c00070{left:489.450000px;}
.x137_c00070{left:490.800000px;}
.x14a_c00070{left:491.850000px;}
.xe3_c00070{left:495.900000px;}
.x10d_c00070{left:497.250000px;}
.xa7_c00070{left:498.600000px;}
.x109_c00070{left:499.950000px;}
.xb9_c00070{left:502.500000px;}
.xd2_c00070{left:504.000000px;}
.x11a_c00070{left:505.350000px;}
.xdf_c00070{left:506.700000px;}
.xc0_c00070{left:509.250000px;}
.x138_c00070{left:510.900000px;}
.x148_c00070{left:513.150000px;}
.x130_c00070{left:514.200000px;}
.xcd_c00070{left:515.400000px;}
.x123_c00070{left:517.050000px;}
.xb1_c00070{left:518.400000px;}
.xd7_c00070{left:520.350000px;}
.x134_c00070{left:522.150000px;}
.xba_c00070{left:525.600000px;}
.x126_c00070{left:526.800000px;}
.x144_c00070{left:528.750000px;}
.x131_c00070{left:530.700000px;}
.x14c_c00070{left:534.900000px;}
.x10e_c00070{left:536.100000px;}
.x114_c00070{left:537.900000px;}
.xf4_c00070{left:539.250000px;}
.x149_c00070{left:540.450000px;}
.xa8_c00070{left:542.100000px;}
.xd3_c00070{left:543.600000px;}
.xaf_c00070{left:546.900000px;}
.x111_c00070{left:548.550000px;}
.xdb_c00070{left:549.600000px;}
.xbb_c00070{left:550.800000px;}
.xf7_c00070{left:552.300000px;}
.x124_c00070{left:554.100000px;}
.xc7_c00070{left:556.050000px;}
.xe4_c00070{left:557.400000px;}
.xfb_c00070{left:563.250000px;}
.xce_c00070{left:566.100000px;}
.x132_c00070{left:567.750000px;}
.xe5_c00070{left:568.950000px;}
.x11b_c00070{left:570.450000px;}
.x13c_c00070{left:571.500000px;}
.x120_c00070{left:572.550000px;}
.xf5_c00070{left:573.900000px;}
.x10f_c00070{left:575.400000px;}
.xbc_c00070{left:577.050000px;}
.xc1_c00070{left:578.700000px;}
.xc8_c00070{left:579.750000px;}
.xf8_c00070{left:580.800000px;}
.xe0_c00070{left:582.600000px;}
.xfc_c00070{left:584.850000px;}
.x102_c00070{left:587.700000px;}
.xea_c00070{left:589.950000px;}
.x105_c00070{left:591.000000px;}
.xb2_c00070{left:595.500000px;}
.x112_c00070{left:596.850000px;}
.x127_c00070{left:600.600000px;}
.xbd_c00070{left:601.950000px;}
.x12e_c00070{left:603.000000px;}
.xa9_c00070{left:604.350000px;}
.xef_c00070{left:606.150000px;}
.xfd_c00070{left:610.350000px;}
.xf9_c00070{left:612.450000px;}
.x14d_c00070{left:613.800000px;}
.x10a_c00070{left:615.750000px;}
.xc9_c00070{left:617.550000px;}
.x14b_c00070{left:621.000000px;}
.xf0_c00070{left:622.050000px;}
.xcf_c00070{left:624.000000px;}
.xb3_c00070{left:625.800000px;}
.xf6_c00070{left:628.200000px;}
.xdc_c00070{left:629.850000px;}
.xe1_c00070{left:630.900000px;}
.x113_c00070{left:632.100000px;}
.xd4_c00070{left:633.300000px;}
.x106_c00070{left:634.950000px;}
.x145_c00070{left:637.500000px;}
.xc2_c00070{left:639.600000px;}
.x117_c00070{left:641.700000px;}
.x128_c00070{left:643.800000px;}
.xfa_c00070{left:645.150000px;}
.xf2_c00070{left:646.500000px;}
.xeb_c00070{left:647.550000px;}
.xaa_c00070{left:649.050000px;}
.xfe_c00070{left:651.750000px;}
.xd5_c00070{left:654.600000px;}
.x139_c00070{left:657.000000px;}
.xbe_c00070{left:658.050000px;}
.xe2_c00070{left:660.450000px;}
.xb4_c00070{left:663.300000px;}
.x121_c00070{left:664.650000px;}
.xab_c00070{left:666.300000px;}
.x12c_c00070{left:667.650000px;}
.xe6_c00070{left:668.850000px;}
.xca_c00070{left:670.050000px;}
.x13d_c00070{left:672.300000px;}
.xf1_c00070{left:674.250000px;}
.x10b_c00070{left:676.200000px;}
.x11e_c00070{left:677.700000px;}
.xd0_c00070{left:680.100000px;}
.xf3_c00070{left:681.450000px;}
.x147_c00070{left:682.800000px;}
.xbf_c00070{left:688.950000px;}
.x12a_c00070{left:690.600000px;}
.x107_c00070{left:693.900000px;}
.x141_c00070{left:695.550000px;}
.xff_c00070{left:697.050000px;}
.x118_c00070{left:699.300000px;}
.x13f_c00070{left:700.950000px;}
.x12d_c00070{left:702.150000px;}
.xac_c00070{left:704.850000px;}
.x135_c00070{left:706.500000px;}
.x125_c00070{left:708.450000px;}
.xec_c00070{left:710.100000px;}
.x10c_c00070{left:715.050000px;}
.x136_c00070{left:717.300000px;}
.xdd_c00070{left:719.550000px;}
.x122_c00070{left:721.500000px;}
.xc3_c00070{left:722.700000px;}
.xed_c00070{left:724.200000px;}
.x11f_c00070{left:725.850000px;}
.x108_c00070{left:727.050000px;}
.xe7_c00070{left:729.450000px;}
.xad_c00070{left:731.550000px;}
.x12b_c00070{left:733.500000px;}
.xb5_c00070{left:734.550000px;}
.xe8_c00070{left:737.700000px;}
.xc4_c00070{left:740.400000px;}
.xee_c00070{left:741.450000px;}
.x143_c00070{left:742.650000px;}
.xcb_c00070{left:744.150000px;}
.x146_c00070{left:746.850000px;}
.x133_c00070{left:747.900000px;}
.x12f_c00070{left:749.250000px;}
.x13a_c00070{left:750.300000px;}
.x103_c00070{left:751.650000px;}
.xae_c00070{left:752.850000px;}
.x115_c00070{left:754.050000px;}
.x2_c00070{left:755.550000px;}
.xb6_c00070{left:758.700000px;}
.x104_c00070{left:759.900000px;}
.xd6_c00070{left:761.100000px;}
.x13e_c00070{left:763.500000px;}
.x140_c00070{left:764.700000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws5_c00070{word-spacing:-5.765766pt;}
.ws7_c00070{word-spacing:-4.691358pt;}
.ws2_c00070{word-spacing:-4.444444pt;}
.ws6_c00070{word-spacing:-4.197531pt;}
.ws1_c00070{word-spacing:-0.611318pt;}
.wsc_c00070{word-spacing:0.000000pt;}
.ws9_c00070{word-spacing:4.210526pt;}
.ws0_c00070{word-spacing:15.777179pt;}
.ws3_c00070{word-spacing:26.031746pt;}
.ws4_c00070{word-spacing:36.790123pt;}
.wsa_c00070{word-spacing:47.152616pt;}
.ws8_c00070{word-spacing:213.629630pt;}
.wsb_c00070{word-spacing:621.231552pt;}
._0_c00070{width:703.491094pt;}
.fs7_c00070{font-size:16.000000pt;}
.fs1_c00070{font-size:26.666667pt;}
.fs4_c00070{font-size:37.333333pt;}
.fs6_c00070{font-size:42.666667pt;}
.fs9_c00070{font-size:48.000000pt;}
.fs5_c00070{font-size:53.333333pt;}
.fs2_c00070{font-size:58.666667pt;}
.fs3_c00070{font-size:64.000000pt;}
.fs8_c00070{font-size:69.333333pt;}
.fs0_c00070{font-size:74.666667pt;}
.y0_c00070{bottom:0.000000pt;}
.y73_c00070{bottom:166.000000pt;}
.y3a_c00070{bottom:166.400000pt;}
.y72_c00070{bottom:182.000000pt;}
.y39_c00070{bottom:182.400000pt;}
.y71_c00070{bottom:194.800000pt;}
.y70_c00070{bottom:198.000000pt;}
.y38_c00070{bottom:198.400000pt;}
.y6f_c00070{bottom:214.000000pt;}
.y37_c00070{bottom:214.400000pt;}
.y36_c00070{bottom:230.133333pt;}
.y6e_c00070{bottom:230.266667pt;}
.y6d_c00070{bottom:239.600000pt;}
.y6c_c00070{bottom:246.000000pt;}
.y35_c00070{bottom:246.133333pt;}
.y6b_c00070{bottom:262.000000pt;}
.y34_c00070{bottom:262.133333pt;}
.y6a_c00070{bottom:278.266667pt;}
.y33_c00070{bottom:278.400000pt;}
.y32_c00070{bottom:293.733333pt;}
.y69_c00070{bottom:294.000000pt;}
.y31_c00070{bottom:309.733333pt;}
.y68_c00070{bottom:310.000000pt;}
.y30_c00070{bottom:325.466667pt;}
.y67_c00070{bottom:325.733333pt;}
.y66_c00070{bottom:336.933333pt;}
.y65_c00070{bottom:341.733333pt;}
.y2f_c00070{bottom:344.133333pt;}
.y2e_c00070{bottom:349.200000pt;}
.y64_c00070{bottom:357.466667pt;}
.y2d_c00070{bottom:365.200000pt;}
.y63_c00070{bottom:367.733333pt;}
.y62_c00070{bottom:373.466667pt;}
.y2c_c00070{bottom:380.933333pt;}
.y61_c00070{bottom:389.733333pt;}
.y2b_c00070{bottom:397.200000pt;}
.y60_c00070{bottom:405.466667pt;}
.y2a_c00070{bottom:413.200000pt;}
.y5f_c00070{bottom:421.733333pt;}
.y29_c00070{bottom:425.333333pt;}
.y28_c00070{bottom:428.800000pt;}
.y5e_c00070{bottom:437.466667pt;}
.y27_c00070{bottom:444.800000pt;}
.y5d_c00070{bottom:451.600000pt;}
.y5c_c00070{bottom:455.466667pt;}
.y26_c00070{bottom:455.733333pt;}
.y25_c00070{bottom:461.066667pt;}
.y5b_c00070{bottom:468.533333pt;}
.y24_c00070{bottom:476.800000pt;}
.y5a_c00070{bottom:481.333333pt;}
.y23_c00070{bottom:492.800000pt;}
.y59_c00070{bottom:494.133333pt;}
.y58_c00070{bottom:506.933333pt;}
.y22_c00070{bottom:508.800000pt;}
.y57_c00070{bottom:520.000000pt;}
.y21_c00070{bottom:524.800000pt;}
.y56_c00070{bottom:531.200000pt;}
.y20_c00070{bottom:540.800000pt;}
.y55_c00070{bottom:549.066667pt;}
.y1f_c00070{bottom:556.800000pt;}
.y54_c00070{bottom:565.066667pt;}
.y1e_c00070{bottom:572.800000pt;}
.y53_c00070{bottom:588.800000pt;}
.y1d_c00070{bottom:595.600000pt;}
.y52_c00070{bottom:605.066667pt;}
.y1c_c00070{bottom:608.666667pt;}
.y1b_c00070{bottom:621.066667pt;}
.y51_c00070{bottom:621.333333pt;}
.y1a_c00070{bottom:634.266667pt;}
.y50_c00070{bottom:636.400000pt;}
.y19_c00070{bottom:647.333333pt;}
.y4f_c00070{bottom:652.400000pt;}
.y18_c00070{bottom:659.866667pt;}
.y4e_c00070{bottom:668.133333pt;}
.y17_c00070{bottom:671.066667pt;}
.y16_c00070{bottom:685.066667pt;}
.y4d_c00070{bottom:688.266667pt;}
.y15_c00070{bottom:701.466667pt;}
.y4c_c00070{bottom:716.133333pt;}
.y14_c00070{bottom:724.800000pt;}
.y4b_c00070{bottom:731.866667pt;}
.y13_c00070{bottom:741.066667pt;}
.y4a_c00070{bottom:748.133333pt;}
.y12_c00070{bottom:757.066667pt;}
.y49_c00070{bottom:764.800000pt;}
.y11_c00070{bottom:773.066667pt;}
.y48_c00070{bottom:779.866667pt;}
.y10_c00070{bottom:788.800000pt;}
.y47_c00070{bottom:796.133333pt;}
.yf_c00070{bottom:805.066667pt;}
.y46_c00070{bottom:812.800000pt;}
.ye_c00070{bottom:820.800000pt;}
.y45_c00070{bottom:836.533333pt;}
.yd_c00070{bottom:836.800000pt;}
.y44_c00070{bottom:852.800000pt;}
.yc_c00070{bottom:853.066667pt;}
.yb_c00070{bottom:869.066667pt;}
.y43_c00070{bottom:876.400000pt;}
.ya_c00070{bottom:884.800000pt;}
.y42_c00070{bottom:892.666667pt;}
.y41_c00070{bottom:908.400000pt;}
.y9_c00070{bottom:908.800000pt;}
.y40_c00070{bottom:924.133333pt;}
.y8_c00070{bottom:924.533333pt;}
.y3f_c00070{bottom:944.266667pt;}
.y3e_c00070{bottom:951.600000pt;}
.y7_c00070{bottom:952.666667pt;}
.y3d_c00070{bottom:960.266667pt;}
.y6_c00070{bottom:968.400000pt;}
.y3c_c00070{bottom:980.133333pt;}
.y5_c00070{bottom:984.400000pt;}
.y3b_c00070{bottom:996.133333pt;}
.y4_c00070{bottom:1000.666667pt;}
.y2_c00070{bottom:1016.666667pt;}
.y1_c00070{bottom:1022.133333pt;}
.y3_c00070{bottom:1125.733333pt;}
.h9_c00070{height:16.000000pt;}
.h3_c00070{height:26.666667pt;}
.h6_c00070{height:37.333333pt;}
.h8_c00070{height:42.666667pt;}
.hb_c00070{height:48.000000pt;}
.h7_c00070{height:53.333333pt;}
.h4_c00070{height:58.666667pt;}
.h5_c00070{height:64.000000pt;}
.ha_c00070{height:69.333333pt;}
.h2_c00070{height:74.666667pt;}
.h0_c00070{height:1129.280029pt;}
.h1_c00070{height:1129.333333pt;}
.w0_c00070{width:843.200032pt;}
.w1_c00070{width:843.333333pt;}
.x0_c00070{left:0.000000pt;}
.x72_c00070{left:61.733333pt;}
.x61_c00070{left:63.066667pt;}
.x22_c00070{left:65.333333pt;}
.x23_c00070{left:74.266667pt;}
.xa5_c00070{left:77.066667pt;}
.xa0_c00070{left:78.133333pt;}
.x82_c00070{left:79.200000pt;}
.x6_c00070{left:80.266667pt;}
.x1c_c00070{left:81.600000pt;}
.x2f_c00070{left:82.666667pt;}
.x62_c00070{left:87.733333pt;}
.x69_c00070{left:91.200000pt;}
.x87_c00070{left:94.666667pt;}
.x1d_c00070{left:96.666667pt;}
.x24_c00070{left:99.866667pt;}
.x58_c00070{left:102.133333pt;}
.x13_c00070{left:103.333333pt;}
.x97_c00070{left:105.066667pt;}
.x63_c00070{left:107.200000pt;}
.x2a_c00070{left:108.800000pt;}
.x6f_c00070{left:111.066667pt;}
.x14_c00070{left:113.200000pt;}
.x4e_c00070{left:115.466667pt;}
.x5c_c00070{left:117.600000pt;}
.x41_c00070{left:120.400000pt;}
.x88_c00070{left:121.866667pt;}
.x92_c00070{left:123.066667pt;}
.xf_c00070{left:124.266667pt;}
.x30_c00070{left:126.533333pt;}
.x7f_c00070{left:128.400000pt;}
.x6a_c00070{left:129.600000pt;}
.x1e_c00070{left:131.200000pt;}
.x25_c00070{left:132.533333pt;}
.x4f_c00070{left:134.400000pt;}
.x71_c00070{left:135.466667pt;}
.x7b_c00070{left:138.666667pt;}
.x56_c00070{left:140.000000pt;}
.x15_c00070{left:142.000000pt;}
.x36_c00070{left:143.866667pt;}
.x83_c00070{left:145.466667pt;}
.x31_c00070{left:146.666667pt;}
.x67_c00070{left:148.266667pt;}
.x3b_c00070{left:149.866667pt;}
.x5d_c00070{left:151.466667pt;}
.x48_c00070{left:154.133333pt;}
.x81_c00070{left:155.600000pt;}
.x77_c00070{left:156.666667pt;}
.x7_c00070{left:157.733333pt;}
.x2b_c00070{left:158.666667pt;}
.x89_c00070{left:159.600000pt;}
.x3c_c00070{left:161.733333pt;}
.x1f_c00070{left:164.133333pt;}
.x16_c00070{left:165.733333pt;}
.x64_c00070{left:166.666667pt;}
.x5e_c00070{left:170.000000pt;}
.x8_c00070{left:171.866667pt;}
.x50_c00070{left:173.066667pt;}
.x42_c00070{left:177.733333pt;}
.x2c_c00070{left:179.733333pt;}
.x9e_c00070{left:183.733333pt;}
.x9_c00070{left:184.666667pt;}
.x73_c00070{left:186.933333pt;}
.x8f_c00070{left:187.866667pt;}
.x3d_c00070{left:188.933333pt;}
.x84_c00070{left:190.533333pt;}
.x59_c00070{left:191.466667pt;}
.x98_c00070{left:193.066667pt;}
.x32_c00070{left:194.666667pt;}
.x3_c00070{left:196.800000pt;}
.x5f_c00070{left:198.800000pt;}
.x26_c00070{left:200.000000pt;}
.x37_c00070{left:202.400000pt;}
.x10_c00070{left:204.000000pt;}
.x17_c00070{left:205.733333pt;}
.x65_c00070{left:209.600000pt;}
.xa3_c00070{left:210.933333pt;}
.x94_c00070{left:212.800000pt;}
.x8b_c00070{left:215.066667pt;}
.x4_c00070{left:216.000000pt;}
.x74_c00070{left:217.066667pt;}
.x33_c00070{left:218.666667pt;}
.x20_c00070{left:221.466667pt;}
.x60_c00070{left:223.066667pt;}
.xa_c00070{left:224.000000pt;}
.x99_c00070{left:225.733333pt;}
.x2d_c00070{left:227.200000pt;}
.x75_c00070{left:229.600000pt;}
.x52_c00070{left:230.533333pt;}
.x95_c00070{left:232.266667pt;}
.x49_c00070{left:233.866667pt;}
.x18_c00070{left:237.066667pt;}
.x53_c00070{left:239.866667pt;}
.xa1_c00070{left:242.000000pt;}
.x21_c00070{left:243.866667pt;}
.x38_c00070{left:244.933333pt;}
.x11_c00070{left:246.533333pt;}
.x19_c00070{left:248.266667pt;}
.x5_c00070{left:250.266667pt;}
.x7c_c00070{left:251.333333pt;}
.x54_c00070{left:253.333333pt;}
.x8c_c00070{left:254.800000pt;}
.xb_c00070{left:255.733333pt;}
.x9b_c00070{left:256.933333pt;}
.x80_c00070{left:258.266667pt;}
.x6b_c00070{left:259.200000pt;}
.x4a_c00070{left:260.133333pt;}
.x27_c00070{left:261.733333pt;}
.x96_c00070{left:263.066667pt;}
.x7d_c00070{left:264.800000pt;}
.xc_c00070{left:266.666667pt;}
.x86_c00070{left:268.666667pt;}
.x43_c00070{left:270.533333pt;}
.x34_c00070{left:272.133333pt;}
.x28_c00070{left:273.200000pt;}
.x39_c00070{left:276.000000pt;}
.x9c_c00070{left:278.000000pt;}
.x6c_c00070{left:279.333333pt;}
.x55_c00070{left:280.533333pt;}
.x1a_c00070{left:281.600000pt;}
.x4b_c00070{left:282.800000pt;}
.x90_c00070{left:284.266667pt;}
.x1_c00070{left:285.733333pt;}
.x76_c00070{left:288.133333pt;}
.x44_c00070{left:291.066667pt;}
.x35_c00070{left:292.666667pt;}
.x8a_c00070{left:294.000000pt;}
.xa2_c00070{left:295.466667pt;}
.x5a_c00070{left:296.800000pt;}
.x91_c00070{left:298.133333pt;}
.x7e_c00070{left:300.266667pt;}
.x6e_c00070{left:303.200000pt;}
.x3a_c00070{left:304.133333pt;}
.x57_c00070{left:306.000000pt;}
.x45_c00070{left:307.733333pt;}
.x2e_c00070{left:312.400000pt;}
.x66_c00070{left:314.266667pt;}
.x78_c00070{left:316.266667pt;}
.x9d_c00070{left:317.333333pt;}
.x12_c00070{left:318.266667pt;}
.x3e_c00070{left:320.133333pt;}
.xd_c00070{left:321.733333pt;}
.x68_c00070{left:323.466667pt;}
.x70_c00070{left:325.600000pt;}
.x4c_c00070{left:327.600000pt;}
.x8e_c00070{left:328.933333pt;}
.x6d_c00070{left:330.133333pt;}
.x79_c00070{left:331.600000pt;}
.x3f_c00070{left:335.466667pt;}
.x46_c00070{left:336.533333pt;}
.x5b_c00070{left:337.733333pt;}
.x51_c00070{left:339.466667pt;}
.x9a_c00070{left:340.933333pt;}
.xe_c00070{left:342.266667pt;}
.x9f_c00070{left:345.066667pt;}
.x8d_c00070{left:346.000000pt;}
.x93_c00070{left:347.466667pt;}
.x29_c00070{left:350.000000pt;}
.x1b_c00070{left:351.733333pt;}
.x47_c00070{left:354.400000pt;}
.x40_c00070{left:355.333333pt;}
.xa4_c00070{left:356.400000pt;}
.x4d_c00070{left:358.000000pt;}
.x85_c00070{left:362.400000pt;}
.x7a_c00070{left:363.333333pt;}
.x116_c00070{left:384.533333pt;}
.xd8_c00070{left:385.600000pt;}
.xd1_c00070{left:386.533333pt;}
.xb8_c00070{left:387.466667pt;}
.x11c_c00070{left:396.800000pt;}
.xd9_c00070{left:398.666667pt;}
.x100_c00070{left:400.133333pt;}
.xde_c00070{left:401.466667pt;}
.xc5_c00070{left:402.400000pt;}
.xa6_c00070{left:403.466667pt;}
.x142_c00070{left:407.333333pt;}
.x119_c00070{left:409.866667pt;}
.xda_c00070{left:414.666667pt;}
.xb7_c00070{left:415.866667pt;}
.xe9_c00070{left:417.333333pt;}
.xb0_c00070{left:419.200000pt;}
.x129_c00070{left:422.533333pt;}
.x110_c00070{left:426.800000pt;}
.xcc_c00070{left:428.400000pt;}
.x11d_c00070{left:429.333333pt;}
.x13b_c00070{left:431.200000pt;}
.x101_c00070{left:432.133333pt;}
.xc6_c00070{left:435.066667pt;}
.x137_c00070{left:436.266667pt;}
.x14a_c00070{left:437.200000pt;}
.xe3_c00070{left:440.800000pt;}
.x10d_c00070{left:442.000000pt;}
.xa7_c00070{left:443.200000pt;}
.x109_c00070{left:444.400000pt;}
.xb9_c00070{left:446.666667pt;}
.xd2_c00070{left:448.000000pt;}
.x11a_c00070{left:449.200000pt;}
.xdf_c00070{left:450.400000pt;}
.xc0_c00070{left:452.666667pt;}
.x138_c00070{left:454.133333pt;}
.x148_c00070{left:456.133333pt;}
.x130_c00070{left:457.066667pt;}
.xcd_c00070{left:458.133333pt;}
.x123_c00070{left:459.600000pt;}
.xb1_c00070{left:460.800000pt;}
.xd7_c00070{left:462.533333pt;}
.x134_c00070{left:464.133333pt;}
.xba_c00070{left:467.200000pt;}
.x126_c00070{left:468.266667pt;}
.x144_c00070{left:470.000000pt;}
.x131_c00070{left:471.733333pt;}
.x14c_c00070{left:475.466667pt;}
.x10e_c00070{left:476.533333pt;}
.x114_c00070{left:478.133333pt;}
.xf4_c00070{left:479.333333pt;}
.x149_c00070{left:480.400000pt;}
.xa8_c00070{left:481.866667pt;}
.xd3_c00070{left:483.200000pt;}
.xaf_c00070{left:486.133333pt;}
.x111_c00070{left:487.600000pt;}
.xdb_c00070{left:488.533333pt;}
.xbb_c00070{left:489.600000pt;}
.xf7_c00070{left:490.933333pt;}
.x124_c00070{left:492.533333pt;}
.xc7_c00070{left:494.266667pt;}
.xe4_c00070{left:495.466667pt;}
.xfb_c00070{left:500.666667pt;}
.xce_c00070{left:503.200000pt;}
.x132_c00070{left:504.666667pt;}
.xe5_c00070{left:505.733333pt;}
.x11b_c00070{left:507.066667pt;}
.x13c_c00070{left:508.000000pt;}
.x120_c00070{left:508.933333pt;}
.xf5_c00070{left:510.133333pt;}
.x10f_c00070{left:511.466667pt;}
.xbc_c00070{left:512.933333pt;}
.xc1_c00070{left:514.400000pt;}
.xc8_c00070{left:515.333333pt;}
.xf8_c00070{left:516.266667pt;}
.xe0_c00070{left:517.866667pt;}
.xfc_c00070{left:519.866667pt;}
.x102_c00070{left:522.400000pt;}
.xea_c00070{left:524.400000pt;}
.x105_c00070{left:525.333333pt;}
.xb2_c00070{left:529.333333pt;}
.x112_c00070{left:530.533333pt;}
.x127_c00070{left:533.866667pt;}
.xbd_c00070{left:535.066667pt;}
.x12e_c00070{left:536.000000pt;}
.xa9_c00070{left:537.200000pt;}
.xef_c00070{left:538.800000pt;}
.xfd_c00070{left:542.533333pt;}
.xf9_c00070{left:544.400000pt;}
.x14d_c00070{left:545.600000pt;}
.x10a_c00070{left:547.333333pt;}
.xc9_c00070{left:548.933333pt;}
.x14b_c00070{left:552.000000pt;}
.xf0_c00070{left:552.933333pt;}
.xcf_c00070{left:554.666667pt;}
.xb3_c00070{left:556.266667pt;}
.xf6_c00070{left:558.400000pt;}
.xdc_c00070{left:559.866667pt;}
.xe1_c00070{left:560.800000pt;}
.x113_c00070{left:561.866667pt;}
.xd4_c00070{left:562.933333pt;}
.x106_c00070{left:564.400000pt;}
.x145_c00070{left:566.666667pt;}
.xc2_c00070{left:568.533333pt;}
.x117_c00070{left:570.400000pt;}
.x128_c00070{left:572.266667pt;}
.xfa_c00070{left:573.466667pt;}
.xf2_c00070{left:574.666667pt;}
.xeb_c00070{left:575.600000pt;}
.xaa_c00070{left:576.933333pt;}
.xfe_c00070{left:579.333333pt;}
.xd5_c00070{left:581.866667pt;}
.x139_c00070{left:584.000000pt;}
.xbe_c00070{left:584.933333pt;}
.xe2_c00070{left:587.066667pt;}
.xb4_c00070{left:589.600000pt;}
.x121_c00070{left:590.800000pt;}
.xab_c00070{left:592.266667pt;}
.x12c_c00070{left:593.466667pt;}
.xe6_c00070{left:594.533333pt;}
.xca_c00070{left:595.600000pt;}
.x13d_c00070{left:597.600000pt;}
.xf1_c00070{left:599.333333pt;}
.x10b_c00070{left:601.066667pt;}
.x11e_c00070{left:602.400000pt;}
.xd0_c00070{left:604.533333pt;}
.xf3_c00070{left:605.733333pt;}
.x147_c00070{left:606.933333pt;}
.xbf_c00070{left:612.400000pt;}
.x12a_c00070{left:613.866667pt;}
.x107_c00070{left:616.800000pt;}
.x141_c00070{left:618.266667pt;}
.xff_c00070{left:619.600000pt;}
.x118_c00070{left:621.600000pt;}
.x13f_c00070{left:623.066667pt;}
.x12d_c00070{left:624.133333pt;}
.xac_c00070{left:626.533333pt;}
.x135_c00070{left:628.000000pt;}
.x125_c00070{left:629.733333pt;}
.xec_c00070{left:631.200000pt;}
.x10c_c00070{left:635.600000pt;}
.x136_c00070{left:637.600000pt;}
.xdd_c00070{left:639.600000pt;}
.x122_c00070{left:641.333333pt;}
.xc3_c00070{left:642.400000pt;}
.xed_c00070{left:643.733333pt;}
.x11f_c00070{left:645.200000pt;}
.x108_c00070{left:646.266667pt;}
.xe7_c00070{left:648.400000pt;}
.xad_c00070{left:650.266667pt;}
.x12b_c00070{left:652.000000pt;}
.xb5_c00070{left:652.933333pt;}
.xe8_c00070{left:655.733333pt;}
.xc4_c00070{left:658.133333pt;}
.xee_c00070{left:659.066667pt;}
.x143_c00070{left:660.133333pt;}
.xcb_c00070{left:661.466667pt;}
.x146_c00070{left:663.866667pt;}
.x133_c00070{left:664.800000pt;}
.x12f_c00070{left:666.000000pt;}
.x13a_c00070{left:666.933333pt;}
.x103_c00070{left:668.133333pt;}
.xae_c00070{left:669.200000pt;}
.x115_c00070{left:670.266667pt;}
.x2_c00070{left:671.600000pt;}
.xb6_c00070{left:674.400000pt;}
.x104_c00070{left:675.466667pt;}
.xd6_c00070{left:676.533333pt;}
.x13e_c00070{left:678.666667pt;}
.x140_c00070{left:679.733333pt;}
}





/* 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_c00071 {
    display:none;
  }
  .loading-indicator_c00071.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00071 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_c00071 { 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_c00071" -> "#page-container .classname_c00071")
 */
.pf_c00071 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00071 { /* 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_c00071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00071 { /* 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_c00071 { /* 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_c00071 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00071 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00071 {overflow:visible;}
  }
}
.c_c00071 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00071 { /* 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_c00071:after { /* webkit #35443 */
  content: '';
}
.t_c00071:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00071 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 */
}
.__c00071 { /* 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_c00071 { /* info for Javascript */
  display:none;
}
.l_c00071 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00071 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00071 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00071: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_c00071 {
    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_c00071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00071.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_c00071 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00071;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.000000;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;}
.m77_c00071{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00071{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00071{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00071{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m13_c00071{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00071{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me6_c00071{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00071{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00071{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00071{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00071{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9_c00071{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m85_c00071{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mef_c00071{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m63_c00071{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00071{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m87_c00071{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m44_c00071{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00071{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m105_c00071{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00071{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m101_c00071{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00071{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.md5_c00071{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00071{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00071{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00071{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md4_c00071{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00071{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m64_c00071{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00071{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00071{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mea_c00071{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m53_c00071{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m20_c00071{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00071{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m82_c00071{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m27_c00071{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7_c00071{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00071{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00071{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m18_c00071{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00071{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m116_c00071{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00071{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m52_c00071{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00071{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00071{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00071{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m56_c00071{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00071{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m117_c00071{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m19_c00071{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00071{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00071{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m22_c00071{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m112_c00071{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00071{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m61_c00071{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m39_c00071{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m113_c00071{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00071{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00071{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00071{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m98_c00071{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m34_c00071{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6_c00071{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m76_c00071{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m36_c00071{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m99_c00071{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00071{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00071{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m81_c00071{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m107_c00071{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mba_c00071{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m33_c00071{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m12_c00071{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m109_c00071{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mac_c00071{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00071{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00071{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m47_c00071{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m37_c00071{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00071{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00071{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m65_c00071{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00071{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m111_c00071{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m93_c00071{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00071{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00071{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00071{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00071{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m51_c00071{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00071{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00071{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00071{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m66_c00071{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m67_c00071{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m72_c00071{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me7_c00071{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mde_c00071{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00071{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00071{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m40_c00071{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00071{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m35_c00071{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m92_c00071{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m54_c00071{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m30_c00071{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00071{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00071{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00071{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.me5_c00071{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m90_c00071{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m23_c00071{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m17_c00071{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m32_c00071{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8_c00071{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00071{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00071{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m83_c00071{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00071{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m57_c00071{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00071{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m26_c00071{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00071{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m106_c00071{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00071{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m70_c00071{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m21_c00071{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m38_c00071{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00071{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m80_c00071{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m100_c00071{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00071{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m50_c00071{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m58_c00071{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md6_c00071{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00071{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00071{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00071{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00071{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mda_c00071{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00071{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00071{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m62_c00071{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00071{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m55_c00071{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5_c00071{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me0_c00071{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mab_c00071{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me9_c00071{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m31_c00071{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00071{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00071{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md2_c00071{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00071{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00071{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00071{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m15_c00071{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m115_c00071{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.md3_c00071{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00071{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m16_c00071{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00071{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00071{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00071{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb_c00071{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00071{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m42_c00071{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m43_c00071{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00071{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m95_c00071{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me1_c00071{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00071{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m28_c00071{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md7_c00071{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00071{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma_c00071{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00071{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00071{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00071{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00071{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m103_c00071{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00071{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me_c00071{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m41_c00071{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m11_c00071{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m59_c00071{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.maa_c00071{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m97_c00071{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m114_c00071{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m86_c00071{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00071{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m94_c00071{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m49_c00071{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00071{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00071{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc_c00071{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00071{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00071{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m110_c00071{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m96_c00071{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00071{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf_c00071{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00071{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m25_c00071{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m74_c00071{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mec_c00071{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00071{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m14_c00071{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.meb_c00071{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00071{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m118_c00071{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m0_c00071{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m88_c00071{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m104_c00071{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m46_c00071{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m75_c00071{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m45_c00071{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.md_c00071{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m24_c00071{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00071{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00071{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10_c00071{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00071{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.maf_c00071{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m119_c00071{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m60_c00071{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me2_c00071{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m84_c00071{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.med_c00071{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);}
.m73_c00071{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mad_c00071{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m29_c00071{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mae_c00071{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mca_c00071{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00071{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m89_c00071{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00071{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.me8_c00071{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md8_c00071{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00071{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mff_c00071{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mce_c00071{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mee_c00071{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m68_c00071{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00071{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00071{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m108_c00071{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00071{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00071{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00071{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00071{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m79_c00071{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00071{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00071{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.me4_c00071{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00071{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m91_c00071{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.md1_c00071{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00071{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m102_c00071{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m69_c00071{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m48_c00071{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00071{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00071{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00071{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m78_c00071{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00071{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.me3_c00071{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00071{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00071{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00071{transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);}
.md0_c00071{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00071{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00071{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m71_c00071{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.md9_c00071{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00071{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls0_c00071{letter-spacing:0.000000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{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__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00071{word-spacing:-13.009281px;}
.ws4_c00071{word-spacing:-9.210526px;}
.wsa_c00071{word-spacing:-1.425743px;}
.wsb_c00071{word-spacing:0.000000px;}
.ws9_c00071{word-spacing:1.292096px;}
.ws1_c00071{word-spacing:5.243902px;}
.ws0_c00071{word-spacing:18.661891px;}
.ws7_c00071{word-spacing:22.142857px;}
.ws6_c00071{word-spacing:40.000000px;}
.ws5_c00071{word-spacing:44.166667px;}
.ws2_c00071{word-spacing:65.000000px;}
.ws8_c00071{word-spacing:704.583333px;}
._0_c00071{width:59.285714px;}
.fc0_c00071{color:transparent;}
.fs4_c00071{font-size:48.000000px;}
.fs5_c00071{font-size:54.000000px;}
.fs3_c00071{font-size:60.000000px;}
.fs2_c00071{font-size:66.000000px;}
.fs6_c00071{font-size:72.000000px;}
.fs0_c00071{font-size:84.000000px;}
.fs1_c00071{font-size:120.000000px;}
.y0_c00071{bottom:0.000000px;}
.y6b_c00071{bottom:182.100000px;}
.y6a_c00071{bottom:200.100000px;}
.y35_c00071{bottom:200.850000px;}
.y34_c00071{bottom:215.250000px;}
.y69_c00071{bottom:217.350000px;}
.y33_c00071{bottom:229.650000px;}
.y68_c00071{bottom:235.050000px;}
.y32_c00071{bottom:244.050000px;}
.y67_c00071{bottom:252.750000px;}
.y66_c00071{bottom:275.100000px;}
.y31_c00071{bottom:289.800000px;}
.y65_c00071{bottom:293.100000px;}
.y30_c00071{bottom:307.500000px;}
.y64_c00071{bottom:311.400000px;}
.y2f_c00071{bottom:325.200000px;}
.y63_c00071{bottom:329.100000px;}
.y2e_c00071{bottom:342.900000px;}
.y62_c00071{bottom:347.100000px;}
.y2d_c00071{bottom:360.600000px;}
.y61_c00071{bottom:365.100000px;}
.y2c_c00071{bottom:378.300000px;}
.y60_c00071{bottom:383.100000px;}
.y2b_c00071{bottom:396.000000px;}
.y5f_c00071{bottom:401.400000px;}
.y2a_c00071{bottom:414.000000px;}
.y5e_c00071{bottom:419.100000px;}
.y29_c00071{bottom:432.300000px;}
.y5d_c00071{bottom:437.100000px;}
.y28_c00071{bottom:450.000000px;}
.y5c_c00071{bottom:455.100000px;}
.y27_c00071{bottom:468.000000px;}
.y5b_c00071{bottom:472.800000px;}
.y26_c00071{bottom:486.000000px;}
.y5a_c00071{bottom:490.800000px;}
.y25_c00071{bottom:501.450000px;}
.y59_c00071{bottom:508.800000px;}
.y24_c00071{bottom:517.650000px;}
.y58_c00071{bottom:526.800000px;}
.y23_c00071{bottom:532.050000px;}
.y22_c00071{bottom:544.650000px;}
.y57_c00071{bottom:545.100000px;}
.y21_c00071{bottom:558.750000px;}
.y56_c00071{bottom:563.100000px;}
.y20_c00071{bottom:576.750000px;}
.y55_c00071{bottom:581.100000px;}
.y1f_c00071{bottom:595.800000px;}
.y54_c00071{bottom:599.100000px;}
.y1e_c00071{bottom:616.050000px;}
.y53_c00071{bottom:619.500000px;}
.y1d_c00071{bottom:634.350000px;}
.y52_c00071{bottom:635.700000px;}
.y51_c00071{bottom:650.850000px;}
.y1c_c00071{bottom:652.350000px;}
.y50_c00071{bottom:663.150000px;}
.y1b_c00071{bottom:675.000000px;}
.y4f_c00071{bottom:679.350000px;}
.y4e_c00071{bottom:692.250000px;}
.y1a_c00071{bottom:701.250000px;}
.y4d_c00071{bottom:708.450000px;}
.y4c_c00071{bottom:721.800000px;}
.y19_c00071{bottom:723.600000px;}
.y4b_c00071{bottom:738.750000px;}
.y18_c00071{bottom:745.500000px;}
.y4a_c00071{bottom:760.650000px;}
.y17_c00071{bottom:763.800000px;}
.y49_c00071{bottom:780.150000px;}
.y16_c00071{bottom:781.500000px;}
.y48_c00071{bottom:798.150000px;}
.y15_c00071{bottom:799.500000px;}
.y14_c00071{bottom:817.500000px;}
.y47_c00071{bottom:823.950000px;}
.y13_c00071{bottom:835.500000px;}
.y46_c00071{bottom:842.700000px;}
.y12_c00071{bottom:853.200000px;}
.y45_c00071{bottom:861.000000px;}
.y11_c00071{bottom:870.900000px;}
.y44_c00071{bottom:878.700000px;}
.y10_c00071{bottom:889.200000px;}
.y43_c00071{bottom:897.450000px;}
.yf_c00071{bottom:907.200000px;}
.y42_c00071{bottom:915.150000px;}
.ye_c00071{bottom:924.900000px;}
.y41_c00071{bottom:934.650000px;}
.yd_c00071{bottom:942.900000px;}
.y40_c00071{bottom:955.500000px;}
.yc_c00071{bottom:963.600000px;}
.y3f_c00071{bottom:980.400000px;}
.yb_c00071{bottom:982.350000px;}
.y3e_c00071{bottom:999.450000px;}
.ya_c00071{bottom:1000.650000px;}
.y9_c00071{bottom:1018.350000px;}
.y3d_c00071{bottom:1020.300000px;}
.y8_c00071{bottom:1036.350000px;}
.y3c_c00071{bottom:1037.850000px;}
.y7_c00071{bottom:1054.350000px;}
.y3b_c00071{bottom:1061.400000px;}
.y6_c00071{bottom:1072.050000px;}
.y3a_c00071{bottom:1080.450000px;}
.y5_c00071{bottom:1092.000000px;}
.y39_c00071{bottom:1099.500000px;}
.y4_c00071{bottom:1112.100000px;}
.y38_c00071{bottom:1116.750000px;}
.y3_c00071{bottom:1130.400000px;}
.y36_c00071{bottom:1132.200000px;}
.y37_c00071{bottom:1134.750000px;}
.y1_c00071{bottom:1153.500000px;}
.y2_c00071{bottom:1158.600000px;}
.h6_c00071{height:48.000000px;}
.h7_c00071{height:54.000000px;}
.h5_c00071{height:60.000000px;}
.h4_c00071{height:66.000000px;}
.h8_c00071{height:72.000000px;}
.h2_c00071{height:84.000000px;}
.h3_c00071{height:120.000000px;}
.h0_c00071{height:1280.160003px;}
.h1_c00071{height:1280.250000px;}
.w0_c00071{width:948.600036px;}
.w1_c00071{width:948.750000px;}
.x0_c00071{left:0.000000px;}
.x1_c00071{left:180.300000px;}
.x72_c00071{left:186.000000px;}
.x76_c00071{left:187.200000px;}
.xa2_c00071{left:189.450000px;}
.x77_c00071{left:195.450000px;}
.x9e_c00071{left:198.300000px;}
.x3_c00071{left:199.500000px;}
.x12_c00071{left:201.150000px;}
.x5b_c00071{left:202.500000px;}
.x71_c00071{left:203.700000px;}
.x89_c00071{left:205.950000px;}
.x91_c00071{left:207.000000px;}
.x86_c00071{left:215.100000px;}
.x78_c00071{left:217.350000px;}
.x13_c00071{left:218.850000px;}
.x16_c00071{left:221.100000px;}
.x7b_c00071{left:222.450000px;}
.xa3_c00071{left:226.950000px;}
.x62_c00071{left:228.000000px;}
.x14_c00071{left:229.950000px;}
.x1d_c00071{left:231.150000px;}
.x6d_c00071{left:233.700000px;}
.x50_c00071{left:236.550000px;}
.x3d_c00071{left:237.600000px;}
.x7f_c00071{left:239.100000px;}
.x68_c00071{left:240.150000px;}
.xb_c00071{left:241.350000px;}
.x82_c00071{left:243.450000px;}
.x32_c00071{left:245.400000px;}
.xa4_c00071{left:246.600000px;}
.x45_c00071{left:247.650000px;}
.x17_c00071{left:249.150000px;}
.x4_c00071{left:250.200000px;}
.x6e_c00071{left:251.400000px;}
.x79_c00071{left:253.350000px;}
.x73_c00071{left:255.300000px;}
.x15_c00071{left:257.700000px;}
.x37_c00071{left:260.550000px;}
.x9d_c00071{left:262.800000px;}
.x2c_c00071{left:263.850000px;}
.x51_c00071{left:265.650000px;}
.x5c_c00071{left:267.300000px;}
.x1e_c00071{left:269.700000px;}
.x83_c00071{left:271.200000px;}
.x8c_c00071{left:273.900000px;}
.x18_c00071{left:275.400000px;}
.x4c_c00071{left:276.450000px;}
.x3e_c00071{left:278.700000px;}
.x1f_c00071{left:279.750000px;}
.x9f_c00071{left:282.150000px;}
.x66_c00071{left:283.350000px;}
.x8d_c00071{left:285.150000px;}
.x33_c00071{left:287.550000px;}
.xc_c00071{left:288.900000px;}
.x85_c00071{left:290.700000px;}
.x74_c00071{left:292.050000px;}
.x8e_c00071{left:294.150000px;}
.x81_c00071{left:295.200000px;}
.x63_c00071{left:296.400000px;}
.x2d_c00071{left:298.350000px;}
.x5_c00071{left:299.550000px;}
.x52_c00071{left:303.150000px;}
.xa0_c00071{left:304.500000px;}
.x19_c00071{left:306.750000px;}
.x94_c00071{left:307.950000px;}
.x55_c00071{left:309.000000px;}
.x43_c00071{left:310.350000px;}
.x20_c00071{left:311.850000px;}
.x75_c00071{left:313.350000px;}
.x38_c00071{left:318.150000px;}
.xd_c00071{left:322.050000px;}
.x5d_c00071{left:325.950000px;}
.x3f_c00071{left:328.350000px;}
.x34_c00071{left:330.750000px;}
.x26_c00071{left:332.700000px;}
.x9c_c00071{left:334.200000px;}
.x56_c00071{left:335.250000px;}
.x6f_c00071{left:339.600000px;}
.x7c_c00071{left:343.800000px;}
.x46_c00071{left:346.950000px;}
.x39_c00071{left:348.000000px;}
.x53_c00071{left:350.250000px;}
.xe_c00071{left:351.900000px;}
.x1a_c00071{left:353.550000px;}
.x84_c00071{left:354.750000px;}
.x27_c00071{left:356.400000px;}
.x8a_c00071{left:359.250000px;}
.x97_c00071{left:361.050000px;}
.x47_c00071{left:362.100000px;}
.x5e_c00071{left:364.050000px;}
.x2e_c00071{left:365.700000px;}
.x6_c00071{left:367.200000px;}
.x92_c00071{left:368.550000px;}
.x4d_c00071{left:370.800000px;}
.x28_c00071{left:371.850000px;}
.x9a_c00071{left:374.100000px;}
.x1b_c00071{left:375.150000px;}
.xa1_c00071{left:376.950000px;}
.x95_c00071{left:378.600000px;}
.x48_c00071{left:380.400000px;}
.x21_c00071{left:381.750000px;}
.x7a_c00071{left:384.300000px;}
.x80_c00071{left:385.950000px;}
.xa5_c00071{left:387.750000px;}
.x90_c00071{left:388.950000px;}
.xf_c00071{left:391.500000px;}
.x7_c00071{left:393.900000px;}
.x40_c00071{left:394.950000px;}
.x2f_c00071{left:396.600000px;}
.x22_c00071{left:397.950000px;}
.x69_c00071{left:399.000000px;}
.x54_c00071{left:400.650000px;}
.x7d_c00071{left:404.100000px;}
.x64_c00071{left:405.750000px;}
.x93_c00071{left:408.900000px;}
.x35_c00071{left:412.800000px;}
.x4e_c00071{left:414.450000px;}
.x70_c00071{left:415.950000px;}
.x98_c00071{left:417.300000px;}
.x29_c00071{left:418.650000px;}
.x5f_c00071{left:419.850000px;}
.x3a_c00071{left:423.000000px;}
.x2_c00071{left:425.400000px;}
.x49_c00071{left:426.450000px;}
.x6a_c00071{left:428.850000px;}
.x96_c00071{left:431.100000px;}
.x57_c00071{left:432.450000px;}
.x8_c00071{left:435.300000px;}
.x99_c00071{left:437.100000px;}
.x8b_c00071{left:438.750000px;}
.x2a_c00071{left:440.550000px;}
.x58_c00071{left:441.750000px;}
.x23_c00071{left:443.250000px;}
.x4f_c00071{left:446.100000px;}
.x10_c00071{left:447.300000px;}
.x44_c00071{left:449.250000px;}
.x6b_c00071{left:450.750000px;}
.x24_c00071{left:453.000000px;}
.x60_c00071{left:454.050000px;}
.x41_c00071{left:455.400000px;}
.x3b_c00071{left:457.500000px;}
.x59_c00071{left:458.700000px;}
.x9_c00071{left:461.250000px;}
.x7e_c00071{left:463.050000px;}
.x36_c00071{left:467.100000px;}
.x11_c00071{left:468.600000px;}
.x30_c00071{left:469.650000px;}
.x25_c00071{left:470.700000px;}
.x87_c00071{left:473.550000px;}
.x2b_c00071{left:477.600000px;}
.x5a_c00071{left:480.000000px;}
.x4a_c00071{left:483.750000px;}
.x61_c00071{left:484.950000px;}
.x1c_c00071{left:487.800000px;}
.x65_c00071{left:490.350000px;}
.x3c_c00071{left:493.500000px;}
.x6c_c00071{left:498.000000px;}
.x42_c00071{left:502.200000px;}
.x67_c00071{left:503.700000px;}
.x31_c00071{left:505.350000px;}
.x4b_c00071{left:506.850000px;}
.x88_c00071{left:510.300000px;}
.xa_c00071{left:512.400000px;}
.x8f_c00071{left:517.350000px;}
.x9b_c00071{left:518.700000px;}
.xa6_c00071{left:525.600000px;}
.xc4_c00071{left:537.450000px;}
.xd3_c00071{left:539.700000px;}
.xb6_c00071{left:553.800000px;}
.xa7_c00071{left:555.150000px;}
.xec_c00071{left:557.100000px;}
.x117_c00071{left:558.300000px;}
.x134_c00071{left:559.350000px;}
.x13c_c00071{left:560.700000px;}
.x103_c00071{left:568.350000px;}
.xd8_c00071{left:573.900000px;}
.xd4_c00071{left:575.700000px;}
.xe3_c00071{left:578.700000px;}
.x12c_c00071{left:580.200000px;}
.xd9_c00071{left:583.200000px;}
.x12d_c00071{left:584.700000px;}
.xf4_c00071{left:585.750000px;}
.x11a_c00071{left:588.600000px;}
.xd2_c00071{left:590.550000px;}
.xae_c00071{left:591.750000px;}
.xb7_c00071{left:594.450000px;}
.xf8_c00071{left:597.750000px;}
.xc5_c00071{left:599.400000px;}
.xc1_c00071{left:600.750000px;}
.xc6_c00071{left:603.300000px;}
.xcb_c00071{left:605.400000px;}
.x104_c00071{left:608.250000px;}
.xe8_c00071{left:609.750000px;}
.xd5_c00071{left:614.550000px;}
.x123_c00071{left:615.900000px;}
.xaf_c00071{left:618.450000px;}
.xbc_c00071{left:619.950000px;}
.xed_c00071{left:622.200000px;}
.x110_c00071{left:623.700000px;}
.xa8_c00071{left:625.350000px;}
.xc2_c00071{left:627.000000px;}
.xd6_c00071{left:628.650000px;}
.x131_c00071{left:630.000000px;}
.x126_c00071{left:631.200000px;}
.xe4_c00071{left:633.750000px;}
.x118_c00071{left:635.400000px;}
.xbd_c00071{left:638.250000px;}
.xfb_c00071{left:640.800000px;}
.xcc_c00071{left:642.150000px;}
.xa9_c00071{left:645.150000px;}
.xf1_c00071{left:646.650000px;}
.x11b_c00071{left:648.600000px;}
.x124_c00071{left:649.800000px;}
.x100_c00071{left:651.450000px;}
.xda_c00071{left:654.150000px;}
.xc7_c00071{left:655.500000px;}
.xb0_c00071{left:657.000000px;}
.xee_c00071{left:658.950000px;}
.xb8_c00071{left:660.000000px;}
.x121_c00071{left:661.800000px;}
.x111_c00071{left:663.600000px;}
.xc8_c00071{left:664.800000px;}
.xc3_c00071{left:667.650000px;}
.x115_c00071{left:669.150000px;}
.x112_c00071{left:672.300000px;}
.xcd_c00071{left:673.800000px;}
.x119_c00071{left:677.100000px;}
.xdb_c00071{left:678.300000px;}
.xe9_c00071{left:679.650000px;}
.x10a_c00071{left:682.350000px;}
.x136_c00071{left:684.000000px;}
.x133_c00071{left:685.500000px;}
.xaa_c00071{left:686.850000px;}
.xe5_c00071{left:689.100000px;}
.x105_c00071{left:691.650000px;}
.x11e_c00071{left:693.300000px;}
.x12f_c00071{left:695.250000px;}
.xb9_c00071{left:697.500000px;}
.x10b_c00071{left:698.550000px;}
.xfc_c00071{left:700.500000px;}
.xea_c00071{left:702.000000px;}
.xdc_c00071{left:703.200000px;}
.xb1_c00071{left:704.850000px;}
.xf2_c00071{left:706.800000px;}
.xce_c00071{left:710.100000px;}
.xe6_c00071{left:713.550000px;}
.x10c_c00071{left:717.300000px;}
.xef_c00071{left:718.350000px;}
.x11c_c00071{left:723.150000px;}
.x138_c00071{left:725.850000px;}
.xdd_c00071{left:728.700000px;}
.x10d_c00071{left:731.400000px;}
.x127_c00071{left:732.600000px;}
.x113_c00071{left:733.800000px;}
.xab_c00071{left:736.500000px;}
.x130_c00071{left:738.750000px;}
.x135_c00071{left:741.600000px;}
.x106_c00071{left:742.650000px;}
.xde_c00071{left:743.850000px;}
.x101_c00071{left:748.500000px;}
.xf9_c00071{left:749.550000px;}
.x12b_c00071{left:750.900000px;}
.xac_c00071{left:751.950000px;}
.xdf_c00071{left:753.600000px;}
.xb2_c00071{left:757.050000px;}
.xba_c00071{left:761.550000px;}
.x13a_c00071{left:762.750000px;}
.x10e_c00071{left:763.800000px;}
.xf5_c00071{left:766.500000px;}
.xcf_c00071{left:769.800000px;}
.x107_c00071{left:771.900000px;}
.x13d_c00071{left:772.950000px;}
.x10f_c00071{left:774.600000px;}
.xb3_c00071{left:776.550000px;}
.x108_c00071{left:779.400000px;}
.xd0_c00071{left:782.700000px;}
.xbe_c00071{left:786.450000px;}
.xf6_c00071{left:789.600000px;}
.x125_c00071{left:791.400000px;}
.xe1_c00071{left:792.450000px;}
.xd7_c00071{left:795.000000px;}
.xfd_c00071{left:796.650000px;}
.x12e_c00071{left:800.250000px;}
.xf3_c00071{left:801.600000px;}
.x132_c00071{left:804.300000px;}
.x109_c00071{left:806.100000px;}
.xbf_c00071{left:807.300000px;}
.xad_c00071{left:808.800000px;}
.xc9_c00071{left:810.900000px;}
.x11f_c00071{left:812.700000px;}
.xf0_c00071{left:815.550000px;}
.x11d_c00071{left:817.500000px;}
.x120_c00071{left:822.000000px;}
.xb4_c00071{left:824.100000px;}
.xfe_c00071{left:826.950000px;}
.x128_c00071{left:828.750000px;}
.xd1_c00071{left:831.750000px;}
.xe2_c00071{left:833.550000px;}
.x102_c00071{left:834.750000px;}
.xca_c00071{left:835.800000px;}
.xe7_c00071{left:837.000000px;}
.x129_c00071{left:843.150000px;}
.xe0_c00071{left:845.100000px;}
.xbb_c00071{left:846.450000px;}
.x139_c00071{left:847.650000px;}
.xf7_c00071{left:849.000000px;}
.x13b_c00071{left:850.200000px;}
.xb5_c00071{left:851.850000px;}
.xc0_c00071{left:855.600000px;}
.x122_c00071{left:858.300000px;}
.x137_c00071{left:860.100000px;}
.xff_c00071{left:861.150000px;}
.xfa_c00071{left:863.700000px;}
.xeb_c00071{left:865.950000px;}
.x12a_c00071{left:867.600000px;}
.x114_c00071{left:873.150000px;}
.x116_c00071{left:875.100000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws3_c00071{word-spacing:-11.563805pt;}
.ws4_c00071{word-spacing:-8.187135pt;}
.wsa_c00071{word-spacing:-1.267327pt;}
.wsb_c00071{word-spacing:0.000000pt;}
.ws9_c00071{word-spacing:1.148530pt;}
.ws1_c00071{word-spacing:4.661247pt;}
.ws0_c00071{word-spacing:16.588348pt;}
.ws7_c00071{word-spacing:19.682540pt;}
.ws6_c00071{word-spacing:35.555556pt;}
.ws5_c00071{word-spacing:39.259259pt;}
.ws2_c00071{word-spacing:57.777778pt;}
.ws8_c00071{word-spacing:626.296296pt;}
._0_c00071{width:52.698413pt;}
.fs4_c00071{font-size:42.666667pt;}
.fs5_c00071{font-size:48.000000pt;}
.fs3_c00071{font-size:53.333333pt;}
.fs2_c00071{font-size:58.666667pt;}
.fs6_c00071{font-size:64.000000pt;}
.fs0_c00071{font-size:74.666667pt;}
.fs1_c00071{font-size:106.666667pt;}
.y0_c00071{bottom:0.000000pt;}
.y6b_c00071{bottom:161.866667pt;}
.y6a_c00071{bottom:177.866667pt;}
.y35_c00071{bottom:178.533333pt;}
.y34_c00071{bottom:191.333333pt;}
.y69_c00071{bottom:193.200000pt;}
.y33_c00071{bottom:204.133333pt;}
.y68_c00071{bottom:208.933333pt;}
.y32_c00071{bottom:216.933333pt;}
.y67_c00071{bottom:224.666667pt;}
.y66_c00071{bottom:244.533333pt;}
.y31_c00071{bottom:257.600000pt;}
.y65_c00071{bottom:260.533333pt;}
.y30_c00071{bottom:273.333333pt;}
.y64_c00071{bottom:276.800000pt;}
.y2f_c00071{bottom:289.066667pt;}
.y63_c00071{bottom:292.533333pt;}
.y2e_c00071{bottom:304.800000pt;}
.y62_c00071{bottom:308.533333pt;}
.y2d_c00071{bottom:320.533333pt;}
.y61_c00071{bottom:324.533333pt;}
.y2c_c00071{bottom:336.266667pt;}
.y60_c00071{bottom:340.533333pt;}
.y2b_c00071{bottom:352.000000pt;}
.y5f_c00071{bottom:356.800000pt;}
.y2a_c00071{bottom:368.000000pt;}
.y5e_c00071{bottom:372.533333pt;}
.y29_c00071{bottom:384.266667pt;}
.y5d_c00071{bottom:388.533333pt;}
.y28_c00071{bottom:400.000000pt;}
.y5c_c00071{bottom:404.533333pt;}
.y27_c00071{bottom:416.000000pt;}
.y5b_c00071{bottom:420.266667pt;}
.y26_c00071{bottom:432.000000pt;}
.y5a_c00071{bottom:436.266667pt;}
.y25_c00071{bottom:445.733333pt;}
.y59_c00071{bottom:452.266667pt;}
.y24_c00071{bottom:460.133333pt;}
.y58_c00071{bottom:468.266667pt;}
.y23_c00071{bottom:472.933333pt;}
.y22_c00071{bottom:484.133333pt;}
.y57_c00071{bottom:484.533333pt;}
.y21_c00071{bottom:496.666667pt;}
.y56_c00071{bottom:500.533333pt;}
.y20_c00071{bottom:512.666667pt;}
.y55_c00071{bottom:516.533333pt;}
.y1f_c00071{bottom:529.600000pt;}
.y54_c00071{bottom:532.533333pt;}
.y1e_c00071{bottom:547.600000pt;}
.y53_c00071{bottom:550.666667pt;}
.y1d_c00071{bottom:563.866667pt;}
.y52_c00071{bottom:565.066667pt;}
.y51_c00071{bottom:578.533333pt;}
.y1c_c00071{bottom:579.866667pt;}
.y50_c00071{bottom:589.466667pt;}
.y1b_c00071{bottom:600.000000pt;}
.y4f_c00071{bottom:603.866667pt;}
.y4e_c00071{bottom:615.333333pt;}
.y1a_c00071{bottom:623.333333pt;}
.y4d_c00071{bottom:629.733333pt;}
.y4c_c00071{bottom:641.600000pt;}
.y19_c00071{bottom:643.200000pt;}
.y4b_c00071{bottom:656.666667pt;}
.y18_c00071{bottom:662.666667pt;}
.y4a_c00071{bottom:676.133333pt;}
.y17_c00071{bottom:678.933333pt;}
.y49_c00071{bottom:693.466667pt;}
.y16_c00071{bottom:694.666667pt;}
.y48_c00071{bottom:709.466667pt;}
.y15_c00071{bottom:710.666667pt;}
.y14_c00071{bottom:726.666667pt;}
.y47_c00071{bottom:732.400000pt;}
.y13_c00071{bottom:742.666667pt;}
.y46_c00071{bottom:749.066667pt;}
.y12_c00071{bottom:758.400000pt;}
.y45_c00071{bottom:765.333333pt;}
.y11_c00071{bottom:774.133333pt;}
.y44_c00071{bottom:781.066667pt;}
.y10_c00071{bottom:790.400000pt;}
.y43_c00071{bottom:797.733333pt;}
.yf_c00071{bottom:806.400000pt;}
.y42_c00071{bottom:813.466667pt;}
.ye_c00071{bottom:822.133333pt;}
.y41_c00071{bottom:830.800000pt;}
.yd_c00071{bottom:838.133333pt;}
.y40_c00071{bottom:849.333333pt;}
.yc_c00071{bottom:856.533333pt;}
.y3f_c00071{bottom:871.466667pt;}
.yb_c00071{bottom:873.200000pt;}
.y3e_c00071{bottom:888.400000pt;}
.ya_c00071{bottom:889.466667pt;}
.y9_c00071{bottom:905.200000pt;}
.y3d_c00071{bottom:906.933333pt;}
.y8_c00071{bottom:921.200000pt;}
.y3c_c00071{bottom:922.533333pt;}
.y7_c00071{bottom:937.200000pt;}
.y3b_c00071{bottom:943.466667pt;}
.y6_c00071{bottom:952.933333pt;}
.y3a_c00071{bottom:960.400000pt;}
.y5_c00071{bottom:970.666667pt;}
.y39_c00071{bottom:977.333333pt;}
.y4_c00071{bottom:988.533333pt;}
.y38_c00071{bottom:992.666667pt;}
.y3_c00071{bottom:1004.800000pt;}
.y36_c00071{bottom:1006.400000pt;}
.y37_c00071{bottom:1008.666667pt;}
.y1_c00071{bottom:1025.333333pt;}
.y2_c00071{bottom:1029.866667pt;}
.h6_c00071{height:42.666667pt;}
.h7_c00071{height:48.000000pt;}
.h5_c00071{height:53.333333pt;}
.h4_c00071{height:58.666667pt;}
.h8_c00071{height:64.000000pt;}
.h2_c00071{height:74.666667pt;}
.h3_c00071{height:106.666667pt;}
.h0_c00071{height:1137.920003pt;}
.h1_c00071{height:1138.000000pt;}
.w0_c00071{width:843.200032pt;}
.w1_c00071{width:843.333333pt;}
.x0_c00071{left:0.000000pt;}
.x1_c00071{left:160.266667pt;}
.x72_c00071{left:165.333333pt;}
.x76_c00071{left:166.400000pt;}
.xa2_c00071{left:168.400000pt;}
.x77_c00071{left:173.733333pt;}
.x9e_c00071{left:176.266667pt;}
.x3_c00071{left:177.333333pt;}
.x12_c00071{left:178.800000pt;}
.x5b_c00071{left:180.000000pt;}
.x71_c00071{left:181.066667pt;}
.x89_c00071{left:183.066667pt;}
.x91_c00071{left:184.000000pt;}
.x86_c00071{left:191.200000pt;}
.x78_c00071{left:193.200000pt;}
.x13_c00071{left:194.533333pt;}
.x16_c00071{left:196.533333pt;}
.x7b_c00071{left:197.733333pt;}
.xa3_c00071{left:201.733333pt;}
.x62_c00071{left:202.666667pt;}
.x14_c00071{left:204.400000pt;}
.x1d_c00071{left:205.466667pt;}
.x6d_c00071{left:207.733333pt;}
.x50_c00071{left:210.266667pt;}
.x3d_c00071{left:211.200000pt;}
.x7f_c00071{left:212.533333pt;}
.x68_c00071{left:213.466667pt;}
.xb_c00071{left:214.533333pt;}
.x82_c00071{left:216.400000pt;}
.x32_c00071{left:218.133333pt;}
.xa4_c00071{left:219.200000pt;}
.x45_c00071{left:220.133333pt;}
.x17_c00071{left:221.466667pt;}
.x4_c00071{left:222.400000pt;}
.x6e_c00071{left:223.466667pt;}
.x79_c00071{left:225.200000pt;}
.x73_c00071{left:226.933333pt;}
.x15_c00071{left:229.066667pt;}
.x37_c00071{left:231.600000pt;}
.x9d_c00071{left:233.600000pt;}
.x2c_c00071{left:234.533333pt;}
.x51_c00071{left:236.133333pt;}
.x5c_c00071{left:237.600000pt;}
.x1e_c00071{left:239.733333pt;}
.x83_c00071{left:241.066667pt;}
.x8c_c00071{left:243.466667pt;}
.x18_c00071{left:244.800000pt;}
.x4c_c00071{left:245.733333pt;}
.x3e_c00071{left:247.733333pt;}
.x1f_c00071{left:248.666667pt;}
.x9f_c00071{left:250.800000pt;}
.x66_c00071{left:251.866667pt;}
.x8d_c00071{left:253.466667pt;}
.x33_c00071{left:255.600000pt;}
.xc_c00071{left:256.800000pt;}
.x85_c00071{left:258.400000pt;}
.x74_c00071{left:259.600000pt;}
.x8e_c00071{left:261.466667pt;}
.x81_c00071{left:262.400000pt;}
.x63_c00071{left:263.466667pt;}
.x2d_c00071{left:265.200000pt;}
.x5_c00071{left:266.266667pt;}
.x52_c00071{left:269.466667pt;}
.xa0_c00071{left:270.666667pt;}
.x19_c00071{left:272.666667pt;}
.x94_c00071{left:273.733333pt;}
.x55_c00071{left:274.666667pt;}
.x43_c00071{left:275.866667pt;}
.x20_c00071{left:277.200000pt;}
.x75_c00071{left:278.533333pt;}
.x38_c00071{left:282.800000pt;}
.xd_c00071{left:286.266667pt;}
.x5d_c00071{left:289.733333pt;}
.x3f_c00071{left:291.866667pt;}
.x34_c00071{left:294.000000pt;}
.x26_c00071{left:295.733333pt;}
.x9c_c00071{left:297.066667pt;}
.x56_c00071{left:298.000000pt;}
.x6f_c00071{left:301.866667pt;}
.x7c_c00071{left:305.600000pt;}
.x46_c00071{left:308.400000pt;}
.x39_c00071{left:309.333333pt;}
.x53_c00071{left:311.333333pt;}
.xe_c00071{left:312.800000pt;}
.x1a_c00071{left:314.266667pt;}
.x84_c00071{left:315.333333pt;}
.x27_c00071{left:316.800000pt;}
.x8a_c00071{left:319.333333pt;}
.x97_c00071{left:320.933333pt;}
.x47_c00071{left:321.866667pt;}
.x5e_c00071{left:323.600000pt;}
.x2e_c00071{left:325.066667pt;}
.x6_c00071{left:326.400000pt;}
.x92_c00071{left:327.600000pt;}
.x4d_c00071{left:329.600000pt;}
.x28_c00071{left:330.533333pt;}
.x9a_c00071{left:332.533333pt;}
.x1b_c00071{left:333.466667pt;}
.xa1_c00071{left:335.066667pt;}
.x95_c00071{left:336.533333pt;}
.x48_c00071{left:338.133333pt;}
.x21_c00071{left:339.333333pt;}
.x7a_c00071{left:341.600000pt;}
.x80_c00071{left:343.066667pt;}
.xa5_c00071{left:344.666667pt;}
.x90_c00071{left:345.733333pt;}
.xf_c00071{left:348.000000pt;}
.x7_c00071{left:350.133333pt;}
.x40_c00071{left:351.066667pt;}
.x2f_c00071{left:352.533333pt;}
.x22_c00071{left:353.733333pt;}
.x69_c00071{left:354.666667pt;}
.x54_c00071{left:356.133333pt;}
.x7d_c00071{left:359.200000pt;}
.x64_c00071{left:360.666667pt;}
.x93_c00071{left:363.466667pt;}
.x35_c00071{left:366.933333pt;}
.x4e_c00071{left:368.400000pt;}
.x70_c00071{left:369.733333pt;}
.x98_c00071{left:370.933333pt;}
.x29_c00071{left:372.133333pt;}
.x5f_c00071{left:373.200000pt;}
.x3a_c00071{left:376.000000pt;}
.x2_c00071{left:378.133333pt;}
.x49_c00071{left:379.066667pt;}
.x6a_c00071{left:381.200000pt;}
.x96_c00071{left:383.200000pt;}
.x57_c00071{left:384.400000pt;}
.x8_c00071{left:386.933333pt;}
.x99_c00071{left:388.533333pt;}
.x8b_c00071{left:390.000000pt;}
.x2a_c00071{left:391.600000pt;}
.x58_c00071{left:392.666667pt;}
.x23_c00071{left:394.000000pt;}
.x4f_c00071{left:396.533333pt;}
.x10_c00071{left:397.600000pt;}
.x44_c00071{left:399.333333pt;}
.x6b_c00071{left:400.666667pt;}
.x24_c00071{left:402.666667pt;}
.x60_c00071{left:403.600000pt;}
.x41_c00071{left:404.800000pt;}
.x3b_c00071{left:406.666667pt;}
.x59_c00071{left:407.733333pt;}
.x9_c00071{left:410.000000pt;}
.x7e_c00071{left:411.600000pt;}
.x36_c00071{left:415.200000pt;}
.x11_c00071{left:416.533333pt;}
.x30_c00071{left:417.466667pt;}
.x25_c00071{left:418.400000pt;}
.x87_c00071{left:420.933333pt;}
.x2b_c00071{left:424.533333pt;}
.x5a_c00071{left:426.666667pt;}
.x4a_c00071{left:430.000000pt;}
.x61_c00071{left:431.066667pt;}
.x1c_c00071{left:433.600000pt;}
.x65_c00071{left:435.866667pt;}
.x3c_c00071{left:438.666667pt;}
.x6c_c00071{left:442.666667pt;}
.x42_c00071{left:446.400000pt;}
.x67_c00071{left:447.733333pt;}
.x31_c00071{left:449.200000pt;}
.x4b_c00071{left:450.533333pt;}
.x88_c00071{left:453.600000pt;}
.xa_c00071{left:455.466667pt;}
.x8f_c00071{left:459.866667pt;}
.x9b_c00071{left:461.066667pt;}
.xa6_c00071{left:467.200000pt;}
.xc4_c00071{left:477.733333pt;}
.xd3_c00071{left:479.733333pt;}
.xb6_c00071{left:492.266667pt;}
.xa7_c00071{left:493.466667pt;}
.xec_c00071{left:495.200000pt;}
.x117_c00071{left:496.266667pt;}
.x134_c00071{left:497.200000pt;}
.x13c_c00071{left:498.400000pt;}
.x103_c00071{left:505.200000pt;}
.xd8_c00071{left:510.133333pt;}
.xd4_c00071{left:511.733333pt;}
.xe3_c00071{left:514.400000pt;}
.x12c_c00071{left:515.733333pt;}
.xd9_c00071{left:518.400000pt;}
.x12d_c00071{left:519.733333pt;}
.xf4_c00071{left:520.666667pt;}
.x11a_c00071{left:523.200000pt;}
.xd2_c00071{left:524.933333pt;}
.xae_c00071{left:526.000000pt;}
.xb7_c00071{left:528.400000pt;}
.xf8_c00071{left:531.333333pt;}
.xc5_c00071{left:532.800000pt;}
.xc1_c00071{left:534.000000pt;}
.xc6_c00071{left:536.266667pt;}
.xcb_c00071{left:538.133333pt;}
.x104_c00071{left:540.666667pt;}
.xe8_c00071{left:542.000000pt;}
.xd5_c00071{left:546.266667pt;}
.x123_c00071{left:547.466667pt;}
.xaf_c00071{left:549.733333pt;}
.xbc_c00071{left:551.066667pt;}
.xed_c00071{left:553.066667pt;}
.x110_c00071{left:554.400000pt;}
.xa8_c00071{left:555.866667pt;}
.xc2_c00071{left:557.333333pt;}
.xd6_c00071{left:558.800000pt;}
.x131_c00071{left:560.000000pt;}
.x126_c00071{left:561.066667pt;}
.xe4_c00071{left:563.333333pt;}
.x118_c00071{left:564.800000pt;}
.xbd_c00071{left:567.333333pt;}
.xfb_c00071{left:569.600000pt;}
.xcc_c00071{left:570.800000pt;}
.xa9_c00071{left:573.466667pt;}
.xf1_c00071{left:574.800000pt;}
.x11b_c00071{left:576.533333pt;}
.x124_c00071{left:577.600000pt;}
.x100_c00071{left:579.066667pt;}
.xda_c00071{left:581.466667pt;}
.xc7_c00071{left:582.666667pt;}
.xb0_c00071{left:584.000000pt;}
.xee_c00071{left:585.733333pt;}
.xb8_c00071{left:586.666667pt;}
.x121_c00071{left:588.266667pt;}
.x111_c00071{left:589.866667pt;}
.xc8_c00071{left:590.933333pt;}
.xc3_c00071{left:593.466667pt;}
.x115_c00071{left:594.800000pt;}
.x112_c00071{left:597.600000pt;}
.xcd_c00071{left:598.933333pt;}
.x119_c00071{left:601.866667pt;}
.xdb_c00071{left:602.933333pt;}
.xe9_c00071{left:604.133333pt;}
.x10a_c00071{left:606.533333pt;}
.x136_c00071{left:608.000000pt;}
.x133_c00071{left:609.333333pt;}
.xaa_c00071{left:610.533333pt;}
.xe5_c00071{left:612.533333pt;}
.x105_c00071{left:614.800000pt;}
.x11e_c00071{left:616.266667pt;}
.x12f_c00071{left:618.000000pt;}
.xb9_c00071{left:620.000000pt;}
.x10b_c00071{left:620.933333pt;}
.xfc_c00071{left:622.666667pt;}
.xea_c00071{left:624.000000pt;}
.xdc_c00071{left:625.066667pt;}
.xb1_c00071{left:626.533333pt;}
.xf2_c00071{left:628.266667pt;}
.xce_c00071{left:631.200000pt;}
.xe6_c00071{left:634.266667pt;}
.x10c_c00071{left:637.600000pt;}
.xef_c00071{left:638.533333pt;}
.x11c_c00071{left:642.800000pt;}
.x138_c00071{left:645.200000pt;}
.xdd_c00071{left:647.733333pt;}
.x10d_c00071{left:650.133333pt;}
.x127_c00071{left:651.200000pt;}
.x113_c00071{left:652.266667pt;}
.xab_c00071{left:654.666667pt;}
.x130_c00071{left:656.666667pt;}
.x135_c00071{left:659.200000pt;}
.x106_c00071{left:660.133333pt;}
.xde_c00071{left:661.200000pt;}
.x101_c00071{left:665.333333pt;}
.xf9_c00071{left:666.266667pt;}
.x12b_c00071{left:667.466667pt;}
.xac_c00071{left:668.400000pt;}
.xdf_c00071{left:669.866667pt;}
.xb2_c00071{left:672.933333pt;}
.xba_c00071{left:676.933333pt;}
.x13a_c00071{left:678.000000pt;}
.x10e_c00071{left:678.933333pt;}
.xf5_c00071{left:681.333333pt;}
.xcf_c00071{left:684.266667pt;}
.x107_c00071{left:686.133333pt;}
.x13d_c00071{left:687.066667pt;}
.x10f_c00071{left:688.533333pt;}
.xb3_c00071{left:690.266667pt;}
.x108_c00071{left:692.800000pt;}
.xd0_c00071{left:695.733333pt;}
.xbe_c00071{left:699.066667pt;}
.xf6_c00071{left:701.866667pt;}
.x125_c00071{left:703.466667pt;}
.xe1_c00071{left:704.400000pt;}
.xd7_c00071{left:706.666667pt;}
.xfd_c00071{left:708.133333pt;}
.x12e_c00071{left:711.333333pt;}
.xf3_c00071{left:712.533333pt;}
.x132_c00071{left:714.933333pt;}
.x109_c00071{left:716.533333pt;}
.xbf_c00071{left:717.600000pt;}
.xad_c00071{left:718.933333pt;}
.xc9_c00071{left:720.800000pt;}
.x11f_c00071{left:722.400000pt;}
.xf0_c00071{left:724.933333pt;}
.x11d_c00071{left:726.666667pt;}
.x120_c00071{left:730.666667pt;}
.xb4_c00071{left:732.533333pt;}
.xfe_c00071{left:735.066667pt;}
.x128_c00071{left:736.666667pt;}
.xd1_c00071{left:739.333333pt;}
.xe2_c00071{left:740.933333pt;}
.x102_c00071{left:742.000000pt;}
.xca_c00071{left:742.933333pt;}
.xe7_c00071{left:744.000000pt;}
.x129_c00071{left:749.466667pt;}
.xe0_c00071{left:751.200000pt;}
.xbb_c00071{left:752.400000pt;}
.x139_c00071{left:753.466667pt;}
.xf7_c00071{left:754.666667pt;}
.x13b_c00071{left:755.733333pt;}
.xb5_c00071{left:757.200000pt;}
.xc0_c00071{left:760.533333pt;}
.x122_c00071{left:762.933333pt;}
.x137_c00071{left:764.533333pt;}
.xff_c00071{left:765.466667pt;}
.xfa_c00071{left:767.733333pt;}
.xeb_c00071{left:769.733333pt;}
.x12a_c00071{left:771.200000pt;}
.x114_c00071{left:776.133333pt;}
.x116_c00071{left:777.866667pt;}
}





/* 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_c00072 {
    display:none;
  }
  .loading-indicator_c00072.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00072 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_c00072 { 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_c00072" -> "#page-container .classname_c00072")
 */
.pf_c00072 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00072 { /* 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_c00072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00072 { /* 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_c00072 { /* 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_c00072 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00072 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00072 {overflow:visible;}
  }
}
.c_c00072 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00072 { /* 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_c00072:after { /* webkit #35443 */
  content: '';
}
.t_c00072:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00072 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 */
}
.__c00072 { /* 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_c00072 { /* info for Javascript */
  display:none;
}
.l_c00072 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00072 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00072 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00072: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_c00072 {
    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_c00072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00072.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_c00072 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00072;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.000000;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;}
.mb9_c00072{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m119_c00072{transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00072{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m116_c00072{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.m61_c00072{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00072{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00072{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m118_c00072{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00072{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m117_c00072{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m83_c00072{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00072{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00072{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00072{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m107_c00072{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00072{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m27_c00072{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00072{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00072{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m32_c00072{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00072{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00072{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00072{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m38_c00072{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00072{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mff_c00072{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m36_c00072{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma_c00072{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00072{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mde_c00072{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m34_c00072{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00072{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m104_c00072{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m81_c00072{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m30_c00072{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00072{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m15_c00072{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m64_c00072{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00072{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m108_c00072{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m37_c00072{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mee_c00072{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mda_c00072{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00072{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00072{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m90_c00072{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00072{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m35_c00072{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00072{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00072{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m87_c00072{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m88_c00072{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00072{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mf_c00072{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m92_c00072{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00072{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00072{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00072{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00072{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m14_c00072{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00072{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m48_c00072{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00072{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00072{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00072{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m86_c00072{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00072{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m94_c00072{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00072{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m9_c00072{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m18_c00072{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m74_c00072{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m16_c00072{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m100_c00072{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00072{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00072{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m3_c00072{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md1_c00072{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m89_c00072{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00072{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00072{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00072{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mea_c00072{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m5_c00072{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00072{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m82_c00072{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00072{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00072{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00072{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00072{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00072{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m8_c00072{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00072{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00072{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m77_c00072{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m45_c00072{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00072{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.me7_c00072{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00072{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m12_c00072{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m54_c00072{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m79_c00072{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m22_c00072{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m85_c00072{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00072{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00072{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m97_c00072{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00072{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m95_c00072{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m13_c00072{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00072{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m103_c00072{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb_c00072{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m41_c00072{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.md_c00072{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me4_c00072{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m42_c00072{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m60_c00072{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m93_c00072{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00072{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m31_c00072{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00072{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00072{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m62_c00072{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00072{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m99_c00072{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00072{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00072{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00072{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m73_c00072{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00072{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00072{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00072{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m26_c00072{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m10_c00072{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m43_c00072{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m70_c00072{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mec_c00072{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00072{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m6_c00072{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m114_c00072{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.md8_c00072{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m110_c00072{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m66_c00072{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mef_c00072{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00072{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00072{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00072{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m55_c00072{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00072{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m76_c00072{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mce_c00072{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00072{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00072{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m33_c00072{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00072{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00072{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m102_c00072{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00072{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mca_c00072{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00072{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m68_c00072{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m59_c00072{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m71_c00072{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m80_c00072{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00072{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00072{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.me6_c00072{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00072{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00072{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m19_c00072{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m109_c00072{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.med_c00072{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00072{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00072{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00072{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00072{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m91_c00072{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00072{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me5_c00072{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00072{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me3_c00072{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me_c00072{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m20_c00072{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00072{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00072{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m63_c00072{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m21_c00072{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.meb_c00072{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m75_c00072{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00072{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00072{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m96_c00072{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m67_c00072{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m53_c00072{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00072{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00072{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m29_c00072{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00072{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m113_c00072{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m72_c00072{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m25_c00072{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00072{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m28_c00072{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.md2_c00072{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m17_c00072{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00072{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md7_c00072{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me8_c00072{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00072{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m84_c00072{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00072{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00072{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m101_c00072{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m39_c00072{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me1_c00072{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00072{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m46_c00072{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md4_c00072{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00072{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc_c00072{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00072{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m52_c00072{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00072{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m58_c00072{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m51_c00072{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00072{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00072{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mab_c00072{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00072{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);}
.md3_c00072{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.maf_c00072{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me9_c00072{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m98_c00072{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m57_c00072{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.me0_c00072{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md9_c00072{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00072{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m69_c00072{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m47_c00072{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00072{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00072{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.maa_c00072{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00072{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m44_c00072{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m78_c00072{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.mad_c00072{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00072{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00072{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m106_c00072{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m112_c00072{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m50_c00072{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00072{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m24_c00072{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m11_c00072{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md6_c00072{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m65_c00072{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.me2_c00072{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mba_c00072{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00072{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m105_c00072{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00072{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00072{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00072{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.md5_c00072{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mac_c00072{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m56_c00072{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m23_c00072{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.mae_c00072{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00072{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00072{transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m115_c00072{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m49_c00072{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.469750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469750,0.000000,0.000000,0.250000,0,0);}
.md0_c00072{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00072{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m111_c00072{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m40_c00072{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls0_c00072{letter-spacing:0.000000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{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__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00072{word-spacing:-9.069767px;}
.wsb_c00072{word-spacing:-8.808917px;}
.ws3_c00072{word-spacing:-7.261905px;}
.ws7_c00072{word-spacing:-2.063694px;}
.wsa_c00072{word-spacing:-1.086957px;}
.ws6_c00072{word-spacing:-0.187500px;}
.wsc_c00072{word-spacing:0.000000px;}
.ws8_c00072{word-spacing:3.428571px;}
.ws2_c00072{word-spacing:8.560209px;}
.ws0_c00072{word-spacing:10.150784px;}
.ws9_c00072{word-spacing:19.500000px;}
.ws5_c00072{word-spacing:36.428571px;}
.ws1_c00072{word-spacing:69.605263px;}
.fc0_c00072{color:transparent;}
.fs1_c00072{font-size:24.000000px;}
.fs7_c00072{font-size:30.000000px;}
.fs8_c00072{font-size:42.000000px;}
.fs4_c00072{font-size:48.000000px;}
.fs5_c00072{font-size:60.000000px;}
.fs3_c00072{font-size:66.000000px;}
.fs2_c00072{font-size:72.000000px;}
.fs6_c00072{font-size:78.000000px;}
.fs0_c00072{font-size:84.000000px;}
.y0_c00072{bottom:0.000000px;}
.y6a_c00072{bottom:11.550000px;}
.y2_c00072{bottom:14.400000px;}
.y6d_c00072{bottom:22.650000px;}
.y37_c00072{bottom:55.800000px;}
.y6c_c00072{bottom:74.250000px;}
.y6f_c00072{bottom:97.950000px;}
.y6b_c00072{bottom:99.750000px;}
.y6e_c00072{bottom:123.450000px;}
.y69_c00072{bottom:169.200000px;}
.y36_c00072{bottom:184.350000px;}
.y68_c00072{bottom:188.250000px;}
.y35_c00072{bottom:203.100000px;}
.y67_c00072{bottom:206.250000px;}
.y34_c00072{bottom:221.400000px;}
.y66_c00072{bottom:230.700000px;}
.y33_c00072{bottom:239.400000px;}
.y65_c00072{bottom:250.200000px;}
.y32_c00072{bottom:257.400000px;}
.y64_c00072{bottom:268.200000px;}
.y31_c00072{bottom:275.400000px;}
.y63_c00072{bottom:286.200000px;}
.y30_c00072{bottom:296.700000px;}
.y62_c00072{bottom:303.900000px;}
.y2f_c00072{bottom:315.750000px;}
.y61_c00072{bottom:321.900000px;}
.y2e_c00072{bottom:337.950000px;}
.y60_c00072{bottom:342.750000px;}
.y2d_c00072{bottom:355.650000px;}
.y5f_c00072{bottom:361.500000px;}
.y2c_c00072{bottom:373.950000px;}
.y5e_c00072{bottom:391.350000px;}
.y2b_c00072{bottom:391.950000px;}
.y2a_c00072{bottom:409.650000px;}
.y5d_c00072{bottom:411.150000px;}
.y29_c00072{bottom:427.950000px;}
.y5c_c00072{bottom:429.150000px;}
.y28_c00072{bottom:445.950000px;}
.y5b_c00072{bottom:451.350000px;}
.y27_c00072{bottom:463.950000px;}
.y5a_c00072{bottom:469.050000px;}
.y26_c00072{bottom:481.950000px;}
.y59_c00072{bottom:487.050000px;}
.y25_c00072{bottom:499.950000px;}
.y58_c00072{bottom:505.050000px;}
.y24_c00072{bottom:517.950000px;}
.y57_c00072{bottom:523.050000px;}
.y23_c00072{bottom:535.650000px;}
.y56_c00072{bottom:541.050000px;}
.y22_c00072{bottom:553.950000px;}
.y55_c00072{bottom:559.050000px;}
.y21_c00072{bottom:571.650000px;}
.y54_c00072{bottom:577.050000px;}
.y20_c00072{bottom:589.650000px;}
.y53_c00072{bottom:595.050000px;}
.y1f_c00072{bottom:607.950000px;}
.y52_c00072{bottom:613.050000px;}
.y1e_c00072{bottom:625.950000px;}
.y51_c00072{bottom:631.050000px;}
.y1d_c00072{bottom:643.950000px;}
.y50_c00072{bottom:648.750000px;}
.y1c_c00072{bottom:661.650000px;}
.y4f_c00072{bottom:667.050000px;}
.y1b_c00072{bottom:679.650000px;}
.y4e_c00072{bottom:684.300000px;}
.y1a_c00072{bottom:697.650000px;}
.y4d_c00072{bottom:702.000000px;}
.y19_c00072{bottom:717.450000px;}
.y4c_c00072{bottom:720.000000px;}
.y18_c00072{bottom:731.850000px;}
.y4b_c00072{bottom:738.300000px;}
.y17_c00072{bottom:748.050000px;}
.y4a_c00072{bottom:756.300000px;}
.y16_c00072{bottom:761.400000px;}
.y49_c00072{bottom:774.300000px;}
.y15_c00072{bottom:775.500000px;}
.y48_c00072{bottom:792.300000px;}
.y14_c00072{bottom:793.500000px;}
.y47_c00072{bottom:810.300000px;}
.y13_c00072{bottom:811.500000px;}
.y46_c00072{bottom:828.300000px;}
.y12_c00072{bottom:833.100000px;}
.y45_c00072{bottom:849.000000px;}
.y11_c00072{bottom:851.850000px;}
.y44_c00072{bottom:863.700000px;}
.y10_c00072{bottom:869.850000px;}
.y43_c00072{bottom:876.600000px;}
.yf_c00072{bottom:887.850000px;}
.y42_c00072{bottom:895.650000px;}
.ye_c00072{bottom:905.850000px;}
.y41_c00072{bottom:913.650000px;}
.yd_c00072{bottom:924.150000px;}
.y40_c00072{bottom:935.550000px;}
.yc_c00072{bottom:941.400000px;}
.y3f_c00072{bottom:953.550000px;}
.yb_c00072{bottom:963.300000px;}
.y3e_c00072{bottom:971.550000px;}
.ya_c00072{bottom:981.300000px;}
.y3d_c00072{bottom:989.550000px;}
.y9_c00072{bottom:1004.100000px;}
.y3c_c00072{bottom:1007.550000px;}
.y8_c00072{bottom:1022.100000px;}
.y3b_c00072{bottom:1025.250000px;}
.y7_c00072{bottom:1044.000000px;}
.y3a_c00072{bottom:1047.600000px;}
.y39_c00072{bottom:1065.600000px;}
.y6_c00072{bottom:1066.650000px;}
.y5_c00072{bottom:1084.650000px;}
.y38_c00072{bottom:1096.950000px;}
.y4_c00072{bottom:1102.650000px;}
.y3_c00072{bottom:1120.650000px;}
.y1_c00072{bottom:1147.350000px;}
.h3_c00072{height:24.000000px;}
.h9_c00072{height:30.000000px;}
.ha_c00072{height:42.000000px;}
.h6_c00072{height:48.000000px;}
.h7_c00072{height:60.000000px;}
.h5_c00072{height:66.000000px;}
.h4_c00072{height:72.000000px;}
.h8_c00072{height:78.000000px;}
.h2_c00072{height:84.000000px;}
.h1_c00072{height:1280.250000px;}
.h0_c00072{height:1280.519990px;}
.w0_c00072{width:948.600036px;}
.w1_c00072{width:948.750000px;}
.x0_c00072{left:0.000000px;}
.x3_c00072{left:21.600000px;}
.x62_c00072{left:71.250000px;}
.x55_c00072{left:72.750000px;}
.x23_c00072{left:74.550000px;}
.x21_c00072{left:75.900000px;}
.x29_c00072{left:77.400000px;}
.xa9_c00072{left:83.550000px;}
.xa5_c00072{left:86.250000px;}
.x82_c00072{left:88.950000px;}
.x7f_c00072{left:90.000000px;}
.x38_c00072{left:91.500000px;}
.x4f_c00072{left:93.450000px;}
.x4_c00072{left:95.100000px;}
.x86_c00072{left:100.500000px;}
.x67_c00072{left:103.350000px;}
.x66_c00072{left:104.400000px;}
.x2a_c00072{left:105.900000px;}
.x99_c00072{left:108.450000px;}
.xa0_c00072{left:109.500000px;}
.x8a_c00072{left:110.550000px;}
.xa8_c00072{left:111.600000px;}
.x17_c00072{left:113.550000px;}
.x1b_c00072{left:115.500000px;}
.x9b_c00072{left:117.750000px;}
.x56_c00072{left:120.600000px;}
.x7d_c00072{left:122.100000px;}
.xf_c00072{left:124.500000px;}
.x93_c00072{left:125.700000px;}
.x80_c00072{left:128.550000px;}
.x39_c00072{left:129.600000px;}
.x5b_c00072{left:130.950000px;}
.x5f_c00072{left:133.200000px;}
.x40_c00072{left:136.350000px;}
.x7a_c00072{left:138.000000px;}
.x2b_c00072{left:139.800000px;}
.x22_c00072{left:142.200000px;}
.x5c_c00072{left:144.600000px;}
.x24_c00072{left:145.800000px;}
.x27_c00072{left:148.350000px;}
.xa6_c00072{left:150.150000px;}
.x4d_c00072{left:151.350000px;}
.x1c_c00072{left:156.600000px;}
.x5_c00072{left:161.700000px;}
.x69_c00072{left:162.750000px;}
.x10_c00072{left:166.950000px;}
.x9c_c00072{left:169.200000px;}
.x18_c00072{left:170.850000px;}
.x8b_c00072{left:172.500000px;}
.x3a_c00072{left:175.650000px;}
.x46_c00072{left:177.000000px;}
.x1d_c00072{left:178.200000px;}
.x76_c00072{left:179.400000px;}
.x30_c00072{left:180.450000px;}
.x72_c00072{left:181.650000px;}
.x6f_c00072{left:182.700000px;}
.x81_c00072{left:185.100000px;}
.x41_c00072{left:186.450000px;}
.x11_c00072{left:188.550000px;}
.x9d_c00072{left:190.800000px;}
.x8f_c00072{left:192.300000px;}
.x3b_c00072{left:193.350000px;}
.x83_c00072{left:197.250000px;}
.x6_c00072{left:199.200000px;}
.x7b_c00072{left:202.050000px;}
.x31_c00072{left:203.100000px;}
.x28_c00072{left:205.200000px;}
.x19_c00072{left:207.900000px;}
.x91_c00072{left:210.450000px;}
.x50_c00072{left:212.250000px;}
.x2c_c00072{left:213.300000px;}
.x6a_c00072{left:214.650000px;}
.x12_c00072{left:215.850000px;}
.x57_c00072{left:219.150000px;}
.x1e_c00072{left:220.350000px;}
.xa7_c00072{left:222.450000px;}
.x7_c00072{left:224.700000px;}
.x97_c00072{left:226.500000px;}
.x94_c00072{left:229.650000px;}
.x47_c00072{left:231.750000px;}
.x8c_c00072{left:233.700000px;}
.x51_c00072{left:235.650000px;}
.xa2_c00072{left:236.850000px;}
.x7e_c00072{left:239.400000px;}
.x42_c00072{left:241.500000px;}
.x3c_c00072{left:245.100000px;}
.xa1_c00072{left:246.300000px;}
.x63_c00072{left:247.350000px;}
.x32_c00072{left:249.150000px;}
.x95_c00072{left:252.300000px;}
.x84_c00072{left:253.800000px;}
.x87_c00072{left:256.500000px;}
.x74_c00072{left:258.300000px;}
.x8d_c00072{left:259.650000px;}
.x5d_c00072{left:261.450000px;}
.x33_c00072{left:265.350000px;}
.x43_c00072{left:266.700000px;}
.x3d_c00072{left:268.800000px;}
.x58_c00072{left:269.850000px;}
.x48_c00072{left:271.350000px;}
.x9a_c00072{left:273.900000px;}
.x34_c00072{left:275.850000px;}
.x13_c00072{left:277.050000px;}
.x6b_c00072{left:278.700000px;}
.x1f_c00072{left:280.500000px;}
.x8_c00072{left:282.300000px;}
.x25_c00072{left:283.650000px;}
.x35_c00072{left:287.700000px;}
.x6c_c00072{left:289.500000px;}
.x2d_c00072{left:290.700000px;}
.x73_c00072{left:294.300000px;}
.x70_c00072{left:297.600000px;}
.x8e_c00072{left:298.950000px;}
.x9_c00072{left:300.600000px;}
.x2e_c00072{left:303.600000px;}
.x75_c00072{left:307.200000px;}
.x59_c00072{left:311.250000px;}
.x44_c00072{left:316.350000px;}
.x77_c00072{left:317.400000px;}
.x88_c00072{left:318.450000px;}
.x52_c00072{left:319.950000px;}
.x3e_c00072{left:322.050000px;}
.x49_c00072{left:323.100000px;}
.x9e_c00072{left:324.300000px;}
.x1_c00072{left:327.300000px;}
.x20_c00072{left:329.100000px;}
.x90_c00072{left:330.600000px;}
.x14_c00072{left:331.800000px;}
.x3f_c00072{left:333.600000px;}
.x61_c00072{left:335.100000px;}
.x4e_c00072{left:337.500000px;}
.x89_c00072{left:338.550000px;}
.x36_c00072{left:340.950000px;}
.x68_c00072{left:342.750000px;}
.x64_c00072{left:343.800000px;}
.xa4_c00072{left:345.450000px;}
.x4a_c00072{left:348.300000px;}
.x15_c00072{left:350.100000px;}
.x5e_c00072{left:351.900000px;}
.x92_c00072{left:353.250000px;}
.x9f_c00072{left:354.900000px;}
.x78_c00072{left:356.250000px;}
.x53_c00072{left:359.250000px;}
.x71_c00072{left:361.350000px;}
.x1a_c00072{left:362.400000px;}
.x5a_c00072{left:363.750000px;}
.x26_c00072{left:364.950000px;}
.xa_c00072{left:367.200000px;}
.x16_c00072{left:368.400000px;}
.x4b_c00072{left:372.750000px;}
.x6d_c00072{left:373.800000px;}
.x45_c00072{left:376.500000px;}
.xb_c00072{left:378.000000px;}
.x85_c00072{left:379.950000px;}
.x37_c00072{left:381.300000px;}
.x98_c00072{left:383.550000px;}
.x79_c00072{left:385.800000px;}
.x96_c00072{left:386.850000px;}
.xa3_c00072{left:388.500000px;}
.x2f_c00072{left:390.750000px;}
.xc_c00072{left:392.700000px;}
.x54_c00072{left:397.350000px;}
.x4c_c00072{left:399.450000px;}
.x65_c00072{left:401.400000px;}
.x7c_c00072{left:409.050000px;}
.x6e_c00072{left:411.300000px;}
.x60_c00072{left:412.500000px;}
.x130_c00072{left:432.300000px;}
.x134_c00072{left:433.800000px;}
.xe6_c00072{left:436.650000px;}
.xd8_c00072{left:437.700000px;}
.xd_c00072{left:441.300000px;}
.xab_c00072{left:442.500000px;}
.x13e_c00072{left:448.950000px;}
.x125_c00072{left:450.000000px;}
.x117_c00072{left:451.050000px;}
.x10e_c00072{left:452.700000px;}
.xf6_c00072{left:453.750000px;}
.xdd_c00072{left:454.800000px;}
.xaf_c00072{left:456.600000px;}
.xee_c00072{left:460.350000px;}
.xea_c00072{left:465.150000px;}
.x13f_c00072{left:467.700000px;}
.x10b_c00072{left:469.200000px;}
.xde_c00072{left:472.500000px;}
.x118_c00072{left:474.750000px;}
.xb0_c00072{left:476.250000px;}
.xbe_c00072{left:478.500000px;}
.xc5_c00072{left:480.600000px;}
.x11e_c00072{left:481.650000px;}
.x13d_c00072{left:483.450000px;}
.xef_c00072{left:485.850000px;}
.x12f_c00072{left:488.400000px;}
.xf7_c00072{left:490.050000px;}
.xdf_c00072{left:491.250000px;}
.x133_c00072{left:492.600000px;}
.xb7_c00072{left:496.500000px;}
.x135_c00072{left:497.850000px;}
.xe_c00072{left:499.950000px;}
.xfc_c00072{left:502.050000px;}
.x13b_c00072{left:504.600000px;}
.x101_c00072{left:505.650000px;}
.xaa_c00072{left:508.350000px;}
.xce_c00072{left:510.900000px;}
.x113_c00072{left:513.750000px;}
.xf0_c00072{left:515.700000px;}
.x13a_c00072{left:517.350000px;}
.xd4_c00072{left:518.400000px;}
.xb8_c00072{left:523.200000px;}
.x102_c00072{left:526.200000px;}
.xc6_c00072{left:527.700000px;}
.x131_c00072{left:529.500000px;}
.xbf_c00072{left:531.450000px;}
.x136_c00072{left:535.200000px;}
.x10c_c00072{left:538.050000px;}
.x119_c00072{left:539.250000px;}
.xe7_c00072{left:540.300000px;}
.xcf_c00072{left:542.250000px;}
.xb1_c00072{left:546.450000px;}
.x140_c00072{left:548.700000px;}
.xd0_c00072{left:550.950000px;}
.x103_c00072{left:553.500000px;}
.xd5_c00072{left:555.900000px;}
.x129_c00072{left:557.400000px;}
.xc0_c00072{left:559.950000px;}
.xc7_c00072{left:561.600000px;}
.xe0_c00072{left:562.950000px;}
.x126_c00072{left:565.200000px;}
.xd1_c00072{left:566.850000px;}
.xc1_c00072{left:568.650000px;}
.x12c_c00072{left:571.050000px;}
.xb2_c00072{left:572.400000px;}
.xb9_c00072{left:574.050000px;}
.xf1_c00072{left:575.100000px;}
.x138_c00072{left:576.900000px;}
.x107_c00072{left:578.250000px;}
.x123_c00072{left:581.100000px;}
.x137_c00072{left:582.300000px;}
.xac_c00072{left:584.400000px;}
.x11f_c00072{left:586.050000px;}
.xfd_c00072{left:587.400000px;}
.xd9_c00072{left:588.450000px;}
.x12a_c00072{left:589.800000px;}
.xd2_c00072{left:591.000000px;}
.xd6_c00072{left:593.700000px;}
.xba_c00072{left:597.150000px;}
.xb3_c00072{left:600.450000px;}
.xf2_c00072{left:604.650000px;}
.xf8_c00072{left:606.000000px;}
.x120_c00072{left:607.350000px;}
.x11a_c00072{left:608.700000px;}
.xc8_c00072{left:612.000000px;}
.x132_c00072{left:613.500000px;}
.x108_c00072{left:616.350000px;}
.xe1_c00072{left:618.150000px;}
.x12d_c00072{left:620.400000px;}
.xda_c00072{left:622.650000px;}
.x121_c00072{left:624.600000px;}
.x11c_c00072{left:625.650000px;}
.xf3_c00072{left:627.300000px;}
.x10f_c00072{left:628.650000px;}
.xe2_c00072{left:630.750000px;}
.xfe_c00072{left:634.200000px;}
.xf9_c00072{left:636.750000px;}
.x10d_c00072{left:638.850000px;}
.xeb_c00072{left:640.350000px;}
.x127_c00072{left:641.550000px;}
.xbb_c00072{left:642.900000px;}
.x141_c00072{left:645.150000px;}
.x12b_c00072{left:646.650000px;}
.xec_c00072{left:649.650000px;}
.xd7_c00072{left:651.900000px;}
.xc9_c00072{left:653.100000px;}
.x114_c00072{left:654.150000px;}
.xe3_c00072{left:655.200000px;}
.xb4_c00072{left:656.700000px;}
.x122_c00072{left:657.750000px;}
.x104_c00072{left:664.800000px;}
.xc2_c00072{left:666.300000px;}
.xca_c00072{left:669.300000px;}
.xad_c00072{left:670.800000px;}
.x142_c00072{left:672.900000px;}
.xff_c00072{left:674.100000px;}
.xcb_c00072{left:676.500000px;}
.xed_c00072{left:679.200000px;}
.xb5_c00072{left:681.150000px;}
.xdb_c00072{left:685.200000px;}
.x143_c00072{left:686.550000px;}
.x110_c00072{left:687.750000px;}
.x115_c00072{left:690.450000px;}
.xbc_c00072{left:694.050000px;}
.xe5_c00072{left:695.850000px;}
.xcc_c00072{left:697.350000px;}
.x111_c00072{left:698.550000px;}
.xfa_c00072{left:703.650000px;}
.xe8_c00072{left:705.600000px;}
.x105_c00072{left:709.050000px;}
.xe4_c00072{left:710.700000px;}
.x13c_c00072{left:712.800000px;}
.xc3_c00072{left:716.700000px;}
.xdc_c00072{left:718.350000px;}
.xf4_c00072{left:721.200000px;}
.x116_c00072{left:723.600000px;}
.x11b_c00072{left:725.250000px;}
.xd3_c00072{left:726.300000px;}
.x139_c00072{left:728.100000px;}
.x109_c00072{left:729.750000px;}
.x11d_c00072{left:731.850000px;}
.xe9_c00072{left:733.350000px;}
.xbd_c00072{left:736.950000px;}
.xcd_c00072{left:738.450000px;}
.x106_c00072{left:741.450000px;}
.x128_c00072{left:742.650000px;}
.x112_c00072{left:743.850000px;}
.x124_c00072{left:745.950000px;}
.xb6_c00072{left:747.450000px;}
.x10a_c00072{left:749.250000px;}
.xf5_c00072{left:750.750000px;}
.x100_c00072{left:752.250000px;}
.xc4_c00072{left:754.200000px;}
.x12e_c00072{left:757.950000px;}
.xfb_c00072{left:759.150000px;}
.xae_c00072{left:761.100000px;}
.x2_c00072{left:762.150000px;}
.x147_c00072{left:763.500000px;}
.x144_c00072{left:919.800000px;}
.x145_c00072{left:922.650000px;}
.x146_c00072{left:928.800000px;}
.x149_c00072{left:932.100000px;}
.x148_c00072{left:933.150000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws4_c00072{word-spacing:-8.062016pt;}
.wsb_c00072{word-spacing:-7.830149pt;}
.ws3_c00072{word-spacing:-6.455026pt;}
.ws7_c00072{word-spacing:-1.834395pt;}
.wsa_c00072{word-spacing:-0.966184pt;}
.ws6_c00072{word-spacing:-0.166667pt;}
.wsc_c00072{word-spacing:0.000000pt;}
.ws8_c00072{word-spacing:3.047619pt;}
.ws2_c00072{word-spacing:7.609075pt;}
.ws0_c00072{word-spacing:9.022919pt;}
.ws9_c00072{word-spacing:17.333333pt;}
.ws5_c00072{word-spacing:32.380952pt;}
.ws1_c00072{word-spacing:61.871345pt;}
.fs1_c00072{font-size:21.333333pt;}
.fs7_c00072{font-size:26.666667pt;}
.fs8_c00072{font-size:37.333333pt;}
.fs4_c00072{font-size:42.666667pt;}
.fs5_c00072{font-size:53.333333pt;}
.fs3_c00072{font-size:58.666667pt;}
.fs2_c00072{font-size:64.000000pt;}
.fs6_c00072{font-size:69.333333pt;}
.fs0_c00072{font-size:74.666667pt;}
.y0_c00072{bottom:0.000000pt;}
.y6a_c00072{bottom:10.266667pt;}
.y2_c00072{bottom:12.800000pt;}
.y6d_c00072{bottom:20.133333pt;}
.y37_c00072{bottom:49.600000pt;}
.y6c_c00072{bottom:66.000000pt;}
.y6f_c00072{bottom:87.066667pt;}
.y6b_c00072{bottom:88.666667pt;}
.y6e_c00072{bottom:109.733333pt;}
.y69_c00072{bottom:150.400000pt;}
.y36_c00072{bottom:163.866667pt;}
.y68_c00072{bottom:167.333333pt;}
.y35_c00072{bottom:180.533333pt;}
.y67_c00072{bottom:183.333333pt;}
.y34_c00072{bottom:196.800000pt;}
.y66_c00072{bottom:205.066667pt;}
.y33_c00072{bottom:212.800000pt;}
.y65_c00072{bottom:222.400000pt;}
.y32_c00072{bottom:228.800000pt;}
.y64_c00072{bottom:238.400000pt;}
.y31_c00072{bottom:244.800000pt;}
.y63_c00072{bottom:254.400000pt;}
.y30_c00072{bottom:263.733333pt;}
.y62_c00072{bottom:270.133333pt;}
.y2f_c00072{bottom:280.666667pt;}
.y61_c00072{bottom:286.133333pt;}
.y2e_c00072{bottom:300.400000pt;}
.y60_c00072{bottom:304.666667pt;}
.y2d_c00072{bottom:316.133333pt;}
.y5f_c00072{bottom:321.333333pt;}
.y2c_c00072{bottom:332.400000pt;}
.y5e_c00072{bottom:347.866667pt;}
.y2b_c00072{bottom:348.400000pt;}
.y2a_c00072{bottom:364.133333pt;}
.y5d_c00072{bottom:365.466667pt;}
.y29_c00072{bottom:380.400000pt;}
.y5c_c00072{bottom:381.466667pt;}
.y28_c00072{bottom:396.400000pt;}
.y5b_c00072{bottom:401.200000pt;}
.y27_c00072{bottom:412.400000pt;}
.y5a_c00072{bottom:416.933333pt;}
.y26_c00072{bottom:428.400000pt;}
.y59_c00072{bottom:432.933333pt;}
.y25_c00072{bottom:444.400000pt;}
.y58_c00072{bottom:448.933333pt;}
.y24_c00072{bottom:460.400000pt;}
.y57_c00072{bottom:464.933333pt;}
.y23_c00072{bottom:476.133333pt;}
.y56_c00072{bottom:480.933333pt;}
.y22_c00072{bottom:492.400000pt;}
.y55_c00072{bottom:496.933333pt;}
.y21_c00072{bottom:508.133333pt;}
.y54_c00072{bottom:512.933333pt;}
.y20_c00072{bottom:524.133333pt;}
.y53_c00072{bottom:528.933333pt;}
.y1f_c00072{bottom:540.400000pt;}
.y52_c00072{bottom:544.933333pt;}
.y1e_c00072{bottom:556.400000pt;}
.y51_c00072{bottom:560.933333pt;}
.y1d_c00072{bottom:572.400000pt;}
.y50_c00072{bottom:576.666667pt;}
.y1c_c00072{bottom:588.133333pt;}
.y4f_c00072{bottom:592.933333pt;}
.y1b_c00072{bottom:604.133333pt;}
.y4e_c00072{bottom:608.266667pt;}
.y1a_c00072{bottom:620.133333pt;}
.y4d_c00072{bottom:624.000000pt;}
.y19_c00072{bottom:637.733333pt;}
.y4c_c00072{bottom:640.000000pt;}
.y18_c00072{bottom:650.533333pt;}
.y4b_c00072{bottom:656.266667pt;}
.y17_c00072{bottom:664.933333pt;}
.y4a_c00072{bottom:672.266667pt;}
.y16_c00072{bottom:676.800000pt;}
.y49_c00072{bottom:688.266667pt;}
.y15_c00072{bottom:689.333333pt;}
.y48_c00072{bottom:704.266667pt;}
.y14_c00072{bottom:705.333333pt;}
.y47_c00072{bottom:720.266667pt;}
.y13_c00072{bottom:721.333333pt;}
.y46_c00072{bottom:736.266667pt;}
.y12_c00072{bottom:740.533333pt;}
.y45_c00072{bottom:754.666667pt;}
.y11_c00072{bottom:757.200000pt;}
.y44_c00072{bottom:767.733333pt;}
.y10_c00072{bottom:773.200000pt;}
.y43_c00072{bottom:779.200000pt;}
.yf_c00072{bottom:789.200000pt;}
.y42_c00072{bottom:796.133333pt;}
.ye_c00072{bottom:805.200000pt;}
.y41_c00072{bottom:812.133333pt;}
.yd_c00072{bottom:821.466667pt;}
.y40_c00072{bottom:831.600000pt;}
.yc_c00072{bottom:836.800000pt;}
.y3f_c00072{bottom:847.600000pt;}
.yb_c00072{bottom:856.266667pt;}
.y3e_c00072{bottom:863.600000pt;}
.ya_c00072{bottom:872.266667pt;}
.y3d_c00072{bottom:879.600000pt;}
.y9_c00072{bottom:892.533333pt;}
.y3c_c00072{bottom:895.600000pt;}
.y8_c00072{bottom:908.533333pt;}
.y3b_c00072{bottom:911.333333pt;}
.y7_c00072{bottom:928.000000pt;}
.y3a_c00072{bottom:931.200000pt;}
.y39_c00072{bottom:947.200000pt;}
.y6_c00072{bottom:948.133333pt;}
.y5_c00072{bottom:964.133333pt;}
.y38_c00072{bottom:975.066667pt;}
.y4_c00072{bottom:980.133333pt;}
.y3_c00072{bottom:996.133333pt;}
.y1_c00072{bottom:1019.866667pt;}
.h3_c00072{height:21.333333pt;}
.h9_c00072{height:26.666667pt;}
.ha_c00072{height:37.333333pt;}
.h6_c00072{height:42.666667pt;}
.h7_c00072{height:53.333333pt;}
.h5_c00072{height:58.666667pt;}
.h4_c00072{height:64.000000pt;}
.h8_c00072{height:69.333333pt;}
.h2_c00072{height:74.666667pt;}
.h1_c00072{height:1138.000000pt;}
.h0_c00072{height:1138.239991pt;}
.w0_c00072{width:843.200032pt;}
.w1_c00072{width:843.333333pt;}
.x0_c00072{left:0.000000pt;}
.x3_c00072{left:19.200000pt;}
.x62_c00072{left:63.333333pt;}
.x55_c00072{left:64.666667pt;}
.x23_c00072{left:66.266667pt;}
.x21_c00072{left:67.466667pt;}
.x29_c00072{left:68.800000pt;}
.xa9_c00072{left:74.266667pt;}
.xa5_c00072{left:76.666667pt;}
.x82_c00072{left:79.066667pt;}
.x7f_c00072{left:80.000000pt;}
.x38_c00072{left:81.333333pt;}
.x4f_c00072{left:83.066667pt;}
.x4_c00072{left:84.533333pt;}
.x86_c00072{left:89.333333pt;}
.x67_c00072{left:91.866667pt;}
.x66_c00072{left:92.800000pt;}
.x2a_c00072{left:94.133333pt;}
.x99_c00072{left:96.400000pt;}
.xa0_c00072{left:97.333333pt;}
.x8a_c00072{left:98.266667pt;}
.xa8_c00072{left:99.200000pt;}
.x17_c00072{left:100.933333pt;}
.x1b_c00072{left:102.666667pt;}
.x9b_c00072{left:104.666667pt;}
.x56_c00072{left:107.200000pt;}
.x7d_c00072{left:108.533333pt;}
.xf_c00072{left:110.666667pt;}
.x93_c00072{left:111.733333pt;}
.x80_c00072{left:114.266667pt;}
.x39_c00072{left:115.200000pt;}
.x5b_c00072{left:116.400000pt;}
.x5f_c00072{left:118.400000pt;}
.x40_c00072{left:121.200000pt;}
.x7a_c00072{left:122.666667pt;}
.x2b_c00072{left:124.266667pt;}
.x22_c00072{left:126.400000pt;}
.x5c_c00072{left:128.533333pt;}
.x24_c00072{left:129.600000pt;}
.x27_c00072{left:131.866667pt;}
.xa6_c00072{left:133.466667pt;}
.x4d_c00072{left:134.533333pt;}
.x1c_c00072{left:139.200000pt;}
.x5_c00072{left:143.733333pt;}
.x69_c00072{left:144.666667pt;}
.x10_c00072{left:148.400000pt;}
.x9c_c00072{left:150.400000pt;}
.x18_c00072{left:151.866667pt;}
.x8b_c00072{left:153.333333pt;}
.x3a_c00072{left:156.133333pt;}
.x46_c00072{left:157.333333pt;}
.x1d_c00072{left:158.400000pt;}
.x76_c00072{left:159.466667pt;}
.x30_c00072{left:160.400000pt;}
.x72_c00072{left:161.466667pt;}
.x6f_c00072{left:162.400000pt;}
.x81_c00072{left:164.533333pt;}
.x41_c00072{left:165.733333pt;}
.x11_c00072{left:167.600000pt;}
.x9d_c00072{left:169.600000pt;}
.x8f_c00072{left:170.933333pt;}
.x3b_c00072{left:171.866667pt;}
.x83_c00072{left:175.333333pt;}
.x6_c00072{left:177.066667pt;}
.x7b_c00072{left:179.600000pt;}
.x31_c00072{left:180.533333pt;}
.x28_c00072{left:182.400000pt;}
.x19_c00072{left:184.800000pt;}
.x91_c00072{left:187.066667pt;}
.x50_c00072{left:188.666667pt;}
.x2c_c00072{left:189.600000pt;}
.x6a_c00072{left:190.800000pt;}
.x12_c00072{left:191.866667pt;}
.x57_c00072{left:194.800000pt;}
.x1e_c00072{left:195.866667pt;}
.xa7_c00072{left:197.733333pt;}
.x7_c00072{left:199.733333pt;}
.x97_c00072{left:201.333333pt;}
.x94_c00072{left:204.133333pt;}
.x47_c00072{left:206.000000pt;}
.x8c_c00072{left:207.733333pt;}
.x51_c00072{left:209.466667pt;}
.xa2_c00072{left:210.533333pt;}
.x7e_c00072{left:212.800000pt;}
.x42_c00072{left:214.666667pt;}
.x3c_c00072{left:217.866667pt;}
.xa1_c00072{left:218.933333pt;}
.x63_c00072{left:219.866667pt;}
.x32_c00072{left:221.466667pt;}
.x95_c00072{left:224.266667pt;}
.x84_c00072{left:225.600000pt;}
.x87_c00072{left:228.000000pt;}
.x74_c00072{left:229.600000pt;}
.x8d_c00072{left:230.800000pt;}
.x5d_c00072{left:232.400000pt;}
.x33_c00072{left:235.866667pt;}
.x43_c00072{left:237.066667pt;}
.x3d_c00072{left:238.933333pt;}
.x58_c00072{left:239.866667pt;}
.x48_c00072{left:241.200000pt;}
.x9a_c00072{left:243.466667pt;}
.x34_c00072{left:245.200000pt;}
.x13_c00072{left:246.266667pt;}
.x6b_c00072{left:247.733333pt;}
.x1f_c00072{left:249.333333pt;}
.x8_c00072{left:250.933333pt;}
.x25_c00072{left:252.133333pt;}
.x35_c00072{left:255.733333pt;}
.x6c_c00072{left:257.333333pt;}
.x2d_c00072{left:258.400000pt;}
.x73_c00072{left:261.600000pt;}
.x70_c00072{left:264.533333pt;}
.x8e_c00072{left:265.733333pt;}
.x9_c00072{left:267.200000pt;}
.x2e_c00072{left:269.866667pt;}
.x75_c00072{left:273.066667pt;}
.x59_c00072{left:276.666667pt;}
.x44_c00072{left:281.200000pt;}
.x77_c00072{left:282.133333pt;}
.x88_c00072{left:283.066667pt;}
.x52_c00072{left:284.400000pt;}
.x3e_c00072{left:286.266667pt;}
.x49_c00072{left:287.200000pt;}
.x9e_c00072{left:288.266667pt;}
.x1_c00072{left:290.933333pt;}
.x20_c00072{left:292.533333pt;}
.x90_c00072{left:293.866667pt;}
.x14_c00072{left:294.933333pt;}
.x3f_c00072{left:296.533333pt;}
.x61_c00072{left:297.866667pt;}
.x4e_c00072{left:300.000000pt;}
.x89_c00072{left:300.933333pt;}
.x36_c00072{left:303.066667pt;}
.x68_c00072{left:304.666667pt;}
.x64_c00072{left:305.600000pt;}
.xa4_c00072{left:307.066667pt;}
.x4a_c00072{left:309.600000pt;}
.x15_c00072{left:311.200000pt;}
.x5e_c00072{left:312.800000pt;}
.x92_c00072{left:314.000000pt;}
.x9f_c00072{left:315.466667pt;}
.x78_c00072{left:316.666667pt;}
.x53_c00072{left:319.333333pt;}
.x71_c00072{left:321.200000pt;}
.x1a_c00072{left:322.133333pt;}
.x5a_c00072{left:323.333333pt;}
.x26_c00072{left:324.400000pt;}
.xa_c00072{left:326.400000pt;}
.x16_c00072{left:327.466667pt;}
.x4b_c00072{left:331.333333pt;}
.x6d_c00072{left:332.266667pt;}
.x45_c00072{left:334.666667pt;}
.xb_c00072{left:336.000000pt;}
.x85_c00072{left:337.733333pt;}
.x37_c00072{left:338.933333pt;}
.x98_c00072{left:340.933333pt;}
.x79_c00072{left:342.933333pt;}
.x96_c00072{left:343.866667pt;}
.xa3_c00072{left:345.333333pt;}
.x2f_c00072{left:347.333333pt;}
.xc_c00072{left:349.066667pt;}
.x54_c00072{left:353.200000pt;}
.x4c_c00072{left:355.066667pt;}
.x65_c00072{left:356.800000pt;}
.x7c_c00072{left:363.600000pt;}
.x6e_c00072{left:365.600000pt;}
.x60_c00072{left:366.666667pt;}
.x130_c00072{left:384.266667pt;}
.x134_c00072{left:385.600000pt;}
.xe6_c00072{left:388.133333pt;}
.xd8_c00072{left:389.066667pt;}
.xd_c00072{left:392.266667pt;}
.xab_c00072{left:393.333333pt;}
.x13e_c00072{left:399.066667pt;}
.x125_c00072{left:400.000000pt;}
.x117_c00072{left:400.933333pt;}
.x10e_c00072{left:402.400000pt;}
.xf6_c00072{left:403.333333pt;}
.xdd_c00072{left:404.266667pt;}
.xaf_c00072{left:405.866667pt;}
.xee_c00072{left:409.200000pt;}
.xea_c00072{left:413.466667pt;}
.x13f_c00072{left:415.733333pt;}
.x10b_c00072{left:417.066667pt;}
.xde_c00072{left:420.000000pt;}
.x118_c00072{left:422.000000pt;}
.xb0_c00072{left:423.333333pt;}
.xbe_c00072{left:425.333333pt;}
.xc5_c00072{left:427.200000pt;}
.x11e_c00072{left:428.133333pt;}
.x13d_c00072{left:429.733333pt;}
.xef_c00072{left:431.866667pt;}
.x12f_c00072{left:434.133333pt;}
.xf7_c00072{left:435.600000pt;}
.xdf_c00072{left:436.666667pt;}
.x133_c00072{left:437.866667pt;}
.xb7_c00072{left:441.333333pt;}
.x135_c00072{left:442.533333pt;}
.xe_c00072{left:444.400000pt;}
.xfc_c00072{left:446.266667pt;}
.x13b_c00072{left:448.533333pt;}
.x101_c00072{left:449.466667pt;}
.xaa_c00072{left:451.866667pt;}
.xce_c00072{left:454.133333pt;}
.x113_c00072{left:456.666667pt;}
.xf0_c00072{left:458.400000pt;}
.x13a_c00072{left:459.866667pt;}
.xd4_c00072{left:460.800000pt;}
.xb8_c00072{left:465.066667pt;}
.x102_c00072{left:467.733333pt;}
.xc6_c00072{left:469.066667pt;}
.x131_c00072{left:470.666667pt;}
.xbf_c00072{left:472.400000pt;}
.x136_c00072{left:475.733333pt;}
.x10c_c00072{left:478.266667pt;}
.x119_c00072{left:479.333333pt;}
.xe7_c00072{left:480.266667pt;}
.xcf_c00072{left:482.000000pt;}
.xb1_c00072{left:485.733333pt;}
.x140_c00072{left:487.733333pt;}
.xd0_c00072{left:489.733333pt;}
.x103_c00072{left:492.000000pt;}
.xd5_c00072{left:494.133333pt;}
.x129_c00072{left:495.466667pt;}
.xc0_c00072{left:497.733333pt;}
.xc7_c00072{left:499.200000pt;}
.xe0_c00072{left:500.400000pt;}
.x126_c00072{left:502.400000pt;}
.xd1_c00072{left:503.866667pt;}
.xc1_c00072{left:505.466667pt;}
.x12c_c00072{left:507.600000pt;}
.xb2_c00072{left:508.800000pt;}
.xb9_c00072{left:510.266667pt;}
.xf1_c00072{left:511.200000pt;}
.x138_c00072{left:512.800000pt;}
.x107_c00072{left:514.000000pt;}
.x123_c00072{left:516.533333pt;}
.x137_c00072{left:517.600000pt;}
.xac_c00072{left:519.466667pt;}
.x11f_c00072{left:520.933333pt;}
.xfd_c00072{left:522.133333pt;}
.xd9_c00072{left:523.066667pt;}
.x12a_c00072{left:524.266667pt;}
.xd2_c00072{left:525.333333pt;}
.xd6_c00072{left:527.733333pt;}
.xba_c00072{left:530.800000pt;}
.xb3_c00072{left:533.733333pt;}
.xf2_c00072{left:537.466667pt;}
.xf8_c00072{left:538.666667pt;}
.x120_c00072{left:539.866667pt;}
.x11a_c00072{left:541.066667pt;}
.xc8_c00072{left:544.000000pt;}
.x132_c00072{left:545.333333pt;}
.x108_c00072{left:547.866667pt;}
.xe1_c00072{left:549.466667pt;}
.x12d_c00072{left:551.466667pt;}
.xda_c00072{left:553.466667pt;}
.x121_c00072{left:555.200000pt;}
.x11c_c00072{left:556.133333pt;}
.xf3_c00072{left:557.600000pt;}
.x10f_c00072{left:558.800000pt;}
.xe2_c00072{left:560.666667pt;}
.xfe_c00072{left:563.733333pt;}
.xf9_c00072{left:566.000000pt;}
.x10d_c00072{left:567.866667pt;}
.xeb_c00072{left:569.200000pt;}
.x127_c00072{left:570.266667pt;}
.xbb_c00072{left:571.466667pt;}
.x141_c00072{left:573.466667pt;}
.x12b_c00072{left:574.800000pt;}
.xec_c00072{left:577.466667pt;}
.xd7_c00072{left:579.466667pt;}
.xc9_c00072{left:580.533333pt;}
.x114_c00072{left:581.466667pt;}
.xe3_c00072{left:582.400000pt;}
.xb4_c00072{left:583.733333pt;}
.x122_c00072{left:584.666667pt;}
.x104_c00072{left:590.933333pt;}
.xc2_c00072{left:592.266667pt;}
.xca_c00072{left:594.933333pt;}
.xad_c00072{left:596.266667pt;}
.x142_c00072{left:598.133333pt;}
.xff_c00072{left:599.200000pt;}
.xcb_c00072{left:601.333333pt;}
.xed_c00072{left:603.733333pt;}
.xb5_c00072{left:605.466667pt;}
.xdb_c00072{left:609.066667pt;}
.x143_c00072{left:610.266667pt;}
.x110_c00072{left:611.333333pt;}
.x115_c00072{left:613.733333pt;}
.xbc_c00072{left:616.933333pt;}
.xe5_c00072{left:618.533333pt;}
.xcc_c00072{left:619.866667pt;}
.x111_c00072{left:620.933333pt;}
.xfa_c00072{left:625.466667pt;}
.xe8_c00072{left:627.200000pt;}
.x105_c00072{left:630.266667pt;}
.xe4_c00072{left:631.733333pt;}
.x13c_c00072{left:633.600000pt;}
.xc3_c00072{left:637.066667pt;}
.xdc_c00072{left:638.533333pt;}
.xf4_c00072{left:641.066667pt;}
.x116_c00072{left:643.200000pt;}
.x11b_c00072{left:644.666667pt;}
.xd3_c00072{left:645.600000pt;}
.x139_c00072{left:647.200000pt;}
.x109_c00072{left:648.666667pt;}
.x11d_c00072{left:650.533333pt;}
.xe9_c00072{left:651.866667pt;}
.xbd_c00072{left:655.066667pt;}
.xcd_c00072{left:656.400000pt;}
.x106_c00072{left:659.066667pt;}
.x128_c00072{left:660.133333pt;}
.x112_c00072{left:661.200000pt;}
.x124_c00072{left:663.066667pt;}
.xb6_c00072{left:664.400000pt;}
.x10a_c00072{left:666.000000pt;}
.xf5_c00072{left:667.333333pt;}
.x100_c00072{left:668.666667pt;}
.xc4_c00072{left:670.400000pt;}
.x12e_c00072{left:673.733333pt;}
.xfb_c00072{left:674.800000pt;}
.xae_c00072{left:676.533333pt;}
.x2_c00072{left:677.466667pt;}
.x147_c00072{left:678.666667pt;}
.x144_c00072{left:817.600000pt;}
.x145_c00072{left:820.133333pt;}
.x146_c00072{left:825.600000pt;}
.x149_c00072{left:828.533333pt;}
.x148_c00072{left:829.466667pt;}
}





/* 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_c00073 {
    display:none;
  }
  .loading-indicator_c00073.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00073 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_c00073 { 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_c00073" -> "#page-container .classname_c00073")
 */
.pf_c00073 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00073 { /* 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_c00073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00073 { /* 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_c00073 { /* 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_c00073 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00073 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00073 {overflow:visible;}
  }
}
.c_c00073 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00073 { /* 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_c00073:after { /* webkit #35443 */
  content: '';
}
.t_c00073:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00073 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 */
}
.__c00073 { /* 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_c00073 { /* info for Javascript */
  display:none;
}
.l_c00073 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00073 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00073 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00073: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_c00073 {
    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_c00073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00073.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_c00073 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00073;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.000000;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;}
.m11a_c00073{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00073{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m113_c00073{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00073{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.maf_c00073{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00073{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00073{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00073{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mae_c00073{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00073{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00073{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00073{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00073{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m33_c00073{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00073{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m100_c00073{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m7_c00073{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m82_c00073{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00073{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m76_c00073{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00073{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mec_c00073{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00073{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00073{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00073{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00073{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mff_c00073{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00073{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m77_c00073{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc_c00073{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m94_c00073{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00073{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m38_c00073{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m81_c00073{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00073{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m89_c00073{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00073{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m56_c00073{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00073{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.meb_c00073{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00073{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.me0_c00073{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m27_c00073{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00073{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m74_c00073{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00073{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m54_c00073{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m14_c00073{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mea_c00073{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m119_c00073{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00073{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me4_c00073{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00073{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m117_c00073{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m93_c00073{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00073{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00073{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m46_c00073{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00073{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00073{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mde_c00073{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mca_c00073{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00073{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m49_c00073{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m47_c00073{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m19_c00073{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00073{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m48_c00073{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00073{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m45_c00073{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.me1_c00073{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m110_c00073{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m26_c00073{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m24_c00073{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00073{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m61_c00073{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me7_c00073{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00073{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00073{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m63_c00073{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mda_c00073{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.med_c00073{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00073{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m116_c00073{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mad_c00073{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m50_c00073{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00073{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m12_c00073{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m42_c00073{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00073{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00073{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md9_c00073{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m21_c00073{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00073{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00073{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me6_c00073{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00073{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00073{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m32_c00073{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00073{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma_c00073{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md3_c00073{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m88_c00073{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00073{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m68_c00073{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md2_c00073{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m29_c00073{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00073{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00073{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md6_c00073{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00073{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00073{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m85_c00073{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m22_c00073{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m34_c00073{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m28_c00073{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m15_c00073{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m80_c00073{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00073{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md7_c00073{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00073{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m39_c00073{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m108_c00073{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.maa_c00073{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m104_c00073{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m36_c00073{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m25_c00073{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00073{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00073{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6_c00073{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me9_c00073{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m60_c00073{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb_c00073{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m90_c00073{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m51_c00073{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00073{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00073{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m91_c00073{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m20_c00073{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m62_c00073{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m109_c00073{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00073{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00073{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mee_c00073{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m59_c00073{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mef_c00073{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00073{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00073{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00073{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00073{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00073{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m105_c00073{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf_c00073{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m35_c00073{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m99_c00073{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m31_c00073{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00073{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00073{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m30_c00073{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m75_c00073{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m43_c00073{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m103_c00073{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m114_c00073{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00073{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m115_c00073{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m37_c00073{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00073{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00073{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m40_c00073{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m16_c00073{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me3_c00073{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.me2_c00073{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m107_c00073{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00073{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00073{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m78_c00073{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00073{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me_c00073{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m41_c00073{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m112_c00073{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.md0_c00073{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mab_c00073{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me5_c00073{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m17_c00073{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m9_c00073{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mba_c00073{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m65_c00073{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00073{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m106_c00073{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00073{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00073{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m8_c00073{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m23_c00073{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m44_c00073{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m0_c00073{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md4_c00073{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00073{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m55_c00073{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00073{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m118_c00073{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m97_c00073{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00073{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00073{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00073{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m111_c00073{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00073{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00073{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00073{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00073{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00073{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m67_c00073{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m18_c00073{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00073{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00073{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5_c00073{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00073{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11_c00073{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m70_c00073{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m79_c00073{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m98_c00073{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00073{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00073{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00073{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m83_c00073{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00073{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00073{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00073{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.me8_c00073{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00073{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m52_c00073{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.md8_c00073{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.md_c00073{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md5_c00073{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m57_c00073{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00073{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00073{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m58_c00073{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00073{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m84_c00073{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00073{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m10_c00073{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00073{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00073{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00073{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mac_c00073{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m102_c00073{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m53_c00073{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mce_c00073{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00073{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m96_c00073{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00073{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m66_c00073{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m87_c00073{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00073{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00073{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m13_c00073{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.md1_c00073{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m101_c00073{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m73_c00073{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00073{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00073{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00073{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m72_c00073{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00073{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m69_c00073{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m92_c00073{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m95_c00073{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00073{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00073{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00073{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m64_c00073{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m2_c00073{transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00073{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00073{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00073{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00073{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00073{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00073{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00073{transform:matrix(0.572750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572750,0.000000,0.000000,0.250000,0,0);}
.m86_c00073{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00073{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m71_c00073{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls0_c00073{letter-spacing:0.000000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{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__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00073{word-spacing:-11.735395px;}
.ws0_c00073{word-spacing:-7.857143px;}
.ws2_c00073{word-spacing:0.000000px;}
.ws7_c00073{word-spacing:4.487662px;}
.ws4_c00073{word-spacing:4.749141px;}
.ws8_c00073{word-spacing:13.611940px;}
.ws3_c00073{word-spacing:18.184049px;}
.ws5_c00073{word-spacing:19.411765px;}
.ws6_c00073{word-spacing:174.571429px;}
.fc0_c00073{color:transparent;}
.fs1_c00073{font-size:24.000000px;}
.fs6_c00073{font-size:48.000000px;}
.fs4_c00073{font-size:54.000000px;}
.fs3_c00073{font-size:60.000000px;}
.fs5_c00073{font-size:66.000000px;}
.fs7_c00073{font-size:72.000000px;}
.fs0_c00073{font-size:78.000000px;}
.fs2_c00073{font-size:84.000000px;}
.y0_c00073{bottom:0.000000px;}
.y6e_c00073{bottom:198.000000px;}
.y3b_c00073{bottom:208.200000px;}
.y6d_c00073{bottom:216.000000px;}
.y3a_c00073{bottom:225.900000px;}
.y6c_c00073{bottom:234.000000px;}
.y39_c00073{bottom:243.600000px;}
.y6b_c00073{bottom:252.000000px;}
.y38_c00073{bottom:261.300000px;}
.y6a_c00073{bottom:270.000000px;}
.y37_c00073{bottom:278.250000px;}
.y69_c00073{bottom:288.000000px;}
.y36_c00073{bottom:296.400000px;}
.y35_c00073{bottom:303.900000px;}
.y68_c00073{bottom:306.000000px;}
.y34_c00073{bottom:313.950000px;}
.y67_c00073{bottom:324.450000px;}
.y33_c00073{bottom:331.200000px;}
.y66_c00073{bottom:342.750000px;}
.y32_c00073{bottom:348.900000px;}
.y65_c00073{bottom:360.000000px;}
.y31_c00073{bottom:366.150000px;}
.y64_c00073{bottom:378.000000px;}
.y30_c00073{bottom:384.600000px;}
.y63_c00073{bottom:396.000000px;}
.y2f_c00073{bottom:399.300000px;}
.y2d_c00073{bottom:404.250000px;}
.y62_c00073{bottom:414.000000px;}
.y2e_c00073{bottom:416.100000px;}
.y2c_c00073{bottom:418.650000px;}
.y61_c00073{bottom:431.700000px;}
.y2b_c00073{bottom:432.750000px;}
.y2a_c00073{bottom:448.200000px;}
.y60_c00073{bottom:449.700000px;}
.y29_c00073{bottom:461.100000px;}
.y5f_c00073{bottom:467.250000px;}
.y28_c00073{bottom:476.700000px;}
.y5e_c00073{bottom:485.250000px;}
.y27_c00073{bottom:491.850000px;}
.y5d_c00073{bottom:503.250000px;}
.y26_c00073{bottom:505.500000px;}
.y25_c00073{bottom:520.200000px;}
.y5c_c00073{bottom:521.250000px;}
.y5b_c00073{bottom:539.250000px;}
.y24_c00073{bottom:539.700000px;}
.y5a_c00073{bottom:556.950000px;}
.y23_c00073{bottom:557.700000px;}
.y59_c00073{bottom:574.950000px;}
.y22_c00073{bottom:578.550000px;}
.y58_c00073{bottom:592.950000px;}
.y21_c00073{bottom:595.800000px;}
.y20_c00073{bottom:613.500000px;}
.y57_c00073{bottom:617.100000px;}
.y1f_c00073{bottom:630.750000px;}
.y56_c00073{bottom:631.800000px;}
.y1e_c00073{bottom:648.750000px;}
.y55_c00073{bottom:656.700000px;}
.y1d_c00073{bottom:666.750000px;}
.y54_c00073{bottom:674.700000px;}
.y1c_c00073{bottom:684.000000px;}
.y53_c00073{bottom:692.700000px;}
.y1b_c00073{bottom:701.250000px;}
.y52_c00073{bottom:714.900000px;}
.y1a_c00073{bottom:723.300000px;}
.y51_c00073{bottom:733.200000px;}
.y19_c00073{bottom:746.250000px;}
.y50_c00073{bottom:751.200000px;}
.y18_c00073{bottom:768.600000px;}
.y4f_c00073{bottom:768.900000px;}
.y4e_c00073{bottom:786.900000px;}
.y17_c00073{bottom:790.200000px;}
.y16_c00073{bottom:807.900000px;}
.y4d_c00073{bottom:808.500000px;}
.y15_c00073{bottom:825.300000px;}
.y4c_c00073{bottom:826.500000px;}
.y14_c00073{bottom:843.000000px;}
.y4b_c00073{bottom:853.500000px;}
.y13_c00073{bottom:860.700000px;}
.y4a_c00073{bottom:876.300000px;}
.y12_c00073{bottom:878.700000px;}
.y49_c00073{bottom:894.600000px;}
.y11_c00073{bottom:896.400000px;}
.y48_c00073{bottom:912.600000px;}
.y10_c00073{bottom:914.700000px;}
.y47_c00073{bottom:930.300000px;}
.yf_c00073{bottom:932.400000px;}
.ye_c00073{bottom:950.100000px;}
.y46_c00073{bottom:952.500000px;}
.y45_c00073{bottom:970.500000px;}
.yd_c00073{bottom:970.800000px;}
.y44_c00073{bottom:988.500000px;}
.yc_c00073{bottom:993.150000px;}
.y43_c00073{bottom:1006.500000px;}
.yb_c00073{bottom:1007.550000px;}
.y42_c00073{bottom:1024.500000px;}
.ya_c00073{bottom:1025.550000px;}
.y41_c00073{bottom:1042.500000px;}
.y9_c00073{bottom:1043.550000px;}
.y40_c00073{bottom:1060.500000px;}
.y8_c00073{bottom:1061.250000px;}
.y3f_c00073{bottom:1078.500000px;}
.y7_c00073{bottom:1079.250000px;}
.y3e_c00073{bottom:1096.500000px;}
.y6_c00073{bottom:1096.950000px;}
.y3d_c00073{bottom:1114.500000px;}
.y5_c00073{bottom:1116.000000px;}
.y4_c00073{bottom:1131.900000px;}
.y3c_c00073{bottom:1132.500000px;}
.y2_c00073{bottom:1150.500000px;}
.y1_c00073{bottom:1151.250000px;}
.y3_c00073{bottom:1157.700000px;}
.h3_c00073{height:24.000000px;}
.h8_c00073{height:48.000000px;}
.h6_c00073{height:54.000000px;}
.h5_c00073{height:60.000000px;}
.h7_c00073{height:66.000000px;}
.h9_c00073{height:72.000000px;}
.h2_c00073{height:78.000000px;}
.h4_c00073{height:84.000000px;}
.h0_c00073{height:1280.879975px;}
.h1_c00073{height:1281.000000px;}
.w0_c00073{width:948.600036px;}
.w1_c00073{width:948.750000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:166.350000px;}
.x4_c00073{left:168.150000px;}
.x10_c00073{left:171.000000px;}
.x8c_c00073{left:176.700000px;}
.x84_c00073{left:178.500000px;}
.x67_c00073{left:180.000000px;}
.x6b_c00073{left:181.500000px;}
.xb1_c00073{left:182.700000px;}
.xd_c00073{left:184.350000px;}
.xa9_c00073{left:186.450000px;}
.x9e_c00073{left:187.650000px;}
.xa2_c00073{left:188.700000px;}
.x17_c00073{left:189.750000px;}
.x24_c00073{left:190.950000px;}
.x28_c00073{left:192.750000px;}
.x33_c00073{left:194.100000px;}
.x3d_c00073{left:195.900000px;}
.x4d_c00073{left:197.700000px;}
.x85_c00073{left:200.850000px;}
.xe_c00073{left:203.100000px;}
.x94_c00073{left:204.900000px;}
.x68_c00073{left:206.700000px;}
.xaa_c00073{left:208.350000px;}
.x90_c00073{left:211.350000px;}
.x38_c00073{left:213.150000px;}
.x43_c00073{left:215.400000px;}
.x8a_c00073{left:217.500000px;}
.x2e_c00073{left:220.500000px;}
.x86_c00073{left:222.750000px;}
.x18_c00073{left:225.450000px;}
.x25_c00073{left:227.250000px;}
.x5_c00073{left:228.300000px;}
.x5a_c00073{left:231.900000px;}
.x71_c00073{left:235.650000px;}
.x44_c00073{left:237.750000px;}
.xae_c00073{left:239.550000px;}
.x69_c00073{left:240.600000px;}
.x1d_c00073{left:243.300000px;}
.x76_c00073{left:244.350000px;}
.xa0_c00073{left:245.550000px;}
.x6a_c00073{left:246.600000px;}
.x5e_c00073{left:248.400000px;}
.x34_c00073{left:249.600000px;}
.xf_c00073{left:250.950000px;}
.xab_c00073{left:254.100000px;}
.x2f_c00073{left:256.800000px;}
.x65_c00073{left:258.900000px;}
.x11_c00073{left:261.000000px;}
.x96_c00073{left:262.200000px;}
.xa6_c00073{left:264.150000px;}
.x1e_c00073{left:265.650000px;}
.x77_c00073{left:267.450000px;}
.x5f_c00073{left:268.950000px;}
.x3e_c00073{left:270.750000px;}
.x29_c00073{left:272.250000px;}
.x6_c00073{left:274.350000px;}
.x45_c00073{left:276.600000px;}
.x5b_c00073{left:277.950000px;}
.x66_c00073{left:280.800000px;}
.x7b_c00073{left:283.050000px;}
.x92_c00073{left:285.000000px;}
.x49_c00073{left:286.950000px;}
.x81_c00073{left:288.750000px;}
.x7e_c00073{left:289.950000px;}
.x78_c00073{left:292.350000px;}
.x7_c00073{left:294.450000px;}
.xa1_c00073{left:296.100000px;}
.x55_c00073{left:297.150000px;}
.x82_c00073{left:300.300000px;}
.x12_c00073{left:301.650000px;}
.x8d_c00073{left:302.700000px;}
.x35_c00073{left:305.400000px;}
.x56_c00073{left:306.450000px;}
.x39_c00073{left:308.250000px;}
.x3f_c00073{left:309.300000px;}
.x19_c00073{left:311.100000px;}
.x60_c00073{left:312.450000px;}
.x1f_c00073{left:313.500000px;}
.x72_c00073{left:316.650000px;}
.x46_c00073{left:318.750000px;}
.x6c_c00073{left:321.450000px;}
.x61_c00073{left:323.250000px;}
.x2a_c00073{left:324.450000px;}
.x4a_c00073{left:325.500000px;}
.x8_c00073{left:329.700000px;}
.x4e_c00073{left:332.400000px;}
.x20_c00073{left:334.350000px;}
.xa8_c00073{left:335.700000px;}
.x9_c00073{left:337.950000px;}
.x8e_c00073{left:340.200000px;}
.x62_c00073{left:341.550000px;}
.xa7_c00073{left:344.100000px;}
.x2b_c00073{left:345.300000px;}
.x57_c00073{left:347.100000px;}
.x30_c00073{left:348.600000px;}
.x3a_c00073{left:351.750000px;}
.x1a_c00073{left:353.550000px;}
.xa_c00073{left:356.700000px;}
.xac_c00073{left:357.900000px;}
.x13_c00073{left:359.250000px;}
.x52_c00073{left:360.900000px;}
.x4f_c00073{left:363.000000px;}
.xaf_c00073{left:364.050000px;}
.x80_c00073{left:365.100000px;}
.x47_c00073{left:366.900000px;}
.xa3_c00073{left:367.950000px;}
.x36_c00073{left:369.150000px;}
.x2c_c00073{left:372.000000px;}
.x40_c00073{left:374.400000px;}
.x97_c00073{left:376.050000px;}
.x6d_c00073{left:378.000000px;}
.x9f_c00073{left:379.200000px;}
.x73_c00073{left:381.450000px;}
.x63_c00073{left:382.950000px;}
.xb_c00073{left:385.200000px;}
.xa4_c00073{left:386.250000px;}
.x87_c00073{left:387.750000px;}
.x1b_c00073{left:389.850000px;}
.x21_c00073{left:391.200000px;}
.xad_c00073{left:393.600000px;}
.x79_c00073{left:396.300000px;}
.x41_c00073{left:398.550000px;}
.x58_c00073{left:402.150000px;}
.x26_c00073{left:404.100000px;}
.x98_c00073{left:405.300000px;}
.x37_c00073{left:406.650000px;}
.x8b_c00073{left:408.300000px;}
.x31_c00073{left:410.100000px;}
.x99_c00073{left:412.500000px;}
.x3_c00073{left:414.300000px;}
.x14_c00073{left:416.550000px;}
.x7f_c00073{left:419.550000px;}
.x4b_c00073{left:422.400000px;}
.x48_c00073{left:424.800000px;}
.x64_c00073{left:425.850000px;}
.x6f_c00073{left:427.950000px;}
.x22_c00073{left:429.000000px;}
.x5c_c00073{left:430.350000px;}
.xb2_c00073{left:432.900000px;}
.x42_c00073{left:438.150000px;}
.x88_c00073{left:440.700000px;}
.x1c_c00073{left:442.050000px;}
.x2d_c00073{left:444.750000px;}
.x9b_c00073{left:445.800000px;}
.x4c_c00073{left:446.850000px;}
.x95_c00073{left:447.900000px;}
.x5d_c00073{left:450.450000px;}
.x15_c00073{left:453.300000px;}
.x7c_c00073{left:455.400000px;}
.x7d_c00073{left:457.800000px;}
.x53_c00073{left:459.900000px;}
.x83_c00073{left:460.950000px;}
.x89_c00073{left:462.300000px;}
.x50_c00073{left:464.100000px;}
.x3b_c00073{left:465.150000px;}
.x6e_c00073{left:466.500000px;}
.x74_c00073{left:467.550000px;}
.x9c_c00073{left:469.200000px;}
.x70_c00073{left:471.450000px;}
.x91_c00073{left:474.300000px;}
.xc_c00073{left:476.250000px;}
.x32_c00073{left:477.750000px;}
.x51_c00073{left:480.300000px;}
.x16_c00073{left:481.350000px;}
.x54_c00073{left:482.550000px;}
.xa5_c00073{left:487.650000px;}
.xb0_c00073{left:489.000000px;}
.x59_c00073{left:491.850000px;}
.x23_c00073{left:494.850000px;}
.x7a_c00073{left:496.650000px;}
.x9a_c00073{left:498.300000px;}
.x8f_c00073{left:500.850000px;}
.x75_c00073{left:502.050000px;}
.x93_c00073{left:503.100000px;}
.x9d_c00073{left:504.150000px;}
.x27_c00073{left:505.950000px;}
.x3c_c00073{left:508.050000px;}
.x12d_c00073{left:528.450000px;}
.xf5_c00073{left:532.050000px;}
.x105_c00073{left:535.350000px;}
.x106_c00073{left:544.050000px;}
.x14e_c00073{left:545.400000px;}
.xb3_c00073{left:548.250000px;}
.xe9_c00073{left:550.200000px;}
.x114_c00073{left:552.300000px;}
.x11c_c00073{left:554.250000px;}
.x143_c00073{left:556.200000px;}
.x126_c00073{left:563.700000px;}
.x103_c00073{left:566.700000px;}
.x107_c00073{left:569.550000px;}
.x10a_c00073{left:570.600000px;}
.x148_c00073{left:571.650000px;}
.xfc_c00073{left:575.550000px;}
.x11d_c00073{left:578.100000px;}
.xd2_c00073{left:581.700000px;}
.x144_c00073{left:582.900000px;}
.x13c_c00073{left:584.250000px;}
.xbb_c00073{left:586.050000px;}
.x133_c00073{left:587.250000px;}
.x121_c00073{left:589.650000px;}
.xb4_c00073{left:590.700000px;}
.xf6_c00073{left:591.750000px;}
.x118_c00073{left:592.800000px;}
.xcd_c00073{left:594.450000px;}
.xc3_c00073{left:596.400000px;}
.x104_c00073{left:597.600000px;}
.xea_c00073{left:599.100000px;}
.xef_c00073{left:600.600000px;}
.x108_c00073{left:602.700000px;}
.xde_c00073{left:606.150000px;}
.xd7_c00073{left:608.400000px;}
.x12e_c00073{left:609.450000px;}
.xbc_c00073{left:610.500000px;}
.x155_c00073{left:614.250000px;}
.xf7_c00073{left:615.900000px;}
.xb5_c00073{left:618.000000px;}
.x137_c00073{left:619.650000px;}
.x119_c00073{left:621.900000px;}
.x127_c00073{left:623.550000px;}
.xe3_c00073{left:625.500000px;}
.x13d_c00073{left:626.700000px;}
.x123_c00073{left:628.800000px;}
.xfd_c00073{left:631.050000px;}
.x10b_c00073{left:634.350000px;}
.xd3_c00073{left:638.250000px;}
.xdf_c00073{left:640.650000px;}
.xc9_c00073{left:642.750000px;}
.x11a_c00073{left:647.100000px;}
.xf0_c00073{left:649.950000px;}
.x12f_c00073{left:654.150000px;}
.xc4_c00073{left:656.100000px;}
.x115_c00073{left:657.450000px;}
.xf8_c00073{left:659.100000px;}
.xd8_c00073{left:660.600000px;}
.x128_c00073{left:662.850000px;}
.xbd_c00073{left:665.550000px;}
.xce_c00073{left:666.750000px;}
.x152_c00073{left:669.750000px;}
.xeb_c00073{left:670.800000px;}
.x129_c00073{left:671.850000px;}
.x139_c00073{left:673.200000px;}
.xc5_c00073{left:674.400000px;}
.xfe_c00073{left:675.750000px;}
.xd4_c00073{left:678.900000px;}
.x10c_c00073{left:680.850000px;}
.x141_c00073{left:682.950000px;}
.xb6_c00073{left:684.300000px;}
.xf9_c00073{left:685.350000px;}
.x102_c00073{left:686.700000px;}
.xec_c00073{left:687.750000px;}
.x12a_c00073{left:690.150000px;}
.x110_c00073{left:691.350000px;}
.x11b_c00073{left:693.150000px;}
.xd9_c00073{left:695.850000px;}
.xf1_c00073{left:697.050000px;}
.x124_c00073{left:698.400000px;}
.x14a_c00073{left:699.450000px;}
.xbe_c00073{left:701.250000px;}
.xff_c00073{left:703.800000px;}
.x130_c00073{left:705.300000px;}
.x125_c00073{left:708.150000px;}
.xca_c00073{left:709.650000px;}
.xfa_c00073{left:710.850000px;}
.x116_c00073{left:712.050000px;}
.x12b_c00073{left:715.650000px;}
.xb7_c00073{left:718.800000px;}
.xda_c00073{left:721.050000px;}
.x11e_c00073{left:722.100000px;}
.xe0_c00073{left:723.150000px;}
.xbf_c00073{left:726.750000px;}
.x13e_c00073{left:728.550000px;}
.xe4_c00073{left:730.350000px;}
.x146_c00073{left:732.000000px;}
.x122_c00073{left:733.050000px;}
.xcb_c00073{left:734.550000px;}
.xdb_c00073{left:737.550000px;}
.x134_c00073{left:738.600000px;}
.x10d_c00073{left:739.650000px;}
.xe5_c00073{left:742.200000px;}
.xe1_c00073{left:744.450000px;}
.x147_c00073{left:747.450000px;}
.xf2_c00073{left:749.250000px;}
.x109_c00073{left:750.300000px;}
.x14f_c00073{left:751.350000px;}
.xd5_c00073{left:756.300000px;}
.xb8_c00073{left:758.100000px;}
.x149_c00073{left:759.900000px;}
.x153_c00073{left:762.600000px;}
.xc6_c00073{left:763.650000px;}
.x136_c00073{left:766.950000px;}
.x156_c00073{left:770.700000px;}
.x151_c00073{left:772.050000px;}
.x100_c00073{left:774.000000px;}
.xc0_c00073{left:775.650000px;}
.x142_c00073{left:777.000000px;}
.x14b_c00073{left:778.350000px;}
.x11f_c00073{left:780.750000px;}
.xcf_c00073{left:781.950000px;}
.x131_c00073{left:783.300000px;}
.x2_c00073{left:784.800000px;}
.xcc_c00073{left:786.000000px;}
.xf3_c00073{left:787.050000px;}
.x111_c00073{left:788.400000px;}
.xc7_c00073{left:790.350000px;}
.xe6_c00073{left:792.600000px;}
.x10e_c00073{left:797.250000px;}
.x120_c00073{left:799.500000px;}
.xed_c00073{left:801.900000px;}
.xd0_c00073{left:803.550000px;}
.xd6_c00073{left:804.900000px;}
.xf4_c00073{left:806.550000px;}
.xe2_c00073{left:807.750000px;}
.xc1_c00073{left:811.650000px;}
.xdc_c00073{left:813.150000px;}
.xfb_c00073{left:815.250000px;}
.x13f_c00073{left:816.450000px;}
.xe7_c00073{left:818.100000px;}
.x154_c00073{left:819.150000px;}
.xb9_c00073{left:821.850000px;}
.x117_c00073{left:823.200000px;}
.x14d_c00073{left:824.400000px;}
.x12c_c00073{left:826.650000px;}
.x112_c00073{left:828.300000px;}
.x101_c00073{left:829.800000px;}
.xc8_c00073{left:832.500000px;}
.xee_c00073{left:834.300000px;}
.xe8_c00073{left:838.200000px;}
.x145_c00073{left:839.550000px;}
.x13a_c00073{left:841.950000px;}
.xd1_c00073{left:843.450000px;}
.x132_c00073{left:845.250000px;}
.xdd_c00073{left:847.350000px;}
.xba_c00073{left:848.850000px;}
.x10f_c00073{left:850.500000px;}
.xc2_c00073{left:852.000000px;}
.x113_c00073{left:853.200000px;}
.x135_c00073{left:856.650000px;}
.x140_c00073{left:858.900000px;}
.x13b_c00073{left:862.500000px;}
.x14c_c00073{left:865.500000px;}
.x138_c00073{left:868.950000px;}
.x150_c00073{left:872.100000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws1_c00073{word-spacing:-10.431462pt;}
.ws0_c00073{word-spacing:-6.984127pt;}
.ws2_c00073{word-spacing:0.000000pt;}
.ws7_c00073{word-spacing:3.989033pt;}
.ws4_c00073{word-spacing:4.221459pt;}
.ws8_c00073{word-spacing:12.099502pt;}
.ws3_c00073{word-spacing:16.163599pt;}
.ws5_c00073{word-spacing:17.254902pt;}
.ws6_c00073{word-spacing:155.174603pt;}
.fs1_c00073{font-size:21.333333pt;}
.fs6_c00073{font-size:42.666667pt;}
.fs4_c00073{font-size:48.000000pt;}
.fs3_c00073{font-size:53.333333pt;}
.fs5_c00073{font-size:58.666667pt;}
.fs7_c00073{font-size:64.000000pt;}
.fs0_c00073{font-size:69.333333pt;}
.fs2_c00073{font-size:74.666667pt;}
.y0_c00073{bottom:0.000000pt;}
.y6e_c00073{bottom:176.000000pt;}
.y3b_c00073{bottom:185.066667pt;}
.y6d_c00073{bottom:192.000000pt;}
.y3a_c00073{bottom:200.800000pt;}
.y6c_c00073{bottom:208.000000pt;}
.y39_c00073{bottom:216.533333pt;}
.y6b_c00073{bottom:224.000000pt;}
.y38_c00073{bottom:232.266667pt;}
.y6a_c00073{bottom:240.000000pt;}
.y37_c00073{bottom:247.333333pt;}
.y69_c00073{bottom:256.000000pt;}
.y36_c00073{bottom:263.466667pt;}
.y35_c00073{bottom:270.133333pt;}
.y68_c00073{bottom:272.000000pt;}
.y34_c00073{bottom:279.066667pt;}
.y67_c00073{bottom:288.400000pt;}
.y33_c00073{bottom:294.400000pt;}
.y66_c00073{bottom:304.666667pt;}
.y32_c00073{bottom:310.133333pt;}
.y65_c00073{bottom:320.000000pt;}
.y31_c00073{bottom:325.466667pt;}
.y64_c00073{bottom:336.000000pt;}
.y30_c00073{bottom:341.866667pt;}
.y63_c00073{bottom:352.000000pt;}
.y2f_c00073{bottom:354.933333pt;}
.y2d_c00073{bottom:359.333333pt;}
.y62_c00073{bottom:368.000000pt;}
.y2e_c00073{bottom:369.866667pt;}
.y2c_c00073{bottom:372.133333pt;}
.y61_c00073{bottom:383.733333pt;}
.y2b_c00073{bottom:384.666667pt;}
.y2a_c00073{bottom:398.400000pt;}
.y60_c00073{bottom:399.733333pt;}
.y29_c00073{bottom:409.866667pt;}
.y5f_c00073{bottom:415.333333pt;}
.y28_c00073{bottom:423.733333pt;}
.y5e_c00073{bottom:431.333333pt;}
.y27_c00073{bottom:437.200000pt;}
.y5d_c00073{bottom:447.333333pt;}
.y26_c00073{bottom:449.333333pt;}
.y25_c00073{bottom:462.400000pt;}
.y5c_c00073{bottom:463.333333pt;}
.y5b_c00073{bottom:479.333333pt;}
.y24_c00073{bottom:479.733333pt;}
.y5a_c00073{bottom:495.066667pt;}
.y23_c00073{bottom:495.733333pt;}
.y59_c00073{bottom:511.066667pt;}
.y22_c00073{bottom:514.266667pt;}
.y58_c00073{bottom:527.066667pt;}
.y21_c00073{bottom:529.600000pt;}
.y20_c00073{bottom:545.333333pt;}
.y57_c00073{bottom:548.533333pt;}
.y1f_c00073{bottom:560.666667pt;}
.y56_c00073{bottom:561.600000pt;}
.y1e_c00073{bottom:576.666667pt;}
.y55_c00073{bottom:583.733333pt;}
.y1d_c00073{bottom:592.666667pt;}
.y54_c00073{bottom:599.733333pt;}
.y1c_c00073{bottom:608.000000pt;}
.y53_c00073{bottom:615.733333pt;}
.y1b_c00073{bottom:623.333333pt;}
.y52_c00073{bottom:635.466667pt;}
.y1a_c00073{bottom:642.933333pt;}
.y51_c00073{bottom:651.733333pt;}
.y19_c00073{bottom:663.333333pt;}
.y50_c00073{bottom:667.733333pt;}
.y18_c00073{bottom:683.200000pt;}
.y4f_c00073{bottom:683.466667pt;}
.y4e_c00073{bottom:699.466667pt;}
.y17_c00073{bottom:702.400000pt;}
.y16_c00073{bottom:718.133333pt;}
.y4d_c00073{bottom:718.666667pt;}
.y15_c00073{bottom:733.600000pt;}
.y4c_c00073{bottom:734.666667pt;}
.y14_c00073{bottom:749.333333pt;}
.y4b_c00073{bottom:758.666667pt;}
.y13_c00073{bottom:765.066667pt;}
.y4a_c00073{bottom:778.933333pt;}
.y12_c00073{bottom:781.066667pt;}
.y49_c00073{bottom:795.200000pt;}
.y11_c00073{bottom:796.800000pt;}
.y48_c00073{bottom:811.200000pt;}
.y10_c00073{bottom:813.066667pt;}
.y47_c00073{bottom:826.933333pt;}
.yf_c00073{bottom:828.800000pt;}
.ye_c00073{bottom:844.533333pt;}
.y46_c00073{bottom:846.666667pt;}
.y45_c00073{bottom:862.666667pt;}
.yd_c00073{bottom:862.933333pt;}
.y44_c00073{bottom:878.666667pt;}
.yc_c00073{bottom:882.800000pt;}
.y43_c00073{bottom:894.666667pt;}
.yb_c00073{bottom:895.600000pt;}
.y42_c00073{bottom:910.666667pt;}
.ya_c00073{bottom:911.600000pt;}
.y41_c00073{bottom:926.666667pt;}
.y9_c00073{bottom:927.600000pt;}
.y40_c00073{bottom:942.666667pt;}
.y8_c00073{bottom:943.333333pt;}
.y3f_c00073{bottom:958.666667pt;}
.y7_c00073{bottom:959.333333pt;}
.y3e_c00073{bottom:974.666667pt;}
.y6_c00073{bottom:975.066667pt;}
.y3d_c00073{bottom:990.666667pt;}
.y5_c00073{bottom:992.000000pt;}
.y4_c00073{bottom:1006.133333pt;}
.y3c_c00073{bottom:1006.666667pt;}
.y2_c00073{bottom:1022.666667pt;}
.y1_c00073{bottom:1023.333333pt;}
.y3_c00073{bottom:1029.066667pt;}
.h3_c00073{height:21.333333pt;}
.h8_c00073{height:42.666667pt;}
.h6_c00073{height:48.000000pt;}
.h5_c00073{height:53.333333pt;}
.h7_c00073{height:58.666667pt;}
.h9_c00073{height:64.000000pt;}
.h2_c00073{height:69.333333pt;}
.h4_c00073{height:74.666667pt;}
.h0_c00073{height:1138.559977pt;}
.h1_c00073{height:1138.666667pt;}
.w0_c00073{width:843.200032pt;}
.w1_c00073{width:843.333333pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:147.866667pt;}
.x4_c00073{left:149.466667pt;}
.x10_c00073{left:152.000000pt;}
.x8c_c00073{left:157.066667pt;}
.x84_c00073{left:158.666667pt;}
.x67_c00073{left:160.000000pt;}
.x6b_c00073{left:161.333333pt;}
.xb1_c00073{left:162.400000pt;}
.xd_c00073{left:163.866667pt;}
.xa9_c00073{left:165.733333pt;}
.x9e_c00073{left:166.800000pt;}
.xa2_c00073{left:167.733333pt;}
.x17_c00073{left:168.666667pt;}
.x24_c00073{left:169.733333pt;}
.x28_c00073{left:171.333333pt;}
.x33_c00073{left:172.533333pt;}
.x3d_c00073{left:174.133333pt;}
.x4d_c00073{left:175.733333pt;}
.x85_c00073{left:178.533333pt;}
.xe_c00073{left:180.533333pt;}
.x94_c00073{left:182.133333pt;}
.x68_c00073{left:183.733333pt;}
.xaa_c00073{left:185.200000pt;}
.x90_c00073{left:187.866667pt;}
.x38_c00073{left:189.466667pt;}
.x43_c00073{left:191.466667pt;}
.x8a_c00073{left:193.333333pt;}
.x2e_c00073{left:196.000000pt;}
.x86_c00073{left:198.000000pt;}
.x18_c00073{left:200.400000pt;}
.x25_c00073{left:202.000000pt;}
.x5_c00073{left:202.933333pt;}
.x5a_c00073{left:206.133333pt;}
.x71_c00073{left:209.466667pt;}
.x44_c00073{left:211.333333pt;}
.xae_c00073{left:212.933333pt;}
.x69_c00073{left:213.866667pt;}
.x1d_c00073{left:216.266667pt;}
.x76_c00073{left:217.200000pt;}
.xa0_c00073{left:218.266667pt;}
.x6a_c00073{left:219.200000pt;}
.x5e_c00073{left:220.800000pt;}
.x34_c00073{left:221.866667pt;}
.xf_c00073{left:223.066667pt;}
.xab_c00073{left:225.866667pt;}
.x2f_c00073{left:228.266667pt;}
.x65_c00073{left:230.133333pt;}
.x11_c00073{left:232.000000pt;}
.x96_c00073{left:233.066667pt;}
.xa6_c00073{left:234.800000pt;}
.x1e_c00073{left:236.133333pt;}
.x77_c00073{left:237.733333pt;}
.x5f_c00073{left:239.066667pt;}
.x3e_c00073{left:240.666667pt;}
.x29_c00073{left:242.000000pt;}
.x6_c00073{left:243.866667pt;}
.x45_c00073{left:245.866667pt;}
.x5b_c00073{left:247.066667pt;}
.x66_c00073{left:249.600000pt;}
.x7b_c00073{left:251.600000pt;}
.x92_c00073{left:253.333333pt;}
.x49_c00073{left:255.066667pt;}
.x81_c00073{left:256.666667pt;}
.x7e_c00073{left:257.733333pt;}
.x78_c00073{left:259.866667pt;}
.x7_c00073{left:261.733333pt;}
.xa1_c00073{left:263.200000pt;}
.x55_c00073{left:264.133333pt;}
.x82_c00073{left:266.933333pt;}
.x12_c00073{left:268.133333pt;}
.x8d_c00073{left:269.066667pt;}
.x35_c00073{left:271.466667pt;}
.x56_c00073{left:272.400000pt;}
.x39_c00073{left:274.000000pt;}
.x3f_c00073{left:274.933333pt;}
.x19_c00073{left:276.533333pt;}
.x60_c00073{left:277.733333pt;}
.x1f_c00073{left:278.666667pt;}
.x72_c00073{left:281.466667pt;}
.x46_c00073{left:283.333333pt;}
.x6c_c00073{left:285.733333pt;}
.x61_c00073{left:287.333333pt;}
.x2a_c00073{left:288.400000pt;}
.x4a_c00073{left:289.333333pt;}
.x8_c00073{left:293.066667pt;}
.x4e_c00073{left:295.466667pt;}
.x20_c00073{left:297.200000pt;}
.xa8_c00073{left:298.400000pt;}
.x9_c00073{left:300.400000pt;}
.x8e_c00073{left:302.400000pt;}
.x62_c00073{left:303.600000pt;}
.xa7_c00073{left:305.866667pt;}
.x2b_c00073{left:306.933333pt;}
.x57_c00073{left:308.533333pt;}
.x30_c00073{left:309.866667pt;}
.x3a_c00073{left:312.666667pt;}
.x1a_c00073{left:314.266667pt;}
.xa_c00073{left:317.066667pt;}
.xac_c00073{left:318.133333pt;}
.x13_c00073{left:319.333333pt;}
.x52_c00073{left:320.800000pt;}
.x4f_c00073{left:322.666667pt;}
.xaf_c00073{left:323.600000pt;}
.x80_c00073{left:324.533333pt;}
.x47_c00073{left:326.133333pt;}
.xa3_c00073{left:327.066667pt;}
.x36_c00073{left:328.133333pt;}
.x2c_c00073{left:330.666667pt;}
.x40_c00073{left:332.800000pt;}
.x97_c00073{left:334.266667pt;}
.x6d_c00073{left:336.000000pt;}
.x9f_c00073{left:337.066667pt;}
.x73_c00073{left:339.066667pt;}
.x63_c00073{left:340.400000pt;}
.xb_c00073{left:342.400000pt;}
.xa4_c00073{left:343.333333pt;}
.x87_c00073{left:344.666667pt;}
.x1b_c00073{left:346.533333pt;}
.x21_c00073{left:347.733333pt;}
.xad_c00073{left:349.866667pt;}
.x79_c00073{left:352.266667pt;}
.x41_c00073{left:354.266667pt;}
.x58_c00073{left:357.466667pt;}
.x26_c00073{left:359.200000pt;}
.x98_c00073{left:360.266667pt;}
.x37_c00073{left:361.466667pt;}
.x8b_c00073{left:362.933333pt;}
.x31_c00073{left:364.533333pt;}
.x99_c00073{left:366.666667pt;}
.x3_c00073{left:368.266667pt;}
.x14_c00073{left:370.266667pt;}
.x7f_c00073{left:372.933333pt;}
.x4b_c00073{left:375.466667pt;}
.x48_c00073{left:377.600000pt;}
.x64_c00073{left:378.533333pt;}
.x6f_c00073{left:380.400000pt;}
.x22_c00073{left:381.333333pt;}
.x5c_c00073{left:382.533333pt;}
.xb2_c00073{left:384.800000pt;}
.x42_c00073{left:389.466667pt;}
.x88_c00073{left:391.733333pt;}
.x1c_c00073{left:392.933333pt;}
.x2d_c00073{left:395.333333pt;}
.x9b_c00073{left:396.266667pt;}
.x4c_c00073{left:397.200000pt;}
.x95_c00073{left:398.133333pt;}
.x5d_c00073{left:400.400000pt;}
.x15_c00073{left:402.933333pt;}
.x7c_c00073{left:404.800000pt;}
.x7d_c00073{left:406.933333pt;}
.x53_c00073{left:408.800000pt;}
.x83_c00073{left:409.733333pt;}
.x89_c00073{left:410.933333pt;}
.x50_c00073{left:412.533333pt;}
.x3b_c00073{left:413.466667pt;}
.x6e_c00073{left:414.666667pt;}
.x74_c00073{left:415.600000pt;}
.x9c_c00073{left:417.066667pt;}
.x70_c00073{left:419.066667pt;}
.x91_c00073{left:421.600000pt;}
.xc_c00073{left:423.333333pt;}
.x32_c00073{left:424.666667pt;}
.x51_c00073{left:426.933333pt;}
.x16_c00073{left:427.866667pt;}
.x54_c00073{left:428.933333pt;}
.xa5_c00073{left:433.466667pt;}
.xb0_c00073{left:434.666667pt;}
.x59_c00073{left:437.200000pt;}
.x23_c00073{left:439.866667pt;}
.x7a_c00073{left:441.466667pt;}
.x9a_c00073{left:442.933333pt;}
.x8f_c00073{left:445.200000pt;}
.x75_c00073{left:446.266667pt;}
.x93_c00073{left:447.200000pt;}
.x9d_c00073{left:448.133333pt;}
.x27_c00073{left:449.733333pt;}
.x3c_c00073{left:451.600000pt;}
.x12d_c00073{left:469.733333pt;}
.xf5_c00073{left:472.933333pt;}
.x105_c00073{left:475.866667pt;}
.x106_c00073{left:483.600000pt;}
.x14e_c00073{left:484.800000pt;}
.xb3_c00073{left:487.333333pt;}
.xe9_c00073{left:489.066667pt;}
.x114_c00073{left:490.933333pt;}
.x11c_c00073{left:492.666667pt;}
.x143_c00073{left:494.400000pt;}
.x126_c00073{left:501.066667pt;}
.x103_c00073{left:503.733333pt;}
.x107_c00073{left:506.266667pt;}
.x10a_c00073{left:507.200000pt;}
.x148_c00073{left:508.133333pt;}
.xfc_c00073{left:511.600000pt;}
.x11d_c00073{left:513.866667pt;}
.xd2_c00073{left:517.066667pt;}
.x144_c00073{left:518.133333pt;}
.x13c_c00073{left:519.333333pt;}
.xbb_c00073{left:520.933333pt;}
.x133_c00073{left:522.000000pt;}
.x121_c00073{left:524.133333pt;}
.xb4_c00073{left:525.066667pt;}
.xf6_c00073{left:526.000000pt;}
.x118_c00073{left:526.933333pt;}
.xcd_c00073{left:528.400000pt;}
.xc3_c00073{left:530.133333pt;}
.x104_c00073{left:531.200000pt;}
.xea_c00073{left:532.533333pt;}
.xef_c00073{left:533.866667pt;}
.x108_c00073{left:535.733333pt;}
.xde_c00073{left:538.800000pt;}
.xd7_c00073{left:540.800000pt;}
.x12e_c00073{left:541.733333pt;}
.xbc_c00073{left:542.666667pt;}
.x155_c00073{left:546.000000pt;}
.xf7_c00073{left:547.466667pt;}
.xb5_c00073{left:549.333333pt;}
.x137_c00073{left:550.800000pt;}
.x119_c00073{left:552.800000pt;}
.x127_c00073{left:554.266667pt;}
.xe3_c00073{left:556.000000pt;}
.x13d_c00073{left:557.066667pt;}
.x123_c00073{left:558.933333pt;}
.xfd_c00073{left:560.933333pt;}
.x10b_c00073{left:563.866667pt;}
.xd3_c00073{left:567.333333pt;}
.xdf_c00073{left:569.466667pt;}
.xc9_c00073{left:571.333333pt;}
.x11a_c00073{left:575.200000pt;}
.xf0_c00073{left:577.733333pt;}
.x12f_c00073{left:581.466667pt;}
.xc4_c00073{left:583.200000pt;}
.x115_c00073{left:584.400000pt;}
.xf8_c00073{left:585.866667pt;}
.xd8_c00073{left:587.200000pt;}
.x128_c00073{left:589.200000pt;}
.xbd_c00073{left:591.600000pt;}
.xce_c00073{left:592.666667pt;}
.x152_c00073{left:595.333333pt;}
.xeb_c00073{left:596.266667pt;}
.x129_c00073{left:597.200000pt;}
.x139_c00073{left:598.400000pt;}
.xc5_c00073{left:599.466667pt;}
.xfe_c00073{left:600.666667pt;}
.xd4_c00073{left:603.466667pt;}
.x10c_c00073{left:605.200000pt;}
.x141_c00073{left:607.066667pt;}
.xb6_c00073{left:608.266667pt;}
.xf9_c00073{left:609.200000pt;}
.x102_c00073{left:610.400000pt;}
.xec_c00073{left:611.333333pt;}
.x12a_c00073{left:613.466667pt;}
.x110_c00073{left:614.533333pt;}
.x11b_c00073{left:616.133333pt;}
.xd9_c00073{left:618.533333pt;}
.xf1_c00073{left:619.600000pt;}
.x124_c00073{left:620.800000pt;}
.x14a_c00073{left:621.733333pt;}
.xbe_c00073{left:623.333333pt;}
.xff_c00073{left:625.600000pt;}
.x130_c00073{left:626.933333pt;}
.x125_c00073{left:629.466667pt;}
.xca_c00073{left:630.800000pt;}
.xfa_c00073{left:631.866667pt;}
.x116_c00073{left:632.933333pt;}
.x12b_c00073{left:636.133333pt;}
.xb7_c00073{left:638.933333pt;}
.xda_c00073{left:640.933333pt;}
.x11e_c00073{left:641.866667pt;}
.xe0_c00073{left:642.800000pt;}
.xbf_c00073{left:646.000000pt;}
.x13e_c00073{left:647.600000pt;}
.xe4_c00073{left:649.200000pt;}
.x146_c00073{left:650.666667pt;}
.x122_c00073{left:651.600000pt;}
.xcb_c00073{left:652.933333pt;}
.xdb_c00073{left:655.600000pt;}
.x134_c00073{left:656.533333pt;}
.x10d_c00073{left:657.466667pt;}
.xe5_c00073{left:659.733333pt;}
.xe1_c00073{left:661.733333pt;}
.x147_c00073{left:664.400000pt;}
.xf2_c00073{left:666.000000pt;}
.x109_c00073{left:666.933333pt;}
.x14f_c00073{left:667.866667pt;}
.xd5_c00073{left:672.266667pt;}
.xb8_c00073{left:673.866667pt;}
.x149_c00073{left:675.466667pt;}
.x153_c00073{left:677.866667pt;}
.xc6_c00073{left:678.800000pt;}
.x136_c00073{left:681.733333pt;}
.x156_c00073{left:685.066667pt;}
.x151_c00073{left:686.266667pt;}
.x100_c00073{left:688.000000pt;}
.xc0_c00073{left:689.466667pt;}
.x142_c00073{left:690.666667pt;}
.x14b_c00073{left:691.866667pt;}
.x11f_c00073{left:694.000000pt;}
.xcf_c00073{left:695.066667pt;}
.x131_c00073{left:696.266667pt;}
.x2_c00073{left:697.600000pt;}
.xcc_c00073{left:698.666667pt;}
.xf3_c00073{left:699.600000pt;}
.x111_c00073{left:700.800000pt;}
.xc7_c00073{left:702.533333pt;}
.xe6_c00073{left:704.533333pt;}
.x10e_c00073{left:708.666667pt;}
.x120_c00073{left:710.666667pt;}
.xed_c00073{left:712.800000pt;}
.xd0_c00073{left:714.266667pt;}
.xd6_c00073{left:715.466667pt;}
.xf4_c00073{left:716.933333pt;}
.xe2_c00073{left:718.000000pt;}
.xc1_c00073{left:721.466667pt;}
.xdc_c00073{left:722.800000pt;}
.xfb_c00073{left:724.666667pt;}
.x13f_c00073{left:725.733333pt;}
.xe7_c00073{left:727.200000pt;}
.x154_c00073{left:728.133333pt;}
.xb9_c00073{left:730.533333pt;}
.x117_c00073{left:731.733333pt;}
.x14d_c00073{left:732.800000pt;}
.x12c_c00073{left:734.800000pt;}
.x112_c00073{left:736.266667pt;}
.x101_c00073{left:737.600000pt;}
.xc8_c00073{left:740.000000pt;}
.xee_c00073{left:741.600000pt;}
.xe8_c00073{left:745.066667pt;}
.x145_c00073{left:746.266667pt;}
.x13a_c00073{left:748.400000pt;}
.xd1_c00073{left:749.733333pt;}
.x132_c00073{left:751.333333pt;}
.xdd_c00073{left:753.200000pt;}
.xba_c00073{left:754.533333pt;}
.x10f_c00073{left:756.000000pt;}
.xc2_c00073{left:757.333333pt;}
.x113_c00073{left:758.400000pt;}
.x135_c00073{left:761.466667pt;}
.x140_c00073{left:763.466667pt;}
.x13b_c00073{left:766.666667pt;}
.x14c_c00073{left:769.333333pt;}
.x138_c00073{left:772.400000pt;}
.x150_c00073{left:775.200000pt;}
}





/* 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_c00074 {
    display:none;
  }
  .loading-indicator_c00074.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00074 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_c00074 { 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_c00074" -> "#page-container .classname_c00074")
 */
.pf_c00074 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00074 { /* 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_c00074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00074 { /* 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_c00074 { /* 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_c00074 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00074 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00074 {overflow:visible;}
  }
}
.c_c00074 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00074 { /* 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_c00074:after { /* webkit #35443 */
  content: '';
}
.t_c00074:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00074 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 */
}
.__c00074 { /* 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_c00074 { /* info for Javascript */
  display:none;
}
.l_c00074 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00074 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00074 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00074: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_c00074 {
    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_c00074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00074.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_c00074 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00074;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.000000;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;}
.m2b_c00074{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m16_c00074{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m9_c00074{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00074{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m8_c00074{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00074{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00074{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00074{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m47_c00074{transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);}
.m15_c00074{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m41_c00074{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.md_c00074{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m19_c00074{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m33_c00074{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00074{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m49_c00074{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00074{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m50_c00074{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m85_c00074{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m88_c00074{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.me4_c00074{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00074{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb_c00074{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m34_c00074{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m32_c00074{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m113_c00074{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00074{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m42_c00074{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00074{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00074{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md5_c00074{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m28_c00074{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma_c00074{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mab_c00074{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md8_c00074{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m99_c00074{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m74_c00074{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m82_c00074{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00074{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m36_c00074{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m43_c00074{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00074{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00074{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00074{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00074{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m4_c00074{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00074{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m40_c00074{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00074{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00074{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mba_c00074{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m45_c00074{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00074{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00074{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00074{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00074{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00074{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m46_c00074{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.md4_c00074{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m94_c00074{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m25_c00074{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m35_c00074{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m13_c00074{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m107_c00074{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m39_c00074{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.meb_c00074{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00074{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m22_c00074{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00074{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00074{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m93_c00074{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00074{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m29_c00074{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m48_c00074{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00074{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00074{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00074{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m95_c00074{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00074{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m70_c00074{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md7_c00074{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00074{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md0_c00074{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m26_c00074{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m73_c00074{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m105_c00074{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md6_c00074{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m79_c00074{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m91_c00074{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m92_c00074{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00074{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00074{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m55_c00074{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00074{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00074{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m109_c00074{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m7_c00074{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00074{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00074{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00074{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00074{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mad_c00074{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m96_c00074{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00074{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m75_c00074{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m2_c00074{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00074{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00074{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m31_c00074{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00074{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00074{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.maf_c00074{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00074{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m78_c00074{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m72_c00074{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00074{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m108_c00074{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m57_c00074{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00074{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00074{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m81_c00074{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m76_c00074{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m58_c00074{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.maa_c00074{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00074{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00074{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00074{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md1_c00074{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m63_c00074{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m24_c00074{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m56_c00074{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00074{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00074{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00074{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m77_c00074{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00074{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00074{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00074{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mac_c00074{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m18_c00074{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00074{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m80_c00074{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m62_c00074{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m71_c00074{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m104_c00074{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m87_c00074{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m38_c00074{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00074{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00074{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m103_c00074{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00074{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m102_c00074{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m101_c00074{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00074{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m90_c00074{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m37_c00074{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m44_c00074{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc_c00074{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00074{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m14_c00074{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00074{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00074{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00074{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00074{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m54_c00074{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me6_c00074{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m110_c00074{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m23_c00074{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m59_c00074{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m61_c00074{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00074{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00074{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m51_c00074{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mee_c00074{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00074{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m12_c00074{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m64_c00074{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m112_c00074{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00074{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00074{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m6_c00074{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00074{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md2_c00074{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m111_c00074{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m69_c00074{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m60_c00074{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m30_c00074{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00074{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00074{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00074{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me5_c00074{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.med_c00074{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mf_c00074{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00074{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00074{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m21_c00074{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00074{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00074{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mce_c00074{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00074{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3_c00074{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mda_c00074{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00074{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m68_c00074{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00074{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00074{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.me9_c00074{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m20_c00074{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00074{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00074{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m11_c00074{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m65_c00074{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m17_c00074{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mae_c00074{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mea_c00074{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md9_c00074{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);}
.m67_c00074{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m98_c00074{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00074{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m53_c00074{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00074{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00074{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00074{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00074{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00074{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me7_c00074{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00074{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mca_c00074{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.md3_c00074{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00074{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c00074{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00074{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00074{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m27_c00074{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00074{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mef_c00074{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00074{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m66_c00074{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m100_c00074{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00074{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m97_c00074{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m5_c00074{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m84_c00074{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me8_c00074{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00074{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00074{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00074{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00074{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00074{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mde_c00074{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me1_c00074{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m86_c00074{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00074{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m52_c00074{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me3_c00074{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00074{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00074{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00074{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m106_c00074{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00074{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.me2_c00074{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.me0_c00074{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00074{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m89_c00074{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00074{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00074{transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);}
.m1_c00074{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m114_c00074{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00074{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00074{transform:matrix(0.385500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385500,0.000000,0.000000,0.250000,0,0);}
.m0_c00074{transform:matrix(0.390250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390250,0.000000,0.000000,0.250000,0,0);}
.m83_c00074{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mff_c00074{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.me_c00074{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00074{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.mec_c00074{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00074{transform:matrix(0.567250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567250,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls0_c00074{letter-spacing:0.000000px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{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__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00074{word-spacing:-12.704871px;}
.wsc_c00074{word-spacing:-6.934708px;}
.ws4_c00074{word-spacing:-5.815642px;}
.ws2_c00074{word-spacing:-5.277778px;}
.wsd_c00074{word-spacing:0.000000px;}
.ws6_c00074{word-spacing:1.873362px;}
.ws5_c00074{word-spacing:3.126984px;}
.wsa_c00074{word-spacing:4.736842px;}
.ws8_c00074{word-spacing:7.255730px;}
.ws3_c00074{word-spacing:18.125000px;}
.ws0_c00074{word-spacing:25.714286px;}
.wsb_c00074{word-spacing:55.250000px;}
.ws9_c00074{word-spacing:59.721619px;}
.ws1_c00074{word-spacing:61.250000px;}
._0_c00074{width:59.285714px;}
.fc0_c00074{color:transparent;}
.fs6_c00074{font-size:42.000000px;}
.fs1_c00074{font-size:48.000000px;}
.fs5_c00074{font-size:54.000000px;}
.fs2_c00074{font-size:60.000000px;}
.fs3_c00074{font-size:66.000000px;}
.fs4_c00074{font-size:72.000000px;}
.fs0_c00074{font-size:114.000000px;}
.y0_c00074{bottom:0.000000px;}
.y69_c00074{bottom:164.550000px;}
.y42_c00074{bottom:178.200000px;}
.y68_c00074{bottom:183.150000px;}
.y41_c00074{bottom:197.700000px;}
.y67_c00074{bottom:201.150000px;}
.y40_c00074{bottom:217.350000px;}
.y66_c00074{bottom:218.850000px;}
.y65_c00074{bottom:237.150000px;}
.y3f_c00074{bottom:237.900000px;}
.y64_c00074{bottom:254.400000px;}
.y3e_c00074{bottom:256.200000px;}
.y63_c00074{bottom:272.700000px;}
.y3d_c00074{bottom:273.900000px;}
.y62_c00074{bottom:290.700000px;}
.y3c_c00074{bottom:291.600000px;}
.y61_c00074{bottom:308.400000px;}
.y3b_c00074{bottom:309.600000px;}
.y60_c00074{bottom:326.100000px;}
.y3a_c00074{bottom:330.450000px;}
.y5f_c00074{bottom:344.400000px;}
.y39_c00074{bottom:349.500000px;}
.y5e_c00074{bottom:362.100000px;}
.y38_c00074{bottom:371.850000px;}
.y5d_c00074{bottom:379.800000px;}
.y37_c00074{bottom:390.000000px;}
.y5c_c00074{bottom:397.800000px;}
.y36_c00074{bottom:411.900000px;}
.y5b_c00074{bottom:415.800000px;}
.y5a_c00074{bottom:433.500000px;}
.y35_c00074{bottom:433.950000px;}
.y59_c00074{bottom:451.500000px;}
.y34_c00074{bottom:452.700000px;}
.y44_c00074{bottom:469.500000px;}
.y33_c00074{bottom:471.000000px;}
.y58_c00074{bottom:486.600000px;}
.y32_c00074{bottom:489.000000px;}
.y43_c00074{bottom:489.300000px;}
.y57_c00074{bottom:504.300000px;}
.y31_c00074{bottom:506.700000px;}
.y56_c00074{bottom:519.150000px;}
.y30_c00074{bottom:524.700000px;}
.y55_c00074{bottom:533.850000px;}
.y2f_c00074{bottom:542.700000px;}
.y54_c00074{bottom:547.500000px;}
.y2e_c00074{bottom:560.700000px;}
.y53_c00074{bottom:562.650000px;}
.y52_c00074{bottom:576.450000px;}
.y2d_c00074{bottom:578.400000px;}
.y51_c00074{bottom:591.150000px;}
.y2c_c00074{bottom:596.700000px;}
.y50_c00074{bottom:605.250000px;}
.y2b_c00074{bottom:614.400000px;}
.y4f_c00074{bottom:620.700000px;}
.y2a_c00074{bottom:632.700000px;}
.y4e_c00074{bottom:634.050000px;}
.y4d_c00074{bottom:650.550000px;}
.y29_c00074{bottom:650.700000px;}
.y4c_c00074{bottom:664.200000px;}
.y28_c00074{bottom:668.400000px;}
.y4b_c00074{bottom:682.950000px;}
.y27_c00074{bottom:686.400000px;}
.y4a_c00074{bottom:700.950000px;}
.y26_c00074{bottom:704.400000px;}
.y25_c00074{bottom:722.400000px;}
.y49_c00074{bottom:722.700000px;}
.y24_c00074{bottom:740.100000px;}
.y48_c00074{bottom:740.700000px;}
.y23_c00074{bottom:758.100000px;}
.y47_c00074{bottom:758.400000px;}
.y22_c00074{bottom:775.800000px;}
.y46_c00074{bottom:776.100000px;}
.y21_c00074{bottom:793.800000px;}
.y45_c00074{bottom:794.100000px;}
.y20_c00074{bottom:811.800000px;}
.y1f_c00074{bottom:830.850000px;}
.y1e_c00074{bottom:833.700000px;}
.y1d_c00074{bottom:855.600000px;}
.y1c_c00074{bottom:860.700000px;}
.y1b_c00074{bottom:879.450000px;}
.y12_c00074{bottom:897.450000px;}
.y1a_c00074{bottom:900.600000px;}
.y11_c00074{bottom:915.150000px;}
.y19_c00074{bottom:918.600000px;}
.y18_c00074{bottom:936.600000px;}
.y10_c00074{bottom:937.050000px;}
.y17_c00074{bottom:954.300000px;}
.yf_c00074{bottom:955.050000px;}
.y16_c00074{bottom:972.000000px;}
.ye_c00074{bottom:973.050000px;}
.yd_c00074{bottom:991.050000px;}
.y15_c00074{bottom:994.200000px;}
.yc_c00074{bottom:1008.750000px;}
.y14_c00074{bottom:1012.200000px;}
.y13_c00074{bottom:1029.900000px;}
.yb_c00074{bottom:1030.650000px;}
.y6_c00074{bottom:1047.900000px;}
.ya_c00074{bottom:1049.100000px;}
.y5_c00074{bottom:1065.900000px;}
.y9_c00074{bottom:1071.450000px;}
.y4_c00074{bottom:1087.200000px;}
.y8_c00074{bottom:1089.750000px;}
.y3_c00074{bottom:1100.850000px;}
.y2_c00074{bottom:1114.500000px;}
.y7_c00074{bottom:1124.250000px;}
.y1_c00074{bottom:1138.650000px;}
.h8_c00074{height:42.000000px;}
.h3_c00074{height:48.000000px;}
.h7_c00074{height:54.000000px;}
.h4_c00074{height:60.000000px;}
.h5_c00074{height:66.000000px;}
.h6_c00074{height:72.000000px;}
.h2_c00074{height:114.000000px;}
.h1_c00074{height:1273.500000px;}
.h0_c00074{height:1273.679993px;}
.w0_c00074{width:948.600036px;}
.w1_c00074{width:948.750000px;}
.x0_c00074{left:0.000000px;}
.x25_c00074{left:73.050000px;}
.x5a_c00074{left:75.600000px;}
.x27_c00074{left:78.150000px;}
.xe7_c00074{left:84.600000px;}
.xf2_c00074{left:88.950000px;}
.xf0_c00074{left:90.450000px;}
.x9d_c00074{left:92.100000px;}
.xc8_c00074{left:93.600000px;}
.x37_c00074{left:95.100000px;}
.x45_c00074{left:96.150000px;}
.x30_c00074{left:97.800000px;}
.xe8_c00074{left:109.500000px;}
.xe6_c00074{left:112.950000px;}
.xd2_c00074{left:114.000000px;}
.x31_c00074{left:115.500000px;}
.xac_c00074{left:117.150000px;}
.xc0_c00074{left:118.200000px;}
.x55_c00074{left:119.550000px;}
.xca_c00074{left:122.700000px;}
.x4f_c00074{left:128.700000px;}
.x46_c00074{left:131.100000px;}
.xad_c00074{left:132.300000px;}
.xa7_c00074{left:133.950000px;}
.xa4_c00074{left:135.000000px;}
.x9e_c00074{left:137.850000px;}
.x26_c00074{left:139.650000px;}
.xdb_c00074{left:141.600000px;}
.xe2_c00074{left:142.650000px;}
.x3f_c00074{left:143.850000px;}
.x28_c00074{left:146.850000px;}
.x47_c00074{left:148.350000px;}
.xce_c00074{left:150.450000px;}
.xc4_c00074{left:152.400000px;}
.xa5_c00074{left:155.100000px;}
.x34_c00074{left:156.300000px;}
.xcc_c00074{left:158.700000px;}
.x60_c00074{left:160.200000px;}
.x9f_c00074{left:163.050000px;}
.xd8_c00074{left:164.250000px;}
.xb1_c00074{left:165.600000px;}
.xec_c00074{left:167.100000px;}
.x29_c00074{left:169.200000px;}
.x50_c00074{left:170.550000px;}
.xa8_c00074{left:171.750000px;}
.x56_c00074{left:175.050000px;}
.xc5_c00074{left:176.550000px;}
.x51_c00074{left:178.500000px;}
.x38_c00074{left:182.100000px;}
.x40_c00074{left:184.200000px;}
.xbc_c00074{left:186.750000px;}
.x32_c00074{left:188.550000px;}
.xb2_c00074{left:190.500000px;}
.xc1_c00074{left:192.150000px;}
.x5b_c00074{left:194.700000px;}
.xd5_c00074{left:196.500000px;}
.x48_c00074{left:198.450000px;}
.x2a_c00074{left:200.850000px;}
.xd3_c00074{left:203.550000px;}
.x57_c00074{left:204.900000px;}
.x41_c00074{left:206.100000px;}
.x39_c00074{left:207.300000px;}
.xdc_c00074{left:208.950000px;}
.xc9_c00074{left:210.600000px;}
.x58_c00074{left:213.150000px;}
.x3a_c00074{left:215.550000px;}
.xb5_c00074{left:216.750000px;}
.x8f_c00074{left:218.550000px;}
.xe9_c00074{left:219.600000px;}
.x2b_c00074{left:222.450000px;}
.xcf_c00074{left:223.800000px;}
.x49_c00074{left:225.750000px;}
.xbd_c00074{left:228.450000px;}
.x59_c00074{left:230.100000px;}
.x35_c00074{left:232.650000px;}
.x4a_c00074{left:234.000000px;}
.xc2_c00074{left:235.050000px;}
.x90_c00074{left:237.600000px;}
.x42_c00074{left:238.800000px;}
.xed_c00074{left:240.150000px;}
.xea_c00074{left:241.200000px;}
.xc6_c00074{left:243.150000px;}
.x5c_c00074{left:245.400000px;}
.xd0_c00074{left:246.450000px;}
.x4b_c00074{left:250.500000px;}
.xe1_c00074{left:252.300000px;}
.x52_c00074{left:254.850000px;}
.xa9_c00074{left:256.050000px;}
.xee_c00074{left:258.450000px;}
.x3b_c00074{left:260.100000px;}
.xdd_c00074{left:262.650000px;}
.x43_c00074{left:264.300000px;}
.x4c_c00074{left:267.450000px;}
.xd6_c00074{left:270.750000px;}
.xe3_c00074{left:273.300000px;}
.x91_c00074{left:275.100000px;}
.x2c_c00074{left:276.750000px;}
.x5d_c00074{left:282.150000px;}
.xde_c00074{left:283.500000px;}
.xae_c00074{left:285.600000px;}
.x3c_c00074{left:287.100000px;}
.xcb_c00074{left:289.350000px;}
.x61_c00074{left:291.600000px;}
.xb9_c00074{left:293.100000px;}
.xb6_c00074{left:294.150000px;}
.xe4_c00074{left:295.200000px;}
.x2d_c00074{left:297.600000px;}
.xdf_c00074{left:299.400000px;}
.xbe_c00074{left:300.450000px;}
.xaa_c00074{left:302.550000px;}
.x92_c00074{left:304.200000px;}
.x5e_c00074{left:306.300000px;}
.x3d_c00074{left:307.950000px;}
.xd4_c00074{left:310.200000px;}
.x8a_c00074{left:313.200000px;}
.xb7_c00074{left:314.250000px;}
.xd9_c00074{left:315.600000px;}
.x93_c00074{left:318.600000px;}
.xd7_c00074{left:321.900000px;}
.xd1_c00074{left:323.250000px;}
.xb3_c00074{left:325.500000px;}
.x1_c00074{left:327.300000px;}
.x4d_c00074{left:329.700000px;}
.x53_c00074{left:331.500000px;}
.x36_c00074{left:336.750000px;}
.xa6_c00074{left:338.850000px;}
.xaf_c00074{left:341.400000px;}
.xb4_c00074{left:342.750000px;}
.xba_c00074{left:343.800000px;}
.xe0_c00074{left:345.450000px;}
.x94_c00074{left:346.950000px;}
.xb8_c00074{left:349.200000px;}
.xf1_c00074{left:351.450000px;}
.x62_c00074{left:352.800000px;}
.xe5_c00074{left:353.850000px;}
.xeb_c00074{left:355.350000px;}
.x2e_c00074{left:356.700000px;}
.xc7_c00074{left:357.900000px;}
.x33_c00074{left:360.300000px;}
.x5f_c00074{left:362.100000px;}
.xab_c00074{left:363.750000px;}
.x8c_c00074{left:368.400000px;}
.x44_c00074{left:370.500000px;}
.x54_c00074{left:375.450000px;}
.x95_c00074{left:376.500000px;}
.xda_c00074{left:381.150000px;}
.x3e_c00074{left:386.100000px;}
.xbf_c00074{left:387.600000px;}
.xc3_c00074{left:388.800000px;}
.xef_c00074{left:390.300000px;}
.xb0_c00074{left:392.100000px;}
.xbb_c00074{left:393.450000px;}
.xcd_c00074{left:394.950000px;}
.x2f_c00074{left:399.150000px;}
.x8d_c00074{left:402.300000px;}
.x63_c00074{left:404.250000px;}
.x4e_c00074{left:405.300000px;}
.x8e_c00074{left:430.050000px;}
.xf4_c00074{left:435.150000px;}
.x107_c00074{left:436.650000px;}
.x8b_c00074{left:438.150000px;}
.x6_c00074{left:439.200000px;}
.x96_c00074{left:448.800000px;}
.x1c_c00074{left:450.300000px;}
.x124_c00074{left:452.550000px;}
.x10c_c00074{left:453.600000px;}
.xf8_c00074{left:455.400000px;}
.x1d_c00074{left:456.450000px;}
.x98_c00074{left:462.150000px;}
.x116_c00074{left:464.100000px;}
.x104_c00074{left:465.450000px;}
.x11_c00074{left:467.700000px;}
.x126_c00074{left:470.250000px;}
.x99_c00074{left:472.950000px;}
.x71_c00074{left:474.450000px;}
.x141_c00074{left:475.800000px;}
.x78_c00074{left:477.000000px;}
.x108_c00074{left:479.550000px;}
.x105_c00074{left:481.350000px;}
.x12a_c00074{left:483.300000px;}
.xff_c00074{left:484.950000px;}
.x1e_c00074{left:486.750000px;}
.x139_c00074{left:487.800000px;}
.x12_c00074{left:490.050000px;}
.x11d_c00074{left:493.200000px;}
.x125_c00074{left:494.700000px;}
.x64_c00074{left:496.050000px;}
.x7_c00074{left:497.550000px;}
.x87_c00074{left:499.350000px;}
.x101_c00074{left:501.150000px;}
.x83_c00074{left:502.500000px;}
.x69_c00074{left:503.550000px;}
.x97_c00074{left:504.900000px;}
.x10f_c00074{left:505.950000px;}
.x11b_c00074{left:507.300000px;}
.x9a_c00074{left:508.950000px;}
.x132_c00074{left:510.600000px;}
.x13_c00074{left:511.950000px;}
.x142_c00074{left:514.650000px;}
.x127_c00074{left:517.050000px;}
.x117_c00074{left:519.150000px;}
.x10d_c00074{left:520.200000px;}
.x16_c00074{left:521.250000px;}
.x65_c00074{left:523.350000px;}
.x143_c00074{left:524.400000px;}
.x79_c00074{left:525.600000px;}
.xf9_c00074{left:527.100000px;}
.x14_c00074{left:529.200000px;}
.x12b_c00074{left:531.600000px;}
.x120_c00074{left:533.400000px;}
.x119_c00074{left:535.350000px;}
.x8_c00074{left:537.150000px;}
.xa0_c00074{left:538.200000px;}
.x6e_c00074{left:540.000000px;}
.x121_c00074{left:542.400000px;}
.x133_c00074{left:544.050000px;}
.x128_c00074{left:545.550000px;}
.x109_c00074{left:547.650000px;}
.xfa_c00074{left:549.750000px;}
.x112_c00074{left:552.300000px;}
.x1f_c00074{left:554.100000px;}
.x110_c00074{left:556.950000px;}
.x13a_c00074{left:559.050000px;}
.x17_c00074{left:560.100000px;}
.x20_c00074{left:563.100000px;}
.x72_c00074{left:564.750000px;}
.xfc_c00074{left:566.550000px;}
.xf5_c00074{left:568.050000px;}
.x84_c00074{left:570.600000px;}
.x6f_c00074{left:572.100000px;}
.x15_c00074{left:573.450000px;}
.x9_c00074{left:576.750000px;}
.x11a_c00074{left:578.550000px;}
.x13b_c00074{left:579.600000px;}
.x9b_c00074{left:581.700000px;}
.x66_c00074{left:582.750000px;}
.x11c_c00074{left:586.200000px;}
.x21_c00074{left:589.350000px;}
.xa1_c00074{left:591.750000px;}
.x12f_c00074{left:594.000000px;}
.xfb_c00074{left:595.050000px;}
.x118_c00074{left:597.150000px;}
.x6a_c00074{left:599.250000px;}
.x106_c00074{left:600.900000px;}
.x136_c00074{left:603.600000px;}
.x134_c00074{left:604.950000px;}
.x73_c00074{left:607.650000px;}
.x88_c00074{left:609.150000px;}
.x113_c00074{left:610.200000px;}
.x18_c00074{left:611.550000px;}
.x102_c00074{left:612.600000px;}
.x7a_c00074{left:615.150000px;}
.xf6_c00074{left:619.500000px;}
.xa2_c00074{left:621.300000px;}
.x129_c00074{left:622.950000px;}
.x13e_c00074{left:624.300000px;}
.x11e_c00074{left:627.450000px;}
.x67_c00074{left:629.250000px;}
.x7b_c00074{left:632.100000px;}
.x12c_c00074{left:634.500000px;}
.x122_c00074{left:636.000000px;}
.x22_c00074{left:637.650000px;}
.x9c_c00074{left:639.000000px;}
.x100_c00074{left:641.100000px;}
.xa_c00074{left:643.050000px;}
.x85_c00074{left:645.150000px;}
.x70_c00074{left:646.950000px;}
.x74_c00074{left:648.750000px;}
.xb_c00074{left:650.250000px;}
.x89_c00074{left:651.600000px;}
.xc_c00074{left:657.150000px;}
.x10a_c00074{left:660.300000px;}
.x7c_c00074{left:661.950000px;}
.x19_c00074{left:663.450000px;}
.xd_c00074{left:665.400000px;}
.x12e_c00074{left:667.650000px;}
.x81_c00074{left:669.900000px;}
.x137_c00074{left:671.700000px;}
.x130_c00074{left:674.400000px;}
.x23_c00074{left:676.950000px;}
.xfd_c00074{left:678.150000px;}
.xe_c00074{left:679.500000px;}
.x13f_c00074{left:680.550000px;}
.x135_c00074{left:683.400000px;}
.x68_c00074{left:687.150000px;}
.x6b_c00074{left:688.500000px;}
.xa3_c00074{left:691.800000px;}
.x75_c00074{left:695.250000px;}
.x7d_c00074{left:698.250000px;}
.xf3_c00074{left:699.450000px;}
.x86_c00074{left:700.950000px;}
.x3_c00074{left:702.000000px;}
.x114_c00074{left:703.500000px;}
.xf_c00074{left:706.800000px;}
.x7e_c00074{left:708.000000px;}
.x13d_c00074{left:710.250000px;}
.x12d_c00074{left:713.250000px;}
.x6c_c00074{left:714.750000px;}
.x140_c00074{left:715.800000px;}
.x10b_c00074{left:716.850000px;}
.x1a_c00074{left:718.200000px;}
.x138_c00074{left:719.250000px;}
.x76_c00074{left:722.250000px;}
.xf7_c00074{left:724.350000px;}
.x13c_c00074{left:726.150000px;}
.x1b_c00074{left:727.500000px;}
.x123_c00074{left:728.550000px;}
.x11f_c00074{left:730.350000px;}
.x115_c00074{left:731.550000px;}
.x4_c00074{left:732.600000px;}
.x10_c00074{left:734.850000px;}
.x144_c00074{left:736.800000px;}
.x24_c00074{left:739.200000px;}
.x77_c00074{left:741.300000px;}
.x7f_c00074{left:744.300000px;}
.x82_c00074{left:746.550000px;}
.x131_c00074{left:749.250000px;}
.x6d_c00074{left:751.050000px;}
.xfe_c00074{left:753.450000px;}
.x103_c00074{left:756.600000px;}
.x111_c00074{left:758.550000px;}
.x2_c00074{left:760.350000px;}
.x5_c00074{left:763.200000px;}
.x80_c00074{left:765.600000px;}
.x10e_c00074{left:768.000000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws7_c00074{word-spacing:-11.293219pt;}
.wsc_c00074{word-spacing:-6.164185pt;}
.ws4_c00074{word-spacing:-5.169460pt;}
.ws2_c00074{word-spacing:-4.691358pt;}
.wsd_c00074{word-spacing:0.000000pt;}
.ws6_c00074{word-spacing:1.665211pt;}
.ws5_c00074{word-spacing:2.779541pt;}
.wsa_c00074{word-spacing:4.210526pt;}
.ws8_c00074{word-spacing:6.449538pt;}
.ws3_c00074{word-spacing:16.111111pt;}
.ws0_c00074{word-spacing:22.857143pt;}
.wsb_c00074{word-spacing:49.111111pt;}
.ws9_c00074{word-spacing:53.085884pt;}
.ws1_c00074{word-spacing:54.444444pt;}
._0_c00074{width:52.698413pt;}
.fs6_c00074{font-size:37.333333pt;}
.fs1_c00074{font-size:42.666667pt;}
.fs5_c00074{font-size:48.000000pt;}
.fs2_c00074{font-size:53.333333pt;}
.fs3_c00074{font-size:58.666667pt;}
.fs4_c00074{font-size:64.000000pt;}
.fs0_c00074{font-size:101.333333pt;}
.y0_c00074{bottom:0.000000pt;}
.y69_c00074{bottom:146.266667pt;}
.y42_c00074{bottom:158.400000pt;}
.y68_c00074{bottom:162.800000pt;}
.y41_c00074{bottom:175.733333pt;}
.y67_c00074{bottom:178.800000pt;}
.y40_c00074{bottom:193.200000pt;}
.y66_c00074{bottom:194.533333pt;}
.y65_c00074{bottom:210.800000pt;}
.y3f_c00074{bottom:211.466667pt;}
.y64_c00074{bottom:226.133333pt;}
.y3e_c00074{bottom:227.733333pt;}
.y63_c00074{bottom:242.400000pt;}
.y3d_c00074{bottom:243.466667pt;}
.y62_c00074{bottom:258.400000pt;}
.y3c_c00074{bottom:259.200000pt;}
.y61_c00074{bottom:274.133333pt;}
.y3b_c00074{bottom:275.200000pt;}
.y60_c00074{bottom:289.866667pt;}
.y3a_c00074{bottom:293.733333pt;}
.y5f_c00074{bottom:306.133333pt;}
.y39_c00074{bottom:310.666667pt;}
.y5e_c00074{bottom:321.866667pt;}
.y38_c00074{bottom:330.533333pt;}
.y5d_c00074{bottom:337.600000pt;}
.y37_c00074{bottom:346.666667pt;}
.y5c_c00074{bottom:353.600000pt;}
.y36_c00074{bottom:366.133333pt;}
.y5b_c00074{bottom:369.600000pt;}
.y5a_c00074{bottom:385.333333pt;}
.y35_c00074{bottom:385.733333pt;}
.y59_c00074{bottom:401.333333pt;}
.y34_c00074{bottom:402.400000pt;}
.y44_c00074{bottom:417.333333pt;}
.y33_c00074{bottom:418.666667pt;}
.y58_c00074{bottom:432.533333pt;}
.y32_c00074{bottom:434.666667pt;}
.y43_c00074{bottom:434.933333pt;}
.y57_c00074{bottom:448.266667pt;}
.y31_c00074{bottom:450.400000pt;}
.y56_c00074{bottom:461.466667pt;}
.y30_c00074{bottom:466.400000pt;}
.y55_c00074{bottom:474.533333pt;}
.y2f_c00074{bottom:482.400000pt;}
.y54_c00074{bottom:486.666667pt;}
.y2e_c00074{bottom:498.400000pt;}
.y53_c00074{bottom:500.133333pt;}
.y52_c00074{bottom:512.400000pt;}
.y2d_c00074{bottom:514.133333pt;}
.y51_c00074{bottom:525.466667pt;}
.y2c_c00074{bottom:530.400000pt;}
.y50_c00074{bottom:538.000000pt;}
.y2b_c00074{bottom:546.133333pt;}
.y4f_c00074{bottom:551.733333pt;}
.y2a_c00074{bottom:562.400000pt;}
.y4e_c00074{bottom:563.600000pt;}
.y4d_c00074{bottom:578.266667pt;}
.y29_c00074{bottom:578.400000pt;}
.y4c_c00074{bottom:590.400000pt;}
.y28_c00074{bottom:594.133333pt;}
.y4b_c00074{bottom:607.066667pt;}
.y27_c00074{bottom:610.133333pt;}
.y4a_c00074{bottom:623.066667pt;}
.y26_c00074{bottom:626.133333pt;}
.y25_c00074{bottom:642.133333pt;}
.y49_c00074{bottom:642.400000pt;}
.y24_c00074{bottom:657.866667pt;}
.y48_c00074{bottom:658.400000pt;}
.y23_c00074{bottom:673.866667pt;}
.y47_c00074{bottom:674.133333pt;}
.y22_c00074{bottom:689.600000pt;}
.y46_c00074{bottom:689.866667pt;}
.y21_c00074{bottom:705.600000pt;}
.y45_c00074{bottom:705.866667pt;}
.y20_c00074{bottom:721.600000pt;}
.y1f_c00074{bottom:738.533333pt;}
.y1e_c00074{bottom:741.066667pt;}
.y1d_c00074{bottom:760.533333pt;}
.y1c_c00074{bottom:765.066667pt;}
.y1b_c00074{bottom:781.733333pt;}
.y12_c00074{bottom:797.733333pt;}
.y1a_c00074{bottom:800.533333pt;}
.y11_c00074{bottom:813.466667pt;}
.y19_c00074{bottom:816.533333pt;}
.y18_c00074{bottom:832.533333pt;}
.y10_c00074{bottom:832.933333pt;}
.y17_c00074{bottom:848.266667pt;}
.yf_c00074{bottom:848.933333pt;}
.y16_c00074{bottom:864.000000pt;}
.ye_c00074{bottom:864.933333pt;}
.yd_c00074{bottom:880.933333pt;}
.y15_c00074{bottom:883.733333pt;}
.yc_c00074{bottom:896.666667pt;}
.y14_c00074{bottom:899.733333pt;}
.y13_c00074{bottom:915.466667pt;}
.yb_c00074{bottom:916.133333pt;}
.y6_c00074{bottom:931.466667pt;}
.ya_c00074{bottom:932.533333pt;}
.y5_c00074{bottom:947.466667pt;}
.y9_c00074{bottom:952.400000pt;}
.y4_c00074{bottom:966.400000pt;}
.y8_c00074{bottom:968.666667pt;}
.y3_c00074{bottom:978.533333pt;}
.y2_c00074{bottom:990.666667pt;}
.y7_c00074{bottom:999.333333pt;}
.y1_c00074{bottom:1012.133333pt;}
.h8_c00074{height:37.333333pt;}
.h3_c00074{height:42.666667pt;}
.h7_c00074{height:48.000000pt;}
.h4_c00074{height:53.333333pt;}
.h5_c00074{height:58.666667pt;}
.h6_c00074{height:64.000000pt;}
.h2_c00074{height:101.333333pt;}
.h1_c00074{height:1132.000000pt;}
.h0_c00074{height:1132.159993pt;}
.w0_c00074{width:843.200032pt;}
.w1_c00074{width:843.333333pt;}
.x0_c00074{left:0.000000pt;}
.x25_c00074{left:64.933333pt;}
.x5a_c00074{left:67.200000pt;}
.x27_c00074{left:69.466667pt;}
.xe7_c00074{left:75.200000pt;}
.xf2_c00074{left:79.066667pt;}
.xf0_c00074{left:80.400000pt;}
.x9d_c00074{left:81.866667pt;}
.xc8_c00074{left:83.200000pt;}
.x37_c00074{left:84.533333pt;}
.x45_c00074{left:85.466667pt;}
.x30_c00074{left:86.933333pt;}
.xe8_c00074{left:97.333333pt;}
.xe6_c00074{left:100.400000pt;}
.xd2_c00074{left:101.333333pt;}
.x31_c00074{left:102.666667pt;}
.xac_c00074{left:104.133333pt;}
.xc0_c00074{left:105.066667pt;}
.x55_c00074{left:106.266667pt;}
.xca_c00074{left:109.066667pt;}
.x4f_c00074{left:114.400000pt;}
.x46_c00074{left:116.533333pt;}
.xad_c00074{left:117.600000pt;}
.xa7_c00074{left:119.066667pt;}
.xa4_c00074{left:120.000000pt;}
.x9e_c00074{left:122.533333pt;}
.x26_c00074{left:124.133333pt;}
.xdb_c00074{left:125.866667pt;}
.xe2_c00074{left:126.800000pt;}
.x3f_c00074{left:127.866667pt;}
.x28_c00074{left:130.533333pt;}
.x47_c00074{left:131.866667pt;}
.xce_c00074{left:133.733333pt;}
.xc4_c00074{left:135.466667pt;}
.xa5_c00074{left:137.866667pt;}
.x34_c00074{left:138.933333pt;}
.xcc_c00074{left:141.066667pt;}
.x60_c00074{left:142.400000pt;}
.x9f_c00074{left:144.933333pt;}
.xd8_c00074{left:146.000000pt;}
.xb1_c00074{left:147.200000pt;}
.xec_c00074{left:148.533333pt;}
.x29_c00074{left:150.400000pt;}
.x50_c00074{left:151.600000pt;}
.xa8_c00074{left:152.666667pt;}
.x56_c00074{left:155.600000pt;}
.xc5_c00074{left:156.933333pt;}
.x51_c00074{left:158.666667pt;}
.x38_c00074{left:161.866667pt;}
.x40_c00074{left:163.733333pt;}
.xbc_c00074{left:166.000000pt;}
.x32_c00074{left:167.600000pt;}
.xb2_c00074{left:169.333333pt;}
.xc1_c00074{left:170.800000pt;}
.x5b_c00074{left:173.066667pt;}
.xd5_c00074{left:174.666667pt;}
.x48_c00074{left:176.400000pt;}
.x2a_c00074{left:178.533333pt;}
.xd3_c00074{left:180.933333pt;}
.x57_c00074{left:182.133333pt;}
.x41_c00074{left:183.200000pt;}
.x39_c00074{left:184.266667pt;}
.xdc_c00074{left:185.733333pt;}
.xc9_c00074{left:187.200000pt;}
.x58_c00074{left:189.466667pt;}
.x3a_c00074{left:191.600000pt;}
.xb5_c00074{left:192.666667pt;}
.x8f_c00074{left:194.266667pt;}
.xe9_c00074{left:195.200000pt;}
.x2b_c00074{left:197.733333pt;}
.xcf_c00074{left:198.933333pt;}
.x49_c00074{left:200.666667pt;}
.xbd_c00074{left:203.066667pt;}
.x59_c00074{left:204.533333pt;}
.x35_c00074{left:206.800000pt;}
.x4a_c00074{left:208.000000pt;}
.xc2_c00074{left:208.933333pt;}
.x90_c00074{left:211.200000pt;}
.x42_c00074{left:212.266667pt;}
.xed_c00074{left:213.466667pt;}
.xea_c00074{left:214.400000pt;}
.xc6_c00074{left:216.133333pt;}
.x5c_c00074{left:218.133333pt;}
.xd0_c00074{left:219.066667pt;}
.x4b_c00074{left:222.666667pt;}
.xe1_c00074{left:224.266667pt;}
.x52_c00074{left:226.533333pt;}
.xa9_c00074{left:227.600000pt;}
.xee_c00074{left:229.733333pt;}
.x3b_c00074{left:231.200000pt;}
.xdd_c00074{left:233.466667pt;}
.x43_c00074{left:234.933333pt;}
.x4c_c00074{left:237.733333pt;}
.xd6_c00074{left:240.666667pt;}
.xe3_c00074{left:242.933333pt;}
.x91_c00074{left:244.533333pt;}
.x2c_c00074{left:246.000000pt;}
.x5d_c00074{left:250.800000pt;}
.xde_c00074{left:252.000000pt;}
.xae_c00074{left:253.866667pt;}
.x3c_c00074{left:255.200000pt;}
.xcb_c00074{left:257.200000pt;}
.x61_c00074{left:259.200000pt;}
.xb9_c00074{left:260.533333pt;}
.xb6_c00074{left:261.466667pt;}
.xe4_c00074{left:262.400000pt;}
.x2d_c00074{left:264.533333pt;}
.xdf_c00074{left:266.133333pt;}
.xbe_c00074{left:267.066667pt;}
.xaa_c00074{left:268.933333pt;}
.x92_c00074{left:270.400000pt;}
.x5e_c00074{left:272.266667pt;}
.x3d_c00074{left:273.733333pt;}
.xd4_c00074{left:275.733333pt;}
.x8a_c00074{left:278.400000pt;}
.xb7_c00074{left:279.333333pt;}
.xd9_c00074{left:280.533333pt;}
.x93_c00074{left:283.200000pt;}
.xd7_c00074{left:286.133333pt;}
.xd1_c00074{left:287.333333pt;}
.xb3_c00074{left:289.333333pt;}
.x1_c00074{left:290.933333pt;}
.x4d_c00074{left:293.066667pt;}
.x53_c00074{left:294.666667pt;}
.x36_c00074{left:299.333333pt;}
.xa6_c00074{left:301.200000pt;}
.xaf_c00074{left:303.466667pt;}
.xb4_c00074{left:304.666667pt;}
.xba_c00074{left:305.600000pt;}
.xe0_c00074{left:307.066667pt;}
.x94_c00074{left:308.400000pt;}
.xb8_c00074{left:310.400000pt;}
.xf1_c00074{left:312.400000pt;}
.x62_c00074{left:313.600000pt;}
.xe5_c00074{left:314.533333pt;}
.xeb_c00074{left:315.866667pt;}
.x2e_c00074{left:317.066667pt;}
.xc7_c00074{left:318.133333pt;}
.x33_c00074{left:320.266667pt;}
.x5f_c00074{left:321.866667pt;}
.xab_c00074{left:323.333333pt;}
.x8c_c00074{left:327.466667pt;}
.x44_c00074{left:329.333333pt;}
.x54_c00074{left:333.733333pt;}
.x95_c00074{left:334.666667pt;}
.xda_c00074{left:338.800000pt;}
.x3e_c00074{left:343.200000pt;}
.xbf_c00074{left:344.533333pt;}
.xc3_c00074{left:345.600000pt;}
.xef_c00074{left:346.933333pt;}
.xb0_c00074{left:348.533333pt;}
.xbb_c00074{left:349.733333pt;}
.xcd_c00074{left:351.066667pt;}
.x2f_c00074{left:354.800000pt;}
.x8d_c00074{left:357.600000pt;}
.x63_c00074{left:359.333333pt;}
.x4e_c00074{left:360.266667pt;}
.x8e_c00074{left:382.266667pt;}
.xf4_c00074{left:386.800000pt;}
.x107_c00074{left:388.133333pt;}
.x8b_c00074{left:389.466667pt;}
.x6_c00074{left:390.400000pt;}
.x96_c00074{left:398.933333pt;}
.x1c_c00074{left:400.266667pt;}
.x124_c00074{left:402.266667pt;}
.x10c_c00074{left:403.200000pt;}
.xf8_c00074{left:404.800000pt;}
.x1d_c00074{left:405.733333pt;}
.x98_c00074{left:410.800000pt;}
.x116_c00074{left:412.533333pt;}
.x104_c00074{left:413.733333pt;}
.x11_c00074{left:415.733333pt;}
.x126_c00074{left:418.000000pt;}
.x99_c00074{left:420.400000pt;}
.x71_c00074{left:421.733333pt;}
.x141_c00074{left:422.933333pt;}
.x78_c00074{left:424.000000pt;}
.x108_c00074{left:426.266667pt;}
.x105_c00074{left:427.866667pt;}
.x12a_c00074{left:429.600000pt;}
.xff_c00074{left:431.066667pt;}
.x1e_c00074{left:432.666667pt;}
.x139_c00074{left:433.600000pt;}
.x12_c00074{left:435.600000pt;}
.x11d_c00074{left:438.400000pt;}
.x125_c00074{left:439.733333pt;}
.x64_c00074{left:440.933333pt;}
.x7_c00074{left:442.266667pt;}
.x87_c00074{left:443.866667pt;}
.x101_c00074{left:445.466667pt;}
.x83_c00074{left:446.666667pt;}
.x69_c00074{left:447.600000pt;}
.x97_c00074{left:448.800000pt;}
.x10f_c00074{left:449.733333pt;}
.x11b_c00074{left:450.933333pt;}
.x9a_c00074{left:452.400000pt;}
.x132_c00074{left:453.866667pt;}
.x13_c00074{left:455.066667pt;}
.x142_c00074{left:457.466667pt;}
.x127_c00074{left:459.600000pt;}
.x117_c00074{left:461.466667pt;}
.x10d_c00074{left:462.400000pt;}
.x16_c00074{left:463.333333pt;}
.x65_c00074{left:465.200000pt;}
.x143_c00074{left:466.133333pt;}
.x79_c00074{left:467.200000pt;}
.xf9_c00074{left:468.533333pt;}
.x14_c00074{left:470.400000pt;}
.x12b_c00074{left:472.533333pt;}
.x120_c00074{left:474.133333pt;}
.x119_c00074{left:475.866667pt;}
.x8_c00074{left:477.466667pt;}
.xa0_c00074{left:478.400000pt;}
.x6e_c00074{left:480.000000pt;}
.x121_c00074{left:482.133333pt;}
.x133_c00074{left:483.600000pt;}
.x128_c00074{left:484.933333pt;}
.x109_c00074{left:486.800000pt;}
.xfa_c00074{left:488.666667pt;}
.x112_c00074{left:490.933333pt;}
.x1f_c00074{left:492.533333pt;}
.x110_c00074{left:495.066667pt;}
.x13a_c00074{left:496.933333pt;}
.x17_c00074{left:497.866667pt;}
.x20_c00074{left:500.533333pt;}
.x72_c00074{left:502.000000pt;}
.xfc_c00074{left:503.600000pt;}
.xf5_c00074{left:504.933333pt;}
.x84_c00074{left:507.200000pt;}
.x6f_c00074{left:508.533333pt;}
.x15_c00074{left:509.733333pt;}
.x9_c00074{left:512.666667pt;}
.x11a_c00074{left:514.266667pt;}
.x13b_c00074{left:515.200000pt;}
.x9b_c00074{left:517.066667pt;}
.x66_c00074{left:518.000000pt;}
.x11c_c00074{left:521.066667pt;}
.x21_c00074{left:523.866667pt;}
.xa1_c00074{left:526.000000pt;}
.x12f_c00074{left:528.000000pt;}
.xfb_c00074{left:528.933333pt;}
.x118_c00074{left:530.800000pt;}
.x6a_c00074{left:532.666667pt;}
.x106_c00074{left:534.133333pt;}
.x136_c00074{left:536.533333pt;}
.x134_c00074{left:537.733333pt;}
.x73_c00074{left:540.133333pt;}
.x88_c00074{left:541.466667pt;}
.x113_c00074{left:542.400000pt;}
.x18_c00074{left:543.600000pt;}
.x102_c00074{left:544.533333pt;}
.x7a_c00074{left:546.800000pt;}
.xf6_c00074{left:550.666667pt;}
.xa2_c00074{left:552.266667pt;}
.x129_c00074{left:553.733333pt;}
.x13e_c00074{left:554.933333pt;}
.x11e_c00074{left:557.733333pt;}
.x67_c00074{left:559.333333pt;}
.x7b_c00074{left:561.866667pt;}
.x12c_c00074{left:564.000000pt;}
.x122_c00074{left:565.333333pt;}
.x22_c00074{left:566.800000pt;}
.x9c_c00074{left:568.000000pt;}
.x100_c00074{left:569.866667pt;}
.xa_c00074{left:571.600000pt;}
.x85_c00074{left:573.466667pt;}
.x70_c00074{left:575.066667pt;}
.x74_c00074{left:576.666667pt;}
.xb_c00074{left:578.000000pt;}
.x89_c00074{left:579.200000pt;}
.xc_c00074{left:584.133333pt;}
.x10a_c00074{left:586.933333pt;}
.x7c_c00074{left:588.400000pt;}
.x19_c00074{left:589.733333pt;}
.xd_c00074{left:591.466667pt;}
.x12e_c00074{left:593.466667pt;}
.x81_c00074{left:595.466667pt;}
.x137_c00074{left:597.066667pt;}
.x130_c00074{left:599.466667pt;}
.x23_c00074{left:601.733333pt;}
.xfd_c00074{left:602.800000pt;}
.xe_c00074{left:604.000000pt;}
.x13f_c00074{left:604.933333pt;}
.x135_c00074{left:607.466667pt;}
.x68_c00074{left:610.800000pt;}
.x6b_c00074{left:612.000000pt;}
.xa3_c00074{left:614.933333pt;}
.x75_c00074{left:618.000000pt;}
.x7d_c00074{left:620.666667pt;}
.xf3_c00074{left:621.733333pt;}
.x86_c00074{left:623.066667pt;}
.x3_c00074{left:624.000000pt;}
.x114_c00074{left:625.333333pt;}
.xf_c00074{left:628.266667pt;}
.x7e_c00074{left:629.333333pt;}
.x13d_c00074{left:631.333333pt;}
.x12d_c00074{left:634.000000pt;}
.x6c_c00074{left:635.333333pt;}
.x140_c00074{left:636.266667pt;}
.x10b_c00074{left:637.200000pt;}
.x1a_c00074{left:638.400000pt;}
.x138_c00074{left:639.333333pt;}
.x76_c00074{left:642.000000pt;}
.xf7_c00074{left:643.866667pt;}
.x13c_c00074{left:645.466667pt;}
.x1b_c00074{left:646.666667pt;}
.x123_c00074{left:647.600000pt;}
.x11f_c00074{left:649.200000pt;}
.x115_c00074{left:650.266667pt;}
.x4_c00074{left:651.200000pt;}
.x10_c00074{left:653.200000pt;}
.x144_c00074{left:654.933333pt;}
.x24_c00074{left:657.066667pt;}
.x77_c00074{left:658.933333pt;}
.x7f_c00074{left:661.600000pt;}
.x82_c00074{left:663.600000pt;}
.x131_c00074{left:666.000000pt;}
.x6d_c00074{left:667.600000pt;}
.xfe_c00074{left:669.733333pt;}
.x103_c00074{left:672.533333pt;}
.x111_c00074{left:674.266667pt;}
.x2_c00074{left:675.866667pt;}
.x5_c00074{left:678.400000pt;}
.x80_c00074{left:680.533333pt;}
.x10e_c00074{left:682.666667pt;}
}





/* 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_c00075 {
    display:none;
  }
  .loading-indicator_c00075.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00075 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_c00075 { 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_c00075" -> "#page-container .classname_c00075")
 */
.pf_c00075 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00075 { /* 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_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00075 { /* 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_c00075 { /* 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_c00075 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00075 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00075 {overflow:visible;}
  }
}
.c_c00075 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00075 { /* 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_c00075:after { /* webkit #35443 */
  content: '';
}
.t_c00075:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00075 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 */
}
.__c00075 { /* 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_c00075 { /* info for Javascript */
  display:none;
}
.l_c00075 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00075 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00075 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00075: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_c00075 {
    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_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00075.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_c00075 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00075;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.000000;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;}
.m79_c00075{transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);}
.m108_c00075{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m77_c00075{transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);}
.m41_c00075{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00075{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.m78_c00075{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.md0_c00075{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00075{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00075{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9_c00075{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mef_c00075{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00075{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00075{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4_c00075{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m107_c00075{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00075{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00075{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00075{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00075{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m10_c00075{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00075{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m103_c00075{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mda_c00075{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m89_c00075{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00075{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00075{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m110_c00075{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m106_c00075{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m63_c00075{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00075{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m64_c00075{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md9_c00075{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md3_c00075{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00075{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00075{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m53_c00075{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m49_c00075{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me6_c00075{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m86_c00075{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00075{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00075{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m60_c00075{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mff_c00075{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me_c00075{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00075{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00075{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m58_c00075{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m22_c00075{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00075{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m67_c00075{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00075{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m96_c00075{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00075{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00075{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mad_c00075{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00075{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00075{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m111_c00075{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m24_c00075{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.md7_c00075{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m50_c00075{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc_c00075{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md1_c00075{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m91_c00075{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mde_c00075{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m127_c00075{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00075{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00075{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00075{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m26_c00075{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00075{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00075{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m114_c00075{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00075{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md4_c00075{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m95_c00075{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m31_c00075{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00075{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00075{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00075{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m15_c00075{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m76_c00075{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00075{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00075{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mab_c00075{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00075{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m30_c00075{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5_c00075{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00075{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m62_c00075{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m119_c00075{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m25_c00075{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00075{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma_c00075{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m11_c00075{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me4_c00075{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00075{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00075{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m48_c00075{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m90_c00075{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m80_c00075{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8_c00075{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00075{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m16_c00075{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00075{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00075{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.maa_c00075{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m28_c00075{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00075{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00075{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mb_c00075{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00075{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6_c00075{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00075{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m84_c00075{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00075{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m35_c00075{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00075{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00075{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m27_c00075{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m19_c00075{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m115_c00075{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00075{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m68_c00075{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m12_c00075{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m70_c00075{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00075{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m33_c00075{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m14_c00075{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00075{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00075{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m18_c00075{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m125_c00075{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00075{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m34_c00075{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m21_c00075{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mce_c00075{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00075{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3_c00075{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mca_c00075{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00075{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m44_c00075{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00075{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00075{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00075{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00075{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mac_c00075{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m71_c00075{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00075{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2_c00075{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00075{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m105_c00075{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m29_c00075{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m116_c00075{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00075{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00075{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me8_c00075{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m128_c00075{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.maf_c00075{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00075{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m23_c00075{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00075{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mba_c00075{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00075{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m93_c00075{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00075{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00075{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00075{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00075{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00075{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m20_c00075{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m17_c00075{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md2_c00075{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00075{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m85_c00075{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00075{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00075{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00075{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00075{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00075{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me9_c00075{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00075{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m92_c00075{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m61_c00075{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m57_c00075{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00075{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m37_c00075{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m32_c00075{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me5_c00075{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00075{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7_c00075{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m120_c00075{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00075{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m117_c00075{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m126_c00075{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00075{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m129_c00075{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m59_c00075{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00075{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.med_c00075{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00075{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m39_c00075{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00075{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00075{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m74_c00075{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m82_c00075{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.md_c00075{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00075{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00075{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00075{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m47_c00075{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m118_c00075{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m100_c00075{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00075{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mee_c00075{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00075{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m66_c00075{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00075{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m102_c00075{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00075{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m113_c00075{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00075{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00075{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m52_c00075{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00075{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00075{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf_c00075{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00075{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m97_c00075{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m122_c00075{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m124_c00075{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m87_c00075{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m83_c00075{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mae_c00075{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00075{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m54_c00075{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mec_c00075{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m98_c00075{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00075{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.me0_c00075{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md8_c00075{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00075{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m99_c00075{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m75_c00075{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00075{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00075{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m0_c00075{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m42_c00075{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m36_c00075{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00075{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00075{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m88_c00075{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00075{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m94_c00075{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00075{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00075{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m43_c00075{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00075{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00075{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m121_c00075{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00075{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m73_c00075{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me3_c00075{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00075{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m101_c00075{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.meb_c00075{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m56_c00075{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me7_c00075{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00075{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00075{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00075{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m40_c00075{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m123_c00075{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m112_c00075{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.md6_c00075{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m46_c00075{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00075{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m55_c00075{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00075{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m38_c00075{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00075{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00075{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00075{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md5_c00075{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m72_c00075{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mea_c00075{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00075{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m81_c00075{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m51_c00075{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m45_c00075{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m109_c00075{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00075{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.m104_c00075{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.me2_c00075{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m65_c00075{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.me1_c00075{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00075{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m69_c00075{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls0_c00075{letter-spacing:0.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{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__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00075{word-spacing:-7.458101px;}
.ws4_c00075{word-spacing:-7.219542px;}
.ws1_c00075{word-spacing:-3.467354px;}
.ws9_c00075{word-spacing:-1.900763px;}
.wse_c00075{word-spacing:0.000000px;}
.ws7_c00075{word-spacing:1.964286px;}
.ws2_c00075{word-spacing:2.593985px;}
.wsb_c00075{word-spacing:10.637002px;}
.ws0_c00075{word-spacing:11.063694px;}
.wsd_c00075{word-spacing:15.833333px;}
.wsa_c00075{word-spacing:21.764331px;}
.wsc_c00075{word-spacing:25.714286px;}
.ws8_c00075{word-spacing:49.000000px;}
.ws5_c00075{word-spacing:72.962606px;}
.ws3_c00075{word-spacing:917.675676px;}
._0_c00075{width:40.447307px;}
._1_c00075{width:47.473068px;}
._2_c00075{width:68.214286px;}
.fc0_c00075{color:transparent;}
.fs7_c00075{font-size:30.000000px;}
.fs9_c00075{font-size:36.000000px;}
.fs8_c00075{font-size:42.000000px;}
.fs4_c00075{font-size:48.000000px;}
.fs6_c00075{font-size:54.000000px;}
.fs3_c00075{font-size:60.000000px;}
.fs2_c00075{font-size:66.000000px;}
.fs5_c00075{font-size:72.000000px;}
.fs0_c00075{font-size:78.000000px;}
.fs1_c00075{font-size:84.000000px;}
.y0_c00075{bottom:0.000000px;}
.y69_c00075{bottom:175.800000px;}
.y65_c00075{bottom:180.000000px;}
.y68_c00075{bottom:190.500000px;}
.y64_c00075{bottom:198.000000px;}
.y67_c00075{bottom:204.900000px;}
.y63_c00075{bottom:215.700000px;}
.y66_c00075{bottom:219.300000px;}
.y62_c00075{bottom:234.000000px;}
.y61_c00075{bottom:247.650000px;}
.y4c_c00075{bottom:252.000000px;}
.y32_c00075{bottom:269.700000px;}
.y60_c00075{bottom:271.800000px;}
.y5f_c00075{bottom:276.450000px;}
.y31_c00075{bottom:287.550000px;}
.y5e_c00075{bottom:291.900000px;}
.y30_c00075{bottom:305.550000px;}
.y5d_c00075{bottom:306.000000px;}
.y5c_c00075{bottom:320.400000px;}
.y2f_c00075{bottom:323.550000px;}
.y2e_c00075{bottom:341.550000px;}
.y59_c00075{bottom:355.650000px;}
.y2d_c00075{bottom:359.550000px;}
.y58_c00075{bottom:370.050000px;}
.y2c_c00075{bottom:377.250000px;}
.y57_c00075{bottom:384.450000px;}
.y2b_c00075{bottom:396.000000px;}
.y5a_c00075{bottom:401.400000px;}
.y5b_c00075{bottom:411.150000px;}
.y56_c00075{bottom:412.950000px;}
.y2a_c00075{bottom:413.250000px;}
.y55_c00075{bottom:427.350000px;}
.y29_c00075{bottom:431.250000px;}
.y54_c00075{bottom:442.500000px;}
.y28_c00075{bottom:449.250000px;}
.y53_c00075{bottom:456.150000px;}
.y27_c00075{bottom:467.250000px;}
.y52_c00075{bottom:471.600000px;}
.y26_c00075{bottom:485.250000px;}
.y51_c00075{bottom:486.000000px;}
.y50_c00075{bottom:498.900000px;}
.y25_c00075{bottom:502.950000px;}
.y4f_c00075{bottom:513.750000px;}
.y24_c00075{bottom:520.950000px;}
.y4e_c00075{bottom:531.750000px;}
.y22_c00075{bottom:546.900000px;}
.y4d_c00075{bottom:550.050000px;}
.y23_c00075{bottom:560.550000px;}
.y21_c00075{bottom:561.600000px;}
.y4b_c00075{bottom:572.100000px;}
.y20_c00075{bottom:574.950000px;}
.y1f_c00075{bottom:589.350000px;}
.y4a_c00075{bottom:590.100000px;}
.y1e_c00075{bottom:607.650000px;}
.y49_c00075{bottom:608.100000px;}
.y1d_c00075{bottom:625.650000px;}
.y48_c00075{bottom:626.100000px;}
.y1c_c00075{bottom:637.950000px;}
.y1b_c00075{bottom:643.650000px;}
.y47_c00075{bottom:644.100000px;}
.y46_c00075{bottom:662.100000px;}
.y1a_c00075{bottom:670.350000px;}
.y45_c00075{bottom:680.100000px;}
.y19_c00075{bottom:688.350000px;}
.y44_c00075{bottom:698.100000px;}
.y18_c00075{bottom:706.200000px;}
.y43_c00075{bottom:716.100000px;}
.y17_c00075{bottom:724.200000px;}
.y42_c00075{bottom:738.300000px;}
.y16_c00075{bottom:742.200000px;}
.y41_c00075{bottom:756.300000px;}
.y15_c00075{bottom:760.200000px;}
.y14_c00075{bottom:778.200000px;}
.y13_c00075{bottom:795.900000px;}
.y40_c00075{bottom:796.500000px;}
.y12_c00075{bottom:813.900000px;}
.y3f_c00075{bottom:814.200000px;}
.y3e_c00075{bottom:832.200000px;}
.y11_c00075{bottom:840.600000px;}
.y3d_c00075{bottom:850.200000px;}
.y10_c00075{bottom:867.600000px;}
.y3c_c00075{bottom:867.900000px;}
.y3b_c00075{bottom:886.200000px;}
.yf_c00075{bottom:889.200000px;}
.y3a_c00075{bottom:903.900000px;}
.ye_c00075{bottom:907.950000px;}
.y39_c00075{bottom:921.900000px;}
.yd_c00075{bottom:934.350000px;}
.y38_c00075{bottom:943.950000px;}
.yc_c00075{bottom:952.650000px;}
.y37_c00075{bottom:962.250000px;}
.yb_c00075{bottom:970.950000px;}
.y36_c00075{bottom:984.600000px;}
.ya_c00075{bottom:988.650000px;}
.y9_c00075{bottom:1006.950000px;}
.y8_c00075{bottom:1024.950000px;}
.y7_c00075{bottom:1042.650000px;}
.y35_c00075{bottom:1042.950000px;}
.y6_c00075{bottom:1060.950000px;}
.y5_c00075{bottom:1078.950000px;}
.y4_c00075{bottom:1096.650000px;}
.y34_c00075{bottom:1096.950000px;}
.y3_c00075{bottom:1114.950000px;}
.y33_c00075{bottom:1115.250000px;}
.y1_c00075{bottom:1140.900000px;}
.y2_c00075{bottom:1141.950000px;}
.h9_c00075{height:30.000000px;}
.hb_c00075{height:36.000000px;}
.ha_c00075{height:42.000000px;}
.h6_c00075{height:48.000000px;}
.h8_c00075{height:54.000000px;}
.h5_c00075{height:60.000000px;}
.h4_c00075{height:66.000000px;}
.h7_c00075{height:72.000000px;}
.h2_c00075{height:78.000000px;}
.h3_c00075{height:84.000000px;}
.h1_c00075{height:1267.500000px;}
.h0_c00075{height:1267.559967px;}
.w0_c00075{width:948.600036px;}
.w1_c00075{width:948.750000px;}
.x0_c00075{left:0.000000px;}
.x4e_c00075{left:167.100000px;}
.x1_c00075{left:176.700000px;}
.x45_c00075{left:178.200000px;}
.x50_c00075{left:179.250000px;}
.x4d_c00075{left:185.100000px;}
.x6f_c00075{left:187.200000px;}
.x9c_c00075{left:193.650000px;}
.x63_c00075{left:194.700000px;}
.x3_c00075{left:195.900000px;}
.x27_c00075{left:196.950000px;}
.x43_c00075{left:205.500000px;}
.x51_c00075{left:210.600000px;}
.x81_c00075{left:211.800000px;}
.x16_c00075{left:213.900000px;}
.x53_c00075{left:215.250000px;}
.x1d_c00075{left:216.750000px;}
.x9a_c00075{left:221.250000px;}
.x78_c00075{left:222.450000px;}
.x8e_c00075{left:223.650000px;}
.xd_c00075{left:228.150000px;}
.x28_c00075{left:230.100000px;}
.x5f_c00075{left:231.300000px;}
.x97_c00075{left:232.950000px;}
.x4_c00075{left:236.550000px;}
.x69_c00075{left:238.200000px;}
.x85_c00075{left:239.700000px;}
.x17_c00075{left:240.900000px;}
.x70_c00075{left:243.000000px;}
.x4f_c00075{left:244.800000px;}
.xe_c00075{left:247.200000px;}
.x29_c00075{left:249.150000px;}
.x82_c00075{left:252.150000px;}
.x1e_c00075{left:253.800000px;}
.x3a_c00075{left:254.850000px;}
.x24_c00075{left:260.400000px;}
.x65_c00075{left:263.100000px;}
.x34_c00075{left:267.150000px;}
.xf_c00075{left:268.800000px;}
.x7d_c00075{left:270.750000px;}
.x3e_c00075{left:272.700000px;}
.x2a_c00075{left:274.650000px;}
.x7f_c00075{left:276.750000px;}
.x54_c00075{left:278.250000px;}
.x18_c00075{left:280.200000px;}
.x5_c00075{left:281.850000px;}
.x10_c00075{left:285.300000px;}
.x9b_c00075{left:287.100000px;}
.x79_c00075{left:289.350000px;}
.x8c_c00075{left:290.700000px;}
.x6_c00075{left:291.900000px;}
.x8f_c00075{left:294.150000px;}
.x3b_c00075{left:295.500000px;}
.x44_c00075{left:296.550000px;}
.x6e_c00075{left:297.900000px;}
.x2d_c00075{left:299.550000px;}
.x1f_c00075{left:300.900000px;}
.x55_c00075{left:302.700000px;}
.x71_c00075{left:304.950000px;}
.x46_c00075{left:306.750000px;}
.x3f_c00075{left:311.250000px;}
.x5b_c00075{left:313.500000px;}
.x60_c00075{left:314.550000px;}
.x87_c00075{left:316.500000px;}
.x94_c00075{left:317.550000px;}
.x47_c00075{left:318.600000px;}
.x7_c00075{left:320.400000px;}
.x25_c00075{left:322.650000px;}
.x19_c00075{left:323.700000px;}
.x140_c00075{left:325.050000px;}
.x2e_c00075{left:326.850000px;}
.x40_c00075{left:328.950000px;}
.x11_c00075{left:330.000000px;}
.x35_c00075{left:333.750000px;}
.x20_c00075{left:335.850000px;}
.x75_c00075{left:337.050000px;}
.x91_c00075{left:338.700000px;}
.x12_c00075{left:339.750000px;}
.x72_c00075{left:342.450000px;}
.x61_c00075{left:343.650000px;}
.x64_c00075{left:345.450000px;}
.x6a_c00075{left:346.950000px;}
.x2b_c00075{left:348.450000px;}
.x92_c00075{left:352.650000px;}
.x36_c00075{left:354.600000px;}
.x21_c00075{left:357.150000px;}
.x76_c00075{left:358.350000px;}
.x48_c00075{left:360.000000px;}
.x73_c00075{left:363.000000px;}
.x8d_c00075{left:368.100000px;}
.x13_c00075{left:370.050000px;}
.x9d_c00075{left:372.900000px;}
.x2f_c00075{left:374.400000px;}
.x56_c00075{left:375.450000px;}
.x9e_c00075{left:376.950000px;}
.x1a_c00075{left:378.000000px;}
.x37_c00075{left:379.500000px;}
.x52_c00075{left:382.050000px;}
.x93_c00075{left:383.250000px;}
.x49_c00075{left:385.200000px;}
.x6b_c00075{left:387.300000px;}
.x8_c00075{left:389.850000px;}
.x74_c00075{left:392.100000px;}
.x30_c00075{left:393.900000px;}
.x3c_c00075{left:395.550000px;}
.x57_c00075{left:397.350000px;}
.x90_c00075{left:400.050000px;}
.x5c_c00075{left:401.700000px;}
.x89_c00075{left:403.350000px;}
.x41_c00075{left:404.550000px;}
.x9_c00075{left:408.900000px;}
.x98_c00075{left:411.450000px;}
.x88_c00075{left:413.700000px;}
.x31_c00075{left:414.750000px;}
.x80_c00075{left:415.800000px;}
.x22_c00075{left:418.350000px;}
.x58_c00075{left:420.000000px;}
.x2c_c00075{left:422.250000px;}
.x2_c00075{left:424.350000px;}
.x141_c00075{left:428.400000px;}
.x4a_c00075{left:429.450000px;}
.x38_c00075{left:430.950000px;}
.x32_c00075{left:432.000000px;}
.x77_c00075{left:434.700000px;}
.x95_c00075{left:436.350000px;}
.xa_c00075{left:437.700000px;}
.x3d_c00075{left:439.800000px;}
.x14_c00075{left:442.050000px;}
.x7a_c00075{left:443.850000px;}
.xb_c00075{left:445.950000px;}
.x42_c00075{left:447.750000px;}
.x62_c00075{left:448.800000px;}
.x66_c00075{left:451.650000px;}
.x6c_c00075{left:453.450000px;}
.x8a_c00075{left:455.550000px;}
.x1b_c00075{left:457.950000px;}
.x39_c00075{left:460.500000px;}
.x15_c00075{left:462.600000px;}
.xc_c00075{left:465.000000px;}
.x83_c00075{left:466.500000px;}
.x23_c00075{left:468.450000px;}
.x7b_c00075{left:470.850000px;}
.x67_c00075{left:472.200000px;}
.x59_c00075{left:473.250000px;}
.x5d_c00075{left:474.450000px;}
.x1c_c00075{left:477.750000px;}
.x99_c00075{left:480.150000px;}
.x4b_c00075{left:483.150000px;}
.x96_c00075{left:484.650000px;}
.x7c_c00075{left:486.000000px;}
.x33_c00075{left:487.800000px;}
.x13d_c00075{left:489.600000px;}
.x5a_c00075{left:490.950000px;}
.x8b_c00075{left:493.050000px;}
.x26_c00075{left:495.750000px;}
.x68_c00075{left:497.700000px;}
.x6d_c00075{left:498.900000px;}
.x84_c00075{left:500.400000px;}
.x86_c00075{left:502.050000px;}
.x4c_c00075{left:503.700000px;}
.x5e_c00075{left:505.350000px;}
.x7e_c00075{left:510.450000px;}
.x134_c00075{left:532.800000px;}
.x132_c00075{left:534.150000px;}
.x11e_c00075{left:536.400000px;}
.xcb_c00075{left:537.450000px;}
.x12f_c00075{left:550.050000px;}
.xf1_c00075{left:551.550000px;}
.xe3_c00075{left:552.900000px;}
.xfb_c00075{left:554.100000px;}
.x9f_c00075{left:555.150000px;}
.x13b_c00075{left:557.250000px;}
.x12a_c00075{left:563.700000px;}
.x122_c00075{left:565.500000px;}
.x135_c00075{left:567.600000px;}
.xeb_c00075{left:569.250000px;}
.xe8_c00075{left:570.750000px;}
.xd0_c00075{left:573.750000px;}
.xdf_c00075{left:575.850000px;}
.xa0_c00075{left:577.500000px;}
.x142_c00075{left:580.350000px;}
.xf4_c00075{left:581.400000px;}
.x13e_c00075{left:582.750000px;}
.x125_c00075{left:586.050000px;}
.x114_c00075{left:587.100000px;}
.xe4_c00075{left:588.600000px;}
.xa6_c00075{left:591.900000px;}
.xfc_c00075{left:593.700000px;}
.xc0_c00075{left:594.900000px;}
.xb4_c00075{left:597.300000px;}
.xf5_c00075{left:598.350000px;}
.x111_c00075{left:599.550000px;}
.x10f_c00075{left:600.900000px;}
.x109_c00075{left:602.550000px;}
.x12b_c00075{left:604.950000px;}
.xc8_c00075{left:607.500000px;}
.xac_c00075{left:608.850000px;}
.xe5_c00075{left:610.950000px;}
.xba_c00075{left:614.850000px;}
.xa7_c00075{left:618.600000px;}
.x144_c00075{left:619.650000px;}
.x10c_c00075{left:621.450000px;}
.x11a_c00075{left:623.100000px;}
.x106_c00075{left:624.600000px;}
.xe0_c00075{left:625.950000px;}
.x101_c00075{left:627.450000px;}
.x11f_c00075{left:631.350000px;}
.xad_c00075{left:634.050000px;}
.xbb_c00075{left:635.400000px;}
.xfd_c00075{left:636.600000px;}
.xa1_c00075{left:637.950000px;}
.xf6_c00075{left:639.000000px;}
.x126_c00075{left:640.050000px;}
.xc1_c00075{left:642.000000px;}
.xec_c00075{left:643.800000px;}
.xdc_c00075{left:644.850000px;}
.x136_c00075{left:647.700000px;}
.xd4_c00075{left:649.200000px;}
.xb5_c00075{left:650.250000px;}
.xae_c00075{left:651.750000px;}
.xd1_c00075{left:653.250000px;}
.xc9_c00075{left:654.300000px;}
.x115_c00075{left:655.800000px;}
.xf2_c00075{left:657.450000px;}
.xe6_c00075{left:658.800000px;}
.xf8_c00075{left:660.600000px;}
.x127_c00075{left:662.400000px;}
.x11b_c00075{left:666.300000px;}
.x13a_c00075{left:669.000000px;}
.xb6_c00075{left:670.350000px;}
.xbc_c00075{left:671.700000px;}
.xc2_c00075{left:673.650000px;}
.x12d_c00075{left:675.150000px;}
.x107_c00075{left:676.800000px;}
.xca_c00075{left:679.500000px;}
.xd5_c00075{left:680.850000px;}
.xf7_c00075{left:682.200000px;}
.xa2_c00075{left:683.700000px;}
.xa8_c00075{left:684.900000px;}
.xe1_c00075{left:686.100000px;}
.xcc_c00075{left:688.650000px;}
.xf9_c00075{left:689.700000px;}
.xd6_c00075{left:690.900000px;}
.x12c_c00075{left:692.850000px;}
.xaf_c00075{left:694.650000px;}
.x130_c00075{left:695.850000px;}
.xbd_c00075{left:697.200000px;}
.x120_c00075{left:700.800000px;}
.xe7_c00075{left:704.550000px;}
.xf3_c00075{left:707.400000px;}
.x116_c00075{left:709.800000px;}
.xc3_c00075{left:711.150000px;}
.x108_c00075{left:712.500000px;}
.x112_c00075{left:715.800000px;}
.xbe_c00075{left:717.750000px;}
.xc4_c00075{left:719.850000px;}
.xed_c00075{left:721.950000px;}
.xb0_c00075{left:725.250000px;}
.x119_c00075{left:726.750000px;}
.xd7_c00075{left:727.950000px;}
.xdd_c00075{left:729.450000px;}
.x124_c00075{left:730.650000px;}
.xfe_c00075{left:732.900000px;}
.x128_c00075{left:739.050000px;}
.x10d_c00075{left:740.250000px;}
.x131_c00075{left:741.900000px;}
.xff_c00075{left:744.750000px;}
.xb7_c00075{left:747.000000px;}
.xb1_c00075{left:748.950000px;}
.xd8_c00075{left:750.600000px;}
.x137_c00075{left:753.600000px;}
.x104_c00075{left:755.400000px;}
.x113_c00075{left:756.450000px;}
.xd2_c00075{left:757.650000px;}
.xe9_c00075{left:760.500000px;}
.xa3_c00075{left:764.400000px;}
.x10a_c00075{left:765.600000px;}
.x102_c00075{left:766.800000px;}
.xa9_c00075{left:768.750000px;}
.x143_c00075{left:770.400000px;}
.x13c_c00075{left:773.100000px;}
.xc5_c00075{left:774.900000px;}
.xb2_c00075{left:776.250000px;}
.x138_c00075{left:777.750000px;}
.xd9_c00075{left:779.100000px;}
.xaa_c00075{left:782.850000px;}
.xbf_c00075{left:785.400000px;}
.x13f_c00075{left:787.200000px;}
.x10b_c00075{left:789.750000px;}
.x110_c00075{left:791.550000px;}
.xcd_c00075{left:794.400000px;}
.xda_c00075{left:798.600000px;}
.xc6_c00075{left:800.850000px;}
.xea_c00075{left:801.900000px;}
.x129_c00075{left:803.850000px;}
.x117_c00075{left:805.200000px;}
.x123_c00075{left:806.400000px;}
.xee_c00075{left:809.100000px;}
.x105_c00075{left:811.500000px;}
.x133_c00075{left:813.150000px;}
.x100_c00075{left:814.200000px;}
.xa4_c00075{left:816.900000px;}
.xde_c00075{left:819.900000px;}
.xb3_c00075{left:823.800000px;}
.x11c_c00075{left:825.450000px;}
.x103_c00075{left:830.100000px;}
.x12e_c00075{left:831.600000px;}
.x121_c00075{left:832.950000px;}
.xd3_c00075{left:835.050000px;}
.xb8_c00075{left:837.000000px;}
.xc7_c00075{left:841.500000px;}
.xfa_c00075{left:845.700000px;}
.xce_c00075{left:847.350000px;}
.x139_c00075{left:848.700000px;}
.xef_c00075{left:850.800000px;}
.xa5_c00075{left:853.650000px;}
.xdb_c00075{left:854.700000px;}
.xe2_c00075{left:856.350000px;}
.x11d_c00075{left:859.650000px;}
.xab_c00075{left:861.300000px;}
.xf0_c00075{left:862.650000px;}
.xb9_c00075{left:864.000000px;}
.xcf_c00075{left:865.050000px;}
.x10e_c00075{left:870.600000px;}
.x118_c00075{left:871.800000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws6_c00075{word-spacing:-6.629423pt;}
.ws4_c00075{word-spacing:-6.417370pt;}
.ws1_c00075{word-spacing:-3.082092pt;}
.ws9_c00075{word-spacing:-1.689567pt;}
.wse_c00075{word-spacing:0.000000pt;}
.ws7_c00075{word-spacing:1.746032pt;}
.ws2_c00075{word-spacing:2.305764pt;}
.wsb_c00075{word-spacing:9.455113pt;}
.ws0_c00075{word-spacing:9.834395pt;}
.wsd_c00075{word-spacing:14.074074pt;}
.wsa_c00075{word-spacing:19.346072pt;}
.wsc_c00075{word-spacing:22.857143pt;}
.ws8_c00075{word-spacing:43.555556pt;}
.ws5_c00075{word-spacing:64.855649pt;}
.ws3_c00075{word-spacing:815.711712pt;}
._0_c00075{width:35.953162pt;}
._1_c00075{width:42.198283pt;}
._2_c00075{width:60.634921pt;}
.fs7_c00075{font-size:26.666667pt;}
.fs9_c00075{font-size:32.000000pt;}
.fs8_c00075{font-size:37.333333pt;}
.fs4_c00075{font-size:42.666667pt;}
.fs6_c00075{font-size:48.000000pt;}
.fs3_c00075{font-size:53.333333pt;}
.fs2_c00075{font-size:58.666667pt;}
.fs5_c00075{font-size:64.000000pt;}
.fs0_c00075{font-size:69.333333pt;}
.fs1_c00075{font-size:74.666667pt;}
.y0_c00075{bottom:0.000000pt;}
.y69_c00075{bottom:156.266667pt;}
.y65_c00075{bottom:160.000000pt;}
.y68_c00075{bottom:169.333333pt;}
.y64_c00075{bottom:176.000000pt;}
.y67_c00075{bottom:182.133333pt;}
.y63_c00075{bottom:191.733333pt;}
.y66_c00075{bottom:194.933333pt;}
.y62_c00075{bottom:208.000000pt;}
.y61_c00075{bottom:220.133333pt;}
.y4c_c00075{bottom:224.000000pt;}
.y32_c00075{bottom:239.733333pt;}
.y60_c00075{bottom:241.600000pt;}
.y5f_c00075{bottom:245.733333pt;}
.y31_c00075{bottom:255.600000pt;}
.y5e_c00075{bottom:259.466667pt;}
.y30_c00075{bottom:271.600000pt;}
.y5d_c00075{bottom:272.000000pt;}
.y5c_c00075{bottom:284.800000pt;}
.y2f_c00075{bottom:287.600000pt;}
.y2e_c00075{bottom:303.600000pt;}
.y59_c00075{bottom:316.133333pt;}
.y2d_c00075{bottom:319.600000pt;}
.y58_c00075{bottom:328.933333pt;}
.y2c_c00075{bottom:335.333333pt;}
.y57_c00075{bottom:341.733333pt;}
.y2b_c00075{bottom:352.000000pt;}
.y5a_c00075{bottom:356.800000pt;}
.y5b_c00075{bottom:365.466667pt;}
.y56_c00075{bottom:367.066667pt;}
.y2a_c00075{bottom:367.333333pt;}
.y55_c00075{bottom:379.866667pt;}
.y29_c00075{bottom:383.333333pt;}
.y54_c00075{bottom:393.333333pt;}
.y28_c00075{bottom:399.333333pt;}
.y53_c00075{bottom:405.466667pt;}
.y27_c00075{bottom:415.333333pt;}
.y52_c00075{bottom:419.200000pt;}
.y26_c00075{bottom:431.333333pt;}
.y51_c00075{bottom:432.000000pt;}
.y50_c00075{bottom:443.466667pt;}
.y25_c00075{bottom:447.066667pt;}
.y4f_c00075{bottom:456.666667pt;}
.y24_c00075{bottom:463.066667pt;}
.y4e_c00075{bottom:472.666667pt;}
.y22_c00075{bottom:486.133333pt;}
.y4d_c00075{bottom:488.933333pt;}
.y23_c00075{bottom:498.266667pt;}
.y21_c00075{bottom:499.200000pt;}
.y4b_c00075{bottom:508.533333pt;}
.y20_c00075{bottom:511.066667pt;}
.y1f_c00075{bottom:523.866667pt;}
.y4a_c00075{bottom:524.533333pt;}
.y1e_c00075{bottom:540.133333pt;}
.y49_c00075{bottom:540.533333pt;}
.y1d_c00075{bottom:556.133333pt;}
.y48_c00075{bottom:556.533333pt;}
.y1c_c00075{bottom:567.066667pt;}
.y1b_c00075{bottom:572.133333pt;}
.y47_c00075{bottom:572.533333pt;}
.y46_c00075{bottom:588.533333pt;}
.y1a_c00075{bottom:595.866667pt;}
.y45_c00075{bottom:604.533333pt;}
.y19_c00075{bottom:611.866667pt;}
.y44_c00075{bottom:620.533333pt;}
.y18_c00075{bottom:627.733333pt;}
.y43_c00075{bottom:636.533333pt;}
.y17_c00075{bottom:643.733333pt;}
.y42_c00075{bottom:656.266667pt;}
.y16_c00075{bottom:659.733333pt;}
.y41_c00075{bottom:672.266667pt;}
.y15_c00075{bottom:675.733333pt;}
.y14_c00075{bottom:691.733333pt;}
.y13_c00075{bottom:707.466667pt;}
.y40_c00075{bottom:708.000000pt;}
.y12_c00075{bottom:723.466667pt;}
.y3f_c00075{bottom:723.733333pt;}
.y3e_c00075{bottom:739.733333pt;}
.y11_c00075{bottom:747.200000pt;}
.y3d_c00075{bottom:755.733333pt;}
.y10_c00075{bottom:771.200000pt;}
.y3c_c00075{bottom:771.466667pt;}
.y3b_c00075{bottom:787.733333pt;}
.yf_c00075{bottom:790.400000pt;}
.y3a_c00075{bottom:803.466667pt;}
.ye_c00075{bottom:807.066667pt;}
.y39_c00075{bottom:819.466667pt;}
.yd_c00075{bottom:830.533333pt;}
.y38_c00075{bottom:839.066667pt;}
.yc_c00075{bottom:846.800000pt;}
.y37_c00075{bottom:855.333333pt;}
.yb_c00075{bottom:863.066667pt;}
.y36_c00075{bottom:875.200000pt;}
.ya_c00075{bottom:878.800000pt;}
.y9_c00075{bottom:895.066667pt;}
.y8_c00075{bottom:911.066667pt;}
.y7_c00075{bottom:926.800000pt;}
.y35_c00075{bottom:927.066667pt;}
.y6_c00075{bottom:943.066667pt;}
.y5_c00075{bottom:959.066667pt;}
.y4_c00075{bottom:974.800000pt;}
.y34_c00075{bottom:975.066667pt;}
.y3_c00075{bottom:991.066667pt;}
.y33_c00075{bottom:991.333333pt;}
.y1_c00075{bottom:1014.133333pt;}
.y2_c00075{bottom:1015.066667pt;}
.h9_c00075{height:26.666667pt;}
.hb_c00075{height:32.000000pt;}
.ha_c00075{height:37.333333pt;}
.h6_c00075{height:42.666667pt;}
.h8_c00075{height:48.000000pt;}
.h5_c00075{height:53.333333pt;}
.h4_c00075{height:58.666667pt;}
.h7_c00075{height:64.000000pt;}
.h2_c00075{height:69.333333pt;}
.h3_c00075{height:74.666667pt;}
.h1_c00075{height:1126.666667pt;}
.h0_c00075{height:1126.719971pt;}
.w0_c00075{width:843.200032pt;}
.w1_c00075{width:843.333333pt;}
.x0_c00075{left:0.000000pt;}
.x4e_c00075{left:148.533333pt;}
.x1_c00075{left:157.066667pt;}
.x45_c00075{left:158.400000pt;}
.x50_c00075{left:159.333333pt;}
.x4d_c00075{left:164.533333pt;}
.x6f_c00075{left:166.400000pt;}
.x9c_c00075{left:172.133333pt;}
.x63_c00075{left:173.066667pt;}
.x3_c00075{left:174.133333pt;}
.x27_c00075{left:175.066667pt;}
.x43_c00075{left:182.666667pt;}
.x51_c00075{left:187.200000pt;}
.x81_c00075{left:188.266667pt;}
.x16_c00075{left:190.133333pt;}
.x53_c00075{left:191.333333pt;}
.x1d_c00075{left:192.666667pt;}
.x9a_c00075{left:196.666667pt;}
.x78_c00075{left:197.733333pt;}
.x8e_c00075{left:198.800000pt;}
.xd_c00075{left:202.800000pt;}
.x28_c00075{left:204.533333pt;}
.x5f_c00075{left:205.600000pt;}
.x97_c00075{left:207.066667pt;}
.x4_c00075{left:210.266667pt;}
.x69_c00075{left:211.733333pt;}
.x85_c00075{left:213.066667pt;}
.x17_c00075{left:214.133333pt;}
.x70_c00075{left:216.000000pt;}
.x4f_c00075{left:217.600000pt;}
.xe_c00075{left:219.733333pt;}
.x29_c00075{left:221.466667pt;}
.x82_c00075{left:224.133333pt;}
.x1e_c00075{left:225.600000pt;}
.x3a_c00075{left:226.533333pt;}
.x24_c00075{left:231.466667pt;}
.x65_c00075{left:233.866667pt;}
.x34_c00075{left:237.466667pt;}
.xf_c00075{left:238.933333pt;}
.x7d_c00075{left:240.666667pt;}
.x3e_c00075{left:242.400000pt;}
.x2a_c00075{left:244.133333pt;}
.x7f_c00075{left:246.000000pt;}
.x54_c00075{left:247.333333pt;}
.x18_c00075{left:249.066667pt;}
.x5_c00075{left:250.533333pt;}
.x10_c00075{left:253.600000pt;}
.x9b_c00075{left:255.200000pt;}
.x79_c00075{left:257.200000pt;}
.x8c_c00075{left:258.400000pt;}
.x6_c00075{left:259.466667pt;}
.x8f_c00075{left:261.466667pt;}
.x3b_c00075{left:262.666667pt;}
.x44_c00075{left:263.600000pt;}
.x6e_c00075{left:264.800000pt;}
.x2d_c00075{left:266.266667pt;}
.x1f_c00075{left:267.466667pt;}
.x55_c00075{left:269.066667pt;}
.x71_c00075{left:271.066667pt;}
.x46_c00075{left:272.666667pt;}
.x3f_c00075{left:276.666667pt;}
.x5b_c00075{left:278.666667pt;}
.x60_c00075{left:279.600000pt;}
.x87_c00075{left:281.333333pt;}
.x94_c00075{left:282.266667pt;}
.x47_c00075{left:283.200000pt;}
.x7_c00075{left:284.800000pt;}
.x25_c00075{left:286.800000pt;}
.x19_c00075{left:287.733333pt;}
.x140_c00075{left:288.933333pt;}
.x2e_c00075{left:290.533333pt;}
.x40_c00075{left:292.400000pt;}
.x11_c00075{left:293.333333pt;}
.x35_c00075{left:296.666667pt;}
.x20_c00075{left:298.533333pt;}
.x75_c00075{left:299.600000pt;}
.x91_c00075{left:301.066667pt;}
.x12_c00075{left:302.000000pt;}
.x72_c00075{left:304.400000pt;}
.x61_c00075{left:305.466667pt;}
.x64_c00075{left:307.066667pt;}
.x6a_c00075{left:308.400000pt;}
.x2b_c00075{left:309.733333pt;}
.x92_c00075{left:313.466667pt;}
.x36_c00075{left:315.200000pt;}
.x21_c00075{left:317.466667pt;}
.x76_c00075{left:318.533333pt;}
.x48_c00075{left:320.000000pt;}
.x73_c00075{left:322.666667pt;}
.x8d_c00075{left:327.200000pt;}
.x13_c00075{left:328.933333pt;}
.x9d_c00075{left:331.466667pt;}
.x2f_c00075{left:332.800000pt;}
.x56_c00075{left:333.733333pt;}
.x9e_c00075{left:335.066667pt;}
.x1a_c00075{left:336.000000pt;}
.x37_c00075{left:337.333333pt;}
.x52_c00075{left:339.600000pt;}
.x93_c00075{left:340.666667pt;}
.x49_c00075{left:342.400000pt;}
.x6b_c00075{left:344.266667pt;}
.x8_c00075{left:346.533333pt;}
.x74_c00075{left:348.533333pt;}
.x30_c00075{left:350.133333pt;}
.x3c_c00075{left:351.600000pt;}
.x57_c00075{left:353.200000pt;}
.x90_c00075{left:355.600000pt;}
.x5c_c00075{left:357.066667pt;}
.x89_c00075{left:358.533333pt;}
.x41_c00075{left:359.600000pt;}
.x9_c00075{left:363.466667pt;}
.x98_c00075{left:365.733333pt;}
.x88_c00075{left:367.733333pt;}
.x31_c00075{left:368.666667pt;}
.x80_c00075{left:369.600000pt;}
.x22_c00075{left:371.866667pt;}
.x58_c00075{left:373.333333pt;}
.x2c_c00075{left:375.333333pt;}
.x2_c00075{left:377.200000pt;}
.x141_c00075{left:380.800000pt;}
.x4a_c00075{left:381.733333pt;}
.x38_c00075{left:383.066667pt;}
.x32_c00075{left:384.000000pt;}
.x77_c00075{left:386.400000pt;}
.x95_c00075{left:387.866667pt;}
.xa_c00075{left:389.066667pt;}
.x3d_c00075{left:390.933333pt;}
.x14_c00075{left:392.933333pt;}
.x7a_c00075{left:394.533333pt;}
.xb_c00075{left:396.400000pt;}
.x42_c00075{left:398.000000pt;}
.x62_c00075{left:398.933333pt;}
.x66_c00075{left:401.466667pt;}
.x6c_c00075{left:403.066667pt;}
.x8a_c00075{left:404.933333pt;}
.x1b_c00075{left:407.066667pt;}
.x39_c00075{left:409.333333pt;}
.x15_c00075{left:411.200000pt;}
.xc_c00075{left:413.333333pt;}
.x83_c00075{left:414.666667pt;}
.x23_c00075{left:416.400000pt;}
.x7b_c00075{left:418.533333pt;}
.x67_c00075{left:419.733333pt;}
.x59_c00075{left:420.666667pt;}
.x5d_c00075{left:421.733333pt;}
.x1c_c00075{left:424.666667pt;}
.x99_c00075{left:426.800000pt;}
.x4b_c00075{left:429.466667pt;}
.x96_c00075{left:430.800000pt;}
.x7c_c00075{left:432.000000pt;}
.x33_c00075{left:433.600000pt;}
.x13d_c00075{left:435.200000pt;}
.x5a_c00075{left:436.400000pt;}
.x8b_c00075{left:438.266667pt;}
.x26_c00075{left:440.666667pt;}
.x68_c00075{left:442.400000pt;}
.x6d_c00075{left:443.466667pt;}
.x84_c00075{left:444.800000pt;}
.x86_c00075{left:446.266667pt;}
.x4c_c00075{left:447.733333pt;}
.x5e_c00075{left:449.200000pt;}
.x7e_c00075{left:453.733333pt;}
.x134_c00075{left:473.600000pt;}
.x132_c00075{left:474.800000pt;}
.x11e_c00075{left:476.800000pt;}
.xcb_c00075{left:477.733333pt;}
.x12f_c00075{left:488.933333pt;}
.xf1_c00075{left:490.266667pt;}
.xe3_c00075{left:491.466667pt;}
.xfb_c00075{left:492.533333pt;}
.x9f_c00075{left:493.466667pt;}
.x13b_c00075{left:495.333333pt;}
.x12a_c00075{left:501.066667pt;}
.x122_c00075{left:502.666667pt;}
.x135_c00075{left:504.533333pt;}
.xeb_c00075{left:506.000000pt;}
.xe8_c00075{left:507.333333pt;}
.xd0_c00075{left:510.000000pt;}
.xdf_c00075{left:511.866667pt;}
.xa0_c00075{left:513.333333pt;}
.x142_c00075{left:515.866667pt;}
.xf4_c00075{left:516.800000pt;}
.x13e_c00075{left:518.000000pt;}
.x125_c00075{left:520.933333pt;}
.x114_c00075{left:521.866667pt;}
.xe4_c00075{left:523.200000pt;}
.xa6_c00075{left:526.133333pt;}
.xfc_c00075{left:527.733333pt;}
.xc0_c00075{left:528.800000pt;}
.xb4_c00075{left:530.933333pt;}
.xf5_c00075{left:531.866667pt;}
.x111_c00075{left:532.933333pt;}
.x10f_c00075{left:534.133333pt;}
.x109_c00075{left:535.600000pt;}
.x12b_c00075{left:537.733333pt;}
.xc8_c00075{left:540.000000pt;}
.xac_c00075{left:541.200000pt;}
.xe5_c00075{left:543.066667pt;}
.xba_c00075{left:546.533333pt;}
.xa7_c00075{left:549.866667pt;}
.x144_c00075{left:550.800000pt;}
.x10c_c00075{left:552.400000pt;}
.x11a_c00075{left:553.866667pt;}
.x106_c00075{left:555.200000pt;}
.xe0_c00075{left:556.400000pt;}
.x101_c00075{left:557.733333pt;}
.x11f_c00075{left:561.200000pt;}
.xad_c00075{left:563.600000pt;}
.xbb_c00075{left:564.800000pt;}
.xfd_c00075{left:565.866667pt;}
.xa1_c00075{left:567.066667pt;}
.xf6_c00075{left:568.000000pt;}
.x126_c00075{left:568.933333pt;}
.xc1_c00075{left:570.666667pt;}
.xec_c00075{left:572.266667pt;}
.xdc_c00075{left:573.200000pt;}
.x136_c00075{left:575.733333pt;}
.xd4_c00075{left:577.066667pt;}
.xb5_c00075{left:578.000000pt;}
.xae_c00075{left:579.333333pt;}
.xd1_c00075{left:580.666667pt;}
.xc9_c00075{left:581.600000pt;}
.x115_c00075{left:582.933333pt;}
.xf2_c00075{left:584.400000pt;}
.xe6_c00075{left:585.600000pt;}
.xf8_c00075{left:587.200000pt;}
.x127_c00075{left:588.800000pt;}
.x11b_c00075{left:592.266667pt;}
.x13a_c00075{left:594.666667pt;}
.xb6_c00075{left:595.866667pt;}
.xbc_c00075{left:597.066667pt;}
.xc2_c00075{left:598.800000pt;}
.x12d_c00075{left:600.133333pt;}
.x107_c00075{left:601.600000pt;}
.xca_c00075{left:604.000000pt;}
.xd5_c00075{left:605.200000pt;}
.xf7_c00075{left:606.400000pt;}
.xa2_c00075{left:607.733333pt;}
.xa8_c00075{left:608.800000pt;}
.xe1_c00075{left:609.866667pt;}
.xcc_c00075{left:612.133333pt;}
.xf9_c00075{left:613.066667pt;}
.xd6_c00075{left:614.133333pt;}
.x12c_c00075{left:615.866667pt;}
.xaf_c00075{left:617.466667pt;}
.x130_c00075{left:618.533333pt;}
.xbd_c00075{left:619.733333pt;}
.x120_c00075{left:622.933333pt;}
.xe7_c00075{left:626.266667pt;}
.xf3_c00075{left:628.800000pt;}
.x116_c00075{left:630.933333pt;}
.xc3_c00075{left:632.133333pt;}
.x108_c00075{left:633.333333pt;}
.x112_c00075{left:636.266667pt;}
.xbe_c00075{left:638.000000pt;}
.xc4_c00075{left:639.866667pt;}
.xed_c00075{left:641.733333pt;}
.xb0_c00075{left:644.666667pt;}
.x119_c00075{left:646.000000pt;}
.xd7_c00075{left:647.066667pt;}
.xdd_c00075{left:648.400000pt;}
.x124_c00075{left:649.466667pt;}
.xfe_c00075{left:651.466667pt;}
.x128_c00075{left:656.933333pt;}
.x10d_c00075{left:658.000000pt;}
.x131_c00075{left:659.466667pt;}
.xff_c00075{left:662.000000pt;}
.xb7_c00075{left:664.000000pt;}
.xb1_c00075{left:665.733333pt;}
.xd8_c00075{left:667.200000pt;}
.x137_c00075{left:669.866667pt;}
.x104_c00075{left:671.466667pt;}
.x113_c00075{left:672.400000pt;}
.xd2_c00075{left:673.466667pt;}
.xe9_c00075{left:676.000000pt;}
.xa3_c00075{left:679.466667pt;}
.x10a_c00075{left:680.533333pt;}
.x102_c00075{left:681.600000pt;}
.xa9_c00075{left:683.333333pt;}
.x143_c00075{left:684.800000pt;}
.x13c_c00075{left:687.200000pt;}
.xc5_c00075{left:688.800000pt;}
.xb2_c00075{left:690.000000pt;}
.x138_c00075{left:691.333333pt;}
.xd9_c00075{left:692.533333pt;}
.xaa_c00075{left:695.866667pt;}
.xbf_c00075{left:698.133333pt;}
.x13f_c00075{left:699.733333pt;}
.x10b_c00075{left:702.000000pt;}
.x110_c00075{left:703.600000pt;}
.xcd_c00075{left:706.133333pt;}
.xda_c00075{left:709.866667pt;}
.xc6_c00075{left:711.866667pt;}
.xea_c00075{left:712.800000pt;}
.x129_c00075{left:714.533333pt;}
.x117_c00075{left:715.733333pt;}
.x123_c00075{left:716.800000pt;}
.xee_c00075{left:719.200000pt;}
.x105_c00075{left:721.333333pt;}
.x133_c00075{left:722.800000pt;}
.x100_c00075{left:723.733333pt;}
.xa4_c00075{left:726.133333pt;}
.xde_c00075{left:728.800000pt;}
.xb3_c00075{left:732.266667pt;}
.x11c_c00075{left:733.733333pt;}
.x103_c00075{left:737.866667pt;}
.x12e_c00075{left:739.200000pt;}
.x121_c00075{left:740.400000pt;}
.xd3_c00075{left:742.266667pt;}
.xb8_c00075{left:744.000000pt;}
.xc7_c00075{left:748.000000pt;}
.xfa_c00075{left:751.733333pt;}
.xce_c00075{left:753.200000pt;}
.x139_c00075{left:754.400000pt;}
.xef_c00075{left:756.266667pt;}
.xa5_c00075{left:758.800000pt;}
.xdb_c00075{left:759.733333pt;}
.xe2_c00075{left:761.200000pt;}
.x11d_c00075{left:764.133333pt;}
.xab_c00075{left:765.600000pt;}
.xf0_c00075{left:766.800000pt;}
.xb9_c00075{left:768.000000pt;}
.xcf_c00075{left:768.933333pt;}
.x10e_c00075{left:773.866667pt;}
.x118_c00075{left:774.933333pt;}
}





/* 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_c00076 {
    display:none;
  }
  .loading-indicator_c00076.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00076 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_c00076 { 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_c00076" -> "#page-container .classname_c00076")
 */
.pf_c00076 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00076 { /* 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_c00076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00076 { /* 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_c00076 { /* 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_c00076 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00076 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00076 {overflow:visible;}
  }
}
.c_c00076 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00076 { /* 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_c00076:after { /* webkit #35443 */
  content: '';
}
.t_c00076:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00076 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 */
}
.__c00076 { /* 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_c00076 { /* info for Javascript */
  display:none;
}
.l_c00076 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00076 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00076 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00076: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_c00076 {
    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_c00076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00076.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_c00076 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00076;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.000000;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;}
.mc3_c00076{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00076{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mde_c00076{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.maa_c00076{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m98_c00076{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mab_c00076{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00076{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00076{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00076{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m27_c00076{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00076{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00076{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m62_c00076{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m72_c00076{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00076{transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00076{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m40_c00076{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m71_c00076{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00076{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.mac_c00076{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.meb_c00076{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m80_c00076{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m73_c00076{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m87_c00076{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00076{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m109_c00076{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m86_c00076{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m41_c00076{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me7_c00076{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00076{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m46_c00076{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mef_c00076{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m55_c00076{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m108_c00076{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m94_c00076{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m37_c00076{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md4_c00076{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00076{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m8_c00076{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mea_c00076{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m89_c00076{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00076{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.me6_c00076{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m105_c00076{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m33_c00076{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00076{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m74_c00076{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md8_c00076{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00076{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mca_c00076{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m47_c00076{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00076{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00076{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00076{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00076{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m57_c00076{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00076{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00076{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m104_c00076{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00076{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00076{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m5_c00076{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00076{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00076{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00076{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m84_c00076{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00076{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00076{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00076{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma_c00076{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m18_c00076{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m38_c00076{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00076{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m16_c00076{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00076{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md0_c00076{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00076{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m82_c00076{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m54_c00076{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00076{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m28_c00076{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m65_c00076{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m88_c00076{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me3_c00076{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00076{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00076{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00076{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00076{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m42_c00076{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf_c00076{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00076{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m75_c00076{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00076{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m9_c00076{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00076{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00076{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00076{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00076{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00076{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mda_c00076{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mc_c00076{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00076{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m19_c00076{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00076{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md6_c00076{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m20_c00076{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00076{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00076{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m10_c00076{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00076{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00076{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00076{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00076{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m76_c00076{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00076{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00076{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00076{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00076{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m12_c00076{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m7_c00076{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00076{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00076{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m53_c00076{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m101_c00076{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m31_c00076{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00076{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00076{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m29_c00076{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00076{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md5_c00076{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00076{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m30_c00076{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m14_c00076{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md2_c00076{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00076{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00076{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00076{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m15_c00076{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m85_c00076{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00076{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00076{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m26_c00076{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m25_c00076{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4_c00076{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m79_c00076{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m67_c00076{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m36_c00076{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00076{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00076{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m43_c00076{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00076{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m100_c00076{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m39_c00076{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00076{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m44_c00076{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m58_c00076{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m81_c00076{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00076{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m102_c00076{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m23_c00076{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m97_c00076{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00076{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00076{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00076{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me_c00076{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me4_c00076{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m70_c00076{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00076{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00076{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mce_c00076{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00076{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md_c00076{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m64_c00076{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00076{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00076{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m21_c00076{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me2_c00076{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00076{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m17_c00076{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me5_c00076{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m56_c00076{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m77_c00076{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m66_c00076{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m51_c00076{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m59_c00076{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00076{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00076{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m60_c00076{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00076{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m11_c00076{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00076{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m50_c00076{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00076{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me8_c00076{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00076{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m68_c00076{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md7_c00076{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00076{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00076{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m35_c00076{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m45_c00076{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00076{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md1_c00076{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00076{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m34_c00076{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m63_c00076{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00076{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mff_c00076{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m61_c00076{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00076{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00076{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mec_c00076{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m52_c00076{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m78_c00076{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00076{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mae_c00076{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m48_c00076{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00076{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.md9_c00076{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00076{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m83_c00076{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m103_c00076{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00076{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m92_c00076{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m107_c00076{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00076{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m93_c00076{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md3_c00076{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00076{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00076{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me1_c00076{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00076{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);}
.m8c_c00076{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24_c00076{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00076{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m106_c00076{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m96_c00076{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00076{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00076{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m32_c00076{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m99_c00076{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00076{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00076{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me0_c00076{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mad_c00076{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m91_c00076{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00076{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mba_c00076{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m49_c00076{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00076{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00076{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m22_c00076{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00076{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00076{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.me9_c00076{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00076{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m69_c00076{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00076{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mee_c00076{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m90_c00076{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m95_c00076{transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);}
.maf_c00076{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);}
.med_c00076{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls0_c00076{letter-spacing:0.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{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__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00076{word-spacing:-11.991404px;}
.ws0_c00076{word-spacing:-8.319018px;}
.wsb_c00076{word-spacing:-4.750000px;}
.ws6_c00076{word-spacing:-2.875000px;}
.ws4_c00076{word-spacing:-1.426117px;}
.wsd_c00076{word-spacing:-0.146132px;}
.wse_c00076{word-spacing:0.000000px;}
.ws5_c00076{word-spacing:3.541779px;}
.ws3_c00076{word-spacing:16.527778px;}
.wsc_c00076{word-spacing:21.162847px;}
.ws8_c00076{word-spacing:22.142857px;}
.ws2_c00076{word-spacing:22.500000px;}
.ws7_c00076{word-spacing:25.714286px;}
.ws9_c00076{word-spacing:40.000000px;}
.wsa_c00076{word-spacing:76.805556px;}
._0_c00076{width:80.416667px;}
.fc0_c00076{color:transparent;}
.fs5_c00076{font-size:48.000000px;}
.fs4_c00076{font-size:54.000000px;}
.fs3_c00076{font-size:60.000000px;}
.fs2_c00076{font-size:66.000000px;}
.fs1_c00076{font-size:72.000000px;}
.fs0_c00076{font-size:78.000000px;}
.y0_c00076{bottom:0.000000px;}
.y37_c00076{bottom:31.650000px;}
.y36_c00076{bottom:181.800000px;}
.y68_c00076{bottom:186.150000px;}
.y35_c00076{bottom:191.550000px;}
.y34_c00076{bottom:196.950000px;}
.y67_c00076{bottom:204.900000px;}
.y66_c00076{bottom:223.200000px;}
.y33_c00076{bottom:239.100000px;}
.y65_c00076{bottom:241.200000px;}
.y32_c00076{bottom:258.450000px;}
.y64_c00076{bottom:259.200000px;}
.y31_c00076{bottom:273.600000px;}
.y63_c00076{bottom:277.200000px;}
.y30_c00076{bottom:286.200000px;}
.y62_c00076{bottom:294.900000px;}
.y2f_c00076{bottom:300.600000px;}
.y61_c00076{bottom:317.400000px;}
.y2e_c00076{bottom:317.550000px;}
.y2d_c00076{bottom:333.000000px;}
.y60_c00076{bottom:335.400000px;}
.y2c_c00076{bottom:348.450000px;}
.y5f_c00076{bottom:353.400000px;}
.y2b_c00076{bottom:369.750000px;}
.y5e_c00076{bottom:371.400000px;}
.y2a_c00076{bottom:387.750000px;}
.y5d_c00076{bottom:389.400000px;}
.y29_c00076{bottom:406.050000px;}
.y5c_c00076{bottom:407.400000px;}
.y28_c00076{bottom:423.750000px;}
.y5b_c00076{bottom:425.100000px;}
.y27_c00076{bottom:447.150000px;}
.y5a_c00076{bottom:450.450000px;}
.y26_c00076{bottom:464.100000px;}
.y59_c00076{bottom:465.150000px;}
.y58_c00076{bottom:479.850000px;}
.y25_c00076{bottom:482.100000px;}
.y57_c00076{bottom:499.350000px;}
.y24_c00076{bottom:500.100000px;}
.y23_c00076{bottom:518.100000px;}
.y22_c00076{bottom:536.100000px;}
.y56_c00076{bottom:536.400000px;}
.y21_c00076{bottom:553.800000px;}
.y55_c00076{bottom:554.400000px;}
.y20_c00076{bottom:572.100000px;}
.y54_c00076{bottom:576.300000px;}
.y1f_c00076{bottom:591.000000px;}
.y53_c00076{bottom:594.300000px;}
.y1e_c00076{bottom:612.300000px;}
.y52_c00076{bottom:620.250000px;}
.y51_c00076{bottom:639.300000px;}
.y1d_c00076{bottom:641.100000px;}
.y1c_c00076{bottom:665.250000px;}
.y50_c00076{bottom:673.950000px;}
.y1b_c00076{bottom:683.250000px;}
.y4f_c00076{bottom:693.750000px;}
.y1a_c00076{bottom:701.250000px;}
.y4e_c00076{bottom:715.650000px;}
.y19_c00076{bottom:720.900000px;}
.y4d_c00076{bottom:733.650000px;}
.y18_c00076{bottom:741.450000px;}
.y4c_c00076{bottom:751.650000px;}
.y17_c00076{bottom:759.450000px;}
.y16_c00076{bottom:777.450000px;}
.y4b_c00076{bottom:777.600000px;}
.y15_c00076{bottom:795.450000px;}
.y4a_c00076{bottom:796.200000px;}
.y14_c00076{bottom:813.450000px;}
.y49_c00076{bottom:814.200000px;}
.y13_c00076{bottom:831.450000px;}
.y48_c00076{bottom:832.200000px;}
.y12_c00076{bottom:849.450000px;}
.y47_c00076{bottom:849.900000px;}
.y11_c00076{bottom:867.450000px;}
.y46_c00076{bottom:867.900000px;}
.y10_c00076{bottom:885.450000px;}
.y45_c00076{bottom:885.900000px;}
.yf_c00076{bottom:903.150000px;}
.y44_c00076{bottom:903.900000px;}
.ye_c00076{bottom:920.850000px;}
.y43_c00076{bottom:921.600000px;}
.yd_c00076{bottom:938.850000px;}
.y42_c00076{bottom:939.900000px;}
.yc_c00076{bottom:956.850000px;}
.y41_c00076{bottom:957.600000px;}
.yb_c00076{bottom:974.550000px;}
.y40_c00076{bottom:975.900000px;}
.ya_c00076{bottom:992.850000px;}
.y3f_c00076{bottom:993.600000px;}
.y9_c00076{bottom:1010.550000px;}
.y3e_c00076{bottom:1011.900000px;}
.y8_c00076{bottom:1028.850000px;}
.y3d_c00076{bottom:1029.900000px;}
.y7_c00076{bottom:1046.550000px;}
.y3c_c00076{bottom:1047.600000px;}
.y6_c00076{bottom:1064.850000px;}
.y3b_c00076{bottom:1065.600000px;}
.y5_c00076{bottom:1082.850000px;}
.y3a_c00076{bottom:1083.600000px;}
.y4_c00076{bottom:1100.550000px;}
.y39_c00076{bottom:1101.600000px;}
.y3_c00076{bottom:1118.850000px;}
.y38_c00076{bottom:1119.600000px;}
.y1_c00076{bottom:1145.550000px;}
.y2_c00076{bottom:1146.600000px;}
.h7_c00076{height:48.000000px;}
.h6_c00076{height:54.000000px;}
.h5_c00076{height:60.000000px;}
.h4_c00076{height:66.000000px;}
.h3_c00076{height:72.000000px;}
.h2_c00076{height:78.000000px;}
.h1_c00076{height:1272.000000px;}
.h0_c00076{height:1272.239960px;}
.w0_c00076{width:948.600036px;}
.w1_c00076{width:948.750000px;}
.x0_c00076{left:0.000000px;}
.x3_c00076{left:78.450000px;}
.x73_c00076{left:80.250000px;}
.x7e_c00076{left:81.300000px;}
.x99_c00076{left:83.550000px;}
.xa7_c00076{left:85.350000px;}
.x15_c00076{left:95.700000px;}
.xa_c00076{left:98.250000px;}
.x1b_c00076{left:99.300000px;}
.x66_c00076{left:100.350000px;}
.x72_c00076{left:101.550000px;}
.x85_c00076{left:102.750000px;}
.x8a_c00076{left:103.950000px;}
.xa8_c00076{left:108.750000px;}
.x92_c00076{left:110.550000px;}
.xa6_c00076{left:116.700000px;}
.xa0_c00076{left:118.950000px;}
.x7f_c00076{left:120.900000px;}
.x25_c00076{left:122.700000px;}
.x78_c00076{left:126.000000px;}
.x42_c00076{left:127.200000px;}
.xb_c00076{left:129.600000px;}
.x3d_c00076{left:131.100000px;}
.x83_c00076{left:133.500000px;}
.x30_c00076{left:135.150000px;}
.x93_c00076{left:137.250000px;}
.x51_c00076{left:139.800000px;}
.x1c_c00076{left:141.000000px;}
.x74_c00076{left:142.500000px;}
.x4b_c00076{left:144.300000px;}
.x35_c00076{left:146.100000px;}
.x5d_c00076{left:147.600000px;}
.x9a_c00076{left:149.400000px;}
.x10_c00076{left:150.900000px;}
.x7d_c00076{left:151.950000px;}
.x71_c00076{left:153.150000px;}
.x80_c00076{left:155.400000px;}
.x76_c00076{left:157.200000px;}
.x2a_c00076{left:158.250000px;}
.x61_c00076{left:159.750000px;}
.xa4_c00076{left:162.300000px;}
.x5e_c00076{left:167.100000px;}
.x4_c00076{left:171.300000px;}
.x4c_c00076{left:173.400000px;}
.x48_c00076{left:174.600000px;}
.x79_c00076{left:176.700000px;}
.x36_c00076{left:180.000000px;}
.x8b_c00076{left:181.650000px;}
.x3e_c00076{left:183.600000px;}
.x88_c00076{left:185.100000px;}
.x69_c00076{left:186.150000px;}
.x52_c00076{left:187.650000px;}
.x31_c00076{left:189.450000px;}
.x81_c00076{left:190.800000px;}
.x1d_c00076{left:192.900000px;}
.x16_c00076{left:194.400000px;}
.xaa_c00076{left:198.750000px;}
.x37_c00076{left:200.100000px;}
.x62_c00076{left:201.450000px;}
.x26_c00076{left:202.650000px;}
.x7a_c00076{left:203.700000px;}
.x43_c00076{left:205.350000px;}
.x67_c00076{left:207.750000px;}
.xab_c00076{left:208.800000px;}
.x3f_c00076{left:210.300000px;}
.x8d_c00076{left:211.350000px;}
.x53_c00076{left:213.600000px;}
.x1e_c00076{left:214.800000px;}
.x5_c00076{left:216.300000px;}
.x2b_c00076{left:223.050000px;}
.x32_c00076{left:224.700000px;}
.x17_c00076{left:225.750000px;}
.x4d_c00076{left:227.400000px;}
.x11_c00076{left:229.050000px;}
.x90_c00076{left:232.050000px;}
.x59_c00076{left:234.600000px;}
.x77_c00076{left:236.850000px;}
.x6a_c00076{left:238.650000px;}
.xc_c00076{left:243.000000px;}
.x5f_c00076{left:244.950000px;}
.x4e_c00076{left:247.500000px;}
.x54_c00076{left:248.850000px;}
.x6d_c00076{left:250.650000px;}
.x12_c00076{left:252.750000px;}
.x9c_c00076{left:254.400000px;}
.x1f_c00076{left:255.900000px;}
.x44_c00076{left:260.100000px;}
.x8e_c00076{left:262.800000px;}
.x2c_c00076{left:264.450000px;}
.x38_c00076{left:265.650000px;}
.x27_c00076{left:267.750000px;}
.x9d_c00076{left:268.800000px;}
.x55_c00076{left:270.750000px;}
.x86_c00076{left:271.800000px;}
.xa5_c00076{left:273.600000px;}
.x20_c00076{left:274.950000px;}
.x9e_c00076{left:276.300000px;}
.x18_c00076{left:277.650000px;}
.x6b_c00076{left:279.000000px;}
.x6_c00076{left:280.050000px;}
.x7b_c00076{left:281.850000px;}
.x56_c00076{left:284.100000px;}
.x40_c00076{left:285.600000px;}
.x28_c00076{left:287.250000px;}
.xd_c00076{left:289.800000px;}
.x13_c00076{left:293.100000px;}
.x21_c00076{left:296.250000px;}
.x9f_c00076{left:297.900000px;}
.x57_c00076{left:299.250000px;}
.x89_c00076{left:300.600000px;}
.x19_c00076{left:302.100000px;}
.x5a_c00076{left:303.750000px;}
.x4f_c00076{left:306.150000px;}
.xa1_c00076{left:307.350000px;}
.x7_c00076{left:310.650000px;}
.x39_c00076{left:312.150000px;}
.x63_c00076{left:314.550000px;}
.x2d_c00076{left:318.150000px;}
.x3a_c00076{left:319.350000px;}
.x45_c00076{left:321.750000px;}
.x1_c00076{left:324.000000px;}
.x7c_c00076{left:325.350000px;}
.x8c_c00076{left:327.150000px;}
.x22_c00076{left:328.650000px;}
.xa9_c00076{left:331.200000px;}
.x29_c00076{left:332.550000px;}
.x84_c00076{left:334.500000px;}
.x8f_c00076{left:335.850000px;}
.x6e_c00076{left:338.250000px;}
.xe_c00076{left:340.950000px;}
.x1a_c00076{left:342.000000px;}
.x68_c00076{left:343.800000px;}
.x60_c00076{left:345.000000px;}
.x5b_c00076{left:348.150000px;}
.x8_c00076{left:349.200000px;}
.x87_c00076{left:350.250000px;}
.x2e_c00076{left:352.350000px;}
.x98_c00076{left:353.700000px;}
.x94_c00076{left:354.750000px;}
.x3b_c00076{left:356.100000px;}
.xa2_c00076{left:357.450000px;}
.x46_c00076{left:359.250000px;}
.x33_c00076{left:362.850000px;}
.x23_c00076{left:363.900000px;}
.x2f_c00076{left:365.250000px;}
.x41_c00076{left:367.350000px;}
.x6c_c00076{left:370.050000px;}
.x49_c00076{left:372.150000px;}
.x64_c00076{left:374.700000px;}
.xf_c00076{left:376.650000px;}
.x6f_c00076{left:378.150000px;}
.x96_c00076{left:383.850000px;}
.x47_c00076{left:385.200000px;}
.x3c_c00076{left:386.400000px;}
.x75_c00076{left:387.600000px;}
.x82_c00076{left:388.650000px;}
.x14_c00076{left:392.400000px;}
.x24_c00076{left:393.450000px;}
.x4a_c00076{left:395.550000px;}
.x91_c00076{left:397.650000px;}
.x50_c00076{left:399.750000px;}
.x5c_c00076{left:401.100000px;}
.x9_c00076{left:402.150000px;}
.x70_c00076{left:404.100000px;}
.x58_c00076{left:406.200000px;}
.x34_c00076{left:408.900000px;}
.x9b_c00076{left:410.550000px;}
.x97_c00076{left:413.400000px;}
.xa3_c00076{left:415.350000px;}
.x65_c00076{left:418.650000px;}
.x95_c00076{left:419.850000px;}
.x10b_c00076{left:443.550000px;}
.x119_c00076{left:445.650000px;}
.xac_c00076{left:459.300000px;}
.xe3_c00076{left:460.650000px;}
.x118_c00076{left:462.450000px;}
.x11c_c00076{left:463.650000px;}
.x136_c00076{left:465.000000px;}
.x13f_c00076{left:466.350000px;}
.x11a_c00076{left:477.750000px;}
.x11d_c00076{left:479.550000px;}
.x12b_c00076{left:481.950000px;}
.x13b_c00076{left:483.600000px;}
.xeb_c00076{left:485.550000px;}
.x102_c00076{left:486.900000px;}
.xfc_c00076{left:488.550000px;}
.x140_c00076{left:490.350000px;}
.x122_c00076{left:491.400000px;}
.xad_c00076{left:492.450000px;}
.xd4_c00076{left:495.000000px;}
.x12a_c00076{left:497.700000px;}
.xe4_c00076{left:499.500000px;}
.xc9_c00076{left:502.650000px;}
.xd0_c00076{left:504.450000px;}
.xdb_c00076{left:506.850000px;}
.x105_c00076{left:511.800000px;}
.x113_c00076{left:513.000000px;}
.xf3_c00076{left:514.500000px;}
.xbf_c00076{left:515.850000px;}
.xb7_c00076{left:517.500000px;}
.x10f_c00076{left:518.850000px;}
.xd5_c00076{left:520.650000px;}
.x11e_c00076{left:522.750000px;}
.x124_c00076{left:523.800000px;}
.xe5_c00076{left:525.450000px;}
.xdc_c00076{left:528.150000px;}
.xae_c00076{left:529.500000px;}
.xf9_c00076{left:531.000000px;}
.x109_c00076{left:532.800000px;}
.xb3_c00076{left:535.950000px;}
.x114_c00076{left:537.150000px;}
.x13c_c00076{left:540.150000px;}
.x137_c00076{left:541.350000px;}
.xb8_c00076{left:542.400000px;}
.xdd_c00076{left:545.850000px;}
.x127_c00076{left:547.500000px;}
.xc4_c00076{left:548.700000px;}
.x106_c00076{left:549.900000px;}
.xf4_c00076{left:553.500000px;}
.x145_c00076{left:555.000000px;}
.x13e_c00076{left:556.200000px;}
.xec_c00076{left:557.850000px;}
.x123_c00076{left:559.800000px;}
.xd6_c00076{left:561.300000px;}
.xb9_c00076{left:563.700000px;}
.xaf_c00076{left:566.250000px;}
.x12f_c00076{left:567.750000px;}
.xd1_c00076{left:572.100000px;}
.xed_c00076{left:576.900000px;}
.xc0_c00076{left:579.600000px;}
.xe6_c00076{left:582.600000px;}
.x11b_c00076{left:583.950000px;}
.xd7_c00076{left:585.750000px;}
.xcc_c00076{left:587.550000px;}
.xb4_c00076{left:588.900000px;}
.x144_c00076{left:591.000000px;}
.xb0_c00076{left:593.550000px;}
.xc5_c00076{left:594.750000px;}
.x110_c00076{left:597.300000px;}
.x12e_c00076{left:599.700000px;}
.xba_c00076{left:601.200000px;}
.x10a_c00076{left:603.750000px;}
.x13d_c00076{left:604.950000px;}
.x138_c00076{left:606.150000px;}
.xd2_c00076{left:607.350000px;}
.xbb_c00076{left:609.900000px;}
.x131_c00076{left:612.900000px;}
.xb1_c00076{left:614.850000px;}
.xde_c00076{left:616.800000px;}
.xfd_c00076{left:618.000000px;}
.x146_c00076{left:621.750000px;}
.xc6_c00076{left:622.800000px;}
.xee_c00076{left:624.000000px;}
.xc1_c00076{left:626.100000px;}
.x107_c00076{left:628.050000px;}
.xf5_c00076{left:629.100000px;}
.x132_c00076{left:630.300000px;}
.x139_c00076{left:632.100000px;}
.xcd_c00076{left:633.600000px;}
.xdf_c00076{left:634.800000px;}
.x128_c00076{left:636.750000px;}
.xe7_c00076{left:639.150000px;}
.x130_c00076{left:640.500000px;}
.xc7_c00076{left:642.600000px;}
.xb5_c00076{left:645.000000px;}
.x115_c00076{left:646.500000px;}
.xfa_c00076{left:648.750000px;}
.xca_c00076{left:651.000000px;}
.xef_c00076{left:653.100000px;}
.xfe_c00076{left:654.750000px;}
.x10c_c00076{left:657.450000px;}
.xe8_c00076{left:660.450000px;}
.xd8_c00076{left:662.700000px;}
.xbc_c00076{left:665.400000px;}
.x134_c00076{left:667.050000px;}
.xf6_c00076{left:668.700000px;}
.xf7_c00076{left:672.000000px;}
.x141_c00076{left:673.500000px;}
.x111_c00076{left:674.700000px;}
.xff_c00076{left:676.350000px;}
.x11f_c00076{left:677.700000px;}
.x121_c00076{left:679.200000px;}
.x104_c00076{left:684.300000px;}
.xc8_c00076{left:687.900000px;}
.xb6_c00076{left:688.950000px;}
.x10d_c00076{left:690.600000px;}
.x125_c00076{left:691.800000px;}
.xbd_c00076{left:693.450000px;}
.x112_c00076{left:695.250000px;}
.xd3_c00076{left:697.050000px;}
.xe9_c00076{left:699.750000px;}
.xf0_c00076{left:703.500000px;}
.x12c_c00076{left:705.600000px;}
.x142_c00076{left:708.000000px;}
.xe0_c00076{left:712.200000px;}
.xce_c00076{left:713.850000px;}
.xd9_c00076{left:715.200000px;}
.x126_c00076{left:716.700000px;}
.x129_c00076{left:718.050000px;}
.x100_c00076{left:719.850000px;}
.x13a_c00076{left:720.900000px;}
.x12d_c00076{left:723.600000px;}
.xc2_c00076{left:724.800000px;}
.xf1_c00076{left:728.400000px;}
.x10e_c00076{left:729.450000px;}
.xfb_c00076{left:734.100000px;}
.xda_c00076{left:735.750000px;}
.x116_c00076{left:736.800000px;}
.x120_c00076{left:737.850000px;}
.xe1_c00076{left:738.900000px;}
.x108_c00076{left:740.700000px;}
.xf8_c00076{left:745.500000px;}
.x101_c00076{left:747.150000px;}
.x143_c00076{left:749.250000px;}
.xcb_c00076{left:750.300000px;}
.x103_c00076{left:751.650000px;}
.xea_c00076{left:754.050000px;}
.xb2_c00076{left:755.550000px;}
.x135_c00076{left:756.600000px;}
.xe2_c00076{left:758.400000px;}
.x2_c00076{left:759.900000px;}
.xc3_c00076{left:764.700000px;}
.x117_c00076{left:766.650000px;}
.x133_c00076{left:768.450000px;}
.xcf_c00076{left:769.650000px;}
.xbe_c00076{left:774.750000px;}
.xf2_c00076{left:777.750000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws1_c00076{word-spacing:-10.659026pt;}
.ws0_c00076{word-spacing:-7.394683pt;}
.wsb_c00076{word-spacing:-4.222222pt;}
.ws6_c00076{word-spacing:-2.555556pt;}
.ws4_c00076{word-spacing:-1.267659pt;}
.wsd_c00076{word-spacing:-0.129895pt;}
.wse_c00076{word-spacing:0.000000pt;}
.ws5_c00076{word-spacing:3.148248pt;}
.ws3_c00076{word-spacing:14.691358pt;}
.wsc_c00076{word-spacing:18.811419pt;}
.ws8_c00076{word-spacing:19.682540pt;}
.ws2_c00076{word-spacing:20.000000pt;}
.ws7_c00076{word-spacing:22.857143pt;}
.ws9_c00076{word-spacing:35.555556pt;}
.wsa_c00076{word-spacing:68.271605pt;}
._0_c00076{width:71.481481pt;}
.fs5_c00076{font-size:42.666667pt;}
.fs4_c00076{font-size:48.000000pt;}
.fs3_c00076{font-size:53.333333pt;}
.fs2_c00076{font-size:58.666667pt;}
.fs1_c00076{font-size:64.000000pt;}
.fs0_c00076{font-size:69.333333pt;}
.y0_c00076{bottom:0.000000pt;}
.y37_c00076{bottom:28.133333pt;}
.y36_c00076{bottom:161.600000pt;}
.y68_c00076{bottom:165.466667pt;}
.y35_c00076{bottom:170.266667pt;}
.y34_c00076{bottom:175.066667pt;}
.y67_c00076{bottom:182.133333pt;}
.y66_c00076{bottom:198.400000pt;}
.y33_c00076{bottom:212.533333pt;}
.y65_c00076{bottom:214.400000pt;}
.y32_c00076{bottom:229.733333pt;}
.y64_c00076{bottom:230.400000pt;}
.y31_c00076{bottom:243.200000pt;}
.y63_c00076{bottom:246.400000pt;}
.y30_c00076{bottom:254.400000pt;}
.y62_c00076{bottom:262.133333pt;}
.y2f_c00076{bottom:267.200000pt;}
.y61_c00076{bottom:282.133333pt;}
.y2e_c00076{bottom:282.266667pt;}
.y2d_c00076{bottom:296.000000pt;}
.y60_c00076{bottom:298.133333pt;}
.y2c_c00076{bottom:309.733333pt;}
.y5f_c00076{bottom:314.133333pt;}
.y2b_c00076{bottom:328.666667pt;}
.y5e_c00076{bottom:330.133333pt;}
.y2a_c00076{bottom:344.666667pt;}
.y5d_c00076{bottom:346.133333pt;}
.y29_c00076{bottom:360.933333pt;}
.y5c_c00076{bottom:362.133333pt;}
.y28_c00076{bottom:376.666667pt;}
.y5b_c00076{bottom:377.866667pt;}
.y27_c00076{bottom:397.466667pt;}
.y5a_c00076{bottom:400.400000pt;}
.y26_c00076{bottom:412.533333pt;}
.y59_c00076{bottom:413.466667pt;}
.y58_c00076{bottom:426.533333pt;}
.y25_c00076{bottom:428.533333pt;}
.y57_c00076{bottom:443.866667pt;}
.y24_c00076{bottom:444.533333pt;}
.y23_c00076{bottom:460.533333pt;}
.y22_c00076{bottom:476.533333pt;}
.y56_c00076{bottom:476.800000pt;}
.y21_c00076{bottom:492.266667pt;}
.y55_c00076{bottom:492.800000pt;}
.y20_c00076{bottom:508.533333pt;}
.y54_c00076{bottom:512.266667pt;}
.y1f_c00076{bottom:525.333333pt;}
.y53_c00076{bottom:528.266667pt;}
.y1e_c00076{bottom:544.266667pt;}
.y52_c00076{bottom:551.333333pt;}
.y51_c00076{bottom:568.266667pt;}
.y1d_c00076{bottom:569.866667pt;}
.y1c_c00076{bottom:591.333333pt;}
.y50_c00076{bottom:599.066667pt;}
.y1b_c00076{bottom:607.333333pt;}
.y4f_c00076{bottom:616.666667pt;}
.y1a_c00076{bottom:623.333333pt;}
.y4e_c00076{bottom:636.133333pt;}
.y19_c00076{bottom:640.800000pt;}
.y4d_c00076{bottom:652.133333pt;}
.y18_c00076{bottom:659.066667pt;}
.y4c_c00076{bottom:668.133333pt;}
.y17_c00076{bottom:675.066667pt;}
.y16_c00076{bottom:691.066667pt;}
.y4b_c00076{bottom:691.200000pt;}
.y15_c00076{bottom:707.066667pt;}
.y4a_c00076{bottom:707.733333pt;}
.y14_c00076{bottom:723.066667pt;}
.y49_c00076{bottom:723.733333pt;}
.y13_c00076{bottom:739.066667pt;}
.y48_c00076{bottom:739.733333pt;}
.y12_c00076{bottom:755.066667pt;}
.y47_c00076{bottom:755.466667pt;}
.y11_c00076{bottom:771.066667pt;}
.y46_c00076{bottom:771.466667pt;}
.y10_c00076{bottom:787.066667pt;}
.y45_c00076{bottom:787.466667pt;}
.yf_c00076{bottom:802.800000pt;}
.y44_c00076{bottom:803.466667pt;}
.ye_c00076{bottom:818.533333pt;}
.y43_c00076{bottom:819.200000pt;}
.yd_c00076{bottom:834.533333pt;}
.y42_c00076{bottom:835.466667pt;}
.yc_c00076{bottom:850.533333pt;}
.y41_c00076{bottom:851.200000pt;}
.yb_c00076{bottom:866.266667pt;}
.y40_c00076{bottom:867.466667pt;}
.ya_c00076{bottom:882.533333pt;}
.y3f_c00076{bottom:883.200000pt;}
.y9_c00076{bottom:898.266667pt;}
.y3e_c00076{bottom:899.466667pt;}
.y8_c00076{bottom:914.533333pt;}
.y3d_c00076{bottom:915.466667pt;}
.y7_c00076{bottom:930.266667pt;}
.y3c_c00076{bottom:931.200000pt;}
.y6_c00076{bottom:946.533333pt;}
.y3b_c00076{bottom:947.200000pt;}
.y5_c00076{bottom:962.533333pt;}
.y3a_c00076{bottom:963.200000pt;}
.y4_c00076{bottom:978.266667pt;}
.y39_c00076{bottom:979.200000pt;}
.y3_c00076{bottom:994.533333pt;}
.y38_c00076{bottom:995.200000pt;}
.y1_c00076{bottom:1018.266667pt;}
.y2_c00076{bottom:1019.200000pt;}
.h7_c00076{height:42.666667pt;}
.h6_c00076{height:48.000000pt;}
.h5_c00076{height:53.333333pt;}
.h4_c00076{height:58.666667pt;}
.h3_c00076{height:64.000000pt;}
.h2_c00076{height:69.333333pt;}
.h1_c00076{height:1130.666667pt;}
.h0_c00076{height:1130.879964pt;}
.w0_c00076{width:843.200032pt;}
.w1_c00076{width:843.333333pt;}
.x0_c00076{left:0.000000pt;}
.x3_c00076{left:69.733333pt;}
.x73_c00076{left:71.333333pt;}
.x7e_c00076{left:72.266667pt;}
.x99_c00076{left:74.266667pt;}
.xa7_c00076{left:75.866667pt;}
.x15_c00076{left:85.066667pt;}
.xa_c00076{left:87.333333pt;}
.x1b_c00076{left:88.266667pt;}
.x66_c00076{left:89.200000pt;}
.x72_c00076{left:90.266667pt;}
.x85_c00076{left:91.333333pt;}
.x8a_c00076{left:92.400000pt;}
.xa8_c00076{left:96.666667pt;}
.x92_c00076{left:98.266667pt;}
.xa6_c00076{left:103.733333pt;}
.xa0_c00076{left:105.733333pt;}
.x7f_c00076{left:107.466667pt;}
.x25_c00076{left:109.066667pt;}
.x78_c00076{left:112.000000pt;}
.x42_c00076{left:113.066667pt;}
.xb_c00076{left:115.200000pt;}
.x3d_c00076{left:116.533333pt;}
.x83_c00076{left:118.666667pt;}
.x30_c00076{left:120.133333pt;}
.x93_c00076{left:122.000000pt;}
.x51_c00076{left:124.266667pt;}
.x1c_c00076{left:125.333333pt;}
.x74_c00076{left:126.666667pt;}
.x4b_c00076{left:128.266667pt;}
.x35_c00076{left:129.866667pt;}
.x5d_c00076{left:131.200000pt;}
.x9a_c00076{left:132.800000pt;}
.x10_c00076{left:134.133333pt;}
.x7d_c00076{left:135.066667pt;}
.x71_c00076{left:136.133333pt;}
.x80_c00076{left:138.133333pt;}
.x76_c00076{left:139.733333pt;}
.x2a_c00076{left:140.666667pt;}
.x61_c00076{left:142.000000pt;}
.xa4_c00076{left:144.266667pt;}
.x5e_c00076{left:148.533333pt;}
.x4_c00076{left:152.266667pt;}
.x4c_c00076{left:154.133333pt;}
.x48_c00076{left:155.200000pt;}
.x79_c00076{left:157.066667pt;}
.x36_c00076{left:160.000000pt;}
.x8b_c00076{left:161.466667pt;}
.x3e_c00076{left:163.200000pt;}
.x88_c00076{left:164.533333pt;}
.x69_c00076{left:165.466667pt;}
.x52_c00076{left:166.800000pt;}
.x31_c00076{left:168.400000pt;}
.x81_c00076{left:169.600000pt;}
.x1d_c00076{left:171.466667pt;}
.x16_c00076{left:172.800000pt;}
.xaa_c00076{left:176.666667pt;}
.x37_c00076{left:177.866667pt;}
.x62_c00076{left:179.066667pt;}
.x26_c00076{left:180.133333pt;}
.x7a_c00076{left:181.066667pt;}
.x43_c00076{left:182.533333pt;}
.x67_c00076{left:184.666667pt;}
.xab_c00076{left:185.600000pt;}
.x3f_c00076{left:186.933333pt;}
.x8d_c00076{left:187.866667pt;}
.x53_c00076{left:189.866667pt;}
.x1e_c00076{left:190.933333pt;}
.x5_c00076{left:192.266667pt;}
.x2b_c00076{left:198.266667pt;}
.x32_c00076{left:199.733333pt;}
.x17_c00076{left:200.666667pt;}
.x4d_c00076{left:202.133333pt;}
.x11_c00076{left:203.600000pt;}
.x90_c00076{left:206.266667pt;}
.x59_c00076{left:208.533333pt;}
.x77_c00076{left:210.533333pt;}
.x6a_c00076{left:212.133333pt;}
.xc_c00076{left:216.000000pt;}
.x5f_c00076{left:217.733333pt;}
.x4e_c00076{left:220.000000pt;}
.x54_c00076{left:221.200000pt;}
.x6d_c00076{left:222.800000pt;}
.x12_c00076{left:224.666667pt;}
.x9c_c00076{left:226.133333pt;}
.x1f_c00076{left:227.466667pt;}
.x44_c00076{left:231.200000pt;}
.x8e_c00076{left:233.600000pt;}
.x2c_c00076{left:235.066667pt;}
.x38_c00076{left:236.133333pt;}
.x27_c00076{left:238.000000pt;}
.x9d_c00076{left:238.933333pt;}
.x55_c00076{left:240.666667pt;}
.x86_c00076{left:241.600000pt;}
.xa5_c00076{left:243.200000pt;}
.x20_c00076{left:244.400000pt;}
.x9e_c00076{left:245.600000pt;}
.x18_c00076{left:246.800000pt;}
.x6b_c00076{left:248.000000pt;}
.x6_c00076{left:248.933333pt;}
.x7b_c00076{left:250.533333pt;}
.x56_c00076{left:252.533333pt;}
.x40_c00076{left:253.866667pt;}
.x28_c00076{left:255.333333pt;}
.xd_c00076{left:257.600000pt;}
.x13_c00076{left:260.533333pt;}
.x21_c00076{left:263.333333pt;}
.x9f_c00076{left:264.800000pt;}
.x57_c00076{left:266.000000pt;}
.x89_c00076{left:267.200000pt;}
.x19_c00076{left:268.533333pt;}
.x5a_c00076{left:270.000000pt;}
.x4f_c00076{left:272.133333pt;}
.xa1_c00076{left:273.200000pt;}
.x7_c00076{left:276.133333pt;}
.x39_c00076{left:277.466667pt;}
.x63_c00076{left:279.600000pt;}
.x2d_c00076{left:282.800000pt;}
.x3a_c00076{left:283.866667pt;}
.x45_c00076{left:286.000000pt;}
.x1_c00076{left:288.000000pt;}
.x7c_c00076{left:289.200000pt;}
.x8c_c00076{left:290.800000pt;}
.x22_c00076{left:292.133333pt;}
.xa9_c00076{left:294.400000pt;}
.x29_c00076{left:295.600000pt;}
.x84_c00076{left:297.333333pt;}
.x8f_c00076{left:298.533333pt;}
.x6e_c00076{left:300.666667pt;}
.xe_c00076{left:303.066667pt;}
.x1a_c00076{left:304.000000pt;}
.x68_c00076{left:305.600000pt;}
.x60_c00076{left:306.666667pt;}
.x5b_c00076{left:309.466667pt;}
.x8_c00076{left:310.400000pt;}
.x87_c00076{left:311.333333pt;}
.x2e_c00076{left:313.200000pt;}
.x98_c00076{left:314.400000pt;}
.x94_c00076{left:315.333333pt;}
.x3b_c00076{left:316.533333pt;}
.xa2_c00076{left:317.733333pt;}
.x46_c00076{left:319.333333pt;}
.x33_c00076{left:322.533333pt;}
.x23_c00076{left:323.466667pt;}
.x2f_c00076{left:324.666667pt;}
.x41_c00076{left:326.533333pt;}
.x6c_c00076{left:328.933333pt;}
.x49_c00076{left:330.800000pt;}
.x64_c00076{left:333.066667pt;}
.xf_c00076{left:334.800000pt;}
.x6f_c00076{left:336.133333pt;}
.x96_c00076{left:341.200000pt;}
.x47_c00076{left:342.400000pt;}
.x3c_c00076{left:343.466667pt;}
.x75_c00076{left:344.533333pt;}
.x82_c00076{left:345.466667pt;}
.x14_c00076{left:348.800000pt;}
.x24_c00076{left:349.733333pt;}
.x4a_c00076{left:351.600000pt;}
.x91_c00076{left:353.466667pt;}
.x50_c00076{left:355.333333pt;}
.x5c_c00076{left:356.533333pt;}
.x9_c00076{left:357.466667pt;}
.x70_c00076{left:359.200000pt;}
.x58_c00076{left:361.066667pt;}
.x34_c00076{left:363.466667pt;}
.x9b_c00076{left:364.933333pt;}
.x97_c00076{left:367.466667pt;}
.xa3_c00076{left:369.200000pt;}
.x65_c00076{left:372.133333pt;}
.x95_c00076{left:373.200000pt;}
.x10b_c00076{left:394.266667pt;}
.x119_c00076{left:396.133333pt;}
.xac_c00076{left:408.266667pt;}
.xe3_c00076{left:409.466667pt;}
.x118_c00076{left:411.066667pt;}
.x11c_c00076{left:412.133333pt;}
.x136_c00076{left:413.333333pt;}
.x13f_c00076{left:414.533333pt;}
.x11a_c00076{left:424.666667pt;}
.x11d_c00076{left:426.266667pt;}
.x12b_c00076{left:428.400000pt;}
.x13b_c00076{left:429.866667pt;}
.xeb_c00076{left:431.600000pt;}
.x102_c00076{left:432.800000pt;}
.xfc_c00076{left:434.266667pt;}
.x140_c00076{left:435.866667pt;}
.x122_c00076{left:436.800000pt;}
.xad_c00076{left:437.733333pt;}
.xd4_c00076{left:440.000000pt;}
.x12a_c00076{left:442.400000pt;}
.xe4_c00076{left:444.000000pt;}
.xc9_c00076{left:446.800000pt;}
.xd0_c00076{left:448.400000pt;}
.xdb_c00076{left:450.533333pt;}
.x105_c00076{left:454.933333pt;}
.x113_c00076{left:456.000000pt;}
.xf3_c00076{left:457.333333pt;}
.xbf_c00076{left:458.533333pt;}
.xb7_c00076{left:460.000000pt;}
.x10f_c00076{left:461.200000pt;}
.xd5_c00076{left:462.800000pt;}
.x11e_c00076{left:464.666667pt;}
.x124_c00076{left:465.600000pt;}
.xe5_c00076{left:467.066667pt;}
.xdc_c00076{left:469.466667pt;}
.xae_c00076{left:470.666667pt;}
.xf9_c00076{left:472.000000pt;}
.x109_c00076{left:473.600000pt;}
.xb3_c00076{left:476.400000pt;}
.x114_c00076{left:477.466667pt;}
.x13c_c00076{left:480.133333pt;}
.x137_c00076{left:481.200000pt;}
.xb8_c00076{left:482.133333pt;}
.xdd_c00076{left:485.200000pt;}
.x127_c00076{left:486.666667pt;}
.xc4_c00076{left:487.733333pt;}
.x106_c00076{left:488.800000pt;}
.xf4_c00076{left:492.000000pt;}
.x145_c00076{left:493.333333pt;}
.x13e_c00076{left:494.400000pt;}
.xec_c00076{left:495.866667pt;}
.x123_c00076{left:497.600000pt;}
.xd6_c00076{left:498.933333pt;}
.xb9_c00076{left:501.066667pt;}
.xaf_c00076{left:503.333333pt;}
.x12f_c00076{left:504.666667pt;}
.xd1_c00076{left:508.533333pt;}
.xed_c00076{left:512.800000pt;}
.xc0_c00076{left:515.200000pt;}
.xe6_c00076{left:517.866667pt;}
.x11b_c00076{left:519.066667pt;}
.xd7_c00076{left:520.666667pt;}
.xcc_c00076{left:522.266667pt;}
.xb4_c00076{left:523.466667pt;}
.x144_c00076{left:525.333333pt;}
.xb0_c00076{left:527.600000pt;}
.xc5_c00076{left:528.666667pt;}
.x110_c00076{left:530.933333pt;}
.x12e_c00076{left:533.066667pt;}
.xba_c00076{left:534.400000pt;}
.x10a_c00076{left:536.666667pt;}
.x13d_c00076{left:537.733333pt;}
.x138_c00076{left:538.800000pt;}
.xd2_c00076{left:539.866667pt;}
.xbb_c00076{left:542.133333pt;}
.x131_c00076{left:544.800000pt;}
.xb1_c00076{left:546.533333pt;}
.xde_c00076{left:548.266667pt;}
.xfd_c00076{left:549.333333pt;}
.x146_c00076{left:552.666667pt;}
.xc6_c00076{left:553.600000pt;}
.xee_c00076{left:554.666667pt;}
.xc1_c00076{left:556.533333pt;}
.x107_c00076{left:558.266667pt;}
.xf5_c00076{left:559.200000pt;}
.x132_c00076{left:560.266667pt;}
.x139_c00076{left:561.866667pt;}
.xcd_c00076{left:563.200000pt;}
.xdf_c00076{left:564.266667pt;}
.x128_c00076{left:566.000000pt;}
.xe7_c00076{left:568.133333pt;}
.x130_c00076{left:569.333333pt;}
.xc7_c00076{left:571.200000pt;}
.xb5_c00076{left:573.333333pt;}
.x115_c00076{left:574.666667pt;}
.xfa_c00076{left:576.666667pt;}
.xca_c00076{left:578.666667pt;}
.xef_c00076{left:580.533333pt;}
.xfe_c00076{left:582.000000pt;}
.x10c_c00076{left:584.400000pt;}
.xe8_c00076{left:587.066667pt;}
.xd8_c00076{left:589.066667pt;}
.xbc_c00076{left:591.466667pt;}
.x134_c00076{left:592.933333pt;}
.xf6_c00076{left:594.400000pt;}
.xf7_c00076{left:597.333333pt;}
.x141_c00076{left:598.666667pt;}
.x111_c00076{left:599.733333pt;}
.xff_c00076{left:601.200000pt;}
.x11f_c00076{left:602.400000pt;}
.x121_c00076{left:603.733333pt;}
.x104_c00076{left:608.266667pt;}
.xc8_c00076{left:611.466667pt;}
.xb6_c00076{left:612.400000pt;}
.x10d_c00076{left:613.866667pt;}
.x125_c00076{left:614.933333pt;}
.xbd_c00076{left:616.400000pt;}
.x112_c00076{left:618.000000pt;}
.xd3_c00076{left:619.600000pt;}
.xe9_c00076{left:622.000000pt;}
.xf0_c00076{left:625.333333pt;}
.x12c_c00076{left:627.200000pt;}
.x142_c00076{left:629.333333pt;}
.xe0_c00076{left:633.066667pt;}
.xce_c00076{left:634.533333pt;}
.xd9_c00076{left:635.733333pt;}
.x126_c00076{left:637.066667pt;}
.x129_c00076{left:638.266667pt;}
.x100_c00076{left:639.866667pt;}
.x13a_c00076{left:640.800000pt;}
.x12d_c00076{left:643.200000pt;}
.xc2_c00076{left:644.266667pt;}
.xf1_c00076{left:647.466667pt;}
.x10e_c00076{left:648.400000pt;}
.xfb_c00076{left:652.533333pt;}
.xda_c00076{left:654.000000pt;}
.x116_c00076{left:654.933333pt;}
.x120_c00076{left:655.866667pt;}
.xe1_c00076{left:656.800000pt;}
.x108_c00076{left:658.400000pt;}
.xf8_c00076{left:662.666667pt;}
.x101_c00076{left:664.133333pt;}
.x143_c00076{left:666.000000pt;}
.xcb_c00076{left:666.933333pt;}
.x103_c00076{left:668.133333pt;}
.xea_c00076{left:670.266667pt;}
.xb2_c00076{left:671.600000pt;}
.x135_c00076{left:672.533333pt;}
.xe2_c00076{left:674.133333pt;}
.x2_c00076{left:675.466667pt;}
.xc3_c00076{left:679.733333pt;}
.x117_c00076{left:681.466667pt;}
.x133_c00076{left:683.066667pt;}
.xcf_c00076{left:684.133333pt;}
.xbe_c00076{left:688.666667pt;}
.xf2_c00076{left:691.333333pt;}
}





/* 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_c00077 {
    display:none;
  }
  .loading-indicator_c00077.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00077 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_c00077 { 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_c00077" -> "#page-container .classname_c00077")
 */
.pf_c00077 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00077 { /* 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_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00077 { /* 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_c00077 { /* 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_c00077 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00077 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00077 {overflow:visible;}
  }
}
.c_c00077 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00077 { /* 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_c00077:after { /* webkit #35443 */
  content: '';
}
.t_c00077:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00077 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 */
}
.__c00077 { /* 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_c00077 { /* info for Javascript */
  display:none;
}
.l_c00077 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00077 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00077 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00077: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_c00077 {
    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_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00077.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_c00077 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00077;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.000000;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;}
.m7f_c00077{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00077{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mda_c00077{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00077{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mca_c00077{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00077{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mef_c00077{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00077{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00077{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me5_c00077{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00077{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00077{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m111_c00077{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.meb_c00077{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m33_c00077{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00077{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00077{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00077{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00077{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00077{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00077{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00077{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00077{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m121_c00077{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.md7_c00077{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m19_c00077{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md2_c00077{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m102_c00077{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m97_c00077{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00077{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00077{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00077{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m105_c00077{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.ma_c00077{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m91_c00077{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m114_c00077{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9_c00077{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mce_c00077{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m101_c00077{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m92_c00077{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00077{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00077{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mba_c00077{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00077{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00077{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00077{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.md4_c00077{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me_c00077{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m90_c00077{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00077{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00077{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00077{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m7_c00077{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m34_c00077{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m20_c00077{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00077{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m59_c00077{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m81_c00077{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10_c00077{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m96_c00077{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m35_c00077{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m85_c00077{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00077{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m16_c00077{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m133_c00077{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m29_c00077{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md_c00077{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00077{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00077{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m12_c00077{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00077{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m37_c00077{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m122_c00077{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m23_c00077{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00077{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mde_c00077{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m78_c00077{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf_c00077{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m43_c00077{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m124_c00077{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00077{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m25_c00077{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00077{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m58_c00077{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m38_c00077{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m48_c00077{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mff_c00077{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00077{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00077{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md9_c00077{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00077{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m125_c00077{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m50_c00077{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00077{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m46_c00077{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00077{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m100_c00077{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m26_c00077{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m15_c00077{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m42_c00077{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m49_c00077{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00077{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me1_c00077{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m117_c00077{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00077{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m51_c00077{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2_c00077{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc_c00077{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me4_c00077{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00077{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mac_c00077{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m22_c00077{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me3_c00077{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m82_c00077{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00077{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mec_c00077{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00077{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00077{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m79_c00077{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m61_c00077{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00077{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00077{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00077{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m32_c00077{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00077{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00077{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00077{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md1_c00077{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00077{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m104_c00077{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me2_c00077{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m119_c00077{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00077{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00077{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m83_c00077{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5_c00077{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m68_c00077{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00077{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m40_c00077{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m36_c00077{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00077{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00077{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m13_c00077{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m71_c00077{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m130_c00077{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00077{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m18_c00077{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m118_c00077{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb_c00077{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m6_c00077{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m128_c00077{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md5_c00077{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m45_c00077{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00077{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m41_c00077{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m24_c00077{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m116_c00077{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m134_c00077{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00077{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m70_c00077{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00077{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md0_c00077{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m72_c00077{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m73_c00077{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m57_c00077{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m47_c00077{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00077{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00077{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m44_c00077{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m28_c00077{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00077{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00077{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m131_c00077{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m54_c00077{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m80_c00077{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mea_c00077{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00077{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00077{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00077{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00077{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m30_c00077{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m60_c00077{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m31_c00077{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m126_c00077{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m77_c00077{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m14_c00077{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00077{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me8_c00077{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m88_c00077{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00077{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m21_c00077{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m56_c00077{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m63_c00077{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00077{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00077{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00077{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00077{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m11_c00077{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00077{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m127_c00077{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md6_c00077{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m67_c00077{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00077{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00077{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m95_c00077{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m53_c00077{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m108_c00077{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m107_c00077{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00077{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00077{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m39_c00077{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00077{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m27_c00077{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00077{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.maf_c00077{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me6_c00077{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00077{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00077{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00077{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m84_c00077{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m86_c00077{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00077{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_c00077{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00077{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00077{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00077{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00077{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m113_c00077{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00077{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00077{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00077{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00077{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00077{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m52_c00077{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m98_c00077{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m55_c00077{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00077{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00077{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00077{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00077{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m120_c00077{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);}
.m6c_c00077{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m65_c00077{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00077{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mee_c00077{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m89_c00077{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me0_c00077{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.me9_c00077{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00077{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m132_c00077{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m103_c00077{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m75_c00077{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m87_c00077{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00077{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m69_c00077{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00077{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00077{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m115_c00077{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00077{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.maa_c00077{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00077{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m129_c00077{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00077{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m110_c00077{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m74_c00077{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m0_c00077{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00077{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00077{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00077{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00077{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m123_c00077{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00077{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m112_c00077{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00077{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.mae_c00077{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00077{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m99_c00077{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m76_c00077{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m64_c00077{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00077{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m66_c00077{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00077{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00077{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00077{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00077{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00077{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00077{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mad_c00077{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m94_c00077{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.med_c00077{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00077{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me7_c00077{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.mab_c00077{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.m93_c00077{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00077{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00077{transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);}
.m109_c00077{transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00077{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00077{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00077{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00077{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(0.478500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00077{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.md3_c00077{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.md8_c00077{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m106_c00077{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00077{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls1_c00077{letter-spacing:0.000000px;}
.ls0_c00077{letter-spacing:70.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{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__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00077{word-spacing:-100.000000px;}
.ws1_c00077{word-spacing:-11.062500px;}
.ws8_c00077{word-spacing:-10.731707px;}
.wsa_c00077{word-spacing:0.000000px;}
.ws0_c00077{word-spacing:21.000000px;}
.ws2_c00077{word-spacing:22.142857px;}
.ws3_c00077{word-spacing:25.714286px;}
.ws9_c00077{word-spacing:26.000000px;}
.ws7_c00077{word-spacing:29.285714px;}
.ws5_c00077{word-spacing:34.642857px;}
.ws4_c00077{word-spacing:40.000000px;}
._3_c00077{margin-left:-70.000000px;}
._2_c00077{width:52.142857px;}
._0_c00077{width:59.285714px;}
._1_c00077{width:64.642857px;}
.fc0_c00077{color:transparent;}
.fs4_c00077{font-size:30.000000px;}
.fs5_c00077{font-size:54.000000px;}
.fs3_c00077{font-size:60.000000px;}
.fs2_c00077{font-size:66.000000px;}
.fs0_c00077{font-size:72.000000px;}
.fs1_c00077{font-size:84.000000px;}
.y0_c00077{bottom:0.000000px;}
.y68_c00077{bottom:185.700000px;}
.y4b_c00077{bottom:189.600000px;}
.y4a_c00077{bottom:205.500000px;}
.y49_c00077{bottom:210.600000px;}
.y67_c00077{bottom:215.250000px;}
.y48_c00077{bottom:227.850000px;}
.y66_c00077{bottom:237.900000px;}
.y47_c00077{bottom:245.850000px;}
.y65_c00077{bottom:261.750000px;}
.y46_c00077{bottom:263.100000px;}
.y64_c00077{bottom:280.050000px;}
.y45_c00077{bottom:280.800000px;}
.y63_c00077{bottom:297.750000px;}
.y44_c00077{bottom:298.500000px;}
.y43_c00077{bottom:315.750000px;}
.y42_c00077{bottom:333.750000px;}
.y62_c00077{bottom:334.050000px;}
.y41_c00077{bottom:351.000000px;}
.y61_c00077{bottom:351.750000px;}
.y40_c00077{bottom:369.000000px;}
.y60_c00077{bottom:374.700000px;}
.y3f_c00077{bottom:386.250000px;}
.y5f_c00077{bottom:392.700000px;}
.y3e_c00077{bottom:403.500000px;}
.y5e_c00077{bottom:410.700000px;}
.y3d_c00077{bottom:421.200000px;}
.y5d_c00077{bottom:428.700000px;}
.y3c_c00077{bottom:441.300000px;}
.y5c_c00077{bottom:446.400000px;}
.y3b_c00077{bottom:455.700000px;}
.y5b_c00077{bottom:464.400000px;}
.y3a_c00077{bottom:469.800000px;}
.y5a_c00077{bottom:482.100000px;}
.y39_c00077{bottom:484.200000px;}
.y38_c00077{bottom:498.600000px;}
.y59_c00077{bottom:502.950000px;}
.y37_c00077{bottom:512.550000px;}
.y58_c00077{bottom:517.350000px;}
.y36_c00077{bottom:527.700000px;}
.y57_c00077{bottom:532.050000px;}
.y35_c00077{bottom:542.850000px;}
.y56_c00077{bottom:552.600000px;}
.y34_c00077{bottom:555.900000px;}
.y55_c00077{bottom:570.600000px;}
.y33_c00077{bottom:576.300000px;}
.y54_c00077{bottom:588.600000px;}
.y32_c00077{bottom:594.000000px;}
.y53_c00077{bottom:606.900000px;}
.y31_c00077{bottom:612.000000px;}
.y52_c00077{bottom:628.200000px;}
.y30_c00077{bottom:633.600000px;}
.y51_c00077{bottom:646.200000px;}
.y2f_c00077{bottom:651.600000px;}
.y50_c00077{bottom:664.500000px;}
.y2e_c00077{bottom:669.300000px;}
.y4f_c00077{bottom:682.200000px;}
.y2d_c00077{bottom:687.300000px;}
.y4e_c00077{bottom:700.500000px;}
.y2c_c00077{bottom:705.000000px;}
.y4d_c00077{bottom:718.200000px;}
.y2b_c00077{bottom:723.300000px;}
.y4c_c00077{bottom:740.100000px;}
.y2a_c00077{bottom:741.300000px;}
.y29_c00077{bottom:762.450000px;}
.y28_c00077{bottom:790.500000px;}
.y27_c00077{bottom:798.900000px;}
.y24_c00077{bottom:807.900000px;}
.y26_c00077{bottom:808.950000px;}
.y23_c00077{bottom:829.500000px;}
.y25_c00077{bottom:830.100000px;}
.y22_c00077{bottom:847.800000px;}
.y21_c00077{bottom:848.100000px;}
.y20_c00077{bottom:866.550000px;}
.y11_c00077{bottom:870.000000px;}
.y1f_c00077{bottom:884.550000px;}
.y10_c00077{bottom:888.000000px;}
.y1e_c00077{bottom:902.550000px;}
.yf_c00077{bottom:906.000000px;}
.y1d_c00077{bottom:920.550000px;}
.ye_c00077{bottom:924.000000px;}
.y1c_c00077{bottom:938.550000px;}
.yd_c00077{bottom:942.000000px;}
.y1b_c00077{bottom:956.550000px;}
.yc_c00077{bottom:959.700000px;}
.y1a_c00077{bottom:974.550000px;}
.yb_c00077{bottom:978.000000px;}
.ya_c00077{bottom:995.700000px;}
.y19_c00077{bottom:996.900000px;}
.y9_c00077{bottom:1013.700000px;}
.y18_c00077{bottom:1014.900000px;}
.y8_c00077{bottom:1031.700000px;}
.y17_c00077{bottom:1032.900000px;}
.y7_c00077{bottom:1049.700000px;}
.y16_c00077{bottom:1050.900000px;}
.y6_c00077{bottom:1067.700000px;}
.y15_c00077{bottom:1068.900000px;}
.y5_c00077{bottom:1085.400000px;}
.y14_c00077{bottom:1086.900000px;}
.y4_c00077{bottom:1103.700000px;}
.y13_c00077{bottom:1104.900000px;}
.y3_c00077{bottom:1121.700000px;}
.y12_c00077{bottom:1122.900000px;}
.y1_c00077{bottom:1145.850000px;}
.y2_c00077{bottom:1149.450000px;}
.h6_c00077{height:30.000000px;}
.h7_c00077{height:54.000000px;}
.h5_c00077{height:60.000000px;}
.h4_c00077{height:66.000000px;}
.h2_c00077{height:72.000000px;}
.h3_c00077{height:84.000000px;}
.h1_c00077{height:1278.750000px;}
.h0_c00077{height:1279.079957px;}
.w0_c00077{width:948.600036px;}
.w1_c00077{width:948.750000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:171.000000px;}
.xb1_c00077{left:172.500000px;}
.xbc_c00077{left:174.300000px;}
.xdd_c00077{left:185.700000px;}
.xc1_c00077{left:188.250000px;}
.x9_c00077{left:189.750000px;}
.x19_c00077{left:190.800000px;}
.xf1_c00077{left:199.500000px;}
.xe3_c00077{left:200.550000px;}
.x3_c00077{left:207.750000px;}
.x31_c00077{left:208.800000px;}
.x101_c00077{left:210.000000px;}
.x12_c00077{left:211.350000px;}
.xfd_c00077{left:214.050000px;}
.xf8_c00077{left:216.600000px;}
.xea_c00077{left:218.550000px;}
.x1f_c00077{left:220.500000px;}
.xd9_c00077{left:222.600000px;}
.xaf_c00077{left:224.550000px;}
.xde_c00077{left:226.800000px;}
.x107_c00077{left:228.600000px;}
.x41_c00077{left:230.550000px;}
.xd4_c00077{left:231.900000px;}
.x1a_c00077{left:234.000000px;}
.xeb_c00077{left:235.050000px;}
.xb2_c00077{left:238.350000px;}
.xff_c00077{left:239.400000px;}
.x32_c00077{left:241.200000px;}
.xbd_c00077{left:243.150000px;}
.x38_c00077{left:244.950000px;}
.x13_c00077{left:247.050000px;}
.xc7_c00077{left:248.400000px;}
.x42_c00077{left:251.100000px;}
.xcb_c00077{left:252.600000px;}
.xa_c00077{left:255.300000px;}
.xe6_c00077{left:259.200000px;}
.xac_c00077{left:260.250000px;}
.x4_c00077{left:264.600000px;}
.x28_c00077{left:266.550000px;}
.x102_c00077{left:268.050000px;}
.x46_c00077{left:270.150000px;}
.xb_c00077{left:271.800000px;}
.x1b_c00077{left:273.900000px;}
.xdf_c00077{left:276.000000px;}
.xef_c00077{left:279.450000px;}
.x4d_c00077{left:281.400000px;}
.x43_c00077{left:282.450000px;}
.xf5_c00077{left:283.800000px;}
.xf0_c00077{left:286.650000px;}
.xc_c00077{left:288.300000px;}
.xec_c00077{left:290.550000px;}
.xc4_c00077{left:293.100000px;}
.xd0_c00077{left:294.150000px;}
.x29_c00077{left:298.200000px;}
.xb0_c00077{left:299.400000px;}
.x14_c00077{left:300.750000px;}
.xe4_c00077{left:301.800000px;}
.x1c_c00077{left:303.000000px;}
.xb3_c00077{left:304.950000px;}
.x26_c00077{left:306.150000px;}
.x20_c00077{left:308.100000px;}
.x49_c00077{left:310.050000px;}
.xbe_c00077{left:311.850000px;}
.xb4_c00077{left:313.200000px;}
.xed_c00077{left:314.250000px;}
.xe7_c00077{left:316.200000px;}
.x44_c00077{left:317.400000px;}
.xc5_c00077{left:318.600000px;}
.x3e_c00077{left:321.150000px;}
.x15_c00077{left:322.650000px;}
.x39_c00077{left:324.150000px;}
.xd5_c00077{left:325.500000px;}
.xcd_c00077{left:327.000000px;}
.xf7_c00077{left:328.050000px;}
.xad_c00077{left:331.500000px;}
.xfe_c00077{left:334.350000px;}
.xc8_c00077{left:335.550000px;}
.x33_c00077{left:336.900000px;}
.xe8_c00077{left:338.250000px;}
.xd_c00077{left:340.200000px;}
.x21_c00077{left:342.000000px;}
.xc6_c00077{left:343.800000px;}
.xe0_c00077{left:345.300000px;}
.x4a_c00077{left:346.800000px;}
.xcc_c00077{left:348.300000px;}
.x5_c00077{left:349.500000px;}
.x2a_c00077{left:351.450000px;}
.x106_c00077{left:352.800000px;}
.x1d_c00077{left:354.150000px;}
.x34_c00077{left:357.000000px;}
.x47_c00077{left:359.400000px;}
.x104_c00077{left:361.350000px;}
.xf2_c00077{left:362.700000px;}
.x3a_c00077{left:363.750000px;}
.xd2_c00077{left:364.800000px;}
.xce_c00077{left:366.600000px;}
.x22_c00077{left:367.950000px;}
.xda_c00077{left:369.150000px;}
.x35_c00077{left:372.150000px;}
.xee_c00077{left:373.350000px;}
.x2e_c00077{left:374.400000px;}
.xe_c00077{left:375.900000px;}
.x6_c00077{left:378.000000px;}
.xd6_c00077{left:379.800000px;}
.x4e_c00077{left:381.600000px;}
.xdb_c00077{left:384.600000px;}
.x3f_c00077{left:385.650000px;}
.xd8_c00077{left:387.450000px;}
.xe1_c00077{left:388.950000px;}
.xbf_c00077{left:394.650000px;}
.xcf_c00077{left:395.700000px;}
.x108_c00077{left:398.400000px;}
.x2f_c00077{left:399.900000px;}
.xe5_c00077{left:402.000000px;}
.xd7_c00077{left:403.200000px;}
.xc9_c00077{left:404.400000px;}
.xf_c00077{left:406.500000px;}
.xd1_c00077{left:408.300000px;}
.x2_c00077{left:409.350000px;}
.x105_c00077{left:411.000000px;}
.x16_c00077{left:413.400000px;}
.x36_c00077{left:415.650000px;}
.xe9_c00077{left:417.750000px;}
.xf3_c00077{left:419.550000px;}
.x4f_c00077{left:420.900000px;}
.xca_c00077{left:422.400000px;}
.xdc_c00077{left:423.450000px;}
.x3b_c00077{left:425.250000px;}
.x23_c00077{left:427.350000px;}
.x17_c00077{left:430.650000px;}
.x7_c00077{left:432.000000px;}
.x10a_c00077{left:434.700000px;}
.xd3_c00077{left:437.100000px;}
.x10_c00077{left:438.150000px;}
.x4b_c00077{left:440.400000px;}
.x50_c00077{left:442.200000px;}
.x2b_c00077{left:443.250000px;}
.xf9_c00077{left:445.200000px;}
.x45_c00077{left:447.300000px;}
.x18_c00077{left:449.700000px;}
.x3c_c00077{left:450.750000px;}
.xf4_c00077{left:453.000000px;}
.x2c_c00077{left:456.600000px;}
.x37_c00077{left:458.550000px;}
.x30_c00077{left:460.350000px;}
.xfa_c00077{left:461.400000px;}
.x11_c00077{left:464.100000px;}
.x40_c00077{left:465.600000px;}
.x48_c00077{left:466.650000px;}
.x4c_c00077{left:468.900000px;}
.xf6_c00077{left:471.300000px;}
.x100_c00077{left:473.850000px;}
.x24_c00077{left:475.950000px;}
.x1e_c00077{left:478.350000px;}
.xae_c00077{left:479.850000px;}
.x103_c00077{left:481.200000px;}
.x27_c00077{left:483.600000px;}
.x51_c00077{left:486.450000px;}
.x3d_c00077{left:488.250000px;}
.x8_c00077{left:490.350000px;}
.x25_c00077{left:492.150000px;}
.xfc_c00077{left:493.200000px;}
.xe2_c00077{left:494.250000px;}
.x109_c00077{left:500.250000px;}
.x2d_c00077{left:502.650000px;}
.xfb_c00077{left:504.900000px;}
.x82_c00077{left:526.350000px;}
.xc2_c00077{left:528.150000px;}
.x149_c00077{left:529.500000px;}
.x12a_c00077{left:542.100000px;}
.x9d_c00077{left:543.300000px;}
.x52_c00077{left:544.350000px;}
.x115_c00077{left:545.400000px;}
.x140_c00077{left:546.600000px;}
.x7b_c00077{left:560.250000px;}
.x11f_c00077{left:562.350000px;}
.xc3_c00077{left:563.400000px;}
.x141_c00077{left:565.200000px;}
.x12f_c00077{left:567.300000px;}
.x9e_c00077{left:568.500000px;}
.x11c_c00077{left:570.150000px;}
.x53_c00077{left:572.400000px;}
.x74_c00077{left:575.700000px;}
.x5a_c00077{left:577.800000px;}
.x117_c00077{left:579.300000px;}
.x11a_c00077{left:584.100000px;}
.x7c_c00077{left:585.150000px;}
.x87_c00077{left:586.350000px;}
.x83_c00077{left:587.550000px;}
.xb5_c00077{left:588.600000px;}
.xa6_c00077{left:591.750000px;}
.x123_c00077{left:592.800000px;}
.x66_c00077{left:595.500000px;}
.x5b_c00077{left:596.850000px;}
.x93_c00077{left:598.950000px;}
.x6d_c00077{left:600.150000px;}
.x9f_c00077{left:601.650000px;}
.x61_c00077{left:603.600000px;}
.x120_c00077{left:604.800000px;}
.x7d_c00077{left:606.450000px;}
.x88_c00077{left:607.950000px;}
.x13c_c00077{left:610.050000px;}
.x12e_c00077{left:611.250000px;}
.xa3_c00077{left:618.450000px;}
.x147_c00077{left:620.400000px;}
.x67_c00077{left:622.800000px;}
.x124_c00077{left:624.900000px;}
.x10c_c00077{left:627.450000px;}
.x6a_c00077{left:628.500000px;}
.x54_c00077{left:630.750000px;}
.x11d_c00077{left:634.650000px;}
.x5c_c00077{left:635.700000px;}
.x94_c00077{left:636.750000px;}
.xb6_c00077{left:639.000000px;}
.x145_c00077{left:640.500000px;}
.x7e_c00077{left:643.950000px;}
.x13d_c00077{left:645.000000px;}
.x121_c00077{left:646.500000px;}
.x125_c00077{left:649.350000px;}
.x6e_c00077{left:650.550000px;}
.x95_c00077{left:651.900000px;}
.x7f_c00077{left:652.950000px;}
.x55_c00077{left:655.200000px;}
.x75_c00077{left:656.250000px;}
.x112_c00077{left:659.100000px;}
.x8c_c00077{left:660.150000px;}
.x13e_c00077{left:662.250000px;}
.x10d_c00077{left:665.250000px;}
.x136_c00077{left:667.800000px;}
.x14a_c00077{left:669.150000px;}
.x130_c00077{left:670.650000px;}
.x76_c00077{left:671.700000px;}
.x56_c00077{left:672.900000px;}
.x6b_c00077{left:674.250000px;}
.xa7_c00077{left:675.600000px;}
.x144_c00077{left:677.550000px;}
.x118_c00077{left:678.600000px;}
.xb7_c00077{left:680.100000px;}
.xa4_c00077{left:682.200000px;}
.x10e_c00077{left:684.000000px;}
.x142_c00077{left:685.650000px;}
.x11b_c00077{left:687.450000px;}
.x8d_c00077{left:689.250000px;}
.x5d_c00077{left:691.800000px;}
.x10f_c00077{left:694.050000px;}
.x68_c00077{left:695.850000px;}
.x6f_c00077{left:697.050000px;}
.x89_c00077{left:698.700000px;}
.x132_c00077{left:702.450000px;}
.x62_c00077{left:704.100000px;}
.x96_c00077{left:705.600000px;}
.x10b_c00077{left:707.400000px;}
.x138_c00077{left:709.050000px;}
.x8e_c00077{left:710.550000px;}
.xa0_c00077{left:713.250000px;}
.x143_c00077{left:714.600000px;}
.x57_c00077{left:716.400000px;}
.x80_c00077{left:718.050000px;}
.x122_c00077{left:719.250000px;}
.x70_c00077{left:721.200000px;}
.xc0_c00077{left:722.550000px;}
.x77_c00077{left:726.750000px;}
.x133_c00077{left:729.450000px;}
.xa8_c00077{left:731.100000px;}
.x84_c00077{left:732.300000px;}
.xb8_c00077{left:733.350000px;}
.x97_c00077{left:736.200000px;}
.x81_c00077{left:737.850000px;}
.x63_c00077{left:739.800000px;}
.x5e_c00077{left:741.900000px;}
.x85_c00077{left:743.850000px;}
.xa1_c00077{left:744.900000px;}
.x131_c00077{left:746.700000px;}
.x8f_c00077{left:748.650000px;}
.x9b_c00077{left:750.000000px;}
.x148_c00077{left:751.350000px;}
.x8a_c00077{left:752.700000px;}
.x12b_c00077{left:755.250000px;}
.x139_c00077{left:757.050000px;}
.x71_c00077{left:758.250000px;}
.x137_c00077{left:761.100000px;}
.xa9_c00077{left:762.450000px;}
.x110_c00077{left:764.550000px;}
.x113_c00077{left:767.850000px;}
.x5f_c00077{left:769.200000px;}
.x90_c00077{left:770.250000px;}
.x126_c00077{left:772.050000px;}
.x13a_c00077{left:773.250000px;}
.x78_c00077{left:775.350000px;}
.x134_c00077{left:777.300000px;}
.x98_c00077{left:779.100000px;}
.x86_c00077{left:783.150000px;}
.x64_c00077{left:785.850000px;}
.x58_c00077{left:788.700000px;}
.x127_c00077{left:789.750000px;}
.x79_c00077{left:792.600000px;}
.xa2_c00077{left:796.350000px;}
.x72_c00077{left:798.150000px;}
.x91_c00077{left:802.650000px;}
.x12c_c00077{left:805.650000px;}
.x9c_c00077{left:806.850000px;}
.x6c_c00077{left:808.200000px;}
.x111_c00077{left:809.550000px;}
.x59_c00077{left:810.600000px;}
.x8b_c00077{left:812.400000px;}
.x146_c00077{left:813.750000px;}
.x135_c00077{left:816.150000px;}
.x11e_c00077{left:817.650000px;}
.x73_c00077{left:818.700000px;}
.xb9_c00077{left:821.850000px;}
.x128_c00077{left:823.200000px;}
.x119_c00077{left:824.850000px;}
.x92_c00077{left:826.800000px;}
.x114_c00077{left:829.050000px;}
.xa5_c00077{left:830.250000px;}
.x99_c00077{left:831.300000px;}
.xaa_c00077{left:834.750000px;}
.x13f_c00077{left:836.100000px;}
.x60_c00077{left:837.600000px;}
.xba_c00077{left:839.850000px;}
.x69_c00077{left:843.450000px;}
.x7a_c00077{left:845.850000px;}
.x65_c00077{left:849.600000px;}
.x9a_c00077{left:851.400000px;}
.x116_c00077{left:852.900000px;}
.x12d_c00077{left:855.000000px;}
.x13b_c00077{left:856.350000px;}
.x129_c00077{left:862.800000px;}
.xbb_c00077{left:867.150000px;}
.xab_c00077{left:872.850000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls1_c00077{letter-spacing:0.000000pt;}
.ls0_c00077{letter-spacing:62.222222pt;}
.ws6_c00077{word-spacing:-88.888889pt;}
.ws1_c00077{word-spacing:-9.833333pt;}
.ws8_c00077{word-spacing:-9.539295pt;}
.wsa_c00077{word-spacing:0.000000pt;}
.ws0_c00077{word-spacing:18.666667pt;}
.ws2_c00077{word-spacing:19.682540pt;}
.ws3_c00077{word-spacing:22.857143pt;}
.ws9_c00077{word-spacing:23.111111pt;}
.ws7_c00077{word-spacing:26.031746pt;}
.ws5_c00077{word-spacing:30.793651pt;}
.ws4_c00077{word-spacing:35.555556pt;}
._3_c00077{margin-left:-62.222222pt;}
._2_c00077{width:46.349206pt;}
._0_c00077{width:52.698413pt;}
._1_c00077{width:57.460317pt;}
.fs4_c00077{font-size:26.666667pt;}
.fs5_c00077{font-size:48.000000pt;}
.fs3_c00077{font-size:53.333333pt;}
.fs2_c00077{font-size:58.666667pt;}
.fs0_c00077{font-size:64.000000pt;}
.fs1_c00077{font-size:74.666667pt;}
.y0_c00077{bottom:0.000000pt;}
.y68_c00077{bottom:165.066667pt;}
.y4b_c00077{bottom:168.533333pt;}
.y4a_c00077{bottom:182.666667pt;}
.y49_c00077{bottom:187.200000pt;}
.y67_c00077{bottom:191.333333pt;}
.y48_c00077{bottom:202.533333pt;}
.y66_c00077{bottom:211.466667pt;}
.y47_c00077{bottom:218.533333pt;}
.y65_c00077{bottom:232.666667pt;}
.y46_c00077{bottom:233.866667pt;}
.y64_c00077{bottom:248.933333pt;}
.y45_c00077{bottom:249.600000pt;}
.y63_c00077{bottom:264.666667pt;}
.y44_c00077{bottom:265.333333pt;}
.y43_c00077{bottom:280.666667pt;}
.y42_c00077{bottom:296.666667pt;}
.y62_c00077{bottom:296.933333pt;}
.y41_c00077{bottom:312.000000pt;}
.y61_c00077{bottom:312.666667pt;}
.y40_c00077{bottom:328.000000pt;}
.y60_c00077{bottom:333.066667pt;}
.y3f_c00077{bottom:343.333333pt;}
.y5f_c00077{bottom:349.066667pt;}
.y3e_c00077{bottom:358.666667pt;}
.y5e_c00077{bottom:365.066667pt;}
.y3d_c00077{bottom:374.400000pt;}
.y5d_c00077{bottom:381.066667pt;}
.y3c_c00077{bottom:392.266667pt;}
.y5c_c00077{bottom:396.800000pt;}
.y3b_c00077{bottom:405.066667pt;}
.y5b_c00077{bottom:412.800000pt;}
.y3a_c00077{bottom:417.600000pt;}
.y5a_c00077{bottom:428.533333pt;}
.y39_c00077{bottom:430.400000pt;}
.y38_c00077{bottom:443.200000pt;}
.y59_c00077{bottom:447.066667pt;}
.y37_c00077{bottom:455.600000pt;}
.y58_c00077{bottom:459.866667pt;}
.y36_c00077{bottom:469.066667pt;}
.y57_c00077{bottom:472.933333pt;}
.y35_c00077{bottom:482.533333pt;}
.y56_c00077{bottom:491.200000pt;}
.y34_c00077{bottom:494.133333pt;}
.y55_c00077{bottom:507.200000pt;}
.y33_c00077{bottom:512.266667pt;}
.y54_c00077{bottom:523.200000pt;}
.y32_c00077{bottom:528.000000pt;}
.y53_c00077{bottom:539.466667pt;}
.y31_c00077{bottom:544.000000pt;}
.y52_c00077{bottom:558.400000pt;}
.y30_c00077{bottom:563.200000pt;}
.y51_c00077{bottom:574.400000pt;}
.y2f_c00077{bottom:579.200000pt;}
.y50_c00077{bottom:590.666667pt;}
.y2e_c00077{bottom:594.933333pt;}
.y4f_c00077{bottom:606.400000pt;}
.y2d_c00077{bottom:610.933333pt;}
.y4e_c00077{bottom:622.666667pt;}
.y2c_c00077{bottom:626.666667pt;}
.y4d_c00077{bottom:638.400000pt;}
.y2b_c00077{bottom:642.933333pt;}
.y4c_c00077{bottom:657.866667pt;}
.y2a_c00077{bottom:658.933333pt;}
.y29_c00077{bottom:677.733333pt;}
.y28_c00077{bottom:702.666667pt;}
.y27_c00077{bottom:710.133333pt;}
.y24_c00077{bottom:718.133333pt;}
.y26_c00077{bottom:719.066667pt;}
.y23_c00077{bottom:737.333333pt;}
.y25_c00077{bottom:737.866667pt;}
.y22_c00077{bottom:753.600000pt;}
.y21_c00077{bottom:753.866667pt;}
.y20_c00077{bottom:770.266667pt;}
.y11_c00077{bottom:773.333333pt;}
.y1f_c00077{bottom:786.266667pt;}
.y10_c00077{bottom:789.333333pt;}
.y1e_c00077{bottom:802.266667pt;}
.yf_c00077{bottom:805.333333pt;}
.y1d_c00077{bottom:818.266667pt;}
.ye_c00077{bottom:821.333333pt;}
.y1c_c00077{bottom:834.266667pt;}
.yd_c00077{bottom:837.333333pt;}
.y1b_c00077{bottom:850.266667pt;}
.yc_c00077{bottom:853.066667pt;}
.y1a_c00077{bottom:866.266667pt;}
.yb_c00077{bottom:869.333333pt;}
.ya_c00077{bottom:885.066667pt;}
.y19_c00077{bottom:886.133333pt;}
.y9_c00077{bottom:901.066667pt;}
.y18_c00077{bottom:902.133333pt;}
.y8_c00077{bottom:917.066667pt;}
.y17_c00077{bottom:918.133333pt;}
.y7_c00077{bottom:933.066667pt;}
.y16_c00077{bottom:934.133333pt;}
.y6_c00077{bottom:949.066667pt;}
.y15_c00077{bottom:950.133333pt;}
.y5_c00077{bottom:964.800000pt;}
.y14_c00077{bottom:966.133333pt;}
.y4_c00077{bottom:981.066667pt;}
.y13_c00077{bottom:982.133333pt;}
.y3_c00077{bottom:997.066667pt;}
.y12_c00077{bottom:998.133333pt;}
.y1_c00077{bottom:1018.533333pt;}
.y2_c00077{bottom:1021.733333pt;}
.h6_c00077{height:26.666667pt;}
.h7_c00077{height:48.000000pt;}
.h5_c00077{height:53.333333pt;}
.h4_c00077{height:58.666667pt;}
.h2_c00077{height:64.000000pt;}
.h3_c00077{height:74.666667pt;}
.h1_c00077{height:1136.666667pt;}
.h0_c00077{height:1136.959961pt;}
.w0_c00077{width:843.200032pt;}
.w1_c00077{width:843.333333pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:152.000000pt;}
.xb1_c00077{left:153.333333pt;}
.xbc_c00077{left:154.933333pt;}
.xdd_c00077{left:165.066667pt;}
.xc1_c00077{left:167.333333pt;}
.x9_c00077{left:168.666667pt;}
.x19_c00077{left:169.600000pt;}
.xf1_c00077{left:177.333333pt;}
.xe3_c00077{left:178.266667pt;}
.x3_c00077{left:184.666667pt;}
.x31_c00077{left:185.600000pt;}
.x101_c00077{left:186.666667pt;}
.x12_c00077{left:187.866667pt;}
.xfd_c00077{left:190.266667pt;}
.xf8_c00077{left:192.533333pt;}
.xea_c00077{left:194.266667pt;}
.x1f_c00077{left:196.000000pt;}
.xd9_c00077{left:197.866667pt;}
.xaf_c00077{left:199.600000pt;}
.xde_c00077{left:201.600000pt;}
.x107_c00077{left:203.200000pt;}
.x41_c00077{left:204.933333pt;}
.xd4_c00077{left:206.133333pt;}
.x1a_c00077{left:208.000000pt;}
.xeb_c00077{left:208.933333pt;}
.xb2_c00077{left:211.866667pt;}
.xff_c00077{left:212.800000pt;}
.x32_c00077{left:214.400000pt;}
.xbd_c00077{left:216.133333pt;}
.x38_c00077{left:217.733333pt;}
.x13_c00077{left:219.600000pt;}
.xc7_c00077{left:220.800000pt;}
.x42_c00077{left:223.200000pt;}
.xcb_c00077{left:224.533333pt;}
.xa_c00077{left:226.933333pt;}
.xe6_c00077{left:230.400000pt;}
.xac_c00077{left:231.333333pt;}
.x4_c00077{left:235.200000pt;}
.x28_c00077{left:236.933333pt;}
.x102_c00077{left:238.266667pt;}
.x46_c00077{left:240.133333pt;}
.xb_c00077{left:241.600000pt;}
.x1b_c00077{left:243.466667pt;}
.xdf_c00077{left:245.333333pt;}
.xef_c00077{left:248.400000pt;}
.x4d_c00077{left:250.133333pt;}
.x43_c00077{left:251.066667pt;}
.xf5_c00077{left:252.266667pt;}
.xf0_c00077{left:254.800000pt;}
.xc_c00077{left:256.266667pt;}
.xec_c00077{left:258.266667pt;}
.xc4_c00077{left:260.533333pt;}
.xd0_c00077{left:261.466667pt;}
.x29_c00077{left:265.066667pt;}
.xb0_c00077{left:266.133333pt;}
.x14_c00077{left:267.333333pt;}
.xe4_c00077{left:268.266667pt;}
.x1c_c00077{left:269.333333pt;}
.xb3_c00077{left:271.066667pt;}
.x26_c00077{left:272.133333pt;}
.x20_c00077{left:273.866667pt;}
.x49_c00077{left:275.600000pt;}
.xbe_c00077{left:277.200000pt;}
.xb4_c00077{left:278.400000pt;}
.xed_c00077{left:279.333333pt;}
.xe7_c00077{left:281.066667pt;}
.x44_c00077{left:282.133333pt;}
.xc5_c00077{left:283.200000pt;}
.x3e_c00077{left:285.466667pt;}
.x15_c00077{left:286.800000pt;}
.x39_c00077{left:288.133333pt;}
.xd5_c00077{left:289.333333pt;}
.xcd_c00077{left:290.666667pt;}
.xf7_c00077{left:291.600000pt;}
.xad_c00077{left:294.666667pt;}
.xfe_c00077{left:297.200000pt;}
.xc8_c00077{left:298.266667pt;}
.x33_c00077{left:299.466667pt;}
.xe8_c00077{left:300.666667pt;}
.xd_c00077{left:302.400000pt;}
.x21_c00077{left:304.000000pt;}
.xc6_c00077{left:305.600000pt;}
.xe0_c00077{left:306.933333pt;}
.x4a_c00077{left:308.266667pt;}
.xcc_c00077{left:309.600000pt;}
.x5_c00077{left:310.666667pt;}
.x2a_c00077{left:312.400000pt;}
.x106_c00077{left:313.600000pt;}
.x1d_c00077{left:314.800000pt;}
.x34_c00077{left:317.333333pt;}
.x47_c00077{left:319.466667pt;}
.x104_c00077{left:321.200000pt;}
.xf2_c00077{left:322.400000pt;}
.x3a_c00077{left:323.333333pt;}
.xd2_c00077{left:324.266667pt;}
.xce_c00077{left:325.866667pt;}
.x22_c00077{left:327.066667pt;}
.xda_c00077{left:328.133333pt;}
.x35_c00077{left:330.800000pt;}
.xee_c00077{left:331.866667pt;}
.x2e_c00077{left:332.800000pt;}
.xe_c00077{left:334.133333pt;}
.x6_c00077{left:336.000000pt;}
.xd6_c00077{left:337.600000pt;}
.x4e_c00077{left:339.200000pt;}
.xdb_c00077{left:341.866667pt;}
.x3f_c00077{left:342.800000pt;}
.xd8_c00077{left:344.400000pt;}
.xe1_c00077{left:345.733333pt;}
.xbf_c00077{left:350.800000pt;}
.xcf_c00077{left:351.733333pt;}
.x108_c00077{left:354.133333pt;}
.x2f_c00077{left:355.466667pt;}
.xe5_c00077{left:357.333333pt;}
.xd7_c00077{left:358.400000pt;}
.xc9_c00077{left:359.466667pt;}
.xf_c00077{left:361.333333pt;}
.xd1_c00077{left:362.933333pt;}
.x2_c00077{left:363.866667pt;}
.x105_c00077{left:365.333333pt;}
.x16_c00077{left:367.466667pt;}
.x36_c00077{left:369.466667pt;}
.xe9_c00077{left:371.333333pt;}
.xf3_c00077{left:372.933333pt;}
.x4f_c00077{left:374.133333pt;}
.xca_c00077{left:375.466667pt;}
.xdc_c00077{left:376.400000pt;}
.x3b_c00077{left:378.000000pt;}
.x23_c00077{left:379.866667pt;}
.x17_c00077{left:382.800000pt;}
.x7_c00077{left:384.000000pt;}
.x10a_c00077{left:386.400000pt;}
.xd3_c00077{left:388.533333pt;}
.x10_c00077{left:389.466667pt;}
.x4b_c00077{left:391.466667pt;}
.x50_c00077{left:393.066667pt;}
.x2b_c00077{left:394.000000pt;}
.xf9_c00077{left:395.733333pt;}
.x45_c00077{left:397.600000pt;}
.x18_c00077{left:399.733333pt;}
.x3c_c00077{left:400.666667pt;}
.xf4_c00077{left:402.666667pt;}
.x2c_c00077{left:405.866667pt;}
.x37_c00077{left:407.600000pt;}
.x30_c00077{left:409.200000pt;}
.xfa_c00077{left:410.133333pt;}
.x11_c00077{left:412.533333pt;}
.x40_c00077{left:413.866667pt;}
.x48_c00077{left:414.800000pt;}
.x4c_c00077{left:416.800000pt;}
.xf6_c00077{left:418.933333pt;}
.x100_c00077{left:421.200000pt;}
.x24_c00077{left:423.066667pt;}
.x1e_c00077{left:425.200000pt;}
.xae_c00077{left:426.533333pt;}
.x103_c00077{left:427.733333pt;}
.x27_c00077{left:429.866667pt;}
.x51_c00077{left:432.400000pt;}
.x3d_c00077{left:434.000000pt;}
.x8_c00077{left:435.866667pt;}
.x25_c00077{left:437.466667pt;}
.xfc_c00077{left:438.400000pt;}
.xe2_c00077{left:439.333333pt;}
.x109_c00077{left:444.666667pt;}
.x2d_c00077{left:446.800000pt;}
.xfb_c00077{left:448.800000pt;}
.x82_c00077{left:467.866667pt;}
.xc2_c00077{left:469.466667pt;}
.x149_c00077{left:470.666667pt;}
.x12a_c00077{left:481.866667pt;}
.x9d_c00077{left:482.933333pt;}
.x52_c00077{left:483.866667pt;}
.x115_c00077{left:484.800000pt;}
.x140_c00077{left:485.866667pt;}
.x7b_c00077{left:498.000000pt;}
.x11f_c00077{left:499.866667pt;}
.xc3_c00077{left:500.800000pt;}
.x141_c00077{left:502.400000pt;}
.x12f_c00077{left:504.266667pt;}
.x9e_c00077{left:505.333333pt;}
.x11c_c00077{left:506.800000pt;}
.x53_c00077{left:508.800000pt;}
.x74_c00077{left:511.733333pt;}
.x5a_c00077{left:513.600000pt;}
.x117_c00077{left:514.933333pt;}
.x11a_c00077{left:519.200000pt;}
.x7c_c00077{left:520.133333pt;}
.x87_c00077{left:521.200000pt;}
.x83_c00077{left:522.266667pt;}
.xb5_c00077{left:523.200000pt;}
.xa6_c00077{left:526.000000pt;}
.x123_c00077{left:526.933333pt;}
.x66_c00077{left:529.333333pt;}
.x5b_c00077{left:530.533333pt;}
.x93_c00077{left:532.400000pt;}
.x6d_c00077{left:533.466667pt;}
.x9f_c00077{left:534.800000pt;}
.x61_c00077{left:536.533333pt;}
.x120_c00077{left:537.600000pt;}
.x7d_c00077{left:539.066667pt;}
.x88_c00077{left:540.400000pt;}
.x13c_c00077{left:542.266667pt;}
.x12e_c00077{left:543.333333pt;}
.xa3_c00077{left:549.733333pt;}
.x147_c00077{left:551.466667pt;}
.x67_c00077{left:553.600000pt;}
.x124_c00077{left:555.466667pt;}
.x10c_c00077{left:557.733333pt;}
.x6a_c00077{left:558.666667pt;}
.x54_c00077{left:560.666667pt;}
.x11d_c00077{left:564.133333pt;}
.x5c_c00077{left:565.066667pt;}
.x94_c00077{left:566.000000pt;}
.xb6_c00077{left:568.000000pt;}
.x145_c00077{left:569.333333pt;}
.x7e_c00077{left:572.400000pt;}
.x13d_c00077{left:573.333333pt;}
.x121_c00077{left:574.666667pt;}
.x125_c00077{left:577.200000pt;}
.x6e_c00077{left:578.266667pt;}
.x95_c00077{left:579.466667pt;}
.x7f_c00077{left:580.400000pt;}
.x55_c00077{left:582.400000pt;}
.x75_c00077{left:583.333333pt;}
.x112_c00077{left:585.866667pt;}
.x8c_c00077{left:586.800000pt;}
.x13e_c00077{left:588.666667pt;}
.x10d_c00077{left:591.333333pt;}
.x136_c00077{left:593.600000pt;}
.x14a_c00077{left:594.800000pt;}
.x130_c00077{left:596.133333pt;}
.x76_c00077{left:597.066667pt;}
.x56_c00077{left:598.133333pt;}
.x6b_c00077{left:599.333333pt;}
.xa7_c00077{left:600.533333pt;}
.x144_c00077{left:602.266667pt;}
.x118_c00077{left:603.200000pt;}
.xb7_c00077{left:604.533333pt;}
.xa4_c00077{left:606.400000pt;}
.x10e_c00077{left:608.000000pt;}
.x142_c00077{left:609.466667pt;}
.x11b_c00077{left:611.066667pt;}
.x8d_c00077{left:612.666667pt;}
.x5d_c00077{left:614.933333pt;}
.x10f_c00077{left:616.933333pt;}
.x68_c00077{left:618.533333pt;}
.x6f_c00077{left:619.600000pt;}
.x89_c00077{left:621.066667pt;}
.x132_c00077{left:624.400000pt;}
.x62_c00077{left:625.866667pt;}
.x96_c00077{left:627.200000pt;}
.x10b_c00077{left:628.800000pt;}
.x138_c00077{left:630.266667pt;}
.x8e_c00077{left:631.600000pt;}
.xa0_c00077{left:634.000000pt;}
.x143_c00077{left:635.200000pt;}
.x57_c00077{left:636.800000pt;}
.x80_c00077{left:638.266667pt;}
.x122_c00077{left:639.333333pt;}
.x70_c00077{left:641.066667pt;}
.xc0_c00077{left:642.266667pt;}
.x77_c00077{left:646.000000pt;}
.x133_c00077{left:648.400000pt;}
.xa8_c00077{left:649.866667pt;}
.x84_c00077{left:650.933333pt;}
.xb8_c00077{left:651.866667pt;}
.x97_c00077{left:654.400000pt;}
.x81_c00077{left:655.866667pt;}
.x63_c00077{left:657.600000pt;}
.x5e_c00077{left:659.466667pt;}
.x85_c00077{left:661.200000pt;}
.xa1_c00077{left:662.133333pt;}
.x131_c00077{left:663.733333pt;}
.x8f_c00077{left:665.466667pt;}
.x9b_c00077{left:666.666667pt;}
.x148_c00077{left:667.866667pt;}
.x8a_c00077{left:669.066667pt;}
.x12b_c00077{left:671.333333pt;}
.x139_c00077{left:672.933333pt;}
.x71_c00077{left:674.000000pt;}
.x137_c00077{left:676.533333pt;}
.xa9_c00077{left:677.733333pt;}
.x110_c00077{left:679.600000pt;}
.x113_c00077{left:682.533333pt;}
.x5f_c00077{left:683.733333pt;}
.x90_c00077{left:684.666667pt;}
.x126_c00077{left:686.266667pt;}
.x13a_c00077{left:687.333333pt;}
.x78_c00077{left:689.200000pt;}
.x134_c00077{left:690.933333pt;}
.x98_c00077{left:692.533333pt;}
.x86_c00077{left:696.133333pt;}
.x64_c00077{left:698.533333pt;}
.x58_c00077{left:701.066667pt;}
.x127_c00077{left:702.000000pt;}
.x79_c00077{left:704.533333pt;}
.xa2_c00077{left:707.866667pt;}
.x72_c00077{left:709.466667pt;}
.x91_c00077{left:713.466667pt;}
.x12c_c00077{left:716.133333pt;}
.x9c_c00077{left:717.200000pt;}
.x6c_c00077{left:718.400000pt;}
.x111_c00077{left:719.600000pt;}
.x59_c00077{left:720.533333pt;}
.x8b_c00077{left:722.133333pt;}
.x146_c00077{left:723.333333pt;}
.x135_c00077{left:725.466667pt;}
.x11e_c00077{left:726.800000pt;}
.x73_c00077{left:727.733333pt;}
.xb9_c00077{left:730.533333pt;}
.x128_c00077{left:731.733333pt;}
.x119_c00077{left:733.200000pt;}
.x92_c00077{left:734.933333pt;}
.x114_c00077{left:736.933333pt;}
.xa5_c00077{left:738.000000pt;}
.x99_c00077{left:738.933333pt;}
.xaa_c00077{left:742.000000pt;}
.x13f_c00077{left:743.200000pt;}
.x60_c00077{left:744.533333pt;}
.xba_c00077{left:746.533333pt;}
.x69_c00077{left:749.733333pt;}
.x7a_c00077{left:751.866667pt;}
.x65_c00077{left:755.200000pt;}
.x9a_c00077{left:756.800000pt;}
.x116_c00077{left:758.133333pt;}
.x12d_c00077{left:760.000000pt;}
.x13b_c00077{left:761.200000pt;}
.x129_c00077{left:766.933333pt;}
.xbb_c00077{left:770.800000pt;}
.xab_c00077{left:775.866667pt;}
}





/* 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_c00078 {
    display:none;
  }
  .loading-indicator_c00078.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00078 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_c00078 { 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_c00078" -> "#page-container .classname_c00078")
 */
.pf_c00078 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00078 { /* 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_c00078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00078 { /* 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_c00078 { /* 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_c00078 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00078 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00078 {overflow:visible;}
  }
}
.c_c00078 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00078 { /* 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_c00078:after { /* webkit #35443 */
  content: '';
}
.t_c00078:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00078 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 */
}
.__c00078 { /* 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_c00078 { /* info for Javascript */
  display:none;
}
.l_c00078 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00078 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00078 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00078: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_c00078 {
    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_c00078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00078.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_c00078 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00078;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00078{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00078{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m110_c00078{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m117_c00078{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m34_c00078{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00078{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m115_c00078{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00078{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00078{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mec_c00078{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m116_c00078{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m99_c00078{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m78_c00078{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m112_c00078{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00078{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00078{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m81_c00078{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00078{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00078{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m50_c00078{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00078{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00078{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m35_c00078{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mee_c00078{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m10_c00078{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.me0_c00078{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00078{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mf_c00078{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m76_c00078{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00078{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m37_c00078{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.med_c00078{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00078{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.me_c00078{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m109_c00078{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.me5_c00078{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m67_c00078{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00078{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00078{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00078{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m80_c00078{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m128_c00078{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00078{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m20_c00078{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mad_c00078{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4_c00078{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m98_c00078{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma_c00078{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m54_c00078{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m85_c00078{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mda_c00078{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m87_c00078{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m96_c00078{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m97_c00078{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m29_c00078{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc_c00078{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m89_c00078{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m111_c00078{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mde_c00078{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00078{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00078{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m90_c00078{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00078{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m21_c00078{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m31_c00078{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00078{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mce_c00078{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00078{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00078{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00078{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00078{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m82_c00078{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m13_c00078{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00078{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00078{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m120_c00078{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00078{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m92_c00078{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00078{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00078{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00078{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me1_c00078{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mca_c00078{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m107_c00078{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00078{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m36_c00078{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me9_c00078{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m14_c00078{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00078{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00078{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m27_c00078{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m83_c00078{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m94_c00078{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5_c00078{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00078{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00078{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00078{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00078{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb_c00078{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mba_c00078{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00078{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00078{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9_c00078{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md5_c00078{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00078{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00078{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00078{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00078{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m7_c00078{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maf_c00078{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6_c00078{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00078{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00078{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00078{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.md_c00078{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00078{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m64_c00078{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00078{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mac_c00078{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00078{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00078{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me2_c00078{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00078{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00078{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m30_c00078{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00078{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00078{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00078{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m18_c00078{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m84_c00078{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m25_c00078{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00078{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m65_c00078{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00078{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me8_c00078{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00078{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m93_c00078{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m28_c00078{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m44_c00078{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m126_c00078{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00078{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m106_c00078{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.md7_c00078{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00078{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00078{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00078{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md6_c00078{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mff_c00078{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m103_c00078{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m124_c00078{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m48_c00078{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00078{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m32_c00078{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m127_c00078{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00078{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.md8_c00078{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mae_c00078{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00078{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m105_c00078{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m15_c00078{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m104_c00078{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mab_c00078{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m24_c00078{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m66_c00078{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m91_c00078{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00078{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m40_c00078{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m79_c00078{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00078{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00078{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00078{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me6_c00078{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00078{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00078{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m58_c00078{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00078{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m88_c00078{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m46_c00078{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m12_c00078{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00078{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00078{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00078{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m33_c00078{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m47_c00078{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m118_c00078{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00078{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m45_c00078{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m38_c00078{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m43_c00078{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00078{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mef_c00078{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00078{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00078{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m53_c00078{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00078{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m63_c00078{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00078{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m69_c00078{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me4_c00078{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m8_c00078{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00078{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m41_c00078{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m68_c00078{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00078{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00078{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00078{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m26_c00078{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md0_c00078{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m123_c00078{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00078{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m62_c00078{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m52_c00078{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m73_c00078{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m42_c00078{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00078{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m102_c00078{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00078{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m17_c00078{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m39_c00078{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00078{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m86_c00078{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m74_c00078{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00078{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m101_c00078{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00078{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m61_c00078{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00078{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00078{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m114_c00078{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00078{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md2_c00078{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00078{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00078{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m95_c00078{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00078{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m125_c00078{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m108_c00078{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00078{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md4_c00078{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00078{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00078{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00078{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00078{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me7_c00078{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00078{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00078{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00078{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m16_c00078{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m55_c00078{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m60_c00078{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00078{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00078{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.md1_c00078{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m121_c00078{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m122_c00078{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m100_c00078{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00078{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md3_c00078{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00078{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.maa_c00078{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m113_c00078{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mea_c00078{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m19_c00078{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m56_c00078{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00078{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m57_c00078{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00078{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m23_c00078{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00078{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00078{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m77_c00078{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00078{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m59_c00078{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.meb_c00078{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00078{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m51_c00078{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00078{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m49_c00078{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00078{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.me3_c00078{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m22_c00078{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md9_c00078{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00078{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00078{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00078{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m72_c00078{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m119_c00078{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00078{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.m0_c00078{transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00078{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m11_c00078{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00078{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m75_c00078{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.m71_c00078{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m70_c00078{transform:matrix(0.664000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664000,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls1_c00078{letter-spacing:0.000000px;}
.ls0_c00078{letter-spacing:89.683119px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{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__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00078{word-spacing:-116.683119px;}
.ws1_c00078{word-spacing:-13.750000px;}
.ws0_c00078{word-spacing:-8.355850px;}
.ws5_c00078{word-spacing:0.000000px;}
.ws2_c00078{word-spacing:8.000000px;}
.ws3_c00078{word-spacing:32.250000px;}
._2_c00078{margin-left:-89.683119px;}
._1_c00078{width:63.000000px;}
._0_c00078{width:66.750000px;}
.fc0_c00078{color:transparent;}
.fs6_c00078{font-size:24.000000px;}
.fs5_c00078{font-size:30.000000px;}
.fs1_c00078{font-size:48.000000px;}
.fs7_c00078{font-size:54.000000px;}
.fs4_c00078{font-size:60.000000px;}
.fs3_c00078{font-size:66.000000px;}
.fs2_c00078{font-size:72.000000px;}
.fs0_c00078{font-size:84.000000px;}
.y0_c00078{bottom:0.000000px;}
.y2_c00078{bottom:37.800000px;}
.y6c_c00078{bottom:184.050000px;}
.y37_c00078{bottom:184.950000px;}
.y36_c00078{bottom:200.100000px;}
.y6b_c00078{bottom:202.350000px;}
.y35_c00078{bottom:214.500000px;}
.y6a_c00078{bottom:220.650000px;}
.y34_c00078{bottom:228.900000px;}
.y69_c00078{bottom:238.650000px;}
.y33_c00078{bottom:243.000000px;}
.y68_c00078{bottom:256.650000px;}
.y67_c00078{bottom:277.500000px;}
.y32_c00078{bottom:279.750000px;}
.y66_c00078{bottom:291.600000px;}
.y31_c00078{bottom:301.650000px;}
.y65_c00078{bottom:306.750000px;}
.y30_c00078{bottom:320.400000px;}
.y64_c00078{bottom:320.700000px;}
.y63_c00078{bottom:335.100000px;}
.y2f_c00078{bottom:342.750000px;}
.y62_c00078{bottom:349.500000px;}
.y61_c00078{bottom:363.900000px;}
.y2e_c00078{bottom:365.400000px;}
.y60_c00078{bottom:378.300000px;}
.y2d_c00078{bottom:383.400000px;}
.y5f_c00078{bottom:392.700000px;}
.y2c_c00078{bottom:401.400000px;}
.y5e_c00078{bottom:407.100000px;}
.y2b_c00078{bottom:419.100000px;}
.y5d_c00078{bottom:421.500000px;}
.y5c_c00078{bottom:435.900000px;}
.y2a_c00078{bottom:437.100000px;}
.y5b_c00078{bottom:456.750000px;}
.y29_c00078{bottom:458.850000px;}
.y5a_c00078{bottom:474.750000px;}
.y28_c00078{bottom:476.850000px;}
.y59_c00078{bottom:492.450000px;}
.y27_c00078{bottom:494.550000px;}
.y26_c00078{bottom:512.550000px;}
.y58_c00078{bottom:514.650000px;}
.y25_c00078{bottom:530.250000px;}
.y57_c00078{bottom:532.650000px;}
.y56_c00078{bottom:550.350000px;}
.y24_c00078{bottom:552.900000px;}
.y55_c00078{bottom:568.350000px;}
.y23_c00078{bottom:570.600000px;}
.y54_c00078{bottom:586.350000px;}
.y22_c00078{bottom:588.600000px;}
.y53_c00078{bottom:604.350000px;}
.y21_c00078{bottom:608.400000px;}
.y20_c00078{bottom:616.350000px;}
.y52_c00078{bottom:622.050000px;}
.y1f_c00078{bottom:633.300000px;}
.y1e_c00078{bottom:635.100000px;}
.y51_c00078{bottom:640.050000px;}
.y1d_c00078{bottom:643.350000px;}
.y1a_c00078{bottom:646.500000px;}
.y1c_c00078{bottom:648.750000px;}
.y1b_c00078{bottom:650.850000px;}
.y50_c00078{bottom:661.950000px;}
.y19_c00078{bottom:667.050000px;}
.y4f_c00078{bottom:679.650000px;}
.y18_c00078{bottom:688.950000px;}
.y4e_c00078{bottom:706.050000px;}
.y17_c00078{bottom:711.300000px;}
.y4d_c00078{bottom:724.350000px;}
.y16_c00078{bottom:733.650000px;}
.y4c_c00078{bottom:746.700000px;}
.y15_c00078{bottom:756.000000px;}
.y4b_c00078{bottom:764.700000px;}
.y14_c00078{bottom:777.900000px;}
.y4a_c00078{bottom:787.200000px;}
.y13_c00078{bottom:804.600000px;}
.y49_c00078{bottom:804.900000px;}
.y48_c00078{bottom:822.900000px;}
.y12_c00078{bottom:836.250000px;}
.y47_c00078{bottom:840.900000px;}
.y46_c00078{bottom:858.900000px;}
.y11_c00078{bottom:859.350000px;}
.y45_c00078{bottom:876.600000px;}
.y10_c00078{bottom:877.350000px;}
.y44_c00078{bottom:894.600000px;}
.yf_c00078{bottom:895.350000px;}
.y43_c00078{bottom:916.500000px;}
.ye_c00078{bottom:917.550000px;}
.y42_c00078{bottom:934.500000px;}
.yd_c00078{bottom:951.450000px;}
.y41_c00078{bottom:952.500000px;}
.yc_c00078{bottom:953.250000px;}
.y40_c00078{bottom:970.200000px;}
.yb_c00078{bottom:971.250000px;}
.y3f_c00078{bottom:988.200000px;}
.ya_c00078{bottom:991.500000px;}
.y9_c00078{bottom:1006.200000px;}
.y3e_c00078{bottom:1006.500000px;}
.y8_c00078{bottom:1020.900000px;}
.y3d_c00078{bottom:1024.200000px;}
.y7_c00078{bottom:1041.450000px;}
.y3c_c00078{bottom:1041.900000px;}
.y3b_c00078{bottom:1060.200000px;}
.y6_c00078{bottom:1063.800000px;}
.y3a_c00078{bottom:1077.900000px;}
.y5_c00078{bottom:1081.800000px;}
.y39_c00078{bottom:1095.900000px;}
.y4_c00078{bottom:1099.800000px;}
.y38_c00078{bottom:1114.200000px;}
.y3_c00078{bottom:1117.500000px;}
.y1_c00078{bottom:1142.250000px;}
.h8_c00078{height:24.000000px;}
.h7_c00078{height:30.000000px;}
.h3_c00078{height:48.000000px;}
.h9_c00078{height:54.000000px;}
.h6_c00078{height:60.000000px;}
.h5_c00078{height:66.000000px;}
.h4_c00078{height:72.000000px;}
.h2_c00078{height:84.000000px;}
.h1_c00078{height:1270.500000px;}
.h0_c00078{height:1270.799927px;}
.w0_c00078{width:948.600036px;}
.w1_c00078{width:948.750000px;}
.x0_c00078{left:0.000000px;}
.x3_c00078{left:13.650000px;}
.x8b_c00078{left:72.450000px;}
.x62_c00078{left:73.800000px;}
.x50_c00078{left:75.900000px;}
.x1e_c00078{left:77.700000px;}
.x89_c00078{left:88.950000px;}
.x85_c00078{left:91.500000px;}
.x2a_c00078{left:93.450000px;}
.x68_c00078{left:95.100000px;}
.xa_c00078{left:96.750000px;}
.x19_c00078{left:97.950000px;}
.x4c_c00078{left:99.450000px;}
.x91_c00078{left:102.750000px;}
.x94_c00078{left:104.250000px;}
.x8c_c00078{left:109.200000px;}
.x31_c00078{left:110.400000px;}
.x5d_c00078{left:114.150000px;}
.x55_c00078{left:115.200000px;}
.x59_c00078{left:116.250000px;}
.x4_c00078{left:117.300000px;}
.x63_c00078{left:118.500000px;}
.x5e_c00078{left:124.500000px;}
.x1f_c00078{left:126.000000px;}
.x69_c00078{left:128.250000px;}
.x32_c00078{left:132.750000px;}
.x6b_c00078{left:135.150000px;}
.x1a_c00078{left:139.650000px;}
.x22_c00078{left:141.000000px;}
.xb_c00078{left:142.800000px;}
.x4d_c00078{left:147.300000px;}
.x33_c00078{left:151.500000px;}
.x2b_c00078{left:152.850000px;}
.x3c_c00078{left:155.100000px;}
.x7f_c00078{left:157.350000px;}
.x38_c00078{left:158.850000px;}
.x5_c00078{left:160.500000px;}
.x1b_c00078{left:162.300000px;}
.x8d_c00078{left:164.250000px;}
.x34_c00078{left:165.900000px;}
.x46_c00078{left:167.850000px;}
.x56_c00078{left:169.200000px;}
.x82_c00078{left:170.700000px;}
.x36_c00078{left:171.750000px;}
.x43_c00078{left:174.300000px;}
.xc_c00078{left:175.950000px;}
.x51_c00078{left:177.450000px;}
.x3d_c00078{left:178.500000px;}
.x23_c00078{left:182.100000px;}
.x8a_c00078{left:183.300000px;}
.x7d_c00078{left:184.350000px;}
.x54_c00078{left:185.850000px;}
.x52_c00078{left:187.200000px;}
.x20_c00078{left:190.500000px;}
.x44_c00078{left:192.300000px;}
.x13_c00078{left:193.650000px;}
.x39_c00078{left:198.750000px;}
.x6_c00078{left:201.150000px;}
.x70_c00078{left:202.950000px;}
.x76_c00078{left:204.300000px;}
.xd_c00078{left:205.500000px;}
.x86_c00078{left:206.700000px;}
.x57_c00078{left:212.100000px;}
.x35_c00078{left:214.800000px;}
.x5a_c00078{left:216.000000px;}
.x3e_c00078{left:217.050000px;}
.x72_c00078{left:218.850000px;}
.x6c_c00078{left:220.500000px;}
.x14_c00078{left:222.150000px;}
.x7e_c00078{left:223.200000px;}
.x8e_c00078{left:225.750000px;}
.x24_c00078{left:228.900000px;}
.x7a_c00078{left:231.750000px;}
.x7_c00078{left:234.600000px;}
.x95_c00078{left:235.650000px;}
.x6d_c00078{left:236.850000px;}
.x21_c00078{left:239.100000px;}
.x15_c00078{left:242.700000px;}
.x53_c00078{left:244.800000px;}
.x45_c00078{left:246.000000px;}
.x7b_c00078{left:247.950000px;}
.x5f_c00078{left:249.900000px;}
.x47_c00078{left:251.400000px;}
.x3a_c00078{left:253.050000px;}
.x2c_c00078{left:254.400000px;}
.x80_c00078{left:257.100000px;}
.xe_c00078{left:258.750000px;}
.x3f_c00078{left:262.800000px;}
.x64_c00078{left:265.350000px;}
.x16_c00078{left:267.150000px;}
.x58_c00078{left:268.200000px;}
.x48_c00078{left:269.700000px;}
.x25_c00078{left:271.350000px;}
.x87_c00078{left:274.050000px;}
.x6e_c00078{left:277.500000px;}
.x73_c00078{left:278.550000px;}
.x81_c00078{left:280.200000px;}
.x77_c00078{left:282.450000px;}
.x2d_c00078{left:284.250000px;}
.x6a_c00078{left:285.300000px;}
.x26_c00078{left:287.550000px;}
.x96_c00078{left:290.100000px;}
.x8f_c00078{left:291.750000px;}
.xf_c00078{left:296.550000px;}
.x1c_c00078{left:298.200000px;}
.x40_c00078{left:299.550000px;}
.x92_c00078{left:304.650000px;}
.x78_c00078{left:306.150000px;}
.x60_c00078{left:307.800000px;}
.x49_c00078{left:309.300000px;}
.x37_c00078{left:311.850000px;}
.x5b_c00078{left:314.250000px;}
.x10_c00078{left:315.300000px;}
.x65_c00078{left:316.500000px;}
.x74_c00078{left:318.450000px;}
.x27_c00078{left:320.250000px;}
.x41_c00078{left:322.950000px;}
.x1d_c00078{left:324.150000px;}
.x1_c00078{left:326.100000px;}
.x2e_c00078{left:330.000000px;}
.x4a_c00078{left:332.400000px;}
.x17_c00078{left:334.500000px;}
.x4e_c00078{left:335.550000px;}
.x28_c00078{left:341.550000px;}
.x90_c00078{left:343.950000px;}
.x8_c00078{left:346.950000px;}
.x11_c00078{left:350.550000px;}
.x66_c00078{left:351.750000px;}
.x3b_c00078{left:353.550000px;}
.x93_c00078{left:357.300000px;}
.x88_c00078{left:360.450000px;}
.x4b_c00078{left:363.300000px;}
.x5c_c00078{left:364.650000px;}
.x83_c00078{left:369.750000px;}
.x29_c00078{left:372.150000px;}
.x67_c00078{left:374.850000px;}
.x42_c00078{left:376.200000px;}
.x2f_c00078{left:378.600000px;}
.x18_c00078{left:382.050000px;}
.x7c_c00078{left:384.600000px;}
.x75_c00078{left:387.600000px;}
.x9_c00078{left:389.100000px;}
.x84_c00078{left:391.050000px;}
.x4f_c00078{left:392.100000px;}
.x6f_c00078{left:394.500000px;}
.x79_c00078{left:402.300000px;}
.x30_c00078{left:405.300000px;}
.x12_c00078{left:406.350000px;}
.x71_c00078{left:412.800000px;}
.x61_c00078{left:416.100000px;}
.x116_c00078{left:438.150000px;}
.x10c_c00078{left:439.200000px;}
.xc9_c00078{left:442.050000px;}
.x125_c00078{left:451.500000px;}
.x11b_c00078{left:452.550000px;}
.x101_c00078{left:456.300000px;}
.xf8_c00078{left:457.650000px;}
.xf0_c00078{left:458.700000px;}
.xd1_c00078{left:459.900000px;}
.xb4_c00078{left:461.250000px;}
.x97_c00078{left:462.600000px;}
.xba_c00078{left:464.250000px;}
.x120_c00078{left:467.400000px;}
.xea_c00078{left:469.050000px;}
.xed_c00078{left:474.150000px;}
.xf1_c00078{left:476.700000px;}
.xc3_c00078{left:478.800000px;}
.xa3_c00078{left:480.900000px;}
.x98_c00078{left:483.150000px;}
.x10d_c00078{left:484.950000px;}
.x127_c00078{left:488.100000px;}
.xfc_c00078{left:489.150000px;}
.x9e_c00078{left:492.450000px;}
.xd2_c00078{left:497.400000px;}
.x107_c00078{left:501.000000px;}
.x10b_c00078{left:502.050000px;}
.x111_c00078{left:504.000000px;}
.xca_c00078{left:505.050000px;}
.xd9_c00078{left:506.550000px;}
.xa9_c00078{left:508.050000px;}
.xe2_c00078{left:509.100000px;}
.xa4_c00078{left:511.200000px;}
.x114_c00078{left:512.400000px;}
.xaa_c00078{left:513.450000px;}
.xc4_c00078{left:514.500000px;}
.x12a_c00078{left:516.900000px;}
.xeb_c00078{left:518.250000px;}
.xad_c00078{left:523.050000px;}
.x12b_c00078{left:524.100000px;}
.xda_c00078{left:526.050000px;}
.x9f_c00078{left:527.400000px;}
.x108_c00078{left:529.500000px;}
.x12c_c00078{left:531.000000px;}
.xd3_c00078{left:533.700000px;}
.x99_c00078{left:536.400000px;}
.xf2_c00078{left:538.200000px;}
.xbd_c00078{left:539.700000px;}
.xb5_c00078{left:541.500000px;}
.xc5_c00078{left:543.000000px;}
.xe3_c00078{left:546.900000px;}
.x132_c00078{left:548.700000px;}
.x128_c00078{left:550.800000px;}
.x103_c00078{left:551.850000px;}
.xae_c00078{left:553.350000px;}
.xd4_c00078{left:555.300000px;}
.xcb_c00078{left:556.950000px;}
.xbb_c00078{left:558.000000px;}
.xf3_c00078{left:559.500000px;}
.xfd_c00078{left:561.150000px;}
.xde_c00078{left:562.800000px;}
.x115_c00078{left:565.200000px;}
.x12e_c00078{left:568.200000px;}
.xb6_c00078{left:569.250000px;}
.xe4_c00078{left:572.100000px;}
.xa5_c00078{left:574.950000px;}
.x9a_c00078{left:576.750000px;}
.xab_c00078{left:577.950000px;}
.x121_c00078{left:579.750000px;}
.x104_c00078{left:580.950000px;}
.xf9_c00078{left:582.150000px;}
.xf4_c00078{left:584.400000px;}
.xbe_c00078{left:586.500000px;}
.xe7_c00078{left:588.300000px;}
.xc6_c00078{left:589.500000px;}
.xee_c00078{left:590.850000px;}
.xa0_c00078{left:592.200000px;}
.x112_c00078{left:594.450000px;}
.x117_c00078{left:598.350000px;}
.xdf_c00078{left:603.150000px;}
.xac_c00078{left:605.700000px;}
.xf5_c00078{left:607.500000px;}
.xa1_c00078{left:609.900000px;}
.xd5_c00078{left:612.150000px;}
.x11c_c00078{left:613.800000px;}
.x131_c00078{left:616.050000px;}
.xa6_c00078{left:619.200000px;}
.xaf_c00078{left:620.700000px;}
.xe5_c00078{left:622.500000px;}
.xdb_c00078{left:624.300000px;}
.x11d_c00078{left:627.000000px;}
.xb7_c00078{left:629.400000px;}
.xf6_c00078{left:633.000000px;}
.x130_c00078{left:635.100000px;}
.xce_c00078{left:637.050000px;}
.x109_c00078{left:638.250000px;}
.xbf_c00078{left:640.500000px;}
.xd6_c00078{left:644.850000px;}
.x118_c00078{left:646.650000px;}
.x133_c00078{left:649.500000px;}
.x10e_c00078{left:650.850000px;}
.x124_c00078{left:652.350000px;}
.xcc_c00078{left:653.850000px;}
.xec_c00078{left:655.500000px;}
.xe8_c00078{left:656.700000px;}
.xc0_c00078{left:657.750000px;}
.xd7_c00078{left:659.250000px;}
.xb0_c00078{left:660.300000px;}
.x129_c00078{left:661.350000px;}
.xb8_c00078{left:662.550000px;}
.x12f_c00078{left:663.900000px;}
.xe0_c00078{left:665.400000px;}
.xfe_c00078{left:668.100000px;}
.x122_c00078{left:669.300000px;}
.x11e_c00078{left:670.350000px;}
.xfa_c00078{left:673.200000px;}
.xa7_c00078{left:674.700000px;}
.xb1_c00078{left:677.550000px;}
.xa2_c00078{left:678.600000px;}
.x10f_c00078{left:681.750000px;}
.x105_c00078{left:684.600000px;}
.xef_c00078{left:689.100000px;}
.xc7_c00078{left:690.300000px;}
.x119_c00078{left:695.250000px;}
.x9b_c00078{left:696.750000px;}
.xe6_c00078{left:699.000000px;}
.x102_c00078{left:700.800000px;}
.x123_c00078{left:703.050000px;}
.xf7_c00078{left:704.250000px;}
.xbc_c00078{left:707.400000px;}
.xcf_c00078{left:708.750000px;}
.xb9_c00078{left:710.400000px;}
.xc8_c00078{left:711.600000px;}
.x9c_c00078{left:716.250000px;}
.xdc_c00078{left:717.900000px;}
.xe1_c00078{left:720.150000px;}
.xc1_c00078{left:721.800000px;}
.xb2_c00078{left:723.300000px;}
.xfb_c00078{left:724.350000px;}
.x126_c00078{left:726.150000px;}
.xff_c00078{left:727.500000px;}
.xd0_c00078{left:729.600000px;}
.x12d_c00078{left:731.550000px;}
.x11f_c00078{left:732.750000px;}
.xe9_c00078{left:734.850000px;}
.x110_c00078{left:736.500000px;}
.x10a_c00078{left:740.100000px;}
.xc2_c00078{left:741.900000px;}
.xcd_c00078{left:743.550000px;}
.x106_c00078{left:744.750000px;}
.xa8_c00078{left:749.250000px;}
.xb3_c00078{left:754.950000px;}
.x9d_c00078{left:756.600000px;}
.xd8_c00078{left:758.250000px;}
.x11a_c00078{left:760.350000px;}
.x2_c00078{left:761.400000px;}
.xdd_c00078{left:766.200000px;}
.x100_c00078{left:767.400000px;}
.x113_c00078{left:770.850000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls1_c00078{letter-spacing:0.000000pt;}
.ls0_c00078{letter-spacing:79.718328pt;}
.ws4_c00078{word-spacing:-103.718328pt;}
.ws1_c00078{word-spacing:-12.222222pt;}
.ws0_c00078{word-spacing:-7.427423pt;}
.ws5_c00078{word-spacing:0.000000pt;}
.ws2_c00078{word-spacing:7.111111pt;}
.ws3_c00078{word-spacing:28.666667pt;}
._2_c00078{margin-left:-79.718328pt;}
._1_c00078{width:56.000000pt;}
._0_c00078{width:59.333333pt;}
.fs6_c00078{font-size:21.333333pt;}
.fs5_c00078{font-size:26.666667pt;}
.fs1_c00078{font-size:42.666667pt;}
.fs7_c00078{font-size:48.000000pt;}
.fs4_c00078{font-size:53.333333pt;}
.fs3_c00078{font-size:58.666667pt;}
.fs2_c00078{font-size:64.000000pt;}
.fs0_c00078{font-size:74.666667pt;}
.y0_c00078{bottom:0.000000pt;}
.y2_c00078{bottom:33.600000pt;}
.y6c_c00078{bottom:163.600000pt;}
.y37_c00078{bottom:164.400000pt;}
.y36_c00078{bottom:177.866667pt;}
.y6b_c00078{bottom:179.866667pt;}
.y35_c00078{bottom:190.666667pt;}
.y6a_c00078{bottom:196.133333pt;}
.y34_c00078{bottom:203.466667pt;}
.y69_c00078{bottom:212.133333pt;}
.y33_c00078{bottom:216.000000pt;}
.y68_c00078{bottom:228.133333pt;}
.y67_c00078{bottom:246.666667pt;}
.y32_c00078{bottom:248.666667pt;}
.y66_c00078{bottom:259.200000pt;}
.y31_c00078{bottom:268.133333pt;}
.y65_c00078{bottom:272.666667pt;}
.y30_c00078{bottom:284.800000pt;}
.y64_c00078{bottom:285.066667pt;}
.y63_c00078{bottom:297.866667pt;}
.y2f_c00078{bottom:304.666667pt;}
.y62_c00078{bottom:310.666667pt;}
.y61_c00078{bottom:323.466667pt;}
.y2e_c00078{bottom:324.800000pt;}
.y60_c00078{bottom:336.266667pt;}
.y2d_c00078{bottom:340.800000pt;}
.y5f_c00078{bottom:349.066667pt;}
.y2c_c00078{bottom:356.800000pt;}
.y5e_c00078{bottom:361.866667pt;}
.y2b_c00078{bottom:372.533333pt;}
.y5d_c00078{bottom:374.666667pt;}
.y5c_c00078{bottom:387.466667pt;}
.y2a_c00078{bottom:388.533333pt;}
.y5b_c00078{bottom:406.000000pt;}
.y29_c00078{bottom:407.866667pt;}
.y5a_c00078{bottom:422.000000pt;}
.y28_c00078{bottom:423.866667pt;}
.y59_c00078{bottom:437.733333pt;}
.y27_c00078{bottom:439.600000pt;}
.y26_c00078{bottom:455.600000pt;}
.y58_c00078{bottom:457.466667pt;}
.y25_c00078{bottom:471.333333pt;}
.y57_c00078{bottom:473.466667pt;}
.y56_c00078{bottom:489.200000pt;}
.y24_c00078{bottom:491.466667pt;}
.y55_c00078{bottom:505.200000pt;}
.y23_c00078{bottom:507.200000pt;}
.y54_c00078{bottom:521.200000pt;}
.y22_c00078{bottom:523.200000pt;}
.y53_c00078{bottom:537.200000pt;}
.y21_c00078{bottom:540.800000pt;}
.y20_c00078{bottom:547.866667pt;}
.y52_c00078{bottom:552.933333pt;}
.y1f_c00078{bottom:562.933333pt;}
.y1e_c00078{bottom:564.533333pt;}
.y51_c00078{bottom:568.933333pt;}
.y1d_c00078{bottom:571.866667pt;}
.y1a_c00078{bottom:574.666667pt;}
.y1c_c00078{bottom:576.666667pt;}
.y1b_c00078{bottom:578.533333pt;}
.y50_c00078{bottom:588.400000pt;}
.y19_c00078{bottom:592.933333pt;}
.y4f_c00078{bottom:604.133333pt;}
.y18_c00078{bottom:612.400000pt;}
.y4e_c00078{bottom:627.600000pt;}
.y17_c00078{bottom:632.266667pt;}
.y4d_c00078{bottom:643.866667pt;}
.y16_c00078{bottom:652.133333pt;}
.y4c_c00078{bottom:663.733333pt;}
.y15_c00078{bottom:672.000000pt;}
.y4b_c00078{bottom:679.733333pt;}
.y14_c00078{bottom:691.466667pt;}
.y4a_c00078{bottom:699.733333pt;}
.y13_c00078{bottom:715.200000pt;}
.y49_c00078{bottom:715.466667pt;}
.y48_c00078{bottom:731.466667pt;}
.y12_c00078{bottom:743.333333pt;}
.y47_c00078{bottom:747.466667pt;}
.y46_c00078{bottom:763.466667pt;}
.y11_c00078{bottom:763.866667pt;}
.y45_c00078{bottom:779.200000pt;}
.y10_c00078{bottom:779.866667pt;}
.y44_c00078{bottom:795.200000pt;}
.yf_c00078{bottom:795.866667pt;}
.y43_c00078{bottom:814.666667pt;}
.ye_c00078{bottom:815.600000pt;}
.y42_c00078{bottom:830.666667pt;}
.yd_c00078{bottom:845.733333pt;}
.y41_c00078{bottom:846.666667pt;}
.yc_c00078{bottom:847.333333pt;}
.y40_c00078{bottom:862.400000pt;}
.yb_c00078{bottom:863.333333pt;}
.y3f_c00078{bottom:878.400000pt;}
.ya_c00078{bottom:881.333333pt;}
.y9_c00078{bottom:894.400000pt;}
.y3e_c00078{bottom:894.666667pt;}
.y8_c00078{bottom:907.466667pt;}
.y3d_c00078{bottom:910.400000pt;}
.y7_c00078{bottom:925.733333pt;}
.y3c_c00078{bottom:926.133333pt;}
.y3b_c00078{bottom:942.400000pt;}
.y6_c00078{bottom:945.600000pt;}
.y3a_c00078{bottom:958.133333pt;}
.y5_c00078{bottom:961.600000pt;}
.y39_c00078{bottom:974.133333pt;}
.y4_c00078{bottom:977.600000pt;}
.y38_c00078{bottom:990.400000pt;}
.y3_c00078{bottom:993.333333pt;}
.y1_c00078{bottom:1015.333333pt;}
.h8_c00078{height:21.333333pt;}
.h7_c00078{height:26.666667pt;}
.h3_c00078{height:42.666667pt;}
.h9_c00078{height:48.000000pt;}
.h6_c00078{height:53.333333pt;}
.h5_c00078{height:58.666667pt;}
.h4_c00078{height:64.000000pt;}
.h2_c00078{height:74.666667pt;}
.h1_c00078{height:1129.333333pt;}
.h0_c00078{height:1129.599935pt;}
.w0_c00078{width:843.200032pt;}
.w1_c00078{width:843.333333pt;}
.x0_c00078{left:0.000000pt;}
.x3_c00078{left:12.133333pt;}
.x8b_c00078{left:64.400000pt;}
.x62_c00078{left:65.600000pt;}
.x50_c00078{left:67.466667pt;}
.x1e_c00078{left:69.066667pt;}
.x89_c00078{left:79.066667pt;}
.x85_c00078{left:81.333333pt;}
.x2a_c00078{left:83.066667pt;}
.x68_c00078{left:84.533333pt;}
.xa_c00078{left:86.000000pt;}
.x19_c00078{left:87.066667pt;}
.x4c_c00078{left:88.400000pt;}
.x91_c00078{left:91.333333pt;}
.x94_c00078{left:92.666667pt;}
.x8c_c00078{left:97.066667pt;}
.x31_c00078{left:98.133333pt;}
.x5d_c00078{left:101.466667pt;}
.x55_c00078{left:102.400000pt;}
.x59_c00078{left:103.333333pt;}
.x4_c00078{left:104.266667pt;}
.x63_c00078{left:105.333333pt;}
.x5e_c00078{left:110.666667pt;}
.x1f_c00078{left:112.000000pt;}
.x69_c00078{left:114.000000pt;}
.x32_c00078{left:118.000000pt;}
.x6b_c00078{left:120.133333pt;}
.x1a_c00078{left:124.133333pt;}
.x22_c00078{left:125.333333pt;}
.xb_c00078{left:126.933333pt;}
.x4d_c00078{left:130.933333pt;}
.x33_c00078{left:134.666667pt;}
.x2b_c00078{left:135.866667pt;}
.x3c_c00078{left:137.866667pt;}
.x7f_c00078{left:139.866667pt;}
.x38_c00078{left:141.200000pt;}
.x5_c00078{left:142.666667pt;}
.x1b_c00078{left:144.266667pt;}
.x8d_c00078{left:146.000000pt;}
.x34_c00078{left:147.466667pt;}
.x46_c00078{left:149.200000pt;}
.x56_c00078{left:150.400000pt;}
.x82_c00078{left:151.733333pt;}
.x36_c00078{left:152.666667pt;}
.x43_c00078{left:154.933333pt;}
.xc_c00078{left:156.400000pt;}
.x51_c00078{left:157.733333pt;}
.x3d_c00078{left:158.666667pt;}
.x23_c00078{left:161.866667pt;}
.x8a_c00078{left:162.933333pt;}
.x7d_c00078{left:163.866667pt;}
.x54_c00078{left:165.200000pt;}
.x52_c00078{left:166.400000pt;}
.x20_c00078{left:169.333333pt;}
.x44_c00078{left:170.933333pt;}
.x13_c00078{left:172.133333pt;}
.x39_c00078{left:176.666667pt;}
.x6_c00078{left:178.800000pt;}
.x70_c00078{left:180.400000pt;}
.x76_c00078{left:181.600000pt;}
.xd_c00078{left:182.666667pt;}
.x86_c00078{left:183.733333pt;}
.x57_c00078{left:188.533333pt;}
.x35_c00078{left:190.933333pt;}
.x5a_c00078{left:192.000000pt;}
.x3e_c00078{left:192.933333pt;}
.x72_c00078{left:194.533333pt;}
.x6c_c00078{left:196.000000pt;}
.x14_c00078{left:197.466667pt;}
.x7e_c00078{left:198.400000pt;}
.x8e_c00078{left:200.666667pt;}
.x24_c00078{left:203.466667pt;}
.x7a_c00078{left:206.000000pt;}
.x7_c00078{left:208.533333pt;}
.x95_c00078{left:209.466667pt;}
.x6d_c00078{left:210.533333pt;}
.x21_c00078{left:212.533333pt;}
.x15_c00078{left:215.733333pt;}
.x53_c00078{left:217.600000pt;}
.x45_c00078{left:218.666667pt;}
.x7b_c00078{left:220.400000pt;}
.x5f_c00078{left:222.133333pt;}
.x47_c00078{left:223.466667pt;}
.x3a_c00078{left:224.933333pt;}
.x2c_c00078{left:226.133333pt;}
.x80_c00078{left:228.533333pt;}
.xe_c00078{left:230.000000pt;}
.x3f_c00078{left:233.600000pt;}
.x64_c00078{left:235.866667pt;}
.x16_c00078{left:237.466667pt;}
.x58_c00078{left:238.400000pt;}
.x48_c00078{left:239.733333pt;}
.x25_c00078{left:241.200000pt;}
.x87_c00078{left:243.600000pt;}
.x6e_c00078{left:246.666667pt;}
.x73_c00078{left:247.600000pt;}
.x81_c00078{left:249.066667pt;}
.x77_c00078{left:251.066667pt;}
.x2d_c00078{left:252.666667pt;}
.x6a_c00078{left:253.600000pt;}
.x26_c00078{left:255.600000pt;}
.x96_c00078{left:257.866667pt;}
.x8f_c00078{left:259.333333pt;}
.xf_c00078{left:263.600000pt;}
.x1c_c00078{left:265.066667pt;}
.x40_c00078{left:266.266667pt;}
.x92_c00078{left:270.800000pt;}
.x78_c00078{left:272.133333pt;}
.x60_c00078{left:273.600000pt;}
.x49_c00078{left:274.933333pt;}
.x37_c00078{left:277.200000pt;}
.x5b_c00078{left:279.333333pt;}
.x10_c00078{left:280.266667pt;}
.x65_c00078{left:281.333333pt;}
.x74_c00078{left:283.066667pt;}
.x27_c00078{left:284.666667pt;}
.x41_c00078{left:287.066667pt;}
.x1d_c00078{left:288.133333pt;}
.x1_c00078{left:289.866667pt;}
.x2e_c00078{left:293.333333pt;}
.x4a_c00078{left:295.466667pt;}
.x17_c00078{left:297.333333pt;}
.x4e_c00078{left:298.266667pt;}
.x28_c00078{left:303.600000pt;}
.x90_c00078{left:305.733333pt;}
.x8_c00078{left:308.400000pt;}
.x11_c00078{left:311.600000pt;}
.x66_c00078{left:312.666667pt;}
.x3b_c00078{left:314.266667pt;}
.x93_c00078{left:317.600000pt;}
.x88_c00078{left:320.400000pt;}
.x4b_c00078{left:322.933333pt;}
.x5c_c00078{left:324.133333pt;}
.x83_c00078{left:328.666667pt;}
.x29_c00078{left:330.800000pt;}
.x67_c00078{left:333.200000pt;}
.x42_c00078{left:334.400000pt;}
.x2f_c00078{left:336.533333pt;}
.x18_c00078{left:339.600000pt;}
.x7c_c00078{left:341.866667pt;}
.x75_c00078{left:344.533333pt;}
.x9_c00078{left:345.866667pt;}
.x84_c00078{left:347.600000pt;}
.x4f_c00078{left:348.533333pt;}
.x6f_c00078{left:350.666667pt;}
.x79_c00078{left:357.600000pt;}
.x30_c00078{left:360.266667pt;}
.x12_c00078{left:361.200000pt;}
.x71_c00078{left:366.933333pt;}
.x61_c00078{left:369.866667pt;}
.x116_c00078{left:389.466667pt;}
.x10c_c00078{left:390.400000pt;}
.xc9_c00078{left:392.933333pt;}
.x125_c00078{left:401.333333pt;}
.x11b_c00078{left:402.266667pt;}
.x101_c00078{left:405.600000pt;}
.xf8_c00078{left:406.800000pt;}
.xf0_c00078{left:407.733333pt;}
.xd1_c00078{left:408.800000pt;}
.xb4_c00078{left:410.000000pt;}
.x97_c00078{left:411.200000pt;}
.xba_c00078{left:412.666667pt;}
.x120_c00078{left:415.466667pt;}
.xea_c00078{left:416.933333pt;}
.xed_c00078{left:421.466667pt;}
.xf1_c00078{left:423.733333pt;}
.xc3_c00078{left:425.600000pt;}
.xa3_c00078{left:427.466667pt;}
.x98_c00078{left:429.466667pt;}
.x10d_c00078{left:431.066667pt;}
.x127_c00078{left:433.866667pt;}
.xfc_c00078{left:434.800000pt;}
.x9e_c00078{left:437.733333pt;}
.xd2_c00078{left:442.133333pt;}
.x107_c00078{left:445.333333pt;}
.x10b_c00078{left:446.266667pt;}
.x111_c00078{left:448.000000pt;}
.xca_c00078{left:448.933333pt;}
.xd9_c00078{left:450.266667pt;}
.xa9_c00078{left:451.600000pt;}
.xe2_c00078{left:452.533333pt;}
.xa4_c00078{left:454.400000pt;}
.x114_c00078{left:455.466667pt;}
.xaa_c00078{left:456.400000pt;}
.xc4_c00078{left:457.333333pt;}
.x12a_c00078{left:459.466667pt;}
.xeb_c00078{left:460.666667pt;}
.xad_c00078{left:464.933333pt;}
.x12b_c00078{left:465.866667pt;}
.xda_c00078{left:467.600000pt;}
.x9f_c00078{left:468.800000pt;}
.x108_c00078{left:470.666667pt;}
.x12c_c00078{left:472.000000pt;}
.xd3_c00078{left:474.400000pt;}
.x99_c00078{left:476.800000pt;}
.xf2_c00078{left:478.400000pt;}
.xbd_c00078{left:479.733333pt;}
.xb5_c00078{left:481.333333pt;}
.xc5_c00078{left:482.666667pt;}
.xe3_c00078{left:486.133333pt;}
.x132_c00078{left:487.733333pt;}
.x128_c00078{left:489.600000pt;}
.x103_c00078{left:490.533333pt;}
.xae_c00078{left:491.866667pt;}
.xd4_c00078{left:493.600000pt;}
.xcb_c00078{left:495.066667pt;}
.xbb_c00078{left:496.000000pt;}
.xf3_c00078{left:497.333333pt;}
.xfd_c00078{left:498.800000pt;}
.xde_c00078{left:500.266667pt;}
.x115_c00078{left:502.400000pt;}
.x12e_c00078{left:505.066667pt;}
.xb6_c00078{left:506.000000pt;}
.xe4_c00078{left:508.533333pt;}
.xa5_c00078{left:511.066667pt;}
.x9a_c00078{left:512.666667pt;}
.xab_c00078{left:513.733333pt;}
.x121_c00078{left:515.333333pt;}
.x104_c00078{left:516.400000pt;}
.xf9_c00078{left:517.466667pt;}
.xf4_c00078{left:519.466667pt;}
.xbe_c00078{left:521.333333pt;}
.xe7_c00078{left:522.933333pt;}
.xc6_c00078{left:524.000000pt;}
.xee_c00078{left:525.200000pt;}
.xa0_c00078{left:526.400000pt;}
.x112_c00078{left:528.400000pt;}
.x117_c00078{left:531.866667pt;}
.xdf_c00078{left:536.133333pt;}
.xac_c00078{left:538.400000pt;}
.xf5_c00078{left:540.000000pt;}
.xa1_c00078{left:542.133333pt;}
.xd5_c00078{left:544.133333pt;}
.x11c_c00078{left:545.600000pt;}
.x131_c00078{left:547.600000pt;}
.xa6_c00078{left:550.400000pt;}
.xaf_c00078{left:551.733333pt;}
.xe5_c00078{left:553.333333pt;}
.xdb_c00078{left:554.933333pt;}
.x11d_c00078{left:557.333333pt;}
.xb7_c00078{left:559.466667pt;}
.xf6_c00078{left:562.666667pt;}
.x130_c00078{left:564.533333pt;}
.xce_c00078{left:566.266667pt;}
.x109_c00078{left:567.333333pt;}
.xbf_c00078{left:569.333333pt;}
.xd6_c00078{left:573.200000pt;}
.x118_c00078{left:574.800000pt;}
.x133_c00078{left:577.333333pt;}
.x10e_c00078{left:578.533333pt;}
.x124_c00078{left:579.866667pt;}
.xcc_c00078{left:581.200000pt;}
.xec_c00078{left:582.666667pt;}
.xe8_c00078{left:583.733333pt;}
.xc0_c00078{left:584.666667pt;}
.xd7_c00078{left:586.000000pt;}
.xb0_c00078{left:586.933333pt;}
.x129_c00078{left:587.866667pt;}
.xb8_c00078{left:588.933333pt;}
.x12f_c00078{left:590.133333pt;}
.xe0_c00078{left:591.466667pt;}
.xfe_c00078{left:593.866667pt;}
.x122_c00078{left:594.933333pt;}
.x11e_c00078{left:595.866667pt;}
.xfa_c00078{left:598.400000pt;}
.xa7_c00078{left:599.733333pt;}
.xb1_c00078{left:602.266667pt;}
.xa2_c00078{left:603.200000pt;}
.x10f_c00078{left:606.000000pt;}
.x105_c00078{left:608.533333pt;}
.xef_c00078{left:612.533333pt;}
.xc7_c00078{left:613.600000pt;}
.x119_c00078{left:618.000000pt;}
.x9b_c00078{left:619.333333pt;}
.xe6_c00078{left:621.333333pt;}
.x102_c00078{left:622.933333pt;}
.x123_c00078{left:624.933333pt;}
.xf7_c00078{left:626.000000pt;}
.xbc_c00078{left:628.800000pt;}
.xcf_c00078{left:630.000000pt;}
.xb9_c00078{left:631.466667pt;}
.xc8_c00078{left:632.533333pt;}
.x9c_c00078{left:636.666667pt;}
.xdc_c00078{left:638.133333pt;}
.xe1_c00078{left:640.133333pt;}
.xc1_c00078{left:641.600000pt;}
.xb2_c00078{left:642.933333pt;}
.xfb_c00078{left:643.866667pt;}
.x126_c00078{left:645.466667pt;}
.xff_c00078{left:646.666667pt;}
.xd0_c00078{left:648.533333pt;}
.x12d_c00078{left:650.266667pt;}
.x11f_c00078{left:651.333333pt;}
.xe9_c00078{left:653.200000pt;}
.x110_c00078{left:654.666667pt;}
.x10a_c00078{left:657.866667pt;}
.xc2_c00078{left:659.466667pt;}
.xcd_c00078{left:660.933333pt;}
.x106_c00078{left:662.000000pt;}
.xa8_c00078{left:666.000000pt;}
.xb3_c00078{left:671.066667pt;}
.x9d_c00078{left:672.533333pt;}
.xd8_c00078{left:674.000000pt;}
.x11a_c00078{left:675.866667pt;}
.x2_c00078{left:676.800000pt;}
.xdd_c00078{left:681.066667pt;}
.x100_c00078{left:682.133333pt;}
.x113_c00078{left:685.200000pt;}
}





/* 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_c00079 {
    display:none;
  }
  .loading-indicator_c00079.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00079 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_c00079 { 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_c00079" -> "#page-container .classname_c00079")
 */
.pf_c00079 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00079 { /* 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_c00079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00079 { /* 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_c00079 { /* 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_c00079 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00079 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00079 {overflow:visible;}
  }
}
.c_c00079 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00079 { /* 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_c00079:after { /* webkit #35443 */
  content: '';
}
.t_c00079:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00079 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 */
}
.__c00079 { /* 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_c00079 { /* info for Javascript */
  display:none;
}
.l_c00079 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00079 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00079 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00079: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_c00079 {
    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_c00079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00079.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_c00079 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00079;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.000000;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;}
.mb4_c00079{transform:matrix(0.046500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046500,0.000000,0.000000,0.250000,0,0);}
.mab_c00079{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00079{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00079{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mba_c00079{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00079{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00079{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00079{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00079{transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);}
.m93_c00079{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00079{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00079{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m91_c00079{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00079{transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);}
.md4_c00079{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00079{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m92_c00079{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00079{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00079{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mae_c00079{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00079{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00079{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00079{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m128_c00079{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00079{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00079{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00079{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m106_c00079{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00079{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00079{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00079{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m89_c00079{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m25_c00079{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m65_c00079{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.maa_c00079{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m46_c00079{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m123_c00079{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m28_c00079{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00079{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m47_c00079{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00079{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00079{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00079{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m119_c00079{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m122_c00079{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00079{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.me8_c00079{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00079{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7_c00079{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m96_c00079{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m58_c00079{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m100_c00079{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mda_c00079{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00079{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00079{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mef_c00079{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m101_c00079{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md_c00079{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me4_c00079{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00079{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me9_c00079{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md6_c00079{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m94_c00079{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00079{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m67_c00079{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00079{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m151_c00079{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m16_c00079{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m142_c00079{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m19_c00079{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00079{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00079{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00079{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00079{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00079{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00079{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00079{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m41_c00079{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00079{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00079{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m11_c00079{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m129_c00079{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m136_c00079{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m14_c00079{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mea_c00079{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m116_c00079{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m102_c00079{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00079{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m103_c00079{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00079{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00079{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00079{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m108_c00079{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00079{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00079{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m74_c00079{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m138_c00079{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mca_c00079{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9_c00079{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m120_c00079{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00079{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00079{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00079{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00079{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m130_c00079{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m17_c00079{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00079{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m121_c00079{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m126_c00079{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00079{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00079{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m127_c00079{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m31_c00079{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m78_c00079{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.meb_c00079{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m38_c00079{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m131_c00079{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00079{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00079{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00079{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00079{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00079{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m137_c00079{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m112_c00079{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00079{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00079{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00079{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m109_c00079{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.maf_c00079{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00079{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m21_c00079{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m36_c00079{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00079{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8_c00079{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m111_c00079{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m72_c00079{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00079{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.med_c00079{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m84_c00079{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m14e_c00079{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m23_c00079{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00079{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m117_c00079{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m115_c00079{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m14f_c00079{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m22_c00079{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m13e_c00079{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00079{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m105_c00079{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m13f_c00079{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m48_c00079{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m143_c00079{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00079{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00079{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m141_c00079{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00079{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m14d_c00079{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md7_c00079{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md1_c00079{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m152_c00079{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m15_c00079{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m154_c00079{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m110_c00079{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m145_c00079{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mad_c00079{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00079{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00079{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m49_c00079{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m59_c00079{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00079{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00079{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00079{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00079{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00079{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb_c00079{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m75_c00079{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m73_c00079{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m45_c00079{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00079{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1_c00079{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m125_c00079{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m42_c00079{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md3_c00079{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m30_c00079{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00079{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m61_c00079{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m76_c00079{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m34_c00079{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00079{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md9_c00079{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00079{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m135_c00079{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m134_c00079{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m40_c00079{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00079{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00079{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m90_c00079{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m51_c00079{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00079{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m52_c00079{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m104_c00079{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00079{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mc_c00079{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m95_c00079{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00079{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m82_c00079{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00079{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00079{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m55_c00079{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m132_c00079{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mee_c00079{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00079{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me_c00079{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md2_c00079{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m13_c00079{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m150_c00079{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00079{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m70_c00079{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m124_c00079{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00079{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m144_c00079{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.ma_c00079{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00079{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00079{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m62_c00079{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00079{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m13d_c00079{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00079{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m33_c00079{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00079{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);}
.m13c_c00079{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mce_c00079{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m71_c00079{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m98_c00079{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00079{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m83_c00079{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m35_c00079{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00079{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00079{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00079{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00079{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m99_c00079{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00079{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00079{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m56_c00079{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m113_c00079{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me5_c00079{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m12_c00079{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00079{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me1_c00079{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mec_c00079{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.mac_c00079{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00079{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00079{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.md8_c00079{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m63_c00079{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m10_c00079{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00079{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m139_c00079{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m97_c00079{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m147_c00079{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m118_c00079{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4_c00079{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m64_c00079{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m133_c00079{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m114_c00079{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00079{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2_c00079{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00079{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m149_c00079{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00079{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m140_c00079{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m80_c00079{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m68_c00079{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m77_c00079{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00079{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m86_c00079{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m29_c00079{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m50_c00079{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00079{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m107_c00079{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m79_c00079{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00079{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00079{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.md5_c00079{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m85_c00079{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m3_c00079{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00079{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m26_c00079{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00079{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m153_c00079{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m6_c00079{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m24_c00079{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m27_c00079{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00079{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00079{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m60_c00079{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m81_c00079{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.me7_c00079{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me3_c00079{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00079{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00079{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m88_c00079{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00079{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m148_c00079{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m43_c00079{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m66_c00079{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m87_c00079{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mff_c00079{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.m14a_c00079{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00079{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m14b_c00079{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m54_c00079{transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);}
.m146_c00079{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m39_c00079{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00079{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00079{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00079{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.md0_c00079{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m69_c00079{transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00079{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.me6_c00079{transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);}
.m57_c00079{transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);}
.m18_c00079{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.me0_c00079{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m44_c00079{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mde_c00079{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m37_c00079{transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);}
.m14c_c00079{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00079{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.me2_c00079{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m20_c00079{transform:matrix(0.422750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00079{transform:matrix(0.431000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00079{transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00079{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m0_c00079{transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);}
.m32_c00079{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m53_c00079{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m5_c00079{transform:matrix(0.687250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687250,0.000000,0.000000,0.250000,0,0);}
.mf_c00079{transform:matrix(0.731000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00079{transform:matrix(0.796250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796250,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls0_c00079{letter-spacing:0.000000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{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__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00079{word-spacing:-12.288210px;}
.ws9_c00079{word-spacing:-11.750000px;}
.wsa_c00079{word-spacing:0.000000px;}
.ws6_c00079{word-spacing:4.909091px;}
.ws0_c00079{word-spacing:12.250000px;}
.ws7_c00079{word-spacing:14.034623px;}
.ws3_c00079{word-spacing:14.821429px;}
.ws8_c00079{word-spacing:14.861111px;}
.ws1_c00079{word-spacing:23.211796px;}
.ws2_c00079{word-spacing:34.642857px;}
.ws5_c00079{word-spacing:167.000000px;}
._0_c00079{width:53.428954px;}
._1_c00079{width:61.471850px;}
.fc0_c00079{color:transparent;}
.fs7_c00079{font-size:24.000000px;}
.fsb_c00079{font-size:30.000000px;}
.fsa_c00079{font-size:36.000000px;}
.fs3_c00079{font-size:42.000000px;}
.fs6_c00079{font-size:48.000000px;}
.fs5_c00079{font-size:54.000000px;}
.fs4_c00079{font-size:60.000000px;}
.fs2_c00079{font-size:66.000000px;}
.fs8_c00079{font-size:72.000000px;}
.fs0_c00079{font-size:84.000000px;}
.fs1_c00079{font-size:102.000000px;}
.fs9_c00079{font-size:162.000000px;}
.y0_c00079{bottom:0.000000px;}
.y69_c00079{bottom:160.500000px;}
.y36_c00079{bottom:162.750000px;}
.y68_c00079{bottom:184.350000px;}
.y67_c00079{bottom:191.850000px;}
.y31_c00079{bottom:193.050000px;}
.y66_c00079{bottom:206.100000px;}
.y35_c00079{bottom:207.000000px;}
.y30_c00079{bottom:211.350000px;}
.y65_c00079{bottom:220.200000px;}
.y34_c00079{bottom:221.400000px;}
.y33_c00079{bottom:225.750000px;}
.y64_c00079{bottom:235.350000px;}
.y32_c00079{bottom:235.800000px;}
.y63_c00079{bottom:248.700000px;}
.y2f_c00079{bottom:249.900000px;}
.y2e_c00079{bottom:262.500000px;}
.y62_c00079{bottom:263.100000px;}
.y61_c00079{bottom:277.200000px;}
.y60_c00079{bottom:291.300000px;}
.y2d_c00079{bottom:322.800000px;}
.y5f_c00079{bottom:336.900000px;}
.y2c_c00079{bottom:339.300000px;}
.y2b_c00079{bottom:355.200000px;}
.y5e_c00079{bottom:359.250000px;}
.y2a_c00079{bottom:362.400000px;}
.y29_c00079{bottom:372.900000px;}
.y5d_c00079{bottom:385.950000px;}
.y27_c00079{bottom:389.550000px;}
.y28_c00079{bottom:390.600000px;}
.y5c_c00079{bottom:407.850000px;}
.y5b_c00079{bottom:424.350000px;}
.y5a_c00079{bottom:442.050000px;}
.y59_c00079{bottom:459.750000px;}
.y58_c00079{bottom:478.050000px;}
.y26_c00079{bottom:503.700000px;}
.y57_c00079{bottom:507.300000px;}
.y56_c00079{bottom:523.050000px;}
.y25_c00079{bottom:539.400000px;}
.y55_c00079{bottom:541.050000px;}
.y54_c00079{bottom:559.050000px;}
.y24_c00079{bottom:566.700000px;}
.y53_c00079{bottom:577.050000px;}
.y23_c00079{bottom:578.550000px;}
.y52_c00079{bottom:594.750000px;}
.y21_c00079{bottom:595.800000px;}
.y20_c00079{bottom:609.600000px;}
.y51_c00079{bottom:613.050000px;}
.y1f_c00079{bottom:623.700000px;}
.y50_c00079{bottom:630.750000px;}
.y1e_c00079{bottom:637.800000px;}
.y4f_c00079{bottom:648.750000px;}
.y1d_c00079{bottom:652.200000px;}
.y1c_c00079{bottom:666.300000px;}
.y4e_c00079{bottom:667.050000px;}
.y22_c00079{bottom:678.600000px;}
.y1b_c00079{bottom:680.250000px;}
.y4d_c00079{bottom:690.150000px;}
.y1a_c00079{bottom:694.350000px;}
.y19_c00079{bottom:708.450000px;}
.y4c_c00079{bottom:715.650000px;}
.y18_c00079{bottom:728.250000px;}
.y4b_c00079{bottom:734.700000px;}
.y17_c00079{bottom:745.950000px;}
.y4a_c00079{bottom:752.400000px;}
.y16_c00079{bottom:763.200000px;}
.y49_c00079{bottom:768.600000px;}
.y15_c00079{bottom:784.800000px;}
.y48_c00079{bottom:792.750000px;}
.y14_c00079{bottom:803.100000px;}
.y47_c00079{bottom:811.050000px;}
.y13_c00079{bottom:820.500000px;}
.y46_c00079{bottom:821.100000px;}
.y45_c00079{bottom:833.400000px;}
.y12_c00079{bottom:838.500000px;}
.y11_c00079{bottom:856.050000px;}
.y44_c00079{bottom:859.350000px;}
.y10_c00079{bottom:874.500000px;}
.y43_c00079{bottom:884.850000px;}
.yf_c00079{bottom:891.750000px;}
.y42_c00079{bottom:909.750000px;}
.ye_c00079{bottom:912.600000px;}
.y41_c00079{bottom:928.050000px;}
.yd_c00079{bottom:932.400000px;}
.y40_c00079{bottom:946.050000px;}
.yc_c00079{bottom:956.550000px;}
.y3f_c00079{bottom:964.050000px;}
.yb_c00079{bottom:980.250000px;}
.y3e_c00079{bottom:981.750000px;}
.ya_c00079{bottom:999.600000px;}
.y3d_c00079{bottom:1000.050000px;}
.y9_c00079{bottom:1017.600000px;}
.y3c_c00079{bottom:1017.750000px;}
.y3b_c00079{bottom:1035.750000px;}
.y8_c00079{bottom:1038.900000px;}
.y7_c00079{bottom:1047.900000px;}
.y6_c00079{bottom:1057.650000px;}
.y3a_c00079{bottom:1066.200000px;}
.y5_c00079{bottom:1075.950000px;}
.y39_c00079{bottom:1084.950000px;}
.y4_c00079{bottom:1093.950000px;}
.y38_c00079{bottom:1102.950000px;}
.y3_c00079{bottom:1111.650000px;}
.y2_c00079{bottom:1118.550000px;}
.y37_c00079{bottom:1120.650000px;}
.y1_c00079{bottom:1141.950000px;}
.h9_c00079{height:24.000000px;}
.hd_c00079{height:30.000000px;}
.hc_c00079{height:36.000000px;}
.h5_c00079{height:42.000000px;}
.h8_c00079{height:48.000000px;}
.h7_c00079{height:54.000000px;}
.h6_c00079{height:60.000000px;}
.h4_c00079{height:66.000000px;}
.ha_c00079{height:72.000000px;}
.h2_c00079{height:84.000000px;}
.h3_c00079{height:102.000000px;}
.hb_c00079{height:162.000000px;}
.h1_c00079{height:1279.500000px;}
.h0_c00079{height:1279.800018px;}
.w0_c00079{width:948.600036px;}
.w1_c00079{width:948.750000px;}
.x0_c00079{left:0.000000px;}
.x2_c00079{left:78.150000px;}
.x2b_c00079{left:97.500000px;}
.x3_c00079{left:102.600000px;}
.xf_c00079{left:106.200000px;}
.x3f_c00079{left:107.250000px;}
.x18_c00079{left:108.900000px;}
.x29_c00079{left:111.900000px;}
.x46_c00079{left:115.650000px;}
.x28_c00079{left:122.400000px;}
.x3c_c00079{left:123.900000px;}
.x42_c00079{left:124.950000px;}
.x10_c00079{left:128.850000px;}
.x2a_c00079{left:135.600000px;}
.x4_c00079{left:136.800000px;}
.xc1_c00079{left:138.600000px;}
.x4c_c00079{left:140.400000px;}
.x53_c00079{left:142.500000px;}
.x20_c00079{left:143.700000px;}
.x5b_c00079{left:144.750000px;}
.x63_c00079{left:149.400000px;}
.x66_c00079{left:152.700000px;}
.x3d_c00079{left:156.600000px;}
.x47_c00079{left:158.400000px;}
.xbc_c00079{left:159.900000px;}
.x7a_c00079{left:161.400000px;}
.x67_c00079{left:162.450000px;}
.x88_c00079{left:164.700000px;}
.xaf_c00079{left:166.950000px;}
.x54_c00079{left:168.450000px;}
.xa5_c00079{left:169.650000px;}
.x97_c00079{left:171.300000px;}
.xc4_c00079{left:172.800000px;}
.x19_c00079{left:176.550000px;}
.xaa_c00079{left:178.800000px;}
.x80_c00079{left:180.600000px;}
.x3e_c00079{left:182.100000px;}
.x5_c00079{left:183.600000px;}
.x68_c00079{left:184.800000px;}
.x40_c00079{left:186.450000px;}
.x5c_c00079{left:189.000000px;}
.x76_c00079{left:191.850000px;}
.x2c_c00079{left:192.900000px;}
.xab_c00079{left:194.400000px;}
.x6c_c00079{left:196.350000px;}
.x6_c00079{left:198.750000px;}
.x35_c00079{left:200.850000px;}
.x82_c00079{left:202.350000px;}
.x8e_c00079{left:205.650000px;}
.x21_c00079{left:208.950000px;}
.xa6_c00079{left:210.000000px;}
.x7e_c00079{left:212.100000px;}
.xc5_c00079{left:213.150000px;}
.x9e_c00079{left:214.800000px;}
.xac_c00079{left:216.300000px;}
.x89_c00079{left:218.400000px;}
.x1a_c00079{left:220.800000px;}
.xb0_c00079{left:222.750000px;}
.x43_c00079{left:224.700000px;}
.x7b_c00079{left:225.900000px;}
.x11_c00079{left:227.850000px;}
.x83_c00079{left:229.650000px;}
.x9b_c00079{left:232.500000px;}
.x4d_c00079{left:234.750000px;}
.xad_c00079{left:236.400000px;}
.x69_c00079{left:239.100000px;}
.x64_c00079{left:240.150000px;}
.x7_c00079{left:242.250000px;}
.x5d_c00079{left:243.300000px;}
.x77_c00079{left:246.900000px;}
.x84_c00079{left:249.450000px;}
.x36_c00079{left:251.550000px;}
.x55_c00079{left:252.750000px;}
.xb5_c00079{left:254.550000px;}
.x48_c00079{left:255.900000px;}
.x98_c00079{left:257.400000px;}
.x1b_c00079{left:259.350000px;}
.xbd_c00079{left:261.300000px;}
.x4e_c00079{left:262.500000px;}
.x2d_c00079{left:266.100000px;}
.x95_c00079{left:267.300000px;}
.x8_c00079{left:268.950000px;}
.x73_c00079{left:270.000000px;}
.x22_c00079{left:272.700000px;}
.x93_c00079{left:273.750000px;}
.xc7_c00079{left:274.800000px;}
.x85_c00079{left:276.450000px;}
.x37_c00079{left:277.500000px;}
.x49_c00079{left:278.550000px;}
.x41_c00079{left:280.800000px;}
.x8f_c00079{left:283.800000px;}
.x56_c00079{left:284.850000px;}
.x9_c00079{left:287.700000px;}
.x1c_c00079{left:290.250000px;}
.x23_c00079{left:294.300000px;}
.x6d_c00079{left:296.700000px;}
.x12_c00079{left:299.400000px;}
.x44_c00079{left:304.650000px;}
.x2e_c00079{left:307.200000px;}
.x6a_c00079{left:309.750000px;}
.x4f_c00079{left:311.400000px;}
.x57_c00079{left:312.900000px;}
.xa2_c00079{left:316.200000px;}
.x78_c00079{left:318.900000px;}
.x74_c00079{left:320.400000px;}
.x13_c00079{left:323.100000px;}
.x90_c00079{left:326.250000px;}
.xc2_c00079{left:329.400000px;}
.x99_c00079{left:330.450000px;}
.xb8_c00079{left:331.950000px;}
.x24_c00079{left:333.600000px;}
.x2f_c00079{left:335.700000px;}
.x58_c00079{left:338.100000px;}
.x6e_c00079{left:339.900000px;}
.x1d_c00079{left:341.400000px;}
.x86_c00079{left:343.050000px;}
.xa_c00079{left:346.050000px;}
.x6f_c00079{left:348.600000px;}
.xa7_c00079{left:351.150000px;}
.x7c_c00079{left:352.500000px;}
.x14_c00079{left:354.000000px;}
.x70_c00079{left:356.850000px;}
.xbe_c00079{left:360.450000px;}
.x4a_c00079{left:361.800000px;}
.x50_c00079{left:362.850000px;}
.x5e_c00079{left:365.400000px;}
.xb_c00079{left:366.900000px;}
.x38_c00079{left:370.350000px;}
.x30_c00079{left:371.400000px;}
.x7d_c00079{left:372.600000px;}
.x25_c00079{left:375.000000px;}
.x79_c00079{left:377.700000px;}
.xb7_c00079{left:379.500000px;}
.xa8_c00079{left:381.750000px;}
.x5f_c00079{left:385.500000px;}
.x39_c00079{left:386.850000px;}
.x94_c00079{left:387.900000px;}
.xc_c00079{left:391.350000px;}
.x1e_c00079{left:392.850000px;}
.x71_c00079{left:394.950000px;}
.x31_c00079{left:396.300000px;}
.x8a_c00079{left:401.250000px;}
.x15_c00079{left:402.600000px;}
.xae_c00079{left:403.800000px;}
.x6b_c00079{left:405.450000px;}
.x87_c00079{left:406.650000px;}
.x8b_c00079{left:408.450000px;}
.x1_c00079{left:409.650000px;}
.xd_c00079{left:411.900000px;}
.x32_c00079{left:413.550000px;}
.x8c_c00079{left:415.650000px;}
.x9f_c00079{left:417.300000px;}
.x51_c00079{left:420.150000px;}
.x60_c00079{left:421.800000px;}
.x26_c00079{left:423.900000px;}
.xb2_c00079{left:425.550000px;}
.x3a_c00079{left:427.200000px;}
.x72_c00079{left:429.450000px;}
.x33_c00079{left:434.850000px;}
.x91_c00079{left:436.350000px;}
.x61_c00079{left:438.000000px;}
.xa3_c00079{left:439.650000px;}
.x65_c00079{left:440.700000px;}
.xbf_c00079{left:442.500000px;}
.x1f_c00079{left:444.750000px;}
.x59_c00079{left:445.800000px;}
.xb6_c00079{left:447.450000px;}
.xb1_c00079{left:449.550000px;}
.x16_c00079{left:452.250000px;}
.x45_c00079{left:453.300000px;}
.xb3_c00079{left:454.650000px;}
.xe_c00079{left:457.200000px;}
.x5a_c00079{left:459.150000px;}
.xb9_c00079{left:462.600000px;}
.x52_c00079{left:464.400000px;}
.x81_c00079{left:467.100000px;}
.x8d_c00079{left:468.300000px;}
.x96_c00079{left:469.500000px;}
.xa0_c00079{left:471.300000px;}
.x27_c00079{left:472.800000px;}
.x4b_c00079{left:475.200000px;}
.x75_c00079{left:477.000000px;}
.xa1_c00079{left:478.050000px;}
.xb4_c00079{left:479.550000px;}
.x3b_c00079{left:480.750000px;}
.xa4_c00079{left:482.850000px;}
.x17_c00079{left:486.150000px;}
.xc6_c00079{left:487.350000px;}
.xa9_c00079{left:488.700000px;}
.x34_c00079{left:489.900000px;}
.x62_c00079{left:490.950000px;}
.x9d_c00079{left:492.750000px;}
.x7f_c00079{left:493.800000px;}
.x9a_c00079{left:496.050000px;}
.x92_c00079{left:497.550000px;}
.x9c_c00079{left:498.600000px;}
.xc0_c00079{left:501.150000px;}
.xbb_c00079{left:502.650000px;}
.xba_c00079{left:504.300000px;}
.xc3_c00079{left:506.250000px;}
.xe6_c00079{left:525.300000px;}
.x118_c00079{left:526.350000px;}
.x11b_c00079{left:528.450000px;}
.x129_c00079{left:530.250000px;}
.x156_c00079{left:534.300000px;}
.x157_c00079{left:535.350000px;}
.x16f_c00079{left:536.400000px;}
.x11a_c00079{left:538.200000px;}
.xc8_c00079{left:541.800000px;}
.xef_c00079{left:543.300000px;}
.x100_c00079{left:544.350000px;}
.x123_c00079{left:545.550000px;}
.x125_c00079{left:546.600000px;}
.x12d_c00079{left:547.800000px;}
.x13a_c00079{left:548.850000px;}
.x159_c00079{left:550.050000px;}
.x11c_c00079{left:551.100000px;}
.x154_c00079{left:552.150000px;}
.xdd_c00079{left:559.200000px;}
.x170_c00079{left:561.300000px;}
.x11d_c00079{left:563.700000px;}
.x107_c00079{left:565.800000px;}
.x12e_c00079{left:567.900000px;}
.x14c_c00079{left:569.550000px;}
.x128_c00079{left:574.200000px;}
.x16d_c00079{left:576.450000px;}
.xc9_c00079{left:577.800000px;}
.xde_c00079{left:580.500000px;}
.x135_c00079{left:582.300000px;}
.x142_c00079{left:585.300000px;}
.xe7_c00079{left:586.500000px;}
.xf0_c00079{left:588.600000px;}
.x13b_c00079{left:590.550000px;}
.xf9_c00079{left:593.550000px;}
.x171_c00079{left:594.750000px;}
.xdf_c00079{left:596.700000px;}
.xd6_c00079{left:598.950000px;}
.x101_c00079{left:600.900000px;}
.x131_c00079{left:603.750000px;}
.x158_c00079{left:605.250000px;}
.xfa_c00079{left:607.200000px;}
.xf6_c00079{left:608.700000px;}
.x155_c00079{left:610.500000px;}
.x10d_c00079{left:611.550000px;}
.x146_c00079{left:612.600000px;}
.xd0_c00079{left:614.550000px;}
.x119_c00079{left:615.600000px;}
.x15e_c00079{left:616.650000px;}
.xf1_c00079{left:617.700000px;}
.x152_c00079{left:618.750000px;}
.x168_c00079{left:621.450000px;}
.x10e_c00079{left:623.100000px;}
.xd7_c00079{left:624.450000px;}
.x132_c00079{left:626.100000px;}
.xe0_c00079{left:628.050000px;}
.x126_c00079{left:629.400000px;}
.x13c_c00079{left:631.500000px;}
.x163_c00079{left:633.000000px;}
.x136_c00079{left:635.250000px;}
.xfb_c00079{left:637.800000px;}
.xca_c00079{left:642.600000px;}
.x112_c00079{left:644.100000px;}
.x16a_c00079{left:645.600000px;}
.x11f_c00079{left:650.100000px;}
.x124_c00079{left:652.650000px;}
.x169_c00079{left:653.850000px;}
.x108_c00079{left:655.050000px;}
.x164_c00079{left:656.400000px;}
.x133_c00079{left:657.750000px;}
.xfc_c00079{left:659.100000px;}
.x14d_c00079{left:660.300000px;}
.x15a_c00079{left:661.500000px;}
.xe8_c00079{left:662.850000px;}
.x13d_c00079{left:666.450000px;}
.x113_c00079{left:668.250000px;}
.x148_c00079{left:669.300000px;}
.x102_c00079{left:670.350000px;}
.xf2_c00079{left:671.700000px;}
.x153_c00079{left:672.750000px;}
.x143_c00079{left:675.300000px;}
.xd1_c00079{left:677.250000px;}
.x109_c00079{left:678.750000px;}
.xe9_c00079{left:680.100000px;}
.xf3_c00079{left:681.450000px;}
.xcb_c00079{left:689.400000px;}
.x13e_c00079{left:691.950000px;}
.x174_c00079{left:694.200000px;}
.x165_c00079{left:695.250000px;}
.xfd_c00079{left:696.600000px;}
.xe1_c00079{left:698.250000px;}
.xd8_c00079{left:699.750000px;}
.xea_c00079{left:701.400000px;}
.x16b_c00079{left:703.200000px;}
.x103_c00079{left:705.300000px;}
.xcc_c00079{left:707.100000px;}
.x134_c00079{left:709.650000px;}
.xd2_c00079{left:711.150000px;}
.xf7_c00079{left:712.800000px;}
.x127_c00079{left:715.800000px;}
.x144_c00079{left:717.000000px;}
.x120_c00079{left:720.000000px;}
.x15b_c00079{left:721.650000px;}
.x12a_c00079{left:723.150000px;}
.xe2_c00079{left:724.200000px;}
.x149_c00079{left:726.150000px;}
.x104_c00079{left:730.800000px;}
.x12b_c00079{left:732.150000px;}
.x114_c00079{left:733.800000px;}
.x147_c00079{left:735.450000px;}
.x14e_c00079{left:738.000000px;}
.xcd_c00079{left:739.800000px;}
.x10a_c00079{left:741.750000px;}
.x15c_c00079{left:742.800000px;}
.xeb_c00079{left:744.300000px;}
.x105_c00079{left:745.500000px;}
.xfe_c00079{left:748.800000px;}
.x15f_c00079{left:750.600000px;}
.xd9_c00079{left:753.750000px;}
.xe3_c00079{left:755.550000px;}
.x166_c00079{left:757.800000px;}
.x106_c00079{left:760.200000px;}
.x115_c00079{left:762.900000px;}
.x10b_c00079{left:765.450000px;}
.x16c_c00079{left:766.950000px;}
.xd3_c00079{left:769.200000px;}
.x121_c00079{left:771.150000px;}
.xe4_c00079{left:773.250000px;}
.x160_c00079{left:775.050000px;}
.xda_c00079{left:776.400000px;}
.x10f_c00079{left:781.500000px;}
.xf4_c00079{left:782.550000px;}
.x137_c00079{left:785.700000px;}
.x15d_c00079{left:786.750000px;}
.x14f_c00079{left:788.100000px;}
.xec_c00079{left:792.150000px;}
.xce_c00079{left:793.500000px;}
.x13f_c00079{left:796.350000px;}
.x150_c00079{left:798.150000px;}
.xe5_c00079{left:799.950000px;}
.x11e_c00079{left:801.000000px;}
.x110_c00079{left:803.100000px;}
.x12f_c00079{left:805.050000px;}
.x122_c00079{left:806.850000px;}
.xd4_c00079{left:810.900000px;}
.xed_c00079{left:813.000000px;}
.x151_c00079{left:814.650000px;}
.xdb_c00079{left:815.700000px;}
.xcf_c00079{left:820.200000px;}
.x138_c00079{left:822.750000px;}
.x145_c00079{left:823.950000px;}
.x116_c00079{left:825.900000px;}
.x172_c00079{left:827.400000px;}
.xee_c00079{left:828.450000px;}
.x14b_c00079{left:832.200000px;}
.xf8_c00079{left:834.000000px;}
.x140_c00079{left:835.200000px;}
.x139_c00079{left:836.850000px;}
.x12c_c00079{left:840.150000px;}
.xdc_c00079{left:841.200000px;}
.xf5_c00079{left:843.000000px;}
.x10c_c00079{left:844.950000px;}
.x117_c00079{left:847.200000px;}
.xff_c00079{left:848.850000px;}
.x111_c00079{left:849.900000px;}
.xd5_c00079{left:851.250000px;}
.x141_c00079{left:852.900000px;}
.x161_c00079{left:858.900000px;}
.x175_c00079{left:861.150000px;}
.x14a_c00079{left:862.650000px;}
.x16e_c00079{left:863.700000px;}
.x167_c00079{left:866.850000px;}
.x130_c00079{left:869.100000px;}
.x162_c00079{left:871.500000px;}
.x173_c00079{left:874.800000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws4_c00079{word-spacing:-10.922853pt;}
.ws9_c00079{word-spacing:-10.444444pt;}
.wsa_c00079{word-spacing:0.000000pt;}
.ws6_c00079{word-spacing:4.363636pt;}
.ws0_c00079{word-spacing:10.888889pt;}
.ws7_c00079{word-spacing:12.475221pt;}
.ws3_c00079{word-spacing:13.174603pt;}
.ws8_c00079{word-spacing:13.209877pt;}
.ws1_c00079{word-spacing:20.632708pt;}
.ws2_c00079{word-spacing:30.793651pt;}
.ws5_c00079{word-spacing:148.444444pt;}
._0_c00079{width:47.492404pt;}
._1_c00079{width:54.641644pt;}
.fs7_c00079{font-size:21.333333pt;}
.fsb_c00079{font-size:26.666667pt;}
.fsa_c00079{font-size:32.000000pt;}
.fs3_c00079{font-size:37.333333pt;}
.fs6_c00079{font-size:42.666667pt;}
.fs5_c00079{font-size:48.000000pt;}
.fs4_c00079{font-size:53.333333pt;}
.fs2_c00079{font-size:58.666667pt;}
.fs8_c00079{font-size:64.000000pt;}
.fs0_c00079{font-size:74.666667pt;}
.fs1_c00079{font-size:90.666667pt;}
.fs9_c00079{font-size:144.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y69_c00079{bottom:142.666667pt;}
.y36_c00079{bottom:144.666667pt;}
.y68_c00079{bottom:163.866667pt;}
.y67_c00079{bottom:170.533333pt;}
.y31_c00079{bottom:171.600000pt;}
.y66_c00079{bottom:183.200000pt;}
.y35_c00079{bottom:184.000000pt;}
.y30_c00079{bottom:187.866667pt;}
.y65_c00079{bottom:195.733333pt;}
.y34_c00079{bottom:196.800000pt;}
.y33_c00079{bottom:200.666667pt;}
.y64_c00079{bottom:209.200000pt;}
.y32_c00079{bottom:209.600000pt;}
.y63_c00079{bottom:221.066667pt;}
.y2f_c00079{bottom:222.133333pt;}
.y2e_c00079{bottom:233.333333pt;}
.y62_c00079{bottom:233.866667pt;}
.y61_c00079{bottom:246.400000pt;}
.y60_c00079{bottom:258.933333pt;}
.y2d_c00079{bottom:286.933333pt;}
.y5f_c00079{bottom:299.466667pt;}
.y2c_c00079{bottom:301.600000pt;}
.y2b_c00079{bottom:315.733333pt;}
.y5e_c00079{bottom:319.333333pt;}
.y2a_c00079{bottom:322.133333pt;}
.y29_c00079{bottom:331.466667pt;}
.y5d_c00079{bottom:343.066667pt;}
.y27_c00079{bottom:346.266667pt;}
.y28_c00079{bottom:347.200000pt;}
.y5c_c00079{bottom:362.533333pt;}
.y5b_c00079{bottom:377.200000pt;}
.y5a_c00079{bottom:392.933333pt;}
.y59_c00079{bottom:408.666667pt;}
.y58_c00079{bottom:424.933333pt;}
.y26_c00079{bottom:447.733333pt;}
.y57_c00079{bottom:450.933333pt;}
.y56_c00079{bottom:464.933333pt;}
.y25_c00079{bottom:479.466667pt;}
.y55_c00079{bottom:480.933333pt;}
.y54_c00079{bottom:496.933333pt;}
.y24_c00079{bottom:503.733333pt;}
.y53_c00079{bottom:512.933333pt;}
.y23_c00079{bottom:514.266667pt;}
.y52_c00079{bottom:528.666667pt;}
.y21_c00079{bottom:529.600000pt;}
.y20_c00079{bottom:541.866667pt;}
.y51_c00079{bottom:544.933333pt;}
.y1f_c00079{bottom:554.400000pt;}
.y50_c00079{bottom:560.666667pt;}
.y1e_c00079{bottom:566.933333pt;}
.y4f_c00079{bottom:576.666667pt;}
.y1d_c00079{bottom:579.733333pt;}
.y1c_c00079{bottom:592.266667pt;}
.y4e_c00079{bottom:592.933333pt;}
.y22_c00079{bottom:603.200000pt;}
.y1b_c00079{bottom:604.666667pt;}
.y4d_c00079{bottom:613.466667pt;}
.y1a_c00079{bottom:617.200000pt;}
.y19_c00079{bottom:629.733333pt;}
.y4c_c00079{bottom:636.133333pt;}
.y18_c00079{bottom:647.333333pt;}
.y4b_c00079{bottom:653.066667pt;}
.y17_c00079{bottom:663.066667pt;}
.y4a_c00079{bottom:668.800000pt;}
.y16_c00079{bottom:678.400000pt;}
.y49_c00079{bottom:683.200000pt;}
.y15_c00079{bottom:697.600000pt;}
.y48_c00079{bottom:704.666667pt;}
.y14_c00079{bottom:713.866667pt;}
.y47_c00079{bottom:720.933333pt;}
.y13_c00079{bottom:729.333333pt;}
.y46_c00079{bottom:729.866667pt;}
.y45_c00079{bottom:740.800000pt;}
.y12_c00079{bottom:745.333333pt;}
.y11_c00079{bottom:760.933333pt;}
.y44_c00079{bottom:763.866667pt;}
.y10_c00079{bottom:777.333333pt;}
.y43_c00079{bottom:786.533333pt;}
.yf_c00079{bottom:792.666667pt;}
.y42_c00079{bottom:808.666667pt;}
.ye_c00079{bottom:811.200000pt;}
.y41_c00079{bottom:824.933333pt;}
.yd_c00079{bottom:828.800000pt;}
.y40_c00079{bottom:840.933333pt;}
.yc_c00079{bottom:850.266667pt;}
.y3f_c00079{bottom:856.933333pt;}
.yb_c00079{bottom:871.333333pt;}
.y3e_c00079{bottom:872.666667pt;}
.ya_c00079{bottom:888.533333pt;}
.y3d_c00079{bottom:888.933333pt;}
.y9_c00079{bottom:904.533333pt;}
.y3c_c00079{bottom:904.666667pt;}
.y3b_c00079{bottom:920.666667pt;}
.y8_c00079{bottom:923.466667pt;}
.y7_c00079{bottom:931.466667pt;}
.y6_c00079{bottom:940.133333pt;}
.y3a_c00079{bottom:947.733333pt;}
.y5_c00079{bottom:956.400000pt;}
.y39_c00079{bottom:964.400000pt;}
.y4_c00079{bottom:972.400000pt;}
.y38_c00079{bottom:980.400000pt;}
.y3_c00079{bottom:988.133333pt;}
.y2_c00079{bottom:994.266667pt;}
.y37_c00079{bottom:996.133333pt;}
.y1_c00079{bottom:1015.066667pt;}
.h9_c00079{height:21.333333pt;}
.hd_c00079{height:26.666667pt;}
.hc_c00079{height:32.000000pt;}
.h5_c00079{height:37.333333pt;}
.h8_c00079{height:42.666667pt;}
.h7_c00079{height:48.000000pt;}
.h6_c00079{height:53.333333pt;}
.h4_c00079{height:58.666667pt;}
.ha_c00079{height:64.000000pt;}
.h2_c00079{height:74.666667pt;}
.h3_c00079{height:90.666667pt;}
.hb_c00079{height:144.000000pt;}
.h1_c00079{height:1137.333333pt;}
.h0_c00079{height:1137.600016pt;}
.w0_c00079{width:843.200032pt;}
.w1_c00079{width:843.333333pt;}
.x0_c00079{left:0.000000pt;}
.x2_c00079{left:69.466667pt;}
.x2b_c00079{left:86.666667pt;}
.x3_c00079{left:91.200000pt;}
.xf_c00079{left:94.400000pt;}
.x3f_c00079{left:95.333333pt;}
.x18_c00079{left:96.800000pt;}
.x29_c00079{left:99.466667pt;}
.x46_c00079{left:102.800000pt;}
.x28_c00079{left:108.800000pt;}
.x3c_c00079{left:110.133333pt;}
.x42_c00079{left:111.066667pt;}
.x10_c00079{left:114.533333pt;}
.x2a_c00079{left:120.533333pt;}
.x4_c00079{left:121.600000pt;}
.xc1_c00079{left:123.200000pt;}
.x4c_c00079{left:124.800000pt;}
.x53_c00079{left:126.666667pt;}
.x20_c00079{left:127.733333pt;}
.x5b_c00079{left:128.666667pt;}
.x63_c00079{left:132.800000pt;}
.x66_c00079{left:135.733333pt;}
.x3d_c00079{left:139.200000pt;}
.x47_c00079{left:140.800000pt;}
.xbc_c00079{left:142.133333pt;}
.x7a_c00079{left:143.466667pt;}
.x67_c00079{left:144.400000pt;}
.x88_c00079{left:146.400000pt;}
.xaf_c00079{left:148.400000pt;}
.x54_c00079{left:149.733333pt;}
.xa5_c00079{left:150.800000pt;}
.x97_c00079{left:152.266667pt;}
.xc4_c00079{left:153.600000pt;}
.x19_c00079{left:156.933333pt;}
.xaa_c00079{left:158.933333pt;}
.x80_c00079{left:160.533333pt;}
.x3e_c00079{left:161.866667pt;}
.x5_c00079{left:163.200000pt;}
.x68_c00079{left:164.266667pt;}
.x40_c00079{left:165.733333pt;}
.x5c_c00079{left:168.000000pt;}
.x76_c00079{left:170.533333pt;}
.x2c_c00079{left:171.466667pt;}
.xab_c00079{left:172.800000pt;}
.x6c_c00079{left:174.533333pt;}
.x6_c00079{left:176.666667pt;}
.x35_c00079{left:178.533333pt;}
.x82_c00079{left:179.866667pt;}
.x8e_c00079{left:182.800000pt;}
.x21_c00079{left:185.733333pt;}
.xa6_c00079{left:186.666667pt;}
.x7e_c00079{left:188.533333pt;}
.xc5_c00079{left:189.466667pt;}
.x9e_c00079{left:190.933333pt;}
.xac_c00079{left:192.266667pt;}
.x89_c00079{left:194.133333pt;}
.x1a_c00079{left:196.266667pt;}
.xb0_c00079{left:198.000000pt;}
.x43_c00079{left:199.733333pt;}
.x7b_c00079{left:200.800000pt;}
.x11_c00079{left:202.533333pt;}
.x83_c00079{left:204.133333pt;}
.x9b_c00079{left:206.666667pt;}
.x4d_c00079{left:208.666667pt;}
.xad_c00079{left:210.133333pt;}
.x69_c00079{left:212.533333pt;}
.x64_c00079{left:213.466667pt;}
.x7_c00079{left:215.333333pt;}
.x5d_c00079{left:216.266667pt;}
.x77_c00079{left:219.466667pt;}
.x84_c00079{left:221.733333pt;}
.x36_c00079{left:223.600000pt;}
.x55_c00079{left:224.666667pt;}
.xb5_c00079{left:226.266667pt;}
.x48_c00079{left:227.466667pt;}
.x98_c00079{left:228.800000pt;}
.x1b_c00079{left:230.533333pt;}
.xbd_c00079{left:232.266667pt;}
.x4e_c00079{left:233.333333pt;}
.x2d_c00079{left:236.533333pt;}
.x95_c00079{left:237.600000pt;}
.x8_c00079{left:239.066667pt;}
.x73_c00079{left:240.000000pt;}
.x22_c00079{left:242.400000pt;}
.x93_c00079{left:243.333333pt;}
.xc7_c00079{left:244.266667pt;}
.x85_c00079{left:245.733333pt;}
.x37_c00079{left:246.666667pt;}
.x49_c00079{left:247.600000pt;}
.x41_c00079{left:249.600000pt;}
.x8f_c00079{left:252.266667pt;}
.x56_c00079{left:253.200000pt;}
.x9_c00079{left:255.733333pt;}
.x1c_c00079{left:258.000000pt;}
.x23_c00079{left:261.600000pt;}
.x6d_c00079{left:263.733333pt;}
.x12_c00079{left:266.133333pt;}
.x44_c00079{left:270.800000pt;}
.x2e_c00079{left:273.066667pt;}
.x6a_c00079{left:275.333333pt;}
.x4f_c00079{left:276.800000pt;}
.x57_c00079{left:278.133333pt;}
.xa2_c00079{left:281.066667pt;}
.x78_c00079{left:283.466667pt;}
.x74_c00079{left:284.800000pt;}
.x13_c00079{left:287.200000pt;}
.x90_c00079{left:290.000000pt;}
.xc2_c00079{left:292.800000pt;}
.x99_c00079{left:293.733333pt;}
.xb8_c00079{left:295.066667pt;}
.x24_c00079{left:296.533333pt;}
.x2f_c00079{left:298.400000pt;}
.x58_c00079{left:300.533333pt;}
.x6e_c00079{left:302.133333pt;}
.x1d_c00079{left:303.466667pt;}
.x86_c00079{left:304.933333pt;}
.xa_c00079{left:307.600000pt;}
.x6f_c00079{left:309.866667pt;}
.xa7_c00079{left:312.133333pt;}
.x7c_c00079{left:313.333333pt;}
.x14_c00079{left:314.666667pt;}
.x70_c00079{left:317.200000pt;}
.xbe_c00079{left:320.400000pt;}
.x4a_c00079{left:321.600000pt;}
.x50_c00079{left:322.533333pt;}
.x5e_c00079{left:324.800000pt;}
.xb_c00079{left:326.133333pt;}
.x38_c00079{left:329.200000pt;}
.x30_c00079{left:330.133333pt;}
.x7d_c00079{left:331.200000pt;}
.x25_c00079{left:333.333333pt;}
.x79_c00079{left:335.733333pt;}
.xb7_c00079{left:337.333333pt;}
.xa8_c00079{left:339.333333pt;}
.x5f_c00079{left:342.666667pt;}
.x39_c00079{left:343.866667pt;}
.x94_c00079{left:344.800000pt;}
.xc_c00079{left:347.866667pt;}
.x1e_c00079{left:349.200000pt;}
.x71_c00079{left:351.066667pt;}
.x31_c00079{left:352.266667pt;}
.x8a_c00079{left:356.666667pt;}
.x15_c00079{left:357.866667pt;}
.xae_c00079{left:358.933333pt;}
.x6b_c00079{left:360.400000pt;}
.x87_c00079{left:361.466667pt;}
.x8b_c00079{left:363.066667pt;}
.x1_c00079{left:364.133333pt;}
.xd_c00079{left:366.133333pt;}
.x32_c00079{left:367.600000pt;}
.x8c_c00079{left:369.466667pt;}
.x9f_c00079{left:370.933333pt;}
.x51_c00079{left:373.466667pt;}
.x60_c00079{left:374.933333pt;}
.x26_c00079{left:376.800000pt;}
.xb2_c00079{left:378.266667pt;}
.x3a_c00079{left:379.733333pt;}
.x72_c00079{left:381.733333pt;}
.x33_c00079{left:386.533333pt;}
.x91_c00079{left:387.866667pt;}
.x61_c00079{left:389.333333pt;}
.xa3_c00079{left:390.800000pt;}
.x65_c00079{left:391.733333pt;}
.xbf_c00079{left:393.333333pt;}
.x1f_c00079{left:395.333333pt;}
.x59_c00079{left:396.266667pt;}
.xb6_c00079{left:397.733333pt;}
.xb1_c00079{left:399.600000pt;}
.x16_c00079{left:402.000000pt;}
.x45_c00079{left:402.933333pt;}
.xb3_c00079{left:404.133333pt;}
.xe_c00079{left:406.400000pt;}
.x5a_c00079{left:408.133333pt;}
.xb9_c00079{left:411.200000pt;}
.x52_c00079{left:412.800000pt;}
.x81_c00079{left:415.200000pt;}
.x8d_c00079{left:416.266667pt;}
.x96_c00079{left:417.333333pt;}
.xa0_c00079{left:418.933333pt;}
.x27_c00079{left:420.266667pt;}
.x4b_c00079{left:422.400000pt;}
.x75_c00079{left:424.000000pt;}
.xa1_c00079{left:424.933333pt;}
.xb4_c00079{left:426.266667pt;}
.x3b_c00079{left:427.333333pt;}
.xa4_c00079{left:429.200000pt;}
.x17_c00079{left:432.133333pt;}
.xc6_c00079{left:433.200000pt;}
.xa9_c00079{left:434.400000pt;}
.x34_c00079{left:435.466667pt;}
.x62_c00079{left:436.400000pt;}
.x9d_c00079{left:438.000000pt;}
.x7f_c00079{left:438.933333pt;}
.x9a_c00079{left:440.933333pt;}
.x92_c00079{left:442.266667pt;}
.x9c_c00079{left:443.200000pt;}
.xc0_c00079{left:445.466667pt;}
.xbb_c00079{left:446.800000pt;}
.xba_c00079{left:448.266667pt;}
.xc3_c00079{left:450.000000pt;}
.xe6_c00079{left:466.933333pt;}
.x118_c00079{left:467.866667pt;}
.x11b_c00079{left:469.733333pt;}
.x129_c00079{left:471.333333pt;}
.x156_c00079{left:474.933333pt;}
.x157_c00079{left:475.866667pt;}
.x16f_c00079{left:476.800000pt;}
.x11a_c00079{left:478.400000pt;}
.xc8_c00079{left:481.600000pt;}
.xef_c00079{left:482.933333pt;}
.x100_c00079{left:483.866667pt;}
.x123_c00079{left:484.933333pt;}
.x125_c00079{left:485.866667pt;}
.x12d_c00079{left:486.933333pt;}
.x13a_c00079{left:487.866667pt;}
.x159_c00079{left:488.933333pt;}
.x11c_c00079{left:489.866667pt;}
.x154_c00079{left:490.800000pt;}
.xdd_c00079{left:497.066667pt;}
.x170_c00079{left:498.933333pt;}
.x11d_c00079{left:501.066667pt;}
.x107_c00079{left:502.933333pt;}
.x12e_c00079{left:504.800000pt;}
.x14c_c00079{left:506.266667pt;}
.x128_c00079{left:510.400000pt;}
.x16d_c00079{left:512.400000pt;}
.xc9_c00079{left:513.600000pt;}
.xde_c00079{left:516.000000pt;}
.x135_c00079{left:517.600000pt;}
.x142_c00079{left:520.266667pt;}
.xe7_c00079{left:521.333333pt;}
.xf0_c00079{left:523.200000pt;}
.x13b_c00079{left:524.933333pt;}
.xf9_c00079{left:527.600000pt;}
.x171_c00079{left:528.666667pt;}
.xdf_c00079{left:530.400000pt;}
.xd6_c00079{left:532.400000pt;}
.x101_c00079{left:534.133333pt;}
.x131_c00079{left:536.666667pt;}
.x158_c00079{left:538.000000pt;}
.xfa_c00079{left:539.733333pt;}
.xf6_c00079{left:541.066667pt;}
.x155_c00079{left:542.666667pt;}
.x10d_c00079{left:543.600000pt;}
.x146_c00079{left:544.533333pt;}
.xd0_c00079{left:546.266667pt;}
.x119_c00079{left:547.200000pt;}
.x15e_c00079{left:548.133333pt;}
.xf1_c00079{left:549.066667pt;}
.x152_c00079{left:550.000000pt;}
.x168_c00079{left:552.400000pt;}
.x10e_c00079{left:553.866667pt;}
.xd7_c00079{left:555.066667pt;}
.x132_c00079{left:556.533333pt;}
.xe0_c00079{left:558.266667pt;}
.x126_c00079{left:559.466667pt;}
.x13c_c00079{left:561.333333pt;}
.x163_c00079{left:562.666667pt;}
.x136_c00079{left:564.666667pt;}
.xfb_c00079{left:566.933333pt;}
.xca_c00079{left:571.200000pt;}
.x112_c00079{left:572.533333pt;}
.x16a_c00079{left:573.866667pt;}
.x11f_c00079{left:577.866667pt;}
.x124_c00079{left:580.133333pt;}
.x169_c00079{left:581.200000pt;}
.x108_c00079{left:582.266667pt;}
.x164_c00079{left:583.466667pt;}
.x133_c00079{left:584.666667pt;}
.xfc_c00079{left:585.866667pt;}
.x14d_c00079{left:586.933333pt;}
.x15a_c00079{left:588.000000pt;}
.xe8_c00079{left:589.200000pt;}
.x13d_c00079{left:592.400000pt;}
.x113_c00079{left:594.000000pt;}
.x148_c00079{left:594.933333pt;}
.x102_c00079{left:595.866667pt;}
.xf2_c00079{left:597.066667pt;}
.x153_c00079{left:598.000000pt;}
.x143_c00079{left:600.266667pt;}
.xd1_c00079{left:602.000000pt;}
.x109_c00079{left:603.333333pt;}
.xe9_c00079{left:604.533333pt;}
.xf3_c00079{left:605.733333pt;}
.xcb_c00079{left:612.800000pt;}
.x13e_c00079{left:615.066667pt;}
.x174_c00079{left:617.066667pt;}
.x165_c00079{left:618.000000pt;}
.xfd_c00079{left:619.200000pt;}
.xe1_c00079{left:620.666667pt;}
.xd8_c00079{left:622.000000pt;}
.xea_c00079{left:623.466667pt;}
.x16b_c00079{left:625.066667pt;}
.x103_c00079{left:626.933333pt;}
.xcc_c00079{left:628.533333pt;}
.x134_c00079{left:630.800000pt;}
.xd2_c00079{left:632.133333pt;}
.xf7_c00079{left:633.600000pt;}
.x127_c00079{left:636.266667pt;}
.x144_c00079{left:637.333333pt;}
.x120_c00079{left:640.000000pt;}
.x15b_c00079{left:641.466667pt;}
.x12a_c00079{left:642.800000pt;}
.xe2_c00079{left:643.733333pt;}
.x149_c00079{left:645.466667pt;}
.x104_c00079{left:649.600000pt;}
.x12b_c00079{left:650.800000pt;}
.x114_c00079{left:652.266667pt;}
.x147_c00079{left:653.733333pt;}
.x14e_c00079{left:656.000000pt;}
.xcd_c00079{left:657.600000pt;}
.x10a_c00079{left:659.333333pt;}
.x15c_c00079{left:660.266667pt;}
.xeb_c00079{left:661.600000pt;}
.x105_c00079{left:662.666667pt;}
.xfe_c00079{left:665.600000pt;}
.x15f_c00079{left:667.200000pt;}
.xd9_c00079{left:670.000000pt;}
.xe3_c00079{left:671.600000pt;}
.x166_c00079{left:673.600000pt;}
.x106_c00079{left:675.733333pt;}
.x115_c00079{left:678.133333pt;}
.x10b_c00079{left:680.400000pt;}
.x16c_c00079{left:681.733333pt;}
.xd3_c00079{left:683.733333pt;}
.x121_c00079{left:685.466667pt;}
.xe4_c00079{left:687.333333pt;}
.x160_c00079{left:688.933333pt;}
.xda_c00079{left:690.133333pt;}
.x10f_c00079{left:694.666667pt;}
.xf4_c00079{left:695.600000pt;}
.x137_c00079{left:698.400000pt;}
.x15d_c00079{left:699.333333pt;}
.x14f_c00079{left:700.533333pt;}
.xec_c00079{left:704.133333pt;}
.xce_c00079{left:705.333333pt;}
.x13f_c00079{left:707.866667pt;}
.x150_c00079{left:709.466667pt;}
.xe5_c00079{left:711.066667pt;}
.x11e_c00079{left:712.000000pt;}
.x110_c00079{left:713.866667pt;}
.x12f_c00079{left:715.600000pt;}
.x122_c00079{left:717.200000pt;}
.xd4_c00079{left:720.800000pt;}
.xed_c00079{left:722.666667pt;}
.x151_c00079{left:724.133333pt;}
.xdb_c00079{left:725.066667pt;}
.xcf_c00079{left:729.066667pt;}
.x138_c00079{left:731.333333pt;}
.x145_c00079{left:732.400000pt;}
.x116_c00079{left:734.133333pt;}
.x172_c00079{left:735.466667pt;}
.xee_c00079{left:736.400000pt;}
.x14b_c00079{left:739.733333pt;}
.xf8_c00079{left:741.333333pt;}
.x140_c00079{left:742.400000pt;}
.x139_c00079{left:743.866667pt;}
.x12c_c00079{left:746.800000pt;}
.xdc_c00079{left:747.733333pt;}
.xf5_c00079{left:749.333333pt;}
.x10c_c00079{left:751.066667pt;}
.x117_c00079{left:753.066667pt;}
.xff_c00079{left:754.533333pt;}
.x111_c00079{left:755.466667pt;}
.xd5_c00079{left:756.666667pt;}
.x141_c00079{left:758.133333pt;}
.x161_c00079{left:763.466667pt;}
.x175_c00079{left:765.466667pt;}
.x14a_c00079{left:766.800000pt;}
.x16e_c00079{left:767.733333pt;}
.x167_c00079{left:770.533333pt;}
.x130_c00079{left:772.533333pt;}
.x162_c00079{left:774.666667pt;}
.x173_c00079{left:777.600000pt;}
}





/* 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_c00080 {
    display:none;
  }
  .loading-indicator_c00080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00080 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_c00080 { 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_c00080" -> "#page-container .classname_c00080")
 */
.pf_c00080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00080 { /* 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_c00080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00080 { /* 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_c00080 { /* 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_c00080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00080 {overflow:visible;}
  }
}
.c_c00080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00080 { /* 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_c00080:after { /* webkit #35443 */
  content: '';
}
.t_c00080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00080 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 */
}
.__c00080 { /* 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_c00080 { /* info for Javascript */
  display:none;
}
.l_c00080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00080: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_c00080 {
    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_c00080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00080.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_c00080 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00080;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00080{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00080{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00080{transform:matrix(0.062750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062750,0.000000,0.000000,0.250000,0,0);}
.m49_c00080{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m77_c00080{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00080{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m69_c00080{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m61_c00080{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mef_c00080{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00080{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00080{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m68_c00080{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m60_c00080{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00080{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00080{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m91_c00080{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00080{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00080{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00080{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m7_c00080{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m59_c00080{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.m114_c00080{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m126_c00080{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m10_c00080{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m55_c00080{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m63_c00080{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00080{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m79_c00080{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c00080{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m39_c00080{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00080{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00080{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00080{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc_c00080{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m43_c00080{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m16_c00080{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me_c00080{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00080{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mb_c00080{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00080{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00080{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00080{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m12_c00080{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00080{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00080{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00080{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00080{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00080{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.me4_c00080{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m32_c00080{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00080{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m115_c00080{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m31_c00080{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m101_c00080{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m14_c00080{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00080{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00080{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m38_c00080{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m11_c00080{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.meb_c00080{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.md6_c00080{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00080{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00080{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mab_c00080{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00080{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00080{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00080{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.med_c00080{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m28_c00080{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m48_c00080{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00080{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00080{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00080{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00080{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00080{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.maa_c00080{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m75_c00080{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00080{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m57_c00080{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m109_c00080{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00080{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00080{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mff_c00080{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m53_c00080{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00080{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00080{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00080{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m90_c00080{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00080{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m124_c00080{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00080{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m46_c00080{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m29_c00080{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00080{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00080{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00080{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m106_c00080{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m52_c00080{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00080{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mba_c00080{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00080{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00080{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m13_c00080{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m18_c00080{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m95_c00080{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.md0_c00080{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00080{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m50_c00080{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00080{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00080{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00080{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m123_c00080{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m30_c00080{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mae_c00080{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00080{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00080{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00080{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00080{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m107_c00080{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m117_c00080{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mca_c00080{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m89_c00080{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00080{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md2_c00080{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m21_c00080{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00080{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m51_c00080{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00080{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m102_c00080{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00080{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00080{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00080{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m116_c00080{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00080{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00080{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00080{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md1_c00080{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m118_c00080{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00080{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m104_c00080{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00080{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00080{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m24_c00080{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00080{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3_c00080{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m35_c00080{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00080{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m74_c00080{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m112_c00080{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00080{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mee_c00080{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00080{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me3_c00080{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m40_c00080{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00080{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00080{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00080{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00080{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m45_c00080{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma_c00080{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m125_c00080{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m83_c00080{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00080{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00080{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mad_c00080{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00080{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00080{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00080{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m119_c00080{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me1_c00080{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me8_c00080{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m41_c00080{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m128_c00080{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me7_c00080{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m85_c00080{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m36_c00080{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4_c00080{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m44_c00080{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m67_c00080{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00080{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00080{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00080{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m105_c00080{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m42_c00080{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m100_c00080{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00080{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me6_c00080{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me0_c00080{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mce_c00080{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00080{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md7_c00080{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mde_c00080{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00080{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m73_c00080{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m47_c00080{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00080{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me2_c00080{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m78_c00080{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00080{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m20_c00080{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00080{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00080{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mea_c00080{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md8_c00080{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m17_c00080{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00080{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8_c00080{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00080{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md5_c00080{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00080{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00080{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00080{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m82_c00080{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m120_c00080{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m58_c00080{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mec_c00080{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00080{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me5_c00080{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mda_c00080{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m127_c00080{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00080{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m81_c00080{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m71_c00080{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mf_c00080{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00080{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m80_c00080{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00080{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m88_c00080{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m56_c00080{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.maf_c00080{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00080{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00080{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00080{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m66_c00080{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00080{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00080{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00080{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md3_c00080{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m19_c00080{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);}
.mfa_c00080{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00080{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15_c00080{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mac_c00080{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00080{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m92_c00080{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m108_c00080{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m26_c00080{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m110_c00080{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m70_c00080{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m25_c00080{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00080{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m113_c00080{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00080{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00080{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m64_c00080{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m65_c00080{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00080{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m86_c00080{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m87_c00080{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m76_c00080{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m129_c00080{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00080{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m103_c00080{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md4_c00080{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m54_c00080{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m27_c00080{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m33_c00080{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me9_c00080{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c00080{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00080{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00080{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00080{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00080{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m23_c00080{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m6_c00080{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00080{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m111_c00080{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m93_c00080{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00080{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00080{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md9_c00080{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00080{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m122_c00080{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m121_c00080{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m99_c00080{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00080{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00080{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m37_c00080{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c00080{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m98_c00080{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m72_c00080{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m97_c00080{transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);}
.m5_c00080{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00080{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m34_c00080{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m96_c00080{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m62_c00080{transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00080{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m0_c00080{transform:matrix(0.466000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466000,0.000000,0.000000,0.250000,0,0);}
.m94_c00080{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00080{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00080{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m84_c00080{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls0_c00080{letter-spacing:0.000000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{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__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00080{word-spacing:-17.500000px;}
.ws7_c00080{word-spacing:-8.168443px;}
.ws5_c00080{word-spacing:-6.250000px;}
.ws9_c00080{word-spacing:-0.051546px;}
.wsa_c00080{word-spacing:0.000000px;}
.ws6_c00080{word-spacing:5.384615px;}
.ws2_c00080{word-spacing:13.447307px;}
.ws1_c00080{word-spacing:23.211796px;}
.ws0_c00080{word-spacing:25.714286px;}
.ws4_c00080{word-spacing:36.000000px;}
.ws3_c00080{word-spacing:40.000000px;}
._1_c00080{width:53.428954px;}
._0_c00080{width:59.285714px;}
.fc0_c00080{color:transparent;}
.fs7_c00080{font-size:24.000000px;}
.fs8_c00080{font-size:30.000000px;}
.fs9_c00080{font-size:36.000000px;}
.fs6_c00080{font-size:42.000000px;}
.fs1_c00080{font-size:48.000000px;}
.fs3_c00080{font-size:54.000000px;}
.fs5_c00080{font-size:60.000000px;}
.fs2_c00080{font-size:66.000000px;}
.fs4_c00080{font-size:72.000000px;}
.fs0_c00080{font-size:84.000000px;}
.y0_c00080{bottom:0.000000px;}
.y7a_c00080{bottom:45.750000px;}
.y2_c00080{bottom:56.100000px;}
.y44_c00080{bottom:66.300000px;}
.y43_c00080{bottom:155.850000px;}
.y42_c00080{bottom:158.400000px;}
.y79_c00080{bottom:163.500000px;}
.y41_c00080{bottom:179.100000px;}
.y78_c00080{bottom:181.650000px;}
.y40_c00080{bottom:197.400000px;}
.y77_c00080{bottom:199.350000px;}
.y3f_c00080{bottom:215.400000px;}
.y76_c00080{bottom:217.650000px;}
.y3e_c00080{bottom:233.400000px;}
.y75_c00080{bottom:235.350000px;}
.y7b_c00080{bottom:241.500000px;}
.y3d_c00080{bottom:251.400000px;}
.y74_c00080{bottom:253.350000px;}
.y3c_c00080{bottom:269.100000px;}
.y73_c00080{bottom:271.050000px;}
.y3b_c00080{bottom:287.100000px;}
.y72_c00080{bottom:289.350000px;}
.y3a_c00080{bottom:304.800000px;}
.y71_c00080{bottom:307.050000px;}
.y39_c00080{bottom:323.100000px;}
.y70_c00080{bottom:325.050000px;}
.y38_c00080{bottom:340.800000px;}
.y6f_c00080{bottom:342.750000px;}
.y37_c00080{bottom:358.500000px;}
.y6e_c00080{bottom:360.300000px;}
.y36_c00080{bottom:376.500000px;}
.y6d_c00080{bottom:381.150000px;}
.y35_c00080{bottom:394.500000px;}
.y6c_c00080{bottom:400.950000px;}
.y34_c00080{bottom:412.500000px;}
.y6b_c00080{bottom:418.950000px;}
.y33_c00080{bottom:430.500000px;}
.y6a_c00080{bottom:436.650000px;}
.y32_c00080{bottom:448.500000px;}
.y69_c00080{bottom:454.650000px;}
.y31_c00080{bottom:466.500000px;}
.y68_c00080{bottom:472.650000px;}
.y30_c00080{bottom:484.500000px;}
.y67_c00080{bottom:490.350000px;}
.y2f_c00080{bottom:502.200000px;}
.y66_c00080{bottom:508.350000px;}
.y65_c00080{bottom:526.350000px;}
.y27_c00080{bottom:528.450000px;}
.y26_c00080{bottom:542.250000px;}
.y64_c00080{bottom:544.350000px;}
.y25_c00080{bottom:557.700000px;}
.y63_c00080{bottom:566.550000px;}
.y24_c00080{bottom:570.600000px;}
.y62_c00080{bottom:584.550000px;}
.y23_c00080{bottom:586.050000px;}
.y22_c00080{bottom:599.850000px;}
.y61_c00080{bottom:602.550000px;}
.y21_c00080{bottom:615.300000px;}
.y60_c00080{bottom:620.550000px;}
.y20_c00080{bottom:628.950000px;}
.y5f_c00080{bottom:638.250000px;}
.y1f_c00080{bottom:644.100000px;}
.y5e_c00080{bottom:656.250000px;}
.y1e_c00080{bottom:657.750000px;}
.y1d_c00080{bottom:672.450000px;}
.y2e_c00080{bottom:673.200000px;}
.y5d_c00080{bottom:673.950000px;}
.y1c_c00080{bottom:686.550000px;}
.y5c_c00080{bottom:695.400000px;}
.y1b_c00080{bottom:701.700000px;}
.y5b_c00080{bottom:714.150000px;}
.y1a_c00080{bottom:716.100000px;}
.y2d_c00080{bottom:718.200000px;}
.y19_c00080{bottom:730.050000px;}
.y5a_c00080{bottom:732.150000px;}
.y18_c00080{bottom:745.200000px;}
.y59_c00080{bottom:749.850000px;}
.y17_c00080{bottom:758.850000px;}
.y58_c00080{bottom:767.550000px;}
.y16_c00080{bottom:774.150000px;}
.y57_c00080{bottom:785.550000px;}
.y15_c00080{bottom:787.800000px;}
.y2b_c00080{bottom:788.700000px;}
.y14_c00080{bottom:802.200000px;}
.y2a_c00080{bottom:803.100000px;}
.y56_c00080{bottom:807.600000px;}
.y13_c00080{bottom:816.600000px;}
.y29_c00080{bottom:817.950000px;}
.y2c_c00080{bottom:820.050000px;}
.y55_c00080{bottom:825.900000px;}
.y12_c00080{bottom:831.300000px;}
.y28_c00080{bottom:831.900000px;}
.y54_c00080{bottom:844.200000px;}
.y11_c00080{bottom:845.700000px;}
.y53_c00080{bottom:861.900000px;}
.y10_c00080{bottom:862.200000px;}
.y52_c00080{bottom:879.600000px;}
.yf_c00080{bottom:884.550000px;}
.y51_c00080{bottom:897.300000px;}
.ye_c00080{bottom:902.550000px;}
.y50_c00080{bottom:915.300000px;}
.yd_c00080{bottom:920.850000px;}
.y4f_c00080{bottom:933.300000px;}
.yc_c00080{bottom:938.550000px;}
.y4e_c00080{bottom:951.300000px;}
.yb_c00080{bottom:965.100000px;}
.y4d_c00080{bottom:969.000000px;}
.ya_c00080{bottom:982.800000px;}
.y4c_c00080{bottom:987.000000px;}
.y9_c00080{bottom:1002.600000px;}
.y4b_c00080{bottom:1005.000000px;}
.y8_c00080{bottom:1018.800000px;}
.y4a_c00080{bottom:1023.000000px;}
.y7_c00080{bottom:1036.800000px;}
.y49_c00080{bottom:1040.700000px;}
.y6_c00080{bottom:1054.800000px;}
.y48_c00080{bottom:1058.700000px;}
.y5_c00080{bottom:1072.800000px;}
.y47_c00080{bottom:1081.050000px;}
.y4_c00080{bottom:1098.750000px;}
.y46_c00080{bottom:1099.050000px;}
.y3_c00080{bottom:1116.750000px;}
.y45_c00080{bottom:1117.050000px;}
.y1_c00080{bottom:1144.500000px;}
.h9_c00080{height:24.000000px;}
.ha_c00080{height:30.000000px;}
.hb_c00080{height:36.000000px;}
.h8_c00080{height:42.000000px;}
.h3_c00080{height:48.000000px;}
.h5_c00080{height:54.000000px;}
.h7_c00080{height:60.000000px;}
.h4_c00080{height:66.000000px;}
.h6_c00080{height:72.000000px;}
.h2_c00080{height:84.000000px;}
.h1_c00080{height:1269.750000px;}
.h0_c00080{height:1270.080048px;}
.w0_c00080{width:948.600036px;}
.w1_c00080{width:948.750000px;}
.x0_c00080{left:0.000000px;}
.x3_c00080{left:6.450000px;}
.x38_c00080{left:71.700000px;}
.x4_c00080{left:73.500000px;}
.x55_c00080{left:86.400000px;}
.x67_c00080{left:87.450000px;}
.x47_c00080{left:89.550000px;}
.xb_c00080{left:90.600000px;}
.x1f_c00080{left:92.250000px;}
.x9f_c00080{left:93.300000px;}
.x5b_c00080{left:101.400000px;}
.x5d_c00080{left:103.200000px;}
.x63_c00080{left:104.400000px;}
.x78_c00080{left:108.000000px;}
.x5_c00080{left:109.800000px;}
.xc_c00080{left:111.300000px;}
.x86_c00080{left:113.850000px;}
.x48_c00080{left:115.800000px;}
.x20_c00080{left:118.200000px;}
.x26_c00080{left:120.600000px;}
.x96_c00080{left:121.650000px;}
.x18_c00080{left:123.600000px;}
.x79_c00080{left:124.650000px;}
.x58_c00080{left:127.200000px;}
.x68_c00080{left:128.550000px;}
.xa0_c00080{left:130.350000px;}
.x2b_c00080{left:131.700000px;}
.x56_c00080{left:134.700000px;}
.x91_c00080{left:137.850000px;}
.x34_c00080{left:139.650000px;}
.x19_c00080{left:141.300000px;}
.x71_c00080{left:142.950000px;}
.x75_c00080{left:144.150000px;}
.x3e_c00080{left:145.200000px;}
.x6_c00080{left:147.900000px;}
.x4e_c00080{left:150.600000px;}
.x9d_c00080{left:152.850000px;}
.x49_c00080{left:154.950000px;}
.x5e_c00080{left:156.450000px;}
.x7a_c00080{left:158.100000px;}
.x72_c00080{left:160.200000px;}
.x29_c00080{left:161.550000px;}
.xa3_c00080{left:163.800000px;}
.x5c_c00080{left:166.500000px;}
.x2c_c00080{left:170.550000px;}
.xd_c00080{left:172.500000px;}
.x89_c00080{left:174.000000px;}
.x5f_c00080{left:175.500000px;}
.x3f_c00080{left:177.900000px;}
.x8b_c00080{left:179.550000px;}
.x94_c00080{left:180.600000px;}
.x35_c00080{left:182.850000px;}
.x59_c00080{left:184.050000px;}
.x39_c00080{left:185.850000px;}
.x57_c00080{left:186.900000px;}
.x9e_c00080{left:188.100000px;}
.x4f_c00080{left:189.900000px;}
.x8a_c00080{left:190.950000px;}
.x64_c00080{left:192.000000px;}
.x69_c00080{left:193.500000px;}
.xe_c00080{left:195.600000px;}
.x87_c00080{left:197.400000px;}
.x4a_c00080{left:198.450000px;}
.x27_c00080{left:200.550000px;}
.x8e_c00080{left:201.600000px;}
.xa6_c00080{left:203.100000px;}
.xf_c00080{left:204.600000px;}
.x60_c00080{left:206.850000px;}
.x2d_c00080{left:208.050000px;}
.x76_c00080{left:210.750000px;}
.x84_c00080{left:212.850000px;}
.x7b_c00080{left:215.400000px;}
.x1a_c00080{left:216.600000px;}
.x21_c00080{left:218.250000px;}
.xa8_c00080{left:219.300000px;}
.x10_c00080{left:221.550000px;}
.x65_c00080{left:223.800000px;}
.x61_c00080{left:225.900000px;}
.x74_c00080{left:227.550000px;}
.x8c_c00080{left:231.900000px;}
.x7_c00080{left:233.250000px;}
.x3a_c00080{left:235.500000px;}
.x2a_c00080{left:236.700000px;}
.xa5_c00080{left:239.400000px;}
.x6b_c00080{left:241.500000px;}
.xa1_c00080{left:243.750000px;}
.x6a_c00080{left:244.950000px;}
.x50_c00080{left:246.750000px;}
.x11_c00080{left:247.800000px;}
.x4b_c00080{left:253.950000px;}
.x73_c00080{left:255.150000px;}
.x6c_c00080{left:256.200000px;}
.x28_c00080{left:257.700000px;}
.x22_c00080{left:260.700000px;}
.x6d_c00080{left:263.100000px;}
.x7d_c00080{left:264.900000px;}
.x12_c00080{left:266.100000px;}
.x92_c00080{left:267.900000px;}
.x6e_c00080{left:270.600000px;}
.x4c_c00080{left:271.650000px;}
.x40_c00080{left:273.300000px;}
.x8d_c00080{left:274.350000px;}
.x80_c00080{left:275.700000px;}
.x97_c00080{left:276.750000px;}
.x43_c00080{left:278.550000px;}
.x36_c00080{left:279.600000px;}
.x13_c00080{left:281.550000px;}
.x9a_c00080{left:284.100000px;}
.x4d_c00080{left:287.550000px;}
.x77_c00080{left:289.200000px;}
.x2e_c00080{left:291.150000px;}
.x1b_c00080{left:292.200000px;}
.x66_c00080{left:296.550000px;}
.xa2_c00080{left:297.600000px;}
.x23_c00080{left:298.800000px;}
.x62_c00080{left:300.000000px;}
.x98_c00080{left:301.950000px;}
.x82_c00080{left:303.150000px;}
.x5a_c00080{left:305.100000px;}
.xa4_c00080{left:308.550000px;}
.x44_c00080{left:310.500000px;}
.x51_c00080{left:311.550000px;}
.x7c_c00080{left:314.100000px;}
.x2f_c00080{left:315.300000px;}
.x1_c00080{left:317.100000px;}
.x9b_c00080{left:319.800000px;}
.x8_c00080{left:321.750000px;}
.x24_c00080{left:323.250000px;}
.x3b_c00080{left:324.750000px;}
.x88_c00080{left:325.800000px;}
.x30_c00080{left:327.600000px;}
.x95_c00080{left:329.250000px;}
.x1c_c00080{left:331.050000px;}
.x52_c00080{left:332.400000px;}
.x9_c00080{left:334.050000px;}
.x93_c00080{left:337.500000px;}
.x6f_c00080{left:340.500000px;}
.x14_c00080{left:342.000000px;}
.x41_c00080{left:343.050000px;}
.x3c_c00080{left:344.250000px;}
.x31_c00080{left:345.300000px;}
.x25_c00080{left:346.350000px;}
.x45_c00080{left:349.500000px;}
.x15_c00080{left:352.500000px;}
.x37_c00080{left:354.750000px;}
.x42_c00080{left:355.950000px;}
.x8f_c00080{left:358.200000px;}
.x32_c00080{left:361.500000px;}
.x53_c00080{left:363.000000px;}
.xa7_c00080{left:364.800000px;}
.x81_c00080{left:366.450000px;}
.x7f_c00080{left:367.950000px;}
.x16_c00080{left:369.000000px;}
.x1d_c00080{left:370.950000px;}
.x7e_c00080{left:372.300000px;}
.x99_c00080{left:374.700000px;}
.x85_c00080{left:379.800000px;}
.x90_c00080{left:382.650000px;}
.x33_c00080{left:385.200000px;}
.x46_c00080{left:386.250000px;}
.x83_c00080{left:389.850000px;}
.xa_c00080{left:391.950000px;}
.x17_c00080{left:393.150000px;}
.x1e_c00080{left:396.450000px;}
.x54_c00080{left:397.500000px;}
.x3d_c00080{left:399.000000px;}
.x70_c00080{left:400.350000px;}
.x9c_c00080{left:406.950000px;}
.x132_c00080{left:432.000000px;}
.x135_c00080{left:449.700000px;}
.xa9_c00080{left:451.050000px;}
.x140_c00080{left:452.250000px;}
.xca_c00080{left:455.550000px;}
.x13a_c00080{left:463.050000px;}
.x141_c00080{left:465.150000px;}
.xb7_c00080{left:468.300000px;}
.x11d_c00080{left:469.500000px;}
.xaa_c00080{left:470.850000px;}
.x100_c00080{left:472.650000px;}
.x11b_c00080{left:474.150000px;}
.x12a_c00080{left:475.950000px;}
.xf4_c00080{left:477.150000px;}
.xbd_c00080{left:479.550000px;}
.xb1_c00080{left:481.500000px;}
.x108_c00080{left:483.000000px;}
.x13d_c00080{left:484.200000px;}
.x115_c00080{left:485.850000px;}
.x10d_c00080{left:487.500000px;}
.xfa_c00080{left:491.250000px;}
.x133_c00080{left:493.950000px;}
.x136_c00080{left:495.000000px;}
.xbe_c00080{left:496.800000px;}
.xc5_c00080{left:498.150000px;}
.xe8_c00080{left:499.950000px;}
.x101_c00080{left:501.150000px;}
.xb2_c00080{left:504.600000px;}
.xe5_c00080{left:506.400000px;}
.x109_c00080{left:508.050000px;}
.x112_c00080{left:509.400000px;}
.xed_c00080{left:510.900000px;}
.xcb_c00080{left:513.600000px;}
.xdf_c00080{left:515.850000px;}
.xc6_c00080{left:518.700000px;}
.x13b_c00080{left:519.900000px;}
.x12d_c00080{left:521.100000px;}
.xdc_c00080{left:522.600000px;}
.xb8_c00080{left:523.800000px;}
.x10f_c00080{left:525.600000px;}
.xe6_c00080{left:526.950000px;}
.x118_c00080{left:528.600000px;}
.xab_c00080{left:531.300000px;}
.xd7_c00080{left:532.650000px;}
.xe0_c00080{left:534.900000px;}
.xfe_c00080{left:538.650000px;}
.x131_c00080{left:539.700000px;}
.xbf_c00080{left:541.050000px;}
.x10a_c00080{left:543.000000px;}
.x113_c00080{left:545.100000px;}
.xb9_c00080{left:546.150000px;}
.xf5_c00080{left:548.700000px;}
.xb3_c00080{left:551.700000px;}
.xcf_c00080{left:555.300000px;}
.xfb_c00080{left:556.950000px;}
.xc0_c00080{left:558.300000px;}
.x128_c00080{left:559.500000px;}
.x110_c00080{left:560.850000px;}
.xe9_c00080{left:562.200000px;}
.x10e_c00080{left:566.700000px;}
.x13e_c00080{left:569.100000px;}
.x13c_c00080{left:570.300000px;}
.xd3_c00080{left:571.800000px;}
.xcc_c00080{left:573.300000px;}
.xac_c00080{left:575.250000px;}
.xe1_c00080{left:576.600000px;}
.xdd_c00080{left:578.700000px;}
.x134_c00080{left:580.350000px;}
.x122_c00080{left:581.400000px;}
.xd0_c00080{left:583.350000px;}
.xf6_c00080{left:584.700000px;}
.x106_c00080{left:585.750000px;}
.x102_c00080{left:587.850000px;}
.xc7_c00080{left:590.400000px;}
.xee_c00080{left:592.650000px;}
.xe2_c00080{left:594.300000px;}
.xf7_c00080{left:595.800000px;}
.xb4_c00080{left:597.450000px;}
.x10b_c00080{left:598.800000px;}
.x121_c00080{left:600.450000px;}
.xea_c00080{left:602.100000px;}
.xba_c00080{left:604.800000px;}
.x137_c00080{left:605.850000px;}
.xc1_c00080{left:610.500000px;}
.xd1_c00080{left:612.450000px;}
.xd8_c00080{left:614.700000px;}
.x12e_c00080{left:616.500000px;}
.xd4_c00080{left:619.650000px;}
.x11e_c00080{left:622.500000px;}
.x12b_c00080{left:623.550000px;}
.xad_c00080{left:624.900000px;}
.x103_c00080{left:625.950000px;}
.x129_c00080{left:627.900000px;}
.xcd_c00080{left:629.400000px;}
.x138_c00080{left:631.350000px;}
.x116_c00080{left:636.000000px;}
.x126_c00080{left:637.650000px;}
.x111_c00080{left:639.300000px;}
.x123_c00080{left:640.500000px;}
.xd9_c00080{left:641.700000px;}
.xeb_c00080{left:642.750000px;}
.xd5_c00080{left:645.600000px;}
.xae_c00080{left:648.600000px;}
.x10c_c00080{left:650.700000px;}
.xc2_c00080{left:655.500000px;}
.xde_c00080{left:657.600000px;}
.x119_c00080{left:660.300000px;}
.xf8_c00080{left:662.700000px;}
.xaf_c00080{left:664.050000px;}
.xda_c00080{left:665.100000px;}
.xe3_c00080{left:666.300000px;}
.x11f_c00080{left:668.550000px;}
.x124_c00080{left:671.400000px;}
.x104_c00080{left:673.800000px;}
.xb5_c00080{left:676.950000px;}
.xdb_c00080{left:678.450000px;}
.xf2_c00080{left:679.800000px;}
.x117_c00080{left:681.300000px;}
.xef_c00080{left:682.650000px;}
.x139_c00080{left:684.300000px;}
.x107_c00080{left:686.250000px;}
.xc3_c00080{left:688.200000px;}
.x11c_c00080{left:691.950000px;}
.xce_c00080{left:693.900000px;}
.xc8_c00080{left:696.000000px;}
.x127_c00080{left:699.150000px;}
.x130_c00080{left:700.350000px;}
.xbb_c00080{left:701.700000px;}
.xd2_c00080{left:705.000000px;}
.x114_c00080{left:707.700000px;}
.x11a_c00080{left:709.650000px;}
.x12f_c00080{left:711.300000px;}
.xc4_c00080{left:712.350000px;}
.xfd_c00080{left:714.300000px;}
.xec_c00080{left:716.100000px;}
.xf0_c00080{left:717.150000px;}
.xf9_c00080{left:718.500000px;}
.xf3_c00080{left:720.900000px;}
.xe4_c00080{left:722.400000px;}
.x142_c00080{left:723.600000px;}
.x125_c00080{left:728.250000px;}
.x13f_c00080{left:730.200000px;}
.xbc_c00080{left:733.050000px;}
.xb6_c00080{left:734.850000px;}
.xf1_c00080{left:736.200000px;}
.xfc_c00080{left:737.700000px;}
.xff_c00080{left:738.750000px;}
.xb0_c00080{left:741.750000px;}
.xd6_c00080{left:744.300000px;}
.xe7_c00080{left:746.250000px;}
.x12c_c00080{left:748.350000px;}
.x105_c00080{left:750.150000px;}
.x2_c00080{left:752.700000px;}
.xc9_c00080{left:755.100000px;}
.x120_c00080{left:759.300000px;}
.x143_c00080{left:920.850000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws8_c00080{word-spacing:-15.555556pt;}
.ws7_c00080{word-spacing:-7.260839pt;}
.ws5_c00080{word-spacing:-5.555556pt;}
.ws9_c00080{word-spacing:-0.045819pt;}
.wsa_c00080{word-spacing:0.000000pt;}
.ws6_c00080{word-spacing:4.786325pt;}
.ws2_c00080{word-spacing:11.953162pt;}
.ws1_c00080{word-spacing:20.632708pt;}
.ws0_c00080{word-spacing:22.857143pt;}
.ws4_c00080{word-spacing:32.000000pt;}
.ws3_c00080{word-spacing:35.555556pt;}
._1_c00080{width:47.492404pt;}
._0_c00080{width:52.698413pt;}
.fs7_c00080{font-size:21.333333pt;}
.fs8_c00080{font-size:26.666667pt;}
.fs9_c00080{font-size:32.000000pt;}
.fs6_c00080{font-size:37.333333pt;}
.fs1_c00080{font-size:42.666667pt;}
.fs3_c00080{font-size:48.000000pt;}
.fs5_c00080{font-size:53.333333pt;}
.fs2_c00080{font-size:58.666667pt;}
.fs4_c00080{font-size:64.000000pt;}
.fs0_c00080{font-size:74.666667pt;}
.y0_c00080{bottom:0.000000pt;}
.y7a_c00080{bottom:40.666667pt;}
.y2_c00080{bottom:49.866667pt;}
.y44_c00080{bottom:58.933333pt;}
.y43_c00080{bottom:138.533333pt;}
.y42_c00080{bottom:140.800000pt;}
.y79_c00080{bottom:145.333333pt;}
.y41_c00080{bottom:159.200000pt;}
.y78_c00080{bottom:161.466667pt;}
.y40_c00080{bottom:175.466667pt;}
.y77_c00080{bottom:177.200000pt;}
.y3f_c00080{bottom:191.466667pt;}
.y76_c00080{bottom:193.466667pt;}
.y3e_c00080{bottom:207.466667pt;}
.y75_c00080{bottom:209.200000pt;}
.y7b_c00080{bottom:214.666667pt;}
.y3d_c00080{bottom:223.466667pt;}
.y74_c00080{bottom:225.200000pt;}
.y3c_c00080{bottom:239.200000pt;}
.y73_c00080{bottom:240.933333pt;}
.y3b_c00080{bottom:255.200000pt;}
.y72_c00080{bottom:257.200000pt;}
.y3a_c00080{bottom:270.933333pt;}
.y71_c00080{bottom:272.933333pt;}
.y39_c00080{bottom:287.200000pt;}
.y70_c00080{bottom:288.933333pt;}
.y38_c00080{bottom:302.933333pt;}
.y6f_c00080{bottom:304.666667pt;}
.y37_c00080{bottom:318.666667pt;}
.y6e_c00080{bottom:320.266667pt;}
.y36_c00080{bottom:334.666667pt;}
.y6d_c00080{bottom:338.800000pt;}
.y35_c00080{bottom:350.666667pt;}
.y6c_c00080{bottom:356.400000pt;}
.y34_c00080{bottom:366.666667pt;}
.y6b_c00080{bottom:372.400000pt;}
.y33_c00080{bottom:382.666667pt;}
.y6a_c00080{bottom:388.133333pt;}
.y32_c00080{bottom:398.666667pt;}
.y69_c00080{bottom:404.133333pt;}
.y31_c00080{bottom:414.666667pt;}
.y68_c00080{bottom:420.133333pt;}
.y30_c00080{bottom:430.666667pt;}
.y67_c00080{bottom:435.866667pt;}
.y2f_c00080{bottom:446.400000pt;}
.y66_c00080{bottom:451.866667pt;}
.y65_c00080{bottom:467.866667pt;}
.y27_c00080{bottom:469.733333pt;}
.y26_c00080{bottom:482.000000pt;}
.y64_c00080{bottom:483.866667pt;}
.y25_c00080{bottom:495.733333pt;}
.y63_c00080{bottom:503.600000pt;}
.y24_c00080{bottom:507.200000pt;}
.y62_c00080{bottom:519.600000pt;}
.y23_c00080{bottom:520.933333pt;}
.y22_c00080{bottom:533.200000pt;}
.y61_c00080{bottom:535.600000pt;}
.y21_c00080{bottom:546.933333pt;}
.y60_c00080{bottom:551.600000pt;}
.y20_c00080{bottom:559.066667pt;}
.y5f_c00080{bottom:567.333333pt;}
.y1f_c00080{bottom:572.533333pt;}
.y5e_c00080{bottom:583.333333pt;}
.y1e_c00080{bottom:584.666667pt;}
.y1d_c00080{bottom:597.733333pt;}
.y2e_c00080{bottom:598.400000pt;}
.y5d_c00080{bottom:599.066667pt;}
.y1c_c00080{bottom:610.266667pt;}
.y5c_c00080{bottom:618.133333pt;}
.y1b_c00080{bottom:623.733333pt;}
.y5b_c00080{bottom:634.800000pt;}
.y1a_c00080{bottom:636.533333pt;}
.y2d_c00080{bottom:638.400000pt;}
.y19_c00080{bottom:648.933333pt;}
.y5a_c00080{bottom:650.800000pt;}
.y18_c00080{bottom:662.400000pt;}
.y59_c00080{bottom:666.533333pt;}
.y17_c00080{bottom:674.533333pt;}
.y58_c00080{bottom:682.266667pt;}
.y16_c00080{bottom:688.133333pt;}
.y57_c00080{bottom:698.266667pt;}
.y15_c00080{bottom:700.266667pt;}
.y2b_c00080{bottom:701.066667pt;}
.y14_c00080{bottom:713.066667pt;}
.y2a_c00080{bottom:713.866667pt;}
.y56_c00080{bottom:717.866667pt;}
.y13_c00080{bottom:725.866667pt;}
.y29_c00080{bottom:727.066667pt;}
.y2c_c00080{bottom:728.933333pt;}
.y55_c00080{bottom:734.133333pt;}
.y12_c00080{bottom:738.933333pt;}
.y28_c00080{bottom:739.466667pt;}
.y54_c00080{bottom:750.400000pt;}
.y11_c00080{bottom:751.733333pt;}
.y53_c00080{bottom:766.133333pt;}
.y10_c00080{bottom:766.400000pt;}
.y52_c00080{bottom:781.866667pt;}
.yf_c00080{bottom:786.266667pt;}
.y51_c00080{bottom:797.600000pt;}
.ye_c00080{bottom:802.266667pt;}
.y50_c00080{bottom:813.600000pt;}
.yd_c00080{bottom:818.533333pt;}
.y4f_c00080{bottom:829.600000pt;}
.yc_c00080{bottom:834.266667pt;}
.y4e_c00080{bottom:845.600000pt;}
.yb_c00080{bottom:857.866667pt;}
.y4d_c00080{bottom:861.333333pt;}
.ya_c00080{bottom:873.600000pt;}
.y4c_c00080{bottom:877.333333pt;}
.y9_c00080{bottom:891.200000pt;}
.y4b_c00080{bottom:893.333333pt;}
.y8_c00080{bottom:905.600000pt;}
.y4a_c00080{bottom:909.333333pt;}
.y7_c00080{bottom:921.600000pt;}
.y49_c00080{bottom:925.066667pt;}
.y6_c00080{bottom:937.600000pt;}
.y48_c00080{bottom:941.066667pt;}
.y5_c00080{bottom:953.600000pt;}
.y47_c00080{bottom:960.933333pt;}
.y4_c00080{bottom:976.666667pt;}
.y46_c00080{bottom:976.933333pt;}
.y3_c00080{bottom:992.666667pt;}
.y45_c00080{bottom:992.933333pt;}
.y1_c00080{bottom:1017.333333pt;}
.h9_c00080{height:21.333333pt;}
.ha_c00080{height:26.666667pt;}
.hb_c00080{height:32.000000pt;}
.h8_c00080{height:37.333333pt;}
.h3_c00080{height:42.666667pt;}
.h5_c00080{height:48.000000pt;}
.h7_c00080{height:53.333333pt;}
.h4_c00080{height:58.666667pt;}
.h6_c00080{height:64.000000pt;}
.h2_c00080{height:74.666667pt;}
.h1_c00080{height:1128.666667pt;}
.h0_c00080{height:1128.960043pt;}
.w0_c00080{width:843.200032pt;}
.w1_c00080{width:843.333333pt;}
.x0_c00080{left:0.000000pt;}
.x3_c00080{left:5.733333pt;}
.x38_c00080{left:63.733333pt;}
.x4_c00080{left:65.333333pt;}
.x55_c00080{left:76.800000pt;}
.x67_c00080{left:77.733333pt;}
.x47_c00080{left:79.600000pt;}
.xb_c00080{left:80.533333pt;}
.x1f_c00080{left:82.000000pt;}
.x9f_c00080{left:82.933333pt;}
.x5b_c00080{left:90.133333pt;}
.x5d_c00080{left:91.733333pt;}
.x63_c00080{left:92.800000pt;}
.x78_c00080{left:96.000000pt;}
.x5_c00080{left:97.600000pt;}
.xc_c00080{left:98.933333pt;}
.x86_c00080{left:101.200000pt;}
.x48_c00080{left:102.933333pt;}
.x20_c00080{left:105.066667pt;}
.x26_c00080{left:107.200000pt;}
.x96_c00080{left:108.133333pt;}
.x18_c00080{left:109.866667pt;}
.x79_c00080{left:110.800000pt;}
.x58_c00080{left:113.066667pt;}
.x68_c00080{left:114.266667pt;}
.xa0_c00080{left:115.866667pt;}
.x2b_c00080{left:117.066667pt;}
.x56_c00080{left:119.733333pt;}
.x91_c00080{left:122.533333pt;}
.x34_c00080{left:124.133333pt;}
.x19_c00080{left:125.600000pt;}
.x71_c00080{left:127.066667pt;}
.x75_c00080{left:128.133333pt;}
.x3e_c00080{left:129.066667pt;}
.x6_c00080{left:131.466667pt;}
.x4e_c00080{left:133.866667pt;}
.x9d_c00080{left:135.866667pt;}
.x49_c00080{left:137.733333pt;}
.x5e_c00080{left:139.066667pt;}
.x7a_c00080{left:140.533333pt;}
.x72_c00080{left:142.400000pt;}
.x29_c00080{left:143.600000pt;}
.xa3_c00080{left:145.600000pt;}
.x5c_c00080{left:148.000000pt;}
.x2c_c00080{left:151.600000pt;}
.xd_c00080{left:153.333333pt;}
.x89_c00080{left:154.666667pt;}
.x5f_c00080{left:156.000000pt;}
.x3f_c00080{left:158.133333pt;}
.x8b_c00080{left:159.600000pt;}
.x94_c00080{left:160.533333pt;}
.x35_c00080{left:162.533333pt;}
.x59_c00080{left:163.600000pt;}
.x39_c00080{left:165.200000pt;}
.x57_c00080{left:166.133333pt;}
.x9e_c00080{left:167.200000pt;}
.x4f_c00080{left:168.800000pt;}
.x8a_c00080{left:169.733333pt;}
.x64_c00080{left:170.666667pt;}
.x69_c00080{left:172.000000pt;}
.xe_c00080{left:173.866667pt;}
.x87_c00080{left:175.466667pt;}
.x4a_c00080{left:176.400000pt;}
.x27_c00080{left:178.266667pt;}
.x8e_c00080{left:179.200000pt;}
.xa6_c00080{left:180.533333pt;}
.xf_c00080{left:181.866667pt;}
.x60_c00080{left:183.866667pt;}
.x2d_c00080{left:184.933333pt;}
.x76_c00080{left:187.333333pt;}
.x84_c00080{left:189.200000pt;}
.x7b_c00080{left:191.466667pt;}
.x1a_c00080{left:192.533333pt;}
.x21_c00080{left:194.000000pt;}
.xa8_c00080{left:194.933333pt;}
.x10_c00080{left:196.933333pt;}
.x65_c00080{left:198.933333pt;}
.x61_c00080{left:200.800000pt;}
.x74_c00080{left:202.266667pt;}
.x8c_c00080{left:206.133333pt;}
.x7_c00080{left:207.333333pt;}
.x3a_c00080{left:209.333333pt;}
.x2a_c00080{left:210.400000pt;}
.xa5_c00080{left:212.800000pt;}
.x6b_c00080{left:214.666667pt;}
.xa1_c00080{left:216.666667pt;}
.x6a_c00080{left:217.733333pt;}
.x50_c00080{left:219.333333pt;}
.x11_c00080{left:220.266667pt;}
.x4b_c00080{left:225.733333pt;}
.x73_c00080{left:226.800000pt;}
.x6c_c00080{left:227.733333pt;}
.x28_c00080{left:229.066667pt;}
.x22_c00080{left:231.733333pt;}
.x6d_c00080{left:233.866667pt;}
.x7d_c00080{left:235.466667pt;}
.x12_c00080{left:236.533333pt;}
.x92_c00080{left:238.133333pt;}
.x6e_c00080{left:240.533333pt;}
.x4c_c00080{left:241.466667pt;}
.x40_c00080{left:242.933333pt;}
.x8d_c00080{left:243.866667pt;}
.x80_c00080{left:245.066667pt;}
.x97_c00080{left:246.000000pt;}
.x43_c00080{left:247.600000pt;}
.x36_c00080{left:248.533333pt;}
.x13_c00080{left:250.266667pt;}
.x9a_c00080{left:252.533333pt;}
.x4d_c00080{left:255.600000pt;}
.x77_c00080{left:257.066667pt;}
.x2e_c00080{left:258.800000pt;}
.x1b_c00080{left:259.733333pt;}
.x66_c00080{left:263.600000pt;}
.xa2_c00080{left:264.533333pt;}
.x23_c00080{left:265.600000pt;}
.x62_c00080{left:266.666667pt;}
.x98_c00080{left:268.400000pt;}
.x82_c00080{left:269.466667pt;}
.x5a_c00080{left:271.200000pt;}
.xa4_c00080{left:274.266667pt;}
.x44_c00080{left:276.000000pt;}
.x51_c00080{left:276.933333pt;}
.x7c_c00080{left:279.200000pt;}
.x2f_c00080{left:280.266667pt;}
.x1_c00080{left:281.866667pt;}
.x9b_c00080{left:284.266667pt;}
.x8_c00080{left:286.000000pt;}
.x24_c00080{left:287.333333pt;}
.x3b_c00080{left:288.666667pt;}
.x88_c00080{left:289.600000pt;}
.x30_c00080{left:291.200000pt;}
.x95_c00080{left:292.666667pt;}
.x1c_c00080{left:294.266667pt;}
.x52_c00080{left:295.466667pt;}
.x9_c00080{left:296.933333pt;}
.x93_c00080{left:300.000000pt;}
.x6f_c00080{left:302.666667pt;}
.x14_c00080{left:304.000000pt;}
.x41_c00080{left:304.933333pt;}
.x3c_c00080{left:306.000000pt;}
.x31_c00080{left:306.933333pt;}
.x25_c00080{left:307.866667pt;}
.x45_c00080{left:310.666667pt;}
.x15_c00080{left:313.333333pt;}
.x37_c00080{left:315.333333pt;}
.x42_c00080{left:316.400000pt;}
.x8f_c00080{left:318.400000pt;}
.x32_c00080{left:321.333333pt;}
.x53_c00080{left:322.666667pt;}
.xa7_c00080{left:324.266667pt;}
.x81_c00080{left:325.733333pt;}
.x7f_c00080{left:327.066667pt;}
.x16_c00080{left:328.000000pt;}
.x1d_c00080{left:329.733333pt;}
.x7e_c00080{left:330.933333pt;}
.x99_c00080{left:333.066667pt;}
.x85_c00080{left:337.600000pt;}
.x90_c00080{left:340.133333pt;}
.x33_c00080{left:342.400000pt;}
.x46_c00080{left:343.333333pt;}
.x83_c00080{left:346.533333pt;}
.xa_c00080{left:348.400000pt;}
.x17_c00080{left:349.466667pt;}
.x1e_c00080{left:352.400000pt;}
.x54_c00080{left:353.333333pt;}
.x3d_c00080{left:354.666667pt;}
.x70_c00080{left:355.866667pt;}
.x9c_c00080{left:361.733333pt;}
.x132_c00080{left:384.000000pt;}
.x135_c00080{left:399.733333pt;}
.xa9_c00080{left:400.933333pt;}
.x140_c00080{left:402.000000pt;}
.xca_c00080{left:404.933333pt;}
.x13a_c00080{left:411.600000pt;}
.x141_c00080{left:413.466667pt;}
.xb7_c00080{left:416.266667pt;}
.x11d_c00080{left:417.333333pt;}
.xaa_c00080{left:418.533333pt;}
.x100_c00080{left:420.133333pt;}
.x11b_c00080{left:421.466667pt;}
.x12a_c00080{left:423.066667pt;}
.xf4_c00080{left:424.133333pt;}
.xbd_c00080{left:426.266667pt;}
.xb1_c00080{left:428.000000pt;}
.x108_c00080{left:429.333333pt;}
.x13d_c00080{left:430.400000pt;}
.x115_c00080{left:431.866667pt;}
.x10d_c00080{left:433.333333pt;}
.xfa_c00080{left:436.666667pt;}
.x133_c00080{left:439.066667pt;}
.x136_c00080{left:440.000000pt;}
.xbe_c00080{left:441.600000pt;}
.xc5_c00080{left:442.800000pt;}
.xe8_c00080{left:444.400000pt;}
.x101_c00080{left:445.466667pt;}
.xb2_c00080{left:448.533333pt;}
.xe5_c00080{left:450.133333pt;}
.x109_c00080{left:451.600000pt;}
.x112_c00080{left:452.800000pt;}
.xed_c00080{left:454.133333pt;}
.xcb_c00080{left:456.533333pt;}
.xdf_c00080{left:458.533333pt;}
.xc6_c00080{left:461.066667pt;}
.x13b_c00080{left:462.133333pt;}
.x12d_c00080{left:463.200000pt;}
.xdc_c00080{left:464.533333pt;}
.xb8_c00080{left:465.600000pt;}
.x10f_c00080{left:467.200000pt;}
.xe6_c00080{left:468.400000pt;}
.x118_c00080{left:469.866667pt;}
.xab_c00080{left:472.266667pt;}
.xd7_c00080{left:473.466667pt;}
.xe0_c00080{left:475.466667pt;}
.xfe_c00080{left:478.800000pt;}
.x131_c00080{left:479.733333pt;}
.xbf_c00080{left:480.933333pt;}
.x10a_c00080{left:482.666667pt;}
.x113_c00080{left:484.533333pt;}
.xb9_c00080{left:485.466667pt;}
.xf5_c00080{left:487.733333pt;}
.xb3_c00080{left:490.400000pt;}
.xcf_c00080{left:493.600000pt;}
.xfb_c00080{left:495.066667pt;}
.xc0_c00080{left:496.266667pt;}
.x128_c00080{left:497.333333pt;}
.x110_c00080{left:498.533333pt;}
.xe9_c00080{left:499.733333pt;}
.x10e_c00080{left:503.733333pt;}
.x13e_c00080{left:505.866667pt;}
.x13c_c00080{left:506.933333pt;}
.xd3_c00080{left:508.266667pt;}
.xcc_c00080{left:509.600000pt;}
.xac_c00080{left:511.333333pt;}
.xe1_c00080{left:512.533333pt;}
.xdd_c00080{left:514.400000pt;}
.x134_c00080{left:515.866667pt;}
.x122_c00080{left:516.800000pt;}
.xd0_c00080{left:518.533333pt;}
.xf6_c00080{left:519.733333pt;}
.x106_c00080{left:520.666667pt;}
.x102_c00080{left:522.533333pt;}
.xc7_c00080{left:524.800000pt;}
.xee_c00080{left:526.800000pt;}
.xe2_c00080{left:528.266667pt;}
.xf7_c00080{left:529.600000pt;}
.xb4_c00080{left:531.066667pt;}
.x10b_c00080{left:532.266667pt;}
.x121_c00080{left:533.733333pt;}
.xea_c00080{left:535.200000pt;}
.xba_c00080{left:537.600000pt;}
.x137_c00080{left:538.533333pt;}
.xc1_c00080{left:542.666667pt;}
.xd1_c00080{left:544.400000pt;}
.xd8_c00080{left:546.400000pt;}
.x12e_c00080{left:548.000000pt;}
.xd4_c00080{left:550.800000pt;}
.x11e_c00080{left:553.333333pt;}
.x12b_c00080{left:554.266667pt;}
.xad_c00080{left:555.466667pt;}
.x103_c00080{left:556.400000pt;}
.x129_c00080{left:558.133333pt;}
.xcd_c00080{left:559.466667pt;}
.x138_c00080{left:561.200000pt;}
.x116_c00080{left:565.333333pt;}
.x126_c00080{left:566.800000pt;}
.x111_c00080{left:568.266667pt;}
.x123_c00080{left:569.333333pt;}
.xd9_c00080{left:570.400000pt;}
.xeb_c00080{left:571.333333pt;}
.xd5_c00080{left:573.866667pt;}
.xae_c00080{left:576.533333pt;}
.x10c_c00080{left:578.400000pt;}
.xc2_c00080{left:582.666667pt;}
.xde_c00080{left:584.533333pt;}
.x119_c00080{left:586.933333pt;}
.xf8_c00080{left:589.066667pt;}
.xaf_c00080{left:590.266667pt;}
.xda_c00080{left:591.200000pt;}
.xe3_c00080{left:592.266667pt;}
.x11f_c00080{left:594.266667pt;}
.x124_c00080{left:596.800000pt;}
.x104_c00080{left:598.933333pt;}
.xb5_c00080{left:601.733333pt;}
.xdb_c00080{left:603.066667pt;}
.xf2_c00080{left:604.266667pt;}
.x117_c00080{left:605.600000pt;}
.xef_c00080{left:606.800000pt;}
.x139_c00080{left:608.266667pt;}
.x107_c00080{left:610.000000pt;}
.xc3_c00080{left:611.733333pt;}
.x11c_c00080{left:615.066667pt;}
.xce_c00080{left:616.800000pt;}
.xc8_c00080{left:618.666667pt;}
.x127_c00080{left:621.466667pt;}
.x130_c00080{left:622.533333pt;}
.xbb_c00080{left:623.733333pt;}
.xd2_c00080{left:626.666667pt;}
.x114_c00080{left:629.066667pt;}
.x11a_c00080{left:630.800000pt;}
.x12f_c00080{left:632.266667pt;}
.xc4_c00080{left:633.200000pt;}
.xfd_c00080{left:634.933333pt;}
.xec_c00080{left:636.533333pt;}
.xf0_c00080{left:637.466667pt;}
.xf9_c00080{left:638.666667pt;}
.xf3_c00080{left:640.800000pt;}
.xe4_c00080{left:642.133333pt;}
.x142_c00080{left:643.200000pt;}
.x125_c00080{left:647.333333pt;}
.x13f_c00080{left:649.066667pt;}
.xbc_c00080{left:651.600000pt;}
.xb6_c00080{left:653.200000pt;}
.xf1_c00080{left:654.400000pt;}
.xfc_c00080{left:655.733333pt;}
.xff_c00080{left:656.666667pt;}
.xb0_c00080{left:659.333333pt;}
.xd6_c00080{left:661.600000pt;}
.xe7_c00080{left:663.333333pt;}
.x12c_c00080{left:665.200000pt;}
.x105_c00080{left:666.800000pt;}
.x2_c00080{left:669.066667pt;}
.xc9_c00080{left:671.200000pt;}
.x120_c00080{left:674.933333pt;}
.x143_c00080{left:818.533333pt;}
}





/* 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_c00081 {
    display:none;
  }
  .loading-indicator_c00081.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00081 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_c00081 { 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_c00081" -> "#page-container .classname_c00081")
 */
.pf_c00081 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00081 { /* 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_c00081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00081 { /* 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_c00081 { /* 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_c00081 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00081 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00081 {overflow:visible;}
  }
}
.c_c00081 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00081 { /* 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_c00081:after { /* webkit #35443 */
  content: '';
}
.t_c00081:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00081 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 */
}
.__c00081 { /* 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_c00081 { /* info for Javascript */
  display:none;
}
.l_c00081 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00081 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00081 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00081: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_c00081 {
    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_c00081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00081.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_c00081 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00081;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.000000;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;}
.me9_c00081{transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);}
.m139_c00081{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m105_c00081{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m154_c00081{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00081{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m82_c00081{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.me0_c00081{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00081{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00081{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.md0_c00081{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m79_c00081{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m102_c00081{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m148_c00081{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md6_c00081{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00081{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m73_c00081{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m121_c00081{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00081{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m100_c00081{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.md5_c00081{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00081{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m16c_c00081{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m13_c00081{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m60_c00081{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m57_c00081{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mab_c00081{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m106_c00081{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00081{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me1_c00081{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00081{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md7_c00081{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m15_c00081{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m164_c00081{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00081{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m158_c00081{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00081{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00081{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00081{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00081{transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00081{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m59_c00081{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00081{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.me4_c00081{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m163_c00081{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m63_c00081{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m167_c00081{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m16d_c00081{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m26_c00081{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m149_c00081{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m38_c00081{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00081{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m93_c00081{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me6_c00081{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00081{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mee_c00081{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00081{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mea_c00081{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00081{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00081{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00081{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m62_c00081{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00081{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m14a_c00081{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00081{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00081{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00081{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00081{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m112_c00081{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00081{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m137_c00081{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m43_c00081{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m123_c00081{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m144_c00081{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m75_c00081{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00081{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mec_c00081{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00081{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m14d_c00081{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m133_c00081{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mf_c00081{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m64_c00081{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7_c00081{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00081{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.me7_c00081{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00081{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00081{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.me2_c00081{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m124_c00081{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m109_c00081{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m110_c00081{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.me_c00081{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m32_c00081{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00081{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m146_c00081{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m61_c00081{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m113_c00081{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m90_c00081{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m140_c00081{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m65_c00081{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m107_c00081{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00081{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m68_c00081{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m14b_c00081{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mae_c00081{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.med_c00081{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m44_c00081{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00081{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6_c00081{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00081{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00081{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m147_c00081{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m41_c00081{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m111_c00081{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m11_c00081{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m14e_c00081{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m19_c00081{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m132_c00081{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00081{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00081{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00081{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.meb_c00081{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00081{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00081{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m134_c00081{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m115_c00081{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00081{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00081{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m16f_c00081{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00081{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00081{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5_c00081{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m131_c00081{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m54_c00081{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m86_c00081{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00081{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00081{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00081{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00081{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m31_c00081{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mad_c00081{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00081{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m66_c00081{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m18_c00081{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m70_c00081{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m85_c00081{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00081{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m40_c00081{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m161_c00081{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00081{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00081{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m13d_c00081{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m77_c00081{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m130_c00081{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mb_c00081{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00081{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00081{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m94_c00081{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m159_c00081{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m55_c00081{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me8_c00081{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m27_c00081{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m14c_c00081{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00081{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m20_c00081{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m87_c00081{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m170_c00081{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m118_c00081{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00081{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00081{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m10_c00081{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m117_c00081{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mac_c00081{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m127_c00081{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m17_c00081{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00081{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00081{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m116_c00081{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m98_c00081{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m129_c00081{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00081{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00081{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m141_c00081{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m23_c00081{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00081{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m135_c00081{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md4_c00081{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00081{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00081{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00081{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00081{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m142_c00081{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00081{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m126_c00081{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m125_c00081{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m88_c00081{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m50_c00081{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00081{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m14f_c00081{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m119_c00081{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m171_c00081{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m120_c00081{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m145_c00081{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m166_c00081{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00081{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8_c00081{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m150_c00081{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m114_c00081{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m39_c00081{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00081{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.maf_c00081{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00081{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00081{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m151_c00081{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m99_c00081{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md1_c00081{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00081{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00081{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m15b_c00081{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m153_c00081{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00081{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m49_c00081{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00081{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00081{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m42_c00081{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m29_c00081{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m160_c00081{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mce_c00081{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m15f_c00081{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m91_c00081{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m156_c00081{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m128_c00081{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00081{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00081{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mba_c00081{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00081{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00081{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md2_c00081{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc_c00081{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m78_c00081{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00081{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00081{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00081{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00081{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m56_c00081{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00081{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m22_c00081{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m97_c00081{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00081{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);}
.m6f_c00081{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m72_c00081{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00081{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m95_c00081{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m36_c00081{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m165_c00081{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m16e_c00081{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m89_c00081{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00081{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m16b_c00081{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m46_c00081{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m143_c00081{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m169_c00081{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00081{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m101_c00081{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m58_c00081{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m96_c00081{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00081{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m15e_c00081{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mef_c00081{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m155_c00081{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00081{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m71_c00081{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m21_c00081{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md3_c00081{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00081{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00081{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00081{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m52_c00081{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m92_c00081{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00081{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m136_c00081{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m74_c00081{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00081{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00081{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00081{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m25_c00081{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m138_c00081{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.md_c00081{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00081{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00081{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00081{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00081{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00081{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00081{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m67_c00081{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m81_c00081{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00081{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00081{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00081{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m168_c00081{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m15d_c00081{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.me5_c00081{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m15c_c00081{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2_c00081{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00081{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.maa_c00081{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m122_c00081{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00081{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m84_c00081{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m48_c00081{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m80_c00081{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00081{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m108_c00081{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00081{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.mff_c00081{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00081{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma_c00081{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00081{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m37_c00081{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m53_c00081{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m24_c00081{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00081{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m76_c00081{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00081{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.mca_c00081{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00081{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m30_c00081{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00081{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.me3_c00081{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00081{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00081{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00081{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m28_c00081{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00081{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00081{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m3_c00081{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00081{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md9_c00081{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m157_c00081{transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);}
.m15a_c00081{transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);}
.m152_c00081{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m69_c00081{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.mde_c00081{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mda_c00081{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00081{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m83_c00081{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m35_c00081{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00081{transform:matrix(0.360500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360500,0.000000,0.000000,0.250000,0,0);}
.m104_c00081{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00081{transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);}
.m103_c00081{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m34_c00081{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00081{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m33_c00081{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.md8_c00081{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m4_c00081{transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00081{transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);}
.m16_c00081{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00081{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00081{transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00081{transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00081{transform:matrix(0.506500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506500,0.000000,0.000000,0.250000,0,0);}
.m45_c00081{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m47_c00081{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00081{transform:matrix(0.538250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538250,0.000000,0.000000,0.250000,0,0);}
.m16a_c00081{transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);}
.m162_c00081{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.m14_c00081{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m9_c00081{transform:matrix(0.829000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829000,0.000000,0.000000,0.250000,0,0);}
.m51_c00081{transform:matrix(1.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332000,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls0_c00081{letter-spacing:0.000000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{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__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00081{word-spacing:-9.473684px;}
.ws2_c00081{word-spacing:-7.979943px;}
.ws10_c00081{word-spacing:-7.773208px;}
.wsf_c00081{word-spacing:-7.352941px;}
.ws11_c00081{word-spacing:0.000000px;}
.ws0_c00081{word-spacing:2.630350px;}
.wsd_c00081{word-spacing:10.822086px;}
.ws1_c00081{word-spacing:15.000000px;}
.ws9_c00081{word-spacing:17.571429px;}
.ws5_c00081{word-spacing:23.211796px;}
.wsa_c00081{word-spacing:24.000000px;}
.ws7_c00081{word-spacing:27.714286px;}
.ws3_c00081{word-spacing:39.297587px;}
.ws4_c00081{word-spacing:39.750000px;}
.ws6_c00081{word-spacing:40.571429px;}
.wsb_c00081{word-spacing:43.188028px;}
.ws8_c00081{word-spacing:97.125000px;}
.wsc_c00081{word-spacing:291.428571px;}
._1_c00081{width:26.764706px;}
._0_c00081{width:166.125000px;}
.fc0_c00081{color:transparent;}
.fs8_c00081{font-size:24.000000px;}
.fs6_c00081{font-size:30.000000px;}
.fs9_c00081{font-size:36.000000px;}
.fsa_c00081{font-size:42.000000px;}
.fs7_c00081{font-size:48.000000px;}
.fs5_c00081{font-size:54.000000px;}
.fs4_c00081{font-size:60.000000px;}
.fs1_c00081{font-size:66.000000px;}
.fs2_c00081{font-size:72.000000px;}
.fs3_c00081{font-size:78.000000px;}
.fs0_c00081{font-size:108.000000px;}
.y0_c00081{bottom:0.000000px;}
.y6e_c00081{bottom:195.900000px;}
.y3d_c00081{bottom:214.950000px;}
.y6d_c00081{bottom:225.000000px;}
.y3c_c00081{bottom:225.750000px;}
.y34_c00081{bottom:235.800000px;}
.y3b_c00081{bottom:238.050000px;}
.y6c_c00081{bottom:244.500000px;}
.y3a_c00081{bottom:254.250000px;}
.y39_c00081{bottom:262.500000px;}
.y6b_c00081{bottom:279.750000px;}
.y6a_c00081{bottom:297.300000px;}
.y38_c00081{bottom:304.950000px;}
.y69_c00081{bottom:319.650000px;}
.y37_c00081{bottom:321.450000px;}
.y68_c00081{bottom:337.950000px;}
.y36_c00081{bottom:340.200000px;}
.y67_c00081{bottom:355.650000px;}
.y35_c00081{bottom:359.700000px;}
.y66_c00081{bottom:372.900000px;}
.y33_c00081{bottom:374.550000px;}
.y32_c00081{bottom:378.450000px;}
.y31_c00081{bottom:386.700000px;}
.y65_c00081{bottom:390.900000px;}
.y64_c00081{bottom:408.600000px;}
.y63_c00081{bottom:425.850000px;}
.y62_c00081{bottom:444.150000px;}
.y30_c00081{bottom:456.450000px;}
.y61_c00081{bottom:461.850000px;}
.y2f_c00081{bottom:475.500000px;}
.y60_c00081{bottom:479.550000px;}
.y2e_c00081{bottom:480.300000px;}
.y2d_c00081{bottom:501.900000px;}
.y5f_c00081{bottom:505.800000px;}
.y2c_c00081{bottom:513.600000px;}
.y2b_c00081{bottom:515.100000px;}
.y2a_c00081{bottom:521.700000px;}
.y5e_c00081{bottom:533.100000px;}
.y29_c00081{bottom:534.900000px;}
.y28_c00081{bottom:549.000000px;}
.y5d_c00081{bottom:550.800000px;}
.y27_c00081{bottom:556.500000px;}
.y24_c00081{bottom:562.200000px;}
.y5c_c00081{bottom:573.000000px;}
.y23_c00081{bottom:576.300000px;}
.y22_c00081{bottom:590.400000px;}
.y5b_c00081{bottom:590.700000px;}
.y21_c00081{bottom:604.050000px;}
.y5a_c00081{bottom:608.400000px;}
.y20_c00081{bottom:618.450000px;}
.y26_c00081{bottom:628.200000px;}
.y59_c00081{bottom:630.750000px;}
.y1f_c00081{bottom:631.350000px;}
.y1e_c00081{bottom:645.450000px;}
.y58_c00081{bottom:648.750000px;}
.y25_c00081{bottom:657.000000px;}
.y1d_c00081{bottom:659.850000px;}
.y57_c00081{bottom:666.750000px;}
.y1c_c00081{bottom:673.950000px;}
.y56_c00081{bottom:684.450000px;}
.y1b_c00081{bottom:687.600000px;}
.y1a_c00081{bottom:702.000000px;}
.y55_c00081{bottom:702.750000px;}
.y54_c00081{bottom:720.450000px;}
.y19_c00081{bottom:725.100000px;}
.y18_c00081{bottom:733.350000px;}
.y53_c00081{bottom:738.450000px;}
.y17_c00081{bottom:742.200000px;}
.y52_c00081{bottom:756.450000px;}
.y16_c00081{bottom:759.900000px;}
.y51_c00081{bottom:774.750000px;}
.y14_c00081{bottom:781.350000px;}
.y50_c00081{bottom:795.900000px;}
.y13_c00081{bottom:804.450000px;}
.y4f_c00081{bottom:813.900000px;}
.y12_c00081{bottom:816.300000px;}
.y4e_c00081{bottom:832.650000px;}
.y11_c00081{bottom:834.000000px;}
.y4d_c00081{bottom:850.650000px;}
.y10_c00081{bottom:851.700000px;}
.yf_c00081{bottom:869.400000px;}
.y4c_c00081{bottom:872.850000px;}
.ye_c00081{bottom:887.100000px;}
.y4b_c00081{bottom:891.150000px;}
.yd_c00081{bottom:905.400000px;}
.y4a_c00081{bottom:909.450000px;}
.yc_c00081{bottom:922.950000px;}
.y49_c00081{bottom:927.750000px;}
.yb_c00081{bottom:940.650000px;}
.y48_c00081{bottom:945.450000px;}
.ya_c00081{bottom:957.900000px;}
.y47_c00081{bottom:963.750000px;}
.y9_c00081{bottom:976.650000px;}
.y46_c00081{bottom:982.050000px;}
.y8_c00081{bottom:994.650000px;}
.y15_c00081{bottom:997.200000px;}
.y45_c00081{bottom:1000.050000px;}
.y7_c00081{bottom:1017.000000px;}
.y44_c00081{bottom:1018.350000px;}
.y43_c00081{bottom:1036.350000px;}
.y6_c00081{bottom:1042.500000px;}
.y42_c00081{bottom:1054.350000px;}
.y5_c00081{bottom:1061.700000px;}
.y41_c00081{bottom:1072.350000px;}
.y4_c00081{bottom:1080.000000px;}
.y40_c00081{bottom:1090.350000px;}
.y3_c00081{bottom:1099.800000px;}
.y3f_c00081{bottom:1108.350000px;}
.y2_c00081{bottom:1119.900000px;}
.y3e_c00081{bottom:1126.050000px;}
.y1_c00081{bottom:1149.450000px;}
.ha_c00081{height:24.000000px;}
.h8_c00081{height:30.000000px;}
.hb_c00081{height:36.000000px;}
.hc_c00081{height:42.000000px;}
.h9_c00081{height:48.000000px;}
.h7_c00081{height:54.000000px;}
.h6_c00081{height:60.000000px;}
.h3_c00081{height:66.000000px;}
.h4_c00081{height:72.000000px;}
.h5_c00081{height:78.000000px;}
.h2_c00081{height:108.000000px;}
.h1_c00081{height:1279.500000px;}
.h0_c00081{height:1279.800018px;}
.w0_c00081{width:948.600036px;}
.w1_c00081{width:948.750000px;}
.x0_c00081{left:0.000000px;}
.xb9_c00081{left:28.050000px;}
.x12_c00081{left:83.850000px;}
.x7a_c00081{left:100.500000px;}
.x9_c00081{left:101.850000px;}
.x2_c00081{left:111.900000px;}
.x20_c00081{left:114.450000px;}
.x22_c00081{left:118.050000px;}
.x30_c00081{left:123.750000px;}
.x27_c00081{left:127.050000px;}
.x3f_c00081{left:130.650000px;}
.x46_c00081{left:131.850000px;}
.x23_c00081{left:135.300000px;}
.x56_c00081{left:138.300000px;}
.x5e_c00081{left:139.650000px;}
.x3a_c00081{left:142.200000px;}
.x28_c00081{left:144.000000px;}
.x69_c00081{left:145.200000px;}
.x3_c00081{left:147.900000px;}
.x1b_c00081{left:150.000000px;}
.x77_c00081{left:152.700000px;}
.x66_c00081{left:157.800000px;}
.x13_c00081{left:159.150000px;}
.x83_c00081{left:160.350000px;}
.x47_c00081{left:162.750000px;}
.xbe_c00081{left:164.250000px;}
.x92_c00081{left:168.600000px;}
.x95_c00081{left:169.650000px;}
.x9c_c00081{left:171.450000px;}
.x4_c00081{left:174.600000px;}
.xa_c00081{left:176.400000px;}
.x8b_c00081{left:179.250000px;}
.x8f_c00081{left:180.450000px;}
.x14_c00081{left:181.500000px;}
.x21_c00081{left:183.150000px;}
.x6e_c00081{left:185.400000px;}
.x84_c00081{left:187.050000px;}
.x40_c00081{left:189.750000px;}
.x1c_c00081{left:192.450000px;}
.x24_c00081{left:193.950000px;}
.xac_c00081{left:196.950000px;}
.x48_c00081{left:199.050000px;}
.x9d_c00081{left:201.300000px;}
.x72_c00081{left:202.800000px;}
.x7d_c00081{left:204.150000px;}
.x31_c00081{left:206.250000px;}
.x96_c00081{left:208.050000px;}
.xb_c00081{left:209.100000px;}
.x5f_c00081{left:210.900000px;}
.xa1_c00081{left:212.100000px;}
.x15_c00081{left:213.150000px;}
.x4e_c00081{left:214.800000px;}
.xb3_c00081{left:218.100000px;}
.x32_c00081{left:219.900000px;}
.x5_c00081{left:222.450000px;}
.x67_c00081{left:223.650000px;}
.x29_c00081{left:225.000000px;}
.x8c_c00081{left:226.050000px;}
.x97_c00081{left:227.550000px;}
.x91_c00081{left:230.850000px;}
.x85_c00081{left:232.350000px;}
.xb6_c00081{left:234.600000px;}
.x82_c00081{left:237.150000px;}
.x41_c00081{left:239.850000px;}
.x33_c00081{left:244.800000px;}
.x9e_c00081{left:247.350000px;}
.xc_c00081{left:249.750000px;}
.xb4_c00081{left:250.800000px;}
.xa9_c00081{left:252.450000px;}
.x42_c00081{left:257.100000px;}
.x16_c00081{left:258.150000px;}
.x57_c00081{left:259.950000px;}
.x2a_c00081{left:262.050000px;}
.x4f_c00081{left:264.900000px;}
.x6a_c00081{left:266.850000px;}
.x78_c00081{left:268.650000px;}
.xa3_c00081{left:271.350000px;}
.x6f_c00081{left:273.000000px;}
.x6b_c00081{left:275.550000px;}
.x7e_c00081{left:276.900000px;}
.x17_c00081{left:278.250000px;}
.x3b_c00081{left:280.500000px;}
.xaa_c00081{left:281.550000px;}
.xd_c00081{left:283.200000px;}
.x60_c00081{left:284.400000px;}
.x34_c00081{left:285.900000px;}
.x2b_c00081{left:289.050000px;}
.xa4_c00081{left:290.550000px;}
.x35_c00081{left:294.150000px;}
.x58_c00081{left:297.450000px;}
.xb2_c00081{left:298.500000px;}
.x86_c00081{left:299.700000px;}
.x43_c00081{left:302.850000px;}
.x49_c00081{left:304.500000px;}
.xe_c00081{left:305.850000px;}
.x6_c00081{left:309.150000px;}
.x93_c00081{left:310.800000px;}
.xb5_c00081{left:312.000000px;}
.x2c_c00081{left:313.500000px;}
.xc0_c00081{left:314.850000px;}
.x25_c00081{left:316.050000px;}
.x61_c00081{left:318.300000px;}
.xae_c00081{left:319.350000px;}
.x73_c00081{left:320.850000px;}
.x9f_c00081{left:322.200000px;}
.x98_c00081{left:323.850000px;}
.x1d_c00081{left:326.400000px;}
.x3c_c00081{left:327.600000px;}
.xad_c00081{left:329.850000px;}
.x50_c00081{left:331.500000px;}
.x94_c00081{left:334.950000px;}
.xaf_c00081{left:336.600000px;}
.x62_c00081{left:338.400000px;}
.xc2_c00081{left:340.500000px;}
.x99_c00081{left:341.550000px;}
.x36_c00081{left:344.250000px;}
.xb0_c00081{left:345.300000px;}
.x2d_c00081{left:346.650000px;}
.x18_c00081{left:350.250000px;}
.x7f_c00081{left:351.750000px;}
.x59_c00081{left:352.800000px;}
.xa5_c00081{left:355.050000px;}
.x51_c00081{left:358.200000px;}
.x8d_c00081{left:360.000000px;}
.x44_c00081{left:361.500000px;}
.x4a_c00081{left:362.850000px;}
.xa6_c00081{left:364.050000px;}
.xf_c00081{left:366.000000px;}
.x5a_c00081{left:368.700000px;}
.x68_c00081{left:369.750000px;}
.xa7_c00081{left:371.550000px;}
.x37_c00081{left:374.100000px;}
.x74_c00081{left:376.350000px;}
.x2e_c00081{left:377.550000px;}
.x9a_c00081{left:379.050000px;}
.xb7_c00081{left:382.650000px;}
.x7_c00081{left:383.700000px;}
.x7b_c00081{left:386.550000px;}
.x87_c00081{left:390.150000px;}
.x63_c00081{left:393.150000px;}
.xab_c00081{left:394.650000px;}
.x80_c00081{left:396.000000px;}
.x9b_c00081{left:398.550000px;}
.x5b_c00081{left:401.400000px;}
.x4b_c00081{left:402.450000px;}
.x52_c00081{left:405.000000px;}
.x6c_c00081{left:406.500000px;}
.xbc_c00081{left:408.000000px;}
.x45_c00081{left:409.050000px;}
.x1_c00081{left:410.700000px;}
.x88_c00081{left:412.500000px;}
.xba_c00081{left:414.150000px;}
.x3d_c00081{left:416.100000px;}
.x5c_c00081{left:417.600000px;}
.x53_c00081{left:419.100000px;}
.x7c_c00081{left:420.450000px;}
.x1e_c00081{left:428.250000px;}
.x64_c00081{left:431.700000px;}
.x19_c00081{left:433.050000px;}
.xa0_c00081{left:434.550000px;}
.x89_c00081{left:436.050000px;}
.x3e_c00081{left:437.400000px;}
.x70_c00081{left:439.500000px;}
.xb8_c00081{left:440.550000px;}
.x75_c00081{left:442.200000px;}
.x38_c00081{left:444.000000px;}
.xbb_c00081{left:446.550000px;}
.x65_c00081{left:448.200000px;}
.x1a_c00081{left:451.800000px;}
.x26_c00081{left:453.600000px;}
.x10_c00081{left:456.000000px;}
.x4c_c00081{left:457.200000px;}
.x54_c00081{left:458.400000px;}
.x71_c00081{left:459.600000px;}
.x8a_c00081{left:461.550000px;}
.x76_c00081{left:464.100000px;}
.x6d_c00081{left:465.150000px;}
.x8_c00081{left:466.200000px;}
.x39_c00081{left:467.400000px;}
.x8e_c00081{left:468.750000px;}
.xb1_c00081{left:470.550000px;}
.xbf_c00081{left:471.750000px;}
.x81_c00081{left:473.700000px;}
.x11_c00081{left:475.500000px;}
.x5d_c00081{left:479.550000px;}
.x79_c00081{left:485.250000px;}
.x1f_c00081{left:487.650000px;}
.xc1_c00081{left:489.900000px;}
.xa2_c00081{left:491.100000px;}
.x2f_c00081{left:492.750000px;}
.xbd_c00081{left:494.400000px;}
.x90_c00081{left:496.500000px;}
.xa8_c00081{left:498.000000px;}
.x55_c00081{left:499.800000px;}
.x4d_c00081{left:501.150000px;}
.x145_c00081{left:529.950000px;}
.x14b_c00081{left:533.100000px;}
.x11b_c00081{left:537.150000px;}
.xc3_c00081{left:540.000000px;}
.xe7_c00081{left:541.500000px;}
.x103_c00081{left:542.700000px;}
.x122_c00081{left:545.100000px;}
.x12b_c00081{left:546.450000px;}
.x139_c00081{left:548.100000px;}
.x151_c00081{left:550.500000px;}
.x15d_c00081{left:552.150000px;}
.x157_c00081{left:553.950000px;}
.xe8_c00081{left:558.750000px;}
.xec_c00081{left:559.800000px;}
.x118_c00081{left:561.600000px;}
.xf8_c00081{left:563.850000px;}
.x108_c00081{left:565.650000px;}
.x10e_c00081{left:568.350000px;}
.x14d_c00081{left:569.850000px;}
.xcd_c00081{left:571.200000px;}
.x169_c00081{left:572.400000px;}
.xc4_c00081{left:573.450000px;}
.x104_c00081{left:575.400000px;}
.x135_c00081{left:577.950000px;}
.xdc_c00081{left:579.300000px;}
.x11c_c00081{left:580.350000px;}
.x149_c00081{left:581.400000px;}
.x140_c00081{left:582.600000px;}
.xe9_c00081{left:583.650000px;}
.x127_c00081{left:585.000000px;}
.x13a_c00081{left:586.950000px;}
.xce_c00081{left:588.450000px;}
.x10f_c00081{left:589.950000px;}
.x109_c00081{left:591.150000px;}
.x152_c00081{left:592.650000px;}
.x154_c00081{left:594.150000px;}
.xc5_c00081{left:595.350000px;}
.x16c_c00081{left:596.850000px;}
.x123_c00081{left:598.050000px;}
.x119_c00081{left:600.450000px;}
.xe2_c00081{left:603.150000px;}
.xf3_c00081{left:606.600000px;}
.x130_c00081{left:609.000000px;}
.x147_c00081{left:610.500000px;}
.x116_c00081{left:611.700000px;}
.x10a_c00081{left:613.800000px;}
.xc6_c00081{left:615.150000px;}
.xcf_c00081{left:618.300000px;}
.x11d_c00081{left:619.650000px;}
.x136_c00081{left:623.700000px;}
.xdd_c00081{left:625.050000px;}
.xd5_c00081{left:626.850000px;}
.xf9_c00081{left:628.650000px;}
.xfe_c00081{left:630.150000px;}
.xed_c00081{left:632.100000px;}
.xd6_c00081{left:634.350000px;}
.x13d_c00081{left:636.300000px;}
.x11e_c00081{left:637.350000px;}
.x131_c00081{left:639.600000px;}
.x155_c00081{left:642.450000px;}
.x16a_c00081{left:643.500000px;}
.xfa_c00081{left:645.900000px;}
.x13b_c00081{left:651.450000px;}
.xd0_c00081{left:652.500000px;}
.x146_c00081{left:654.900000px;}
.x158_c00081{left:656.850000px;}
.x167_c00081{left:659.550000px;}
.x171_c00081{left:661.050000px;}
.xde_c00081{left:663.600000px;}
.xe3_c00081{left:664.650000px;}
.xc7_c00081{left:668.400000px;}
.x163_c00081{left:669.600000px;}
.x128_c00081{left:671.400000px;}
.xea_c00081{left:673.650000px;}
.x117_c00081{left:675.300000px;}
.x10b_c00081{left:676.350000px;}
.x142_c00081{left:677.550000px;}
.xd7_c00081{left:679.350000px;}
.xd1_c00081{left:681.300000px;}
.x168_c00081{left:682.950000px;}
.xee_c00081{left:684.000000px;}
.x11f_c00081{left:685.650000px;}
.x14c_c00081{left:686.700000px;}
.xf4_c00081{left:691.950000px;}
.x164_c00081{left:693.300000px;}
.xc8_c00081{left:694.350000px;}
.xd8_c00081{left:696.300000px;}
.xff_c00081{left:697.500000px;}
.x153_c00081{left:699.750000px;}
.x112_c00081{left:700.950000px;}
.xd2_c00081{left:702.150000px;}
.xef_c00081{left:705.600000px;}
.xfb_c00081{left:709.200000px;}
.x105_c00081{left:712.950000px;}
.xdf_c00081{left:714.000000px;}
.x13e_c00081{left:715.200000px;}
.x124_c00081{left:716.550000px;}
.x137_c00081{left:719.100000px;}
.xf5_c00081{left:721.050000px;}
.x12c_c00081{left:722.400000px;}
.xe4_c00081{left:723.600000px;}
.xd9_c00081{left:724.800000px;}
.xc9_c00081{left:726.450000px;}
.x110_c00081{left:729.000000px;}
.x11a_c00081{left:730.050000px;}
.x12d_c00081{left:732.150000px;}
.x120_c00081{left:734.250000px;}
.x10c_c00081{left:737.250000px;}
.x159_c00081{left:740.400000px;}
.x15e_c00081{left:742.050000px;}
.xe5_c00081{left:743.700000px;}
.x106_c00081{left:745.050000px;}
.xf6_c00081{left:746.250000px;}
.xf0_c00081{left:749.100000px;}
.x160_c00081{left:750.600000px;}
.xd3_c00081{left:752.550000px;}
.x129_c00081{left:753.750000px;}
.x100_c00081{left:755.100000px;}
.x12e_c00081{left:757.350000px;}
.x113_c00081{left:758.550000px;}
.xca_c00081{left:759.900000px;}
.x170_c00081{left:761.100000px;}
.x138_c00081{left:763.050000px;}
.xfc_c00081{left:768.600000px;}
.x132_c00081{left:769.800000px;}
.x101_c00081{left:772.050000px;}
.x14e_c00081{left:774.000000px;}
.xda_c00081{left:775.500000px;}
.x10d_c00081{left:776.550000px;}
.xe0_c00081{left:778.500000px;}
.xfd_c00081{left:780.150000px;}
.x121_c00081{left:782.550000px;}
.x114_c00081{left:783.750000px;}
.x111_c00081{left:785.100000px;}
.x125_c00081{left:787.050000px;}
.xf1_c00081{left:788.700000px;}
.x133_c00081{left:792.150000px;}
.x143_c00081{left:793.500000px;}
.x156_c00081{left:795.150000px;}
.xeb_c00081{left:798.150000px;}
.xdb_c00081{left:799.200000px;}
.xcb_c00081{left:800.250000px;}
.x148_c00081{left:802.050000px;}
.x16d_c00081{left:803.850000px;}
.xf7_c00081{left:806.400000px;}
.x107_c00081{left:807.600000px;}
.x102_c00081{left:809.100000px;}
.x126_c00081{left:810.450000px;}
.xe6_c00081{left:813.600000px;}
.xd4_c00081{left:815.850000px;}
.x14a_c00081{left:817.500000px;}
.x134_c00081{left:819.150000px;}
.x16e_c00081{left:821.850000px;}
.x165_c00081{left:822.900000px;}
.xf2_c00081{left:824.700000px;}
.x15a_c00081{left:828.600000px;}
.xcc_c00081{left:829.800000px;}
.x115_c00081{left:831.300000px;}
.x14f_c00081{left:832.650000px;}
.x13f_c00081{left:836.400000px;}
.x15f_c00081{left:837.750000px;}
.x16f_c00081{left:838.800000px;}
.x12f_c00081{left:840.900000px;}
.x12a_c00081{left:842.700000px;}
.xe1_c00081{left:848.700000px;}
.x15b_c00081{left:850.950000px;}
.x144_c00081{left:852.900000px;}
.x150_c00081{left:855.000000px;}
.x13c_c00081{left:856.350000px;}
.x172_c00081{left:859.050000px;}
.x161_c00081{left:861.150000px;}
.x141_c00081{left:865.200000px;}
.x15c_c00081{left:866.400000px;}
.x162_c00081{left:869.850000px;}
.x16b_c00081{left:873.600000px;}
.x166_c00081{left:877.650000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.wse_c00081{word-spacing:-8.421053pt;}
.ws2_c00081{word-spacing:-7.093282pt;}
.ws10_c00081{word-spacing:-6.909518pt;}
.wsf_c00081{word-spacing:-6.535948pt;}
.ws11_c00081{word-spacing:0.000000pt;}
.ws0_c00081{word-spacing:2.338089pt;}
.wsd_c00081{word-spacing:9.619632pt;}
.ws1_c00081{word-spacing:13.333333pt;}
.ws9_c00081{word-spacing:15.619048pt;}
.ws5_c00081{word-spacing:20.632708pt;}
.wsa_c00081{word-spacing:21.333333pt;}
.ws7_c00081{word-spacing:24.634921pt;}
.ws3_c00081{word-spacing:34.931189pt;}
.ws4_c00081{word-spacing:35.333333pt;}
.ws6_c00081{word-spacing:36.063492pt;}
.wsb_c00081{word-spacing:38.389358pt;}
.ws8_c00081{word-spacing:86.333333pt;}
.wsc_c00081{word-spacing:259.047619pt;}
._1_c00081{width:23.790850pt;}
._0_c00081{width:147.666667pt;}
.fs8_c00081{font-size:21.333333pt;}
.fs6_c00081{font-size:26.666667pt;}
.fs9_c00081{font-size:32.000000pt;}
.fsa_c00081{font-size:37.333333pt;}
.fs7_c00081{font-size:42.666667pt;}
.fs5_c00081{font-size:48.000000pt;}
.fs4_c00081{font-size:53.333333pt;}
.fs1_c00081{font-size:58.666667pt;}
.fs2_c00081{font-size:64.000000pt;}
.fs3_c00081{font-size:69.333333pt;}
.fs0_c00081{font-size:96.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y6e_c00081{bottom:174.133333pt;}
.y3d_c00081{bottom:191.066667pt;}
.y6d_c00081{bottom:200.000000pt;}
.y3c_c00081{bottom:200.666667pt;}
.y34_c00081{bottom:209.600000pt;}
.y3b_c00081{bottom:211.600000pt;}
.y6c_c00081{bottom:217.333333pt;}
.y3a_c00081{bottom:226.000000pt;}
.y39_c00081{bottom:233.333333pt;}
.y6b_c00081{bottom:248.666667pt;}
.y6a_c00081{bottom:264.266667pt;}
.y38_c00081{bottom:271.066667pt;}
.y69_c00081{bottom:284.133333pt;}
.y37_c00081{bottom:285.733333pt;}
.y68_c00081{bottom:300.400000pt;}
.y36_c00081{bottom:302.400000pt;}
.y67_c00081{bottom:316.133333pt;}
.y35_c00081{bottom:319.733333pt;}
.y66_c00081{bottom:331.466667pt;}
.y33_c00081{bottom:332.933333pt;}
.y32_c00081{bottom:336.400000pt;}
.y31_c00081{bottom:343.733333pt;}
.y65_c00081{bottom:347.466667pt;}
.y64_c00081{bottom:363.200000pt;}
.y63_c00081{bottom:378.533333pt;}
.y62_c00081{bottom:394.800000pt;}
.y30_c00081{bottom:405.733333pt;}
.y61_c00081{bottom:410.533333pt;}
.y2f_c00081{bottom:422.666667pt;}
.y60_c00081{bottom:426.266667pt;}
.y2e_c00081{bottom:426.933333pt;}
.y2d_c00081{bottom:446.133333pt;}
.y5f_c00081{bottom:449.600000pt;}
.y2c_c00081{bottom:456.533333pt;}
.y2b_c00081{bottom:457.866667pt;}
.y2a_c00081{bottom:463.733333pt;}
.y5e_c00081{bottom:473.866667pt;}
.y29_c00081{bottom:475.466667pt;}
.y28_c00081{bottom:488.000000pt;}
.y5d_c00081{bottom:489.600000pt;}
.y27_c00081{bottom:494.666667pt;}
.y24_c00081{bottom:499.733333pt;}
.y5c_c00081{bottom:509.333333pt;}
.y23_c00081{bottom:512.266667pt;}
.y22_c00081{bottom:524.800000pt;}
.y5b_c00081{bottom:525.066667pt;}
.y21_c00081{bottom:536.933333pt;}
.y5a_c00081{bottom:540.800000pt;}
.y20_c00081{bottom:549.733333pt;}
.y26_c00081{bottom:558.400000pt;}
.y59_c00081{bottom:560.666667pt;}
.y1f_c00081{bottom:561.200000pt;}
.y1e_c00081{bottom:573.733333pt;}
.y58_c00081{bottom:576.666667pt;}
.y25_c00081{bottom:584.000000pt;}
.y1d_c00081{bottom:586.533333pt;}
.y57_c00081{bottom:592.666667pt;}
.y1c_c00081{bottom:599.066667pt;}
.y56_c00081{bottom:608.400000pt;}
.y1b_c00081{bottom:611.200000pt;}
.y1a_c00081{bottom:624.000000pt;}
.y55_c00081{bottom:624.666667pt;}
.y54_c00081{bottom:640.400000pt;}
.y19_c00081{bottom:644.533333pt;}
.y18_c00081{bottom:651.866667pt;}
.y53_c00081{bottom:656.400000pt;}
.y17_c00081{bottom:659.733333pt;}
.y52_c00081{bottom:672.400000pt;}
.y16_c00081{bottom:675.466667pt;}
.y51_c00081{bottom:688.666667pt;}
.y14_c00081{bottom:694.533333pt;}
.y50_c00081{bottom:707.466667pt;}
.y13_c00081{bottom:715.066667pt;}
.y4f_c00081{bottom:723.466667pt;}
.y12_c00081{bottom:725.600000pt;}
.y4e_c00081{bottom:740.133333pt;}
.y11_c00081{bottom:741.333333pt;}
.y4d_c00081{bottom:756.133333pt;}
.y10_c00081{bottom:757.066667pt;}
.yf_c00081{bottom:772.800000pt;}
.y4c_c00081{bottom:775.866667pt;}
.ye_c00081{bottom:788.533333pt;}
.y4b_c00081{bottom:792.133333pt;}
.yd_c00081{bottom:804.800000pt;}
.y4a_c00081{bottom:808.400000pt;}
.yc_c00081{bottom:820.400000pt;}
.y49_c00081{bottom:824.666667pt;}
.yb_c00081{bottom:836.133333pt;}
.y48_c00081{bottom:840.400000pt;}
.ya_c00081{bottom:851.466667pt;}
.y47_c00081{bottom:856.666667pt;}
.y9_c00081{bottom:868.133333pt;}
.y46_c00081{bottom:872.933333pt;}
.y8_c00081{bottom:884.133333pt;}
.y15_c00081{bottom:886.400000pt;}
.y45_c00081{bottom:888.933333pt;}
.y7_c00081{bottom:904.000000pt;}
.y44_c00081{bottom:905.200000pt;}
.y43_c00081{bottom:921.200000pt;}
.y6_c00081{bottom:926.666667pt;}
.y42_c00081{bottom:937.200000pt;}
.y5_c00081{bottom:943.733333pt;}
.y41_c00081{bottom:953.200000pt;}
.y4_c00081{bottom:960.000000pt;}
.y40_c00081{bottom:969.200000pt;}
.y3_c00081{bottom:977.600000pt;}
.y3f_c00081{bottom:985.200000pt;}
.y2_c00081{bottom:995.466667pt;}
.y3e_c00081{bottom:1000.933333pt;}
.y1_c00081{bottom:1021.733333pt;}
.ha_c00081{height:21.333333pt;}
.h8_c00081{height:26.666667pt;}
.hb_c00081{height:32.000000pt;}
.hc_c00081{height:37.333333pt;}
.h9_c00081{height:42.666667pt;}
.h7_c00081{height:48.000000pt;}
.h6_c00081{height:53.333333pt;}
.h3_c00081{height:58.666667pt;}
.h4_c00081{height:64.000000pt;}
.h5_c00081{height:69.333333pt;}
.h2_c00081{height:96.000000pt;}
.h1_c00081{height:1137.333333pt;}
.h0_c00081{height:1137.600016pt;}
.w0_c00081{width:843.200032pt;}
.w1_c00081{width:843.333333pt;}
.x0_c00081{left:0.000000pt;}
.xb9_c00081{left:24.933333pt;}
.x12_c00081{left:74.533333pt;}
.x7a_c00081{left:89.333333pt;}
.x9_c00081{left:90.533333pt;}
.x2_c00081{left:99.466667pt;}
.x20_c00081{left:101.733333pt;}
.x22_c00081{left:104.933333pt;}
.x30_c00081{left:110.000000pt;}
.x27_c00081{left:112.933333pt;}
.x3f_c00081{left:116.133333pt;}
.x46_c00081{left:117.200000pt;}
.x23_c00081{left:120.266667pt;}
.x56_c00081{left:122.933333pt;}
.x5e_c00081{left:124.133333pt;}
.x3a_c00081{left:126.400000pt;}
.x28_c00081{left:128.000000pt;}
.x69_c00081{left:129.066667pt;}
.x3_c00081{left:131.466667pt;}
.x1b_c00081{left:133.333333pt;}
.x77_c00081{left:135.733333pt;}
.x66_c00081{left:140.266667pt;}
.x13_c00081{left:141.466667pt;}
.x83_c00081{left:142.533333pt;}
.x47_c00081{left:144.666667pt;}
.xbe_c00081{left:146.000000pt;}
.x92_c00081{left:149.866667pt;}
.x95_c00081{left:150.800000pt;}
.x9c_c00081{left:152.400000pt;}
.x4_c00081{left:155.200000pt;}
.xa_c00081{left:156.800000pt;}
.x8b_c00081{left:159.333333pt;}
.x8f_c00081{left:160.400000pt;}
.x14_c00081{left:161.333333pt;}
.x21_c00081{left:162.800000pt;}
.x6e_c00081{left:164.800000pt;}
.x84_c00081{left:166.266667pt;}
.x40_c00081{left:168.666667pt;}
.x1c_c00081{left:171.066667pt;}
.x24_c00081{left:172.400000pt;}
.xac_c00081{left:175.066667pt;}
.x48_c00081{left:176.933333pt;}
.x9d_c00081{left:178.933333pt;}
.x72_c00081{left:180.266667pt;}
.x7d_c00081{left:181.466667pt;}
.x31_c00081{left:183.333333pt;}
.x96_c00081{left:184.933333pt;}
.xb_c00081{left:185.866667pt;}
.x5f_c00081{left:187.466667pt;}
.xa1_c00081{left:188.533333pt;}
.x15_c00081{left:189.466667pt;}
.x4e_c00081{left:190.933333pt;}
.xb3_c00081{left:193.866667pt;}
.x32_c00081{left:195.466667pt;}
.x5_c00081{left:197.733333pt;}
.x67_c00081{left:198.800000pt;}
.x29_c00081{left:200.000000pt;}
.x8c_c00081{left:200.933333pt;}
.x97_c00081{left:202.266667pt;}
.x91_c00081{left:205.200000pt;}
.x85_c00081{left:206.533333pt;}
.xb6_c00081{left:208.533333pt;}
.x82_c00081{left:210.800000pt;}
.x41_c00081{left:213.200000pt;}
.x33_c00081{left:217.600000pt;}
.x9e_c00081{left:219.866667pt;}
.xc_c00081{left:222.000000pt;}
.xb4_c00081{left:222.933333pt;}
.xa9_c00081{left:224.400000pt;}
.x42_c00081{left:228.533333pt;}
.x16_c00081{left:229.466667pt;}
.x57_c00081{left:231.066667pt;}
.x2a_c00081{left:232.933333pt;}
.x4f_c00081{left:235.466667pt;}
.x6a_c00081{left:237.200000pt;}
.x78_c00081{left:238.800000pt;}
.xa3_c00081{left:241.200000pt;}
.x6f_c00081{left:242.666667pt;}
.x6b_c00081{left:244.933333pt;}
.x7e_c00081{left:246.133333pt;}
.x17_c00081{left:247.333333pt;}
.x3b_c00081{left:249.333333pt;}
.xaa_c00081{left:250.266667pt;}
.xd_c00081{left:251.733333pt;}
.x60_c00081{left:252.800000pt;}
.x34_c00081{left:254.133333pt;}
.x2b_c00081{left:256.933333pt;}
.xa4_c00081{left:258.266667pt;}
.x35_c00081{left:261.466667pt;}
.x58_c00081{left:264.400000pt;}
.xb2_c00081{left:265.333333pt;}
.x86_c00081{left:266.400000pt;}
.x43_c00081{left:269.200000pt;}
.x49_c00081{left:270.666667pt;}
.xe_c00081{left:271.866667pt;}
.x6_c00081{left:274.800000pt;}
.x93_c00081{left:276.266667pt;}
.xb5_c00081{left:277.333333pt;}
.x2c_c00081{left:278.666667pt;}
.xc0_c00081{left:279.866667pt;}
.x25_c00081{left:280.933333pt;}
.x61_c00081{left:282.933333pt;}
.xae_c00081{left:283.866667pt;}
.x73_c00081{left:285.200000pt;}
.x9f_c00081{left:286.400000pt;}
.x98_c00081{left:287.866667pt;}
.x1d_c00081{left:290.133333pt;}
.x3c_c00081{left:291.200000pt;}
.xad_c00081{left:293.200000pt;}
.x50_c00081{left:294.666667pt;}
.x94_c00081{left:297.733333pt;}
.xaf_c00081{left:299.200000pt;}
.x62_c00081{left:300.800000pt;}
.xc2_c00081{left:302.666667pt;}
.x99_c00081{left:303.600000pt;}
.x36_c00081{left:306.000000pt;}
.xb0_c00081{left:306.933333pt;}
.x2d_c00081{left:308.133333pt;}
.x18_c00081{left:311.333333pt;}
.x7f_c00081{left:312.666667pt;}
.x59_c00081{left:313.600000pt;}
.xa5_c00081{left:315.600000pt;}
.x51_c00081{left:318.400000pt;}
.x8d_c00081{left:320.000000pt;}
.x44_c00081{left:321.333333pt;}
.x4a_c00081{left:322.533333pt;}
.xa6_c00081{left:323.600000pt;}
.xf_c00081{left:325.333333pt;}
.x5a_c00081{left:327.733333pt;}
.x68_c00081{left:328.666667pt;}
.xa7_c00081{left:330.266667pt;}
.x37_c00081{left:332.533333pt;}
.x74_c00081{left:334.533333pt;}
.x2e_c00081{left:335.600000pt;}
.x9a_c00081{left:336.933333pt;}
.xb7_c00081{left:340.133333pt;}
.x7_c00081{left:341.066667pt;}
.x7b_c00081{left:343.600000pt;}
.x87_c00081{left:346.800000pt;}
.x63_c00081{left:349.466667pt;}
.xab_c00081{left:350.800000pt;}
.x80_c00081{left:352.000000pt;}
.x9b_c00081{left:354.266667pt;}
.x5b_c00081{left:356.800000pt;}
.x4b_c00081{left:357.733333pt;}
.x52_c00081{left:360.000000pt;}
.x6c_c00081{left:361.333333pt;}
.xbc_c00081{left:362.666667pt;}
.x45_c00081{left:363.600000pt;}
.x1_c00081{left:365.066667pt;}
.x88_c00081{left:366.666667pt;}
.xba_c00081{left:368.133333pt;}
.x3d_c00081{left:369.866667pt;}
.x5c_c00081{left:371.200000pt;}
.x53_c00081{left:372.533333pt;}
.x7c_c00081{left:373.733333pt;}
.x1e_c00081{left:380.666667pt;}
.x64_c00081{left:383.733333pt;}
.x19_c00081{left:384.933333pt;}
.xa0_c00081{left:386.266667pt;}
.x89_c00081{left:387.600000pt;}
.x3e_c00081{left:388.800000pt;}
.x70_c00081{left:390.666667pt;}
.xb8_c00081{left:391.600000pt;}
.x75_c00081{left:393.066667pt;}
.x38_c00081{left:394.666667pt;}
.xbb_c00081{left:396.933333pt;}
.x65_c00081{left:398.400000pt;}
.x1a_c00081{left:401.600000pt;}
.x26_c00081{left:403.200000pt;}
.x10_c00081{left:405.333333pt;}
.x4c_c00081{left:406.400000pt;}
.x54_c00081{left:407.466667pt;}
.x71_c00081{left:408.533333pt;}
.x8a_c00081{left:410.266667pt;}
.x76_c00081{left:412.533333pt;}
.x6d_c00081{left:413.466667pt;}
.x8_c00081{left:414.400000pt;}
.x39_c00081{left:415.466667pt;}
.x8e_c00081{left:416.666667pt;}
.xb1_c00081{left:418.266667pt;}
.xbf_c00081{left:419.333333pt;}
.x81_c00081{left:421.066667pt;}
.x11_c00081{left:422.666667pt;}
.x5d_c00081{left:426.266667pt;}
.x79_c00081{left:431.333333pt;}
.x1f_c00081{left:433.466667pt;}
.xc1_c00081{left:435.466667pt;}
.xa2_c00081{left:436.533333pt;}
.x2f_c00081{left:438.000000pt;}
.xbd_c00081{left:439.466667pt;}
.x90_c00081{left:441.333333pt;}
.xa8_c00081{left:442.666667pt;}
.x55_c00081{left:444.266667pt;}
.x4d_c00081{left:445.466667pt;}
.x145_c00081{left:471.066667pt;}
.x14b_c00081{left:473.866667pt;}
.x11b_c00081{left:477.466667pt;}
.xc3_c00081{left:480.000000pt;}
.xe7_c00081{left:481.333333pt;}
.x103_c00081{left:482.400000pt;}
.x122_c00081{left:484.533333pt;}
.x12b_c00081{left:485.733333pt;}
.x139_c00081{left:487.200000pt;}
.x151_c00081{left:489.333333pt;}
.x15d_c00081{left:490.800000pt;}
.x157_c00081{left:492.400000pt;}
.xe8_c00081{left:496.666667pt;}
.xec_c00081{left:497.600000pt;}
.x118_c00081{left:499.200000pt;}
.xf8_c00081{left:501.200000pt;}
.x108_c00081{left:502.800000pt;}
.x10e_c00081{left:505.200000pt;}
.x14d_c00081{left:506.533333pt;}
.xcd_c00081{left:507.733333pt;}
.x169_c00081{left:508.800000pt;}
.xc4_c00081{left:509.733333pt;}
.x104_c00081{left:511.466667pt;}
.x135_c00081{left:513.733333pt;}
.xdc_c00081{left:514.933333pt;}
.x11c_c00081{left:515.866667pt;}
.x149_c00081{left:516.800000pt;}
.x140_c00081{left:517.866667pt;}
.xe9_c00081{left:518.800000pt;}
.x127_c00081{left:520.000000pt;}
.x13a_c00081{left:521.733333pt;}
.xce_c00081{left:523.066667pt;}
.x10f_c00081{left:524.400000pt;}
.x109_c00081{left:525.466667pt;}
.x152_c00081{left:526.800000pt;}
.x154_c00081{left:528.133333pt;}
.xc5_c00081{left:529.200000pt;}
.x16c_c00081{left:530.533333pt;}
.x123_c00081{left:531.600000pt;}
.x119_c00081{left:533.733333pt;}
.xe2_c00081{left:536.133333pt;}
.xf3_c00081{left:539.200000pt;}
.x130_c00081{left:541.333333pt;}
.x147_c00081{left:542.666667pt;}
.x116_c00081{left:543.733333pt;}
.x10a_c00081{left:545.600000pt;}
.xc6_c00081{left:546.800000pt;}
.xcf_c00081{left:549.600000pt;}
.x11d_c00081{left:550.800000pt;}
.x136_c00081{left:554.400000pt;}
.xdd_c00081{left:555.600000pt;}
.xd5_c00081{left:557.200000pt;}
.xf9_c00081{left:558.800000pt;}
.xfe_c00081{left:560.133333pt;}
.xed_c00081{left:561.866667pt;}
.xd6_c00081{left:563.866667pt;}
.x13d_c00081{left:565.600000pt;}
.x11e_c00081{left:566.533333pt;}
.x131_c00081{left:568.533333pt;}
.x155_c00081{left:571.066667pt;}
.x16a_c00081{left:572.000000pt;}
.xfa_c00081{left:574.133333pt;}
.x13b_c00081{left:579.066667pt;}
.xd0_c00081{left:580.000000pt;}
.x146_c00081{left:582.133333pt;}
.x158_c00081{left:583.866667pt;}
.x167_c00081{left:586.266667pt;}
.x171_c00081{left:587.600000pt;}
.xde_c00081{left:589.866667pt;}
.xe3_c00081{left:590.800000pt;}
.xc7_c00081{left:594.133333pt;}
.x163_c00081{left:595.200000pt;}
.x128_c00081{left:596.800000pt;}
.xea_c00081{left:598.800000pt;}
.x117_c00081{left:600.266667pt;}
.x10b_c00081{left:601.200000pt;}
.x142_c00081{left:602.266667pt;}
.xd7_c00081{left:603.866667pt;}
.xd1_c00081{left:605.600000pt;}
.x168_c00081{left:607.066667pt;}
.xee_c00081{left:608.000000pt;}
.x11f_c00081{left:609.466667pt;}
.x14c_c00081{left:610.400000pt;}
.xf4_c00081{left:615.066667pt;}
.x164_c00081{left:616.266667pt;}
.xc8_c00081{left:617.200000pt;}
.xd8_c00081{left:618.933333pt;}
.xff_c00081{left:620.000000pt;}
.x153_c00081{left:622.000000pt;}
.x112_c00081{left:623.066667pt;}
.xd2_c00081{left:624.133333pt;}
.xef_c00081{left:627.200000pt;}
.xfb_c00081{left:630.400000pt;}
.x105_c00081{left:633.733333pt;}
.xdf_c00081{left:634.666667pt;}
.x13e_c00081{left:635.733333pt;}
.x124_c00081{left:636.933333pt;}
.x137_c00081{left:639.200000pt;}
.xf5_c00081{left:640.933333pt;}
.x12c_c00081{left:642.133333pt;}
.xe4_c00081{left:643.200000pt;}
.xd9_c00081{left:644.266667pt;}
.xc9_c00081{left:645.733333pt;}
.x110_c00081{left:648.000000pt;}
.x11a_c00081{left:648.933333pt;}
.x12d_c00081{left:650.800000pt;}
.x120_c00081{left:652.666667pt;}
.x10c_c00081{left:655.333333pt;}
.x159_c00081{left:658.133333pt;}
.x15e_c00081{left:659.600000pt;}
.xe5_c00081{left:661.066667pt;}
.x106_c00081{left:662.266667pt;}
.xf6_c00081{left:663.333333pt;}
.xf0_c00081{left:665.866667pt;}
.x160_c00081{left:667.200000pt;}
.xd3_c00081{left:668.933333pt;}
.x129_c00081{left:670.000000pt;}
.x100_c00081{left:671.200000pt;}
.x12e_c00081{left:673.200000pt;}
.x113_c00081{left:674.266667pt;}
.xca_c00081{left:675.466667pt;}
.x170_c00081{left:676.533333pt;}
.x138_c00081{left:678.266667pt;}
.xfc_c00081{left:683.200000pt;}
.x132_c00081{left:684.266667pt;}
.x101_c00081{left:686.266667pt;}
.x14e_c00081{left:688.000000pt;}
.xda_c00081{left:689.333333pt;}
.x10d_c00081{left:690.266667pt;}
.xe0_c00081{left:692.000000pt;}
.xfd_c00081{left:693.466667pt;}
.x121_c00081{left:695.600000pt;}
.x114_c00081{left:696.666667pt;}
.x111_c00081{left:697.866667pt;}
.x125_c00081{left:699.600000pt;}
.xf1_c00081{left:701.066667pt;}
.x133_c00081{left:704.133333pt;}
.x143_c00081{left:705.333333pt;}
.x156_c00081{left:706.800000pt;}
.xeb_c00081{left:709.466667pt;}
.xdb_c00081{left:710.400000pt;}
.xcb_c00081{left:711.333333pt;}
.x148_c00081{left:712.933333pt;}
.x16d_c00081{left:714.533333pt;}
.xf7_c00081{left:716.800000pt;}
.x107_c00081{left:717.866667pt;}
.x102_c00081{left:719.200000pt;}
.x126_c00081{left:720.400000pt;}
.xe6_c00081{left:723.200000pt;}
.xd4_c00081{left:725.200000pt;}
.x14a_c00081{left:726.666667pt;}
.x134_c00081{left:728.133333pt;}
.x16e_c00081{left:730.533333pt;}
.x165_c00081{left:731.466667pt;}
.xf2_c00081{left:733.066667pt;}
.x15a_c00081{left:736.533333pt;}
.xcc_c00081{left:737.600000pt;}
.x115_c00081{left:738.933333pt;}
.x14f_c00081{left:740.133333pt;}
.x13f_c00081{left:743.466667pt;}
.x15f_c00081{left:744.666667pt;}
.x16f_c00081{left:745.600000pt;}
.x12f_c00081{left:747.466667pt;}
.x12a_c00081{left:749.066667pt;}
.xe1_c00081{left:754.400000pt;}
.x15b_c00081{left:756.400000pt;}
.x144_c00081{left:758.133333pt;}
.x150_c00081{left:760.000000pt;}
.x13c_c00081{left:761.200000pt;}
.x172_c00081{left:763.600000pt;}
.x161_c00081{left:765.466667pt;}
.x141_c00081{left:769.066667pt;}
.x15c_c00081{left:770.133333pt;}
.x162_c00081{left:773.200000pt;}
.x16b_c00081{left:776.533333pt;}
.x166_c00081{left:780.133333pt;}
}





/* 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_c00082 {
    display:none;
  }
  .loading-indicator_c00082.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00082 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_c00082 { 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_c00082" -> "#page-container .classname_c00082")
 */
.pf_c00082 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00082 { /* 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_c00082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00082 { /* 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_c00082 { /* 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_c00082 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00082 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00082 {overflow:visible;}
  }
}
.c_c00082 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00082 { /* 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_c00082:after { /* webkit #35443 */
  content: '';
}
.t_c00082:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00082 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 */
}
.__c00082 { /* 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_c00082 { /* info for Javascript */
  display:none;
}
.l_c00082 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00082 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00082 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00082: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_c00082 {
    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_c00082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00082.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_c00082 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00082;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.000000;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;}
.mc0_c00082{transform:matrix(0.007250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00082{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00082{transform:matrix(0.012250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012250,0.000000,0.000000,0.250000,0,0);}
.m73_c00082{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mec_c00082{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.md7_c00082{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mef_c00082{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m32_c00082{transform:matrix(0.063250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00082{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00082{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m90_c00082{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m9_c00082{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00082{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00082{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00082{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md0_c00082{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.meb_c00082{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00082{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00082{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00082{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m53_c00082{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m47_c00082{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m118_c00082{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00082{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00082{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00082{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00082{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.me2_c00082{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md1_c00082{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.maf_c00082{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00082{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m98_c00082{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mab_c00082{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.md3_c00082{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00082{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00082{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m108_c00082{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m97_c00082{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m33_c00082{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00082{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00082{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00082{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00082{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me3_c00082{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m83_c00082{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00082{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md_c00082{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00082{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m101_c00082{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m13_c00082{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m68_c00082{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00082{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00082{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00082{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m109_c00082{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m43_c00082{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m37_c00082{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00082{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.med_c00082{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00082{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00082{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m106_c00082{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m110_c00082{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00082{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.maa_c00082{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00082{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m30_c00082{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m49_c00082{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m58_c00082{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00082{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.md6_c00082{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00082{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m5_c00082{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m80_c00082{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00082{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00082{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m26_c00082{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m14_c00082{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00082{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf_c00082{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m24_c00082{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00082{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m75_c00082{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00082{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m111_c00082{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m63_c00082{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me9_c00082{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00082{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.md4_c00082{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m23_c00082{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00082{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mae_c00082{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00082{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00082{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00082{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00082{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m105_c00082{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m39_c00082{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m85_c00082{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m29_c00082{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m25_c00082{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00082{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m116_c00082{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00082{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.ma_c00082{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00082{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m38_c00082{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.me6_c00082{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m71_c00082{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00082{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00082{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m102_c00082{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00082{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m44_c00082{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m113_c00082{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m2_c00082{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00082{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m28_c00082{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m18_c00082{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m79_c00082{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m64_c00082{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mee_c00082{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00082{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m87_c00082{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me8_c00082{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m16_c00082{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md8_c00082{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mc_c00082{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m45_c00082{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m84_c00082{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00082{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00082{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m81_c00082{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m114_c00082{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m48_c00082{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00082{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8_c00082{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m11_c00082{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m55_c00082{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m21_c00082{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m99_c00082{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00082{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb_c00082{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m88_c00082{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m82_c00082{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00082{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00082{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mce_c00082{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m27_c00082{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00082{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00082{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00082{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m34_c00082{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mca_c00082{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00082{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m86_c00082{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mba_c00082{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00082{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00082{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00082{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m74_c00082{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m40_c00082{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mad_c00082{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00082{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m15_c00082{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m117_c00082{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m41_c00082{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m104_c00082{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me4_c00082{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m76_c00082{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00082{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m107_c00082{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00082{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m20_c00082{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00082{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m100_c00082{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00082{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00082{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m35_c00082{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m19_c00082{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m46_c00082{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00082{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m103_c00082{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m22_c00082{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md9_c00082{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m112_c00082{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00082{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m62_c00082{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12_c00082{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00082{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00082{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7_c00082{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00082{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00082{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m92_c00082{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mea_c00082{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00082{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00082{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m31_c00082{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00082{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m69_c00082{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00082{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.me_c00082{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m67_c00082{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m59_c00082{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00082{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m96_c00082{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00082{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m95_c00082{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m17_c00082{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00082{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00082{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00082{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m42_c00082{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00082{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.md5_c00082{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00082{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00082{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m57_c00082{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m89_c00082{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00082{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m61_c00082{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00082{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00082{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mda_c00082{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00082{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00082{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00082{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me0_c00082{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m52_c00082{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00082{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00082{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m10_c00082{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m78_c00082{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.me7_c00082{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m56_c00082{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me5_c00082{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m51_c00082{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00082{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6_c00082{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00082{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m72_c00082{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00082{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00082{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00082{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00082{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00082{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00082{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00082{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m70_c00082{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m115_c00082{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mde_c00082{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00082{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m60_c00082{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m119_c00082{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00082{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00082{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m66_c00082{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m36_c00082{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00082{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m77_c00082{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mff_c00082{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00082{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00082{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m54_c00082{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00082{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00082{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00082{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00082{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m65_c00082{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00082{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00082{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00082{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.me1_c00082{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00082{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00082{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m94_c00082{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mac_c00082{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m91_c00082{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m50_c00082{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m93_c00082{transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00082{transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00082{transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(0.433500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433500,0.000000,0.000000,0.250000,0,0);}
.md2_c00082{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.v1_c00082{vertical-align:-174.000000px;}
.v0_c00082{vertical-align:0.000000px;}
.ls1_c00082{letter-spacing:0.000000px;}
.ls0_c00082{letter-spacing:63.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{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__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00082{word-spacing:-117.000000px;}
.ws2_c00082{word-spacing:-90.000000px;}
.wsb_c00082{word-spacing:-6.161725px;}
.wsc_c00082{word-spacing:-5.617834px;}
.wse_c00082{word-spacing:0.000000px;}
.ws9_c00082{word-spacing:3.985075px;}
.wsd_c00082{word-spacing:12.028951px;}
.ws7_c00082{word-spacing:19.994638px;}
.ws8_c00082{word-spacing:20.473068px;}
.ws4_c00082{word-spacing:29.583333px;}
.ws0_c00082{word-spacing:29.750000px;}
.ws3_c00082{word-spacing:36.000000px;}
.ws5_c00082{word-spacing:40.000000px;}
.ws6_c00082{word-spacing:65.000000px;}
.wsa_c00082{word-spacing:321.250000px;}
._0_c00082{margin-left:-92.510204px;}
._2_c00082{margin-left:-63.000000px;}
._1_c00082{width:3.750000px;}
._5_c00082{width:53.428954px;}
._3_c00082{width:74.166667px;}
._4_c00082{width:80.416667px;}
.fc0_c00082{color:transparent;}
.fs7_c00082{font-size:54.000000px;}
.fs3_c00082{font-size:60.000000px;}
.fs2_c00082{font-size:66.000000px;}
.fs1_c00082{font-size:72.000000px;}
.fs6_c00082{font-size:78.000000px;}
.fs0_c00082{font-size:84.000000px;}
.fs5_c00082{font-size:234.000000px;}
.fs4_c00082{font-size:402.000000px;}
.y0_c00082{bottom:0.000000px;}
.y67_c00082{bottom:170.250000px;}
.y31_c00082{bottom:186.450000px;}
.y66_c00082{bottom:188.250000px;}
.y30_c00082{bottom:205.950000px;}
.y65_c00082{bottom:206.550000px;}
.y2f_c00082{bottom:224.250000px;}
.y33_c00082{bottom:237.600000px;}
.y2e_c00082{bottom:241.950000px;}
.y64_c00082{bottom:242.250000px;}
.y2d_c00082{bottom:260.250000px;}
.y2c_c00082{bottom:277.800000px;}
.y63_c00082{bottom:278.250000px;}
.y32_c00082{bottom:280.500000px;}
.y2b_c00082{bottom:295.800000px;}
.y62_c00082{bottom:295.950000px;}
.y61_c00082{bottom:313.650000px;}
.y2a_c00082{bottom:313.800000px;}
.y29_c00082{bottom:331.500000px;}
.y60_c00082{bottom:331.650000px;}
.y28_c00082{bottom:349.500000px;}
.y5f_c00082{bottom:349.650000px;}
.y5e_c00082{bottom:367.650000px;}
.y27_c00082{bottom:380.550000px;}
.y5d_c00082{bottom:385.650000px;}
.y5c_c00082{bottom:403.350000px;}
.y26_c00082{bottom:416.850000px;}
.y5b_c00082{bottom:421.350000px;}
.y25_c00082{bottom:434.850000px;}
.y5a_c00082{bottom:439.350000px;}
.y59_c00082{bottom:457.350000px;}
.y24_c00082{bottom:470.850000px;}
.y58_c00082{bottom:475.350000px;}
.y57_c00082{bottom:493.350000px;}
.y23_c00082{bottom:497.550000px;}
.y56_c00082{bottom:511.050000px;}
.y22_c00082{bottom:524.400000px;}
.y55_c00082{bottom:529.050000px;}
.y21_c00082{bottom:542.400000px;}
.y54_c00082{bottom:546.750000px;}
.y20_c00082{bottom:560.400000px;}
.y53_c00082{bottom:565.050000px;}
.y1f_c00082{bottom:578.400000px;}
.y52_c00082{bottom:583.050000px;}
.y1e_c00082{bottom:596.100000px;}
.y51_c00082{bottom:600.750000px;}
.y1d_c00082{bottom:614.100000px;}
.y50_c00082{bottom:618.750000px;}
.y1c_c00082{bottom:632.400000px;}
.y4f_c00082{bottom:636.750000px;}
.y1b_c00082{bottom:650.100000px;}
.y4e_c00082{bottom:654.450000px;}
.y1a_c00082{bottom:667.800000px;}
.y4d_c00082{bottom:681.000000px;}
.y19_c00082{bottom:686.100000px;}
.y4c_c00082{bottom:699.000000px;}
.y18_c00082{bottom:713.100000px;}
.y4b_c00082{bottom:717.000000px;}
.y17_c00082{bottom:731.100000px;}
.y4a_c00082{bottom:734.700000px;}
.y16_c00082{bottom:749.100000px;}
.y49_c00082{bottom:752.700000px;}
.y15_c00082{bottom:767.100000px;}
.y48_c00082{bottom:770.700000px;}
.y14_c00082{bottom:784.800000px;}
.y47_c00082{bottom:788.700000px;}
.y13_c00082{bottom:802.800000px;}
.y46_c00082{bottom:806.700000px;}
.y12_c00082{bottom:820.800000px;}
.y45_c00082{bottom:824.700000px;}
.y11_c00082{bottom:838.800000px;}
.y44_c00082{bottom:842.700000px;}
.y43_c00082{bottom:860.700000px;}
.y10_c00082{bottom:865.500000px;}
.y42_c00082{bottom:878.400000px;}
.yf_c00082{bottom:883.500000px;}
.y41_c00082{bottom:896.400000px;}
.ye_c00082{bottom:901.500000px;}
.y40_c00082{bottom:914.400000px;}
.yd_c00082{bottom:919.800000px;}
.y3f_c00082{bottom:933.150000px;}
.yc_c00082{bottom:937.800000px;}
.y3e_c00082{bottom:950.100000px;}
.yb_c00082{bottom:965.100000px;}
.y3d_c00082{bottom:968.400000px;}
.ya_c00082{bottom:982.800000px;}
.y3c_c00082{bottom:986.100000px;}
.y9_c00082{bottom:1000.800000px;}
.y3b_c00082{bottom:1010.100000px;}
.y8_c00082{bottom:1019.100000px;}
.y3a_c00082{bottom:1024.950000px;}
.y7_c00082{bottom:1036.800000px;}
.y39_c00082{bottom:1040.100000px;}
.y6_c00082{bottom:1055.100000px;}
.y38_c00082{bottom:1056.150000px;}
.y37_c00082{bottom:1068.450000px;}
.y5_c00082{bottom:1072.800000px;}
.y36_c00082{bottom:1084.650000px;}
.y4_c00082{bottom:1090.800000px;}
.y35_c00082{bottom:1107.750000px;}
.y3_c00082{bottom:1108.500000px;}
.y34_c00082{bottom:1126.050000px;}
.y2_c00082{bottom:1126.500000px;}
.y1_c00082{bottom:1153.500000px;}
.h9_c00082{height:54.000000px;}
.h5_c00082{height:60.000000px;}
.h4_c00082{height:66.000000px;}
.h3_c00082{height:72.000000px;}
.h8_c00082{height:78.000000px;}
.h2_c00082{height:84.000000px;}
.h7_c00082{height:234.000000px;}
.h6_c00082{height:402.000000px;}
.h1_c00082{height:1274.250000px;}
.h0_c00082{height:1274.400056px;}
.w0_c00082{width:948.600036px;}
.w1_c00082{width:948.750000px;}
.x0_c00082{left:0.000000px;}
.x8e_c00082{left:110.700000px;}
.x8d_c00082{left:111.900000px;}
.x90_c00082{left:113.700000px;}
.x2_c00082{left:126.000000px;}
.x21_c00082{left:127.200000px;}
.x34_c00082{left:128.400000px;}
.x57_c00082{left:129.450000px;}
.x71_c00082{left:130.500000px;}
.x6b_c00082{left:131.700000px;}
.x82_c00082{left:132.750000px;}
.xa1_c00082{left:140.250000px;}
.xb_c00082{left:144.450000px;}
.x42_c00082{left:147.300000px;}
.x5e_c00082{left:149.100000px;}
.x12_c00082{left:151.500000px;}
.x87_c00082{left:153.000000px;}
.x92_c00082{left:155.550000px;}
.x62_c00082{left:159.150000px;}
.x3_c00082{left:160.500000px;}
.x2e_c00082{left:163.350000px;}
.x7c_c00082{left:164.400000px;}
.x3b_c00082{left:165.900000px;}
.x58_c00082{left:166.950000px;}
.x28_c00082{left:170.550000px;}
.x13_c00082{left:172.350000px;}
.x46_c00082{left:173.550000px;}
.x83_c00082{left:176.250000px;}
.xa2_c00082{left:177.300000px;}
.x4_c00082{left:178.800000px;}
.x99_c00082{left:181.500000px;}
.x4d_c00082{left:182.850000px;}
.x22_c00082{left:184.050000px;}
.x1b_c00082{left:185.250000px;}
.x29_c00082{left:187.500000px;}
.x3c_c00082{left:188.550000px;}
.x14_c00082{left:189.600000px;}
.x9d_c00082{left:192.000000px;}
.x43_c00082{left:193.350000px;}
.x5f_c00082{left:196.200000px;}
.x55_c00082{left:197.250000px;}
.x7d_c00082{left:199.350000px;}
.x63_c00082{left:200.850000px;}
.x95_c00082{left:202.350000px;}
.x23_c00082{left:204.600000px;}
.x1c_c00082{left:206.100000px;}
.x88_c00082{left:209.550000px;}
.x2f_c00082{left:210.900000px;}
.x9a_c00082{left:212.100000px;}
.x4e_c00082{left:213.150000px;}
.x59_c00082{left:216.300000px;}
.x85_c00082{left:217.350000px;}
.x15_c00082{left:219.150000px;}
.x60_c00082{left:223.200000px;}
.x35_c00082{left:224.550000px;}
.x79_c00082{left:226.350000px;}
.x3d_c00082{left:227.400000px;}
.x4f_c00082{left:229.350000px;}
.x47_c00082{left:231.900000px;}
.x2a_c00082{left:235.800000px;}
.x3e_c00082{left:238.950000px;}
.x6c_c00082{left:240.450000px;}
.x84_c00082{left:242.850000px;}
.x5a_c00082{left:244.800000px;}
.x73_c00082{left:246.450000px;}
.x24_c00082{left:247.800000px;}
.x7e_c00082{left:250.050000px;}
.x68_c00082{left:252.600000px;}
.x64_c00082{left:254.100000px;}
.x3f_c00082{left:255.150000px;}
.xc_c00082{left:257.550000px;}
.x16_c00082{left:261.300000px;}
.x9e_c00082{left:262.950000px;}
.x48_c00082{left:265.050000px;}
.x36_c00082{left:267.450000px;}
.x8a_c00082{left:269.100000px;}
.x9b_c00082{left:270.150000px;}
.x7f_c00082{left:271.350000px;}
.x50_c00082{left:273.600000px;}
.x5_c00082{left:274.950000px;}
.x75_c00082{left:277.200000px;}
.x17_c00082{left:278.250000px;}
.x5b_c00082{left:279.300000px;}
.x93_c00082{left:281.100000px;}
.xd_c00082{left:282.750000px;}
.x30_c00082{left:285.750000px;}
.x65_c00082{left:288.300000px;}
.x6_c00082{left:289.350000px;}
.x89_c00082{left:292.650000px;}
.x51_c00082{left:294.900000px;}
.x1d_c00082{left:296.400000px;}
.x56_c00082{left:297.600000px;}
.x5c_c00082{left:300.150000px;}
.x25_c00082{left:302.550000px;}
.xe_c00082{left:304.050000px;}
.x98_c00082{left:306.450000px;}
.x2b_c00082{left:307.800000px;}
.x66_c00082{left:310.200000px;}
.x49_c00082{left:313.650000px;}
.x7a_c00082{left:317.400000px;}
.x5d_c00082{left:319.650000px;}
.x80_c00082{left:320.700000px;}
.x41_c00082{left:321.750000px;}
.x37_c00082{left:324.300000px;}
.x8b_c00082{left:325.650000px;}
.x7_c00082{left:327.450000px;}
.x1e_c00082{left:329.850000px;}
.x31_c00082{left:332.850000px;}
.x6d_c00082{left:336.150000px;}
.x4a_c00082{left:337.350000px;}
.x18_c00082{left:339.450000px;}
.x74_c00082{left:341.400000px;}
.x44_c00082{left:342.750000px;}
.x1f_c00082{left:346.350000px;}
.x69_c00082{left:348.300000px;}
.x1_c00082{left:349.500000px;}
.x40_c00082{left:350.550000px;}
.x70_c00082{left:353.700000px;}
.x38_c00082{left:356.700000px;}
.x94_c00082{left:357.900000px;}
.x86_c00082{left:361.050000px;}
.x9f_c00082{left:362.250000px;}
.xf_c00082{left:363.450000px;}
.x2c_c00082{left:365.100000px;}
.x52_c00082{left:367.200000px;}
.x67_c00082{left:371.100000px;}
.x19_c00082{left:373.950000px;}
.x6a_c00082{left:378.600000px;}
.x32_c00082{left:380.400000px;}
.x45_c00082{left:382.800000px;}
.x2d_c00082{left:385.650000px;}
.x72_c00082{left:387.900000px;}
.xa3_c00082{left:388.950000px;}
.x8c_c00082{left:391.200000px;}
.x8_c00082{left:393.750000px;}
.x61_c00082{left:395.700000px;}
.x26_c00082{left:397.950000px;}
.x10_c00082{left:399.150000px;}
.x91_c00082{left:400.950000px;}
.x39_c00082{left:403.050000px;}
.x53_c00082{left:404.250000px;}
.x33_c00082{left:405.600000px;}
.x96_c00082{left:407.100000px;}
.x4b_c00082{left:409.650000px;}
.x20_c00082{left:412.950000px;}
.x97_c00082{left:414.450000px;}
.x6e_c00082{left:415.650000px;}
.x9_c00082{left:417.450000px;}
.x27_c00082{left:418.500000px;}
.x11_c00082{left:420.750000px;}
.x7b_c00082{left:422.100000px;}
.x1a_c00082{left:424.650000px;}
.x4c_c00082{left:426.150000px;}
.x78_c00082{left:427.500000px;}
.x76_c00082{left:428.700000px;}
.x81_c00082{left:432.300000px;}
.x3a_c00082{left:433.650000px;}
.x6f_c00082{left:437.250000px;}
.x8f_c00082{left:440.850000px;}
.xa0_c00082{left:442.050000px;}
.xa_c00082{left:443.700000px;}
.x54_c00082{left:446.400000px;}
.x9c_c00082{left:449.550000px;}
.x77_c00082{left:459.300000px;}
.xa4_c00082{left:465.450000px;}
.xa5_c00082{left:469.050000px;}
.xda_c00082{left:470.850000px;}
.xf2_c00082{left:482.100000px;}
.xb9_c00082{left:483.450000px;}
.xac_c00082{left:485.100000px;}
.xdf_c00082{left:488.400000px;}
.xeb_c00082{left:489.600000px;}
.x12d_c00082{left:491.100000px;}
.x140_c00082{left:492.150000px;}
.x14d_c00082{left:493.200000px;}
.x154_c00082{left:495.150000px;}
.xc5_c00082{left:498.600000px;}
.xba_c00082{left:499.650000px;}
.x10d_c00082{left:507.150000px;}
.x122_c00082{left:508.350000px;}
.xcd_c00082{left:511.200000px;}
.xa6_c00082{left:514.350000px;}
.x141_c00082{left:516.300000px;}
.xf6_c00082{left:519.300000px;}
.xc6_c00082{left:520.500000px;}
.x106_c00082{left:522.150000px;}
.xe6_c00082{left:526.050000px;}
.x143_c00082{left:527.100000px;}
.xec_c00082{left:528.450000px;}
.x14e_c00082{left:529.950000px;}
.xb1_c00082{left:531.000000px;}
.x11f_c00082{left:532.200000px;}
.x118_c00082{left:533.400000px;}
.xfa_c00082{left:535.500000px;}
.xad_c00082{left:537.000000px;}
.x13e_c00082{left:538.200000px;}
.xc7_c00082{left:539.250000px;}
.xbb_c00082{left:541.050000px;}
.x10a_c00082{left:543.600000px;}
.xf3_c00082{left:545.100000px;}
.x11c_c00082{left:546.450000px;}
.x12b_c00082{left:547.650000px;}
.xe7_c00082{left:551.250000px;}
.x14f_c00082{left:552.600000px;}
.xc8_c00082{left:553.950000px;}
.x114_c00082{left:555.300000px;}
.x103_c00082{left:556.350000px;}
.x127_c00082{left:557.700000px;}
.xdb_c00082{left:559.050000px;}
.xfb_c00082{left:561.000000px;}
.x107_c00082{left:563.250000px;}
.x11d_c00082{left:565.950000px;}
.xce_c00082{left:567.300000px;}
.x135_c00082{left:569.850000px;}
.xb2_c00082{left:572.700000px;}
.xd4_c00082{left:574.200000px;}
.x12e_c00082{left:576.000000px;}
.x123_c00082{left:577.200000px;}
.x149_c00082{left:578.400000px;}
.x100_c00082{left:579.750000px;}
.xe0_c00082{left:581.250000px;}
.xa7_c00082{left:582.750000px;}
.xae_c00082{left:583.800000px;}
.xc9_c00082{left:586.350000px;}
.x13a_c00082{left:587.700000px;}
.x13f_c00082{left:590.400000px;}
.xb3_c00082{left:592.200000px;}
.x112_c00082{left:593.700000px;}
.x128_c00082{left:594.750000px;}
.xcf_c00082{left:599.700000px;}
.xbc_c00082{left:601.500000px;}
.xaf_c00082{left:603.600000px;}
.x14a_c00082{left:604.950000px;}
.xd5_c00082{left:606.300000px;}
.xe8_c00082{left:609.600000px;}
.x10e_c00082{left:611.250000px;}
.xed_c00082{left:613.050000px;}
.x14b_c00082{left:615.450000px;}
.xe1_c00082{left:616.500000px;}
.x101_c00082{left:617.550000px;}
.x10b_c00082{left:618.900000px;}
.xd0_c00082{left:620.250000px;}
.x129_c00082{left:621.450000px;}
.xd6_c00082{left:624.600000px;}
.x115_c00082{left:625.800000px;}
.x146_c00082{left:627.450000px;}
.x119_c00082{left:628.800000px;}
.xa8_c00082{left:630.300000px;}
.xf7_c00082{left:633.000000px;}
.xb4_c00082{left:637.200000px;}
.xca_c00082{left:641.400000px;}
.x136_c00082{left:643.200000px;}
.xbd_c00082{left:645.000000px;}
.xfc_c00082{left:646.050000px;}
.x130_c00082{left:647.400000px;}
.xb0_c00082{left:649.200000px;}
.x10f_c00082{left:650.550000px;}
.xbe_c00082{left:652.200000px;}
.xdc_c00082{left:653.700000px;}
.x156_c00082{left:655.200000px;}
.x147_c00082{left:657.300000px;}
.xf4_c00082{left:658.800000px;}
.xe2_c00082{left:660.450000px;}
.xa9_c00082{left:661.650000px;}
.x144_c00082{left:663.450000px;}
.x13b_c00082{left:665.400000px;}
.x116_c00082{left:666.750000px;}
.xfd_c00082{left:667.950000px;}
.x120_c00082{left:669.000000px;}
.xd7_c00082{left:673.500000px;}
.xd1_c00082{left:674.550000px;}
.xf8_c00082{left:676.200000px;}
.x110_c00082{left:677.250000px;}
.x124_c00082{left:678.300000px;}
.xd8_c00082{left:681.000000px;}
.x148_c00082{left:682.800000px;}
.xb5_c00082{left:684.300000px;}
.xcb_c00082{left:685.650000px;}
.x14c_c00082{left:688.950000px;}
.xdd_c00082{left:690.450000px;}
.xee_c00082{left:691.500000px;}
.xbf_c00082{left:695.700000px;}
.x11a_c00082{left:697.950000px;}
.x113_c00082{left:699.600000px;}
.x152_c00082{left:700.650000px;}
.xe9_c00082{left:701.850000px;}
.xc0_c00082{left:703.650000px;}
.xfe_c00082{left:706.050000px;}
.x137_c00082{left:707.250000px;}
.x104_c00082{left:708.300000px;}
.xd2_c00082{left:710.250000px;}
.x131_c00082{left:711.450000px;}
.xf9_c00082{left:713.250000px;}
.x108_c00082{left:715.200000px;}
.xc1_c00082{left:717.750000px;}
.xf5_c00082{left:720.300000px;}
.xe3_c00082{left:721.650000px;}
.xde_c00082{left:722.850000px;}
.x13c_c00082{left:724.500000px;}
.x12a_c00082{left:726.150000px;}
.xff_c00082{left:727.350000px;}
.xb6_c00082{left:729.000000px;}
.x145_c00082{left:730.050000px;}
.xe4_c00082{left:732.750000px;}
.x105_c00082{left:733.800000px;}
.x132_c00082{left:734.850000px;}
.x109_c00082{left:736.800000px;}
.xc2_c00082{left:739.050000px;}
.x155_c00082{left:742.200000px;}
.xcc_c00082{left:743.250000px;}
.x121_c00082{left:744.300000px;}
.xef_c00082{left:746.250000px;}
.x12f_c00082{left:747.300000px;}
.x134_c00082{left:748.800000px;}
.x150_c00082{left:750.000000px;}
.x142_c00082{left:751.050000px;}
.x111_c00082{left:752.550000px;}
.x117_c00082{left:756.000000px;}
.x138_c00082{left:757.650000px;}
.xb7_c00082{left:759.600000px;}
.x11e_c00082{left:761.250000px;}
.xaa_c00082{left:762.750000px;}
.x133_c00082{left:764.700000px;}
.xc3_c00082{left:766.050000px;}
.xd3_c00082{left:767.100000px;}
.xd9_c00082{left:768.300000px;}
.x10c_c00082{left:771.450000px;}
.x12c_c00082{left:775.200000px;}
.xe5_c00082{left:776.250000px;}
.x13d_c00082{left:777.600000px;}
.xea_c00082{left:779.550000px;}
.x125_c00082{left:780.900000px;}
.x139_c00082{left:782.100000px;}
.x153_c00082{left:783.900000px;}
.xf0_c00082{left:785.850000px;}
.xab_c00082{left:787.200000px;}
.x126_c00082{left:789.150000px;}
.x151_c00082{left:790.650000px;}
.xb8_c00082{left:793.800000px;}
.xc4_c00082{left:795.900000px;}
.x11b_c00082{left:798.450000px;}
.x102_c00082{left:805.050000px;}
.xf1_c00082{left:817.200000px;}
@media print{
.v1_c00082{vertical-align:-154.666667pt;}
.v0_c00082{vertical-align:0.000000pt;}
.ls1_c00082{letter-spacing:0.000000pt;}
.ls0_c00082{letter-spacing:56.000000pt;}
.ws1_c00082{word-spacing:-104.000000pt;}
.ws2_c00082{word-spacing:-80.000000pt;}
.wsb_c00082{word-spacing:-5.477089pt;}
.wsc_c00082{word-spacing:-4.993631pt;}
.wse_c00082{word-spacing:0.000000pt;}
.ws9_c00082{word-spacing:3.542289pt;}
.wsd_c00082{word-spacing:10.692400pt;}
.ws7_c00082{word-spacing:17.773012pt;}
.ws8_c00082{word-spacing:18.198283pt;}
.ws4_c00082{word-spacing:26.296296pt;}
.ws0_c00082{word-spacing:26.444444pt;}
.ws3_c00082{word-spacing:32.000000pt;}
.ws5_c00082{word-spacing:35.555556pt;}
.ws6_c00082{word-spacing:57.777778pt;}
.wsa_c00082{word-spacing:285.555556pt;}
._0_c00082{margin-left:-82.231293pt;}
._2_c00082{margin-left:-56.000000pt;}
._1_c00082{width:3.333333pt;}
._5_c00082{width:47.492404pt;}
._3_c00082{width:65.925926pt;}
._4_c00082{width:71.481481pt;}
.fs7_c00082{font-size:48.000000pt;}
.fs3_c00082{font-size:53.333333pt;}
.fs2_c00082{font-size:58.666667pt;}
.fs1_c00082{font-size:64.000000pt;}
.fs6_c00082{font-size:69.333333pt;}
.fs0_c00082{font-size:74.666667pt;}
.fs5_c00082{font-size:208.000000pt;}
.fs4_c00082{font-size:357.333333pt;}
.y0_c00082{bottom:0.000000pt;}
.y67_c00082{bottom:151.333333pt;}
.y31_c00082{bottom:165.733333pt;}
.y66_c00082{bottom:167.333333pt;}
.y30_c00082{bottom:183.066667pt;}
.y65_c00082{bottom:183.600000pt;}
.y2f_c00082{bottom:199.333333pt;}
.y33_c00082{bottom:211.200000pt;}
.y2e_c00082{bottom:215.066667pt;}
.y64_c00082{bottom:215.333333pt;}
.y2d_c00082{bottom:231.333333pt;}
.y2c_c00082{bottom:246.933333pt;}
.y63_c00082{bottom:247.333333pt;}
.y32_c00082{bottom:249.333333pt;}
.y2b_c00082{bottom:262.933333pt;}
.y62_c00082{bottom:263.066667pt;}
.y61_c00082{bottom:278.800000pt;}
.y2a_c00082{bottom:278.933333pt;}
.y29_c00082{bottom:294.666667pt;}
.y60_c00082{bottom:294.800000pt;}
.y28_c00082{bottom:310.666667pt;}
.y5f_c00082{bottom:310.800000pt;}
.y5e_c00082{bottom:326.800000pt;}
.y27_c00082{bottom:338.266667pt;}
.y5d_c00082{bottom:342.800000pt;}
.y5c_c00082{bottom:358.533333pt;}
.y26_c00082{bottom:370.533333pt;}
.y5b_c00082{bottom:374.533333pt;}
.y25_c00082{bottom:386.533333pt;}
.y5a_c00082{bottom:390.533333pt;}
.y59_c00082{bottom:406.533333pt;}
.y24_c00082{bottom:418.533333pt;}
.y58_c00082{bottom:422.533333pt;}
.y57_c00082{bottom:438.533333pt;}
.y23_c00082{bottom:442.266667pt;}
.y56_c00082{bottom:454.266667pt;}
.y22_c00082{bottom:466.133333pt;}
.y55_c00082{bottom:470.266667pt;}
.y21_c00082{bottom:482.133333pt;}
.y54_c00082{bottom:486.000000pt;}
.y20_c00082{bottom:498.133333pt;}
.y53_c00082{bottom:502.266667pt;}
.y1f_c00082{bottom:514.133333pt;}
.y52_c00082{bottom:518.266667pt;}
.y1e_c00082{bottom:529.866667pt;}
.y51_c00082{bottom:534.000000pt;}
.y1d_c00082{bottom:545.866667pt;}
.y50_c00082{bottom:550.000000pt;}
.y1c_c00082{bottom:562.133333pt;}
.y4f_c00082{bottom:566.000000pt;}
.y1b_c00082{bottom:577.866667pt;}
.y4e_c00082{bottom:581.733333pt;}
.y1a_c00082{bottom:593.600000pt;}
.y4d_c00082{bottom:605.333333pt;}
.y19_c00082{bottom:609.866667pt;}
.y4c_c00082{bottom:621.333333pt;}
.y18_c00082{bottom:633.866667pt;}
.y4b_c00082{bottom:637.333333pt;}
.y17_c00082{bottom:649.866667pt;}
.y4a_c00082{bottom:653.066667pt;}
.y16_c00082{bottom:665.866667pt;}
.y49_c00082{bottom:669.066667pt;}
.y15_c00082{bottom:681.866667pt;}
.y48_c00082{bottom:685.066667pt;}
.y14_c00082{bottom:697.600000pt;}
.y47_c00082{bottom:701.066667pt;}
.y13_c00082{bottom:713.600000pt;}
.y46_c00082{bottom:717.066667pt;}
.y12_c00082{bottom:729.600000pt;}
.y45_c00082{bottom:733.066667pt;}
.y11_c00082{bottom:745.600000pt;}
.y44_c00082{bottom:749.066667pt;}
.y43_c00082{bottom:765.066667pt;}
.y10_c00082{bottom:769.333333pt;}
.y42_c00082{bottom:780.800000pt;}
.yf_c00082{bottom:785.333333pt;}
.y41_c00082{bottom:796.800000pt;}
.ye_c00082{bottom:801.333333pt;}
.y40_c00082{bottom:812.800000pt;}
.yd_c00082{bottom:817.600000pt;}
.y3f_c00082{bottom:829.466667pt;}
.yc_c00082{bottom:833.600000pt;}
.y3e_c00082{bottom:844.533333pt;}
.yb_c00082{bottom:857.866667pt;}
.y3d_c00082{bottom:860.800000pt;}
.ya_c00082{bottom:873.600000pt;}
.y3c_c00082{bottom:876.533333pt;}
.y9_c00082{bottom:889.600000pt;}
.y3b_c00082{bottom:897.866667pt;}
.y8_c00082{bottom:905.866667pt;}
.y3a_c00082{bottom:911.066667pt;}
.y7_c00082{bottom:921.600000pt;}
.y39_c00082{bottom:924.533333pt;}
.y6_c00082{bottom:937.866667pt;}
.y38_c00082{bottom:938.800000pt;}
.y37_c00082{bottom:949.733333pt;}
.y5_c00082{bottom:953.600000pt;}
.y36_c00082{bottom:964.133333pt;}
.y4_c00082{bottom:969.600000pt;}
.y35_c00082{bottom:984.666667pt;}
.y3_c00082{bottom:985.333333pt;}
.y34_c00082{bottom:1000.933333pt;}
.y2_c00082{bottom:1001.333333pt;}
.y1_c00082{bottom:1025.333333pt;}
.h9_c00082{height:48.000000pt;}
.h5_c00082{height:53.333333pt;}
.h4_c00082{height:58.666667pt;}
.h3_c00082{height:64.000000pt;}
.h8_c00082{height:69.333333pt;}
.h2_c00082{height:74.666667pt;}
.h7_c00082{height:208.000000pt;}
.h6_c00082{height:357.333333pt;}
.h1_c00082{height:1132.666667pt;}
.h0_c00082{height:1132.800049pt;}
.w0_c00082{width:843.200032pt;}
.w1_c00082{width:843.333333pt;}
.x0_c00082{left:0.000000pt;}
.x8e_c00082{left:98.400000pt;}
.x8d_c00082{left:99.466667pt;}
.x90_c00082{left:101.066667pt;}
.x2_c00082{left:112.000000pt;}
.x21_c00082{left:113.066667pt;}
.x34_c00082{left:114.133333pt;}
.x57_c00082{left:115.066667pt;}
.x71_c00082{left:116.000000pt;}
.x6b_c00082{left:117.066667pt;}
.x82_c00082{left:118.000000pt;}
.xa1_c00082{left:124.666667pt;}
.xb_c00082{left:128.400000pt;}
.x42_c00082{left:130.933333pt;}
.x5e_c00082{left:132.533333pt;}
.x12_c00082{left:134.666667pt;}
.x87_c00082{left:136.000000pt;}
.x92_c00082{left:138.266667pt;}
.x62_c00082{left:141.466667pt;}
.x3_c00082{left:142.666667pt;}
.x2e_c00082{left:145.200000pt;}
.x7c_c00082{left:146.133333pt;}
.x3b_c00082{left:147.466667pt;}
.x58_c00082{left:148.400000pt;}
.x28_c00082{left:151.600000pt;}
.x13_c00082{left:153.200000pt;}
.x46_c00082{left:154.266667pt;}
.x83_c00082{left:156.666667pt;}
.xa2_c00082{left:157.600000pt;}
.x4_c00082{left:158.933333pt;}
.x99_c00082{left:161.333333pt;}
.x4d_c00082{left:162.533333pt;}
.x22_c00082{left:163.600000pt;}
.x1b_c00082{left:164.666667pt;}
.x29_c00082{left:166.666667pt;}
.x3c_c00082{left:167.600000pt;}
.x14_c00082{left:168.533333pt;}
.x9d_c00082{left:170.666667pt;}
.x43_c00082{left:171.866667pt;}
.x5f_c00082{left:174.400000pt;}
.x55_c00082{left:175.333333pt;}
.x7d_c00082{left:177.200000pt;}
.x63_c00082{left:178.533333pt;}
.x95_c00082{left:179.866667pt;}
.x23_c00082{left:181.866667pt;}
.x1c_c00082{left:183.200000pt;}
.x88_c00082{left:186.266667pt;}
.x2f_c00082{left:187.466667pt;}
.x9a_c00082{left:188.533333pt;}
.x4e_c00082{left:189.466667pt;}
.x59_c00082{left:192.266667pt;}
.x85_c00082{left:193.200000pt;}
.x15_c00082{left:194.800000pt;}
.x60_c00082{left:198.400000pt;}
.x35_c00082{left:199.600000pt;}
.x79_c00082{left:201.200000pt;}
.x3d_c00082{left:202.133333pt;}
.x4f_c00082{left:203.866667pt;}
.x47_c00082{left:206.133333pt;}
.x2a_c00082{left:209.600000pt;}
.x3e_c00082{left:212.400000pt;}
.x6c_c00082{left:213.733333pt;}
.x84_c00082{left:215.866667pt;}
.x5a_c00082{left:217.600000pt;}
.x73_c00082{left:219.066667pt;}
.x24_c00082{left:220.266667pt;}
.x7e_c00082{left:222.266667pt;}
.x68_c00082{left:224.533333pt;}
.x64_c00082{left:225.866667pt;}
.x3f_c00082{left:226.800000pt;}
.xc_c00082{left:228.933333pt;}
.x16_c00082{left:232.266667pt;}
.x9e_c00082{left:233.733333pt;}
.x48_c00082{left:235.600000pt;}
.x36_c00082{left:237.733333pt;}
.x8a_c00082{left:239.200000pt;}
.x9b_c00082{left:240.133333pt;}
.x7f_c00082{left:241.200000pt;}
.x50_c00082{left:243.200000pt;}
.x5_c00082{left:244.400000pt;}
.x75_c00082{left:246.400000pt;}
.x17_c00082{left:247.333333pt;}
.x5b_c00082{left:248.266667pt;}
.x93_c00082{left:249.866667pt;}
.xd_c00082{left:251.333333pt;}
.x30_c00082{left:254.000000pt;}
.x65_c00082{left:256.266667pt;}
.x6_c00082{left:257.200000pt;}
.x89_c00082{left:260.133333pt;}
.x51_c00082{left:262.133333pt;}
.x1d_c00082{left:263.466667pt;}
.x56_c00082{left:264.533333pt;}
.x5c_c00082{left:266.800000pt;}
.x25_c00082{left:268.933333pt;}
.xe_c00082{left:270.266667pt;}
.x98_c00082{left:272.400000pt;}
.x2b_c00082{left:273.600000pt;}
.x66_c00082{left:275.733333pt;}
.x49_c00082{left:278.800000pt;}
.x7a_c00082{left:282.133333pt;}
.x5d_c00082{left:284.133333pt;}
.x80_c00082{left:285.066667pt;}
.x41_c00082{left:286.000000pt;}
.x37_c00082{left:288.266667pt;}
.x8b_c00082{left:289.466667pt;}
.x7_c00082{left:291.066667pt;}
.x1e_c00082{left:293.200000pt;}
.x31_c00082{left:295.866667pt;}
.x6d_c00082{left:298.800000pt;}
.x4a_c00082{left:299.866667pt;}
.x18_c00082{left:301.733333pt;}
.x74_c00082{left:303.466667pt;}
.x44_c00082{left:304.666667pt;}
.x1f_c00082{left:307.866667pt;}
.x69_c00082{left:309.600000pt;}
.x1_c00082{left:310.666667pt;}
.x40_c00082{left:311.600000pt;}
.x70_c00082{left:314.400000pt;}
.x38_c00082{left:317.066667pt;}
.x94_c00082{left:318.133333pt;}
.x86_c00082{left:320.933333pt;}
.x9f_c00082{left:322.000000pt;}
.xf_c00082{left:323.066667pt;}
.x2c_c00082{left:324.533333pt;}
.x52_c00082{left:326.400000pt;}
.x67_c00082{left:329.866667pt;}
.x19_c00082{left:332.400000pt;}
.x6a_c00082{left:336.533333pt;}
.x32_c00082{left:338.133333pt;}
.x45_c00082{left:340.266667pt;}
.x2d_c00082{left:342.800000pt;}
.x72_c00082{left:344.800000pt;}
.xa3_c00082{left:345.733333pt;}
.x8c_c00082{left:347.733333pt;}
.x8_c00082{left:350.000000pt;}
.x61_c00082{left:351.733333pt;}
.x26_c00082{left:353.733333pt;}
.x10_c00082{left:354.800000pt;}
.x91_c00082{left:356.400000pt;}
.x39_c00082{left:358.266667pt;}
.x53_c00082{left:359.333333pt;}
.x33_c00082{left:360.533333pt;}
.x96_c00082{left:361.866667pt;}
.x4b_c00082{left:364.133333pt;}
.x20_c00082{left:367.066667pt;}
.x97_c00082{left:368.400000pt;}
.x6e_c00082{left:369.466667pt;}
.x9_c00082{left:371.066667pt;}
.x27_c00082{left:372.000000pt;}
.x11_c00082{left:374.000000pt;}
.x7b_c00082{left:375.200000pt;}
.x1a_c00082{left:377.466667pt;}
.x4c_c00082{left:378.800000pt;}
.x78_c00082{left:380.000000pt;}
.x76_c00082{left:381.066667pt;}
.x81_c00082{left:384.266667pt;}
.x3a_c00082{left:385.466667pt;}
.x6f_c00082{left:388.666667pt;}
.x8f_c00082{left:391.866667pt;}
.xa0_c00082{left:392.933333pt;}
.xa_c00082{left:394.400000pt;}
.x54_c00082{left:396.800000pt;}
.x9c_c00082{left:399.600000pt;}
.x77_c00082{left:408.266667pt;}
.xa4_c00082{left:413.733333pt;}
.xa5_c00082{left:416.933333pt;}
.xda_c00082{left:418.533333pt;}
.xf2_c00082{left:428.533333pt;}
.xb9_c00082{left:429.733333pt;}
.xac_c00082{left:431.200000pt;}
.xdf_c00082{left:434.133333pt;}
.xeb_c00082{left:435.200000pt;}
.x12d_c00082{left:436.533333pt;}
.x140_c00082{left:437.466667pt;}
.x14d_c00082{left:438.400000pt;}
.x154_c00082{left:440.133333pt;}
.xc5_c00082{left:443.200000pt;}
.xba_c00082{left:444.133333pt;}
.x10d_c00082{left:450.800000pt;}
.x122_c00082{left:451.866667pt;}
.xcd_c00082{left:454.400000pt;}
.xa6_c00082{left:457.200000pt;}
.x141_c00082{left:458.933333pt;}
.xf6_c00082{left:461.600000pt;}
.xc6_c00082{left:462.666667pt;}
.x106_c00082{left:464.133333pt;}
.xe6_c00082{left:467.600000pt;}
.x143_c00082{left:468.533333pt;}
.xec_c00082{left:469.733333pt;}
.x14e_c00082{left:471.066667pt;}
.xb1_c00082{left:472.000000pt;}
.x11f_c00082{left:473.066667pt;}
.x118_c00082{left:474.133333pt;}
.xfa_c00082{left:476.000000pt;}
.xad_c00082{left:477.333333pt;}
.x13e_c00082{left:478.400000pt;}
.xc7_c00082{left:479.333333pt;}
.xbb_c00082{left:480.933333pt;}
.x10a_c00082{left:483.200000pt;}
.xf3_c00082{left:484.533333pt;}
.x11c_c00082{left:485.733333pt;}
.x12b_c00082{left:486.800000pt;}
.xe7_c00082{left:490.000000pt;}
.x14f_c00082{left:491.200000pt;}
.xc8_c00082{left:492.400000pt;}
.x114_c00082{left:493.600000pt;}
.x103_c00082{left:494.533333pt;}
.x127_c00082{left:495.733333pt;}
.xdb_c00082{left:496.933333pt;}
.xfb_c00082{left:498.666667pt;}
.x107_c00082{left:500.666667pt;}
.x11d_c00082{left:503.066667pt;}
.xce_c00082{left:504.266667pt;}
.x135_c00082{left:506.533333pt;}
.xb2_c00082{left:509.066667pt;}
.xd4_c00082{left:510.400000pt;}
.x12e_c00082{left:512.000000pt;}
.x123_c00082{left:513.066667pt;}
.x149_c00082{left:514.133333pt;}
.x100_c00082{left:515.333333pt;}
.xe0_c00082{left:516.666667pt;}
.xa7_c00082{left:518.000000pt;}
.xae_c00082{left:518.933333pt;}
.xc9_c00082{left:521.200000pt;}
.x13a_c00082{left:522.400000pt;}
.x13f_c00082{left:524.800000pt;}
.xb3_c00082{left:526.400000pt;}
.x112_c00082{left:527.733333pt;}
.x128_c00082{left:528.666667pt;}
.xcf_c00082{left:533.066667pt;}
.xbc_c00082{left:534.666667pt;}
.xaf_c00082{left:536.533333pt;}
.x14a_c00082{left:537.733333pt;}
.xd5_c00082{left:538.933333pt;}
.xe8_c00082{left:541.866667pt;}
.x10e_c00082{left:543.333333pt;}
.xed_c00082{left:544.933333pt;}
.x14b_c00082{left:547.066667pt;}
.xe1_c00082{left:548.000000pt;}
.x101_c00082{left:548.933333pt;}
.x10b_c00082{left:550.133333pt;}
.xd0_c00082{left:551.333333pt;}
.x129_c00082{left:552.400000pt;}
.xd6_c00082{left:555.200000pt;}
.x115_c00082{left:556.266667pt;}
.x146_c00082{left:557.733333pt;}
.x119_c00082{left:558.933333pt;}
.xa8_c00082{left:560.266667pt;}
.xf7_c00082{left:562.666667pt;}
.xb4_c00082{left:566.400000pt;}
.xca_c00082{left:570.133333pt;}
.x136_c00082{left:571.733333pt;}
.xbd_c00082{left:573.333333pt;}
.xfc_c00082{left:574.266667pt;}
.x130_c00082{left:575.466667pt;}
.xb0_c00082{left:577.066667pt;}
.x10f_c00082{left:578.266667pt;}
.xbe_c00082{left:579.733333pt;}
.xdc_c00082{left:581.066667pt;}
.x156_c00082{left:582.400000pt;}
.x147_c00082{left:584.266667pt;}
.xf4_c00082{left:585.600000pt;}
.xe2_c00082{left:587.066667pt;}
.xa9_c00082{left:588.133333pt;}
.x144_c00082{left:589.733333pt;}
.x13b_c00082{left:591.466667pt;}
.x116_c00082{left:592.666667pt;}
.xfd_c00082{left:593.733333pt;}
.x120_c00082{left:594.666667pt;}
.xd7_c00082{left:598.666667pt;}
.xd1_c00082{left:599.600000pt;}
.xf8_c00082{left:601.066667pt;}
.x110_c00082{left:602.000000pt;}
.x124_c00082{left:602.933333pt;}
.xd8_c00082{left:605.333333pt;}
.x148_c00082{left:606.933333pt;}
.xb5_c00082{left:608.266667pt;}
.xcb_c00082{left:609.466667pt;}
.x14c_c00082{left:612.400000pt;}
.xdd_c00082{left:613.733333pt;}
.xee_c00082{left:614.666667pt;}
.xbf_c00082{left:618.400000pt;}
.x11a_c00082{left:620.400000pt;}
.x113_c00082{left:621.866667pt;}
.x152_c00082{left:622.800000pt;}
.xe9_c00082{left:623.866667pt;}
.xc0_c00082{left:625.466667pt;}
.xfe_c00082{left:627.600000pt;}
.x137_c00082{left:628.666667pt;}
.x104_c00082{left:629.600000pt;}
.xd2_c00082{left:631.333333pt;}
.x131_c00082{left:632.400000pt;}
.xf9_c00082{left:634.000000pt;}
.x108_c00082{left:635.733333pt;}
.xc1_c00082{left:638.000000pt;}
.xf5_c00082{left:640.266667pt;}
.xe3_c00082{left:641.466667pt;}
.xde_c00082{left:642.533333pt;}
.x13c_c00082{left:644.000000pt;}
.x12a_c00082{left:645.466667pt;}
.xff_c00082{left:646.533333pt;}
.xb6_c00082{left:648.000000pt;}
.x145_c00082{left:648.933333pt;}
.xe4_c00082{left:651.333333pt;}
.x105_c00082{left:652.266667pt;}
.x132_c00082{left:653.200000pt;}
.x109_c00082{left:654.933333pt;}
.xc2_c00082{left:656.933333pt;}
.x155_c00082{left:659.733333pt;}
.xcc_c00082{left:660.666667pt;}
.x121_c00082{left:661.600000pt;}
.xef_c00082{left:663.333333pt;}
.x12f_c00082{left:664.266667pt;}
.x134_c00082{left:665.600000pt;}
.x150_c00082{left:666.666667pt;}
.x142_c00082{left:667.600000pt;}
.x111_c00082{left:668.933333pt;}
.x117_c00082{left:672.000000pt;}
.x138_c00082{left:673.466667pt;}
.xb7_c00082{left:675.200000pt;}
.x11e_c00082{left:676.666667pt;}
.xaa_c00082{left:678.000000pt;}
.x133_c00082{left:679.733333pt;}
.xc3_c00082{left:680.933333pt;}
.xd3_c00082{left:681.866667pt;}
.xd9_c00082{left:682.933333pt;}
.x10c_c00082{left:685.733333pt;}
.x12c_c00082{left:689.066667pt;}
.xe5_c00082{left:690.000000pt;}
.x13d_c00082{left:691.200000pt;}
.xea_c00082{left:692.933333pt;}
.x125_c00082{left:694.133333pt;}
.x139_c00082{left:695.200000pt;}
.x153_c00082{left:696.800000pt;}
.xf0_c00082{left:698.533333pt;}
.xab_c00082{left:699.733333pt;}
.x126_c00082{left:701.466667pt;}
.x151_c00082{left:702.800000pt;}
.xb8_c00082{left:705.600000pt;}
.xc4_c00082{left:707.466667pt;}
.x11b_c00082{left:709.733333pt;}
.x102_c00082{left:715.600000pt;}
.xf1_c00082{left:726.400000pt;}
}





/* 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_c00083 {
    display:none;
  }
  .loading-indicator_c00083.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00083 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_c00083 { 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_c00083" -> "#page-container .classname_c00083")
 */
.pf_c00083 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00083 { /* 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_c00083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00083 { /* 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_c00083 { /* 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_c00083 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00083 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00083 {overflow:visible;}
  }
}
.c_c00083 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00083 { /* 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_c00083:after { /* webkit #35443 */
  content: '';
}
.t_c00083:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00083 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 */
}
.__c00083 { /* 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_c00083 { /* info for Javascript */
  display:none;
}
.l_c00083 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00083 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00083 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00083: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_c00083 {
    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_c00083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00083.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_c00083 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00083;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.000000;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;}
.m87_c00083{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.md2_c00083{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m56_c00083{transform:matrix(0.077750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077750,0.000000,0.000000,0.250000,0,0);}
.md0_c00083{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m58_c00083{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.md1_c00083{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m30_c00083{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m9_c00083{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00083{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m77_c00083{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00083{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00083{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m55_c00083{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00083{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.md4_c00083{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00083{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00083{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00083{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00083{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mea_c00083{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00083{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m83_c00083{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00083{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00083{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00083{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00083{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00083{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00083{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mab_c00083{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00083{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mca_c00083{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m23_c00083{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m53_c00083{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00083{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m79_c00083{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m48_c00083{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00083{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00083{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00083{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.me0_c00083{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m38_c00083{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.me8_c00083{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7_c00083{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m81_c00083{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mce_c00083{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m60_c00083{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00083{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00083{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00083{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00083{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00083{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00083{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m14_c00083{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m25_c00083{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00083{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00083{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00083{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m27_c00083{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m11_c00083{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m26_c00083{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00083{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m84_c00083{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00083{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m15_c00083{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00083{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00083{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m57_c00083{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m64_c00083{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.med_c00083{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m22_c00083{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00083{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5_c00083{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m40_c00083{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00083{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m41_c00083{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00083{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me2_c00083{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m70_c00083{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00083{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4_c00083{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00083{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m33_c00083{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00083{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m47_c00083{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00083{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mee_c00083{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00083{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m49_c00083{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m68_c00083{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.md_c00083{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m69_c00083{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m19_c00083{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00083{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m31_c00083{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m66_c00083{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m74_c00083{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00083{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00083{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00083{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me9_c00083{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00083{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2_c00083{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00083{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m76_c00083{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mec_c00083{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m35_c00083{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00083{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m78_c00083{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m71_c00083{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m52_c00083{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m12_c00083{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m85_c00083{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m20_c00083{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00083{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00083{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m90_c00083{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m62_c00083{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00083{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00083{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m17_c00083{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00083{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m72_c00083{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me7_c00083{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00083{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00083{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m86_c00083{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m36_c00083{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m89_c00083{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m42_c00083{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me_c00083{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00083{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00083{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m0_c00083{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00083{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00083{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m63_c00083{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00083{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m16_c00083{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.me6_c00083{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m65_c00083{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m88_c00083{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00083{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00083{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m21_c00083{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00083{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mad_c00083{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m29_c00083{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00083{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00083{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m24_c00083{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00083{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00083{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.ma_c00083{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00083{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00083{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00083{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m8_c00083{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m97_c00083{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc_c00083{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb_c00083{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00083{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mde_c00083{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m91_c00083{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m92_c00083{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m98_c00083{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m80_c00083{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00083{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00083{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00083{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m32_c00083{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m96_c00083{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00083{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.me5_c00083{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m43_c00083{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6_c00083{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m37_c00083{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m99_c00083{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m34_c00083{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m61_c00083{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf_c00083{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00083{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.meb_c00083{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00083{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00083{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.md6_c00083{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00083{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00083{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m18_c00083{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00083{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00083{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.me4_c00083{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00083{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00083{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00083{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00083{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m73_c00083{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00083{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00083{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00083{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00083{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mae_c00083{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.me1_c00083{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00083{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00083{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m13_c00083{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00083{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00083{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00083{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m51_c00083{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me3_c00083{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md8_c00083{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md7_c00083{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);}
.m95_c00083{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00083{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00083{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00083{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.maa_c00083{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00083{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m10_c00083{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m94_c00083{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m67_c00083{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00083{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m93_c00083{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md5_c00083{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00083{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00083{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00083{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mba_c00083{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m75_c00083{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mef_c00083{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.md3_c00083{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m44_c00083{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m50_c00083{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m28_c00083{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00083{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mda_c00083{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md9_c00083{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00083{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m39_c00083{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m82_c00083{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.maf_c00083{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.m46_c00083{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m59_c00083{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m45_c00083{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.m54_c00083{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00083{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00083{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00083{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mac_c00083{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00083{transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls0_c00083{letter-spacing:0.000000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{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__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00083{word-spacing:-11.875000px;}
.ws1_c00083{word-spacing:-0.756839px;}
.ws4_c00083{word-spacing:0.000000px;}
.ws3_c00083{word-spacing:18.125000px;}
.ws2_c00083{word-spacing:22.142857px;}
._0_c00083{width:21.250000px;}
._1_c00083{width:59.285714px;}
.fc0_c00083{color:transparent;}
.fs4_c00083{font-size:54.000000px;}
.fs2_c00083{font-size:60.000000px;}
.fs1_c00083{font-size:66.000000px;}
.fs3_c00083{font-size:72.000000px;}
.fs5_c00083{font-size:78.000000px;}
.fs0_c00083{font-size:102.000000px;}
.y0_c00083{bottom:0.000000px;}
.y5f_c00083{bottom:194.400000px;}
.y30_c00083{bottom:204.900000px;}
.y5e_c00083{bottom:212.100000px;}
.y2f_c00083{bottom:222.900000px;}
.y5d_c00083{bottom:238.050000px;}
.y2e_c00083{bottom:239.400000px;}
.y2d_c00083{bottom:256.350000px;}
.y5c_c00083{bottom:273.900000px;}
.y2c_c00083{bottom:278.550000px;}
.y5b_c00083{bottom:291.600000px;}
.y2b_c00083{bottom:295.500000px;}
.y5a_c00083{bottom:309.600000px;}
.y2a_c00083{bottom:317.850000px;}
.y59_c00083{bottom:327.300000px;}
.y29_c00083{bottom:334.800000px;}
.y58_c00083{bottom:354.150000px;}
.y28_c00083{bottom:356.100000px;}
.y57_c00083{bottom:372.150000px;}
.y27_c00083{bottom:377.700000px;}
.y56_c00083{bottom:390.150000px;}
.y26_c00083{bottom:403.500000px;}
.y55_c00083{bottom:408.150000px;}
.y25_c00083{bottom:425.550000px;}
.y54_c00083{bottom:425.850000px;}
.y24_c00083{bottom:442.800000px;}
.y53_c00083{bottom:443.850000px;}
.y52_c00083{bottom:461.850000px;}
.y23_c00083{bottom:464.400000px;}
.y51_c00083{bottom:479.850000px;}
.y22_c00083{bottom:482.100000px;}
.y50_c00083{bottom:497.550000px;}
.y21_c00083{bottom:504.000000px;}
.y4f_c00083{bottom:515.550000px;}
.y20_c00083{bottom:525.600000px;}
.y4e_c00083{bottom:533.550000px;}
.y1f_c00083{bottom:543.300000px;}
.y4d_c00083{bottom:551.550000px;}
.y1e_c00083{bottom:560.850000px;}
.y4c_c00083{bottom:569.550000px;}
.y1d_c00083{bottom:578.550000px;}
.y4b_c00083{bottom:587.550000px;}
.y1c_c00083{bottom:600.150000px;}
.y1b_c00083{bottom:618.150000px;}
.y4a_c00083{bottom:631.050000px;}
.y1a_c00083{bottom:644.400000px;}
.y49_c00083{bottom:647.250000px;}
.y48_c00083{bottom:661.200000px;}
.y19_c00083{bottom:671.400000px;}
.y47_c00083{bottom:674.550000px;}
.y18_c00083{bottom:679.350000px;}
.y46_c00083{bottom:690.450000px;}
.y17_c00083{bottom:695.250000px;}
.y16_c00083{bottom:702.750000px;}
.y45_c00083{bottom:703.800000px;}
.y44_c00083{bottom:720.300000px;}
.y15_c00083{bottom:724.650000px;}
.y43_c00083{bottom:745.500000px;}
.y14_c00083{bottom:745.950000px;}
.y13_c00083{bottom:765.000000px;}
.y42_c00083{bottom:766.050000px;}
.y41_c00083{bottom:783.750000px;}
.y12_c00083{bottom:787.350000px;}
.y40_c00083{bottom:801.750000px;}
.y11_c00083{bottom:807.450000px;}
.y3f_c00083{bottom:828.750000px;}
.y10_c00083{bottom:840.300000px;}
.y3e_c00083{bottom:851.850000px;}
.y3d_c00083{bottom:869.850000px;}
.yf_c00083{bottom:876.600000px;}
.y3c_c00083{bottom:886.350000px;}
.ye_c00083{bottom:896.400000px;}
.y3b_c00083{bottom:906.150000px;}
.yd_c00083{bottom:916.800000px;}
.y3a_c00083{bottom:924.150000px;}
.yc_c00083{bottom:936.300000px;}
.y39_c00083{bottom:942.150000px;}
.yb_c00083{bottom:954.300000px;}
.y38_c00083{bottom:957.900000px;}
.ya_c00083{bottom:972.300000px;}
.y37_c00083{bottom:982.050000px;}
.y9_c00083{bottom:990.000000px;}
.y8_c00083{bottom:1008.300000px;}
.y36_c00083{bottom:1013.400000px;}
.y7_c00083{bottom:1026.000000px;}
.y35_c00083{bottom:1031.700000px;}
.y6_c00083{bottom:1044.000000px;}
.y5_c00083{bottom:1063.050000px;}
.y34_c00083{bottom:1063.800000px;}
.y4_c00083{bottom:1084.350000px;}
.y33_c00083{bottom:1086.450000px;}
.y3_c00083{bottom:1102.350000px;}
.y32_c00083{bottom:1107.750000px;}
.y2_c00083{bottom:1120.350000px;}
.y31_c00083{bottom:1128.300000px;}
.y1_c00083{bottom:1150.500000px;}
.h6_c00083{height:54.000000px;}
.h4_c00083{height:60.000000px;}
.h3_c00083{height:66.000000px;}
.h5_c00083{height:72.000000px;}
.h7_c00083{height:78.000000px;}
.h2_c00083{height:102.000000px;}
.h0_c00083{height:1279.439941px;}
.h1_c00083{height:1279.500000px;}
.w0_c00083{width:948.600036px;}
.w1_c00083{width:948.750000px;}
.x0_c00083{left:0.000000px;}
.x1_c00083{left:166.350000px;}
.x1c_c00083{left:170.700000px;}
.x3e_c00083{left:173.850000px;}
.x3_c00083{left:186.900000px;}
.x13_c00083{left:188.100000px;}
.x19_c00083{left:189.300000px;}
.x27_c00083{left:190.350000px;}
.x32_c00083{left:191.550000px;}
.x47_c00083{left:192.600000px;}
.x4e_c00083{left:193.650000px;}
.x63_c00083{left:194.850000px;}
.x6f_c00083{left:196.050000px;}
.x73_c00083{left:197.250000px;}
.x49_c00083{left:209.100000px;}
.x14_c00083{left:211.500000px;}
.xc_c00083{left:213.450000px;}
.x6b_c00083{left:215.250000px;}
.x60_c00083{left:216.450000px;}
.x4f_c00083{left:221.700000px;}
.x1d_c00083{left:225.750000px;}
.x1a_c00083{left:227.100000px;}
.x2b_c00083{left:229.350000px;}
.x4_c00083{left:231.600000px;}
.x5a_c00083{left:233.250000px;}
.x3c_c00083{left:238.650000px;}
.x38_c00083{left:240.150000px;}
.x2c_c00083{left:241.650000px;}
.x21_c00083{left:244.350000px;}
.x75_c00083{left:245.550000px;}
.x15_c00083{left:248.250000px;}
.x70_c00083{left:249.600000px;}
.x5b_c00083{left:250.650000px;}
.x24_c00083{left:252.300000px;}
.x64_c00083{left:253.800000px;}
.x54_c00083{left:254.850000px;}
.x1e_c00083{left:259.200000px;}
.x4a_c00083{left:263.100000px;}
.xd_c00083{left:265.350000px;}
.x3f_c00083{left:266.400000px;}
.x55_c00083{left:267.450000px;}
.x4c_c00083{left:269.100000px;}
.x45_c00083{left:270.300000px;}
.x5c_c00083{left:272.550000px;}
.x43_c00083{left:274.350000px;}
.xe_c00083{left:276.450000px;}
.x56_c00083{left:279.750000px;}
.x16_c00083{left:282.450000px;}
.x7e_c00083{left:284.400000px;}
.x6a_c00083{left:287.250000px;}
.x5_c00083{left:290.250000px;}
.x76_c00083{left:293.100000px;}
.x2d_c00083{left:294.150000px;}
.x5d_c00083{left:296.100000px;}
.x65_c00083{left:297.750000px;}
.x78_c00083{left:300.900000px;}
.x4b_c00083{left:304.800000px;}
.x7f_c00083{left:306.000000px;}
.x48_c00083{left:307.800000px;}
.x1b_c00083{left:309.900000px;}
.xf_c00083{left:315.300000px;}
.x28_c00083{left:317.100000px;}
.x7c_c00083{left:319.650000px;}
.x6_c00083{left:320.850000px;}
.x46_c00083{left:324.450000px;}
.x61_c00083{left:326.250000px;}
.x3d_c00083{left:328.350000px;}
.x1f_c00083{left:333.300000px;}
.x40_c00083{left:337.350000px;}
.x66_c00083{left:341.250000px;}
.x44_c00083{left:342.450000px;}
.x10_c00083{left:343.800000px;}
.x33_c00083{left:346.350000px;}
.x79_c00083{left:350.550000px;}
.x25_c00083{left:351.600000px;}
.x2e_c00083{left:352.800000px;}
.x67_c00083{left:354.150000px;}
.x39_c00083{left:357.900000px;}
.x71_c00083{left:360.000000px;}
.x2f_c00083{left:361.800000px;}
.x34_c00083{left:363.300000px;}
.x50_c00083{left:364.950000px;}
.x17_c00083{left:366.000000px;}
.x7_c00083{left:368.700000px;}
.x68_c00083{left:373.950000px;}
.x4d_c00083{left:377.100000px;}
.x30_c00083{left:380.850000px;}
.x22_c00083{left:382.500000px;}
.x5e_c00083{left:385.050000px;}
.x6c_c00083{left:386.400000px;}
.x35_c00083{left:393.600000px;}
.x8_c00083{left:395.700000px;}
.x62_c00083{left:397.200000px;}
.x20_c00083{left:401.400000px;}
.x57_c00083{left:403.200000px;}
.x41_c00083{left:406.800000px;}
.x2_c00083{left:408.300000px;}
.x77_c00083{left:409.800000px;}
.x72_c00083{left:411.450000px;}
.x69_c00083{left:415.800000px;}
.x53_c00083{left:417.150000px;}
.x9_c00083{left:418.350000px;}
.x29_c00083{left:419.700000px;}
.x11_c00083{left:422.700000px;}
.x6d_c00083{left:424.200000px;}
.x51_c00083{left:426.450000px;}
.x58_c00083{left:428.400000px;}
.x3a_c00083{left:429.900000px;}
.x31_c00083{left:430.950000px;}
.x36_c00083{left:435.300000px;}
.x7b_c00083{left:438.450000px;}
.x12_c00083{left:442.200000px;}
.x23_c00083{left:446.250000px;}
.xa_c00083{left:456.900000px;}
.x26_c00083{left:458.550000px;}
.x18_c00083{left:459.600000px;}
.x6e_c00083{left:461.250000px;}
.xb_c00083{left:466.200000px;}
.x52_c00083{left:470.400000px;}
.x7d_c00083{left:471.900000px;}
.x74_c00083{left:472.950000px;}
.x2a_c00083{left:480.150000px;}
.x59_c00083{left:482.700000px;}
.x42_c00083{left:485.250000px;}
.x37_c00083{left:487.500000px;}
.x5f_c00083{left:488.850000px;}
.x3b_c00083{left:493.200000px;}
.x7a_c00083{left:501.000000px;}
.x80_c00083{left:523.050000px;}
.x92_c00083{left:524.850000px;}
.xa5_c00083{left:527.400000px;}
.xd1_c00083{left:528.450000px;}
.xe8_c00083{left:529.500000px;}
.x8d_c00083{left:541.650000px;}
.x9e_c00083{left:543.150000px;}
.xad_c00083{left:544.350000px;}
.xc9_c00083{left:545.700000px;}
.xb7_c00083{left:546.750000px;}
.xe9_c00083{left:548.100000px;}
.xf2_c00083{left:549.450000px;}
.xfc_c00083{left:551.250000px;}
.x104_c00083{left:552.750000px;}
.x115_c00083{left:553.800000px;}
.x93_c00083{left:556.200000px;}
.xda_c00083{left:557.250000px;}
.xd6_c00083{left:558.300000px;}
.xa8_c00083{left:562.350000px;}
.xb1_c00083{left:567.750000px;}
.xc4_c00083{left:569.400000px;}
.x112_c00083{left:570.900000px;}
.xdb_c00083{left:576.750000px;}
.xc1_c00083{left:578.400000px;}
.xf3_c00083{left:580.800000px;}
.x88_c00083{left:583.650000px;}
.xd2_c00083{left:588.150000px;}
.x94_c00083{left:590.700000px;}
.x90_c00083{left:591.900000px;}
.x8e_c00083{left:594.150000px;}
.x100_c00083{left:595.500000px;}
.xca_c00083{left:596.850000px;}
.x10b_c00083{left:598.350000px;}
.xae_c00083{left:600.150000px;}
.xb2_c00083{left:603.000000px;}
.x81_c00083{left:604.050000px;}
.xed_c00083{left:608.700000px;}
.xd7_c00083{left:610.800000px;}
.xdc_c00083{left:613.350000px;}
.x82_c00083{left:614.850000px;}
.xcb_c00083{left:616.650000px;}
.xea_c00083{left:619.950000px;}
.x116_c00083{left:621.900000px;}
.xa9_c00083{left:625.050000px;}
.xe4_c00083{left:628.950000px;}
.xd3_c00083{left:630.600000px;}
.xf4_c00083{left:631.950000px;}
.xb8_c00083{left:634.650000px;}
.xc5_c00083{left:635.700000px;}
.x83_c00083{left:636.750000px;}
.xbd_c00083{left:640.350000px;}
.x10c_c00083{left:643.350000px;}
.x95_c00083{left:644.700000px;}
.x9f_c00083{left:647.250000px;}
.xd4_c00083{left:649.350000px;}
.xb3_c00083{left:650.550000px;}
.xf7_c00083{left:653.700000px;}
.xee_c00083{left:654.750000px;}
.xcc_c00083{left:656.550000px;}
.x96_c00083{left:659.400000px;}
.xd8_c00083{left:660.450000px;}
.xde_c00083{left:661.800000px;}
.xaa_c00083{left:663.300000px;}
.x101_c00083{left:664.650000px;}
.x117_c00083{left:667.200000px;}
.x84_c00083{left:669.450000px;}
.x97_c00083{left:671.700000px;}
.x91_c00083{left:674.400000px;}
.x105_c00083{left:676.200000px;}
.x108_c00083{left:677.850000px;}
.xe5_c00083{left:679.650000px;}
.xa0_c00083{left:681.150000px;}
.x98_c00083{left:683.250000px;}
.x10f_c00083{left:684.900000px;}
.xf5_c00083{left:685.950000px;}
.xab_c00083{left:690.300000px;}
.x8f_c00083{left:692.100000px;}
.x89_c00083{left:696.000000px;}
.xaf_c00083{left:697.350000px;}
.xa6_c00083{left:704.850000px;}
.x85_c00083{left:707.550000px;}
.xfd_c00083{left:708.900000px;}
.x99_c00083{left:709.950000px;}
.x106_c00083{left:711.750000px;}
.xc6_c00083{left:714.150000px;}
.x86_c00083{left:716.550000px;}
.xa1_c00083{left:718.200000px;}
.xef_c00083{left:719.550000px;}
.xeb_c00083{left:721.050000px;}
.xbe_c00083{left:723.900000px;}
.xf1_c00083{left:725.850000px;}
.xcf_c00083{left:730.050000px;}
.x9a_c00083{left:731.250000px;}
.x109_c00083{left:732.600000px;}
.x8a_c00083{left:735.600000px;}
.x102_c00083{left:739.500000px;}
.xc2_c00083{left:740.700000px;}
.x87_c00083{left:742.500000px;}
.xe6_c00083{left:745.200000px;}
.x110_c00083{left:747.150000px;}
.x10d_c00083{left:748.350000px;}
.xdd_c00083{left:750.450000px;}
.xdf_c00083{left:752.100000px;}
.x9b_c00083{left:753.150000px;}
.xb9_c00083{left:755.700000px;}
.x10e_c00083{left:758.400000px;}
.xc3_c00083{left:760.800000px;}
.xa2_c00083{left:763.200000px;}
.xcd_c00083{left:764.550000px;}
.xe0_c00083{left:767.100000px;}
.xf6_c00083{left:768.750000px;}
.xb4_c00083{left:770.100000px;}
.x107_c00083{left:771.450000px;}
.x103_c00083{left:772.650000px;}
.xe1_c00083{left:774.000000px;}
.xa7_c00083{left:779.700000px;}
.x10a_c00083{left:781.500000px;}
.xbf_c00083{left:785.100000px;}
.xfe_c00083{left:787.350000px;}
.x8b_c00083{left:788.550000px;}
.x9c_c00083{left:790.200000px;}
.xa3_c00083{left:791.250000px;}
.xb5_c00083{left:793.800000px;}
.xd0_c00083{left:795.150000px;}
.xe3_c00083{left:796.650000px;}
.xf8_c00083{left:797.700000px;}
.xba_c00083{left:801.750000px;}
.xff_c00083{left:805.650000px;}
.xa4_c00083{left:806.700000px;}
.x113_c00083{left:808.200000px;}
.xec_c00083{left:812.850000px;}
.xfa_c00083{left:814.650000px;}
.xb6_c00083{left:816.450000px;}
.xbb_c00083{left:817.950000px;}
.xf0_c00083{left:819.000000px;}
.xc7_c00083{left:820.350000px;}
.xe2_c00083{left:823.050000px;}
.xd9_c00083{left:824.400000px;}
.xac_c00083{left:828.000000px;}
.xb0_c00083{left:829.500000px;}
.xfb_c00083{left:832.350000px;}
.x9d_c00083{left:834.450000px;}
.xce_c00083{left:840.150000px;}
.xbc_c00083{left:842.700000px;}
.xc0_c00083{left:845.550000px;}
.x8c_c00083{left:847.950000px;}
.xd5_c00083{left:850.200000px;}
.xc8_c00083{left:852.000000px;}
.xe7_c00083{left:853.200000px;}
.xf9_c00083{left:854.250000px;}
.x114_c00083{left:860.100000px;}
.x111_c00083{left:869.550000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws0_c00083{word-spacing:-10.555556pt;}
.ws1_c00083{word-spacing:-0.672746pt;}
.ws4_c00083{word-spacing:0.000000pt;}
.ws3_c00083{word-spacing:16.111111pt;}
.ws2_c00083{word-spacing:19.682540pt;}
._0_c00083{width:18.888889pt;}
._1_c00083{width:52.698413pt;}
.fs4_c00083{font-size:48.000000pt;}
.fs2_c00083{font-size:53.333333pt;}
.fs1_c00083{font-size:58.666667pt;}
.fs3_c00083{font-size:64.000000pt;}
.fs5_c00083{font-size:69.333333pt;}
.fs0_c00083{font-size:90.666667pt;}
.y0_c00083{bottom:0.000000pt;}
.y5f_c00083{bottom:172.800000pt;}
.y30_c00083{bottom:182.133333pt;}
.y5e_c00083{bottom:188.533333pt;}
.y2f_c00083{bottom:198.133333pt;}
.y5d_c00083{bottom:211.600000pt;}
.y2e_c00083{bottom:212.800000pt;}
.y2d_c00083{bottom:227.866667pt;}
.y5c_c00083{bottom:243.466667pt;}
.y2c_c00083{bottom:247.600000pt;}
.y5b_c00083{bottom:259.200000pt;}
.y2b_c00083{bottom:262.666667pt;}
.y5a_c00083{bottom:275.200000pt;}
.y2a_c00083{bottom:282.533333pt;}
.y59_c00083{bottom:290.933333pt;}
.y29_c00083{bottom:297.600000pt;}
.y58_c00083{bottom:314.800000pt;}
.y28_c00083{bottom:316.533333pt;}
.y57_c00083{bottom:330.800000pt;}
.y27_c00083{bottom:335.733333pt;}
.y56_c00083{bottom:346.800000pt;}
.y26_c00083{bottom:358.666667pt;}
.y55_c00083{bottom:362.800000pt;}
.y25_c00083{bottom:378.266667pt;}
.y54_c00083{bottom:378.533333pt;}
.y24_c00083{bottom:393.600000pt;}
.y53_c00083{bottom:394.533333pt;}
.y52_c00083{bottom:410.533333pt;}
.y23_c00083{bottom:412.800000pt;}
.y51_c00083{bottom:426.533333pt;}
.y22_c00083{bottom:428.533333pt;}
.y50_c00083{bottom:442.266667pt;}
.y21_c00083{bottom:448.000000pt;}
.y4f_c00083{bottom:458.266667pt;}
.y20_c00083{bottom:467.200000pt;}
.y4e_c00083{bottom:474.266667pt;}
.y1f_c00083{bottom:482.933333pt;}
.y4d_c00083{bottom:490.266667pt;}
.y1e_c00083{bottom:498.533333pt;}
.y4c_c00083{bottom:506.266667pt;}
.y1d_c00083{bottom:514.266667pt;}
.y4b_c00083{bottom:522.266667pt;}
.y1c_c00083{bottom:533.466667pt;}
.y1b_c00083{bottom:549.466667pt;}
.y4a_c00083{bottom:560.933333pt;}
.y1a_c00083{bottom:572.800000pt;}
.y49_c00083{bottom:575.333333pt;}
.y48_c00083{bottom:587.733333pt;}
.y19_c00083{bottom:596.800000pt;}
.y47_c00083{bottom:599.600000pt;}
.y18_c00083{bottom:603.866667pt;}
.y46_c00083{bottom:613.733333pt;}
.y17_c00083{bottom:618.000000pt;}
.y16_c00083{bottom:624.666667pt;}
.y45_c00083{bottom:625.600000pt;}
.y44_c00083{bottom:640.266667pt;}
.y15_c00083{bottom:644.133333pt;}
.y43_c00083{bottom:662.666667pt;}
.y14_c00083{bottom:663.066667pt;}
.y13_c00083{bottom:680.000000pt;}
.y42_c00083{bottom:680.933333pt;}
.y41_c00083{bottom:696.666667pt;}
.y12_c00083{bottom:699.866667pt;}
.y40_c00083{bottom:712.666667pt;}
.y11_c00083{bottom:717.733333pt;}
.y3f_c00083{bottom:736.666667pt;}
.y10_c00083{bottom:746.933333pt;}
.y3e_c00083{bottom:757.200000pt;}
.y3d_c00083{bottom:773.200000pt;}
.yf_c00083{bottom:779.200000pt;}
.y3c_c00083{bottom:787.866667pt;}
.ye_c00083{bottom:796.800000pt;}
.y3b_c00083{bottom:805.466667pt;}
.yd_c00083{bottom:814.933333pt;}
.y3a_c00083{bottom:821.466667pt;}
.yc_c00083{bottom:832.266667pt;}
.y39_c00083{bottom:837.466667pt;}
.yb_c00083{bottom:848.266667pt;}
.y38_c00083{bottom:851.466667pt;}
.ya_c00083{bottom:864.266667pt;}
.y37_c00083{bottom:872.933333pt;}
.y9_c00083{bottom:880.000000pt;}
.y8_c00083{bottom:896.266667pt;}
.y36_c00083{bottom:900.800000pt;}
.y7_c00083{bottom:912.000000pt;}
.y35_c00083{bottom:917.066667pt;}
.y6_c00083{bottom:928.000000pt;}
.y5_c00083{bottom:944.933333pt;}
.y34_c00083{bottom:945.600000pt;}
.y4_c00083{bottom:963.866667pt;}
.y33_c00083{bottom:965.733333pt;}
.y3_c00083{bottom:979.866667pt;}
.y32_c00083{bottom:984.666667pt;}
.y2_c00083{bottom:995.866667pt;}
.y31_c00083{bottom:1002.933333pt;}
.y1_c00083{bottom:1022.666667pt;}
.h6_c00083{height:48.000000pt;}
.h4_c00083{height:53.333333pt;}
.h3_c00083{height:58.666667pt;}
.h5_c00083{height:64.000000pt;}
.h7_c00083{height:69.333333pt;}
.h2_c00083{height:90.666667pt;}
.h0_c00083{height:1137.279948pt;}
.h1_c00083{height:1137.333333pt;}
.w0_c00083{width:843.200032pt;}
.w1_c00083{width:843.333333pt;}
.x0_c00083{left:0.000000pt;}
.x1_c00083{left:147.866667pt;}
.x1c_c00083{left:151.733333pt;}
.x3e_c00083{left:154.533333pt;}
.x3_c00083{left:166.133333pt;}
.x13_c00083{left:167.200000pt;}
.x19_c00083{left:168.266667pt;}
.x27_c00083{left:169.200000pt;}
.x32_c00083{left:170.266667pt;}
.x47_c00083{left:171.200000pt;}
.x4e_c00083{left:172.133333pt;}
.x63_c00083{left:173.200000pt;}
.x6f_c00083{left:174.266667pt;}
.x73_c00083{left:175.333333pt;}
.x49_c00083{left:185.866667pt;}
.x14_c00083{left:188.000000pt;}
.xc_c00083{left:189.733333pt;}
.x6b_c00083{left:191.333333pt;}
.x60_c00083{left:192.400000pt;}
.x4f_c00083{left:197.066667pt;}
.x1d_c00083{left:200.666667pt;}
.x1a_c00083{left:201.866667pt;}
.x2b_c00083{left:203.866667pt;}
.x4_c00083{left:205.866667pt;}
.x5a_c00083{left:207.333333pt;}
.x3c_c00083{left:212.133333pt;}
.x38_c00083{left:213.466667pt;}
.x2c_c00083{left:214.800000pt;}
.x21_c00083{left:217.200000pt;}
.x75_c00083{left:218.266667pt;}
.x15_c00083{left:220.666667pt;}
.x70_c00083{left:221.866667pt;}
.x5b_c00083{left:222.800000pt;}
.x24_c00083{left:224.266667pt;}
.x64_c00083{left:225.600000pt;}
.x54_c00083{left:226.533333pt;}
.x1e_c00083{left:230.400000pt;}
.x4a_c00083{left:233.866667pt;}
.xd_c00083{left:235.866667pt;}
.x3f_c00083{left:236.800000pt;}
.x55_c00083{left:237.733333pt;}
.x4c_c00083{left:239.200000pt;}
.x45_c00083{left:240.266667pt;}
.x5c_c00083{left:242.266667pt;}
.x43_c00083{left:243.866667pt;}
.xe_c00083{left:245.733333pt;}
.x56_c00083{left:248.666667pt;}
.x16_c00083{left:251.066667pt;}
.x7e_c00083{left:252.800000pt;}
.x6a_c00083{left:255.333333pt;}
.x5_c00083{left:258.000000pt;}
.x76_c00083{left:260.533333pt;}
.x2d_c00083{left:261.466667pt;}
.x5d_c00083{left:263.200000pt;}
.x65_c00083{left:264.666667pt;}
.x78_c00083{left:267.466667pt;}
.x4b_c00083{left:270.933333pt;}
.x7f_c00083{left:272.000000pt;}
.x48_c00083{left:273.600000pt;}
.x1b_c00083{left:275.466667pt;}
.xf_c00083{left:280.266667pt;}
.x28_c00083{left:281.866667pt;}
.x7c_c00083{left:284.133333pt;}
.x6_c00083{left:285.200000pt;}
.x46_c00083{left:288.400000pt;}
.x61_c00083{left:290.000000pt;}
.x3d_c00083{left:291.866667pt;}
.x1f_c00083{left:296.266667pt;}
.x40_c00083{left:299.866667pt;}
.x66_c00083{left:303.333333pt;}
.x44_c00083{left:304.400000pt;}
.x10_c00083{left:305.600000pt;}
.x33_c00083{left:307.866667pt;}
.x79_c00083{left:311.600000pt;}
.x25_c00083{left:312.533333pt;}
.x2e_c00083{left:313.600000pt;}
.x67_c00083{left:314.800000pt;}
.x39_c00083{left:318.133333pt;}
.x71_c00083{left:320.000000pt;}
.x2f_c00083{left:321.600000pt;}
.x34_c00083{left:322.933333pt;}
.x50_c00083{left:324.400000pt;}
.x17_c00083{left:325.333333pt;}
.x7_c00083{left:327.733333pt;}
.x68_c00083{left:332.400000pt;}
.x4d_c00083{left:335.200000pt;}
.x30_c00083{left:338.533333pt;}
.x22_c00083{left:340.000000pt;}
.x5e_c00083{left:342.266667pt;}
.x6c_c00083{left:343.466667pt;}
.x35_c00083{left:349.866667pt;}
.x8_c00083{left:351.733333pt;}
.x62_c00083{left:353.066667pt;}
.x20_c00083{left:356.800000pt;}
.x57_c00083{left:358.400000pt;}
.x41_c00083{left:361.600000pt;}
.x2_c00083{left:362.933333pt;}
.x77_c00083{left:364.266667pt;}
.x72_c00083{left:365.733333pt;}
.x69_c00083{left:369.600000pt;}
.x53_c00083{left:370.800000pt;}
.x9_c00083{left:371.866667pt;}
.x29_c00083{left:373.066667pt;}
.x11_c00083{left:375.733333pt;}
.x6d_c00083{left:377.066667pt;}
.x51_c00083{left:379.066667pt;}
.x58_c00083{left:380.800000pt;}
.x3a_c00083{left:382.133333pt;}
.x31_c00083{left:383.066667pt;}
.x36_c00083{left:386.933333pt;}
.x7b_c00083{left:389.733333pt;}
.x12_c00083{left:393.066667pt;}
.x23_c00083{left:396.666667pt;}
.xa_c00083{left:406.133333pt;}
.x26_c00083{left:407.600000pt;}
.x18_c00083{left:408.533333pt;}
.x6e_c00083{left:410.000000pt;}
.xb_c00083{left:414.400000pt;}
.x52_c00083{left:418.133333pt;}
.x7d_c00083{left:419.466667pt;}
.x74_c00083{left:420.400000pt;}
.x2a_c00083{left:426.800000pt;}
.x59_c00083{left:429.066667pt;}
.x42_c00083{left:431.333333pt;}
.x37_c00083{left:433.333333pt;}
.x5f_c00083{left:434.533333pt;}
.x3b_c00083{left:438.400000pt;}
.x7a_c00083{left:445.333333pt;}
.x80_c00083{left:464.933333pt;}
.x92_c00083{left:466.533333pt;}
.xa5_c00083{left:468.800000pt;}
.xd1_c00083{left:469.733333pt;}
.xe8_c00083{left:470.666667pt;}
.x8d_c00083{left:481.466667pt;}
.x9e_c00083{left:482.800000pt;}
.xad_c00083{left:483.866667pt;}
.xc9_c00083{left:485.066667pt;}
.xb7_c00083{left:486.000000pt;}
.xe9_c00083{left:487.200000pt;}
.xf2_c00083{left:488.400000pt;}
.xfc_c00083{left:490.000000pt;}
.x104_c00083{left:491.333333pt;}
.x115_c00083{left:492.266667pt;}
.x93_c00083{left:494.400000pt;}
.xda_c00083{left:495.333333pt;}
.xd6_c00083{left:496.266667pt;}
.xa8_c00083{left:499.866667pt;}
.xb1_c00083{left:504.666667pt;}
.xc4_c00083{left:506.133333pt;}
.x112_c00083{left:507.466667pt;}
.xdb_c00083{left:512.666667pt;}
.xc1_c00083{left:514.133333pt;}
.xf3_c00083{left:516.266667pt;}
.x88_c00083{left:518.800000pt;}
.xd2_c00083{left:522.800000pt;}
.x94_c00083{left:525.066667pt;}
.x90_c00083{left:526.133333pt;}
.x8e_c00083{left:528.133333pt;}
.x100_c00083{left:529.333333pt;}
.xca_c00083{left:530.533333pt;}
.x10b_c00083{left:531.866667pt;}
.xae_c00083{left:533.466667pt;}
.xb2_c00083{left:536.000000pt;}
.x81_c00083{left:536.933333pt;}
.xed_c00083{left:541.066667pt;}
.xd7_c00083{left:542.933333pt;}
.xdc_c00083{left:545.200000pt;}
.x82_c00083{left:546.533333pt;}
.xcb_c00083{left:548.133333pt;}
.xea_c00083{left:551.066667pt;}
.x116_c00083{left:552.800000pt;}
.xa9_c00083{left:555.600000pt;}
.xe4_c00083{left:559.066667pt;}
.xd3_c00083{left:560.533333pt;}
.xf4_c00083{left:561.733333pt;}
.xb8_c00083{left:564.133333pt;}
.xc5_c00083{left:565.066667pt;}
.x83_c00083{left:566.000000pt;}
.xbd_c00083{left:569.200000pt;}
.x10c_c00083{left:571.866667pt;}
.x95_c00083{left:573.066667pt;}
.x9f_c00083{left:575.333333pt;}
.xd4_c00083{left:577.200000pt;}
.xb3_c00083{left:578.266667pt;}
.xf7_c00083{left:581.066667pt;}
.xee_c00083{left:582.000000pt;}
.xcc_c00083{left:583.600000pt;}
.x96_c00083{left:586.133333pt;}
.xd8_c00083{left:587.066667pt;}
.xde_c00083{left:588.266667pt;}
.xaa_c00083{left:589.600000pt;}
.x101_c00083{left:590.800000pt;}
.x117_c00083{left:593.066667pt;}
.x84_c00083{left:595.066667pt;}
.x97_c00083{left:597.066667pt;}
.x91_c00083{left:599.466667pt;}
.x105_c00083{left:601.066667pt;}
.x108_c00083{left:602.533333pt;}
.xe5_c00083{left:604.133333pt;}
.xa0_c00083{left:605.466667pt;}
.x98_c00083{left:607.333333pt;}
.x10f_c00083{left:608.800000pt;}
.xf5_c00083{left:609.733333pt;}
.xab_c00083{left:613.600000pt;}
.x8f_c00083{left:615.200000pt;}
.x89_c00083{left:618.666667pt;}
.xaf_c00083{left:619.866667pt;}
.xa6_c00083{left:626.533333pt;}
.x85_c00083{left:628.933333pt;}
.xfd_c00083{left:630.133333pt;}
.x99_c00083{left:631.066667pt;}
.x106_c00083{left:632.666667pt;}
.xc6_c00083{left:634.800000pt;}
.x86_c00083{left:636.933333pt;}
.xa1_c00083{left:638.400000pt;}
.xef_c00083{left:639.600000pt;}
.xeb_c00083{left:640.933333pt;}
.xbe_c00083{left:643.466667pt;}
.xf1_c00083{left:645.200000pt;}
.xcf_c00083{left:648.933333pt;}
.x9a_c00083{left:650.000000pt;}
.x109_c00083{left:651.200000pt;}
.x8a_c00083{left:653.866667pt;}
.x102_c00083{left:657.333333pt;}
.xc2_c00083{left:658.400000pt;}
.x87_c00083{left:660.000000pt;}
.xe6_c00083{left:662.400000pt;}
.x110_c00083{left:664.133333pt;}
.x10d_c00083{left:665.200000pt;}
.xdd_c00083{left:667.066667pt;}
.xdf_c00083{left:668.533333pt;}
.x9b_c00083{left:669.466667pt;}
.xb9_c00083{left:671.733333pt;}
.x10e_c00083{left:674.133333pt;}
.xc3_c00083{left:676.266667pt;}
.xa2_c00083{left:678.400000pt;}
.xcd_c00083{left:679.600000pt;}
.xe0_c00083{left:681.866667pt;}
.xf6_c00083{left:683.333333pt;}
.xb4_c00083{left:684.533333pt;}
.x107_c00083{left:685.733333pt;}
.x103_c00083{left:686.800000pt;}
.xe1_c00083{left:688.000000pt;}
.xa7_c00083{left:693.066667pt;}
.x10a_c00083{left:694.666667pt;}
.xbf_c00083{left:697.866667pt;}
.xfe_c00083{left:699.866667pt;}
.x8b_c00083{left:700.933333pt;}
.x9c_c00083{left:702.400000pt;}
.xa3_c00083{left:703.333333pt;}
.xb5_c00083{left:705.600000pt;}
.xd0_c00083{left:706.800000pt;}
.xe3_c00083{left:708.133333pt;}
.xf8_c00083{left:709.066667pt;}
.xba_c00083{left:712.666667pt;}
.xff_c00083{left:716.133333pt;}
.xa4_c00083{left:717.066667pt;}
.x113_c00083{left:718.400000pt;}
.xec_c00083{left:722.533333pt;}
.xfa_c00083{left:724.133333pt;}
.xb6_c00083{left:725.733333pt;}
.xbb_c00083{left:727.066667pt;}
.xf0_c00083{left:728.000000pt;}
.xc7_c00083{left:729.200000pt;}
.xe2_c00083{left:731.600000pt;}
.xd9_c00083{left:732.800000pt;}
.xac_c00083{left:736.000000pt;}
.xb0_c00083{left:737.333333pt;}
.xfb_c00083{left:739.866667pt;}
.x9d_c00083{left:741.733333pt;}
.xce_c00083{left:746.800000pt;}
.xbc_c00083{left:749.066667pt;}
.xc0_c00083{left:751.600000pt;}
.x8c_c00083{left:753.733333pt;}
.xd5_c00083{left:755.733333pt;}
.xc8_c00083{left:757.333333pt;}
.xe7_c00083{left:758.400000pt;}
.xf9_c00083{left:759.333333pt;}
.x114_c00083{left:764.533333pt;}
.x111_c00083{left:772.933333pt;}
}





/* 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_c00084 {
    display:none;
  }
  .loading-indicator_c00084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00084 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_c00084 { 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_c00084" -> "#page-container .classname_c00084")
 */
.pf_c00084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00084 { /* 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_c00084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00084 { /* 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_c00084 { /* 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_c00084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00084 {overflow:visible;}
  }
}
.c_c00084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00084 { /* 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_c00084:after { /* webkit #35443 */
  content: '';
}
.t_c00084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00084 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 */
}
.__c00084 { /* 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_c00084 { /* info for Javascript */
  display:none;
}
.l_c00084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00084: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_c00084 {
    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_c00084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00084.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_c00084 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00084;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.000000;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;}
.mde_c00084{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m60_c00084{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m61_c00084{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00084{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m86_c00084{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m21_c00084{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00084{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m54_c00084{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m56_c00084{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.me5_c00084{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00084{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00084{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00084{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mac_c00084{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m108_c00084{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m109_c00084{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00084{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me0_c00084{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m22_c00084{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00084{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m10_c00084{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md2_c00084{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00084{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mab_c00084{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00084{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00084{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m35_c00084{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.me_c00084{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m33_c00084{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m51_c00084{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m99_c00084{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00084{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mff_c00084{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00084{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00084{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00084{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00084{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m38_c00084{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00084{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00084{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00084{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00084{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00084{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m43_c00084{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00084{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00084{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mea_c00084{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00084{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00084{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8_c00084{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb_c00084{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m16_c00084{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00084{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.me7_c00084{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf_c00084{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00084{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m7_c00084{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m76_c00084{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m80_c00084{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00084{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00084{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00084{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00084{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9_c00084{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00084{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m11_c00084{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00084{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00084{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m87_c00084{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m101_c00084{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md7_c00084{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00084{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m94_c00084{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00084{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mce_c00084{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m32_c00084{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m45_c00084{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m13_c00084{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md8_c00084{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00084{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md1_c00084{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00084{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m85_c00084{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m20_c00084{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m15_c00084{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00084{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00084{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00084{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00084{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00084{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00084{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00084{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00084{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00084{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m37_c00084{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00084{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m57_c00084{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4_c00084{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m116_c00084{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.maf_c00084{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00084{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m98_c00084{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m82_c00084{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m81_c00084{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m107_c00084{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00084{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.med_c00084{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m112_c00084{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00084{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00084{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00084{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m46_c00084{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00084{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m63_c00084{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mad_c00084{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m44_c00084{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m118_c00084{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00084{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m17_c00084{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m40_c00084{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00084{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00084{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m66_c00084{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m19_c00084{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00084{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m73_c00084{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m78_c00084{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00084{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00084{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00084{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m27_c00084{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m115_c00084{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m68_c00084{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00084{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6_c00084{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00084{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m74_c00084{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m49_c00084{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00084{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00084{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m47_c00084{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m120_c00084{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m89_c00084{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m93_c00084{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md6_c00084{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00084{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m77_c00084{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m50_c00084{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mee_c00084{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m67_c00084{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m29_c00084{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00084{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.me6_c00084{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m42_c00084{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00084{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc_c00084{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00084{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.md_c00084{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00084{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m71_c00084{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mec_c00084{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00084{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00084{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00084{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me3_c00084{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00084{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m34_c00084{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m36_c00084{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m55_c00084{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00084{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mef_c00084{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m97_c00084{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m79_c00084{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00084{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00084{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00084{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00084{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m64_c00084{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00084{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00084{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m96_c00084{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mca_c00084{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m26_c00084{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m52_c00084{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m14_c00084{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00084{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.md3_c00084{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m41_c00084{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m111_c00084{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m117_c00084{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me8_c00084{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m88_c00084{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m92_c00084{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m24_c00084{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m12_c00084{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00084{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m110_c00084{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m30_c00084{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00084{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m113_c00084{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md4_c00084{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00084{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m119_c00084{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00084{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00084{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00084{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00084{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00084{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m83_c00084{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00084{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m90_c00084{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3_c00084{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m58_c00084{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.me9_c00084{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m72_c00084{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00084{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00084{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00084{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00084{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00084{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m95_c00084{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.maa_c00084{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00084{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5_c00084{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00084{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m114_c00084{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md5_c00084{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);}
.mba_c00084{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00084{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00084{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00084{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2_c00084{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00084{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00084{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00084{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00084{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m25_c00084{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m84_c00084{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m103_c00084{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.meb_c00084{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m91_c00084{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me1_c00084{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m23_c00084{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00084{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00084{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me4_c00084{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.ma_c00084{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m59_c00084{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mae_c00084{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00084{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m100_c00084{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00084{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00084{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m18_c00084{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00084{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.me2_c00084{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m70_c00084{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m69_c00084{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m75_c00084{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md0_c00084{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m48_c00084{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m65_c00084{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00084{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00084{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00084{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00084{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00084{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m106_c00084{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m102_c00084{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00084{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m53_c00084{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m39_c00084{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00084{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00084{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00084{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00084{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00084{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mda_c00084{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m105_c00084{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00084{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.md9_c00084{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m31_c00084{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00084{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m104_c00084{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00084{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m0_c00084{transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);}
.m62_c00084{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m28_c00084{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls0_c00084{letter-spacing:0.000000px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{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__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00084{word-spacing:-8.333333px;}
.ws3_c00084{word-spacing:-7.500000px;}
.ws9_c00084{word-spacing:0.000000px;}
.ws7_c00084{word-spacing:1.763359px;}
.ws0_c00084{word-spacing:12.678571px;}
.ws6_c00084{word-spacing:13.769602px;}
.ws1_c00084{word-spacing:21.323529px;}
.ws4_c00084{word-spacing:35.833333px;}
.ws5_c00084{word-spacing:63.125000px;}
.ws2_c00084{word-spacing:74.722222px;}
._0_c00084{width:74.166667px;}
.fc0_c00084{color:transparent;}
.fs7_c00084{font-size:30.000000px;}
.fs8_c00084{font-size:42.000000px;}
.fs1_c00084{font-size:48.000000px;}
.fs6_c00084{font-size:54.000000px;}
.fs5_c00084{font-size:60.000000px;}
.fs4_c00084{font-size:66.000000px;}
.fs2_c00084{font-size:72.000000px;}
.fs3_c00084{font-size:78.000000px;}
.fs0_c00084{font-size:84.000000px;}
.y0_c00084{bottom:0.000000px;}
.y2_c00084{bottom:68.400000px;}
.y6b_c00084{bottom:177.300000px;}
.y35_c00084{bottom:178.350000px;}
.y6a_c00084{bottom:192.000000px;}
.y34_c00084{bottom:193.050000px;}
.y33_c00084{bottom:206.700000px;}
.y69_c00084{bottom:220.800000px;}
.y68_c00084{bottom:235.500000px;}
.y67_c00084{bottom:249.900000px;}
.y32_c00084{bottom:255.600000px;}
.y66_c00084{bottom:264.600000px;}
.y31_c00084{bottom:273.300000px;}
.y65_c00084{bottom:279.000000px;}
.y30_c00084{bottom:290.850000px;}
.y64_c00084{bottom:293.400000px;}
.y63_c00084{bottom:307.500000px;}
.y2f_c00084{bottom:308.850000px;}
.y2e_c00084{bottom:331.200000px;}
.y62_c00084{bottom:345.900000px;}
.y2d_c00084{bottom:352.800000px;}
.y61_c00084{bottom:368.550000px;}
.y2c_c00084{bottom:371.100000px;}
.y60_c00084{bottom:382.650000px;}
.y5f_c00084{bottom:386.250000px;}
.y2b_c00084{bottom:393.600000px;}
.y2a_c00084{bottom:411.600000px;}
.y5c_c00084{bottom:413.250000px;}
.y29_c00084{bottom:429.600000px;}
.y5b_c00084{bottom:435.900000px;}
.y28_c00084{bottom:447.900000px;}
.y5a_c00084{bottom:453.900000px;}
.y27_c00084{bottom:470.100000px;}
.y59_c00084{bottom:475.950000px;}
.y26_c00084{bottom:487.800000px;}
.y58_c00084{bottom:494.250000px;}
.y25_c00084{bottom:506.100000px;}
.y57_c00084{bottom:515.700000px;}
.y24_c00084{bottom:523.800000px;}
.y56_c00084{bottom:533.700000px;}
.y23_c00084{bottom:541.800000px;}
.y55_c00084{bottom:551.700000px;}
.y22_c00084{bottom:559.800000px;}
.y54_c00084{bottom:569.700000px;}
.y21_c00084{bottom:577.800000px;}
.y53_c00084{bottom:587.700000px;}
.y20_c00084{bottom:595.800000px;}
.y52_c00084{bottom:605.700000px;}
.y1f_c00084{bottom:613.800000px;}
.y51_c00084{bottom:623.700000px;}
.y1e_c00084{bottom:631.800000px;}
.y50_c00084{bottom:641.700000px;}
.y1d_c00084{bottom:649.800000px;}
.y4f_c00084{bottom:659.400000px;}
.y1c_c00084{bottom:667.500000px;}
.y4e_c00084{bottom:677.400000px;}
.y1b_c00084{bottom:685.500000px;}
.y4d_c00084{bottom:695.400000px;}
.y1a_c00084{bottom:707.550000px;}
.y4c_c00084{bottom:713.700000px;}
.y19_c00084{bottom:722.250000px;}
.y4b_c00084{bottom:731.400000px;}
.y18_c00084{bottom:735.150000px;}
.y4a_c00084{bottom:749.100000px;}
.y17_c00084{bottom:749.850000px;}
.y16_c00084{bottom:763.950000px;}
.y49_c00084{bottom:767.400000px;}
.y15_c00084{bottom:777.600000px;}
.y48_c00084{bottom:785.100000px;}
.y14_c00084{bottom:793.050000px;}
.y47_c00084{bottom:803.100000px;}
.y13_c00084{bottom:808.650000px;}
.y46_c00084{bottom:821.100000px;}
.y12_c00084{bottom:822.000000px;}
.y11_c00084{bottom:838.500000px;}
.y45_c00084{bottom:839.100000px;}
.y10_c00084{bottom:855.000000px;}
.y44_c00084{bottom:857.100000px;}
.y43_c00084{bottom:872.850000px;}
.y5e_c00084{bottom:873.000000px;}
.yf_c00084{bottom:874.800000px;}
.y42_c00084{bottom:889.050000px;}
.ye_c00084{bottom:893.850000px;}
.y41_c00084{bottom:901.650000px;}
.yd_c00084{bottom:910.800000px;}
.y5d_c00084{bottom:916.200000px;}
.y40_c00084{bottom:917.550000px;}
.yc_c00084{bottom:932.700000px;}
.yb_c00084{bottom:950.700000px;}
.y3f_c00084{bottom:951.150000px;}
.ya_c00084{bottom:968.700000px;}
.y3e_c00084{bottom:969.450000px;}
.y9_c00084{bottom:986.700000px;}
.y3d_c00084{bottom:987.450000px;}
.y8_c00084{bottom:1004.700000px;}
.y3c_c00084{bottom:1005.450000px;}
.y7_c00084{bottom:1022.400000px;}
.y3b_c00084{bottom:1027.500000px;}
.y3a_c00084{bottom:1045.800000px;}
.y6_c00084{bottom:1046.850000px;}
.y39_c00084{bottom:1063.500000px;}
.y5_c00084{bottom:1067.400000px;}
.y38_c00084{bottom:1081.500000px;}
.y4_c00084{bottom:1093.050000px;}
.y37_c00084{bottom:1099.500000px;}
.y3_c00084{bottom:1114.950000px;}
.y36_c00084{bottom:1117.500000px;}
.y1_c00084{bottom:1144.050000px;}
.h9_c00084{height:30.000000px;}
.ha_c00084{height:42.000000px;}
.h3_c00084{height:48.000000px;}
.h8_c00084{height:54.000000px;}
.h7_c00084{height:60.000000px;}
.h6_c00084{height:66.000000px;}
.h4_c00084{height:72.000000px;}
.h5_c00084{height:78.000000px;}
.h2_c00084{height:84.000000px;}
.h0_c00084{height:1269.720063px;}
.h1_c00084{height:1269.750000px;}
.w0_c00084{width:948.600036px;}
.w1_c00084{width:948.750000px;}
.x0_c00084{left:0.000000px;}
.x2_c00084{left:18.750000px;}
.x3_c00084{left:64.800000px;}
.x8_c00084{left:66.600000px;}
.x5e_c00084{left:67.650000px;}
.x8f_c00084{left:68.700000px;}
.xc_c00084{left:80.550000px;}
.x52_c00084{left:81.750000px;}
.x14_c00084{left:82.950000px;}
.x28_c00084{left:84.000000px;}
.x2e_c00084{left:85.200000px;}
.x66_c00084{left:86.700000px;}
.x70_c00084{left:87.750000px;}
.x4a_c00084{left:97.500000px;}
.x9_c00084{left:102.900000px;}
.x8a_c00084{left:104.700000px;}
.x96_c00084{left:107.250000px;}
.x15_c00084{left:108.450000px;}
.x94_c00084{left:109.800000px;}
.x82_c00084{left:111.150000px;}
.x2f_c00084{left:112.200000px;}
.x61_c00084{left:115.800000px;}
.x8b_c00084{left:117.450000px;}
.x4b_c00084{left:119.400000px;}
.x1d_c00084{left:120.450000px;}
.x75_c00084{left:125.700000px;}
.x4_c00084{left:127.050000px;}
.x3d_c00084{left:128.550000px;}
.x97_c00084{left:130.350000px;}
.x87_c00084{left:132.300000px;}
.x16_c00084{left:134.400000px;}
.x6_c00084{left:135.900000px;}
.x5d_c00084{left:137.850000px;}
.x4c_c00084{left:139.950000px;}
.xa_c00084{left:141.450000px;}
.x30_c00084{left:144.900000px;}
.x6e_c00084{left:147.150000px;}
.x89_c00084{left:148.650000px;}
.x83_c00084{left:149.700000px;}
.x36_c00084{left:150.750000px;}
.x29_c00084{left:152.400000px;}
.x4d_c00084{left:155.100000px;}
.x7b_c00084{left:157.650000px;}
.x5_c00084{left:158.700000px;}
.x58_c00084{left:160.800000px;}
.x91_c00084{left:162.900000px;}
.xd_c00084{left:164.400000px;}
.x1e_c00084{left:166.500000px;}
.x62_c00084{left:168.000000px;}
.x53_c00084{left:170.550000px;}
.x56_c00084{left:173.100000px;}
.x3e_c00084{left:174.600000px;}
.x1f_c00084{left:177.000000px;}
.x43_c00084{left:178.200000px;}
.x22_c00084{left:181.050000px;}
.x4e_c00084{left:183.150000px;}
.xe_c00084{left:184.500000px;}
.x20_c00084{left:186.750000px;}
.x84_c00084{left:188.850000px;}
.x71_c00084{left:190.350000px;}
.x76_c00084{left:192.600000px;}
.x4f_c00084{left:193.650000px;}
.x39_c00084{left:195.150000px;}
.x99_c00084{left:198.450000px;}
.x37_c00084{left:201.150000px;}
.xf_c00084{left:202.500000px;}
.x54_c00084{left:204.450000px;}
.x7_c00084{left:210.450000px;}
.x6b_c00084{left:212.250000px;}
.x23_c00084{left:213.450000px;}
.x17_c00084{left:215.400000px;}
.x7c_c00084{left:217.350000px;}
.x31_c00084{left:219.000000px;}
.x3a_c00084{left:223.200000px;}
.x44_c00084{left:224.700000px;}
.x77_c00084{left:226.050000px;}
.x10_c00084{left:228.750000px;}
.x2a_c00084{left:230.850000px;}
.x88_c00084{left:231.900000px;}
.x63_c00084{left:234.600000px;}
.x59_c00084{left:237.000000px;}
.x50_c00084{left:239.700000px;}
.x32_c00084{left:240.900000px;}
.x85_c00084{left:242.100000px;}
.x3f_c00084{left:243.300000px;}
.x6c_c00084{left:247.950000px;}
.x78_c00084{left:249.750000px;}
.x67_c00084{left:251.700000px;}
.x81_c00084{left:253.650000px;}
.x11_c00084{left:254.700000px;}
.x18_c00084{left:255.750000px;}
.x5a_c00084{left:259.350000px;}
.x92_c00084{left:260.550000px;}
.xb_c00084{left:262.050000px;}
.x72_c00084{left:265.950000px;}
.x2b_c00084{left:271.200000px;}
.x33_c00084{left:272.550000px;}
.x24_c00084{left:273.600000px;}
.x45_c00084{left:276.150000px;}
.x8c_c00084{left:277.650000px;}
.x8d_c00084{left:282.600000px;}
.x19_c00084{left:286.050000px;}
.x3b_c00084{left:288.300000px;}
.x7d_c00084{left:292.200000px;}
.x25_c00084{left:294.900000px;}
.x46_c00084{left:298.050000px;}
.x51_c00084{left:299.850000px;}
.x5b_c00084{left:302.850000px;}
.x95_c00084{left:304.350000px;}
.x68_c00084{left:305.700000px;}
.x2c_c00084{left:307.200000px;}
.x1a_c00084{left:309.750000px;}
.x5f_c00084{left:313.500000px;}
.x1_c00084{left:314.700000px;}
.x5c_c00084{left:317.250000px;}
.x98_c00084{left:319.650000px;}
.x34_c00084{left:321.150000px;}
.x73_c00084{left:322.500000px;}
.x9a_c00084{left:323.700000px;}
.x69_c00084{left:324.750000px;}
.x7e_c00084{left:326.100000px;}
.x40_c00084{left:327.900000px;}
.x86_c00084{left:329.550000px;}
.x79_c00084{left:331.500000px;}
.x93_c00084{left:335.400000px;}
.x47_c00084{left:337.200000px;}
.x55_c00084{left:338.700000px;}
.x64_c00084{left:339.750000px;}
.x6a_c00084{left:341.850000px;}
.x6f_c00084{left:344.850000px;}
.x38_c00084{left:346.200000px;}
.x7f_c00084{left:347.400000px;}
.x7a_c00084{left:348.450000px;}
.x12_c00084{left:350.400000px;}
.x6d_c00084{left:351.600000px;}
.x21_c00084{left:353.550000px;}
.x41_c00084{left:358.500000px;}
.x1b_c00084{left:360.150000px;}
.x3c_c00084{left:361.800000px;}
.x2d_c00084{left:364.500000px;}
.x57_c00084{left:365.700000px;}
.x48_c00084{left:367.050000px;}
.x65_c00084{left:370.050000px;}
.x74_c00084{left:371.400000px;}
.x8e_c00084{left:373.650000px;}
.x90_c00084{left:380.400000px;}
.x60_c00084{left:384.000000px;}
.x13_c00084{left:387.450000px;}
.x26_c00084{left:388.500000px;}
.x35_c00084{left:389.700000px;}
.x80_c00084{left:391.650000px;}
.x42_c00084{left:392.700000px;}
.x49_c00084{left:395.100000px;}
.x1c_c00084{left:396.450000px;}
.x27_c00084{left:397.500000px;}
.xc5_c00084{left:428.100000px;}
.xe9_c00084{left:429.450000px;}
.x12a_c00084{left:438.900000px;}
.x12d_c00084{left:443.100000px;}
.xae_c00084{left:445.350000px;}
.x9b_c00084{left:447.150000px;}
.x13b_c00084{left:454.950000px;}
.xde_c00084{left:457.800000px;}
.x122_c00084{left:463.350000px;}
.x12b_c00084{left:464.850000px;}
.x11f_c00084{left:467.100000px;}
.xf1_c00084{left:469.800000px;}
.xb5_c00084{left:470.850000px;}
.x141_c00084{left:473.250000px;}
.xc9_c00084{left:474.600000px;}
.x108_c00084{left:477.750000px;}
.xa4_c00084{left:478.800000px;}
.x13c_c00084{left:479.850000px;}
.x119_c00084{left:482.550000px;}
.x100_c00084{left:484.200000px;}
.xf6_c00084{left:485.400000px;}
.xaf_c00084{left:486.450000px;}
.x127_c00084{left:488.100000px;}
.x110_c00084{left:489.600000px;}
.xb6_c00084{left:490.650000px;}
.xd7_c00084{left:491.700000px;}
.xbc_c00084{left:496.200000px;}
.xe5_c00084{left:499.350000px;}
.x104_c00084{left:500.850000px;}
.x12c_c00084{left:502.650000px;}
.x9c_c00084{left:504.450000px;}
.xf7_c00084{left:505.500000px;}
.xc1_c00084{left:506.700000px;}
.x11a_c00084{left:509.250000px;}
.x10d_c00084{left:510.450000px;}
.xdf_c00084{left:511.500000px;}
.x123_c00084{left:513.300000px;}
.x101_c00084{left:516.300000px;}
.xea_c00084{left:517.950000px;}
.x9d_c00084{left:519.150000px;}
.xa5_c00084{left:521.250000px;}
.x142_c00084{left:523.350000px;}
.xb0_c00084{left:525.300000px;}
.x12e_c00084{left:526.350000px;}
.xf9_c00084{left:527.700000px;}
.xd0_c00084{left:529.650000px;}
.xf2_c00084{left:532.350000px;}
.xc6_c00084{left:534.000000px;}
.x121_c00084{left:536.250000px;}
.xe0_c00084{left:537.450000px;}
.xb7_c00084{left:540.750000px;}
.x114_c00084{left:541.950000px;}
.xbd_c00084{left:543.750000px;}
.xca_c00084{left:544.800000px;}
.x128_c00084{left:547.500000px;}
.xe6_c00084{left:549.750000px;}
.xa6_c00084{left:551.550000px;}
.x111_c00084{left:554.700000px;}
.xc2_c00084{left:556.350000px;}
.x105_c00084{left:558.450000px;}
.xf3_c00084{left:560.850000px;}
.xfa_c00084{left:562.650000px;}
.xb8_c00084{left:563.850000px;}
.x13d_c00084{left:565.050000px;}
.x117_c00084{left:567.750000px;}
.x132_c00084{left:568.800000px;}
.xe7_c00084{left:569.850000px;}
.x124_c00084{left:571.950000px;}
.xd1_c00084{left:573.600000px;}
.xf4_c00084{left:575.550000px;}
.xeb_c00084{left:577.650000px;}
.x109_c00084{left:578.850000px;}
.x11d_c00084{left:579.900000px;}
.xc3_c00084{left:581.250000px;}
.x9e_c00084{left:583.200000px;}
.xb1_c00084{left:584.400000px;}
.x102_c00084{left:586.950000px;}
.xa7_c00084{left:588.300000px;}
.x133_c00084{left:590.100000px;}
.xee_c00084{left:591.150000px;}
.x9f_c00084{left:592.200000px;}
.x130_c00084{left:593.400000px;}
.xcb_c00084{left:594.450000px;}
.xb2_c00084{left:596.250000px;}
.xd2_c00084{left:597.300000px;}
.x120_c00084{left:601.050000px;}
.x12f_c00084{left:602.250000px;}
.x137_c00084{left:604.500000px;}
.x11b_c00084{left:606.900000px;}
.xd8_c00084{left:609.000000px;}
.x112_c00084{left:610.500000px;}
.xc4_c00084{left:614.400000px;}
.x106_c00084{left:615.600000px;}
.xe1_c00084{left:617.400000px;}
.x115_c00084{left:620.100000px;}
.xa8_c00084{left:621.750000px;}
.xbe_c00084{left:623.250000px;}
.x10a_c00084{left:624.900000px;}
.xd9_c00084{left:625.950000px;}
.xe8_c00084{left:627.900000px;}
.xcc_c00084{left:631.950000px;}
.xd3_c00084{left:633.300000px;}
.x131_c00084{left:634.500000px;}
.xfb_c00084{left:636.150000px;}
.xa0_c00084{left:637.500000px;}
.x129_c00084{left:639.750000px;}
.xa9_c00084{left:643.050000px;}
.xf8_c00084{left:646.200000px;}
.x113_c00084{left:648.300000px;}
.xda_c00084{left:649.350000px;}
.x13a_c00084{left:650.700000px;}
.x10b_c00084{left:652.950000px;}
.x118_c00084{left:654.600000px;}
.xcd_c00084{left:656.100000px;}
.x125_c00084{left:659.100000px;}
.x135_c00084{left:660.450000px;}
.xfe_c00084{left:662.700000px;}
.xb9_c00084{left:663.900000px;}
.xd4_c00084{left:665.400000px;}
.xef_c00084{left:667.050000px;}
.x10e_c00084{left:668.100000px;}
.xec_c00084{left:670.500000px;}
.x134_c00084{left:671.850000px;}
.xba_c00084{left:673.200000px;}
.xa1_c00084{left:674.250000px;}
.x126_c00084{left:675.300000px;}
.xb3_c00084{left:676.500000px;}
.xaa_c00084{left:679.050000px;}
.x136_c00084{left:680.250000px;}
.x11e_c00084{left:681.900000px;}
.x11c_c00084{left:684.300000px;}
.x13e_c00084{left:685.350000px;}
.xdb_c00084{left:686.850000px;}
.xbf_c00084{left:690.600000px;}
.xa2_c00084{left:693.000000px;}
.x107_c00084{left:694.800000px;}
.xd5_c00084{left:696.750000px;}
.xb4_c00084{left:698.400000px;}
.xf5_c00084{left:699.600000px;}
.xc7_c00084{left:702.150000px;}
.xab_c00084{left:703.200000px;}
.xce_c00084{left:705.750000px;}
.xfc_c00084{left:707.850000px;}
.xd6_c00084{left:709.050000px;}
.xe2_c00084{left:712.200000px;}
.x10c_c00084{left:714.600000px;}
.xac_c00084{left:716.100000px;}
.xdc_c00084{left:717.750000px;}
.xc8_c00084{left:719.400000px;}
.x138_c00084{left:720.450000px;}
.xe3_c00084{left:724.500000px;}
.x10f_c00084{left:726.900000px;}
.xa3_c00084{left:729.300000px;}
.xff_c00084{left:730.800000px;}
.x140_c00084{left:732.300000px;}
.xad_c00084{left:734.100000px;}
.xc0_c00084{left:737.400000px;}
.x13f_c00084{left:738.600000px;}
.xcf_c00084{left:741.000000px;}
.xfd_c00084{left:743.850000px;}
.x103_c00084{left:746.100000px;}
.x139_c00084{left:747.150000px;}
.xdd_c00084{left:752.250000px;}
.xe4_c00084{left:753.750000px;}
.xf0_c00084{left:755.250000px;}
.xbb_c00084{left:757.200000px;}
.x116_c00084{left:761.700000px;}
.xed_c00084{left:763.350000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws8_c00084{word-spacing:-7.407407pt;}
.ws3_c00084{word-spacing:-6.666667pt;}
.ws9_c00084{word-spacing:0.000000pt;}
.ws7_c00084{word-spacing:1.567430pt;}
.ws0_c00084{word-spacing:11.269841pt;}
.ws6_c00084{word-spacing:12.239646pt;}
.ws1_c00084{word-spacing:18.954248pt;}
.ws4_c00084{word-spacing:31.851852pt;}
.ws5_c00084{word-spacing:56.111111pt;}
.ws2_c00084{word-spacing:66.419753pt;}
._0_c00084{width:65.925926pt;}
.fs7_c00084{font-size:26.666667pt;}
.fs8_c00084{font-size:37.333333pt;}
.fs1_c00084{font-size:42.666667pt;}
.fs6_c00084{font-size:48.000000pt;}
.fs5_c00084{font-size:53.333333pt;}
.fs4_c00084{font-size:58.666667pt;}
.fs2_c00084{font-size:64.000000pt;}
.fs3_c00084{font-size:69.333333pt;}
.fs0_c00084{font-size:74.666667pt;}
.y0_c00084{bottom:0.000000pt;}
.y2_c00084{bottom:60.800000pt;}
.y6b_c00084{bottom:157.600000pt;}
.y35_c00084{bottom:158.533333pt;}
.y6a_c00084{bottom:170.666667pt;}
.y34_c00084{bottom:171.600000pt;}
.y33_c00084{bottom:183.733333pt;}
.y69_c00084{bottom:196.266667pt;}
.y68_c00084{bottom:209.333333pt;}
.y67_c00084{bottom:222.133333pt;}
.y32_c00084{bottom:227.200000pt;}
.y66_c00084{bottom:235.200000pt;}
.y31_c00084{bottom:242.933333pt;}
.y65_c00084{bottom:248.000000pt;}
.y30_c00084{bottom:258.533333pt;}
.y64_c00084{bottom:260.800000pt;}
.y63_c00084{bottom:273.333333pt;}
.y2f_c00084{bottom:274.533333pt;}
.y2e_c00084{bottom:294.400000pt;}
.y62_c00084{bottom:307.466667pt;}
.y2d_c00084{bottom:313.600000pt;}
.y61_c00084{bottom:327.600000pt;}
.y2c_c00084{bottom:329.866667pt;}
.y60_c00084{bottom:340.133333pt;}
.y5f_c00084{bottom:343.333333pt;}
.y2b_c00084{bottom:349.866667pt;}
.y2a_c00084{bottom:365.866667pt;}
.y5c_c00084{bottom:367.333333pt;}
.y29_c00084{bottom:381.866667pt;}
.y5b_c00084{bottom:387.466667pt;}
.y28_c00084{bottom:398.133333pt;}
.y5a_c00084{bottom:403.466667pt;}
.y27_c00084{bottom:417.866667pt;}
.y59_c00084{bottom:423.066667pt;}
.y26_c00084{bottom:433.600000pt;}
.y58_c00084{bottom:439.333333pt;}
.y25_c00084{bottom:449.866667pt;}
.y57_c00084{bottom:458.400000pt;}
.y24_c00084{bottom:465.600000pt;}
.y56_c00084{bottom:474.400000pt;}
.y23_c00084{bottom:481.600000pt;}
.y55_c00084{bottom:490.400000pt;}
.y22_c00084{bottom:497.600000pt;}
.y54_c00084{bottom:506.400000pt;}
.y21_c00084{bottom:513.600000pt;}
.y53_c00084{bottom:522.400000pt;}
.y20_c00084{bottom:529.600000pt;}
.y52_c00084{bottom:538.400000pt;}
.y1f_c00084{bottom:545.600000pt;}
.y51_c00084{bottom:554.400000pt;}
.y1e_c00084{bottom:561.600000pt;}
.y50_c00084{bottom:570.400000pt;}
.y1d_c00084{bottom:577.600000pt;}
.y4f_c00084{bottom:586.133333pt;}
.y1c_c00084{bottom:593.333333pt;}
.y4e_c00084{bottom:602.133333pt;}
.y1b_c00084{bottom:609.333333pt;}
.y4d_c00084{bottom:618.133333pt;}
.y1a_c00084{bottom:628.933333pt;}
.y4c_c00084{bottom:634.400000pt;}
.y19_c00084{bottom:642.000000pt;}
.y4b_c00084{bottom:650.133333pt;}
.y18_c00084{bottom:653.466667pt;}
.y4a_c00084{bottom:665.866667pt;}
.y17_c00084{bottom:666.533333pt;}
.y16_c00084{bottom:679.066667pt;}
.y49_c00084{bottom:682.133333pt;}
.y15_c00084{bottom:691.200000pt;}
.y48_c00084{bottom:697.866667pt;}
.y14_c00084{bottom:704.933333pt;}
.y47_c00084{bottom:713.866667pt;}
.y13_c00084{bottom:718.800000pt;}
.y46_c00084{bottom:729.866667pt;}
.y12_c00084{bottom:730.666667pt;}
.y11_c00084{bottom:745.333333pt;}
.y45_c00084{bottom:745.866667pt;}
.y10_c00084{bottom:760.000000pt;}
.y44_c00084{bottom:761.866667pt;}
.y43_c00084{bottom:775.866667pt;}
.y5e_c00084{bottom:776.000000pt;}
.yf_c00084{bottom:777.600000pt;}
.y42_c00084{bottom:790.266667pt;}
.ye_c00084{bottom:794.533333pt;}
.y41_c00084{bottom:801.466667pt;}
.yd_c00084{bottom:809.600000pt;}
.y5d_c00084{bottom:814.400000pt;}
.y40_c00084{bottom:815.600000pt;}
.yc_c00084{bottom:829.066667pt;}
.yb_c00084{bottom:845.066667pt;}
.y3f_c00084{bottom:845.466667pt;}
.ya_c00084{bottom:861.066667pt;}
.y3e_c00084{bottom:861.733333pt;}
.y9_c00084{bottom:877.066667pt;}
.y3d_c00084{bottom:877.733333pt;}
.y8_c00084{bottom:893.066667pt;}
.y3c_c00084{bottom:893.733333pt;}
.y7_c00084{bottom:908.800000pt;}
.y3b_c00084{bottom:913.333333pt;}
.y3a_c00084{bottom:929.600000pt;}
.y6_c00084{bottom:930.533333pt;}
.y39_c00084{bottom:945.333333pt;}
.y5_c00084{bottom:948.800000pt;}
.y38_c00084{bottom:961.333333pt;}
.y4_c00084{bottom:971.600000pt;}
.y37_c00084{bottom:977.333333pt;}
.y3_c00084{bottom:991.066667pt;}
.y36_c00084{bottom:993.333333pt;}
.y1_c00084{bottom:1016.933333pt;}
.h9_c00084{height:26.666667pt;}
.ha_c00084{height:37.333333pt;}
.h3_c00084{height:42.666667pt;}
.h8_c00084{height:48.000000pt;}
.h7_c00084{height:53.333333pt;}
.h6_c00084{height:58.666667pt;}
.h4_c00084{height:64.000000pt;}
.h5_c00084{height:69.333333pt;}
.h2_c00084{height:74.666667pt;}
.h0_c00084{height:1128.640056pt;}
.h1_c00084{height:1128.666667pt;}
.w0_c00084{width:843.200032pt;}
.w1_c00084{width:843.333333pt;}
.x0_c00084{left:0.000000pt;}
.x2_c00084{left:16.666667pt;}
.x3_c00084{left:57.600000pt;}
.x8_c00084{left:59.200000pt;}
.x5e_c00084{left:60.133333pt;}
.x8f_c00084{left:61.066667pt;}
.xc_c00084{left:71.600000pt;}
.x52_c00084{left:72.666667pt;}
.x14_c00084{left:73.733333pt;}
.x28_c00084{left:74.666667pt;}
.x2e_c00084{left:75.733333pt;}
.x66_c00084{left:77.066667pt;}
.x70_c00084{left:78.000000pt;}
.x4a_c00084{left:86.666667pt;}
.x9_c00084{left:91.466667pt;}
.x8a_c00084{left:93.066667pt;}
.x96_c00084{left:95.333333pt;}
.x15_c00084{left:96.400000pt;}
.x94_c00084{left:97.600000pt;}
.x82_c00084{left:98.800000pt;}
.x2f_c00084{left:99.733333pt;}
.x61_c00084{left:102.933333pt;}
.x8b_c00084{left:104.400000pt;}
.x4b_c00084{left:106.133333pt;}
.x1d_c00084{left:107.066667pt;}
.x75_c00084{left:111.733333pt;}
.x4_c00084{left:112.933333pt;}
.x3d_c00084{left:114.266667pt;}
.x97_c00084{left:115.866667pt;}
.x87_c00084{left:117.600000pt;}
.x16_c00084{left:119.466667pt;}
.x6_c00084{left:120.800000pt;}
.x5d_c00084{left:122.533333pt;}
.x4c_c00084{left:124.400000pt;}
.xa_c00084{left:125.733333pt;}
.x30_c00084{left:128.800000pt;}
.x6e_c00084{left:130.800000pt;}
.x89_c00084{left:132.133333pt;}
.x83_c00084{left:133.066667pt;}
.x36_c00084{left:134.000000pt;}
.x29_c00084{left:135.466667pt;}
.x4d_c00084{left:137.866667pt;}
.x7b_c00084{left:140.133333pt;}
.x5_c00084{left:141.066667pt;}
.x58_c00084{left:142.933333pt;}
.x91_c00084{left:144.800000pt;}
.xd_c00084{left:146.133333pt;}
.x1e_c00084{left:148.000000pt;}
.x62_c00084{left:149.333333pt;}
.x53_c00084{left:151.600000pt;}
.x56_c00084{left:153.866667pt;}
.x3e_c00084{left:155.200000pt;}
.x1f_c00084{left:157.333333pt;}
.x43_c00084{left:158.400000pt;}
.x22_c00084{left:160.933333pt;}
.x4e_c00084{left:162.800000pt;}
.xe_c00084{left:164.000000pt;}
.x20_c00084{left:166.000000pt;}
.x84_c00084{left:167.866667pt;}
.x71_c00084{left:169.200000pt;}
.x76_c00084{left:171.200000pt;}
.x4f_c00084{left:172.133333pt;}
.x39_c00084{left:173.466667pt;}
.x99_c00084{left:176.400000pt;}
.x37_c00084{left:178.800000pt;}
.xf_c00084{left:180.000000pt;}
.x54_c00084{left:181.733333pt;}
.x7_c00084{left:187.066667pt;}
.x6b_c00084{left:188.666667pt;}
.x23_c00084{left:189.733333pt;}
.x17_c00084{left:191.466667pt;}
.x7c_c00084{left:193.200000pt;}
.x31_c00084{left:194.666667pt;}
.x3a_c00084{left:198.400000pt;}
.x44_c00084{left:199.733333pt;}
.x77_c00084{left:200.933333pt;}
.x10_c00084{left:203.333333pt;}
.x2a_c00084{left:205.200000pt;}
.x88_c00084{left:206.133333pt;}
.x63_c00084{left:208.533333pt;}
.x59_c00084{left:210.666667pt;}
.x50_c00084{left:213.066667pt;}
.x32_c00084{left:214.133333pt;}
.x85_c00084{left:215.200000pt;}
.x3f_c00084{left:216.266667pt;}
.x6c_c00084{left:220.400000pt;}
.x78_c00084{left:222.000000pt;}
.x67_c00084{left:223.733333pt;}
.x81_c00084{left:225.466667pt;}
.x11_c00084{left:226.400000pt;}
.x18_c00084{left:227.333333pt;}
.x5a_c00084{left:230.533333pt;}
.x92_c00084{left:231.600000pt;}
.xb_c00084{left:232.933333pt;}
.x72_c00084{left:236.400000pt;}
.x2b_c00084{left:241.066667pt;}
.x33_c00084{left:242.266667pt;}
.x24_c00084{left:243.200000pt;}
.x45_c00084{left:245.466667pt;}
.x8c_c00084{left:246.800000pt;}
.x8d_c00084{left:251.200000pt;}
.x19_c00084{left:254.266667pt;}
.x3b_c00084{left:256.266667pt;}
.x7d_c00084{left:259.733333pt;}
.x25_c00084{left:262.133333pt;}
.x46_c00084{left:264.933333pt;}
.x51_c00084{left:266.533333pt;}
.x5b_c00084{left:269.200000pt;}
.x95_c00084{left:270.533333pt;}
.x68_c00084{left:271.733333pt;}
.x2c_c00084{left:273.066667pt;}
.x1a_c00084{left:275.333333pt;}
.x5f_c00084{left:278.666667pt;}
.x1_c00084{left:279.733333pt;}
.x5c_c00084{left:282.000000pt;}
.x98_c00084{left:284.133333pt;}
.x34_c00084{left:285.466667pt;}
.x73_c00084{left:286.666667pt;}
.x9a_c00084{left:287.733333pt;}
.x69_c00084{left:288.666667pt;}
.x7e_c00084{left:289.866667pt;}
.x40_c00084{left:291.466667pt;}
.x86_c00084{left:292.933333pt;}
.x79_c00084{left:294.666667pt;}
.x93_c00084{left:298.133333pt;}
.x47_c00084{left:299.733333pt;}
.x55_c00084{left:301.066667pt;}
.x64_c00084{left:302.000000pt;}
.x6a_c00084{left:303.866667pt;}
.x6f_c00084{left:306.533333pt;}
.x38_c00084{left:307.733333pt;}
.x7f_c00084{left:308.800000pt;}
.x7a_c00084{left:309.733333pt;}
.x12_c00084{left:311.466667pt;}
.x6d_c00084{left:312.533333pt;}
.x21_c00084{left:314.266667pt;}
.x41_c00084{left:318.666667pt;}
.x1b_c00084{left:320.133333pt;}
.x3c_c00084{left:321.600000pt;}
.x2d_c00084{left:324.000000pt;}
.x57_c00084{left:325.066667pt;}
.x48_c00084{left:326.266667pt;}
.x65_c00084{left:328.933333pt;}
.x74_c00084{left:330.133333pt;}
.x8e_c00084{left:332.133333pt;}
.x90_c00084{left:338.133333pt;}
.x60_c00084{left:341.333333pt;}
.x13_c00084{left:344.400000pt;}
.x26_c00084{left:345.333333pt;}
.x35_c00084{left:346.400000pt;}
.x80_c00084{left:348.133333pt;}
.x42_c00084{left:349.066667pt;}
.x49_c00084{left:351.200000pt;}
.x1c_c00084{left:352.400000pt;}
.x27_c00084{left:353.333333pt;}
.xc5_c00084{left:380.533333pt;}
.xe9_c00084{left:381.733333pt;}
.x12a_c00084{left:390.133333pt;}
.x12d_c00084{left:393.866667pt;}
.xae_c00084{left:395.866667pt;}
.x9b_c00084{left:397.466667pt;}
.x13b_c00084{left:404.400000pt;}
.xde_c00084{left:406.933333pt;}
.x122_c00084{left:411.866667pt;}
.x12b_c00084{left:413.200000pt;}
.x11f_c00084{left:415.200000pt;}
.xf1_c00084{left:417.600000pt;}
.xb5_c00084{left:418.533333pt;}
.x141_c00084{left:420.666667pt;}
.xc9_c00084{left:421.866667pt;}
.x108_c00084{left:424.666667pt;}
.xa4_c00084{left:425.600000pt;}
.x13c_c00084{left:426.533333pt;}
.x119_c00084{left:428.933333pt;}
.x100_c00084{left:430.400000pt;}
.xf6_c00084{left:431.466667pt;}
.xaf_c00084{left:432.400000pt;}
.x127_c00084{left:433.866667pt;}
.x110_c00084{left:435.200000pt;}
.xb6_c00084{left:436.133333pt;}
.xd7_c00084{left:437.066667pt;}
.xbc_c00084{left:441.066667pt;}
.xe5_c00084{left:443.866667pt;}
.x104_c00084{left:445.200000pt;}
.x12c_c00084{left:446.800000pt;}
.x9c_c00084{left:448.400000pt;}
.xf7_c00084{left:449.333333pt;}
.xc1_c00084{left:450.400000pt;}
.x11a_c00084{left:452.666667pt;}
.x10d_c00084{left:453.733333pt;}
.xdf_c00084{left:454.666667pt;}
.x123_c00084{left:456.266667pt;}
.x101_c00084{left:458.933333pt;}
.xea_c00084{left:460.400000pt;}
.x9d_c00084{left:461.466667pt;}
.xa5_c00084{left:463.333333pt;}
.x142_c00084{left:465.200000pt;}
.xb0_c00084{left:466.933333pt;}
.x12e_c00084{left:467.866667pt;}
.xf9_c00084{left:469.066667pt;}
.xd0_c00084{left:470.800000pt;}
.xf2_c00084{left:473.200000pt;}
.xc6_c00084{left:474.666667pt;}
.x121_c00084{left:476.666667pt;}
.xe0_c00084{left:477.733333pt;}
.xb7_c00084{left:480.666667pt;}
.x114_c00084{left:481.733333pt;}
.xbd_c00084{left:483.333333pt;}
.xca_c00084{left:484.266667pt;}
.x128_c00084{left:486.666667pt;}
.xe6_c00084{left:488.666667pt;}
.xa6_c00084{left:490.266667pt;}
.x111_c00084{left:493.066667pt;}
.xc2_c00084{left:494.533333pt;}
.x105_c00084{left:496.400000pt;}
.xf3_c00084{left:498.533333pt;}
.xfa_c00084{left:500.133333pt;}
.xb8_c00084{left:501.200000pt;}
.x13d_c00084{left:502.266667pt;}
.x117_c00084{left:504.666667pt;}
.x132_c00084{left:505.600000pt;}
.xe7_c00084{left:506.533333pt;}
.x124_c00084{left:508.400000pt;}
.xd1_c00084{left:509.866667pt;}
.xf4_c00084{left:511.600000pt;}
.xeb_c00084{left:513.466667pt;}
.x109_c00084{left:514.533333pt;}
.x11d_c00084{left:515.466667pt;}
.xc3_c00084{left:516.666667pt;}
.x9e_c00084{left:518.400000pt;}
.xb1_c00084{left:519.466667pt;}
.x102_c00084{left:521.733333pt;}
.xa7_c00084{left:522.933333pt;}
.x133_c00084{left:524.533333pt;}
.xee_c00084{left:525.466667pt;}
.x9f_c00084{left:526.400000pt;}
.x130_c00084{left:527.466667pt;}
.xcb_c00084{left:528.400000pt;}
.xb2_c00084{left:530.000000pt;}
.xd2_c00084{left:530.933333pt;}
.x120_c00084{left:534.266667pt;}
.x12f_c00084{left:535.333333pt;}
.x137_c00084{left:537.333333pt;}
.x11b_c00084{left:539.466667pt;}
.xd8_c00084{left:541.333333pt;}
.x112_c00084{left:542.666667pt;}
.xc4_c00084{left:546.133333pt;}
.x106_c00084{left:547.200000pt;}
.xe1_c00084{left:548.800000pt;}
.x115_c00084{left:551.200000pt;}
.xa8_c00084{left:552.666667pt;}
.xbe_c00084{left:554.000000pt;}
.x10a_c00084{left:555.466667pt;}
.xd9_c00084{left:556.400000pt;}
.xe8_c00084{left:558.133333pt;}
.xcc_c00084{left:561.733333pt;}
.xd3_c00084{left:562.933333pt;}
.x131_c00084{left:564.000000pt;}
.xfb_c00084{left:565.466667pt;}
.xa0_c00084{left:566.666667pt;}
.x129_c00084{left:568.666667pt;}
.xa9_c00084{left:571.600000pt;}
.xf8_c00084{left:574.400000pt;}
.x113_c00084{left:576.266667pt;}
.xda_c00084{left:577.200000pt;}
.x13a_c00084{left:578.400000pt;}
.x10b_c00084{left:580.400000pt;}
.x118_c00084{left:581.866667pt;}
.xcd_c00084{left:583.200000pt;}
.x125_c00084{left:585.866667pt;}
.x135_c00084{left:587.066667pt;}
.xfe_c00084{left:589.066667pt;}
.xb9_c00084{left:590.133333pt;}
.xd4_c00084{left:591.466667pt;}
.xef_c00084{left:592.933333pt;}
.x10e_c00084{left:593.866667pt;}
.xec_c00084{left:596.000000pt;}
.x134_c00084{left:597.200000pt;}
.xba_c00084{left:598.400000pt;}
.xa1_c00084{left:599.333333pt;}
.x126_c00084{left:600.266667pt;}
.xb3_c00084{left:601.333333pt;}
.xaa_c00084{left:603.600000pt;}
.x136_c00084{left:604.666667pt;}
.x11e_c00084{left:606.133333pt;}
.x11c_c00084{left:608.266667pt;}
.x13e_c00084{left:609.200000pt;}
.xdb_c00084{left:610.533333pt;}
.xbf_c00084{left:613.866667pt;}
.xa2_c00084{left:616.000000pt;}
.x107_c00084{left:617.600000pt;}
.xd5_c00084{left:619.333333pt;}
.xb4_c00084{left:620.800000pt;}
.xf5_c00084{left:621.866667pt;}
.xc7_c00084{left:624.133333pt;}
.xab_c00084{left:625.066667pt;}
.xce_c00084{left:627.333333pt;}
.xfc_c00084{left:629.200000pt;}
.xd6_c00084{left:630.266667pt;}
.xe2_c00084{left:633.066667pt;}
.x10c_c00084{left:635.200000pt;}
.xac_c00084{left:636.533333pt;}
.xdc_c00084{left:638.000000pt;}
.xc8_c00084{left:639.466667pt;}
.x138_c00084{left:640.400000pt;}
.xe3_c00084{left:644.000000pt;}
.x10f_c00084{left:646.133333pt;}
.xa3_c00084{left:648.266667pt;}
.xff_c00084{left:649.600000pt;}
.x140_c00084{left:650.933333pt;}
.xad_c00084{left:652.533333pt;}
.xc0_c00084{left:655.466667pt;}
.x13f_c00084{left:656.533333pt;}
.xcf_c00084{left:658.666667pt;}
.xfd_c00084{left:661.200000pt;}
.x103_c00084{left:663.200000pt;}
.x139_c00084{left:664.133333pt;}
.xdd_c00084{left:668.666667pt;}
.xe4_c00084{left:670.000000pt;}
.xf0_c00084{left:671.333333pt;}
.xbb_c00084{left:673.066667pt;}
.x116_c00084{left:677.066667pt;}
.xed_c00084{left:678.533333pt;}
}





/* 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_c00085 {
    display:none;
  }
  .loading-indicator_c00085.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00085 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_c00085 { 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_c00085" -> "#page-container .classname_c00085")
 */
.pf_c00085 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00085 { /* 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_c00085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00085 { /* 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_c00085 { /* 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_c00085 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00085 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00085 {overflow:visible;}
  }
}
.c_c00085 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00085 { /* 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_c00085:after { /* webkit #35443 */
  content: '';
}
.t_c00085:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00085 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 */
}
.__c00085 { /* 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_c00085 { /* info for Javascript */
  display:none;
}
.l_c00085 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00085 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00085 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00085: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_c00085 {
    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_c00085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00085.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_c00085 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00085;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.000000;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;}
.m39_c00085{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m64_c00085{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00085{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.m63_c00085{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mec_c00085{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m65_c00085{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.me0_c00085{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00085{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m116_c00085{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m68_c00085{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m75_c00085{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m73_c00085{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mea_c00085{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m66_c00085{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.me_c00085{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mce_c00085{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00085{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mef_c00085{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00085{transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00085{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00085{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m2_c00085{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00085{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m108_c00085{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m76_c00085{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m29_c00085{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00085{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mad_c00085{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m10_c00085{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00085{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00085{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mc_c00085{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00085{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m55_c00085{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m98_c00085{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m56_c00085{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m41_c00085{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00085{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md9_c00085{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m74_c00085{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m42_c00085{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00085{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me9_c00085{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m53_c00085{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00085{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00085{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m17_c00085{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m40_c00085{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00085{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00085{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m25_c00085{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m112_c00085{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mba_c00085{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00085{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m36_c00085{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00085{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00085{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m14_c00085{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m121_c00085{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m87_c00085{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00085{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m96_c00085{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00085{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m81_c00085{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00085{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m105_c00085{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00085{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m111_c00085{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m15_c00085{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.med_c00085{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00085{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m71_c00085{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m43_c00085{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m118_c00085{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9_c00085{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m122_c00085{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00085{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m88_c00085{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00085{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mee_c00085{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m86_c00085{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m50_c00085{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00085{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m93_c00085{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m19_c00085{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m54_c00085{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.maf_c00085{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m90_c00085{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m21_c00085{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf_c00085{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00085{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00085{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00085{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00085{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00085{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m18_c00085{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00085{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m72_c00085{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m24_c00085{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00085{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00085{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00085{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m49_c00085{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m11_c00085{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m89_c00085{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00085{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00085{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.meb_c00085{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m100_c00085{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m110_c00085{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00085{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m83_c00085{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00085{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00085{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mac_c00085{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00085{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m12_c00085{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md6_c00085{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m101_c00085{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00085{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00085{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m37_c00085{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00085{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m114_c00085{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m13_c00085{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00085{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00085{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00085{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m102_c00085{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00085{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m34_c00085{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00085{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00085{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00085{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00085{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m35_c00085{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00085{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m92_c00085{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00085{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m117_c00085{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00085{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m46_c00085{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m124_c00085{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00085{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m38_c00085{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00085{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m61_c00085{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m97_c00085{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m103_c00085{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m113_c00085{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00085{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m6_c00085{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00085{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m52_c00085{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m91_c00085{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m99_c00085{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m45_c00085{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00085{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m59_c00085{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00085{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00085{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00085{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md5_c00085{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00085{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m57_c00085{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00085{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00085{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md0_c00085{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mb_c00085{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m67_c00085{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00085{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m109_c00085{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00085{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00085{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md2_c00085{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md1_c00085{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.maa_c00085{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m82_c00085{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00085{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00085{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00085{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m104_c00085{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m85_c00085{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m58_c00085{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00085{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00085{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m107_c00085{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.me8_c00085{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00085{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00085{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00085{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m123_c00085{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m48_c00085{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8_c00085{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00085{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m70_c00085{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00085{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m84_c00085{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m28_c00085{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00085{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00085{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m23_c00085{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00085{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.ma_c00085{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m115_c00085{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00085{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md8_c00085{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m78_c00085{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00085{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00085{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m16_c00085{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m33_c00085{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m125_c00085{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00085{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m32_c00085{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m69_c00085{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00085{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m60_c00085{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00085{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00085{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00085{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00085{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mde_c00085{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m95_c00085{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00085{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me1_c00085{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md7_c00085{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.md_c00085{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m119_c00085{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00085{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m94_c00085{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m106_c00085{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m47_c00085{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m62_c00085{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m79_c00085{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mff_c00085{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00085{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00085{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mae_c00085{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00085{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5_c00085{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me4_c00085{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00085{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00085{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me5_c00085{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md3_c00085{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mab_c00085{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me6_c00085{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20_c00085{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m80_c00085{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m51_c00085{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me3_c00085{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00085{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m30_c00085{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mca_c00085{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me2_c00085{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00085{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00085{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.me7_c00085{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00085{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00085{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00085{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00085{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00085{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m77_c00085{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00085{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00085{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00085{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m26_c00085{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00085{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m27_c00085{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00085{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00085{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00085{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.md4_c00085{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00085{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m127_c00085{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m44_c00085{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m4_c00085{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m120_c00085{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mda_c00085{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00085{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m7_c00085{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m126_c00085{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00085{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00085{transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00085{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00085{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m0_c00085{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m1_c00085{transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00085{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00085{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00085{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.m3_c00085{transform:matrix(0.522750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522750,0.000000,0.000000,0.250000,0,0);}
.m31_c00085{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00085{transform:matrix(0.734750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734750,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls0_c00085{letter-spacing:0.000000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{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__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00085{word-spacing:-15.666667px;}
.ws1_c00085{word-spacing:-10.532751px;}
.ws9_c00085{word-spacing:-10.114596px;}
.ws0_c00085{word-spacing:-6.805556px;}
.ws5_c00085{word-spacing:-4.558167px;}
.ws6_c00085{word-spacing:-3.730659px;}
.wsa_c00085{word-spacing:-0.091703px;}
.wsb_c00085{word-spacing:0.000000px;}
.ws2_c00085{word-spacing:3.589744px;}
.ws8_c00085{word-spacing:4.558952px;}
.ws3_c00085{word-spacing:35.833333px;}
.ws4_c00085{word-spacing:85.000000px;}
.fc0_c00085{color:transparent;}
.fs5_c00085{font-size:18.000000px;}
.fs7_c00085{font-size:24.000000px;}
.fs6_c00085{font-size:30.000000px;}
.fs9_c00085{font-size:42.000000px;}
.fs0_c00085{font-size:54.000000px;}
.fs2_c00085{font-size:60.000000px;}
.fs4_c00085{font-size:66.000000px;}
.fs3_c00085{font-size:72.000000px;}
.fs8_c00085{font-size:78.000000px;}
.fs1_c00085{font-size:84.000000px;}
.y0_c00085{bottom:0.000000px;}
.y71_c00085{bottom:186.300000px;}
.y38_c00085{bottom:187.500000px;}
.y37_c00085{bottom:205.500000px;}
.y70_c00085{bottom:205.800000px;}
.y36_c00085{bottom:223.500000px;}
.y6f_c00085{bottom:241.200000px;}
.y35_c00085{bottom:241.500000px;}
.y34_c00085{bottom:259.500000px;}
.y6e_c00085{bottom:277.500000px;}
.y33_c00085{bottom:282.300000px;}
.y6d_c00085{bottom:295.500000px;}
.y32_c00085{bottom:300.300000px;}
.y6c_c00085{bottom:313.500000px;}
.y30_c00085{bottom:316.050000px;}
.y31_c00085{bottom:316.800000px;}
.y2f_c00085{bottom:326.100000px;}
.y6b_c00085{bottom:331.500000px;}
.y2e_c00085{bottom:344.100000px;}
.y6a_c00085{bottom:349.500000px;}
.y69_c00085{bottom:367.500000px;}
.y2d_c00085{bottom:375.600000px;}
.y68_c00085{bottom:385.500000px;}
.y2c_c00085{bottom:393.900000px;}
.y67_c00085{bottom:408.300000px;}
.y2a_c00085{bottom:420.450000px;}
.y66_c00085{bottom:426.300000px;}
.y65_c00085{bottom:444.600000px;}
.y29_c00085{bottom:447.150000px;}
.y64_c00085{bottom:462.600000px;}
.y28_c00085{bottom:465.150000px;}
.y63_c00085{bottom:480.600000px;}
.y27_c00085{bottom:483.900000px;}
.y62_c00085{bottom:498.600000px;}
.y26_c00085{bottom:501.600000px;}
.y61_c00085{bottom:516.600000px;}
.y25_c00085{bottom:519.600000px;}
.y60_c00085{bottom:534.600000px;}
.y24_c00085{bottom:537.600000px;}
.y5f_c00085{bottom:552.600000px;}
.y23_c00085{bottom:555.600000px;}
.y5e_c00085{bottom:570.900000px;}
.y22_c00085{bottom:573.600000px;}
.y5d_c00085{bottom:588.900000px;}
.y21_c00085{bottom:591.600000px;}
.y5c_c00085{bottom:606.900000px;}
.y20_c00085{bottom:609.600000px;}
.y5b_c00085{bottom:624.900000px;}
.y1f_c00085{bottom:627.600000px;}
.y5a_c00085{bottom:642.900000px;}
.y1e_c00085{bottom:645.600000px;}
.y59_c00085{bottom:660.900000px;}
.y1d_c00085{bottom:663.900000px;}
.y58_c00085{bottom:678.900000px;}
.y1c_c00085{bottom:681.600000px;}
.y57_c00085{bottom:696.900000px;}
.y1b_c00085{bottom:699.900000px;}
.y56_c00085{bottom:714.900000px;}
.y1a_c00085{bottom:717.600000px;}
.y55_c00085{bottom:735.750000px;}
.y19_c00085{bottom:735.900000px;}
.y54_c00085{bottom:749.850000px;}
.y52_c00085{bottom:759.900000px;}
.y18_c00085{bottom:762.150000px;}
.y53_c00085{bottom:765.300000px;}
.y17_c00085{bottom:775.800000px;}
.y51_c00085{bottom:779.400000px;}
.y16_c00085{bottom:789.900000px;}
.y2b_c00085{bottom:790.500000px;}
.y50_c00085{bottom:794.100000px;}
.y4d_c00085{bottom:798.000000px;}
.y4e_c00085{bottom:800.100000px;}
.y15_c00085{bottom:804.600000px;}
.y4c_c00085{bottom:808.050000px;}
.y4f_c00085{bottom:818.250000px;}
.y14_c00085{bottom:819.000000px;}
.y4b_c00085{bottom:823.200000px;}
.y13_c00085{bottom:833.400000px;}
.y4a_c00085{bottom:840.150000px;}
.y12_c00085{bottom:848.100000px;}
.y49_c00085{bottom:852.450000px;}
.y11_c00085{bottom:864.300000px;}
.y48_c00085{bottom:866.850000px;}
.y47_c00085{bottom:880.950000px;}
.y10_c00085{bottom:883.500000px;}
.y46_c00085{bottom:895.350000px;}
.yf_c00085{bottom:901.500000px;}
.y45_c00085{bottom:910.050000px;}
.y44_c00085{bottom:925.950000px;}
.ye_c00085{bottom:928.500000px;}
.y43_c00085{bottom:944.400000px;}
.yd_c00085{bottom:946.500000px;}
.y42_c00085{bottom:962.400000px;}
.yc_c00085{bottom:964.800000px;}
.y41_c00085{bottom:980.700000px;}
.yb_c00085{bottom:982.800000px;}
.ya_c00085{bottom:1000.800000px;}
.y40_c00085{bottom:1002.300000px;}
.y9_c00085{bottom:1018.500000px;}
.y3f_c00085{bottom:1020.900000px;}
.y8_c00085{bottom:1036.800000px;}
.y3e_c00085{bottom:1038.900000px;}
.y7_c00085{bottom:1055.100000px;}
.y3d_c00085{bottom:1056.900000px;}
.y6_c00085{bottom:1072.800000px;}
.y3c_c00085{bottom:1074.900000px;}
.y5_c00085{bottom:1090.800000px;}
.y3b_c00085{bottom:1092.900000px;}
.y4_c00085{bottom:1108.800000px;}
.y3a_c00085{bottom:1110.900000px;}
.y3_c00085{bottom:1126.800000px;}
.y39_c00085{bottom:1128.900000px;}
.y1_c00085{bottom:1153.500000px;}
.y2_c00085{bottom:1155.600000px;}
.h7_c00085{height:18.000000px;}
.h9_c00085{height:24.000000px;}
.h8_c00085{height:30.000000px;}
.hb_c00085{height:42.000000px;}
.h2_c00085{height:54.000000px;}
.h4_c00085{height:60.000000px;}
.h6_c00085{height:66.000000px;}
.h5_c00085{height:72.000000px;}
.ha_c00085{height:78.000000px;}
.h3_c00085{height:84.000000px;}
.h0_c00085{height:1276.199982px;}
.h1_c00085{height:1276.500000px;}
.w1_c00085{width:953.250000px;}
.w0_c00085{width:953.280030px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:170.700000px;}
.x4a_c00085{left:174.600000px;}
.x6a_c00085{left:176.400000px;}
.x96_c00085{left:179.700000px;}
.x38_c00085{left:181.800000px;}
.x8_c00085{left:189.300000px;}
.x11_c00085{left:192.000000px;}
.x3d_c00085{left:193.650000px;}
.x6d_c00085{left:195.450000px;}
.x8c_c00085{left:196.800000px;}
.x62_c00085{left:198.300000px;}
.xa1_c00085{left:200.250000px;}
.xa4_c00085{left:202.350000px;}
.x5f_c00085{left:204.600000px;}
.x47_c00085{left:209.250000px;}
.x3e_c00085{left:210.600000px;}
.x9_c00085{left:212.400000px;}
.x9a_c00085{left:214.200000px;}
.x4b_c00085{left:216.300000px;}
.x63_c00085{left:218.100000px;}
.x7a_c00085{left:220.050000px;}
.x72_c00085{left:223.950000px;}
.x76_c00085{left:226.950000px;}
.x9b_c00085{left:230.100000px;}
.x27_c00085{left:234.450000px;}
.x20_c00085{left:237.000000px;}
.x82_c00085{left:239.550000px;}
.x51_c00085{left:241.050000px;}
.x3f_c00085{left:242.400000px;}
.x5a_c00085{left:243.900000px;}
.x34_c00085{left:245.100000px;}
.x21_c00085{left:247.050000px;}
.x7e_c00085{left:248.250000px;}
.x2d_c00085{left:249.300000px;}
.x52_c00085{left:250.350000px;}
.x12_c00085{left:251.400000px;}
.x28_c00085{left:256.050000px;}
.x1b_c00085{left:257.850000px;}
.x48_c00085{left:260.100000px;}
.x6e_c00085{left:262.050000px;}
.x13_c00085{left:264.300000px;}
.xa2_c00085{left:265.650000px;}
.x35_c00085{left:267.000000px;}
.xa_c00085{left:268.950000px;}
.x64_c00085{left:270.300000px;}
.x86_c00085{left:272.250000px;}
.x9c_c00085{left:275.400000px;}
.x54_c00085{left:276.750000px;}
.x92_c00085{left:278.100000px;}
.xb_c00085{left:279.450000px;}
.x7b_c00085{left:280.500000px;}
.x40_c00085{left:282.000000px;}
.x2e_c00085{left:283.500000px;}
.xa5_c00085{left:285.000000px;}
.x5b_c00085{left:286.050000px;}
.x65_c00085{left:290.100000px;}
.x2f_c00085{left:291.450000px;}
.x39_c00085{left:293.100000px;}
.x22_c00085{left:294.900000px;}
.x83_c00085{left:296.100000px;}
.x29_c00085{left:297.750000px;}
.x74_c00085{left:301.050000px;}
.x9e_c00085{left:302.700000px;}
.x7f_c00085{left:304.650000px;}
.x7c_c00085{left:306.450000px;}
.x30_c00085{left:308.400000px;}
.x98_c00085{left:310.050000px;}
.x8e_c00085{left:311.700000px;}
.x41_c00085{left:314.400000px;}
.x14_c00085{left:316.200000px;}
.x1c_c00085{left:319.050000px;}
.x6b_c00085{left:320.400000px;}
.x55_c00085{left:325.350000px;}
.x80_c00085{left:327.000000px;}
.x4c_c00085{left:328.200000px;}
.xa6_c00085{left:329.250000px;}
.x77_c00085{left:330.600000px;}
.xc_c00085{left:332.700000px;}
.x53_c00085{left:333.900000px;}
.x70_c00085{left:335.850000px;}
.x89_c00085{left:338.100000px;}
.x23_c00085{left:339.150000px;}
.x43_c00085{left:342.900000px;}
.x60_c00085{left:344.700000px;}
.x9f_c00085{left:347.100000px;}
.x75_c00085{left:348.600000px;}
.x78_c00085{left:349.650000px;}
.x15_c00085{left:351.450000px;}
.x3a_c00085{left:353.250000px;}
.x24_c00085{left:354.600000px;}
.x6f_c00085{left:357.450000px;}
.x97_c00085{left:359.400000px;}
.x8d_c00085{left:360.900000px;}
.x7d_c00085{left:363.000000px;}
.x56_c00085{left:364.950000px;}
.x93_c00085{left:366.000000px;}
.x8f_c00085{left:367.200000px;}
.x1d_c00085{left:370.200000px;}
.x2a_c00085{left:372.300000px;}
.x9d_c00085{left:376.950000px;}
.x4d_c00085{left:381.450000px;}
.x16_c00085{left:382.800000px;}
.xa7_c00085{left:384.000000px;}
.x42_c00085{left:387.600000px;}
.x61_c00085{left:390.000000px;}
.x84_c00085{left:392.100000px;}
.x2b_c00085{left:393.900000px;}
.x8a_c00085{left:396.000000px;}
.x25_c00085{left:397.800000px;}
.x5c_c00085{left:399.150000px;}
.x36_c00085{left:400.500000px;}
.x17_c00085{left:402.300000px;}
.x1e_c00085{left:404.700000px;}
.x66_c00085{left:407.550000px;}
.xa8_c00085{left:409.500000px;}
.x87_c00085{left:411.900000px;}
.x2_c00085{left:413.400000px;}
.xa0_c00085{left:414.750000px;}
.x68_c00085{left:416.400000px;}
.x73_c00085{left:417.900000px;}
.x4e_c00085{left:419.250000px;}
.x31_c00085{left:421.500000px;}
.x49_c00085{left:423.600000px;}
.x18_c00085{left:425.700000px;}
.xd_c00085{left:428.100000px;}
.x94_c00085{left:429.750000px;}
.x44_c00085{left:430.800000px;}
.x57_c00085{left:432.750000px;}
.x4f_c00085{left:434.700000px;}
.x2c_c00085{left:436.800000px;}
.x3_c00085{left:439.350000px;}
.x88_c00085{left:440.700000px;}
.x3b_c00085{left:442.500000px;}
.x32_c00085{left:444.600000px;}
.x71_c00085{left:446.700000px;}
.x19_c00085{left:449.850000px;}
.x90_c00085{left:451.500000px;}
.x99_c00085{left:452.550000px;}
.x45_c00085{left:454.200000px;}
.x95_c00085{left:455.700000px;}
.x8b_c00085{left:458.250000px;}
.x1f_c00085{left:459.750000px;}
.x5d_c00085{left:460.800000px;}
.x4_c00085{left:462.450000px;}
.x58_c00085{left:464.100000px;}
.x69_c00085{left:465.150000px;}
.x85_c00085{left:467.100000px;}
.x5e_c00085{left:469.200000px;}
.xe_c00085{left:470.250000px;}
.x1a_c00085{left:471.750000px;}
.x81_c00085{left:473.250000px;}
.x6c_c00085{left:475.950000px;}
.x46_c00085{left:477.900000px;}
.x91_c00085{left:480.000000px;}
.x3c_c00085{left:482.400000px;}
.x50_c00085{left:485.100000px;}
.xf_c00085{left:488.250000px;}
.x79_c00085{left:489.600000px;}
.x37_c00085{left:492.300000px;}
.x26_c00085{left:493.650000px;}
.x10_c00085{left:495.150000px;}
.x59_c00085{left:498.000000px;}
.x67_c00085{left:500.400000px;}
.xa3_c00085{left:502.650000px;}
.x33_c00085{left:506.100000px;}
.x5_c00085{left:513.150000px;}
.xd5_c00085{left:533.100000px;}
.x6_c00085{left:535.050000px;}
.xe0_c00085{left:543.600000px;}
.xf1_c00085{left:545.100000px;}
.xe7_c00085{left:547.650000px;}
.x103_c00085{left:549.000000px;}
.xaf_c00085{left:550.800000px;}
.xa9_c00085{left:551.850000px;}
.x10e_c00085{left:553.800000px;}
.x129_c00085{left:555.000000px;}
.x134_c00085{left:556.050000px;}
.x142_c00085{left:557.700000px;}
.xf2_c00085{left:562.050000px;}
.xfc_c00085{left:563.250000px;}
.xed_c00085{left:568.650000px;}
.x10f_c00085{left:571.050000px;}
.xb0_c00085{left:573.150000px;}
.x112_c00085{left:574.650000px;}
.xca_c00085{left:575.700000px;}
.xd6_c00085{left:577.050000px;}
.x14e_c00085{left:578.100000px;}
.x123_c00085{left:579.600000px;}
.x13e_c00085{left:581.250000px;}
.x121_c00085{left:582.450000px;}
.xd3_c00085{left:584.250000px;}
.x100_c00085{left:585.450000px;}
.xbe_c00085{left:589.800000px;}
.x11f_c00085{left:591.900000px;}
.xd4_c00085{left:593.250000px;}
.xe8_c00085{left:595.200000px;}
.xee_c00085{left:597.450000px;}
.x12a_c00085{left:598.950000px;}
.x119_c00085{left:600.150000px;}
.xf3_c00085{left:602.700000px;}
.xfd_c00085{left:604.950000px;}
.xdb_c00085{left:607.500000px;}
.xbf_c00085{left:610.650000px;}
.xb6_c00085{left:612.750000px;}
.x145_c00085{left:614.700000px;}
.x7_c00085{left:615.750000px;}
.xcb_c00085{left:617.850000px;}
.x137_c00085{left:619.350000px;}
.x131_c00085{left:620.400000px;}
.x10a_c00085{left:621.600000px;}
.x13a_c00085{left:622.800000px;}
.xaa_c00085{left:626.700000px;}
.x108_c00085{left:628.050000px;}
.x124_c00085{left:629.700000px;}
.xc4_c00085{left:631.650000px;}
.xb1_c00085{left:634.050000px;}
.xc0_c00085{left:639.450000px;}
.x14a_c00085{left:640.950000px;}
.xf4_c00085{left:642.300000px;}
.x138_c00085{left:644.250000px;}
.x10b_c00085{left:645.300000px;}
.xe5_c00085{left:647.250000px;}
.x12c_c00085{left:648.900000px;}
.xab_c00085{left:651.150000px;}
.x115_c00085{left:653.850000px;}
.x11a_c00085{left:657.450000px;}
.x149_c00085{left:660.000000px;}
.x139_c00085{left:661.200000px;}
.xfa_c00085{left:663.750000px;}
.x104_c00085{left:665.550000px;}
.xd1_c00085{left:666.600000px;}
.xb7_c00085{left:667.800000px;}
.x10c_c00085{left:673.800000px;}
.x14d_c00085{left:677.400000px;}
.x116_c00085{left:678.900000px;}
.xc5_c00085{left:680.550000px;}
.xcc_c00085{left:681.900000px;}
.xd7_c00085{left:686.850000px;}
.xe9_c00085{left:688.200000px;}
.x12d_c00085{left:689.250000px;}
.xc6_c00085{left:691.350000px;}
.xf5_c00085{left:693.150000px;}
.xdc_c00085{left:694.350000px;}
.xea_c00085{left:696.450000px;}
.x11b_c00085{left:697.800000px;}
.x117_c00085{left:699.000000px;}
.xac_c00085{left:700.050000px;}
.xc1_c00085{left:702.150000px;}
.x101_c00085{left:703.800000px;}
.x143_c00085{left:706.500000px;}
.xe1_c00085{left:708.150000px;}
.xb8_c00085{left:710.700000px;}
.x132_c00085{left:712.650000px;}
.x14c_c00085{left:714.000000px;}
.x12b_c00085{left:715.650000px;}
.xb2_c00085{left:717.900000px;}
.x146_c00085{left:719.100000px;}
.xad_c00085{left:721.350000px;}
.x105_c00085{left:724.200000px;}
.xb3_c00085{left:726.900000px;}
.x13f_c00085{left:729.600000px;}
.xdd_c00085{left:731.100000px;}
.xfe_c00085{left:733.500000px;}
.x11d_c00085{left:734.850000px;}
.x133_c00085{left:737.100000px;}
.xc7_c00085{left:738.450000px;}
.xc2_c00085{left:741.750000px;}
.xb9_c00085{left:743.850000px;}
.x127_c00085{left:745.350000px;}
.xe2_c00085{left:746.700000px;}
.xff_c00085{left:750.000000px;}
.x12e_c00085{left:751.200000px;}
.x13c_c00085{left:754.050000px;}
.x102_c00085{left:755.550000px;}
.xeb_c00085{left:758.700000px;}
.xf6_c00085{left:761.250000px;}
.x147_c00085{left:762.300000px;}
.xb4_c00085{left:763.650000px;}
.x106_c00085{left:765.300000px;}
.x109_c00085{left:767.700000px;}
.xba_c00085{left:769.050000px;}
.x13d_c00085{left:770.550000px;}
.x113_c00085{left:772.350000px;}
.x148_c00085{left:773.400000px;}
.xcd_c00085{left:775.200000px;}
.xc8_c00085{left:776.550000px;}
.xde_c00085{left:777.900000px;}
.xe3_c00085{left:780.150000px;}
.x13b_c00085{left:782.250000px;}
.x10d_c00085{left:783.300000px;}
.x135_c00085{left:784.350000px;}
.x120_c00085{left:785.550000px;}
.x11c_c00085{left:788.100000px;}
.xae_c00085{left:789.450000px;}
.x11e_c00085{left:791.700000px;}
.xb5_c00085{left:792.750000px;}
.xe4_c00085{left:794.550000px;}
.x12f_c00085{left:797.700000px;}
.xf7_c00085{left:800.850000px;}
.xef_c00085{left:802.200000px;}
.x128_c00085{left:804.450000px;}
.xd8_c00085{left:806.400000px;}
.x110_c00085{left:807.900000px;}
.xce_c00085{left:809.400000px;}
.x140_c00085{left:810.600000px;}
.xbb_c00085{left:812.550000px;}
.x14f_c00085{left:814.650000px;}
.x114_c00085{left:815.850000px;}
.x125_c00085{left:817.050000px;}
.xc3_c00085{left:818.100000px;}
.xd2_c00085{left:821.850000px;}
.xbc_c00085{left:823.050000px;}
.xd9_c00085{left:825.150000px;}
.xf0_c00085{left:829.500000px;}
.xf8_c00085{left:830.700000px;}
.x107_c00085{left:831.900000px;}
.xcf_c00085{left:834.300000px;}
.xec_c00085{left:837.600000px;}
.x111_c00085{left:841.350000px;}
.x14b_c00085{left:842.850000px;}
.xdf_c00085{left:844.500000px;}
.x136_c00085{left:845.850000px;}
.x118_c00085{left:847.050000px;}
.x122_c00085{left:850.350000px;}
.xd0_c00085{left:852.000000px;}
.xc9_c00085{left:853.950000px;}
.x144_c00085{left:856.200000px;}
.xe6_c00085{left:857.550000px;}
.xf9_c00085{left:859.200000px;}
.xfb_c00085{left:860.550000px;}
.xbd_c00085{left:861.600000px;}
.x141_c00085{left:864.900000px;}
.xda_c00085{left:868.050000px;}
.x126_c00085{left:870.750000px;}
.x130_c00085{left:872.100000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ws7_c00085{word-spacing:-13.925926pt;}
.ws1_c00085{word-spacing:-9.362445pt;}
.ws9_c00085{word-spacing:-8.990752pt;}
.ws0_c00085{word-spacing:-6.049383pt;}
.ws5_c00085{word-spacing:-4.051704pt;}
.ws6_c00085{word-spacing:-3.316141pt;}
.wsa_c00085{word-spacing:-0.081514pt;}
.wsb_c00085{word-spacing:0.000000pt;}
.ws2_c00085{word-spacing:3.190883pt;}
.ws8_c00085{word-spacing:4.052402pt;}
.ws3_c00085{word-spacing:31.851852pt;}
.ws4_c00085{word-spacing:75.555556pt;}
.fs5_c00085{font-size:16.000000pt;}
.fs7_c00085{font-size:21.333333pt;}
.fs6_c00085{font-size:26.666667pt;}
.fs9_c00085{font-size:37.333333pt;}
.fs0_c00085{font-size:48.000000pt;}
.fs2_c00085{font-size:53.333333pt;}
.fs4_c00085{font-size:58.666667pt;}
.fs3_c00085{font-size:64.000000pt;}
.fs8_c00085{font-size:69.333333pt;}
.fs1_c00085{font-size:74.666667pt;}
.y0_c00085{bottom:0.000000pt;}
.y71_c00085{bottom:165.600000pt;}
.y38_c00085{bottom:166.666667pt;}
.y37_c00085{bottom:182.666667pt;}
.y70_c00085{bottom:182.933333pt;}
.y36_c00085{bottom:198.666667pt;}
.y6f_c00085{bottom:214.400000pt;}
.y35_c00085{bottom:214.666667pt;}
.y34_c00085{bottom:230.666667pt;}
.y6e_c00085{bottom:246.666667pt;}
.y33_c00085{bottom:250.933333pt;}
.y6d_c00085{bottom:262.666667pt;}
.y32_c00085{bottom:266.933333pt;}
.y6c_c00085{bottom:278.666667pt;}
.y30_c00085{bottom:280.933333pt;}
.y31_c00085{bottom:281.600000pt;}
.y2f_c00085{bottom:289.866667pt;}
.y6b_c00085{bottom:294.666667pt;}
.y2e_c00085{bottom:305.866667pt;}
.y6a_c00085{bottom:310.666667pt;}
.y69_c00085{bottom:326.666667pt;}
.y2d_c00085{bottom:333.866667pt;}
.y68_c00085{bottom:342.666667pt;}
.y2c_c00085{bottom:350.133333pt;}
.y67_c00085{bottom:362.933333pt;}
.y2a_c00085{bottom:373.733333pt;}
.y66_c00085{bottom:378.933333pt;}
.y65_c00085{bottom:395.200000pt;}
.y29_c00085{bottom:397.466667pt;}
.y64_c00085{bottom:411.200000pt;}
.y28_c00085{bottom:413.466667pt;}
.y63_c00085{bottom:427.200000pt;}
.y27_c00085{bottom:430.133333pt;}
.y62_c00085{bottom:443.200000pt;}
.y26_c00085{bottom:445.866667pt;}
.y61_c00085{bottom:459.200000pt;}
.y25_c00085{bottom:461.866667pt;}
.y60_c00085{bottom:475.200000pt;}
.y24_c00085{bottom:477.866667pt;}
.y5f_c00085{bottom:491.200000pt;}
.y23_c00085{bottom:493.866667pt;}
.y5e_c00085{bottom:507.466667pt;}
.y22_c00085{bottom:509.866667pt;}
.y5d_c00085{bottom:523.466667pt;}
.y21_c00085{bottom:525.866667pt;}
.y5c_c00085{bottom:539.466667pt;}
.y20_c00085{bottom:541.866667pt;}
.y5b_c00085{bottom:555.466667pt;}
.y1f_c00085{bottom:557.866667pt;}
.y5a_c00085{bottom:571.466667pt;}
.y1e_c00085{bottom:573.866667pt;}
.y59_c00085{bottom:587.466667pt;}
.y1d_c00085{bottom:590.133333pt;}
.y58_c00085{bottom:603.466667pt;}
.y1c_c00085{bottom:605.866667pt;}
.y57_c00085{bottom:619.466667pt;}
.y1b_c00085{bottom:622.133333pt;}
.y56_c00085{bottom:635.466667pt;}
.y1a_c00085{bottom:637.866667pt;}
.y55_c00085{bottom:654.000000pt;}
.y19_c00085{bottom:654.133333pt;}
.y54_c00085{bottom:666.533333pt;}
.y52_c00085{bottom:675.466667pt;}
.y18_c00085{bottom:677.466667pt;}
.y53_c00085{bottom:680.266667pt;}
.y17_c00085{bottom:689.600000pt;}
.y51_c00085{bottom:692.800000pt;}
.y16_c00085{bottom:702.133333pt;}
.y2b_c00085{bottom:702.666667pt;}
.y50_c00085{bottom:705.866667pt;}
.y4d_c00085{bottom:709.333333pt;}
.y4e_c00085{bottom:711.200000pt;}
.y15_c00085{bottom:715.200000pt;}
.y4c_c00085{bottom:718.266667pt;}
.y4f_c00085{bottom:727.333333pt;}
.y14_c00085{bottom:728.000000pt;}
.y4b_c00085{bottom:731.733333pt;}
.y13_c00085{bottom:740.800000pt;}
.y4a_c00085{bottom:746.800000pt;}
.y12_c00085{bottom:753.866667pt;}
.y49_c00085{bottom:757.733333pt;}
.y11_c00085{bottom:768.266667pt;}
.y48_c00085{bottom:770.533333pt;}
.y47_c00085{bottom:783.066667pt;}
.y10_c00085{bottom:785.333333pt;}
.y46_c00085{bottom:795.866667pt;}
.yf_c00085{bottom:801.333333pt;}
.y45_c00085{bottom:808.933333pt;}
.y44_c00085{bottom:823.066667pt;}
.ye_c00085{bottom:825.333333pt;}
.y43_c00085{bottom:839.466667pt;}
.yd_c00085{bottom:841.333333pt;}
.y42_c00085{bottom:855.466667pt;}
.yc_c00085{bottom:857.600000pt;}
.y41_c00085{bottom:871.733333pt;}
.yb_c00085{bottom:873.600000pt;}
.ya_c00085{bottom:889.600000pt;}
.y40_c00085{bottom:890.933333pt;}
.y9_c00085{bottom:905.333333pt;}
.y3f_c00085{bottom:907.466667pt;}
.y8_c00085{bottom:921.600000pt;}
.y3e_c00085{bottom:923.466667pt;}
.y7_c00085{bottom:937.866667pt;}
.y3d_c00085{bottom:939.466667pt;}
.y6_c00085{bottom:953.600000pt;}
.y3c_c00085{bottom:955.466667pt;}
.y5_c00085{bottom:969.600000pt;}
.y3b_c00085{bottom:971.466667pt;}
.y4_c00085{bottom:985.600000pt;}
.y3a_c00085{bottom:987.466667pt;}
.y3_c00085{bottom:1001.600000pt;}
.y39_c00085{bottom:1003.466667pt;}
.y1_c00085{bottom:1025.333333pt;}
.y2_c00085{bottom:1027.200000pt;}
.h7_c00085{height:16.000000pt;}
.h9_c00085{height:21.333333pt;}
.h8_c00085{height:26.666667pt;}
.hb_c00085{height:37.333333pt;}
.h2_c00085{height:48.000000pt;}
.h4_c00085{height:53.333333pt;}
.h6_c00085{height:58.666667pt;}
.h5_c00085{height:64.000000pt;}
.ha_c00085{height:69.333333pt;}
.h3_c00085{height:74.666667pt;}
.h0_c00085{height:1134.399984pt;}
.h1_c00085{height:1134.666667pt;}
.w1_c00085{width:847.333333pt;}
.w0_c00085{width:847.360027pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:151.733333pt;}
.x4a_c00085{left:155.200000pt;}
.x6a_c00085{left:156.800000pt;}
.x96_c00085{left:159.733333pt;}
.x38_c00085{left:161.600000pt;}
.x8_c00085{left:168.266667pt;}
.x11_c00085{left:170.666667pt;}
.x3d_c00085{left:172.133333pt;}
.x6d_c00085{left:173.733333pt;}
.x8c_c00085{left:174.933333pt;}
.x62_c00085{left:176.266667pt;}
.xa1_c00085{left:178.000000pt;}
.xa4_c00085{left:179.866667pt;}
.x5f_c00085{left:181.866667pt;}
.x47_c00085{left:186.000000pt;}
.x3e_c00085{left:187.200000pt;}
.x9_c00085{left:188.800000pt;}
.x9a_c00085{left:190.400000pt;}
.x4b_c00085{left:192.266667pt;}
.x63_c00085{left:193.866667pt;}
.x7a_c00085{left:195.600000pt;}
.x72_c00085{left:199.066667pt;}
.x76_c00085{left:201.733333pt;}
.x9b_c00085{left:204.533333pt;}
.x27_c00085{left:208.400000pt;}
.x20_c00085{left:210.666667pt;}
.x82_c00085{left:212.933333pt;}
.x51_c00085{left:214.266667pt;}
.x3f_c00085{left:215.466667pt;}
.x5a_c00085{left:216.800000pt;}
.x34_c00085{left:217.866667pt;}
.x21_c00085{left:219.600000pt;}
.x7e_c00085{left:220.666667pt;}
.x2d_c00085{left:221.600000pt;}
.x52_c00085{left:222.533333pt;}
.x12_c00085{left:223.466667pt;}
.x28_c00085{left:227.600000pt;}
.x1b_c00085{left:229.200000pt;}
.x48_c00085{left:231.200000pt;}
.x6e_c00085{left:232.933333pt;}
.x13_c00085{left:234.933333pt;}
.xa2_c00085{left:236.133333pt;}
.x35_c00085{left:237.333333pt;}
.xa_c00085{left:239.066667pt;}
.x64_c00085{left:240.266667pt;}
.x86_c00085{left:242.000000pt;}
.x9c_c00085{left:244.800000pt;}
.x54_c00085{left:246.000000pt;}
.x92_c00085{left:247.200000pt;}
.xb_c00085{left:248.400000pt;}
.x7b_c00085{left:249.333333pt;}
.x40_c00085{left:250.666667pt;}
.x2e_c00085{left:252.000000pt;}
.xa5_c00085{left:253.333333pt;}
.x5b_c00085{left:254.266667pt;}
.x65_c00085{left:257.866667pt;}
.x2f_c00085{left:259.066667pt;}
.x39_c00085{left:260.533333pt;}
.x22_c00085{left:262.133333pt;}
.x83_c00085{left:263.200000pt;}
.x29_c00085{left:264.666667pt;}
.x74_c00085{left:267.600000pt;}
.x9e_c00085{left:269.066667pt;}
.x7f_c00085{left:270.800000pt;}
.x7c_c00085{left:272.400000pt;}
.x30_c00085{left:274.133333pt;}
.x98_c00085{left:275.600000pt;}
.x8e_c00085{left:277.066667pt;}
.x41_c00085{left:279.466667pt;}
.x14_c00085{left:281.066667pt;}
.x1c_c00085{left:283.600000pt;}
.x6b_c00085{left:284.800000pt;}
.x55_c00085{left:289.200000pt;}
.x80_c00085{left:290.666667pt;}
.x4c_c00085{left:291.733333pt;}
.xa6_c00085{left:292.666667pt;}
.x77_c00085{left:293.866667pt;}
.xc_c00085{left:295.733333pt;}
.x53_c00085{left:296.800000pt;}
.x70_c00085{left:298.533333pt;}
.x89_c00085{left:300.533333pt;}
.x23_c00085{left:301.466667pt;}
.x43_c00085{left:304.800000pt;}
.x60_c00085{left:306.400000pt;}
.x9f_c00085{left:308.533333pt;}
.x75_c00085{left:309.866667pt;}
.x78_c00085{left:310.800000pt;}
.x15_c00085{left:312.400000pt;}
.x3a_c00085{left:314.000000pt;}
.x24_c00085{left:315.200000pt;}
.x6f_c00085{left:317.733333pt;}
.x97_c00085{left:319.466667pt;}
.x8d_c00085{left:320.800000pt;}
.x7d_c00085{left:322.666667pt;}
.x56_c00085{left:324.400000pt;}
.x93_c00085{left:325.333333pt;}
.x8f_c00085{left:326.400000pt;}
.x1d_c00085{left:329.066667pt;}
.x2a_c00085{left:330.933333pt;}
.x9d_c00085{left:335.066667pt;}
.x4d_c00085{left:339.066667pt;}
.x16_c00085{left:340.266667pt;}
.xa7_c00085{left:341.333333pt;}
.x42_c00085{left:344.533333pt;}
.x61_c00085{left:346.666667pt;}
.x84_c00085{left:348.533333pt;}
.x2b_c00085{left:350.133333pt;}
.x8a_c00085{left:352.000000pt;}
.x25_c00085{left:353.600000pt;}
.x5c_c00085{left:354.800000pt;}
.x36_c00085{left:356.000000pt;}
.x17_c00085{left:357.600000pt;}
.x1e_c00085{left:359.733333pt;}
.x66_c00085{left:362.266667pt;}
.xa8_c00085{left:364.000000pt;}
.x87_c00085{left:366.133333pt;}
.x2_c00085{left:367.466667pt;}
.xa0_c00085{left:368.666667pt;}
.x68_c00085{left:370.133333pt;}
.x73_c00085{left:371.466667pt;}
.x4e_c00085{left:372.666667pt;}
.x31_c00085{left:374.666667pt;}
.x49_c00085{left:376.533333pt;}
.x18_c00085{left:378.400000pt;}
.xd_c00085{left:380.533333pt;}
.x94_c00085{left:382.000000pt;}
.x44_c00085{left:382.933333pt;}
.x57_c00085{left:384.666667pt;}
.x4f_c00085{left:386.400000pt;}
.x2c_c00085{left:388.266667pt;}
.x3_c00085{left:390.533333pt;}
.x88_c00085{left:391.733333pt;}
.x3b_c00085{left:393.333333pt;}
.x32_c00085{left:395.200000pt;}
.x71_c00085{left:397.066667pt;}
.x19_c00085{left:399.866667pt;}
.x90_c00085{left:401.333333pt;}
.x99_c00085{left:402.266667pt;}
.x45_c00085{left:403.733333pt;}
.x95_c00085{left:405.066667pt;}
.x8b_c00085{left:407.333333pt;}
.x1f_c00085{left:408.666667pt;}
.x5d_c00085{left:409.600000pt;}
.x4_c00085{left:411.066667pt;}
.x58_c00085{left:412.533333pt;}
.x69_c00085{left:413.466667pt;}
.x85_c00085{left:415.200000pt;}
.x5e_c00085{left:417.066667pt;}
.xe_c00085{left:418.000000pt;}
.x1a_c00085{left:419.333333pt;}
.x81_c00085{left:420.666667pt;}
.x6c_c00085{left:423.066667pt;}
.x46_c00085{left:424.800000pt;}
.x91_c00085{left:426.666667pt;}
.x3c_c00085{left:428.800000pt;}
.x50_c00085{left:431.200000pt;}
.xf_c00085{left:434.000000pt;}
.x79_c00085{left:435.200000pt;}
.x37_c00085{left:437.600000pt;}
.x26_c00085{left:438.800000pt;}
.x10_c00085{left:440.133333pt;}
.x59_c00085{left:442.666667pt;}
.x67_c00085{left:444.800000pt;}
.xa3_c00085{left:446.800000pt;}
.x33_c00085{left:449.866667pt;}
.x5_c00085{left:456.133333pt;}
.xd5_c00085{left:473.866667pt;}
.x6_c00085{left:475.600000pt;}
.xe0_c00085{left:483.200000pt;}
.xf1_c00085{left:484.533333pt;}
.xe7_c00085{left:486.800000pt;}
.x103_c00085{left:488.000000pt;}
.xaf_c00085{left:489.600000pt;}
.xa9_c00085{left:490.533333pt;}
.x10e_c00085{left:492.266667pt;}
.x129_c00085{left:493.333333pt;}
.x134_c00085{left:494.266667pt;}
.x142_c00085{left:495.733333pt;}
.xf2_c00085{left:499.600000pt;}
.xfc_c00085{left:500.666667pt;}
.xed_c00085{left:505.466667pt;}
.x10f_c00085{left:507.600000pt;}
.xb0_c00085{left:509.466667pt;}
.x112_c00085{left:510.800000pt;}
.xca_c00085{left:511.733333pt;}
.xd6_c00085{left:512.933333pt;}
.x14e_c00085{left:513.866667pt;}
.x123_c00085{left:515.200000pt;}
.x13e_c00085{left:516.666667pt;}
.x121_c00085{left:517.733333pt;}
.xd3_c00085{left:519.333333pt;}
.x100_c00085{left:520.400000pt;}
.xbe_c00085{left:524.266667pt;}
.x11f_c00085{left:526.133333pt;}
.xd4_c00085{left:527.333333pt;}
.xe8_c00085{left:529.066667pt;}
.xee_c00085{left:531.066667pt;}
.x12a_c00085{left:532.400000pt;}
.x119_c00085{left:533.466667pt;}
.xf3_c00085{left:535.733333pt;}
.xfd_c00085{left:537.733333pt;}
.xdb_c00085{left:540.000000pt;}
.xbf_c00085{left:542.800000pt;}
.xb6_c00085{left:544.666667pt;}
.x145_c00085{left:546.400000pt;}
.x7_c00085{left:547.333333pt;}
.xcb_c00085{left:549.200000pt;}
.x137_c00085{left:550.533333pt;}
.x131_c00085{left:551.466667pt;}
.x10a_c00085{left:552.533333pt;}
.x13a_c00085{left:553.600000pt;}
.xaa_c00085{left:557.066667pt;}
.x108_c00085{left:558.266667pt;}
.x124_c00085{left:559.733333pt;}
.xc4_c00085{left:561.466667pt;}
.xb1_c00085{left:563.600000pt;}
.xc0_c00085{left:568.400000pt;}
.x14a_c00085{left:569.733333pt;}
.xf4_c00085{left:570.933333pt;}
.x138_c00085{left:572.666667pt;}
.x10b_c00085{left:573.600000pt;}
.xe5_c00085{left:575.333333pt;}
.x12c_c00085{left:576.800000pt;}
.xab_c00085{left:578.800000pt;}
.x115_c00085{left:581.200000pt;}
.x11a_c00085{left:584.400000pt;}
.x149_c00085{left:586.666667pt;}
.x139_c00085{left:587.733333pt;}
.xfa_c00085{left:590.000000pt;}
.x104_c00085{left:591.600000pt;}
.xd1_c00085{left:592.533333pt;}
.xb7_c00085{left:593.600000pt;}
.x10c_c00085{left:598.933333pt;}
.x14d_c00085{left:602.133333pt;}
.x116_c00085{left:603.466667pt;}
.xc5_c00085{left:604.933333pt;}
.xcc_c00085{left:606.133333pt;}
.xd7_c00085{left:610.533333pt;}
.xe9_c00085{left:611.733333pt;}
.x12d_c00085{left:612.666667pt;}
.xc6_c00085{left:614.533333pt;}
.xf5_c00085{left:616.133333pt;}
.xdc_c00085{left:617.200000pt;}
.xea_c00085{left:619.066667pt;}
.x11b_c00085{left:620.266667pt;}
.x117_c00085{left:621.333333pt;}
.xac_c00085{left:622.266667pt;}
.xc1_c00085{left:624.133333pt;}
.x101_c00085{left:625.600000pt;}
.x143_c00085{left:628.000000pt;}
.xe1_c00085{left:629.466667pt;}
.xb8_c00085{left:631.733333pt;}
.x132_c00085{left:633.466667pt;}
.x14c_c00085{left:634.666667pt;}
.x12b_c00085{left:636.133333pt;}
.xb2_c00085{left:638.133333pt;}
.x146_c00085{left:639.200000pt;}
.xad_c00085{left:641.200000pt;}
.x105_c00085{left:643.733333pt;}
.xb3_c00085{left:646.133333pt;}
.x13f_c00085{left:648.533333pt;}
.xdd_c00085{left:649.866667pt;}
.xfe_c00085{left:652.000000pt;}
.x11d_c00085{left:653.200000pt;}
.x133_c00085{left:655.200000pt;}
.xc7_c00085{left:656.400000pt;}
.xc2_c00085{left:659.333333pt;}
.xb9_c00085{left:661.200000pt;}
.x127_c00085{left:662.533333pt;}
.xe2_c00085{left:663.733333pt;}
.xff_c00085{left:666.666667pt;}
.x12e_c00085{left:667.733333pt;}
.x13c_c00085{left:670.266667pt;}
.x102_c00085{left:671.600000pt;}
.xeb_c00085{left:674.400000pt;}
.xf6_c00085{left:676.666667pt;}
.x147_c00085{left:677.600000pt;}
.xb4_c00085{left:678.800000pt;}
.x106_c00085{left:680.266667pt;}
.x109_c00085{left:682.400000pt;}
.xba_c00085{left:683.600000pt;}
.x13d_c00085{left:684.933333pt;}
.x113_c00085{left:686.533333pt;}
.x148_c00085{left:687.466667pt;}
.xcd_c00085{left:689.066667pt;}
.xc8_c00085{left:690.266667pt;}
.xde_c00085{left:691.466667pt;}
.xe3_c00085{left:693.466667pt;}
.x13b_c00085{left:695.333333pt;}
.x10d_c00085{left:696.266667pt;}
.x135_c00085{left:697.200000pt;}
.x120_c00085{left:698.266667pt;}
.x11c_c00085{left:700.533333pt;}
.xae_c00085{left:701.733333pt;}
.x11e_c00085{left:703.733333pt;}
.xb5_c00085{left:704.666667pt;}
.xe4_c00085{left:706.266667pt;}
.x12f_c00085{left:709.066667pt;}
.xf7_c00085{left:711.866667pt;}
.xef_c00085{left:713.066667pt;}
.x128_c00085{left:715.066667pt;}
.xd8_c00085{left:716.800000pt;}
.x110_c00085{left:718.133333pt;}
.xce_c00085{left:719.466667pt;}
.x140_c00085{left:720.533333pt;}
.xbb_c00085{left:722.266667pt;}
.x14f_c00085{left:724.133333pt;}
.x114_c00085{left:725.200000pt;}
.x125_c00085{left:726.266667pt;}
.xc3_c00085{left:727.200000pt;}
.xd2_c00085{left:730.533333pt;}
.xbc_c00085{left:731.600000pt;}
.xd9_c00085{left:733.466667pt;}
.xf0_c00085{left:737.333333pt;}
.xf8_c00085{left:738.400000pt;}
.x107_c00085{left:739.466667pt;}
.xcf_c00085{left:741.600000pt;}
.xec_c00085{left:744.533333pt;}
.x111_c00085{left:747.866667pt;}
.x14b_c00085{left:749.200000pt;}
.xdf_c00085{left:750.666667pt;}
.x136_c00085{left:751.866667pt;}
.x118_c00085{left:752.933333pt;}
.x122_c00085{left:755.866667pt;}
.xd0_c00085{left:757.333333pt;}
.xc9_c00085{left:759.066667pt;}
.x144_c00085{left:761.066667pt;}
.xe6_c00085{left:762.266667pt;}
.xf9_c00085{left:763.733333pt;}
.xfb_c00085{left:764.933333pt;}
.xbd_c00085{left:765.866667pt;}
.x141_c00085{left:768.800000pt;}
.xda_c00085{left:771.600000pt;}
.x126_c00085{left:774.000000pt;}
.x130_c00085{left:775.200000pt;}
}





/* 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_c00086 {
    display:none;
  }
  .loading-indicator_c00086.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00086 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_c00086 { 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_c00086" -> "#page-container .classname_c00086")
 */
.pf_c00086 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00086 { /* 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_c00086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00086 { /* 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_c00086 { /* 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_c00086 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00086 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00086 {overflow:visible;}
  }
}
.c_c00086 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00086 { /* 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_c00086:after { /* webkit #35443 */
  content: '';
}
.t_c00086:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00086 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 */
}
.__c00086 { /* 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_c00086 { /* info for Javascript */
  display:none;
}
.l_c00086 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00086 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00086 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00086: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_c00086 {
    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_c00086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00086.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_c00086 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00086;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.000000;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;}
.mdc_c00086{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m135_c00086{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00086{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m72_c00086{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m83_c00086{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m68_c00086{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m122_c00086{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00086{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.m82_c00086{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m66_c00086{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00086{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m84_c00086{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00086{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00086{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m125_c00086{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m74_c00086{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00086{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mec_c00086{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00086{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m131_c00086{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.me4_c00086{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m85_c00086{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00086{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00086{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m119_c00086{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m73_c00086{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00086{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m70_c00086{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00086{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m67_c00086{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00086{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00086{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m126_c00086{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00086{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00086{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m58_c00086{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m36_c00086{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00086{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m44_c00086{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m31_c00086{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00086{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m45_c00086{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5_c00086{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m42_c00086{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00086{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m104_c00086{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m13b_c00086{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.mc_c00086{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me9_c00086{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m80_c00086{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00086{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md6_c00086{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00086{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m24_c00086{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00086{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00086{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.me5_c00086{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00086{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00086{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m55_c00086{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m30_c00086{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00086{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m34_c00086{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me3_c00086{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00086{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00086{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m61_c00086{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00086{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.me1_c00086{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00086{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00086{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00086{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m111_c00086{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.md4_c00086{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m47_c00086{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m32_c00086{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00086{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.md8_c00086{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m38_c00086{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me6_c00086{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mde_c00086{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m50_c00086{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m18_c00086{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m19_c00086{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00086{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00086{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00086{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m21_c00086{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00086{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m59_c00086{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mba_c00086{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m95_c00086{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00086{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md0_c00086{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mb_c00086{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m90_c00086{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00086{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mee_c00086{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.maf_c00086{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m139_c00086{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.med_c00086{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00086{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m25_c00086{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m99_c00086{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m86_c00086{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m43_c00086{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m65_c00086{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m102_c00086{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m33_c00086{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00086{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00086{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m41_c00086{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00086{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00086{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00086{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00086{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00086{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00086{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00086{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m130_c00086{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m23_c00086{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m113_c00086{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00086{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00086{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00086{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m48_c00086{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m51_c00086{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00086{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m98_c00086{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md_c00086{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00086{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mab_c00086{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mda_c00086{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00086{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00086{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00086{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00086{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00086{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00086{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00086{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m127_c00086{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mad_c00086{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md9_c00086{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m29_c00086{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m37_c00086{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m105_c00086{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m75_c00086{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m40_c00086{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00086{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m138_c00086{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00086{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m109_c00086{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00086{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9_c00086{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00086{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m78_c00086{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md7_c00086{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m46_c00086{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m133_c00086{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m79_c00086{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m100_c00086{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m15_c00086{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00086{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00086{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mac_c00086{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m87_c00086{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00086{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00086{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m93_c00086{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m97_c00086{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00086{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00086{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m27_c00086{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00086{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m71_c00086{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m14_c00086{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m52_c00086{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m106_c00086{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m94_c00086{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8_c00086{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00086{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mca_c00086{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m16_c00086{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf_c00086{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m112_c00086{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00086{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.me7_c00086{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00086{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00086{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.md5_c00086{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m53_c00086{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00086{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m136_c00086{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m107_c00086{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00086{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m129_c00086{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m89_c00086{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m96_c00086{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00086{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m120_c00086{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00086{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m137_c00086{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mce_c00086{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me2_c00086{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m92_c00086{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00086{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00086{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m77_c00086{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m134_c00086{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma_c00086{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m81_c00086{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00086{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m62_c00086{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00086{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2_c00086{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m57_c00086{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md3_c00086{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00086{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00086{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m20_c00086{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00086{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00086{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00086{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00086{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.meb_c00086{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.maa_c00086{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00086{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m108_c00086{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00086{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00086{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mff_c00086{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00086{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m88_c00086{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7_c00086{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mef_c00086{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m123_c00086{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00086{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00086{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00086{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mae_c00086{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00086{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00086{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00086{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m64_c00086{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00086{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m114_c00086{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00086{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m103_c00086{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00086{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m22_c00086{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00086{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00086{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00086{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00086{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00086{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00086{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m28_c00086{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.md2_c00086{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00086{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m13_c00086{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m132_c00086{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00086{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me0_c00086{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00086{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10_c00086{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me8_c00086{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m121_c00086{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);}
.m2d_c00086{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11_c00086{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m60_c00086{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00086{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m118_c00086{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c00086{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00086{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m54_c00086{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m101_c00086{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mea_c00086{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00086{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00086{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00086{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m56_c00086{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m63_c00086{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00086{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00086{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m76_c00086{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m12_c00086{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00086{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00086{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00086{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m49_c00086{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m116_c00086{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c00086{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m115_c00086{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m91_c00086{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00086{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00086{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00086{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m110_c00086{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00086{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m6_c00086{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m26_c00086{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m117_c00086{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m69_c00086{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00086{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1_c00086{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m35_c00086{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00086{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m3_c00086{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.md1_c00086{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m124_c00086{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00086{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m39_c00086{transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00086{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m128_c00086{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00086{transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00086{transform:matrix(1.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.176000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls0_c00086{letter-spacing:0.000000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{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__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00086{word-spacing:-19.209166px;}
.ws0_c00086{word-spacing:-6.926417px;}
.wse_c00086{word-spacing:0.000000px;}
.wsc_c00086{word-spacing:3.183406px;}
.ws1_c00086{word-spacing:4.861111px;}
.wsb_c00086{word-spacing:7.662651px;}
.wsd_c00086{word-spacing:11.562500px;}
.wsa_c00086{word-spacing:15.166667px;}
.ws4_c00086{word-spacing:25.714286px;}
.ws5_c00086{word-spacing:34.642857px;}
.ws3_c00086{word-spacing:35.833333px;}
.ws6_c00086{word-spacing:40.000000px;}
.ws7_c00086{word-spacing:44.166667px;}
.ws8_c00086{word-spacing:67.631579px;}
.ws2_c00086{word-spacing:82.280255px;}
._0_c00086{width:70.000000px;}
.fc0_c00086{color:transparent;}
.fs7_c00086{font-size:30.000000px;}
.fs6_c00086{font-size:48.000000px;}
.fs5_c00086{font-size:54.000000px;}
.fs3_c00086{font-size:60.000000px;}
.fs2_c00086{font-size:66.000000px;}
.fs4_c00086{font-size:72.000000px;}
.fs1_c00086{font-size:78.000000px;}
.fs0_c00086{font-size:84.000000px;}
.y0_c00086{bottom:0.000000px;}
.y3a_c00086{bottom:74.550000px;}
.y70_c00086{bottom:165.900000px;}
.y39_c00086{bottom:180.750000px;}
.y6f_c00086{bottom:181.800000px;}
.y38_c00086{bottom:196.200000px;}
.y6e_c00086{bottom:197.700000px;}
.y37_c00086{bottom:209.850000px;}
.y6d_c00086{bottom:210.300000px;}
.y36_c00086{bottom:225.000000px;}
.y6c_c00086{bottom:239.100000px;}
.y35_c00086{bottom:239.700000px;}
.y34_c00086{bottom:253.800000px;}
.y6b_c00086{bottom:268.950000px;}
.y33_c00086{bottom:269.700000px;}
.y6a_c00086{bottom:283.350000px;}
.y69_c00086{bottom:297.750000px;}
.y32_c00086{bottom:298.050000px;}
.y68_c00086{bottom:311.700000px;}
.y31_c00086{bottom:316.200000px;}
.y67_c00086{bottom:326.250000px;}
.y30_c00086{bottom:334.200000px;}
.y66_c00086{bottom:340.950000px;}
.y2f_c00086{bottom:352.200000px;}
.y65_c00086{bottom:355.350000px;}
.y64_c00086{bottom:368.700000px;}
.y2e_c00086{bottom:369.900000px;}
.y2d_c00086{bottom:387.900000px;}
.y63_c00086{bottom:398.100000px;}
.y2c_c00086{bottom:405.900000px;}
.y62_c00086{bottom:420.900000px;}
.y2b_c00086{bottom:424.200000px;}
.y61_c00086{bottom:438.900000px;}
.y2a_c00086{bottom:442.200000px;}
.y29_c00086{bottom:460.200000px;}
.y60_c00086{bottom:461.400000px;}
.y28_c00086{bottom:478.500000px;}
.y5f_c00086{bottom:479.100000px;}
.y27_c00086{bottom:496.500000px;}
.y5e_c00086{bottom:497.400000px;}
.y26_c00086{bottom:514.200000px;}
.y5d_c00086{bottom:515.100000px;}
.y25_c00086{bottom:532.500000px;}
.y5c_c00086{bottom:533.100000px;}
.y24_c00086{bottom:550.200000px;}
.y5b_c00086{bottom:551.100000px;}
.y23_c00086{bottom:568.500000px;}
.y5a_c00086{bottom:577.950000px;}
.y22_c00086{bottom:586.500000px;}
.y59_c00086{bottom:595.950000px;}
.y21_c00086{bottom:604.800000px;}
.y58_c00086{bottom:613.950000px;}
.y20_c00086{bottom:622.800000px;}
.y57_c00086{bottom:631.950000px;}
.y1f_c00086{bottom:640.800000px;}
.y56_c00086{bottom:649.950000px;}
.y1e_c00086{bottom:661.350000px;}
.y55_c00086{bottom:670.800000px;}
.y1d_c00086{bottom:677.250000px;}
.y54_c00086{bottom:685.500000px;}
.y1c_c00086{bottom:690.150000px;}
.y53_c00086{bottom:704.250000px;}
.y1b_c00086{bottom:704.550000px;}
.y1a_c00086{bottom:720.450000px;}
.y52_c00086{bottom:721.500000px;}
.y19_c00086{bottom:734.850000px;}
.y51_c00086{bottom:739.500000px;}
.y18_c00086{bottom:747.750000px;}
.y50_c00086{bottom:757.500000px;}
.y17_c00086{bottom:762.450000px;}
.y4f_c00086{bottom:775.500000px;}
.y16_c00086{bottom:777.600000px;}
.y15_c00086{bottom:792.750000px;}
.y4e_c00086{bottom:793.500000px;}
.y14_c00086{bottom:805.650000px;}
.y4d_c00086{bottom:816.150000px;}
.y13_c00086{bottom:821.100000px;}
.y4c_c00086{bottom:834.150000px;}
.y12_c00086{bottom:834.900000px;}
.y11_c00086{bottom:849.300000px;}
.y4b_c00086{bottom:852.150000px;}
.y10_c00086{bottom:865.800000px;}
.y4a_c00086{bottom:870.150000px;}
.y49_c00086{bottom:888.450000px;}
.yf_c00086{bottom:888.900000px;}
.y48_c00086{bottom:906.150000px;}
.ye_c00086{bottom:906.900000px;}
.y47_c00086{bottom:924.150000px;}
.yd_c00086{bottom:924.900000px;}
.y46_c00086{bottom:941.700000px;}
.yc_c00086{bottom:946.500000px;}
.y45_c00086{bottom:960.150000px;}
.yb_c00086{bottom:964.800000px;}
.y44_c00086{bottom:978.150000px;}
.ya_c00086{bottom:982.800000px;}
.y43_c00086{bottom:996.150000px;}
.y9_c00086{bottom:1000.800000px;}
.y42_c00086{bottom:1014.150000px;}
.y8_c00086{bottom:1022.700000px;}
.y41_c00086{bottom:1032.150000px;}
.y7_c00086{bottom:1041.450000px;}
.y40_c00086{bottom:1050.150000px;}
.y6_c00086{bottom:1064.100000px;}
.y3f_c00086{bottom:1068.450000px;}
.y5_c00086{bottom:1086.150000px;}
.y3e_c00086{bottom:1086.450000px;}
.y3d_c00086{bottom:1104.150000px;}
.y4_c00086{bottom:1104.450000px;}
.y3_c00086{bottom:1122.150000px;}
.y3c_c00086{bottom:1122.450000px;}
.y2_c00086{bottom:1142.400000px;}
.y1_c00086{bottom:1151.700000px;}
.y3b_c00086{bottom:1271.100000px;}
.h9_c00086{height:30.000000px;}
.h8_c00086{height:48.000000px;}
.h7_c00086{height:54.000000px;}
.h5_c00086{height:60.000000px;}
.h4_c00086{height:66.000000px;}
.h6_c00086{height:72.000000px;}
.h3_c00086{height:78.000000px;}
.h2_c00086{height:84.000000px;}
.h1_c00086{height:1272.750000px;}
.h0_c00086{height:1272.960022px;}
.w1_c00086{width:953.250000px;}
.w0_c00086{width:953.280030px;}
.x0_c00086{left:0.000000px;}
.xb9_c00086{left:21.300000px;}
.x7_c00086{left:64.800000px;}
.x1b_c00086{left:65.850000px;}
.x21_c00086{left:66.900000px;}
.x39_c00086{left:68.700000px;}
.x47_c00086{left:69.900000px;}
.x80_c00086{left:71.250000px;}
.xaa_c00086{left:74.100000px;}
.xad_c00086{left:75.750000px;}
.xf_c00086{left:83.250000px;}
.x4b_c00086{left:84.300000px;}
.x15_c00086{left:85.350000px;}
.x29_c00086{left:87.150000px;}
.x32_c00086{left:89.250000px;}
.x82_c00086{left:90.600000px;}
.x92_c00086{left:91.650000px;}
.xa4_c00086{left:92.700000px;}
.xa3_c00086{left:94.200000px;}
.x3a_c00086{left:96.000000px;}
.xae_c00086{left:97.350000px;}
.x55_c00086{left:100.800000px;}
.x5f_c00086{left:101.850000px;}
.x10_c00086{left:106.950000px;}
.x22_c00086{left:108.000000px;}
.xa0_c00086{left:110.400000px;}
.xaf_c00086{left:112.050000px;}
.x89_c00086{left:113.850000px;}
.xa8_c00086{left:115.950000px;}
.x33_c00086{left:118.350000px;}
.x38_c00086{left:123.600000px;}
.x9e_c00086{left:126.000000px;}
.x8_c00086{left:128.550000px;}
.x3f_c00086{left:130.350000px;}
.x95_c00086{left:132.600000px;}
.x48_c00086{left:134.400000px;}
.x2a_c00086{left:135.450000px;}
.x59_c00086{left:136.800000px;}
.x1c_c00086{left:138.900000px;}
.x8a_c00086{left:140.100000px;}
.x7b_c00086{left:141.750000px;}
.x56_c00086{left:142.950000px;}
.x7e_c00086{left:144.000000px;}
.x62_c00086{left:145.350000px;}
.x34_c00086{left:147.450000px;}
.x40_c00086{left:150.450000px;}
.x9_c00086{left:151.650000px;}
.x16_c00086{left:153.450000px;}
.x69_c00086{left:156.600000px;}
.x74_c00086{left:157.650000px;}
.x83_c00086{left:159.000000px;}
.x57_c00086{left:160.650000px;}
.x9a_c00086{left:161.700000px;}
.x81_c00086{left:162.750000px;}
.x1d_c00086{left:163.800000px;}
.x6e_c00086{left:165.600000px;}
.x4f_c00086{left:166.800000px;}
.x72_c00086{left:171.600000px;}
.x2b_c00086{left:173.250000px;}
.x44_c00086{left:174.900000px;}
.x11_c00086{left:176.850000px;}
.x8f_c00086{left:179.550000px;}
.x75_c00086{left:182.100000px;}
.x3b_c00086{left:183.450000px;}
.xa5_c00086{left:184.800000px;}
.x6f_c00086{left:187.500000px;}
.x17_c00086{left:189.150000px;}
.x4c_c00086{left:190.500000px;}
.x7c_c00086{left:192.150000px;}
.x5a_c00086{left:193.650000px;}
.x25_c00086{left:194.850000px;}
.x8b_c00086{left:198.000000px;}
.xa_c00086{left:200.550000px;}
.x70_c00086{left:202.200000px;}
.xb5_c00086{left:203.400000px;}
.x96_c00086{left:205.350000px;}
.x8e_c00086{left:207.000000px;}
.xb0_c00086{left:209.400000px;}
.x7d_c00086{left:210.900000px;}
.x2c_c00086{left:212.100000px;}
.x12_c00086{left:214.950000px;}
.x6a_c00086{left:216.300000px;}
.x8c_c00086{left:218.550000px;}
.x49_c00086{left:221.100000px;}
.x35_c00086{left:222.300000px;}
.x98_c00086{left:224.400000px;}
.x5b_c00086{left:226.050000px;}
.x26_c00086{left:228.300000px;}
.x3c_c00086{left:230.550000px;}
.x2d_c00086{left:232.950000px;}
.x86_c00086{left:235.050000px;}
.x50_c00086{left:236.250000px;}
.xa6_c00086{left:238.050000px;}
.x13_c00086{left:239.400000px;}
.xb1_c00086{left:240.750000px;}
.x18_c00086{left:242.400000px;}
.x41_c00086{left:244.800000px;}
.x84_c00086{left:246.450000px;}
.x45_c00086{left:247.650000px;}
.xa7_c00086{left:249.000000px;}
.x93_c00086{left:253.200000px;}
.x4d_c00086{left:255.300000px;}
.x76_c00086{left:256.950000px;}
.x51_c00086{left:258.150000px;}
.x1e_c00086{left:259.200000px;}
.x87_c00086{left:262.350000px;}
.x77_c00086{left:263.400000px;}
.xb8_c00086{left:264.450000px;}
.x36_c00086{left:266.250000px;}
.x23_c00086{left:267.450000px;}
.x42_c00086{left:268.950000px;}
.x63_c00086{left:270.300000px;}
.xb2_c00086{left:271.350000px;}
.x7f_c00086{left:272.700000px;}
.x9f_c00086{left:274.950000px;}
.x2e_c00086{left:276.150000px;}
.x78_c00086{left:277.800000px;}
.x1f_c00086{left:279.000000px;}
.xb_c00086{left:280.050000px;}
.x64_c00086{left:281.100000px;}
.x73_c00086{left:284.250000px;}
.x79_c00086{left:285.300000px;}
.x97_c00086{left:287.100000px;}
.x90_c00086{left:288.300000px;}
.x71_c00086{left:291.150000px;}
.x6b_c00086{left:292.650000px;}
.xb3_c00086{left:294.450000px;}
.x65_c00086{left:295.500000px;}
.x27_c00086{left:298.500000px;}
.x7a_c00086{left:300.000000px;}
.x4e_c00086{left:301.800000px;}
.x52_c00086{left:303.150000px;}
.x58_c00086{left:305.250000px;}
.x5c_c00086{left:306.600000px;}
.xb4_c00086{left:307.800000px;}
.x19_c00086{left:311.100000px;}
.x14_c00086{left:312.450000px;}
.x1_c00086{left:313.500000px;}
.x46_c00086{left:316.050000px;}
.xac_c00086{left:317.400000px;}
.xa1_c00086{left:319.200000px;}
.x5d_c00086{left:321.300000px;}
.x91_c00086{left:322.800000px;}
.x2f_c00086{left:325.500000px;}
.x24_c00086{left:327.150000px;}
.x1a_c00086{left:328.800000px;}
.xc_c00086{left:330.150000px;}
.x9c_c00086{left:331.200000px;}
.x20_c00086{left:333.750000px;}
.x8d_c00086{left:335.550000px;}
.x60_c00086{left:337.950000px;}
.x2_c00086{left:340.200000px;}
.x6c_c00086{left:341.250000px;}
.x67_c00086{left:342.450000px;}
.x28_c00086{left:343.800000px;}
.xa2_c00086{left:345.450000px;}
.x85_c00086{left:347.250000px;}
.x3d_c00086{left:350.100000px;}
.xab_c00086{left:352.050000px;}
.xd_c00086{left:355.350000px;}
.xb6_c00086{left:358.200000px;}
.x30_c00086{left:359.700000px;}
.x3_c00086{left:361.500000px;}
.x99_c00086{left:363.000000px;}
.x6d_c00086{left:364.350000px;}
.x3e_c00086{left:366.600000px;}
.x53_c00086{left:369.000000px;}
.x61_c00086{left:370.350000px;}
.x68_c00086{left:372.300000px;}
.x88_c00086{left:373.350000px;}
.xe_c00086{left:376.650000px;}
.x94_c00086{left:380.250000px;}
.x9d_c00086{left:381.900000px;}
.x9b_c00086{left:384.900000px;}
.xa9_c00086{left:386.550000px;}
.x4_c00086{left:387.750000px;}
.x37_c00086{left:389.250000px;}
.xb7_c00086{left:390.600000px;}
.x4a_c00086{left:395.400000px;}
.x54_c00086{left:397.500000px;}
.x5e_c00086{left:398.550000px;}
.x31_c00086{left:399.600000px;}
.x66_c00086{left:402.000000px;}
.x43_c00086{left:405.600000px;}
.x167_c00086{left:421.950000px;}
.x15e_c00086{left:424.500000px;}
.x14f_c00086{left:427.650000px;}
.x5_c00086{left:433.800000px;}
.x150_c00086{left:434.850000px;}
.x164_c00086{left:436.200000px;}
.x165_c00086{left:445.950000px;}
.x162_c00086{left:447.000000px;}
.xbd_c00086{left:448.500000px;}
.xd4_c00086{left:449.700000px;}
.xf5_c00086{left:450.750000px;}
.x147_c00086{left:451.800000px;}
.x155_c00086{left:455.550000px;}
.x14c_c00086{left:457.050000px;}
.xdc_c00086{left:468.000000px;}
.xe3_c00086{left:470.850000px;}
.x14b_c00086{left:473.700000px;}
.xc5_c00086{left:476.250000px;}
.xef_c00086{left:477.300000px;}
.x117_c00086{left:479.400000px;}
.x125_c00086{left:481.050000px;}
.x10a_c00086{left:482.400000px;}
.xbe_c00086{left:484.200000px;}
.xd5_c00086{left:486.000000px;}
.x106_c00086{left:487.200000px;}
.x153_c00086{left:488.550000px;}
.xf9_c00086{left:489.600000px;}
.xe4_c00086{left:490.950000px;}
.x156_c00086{left:493.050000px;}
.xf6_c00086{left:494.700000px;}
.x10f_c00086{left:496.800000px;}
.x10d_c00086{left:498.300000px;}
.x148_c00086{left:499.350000px;}
.x128_c00086{left:501.000000px;}
.xf0_c00086{left:502.800000px;}
.xbf_c00086{left:505.500000px;}
.x11f_c00086{left:507.450000px;}
.xeb_c00086{left:508.950000px;}
.x130_c00086{left:512.100000px;}
.xc6_c00086{left:513.300000px;}
.x13c_c00086{left:515.100000px;}
.x11b_c00086{left:517.050000px;}
.xd7_c00086{left:518.850000px;}
.xc0_c00086{left:520.950000px;}
.x157_c00086{left:522.600000px;}
.x118_c00086{left:524.400000px;}
.xba_c00086{left:526.350000px;}
.xe5_c00086{left:528.450000px;}
.x112_c00086{left:530.250000px;}
.x110_c00086{left:532.050000px;}
.xc7_c00086{left:533.400000px;}
.x107_c00086{left:536.100000px;}
.xfd_c00086{left:537.150000px;}
.x12c_c00086{left:539.250000px;}
.xfa_c00086{left:541.500000px;}
.xe6_c00086{left:543.900000px;}
.x120_c00086{left:545.550000px;}
.xcf_c00086{left:547.050000px;}
.x122_c00086{left:550.200000px;}
.x113_c00086{left:551.550000px;}
.xdd_c00086{left:553.650000px;}
.x100_c00086{left:555.150000px;}
.x12d_c00086{left:556.500000px;}
.x158_c00086{left:557.850000px;}
.x131_c00086{left:558.900000px;}
.xd8_c00086{left:561.750000px;}
.xd0_c00086{left:563.550000px;}
.xe7_c00086{left:566.250000px;}
.xde_c00086{left:567.750000px;}
.x163_c00086{left:569.250000px;}
.x138_c00086{left:572.250000px;}
.x111_c00086{left:574.950000px;}
.x129_c00086{left:576.600000px;}
.x141_c00086{left:578.700000px;}
.xec_c00086{left:580.200000px;}
.x151_c00086{left:581.250000px;}
.xc8_c00086{left:583.500000px;}
.x10b_c00086{left:585.300000px;}
.xc1_c00086{left:587.250000px;}
.xbb_c00086{left:588.300000px;}
.x13d_c00086{left:589.350000px;}
.xf7_c00086{left:590.400000px;}
.x144_c00086{left:591.600000px;}
.x136_c00086{left:593.250000px;}
.xf1_c00086{left:595.200000px;}
.x12e_c00086{left:597.900000px;}
.x152_c00086{left:599.250000px;}
.x103_c00086{left:600.750000px;}
.x11c_c00086{left:602.400000px;}
.xdf_c00086{left:603.450000px;}
.xd1_c00086{left:605.250000px;}
.xed_c00086{left:606.450000px;}
.x149_c00086{left:609.450000px;}
.xf8_c00086{left:611.250000px;}
.x133_c00086{left:612.600000px;}
.x119_c00086{left:615.000000px;}
.x15a_c00086{left:616.050000px;}
.x14d_c00086{left:617.550000px;}
.xc9_c00086{left:619.200000px;}
.x123_c00086{left:621.450000px;}
.x142_c00086{left:623.400000px;}
.x134_c00086{left:625.200000px;}
.xfb_c00086{left:627.150000px;}
.x145_c00086{left:629.250000px;}
.xe0_c00086{left:631.950000px;}
.x11a_c00086{left:633.000000px;}
.x101_c00086{left:634.050000px;}
.xe8_c00086{left:635.700000px;}
.xbc_c00086{left:637.650000px;}
.xf2_c00086{left:639.450000px;}
.x15c_c00086{left:640.950000px;}
.xca_c00086{left:642.900000px;}
.xe1_c00086{left:648.450000px;}
.x15b_c00086{left:650.550000px;}
.xc2_c00086{left:654.600000px;}
.xf3_c00086{left:656.400000px;}
.x15f_c00086{left:657.600000px;}
.x139_c00086{left:658.650000px;}
.x126_c00086{left:659.850000px;}
.xd9_c00086{left:661.050000px;}
.x11e_c00086{left:664.650000px;}
.x12f_c00086{left:666.300000px;}
.x124_c00086{left:668.550000px;}
.x108_c00086{left:670.050000px;}
.x121_c00086{left:671.400000px;}
.xd2_c00086{left:673.650000px;}
.x13e_c00086{left:674.700000px;}
.x14a_c00086{left:676.050000px;}
.xe9_c00086{left:678.150000px;}
.x13a_c00086{left:679.500000px;}
.xda_c00086{left:680.850000px;}
.x159_c00086{left:681.900000px;}
.x12a_c00086{left:683.250000px;}
.x114_c00086{left:684.300000px;}
.x135_c00086{left:685.650000px;}
.xcb_c00086{left:687.600000px;}
.x104_c00086{left:689.250000px;}
.x11d_c00086{left:690.600000px;}
.x13f_c00086{left:694.800000px;}
.xd6_c00086{left:696.150000px;}
.xc3_c00086{left:699.300000px;}
.xf4_c00086{left:700.650000px;}
.x143_c00086{left:702.900000px;}
.x154_c00086{left:705.450000px;}
.xe2_c00086{left:706.800000px;}
.xcc_c00086{left:709.500000px;}
.x10c_c00086{left:711.300000px;}
.x102_c00086{left:712.500000px;}
.xfe_c00086{left:713.550000px;}
.xc4_c00086{left:715.500000px;}
.x115_c00086{left:717.750000px;}
.x14e_c00086{left:718.800000px;}
.x15d_c00086{left:720.150000px;}
.xee_c00086{left:721.350000px;}
.x12b_c00086{left:724.950000px;}
.xcd_c00086{left:726.750000px;}
.x132_c00086{left:727.800000px;}
.xea_c00086{left:729.300000px;}
.xd3_c00086{left:730.650000px;}
.xff_c00086{left:731.850000px;}
.x127_c00086{left:734.700000px;}
.x160_c00086{left:736.800000px;}
.x105_c00086{left:737.850000px;}
.x166_c00086{left:739.050000px;}
.x109_c00086{left:741.300000px;}
.xdb_c00086{left:743.100000px;}
.x10e_c00086{left:744.300000px;}
.x116_c00086{left:745.500000px;}
.x13b_c00086{left:748.650000px;}
.x6_c00086{left:749.850000px;}
.x146_c00086{left:751.350000px;}
.xfc_c00086{left:753.150000px;}
.x137_c00086{left:754.800000px;}
.xce_c00086{left:755.850000px;}
.x140_c00086{left:760.050000px;}
.x161_c00086{left:768.450000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws9_c00086{word-spacing:-17.074814pt;}
.ws0_c00086{word-spacing:-6.156815pt;}
.wse_c00086{word-spacing:0.000000pt;}
.wsc_c00086{word-spacing:2.829694pt;}
.ws1_c00086{word-spacing:4.320988pt;}
.wsb_c00086{word-spacing:6.811245pt;}
.wsd_c00086{word-spacing:10.277778pt;}
.wsa_c00086{word-spacing:13.481481pt;}
.ws4_c00086{word-spacing:22.857143pt;}
.ws5_c00086{word-spacing:30.793651pt;}
.ws3_c00086{word-spacing:31.851852pt;}
.ws6_c00086{word-spacing:35.555556pt;}
.ws7_c00086{word-spacing:39.259259pt;}
.ws8_c00086{word-spacing:60.116959pt;}
.ws2_c00086{word-spacing:73.138004pt;}
._0_c00086{width:62.222222pt;}
.fs7_c00086{font-size:26.666667pt;}
.fs6_c00086{font-size:42.666667pt;}
.fs5_c00086{font-size:48.000000pt;}
.fs3_c00086{font-size:53.333333pt;}
.fs2_c00086{font-size:58.666667pt;}
.fs4_c00086{font-size:64.000000pt;}
.fs1_c00086{font-size:69.333333pt;}
.fs0_c00086{font-size:74.666667pt;}
.y0_c00086{bottom:0.000000pt;}
.y3a_c00086{bottom:66.266667pt;}
.y70_c00086{bottom:147.466667pt;}
.y39_c00086{bottom:160.666667pt;}
.y6f_c00086{bottom:161.600000pt;}
.y38_c00086{bottom:174.400000pt;}
.y6e_c00086{bottom:175.733333pt;}
.y37_c00086{bottom:186.533333pt;}
.y6d_c00086{bottom:186.933333pt;}
.y36_c00086{bottom:200.000000pt;}
.y6c_c00086{bottom:212.533333pt;}
.y35_c00086{bottom:213.066667pt;}
.y34_c00086{bottom:225.600000pt;}
.y6b_c00086{bottom:239.066667pt;}
.y33_c00086{bottom:239.733333pt;}
.y6a_c00086{bottom:251.866667pt;}
.y69_c00086{bottom:264.666667pt;}
.y32_c00086{bottom:264.933333pt;}
.y68_c00086{bottom:277.066667pt;}
.y31_c00086{bottom:281.066667pt;}
.y67_c00086{bottom:290.000000pt;}
.y30_c00086{bottom:297.066667pt;}
.y66_c00086{bottom:303.066667pt;}
.y2f_c00086{bottom:313.066667pt;}
.y65_c00086{bottom:315.866667pt;}
.y64_c00086{bottom:327.733333pt;}
.y2e_c00086{bottom:328.800000pt;}
.y2d_c00086{bottom:344.800000pt;}
.y63_c00086{bottom:353.866667pt;}
.y2c_c00086{bottom:360.800000pt;}
.y62_c00086{bottom:374.133333pt;}
.y2b_c00086{bottom:377.066667pt;}
.y61_c00086{bottom:390.133333pt;}
.y2a_c00086{bottom:393.066667pt;}
.y29_c00086{bottom:409.066667pt;}
.y60_c00086{bottom:410.133333pt;}
.y28_c00086{bottom:425.333333pt;}
.y5f_c00086{bottom:425.866667pt;}
.y27_c00086{bottom:441.333333pt;}
.y5e_c00086{bottom:442.133333pt;}
.y26_c00086{bottom:457.066667pt;}
.y5d_c00086{bottom:457.866667pt;}
.y25_c00086{bottom:473.333333pt;}
.y5c_c00086{bottom:473.866667pt;}
.y24_c00086{bottom:489.066667pt;}
.y5b_c00086{bottom:489.866667pt;}
.y23_c00086{bottom:505.333333pt;}
.y5a_c00086{bottom:513.733333pt;}
.y22_c00086{bottom:521.333333pt;}
.y59_c00086{bottom:529.733333pt;}
.y21_c00086{bottom:537.600000pt;}
.y58_c00086{bottom:545.733333pt;}
.y20_c00086{bottom:553.600000pt;}
.y57_c00086{bottom:561.733333pt;}
.y1f_c00086{bottom:569.600000pt;}
.y56_c00086{bottom:577.733333pt;}
.y1e_c00086{bottom:587.866667pt;}
.y55_c00086{bottom:596.266667pt;}
.y1d_c00086{bottom:602.000000pt;}
.y54_c00086{bottom:609.333333pt;}
.y1c_c00086{bottom:613.466667pt;}
.y53_c00086{bottom:626.000000pt;}
.y1b_c00086{bottom:626.266667pt;}
.y1a_c00086{bottom:640.400000pt;}
.y52_c00086{bottom:641.333333pt;}
.y19_c00086{bottom:653.200000pt;}
.y51_c00086{bottom:657.333333pt;}
.y18_c00086{bottom:664.666667pt;}
.y50_c00086{bottom:673.333333pt;}
.y17_c00086{bottom:677.733333pt;}
.y4f_c00086{bottom:689.333333pt;}
.y16_c00086{bottom:691.200000pt;}
.y15_c00086{bottom:704.666667pt;}
.y4e_c00086{bottom:705.333333pt;}
.y14_c00086{bottom:716.133333pt;}
.y4d_c00086{bottom:725.466667pt;}
.y13_c00086{bottom:729.866667pt;}
.y4c_c00086{bottom:741.466667pt;}
.y12_c00086{bottom:742.133333pt;}
.y11_c00086{bottom:754.933333pt;}
.y4b_c00086{bottom:757.466667pt;}
.y10_c00086{bottom:769.600000pt;}
.y4a_c00086{bottom:773.466667pt;}
.y49_c00086{bottom:789.733333pt;}
.yf_c00086{bottom:790.133333pt;}
.y48_c00086{bottom:805.466667pt;}
.ye_c00086{bottom:806.133333pt;}
.y47_c00086{bottom:821.466667pt;}
.yd_c00086{bottom:822.133333pt;}
.y46_c00086{bottom:837.066667pt;}
.yc_c00086{bottom:841.333333pt;}
.y45_c00086{bottom:853.466667pt;}
.yb_c00086{bottom:857.600000pt;}
.y44_c00086{bottom:869.466667pt;}
.ya_c00086{bottom:873.600000pt;}
.y43_c00086{bottom:885.466667pt;}
.y9_c00086{bottom:889.600000pt;}
.y42_c00086{bottom:901.466667pt;}
.y8_c00086{bottom:909.066667pt;}
.y41_c00086{bottom:917.466667pt;}
.y7_c00086{bottom:925.733333pt;}
.y40_c00086{bottom:933.466667pt;}
.y6_c00086{bottom:945.866667pt;}
.y3f_c00086{bottom:949.733333pt;}
.y5_c00086{bottom:965.466667pt;}
.y3e_c00086{bottom:965.733333pt;}
.y3d_c00086{bottom:981.466667pt;}
.y4_c00086{bottom:981.733333pt;}
.y3_c00086{bottom:997.466667pt;}
.y3c_c00086{bottom:997.733333pt;}
.y2_c00086{bottom:1015.466667pt;}
.y1_c00086{bottom:1023.733333pt;}
.y3b_c00086{bottom:1129.866667pt;}
.h9_c00086{height:26.666667pt;}
.h8_c00086{height:42.666667pt;}
.h7_c00086{height:48.000000pt;}
.h5_c00086{height:53.333333pt;}
.h4_c00086{height:58.666667pt;}
.h6_c00086{height:64.000000pt;}
.h3_c00086{height:69.333333pt;}
.h2_c00086{height:74.666667pt;}
.h1_c00086{height:1131.333333pt;}
.h0_c00086{height:1131.520020pt;}
.w1_c00086{width:847.333333pt;}
.w0_c00086{width:847.360027pt;}
.x0_c00086{left:0.000000pt;}
.xb9_c00086{left:18.933333pt;}
.x7_c00086{left:57.600000pt;}
.x1b_c00086{left:58.533333pt;}
.x21_c00086{left:59.466667pt;}
.x39_c00086{left:61.066667pt;}
.x47_c00086{left:62.133333pt;}
.x80_c00086{left:63.333333pt;}
.xaa_c00086{left:65.866667pt;}
.xad_c00086{left:67.333333pt;}
.xf_c00086{left:74.000000pt;}
.x4b_c00086{left:74.933333pt;}
.x15_c00086{left:75.866667pt;}
.x29_c00086{left:77.466667pt;}
.x32_c00086{left:79.333333pt;}
.x82_c00086{left:80.533333pt;}
.x92_c00086{left:81.466667pt;}
.xa4_c00086{left:82.400000pt;}
.xa3_c00086{left:83.733333pt;}
.x3a_c00086{left:85.333333pt;}
.xae_c00086{left:86.533333pt;}
.x55_c00086{left:89.600000pt;}
.x5f_c00086{left:90.533333pt;}
.x10_c00086{left:95.066667pt;}
.x22_c00086{left:96.000000pt;}
.xa0_c00086{left:98.133333pt;}
.xaf_c00086{left:99.600000pt;}
.x89_c00086{left:101.200000pt;}
.xa8_c00086{left:103.066667pt;}
.x33_c00086{left:105.200000pt;}
.x38_c00086{left:109.866667pt;}
.x9e_c00086{left:112.000000pt;}
.x8_c00086{left:114.266667pt;}
.x3f_c00086{left:115.866667pt;}
.x95_c00086{left:117.866667pt;}
.x48_c00086{left:119.466667pt;}
.x2a_c00086{left:120.400000pt;}
.x59_c00086{left:121.600000pt;}
.x1c_c00086{left:123.466667pt;}
.x8a_c00086{left:124.533333pt;}
.x7b_c00086{left:126.000000pt;}
.x56_c00086{left:127.066667pt;}
.x7e_c00086{left:128.000000pt;}
.x62_c00086{left:129.200000pt;}
.x34_c00086{left:131.066667pt;}
.x40_c00086{left:133.733333pt;}
.x9_c00086{left:134.800000pt;}
.x16_c00086{left:136.400000pt;}
.x69_c00086{left:139.200000pt;}
.x74_c00086{left:140.133333pt;}
.x83_c00086{left:141.333333pt;}
.x57_c00086{left:142.800000pt;}
.x9a_c00086{left:143.733333pt;}
.x81_c00086{left:144.666667pt;}
.x1d_c00086{left:145.600000pt;}
.x6e_c00086{left:147.200000pt;}
.x4f_c00086{left:148.266667pt;}
.x72_c00086{left:152.533333pt;}
.x2b_c00086{left:154.000000pt;}
.x44_c00086{left:155.466667pt;}
.x11_c00086{left:157.200000pt;}
.x8f_c00086{left:159.600000pt;}
.x75_c00086{left:161.866667pt;}
.x3b_c00086{left:163.066667pt;}
.xa5_c00086{left:164.266667pt;}
.x6f_c00086{left:166.666667pt;}
.x17_c00086{left:168.133333pt;}
.x4c_c00086{left:169.333333pt;}
.x7c_c00086{left:170.800000pt;}
.x5a_c00086{left:172.133333pt;}
.x25_c00086{left:173.200000pt;}
.x8b_c00086{left:176.000000pt;}
.xa_c00086{left:178.266667pt;}
.x70_c00086{left:179.733333pt;}
.xb5_c00086{left:180.800000pt;}
.x96_c00086{left:182.533333pt;}
.x8e_c00086{left:184.000000pt;}
.xb0_c00086{left:186.133333pt;}
.x7d_c00086{left:187.466667pt;}
.x2c_c00086{left:188.533333pt;}
.x12_c00086{left:191.066667pt;}
.x6a_c00086{left:192.266667pt;}
.x8c_c00086{left:194.266667pt;}
.x49_c00086{left:196.533333pt;}
.x35_c00086{left:197.600000pt;}
.x98_c00086{left:199.466667pt;}
.x5b_c00086{left:200.933333pt;}
.x26_c00086{left:202.933333pt;}
.x3c_c00086{left:204.933333pt;}
.x2d_c00086{left:207.066667pt;}
.x86_c00086{left:208.933333pt;}
.x50_c00086{left:210.000000pt;}
.xa6_c00086{left:211.600000pt;}
.x13_c00086{left:212.800000pt;}
.xb1_c00086{left:214.000000pt;}
.x18_c00086{left:215.466667pt;}
.x41_c00086{left:217.600000pt;}
.x84_c00086{left:219.066667pt;}
.x45_c00086{left:220.133333pt;}
.xa7_c00086{left:221.333333pt;}
.x93_c00086{left:225.066667pt;}
.x4d_c00086{left:226.933333pt;}
.x76_c00086{left:228.400000pt;}
.x51_c00086{left:229.466667pt;}
.x1e_c00086{left:230.400000pt;}
.x87_c00086{left:233.200000pt;}
.x77_c00086{left:234.133333pt;}
.xb8_c00086{left:235.066667pt;}
.x36_c00086{left:236.666667pt;}
.x23_c00086{left:237.733333pt;}
.x42_c00086{left:239.066667pt;}
.x63_c00086{left:240.266667pt;}
.xb2_c00086{left:241.200000pt;}
.x7f_c00086{left:242.400000pt;}
.x9f_c00086{left:244.400000pt;}
.x2e_c00086{left:245.466667pt;}
.x78_c00086{left:246.933333pt;}
.x1f_c00086{left:248.000000pt;}
.xb_c00086{left:248.933333pt;}
.x64_c00086{left:249.866667pt;}
.x73_c00086{left:252.666667pt;}
.x79_c00086{left:253.600000pt;}
.x97_c00086{left:255.200000pt;}
.x90_c00086{left:256.266667pt;}
.x71_c00086{left:258.800000pt;}
.x6b_c00086{left:260.133333pt;}
.xb3_c00086{left:261.733333pt;}
.x65_c00086{left:262.666667pt;}
.x27_c00086{left:265.333333pt;}
.x7a_c00086{left:266.666667pt;}
.x4e_c00086{left:268.266667pt;}
.x52_c00086{left:269.466667pt;}
.x58_c00086{left:271.333333pt;}
.x5c_c00086{left:272.533333pt;}
.xb4_c00086{left:273.600000pt;}
.x19_c00086{left:276.533333pt;}
.x14_c00086{left:277.733333pt;}
.x1_c00086{left:278.666667pt;}
.x46_c00086{left:280.933333pt;}
.xac_c00086{left:282.133333pt;}
.xa1_c00086{left:283.733333pt;}
.x5d_c00086{left:285.600000pt;}
.x91_c00086{left:286.933333pt;}
.x2f_c00086{left:289.333333pt;}
.x24_c00086{left:290.800000pt;}
.x1a_c00086{left:292.266667pt;}
.xc_c00086{left:293.466667pt;}
.x9c_c00086{left:294.400000pt;}
.x20_c00086{left:296.666667pt;}
.x8d_c00086{left:298.266667pt;}
.x60_c00086{left:300.400000pt;}
.x2_c00086{left:302.400000pt;}
.x6c_c00086{left:303.333333pt;}
.x67_c00086{left:304.400000pt;}
.x28_c00086{left:305.600000pt;}
.xa2_c00086{left:307.066667pt;}
.x85_c00086{left:308.666667pt;}
.x3d_c00086{left:311.200000pt;}
.xab_c00086{left:312.933333pt;}
.xd_c00086{left:315.866667pt;}
.xb6_c00086{left:318.400000pt;}
.x30_c00086{left:319.733333pt;}
.x3_c00086{left:321.333333pt;}
.x99_c00086{left:322.666667pt;}
.x6d_c00086{left:323.866667pt;}
.x3e_c00086{left:325.866667pt;}
.x53_c00086{left:328.000000pt;}
.x61_c00086{left:329.200000pt;}
.x68_c00086{left:330.933333pt;}
.x88_c00086{left:331.866667pt;}
.xe_c00086{left:334.800000pt;}
.x94_c00086{left:338.000000pt;}
.x9d_c00086{left:339.466667pt;}
.x9b_c00086{left:342.133333pt;}
.xa9_c00086{left:343.600000pt;}
.x4_c00086{left:344.666667pt;}
.x37_c00086{left:346.000000pt;}
.xb7_c00086{left:347.200000pt;}
.x4a_c00086{left:351.466667pt;}
.x54_c00086{left:353.333333pt;}
.x5e_c00086{left:354.266667pt;}
.x31_c00086{left:355.200000pt;}
.x66_c00086{left:357.333333pt;}
.x43_c00086{left:360.533333pt;}
.x167_c00086{left:375.066667pt;}
.x15e_c00086{left:377.333333pt;}
.x14f_c00086{left:380.133333pt;}
.x5_c00086{left:385.600000pt;}
.x150_c00086{left:386.533333pt;}
.x164_c00086{left:387.733333pt;}
.x165_c00086{left:396.400000pt;}
.x162_c00086{left:397.333333pt;}
.xbd_c00086{left:398.666667pt;}
.xd4_c00086{left:399.733333pt;}
.xf5_c00086{left:400.666667pt;}
.x147_c00086{left:401.600000pt;}
.x155_c00086{left:404.933333pt;}
.x14c_c00086{left:406.266667pt;}
.xdc_c00086{left:416.000000pt;}
.xe3_c00086{left:418.533333pt;}
.x14b_c00086{left:421.066667pt;}
.xc5_c00086{left:423.333333pt;}
.xef_c00086{left:424.266667pt;}
.x117_c00086{left:426.133333pt;}
.x125_c00086{left:427.600000pt;}
.x10a_c00086{left:428.800000pt;}
.xbe_c00086{left:430.400000pt;}
.xd5_c00086{left:432.000000pt;}
.x106_c00086{left:433.066667pt;}
.x153_c00086{left:434.266667pt;}
.xf9_c00086{left:435.200000pt;}
.xe4_c00086{left:436.400000pt;}
.x156_c00086{left:438.266667pt;}
.xf6_c00086{left:439.733333pt;}
.x10f_c00086{left:441.600000pt;}
.x10d_c00086{left:442.933333pt;}
.x148_c00086{left:443.866667pt;}
.x128_c00086{left:445.333333pt;}
.xf0_c00086{left:446.933333pt;}
.xbf_c00086{left:449.333333pt;}
.x11f_c00086{left:451.066667pt;}
.xeb_c00086{left:452.400000pt;}
.x130_c00086{left:455.200000pt;}
.xc6_c00086{left:456.266667pt;}
.x13c_c00086{left:457.866667pt;}
.x11b_c00086{left:459.600000pt;}
.xd7_c00086{left:461.200000pt;}
.xc0_c00086{left:463.066667pt;}
.x157_c00086{left:464.533333pt;}
.x118_c00086{left:466.133333pt;}
.xba_c00086{left:467.866667pt;}
.xe5_c00086{left:469.733333pt;}
.x112_c00086{left:471.333333pt;}
.x110_c00086{left:472.933333pt;}
.xc7_c00086{left:474.133333pt;}
.x107_c00086{left:476.533333pt;}
.xfd_c00086{left:477.466667pt;}
.x12c_c00086{left:479.333333pt;}
.xfa_c00086{left:481.333333pt;}
.xe6_c00086{left:483.466667pt;}
.x120_c00086{left:484.933333pt;}
.xcf_c00086{left:486.266667pt;}
.x122_c00086{left:489.066667pt;}
.x113_c00086{left:490.266667pt;}
.xdd_c00086{left:492.133333pt;}
.x100_c00086{left:493.466667pt;}
.x12d_c00086{left:494.666667pt;}
.x158_c00086{left:495.866667pt;}
.x131_c00086{left:496.800000pt;}
.xd8_c00086{left:499.333333pt;}
.xd0_c00086{left:500.933333pt;}
.xe7_c00086{left:503.333333pt;}
.xde_c00086{left:504.666667pt;}
.x163_c00086{left:506.000000pt;}
.x138_c00086{left:508.666667pt;}
.x111_c00086{left:511.066667pt;}
.x129_c00086{left:512.533333pt;}
.x141_c00086{left:514.400000pt;}
.xec_c00086{left:515.733333pt;}
.x151_c00086{left:516.666667pt;}
.xc8_c00086{left:518.666667pt;}
.x10b_c00086{left:520.266667pt;}
.xc1_c00086{left:522.000000pt;}
.xbb_c00086{left:522.933333pt;}
.x13d_c00086{left:523.866667pt;}
.xf7_c00086{left:524.800000pt;}
.x144_c00086{left:525.866667pt;}
.x136_c00086{left:527.333333pt;}
.xf1_c00086{left:529.066667pt;}
.x12e_c00086{left:531.466667pt;}
.x152_c00086{left:532.666667pt;}
.x103_c00086{left:534.000000pt;}
.x11c_c00086{left:535.466667pt;}
.xdf_c00086{left:536.400000pt;}
.xd1_c00086{left:538.000000pt;}
.xed_c00086{left:539.066667pt;}
.x149_c00086{left:541.733333pt;}
.xf8_c00086{left:543.333333pt;}
.x133_c00086{left:544.533333pt;}
.x119_c00086{left:546.666667pt;}
.x15a_c00086{left:547.600000pt;}
.x14d_c00086{left:548.933333pt;}
.xc9_c00086{left:550.400000pt;}
.x123_c00086{left:552.400000pt;}
.x142_c00086{left:554.133333pt;}
.x134_c00086{left:555.733333pt;}
.xfb_c00086{left:557.466667pt;}
.x145_c00086{left:559.333333pt;}
.xe0_c00086{left:561.733333pt;}
.x11a_c00086{left:562.666667pt;}
.x101_c00086{left:563.600000pt;}
.xe8_c00086{left:565.066667pt;}
.xbc_c00086{left:566.800000pt;}
.xf2_c00086{left:568.400000pt;}
.x15c_c00086{left:569.733333pt;}
.xca_c00086{left:571.466667pt;}
.xe1_c00086{left:576.400000pt;}
.x15b_c00086{left:578.266667pt;}
.xc2_c00086{left:581.866667pt;}
.xf3_c00086{left:583.466667pt;}
.x15f_c00086{left:584.533333pt;}
.x139_c00086{left:585.466667pt;}
.x126_c00086{left:586.533333pt;}
.xd9_c00086{left:587.600000pt;}
.x11e_c00086{left:590.800000pt;}
.x12f_c00086{left:592.266667pt;}
.x124_c00086{left:594.266667pt;}
.x108_c00086{left:595.600000pt;}
.x121_c00086{left:596.800000pt;}
.xd2_c00086{left:598.800000pt;}
.x13e_c00086{left:599.733333pt;}
.x14a_c00086{left:600.933333pt;}
.xe9_c00086{left:602.800000pt;}
.x13a_c00086{left:604.000000pt;}
.xda_c00086{left:605.200000pt;}
.x159_c00086{left:606.133333pt;}
.x12a_c00086{left:607.333333pt;}
.x114_c00086{left:608.266667pt;}
.x135_c00086{left:609.466667pt;}
.xcb_c00086{left:611.200000pt;}
.x104_c00086{left:612.666667pt;}
.x11d_c00086{left:613.866667pt;}
.x13f_c00086{left:617.600000pt;}
.xd6_c00086{left:618.800000pt;}
.xc3_c00086{left:621.600000pt;}
.xf4_c00086{left:622.800000pt;}
.x143_c00086{left:624.800000pt;}
.x154_c00086{left:627.066667pt;}
.xe2_c00086{left:628.266667pt;}
.xcc_c00086{left:630.666667pt;}
.x10c_c00086{left:632.266667pt;}
.x102_c00086{left:633.333333pt;}
.xfe_c00086{left:634.266667pt;}
.xc4_c00086{left:636.000000pt;}
.x115_c00086{left:638.000000pt;}
.x14e_c00086{left:638.933333pt;}
.x15d_c00086{left:640.133333pt;}
.xee_c00086{left:641.200000pt;}
.x12b_c00086{left:644.400000pt;}
.xcd_c00086{left:646.000000pt;}
.x132_c00086{left:646.933333pt;}
.xea_c00086{left:648.266667pt;}
.xd3_c00086{left:649.466667pt;}
.xff_c00086{left:650.533333pt;}
.x127_c00086{left:653.066667pt;}
.x160_c00086{left:654.933333pt;}
.x105_c00086{left:655.866667pt;}
.x166_c00086{left:656.933333pt;}
.x109_c00086{left:658.933333pt;}
.xdb_c00086{left:660.533333pt;}
.x10e_c00086{left:661.600000pt;}
.x116_c00086{left:662.666667pt;}
.x13b_c00086{left:665.466667pt;}
.x6_c00086{left:666.533333pt;}
.x146_c00086{left:667.866667pt;}
.xfc_c00086{left:669.466667pt;}
.x137_c00086{left:670.933333pt;}
.xce_c00086{left:671.866667pt;}
.x140_c00086{left:675.600000pt;}
.x161_c00086{left:683.066667pt;}
}





/* 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_c00087 {
    display:none;
  }
  .loading-indicator_c00087.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00087 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_c00087 { 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_c00087" -> "#page-container .classname_c00087")
 */
.pf_c00087 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00087 { /* 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_c00087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00087 { /* 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_c00087 { /* 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_c00087 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00087 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00087 {overflow:visible;}
  }
}
.c_c00087 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00087 { /* 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_c00087:after { /* webkit #35443 */
  content: '';
}
.t_c00087:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00087 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 */
}
.__c00087 { /* 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_c00087 { /* info for Javascript */
  display:none;
}
.l_c00087 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00087 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00087 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00087: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_c00087 {
    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_c00087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00087.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_c00087 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00087;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.000000;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;}
.me9_c00087{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00087{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mde_c00087{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m76_c00087{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00087{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00087{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00087{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m69_c00087{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00087{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00087{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m40_c00087{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m24_c00087{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00087{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m80_c00087{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00087{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m44_c00087{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m71_c00087{transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);}
.m41_c00087{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00087{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00087{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m67_c00087{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m127_c00087{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m106_c00087{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00087{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m42_c00087{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00087{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.mae_c00087{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00087{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m112_c00087{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00087{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m77_c00087{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00087{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m121_c00087{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00087{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m75_c00087{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00087{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m58_c00087{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00087{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m88_c00087{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m20_c00087{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00087{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m51_c00087{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mee_c00087{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m126_c00087{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00087{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.med_c00087{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00087{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m100_c00087{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00087{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mab_c00087{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00087{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00087{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mef_c00087{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m60_c00087{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.maa_c00087{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m66_c00087{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00087{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00087{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00087{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m70_c00087{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00087{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m29_c00087{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m34_c00087{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00087{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.me3_c00087{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00087{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m53_c00087{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m38_c00087{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9_c00087{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00087{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m23_c00087{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m57_c00087{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00087{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m103_c00087{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00087{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00087{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md0_c00087{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00087{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mad_c00087{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m82_c00087{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mca_c00087{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00087{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m85_c00087{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md_c00087{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m108_c00087{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m46_c00087{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.md5_c00087{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00087{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m61_c00087{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00087{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m109_c00087{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m56_c00087{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00087{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m120_c00087{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc_c00087{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md3_c00087{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00087{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00087{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m17_c00087{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00087{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m10_c00087{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00087{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md7_c00087{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m93_c00087{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m102_c00087{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00087{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00087{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00087{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00087{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m65_c00087{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.md2_c00087{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m13_c00087{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00087{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m95_c00087{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00087{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m68_c00087{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md6_c00087{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m27_c00087{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00087{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m19_c00087{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00087{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mea_c00087{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00087{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00087{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me_c00087{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.meb_c00087{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m92_c00087{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m113_c00087{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00087{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m26_c00087{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m84_c00087{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00087{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00087{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m25_c00087{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m63_c00087{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m55_c00087{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00087{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m87_c00087{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00087{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m21_c00087{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00087{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00087{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00087{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m81_c00087{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m99_c00087{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00087{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m43_c00087{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00087{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m86_c00087{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m62_c00087{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mec_c00087{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00087{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m12_c00087{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m11_c00087{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m72_c00087{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00087{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00087{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mac_c00087{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf_c00087{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00087{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md1_c00087{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m16_c00087{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m79_c00087{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma_c00087{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00087{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m22_c00087{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m54_c00087{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00087{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mff_c00087{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00087{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00087{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m122_c00087{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me2_c00087{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00087{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m101_c00087{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00087{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m35_c00087{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00087{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m64_c00087{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00087{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00087{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00087{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.me4_c00087{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00087{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00087{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00087{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m91_c00087{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m49_c00087{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m32_c00087{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00087{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m83_c00087{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m14_c00087{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00087{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00087{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m124_c00087{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m59_c00087{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00087{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me6_c00087{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m117_c00087{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m52_c00087{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00087{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00087{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m107_c00087{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00087{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m78_c00087{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m115_c00087{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m36_c00087{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m28_c00087{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00087{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00087{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00087{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m96_c00087{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m125_c00087{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00087{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md4_c00087{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00087{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00087{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m105_c00087{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m8_c00087{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00087{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m45_c00087{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m119_c00087{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00087{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00087{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00087{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00087{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me5_c00087{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m37_c00087{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00087{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00087{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m15_c00087{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00087{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00087{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.md8_c00087{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00087{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00087{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00087{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m74_c00087{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me8_c00087{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00087{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.md9_c00087{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m97_c00087{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m48_c00087{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00087{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m39_c00087{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00087{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00087{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00087{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m89_c00087{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00087{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00087{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mce_c00087{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);}
.m123_c00087{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00087{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m31_c00087{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00087{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m90_c00087{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m18_c00087{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00087{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m129_c00087{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00087{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m98_c00087{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.maf_c00087{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m110_c00087{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m47_c00087{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00087{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m111_c00087{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m104_c00087{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mb_c00087{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m118_c00087{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00087{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00087{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00087{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m30_c00087{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m73_c00087{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m128_c00087{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m114_c00087{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m4_c00087{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00087{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mda_c00087{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00087{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00087{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00087{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m94_c00087{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00087{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m7_c00087{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m50_c00087{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m5_c00087{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00087{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00087{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me0_c00087{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m116_c00087{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me7_c00087{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00087{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mba_c00087{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m6_c00087{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m0_c00087{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.me1_c00087{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m33_c00087{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.m3_c00087{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00087{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00087{transform:matrix(0.431000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431000,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls0_c00087{letter-spacing:0.000000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{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__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00087{word-spacing:-8.470588px;}
.ws0_c00087{word-spacing:-5.617834px;}
.ws5_c00087{word-spacing:-3.125000px;}
.ws1_c00087{word-spacing:-1.666667px;}
.ws9_c00087{word-spacing:0.000000px;}
.ws4_c00087{word-spacing:1.273429px;}
.ws7_c00087{word-spacing:15.000000px;}
.ws2_c00087{word-spacing:34.891720px;}
.ws8_c00087{word-spacing:60.000000px;}
.ws3_c00087{word-spacing:192.778626px;}
.fc0_c00087{color:transparent;}
.fs6_c00087{font-size:54.000000px;}
.fs0_c00087{font-size:60.000000px;}
.fs2_c00087{font-size:66.000000px;}
.fs3_c00087{font-size:72.000000px;}
.fs4_c00087{font-size:78.000000px;}
.fs1_c00087{font-size:84.000000px;}
.fs5_c00087{font-size:90.000000px;}
.y0_c00087{bottom:0.000000px;}
.y6a_c00087{bottom:170.700000px;}
.y38_c00087{bottom:189.000000px;}
.y37_c00087{bottom:203.700000px;}
.y69_c00087{bottom:207.000000px;}
.y36_c00087{bottom:218.100000px;}
.y68_c00087{bottom:227.550000px;}
.y35_c00087{bottom:232.950000px;}
.y67_c00087{bottom:242.550000px;}
.y34_c00087{bottom:247.350000px;}
.y66_c00087{bottom:256.650000px;}
.y33_c00087{bottom:262.050000px;}
.y65_c00087{bottom:272.100000px;}
.y32_c00087{bottom:276.450000px;}
.y31_c00087{bottom:290.550000px;}
.y64_c00087{bottom:291.600000px;}
.y30_c00087{bottom:304.950000px;}
.y63_c00087{bottom:309.600000px;}
.y2f_c00087{bottom:319.350000px;}
.y62_c00087{bottom:327.600000px;}
.y2e_c00087{bottom:333.750000px;}
.y61_c00087{bottom:345.300000px;}
.y2d_c00087{bottom:348.150000px;}
.y2c_c00087{bottom:362.550000px;}
.y60_c00087{bottom:367.950000px;}
.y2b_c00087{bottom:377.250000px;}
.y5f_c00087{bottom:386.250000px;}
.y2a_c00087{bottom:391.050000px;}
.y5e_c00087{bottom:404.250000px;}
.y29_c00087{bottom:405.750000px;}
.y28_c00087{bottom:419.850000px;}
.y5d_c00087{bottom:426.600000px;}
.y27_c00087{bottom:434.550000px;}
.y5c_c00087{bottom:444.600000px;}
.y26_c00087{bottom:449.250000px;}
.y25_c00087{bottom:463.500000px;}
.y5b_c00087{bottom:471.300000px;}
.y24_c00087{bottom:478.200000px;}
.y5a_c00087{bottom:489.300000px;}
.y23_c00087{bottom:492.600000px;}
.y22_c00087{bottom:507.300000px;}
.y59_c00087{bottom:515.550000px;}
.y21_c00087{bottom:521.400000px;}
.y20_c00087{bottom:535.800000px;}
.y58_c00087{bottom:537.900000px;}
.y1f_c00087{bottom:550.500000px;}
.y57_c00087{bottom:555.900000px;}
.y1e_c00087{bottom:564.600000px;}
.y56_c00087{bottom:574.200000px;}
.y1d_c00087{bottom:579.300000px;}
.y55_c00087{bottom:592.200000px;}
.y1c_c00087{bottom:608.100000px;}
.y54_c00087{bottom:610.200000px;}
.y53_c00087{bottom:628.200000px;}
.y1b_c00087{bottom:634.350000px;}
.y52_c00087{bottom:654.900000px;}
.y1a_c00087{bottom:661.050000px;}
.y51_c00087{bottom:673.200000px;}
.y19_c00087{bottom:679.350000px;}
.y50_c00087{bottom:696.150000px;}
.y18_c00087{bottom:709.950000px;}
.y4f_c00087{bottom:713.850000px;}
.y17_c00087{bottom:727.950000px;}
.y4e_c00087{bottom:736.500000px;}
.y16_c00087{bottom:745.950000px;}
.y4d_c00087{bottom:754.500000px;}
.y15_c00087{bottom:763.950000px;}
.y4c_c00087{bottom:772.500000px;}
.y14_c00087{bottom:781.950000px;}
.y4b_c00087{bottom:790.500000px;}
.y13_c00087{bottom:799.950000px;}
.y4a_c00087{bottom:812.100000px;}
.y12_c00087{bottom:822.300000px;}
.y49_c00087{bottom:830.100000px;}
.y11_c00087{bottom:840.300000px;}
.y48_c00087{bottom:848.100000px;}
.y10_c00087{bottom:858.300000px;}
.y47_c00087{bottom:866.100000px;}
.yf_c00087{bottom:876.300000px;}
.y46_c00087{bottom:884.100000px;}
.ye_c00087{bottom:898.500000px;}
.y45_c00087{bottom:902.100000px;}
.yd_c00087{bottom:920.550000px;}
.y44_c00087{bottom:924.450000px;}
.y43_c00087{bottom:942.450000px;}
.yc_c00087{bottom:943.200000px;}
.yb_c00087{bottom:965.550000px;}
.y42_c00087{bottom:969.150000px;}
.y41_c00087{bottom:987.150000px;}
.ya_c00087{bottom:987.450000px;}
.y9_c00087{bottom:1006.200000px;}
.y40_c00087{bottom:1008.750000px;}
.y3f_c00087{bottom:1027.500000px;}
.y8_c00087{bottom:1027.800000px;}
.y7_c00087{bottom:1046.550000px;}
.y3e_c00087{bottom:1054.800000px;}
.y3d_c00087{bottom:1063.050000px;}
.y6_c00087{bottom:1064.550000px;}
.y3c_c00087{bottom:1075.650000px;}
.y3b_c00087{bottom:1085.400000px;}
.y5_c00087{bottom:1085.700000px;}
.y4_c00087{bottom:1104.450000px;}
.y3a_c00087{bottom:1110.600000px;}
.y39_c00087{bottom:1128.600000px;}
.y3_c00087{bottom:1129.350000px;}
.y1_c00087{bottom:1153.500000px;}
.y2_c00087{bottom:1155.600000px;}
.h8_c00087{height:54.000000px;}
.h2_c00087{height:60.000000px;}
.h4_c00087{height:66.000000px;}
.h5_c00087{height:72.000000px;}
.h6_c00087{height:78.000000px;}
.h3_c00087{height:84.000000px;}
.h7_c00087{height:90.000000px;}
.h1_c00087{height:1281.000000px;}
.h0_c00087{height:1281.240051px;}
.w1_c00087{width:953.250000px;}
.w0_c00087{width:953.280030px;}
.x0_c00087{left:0.000000px;}
.x32_c00087{left:186.450000px;}
.x1_c00087{left:189.000000px;}
.x5_c00087{left:190.800000px;}
.x8a_c00087{left:191.850000px;}
.x9d_c00087{left:193.500000px;}
.xa6_c00087{left:194.550000px;}
.xa_c00087{left:208.050000px;}
.x7c_c00087{left:215.550000px;}
.x5d_c00087{left:217.350000px;}
.x9a_c00087{left:219.450000px;}
.xa2_c00087{left:222.150000px;}
.x81_c00087{left:223.200000px;}
.x29_c00087{left:225.600000px;}
.x1a_c00087{left:226.800000px;}
.x24_c00087{left:227.850000px;}
.x46_c00087{left:230.100000px;}
.x20_c00087{left:232.950000px;}
.x86_c00087{left:234.000000px;}
.x77_c00087{left:238.200000px;}
.x6d_c00087{left:239.250000px;}
.xa0_c00087{left:240.750000px;}
.x73_c00087{left:241.950000px;}
.x82_c00087{left:243.300000px;}
.xa3_c00087{left:244.500000px;}
.x3f_c00087{left:245.550000px;}
.x90_c00087{left:246.900000px;}
.x17_c00087{left:248.550000px;}
.x6_c00087{left:250.500000px;}
.x5a_c00087{left:251.550000px;}
.x21_c00087{left:253.800000px;}
.x78_c00087{left:255.900000px;}
.x93_c00087{left:257.700000px;}
.x2f_c00087{left:258.900000px;}
.x18_c00087{left:261.450000px;}
.x9b_c00087{left:263.850000px;}
.x3_c00087{left:265.350000px;}
.xc_c00087{left:266.400000px;}
.x66_c00087{left:267.900000px;}
.xb_c00087{left:268.950000px;}
.x2e_c00087{left:270.450000px;}
.x25_c00087{left:271.800000px;}
.x2a_c00087{left:273.900000px;}
.x7_c00087{left:276.450000px;}
.x47_c00087{left:278.400000px;}
.x94_c00087{left:279.600000px;}
.x5b_c00087{left:281.100000px;}
.x7d_c00087{left:282.150000px;}
.x1b_c00087{left:283.650000px;}
.x12_c00087{left:285.750000px;}
.x67_c00087{left:287.250000px;}
.x22_c00087{left:292.350000px;}
.xd_c00087{left:295.500000px;}
.x9e_c00087{left:297.150000px;}
.x5e_c00087{left:299.100000px;}
.xa7_c00087{left:300.150000px;}
.x60_c00087{left:301.350000px;}
.x38_c00087{left:304.050000px;}
.x30_c00087{left:305.100000px;}
.x9c_c00087{left:307.350000px;}
.x74_c00087{left:308.850000px;}
.x1c_c00087{left:312.150000px;}
.x6e_c00087{left:313.500000px;}
.x23_c00087{left:315.000000px;}
.x9f_c00087{left:317.700000px;}
.x68_c00087{left:320.700000px;}
.x33_c00087{left:322.800000px;}
.x2b_c00087{left:326.100000px;}
.x3b_c00087{left:327.150000px;}
.x26_c00087{left:328.650000px;}
.x19_c00087{left:332.400000px;}
.x8e_c00087{left:334.800000px;}
.x83_c00087{left:336.600000px;}
.x91_c00087{left:337.650000px;}
.x54_c00087{left:339.150000px;}
.x7e_c00087{left:340.500000px;}
.x4c_c00087{left:341.850000px;}
.x84_c00087{left:344.850000px;}
.x5c_c00087{left:346.950000px;}
.x61_c00087{left:348.600000px;}
.x40_c00087{left:351.000000px;}
.x56_c00087{left:352.500000px;}
.x8_c00087{left:354.150000px;}
.xe_c00087{left:355.950000px;}
.x48_c00087{left:358.500000px;}
.x7f_c00087{left:361.350000px;}
.x31_c00087{left:362.400000px;}
.x8b_c00087{left:363.600000px;}
.x62_c00087{left:365.100000px;}
.x1d_c00087{left:367.200000px;}
.x13_c00087{left:368.550000px;}
.x50_c00087{left:371.100000px;}
.x2c_c00087{left:373.650000px;}
.x34_c00087{left:374.700000px;}
.x4_c00087{left:375.900000px;}
.x63_c00087{left:377.700000px;}
.x4d_c00087{left:379.650000px;}
.x87_c00087{left:381.450000px;}
.xa8_c00087{left:383.700000px;}
.x27_c00087{left:384.750000px;}
.x69_c00087{left:388.050000px;}
.x64_c00087{left:390.600000px;}
.x80_c00087{left:391.950000px;}
.x98_c00087{left:393.750000px;}
.x2d_c00087{left:394.950000px;}
.xa4_c00087{left:397.800000px;}
.x39_c00087{left:400.200000px;}
.x65_c00087{left:402.450000px;}
.x6f_c00087{left:404.250000px;}
.x3c_c00087{left:407.700000px;}
.x6a_c00087{left:409.350000px;}
.x88_c00087{left:411.450000px;}
.x75_c00087{left:412.500000px;}
.x4e_c00087{left:414.900000px;}
.x70_c00087{left:416.550000px;}
.x1e_c00087{left:417.600000px;}
.x6b_c00087{left:418.650000px;}
.x96_c00087{left:420.150000px;}
.xa5_c00087{left:421.200000px;}
.x51_c00087{left:422.250000px;}
.x8c_c00087{left:423.750000px;}
.x95_c00087{left:424.950000px;}
.x79_c00087{left:427.350000px;}
.xf_c00087{left:429.750000px;}
.x35_c00087{left:431.250000px;}
.x14_c00087{left:433.350000px;}
.x2_c00087{left:435.300000px;}
.x57_c00087{left:436.350000px;}
.x52_c00087{left:437.700000px;}
.x99_c00087{left:440.550000px;}
.x28_c00087{left:441.600000px;}
.xa1_c00087{left:443.550000px;}
.x41_c00087{left:445.050000px;}
.x58_c00087{left:446.400000px;}
.x8f_c00087{left:449.550000px;}
.x9_c00087{left:451.050000px;}
.x49_c00087{left:452.850000px;}
.x36_c00087{left:454.950000px;}
.x15_c00087{left:456.000000px;}
.x55_c00087{left:457.200000px;}
.x42_c00087{left:459.750000px;}
.x4a_c00087{left:461.550000px;}
.x59_c00087{left:462.600000px;}
.x10_c00087{left:464.700000px;}
.x3d_c00087{left:468.600000px;}
.x53_c00087{left:469.800000px;}
.x1f_c00087{left:472.350000px;}
.x92_c00087{left:476.550000px;}
.x71_c00087{left:477.750000px;}
.x4f_c00087{left:479.400000px;}
.x7a_c00087{left:481.350000px;}
.x43_c00087{left:484.650000px;}
.x16_c00087{left:487.650000px;}
.x3e_c00087{left:489.900000px;}
.x8d_c00087{left:492.900000px;}
.x11_c00087{left:494.550000px;}
.x85_c00087{left:495.750000px;}
.x72_c00087{left:496.800000px;}
.x37_c00087{left:498.450000px;}
.x7b_c00087{left:500.400000px;}
.x3a_c00087{left:503.100000px;}
.x6c_c00087{left:504.300000px;}
.x44_c00087{left:508.350000px;}
.x97_c00087{left:509.400000px;}
.x76_c00087{left:511.800000px;}
.x89_c00087{left:514.050000px;}
.x4b_c00087{left:515.250000px;}
.x5f_c00087{left:516.900000px;}
.x45_c00087{left:522.000000px;}
.xae_c00087{left:547.200000px;}
.x102_c00087{left:548.250000px;}
.x139_c00087{left:560.700000px;}
.x134_c00087{left:562.200000px;}
.xbc_c00087{left:564.000000px;}
.xc1_c00087{left:565.200000px;}
.x101_c00087{left:566.250000px;}
.x13c_c00087{left:575.700000px;}
.xab_c00087{left:582.750000px;}
.xa9_c00087{left:584.250000px;}
.xc8_c00087{left:585.300000px;}
.xce_c00087{left:587.550000px;}
.x12e_c00087{left:589.350000px;}
.x10f_c00087{left:591.150000px;}
.xaf_c00087{left:592.500000px;}
.xeb_c00087{left:595.050000px;}
.xba_c00087{left:598.200000px;}
.x11f_c00087{left:600.900000px;}
.x106_c00087{left:602.250000px;}
.x12b_c00087{left:604.200000px;}
.xf4_c00087{left:605.700000px;}
.x103_c00087{left:607.650000px;}
.xe8_c00087{left:610.350000px;}
.xdc_c00087{left:612.000000px;}
.x11c_c00087{left:614.100000px;}
.xc9_c00087{left:617.400000px;}
.xee_c00087{left:619.500000px;}
.xd7_c00087{left:623.100000px;}
.x124_c00087{left:624.600000px;}
.xbb_c00087{left:626.700000px;}
.x116_c00087{left:629.400000px;}
.x135_c00087{left:630.600000px;}
.xaa_c00087{left:632.100000px;}
.xfd_c00087{left:635.850000px;}
.xe2_c00087{left:638.100000px;}
.xb6_c00087{left:639.300000px;}
.xd8_c00087{left:640.350000px;}
.xf5_c00087{left:642.450000px;}
.xff_c00087{left:644.400000px;}
.xdd_c00087{left:645.450000px;}
.xc2_c00087{left:647.250000px;}
.x137_c00087{left:650.250000px;}
.xe9_c00087{left:651.750000px;}
.x13f_c00087{left:653.550000px;}
.xfe_c00087{left:654.600000px;}
.xf9_c00087{left:657.000000px;}
.xcf_c00087{left:658.050000px;}
.xd1_c00087{left:659.100000px;}
.x110_c00087{left:660.300000px;}
.xb0_c00087{left:661.950000px;}
.xef_c00087{left:663.450000px;}
.xca_c00087{left:666.300000px;}
.xbe_c00087{left:668.100000px;}
.xde_c00087{left:670.350000px;}
.x119_c00087{left:671.550000px;}
.xd9_c00087{left:672.750000px;}
.x107_c00087{left:674.850000px;}
.xac_c00087{left:676.800000px;}
.x131_c00087{left:679.050000px;}
.xc7_c00087{left:682.650000px;}
.x120_c00087{left:684.450000px;}
.xfa_c00087{left:688.650000px;}
.x10b_c00087{left:690.600000px;}
.xbd_c00087{left:692.100000px;}
.x104_c00087{left:693.600000px;}
.xf0_c00087{left:694.800000px;}
.x128_c00087{left:697.200000px;}
.xcb_c00087{left:699.000000px;}
.x11d_c00087{left:700.800000px;}
.x123_c00087{left:702.450000px;}
.x13a_c00087{left:705.750000px;}
.x13d_c00087{left:708.900000px;}
.x100_c00087{left:711.000000px;}
.x11a_c00087{left:712.950000px;}
.x129_c00087{left:715.500000px;}
.x111_c00087{left:716.850000px;}
.xc3_c00087{left:721.800000px;}
.xb1_c00087{left:723.900000px;}
.x10c_c00087{left:725.100000px;}
.xad_c00087{left:726.150000px;}
.xec_c00087{left:727.200000px;}
.xda_c00087{left:730.350000px;}
.xe3_c00087{left:731.700000px;}
.x12c_c00087{left:733.350000px;}
.x112_c00087{left:735.600000px;}
.xb2_c00087{left:736.800000px;}
.xbf_c00087{left:738.600000px;}
.xf1_c00087{left:740.100000px;}
.xd2_c00087{left:744.750000px;}
.x108_c00087{left:745.800000px;}
.xf6_c00087{left:746.850000px;}
.x132_c00087{left:748.800000px;}
.xfb_c00087{left:753.150000px;}
.xea_c00087{left:754.650000px;}
.xdf_c00087{left:758.250000px;}
.x117_c00087{left:759.750000px;}
.x140_c00087{left:761.250000px;}
.xd3_c00087{left:762.450000px;}
.x13b_c00087{left:764.400000px;}
.xe4_c00087{left:768.450000px;}
.x125_c00087{left:769.950000px;}
.xf2_c00087{left:771.750000px;}
.xd0_c00087{left:773.250000px;}
.x13e_c00087{left:774.450000px;}
.xfc_c00087{left:776.550000px;}
.xc4_c00087{left:778.650000px;}
.xb3_c00087{left:779.700000px;}
.x12f_c00087{left:781.950000px;}
.xe5_c00087{left:784.650000px;}
.x11e_c00087{left:785.700000px;}
.x133_c00087{left:787.950000px;}
.x121_c00087{left:789.600000px;}
.x130_c00087{left:792.000000px;}
.x113_c00087{left:793.500000px;}
.x12d_c00087{left:794.550000px;}
.x136_c00087{left:795.750000px;}
.xb4_c00087{left:800.250000px;}
.x10d_c00087{left:802.500000px;}
.x105_c00087{left:803.850000px;}
.x118_c00087{left:805.800000px;}
.xf3_c00087{left:808.500000px;}
.x11b_c00087{left:809.850000px;}
.xcc_c00087{left:812.100000px;}
.x12a_c00087{left:815.550000px;}
.x122_c00087{left:816.600000px;}
.x114_c00087{left:817.950000px;}
.x126_c00087{left:820.050000px;}
.xe6_c00087{left:823.200000px;}
.x10e_c00087{left:828.000000px;}
.xdb_c00087{left:829.350000px;}
.xe0_c00087{left:830.550000px;}
.xc5_c00087{left:832.650000px;}
.xd4_c00087{left:834.450000px;}
.xf7_c00087{left:838.050000px;}
.x109_c00087{left:840.150000px;}
.xd5_c00087{left:844.200000px;}
.xb5_c00087{left:846.300000px;}
.xcd_c00087{left:848.100000px;}
.xc0_c00087{left:851.700000px;}
.x115_c00087{left:852.900000px;}
.xb7_c00087{left:854.100000px;}
.xe7_c00087{left:855.900000px;}
.xed_c00087{left:857.100000px;}
.x10a_c00087{left:859.200000px;}
.xe1_c00087{left:862.650000px;}
.xf8_c00087{left:864.000000px;}
.xd6_c00087{left:865.050000px;}
.x138_c00087{left:867.750000px;}
.xb8_c00087{left:869.250000px;}
.xc6_c00087{left:871.950000px;}
.xb9_c00087{left:877.200000px;}
.x127_c00087{left:879.450000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ws6_c00087{word-spacing:-7.529412pt;}
.ws0_c00087{word-spacing:-4.993631pt;}
.ws5_c00087{word-spacing:-2.777778pt;}
.ws1_c00087{word-spacing:-1.481481pt;}
.ws9_c00087{word-spacing:0.000000pt;}
.ws4_c00087{word-spacing:1.131937pt;}
.ws7_c00087{word-spacing:13.333333pt;}
.ws2_c00087{word-spacing:31.014862pt;}
.ws8_c00087{word-spacing:53.333333pt;}
.ws3_c00087{word-spacing:171.358779pt;}
.fs6_c00087{font-size:48.000000pt;}
.fs0_c00087{font-size:53.333333pt;}
.fs2_c00087{font-size:58.666667pt;}
.fs3_c00087{font-size:64.000000pt;}
.fs4_c00087{font-size:69.333333pt;}
.fs1_c00087{font-size:74.666667pt;}
.fs5_c00087{font-size:80.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y6a_c00087{bottom:151.733333pt;}
.y38_c00087{bottom:168.000000pt;}
.y37_c00087{bottom:181.066667pt;}
.y69_c00087{bottom:184.000000pt;}
.y36_c00087{bottom:193.866667pt;}
.y68_c00087{bottom:202.266667pt;}
.y35_c00087{bottom:207.066667pt;}
.y67_c00087{bottom:215.600000pt;}
.y34_c00087{bottom:219.866667pt;}
.y66_c00087{bottom:228.133333pt;}
.y33_c00087{bottom:232.933333pt;}
.y65_c00087{bottom:241.866667pt;}
.y32_c00087{bottom:245.733333pt;}
.y31_c00087{bottom:258.266667pt;}
.y64_c00087{bottom:259.200000pt;}
.y30_c00087{bottom:271.066667pt;}
.y63_c00087{bottom:275.200000pt;}
.y2f_c00087{bottom:283.866667pt;}
.y62_c00087{bottom:291.200000pt;}
.y2e_c00087{bottom:296.666667pt;}
.y61_c00087{bottom:306.933333pt;}
.y2d_c00087{bottom:309.466667pt;}
.y2c_c00087{bottom:322.266667pt;}
.y60_c00087{bottom:327.066667pt;}
.y2b_c00087{bottom:335.333333pt;}
.y5f_c00087{bottom:343.333333pt;}
.y2a_c00087{bottom:347.600000pt;}
.y5e_c00087{bottom:359.333333pt;}
.y29_c00087{bottom:360.666667pt;}
.y28_c00087{bottom:373.200000pt;}
.y5d_c00087{bottom:379.200000pt;}
.y27_c00087{bottom:386.266667pt;}
.y5c_c00087{bottom:395.200000pt;}
.y26_c00087{bottom:399.333333pt;}
.y25_c00087{bottom:412.000000pt;}
.y5b_c00087{bottom:418.933333pt;}
.y24_c00087{bottom:425.066667pt;}
.y5a_c00087{bottom:434.933333pt;}
.y23_c00087{bottom:437.866667pt;}
.y22_c00087{bottom:450.933333pt;}
.y59_c00087{bottom:458.266667pt;}
.y21_c00087{bottom:463.466667pt;}
.y20_c00087{bottom:476.266667pt;}
.y58_c00087{bottom:478.133333pt;}
.y1f_c00087{bottom:489.333333pt;}
.y57_c00087{bottom:494.133333pt;}
.y1e_c00087{bottom:501.866667pt;}
.y56_c00087{bottom:510.400000pt;}
.y1d_c00087{bottom:514.933333pt;}
.y55_c00087{bottom:526.400000pt;}
.y1c_c00087{bottom:540.533333pt;}
.y54_c00087{bottom:542.400000pt;}
.y53_c00087{bottom:558.400000pt;}
.y1b_c00087{bottom:563.866667pt;}
.y52_c00087{bottom:582.133333pt;}
.y1a_c00087{bottom:587.600000pt;}
.y51_c00087{bottom:598.400000pt;}
.y19_c00087{bottom:603.866667pt;}
.y50_c00087{bottom:618.800000pt;}
.y18_c00087{bottom:631.066667pt;}
.y4f_c00087{bottom:634.533333pt;}
.y17_c00087{bottom:647.066667pt;}
.y4e_c00087{bottom:654.666667pt;}
.y16_c00087{bottom:663.066667pt;}
.y4d_c00087{bottom:670.666667pt;}
.y15_c00087{bottom:679.066667pt;}
.y4c_c00087{bottom:686.666667pt;}
.y14_c00087{bottom:695.066667pt;}
.y4b_c00087{bottom:702.666667pt;}
.y13_c00087{bottom:711.066667pt;}
.y4a_c00087{bottom:721.866667pt;}
.y12_c00087{bottom:730.933333pt;}
.y49_c00087{bottom:737.866667pt;}
.y11_c00087{bottom:746.933333pt;}
.y48_c00087{bottom:753.866667pt;}
.y10_c00087{bottom:762.933333pt;}
.y47_c00087{bottom:769.866667pt;}
.yf_c00087{bottom:778.933333pt;}
.y46_c00087{bottom:785.866667pt;}
.ye_c00087{bottom:798.666667pt;}
.y45_c00087{bottom:801.866667pt;}
.yd_c00087{bottom:818.266667pt;}
.y44_c00087{bottom:821.733333pt;}
.y43_c00087{bottom:837.733333pt;}
.yc_c00087{bottom:838.400000pt;}
.yb_c00087{bottom:858.266667pt;}
.y42_c00087{bottom:861.466667pt;}
.y41_c00087{bottom:877.466667pt;}
.ya_c00087{bottom:877.733333pt;}
.y9_c00087{bottom:894.400000pt;}
.y40_c00087{bottom:896.666667pt;}
.y3f_c00087{bottom:913.333333pt;}
.y8_c00087{bottom:913.600000pt;}
.y7_c00087{bottom:930.266667pt;}
.y3e_c00087{bottom:937.600000pt;}
.y3d_c00087{bottom:944.933333pt;}
.y6_c00087{bottom:946.266667pt;}
.y3c_c00087{bottom:956.133333pt;}
.y3b_c00087{bottom:964.800000pt;}
.y5_c00087{bottom:965.066667pt;}
.y4_c00087{bottom:981.733333pt;}
.y3a_c00087{bottom:987.200000pt;}
.y39_c00087{bottom:1003.200000pt;}
.y3_c00087{bottom:1003.866667pt;}
.y1_c00087{bottom:1025.333333pt;}
.y2_c00087{bottom:1027.200000pt;}
.h8_c00087{height:48.000000pt;}
.h2_c00087{height:53.333333pt;}
.h4_c00087{height:58.666667pt;}
.h5_c00087{height:64.000000pt;}
.h6_c00087{height:69.333333pt;}
.h3_c00087{height:74.666667pt;}
.h7_c00087{height:80.000000pt;}
.h1_c00087{height:1138.666667pt;}
.h0_c00087{height:1138.880045pt;}
.w1_c00087{width:847.333333pt;}
.w0_c00087{width:847.360027pt;}
.x0_c00087{left:0.000000pt;}
.x32_c00087{left:165.733333pt;}
.x1_c00087{left:168.000000pt;}
.x5_c00087{left:169.600000pt;}
.x8a_c00087{left:170.533333pt;}
.x9d_c00087{left:172.000000pt;}
.xa6_c00087{left:172.933333pt;}
.xa_c00087{left:184.933333pt;}
.x7c_c00087{left:191.600000pt;}
.x5d_c00087{left:193.200000pt;}
.x9a_c00087{left:195.066667pt;}
.xa2_c00087{left:197.466667pt;}
.x81_c00087{left:198.400000pt;}
.x29_c00087{left:200.533333pt;}
.x1a_c00087{left:201.600000pt;}
.x24_c00087{left:202.533333pt;}
.x46_c00087{left:204.533333pt;}
.x20_c00087{left:207.066667pt;}
.x86_c00087{left:208.000000pt;}
.x77_c00087{left:211.733333pt;}
.x6d_c00087{left:212.666667pt;}
.xa0_c00087{left:214.000000pt;}
.x73_c00087{left:215.066667pt;}
.x82_c00087{left:216.266667pt;}
.xa3_c00087{left:217.333333pt;}
.x3f_c00087{left:218.266667pt;}
.x90_c00087{left:219.466667pt;}
.x17_c00087{left:220.933333pt;}
.x6_c00087{left:222.666667pt;}
.x5a_c00087{left:223.600000pt;}
.x21_c00087{left:225.600000pt;}
.x78_c00087{left:227.466667pt;}
.x93_c00087{left:229.066667pt;}
.x2f_c00087{left:230.133333pt;}
.x18_c00087{left:232.400000pt;}
.x9b_c00087{left:234.533333pt;}
.x3_c00087{left:235.866667pt;}
.xc_c00087{left:236.800000pt;}
.x66_c00087{left:238.133333pt;}
.xb_c00087{left:239.066667pt;}
.x2e_c00087{left:240.400000pt;}
.x25_c00087{left:241.600000pt;}
.x2a_c00087{left:243.466667pt;}
.x7_c00087{left:245.733333pt;}
.x47_c00087{left:247.466667pt;}
.x94_c00087{left:248.533333pt;}
.x5b_c00087{left:249.866667pt;}
.x7d_c00087{left:250.800000pt;}
.x1b_c00087{left:252.133333pt;}
.x12_c00087{left:254.000000pt;}
.x67_c00087{left:255.333333pt;}
.x22_c00087{left:259.866667pt;}
.xd_c00087{left:262.666667pt;}
.x9e_c00087{left:264.133333pt;}
.x5e_c00087{left:265.866667pt;}
.xa7_c00087{left:266.800000pt;}
.x60_c00087{left:267.866667pt;}
.x38_c00087{left:270.266667pt;}
.x30_c00087{left:271.200000pt;}
.x9c_c00087{left:273.200000pt;}
.x74_c00087{left:274.533333pt;}
.x1c_c00087{left:277.466667pt;}
.x6e_c00087{left:278.666667pt;}
.x23_c00087{left:280.000000pt;}
.x9f_c00087{left:282.400000pt;}
.x68_c00087{left:285.066667pt;}
.x33_c00087{left:286.933333pt;}
.x2b_c00087{left:289.866667pt;}
.x3b_c00087{left:290.800000pt;}
.x26_c00087{left:292.133333pt;}
.x19_c00087{left:295.466667pt;}
.x8e_c00087{left:297.600000pt;}
.x83_c00087{left:299.200000pt;}
.x91_c00087{left:300.133333pt;}
.x54_c00087{left:301.466667pt;}
.x7e_c00087{left:302.666667pt;}
.x4c_c00087{left:303.866667pt;}
.x84_c00087{left:306.533333pt;}
.x5c_c00087{left:308.400000pt;}
.x61_c00087{left:309.866667pt;}
.x40_c00087{left:312.000000pt;}
.x56_c00087{left:313.333333pt;}
.x8_c00087{left:314.800000pt;}
.xe_c00087{left:316.400000pt;}
.x48_c00087{left:318.666667pt;}
.x7f_c00087{left:321.200000pt;}
.x31_c00087{left:322.133333pt;}
.x8b_c00087{left:323.200000pt;}
.x62_c00087{left:324.533333pt;}
.x1d_c00087{left:326.400000pt;}
.x13_c00087{left:327.600000pt;}
.x50_c00087{left:329.866667pt;}
.x2c_c00087{left:332.133333pt;}
.x34_c00087{left:333.066667pt;}
.x4_c00087{left:334.133333pt;}
.x63_c00087{left:335.733333pt;}
.x4d_c00087{left:337.466667pt;}
.x87_c00087{left:339.066667pt;}
.xa8_c00087{left:341.066667pt;}
.x27_c00087{left:342.000000pt;}
.x69_c00087{left:344.933333pt;}
.x64_c00087{left:347.200000pt;}
.x80_c00087{left:348.400000pt;}
.x98_c00087{left:350.000000pt;}
.x2d_c00087{left:351.066667pt;}
.xa4_c00087{left:353.600000pt;}
.x39_c00087{left:355.733333pt;}
.x65_c00087{left:357.733333pt;}
.x6f_c00087{left:359.333333pt;}
.x3c_c00087{left:362.400000pt;}
.x6a_c00087{left:363.866667pt;}
.x88_c00087{left:365.733333pt;}
.x75_c00087{left:366.666667pt;}
.x4e_c00087{left:368.800000pt;}
.x70_c00087{left:370.266667pt;}
.x1e_c00087{left:371.200000pt;}
.x6b_c00087{left:372.133333pt;}
.x96_c00087{left:373.466667pt;}
.xa5_c00087{left:374.400000pt;}
.x51_c00087{left:375.333333pt;}
.x8c_c00087{left:376.666667pt;}
.x95_c00087{left:377.733333pt;}
.x79_c00087{left:379.866667pt;}
.xf_c00087{left:382.000000pt;}
.x35_c00087{left:383.333333pt;}
.x14_c00087{left:385.200000pt;}
.x2_c00087{left:386.933333pt;}
.x57_c00087{left:387.866667pt;}
.x52_c00087{left:389.066667pt;}
.x99_c00087{left:391.600000pt;}
.x28_c00087{left:392.533333pt;}
.xa1_c00087{left:394.266667pt;}
.x41_c00087{left:395.600000pt;}
.x58_c00087{left:396.800000pt;}
.x8f_c00087{left:399.600000pt;}
.x9_c00087{left:400.933333pt;}
.x49_c00087{left:402.533333pt;}
.x36_c00087{left:404.400000pt;}
.x15_c00087{left:405.333333pt;}
.x55_c00087{left:406.400000pt;}
.x42_c00087{left:408.666667pt;}
.x4a_c00087{left:410.266667pt;}
.x59_c00087{left:411.200000pt;}
.x10_c00087{left:413.066667pt;}
.x3d_c00087{left:416.533333pt;}
.x53_c00087{left:417.600000pt;}
.x1f_c00087{left:419.866667pt;}
.x92_c00087{left:423.600000pt;}
.x71_c00087{left:424.666667pt;}
.x4f_c00087{left:426.133333pt;}
.x7a_c00087{left:427.866667pt;}
.x43_c00087{left:430.800000pt;}
.x16_c00087{left:433.466667pt;}
.x3e_c00087{left:435.466667pt;}
.x8d_c00087{left:438.133333pt;}
.x11_c00087{left:439.600000pt;}
.x85_c00087{left:440.666667pt;}
.x72_c00087{left:441.600000pt;}
.x37_c00087{left:443.066667pt;}
.x7b_c00087{left:444.800000pt;}
.x3a_c00087{left:447.200000pt;}
.x6c_c00087{left:448.266667pt;}
.x44_c00087{left:451.866667pt;}
.x97_c00087{left:452.800000pt;}
.x76_c00087{left:454.933333pt;}
.x89_c00087{left:456.933333pt;}
.x4b_c00087{left:458.000000pt;}
.x5f_c00087{left:459.466667pt;}
.x45_c00087{left:464.000000pt;}
.xae_c00087{left:486.400000pt;}
.x102_c00087{left:487.333333pt;}
.x139_c00087{left:498.400000pt;}
.x134_c00087{left:499.733333pt;}
.xbc_c00087{left:501.333333pt;}
.xc1_c00087{left:502.400000pt;}
.x101_c00087{left:503.333333pt;}
.x13c_c00087{left:511.733333pt;}
.xab_c00087{left:518.000000pt;}
.xa9_c00087{left:519.333333pt;}
.xc8_c00087{left:520.266667pt;}
.xce_c00087{left:522.266667pt;}
.x12e_c00087{left:523.866667pt;}
.x10f_c00087{left:525.466667pt;}
.xaf_c00087{left:526.666667pt;}
.xeb_c00087{left:528.933333pt;}
.xba_c00087{left:531.733333pt;}
.x11f_c00087{left:534.133333pt;}
.x106_c00087{left:535.333333pt;}
.x12b_c00087{left:537.066667pt;}
.xf4_c00087{left:538.400000pt;}
.x103_c00087{left:540.133333pt;}
.xe8_c00087{left:542.533333pt;}
.xdc_c00087{left:544.000000pt;}
.x11c_c00087{left:545.866667pt;}
.xc9_c00087{left:548.800000pt;}
.xee_c00087{left:550.666667pt;}
.xd7_c00087{left:553.866667pt;}
.x124_c00087{left:555.200000pt;}
.xbb_c00087{left:557.066667pt;}
.x116_c00087{left:559.466667pt;}
.x135_c00087{left:560.533333pt;}
.xaa_c00087{left:561.866667pt;}
.xfd_c00087{left:565.200000pt;}
.xe2_c00087{left:567.200000pt;}
.xb6_c00087{left:568.266667pt;}
.xd8_c00087{left:569.200000pt;}
.xf5_c00087{left:571.066667pt;}
.xff_c00087{left:572.800000pt;}
.xdd_c00087{left:573.733333pt;}
.xc2_c00087{left:575.333333pt;}
.x137_c00087{left:578.000000pt;}
.xe9_c00087{left:579.333333pt;}
.x13f_c00087{left:580.933333pt;}
.xfe_c00087{left:581.866667pt;}
.xf9_c00087{left:584.000000pt;}
.xcf_c00087{left:584.933333pt;}
.xd1_c00087{left:585.866667pt;}
.x110_c00087{left:586.933333pt;}
.xb0_c00087{left:588.400000pt;}
.xef_c00087{left:589.733333pt;}
.xca_c00087{left:592.266667pt;}
.xbe_c00087{left:593.866667pt;}
.xde_c00087{left:595.866667pt;}
.x119_c00087{left:596.933333pt;}
.xd9_c00087{left:598.000000pt;}
.x107_c00087{left:599.866667pt;}
.xac_c00087{left:601.600000pt;}
.x131_c00087{left:603.600000pt;}
.xc7_c00087{left:606.800000pt;}
.x120_c00087{left:608.400000pt;}
.xfa_c00087{left:612.133333pt;}
.x10b_c00087{left:613.866667pt;}
.xbd_c00087{left:615.200000pt;}
.x104_c00087{left:616.533333pt;}
.xf0_c00087{left:617.600000pt;}
.x128_c00087{left:619.733333pt;}
.xcb_c00087{left:621.333333pt;}
.x11d_c00087{left:622.933333pt;}
.x123_c00087{left:624.400000pt;}
.x13a_c00087{left:627.333333pt;}
.x13d_c00087{left:630.133333pt;}
.x100_c00087{left:632.000000pt;}
.x11a_c00087{left:633.733333pt;}
.x129_c00087{left:636.000000pt;}
.x111_c00087{left:637.200000pt;}
.xc3_c00087{left:641.600000pt;}
.xb1_c00087{left:643.466667pt;}
.x10c_c00087{left:644.533333pt;}
.xad_c00087{left:645.466667pt;}
.xec_c00087{left:646.400000pt;}
.xda_c00087{left:649.200000pt;}
.xe3_c00087{left:650.400000pt;}
.x12c_c00087{left:651.866667pt;}
.x112_c00087{left:653.866667pt;}
.xb2_c00087{left:654.933333pt;}
.xbf_c00087{left:656.533333pt;}
.xf1_c00087{left:657.866667pt;}
.xd2_c00087{left:662.000000pt;}
.x108_c00087{left:662.933333pt;}
.xf6_c00087{left:663.866667pt;}
.x132_c00087{left:665.600000pt;}
.xfb_c00087{left:669.466667pt;}
.xea_c00087{left:670.800000pt;}
.xdf_c00087{left:674.000000pt;}
.x117_c00087{left:675.333333pt;}
.x140_c00087{left:676.666667pt;}
.xd3_c00087{left:677.733333pt;}
.x13b_c00087{left:679.466667pt;}
.xe4_c00087{left:683.066667pt;}
.x125_c00087{left:684.400000pt;}
.xf2_c00087{left:686.000000pt;}
.xd0_c00087{left:687.333333pt;}
.x13e_c00087{left:688.400000pt;}
.xfc_c00087{left:690.266667pt;}
.xc4_c00087{left:692.133333pt;}
.xb3_c00087{left:693.066667pt;}
.x12f_c00087{left:695.066667pt;}
.xe5_c00087{left:697.466667pt;}
.x11e_c00087{left:698.400000pt;}
.x133_c00087{left:700.400000pt;}
.x121_c00087{left:701.866667pt;}
.x130_c00087{left:704.000000pt;}
.x113_c00087{left:705.333333pt;}
.x12d_c00087{left:706.266667pt;}
.x136_c00087{left:707.333333pt;}
.xb4_c00087{left:711.333333pt;}
.x10d_c00087{left:713.333333pt;}
.x105_c00087{left:714.533333pt;}
.x118_c00087{left:716.266667pt;}
.xf3_c00087{left:718.666667pt;}
.x11b_c00087{left:719.866667pt;}
.xcc_c00087{left:721.866667pt;}
.x12a_c00087{left:724.933333pt;}
.x122_c00087{left:725.866667pt;}
.x114_c00087{left:727.066667pt;}
.x126_c00087{left:728.933333pt;}
.xe6_c00087{left:731.733333pt;}
.x10e_c00087{left:736.000000pt;}
.xdb_c00087{left:737.200000pt;}
.xe0_c00087{left:738.266667pt;}
.xc5_c00087{left:740.133333pt;}
.xd4_c00087{left:741.733333pt;}
.xf7_c00087{left:744.933333pt;}
.x109_c00087{left:746.800000pt;}
.xd5_c00087{left:750.400000pt;}
.xb5_c00087{left:752.266667pt;}
.xcd_c00087{left:753.866667pt;}
.xc0_c00087{left:757.066667pt;}
.x115_c00087{left:758.133333pt;}
.xb7_c00087{left:759.200000pt;}
.xe7_c00087{left:760.800000pt;}
.xed_c00087{left:761.866667pt;}
.x10a_c00087{left:763.733333pt;}
.xe1_c00087{left:766.800000pt;}
.xf8_c00087{left:768.000000pt;}
.xd6_c00087{left:768.933333pt;}
.x138_c00087{left:771.333333pt;}
.xb8_c00087{left:772.666667pt;}
.xc6_c00087{left:775.066667pt;}
.xb9_c00087{left:779.733333pt;}
.x127_c00087{left:781.733333pt;}
}





/* 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_c00088 {
    display:none;
  }
  .loading-indicator_c00088.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00088 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_c00088 { 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_c00088" -> "#page-container .classname_c00088")
 */
.pf_c00088 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00088 { /* 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_c00088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00088 { /* 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_c00088 { /* 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_c00088 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00088 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00088 {overflow:visible;}
  }
}
.c_c00088 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00088 { /* 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_c00088:after { /* webkit #35443 */
  content: '';
}
.t_c00088:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00088 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 */
}
.__c00088 { /* 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_c00088 { /* info for Javascript */
  display:none;
}
.l_c00088 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00088 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00088 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00088: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_c00088 {
    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_c00088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00088.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_c00088 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00088;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00088{transform:matrix(0.014000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014000,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(0.028250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028250,0.000000,0.000000,0.250000,0,0);}
.md0_c00088{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00088{transform:matrix(0.063250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063250,0.000000,0.000000,0.250000,0,0);}
.mce_c00088{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00088{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00088{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00088{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00088{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00088{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.me1_c00088{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m26_c00088{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00088{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00088{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.md4_c00088{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m42_c00088{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00088{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00088{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00088{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00088{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m117_c00088{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.md1_c00088{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m110_c00088{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00088{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00088{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.maa_c00088{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m111_c00088{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md2_c00088{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00088{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mab_c00088{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma_c00088{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m32_c00088{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00088{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00088{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m66_c00088{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mba_c00088{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m28_c00088{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00088{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m79_c00088{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mee_c00088{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00088{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00088{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00088{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m60_c00088{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m8_c00088{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00088{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00088{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m27_c00088{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00088{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m93_c00088{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00088{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00088{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md_c00088{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00088{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m36_c00088{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m61_c00088{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m64_c00088{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mef_c00088{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m58_c00088{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00088{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m20_c00088{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m103_c00088{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m24_c00088{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00088{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00088{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00088{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m44_c00088{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9_c00088{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m29_c00088{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.me8_c00088{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00088{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.md7_c00088{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m21_c00088{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me3_c00088{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00088{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4_c00088{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m25_c00088{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m55_c00088{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00088{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m45_c00088{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m31_c00088{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m101_c00088{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb_c00088{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m34_c00088{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00088{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6_c00088{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00088{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m97_c00088{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00088{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00088{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m59_c00088{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m14_c00088{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00088{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m33_c00088{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me9_c00088{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m54_c00088{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00088{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m52_c00088{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m108_c00088{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00088{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00088{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00088{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00088{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00088{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m57_c00088{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m13_c00088{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me6_c00088{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mff_c00088{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m17_c00088{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mec_c00088{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m56_c00088{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00088{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00088{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m40_c00088{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m23_c00088{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m35_c00088{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00088{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m47_c00088{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m67_c00088{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m37_c00088{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m7_c00088{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m62_c00088{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00088{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m94_c00088{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00088{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00088{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.md8_c00088{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00088{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m12_c00088{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00088{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00088{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m39_c00088{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00088{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m16_c00088{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m38_c00088{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m41_c00088{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mea_c00088{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mad_c00088{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mf_c00088{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00088{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m68_c00088{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m75_c00088{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00088{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00088{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00088{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00088{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m89_c00088{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m10_c00088{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mda_c00088{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m5_c00088{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m69_c00088{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m105_c00088{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00088{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00088{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m72_c00088{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m96_c00088{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00088{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m81_c00088{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00088{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mde_c00088{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md9_c00088{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m51_c00088{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m95_c00088{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me0_c00088{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m73_c00088{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00088{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m100_c00088{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00088{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00088{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00088{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00088{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m18_c00088{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00088{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m99_c00088{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.me4_c00088{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me_c00088{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m19_c00088{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00088{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00088{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m11_c00088{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m104_c00088{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00088{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mc_c00088{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m71_c00088{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00088{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00088{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00088{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m112_c00088{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00088{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m80_c00088{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m102_c00088{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m15_c00088{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m48_c00088{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.meb_c00088{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00088{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m30_c00088{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00088{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00088{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00088{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m46_c00088{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m74_c00088{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m77_c00088{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me5_c00088{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00088{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00088{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m65_c00088{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00088{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m50_c00088{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00088{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00088{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00088{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m116_c00088{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m107_c00088{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m88_c00088{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00088{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m106_c00088{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m53_c00088{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00088{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00088{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00088{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m70_c00088{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md6_c00088{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00088{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00088{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00088{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00088{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m113_c00088{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00088{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m78_c00088{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mca_c00088{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00088{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m109_c00088{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00088{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m22_c00088{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.maf_c00088{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m49_c00088{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00088{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m83_c00088{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00088{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.med_c00088{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m87_c00088{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m98_c00088{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md3_c00088{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m115_c00088{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m63_c00088{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m84_c00088{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00088{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m43_c00088{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me7_c00088{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00088{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m82_c00088{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00088{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00088{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00088{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.me2_c00088{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00088{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mac_c00088{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00088{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mae_c00088{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00088{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.md5_c00088{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m118_c00088{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m85_c00088{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00088{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m92_c00088{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m86_c00088{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00088{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m91_c00088{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00088{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00088{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00088{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00088{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m90_c00088{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m119_c00088{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00088{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00088{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c00088{transform:matrix(0.395250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00088{transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);}
.m0_c00088{transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);}
.m76_c00088{transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00088{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00088{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m114_c00088{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00088{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls0_c00088{letter-spacing:0.000000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{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__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00088{word-spacing:-8.048780px;}
.ws3_c00088{word-spacing:-7.051282px;}
.ws1_c00088{word-spacing:-3.229299px;}
.wsa_c00088{word-spacing:0.000000px;}
.ws2_c00088{word-spacing:4.444444px;}
.ws9_c00088{word-spacing:6.206304px;}
.ws7_c00088{word-spacing:16.675978px;}
.ws8_c00088{word-spacing:19.714286px;}
.ws4_c00088{word-spacing:21.326148px;}
.ws5_c00088{word-spacing:60.906219px;}
.ws6_c00088{word-spacing:167.750000px;}
.fc0_c00088{color:transparent;}
.fs5_c00088{font-size:36.000000px;}
.fs4_c00088{font-size:54.000000px;}
.fs3_c00088{font-size:60.000000px;}
.fs2_c00088{font-size:66.000000px;}
.fs1_c00088{font-size:72.000000px;}
.fs0_c00088{font-size:102.000000px;}
.y0_c00088{bottom:0.000000px;}
.y6c_c00088{bottom:71.700000px;}
.y6b_c00088{bottom:166.650000px;}
.y35_c00088{bottom:183.300000px;}
.y6a_c00088{bottom:185.700000px;}
.y34_c00088{bottom:198.600000px;}
.y69_c00088{bottom:203.400000px;}
.y33_c00088{bottom:211.950000px;}
.y68_c00088{bottom:221.400000px;}
.y32_c00088{bottom:226.050000px;}
.y67_c00088{bottom:239.100000px;}
.y31_c00088{bottom:240.900000px;}
.y30_c00088{bottom:258.150000px;}
.y66_c00088{bottom:261.300000px;}
.y2f_c00088{bottom:276.900000px;}
.y65_c00088{bottom:291.600000px;}
.y2e_c00088{bottom:294.900000px;}
.y64_c00088{bottom:310.350000px;}
.y2d_c00088{bottom:315.000000px;}
.y2c_c00088{bottom:334.500000px;}
.y63_c00088{bottom:336.300000px;}
.y2b_c00088{bottom:352.500000px;}
.y62_c00088{bottom:355.350000px;}
.y2a_c00088{bottom:370.500000px;}
.y61_c00088{bottom:376.200000px;}
.y29_c00088{bottom:388.500000px;}
.y60_c00088{bottom:398.850000px;}
.y28_c00088{bottom:406.500000px;}
.y5f_c00088{bottom:417.150000px;}
.y27_c00088{bottom:427.200000px;}
.y5e_c00088{bottom:435.150000px;}
.y26_c00088{bottom:446.700000px;}
.y5d_c00088{bottom:452.850000px;}
.y5c_c00088{bottom:470.850000px;}
.y25_c00088{bottom:476.250000px;}
.y5b_c00088{bottom:488.850000px;}
.y24_c00088{bottom:495.000000px;}
.y5a_c00088{bottom:506.850000px;}
.y23_c00088{bottom:512.700000px;}
.y59_c00088{bottom:524.850000px;}
.y22_c00088{bottom:530.700000px;}
.y58_c00088{bottom:547.050000px;}
.y21_c00088{bottom:548.700000px;}
.y57_c00088{bottom:565.050000px;}
.y20_c00088{bottom:566.700000px;}
.y56_c00088{bottom:583.350000px;}
.y1f_c00088{bottom:588.300000px;}
.y55_c00088{bottom:601.050000px;}
.y1e_c00088{bottom:607.350000px;}
.y54_c00088{bottom:619.050000px;}
.y1d_c00088{bottom:628.950000px;}
.y53_c00088{bottom:637.050000px;}
.y1c_c00088{bottom:650.850000px;}
.y52_c00088{bottom:654.750000px;}
.y1b_c00088{bottom:669.600000px;}
.y51_c00088{bottom:672.750000px;}
.y1a_c00088{bottom:687.600000px;}
.y50_c00088{bottom:690.750000px;}
.y19_c00088{bottom:705.600000px;}
.y4f_c00088{bottom:708.450000px;}
.y18_c00088{bottom:723.600000px;}
.y4e_c00088{bottom:726.450000px;}
.y17_c00088{bottom:741.300000px;}
.y4d_c00088{bottom:744.750000px;}
.y16_c00088{bottom:759.300000px;}
.y4c_c00088{bottom:762.750000px;}
.y15_c00088{bottom:777.300000px;}
.y4b_c00088{bottom:780.450000px;}
.y14_c00088{bottom:795.300000px;}
.y4a_c00088{bottom:798.750000px;}
.y13_c00088{bottom:813.600000px;}
.y49_c00088{bottom:816.750000px;}
.y12_c00088{bottom:831.300000px;}
.y48_c00088{bottom:834.450000px;}
.y11_c00088{bottom:849.300000px;}
.y47_c00088{bottom:852.450000px;}
.y10_c00088{bottom:867.000000px;}
.y46_c00088{bottom:870.450000px;}
.yf_c00088{bottom:885.000000px;}
.y45_c00088{bottom:888.450000px;}
.ye_c00088{bottom:903.300000px;}
.y44_c00088{bottom:906.150000px;}
.yd_c00088{bottom:920.550000px;}
.y43_c00088{bottom:923.700000px;}
.yc_c00088{bottom:938.550000px;}
.y42_c00088{bottom:948.000000px;}
.yb_c00088{bottom:959.400000px;}
.y41_c00088{bottom:963.900000px;}
.ya_c00088{bottom:974.400000px;}
.y40_c00088{bottom:979.050000px;}
.y9_c00088{bottom:992.400000px;}
.y3f_c00088{bottom:993.150000px;}
.y3e_c00088{bottom:1007.550000px;}
.y8_c00088{bottom:1010.100000px;}
.y3d_c00088{bottom:1021.650000px;}
.y7_c00088{bottom:1028.400000px;}
.y3c_c00088{bottom:1035.000000px;}
.y6_c00088{bottom:1046.400000px;}
.y3b_c00088{bottom:1050.900000px;}
.y5_c00088{bottom:1064.100000px;}
.y3a_c00088{bottom:1065.300000px;}
.y39_c00088{bottom:1079.400000px;}
.y4_c00088{bottom:1082.100000px;}
.y38_c00088{bottom:1094.100000px;}
.y3_c00088{bottom:1099.800000px;}
.y37_c00088{bottom:1108.500000px;}
.y2_c00088{bottom:1118.100000px;}
.y36_c00088{bottom:1125.000000px;}
.y1_c00088{bottom:1146.600000px;}
.h7_c00088{height:36.000000px;}
.h6_c00088{height:54.000000px;}
.h5_c00088{height:60.000000px;}
.h4_c00088{height:66.000000px;}
.h3_c00088{height:72.000000px;}
.h2_c00088{height:102.000000px;}
.h0_c00088{height:1271.160094px;}
.h1_c00088{height:1271.250000px;}
.w1_c00088{width:953.250000px;}
.w0_c00088{width:953.280030px;}
.x0_c00088{left:0.000000px;}
.x8a_c00088{left:82.050000px;}
.x9a_c00088{left:83.850000px;}
.x77_c00088{left:84.900000px;}
.x41_c00088{left:93.600000px;}
.x8b_c00088{left:97.500000px;}
.x9f_c00088{left:101.250000px;}
.x5_c00088{left:102.300000px;}
.xd_c00088{left:104.250000px;}
.x45_c00088{left:105.300000px;}
.x59_c00088{left:106.950000px;}
.x93_c00088{left:109.650000px;}
.x78_c00088{left:116.250000px;}
.xa1_c00088{left:118.050000px;}
.xa0_c00088{left:120.150000px;}
.x2d_c00088{left:124.650000px;}
.x7d_c00088{left:126.000000px;}
.x22_c00088{left:127.350000px;}
.x4b_c00088{left:131.100000px;}
.x46_c00088{left:132.600000px;}
.x6_c00088{left:135.000000px;}
.x96_c00088{left:136.800000px;}
.x61_c00088{left:137.850000px;}
.x98_c00088{left:139.650000px;}
.xe_c00088{left:141.000000px;}
.x67_c00088{left:142.200000px;}
.x1a_c00088{left:143.550000px;}
.x3b_c00088{left:144.750000px;}
.x91_c00088{left:147.300000px;}
.x8f_c00088{left:148.500000px;}
.x32_c00088{left:149.700000px;}
.x6e_c00088{left:151.350000px;}
.x50_c00088{left:153.450000px;}
.x5d_c00088{left:155.400000px;}
.x7_c00088{left:156.900000px;}
.x8c_c00088{left:160.200000px;}
.x7c_c00088{left:162.600000px;}
.x23_c00088{left:164.850000px;}
.x14_c00088{left:167.250000px;}
.x1b_c00088{left:169.050000px;}
.x71_c00088{left:171.000000px;}
.x3c_c00088{left:173.250000px;}
.x5a_c00088{left:175.050000px;}
.x47_c00088{left:176.550000px;}
.x4c_c00088{left:177.600000px;}
.x80_c00088{left:178.650000px;}
.x75_c00088{left:179.850000px;}
.x82_c00088{left:181.350000px;}
.x69_c00088{left:183.750000px;}
.x53_c00088{left:184.800000px;}
.x33_c00088{left:187.500000px;}
.x24_c00088{left:189.300000px;}
.x9b_c00088{left:190.800000px;}
.x51_c00088{left:194.550000px;}
.x65_c00088{left:196.050000px;}
.x48_c00088{left:199.200000px;}
.x15_c00088{left:201.450000px;}
.x83_c00088{left:202.650000px;}
.x2e_c00088{left:205.650000px;}
.xf_c00088{left:207.600000px;}
.x90_c00088{left:209.700000px;}
.x8_c00088{left:211.200000px;}
.x99_c00088{left:213.900000px;}
.x8d_c00088{left:215.250000px;}
.x54_c00088{left:217.500000px;}
.x85_c00088{left:219.000000px;}
.x42_c00088{left:222.300000px;}
.x1c_c00088{left:223.350000px;}
.x5e_c00088{left:225.300000px;}
.x38_c00088{left:228.600000px;}
.x9c_c00088{left:230.700000px;}
.x16_c00088{left:232.050000px;}
.x72_c00088{left:233.550000px;}
.x6a_c00088{left:238.050000px;}
.x2f_c00088{left:239.550000px;}
.x81_c00088{left:241.650000px;}
.x5f_c00088{left:245.850000px;}
.x57_c00088{left:247.200000px;}
.x88_c00088{left:248.850000px;}
.x94_c00088{left:250.050000px;}
.x10_c00088{left:251.850000px;}
.x4d_c00088{left:252.900000px;}
.x7e_c00088{left:254.850000px;}
.x3d_c00088{left:256.350000px;}
.x97_c00088{left:257.400000px;}
.x25_c00088{left:258.450000px;}
.x73_c00088{left:260.550000px;}
.x79_c00088{left:263.250000px;}
.x34_c00088{left:264.900000px;}
.x9_c00088{left:267.300000px;}
.x43_c00088{left:268.800000px;}
.x66_c00088{left:270.150000px;}
.x6f_c00088{left:273.000000px;}
.x26_c00088{left:274.650000px;}
.x49_c00088{left:277.950000px;}
.x52_c00088{left:279.900000px;}
.x17_c00088{left:282.150000px;}
.x74_c00088{left:283.200000px;}
.x35_c00088{left:286.500000px;}
.x70_c00088{left:288.900000px;}
.x62_c00088{left:290.400000px;}
.x1d_c00088{left:291.450000px;}
.x39_c00088{left:293.100000px;}
.x76_c00088{left:294.300000px;}
.x86_c00088{left:295.650000px;}
.x55_c00088{left:297.150000px;}
.x27_c00088{left:299.100000px;}
.x1e_c00088{left:300.750000px;}
.x3e_c00088{left:302.850000px;}
.x28_c00088{left:308.100000px;}
.x95_c00088{left:309.450000px;}
.x18_c00088{left:310.650000px;}
.x7a_c00088{left:312.450000px;}
.x30_c00088{left:315.450000px;}
.x11_c00088{left:321.300000px;}
.x29_c00088{left:323.250000px;}
.x63_c00088{left:326.400000px;}
.xa_c00088{left:327.450000px;}
.x5b_c00088{left:333.150000px;}
.x1_c00088{left:335.850000px;}
.x3f_c00088{left:337.050000px;}
.x9d_c00088{left:338.100000px;}
.x1f_c00088{left:341.100000px;}
.x44_c00088{left:343.200000px;}
.x2a_c00088{left:344.550000px;}
.x9e_c00088{left:346.800000px;}
.x12_c00088{left:348.600000px;}
.x19_c00088{left:350.250000px;}
.xb_c00088{left:353.400000px;}
.x58_c00088{left:355.500000px;}
.x20_c00088{left:358.350000px;}
.x3a_c00088{left:360.150000px;}
.x6d_c00088{left:364.500000px;}
.x36_c00088{left:366.150000px;}
.x2b_c00088{left:367.650000px;}
.xc_c00088{left:369.900000px;}
.x92_c00088{left:372.750000px;}
.x6b_c00088{left:374.100000px;}
.x40_c00088{left:375.600000px;}
.x4e_c00088{left:377.400000px;}
.x68_c00088{left:381.900000px;}
.x7f_c00088{left:385.200000px;}
.x2c_c00088{left:389.250000px;}
.x13_c00088{left:391.500000px;}
.x56_c00088{left:392.700000px;}
.x87_c00088{left:394.650000px;}
.x8e_c00088{left:396.450000px;}
.x5c_c00088{left:397.650000px;}
.x60_c00088{left:399.600000px;}
.x31_c00088{left:403.050000px;}
.x84_c00088{left:405.150000px;}
.x6c_c00088{left:406.200000px;}
.x4f_c00088{left:408.000000px;}
.x4a_c00088{left:409.050000px;}
.x21_c00088{left:410.250000px;}
.x37_c00088{left:411.450000px;}
.x7b_c00088{left:413.550000px;}
.x64_c00088{left:414.900000px;}
.x89_c00088{left:416.550000px;}
.xc7_c00088{left:446.400000px;}
.x134_c00088{left:448.500000px;}
.x13a_c00088{left:449.700000px;}
.xaa_c00088{left:460.200000px;}
.xcb_c00088{left:463.650000px;}
.xda_c00088{left:464.700000px;}
.x109_c00088{left:465.750000px;}
.x139_c00088{left:467.550000px;}
.x13e_c00088{left:469.350000px;}
.x13d_c00088{left:470.550000px;}
.xc1_c00088{left:474.450000px;}
.xa2_c00088{left:475.500000px;}
.x114_c00088{left:480.450000px;}
.xfc_c00088{left:482.100000px;}
.xf0_c00088{left:483.300000px;}
.xf5_c00088{left:485.850000px;}
.x127_c00088{left:487.950000px;}
.xcc_c00088{left:490.950000px;}
.x110_c00088{left:492.900000px;}
.x11b_c00088{left:494.550000px;}
.xab_c00088{left:496.500000px;}
.x120_c00088{left:498.300000px;}
.xeb_c00088{left:502.500000px;}
.xb8_c00088{left:504.600000px;}
.xe1_c00088{left:506.700000px;}
.x103_c00088{left:508.500000px;}
.x11a_c00088{left:509.550000px;}
.xdb_c00088{left:511.500000px;}
.x10a_c00088{left:513.600000px;}
.x128_c00088{left:515.250000px;}
.xac_c00088{left:516.600000px;}
.x11e_c00088{left:518.250000px;}
.xb2_c00088{left:519.300000px;}
.xf1_c00088{left:520.350000px;}
.xb9_c00088{left:522.900000px;}
.xd2_c00088{left:525.150000px;}
.xf6_c00088{left:526.950000px;}
.x104_c00088{left:529.050000px;}
.x111_c00088{left:531.000000px;}
.xc8_c00088{left:533.550000px;}
.x115_c00088{left:535.950000px;}
.xd5_c00088{left:537.000000px;}
.xcd_c00088{left:538.050000px;}
.x135_c00088{left:540.300000px;}
.xa3_c00088{left:542.850000px;}
.xf7_c00088{left:544.200000px;}
.x129_c00088{left:545.550000px;}
.xec_c00088{left:547.800000px;}
.xb3_c00088{left:549.900000px;}
.xad_c00088{left:551.850000px;}
.x116_c00088{left:553.650000px;}
.x138_c00088{left:556.950000px;}
.x125_c00088{left:558.750000px;}
.xe5_c00088{left:560.850000px;}
.xa4_c00088{left:563.400000px;}
.xe9_c00088{left:565.500000px;}
.xd3_c00088{left:566.550000px;}
.xf2_c00088{left:567.900000px;}
.x105_c00088{left:569.700000px;}
.x10b_c00088{left:571.500000px;}
.xfd_c00088{left:573.600000px;}
.xba_c00088{left:576.150000px;}
.xae_c00088{left:577.350000px;}
.xb4_c00088{left:578.400000px;}
.x10d_c00088{left:580.650000px;}
.xea_c00088{left:582.750000px;}
.xed_c00088{left:585.900000px;}
.x132_c00088{left:590.100000px;}
.x2_c00088{left:592.200000px;}
.x11c_c00088{left:593.850000px;}
.x136_c00088{left:596.100000px;}
.xa5_c00088{left:598.650000px;}
.xe6_c00088{left:600.450000px;}
.xbb_c00088{left:602.400000px;}
.xee_c00088{left:605.400000px;}
.xe2_c00088{left:606.900000px;}
.xb5_c00088{left:607.950000px;}
.x122_c00088{left:609.000000px;}
.xfe_c00088{left:610.350000px;}
.x133_c00088{left:614.250000px;}
.xdc_c00088{left:618.750000px;}
.xf8_c00088{left:619.800000px;}
.xa6_c00088{left:621.000000px;}
.x126_c00088{left:623.250000px;}
.xce_c00088{left:624.450000px;}
.x10e_c00088{left:625.650000px;}
.xd6_c00088{left:626.700000px;}
.x11d_c00088{left:628.050000px;}
.x106_c00088{left:629.100000px;}
.xf9_c00088{left:630.900000px;}
.xff_c00088{left:633.450000px;}
.xc2_c00088{left:634.650000px;}
.x117_c00088{left:637.950000px;}
.x124_c00088{left:639.300000px;}
.xcf_c00088{left:640.950000px;}
.xc3_c00088{left:642.150000px;}
.xdd_c00088{left:644.250000px;}
.xb6_c00088{left:647.850000px;}
.xbc_c00088{left:649.950000px;}
.xe3_c00088{left:652.200000px;}
.xd7_c00088{left:654.750000px;}
.xc4_c00088{left:657.000000px;}
.xde_c00088{left:660.750000px;}
.xc9_c00088{left:663.150000px;}
.xc5_c00088{left:664.500000px;}
.xb7_c00088{left:666.900000px;}
.x118_c00088{left:668.250000px;}
.xfa_c00088{left:672.600000px;}
.xd0_c00088{left:674.400000px;}
.xe4_c00088{left:675.900000px;}
.x100_c00088{left:676.950000px;}
.x10c_c00088{left:678.000000px;}
.x112_c00088{left:679.200000px;}
.x12a_c00088{left:681.300000px;}
.xa7_c00088{left:685.050000px;}
.xf3_c00088{left:686.700000px;}
.xe7_c00088{left:688.950000px;}
.xd8_c00088{left:690.000000px;}
.x13b_c00088{left:691.950000px;}
.x101_c00088{left:697.500000px;}
.x121_c00088{left:699.300000px;}
.x107_c00088{left:703.350000px;}
.xa8_c00088{left:709.200000px;}
.xef_c00088{left:710.550000px;}
.x12d_c00088{left:711.750000px;}
.xbf_c00088{left:712.800000px;}
.xaf_c00088{left:713.850000px;}
.xbd_c00088{left:715.350000px;}
.x11f_c00088{left:716.400000px;}
.x12b_c00088{left:717.600000px;}
.x137_c00088{left:718.650000px;}
.x130_c00088{left:720.000000px;}
.xdf_c00088{left:721.200000px;}
.x102_c00088{left:724.200000px;}
.xfb_c00088{left:726.150000px;}
.xe8_c00088{left:727.800000px;}
.xf4_c00088{left:730.950000px;}
.x113_c00088{left:733.500000px;}
.xc6_c00088{left:735.600000px;}
.x3_c00088{left:736.950000px;}
.xd4_c00088{left:738.600000px;}
.x12e_c00088{left:740.250000px;}
.xc0_c00088{left:741.900000px;}
.xb0_c00088{left:742.950000px;}
.xbe_c00088{left:744.150000px;}
.x12c_c00088{left:746.400000px;}
.xd9_c00088{left:751.950000px;}
.x131_c00088{left:753.150000px;}
.xe0_c00088{left:754.350000px;}
.x10f_c00088{left:755.700000px;}
.x13c_c00088{left:757.050000px;}
.x123_c00088{left:758.400000px;}
.x119_c00088{left:760.050000px;}
.xca_c00088{left:762.750000px;}
.x108_c00088{left:764.250000px;}
.x4_c00088{left:767.850000px;}
.xa9_c00088{left:770.850000px;}
.xb1_c00088{left:772.500000px;}
.x12f_c00088{left:777.900000px;}
.xd1_c00088{left:779.100000px;}
.x140_c00088{left:940.350000px;}
.x13f_c00088{left:944.700000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:-7.154472pt;}
.ws3_c00088{word-spacing:-6.267806pt;}
.ws1_c00088{word-spacing:-2.870488pt;}
.wsa_c00088{word-spacing:0.000000pt;}
.ws2_c00088{word-spacing:3.950617pt;}
.ws9_c00088{word-spacing:5.516714pt;}
.ws7_c00088{word-spacing:14.823091pt;}
.ws8_c00088{word-spacing:17.523810pt;}
.ws4_c00088{word-spacing:18.956576pt;}
.ws5_c00088{word-spacing:54.138861pt;}
.ws6_c00088{word-spacing:149.111111pt;}
.fs5_c00088{font-size:32.000000pt;}
.fs4_c00088{font-size:48.000000pt;}
.fs3_c00088{font-size:53.333333pt;}
.fs2_c00088{font-size:58.666667pt;}
.fs1_c00088{font-size:64.000000pt;}
.fs0_c00088{font-size:90.666667pt;}
.y0_c00088{bottom:0.000000pt;}
.y6c_c00088{bottom:63.733333pt;}
.y6b_c00088{bottom:148.133333pt;}
.y35_c00088{bottom:162.933333pt;}
.y6a_c00088{bottom:165.066667pt;}
.y34_c00088{bottom:176.533333pt;}
.y69_c00088{bottom:180.800000pt;}
.y33_c00088{bottom:188.400000pt;}
.y68_c00088{bottom:196.800000pt;}
.y32_c00088{bottom:200.933333pt;}
.y67_c00088{bottom:212.533333pt;}
.y31_c00088{bottom:214.133333pt;}
.y30_c00088{bottom:229.466667pt;}
.y66_c00088{bottom:232.266667pt;}
.y2f_c00088{bottom:246.133333pt;}
.y65_c00088{bottom:259.200000pt;}
.y2e_c00088{bottom:262.133333pt;}
.y64_c00088{bottom:275.866667pt;}
.y2d_c00088{bottom:280.000000pt;}
.y2c_c00088{bottom:297.333333pt;}
.y63_c00088{bottom:298.933333pt;}
.y2b_c00088{bottom:313.333333pt;}
.y62_c00088{bottom:315.866667pt;}
.y2a_c00088{bottom:329.333333pt;}
.y61_c00088{bottom:334.400000pt;}
.y29_c00088{bottom:345.333333pt;}
.y60_c00088{bottom:354.533333pt;}
.y28_c00088{bottom:361.333333pt;}
.y5f_c00088{bottom:370.800000pt;}
.y27_c00088{bottom:379.733333pt;}
.y5e_c00088{bottom:386.800000pt;}
.y26_c00088{bottom:397.066667pt;}
.y5d_c00088{bottom:402.533333pt;}
.y5c_c00088{bottom:418.533333pt;}
.y25_c00088{bottom:423.333333pt;}
.y5b_c00088{bottom:434.533333pt;}
.y24_c00088{bottom:440.000000pt;}
.y5a_c00088{bottom:450.533333pt;}
.y23_c00088{bottom:455.733333pt;}
.y59_c00088{bottom:466.533333pt;}
.y22_c00088{bottom:471.733333pt;}
.y58_c00088{bottom:486.266667pt;}
.y21_c00088{bottom:487.733333pt;}
.y57_c00088{bottom:502.266667pt;}
.y20_c00088{bottom:503.733333pt;}
.y56_c00088{bottom:518.533333pt;}
.y1f_c00088{bottom:522.933333pt;}
.y55_c00088{bottom:534.266667pt;}
.y1e_c00088{bottom:539.866667pt;}
.y54_c00088{bottom:550.266667pt;}
.y1d_c00088{bottom:559.066667pt;}
.y53_c00088{bottom:566.266667pt;}
.y1c_c00088{bottom:578.533333pt;}
.y52_c00088{bottom:582.000000pt;}
.y1b_c00088{bottom:595.200000pt;}
.y51_c00088{bottom:598.000000pt;}
.y1a_c00088{bottom:611.200000pt;}
.y50_c00088{bottom:614.000000pt;}
.y19_c00088{bottom:627.200000pt;}
.y4f_c00088{bottom:629.733333pt;}
.y18_c00088{bottom:643.200000pt;}
.y4e_c00088{bottom:645.733333pt;}
.y17_c00088{bottom:658.933333pt;}
.y4d_c00088{bottom:662.000000pt;}
.y16_c00088{bottom:674.933333pt;}
.y4c_c00088{bottom:678.000000pt;}
.y15_c00088{bottom:690.933333pt;}
.y4b_c00088{bottom:693.733333pt;}
.y14_c00088{bottom:706.933333pt;}
.y4a_c00088{bottom:710.000000pt;}
.y13_c00088{bottom:723.200000pt;}
.y49_c00088{bottom:726.000000pt;}
.y12_c00088{bottom:738.933333pt;}
.y48_c00088{bottom:741.733333pt;}
.y11_c00088{bottom:754.933333pt;}
.y47_c00088{bottom:757.733333pt;}
.y10_c00088{bottom:770.666667pt;}
.y46_c00088{bottom:773.733333pt;}
.yf_c00088{bottom:786.666667pt;}
.y45_c00088{bottom:789.733333pt;}
.ye_c00088{bottom:802.933333pt;}
.y44_c00088{bottom:805.466667pt;}
.yd_c00088{bottom:818.266667pt;}
.y43_c00088{bottom:821.066667pt;}
.yc_c00088{bottom:834.266667pt;}
.y42_c00088{bottom:842.666667pt;}
.yb_c00088{bottom:852.800000pt;}
.y41_c00088{bottom:856.800000pt;}
.ya_c00088{bottom:866.133333pt;}
.y40_c00088{bottom:870.266667pt;}
.y9_c00088{bottom:882.133333pt;}
.y3f_c00088{bottom:882.800000pt;}
.y3e_c00088{bottom:895.600000pt;}
.y8_c00088{bottom:897.866667pt;}
.y3d_c00088{bottom:908.133333pt;}
.y7_c00088{bottom:914.133333pt;}
.y3c_c00088{bottom:920.000000pt;}
.y6_c00088{bottom:930.133333pt;}
.y3b_c00088{bottom:934.133333pt;}
.y5_c00088{bottom:945.866667pt;}
.y3a_c00088{bottom:946.933333pt;}
.y39_c00088{bottom:959.466667pt;}
.y4_c00088{bottom:961.866667pt;}
.y38_c00088{bottom:972.533333pt;}
.y3_c00088{bottom:977.600000pt;}
.y37_c00088{bottom:985.333333pt;}
.y2_c00088{bottom:993.866667pt;}
.y36_c00088{bottom:1000.000000pt;}
.y1_c00088{bottom:1019.200000pt;}
.h7_c00088{height:32.000000pt;}
.h6_c00088{height:48.000000pt;}
.h5_c00088{height:53.333333pt;}
.h4_c00088{height:58.666667pt;}
.h3_c00088{height:64.000000pt;}
.h2_c00088{height:90.666667pt;}
.h0_c00088{height:1129.920084pt;}
.h1_c00088{height:1130.000000pt;}
.w1_c00088{width:847.333333pt;}
.w0_c00088{width:847.360027pt;}
.x0_c00088{left:0.000000pt;}
.x8a_c00088{left:72.933333pt;}
.x9a_c00088{left:74.533333pt;}
.x77_c00088{left:75.466667pt;}
.x41_c00088{left:83.200000pt;}
.x8b_c00088{left:86.666667pt;}
.x9f_c00088{left:90.000000pt;}
.x5_c00088{left:90.933333pt;}
.xd_c00088{left:92.666667pt;}
.x45_c00088{left:93.600000pt;}
.x59_c00088{left:95.066667pt;}
.x93_c00088{left:97.466667pt;}
.x78_c00088{left:103.333333pt;}
.xa1_c00088{left:104.933333pt;}
.xa0_c00088{left:106.800000pt;}
.x2d_c00088{left:110.800000pt;}
.x7d_c00088{left:112.000000pt;}
.x22_c00088{left:113.200000pt;}
.x4b_c00088{left:116.533333pt;}
.x46_c00088{left:117.866667pt;}
.x6_c00088{left:120.000000pt;}
.x96_c00088{left:121.600000pt;}
.x61_c00088{left:122.533333pt;}
.x98_c00088{left:124.133333pt;}
.xe_c00088{left:125.333333pt;}
.x67_c00088{left:126.400000pt;}
.x1a_c00088{left:127.600000pt;}
.x3b_c00088{left:128.666667pt;}
.x91_c00088{left:130.933333pt;}
.x8f_c00088{left:132.000000pt;}
.x32_c00088{left:133.066667pt;}
.x6e_c00088{left:134.533333pt;}
.x50_c00088{left:136.400000pt;}
.x5d_c00088{left:138.133333pt;}
.x7_c00088{left:139.466667pt;}
.x8c_c00088{left:142.400000pt;}
.x7c_c00088{left:144.533333pt;}
.x23_c00088{left:146.533333pt;}
.x14_c00088{left:148.666667pt;}
.x1b_c00088{left:150.266667pt;}
.x71_c00088{left:152.000000pt;}
.x3c_c00088{left:154.000000pt;}
.x5a_c00088{left:155.600000pt;}
.x47_c00088{left:156.933333pt;}
.x4c_c00088{left:157.866667pt;}
.x80_c00088{left:158.800000pt;}
.x75_c00088{left:159.866667pt;}
.x82_c00088{left:161.200000pt;}
.x69_c00088{left:163.333333pt;}
.x53_c00088{left:164.266667pt;}
.x33_c00088{left:166.666667pt;}
.x24_c00088{left:168.266667pt;}
.x9b_c00088{left:169.600000pt;}
.x51_c00088{left:172.933333pt;}
.x65_c00088{left:174.266667pt;}
.x48_c00088{left:177.066667pt;}
.x15_c00088{left:179.066667pt;}
.x83_c00088{left:180.133333pt;}
.x2e_c00088{left:182.800000pt;}
.xf_c00088{left:184.533333pt;}
.x90_c00088{left:186.400000pt;}
.x8_c00088{left:187.733333pt;}
.x99_c00088{left:190.133333pt;}
.x8d_c00088{left:191.333333pt;}
.x54_c00088{left:193.333333pt;}
.x85_c00088{left:194.666667pt;}
.x42_c00088{left:197.600000pt;}
.x1c_c00088{left:198.533333pt;}
.x5e_c00088{left:200.266667pt;}
.x38_c00088{left:203.200000pt;}
.x9c_c00088{left:205.066667pt;}
.x16_c00088{left:206.266667pt;}
.x72_c00088{left:207.600000pt;}
.x6a_c00088{left:211.600000pt;}
.x2f_c00088{left:212.933333pt;}
.x81_c00088{left:214.800000pt;}
.x5f_c00088{left:218.533333pt;}
.x57_c00088{left:219.733333pt;}
.x88_c00088{left:221.200000pt;}
.x94_c00088{left:222.266667pt;}
.x10_c00088{left:223.866667pt;}
.x4d_c00088{left:224.800000pt;}
.x7e_c00088{left:226.533333pt;}
.x3d_c00088{left:227.866667pt;}
.x97_c00088{left:228.800000pt;}
.x25_c00088{left:229.733333pt;}
.x73_c00088{left:231.600000pt;}
.x79_c00088{left:234.000000pt;}
.x34_c00088{left:235.466667pt;}
.x9_c00088{left:237.600000pt;}
.x43_c00088{left:238.933333pt;}
.x66_c00088{left:240.133333pt;}
.x6f_c00088{left:242.666667pt;}
.x26_c00088{left:244.133333pt;}
.x49_c00088{left:247.066667pt;}
.x52_c00088{left:248.800000pt;}
.x17_c00088{left:250.800000pt;}
.x74_c00088{left:251.733333pt;}
.x35_c00088{left:254.666667pt;}
.x70_c00088{left:256.800000pt;}
.x62_c00088{left:258.133333pt;}
.x1d_c00088{left:259.066667pt;}
.x39_c00088{left:260.533333pt;}
.x76_c00088{left:261.600000pt;}
.x86_c00088{left:262.800000pt;}
.x55_c00088{left:264.133333pt;}
.x27_c00088{left:265.866667pt;}
.x1e_c00088{left:267.333333pt;}
.x3e_c00088{left:269.200000pt;}
.x28_c00088{left:273.866667pt;}
.x95_c00088{left:275.066667pt;}
.x18_c00088{left:276.133333pt;}
.x7a_c00088{left:277.733333pt;}
.x30_c00088{left:280.400000pt;}
.x11_c00088{left:285.600000pt;}
.x29_c00088{left:287.333333pt;}
.x63_c00088{left:290.133333pt;}
.xa_c00088{left:291.066667pt;}
.x5b_c00088{left:296.133333pt;}
.x1_c00088{left:298.533333pt;}
.x3f_c00088{left:299.600000pt;}
.x9d_c00088{left:300.533333pt;}
.x1f_c00088{left:303.200000pt;}
.x44_c00088{left:305.066667pt;}
.x2a_c00088{left:306.266667pt;}
.x9e_c00088{left:308.266667pt;}
.x12_c00088{left:309.866667pt;}
.x19_c00088{left:311.333333pt;}
.xb_c00088{left:314.133333pt;}
.x58_c00088{left:316.000000pt;}
.x20_c00088{left:318.533333pt;}
.x3a_c00088{left:320.133333pt;}
.x6d_c00088{left:324.000000pt;}
.x36_c00088{left:325.466667pt;}
.x2b_c00088{left:326.800000pt;}
.xc_c00088{left:328.800000pt;}
.x92_c00088{left:331.333333pt;}
.x6b_c00088{left:332.533333pt;}
.x40_c00088{left:333.866667pt;}
.x4e_c00088{left:335.466667pt;}
.x68_c00088{left:339.466667pt;}
.x7f_c00088{left:342.400000pt;}
.x2c_c00088{left:346.000000pt;}
.x13_c00088{left:348.000000pt;}
.x56_c00088{left:349.066667pt;}
.x87_c00088{left:350.800000pt;}
.x8e_c00088{left:352.400000pt;}
.x5c_c00088{left:353.466667pt;}
.x60_c00088{left:355.200000pt;}
.x31_c00088{left:358.266667pt;}
.x84_c00088{left:360.133333pt;}
.x6c_c00088{left:361.066667pt;}
.x4f_c00088{left:362.666667pt;}
.x4a_c00088{left:363.600000pt;}
.x21_c00088{left:364.666667pt;}
.x37_c00088{left:365.733333pt;}
.x7b_c00088{left:367.600000pt;}
.x64_c00088{left:368.800000pt;}
.x89_c00088{left:370.266667pt;}
.xc7_c00088{left:396.800000pt;}
.x134_c00088{left:398.666667pt;}
.x13a_c00088{left:399.733333pt;}
.xaa_c00088{left:409.066667pt;}
.xcb_c00088{left:412.133333pt;}
.xda_c00088{left:413.066667pt;}
.x109_c00088{left:414.000000pt;}
.x139_c00088{left:415.600000pt;}
.x13e_c00088{left:417.200000pt;}
.x13d_c00088{left:418.266667pt;}
.xc1_c00088{left:421.733333pt;}
.xa2_c00088{left:422.666667pt;}
.x114_c00088{left:427.066667pt;}
.xfc_c00088{left:428.533333pt;}
.xf0_c00088{left:429.600000pt;}
.xf5_c00088{left:431.866667pt;}
.x127_c00088{left:433.733333pt;}
.xcc_c00088{left:436.400000pt;}
.x110_c00088{left:438.133333pt;}
.x11b_c00088{left:439.600000pt;}
.xab_c00088{left:441.333333pt;}
.x120_c00088{left:442.933333pt;}
.xeb_c00088{left:446.666667pt;}
.xb8_c00088{left:448.533333pt;}
.xe1_c00088{left:450.400000pt;}
.x103_c00088{left:452.000000pt;}
.x11a_c00088{left:452.933333pt;}
.xdb_c00088{left:454.666667pt;}
.x10a_c00088{left:456.533333pt;}
.x128_c00088{left:458.000000pt;}
.xac_c00088{left:459.200000pt;}
.x11e_c00088{left:460.666667pt;}
.xb2_c00088{left:461.600000pt;}
.xf1_c00088{left:462.533333pt;}
.xb9_c00088{left:464.800000pt;}
.xd2_c00088{left:466.800000pt;}
.xf6_c00088{left:468.400000pt;}
.x104_c00088{left:470.266667pt;}
.x111_c00088{left:472.000000pt;}
.xc8_c00088{left:474.266667pt;}
.x115_c00088{left:476.400000pt;}
.xd5_c00088{left:477.333333pt;}
.xcd_c00088{left:478.266667pt;}
.x135_c00088{left:480.266667pt;}
.xa3_c00088{left:482.533333pt;}
.xf7_c00088{left:483.733333pt;}
.x129_c00088{left:484.933333pt;}
.xec_c00088{left:486.933333pt;}
.xb3_c00088{left:488.800000pt;}
.xad_c00088{left:490.533333pt;}
.x116_c00088{left:492.133333pt;}
.x138_c00088{left:495.066667pt;}
.x125_c00088{left:496.666667pt;}
.xe5_c00088{left:498.533333pt;}
.xa4_c00088{left:500.800000pt;}
.xe9_c00088{left:502.666667pt;}
.xd3_c00088{left:503.600000pt;}
.xf2_c00088{left:504.800000pt;}
.x105_c00088{left:506.400000pt;}
.x10b_c00088{left:508.000000pt;}
.xfd_c00088{left:509.866667pt;}
.xba_c00088{left:512.133333pt;}
.xae_c00088{left:513.200000pt;}
.xb4_c00088{left:514.133333pt;}
.x10d_c00088{left:516.133333pt;}
.xea_c00088{left:518.000000pt;}
.xed_c00088{left:520.800000pt;}
.x132_c00088{left:524.533333pt;}
.x2_c00088{left:526.400000pt;}
.x11c_c00088{left:527.866667pt;}
.x136_c00088{left:529.866667pt;}
.xa5_c00088{left:532.133333pt;}
.xe6_c00088{left:533.733333pt;}
.xbb_c00088{left:535.466667pt;}
.xee_c00088{left:538.133333pt;}
.xe2_c00088{left:539.466667pt;}
.xb5_c00088{left:540.400000pt;}
.x122_c00088{left:541.333333pt;}
.xfe_c00088{left:542.533333pt;}
.x133_c00088{left:546.000000pt;}
.xdc_c00088{left:550.000000pt;}
.xf8_c00088{left:550.933333pt;}
.xa6_c00088{left:552.000000pt;}
.x126_c00088{left:554.000000pt;}
.xce_c00088{left:555.066667pt;}
.x10e_c00088{left:556.133333pt;}
.xd6_c00088{left:557.066667pt;}
.x11d_c00088{left:558.266667pt;}
.x106_c00088{left:559.200000pt;}
.xf9_c00088{left:560.800000pt;}
.xff_c00088{left:563.066667pt;}
.xc2_c00088{left:564.133333pt;}
.x117_c00088{left:567.066667pt;}
.x124_c00088{left:568.266667pt;}
.xcf_c00088{left:569.733333pt;}
.xc3_c00088{left:570.800000pt;}
.xdd_c00088{left:572.666667pt;}
.xb6_c00088{left:575.866667pt;}
.xbc_c00088{left:577.733333pt;}
.xe3_c00088{left:579.733333pt;}
.xd7_c00088{left:582.000000pt;}
.xc4_c00088{left:584.000000pt;}
.xde_c00088{left:587.333333pt;}
.xc9_c00088{left:589.466667pt;}
.xc5_c00088{left:590.666667pt;}
.xb7_c00088{left:592.800000pt;}
.x118_c00088{left:594.000000pt;}
.xfa_c00088{left:597.866667pt;}
.xd0_c00088{left:599.466667pt;}
.xe4_c00088{left:600.800000pt;}
.x100_c00088{left:601.733333pt;}
.x10c_c00088{left:602.666667pt;}
.x112_c00088{left:603.733333pt;}
.x12a_c00088{left:605.600000pt;}
.xa7_c00088{left:608.933333pt;}
.xf3_c00088{left:610.400000pt;}
.xe7_c00088{left:612.400000pt;}
.xd8_c00088{left:613.333333pt;}
.x13b_c00088{left:615.066667pt;}
.x101_c00088{left:620.000000pt;}
.x121_c00088{left:621.600000pt;}
.x107_c00088{left:625.200000pt;}
.xa8_c00088{left:630.400000pt;}
.xef_c00088{left:631.600000pt;}
.x12d_c00088{left:632.666667pt;}
.xbf_c00088{left:633.600000pt;}
.xaf_c00088{left:634.533333pt;}
.xbd_c00088{left:635.866667pt;}
.x11f_c00088{left:636.800000pt;}
.x12b_c00088{left:637.866667pt;}
.x137_c00088{left:638.800000pt;}
.x130_c00088{left:640.000000pt;}
.xdf_c00088{left:641.066667pt;}
.x102_c00088{left:643.733333pt;}
.xfb_c00088{left:645.466667pt;}
.xe8_c00088{left:646.933333pt;}
.xf4_c00088{left:649.733333pt;}
.x113_c00088{left:652.000000pt;}
.xc6_c00088{left:653.866667pt;}
.x3_c00088{left:655.066667pt;}
.xd4_c00088{left:656.533333pt;}
.x12e_c00088{left:658.000000pt;}
.xc0_c00088{left:659.466667pt;}
.xb0_c00088{left:660.400000pt;}
.xbe_c00088{left:661.466667pt;}
.x12c_c00088{left:663.466667pt;}
.xd9_c00088{left:668.400000pt;}
.x131_c00088{left:669.466667pt;}
.xe0_c00088{left:670.533333pt;}
.x10f_c00088{left:671.733333pt;}
.x13c_c00088{left:672.933333pt;}
.x123_c00088{left:674.133333pt;}
.x119_c00088{left:675.600000pt;}
.xca_c00088{left:678.000000pt;}
.x108_c00088{left:679.333333pt;}
.x4_c00088{left:682.533333pt;}
.xa9_c00088{left:685.200000pt;}
.xb1_c00088{left:686.666667pt;}
.x12f_c00088{left:691.466667pt;}
.xd1_c00088{left:692.533333pt;}
.x140_c00088{left:835.866667pt;}
.x13f_c00088{left:839.733333pt;}
}





/* 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_c00089 {
    display:none;
  }
  .loading-indicator_c00089.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00089 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_c00089 { 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_c00089" -> "#page-container .classname_c00089")
 */
.pf_c00089 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00089 { /* 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_c00089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00089 { /* 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_c00089 { /* 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_c00089 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00089 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00089 {overflow:visible;}
  }
}
.c_c00089 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00089 { /* 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_c00089:after { /* webkit #35443 */
  content: '';
}
.t_c00089:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00089 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 */
}
.__c00089 { /* 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_c00089 { /* info for Javascript */
  display:none;
}
.l_c00089 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00089 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00089 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00089: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_c00089 {
    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_c00089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00089.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_c00089 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00089;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.000000;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;}
.m6c_c00089{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m44_c00089{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m118_c00089{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m130_c00089{transform:matrix(0.075500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00089{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00089{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m100_c00089{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m43_c00089{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m65_c00089{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00089{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m42_c00089{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mda_c00089{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00089{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m109_c00089{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00089{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m72_c00089{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me5_c00089{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m50_c00089{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m17_c00089{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m12_c00089{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m14_c00089{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00089{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m84_c00089{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00089{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m131_c00089{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00089{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00089{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00089{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.md2_c00089{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m31_c00089{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m22_c00089{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m126_c00089{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m113_c00089{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m105_c00089{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.meb_c00089{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00089{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00089{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m104_c00089{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md3_c00089{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m55_c00089{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m38_c00089{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m123_c00089{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mf_c00089{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00089{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00089{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m102_c00089{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m107_c00089{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00089{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mc_c00089{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m78_c00089{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m62_c00089{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mee_c00089{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m5_c00089{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m116_c00089{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m54_c00089{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00089{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m112_c00089{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m33_c00089{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m68_c00089{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m70_c00089{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00089{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00089{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m69_c00089{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m21_c00089{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m41_c00089{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md4_c00089{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m103_c00089{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00089{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m13_c00089{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m11_c00089{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00089{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m75_c00089{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00089{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mea_c00089{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00089{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m121_c00089{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mb_c00089{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m79_c00089{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m124_c00089{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m67_c00089{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m29_c00089{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00089{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00089{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6_c00089{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md0_c00089{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00089{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00089{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00089{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m125_c00089{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00089{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00089{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00089{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00089{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md6_c00089{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.me9_c00089{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md1_c00089{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00089{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00089{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00089{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00089{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m92_c00089{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00089{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00089{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me4_c00089{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m96_c00089{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00089{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00089{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m64_c00089{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mba_c00089{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00089{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00089{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m18_c00089{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m40_c00089{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00089{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m15_c00089{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mac_c00089{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m90_c00089{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m127_c00089{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00089{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00089{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m53_c00089{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00089{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m89_c00089{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m8_c00089{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m76_c00089{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00089{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m56_c00089{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m74_c00089{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me3_c00089{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00089{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00089{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m52_c00089{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00089{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m16_c00089{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00089{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00089{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m30_c00089{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00089{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me1_c00089{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00089{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m91_c00089{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mae_c00089{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00089{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m7_c00089{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m106_c00089{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m57_c00089{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00089{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m63_c00089{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m26_c00089{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m35_c00089{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mad_c00089{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2_c00089{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me_c00089{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00089{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00089{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m95_c00089{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00089{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m82_c00089{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00089{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m73_c00089{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00089{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m60_c00089{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4_c00089{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00089{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00089{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00089{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00089{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m101_c00089{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m25_c00089{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma_c00089{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m129_c00089{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00089{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.maa_c00089{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m114_c00089{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00089{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m99_c00089{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m10_c00089{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00089{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00089{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m45_c00089{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00089{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m49_c00089{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00089{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00089{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00089{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.md8_c00089{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m36_c00089{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m97_c00089{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00089{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me6_c00089{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m83_c00089{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m27_c00089{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m59_c00089{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m85_c00089{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00089{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m0_c00089{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me0_c00089{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m122_c00089{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m48_c00089{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m86_c00089{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m98_c00089{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00089{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m120_c00089{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00089{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m93_c00089{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mde_c00089{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00089{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m66_c00089{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00089{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m87_c00089{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3_c00089{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00089{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00089{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m80_c00089{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00089{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00089{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00089{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00089{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.maf_c00089{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m37_c00089{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00089{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m111_c00089{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00089{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00089{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00089{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00089{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m32_c00089{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m39_c00089{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m9_c00089{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m28_c00089{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00089{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m128_c00089{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m51_c00089{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m71_c00089{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md_c00089{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m47_c00089{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00089{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m115_c00089{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md7_c00089{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00089{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mef_c00089{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m88_c00089{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00089{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00089{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00089{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m94_c00089{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00089{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m81_c00089{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00089{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00089{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00089{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00089{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m61_c00089{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m110_c00089{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m119_c00089{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00089{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00089{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00089{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m24_c00089{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m46_c00089{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00089{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me8_c00089{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mca_c00089{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00089{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m34_c00089{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.me7_c00089{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00089{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00089{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00089{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mce_c00089{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m77_c00089{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00089{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.med_c00089{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00089{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md5_c00089{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mec_c00089{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m117_c00089{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.md9_c00089{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m23_c00089{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me2_c00089{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00089{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mff_c00089{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00089{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mab_c00089{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m58_c00089{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00089{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00089{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m20_c00089{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00089{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00089{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00089{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00089{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00089{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00089{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00089{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m108_c00089{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00089{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m132_c00089{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00089{transform:matrix(0.463500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00089{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00089{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00089{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00089{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m19_c00089{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00089{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00089{transform:matrix(0.773250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00089{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.v1_c00089{vertical-align:6.000000px;}
.ls0_c00089{letter-spacing:0.000000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{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__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00089{word-spacing:-18.000000px;}
.ws6_c00089{word-spacing:-9.736842px;}
.wse_c00089{word-spacing:-2.567568px;}
.ws1_c00089{word-spacing:-0.645161px;}
.ws11_c00089{word-spacing:0.000000px;}
.wsd_c00089{word-spacing:6.341463px;}
.ws8_c00089{word-spacing:8.206186px;}
.ws0_c00089{word-spacing:8.666667px;}
.ws4_c00089{word-spacing:11.875000px;}
.ws2_c00089{word-spacing:15.000000px;}
.wsa_c00089{word-spacing:18.171975px;}
.ws3_c00089{word-spacing:22.142857px;}
.ws7_c00089{word-spacing:25.714286px;}
.wsb_c00089{word-spacing:39.750000px;}
.wsc_c00089{word-spacing:53.966261px;}
.ws5_c00089{word-spacing:69.605263px;}
.wsf_c00089{word-spacing:90.000000px;}
.ws9_c00089{word-spacing:99.433779px;}
._2_c00089{margin-left:-56.251407px;}
._1_c00089{width:55.714286px;}
._0_c00089{width:59.285714px;}
.fc0_c00089{color:transparent;}
.fsa_c00089{font-size:18.000000px;}
.fs9_c00089{font-size:30.000000px;}
.fs8_c00089{font-size:36.000000px;}
.fs6_c00089{font-size:42.000000px;}
.fs4_c00089{font-size:54.000000px;}
.fs5_c00089{font-size:60.000000px;}
.fs3_c00089{font-size:66.000000px;}
.fs2_c00089{font-size:72.000000px;}
.fs7_c00089{font-size:78.000000px;}
.fs1_c00089{font-size:84.000000px;}
.fs0_c00089{font-size:90.000000px;}
.y0_c00089{bottom:0.000000px;}
.y6c_c00089{bottom:172.650000px;}
.y38_c00089{bottom:176.100000px;}
.y6b_c00089{bottom:190.650000px;}
.y37_c00089{bottom:194.400000px;}
.y6a_c00089{bottom:208.350000px;}
.y36_c00089{bottom:212.400000px;}
.y69_c00089{bottom:226.350000px;}
.y33_c00089{bottom:238.650000px;}
.y68_c00089{bottom:244.350000px;}
.y32_c00089{bottom:256.650000px;}
.y67_c00089{bottom:262.350000px;}
.y31_c00089{bottom:274.650000px;}
.y66_c00089{bottom:280.650000px;}
.y30_c00089{bottom:292.350000px;}
.y65_c00089{bottom:298.350000px;}
.y2f_c00089{bottom:310.650000px;}
.y64_c00089{bottom:317.100000px;}
.y63_c00089{bottom:334.800000px;}
.y2e_c00089{bottom:337.650000px;}
.y62_c00089{bottom:352.800000px;}
.y2d_c00089{bottom:355.650000px;}
.y61_c00089{bottom:371.100000px;}
.y2c_c00089{bottom:373.350000px;}
.y60_c00089{bottom:389.100000px;}
.y2b_c00089{bottom:391.350000px;}
.y2a_c00089{bottom:414.000000px;}
.y5f_c00089{bottom:414.600000px;}
.y5e_c00089{bottom:429.300000px;}
.y29_c00089{bottom:432.300000px;}
.y5d_c00089{bottom:444.000000px;}
.y28_c00089{bottom:450.000000px;}
.y70_c00089{bottom:457.950000px;}
.y5c_c00089{bottom:458.400000px;}
.y27_c00089{bottom:468.300000px;}
.y6f_c00089{bottom:471.900000px;}
.y5b_c00089{bottom:472.800000px;}
.y26_c00089{bottom:486.300000px;}
.y5a_c00089{bottom:487.500000px;}
.y6e_c00089{bottom:500.100000px;}
.y59_c00089{bottom:501.900000px;}
.y25_c00089{bottom:504.000000px;}
.y58_c00089{bottom:516.300000px;}
.y24_c00089{bottom:522.300000px;}
.y71_c00089{bottom:525.900000px;}
.y72_c00089{bottom:530.550000px;}
.y57_c00089{bottom:531.000000px;}
.y23_c00089{bottom:540.600000px;}
.y56_c00089{bottom:545.700000px;}
.y22_c00089{bottom:558.300000px;}
.y55_c00089{bottom:560.550000px;}
.y54_c00089{bottom:574.650000px;}
.y21_c00089{bottom:576.300000px;}
.y6d_c00089{bottom:587.850000px;}
.y53_c00089{bottom:589.350000px;}
.y20_c00089{bottom:594.300000px;}
.y52_c00089{bottom:603.750000px;}
.y1f_c00089{bottom:612.600000px;}
.y51_c00089{bottom:618.450000px;}
.y1e_c00089{bottom:630.300000px;}
.y50_c00089{bottom:632.850000px;}
.y4f_c00089{bottom:646.950000px;}
.y1d_c00089{bottom:648.300000px;}
.y4e_c00089{bottom:662.700000px;}
.y1c_c00089{bottom:666.300000px;}
.y1b_c00089{bottom:684.300000px;}
.y4d_c00089{bottom:686.250000px;}
.y1a_c00089{bottom:702.600000px;}
.y4c_c00089{bottom:704.250000px;}
.y19_c00089{bottom:720.600000px;}
.y4b_c00089{bottom:722.550000px;}
.y18_c00089{bottom:738.600000px;}
.y4a_c00089{bottom:744.900000px;}
.y17_c00089{bottom:756.600000px;}
.y49_c00089{bottom:762.900000px;}
.y16_c00089{bottom:774.600000px;}
.y48_c00089{bottom:780.900000px;}
.y15_c00089{bottom:792.600000px;}
.y47_c00089{bottom:799.200000px;}
.y14_c00089{bottom:810.600000px;}
.y46_c00089{bottom:817.200000px;}
.y13_c00089{bottom:828.600000px;}
.y45_c00089{bottom:835.200000px;}
.y12_c00089{bottom:852.300000px;}
.y44_c00089{bottom:852.900000px;}
.y11_c00089{bottom:867.000000px;}
.y43_c00089{bottom:875.550000px;}
.y10_c00089{bottom:881.400000px;}
.yf_c00089{bottom:894.000000px;}
.y42_c00089{bottom:902.550000px;}
.y35_c00089{bottom:908.250000px;}
.ye_c00089{bottom:908.700000px;}
.yd_c00089{bottom:923.100000px;}
.y41_c00089{bottom:929.550000px;}
.y40_c00089{bottom:947.550000px;}
.yc_c00089{bottom:951.900000px;}
.y34_c00089{bottom:953.250000px;}
.y3f_c00089{bottom:965.550000px;}
.yb_c00089{bottom:966.600000px;}
.ya_c00089{bottom:982.050000px;}
.y3e_c00089{bottom:983.250000px;}
.y9_c00089{bottom:1001.550000px;}
.y3d_c00089{bottom:1019.550000px;}
.y8_c00089{bottom:1019.850000px;}
.y3c_c00089{bottom:1037.550000px;}
.y7_c00089{bottom:1042.200000px;}
.y3b_c00089{bottom:1055.850000px;}
.y6_c00089{bottom:1060.200000px;}
.y3a_c00089{bottom:1073.550000px;}
.y5_c00089{bottom:1078.200000px;}
.y4_c00089{bottom:1096.500000px;}
.y39_c00089{bottom:1114.200000px;}
.y3_c00089{bottom:1114.500000px;}
.y1_c00089{bottom:1136.100000px;}
.y2_c00089{bottom:1141.500000px;}
.hb_c00089{height:18.000000px;}
.ha_c00089{height:30.000000px;}
.hc_c00089{height:36.000000px;}
.h8_c00089{height:42.000000px;}
.h6_c00089{height:54.000000px;}
.h7_c00089{height:60.000000px;}
.h5_c00089{height:66.000000px;}
.h4_c00089{height:72.000000px;}
.h9_c00089{height:78.000000px;}
.h3_c00089{height:84.000000px;}
.h2_c00089{height:90.000000px;}
.h1_c00089{height:1270.500000px;}
.h0_c00089{height:1270.799927px;}
.w1_c00089{width:953.250000px;}
.w0_c00089{width:953.280030px;}
.x0_c00089{left:0.000000px;}
.xa1_c00089{left:176.700000px;}
.x1_c00089{left:179.250000px;}
.x25_c00089{left:180.300000px;}
.x44_c00089{left:191.850000px;}
.x36_c00089{left:193.200000px;}
.x88_c00089{left:194.250000px;}
.x2c_c00089{left:195.300000px;}
.x16_c00089{left:197.250000px;}
.x3_c00089{left:198.300000px;}
.x70_c00089{left:202.350000px;}
.x46_c00089{left:205.800000px;}
.x3c_c00089{left:206.850000px;}
.x3a_c00089{left:207.900000px;}
.x39_c00089{left:213.000000px;}
.x7a_c00089{left:214.200000px;}
.x73_c00089{left:215.250000px;}
.x57_c00089{left:218.550000px;}
.x91_c00089{left:220.500000px;}
.x26_c00089{left:225.000000px;}
.x47_c00089{left:227.400000px;}
.x96_c00089{left:229.200000px;}
.x17_c00089{left:230.400000px;}
.x5b_c00089{left:231.750000px;}
.x98_c00089{left:232.950000px;}
.x2d_c00089{left:235.950000px;}
.x2e_c00089{left:237.750000px;}
.x18_c00089{left:239.700000px;}
.x37_c00089{left:242.100000px;}
.x1e_c00089{left:243.300000px;}
.x9_c00089{left:246.750000px;}
.x68_c00089{left:247.800000px;}
.x6b_c00089{left:248.850000px;}
.x93_c00089{left:250.200000px;}
.xa2_c00089{left:251.250000px;}
.x42_c00089{left:252.300000px;}
.x1f_c00089{left:254.850000px;}
.x58_c00089{left:257.400000px;}
.x3d_c00089{left:259.800000px;}
.x5c_c00089{left:261.300000px;}
.x64_c00089{left:262.650000px;}
.xf_c00089{left:264.000000px;}
.x50_c00089{left:265.200000px;}
.x52_c00089{left:267.000000px;}
.x9f_c00089{left:269.250000px;}
.x99_c00089{left:271.050000px;}
.x7e_c00089{left:273.300000px;}
.x6c_c00089{left:275.100000px;}
.x9b_c00089{left:276.450000px;}
.x4d_c00089{left:277.800000px;}
.x48_c00089{left:279.000000px;}
.x4_c00089{left:281.100000px;}
.xa3_c00089{left:282.900000px;}
.x19_c00089{left:285.450000px;}
.x90_c00089{left:286.650000px;}
.x60_c00089{left:287.850000px;}
.x2f_c00089{left:289.650000px;}
.x74_c00089{left:291.600000px;}
.x27_c00089{left:293.100000px;}
.x20_c00089{left:297.000000px;}
.x59_c00089{left:298.800000px;}
.x38_c00089{left:300.750000px;}
.x8e_c00089{left:302.400000px;}
.x3e_c00089{left:303.750000px;}
.x83_c00089{left:305.850000px;}
.x10_c00089{left:307.500000px;}
.x5d_c00089{left:309.600000px;}
.x65_c00089{left:311.250000px;}
.x8f_c00089{left:313.200000px;}
.x85_c00089{left:314.250000px;}
.xa4_c00089{left:315.300000px;}
.x7f_c00089{left:317.250000px;}
.x97_c00089{left:319.500000px;}
.x76_c00089{left:321.900000px;}
.x55_c00089{left:323.700000px;}
.x9a_c00089{left:327.900000px;}
.x89_c00089{left:329.700000px;}
.xa_c00089{left:330.900000px;}
.x30_c00089{left:332.550000px;}
.x86_c00089{left:334.050000px;}
.x21_c00089{left:336.300000px;}
.xa0_c00089{left:337.650000px;}
.x61_c00089{left:339.300000px;}
.x28_c00089{left:341.400000px;}
.x1a_c00089{left:343.350000px;}
.x49_c00089{left:345.600000px;}
.x6d_c00089{left:347.100000px;}
.x3f_c00089{left:349.500000px;}
.x11_c00089{left:351.000000px;}
.x94_c00089{left:352.050000px;}
.x9c_c00089{left:354.900000px;}
.x5a_c00089{left:358.200000px;}
.x4e_c00089{left:359.850000px;}
.x77_c00089{left:362.550000px;}
.x4a_c00089{left:363.900000px;}
.x5_c00089{left:365.700000px;}
.x43_c00089{left:367.950000px;}
.x56_c00089{left:369.000000px;}
.xb_c00089{left:370.200000px;}
.x31_c00089{left:372.150000px;}
.x51_c00089{left:373.650000px;}
.x78_c00089{left:374.850000px;}
.x75_c00089{left:376.950000px;}
.x8d_c00089{left:379.200000px;}
.x7b_c00089{left:381.000000px;}
.x5e_c00089{left:383.100000px;}
.x80_c00089{left:387.150000px;}
.x87_c00089{left:388.350000px;}
.x1b_c00089{left:390.450000px;}
.x66_c00089{left:391.500000px;}
.x32_c00089{left:392.700000px;}
.x22_c00089{left:395.700000px;}
.x81_c00089{left:396.900000px;}
.x6e_c00089{left:398.550000px;}
.x62_c00089{left:400.500000px;}
.x12_c00089{left:402.450000px;}
.xc_c00089{left:404.400000px;}
.x6_c00089{left:405.600000px;}
.x40_c00089{left:408.900000px;}
.x9d_c00089{left:410.400000px;}
.x71_c00089{left:414.300000px;}
.x4f_c00089{left:415.650000px;}
.x2_c00089{left:417.150000px;}
.x29_c00089{left:419.850000px;}
.x95_c00089{left:421.500000px;}
.x4b_c00089{left:422.550000px;}
.x13_c00089{left:425.850000px;}
.x7_c00089{left:427.200000px;}
.x7c_c00089{left:428.550000px;}
.xd_c00089{left:430.350000px;}
.x5f_c00089{left:431.700000px;}
.x8a_c00089{left:433.350000px;}
.x33_c00089{left:435.900000px;}
.x53_c00089{left:440.400000px;}
.x4c_c00089{left:442.050000px;}
.x45_c00089{left:443.850000px;}
.x3b_c00089{left:445.500000px;}
.x82_c00089{left:447.300000px;}
.x69_c00089{left:449.100000px;}
.x23_c00089{left:453.000000px;}
.x8c_c00089{left:454.800000px;}
.x14_c00089{left:456.150000px;}
.x67_c00089{left:458.100000px;}
.x1c_c00089{left:459.600000px;}
.x2a_c00089{left:461.250000px;}
.x8_c00089{left:463.500000px;}
.x72_c00089{left:465.000000px;}
.x34_c00089{left:466.500000px;}
.x1d_c00089{left:467.550000px;}
.x84_c00089{left:468.750000px;}
.x41_c00089{left:472.950000px;}
.x15_c00089{left:474.450000px;}
.x92_c00089{left:475.950000px;}
.x24_c00089{left:477.900000px;}
.x8b_c00089{left:483.000000px;}
.x79_c00089{left:484.650000px;}
.xa5_c00089{left:486.300000px;}
.xe_c00089{left:488.250000px;}
.x6f_c00089{left:490.650000px;}
.x6a_c00089{left:492.900000px;}
.x9e_c00089{left:495.450000px;}
.x7d_c00089{left:499.050000px;}
.x35_c00089{left:500.700000px;}
.x63_c00089{left:502.050000px;}
.x2b_c00089{left:503.400000px;}
.x54_c00089{left:509.550000px;}
.x12e_c00089{left:531.750000px;}
.x102_c00089{left:533.100000px;}
.xe0_c00089{left:534.900000px;}
.xae_c00089{left:536.400000px;}
.x10f_c00089{left:546.150000px;}
.x146_c00089{left:547.800000px;}
.x132_c00089{left:549.000000px;}
.x106_c00089{left:550.500000px;}
.xd6_c00089{left:551.700000px;}
.xa6_c00089{left:553.650000px;}
.xbb_c00089{left:554.700000px;}
.x11a_c00089{left:560.700000px;}
.x107_c00089{left:562.800000px;}
.x128_c00089{left:566.250000px;}
.xe4_c00089{left:569.400000px;}
.xe8_c00089{left:571.350000px;}
.x122_c00089{left:574.500000px;}
.xd2_c00089{left:576.150000px;}
.xd7_c00089{left:579.000000px;}
.x13e_c00089{left:580.800000px;}
.x11f_c00089{left:582.300000px;}
.x12c_c00089{left:583.350000px;}
.xc6_c00089{left:585.750000px;}
.x143_c00089{left:587.250000px;}
.xbc_c00089{left:588.900000px;}
.xf8_c00089{left:591.000000px;}
.x112_c00089{left:593.550000px;}
.xff_c00089{left:594.750000px;}
.xeb_c00089{left:595.800000px;}
.xaf_c00089{left:597.900000px;}
.xd8_c00089{left:599.550000px;}
.x137_c00089{left:601.500000px;}
.xa7_c00089{left:602.550000px;}
.xe1_c00089{left:604.050000px;}
.xf5_c00089{left:605.400000px;}
.x126_c00089{left:606.450000px;}
.xdd_c00089{left:609.300000px;}
.xef_c00089{left:611.850000px;}
.xc3_c00089{left:614.250000px;}
.x12d_c00089{left:617.100000px;}
.xc7_c00089{left:619.650000px;}
.x108_c00089{left:620.700000px;}
.x12f_c00089{left:622.500000px;}
.x133_c00089{left:623.850000px;}
.xde_c00089{left:628.050000px;}
.xd9_c00089{left:631.950000px;}
.x100_c00089{left:633.600000px;}
.x129_c00089{left:635.400000px;}
.xb4_c00089{left:639.300000px;}
.x13b_c00089{left:640.500000px;}
.x12a_c00089{left:643.350000px;}
.x110_c00089{left:645.150000px;}
.xb0_c00089{left:646.500000px;}
.xc8_c00089{left:648.150000px;}
.x101_c00089{left:649.800000px;}
.xc4_c00089{left:652.350000px;}
.xd3_c00089{left:653.550000px;}
.x11b_c00089{left:655.800000px;}
.xf0_c00089{left:656.850000px;}
.x139_c00089{left:658.800000px;}
.xe5_c00089{left:661.200000px;}
.x11c_c00089{left:663.000000px;}
.x12b_c00089{left:664.200000px;}
.xa8_c00089{left:665.550000px;}
.x13c_c00089{left:666.750000px;}
.xcd_c00089{left:668.250000px;}
.x127_c00089{left:670.500000px;}
.xb5_c00089{left:674.250000px;}
.x123_c00089{left:675.300000px;}
.x11d_c00089{left:677.700000px;}
.x134_c00089{left:681.750000px;}
.x113_c00089{left:684.300000px;}
.xa9_c00089{left:685.650000px;}
.x120_c00089{left:687.450000px;}
.x135_c00089{left:688.500000px;}
.xbd_c00089{left:690.000000px;}
.xc9_c00089{left:691.650000px;}
.xe2_c00089{left:693.450000px;}
.xfb_c00089{left:695.100000px;}
.xf6_c00089{left:696.450000px;}
.xd4_c00089{left:699.300000px;}
.xaa_c00089{left:702.900000px;}
.xc5_c00089{left:704.250000px;}
.x124_c00089{left:706.200000px;}
.xb6_c00089{left:707.700000px;}
.xe3_c00089{left:711.750000px;}
.xdf_c00089{left:713.400000px;}
.xbe_c00089{left:715.200000px;}
.xf1_c00089{left:717.750000px;}
.x147_c00089{left:719.550000px;}
.xce_c00089{left:721.200000px;}
.x13d_c00089{left:722.550000px;}
.x109_c00089{left:724.800000px;}
.xca_c00089{left:727.650000px;}
.xf2_c00089{left:729.300000px;}
.xb1_c00089{left:730.350000px;}
.xab_c00089{left:733.500000px;}
.xcf_c00089{left:734.850000px;}
.x114_c00089{left:737.250000px;}
.xf7_c00089{left:739.950000px;}
.x130_c00089{left:741.600000px;}
.xb7_c00089{left:742.650000px;}
.xda_c00089{left:744.600000px;}
.x121_c00089{left:746.550000px;}
.xfc_c00089{left:748.800000px;}
.xbf_c00089{left:750.150000px;}
.x115_c00089{left:751.650000px;}
.xdb_c00089{left:753.300000px;}
.x141_c00089{left:757.950000px;}
.x116_c00089{left:759.900000px;}
.x111_c00089{left:761.400000px;}
.x10a_c00089{left:763.350000px;}
.xf9_c00089{left:764.550000px;}
.xe6_c00089{left:766.350000px;}
.xec_c00089{left:770.250000px;}
.x125_c00089{left:772.350000px;}
.x117_c00089{left:773.550000px;}
.x103_c00089{left:776.550000px;}
.xed_c00089{left:778.950000px;}
.xe9_c00089{left:780.450000px;}
.xcb_c00089{left:785.550000px;}
.x13f_c00089{left:786.750000px;}
.x144_c00089{left:787.800000px;}
.x138_c00089{left:790.050000px;}
.x10c_c00089{left:791.850000px;}
.xd5_c00089{left:792.900000px;}
.xd0_c00089{left:795.750000px;}
.xfd_c00089{left:797.400000px;}
.x136_c00089{left:798.750000px;}
.x11e_c00089{left:800.100000px;}
.x118_c00089{left:802.350000px;}
.xc0_c00089{left:805.950000px;}
.xe7_c00089{left:807.000000px;}
.xea_c00089{left:808.500000px;}
.x104_c00089{left:810.450000px;}
.xfa_c00089{left:811.650000px;}
.xb2_c00089{left:815.250000px;}
.xf3_c00089{left:816.750000px;}
.xac_c00089{left:819.600000px;}
.xee_c00089{left:821.400000px;}
.x10d_c00089{left:822.750000px;}
.xb8_c00089{left:825.750000px;}
.xc1_c00089{left:828.600000px;}
.x119_c00089{left:830.400000px;}
.xfe_c00089{left:833.100000px;}
.xb9_c00089{left:835.050000px;}
.xd1_c00089{left:836.400000px;}
.xcc_c00089{left:837.750000px;}
.xf4_c00089{left:839.850000px;}
.x13a_c00089{left:841.950000px;}
.x131_c00089{left:843.450000px;}
.xc2_c00089{left:845.100000px;}
.xdc_c00089{left:846.600000px;}
.x105_c00089{left:848.550000px;}
.xba_c00089{left:852.000000px;}
.x140_c00089{left:853.350000px;}
.x142_c00089{left:855.450000px;}
.x10e_c00089{left:856.950000px;}
.xad_c00089{left:858.450000px;}
.xb3_c00089{left:859.950000px;}
.x10b_c00089{left:862.500000px;}
.x145_c00089{left:863.850000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.v1_c00089{vertical-align:5.333333pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ws10_c00089{word-spacing:-16.000000pt;}
.ws6_c00089{word-spacing:-8.654971pt;}
.wse_c00089{word-spacing:-2.282282pt;}
.ws1_c00089{word-spacing:-0.573477pt;}
.ws11_c00089{word-spacing:0.000000pt;}
.wsd_c00089{word-spacing:5.636856pt;}
.ws8_c00089{word-spacing:7.294387pt;}
.ws0_c00089{word-spacing:7.703704pt;}
.ws4_c00089{word-spacing:10.555556pt;}
.ws2_c00089{word-spacing:13.333333pt;}
.wsa_c00089{word-spacing:16.152866pt;}
.ws3_c00089{word-spacing:19.682540pt;}
.ws7_c00089{word-spacing:22.857143pt;}
.wsb_c00089{word-spacing:35.333333pt;}
.wsc_c00089{word-spacing:47.970009pt;}
.ws5_c00089{word-spacing:61.871345pt;}
.wsf_c00089{word-spacing:80.000000pt;}
.ws9_c00089{word-spacing:88.385581pt;}
._2_c00089{margin-left:-50.001251pt;}
._1_c00089{width:49.523810pt;}
._0_c00089{width:52.698413pt;}
.fsa_c00089{font-size:16.000000pt;}
.fs9_c00089{font-size:26.666667pt;}
.fs8_c00089{font-size:32.000000pt;}
.fs6_c00089{font-size:37.333333pt;}
.fs4_c00089{font-size:48.000000pt;}
.fs5_c00089{font-size:53.333333pt;}
.fs3_c00089{font-size:58.666667pt;}
.fs2_c00089{font-size:64.000000pt;}
.fs7_c00089{font-size:69.333333pt;}
.fs1_c00089{font-size:74.666667pt;}
.fs0_c00089{font-size:80.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y6c_c00089{bottom:153.466667pt;}
.y38_c00089{bottom:156.533333pt;}
.y6b_c00089{bottom:169.466667pt;}
.y37_c00089{bottom:172.800000pt;}
.y6a_c00089{bottom:185.200000pt;}
.y36_c00089{bottom:188.800000pt;}
.y69_c00089{bottom:201.200000pt;}
.y33_c00089{bottom:212.133333pt;}
.y68_c00089{bottom:217.200000pt;}
.y32_c00089{bottom:228.133333pt;}
.y67_c00089{bottom:233.200000pt;}
.y31_c00089{bottom:244.133333pt;}
.y66_c00089{bottom:249.466667pt;}
.y30_c00089{bottom:259.866667pt;}
.y65_c00089{bottom:265.200000pt;}
.y2f_c00089{bottom:276.133333pt;}
.y64_c00089{bottom:281.866667pt;}
.y63_c00089{bottom:297.600000pt;}
.y2e_c00089{bottom:300.133333pt;}
.y62_c00089{bottom:313.600000pt;}
.y2d_c00089{bottom:316.133333pt;}
.y61_c00089{bottom:329.866667pt;}
.y2c_c00089{bottom:331.866667pt;}
.y60_c00089{bottom:345.866667pt;}
.y2b_c00089{bottom:347.866667pt;}
.y2a_c00089{bottom:368.000000pt;}
.y5f_c00089{bottom:368.533333pt;}
.y5e_c00089{bottom:381.600000pt;}
.y29_c00089{bottom:384.266667pt;}
.y5d_c00089{bottom:394.666667pt;}
.y28_c00089{bottom:400.000000pt;}
.y70_c00089{bottom:407.066667pt;}
.y5c_c00089{bottom:407.466667pt;}
.y27_c00089{bottom:416.266667pt;}
.y6f_c00089{bottom:419.466667pt;}
.y5b_c00089{bottom:420.266667pt;}
.y26_c00089{bottom:432.266667pt;}
.y5a_c00089{bottom:433.333333pt;}
.y6e_c00089{bottom:444.533333pt;}
.y59_c00089{bottom:446.133333pt;}
.y25_c00089{bottom:448.000000pt;}
.y58_c00089{bottom:458.933333pt;}
.y24_c00089{bottom:464.266667pt;}
.y71_c00089{bottom:467.466667pt;}
.y72_c00089{bottom:471.600000pt;}
.y57_c00089{bottom:472.000000pt;}
.y23_c00089{bottom:480.533333pt;}
.y56_c00089{bottom:485.066667pt;}
.y22_c00089{bottom:496.266667pt;}
.y55_c00089{bottom:498.266667pt;}
.y54_c00089{bottom:510.800000pt;}
.y21_c00089{bottom:512.266667pt;}
.y6d_c00089{bottom:522.533333pt;}
.y53_c00089{bottom:523.866667pt;}
.y20_c00089{bottom:528.266667pt;}
.y52_c00089{bottom:536.666667pt;}
.y1f_c00089{bottom:544.533333pt;}
.y51_c00089{bottom:549.733333pt;}
.y1e_c00089{bottom:560.266667pt;}
.y50_c00089{bottom:562.533333pt;}
.y4f_c00089{bottom:575.066667pt;}
.y1d_c00089{bottom:576.266667pt;}
.y4e_c00089{bottom:589.066667pt;}
.y1c_c00089{bottom:592.266667pt;}
.y1b_c00089{bottom:608.266667pt;}
.y4d_c00089{bottom:610.000000pt;}
.y1a_c00089{bottom:624.533333pt;}
.y4c_c00089{bottom:626.000000pt;}
.y19_c00089{bottom:640.533333pt;}
.y4b_c00089{bottom:642.266667pt;}
.y18_c00089{bottom:656.533333pt;}
.y4a_c00089{bottom:662.133333pt;}
.y17_c00089{bottom:672.533333pt;}
.y49_c00089{bottom:678.133333pt;}
.y16_c00089{bottom:688.533333pt;}
.y48_c00089{bottom:694.133333pt;}
.y15_c00089{bottom:704.533333pt;}
.y47_c00089{bottom:710.400000pt;}
.y14_c00089{bottom:720.533333pt;}
.y46_c00089{bottom:726.400000pt;}
.y13_c00089{bottom:736.533333pt;}
.y45_c00089{bottom:742.400000pt;}
.y12_c00089{bottom:757.600000pt;}
.y44_c00089{bottom:758.133333pt;}
.y11_c00089{bottom:770.666667pt;}
.y43_c00089{bottom:778.266667pt;}
.y10_c00089{bottom:783.466667pt;}
.yf_c00089{bottom:794.666667pt;}
.y42_c00089{bottom:802.266667pt;}
.y35_c00089{bottom:807.333333pt;}
.ye_c00089{bottom:807.733333pt;}
.yd_c00089{bottom:820.533333pt;}
.y41_c00089{bottom:826.266667pt;}
.y40_c00089{bottom:842.266667pt;}
.yc_c00089{bottom:846.133333pt;}
.y34_c00089{bottom:847.333333pt;}
.y3f_c00089{bottom:858.266667pt;}
.yb_c00089{bottom:859.200000pt;}
.ya_c00089{bottom:872.933333pt;}
.y3e_c00089{bottom:874.000000pt;}
.y9_c00089{bottom:890.266667pt;}
.y3d_c00089{bottom:906.266667pt;}
.y8_c00089{bottom:906.533333pt;}
.y3c_c00089{bottom:922.266667pt;}
.y7_c00089{bottom:926.400000pt;}
.y3b_c00089{bottom:938.533333pt;}
.y6_c00089{bottom:942.400000pt;}
.y3a_c00089{bottom:954.266667pt;}
.y5_c00089{bottom:958.400000pt;}
.y4_c00089{bottom:974.666667pt;}
.y39_c00089{bottom:990.400000pt;}
.y3_c00089{bottom:990.666667pt;}
.y1_c00089{bottom:1009.866667pt;}
.y2_c00089{bottom:1014.666667pt;}
.hb_c00089{height:16.000000pt;}
.ha_c00089{height:26.666667pt;}
.hc_c00089{height:32.000000pt;}
.h8_c00089{height:37.333333pt;}
.h6_c00089{height:48.000000pt;}
.h7_c00089{height:53.333333pt;}
.h5_c00089{height:58.666667pt;}
.h4_c00089{height:64.000000pt;}
.h9_c00089{height:69.333333pt;}
.h3_c00089{height:74.666667pt;}
.h2_c00089{height:80.000000pt;}
.h1_c00089{height:1129.333333pt;}
.h0_c00089{height:1129.599935pt;}
.w1_c00089{width:847.333333pt;}
.w0_c00089{width:847.360027pt;}
.x0_c00089{left:0.000000pt;}
.xa1_c00089{left:157.066667pt;}
.x1_c00089{left:159.333333pt;}
.x25_c00089{left:160.266667pt;}
.x44_c00089{left:170.533333pt;}
.x36_c00089{left:171.733333pt;}
.x88_c00089{left:172.666667pt;}
.x2c_c00089{left:173.600000pt;}
.x16_c00089{left:175.333333pt;}
.x3_c00089{left:176.266667pt;}
.x70_c00089{left:179.866667pt;}
.x46_c00089{left:182.933333pt;}
.x3c_c00089{left:183.866667pt;}
.x3a_c00089{left:184.800000pt;}
.x39_c00089{left:189.333333pt;}
.x7a_c00089{left:190.400000pt;}
.x73_c00089{left:191.333333pt;}
.x57_c00089{left:194.266667pt;}
.x91_c00089{left:196.000000pt;}
.x26_c00089{left:200.000000pt;}
.x47_c00089{left:202.133333pt;}
.x96_c00089{left:203.733333pt;}
.x17_c00089{left:204.800000pt;}
.x5b_c00089{left:206.000000pt;}
.x98_c00089{left:207.066667pt;}
.x2d_c00089{left:209.733333pt;}
.x2e_c00089{left:211.333333pt;}
.x18_c00089{left:213.066667pt;}
.x37_c00089{left:215.200000pt;}
.x1e_c00089{left:216.266667pt;}
.x9_c00089{left:219.333333pt;}
.x68_c00089{left:220.266667pt;}
.x6b_c00089{left:221.200000pt;}
.x93_c00089{left:222.400000pt;}
.xa2_c00089{left:223.333333pt;}
.x42_c00089{left:224.266667pt;}
.x1f_c00089{left:226.533333pt;}
.x58_c00089{left:228.800000pt;}
.x3d_c00089{left:230.933333pt;}
.x5c_c00089{left:232.266667pt;}
.x64_c00089{left:233.466667pt;}
.xf_c00089{left:234.666667pt;}
.x50_c00089{left:235.733333pt;}
.x52_c00089{left:237.333333pt;}
.x9f_c00089{left:239.333333pt;}
.x99_c00089{left:240.933333pt;}
.x7e_c00089{left:242.933333pt;}
.x6c_c00089{left:244.533333pt;}
.x9b_c00089{left:245.733333pt;}
.x4d_c00089{left:246.933333pt;}
.x48_c00089{left:248.000000pt;}
.x4_c00089{left:249.866667pt;}
.xa3_c00089{left:251.466667pt;}
.x19_c00089{left:253.733333pt;}
.x90_c00089{left:254.800000pt;}
.x60_c00089{left:255.866667pt;}
.x2f_c00089{left:257.466667pt;}
.x74_c00089{left:259.200000pt;}
.x27_c00089{left:260.533333pt;}
.x20_c00089{left:264.000000pt;}
.x59_c00089{left:265.600000pt;}
.x38_c00089{left:267.333333pt;}
.x8e_c00089{left:268.800000pt;}
.x3e_c00089{left:270.000000pt;}
.x83_c00089{left:271.866667pt;}
.x10_c00089{left:273.333333pt;}
.x5d_c00089{left:275.200000pt;}
.x65_c00089{left:276.666667pt;}
.x8f_c00089{left:278.400000pt;}
.x85_c00089{left:279.333333pt;}
.xa4_c00089{left:280.266667pt;}
.x7f_c00089{left:282.000000pt;}
.x97_c00089{left:284.000000pt;}
.x76_c00089{left:286.133333pt;}
.x55_c00089{left:287.733333pt;}
.x9a_c00089{left:291.466667pt;}
.x89_c00089{left:293.066667pt;}
.xa_c00089{left:294.133333pt;}
.x30_c00089{left:295.600000pt;}
.x86_c00089{left:296.933333pt;}
.x21_c00089{left:298.933333pt;}
.xa0_c00089{left:300.133333pt;}
.x61_c00089{left:301.600000pt;}
.x28_c00089{left:303.466667pt;}
.x1a_c00089{left:305.200000pt;}
.x49_c00089{left:307.200000pt;}
.x6d_c00089{left:308.533333pt;}
.x3f_c00089{left:310.666667pt;}
.x11_c00089{left:312.000000pt;}
.x94_c00089{left:312.933333pt;}
.x9c_c00089{left:315.466667pt;}
.x5a_c00089{left:318.400000pt;}
.x4e_c00089{left:319.866667pt;}
.x77_c00089{left:322.266667pt;}
.x4a_c00089{left:323.466667pt;}
.x5_c00089{left:325.066667pt;}
.x43_c00089{left:327.066667pt;}
.x56_c00089{left:328.000000pt;}
.xb_c00089{left:329.066667pt;}
.x31_c00089{left:330.800000pt;}
.x51_c00089{left:332.133333pt;}
.x78_c00089{left:333.200000pt;}
.x75_c00089{left:335.066667pt;}
.x8d_c00089{left:337.066667pt;}
.x7b_c00089{left:338.666667pt;}
.x5e_c00089{left:340.533333pt;}
.x80_c00089{left:344.133333pt;}
.x87_c00089{left:345.200000pt;}
.x1b_c00089{left:347.066667pt;}
.x66_c00089{left:348.000000pt;}
.x32_c00089{left:349.066667pt;}
.x22_c00089{left:351.733333pt;}
.x81_c00089{left:352.800000pt;}
.x6e_c00089{left:354.266667pt;}
.x62_c00089{left:356.000000pt;}
.x12_c00089{left:357.733333pt;}
.xc_c00089{left:359.466667pt;}
.x6_c00089{left:360.533333pt;}
.x40_c00089{left:363.466667pt;}
.x9d_c00089{left:364.800000pt;}
.x71_c00089{left:368.266667pt;}
.x4f_c00089{left:369.466667pt;}
.x2_c00089{left:370.800000pt;}
.x29_c00089{left:373.200000pt;}
.x95_c00089{left:374.666667pt;}
.x4b_c00089{left:375.600000pt;}
.x13_c00089{left:378.533333pt;}
.x7_c00089{left:379.733333pt;}
.x7c_c00089{left:380.933333pt;}
.xd_c00089{left:382.533333pt;}
.x5f_c00089{left:383.733333pt;}
.x8a_c00089{left:385.200000pt;}
.x33_c00089{left:387.466667pt;}
.x53_c00089{left:391.466667pt;}
.x4c_c00089{left:392.933333pt;}
.x45_c00089{left:394.533333pt;}
.x3b_c00089{left:396.000000pt;}
.x82_c00089{left:397.600000pt;}
.x69_c00089{left:399.200000pt;}
.x23_c00089{left:402.666667pt;}
.x8c_c00089{left:404.266667pt;}
.x14_c00089{left:405.466667pt;}
.x67_c00089{left:407.200000pt;}
.x1c_c00089{left:408.533333pt;}
.x2a_c00089{left:410.000000pt;}
.x8_c00089{left:412.000000pt;}
.x72_c00089{left:413.333333pt;}
.x34_c00089{left:414.666667pt;}
.x1d_c00089{left:415.600000pt;}
.x84_c00089{left:416.666667pt;}
.x41_c00089{left:420.400000pt;}
.x15_c00089{left:421.733333pt;}
.x92_c00089{left:423.066667pt;}
.x24_c00089{left:424.800000pt;}
.x8b_c00089{left:429.333333pt;}
.x79_c00089{left:430.800000pt;}
.xa5_c00089{left:432.266667pt;}
.xe_c00089{left:434.000000pt;}
.x6f_c00089{left:436.133333pt;}
.x6a_c00089{left:438.133333pt;}
.x9e_c00089{left:440.400000pt;}
.x7d_c00089{left:443.600000pt;}
.x35_c00089{left:445.066667pt;}
.x63_c00089{left:446.266667pt;}
.x2b_c00089{left:447.466667pt;}
.x54_c00089{left:452.933333pt;}
.x12e_c00089{left:472.666667pt;}
.x102_c00089{left:473.866667pt;}
.xe0_c00089{left:475.466667pt;}
.xae_c00089{left:476.800000pt;}
.x10f_c00089{left:485.466667pt;}
.x146_c00089{left:486.933333pt;}
.x132_c00089{left:488.000000pt;}
.x106_c00089{left:489.333333pt;}
.xd6_c00089{left:490.400000pt;}
.xa6_c00089{left:492.133333pt;}
.xbb_c00089{left:493.066667pt;}
.x11a_c00089{left:498.400000pt;}
.x107_c00089{left:500.266667pt;}
.x128_c00089{left:503.333333pt;}
.xe4_c00089{left:506.133333pt;}
.xe8_c00089{left:507.866667pt;}
.x122_c00089{left:510.666667pt;}
.xd2_c00089{left:512.133333pt;}
.xd7_c00089{left:514.666667pt;}
.x13e_c00089{left:516.266667pt;}
.x11f_c00089{left:517.600000pt;}
.x12c_c00089{left:518.533333pt;}
.xc6_c00089{left:520.666667pt;}
.x143_c00089{left:522.000000pt;}
.xbc_c00089{left:523.466667pt;}
.xf8_c00089{left:525.333333pt;}
.x112_c00089{left:527.600000pt;}
.xff_c00089{left:528.666667pt;}
.xeb_c00089{left:529.600000pt;}
.xaf_c00089{left:531.466667pt;}
.xd8_c00089{left:532.933333pt;}
.x137_c00089{left:534.666667pt;}
.xa7_c00089{left:535.600000pt;}
.xe1_c00089{left:536.933333pt;}
.xf5_c00089{left:538.133333pt;}
.x126_c00089{left:539.066667pt;}
.xdd_c00089{left:541.600000pt;}
.xef_c00089{left:543.866667pt;}
.xc3_c00089{left:546.000000pt;}
.x12d_c00089{left:548.533333pt;}
.xc7_c00089{left:550.800000pt;}
.x108_c00089{left:551.733333pt;}
.x12f_c00089{left:553.333333pt;}
.x133_c00089{left:554.533333pt;}
.xde_c00089{left:558.266667pt;}
.xd9_c00089{left:561.733333pt;}
.x100_c00089{left:563.200000pt;}
.x129_c00089{left:564.800000pt;}
.xb4_c00089{left:568.266667pt;}
.x13b_c00089{left:569.333333pt;}
.x12a_c00089{left:571.866667pt;}
.x110_c00089{left:573.466667pt;}
.xb0_c00089{left:574.666667pt;}
.xc8_c00089{left:576.133333pt;}
.x101_c00089{left:577.600000pt;}
.xc4_c00089{left:579.866667pt;}
.xd3_c00089{left:580.933333pt;}
.x11b_c00089{left:582.933333pt;}
.xf0_c00089{left:583.866667pt;}
.x139_c00089{left:585.600000pt;}
.xe5_c00089{left:587.733333pt;}
.x11c_c00089{left:589.333333pt;}
.x12b_c00089{left:590.400000pt;}
.xa8_c00089{left:591.600000pt;}
.x13c_c00089{left:592.666667pt;}
.xcd_c00089{left:594.000000pt;}
.x127_c00089{left:596.000000pt;}
.xb5_c00089{left:599.333333pt;}
.x123_c00089{left:600.266667pt;}
.x11d_c00089{left:602.400000pt;}
.x134_c00089{left:606.000000pt;}
.x113_c00089{left:608.266667pt;}
.xa9_c00089{left:609.466667pt;}
.x120_c00089{left:611.066667pt;}
.x135_c00089{left:612.000000pt;}
.xbd_c00089{left:613.333333pt;}
.xc9_c00089{left:614.800000pt;}
.xe2_c00089{left:616.400000pt;}
.xfb_c00089{left:617.866667pt;}
.xf6_c00089{left:619.066667pt;}
.xd4_c00089{left:621.600000pt;}
.xaa_c00089{left:624.800000pt;}
.xc5_c00089{left:626.000000pt;}
.x124_c00089{left:627.733333pt;}
.xb6_c00089{left:629.066667pt;}
.xe3_c00089{left:632.666667pt;}
.xdf_c00089{left:634.133333pt;}
.xbe_c00089{left:635.733333pt;}
.xf1_c00089{left:638.000000pt;}
.x147_c00089{left:639.600000pt;}
.xce_c00089{left:641.066667pt;}
.x13d_c00089{left:642.266667pt;}
.x109_c00089{left:644.266667pt;}
.xca_c00089{left:646.800000pt;}
.xf2_c00089{left:648.266667pt;}
.xb1_c00089{left:649.200000pt;}
.xab_c00089{left:652.000000pt;}
.xcf_c00089{left:653.200000pt;}
.x114_c00089{left:655.333333pt;}
.xf7_c00089{left:657.733333pt;}
.x130_c00089{left:659.200000pt;}
.xb7_c00089{left:660.133333pt;}
.xda_c00089{left:661.866667pt;}
.x121_c00089{left:663.600000pt;}
.xfc_c00089{left:665.600000pt;}
.xbf_c00089{left:666.800000pt;}
.x115_c00089{left:668.133333pt;}
.xdb_c00089{left:669.600000pt;}
.x141_c00089{left:673.733333pt;}
.x116_c00089{left:675.466667pt;}
.x111_c00089{left:676.800000pt;}
.x10a_c00089{left:678.533333pt;}
.xf9_c00089{left:679.600000pt;}
.xe6_c00089{left:681.200000pt;}
.xec_c00089{left:684.666667pt;}
.x125_c00089{left:686.533333pt;}
.x117_c00089{left:687.600000pt;}
.x103_c00089{left:690.266667pt;}
.xed_c00089{left:692.400000pt;}
.xe9_c00089{left:693.733333pt;}
.xcb_c00089{left:698.266667pt;}
.x13f_c00089{left:699.333333pt;}
.x144_c00089{left:700.266667pt;}
.x138_c00089{left:702.266667pt;}
.x10c_c00089{left:703.866667pt;}
.xd5_c00089{left:704.800000pt;}
.xd0_c00089{left:707.333333pt;}
.xfd_c00089{left:708.800000pt;}
.x136_c00089{left:710.000000pt;}
.x11e_c00089{left:711.200000pt;}
.x118_c00089{left:713.200000pt;}
.xc0_c00089{left:716.400000pt;}
.xe7_c00089{left:717.333333pt;}
.xea_c00089{left:718.666667pt;}
.x104_c00089{left:720.400000pt;}
.xfa_c00089{left:721.466667pt;}
.xb2_c00089{left:724.666667pt;}
.xf3_c00089{left:726.000000pt;}
.xac_c00089{left:728.533333pt;}
.xee_c00089{left:730.133333pt;}
.x10d_c00089{left:731.333333pt;}
.xb8_c00089{left:734.000000pt;}
.xc1_c00089{left:736.533333pt;}
.x119_c00089{left:738.133333pt;}
.xfe_c00089{left:740.533333pt;}
.xb9_c00089{left:742.266667pt;}
.xd1_c00089{left:743.466667pt;}
.xcc_c00089{left:744.666667pt;}
.xf4_c00089{left:746.533333pt;}
.x13a_c00089{left:748.400000pt;}
.x131_c00089{left:749.733333pt;}
.xc2_c00089{left:751.200000pt;}
.xdc_c00089{left:752.533333pt;}
.x105_c00089{left:754.266667pt;}
.xba_c00089{left:757.333333pt;}
.x140_c00089{left:758.533333pt;}
.x142_c00089{left:760.400000pt;}
.x10e_c00089{left:761.733333pt;}
.xad_c00089{left:763.066667pt;}
.xb3_c00089{left:764.400000pt;}
.x10b_c00089{left:766.666667pt;}
.x145_c00089{left:767.866667pt;}
}





/* 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_c00090 {
    display:none;
  }
  .loading-indicator_c00090.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00090 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_c00090 { 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_c00090" -> "#page-container .classname_c00090")
 */
.pf_c00090 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00090 { /* 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_c00090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00090 { /* 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_c00090 { /* 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_c00090 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00090 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00090 {overflow:visible;}
  }
}
.c_c00090 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00090 { /* 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_c00090:after { /* webkit #35443 */
  content: '';
}
.t_c00090:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00090 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 */
}
.__c00090 { /* 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_c00090 { /* info for Javascript */
  display:none;
}
.l_c00090 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00090 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00090 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00090: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_c00090 {
    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_c00090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00090.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_c00090 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00090;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.000000;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;}
.m101_c00090{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md2_c00090{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m41_c00090{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.m100_c00090{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00090{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mec_c00090{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00090{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00090{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mab_c00090{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m25_c00090{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00090{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00090{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m51_c00090{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00090{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00090{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00090{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.maf_c00090{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mad_c00090{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me7_c00090{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00090{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me0_c00090{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m110_c00090{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00090{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00090{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00090{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00090{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m90_c00090{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m10_c00090{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00090{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00090{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00090{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mb_c00090{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00090{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00090{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m20_c00090{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m22_c00090{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me3_c00090{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m111_c00090{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m95_c00090{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m96_c00090{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00090{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m82_c00090{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00090{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md1_c00090{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00090{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md_c00090{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00090{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00090{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m71_c00090{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00090{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m89_c00090{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00090{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m105_c00090{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00090{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00090{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00090{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m36_c00090{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m8_c00090{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m32_c00090{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m73_c00090{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m14_c00090{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m43_c00090{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00090{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m7_c00090{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m52_c00090{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m42_c00090{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me1_c00090{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00090{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00090{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00090{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00090{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m45_c00090{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m53_c00090{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me2_c00090{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m67_c00090{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m27_c00090{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m75_c00090{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m16_c00090{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00090{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m63_c00090{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m26_c00090{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00090{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m64_c00090{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m49_c00090{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m65_c00090{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.meb_c00090{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m59_c00090{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00090{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m34_c00090{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m102_c00090{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m39_c00090{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m40_c00090{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00090{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00090{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m58_c00090{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m19_c00090{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00090{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00090{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00090{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00090{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md4_c00090{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00090{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.me5_c00090{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m50_c00090{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m23_c00090{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00090{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m30_c00090{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m24_c00090{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me_c00090{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc_c00090{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m54_c00090{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m28_c00090{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00090{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m13_c00090{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mf_c00090{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m21_c00090{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m29_c00090{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00090{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00090{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00090{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00090{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00090{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma_c00090{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00090{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00090{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m33_c00090{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9_c00090{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m15_c00090{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m68_c00090{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m37_c00090{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m93_c00090{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00090{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00090{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00090{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00090{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00090{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00090{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00090{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mce_c00090{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m31_c00090{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00090{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00090{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00090{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00090{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m77_c00090{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m55_c00090{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mda_c00090{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00090{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00090{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00090{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m66_c00090{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00090{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4_c00090{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m44_c00090{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m60_c00090{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m104_c00090{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m74_c00090{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00090{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00090{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m18_c00090{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00090{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mba_c00090{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00090{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00090{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00090{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00090{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00090{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00090{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00090{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m35_c00090{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00090{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00090{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00090{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00090{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m81_c00090{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00090{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m80_c00090{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me4_c00090{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m79_c00090{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00090{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m78_c00090{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00090{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5_c00090{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m84_c00090{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m108_c00090{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md9_c00090{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m57_c00090{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00090{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md6_c00090{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m106_c00090{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m99_c00090{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00090{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00090{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00090{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6_c00090{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m85_c00090{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00090{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.md0_c00090{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00090{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m86_c00090{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00090{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m38_c00090{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00090{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mca_c00090{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m56_c00090{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00090{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m72_c00090{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m69_c00090{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00090{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me6_c00090{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00090{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mea_c00090{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mee_c00090{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00090{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00090{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me9_c00090{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00090{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m103_c00090{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.med_c00090{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m47_c00090{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00090{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md7_c00090{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m48_c00090{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.maa_c00090{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m92_c00090{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m62_c00090{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00090{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m11_c00090{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00090{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00090{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md3_c00090{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00090{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m109_c00090{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m91_c00090{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mff_c00090{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00090{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m12_c00090{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m107_c00090{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m76_c00090{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m98_c00090{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00090{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00090{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.me8_c00090{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00090{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mef_c00090{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mae_c00090{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00090{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00090{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.md5_c00090{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m94_c00090{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m46_c00090{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m70_c00090{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00090{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00090{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m88_c00090{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00090{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m87_c00090{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00090{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00090{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m83_c00090{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mde_c00090{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m112_c00090{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.md8_c00090{transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00090{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m61_c00090{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00090{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00090{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m97_c00090{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00090{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00090{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00090{transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);}
.mac_c00090{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls1_c00090{letter-spacing:0.000000px;}
.ls0_c00090{letter-spacing:90.000000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{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__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00090{word-spacing:-120.000000px;}
.ws9_c00090{word-spacing:-13.259861px;}
.wsa_c00090{word-spacing:-11.227074px;}
.wsb_c00090{word-spacing:-11.184211px;}
.ws3_c00090{word-spacing:-4.151786px;}
.ws1_c00090{word-spacing:-0.863874px;}
.ws8_c00090{word-spacing:-0.666667px;}
.wse_c00090{word-spacing:0.000000px;}
.ws2_c00090{word-spacing:0.540541px;}
.ws0_c00090{word-spacing:5.084439px;}
.wsd_c00090{word-spacing:5.279330px;}
.ws7_c00090{word-spacing:19.900344px;}
.ws4_c00090{word-spacing:27.723214px;}
.ws5_c00090{word-spacing:44.166667px;}
.ws6_c00090{word-spacing:73.333333px;}
._1_c00090{margin-left:-90.000000px;}
._0_c00090{width:70.000000px;}
.fc0_c00090{color:transparent;}
.fs5_c00090{font-size:48.000000px;}
.fs4_c00090{font-size:54.000000px;}
.fs3_c00090{font-size:60.000000px;}
.fs2_c00090{font-size:66.000000px;}
.fs1_c00090{font-size:72.000000px;}
.fs0_c00090{font-size:84.000000px;}
.y0_c00090{bottom:0.000000px;}
.y6d_c00090{bottom:159.450000px;}
.y6c_c00090{bottom:177.600000px;}
.y38_c00090{bottom:178.200000px;}
.y36_c00090{bottom:190.800000px;}
.y37_c00090{bottom:192.600000px;}
.y6b_c00090{bottom:195.600000px;}
.y35_c00090{bottom:207.150000px;}
.y6a_c00090{bottom:213.900000px;}
.y34_c00090{bottom:221.850000px;}
.y69_c00090{bottom:231.900000px;}
.y33_c00090{bottom:236.550000px;}
.y68_c00090{bottom:249.900000px;}
.y32_c00090{bottom:250.200000px;}
.y31_c00090{bottom:264.900000px;}
.y67_c00090{bottom:267.900000px;}
.y30_c00090{bottom:279.300000px;}
.y66_c00090{bottom:285.900000px;}
.y2f_c00090{bottom:293.850000px;}
.y65_c00090{bottom:304.200000px;}
.y2e_c00090{bottom:309.300000px;}
.y64_c00090{bottom:322.200000px;}
.y2d_c00090{bottom:333.300000px;}
.y63_c00090{bottom:340.200000px;}
.y2c_c00090{bottom:351.300000px;}
.y62_c00090{bottom:358.200000px;}
.y2b_c00090{bottom:376.200000px;}
.y2a_c00090{bottom:392.100000px;}
.y61_c00090{bottom:394.200000px;}
.y29_c00090{bottom:410.100000px;}
.y60_c00090{bottom:420.450000px;}
.y28_c00090{bottom:428.100000px;}
.y5f_c00090{bottom:434.850000px;}
.y27_c00090{bottom:446.400000px;}
.y5e_c00090{bottom:449.250000px;}
.y5d_c00090{bottom:462.600000px;}
.y26_c00090{bottom:468.300000px;}
.y5c_c00090{bottom:478.050000px;}
.y5b_c00090{bottom:492.150000px;}
.y25_c00090{bottom:495.000000px;}
.y5a_c00090{bottom:506.400000px;}
.y24_c00090{bottom:517.650000px;}
.y59_c00090{bottom:522.300000px;}
.y23_c00090{bottom:535.650000px;}
.y58_c00090{bottom:541.500000px;}
.y22_c00090{bottom:553.650000px;}
.y57_c00090{bottom:559.500000px;}
.y21_c00090{bottom:571.650000px;}
.y56_c00090{bottom:577.500000px;}
.y20_c00090{bottom:589.650000px;}
.y55_c00090{bottom:600.000000px;}
.y1f_c00090{bottom:607.650000px;}
.y54_c00090{bottom:618.300000px;}
.y1e_c00090{bottom:625.350000px;}
.y53_c00090{bottom:636.000000px;}
.y1d_c00090{bottom:648.450000px;}
.y52_c00090{bottom:655.500000px;}
.y1c_c00090{bottom:666.450000px;}
.y51_c00090{bottom:671.700000px;}
.y1b_c00090{bottom:684.750000px;}
.y50_c00090{bottom:689.100000px;}
.y4f_c00090{bottom:694.500000px;}
.y1a_c00090{bottom:702.750000px;}
.y19_c00090{bottom:725.100000px;}
.y4e_c00090{bottom:725.400000px;}
.y18_c00090{bottom:743.400000px;}
.y4d_c00090{bottom:743.700000px;}
.y17_c00090{bottom:761.400000px;}
.y4c_c00090{bottom:761.700000px;}
.y16_c00090{bottom:779.400000px;}
.y4b_c00090{bottom:783.750000px;}
.y15_c00090{bottom:797.400000px;}
.y4a_c00090{bottom:806.700000px;}
.y14_c00090{bottom:815.400000px;}
.y49_c00090{bottom:824.400000px;}
.y13_c00090{bottom:833.400000px;}
.y48_c00090{bottom:847.650000px;}
.y12_c00090{bottom:851.400000px;}
.y47_c00090{bottom:865.950000px;}
.y11_c00090{bottom:869.400000px;}
.y46_c00090{bottom:883.200000px;}
.y10_c00090{bottom:887.700000px;}
.y45_c00090{bottom:901.500000px;}
.yf_c00090{bottom:905.700000px;}
.y44_c00090{bottom:919.200000px;}
.ye_c00090{bottom:923.700000px;}
.y43_c00090{bottom:937.500000px;}
.yd_c00090{bottom:941.700000px;}
.y42_c00090{bottom:955.200000px;}
.yc_c00090{bottom:959.700000px;}
.y41_c00090{bottom:973.200000px;}
.yb_c00090{bottom:977.700000px;}
.y40_c00090{bottom:991.500000px;}
.ya_c00090{bottom:995.700000px;}
.y3f_c00090{bottom:1009.200000px;}
.y9_c00090{bottom:1013.700000px;}
.y3e_c00090{bottom:1027.500000px;}
.y8_c00090{bottom:1031.700000px;}
.y3d_c00090{bottom:1045.500000px;}
.y7_c00090{bottom:1049.700000px;}
.y3c_c00090{bottom:1063.500000px;}
.y6_c00090{bottom:1067.700000px;}
.y3b_c00090{bottom:1081.200000px;}
.y5_c00090{bottom:1085.400000px;}
.y3a_c00090{bottom:1099.200000px;}
.y4_c00090{bottom:1103.700000px;}
.y39_c00090{bottom:1117.500000px;}
.y3_c00090{bottom:1121.700000px;}
.y2_c00090{bottom:1142.700000px;}
.y1_c00090{bottom:1146.300000px;}
.h7_c00090{height:48.000000px;}
.h6_c00090{height:54.000000px;}
.h5_c00090{height:60.000000px;}
.h4_c00090{height:66.000000px;}
.h3_c00090{height:72.000000px;}
.h2_c00090{height:84.000000px;}
.h0_c00090{height:1272.600036px;}
.h1_c00090{height:1272.750000px;}
.w1_c00090{width:953.250000px;}
.w0_c00090{width:953.280030px;}
.x0_c00090{left:0.000000px;}
.x8f_c00090{left:72.000000px;}
.x8c_c00090{left:73.200000px;}
.x78_c00090{left:75.600000px;}
.x93_c00090{left:88.950000px;}
.x91_c00090{left:91.350000px;}
.x8a_c00090{left:95.250000px;}
.x46_c00090{left:97.050000px;}
.x3_c00090{left:98.250000px;}
.x3c_c00090{left:99.450000px;}
.x5d_c00090{left:100.500000px;}
.x65_c00090{left:102.900000px;}
.x97_c00090{left:106.050000px;}
.x99_c00090{left:108.000000px;}
.x85_c00090{left:116.700000px;}
.x6d_c00090{left:117.750000px;}
.x31_c00090{left:119.400000px;}
.x12_c00090{left:123.450000px;}
.x18_c00090{left:126.000000px;}
.x4_c00090{left:128.850000px;}
.xb_c00090{left:130.200000px;}
.x98_c00090{left:131.550000px;}
.x80_c00090{left:133.650000px;}
.x9a_c00090{left:134.700000px;}
.x6a_c00090{left:136.950000px;}
.x1d_c00090{left:139.050000px;}
.x60_c00090{left:142.200000px;}
.x79_c00090{left:145.500000px;}
.x32_c00090{left:147.450000px;}
.x5_c00090{left:149.400000px;}
.x4c_c00090{left:151.950000px;}
.x19_c00090{left:153.750000px;}
.x77_c00090{left:154.800000px;}
.xc_c00090{left:156.450000px;}
.x3d_c00090{left:157.500000px;}
.x68_c00090{left:159.600000px;}
.x61_c00090{left:161.250000px;}
.x22_c00090{left:162.900000px;}
.x55_c00090{left:164.250000px;}
.x6f_c00090{left:166.050000px;}
.x42_c00090{left:167.550000px;}
.x3e_c00090{left:169.050000px;}
.x39_c00090{left:171.150000px;}
.x1e_c00090{left:174.000000px;}
.x51_c00090{left:175.200000px;}
.x82_c00090{left:177.750000px;}
.x23_c00090{left:178.800000px;}
.x94_c00090{left:181.050000px;}
.x47_c00090{left:183.000000px;}
.x72_c00090{left:184.650000px;}
.x29_c00090{left:186.150000px;}
.x90_c00090{left:187.200000px;}
.x6_c00090{left:189.300000px;}
.x4d_c00090{left:190.800000px;}
.x8d_c00090{left:193.200000px;}
.x33_c00090{left:198.150000px;}
.xd_c00090{left:199.350000px;}
.x13_c00090{left:202.950000px;}
.x6b_c00090{left:205.650000px;}
.x66_c00090{left:207.600000px;}
.x34_c00090{left:209.700000px;}
.x92_c00090{left:211.200000px;}
.x86_c00090{left:214.200000px;}
.x7_c00090{left:215.550000px;}
.x83_c00090{left:218.400000px;}
.x14_c00090{left:219.450000px;}
.xe_c00090{left:220.950000px;}
.x1f_c00090{left:222.300000px;}
.x62_c00090{left:225.300000px;}
.x3f_c00090{left:227.700000px;}
.x4e_c00090{left:230.100000px;}
.x7b_c00090{left:232.650000px;}
.x6c_c00090{left:234.750000px;}
.x73_c00090{left:236.550000px;}
.x84_c00090{left:240.000000px;}
.x59_c00090{left:241.500000px;}
.x2e_c00090{left:243.150000px;}
.x2a_c00090{left:245.250000px;}
.x52_c00090{left:246.900000px;}
.x56_c00090{left:249.000000px;}
.x48_c00090{left:251.700000px;}
.x40_c00090{left:253.950000px;}
.x4f_c00090{left:255.300000px;}
.x35_c00090{left:257.250000px;}
.x9b_c00090{left:259.200000px;}
.x2f_c00090{left:260.850000px;}
.x69_c00090{left:263.700000px;}
.x20_c00090{left:264.750000px;}
.x5a_c00090{left:266.400000px;}
.x53_c00090{left:268.500000px;}
.x1a_c00090{left:270.450000px;}
.x9c_c00090{left:271.950000px;}
.x15_c00090{left:274.500000px;}
.x70_c00090{left:277.200000px;}
.x24_c00090{left:278.550000px;}
.x8_c00090{left:280.650000px;}
.x54_c00090{left:281.850000px;}
.x8e_c00090{left:283.200000px;}
.x43_c00090{left:285.300000px;}
.x36_c00090{left:288.150000px;}
.x1b_c00090{left:289.200000px;}
.x7f_c00090{left:291.300000px;}
.x30_c00090{left:293.250000px;}
.x5e_c00090{left:295.650000px;}
.x7d_c00090{left:298.800000px;}
.x57_c00090{left:300.150000px;}
.x3a_c00090{left:301.650000px;}
.x25_c00090{left:303.450000px;}
.x5b_c00090{left:306.000000px;}
.x2b_c00090{left:307.950000px;}
.x9_c00090{left:309.450000px;}
.x6e_c00090{left:311.550000px;}
.x49_c00090{left:313.650000px;}
.x87_c00090{left:317.100000px;}
.x8b_c00090{left:320.100000px;}
.x21_c00090{left:322.050000px;}
.x89_c00090{left:324.600000px;}
.x1_c00090{left:326.100000px;}
.x63_c00090{left:330.150000px;}
.x74_c00090{left:332.700000px;}
.x26_c00090{left:334.350000px;}
.xf_c00090{left:336.450000px;}
.x4a_c00090{left:340.650000px;}
.x50_c00090{left:342.450000px;}
.x41_c00090{left:343.950000px;}
.xa_c00090{left:346.500000px;}
.x44_c00090{left:348.000000px;}
.x16_c00090{left:349.650000px;}
.x27_c00090{left:352.050000px;}
.x5c_c00090{left:354.900000px;}
.x71_c00090{left:356.700000px;}
.x75_c00090{left:357.900000px;}
.x37_c00090{left:359.100000px;}
.x88_c00090{left:362.550000px;}
.x45_c00090{left:364.200000px;}
.x81_c00090{left:366.150000px;}
.x3b_c00090{left:367.950000px;}
.x7c_c00090{left:369.750000px;}
.x1c_c00090{left:370.950000px;}
.x10_c00090{left:372.450000px;}
.x2c_c00090{left:373.800000px;}
.x95_c00090{left:377.850000px;}
.x28_c00090{left:379.050000px;}
.x17_c00090{left:380.550000px;}
.x64_c00090{left:385.200000px;}
.x5f_c00090{left:387.000000px;}
.x4b_c00090{left:388.500000px;}
.x38_c00090{left:390.450000px;}
.x11_c00090{left:392.250000px;}
.x58_c00090{left:393.450000px;}
.x76_c00090{left:396.000000px;}
.x2d_c00090{left:401.550000px;}
.x7e_c00090{left:406.200000px;}
.x96_c00090{left:408.150000px;}
.x7a_c00090{left:409.350000px;}
.x67_c00090{left:416.700000px;}
.xfc_c00090{left:442.050000px;}
.x9d_c00090{left:444.300000px;}
.x116_c00090{left:455.850000px;}
.x106_c00090{left:459.450000px;}
.xc8_c00090{left:460.650000px;}
.xa5_c00090{left:462.000000px;}
.x135_c00090{left:464.100000px;}
.x119_c00090{left:470.550000px;}
.xe8_c00090{left:477.300000px;}
.xf7_c00090{left:478.500000px;}
.x132_c00090{left:481.350000px;}
.x110_c00090{left:484.500000px;}
.xd9_c00090{left:486.600000px;}
.x102_c00090{left:489.750000px;}
.xe3_c00090{left:490.950000px;}
.xf3_c00090{left:492.600000px;}
.xc9_c00090{left:493.800000px;}
.xd1_c00090{left:495.150000px;}
.xd5_c00090{left:498.150000px;}
.xb9_c00090{left:501.450000px;}
.xb5_c00090{left:502.650000px;}
.xa6_c00090{left:504.900000px;}
.xc1_c00090{left:506.850000px;}
.xdf_c00090{left:508.200000px;}
.xda_c00090{left:510.000000px;}
.xfd_c00090{left:512.700000px;}
.xae_c00090{left:515.100000px;}
.x103_c00090{left:517.800000px;}
.xf8_c00090{left:519.600000px;}
.xe9_c00090{left:522.300000px;}
.xba_c00090{left:524.550000px;}
.x108_c00090{left:527.850000px;}
.xed_c00090{left:529.050000px;}
.xa7_c00090{left:531.150000px;}
.x9e_c00090{left:532.500000px;}
.xc2_c00090{left:537.450000px;}
.x123_c00090{left:541.800000px;}
.x107_c00090{left:544.800000px;}
.xaf_c00090{left:546.000000px;}
.xa8_c00090{left:547.650000px;}
.x12c_c00090{left:549.150000px;}
.xb6_c00090{left:550.500000px;}
.xfe_c00090{left:552.000000px;}
.xee_c00090{left:553.950000px;}
.x10a_c00090{left:556.350000px;}
.x101_c00090{left:557.850000px;}
.x12f_c00090{left:559.800000px;}
.x11d_c00090{left:561.150000px;}
.xf4_c00090{left:562.800000px;}
.xe0_c00090{left:564.750000px;}
.xca_c00090{left:566.100000px;}
.x121_c00090{left:568.050000px;}
.xd2_c00090{left:569.250000px;}
.x10c_c00090{left:570.900000px;}
.x133_c00090{left:572.400000px;}
.xe4_c00090{left:573.450000px;}
.x9f_c00090{left:575.400000px;}
.xb0_c00090{left:578.100000px;}
.xa9_c00090{left:580.050000px;}
.xfb_c00090{left:581.250000px;}
.xe1_c00090{left:583.050000px;}
.xc3_c00090{left:584.550000px;}
.x130_c00090{left:586.050000px;}
.xbb_c00090{left:587.550000px;}
.xea_c00090{left:589.500000px;}
.x128_c00090{left:590.850000px;}
.xe5_c00090{left:593.550000px;}
.xdb_c00090{left:594.600000px;}
.xaa_c00090{left:597.750000px;}
.xff_c00090{left:599.850000px;}
.xcb_c00090{left:603.300000px;}
.x134_c00090{left:604.800000px;}
.xc4_c00090{left:605.850000px;}
.x12d_c00090{left:608.100000px;}
.x11f_c00090{left:609.600000px;}
.xdc_c00090{left:611.100000px;}
.x112_c00090{left:612.450000px;}
.x124_c00090{left:614.700000px;}
.x120_c00090{left:616.800000px;}
.xbc_c00090{left:619.650000px;}
.xc5_c00090{left:621.300000px;}
.x125_c00090{left:622.950000px;}
.xab_c00090{left:626.250000px;}
.xd6_c00090{left:628.350000px;}
.xef_c00090{left:630.300000px;}
.xb7_c00090{left:631.800000px;}
.xf6_c00090{left:633.000000px;}
.x10d_c00090{left:634.200000px;}
.xcc_c00090{left:635.700000px;}
.x117_c00090{left:638.700000px;}
.xe6_c00090{left:642.450000px;}
.xd7_c00090{left:643.800000px;}
.xac_c00090{left:645.750000px;}
.xa0_c00090{left:647.700000px;}
.x10e_c00090{left:651.150000px;}
.xeb_c00090{left:653.250000px;}
.xb1_c00090{left:655.200000px;}
.x104_c00090{left:656.850000px;}
.xa1_c00090{left:658.200000px;}
.xbd_c00090{left:660.000000px;}
.x129_c00090{left:662.850000px;}
.xdd_c00090{left:664.050000px;}
.xf0_c00090{left:665.550000px;}
.x113_c00090{left:667.500000px;}
.x100_c00090{left:670.650000px;}
.xd3_c00090{left:671.850000px;}
.x10f_c00090{left:676.350000px;}
.xe7_c00090{left:678.150000px;}
.xb2_c00090{left:681.900000px;}
.xbe_c00090{left:683.700000px;}
.xcd_c00090{left:686.100000px;}
.xf1_c00090{left:687.450000px;}
.x10b_c00090{left:688.500000px;}
.xb3_c00090{left:690.600000px;}
.x12e_c00090{left:692.250000px;}
.xc6_c00090{left:693.300000px;}
.xf9_c00090{left:695.700000px;}
.xb8_c00090{left:697.650000px;}
.x115_c00090{left:699.000000px;}
.x105_c00090{left:700.350000px;}
.xa2_c00090{left:701.700000px;}
.xce_c00090{left:703.350000px;}
.x11b_c00090{left:708.300000px;}
.x114_c00090{left:709.650000px;}
.xec_c00090{left:710.850000px;}
.x126_c00090{left:712.650000px;}
.xc7_c00090{left:714.900000px;}
.x12a_c00090{left:718.500000px;}
.x127_c00090{left:721.500000px;}
.xb4_c00090{left:723.750000px;}
.xcf_c00090{left:725.250000px;}
.xbf_c00090{left:726.900000px;}
.x131_c00090{left:727.950000px;}
.xde_c00090{left:729.900000px;}
.x118_c00090{left:731.100000px;}
.xf2_c00090{left:732.750000px;}
.x11e_c00090{left:736.350000px;}
.x11a_c00090{left:737.400000px;}
.x11c_c00090{left:738.900000px;}
.xd0_c00090{left:739.950000px;}
.xd4_c00090{left:741.750000px;}
.xd8_c00090{left:744.300000px;}
.xa3_c00090{left:745.950000px;}
.xe2_c00090{left:747.900000px;}
.xc0_c00090{left:751.050000px;}
.x109_c00090{left:753.300000px;}
.xfa_c00090{left:754.350000px;}
.x2_c00090{left:760.950000px;}
.x12b_c00090{left:763.200000px;}
.xad_c00090{left:765.300000px;}
.x122_c00090{left:767.100000px;}
.xa4_c00090{left:770.850000px;}
.x111_c00090{left:774.450000px;}
.xf5_c00090{left:776.700000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls1_c00090{letter-spacing:0.000000pt;}
.ls0_c00090{letter-spacing:80.000000pt;}
.wsc_c00090{word-spacing:-106.666667pt;}
.ws9_c00090{word-spacing:-11.786543pt;}
.wsa_c00090{word-spacing:-9.979622pt;}
.wsb_c00090{word-spacing:-9.941520pt;}
.ws3_c00090{word-spacing:-3.690476pt;}
.ws1_c00090{word-spacing:-0.767888pt;}
.ws8_c00090{word-spacing:-0.592593pt;}
.wse_c00090{word-spacing:0.000000pt;}
.ws2_c00090{word-spacing:0.480480pt;}
.ws0_c00090{word-spacing:4.519501pt;}
.wsd_c00090{word-spacing:4.692737pt;}
.ws7_c00090{word-spacing:17.689194pt;}
.ws4_c00090{word-spacing:24.642857pt;}
.ws5_c00090{word-spacing:39.259259pt;}
.ws6_c00090{word-spacing:65.185185pt;}
._1_c00090{margin-left:-80.000000pt;}
._0_c00090{width:62.222222pt;}
.fs5_c00090{font-size:42.666667pt;}
.fs4_c00090{font-size:48.000000pt;}
.fs3_c00090{font-size:53.333333pt;}
.fs2_c00090{font-size:58.666667pt;}
.fs1_c00090{font-size:64.000000pt;}
.fs0_c00090{font-size:74.666667pt;}
.y0_c00090{bottom:0.000000pt;}
.y6d_c00090{bottom:141.733333pt;}
.y6c_c00090{bottom:157.866667pt;}
.y38_c00090{bottom:158.400000pt;}
.y36_c00090{bottom:169.600000pt;}
.y37_c00090{bottom:171.200000pt;}
.y6b_c00090{bottom:173.866667pt;}
.y35_c00090{bottom:184.133333pt;}
.y6a_c00090{bottom:190.133333pt;}
.y34_c00090{bottom:197.200000pt;}
.y69_c00090{bottom:206.133333pt;}
.y33_c00090{bottom:210.266667pt;}
.y68_c00090{bottom:222.133333pt;}
.y32_c00090{bottom:222.400000pt;}
.y31_c00090{bottom:235.466667pt;}
.y67_c00090{bottom:238.133333pt;}
.y30_c00090{bottom:248.266667pt;}
.y66_c00090{bottom:254.133333pt;}
.y2f_c00090{bottom:261.200000pt;}
.y65_c00090{bottom:270.400000pt;}
.y2e_c00090{bottom:274.933333pt;}
.y64_c00090{bottom:286.400000pt;}
.y2d_c00090{bottom:296.266667pt;}
.y63_c00090{bottom:302.400000pt;}
.y2c_c00090{bottom:312.266667pt;}
.y62_c00090{bottom:318.400000pt;}
.y2b_c00090{bottom:334.400000pt;}
.y2a_c00090{bottom:348.533333pt;}
.y61_c00090{bottom:350.400000pt;}
.y29_c00090{bottom:364.533333pt;}
.y60_c00090{bottom:373.733333pt;}
.y28_c00090{bottom:380.533333pt;}
.y5f_c00090{bottom:386.533333pt;}
.y27_c00090{bottom:396.800000pt;}
.y5e_c00090{bottom:399.333333pt;}
.y5d_c00090{bottom:411.200000pt;}
.y26_c00090{bottom:416.266667pt;}
.y5c_c00090{bottom:424.933333pt;}
.y5b_c00090{bottom:437.466667pt;}
.y25_c00090{bottom:440.000000pt;}
.y5a_c00090{bottom:450.133333pt;}
.y24_c00090{bottom:460.133333pt;}
.y59_c00090{bottom:464.266667pt;}
.y23_c00090{bottom:476.133333pt;}
.y58_c00090{bottom:481.333333pt;}
.y22_c00090{bottom:492.133333pt;}
.y57_c00090{bottom:497.333333pt;}
.y21_c00090{bottom:508.133333pt;}
.y56_c00090{bottom:513.333333pt;}
.y20_c00090{bottom:524.133333pt;}
.y55_c00090{bottom:533.333333pt;}
.y1f_c00090{bottom:540.133333pt;}
.y54_c00090{bottom:549.600000pt;}
.y1e_c00090{bottom:555.866667pt;}
.y53_c00090{bottom:565.333333pt;}
.y1d_c00090{bottom:576.400000pt;}
.y52_c00090{bottom:582.666667pt;}
.y1c_c00090{bottom:592.400000pt;}
.y51_c00090{bottom:597.066667pt;}
.y1b_c00090{bottom:608.666667pt;}
.y50_c00090{bottom:612.533333pt;}
.y4f_c00090{bottom:617.333333pt;}
.y1a_c00090{bottom:624.666667pt;}
.y19_c00090{bottom:644.533333pt;}
.y4e_c00090{bottom:644.800000pt;}
.y18_c00090{bottom:660.800000pt;}
.y4d_c00090{bottom:661.066667pt;}
.y17_c00090{bottom:676.800000pt;}
.y4c_c00090{bottom:677.066667pt;}
.y16_c00090{bottom:692.800000pt;}
.y4b_c00090{bottom:696.666667pt;}
.y15_c00090{bottom:708.800000pt;}
.y4a_c00090{bottom:717.066667pt;}
.y14_c00090{bottom:724.800000pt;}
.y49_c00090{bottom:732.800000pt;}
.y13_c00090{bottom:740.800000pt;}
.y48_c00090{bottom:753.466667pt;}
.y12_c00090{bottom:756.800000pt;}
.y47_c00090{bottom:769.733333pt;}
.y11_c00090{bottom:772.800000pt;}
.y46_c00090{bottom:785.066667pt;}
.y10_c00090{bottom:789.066667pt;}
.y45_c00090{bottom:801.333333pt;}
.yf_c00090{bottom:805.066667pt;}
.y44_c00090{bottom:817.066667pt;}
.ye_c00090{bottom:821.066667pt;}
.y43_c00090{bottom:833.333333pt;}
.yd_c00090{bottom:837.066667pt;}
.y42_c00090{bottom:849.066667pt;}
.yc_c00090{bottom:853.066667pt;}
.y41_c00090{bottom:865.066667pt;}
.yb_c00090{bottom:869.066667pt;}
.y40_c00090{bottom:881.333333pt;}
.ya_c00090{bottom:885.066667pt;}
.y3f_c00090{bottom:897.066667pt;}
.y9_c00090{bottom:901.066667pt;}
.y3e_c00090{bottom:913.333333pt;}
.y8_c00090{bottom:917.066667pt;}
.y3d_c00090{bottom:929.333333pt;}
.y7_c00090{bottom:933.066667pt;}
.y3c_c00090{bottom:945.333333pt;}
.y6_c00090{bottom:949.066667pt;}
.y3b_c00090{bottom:961.066667pt;}
.y5_c00090{bottom:964.800000pt;}
.y3a_c00090{bottom:977.066667pt;}
.y4_c00090{bottom:981.066667pt;}
.y39_c00090{bottom:993.333333pt;}
.y3_c00090{bottom:997.066667pt;}
.y2_c00090{bottom:1015.733333pt;}
.y1_c00090{bottom:1018.933333pt;}
.h7_c00090{height:42.666667pt;}
.h6_c00090{height:48.000000pt;}
.h5_c00090{height:53.333333pt;}
.h4_c00090{height:58.666667pt;}
.h3_c00090{height:64.000000pt;}
.h2_c00090{height:74.666667pt;}
.h0_c00090{height:1131.200032pt;}
.h1_c00090{height:1131.333333pt;}
.w1_c00090{width:847.333333pt;}
.w0_c00090{width:847.360027pt;}
.x0_c00090{left:0.000000pt;}
.x8f_c00090{left:64.000000pt;}
.x8c_c00090{left:65.066667pt;}
.x78_c00090{left:67.200000pt;}
.x93_c00090{left:79.066667pt;}
.x91_c00090{left:81.200000pt;}
.x8a_c00090{left:84.666667pt;}
.x46_c00090{left:86.266667pt;}
.x3_c00090{left:87.333333pt;}
.x3c_c00090{left:88.400000pt;}
.x5d_c00090{left:89.333333pt;}
.x65_c00090{left:91.466667pt;}
.x97_c00090{left:94.266667pt;}
.x99_c00090{left:96.000000pt;}
.x85_c00090{left:103.733333pt;}
.x6d_c00090{left:104.666667pt;}
.x31_c00090{left:106.133333pt;}
.x12_c00090{left:109.733333pt;}
.x18_c00090{left:112.000000pt;}
.x4_c00090{left:114.533333pt;}
.xb_c00090{left:115.733333pt;}
.x98_c00090{left:116.933333pt;}
.x80_c00090{left:118.800000pt;}
.x9a_c00090{left:119.733333pt;}
.x6a_c00090{left:121.733333pt;}
.x1d_c00090{left:123.600000pt;}
.x60_c00090{left:126.400000pt;}
.x79_c00090{left:129.333333pt;}
.x32_c00090{left:131.066667pt;}
.x5_c00090{left:132.800000pt;}
.x4c_c00090{left:135.066667pt;}
.x19_c00090{left:136.666667pt;}
.x77_c00090{left:137.600000pt;}
.xc_c00090{left:139.066667pt;}
.x3d_c00090{left:140.000000pt;}
.x68_c00090{left:141.866667pt;}
.x61_c00090{left:143.333333pt;}
.x22_c00090{left:144.800000pt;}
.x55_c00090{left:146.000000pt;}
.x6f_c00090{left:147.600000pt;}
.x42_c00090{left:148.933333pt;}
.x3e_c00090{left:150.266667pt;}
.x39_c00090{left:152.133333pt;}
.x1e_c00090{left:154.666667pt;}
.x51_c00090{left:155.733333pt;}
.x82_c00090{left:158.000000pt;}
.x23_c00090{left:158.933333pt;}
.x94_c00090{left:160.933333pt;}
.x47_c00090{left:162.666667pt;}
.x72_c00090{left:164.133333pt;}
.x29_c00090{left:165.466667pt;}
.x90_c00090{left:166.400000pt;}
.x6_c00090{left:168.266667pt;}
.x4d_c00090{left:169.600000pt;}
.x8d_c00090{left:171.733333pt;}
.x33_c00090{left:176.133333pt;}
.xd_c00090{left:177.200000pt;}
.x13_c00090{left:180.400000pt;}
.x6b_c00090{left:182.800000pt;}
.x66_c00090{left:184.533333pt;}
.x34_c00090{left:186.400000pt;}
.x92_c00090{left:187.733333pt;}
.x86_c00090{left:190.400000pt;}
.x7_c00090{left:191.600000pt;}
.x83_c00090{left:194.133333pt;}
.x14_c00090{left:195.066667pt;}
.xe_c00090{left:196.400000pt;}
.x1f_c00090{left:197.600000pt;}
.x62_c00090{left:200.266667pt;}
.x3f_c00090{left:202.400000pt;}
.x4e_c00090{left:204.533333pt;}
.x7b_c00090{left:206.800000pt;}
.x6c_c00090{left:208.666667pt;}
.x73_c00090{left:210.266667pt;}
.x84_c00090{left:213.333333pt;}
.x59_c00090{left:214.666667pt;}
.x2e_c00090{left:216.133333pt;}
.x2a_c00090{left:218.000000pt;}
.x52_c00090{left:219.466667pt;}
.x56_c00090{left:221.333333pt;}
.x48_c00090{left:223.733333pt;}
.x40_c00090{left:225.733333pt;}
.x4f_c00090{left:226.933333pt;}
.x35_c00090{left:228.666667pt;}
.x9b_c00090{left:230.400000pt;}
.x2f_c00090{left:231.866667pt;}
.x69_c00090{left:234.400000pt;}
.x20_c00090{left:235.333333pt;}
.x5a_c00090{left:236.800000pt;}
.x53_c00090{left:238.666667pt;}
.x1a_c00090{left:240.400000pt;}
.x9c_c00090{left:241.733333pt;}
.x15_c00090{left:244.000000pt;}
.x70_c00090{left:246.400000pt;}
.x24_c00090{left:247.600000pt;}
.x8_c00090{left:249.466667pt;}
.x54_c00090{left:250.533333pt;}
.x8e_c00090{left:251.733333pt;}
.x43_c00090{left:253.600000pt;}
.x36_c00090{left:256.133333pt;}
.x1b_c00090{left:257.066667pt;}
.x7f_c00090{left:258.933333pt;}
.x30_c00090{left:260.666667pt;}
.x5e_c00090{left:262.800000pt;}
.x7d_c00090{left:265.600000pt;}
.x57_c00090{left:266.800000pt;}
.x3a_c00090{left:268.133333pt;}
.x25_c00090{left:269.733333pt;}
.x5b_c00090{left:272.000000pt;}
.x2b_c00090{left:273.733333pt;}
.x9_c00090{left:275.066667pt;}
.x6e_c00090{left:276.933333pt;}
.x49_c00090{left:278.800000pt;}
.x87_c00090{left:281.866667pt;}
.x8b_c00090{left:284.533333pt;}
.x21_c00090{left:286.266667pt;}
.x89_c00090{left:288.533333pt;}
.x1_c00090{left:289.866667pt;}
.x63_c00090{left:293.466667pt;}
.x74_c00090{left:295.733333pt;}
.x26_c00090{left:297.200000pt;}
.xf_c00090{left:299.066667pt;}
.x4a_c00090{left:302.800000pt;}
.x50_c00090{left:304.400000pt;}
.x41_c00090{left:305.733333pt;}
.xa_c00090{left:308.000000pt;}
.x44_c00090{left:309.333333pt;}
.x16_c00090{left:310.800000pt;}
.x27_c00090{left:312.933333pt;}
.x5c_c00090{left:315.466667pt;}
.x71_c00090{left:317.066667pt;}
.x75_c00090{left:318.133333pt;}
.x37_c00090{left:319.200000pt;}
.x88_c00090{left:322.266667pt;}
.x45_c00090{left:323.733333pt;}
.x81_c00090{left:325.466667pt;}
.x3b_c00090{left:327.066667pt;}
.x7c_c00090{left:328.666667pt;}
.x1c_c00090{left:329.733333pt;}
.x10_c00090{left:331.066667pt;}
.x2c_c00090{left:332.266667pt;}
.x95_c00090{left:335.866667pt;}
.x28_c00090{left:336.933333pt;}
.x17_c00090{left:338.266667pt;}
.x64_c00090{left:342.400000pt;}
.x5f_c00090{left:344.000000pt;}
.x4b_c00090{left:345.333333pt;}
.x38_c00090{left:347.066667pt;}
.x11_c00090{left:348.666667pt;}
.x58_c00090{left:349.733333pt;}
.x76_c00090{left:352.000000pt;}
.x2d_c00090{left:356.933333pt;}
.x7e_c00090{left:361.066667pt;}
.x96_c00090{left:362.800000pt;}
.x7a_c00090{left:363.866667pt;}
.x67_c00090{left:370.400000pt;}
.xfc_c00090{left:392.933333pt;}
.x9d_c00090{left:394.933333pt;}
.x116_c00090{left:405.200000pt;}
.x106_c00090{left:408.400000pt;}
.xc8_c00090{left:409.466667pt;}
.xa5_c00090{left:410.666667pt;}
.x135_c00090{left:412.533333pt;}
.x119_c00090{left:418.266667pt;}
.xe8_c00090{left:424.266667pt;}
.xf7_c00090{left:425.333333pt;}
.x132_c00090{left:427.866667pt;}
.x110_c00090{left:430.666667pt;}
.xd9_c00090{left:432.533333pt;}
.x102_c00090{left:435.333333pt;}
.xe3_c00090{left:436.400000pt;}
.xf3_c00090{left:437.866667pt;}
.xc9_c00090{left:438.933333pt;}
.xd1_c00090{left:440.133333pt;}
.xd5_c00090{left:442.800000pt;}
.xb9_c00090{left:445.733333pt;}
.xb5_c00090{left:446.800000pt;}
.xa6_c00090{left:448.800000pt;}
.xc1_c00090{left:450.533333pt;}
.xdf_c00090{left:451.733333pt;}
.xda_c00090{left:453.333333pt;}
.xfd_c00090{left:455.733333pt;}
.xae_c00090{left:457.866667pt;}
.x103_c00090{left:460.266667pt;}
.xf8_c00090{left:461.866667pt;}
.xe9_c00090{left:464.266667pt;}
.xba_c00090{left:466.266667pt;}
.x108_c00090{left:469.200000pt;}
.xed_c00090{left:470.266667pt;}
.xa7_c00090{left:472.133333pt;}
.x9e_c00090{left:473.333333pt;}
.xc2_c00090{left:477.733333pt;}
.x123_c00090{left:481.600000pt;}
.x107_c00090{left:484.266667pt;}
.xaf_c00090{left:485.333333pt;}
.xa8_c00090{left:486.800000pt;}
.x12c_c00090{left:488.133333pt;}
.xb6_c00090{left:489.333333pt;}
.xfe_c00090{left:490.666667pt;}
.xee_c00090{left:492.400000pt;}
.x10a_c00090{left:494.533333pt;}
.x101_c00090{left:495.866667pt;}
.x12f_c00090{left:497.600000pt;}
.x11d_c00090{left:498.800000pt;}
.xf4_c00090{left:500.266667pt;}
.xe0_c00090{left:502.000000pt;}
.xca_c00090{left:503.200000pt;}
.x121_c00090{left:504.933333pt;}
.xd2_c00090{left:506.000000pt;}
.x10c_c00090{left:507.466667pt;}
.x133_c00090{left:508.800000pt;}
.xe4_c00090{left:509.733333pt;}
.x9f_c00090{left:511.466667pt;}
.xb0_c00090{left:513.866667pt;}
.xa9_c00090{left:515.600000pt;}
.xfb_c00090{left:516.666667pt;}
.xe1_c00090{left:518.266667pt;}
.xc3_c00090{left:519.600000pt;}
.x130_c00090{left:520.933333pt;}
.xbb_c00090{left:522.266667pt;}
.xea_c00090{left:524.000000pt;}
.x128_c00090{left:525.200000pt;}
.xe5_c00090{left:527.600000pt;}
.xdb_c00090{left:528.533333pt;}
.xaa_c00090{left:531.333333pt;}
.xff_c00090{left:533.200000pt;}
.xcb_c00090{left:536.266667pt;}
.x134_c00090{left:537.600000pt;}
.xc4_c00090{left:538.533333pt;}
.x12d_c00090{left:540.533333pt;}
.x11f_c00090{left:541.866667pt;}
.xdc_c00090{left:543.200000pt;}
.x112_c00090{left:544.400000pt;}
.x124_c00090{left:546.400000pt;}
.x120_c00090{left:548.266667pt;}
.xbc_c00090{left:550.800000pt;}
.xc5_c00090{left:552.266667pt;}
.x125_c00090{left:553.733333pt;}
.xab_c00090{left:556.666667pt;}
.xd6_c00090{left:558.533333pt;}
.xef_c00090{left:560.266667pt;}
.xb7_c00090{left:561.600000pt;}
.xf6_c00090{left:562.666667pt;}
.x10d_c00090{left:563.733333pt;}
.xcc_c00090{left:565.066667pt;}
.x117_c00090{left:567.733333pt;}
.xe6_c00090{left:571.066667pt;}
.xd7_c00090{left:572.266667pt;}
.xac_c00090{left:574.000000pt;}
.xa0_c00090{left:575.733333pt;}
.x10e_c00090{left:578.800000pt;}
.xeb_c00090{left:580.666667pt;}
.xb1_c00090{left:582.400000pt;}
.x104_c00090{left:583.866667pt;}
.xa1_c00090{left:585.066667pt;}
.xbd_c00090{left:586.666667pt;}
.x129_c00090{left:589.200000pt;}
.xdd_c00090{left:590.266667pt;}
.xf0_c00090{left:591.600000pt;}
.x113_c00090{left:593.333333pt;}
.x100_c00090{left:596.133333pt;}
.xd3_c00090{left:597.200000pt;}
.x10f_c00090{left:601.200000pt;}
.xe7_c00090{left:602.800000pt;}
.xb2_c00090{left:606.133333pt;}
.xbe_c00090{left:607.733333pt;}
.xcd_c00090{left:609.866667pt;}
.xf1_c00090{left:611.066667pt;}
.x10b_c00090{left:612.000000pt;}
.xb3_c00090{left:613.866667pt;}
.x12e_c00090{left:615.333333pt;}
.xc6_c00090{left:616.266667pt;}
.xf9_c00090{left:618.400000pt;}
.xb8_c00090{left:620.133333pt;}
.x115_c00090{left:621.333333pt;}
.x105_c00090{left:622.533333pt;}
.xa2_c00090{left:623.733333pt;}
.xce_c00090{left:625.200000pt;}
.x11b_c00090{left:629.600000pt;}
.x114_c00090{left:630.800000pt;}
.xec_c00090{left:631.866667pt;}
.x126_c00090{left:633.466667pt;}
.xc7_c00090{left:635.466667pt;}
.x12a_c00090{left:638.666667pt;}
.x127_c00090{left:641.333333pt;}
.xb4_c00090{left:643.333333pt;}
.xcf_c00090{left:644.666667pt;}
.xbf_c00090{left:646.133333pt;}
.x131_c00090{left:647.066667pt;}
.xde_c00090{left:648.800000pt;}
.x118_c00090{left:649.866667pt;}
.xf2_c00090{left:651.333333pt;}
.x11e_c00090{left:654.533333pt;}
.x11a_c00090{left:655.466667pt;}
.x11c_c00090{left:656.800000pt;}
.xd0_c00090{left:657.733333pt;}
.xd4_c00090{left:659.333333pt;}
.xd8_c00090{left:661.600000pt;}
.xa3_c00090{left:663.066667pt;}
.xe2_c00090{left:664.800000pt;}
.xc0_c00090{left:667.600000pt;}
.x109_c00090{left:669.600000pt;}
.xfa_c00090{left:670.533333pt;}
.x2_c00090{left:676.400000pt;}
.x12b_c00090{left:678.400000pt;}
.xad_c00090{left:680.266667pt;}
.x122_c00090{left:681.866667pt;}
.xa4_c00090{left:685.200000pt;}
.x111_c00090{left:688.400000pt;}
.xf5_c00090{left:690.400000pt;}
}





/* 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_c00091 {
    display:none;
  }
  .loading-indicator_c00091.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00091 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_c00091 { 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_c00091" -> "#page-container .classname_c00091")
 */
.pf_c00091 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00091 { /* 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_c00091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00091 { /* 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_c00091 { /* 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_c00091 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00091 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00091 {overflow:visible;}
  }
}
.c_c00091 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00091 { /* 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_c00091:after { /* webkit #35443 */
  content: '';
}
.t_c00091:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00091 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 */
}
.__c00091 { /* 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_c00091 { /* info for Javascript */
  display:none;
}
.l_c00091 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00091 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00091 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00091: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_c00091 {
    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_c00091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00091.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_c00091 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00091;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.000000;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;}
.m8b_c00091{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m80_c00091{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00091{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00091{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00091{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md7_c00091{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00091{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00091{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m71_c00091{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mff_c00091{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00091{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m94_c00091{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00091{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m91_c00091{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m92_c00091{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00091{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00091{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00091{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.me9_c00091{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00091{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00091{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00091{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00091{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md6_c00091{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m88_c00091{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mb_c00091{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00091{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m72_c00091{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00091{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00091{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m102_c00091{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mf_c00091{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00091{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00091{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00091{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m26_c00091{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m54_c00091{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m112_c00091{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m58_c00091{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00091{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m108_c00091{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00091{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m73_c00091{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00091{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m113_c00091{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00091{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mae_c00091{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me4_c00091{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00091{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m63_c00091{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m84_c00091{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m32_c00091{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m70_c00091{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00091{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00091{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00091{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m86_c00091{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m76_c00091{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m41_c00091{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m74_c00091{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mef_c00091{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m24_c00091{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m27_c00091{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00091{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m19_c00091{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00091{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mc_c00091{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m89_c00091{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.maf_c00091{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00091{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mba_c00091{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m111_c00091{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m50_c00091{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m52_c00091{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m51_c00091{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00091{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me7_c00091{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.me_c00091{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m33_c00091{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00091{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00091{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m107_c00091{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m110_c00091{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mab_c00091{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6_c00091{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m57_c00091{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m23_c00091{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00091{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me8_c00091{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00091{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00091{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m8_c00091{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00091{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00091{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00091{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00091{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00091{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00091{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m42_c00091{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00091{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00091{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m55_c00091{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mec_c00091{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m53_c00091{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me2_c00091{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m106_c00091{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00091{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m81_c00091{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00091{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3_c00091{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m12_c00091{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00091{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00091{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.maa_c00091{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00091{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m105_c00091{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m25_c00091{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m36_c00091{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m38_c00091{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00091{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00091{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00091{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00091{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mad_c00091{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9_c00091{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m56_c00091{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m11_c00091{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m62_c00091{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m22_c00091{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m49_c00091{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m87_c00091{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00091{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4_c00091{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00091{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00091{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00091{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m28_c00091{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m90_c00091{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me3_c00091{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00091{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00091{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00091{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m30_c00091{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00091{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00091{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m60_c00091{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m79_c00091{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00091{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00091{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00091{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.md_c00091{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00091{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m45_c00091{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m48_c00091{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00091{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m109_c00091{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7_c00091{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m18_c00091{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00091{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md9_c00091{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m31_c00091{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m59_c00091{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me0_c00091{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00091{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5_c00091{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00091{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m47_c00091{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m34_c00091{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00091{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00091{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00091{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00091{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m101_c00091{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00091{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00091{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00091{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m21_c00091{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00091{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00091{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m39_c00091{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00091{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mde_c00091{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00091{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md1_c00091{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m46_c00091{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00091{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00091{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m15_c00091{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00091{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m37_c00091{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00091{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10_c00091{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00091{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m99_c00091{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m44_c00091{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00091{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.ma_c00091{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m13_c00091{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md8_c00091{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m17_c00091{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m61_c00091{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m103_c00091{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m16_c00091{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m29_c00091{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00091{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m43_c00091{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00091{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me6_c00091{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m40_c00091{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00091{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m66_c00091{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00091{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m64_c00091{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00091{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00091{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m100_c00091{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00091{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00091{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.me5_c00091{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00091{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00091{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00091{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mea_c00091{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00091{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m14_c00091{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m104_c00091{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m83_c00091{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mee_c00091{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00091{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00091{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m93_c00091{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00091{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m35_c00091{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00091{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00091{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mda_c00091{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00091{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m20_c00091{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.med_c00091{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.mac_c00091{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00091{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m98_c00091{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md2_c00091{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m75_c00091{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00091{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.meb_c00091{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00091{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00091{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00091{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m78_c00091{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.md0_c00091{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m82_c00091{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00091{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m0_c00091{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m67_c00091{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m95_c00091{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00091{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mce_c00091{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m68_c00091{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00091{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m65_c00091{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m85_c00091{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.me1_c00091{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00091{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m77_c00091{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00091{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.m96_c00091{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md4_c00091{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00091{transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);}
.mca_c00091{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.md3_c00091{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m97_c00091{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00091{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.md5_c00091{transform:matrix(0.605250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605250,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls0_c00091{letter-spacing:0.000000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{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__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00091{word-spacing:-9.250000px;}
.ws9_c00091{word-spacing:-5.986900px;}
.ws1_c00091{word-spacing:-0.312500px;}
.wsc_c00091{word-spacing:0.000000px;}
.ws8_c00091{word-spacing:0.740741px;}
.ws7_c00091{word-spacing:3.816619px;}
.ws6_c00091{word-spacing:7.676856px;}
.ws5_c00091{word-spacing:9.133758px;}
.wsb_c00091{word-spacing:14.722222px;}
.ws2_c00091{word-spacing:22.142857px;}
.ws0_c00091{word-spacing:29.285714px;}
.wsa_c00091{word-spacing:35.222743px;}
.ws3_c00091{word-spacing:101.875000px;}
.fc0_c00091{color:transparent;}
.fs5_c00091{font-size:30.000000px;}
.fs6_c00091{font-size:36.000000px;}
.fs4_c00091{font-size:54.000000px;}
.fs3_c00091{font-size:60.000000px;}
.fs2_c00091{font-size:66.000000px;}
.fs0_c00091{font-size:72.000000px;}
.fs1_c00091{font-size:84.000000px;}
.y0_c00091{bottom:0.000000px;}
.y6c_c00091{bottom:169.500000px;}
.y3a_c00091{bottom:174.300000px;}
.y6b_c00091{bottom:184.650000px;}
.y39_c00091{bottom:192.600000px;}
.y6a_c00091{bottom:199.500000px;}
.y38_c00091{bottom:210.600000px;}
.y69_c00091{bottom:213.900000px;}
.y37_c00091{bottom:228.600000px;}
.y68_c00091{bottom:243.000000px;}
.y36_c00091{bottom:246.600000px;}
.y67_c00091{bottom:257.700000px;}
.y35_c00091{bottom:264.900000px;}
.y34_c00091{bottom:282.600000px;}
.y66_c00091{bottom:297.300000px;}
.y33_c00091{bottom:300.600000px;}
.y65_c00091{bottom:315.300000px;}
.y32_c00091{bottom:318.300000px;}
.y64_c00091{bottom:333.300000px;}
.y31_c00091{bottom:336.300000px;}
.y63_c00091{bottom:349.800000px;}
.y30_c00091{bottom:354.300000px;}
.y62_c00091{bottom:362.400000px;}
.y2f_c00091{bottom:372.000000px;}
.y61_c00091{bottom:378.300000px;}
.y2e_c00091{bottom:390.000000px;}
.y60_c00091{bottom:396.300000px;}
.y2d_c00091{bottom:408.000000px;}
.y5f_c00091{bottom:419.100000px;}
.y2c_c00091{bottom:426.000000px;}
.y5e_c00091{bottom:437.100000px;}
.y2b_c00091{bottom:444.300000px;}
.y5d_c00091{bottom:455.100000px;}
.y27_c00091{bottom:469.050000px;}
.y2a_c00091{bottom:469.800000px;}
.y5c_c00091{bottom:473.100000px;}
.y26_c00091{bottom:483.450000px;}
.y29_c00091{bottom:483.900000px;}
.y5b_c00091{bottom:495.450000px;}
.y25_c00091{bottom:497.100000px;}
.y24_c00091{bottom:497.850000px;}
.y28_c00091{bottom:498.600000px;}
.y23_c00091{bottom:512.550000px;}
.y5a_c00091{bottom:513.750000px;}
.y22_c00091{bottom:528.450000px;}
.y59_c00091{bottom:540.750000px;}
.y21_c00091{bottom:547.500000px;}
.y58_c00091{bottom:563.400000px;}
.y20_c00091{bottom:565.500000px;}
.y57_c00091{bottom:581.400000px;}
.y1f_c00091{bottom:583.200000px;}
.y56_c00091{bottom:599.400000px;}
.y1e_c00091{bottom:601.200000px;}
.y55_c00091{bottom:621.750000px;}
.y1d_c00091{bottom:623.850000px;}
.y1c_c00091{bottom:641.850000px;}
.y54_c00091{bottom:644.100000px;}
.y1b_c00091{bottom:663.450000px;}
.y53_c00091{bottom:666.000000px;}
.y1a_c00091{bottom:681.450000px;}
.y52_c00091{bottom:684.000000px;}
.y51_c00091{bottom:706.650000px;}
.y19_c00091{bottom:708.750000px;}
.y50_c00091{bottom:724.350000px;}
.y18_c00091{bottom:731.100000px;}
.y4f_c00091{bottom:747.000000px;}
.y17_c00091{bottom:753.750000px;}
.y4e_c00091{bottom:769.650000px;}
.y16_c00091{bottom:771.750000px;}
.y4d_c00091{bottom:787.350000px;}
.y15_c00091{bottom:789.750000px;}
.y14_c00091{bottom:807.750000px;}
.y4b_c00091{bottom:810.000000px;}
.y13_c00091{bottom:825.450000px;}
.y4a_c00091{bottom:829.500000px;}
.y49_c00091{bottom:837.000000px;}
.y4c_c00091{bottom:837.300000px;}
.y12_c00091{bottom:843.450000px;}
.y48_c00091{bottom:846.300000px;}
.y47_c00091{bottom:856.800000px;}
.y11_c00091{bottom:861.450000px;}
.y46_c00091{bottom:868.350000px;}
.y10_c00091{bottom:879.450000px;}
.y45_c00091{bottom:892.350000px;}
.yf_c00091{bottom:897.450000px;}
.ye_c00091{bottom:915.150000px;}
.y44_c00091{bottom:919.050000px;}
.yd_c00091{bottom:933.150000px;}
.y43_c00091{bottom:945.750000px;}
.yc_c00091{bottom:951.150000px;}
.y42_c00091{bottom:963.750000px;}
.yb_c00091{bottom:969.150000px;}
.y41_c00091{bottom:986.100000px;}
.ya_c00091{bottom:986.850000px;}
.y40_c00091{bottom:1004.700000px;}
.y9_c00091{bottom:1004.850000px;}
.y3f_c00091{bottom:1022.700000px;}
.y8_c00091{bottom:1023.150000px;}
.y3e_c00091{bottom:1040.700000px;}
.y7_c00091{bottom:1040.850000px;}
.y6_c00091{bottom:1058.850000px;}
.y3d_c00091{bottom:1059.150000px;}
.y5_c00091{bottom:1076.850000px;}
.y3c_c00091{bottom:1077.150000px;}
.y4_c00091{bottom:1095.150000px;}
.y3_c00091{bottom:1112.400000px;}
.y3b_c00091{bottom:1112.700000px;}
.y1_c00091{bottom:1138.650000px;}
.y2_c00091{bottom:1138.950000px;}
.h7_c00091{height:30.000000px;}
.h8_c00091{height:36.000000px;}
.h6_c00091{height:54.000000px;}
.h5_c00091{height:60.000000px;}
.h4_c00091{height:66.000000px;}
.h2_c00091{height:72.000000px;}
.h3_c00091{height:84.000000px;}
.h0_c00091{height:1269.720063px;}
.h1_c00091{height:1269.750000px;}
.w1_c00091{width:953.250000px;}
.w0_c00091{width:953.280030px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:177.150000px;}
.x71_c00091{left:178.950000px;}
.x72_c00091{left:180.000000px;}
.x89_c00091{left:192.300000px;}
.x76_c00091{left:195.150000px;}
.x3_c00091{left:196.500000px;}
.x13_c00091{left:197.700000px;}
.x8c_c00091{left:207.000000px;}
.x8e_c00091{left:208.950000px;}
.x73_c00091{left:212.100000px;}
.x9c_c00091{left:214.350000px;}
.x4_c00091{left:216.600000px;}
.x34_c00091{left:217.950000px;}
.x95_c00091{left:219.150000px;}
.x7f_c00091{left:220.350000px;}
.x8a_c00091{left:221.400000px;}
.x7a_c00091{left:226.950000px;}
.x69_c00091{left:228.750000px;}
.x24_c00091{left:230.550000px;}
.xb_c00091{left:231.900000px;}
.x30_c00091{left:233.850000px;}
.x86_c00091{left:235.050000px;}
.x8b_c00091{left:237.300000px;}
.x1a_c00091{left:239.400000px;}
.x35_c00091{left:241.350000px;}
.x84_c00091{left:243.450000px;}
.x14_c00091{left:246.000000px;}
.x7b_c00091{left:247.500000px;}
.x59_c00091{left:249.300000px;}
.x5e_c00091{left:250.500000px;}
.xc_c00091{left:251.700000px;}
.x3d_c00091{left:252.750000px;}
.x1b_c00091{left:258.450000px;}
.x9f_c00091{left:260.400000px;}
.x2a_c00091{left:261.450000px;}
.x15_c00091{left:262.500000px;}
.x48_c00091{left:264.900000px;}
.x85_c00091{left:267.600000px;}
.x62_c00091{left:268.950000px;}
.x20_c00091{left:270.900000px;}
.x87_c00091{left:272.850000px;}
.x4f_c00091{left:274.500000px;}
.x77_c00091{left:277.200000px;}
.x96_c00091{left:278.250000px;}
.x36_c00091{left:279.450000px;}
.x2b_c00091{left:280.500000px;}
.x5_c00091{left:282.150000px;}
.xa2_c00091{left:284.700000px;}
.x5f_c00091{left:287.550000px;}
.x80_c00091{left:288.750000px;}
.x50_c00091{left:290.700000px;}
.x49_c00091{left:294.750000px;}
.x66_c00091{left:297.600000px;}
.x97_c00091{left:299.100000px;}
.x6a_c00091{left:300.450000px;}
.x74_c00091{left:301.650000px;}
.x5a_c00091{left:303.000000px;}
.x31_c00091{left:304.800000px;}
.x99_c00091{left:306.000000px;}
.x91_c00091{left:309.300000px;}
.xd_c00091{left:311.400000px;}
.x41_c00091{left:312.600000px;}
.x25_c00091{left:315.150000px;}
.x55_c00091{left:316.200000px;}
.x16_c00091{left:317.550000px;}
.x37_c00091{left:318.750000px;}
.x3e_c00091{left:320.400000px;}
.x2c_c00091{left:322.650000px;}
.x32_c00091{left:325.650000px;}
.x51_c00091{left:327.000000px;}
.x38_c00091{left:329.850000px;}
.x92_c00091{left:331.200000px;}
.x9a_c00091{left:332.700000px;}
.x1c_c00091{left:333.750000px;}
.x67_c00091{left:335.700000px;}
.x56_c00091{left:337.050000px;}
.x6_c00091{left:338.250000px;}
.x78_c00091{left:340.950000px;}
.x45_c00091{left:342.900000px;}
.x21_c00091{left:345.000000px;}
.xe_c00091{left:347.400000px;}
.x52_c00091{left:349.650000px;}
.x90_c00091{left:351.300000px;}
.x1d_c00091{left:352.800000px;}
.x60_c00091{left:354.450000px;}
.x6f_c00091{left:355.650000px;}
.x6b_c00091{left:357.000000px;}
.x7_c00091{left:358.350000px;}
.x9d_c00091{left:361.650000px;}
.x4a_c00091{left:363.900000px;}
.x42_c00091{left:365.100000px;}
.xf_c00091{left:368.250000px;}
.x26_c00091{left:370.200000px;}
.x5b_c00091{left:371.400000px;}
.x81_c00091{left:373.350000px;}
.x57_c00091{left:375.600000px;}
.x82_c00091{left:376.950000px;}
.x7c_c00091{left:379.200000px;}
.x6c_c00091{left:380.400000px;}
.x63_c00091{left:381.600000px;}
.x46_c00091{left:384.000000px;}
.x5c_c00091{left:385.800000px;}
.x2d_c00091{left:387.150000px;}
.x1e_c00091{left:389.100000px;}
.x98_c00091{left:390.300000px;}
.x83_c00091{left:392.100000px;}
.x43_c00091{left:393.600000px;}
.x3f_c00091{left:395.250000px;}
.x70_c00091{left:396.300000px;}
.x6d_c00091{left:397.650000px;}
.x22_c00091{left:398.700000px;}
.x53_c00091{left:399.750000px;}
.x4b_c00091{left:401.400000px;}
.x93_c00091{left:403.200000px;}
.x33_c00091{left:405.300000px;}
.x39_c00091{left:407.250000px;}
.x1f_c00091{left:409.200000px;}
.x2e_c00091{left:410.850000px;}
.x9e_c00091{left:412.050000px;}
.xa3_c00091{left:414.300000px;}
.x8_c00091{left:417.000000px;}
.x68_c00091{left:418.200000px;}
.x2_c00091{left:420.150000px;}
.x8d_c00091{left:423.000000px;}
.x27_c00091{left:424.950000px;}
.x17_c00091{left:427.650000px;}
.x10_c00091{left:429.150000px;}
.x54_c00091{left:430.350000px;}
.x64_c00091{left:433.050000px;}
.x3a_c00091{left:436.050000px;}
.x75_c00091{left:438.450000px;}
.x4c_c00091{left:440.700000px;}
.x7d_c00091{left:442.200000px;}
.x61_c00091{left:444.750000px;}
.x9_c00091{left:445.800000px;}
.x18_c00091{left:448.200000px;}
.x28_c00091{left:451.200000px;}
.x4d_c00091{left:453.300000px;}
.xa4_c00091{left:454.650000px;}
.x11_c00091{left:455.850000px;}
.x2f_c00091{left:457.350000px;}
.x23_c00091{left:458.400000px;}
.x47_c00091{left:460.350000px;}
.x7e_c00091{left:461.700000px;}
.x5d_c00091{left:464.250000px;}
.x19_c00091{left:466.200000px;}
.xa0_c00091{left:467.700000px;}
.x65_c00091{left:468.750000px;}
.x79_c00091{left:471.300000px;}
.x8f_c00091{left:473.400000px;}
.x12_c00091{left:475.950000px;}
.x40_c00091{left:478.350000px;}
.xa_c00091{left:480.300000px;}
.x44_c00091{left:481.500000px;}
.x58_c00091{left:482.850000px;}
.x94_c00091{left:486.300000px;}
.x29_c00091{left:487.500000px;}
.xa1_c00091{left:488.550000px;}
.x6e_c00091{left:491.250000px;}
.x3b_c00091{left:493.650000px;}
.x9b_c00091{left:494.850000px;}
.x88_c00091{left:498.600000px;}
.x4e_c00091{left:501.600000px;}
.x3c_c00091{left:504.750000px;}
.x131_c00091{left:532.350000px;}
.x123_c00091{left:533.550000px;}
.xda_c00091{left:535.050000px;}
.xd3_c00091{left:536.100000px;}
.x10d_c00091{left:537.900000px;}
.x139_c00091{left:540.000000px;}
.x112_c00091{left:547.500000px;}
.x12c_c00091{left:548.700000px;}
.x129_c00091{left:550.950000px;}
.xa5_c00091{left:552.900000px;}
.xcb_c00091{left:554.100000px;}
.x13a_c00091{left:562.350000px;}
.x13e_c00091{left:563.550000px;}
.x10e_c00091{left:566.700000px;}
.x12d_c00091{left:569.550000px;}
.xec_c00091{left:571.350000px;}
.xea_c00091{left:572.850000px;}
.xf4_c00091{left:573.900000px;}
.x11b_c00091{left:575.850000px;}
.x11f_c00091{left:579.600000px;}
.xb2_c00091{left:584.250000px;}
.xbf_c00091{left:585.450000px;}
.x12e_c00091{left:586.800000px;}
.xad_c00091{left:589.350000px;}
.x11c_c00091{left:590.550000px;}
.xc6_c00091{left:592.950000px;}
.xa6_c00091{left:595.050000px;}
.xd4_c00091{left:598.350000px;}
.xe7_c00091{left:602.100000px;}
.xc0_c00091{left:603.150000px;}
.xe9_c00091{left:604.500000px;}
.xd5_c00091{left:605.550000px;}
.xba_c00091{left:607.650000px;}
.x115_c00091{left:609.150000px;}
.xf9_c00091{left:610.350000px;}
.xd2_c00091{left:612.300000px;}
.xae_c00091{left:614.250000px;}
.xcc_c00091{left:616.350000px;}
.xde_c00091{left:617.400000px;}
.x107_c00091{left:619.050000px;}
.xf5_c00091{left:621.450000px;}
.xf0_c00091{left:623.400000px;}
.xe8_c00091{left:628.050000px;}
.x104_c00091{left:629.700000px;}
.xa7_c00091{left:630.750000px;}
.x124_c00091{left:632.850000px;}
.x13b_c00091{left:634.350000px;}
.xb3_c00091{left:639.300000px;}
.xbb_c00091{left:640.350000px;}
.xfe_c00091{left:642.900000px;}
.x136_c00091{left:644.550000px;}
.xc1_c00091{left:645.600000px;}
.xee_c00091{left:647.250000px;}
.xd6_c00091{left:648.300000px;}
.xaf_c00091{left:652.800000px;}
.xb4_c00091{left:654.750000px;}
.x134_c00091{left:656.700000px;}
.x12a_c00091{left:658.200000px;}
.x13c_c00091{left:659.850000px;}
.xcd_c00091{left:662.850000px;}
.x11d_c00091{left:668.250000px;}
.x102_c00091{left:669.900000px;}
.xdb_c00091{left:671.850000px;}
.x113_c00091{left:675.300000px;}
.x137_c00091{left:677.700000px;}
.xdf_c00091{left:678.900000px;}
.x10c_c00091{left:680.700000px;}
.xc2_c00091{left:682.650000px;}
.xce_c00091{left:686.250000px;}
.x103_c00091{left:688.200000px;}
.xa8_c00091{left:689.850000px;}
.xfa_c00091{left:691.800000px;}
.x11e_c00091{left:693.450000px;}
.xc7_c00091{left:695.250000px;}
.x108_c00091{left:697.200000px;}
.xff_c00091{left:699.750000px;}
.xf1_c00091{left:701.850000px;}
.xb5_c00091{left:703.050000px;}
.xd7_c00091{left:704.850000px;}
.x13d_c00091{left:706.650000px;}
.xbc_c00091{left:707.700000px;}
.x13f_c00091{left:708.900000px;}
.x110_c00091{left:712.650000px;}
.x116_c00091{left:715.800000px;}
.xd8_c00091{left:718.200000px;}
.xc8_c00091{left:719.700000px;}
.xa9_c00091{left:720.750000px;}
.xfb_c00091{left:722.400000px;}
.xb0_c00091{left:723.750000px;}
.xd9_c00091{left:731.550000px;}
.x120_c00091{left:734.400000px;}
.x127_c00091{left:736.800000px;}
.xb6_c00091{left:738.000000px;}
.xc3_c00091{left:739.800000px;}
.xfc_c00091{left:741.450000px;}
.xcf_c00091{left:744.150000px;}
.x12b_c00091{left:745.350000px;}
.xdc_c00091{left:747.150000px;}
.x109_c00091{left:749.100000px;}
.xe0_c00091{left:751.650000px;}
.xe2_c00091{left:752.700000px;}
.xaa_c00091{left:754.650000px;}
.xf6_c00091{left:756.450000px;}
.xeb_c00091{left:757.500000px;}
.xfd_c00091{left:759.450000px;}
.x100_c00091{left:760.950000px;}
.xe3_c00091{left:763.500000px;}
.x114_c00091{left:765.600000px;}
.xed_c00091{left:766.800000px;}
.xb7_c00091{left:770.400000px;}
.x12f_c00091{left:772.050000px;}
.xef_c00091{left:773.250000px;}
.x10f_c00091{left:777.600000px;}
.xe1_c00091{left:778.650000px;}
.x101_c00091{left:780.000000px;}
.xf2_c00091{left:781.800000px;}
.x125_c00091{left:782.850000px;}
.xc9_c00091{left:785.550000px;}
.x117_c00091{left:789.150000px;}
.x111_c00091{left:790.350000px;}
.xab_c00091{left:791.700000px;}
.xdd_c00091{left:796.050000px;}
.x105_c00091{left:799.350000px;}
.x130_c00091{left:800.850000px;}
.x126_c00091{left:802.350000px;}
.x10a_c00091{left:805.200000px;}
.x132_c00091{left:807.300000px;}
.xbd_c00091{left:809.250000px;}
.x135_c00091{left:811.350000px;}
.x118_c00091{left:812.850000px;}
.xd0_c00091{left:814.950000px;}
.xb8_c00091{left:819.000000px;}
.x133_c00091{left:820.950000px;}
.x121_c00091{left:822.300000px;}
.x106_c00091{left:823.800000px;}
.x10b_c00091{left:826.050000px;}
.xb1_c00091{left:827.400000px;}
.xf7_c00091{left:829.950000px;}
.xb9_c00091{left:832.350000px;}
.xbe_c00091{left:834.450000px;}
.xca_c00091{left:836.250000px;}
.xf3_c00091{left:838.350000px;}
.xc4_c00091{left:841.650000px;}
.xe4_c00091{left:843.900000px;}
.x119_c00091{left:845.550000px;}
.xac_c00091{left:851.100000px;}
.x11a_c00091{left:853.050000px;}
.x128_c00091{left:855.150000px;}
.x122_c00091{left:857.250000px;}
.xe5_c00091{left:859.800000px;}
.xf8_c00091{left:862.050000px;}
.xd1_c00091{left:863.850000px;}
.x138_c00091{left:866.250000px;}
.xe6_c00091{left:868.800000px;}
.xc5_c00091{left:880.200000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws4_c00091{word-spacing:-8.222222pt;}
.ws9_c00091{word-spacing:-5.321689pt;}
.ws1_c00091{word-spacing:-0.277778pt;}
.wsc_c00091{word-spacing:0.000000pt;}
.ws8_c00091{word-spacing:0.658436pt;}
.ws7_c00091{word-spacing:3.392550pt;}
.ws6_c00091{word-spacing:6.823872pt;}
.ws5_c00091{word-spacing:8.118896pt;}
.wsb_c00091{word-spacing:13.086420pt;}
.ws2_c00091{word-spacing:19.682540pt;}
.ws0_c00091{word-spacing:26.031746pt;}
.wsa_c00091{word-spacing:31.309105pt;}
.ws3_c00091{word-spacing:90.555556pt;}
.fs5_c00091{font-size:26.666667pt;}
.fs6_c00091{font-size:32.000000pt;}
.fs4_c00091{font-size:48.000000pt;}
.fs3_c00091{font-size:53.333333pt;}
.fs2_c00091{font-size:58.666667pt;}
.fs0_c00091{font-size:64.000000pt;}
.fs1_c00091{font-size:74.666667pt;}
.y0_c00091{bottom:0.000000pt;}
.y6c_c00091{bottom:150.666667pt;}
.y3a_c00091{bottom:154.933333pt;}
.y6b_c00091{bottom:164.133333pt;}
.y39_c00091{bottom:171.200000pt;}
.y6a_c00091{bottom:177.333333pt;}
.y38_c00091{bottom:187.200000pt;}
.y69_c00091{bottom:190.133333pt;}
.y37_c00091{bottom:203.200000pt;}
.y68_c00091{bottom:216.000000pt;}
.y36_c00091{bottom:219.200000pt;}
.y67_c00091{bottom:229.066667pt;}
.y35_c00091{bottom:235.466667pt;}
.y34_c00091{bottom:251.200000pt;}
.y66_c00091{bottom:264.266667pt;}
.y33_c00091{bottom:267.200000pt;}
.y65_c00091{bottom:280.266667pt;}
.y32_c00091{bottom:282.933333pt;}
.y64_c00091{bottom:296.266667pt;}
.y31_c00091{bottom:298.933333pt;}
.y63_c00091{bottom:310.933333pt;}
.y30_c00091{bottom:314.933333pt;}
.y62_c00091{bottom:322.133333pt;}
.y2f_c00091{bottom:330.666667pt;}
.y61_c00091{bottom:336.266667pt;}
.y2e_c00091{bottom:346.666667pt;}
.y60_c00091{bottom:352.266667pt;}
.y2d_c00091{bottom:362.666667pt;}
.y5f_c00091{bottom:372.533333pt;}
.y2c_c00091{bottom:378.666667pt;}
.y5e_c00091{bottom:388.533333pt;}
.y2b_c00091{bottom:394.933333pt;}
.y5d_c00091{bottom:404.533333pt;}
.y27_c00091{bottom:416.933333pt;}
.y2a_c00091{bottom:417.600000pt;}
.y5c_c00091{bottom:420.533333pt;}
.y26_c00091{bottom:429.733333pt;}
.y29_c00091{bottom:430.133333pt;}
.y5b_c00091{bottom:440.400000pt;}
.y25_c00091{bottom:441.866667pt;}
.y24_c00091{bottom:442.533333pt;}
.y28_c00091{bottom:443.200000pt;}
.y23_c00091{bottom:455.600000pt;}
.y5a_c00091{bottom:456.666667pt;}
.y22_c00091{bottom:469.733333pt;}
.y59_c00091{bottom:480.666667pt;}
.y21_c00091{bottom:486.666667pt;}
.y58_c00091{bottom:500.800000pt;}
.y20_c00091{bottom:502.666667pt;}
.y57_c00091{bottom:516.800000pt;}
.y1f_c00091{bottom:518.400000pt;}
.y56_c00091{bottom:532.800000pt;}
.y1e_c00091{bottom:534.400000pt;}
.y55_c00091{bottom:552.666667pt;}
.y1d_c00091{bottom:554.533333pt;}
.y1c_c00091{bottom:570.533333pt;}
.y54_c00091{bottom:572.533333pt;}
.y1b_c00091{bottom:589.733333pt;}
.y53_c00091{bottom:592.000000pt;}
.y1a_c00091{bottom:605.733333pt;}
.y52_c00091{bottom:608.000000pt;}
.y51_c00091{bottom:628.133333pt;}
.y19_c00091{bottom:630.000000pt;}
.y50_c00091{bottom:643.866667pt;}
.y18_c00091{bottom:649.866667pt;}
.y4f_c00091{bottom:664.000000pt;}
.y17_c00091{bottom:670.000000pt;}
.y4e_c00091{bottom:684.133333pt;}
.y16_c00091{bottom:686.000000pt;}
.y4d_c00091{bottom:699.866667pt;}
.y15_c00091{bottom:702.000000pt;}
.y14_c00091{bottom:718.000000pt;}
.y4b_c00091{bottom:720.000000pt;}
.y13_c00091{bottom:733.733333pt;}
.y4a_c00091{bottom:737.333333pt;}
.y49_c00091{bottom:744.000000pt;}
.y4c_c00091{bottom:744.266667pt;}
.y12_c00091{bottom:749.733333pt;}
.y48_c00091{bottom:752.266667pt;}
.y47_c00091{bottom:761.600000pt;}
.y11_c00091{bottom:765.733333pt;}
.y46_c00091{bottom:771.866667pt;}
.y10_c00091{bottom:781.733333pt;}
.y45_c00091{bottom:793.200000pt;}
.yf_c00091{bottom:797.733333pt;}
.ye_c00091{bottom:813.466667pt;}
.y44_c00091{bottom:816.933333pt;}
.yd_c00091{bottom:829.466667pt;}
.y43_c00091{bottom:840.666667pt;}
.yc_c00091{bottom:845.466667pt;}
.y42_c00091{bottom:856.666667pt;}
.yb_c00091{bottom:861.466667pt;}
.y41_c00091{bottom:876.533333pt;}
.ya_c00091{bottom:877.200000pt;}
.y40_c00091{bottom:893.066667pt;}
.y9_c00091{bottom:893.200000pt;}
.y3f_c00091{bottom:909.066667pt;}
.y8_c00091{bottom:909.466667pt;}
.y3e_c00091{bottom:925.066667pt;}
.y7_c00091{bottom:925.200000pt;}
.y6_c00091{bottom:941.200000pt;}
.y3d_c00091{bottom:941.466667pt;}
.y5_c00091{bottom:957.200000pt;}
.y3c_c00091{bottom:957.466667pt;}
.y4_c00091{bottom:973.466667pt;}
.y3_c00091{bottom:988.800000pt;}
.y3b_c00091{bottom:989.066667pt;}
.y1_c00091{bottom:1012.133333pt;}
.y2_c00091{bottom:1012.400000pt;}
.h7_c00091{height:26.666667pt;}
.h8_c00091{height:32.000000pt;}
.h6_c00091{height:48.000000pt;}
.h5_c00091{height:53.333333pt;}
.h4_c00091{height:58.666667pt;}
.h2_c00091{height:64.000000pt;}
.h3_c00091{height:74.666667pt;}
.h0_c00091{height:1128.640056pt;}
.h1_c00091{height:1128.666667pt;}
.w1_c00091{width:847.333333pt;}
.w0_c00091{width:847.360027pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:157.466667pt;}
.x71_c00091{left:159.066667pt;}
.x72_c00091{left:160.000000pt;}
.x89_c00091{left:170.933333pt;}
.x76_c00091{left:173.466667pt;}
.x3_c00091{left:174.666667pt;}
.x13_c00091{left:175.733333pt;}
.x8c_c00091{left:184.000000pt;}
.x8e_c00091{left:185.733333pt;}
.x73_c00091{left:188.533333pt;}
.x9c_c00091{left:190.533333pt;}
.x4_c00091{left:192.533333pt;}
.x34_c00091{left:193.733333pt;}
.x95_c00091{left:194.800000pt;}
.x7f_c00091{left:195.866667pt;}
.x8a_c00091{left:196.800000pt;}
.x7a_c00091{left:201.733333pt;}
.x69_c00091{left:203.333333pt;}
.x24_c00091{left:204.933333pt;}
.xb_c00091{left:206.133333pt;}
.x30_c00091{left:207.866667pt;}
.x86_c00091{left:208.933333pt;}
.x8b_c00091{left:210.933333pt;}
.x1a_c00091{left:212.800000pt;}
.x35_c00091{left:214.533333pt;}
.x84_c00091{left:216.400000pt;}
.x14_c00091{left:218.666667pt;}
.x7b_c00091{left:220.000000pt;}
.x59_c00091{left:221.600000pt;}
.x5e_c00091{left:222.666667pt;}
.xc_c00091{left:223.733333pt;}
.x3d_c00091{left:224.666667pt;}
.x1b_c00091{left:229.733333pt;}
.x9f_c00091{left:231.466667pt;}
.x2a_c00091{left:232.400000pt;}
.x15_c00091{left:233.333333pt;}
.x48_c00091{left:235.466667pt;}
.x85_c00091{left:237.866667pt;}
.x62_c00091{left:239.066667pt;}
.x20_c00091{left:240.800000pt;}
.x87_c00091{left:242.533333pt;}
.x4f_c00091{left:244.000000pt;}
.x77_c00091{left:246.400000pt;}
.x96_c00091{left:247.333333pt;}
.x36_c00091{left:248.400000pt;}
.x2b_c00091{left:249.333333pt;}
.x5_c00091{left:250.800000pt;}
.xa2_c00091{left:253.066667pt;}
.x5f_c00091{left:255.600000pt;}
.x80_c00091{left:256.666667pt;}
.x50_c00091{left:258.400000pt;}
.x49_c00091{left:262.000000pt;}
.x66_c00091{left:264.533333pt;}
.x97_c00091{left:265.866667pt;}
.x6a_c00091{left:267.066667pt;}
.x74_c00091{left:268.133333pt;}
.x5a_c00091{left:269.333333pt;}
.x31_c00091{left:270.933333pt;}
.x99_c00091{left:272.000000pt;}
.x91_c00091{left:274.933333pt;}
.xd_c00091{left:276.800000pt;}
.x41_c00091{left:277.866667pt;}
.x25_c00091{left:280.133333pt;}
.x55_c00091{left:281.066667pt;}
.x16_c00091{left:282.266667pt;}
.x37_c00091{left:283.333333pt;}
.x3e_c00091{left:284.800000pt;}
.x2c_c00091{left:286.800000pt;}
.x32_c00091{left:289.466667pt;}
.x51_c00091{left:290.666667pt;}
.x38_c00091{left:293.200000pt;}
.x92_c00091{left:294.400000pt;}
.x9a_c00091{left:295.733333pt;}
.x1c_c00091{left:296.666667pt;}
.x67_c00091{left:298.400000pt;}
.x56_c00091{left:299.600000pt;}
.x6_c00091{left:300.666667pt;}
.x78_c00091{left:303.066667pt;}
.x45_c00091{left:304.800000pt;}
.x21_c00091{left:306.666667pt;}
.xe_c00091{left:308.800000pt;}
.x52_c00091{left:310.800000pt;}
.x90_c00091{left:312.266667pt;}
.x1d_c00091{left:313.600000pt;}
.x60_c00091{left:315.066667pt;}
.x6f_c00091{left:316.133333pt;}
.x6b_c00091{left:317.333333pt;}
.x7_c00091{left:318.533333pt;}
.x9d_c00091{left:321.466667pt;}
.x4a_c00091{left:323.466667pt;}
.x42_c00091{left:324.533333pt;}
.xf_c00091{left:327.333333pt;}
.x26_c00091{left:329.066667pt;}
.x5b_c00091{left:330.133333pt;}
.x81_c00091{left:331.866667pt;}
.x57_c00091{left:333.866667pt;}
.x82_c00091{left:335.066667pt;}
.x7c_c00091{left:337.066667pt;}
.x6c_c00091{left:338.133333pt;}
.x63_c00091{left:339.200000pt;}
.x46_c00091{left:341.333333pt;}
.x5c_c00091{left:342.933333pt;}
.x2d_c00091{left:344.133333pt;}
.x1e_c00091{left:345.866667pt;}
.x98_c00091{left:346.933333pt;}
.x83_c00091{left:348.533333pt;}
.x43_c00091{left:349.866667pt;}
.x3f_c00091{left:351.333333pt;}
.x70_c00091{left:352.266667pt;}
.x6d_c00091{left:353.466667pt;}
.x22_c00091{left:354.400000pt;}
.x53_c00091{left:355.333333pt;}
.x4b_c00091{left:356.800000pt;}
.x93_c00091{left:358.400000pt;}
.x33_c00091{left:360.266667pt;}
.x39_c00091{left:362.000000pt;}
.x1f_c00091{left:363.733333pt;}
.x2e_c00091{left:365.200000pt;}
.x9e_c00091{left:366.266667pt;}
.xa3_c00091{left:368.266667pt;}
.x8_c00091{left:370.666667pt;}
.x68_c00091{left:371.733333pt;}
.x2_c00091{left:373.466667pt;}
.x8d_c00091{left:376.000000pt;}
.x27_c00091{left:377.733333pt;}
.x17_c00091{left:380.133333pt;}
.x10_c00091{left:381.466667pt;}
.x54_c00091{left:382.533333pt;}
.x64_c00091{left:384.933333pt;}
.x3a_c00091{left:387.600000pt;}
.x75_c00091{left:389.733333pt;}
.x4c_c00091{left:391.733333pt;}
.x7d_c00091{left:393.066667pt;}
.x61_c00091{left:395.333333pt;}
.x9_c00091{left:396.266667pt;}
.x18_c00091{left:398.400000pt;}
.x28_c00091{left:401.066667pt;}
.x4d_c00091{left:402.933333pt;}
.xa4_c00091{left:404.133333pt;}
.x11_c00091{left:405.200000pt;}
.x2f_c00091{left:406.533333pt;}
.x23_c00091{left:407.466667pt;}
.x47_c00091{left:409.200000pt;}
.x7e_c00091{left:410.400000pt;}
.x5d_c00091{left:412.666667pt;}
.x19_c00091{left:414.400000pt;}
.xa0_c00091{left:415.733333pt;}
.x65_c00091{left:416.666667pt;}
.x79_c00091{left:418.933333pt;}
.x8f_c00091{left:420.800000pt;}
.x12_c00091{left:423.066667pt;}
.x40_c00091{left:425.200000pt;}
.xa_c00091{left:426.933333pt;}
.x44_c00091{left:428.000000pt;}
.x58_c00091{left:429.200000pt;}
.x94_c00091{left:432.266667pt;}
.x29_c00091{left:433.333333pt;}
.xa1_c00091{left:434.266667pt;}
.x6e_c00091{left:436.666667pt;}
.x3b_c00091{left:438.800000pt;}
.x9b_c00091{left:439.866667pt;}
.x88_c00091{left:443.200000pt;}
.x4e_c00091{left:445.866667pt;}
.x3c_c00091{left:448.666667pt;}
.x131_c00091{left:473.200000pt;}
.x123_c00091{left:474.266667pt;}
.xda_c00091{left:475.600000pt;}
.xd3_c00091{left:476.533333pt;}
.x10d_c00091{left:478.133333pt;}
.x139_c00091{left:480.000000pt;}
.x112_c00091{left:486.666667pt;}
.x12c_c00091{left:487.733333pt;}
.x129_c00091{left:489.733333pt;}
.xa5_c00091{left:491.466667pt;}
.xcb_c00091{left:492.533333pt;}
.x13a_c00091{left:499.866667pt;}
.x13e_c00091{left:500.933333pt;}
.x10e_c00091{left:503.733333pt;}
.x12d_c00091{left:506.266667pt;}
.xec_c00091{left:507.866667pt;}
.xea_c00091{left:509.200000pt;}
.xf4_c00091{left:510.133333pt;}
.x11b_c00091{left:511.866667pt;}
.x11f_c00091{left:515.200000pt;}
.xb2_c00091{left:519.333333pt;}
.xbf_c00091{left:520.400000pt;}
.x12e_c00091{left:521.600000pt;}
.xad_c00091{left:523.866667pt;}
.x11c_c00091{left:524.933333pt;}
.xc6_c00091{left:527.066667pt;}
.xa6_c00091{left:528.933333pt;}
.xd4_c00091{left:531.866667pt;}
.xe7_c00091{left:535.200000pt;}
.xc0_c00091{left:536.133333pt;}
.xe9_c00091{left:537.333333pt;}
.xd5_c00091{left:538.266667pt;}
.xba_c00091{left:540.133333pt;}
.x115_c00091{left:541.466667pt;}
.xf9_c00091{left:542.533333pt;}
.xd2_c00091{left:544.266667pt;}
.xae_c00091{left:546.000000pt;}
.xcc_c00091{left:547.866667pt;}
.xde_c00091{left:548.800000pt;}
.x107_c00091{left:550.266667pt;}
.xf5_c00091{left:552.400000pt;}
.xf0_c00091{left:554.133333pt;}
.xe8_c00091{left:558.266667pt;}
.x104_c00091{left:559.733333pt;}
.xa7_c00091{left:560.666667pt;}
.x124_c00091{left:562.533333pt;}
.x13b_c00091{left:563.866667pt;}
.xb3_c00091{left:568.266667pt;}
.xbb_c00091{left:569.200000pt;}
.xfe_c00091{left:571.466667pt;}
.x136_c00091{left:572.933333pt;}
.xc1_c00091{left:573.866667pt;}
.xee_c00091{left:575.333333pt;}
.xd6_c00091{left:576.266667pt;}
.xaf_c00091{left:580.266667pt;}
.xb4_c00091{left:582.000000pt;}
.x134_c00091{left:583.733333pt;}
.x12a_c00091{left:585.066667pt;}
.x13c_c00091{left:586.533333pt;}
.xcd_c00091{left:589.200000pt;}
.x11d_c00091{left:594.000000pt;}
.x102_c00091{left:595.466667pt;}
.xdb_c00091{left:597.200000pt;}
.x113_c00091{left:600.266667pt;}
.x137_c00091{left:602.400000pt;}
.xdf_c00091{left:603.466667pt;}
.x10c_c00091{left:605.066667pt;}
.xc2_c00091{left:606.800000pt;}
.xce_c00091{left:610.000000pt;}
.x103_c00091{left:611.733333pt;}
.xa8_c00091{left:613.200000pt;}
.xfa_c00091{left:614.933333pt;}
.x11e_c00091{left:616.400000pt;}
.xc7_c00091{left:618.000000pt;}
.x108_c00091{left:619.733333pt;}
.xff_c00091{left:622.000000pt;}
.xf1_c00091{left:623.866667pt;}
.xb5_c00091{left:624.933333pt;}
.xd7_c00091{left:626.533333pt;}
.x13d_c00091{left:628.133333pt;}
.xbc_c00091{left:629.066667pt;}
.x13f_c00091{left:630.133333pt;}
.x110_c00091{left:633.466667pt;}
.x116_c00091{left:636.266667pt;}
.xd8_c00091{left:638.400000pt;}
.xc8_c00091{left:639.733333pt;}
.xa9_c00091{left:640.666667pt;}
.xfb_c00091{left:642.133333pt;}
.xb0_c00091{left:643.333333pt;}
.xd9_c00091{left:650.266667pt;}
.x120_c00091{left:652.800000pt;}
.x127_c00091{left:654.933333pt;}
.xb6_c00091{left:656.000000pt;}
.xc3_c00091{left:657.600000pt;}
.xfc_c00091{left:659.066667pt;}
.xcf_c00091{left:661.466667pt;}
.x12b_c00091{left:662.533333pt;}
.xdc_c00091{left:664.133333pt;}
.x109_c00091{left:665.866667pt;}
.xe0_c00091{left:668.133333pt;}
.xe2_c00091{left:669.066667pt;}
.xaa_c00091{left:670.800000pt;}
.xf6_c00091{left:672.400000pt;}
.xeb_c00091{left:673.333333pt;}
.xfd_c00091{left:675.066667pt;}
.x100_c00091{left:676.400000pt;}
.xe3_c00091{left:678.666667pt;}
.x114_c00091{left:680.533333pt;}
.xed_c00091{left:681.600000pt;}
.xb7_c00091{left:684.800000pt;}
.x12f_c00091{left:686.266667pt;}
.xef_c00091{left:687.333333pt;}
.x10f_c00091{left:691.200000pt;}
.xe1_c00091{left:692.133333pt;}
.x101_c00091{left:693.333333pt;}
.xf2_c00091{left:694.933333pt;}
.x125_c00091{left:695.866667pt;}
.xc9_c00091{left:698.266667pt;}
.x117_c00091{left:701.466667pt;}
.x111_c00091{left:702.533333pt;}
.xab_c00091{left:703.733333pt;}
.xdd_c00091{left:707.600000pt;}
.x105_c00091{left:710.533333pt;}
.x130_c00091{left:711.866667pt;}
.x126_c00091{left:713.200000pt;}
.x10a_c00091{left:715.733333pt;}
.x132_c00091{left:717.600000pt;}
.xbd_c00091{left:719.333333pt;}
.x135_c00091{left:721.200000pt;}
.x118_c00091{left:722.533333pt;}
.xd0_c00091{left:724.400000pt;}
.xb8_c00091{left:728.000000pt;}
.x133_c00091{left:729.733333pt;}
.x121_c00091{left:730.933333pt;}
.x106_c00091{left:732.266667pt;}
.x10b_c00091{left:734.266667pt;}
.xb1_c00091{left:735.466667pt;}
.xf7_c00091{left:737.733333pt;}
.xb9_c00091{left:739.866667pt;}
.xbe_c00091{left:741.733333pt;}
.xca_c00091{left:743.333333pt;}
.xf3_c00091{left:745.200000pt;}
.xc4_c00091{left:748.133333pt;}
.xe4_c00091{left:750.133333pt;}
.x119_c00091{left:751.600000pt;}
.xac_c00091{left:756.533333pt;}
.x11a_c00091{left:758.266667pt;}
.x128_c00091{left:760.133333pt;}
.x122_c00091{left:762.000000pt;}
.xe5_c00091{left:764.266667pt;}
.xf8_c00091{left:766.266667pt;}
.xd1_c00091{left:767.866667pt;}
.x138_c00091{left:770.000000pt;}
.xe6_c00091{left:772.266667pt;}
.xc5_c00091{left:782.400000pt;}
}





/* 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_c00092 {
    display:none;
  }
  .loading-indicator_c00092.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00092 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_c00092 { 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_c00092" -> "#page-container .classname_c00092")
 */
.pf_c00092 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00092 { /* 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_c00092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00092 { /* 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_c00092 { /* 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_c00092 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00092 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00092 {overflow:visible;}
  }
}
.c_c00092 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00092 { /* 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_c00092:after { /* webkit #35443 */
  content: '';
}
.t_c00092:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00092 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 */
}
.__c00092 { /* 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_c00092 { /* info for Javascript */
  display:none;
}
.l_c00092 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00092 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00092 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00092: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_c00092 {
    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_c00092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00092.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_c00092 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00092;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.000000;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;}
.m109_c00092{transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00092{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00092{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00092{transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057500,0.000000,0.000000,0.250000,0,0);}
.m0_c00092{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mae_c00092{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md9_c00092{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00092{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.md8_c00092{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m91_c00092{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m32_c00092{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00092{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00092{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m61_c00092{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m70_c00092{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00092{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md0_c00092{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m95_c00092{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md3_c00092{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m68_c00092{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m92_c00092{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me6_c00092{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.md4_c00092{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00092{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m89_c00092{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00092{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00092{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m102_c00092{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m41_c00092{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.me8_c00092{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m25_c00092{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8_c00092{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md2_c00092{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00092{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m67_c00092{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mee_c00092{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m20_c00092{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m64_c00092{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m9_c00092{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00092{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00092{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m35_c00092{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m6_c00092{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00092{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m23_c00092{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00092{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m78_c00092{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md7_c00092{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mda_c00092{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me7_c00092{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m87_c00092{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00092{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00092{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m10_c00092{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m76_c00092{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00092{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00092{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m24_c00092{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m104_c00092{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb_c00092{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00092{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m105_c00092{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00092{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.maf_c00092{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.md_c00092{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00092{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m52_c00092{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md1_c00092{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m46_c00092{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m30_c00092{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m49_c00092{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m77_c00092{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00092{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.meb_c00092{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m107_c00092{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m2_c00092{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m106_c00092{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m11_c00092{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m100_c00092{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00092{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m31_c00092{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00092{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00092{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m40_c00092{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m51_c00092{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00092{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00092{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00092{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00092{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00092{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m66_c00092{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m4_c00092{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me5_c00092{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00092{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00092{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m55_c00092{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00092{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00092{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m39_c00092{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma_c00092{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00092{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00092{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00092{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m85_c00092{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m12_c00092{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00092{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mff_c00092{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf_c00092{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.med_c00092{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00092{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00092{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me2_c00092{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m33_c00092{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00092{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00092{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m7_c00092{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00092{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00092{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m45_c00092{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m34_c00092{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5_c00092{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00092{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00092{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00092{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mc_c00092{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m60_c00092{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m56_c00092{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m28_c00092{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m81_c00092{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md6_c00092{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00092{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m93_c00092{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me_c00092{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m103_c00092{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m44_c00092{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m38_c00092{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00092{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00092{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00092{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00092{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00092{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m58_c00092{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3_c00092{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00092{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00092{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m13_c00092{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m43_c00092{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00092{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m48_c00092{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00092{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00092{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00092{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00092{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m27_c00092{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m108_c00092{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m26_c00092{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00092{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m65_c00092{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m71_c00092{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m101_c00092{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m59_c00092{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m22_c00092{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m57_c00092{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m15_c00092{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m18_c00092{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m47_c00092{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m96_c00092{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00092{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00092{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00092{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m86_c00092{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00092{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m82_c00092{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00092{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00092{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00092{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00092{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mef_c00092{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00092{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m75_c00092{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m79_c00092{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00092{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mec_c00092{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m29_c00092{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m21_c00092{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00092{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00092{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00092{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m88_c00092{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m99_c00092{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mad_c00092{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00092{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00092{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m42_c00092{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00092{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m74_c00092{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00092{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00092{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m14_c00092{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mba_c00092{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00092{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00092{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m37_c00092{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m63_c00092{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me1_c00092{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);}
.ma3_c00092{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m84_c00092{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m16_c00092{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m80_c00092{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m83_c00092{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00092{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00092{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m62_c00092{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m17_c00092{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mca_c00092{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m54_c00092{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00092{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.me4_c00092{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m50_c00092{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m19_c00092{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00092{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m73_c00092{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m97_c00092{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m94_c00092{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00092{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m36_c00092{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mac_c00092{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00092{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.me0_c00092{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00092{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00092{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00092{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00092{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00092{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m98_c00092{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.mab_c00092{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mea_c00092{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me3_c00092{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00092{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00092{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00092{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m69_c00092{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00092{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00092{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00092{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00092{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00092{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00092{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00092{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m53_c00092{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mde_c00092{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m72_c00092{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00092{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00092{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.mce_c00092{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00092{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00092{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00092{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00092{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00092{transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);}
.m90_c00092{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00092{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00092{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00092{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00092{transform:matrix(0.449000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449000,0.000000,0.000000,0.250000,0,0);}
.me9_c00092{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00092{transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);}
.md5_c00092{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00092{transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);}
.maa_c00092{transform:matrix(1.011500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.011500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.011500,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls0_c00092{letter-spacing:0.000000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{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__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00092{word-spacing:-15.000000px;}
.ws1_c00092{word-spacing:-6.809816px;}
.ws2_c00092{word-spacing:-4.841924px;}
.ws4_c00092{word-spacing:-1.429433px;}
.ws7_c00092{word-spacing:0.000000px;}
.ws6_c00092{word-spacing:6.750000px;}
.ws0_c00092{word-spacing:8.837209px;}
.ws5_c00092{word-spacing:73.333333px;}
.fc0_c00092{color:transparent;}
.fs8_c00092{font-size:24.000000px;}
.fs7_c00092{font-size:36.000000px;}
.fs5_c00092{font-size:42.000000px;}
.fs6_c00092{font-size:48.000000px;}
.fs4_c00092{font-size:54.000000px;}
.fs3_c00092{font-size:60.000000px;}
.fs2_c00092{font-size:66.000000px;}
.fs1_c00092{font-size:72.000000px;}
.fs0_c00092{font-size:108.000000px;}
.y0_c00092{bottom:0.000000px;}
.y6a_c00092{bottom:28.500000px;}
.y34_c00092{bottom:68.100000px;}
.y33_c00092{bottom:188.250000px;}
.y69_c00092{bottom:188.400000px;}
.y32_c00092{bottom:206.250000px;}
.y68_c00092{bottom:206.700000px;}
.y67_c00092{bottom:224.700000px;}
.y31_c00092{bottom:228.900000px;}
.y66_c00092{bottom:247.200000px;}
.y2f_c00092{bottom:251.550000px;}
.y30_c00092{bottom:252.600000px;}
.y2e_c00092{bottom:258.450000px;}
.y65_c00092{bottom:265.200000px;}
.y2d_c00092{bottom:280.050000px;}
.y64_c00092{bottom:283.200000px;}
.y2c_c00092{bottom:289.800000px;}
.y63_c00092{bottom:301.200000px;}
.y2b_c00092{bottom:308.250000px;}
.y62_c00092{bottom:319.200000px;}
.y2a_c00092{bottom:330.150000px;}
.y61_c00092{bottom:337.200000px;}
.y29_c00092{bottom:351.000000px;}
.y60_c00092{bottom:355.200000px;}
.y5f_c00092{bottom:372.900000px;}
.y28_c00092{bottom:373.350000px;}
.y5e_c00092{bottom:390.900000px;}
.y27_c00092{bottom:396.750000px;}
.y5d_c00092{bottom:408.600000px;}
.y26_c00092{bottom:419.100000px;}
.y5c_c00092{bottom:426.300000px;}
.y5b_c00092{bottom:444.600000px;}
.y25_c00092{bottom:450.000000px;}
.y5a_c00092{bottom:462.600000px;}
.y24_c00092{bottom:472.350000px;}
.y59_c00092{bottom:483.150000px;}
.y23_c00092{bottom:495.750000px;}
.y58_c00092{bottom:498.000000px;}
.y57_c00092{bottom:512.400000px;}
.y22_c00092{bottom:514.050000px;}
.y56_c00092{bottom:526.800000px;}
.y21_c00092{bottom:532.050000px;}
.y55_c00092{bottom:541.500000px;}
.y20_c00092{bottom:550.050000px;}
.y54_c00092{bottom:555.150000px;}
.y1f_c00092{bottom:568.050000px;}
.y53_c00092{bottom:569.850000px;}
.y52_c00092{bottom:583.950000px;}
.y1e_c00092{bottom:585.750000px;}
.y51_c00092{bottom:598.650000px;}
.y1d_c00092{bottom:603.750000px;}
.y50_c00092{bottom:613.800000px;}
.y1c_c00092{bottom:621.750000px;}
.y4f_c00092{bottom:633.450000px;}
.y1b_c00092{bottom:639.750000px;}
.y4e_c00092{bottom:651.450000px;}
.y1a_c00092{bottom:657.750000px;}
.y4d_c00092{bottom:669.150000px;}
.y19_c00092{bottom:677.700000px;}
.y4c_c00092{bottom:690.750000px;}
.y18_c00092{bottom:697.800000px;}
.y4b_c00092{bottom:708.750000px;}
.y17_c00092{bottom:716.850000px;}
.y4a_c00092{bottom:726.750000px;}
.y16_c00092{bottom:737.700000px;}
.y49_c00092{bottom:744.750000px;}
.y15_c00092{bottom:757.500000px;}
.y48_c00092{bottom:762.450000px;}
.y14_c00092{bottom:775.500000px;}
.y47_c00092{bottom:780.450000px;}
.y13_c00092{bottom:797.700000px;}
.y46_c00092{bottom:798.450000px;}
.y45_c00092{bottom:816.450000px;}
.y12_c00092{bottom:819.750000px;}
.y11_c00092{bottom:837.750000px;}
.y44_c00092{bottom:838.350000px;}
.y10_c00092{bottom:860.100000px;}
.y43_c00092{bottom:860.700000px;}
.y6b_c00092{bottom:864.750000px;}
.y42_c00092{bottom:868.350000px;}
.yf_c00092{bottom:878.400000px;}
.y41_c00092{bottom:878.700000px;}
.y40_c00092{bottom:896.700000px;}
.ye_c00092{bottom:899.550000px;}
.y3f_c00092{bottom:914.700000px;}
.yd_c00092{bottom:918.300000px;}
.y3e_c00092{bottom:932.400000px;}
.yc_c00092{bottom:936.000000px;}
.y3d_c00092{bottom:945.000000px;}
.yb_c00092{bottom:954.300000px;}
.y3c_c00092{bottom:954.750000px;}
.ya_c00092{bottom:972.300000px;}
.y9_c00092{bottom:990.000000px;}
.y3b_c00092{bottom:990.300000px;}
.y8_c00092{bottom:1008.000000px;}
.y3a_c00092{bottom:1026.300000px;}
.y7_c00092{bottom:1029.900000px;}
.y39_c00092{bottom:1044.300000px;}
.y6_c00092{bottom:1047.900000px;}
.y38_c00092{bottom:1062.000000px;}
.y5_c00092{bottom:1066.200000px;}
.y37_c00092{bottom:1080.000000px;}
.y4_c00092{bottom:1083.900000px;}
.y3_c00092{bottom:1101.900000px;}
.y36_c00092{bottom:1102.350000px;}
.y2_c00092{bottom:1119.900000px;}
.y35_c00092{bottom:1120.350000px;}
.y1_c00092{bottom:1146.900000px;}
.ha_c00092{height:24.000000px;}
.h9_c00092{height:36.000000px;}
.h7_c00092{height:42.000000px;}
.h8_c00092{height:48.000000px;}
.h6_c00092{height:54.000000px;}
.h5_c00092{height:60.000000px;}
.h4_c00092{height:66.000000px;}
.h3_c00092{height:72.000000px;}
.h2_c00092{height:108.000000px;}
.h1_c00092{height:1278.750000px;}
.h0_c00092{height:1279.079957px;}
.w1_c00092{width:953.250000px;}
.w0_c00092{width:953.280030px;}
.x0_c00092{left:0.000000px;}
.x9c_c00092{left:6.450000px;}
.x90_c00092{left:70.200000px;}
.x87_c00092{left:72.600000px;}
.x82_c00092{left:75.600000px;}
.x6b_c00092{left:79.950000px;}
.x4b_c00092{left:81.000000px;}
.x55_c00092{left:84.300000px;}
.x91_c00092{left:88.200000px;}
.x98_c00092{left:91.800000px;}
.x75_c00092{left:99.450000px;}
.x4_c00092{left:100.800000px;}
.x37_c00092{left:101.850000px;}
.x92_c00092{left:113.100000px;}
.x8b_c00092{left:114.900000px;}
.x89_c00092{left:115.950000px;}
.x56_c00092{left:117.000000px;}
.x1d_c00092{left:119.400000px;}
.x58_c00092{left:121.350000px;}
.x63_c00092{left:124.200000px;}
.x34_c00092{left:125.550000px;}
.x5d_c00092{left:127.800000px;}
.x93_c00092{left:130.050000px;}
.x79_c00092{left:131.850000px;}
.x76_c00092{left:132.900000px;}
.x6f_c00092{left:134.250000px;}
.x3e_c00092{left:136.050000px;}
.x2d_c00092{left:139.050000px;}
.x53_c00092{left:140.850000px;}
.x38_c00092{left:142.500000px;}
.x5_c00092{left:144.750000px;}
.xd_c00092{left:146.400000px;}
.x48_c00092{left:150.750000px;}
.x83_c00092{left:152.550000px;}
.x4f_c00092{left:154.050000px;}
.x3f_c00092{left:155.850000px;}
.x29_c00092{left:157.800000px;}
.x7e_c00092{left:160.650000px;}
.x97_c00092{left:161.700000px;}
.x45_c00092{left:162.900000px;}
.x1e_c00092{left:164.400000px;}
.xe_c00092{left:166.200000px;}
.x70_c00092{left:167.400000px;}
.x35_c00092{left:168.750000px;}
.x40_c00092{left:171.300000px;}
.x6c_c00092{left:172.800000px;}
.x14_c00092{left:173.850000px;}
.x88_c00092{left:175.950000px;}
.x64_c00092{left:177.900000px;}
.x49_c00092{left:179.850000px;}
.x2e_c00092{left:181.950000px;}
.x50_c00092{left:185.400000px;}
.x4e_c00092{left:186.750000px;}
.x69_c00092{left:188.550000px;}
.x2f_c00092{left:189.900000px;}
.x65_c00092{left:192.450000px;}
.x26_c00092{left:194.700000px;}
.x4a_c00092{left:195.750000px;}
.x77_c00092{left:198.150000px;}
.x94_c00092{left:199.200000px;}
.x46_c00092{left:200.700000px;}
.x6a_c00092{left:207.300000px;}
.x7a_c00092{left:208.950000px;}
.x15_c00092{left:210.600000px;}
.x2a_c00092{left:211.800000px;}
.x6_c00092{left:214.200000px;}
.x8c_c00092{left:215.700000px;}
.x59_c00092{left:219.600000px;}
.x9a_c00092{left:222.750000px;}
.x1f_c00092{left:225.300000px;}
.x51_c00092{left:228.300000px;}
.x8a_c00092{left:229.800000px;}
.x39_c00092{left:232.800000px;}
.x7_c00092{left:234.750000px;}
.x8d_c00092{left:235.800000px;}
.x30_c00092{left:237.750000px;}
.x66_c00092{left:239.550000px;}
.x27_c00092{left:241.800000px;}
.x9b_c00092{left:243.600000px;}
.x20_c00092{left:245.100000px;}
.x5e_c00092{left:248.400000px;}
.x71_c00092{left:249.600000px;}
.x1_c00092{left:251.250000px;}
.xf_c00092{left:252.600000px;}
.x57_c00092{left:254.550000px;}
.x78_c00092{left:256.800000px;}
.x84_c00092{left:258.450000px;}
.x6d_c00092{left:260.250000px;}
.x28_c00092{left:261.900000px;}
.x21_c00092{left:263.850000px;}
.x54_c00092{left:265.650000px;}
.x8e_c00092{left:267.900000px;}
.x85_c00092{left:270.300000px;}
.x72_c00092{left:271.950000px;}
.x3a_c00092{left:273.450000px;}
.x16_c00092{left:277.200000px;}
.x8_c00092{left:278.700000px;}
.x10_c00092{left:281.400000px;}
.x86_c00092{left:283.950000px;}
.x5f_c00092{left:286.950000px;}
.x5a_c00092{left:289.050000px;}
.x2b_c00092{left:292.800000px;}
.x3b_c00092{left:294.000000px;}
.x22_c00092{left:295.500000px;}
.x47_c00092{left:296.850000px;}
.x4c_c00092{left:299.100000px;}
.x41_c00092{left:300.900000px;}
.x99_c00092{left:302.700000px;}
.x9_c00092{left:305.400000px;}
.x7c_c00092{left:306.750000px;}
.x23_c00092{left:313.800000px;}
.x1a_c00092{left:314.850000px;}
.x73_c00092{left:315.900000px;}
.x42_c00092{left:317.400000px;}
.x36_c00092{left:319.200000px;}
.x17_c00092{left:320.700000px;}
.xa_c00092{left:323.400000px;}
.x11_c00092{left:324.600000px;}
.x95_c00092{left:326.550000px;}
.x2_c00092{left:327.600000px;}
.x7d_c00092{left:330.900000px;}
.x67_c00092{left:332.400000px;}
.x5b_c00092{left:337.650000px;}
.x3c_c00092{left:338.700000px;}
.x24_c00092{left:340.050000px;}
.x1b_c00092{left:342.900000px;}
.x43_c00092{left:346.200000px;}
.x31_c00092{left:347.250000px;}
.x8f_c00092{left:348.900000px;}
.x60_c00092{left:350.700000px;}
.x12_c00092{left:353.100000px;}
.x52_c00092{left:355.350000px;}
.x18_c00092{left:357.750000px;}
.x4d_c00092{left:359.250000px;}
.x7f_c00092{left:361.800000px;}
.x3d_c00092{left:362.850000px;}
.x32_c00092{left:366.000000px;}
.x68_c00092{left:369.900000px;}
.x80_c00092{left:372.600000px;}
.x6e_c00092{left:375.150000px;}
.x13_c00092{left:376.200000px;}
.xb_c00092{left:377.700000px;}
.x2c_c00092{left:379.200000px;}
.x96_c00092{left:380.850000px;}
.x25_c00092{left:384.000000px;}
.x61_c00092{left:385.950000px;}
.x5c_c00092{left:387.750000px;}
.x7b_c00092{left:389.250000px;}
.x74_c00092{left:391.800000px;}
.xc_c00092{left:396.000000px;}
.x44_c00092{left:397.350000px;}
.x33_c00092{left:399.150000px;}
.x19_c00092{left:401.250000px;}
.x1c_c00092{left:403.050000px;}
.x81_c00092{left:409.650000px;}
.x62_c00092{left:412.200000px;}
.x13a_c00092{left:431.250000px;}
.x137_c00092{left:439.950000px;}
.x104_c00092{left:441.300000px;}
.xbd_c00092{left:442.500000px;}
.xd8_c00092{left:443.550000px;}
.xd9_c00092{left:453.300000px;}
.x109_c00092{left:455.700000px;}
.x102_c00092{left:457.050000px;}
.x11b_c00092{left:458.850000px;}
.xb7_c00092{left:460.350000px;}
.xa4_c00092{left:461.700000px;}
.xe3_c00092{left:463.800000px;}
.x110_c00092{left:469.800000px;}
.xe4_c00092{left:473.100000px;}
.xda_c00092{left:477.750000px;}
.xa5_c00092{left:479.100000px;}
.x9d_c00092{left:480.600000px;}
.x121_c00092{left:486.150000px;}
.xfb_c00092{left:488.250000px;}
.xe5_c00092{left:489.600000px;}
.x111_c00092{left:492.150000px;}
.xc9_c00092{left:494.850000px;}
.x128_c00092{left:497.700000px;}
.xcf_c00092{left:499.650000px;}
.x105_c00092{left:501.750000px;}
.x12f_c00092{left:502.800000px;}
.x9e_c00092{left:504.000000px;}
.xbe_c00092{left:505.500000px;}
.xb4_c00092{left:507.600000px;}
.x131_c00092{left:510.300000px;}
.xd4_c00092{left:511.350000px;}
.x12b_c00092{left:512.850000px;}
.xca_c00092{left:513.900000px;}
.x134_c00092{left:515.400000px;}
.xf9_c00092{left:516.900000px;}
.x12c_c00092{left:518.400000px;}
.xf6_c00092{left:519.450000px;}
.xea_c00092{left:520.950000px;}
.xc6_c00092{left:522.150000px;}
.xaf_c00092{left:523.500000px;}
.x112_c00092{left:525.600000px;}
.x116_c00092{left:527.850000px;}
.xf0_c00092{left:529.200000px;}
.xbb_c00092{left:530.700000px;}
.x103_c00092{left:532.200000px;}
.xb8_c00092{left:533.700000px;}
.x126_c00092{left:536.550000px;}
.xde_c00092{left:542.550000px;}
.xb9_c00092{left:545.250000px;}
.xa6_c00092{left:547.200000px;}
.x12d_c00092{left:548.700000px;}
.xa9_c00092{left:550.050000px;}
.xfc_c00092{left:552.300000px;}
.x129_c00092{left:553.800000px;}
.x9f_c00092{left:555.150000px;}
.xbf_c00092{left:556.650000px;}
.x10a_c00092{left:558.000000px;}
.xff_c00092{left:564.600000px;}
.xd5_c00092{left:565.650000px;}
.xd0_c00092{left:568.350000px;}
.xf1_c00092{left:569.550000px;}
.xaa_c00092{left:570.600000px;}
.xba_c00092{left:572.550000px;}
.xcb_c00092{left:574.350000px;}
.x117_c00092{left:576.750000px;}
.x11c_c00092{left:578.400000px;}
.xd1_c00092{left:580.200000px;}
.xd6_c00092{left:582.600000px;}
.x106_c00092{left:585.000000px;}
.x122_c00092{left:586.950000px;}
.xdf_c00092{left:590.850000px;}
.xb0_c00092{left:591.900000px;}
.xdb_c00092{left:593.250000px;}
.x11d_c00092{left:594.300000px;}
.xab_c00092{left:596.850000px;}
.x118_c00092{left:599.850000px;}
.x132_c00092{left:603.750000px;}
.xfd_c00092{left:605.250000px;}
.xc2_c00092{left:607.050000px;}
.x10b_c00092{left:608.100000px;}
.x136_c00092{left:609.450000px;}
.xe6_c00092{left:610.500000px;}
.xb5_c00092{left:612.750000px;}
.xc7_c00092{left:615.000000px;}
.x138_c00092{left:616.050000px;}
.xf7_c00092{left:617.400000px;}
.xe0_c00092{left:619.650000px;}
.x100_c00092{left:622.200000px;}
.xeb_c00092{left:623.400000px;}
.xb1_c00092{left:624.600000px;}
.xa0_c00092{left:626.100000px;}
.xd2_c00092{left:627.300000px;}
.xcc_c00092{left:628.650000px;}
.x11e_c00092{left:630.300000px;}
.x123_c00092{left:632.700000px;}
.xa1_c00092{left:634.800000px;}
.xd7_c00092{left:638.400000px;}
.xbc_c00092{left:641.850000px;}
.xf2_c00092{left:644.400000px;}
.xe1_c00092{left:645.600000px;}
.xdc_c00092{left:646.800000px;}
.xe7_c00092{left:650.100000px;}
.xa7_c00092{left:653.700000px;}
.x135_c00092{left:656.100000px;}
.xec_c00092{left:658.350000px;}
.xe8_c00092{left:659.400000px;}
.x139_c00092{left:661.050000px;}
.xc3_c00092{left:662.550000px;}
.xac_c00092{left:664.950000px;}
.x11f_c00092{left:668.100000px;}
.xfe_c00092{left:670.800000px;}
.x119_c00092{left:671.850000px;}
.x12e_c00092{left:673.500000px;}
.xf3_c00092{left:675.000000px;}
.xed_c00092{left:676.050000px;}
.xd3_c00092{left:678.750000px;}
.x120_c00092{left:679.950000px;}
.x10c_c00092{left:682.950000px;}
.xad_c00092{left:684.750000px;}
.xc4_c00092{left:689.850000px;}
.xf4_c00092{left:692.250000px;}
.xf8_c00092{left:694.800000px;}
.xa2_c00092{left:696.300000px;}
.x107_c00092{left:697.350000px;}
.xf5_c00092{left:700.500000px;}
.xdd_c00092{left:702.300000px;}
.x124_c00092{left:703.650000px;}
.x113_c00092{left:705.600000px;}
.x10d_c00092{left:706.650000px;}
.xb2_c00092{left:709.200000px;}
.xcd_c00092{left:711.150000px;}
.xc0_c00092{left:713.850000px;}
.x133_c00092{left:717.000000px;}
.xa8_c00092{left:718.800000px;}
.xee_c00092{left:720.000000px;}
.x130_c00092{left:723.450000px;}
.x101_c00092{left:724.500000px;}
.x127_c00092{left:726.300000px;}
.x108_c00092{left:728.250000px;}
.xce_c00092{left:729.900000px;}
.xc5_c00092{left:732.750000px;}
.xc1_c00092{left:733.950000px;}
.x10e_c00092{left:735.150000px;}
.x115_c00092{left:736.350000px;}
.xb3_c00092{left:737.700000px;}
.xef_c00092{left:741.900000px;}
.x11a_c00092{left:745.350000px;}
.xe9_c00092{left:747.300000px;}
.xe2_c00092{left:750.300000px;}
.x12a_c00092{left:752.850000px;}
.xc8_c00092{left:755.850000px;}
.xb6_c00092{left:757.350000px;}
.xfa_c00092{left:759.900000px;}
.x125_c00092{left:761.250000px;}
.x3_c00092{left:762.450000px;}
.x10f_c00092{left:763.950000px;}
.x114_c00092{left:765.450000px;}
.xae_c00092{left:767.550000px;}
.xa3_c00092{left:769.800000px;}
.x13c_c00092{left:937.350000px;}
.x13d_c00092{left:939.150000px;}
.x13b_c00092{left:944.250000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ws3_c00092{word-spacing:-13.333333pt;}
.ws1_c00092{word-spacing:-6.053170pt;}
.ws2_c00092{word-spacing:-4.303933pt;}
.ws4_c00092{word-spacing:-1.270607pt;}
.ws7_c00092{word-spacing:0.000000pt;}
.ws6_c00092{word-spacing:6.000000pt;}
.ws0_c00092{word-spacing:7.855297pt;}
.ws5_c00092{word-spacing:65.185185pt;}
.fs8_c00092{font-size:21.333333pt;}
.fs7_c00092{font-size:32.000000pt;}
.fs5_c00092{font-size:37.333333pt;}
.fs6_c00092{font-size:42.666667pt;}
.fs4_c00092{font-size:48.000000pt;}
.fs3_c00092{font-size:53.333333pt;}
.fs2_c00092{font-size:58.666667pt;}
.fs1_c00092{font-size:64.000000pt;}
.fs0_c00092{font-size:96.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y6a_c00092{bottom:25.333333pt;}
.y34_c00092{bottom:60.533333pt;}
.y33_c00092{bottom:167.333333pt;}
.y69_c00092{bottom:167.466667pt;}
.y32_c00092{bottom:183.333333pt;}
.y68_c00092{bottom:183.733333pt;}
.y67_c00092{bottom:199.733333pt;}
.y31_c00092{bottom:203.466667pt;}
.y66_c00092{bottom:219.733333pt;}
.y2f_c00092{bottom:223.600000pt;}
.y30_c00092{bottom:224.533333pt;}
.y2e_c00092{bottom:229.733333pt;}
.y65_c00092{bottom:235.733333pt;}
.y2d_c00092{bottom:248.933333pt;}
.y64_c00092{bottom:251.733333pt;}
.y2c_c00092{bottom:257.600000pt;}
.y63_c00092{bottom:267.733333pt;}
.y2b_c00092{bottom:274.000000pt;}
.y62_c00092{bottom:283.733333pt;}
.y2a_c00092{bottom:293.466667pt;}
.y61_c00092{bottom:299.733333pt;}
.y29_c00092{bottom:312.000000pt;}
.y60_c00092{bottom:315.733333pt;}
.y5f_c00092{bottom:331.466667pt;}
.y28_c00092{bottom:331.866667pt;}
.y5e_c00092{bottom:347.466667pt;}
.y27_c00092{bottom:352.666667pt;}
.y5d_c00092{bottom:363.200000pt;}
.y26_c00092{bottom:372.533333pt;}
.y5c_c00092{bottom:378.933333pt;}
.y5b_c00092{bottom:395.200000pt;}
.y25_c00092{bottom:400.000000pt;}
.y5a_c00092{bottom:411.200000pt;}
.y24_c00092{bottom:419.866667pt;}
.y59_c00092{bottom:429.466667pt;}
.y23_c00092{bottom:440.666667pt;}
.y58_c00092{bottom:442.666667pt;}
.y57_c00092{bottom:455.466667pt;}
.y22_c00092{bottom:456.933333pt;}
.y56_c00092{bottom:468.266667pt;}
.y21_c00092{bottom:472.933333pt;}
.y55_c00092{bottom:481.333333pt;}
.y20_c00092{bottom:488.933333pt;}
.y54_c00092{bottom:493.466667pt;}
.y1f_c00092{bottom:504.933333pt;}
.y53_c00092{bottom:506.533333pt;}
.y52_c00092{bottom:519.066667pt;}
.y1e_c00092{bottom:520.666667pt;}
.y51_c00092{bottom:532.133333pt;}
.y1d_c00092{bottom:536.666667pt;}
.y50_c00092{bottom:545.600000pt;}
.y1c_c00092{bottom:552.666667pt;}
.y4f_c00092{bottom:563.066667pt;}
.y1b_c00092{bottom:568.666667pt;}
.y4e_c00092{bottom:579.066667pt;}
.y1a_c00092{bottom:584.666667pt;}
.y4d_c00092{bottom:594.800000pt;}
.y19_c00092{bottom:602.400000pt;}
.y4c_c00092{bottom:614.000000pt;}
.y18_c00092{bottom:620.266667pt;}
.y4b_c00092{bottom:630.000000pt;}
.y17_c00092{bottom:637.200000pt;}
.y4a_c00092{bottom:646.000000pt;}
.y16_c00092{bottom:655.733333pt;}
.y49_c00092{bottom:662.000000pt;}
.y15_c00092{bottom:673.333333pt;}
.y48_c00092{bottom:677.733333pt;}
.y14_c00092{bottom:689.333333pt;}
.y47_c00092{bottom:693.733333pt;}
.y13_c00092{bottom:709.066667pt;}
.y46_c00092{bottom:709.733333pt;}
.y45_c00092{bottom:725.733333pt;}
.y12_c00092{bottom:728.666667pt;}
.y11_c00092{bottom:744.666667pt;}
.y44_c00092{bottom:745.200000pt;}
.y10_c00092{bottom:764.533333pt;}
.y43_c00092{bottom:765.066667pt;}
.y6b_c00092{bottom:768.666667pt;}
.y42_c00092{bottom:771.866667pt;}
.yf_c00092{bottom:780.800000pt;}
.y41_c00092{bottom:781.066667pt;}
.y40_c00092{bottom:797.066667pt;}
.ye_c00092{bottom:799.600000pt;}
.y3f_c00092{bottom:813.066667pt;}
.yd_c00092{bottom:816.266667pt;}
.y3e_c00092{bottom:828.800000pt;}
.yc_c00092{bottom:832.000000pt;}
.y3d_c00092{bottom:840.000000pt;}
.yb_c00092{bottom:848.266667pt;}
.y3c_c00092{bottom:848.666667pt;}
.ya_c00092{bottom:864.266667pt;}
.y9_c00092{bottom:880.000000pt;}
.y3b_c00092{bottom:880.266667pt;}
.y8_c00092{bottom:896.000000pt;}
.y3a_c00092{bottom:912.266667pt;}
.y7_c00092{bottom:915.466667pt;}
.y39_c00092{bottom:928.266667pt;}
.y6_c00092{bottom:931.466667pt;}
.y38_c00092{bottom:944.000000pt;}
.y5_c00092{bottom:947.733333pt;}
.y37_c00092{bottom:960.000000pt;}
.y4_c00092{bottom:963.466667pt;}
.y3_c00092{bottom:979.466667pt;}
.y36_c00092{bottom:979.866667pt;}
.y2_c00092{bottom:995.466667pt;}
.y35_c00092{bottom:995.866667pt;}
.y1_c00092{bottom:1019.466667pt;}
.ha_c00092{height:21.333333pt;}
.h9_c00092{height:32.000000pt;}
.h7_c00092{height:37.333333pt;}
.h8_c00092{height:42.666667pt;}
.h6_c00092{height:48.000000pt;}
.h5_c00092{height:53.333333pt;}
.h4_c00092{height:58.666667pt;}
.h3_c00092{height:64.000000pt;}
.h2_c00092{height:96.000000pt;}
.h1_c00092{height:1136.666667pt;}
.h0_c00092{height:1136.959961pt;}
.w1_c00092{width:847.333333pt;}
.w0_c00092{width:847.360027pt;}
.x0_c00092{left:0.000000pt;}
.x9c_c00092{left:5.733333pt;}
.x90_c00092{left:62.400000pt;}
.x87_c00092{left:64.533333pt;}
.x82_c00092{left:67.200000pt;}
.x6b_c00092{left:71.066667pt;}
.x4b_c00092{left:72.000000pt;}
.x55_c00092{left:74.933333pt;}
.x91_c00092{left:78.400000pt;}
.x98_c00092{left:81.600000pt;}
.x75_c00092{left:88.400000pt;}
.x4_c00092{left:89.600000pt;}
.x37_c00092{left:90.533333pt;}
.x92_c00092{left:100.533333pt;}
.x8b_c00092{left:102.133333pt;}
.x89_c00092{left:103.066667pt;}
.x56_c00092{left:104.000000pt;}
.x1d_c00092{left:106.133333pt;}
.x58_c00092{left:107.866667pt;}
.x63_c00092{left:110.400000pt;}
.x34_c00092{left:111.600000pt;}
.x5d_c00092{left:113.600000pt;}
.x93_c00092{left:115.600000pt;}
.x79_c00092{left:117.200000pt;}
.x76_c00092{left:118.133333pt;}
.x6f_c00092{left:119.333333pt;}
.x3e_c00092{left:120.933333pt;}
.x2d_c00092{left:123.600000pt;}
.x53_c00092{left:125.200000pt;}
.x38_c00092{left:126.666667pt;}
.x5_c00092{left:128.666667pt;}
.xd_c00092{left:130.133333pt;}
.x48_c00092{left:134.000000pt;}
.x83_c00092{left:135.600000pt;}
.x4f_c00092{left:136.933333pt;}
.x3f_c00092{left:138.533333pt;}
.x29_c00092{left:140.266667pt;}
.x7e_c00092{left:142.800000pt;}
.x97_c00092{left:143.733333pt;}
.x45_c00092{left:144.800000pt;}
.x1e_c00092{left:146.133333pt;}
.xe_c00092{left:147.733333pt;}
.x70_c00092{left:148.800000pt;}
.x35_c00092{left:150.000000pt;}
.x40_c00092{left:152.266667pt;}
.x6c_c00092{left:153.600000pt;}
.x14_c00092{left:154.533333pt;}
.x88_c00092{left:156.400000pt;}
.x64_c00092{left:158.133333pt;}
.x49_c00092{left:159.866667pt;}
.x2e_c00092{left:161.733333pt;}
.x50_c00092{left:164.800000pt;}
.x4e_c00092{left:166.000000pt;}
.x69_c00092{left:167.600000pt;}
.x2f_c00092{left:168.800000pt;}
.x65_c00092{left:171.066667pt;}
.x26_c00092{left:173.066667pt;}
.x4a_c00092{left:174.000000pt;}
.x77_c00092{left:176.133333pt;}
.x94_c00092{left:177.066667pt;}
.x46_c00092{left:178.400000pt;}
.x6a_c00092{left:184.266667pt;}
.x7a_c00092{left:185.733333pt;}
.x15_c00092{left:187.200000pt;}
.x2a_c00092{left:188.266667pt;}
.x6_c00092{left:190.400000pt;}
.x8c_c00092{left:191.733333pt;}
.x59_c00092{left:195.200000pt;}
.x9a_c00092{left:198.000000pt;}
.x1f_c00092{left:200.266667pt;}
.x51_c00092{left:202.933333pt;}
.x8a_c00092{left:204.266667pt;}
.x39_c00092{left:206.933333pt;}
.x7_c00092{left:208.666667pt;}
.x8d_c00092{left:209.600000pt;}
.x30_c00092{left:211.333333pt;}
.x66_c00092{left:212.933333pt;}
.x27_c00092{left:214.933333pt;}
.x9b_c00092{left:216.533333pt;}
.x20_c00092{left:217.866667pt;}
.x5e_c00092{left:220.800000pt;}
.x71_c00092{left:221.866667pt;}
.x1_c00092{left:223.333333pt;}
.xf_c00092{left:224.533333pt;}
.x57_c00092{left:226.266667pt;}
.x78_c00092{left:228.266667pt;}
.x84_c00092{left:229.733333pt;}
.x6d_c00092{left:231.333333pt;}
.x28_c00092{left:232.800000pt;}
.x21_c00092{left:234.533333pt;}
.x54_c00092{left:236.133333pt;}
.x8e_c00092{left:238.133333pt;}
.x85_c00092{left:240.266667pt;}
.x72_c00092{left:241.733333pt;}
.x3a_c00092{left:243.066667pt;}
.x16_c00092{left:246.400000pt;}
.x8_c00092{left:247.733333pt;}
.x10_c00092{left:250.133333pt;}
.x86_c00092{left:252.400000pt;}
.x5f_c00092{left:255.066667pt;}
.x5a_c00092{left:256.933333pt;}
.x2b_c00092{left:260.266667pt;}
.x3b_c00092{left:261.333333pt;}
.x22_c00092{left:262.666667pt;}
.x47_c00092{left:263.866667pt;}
.x4c_c00092{left:265.866667pt;}
.x41_c00092{left:267.466667pt;}
.x99_c00092{left:269.066667pt;}
.x9_c00092{left:271.466667pt;}
.x7c_c00092{left:272.666667pt;}
.x23_c00092{left:278.933333pt;}
.x1a_c00092{left:279.866667pt;}
.x73_c00092{left:280.800000pt;}
.x42_c00092{left:282.133333pt;}
.x36_c00092{left:283.733333pt;}
.x17_c00092{left:285.066667pt;}
.xa_c00092{left:287.466667pt;}
.x11_c00092{left:288.533333pt;}
.x95_c00092{left:290.266667pt;}
.x2_c00092{left:291.200000pt;}
.x7d_c00092{left:294.133333pt;}
.x67_c00092{left:295.466667pt;}
.x5b_c00092{left:300.133333pt;}
.x3c_c00092{left:301.066667pt;}
.x24_c00092{left:302.266667pt;}
.x1b_c00092{left:304.800000pt;}
.x43_c00092{left:307.733333pt;}
.x31_c00092{left:308.666667pt;}
.x8f_c00092{left:310.133333pt;}
.x60_c00092{left:311.733333pt;}
.x12_c00092{left:313.866667pt;}
.x52_c00092{left:315.866667pt;}
.x18_c00092{left:318.000000pt;}
.x4d_c00092{left:319.333333pt;}
.x7f_c00092{left:321.600000pt;}
.x3d_c00092{left:322.533333pt;}
.x32_c00092{left:325.333333pt;}
.x68_c00092{left:328.800000pt;}
.x80_c00092{left:331.200000pt;}
.x6e_c00092{left:333.466667pt;}
.x13_c00092{left:334.400000pt;}
.xb_c00092{left:335.733333pt;}
.x2c_c00092{left:337.066667pt;}
.x96_c00092{left:338.533333pt;}
.x25_c00092{left:341.333333pt;}
.x61_c00092{left:343.066667pt;}
.x5c_c00092{left:344.666667pt;}
.x7b_c00092{left:346.000000pt;}
.x74_c00092{left:348.266667pt;}
.xc_c00092{left:352.000000pt;}
.x44_c00092{left:353.200000pt;}
.x33_c00092{left:354.800000pt;}
.x19_c00092{left:356.666667pt;}
.x1c_c00092{left:358.266667pt;}
.x81_c00092{left:364.133333pt;}
.x62_c00092{left:366.400000pt;}
.x13a_c00092{left:383.333333pt;}
.x137_c00092{left:391.066667pt;}
.x104_c00092{left:392.266667pt;}
.xbd_c00092{left:393.333333pt;}
.xd8_c00092{left:394.266667pt;}
.xd9_c00092{left:402.933333pt;}
.x109_c00092{left:405.066667pt;}
.x102_c00092{left:406.266667pt;}
.x11b_c00092{left:407.866667pt;}
.xb7_c00092{left:409.200000pt;}
.xa4_c00092{left:410.400000pt;}
.xe3_c00092{left:412.266667pt;}
.x110_c00092{left:417.600000pt;}
.xe4_c00092{left:420.533333pt;}
.xda_c00092{left:424.666667pt;}
.xa5_c00092{left:425.866667pt;}
.x9d_c00092{left:427.200000pt;}
.x121_c00092{left:432.133333pt;}
.xfb_c00092{left:434.000000pt;}
.xe5_c00092{left:435.200000pt;}
.x111_c00092{left:437.466667pt;}
.xc9_c00092{left:439.866667pt;}
.x128_c00092{left:442.400000pt;}
.xcf_c00092{left:444.133333pt;}
.x105_c00092{left:446.000000pt;}
.x12f_c00092{left:446.933333pt;}
.x9e_c00092{left:448.000000pt;}
.xbe_c00092{left:449.333333pt;}
.xb4_c00092{left:451.200000pt;}
.x131_c00092{left:453.600000pt;}
.xd4_c00092{left:454.533333pt;}
.x12b_c00092{left:455.866667pt;}
.xca_c00092{left:456.800000pt;}
.x134_c00092{left:458.133333pt;}
.xf9_c00092{left:459.466667pt;}
.x12c_c00092{left:460.800000pt;}
.xf6_c00092{left:461.733333pt;}
.xea_c00092{left:463.066667pt;}
.xc6_c00092{left:464.133333pt;}
.xaf_c00092{left:465.333333pt;}
.x112_c00092{left:467.200000pt;}
.x116_c00092{left:469.200000pt;}
.xf0_c00092{left:470.400000pt;}
.xbb_c00092{left:471.733333pt;}
.x103_c00092{left:473.066667pt;}
.xb8_c00092{left:474.400000pt;}
.x126_c00092{left:476.933333pt;}
.xde_c00092{left:482.266667pt;}
.xb9_c00092{left:484.666667pt;}
.xa6_c00092{left:486.400000pt;}
.x12d_c00092{left:487.733333pt;}
.xa9_c00092{left:488.933333pt;}
.xfc_c00092{left:490.933333pt;}
.x129_c00092{left:492.266667pt;}
.x9f_c00092{left:493.466667pt;}
.xbf_c00092{left:494.800000pt;}
.x10a_c00092{left:496.000000pt;}
.xff_c00092{left:501.866667pt;}
.xd5_c00092{left:502.800000pt;}
.xd0_c00092{left:505.200000pt;}
.xf1_c00092{left:506.266667pt;}
.xaa_c00092{left:507.200000pt;}
.xba_c00092{left:508.933333pt;}
.xcb_c00092{left:510.533333pt;}
.x117_c00092{left:512.666667pt;}
.x11c_c00092{left:514.133333pt;}
.xd1_c00092{left:515.733333pt;}
.xd6_c00092{left:517.866667pt;}
.x106_c00092{left:520.000000pt;}
.x122_c00092{left:521.733333pt;}
.xdf_c00092{left:525.200000pt;}
.xb0_c00092{left:526.133333pt;}
.xdb_c00092{left:527.333333pt;}
.x11d_c00092{left:528.266667pt;}
.xab_c00092{left:530.533333pt;}
.x118_c00092{left:533.200000pt;}
.x132_c00092{left:536.666667pt;}
.xfd_c00092{left:538.000000pt;}
.xc2_c00092{left:539.600000pt;}
.x10b_c00092{left:540.533333pt;}
.x136_c00092{left:541.733333pt;}
.xe6_c00092{left:542.666667pt;}
.xb5_c00092{left:544.666667pt;}
.xc7_c00092{left:546.666667pt;}
.x138_c00092{left:547.600000pt;}
.xf7_c00092{left:548.800000pt;}
.xe0_c00092{left:550.800000pt;}
.x100_c00092{left:553.066667pt;}
.xeb_c00092{left:554.133333pt;}
.xb1_c00092{left:555.200000pt;}
.xa0_c00092{left:556.533333pt;}
.xd2_c00092{left:557.600000pt;}
.xcc_c00092{left:558.800000pt;}
.x11e_c00092{left:560.266667pt;}
.x123_c00092{left:562.400000pt;}
.xa1_c00092{left:564.266667pt;}
.xd7_c00092{left:567.466667pt;}
.xbc_c00092{left:570.533333pt;}
.xf2_c00092{left:572.800000pt;}
.xe1_c00092{left:573.866667pt;}
.xdc_c00092{left:574.933333pt;}
.xe7_c00092{left:577.866667pt;}
.xa7_c00092{left:581.066667pt;}
.x135_c00092{left:583.200000pt;}
.xec_c00092{left:585.200000pt;}
.xe8_c00092{left:586.133333pt;}
.x139_c00092{left:587.600000pt;}
.xc3_c00092{left:588.933333pt;}
.xac_c00092{left:591.066667pt;}
.x11f_c00092{left:593.866667pt;}
.xfe_c00092{left:596.266667pt;}
.x119_c00092{left:597.200000pt;}
.x12e_c00092{left:598.666667pt;}
.xf3_c00092{left:600.000000pt;}
.xed_c00092{left:600.933333pt;}
.xd3_c00092{left:603.333333pt;}
.x120_c00092{left:604.400000pt;}
.x10c_c00092{left:607.066667pt;}
.xad_c00092{left:608.666667pt;}
.xc4_c00092{left:613.200000pt;}
.xf4_c00092{left:615.333333pt;}
.xf8_c00092{left:617.600000pt;}
.xa2_c00092{left:618.933333pt;}
.x107_c00092{left:619.866667pt;}
.xf5_c00092{left:622.666667pt;}
.xdd_c00092{left:624.266667pt;}
.x124_c00092{left:625.466667pt;}
.x113_c00092{left:627.200000pt;}
.x10d_c00092{left:628.133333pt;}
.xb2_c00092{left:630.400000pt;}
.xcd_c00092{left:632.133333pt;}
.xc0_c00092{left:634.533333pt;}
.x133_c00092{left:637.333333pt;}
.xa8_c00092{left:638.933333pt;}
.xee_c00092{left:640.000000pt;}
.x130_c00092{left:643.066667pt;}
.x101_c00092{left:644.000000pt;}
.x127_c00092{left:645.600000pt;}
.x108_c00092{left:647.333333pt;}
.xce_c00092{left:648.800000pt;}
.xc5_c00092{left:651.333333pt;}
.xc1_c00092{left:652.400000pt;}
.x10e_c00092{left:653.466667pt;}
.x115_c00092{left:654.533333pt;}
.xb3_c00092{left:655.733333pt;}
.xef_c00092{left:659.466667pt;}
.x11a_c00092{left:662.533333pt;}
.xe9_c00092{left:664.266667pt;}
.xe2_c00092{left:666.933333pt;}
.x12a_c00092{left:669.200000pt;}
.xc8_c00092{left:671.866667pt;}
.xb6_c00092{left:673.200000pt;}
.xfa_c00092{left:675.466667pt;}
.x125_c00092{left:676.666667pt;}
.x3_c00092{left:677.733333pt;}
.x10f_c00092{left:679.066667pt;}
.x114_c00092{left:680.400000pt;}
.xae_c00092{left:682.266667pt;}
.xa3_c00092{left:684.266667pt;}
.x13c_c00092{left:833.200000pt;}
.x13d_c00092{left:834.800000pt;}
.x13b_c00092{left:839.333333pt;}
}





/* 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_c00093 {
    display:none;
  }
  .loading-indicator_c00093.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00093 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_c00093 { 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_c00093" -> "#page-container .classname_c00093")
 */
.pf_c00093 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00093 { /* 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_c00093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00093 { /* 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_c00093 { /* 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_c00093 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00093 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00093 {overflow:visible;}
  }
}
.c_c00093 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00093 { /* 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_c00093:after { /* webkit #35443 */
  content: '';
}
.t_c00093:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00093 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 */
}
.__c00093 { /* 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_c00093 { /* info for Javascript */
  display:none;
}
.l_c00093 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00093 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00093 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00093: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_c00093 {
    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_c00093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00093.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_c00093 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00093;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.000000;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;}
.mef_c00093{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00093{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m48_c00093{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m62_c00093{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md4_c00093{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mda_c00093{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m49_c00093{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m57_c00093{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00093{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00093{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00093{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00093{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m46_c00093{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m98_c00093{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00093{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mad_c00093{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m78_c00093{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00093{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00093{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00093{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00093{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00093{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m51_c00093{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m24_c00093{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00093{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m77_c00093{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m35_c00093{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00093{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m55_c00093{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00093{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mff_c00093{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00093{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00093{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00093{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00093{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00093{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m81_c00093{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.me0_c00093{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m53_c00093{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m33_c00093{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m68_c00093{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m34_c00093{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00093{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me4_c00093{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me5_c00093{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m79_c00093{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m38_c00093{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00093{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7_c00093{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mba_c00093{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m91_c00093{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m67_c00093{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00093{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00093{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00093{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m69_c00093{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m60_c00093{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m52_c00093{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m29_c00093{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00093{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.md1_c00093{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00093{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00093{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me7_c00093{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00093{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m13_c00093{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mca_c00093{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00093{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00093{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00093{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00093{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00093{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00093{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00093{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00093{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00093{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m32_c00093{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m101_c00093{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00093{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00093{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00093{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m31_c00093{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m20_c00093{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00093{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me9_c00093{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00093{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00093{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m66_c00093{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m86_c00093{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00093{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m22_c00093{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m58_c00093{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md5_c00093{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m76_c00093{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00093{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m85_c00093{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00093{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me_c00093{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00093{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.meb_c00093{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00093{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4_c00093{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8_c00093{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.maa_c00093{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m25_c00093{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m39_c00093{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00093{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m84_c00093{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mec_c00093{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m75_c00093{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m95_c00093{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m41_c00093{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00093{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00093{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m47_c00093{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m72_c00093{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00093{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mae_c00093{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mf_c00093{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mac_c00093{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m99_c00093{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.md7_c00093{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mea_c00093{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m73_c00093{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00093{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00093{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00093{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mee_c00093{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m94_c00093{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00093{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00093{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m21_c00093{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m27_c00093{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md6_c00093{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m10_c00093{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00093{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m89_c00093{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00093{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00093{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m80_c00093{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00093{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m15_c00093{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00093{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00093{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m71_c00093{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00093{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00093{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m30_c00093{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me3_c00093{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m28_c00093{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m45_c00093{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m61_c00093{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00093{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00093{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00093{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m37_c00093{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m100_c00093{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00093{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00093{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m54_c00093{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m17_c00093{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00093{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m63_c00093{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m90_c00093{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00093{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00093{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m88_c00093{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00093{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.md_c00093{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m50_c00093{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mab_c00093{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mde_c00093{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9_c00093{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00093{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m43_c00093{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00093{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.maf_c00093{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00093{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00093{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00093{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00093{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m70_c00093{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md9_c00093{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m83_c00093{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m16_c00093{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m59_c00093{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00093{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.me2_c00093{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m64_c00093{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m82_c00093{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00093{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m65_c00093{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m97_c00093{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m5_c00093{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00093{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00093{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m87_c00093{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6_c00093{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00093{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00093{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma_c00093{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m26_c00093{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00093{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00093{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00093{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00093{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m18_c00093{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m44_c00093{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m36_c00093{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.med_c00093{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m40_c00093{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00093{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2_c00093{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md0_c00093{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc_c00093{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md3_c00093{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00093{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m42_c00093{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00093{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00093{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m56_c00093{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00093{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00093{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me8_c00093{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m96_c00093{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00093{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00093{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00093{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00093{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m23_c00093{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00093{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.me6_c00093{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m74_c00093{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m0_c00093{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mce_c00093{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00093{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00093{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00093{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m93_c00093{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00093{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00093{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00093{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md2_c00093{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m12_c00093{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me1_c00093{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00093{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00093{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m14_c00093{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m11_c00093{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m92_c00093{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m19_c00093{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00093{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00093{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(0.459250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00093{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.md8_c00093{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mb_c00093{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls0_c00093{letter-spacing:0.000000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{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__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00093{word-spacing:-5.025478px;}
.ws5_c00093{word-spacing:0.000000px;}
.ws4_c00093{word-spacing:1.730458px;}
.ws3_c00093{word-spacing:7.380952px;}
.ws0_c00093{word-spacing:7.511848px;}
.ws1_c00093{word-spacing:16.384615px;}
.fc0_c00093{color:transparent;}
.fs4_c00093{font-size:30.000000px;}
.fs5_c00093{font-size:36.000000px;}
.fs2_c00093{font-size:60.000000px;}
.fs3_c00093{font-size:66.000000px;}
.fs0_c00093{font-size:72.000000px;}
.fs1_c00093{font-size:78.000000px;}
.y0_c00093{bottom:0.000000px;}
.y63_c00093{bottom:183.600000px;}
.y35_c00093{bottom:185.700000px;}
.y62_c00093{bottom:201.900000px;}
.y34_c00093{bottom:204.000000px;}
.y61_c00093{bottom:219.600000px;}
.y33_c00093{bottom:222.000000px;}
.y60_c00093{bottom:237.900000px;}
.y32_c00093{bottom:239.700000px;}
.y31_c00093{bottom:257.400000px;}
.y5f_c00093{bottom:260.400000px;}
.y30_c00093{bottom:275.400000px;}
.y5e_c00093{bottom:278.700000px;}
.y5d_c00093{bottom:297.000000px;}
.y2f_c00093{bottom:300.600000px;}
.y2e_c00093{bottom:315.000000px;}
.y5c_c00093{bottom:315.300000px;}
.y5b_c00093{bottom:333.300000px;}
.y2d_c00093{bottom:335.550000px;}
.y5a_c00093{bottom:351.300000px;}
.y2c_c00093{bottom:353.850000px;}
.y59_c00093{bottom:369.000000px;}
.y2b_c00093{bottom:371.550000px;}
.y58_c00093{bottom:391.800000px;}
.y2a_c00093{bottom:393.150000px;}
.y57_c00093{bottom:410.100000px;}
.y29_c00093{bottom:412.200000px;}
.y56_c00093{bottom:427.800000px;}
.y28_c00093{bottom:430.500000px;}
.y55_c00093{bottom:446.100000px;}
.y27_c00093{bottom:448.500000px;}
.y54_c00093{bottom:464.100000px;}
.y26_c00093{bottom:470.250000px;}
.y53_c00093{bottom:482.100000px;}
.y25_c00093{bottom:488.550000px;}
.y52_c00093{bottom:500.100000px;}
.y24_c00093{bottom:515.550000px;}
.y51_c00093{bottom:518.100000px;}
.y23_c00093{bottom:533.850000px;}
.y50_c00093{bottom:536.100000px;}
.y22_c00093{bottom:551.550000px;}
.y4f_c00093{bottom:554.400000px;}
.y4e_c00093{bottom:572.400000px;}
.y21_c00093{bottom:574.200000px;}
.y4d_c00093{bottom:590.400000px;}
.y20_c00093{bottom:592.200000px;}
.y4c_c00093{bottom:608.400000px;}
.y1f_c00093{bottom:610.200000px;}
.y4b_c00093{bottom:626.400000px;}
.y1e_c00093{bottom:628.200000px;}
.y1d_c00093{bottom:646.200000px;}
.y4a_c00093{bottom:647.400000px;}
.y49_c00093{bottom:662.100000px;}
.y1c_c00093{bottom:664.200000px;}
.y1b_c00093{bottom:682.500000px;}
.y48_c00093{bottom:700.200000px;}
.y1a_c00093{bottom:704.850000px;}
.y47_c00093{bottom:718.200000px;}
.y19_c00093{bottom:722.850000px;}
.y18_c00093{bottom:740.850000px;}
.y17_c00093{bottom:748.500000px;}
.y46_c00093{bottom:758.550000px;}
.y16_c00093{bottom:758.850000px;}
.y15_c00093{bottom:776.850000px;}
.y14_c00093{bottom:794.850000px;}
.y45_c00093{bottom:795.150000px;}
.y13_c00093{bottom:812.850000px;}
.y12_c00093{bottom:830.850000px;}
.y44_c00093{bottom:835.500000px;}
.y11_c00093{bottom:848.550000px;}
.y43_c00093{bottom:857.850000px;}
.y10_c00093{bottom:866.550000px;}
.y42_c00093{bottom:880.500000px;}
.yf_c00093{bottom:884.550000px;}
.ye_c00093{bottom:902.550000px;}
.y41_c00093{bottom:903.000000px;}
.y40_c00093{bottom:921.000000px;}
.yd_c00093{bottom:923.100000px;}
.yc_c00093{bottom:937.800000px;}
.y3f_c00093{bottom:939.300000px;}
.y3e_c00093{bottom:957.300000px;}
.yb_c00093{bottom:958.050000px;}
.y3d_c00093{bottom:975.300000px;}
.ya_c00093{bottom:976.350000px;}
.y3c_c00093{bottom:993.300000px;}
.y9_c00093{bottom:998.700000px;}
.y3b_c00093{bottom:1011.300000px;}
.y8_c00093{bottom:1017.000000px;}
.y3a_c00093{bottom:1029.300000px;}
.y7_c00093{bottom:1034.700000px;}
.y39_c00093{bottom:1047.600000px;}
.y6_c00093{bottom:1052.700000px;}
.y38_c00093{bottom:1065.600000px;}
.y5_c00093{bottom:1074.900000px;}
.y37_c00093{bottom:1083.600000px;}
.y4_c00093{bottom:1101.600000px;}
.y36_c00093{bottom:1101.900000px;}
.y3_c00093{bottom:1119.600000px;}
.y1_c00093{bottom:1145.550000px;}
.y2_c00093{bottom:1147.050000px;}
.h6_c00093{height:30.000000px;}
.h7_c00093{height:36.000000px;}
.h4_c00093{height:60.000000px;}
.h5_c00093{height:66.000000px;}
.h2_c00093{height:72.000000px;}
.h3_c00093{height:78.000000px;}
.h1_c00093{height:1272.750000px;}
.h0_c00093{height:1272.960022px;}
.w1_c00093{width:953.250000px;}
.w0_c00093{width:953.280030px;}
.x0_c00093{left:0.000000px;}
.x39_c00093{left:166.350000px;}
.x1_c00093{left:167.400000px;}
.x77_c00093{left:169.200000px;}
.x2c_c00093{left:181.200000px;}
.x81_c00093{left:183.150000px;}
.x3_c00093{left:184.350000px;}
.x79_c00093{left:185.850000px;}
.x23_c00093{left:186.900000px;}
.xf_c00093{left:204.900000px;}
.x69_c00093{left:206.550000px;}
.x45_c00093{left:208.200000px;}
.x3f_c00093{left:210.750000px;}
.x24_c00093{left:211.800000px;}
.x6b_c00093{left:213.450000px;}
.x2d_c00093{left:215.400000px;}
.x5b_c00093{left:217.200000px;}
.x66_c00093{left:218.850000px;}
.x61_c00093{left:220.200000px;}
.x82_c00093{left:221.250000px;}
.x17_c00093{left:222.900000px;}
.x7e_c00093{left:224.400000px;}
.x6a_c00093{left:226.050000px;}
.x53_c00093{left:229.950000px;}
.x31_c00093{left:231.150000px;}
.x2e_c00093{left:232.350000px;}
.x87_c00093{left:233.850000px;}
.x8f_c00093{left:234.900000px;}
.x4d_c00093{left:236.550000px;}
.x46_c00093{left:239.550000px;}
.x10_c00093{left:241.950000px;}
.x72_c00093{left:243.300000px;}
.x8a_c00093{left:245.250000px;}
.x1d_c00093{left:246.450000px;}
.x25_c00093{left:247.500000px;}
.x13_c00093{left:249.600000px;}
.x7f_c00093{left:252.900000px;}
.x80_c00093{left:256.050000px;}
.x83_c00093{left:258.000000px;}
.x73_c00093{left:259.200000px;}
.x5c_c00093{left:261.150000px;}
.x54_c00093{left:263.400000px;}
.x88_c00093{left:264.450000px;}
.x8b_c00093{left:266.100000px;}
.x18_c00093{left:267.150000px;}
.x4_c00093{left:271.050000px;}
.xb_c00093{left:272.700000px;}
.x14_c00093{left:275.100000px;}
.x40_c00093{left:276.300000px;}
.x28_c00093{left:279.750000px;}
.x26_c00093{left:280.950000px;}
.x3b_c00093{left:284.850000px;}
.x35_c00093{left:286.650000px;}
.x5d_c00093{left:288.450000px;}
.x5_c00093{left:290.850000px;}
.x32_c00093{left:292.650000px;}
.x75_c00093{left:295.350000px;}
.xc_c00093{left:296.400000px;}
.x70_c00093{left:303.750000px;}
.x27_c00093{left:305.400000px;}
.x55_c00093{left:306.600000px;}
.x15_c00093{left:308.250000px;}
.x19_c00093{left:310.350000px;}
.x5e_c00093{left:311.550000px;}
.x76_c00093{left:312.600000px;}
.x6_c00093{left:315.000000px;}
.x6e_c00093{left:318.150000px;}
.x3c_c00093{left:320.100000px;}
.x11_c00093{left:321.900000px;}
.x71_c00093{left:326.100000px;}
.x47_c00093{left:329.100000px;}
.x2f_c00093{left:331.050000px;}
.xd_c00093{left:333.450000px;}
.x1e_c00093{left:336.450000px;}
.x56_c00093{left:339.000000px;}
.x36_c00093{left:341.250000px;}
.x41_c00093{left:342.900000px;}
.x62_c00093{left:345.450000px;}
.x1a_c00093{left:348.450000px;}
.x30_c00093{left:349.800000px;}
.x6c_c00093{left:351.600000px;}
.xe_c00093{left:352.950000px;}
.x1f_c00093{left:358.350000px;}
.x84_c00093{left:360.150000px;}
.x7_c00093{left:361.800000px;}
.x7c_c00093{left:363.300000px;}
.x57_c00093{left:364.500000px;}
.x37_c00093{left:367.200000px;}
.x29_c00093{left:369.450000px;}
.x48_c00093{left:371.250000px;}
.x7d_c00093{left:373.050000px;}
.x6d_c00093{left:375.000000px;}
.x89_c00093{left:378.900000px;}
.x4e_c00093{left:381.150000px;}
.x16_c00093{left:382.350000px;}
.x8_c00093{left:384.450000px;}
.x3d_c00093{left:385.650000px;}
.x67_c00093{left:387.450000px;}
.x49_c00093{left:388.500000px;}
.x8e_c00093{left:390.750000px;}
.x6f_c00093{left:392.250000px;}
.x20_c00093{left:396.450000px;}
.x85_c00093{left:399.000000px;}
.x4f_c00093{left:400.650000px;}
.x86_c00093{left:403.500000px;}
.x9_c00093{left:404.550000px;}
.x2a_c00093{left:406.500000px;}
.x78_c00093{left:408.000000px;}
.x2_c00093{left:410.400000px;}
.x1b_c00093{left:412.200000px;}
.x38_c00093{left:417.000000px;}
.x7a_c00093{left:418.350000px;}
.x58_c00093{left:419.550000px;}
.x63_c00093{left:424.950000px;}
.x3a_c00093{left:427.050000px;}
.x42_c00093{left:429.000000px;}
.x5f_c00093{left:430.350000px;}
.x68_c00093{left:434.250000px;}
.x8c_c00093{left:435.300000px;}
.x1c_c00093{left:436.650000px;}
.x4a_c00093{left:438.450000px;}
.x2b_c00093{left:440.400000px;}
.x21_c00093{left:442.500000px;}
.x43_c00093{left:444.450000px;}
.x12_c00093{left:446.100000px;}
.x64_c00093{left:449.100000px;}
.x74_c00093{left:450.450000px;}
.x50_c00093{left:452.100000px;}
.xa_c00093{left:456.000000px;}
.x59_c00093{left:457.350000px;}
.x4b_c00093{left:459.000000px;}
.x33_c00093{left:461.100000px;}
.x7b_c00093{left:464.400000px;}
.x65_c00093{left:471.000000px;}
.x22_c00093{left:474.600000px;}
.x51_c00093{left:476.250000px;}
.x3e_c00093{left:478.500000px;}
.x4c_c00093{left:479.550000px;}
.x60_c00093{left:480.750000px;}
.x44_c00093{left:484.350000px;}
.x8d_c00093{left:485.700000px;}
.x34_c00093{left:488.850000px;}
.x52_c00093{left:491.400000px;}
.x5a_c00093{left:499.800000px;}
.xd9_c00093{left:525.900000px;}
.xdc_c00093{left:527.100000px;}
.x115_c00093{left:535.950000px;}
.xfe_c00093{left:540.000000px;}
.xf8_c00093{left:541.800000px;}
.x90_c00093{left:543.900000px;}
.xb9_c00093{left:545.100000px;}
.x121_c00093{left:546.300000px;}
.x108_c00093{left:549.000000px;}
.xdd_c00093{left:559.500000px;}
.x109_c00093{left:561.300000px;}
.xe0_c00093{left:563.100000px;}
.x98_c00093{left:565.800000px;}
.xfa_c00093{left:567.450000px;}
.x9e_c00093{left:568.650000px;}
.xcb_c00093{left:569.700000px;}
.xf3_c00093{left:572.700000px;}
.xad_c00093{left:574.050000px;}
.xba_c00093{left:579.000000px;}
.xb3_c00093{left:580.050000px;}
.xd0_c00093{left:581.250000px;}
.x118_c00093{left:582.450000px;}
.x104_c00093{left:583.500000px;}
.xc6_c00093{left:584.700000px;}
.x110_c00093{left:586.350000px;}
.xda_c00093{left:588.150000px;}
.x11a_c00093{left:593.400000px;}
.xbf_c00093{left:595.050000px;}
.xd5_c00093{left:596.250000px;}
.xa5_c00093{left:597.600000px;}
.xe7_c00093{left:598.950000px;}
.xb4_c00093{left:601.350000px;}
.x91_c00093{left:603.300000px;}
.xfb_c00093{left:604.500000px;}
.x9f_c00093{left:607.200000px;}
.xcc_c00093{left:610.350000px;}
.xa6_c00093{left:612.300000px;}
.xd1_c00093{left:614.700000px;}
.x10a_c00093{left:615.750000px;}
.xdb_c00093{left:618.450000px;}
.x111_c00093{left:620.850000px;}
.x92_c00093{left:622.800000px;}
.xe8_c00093{left:623.850000px;}
.x116_c00093{left:625.200000px;}
.x128_c00093{left:628.800000px;}
.xeb_c00093{left:630.300000px;}
.x99_c00093{left:631.350000px;}
.xe4_c00093{left:632.700000px;}
.xd2_c00093{left:634.500000px;}
.xa0_c00093{left:638.550000px;}
.xa7_c00093{left:640.050000px;}
.xf4_c00093{left:641.400000px;}
.x107_c00093{left:643.050000px;}
.x119_c00093{left:644.400000px;}
.x9a_c00093{left:645.450000px;}
.x12d_c00093{left:647.550000px;}
.x12b_c00093{left:649.500000px;}
.xec_c00093{left:654.750000px;}
.xc7_c00093{left:655.950000px;}
.xae_c00093{left:657.600000px;}
.xa8_c00093{left:659.850000px;}
.xc8_c00093{left:663.900000px;}
.x122_c00093{left:664.950000px;}
.xf1_c00093{left:666.600000px;}
.xbb_c00093{left:668.100000px;}
.x93_c00093{left:671.400000px;}
.xde_c00093{left:673.950000px;}
.x105_c00093{left:675.750000px;}
.x9b_c00093{left:676.800000px;}
.xcd_c00093{left:678.750000px;}
.x126_c00093{left:679.800000px;}
.x11e_c00093{left:682.500000px;}
.xc0_c00093{left:683.700000px;}
.xaf_c00093{left:686.100000px;}
.xbc_c00093{left:687.150000px;}
.x11b_c00093{left:688.200000px;}
.xd6_c00093{left:689.850000px;}
.xe5_c00093{left:692.550000px;}
.x10e_c00093{left:693.600000px;}
.x11f_c00093{left:694.950000px;}
.xff_c00093{left:698.100000px;}
.xa1_c00093{left:699.450000px;}
.xbd_c00093{left:701.550000px;}
.x10b_c00093{left:702.900000px;}
.xb0_c00093{left:704.100000px;}
.xc1_c00093{left:705.600000px;}
.xfc_c00093{left:707.250000px;}
.x102_c00093{left:709.050000px;}
.xe1_c00093{left:710.400000px;}
.x129_c00093{left:711.450000px;}
.x100_c00093{left:715.350000px;}
.x106_c00093{left:716.850000px;}
.xb5_c00093{left:720.750000px;}
.x10c_c00093{left:722.400000px;}
.x94_c00093{left:723.600000px;}
.xed_c00093{left:725.700000px;}
.xce_c00093{left:730.200000px;}
.x101_c00093{left:732.300000px;}
.xa9_c00093{left:734.400000px;}
.x112_c00093{left:735.750000px;}
.xd7_c00093{left:738.150000px;}
.xe2_c00093{left:740.250000px;}
.xc9_c00093{left:741.750000px;}
.xdf_c00093{left:743.850000px;}
.xc2_c00093{left:744.900000px;}
.xb1_c00093{left:746.250000px;}
.x9c_c00093{left:747.300000px;}
.xe9_c00093{left:750.450000px;}
.xcf_c00093{left:751.500000px;}
.xa2_c00093{left:752.700000px;}
.xb6_c00093{left:754.650000px;}
.x12c_c00093{left:755.700000px;}
.xf2_c00093{left:758.100000px;}
.x117_c00093{left:759.150000px;}
.xaa_c00093{left:760.650000px;}
.x9d_c00093{left:764.550000px;}
.xd3_c00093{left:769.050000px;}
.xee_c00093{left:770.400000px;}
.x113_c00093{left:771.450000px;}
.xa3_c00093{left:772.500000px;}
.xb7_c00093{left:775.200000px;}
.x95_c00093{left:776.850000px;}
.x103_c00093{left:779.250000px;}
.xef_c00093{left:781.950000px;}
.xc3_c00093{left:784.800000px;}
.xfd_c00093{left:787.200000px;}
.x10d_c00093{left:789.000000px;}
.x96_c00093{left:792.300000px;}
.xf5_c00093{left:793.800000px;}
.x120_c00093{left:796.500000px;}
.xea_c00093{left:799.050000px;}
.xab_c00093{left:802.800000px;}
.x11c_c00093{left:804.900000px;}
.xd4_c00093{left:806.850000px;}
.xc4_c00093{left:807.900000px;}
.x12a_c00093{left:810.000000px;}
.xe3_c00093{left:811.950000px;}
.xa4_c00093{left:813.600000px;}
.xf9_c00093{left:815.850000px;}
.xbe_c00093{left:817.500000px;}
.x10f_c00093{left:819.150000px;}
.xca_c00093{left:820.950000px;}
.xf6_c00093{left:823.350000px;}
.xb2_c00093{left:824.700000px;}
.x127_c00093{left:825.750000px;}
.x124_c00093{left:830.250000px;}
.xf0_c00093{left:831.600000px;}
.x97_c00093{left:834.450000px;}
.x114_c00093{left:838.050000px;}
.xd8_c00093{left:839.700000px;}
.x123_c00093{left:841.050000px;}
.xf7_c00093{left:843.150000px;}
.xe6_c00093{left:845.850000px;}
.xac_c00093{left:848.100000px;}
.xc5_c00093{left:849.300000px;}
.x125_c00093{left:851.550000px;}
.xb8_c00093{left:852.900000px;}
.x11d_c00093{left:855.000000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws2_c00093{word-spacing:-4.467091pt;}
.ws5_c00093{word-spacing:0.000000pt;}
.ws4_c00093{word-spacing:1.538185pt;}
.ws3_c00093{word-spacing:6.560847pt;}
.ws0_c00093{word-spacing:6.677199pt;}
.ws1_c00093{word-spacing:14.564103pt;}
.fs4_c00093{font-size:26.666667pt;}
.fs5_c00093{font-size:32.000000pt;}
.fs2_c00093{font-size:53.333333pt;}
.fs3_c00093{font-size:58.666667pt;}
.fs0_c00093{font-size:64.000000pt;}
.fs1_c00093{font-size:69.333333pt;}
.y0_c00093{bottom:0.000000pt;}
.y63_c00093{bottom:163.200000pt;}
.y35_c00093{bottom:165.066667pt;}
.y62_c00093{bottom:179.466667pt;}
.y34_c00093{bottom:181.333333pt;}
.y61_c00093{bottom:195.200000pt;}
.y33_c00093{bottom:197.333333pt;}
.y60_c00093{bottom:211.466667pt;}
.y32_c00093{bottom:213.066667pt;}
.y31_c00093{bottom:228.800000pt;}
.y5f_c00093{bottom:231.466667pt;}
.y30_c00093{bottom:244.800000pt;}
.y5e_c00093{bottom:247.733333pt;}
.y5d_c00093{bottom:264.000000pt;}
.y2f_c00093{bottom:267.200000pt;}
.y2e_c00093{bottom:280.000000pt;}
.y5c_c00093{bottom:280.266667pt;}
.y5b_c00093{bottom:296.266667pt;}
.y2d_c00093{bottom:298.266667pt;}
.y5a_c00093{bottom:312.266667pt;}
.y2c_c00093{bottom:314.533333pt;}
.y59_c00093{bottom:328.000000pt;}
.y2b_c00093{bottom:330.266667pt;}
.y58_c00093{bottom:348.266667pt;}
.y2a_c00093{bottom:349.466667pt;}
.y57_c00093{bottom:364.533333pt;}
.y29_c00093{bottom:366.400000pt;}
.y56_c00093{bottom:380.266667pt;}
.y28_c00093{bottom:382.666667pt;}
.y55_c00093{bottom:396.533333pt;}
.y27_c00093{bottom:398.666667pt;}
.y54_c00093{bottom:412.533333pt;}
.y26_c00093{bottom:418.000000pt;}
.y53_c00093{bottom:428.533333pt;}
.y25_c00093{bottom:434.266667pt;}
.y52_c00093{bottom:444.533333pt;}
.y24_c00093{bottom:458.266667pt;}
.y51_c00093{bottom:460.533333pt;}
.y23_c00093{bottom:474.533333pt;}
.y50_c00093{bottom:476.533333pt;}
.y22_c00093{bottom:490.266667pt;}
.y4f_c00093{bottom:492.800000pt;}
.y4e_c00093{bottom:508.800000pt;}
.y21_c00093{bottom:510.400000pt;}
.y4d_c00093{bottom:524.800000pt;}
.y20_c00093{bottom:526.400000pt;}
.y4c_c00093{bottom:540.800000pt;}
.y1f_c00093{bottom:542.400000pt;}
.y4b_c00093{bottom:556.800000pt;}
.y1e_c00093{bottom:558.400000pt;}
.y1d_c00093{bottom:574.400000pt;}
.y4a_c00093{bottom:575.466667pt;}
.y49_c00093{bottom:588.533333pt;}
.y1c_c00093{bottom:590.400000pt;}
.y1b_c00093{bottom:606.666667pt;}
.y48_c00093{bottom:622.400000pt;}
.y1a_c00093{bottom:626.533333pt;}
.y47_c00093{bottom:638.400000pt;}
.y19_c00093{bottom:642.533333pt;}
.y18_c00093{bottom:658.533333pt;}
.y17_c00093{bottom:665.333333pt;}
.y46_c00093{bottom:674.266667pt;}
.y16_c00093{bottom:674.533333pt;}
.y15_c00093{bottom:690.533333pt;}
.y14_c00093{bottom:706.533333pt;}
.y45_c00093{bottom:706.800000pt;}
.y13_c00093{bottom:722.533333pt;}
.y12_c00093{bottom:738.533333pt;}
.y44_c00093{bottom:742.666667pt;}
.y11_c00093{bottom:754.266667pt;}
.y43_c00093{bottom:762.533333pt;}
.y10_c00093{bottom:770.266667pt;}
.y42_c00093{bottom:782.666667pt;}
.yf_c00093{bottom:786.266667pt;}
.ye_c00093{bottom:802.266667pt;}
.y41_c00093{bottom:802.666667pt;}
.y40_c00093{bottom:818.666667pt;}
.yd_c00093{bottom:820.533333pt;}
.yc_c00093{bottom:833.600000pt;}
.y3f_c00093{bottom:834.933333pt;}
.y3e_c00093{bottom:850.933333pt;}
.yb_c00093{bottom:851.600000pt;}
.y3d_c00093{bottom:866.933333pt;}
.ya_c00093{bottom:867.866667pt;}
.y3c_c00093{bottom:882.933333pt;}
.y9_c00093{bottom:887.733333pt;}
.y3b_c00093{bottom:898.933333pt;}
.y8_c00093{bottom:904.000000pt;}
.y3a_c00093{bottom:914.933333pt;}
.y7_c00093{bottom:919.733333pt;}
.y39_c00093{bottom:931.200000pt;}
.y6_c00093{bottom:935.733333pt;}
.y38_c00093{bottom:947.200000pt;}
.y5_c00093{bottom:955.466667pt;}
.y37_c00093{bottom:963.200000pt;}
.y4_c00093{bottom:979.200000pt;}
.y36_c00093{bottom:979.466667pt;}
.y3_c00093{bottom:995.200000pt;}
.y1_c00093{bottom:1018.266667pt;}
.y2_c00093{bottom:1019.600000pt;}
.h6_c00093{height:26.666667pt;}
.h7_c00093{height:32.000000pt;}
.h4_c00093{height:53.333333pt;}
.h5_c00093{height:58.666667pt;}
.h2_c00093{height:64.000000pt;}
.h3_c00093{height:69.333333pt;}
.h1_c00093{height:1131.333333pt;}
.h0_c00093{height:1131.520020pt;}
.w1_c00093{width:847.333333pt;}
.w0_c00093{width:847.360027pt;}
.x0_c00093{left:0.000000pt;}
.x39_c00093{left:147.866667pt;}
.x1_c00093{left:148.800000pt;}
.x77_c00093{left:150.400000pt;}
.x2c_c00093{left:161.066667pt;}
.x81_c00093{left:162.800000pt;}
.x3_c00093{left:163.866667pt;}
.x79_c00093{left:165.200000pt;}
.x23_c00093{left:166.133333pt;}
.xf_c00093{left:182.133333pt;}
.x69_c00093{left:183.600000pt;}
.x45_c00093{left:185.066667pt;}
.x3f_c00093{left:187.333333pt;}
.x24_c00093{left:188.266667pt;}
.x6b_c00093{left:189.733333pt;}
.x2d_c00093{left:191.466667pt;}
.x5b_c00093{left:193.066667pt;}
.x66_c00093{left:194.533333pt;}
.x61_c00093{left:195.733333pt;}
.x82_c00093{left:196.666667pt;}
.x17_c00093{left:198.133333pt;}
.x7e_c00093{left:199.466667pt;}
.x6a_c00093{left:200.933333pt;}
.x53_c00093{left:204.400000pt;}
.x31_c00093{left:205.466667pt;}
.x2e_c00093{left:206.533333pt;}
.x87_c00093{left:207.866667pt;}
.x8f_c00093{left:208.800000pt;}
.x4d_c00093{left:210.266667pt;}
.x46_c00093{left:212.933333pt;}
.x10_c00093{left:215.066667pt;}
.x72_c00093{left:216.266667pt;}
.x8a_c00093{left:218.000000pt;}
.x1d_c00093{left:219.066667pt;}
.x25_c00093{left:220.000000pt;}
.x13_c00093{left:221.866667pt;}
.x7f_c00093{left:224.800000pt;}
.x80_c00093{left:227.600000pt;}
.x83_c00093{left:229.333333pt;}
.x73_c00093{left:230.400000pt;}
.x5c_c00093{left:232.133333pt;}
.x54_c00093{left:234.133333pt;}
.x88_c00093{left:235.066667pt;}
.x8b_c00093{left:236.533333pt;}
.x18_c00093{left:237.466667pt;}
.x4_c00093{left:240.933333pt;}
.xb_c00093{left:242.400000pt;}
.x14_c00093{left:244.533333pt;}
.x40_c00093{left:245.600000pt;}
.x28_c00093{left:248.666667pt;}
.x26_c00093{left:249.733333pt;}
.x3b_c00093{left:253.200000pt;}
.x35_c00093{left:254.800000pt;}
.x5d_c00093{left:256.400000pt;}
.x5_c00093{left:258.533333pt;}
.x32_c00093{left:260.133333pt;}
.x75_c00093{left:262.533333pt;}
.xc_c00093{left:263.466667pt;}
.x70_c00093{left:270.000000pt;}
.x27_c00093{left:271.466667pt;}
.x55_c00093{left:272.533333pt;}
.x15_c00093{left:274.000000pt;}
.x19_c00093{left:275.866667pt;}
.x5e_c00093{left:276.933333pt;}
.x76_c00093{left:277.866667pt;}
.x6_c00093{left:280.000000pt;}
.x6e_c00093{left:282.800000pt;}
.x3c_c00093{left:284.533333pt;}
.x11_c00093{left:286.133333pt;}
.x71_c00093{left:289.866667pt;}
.x47_c00093{left:292.533333pt;}
.x2f_c00093{left:294.266667pt;}
.xd_c00093{left:296.400000pt;}
.x1e_c00093{left:299.066667pt;}
.x56_c00093{left:301.333333pt;}
.x36_c00093{left:303.333333pt;}
.x41_c00093{left:304.800000pt;}
.x62_c00093{left:307.066667pt;}
.x1a_c00093{left:309.733333pt;}
.x30_c00093{left:310.933333pt;}
.x6c_c00093{left:312.533333pt;}
.xe_c00093{left:313.733333pt;}
.x1f_c00093{left:318.533333pt;}
.x84_c00093{left:320.133333pt;}
.x7_c00093{left:321.600000pt;}
.x7c_c00093{left:322.933333pt;}
.x57_c00093{left:324.000000pt;}
.x37_c00093{left:326.400000pt;}
.x29_c00093{left:328.400000pt;}
.x48_c00093{left:330.000000pt;}
.x7d_c00093{left:331.600000pt;}
.x6d_c00093{left:333.333333pt;}
.x89_c00093{left:336.800000pt;}
.x4e_c00093{left:338.800000pt;}
.x16_c00093{left:339.866667pt;}
.x8_c00093{left:341.733333pt;}
.x3d_c00093{left:342.800000pt;}
.x67_c00093{left:344.400000pt;}
.x49_c00093{left:345.333333pt;}
.x8e_c00093{left:347.333333pt;}
.x6f_c00093{left:348.666667pt;}
.x20_c00093{left:352.400000pt;}
.x85_c00093{left:354.666667pt;}
.x4f_c00093{left:356.133333pt;}
.x86_c00093{left:358.666667pt;}
.x9_c00093{left:359.600000pt;}
.x2a_c00093{left:361.333333pt;}
.x78_c00093{left:362.666667pt;}
.x2_c00093{left:364.800000pt;}
.x1b_c00093{left:366.400000pt;}
.x38_c00093{left:370.666667pt;}
.x7a_c00093{left:371.866667pt;}
.x58_c00093{left:372.933333pt;}
.x63_c00093{left:377.733333pt;}
.x3a_c00093{left:379.600000pt;}
.x42_c00093{left:381.333333pt;}
.x5f_c00093{left:382.533333pt;}
.x68_c00093{left:386.000000pt;}
.x8c_c00093{left:386.933333pt;}
.x1c_c00093{left:388.133333pt;}
.x4a_c00093{left:389.733333pt;}
.x2b_c00093{left:391.466667pt;}
.x21_c00093{left:393.333333pt;}
.x43_c00093{left:395.066667pt;}
.x12_c00093{left:396.533333pt;}
.x64_c00093{left:399.200000pt;}
.x74_c00093{left:400.400000pt;}
.x50_c00093{left:401.866667pt;}
.xa_c00093{left:405.333333pt;}
.x59_c00093{left:406.533333pt;}
.x4b_c00093{left:408.000000pt;}
.x33_c00093{left:409.866667pt;}
.x7b_c00093{left:412.800000pt;}
.x65_c00093{left:418.666667pt;}
.x22_c00093{left:421.866667pt;}
.x51_c00093{left:423.333333pt;}
.x3e_c00093{left:425.333333pt;}
.x4c_c00093{left:426.266667pt;}
.x60_c00093{left:427.333333pt;}
.x44_c00093{left:430.533333pt;}
.x8d_c00093{left:431.733333pt;}
.x34_c00093{left:434.533333pt;}
.x52_c00093{left:436.800000pt;}
.x5a_c00093{left:444.266667pt;}
.xd9_c00093{left:467.466667pt;}
.xdc_c00093{left:468.533333pt;}
.x115_c00093{left:476.400000pt;}
.xfe_c00093{left:480.000000pt;}
.xf8_c00093{left:481.600000pt;}
.x90_c00093{left:483.466667pt;}
.xb9_c00093{left:484.533333pt;}
.x121_c00093{left:485.600000pt;}
.x108_c00093{left:488.000000pt;}
.xdd_c00093{left:497.333333pt;}
.x109_c00093{left:498.933333pt;}
.xe0_c00093{left:500.533333pt;}
.x98_c00093{left:502.933333pt;}
.xfa_c00093{left:504.400000pt;}
.x9e_c00093{left:505.466667pt;}
.xcb_c00093{left:506.400000pt;}
.xf3_c00093{left:509.066667pt;}
.xad_c00093{left:510.266667pt;}
.xba_c00093{left:514.666667pt;}
.xb3_c00093{left:515.600000pt;}
.xd0_c00093{left:516.666667pt;}
.x118_c00093{left:517.733333pt;}
.x104_c00093{left:518.666667pt;}
.xc6_c00093{left:519.733333pt;}
.x110_c00093{left:521.200000pt;}
.xda_c00093{left:522.800000pt;}
.x11a_c00093{left:527.466667pt;}
.xbf_c00093{left:528.933333pt;}
.xd5_c00093{left:530.000000pt;}
.xa5_c00093{left:531.200000pt;}
.xe7_c00093{left:532.400000pt;}
.xb4_c00093{left:534.533333pt;}
.x91_c00093{left:536.266667pt;}
.xfb_c00093{left:537.333333pt;}
.x9f_c00093{left:539.733333pt;}
.xcc_c00093{left:542.533333pt;}
.xa6_c00093{left:544.266667pt;}
.xd1_c00093{left:546.400000pt;}
.x10a_c00093{left:547.333333pt;}
.xdb_c00093{left:549.733333pt;}
.x111_c00093{left:551.866667pt;}
.x92_c00093{left:553.600000pt;}
.xe8_c00093{left:554.533333pt;}
.x116_c00093{left:555.733333pt;}
.x128_c00093{left:558.933333pt;}
.xeb_c00093{left:560.266667pt;}
.x99_c00093{left:561.200000pt;}
.xe4_c00093{left:562.400000pt;}
.xd2_c00093{left:564.000000pt;}
.xa0_c00093{left:567.600000pt;}
.xa7_c00093{left:568.933333pt;}
.xf4_c00093{left:570.133333pt;}
.x107_c00093{left:571.600000pt;}
.x119_c00093{left:572.800000pt;}
.x9a_c00093{left:573.733333pt;}
.x12d_c00093{left:575.600000pt;}
.x12b_c00093{left:577.333333pt;}
.xec_c00093{left:582.000000pt;}
.xc7_c00093{left:583.066667pt;}
.xae_c00093{left:584.533333pt;}
.xa8_c00093{left:586.533333pt;}
.xc8_c00093{left:590.133333pt;}
.x122_c00093{left:591.066667pt;}
.xf1_c00093{left:592.533333pt;}
.xbb_c00093{left:593.866667pt;}
.x93_c00093{left:596.800000pt;}
.xde_c00093{left:599.066667pt;}
.x105_c00093{left:600.666667pt;}
.x9b_c00093{left:601.600000pt;}
.xcd_c00093{left:603.333333pt;}
.x126_c00093{left:604.266667pt;}
.x11e_c00093{left:606.666667pt;}
.xc0_c00093{left:607.733333pt;}
.xaf_c00093{left:609.866667pt;}
.xbc_c00093{left:610.800000pt;}
.x11b_c00093{left:611.733333pt;}
.xd6_c00093{left:613.200000pt;}
.xe5_c00093{left:615.600000pt;}
.x10e_c00093{left:616.533333pt;}
.x11f_c00093{left:617.733333pt;}
.xff_c00093{left:620.533333pt;}
.xa1_c00093{left:621.733333pt;}
.xbd_c00093{left:623.600000pt;}
.x10b_c00093{left:624.800000pt;}
.xb0_c00093{left:625.866667pt;}
.xc1_c00093{left:627.200000pt;}
.xfc_c00093{left:628.666667pt;}
.x102_c00093{left:630.266667pt;}
.xe1_c00093{left:631.466667pt;}
.x129_c00093{left:632.400000pt;}
.x100_c00093{left:635.866667pt;}
.x106_c00093{left:637.200000pt;}
.xb5_c00093{left:640.666667pt;}
.x10c_c00093{left:642.133333pt;}
.x94_c00093{left:643.200000pt;}
.xed_c00093{left:645.066667pt;}
.xce_c00093{left:649.066667pt;}
.x101_c00093{left:650.933333pt;}
.xa9_c00093{left:652.800000pt;}
.x112_c00093{left:654.000000pt;}
.xd7_c00093{left:656.133333pt;}
.xe2_c00093{left:658.000000pt;}
.xc9_c00093{left:659.333333pt;}
.xdf_c00093{left:661.200000pt;}
.xc2_c00093{left:662.133333pt;}
.xb1_c00093{left:663.333333pt;}
.x9c_c00093{left:664.266667pt;}
.xe9_c00093{left:667.066667pt;}
.xcf_c00093{left:668.000000pt;}
.xa2_c00093{left:669.066667pt;}
.xb6_c00093{left:670.800000pt;}
.x12c_c00093{left:671.733333pt;}
.xf2_c00093{left:673.866667pt;}
.x117_c00093{left:674.800000pt;}
.xaa_c00093{left:676.133333pt;}
.x9d_c00093{left:679.600000pt;}
.xd3_c00093{left:683.600000pt;}
.xee_c00093{left:684.800000pt;}
.x113_c00093{left:685.733333pt;}
.xa3_c00093{left:686.666667pt;}
.xb7_c00093{left:689.066667pt;}
.x95_c00093{left:690.533333pt;}
.x103_c00093{left:692.666667pt;}
.xef_c00093{left:695.066667pt;}
.xc3_c00093{left:697.600000pt;}
.xfd_c00093{left:699.733333pt;}
.x10d_c00093{left:701.333333pt;}
.x96_c00093{left:704.266667pt;}
.xf5_c00093{left:705.600000pt;}
.x120_c00093{left:708.000000pt;}
.xea_c00093{left:710.266667pt;}
.xab_c00093{left:713.600000pt;}
.x11c_c00093{left:715.466667pt;}
.xd4_c00093{left:717.200000pt;}
.xc4_c00093{left:718.133333pt;}
.x12a_c00093{left:720.000000pt;}
.xe3_c00093{left:721.733333pt;}
.xa4_c00093{left:723.200000pt;}
.xf9_c00093{left:725.200000pt;}
.xbe_c00093{left:726.666667pt;}
.x10f_c00093{left:728.133333pt;}
.xca_c00093{left:729.733333pt;}
.xf6_c00093{left:731.866667pt;}
.xb2_c00093{left:733.066667pt;}
.x127_c00093{left:734.000000pt;}
.x124_c00093{left:738.000000pt;}
.xf0_c00093{left:739.200000pt;}
.x97_c00093{left:741.733333pt;}
.x114_c00093{left:744.933333pt;}
.xd8_c00093{left:746.400000pt;}
.x123_c00093{left:747.600000pt;}
.xf7_c00093{left:749.466667pt;}
.xe6_c00093{left:751.866667pt;}
.xac_c00093{left:753.866667pt;}
.xc5_c00093{left:754.933333pt;}
.x125_c00093{left:756.933333pt;}
.xb8_c00093{left:758.133333pt;}
.x11d_c00093{left:760.000000pt;}
}





/* 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_c00094 {
    display:none;
  }
  .loading-indicator_c00094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00094 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_c00094 { 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_c00094" -> "#page-container .classname_c00094")
 */
.pf_c00094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00094 { /* 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_c00094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00094 { /* 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_c00094 { /* 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_c00094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00094 {overflow:visible;}
  }
}
.c_c00094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00094 { /* 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_c00094:after { /* webkit #35443 */
  content: '';
}
.t_c00094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00094 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 */
}
.__c00094 { /* 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_c00094 { /* info for Javascript */
  display:none;
}
.l_c00094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00094: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_c00094 {
    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_c00094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00094.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_c00094 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00094;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.000000;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;}
.mc3_c00094{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);}
.ma_c00094{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00094{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00094{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00094{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mde_c00094{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00094{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00094{transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00094{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00094{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m59_c00094{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00094{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m81_c00094{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m13_c00094{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m111_c00094{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m109_c00094{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00094{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m11_c00094{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00094{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m28_c00094{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m32_c00094{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00094{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00094{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m12_c00094{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00094{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m38_c00094{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m112_c00094{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00094{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mce_c00094{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m17_c00094{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m39_c00094{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf_c00094{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m100_c00094{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m15_c00094{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00094{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m87_c00094{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00094{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md_c00094{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00094{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m114_c00094{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00094{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00094{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00094{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m56_c00094{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00094{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m108_c00094{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00094{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00094{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m65_c00094{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00094{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m5_c00094{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00094{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me8_c00094{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00094{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me0_c00094{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00094{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00094{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.maf_c00094{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mea_c00094{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m54_c00094{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m72_c00094{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00094{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00094{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mae_c00094{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m57_c00094{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00094{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00094{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m68_c00094{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m73_c00094{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mef_c00094{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00094{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m45_c00094{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m16_c00094{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m18_c00094{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m96_c00094{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m19_c00094{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mab_c00094{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00094{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m88_c00094{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00094{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00094{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m69_c00094{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m92_c00094{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m53_c00094{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00094{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00094{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9_c00094{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m36_c00094{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m101_c00094{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00094{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00094{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00094{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me3_c00094{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m30_c00094{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00094{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m49_c00094{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m22_c00094{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md9_c00094{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m83_c00094{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00094{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00094{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00094{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me5_c00094{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00094{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m74_c00094{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00094{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m34_c00094{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m63_c00094{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m71_c00094{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m90_c00094{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me7_c00094{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7_c00094{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md6_c00094{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.md2_c00094{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00094{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00094{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00094{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00094{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00094{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00094{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mff_c00094{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me_c00094{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m23_c00094{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m26_c00094{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00094{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me6_c00094{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m66_c00094{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m43_c00094{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00094{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00094{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m67_c00094{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m89_c00094{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00094{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m44_c00094{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m86_c00094{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m79_c00094{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4_c00094{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00094{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00094{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6_c00094{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00094{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00094{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00094{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00094{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00094{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00094{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m14_c00094{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m60_c00094{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.meb_c00094{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00094{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m35_c00094{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00094{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me2_c00094{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m98_c00094{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m31_c00094{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mec_c00094{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00094{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mca_c00094{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc_c00094{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00094{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00094{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00094{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m64_c00094{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00094{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m106_c00094{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00094{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00094{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m77_c00094{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m113_c00094{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00094{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00094{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00094{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00094{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m37_c00094{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m91_c00094{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m55_c00094{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00094{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m95_c00094{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00094{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m76_c00094{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m93_c00094{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m97_c00094{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00094{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m52_c00094{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m27_c00094{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00094{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00094{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md8_c00094{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m78_c00094{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8_c00094{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m75_c00094{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md4_c00094{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2_c00094{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00094{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me1_c00094{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00094{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00094{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me9_c00094{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00094{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00094{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m42_c00094{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mee_c00094{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00094{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00094{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m61_c00094{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m102_c00094{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m47_c00094{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00094{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00094{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00094{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m62_c00094{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00094{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00094{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00094{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00094{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m107_c00094{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00094{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00094{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00094{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00094{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);}
.m110_c00094{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m80_c00094{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m116_c00094{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m48_c00094{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md0_c00094{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00094{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00094{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m85_c00094{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00094{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00094{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m70_c00094{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00094{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00094{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mba_c00094{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m82_c00094{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.md3_c00094{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md1_c00094{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m103_c00094{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m84_c00094{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md5_c00094{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00094{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m115_c00094{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m46_c00094{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m105_c00094{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m104_c00094{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m50_c00094{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00094{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00094{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m24_c00094{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00094{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m3_c00094{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00094{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m58_c00094{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00094{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m99_c00094{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m41_c00094{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00094{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.med_c00094{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mda_c00094{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00094{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00094{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00094{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00094{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mad_c00094{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.me4_c00094{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m20_c00094{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m25_c00094{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m51_c00094{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00094{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m21_c00094{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mac_c00094{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m29_c00094{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00094{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m40_c00094{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.maa_c00094{transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);}
.md7_c00094{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m0_c00094{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m33_c00094{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls0_c00094{letter-spacing:0.000000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{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__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:-11.171694px;}
.ws3_c00094{word-spacing:-10.299878px;}
.ws1_c00094{word-spacing:-5.460796px;}
.ws4_c00094{word-spacing:-1.650655px;}
.ws8_c00094{word-spacing:0.000000px;}
.ws2_c00094{word-spacing:5.750000px;}
.ws7_c00094{word-spacing:8.026316px;}
.ws6_c00094{word-spacing:60.000000px;}
.ws5_c00094{word-spacing:67.631579px;}
.fc0_c00094{color:transparent;}
.fs7_c00094{font-size:30.000000px;}
.fs6_c00094{font-size:36.000000px;}
.fs5_c00094{font-size:48.000000px;}
.fs4_c00094{font-size:54.000000px;}
.fs2_c00094{font-size:60.000000px;}
.fs1_c00094{font-size:66.000000px;}
.fs3_c00094{font-size:72.000000px;}
.fs0_c00094{font-size:84.000000px;}
.y0_c00094{bottom:0.000000px;}
.y33_c00094{bottom:94.650000px;}
.y32_c00094{bottom:186.150000px;}
.y66_c00094{bottom:191.850000px;}
.y31_c00094{bottom:203.850000px;}
.y65_c00094{bottom:210.600000px;}
.y30_c00094{bottom:222.150000px;}
.y64_c00094{bottom:228.600000px;}
.y63_c00094{bottom:246.300000px;}
.y2f_c00094{bottom:248.700000px;}
.y62_c00094{bottom:264.600000px;}
.y2e_c00094{bottom:266.700000px;}
.y2d_c00094{bottom:284.700000px;}
.y61_c00094{bottom:286.800000px;}
.y2c_c00094{bottom:303.000000px;}
.y60_c00094{bottom:304.500000px;}
.y2b_c00094{bottom:320.700000px;}
.y5f_c00094{bottom:335.250000px;}
.y5e_c00094{bottom:345.300000px;}
.y2a_c00094{bottom:347.400000px;}
.y5d_c00094{bottom:367.200000px;}
.y29_c00094{bottom:374.100000px;}
.y5c_c00094{bottom:385.200000px;}
.y28_c00094{bottom:392.400000px;}
.y5b_c00094{bottom:403.200000px;}
.y27_c00094{bottom:410.400000px;}
.y5a_c00094{bottom:421.200000px;}
.y26_c00094{bottom:433.350000px;}
.y59_c00094{bottom:439.200000px;}
.y25_c00094{bottom:451.050000px;}
.y58_c00094{bottom:457.200000px;}
.y24_c00094{bottom:469.050000px;}
.y57_c00094{bottom:479.850000px;}
.y23_c00094{bottom:487.050000px;}
.y56_c00094{bottom:497.850000px;}
.y22_c00094{bottom:510.000000px;}
.y55_c00094{bottom:515.850000px;}
.y21_c00094{bottom:528.000000px;}
.y54_c00094{bottom:538.500000px;}
.y20_c00094{bottom:546.000000px;}
.y53_c00094{bottom:556.500000px;}
.y1f_c00094{bottom:564.300000px;}
.y52_c00094{bottom:579.000000px;}
.y1e_c00094{bottom:582.300000px;}
.y51_c00094{bottom:597.000000px;}
.y1d_c00094{bottom:600.300000px;}
.y50_c00094{bottom:615.000000px;}
.y1c_c00094{bottom:618.300000px;}
.y4f_c00094{bottom:633.000000px;}
.y1b_c00094{bottom:636.300000px;}
.y4e_c00094{bottom:651.300000px;}
.y1a_c00094{bottom:654.300000px;}
.y19_c00094{bottom:672.300000px;}
.y4d_c00094{bottom:673.200000px;}
.y67_c00094{bottom:680.400000px;}
.y18_c00094{bottom:690.300000px;}
.y4c_c00094{bottom:691.200000px;}
.y17_c00094{bottom:708.600000px;}
.y4b_c00094{bottom:709.200000px;}
.y16_c00094{bottom:726.600000px;}
.y4a_c00094{bottom:727.200000px;}
.y15_c00094{bottom:744.600000px;}
.y49_c00094{bottom:745.200000px;}
.y14_c00094{bottom:762.600000px;}
.y48_c00094{bottom:763.200000px;}
.y13_c00094{bottom:780.900000px;}
.y47_c00094{bottom:781.200000px;}
.y12_c00094{bottom:798.900000px;}
.y46_c00094{bottom:799.200000px;}
.y11_c00094{bottom:816.900000px;}
.y45_c00094{bottom:817.500000px;}
.y10_c00094{bottom:834.900000px;}
.y44_c00094{bottom:835.500000px;}
.y43_c00094{bottom:853.500000px;}
.yf_c00094{bottom:855.750000px;}
.y42_c00094{bottom:871.500000px;}
.ye_c00094{bottom:876.300000px;}
.y41_c00094{bottom:889.500000px;}
.yd_c00094{bottom:894.600000px;}
.y40_c00094{bottom:907.200000px;}
.yc_c00094{bottom:912.300000px;}
.y3f_c00094{bottom:925.200000px;}
.yb_c00094{bottom:939.300000px;}
.y3e_c00094{bottom:943.200000px;}
.ya_c00094{bottom:957.150000px;}
.y3d_c00094{bottom:961.200000px;}
.y9_c00094{bottom:975.900000px;}
.y3c_c00094{bottom:978.900000px;}
.y8_c00094{bottom:993.600000px;}
.y3b_c00094{bottom:999.900000px;}
.y3a_c00094{bottom:1014.600000px;}
.y7_c00094{bottom:1015.950000px;}
.y39_c00094{bottom:1029.300000px;}
.y6_c00094{bottom:1033.950000px;}
.y38_c00094{bottom:1048.050000px;}
.y5_c00094{bottom:1061.250000px;}
.y37_c00094{bottom:1062.450000px;}
.y36_c00094{bottom:1077.150000px;}
.y4_c00094{bottom:1084.350000px;}
.y35_c00094{bottom:1092.300000px;}
.y3_c00094{bottom:1102.350000px;}
.y34_c00094{bottom:1105.950000px;}
.y2_c00094{bottom:1120.650000px;}
.y1_c00094{bottom:1146.600000px;}
.h9_c00094{height:30.000000px;}
.h8_c00094{height:36.000000px;}
.h7_c00094{height:48.000000px;}
.h6_c00094{height:54.000000px;}
.h4_c00094{height:60.000000px;}
.h3_c00094{height:66.000000px;}
.h5_c00094{height:72.000000px;}
.h2_c00094{height:84.000000px;}
.h0_c00094{height:1278.719970px;}
.h1_c00094{height:1278.750000px;}
.w1_c00094{width:953.250000px;}
.w0_c00094{width:953.280030px;}
.x0_c00094{left:0.000000px;}
.xaa_c00094{left:12.900000px;}
.x8b_c00094{left:74.100000px;}
.x4b_c00094{left:75.300000px;}
.x3a_c00094{left:77.400000px;}
.x4_c00094{left:78.900000px;}
.x21_c00094{left:79.950000px;}
.x97_c00094{left:84.000000px;}
.xa9_c00094{left:87.900000px;}
.x9e_c00094{left:92.700000px;}
.x3f_c00094{left:94.350000px;}
.x47_c00094{left:96.150000px;}
.x15_c00094{left:97.200000px;}
.x26_c00094{left:105.900000px;}
.x8e_c00094{left:111.600000px;}
.x76_c00094{left:114.300000px;}
.x22_c00094{left:115.950000px;}
.x27_c00094{left:117.750000px;}
.xa6_c00094{left:119.850000px;}
.x39_c00094{left:120.900000px;}
.x62_c00094{left:123.000000px;}
.x3b_c00094{left:124.500000px;}
.xa4_c00094{left:127.050000px;}
.x40_c00094{left:129.600000px;}
.x9f_c00094{left:131.550000px;}
.x48_c00094{left:133.200000px;}
.x57_c00094{left:135.150000px;}
.x92_c00094{left:136.200000px;}
.x2c_c00094{left:137.250000px;}
.x1b_c00094{left:138.900000px;}
.x4c_c00094{left:140.100000px;}
.x5c_c00094{left:141.150000px;}
.x5_c00094{left:143.400000px;}
.x32_c00094{left:146.100000px;}
.x94_c00094{left:147.600000px;}
.x98_c00094{left:149.100000px;}
.x1f_c00094{left:150.600000px;}
.x63_c00094{left:153.600000px;}
.x16_c00094{left:155.850000px;}
.x9a_c00094{left:157.200000px;}
.x83_c00094{left:159.300000px;}
.x6d_c00094{left:160.650000px;}
.x4d_c00094{left:163.200000px;}
.x28_c00094{left:165.300000px;}
.x85_c00094{left:169.350000px;}
.x7e_c00094{left:171.150000px;}
.x89_c00094{left:172.950000px;}
.x2d_c00094{left:174.300000px;}
.x20_c00094{left:175.800000px;}
.x17_c00094{left:179.550000px;}
.x41_c00094{left:181.050000px;}
.x33_c00094{left:183.150000px;}
.x49_c00094{left:184.350000px;}
.x70_c00094{left:186.600000px;}
.x4e_c00094{left:189.150000px;}
.x59_c00094{left:190.650000px;}
.x86_c00094{left:192.750000px;}
.x3c_c00094{left:193.950000px;}
.x64_c00094{left:195.000000px;}
.x6_c00094{left:197.400000px;}
.x53_c00094{left:198.600000px;}
.xa8_c00094{left:200.100000px;}
.x9b_c00094{left:201.450000px;}
.x42_c00094{left:204.450000px;}
.x1c_c00094{left:205.800000px;}
.xa5_c00094{left:207.750000px;}
.x2e_c00094{left:209.250000px;}
.x7c_c00094{left:211.800000px;}
.xa0_c00094{left:213.000000px;}
.x65_c00094{left:214.050000px;}
.x7_c00094{left:216.150000px;}
.x4f_c00094{left:217.650000px;}
.x4a_c00094{left:219.300000px;}
.x34_c00094{left:221.700000px;}
.x29_c00094{left:224.700000px;}
.x99_c00094{left:226.800000px;}
.x18_c00094{left:232.500000px;}
.x23_c00094{left:234.450000px;}
.xa2_c00094{left:237.600000px;}
.x71_c00094{left:240.150000px;}
.x87_c00094{left:242.100000px;}
.x6e_c00094{left:244.500000px;}
.x3d_c00094{left:245.850000px;}
.x79_c00094{left:248.250000px;}
.x2f_c00094{left:250.050000px;}
.x50_c00094{left:251.100000px;}
.x95_c00094{left:254.850000px;}
.x19_c00094{left:258.450000px;}
.x68_c00094{left:259.500000px;}
.x77_c00094{left:260.850000px;}
.x7f_c00094{left:261.900000px;}
.xa1_c00094{left:263.100000px;}
.x1d_c00094{left:265.500000px;}
.x35_c00094{left:268.200000px;}
.x5d_c00094{left:269.700000px;}
.x93_c00094{left:271.200000px;}
.x30_c00094{left:272.400000px;}
.x51_c00094{left:277.800000px;}
.x8f_c00094{left:279.150000px;}
.x8c_c00094{left:281.550000px;}
.x2a_c00094{left:283.050000px;}
.x78_c00094{left:286.800000px;}
.x54_c00094{left:288.000000px;}
.x5a_c00094{left:290.400000px;}
.x8_c00094{left:292.050000px;}
.x1a_c00094{left:294.150000px;}
.x72_c00094{left:296.250000px;}
.x36_c00094{left:297.750000px;}
.x43_c00094{left:298.800000px;}
.x1e_c00094{left:300.450000px;}
.x24_c00094{left:304.350000px;}
.x58_c00094{left:305.400000px;}
.x5e_c00094{left:308.250000px;}
.x6f_c00094{left:310.800000px;}
.x8a_c00094{left:313.350000px;}
.x66_c00094{left:316.350000px;}
.x6a_c00094{left:317.850000px;}
.x7a_c00094{left:319.950000px;}
.x7d_c00094{left:321.900000px;}
.x1_c00094{left:322.950000px;}
.x31_c00094{left:324.300000px;}
.x5f_c00094{left:327.750000px;}
.x80_c00094{left:328.800000px;}
.xa3_c00094{left:330.150000px;}
.x52_c00094{left:331.500000px;}
.x37_c00094{left:334.500000px;}
.x61_c00094{left:336.900000px;}
.x44_c00094{left:339.150000px;}
.x55_c00094{left:340.200000px;}
.x2b_c00094{left:341.700000px;}
.x6b_c00094{left:346.950000px;}
.x56_c00094{left:349.950000px;}
.x74_c00094{left:353.250000px;}
.x9_c00094{left:355.050000px;}
.x9c_c00094{left:356.550000px;}
.x25_c00094{left:358.650000px;}
.x8d_c00094{left:361.500000px;}
.x6c_c00094{left:364.650000px;}
.x73_c00094{left:365.700000px;}
.x45_c00094{left:366.900000px;}
.xa7_c00094{left:368.400000px;}
.x90_c00094{left:372.300000px;}
.x5b_c00094{left:373.650000px;}
.x96_c00094{left:375.750000px;}
.x60_c00094{left:377.850000px;}
.x9d_c00094{left:378.900000px;}
.x88_c00094{left:379.950000px;}
.xa_c00094{left:381.300000px;}
.x84_c00094{left:382.800000px;}
.x3e_c00094{left:384.750000px;}
.x81_c00094{left:387.900000px;}
.x46_c00094{left:389.550000px;}
.x38_c00094{left:391.050000px;}
.x75_c00094{left:393.600000px;}
.x91_c00094{left:395.400000px;}
.x67_c00094{left:397.350000px;}
.x7b_c00094{left:399.450000px;}
.x69_c00094{left:402.450000px;}
.x82_c00094{left:404.100000px;}
.xb_c00094{left:429.150000px;}
.x12e_c00094{left:434.850000px;}
.x127_c00094{left:435.900000px;}
.xc_c00094{left:439.200000px;}
.x132_c00094{left:452.850000px;}
.xab_c00094{left:453.900000px;}
.x106_c00094{left:455.700000px;}
.xd3_c00094{left:457.200000px;}
.xb4_c00094{left:468.450000px;}
.x11a_c00094{left:471.900000px;}
.x120_c00094{left:473.700000px;}
.xf3_c00094{left:475.650000px;}
.xbd_c00094{left:478.800000px;}
.xf9_c00094{left:482.850000px;}
.xc6_c00094{left:485.250000px;}
.x133_c00094{left:487.800000px;}
.xac_c00094{left:489.600000px;}
.x102_c00094{left:490.950000px;}
.xdf_c00094{left:493.950000px;}
.xc7_c00094{left:496.050000px;}
.xd_c00094{left:498.300000px;}
.x135_c00094{left:500.700000px;}
.xd4_c00094{left:501.900000px;}
.x125_c00094{left:502.950000px;}
.xe0_c00094{left:504.450000px;}
.xe9_c00094{left:506.100000px;}
.x116_c00094{left:508.500000px;}
.xc8_c00094{left:514.050000px;}
.x11d_c00094{left:518.550000px;}
.x122_c00094{left:521.700000px;}
.xb5_c00094{left:523.950000px;}
.x111_c00094{left:525.600000px;}
.x12d_c00094{left:526.800000px;}
.xce_c00094{left:528.150000px;}
.x138_c00094{left:529.650000px;}
.x10a_c00094{left:531.150000px;}
.x12a_c00094{left:534.300000px;}
.xda_c00094{left:537.300000px;}
.xbe_c00094{left:538.950000px;}
.xe_c00094{left:541.800000px;}
.xad_c00094{left:544.350000px;}
.x11f_c00094{left:546.150000px;}
.xc9_c00094{left:550.050000px;}
.x10f_c00094{left:553.200000px;}
.xf0_c00094{left:555.150000px;}
.xea_c00094{left:557.550000px;}
.x12b_c00094{left:561.300000px;}
.xfb_c00094{left:562.800000px;}
.xe1_c00094{left:564.600000px;}
.x11b_c00094{left:566.700000px;}
.xd5_c00094{left:568.800000px;}
.xf1_c00094{left:571.350000px;}
.xbf_c00094{left:574.200000px;}
.xb6_c00094{left:575.400000px;}
.x121_c00094{left:579.600000px;}
.xe2_c00094{left:581.100000px;}
.x131_c00094{left:582.150000px;}
.xe6_c00094{left:584.250000px;}
.xf4_c00094{left:585.900000px;}
.xae_c00094{left:587.550000px;}
.x10b_c00094{left:588.750000px;}
.x117_c00094{left:590.700000px;}
.xfe_c00094{left:591.900000px;}
.xf_c00094{left:594.000000px;}
.xb7_c00094{left:595.200000px;}
.xe3_c00094{left:598.350000px;}
.xeb_c00094{left:599.700000px;}
.xaf_c00094{left:601.650000px;}
.xdb_c00094{left:603.900000px;}
.xfa_c00094{left:607.500000px;}
.xff_c00094{left:608.850000px;}
.xcf_c00094{left:611.400000px;}
.xc0_c00094{left:614.550000px;}
.xf5_c00094{left:616.500000px;}
.x126_c00094{left:617.700000px;}
.xca_c00094{left:618.750000px;}
.x129_c00094{left:619.800000px;}
.x103_c00094{left:621.300000px;}
.x10c_c00094{left:622.950000px;}
.x118_c00094{left:624.900000px;}
.xec_c00094{left:626.700000px;}
.xd6_c00094{left:628.200000px;}
.xc1_c00094{left:631.500000px;}
.xd0_c00094{left:634.050000px;}
.x10_c00094{left:635.700000px;}
.xd7_c00094{left:636.900000px;}
.x100_c00094{left:640.500000px;}
.x107_c00094{left:642.150000px;}
.xdc_c00094{left:644.550000px;}
.xb0_c00094{left:648.750000px;}
.xb8_c00094{left:649.950000px;}
.x137_c00094{left:652.800000px;}
.x112_c00094{left:655.800000px;}
.xb9_c00094{left:657.150000px;}
.xed_c00094{left:659.400000px;}
.xe4_c00094{left:663.900000px;}
.xf6_c00094{left:665.400000px;}
.xc2_c00094{left:666.750000px;}
.x10d_c00094{left:668.700000px;}
.x108_c00094{left:670.350000px;}
.xba_c00094{left:671.850000px;}
.x2_c00094{left:673.950000px;}
.x11_c00094{left:676.350000px;}
.x10e_c00094{left:677.400000px;}
.xbb_c00094{left:678.750000px;}
.xee_c00094{left:680.700000px;}
.xdd_c00094{left:682.650000px;}
.x123_c00094{left:684.000000px;}
.x130_c00094{left:685.800000px;}
.xf7_c00094{left:688.800000px;}
.x136_c00094{left:689.850000px;}
.xcb_c00094{left:691.050000px;}
.xd1_c00094{left:692.400000px;}
.xc3_c00094{left:694.500000px;}
.x12_c00094{left:696.150000px;}
.x109_c00094{left:697.350000px;}
.xfc_c00094{left:700.650000px;}
.xd8_c00094{left:702.900000px;}
.xe7_c00094{left:704.100000px;}
.x12f_c00094{left:705.900000px;}
.xb1_c00094{left:707.100000px;}
.x110_c00094{left:709.050000px;}
.x113_c00094{left:710.550000px;}
.xf2_c00094{left:712.500000px;}
.x124_c00094{left:713.850000px;}
.x104_c00094{left:715.200000px;}
.xe5_c00094{left:716.850000px;}
.x134_c00094{left:718.500000px;}
.x12c_c00094{left:720.450000px;}
.x101_c00094{left:721.500000px;}
.xd2_c00094{left:723.000000px;}
.xcc_c00094{left:724.950000px;}
.x13_c00094{left:727.800000px;}
.x114_c00094{left:728.850000px;}
.x128_c00094{left:733.200000px;}
.xb2_c00094{left:735.150000px;}
.xbc_c00094{left:736.350000px;}
.xc4_c00094{left:737.700000px;}
.xd9_c00094{left:739.650000px;}
.xcd_c00094{left:741.150000px;}
.xf8_c00094{left:743.850000px;}
.xef_c00094{left:745.200000px;}
.x119_c00094{left:747.000000px;}
.x105_c00094{left:749.400000px;}
.xe8_c00094{left:750.900000px;}
.x11e_c00094{left:753.000000px;}
.x115_c00094{left:754.350000px;}
.xfd_c00094{left:755.400000px;}
.x11c_c00094{left:758.250000px;}
.x3_c00094{left:759.300000px;}
.x14_c00094{left:761.250000px;}
.xb3_c00094{left:763.950000px;}
.xde_c00094{left:765.450000px;}
.xc5_c00094{left:766.800000px;}
.x139_c00094{left:938.850000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws0_c00094{word-spacing:-9.930394pt;}
.ws3_c00094{word-spacing:-9.155447pt;}
.ws1_c00094{word-spacing:-4.854041pt;}
.ws4_c00094{word-spacing:-1.467249pt;}
.ws8_c00094{word-spacing:0.000000pt;}
.ws2_c00094{word-spacing:5.111111pt;}
.ws7_c00094{word-spacing:7.134503pt;}
.ws6_c00094{word-spacing:53.333333pt;}
.ws5_c00094{word-spacing:60.116959pt;}
.fs7_c00094{font-size:26.666667pt;}
.fs6_c00094{font-size:32.000000pt;}
.fs5_c00094{font-size:42.666667pt;}
.fs4_c00094{font-size:48.000000pt;}
.fs2_c00094{font-size:53.333333pt;}
.fs1_c00094{font-size:58.666667pt;}
.fs3_c00094{font-size:64.000000pt;}
.fs0_c00094{font-size:74.666667pt;}
.y0_c00094{bottom:0.000000pt;}
.y33_c00094{bottom:84.133333pt;}
.y32_c00094{bottom:165.466667pt;}
.y66_c00094{bottom:170.533333pt;}
.y31_c00094{bottom:181.200000pt;}
.y65_c00094{bottom:187.200000pt;}
.y30_c00094{bottom:197.466667pt;}
.y64_c00094{bottom:203.200000pt;}
.y63_c00094{bottom:218.933333pt;}
.y2f_c00094{bottom:221.066667pt;}
.y62_c00094{bottom:235.200000pt;}
.y2e_c00094{bottom:237.066667pt;}
.y2d_c00094{bottom:253.066667pt;}
.y61_c00094{bottom:254.933333pt;}
.y2c_c00094{bottom:269.333333pt;}
.y60_c00094{bottom:270.666667pt;}
.y2b_c00094{bottom:285.066667pt;}
.y5f_c00094{bottom:298.000000pt;}
.y5e_c00094{bottom:306.933333pt;}
.y2a_c00094{bottom:308.800000pt;}
.y5d_c00094{bottom:326.400000pt;}
.y29_c00094{bottom:332.533333pt;}
.y5c_c00094{bottom:342.400000pt;}
.y28_c00094{bottom:348.800000pt;}
.y5b_c00094{bottom:358.400000pt;}
.y27_c00094{bottom:364.800000pt;}
.y5a_c00094{bottom:374.400000pt;}
.y26_c00094{bottom:385.200000pt;}
.y59_c00094{bottom:390.400000pt;}
.y25_c00094{bottom:400.933333pt;}
.y58_c00094{bottom:406.400000pt;}
.y24_c00094{bottom:416.933333pt;}
.y57_c00094{bottom:426.533333pt;}
.y23_c00094{bottom:432.933333pt;}
.y56_c00094{bottom:442.533333pt;}
.y22_c00094{bottom:453.333333pt;}
.y55_c00094{bottom:458.533333pt;}
.y21_c00094{bottom:469.333333pt;}
.y54_c00094{bottom:478.666667pt;}
.y20_c00094{bottom:485.333333pt;}
.y53_c00094{bottom:494.666667pt;}
.y1f_c00094{bottom:501.600000pt;}
.y52_c00094{bottom:514.666667pt;}
.y1e_c00094{bottom:517.600000pt;}
.y51_c00094{bottom:530.666667pt;}
.y1d_c00094{bottom:533.600000pt;}
.y50_c00094{bottom:546.666667pt;}
.y1c_c00094{bottom:549.600000pt;}
.y4f_c00094{bottom:562.666667pt;}
.y1b_c00094{bottom:565.600000pt;}
.y4e_c00094{bottom:578.933333pt;}
.y1a_c00094{bottom:581.600000pt;}
.y19_c00094{bottom:597.600000pt;}
.y4d_c00094{bottom:598.400000pt;}
.y67_c00094{bottom:604.800000pt;}
.y18_c00094{bottom:613.600000pt;}
.y4c_c00094{bottom:614.400000pt;}
.y17_c00094{bottom:629.866667pt;}
.y4b_c00094{bottom:630.400000pt;}
.y16_c00094{bottom:645.866667pt;}
.y4a_c00094{bottom:646.400000pt;}
.y15_c00094{bottom:661.866667pt;}
.y49_c00094{bottom:662.400000pt;}
.y14_c00094{bottom:677.866667pt;}
.y48_c00094{bottom:678.400000pt;}
.y13_c00094{bottom:694.133333pt;}
.y47_c00094{bottom:694.400000pt;}
.y12_c00094{bottom:710.133333pt;}
.y46_c00094{bottom:710.400000pt;}
.y11_c00094{bottom:726.133333pt;}
.y45_c00094{bottom:726.666667pt;}
.y10_c00094{bottom:742.133333pt;}
.y44_c00094{bottom:742.666667pt;}
.y43_c00094{bottom:758.666667pt;}
.yf_c00094{bottom:760.666667pt;}
.y42_c00094{bottom:774.666667pt;}
.ye_c00094{bottom:778.933333pt;}
.y41_c00094{bottom:790.666667pt;}
.yd_c00094{bottom:795.200000pt;}
.y40_c00094{bottom:806.400000pt;}
.yc_c00094{bottom:810.933333pt;}
.y3f_c00094{bottom:822.400000pt;}
.yb_c00094{bottom:834.933333pt;}
.y3e_c00094{bottom:838.400000pt;}
.ya_c00094{bottom:850.800000pt;}
.y3d_c00094{bottom:854.400000pt;}
.y9_c00094{bottom:867.466667pt;}
.y3c_c00094{bottom:870.133333pt;}
.y8_c00094{bottom:883.200000pt;}
.y3b_c00094{bottom:888.800000pt;}
.y3a_c00094{bottom:901.866667pt;}
.y7_c00094{bottom:903.066667pt;}
.y39_c00094{bottom:914.933333pt;}
.y6_c00094{bottom:919.066667pt;}
.y38_c00094{bottom:931.600000pt;}
.y5_c00094{bottom:943.333333pt;}
.y37_c00094{bottom:944.400000pt;}
.y36_c00094{bottom:957.466667pt;}
.y4_c00094{bottom:963.866667pt;}
.y35_c00094{bottom:970.933333pt;}
.y3_c00094{bottom:979.866667pt;}
.y34_c00094{bottom:983.066667pt;}
.y2_c00094{bottom:996.133333pt;}
.y1_c00094{bottom:1019.200000pt;}
.h9_c00094{height:26.666667pt;}
.h8_c00094{height:32.000000pt;}
.h7_c00094{height:42.666667pt;}
.h6_c00094{height:48.000000pt;}
.h4_c00094{height:53.333333pt;}
.h3_c00094{height:58.666667pt;}
.h5_c00094{height:64.000000pt;}
.h2_c00094{height:74.666667pt;}
.h0_c00094{height:1136.639973pt;}
.h1_c00094{height:1136.666667pt;}
.w1_c00094{width:847.333333pt;}
.w0_c00094{width:847.360027pt;}
.x0_c00094{left:0.000000pt;}
.xaa_c00094{left:11.466667pt;}
.x8b_c00094{left:65.866667pt;}
.x4b_c00094{left:66.933333pt;}
.x3a_c00094{left:68.800000pt;}
.x4_c00094{left:70.133333pt;}
.x21_c00094{left:71.066667pt;}
.x97_c00094{left:74.666667pt;}
.xa9_c00094{left:78.133333pt;}
.x9e_c00094{left:82.400000pt;}
.x3f_c00094{left:83.866667pt;}
.x47_c00094{left:85.466667pt;}
.x15_c00094{left:86.400000pt;}
.x26_c00094{left:94.133333pt;}
.x8e_c00094{left:99.200000pt;}
.x76_c00094{left:101.600000pt;}
.x22_c00094{left:103.066667pt;}
.x27_c00094{left:104.666667pt;}
.xa6_c00094{left:106.533333pt;}
.x39_c00094{left:107.466667pt;}
.x62_c00094{left:109.333333pt;}
.x3b_c00094{left:110.666667pt;}
.xa4_c00094{left:112.933333pt;}
.x40_c00094{left:115.200000pt;}
.x9f_c00094{left:116.933333pt;}
.x48_c00094{left:118.400000pt;}
.x57_c00094{left:120.133333pt;}
.x92_c00094{left:121.066667pt;}
.x2c_c00094{left:122.000000pt;}
.x1b_c00094{left:123.466667pt;}
.x4c_c00094{left:124.533333pt;}
.x5c_c00094{left:125.466667pt;}
.x5_c00094{left:127.466667pt;}
.x32_c00094{left:129.866667pt;}
.x94_c00094{left:131.200000pt;}
.x98_c00094{left:132.533333pt;}
.x1f_c00094{left:133.866667pt;}
.x63_c00094{left:136.533333pt;}
.x16_c00094{left:138.533333pt;}
.x9a_c00094{left:139.733333pt;}
.x83_c00094{left:141.600000pt;}
.x6d_c00094{left:142.800000pt;}
.x4d_c00094{left:145.066667pt;}
.x28_c00094{left:146.933333pt;}
.x85_c00094{left:150.533333pt;}
.x7e_c00094{left:152.133333pt;}
.x89_c00094{left:153.733333pt;}
.x2d_c00094{left:154.933333pt;}
.x20_c00094{left:156.266667pt;}
.x17_c00094{left:159.600000pt;}
.x41_c00094{left:160.933333pt;}
.x33_c00094{left:162.800000pt;}
.x49_c00094{left:163.866667pt;}
.x70_c00094{left:165.866667pt;}
.x4e_c00094{left:168.133333pt;}
.x59_c00094{left:169.466667pt;}
.x86_c00094{left:171.333333pt;}
.x3c_c00094{left:172.400000pt;}
.x64_c00094{left:173.333333pt;}
.x6_c00094{left:175.466667pt;}
.x53_c00094{left:176.533333pt;}
.xa8_c00094{left:177.866667pt;}
.x9b_c00094{left:179.066667pt;}
.x42_c00094{left:181.733333pt;}
.x1c_c00094{left:182.933333pt;}
.xa5_c00094{left:184.666667pt;}
.x2e_c00094{left:186.000000pt;}
.x7c_c00094{left:188.266667pt;}
.xa0_c00094{left:189.333333pt;}
.x65_c00094{left:190.266667pt;}
.x7_c00094{left:192.133333pt;}
.x4f_c00094{left:193.466667pt;}
.x4a_c00094{left:194.933333pt;}
.x34_c00094{left:197.066667pt;}
.x29_c00094{left:199.733333pt;}
.x99_c00094{left:201.600000pt;}
.x18_c00094{left:206.666667pt;}
.x23_c00094{left:208.400000pt;}
.xa2_c00094{left:211.200000pt;}
.x71_c00094{left:213.466667pt;}
.x87_c00094{left:215.200000pt;}
.x6e_c00094{left:217.333333pt;}
.x3d_c00094{left:218.533333pt;}
.x79_c00094{left:220.666667pt;}
.x2f_c00094{left:222.266667pt;}
.x50_c00094{left:223.200000pt;}
.x95_c00094{left:226.533333pt;}
.x19_c00094{left:229.733333pt;}
.x68_c00094{left:230.666667pt;}
.x77_c00094{left:231.866667pt;}
.x7f_c00094{left:232.800000pt;}
.xa1_c00094{left:233.866667pt;}
.x1d_c00094{left:236.000000pt;}
.x35_c00094{left:238.400000pt;}
.x5d_c00094{left:239.733333pt;}
.x93_c00094{left:241.066667pt;}
.x30_c00094{left:242.133333pt;}
.x51_c00094{left:246.933333pt;}
.x8f_c00094{left:248.133333pt;}
.x8c_c00094{left:250.266667pt;}
.x2a_c00094{left:251.600000pt;}
.x78_c00094{left:254.933333pt;}
.x54_c00094{left:256.000000pt;}
.x5a_c00094{left:258.133333pt;}
.x8_c00094{left:259.600000pt;}
.x1a_c00094{left:261.466667pt;}
.x72_c00094{left:263.333333pt;}
.x36_c00094{left:264.666667pt;}
.x43_c00094{left:265.600000pt;}
.x1e_c00094{left:267.066667pt;}
.x24_c00094{left:270.533333pt;}
.x58_c00094{left:271.466667pt;}
.x5e_c00094{left:274.000000pt;}
.x6f_c00094{left:276.266667pt;}
.x8a_c00094{left:278.533333pt;}
.x66_c00094{left:281.200000pt;}
.x6a_c00094{left:282.533333pt;}
.x7a_c00094{left:284.400000pt;}
.x7d_c00094{left:286.133333pt;}
.x1_c00094{left:287.066667pt;}
.x31_c00094{left:288.266667pt;}
.x5f_c00094{left:291.333333pt;}
.x80_c00094{left:292.266667pt;}
.xa3_c00094{left:293.466667pt;}
.x52_c00094{left:294.666667pt;}
.x37_c00094{left:297.333333pt;}
.x61_c00094{left:299.466667pt;}
.x44_c00094{left:301.466667pt;}
.x55_c00094{left:302.400000pt;}
.x2b_c00094{left:303.733333pt;}
.x6b_c00094{left:308.400000pt;}
.x56_c00094{left:311.066667pt;}
.x74_c00094{left:314.000000pt;}
.x9_c00094{left:315.600000pt;}
.x9c_c00094{left:316.933333pt;}
.x25_c00094{left:318.800000pt;}
.x8d_c00094{left:321.333333pt;}
.x6c_c00094{left:324.133333pt;}
.x73_c00094{left:325.066667pt;}
.x45_c00094{left:326.133333pt;}
.xa7_c00094{left:327.466667pt;}
.x90_c00094{left:330.933333pt;}
.x5b_c00094{left:332.133333pt;}
.x96_c00094{left:334.000000pt;}
.x60_c00094{left:335.866667pt;}
.x9d_c00094{left:336.800000pt;}
.x88_c00094{left:337.733333pt;}
.xa_c00094{left:338.933333pt;}
.x84_c00094{left:340.266667pt;}
.x3e_c00094{left:342.000000pt;}
.x81_c00094{left:344.800000pt;}
.x46_c00094{left:346.266667pt;}
.x38_c00094{left:347.600000pt;}
.x75_c00094{left:349.866667pt;}
.x91_c00094{left:351.466667pt;}
.x67_c00094{left:353.200000pt;}
.x7b_c00094{left:355.066667pt;}
.x69_c00094{left:357.733333pt;}
.x82_c00094{left:359.200000pt;}
.xb_c00094{left:381.466667pt;}
.x12e_c00094{left:386.533333pt;}
.x127_c00094{left:387.466667pt;}
.xc_c00094{left:390.400000pt;}
.x132_c00094{left:402.533333pt;}
.xab_c00094{left:403.466667pt;}
.x106_c00094{left:405.066667pt;}
.xd3_c00094{left:406.400000pt;}
.xb4_c00094{left:416.400000pt;}
.x11a_c00094{left:419.466667pt;}
.x120_c00094{left:421.066667pt;}
.xf3_c00094{left:422.800000pt;}
.xbd_c00094{left:425.600000pt;}
.xf9_c00094{left:429.200000pt;}
.xc6_c00094{left:431.333333pt;}
.x133_c00094{left:433.600000pt;}
.xac_c00094{left:435.200000pt;}
.x102_c00094{left:436.400000pt;}
.xdf_c00094{left:439.066667pt;}
.xc7_c00094{left:440.933333pt;}
.xd_c00094{left:442.933333pt;}
.x135_c00094{left:445.066667pt;}
.xd4_c00094{left:446.133333pt;}
.x125_c00094{left:447.066667pt;}
.xe0_c00094{left:448.400000pt;}
.xe9_c00094{left:449.866667pt;}
.x116_c00094{left:452.000000pt;}
.xc8_c00094{left:456.933333pt;}
.x11d_c00094{left:460.933333pt;}
.x122_c00094{left:463.733333pt;}
.xb5_c00094{left:465.733333pt;}
.x111_c00094{left:467.200000pt;}
.x12d_c00094{left:468.266667pt;}
.xce_c00094{left:469.466667pt;}
.x138_c00094{left:470.800000pt;}
.x10a_c00094{left:472.133333pt;}
.x12a_c00094{left:474.933333pt;}
.xda_c00094{left:477.600000pt;}
.xbe_c00094{left:479.066667pt;}
.xe_c00094{left:481.600000pt;}
.xad_c00094{left:483.866667pt;}
.x11f_c00094{left:485.466667pt;}
.xc9_c00094{left:488.933333pt;}
.x10f_c00094{left:491.733333pt;}
.xf0_c00094{left:493.466667pt;}
.xea_c00094{left:495.600000pt;}
.x12b_c00094{left:498.933333pt;}
.xfb_c00094{left:500.266667pt;}
.xe1_c00094{left:501.866667pt;}
.x11b_c00094{left:503.733333pt;}
.xd5_c00094{left:505.600000pt;}
.xf1_c00094{left:507.866667pt;}
.xbf_c00094{left:510.400000pt;}
.xb6_c00094{left:511.466667pt;}
.x121_c00094{left:515.200000pt;}
.xe2_c00094{left:516.533333pt;}
.x131_c00094{left:517.466667pt;}
.xe6_c00094{left:519.333333pt;}
.xf4_c00094{left:520.800000pt;}
.xae_c00094{left:522.266667pt;}
.x10b_c00094{left:523.333333pt;}
.x117_c00094{left:525.066667pt;}
.xfe_c00094{left:526.133333pt;}
.xf_c00094{left:528.000000pt;}
.xb7_c00094{left:529.066667pt;}
.xe3_c00094{left:531.866667pt;}
.xeb_c00094{left:533.066667pt;}
.xaf_c00094{left:534.800000pt;}
.xdb_c00094{left:536.800000pt;}
.xfa_c00094{left:540.000000pt;}
.xff_c00094{left:541.200000pt;}
.xcf_c00094{left:543.466667pt;}
.xc0_c00094{left:546.266667pt;}
.xf5_c00094{left:548.000000pt;}
.x126_c00094{left:549.066667pt;}
.xca_c00094{left:550.000000pt;}
.x129_c00094{left:550.933333pt;}
.x103_c00094{left:552.266667pt;}
.x10c_c00094{left:553.733333pt;}
.x118_c00094{left:555.466667pt;}
.xec_c00094{left:557.066667pt;}
.xd6_c00094{left:558.400000pt;}
.xc1_c00094{left:561.333333pt;}
.xd0_c00094{left:563.600000pt;}
.x10_c00094{left:565.066667pt;}
.xd7_c00094{left:566.133333pt;}
.x100_c00094{left:569.333333pt;}
.x107_c00094{left:570.800000pt;}
.xdc_c00094{left:572.933333pt;}
.xb0_c00094{left:576.666667pt;}
.xb8_c00094{left:577.733333pt;}
.x137_c00094{left:580.266667pt;}
.x112_c00094{left:582.933333pt;}
.xb9_c00094{left:584.133333pt;}
.xed_c00094{left:586.133333pt;}
.xe4_c00094{left:590.133333pt;}
.xf6_c00094{left:591.466667pt;}
.xc2_c00094{left:592.666667pt;}
.x10d_c00094{left:594.400000pt;}
.x108_c00094{left:595.866667pt;}
.xba_c00094{left:597.200000pt;}
.x2_c00094{left:599.066667pt;}
.x11_c00094{left:601.200000pt;}
.x10e_c00094{left:602.133333pt;}
.xbb_c00094{left:603.333333pt;}
.xee_c00094{left:605.066667pt;}
.xdd_c00094{left:606.800000pt;}
.x123_c00094{left:608.000000pt;}
.x130_c00094{left:609.600000pt;}
.xf7_c00094{left:612.266667pt;}
.x136_c00094{left:613.200000pt;}
.xcb_c00094{left:614.266667pt;}
.xd1_c00094{left:615.466667pt;}
.xc3_c00094{left:617.333333pt;}
.x12_c00094{left:618.800000pt;}
.x109_c00094{left:619.866667pt;}
.xfc_c00094{left:622.800000pt;}
.xd8_c00094{left:624.800000pt;}
.xe7_c00094{left:625.866667pt;}
.x12f_c00094{left:627.466667pt;}
.xb1_c00094{left:628.533333pt;}
.x110_c00094{left:630.266667pt;}
.x113_c00094{left:631.600000pt;}
.xf2_c00094{left:633.333333pt;}
.x124_c00094{left:634.533333pt;}
.x104_c00094{left:635.733333pt;}
.xe5_c00094{left:637.200000pt;}
.x134_c00094{left:638.666667pt;}
.x12c_c00094{left:640.400000pt;}
.x101_c00094{left:641.333333pt;}
.xd2_c00094{left:642.666667pt;}
.xcc_c00094{left:644.400000pt;}
.x13_c00094{left:646.933333pt;}
.x114_c00094{left:647.866667pt;}
.x128_c00094{left:651.733333pt;}
.xb2_c00094{left:653.466667pt;}
.xbc_c00094{left:654.533333pt;}
.xc4_c00094{left:655.733333pt;}
.xd9_c00094{left:657.466667pt;}
.xcd_c00094{left:658.800000pt;}
.xf8_c00094{left:661.200000pt;}
.xef_c00094{left:662.400000pt;}
.x119_c00094{left:664.000000pt;}
.x105_c00094{left:666.133333pt;}
.xe8_c00094{left:667.466667pt;}
.x11e_c00094{left:669.333333pt;}
.x115_c00094{left:670.533333pt;}
.xfd_c00094{left:671.466667pt;}
.x11c_c00094{left:674.000000pt;}
.x3_c00094{left:674.933333pt;}
.x14_c00094{left:676.666667pt;}
.xb3_c00094{left:679.066667pt;}
.xde_c00094{left:680.400000pt;}
.xc5_c00094{left:681.600000pt;}
.x139_c00094{left:834.533333pt;}
}





/* 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_c00095 {
    display:none;
  }
  .loading-indicator_c00095.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00095 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_c00095 { 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_c00095" -> "#page-container .classname_c00095")
 */
.pf_c00095 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00095 { /* 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_c00095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00095 { /* 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_c00095 { /* 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_c00095 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00095 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00095 {overflow:visible;}
  }
}
.c_c00095 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00095 { /* 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_c00095:after { /* webkit #35443 */
  content: '';
}
.t_c00095:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00095 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 */
}
.__c00095 { /* 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_c00095 { /* info for Javascript */
  display:none;
}
.l_c00095 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00095 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00095 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00095: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_c00095 {
    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_c00095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00095.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_c00095 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00095;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.000000;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;}
.m118_c00095{transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);}
.md4_c00095{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m33_c00095{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00095{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00095{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m40_c00095{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00095{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m42_c00095{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m61_c00095{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00095{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m23_c00095{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00095{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.me7_c00095{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00095{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m96_c00095{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m48_c00095{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00095{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00095{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mca_c00095{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00095{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00095{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00095{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00095{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m34_c00095{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md9_c00095{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00095{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.md_c00095{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00095{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m93_c00095{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00095{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mf_c00095{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mc_c00095{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mde_c00095{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00095{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00095{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m80_c00095{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00095{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m77_c00095{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00095{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m49_c00095{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00095{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m102_c00095{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mac_c00095{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00095{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m87_c00095{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.me1_c00095{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00095{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m25_c00095{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00095{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m100_c00095{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m57_c00095{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m117_c00095{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m63_c00095{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00095{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m54_c00095{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.md5_c00095{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m115_c00095{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00095{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md6_c00095{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m85_c00095{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00095{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m36_c00095{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00095{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m98_c00095{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me8_c00095{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m26_c00095{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m113_c00095{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m114_c00095{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m46_c00095{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m99_c00095{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mee_c00095{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m53_c00095{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00095{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m55_c00095{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m27_c00095{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m116_c00095{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.me0_c00095{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00095{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.maf_c00095{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mda_c00095{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m24_c00095{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m82_c00095{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00095{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00095{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00095{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00095{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00095{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md2_c00095{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00095{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m22_c00095{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m62_c00095{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me9_c00095{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00095{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m13_c00095{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m59_c00095{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00095{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00095{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00095{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mec_c00095{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m8_c00095{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00095{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00095{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00095{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m18_c00095{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m50_c00095{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00095{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m58_c00095{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00095{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m29_c00095{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m95_c00095{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md7_c00095{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00095{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00095{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00095{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m101_c00095{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me3_c00095{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00095{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m32_c00095{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m97_c00095{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m21_c00095{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00095{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00095{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mce_c00095{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00095{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mef_c00095{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m67_c00095{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00095{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m112_c00095{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00095{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.maa_c00095{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me5_c00095{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m111_c00095{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me2_c00095{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m17_c00095{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00095{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m66_c00095{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m45_c00095{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00095{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00095{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m81_c00095{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00095{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m78_c00095{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00095{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m72_c00095{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00095{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00095{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md3_c00095{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00095{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m91_c00095{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m70_c00095{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m16_c00095{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m68_c00095{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m104_c00095{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m15_c00095{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00095{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m88_c00095{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00095{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00095{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.md8_c00095{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m92_c00095{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.med_c00095{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb_c00095{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m73_c00095{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00095{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m103_c00095{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00095{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m19_c00095{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00095{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma_c00095{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00095{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00095{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00095{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00095{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mea_c00095{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00095{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00095{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m71_c00095{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m94_c00095{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.me_c00095{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00095{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00095{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m75_c00095{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00095{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m79_c00095{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m64_c00095{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m39_c00095{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m83_c00095{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00095{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00095{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m86_c00095{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mad_c00095{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m12_c00095{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m28_c00095{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11_c00095{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00095{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00095{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m56_c00095{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00095{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00095{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00095{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m74_c00095{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00095{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m52_c00095{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m60_c00095{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00095{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m51_c00095{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00095{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00095{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md1_c00095{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mba_c00095{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00095{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00095{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mae_c00095{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.me6_c00095{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00095{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m76_c00095{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00095{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5_c00095{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00095{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00095{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00095{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00095{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);}
.m65_c00095{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00095{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m119_c00095{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00095{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00095{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m20_c00095{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m109_c00095{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00095{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mab_c00095{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00095{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m105_c00095{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00095{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m90_c00095{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00095{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00095{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00095{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m107_c00095{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m35_c00095{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00095{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m37_c00095{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m9_c00095{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m14_c00095{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m43_c00095{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00095{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00095{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md0_c00095{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00095{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00095{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00095{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00095{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m110_c00095{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00095{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00095{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m38_c00095{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00095{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00095{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00095{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m41_c00095{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00095{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00095{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m69_c00095{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m84_c00095{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00095{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.meb_c00095{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m89_c00095{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me4_c00095{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m3_c00095{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m106_c00095{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m47_c00095{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m31_c00095{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m108_c00095{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m30_c00095{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.m44_c00095{transform:matrix(0.773250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773250,0.000000,0.000000,0.250000,0,0);}
.mff_c00095{transform:matrix(0.933000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.933000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.933000,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls0_c00095{letter-spacing:0.000000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{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__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00095{word-spacing:-17.268293px;}
.ws0_c00095{word-spacing:-8.055556px;}
.ws3_c00095{word-spacing:-5.617834px;}
.ws4_c00095{word-spacing:0.000000px;}
.ws2_c00095{word-spacing:58.537019px;}
.fc0_c00095{color:transparent;}
.fs6_c00095{font-size:36.000000px;}
.fs0_c00095{font-size:48.000000px;}
.fs4_c00095{font-size:54.000000px;}
.fs2_c00095{font-size:60.000000px;}
.fs3_c00095{font-size:66.000000px;}
.fs5_c00095{font-size:72.000000px;}
.fs1_c00095{font-size:78.000000px;}
.y0_c00095{bottom:0.000000px;}
.y6a_c00095{bottom:172.050000px;}
.y69_c00095{bottom:189.000000px;}
.y32_c00095{bottom:190.800000px;}
.y68_c00095{bottom:204.150000px;}
.y31_c00095{bottom:205.500000px;}
.y67_c00095{bottom:218.250000px;}
.y30_c00095{bottom:219.900000px;}
.y66_c00095{bottom:232.950000px;}
.y2f_c00095{bottom:234.300000px;}
.y65_c00095{bottom:247.350000px;}
.y2e_c00095{bottom:248.700000px;}
.y64_c00095{bottom:261.750000px;}
.y2d_c00095{bottom:262.800000px;}
.y63_c00095{bottom:276.900000px;}
.y62_c00095{bottom:291.000000px;}
.y61_c00095{bottom:306.450000px;}
.y2c_c00095{bottom:309.900000px;}
.y60_c00095{bottom:320.550000px;}
.y2b_c00095{bottom:330.000000px;}
.y5f_c00095{bottom:335.250000px;}
.y2a_c00095{bottom:345.900000px;}
.y5e_c00095{bottom:349.650000px;}
.y5d_c00095{bottom:364.050000px;}
.y29_c00095{bottom:368.250000px;}
.y5c_c00095{bottom:378.750000px;}
.y28_c00095{bottom:386.250000px;}
.y5b_c00095{bottom:393.150000px;}
.y5a_c00095{bottom:407.850000px;}
.y27_c00095{bottom:408.150000px;}
.y59_c00095{bottom:424.500000px;}
.y26_c00095{bottom:426.900000px;}
.y25_c00095{bottom:445.200000px;}
.y58_c00095{bottom:454.350000px;}
.y24_c00095{bottom:462.900000px;}
.y57_c00095{bottom:476.550000px;}
.y23_c00095{bottom:480.900000px;}
.y56_c00095{bottom:494.550000px;}
.y22_c00095{bottom:502.950000px;}
.y55_c00095{bottom:512.250000px;}
.y21_c00095{bottom:521.250000px;}
.y54_c00095{bottom:534.900000px;}
.y20_c00095{bottom:542.850000px;}
.y53_c00095{bottom:552.900000px;}
.y1f_c00095{bottom:565.500000px;}
.y52_c00095{bottom:570.600000px;}
.y1e_c00095{bottom:587.550000px;}
.y51_c00095{bottom:588.600000px;}
.y1d_c00095{bottom:605.850000px;}
.y50_c00095{bottom:606.600000px;}
.y1c_c00095{bottom:623.550000px;}
.y4f_c00095{bottom:624.600000px;}
.y4e_c00095{bottom:642.300000px;}
.y1b_c00095{bottom:645.000000px;}
.y4d_c00095{bottom:660.600000px;}
.y1a_c00095{bottom:667.350000px;}
.y4c_c00095{bottom:678.600000px;}
.y19_c00095{bottom:690.450000px;}
.y4b_c00095{bottom:696.300000px;}
.y18_c00095{bottom:712.800000px;}
.y4a_c00095{bottom:714.600000px;}
.y17_c00095{bottom:730.500000px;}
.y49_c00095{bottom:732.300000px;}
.y48_c00095{bottom:750.600000px;}
.y16_c00095{bottom:753.150000px;}
.y47_c00095{bottom:768.900000px;}
.y15_c00095{bottom:770.850000px;}
.y46_c00095{bottom:786.600000px;}
.y14_c00095{bottom:789.150000px;}
.y45_c00095{bottom:804.600000px;}
.y13_c00095{bottom:815.850000px;}
.y12_c00095{bottom:816.900000px;}
.y44_c00095{bottom:822.600000px;}
.y43_c00095{bottom:840.600000px;}
.y11_c00095{bottom:845.250000px;}
.y42_c00095{bottom:858.600000px;}
.y10_c00095{bottom:867.300000px;}
.y41_c00095{bottom:876.600000px;}
.yf_c00095{bottom:889.650000px;}
.y40_c00095{bottom:894.600000px;}
.ye_c00095{bottom:911.550000px;}
.y3f_c00095{bottom:915.150000px;}
.y3e_c00095{bottom:930.150000px;}
.yd_c00095{bottom:938.550000px;}
.y3d_c00095{bottom:944.250000px;}
.y3c_c00095{bottom:957.900000px;}
.yc_c00095{bottom:968.850000px;}
.y3b_c00095{bottom:972.750000px;}
.y3a_c00095{bottom:990.750000px;}
.yb_c00095{bottom:991.500000px;}
.y39_c00095{bottom:1008.750000px;}
.ya_c00095{bottom:1013.100000px;}
.y38_c00095{bottom:1026.750000px;}
.y9_c00095{bottom:1032.600000px;}
.y37_c00095{bottom:1045.050000px;}
.y8_c00095{bottom:1050.900000px;}
.y36_c00095{bottom:1066.800000px;}
.y7_c00095{bottom:1068.900000px;}
.y35_c00095{bottom:1085.100000px;}
.y6_c00095{bottom:1088.250000px;}
.y34_c00095{bottom:1103.100000px;}
.y5_c00095{bottom:1104.450000px;}
.y4_c00095{bottom:1123.950000px;}
.y33_c00095{bottom:1125.300000px;}
.y3_c00095{bottom:1144.050000px;}
.y1_c00095{bottom:1150.200000px;}
.y2_c00095{bottom:1152.300000px;}
.h8_c00095{height:36.000000px;}
.h2_c00095{height:48.000000px;}
.h6_c00095{height:54.000000px;}
.h4_c00095{height:60.000000px;}
.h5_c00095{height:66.000000px;}
.h7_c00095{height:72.000000px;}
.h3_c00095{height:78.000000px;}
.h1_c00095{height:1277.250000px;}
.h0_c00095{height:1277.280030px;}
.w1_c00095{width:953.250000px;}
.w0_c00095{width:953.280030px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:177.150000px;}
.x64_c00095{left:180.000000px;}
.x7f_c00095{left:181.200000px;}
.x81_c00095{left:182.250000px;}
.xf_c00095{left:192.000000px;}
.x1a_c00095{left:195.600000px;}
.x68_c00095{left:196.950000px;}
.x63_c00095{left:198.150000px;}
.x7a_c00095{left:199.500000px;}
.x88_c00095{left:211.800000px;}
.x34_c00095{left:213.150000px;}
.x2f_c00095{left:214.200000px;}
.x21_c00095{left:215.700000px;}
.x1b_c00095{left:217.200000px;}
.x7b_c00095{left:219.150000px;}
.x3_c00095{left:221.400000px;}
.x5c_c00095{left:225.000000px;}
.x3e_c00095{left:227.100000px;}
.x72_c00095{left:229.350000px;}
.x10_c00095{left:233.400000px;}
.x6c_c00095{left:234.600000px;}
.x65_c00095{left:239.400000px;}
.x28_c00095{left:240.750000px;}
.x6f_c00095{left:241.800000px;}
.x8_c00095{left:244.350000px;}
.x29_c00095{left:246.900000px;}
.x52_c00095{left:249.150000px;}
.x11_c00095{left:252.450000px;}
.x3f_c00095{left:254.850000px;}
.x45_c00095{left:256.350000px;}
.x73_c00095{left:258.450000px;}
.x53_c00095{left:260.250000px;}
.x48_c00095{left:262.950000px;}
.x15_c00095{left:264.150000px;}
.x12_c00095{left:266.850000px;}
.x22_c00095{left:268.950000px;}
.x2c_c00095{left:270.000000px;}
.x89_c00095{left:271.200000px;}
.x69_c00095{left:272.550000px;}
.x5d_c00095{left:275.700000px;}
.x40_c00095{left:277.500000px;}
.x30_c00095{left:280.800000px;}
.x82_c00095{left:282.150000px;}
.x2a_c00095{left:283.350000px;}
.x4_c00095{left:284.700000px;}
.x38_c00095{left:286.200000px;}
.x66_c00095{left:287.250000px;}
.x58_c00095{left:289.950000px;}
.x31_c00095{left:291.300000px;}
.x56_c00095{left:295.200000px;}
.x4d_c00095{left:297.750000px;}
.x70_c00095{left:299.100000px;}
.x9_c00095{left:300.450000px;}
.x1c_c00095{left:303.150000px;}
.x49_c00095{left:309.750000px;}
.x35_c00095{left:312.150000px;}
.x23_c00095{left:313.650000px;}
.x16_c00095{left:314.850000px;}
.x57_c00095{left:316.500000px;}
.x2d_c00095{left:317.550000px;}
.x1d_c00095{left:320.100000px;}
.x59_c00095{left:322.050000px;}
.xa_c00095{left:323.550000px;}
.x13_c00095{left:325.500000px;}
.x32_c00095{left:327.600000px;}
.x5_c00095{left:329.700000px;}
.x87_c00095{left:330.900000px;}
.x67_c00095{left:332.550000px;}
.x1e_c00095{left:335.250000px;}
.x2b_c00095{left:339.150000px;}
.x77_c00095{left:340.650000px;}
.xb_c00095{left:343.350000px;}
.x14_c00095{left:345.000000px;}
.x46_c00095{left:347.100000px;}
.x4e_c00095{left:348.900000px;}
.x6_c00095{left:350.550000px;}
.x39_c00095{left:355.650000px;}
.x24_c00095{left:357.900000px;}
.x36_c00095{left:361.500000px;}
.x54_c00095{left:362.550000px;}
.x5f_c00095{left:363.600000px;}
.x5e_c00095{left:366.300000px;}
.x7c_c00095{left:367.500000px;}
.x4a_c00095{left:370.350000px;}
.x33_c00095{left:373.350000px;}
.x74_c00095{left:374.700000px;}
.x25_c00095{left:376.950000px;}
.xc_c00095{left:382.200000px;}
.x55_c00095{left:384.150000px;}
.x6d_c00095{left:385.800000px;}
.x41_c00095{left:388.350000px;}
.x4f_c00095{left:390.300000px;}
.x78_c00095{left:391.800000px;}
.x3a_c00095{left:393.750000px;}
.x17_c00095{left:395.100000px;}
.x7_c00095{left:396.600000px;}
.x6a_c00095{left:400.050000px;}
.xd_c00095{left:404.100000px;}
.x60_c00095{left:405.750000px;}
.x79_c00095{left:409.500000px;}
.x4b_c00095{left:412.500000px;}
.x83_c00095{left:414.300000px;}
.x37_c00095{left:415.500000px;}
.x3b_c00095{left:417.900000px;}
.x71_c00095{left:419.100000px;}
.x85_c00095{left:420.750000px;}
.x80_c00095{left:422.400000px;}
.x2_c00095{left:423.750000px;}
.x26_c00095{left:425.550000px;}
.x61_c00095{left:428.100000px;}
.x50_c00095{left:430.200000px;}
.x42_c00095{left:431.550000px;}
.x18_c00095{left:432.900000px;}
.x5a_c00095{left:435.600000px;}
.x4c_c00095{left:438.000000px;}
.x1f_c00095{left:440.700000px;}
.xe_c00095{left:445.800000px;}
.x51_c00095{left:450.300000px;}
.x6e_c00095{left:455.250000px;}
.x43_c00095{left:460.350000px;}
.x2e_c00095{left:462.600000px;}
.x8a_c00095{left:464.550000px;}
.x47_c00095{left:465.600000px;}
.x19_c00095{left:469.200000px;}
.x3c_c00095{left:471.600000px;}
.x84_c00095{left:475.200000px;}
.x20_c00095{left:476.400000px;}
.x7d_c00095{left:478.650000px;}
.x3d_c00095{left:481.650000px;}
.x44_c00095{left:482.700000px;}
.x86_c00095{left:485.550000px;}
.x75_c00095{left:488.100000px;}
.x7e_c00095{left:491.550000px;}
.x6b_c00095{left:492.600000px;}
.x5b_c00095{left:495.000000px;}
.x62_c00095{left:497.250000px;}
.x27_c00095{left:499.350000px;}
.x8b_c00095{left:505.350000px;}
.x76_c00095{left:510.000000px;}
.x8c_c00095{left:535.650000px;}
.x113_c00095{left:537.450000px;}
.xd2_c00095{left:543.750000px;}
.x131_c00095{left:551.550000px;}
.x99_c00095{left:553.500000px;}
.xde_c00095{left:555.900000px;}
.x115_c00095{left:556.950000px;}
.x118_c00095{left:558.300000px;}
.x12d_c00095{left:560.700000px;}
.x127_c00095{left:562.500000px;}
.xc7_c00095{left:564.150000px;}
.x132_c00095{left:567.750000px;}
.x9e_c00095{left:570.600000px;}
.x92_c00095{left:572.400000px;}
.x116_c00095{left:575.250000px;}
.xe7_c00095{left:577.500000px;}
.xa2_c00095{left:580.650000px;}
.xb0_c00095{left:586.200000px;}
.x133_c00095{left:587.250000px;}
.xf0_c00095{left:588.450000px;}
.x109_c00095{left:589.950000px;}
.xbc_c00095{left:591.000000px;}
.x102_c00095{left:592.500000px;}
.xc2_c00095{left:594.750000px;}
.xe4_c00095{left:597.300000px;}
.x9a_c00095{left:598.500000px;}
.x114_c00095{left:600.150000px;}
.x8d_c00095{left:601.950000px;}
.x11c_c00095{left:604.500000px;}
.xc8_c00095{left:605.850000px;}
.xaa_c00095{left:608.100000px;}
.x12e_c00095{left:610.050000px;}
.x104_c00095{left:611.100000px;}
.xe8_c00095{left:613.200000px;}
.x8e_c00095{left:615.300000px;}
.xf5_c00095{left:616.350000px;}
.xff_c00095{left:617.400000px;}
.xc9_c00095{left:619.200000px;}
.x9f_c00095{left:621.750000px;}
.xdf_c00095{left:622.800000px;}
.xbd_c00095{left:625.950000px;}
.x9b_c00095{left:627.600000px;}
.xf6_c00095{left:629.250000px;}
.x106_c00095{left:631.500000px;}
.x93_c00095{left:633.600000px;}
.xab_c00095{left:635.400000px;}
.xf1_c00095{left:636.750000px;}
.x105_c00095{left:638.400000px;}
.x119_c00095{left:640.050000px;}
.xb4_c00095{left:641.100000px;}
.x123_c00095{left:642.150000px;}
.xb1_c00095{left:644.850000px;}
.x9c_c00095{left:647.400000px;}
.xa3_c00095{left:648.750000px;}
.xe0_c00095{left:651.900000px;}
.xe9_c00095{left:653.850000px;}
.xda_c00095{left:656.850000px;}
.x10e_c00095{left:658.500000px;}
.xcd_c00095{left:660.300000px;}
.x135_c00095{left:661.350000px;}
.xe5_c00095{left:662.400000px;}
.xd8_c00095{left:663.600000px;}
.xd3_c00095{left:665.400000px;}
.xca_c00095{left:666.750000px;}
.xf2_c00095{left:668.100000px;}
.xac_c00095{left:669.300000px;}
.xa0_c00095{left:672.150000px;}
.x10a_c00095{left:674.250000px;}
.xb5_c00095{left:675.300000px;}
.x110_c00095{left:676.800000px;}
.xed_c00095{left:678.750000px;}
.xfd_c00095{left:680.100000px;}
.xdb_c00095{left:684.900000px;}
.x124_c00095{left:686.100000px;}
.x8f_c00095{left:688.350000px;}
.xb6_c00095{left:690.000000px;}
.xbe_c00095{left:691.350000px;}
.x120_c00095{left:692.550000px;}
.xc3_c00095{left:693.600000px;}
.x94_c00095{left:694.800000px;}
.x111_c00095{left:696.000000px;}
.xcb_c00095{left:697.650000px;}
.xa4_c00095{left:699.450000px;}
.xe1_c00095{left:700.950000px;}
.xbf_c00095{left:705.750000px;}
.x12f_c00095{left:706.800000px;}
.xf7_c00095{left:708.450000px;}
.x10b_c00095{left:710.550000px;}
.xce_c00095{left:712.500000px;}
.x10d_c00095{left:714.150000px;}
.x100_c00095{left:717.150000px;}
.xc0_c00095{left:718.650000px;}
.x12a_c00095{left:719.700000px;}
.x129_c00095{left:720.900000px;}
.xb7_c00095{left:722.700000px;}
.xfe_c00095{left:724.050000px;}
.xd4_c00095{left:725.850000px;}
.x10c_c00095{left:727.800000px;}
.x95_c00095{left:729.000000px;}
.xc4_c00095{left:730.350000px;}
.x11a_c00095{left:731.850000px;}
.x12c_c00095{left:733.200000px;}
.xb8_c00095{left:735.300000px;}
.xb2_c00095{left:737.250000px;}
.x121_c00095{left:738.900000px;}
.xd9_c00095{left:739.950000px;}
.xea_c00095{left:742.050000px;}
.xa1_c00095{left:743.400000px;}
.xa5_c00095{left:745.200000px;}
.xf8_c00095{left:746.250000px;}
.x11d_c00095{left:747.450000px;}
.x107_c00095{left:748.500000px;}
.xb9_c00095{left:750.750000px;}
.xcc_c00095{left:751.950000px;}
.xcf_c00095{left:757.200000px;}
.x134_c00095{left:758.250000px;}
.xad_c00095{left:760.050000px;}
.x11b_c00095{left:761.400000px;}
.x137_c00095{left:763.200000px;}
.x90_c00095{left:766.800000px;}
.xeb_c00095{left:774.150000px;}
.xd5_c00095{left:775.950000px;}
.x112_c00095{left:777.000000px;}
.x96_c00095{left:779.100000px;}
.x125_c00095{left:780.750000px;}
.xee_c00095{left:781.800000px;}
.x9d_c00095{left:783.450000px;}
.x101_c00095{left:785.100000px;}
.xb3_c00095{left:786.450000px;}
.x128_c00095{left:787.500000px;}
.xec_c00095{left:788.850000px;}
.xd0_c00095{left:789.900000px;}
.x97_c00095{left:791.700000px;}
.xf9_c00095{left:792.750000px;}
.xa6_c00095{left:794.100000px;}
.x117_c00095{left:796.950000px;}
.xe2_c00095{left:798.150000px;}
.x11e_c00095{left:799.350000px;}
.x10f_c00095{left:800.400000px;}
.xae_c00095{left:801.450000px;}
.xc5_c00095{left:804.300000px;}
.x91_c00095{left:806.100000px;}
.x108_c00095{left:807.150000px;}
.x103_c00095{left:809.550000px;}
.x12b_c00095{left:811.500000px;}
.xba_c00095{left:813.450000px;}
.x138_c00095{left:815.100000px;}
.xfa_c00095{left:816.150000px;}
.xa7_c00095{left:817.200000px;}
.xf3_c00095{left:818.550000px;}
.xdc_c00095{left:821.250000px;}
.xc1_c00095{left:824.400000px;}
.xd6_c00095{left:826.650000px;}
.xfb_c00095{left:829.050000px;}
.x122_c00095{left:830.400000px;}
.xc6_c00095{left:832.350000px;}
.xf4_c00095{left:834.750000px;}
.xa8_c00095{left:837.000000px;}
.xd7_c00095{left:840.750000px;}
.xdd_c00095{left:841.800000px;}
.xe6_c00095{left:843.450000px;}
.xbb_c00095{left:846.600000px;}
.xaf_c00095{left:849.000000px;}
.xe3_c00095{left:850.050000px;}
.x130_c00095{left:851.250000px;}
.x126_c00095{left:853.800000px;}
.xfc_c00095{left:855.000000px;}
.x11f_c00095{left:856.500000px;}
.x136_c00095{left:858.000000px;}
.x98_c00095{left:859.800000px;}
.xd1_c00095{left:860.850000px;}
.xef_c00095{left:863.850000px;}
.xa9_c00095{left:865.050000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws1_c00095{word-spacing:-15.349593pt;}
.ws0_c00095{word-spacing:-7.160494pt;}
.ws3_c00095{word-spacing:-4.993631pt;}
.ws4_c00095{word-spacing:0.000000pt;}
.ws2_c00095{word-spacing:52.032906pt;}
.fs6_c00095{font-size:32.000000pt;}
.fs0_c00095{font-size:42.666667pt;}
.fs4_c00095{font-size:48.000000pt;}
.fs2_c00095{font-size:53.333333pt;}
.fs3_c00095{font-size:58.666667pt;}
.fs5_c00095{font-size:64.000000pt;}
.fs1_c00095{font-size:69.333333pt;}
.y0_c00095{bottom:0.000000pt;}
.y6a_c00095{bottom:152.933333pt;}
.y69_c00095{bottom:168.000000pt;}
.y32_c00095{bottom:169.600000pt;}
.y68_c00095{bottom:181.466667pt;}
.y31_c00095{bottom:182.666667pt;}
.y67_c00095{bottom:194.000000pt;}
.y30_c00095{bottom:195.466667pt;}
.y66_c00095{bottom:207.066667pt;}
.y2f_c00095{bottom:208.266667pt;}
.y65_c00095{bottom:219.866667pt;}
.y2e_c00095{bottom:221.066667pt;}
.y64_c00095{bottom:232.666667pt;}
.y2d_c00095{bottom:233.600000pt;}
.y63_c00095{bottom:246.133333pt;}
.y62_c00095{bottom:258.666667pt;}
.y61_c00095{bottom:272.400000pt;}
.y2c_c00095{bottom:275.466667pt;}
.y60_c00095{bottom:284.933333pt;}
.y2b_c00095{bottom:293.333333pt;}
.y5f_c00095{bottom:298.000000pt;}
.y2a_c00095{bottom:307.466667pt;}
.y5e_c00095{bottom:310.800000pt;}
.y5d_c00095{bottom:323.600000pt;}
.y29_c00095{bottom:327.333333pt;}
.y5c_c00095{bottom:336.666667pt;}
.y28_c00095{bottom:343.333333pt;}
.y5b_c00095{bottom:349.466667pt;}
.y5a_c00095{bottom:362.533333pt;}
.y27_c00095{bottom:362.800000pt;}
.y59_c00095{bottom:377.333333pt;}
.y26_c00095{bottom:379.466667pt;}
.y25_c00095{bottom:395.733333pt;}
.y58_c00095{bottom:403.866667pt;}
.y24_c00095{bottom:411.466667pt;}
.y57_c00095{bottom:423.600000pt;}
.y23_c00095{bottom:427.466667pt;}
.y56_c00095{bottom:439.600000pt;}
.y22_c00095{bottom:447.066667pt;}
.y55_c00095{bottom:455.333333pt;}
.y21_c00095{bottom:463.333333pt;}
.y54_c00095{bottom:475.466667pt;}
.y20_c00095{bottom:482.533333pt;}
.y53_c00095{bottom:491.466667pt;}
.y1f_c00095{bottom:502.666667pt;}
.y52_c00095{bottom:507.200000pt;}
.y1e_c00095{bottom:522.266667pt;}
.y51_c00095{bottom:523.200000pt;}
.y1d_c00095{bottom:538.533333pt;}
.y50_c00095{bottom:539.200000pt;}
.y1c_c00095{bottom:554.266667pt;}
.y4f_c00095{bottom:555.200000pt;}
.y4e_c00095{bottom:570.933333pt;}
.y1b_c00095{bottom:573.333333pt;}
.y4d_c00095{bottom:587.200000pt;}
.y1a_c00095{bottom:593.200000pt;}
.y4c_c00095{bottom:603.200000pt;}
.y19_c00095{bottom:613.733333pt;}
.y4b_c00095{bottom:618.933333pt;}
.y18_c00095{bottom:633.600000pt;}
.y4a_c00095{bottom:635.200000pt;}
.y17_c00095{bottom:649.333333pt;}
.y49_c00095{bottom:650.933333pt;}
.y48_c00095{bottom:667.200000pt;}
.y16_c00095{bottom:669.466667pt;}
.y47_c00095{bottom:683.466667pt;}
.y15_c00095{bottom:685.200000pt;}
.y46_c00095{bottom:699.200000pt;}
.y14_c00095{bottom:701.466667pt;}
.y45_c00095{bottom:715.200000pt;}
.y13_c00095{bottom:725.200000pt;}
.y12_c00095{bottom:726.133333pt;}
.y44_c00095{bottom:731.200000pt;}
.y43_c00095{bottom:747.200000pt;}
.y11_c00095{bottom:751.333333pt;}
.y42_c00095{bottom:763.200000pt;}
.y10_c00095{bottom:770.933333pt;}
.y41_c00095{bottom:779.200000pt;}
.yf_c00095{bottom:790.800000pt;}
.y40_c00095{bottom:795.200000pt;}
.ye_c00095{bottom:810.266667pt;}
.y3f_c00095{bottom:813.466667pt;}
.y3e_c00095{bottom:826.800000pt;}
.yd_c00095{bottom:834.266667pt;}
.y3d_c00095{bottom:839.333333pt;}
.y3c_c00095{bottom:851.466667pt;}
.yc_c00095{bottom:861.200000pt;}
.y3b_c00095{bottom:864.666667pt;}
.y3a_c00095{bottom:880.666667pt;}
.yb_c00095{bottom:881.333333pt;}
.y39_c00095{bottom:896.666667pt;}
.ya_c00095{bottom:900.533333pt;}
.y38_c00095{bottom:912.666667pt;}
.y9_c00095{bottom:917.866667pt;}
.y37_c00095{bottom:928.933333pt;}
.y8_c00095{bottom:934.133333pt;}
.y36_c00095{bottom:948.266667pt;}
.y7_c00095{bottom:950.133333pt;}
.y35_c00095{bottom:964.533333pt;}
.y6_c00095{bottom:967.333333pt;}
.y34_c00095{bottom:980.533333pt;}
.y5_c00095{bottom:981.733333pt;}
.y4_c00095{bottom:999.066667pt;}
.y33_c00095{bottom:1000.266667pt;}
.y3_c00095{bottom:1016.933333pt;}
.y1_c00095{bottom:1022.400000pt;}
.y2_c00095{bottom:1024.266667pt;}
.h8_c00095{height:32.000000pt;}
.h2_c00095{height:42.666667pt;}
.h6_c00095{height:48.000000pt;}
.h4_c00095{height:53.333333pt;}
.h5_c00095{height:58.666667pt;}
.h7_c00095{height:64.000000pt;}
.h3_c00095{height:69.333333pt;}
.h1_c00095{height:1135.333333pt;}
.h0_c00095{height:1135.360027pt;}
.w1_c00095{width:847.333333pt;}
.w0_c00095{width:847.360027pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:157.466667pt;}
.x64_c00095{left:160.000000pt;}
.x7f_c00095{left:161.066667pt;}
.x81_c00095{left:162.000000pt;}
.xf_c00095{left:170.666667pt;}
.x1a_c00095{left:173.866667pt;}
.x68_c00095{left:175.066667pt;}
.x63_c00095{left:176.133333pt;}
.x7a_c00095{left:177.333333pt;}
.x88_c00095{left:188.266667pt;}
.x34_c00095{left:189.466667pt;}
.x2f_c00095{left:190.400000pt;}
.x21_c00095{left:191.733333pt;}
.x1b_c00095{left:193.066667pt;}
.x7b_c00095{left:194.800000pt;}
.x3_c00095{left:196.800000pt;}
.x5c_c00095{left:200.000000pt;}
.x3e_c00095{left:201.866667pt;}
.x72_c00095{left:203.866667pt;}
.x10_c00095{left:207.466667pt;}
.x6c_c00095{left:208.533333pt;}
.x65_c00095{left:212.800000pt;}
.x28_c00095{left:214.000000pt;}
.x6f_c00095{left:214.933333pt;}
.x8_c00095{left:217.200000pt;}
.x29_c00095{left:219.466667pt;}
.x52_c00095{left:221.466667pt;}
.x11_c00095{left:224.400000pt;}
.x3f_c00095{left:226.533333pt;}
.x45_c00095{left:227.866667pt;}
.x73_c00095{left:229.733333pt;}
.x53_c00095{left:231.333333pt;}
.x48_c00095{left:233.733333pt;}
.x15_c00095{left:234.800000pt;}
.x12_c00095{left:237.200000pt;}
.x22_c00095{left:239.066667pt;}
.x2c_c00095{left:240.000000pt;}
.x89_c00095{left:241.066667pt;}
.x69_c00095{left:242.266667pt;}
.x5d_c00095{left:245.066667pt;}
.x40_c00095{left:246.666667pt;}
.x30_c00095{left:249.600000pt;}
.x82_c00095{left:250.800000pt;}
.x2a_c00095{left:251.866667pt;}
.x4_c00095{left:253.066667pt;}
.x38_c00095{left:254.400000pt;}
.x66_c00095{left:255.333333pt;}
.x58_c00095{left:257.733333pt;}
.x31_c00095{left:258.933333pt;}
.x56_c00095{left:262.400000pt;}
.x4d_c00095{left:264.666667pt;}
.x70_c00095{left:265.866667pt;}
.x9_c00095{left:267.066667pt;}
.x1c_c00095{left:269.466667pt;}
.x49_c00095{left:275.333333pt;}
.x35_c00095{left:277.466667pt;}
.x23_c00095{left:278.800000pt;}
.x16_c00095{left:279.866667pt;}
.x57_c00095{left:281.333333pt;}
.x2d_c00095{left:282.266667pt;}
.x1d_c00095{left:284.533333pt;}
.x59_c00095{left:286.266667pt;}
.xa_c00095{left:287.600000pt;}
.x13_c00095{left:289.333333pt;}
.x32_c00095{left:291.200000pt;}
.x5_c00095{left:293.066667pt;}
.x87_c00095{left:294.133333pt;}
.x67_c00095{left:295.600000pt;}
.x1e_c00095{left:298.000000pt;}
.x2b_c00095{left:301.466667pt;}
.x77_c00095{left:302.800000pt;}
.xb_c00095{left:305.200000pt;}
.x14_c00095{left:306.666667pt;}
.x46_c00095{left:308.533333pt;}
.x4e_c00095{left:310.133333pt;}
.x6_c00095{left:311.600000pt;}
.x39_c00095{left:316.133333pt;}
.x24_c00095{left:318.133333pt;}
.x36_c00095{left:321.333333pt;}
.x54_c00095{left:322.266667pt;}
.x5f_c00095{left:323.200000pt;}
.x5e_c00095{left:325.600000pt;}
.x7c_c00095{left:326.666667pt;}
.x4a_c00095{left:329.200000pt;}
.x33_c00095{left:331.866667pt;}
.x74_c00095{left:333.066667pt;}
.x25_c00095{left:335.066667pt;}
.xc_c00095{left:339.733333pt;}
.x55_c00095{left:341.466667pt;}
.x6d_c00095{left:342.933333pt;}
.x41_c00095{left:345.200000pt;}
.x4f_c00095{left:346.933333pt;}
.x78_c00095{left:348.266667pt;}
.x3a_c00095{left:350.000000pt;}
.x17_c00095{left:351.200000pt;}
.x7_c00095{left:352.533333pt;}
.x6a_c00095{left:355.600000pt;}
.xd_c00095{left:359.200000pt;}
.x60_c00095{left:360.666667pt;}
.x79_c00095{left:364.000000pt;}
.x4b_c00095{left:366.666667pt;}
.x83_c00095{left:368.266667pt;}
.x37_c00095{left:369.333333pt;}
.x3b_c00095{left:371.466667pt;}
.x71_c00095{left:372.533333pt;}
.x85_c00095{left:374.000000pt;}
.x80_c00095{left:375.466667pt;}
.x2_c00095{left:376.666667pt;}
.x26_c00095{left:378.266667pt;}
.x61_c00095{left:380.533333pt;}
.x50_c00095{left:382.400000pt;}
.x42_c00095{left:383.600000pt;}
.x18_c00095{left:384.800000pt;}
.x5a_c00095{left:387.200000pt;}
.x4c_c00095{left:389.333333pt;}
.x1f_c00095{left:391.733333pt;}
.xe_c00095{left:396.266667pt;}
.x51_c00095{left:400.266667pt;}
.x6e_c00095{left:404.666667pt;}
.x43_c00095{left:409.200000pt;}
.x2e_c00095{left:411.200000pt;}
.x8a_c00095{left:412.933333pt;}
.x47_c00095{left:413.866667pt;}
.x19_c00095{left:417.066667pt;}
.x3c_c00095{left:419.200000pt;}
.x84_c00095{left:422.400000pt;}
.x20_c00095{left:423.466667pt;}
.x7d_c00095{left:425.466667pt;}
.x3d_c00095{left:428.133333pt;}
.x44_c00095{left:429.066667pt;}
.x86_c00095{left:431.600000pt;}
.x75_c00095{left:433.866667pt;}
.x7e_c00095{left:436.933333pt;}
.x6b_c00095{left:437.866667pt;}
.x5b_c00095{left:440.000000pt;}
.x62_c00095{left:442.000000pt;}
.x27_c00095{left:443.866667pt;}
.x8b_c00095{left:449.200000pt;}
.x76_c00095{left:453.333333pt;}
.x8c_c00095{left:476.133333pt;}
.x113_c00095{left:477.733333pt;}
.xd2_c00095{left:483.333333pt;}
.x131_c00095{left:490.266667pt;}
.x99_c00095{left:492.000000pt;}
.xde_c00095{left:494.133333pt;}
.x115_c00095{left:495.066667pt;}
.x118_c00095{left:496.266667pt;}
.x12d_c00095{left:498.400000pt;}
.x127_c00095{left:500.000000pt;}
.xc7_c00095{left:501.466667pt;}
.x132_c00095{left:504.666667pt;}
.x9e_c00095{left:507.200000pt;}
.x92_c00095{left:508.800000pt;}
.x116_c00095{left:511.333333pt;}
.xe7_c00095{left:513.333333pt;}
.xa2_c00095{left:516.133333pt;}
.xb0_c00095{left:521.066667pt;}
.x133_c00095{left:522.000000pt;}
.xf0_c00095{left:523.066667pt;}
.x109_c00095{left:524.400000pt;}
.xbc_c00095{left:525.333333pt;}
.x102_c00095{left:526.666667pt;}
.xc2_c00095{left:528.666667pt;}
.xe4_c00095{left:530.933333pt;}
.x9a_c00095{left:532.000000pt;}
.x114_c00095{left:533.466667pt;}
.x8d_c00095{left:535.066667pt;}
.x11c_c00095{left:537.333333pt;}
.xc8_c00095{left:538.533333pt;}
.xaa_c00095{left:540.533333pt;}
.x12e_c00095{left:542.266667pt;}
.x104_c00095{left:543.200000pt;}
.xe8_c00095{left:545.066667pt;}
.x8e_c00095{left:546.933333pt;}
.xf5_c00095{left:547.866667pt;}
.xff_c00095{left:548.800000pt;}
.xc9_c00095{left:550.400000pt;}
.x9f_c00095{left:552.666667pt;}
.xdf_c00095{left:553.600000pt;}
.xbd_c00095{left:556.400000pt;}
.x9b_c00095{left:557.866667pt;}
.xf6_c00095{left:559.333333pt;}
.x106_c00095{left:561.333333pt;}
.x93_c00095{left:563.200000pt;}
.xab_c00095{left:564.800000pt;}
.xf1_c00095{left:566.000000pt;}
.x105_c00095{left:567.466667pt;}
.x119_c00095{left:568.933333pt;}
.xb4_c00095{left:569.866667pt;}
.x123_c00095{left:570.800000pt;}
.xb1_c00095{left:573.200000pt;}
.x9c_c00095{left:575.466667pt;}
.xa3_c00095{left:576.666667pt;}
.xe0_c00095{left:579.466667pt;}
.xe9_c00095{left:581.200000pt;}
.xda_c00095{left:583.866667pt;}
.x10e_c00095{left:585.333333pt;}
.xcd_c00095{left:586.933333pt;}
.x135_c00095{left:587.866667pt;}
.xe5_c00095{left:588.800000pt;}
.xd8_c00095{left:589.866667pt;}
.xd3_c00095{left:591.466667pt;}
.xca_c00095{left:592.666667pt;}
.xf2_c00095{left:593.866667pt;}
.xac_c00095{left:594.933333pt;}
.xa0_c00095{left:597.466667pt;}
.x10a_c00095{left:599.333333pt;}
.xb5_c00095{left:600.266667pt;}
.x110_c00095{left:601.600000pt;}
.xed_c00095{left:603.333333pt;}
.xfd_c00095{left:604.533333pt;}
.xdb_c00095{left:608.800000pt;}
.x124_c00095{left:609.866667pt;}
.x8f_c00095{left:611.866667pt;}
.xb6_c00095{left:613.333333pt;}
.xbe_c00095{left:614.533333pt;}
.x120_c00095{left:615.600000pt;}
.xc3_c00095{left:616.533333pt;}
.x94_c00095{left:617.600000pt;}
.x111_c00095{left:618.666667pt;}
.xcb_c00095{left:620.133333pt;}
.xa4_c00095{left:621.733333pt;}
.xe1_c00095{left:623.066667pt;}
.xbf_c00095{left:627.333333pt;}
.x12f_c00095{left:628.266667pt;}
.xf7_c00095{left:629.733333pt;}
.x10b_c00095{left:631.600000pt;}
.xce_c00095{left:633.333333pt;}
.x10d_c00095{left:634.800000pt;}
.x100_c00095{left:637.466667pt;}
.xc0_c00095{left:638.800000pt;}
.x12a_c00095{left:639.733333pt;}
.x129_c00095{left:640.800000pt;}
.xb7_c00095{left:642.400000pt;}
.xfe_c00095{left:643.600000pt;}
.xd4_c00095{left:645.200000pt;}
.x10c_c00095{left:646.933333pt;}
.x95_c00095{left:648.000000pt;}
.xc4_c00095{left:649.200000pt;}
.x11a_c00095{left:650.533333pt;}
.x12c_c00095{left:651.733333pt;}
.xb8_c00095{left:653.600000pt;}
.xb2_c00095{left:655.333333pt;}
.x121_c00095{left:656.800000pt;}
.xd9_c00095{left:657.733333pt;}
.xea_c00095{left:659.600000pt;}
.xa1_c00095{left:660.800000pt;}
.xa5_c00095{left:662.400000pt;}
.xf8_c00095{left:663.333333pt;}
.x11d_c00095{left:664.400000pt;}
.x107_c00095{left:665.333333pt;}
.xb9_c00095{left:667.333333pt;}
.xcc_c00095{left:668.400000pt;}
.xcf_c00095{left:673.066667pt;}
.x134_c00095{left:674.000000pt;}
.xad_c00095{left:675.600000pt;}
.x11b_c00095{left:676.800000pt;}
.x137_c00095{left:678.400000pt;}
.x90_c00095{left:681.600000pt;}
.xeb_c00095{left:688.133333pt;}
.xd5_c00095{left:689.733333pt;}
.x112_c00095{left:690.666667pt;}
.x96_c00095{left:692.533333pt;}
.x125_c00095{left:694.000000pt;}
.xee_c00095{left:694.933333pt;}
.x9d_c00095{left:696.400000pt;}
.x101_c00095{left:697.866667pt;}
.xb3_c00095{left:699.066667pt;}
.x128_c00095{left:700.000000pt;}
.xec_c00095{left:701.200000pt;}
.xd0_c00095{left:702.133333pt;}
.x97_c00095{left:703.733333pt;}
.xf9_c00095{left:704.666667pt;}
.xa6_c00095{left:705.866667pt;}
.x117_c00095{left:708.400000pt;}
.xe2_c00095{left:709.466667pt;}
.x11e_c00095{left:710.533333pt;}
.x10f_c00095{left:711.466667pt;}
.xae_c00095{left:712.400000pt;}
.xc5_c00095{left:714.933333pt;}
.x91_c00095{left:716.533333pt;}
.x108_c00095{left:717.466667pt;}
.x103_c00095{left:719.600000pt;}
.x12b_c00095{left:721.333333pt;}
.xba_c00095{left:723.066667pt;}
.x138_c00095{left:724.533333pt;}
.xfa_c00095{left:725.466667pt;}
.xa7_c00095{left:726.400000pt;}
.xf3_c00095{left:727.600000pt;}
.xdc_c00095{left:730.000000pt;}
.xc1_c00095{left:732.800000pt;}
.xd6_c00095{left:734.800000pt;}
.xfb_c00095{left:736.933333pt;}
.x122_c00095{left:738.133333pt;}
.xc6_c00095{left:739.866667pt;}
.xf4_c00095{left:742.000000pt;}
.xa8_c00095{left:744.000000pt;}
.xd7_c00095{left:747.333333pt;}
.xdd_c00095{left:748.266667pt;}
.xe6_c00095{left:749.733333pt;}
.xbb_c00095{left:752.533333pt;}
.xaf_c00095{left:754.666667pt;}
.xe3_c00095{left:755.600000pt;}
.x130_c00095{left:756.666667pt;}
.x126_c00095{left:758.933333pt;}
.xfc_c00095{left:760.000000pt;}
.x11f_c00095{left:761.333333pt;}
.x136_c00095{left:762.666667pt;}
.x98_c00095{left:764.266667pt;}
.xd1_c00095{left:765.200000pt;}
.xef_c00095{left:767.866667pt;}
.xa9_c00095{left:768.933333pt;}
}





/* 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_c00096 {
    display:none;
  }
  .loading-indicator_c00096.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00096 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_c00096 { 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_c00096" -> "#page-container .classname_c00096")
 */
.pf_c00096 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00096 { /* 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_c00096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00096 { /* 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_c00096 { /* 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_c00096 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00096 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00096 {overflow:visible;}
  }
}
.c_c00096 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00096 { /* 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_c00096:after { /* webkit #35443 */
  content: '';
}
.t_c00096:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00096 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 */
}
.__c00096 { /* 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_c00096 { /* info for Javascript */
  display:none;
}
.l_c00096 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00096 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00096 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00096: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_c00096 {
    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_c00096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00096.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_c00096 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00096;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.000000;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;}
.ma9_c00096{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00096{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m28_c00096{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00096{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00096{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4_c00096{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mde_c00096{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m79_c00096{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m51_c00096{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00096{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m18_c00096{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00096{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m90_c00096{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00096{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00096{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m38_c00096{transform:matrix(0.113750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113750,0.000000,0.000000,0.250000,0,0);}
.m6_c00096{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m66_c00096{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00096{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m16_c00096{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m65_c00096{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00096{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md9_c00096{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m26_c00096{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.maa_c00096{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00096{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00096{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m69_c00096{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m37_c00096{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00096{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00096{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m60_c00096{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00096{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00096{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md_c00096{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00096{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.me7_c00096{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m61_c00096{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m75_c00096{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00096{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m72_c00096{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00096{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m14_c00096{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00096{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00096{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m32_c00096{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m120_c00096{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m56_c00096{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m40_c00096{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m96_c00096{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00096{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00096{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md2_c00096{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m13_c00096{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m19_c00096{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md8_c00096{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m119_c00096{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00096{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mae_c00096{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00096{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m27_c00096{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m113_c00096{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00096{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m86_c00096{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mda_c00096{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mab_c00096{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m23_c00096{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m115_c00096{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m100_c00096{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00096{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00096{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m17_c00096{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md0_c00096{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00096{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00096{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00096{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00096{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00096{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00096{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m52_c00096{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00096{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00096{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00096{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m62_c00096{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00096{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00096{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc_c00096{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00096{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m22_c00096{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me3_c00096{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00096{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00096{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00096{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00096{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m20_c00096{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00096{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00096{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.me2_c00096{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m68_c00096{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00096{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00096{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00096{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me4_c00096{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m49_c00096{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me1_c00096{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00096{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00096{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mee_c00096{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma_c00096{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m95_c00096{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00096{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00096{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00096{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00096{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m101_c00096{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00096{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mea_c00096{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9_c00096{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00096{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m45_c00096{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m97_c00096{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00096{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00096{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m47_c00096{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00096{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00096{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me_c00096{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m85_c00096{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00096{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mff_c00096{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m44_c00096{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mad_c00096{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00096{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00096{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00096{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8_c00096{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00096{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m54_c00096{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m108_c00096{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m50_c00096{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md1_c00096{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00096{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3_c00096{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m102_c00096{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00096{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00096{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m76_c00096{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m36_c00096{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m57_c00096{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00096{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m105_c00096{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m63_c00096{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m10_c00096{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00096{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m111_c00096{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mba_c00096{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m114_c00096{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m87_c00096{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me0_c00096{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m59_c00096{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.maf_c00096{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00096{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m15_c00096{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00096{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m43_c00096{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m117_c00096{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m99_c00096{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00096{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m31_c00096{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00096{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00096{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00096{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00096{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mf_c00096{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m46_c00096{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m91_c00096{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00096{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m53_c00096{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00096{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m88_c00096{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00096{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m64_c00096{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m7_c00096{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m58_c00096{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m106_c00096{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m33_c00096{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00096{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m80_c00096{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mca_c00096{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m84_c00096{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00096{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m98_c00096{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m104_c00096{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00096{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m109_c00096{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m55_c00096{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00096{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m103_c00096{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m94_c00096{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m83_c00096{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00096{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m110_c00096{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m24_c00096{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m12_c00096{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00096{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m74_c00096{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m89_c00096{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m48_c00096{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m118_c00096{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00096{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m29_c00096{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00096{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m21_c00096{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00096{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mac_c00096{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.med_c00096{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md7_c00096{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md5_c00096{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m25_c00096{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m81_c00096{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00096{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00096{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00096{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m73_c00096{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00096{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00096{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m116_c00096{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.md6_c00096{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5_c00096{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00096{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m30_c00096{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mef_c00096{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00096{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00096{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m93_c00096{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);}
.m107_c00096{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me5_c00096{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m34_c00096{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00096{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me9_c00096{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00096{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m42_c00096{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m11_c00096{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00096{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me8_c00096{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00096{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m112_c00096{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00096{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00096{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m82_c00096{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00096{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00096{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m77_c00096{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00096{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m70_c00096{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00096{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00096{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00096{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m71_c00096{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00096{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb_c00096{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00096{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m39_c00096{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00096{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mce_c00096{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.mec_c00096{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00096{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m78_c00096{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00096{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m92_c00096{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00096{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00096{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m41_c00096{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00096{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00096{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m2_c00096{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.me6_c00096{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.md4_c00096{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.meb_c00096{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.md3_c00096{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00096{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00096{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m0_c00096{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m67_c00096{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00096{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m35_c00096{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00096{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00096{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls0_c00096{letter-spacing:0.000000px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{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__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00096{word-spacing:-7.796974px;}
.ws4_c00096{word-spacing:-7.333333px;}
.ws8_c00096{word-spacing:-5.478890px;}
.ws7_c00096{word-spacing:-2.118598px;}
.ws9_c00096{word-spacing:0.000000px;}
.ws2_c00096{word-spacing:12.506112px;}
.ws1_c00096{word-spacing:108.000000px;}
.ws0_c00096{word-spacing:150.272727px;}
.ws5_c00096{word-spacing:392.972678px;}
.ws3_c00096{word-spacing:1005.588235px;}
._0_c00096{width:27.472888px;}
.fc0_c00096{color:transparent;}
.fs7_c00096{font-size:30.000000px;}
.fs8_c00096{font-size:36.000000px;}
.fs6_c00096{font-size:42.000000px;}
.fs5_c00096{font-size:54.000000px;}
.fs4_c00096{font-size:60.000000px;}
.fs1_c00096{font-size:66.000000px;}
.fs2_c00096{font-size:72.000000px;}
.fs3_c00096{font-size:78.000000px;}
.fs0_c00096{font-size:84.000000px;}
.y0_c00096{bottom:0.000000px;}
.y3b_c00096{bottom:188.700000px;}
.y6c_c00096{bottom:189.000000px;}
.y3a_c00096{bottom:206.700000px;}
.y6b_c00096{bottom:207.000000px;}
.y39_c00096{bottom:225.000000px;}
.y38_c00096{bottom:242.700000px;}
.y6a_c00096{bottom:243.000000px;}
.y37_c00096{bottom:260.700000px;}
.y69_c00096{bottom:261.000000px;}
.y36_c00096{bottom:278.700000px;}
.y35_c00096{bottom:296.700000px;}
.y34_c00096{bottom:314.700000px;}
.y68_c00096{bottom:332.250000px;}
.y33_c00096{bottom:332.700000px;}
.y32_c00096{bottom:350.400000px;}
.y67_c00096{bottom:350.550000px;}
.y66_c00096{bottom:367.800000px;}
.y31_c00096{bottom:368.400000px;}
.y65_c00096{bottom:386.100000px;}
.y30_c00096{bottom:386.700000px;}
.y64_c00096{bottom:404.100000px;}
.y2f_c00096{bottom:408.600000px;}
.y2e_c00096{bottom:412.500000px;}
.y63_c00096{bottom:421.800000px;}
.y2d_c00096{bottom:426.900000px;}
.y62_c00096{bottom:439.500000px;}
.y2c_c00096{bottom:444.900000px;}
.y61_c00096{bottom:457.500000px;}
.y2b_c00096{bottom:462.900000px;}
.y60_c00096{bottom:475.500000px;}
.y2a_c00096{bottom:480.900000px;}
.y5f_c00096{bottom:493.200000px;}
.y29_c00096{bottom:498.900000px;}
.y5e_c00096{bottom:511.200000px;}
.y28_c00096{bottom:516.900000px;}
.y27_c00096{bottom:534.600000px;}
.y5d_c00096{bottom:537.600000px;}
.y26_c00096{bottom:552.600000px;}
.y5c_c00096{bottom:555.600000px;}
.y25_c00096{bottom:570.600000px;}
.y5b_c00096{bottom:573.600000px;}
.y24_c00096{bottom:588.600000px;}
.y5a_c00096{bottom:591.900000px;}
.y23_c00096{bottom:606.600000px;}
.y59_c00096{bottom:609.600000px;}
.y22_c00096{bottom:624.600000px;}
.y58_c00096{bottom:627.300000px;}
.y21_c00096{bottom:642.900000px;}
.y57_c00096{bottom:645.300000px;}
.y20_c00096{bottom:660.600000px;}
.y56_c00096{bottom:663.000000px;}
.y1f_c00096{bottom:678.300000px;}
.y55_c00096{bottom:681.000000px;}
.y54_c00096{bottom:699.000000px;}
.y1e_c00096{bottom:699.750000px;}
.y1d_c00096{bottom:714.150000px;}
.y53_c00096{bottom:716.700000px;}
.y1c_c00096{bottom:725.250000px;}
.y1b_c00096{bottom:728.850000px;}
.y52_c00096{bottom:734.700000px;}
.y1a_c00096{bottom:742.500000px;}
.y51_c00096{bottom:752.700000px;}
.y19_c00096{bottom:757.950000px;}
.y50_c00096{bottom:770.400000px;}
.y18_c00096{bottom:772.350000px;}
.y17_c00096{bottom:786.000000px;}
.y4f_c00096{bottom:791.700000px;}
.y16_c00096{bottom:800.700000px;}
.y15_c00096{bottom:816.150000px;}
.y14_c00096{bottom:830.550000px;}
.y4e_c00096{bottom:834.450000px;}
.y13_c00096{bottom:843.900000px;}
.y4d_c00096{bottom:852.750000px;}
.y12_c00096{bottom:860.400000px;}
.y4c_c00096{bottom:870.450000px;}
.y11_c00096{bottom:879.450000px;}
.y4b_c00096{bottom:888.450000px;}
.y10_c00096{bottom:897.450000px;}
.y4a_c00096{bottom:906.150000px;}
.yf_c00096{bottom:915.150000px;}
.y49_c00096{bottom:931.950000px;}
.ye_c00096{bottom:932.850000px;}
.y48_c00096{bottom:950.700000px;}
.yd_c00096{bottom:951.150000px;}
.y47_c00096{bottom:968.400000px;}
.yc_c00096{bottom:972.750000px;}
.y46_c00096{bottom:986.400000px;}
.yb_c00096{bottom:991.800000px;}
.ya_c00096{bottom:1003.650000px;}
.y45_c00096{bottom:1008.750000px;}
.y9_c00096{bottom:1009.800000px;}
.y7_c00096{bottom:1027.050000px;}
.y8_c00096{bottom:1027.800000px;}
.y44_c00096{bottom:1030.800000px;}
.y6_c00096{bottom:1046.100000px;}
.y43_c00096{bottom:1048.800000px;}
.y5_c00096{bottom:1064.100000px;}
.y42_c00096{bottom:1070.700000px;}
.y4_c00096{bottom:1086.450000px;}
.y41_c00096{bottom:1089.450000px;}
.y3_c00096{bottom:1108.050000px;}
.y40_c00096{bottom:1111.350000px;}
.y2_c00096{bottom:1127.100000px;}
.y3f_c00096{bottom:1129.650000px;}
.y1_c00096{bottom:1155.900000px;}
.y3e_c00096{bottom:1156.350000px;}
.y3d_c00096{bottom:1261.350000px;}
.y3c_c00096{bottom:1269.300000px;}
.h9_c00096{height:30.000000px;}
.ha_c00096{height:36.000000px;}
.h8_c00096{height:42.000000px;}
.h7_c00096{height:54.000000px;}
.h6_c00096{height:60.000000px;}
.h3_c00096{height:66.000000px;}
.h4_c00096{height:72.000000px;}
.h5_c00096{height:78.000000px;}
.h2_c00096{height:84.000000px;}
.h0_c00096{height:1278.719970px;}
.h1_c00096{height:1278.750000px;}
.w1_c00096{width:953.250000px;}
.w0_c00096{width:953.280030px;}
.x0_c00096{left:0.000000px;}
.x2_c00096{left:83.850000px;}
.xf_c00096{left:86.400000px;}
.x41_c00096{left:90.750000px;}
.x58_c00096{left:92.100000px;}
.x79_c00096{left:95.400000px;}
.xa_c00096{left:105.450000px;}
.x1d_c00096{left:107.700000px;}
.x31_c00096{left:110.100000px;}
.x4e_c00096{left:111.900000px;}
.x7e_c00096{left:117.000000px;}
.x71_c00096{left:119.400000px;}
.xa1_c00096{left:120.450000px;}
.xa5_c00096{left:121.800000px;}
.x10_c00096{left:125.700000px;}
.xb_c00096{left:127.350000px;}
.x15_c00096{left:129.600000px;}
.x8a_c00096{left:134.850000px;}
.x54_c00096{left:138.450000px;}
.x42_c00096{left:140.400000px;}
.x3b_c00096{left:141.600000px;}
.x3e_c00096{left:145.050000px;}
.x60_c00096{left:146.850000px;}
.x67_c00096{left:147.900000px;}
.x6d_c00096{left:149.250000px;}
.x84_c00096{left:151.050000px;}
.x74_c00096{left:152.700000px;}
.x25_c00096{left:154.650000px;}
.x1e_c00096{left:156.600000px;}
.x59_c00096{left:157.650000px;}
.x36_c00096{left:160.500000px;}
.x3_c00096{left:162.300000px;}
.x11_c00096{left:164.550000px;}
.x68_c00096{left:166.200000px;}
.x4b_c00096{left:167.550000px;}
.x6e_c00096{left:169.950000px;}
.x32_c00096{left:171.000000px;}
.x75_c00096{left:172.050000px;}
.x26_c00096{left:176.250000px;}
.x72_c00096{left:177.450000px;}
.x3f_c00096{left:178.950000px;}
.x66_c00096{left:181.350000px;}
.x4f_c00096{left:182.400000px;}
.x97_c00096{left:183.900000px;}
.x55_c00096{left:186.000000px;}
.x33_c00096{left:187.950000px;}
.x7a_c00096{left:189.000000px;}
.x16_c00096{left:191.550000px;}
.x1f_c00096{left:194.100000px;}
.x27_c00096{left:196.800000px;}
.x46_c00096{left:198.450000px;}
.x86_c00096{left:200.250000px;}
.x3a_c00096{left:201.300000px;}
.x40_c00096{left:203.400000px;}
.x81_c00096{left:206.400000px;}
.xc_c00096{left:207.600000px;}
.x43_c00096{left:210.300000px;}
.x37_c00096{left:213.000000px;}
.x17_c00096{left:215.700000px;}
.x28_c00096{left:217.350000px;}
.x5a_c00096{left:218.850000px;}
.x50_c00096{left:220.200000px;}
.x61_c00096{left:221.700000px;}
.x9f_c00096{left:224.700000px;}
.x98_c00096{left:227.400000px;}
.x7b_c00096{left:229.350000px;}
.x4_c00096{left:230.400000px;}
.x3c_c00096{left:232.350000px;}
.x6f_c00096{left:234.000000px;}
.x20_c00096{left:236.250000px;}
.x56_c00096{left:237.450000px;}
.xd_c00096{left:238.500000px;}
.x12_c00096{left:240.150000px;}
.x8f_c00096{left:242.100000px;}
.x69_c00096{left:244.650000px;}
.x29_c00096{left:245.850000px;}
.x9a_c00096{left:247.200000px;}
.x8b_c00096{left:250.650000px;}
.x47_c00096{left:253.200000px;}
.xe_c00096{left:255.450000px;}
.x34_c00096{left:257.700000px;}
.x91_c00096{left:259.050000px;}
.x82_c00096{left:260.850000px;}
.x2a_c00096{left:263.100000px;}
.x18_c00096{left:264.600000px;}
.x8c_c00096{left:269.400000px;}
.x5c_c00096{left:270.600000px;}
.x62_c00096{left:272.100000px;}
.x76_c00096{left:273.900000px;}
.x9b_c00096{left:274.950000px;}
.x90_c00096{left:277.050000px;}
.xa2_c00096{left:278.100000px;}
.x19_c00096{left:279.750000px;}
.x9c_c00096{left:281.550000px;}
.x3d_c00096{left:283.050000px;}
.x88_c00096{left:284.250000px;}
.x21_c00096{left:285.900000px;}
.x7f_c00096{left:287.400000px;}
.x5_c00096{left:290.100000px;}
.x63_c00096{left:291.150000px;}
.x6a_c00096{left:292.950000px;}
.x13_c00096{left:295.950000px;}
.x6_c00096{left:298.350000px;}
.xa6_c00096{left:300.000000px;}
.xa4_c00096{left:302.250000px;}
.x48_c00096{left:303.300000px;}
.x22_c00096{left:304.650000px;}
.x2b_c00096{left:306.600000px;}
.x92_c00096{left:309.150000px;}
.x6b_c00096{left:311.700000px;}
.x94_c00096{left:312.900000px;}
.x9d_c00096{left:313.950000px;}
.xa9_c00096{left:315.150000px;}
.x2c_c00096{left:317.100000px;}
.x57_c00096{left:319.200000px;}
.x7_c00096{left:320.250000px;}
.x4c_c00096{left:325.650000px;}
.x38_c00096{left:326.850000px;}
.x23_c00096{left:329.550000px;}
.x77_c00096{left:331.050000px;}
.x14_c00096{left:334.500000px;}
.x1_c00096{left:335.550000px;}
.x80_c00096{left:337.050000px;}
.x70_c00096{left:338.700000px;}
.x8d_c00096{left:339.900000px;}
.x7c_c00096{left:341.250000px;}
.xaa_c00096{left:342.300000px;}
.x1a_c00096{left:343.800000px;}
.x51_c00096{left:345.150000px;}
.xa7_c00096{left:348.000000px;}
.x2d_c00096{left:353.100000px;}
.x8_c00096{left:355.950000px;}
.x95_c00096{left:357.150000px;}
.x52_c00096{left:358.800000px;}
.x89_c00096{left:360.900000px;}
.x64_c00096{left:362.100000px;}
.x5d_c00096{left:363.150000px;}
.xa0_c00096{left:364.200000px;}
.x4d_c00096{left:366.000000px;}
.xa3_c00096{left:368.550000px;}
.x1b_c00096{left:370.050000px;}
.xa8_c00096{left:372.450000px;}
.x87_c00096{left:374.400000px;}
.x9e_c00096{left:375.450000px;}
.x44_c00096{left:376.500000px;}
.x99_c00096{left:378.000000px;}
.xab_c00096{left:379.050000px;}
.x35_c00096{left:380.850000px;}
.x7d_c00096{left:381.900000px;}
.x24_c00096{left:383.250000px;}
.x2e_c00096{left:385.800000px;}
.x49_c00096{left:386.850000px;}
.x53_c00096{left:389.100000px;}
.x5e_c00096{left:390.450000px;}
.x65_c00096{left:392.700000px;}
.x1c_c00096{left:394.200000px;}
.x83_c00096{left:396.900000px;}
.x8e_c00096{left:399.000000px;}
.x4a_c00096{left:402.300000px;}
.x2f_c00096{left:403.500000px;}
.x96_c00096{left:405.750000px;}
.x9_c00096{left:409.650000px;}
.x39_c00096{left:411.900000px;}
.x30_c00096{left:413.550000px;}
.x6c_c00096{left:415.650000px;}
.x5b_c00096{left:417.600000px;}
.x45_c00096{left:418.650000px;}
.x5f_c00096{left:420.750000px;}
.x73_c00096{left:422.700000px;}
.x78_c00096{left:424.350000px;}
.x85_c00096{left:427.050000px;}
.xac_c00096{left:432.600000px;}
.x93_c00096{left:434.550000px;}
.xbf_c00096{left:451.800000px;}
.xea_c00096{left:453.900000px;}
.x10b_c00096{left:455.100000px;}
.x139_c00096{left:459.750000px;}
.xb2_c00096{left:468.750000px;}
.xc6_c00096{left:469.800000px;}
.xe4_c00096{left:470.850000px;}
.xfd_c00096{left:472.200000px;}
.x114_c00096{left:473.700000px;}
.x109_c00096{left:474.750000px;}
.x126_c00096{left:475.950000px;}
.x13d_c00096{left:477.000000px;}
.xeb_c00096{left:478.050000px;}
.x147_c00096{left:479.700000px;}
.x154_c00096{left:480.900000px;}
.x15b_c00096{left:482.100000px;}
.x159_c00096{left:483.750000px;}
.xd1_c00096{left:487.050000px;}
.xd6_c00096{left:489.300000px;}
.x127_c00096{left:491.400000px;}
.xb9_c00096{left:493.350000px;}
.x118_c00096{left:495.300000px;}
.xec_c00096{left:496.350000px;}
.x15a_c00096{left:498.150000px;}
.x115_c00096{left:499.200000px;}
.xb3_c00096{left:500.850000px;}
.xcd_c00096{left:504.750000px;}
.x148_c00096{left:507.000000px;}
.xf2_c00096{left:508.050000px;}
.xdc_c00096{left:510.450000px;}
.xc7_c00096{left:511.500000px;}
.xc0_c00096{left:514.050000px;}
.xf7_c00096{left:517.350000px;}
.xfe_c00096{left:519.750000px;}
.xd2_c00096{left:520.950000px;}
.xc8_c00096{left:522.300000px;}
.x13e_c00096{left:524.850000px;}
.xf3_c00096{left:526.350000px;}
.x12f_c00096{left:527.550000px;}
.xba_c00096{left:529.050000px;}
.x123_c00096{left:530.100000px;}
.x10a_c00096{left:531.750000px;}
.xce_c00096{left:533.250000px;}
.x14b_c00096{left:535.200000px;}
.xdd_c00096{left:537.150000px;}
.x10d_c00096{left:538.200000px;}
.x119_c00096{left:540.600000px;}
.x152_c00096{left:542.100000px;}
.x103_c00096{left:543.150000px;}
.xc9_c00096{left:544.950000px;}
.x11d_c00096{left:550.350000px;}
.xe5_c00096{left:552.300000px;}
.xd7_c00096{left:554.850000px;}
.xb4_c00096{left:556.350000px;}
.x128_c00096{left:558.600000px;}
.xc1_c00096{left:560.100000px;}
.x111_c00096{left:562.350000px;}
.xed_c00096{left:564.450000px;}
.x150_c00096{left:565.500000px;}
.x130_c00096{left:567.750000px;}
.xf8_c00096{left:571.350000px;}
.xe0_c00096{left:573.750000px;}
.xcf_c00096{left:575.700000px;}
.x136_c00096{left:576.900000px;}
.xf4_c00096{left:578.250000px;}
.xbb_c00096{left:579.450000px;}
.x15c_c00096{left:581.100000px;}
.xd8_c00096{left:582.150000px;}
.x129_c00096{left:583.650000px;}
.xb5_c00096{left:584.850000px;}
.xff_c00096{left:588.150000px;}
.x14e_c00096{left:589.650000px;}
.xe6_c00096{left:590.850000px;}
.x11e_c00096{left:592.800000px;}
.xc2_c00096{left:595.350000px;}
.xf9_c00096{left:597.300000px;}
.xca_c00096{left:601.500000px;}
.xe1_c00096{left:606.150000px;}
.xbc_c00096{left:607.950000px;}
.xf5_c00096{left:610.350000px;}
.xee_c00096{left:612.750000px;}
.x104_c00096{left:614.850000px;}
.xe7_c00096{left:617.100000px;}
.x137_c00096{left:618.900000px;}
.x121_c00096{left:620.250000px;}
.x10c_c00096{left:621.600000px;}
.x151_c00096{left:622.800000px;}
.xd0_c00096{left:624.000000px;}
.x124_c00096{left:626.100000px;}
.x11f_c00096{left:628.500000px;}
.x11a_c00096{left:629.550000px;}
.xe2_c00096{left:631.650000px;}
.xc3_c00096{left:633.450000px;}
.x131_c00096{left:635.400000px;}
.xbd_c00096{left:636.750000px;}
.x12d_c00096{left:637.800000px;}
.x10e_c00096{left:640.050000px;}
.xb6_c00096{left:641.700000px;}
.xd3_c00096{left:645.450000px;}
.x125_c00096{left:646.650000px;}
.x13f_c00096{left:648.300000px;}
.x112_c00096{left:649.350000px;}
.xde_c00096{left:650.850000px;}
.xe8_c00096{left:653.400000px;}
.x143_c00096{left:654.900000px;}
.x100_c00096{left:656.250000px;}
.xb7_c00096{left:657.900000px;}
.xd4_c00096{left:659.550000px;}
.x153_c00096{left:660.900000px;}
.xcb_c00096{left:662.400000px;}
.x14c_c00096{left:663.750000px;}
.xfa_c00096{left:665.250000px;}
.x132_c00096{left:667.200000px;}
.x116_c00096{left:669.150000px;}
.xd9_c00096{left:670.350000px;}
.x157_c00096{left:671.400000px;}
.x12a_c00096{left:674.100000px;}
.x138_c00096{left:676.050000px;}
.xcc_c00096{left:678.300000px;}
.xbe_c00096{left:679.650000px;}
.x113_c00096{left:681.000000px;}
.xfb_c00096{left:683.250000px;}
.xad_c00096{left:685.500000px;}
.xe9_c00096{left:686.550000px;}
.x105_c00096{left:688.350000px;}
.x101_c00096{left:690.450000px;}
.x12e_c00096{left:691.500000px;}
.xae_c00096{left:693.750000px;}
.x14f_c00096{left:695.100000px;}
.x149_c00096{left:696.150000px;}
.xd5_c00096{left:697.350000px;}
.x146_c00096{left:699.600000px;}
.x155_c00096{left:700.950000px;}
.xfc_c00096{left:702.300000px;}
.x13a_c00096{left:703.350000px;}
.xb8_c00096{left:705.750000px;}
.x141_c00096{left:707.100000px;}
.x106_c00096{left:708.450000px;}
.xaf_c00096{left:710.700000px;}
.x11b_c00096{left:713.850000px;}
.xda_c00096{left:715.650000px;}
.xef_c00096{left:718.200000px;}
.x140_c00096{left:719.550000px;}
.x102_c00096{left:723.150000px;}
.x10f_c00096{left:724.350000px;}
.x133_c00096{left:726.300000px;}
.x144_c00096{left:729.300000px;}
.x120_c00096{left:730.350000px;}
.xdf_c00096{left:735.000000px;}
.x14d_c00096{left:736.500000px;}
.x117_c00096{left:737.550000px;}
.xc4_c00096{left:740.100000px;}
.x13b_c00096{left:741.150000px;}
.x12b_c00096{left:742.500000px;}
.x134_c00096{left:744.000000px;}
.x122_c00096{left:745.350000px;}
.xe3_c00096{left:748.350000px;}
.x107_c00096{left:749.550000px;}
.xf0_c00096{left:751.350000px;}
.x11c_c00096{left:753.750000px;}
.x156_c00096{left:756.750000px;}
.xdb_c00096{left:758.550000px;}
.xb0_c00096{left:761.100000px;}
.x110_c00096{left:765.450000px;}
.x142_c00096{left:767.250000px;}
.xf1_c00096{left:768.600000px;}
.xf6_c00096{left:770.400000px;}
.xb1_c00096{left:771.900000px;}
.x135_c00096{left:774.300000px;}
.xc5_c00096{left:778.650000px;}
.x13c_c00096{left:779.700000px;}
.x108_c00096{left:782.250000px;}
.x145_c00096{left:783.300000px;}
.x14a_c00096{left:784.350000px;}
.x12c_c00096{left:788.550000px;}
.x158_c00096{left:794.400000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws6_c00096{word-spacing:-6.930643pt;}
.ws4_c00096{word-spacing:-6.518519pt;}
.ws8_c00096{word-spacing:-4.870125pt;}
.ws7_c00096{word-spacing:-1.883199pt;}
.ws9_c00096{word-spacing:0.000000pt;}
.ws2_c00096{word-spacing:11.116544pt;}
.ws1_c00096{word-spacing:96.000000pt;}
.ws0_c00096{word-spacing:133.575758pt;}
.ws5_c00096{word-spacing:349.309047pt;}
.ws3_c00096{word-spacing:893.856209pt;}
._0_c00096{width:24.420345pt;}
.fs7_c00096{font-size:26.666667pt;}
.fs8_c00096{font-size:32.000000pt;}
.fs6_c00096{font-size:37.333333pt;}
.fs5_c00096{font-size:48.000000pt;}
.fs4_c00096{font-size:53.333333pt;}
.fs1_c00096{font-size:58.666667pt;}
.fs2_c00096{font-size:64.000000pt;}
.fs3_c00096{font-size:69.333333pt;}
.fs0_c00096{font-size:74.666667pt;}
.y0_c00096{bottom:0.000000pt;}
.y3b_c00096{bottom:167.733333pt;}
.y6c_c00096{bottom:168.000000pt;}
.y3a_c00096{bottom:183.733333pt;}
.y6b_c00096{bottom:184.000000pt;}
.y39_c00096{bottom:200.000000pt;}
.y38_c00096{bottom:215.733333pt;}
.y6a_c00096{bottom:216.000000pt;}
.y37_c00096{bottom:231.733333pt;}
.y69_c00096{bottom:232.000000pt;}
.y36_c00096{bottom:247.733333pt;}
.y35_c00096{bottom:263.733333pt;}
.y34_c00096{bottom:279.733333pt;}
.y68_c00096{bottom:295.333333pt;}
.y33_c00096{bottom:295.733333pt;}
.y32_c00096{bottom:311.466667pt;}
.y67_c00096{bottom:311.600000pt;}
.y66_c00096{bottom:326.933333pt;}
.y31_c00096{bottom:327.466667pt;}
.y65_c00096{bottom:343.200000pt;}
.y30_c00096{bottom:343.733333pt;}
.y64_c00096{bottom:359.200000pt;}
.y2f_c00096{bottom:363.200000pt;}
.y2e_c00096{bottom:366.666667pt;}
.y63_c00096{bottom:374.933333pt;}
.y2d_c00096{bottom:379.466667pt;}
.y62_c00096{bottom:390.666667pt;}
.y2c_c00096{bottom:395.466667pt;}
.y61_c00096{bottom:406.666667pt;}
.y2b_c00096{bottom:411.466667pt;}
.y60_c00096{bottom:422.666667pt;}
.y2a_c00096{bottom:427.466667pt;}
.y5f_c00096{bottom:438.400000pt;}
.y29_c00096{bottom:443.466667pt;}
.y5e_c00096{bottom:454.400000pt;}
.y28_c00096{bottom:459.466667pt;}
.y27_c00096{bottom:475.200000pt;}
.y5d_c00096{bottom:477.866667pt;}
.y26_c00096{bottom:491.200000pt;}
.y5c_c00096{bottom:493.866667pt;}
.y25_c00096{bottom:507.200000pt;}
.y5b_c00096{bottom:509.866667pt;}
.y24_c00096{bottom:523.200000pt;}
.y5a_c00096{bottom:526.133333pt;}
.y23_c00096{bottom:539.200000pt;}
.y59_c00096{bottom:541.866667pt;}
.y22_c00096{bottom:555.200000pt;}
.y58_c00096{bottom:557.600000pt;}
.y21_c00096{bottom:571.466667pt;}
.y57_c00096{bottom:573.600000pt;}
.y20_c00096{bottom:587.200000pt;}
.y56_c00096{bottom:589.333333pt;}
.y1f_c00096{bottom:602.933333pt;}
.y55_c00096{bottom:605.333333pt;}
.y54_c00096{bottom:621.333333pt;}
.y1e_c00096{bottom:622.000000pt;}
.y1d_c00096{bottom:634.800000pt;}
.y53_c00096{bottom:637.066667pt;}
.y1c_c00096{bottom:644.666667pt;}
.y1b_c00096{bottom:647.866667pt;}
.y52_c00096{bottom:653.066667pt;}
.y1a_c00096{bottom:660.000000pt;}
.y51_c00096{bottom:669.066667pt;}
.y19_c00096{bottom:673.733333pt;}
.y50_c00096{bottom:684.800000pt;}
.y18_c00096{bottom:686.533333pt;}
.y17_c00096{bottom:698.666667pt;}
.y4f_c00096{bottom:703.733333pt;}
.y16_c00096{bottom:711.733333pt;}
.y15_c00096{bottom:725.466667pt;}
.y14_c00096{bottom:738.266667pt;}
.y4e_c00096{bottom:741.733333pt;}
.y13_c00096{bottom:750.133333pt;}
.y4d_c00096{bottom:758.000000pt;}
.y12_c00096{bottom:764.800000pt;}
.y4c_c00096{bottom:773.733333pt;}
.y11_c00096{bottom:781.733333pt;}
.y4b_c00096{bottom:789.733333pt;}
.y10_c00096{bottom:797.733333pt;}
.y4a_c00096{bottom:805.466667pt;}
.yf_c00096{bottom:813.466667pt;}
.y49_c00096{bottom:828.400000pt;}
.ye_c00096{bottom:829.200000pt;}
.y48_c00096{bottom:845.066667pt;}
.yd_c00096{bottom:845.466667pt;}
.y47_c00096{bottom:860.800000pt;}
.yc_c00096{bottom:864.666667pt;}
.y46_c00096{bottom:876.800000pt;}
.yb_c00096{bottom:881.600000pt;}
.ya_c00096{bottom:892.133333pt;}
.y45_c00096{bottom:896.666667pt;}
.y9_c00096{bottom:897.600000pt;}
.y7_c00096{bottom:912.933333pt;}
.y8_c00096{bottom:913.600000pt;}
.y44_c00096{bottom:916.266667pt;}
.y6_c00096{bottom:929.866667pt;}
.y43_c00096{bottom:932.266667pt;}
.y5_c00096{bottom:945.866667pt;}
.y42_c00096{bottom:951.733333pt;}
.y4_c00096{bottom:965.733333pt;}
.y41_c00096{bottom:968.400000pt;}
.y3_c00096{bottom:984.933333pt;}
.y40_c00096{bottom:987.866667pt;}
.y2_c00096{bottom:1001.866667pt;}
.y3f_c00096{bottom:1004.133333pt;}
.y1_c00096{bottom:1027.466667pt;}
.y3e_c00096{bottom:1027.866667pt;}
.y3d_c00096{bottom:1121.200000pt;}
.y3c_c00096{bottom:1128.266667pt;}
.h9_c00096{height:26.666667pt;}
.ha_c00096{height:32.000000pt;}
.h8_c00096{height:37.333333pt;}
.h7_c00096{height:48.000000pt;}
.h6_c00096{height:53.333333pt;}
.h3_c00096{height:58.666667pt;}
.h4_c00096{height:64.000000pt;}
.h5_c00096{height:69.333333pt;}
.h2_c00096{height:74.666667pt;}
.h0_c00096{height:1136.639973pt;}
.h1_c00096{height:1136.666667pt;}
.w1_c00096{width:847.333333pt;}
.w0_c00096{width:847.360027pt;}
.x0_c00096{left:0.000000pt;}
.x2_c00096{left:74.533333pt;}
.xf_c00096{left:76.800000pt;}
.x41_c00096{left:80.666667pt;}
.x58_c00096{left:81.866667pt;}
.x79_c00096{left:84.800000pt;}
.xa_c00096{left:93.733333pt;}
.x1d_c00096{left:95.733333pt;}
.x31_c00096{left:97.866667pt;}
.x4e_c00096{left:99.466667pt;}
.x7e_c00096{left:104.000000pt;}
.x71_c00096{left:106.133333pt;}
.xa1_c00096{left:107.066667pt;}
.xa5_c00096{left:108.266667pt;}
.x10_c00096{left:111.733333pt;}
.xb_c00096{left:113.200000pt;}
.x15_c00096{left:115.200000pt;}
.x8a_c00096{left:119.866667pt;}
.x54_c00096{left:123.066667pt;}
.x42_c00096{left:124.800000pt;}
.x3b_c00096{left:125.866667pt;}
.x3e_c00096{left:128.933333pt;}
.x60_c00096{left:130.533333pt;}
.x67_c00096{left:131.466667pt;}
.x6d_c00096{left:132.666667pt;}
.x84_c00096{left:134.266667pt;}
.x74_c00096{left:135.733333pt;}
.x25_c00096{left:137.466667pt;}
.x1e_c00096{left:139.200000pt;}
.x59_c00096{left:140.133333pt;}
.x36_c00096{left:142.666667pt;}
.x3_c00096{left:144.266667pt;}
.x11_c00096{left:146.266667pt;}
.x68_c00096{left:147.733333pt;}
.x4b_c00096{left:148.933333pt;}
.x6e_c00096{left:151.066667pt;}
.x32_c00096{left:152.000000pt;}
.x75_c00096{left:152.933333pt;}
.x26_c00096{left:156.666667pt;}
.x72_c00096{left:157.733333pt;}
.x3f_c00096{left:159.066667pt;}
.x66_c00096{left:161.200000pt;}
.x4f_c00096{left:162.133333pt;}
.x97_c00096{left:163.466667pt;}
.x55_c00096{left:165.333333pt;}
.x33_c00096{left:167.066667pt;}
.x7a_c00096{left:168.000000pt;}
.x16_c00096{left:170.266667pt;}
.x1f_c00096{left:172.533333pt;}
.x27_c00096{left:174.933333pt;}
.x46_c00096{left:176.400000pt;}
.x86_c00096{left:178.000000pt;}
.x3a_c00096{left:178.933333pt;}
.x40_c00096{left:180.800000pt;}
.x81_c00096{left:183.466667pt;}
.xc_c00096{left:184.533333pt;}
.x43_c00096{left:186.933333pt;}
.x37_c00096{left:189.333333pt;}
.x17_c00096{left:191.733333pt;}
.x28_c00096{left:193.200000pt;}
.x5a_c00096{left:194.533333pt;}
.x50_c00096{left:195.733333pt;}
.x61_c00096{left:197.066667pt;}
.x9f_c00096{left:199.733333pt;}
.x98_c00096{left:202.133333pt;}
.x7b_c00096{left:203.866667pt;}
.x4_c00096{left:204.800000pt;}
.x3c_c00096{left:206.533333pt;}
.x6f_c00096{left:208.000000pt;}
.x20_c00096{left:210.000000pt;}
.x56_c00096{left:211.066667pt;}
.xd_c00096{left:212.000000pt;}
.x12_c00096{left:213.466667pt;}
.x8f_c00096{left:215.200000pt;}
.x69_c00096{left:217.466667pt;}
.x29_c00096{left:218.533333pt;}
.x9a_c00096{left:219.733333pt;}
.x8b_c00096{left:222.800000pt;}
.x47_c00096{left:225.066667pt;}
.xe_c00096{left:227.066667pt;}
.x34_c00096{left:229.066667pt;}
.x91_c00096{left:230.266667pt;}
.x82_c00096{left:231.866667pt;}
.x2a_c00096{left:233.866667pt;}
.x18_c00096{left:235.200000pt;}
.x8c_c00096{left:239.466667pt;}
.x5c_c00096{left:240.533333pt;}
.x62_c00096{left:241.866667pt;}
.x76_c00096{left:243.466667pt;}
.x9b_c00096{left:244.400000pt;}
.x90_c00096{left:246.266667pt;}
.xa2_c00096{left:247.200000pt;}
.x19_c00096{left:248.666667pt;}
.x9c_c00096{left:250.266667pt;}
.x3d_c00096{left:251.600000pt;}
.x88_c00096{left:252.666667pt;}
.x21_c00096{left:254.133333pt;}
.x7f_c00096{left:255.466667pt;}
.x5_c00096{left:257.866667pt;}
.x63_c00096{left:258.800000pt;}
.x6a_c00096{left:260.400000pt;}
.x13_c00096{left:263.066667pt;}
.x6_c00096{left:265.200000pt;}
.xa6_c00096{left:266.666667pt;}
.xa4_c00096{left:268.666667pt;}
.x48_c00096{left:269.600000pt;}
.x22_c00096{left:270.800000pt;}
.x2b_c00096{left:272.533333pt;}
.x92_c00096{left:274.800000pt;}
.x6b_c00096{left:277.066667pt;}
.x94_c00096{left:278.133333pt;}
.x9d_c00096{left:279.066667pt;}
.xa9_c00096{left:280.133333pt;}
.x2c_c00096{left:281.866667pt;}
.x57_c00096{left:283.733333pt;}
.x7_c00096{left:284.666667pt;}
.x4c_c00096{left:289.466667pt;}
.x38_c00096{left:290.533333pt;}
.x23_c00096{left:292.933333pt;}
.x77_c00096{left:294.266667pt;}
.x14_c00096{left:297.333333pt;}
.x1_c00096{left:298.266667pt;}
.x80_c00096{left:299.600000pt;}
.x70_c00096{left:301.066667pt;}
.x8d_c00096{left:302.133333pt;}
.x7c_c00096{left:303.333333pt;}
.xaa_c00096{left:304.266667pt;}
.x1a_c00096{left:305.600000pt;}
.x51_c00096{left:306.800000pt;}
.xa7_c00096{left:309.333333pt;}
.x2d_c00096{left:313.866667pt;}
.x8_c00096{left:316.400000pt;}
.x95_c00096{left:317.466667pt;}
.x52_c00096{left:318.933333pt;}
.x89_c00096{left:320.800000pt;}
.x64_c00096{left:321.866667pt;}
.x5d_c00096{left:322.800000pt;}
.xa0_c00096{left:323.733333pt;}
.x4d_c00096{left:325.333333pt;}
.xa3_c00096{left:327.600000pt;}
.x1b_c00096{left:328.933333pt;}
.xa8_c00096{left:331.066667pt;}
.x87_c00096{left:332.800000pt;}
.x9e_c00096{left:333.733333pt;}
.x44_c00096{left:334.666667pt;}
.x99_c00096{left:336.000000pt;}
.xab_c00096{left:336.933333pt;}
.x35_c00096{left:338.533333pt;}
.x7d_c00096{left:339.466667pt;}
.x24_c00096{left:340.666667pt;}
.x2e_c00096{left:342.933333pt;}
.x49_c00096{left:343.866667pt;}
.x53_c00096{left:345.866667pt;}
.x5e_c00096{left:347.066667pt;}
.x65_c00096{left:349.066667pt;}
.x1c_c00096{left:350.400000pt;}
.x83_c00096{left:352.800000pt;}
.x8e_c00096{left:354.666667pt;}
.x4a_c00096{left:357.600000pt;}
.x2f_c00096{left:358.666667pt;}
.x96_c00096{left:360.666667pt;}
.x9_c00096{left:364.133333pt;}
.x39_c00096{left:366.133333pt;}
.x30_c00096{left:367.600000pt;}
.x6c_c00096{left:369.466667pt;}
.x5b_c00096{left:371.200000pt;}
.x45_c00096{left:372.133333pt;}
.x5f_c00096{left:374.000000pt;}
.x73_c00096{left:375.733333pt;}
.x78_c00096{left:377.200000pt;}
.x85_c00096{left:379.600000pt;}
.xac_c00096{left:384.533333pt;}
.x93_c00096{left:386.266667pt;}
.xbf_c00096{left:401.600000pt;}
.xea_c00096{left:403.466667pt;}
.x10b_c00096{left:404.533333pt;}
.x139_c00096{left:408.666667pt;}
.xb2_c00096{left:416.666667pt;}
.xc6_c00096{left:417.600000pt;}
.xe4_c00096{left:418.533333pt;}
.xfd_c00096{left:419.733333pt;}
.x114_c00096{left:421.066667pt;}
.x109_c00096{left:422.000000pt;}
.x126_c00096{left:423.066667pt;}
.x13d_c00096{left:424.000000pt;}
.xeb_c00096{left:424.933333pt;}
.x147_c00096{left:426.400000pt;}
.x154_c00096{left:427.466667pt;}
.x15b_c00096{left:428.533333pt;}
.x159_c00096{left:430.000000pt;}
.xd1_c00096{left:432.933333pt;}
.xd6_c00096{left:434.933333pt;}
.x127_c00096{left:436.800000pt;}
.xb9_c00096{left:438.533333pt;}
.x118_c00096{left:440.266667pt;}
.xec_c00096{left:441.200000pt;}
.x15a_c00096{left:442.800000pt;}
.x115_c00096{left:443.733333pt;}
.xb3_c00096{left:445.200000pt;}
.xcd_c00096{left:448.666667pt;}
.x148_c00096{left:450.666667pt;}
.xf2_c00096{left:451.600000pt;}
.xdc_c00096{left:453.733333pt;}
.xc7_c00096{left:454.666667pt;}
.xc0_c00096{left:456.933333pt;}
.xf7_c00096{left:459.866667pt;}
.xfe_c00096{left:462.000000pt;}
.xd2_c00096{left:463.066667pt;}
.xc8_c00096{left:464.266667pt;}
.x13e_c00096{left:466.533333pt;}
.xf3_c00096{left:467.866667pt;}
.x12f_c00096{left:468.933333pt;}
.xba_c00096{left:470.266667pt;}
.x123_c00096{left:471.200000pt;}
.x10a_c00096{left:472.666667pt;}
.xce_c00096{left:474.000000pt;}
.x14b_c00096{left:475.733333pt;}
.xdd_c00096{left:477.466667pt;}
.x10d_c00096{left:478.400000pt;}
.x119_c00096{left:480.533333pt;}
.x152_c00096{left:481.866667pt;}
.x103_c00096{left:482.800000pt;}
.xc9_c00096{left:484.400000pt;}
.x11d_c00096{left:489.200000pt;}
.xe5_c00096{left:490.933333pt;}
.xd7_c00096{left:493.200000pt;}
.xb4_c00096{left:494.533333pt;}
.x128_c00096{left:496.533333pt;}
.xc1_c00096{left:497.866667pt;}
.x111_c00096{left:499.866667pt;}
.xed_c00096{left:501.733333pt;}
.x150_c00096{left:502.666667pt;}
.x130_c00096{left:504.666667pt;}
.xf8_c00096{left:507.866667pt;}
.xe0_c00096{left:510.000000pt;}
.xcf_c00096{left:511.733333pt;}
.x136_c00096{left:512.800000pt;}
.xf4_c00096{left:514.000000pt;}
.xbb_c00096{left:515.066667pt;}
.x15c_c00096{left:516.533333pt;}
.xd8_c00096{left:517.466667pt;}
.x129_c00096{left:518.800000pt;}
.xb5_c00096{left:519.866667pt;}
.xff_c00096{left:522.800000pt;}
.x14e_c00096{left:524.133333pt;}
.xe6_c00096{left:525.200000pt;}
.x11e_c00096{left:526.933333pt;}
.xc2_c00096{left:529.200000pt;}
.xf9_c00096{left:530.933333pt;}
.xca_c00096{left:534.666667pt;}
.xe1_c00096{left:538.800000pt;}
.xbc_c00096{left:540.400000pt;}
.xf5_c00096{left:542.533333pt;}
.xee_c00096{left:544.666667pt;}
.x104_c00096{left:546.533333pt;}
.xe7_c00096{left:548.533333pt;}
.x137_c00096{left:550.133333pt;}
.x121_c00096{left:551.333333pt;}
.x10c_c00096{left:552.533333pt;}
.x151_c00096{left:553.600000pt;}
.xd0_c00096{left:554.666667pt;}
.x124_c00096{left:556.533333pt;}
.x11f_c00096{left:558.666667pt;}
.x11a_c00096{left:559.600000pt;}
.xe2_c00096{left:561.466667pt;}
.xc3_c00096{left:563.066667pt;}
.x131_c00096{left:564.800000pt;}
.xbd_c00096{left:566.000000pt;}
.x12d_c00096{left:566.933333pt;}
.x10e_c00096{left:568.933333pt;}
.xb6_c00096{left:570.400000pt;}
.xd3_c00096{left:573.733333pt;}
.x125_c00096{left:574.800000pt;}
.x13f_c00096{left:576.266667pt;}
.x112_c00096{left:577.200000pt;}
.xde_c00096{left:578.533333pt;}
.xe8_c00096{left:580.800000pt;}
.x143_c00096{left:582.133333pt;}
.x100_c00096{left:583.333333pt;}
.xb7_c00096{left:584.800000pt;}
.xd4_c00096{left:586.266667pt;}
.x153_c00096{left:587.466667pt;}
.xcb_c00096{left:588.800000pt;}
.x14c_c00096{left:590.000000pt;}
.xfa_c00096{left:591.333333pt;}
.x132_c00096{left:593.066667pt;}
.x116_c00096{left:594.800000pt;}
.xd9_c00096{left:595.866667pt;}
.x157_c00096{left:596.800000pt;}
.x12a_c00096{left:599.200000pt;}
.x138_c00096{left:600.933333pt;}
.xcc_c00096{left:602.933333pt;}
.xbe_c00096{left:604.133333pt;}
.x113_c00096{left:605.333333pt;}
.xfb_c00096{left:607.333333pt;}
.xad_c00096{left:609.333333pt;}
.xe9_c00096{left:610.266667pt;}
.x105_c00096{left:611.866667pt;}
.x101_c00096{left:613.733333pt;}
.x12e_c00096{left:614.666667pt;}
.xae_c00096{left:616.666667pt;}
.x14f_c00096{left:617.866667pt;}
.x149_c00096{left:618.800000pt;}
.xd5_c00096{left:619.866667pt;}
.x146_c00096{left:621.866667pt;}
.x155_c00096{left:623.066667pt;}
.xfc_c00096{left:624.266667pt;}
.x13a_c00096{left:625.200000pt;}
.xb8_c00096{left:627.333333pt;}
.x141_c00096{left:628.533333pt;}
.x106_c00096{left:629.733333pt;}
.xaf_c00096{left:631.733333pt;}
.x11b_c00096{left:634.533333pt;}
.xda_c00096{left:636.133333pt;}
.xef_c00096{left:638.400000pt;}
.x140_c00096{left:639.600000pt;}
.x102_c00096{left:642.800000pt;}
.x10f_c00096{left:643.866667pt;}
.x133_c00096{left:645.600000pt;}
.x144_c00096{left:648.266667pt;}
.x120_c00096{left:649.200000pt;}
.xdf_c00096{left:653.333333pt;}
.x14d_c00096{left:654.666667pt;}
.x117_c00096{left:655.600000pt;}
.xc4_c00096{left:657.866667pt;}
.x13b_c00096{left:658.800000pt;}
.x12b_c00096{left:660.000000pt;}
.x134_c00096{left:661.333333pt;}
.x122_c00096{left:662.533333pt;}
.xe3_c00096{left:665.200000pt;}
.x107_c00096{left:666.266667pt;}
.xf0_c00096{left:667.866667pt;}
.x11c_c00096{left:670.000000pt;}
.x156_c00096{left:672.666667pt;}
.xdb_c00096{left:674.266667pt;}
.xb0_c00096{left:676.533333pt;}
.x110_c00096{left:680.400000pt;}
.x142_c00096{left:682.000000pt;}
.xf1_c00096{left:683.200000pt;}
.xf6_c00096{left:684.800000pt;}
.xb1_c00096{left:686.133333pt;}
.x135_c00096{left:688.266667pt;}
.xc5_c00096{left:692.133333pt;}
.x13c_c00096{left:693.066667pt;}
.x108_c00096{left:695.333333pt;}
.x145_c00096{left:696.266667pt;}
.x14a_c00096{left:697.200000pt;}
.x12c_c00096{left:700.933333pt;}
.x158_c00096{left:706.133333pt;}
}





/* 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_c00097 {
    display:none;
  }
  .loading-indicator_c00097.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00097 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_c00097 { 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_c00097" -> "#page-container .classname_c00097")
 */
.pf_c00097 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00097 { /* 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_c00097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00097 { /* 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_c00097 { /* 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_c00097 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00097 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00097 {overflow:visible;}
  }
}
.c_c00097 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00097 { /* 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_c00097:after { /* webkit #35443 */
  content: '';
}
.t_c00097:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00097 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 */
}
.__c00097 { /* 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_c00097 { /* info for Javascript */
  display:none;
}
.l_c00097 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00097 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00097 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00097: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_c00097 {
    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_c00097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00097.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_c00097 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00097;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.000000;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;}
.mc_c00097{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.md4_c00097{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.md2_c00097{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00097{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m15_c00097{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00097{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00097{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.md5_c00097{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00097{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mde_c00097{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00097{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m76_c00097{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.md6_c00097{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m30_c00097{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00097{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mee_c00097{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m78_c00097{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.md8_c00097{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00097{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m74_c00097{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00097{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md3_c00097{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m79_c00097{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00097{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00097{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00097{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00097{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m44_c00097{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m39_c00097{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00097{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00097{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00097{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00097{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m106_c00097{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00097{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00097{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m32_c00097{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00097{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00097{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mff_c00097{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m105_c00097{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00097{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3_c00097{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.mb_c00097{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00097{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00097{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00097{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00097{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m64_c00097{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m96_c00097{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m77_c00097{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00097{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00097{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6_c00097{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m34_c00097{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m61_c00097{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m42_c00097{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00097{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m104_c00097{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00097{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00097{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00097{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m45_c00097{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m13_c00097{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00097{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00097{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mae_c00097{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00097{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m99_c00097{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00097{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m10_c00097{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00097{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00097{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m25_c00097{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00097{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m17_c00097{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m48_c00097{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00097{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m28_c00097{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00097{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m47_c00097{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00097{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00097{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00097{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00097{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m108_c00097{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m40_c00097{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m21_c00097{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00097{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00097{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m101_c00097{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m7_c00097{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00097{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m98_c00097{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m95_c00097{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00097{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00097{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m35_c00097{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00097{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m51_c00097{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m5_c00097{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m23_c00097{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00097{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m85_c00097{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.maa_c00097{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00097{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00097{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00097{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.meb_c00097{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00097{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m63_c00097{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00097{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m70_c00097{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00097{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m102_c00097{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m11_c00097{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m103_c00097{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00097{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00097{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m62_c00097{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m58_c00097{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m97_c00097{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00097{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me1_c00097{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m73_c00097{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m83_c00097{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00097{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m0_c00097{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00097{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00097{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf_c00097{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m26_c00097{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00097{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00097{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m92_c00097{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00097{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mba_c00097{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m19_c00097{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9_c00097{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00097{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00097{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m60_c00097{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m38_c00097{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me4_c00097{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m46_c00097{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00097{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mac_c00097{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m16_c00097{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m67_c00097{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m86_c00097{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m100_c00097{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m22_c00097{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m20_c00097{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00097{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m54_c00097{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m90_c00097{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00097{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00097{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m14_c00097{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md9_c00097{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4_c00097{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00097{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.maf_c00097{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m24_c00097{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m66_c00097{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00097{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00097{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00097{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2_c00097{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00097{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00097{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00097{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00097{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me8_c00097{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m109_c00097{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m50_c00097{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m57_c00097{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.md7_c00097{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mec_c00097{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00097{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m41_c00097{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md_c00097{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00097{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00097{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m82_c00097{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00097{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00097{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me_c00097{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m31_c00097{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00097{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00097{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m52_c00097{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m27_c00097{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m53_c00097{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.me0_c00097{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m89_c00097{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00097{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00097{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m81_c00097{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00097{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00097{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m49_c00097{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m93_c00097{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mab_c00097{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00097{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00097{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00097{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m18_c00097{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00097{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m55_c00097{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m12_c00097{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00097{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m84_c00097{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me6_c00097{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00097{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md0_c00097{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m107_c00097{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00097{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m75_c00097{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00097{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md1_c00097{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00097{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00097{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma_c00097{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m59_c00097{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me3_c00097{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m72_c00097{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m80_c00097{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m36_c00097{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00097{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00097{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m88_c00097{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m65_c00097{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mda_c00097{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m87_c00097{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m56_c00097{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);}
.m71_c00097{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00097{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m33_c00097{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00097{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.me2_c00097{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me7_c00097{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m68_c00097{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mad_c00097{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00097{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m69_c00097{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m94_c00097{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m43_c00097{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.med_c00097{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me5_c00097{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mce_c00097{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m91_c00097{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00097{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00097{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00097{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00097{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m37_c00097{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m29_c00097{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00097{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.me9_c00097{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mef_c00097{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mea_c00097{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00097{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00097{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00097{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00097{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00097{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m8_c00097{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00097{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00097{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.435750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435750,0.000000,0.000000,0.250000,0,0);}
.mca_c00097{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls0_c00097{letter-spacing:0.000000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{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__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00097{word-spacing:-13.491620px;}
.ws8_c00097{word-spacing:-13.120275px;}
.ws7_c00097{word-spacing:-8.891403px;}
.ws4_c00097{word-spacing:-5.254777px;}
.ws2_c00097{word-spacing:-4.106145px;}
.ws1_c00097{word-spacing:-3.972973px;}
.ws9_c00097{word-spacing:0.000000px;}
.ws0_c00097{word-spacing:4.465649px;}
.ws5_c00097{word-spacing:9.641921px;}
.ws6_c00097{word-spacing:452.291667px;}
._0_c00097{width:26.096220px;}
.fc0_c00097{color:transparent;}
.fs5_c00097{font-size:30.000000px;}
.fs6_c00097{font-size:48.000000px;}
.fs4_c00097{font-size:54.000000px;}
.fs3_c00097{font-size:60.000000px;}
.fs2_c00097{font-size:66.000000px;}
.fs1_c00097{font-size:72.000000px;}
.fs0_c00097{font-size:90.000000px;}
.y0_c00097{bottom:0.000000px;}
.y69_c00097{bottom:181.200000px;}
.y34_c00097{bottom:182.850000px;}
.y68_c00097{bottom:201.000000px;}
.y33_c00097{bottom:201.150000px;}
.y67_c00097{bottom:218.700000px;}
.y32_c00097{bottom:218.850000px;}
.y66_c00097{bottom:236.400000px;}
.y31_c00097{bottom:236.850000px;}
.y65_c00097{bottom:254.400000px;}
.y30_c00097{bottom:254.850000px;}
.y64_c00097{bottom:272.100000px;}
.y2f_c00097{bottom:272.550000px;}
.y63_c00097{bottom:290.100000px;}
.y2e_c00097{bottom:290.550000px;}
.y62_c00097{bottom:308.100000px;}
.y2d_c00097{bottom:308.550000px;}
.y61_c00097{bottom:326.100000px;}
.y2c_c00097{bottom:326.550000px;}
.y60_c00097{bottom:344.100000px;}
.y2b_c00097{bottom:344.550000px;}
.y2a_c00097{bottom:362.550000px;}
.y5f_c00097{bottom:362.850000px;}
.y5e_c00097{bottom:380.100000px;}
.y29_c00097{bottom:380.550000px;}
.y5d_c00097{bottom:398.400000px;}
.y28_c00097{bottom:398.550000px;}
.y5c_c00097{bottom:416.100000px;}
.y27_c00097{bottom:416.850000px;}
.y5b_c00097{bottom:434.100000px;}
.y26_c00097{bottom:434.850000px;}
.y25_c00097{bottom:452.850000px;}
.y5a_c00097{bottom:455.100000px;}
.y59_c00097{bottom:468.750000px;}
.y24_c00097{bottom:470.550000px;}
.y58_c00097{bottom:487.800000px;}
.y23_c00097{bottom:491.700000px;}
.y57_c00097{bottom:505.800000px;}
.y22_c00097{bottom:511.200000px;}
.y56_c00097{bottom:523.800000px;}
.y21_c00097{bottom:529.950000px;}
.y55_c00097{bottom:541.800000px;}
.y20_c00097{bottom:547.950000px;}
.y54_c00097{bottom:559.800000px;}
.y1f_c00097{bottom:566.250000px;}
.y53_c00097{bottom:582.150000px;}
.y1e_c00097{bottom:588.300000px;}
.y52_c00097{bottom:600.150000px;}
.y1d_c00097{bottom:606.300000px;}
.y51_c00097{bottom:618.150000px;}
.y1c_c00097{bottom:623.550000px;}
.y50_c00097{bottom:636.150000px;}
.y1b_c00097{bottom:642.300000px;}
.y4f_c00097{bottom:658.500000px;}
.y1a_c00097{bottom:664.500000px;}
.y4e_c00097{bottom:681.150000px;}
.y19_c00097{bottom:689.400000px;}
.y4d_c00097{bottom:703.500000px;}
.y18_c00097{bottom:711.750000px;}
.y4c_c00097{bottom:725.700000px;}
.y17_c00097{bottom:733.950000px;}
.y4b_c00097{bottom:743.700000px;}
.y16_c00097{bottom:752.700000px;}
.y4a_c00097{bottom:761.700000px;}
.y15_c00097{bottom:771.000000px;}
.y49_c00097{bottom:779.700000px;}
.y14_c00097{bottom:788.700000px;}
.y48_c00097{bottom:797.700000px;}
.y13_c00097{bottom:807.000000px;}
.y47_c00097{bottom:815.700000px;}
.y12_c00097{bottom:824.700000px;}
.y46_c00097{bottom:833.700000px;}
.y11_c00097{bottom:842.700000px;}
.y10_c00097{bottom:860.700000px;}
.y45_c00097{bottom:869.400000px;}
.y44_c00097{bottom:869.700000px;}
.yf_c00097{bottom:878.700000px;}
.y43_c00097{bottom:887.700000px;}
.ye_c00097{bottom:896.700000px;}
.y42_c00097{bottom:910.050000px;}
.yd_c00097{bottom:914.700000px;}
.y41_c00097{bottom:928.050000px;}
.yc_c00097{bottom:932.700000px;}
.y40_c00097{bottom:946.800000px;}
.yb_c00097{bottom:950.700000px;}
.y3f_c00097{bottom:961.200000px;}
.y3e_c00097{bottom:964.050000px;}
.ya_c00097{bottom:971.250000px;}
.y3d_c00097{bottom:986.400000px;}
.y9_c00097{bottom:990.750000px;}
.y3c_c00097{bottom:1004.700000px;}
.y8_c00097{bottom:1009.050000px;}
.y3b_c00097{bottom:1017.300000px;}
.y3a_c00097{bottom:1024.500000px;}
.y7_c00097{bottom:1027.050000px;}
.y39_c00097{bottom:1044.750000px;}
.y6_c00097{bottom:1045.050000px;}
.y38_c00097{bottom:1062.750000px;}
.y5_c00097{bottom:1063.050000px;}
.y4_c00097{bottom:1080.750000px;}
.y37_c00097{bottom:1085.400000px;}
.y3_c00097{bottom:1101.300000px;}
.y36_c00097{bottom:1103.700000px;}
.y2_c00097{bottom:1121.100000px;}
.y35_c00097{bottom:1121.700000px;}
.y1_c00097{bottom:1148.700000px;}
.h7_c00097{height:30.000000px;}
.h8_c00097{height:48.000000px;}
.h6_c00097{height:54.000000px;}
.h5_c00097{height:60.000000px;}
.h4_c00097{height:66.000000px;}
.h3_c00097{height:72.000000px;}
.h2_c00097{height:90.000000px;}
.h0_c00097{height:1271.160094px;}
.h1_c00097{height:1271.250000px;}
.w1_c00097{width:953.250000px;}
.w0_c00097{width:953.280030px;}
.x0_c00097{left:0.000000px;}
.x60_c00097{left:174.750000px;}
.x5c_c00097{left:176.100000px;}
.x1_c00097{left:177.900000px;}
.x59_c00097{left:193.950000px;}
.xb_c00097{left:195.150000px;}
.x3_c00097{left:196.950000px;}
.x62_c00097{left:208.800000px;}
.x65_c00097{left:212.100000px;}
.xe_c00097{left:213.450000px;}
.x5a_c00097{left:215.550000px;}
.x47_c00097{left:218.550000px;}
.x4_c00097{left:220.050000px;}
.x8f_c00097{left:221.250000px;}
.x76_c00097{left:223.500000px;}
.x1d_c00097{left:226.350000px;}
.x34_c00097{left:229.950000px;}
.xc_c00097{left:231.150000px;}
.x2c_c00097{left:233.100000px;}
.x7e_c00097{left:234.450000px;}
.x4e_c00097{left:236.100000px;}
.x5d_c00097{left:239.400000px;}
.x69_c00097{left:240.900000px;}
.x56_c00097{left:243.150000px;}
.x61_c00097{left:245.700000px;}
.x16_c00097{left:249.300000px;}
.x3c_c00097{left:251.850000px;}
.x39_c00097{left:253.500000px;}
.x17_c00097{left:257.250000px;}
.xf_c00097{left:259.950000px;}
.x35_c00097{left:261.750000px;}
.x6d_c00097{left:263.850000px;}
.x24_c00097{left:265.650000px;}
.x5_c00097{left:266.850000px;}
.x41_c00097{left:269.100000px;}
.x84_c00097{left:271.800000px;}
.x3d_c00097{left:273.450000px;}
.x7f_c00097{left:275.100000px;}
.x29_c00097{left:277.050000px;}
.x97_c00097{left:278.850000px;}
.x48_c00097{left:280.050000px;}
.x87_c00097{left:282.750000px;}
.x1e_c00097{left:284.250000px;}
.x74_c00097{left:285.900000px;}
.x5e_c00097{left:287.700000px;}
.x18_c00097{left:289.650000px;}
.x25_c00097{left:291.150000px;}
.x58_c00097{left:293.100000px;}
.x2d_c00097{left:295.350000px;}
.x36_c00097{left:297.000000px;}
.x57_c00097{left:298.200000px;}
.x8e_c00097{left:300.000000px;}
.x6e_c00097{left:303.450000px;}
.x10_c00097{left:304.650000px;}
.x1f_c00097{left:307.350000px;}
.x66_c00097{left:309.750000px;}
.x79_c00097{left:312.000000px;}
.x5f_c00097{left:313.650000px;}
.x2e_c00097{left:315.150000px;}
.x6_c00097{left:319.050000px;}
.x5b_c00097{left:320.400000px;}
.x42_c00097{left:321.600000px;}
.x88_c00097{left:323.250000px;}
.x91_c00097{left:325.350000px;}
.x63_c00097{left:327.300000px;}
.x7b_c00097{left:331.200000px;}
.x80_c00097{left:333.000000px;}
.x19_c00097{left:334.950000px;}
.x20_c00097{left:337.950000px;}
.x6f_c00097{left:340.200000px;}
.x77_c00097{left:342.300000px;}
.x4f_c00097{left:344.100000px;}
.xd_c00097{left:346.350000px;}
.x67_c00097{left:349.650000px;}
.x92_c00097{left:351.600000px;}
.x2f_c00097{left:354.450000px;}
.x70_c00097{left:356.100000px;}
.x43_c00097{left:357.900000px;}
.x11_c00097{left:358.950000px;}
.x3a_c00097{left:362.100000px;}
.x50_c00097{left:363.150000px;}
.x2a_c00097{left:366.300000px;}
.x26_c00097{left:369.600000px;}
.x37_c00097{left:371.100000px;}
.x7c_c00097{left:374.850000px;}
.x44_c00097{left:376.950000px;}
.x54_c00097{left:379.200000px;}
.x7_c00097{left:380.250000px;}
.x90_c00097{left:381.900000px;}
.x98_c00097{left:383.100000px;}
.x30_c00097{left:385.350000px;}
.x49_c00097{left:387.300000px;}
.x21_c00097{left:388.350000px;}
.x12_c00097{left:390.600000px;}
.x89_c00097{left:391.650000px;}
.x71_c00097{left:392.850000px;}
.x81_c00097{left:394.650000px;}
.x8c_c00097{left:396.450000px;}
.x27_c00097{left:398.700000px;}
.x95_c00097{left:399.900000px;}
.x31_c00097{left:401.550000px;}
.x4a_c00097{left:402.750000px;}
.x94_c00097{left:406.050000px;}
.x78_c00097{left:407.400000px;}
.x1a_c00097{left:408.450000px;}
.x51_c00097{left:410.100000px;}
.x72_c00097{left:411.900000px;}
.x85_c00097{left:415.200000px;}
.x3b_c00097{left:417.150000px;}
.x45_c00097{left:419.400000px;}
.x7a_c00097{left:420.750000px;}
.x8_c00097{left:422.400000px;}
.x2_c00097{left:423.750000px;}
.x52_c00097{left:424.800000px;}
.x64_c00097{left:426.000000px;}
.x22_c00097{left:428.700000px;}
.x6a_c00097{left:431.550000px;}
.x82_c00097{left:433.500000px;}
.x96_c00097{left:435.150000px;}
.x1b_c00097{left:436.200000px;}
.x4b_c00097{left:438.000000px;}
.x13_c00097{left:444.300000px;}
.x8a_c00097{left:446.700000px;}
.x9_c00097{left:448.350000px;}
.x3e_c00097{left:449.850000px;}
.x73_c00097{left:454.350000px;}
.x6b_c00097{left:455.700000px;}
.x32_c00097{left:457.050000px;}
.x8d_c00097{left:458.850000px;}
.x1c_c00097{left:460.650000px;}
.x46_c00097{left:462.300000px;}
.x7d_c00097{left:464.850000px;}
.x8b_c00097{left:466.800000px;}
.x4c_c00097{left:467.850000px;}
.x14_c00097{left:469.500000px;}
.x68_c00097{left:471.300000px;}
.x28_c00097{left:474.300000px;}
.x3f_c00097{left:476.100000px;}
.xa_c00097{left:477.450000px;}
.x86_c00097{left:478.950000px;}
.x83_c00097{left:480.600000px;}
.x55_c00097{left:483.900000px;}
.x15_c00097{left:487.200000px;}
.x23_c00097{left:489.600000px;}
.x33_c00097{left:490.950000px;}
.x53_c00097{left:492.150000px;}
.x75_c00097{left:493.800000px;}
.x6c_c00097{left:495.750000px;}
.x38_c00097{left:499.800000px;}
.x4d_c00097{left:501.000000px;}
.x40_c00097{left:502.800000px;}
.x93_c00097{left:509.100000px;}
.x2b_c00097{left:510.300000px;}
.x121_c00097{left:529.500000px;}
.x105_c00097{left:533.550000px;}
.xc7_c00097{left:535.350000px;}
.xb3_c00097{left:536.400000px;}
.x113_c00097{left:550.650000px;}
.xe2_c00097{left:551.700000px;}
.x99_c00097{left:552.900000px;}
.xea_c00097{left:563.850000px;}
.xab_c00097{left:570.300000px;}
.x10b_c00097{left:571.950000px;}
.x114_c00097{left:574.050000px;}
.xc1_c00097{left:576.450000px;}
.xbc_c00097{left:577.650000px;}
.xa3_c00097{left:580.650000px;}
.x9a_c00097{left:582.450000px;}
.xe8_c00097{left:585.900000px;}
.xdd_c00097{left:588.000000px;}
.x132_c00097{left:589.350000px;}
.xc6_c00097{left:591.150000px;}
.xf7_c00097{left:592.200000px;}
.xd7_c00097{left:593.700000px;}
.x106_c00097{left:595.500000px;}
.x126_c00097{left:596.850000px;}
.x9b_c00097{left:597.900000px;}
.xeb_c00097{left:600.600000px;}
.x107_c00097{left:601.950000px;}
.x109_c00097{left:603.450000px;}
.xe9_c00097{left:604.650000px;}
.xe3_c00097{left:606.450000px;}
.xb4_c00097{left:608.400000px;}
.xa4_c00097{left:609.450000px;}
.x10c_c00097{left:611.850000px;}
.xf8_c00097{left:613.050000px;}
.xd2_c00097{left:614.250000px;}
.xde_c00097{left:616.350000px;}
.xac_c00097{left:617.850000px;}
.xd8_c00097{left:619.650000px;}
.xf3_c00097{left:620.700000px;}
.xfe_c00097{left:623.100000px;}
.x10d_c00097{left:624.450000px;}
.x139_c00097{left:626.100000px;}
.x108_c00097{left:627.150000px;}
.x9c_c00097{left:628.200000px;}
.x122_c00097{left:629.550000px;}
.x138_c00097{left:630.900000px;}
.xc2_c00097{left:631.950000px;}
.xcc_c00097{left:635.850000px;}
.xbd_c00097{left:637.350000px;}
.x130_c00097{left:638.400000px;}
.xb2_c00097{left:640.950000px;}
.x9d_c00097{left:642.600000px;}
.xc8_c00097{left:643.650000px;}
.xec_c00097{left:645.900000px;}
.x10a_c00097{left:647.700000px;}
.xe4_c00097{left:648.900000px;}
.xad_c00097{left:650.550000px;}
.xd3_c00097{left:652.050000px;}
.xc9_c00097{left:655.500000px;}
.xb5_c00097{left:657.000000px;}
.x13b_c00097{left:659.250000px;}
.xed_c00097{left:661.800000px;}
.x10e_c00097{left:663.000000px;}
.x136_c00097{left:664.500000px;}
.xdf_c00097{left:666.750000px;}
.x102_c00097{left:668.250000px;}
.x9e_c00097{left:669.300000px;}
.xf9_c00097{left:670.350000px;}
.xbe_c00097{left:673.050000px;}
.x131_c00097{left:674.400000px;}
.xcd_c00097{left:675.750000px;}
.xca_c00097{left:676.800000px;}
.x11e_c00097{left:678.600000px;}
.x133_c00097{left:680.400000px;}
.xa5_c00097{left:681.450000px;}
.xfb_c00097{left:682.950000px;}
.x116_c00097{left:684.900000px;}
.x115_c00097{left:685.950000px;}
.xce_c00097{left:687.300000px;}
.x12d_c00097{left:689.100000px;}
.xd4_c00097{left:690.600000px;}
.x119_c00097{left:692.100000px;}
.x11f_c00097{left:693.300000px;}
.xbf_c00097{left:694.650000px;}
.x103_c00097{left:697.350000px;}
.xee_c00097{left:699.900000px;}
.xb6_c00097{left:703.800000px;}
.x11b_c00097{left:706.650000px;}
.xcf_c00097{left:707.850000px;}
.x10f_c00097{left:709.800000px;}
.x13a_c00097{left:711.750000px;}
.xa6_c00097{left:712.800000px;}
.x9f_c00097{left:715.050000px;}
.xc3_c00097{left:716.850000px;}
.x110_c00097{left:718.050000px;}
.x117_c00097{left:724.500000px;}
.xcb_c00097{left:726.150000px;}
.xef_c00097{left:728.400000px;}
.xc0_c00097{left:729.900000px;}
.x123_c00097{left:733.500000px;}
.x129_c00097{left:734.550000px;}
.xb7_c00097{left:736.500000px;}
.xae_c00097{left:737.700000px;}
.xff_c00097{left:738.750000px;}
.xe5_c00097{left:740.700000px;}
.xf4_c00097{left:742.350000px;}
.xa7_c00097{left:744.900000px;}
.xe0_c00097{left:745.950000px;}
.x12e_c00097{left:747.150000px;}
.xf0_c00097{left:748.500000px;}
.x11c_c00097{left:750.000000px;}
.xb8_c00097{left:751.200000px;}
.x12a_c00097{left:752.250000px;}
.xd9_c00097{left:754.500000px;}
.xf5_c00097{left:755.700000px;}
.x11a_c00097{left:757.650000px;}
.xc4_c00097{left:760.350000px;}
.xe6_c00097{left:762.300000px;}
.xd5_c00097{left:764.100000px;}
.xe1_c00097{left:767.250000px;}
.x134_c00097{left:770.400000px;}
.xd0_c00097{left:771.900000px;}
.xda_c00097{left:773.250000px;}
.x100_c00097{left:774.750000px;}
.x12b_c00097{left:776.400000px;}
.xd1_c00097{left:780.600000px;}
.xa8_c00097{left:783.000000px;}
.xc5_c00097{left:784.500000px;}
.x127_c00097{left:786.600000px;}
.xaf_c00097{left:787.800000px;}
.xdb_c00097{left:789.450000px;}
.xe7_c00097{left:791.100000px;}
.xa0_c00097{left:792.750000px;}
.x101_c00097{left:794.250000px;}
.xb9_c00097{left:795.450000px;}
.xf1_c00097{left:797.100000px;}
.x124_c00097{left:801.600000px;}
.x111_c00097{left:802.650000px;}
.xf2_c00097{left:807.150000px;}
.x12f_c00097{left:809.100000px;}
.xfc_c00097{left:811.050000px;}
.x137_c00097{left:813.150000px;}
.xa9_c00097{left:815.100000px;}
.xb0_c00097{left:817.650000px;}
.x13c_c00097{left:822.150000px;}
.x104_c00097{left:823.650000px;}
.xa1_c00097{left:825.150000px;}
.x135_c00097{left:827.250000px;}
.x125_c00097{left:830.100000px;}
.x128_c00097{left:831.300000px;}
.xba_c00097{left:832.500000px;}
.xfa_c00097{left:833.700000px;}
.xdc_c00097{left:835.950000px;}
.x11d_c00097{left:839.550000px;}
.x118_c00097{left:840.750000px;}
.x12c_c00097{left:841.950000px;}
.xfd_c00097{left:844.500000px;}
.xd6_c00097{left:846.900000px;}
.xa2_c00097{left:848.250000px;}
.xaa_c00097{left:852.900000px;}
.x120_c00097{left:856.350000px;}
.xb1_c00097{left:858.300000px;}
.xbb_c00097{left:861.300000px;}
.xf6_c00097{left:865.800000px;}
.x112_c00097{left:867.450000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws3_c00097{word-spacing:-11.992551pt;}
.ws8_c00097{word-spacing:-11.662467pt;}
.ws7_c00097{word-spacing:-7.903469pt;}
.ws4_c00097{word-spacing:-4.670913pt;}
.ws2_c00097{word-spacing:-3.649907pt;}
.ws1_c00097{word-spacing:-3.531532pt;}
.ws9_c00097{word-spacing:0.000000pt;}
.ws0_c00097{word-spacing:3.969466pt;}
.ws5_c00097{word-spacing:8.570597pt;}
.ws6_c00097{word-spacing:402.037037pt;}
._0_c00097{width:23.196640pt;}
.fs5_c00097{font-size:26.666667pt;}
.fs6_c00097{font-size:42.666667pt;}
.fs4_c00097{font-size:48.000000pt;}
.fs3_c00097{font-size:53.333333pt;}
.fs2_c00097{font-size:58.666667pt;}
.fs1_c00097{font-size:64.000000pt;}
.fs0_c00097{font-size:80.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y69_c00097{bottom:161.066667pt;}
.y34_c00097{bottom:162.533333pt;}
.y68_c00097{bottom:178.666667pt;}
.y33_c00097{bottom:178.800000pt;}
.y67_c00097{bottom:194.400000pt;}
.y32_c00097{bottom:194.533333pt;}
.y66_c00097{bottom:210.133333pt;}
.y31_c00097{bottom:210.533333pt;}
.y65_c00097{bottom:226.133333pt;}
.y30_c00097{bottom:226.533333pt;}
.y64_c00097{bottom:241.866667pt;}
.y2f_c00097{bottom:242.266667pt;}
.y63_c00097{bottom:257.866667pt;}
.y2e_c00097{bottom:258.266667pt;}
.y62_c00097{bottom:273.866667pt;}
.y2d_c00097{bottom:274.266667pt;}
.y61_c00097{bottom:289.866667pt;}
.y2c_c00097{bottom:290.266667pt;}
.y60_c00097{bottom:305.866667pt;}
.y2b_c00097{bottom:306.266667pt;}
.y2a_c00097{bottom:322.266667pt;}
.y5f_c00097{bottom:322.533333pt;}
.y5e_c00097{bottom:337.866667pt;}
.y29_c00097{bottom:338.266667pt;}
.y5d_c00097{bottom:354.133333pt;}
.y28_c00097{bottom:354.266667pt;}
.y5c_c00097{bottom:369.866667pt;}
.y27_c00097{bottom:370.533333pt;}
.y5b_c00097{bottom:385.866667pt;}
.y26_c00097{bottom:386.533333pt;}
.y25_c00097{bottom:402.533333pt;}
.y5a_c00097{bottom:404.533333pt;}
.y59_c00097{bottom:416.666667pt;}
.y24_c00097{bottom:418.266667pt;}
.y58_c00097{bottom:433.600000pt;}
.y23_c00097{bottom:437.066667pt;}
.y57_c00097{bottom:449.600000pt;}
.y22_c00097{bottom:454.400000pt;}
.y56_c00097{bottom:465.600000pt;}
.y21_c00097{bottom:471.066667pt;}
.y55_c00097{bottom:481.600000pt;}
.y20_c00097{bottom:487.066667pt;}
.y54_c00097{bottom:497.600000pt;}
.y1f_c00097{bottom:503.333333pt;}
.y53_c00097{bottom:517.466667pt;}
.y1e_c00097{bottom:522.933333pt;}
.y52_c00097{bottom:533.466667pt;}
.y1d_c00097{bottom:538.933333pt;}
.y51_c00097{bottom:549.466667pt;}
.y1c_c00097{bottom:554.266667pt;}
.y50_c00097{bottom:565.466667pt;}
.y1b_c00097{bottom:570.933333pt;}
.y4f_c00097{bottom:585.333333pt;}
.y1a_c00097{bottom:590.666667pt;}
.y4e_c00097{bottom:605.466667pt;}
.y19_c00097{bottom:612.800000pt;}
.y4d_c00097{bottom:625.333333pt;}
.y18_c00097{bottom:632.666667pt;}
.y4c_c00097{bottom:645.066667pt;}
.y17_c00097{bottom:652.400000pt;}
.y4b_c00097{bottom:661.066667pt;}
.y16_c00097{bottom:669.066667pt;}
.y4a_c00097{bottom:677.066667pt;}
.y15_c00097{bottom:685.333333pt;}
.y49_c00097{bottom:693.066667pt;}
.y14_c00097{bottom:701.066667pt;}
.y48_c00097{bottom:709.066667pt;}
.y13_c00097{bottom:717.333333pt;}
.y47_c00097{bottom:725.066667pt;}
.y12_c00097{bottom:733.066667pt;}
.y46_c00097{bottom:741.066667pt;}
.y11_c00097{bottom:749.066667pt;}
.y10_c00097{bottom:765.066667pt;}
.y45_c00097{bottom:772.800000pt;}
.y44_c00097{bottom:773.066667pt;}
.yf_c00097{bottom:781.066667pt;}
.y43_c00097{bottom:789.066667pt;}
.ye_c00097{bottom:797.066667pt;}
.y42_c00097{bottom:808.933333pt;}
.yd_c00097{bottom:813.066667pt;}
.y41_c00097{bottom:824.933333pt;}
.yc_c00097{bottom:829.066667pt;}
.y40_c00097{bottom:841.600000pt;}
.yb_c00097{bottom:845.066667pt;}
.y3f_c00097{bottom:854.400000pt;}
.y3e_c00097{bottom:856.933333pt;}
.ya_c00097{bottom:863.333333pt;}
.y3d_c00097{bottom:876.800000pt;}
.y9_c00097{bottom:880.666667pt;}
.y3c_c00097{bottom:893.066667pt;}
.y8_c00097{bottom:896.933333pt;}
.y3b_c00097{bottom:904.266667pt;}
.y3a_c00097{bottom:910.666667pt;}
.y7_c00097{bottom:912.933333pt;}
.y39_c00097{bottom:928.666667pt;}
.y6_c00097{bottom:928.933333pt;}
.y38_c00097{bottom:944.666667pt;}
.y5_c00097{bottom:944.933333pt;}
.y4_c00097{bottom:960.666667pt;}
.y37_c00097{bottom:964.800000pt;}
.y3_c00097{bottom:978.933333pt;}
.y36_c00097{bottom:981.066667pt;}
.y2_c00097{bottom:996.533333pt;}
.y35_c00097{bottom:997.066667pt;}
.y1_c00097{bottom:1021.066667pt;}
.h7_c00097{height:26.666667pt;}
.h8_c00097{height:42.666667pt;}
.h6_c00097{height:48.000000pt;}
.h5_c00097{height:53.333333pt;}
.h4_c00097{height:58.666667pt;}
.h3_c00097{height:64.000000pt;}
.h2_c00097{height:80.000000pt;}
.h0_c00097{height:1129.920084pt;}
.h1_c00097{height:1130.000000pt;}
.w1_c00097{width:847.333333pt;}
.w0_c00097{width:847.360027pt;}
.x0_c00097{left:0.000000pt;}
.x60_c00097{left:155.333333pt;}
.x5c_c00097{left:156.533333pt;}
.x1_c00097{left:158.133333pt;}
.x59_c00097{left:172.400000pt;}
.xb_c00097{left:173.466667pt;}
.x3_c00097{left:175.066667pt;}
.x62_c00097{left:185.600000pt;}
.x65_c00097{left:188.533333pt;}
.xe_c00097{left:189.733333pt;}
.x5a_c00097{left:191.600000pt;}
.x47_c00097{left:194.266667pt;}
.x4_c00097{left:195.600000pt;}
.x8f_c00097{left:196.666667pt;}
.x76_c00097{left:198.666667pt;}
.x1d_c00097{left:201.200000pt;}
.x34_c00097{left:204.400000pt;}
.xc_c00097{left:205.466667pt;}
.x2c_c00097{left:207.200000pt;}
.x7e_c00097{left:208.400000pt;}
.x4e_c00097{left:209.866667pt;}
.x5d_c00097{left:212.800000pt;}
.x69_c00097{left:214.133333pt;}
.x56_c00097{left:216.133333pt;}
.x61_c00097{left:218.400000pt;}
.x16_c00097{left:221.600000pt;}
.x3c_c00097{left:223.866667pt;}
.x39_c00097{left:225.333333pt;}
.x17_c00097{left:228.666667pt;}
.xf_c00097{left:231.066667pt;}
.x35_c00097{left:232.666667pt;}
.x6d_c00097{left:234.533333pt;}
.x24_c00097{left:236.133333pt;}
.x5_c00097{left:237.200000pt;}
.x41_c00097{left:239.200000pt;}
.x84_c00097{left:241.600000pt;}
.x3d_c00097{left:243.066667pt;}
.x7f_c00097{left:244.533333pt;}
.x29_c00097{left:246.266667pt;}
.x97_c00097{left:247.866667pt;}
.x48_c00097{left:248.933333pt;}
.x87_c00097{left:251.333333pt;}
.x1e_c00097{left:252.666667pt;}
.x74_c00097{left:254.133333pt;}
.x5e_c00097{left:255.733333pt;}
.x18_c00097{left:257.466667pt;}
.x25_c00097{left:258.800000pt;}
.x58_c00097{left:260.533333pt;}
.x2d_c00097{left:262.533333pt;}
.x36_c00097{left:264.000000pt;}
.x57_c00097{left:265.066667pt;}
.x8e_c00097{left:266.666667pt;}
.x6e_c00097{left:269.733333pt;}
.x10_c00097{left:270.800000pt;}
.x1f_c00097{left:273.200000pt;}
.x66_c00097{left:275.333333pt;}
.x79_c00097{left:277.333333pt;}
.x5f_c00097{left:278.800000pt;}
.x2e_c00097{left:280.133333pt;}
.x6_c00097{left:283.600000pt;}
.x5b_c00097{left:284.800000pt;}
.x42_c00097{left:285.866667pt;}
.x88_c00097{left:287.333333pt;}
.x91_c00097{left:289.200000pt;}
.x63_c00097{left:290.933333pt;}
.x7b_c00097{left:294.400000pt;}
.x80_c00097{left:296.000000pt;}
.x19_c00097{left:297.733333pt;}
.x20_c00097{left:300.400000pt;}
.x6f_c00097{left:302.400000pt;}
.x77_c00097{left:304.266667pt;}
.x4f_c00097{left:305.866667pt;}
.xd_c00097{left:307.866667pt;}
.x67_c00097{left:310.800000pt;}
.x92_c00097{left:312.533333pt;}
.x2f_c00097{left:315.066667pt;}
.x70_c00097{left:316.533333pt;}
.x43_c00097{left:318.133333pt;}
.x11_c00097{left:319.066667pt;}
.x3a_c00097{left:321.866667pt;}
.x50_c00097{left:322.800000pt;}
.x2a_c00097{left:325.600000pt;}
.x26_c00097{left:328.533333pt;}
.x37_c00097{left:329.866667pt;}
.x7c_c00097{left:333.200000pt;}
.x44_c00097{left:335.066667pt;}
.x54_c00097{left:337.066667pt;}
.x7_c00097{left:338.000000pt;}
.x90_c00097{left:339.466667pt;}
.x98_c00097{left:340.533333pt;}
.x30_c00097{left:342.533333pt;}
.x49_c00097{left:344.266667pt;}
.x21_c00097{left:345.200000pt;}
.x12_c00097{left:347.200000pt;}
.x89_c00097{left:348.133333pt;}
.x71_c00097{left:349.200000pt;}
.x81_c00097{left:350.800000pt;}
.x8c_c00097{left:352.400000pt;}
.x27_c00097{left:354.400000pt;}
.x95_c00097{left:355.466667pt;}
.x31_c00097{left:356.933333pt;}
.x4a_c00097{left:358.000000pt;}
.x94_c00097{left:360.933333pt;}
.x78_c00097{left:362.133333pt;}
.x1a_c00097{left:363.066667pt;}
.x51_c00097{left:364.533333pt;}
.x72_c00097{left:366.133333pt;}
.x85_c00097{left:369.066667pt;}
.x3b_c00097{left:370.800000pt;}
.x45_c00097{left:372.800000pt;}
.x7a_c00097{left:374.000000pt;}
.x8_c00097{left:375.466667pt;}
.x2_c00097{left:376.666667pt;}
.x52_c00097{left:377.600000pt;}
.x64_c00097{left:378.666667pt;}
.x22_c00097{left:381.066667pt;}
.x6a_c00097{left:383.600000pt;}
.x82_c00097{left:385.333333pt;}
.x96_c00097{left:386.800000pt;}
.x1b_c00097{left:387.733333pt;}
.x4b_c00097{left:389.333333pt;}
.x13_c00097{left:394.933333pt;}
.x8a_c00097{left:397.066667pt;}
.x9_c00097{left:398.533333pt;}
.x3e_c00097{left:399.866667pt;}
.x73_c00097{left:403.866667pt;}
.x6b_c00097{left:405.066667pt;}
.x32_c00097{left:406.266667pt;}
.x8d_c00097{left:407.866667pt;}
.x1c_c00097{left:409.466667pt;}
.x46_c00097{left:410.933333pt;}
.x7d_c00097{left:413.200000pt;}
.x8b_c00097{left:414.933333pt;}
.x4c_c00097{left:415.866667pt;}
.x14_c00097{left:417.333333pt;}
.x68_c00097{left:418.933333pt;}
.x28_c00097{left:421.600000pt;}
.x3f_c00097{left:423.200000pt;}
.xa_c00097{left:424.400000pt;}
.x86_c00097{left:425.733333pt;}
.x83_c00097{left:427.200000pt;}
.x55_c00097{left:430.133333pt;}
.x15_c00097{left:433.066667pt;}
.x23_c00097{left:435.200000pt;}
.x33_c00097{left:436.400000pt;}
.x53_c00097{left:437.466667pt;}
.x75_c00097{left:438.933333pt;}
.x6c_c00097{left:440.666667pt;}
.x38_c00097{left:444.266667pt;}
.x4d_c00097{left:445.333333pt;}
.x40_c00097{left:446.933333pt;}
.x93_c00097{left:452.533333pt;}
.x2b_c00097{left:453.600000pt;}
.x121_c00097{left:470.666667pt;}
.x105_c00097{left:474.266667pt;}
.xc7_c00097{left:475.866667pt;}
.xb3_c00097{left:476.800000pt;}
.x113_c00097{left:489.466667pt;}
.xe2_c00097{left:490.400000pt;}
.x99_c00097{left:491.466667pt;}
.xea_c00097{left:501.200000pt;}
.xab_c00097{left:506.933333pt;}
.x10b_c00097{left:508.400000pt;}
.x114_c00097{left:510.266667pt;}
.xc1_c00097{left:512.400000pt;}
.xbc_c00097{left:513.466667pt;}
.xa3_c00097{left:516.133333pt;}
.x9a_c00097{left:517.733333pt;}
.xe8_c00097{left:520.800000pt;}
.xdd_c00097{left:522.666667pt;}
.x132_c00097{left:523.866667pt;}
.xc6_c00097{left:525.466667pt;}
.xf7_c00097{left:526.400000pt;}
.xd7_c00097{left:527.733333pt;}
.x106_c00097{left:529.333333pt;}
.x126_c00097{left:530.533333pt;}
.x9b_c00097{left:531.466667pt;}
.xeb_c00097{left:533.866667pt;}
.x107_c00097{left:535.066667pt;}
.x109_c00097{left:536.400000pt;}
.xe9_c00097{left:537.466667pt;}
.xe3_c00097{left:539.066667pt;}
.xb4_c00097{left:540.800000pt;}
.xa4_c00097{left:541.733333pt;}
.x10c_c00097{left:543.866667pt;}
.xf8_c00097{left:544.933333pt;}
.xd2_c00097{left:546.000000pt;}
.xde_c00097{left:547.866667pt;}
.xac_c00097{left:549.200000pt;}
.xd8_c00097{left:550.800000pt;}
.xf3_c00097{left:551.733333pt;}
.xfe_c00097{left:553.866667pt;}
.x10d_c00097{left:555.066667pt;}
.x139_c00097{left:556.533333pt;}
.x108_c00097{left:557.466667pt;}
.x9c_c00097{left:558.400000pt;}
.x122_c00097{left:559.600000pt;}
.x138_c00097{left:560.800000pt;}
.xc2_c00097{left:561.733333pt;}
.xcc_c00097{left:565.200000pt;}
.xbd_c00097{left:566.533333pt;}
.x130_c00097{left:567.466667pt;}
.xb2_c00097{left:569.733333pt;}
.x9d_c00097{left:571.200000pt;}
.xc8_c00097{left:572.133333pt;}
.xec_c00097{left:574.133333pt;}
.x10a_c00097{left:575.733333pt;}
.xe4_c00097{left:576.800000pt;}
.xad_c00097{left:578.266667pt;}
.xd3_c00097{left:579.600000pt;}
.xc9_c00097{left:582.666667pt;}
.xb5_c00097{left:584.000000pt;}
.x13b_c00097{left:586.000000pt;}
.xed_c00097{left:588.266667pt;}
.x10e_c00097{left:589.333333pt;}
.x136_c00097{left:590.666667pt;}
.xdf_c00097{left:592.666667pt;}
.x102_c00097{left:594.000000pt;}
.x9e_c00097{left:594.933333pt;}
.xf9_c00097{left:595.866667pt;}
.xbe_c00097{left:598.266667pt;}
.x131_c00097{left:599.466667pt;}
.xcd_c00097{left:600.666667pt;}
.xca_c00097{left:601.600000pt;}
.x11e_c00097{left:603.200000pt;}
.x133_c00097{left:604.800000pt;}
.xa5_c00097{left:605.733333pt;}
.xfb_c00097{left:607.066667pt;}
.x116_c00097{left:608.800000pt;}
.x115_c00097{left:609.733333pt;}
.xce_c00097{left:610.933333pt;}
.x12d_c00097{left:612.533333pt;}
.xd4_c00097{left:613.866667pt;}
.x119_c00097{left:615.200000pt;}
.x11f_c00097{left:616.266667pt;}
.xbf_c00097{left:617.466667pt;}
.x103_c00097{left:619.866667pt;}
.xee_c00097{left:622.133333pt;}
.xb6_c00097{left:625.600000pt;}
.x11b_c00097{left:628.133333pt;}
.xcf_c00097{left:629.200000pt;}
.x10f_c00097{left:630.933333pt;}
.x13a_c00097{left:632.666667pt;}
.xa6_c00097{left:633.600000pt;}
.x9f_c00097{left:635.600000pt;}
.xc3_c00097{left:637.200000pt;}
.x110_c00097{left:638.266667pt;}
.x117_c00097{left:644.000000pt;}
.xcb_c00097{left:645.466667pt;}
.xef_c00097{left:647.466667pt;}
.xc0_c00097{left:648.800000pt;}
.x123_c00097{left:652.000000pt;}
.x129_c00097{left:652.933333pt;}
.xb7_c00097{left:654.666667pt;}
.xae_c00097{left:655.733333pt;}
.xff_c00097{left:656.666667pt;}
.xe5_c00097{left:658.400000pt;}
.xf4_c00097{left:659.866667pt;}
.xa7_c00097{left:662.133333pt;}
.xe0_c00097{left:663.066667pt;}
.x12e_c00097{left:664.133333pt;}
.xf0_c00097{left:665.333333pt;}
.x11c_c00097{left:666.666667pt;}
.xb8_c00097{left:667.733333pt;}
.x12a_c00097{left:668.666667pt;}
.xd9_c00097{left:670.666667pt;}
.xf5_c00097{left:671.733333pt;}
.x11a_c00097{left:673.466667pt;}
.xc4_c00097{left:675.866667pt;}
.xe6_c00097{left:677.600000pt;}
.xd5_c00097{left:679.200000pt;}
.xe1_c00097{left:682.000000pt;}
.x134_c00097{left:684.800000pt;}
.xd0_c00097{left:686.133333pt;}
.xda_c00097{left:687.333333pt;}
.x100_c00097{left:688.666667pt;}
.x12b_c00097{left:690.133333pt;}
.xd1_c00097{left:693.866667pt;}
.xa8_c00097{left:696.000000pt;}
.xc5_c00097{left:697.333333pt;}
.x127_c00097{left:699.200000pt;}
.xaf_c00097{left:700.266667pt;}
.xdb_c00097{left:701.733333pt;}
.xe7_c00097{left:703.200000pt;}
.xa0_c00097{left:704.666667pt;}
.x101_c00097{left:706.000000pt;}
.xb9_c00097{left:707.066667pt;}
.xf1_c00097{left:708.533333pt;}
.x124_c00097{left:712.533333pt;}
.x111_c00097{left:713.466667pt;}
.xf2_c00097{left:717.466667pt;}
.x12f_c00097{left:719.200000pt;}
.xfc_c00097{left:720.933333pt;}
.x137_c00097{left:722.800000pt;}
.xa9_c00097{left:724.533333pt;}
.xb0_c00097{left:726.800000pt;}
.x13c_c00097{left:730.800000pt;}
.x104_c00097{left:732.133333pt;}
.xa1_c00097{left:733.466667pt;}
.x135_c00097{left:735.333333pt;}
.x125_c00097{left:737.866667pt;}
.x128_c00097{left:738.933333pt;}
.xba_c00097{left:740.000000pt;}
.xfa_c00097{left:741.066667pt;}
.xdc_c00097{left:743.066667pt;}
.x11d_c00097{left:746.266667pt;}
.x118_c00097{left:747.333333pt;}
.x12c_c00097{left:748.400000pt;}
.xfd_c00097{left:750.666667pt;}
.xd6_c00097{left:752.800000pt;}
.xa2_c00097{left:754.000000pt;}
.xaa_c00097{left:758.133333pt;}
.x120_c00097{left:761.200000pt;}
.xb1_c00097{left:762.933333pt;}
.xbb_c00097{left:765.600000pt;}
.xf6_c00097{left:769.600000pt;}
.x112_c00097{left:771.066667pt;}
}





/* 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_c00098 {
    display:none;
  }
  .loading-indicator_c00098.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00098 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_c00098 { 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_c00098" -> "#page-container .classname_c00098")
 */
.pf_c00098 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00098 { /* 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_c00098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00098 { /* 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_c00098 { /* 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_c00098 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00098 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00098 {overflow:visible;}
  }
}
.c_c00098 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00098 { /* 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_c00098:after { /* webkit #35443 */
  content: '';
}
.t_c00098:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00098 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 */
}
.__c00098 { /* 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_c00098 { /* info for Javascript */
  display:none;
}
.l_c00098 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00098 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00098 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00098: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_c00098 {
    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_c00098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00098.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_c00098 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00098;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.000000;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;}
.mc2_c00098{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m107_c00098{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00098{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m12_c00098{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m108_c00098{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m105_c00098{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m99_c00098{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00098{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m58_c00098{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00098{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5_c00098{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00098{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00098{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00098{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m77_c00098{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m93_c00098{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00098{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m57_c00098{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00098{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m40_c00098{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00098{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00098{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00098{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00098{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00098{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.md8_c00098{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00098{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m41_c00098{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00098{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00098{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00098{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00098{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m52_c00098{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m95_c00098{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m103_c00098{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.maa_c00098{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mea_c00098{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00098{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.meb_c00098{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m30_c00098{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m69_c00098{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00098{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00098{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00098{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m25_c00098{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m53_c00098{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m68_c00098{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m60_c00098{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00098{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00098{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00098{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00098{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mba_c00098{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6_c00098{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md6_c00098{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m91_c00098{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00098{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00098{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00098{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m46_c00098{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m113_c00098{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m55_c00098{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00098{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00098{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00098{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m102_c00098{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.md5_c00098{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00098{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m72_c00098{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m43_c00098{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00098{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00098{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m20_c00098{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m21_c00098{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00098{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mec_c00098{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m92_c00098{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m48_c00098{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m42_c00098{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m44_c00098{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00098{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m45_c00098{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00098{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00098{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00098{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me7_c00098{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m16_c00098{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00098{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00098{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00098{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00098{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m61_c00098{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7_c00098{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00098{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m13_c00098{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00098{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00098{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00098{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m49_c00098{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m98_c00098{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00098{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m65_c00098{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00098{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m56_c00098{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m62_c00098{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m32_c00098{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00098{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00098{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m19_c00098{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.med_c00098{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m76_c00098{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8_c00098{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m79_c00098{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00098{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00098{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00098{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00098{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m74_c00098{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me_c00098{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00098{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m63_c00098{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00098{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00098{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00098{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00098{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00098{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00098{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00098{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mce_c00098{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m90_c00098{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m64_c00098{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00098{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m89_c00098{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00098{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00098{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma_c00098{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md0_c00098{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00098{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m85_c00098{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00098{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m11_c00098{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me6_c00098{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m26_c00098{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m75_c00098{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00098{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m100_c00098{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m27_c00098{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m70_c00098{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00098{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m47_c00098{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.maf_c00098{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m111_c00098{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00098{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m66_c00098{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00098{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m110_c00098{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.me0_c00098{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb_c00098{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m29_c00098{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m71_c00098{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m109_c00098{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m15_c00098{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m22_c00098{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mca_c00098{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m28_c00098{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m54_c00098{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00098{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00098{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00098{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00098{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m84_c00098{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00098{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00098{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00098{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00098{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m24_c00098{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00098{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m35_c00098{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00098{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m73_c00098{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m78_c00098{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9_c00098{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m33_c00098{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00098{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m50_c00098{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mef_c00098{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md2_c00098{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mad_c00098{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00098{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00098{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00098{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mf_c00098{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me2_c00098{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m3_c00098{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m51_c00098{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me4_c00098{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mee_c00098{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m31_c00098{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00098{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mda_c00098{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00098{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m36_c00098{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m14_c00098{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00098{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00098{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00098{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00098{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m34_c00098{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00098{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00098{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m18_c00098{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00098{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00098{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00098{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m10_c00098{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m37_c00098{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m101_c00098{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00098{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00098{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m87_c00098{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00098{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m82_c00098{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00098{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m39_c00098{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me1_c00098{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00098{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me9_c00098{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md9_c00098{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1_c00098{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m80_c00098{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me5_c00098{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);}
.m97_c00098{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00098{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00098{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mff_c00098{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00098{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m106_c00098{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00098{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md4_c00098{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00098{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00098{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m94_c00098{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00098{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md3_c00098{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00098{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me8_c00098{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mc_c00098{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m112_c00098{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00098{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00098{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00098{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00098{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00098{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md7_c00098{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00098{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me3_c00098{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mac_c00098{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mae_c00098{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m67_c00098{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00098{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m104_c00098{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m83_c00098{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.md1_c00098{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m23_c00098{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m38_c00098{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m114_c00098{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m59_c00098{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.md_c00098{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m88_c00098{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.mab_c00098{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m81_c00098{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m86_c00098{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m96_c00098{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{transform:matrix(0.460500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460500,0.000000,0.000000,0.250000,0,0);}
.mde_c00098{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls0_c00098{letter-spacing:0.000000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{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__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00098{word-spacing:-12.000000px;}
.ws8_c00098{word-spacing:-6.564792px;}
.ws3_c00098{word-spacing:-0.841270px;}
.ws9_c00098{word-spacing:0.000000px;}
.ws1_c00098{word-spacing:0.412214px;}
.ws5_c00098{word-spacing:1.730458px;}
.ws6_c00098{word-spacing:5.274559px;}
.ws0_c00098{word-spacing:7.645161px;}
.ws7_c00098{word-spacing:25.714286px;}
.ws4_c00098{word-spacing:127.875000px;}
._0_c00098{width:47.152672px;}
.fc0_c00098{color:transparent;}
.fs5_c00098{font-size:48.000000px;}
.fs6_c00098{font-size:54.000000px;}
.fs3_c00098{font-size:60.000000px;}
.fs2_c00098{font-size:66.000000px;}
.fs4_c00098{font-size:72.000000px;}
.fs1_c00098{font-size:78.000000px;}
.fs0_c00098{font-size:84.000000px;}
.y0_c00098{bottom:0.000000px;}
.y67_c00098{bottom:182.550000px;}
.y34_c00098{bottom:196.500000px;}
.y66_c00098{bottom:201.000000px;}
.y33_c00098{bottom:215.250000px;}
.y65_c00098{bottom:219.000000px;}
.y32_c00098{bottom:232.800000px;}
.y64_c00098{bottom:237.300000px;}
.y31_c00098{bottom:251.100000px;}
.y63_c00098{bottom:255.000000px;}
.y30_c00098{bottom:269.100000px;}
.y62_c00098{bottom:276.900000px;}
.y61_c00098{bottom:285.900000px;}
.y2f_c00098{bottom:287.100000px;}
.y60_c00098{bottom:292.350000px;}
.y2e_c00098{bottom:304.800000px;}
.y5f_c00098{bottom:313.500000px;}
.y2d_c00098{bottom:322.500000px;}
.y5e_c00098{bottom:332.550000px;}
.y2c_c00098{bottom:342.750000px;}
.y5d_c00098{bottom:350.250000px;}
.y2b_c00098{bottom:359.250000px;}
.y5c_c00098{bottom:371.550000px;}
.y2a_c00098{bottom:371.850000px;}
.y29_c00098{bottom:388.500000px;}
.y5b_c00098{bottom:390.900000px;}
.y28_c00098{bottom:408.600000px;}
.y27_c00098{bottom:426.600000px;}
.y26_c00098{bottom:444.600000px;}
.y5a_c00098{bottom:448.950000px;}
.y25_c00098{bottom:462.600000px;}
.y59_c00098{bottom:469.800000px;}
.y24_c00098{bottom:484.950000px;}
.y58_c00098{bottom:492.150000px;}
.y23_c00098{bottom:503.250000px;}
.y57_c00098{bottom:516.000000px;}
.y22_c00098{bottom:525.300000px;}
.y56_c00098{bottom:534.300000px;}
.y21_c00098{bottom:549.750000px;}
.y55_c00098{bottom:552.600000px;}
.y20_c00098{bottom:571.650000px;}
.y54_c00098{bottom:572.700000px;}
.y53_c00098{bottom:592.800000px;}
.y1f_c00098{bottom:594.300000px;}
.y52_c00098{bottom:610.500000px;}
.y1e_c00098{bottom:614.100000px;}
.y51_c00098{bottom:628.500000px;}
.y1d_c00098{bottom:634.650000px;}
.y50_c00098{bottom:646.500000px;}
.y1c_c00098{bottom:654.450000px;}
.y4f_c00098{bottom:664.500000px;}
.y1b_c00098{bottom:672.450000px;}
.y4e_c00098{bottom:682.200000px;}
.y1a_c00098{bottom:690.450000px;}
.y4d_c00098{bottom:700.200000px;}
.y19_c00098{bottom:708.150000px;}
.y4c_c00098{bottom:718.200000px;}
.y18_c00098{bottom:726.150000px;}
.y4b_c00098{bottom:736.200000px;}
.y17_c00098{bottom:744.450000px;}
.y4a_c00098{bottom:754.500000px;}
.y16_c00098{bottom:762.150000px;}
.y49_c00098{bottom:772.200000px;}
.y15_c00098{bottom:782.250000px;}
.y48_c00098{bottom:790.200000px;}
.y14_c00098{bottom:802.350000px;}
.y47_c00098{bottom:807.900000px;}
.y13_c00098{bottom:821.100000px;}
.y46_c00098{bottom:827.550000px;}
.y12_c00098{bottom:839.100000px;}
.y45_c00098{bottom:843.450000px;}
.y11_c00098{bottom:859.650000px;}
.y44_c00098{bottom:863.250000px;}
.y10_c00098{bottom:879.450000px;}
.y43_c00098{bottom:881.250000px;}
.yf_c00098{bottom:897.450000px;}
.y42_c00098{bottom:903.450000px;}
.ye_c00098{bottom:915.150000px;}
.y41_c00098{bottom:922.200000px;}
.yd_c00098{bottom:937.050000px;}
.y40_c00098{bottom:939.900000px;}
.y3f_c00098{bottom:961.500000px;}
.yc_c00098{bottom:963.750000px;}
.y3e_c00098{bottom:982.350000px;}
.yb_c00098{bottom:985.650000px;}
.y3d_c00098{bottom:1004.700000px;}
.ya_c00098{bottom:1008.750000px;}
.y35_c00098{bottom:1024.200000px;}
.y9_c00098{bottom:1026.750000px;}
.y3c_c00098{bottom:1029.300000px;}
.y8_c00098{bottom:1044.750000px;}
.y3b_c00098{bottom:1047.300000px;}
.y7_c00098{bottom:1062.450000px;}
.y3a_c00098{bottom:1064.850000px;}
.y6_c00098{bottom:1080.750000px;}
.y39_c00098{bottom:1083.150000px;}
.y5_c00098{bottom:1098.750000px;}
.y38_c00098{bottom:1100.850000px;}
.y4_c00098{bottom:1116.750000px;}
.y37_c00098{bottom:1118.550000px;}
.y3_c00098{bottom:1134.750000px;}
.y36_c00098{bottom:1136.850000px;}
.y1_c00098{bottom:1163.100000px;}
.y2_c00098{bottom:1164.150000px;}
.h6_c00098{height:48.000000px;}
.h7_c00098{height:54.000000px;}
.h4_c00098{height:60.000000px;}
.h3_c00098{height:66.000000px;}
.h5_c00098{height:72.000000px;}
.h2_c00098{height:78.000000px;}
.h1_c00098{height:84.000000px;}
.h0_c00098{height:1278.000000px;}
.w1_c00098{width:953.250000px;}
.w0_c00098{width:953.280030px;}
.x0_c00098{left:0.000000px;}
.x3a_c00098{left:80.250000px;}
.x52_c00098{left:81.300000px;}
.x5c_c00098{left:82.800000px;}
.x78_c00098{left:84.900000px;}
.x7a_c00098{left:86.100000px;}
.x96_c00098{left:88.500000px;}
.x9a_c00098{left:89.700000px;}
.xa_c00098{left:97.950000px;}
.x27_c00098{left:99.750000px;}
.x45_c00098{left:100.800000px;}
.x58_c00098{left:102.000000px;}
.x65_c00098{left:103.500000px;}
.x4e_c00098{left:104.700000px;}
.x77_c00098{left:107.400000px;}
.x87_c00098{left:108.900000px;}
.x93_c00098{left:111.000000px;}
.x9d_c00098{left:113.550000px;}
.xa6_c00098{left:114.600000px;}
.x3_c00098{left:116.250000px;}
.x28_c00098{left:118.800000px;}
.x3c_c00098{left:121.050000px;}
.x7b_c00098{left:123.900000px;}
.x73_c00098{left:126.750000px;}
.x80_c00098{left:128.850000px;}
.x71_c00098{left:130.500000px;}
.x4f_c00098{left:131.850000px;}
.x12_c00098{left:134.100000px;}
.x69_c00098{left:138.150000px;}
.x50_c00098{left:139.800000px;}
.x46_c00098{left:141.450000px;}
.x91_c00098{left:142.500000px;}
.x5d_c00098{left:144.750000px;}
.x29_c00098{left:145.800000px;}
.x63_c00098{left:147.150000px;}
.x35_c00098{left:149.100000px;}
.x1c_c00098{left:150.300000px;}
.x3b_c00098{left:153.450000px;}
.x13_c00098{left:155.400000px;}
.x3d_c00098{left:157.350000px;}
.x66_c00098{left:158.550000px;}
.x9e_c00098{left:159.600000px;}
.x21_c00098{left:160.650000px;}
.x79_c00098{left:161.850000px;}
.x51_c00098{left:163.200000px;}
.x4_c00098{left:165.150000px;}
.x5e_c00098{left:167.100000px;}
.x3e_c00098{left:168.900000px;}
.xa9_c00098{left:169.950000px;}
.x47_c00098{left:171.000000px;}
.x72_c00098{left:174.750000px;}
.x61_c00098{left:176.100000px;}
.x7c_c00098{left:177.600000px;}
.x2a_c00098{left:179.250000px;}
.x5b_c00098{left:180.900000px;}
.x5f_c00098{left:182.250000px;}
.xb_c00098{left:184.650000px;}
.xa1_c00098{left:185.700000px;}
.x3f_c00098{left:187.800000px;}
.x8c_c00098{left:189.600000px;}
.x49_c00098{left:191.550000px;}
.x74_c00098{left:193.800000px;}
.x14_c00098{left:196.800000px;}
.x32_c00098{left:201.000000px;}
.x84_c00098{left:202.200000px;}
.xc_c00098{left:203.400000px;}
.x5_c00098{left:206.550000px;}
.x2b_c00098{left:209.100000px;}
.x40_c00098{left:211.200000px;}
.xa0_c00098{left:212.400000px;}
.x22_c00098{left:214.650000px;}
.x60_c00098{left:216.750000px;}
.x6a_c00098{left:218.400000px;}
.xa2_c00098{left:219.600000px;}
.x36_c00098{left:221.400000px;}
.x9b_c00098{left:222.900000px;}
.x41_c00098{left:228.150000px;}
.x2c_c00098{left:230.400000px;}
.x67_c00098{left:232.050000px;}
.x98_c00098{left:233.400000px;}
.x1d_c00098{left:236.700000px;}
.x64_c00098{left:238.200000px;}
.x37_c00098{left:239.400000px;}
.x2d_c00098{left:241.950000px;}
.x15_c00098{left:245.400000px;}
.x85_c00098{left:246.900000px;}
.x6f_c00098{left:248.550000px;}
.x53_c00098{left:250.050000px;}
.x1e_c00098{left:251.400000px;}
.x59_c00098{left:252.450000px;}
.x42_c00098{left:253.650000px;}
.x4a_c00098{left:255.900000px;}
.x23_c00098{left:257.850000px;}
.x33_c00098{left:259.350000px;}
.x9c_c00098{left:260.400000px;}
.x2e_c00098{left:261.450000px;}
.x16_c00098{left:265.950000px;}
.x88_c00098{left:267.450000px;}
.x8d_c00098{left:269.850000px;}
.xd_c00098{left:272.550000px;}
.x6b_c00098{left:273.900000px;}
.x62_c00098{left:275.850000px;}
.x6d_c00098{left:277.950000px;}
.x24_c00098{left:279.750000px;}
.x54_c00098{left:280.950000px;}
.x6_c00098{left:282.900000px;}
.x43_c00098{left:283.950000px;}
.x81_c00098{left:286.500000px;}
.xaa_c00098{left:289.200000px;}
.xe_c00098{left:290.250000px;}
.x7_c00098{left:292.650000px;}
.x38_c00098{left:294.450000px;}
.x7d_c00098{left:296.400000px;}
.x4b_c00098{left:301.650000px;}
.x89_c00098{left:303.750000px;}
.x7e_c00098{left:305.700000px;}
.x92_c00098{left:307.950000px;}
.x17_c00098{left:309.150000px;}
.x8e_c00098{left:312.750000px;}
.x18_c00098{left:316.350000px;}
.x99_c00098{left:319.800000px;}
.x2f_c00098{left:320.850000px;}
.x8a_c00098{left:323.850000px;}
.x1_c00098{left:325.050000px;}
.x25_c00098{left:326.550000px;}
.x82_c00098{left:327.600000px;}
.x55_c00098{left:329.550000px;}
.x4c_c00098{left:331.200000px;}
.xab_c00098{left:333.450000px;}
.x19_c00098{left:335.400000px;}
.x75_c00098{left:338.550000px;}
.x34_c00098{left:339.600000px;}
.x30_c00098{left:341.400000px;}
.x7f_c00098{left:343.500000px;}
.x1f_c00098{left:346.050000px;}
.x8_c00098{left:347.700000px;}
.x8b_c00098{left:349.800000px;}
.xf_c00098{left:351.150000px;}
.x94_c00098{left:353.100000px;}
.x39_c00098{left:354.600000px;}
.x6e_c00098{left:357.300000px;}
.x9f_c00098{left:359.250000px;}
.x8f_c00098{left:362.400000px;}
.x26_c00098{left:365.400000px;}
.x5a_c00098{left:368.400000px;}
.x56_c00098{left:370.650000px;}
.x10_c00098{left:372.000000px;}
.x1a_c00098{left:373.950000px;}
.x76_c00098{left:375.300000px;}
.xa3_c00098{left:376.950000px;}
.x31_c00098{left:379.500000px;}
.xa7_c00098{left:380.550000px;}
.x48_c00098{left:383.700000px;}
.x1b_c00098{left:386.550000px;}
.x68_c00098{left:389.400000px;}
.x83_c00098{left:390.600000px;}
.x44_c00098{left:391.650000px;}
.x70_c00098{left:392.850000px;}
.x90_c00098{left:394.050000px;}
.x4d_c00098{left:396.300000px;}
.xac_c00098{left:398.250000px;}
.xa4_c00098{left:400.350000px;}
.x20_c00098{left:402.900000px;}
.x9_c00098{left:404.250000px;}
.xa5_c00098{left:406.200000px;}
.x86_c00098{left:411.150000px;}
.x11_c00098{left:413.100000px;}
.x57_c00098{left:414.150000px;}
.xa8_c00098{left:415.500000px;}
.x95_c00098{left:417.900000px;}
.x97_c00098{left:420.000000px;}
.x6c_c00098{left:423.300000px;}
.xad_c00098{left:426.900000px;}
.xda_c00098{left:442.500000px;}
.xdc_c00098{left:443.550000px;}
.xf5_c00098{left:444.600000px;}
.x100_c00098{left:445.650000px;}
.x135_c00098{left:450.750000px;}
.x136_c00098{left:452.400000px;}
.x146_c00098{left:454.650000px;}
.x151_c00098{left:456.150000px;}
.xae_c00098{left:457.950000px;}
.xc9_c00098{left:459.150000px;}
.xe4_c00098{left:461.250000px;}
.x105_c00098{left:464.250000px;}
.x121_c00098{left:466.050000px;}
.x129_c00098{left:467.100000px;}
.x130_c00098{left:468.150000px;}
.x13e_c00098{left:471.000000px;}
.x144_c00098{left:472.350000px;}
.x155_c00098{left:475.650000px;}
.xdd_c00098{left:477.000000px;}
.xaf_c00098{left:480.300000px;}
.x137_c00098{left:483.750000px;}
.x12d_c00098{left:486.000000px;}
.xef_c00098{left:487.350000px;}
.xfe_c00098{left:488.550000px;}
.xbf_c00098{left:490.800000px;}
.x10f_c00098{left:492.300000px;}
.x10a_c00098{left:493.350000px;}
.xf0_c00098{left:497.100000px;}
.x122_c00098{left:498.750000px;}
.xc4_c00098{left:502.050000px;}
.x125_c00098{left:503.250000px;}
.xfc_c00098{left:505.050000px;}
.x114_c00098{left:506.100000px;}
.xe5_c00098{left:508.350000px;}
.xb0_c00098{left:510.600000px;}
.xdb_c00098{left:512.700000px;}
.x119_c00098{left:515.400000px;}
.x14f_c00098{left:516.900000px;}
.xff_c00098{left:520.650000px;}
.x142_c00098{left:522.450000px;}
.xd5_c00098{left:524.700000px;}
.xf9_c00098{left:526.500000px;}
.x110_c00098{left:528.600000px;}
.xb8_c00098{left:529.650000px;}
.xc5_c00098{left:530.850000px;}
.xca_c00098{left:533.700000px;}
.x139_c00098{left:536.400000px;}
.x14e_c00098{left:537.450000px;}
.x10d_c00098{left:539.250000px;}
.x11a_c00098{left:540.600000px;}
.xc0_c00098{left:542.700000px;}
.x12a_c00098{left:543.750000px;}
.xb1_c00098{left:544.800000px;}
.x126_c00098{left:546.450000px;}
.xe6_c00098{left:548.250000px;}
.x11f_c00098{left:549.300000px;}
.x123_c00098{left:551.250000px;}
.xb9_c00098{left:554.850000px;}
.x14b_c00098{left:557.700000px;}
.x131_c00098{left:559.950000px;}
.xf6_c00098{left:561.600000px;}
.x10b_c00098{left:563.100000px;}
.xcb_c00098{left:565.800000px;}
.xfa_c00098{left:567.600000px;}
.x106_c00098{left:569.250000px;}
.x101_c00098{left:571.950000px;}
.x145_c00098{left:573.300000px;}
.xb2_c00098{left:574.650000px;}
.xfb_c00098{left:577.650000px;}
.x157_c00098{left:580.050000px;}
.xe7_c00098{left:581.400000px;}
.xc6_c00098{left:583.350000px;}
.x132_c00098{left:586.950000px;}
.xd6_c00098{left:588.900000px;}
.x115_c00098{left:589.950000px;}
.x111_c00098{left:591.300000px;}
.x152_c00098{left:592.650000px;}
.x13a_c00098{left:594.000000px;}
.x133_c00098{left:595.950000px;}
.xde_c00098{left:598.050000px;}
.x156_c00098{left:599.550000px;}
.x11b_c00098{left:600.750000px;}
.x120_c00098{left:601.800000px;}
.xd0_c00098{left:605.100000px;}
.xc7_c00098{left:607.500000px;}
.x10e_c00098{left:608.700000px;}
.xd7_c00098{left:610.800000px;}
.xba_c00098{left:613.200000px;}
.xb3_c00098{left:615.300000px;}
.x13f_c00098{left:616.800000px;}
.x12b_c00098{left:618.900000px;}
.x102_c00098{left:620.250000px;}
.xf1_c00098{left:623.850000px;}
.xe8_c00098{left:627.450000px;}
.xc1_c00098{left:630.150000px;}
.x127_c00098{left:631.350000px;}
.x116_c00098{left:633.150000px;}
.x147_c00098{left:634.200000px;}
.xe1_c00098{left:636.750000px;}
.xb4_c00098{left:638.700000px;}
.x148_c00098{left:641.400000px;}
.x11c_c00098{left:642.450000px;}
.x14c_c00098{left:645.300000px;}
.xbb_c00098{left:647.700000px;}
.xd8_c00098{left:648.900000px;}
.x103_c00098{left:651.150000px;}
.x117_c00098{left:653.250000px;}
.x12e_c00098{left:654.300000px;}
.xe9_c00098{left:655.500000px;}
.xcc_c00098{left:656.550000px;}
.x150_c00098{left:658.050000px;}
.x158_c00098{left:659.550000px;}
.xdf_c00098{left:662.100000px;}
.x12c_c00098{left:663.900000px;}
.xd1_c00098{left:666.900000px;}
.x13b_c00098{left:668.850000px;}
.xbc_c00098{left:671.100000px;}
.x149_c00098{left:672.750000px;}
.xe2_c00098{left:675.300000px;}
.xf2_c00098{left:678.900000px;}
.x10c_c00098{left:680.400000px;}
.xd2_c00098{left:683.100000px;}
.x153_c00098{left:684.150000px;}
.x104_c00098{left:687.450000px;}
.xfd_c00098{left:689.400000px;}
.x11d_c00098{left:690.750000px;}
.x118_c00098{left:691.800000px;}
.xcd_c00098{left:692.850000px;}
.xea_c00098{left:695.100000px;}
.xf7_c00098{left:696.600000px;}
.xe0_c00098{left:698.100000px;}
.x107_c00098{left:699.900000px;}
.x134_c00098{left:701.850000px;}
.xb5_c00098{left:703.500000px;}
.x15a_c00098{left:704.850000px;}
.xbd_c00098{left:706.350000px;}
.x112_c00098{left:708.300000px;}
.xf3_c00098{left:711.600000px;}
.x143_c00098{left:713.700000px;}
.xc2_c00098{left:714.750000px;}
.x154_c00098{left:717.300000px;}
.xeb_c00098{left:719.250000px;}
.xce_c00098{left:721.350000px;}
.xb6_c00098{left:722.550000px;}
.x13c_c00098{left:724.350000px;}
.xd3_c00098{left:726.300000px;}
.x140_c00098{left:729.150000px;}
.x138_c00098{left:730.350000px;}
.xe3_c00098{left:731.850000px;}
.xd9_c00098{left:733.200000px;}
.xf4_c00098{left:735.300000px;}
.xd4_c00098{left:737.850000px;}
.x11e_c00098{left:739.350000px;}
.xbe_c00098{left:741.300000px;}
.xcf_c00098{left:743.250000px;}
.xb7_c00098{left:745.650000px;}
.x108_c00098{left:748.200000px;}
.x141_c00098{left:749.250000px;}
.xf8_c00098{left:750.300000px;}
.xec_c00098{left:753.450000px;}
.x128_c00098{left:757.200000px;}
.x12f_c00098{left:759.750000px;}
.x2_c00098{left:760.950000px;}
.xed_c00098{left:762.450000px;}
.xc3_c00098{left:764.850000px;}
.x113_c00098{left:765.900000px;}
.x159_c00098{left:767.100000px;}
.xee_c00098{left:770.700000px;}
.x109_c00098{left:772.350000px;}
.xc8_c00098{left:775.950000px;}
.x14d_c00098{left:777.300000px;}
.x124_c00098{left:780.000000px;}
.x13d_c00098{left:784.500000px;}
.x14a_c00098{left:785.850000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws2_c00098{word-spacing:-10.666667pt;}
.ws8_c00098{word-spacing:-5.835371pt;}
.ws3_c00098{word-spacing:-0.747795pt;}
.ws9_c00098{word-spacing:0.000000pt;}
.ws1_c00098{word-spacing:0.366412pt;}
.ws5_c00098{word-spacing:1.538185pt;}
.ws6_c00098{word-spacing:4.688497pt;}
.ws0_c00098{word-spacing:6.795699pt;}
.ws7_c00098{word-spacing:22.857143pt;}
.ws4_c00098{word-spacing:113.666667pt;}
._0_c00098{width:41.913486pt;}
.fs5_c00098{font-size:42.666667pt;}
.fs6_c00098{font-size:48.000000pt;}
.fs3_c00098{font-size:53.333333pt;}
.fs2_c00098{font-size:58.666667pt;}
.fs4_c00098{font-size:64.000000pt;}
.fs1_c00098{font-size:69.333333pt;}
.fs0_c00098{font-size:74.666667pt;}
.y0_c00098{bottom:0.000000pt;}
.y67_c00098{bottom:162.266667pt;}
.y34_c00098{bottom:174.666667pt;}
.y66_c00098{bottom:178.666667pt;}
.y33_c00098{bottom:191.333333pt;}
.y65_c00098{bottom:194.666667pt;}
.y32_c00098{bottom:206.933333pt;}
.y64_c00098{bottom:210.933333pt;}
.y31_c00098{bottom:223.200000pt;}
.y63_c00098{bottom:226.666667pt;}
.y30_c00098{bottom:239.200000pt;}
.y62_c00098{bottom:246.133333pt;}
.y61_c00098{bottom:254.133333pt;}
.y2f_c00098{bottom:255.200000pt;}
.y60_c00098{bottom:259.866667pt;}
.y2e_c00098{bottom:270.933333pt;}
.y5f_c00098{bottom:278.666667pt;}
.y2d_c00098{bottom:286.666667pt;}
.y5e_c00098{bottom:295.600000pt;}
.y2c_c00098{bottom:304.666667pt;}
.y5d_c00098{bottom:311.333333pt;}
.y2b_c00098{bottom:319.333333pt;}
.y5c_c00098{bottom:330.266667pt;}
.y2a_c00098{bottom:330.533333pt;}
.y29_c00098{bottom:345.333333pt;}
.y5b_c00098{bottom:347.466667pt;}
.y28_c00098{bottom:363.200000pt;}
.y27_c00098{bottom:379.200000pt;}
.y26_c00098{bottom:395.200000pt;}
.y5a_c00098{bottom:399.066667pt;}
.y25_c00098{bottom:411.200000pt;}
.y59_c00098{bottom:417.600000pt;}
.y24_c00098{bottom:431.066667pt;}
.y58_c00098{bottom:437.466667pt;}
.y23_c00098{bottom:447.333333pt;}
.y57_c00098{bottom:458.666667pt;}
.y22_c00098{bottom:466.933333pt;}
.y56_c00098{bottom:474.933333pt;}
.y21_c00098{bottom:488.666667pt;}
.y55_c00098{bottom:491.200000pt;}
.y20_c00098{bottom:508.133333pt;}
.y54_c00098{bottom:509.066667pt;}
.y53_c00098{bottom:526.933333pt;}
.y1f_c00098{bottom:528.266667pt;}
.y52_c00098{bottom:542.666667pt;}
.y1e_c00098{bottom:545.866667pt;}
.y51_c00098{bottom:558.666667pt;}
.y1d_c00098{bottom:564.133333pt;}
.y50_c00098{bottom:574.666667pt;}
.y1c_c00098{bottom:581.733333pt;}
.y4f_c00098{bottom:590.666667pt;}
.y1b_c00098{bottom:597.733333pt;}
.y4e_c00098{bottom:606.400000pt;}
.y1a_c00098{bottom:613.733333pt;}
.y4d_c00098{bottom:622.400000pt;}
.y19_c00098{bottom:629.466667pt;}
.y4c_c00098{bottom:638.400000pt;}
.y18_c00098{bottom:645.466667pt;}
.y4b_c00098{bottom:654.400000pt;}
.y17_c00098{bottom:661.733333pt;}
.y4a_c00098{bottom:670.666667pt;}
.y16_c00098{bottom:677.466667pt;}
.y49_c00098{bottom:686.400000pt;}
.y15_c00098{bottom:695.333333pt;}
.y48_c00098{bottom:702.400000pt;}
.y14_c00098{bottom:713.200000pt;}
.y47_c00098{bottom:718.133333pt;}
.y13_c00098{bottom:729.866667pt;}
.y46_c00098{bottom:735.600000pt;}
.y12_c00098{bottom:745.866667pt;}
.y45_c00098{bottom:749.733333pt;}
.y11_c00098{bottom:764.133333pt;}
.y44_c00098{bottom:767.333333pt;}
.y10_c00098{bottom:781.733333pt;}
.y43_c00098{bottom:783.333333pt;}
.yf_c00098{bottom:797.733333pt;}
.y42_c00098{bottom:803.066667pt;}
.ye_c00098{bottom:813.466667pt;}
.y41_c00098{bottom:819.733333pt;}
.yd_c00098{bottom:832.933333pt;}
.y40_c00098{bottom:835.466667pt;}
.y3f_c00098{bottom:854.666667pt;}
.yc_c00098{bottom:856.666667pt;}
.y3e_c00098{bottom:873.200000pt;}
.yb_c00098{bottom:876.133333pt;}
.y3d_c00098{bottom:893.066667pt;}
.ya_c00098{bottom:896.666667pt;}
.y35_c00098{bottom:910.400000pt;}
.y9_c00098{bottom:912.666667pt;}
.y3c_c00098{bottom:914.933333pt;}
.y8_c00098{bottom:928.666667pt;}
.y3b_c00098{bottom:930.933333pt;}
.y7_c00098{bottom:944.400000pt;}
.y3a_c00098{bottom:946.533333pt;}
.y6_c00098{bottom:960.666667pt;}
.y39_c00098{bottom:962.800000pt;}
.y5_c00098{bottom:976.666667pt;}
.y38_c00098{bottom:978.533333pt;}
.y4_c00098{bottom:992.666667pt;}
.y37_c00098{bottom:994.266667pt;}
.y3_c00098{bottom:1008.666667pt;}
.y36_c00098{bottom:1010.533333pt;}
.y1_c00098{bottom:1033.866667pt;}
.y2_c00098{bottom:1034.800000pt;}
.h6_c00098{height:42.666667pt;}
.h7_c00098{height:48.000000pt;}
.h4_c00098{height:53.333333pt;}
.h3_c00098{height:58.666667pt;}
.h5_c00098{height:64.000000pt;}
.h2_c00098{height:69.333333pt;}
.h1_c00098{height:74.666667pt;}
.h0_c00098{height:1136.000000pt;}
.w1_c00098{width:847.333333pt;}
.w0_c00098{width:847.360027pt;}
.x0_c00098{left:0.000000pt;}
.x3a_c00098{left:71.333333pt;}
.x52_c00098{left:72.266667pt;}
.x5c_c00098{left:73.600000pt;}
.x78_c00098{left:75.466667pt;}
.x7a_c00098{left:76.533333pt;}
.x96_c00098{left:78.666667pt;}
.x9a_c00098{left:79.733333pt;}
.xa_c00098{left:87.066667pt;}
.x27_c00098{left:88.666667pt;}
.x45_c00098{left:89.600000pt;}
.x58_c00098{left:90.666667pt;}
.x65_c00098{left:92.000000pt;}
.x4e_c00098{left:93.066667pt;}
.x77_c00098{left:95.466667pt;}
.x87_c00098{left:96.800000pt;}
.x93_c00098{left:98.666667pt;}
.x9d_c00098{left:100.933333pt;}
.xa6_c00098{left:101.866667pt;}
.x3_c00098{left:103.333333pt;}
.x28_c00098{left:105.600000pt;}
.x3c_c00098{left:107.600000pt;}
.x7b_c00098{left:110.133333pt;}
.x73_c00098{left:112.666667pt;}
.x80_c00098{left:114.533333pt;}
.x71_c00098{left:116.000000pt;}
.x4f_c00098{left:117.200000pt;}
.x12_c00098{left:119.200000pt;}
.x69_c00098{left:122.800000pt;}
.x50_c00098{left:124.266667pt;}
.x46_c00098{left:125.733333pt;}
.x91_c00098{left:126.666667pt;}
.x5d_c00098{left:128.666667pt;}
.x29_c00098{left:129.600000pt;}
.x63_c00098{left:130.800000pt;}
.x35_c00098{left:132.533333pt;}
.x1c_c00098{left:133.600000pt;}
.x3b_c00098{left:136.400000pt;}
.x13_c00098{left:138.133333pt;}
.x3d_c00098{left:139.866667pt;}
.x66_c00098{left:140.933333pt;}
.x9e_c00098{left:141.866667pt;}
.x21_c00098{left:142.800000pt;}
.x79_c00098{left:143.866667pt;}
.x51_c00098{left:145.066667pt;}
.x4_c00098{left:146.800000pt;}
.x5e_c00098{left:148.533333pt;}
.x3e_c00098{left:150.133333pt;}
.xa9_c00098{left:151.066667pt;}
.x47_c00098{left:152.000000pt;}
.x72_c00098{left:155.333333pt;}
.x61_c00098{left:156.533333pt;}
.x7c_c00098{left:157.866667pt;}
.x2a_c00098{left:159.333333pt;}
.x5b_c00098{left:160.800000pt;}
.x5f_c00098{left:162.000000pt;}
.xb_c00098{left:164.133333pt;}
.xa1_c00098{left:165.066667pt;}
.x3f_c00098{left:166.933333pt;}
.x8c_c00098{left:168.533333pt;}
.x49_c00098{left:170.266667pt;}
.x74_c00098{left:172.266667pt;}
.x14_c00098{left:174.933333pt;}
.x32_c00098{left:178.666667pt;}
.x84_c00098{left:179.733333pt;}
.xc_c00098{left:180.800000pt;}
.x5_c00098{left:183.600000pt;}
.x2b_c00098{left:185.866667pt;}
.x40_c00098{left:187.733333pt;}
.xa0_c00098{left:188.800000pt;}
.x22_c00098{left:190.800000pt;}
.x60_c00098{left:192.666667pt;}
.x6a_c00098{left:194.133333pt;}
.xa2_c00098{left:195.200000pt;}
.x36_c00098{left:196.800000pt;}
.x9b_c00098{left:198.133333pt;}
.x41_c00098{left:202.800000pt;}
.x2c_c00098{left:204.800000pt;}
.x67_c00098{left:206.266667pt;}
.x98_c00098{left:207.466667pt;}
.x1d_c00098{left:210.400000pt;}
.x64_c00098{left:211.733333pt;}
.x37_c00098{left:212.800000pt;}
.x2d_c00098{left:215.066667pt;}
.x15_c00098{left:218.133333pt;}
.x85_c00098{left:219.466667pt;}
.x6f_c00098{left:220.933333pt;}
.x53_c00098{left:222.266667pt;}
.x1e_c00098{left:223.466667pt;}
.x59_c00098{left:224.400000pt;}
.x42_c00098{left:225.466667pt;}
.x4a_c00098{left:227.466667pt;}
.x23_c00098{left:229.200000pt;}
.x33_c00098{left:230.533333pt;}
.x9c_c00098{left:231.466667pt;}
.x2e_c00098{left:232.400000pt;}
.x16_c00098{left:236.400000pt;}
.x88_c00098{left:237.733333pt;}
.x8d_c00098{left:239.866667pt;}
.xd_c00098{left:242.266667pt;}
.x6b_c00098{left:243.466667pt;}
.x62_c00098{left:245.200000pt;}
.x6d_c00098{left:247.066667pt;}
.x24_c00098{left:248.666667pt;}
.x54_c00098{left:249.733333pt;}
.x6_c00098{left:251.466667pt;}
.x43_c00098{left:252.400000pt;}
.x81_c00098{left:254.666667pt;}
.xaa_c00098{left:257.066667pt;}
.xe_c00098{left:258.000000pt;}
.x7_c00098{left:260.133333pt;}
.x38_c00098{left:261.733333pt;}
.x7d_c00098{left:263.466667pt;}
.x4b_c00098{left:268.133333pt;}
.x89_c00098{left:270.000000pt;}
.x7e_c00098{left:271.733333pt;}
.x92_c00098{left:273.733333pt;}
.x17_c00098{left:274.800000pt;}
.x8e_c00098{left:278.000000pt;}
.x18_c00098{left:281.200000pt;}
.x99_c00098{left:284.266667pt;}
.x2f_c00098{left:285.200000pt;}
.x8a_c00098{left:287.866667pt;}
.x1_c00098{left:288.933333pt;}
.x25_c00098{left:290.266667pt;}
.x82_c00098{left:291.200000pt;}
.x55_c00098{left:292.933333pt;}
.x4c_c00098{left:294.400000pt;}
.xab_c00098{left:296.400000pt;}
.x19_c00098{left:298.133333pt;}
.x75_c00098{left:300.933333pt;}
.x34_c00098{left:301.866667pt;}
.x30_c00098{left:303.466667pt;}
.x7f_c00098{left:305.333333pt;}
.x1f_c00098{left:307.600000pt;}
.x8_c00098{left:309.066667pt;}
.x8b_c00098{left:310.933333pt;}
.xf_c00098{left:312.133333pt;}
.x94_c00098{left:313.866667pt;}
.x39_c00098{left:315.200000pt;}
.x6e_c00098{left:317.600000pt;}
.x9f_c00098{left:319.333333pt;}
.x8f_c00098{left:322.133333pt;}
.x26_c00098{left:324.800000pt;}
.x5a_c00098{left:327.466667pt;}
.x56_c00098{left:329.466667pt;}
.x10_c00098{left:330.666667pt;}
.x1a_c00098{left:332.400000pt;}
.x76_c00098{left:333.600000pt;}
.xa3_c00098{left:335.066667pt;}
.x31_c00098{left:337.333333pt;}
.xa7_c00098{left:338.266667pt;}
.x48_c00098{left:341.066667pt;}
.x1b_c00098{left:343.600000pt;}
.x68_c00098{left:346.133333pt;}
.x83_c00098{left:347.200000pt;}
.x44_c00098{left:348.133333pt;}
.x70_c00098{left:349.200000pt;}
.x90_c00098{left:350.266667pt;}
.x4d_c00098{left:352.266667pt;}
.xac_c00098{left:354.000000pt;}
.xa4_c00098{left:355.866667pt;}
.x20_c00098{left:358.133333pt;}
.x9_c00098{left:359.333333pt;}
.xa5_c00098{left:361.066667pt;}
.x86_c00098{left:365.466667pt;}
.x11_c00098{left:367.200000pt;}
.x57_c00098{left:368.133333pt;}
.xa8_c00098{left:369.333333pt;}
.x95_c00098{left:371.466667pt;}
.x97_c00098{left:373.333333pt;}
.x6c_c00098{left:376.266667pt;}
.xad_c00098{left:379.466667pt;}
.xda_c00098{left:393.333333pt;}
.xdc_c00098{left:394.266667pt;}
.xf5_c00098{left:395.200000pt;}
.x100_c00098{left:396.133333pt;}
.x135_c00098{left:400.666667pt;}
.x136_c00098{left:402.133333pt;}
.x146_c00098{left:404.133333pt;}
.x151_c00098{left:405.466667pt;}
.xae_c00098{left:407.066667pt;}
.xc9_c00098{left:408.133333pt;}
.xe4_c00098{left:410.000000pt;}
.x105_c00098{left:412.666667pt;}
.x121_c00098{left:414.266667pt;}
.x129_c00098{left:415.200000pt;}
.x130_c00098{left:416.133333pt;}
.x13e_c00098{left:418.666667pt;}
.x144_c00098{left:419.866667pt;}
.x155_c00098{left:422.800000pt;}
.xdd_c00098{left:424.000000pt;}
.xaf_c00098{left:426.933333pt;}
.x137_c00098{left:430.000000pt;}
.x12d_c00098{left:432.000000pt;}
.xef_c00098{left:433.200000pt;}
.xfe_c00098{left:434.266667pt;}
.xbf_c00098{left:436.266667pt;}
.x10f_c00098{left:437.600000pt;}
.x10a_c00098{left:438.533333pt;}
.xf0_c00098{left:441.866667pt;}
.x122_c00098{left:443.333333pt;}
.xc4_c00098{left:446.266667pt;}
.x125_c00098{left:447.333333pt;}
.xfc_c00098{left:448.933333pt;}
.x114_c00098{left:449.866667pt;}
.xe5_c00098{left:451.866667pt;}
.xb0_c00098{left:453.866667pt;}
.xdb_c00098{left:455.733333pt;}
.x119_c00098{left:458.133333pt;}
.x14f_c00098{left:459.466667pt;}
.xff_c00098{left:462.800000pt;}
.x142_c00098{left:464.400000pt;}
.xd5_c00098{left:466.400000pt;}
.xf9_c00098{left:468.000000pt;}
.x110_c00098{left:469.866667pt;}
.xb8_c00098{left:470.800000pt;}
.xc5_c00098{left:471.866667pt;}
.xca_c00098{left:474.400000pt;}
.x139_c00098{left:476.800000pt;}
.x14e_c00098{left:477.733333pt;}
.x10d_c00098{left:479.333333pt;}
.x11a_c00098{left:480.533333pt;}
.xc0_c00098{left:482.400000pt;}
.x12a_c00098{left:483.333333pt;}
.xb1_c00098{left:484.266667pt;}
.x126_c00098{left:485.733333pt;}
.xe6_c00098{left:487.333333pt;}
.x11f_c00098{left:488.266667pt;}
.x123_c00098{left:490.000000pt;}
.xb9_c00098{left:493.200000pt;}
.x14b_c00098{left:495.733333pt;}
.x131_c00098{left:497.733333pt;}
.xf6_c00098{left:499.200000pt;}
.x10b_c00098{left:500.533333pt;}
.xcb_c00098{left:502.933333pt;}
.xfa_c00098{left:504.533333pt;}
.x106_c00098{left:506.000000pt;}
.x101_c00098{left:508.400000pt;}
.x145_c00098{left:509.600000pt;}
.xb2_c00098{left:510.800000pt;}
.xfb_c00098{left:513.466667pt;}
.x157_c00098{left:515.600000pt;}
.xe7_c00098{left:516.800000pt;}
.xc6_c00098{left:518.533333pt;}
.x132_c00098{left:521.733333pt;}
.xd6_c00098{left:523.466667pt;}
.x115_c00098{left:524.400000pt;}
.x111_c00098{left:525.600000pt;}
.x152_c00098{left:526.800000pt;}
.x13a_c00098{left:528.000000pt;}
.x133_c00098{left:529.733333pt;}
.xde_c00098{left:531.600000pt;}
.x156_c00098{left:532.933333pt;}
.x11b_c00098{left:534.000000pt;}
.x120_c00098{left:534.933333pt;}
.xd0_c00098{left:537.866667pt;}
.xc7_c00098{left:540.000000pt;}
.x10e_c00098{left:541.066667pt;}
.xd7_c00098{left:542.933333pt;}
.xba_c00098{left:545.066667pt;}
.xb3_c00098{left:546.933333pt;}
.x13f_c00098{left:548.266667pt;}
.x12b_c00098{left:550.133333pt;}
.x102_c00098{left:551.333333pt;}
.xf1_c00098{left:554.533333pt;}
.xe8_c00098{left:557.733333pt;}
.xc1_c00098{left:560.133333pt;}
.x127_c00098{left:561.200000pt;}
.x116_c00098{left:562.800000pt;}
.x147_c00098{left:563.733333pt;}
.xe1_c00098{left:566.000000pt;}
.xb4_c00098{left:567.733333pt;}
.x148_c00098{left:570.133333pt;}
.x11c_c00098{left:571.066667pt;}
.x14c_c00098{left:573.600000pt;}
.xbb_c00098{left:575.733333pt;}
.xd8_c00098{left:576.800000pt;}
.x103_c00098{left:578.800000pt;}
.x117_c00098{left:580.666667pt;}
.x12e_c00098{left:581.600000pt;}
.xe9_c00098{left:582.666667pt;}
.xcc_c00098{left:583.600000pt;}
.x150_c00098{left:584.933333pt;}
.x158_c00098{left:586.266667pt;}
.xdf_c00098{left:588.533333pt;}
.x12c_c00098{left:590.133333pt;}
.xd1_c00098{left:592.800000pt;}
.x13b_c00098{left:594.533333pt;}
.xbc_c00098{left:596.533333pt;}
.x149_c00098{left:598.000000pt;}
.xe2_c00098{left:600.266667pt;}
.xf2_c00098{left:603.466667pt;}
.x10c_c00098{left:604.800000pt;}
.xd2_c00098{left:607.200000pt;}
.x153_c00098{left:608.133333pt;}
.x104_c00098{left:611.066667pt;}
.xfd_c00098{left:612.800000pt;}
.x11d_c00098{left:614.000000pt;}
.x118_c00098{left:614.933333pt;}
.xcd_c00098{left:615.866667pt;}
.xea_c00098{left:617.866667pt;}
.xf7_c00098{left:619.200000pt;}
.xe0_c00098{left:620.533333pt;}
.x107_c00098{left:622.133333pt;}
.x134_c00098{left:623.866667pt;}
.xb5_c00098{left:625.333333pt;}
.x15a_c00098{left:626.533333pt;}
.xbd_c00098{left:627.866667pt;}
.x112_c00098{left:629.600000pt;}
.xf3_c00098{left:632.533333pt;}
.x143_c00098{left:634.400000pt;}
.xc2_c00098{left:635.333333pt;}
.x154_c00098{left:637.600000pt;}
.xeb_c00098{left:639.333333pt;}
.xce_c00098{left:641.200000pt;}
.xb6_c00098{left:642.266667pt;}
.x13c_c00098{left:643.866667pt;}
.xd3_c00098{left:645.600000pt;}
.x140_c00098{left:648.133333pt;}
.x138_c00098{left:649.200000pt;}
.xe3_c00098{left:650.533333pt;}
.xd9_c00098{left:651.733333pt;}
.xf4_c00098{left:653.600000pt;}
.xd4_c00098{left:655.866667pt;}
.x11e_c00098{left:657.200000pt;}
.xbe_c00098{left:658.933333pt;}
.xcf_c00098{left:660.666667pt;}
.xb7_c00098{left:662.800000pt;}
.x108_c00098{left:665.066667pt;}
.x141_c00098{left:666.000000pt;}
.xf8_c00098{left:666.933333pt;}
.xec_c00098{left:669.733333pt;}
.x128_c00098{left:673.066667pt;}
.x12f_c00098{left:675.333333pt;}
.x2_c00098{left:676.400000pt;}
.xed_c00098{left:677.733333pt;}
.xc3_c00098{left:679.866667pt;}
.x113_c00098{left:680.800000pt;}
.x159_c00098{left:681.866667pt;}
.xee_c00098{left:685.066667pt;}
.x109_c00098{left:686.533333pt;}
.xc8_c00098{left:689.733333pt;}
.x14d_c00098{left:690.933333pt;}
.x124_c00098{left:693.333333pt;}
.x13d_c00098{left:697.333333pt;}
.x14a_c00098{left:698.533333pt;}
}





/* 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_c00099 {
    display:none;
  }
  .loading-indicator_c00099.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00099 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_c00099 { 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_c00099" -> "#page-container .classname_c00099")
 */
.pf_c00099 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00099 { /* 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_c00099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00099 { /* 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_c00099 { /* 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_c00099 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00099 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00099 {overflow:visible;}
  }
}
.c_c00099 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00099 { /* 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_c00099:after { /* webkit #35443 */
  content: '';
}
.t_c00099:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00099 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 */
}
.__c00099 { /* 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_c00099 { /* info for Javascript */
  display:none;
}
.l_c00099 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00099 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00099 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00099: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_c00099 {
    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_c00099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00099.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_c00099 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00099;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.000000;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;}
.mbf_c00099{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md4_c00099{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00099{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00099{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00099{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m73_c00099{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00099{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m24_c00099{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mca_c00099{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mda_c00099{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m32_c00099{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mba_c00099{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00099{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00099{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00099{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m110_c00099{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mab_c00099{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00099{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00099{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00099{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00099{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00099{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00099{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m82_c00099{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m42_c00099{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00099{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m84_c00099{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m108_c00099{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00099{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00099{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m48_c00099{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m105_c00099{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5_c00099{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.me9_c00099{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m88_c00099{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m114_c00099{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00099{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc_c00099{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mef_c00099{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md6_c00099{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m37_c00099{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m47_c00099{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me_c00099{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00099{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m34_c00099{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00099{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00099{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m23_c00099{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m81_c00099{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00099{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m62_c00099{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00099{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mee_c00099{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m33_c00099{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00099{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00099{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb_c00099{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00099{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00099{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.md0_c00099{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m4_c00099{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma_c00099{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me7_c00099{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00099{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m27_c00099{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m25_c00099{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00099{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00099{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00099{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00099{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.md5_c00099{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mec_c00099{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m43_c00099{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me8_c00099{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00099{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00099{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00099{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00099{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m55_c00099{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m80_c00099{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00099{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m77_c00099{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6_c00099{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m107_c00099{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00099{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10_c00099{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m109_c00099{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00099{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mae_c00099{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m22_c00099{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00099{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00099{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m85_c00099{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00099{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m66_c00099{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m51_c00099{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m8_c00099{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mea_c00099{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m39_c00099{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m87_c00099{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00099{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m92_c00099{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m67_c00099{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md2_c00099{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m36_c00099{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me4_c00099{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00099{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00099{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m16_c00099{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00099{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00099{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00099{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf_c00099{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00099{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00099{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m41_c00099{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00099{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00099{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00099{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00099{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00099{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00099{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m83_c00099{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md3_c00099{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m96_c00099{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m20_c00099{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00099{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00099{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m53_c00099{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m14_c00099{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m17_c00099{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.med_c00099{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m7_c00099{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00099{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m63_c00099{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m50_c00099{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00099{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m29_c00099{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2_c00099{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md_c00099{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m72_c00099{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mce_c00099{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00099{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me1_c00099{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m57_c00099{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00099{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m86_c00099{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00099{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m19_c00099{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me0_c00099{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00099{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00099{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00099{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00099{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m21_c00099{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00099{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00099{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m40_c00099{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m15_c00099{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00099{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m44_c00099{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m12_c00099{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00099{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.maf_c00099{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00099{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m58_c00099{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00099{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00099{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00099{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00099{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m54_c00099{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m26_c00099{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00099{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00099{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00099{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m93_c00099{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00099{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m60_c00099{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00099{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m71_c00099{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m52_c00099{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mde_c00099{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9_c00099{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m111_c00099{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00099{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00099{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11_c00099{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me6_c00099{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m56_c00099{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00099{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00099{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m89_c00099{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00099{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m79_c00099{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.meb_c00099{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m49_c00099{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m13_c00099{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m102_c00099{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m101_c00099{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00099{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m61_c00099{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m100_c00099{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mad_c00099{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00099{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00099{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m97_c00099{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m68_c00099{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00099{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00099{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.maa_c00099{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md8_c00099{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00099{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m95_c00099{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m65_c00099{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00099{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00099{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m94_c00099{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me2_c00099{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m103_c00099{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);}
.m8b_c00099{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md1_c00099{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m99_c00099{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m112_c00099{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00099{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m76_c00099{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00099{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m69_c00099{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00099{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00099{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m98_c00099{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m30_c00099{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me3_c00099{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m104_c00099{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m78_c00099{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me5_c00099{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m45_c00099{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m70_c00099{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00099{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00099{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00099{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m90_c00099{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m28_c00099{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00099{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m91_c00099{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m106_c00099{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m31_c00099{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.md9_c00099{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mac_c00099{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m113_c00099{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00099{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m75_c00099{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m46_c00099{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00099{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00099{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mff_c00099{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m64_c00099{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m35_c00099{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00099{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00099{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00099{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m74_c00099{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m59_c00099{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00099{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.md7_c00099{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m38_c00099{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00099{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00099{transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00099{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00099{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00099{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00099{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m0_c00099{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00099{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00099{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00099{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls0_c00099{letter-spacing:0.000000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{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__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00099{word-spacing:-14.347826px;}
.ws1_c00099{word-spacing:-7.778976px;}
.ws3_c00099{word-spacing:-7.625000px;}
.ws6_c00099{word-spacing:-3.467354px;}
.ws2_c00099{word-spacing:-1.447368px;}
.ws0_c00099{word-spacing:-0.183406px;}
.ws9_c00099{word-spacing:0.000000px;}
.ws7_c00099{word-spacing:1.938865px;}
.ws5_c00099{word-spacing:25.777778px;}
.ws4_c00099{word-spacing:35.679117px;}
.fc0_c00099{color:transparent;}
.fs8_c00099{font-size:30.000000px;}
.fs7_c00099{font-size:36.000000px;}
.fs6_c00099{font-size:42.000000px;}
.fs4_c00099{font-size:48.000000px;}
.fs5_c00099{font-size:54.000000px;}
.fs3_c00099{font-size:60.000000px;}
.fs1_c00099{font-size:66.000000px;}
.fs2_c00099{font-size:72.000000px;}
.fs0_c00099{font-size:84.000000px;}
.y0_c00099{bottom:0.000000px;}
.y31_c00099{bottom:190.650000px;}
.y65_c00099{bottom:190.800000px;}
.y30_c00099{bottom:208.350000px;}
.y64_c00099{bottom:208.800000px;}
.y63_c00099{bottom:226.800000px;}
.y2f_c00099{bottom:231.000000px;}
.y62_c00099{bottom:244.500000px;}
.y2e_c00099{bottom:249.000000px;}
.y2d_c00099{bottom:266.700000px;}
.y61_c00099{bottom:271.050000px;}
.y2c_c00099{bottom:284.400000px;}
.y60_c00099{bottom:288.750000px;}
.y2b_c00099{bottom:302.400000px;}
.y5f_c00099{bottom:306.750000px;}
.y2a_c00099{bottom:324.300000px;}
.y5e_c00099{bottom:333.750000px;}
.y29_c00099{bottom:354.600000px;}
.y5d_c00099{bottom:365.100000px;}
.y28_c00099{bottom:373.350000px;}
.y27_c00099{bottom:391.350000px;}
.y5c_c00099{bottom:392.100000px;}
.y26_c00099{bottom:413.250000px;}
.y5b_c00099{bottom:414.300000px;}
.y5a_c00099{bottom:432.600000px;}
.y25_c00099{bottom:435.900000px;}
.y59_c00099{bottom:450.600000px;}
.y24_c00099{bottom:453.600000px;}
.y58_c00099{bottom:468.300000px;}
.y23_c00099{bottom:471.900000px;}
.y57_c00099{bottom:486.300000px;}
.y22_c00099{bottom:489.600000px;}
.y56_c00099{bottom:504.300000px;}
.y21_c00099{bottom:507.600000px;}
.y55_c00099{bottom:522.300000px;}
.y20_c00099{bottom:525.600000px;}
.y54_c00099{bottom:540.300000px;}
.y1f_c00099{bottom:546.450000px;}
.y53_c00099{bottom:558.300000px;}
.y1e_c00099{bottom:567.300000px;}
.y52_c00099{bottom:576.300000px;}
.y1d_c00099{bottom:584.400000px;}
.y51_c00099{bottom:594.000000px;}
.y1c_c00099{bottom:606.000000px;}
.y50_c00099{bottom:620.700000px;}
.y1b_c00099{bottom:624.300000px;}
.y4f_c00099{bottom:639.000000px;}
.y1a_c00099{bottom:645.750000px;}
.y4e_c00099{bottom:657.000000px;}
.y19_c00099{bottom:664.500000px;}
.y4d_c00099{bottom:674.700000px;}
.y18_c00099{bottom:690.150000px;}
.y4c_c00099{bottom:692.700000px;}
.y4b_c00099{bottom:711.000000px;}
.y17_c00099{bottom:715.350000px;}
.y4a_c00099{bottom:729.000000px;}
.y16_c00099{bottom:731.550000px;}
.y49_c00099{bottom:747.000000px;}
.y15_c00099{bottom:749.550000px;}
.y48_c00099{bottom:764.700000px;}
.y14_c00099{bottom:771.450000px;}
.y47_c00099{bottom:783.000000px;}
.y13_c00099{bottom:789.750000px;}
.y46_c00099{bottom:801.000000px;}
.y12_c00099{bottom:807.750000px;}
.y45_c00099{bottom:818.700000px;}
.y11_c00099{bottom:825.450000px;}
.y44_c00099{bottom:836.700000px;}
.y10_c00099{bottom:845.700000px;}
.y43_c00099{bottom:854.700000px;}
.yf_c00099{bottom:865.800000px;}
.y42_c00099{bottom:872.700000px;}
.ye_c00099{bottom:884.550000px;}
.y41_c00099{bottom:890.700000px;}
.yd_c00099{bottom:902.550000px;}
.y40_c00099{bottom:908.700000px;}
.yc_c00099{bottom:923.850000px;}
.y3f_c00099{bottom:926.700000px;}
.y3e_c00099{bottom:944.700000px;}
.yb_c00099{bottom:945.750000px;}
.y3d_c00099{bottom:962.700000px;}
.ya_c00099{bottom:972.000000px;}
.y3c_c00099{bottom:980.700000px;}
.y9_c00099{bottom:990.300000px;}
.y3b_c00099{bottom:998.700000px;}
.y8_c00099{bottom:1012.350000px;}
.y38_c00099{bottom:1023.450000px;}
.y7_c00099{bottom:1030.350000px;}
.y3a_c00099{bottom:1038.150000px;}
.y37_c00099{bottom:1039.650000px;}
.y6_c00099{bottom:1052.250000px;}
.y39_c00099{bottom:1052.700000px;}
.y36_c00099{bottom:1053.000000px;}
.y35_c00099{bottom:1068.450000px;}
.y5_c00099{bottom:1070.250000px;}
.y34_c00099{bottom:1083.900000px;}
.y4_c00099{bottom:1088.250000px;}
.y3_c00099{bottom:1106.550000px;}
.y33_c00099{bottom:1107.450000px;}
.y2_c00099{bottom:1124.250000px;}
.y32_c00099{bottom:1127.550000px;}
.y1_c00099{bottom:1152.000000px;}
.ha_c00099{height:30.000000px;}
.h9_c00099{height:36.000000px;}
.h8_c00099{height:42.000000px;}
.h6_c00099{height:48.000000px;}
.h7_c00099{height:54.000000px;}
.h5_c00099{height:60.000000px;}
.h3_c00099{height:66.000000px;}
.h4_c00099{height:72.000000px;}
.h2_c00099{height:84.000000px;}
.h1_c00099{height:1272.000000px;}
.h0_c00099{height:1272.239960px;}
.w1_c00099{width:953.250000px;}
.w0_c00099{width:953.280030px;}
.x0_c00099{left:0.000000px;}
.x81_c00099{left:159.150000px;}
.x94_c00099{left:160.200000px;}
.x73_c00099{left:162.000000px;}
.x65_c00099{left:163.650000px;}
.x3b_c00099{left:165.900000px;}
.x1d_c00099{left:168.150000px;}
.x71_c00099{left:177.450000px;}
.x7f_c00099{left:180.000000px;}
.x68_c00099{left:181.050000px;}
.x59_c00099{left:182.100000px;}
.x4a_c00099{left:183.450000px;}
.x17_c00099{left:184.500000px;}
.x2_c00099{left:186.150000px;}
.x3c_c00099{left:191.100000px;}
.x90_c00099{left:192.300000px;}
.x86_c00099{left:193.950000px;}
.x87_c00099{left:197.250000px;}
.x1c_c00099{left:198.450000px;}
.x69_c00099{left:199.500000px;}
.x31_c00099{left:200.850000px;}
.x8b_c00099{left:202.200000px;}
.x5e_c00099{left:203.400000px;}
.x83_c00099{left:205.350000px;}
.x79_c00099{left:206.400000px;}
.x3d_c00099{left:209.100000px;}
.x7a_c00099{left:213.900000px;}
.x2e_c00099{left:215.100000px;}
.x25_c00099{left:219.750000px;}
.x3_c00099{left:221.850000px;}
.x99_c00099{left:223.050000px;}
.x4b_c00099{left:225.750000px;}
.x10_c00099{left:226.800000px;}
.x91_c00099{left:228.300000px;}
.x1e_c00099{left:230.400000px;}
.x62_c00099{left:231.750000px;}
.x32_c00099{left:234.300000px;}
.x2f_c00099{left:235.650000px;}
.x18_c00099{left:238.800000px;}
.x56_c00099{left:240.600000px;}
.x6a_c00099{left:241.650000px;}
.x66_c00099{left:244.350000px;}
.x33_c00099{left:245.400000px;}
.x36_c00099{left:247.500000px;}
.x63_c00099{left:251.550000px;}
.x26_c00099{left:254.700000px;}
.x57_c00099{left:258.900000px;}
.x52_c00099{left:259.950000px;}
.x4_c00099{left:261.450000px;}
.x27_c00099{left:262.950000px;}
.x2a_c00099{left:267.150000px;}
.x5_c00099{left:269.700000px;}
.x92_c00099{left:271.200000px;}
.x95_c00099{left:272.550000px;}
.x5c_c00099{left:275.400000px;}
.x8e_c00099{left:277.200000px;}
.x3e_c00099{left:278.250000px;}
.xb_c00099{left:279.750000px;}
.x7b_c00099{left:281.250000px;}
.x44_c00099{left:284.250000px;}
.x77_c00099{left:286.950000px;}
.x5a_c00099{left:289.800000px;}
.x88_c00099{left:291.600000px;}
.x11_c00099{left:292.950000px;}
.x1f_c00099{left:295.500000px;}
.x4c_c00099{left:296.850000px;}
.x6f_c00099{left:298.200000px;}
.x5f_c00099{left:300.600000px;}
.x6_c00099{left:303.600000px;}
.x30_c00099{left:306.150000px;}
.x3f_c00099{left:307.350000px;}
.x12_c00099{left:309.150000px;}
.x5b_c00099{left:310.350000px;}
.x19_c00099{left:314.100000px;}
.x4d_c00099{left:315.600000px;}
.x5d_c00099{left:316.800000px;}
.x20_c00099{left:317.850000px;}
.x7c_c00099{left:319.050000px;}
.x28_c00099{left:320.250000px;}
.x96_c00099{left:321.900000px;}
.x7_c00099{left:323.700000px;}
.x2b_c00099{left:326.250000px;}
.x8a_c00099{left:327.450000px;}
.x80_c00099{left:328.500000px;}
.x64_c00099{left:331.050000px;}
.x9a_c00099{left:332.400000px;}
.x6b_c00099{left:334.200000px;}
.xc_c00099{left:335.850000px;}
.x45_c00099{left:337.200000px;}
.x8_c00099{left:338.400000px;}
.x58_c00099{left:340.650000px;}
.x40_c00099{left:345.450000px;}
.x29_c00099{left:347.550000px;}
.x37_c00099{left:349.050000px;}
.x2c_c00099{left:350.700000px;}
.x53_c00099{left:354.300000px;}
.x8c_c00099{left:357.000000px;}
.x8f_c00099{left:358.200000px;}
.x4e_c00099{left:362.700000px;}
.x74_c00099{left:364.350000px;}
.x72_c00099{left:367.200000px;}
.x9_c00099{left:369.300000px;}
.x13_c00099{left:370.650000px;}
.x97_c00099{left:373.050000px;}
.x7d_c00099{left:375.600000px;}
.x21_c00099{left:376.950000px;}
.x34_c00099{left:379.650000px;}
.x46_c00099{left:381.450000px;}
.x70_c00099{left:386.850000px;}
.x14_c00099{left:390.150000px;}
.x54_c00099{left:391.800000px;}
.xd_c00099{left:394.500000px;}
.x47_c00099{left:395.550000px;}
.x41_c00099{left:396.600000px;}
.x98_c00099{left:397.950000px;}
.x38_c00099{left:399.150000px;}
.x84_c00099{left:401.250000px;}
.xa_c00099{left:402.450000px;}
.x4f_c00099{left:405.000000px;}
.x67_c00099{left:406.800000px;}
.x1a_c00099{left:408.000000px;}
.x1_c00099{left:410.100000px;}
.x7e_c00099{left:412.200000px;}
.x42_c00099{left:414.900000px;}
.x89_c00099{left:416.250000px;}
.x75_c00099{left:417.600000px;}
.x85_c00099{left:420.000000px;}
.x2d_c00099{left:424.200000px;}
.x6c_c00099{left:426.750000px;}
.x35_c00099{left:427.800000px;}
.x22_c00099{left:428.850000px;}
.x60_c00099{left:431.250000px;}
.x9b_c00099{left:432.450000px;}
.x15_c00099{left:436.200000px;}
.x6d_c00099{left:437.550000px;}
.x48_c00099{left:438.750000px;}
.x1b_c00099{left:443.700000px;}
.x8d_c00099{left:450.300000px;}
.x93_c00099{left:451.800000px;}
.x39_c00099{left:453.900000px;}
.x82_c00099{left:459.450000px;}
.x6e_c00099{left:461.250000px;}
.xe_c00099{left:462.600000px;}
.x23_c00099{left:464.550000px;}
.x78_c00099{left:466.650000px;}
.x76_c00099{left:467.700000px;}
.x55_c00099{left:469.800000px;}
.x50_c00099{left:472.350000px;}
.x43_c00099{left:475.350000px;}
.x3a_c00099{left:476.550000px;}
.xf_c00099{left:478.050000px;}
.x61_c00099{left:479.550000px;}
.x24_c00099{left:486.450000px;}
.x16_c00099{left:490.200000px;}
.x49_c00099{left:492.750000px;}
.x51_c00099{left:500.100000px;}
.x13e_c00099{left:518.100000px;}
.x138_c00099{left:519.450000px;}
.x13a_c00099{left:522.750000px;}
.xac_c00099{left:525.600000px;}
.x142_c00099{left:534.450000px;}
.x13f_c00099{left:535.500000px;}
.x133_c00099{left:536.550000px;}
.x120_c00099{left:537.600000px;}
.x121_c00099{left:538.950000px;}
.xc7_c00099{left:540.000000px;}
.xa4_c00099{left:541.800000px;}
.x9c_c00099{left:543.600000px;}
.x144_c00099{left:548.850000px;}
.xb5_c00099{left:554.850000px;}
.x135_c00099{left:555.900000px;}
.x11d_c00099{left:557.250000px;}
.x109_c00099{left:560.400000px;}
.x9d_c00099{left:562.650000px;}
.x11c_c00099{left:564.000000px;}
.xd0_c00099{left:565.350000px;}
.xf0_c00099{left:568.500000px;}
.x110_c00099{left:570.450000px;}
.xe7_c00099{left:572.550000px;}
.x122_c00099{left:573.900000px;}
.xba_c00099{left:576.450000px;}
.xa5_c00099{left:578.100000px;}
.xf4_c00099{left:580.350000px;}
.xe1_c00099{left:581.550000px;}
.x12a_c00099{left:585.450000px;}
.xad_c00099{left:588.300000px;}
.x139_c00099{left:589.350000px;}
.x12d_c00099{left:592.050000px;}
.x140_c00099{left:593.400000px;}
.xb6_c00099{left:594.750000px;}
.xbb_c00099{left:595.950000px;}
.xc8_c00099{left:597.600000px;}
.x106_c00099{left:598.800000px;}
.xbf_c00099{left:600.750000px;}
.xd1_c00099{left:602.100000px;}
.xe2_c00099{left:603.150000px;}
.xf1_c00099{left:605.550000px;}
.x9e_c00099{left:607.650000px;}
.x12b_c00099{left:609.600000px;}
.xbc_c00099{left:611.400000px;}
.xae_c00099{left:613.800000px;}
.x119_c00099{left:616.200000px;}
.xf8_c00099{left:617.550000px;}
.xc9_c00099{left:621.000000px;}
.xdc_c00099{left:623.100000px;}
.x104_c00099{left:624.300000px;}
.x12e_c00099{left:625.950000px;}
.xa6_c00099{left:627.000000px;}
.x11e_c00099{left:628.500000px;}
.x113_c00099{left:629.550000px;}
.x116_c00099{left:631.650000px;}
.x100_c00099{left:632.700000px;}
.xd2_c00099{left:635.550000px;}
.xa7_c00099{left:637.800000px;}
.x10e_c00099{left:639.000000px;}
.xec_c00099{left:640.050000px;}
.x107_c00099{left:642.000000px;}
.x9f_c00099{left:643.350000px;}
.x101_c00099{left:648.150000px;}
.xce_c00099{left:649.500000px;}
.xd9_c00099{left:650.700000px;}
.xf9_c00099{left:652.800000px;}
.x141_c00099{left:654.300000px;}
.x111_c00099{left:655.350000px;}
.xbd_c00099{left:656.400000px;}
.xc0_c00099{left:657.600000px;}
.xf5_c00099{left:659.550000px;}
.xe8_c00099{left:661.200000px;}
.xbe_c00099{left:663.600000px;}
.x134_c00099{left:665.850000px;}
.x11f_c00099{left:667.350000px;}
.xaf_c00099{left:670.350000px;}
.x12c_c00099{left:672.300000px;}
.xc1_c00099{left:674.850000px;}
.xd3_c00099{left:676.200000px;}
.xcd_c00099{left:677.550000px;}
.x105_c00099{left:679.800000px;}
.xfd_c00099{left:682.800000px;}
.x12f_c00099{left:686.400000px;}
.x13b_c00099{left:688.350000px;}
.xca_c00099{left:689.400000px;}
.xfe_c00099{left:691.500000px;}
.xb0_c00099{left:693.000000px;}
.x136_c00099{left:694.500000px;}
.x10f_c00099{left:695.550000px;}
.x10a_c00099{left:696.750000px;}
.xa8_c00099{left:697.950000px;}
.xdd_c00099{left:699.000000px;}
.xe9_c00099{left:702.300000px;}
.x128_c00099{left:703.350000px;}
.xd4_c00099{left:705.000000px;}
.xe3_c00099{left:707.550000px;}
.x108_c00099{left:710.100000px;}
.xc2_c00099{left:711.900000px;}
.xcb_c00099{left:713.550000px;}
.x11a_c00099{left:715.200000px;}
.xd5_c00099{left:716.850000px;}
.xf2_c00099{left:717.900000px;}
.xa0_c00099{left:719.250000px;}
.x125_c00099{left:720.750000px;}
.xcf_c00099{left:722.250000px;}
.xc3_c00099{left:726.600000px;}
.x143_c00099{left:728.100000px;}
.xff_c00099{left:729.300000px;}
.xa9_c00099{left:731.850000px;}
.xc4_c00099{left:733.800000px;}
.xf6_c00099{left:735.450000px;}
.x137_c00099{left:737.400000px;}
.xe4_c00099{left:741.000000px;}
.xb1_c00099{left:743.100000px;}
.xde_c00099{left:744.300000px;}
.xea_c00099{left:746.250000px;}
.xc5_c00099{left:749.250000px;}
.xda_c00099{left:752.550000px;}
.xa1_c00099{left:754.950000px;}
.xc6_c00099{left:756.450000px;}
.xed_c00099{left:758.100000px;}
.xfa_c00099{left:759.450000px;}
.xe5_c00099{left:761.100000px;}
.xf7_c00099{left:763.200000px;}
.xee_c00099{left:766.050000px;}
.xcc_c00099{left:770.850000px;}
.x112_c00099{left:771.900000px;}
.xaa_c00099{left:774.300000px;}
.xfb_c00099{left:778.500000px;}
.xeb_c00099{left:780.150000px;}
.x126_c00099{left:781.200000px;}
.x10b_c00099{left:782.400000px;}
.xb2_c00099{left:783.450000px;}
.xd6_c00099{left:784.950000px;}
.xf3_c00099{left:786.000000px;}
.xa2_c00099{left:789.900000px;}
.xab_c00099{left:791.550000px;}
.xb7_c00099{left:793.500000px;}
.x117_c00099{left:794.850000px;}
.x127_c00099{left:796.650000px;}
.x13c_c00099{left:798.900000px;}
.x131_c00099{left:800.100000px;}
.xef_c00099{left:802.050000px;}
.x114_c00099{left:803.250000px;}
.xe6_c00099{left:805.350000px;}
.x11b_c00099{left:806.700000px;}
.x10c_c00099{left:808.650000px;}
.xd7_c00099{left:809.850000px;}
.x102_c00099{left:811.050000px;}
.xb3_c00099{left:814.350000px;}
.x130_c00099{left:815.550000px;}
.x118_c00099{left:816.750000px;}
.x13d_c00099{left:818.100000px;}
.xdf_c00099{left:819.750000px;}
.xb8_c00099{left:821.550000px;}
.x123_c00099{left:823.950000px;}
.xd8_c00099{left:825.300000px;}
.x10d_c00099{left:831.300000px;}
.xdb_c00099{left:832.500000px;}
.x103_c00099{left:834.150000px;}
.xe0_c00099{left:837.450000px;}
.x129_c00099{left:839.700000px;}
.x115_c00099{left:840.750000px;}
.x132_c00099{left:845.100000px;}
.xfc_c00099{left:846.600000px;}
.xb4_c00099{left:848.250000px;}
.xb9_c00099{left:849.300000px;}
.xa3_c00099{left:851.400000px;}
.x124_c00099{left:853.500000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.ws8_c00099{word-spacing:-12.753623pt;}
.ws1_c00099{word-spacing:-6.914645pt;}
.ws3_c00099{word-spacing:-6.777778pt;}
.ws6_c00099{word-spacing:-3.082092pt;}
.ws2_c00099{word-spacing:-1.286550pt;}
.ws0_c00099{word-spacing:-0.163028pt;}
.ws9_c00099{word-spacing:0.000000pt;}
.ws7_c00099{word-spacing:1.723435pt;}
.ws5_c00099{word-spacing:22.913580pt;}
.ws4_c00099{word-spacing:31.714771pt;}
.fs8_c00099{font-size:26.666667pt;}
.fs7_c00099{font-size:32.000000pt;}
.fs6_c00099{font-size:37.333333pt;}
.fs4_c00099{font-size:42.666667pt;}
.fs5_c00099{font-size:48.000000pt;}
.fs3_c00099{font-size:53.333333pt;}
.fs1_c00099{font-size:58.666667pt;}
.fs2_c00099{font-size:64.000000pt;}
.fs0_c00099{font-size:74.666667pt;}
.y0_c00099{bottom:0.000000pt;}
.y31_c00099{bottom:169.466667pt;}
.y65_c00099{bottom:169.600000pt;}
.y30_c00099{bottom:185.200000pt;}
.y64_c00099{bottom:185.600000pt;}
.y63_c00099{bottom:201.600000pt;}
.y2f_c00099{bottom:205.333333pt;}
.y62_c00099{bottom:217.333333pt;}
.y2e_c00099{bottom:221.333333pt;}
.y2d_c00099{bottom:237.066667pt;}
.y61_c00099{bottom:240.933333pt;}
.y2c_c00099{bottom:252.800000pt;}
.y60_c00099{bottom:256.666667pt;}
.y2b_c00099{bottom:268.800000pt;}
.y5f_c00099{bottom:272.666667pt;}
.y2a_c00099{bottom:288.266667pt;}
.y5e_c00099{bottom:296.666667pt;}
.y29_c00099{bottom:315.200000pt;}
.y5d_c00099{bottom:324.533333pt;}
.y28_c00099{bottom:331.866667pt;}
.y27_c00099{bottom:347.866667pt;}
.y5c_c00099{bottom:348.533333pt;}
.y26_c00099{bottom:367.333333pt;}
.y5b_c00099{bottom:368.266667pt;}
.y5a_c00099{bottom:384.533333pt;}
.y25_c00099{bottom:387.466667pt;}
.y59_c00099{bottom:400.533333pt;}
.y24_c00099{bottom:403.200000pt;}
.y58_c00099{bottom:416.266667pt;}
.y23_c00099{bottom:419.466667pt;}
.y57_c00099{bottom:432.266667pt;}
.y22_c00099{bottom:435.200000pt;}
.y56_c00099{bottom:448.266667pt;}
.y21_c00099{bottom:451.200000pt;}
.y55_c00099{bottom:464.266667pt;}
.y20_c00099{bottom:467.200000pt;}
.y54_c00099{bottom:480.266667pt;}
.y1f_c00099{bottom:485.733333pt;}
.y53_c00099{bottom:496.266667pt;}
.y1e_c00099{bottom:504.266667pt;}
.y52_c00099{bottom:512.266667pt;}
.y1d_c00099{bottom:519.466667pt;}
.y51_c00099{bottom:528.000000pt;}
.y1c_c00099{bottom:538.666667pt;}
.y50_c00099{bottom:551.733333pt;}
.y1b_c00099{bottom:554.933333pt;}
.y4f_c00099{bottom:568.000000pt;}
.y1a_c00099{bottom:574.000000pt;}
.y4e_c00099{bottom:584.000000pt;}
.y19_c00099{bottom:590.666667pt;}
.y4d_c00099{bottom:599.733333pt;}
.y18_c00099{bottom:613.466667pt;}
.y4c_c00099{bottom:615.733333pt;}
.y4b_c00099{bottom:632.000000pt;}
.y17_c00099{bottom:635.866667pt;}
.y4a_c00099{bottom:648.000000pt;}
.y16_c00099{bottom:650.266667pt;}
.y49_c00099{bottom:664.000000pt;}
.y15_c00099{bottom:666.266667pt;}
.y48_c00099{bottom:679.733333pt;}
.y14_c00099{bottom:685.733333pt;}
.y47_c00099{bottom:696.000000pt;}
.y13_c00099{bottom:702.000000pt;}
.y46_c00099{bottom:712.000000pt;}
.y12_c00099{bottom:718.000000pt;}
.y45_c00099{bottom:727.733333pt;}
.y11_c00099{bottom:733.733333pt;}
.y44_c00099{bottom:743.733333pt;}
.y10_c00099{bottom:751.733333pt;}
.y43_c00099{bottom:759.733333pt;}
.yf_c00099{bottom:769.600000pt;}
.y42_c00099{bottom:775.733333pt;}
.ye_c00099{bottom:786.266667pt;}
.y41_c00099{bottom:791.733333pt;}
.yd_c00099{bottom:802.266667pt;}
.y40_c00099{bottom:807.733333pt;}
.yc_c00099{bottom:821.200000pt;}
.y3f_c00099{bottom:823.733333pt;}
.y3e_c00099{bottom:839.733333pt;}
.yb_c00099{bottom:840.666667pt;}
.y3d_c00099{bottom:855.733333pt;}
.ya_c00099{bottom:864.000000pt;}
.y3c_c00099{bottom:871.733333pt;}
.y9_c00099{bottom:880.266667pt;}
.y3b_c00099{bottom:887.733333pt;}
.y8_c00099{bottom:899.866667pt;}
.y38_c00099{bottom:909.733333pt;}
.y7_c00099{bottom:915.866667pt;}
.y3a_c00099{bottom:922.800000pt;}
.y37_c00099{bottom:924.133333pt;}
.y6_c00099{bottom:935.333333pt;}
.y39_c00099{bottom:935.733333pt;}
.y36_c00099{bottom:936.000000pt;}
.y35_c00099{bottom:949.733333pt;}
.y5_c00099{bottom:951.333333pt;}
.y34_c00099{bottom:963.466667pt;}
.y4_c00099{bottom:967.333333pt;}
.y3_c00099{bottom:983.600000pt;}
.y33_c00099{bottom:984.400000pt;}
.y2_c00099{bottom:999.333333pt;}
.y32_c00099{bottom:1002.266667pt;}
.y1_c00099{bottom:1024.000000pt;}
.ha_c00099{height:26.666667pt;}
.h9_c00099{height:32.000000pt;}
.h8_c00099{height:37.333333pt;}
.h6_c00099{height:42.666667pt;}
.h7_c00099{height:48.000000pt;}
.h5_c00099{height:53.333333pt;}
.h3_c00099{height:58.666667pt;}
.h4_c00099{height:64.000000pt;}
.h2_c00099{height:74.666667pt;}
.h1_c00099{height:1130.666667pt;}
.h0_c00099{height:1130.879964pt;}
.w1_c00099{width:847.333333pt;}
.w0_c00099{width:847.360027pt;}
.x0_c00099{left:0.000000pt;}
.x81_c00099{left:141.466667pt;}
.x94_c00099{left:142.400000pt;}
.x73_c00099{left:144.000000pt;}
.x65_c00099{left:145.466667pt;}
.x3b_c00099{left:147.466667pt;}
.x1d_c00099{left:149.466667pt;}
.x71_c00099{left:157.733333pt;}
.x7f_c00099{left:160.000000pt;}
.x68_c00099{left:160.933333pt;}
.x59_c00099{left:161.866667pt;}
.x4a_c00099{left:163.066667pt;}
.x17_c00099{left:164.000000pt;}
.x2_c00099{left:165.466667pt;}
.x3c_c00099{left:169.866667pt;}
.x90_c00099{left:170.933333pt;}
.x86_c00099{left:172.400000pt;}
.x87_c00099{left:175.333333pt;}
.x1c_c00099{left:176.400000pt;}
.x69_c00099{left:177.333333pt;}
.x31_c00099{left:178.533333pt;}
.x8b_c00099{left:179.733333pt;}
.x5e_c00099{left:180.800000pt;}
.x83_c00099{left:182.533333pt;}
.x79_c00099{left:183.466667pt;}
.x3d_c00099{left:185.866667pt;}
.x7a_c00099{left:190.133333pt;}
.x2e_c00099{left:191.200000pt;}
.x25_c00099{left:195.333333pt;}
.x3_c00099{left:197.200000pt;}
.x99_c00099{left:198.266667pt;}
.x4b_c00099{left:200.666667pt;}
.x10_c00099{left:201.600000pt;}
.x91_c00099{left:202.933333pt;}
.x1e_c00099{left:204.800000pt;}
.x62_c00099{left:206.000000pt;}
.x32_c00099{left:208.266667pt;}
.x2f_c00099{left:209.466667pt;}
.x18_c00099{left:212.266667pt;}
.x56_c00099{left:213.866667pt;}
.x6a_c00099{left:214.800000pt;}
.x66_c00099{left:217.200000pt;}
.x33_c00099{left:218.133333pt;}
.x36_c00099{left:220.000000pt;}
.x63_c00099{left:223.600000pt;}
.x26_c00099{left:226.400000pt;}
.x57_c00099{left:230.133333pt;}
.x52_c00099{left:231.066667pt;}
.x4_c00099{left:232.400000pt;}
.x27_c00099{left:233.733333pt;}
.x2a_c00099{left:237.466667pt;}
.x5_c00099{left:239.733333pt;}
.x92_c00099{left:241.066667pt;}
.x95_c00099{left:242.266667pt;}
.x5c_c00099{left:244.800000pt;}
.x8e_c00099{left:246.400000pt;}
.x3e_c00099{left:247.333333pt;}
.xb_c00099{left:248.666667pt;}
.x7b_c00099{left:250.000000pt;}
.x44_c00099{left:252.666667pt;}
.x77_c00099{left:255.066667pt;}
.x5a_c00099{left:257.600000pt;}
.x88_c00099{left:259.200000pt;}
.x11_c00099{left:260.400000pt;}
.x1f_c00099{left:262.666667pt;}
.x4c_c00099{left:263.866667pt;}
.x6f_c00099{left:265.066667pt;}
.x5f_c00099{left:267.200000pt;}
.x6_c00099{left:269.866667pt;}
.x30_c00099{left:272.133333pt;}
.x3f_c00099{left:273.200000pt;}
.x12_c00099{left:274.800000pt;}
.x5b_c00099{left:275.866667pt;}
.x19_c00099{left:279.200000pt;}
.x4d_c00099{left:280.533333pt;}
.x5d_c00099{left:281.600000pt;}
.x20_c00099{left:282.533333pt;}
.x7c_c00099{left:283.600000pt;}
.x28_c00099{left:284.666667pt;}
.x96_c00099{left:286.133333pt;}
.x7_c00099{left:287.733333pt;}
.x2b_c00099{left:290.000000pt;}
.x8a_c00099{left:291.066667pt;}
.x80_c00099{left:292.000000pt;}
.x64_c00099{left:294.266667pt;}
.x9a_c00099{left:295.466667pt;}
.x6b_c00099{left:297.066667pt;}
.xc_c00099{left:298.533333pt;}
.x45_c00099{left:299.733333pt;}
.x8_c00099{left:300.800000pt;}
.x58_c00099{left:302.800000pt;}
.x40_c00099{left:307.066667pt;}
.x29_c00099{left:308.933333pt;}
.x37_c00099{left:310.266667pt;}
.x2c_c00099{left:311.733333pt;}
.x53_c00099{left:314.933333pt;}
.x8c_c00099{left:317.333333pt;}
.x8f_c00099{left:318.400000pt;}
.x4e_c00099{left:322.400000pt;}
.x74_c00099{left:323.866667pt;}
.x72_c00099{left:326.400000pt;}
.x9_c00099{left:328.266667pt;}
.x13_c00099{left:329.466667pt;}
.x97_c00099{left:331.600000pt;}
.x7d_c00099{left:333.866667pt;}
.x21_c00099{left:335.066667pt;}
.x34_c00099{left:337.466667pt;}
.x46_c00099{left:339.066667pt;}
.x70_c00099{left:343.866667pt;}
.x14_c00099{left:346.800000pt;}
.x54_c00099{left:348.266667pt;}
.xd_c00099{left:350.666667pt;}
.x47_c00099{left:351.600000pt;}
.x41_c00099{left:352.533333pt;}
.x98_c00099{left:353.733333pt;}
.x38_c00099{left:354.800000pt;}
.x84_c00099{left:356.666667pt;}
.xa_c00099{left:357.733333pt;}
.x4f_c00099{left:360.000000pt;}
.x67_c00099{left:361.600000pt;}
.x1a_c00099{left:362.666667pt;}
.x1_c00099{left:364.533333pt;}
.x7e_c00099{left:366.400000pt;}
.x42_c00099{left:368.800000pt;}
.x89_c00099{left:370.000000pt;}
.x75_c00099{left:371.200000pt;}
.x85_c00099{left:373.333333pt;}
.x2d_c00099{left:377.066667pt;}
.x6c_c00099{left:379.333333pt;}
.x35_c00099{left:380.266667pt;}
.x22_c00099{left:381.200000pt;}
.x60_c00099{left:383.333333pt;}
.x9b_c00099{left:384.400000pt;}
.x15_c00099{left:387.733333pt;}
.x6d_c00099{left:388.933333pt;}
.x48_c00099{left:390.000000pt;}
.x1b_c00099{left:394.400000pt;}
.x8d_c00099{left:400.266667pt;}
.x93_c00099{left:401.600000pt;}
.x39_c00099{left:403.466667pt;}
.x82_c00099{left:408.400000pt;}
.x6e_c00099{left:410.000000pt;}
.xe_c00099{left:411.200000pt;}
.x23_c00099{left:412.933333pt;}
.x78_c00099{left:414.800000pt;}
.x76_c00099{left:415.733333pt;}
.x55_c00099{left:417.600000pt;}
.x50_c00099{left:419.866667pt;}
.x43_c00099{left:422.533333pt;}
.x3a_c00099{left:423.600000pt;}
.xf_c00099{left:424.933333pt;}
.x61_c00099{left:426.266667pt;}
.x24_c00099{left:432.400000pt;}
.x16_c00099{left:435.733333pt;}
.x49_c00099{left:438.000000pt;}
.x51_c00099{left:444.533333pt;}
.x13e_c00099{left:460.533333pt;}
.x138_c00099{left:461.733333pt;}
.x13a_c00099{left:464.666667pt;}
.xac_c00099{left:467.200000pt;}
.x142_c00099{left:475.066667pt;}
.x13f_c00099{left:476.000000pt;}
.x133_c00099{left:476.933333pt;}
.x120_c00099{left:477.866667pt;}
.x121_c00099{left:479.066667pt;}
.xc7_c00099{left:480.000000pt;}
.xa4_c00099{left:481.600000pt;}
.x9c_c00099{left:483.200000pt;}
.x144_c00099{left:487.866667pt;}
.xb5_c00099{left:493.200000pt;}
.x135_c00099{left:494.133333pt;}
.x11d_c00099{left:495.333333pt;}
.x109_c00099{left:498.133333pt;}
.x9d_c00099{left:500.133333pt;}
.x11c_c00099{left:501.333333pt;}
.xd0_c00099{left:502.533333pt;}
.xf0_c00099{left:505.333333pt;}
.x110_c00099{left:507.066667pt;}
.xe7_c00099{left:508.933333pt;}
.x122_c00099{left:510.133333pt;}
.xba_c00099{left:512.400000pt;}
.xa5_c00099{left:513.866667pt;}
.xf4_c00099{left:515.866667pt;}
.xe1_c00099{left:516.933333pt;}
.x12a_c00099{left:520.400000pt;}
.xad_c00099{left:522.933333pt;}
.x139_c00099{left:523.866667pt;}
.x12d_c00099{left:526.266667pt;}
.x140_c00099{left:527.466667pt;}
.xb6_c00099{left:528.666667pt;}
.xbb_c00099{left:529.733333pt;}
.xc8_c00099{left:531.200000pt;}
.x106_c00099{left:532.266667pt;}
.xbf_c00099{left:534.000000pt;}
.xd1_c00099{left:535.200000pt;}
.xe2_c00099{left:536.133333pt;}
.xf1_c00099{left:538.266667pt;}
.x9e_c00099{left:540.133333pt;}
.x12b_c00099{left:541.866667pt;}
.xbc_c00099{left:543.466667pt;}
.xae_c00099{left:545.600000pt;}
.x119_c00099{left:547.733333pt;}
.xf8_c00099{left:548.933333pt;}
.xc9_c00099{left:552.000000pt;}
.xdc_c00099{left:553.866667pt;}
.x104_c00099{left:554.933333pt;}
.x12e_c00099{left:556.400000pt;}
.xa6_c00099{left:557.333333pt;}
.x11e_c00099{left:558.666667pt;}
.x113_c00099{left:559.600000pt;}
.x116_c00099{left:561.466667pt;}
.x100_c00099{left:562.400000pt;}
.xd2_c00099{left:564.933333pt;}
.xa7_c00099{left:566.933333pt;}
.x10e_c00099{left:568.000000pt;}
.xec_c00099{left:568.933333pt;}
.x107_c00099{left:570.666667pt;}
.x9f_c00099{left:571.866667pt;}
.x101_c00099{left:576.133333pt;}
.xce_c00099{left:577.333333pt;}
.xd9_c00099{left:578.400000pt;}
.xf9_c00099{left:580.266667pt;}
.x141_c00099{left:581.600000pt;}
.x111_c00099{left:582.533333pt;}
.xbd_c00099{left:583.466667pt;}
.xc0_c00099{left:584.533333pt;}
.xf5_c00099{left:586.266667pt;}
.xe8_c00099{left:587.733333pt;}
.xbe_c00099{left:589.866667pt;}
.x134_c00099{left:591.866667pt;}
.x11f_c00099{left:593.200000pt;}
.xaf_c00099{left:595.866667pt;}
.x12c_c00099{left:597.600000pt;}
.xc1_c00099{left:599.866667pt;}
.xd3_c00099{left:601.066667pt;}
.xcd_c00099{left:602.266667pt;}
.x105_c00099{left:604.266667pt;}
.xfd_c00099{left:606.933333pt;}
.x12f_c00099{left:610.133333pt;}
.x13b_c00099{left:611.866667pt;}
.xca_c00099{left:612.800000pt;}
.xfe_c00099{left:614.666667pt;}
.xb0_c00099{left:616.000000pt;}
.x136_c00099{left:617.333333pt;}
.x10f_c00099{left:618.266667pt;}
.x10a_c00099{left:619.333333pt;}
.xa8_c00099{left:620.400000pt;}
.xdd_c00099{left:621.333333pt;}
.xe9_c00099{left:624.266667pt;}
.x128_c00099{left:625.200000pt;}
.xd4_c00099{left:626.666667pt;}
.xe3_c00099{left:628.933333pt;}
.x108_c00099{left:631.200000pt;}
.xc2_c00099{left:632.800000pt;}
.xcb_c00099{left:634.266667pt;}
.x11a_c00099{left:635.733333pt;}
.xd5_c00099{left:637.200000pt;}
.xf2_c00099{left:638.133333pt;}
.xa0_c00099{left:639.333333pt;}
.x125_c00099{left:640.666667pt;}
.xcf_c00099{left:642.000000pt;}
.xc3_c00099{left:645.866667pt;}
.x143_c00099{left:647.200000pt;}
.xff_c00099{left:648.266667pt;}
.xa9_c00099{left:650.533333pt;}
.xc4_c00099{left:652.266667pt;}
.xf6_c00099{left:653.733333pt;}
.x137_c00099{left:655.466667pt;}
.xe4_c00099{left:658.666667pt;}
.xb1_c00099{left:660.533333pt;}
.xde_c00099{left:661.600000pt;}
.xea_c00099{left:663.333333pt;}
.xc5_c00099{left:666.000000pt;}
.xda_c00099{left:668.933333pt;}
.xa1_c00099{left:671.066667pt;}
.xc6_c00099{left:672.400000pt;}
.xed_c00099{left:673.866667pt;}
.xfa_c00099{left:675.066667pt;}
.xe5_c00099{left:676.533333pt;}
.xf7_c00099{left:678.400000pt;}
.xee_c00099{left:680.933333pt;}
.xcc_c00099{left:685.200000pt;}
.x112_c00099{left:686.133333pt;}
.xaa_c00099{left:688.266667pt;}
.xfb_c00099{left:692.000000pt;}
.xeb_c00099{left:693.466667pt;}
.x126_c00099{left:694.400000pt;}
.x10b_c00099{left:695.466667pt;}
.xb2_c00099{left:696.400000pt;}
.xd6_c00099{left:697.733333pt;}
.xf3_c00099{left:698.666667pt;}
.xa2_c00099{left:702.133333pt;}
.xab_c00099{left:703.600000pt;}
.xb7_c00099{left:705.333333pt;}
.x117_c00099{left:706.533333pt;}
.x127_c00099{left:708.133333pt;}
.x13c_c00099{left:710.133333pt;}
.x131_c00099{left:711.200000pt;}
.xef_c00099{left:712.933333pt;}
.x114_c00099{left:714.000000pt;}
.xe6_c00099{left:715.866667pt;}
.x11b_c00099{left:717.066667pt;}
.x10c_c00099{left:718.800000pt;}
.xd7_c00099{left:719.866667pt;}
.x102_c00099{left:720.933333pt;}
.xb3_c00099{left:723.866667pt;}
.x130_c00099{left:724.933333pt;}
.x118_c00099{left:726.000000pt;}
.x13d_c00099{left:727.200000pt;}
.xdf_c00099{left:728.666667pt;}
.xb8_c00099{left:730.266667pt;}
.x123_c00099{left:732.400000pt;}
.xd8_c00099{left:733.600000pt;}
.x10d_c00099{left:738.933333pt;}
.xdb_c00099{left:740.000000pt;}
.x103_c00099{left:741.466667pt;}
.xe0_c00099{left:744.400000pt;}
.x129_c00099{left:746.400000pt;}
.x115_c00099{left:747.333333pt;}
.x132_c00099{left:751.200000pt;}
.xfc_c00099{left:752.533333pt;}
.xb4_c00099{left:754.000000pt;}
.xb9_c00099{left:754.933333pt;}
.xa3_c00099{left:756.800000pt;}
.x124_c00099{left:758.666667pt;}
}





/* 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_c00100 {
    display:none;
  }
  .loading-indicator_c00100.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00100 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_c00100 { 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_c00100" -> "#page-container .classname_c00100")
 */
.pf_c00100 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00100 { /* 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_c00100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00100 { /* 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_c00100 { /* 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_c00100 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00100 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00100 {overflow:visible;}
  }
}
.c_c00100 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00100 { /* 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_c00100:after { /* webkit #35443 */
  content: '';
}
.t_c00100:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00100 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 */
}
.__c00100 { /* 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_c00100 { /* info for Javascript */
  display:none;
}
.l_c00100 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00100 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00100 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00100: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_c00100 {
    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_c00100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00100.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_c00100 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00100;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.000000;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;}
.m11a_c00100{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00100{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00100{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00100{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m21_c00100{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00100{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m22_c00100{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00100{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00100{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m23_c00100{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m98_c00100{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00100{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m24_c00100{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00100{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mff_c00100{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m30_c00100{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00100{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00100{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00100{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m25_c00100{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m103_c00100{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m90_c00100{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m101_c00100{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00100{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m63_c00100{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00100{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00100{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md4_c00100{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m85_c00100{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00100{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m20_c00100{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00100{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00100{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00100{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00100{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00100{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m110_c00100{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00100{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m82_c00100{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m108_c00100{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m99_c00100{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00100{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m35_c00100{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.meb_c00100{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m11_c00100{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.maa_c00100{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m42_c00100{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mee_c00100{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00100{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m84_c00100{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m13_c00100{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m48_c00100{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00100{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00100{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m68_c00100{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md9_c00100{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m12_c00100{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00100{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m18_c00100{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m26_c00100{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me6_c00100{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m100_c00100{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.md5_c00100{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00100{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m43_c00100{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00100{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mca_c00100{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00100{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m81_c00100{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m14_c00100{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m28_c00100{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m86_c00100{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00100{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m94_c00100{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m79_c00100{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00100{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00100{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00100{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m10_c00100{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00100{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00100{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m115_c00100{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00100{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m66_c00100{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m75_c00100{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00100{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m36_c00100{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me9_c00100{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m56_c00100{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m55_c00100{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00100{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00100{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00100{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00100{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m67_c00100{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00100{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00100{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m114_c00100{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m83_c00100{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00100{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mde_c00100{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m40_c00100{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m73_c00100{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m57_c00100{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00100{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md_c00100{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m31_c00100{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mab_c00100{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf_c00100{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md7_c00100{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m53_c00100{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00100{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m37_c00100{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00100{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m72_c00100{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m93_c00100{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m29_c00100{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00100{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m58_c00100{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m33_c00100{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m116_c00100{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00100{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m76_c00100{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me4_c00100{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m77_c00100{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00100{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m69_c00100{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m62_c00100{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00100{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m15_c00100{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m59_c00100{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m71_c00100{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m61_c00100{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m19_c00100{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00100{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00100{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00100{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00100{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mce_c00100{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m50_c00100{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00100{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m97_c00100{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00100{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me5_c00100{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mda_c00100{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5_c00100{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00100{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00100{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m47_c00100{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00100{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00100{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m78_c00100{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m49_c00100{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m32_c00100{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00100{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00100{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m96_c00100{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00100{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00100{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00100{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m95_c00100{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m45_c00100{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00100{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00100{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00100{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00100{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00100{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m112_c00100{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m34_c00100{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md6_c00100{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me3_c00100{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00100{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.maf_c00100{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00100{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00100{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m16_c00100{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m80_c00100{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me1_c00100{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00100{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00100{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mac_c00100{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m74_c00100{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m60_c00100{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mef_c00100{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m54_c00100{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00100{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m102_c00100{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.md2_c00100{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00100{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m64_c00100{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m46_c00100{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m52_c00100{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m44_c00100{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00100{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00100{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m70_c00100{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m27_c00100{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00100{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.me2_c00100{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m65_c00100{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00100{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00100{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.me_c00100{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00100{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00100{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m39_c00100{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md0_c00100{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m88_c00100{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.med_c00100{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00100{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00100{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00100{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00100{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mec_c00100{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m105_c00100{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6_c00100{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m118_c00100{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.md1_c00100{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00100{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.me0_c00100{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00100{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00100{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m51_c00100{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m119_c00100{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m111_c00100{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00100{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00100{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00100{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00100{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m91_c00100{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00100{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb_c00100{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00100{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17_c00100{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m106_c00100{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00100{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00100{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m117_c00100{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00100{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00100{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00100{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00100{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00100{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.me7_c00100{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m41_c00100{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00100{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md3_c00100{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00100{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m89_c00100{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00100{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me8_c00100{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00100{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mba_c00100{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00100{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mea_c00100{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00100{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00100{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00100{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00100{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.md8_c00100{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00100{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m113_c00100{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m109_c00100{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m92_c00100{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00100{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m107_c00100{transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);}
.mae_c00100{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c00100{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mad_c00100{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m38_c00100{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m104_c00100{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00100{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00100{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.m7_c00100{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma_c00100{transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);}
.m87_c00100{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);}
.m9_c00100{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m4_c00100{transform:matrix(1.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.695000,0.000000,0.000000,0.250000,0,0);}
.m8_c00100{transform:matrix(1.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.830000,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(6.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.675000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls0_c00100{letter-spacing:0.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{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__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00100{word-spacing:-5.388535px;}
.wsf_c00100{word-spacing:-4.444126px;}
.wse_c00100{word-spacing:-3.095238px;}
.ws12_c00100{word-spacing:0.000000px;}
.ws11_c00100{word-spacing:0.042980px;}
.ws4_c00100{word-spacing:18.972763px;}
.ws9_c00100{word-spacing:32.250000px;}
.ws7_c00100{word-spacing:36.000000px;}
.ws2_c00100{word-spacing:38.262295px;}
.ws3_c00100{word-spacing:39.343511px;}
.ws5_c00100{word-spacing:39.750000px;}
.wsa_c00100{word-spacing:40.000000px;}
.wsc_c00100{word-spacing:44.166667px;}
.wsb_c00100{word-spacing:47.500000px;}
.ws1_c00100{word-spacing:48.503817px;}
.wsd_c00100{word-spacing:63.026316px;}
.ws0_c00100{word-spacing:66.714286px;}
.ws8_c00100{word-spacing:164.386492px;}
.ws6_c00100{word-spacing:315.375000px;}
._3_c00100{width:63.000000px;}
._2_c00100{width:66.750000px;}
._1_c00100{width:76.923664px;}
._0_c00100{width:81.503817px;}
.fc0_c00100{color:transparent;}
.fs0_c00100{font-size:24.000000px;}
.fs5_c00100{font-size:36.000000px;}
.fs7_c00100{font-size:42.000000px;}
.fs8_c00100{font-size:48.000000px;}
.fs4_c00100{font-size:54.000000px;}
.fs2_c00100{font-size:60.000000px;}
.fs3_c00100{font-size:66.000000px;}
.fs6_c00100{font-size:72.000000px;}
.fs1_c00100{font-size:78.000000px;}
.y0_c00100{bottom:0.000000px;}
.y67_c00100{bottom:148.350000px;}
.y37_c00100{bottom:188.100000px;}
.y66_c00100{bottom:188.400000px;}
.y36_c00100{bottom:206.400000px;}
.y65_c00100{bottom:211.050000px;}
.y35_c00100{bottom:224.100000px;}
.y64_c00100{bottom:237.300000px;}
.y34_c00100{bottom:242.400000px;}
.y63_c00100{bottom:255.600000px;}
.y33_c00100{bottom:260.100000px;}
.y62_c00100{bottom:273.600000px;}
.y32_c00100{bottom:278.100000px;}
.y61_c00100{bottom:291.600000px;}
.y31_c00100{bottom:296.100000px;}
.y60_c00100{bottom:309.600000px;}
.y30_c00100{bottom:313.800000px;}
.y5f_c00100{bottom:327.600000px;}
.y2f_c00100{bottom:331.800000px;}
.y5e_c00100{bottom:345.300000px;}
.y2e_c00100{bottom:349.500000px;}
.y5d_c00100{bottom:363.300000px;}
.y2d_c00100{bottom:375.900000px;}
.y5c_c00100{bottom:381.300000px;}
.y2c_c00100{bottom:390.300000px;}
.y5b_c00100{bottom:399.300000px;}
.y2b_c00100{bottom:405.000000px;}
.y5a_c00100{bottom:416.850000px;}
.y2a_c00100{bottom:418.650000px;}
.y29_c00100{bottom:432.000000px;}
.y59_c00100{bottom:434.850000px;}
.y28_c00100{bottom:447.900000px;}
.y58_c00100{bottom:452.850000px;}
.y27_c00100{bottom:461.550000px;}
.y57_c00100{bottom:470.850000px;}
.y26_c00100{bottom:475.200000px;}
.y56_c00100{bottom:488.850000px;}
.y25_c00100{bottom:490.350000px;}
.y24_c00100{bottom:506.550000px;}
.y55_c00100{bottom:514.800000px;}
.y23_c00100{bottom:529.500000px;}
.y54_c00100{bottom:543.900000px;}
.y22_c00100{bottom:548.250000px;}
.y53_c00100{bottom:558.300000px;}
.y21_c00100{bottom:566.250000px;}
.y52_c00100{bottom:572.700000px;}
.y51_c00100{bottom:587.100000px;}
.y20_c00100{bottom:587.550000px;}
.y50_c00100{bottom:601.200000px;}
.y1f_c00100{bottom:606.600000px;}
.y4f_c00100{bottom:616.350000px;}
.y1e_c00100{bottom:624.300000px;}
.y4e_c00100{bottom:630.000000px;}
.y1d_c00100{bottom:642.300000px;}
.y4d_c00100{bottom:645.450000px;}
.y1c_c00100{bottom:660.300000px;}
.y4c_c00100{bottom:668.850000px;}
.y1b_c00100{bottom:681.900000px;}
.y4b_c00100{bottom:686.850000px;}
.y1a_c00100{bottom:708.150000px;}
.y4a_c00100{bottom:713.400000px;}
.y19_c00100{bottom:730.500000px;}
.y49_c00100{bottom:732.150000px;}
.y48_c00100{bottom:749.850000px;}
.y18_c00100{bottom:752.700000px;}
.y47_c00100{bottom:767.850000px;}
.y17_c00100{bottom:772.200000px;}
.y16_c00100{bottom:790.200000px;}
.y46_c00100{bottom:794.550000px;}
.y15_c00100{bottom:807.900000px;}
.y45_c00100{bottom:812.550000px;}
.y14_c00100{bottom:826.200000px;}
.y44_c00100{bottom:843.450000px;}
.y13_c00100{bottom:843.900000px;}
.y12_c00100{bottom:862.200000px;}
.y43_c00100{bottom:865.800000px;}
.y11_c00100{bottom:879.900000px;}
.y42_c00100{bottom:883.800000px;}
.y10_c00100{bottom:897.900000px;}
.y41_c00100{bottom:901.800000px;}
.yf_c00100{bottom:915.900000px;}
.y40_c00100{bottom:928.500000px;}
.ye_c00100{bottom:934.650000px;}
.y3f_c00100{bottom:946.500000px;}
.yd_c00100{bottom:951.900000px;}
.y3e_c00100{bottom:964.500000px;}
.yc_c00100{bottom:972.000000px;}
.y3d_c00100{bottom:982.500000px;}
.yb_c00100{bottom:987.450000px;}
.y3c_c00100{bottom:1000.500000px;}
.ya_c00100{bottom:1005.750000px;}
.y3b_c00100{bottom:1018.500000px;}
.y9_c00100{bottom:1023.450000px;}
.y3a_c00100{bottom:1040.100000px;}
.y8_c00100{bottom:1041.450000px;}
.y39_c00100{bottom:1054.500000px;}
.y7_c00100{bottom:1059.450000px;}
.y38_c00100{bottom:1072.500000px;}
.y6_c00100{bottom:1077.450000px;}
.y5_c00100{bottom:1097.550000px;}
.y4_c00100{bottom:1112.250000px;}
.y3_c00100{bottom:1129.500000px;}
.y2_c00100{bottom:1153.200000px;}
.y1_c00100{bottom:1268.700000px;}
.h2_c00100{height:24.000000px;}
.h7_c00100{height:36.000000px;}
.h9_c00100{height:42.000000px;}
.ha_c00100{height:48.000000px;}
.h6_c00100{height:54.000000px;}
.h4_c00100{height:60.000000px;}
.h5_c00100{height:66.000000px;}
.h8_c00100{height:72.000000px;}
.h3_c00100{height:78.000000px;}
.h1_c00100{height:1274.250000px;}
.h0_c00100{height:1274.400056px;}
.w1_c00100{width:953.250000px;}
.w0_c00100{width:953.280030px;}
.x0_c00100{left:0.000000px;}
.x99_c00100{left:71.700000px;}
.x9a_c00100{left:72.750000px;}
.x10_c00100{left:74.250000px;}
.x48_c00100{left:75.900000px;}
.x1_c00100{left:81.300000px;}
.xc9_c00100{left:85.200000px;}
.xc7_c00100{left:86.250000px;}
.xb0_c00100{left:87.600000px;}
.xb6_c00100{left:88.950000px;}
.xbc_c00100{left:90.150000px;}
.x5b_c00100{left:91.950000px;}
.x63_c00100{left:93.750000px;}
.x49_c00100{left:94.950000px;}
.xa8_c00100{left:99.150000px;}
.x2_c00100{left:102.900000px;}
.x21_c00100{left:104.100000px;}
.x4a_c00100{left:105.750000px;}
.xb1_c00100{left:107.700000px;}
.x9b_c00100{left:110.550000px;}
.x9f_c00100{left:113.100000px;}
.xa9_c00100{left:118.200000px;}
.xca_c00100{left:119.400000px;}
.x7b_c00100{left:121.050000px;}
.x96_c00100{left:122.850000px;}
.xc3_c00100{left:124.050000px;}
.x64_c00100{left:125.100000px;}
.x8b_c00100{left:126.900000px;}
.x83_c00100{left:127.950000px;}
.x3_c00100{left:129.150000px;}
.x56_c00100{left:130.200000px;}
.x7c_c00100{left:131.550000px;}
.xa6_c00100{left:134.100000px;}
.x38_c00100{left:135.600000px;}
.x11_c00100{left:138.750000px;}
.xa2_c00100{left:140.100000px;}
.xb2_c00100{left:142.650000px;}
.x86_c00100{left:145.650000px;}
.x22_c00100{left:147.000000px;}
.x9c_c00100{left:148.350000px;}
.x71_c00100{left:150.300000px;}
.x39_c00100{left:151.500000px;}
.x7d_c00100{left:155.250000px;}
.x8f_c00100{left:157.950000px;}
.xbd_c00100{left:159.300000px;}
.x3a_c00100{left:162.600000px;}
.x65_c00100{left:163.950000px;}
.x76_c00100{left:165.600000px;}
.x4f_c00100{left:167.250000px;}
.x4b_c00100{left:170.250000px;}
.x5c_c00100{left:174.450000px;}
.x66_c00100{left:175.800000px;}
.x90_c00100{left:178.050000px;}
.x84_c00100{left:179.400000px;}
.x77_c00100{left:181.800000px;}
.x12_c00100{left:183.450000px;}
.x6c_c00100{left:184.650000px;}
.x23_c00100{left:187.650000px;}
.xb3_c00100{left:191.250000px;}
.x80_c00100{left:192.750000px;}
.xa7_c00100{left:193.950000px;}
.x5d_c00100{left:198.150000px;}
.xa4_c00100{left:199.650000px;}
.x50_c00100{left:201.750000px;}
.x97_c00100{left:203.550000px;}
.x13_c00100{left:204.750000px;}
.x24_c00100{left:207.450000px;}
.x3b_c00100{left:208.650000px;}
.x4c_c00100{left:211.950000px;}
.x78_c00100{left:213.900000px;}
.x5e_c00100{left:215.400000px;}
.x87_c00100{left:219.450000px;}
.x9d_c00100{left:221.400000px;}
.x51_c00100{left:223.050000px;}
.xbe_c00100{left:224.400000px;}
.x72_c00100{left:226.650000px;}
.x81_c00100{left:228.750000px;}
.xa3_c00100{left:230.250000px;}
.xaa_c00100{left:233.400000px;}
.xba_c00100{left:234.600000px;}
.xaf_c00100{left:235.800000px;}
.xb4_c00100{left:237.000000px;}
.x67_c00100{left:238.050000px;}
.x94_c00100{left:239.850000px;}
.x88_c00100{left:244.350000px;}
.x25_c00100{left:245.550000px;}
.xc2_c00100{left:248.250000px;}
.x82_c00100{left:250.350000px;}
.x91_c00100{left:251.550000px;}
.x14_c00100{left:253.650000px;}
.x8c_c00100{left:255.450000px;}
.x9e_c00100{left:257.400000px;}
.x26_c00100{left:259.650000px;}
.x98_c00100{left:261.150000px;}
.x6d_c00100{left:263.100000px;}
.x57_c00100{left:264.150000px;}
.x27_c00100{left:266.850000px;}
.x5f_c00100{left:269.400000px;}
.xb5_c00100{left:271.050000px;}
.x68_c00100{left:273.000000px;}
.x3c_c00100{left:274.200000px;}
.x52_c00100{left:275.700000px;}
.x6e_c00100{left:279.300000px;}
.x8d_c00100{left:280.650000px;}
.x28_c00100{left:281.850000px;}
.xa0_c00100{left:282.900000px;}
.xab_c00100{left:284.850000px;}
.x73_c00100{left:286.050000px;}
.x29_c00100{left:288.750000px;}
.x89_c00100{left:291.150000px;}
.x58_c00100{left:292.200000px;}
.x95_c00100{left:293.850000px;}
.x4_c00100{left:295.500000px;}
.x8e_c00100{left:296.550000px;}
.xc5_c00100{left:300.600000px;}
.x69_c00100{left:302.850000px;}
.x74_c00100{left:305.550000px;}
.x60_c00100{left:309.450000px;}
.x2a_c00100{left:311.700000px;}
.x4d_c00100{left:316.050000px;}
.x2b_c00100{left:318.900000px;}
.x79_c00100{left:320.850000px;}
.xe_c00100{left:324.450000px;}
.x2c_c00100{left:326.100000px;}
.xc6_c00100{left:327.900000px;}
.x85_c00100{left:329.700000px;}
.xbf_c00100{left:331.050000px;}
.x75_c00100{left:334.050000px;}
.xae_c00100{left:335.400000px;}
.x15_c00100{left:336.750000px;}
.x59_c00100{left:340.050000px;}
.xb9_c00100{left:341.250000px;}
.xa5_c00100{left:342.300000px;}
.x6f_c00100{left:344.100000px;}
.x5_c00100{left:345.150000px;}
.x2d_c00100{left:347.700000px;}
.xc4_c00100{left:349.650000px;}
.x6a_c00100{left:351.450000px;}
.x53_c00100{left:355.950000px;}
.x8a_c00100{left:357.750000px;}
.x92_c00100{left:360.750000px;}
.x5a_c00100{left:363.150000px;}
.xac_c00100{left:365.250000px;}
.x61_c00100{left:366.300000px;}
.x16_c00100{left:368.400000px;}
.x6b_c00100{left:370.950000px;}
.xb7_c00100{left:372.000000px;}
.x7e_c00100{left:373.050000px;}
.x3d_c00100{left:374.100000px;}
.x2e_c00100{left:375.450000px;}
.x54_c00100{left:377.250000px;}
.x7a_c00100{left:380.250000px;}
.xc8_c00100{left:382.950000px;}
.xad_c00100{left:384.000000px;}
.xbb_c00100{left:385.050000px;}
.xc0_c00100{left:386.400000px;}
.x62_c00100{left:388.650000px;}
.x4e_c00100{left:391.950000px;}
.x55_c00100{left:393.450000px;}
.xa1_c00100{left:394.500000px;}
.xcb_c00100{left:395.700000px;}
.xc1_c00100{left:396.900000px;}
.x7f_c00100{left:398.250000px;}
.xb8_c00100{left:399.300000px;}
.x93_c00100{left:400.350000px;}
.x17_c00100{left:401.850000px;}
.x3e_c00100{left:403.200000px;}
.x2f_c00100{left:404.250000px;}
.x6_c00100{left:405.300000px;}
.x70_c00100{left:411.750000px;}
.x14c_c00100{left:430.500000px;}
.x14b_c00100{left:432.000000px;}
.x7_c00100{left:433.050000px;}
.x103_c00100{left:435.300000px;}
.xf3_c00100{left:436.350000px;}
.x120_c00100{left:448.650000px;}
.x147_c00100{left:450.000000px;}
.x137_c00100{left:451.200000px;}
.x108_c00100{left:452.550000px;}
.xed_c00100{left:454.200000px;}
.x3f_c00100{left:455.400000px;}
.x18_c00100{left:456.600000px;}
.x13a_c00100{left:459.300000px;}
.x129_c00100{left:462.450000px;}
.x123_c00100{left:463.500000px;}
.x121_c00100{left:466.650000px;}
.x141_c00100{left:468.150000px;}
.x104_c00100{left:470.250000px;}
.x19_c00100{left:472.500000px;}
.x148_c00100{left:473.700000px;}
.xcc_c00100{left:477.300000px;}
.x30_c00100{left:478.800000px;}
.x124_c00100{left:484.800000px;}
.xee_c00100{left:487.650000px;}
.xe3_c00100{left:490.200000px;}
.x12c_c00100{left:491.400000px;}
.x40_c00100{left:493.500000px;}
.x10e_c00100{left:494.550000px;}
.xdd_c00100{left:496.650000px;}
.x8_c00100{left:498.900000px;}
.xd4_c00100{left:500.100000px;}
.xfe_c00100{left:505.800000px;}
.x105_c00100{left:507.300000px;}
.xd9_c00100{left:511.050000px;}
.x9_c00100{left:512.250000px;}
.x11a_c00100{left:513.300000px;}
.x1a_c00100{left:514.650000px;}
.xfb_c00100{left:516.450000px;}
.x31_c00100{left:517.650000px;}
.x125_c00100{left:518.700000px;}
.x41_c00100{left:520.500000px;}
.x106_c00100{left:522.750000px;}
.xcd_c00100{left:524.100000px;}
.x14d_c00100{left:525.300000px;}
.xff_c00100{left:528.450000px;}
.x131_c00100{left:529.950000px;}
.x10f_c00100{left:533.100000px;}
.x109_c00100{left:535.650000px;}
.xf2_c00100{left:537.750000px;}
.xe9_c00100{left:540.150000px;}
.xf4_c00100{left:541.800000px;}
.xd5_c00100{left:543.300000px;}
.x133_c00100{left:544.800000px;}
.xe4_c00100{left:546.000000px;}
.x112_c00100{left:547.350000px;}
.x142_c00100{left:548.850000px;}
.x13c_c00100{left:552.300000px;}
.x32_c00100{left:553.350000px;}
.x144_c00100{left:554.400000px;}
.xf5_c00100{left:555.900000px;}
.xde_c00100{left:557.400000px;}
.x10a_c00100{left:559.350000px;}
.x12a_c00100{left:561.900000px;}
.xd6_c00100{left:563.400000px;}
.x11b_c00100{left:565.500000px;}
.x140_c00100{left:566.850000px;}
.xef_c00100{left:568.650000px;}
.xea_c00100{left:570.450000px;}
.xfc_c00100{left:571.500000px;}
.xf8_c00100{left:573.000000px;}
.x42_c00100{left:575.550000px;}
.x33_c00100{left:578.250000px;}
.x110_c00100{left:580.350000px;}
.x11c_c00100{left:581.400000px;}
.x143_c00100{left:582.750000px;}
.x12d_c00100{left:583.950000px;}
.x1b_c00100{left:585.150000px;}
.xa_c00100{left:588.900000px;}
.x116_c00100{left:589.950000px;}
.x138_c00100{left:591.150000px;}
.xf0_c00100{left:593.100000px;}
.x43_c00100{left:595.350000px;}
.xda_c00100{left:597.450000px;}
.x107_c00100{left:599.100000px;}
.x115_c00100{left:600.450000px;}
.x100_c00100{left:601.950000px;}
.x13d_c00100{left:604.500000px;}
.x1c_c00100{left:606.450000px;}
.x122_c00100{left:608.100000px;}
.x134_c00100{left:609.300000px;}
.x10b_c00100{left:613.050000px;}
.xce_c00100{left:615.450000px;}
.x12b_c00100{left:616.950000px;}
.x34_c00100{left:618.150000px;}
.xb_c00100{left:620.550000px;}
.x1d_c00100{left:622.650000px;}
.xdb_c00100{left:623.700000px;}
.x113_c00100{left:626.850000px;}
.x117_c00100{left:628.800000px;}
.xe5_c00100{left:630.600000px;}
.x101_c00100{left:631.800000px;}
.x11d_c00100{left:633.300000px;}
.x44_c00100{left:635.400000px;}
.xfd_c00100{left:637.350000px;}
.xcf_c00100{left:638.850000px;}
.x10c_c00100{left:640.050000px;}
.xd7_c00100{left:641.550000px;}
.x35_c00100{left:642.600000px;}
.x114_c00100{left:644.550000px;}
.xf9_c00100{left:647.100000px;}
.xc_c00100{left:650.700000px;}
.xe6_c00100{left:658.650000px;}
.xfa_c00100{left:664.800000px;}
.x45_c00100{left:666.750000px;}
.xdf_c00100{left:669.750000px;}
.x145_c00100{left:670.800000px;}
.x1e_c00100{left:672.000000px;}
.x12f_c00100{left:673.350000px;}
.x102_c00100{left:674.700000px;}
.xd0_c00100{left:676.350000px;}
.xf6_c00100{left:678.300000px;}
.x10d_c00100{left:679.650000px;}
.x135_c00100{left:682.050000px;}
.x13b_c00100{left:683.400000px;}
.x36_c00100{left:685.050000px;}
.xe7_c00100{left:690.750000px;}
.x11e_c00100{left:692.400000px;}
.x13e_c00100{left:693.450000px;}
.x149_c00100{left:695.850000px;}
.xd1_c00100{left:697.200000px;}
.x127_c00100{left:700.350000px;}
.xd_c00100{left:701.400000px;}
.x126_c00100{left:702.750000px;}
.xe2_c00100{left:704.850000px;}
.xe0_c00100{left:707.550000px;}
.x13f_c00100{left:709.650000px;}
.xd8_c00100{left:711.450000px;}
.xd2_c00100{left:712.650000px;}
.x130_c00100{left:716.100000px;}
.x14a_c00100{left:717.450000px;}
.x46_c00100{left:719.250000px;}
.x111_c00100{left:720.450000px;}
.x1f_c00100{left:722.700000px;}
.x136_c00100{left:724.050000px;}
.x12e_c00100{left:725.100000px;}
.x118_c00100{left:728.850000px;}
.xf1_c00100{left:730.350000px;}
.xf7_c00100{left:733.050000px;}
.xe8_c00100{left:734.400000px;}
.x132_c00100{left:736.500000px;}
.x146_c00100{left:737.700000px;}
.x20_c00100{left:739.200000px;}
.x119_c00100{left:740.400000px;}
.x139_c00100{left:743.100000px;}
.x47_c00100{left:744.750000px;}
.xdc_c00100{left:746.850000px;}
.xd3_c00100{left:750.150000px;}
.xe1_c00100{left:751.800000px;}
.xeb_c00100{left:753.750000px;}
.x11f_c00100{left:757.500000px;}
.xf_c00100{left:759.000000px;}
.x128_c00100{left:760.500000px;}
.xec_c00100{left:767.100000px;}
.x37_c00100{left:774.000000px;}
.x14e_c00100{left:802.050000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws10_c00100{word-spacing:-4.789809pt;}
.wsf_c00100{word-spacing:-3.950334pt;}
.wse_c00100{word-spacing:-2.751323pt;}
.ws12_c00100{word-spacing:0.000000pt;}
.ws11_c00100{word-spacing:0.038204pt;}
.ws4_c00100{word-spacing:16.864678pt;}
.ws9_c00100{word-spacing:28.666667pt;}
.ws7_c00100{word-spacing:32.000000pt;}
.ws2_c00100{word-spacing:34.010929pt;}
.ws3_c00100{word-spacing:34.972010pt;}
.ws5_c00100{word-spacing:35.333333pt;}
.wsa_c00100{word-spacing:35.555556pt;}
.wsc_c00100{word-spacing:39.259259pt;}
.wsb_c00100{word-spacing:42.222222pt;}
.ws1_c00100{word-spacing:43.114504pt;}
.wsd_c00100{word-spacing:56.023392pt;}
.ws0_c00100{word-spacing:59.301587pt;}
.ws8_c00100{word-spacing:146.121326pt;}
.ws6_c00100{word-spacing:280.333333pt;}
._3_c00100{width:56.000000pt;}
._2_c00100{width:59.333333pt;}
._1_c00100{width:68.376590pt;}
._0_c00100{width:72.447837pt;}
.fs0_c00100{font-size:21.333333pt;}
.fs5_c00100{font-size:32.000000pt;}
.fs7_c00100{font-size:37.333333pt;}
.fs8_c00100{font-size:42.666667pt;}
.fs4_c00100{font-size:48.000000pt;}
.fs2_c00100{font-size:53.333333pt;}
.fs3_c00100{font-size:58.666667pt;}
.fs6_c00100{font-size:64.000000pt;}
.fs1_c00100{font-size:69.333333pt;}
.y0_c00100{bottom:0.000000pt;}
.y67_c00100{bottom:131.866667pt;}
.y37_c00100{bottom:167.200000pt;}
.y66_c00100{bottom:167.466667pt;}
.y36_c00100{bottom:183.466667pt;}
.y65_c00100{bottom:187.600000pt;}
.y35_c00100{bottom:199.200000pt;}
.y64_c00100{bottom:210.933333pt;}
.y34_c00100{bottom:215.466667pt;}
.y63_c00100{bottom:227.200000pt;}
.y33_c00100{bottom:231.200000pt;}
.y62_c00100{bottom:243.200000pt;}
.y32_c00100{bottom:247.200000pt;}
.y61_c00100{bottom:259.200000pt;}
.y31_c00100{bottom:263.200000pt;}
.y60_c00100{bottom:275.200000pt;}
.y30_c00100{bottom:278.933333pt;}
.y5f_c00100{bottom:291.200000pt;}
.y2f_c00100{bottom:294.933333pt;}
.y5e_c00100{bottom:306.933333pt;}
.y2e_c00100{bottom:310.666667pt;}
.y5d_c00100{bottom:322.933333pt;}
.y2d_c00100{bottom:334.133333pt;}
.y5c_c00100{bottom:338.933333pt;}
.y2c_c00100{bottom:346.933333pt;}
.y5b_c00100{bottom:354.933333pt;}
.y2b_c00100{bottom:360.000000pt;}
.y5a_c00100{bottom:370.533333pt;}
.y2a_c00100{bottom:372.133333pt;}
.y29_c00100{bottom:384.000000pt;}
.y59_c00100{bottom:386.533333pt;}
.y28_c00100{bottom:398.133333pt;}
.y58_c00100{bottom:402.533333pt;}
.y27_c00100{bottom:410.266667pt;}
.y57_c00100{bottom:418.533333pt;}
.y26_c00100{bottom:422.400000pt;}
.y56_c00100{bottom:434.533333pt;}
.y25_c00100{bottom:435.866667pt;}
.y24_c00100{bottom:450.266667pt;}
.y55_c00100{bottom:457.600000pt;}
.y23_c00100{bottom:470.666667pt;}
.y54_c00100{bottom:483.466667pt;}
.y22_c00100{bottom:487.333333pt;}
.y53_c00100{bottom:496.266667pt;}
.y21_c00100{bottom:503.333333pt;}
.y52_c00100{bottom:509.066667pt;}
.y51_c00100{bottom:521.866667pt;}
.y20_c00100{bottom:522.266667pt;}
.y50_c00100{bottom:534.400000pt;}
.y1f_c00100{bottom:539.200000pt;}
.y4f_c00100{bottom:547.866667pt;}
.y1e_c00100{bottom:554.933333pt;}
.y4e_c00100{bottom:560.000000pt;}
.y1d_c00100{bottom:570.933333pt;}
.y4d_c00100{bottom:573.733333pt;}
.y1c_c00100{bottom:586.933333pt;}
.y4c_c00100{bottom:594.533333pt;}
.y1b_c00100{bottom:606.133333pt;}
.y4b_c00100{bottom:610.533333pt;}
.y1a_c00100{bottom:629.466667pt;}
.y4a_c00100{bottom:634.133333pt;}
.y19_c00100{bottom:649.333333pt;}
.y49_c00100{bottom:650.800000pt;}
.y48_c00100{bottom:666.533333pt;}
.y18_c00100{bottom:669.066667pt;}
.y47_c00100{bottom:682.533333pt;}
.y17_c00100{bottom:686.400000pt;}
.y16_c00100{bottom:702.400000pt;}
.y46_c00100{bottom:706.266667pt;}
.y15_c00100{bottom:718.133333pt;}
.y45_c00100{bottom:722.266667pt;}
.y14_c00100{bottom:734.400000pt;}
.y44_c00100{bottom:749.733333pt;}
.y13_c00100{bottom:750.133333pt;}
.y12_c00100{bottom:766.400000pt;}
.y43_c00100{bottom:769.600000pt;}
.y11_c00100{bottom:782.133333pt;}
.y42_c00100{bottom:785.600000pt;}
.y10_c00100{bottom:798.133333pt;}
.y41_c00100{bottom:801.600000pt;}
.yf_c00100{bottom:814.133333pt;}
.y40_c00100{bottom:825.333333pt;}
.ye_c00100{bottom:830.800000pt;}
.y3f_c00100{bottom:841.333333pt;}
.yd_c00100{bottom:846.133333pt;}
.y3e_c00100{bottom:857.333333pt;}
.yc_c00100{bottom:864.000000pt;}
.y3d_c00100{bottom:873.333333pt;}
.yb_c00100{bottom:877.733333pt;}
.y3c_c00100{bottom:889.333333pt;}
.ya_c00100{bottom:894.000000pt;}
.y3b_c00100{bottom:905.333333pt;}
.y9_c00100{bottom:909.733333pt;}
.y3a_c00100{bottom:924.533333pt;}
.y8_c00100{bottom:925.733333pt;}
.y39_c00100{bottom:937.333333pt;}
.y7_c00100{bottom:941.733333pt;}
.y38_c00100{bottom:953.333333pt;}
.y6_c00100{bottom:957.733333pt;}
.y5_c00100{bottom:975.600000pt;}
.y4_c00100{bottom:988.666667pt;}
.y3_c00100{bottom:1004.000000pt;}
.y2_c00100{bottom:1025.066667pt;}
.y1_c00100{bottom:1127.733333pt;}
.h2_c00100{height:21.333333pt;}
.h7_c00100{height:32.000000pt;}
.h9_c00100{height:37.333333pt;}
.ha_c00100{height:42.666667pt;}
.h6_c00100{height:48.000000pt;}
.h4_c00100{height:53.333333pt;}
.h5_c00100{height:58.666667pt;}
.h8_c00100{height:64.000000pt;}
.h3_c00100{height:69.333333pt;}
.h1_c00100{height:1132.666667pt;}
.h0_c00100{height:1132.800049pt;}
.w1_c00100{width:847.333333pt;}
.w0_c00100{width:847.360027pt;}
.x0_c00100{left:0.000000pt;}
.x99_c00100{left:63.733333pt;}
.x9a_c00100{left:64.666667pt;}
.x10_c00100{left:66.000000pt;}
.x48_c00100{left:67.466667pt;}
.x1_c00100{left:72.266667pt;}
.xc9_c00100{left:75.733333pt;}
.xc7_c00100{left:76.666667pt;}
.xb0_c00100{left:77.866667pt;}
.xb6_c00100{left:79.066667pt;}
.xbc_c00100{left:80.133333pt;}
.x5b_c00100{left:81.733333pt;}
.x63_c00100{left:83.333333pt;}
.x49_c00100{left:84.400000pt;}
.xa8_c00100{left:88.133333pt;}
.x2_c00100{left:91.466667pt;}
.x21_c00100{left:92.533333pt;}
.x4a_c00100{left:94.000000pt;}
.xb1_c00100{left:95.733333pt;}
.x9b_c00100{left:98.266667pt;}
.x9f_c00100{left:100.533333pt;}
.xa9_c00100{left:105.066667pt;}
.xca_c00100{left:106.133333pt;}
.x7b_c00100{left:107.600000pt;}
.x96_c00100{left:109.200000pt;}
.xc3_c00100{left:110.266667pt;}
.x64_c00100{left:111.200000pt;}
.x8b_c00100{left:112.800000pt;}
.x83_c00100{left:113.733333pt;}
.x3_c00100{left:114.800000pt;}
.x56_c00100{left:115.733333pt;}
.x7c_c00100{left:116.933333pt;}
.xa6_c00100{left:119.200000pt;}
.x38_c00100{left:120.533333pt;}
.x11_c00100{left:123.333333pt;}
.xa2_c00100{left:124.533333pt;}
.xb2_c00100{left:126.800000pt;}
.x86_c00100{left:129.466667pt;}
.x22_c00100{left:130.666667pt;}
.x9c_c00100{left:131.866667pt;}
.x71_c00100{left:133.600000pt;}
.x39_c00100{left:134.666667pt;}
.x7d_c00100{left:138.000000pt;}
.x8f_c00100{left:140.400000pt;}
.xbd_c00100{left:141.600000pt;}
.x3a_c00100{left:144.533333pt;}
.x65_c00100{left:145.733333pt;}
.x76_c00100{left:147.200000pt;}
.x4f_c00100{left:148.666667pt;}
.x4b_c00100{left:151.333333pt;}
.x5c_c00100{left:155.066667pt;}
.x66_c00100{left:156.266667pt;}
.x90_c00100{left:158.266667pt;}
.x84_c00100{left:159.466667pt;}
.x77_c00100{left:161.600000pt;}
.x12_c00100{left:163.066667pt;}
.x6c_c00100{left:164.133333pt;}
.x23_c00100{left:166.800000pt;}
.xb3_c00100{left:170.000000pt;}
.x80_c00100{left:171.333333pt;}
.xa7_c00100{left:172.400000pt;}
.x5d_c00100{left:176.133333pt;}
.xa4_c00100{left:177.466667pt;}
.x50_c00100{left:179.333333pt;}
.x97_c00100{left:180.933333pt;}
.x13_c00100{left:182.000000pt;}
.x24_c00100{left:184.400000pt;}
.x3b_c00100{left:185.466667pt;}
.x4c_c00100{left:188.400000pt;}
.x78_c00100{left:190.133333pt;}
.x5e_c00100{left:191.466667pt;}
.x87_c00100{left:195.066667pt;}
.x9d_c00100{left:196.800000pt;}
.x51_c00100{left:198.266667pt;}
.xbe_c00100{left:199.466667pt;}
.x72_c00100{left:201.466667pt;}
.x81_c00100{left:203.333333pt;}
.xa3_c00100{left:204.666667pt;}
.xaa_c00100{left:207.466667pt;}
.xba_c00100{left:208.533333pt;}
.xaf_c00100{left:209.600000pt;}
.xb4_c00100{left:210.666667pt;}
.x67_c00100{left:211.600000pt;}
.x94_c00100{left:213.200000pt;}
.x88_c00100{left:217.200000pt;}
.x25_c00100{left:218.266667pt;}
.xc2_c00100{left:220.666667pt;}
.x82_c00100{left:222.533333pt;}
.x91_c00100{left:223.600000pt;}
.x14_c00100{left:225.466667pt;}
.x8c_c00100{left:227.066667pt;}
.x9e_c00100{left:228.800000pt;}
.x26_c00100{left:230.800000pt;}
.x98_c00100{left:232.133333pt;}
.x6d_c00100{left:233.866667pt;}
.x57_c00100{left:234.800000pt;}
.x27_c00100{left:237.200000pt;}
.x5f_c00100{left:239.466667pt;}
.xb5_c00100{left:240.933333pt;}
.x68_c00100{left:242.666667pt;}
.x3c_c00100{left:243.733333pt;}
.x52_c00100{left:245.066667pt;}
.x6e_c00100{left:248.266667pt;}
.x8d_c00100{left:249.466667pt;}
.x28_c00100{left:250.533333pt;}
.xa0_c00100{left:251.466667pt;}
.xab_c00100{left:253.200000pt;}
.x73_c00100{left:254.266667pt;}
.x29_c00100{left:256.666667pt;}
.x89_c00100{left:258.800000pt;}
.x58_c00100{left:259.733333pt;}
.x95_c00100{left:261.200000pt;}
.x4_c00100{left:262.666667pt;}
.x8e_c00100{left:263.600000pt;}
.xc5_c00100{left:267.200000pt;}
.x69_c00100{left:269.200000pt;}
.x74_c00100{left:271.600000pt;}
.x60_c00100{left:275.066667pt;}
.x2a_c00100{left:277.066667pt;}
.x4d_c00100{left:280.933333pt;}
.x2b_c00100{left:283.466667pt;}
.x79_c00100{left:285.200000pt;}
.xe_c00100{left:288.400000pt;}
.x2c_c00100{left:289.866667pt;}
.xc6_c00100{left:291.466667pt;}
.x85_c00100{left:293.066667pt;}
.xbf_c00100{left:294.266667pt;}
.x75_c00100{left:296.933333pt;}
.xae_c00100{left:298.133333pt;}
.x15_c00100{left:299.333333pt;}
.x59_c00100{left:302.266667pt;}
.xb9_c00100{left:303.333333pt;}
.xa5_c00100{left:304.266667pt;}
.x6f_c00100{left:305.866667pt;}
.x5_c00100{left:306.800000pt;}
.x2d_c00100{left:309.066667pt;}
.xc4_c00100{left:310.800000pt;}
.x6a_c00100{left:312.400000pt;}
.x53_c00100{left:316.400000pt;}
.x8a_c00100{left:318.000000pt;}
.x92_c00100{left:320.666667pt;}
.x5a_c00100{left:322.800000pt;}
.xac_c00100{left:324.666667pt;}
.x61_c00100{left:325.600000pt;}
.x16_c00100{left:327.466667pt;}
.x6b_c00100{left:329.733333pt;}
.xb7_c00100{left:330.666667pt;}
.x7e_c00100{left:331.600000pt;}
.x3d_c00100{left:332.533333pt;}
.x2e_c00100{left:333.733333pt;}
.x54_c00100{left:335.333333pt;}
.x7a_c00100{left:338.000000pt;}
.xc8_c00100{left:340.400000pt;}
.xad_c00100{left:341.333333pt;}
.xbb_c00100{left:342.266667pt;}
.xc0_c00100{left:343.466667pt;}
.x62_c00100{left:345.466667pt;}
.x4e_c00100{left:348.400000pt;}
.x55_c00100{left:349.733333pt;}
.xa1_c00100{left:350.666667pt;}
.xcb_c00100{left:351.733333pt;}
.xc1_c00100{left:352.800000pt;}
.x7f_c00100{left:354.000000pt;}
.xb8_c00100{left:354.933333pt;}
.x93_c00100{left:355.866667pt;}
.x17_c00100{left:357.200000pt;}
.x3e_c00100{left:358.400000pt;}
.x2f_c00100{left:359.333333pt;}
.x6_c00100{left:360.266667pt;}
.x70_c00100{left:366.000000pt;}
.x14c_c00100{left:382.666667pt;}
.x14b_c00100{left:384.000000pt;}
.x7_c00100{left:384.933333pt;}
.x103_c00100{left:386.933333pt;}
.xf3_c00100{left:387.866667pt;}
.x120_c00100{left:398.800000pt;}
.x147_c00100{left:400.000000pt;}
.x137_c00100{left:401.066667pt;}
.x108_c00100{left:402.266667pt;}
.xed_c00100{left:403.733333pt;}
.x3f_c00100{left:404.800000pt;}
.x18_c00100{left:405.866667pt;}
.x13a_c00100{left:408.266667pt;}
.x129_c00100{left:411.066667pt;}
.x123_c00100{left:412.000000pt;}
.x121_c00100{left:414.800000pt;}
.x141_c00100{left:416.133333pt;}
.x104_c00100{left:418.000000pt;}
.x19_c00100{left:420.000000pt;}
.x148_c00100{left:421.066667pt;}
.xcc_c00100{left:424.266667pt;}
.x30_c00100{left:425.600000pt;}
.x124_c00100{left:430.933333pt;}
.xee_c00100{left:433.466667pt;}
.xe3_c00100{left:435.733333pt;}
.x12c_c00100{left:436.800000pt;}
.x40_c00100{left:438.666667pt;}
.x10e_c00100{left:439.600000pt;}
.xdd_c00100{left:441.466667pt;}
.x8_c00100{left:443.466667pt;}
.xd4_c00100{left:444.533333pt;}
.xfe_c00100{left:449.600000pt;}
.x105_c00100{left:450.933333pt;}
.xd9_c00100{left:454.266667pt;}
.x9_c00100{left:455.333333pt;}
.x11a_c00100{left:456.266667pt;}
.x1a_c00100{left:457.466667pt;}
.xfb_c00100{left:459.066667pt;}
.x31_c00100{left:460.133333pt;}
.x125_c00100{left:461.066667pt;}
.x41_c00100{left:462.666667pt;}
.x106_c00100{left:464.666667pt;}
.xcd_c00100{left:465.866667pt;}
.x14d_c00100{left:466.933333pt;}
.xff_c00100{left:469.733333pt;}
.x131_c00100{left:471.066667pt;}
.x10f_c00100{left:473.866667pt;}
.x109_c00100{left:476.133333pt;}
.xf2_c00100{left:478.000000pt;}
.xe9_c00100{left:480.133333pt;}
.xf4_c00100{left:481.600000pt;}
.xd5_c00100{left:482.933333pt;}
.x133_c00100{left:484.266667pt;}
.xe4_c00100{left:485.333333pt;}
.x112_c00100{left:486.533333pt;}
.x142_c00100{left:487.866667pt;}
.x13c_c00100{left:490.933333pt;}
.x32_c00100{left:491.866667pt;}
.x144_c00100{left:492.800000pt;}
.xf5_c00100{left:494.133333pt;}
.xde_c00100{left:495.466667pt;}
.x10a_c00100{left:497.200000pt;}
.x12a_c00100{left:499.466667pt;}
.xd6_c00100{left:500.800000pt;}
.x11b_c00100{left:502.666667pt;}
.x140_c00100{left:503.866667pt;}
.xef_c00100{left:505.466667pt;}
.xea_c00100{left:507.066667pt;}
.xfc_c00100{left:508.000000pt;}
.xf8_c00100{left:509.333333pt;}
.x42_c00100{left:511.600000pt;}
.x33_c00100{left:514.000000pt;}
.x110_c00100{left:515.866667pt;}
.x11c_c00100{left:516.800000pt;}
.x143_c00100{left:518.000000pt;}
.x12d_c00100{left:519.066667pt;}
.x1b_c00100{left:520.133333pt;}
.xa_c00100{left:523.466667pt;}
.x116_c00100{left:524.400000pt;}
.x138_c00100{left:525.466667pt;}
.xf0_c00100{left:527.200000pt;}
.x43_c00100{left:529.200000pt;}
.xda_c00100{left:531.066667pt;}
.x107_c00100{left:532.533333pt;}
.x115_c00100{left:533.733333pt;}
.x100_c00100{left:535.066667pt;}
.x13d_c00100{left:537.333333pt;}
.x1c_c00100{left:539.066667pt;}
.x122_c00100{left:540.533333pt;}
.x134_c00100{left:541.600000pt;}
.x10b_c00100{left:544.933333pt;}
.xce_c00100{left:547.066667pt;}
.x12b_c00100{left:548.400000pt;}
.x34_c00100{left:549.466667pt;}
.xb_c00100{left:551.600000pt;}
.x1d_c00100{left:553.466667pt;}
.xdb_c00100{left:554.400000pt;}
.x113_c00100{left:557.200000pt;}
.x117_c00100{left:558.933333pt;}
.xe5_c00100{left:560.533333pt;}
.x101_c00100{left:561.600000pt;}
.x11d_c00100{left:562.933333pt;}
.x44_c00100{left:564.800000pt;}
.xfd_c00100{left:566.533333pt;}
.xcf_c00100{left:567.866667pt;}
.x10c_c00100{left:568.933333pt;}
.xd7_c00100{left:570.266667pt;}
.x35_c00100{left:571.200000pt;}
.x114_c00100{left:572.933333pt;}
.xf9_c00100{left:575.200000pt;}
.xc_c00100{left:578.400000pt;}
.xe6_c00100{left:585.466667pt;}
.xfa_c00100{left:590.933333pt;}
.x45_c00100{left:592.666667pt;}
.xdf_c00100{left:595.333333pt;}
.x145_c00100{left:596.266667pt;}
.x1e_c00100{left:597.333333pt;}
.x12f_c00100{left:598.533333pt;}
.x102_c00100{left:599.733333pt;}
.xd0_c00100{left:601.200000pt;}
.xf6_c00100{left:602.933333pt;}
.x10d_c00100{left:604.133333pt;}
.x135_c00100{left:606.266667pt;}
.x13b_c00100{left:607.466667pt;}
.x36_c00100{left:608.933333pt;}
.xe7_c00100{left:614.000000pt;}
.x11e_c00100{left:615.466667pt;}
.x13e_c00100{left:616.400000pt;}
.x149_c00100{left:618.533333pt;}
.xd1_c00100{left:619.733333pt;}
.x127_c00100{left:622.533333pt;}
.xd_c00100{left:623.466667pt;}
.x126_c00100{left:624.666667pt;}
.xe2_c00100{left:626.533333pt;}
.xe0_c00100{left:628.933333pt;}
.x13f_c00100{left:630.800000pt;}
.xd8_c00100{left:632.400000pt;}
.xd2_c00100{left:633.466667pt;}
.x130_c00100{left:636.533333pt;}
.x14a_c00100{left:637.733333pt;}
.x46_c00100{left:639.333333pt;}
.x111_c00100{left:640.400000pt;}
.x1f_c00100{left:642.400000pt;}
.x136_c00100{left:643.600000pt;}
.x12e_c00100{left:644.533333pt;}
.x118_c00100{left:647.866667pt;}
.xf1_c00100{left:649.200000pt;}
.xf7_c00100{left:651.600000pt;}
.xe8_c00100{left:652.800000pt;}
.x132_c00100{left:654.666667pt;}
.x146_c00100{left:655.733333pt;}
.x20_c00100{left:657.066667pt;}
.x119_c00100{left:658.133333pt;}
.x139_c00100{left:660.533333pt;}
.x47_c00100{left:662.000000pt;}
.xdc_c00100{left:663.866667pt;}
.xd3_c00100{left:666.800000pt;}
.xe1_c00100{left:668.266667pt;}
.xeb_c00100{left:670.000000pt;}
.x11f_c00100{left:673.333333pt;}
.xf_c00100{left:674.666667pt;}
.x128_c00100{left:676.000000pt;}
.xec_c00100{left:681.866667pt;}
.x37_c00100{left:688.000000pt;}
.x14e_c00100{left:712.933333pt;}
}





/* 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_c00101 {
    display:none;
  }
  .loading-indicator_c00101.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00101 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_c00101 { 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_c00101" -> "#page-container .classname_c00101")
 */
.pf_c00101 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00101 { /* 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_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00101 { /* 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_c00101 { /* 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_c00101 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00101 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00101 {overflow:visible;}
  }
}
.c_c00101 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00101 { /* 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_c00101:after { /* webkit #35443 */
  content: '';
}
.t_c00101:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00101 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 */
}
.__c00101 { /* 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_c00101 { /* info for Javascript */
  display:none;
}
.l_c00101 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00101 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00101 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00101: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_c00101 {
    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_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00101.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_c00101 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00101;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.000000;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;}
.m100_c00101{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m119_c00101{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m22_c00101{transform:matrix(0.057250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057250,0.000000,0.000000,0.250000,0,0);}
.m23_c00101{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mad_c00101{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00101{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mac_c00101{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m18_c00101{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m20_c00101{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00101{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m118_c00101{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00101{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m60_c00101{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m106_c00101{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mae_c00101{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m75_c00101{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m33_c00101{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00101{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00101{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m68_c00101{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m108_c00101{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m88_c00101{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m67_c00101{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00101{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00101{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00101{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00101{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m58_c00101{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m73_c00101{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m87_c00101{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m30_c00101{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.maf_c00101{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m69_c00101{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00101{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00101{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00101{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m63_c00101{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00101{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf_c00101{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m65_c00101{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00101{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m66_c00101{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00101{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.med_c00101{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m74_c00101{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m49_c00101{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00101{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m105_c00101{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m61_c00101{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00101{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00101{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00101{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m57_c00101{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00101{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m53_c00101{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m45_c00101{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00101{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.me5_c00101{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00101{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00101{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mff_c00101{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00101{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.md2_c00101{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mec_c00101{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mc_c00101{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m21_c00101{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me2_c00101{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mba_c00101{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m59_c00101{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md3_c00101{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m86_c00101{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m70_c00101{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00101{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m72_c00101{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m78_c00101{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00101{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.me4_c00101{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00101{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m116_c00101{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m54_c00101{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00101{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m32_c00101{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00101{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00101{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m47_c00101{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00101{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m36_c00101{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md5_c00101{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m81_c00101{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m82_c00101{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00101{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m31_c00101{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00101{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m38_c00101{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00101{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00101{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mea_c00101{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00101{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me3_c00101{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m111_c00101{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00101{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m110_c00101{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00101{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8_c00101{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00101{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md1_c00101{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m64_c00101{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m52_c00101{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00101{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md8_c00101{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00101{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mef_c00101{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00101{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00101{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me8_c00101{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00101{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m43_c00101{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00101{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m17_c00101{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00101{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m16_c00101{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mde_c00101{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00101{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00101{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m29_c00101{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00101{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00101{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md6_c00101{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00101{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00101{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m10_c00101{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m51_c00101{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md4_c00101{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00101{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00101{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00101{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00101{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00101{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me_c00101{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m102_c00101{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00101{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00101{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00101{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00101{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00101{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00101{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00101{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00101{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m14_c00101{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m85_c00101{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m26_c00101{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m44_c00101{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md7_c00101{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00101{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00101{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m71_c00101{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00101{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00101{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m34_c00101{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00101{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mda_c00101{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00101{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00101{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00101{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00101{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m98_c00101{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m46_c00101{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m96_c00101{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m12_c00101{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mce_c00101{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00101{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m24_c00101{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00101{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00101{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00101{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00101{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00101{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m117_c00101{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me0_c00101{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00101{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m48_c00101{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m113_c00101{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00101{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00101{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m42_c00101{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00101{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00101{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m83_c00101{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m41_c00101{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m39_c00101{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00101{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m90_c00101{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m84_c00101{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00101{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00101{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md0_c00101{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m37_c00101{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m104_c00101{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00101{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m55_c00101{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m79_c00101{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.maa_c00101{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m35_c00101{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11_c00101{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mca_c00101{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m112_c00101{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00101{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md9_c00101{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00101{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m97_c00101{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00101{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00101{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md_c00101{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m62_c00101{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me6_c00101{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mab_c00101{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m50_c00101{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00101{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00101{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m40_c00101{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m103_c00101{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m56_c00101{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);}
.m94_c00101{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15_c00101{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m95_c00101{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00101{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m93_c00101{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me1_c00101{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00101{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m13_c00101{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m115_c00101{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00101{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00101{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00101{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.meb_c00101{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00101{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00101{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m89_c00101{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00101{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m109_c00101{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.me7_c00101{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00101{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m92_c00101{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me9_c00101{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00101{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m76_c00101{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00101{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00101{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m99_c00101{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m27_c00101{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00101{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00101{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00101{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00101{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m101_c00101{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m107_c00101{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m28_c00101{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m25_c00101{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00101{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m77_c00101{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00101{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mb_c00101{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.mee_c00101{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m91_c00101{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma_c00101{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m19_c00101{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00101{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00101{transform:matrix(0.389500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00101{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00101{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);}
.m80_c00101{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00101{transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);}
.m114_c00101{transform:matrix(0.606500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606500,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls0_c00101{letter-spacing:0.000000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{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__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00101{word-spacing:-15.844350px;}
.ws0_c00101{word-spacing:-9.687500px;}
.ws9_c00101{word-spacing:-0.347709px;}
.wsa_c00101{word-spacing:0.000000px;}
.ws8_c00101{word-spacing:2.926829px;}
.ws3_c00101{word-spacing:22.812500px;}
.ws5_c00101{word-spacing:23.428571px;}
.ws1_c00101{word-spacing:24.000000px;}
.ws2_c00101{word-spacing:25.714286px;}
.ws4_c00101{word-spacing:35.333333px;}
.ws6_c00101{word-spacing:144.000000px;}
._0_c00101{width:44.500000px;}
.fc0_c00101{color:transparent;}
.fs5_c00101{font-size:36.000000px;}
.fs4_c00101{font-size:48.000000px;}
.fs6_c00101{font-size:54.000000px;}
.fs2_c00101{font-size:60.000000px;}
.fs1_c00101{font-size:66.000000px;}
.fs3_c00101{font-size:72.000000px;}
.fs0_c00101{font-size:84.000000px;}
.y0_c00101{bottom:0.000000px;}
.y65_c00101{bottom:183.300000px;}
.y33_c00101{bottom:185.400000px;}
.y64_c00101{bottom:201.300000px;}
.y32_c00101{bottom:212.400000px;}
.y63_c00101{bottom:216.000000px;}
.y31_c00101{bottom:225.000000px;}
.y62_c00101{bottom:237.300000px;}
.y30_c00101{bottom:241.200000px;}
.y2f_c00101{bottom:254.400000px;}
.y61_c00101{bottom:263.550000px;}
.y2e_c00101{bottom:270.300000px;}
.y60_c00101{bottom:277.950000px;}
.y2d_c00101{bottom:283.350000px;}
.y5f_c00101{bottom:293.400000px;}
.y2c_c00101{bottom:300.600000px;}
.y5e_c00101{bottom:317.550000px;}
.y2b_c00101{bottom:320.400000px;}
.y5d_c00101{bottom:335.550000px;}
.y2a_c00101{bottom:339.150000px;}
.y5c_c00101{bottom:356.100000px;}
.y29_c00101{bottom:362.250000px;}
.y5b_c00101{bottom:375.600000px;}
.y28_c00101{bottom:380.550000px;}
.y5a_c00101{bottom:393.600000px;}
.y27_c00101{bottom:398.550000px;}
.y59_c00101{bottom:414.450000px;}
.y26_c00101{bottom:416.550000px;}
.y58_c00101{bottom:433.500000px;}
.y25_c00101{bottom:434.550000px;}
.y24_c00101{bottom:452.550000px;}
.y57_c00101{bottom:463.950000px;}
.y23_c00101{bottom:470.550000px;}
.y56_c00101{bottom:482.700000px;}
.y22_c00101{bottom:488.850000px;}
.y55_c00101{bottom:501.000000px;}
.y21_c00101{bottom:506.850000px;}
.y54_c00101{bottom:518.700000px;}
.y20_c00101{bottom:524.850000px;}
.y53_c00101{bottom:545.400000px;}
.y1f_c00101{bottom:547.200000px;}
.y52_c00101{bottom:563.700000px;}
.y1e_c00101{bottom:573.450000px;}
.y51_c00101{bottom:582.000000px;}
.y1d_c00101{bottom:595.050000px;}
.y50_c00101{bottom:599.700000px;}
.y1c_c00101{bottom:614.850000px;}
.y4f_c00101{bottom:626.700000px;}
.y1b_c00101{bottom:632.850000px;}
.y4e_c00101{bottom:645.150000px;}
.y1a_c00101{bottom:650.850000px;}
.y4d_c00101{bottom:666.750000px;}
.y19_c00101{bottom:668.850000px;}
.y4c_c00101{bottom:685.500000px;}
.y18_c00101{bottom:694.500000px;}
.y4b_c00101{bottom:707.850000px;}
.y17_c00101{bottom:717.450000px;}
.y4a_c00101{bottom:725.550000px;}
.y16_c00101{bottom:736.500000px;}
.y49_c00101{bottom:743.850000px;}
.y15_c00101{bottom:758.550000px;}
.y48_c00101{bottom:761.850000px;}
.y47_c00101{bottom:779.850000px;}
.y14_c00101{bottom:780.450000px;}
.y46_c00101{bottom:797.850000px;}
.y13_c00101{bottom:799.950000px;}
.y45_c00101{bottom:815.850000px;}
.y12_c00101{bottom:821.100000px;}
.y44_c00101{bottom:833.850000px;}
.y11_c00101{bottom:844.200000px;}
.y43_c00101{bottom:851.850000px;}
.y10_c00101{bottom:866.550000px;}
.y42_c00101{bottom:870.150000px;}
.yf_c00101{bottom:885.600000px;}
.y41_c00101{bottom:888.150000px;}
.y40_c00101{bottom:906.150000px;}
.ye_c00101{bottom:910.350000px;}
.yd_c00101{bottom:919.050000px;}
.y3f_c00101{bottom:924.150000px;}
.yb_c00101{bottom:941.100000px;}
.ya_c00101{bottom:941.400000px;}
.y3e_c00101{bottom:942.450000px;}
.yc_c00101{bottom:946.050000px;}
.y9_c00101{bottom:949.650000px;}
.y3d_c00101{bottom:960.450000px;}
.y8_c00101{bottom:966.300000px;}
.y3c_c00101{bottom:978.450000px;}
.y7_c00101{bottom:990.000000px;}
.y3b_c00101{bottom:996.450000px;}
.y6_c00101{bottom:1011.600000px;}
.y3a_c00101{bottom:1014.450000px;}
.y39_c00101{bottom:1032.450000px;}
.y5_c00101{bottom:1035.300000px;}
.y38_c00101{bottom:1059.600000px;}
.y4_c00101{bottom:1074.600000px;}
.y37_c00101{bottom:1077.900000px;}
.y36_c00101{bottom:1095.600000px;}
.y3_c00101{bottom:1110.900000px;}
.y35_c00101{bottom:1113.900000px;}
.y2_c00101{bottom:1130.400000px;}
.y34_c00101{bottom:1131.900000px;}
.y1_c00101{bottom:1158.900000px;}
.h7_c00101{height:36.000000px;}
.h6_c00101{height:48.000000px;}
.h8_c00101{height:54.000000px;}
.h4_c00101{height:60.000000px;}
.h3_c00101{height:66.000000px;}
.h5_c00101{height:72.000000px;}
.h2_c00101{height:84.000000px;}
.h1_c00101{height:1274.250000px;}
.h0_c00101{height:1274.400056px;}
.w1_c00101{width:953.250000px;}
.w0_c00101{width:953.280030px;}
.x0_c00101{left:0.000000px;}
.xc_c00101{left:165.900000px;}
.x1_c00101{left:167.400000px;}
.x47_c00101{left:170.700000px;}
.x5a_c00101{left:171.750000px;}
.x7c_c00101{left:174.300000px;}
.x9b_c00101{left:177.150000px;}
.x22_c00101{left:184.800000px;}
.x39_c00101{left:188.400000px;}
.x53_c00101{left:189.450000px;}
.x92_c00101{left:190.800000px;}
.x6b_c00101{left:191.850000px;}
.x60_c00101{left:192.900000px;}
.x80_c00101{left:194.100000px;}
.x3_c00101{left:203.400000px;}
.x11_c00101{left:205.500000px;}
.x2b_c00101{left:206.700000px;}
.x3c_c00101{left:208.050000px;}
.x54_c00101{left:209.550000px;}
.x1a_c00101{left:213.000000px;}
.x7d_c00101{left:218.250000px;}
.x1f_c00101{left:219.300000px;}
.x61_c00101{left:220.950000px;}
.x93_c00101{left:224.250000px;}
.x8d_c00101{left:227.550000px;}
.x68_c00101{left:228.600000px;}
.x65_c00101{left:229.950000px;}
.x29_c00101{left:231.750000px;}
.x88_c00101{left:234.000000px;}
.x2c_c00101{left:237.600000px;}
.x6c_c00101{left:239.400000px;}
.x71_c00101{left:241.200000px;}
.x4e_c00101{left:242.400000px;}
.x87_c00101{left:244.650000px;}
.x8e_c00101{left:246.300000px;}
.x20_c00101{left:247.800000px;}
.x23_c00101{left:248.850000px;}
.x3a_c00101{left:252.150000px;}
.xd_c00101{left:254.400000px;}
.x89_c00101{left:255.600000px;}
.x12_c00101{left:258.000000px;}
.x33_c00101{left:260.400000px;}
.x3d_c00101{left:262.350000px;}
.x25_c00101{left:265.650000px;}
.x4f_c00101{left:266.850000px;}
.x62_c00101{left:268.800000px;}
.xa_c00101{left:270.300000px;}
.x56_c00101{left:271.800000px;}
.x48_c00101{left:273.000000px;}
.x3f_c00101{left:274.650000px;}
.x5b_c00101{left:276.000000px;}
.x16_c00101{left:277.050000px;}
.x2d_c00101{left:278.250000px;}
.x69_c00101{left:280.500000px;}
.x6d_c00101{left:281.550000px;}
.x1b_c00101{left:283.200000px;}
.x21_c00101{left:284.550000px;}
.x7e_c00101{left:286.350000px;}
.x8f_c00101{left:287.700000px;}
.x2e_c00101{left:289.050000px;}
.x4_c00101{left:290.850000px;}
.x8_c00101{left:292.050000px;}
.x30_c00101{left:293.850000px;}
.x82_c00101{left:296.850000px;}
.x90_c00101{left:298.500000px;}
.x13_c00101{left:300.450000px;}
.x55_c00101{left:301.650000px;}
.x40_c00101{left:304.950000px;}
.x8a_c00101{left:306.000000px;}
.x4b_c00101{left:307.200000px;}
.x78_c00101{left:308.550000px;}
.x94_c00101{left:309.600000px;}
.x3b_c00101{left:311.550000px;}
.x24_c00101{left:314.400000px;}
.x31_c00101{left:316.950000px;}
.x6e_c00101{left:318.600000px;}
.x98_c00101{left:321.000000px;}
.x9_c00101{left:322.650000px;}
.x5_c00101{left:326.100000px;}
.xe_c00101{left:327.150000px;}
.x45_c00101{left:328.800000px;}
.x76_c00101{left:329.850000px;}
.x9a_c00101{left:330.900000px;}
.x57_c00101{left:333.000000px;}
.x41_c00101{left:335.250000px;}
.x34_c00101{left:336.300000px;}
.xb_c00101{left:338.700000px;}
.x83_c00101{left:340.050000px;}
.x32_c00101{left:341.400000px;}
.x2a_c00101{left:343.350000px;}
.x1c_c00101{left:345.150000px;}
.x14_c00101{left:348.300000px;}
.x26_c00101{left:349.950000px;}
.x58_c00101{left:352.800000px;}
.x6f_c00101{left:354.900000px;}
.x5c_c00101{left:356.700000px;}
.x1d_c00101{left:358.050000px;}
.x9c_c00101{left:359.850000px;}
.x2f_c00101{left:361.050000px;}
.x4c_c00101{left:362.700000px;}
.x3e_c00101{left:364.200000px;}
.xf_c00101{left:367.500000px;}
.x72_c00101{left:369.750000px;}
.x59_c00101{left:372.300000px;}
.x5d_c00101{left:379.800000px;}
.x35_c00101{left:381.000000px;}
.x46_c00101{left:383.100000px;}
.x42_c00101{left:384.600000px;}
.x99_c00101{left:386.850000px;}
.x84_c00101{left:387.900000px;}
.x66_c00101{left:391.200000px;}
.x95_c00101{left:393.450000px;}
.x49_c00101{left:397.650000px;}
.x91_c00101{left:399.300000px;}
.x73_c00101{left:400.350000px;}
.x1e_c00101{left:401.400000px;}
.x15_c00101{left:403.050000px;}
.x81_c00101{left:404.250000px;}
.x7b_c00101{left:405.450000px;}
.x6_c00101{left:406.800000px;}
.x51_c00101{left:408.600000px;}
.x27_c00101{left:411.450000px;}
.x2_c00101{left:412.950000px;}
.x96_c00101{left:414.900000px;}
.x43_c00101{left:415.950000px;}
.x10_c00101{left:417.150000px;}
.x36_c00101{left:418.500000px;}
.x4d_c00101{left:420.300000px;}
.x19_c00101{left:422.250000px;}
.x6a_c00101{left:424.500000px;}
.x79_c00101{left:427.050000px;}
.x50_c00101{left:432.450000px;}
.x44_c00101{left:435.750000px;}
.x67_c00101{left:437.250000px;}
.x5e_c00101{left:442.050000px;}
.x77_c00101{left:444.300000px;}
.x17_c00101{left:445.350000px;}
.x37_c00101{left:447.300000px;}
.x7a_c00101{left:450.150000px;}
.x70_c00101{left:453.900000px;}
.x7_c00101{left:456.900000px;}
.x52_c00101{left:460.500000px;}
.x64_c00101{left:462.150000px;}
.x85_c00101{left:463.200000px;}
.x38_c00101{left:464.550000px;}
.x9d_c00101{left:466.350000px;}
.x18_c00101{left:468.750000px;}
.x8b_c00101{left:470.550000px;}
.x97_c00101{left:472.650000px;}
.x74_c00101{left:474.600000px;}
.x5f_c00101{left:480.150000px;}
.x63_c00101{left:481.500000px;}
.x28_c00101{left:483.750000px;}
.x4a_c00101{left:485.400000px;}
.x7f_c00101{left:486.750000px;}
.x86_c00101{left:497.700000px;}
.x8c_c00101{left:499.650000px;}
.x75_c00101{left:501.600000px;}
.x13c_c00101{left:524.550000px;}
.x10b_c00101{left:532.050000px;}
.x12b_c00101{left:533.550000px;}
.x13d_c00101{left:535.050000px;}
.xa5_c00101{left:546.150000px;}
.x9e_c00101{left:547.200000px;}
.xf6_c00101{left:548.250000px;}
.xf9_c00101{left:549.450000px;}
.x126_c00101{left:551.100000px;}
.xbc_c00101{left:564.450000px;}
.x124_c00101{left:569.400000px;}
.x13a_c00101{left:572.700000px;}
.xcf_c00101{left:574.800000px;}
.x123_c00101{left:576.300000px;}
.x12c_c00101{left:579.300000px;}
.xfa_c00101{left:581.550000px;}
.xc9_c00101{left:584.400000px;}
.x102_c00101{left:587.100000px;}
.xd6_c00101{left:588.600000px;}
.x127_c00101{left:589.650000px;}
.x109_c00101{left:591.000000px;}
.xe6_c00101{left:592.350000px;}
.x101_c00101{left:593.550000px;}
.xbd_c00101{left:596.100000px;}
.xc4_c00101{left:598.500000px;}
.x116_c00101{left:599.850000px;}
.xac_c00101{left:600.900000px;}
.x9f_c00101{left:602.250000px;}
.xca_c00101{left:604.500000px;}
.xda_c00101{left:605.850000px;}
.xdf_c00101{left:607.500000px;}
.x103_c00101{left:610.200000px;}
.x10c_c00101{left:611.250000px;}
.xa6_c00101{left:613.500000px;}
.xf0_c00101{left:615.600000px;}
.xd0_c00101{left:617.250000px;}
.xe7_c00101{left:620.100000px;}
.xb3_c00101{left:622.950000px;}
.xb8_c00101{left:625.050000px;}
.x110_c00101{left:627.300000px;}
.xd7_c00101{left:631.050000px;}
.x133_c00101{left:634.350000px;}
.x117_c00101{left:636.150000px;}
.xad_c00101{left:637.650000px;}
.xe0_c00101{left:639.600000px;}
.xbe_c00101{left:641.400000px;}
.xb9_c00101{left:642.750000px;}
.x135_c00101{left:643.950000px;}
.xcb_c00101{left:645.900000px;}
.x12d_c00101{left:647.400000px;}
.x10d_c00101{left:648.750000px;}
.x111_c00101{left:651.450000px;}
.xf1_c00101{left:653.700000px;}
.xd1_c00101{left:655.350000px;}
.xfb_c00101{left:659.700000px;}
.x120_c00101{left:661.500000px;}
.x107_c00101{left:663.750000px;}
.xdb_c00101{left:666.000000px;}
.xed_c00101{left:669.450000px;}
.xbf_c00101{left:670.500000px;}
.xb4_c00101{left:671.850000px;}
.xa0_c00101{left:673.500000px;}
.xa7_c00101{left:675.000000px;}
.x11a_c00101{left:676.200000px;}
.xfe_c00101{left:677.250000px;}
.x113_c00101{left:680.100000px;}
.x112_c00101{left:682.800000px;}
.xe1_c00101{left:685.650000px;}
.x104_c00101{left:687.600000px;}
.x128_c00101{left:689.400000px;}
.xf2_c00101{left:691.500000px;}
.xb5_c00101{left:693.750000px;}
.xa8_c00101{left:695.850000px;}
.xc0_c00101{left:697.500000px;}
.x114_c00101{left:700.200000px;}
.x12e_c00101{left:701.400000px;}
.xa1_c00101{left:704.100000px;}
.xc1_c00101{left:706.200000px;}
.x108_c00101{left:707.700000px;}
.x13b_c00101{left:709.500000px;}
.xe8_c00101{left:710.550000px;}
.x132_c00101{left:712.200000px;}
.xd2_c00101{left:713.700000px;}
.xae_c00101{left:716.550000px;}
.xdc_c00101{left:717.900000px;}
.xcc_c00101{left:719.400000px;}
.xc5_c00101{left:722.250000px;}
.x10e_c00101{left:723.300000px;}
.x129_c00101{left:724.350000px;}
.xf3_c00101{left:725.400000px;}
.xde_c00101{left:726.600000px;}
.xfc_c00101{left:731.700000px;}
.x11b_c00101{left:732.750000px;}
.x115_c00101{left:734.700000px;}
.xff_c00101{left:735.900000px;}
.x136_c00101{left:738.000000px;}
.xcd_c00101{left:739.200000px;}
.xa2_c00101{left:741.600000px;}
.x118_c00101{left:743.400000px;}
.xa9_c00101{left:744.750000px;}
.xd3_c00101{left:746.100000px;}
.xe2_c00101{left:747.150000px;}
.xe9_c00101{left:749.550000px;}
.xdd_c00101{left:751.350000px;}
.x122_c00101{left:752.700000px;}
.xf4_c00101{left:753.900000px;}
.xb6_c00101{left:755.250000px;}
.x134_c00101{left:757.050000px;}
.x121_c00101{left:759.150000px;}
.x11c_c00101{left:760.200000px;}
.xc2_c00101{left:761.250000px;}
.xba_c00101{left:763.350000px;}
.x138_c00101{left:764.550000px;}
.x105_c00101{left:767.550000px;}
.x119_c00101{left:769.050000px;}
.xc3_c00101{left:770.550000px;}
.xaf_c00101{left:771.600000px;}
.xea_c00101{left:773.700000px;}
.xeb_c00101{left:775.200000px;}
.x10f_c00101{left:777.000000px;}
.x139_c00101{left:779.700000px;}
.x10a_c00101{left:780.750000px;}
.x12f_c00101{left:782.400000px;}
.xee_c00101{left:783.600000px;}
.x11d_c00101{left:787.200000px;}
.x11e_c00101{left:789.000000px;}
.xa3_c00101{left:790.950000px;}
.xf7_c00101{left:792.150000px;}
.xfd_c00101{left:793.500000px;}
.xce_c00101{left:795.750000px;}
.xc6_c00101{left:797.550000px;}
.xbb_c00101{left:799.050000px;}
.xd4_c00101{left:801.450000px;}
.x130_c00101{left:802.950000px;}
.xe3_c00101{left:804.450000px;}
.xb0_c00101{left:805.500000px;}
.x137_c00101{left:808.050000px;}
.xaa_c00101{left:811.050000px;}
.xec_c00101{left:812.250000px;}
.xc7_c00101{left:814.500000px;}
.xf5_c00101{left:817.950000px;}
.xb1_c00101{left:820.200000px;}
.xd5_c00101{left:821.550000px;}
.x12a_c00101{left:822.600000px;}
.xe4_c00101{left:825.300000px;}
.xf8_c00101{left:828.150000px;}
.x125_c00101{left:829.350000px;}
.xb7_c00101{left:832.350000px;}
.x131_c00101{left:834.300000px;}
.xd8_c00101{left:835.800000px;}
.xab_c00101{left:838.050000px;}
.xa4_c00101{left:844.650000px;}
.xef_c00101{left:846.600000px;}
.xd9_c00101{left:847.650000px;}
.xe5_c00101{left:850.800000px;}
.xc8_c00101{left:852.300000px;}
.x11f_c00101{left:853.800000px;}
.x100_c00101{left:855.300000px;}
.x106_c00101{left:857.250000px;}
.xb2_c00101{left:864.150000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws7_c00101{word-spacing:-14.083866pt;}
.ws0_c00101{word-spacing:-8.611111pt;}
.ws9_c00101{word-spacing:-0.309075pt;}
.wsa_c00101{word-spacing:0.000000pt;}
.ws8_c00101{word-spacing:2.601626pt;}
.ws3_c00101{word-spacing:20.277778pt;}
.ws5_c00101{word-spacing:20.825397pt;}
.ws1_c00101{word-spacing:21.333333pt;}
.ws2_c00101{word-spacing:22.857143pt;}
.ws4_c00101{word-spacing:31.407407pt;}
.ws6_c00101{word-spacing:128.000000pt;}
._0_c00101{width:39.555556pt;}
.fs5_c00101{font-size:32.000000pt;}
.fs4_c00101{font-size:42.666667pt;}
.fs6_c00101{font-size:48.000000pt;}
.fs2_c00101{font-size:53.333333pt;}
.fs1_c00101{font-size:58.666667pt;}
.fs3_c00101{font-size:64.000000pt;}
.fs0_c00101{font-size:74.666667pt;}
.y0_c00101{bottom:0.000000pt;}
.y65_c00101{bottom:162.933333pt;}
.y33_c00101{bottom:164.800000pt;}
.y64_c00101{bottom:178.933333pt;}
.y32_c00101{bottom:188.800000pt;}
.y63_c00101{bottom:192.000000pt;}
.y31_c00101{bottom:200.000000pt;}
.y62_c00101{bottom:210.933333pt;}
.y30_c00101{bottom:214.400000pt;}
.y2f_c00101{bottom:226.133333pt;}
.y61_c00101{bottom:234.266667pt;}
.y2e_c00101{bottom:240.266667pt;}
.y60_c00101{bottom:247.066667pt;}
.y2d_c00101{bottom:251.866667pt;}
.y5f_c00101{bottom:260.800000pt;}
.y2c_c00101{bottom:267.200000pt;}
.y5e_c00101{bottom:282.266667pt;}
.y2b_c00101{bottom:284.800000pt;}
.y5d_c00101{bottom:298.266667pt;}
.y2a_c00101{bottom:301.466667pt;}
.y5c_c00101{bottom:316.533333pt;}
.y29_c00101{bottom:322.000000pt;}
.y5b_c00101{bottom:333.866667pt;}
.y28_c00101{bottom:338.266667pt;}
.y5a_c00101{bottom:349.866667pt;}
.y27_c00101{bottom:354.266667pt;}
.y59_c00101{bottom:368.400000pt;}
.y26_c00101{bottom:370.266667pt;}
.y58_c00101{bottom:385.333333pt;}
.y25_c00101{bottom:386.266667pt;}
.y24_c00101{bottom:402.266667pt;}
.y57_c00101{bottom:412.400000pt;}
.y23_c00101{bottom:418.266667pt;}
.y56_c00101{bottom:429.066667pt;}
.y22_c00101{bottom:434.533333pt;}
.y55_c00101{bottom:445.333333pt;}
.y21_c00101{bottom:450.533333pt;}
.y54_c00101{bottom:461.066667pt;}
.y20_c00101{bottom:466.533333pt;}
.y53_c00101{bottom:484.800000pt;}
.y1f_c00101{bottom:486.400000pt;}
.y52_c00101{bottom:501.066667pt;}
.y1e_c00101{bottom:509.733333pt;}
.y51_c00101{bottom:517.333333pt;}
.y1d_c00101{bottom:528.933333pt;}
.y50_c00101{bottom:533.066667pt;}
.y1c_c00101{bottom:546.533333pt;}
.y4f_c00101{bottom:557.066667pt;}
.y1b_c00101{bottom:562.533333pt;}
.y4e_c00101{bottom:573.466667pt;}
.y1a_c00101{bottom:578.533333pt;}
.y4d_c00101{bottom:592.666667pt;}
.y19_c00101{bottom:594.533333pt;}
.y4c_c00101{bottom:609.333333pt;}
.y18_c00101{bottom:617.333333pt;}
.y4b_c00101{bottom:629.200000pt;}
.y17_c00101{bottom:637.733333pt;}
.y4a_c00101{bottom:644.933333pt;}
.y16_c00101{bottom:654.666667pt;}
.y49_c00101{bottom:661.200000pt;}
.y15_c00101{bottom:674.266667pt;}
.y48_c00101{bottom:677.200000pt;}
.y47_c00101{bottom:693.200000pt;}
.y14_c00101{bottom:693.733333pt;}
.y46_c00101{bottom:709.200000pt;}
.y13_c00101{bottom:711.066667pt;}
.y45_c00101{bottom:725.200000pt;}
.y12_c00101{bottom:729.866667pt;}
.y44_c00101{bottom:741.200000pt;}
.y11_c00101{bottom:750.400000pt;}
.y43_c00101{bottom:757.200000pt;}
.y10_c00101{bottom:770.266667pt;}
.y42_c00101{bottom:773.466667pt;}
.yf_c00101{bottom:787.200000pt;}
.y41_c00101{bottom:789.466667pt;}
.y40_c00101{bottom:805.466667pt;}
.ye_c00101{bottom:809.200000pt;}
.yd_c00101{bottom:816.933333pt;}
.y3f_c00101{bottom:821.466667pt;}
.yb_c00101{bottom:836.533333pt;}
.ya_c00101{bottom:836.800000pt;}
.y3e_c00101{bottom:837.733333pt;}
.yc_c00101{bottom:840.933333pt;}
.y9_c00101{bottom:844.133333pt;}
.y3d_c00101{bottom:853.733333pt;}
.y8_c00101{bottom:858.933333pt;}
.y3c_c00101{bottom:869.733333pt;}
.y7_c00101{bottom:880.000000pt;}
.y3b_c00101{bottom:885.733333pt;}
.y6_c00101{bottom:899.200000pt;}
.y3a_c00101{bottom:901.733333pt;}
.y39_c00101{bottom:917.733333pt;}
.y5_c00101{bottom:920.266667pt;}
.y38_c00101{bottom:941.866667pt;}
.y4_c00101{bottom:955.200000pt;}
.y37_c00101{bottom:958.133333pt;}
.y36_c00101{bottom:973.866667pt;}
.y3_c00101{bottom:987.466667pt;}
.y35_c00101{bottom:990.133333pt;}
.y2_c00101{bottom:1004.800000pt;}
.y34_c00101{bottom:1006.133333pt;}
.y1_c00101{bottom:1030.133333pt;}
.h7_c00101{height:32.000000pt;}
.h6_c00101{height:42.666667pt;}
.h8_c00101{height:48.000000pt;}
.h4_c00101{height:53.333333pt;}
.h3_c00101{height:58.666667pt;}
.h5_c00101{height:64.000000pt;}
.h2_c00101{height:74.666667pt;}
.h1_c00101{height:1132.666667pt;}
.h0_c00101{height:1132.800049pt;}
.w1_c00101{width:847.333333pt;}
.w0_c00101{width:847.360027pt;}
.x0_c00101{left:0.000000pt;}
.xc_c00101{left:147.466667pt;}
.x1_c00101{left:148.800000pt;}
.x47_c00101{left:151.733333pt;}
.x5a_c00101{left:152.666667pt;}
.x7c_c00101{left:154.933333pt;}
.x9b_c00101{left:157.466667pt;}
.x22_c00101{left:164.266667pt;}
.x39_c00101{left:167.466667pt;}
.x53_c00101{left:168.400000pt;}
.x92_c00101{left:169.600000pt;}
.x6b_c00101{left:170.533333pt;}
.x60_c00101{left:171.466667pt;}
.x80_c00101{left:172.533333pt;}
.x3_c00101{left:180.800000pt;}
.x11_c00101{left:182.666667pt;}
.x2b_c00101{left:183.733333pt;}
.x3c_c00101{left:184.933333pt;}
.x54_c00101{left:186.266667pt;}
.x1a_c00101{left:189.333333pt;}
.x7d_c00101{left:194.000000pt;}
.x1f_c00101{left:194.933333pt;}
.x61_c00101{left:196.400000pt;}
.x93_c00101{left:199.333333pt;}
.x8d_c00101{left:202.266667pt;}
.x68_c00101{left:203.200000pt;}
.x65_c00101{left:204.400000pt;}
.x29_c00101{left:206.000000pt;}
.x88_c00101{left:208.000000pt;}
.x2c_c00101{left:211.200000pt;}
.x6c_c00101{left:212.800000pt;}
.x71_c00101{left:214.400000pt;}
.x4e_c00101{left:215.466667pt;}
.x87_c00101{left:217.466667pt;}
.x8e_c00101{left:218.933333pt;}
.x20_c00101{left:220.266667pt;}
.x23_c00101{left:221.200000pt;}
.x3a_c00101{left:224.133333pt;}
.xd_c00101{left:226.133333pt;}
.x89_c00101{left:227.200000pt;}
.x12_c00101{left:229.333333pt;}
.x33_c00101{left:231.466667pt;}
.x3d_c00101{left:233.200000pt;}
.x25_c00101{left:236.133333pt;}
.x4f_c00101{left:237.200000pt;}
.x62_c00101{left:238.933333pt;}
.xa_c00101{left:240.266667pt;}
.x56_c00101{left:241.600000pt;}
.x48_c00101{left:242.666667pt;}
.x3f_c00101{left:244.133333pt;}
.x5b_c00101{left:245.333333pt;}
.x16_c00101{left:246.266667pt;}
.x2d_c00101{left:247.333333pt;}
.x69_c00101{left:249.333333pt;}
.x6d_c00101{left:250.266667pt;}
.x1b_c00101{left:251.733333pt;}
.x21_c00101{left:252.933333pt;}
.x7e_c00101{left:254.533333pt;}
.x8f_c00101{left:255.733333pt;}
.x2e_c00101{left:256.933333pt;}
.x4_c00101{left:258.533333pt;}
.x8_c00101{left:259.600000pt;}
.x30_c00101{left:261.200000pt;}
.x82_c00101{left:263.866667pt;}
.x90_c00101{left:265.333333pt;}
.x13_c00101{left:267.066667pt;}
.x55_c00101{left:268.133333pt;}
.x40_c00101{left:271.066667pt;}
.x8a_c00101{left:272.000000pt;}
.x4b_c00101{left:273.066667pt;}
.x78_c00101{left:274.266667pt;}
.x94_c00101{left:275.200000pt;}
.x3b_c00101{left:276.933333pt;}
.x24_c00101{left:279.466667pt;}
.x31_c00101{left:281.733333pt;}
.x6e_c00101{left:283.200000pt;}
.x98_c00101{left:285.333333pt;}
.x9_c00101{left:286.800000pt;}
.x5_c00101{left:289.866667pt;}
.xe_c00101{left:290.800000pt;}
.x45_c00101{left:292.266667pt;}
.x76_c00101{left:293.200000pt;}
.x9a_c00101{left:294.133333pt;}
.x57_c00101{left:296.000000pt;}
.x41_c00101{left:298.000000pt;}
.x34_c00101{left:298.933333pt;}
.xb_c00101{left:301.066667pt;}
.x83_c00101{left:302.266667pt;}
.x32_c00101{left:303.466667pt;}
.x2a_c00101{left:305.200000pt;}
.x1c_c00101{left:306.800000pt;}
.x14_c00101{left:309.600000pt;}
.x26_c00101{left:311.066667pt;}
.x58_c00101{left:313.600000pt;}
.x6f_c00101{left:315.466667pt;}
.x5c_c00101{left:317.066667pt;}
.x1d_c00101{left:318.266667pt;}
.x9c_c00101{left:319.866667pt;}
.x2f_c00101{left:320.933333pt;}
.x4c_c00101{left:322.400000pt;}
.x3e_c00101{left:323.733333pt;}
.xf_c00101{left:326.666667pt;}
.x72_c00101{left:328.666667pt;}
.x59_c00101{left:330.933333pt;}
.x5d_c00101{left:337.600000pt;}
.x35_c00101{left:338.666667pt;}
.x46_c00101{left:340.533333pt;}
.x42_c00101{left:341.866667pt;}
.x99_c00101{left:343.866667pt;}
.x84_c00101{left:344.800000pt;}
.x66_c00101{left:347.733333pt;}
.x95_c00101{left:349.733333pt;}
.x49_c00101{left:353.466667pt;}
.x91_c00101{left:354.933333pt;}
.x73_c00101{left:355.866667pt;}
.x1e_c00101{left:356.800000pt;}
.x15_c00101{left:358.266667pt;}
.x81_c00101{left:359.333333pt;}
.x7b_c00101{left:360.400000pt;}
.x6_c00101{left:361.600000pt;}
.x51_c00101{left:363.200000pt;}
.x27_c00101{left:365.733333pt;}
.x2_c00101{left:367.066667pt;}
.x96_c00101{left:368.800000pt;}
.x43_c00101{left:369.733333pt;}
.x10_c00101{left:370.800000pt;}
.x36_c00101{left:372.000000pt;}
.x4d_c00101{left:373.600000pt;}
.x19_c00101{left:375.333333pt;}
.x6a_c00101{left:377.333333pt;}
.x79_c00101{left:379.600000pt;}
.x50_c00101{left:384.400000pt;}
.x44_c00101{left:387.333333pt;}
.x67_c00101{left:388.666667pt;}
.x5e_c00101{left:392.933333pt;}
.x77_c00101{left:394.933333pt;}
.x17_c00101{left:395.866667pt;}
.x37_c00101{left:397.600000pt;}
.x7a_c00101{left:400.133333pt;}
.x70_c00101{left:403.466667pt;}
.x7_c00101{left:406.133333pt;}
.x52_c00101{left:409.333333pt;}
.x64_c00101{left:410.800000pt;}
.x85_c00101{left:411.733333pt;}
.x38_c00101{left:412.933333pt;}
.x9d_c00101{left:414.533333pt;}
.x18_c00101{left:416.666667pt;}
.x8b_c00101{left:418.266667pt;}
.x97_c00101{left:420.133333pt;}
.x74_c00101{left:421.866667pt;}
.x5f_c00101{left:426.800000pt;}
.x63_c00101{left:428.000000pt;}
.x28_c00101{left:430.000000pt;}
.x4a_c00101{left:431.466667pt;}
.x7f_c00101{left:432.666667pt;}
.x86_c00101{left:442.400000pt;}
.x8c_c00101{left:444.133333pt;}
.x75_c00101{left:445.866667pt;}
.x13c_c00101{left:466.266667pt;}
.x10b_c00101{left:472.933333pt;}
.x12b_c00101{left:474.266667pt;}
.x13d_c00101{left:475.600000pt;}
.xa5_c00101{left:485.466667pt;}
.x9e_c00101{left:486.400000pt;}
.xf6_c00101{left:487.333333pt;}
.xf9_c00101{left:488.400000pt;}
.x126_c00101{left:489.866667pt;}
.xbc_c00101{left:501.733333pt;}
.x124_c00101{left:506.133333pt;}
.x13a_c00101{left:509.066667pt;}
.xcf_c00101{left:510.933333pt;}
.x123_c00101{left:512.266667pt;}
.x12c_c00101{left:514.933333pt;}
.xfa_c00101{left:516.933333pt;}
.xc9_c00101{left:519.466667pt;}
.x102_c00101{left:521.866667pt;}
.xd6_c00101{left:523.200000pt;}
.x127_c00101{left:524.133333pt;}
.x109_c00101{left:525.333333pt;}
.xe6_c00101{left:526.533333pt;}
.x101_c00101{left:527.600000pt;}
.xbd_c00101{left:529.866667pt;}
.xc4_c00101{left:532.000000pt;}
.x116_c00101{left:533.200000pt;}
.xac_c00101{left:534.133333pt;}
.x9f_c00101{left:535.333333pt;}
.xca_c00101{left:537.333333pt;}
.xda_c00101{left:538.533333pt;}
.xdf_c00101{left:540.000000pt;}
.x103_c00101{left:542.400000pt;}
.x10c_c00101{left:543.333333pt;}
.xa6_c00101{left:545.333333pt;}
.xf0_c00101{left:547.200000pt;}
.xd0_c00101{left:548.666667pt;}
.xe7_c00101{left:551.200000pt;}
.xb3_c00101{left:553.733333pt;}
.xb8_c00101{left:555.600000pt;}
.x110_c00101{left:557.600000pt;}
.xd7_c00101{left:560.933333pt;}
.x133_c00101{left:563.866667pt;}
.x117_c00101{left:565.466667pt;}
.xad_c00101{left:566.800000pt;}
.xe0_c00101{left:568.533333pt;}
.xbe_c00101{left:570.133333pt;}
.xb9_c00101{left:571.333333pt;}
.x135_c00101{left:572.400000pt;}
.xcb_c00101{left:574.133333pt;}
.x12d_c00101{left:575.466667pt;}
.x10d_c00101{left:576.666667pt;}
.x111_c00101{left:579.066667pt;}
.xf1_c00101{left:581.066667pt;}
.xd1_c00101{left:582.533333pt;}
.xfb_c00101{left:586.400000pt;}
.x120_c00101{left:588.000000pt;}
.x107_c00101{left:590.000000pt;}
.xdb_c00101{left:592.000000pt;}
.xed_c00101{left:595.066667pt;}
.xbf_c00101{left:596.000000pt;}
.xb4_c00101{left:597.200000pt;}
.xa0_c00101{left:598.666667pt;}
.xa7_c00101{left:600.000000pt;}
.x11a_c00101{left:601.066667pt;}
.xfe_c00101{left:602.000000pt;}
.x113_c00101{left:604.533333pt;}
.x112_c00101{left:606.933333pt;}
.xe1_c00101{left:609.466667pt;}
.x104_c00101{left:611.200000pt;}
.x128_c00101{left:612.800000pt;}
.xf2_c00101{left:614.666667pt;}
.xb5_c00101{left:616.666667pt;}
.xa8_c00101{left:618.533333pt;}
.xc0_c00101{left:620.000000pt;}
.x114_c00101{left:622.400000pt;}
.x12e_c00101{left:623.466667pt;}
.xa1_c00101{left:625.866667pt;}
.xc1_c00101{left:627.733333pt;}
.x108_c00101{left:629.066667pt;}
.x13b_c00101{left:630.666667pt;}
.xe8_c00101{left:631.600000pt;}
.x132_c00101{left:633.066667pt;}
.xd2_c00101{left:634.400000pt;}
.xae_c00101{left:636.933333pt;}
.xdc_c00101{left:638.133333pt;}
.xcc_c00101{left:639.466667pt;}
.xc5_c00101{left:642.000000pt;}
.x10e_c00101{left:642.933333pt;}
.x129_c00101{left:643.866667pt;}
.xf3_c00101{left:644.800000pt;}
.xde_c00101{left:645.866667pt;}
.xfc_c00101{left:650.400000pt;}
.x11b_c00101{left:651.333333pt;}
.x115_c00101{left:653.066667pt;}
.xff_c00101{left:654.133333pt;}
.x136_c00101{left:656.000000pt;}
.xcd_c00101{left:657.066667pt;}
.xa2_c00101{left:659.200000pt;}
.x118_c00101{left:660.800000pt;}
.xa9_c00101{left:662.000000pt;}
.xd3_c00101{left:663.200000pt;}
.xe2_c00101{left:664.133333pt;}
.xe9_c00101{left:666.266667pt;}
.xdd_c00101{left:667.866667pt;}
.x122_c00101{left:669.066667pt;}
.xf4_c00101{left:670.133333pt;}
.xb6_c00101{left:671.333333pt;}
.x134_c00101{left:672.933333pt;}
.x121_c00101{left:674.800000pt;}
.x11c_c00101{left:675.733333pt;}
.xc2_c00101{left:676.666667pt;}
.xba_c00101{left:678.533333pt;}
.x138_c00101{left:679.600000pt;}
.x105_c00101{left:682.266667pt;}
.x119_c00101{left:683.600000pt;}
.xc3_c00101{left:684.933333pt;}
.xaf_c00101{left:685.866667pt;}
.xea_c00101{left:687.733333pt;}
.xeb_c00101{left:689.066667pt;}
.x10f_c00101{left:690.666667pt;}
.x139_c00101{left:693.066667pt;}
.x10a_c00101{left:694.000000pt;}
.x12f_c00101{left:695.466667pt;}
.xee_c00101{left:696.533333pt;}
.x11d_c00101{left:699.733333pt;}
.x11e_c00101{left:701.333333pt;}
.xa3_c00101{left:703.066667pt;}
.xf7_c00101{left:704.133333pt;}
.xfd_c00101{left:705.333333pt;}
.xce_c00101{left:707.333333pt;}
.xc6_c00101{left:708.933333pt;}
.xbb_c00101{left:710.266667pt;}
.xd4_c00101{left:712.400000pt;}
.x130_c00101{left:713.733333pt;}
.xe3_c00101{left:715.066667pt;}
.xb0_c00101{left:716.000000pt;}
.x137_c00101{left:718.266667pt;}
.xaa_c00101{left:720.933333pt;}
.xec_c00101{left:722.000000pt;}
.xc7_c00101{left:724.000000pt;}
.xf5_c00101{left:727.066667pt;}
.xb1_c00101{left:729.066667pt;}
.xd5_c00101{left:730.266667pt;}
.x12a_c00101{left:731.200000pt;}
.xe4_c00101{left:733.600000pt;}
.xf8_c00101{left:736.133333pt;}
.x125_c00101{left:737.200000pt;}
.xb7_c00101{left:739.866667pt;}
.x131_c00101{left:741.600000pt;}
.xd8_c00101{left:742.933333pt;}
.xab_c00101{left:744.933333pt;}
.xa4_c00101{left:750.800000pt;}
.xef_c00101{left:752.533333pt;}
.xd9_c00101{left:753.466667pt;}
.xe5_c00101{left:756.266667pt;}
.xc8_c00101{left:757.600000pt;}
.x11f_c00101{left:758.933333pt;}
.x100_c00101{left:760.266667pt;}
.x106_c00101{left:762.000000pt;}
.xb2_c00101{left:768.133333pt;}
}





/* 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_c00102 {
    display:none;
  }
  .loading-indicator_c00102.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00102 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_c00102 { 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_c00102" -> "#page-container .classname_c00102")
 */
.pf_c00102 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00102 { /* 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_c00102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00102 { /* 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_c00102 { /* 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_c00102 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00102 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00102 {overflow:visible;}
  }
}
.c_c00102 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00102 { /* 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_c00102:after { /* webkit #35443 */
  content: '';
}
.t_c00102:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00102 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 */
}
.__c00102 { /* 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_c00102 { /* info for Javascript */
  display:none;
}
.l_c00102 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00102 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00102 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00102: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_c00102 {
    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_c00102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00102.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_c00102 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00102;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.000000;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;}
.m114_c00102{transform:matrix(0.010750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010750,0.000000,0.000000,0.250000,0,0);}
.m112_c00102{transform:matrix(0.013500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00102{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m115_c00102{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m41_c00102{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00102{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m113_c00102{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m36_c00102{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md9_c00102{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m33_c00102{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00102{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m57_c00102{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m48_c00102{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m54_c00102{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00102{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.m111_c00102{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m60_c00102{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m108_c00102{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00102{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.md2_c00102{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00102{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00102{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00102{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00102{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m19_c00102{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00102{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m53_c00102{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m95_c00102{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.md_c00102{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00102{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00102{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m7_c00102{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00102{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md0_c00102{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00102{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m74_c00102{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00102{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9_c00102{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00102{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m62_c00102{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00102{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m109_c00102{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00102{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m27_c00102{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m10_c00102{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m67_c00102{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00102{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00102{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m13_c00102{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m99_c00102{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m34_c00102{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00102{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m20_c00102{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m22_c00102{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00102{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m110_c00102{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m96_c00102{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m73_c00102{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m82_c00102{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00102{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00102{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00102{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00102{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md6_c00102{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me0_c00102{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00102{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00102{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00102{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mba_c00102{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00102{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00102{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m11_c00102{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me_c00102{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00102{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m39_c00102{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6_c00102{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00102{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m79_c00102{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00102{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m38_c00102{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m85_c00102{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m83_c00102{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m76_c00102{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m40_c00102{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m26_c00102{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00102{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00102{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mae_c00102{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m37_c00102{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00102{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00102{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00102{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00102{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00102{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m42_c00102{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m12_c00102{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma_c00102{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mf_c00102{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m88_c00102{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00102{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00102{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00102{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00102{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m47_c00102{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00102{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m21_c00102{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m70_c00102{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00102{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00102{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00102{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00102{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00102{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00102{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00102{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m15_c00102{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md5_c00102{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m78_c00102{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00102{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00102{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m61_c00102{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m59_c00102{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m14_c00102{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m35_c00102{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00102{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mff_c00102{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00102{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m103_c00102{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m87_c00102{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00102{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md1_c00102{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m30_c00102{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me2_c00102{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00102{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00102{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m80_c00102{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me1_c00102{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m5_c00102{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m18_c00102{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m29_c00102{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m31_c00102{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00102{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00102{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m17_c00102{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00102{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00102{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00102{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00102{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m75_c00102{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00102{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00102{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m50_c00102{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00102{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m107_c00102{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00102{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md8_c00102{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m86_c00102{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m98_c00102{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m69_c00102{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00102{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00102{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4_c00102{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m104_c00102{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00102{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mce_c00102{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m77_c00102{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m81_c00102{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00102{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mea_c00102{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00102{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m28_c00102{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8_c00102{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m68_c00102{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m56_c00102{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m32_c00102{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m91_c00102{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m16_c00102{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m94_c00102{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00102{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00102{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00102{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m23_c00102{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00102{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m102_c00102{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00102{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m25_c00102{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m105_c00102{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mec_c00102{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00102{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00102{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md4_c00102{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m92_c00102{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00102{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m24_c00102{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m44_c00102{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00102{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00102{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.maa_c00102{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.meb_c00102{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md7_c00102{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m71_c00102{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00102{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2_c00102{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m66_c00102{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00102{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mab_c00102{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00102{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m93_c00102{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m49_c00102{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00102{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m101_c00102{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00102{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m84_c00102{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m65_c00102{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00102{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00102{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00102{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m100_c00102{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00102{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00102{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00102{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mad_c00102{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mac_c00102{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00102{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00102{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m106_c00102{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.me8_c00102{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00102{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mde_c00102{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m90_c00102{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.me7_c00102{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00102{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00102{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m89_c00102{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me5_c00102{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00102{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mb_c00102{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00102{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m72_c00102{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.me3_c00102{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m45_c00102{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m46_c00102{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00102{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m58_c00102{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00102{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m64_c00102{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.me6_c00102{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00102{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00102{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.med_c00102{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00102{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00102{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m52_c00102{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mca_c00102{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mee_c00102{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.maf_c00102{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00102{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00102{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m51_c00102{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.me9_c00102{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00102{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00102{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00102{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.md3_c00102{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00102{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mef_c00102{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00102{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00102{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m97_c00102{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.me4_c00102{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m63_c00102{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m55_c00102{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00102{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.m43_c00102{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mda_c00102{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m0_c00102{transform:matrix(0.469750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00102{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls0_c00102{letter-spacing:0.000000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{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__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00102{word-spacing:-8.333333px;}
.ws2_c00102{word-spacing:-6.463415px;}
.ws5_c00102{word-spacing:0.000000px;}
.ws0_c00102{word-spacing:5.847134px;}
.ws1_c00102{word-spacing:9.722222px;}
.ws4_c00102{word-spacing:10.270270px;}
.fc0_c00102{color:transparent;}
.fs7_c00102{font-size:30.000000px;}
.fs6_c00102{font-size:36.000000px;}
.fs5_c00102{font-size:48.000000px;}
.fs4_c00102{font-size:54.000000px;}
.fs3_c00102{font-size:60.000000px;}
.fs2_c00102{font-size:66.000000px;}
.fs1_c00102{font-size:72.000000px;}
.fs0_c00102{font-size:84.000000px;}
.y0_c00102{bottom:0.000000px;}
.y34_c00102{bottom:148.350000px;}
.y33_c00102{bottom:192.600000px;}
.y65_c00102{bottom:193.050000px;}
.y64_c00102{bottom:211.050000px;}
.y32_c00102{bottom:211.350000px;}
.y63_c00102{bottom:229.350000px;}
.y31_c00102{bottom:233.250000px;}
.y66_c00102{bottom:241.200000px;}
.y62_c00102{bottom:247.350000px;}
.y30_c00102{bottom:250.950000px;}
.y61_c00102{bottom:265.350000px;}
.y2f_c00102{bottom:269.250000px;}
.y60_c00102{bottom:283.350000px;}
.y2e_c00102{bottom:287.250000px;}
.y5f_c00102{bottom:308.550000px;}
.y2d_c00102{bottom:309.900000px;}
.y5e_c00102{bottom:323.700000px;}
.y2c_c00102{bottom:336.300000px;}
.y5d_c00102{bottom:347.400000px;}
.y2b_c00102{bottom:354.300000px;}
.y5c_c00102{bottom:365.700000px;}
.y2a_c00102{bottom:372.300000px;}
.y5b_c00102{bottom:383.400000px;}
.y29_c00102{bottom:390.300000px;}
.y5a_c00102{bottom:401.700000px;}
.y28_c00102{bottom:408.600000px;}
.y59_c00102{bottom:424.200000px;}
.y27_c00102{bottom:430.650000px;}
.y58_c00102{bottom:442.200000px;}
.y26_c00102{bottom:448.950000px;}
.y57_c00102{bottom:460.500000px;}
.y25_c00102{bottom:466.950000px;}
.y56_c00102{bottom:478.500000px;}
.y24_c00102{bottom:489.300000px;}
.y55_c00102{bottom:500.700000px;}
.y23_c00102{bottom:507.600000px;}
.y22_c00102{bottom:525.600000px;}
.y54_c00102{bottom:527.700000px;}
.y21_c00102{bottom:543.600000px;}
.y53_c00102{bottom:550.800000px;}
.y20_c00102{bottom:561.900000px;}
.y52_c00102{bottom:573.450000px;}
.y1f_c00102{bottom:579.600000px;}
.y51_c00102{bottom:591.150000px;}
.y1e_c00102{bottom:597.600000px;}
.y50_c00102{bottom:609.450000px;}
.y1d_c00102{bottom:615.600000px;}
.y4f_c00102{bottom:627.450000px;}
.y1c_c00102{bottom:636.150000px;}
.y4e_c00102{bottom:645.150000px;}
.y1b_c00102{bottom:650.850000px;}
.y4d_c00102{bottom:663.150000px;}
.y1a_c00102{bottom:671.400000px;}
.y4c_c00102{bottom:681.150000px;}
.y19_c00102{bottom:689.700000px;}
.y4b_c00102{bottom:703.050000px;}
.y18_c00102{bottom:707.700000px;}
.y4a_c00102{bottom:721.050000px;}
.y17_c00102{bottom:729.750000px;}
.y49_c00102{bottom:739.500000px;}
.y16_c00102{bottom:747.750000px;}
.y48_c00102{bottom:762.150000px;}
.y15_c00102{bottom:766.050000px;}
.y47_c00102{bottom:779.850000px;}
.y14_c00102{bottom:784.050000px;}
.y46_c00102{bottom:798.150000px;}
.y13_c00102{bottom:806.400000px;}
.y45_c00102{bottom:816.150000px;}
.y12_c00102{bottom:833.400000px;}
.y44_c00102{bottom:837.000000px;}
.y11_c00102{bottom:851.700000px;}
.y43_c00102{bottom:856.500000px;}
.y10_c00102{bottom:869.700000px;}
.y42_c00102{bottom:874.500000px;}
.yf_c00102{bottom:887.700000px;}
.y41_c00102{bottom:901.500000px;}
.ye_c00102{bottom:910.500000px;}
.y40_c00102{bottom:924.150000px;}
.yd_c00102{bottom:932.700000px;}
.y3f_c00102{bottom:946.500000px;}
.yc_c00102{bottom:950.700000px;}
.y3e_c00102{bottom:964.800000px;}
.yb_c00102{bottom:969.000000px;}
.y3d_c00102{bottom:982.800000px;}
.ya_c00102{bottom:986.700000px;}
.y3c_c00102{bottom:1000.800000px;}
.y9_c00102{bottom:1005.450000px;}
.y3b_c00102{bottom:1018.800000px;}
.y8_c00102{bottom:1023.150000px;}
.y3a_c00102{bottom:1037.100000px;}
.y7_c00102{bottom:1041.150000px;}
.y39_c00102{bottom:1055.100000px;}
.y6_c00102{bottom:1059.150000px;}
.y38_c00102{bottom:1076.400000px;}
.y5_c00102{bottom:1077.450000px;}
.y37_c00102{bottom:1090.500000px;}
.y4_c00102{bottom:1095.450000px;}
.y36_c00102{bottom:1110.600000px;}
.y3_c00102{bottom:1113.450000px;}
.y35_c00102{bottom:1128.600000px;}
.y2_c00102{bottom:1131.450000px;}
.y1_c00102{bottom:1157.100000px;}
.h9_c00102{height:30.000000px;}
.h8_c00102{height:36.000000px;}
.h7_c00102{height:48.000000px;}
.h6_c00102{height:54.000000px;}
.h5_c00102{height:60.000000px;}
.h4_c00102{height:66.000000px;}
.h3_c00102{height:72.000000px;}
.h2_c00102{height:84.000000px;}
.h1_c00102{height:1280.250000px;}
.h0_c00102{height:1280.519990px;}
.w1_c00102{width:953.250000px;}
.w0_c00102{width:953.280030px;}
.x0_c00102{left:0.000000px;}
.x9c_c00102{left:8.700000px;}
.x76_c00102{left:71.700000px;}
.x6b_c00102{left:73.050000px;}
.x3_c00102{left:74.850000px;}
.x9a_c00102{left:85.050000px;}
.x7a_c00102{left:88.650000px;}
.x94_c00102{left:90.000000px;}
.x64_c00102{left:91.350000px;}
.xa_c00102{left:92.850000px;}
.x10_c00102{left:94.050000px;}
.x90_c00102{left:107.250000px;}
.x95_c00102{left:109.050000px;}
.x57_c00102{left:110.100000px;}
.x4d_c00102{left:112.050000px;}
.x6c_c00102{left:117.300000px;}
.x88_c00102{left:120.750000px;}
.x5b_c00102{left:122.400000px;}
.x65_c00102{left:124.050000px;}
.x69_c00102{left:127.650000px;}
.x9b_c00102{left:129.300000px;}
.x89_c00102{left:130.500000px;}
.x2a_c00102{left:131.700000px;}
.x11_c00102{left:132.900000px;}
.x77_c00102{left:134.700000px;}
.x1c_c00102{left:137.250000px;}
.x46_c00102{left:139.050000px;}
.x18_c00102{left:141.000000px;}
.x30_c00102{left:142.500000px;}
.x4e_c00102{left:144.750000px;}
.x58_c00102{left:146.850000px;}
.x21_c00102{left:148.050000px;}
.x60_c00102{left:152.100000px;}
.x72_c00102{left:154.050000px;}
.x93_c00102{left:157.200000px;}
.xb_c00102{left:159.450000px;}
.x6a_c00102{left:162.150000px;}
.x5c_c00102{left:164.100000px;}
.x4_c00102{left:165.150000px;}
.x36_c00102{left:166.200000px;}
.x22_c00102{left:167.850000px;}
.x47_c00102{left:171.000000px;}
.x12_c00102{left:172.200000px;}
.x2b_c00102{left:174.150000px;}
.x31_c00102{left:176.700000px;}
.x8d_c00102{left:179.700000px;}
.x66_c00102{left:183.750000px;}
.x6d_c00102{left:186.450000px;}
.x3c_c00102{left:187.650000px;}
.x13_c00102{left:189.900000px;}
.x19_c00102{left:191.100000px;}
.x1d_c00102{left:193.500000px;}
.x2c_c00102{left:195.750000px;}
.xc_c00102{left:196.950000px;}
.x96_c00102{left:199.800000px;}
.x7b_c00102{left:200.850000px;}
.x4f_c00102{left:202.050000px;}
.x32_c00102{left:205.800000px;}
.x7d_c00102{left:207.000000px;}
.x23_c00102{left:208.500000px;}
.x41_c00102{left:211.650000px;}
.x59_c00102{left:212.700000px;}
.x5_c00102{left:214.800000px;}
.x3d_c00102{left:217.200000px;}
.x48_c00102{left:219.300000px;}
.x67_c00102{left:221.850000px;}
.x50_c00102{left:223.650000px;}
.x37_c00102{left:226.350000px;}
.x1a_c00102{left:227.850000px;}
.x5d_c00102{left:228.900000px;}
.x6e_c00102{left:232.500000px;}
.x61_c00102{left:233.850000px;}
.x24_c00102{left:236.550000px;}
.x8a_c00102{left:240.300000px;}
.x2d_c00102{left:241.800000px;}
.x38_c00102{left:243.600000px;}
.x14_c00102{left:245.400000px;}
.x43_c00102{left:248.100000px;}
.x84_c00102{left:250.350000px;}
.x1e_c00102{left:253.650000px;}
.x49_c00102{left:256.800000px;}
.x44_c00102{left:258.150000px;}
.x91_c00102{left:261.300000px;}
.x73_c00102{left:263.550000px;}
.x97_c00102{left:264.600000px;}
.x25_c00102{left:267.900000px;}
.x3e_c00102{left:269.400000px;}
.x33_c00102{left:270.600000px;}
.x15_c00102{left:273.150000px;}
.x4a_c00102{left:274.800000px;}
.x5a_c00102{left:276.750000px;}
.x6_c00102{left:279.300000px;}
.x34_c00102{left:280.650000px;}
.x1f_c00102{left:283.500000px;}
.x26_c00102{left:285.600000px;}
.x85_c00102{left:290.700000px;}
.x45_c00102{left:293.100000px;}
.x8c_c00102{left:295.350000px;}
.x2e_c00102{left:296.550000px;}
.x8b_c00102{left:298.200000px;}
.x53_c00102{left:299.700000px;}
.x7_c00102{left:301.200000px;}
.x98_c00102{left:303.900000px;}
.x5e_c00102{left:304.950000px;}
.x56_c00102{left:306.150000px;}
.x3f_c00102{left:307.200000px;}
.x82_c00102{left:311.250000px;}
.x74_c00102{left:312.900000px;}
.x86_c00102{left:314.400000px;}
.xd_c00102{left:316.500000px;}
.x8f_c00102{left:319.050000px;}
.x1_c00102{left:320.400000px;}
.x16_c00102{left:325.650000px;}
.x62_c00102{left:328.500000px;}
.x8e_c00102{left:329.850000px;}
.x7e_c00102{left:331.950000px;}
.x39_c00102{left:333.900000px;}
.x6f_c00102{left:336.150000px;}
.x27_c00102{left:338.550000px;}
.x8_c00102{left:341.550000px;}
.x40_c00102{left:344.250000px;}
.x75_c00102{left:346.350000px;}
.x4b_c00102{left:348.300000px;}
.x99_c00102{left:349.950000px;}
.x70_c00102{left:352.050000px;}
.x80_c00102{left:353.400000px;}
.x3a_c00102{left:355.800000px;}
.x28_c00102{left:357.300000px;}
.x35_c00102{left:359.100000px;}
.x1b_c00102{left:363.300000px;}
.x4c_c00102{left:364.500000px;}
.x17_c00102{left:367.050000px;}
.x78_c00102{left:368.700000px;}
.x51_c00102{left:372.300000px;}
.x20_c00102{left:373.500000px;}
.x42_c00102{left:375.150000px;}
.x9_c00102{left:376.500000px;}
.x81_c00102{left:378.300000px;}
.xe_c00102{left:379.500000px;}
.x92_c00102{left:380.700000px;}
.x54_c00102{left:382.800000px;}
.x7c_c00102{left:383.850000px;}
.x29_c00102{left:385.800000px;}
.x7f_c00102{left:387.300000px;}
.x79_c00102{left:390.000000px;}
.x83_c00102{left:391.500000px;}
.x55_c00102{left:392.850000px;}
.x71_c00102{left:394.500000px;}
.x68_c00102{left:395.550000px;}
.x63_c00102{left:396.600000px;}
.x52_c00102{left:398.250000px;}
.x2f_c00102{left:399.900000px;}
.x87_c00102{left:401.250000px;}
.xf_c00102{left:403.950000px;}
.x5f_c00102{left:409.800000px;}
.x3b_c00102{left:410.850000px;}
.x116_c00102{left:432.750000px;}
.x107_c00102{left:434.100000px;}
.xaa_c00102{left:435.300000px;}
.x122_c00102{left:446.400000px;}
.xb2_c00102{left:449.700000px;}
.x10f_c00102{left:450.750000px;}
.x9d_c00102{left:451.800000px;}
.xa7_c00102{left:453.450000px;}
.xe3_c00102{left:454.650000px;}
.x109_c00102{left:468.000000px;}
.x10c_c00102{left:469.800000px;}
.x106_c00102{left:472.650000px;}
.xdd_c00102{left:474.000000px;}
.xa8_c00102{left:478.350000px;}
.xee_c00102{left:479.850000px;}
.x11b_c00102{left:481.500000px;}
.xc0_c00102{left:482.550000px;}
.xd5_c00102{left:483.750000px;}
.xb8_c00102{left:486.750000px;}
.xcc_c00102{left:488.550000px;}
.x9e_c00102{left:490.650000px;}
.xa9_c00102{left:493.500000px;}
.x137_c00102{left:494.700000px;}
.x108_c00102{left:496.350000px;}
.xdc_c00102{left:498.300000px;}
.xab_c00102{left:500.400000px;}
.xfe_c00102{left:501.600000px;}
.x10a_c00102{left:502.950000px;}
.xb9_c00102{left:504.750000px;}
.xcd_c00102{left:509.100000px;}
.x12d_c00102{left:511.050000px;}
.xc6_c00102{left:512.850000px;}
.xed_c00102{left:514.050000px;}
.xd6_c00102{left:517.950000px;}
.xf5_c00102{left:519.300000px;}
.x126_c00102{left:520.500000px;}
.x9f_c00102{left:523.350000px;}
.xc1_c00102{left:524.700000px;}
.xba_c00102{left:526.350000px;}
.xc7_c00102{left:528.000000px;}
.x130_c00102{left:529.650000px;}
.x101_c00102{left:535.050000px;}
.x11f_c00102{left:539.250000px;}
.xa0_c00102{left:540.600000px;}
.x123_c00102{left:541.800000px;}
.xd7_c00102{left:543.900000px;}
.xac_c00102{left:546.450000px;}
.xef_c00102{left:548.550000px;}
.x12e_c00102{left:549.900000px;}
.xf8_c00102{left:551.250000px;}
.x138_c00102{left:552.750000px;}
.xf2_c00102{left:553.800000px;}
.x133_c00102{left:556.950000px;}
.x11c_c00102{left:559.350000px;}
.xea_c00102{left:562.050000px;}
.xe4_c00102{left:563.850000px;}
.x118_c00102{left:565.800000px;}
.xce_c00102{left:567.450000px;}
.xb3_c00102{left:568.500000px;}
.xc8_c00102{left:570.150000px;}
.x110_c00102{left:571.350000px;}
.xf9_c00102{left:573.150000px;}
.xa1_c00102{left:574.800000px;}
.x127_c00102{left:576.000000px;}
.x11d_c00102{left:577.650000px;}
.x10d_c00102{left:579.000000px;}
.xde_c00102{left:580.500000px;}
.xe7_c00102{left:582.600000px;}
.xbb_c00102{left:583.950000px;}
.xd8_c00102{left:586.800000px;}
.xa2_c00102{left:588.450000px;}
.x139_c00102{left:590.550000px;}
.x131_c00102{left:594.150000px;}
.x12f_c00102{left:595.500000px;}
.xf0_c00102{left:596.850000px;}
.xfa_c00102{left:598.650000px;}
.xdf_c00102{left:600.300000px;}
.xad_c00102{left:602.250000px;}
.x124_c00102{left:603.300000px;}
.xf4_c00102{left:604.500000px;}
.x115_c00102{left:606.450000px;}
.x120_c00102{left:609.750000px;}
.x102_c00102{left:610.800000px;}
.xfb_c00102{left:612.000000px;}
.xbc_c00102{left:618.450000px;}
.x128_c00102{left:619.950000px;}
.x11e_c00102{left:621.150000px;}
.x10e_c00102{left:622.950000px;}
.xc9_c00102{left:624.150000px;}
.x119_c00102{left:625.950000px;}
.xc2_c00102{left:627.600000px;}
.xa3_c00102{left:629.100000px;}
.x125_c00102{left:632.400000px;}
.x103_c00102{left:634.500000px;}
.xd9_c00102{left:637.500000px;}
.xb4_c00102{left:639.000000px;}
.x129_c00102{left:641.250000px;}
.x111_c00102{left:643.650000px;}
.xc3_c00102{left:648.900000px;}
.x121_c00102{left:650.100000px;}
.xeb_c00102{left:651.300000px;}
.xae_c00102{left:652.350000px;}
.xda_c00102{left:655.500000px;}
.xe5_c00102{left:660.000000px;}
.x113_c00102{left:661.200000px;}
.xa4_c00102{left:662.550000px;}
.xcf_c00102{left:663.600000px;}
.x13a_c00102{left:665.850000px;}
.xca_c00102{left:668.100000px;}
.xf6_c00102{left:669.300000px;}
.xfc_c00102{left:671.100000px;}
.x11a_c00102{left:673.050000px;}
.xff_c00102{left:674.100000px;}
.xaf_c00102{left:675.450000px;}
.xc4_c00102{left:676.650000px;}
.xb5_c00102{left:678.900000px;}
.xe0_c00102{left:680.250000px;}
.xbd_c00102{left:681.450000px;}
.xd3_c00102{left:684.300000px;}
.x104_c00102{left:687.000000px;}
.xf1_c00102{left:689.400000px;}
.xd0_c00102{left:690.600000px;}
.x136_c00102{left:691.650000px;}
.xdb_c00102{left:694.350000px;}
.xc5_c00102{left:695.400000px;}
.xfd_c00102{left:697.800000px;}
.x13b_c00102{left:699.000000px;}
.x100_c00102{left:700.050000px;}
.x114_c00102{left:701.100000px;}
.xbe_c00102{left:702.300000px;}
.x117_c00102{left:703.800000px;}
.xe8_c00102{left:706.050000px;}
.xa5_c00102{left:707.550000px;}
.xb6_c00102{left:708.750000px;}
.x12a_c00102{left:709.950000px;}
.x134_c00102{left:711.450000px;}
.x10b_c00102{left:713.550000px;}
.xb0_c00102{left:715.350000px;}
.xf3_c00102{left:717.750000px;}
.xec_c00102{left:719.700000px;}
.xe6_c00102{left:721.650000px;}
.xf7_c00102{left:725.550000px;}
.x105_c00102{left:726.600000px;}
.xd4_c00102{left:729.600000px;}
.xb7_c00102{left:731.850000px;}
.x112_c00102{left:733.800000px;}
.xd1_c00102{left:734.850000px;}
.xe2_c00102{left:736.500000px;}
.x12b_c00102{left:738.000000px;}
.xb1_c00102{left:739.050000px;}
.xa6_c00102{left:741.750000px;}
.xbf_c00102{left:744.000000px;}
.x132_c00102{left:745.350000px;}
.xd2_c00102{left:746.400000px;}
.xe1_c00102{left:747.900000px;}
.xcb_c00102{left:751.950000px;}
.x135_c00102{left:753.150000px;}
.x12c_c00102{left:754.500000px;}
.x2_c00102{left:757.800000px;}
.x13c_c00102{left:762.300000px;}
.xe9_c00102{left:768.750000px;}
.x13d_c00102{left:939.300000px;}
.x13e_c00102{left:941.100000px;}
.x13f_c00102{left:942.150000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws3_c00102{word-spacing:-7.407407pt;}
.ws2_c00102{word-spacing:-5.745257pt;}
.ws5_c00102{word-spacing:0.000000pt;}
.ws0_c00102{word-spacing:5.197452pt;}
.ws1_c00102{word-spacing:8.641975pt;}
.ws4_c00102{word-spacing:9.129129pt;}
.fs7_c00102{font-size:26.666667pt;}
.fs6_c00102{font-size:32.000000pt;}
.fs5_c00102{font-size:42.666667pt;}
.fs4_c00102{font-size:48.000000pt;}
.fs3_c00102{font-size:53.333333pt;}
.fs2_c00102{font-size:58.666667pt;}
.fs1_c00102{font-size:64.000000pt;}
.fs0_c00102{font-size:74.666667pt;}
.y0_c00102{bottom:0.000000pt;}
.y34_c00102{bottom:131.866667pt;}
.y33_c00102{bottom:171.200000pt;}
.y65_c00102{bottom:171.600000pt;}
.y64_c00102{bottom:187.600000pt;}
.y32_c00102{bottom:187.866667pt;}
.y63_c00102{bottom:203.866667pt;}
.y31_c00102{bottom:207.333333pt;}
.y66_c00102{bottom:214.400000pt;}
.y62_c00102{bottom:219.866667pt;}
.y30_c00102{bottom:223.066667pt;}
.y61_c00102{bottom:235.866667pt;}
.y2f_c00102{bottom:239.333333pt;}
.y60_c00102{bottom:251.866667pt;}
.y2e_c00102{bottom:255.333333pt;}
.y5f_c00102{bottom:274.266667pt;}
.y2d_c00102{bottom:275.466667pt;}
.y5e_c00102{bottom:287.733333pt;}
.y2c_c00102{bottom:298.933333pt;}
.y5d_c00102{bottom:308.800000pt;}
.y2b_c00102{bottom:314.933333pt;}
.y5c_c00102{bottom:325.066667pt;}
.y2a_c00102{bottom:330.933333pt;}
.y5b_c00102{bottom:340.800000pt;}
.y29_c00102{bottom:346.933333pt;}
.y5a_c00102{bottom:357.066667pt;}
.y28_c00102{bottom:363.200000pt;}
.y59_c00102{bottom:377.066667pt;}
.y27_c00102{bottom:382.800000pt;}
.y58_c00102{bottom:393.066667pt;}
.y26_c00102{bottom:399.066667pt;}
.y57_c00102{bottom:409.333333pt;}
.y25_c00102{bottom:415.066667pt;}
.y56_c00102{bottom:425.333333pt;}
.y24_c00102{bottom:434.933333pt;}
.y55_c00102{bottom:445.066667pt;}
.y23_c00102{bottom:451.200000pt;}
.y22_c00102{bottom:467.200000pt;}
.y54_c00102{bottom:469.066667pt;}
.y21_c00102{bottom:483.200000pt;}
.y53_c00102{bottom:489.600000pt;}
.y20_c00102{bottom:499.466667pt;}
.y52_c00102{bottom:509.733333pt;}
.y1f_c00102{bottom:515.200000pt;}
.y51_c00102{bottom:525.466667pt;}
.y1e_c00102{bottom:531.200000pt;}
.y50_c00102{bottom:541.733333pt;}
.y1d_c00102{bottom:547.200000pt;}
.y4f_c00102{bottom:557.733333pt;}
.y1c_c00102{bottom:565.466667pt;}
.y4e_c00102{bottom:573.466667pt;}
.y1b_c00102{bottom:578.533333pt;}
.y4d_c00102{bottom:589.466667pt;}
.y1a_c00102{bottom:596.800000pt;}
.y4c_c00102{bottom:605.466667pt;}
.y19_c00102{bottom:613.066667pt;}
.y4b_c00102{bottom:624.933333pt;}
.y18_c00102{bottom:629.066667pt;}
.y4a_c00102{bottom:640.933333pt;}
.y17_c00102{bottom:648.666667pt;}
.y49_c00102{bottom:657.333333pt;}
.y16_c00102{bottom:664.666667pt;}
.y48_c00102{bottom:677.466667pt;}
.y15_c00102{bottom:680.933333pt;}
.y47_c00102{bottom:693.200000pt;}
.y14_c00102{bottom:696.933333pt;}
.y46_c00102{bottom:709.466667pt;}
.y13_c00102{bottom:716.800000pt;}
.y45_c00102{bottom:725.466667pt;}
.y12_c00102{bottom:740.800000pt;}
.y44_c00102{bottom:744.000000pt;}
.y11_c00102{bottom:757.066667pt;}
.y43_c00102{bottom:761.333333pt;}
.y10_c00102{bottom:773.066667pt;}
.y42_c00102{bottom:777.333333pt;}
.yf_c00102{bottom:789.066667pt;}
.y41_c00102{bottom:801.333333pt;}
.ye_c00102{bottom:809.333333pt;}
.y40_c00102{bottom:821.466667pt;}
.yd_c00102{bottom:829.066667pt;}
.y3f_c00102{bottom:841.333333pt;}
.yc_c00102{bottom:845.066667pt;}
.y3e_c00102{bottom:857.600000pt;}
.yb_c00102{bottom:861.333333pt;}
.y3d_c00102{bottom:873.600000pt;}
.ya_c00102{bottom:877.066667pt;}
.y3c_c00102{bottom:889.600000pt;}
.y9_c00102{bottom:893.733333pt;}
.y3b_c00102{bottom:905.600000pt;}
.y8_c00102{bottom:909.466667pt;}
.y3a_c00102{bottom:921.866667pt;}
.y7_c00102{bottom:925.466667pt;}
.y39_c00102{bottom:937.866667pt;}
.y6_c00102{bottom:941.466667pt;}
.y38_c00102{bottom:956.800000pt;}
.y5_c00102{bottom:957.733333pt;}
.y37_c00102{bottom:969.333333pt;}
.y4_c00102{bottom:973.733333pt;}
.y36_c00102{bottom:987.200000pt;}
.y3_c00102{bottom:989.733333pt;}
.y35_c00102{bottom:1003.200000pt;}
.y2_c00102{bottom:1005.733333pt;}
.y1_c00102{bottom:1028.533333pt;}
.h9_c00102{height:26.666667pt;}
.h8_c00102{height:32.000000pt;}
.h7_c00102{height:42.666667pt;}
.h6_c00102{height:48.000000pt;}
.h5_c00102{height:53.333333pt;}
.h4_c00102{height:58.666667pt;}
.h3_c00102{height:64.000000pt;}
.h2_c00102{height:74.666667pt;}
.h1_c00102{height:1138.000000pt;}
.h0_c00102{height:1138.239991pt;}
.w1_c00102{width:847.333333pt;}
.w0_c00102{width:847.360027pt;}
.x0_c00102{left:0.000000pt;}
.x9c_c00102{left:7.733333pt;}
.x76_c00102{left:63.733333pt;}
.x6b_c00102{left:64.933333pt;}
.x3_c00102{left:66.533333pt;}
.x9a_c00102{left:75.600000pt;}
.x7a_c00102{left:78.800000pt;}
.x94_c00102{left:80.000000pt;}
.x64_c00102{left:81.200000pt;}
.xa_c00102{left:82.533333pt;}
.x10_c00102{left:83.600000pt;}
.x90_c00102{left:95.333333pt;}
.x95_c00102{left:96.933333pt;}
.x57_c00102{left:97.866667pt;}
.x4d_c00102{left:99.600000pt;}
.x6c_c00102{left:104.266667pt;}
.x88_c00102{left:107.333333pt;}
.x5b_c00102{left:108.800000pt;}
.x65_c00102{left:110.266667pt;}
.x69_c00102{left:113.466667pt;}
.x9b_c00102{left:114.933333pt;}
.x89_c00102{left:116.000000pt;}
.x2a_c00102{left:117.066667pt;}
.x11_c00102{left:118.133333pt;}
.x77_c00102{left:119.733333pt;}
.x1c_c00102{left:122.000000pt;}
.x46_c00102{left:123.600000pt;}
.x18_c00102{left:125.333333pt;}
.x30_c00102{left:126.666667pt;}
.x4e_c00102{left:128.666667pt;}
.x58_c00102{left:130.533333pt;}
.x21_c00102{left:131.600000pt;}
.x60_c00102{left:135.200000pt;}
.x72_c00102{left:136.933333pt;}
.x93_c00102{left:139.733333pt;}
.xb_c00102{left:141.733333pt;}
.x6a_c00102{left:144.133333pt;}
.x5c_c00102{left:145.866667pt;}
.x4_c00102{left:146.800000pt;}
.x36_c00102{left:147.733333pt;}
.x22_c00102{left:149.200000pt;}
.x47_c00102{left:152.000000pt;}
.x12_c00102{left:153.066667pt;}
.x2b_c00102{left:154.800000pt;}
.x31_c00102{left:157.066667pt;}
.x8d_c00102{left:159.733333pt;}
.x66_c00102{left:163.333333pt;}
.x6d_c00102{left:165.733333pt;}
.x3c_c00102{left:166.800000pt;}
.x13_c00102{left:168.800000pt;}
.x19_c00102{left:169.866667pt;}
.x1d_c00102{left:172.000000pt;}
.x2c_c00102{left:174.000000pt;}
.xc_c00102{left:175.066667pt;}
.x96_c00102{left:177.600000pt;}
.x7b_c00102{left:178.533333pt;}
.x4f_c00102{left:179.600000pt;}
.x32_c00102{left:182.933333pt;}
.x7d_c00102{left:184.000000pt;}
.x23_c00102{left:185.333333pt;}
.x41_c00102{left:188.133333pt;}
.x59_c00102{left:189.066667pt;}
.x5_c00102{left:190.933333pt;}
.x3d_c00102{left:193.066667pt;}
.x48_c00102{left:194.933333pt;}
.x67_c00102{left:197.200000pt;}
.x50_c00102{left:198.800000pt;}
.x37_c00102{left:201.200000pt;}
.x1a_c00102{left:202.533333pt;}
.x5d_c00102{left:203.466667pt;}
.x6e_c00102{left:206.666667pt;}
.x61_c00102{left:207.866667pt;}
.x24_c00102{left:210.266667pt;}
.x8a_c00102{left:213.600000pt;}
.x2d_c00102{left:214.933333pt;}
.x38_c00102{left:216.533333pt;}
.x14_c00102{left:218.133333pt;}
.x43_c00102{left:220.533333pt;}
.x84_c00102{left:222.533333pt;}
.x1e_c00102{left:225.466667pt;}
.x49_c00102{left:228.266667pt;}
.x44_c00102{left:229.466667pt;}
.x91_c00102{left:232.266667pt;}
.x73_c00102{left:234.266667pt;}
.x97_c00102{left:235.200000pt;}
.x25_c00102{left:238.133333pt;}
.x3e_c00102{left:239.466667pt;}
.x33_c00102{left:240.533333pt;}
.x15_c00102{left:242.800000pt;}
.x4a_c00102{left:244.266667pt;}
.x5a_c00102{left:246.000000pt;}
.x6_c00102{left:248.266667pt;}
.x34_c00102{left:249.466667pt;}
.x1f_c00102{left:252.000000pt;}
.x26_c00102{left:253.866667pt;}
.x85_c00102{left:258.400000pt;}
.x45_c00102{left:260.533333pt;}
.x8c_c00102{left:262.533333pt;}
.x2e_c00102{left:263.600000pt;}
.x8b_c00102{left:265.066667pt;}
.x53_c00102{left:266.400000pt;}
.x7_c00102{left:267.733333pt;}
.x98_c00102{left:270.133333pt;}
.x5e_c00102{left:271.066667pt;}
.x56_c00102{left:272.133333pt;}
.x3f_c00102{left:273.066667pt;}
.x82_c00102{left:276.666667pt;}
.x74_c00102{left:278.133333pt;}
.x86_c00102{left:279.466667pt;}
.xd_c00102{left:281.333333pt;}
.x8f_c00102{left:283.600000pt;}
.x1_c00102{left:284.800000pt;}
.x16_c00102{left:289.466667pt;}
.x62_c00102{left:292.000000pt;}
.x8e_c00102{left:293.200000pt;}
.x7e_c00102{left:295.066667pt;}
.x39_c00102{left:296.800000pt;}
.x6f_c00102{left:298.800000pt;}
.x27_c00102{left:300.933333pt;}
.x8_c00102{left:303.600000pt;}
.x40_c00102{left:306.000000pt;}
.x75_c00102{left:307.866667pt;}
.x4b_c00102{left:309.600000pt;}
.x99_c00102{left:311.066667pt;}
.x70_c00102{left:312.933333pt;}
.x80_c00102{left:314.133333pt;}
.x3a_c00102{left:316.266667pt;}
.x28_c00102{left:317.600000pt;}
.x35_c00102{left:319.200000pt;}
.x1b_c00102{left:322.933333pt;}
.x4c_c00102{left:324.000000pt;}
.x17_c00102{left:326.266667pt;}
.x78_c00102{left:327.733333pt;}
.x51_c00102{left:330.933333pt;}
.x20_c00102{left:332.000000pt;}
.x42_c00102{left:333.466667pt;}
.x9_c00102{left:334.666667pt;}
.x81_c00102{left:336.266667pt;}
.xe_c00102{left:337.333333pt;}
.x92_c00102{left:338.400000pt;}
.x54_c00102{left:340.266667pt;}
.x7c_c00102{left:341.200000pt;}
.x29_c00102{left:342.933333pt;}
.x7f_c00102{left:344.266667pt;}
.x79_c00102{left:346.666667pt;}
.x83_c00102{left:348.000000pt;}
.x55_c00102{left:349.200000pt;}
.x71_c00102{left:350.666667pt;}
.x68_c00102{left:351.600000pt;}
.x63_c00102{left:352.533333pt;}
.x52_c00102{left:354.000000pt;}
.x2f_c00102{left:355.466667pt;}
.x87_c00102{left:356.666667pt;}
.xf_c00102{left:359.066667pt;}
.x5f_c00102{left:364.266667pt;}
.x3b_c00102{left:365.200000pt;}
.x116_c00102{left:384.666667pt;}
.x107_c00102{left:385.866667pt;}
.xaa_c00102{left:386.933333pt;}
.x122_c00102{left:396.800000pt;}
.xb2_c00102{left:399.733333pt;}
.x10f_c00102{left:400.666667pt;}
.x9d_c00102{left:401.600000pt;}
.xa7_c00102{left:403.066667pt;}
.xe3_c00102{left:404.133333pt;}
.x109_c00102{left:416.000000pt;}
.x10c_c00102{left:417.600000pt;}
.x106_c00102{left:420.133333pt;}
.xdd_c00102{left:421.333333pt;}
.xa8_c00102{left:425.200000pt;}
.xee_c00102{left:426.533333pt;}
.x11b_c00102{left:428.000000pt;}
.xc0_c00102{left:428.933333pt;}
.xd5_c00102{left:430.000000pt;}
.xb8_c00102{left:432.666667pt;}
.xcc_c00102{left:434.266667pt;}
.x9e_c00102{left:436.133333pt;}
.xa9_c00102{left:438.666667pt;}
.x137_c00102{left:439.733333pt;}
.x108_c00102{left:441.200000pt;}
.xdc_c00102{left:442.933333pt;}
.xab_c00102{left:444.800000pt;}
.xfe_c00102{left:445.866667pt;}
.x10a_c00102{left:447.066667pt;}
.xb9_c00102{left:448.666667pt;}
.xcd_c00102{left:452.533333pt;}
.x12d_c00102{left:454.266667pt;}
.xc6_c00102{left:455.866667pt;}
.xed_c00102{left:456.933333pt;}
.xd6_c00102{left:460.400000pt;}
.xf5_c00102{left:461.600000pt;}
.x126_c00102{left:462.666667pt;}
.x9f_c00102{left:465.200000pt;}
.xc1_c00102{left:466.400000pt;}
.xba_c00102{left:467.866667pt;}
.xc7_c00102{left:469.333333pt;}
.x130_c00102{left:470.800000pt;}
.x101_c00102{left:475.600000pt;}
.x11f_c00102{left:479.333333pt;}
.xa0_c00102{left:480.533333pt;}
.x123_c00102{left:481.600000pt;}
.xd7_c00102{left:483.466667pt;}
.xac_c00102{left:485.733333pt;}
.xef_c00102{left:487.600000pt;}
.x12e_c00102{left:488.800000pt;}
.xf8_c00102{left:490.000000pt;}
.x138_c00102{left:491.333333pt;}
.xf2_c00102{left:492.266667pt;}
.x133_c00102{left:495.066667pt;}
.x11c_c00102{left:497.200000pt;}
.xea_c00102{left:499.600000pt;}
.xe4_c00102{left:501.200000pt;}
.x118_c00102{left:502.933333pt;}
.xce_c00102{left:504.400000pt;}
.xb3_c00102{left:505.333333pt;}
.xc8_c00102{left:506.800000pt;}
.x110_c00102{left:507.866667pt;}
.xf9_c00102{left:509.466667pt;}
.xa1_c00102{left:510.933333pt;}
.x127_c00102{left:512.000000pt;}
.x11d_c00102{left:513.466667pt;}
.x10d_c00102{left:514.666667pt;}
.xde_c00102{left:516.000000pt;}
.xe7_c00102{left:517.866667pt;}
.xbb_c00102{left:519.066667pt;}
.xd8_c00102{left:521.600000pt;}
.xa2_c00102{left:523.066667pt;}
.x139_c00102{left:524.933333pt;}
.x131_c00102{left:528.133333pt;}
.x12f_c00102{left:529.333333pt;}
.xf0_c00102{left:530.533333pt;}
.xfa_c00102{left:532.133333pt;}
.xdf_c00102{left:533.600000pt;}
.xad_c00102{left:535.333333pt;}
.x124_c00102{left:536.266667pt;}
.xf4_c00102{left:537.333333pt;}
.x115_c00102{left:539.066667pt;}
.x120_c00102{left:542.000000pt;}
.x102_c00102{left:542.933333pt;}
.xfb_c00102{left:544.000000pt;}
.xbc_c00102{left:549.733333pt;}
.x128_c00102{left:551.066667pt;}
.x11e_c00102{left:552.133333pt;}
.x10e_c00102{left:553.733333pt;}
.xc9_c00102{left:554.800000pt;}
.x119_c00102{left:556.400000pt;}
.xc2_c00102{left:557.866667pt;}
.xa3_c00102{left:559.200000pt;}
.x125_c00102{left:562.133333pt;}
.x103_c00102{left:564.000000pt;}
.xd9_c00102{left:566.666667pt;}
.xb4_c00102{left:568.000000pt;}
.x129_c00102{left:570.000000pt;}
.x111_c00102{left:572.133333pt;}
.xc3_c00102{left:576.800000pt;}
.x121_c00102{left:577.866667pt;}
.xeb_c00102{left:578.933333pt;}
.xae_c00102{left:579.866667pt;}
.xda_c00102{left:582.666667pt;}
.xe5_c00102{left:586.666667pt;}
.x113_c00102{left:587.733333pt;}
.xa4_c00102{left:588.933333pt;}
.xcf_c00102{left:589.866667pt;}
.x13a_c00102{left:591.866667pt;}
.xca_c00102{left:593.866667pt;}
.xf6_c00102{left:594.933333pt;}
.xfc_c00102{left:596.533333pt;}
.x11a_c00102{left:598.266667pt;}
.xff_c00102{left:599.200000pt;}
.xaf_c00102{left:600.400000pt;}
.xc4_c00102{left:601.466667pt;}
.xb5_c00102{left:603.466667pt;}
.xe0_c00102{left:604.666667pt;}
.xbd_c00102{left:605.733333pt;}
.xd3_c00102{left:608.266667pt;}
.x104_c00102{left:610.666667pt;}
.xf1_c00102{left:612.800000pt;}
.xd0_c00102{left:613.866667pt;}
.x136_c00102{left:614.800000pt;}
.xdb_c00102{left:617.200000pt;}
.xc5_c00102{left:618.133333pt;}
.xfd_c00102{left:620.266667pt;}
.x13b_c00102{left:621.333333pt;}
.x100_c00102{left:622.266667pt;}
.x114_c00102{left:623.200000pt;}
.xbe_c00102{left:624.266667pt;}
.x117_c00102{left:625.600000pt;}
.xe8_c00102{left:627.600000pt;}
.xa5_c00102{left:628.933333pt;}
.xb6_c00102{left:630.000000pt;}
.x12a_c00102{left:631.066667pt;}
.x134_c00102{left:632.400000pt;}
.x10b_c00102{left:634.266667pt;}
.xb0_c00102{left:635.866667pt;}
.xf3_c00102{left:638.000000pt;}
.xec_c00102{left:639.733333pt;}
.xe6_c00102{left:641.466667pt;}
.xf7_c00102{left:644.933333pt;}
.x105_c00102{left:645.866667pt;}
.xd4_c00102{left:648.533333pt;}
.xb7_c00102{left:650.533333pt;}
.x112_c00102{left:652.266667pt;}
.xd1_c00102{left:653.200000pt;}
.xe2_c00102{left:654.666667pt;}
.x12b_c00102{left:656.000000pt;}
.xb1_c00102{left:656.933333pt;}
.xa6_c00102{left:659.333333pt;}
.xbf_c00102{left:661.333333pt;}
.x132_c00102{left:662.533333pt;}
.xd2_c00102{left:663.466667pt;}
.xe1_c00102{left:664.800000pt;}
.xcb_c00102{left:668.400000pt;}
.x135_c00102{left:669.466667pt;}
.x12c_c00102{left:670.666667pt;}
.x2_c00102{left:673.600000pt;}
.x13c_c00102{left:677.600000pt;}
.xe9_c00102{left:683.333333pt;}
.x13d_c00102{left:834.933333pt;}
.x13e_c00102{left:836.533333pt;}
.x13f_c00102{left:837.466667pt;}
}





/* 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_c00103 {
    display:none;
  }
  .loading-indicator_c00103.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00103 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_c00103 { 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_c00103" -> "#page-container .classname_c00103")
 */
.pf_c00103 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00103 { /* 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_c00103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00103 { /* 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_c00103 { /* 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_c00103 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00103 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00103 {overflow:visible;}
  }
}
.c_c00103 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00103 { /* 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_c00103:after { /* webkit #35443 */
  content: '';
}
.t_c00103:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00103 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 */
}
.__c00103 { /* 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_c00103 { /* info for Javascript */
  display:none;
}
.l_c00103 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00103 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00103 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00103: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_c00103 {
    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_c00103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00103.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_c00103 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00103;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.000000;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;}
.mb3_c00103{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m97_c00103{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00103{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00103{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00103{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00103{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00103{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00103{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mde_c00103{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me0_c00103{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m32_c00103{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md8_c00103{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00103{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m52_c00103{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m44_c00103{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.md9_c00103{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00103{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00103{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00103{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00103{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00103{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00103{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00103{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00103{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00103{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00103{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m74_c00103{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md7_c00103{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m13_c00103{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00103{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m81_c00103{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m82_c00103{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00103{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00103{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00103{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00103{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m12_c00103{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00103{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00103{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00103{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m45_c00103{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me2_c00103{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00103{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m46_c00103{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00103{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9_c00103{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md5_c00103{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m66_c00103{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m29_c00103{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m10_c00103{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me5_c00103{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m15_c00103{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m27_c00103{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m101_c00103{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m24_c00103{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m99_c00103{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00103{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m59_c00103{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00103{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00103{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m30_c00103{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00103{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m103_c00103{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m71_c00103{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m47_c00103{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m64_c00103{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00103{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m14_c00103{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m92_c00103{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m65_c00103{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m67_c00103{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb_c00103{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m11_c00103{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00103{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md2_c00103{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m28_c00103{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00103{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00103{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00103{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00103{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00103{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me9_c00103{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00103{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m86_c00103{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00103{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00103{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00103{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m22_c00103{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00103{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.meb_c00103{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m18_c00103{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m39_c00103{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8_c00103{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me1_c00103{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7_c00103{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00103{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m63_c00103{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m17_c00103{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m38_c00103{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me_c00103{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mea_c00103{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m19_c00103{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mac_c00103{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00103{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00103{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m95_c00103{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00103{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00103{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m31_c00103{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m77_c00103{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00103{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m72_c00103{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00103{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m83_c00103{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m100_c00103{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00103{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.maf_c00103{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00103{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00103{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00103{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5_c00103{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m69_c00103{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m88_c00103{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00103{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc_c00103{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m21_c00103{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m105_c00103{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf_c00103{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m61_c00103{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00103{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m70_c00103{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma_c00103{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m0_c00103{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m37_c00103{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00103{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m20_c00103{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mab_c00103{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00103{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md4_c00103{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00103{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m34_c00103{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m26_c00103{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3_c00103{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mec_c00103{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m94_c00103{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md3_c00103{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mae_c00103{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00103{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.md6_c00103{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2_c00103{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00103{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m87_c00103{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00103{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m50_c00103{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m25_c00103{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00103{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00103{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m55_c00103{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00103{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m62_c00103{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m42_c00103{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00103{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00103{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m33_c00103{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00103{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m96_c00103{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00103{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4_c00103{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mef_c00103{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m56_c00103{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me8_c00103{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00103{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m60_c00103{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6_c00103{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00103{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00103{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00103{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00103{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00103{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mff_c00103{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00103{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00103{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m23_c00103{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m80_c00103{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00103{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00103{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00103{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00103{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me7_c00103{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m76_c00103{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.maa_c00103{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.med_c00103{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00103{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m89_c00103{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m79_c00103{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m16_c00103{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m48_c00103{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mad_c00103{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m75_c00103{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00103{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me4_c00103{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00103{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00103{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m90_c00103{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m53_c00103{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m104_c00103{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me6_c00103{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00103{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00103{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m93_c00103{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00103{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00103{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m43_c00103{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00103{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m58_c00103{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md1_c00103{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00103{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mce_c00103{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m91_c00103{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00103{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mee_c00103{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m40_c00103{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m102_c00103{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m98_c00103{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00103{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m51_c00103{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me3_c00103{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m49_c00103{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mda_c00103{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m35_c00103{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00103{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mba_c00103{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m41_c00103{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00103{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00103{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.md0_c00103{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m85_c00103{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m57_c00103{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00103{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m68_c00103{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00103{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00103{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00103{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00103{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m78_c00103{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00103{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00103{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m73_c00103{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m36_c00103{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00103{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00103{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m84_c00103{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00103{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00103{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.md_c00103{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00103{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00103{transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00103{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00103{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.mca_c00103{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m106_c00103{transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);}
.m54_c00103{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls0_c00103{letter-spacing:0.000000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{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__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00103{word-spacing:-11.749004px;}
.ws1_c00103{word-spacing:-11.184211px;}
.ws5_c00103{word-spacing:-6.000000px;}
.ws7_c00103{word-spacing:0.000000px;}
.ws0_c00103{word-spacing:13.685393px;}
.ws6_c00103{word-spacing:16.718750px;}
.ws4_c00103{word-spacing:25.714286px;}
.ws3_c00103{word-spacing:44.166667px;}
.fc0_c00103{color:transparent;}
.fs7_c00103{font-size:24.000000px;}
.fs9_c00103{font-size:30.000000px;}
.fs8_c00103{font-size:36.000000px;}
.fs6_c00103{font-size:54.000000px;}
.fs5_c00103{font-size:60.000000px;}
.fs2_c00103{font-size:66.000000px;}
.fs3_c00103{font-size:72.000000px;}
.fs4_c00103{font-size:78.000000px;}
.fs1_c00103{font-size:84.000000px;}
.fs0_c00103{font-size:90.000000px;}
.y0_c00103{bottom:0.000000px;}
.y32_c00103{bottom:165.900000px;}
.y61_c00103{bottom:167.100000px;}
.y31_c00103{bottom:183.900000px;}
.y60_c00103{bottom:185.400000px;}
.y30_c00103{bottom:207.000000px;}
.y5f_c00103{bottom:212.400000px;}
.y2f_c00103{bottom:229.200000px;}
.y5e_c00103{bottom:230.400000px;}
.y5d_c00103{bottom:248.400000px;}
.y2e_c00103{bottom:264.900000px;}
.y5c_c00103{bottom:266.100000px;}
.y5b_c00103{bottom:284.100000px;}
.y2d_c00103{bottom:300.600000px;}
.y5a_c00103{bottom:302.100000px;}
.y59_c00103{bottom:320.100000px;}
.y2c_c00103{bottom:322.950000px;}
.y58_c00103{bottom:338.100000px;}
.y2b_c00103{bottom:343.500000px;}
.y2a_c00103{bottom:358.200000px;}
.y57_c00103{bottom:364.800000px;}
.y29_c00103{bottom:372.900000px;}
.y56_c00103{bottom:382.800000px;}
.y28_c00103{bottom:393.450000px;}
.y55_c00103{bottom:400.800000px;}
.y27_c00103{bottom:411.450000px;}
.y54_c00103{bottom:419.100000px;}
.y26_c00103{bottom:429.450000px;}
.y53_c00103{bottom:437.100000px;}
.y25_c00103{bottom:447.150000px;}
.y52_c00103{bottom:455.100000px;}
.y24_c00103{bottom:469.050000px;}
.y51_c00103{bottom:473.400000px;}
.y23_c00103{bottom:487.350000px;}
.y50_c00103{bottom:491.400000px;}
.y4f_c00103{bottom:509.400000px;}
.y22_c00103{bottom:509.700000px;}
.y4e_c00103{bottom:527.400000px;}
.y21_c00103{bottom:536.400000px;}
.y4d_c00103{bottom:545.700000px;}
.y20_c00103{bottom:558.750000px;}
.y4c_c00103{bottom:564.000000px;}
.y1f_c00103{bottom:581.100000px;}
.y4b_c00103{bottom:581.700000px;}
.y1e_c00103{bottom:599.100000px;}
.y4a_c00103{bottom:599.700000px;}
.y1d_c00103{bottom:617.400000px;}
.y49_c00103{bottom:617.700000px;}
.y1c_c00103{bottom:635.100000px;}
.y48_c00103{bottom:642.300000px;}
.y47_c00103{bottom:657.000000px;}
.y1b_c00103{bottom:660.600000px;}
.y46_c00103{bottom:671.700000px;}
.y1a_c00103{bottom:680.100000px;}
.y45_c00103{bottom:687.300000px;}
.y19_c00103{bottom:699.600000px;}
.y44_c00103{bottom:711.000000px;}
.y18_c00103{bottom:717.900000px;}
.y43_c00103{bottom:729.000000px;}
.y17_c00103{bottom:735.900000px;}
.y42_c00103{bottom:747.000000px;}
.y16_c00103{bottom:756.750000px;}
.y41_c00103{bottom:774.000000px;}
.y15_c00103{bottom:775.500000px;}
.y40_c00103{bottom:792.000000px;}
.y14_c00103{bottom:793.500000px;}
.y3f_c00103{bottom:810.300000px;}
.y13_c00103{bottom:818.550000px;}
.y3e_c00103{bottom:828.300000px;}
.y12_c00103{bottom:837.300000px;}
.y3d_c00103{bottom:846.000000px;}
.y11_c00103{bottom:863.250000px;}
.y3c_c00103{bottom:864.000000px;}
.y62_c00103{bottom:873.300000px;}
.y3b_c00103{bottom:882.000000px;}
.y10_c00103{bottom:885.900000px;}
.yf_c00103{bottom:908.250000px;}
.ye_c00103{bottom:926.250000px;}
.y3a_c00103{bottom:935.700000px;}
.yd_c00103{bottom:943.950000px;}
.y39_c00103{bottom:953.700000px;}
.yc_c00103{bottom:962.250000px;}
.yb_c00103{bottom:980.250000px;}
.y38_c00103{bottom:980.700000px;}
.ya_c00103{bottom:998.250000px;}
.y37_c00103{bottom:1007.700000px;}
.y9_c00103{bottom:1016.250000px;}
.y36_c00103{bottom:1026.000000px;}
.y8_c00103{bottom:1034.700000px;}
.y7_c00103{bottom:1052.700000px;}
.y35_c00103{bottom:1053.000000px;}
.y6_c00103{bottom:1070.700000px;}
.y34_c00103{bottom:1071.000000px;}
.y5_c00103{bottom:1088.700000px;}
.y33_c00103{bottom:1097.700000px;}
.y4_c00103{bottom:1106.700000px;}
.y3_c00103{bottom:1125.000000px;}
.y1_c00103{bottom:1152.000000px;}
.y2_c00103{bottom:1152.300000px;}
.h9_c00103{height:24.000000px;}
.hb_c00103{height:30.000000px;}
.ha_c00103{height:36.000000px;}
.h8_c00103{height:54.000000px;}
.h7_c00103{height:60.000000px;}
.h4_c00103{height:66.000000px;}
.h5_c00103{height:72.000000px;}
.h6_c00103{height:78.000000px;}
.h3_c00103{height:84.000000px;}
.h2_c00103{height:90.000000px;}
.h0_c00103{height:1275.480010px;}
.h1_c00103{height:1275.750000px;}
.w1_c00103{width:953.250000px;}
.w0_c00103{width:953.280030px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:178.200000px;}
.x45_c00103{left:181.500000px;}
.x4b_c00103{left:182.850000px;}
.x6f_c00103{left:184.650000px;}
.x72_c00103{left:186.900000px;}
.x89_c00103{left:187.950000px;}
.x84_c00103{left:189.000000px;}
.x3_c00103{left:196.500000px;}
.x19_c00103{left:197.850000px;}
.x39_c00103{left:198.900000px;}
.x55_c00103{left:200.100000px;}
.x63_c00103{left:201.150000px;}
.x6d_c00103{left:202.650000px;}
.x78_c00103{left:204.450000px;}
.x30_c00103{left:215.700000px;}
.x4c_c00103{left:217.050000px;}
.x5c_c00103{left:219.150000px;}
.x1a_c00103{left:220.500000px;}
.x74_c00103{left:222.600000px;}
.x4_c00103{left:224.550000px;}
.x11_c00103{left:230.400000px;}
.x68_c00103{left:231.600000px;}
.x29_c00103{left:233.550000px;}
.x31_c00103{left:234.750000px;}
.x51_c00103{left:238.500000px;}
.x1b_c00103{left:241.800000px;}
.x46_c00103{left:244.500000px;}
.x80_c00103{left:245.850000px;}
.x70_c00103{left:247.350000px;}
.x47_c00103{left:251.700000px;}
.x9_c00103{left:253.500000px;}
.x4d_c00103{left:255.600000px;}
.x85_c00103{left:257.100000px;}
.x41_c00103{left:258.600000px;}
.x5d_c00103{left:260.550000px;}
.x6e_c00103{left:261.750000px;}
.x69_c00103{left:262.950000px;}
.x12_c00103{left:264.900000px;}
.x75_c00103{left:266.550000px;}
.x2a_c00103{left:270.300000px;}
.xa_c00103{left:271.800000px;}
.x7e_c00103{left:273.900000px;}
.x48_c00103{left:275.850000px;}
.x71_c00103{left:280.200000px;}
.x86_c00103{left:281.250000px;}
.x64_c00103{left:282.600000px;}
.x56_c00103{left:283.950000px;}
.x1c_c00103{left:287.100000px;}
.x6a_c00103{left:289.200000px;}
.xb_c00103{left:291.900000px;}
.x13_c00103{left:294.000000px;}
.x42_c00103{left:297.150000px;}
.x5a_c00103{left:299.100000px;}
.x25_c00103{left:300.300000px;}
.x5_c00103{left:302.700000px;}
.x8a_c00103{left:304.200000px;}
.x2b_c00103{left:306.000000px;}
.x3a_c00103{left:308.250000px;}
.x3b_c00103{left:310.350000px;}
.x5e_c00103{left:314.550000px;}
.x73_c00103{left:317.250000px;}
.x49_c00103{left:319.350000px;}
.x52_c00103{left:322.200000px;}
.x4e_c00103{left:323.250000px;}
.x14_c00103{left:324.300000px;}
.x76_c00103{left:326.700000px;}
.x35_c00103{left:328.200000px;}
.xc_c00103{left:330.000000px;}
.x1d_c00103{left:331.050000px;}
.x3c_c00103{left:333.450000px;}
.x43_c00103{left:334.650000px;}
.x32_c00103{left:335.850000px;}
.x57_c00103{left:337.950000px;}
.x36_c00103{left:339.750000px;}
.x21_c00103{left:340.800000px;}
.x2c_c00103{left:343.800000px;}
.x5f_c00103{left:348.750000px;}
.x5b_c00103{left:350.550000px;}
.x4a_c00103{left:354.150000px;}
.x44_c00103{left:355.500000px;}
.x15_c00103{left:357.000000px;}
.x26_c00103{left:360.150000px;}
.x22_c00103{left:362.400000px;}
.x87_c00103{left:365.100000px;}
.xd_c00103{left:366.750000px;}
.x88_c00103{left:371.550000px;}
.x81_c00103{left:373.350000px;}
.x60_c00103{left:374.700000px;}
.x7a_c00103{left:376.650000px;}
.x6_c00103{left:378.000000px;}
.x2d_c00103{left:379.050000px;}
.x79_c00103{left:380.850000px;}
.x3d_c00103{left:382.350000px;}
.x16_c00103{left:385.050000px;}
.x7f_c00103{left:387.000000px;}
.x53_c00103{left:395.250000px;}
.xe_c00103{left:397.050000px;}
.x1e_c00103{left:398.700000px;}
.x62_c00103{left:402.450000px;}
.x1f_c00103{left:405.600000px;}
.x17_c00103{left:407.400000px;}
.x65_c00103{left:410.400000px;}
.x33_c00103{left:415.350000px;}
.x4f_c00103{left:418.950000px;}
.x23_c00103{left:422.400000px;}
.x2_c00103{left:427.650000px;}
.x82_c00103{left:428.700000px;}
.x3e_c00103{left:432.750000px;}
.x7_c00103{left:434.550000px;}
.x58_c00103{left:438.450000px;}
.x2e_c00103{left:441.000000px;}
.x27_c00103{left:442.650000px;}
.x7b_c00103{left:445.650000px;}
.x61_c00103{left:446.700000px;}
.xf_c00103{left:451.050000px;}
.x3f_c00103{left:454.050000px;}
.x18_c00103{left:455.250000px;}
.x8_c00103{left:457.650000px;}
.x6b_c00103{left:463.800000px;}
.x2f_c00103{left:465.450000px;}
.x66_c00103{left:469.050000px;}
.x40_c00103{left:471.750000px;}
.x10_c00103{left:476.550000px;}
.x38_c00103{left:478.650000px;}
.x34_c00103{left:480.450000px;}
.x54_c00103{left:481.950000px;}
.x20_c00103{left:483.000000px;}
.x28_c00103{left:485.100000px;}
.x50_c00103{left:487.350000px;}
.x24_c00103{left:490.050000px;}
.x67_c00103{left:493.200000px;}
.x7c_c00103{left:494.250000px;}
.x37_c00103{left:504.150000px;}
.x83_c00103{left:510.750000px;}
.x77_c00103{left:511.950000px;}
.x7d_c00103{left:514.050000px;}
.x59_c00103{left:515.100000px;}
.x6c_c00103{left:516.750000px;}
.x8b_c00103{left:538.950000px;}
.xb4_c00103{left:541.800000px;}
.xd7_c00103{left:542.850000px;}
.x120_c00103{left:545.700000px;}
.x99_c00103{left:556.200000px;}
.xa1_c00103{left:558.000000px;}
.xc0_c00103{left:560.400000px;}
.xde_c00103{left:561.750000px;}
.x10d_c00103{left:562.800000px;}
.x122_c00103{left:564.000000px;}
.xca_c00103{left:565.800000px;}
.xef_c00103{left:571.500000px;}
.xeb_c00103{left:573.150000px;}
.x8c_c00103{left:574.950000px;}
.xa4_c00103{left:577.050000px;}
.xa6_c00103{left:578.100000px;}
.xb9_c00103{left:579.300000px;}
.x124_c00103{left:582.150000px;}
.x12a_c00103{left:584.100000px;}
.xa2_c00103{left:587.550000px;}
.xd8_c00103{left:588.600000px;}
.x10a_c00103{left:590.700000px;}
.x116_c00103{left:592.800000px;}
.xdf_c00103{left:593.850000px;}
.xe4_c00103{left:596.250000px;}
.xc1_c00103{left:598.200000px;}
.xfe_c00103{left:599.250000px;}
.xf8_c00103{left:600.300000px;}
.x102_c00103{left:603.000000px;}
.xe6_c00103{left:604.500000px;}
.xe0_c00103{left:605.700000px;}
.x8d_c00103{left:608.100000px;}
.xe5_c00103{left:609.900000px;}
.xb5_c00103{left:612.000000px;}
.xc5_c00103{left:613.500000px;}
.x93_c00103{left:616.350000px;}
.xa3_c00103{left:617.400000px;}
.xa7_c00103{left:620.550000px;}
.x125_c00103{left:621.600000px;}
.xec_c00103{left:622.800000px;}
.x115_c00103{left:624.750000px;}
.xf3_c00103{left:629.400000px;}
.x128_c00103{left:630.450000px;}
.xf6_c00103{left:631.800000px;}
.xa5_c00103{left:632.850000px;}
.x117_c00103{left:634.200000px;}
.x9a_c00103{left:635.850000px;}
.xfb_c00103{left:638.100000px;}
.xae_c00103{left:639.450000px;}
.xe1_c00103{left:640.650000px;}
.x11b_c00103{left:642.750000px;}
.x10e_c00103{left:644.850000px;}
.xcb_c00103{left:646.050000px;}
.x10b_c00103{left:647.250000px;}
.x8e_c00103{left:650.250000px;}
.xab_c00103{left:651.300000px;}
.x11f_c00103{left:653.700000px;}
.x10f_c00103{left:656.400000px;}
.xd9_c00103{left:657.750000px;}
.xba_c00103{left:659.250000px;}
.x94_c00103{left:661.050000px;}
.x12b_c00103{left:662.100000px;}
.xb6_c00103{left:664.200000px;}
.xd0_c00103{left:666.300000px;}
.x8f_c00103{left:667.500000px;}
.xcc_c00103{left:668.700000px;}
.xac_c00103{left:671.100000px;}
.xc2_c00103{left:673.500000px;}
.xaf_c00103{left:678.000000px;}
.xbb_c00103{left:679.350000px;}
.xc6_c00103{left:681.900000px;}
.x106_c00103{left:683.250000px;}
.x108_c00103{left:686.250000px;}
.xe7_c00103{left:688.050000px;}
.xb0_c00103{left:689.550000px;}
.x103_c00103{left:691.950000px;}
.x9b_c00103{left:693.750000px;}
.x96_c00103{left:695.550000px;}
.xd1_c00103{left:696.600000px;}
.x90_c00103{left:698.100000px;}
.x129_c00103{left:699.600000px;}
.x95_c00103{left:700.650000px;}
.x121_c00103{left:702.600000px;}
.xf9_c00103{left:703.950000px;}
.xff_c00103{left:705.000000px;}
.xda_c00103{left:706.050000px;}
.xe8_c00103{left:708.150000px;}
.xf0_c00103{left:710.100000px;}
.x118_c00103{left:711.900000px;}
.xcd_c00103{left:713.700000px;}
.x110_c00103{left:715.350000px;}
.xfc_c00103{left:717.000000px;}
.xed_c00103{left:718.200000px;}
.xb1_c00103{left:722.250000px;}
.xbc_c00103{left:723.300000px;}
.xc3_c00103{left:726.450000px;}
.xa8_c00103{left:729.450000px;}
.x9c_c00103{left:730.800000px;}
.xf1_c00103{left:732.000000px;}
.x100_c00103{left:734.100000px;}
.xc7_c00103{left:735.600000px;}
.xd2_c00103{left:736.950000px;}
.x11c_c00103{left:738.600000px;}
.xbd_c00103{left:739.800000px;}
.xfd_c00103{left:743.250000px;}
.x91_c00103{left:744.600000px;}
.xa9_c00103{left:745.950000px;}
.x107_c00103{left:747.750000px;}
.x9d_c00103{left:750.600000px;}
.xf4_c00103{left:751.800000px;}
.xe9_c00103{left:755.250000px;}
.xc4_c00103{left:759.600000px;}
.xdb_c00103{left:762.150000px;}
.xd3_c00103{left:763.200000px;}
.xfa_c00103{left:764.400000px;}
.xc8_c00103{left:765.900000px;}
.xbe_c00103{left:768.900000px;}
.x111_c00103{left:771.150000px;}
.xb2_c00103{left:773.400000px;}
.x119_c00103{left:774.450000px;}
.x104_c00103{left:775.500000px;}
.x97_c00103{left:780.900000px;}
.xce_c00103{left:784.200000px;}
.x112_c00103{left:787.050000px;}
.xad_c00103{left:788.100000px;}
.xb7_c00103{left:791.250000px;}
.xaa_c00103{left:792.450000px;}
.xbf_c00103{left:794.100000px;}
.x126_c00103{left:795.450000px;}
.x9e_c00103{left:797.100000px;}
.x12c_c00103{left:798.150000px;}
.x98_c00103{left:800.400000px;}
.x92_c00103{left:801.450000px;}
.xdc_c00103{left:805.350000px;}
.xd4_c00103{left:806.700000px;}
.x113_c00103{left:808.350000px;}
.xee_c00103{left:809.550000px;}
.xe2_c00103{left:810.900000px;}
.x109_c00103{left:812.850000px;}
.x101_c00103{left:815.100000px;}
.xf7_c00103{left:818.850000px;}
.xb3_c00103{left:820.200000px;}
.x9f_c00103{left:822.300000px;}
.x123_c00103{left:829.050000px;}
.xd5_c00103{left:830.400000px;}
.xea_c00103{left:831.450000px;}
.xb8_c00103{left:835.500000px;}
.xf5_c00103{left:837.450000px;}
.xdd_c00103{left:839.250000px;}
.x12e_c00103{left:840.900000px;}
.x11d_c00103{left:842.250000px;}
.x114_c00103{left:843.600000px;}
.xcf_c00103{left:848.250000px;}
.xa0_c00103{left:850.350000px;}
.x10c_c00103{left:851.850000px;}
.x11e_c00103{left:853.350000px;}
.xd6_c00103{left:854.850000px;}
.x127_c00103{left:855.900000px;}
.x11a_c00103{left:857.250000px;}
.x12d_c00103{left:861.150000px;}
.xc9_c00103{left:865.650000px;}
.xe3_c00103{left:867.000000px;}
.xf2_c00103{left:868.050000px;}
.x105_c00103{left:870.450000px;}
.x12f_c00103{left:888.150000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws2_c00103{word-spacing:-10.443559pt;}
.ws1_c00103{word-spacing:-9.941520pt;}
.ws5_c00103{word-spacing:-5.333333pt;}
.ws7_c00103{word-spacing:0.000000pt;}
.ws0_c00103{word-spacing:12.164794pt;}
.ws6_c00103{word-spacing:14.861111pt;}
.ws4_c00103{word-spacing:22.857143pt;}
.ws3_c00103{word-spacing:39.259259pt;}
.fs7_c00103{font-size:21.333333pt;}
.fs9_c00103{font-size:26.666667pt;}
.fs8_c00103{font-size:32.000000pt;}
.fs6_c00103{font-size:48.000000pt;}
.fs5_c00103{font-size:53.333333pt;}
.fs2_c00103{font-size:58.666667pt;}
.fs3_c00103{font-size:64.000000pt;}
.fs4_c00103{font-size:69.333333pt;}
.fs1_c00103{font-size:74.666667pt;}
.fs0_c00103{font-size:80.000000pt;}
.y0_c00103{bottom:0.000000pt;}
.y32_c00103{bottom:147.466667pt;}
.y61_c00103{bottom:148.533333pt;}
.y31_c00103{bottom:163.466667pt;}
.y60_c00103{bottom:164.800000pt;}
.y30_c00103{bottom:184.000000pt;}
.y5f_c00103{bottom:188.800000pt;}
.y2f_c00103{bottom:203.733333pt;}
.y5e_c00103{bottom:204.800000pt;}
.y5d_c00103{bottom:220.800000pt;}
.y2e_c00103{bottom:235.466667pt;}
.y5c_c00103{bottom:236.533333pt;}
.y5b_c00103{bottom:252.533333pt;}
.y2d_c00103{bottom:267.200000pt;}
.y5a_c00103{bottom:268.533333pt;}
.y59_c00103{bottom:284.533333pt;}
.y2c_c00103{bottom:287.066667pt;}
.y58_c00103{bottom:300.533333pt;}
.y2b_c00103{bottom:305.333333pt;}
.y2a_c00103{bottom:318.400000pt;}
.y57_c00103{bottom:324.266667pt;}
.y29_c00103{bottom:331.466667pt;}
.y56_c00103{bottom:340.266667pt;}
.y28_c00103{bottom:349.733333pt;}
.y55_c00103{bottom:356.266667pt;}
.y27_c00103{bottom:365.733333pt;}
.y54_c00103{bottom:372.533333pt;}
.y26_c00103{bottom:381.733333pt;}
.y53_c00103{bottom:388.533333pt;}
.y25_c00103{bottom:397.466667pt;}
.y52_c00103{bottom:404.533333pt;}
.y24_c00103{bottom:416.933333pt;}
.y51_c00103{bottom:420.800000pt;}
.y23_c00103{bottom:433.200000pt;}
.y50_c00103{bottom:436.800000pt;}
.y4f_c00103{bottom:452.800000pt;}
.y22_c00103{bottom:453.066667pt;}
.y4e_c00103{bottom:468.800000pt;}
.y21_c00103{bottom:476.800000pt;}
.y4d_c00103{bottom:485.066667pt;}
.y20_c00103{bottom:496.666667pt;}
.y4c_c00103{bottom:501.333333pt;}
.y1f_c00103{bottom:516.533333pt;}
.y4b_c00103{bottom:517.066667pt;}
.y1e_c00103{bottom:532.533333pt;}
.y4a_c00103{bottom:533.066667pt;}
.y1d_c00103{bottom:548.800000pt;}
.y49_c00103{bottom:549.066667pt;}
.y1c_c00103{bottom:564.533333pt;}
.y48_c00103{bottom:570.933333pt;}
.y47_c00103{bottom:584.000000pt;}
.y1b_c00103{bottom:587.200000pt;}
.y46_c00103{bottom:597.066667pt;}
.y1a_c00103{bottom:604.533333pt;}
.y45_c00103{bottom:610.933333pt;}
.y19_c00103{bottom:621.866667pt;}
.y44_c00103{bottom:632.000000pt;}
.y18_c00103{bottom:638.133333pt;}
.y43_c00103{bottom:648.000000pt;}
.y17_c00103{bottom:654.133333pt;}
.y42_c00103{bottom:664.000000pt;}
.y16_c00103{bottom:672.666667pt;}
.y41_c00103{bottom:688.000000pt;}
.y15_c00103{bottom:689.333333pt;}
.y40_c00103{bottom:704.000000pt;}
.y14_c00103{bottom:705.333333pt;}
.y3f_c00103{bottom:720.266667pt;}
.y13_c00103{bottom:727.600000pt;}
.y3e_c00103{bottom:736.266667pt;}
.y12_c00103{bottom:744.266667pt;}
.y3d_c00103{bottom:752.000000pt;}
.y11_c00103{bottom:767.333333pt;}
.y3c_c00103{bottom:768.000000pt;}
.y62_c00103{bottom:776.266667pt;}
.y3b_c00103{bottom:784.000000pt;}
.y10_c00103{bottom:787.466667pt;}
.yf_c00103{bottom:807.333333pt;}
.ye_c00103{bottom:823.333333pt;}
.y3a_c00103{bottom:831.733333pt;}
.yd_c00103{bottom:839.066667pt;}
.y39_c00103{bottom:847.733333pt;}
.yc_c00103{bottom:855.333333pt;}
.yb_c00103{bottom:871.333333pt;}
.y38_c00103{bottom:871.733333pt;}
.ya_c00103{bottom:887.333333pt;}
.y37_c00103{bottom:895.733333pt;}
.y9_c00103{bottom:903.333333pt;}
.y36_c00103{bottom:912.000000pt;}
.y8_c00103{bottom:919.733333pt;}
.y7_c00103{bottom:935.733333pt;}
.y35_c00103{bottom:936.000000pt;}
.y6_c00103{bottom:951.733333pt;}
.y34_c00103{bottom:952.000000pt;}
.y5_c00103{bottom:967.733333pt;}
.y33_c00103{bottom:975.733333pt;}
.y4_c00103{bottom:983.733333pt;}
.y3_c00103{bottom:1000.000000pt;}
.y1_c00103{bottom:1024.000000pt;}
.y2_c00103{bottom:1024.266667pt;}
.h9_c00103{height:21.333333pt;}
.hb_c00103{height:26.666667pt;}
.ha_c00103{height:32.000000pt;}
.h8_c00103{height:48.000000pt;}
.h7_c00103{height:53.333333pt;}
.h4_c00103{height:58.666667pt;}
.h5_c00103{height:64.000000pt;}
.h6_c00103{height:69.333333pt;}
.h3_c00103{height:74.666667pt;}
.h2_c00103{height:80.000000pt;}
.h0_c00103{height:1133.760009pt;}
.h1_c00103{height:1134.000000pt;}
.w1_c00103{width:847.333333pt;}
.w0_c00103{width:847.360027pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:158.400000pt;}
.x45_c00103{left:161.333333pt;}
.x4b_c00103{left:162.533333pt;}
.x6f_c00103{left:164.133333pt;}
.x72_c00103{left:166.133333pt;}
.x89_c00103{left:167.066667pt;}
.x84_c00103{left:168.000000pt;}
.x3_c00103{left:174.666667pt;}
.x19_c00103{left:175.866667pt;}
.x39_c00103{left:176.800000pt;}
.x55_c00103{left:177.866667pt;}
.x63_c00103{left:178.800000pt;}
.x6d_c00103{left:180.133333pt;}
.x78_c00103{left:181.733333pt;}
.x30_c00103{left:191.733333pt;}
.x4c_c00103{left:192.933333pt;}
.x5c_c00103{left:194.800000pt;}
.x1a_c00103{left:196.000000pt;}
.x74_c00103{left:197.866667pt;}
.x4_c00103{left:199.600000pt;}
.x11_c00103{left:204.800000pt;}
.x68_c00103{left:205.866667pt;}
.x29_c00103{left:207.600000pt;}
.x31_c00103{left:208.666667pt;}
.x51_c00103{left:212.000000pt;}
.x1b_c00103{left:214.933333pt;}
.x46_c00103{left:217.333333pt;}
.x80_c00103{left:218.533333pt;}
.x70_c00103{left:219.866667pt;}
.x47_c00103{left:223.733333pt;}
.x9_c00103{left:225.333333pt;}
.x4d_c00103{left:227.200000pt;}
.x85_c00103{left:228.533333pt;}
.x41_c00103{left:229.866667pt;}
.x5d_c00103{left:231.600000pt;}
.x6e_c00103{left:232.666667pt;}
.x69_c00103{left:233.733333pt;}
.x12_c00103{left:235.466667pt;}
.x75_c00103{left:236.933333pt;}
.x2a_c00103{left:240.266667pt;}
.xa_c00103{left:241.600000pt;}
.x7e_c00103{left:243.466667pt;}
.x48_c00103{left:245.200000pt;}
.x71_c00103{left:249.066667pt;}
.x86_c00103{left:250.000000pt;}
.x64_c00103{left:251.200000pt;}
.x56_c00103{left:252.400000pt;}
.x1c_c00103{left:255.200000pt;}
.x6a_c00103{left:257.066667pt;}
.xb_c00103{left:259.466667pt;}
.x13_c00103{left:261.333333pt;}
.x42_c00103{left:264.133333pt;}
.x5a_c00103{left:265.866667pt;}
.x25_c00103{left:266.933333pt;}
.x5_c00103{left:269.066667pt;}
.x8a_c00103{left:270.400000pt;}
.x2b_c00103{left:272.000000pt;}
.x3a_c00103{left:274.000000pt;}
.x3b_c00103{left:275.866667pt;}
.x5e_c00103{left:279.600000pt;}
.x73_c00103{left:282.000000pt;}
.x49_c00103{left:283.866667pt;}
.x52_c00103{left:286.400000pt;}
.x4e_c00103{left:287.333333pt;}
.x14_c00103{left:288.266667pt;}
.x76_c00103{left:290.400000pt;}
.x35_c00103{left:291.733333pt;}
.xc_c00103{left:293.333333pt;}
.x1d_c00103{left:294.266667pt;}
.x3c_c00103{left:296.400000pt;}
.x43_c00103{left:297.466667pt;}
.x32_c00103{left:298.533333pt;}
.x57_c00103{left:300.400000pt;}
.x36_c00103{left:302.000000pt;}
.x21_c00103{left:302.933333pt;}
.x2c_c00103{left:305.600000pt;}
.x5f_c00103{left:310.000000pt;}
.x5b_c00103{left:311.600000pt;}
.x4a_c00103{left:314.800000pt;}
.x44_c00103{left:316.000000pt;}
.x15_c00103{left:317.333333pt;}
.x26_c00103{left:320.133333pt;}
.x22_c00103{left:322.133333pt;}
.x87_c00103{left:324.533333pt;}
.xd_c00103{left:326.000000pt;}
.x88_c00103{left:330.266667pt;}
.x81_c00103{left:331.866667pt;}
.x60_c00103{left:333.066667pt;}
.x7a_c00103{left:334.800000pt;}
.x6_c00103{left:336.000000pt;}
.x2d_c00103{left:336.933333pt;}
.x79_c00103{left:338.533333pt;}
.x3d_c00103{left:339.866667pt;}
.x16_c00103{left:342.266667pt;}
.x7f_c00103{left:344.000000pt;}
.x53_c00103{left:351.333333pt;}
.xe_c00103{left:352.933333pt;}
.x1e_c00103{left:354.400000pt;}
.x62_c00103{left:357.733333pt;}
.x1f_c00103{left:360.533333pt;}
.x17_c00103{left:362.133333pt;}
.x65_c00103{left:364.800000pt;}
.x33_c00103{left:369.200000pt;}
.x4f_c00103{left:372.400000pt;}
.x23_c00103{left:375.466667pt;}
.x2_c00103{left:380.133333pt;}
.x82_c00103{left:381.066667pt;}
.x3e_c00103{left:384.666667pt;}
.x7_c00103{left:386.266667pt;}
.x58_c00103{left:389.733333pt;}
.x2e_c00103{left:392.000000pt;}
.x27_c00103{left:393.466667pt;}
.x7b_c00103{left:396.133333pt;}
.x61_c00103{left:397.066667pt;}
.xf_c00103{left:400.933333pt;}
.x3f_c00103{left:403.600000pt;}
.x18_c00103{left:404.666667pt;}
.x8_c00103{left:406.800000pt;}
.x6b_c00103{left:412.266667pt;}
.x2f_c00103{left:413.733333pt;}
.x66_c00103{left:416.933333pt;}
.x40_c00103{left:419.333333pt;}
.x10_c00103{left:423.600000pt;}
.x38_c00103{left:425.466667pt;}
.x34_c00103{left:427.066667pt;}
.x54_c00103{left:428.400000pt;}
.x20_c00103{left:429.333333pt;}
.x28_c00103{left:431.200000pt;}
.x50_c00103{left:433.200000pt;}
.x24_c00103{left:435.600000pt;}
.x67_c00103{left:438.400000pt;}
.x7c_c00103{left:439.333333pt;}
.x37_c00103{left:448.133333pt;}
.x83_c00103{left:454.000000pt;}
.x77_c00103{left:455.066667pt;}
.x7d_c00103{left:456.933333pt;}
.x59_c00103{left:457.866667pt;}
.x6c_c00103{left:459.333333pt;}
.x8b_c00103{left:479.066667pt;}
.xb4_c00103{left:481.600000pt;}
.xd7_c00103{left:482.533333pt;}
.x120_c00103{left:485.066667pt;}
.x99_c00103{left:494.400000pt;}
.xa1_c00103{left:496.000000pt;}
.xc0_c00103{left:498.133333pt;}
.xde_c00103{left:499.333333pt;}
.x10d_c00103{left:500.266667pt;}
.x122_c00103{left:501.333333pt;}
.xca_c00103{left:502.933333pt;}
.xef_c00103{left:508.000000pt;}
.xeb_c00103{left:509.466667pt;}
.x8c_c00103{left:511.066667pt;}
.xa4_c00103{left:512.933333pt;}
.xa6_c00103{left:513.866667pt;}
.xb9_c00103{left:514.933333pt;}
.x124_c00103{left:517.466667pt;}
.x12a_c00103{left:519.200000pt;}
.xa2_c00103{left:522.266667pt;}
.xd8_c00103{left:523.200000pt;}
.x10a_c00103{left:525.066667pt;}
.x116_c00103{left:526.933333pt;}
.xdf_c00103{left:527.866667pt;}
.xe4_c00103{left:530.000000pt;}
.xc1_c00103{left:531.733333pt;}
.xfe_c00103{left:532.666667pt;}
.xf8_c00103{left:533.600000pt;}
.x102_c00103{left:536.000000pt;}
.xe6_c00103{left:537.333333pt;}
.xe0_c00103{left:538.400000pt;}
.x8d_c00103{left:540.533333pt;}
.xe5_c00103{left:542.133333pt;}
.xb5_c00103{left:544.000000pt;}
.xc5_c00103{left:545.333333pt;}
.x93_c00103{left:547.866667pt;}
.xa3_c00103{left:548.800000pt;}
.xa7_c00103{left:551.600000pt;}
.x125_c00103{left:552.533333pt;}
.xec_c00103{left:553.600000pt;}
.x115_c00103{left:555.333333pt;}
.xf3_c00103{left:559.466667pt;}
.x128_c00103{left:560.400000pt;}
.xf6_c00103{left:561.600000pt;}
.xa5_c00103{left:562.533333pt;}
.x117_c00103{left:563.733333pt;}
.x9a_c00103{left:565.200000pt;}
.xfb_c00103{left:567.200000pt;}
.xae_c00103{left:568.400000pt;}
.xe1_c00103{left:569.466667pt;}
.x11b_c00103{left:571.333333pt;}
.x10e_c00103{left:573.200000pt;}
.xcb_c00103{left:574.266667pt;}
.x10b_c00103{left:575.333333pt;}
.x8e_c00103{left:578.000000pt;}
.xab_c00103{left:578.933333pt;}
.x11f_c00103{left:581.066667pt;}
.x10f_c00103{left:583.466667pt;}
.xd9_c00103{left:584.666667pt;}
.xba_c00103{left:586.000000pt;}
.x94_c00103{left:587.600000pt;}
.x12b_c00103{left:588.533333pt;}
.xb6_c00103{left:590.400000pt;}
.xd0_c00103{left:592.266667pt;}
.x8f_c00103{left:593.333333pt;}
.xcc_c00103{left:594.400000pt;}
.xac_c00103{left:596.533333pt;}
.xc2_c00103{left:598.666667pt;}
.xaf_c00103{left:602.666667pt;}
.xbb_c00103{left:603.866667pt;}
.xc6_c00103{left:606.133333pt;}
.x106_c00103{left:607.333333pt;}
.x108_c00103{left:610.000000pt;}
.xe7_c00103{left:611.600000pt;}
.xb0_c00103{left:612.933333pt;}
.x103_c00103{left:615.066667pt;}
.x9b_c00103{left:616.666667pt;}
.x96_c00103{left:618.266667pt;}
.xd1_c00103{left:619.200000pt;}
.x90_c00103{left:620.533333pt;}
.x129_c00103{left:621.866667pt;}
.x95_c00103{left:622.800000pt;}
.x121_c00103{left:624.533333pt;}
.xf9_c00103{left:625.733333pt;}
.xff_c00103{left:626.666667pt;}
.xda_c00103{left:627.600000pt;}
.xe8_c00103{left:629.466667pt;}
.xf0_c00103{left:631.200000pt;}
.x118_c00103{left:632.800000pt;}
.xcd_c00103{left:634.400000pt;}
.x110_c00103{left:635.866667pt;}
.xfc_c00103{left:637.333333pt;}
.xed_c00103{left:638.400000pt;}
.xb1_c00103{left:642.000000pt;}
.xbc_c00103{left:642.933333pt;}
.xc3_c00103{left:645.733333pt;}
.xa8_c00103{left:648.400000pt;}
.x9c_c00103{left:649.600000pt;}
.xf1_c00103{left:650.666667pt;}
.x100_c00103{left:652.533333pt;}
.xc7_c00103{left:653.866667pt;}
.xd2_c00103{left:655.066667pt;}
.x11c_c00103{left:656.533333pt;}
.xbd_c00103{left:657.600000pt;}
.xfd_c00103{left:660.666667pt;}
.x91_c00103{left:661.866667pt;}
.xa9_c00103{left:663.066667pt;}
.x107_c00103{left:664.666667pt;}
.x9d_c00103{left:667.200000pt;}
.xf4_c00103{left:668.266667pt;}
.xe9_c00103{left:671.333333pt;}
.xc4_c00103{left:675.200000pt;}
.xdb_c00103{left:677.466667pt;}
.xd3_c00103{left:678.400000pt;}
.xfa_c00103{left:679.466667pt;}
.xc8_c00103{left:680.800000pt;}
.xbe_c00103{left:683.466667pt;}
.x111_c00103{left:685.466667pt;}
.xb2_c00103{left:687.466667pt;}
.x119_c00103{left:688.400000pt;}
.x104_c00103{left:689.333333pt;}
.x97_c00103{left:694.133333pt;}
.xce_c00103{left:697.066667pt;}
.x112_c00103{left:699.600000pt;}
.xad_c00103{left:700.533333pt;}
.xb7_c00103{left:703.333333pt;}
.xaa_c00103{left:704.400000pt;}
.xbf_c00103{left:705.866667pt;}
.x126_c00103{left:707.066667pt;}
.x9e_c00103{left:708.533333pt;}
.x12c_c00103{left:709.466667pt;}
.x98_c00103{left:711.466667pt;}
.x92_c00103{left:712.400000pt;}
.xdc_c00103{left:715.866667pt;}
.xd4_c00103{left:717.066667pt;}
.x113_c00103{left:718.533333pt;}
.xee_c00103{left:719.600000pt;}
.xe2_c00103{left:720.800000pt;}
.x109_c00103{left:722.533333pt;}
.x101_c00103{left:724.533333pt;}
.xf7_c00103{left:727.866667pt;}
.xb3_c00103{left:729.066667pt;}
.x9f_c00103{left:730.933333pt;}
.x123_c00103{left:736.933333pt;}
.xd5_c00103{left:738.133333pt;}
.xea_c00103{left:739.066667pt;}
.xb8_c00103{left:742.666667pt;}
.xf5_c00103{left:744.400000pt;}
.xdd_c00103{left:746.000000pt;}
.x12e_c00103{left:747.466667pt;}
.x11d_c00103{left:748.666667pt;}
.x114_c00103{left:749.866667pt;}
.xcf_c00103{left:754.000000pt;}
.xa0_c00103{left:755.866667pt;}
.x10c_c00103{left:757.200000pt;}
.x11e_c00103{left:758.533333pt;}
.xd6_c00103{left:759.866667pt;}
.x127_c00103{left:760.800000pt;}
.x11a_c00103{left:762.000000pt;}
.x12d_c00103{left:765.466667pt;}
.xc9_c00103{left:769.466667pt;}
.xe3_c00103{left:770.666667pt;}
.xf2_c00103{left:771.600000pt;}
.x105_c00103{left:773.733333pt;}
.x12f_c00103{left:789.466667pt;}
}





/* 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_c00104 {
    display:none;
  }
  .loading-indicator_c00104.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00104 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_c00104 { 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_c00104" -> "#page-container .classname_c00104")
 */
.pf_c00104 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00104 { /* 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_c00104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00104 { /* 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_c00104 { /* 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_c00104 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00104 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00104 {overflow:visible;}
  }
}
.c_c00104 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00104 { /* 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_c00104:after { /* webkit #35443 */
  content: '';
}
.t_c00104:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00104 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 */
}
.__c00104 { /* 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_c00104 { /* info for Javascript */
  display:none;
}
.l_c00104 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00104 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00104 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00104: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_c00104 {
    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_c00104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00104.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_c00104 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00104;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.000000;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;}
.m8_c00104{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mad_c00104{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00104{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00104{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m27_c00104{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00104{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00104{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00104{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m108_c00104{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m84_c00104{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00104{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md2_c00104{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00104{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6_c00104{transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);}
.m70_c00104{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m87_c00104{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00104{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00104{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m112_c00104{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m76_c00104{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m93_c00104{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00104{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00104{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m85_c00104{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00104{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00104{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m17_c00104{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md9_c00104{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m111_c00104{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00104{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00104{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mae_c00104{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m80_c00104{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m58_c00104{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma_c00104{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00104{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m64_c00104{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m110_c00104{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me4_c00104{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m74_c00104{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00104{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00104{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00104{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m96_c00104{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m48_c00104{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mde_c00104{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00104{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m109_c00104{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m49_c00104{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mca_c00104{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00104{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.me6_c00104{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m40_c00104{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m59_c00104{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m41_c00104{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m16_c00104{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00104{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m97_c00104{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me_c00104{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00104{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m46_c00104{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m31_c00104{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00104{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m63_c00104{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00104{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00104{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00104{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m105_c00104{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00104{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m47_c00104{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m78_c00104{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m62_c00104{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00104{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m42_c00104{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m89_c00104{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m81_c00104{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00104{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m83_c00104{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00104{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m36_c00104{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00104{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m7_c00104{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00104{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m54_c00104{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00104{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m104_c00104{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m33_c00104{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m35_c00104{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m19_c00104{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m71_c00104{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md3_c00104{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc_c00104{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00104{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m34_c00104{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m32_c00104{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00104{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m45_c00104{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m43_c00104{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m103_c00104{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00104{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m30_c00104{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m86_c00104{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00104{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m44_c00104{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00104{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me9_c00104{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m39_c00104{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m51_c00104{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00104{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00104{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00104{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00104{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00104{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00104{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00104{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m82_c00104{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m79_c00104{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00104{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00104{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00104{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m77_c00104{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m106_c00104{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00104{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00104{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md4_c00104{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mac_c00104{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00104{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00104{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m113_c00104{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md8_c00104{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00104{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m53_c00104{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m61_c00104{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m57_c00104{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00104{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00104{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m68_c00104{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00104{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00104{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m92_c00104{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m91_c00104{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m73_c00104{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9_c00104{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m67_c00104{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00104{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me5_c00104{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m37_c00104{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00104{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00104{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m26_c00104{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00104{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m66_c00104{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00104{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00104{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m55_c00104{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00104{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00104{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb_c00104{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00104{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m56_c00104{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00104{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00104{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00104{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00104{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mab_c00104{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00104{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00104{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00104{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mf_c00104{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00104{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mef_c00104{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m20_c00104{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00104{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00104{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00104{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m75_c00104{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m24_c00104{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m38_c00104{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00104{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00104{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md_c00104{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m12_c00104{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me7_c00104{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mec_c00104{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00104{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00104{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00104{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md0_c00104{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00104{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00104{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m99_c00104{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00104{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mee_c00104{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00104{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m50_c00104{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00104{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.med_c00104{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00104{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00104{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mba_c00104{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00104{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m18_c00104{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00104{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00104{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m101_c00104{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m21_c00104{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00104{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m95_c00104{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md7_c00104{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m94_c00104{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00104{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00104{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00104{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);}
.m25_c00104{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m52_c00104{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00104{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00104{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00104{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00104{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00104{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00104{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me3_c00104{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m72_c00104{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00104{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.meb_c00104{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md5_c00104{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me8_c00104{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00104{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m11_c00104{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00104{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00104{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m60_c00104{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.me1_c00104{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m90_c00104{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00104{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m10_c00104{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00104{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00104{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00104{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.me2_c00104{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3_c00104{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m98_c00104{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00104{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m23_c00104{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.md1_c00104{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00104{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00104{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m107_c00104{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.maa_c00104{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mea_c00104{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m88_c00104{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.maf_c00104{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m13_c00104{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mce_c00104{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00104{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00104{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me0_c00104{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m65_c00104{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m15_c00104{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.mff_c00104{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m100_c00104{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.md6_c00104{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m102_c00104{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00104{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00104{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m14_c00104{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m22_c00104{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m4_c00104{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m28_c00104{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m2_c00104{transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);}
.m0_c00104{transform:matrix(0.402750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00104{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mda_c00104{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00104{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.m29_c00104{transform:matrix(0.786750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786750,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls0_c00104{letter-spacing:0.000000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{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__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00104{word-spacing:-17.895010px;}
.wse_c00104{word-spacing:-11.613497px;}
.ws1_c00104{word-spacing:-9.068368px;}
.wsa_c00104{word-spacing:-7.219542px;}
.wsf_c00104{word-spacing:-6.903780px;}
.wsb_c00104{word-spacing:-5.000000px;}
.ws5_c00104{word-spacing:-3.333333px;}
.ws2_c00104{word-spacing:-3.052402px;}
.wsd_c00104{word-spacing:-1.662107px;}
.wsc_c00104{word-spacing:-1.657682px;}
.ws4_c00104{word-spacing:-1.058296px;}
.ws10_c00104{word-spacing:0.000000px;}
.ws3_c00104{word-spacing:3.545455px;}
.ws6_c00104{word-spacing:21.666667px;}
.ws7_c00104{word-spacing:22.142857px;}
.ws9_c00104{word-spacing:131.346154px;}
.ws8_c00104{word-spacing:158.750000px;}
._0_c00104{width:201.250000px;}
.fc0_c00104{color:transparent;}
.fs6_c00104{font-size:36.000000px;}
.fs1_c00104{font-size:48.000000px;}
.fs5_c00104{font-size:54.000000px;}
.fs3_c00104{font-size:60.000000px;}
.fs4_c00104{font-size:66.000000px;}
.fs2_c00104{font-size:72.000000px;}
.fs0_c00104{font-size:84.000000px;}
.y0_c00104{bottom:0.000000px;}
.y30_c00104{bottom:186.150000px;}
.y62_c00104{bottom:188.550000px;}
.y2f_c00104{bottom:200.850000px;}
.y61_c00104{bottom:206.550000px;}
.y2e_c00104{bottom:215.250000px;}
.y60_c00104{bottom:224.550000px;}
.y2d_c00104{bottom:233.250000px;}
.y5f_c00104{bottom:242.550000px;}
.y2c_c00104{bottom:251.250000px;}
.y5e_c00104{bottom:260.250000px;}
.y2b_c00104{bottom:269.250000px;}
.y5d_c00104{bottom:277.950000px;}
.y2a_c00104{bottom:286.950000px;}
.y5c_c00104{bottom:299.100000px;}
.y29_c00104{bottom:304.950000px;}
.y5b_c00104{bottom:317.100000px;}
.y28_c00104{bottom:326.850000px;}
.y5a_c00104{bottom:344.400000px;}
.y27_c00104{bottom:344.850000px;}
.y59_c00104{bottom:362.400000px;}
.y26_c00104{bottom:363.150000px;}
.y58_c00104{bottom:380.100000px;}
.y25_c00104{bottom:380.850000px;}
.y24_c00104{bottom:398.850000px;}
.y57_c00104{bottom:406.500000px;}
.y23_c00104{bottom:420.900000px;}
.y56_c00104{bottom:424.800000px;}
.y55_c00104{bottom:442.500000px;}
.y22_c00104{bottom:447.900000px;}
.y54_c00104{bottom:460.500000px;}
.y21_c00104{bottom:469.950000px;}
.y53_c00104{bottom:482.400000px;}
.y20_c00104{bottom:488.250000px;}
.y52_c00104{bottom:500.400000px;}
.y1f_c00104{bottom:506.550000px;}
.y51_c00104{bottom:518.700000px;}
.y1e_c00104{bottom:524.250000px;}
.y50_c00104{bottom:536.400000px;}
.y1d_c00104{bottom:542.250000px;}
.y4f_c00104{bottom:554.400000px;}
.y1c_c00104{bottom:560.550000px;}
.y4e_c00104{bottom:572.400000px;}
.y1b_c00104{bottom:581.400000px;}
.y4d_c00104{bottom:590.400000px;}
.y1a_c00104{bottom:600.450000px;}
.y4c_c00104{bottom:608.400000px;}
.y19_c00104{bottom:621.750000px;}
.y4b_c00104{bottom:626.100000px;}
.y18_c00104{bottom:640.800000px;}
.y4a_c00104{bottom:646.500000px;}
.y17_c00104{bottom:658.800000px;}
.y49_c00104{bottom:667.050000px;}
.y16_c00104{bottom:680.700000px;}
.y48_c00104{bottom:684.750000px;}
.y15_c00104{bottom:698.700000px;}
.y47_c00104{bottom:702.450000px;}
.y46_c00104{bottom:720.750000px;}
.y14_c00104{bottom:721.050000px;}
.y45_c00104{bottom:742.950000px;}
.y13_c00104{bottom:743.400000px;}
.y44_c00104{bottom:760.650000px;}
.y12_c00104{bottom:765.750000px;}
.y43_c00104{bottom:778.650000px;}
.y11_c00104{bottom:784.050000px;}
.y42_c00104{bottom:796.650000px;}
.y10_c00104{bottom:804.600000px;}
.y41_c00104{bottom:818.700000px;}
.yf_c00104{bottom:823.350000px;}
.y40_c00104{bottom:841.200000px;}
.ye_c00104{bottom:845.250000px;}
.y3f_c00104{bottom:858.900000px;}
.yd_c00104{bottom:863.550000px;}
.y3e_c00104{bottom:880.950000px;}
.yc_c00104{bottom:881.550000px;}
.yb_c00104{bottom:899.250000px;}
.y3d_c00104{bottom:903.300000px;}
.y3c_c00104{bottom:921.000000px;}
.ya_c00104{bottom:927.000000px;}
.y3b_c00104{bottom:938.700000px;}
.y9_c00104{bottom:954.000000px;}
.y3a_c00104{bottom:956.700000px;}
.y39_c00104{bottom:974.700000px;}
.y8_c00104{bottom:977.850000px;}
.y38_c00104{bottom:992.400000px;}
.y7_c00104{bottom:999.750000px;}
.y37_c00104{bottom:1010.400000px;}
.y6_c00104{bottom:1026.300000px;}
.y36_c00104{bottom:1028.400000px;}
.y35_c00104{bottom:1046.100000px;}
.y5_c00104{bottom:1061.700000px;}
.y34_c00104{bottom:1064.100000px;}
.y33_c00104{bottom:1082.100000px;}
.y32_c00104{bottom:1099.800000px;}
.y4_c00104{bottom:1101.300000px;}
.y31_c00104{bottom:1117.500000px;}
.y3_c00104{bottom:1119.600000px;}
.y1_c00104{bottom:1145.100000px;}
.y2_c00104{bottom:1279.800000px;}
.h8_c00104{height:36.000000px;}
.h3_c00104{height:48.000000px;}
.h7_c00104{height:54.000000px;}
.h5_c00104{height:60.000000px;}
.h6_c00104{height:66.000000px;}
.h4_c00104{height:72.000000px;}
.h2_c00104{height:84.000000px;}
.h0_c00104{height:1280.160003px;}
.h1_c00104{height:1280.250000px;}
.w1_c00104{width:953.250000px;}
.w0_c00104{width:953.280030px;}
.x0_c00104{left:0.000000px;}
.x9_c00104{left:26.250000px;}
.x92_c00104{left:78.900000px;}
.x16_c00104{left:82.050000px;}
.x5d_c00104{left:83.100000px;}
.x6f_c00104{left:85.350000px;}
.x22_c00104{left:86.400000px;}
.x8e_c00104{left:99.300000px;}
.x84_c00104{left:101.550000px;}
.xa_c00104{left:103.650000px;}
.x2d_c00104{left:104.700000px;}
.x3b_c00104{left:106.200000px;}
.x29_c00104{left:107.250000px;}
.x97_c00104{left:111.000000px;}
.x86_c00104{left:118.050000px;}
.x73_c00104{left:123.450000px;}
.x12_c00104{left:125.250000px;}
.x2e_c00104{left:126.600000px;}
.x6e_c00104{left:128.100000px;}
.x7f_c00104{left:131.400000px;}
.x41_c00104{left:133.800000px;}
.x54_c00104{left:138.000000px;}
.x23_c00104{left:139.350000px;}
.x17_c00104{left:141.450000px;}
.x25_c00104{left:143.250000px;}
.x7b_c00104{left:145.050000px;}
.x13_c00104{left:146.100000px;}
.x93_c00104{left:147.300000px;}
.x2f_c00104{left:151.500000px;}
.x5e_c00104{left:152.550000px;}
.xb_c00104{left:154.350000px;}
.x8d_c00104{left:156.150000px;}
.x4b_c00104{left:159.150000px;}
.x43_c00104{left:160.200000px;}
.x87_c00104{left:161.550000px;}
.x6b_c00104{left:162.750000px;}
.x60_c00104{left:163.800000px;}
.x1d_c00104{left:166.650000px;}
.x1f_c00104{left:168.000000px;}
.x26_c00104{left:169.950000px;}
.xc_c00104{left:172.050000px;}
.x58_c00104{left:173.100000px;}
.x42_c00104{left:174.450000px;}
.x1e_c00104{left:179.550000px;}
.x20_c00104{left:181.350000px;}
.x30_c00104{left:183.600000px;}
.x70_c00104{left:184.800000px;}
.x2a_c00104{left:186.750000px;}
.x94_c00104{left:189.450000px;}
.x64_c00104{left:191.100000px;}
.x37_c00104{left:192.450000px;}
.xd_c00104{left:193.950000px;}
.x18_c00104{left:195.150000px;}
.x14_c00104{left:198.300000px;}
.x48_c00104{left:200.100000px;}
.x69_c00104{left:201.300000px;}
.x74_c00104{left:202.350000px;}
.x27_c00104{left:204.900000px;}
.x19_c00104{left:207.750000px;}
.x3c_c00104{left:210.600000px;}
.x65_c00104{left:213.000000px;}
.x44_c00104{left:215.250000px;}
.x6c_c00104{left:216.300000px;}
.x55_c00104{left:221.100000px;}
.x88_c00104{left:223.500000px;}
.x21_c00104{left:225.600000px;}
.x95_c00104{left:227.550000px;}
.xe_c00104{left:228.900000px;}
.x4c_c00104{left:230.400000px;}
.x4f_c00104{left:232.200000px;}
.x28_c00104{left:234.000000px;}
.x31_c00104{left:236.100000px;}
.x77_c00104{left:238.050000px;}
.x38_c00104{left:241.650000px;}
.x80_c00104{left:248.100000px;}
.x15_c00104{left:250.500000px;}
.x61_c00104{left:252.300000px;}
.x46_c00104{left:256.050000px;}
.x1a_c00104{left:257.100000px;}
.x6a_c00104{left:258.900000px;}
.x49_c00104{left:261.000000px;}
.x89_c00104{left:263.400000px;}
.x3d_c00104{left:265.650000px;}
.x45_c00104{left:269.250000px;}
.x56_c00104{left:271.200000px;}
.x75_c00104{left:272.850000px;}
.x85_c00104{left:274.950000px;}
.x24_c00104{left:276.450000px;}
.x50_c00104{left:279.750000px;}
.x81_c00104{left:280.800000px;}
.x59_c00104{left:282.600000px;}
.x5f_c00104{left:284.400000px;}
.x62_c00104{left:286.500000px;}
.x7c_c00104{left:288.450000px;}
.x4d_c00104{left:289.800000px;}
.x78_c00104{left:292.800000px;}
.x2b_c00104{left:296.250000px;}
.x3e_c00104{left:299.100000px;}
.x96_c00104{left:300.600000px;}
.x47_c00104{left:302.100000px;}
.x1b_c00104{left:306.000000px;}
.xf_c00104{left:308.400000px;}
.x39_c00104{left:314.400000px;}
.x79_c00104{left:315.450000px;}
.x34_c00104{left:317.700000px;}
.x8f_c00104{left:318.750000px;}
.x7d_c00104{left:322.500000px;}
.x66_c00104{left:324.300000px;}
.x71_c00104{left:325.950000px;}
.x4a_c00104{left:329.400000px;}
.x51_c00104{left:330.450000px;}
.x8a_c00104{left:331.650000px;}
.x5a_c00104{left:333.300000px;}
.x67_c00104{left:334.800000px;}
.x1_c00104{left:335.850000px;}
.x32_c00104{left:337.200000px;}
.x10_c00104{left:339.750000px;}
.x72_c00104{left:343.650000px;}
.x35_c00104{left:345.750000px;}
.x1c_c00104{left:347.700000px;}
.x90_c00104{left:348.900000px;}
.x6d_c00104{left:359.250000px;}
.x2_c00104{left:360.750000px;}
.x4e_c00104{left:361.800000px;}
.x11_c00104{left:363.450000px;}
.x52_c00104{left:366.150000px;}
.x3f_c00104{left:367.200000px;}
.x2c_c00104{left:372.900000px;}
.x68_c00104{left:374.100000px;}
.x82_c00104{left:375.450000px;}
.x36_c00104{left:379.650000px;}
.x3_c00104{left:382.650000px;}
.x40_c00104{left:385.500000px;}
.x5b_c00104{left:386.550000px;}
.x53_c00104{left:387.750000px;}
.x83_c00104{left:389.100000px;}
.x8b_c00104{left:392.100000px;}
.x57_c00104{left:393.900000px;}
.x63_c00104{left:395.250000px;}
.x7a_c00104{left:397.800000px;}
.x33_c00104{left:400.200000px;}
.x7e_c00104{left:403.500000px;}
.x5c_c00104{left:409.650000px;}
.x3a_c00104{left:412.200000px;}
.x91_c00104{left:414.000000px;}
.x98_c00104{left:416.250000px;}
.x8c_c00104{left:418.350000px;}
.x76_c00104{left:422.100000px;}
.x4_c00104{left:434.850000px;}
.x99_c00104{left:448.500000px;}
.xe6_c00104{left:450.000000px;}
.xe7_c00104{left:460.800000px;}
.x129_c00104{left:465.450000px;}
.x9f_c00104{left:466.500000px;}
.xd2_c00104{left:467.850000px;}
.xf2_c00104{left:469.050000px;}
.x5_c00104{left:476.250000px;}
.x126_c00104{left:478.050000px;}
.xe8_c00104{left:482.400000px;}
.x118_c00104{left:484.650000px;}
.xeb_c00104{left:486.300000px;}
.xf3_c00104{left:487.350000px;}
.x10e_c00104{left:488.700000px;}
.xfb_c00104{left:491.400000px;}
.xd8_c00104{left:495.300000px;}
.x6_c00104{left:500.400000px;}
.xad_c00104{left:502.050000px;}
.xf4_c00104{left:503.850000px;}
.x116_c00104{left:505.200000px;}
.xf6_c00104{left:506.250000px;}
.x11c_c00104{left:507.300000px;}
.xb5_c00104{left:508.350000px;}
.x109_c00104{left:510.600000px;}
.xe0_c00104{left:511.650000px;}
.x123_c00104{left:513.000000px;}
.xd3_c00104{left:514.650000px;}
.xe9_c00104{left:515.850000px;}
.xdd_c00104{left:517.350000px;}
.xe1_c00104{left:518.400000px;}
.xbd_c00104{left:520.650000px;}
.xae_c00104{left:521.850000px;}
.xcd_c00104{left:523.050000px;}
.x7_c00104{left:526.350000px;}
.xa4_c00104{left:528.000000px;}
.x10c_c00104{left:529.500000px;}
.xec_c00104{left:532.350000px;}
.x127_c00104{left:535.350000px;}
.x9a_c00104{left:536.700000px;}
.x103_c00104{left:537.900000px;}
.x8_c00104{left:541.800000px;}
.xa0_c00104{left:543.150000px;}
.x102_c00104{left:546.150000px;}
.xa5_c00104{left:548.100000px;}
.x101_c00104{left:549.450000px;}
.x10f_c00104{left:550.650000px;}
.x10a_c00104{left:551.700000px;}
.xf7_c00104{left:553.050000px;}
.xaf_c00104{left:554.550000px;}
.x112_c00104{left:556.350000px;}
.xb6_c00104{left:557.700000px;}
.xde_c00104{left:558.750000px;}
.xce_c00104{left:563.400000px;}
.x12e_c00104{left:564.450000px;}
.xa1_c00104{left:565.500000px;}
.x10d_c00104{left:567.300000px;}
.xd4_c00104{left:570.150000px;}
.xc9_c00104{left:573.450000px;}
.x9b_c00104{left:575.550000px;}
.xf0_c00104{left:577.800000px;}
.xbe_c00104{left:579.300000px;}
.x115_c00104{left:580.800000px;}
.x131_c00104{left:582.000000px;}
.xb7_c00104{left:583.950000px;}
.xe2_c00104{left:586.800000px;}
.xa6_c00104{left:588.000000px;}
.xb0_c00104{left:589.500000px;}
.xdf_c00104{left:592.200000px;}
.x11d_c00104{left:594.450000px;}
.xa7_c00104{left:596.700000px;}
.x119_c00104{left:597.750000px;}
.xbf_c00104{left:599.100000px;}
.x113_c00104{left:601.050000px;}
.xd5_c00104{left:602.550000px;}
.xb8_c00104{left:603.750000px;}
.xb1_c00104{left:605.400000px;}
.xe3_c00104{left:606.600000px;}
.x12d_c00104{left:607.650000px;}
.xaa_c00104{left:610.350000px;}
.xc4_c00104{left:611.400000px;}
.x124_c00104{left:613.050000px;}
.xc0_c00104{left:614.250000px;}
.xd9_c00104{left:616.950000px;}
.x12b_c00104{left:619.200000px;}
.x11a_c00104{left:621.150000px;}
.xf8_c00104{left:622.800000px;}
.xea_c00104{left:624.150000px;}
.x128_c00104{left:625.650000px;}
.x9c_c00104{left:628.050000px;}
.x11e_c00104{left:629.400000px;}
.xb9_c00104{left:631.500000px;}
.xca_c00104{left:633.600000px;}
.xcf_c00104{left:635.100000px;}
.xf1_c00104{left:636.450000px;}
.x12a_c00104{left:642.900000px;}
.xfd_c00104{left:644.100000px;}
.xf9_c00104{left:648.750000px;}
.xab_c00104{left:649.950000px;}
.xff_c00104{left:651.750000px;}
.x104_c00104{left:652.950000px;}
.xa2_c00104{left:654.000000px;}
.x114_c00104{left:656.100000px;}
.xda_c00104{left:658.350000px;}
.x130_c00104{left:660.150000px;}
.x132_c00104{left:661.650000px;}
.x10b_c00104{left:666.600000px;}
.xed_c00104{left:667.650000px;}
.xb2_c00104{left:668.700000px;}
.xc1_c00104{left:670.800000px;}
.x110_c00104{left:672.300000px;}
.x107_c00104{left:673.500000px;}
.xd6_c00104{left:674.850000px;}
.x12f_c00104{left:677.550000px;}
.xcb_c00104{left:678.600000px;}
.x9d_c00104{left:681.000000px;}
.xfa_c00104{left:682.950000px;}
.xa8_c00104{left:684.600000px;}
.x11f_c00104{left:685.650000px;}
.xee_c00104{left:687.150000px;}
.xba_c00104{left:689.100000px;}
.xc5_c00104{left:690.300000px;}
.xdb_c00104{left:691.500000px;}
.x105_c00104{left:692.550000px;}
.x111_c00104{left:695.700000px;}
.x133_c00104{left:698.400000px;}
.xa9_c00104{left:701.550000px;}
.xfc_c00104{left:703.650000px;}
.x100_c00104{left:705.000000px;}
.x121_c00104{left:706.050000px;}
.xc6_c00104{left:712.200000px;}
.xbb_c00104{left:715.800000px;}
.xa3_c00104{left:717.000000px;}
.xd7_c00104{left:718.050000px;}
.x120_c00104{left:720.150000px;}
.xd0_c00104{left:721.950000px;}
.xc2_c00104{left:724.500000px;}
.xf5_c00104{left:725.700000px;}
.x122_c00104{left:727.650000px;}
.xe4_c00104{left:729.000000px;}
.xb3_c00104{left:730.200000px;}
.x108_c00104{left:732.600000px;}
.xbc_c00104{left:735.600000px;}
.xdc_c00104{left:737.250000px;}
.x9e_c00104{left:740.100000px;}
.xc3_c00104{left:741.750000px;}
.x117_c00104{left:743.550000px;}
.xe5_c00104{left:749.550000px;}
.xb4_c00104{left:752.100000px;}
.x106_c00104{left:755.550000px;}
.xfe_c00104{left:757.050000px;}
.xac_c00104{left:758.250000px;}
.xc7_c00104{left:760.800000px;}
.x12c_c00104{left:765.000000px;}
.xd1_c00104{left:766.650000px;}
.xef_c00104{left:769.650000px;}
.xcc_c00104{left:770.700000px;}
.x125_c00104{left:772.050000px;}
.x11b_c00104{left:773.700000px;}
.xc8_c00104{left:775.500000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws0_c00104{word-spacing:-15.906675pt;}
.wse_c00104{word-spacing:-10.323108pt;}
.ws1_c00104{word-spacing:-8.060772pt;}
.wsa_c00104{word-spacing:-6.417370pt;}
.wsf_c00104{word-spacing:-6.136693pt;}
.wsb_c00104{word-spacing:-4.444444pt;}
.ws5_c00104{word-spacing:-2.962963pt;}
.ws2_c00104{word-spacing:-2.713246pt;}
.wsd_c00104{word-spacing:-1.477428pt;}
.wsc_c00104{word-spacing:-1.473495pt;}
.ws4_c00104{word-spacing:-0.940708pt;}
.ws10_c00104{word-spacing:0.000000pt;}
.ws3_c00104{word-spacing:3.151515pt;}
.ws6_c00104{word-spacing:19.259259pt;}
.ws7_c00104{word-spacing:19.682540pt;}
.ws9_c00104{word-spacing:116.752137pt;}
.ws8_c00104{word-spacing:141.111111pt;}
._0_c00104{width:178.888889pt;}
.fs6_c00104{font-size:32.000000pt;}
.fs1_c00104{font-size:42.666667pt;}
.fs5_c00104{font-size:48.000000pt;}
.fs3_c00104{font-size:53.333333pt;}
.fs4_c00104{font-size:58.666667pt;}
.fs2_c00104{font-size:64.000000pt;}
.fs0_c00104{font-size:74.666667pt;}
.y0_c00104{bottom:0.000000pt;}
.y30_c00104{bottom:165.466667pt;}
.y62_c00104{bottom:167.600000pt;}
.y2f_c00104{bottom:178.533333pt;}
.y61_c00104{bottom:183.600000pt;}
.y2e_c00104{bottom:191.333333pt;}
.y60_c00104{bottom:199.600000pt;}
.y2d_c00104{bottom:207.333333pt;}
.y5f_c00104{bottom:215.600000pt;}
.y2c_c00104{bottom:223.333333pt;}
.y5e_c00104{bottom:231.333333pt;}
.y2b_c00104{bottom:239.333333pt;}
.y5d_c00104{bottom:247.066667pt;}
.y2a_c00104{bottom:255.066667pt;}
.y5c_c00104{bottom:265.866667pt;}
.y29_c00104{bottom:271.066667pt;}
.y5b_c00104{bottom:281.866667pt;}
.y28_c00104{bottom:290.533333pt;}
.y5a_c00104{bottom:306.133333pt;}
.y27_c00104{bottom:306.533333pt;}
.y59_c00104{bottom:322.133333pt;}
.y26_c00104{bottom:322.800000pt;}
.y58_c00104{bottom:337.866667pt;}
.y25_c00104{bottom:338.533333pt;}
.y24_c00104{bottom:354.533333pt;}
.y57_c00104{bottom:361.333333pt;}
.y23_c00104{bottom:374.133333pt;}
.y56_c00104{bottom:377.600000pt;}
.y55_c00104{bottom:393.333333pt;}
.y22_c00104{bottom:398.133333pt;}
.y54_c00104{bottom:409.333333pt;}
.y21_c00104{bottom:417.733333pt;}
.y53_c00104{bottom:428.800000pt;}
.y20_c00104{bottom:434.000000pt;}
.y52_c00104{bottom:444.800000pt;}
.y1f_c00104{bottom:450.266667pt;}
.y51_c00104{bottom:461.066667pt;}
.y1e_c00104{bottom:466.000000pt;}
.y50_c00104{bottom:476.800000pt;}
.y1d_c00104{bottom:482.000000pt;}
.y4f_c00104{bottom:492.800000pt;}
.y1c_c00104{bottom:498.266667pt;}
.y4e_c00104{bottom:508.800000pt;}
.y1b_c00104{bottom:516.800000pt;}
.y4d_c00104{bottom:524.800000pt;}
.y1a_c00104{bottom:533.733333pt;}
.y4c_c00104{bottom:540.800000pt;}
.y19_c00104{bottom:552.666667pt;}
.y4b_c00104{bottom:556.533333pt;}
.y18_c00104{bottom:569.600000pt;}
.y4a_c00104{bottom:574.666667pt;}
.y17_c00104{bottom:585.600000pt;}
.y49_c00104{bottom:592.933333pt;}
.y16_c00104{bottom:605.066667pt;}
.y48_c00104{bottom:608.666667pt;}
.y15_c00104{bottom:621.066667pt;}
.y47_c00104{bottom:624.400000pt;}
.y46_c00104{bottom:640.666667pt;}
.y14_c00104{bottom:640.933333pt;}
.y45_c00104{bottom:660.400000pt;}
.y13_c00104{bottom:660.800000pt;}
.y44_c00104{bottom:676.133333pt;}
.y12_c00104{bottom:680.666667pt;}
.y43_c00104{bottom:692.133333pt;}
.y11_c00104{bottom:696.933333pt;}
.y42_c00104{bottom:708.133333pt;}
.y10_c00104{bottom:715.200000pt;}
.y41_c00104{bottom:727.733333pt;}
.yf_c00104{bottom:731.866667pt;}
.y40_c00104{bottom:747.733333pt;}
.ye_c00104{bottom:751.333333pt;}
.y3f_c00104{bottom:763.466667pt;}
.yd_c00104{bottom:767.600000pt;}
.y3e_c00104{bottom:783.066667pt;}
.yc_c00104{bottom:783.600000pt;}
.yb_c00104{bottom:799.333333pt;}
.y3d_c00104{bottom:802.933333pt;}
.y3c_c00104{bottom:818.666667pt;}
.ya_c00104{bottom:824.000000pt;}
.y3b_c00104{bottom:834.400000pt;}
.y9_c00104{bottom:848.000000pt;}
.y3a_c00104{bottom:850.400000pt;}
.y39_c00104{bottom:866.400000pt;}
.y8_c00104{bottom:869.200000pt;}
.y38_c00104{bottom:882.133333pt;}
.y7_c00104{bottom:888.666667pt;}
.y37_c00104{bottom:898.133333pt;}
.y6_c00104{bottom:912.266667pt;}
.y36_c00104{bottom:914.133333pt;}
.y35_c00104{bottom:929.866667pt;}
.y5_c00104{bottom:943.733333pt;}
.y34_c00104{bottom:945.866667pt;}
.y33_c00104{bottom:961.866667pt;}
.y32_c00104{bottom:977.600000pt;}
.y4_c00104{bottom:978.933333pt;}
.y31_c00104{bottom:993.333333pt;}
.y3_c00104{bottom:995.200000pt;}
.y1_c00104{bottom:1017.866667pt;}
.y2_c00104{bottom:1137.600000pt;}
.h8_c00104{height:32.000000pt;}
.h3_c00104{height:42.666667pt;}
.h7_c00104{height:48.000000pt;}
.h5_c00104{height:53.333333pt;}
.h6_c00104{height:58.666667pt;}
.h4_c00104{height:64.000000pt;}
.h2_c00104{height:74.666667pt;}
.h0_c00104{height:1137.920003pt;}
.h1_c00104{height:1138.000000pt;}
.w1_c00104{width:847.333333pt;}
.w0_c00104{width:847.360027pt;}
.x0_c00104{left:0.000000pt;}
.x9_c00104{left:23.333333pt;}
.x92_c00104{left:70.133333pt;}
.x16_c00104{left:72.933333pt;}
.x5d_c00104{left:73.866667pt;}
.x6f_c00104{left:75.866667pt;}
.x22_c00104{left:76.800000pt;}
.x8e_c00104{left:88.266667pt;}
.x84_c00104{left:90.266667pt;}
.xa_c00104{left:92.133333pt;}
.x2d_c00104{left:93.066667pt;}
.x3b_c00104{left:94.400000pt;}
.x29_c00104{left:95.333333pt;}
.x97_c00104{left:98.666667pt;}
.x86_c00104{left:104.933333pt;}
.x73_c00104{left:109.733333pt;}
.x12_c00104{left:111.333333pt;}
.x2e_c00104{left:112.533333pt;}
.x6e_c00104{left:113.866667pt;}
.x7f_c00104{left:116.800000pt;}
.x41_c00104{left:118.933333pt;}
.x54_c00104{left:122.666667pt;}
.x23_c00104{left:123.866667pt;}
.x17_c00104{left:125.733333pt;}
.x25_c00104{left:127.333333pt;}
.x7b_c00104{left:128.933333pt;}
.x13_c00104{left:129.866667pt;}
.x93_c00104{left:130.933333pt;}
.x2f_c00104{left:134.666667pt;}
.x5e_c00104{left:135.600000pt;}
.xb_c00104{left:137.200000pt;}
.x8d_c00104{left:138.800000pt;}
.x4b_c00104{left:141.466667pt;}
.x43_c00104{left:142.400000pt;}
.x87_c00104{left:143.600000pt;}
.x6b_c00104{left:144.666667pt;}
.x60_c00104{left:145.600000pt;}
.x1d_c00104{left:148.133333pt;}
.x1f_c00104{left:149.333333pt;}
.x26_c00104{left:151.066667pt;}
.xc_c00104{left:152.933333pt;}
.x58_c00104{left:153.866667pt;}
.x42_c00104{left:155.066667pt;}
.x1e_c00104{left:159.600000pt;}
.x20_c00104{left:161.200000pt;}
.x30_c00104{left:163.200000pt;}
.x70_c00104{left:164.266667pt;}
.x2a_c00104{left:166.000000pt;}
.x94_c00104{left:168.400000pt;}
.x64_c00104{left:169.866667pt;}
.x37_c00104{left:171.066667pt;}
.xd_c00104{left:172.400000pt;}
.x18_c00104{left:173.466667pt;}
.x14_c00104{left:176.266667pt;}
.x48_c00104{left:177.866667pt;}
.x69_c00104{left:178.933333pt;}
.x74_c00104{left:179.866667pt;}
.x27_c00104{left:182.133333pt;}
.x19_c00104{left:184.666667pt;}
.x3c_c00104{left:187.200000pt;}
.x65_c00104{left:189.333333pt;}
.x44_c00104{left:191.333333pt;}
.x6c_c00104{left:192.266667pt;}
.x55_c00104{left:196.533333pt;}
.x88_c00104{left:198.666667pt;}
.x21_c00104{left:200.533333pt;}
.x95_c00104{left:202.266667pt;}
.xe_c00104{left:203.466667pt;}
.x4c_c00104{left:204.800000pt;}
.x4f_c00104{left:206.400000pt;}
.x28_c00104{left:208.000000pt;}
.x31_c00104{left:209.866667pt;}
.x77_c00104{left:211.600000pt;}
.x38_c00104{left:214.800000pt;}
.x80_c00104{left:220.533333pt;}
.x15_c00104{left:222.666667pt;}
.x61_c00104{left:224.266667pt;}
.x46_c00104{left:227.600000pt;}
.x1a_c00104{left:228.533333pt;}
.x6a_c00104{left:230.133333pt;}
.x49_c00104{left:232.000000pt;}
.x89_c00104{left:234.133333pt;}
.x3d_c00104{left:236.133333pt;}
.x45_c00104{left:239.333333pt;}
.x56_c00104{left:241.066667pt;}
.x75_c00104{left:242.533333pt;}
.x85_c00104{left:244.400000pt;}
.x24_c00104{left:245.733333pt;}
.x50_c00104{left:248.666667pt;}
.x81_c00104{left:249.600000pt;}
.x59_c00104{left:251.200000pt;}
.x5f_c00104{left:252.800000pt;}
.x62_c00104{left:254.666667pt;}
.x7c_c00104{left:256.400000pt;}
.x4d_c00104{left:257.600000pt;}
.x78_c00104{left:260.266667pt;}
.x2b_c00104{left:263.333333pt;}
.x3e_c00104{left:265.866667pt;}
.x96_c00104{left:267.200000pt;}
.x47_c00104{left:268.533333pt;}
.x1b_c00104{left:272.000000pt;}
.xf_c00104{left:274.133333pt;}
.x39_c00104{left:279.466667pt;}
.x79_c00104{left:280.400000pt;}
.x34_c00104{left:282.400000pt;}
.x8f_c00104{left:283.333333pt;}
.x7d_c00104{left:286.666667pt;}
.x66_c00104{left:288.266667pt;}
.x71_c00104{left:289.733333pt;}
.x4a_c00104{left:292.800000pt;}
.x51_c00104{left:293.733333pt;}
.x8a_c00104{left:294.800000pt;}
.x5a_c00104{left:296.266667pt;}
.x67_c00104{left:297.600000pt;}
.x1_c00104{left:298.533333pt;}
.x32_c00104{left:299.733333pt;}
.x10_c00104{left:302.000000pt;}
.x72_c00104{left:305.466667pt;}
.x35_c00104{left:307.333333pt;}
.x1c_c00104{left:309.066667pt;}
.x90_c00104{left:310.133333pt;}
.x6d_c00104{left:319.333333pt;}
.x2_c00104{left:320.666667pt;}
.x4e_c00104{left:321.600000pt;}
.x11_c00104{left:323.066667pt;}
.x52_c00104{left:325.466667pt;}
.x3f_c00104{left:326.400000pt;}
.x2c_c00104{left:331.466667pt;}
.x68_c00104{left:332.533333pt;}
.x82_c00104{left:333.733333pt;}
.x36_c00104{left:337.466667pt;}
.x3_c00104{left:340.133333pt;}
.x40_c00104{left:342.666667pt;}
.x5b_c00104{left:343.600000pt;}
.x53_c00104{left:344.666667pt;}
.x83_c00104{left:345.866667pt;}
.x8b_c00104{left:348.533333pt;}
.x57_c00104{left:350.133333pt;}
.x63_c00104{left:351.333333pt;}
.x7a_c00104{left:353.600000pt;}
.x33_c00104{left:355.733333pt;}
.x7e_c00104{left:358.666667pt;}
.x5c_c00104{left:364.133333pt;}
.x3a_c00104{left:366.400000pt;}
.x91_c00104{left:368.000000pt;}
.x98_c00104{left:370.000000pt;}
.x8c_c00104{left:371.866667pt;}
.x76_c00104{left:375.200000pt;}
.x4_c00104{left:386.533333pt;}
.x99_c00104{left:398.666667pt;}
.xe6_c00104{left:400.000000pt;}
.xe7_c00104{left:409.600000pt;}
.x129_c00104{left:413.733333pt;}
.x9f_c00104{left:414.666667pt;}
.xd2_c00104{left:415.866667pt;}
.xf2_c00104{left:416.933333pt;}
.x5_c00104{left:423.333333pt;}
.x126_c00104{left:424.933333pt;}
.xe8_c00104{left:428.800000pt;}
.x118_c00104{left:430.800000pt;}
.xeb_c00104{left:432.266667pt;}
.xf3_c00104{left:433.200000pt;}
.x10e_c00104{left:434.400000pt;}
.xfb_c00104{left:436.800000pt;}
.xd8_c00104{left:440.266667pt;}
.x6_c00104{left:444.800000pt;}
.xad_c00104{left:446.266667pt;}
.xf4_c00104{left:447.866667pt;}
.x116_c00104{left:449.066667pt;}
.xf6_c00104{left:450.000000pt;}
.x11c_c00104{left:450.933333pt;}
.xb5_c00104{left:451.866667pt;}
.x109_c00104{left:453.866667pt;}
.xe0_c00104{left:454.800000pt;}
.x123_c00104{left:456.000000pt;}
.xd3_c00104{left:457.466667pt;}
.xe9_c00104{left:458.533333pt;}
.xdd_c00104{left:459.866667pt;}
.xe1_c00104{left:460.800000pt;}
.xbd_c00104{left:462.800000pt;}
.xae_c00104{left:463.866667pt;}
.xcd_c00104{left:464.933333pt;}
.x7_c00104{left:467.866667pt;}
.xa4_c00104{left:469.333333pt;}
.x10c_c00104{left:470.666667pt;}
.xec_c00104{left:473.200000pt;}
.x127_c00104{left:475.866667pt;}
.x9a_c00104{left:477.066667pt;}
.x103_c00104{left:478.133333pt;}
.x8_c00104{left:481.600000pt;}
.xa0_c00104{left:482.800000pt;}
.x102_c00104{left:485.466667pt;}
.xa5_c00104{left:487.200000pt;}
.x101_c00104{left:488.400000pt;}
.x10f_c00104{left:489.466667pt;}
.x10a_c00104{left:490.400000pt;}
.xf7_c00104{left:491.600000pt;}
.xaf_c00104{left:492.933333pt;}
.x112_c00104{left:494.533333pt;}
.xb6_c00104{left:495.733333pt;}
.xde_c00104{left:496.666667pt;}
.xce_c00104{left:500.800000pt;}
.x12e_c00104{left:501.733333pt;}
.xa1_c00104{left:502.666667pt;}
.x10d_c00104{left:504.266667pt;}
.xd4_c00104{left:506.800000pt;}
.xc9_c00104{left:509.733333pt;}
.x9b_c00104{left:511.600000pt;}
.xf0_c00104{left:513.600000pt;}
.xbe_c00104{left:514.933333pt;}
.x115_c00104{left:516.266667pt;}
.x131_c00104{left:517.333333pt;}
.xb7_c00104{left:519.066667pt;}
.xe2_c00104{left:521.600000pt;}
.xa6_c00104{left:522.666667pt;}
.xb0_c00104{left:524.000000pt;}
.xdf_c00104{left:526.400000pt;}
.x11d_c00104{left:528.400000pt;}
.xa7_c00104{left:530.400000pt;}
.x119_c00104{left:531.333333pt;}
.xbf_c00104{left:532.533333pt;}
.x113_c00104{left:534.266667pt;}
.xd5_c00104{left:535.600000pt;}
.xb8_c00104{left:536.666667pt;}
.xb1_c00104{left:538.133333pt;}
.xe3_c00104{left:539.200000pt;}
.x12d_c00104{left:540.133333pt;}
.xaa_c00104{left:542.533333pt;}
.xc4_c00104{left:543.466667pt;}
.x124_c00104{left:544.933333pt;}
.xc0_c00104{left:546.000000pt;}
.xd9_c00104{left:548.400000pt;}
.x12b_c00104{left:550.400000pt;}
.x11a_c00104{left:552.133333pt;}
.xf8_c00104{left:553.600000pt;}
.xea_c00104{left:554.800000pt;}
.x128_c00104{left:556.133333pt;}
.x9c_c00104{left:558.266667pt;}
.x11e_c00104{left:559.466667pt;}
.xb9_c00104{left:561.333333pt;}
.xca_c00104{left:563.200000pt;}
.xcf_c00104{left:564.533333pt;}
.xf1_c00104{left:565.733333pt;}
.x12a_c00104{left:571.466667pt;}
.xfd_c00104{left:572.533333pt;}
.xf9_c00104{left:576.666667pt;}
.xab_c00104{left:577.733333pt;}
.xff_c00104{left:579.333333pt;}
.x104_c00104{left:580.400000pt;}
.xa2_c00104{left:581.333333pt;}
.x114_c00104{left:583.200000pt;}
.xda_c00104{left:585.200000pt;}
.x130_c00104{left:586.800000pt;}
.x132_c00104{left:588.133333pt;}
.x10b_c00104{left:592.533333pt;}
.xed_c00104{left:593.466667pt;}
.xb2_c00104{left:594.400000pt;}
.xc1_c00104{left:596.266667pt;}
.x110_c00104{left:597.600000pt;}
.x107_c00104{left:598.666667pt;}
.xd6_c00104{left:599.866667pt;}
.x12f_c00104{left:602.266667pt;}
.xcb_c00104{left:603.200000pt;}
.x9d_c00104{left:605.333333pt;}
.xfa_c00104{left:607.066667pt;}
.xa8_c00104{left:608.533333pt;}
.x11f_c00104{left:609.466667pt;}
.xee_c00104{left:610.800000pt;}
.xba_c00104{left:612.533333pt;}
.xc5_c00104{left:613.600000pt;}
.xdb_c00104{left:614.666667pt;}
.x105_c00104{left:615.600000pt;}
.x111_c00104{left:618.400000pt;}
.x133_c00104{left:620.800000pt;}
.xa9_c00104{left:623.600000pt;}
.xfc_c00104{left:625.466667pt;}
.x100_c00104{left:626.666667pt;}
.x121_c00104{left:627.600000pt;}
.xc6_c00104{left:633.066667pt;}
.xbb_c00104{left:636.266667pt;}
.xa3_c00104{left:637.333333pt;}
.xd7_c00104{left:638.266667pt;}
.x120_c00104{left:640.133333pt;}
.xd0_c00104{left:641.733333pt;}
.xc2_c00104{left:644.000000pt;}
.xf5_c00104{left:645.066667pt;}
.x122_c00104{left:646.800000pt;}
.xe4_c00104{left:648.000000pt;}
.xb3_c00104{left:649.066667pt;}
.x108_c00104{left:651.200000pt;}
.xbc_c00104{left:653.866667pt;}
.xdc_c00104{left:655.333333pt;}
.x9e_c00104{left:657.866667pt;}
.xc3_c00104{left:659.333333pt;}
.x117_c00104{left:660.933333pt;}
.xe5_c00104{left:666.266667pt;}
.xb4_c00104{left:668.533333pt;}
.x106_c00104{left:671.600000pt;}
.xfe_c00104{left:672.933333pt;}
.xac_c00104{left:674.000000pt;}
.xc7_c00104{left:676.266667pt;}
.x12c_c00104{left:680.000000pt;}
.xd1_c00104{left:681.466667pt;}
.xef_c00104{left:684.133333pt;}
.xcc_c00104{left:685.066667pt;}
.x125_c00104{left:686.266667pt;}
.x11b_c00104{left:687.733333pt;}
.xc8_c00104{left:689.333333pt;}
}





/* 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_c00105 {
    display:none;
  }
  .loading-indicator_c00105.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00105 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_c00105 { 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_c00105" -> "#page-container .classname_c00105")
 */
.pf_c00105 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00105 { /* 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_c00105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00105 { /* 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_c00105 { /* 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_c00105 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00105 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00105 {overflow:visible;}
  }
}
.c_c00105 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00105 { /* 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_c00105:after { /* webkit #35443 */
  content: '';
}
.t_c00105:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00105 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 */
}
.__c00105 { /* 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_c00105 { /* info for Javascript */
  display:none;
}
.l_c00105 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00105 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00105 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00105: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_c00105 {
    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_c00105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00105.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_c00105 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00105;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.000000;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;}
.m3f_c00105{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m93_c00105{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00105{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00105{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00105{transform:matrix(0.038000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00105{transform:matrix(0.044250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044250,0.000000,0.000000,0.250000,0,0);}
.mba_c00105{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00105{transform:matrix(0.069500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00105{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00105{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00105{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00105{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m59_c00105{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00105{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md2_c00105{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00105{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00105{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m98_c00105{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00105{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m20_c00105{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00105{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00105{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00105{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00105{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00105{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf_c00105{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00105{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00105{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00105{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00105{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00105{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00105{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00105{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00105{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00105{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m62_c00105{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00105{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mca_c00105{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00105{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m47_c00105{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m42_c00105{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md9_c00105{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00105{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00105{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00105{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00105{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00105{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00105{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00105{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m67_c00105{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00105{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m108_c00105{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00105{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me3_c00105{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m40_c00105{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00105{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m120_c00105{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00105{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m113_c00105{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m31_c00105{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m43_c00105{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00105{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00105{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00105{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m19_c00105{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00105{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00105{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00105{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.md3_c00105{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m114_c00105{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6_c00105{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00105{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00105{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00105{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m99_c00105{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00105{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.me4_c00105{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00105{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m45_c00105{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mce_c00105{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00105{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00105{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m27_c00105{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00105{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00105{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me9_c00105{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m103_c00105{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m72_c00105{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00105{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mff_c00105{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m34_c00105{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md1_c00105{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00105{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc_c00105{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00105{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m29_c00105{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.maa_c00105{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m11_c00105{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m91_c00105{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00105{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m63_c00105{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mde_c00105{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00105{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m73_c00105{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00105{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m100_c00105{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00105{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m53_c00105{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mac_c00105{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m112_c00105{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00105{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m24_c00105{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00105{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00105{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00105{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.ma_c00105{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00105{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m95_c00105{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m84_c00105{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00105{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00105{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00105{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00105{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m36_c00105{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00105{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mab_c00105{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m25_c00105{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m115_c00105{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m60_c00105{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m51_c00105{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m64_c00105{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00105{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00105{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m21_c00105{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00105{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00105{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00105{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m85_c00105{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m37_c00105{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00105{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00105{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me5_c00105{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m8_c00105{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m49_c00105{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00105{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7_c00105{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m102_c00105{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.md7_c00105{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00105{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md6_c00105{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m65_c00105{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m26_c00105{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m70_c00105{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10_c00105{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00105{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m76_c00105{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00105{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m41_c00105{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00105{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.md4_c00105{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m57_c00105{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00105{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00105{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m118_c00105{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md0_c00105{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.me2_c00105{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mad_c00105{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m22_c00105{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5_c00105{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m119_c00105{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m104_c00105{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00105{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m39_c00105{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m96_c00105{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m83_c00105{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m35_c00105{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m61_c00105{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m109_c00105{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m23_c00105{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00105{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00105{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m12_c00105{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m92_c00105{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mda_c00105{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00105{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m75_c00105{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m116_c00105{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m30_c00105{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mae_c00105{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m48_c00105{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m80_c00105{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00105{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me8_c00105{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00105{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m101_c00105{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00105{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m9_c00105{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m38_c00105{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m89_c00105{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00105{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m58_c00105{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m17_c00105{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00105{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m97_c00105{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md_c00105{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md8_c00105{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00105{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00105{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md5_c00105{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m71_c00105{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4_c00105{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me1_c00105{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m44_c00105{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m77_c00105{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00105{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00105{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00105{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me7_c00105{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m121_c00105{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m117_c00105{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m68_c00105{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m33_c00105{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m54_c00105{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.me0_c00105{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00105{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00105{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00105{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m79_c00105{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m82_c00105{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m88_c00105{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m46_c00105{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mea_c00105{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m86_c00105{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00105{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.me_c00105{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mef_c00105{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m52_c00105{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13_c00105{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.meb_c00105{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m50_c00105{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00105{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00105{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);}
.m56_c00105{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m111_c00105{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mee_c00105{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00105{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m81_c00105{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00105{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00105{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00105{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m78_c00105{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m32_c00105{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m16_c00105{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00105{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m28_c00105{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00105{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m15_c00105{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m69_c00105{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m105_c00105{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00105{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m18_c00105{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.maf_c00105{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me6_c00105{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mb_c00105{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m55_c00105{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00105{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m90_c00105{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m110_c00105{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.med_c00105{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m107_c00105{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m3_c00105{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00105{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00105{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m66_c00105{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m87_c00105{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m94_c00105{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00105{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00105{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m106_c00105{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00105{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mec_c00105{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00105{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00105{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00105{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m2_c00105{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m0_c00105{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m123_c00105{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00105{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.m74_c00105{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00105{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m122_c00105{transform:matrix(1.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.256000,0.000000,0.000000,0.250000,0,0);}
.m124_c00105{transform:matrix(1.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.296000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls0_c00105{letter-spacing:0.000000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{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__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00105{word-spacing:-13.232506px;}
.ws0_c00105{word-spacing:-10.000000px;}
.ws1_c00105{word-spacing:-5.476190px;}
.wsb_c00105{word-spacing:0.000000px;}
.ws2_c00105{word-spacing:0.799257px;}
.ws3_c00105{word-spacing:22.142857px;}
.ws4_c00105{word-spacing:25.714286px;}
.ws7_c00105{word-spacing:29.285714px;}
.ws8_c00105{word-spacing:40.000000px;}
.ws9_c00105{word-spacing:44.166667px;}
.ws6_c00105{word-spacing:50.416667px;}
.ws5_c00105{word-spacing:125.000000px;}
._0_c00105{width:80.416667px;}
.fc0_c00105{color:transparent;}
.fs6_c00105{font-size:18.000000px;}
.fsb_c00105{font-size:30.000000px;}
.fs7_c00105{font-size:36.000000px;}
.fs9_c00105{font-size:48.000000px;}
.fs0_c00105{font-size:54.000000px;}
.fs2_c00105{font-size:60.000000px;}
.fs4_c00105{font-size:66.000000px;}
.fs3_c00105{font-size:72.000000px;}
.fsa_c00105{font-size:78.000000px;}
.fs1_c00105{font-size:84.000000px;}
.fs8_c00105{font-size:96.000000px;}
.fs5_c00105{font-size:114.000000px;}
.y0_c00105{bottom:0.000000px;}
.y6a_c00105{bottom:179.250000px;}
.y3b_c00105{bottom:180.000000px;}
.y3a_c00105{bottom:198.300000px;}
.y69_c00105{bottom:202.050000px;}
.y39_c00105{bottom:216.300000px;}
.y68_c00105{bottom:222.150000px;}
.y38_c00105{bottom:234.300000px;}
.y67_c00105{bottom:239.400000px;}
.y37_c00105{bottom:252.300000px;}
.y66_c00105{bottom:257.400000px;}
.y36_c00105{bottom:270.300000px;}
.y65_c00105{bottom:275.400000px;}
.y35_c00105{bottom:288.300000px;}
.y64_c00105{bottom:293.100000px;}
.y34_c00105{bottom:306.300000px;}
.y63_c00105{bottom:311.100000px;}
.y33_c00105{bottom:324.000000px;}
.y62_c00105{bottom:329.400000px;}
.y32_c00105{bottom:342.000000px;}
.y61_c00105{bottom:347.100000px;}
.y31_c00105{bottom:363.900000px;}
.y60_c00105{bottom:365.100000px;}
.y30_c00105{bottom:378.750000px;}
.y5f_c00105{bottom:383.100000px;}
.y2f_c00105{bottom:392.100000px;}
.y5e_c00105{bottom:401.100000px;}
.y2e_c00105{bottom:401.400000px;}
.y2d_c00105{bottom:407.100000px;}
.y2c_c00105{bottom:421.200000px;}
.y5d_c00105{bottom:423.000000px;}
.y2b_c00105{bottom:435.900000px;}
.y5c_c00105{bottom:442.200000px;}
.y2a_c00105{bottom:449.550000px;}
.y5b_c00105{bottom:460.500000px;}
.y29_c00105{bottom:468.300000px;}
.y5a_c00105{bottom:478.500000px;}
.y28_c00105{bottom:486.450000px;}
.y59_c00105{bottom:496.500000px;}
.y27_c00105{bottom:504.450000px;}
.y58_c00105{bottom:517.650000px;}
.y26_c00105{bottom:522.750000px;}
.y57_c00105{bottom:536.100000px;}
.y25_c00105{bottom:540.750000px;}
.y56_c00105{bottom:558.450000px;}
.y24_c00105{bottom:562.350000px;}
.y55_c00105{bottom:576.750000px;}
.y23_c00105{bottom:580.350000px;}
.y22_c00105{bottom:598.050000px;}
.y54_c00105{bottom:599.700000px;}
.y21_c00105{bottom:616.050000px;}
.y53_c00105{bottom:621.300000px;}
.y20_c00105{bottom:637.950000px;}
.y52_c00105{bottom:639.450000px;}
.y1f_c00105{bottom:656.250000px;}
.y51_c00105{bottom:658.200000px;}
.y50_c00105{bottom:676.500000px;}
.y1e_c00105{bottom:678.600000px;}
.y4f_c00105{bottom:694.500000px;}
.y1d_c00105{bottom:700.950000px;}
.y4e_c00105{bottom:711.750000px;}
.y1c_c00105{bottom:718.950000px;}
.y4d_c00105{bottom:729.750000px;}
.y1b_c00105{bottom:737.250000px;}
.y4c_c00105{bottom:748.050000px;}
.y1a_c00105{bottom:759.150000px;}
.y4b_c00105{bottom:765.750000px;}
.y19_c00105{bottom:777.450000px;}
.y4a_c00105{bottom:783.750000px;}
.y18_c00105{bottom:791.550000px;}
.y17_c00105{bottom:795.450000px;}
.y49_c00105{bottom:803.850000px;}
.y16_c00105{bottom:812.700000px;}
.y15_c00105{bottom:813.450000px;}
.y48_c00105{bottom:824.850000px;}
.y14_c00105{bottom:831.150000px;}
.y47_c00105{bottom:843.150000px;}
.y13_c00105{bottom:849.450000px;}
.y46_c00105{bottom:861.450000px;}
.y12_c00105{bottom:867.150000px;}
.y11_c00105{bottom:877.650000px;}
.y45_c00105{bottom:882.300000px;}
.y10_c00105{bottom:885.150000px;}
.y44_c00105{bottom:901.050000px;}
.yf_c00105{bottom:903.150000px;}
.ye_c00105{bottom:915.750000px;}
.yd_c00105{bottom:921.150000px;}
.y43_c00105{bottom:922.650000px;}
.yc_c00105{bottom:939.150000px;}
.y42_c00105{bottom:940.650000px;}
.yb_c00105{bottom:956.850000px;}
.y41_c00105{bottom:967.200000px;}
.ya_c00105{bottom:974.850000px;}
.y40_c00105{bottom:984.900000px;}
.y9_c00105{bottom:992.850000px;}
.y3f_c00105{bottom:1006.950000px;}
.y8_c00105{bottom:1013.400000px;}
.y7_c00105{bottom:1028.100000px;}
.y3e_c00105{bottom:1030.050000px;}
.y6_c00105{bottom:1048.350000px;}
.y5_c00105{bottom:1066.650000px;}
.y4_c00105{bottom:1084.350000px;}
.y3_c00105{bottom:1102.350000px;}
.y3d_c00105{bottom:1102.650000px;}
.y2_c00105{bottom:1120.350000px;}
.y3c_c00105{bottom:1120.650000px;}
.y1_c00105{bottom:1146.900000px;}
.y6b_c00105{bottom:1279.050000px;}
.h8_c00105{height:18.000000px;}
.hd_c00105{height:30.000000px;}
.h9_c00105{height:36.000000px;}
.hb_c00105{height:48.000000px;}
.h2_c00105{height:54.000000px;}
.h4_c00105{height:60.000000px;}
.h6_c00105{height:66.000000px;}
.h5_c00105{height:72.000000px;}
.hc_c00105{height:78.000000px;}
.h3_c00105{height:84.000000px;}
.ha_c00105{height:96.000000px;}
.h7_c00105{height:114.000000px;}
.h1_c00105{height:1280.250000px;}
.h0_c00105{height:1280.519990px;}
.w1_c00105{width:953.250000px;}
.w0_c00105{width:953.280030px;}
.x0_c00105{left:0.000000px;}
.x7f_c00105{left:161.250000px;}
.x1_c00105{left:164.850000px;}
.x29_c00105{left:167.100000px;}
.x9e_c00105{left:168.900000px;}
.xa1_c00105{left:177.450000px;}
.x42_c00105{left:179.700000px;}
.x2e_c00105{left:181.650000px;}
.xa_c00105{left:184.350000px;}
.x3a_c00105{left:185.400000px;}
.xa0_c00105{left:187.200000px;}
.x99_c00105{left:191.100000px;}
.x2f_c00105{left:193.200000px;}
.x6c_c00105{left:195.450000px;}
.x9c_c00105{left:196.950000px;}
.x98_c00105{left:198.750000px;}
.x14_c00105{left:202.650000px;}
.x83_c00105{left:204.300000px;}
.xb_c00105{left:205.950000px;}
.xab_c00105{left:207.450000px;}
.x3_c00105{left:208.500000px;}
.x65_c00105{left:211.050000px;}
.x73_c00105{left:212.550000px;}
.x49_c00105{left:213.900000px;}
.x75_c00105{left:216.000000px;}
.x51_c00105{left:217.350000px;}
.x43_c00105{left:218.850000px;}
.x60_c00105{left:220.500000px;}
.x22_c00105{left:223.350000px;}
.x3b_c00105{left:225.000000px;}
.xa9_c00105{left:226.350000px;}
.x2a_c00105{left:228.600000px;}
.x30_c00105{left:231.000000px;}
.x78_c00105{left:232.200000px;}
.xac_c00105{left:233.400000px;}
.x23_c00105{left:234.450000px;}
.x57_c00105{left:235.650000px;}
.x4a_c00105{left:237.300000px;}
.x15_c00105{left:238.650000px;}
.x9d_c00105{left:239.850000px;}
.x61_c00105{left:241.350000px;}
.x7d_c00105{left:243.900000px;}
.x79_c00105{left:245.100000px;}
.x52_c00105{left:246.150000px;}
.x3c_c00105{left:247.350000px;}
.xc_c00105{left:248.850000px;}
.xa6_c00105{left:250.800000px;}
.x4b_c00105{left:253.500000px;}
.x86_c00105{left:255.000000px;}
.x16_c00105{left:256.950000px;}
.x6e_c00105{left:260.400000px;}
.x24_c00105{left:261.450000px;}
.x8d_c00105{left:263.550000px;}
.x1c_c00105{left:264.600000px;}
.x44_c00105{left:265.950000px;}
.x53_c00105{left:267.750000px;}
.xd_c00105{left:269.700000px;}
.xa2_c00105{left:272.100000px;}
.x4_c00105{left:274.350000px;}
.x7c_c00105{left:276.150000px;}
.x58_c00105{left:278.100000px;}
.x8b_c00105{left:280.200000px;}
.x35_c00105{left:282.600000px;}
.x89_c00105{left:283.800000px;}
.x62_c00105{left:285.600000px;}
.x66_c00105{left:287.100000px;}
.x3d_c00105{left:289.800000px;}
.x17_c00105{left:292.650000px;}
.x25_c00105{left:294.600000px;}
.x92_c00105{left:296.250000px;}
.x80_c00105{left:297.900000px;}
.x3e_c00105{left:299.550000px;}
.x7e_c00105{left:301.200000px;}
.x4c_c00105{left:304.200000px;}
.xe_c00105{left:306.450000px;}
.x7a_c00105{left:308.100000px;}
.x84_c00105{left:309.450000px;}
.x18_c00105{left:311.700000px;}
.xa3_c00105{left:314.550000px;}
.x59_c00105{left:317.400000px;}
.x8e_c00105{left:319.650000px;}
.x6a_c00105{left:320.700000px;}
.x5_c00105{left:323.250000px;}
.x77_c00105{left:325.350000px;}
.x8a_c00105{left:327.450000px;}
.x26_c00105{left:328.800000px;}
.x19_c00105{left:330.000000px;}
.x36_c00105{left:331.200000px;}
.xa4_c00105{left:332.250000px;}
.x7b_c00105{left:333.600000px;}
.x87_c00105{left:335.250000px;}
.x67_c00105{left:336.450000px;}
.x3f_c00105{left:337.650000px;}
.x31_c00105{left:340.050000px;}
.x70_c00105{left:342.750000px;}
.x1d_c00105{left:343.800000px;}
.xf_c00105{left:345.300000px;}
.x45_c00105{left:348.000000px;}
.x4d_c00105{left:350.700000px;}
.xa7_c00105{left:353.850000px;}
.x6b_c00105{left:354.900000px;}
.x63_c00105{left:356.100000px;}
.x10_c00105{left:357.900000px;}
.xad_c00105{left:359.100000px;}
.x6_c00105{left:361.800000px;}
.x9a_c00105{left:363.000000px;}
.x2b_c00105{left:367.050000px;}
.x5d_c00105{left:368.100000px;}
.x46_c00105{left:369.300000px;}
.x9b_c00105{left:370.500000px;}
.x32_c00105{left:372.150000px;}
.x64_c00105{left:373.350000px;}
.x1a_c00105{left:374.700000px;}
.x95_c00105{left:377.700000px;}
.x5a_c00105{left:380.400000px;}
.x37_c00105{left:382.350000px;}
.x4e_c00105{left:385.650000px;}
.x27_c00105{left:387.900000px;}
.x68_c00105{left:390.150000px;}
.x8c_c00105{left:391.500000px;}
.x7_c00105{left:393.150000px;}
.x47_c00105{left:394.800000px;}
.x90_c00105{left:395.850000px;}
.x1e_c00105{left:397.350000px;}
.xaa_c00105{left:398.550000px;}
.x93_c00105{left:399.900000px;}
.x5e_c00105{left:401.550000px;}
.x2c_c00105{left:404.100000px;}
.x2_c00105{left:406.050000px;}
.x28_c00105{left:408.450000px;}
.x6f_c00105{left:409.650000px;}
.x8_c00105{left:411.150000px;}
.x81_c00105{left:412.350000px;}
.x74_c00105{left:414.150000px;}
.x11_c00105{left:415.200000px;}
.x76_c00105{left:416.850000px;}
.x40_c00105{left:418.350000px;}
.x4f_c00105{left:419.550000px;}
.x71_c00105{left:422.250000px;}
.x38_c00105{left:423.750000px;}
.x88_c00105{left:424.950000px;}
.xa5_c00105{left:427.950000px;}
.x12_c00105{left:429.900000px;}
.x33_c00105{left:431.850000px;}
.x5f_c00105{left:432.900000px;}
.x96_c00105{left:434.550000px;}
.x69_c00105{left:435.900000px;}
.xa8_c00105{left:438.450000px;}
.x1b_c00105{left:439.800000px;}
.x94_c00105{left:441.300000px;}
.x1f_c00105{left:445.500000px;}
.x91_c00105{left:447.000000px;}
.x72_c00105{left:449.550000px;}
.xae_c00105{left:450.600000px;}
.x5b_c00105{left:452.400000px;}
.x34_c00105{left:454.950000px;}
.x39_c00105{left:456.900000px;}
.x9f_c00105{left:458.700000px;}
.x41_c00105{left:459.750000px;}
.x56_c00105{left:461.400000px;}
.x20_c00105{left:462.750000px;}
.x6d_c00105{left:464.850000px;}
.x54_c00105{left:466.500000px;}
.x2d_c00105{left:468.150000px;}
.xaf_c00105{left:470.400000px;}
.x82_c00105{left:471.450000px;}
.x48_c00105{left:474.450000px;}
.x8f_c00105{left:475.800000px;}
.x9_c00105{left:479.550000px;}
.x13_c00105{left:480.600000px;}
.x5c_c00105{left:485.100000px;}
.x55_c00105{left:488.400000px;}
.x97_c00105{left:491.100000px;}
.x85_c00105{left:492.900000px;}
.x21_c00105{left:498.750000px;}
.x50_c00105{left:501.000000px;}
.x14b_c00105{left:524.100000px;}
.xd3_c00105{left:525.300000px;}
.x11e_c00105{left:540.300000px;}
.x12c_c00105{left:541.500000px;}
.xb0_c00105{left:542.850000px;}
.xd0_c00105{left:543.900000px;}
.x119_c00105{left:558.000000px;}
.xe5_c00105{left:561.300000px;}
.xc9_c00105{left:562.350000px;}
.x105_c00105{left:564.150000px;}
.x124_c00105{left:565.650000px;}
.xfd_c00105{left:567.600000px;}
.xbe_c00105{left:570.450000px;}
.x110_c00105{left:573.000000px;}
.xc4_c00105{left:574.350000px;}
.x12d_c00105{left:579.600000px;}
.xdd_c00105{left:580.650000px;}
.x132_c00105{left:582.750000px;}
.xf3_c00105{left:583.950000px;}
.xf7_c00105{left:585.000000px;}
.xd4_c00105{left:588.000000px;}
.xb1_c00105{left:589.650000px;}
.x11a_c00105{left:592.200000px;}
.x122_c00105{left:593.250000px;}
.xd5_c00105{left:594.450000px;}
.x138_c00105{left:595.500000px;}
.xe3_c00105{left:596.850000px;}
.x142_c00105{left:598.050000px;}
.xec_c00105{left:599.700000px;}
.x123_c00105{left:604.800000px;}
.xb8_c00105{left:605.850000px;}
.xfe_c00105{left:607.500000px;}
.x134_c00105{left:609.150000px;}
.xf9_c00105{left:612.300000px;}
.x139_c00105{left:613.800000px;}
.xf8_c00105{left:614.850000px;}
.xe6_c00105{left:617.100000px;}
.xc5_c00105{left:619.650000px;}
.x131_c00105{left:620.850000px;}
.xd6_c00105{left:623.250000px;}
.xca_c00105{left:627.450000px;}
.x143_c00105{left:630.450000px;}
.x148_c00105{left:631.800000px;}
.x125_c00105{left:633.750000px;}
.x109_c00105{left:635.100000px;}
.xed_c00105{left:637.200000px;}
.xd1_c00105{left:639.300000px;}
.xb2_c00105{left:641.850000px;}
.xf4_c00105{left:643.350000px;}
.xcb_c00105{left:644.400000px;}
.x111_c00105{left:646.050000px;}
.xbf_c00105{left:647.550000px;}
.xe4_c00105{left:649.050000px;}
.x13f_c00105{left:651.300000px;}
.x102_c00105{left:652.500000px;}
.xde_c00105{left:654.450000px;}
.xd7_c00105{left:655.950000px;}
.x135_c00105{left:659.400000px;}
.x10c_c00105{left:662.250000px;}
.xb3_c00105{left:663.750000px;}
.xff_c00105{left:665.400000px;}
.x144_c00105{left:668.250000px;}
.x106_c00105{left:669.600000px;}
.x133_c00105{left:672.450000px;}
.xd2_c00105{left:673.500000px;}
.xdf_c00105{left:674.550000px;}
.xd8_c00105{left:676.500000px;}
.x11f_c00105{left:680.400000px;}
.xc6_c00105{left:681.600000px;}
.xf5_c00105{left:683.700000px;}
.xe7_c00105{left:684.750000px;}
.xc0_c00105{left:686.850000px;}
.x149_c00105{left:688.350000px;}
.xcc_c00105{left:689.400000px;}
.xe0_c00105{left:690.750000px;}
.xd9_c00105{left:692.400000px;}
.xe9_c00105{left:694.050000px;}
.x100_c00105{left:697.050000px;}
.x13c_c00105{left:698.850000px;}
.x11b_c00105{left:700.200000px;}
.x116_c00105{left:702.750000px;}
.xc1_c00105{left:703.800000px;}
.x10a_c00105{left:705.000000px;}
.x10d_c00105{left:706.950000px;}
.x120_c00105{left:708.450000px;}
.x14a_c00105{left:709.650000px;}
.x145_c00105{left:711.450000px;}
.x126_c00105{left:712.950000px;}
.x13d_c00105{left:714.750000px;}
.xb4_c00105{left:716.250000px;}
.xea_c00105{left:717.750000px;}
.xee_c00105{left:720.000000px;}
.xb9_c00105{left:721.350000px;}
.x107_c00105{left:722.550000px;}
.x12a_c00105{left:724.800000px;}
.x147_c00105{left:726.600000px;}
.x10b_c00105{left:729.150000px;}
.xfa_c00105{left:731.850000px;}
.xe8_c00105{left:734.700000px;}
.x136_c00105{left:737.100000px;}
.xe1_c00105{left:738.600000px;}
.x12e_c00105{left:741.750000px;}
.x103_c00105{left:744.750000px;}
.x112_c00105{left:746.100000px;}
.xba_c00105{left:747.300000px;}
.xcd_c00105{left:749.550000px;}
.xc2_c00105{left:754.950000px;}
.x11c_c00105{left:756.300000px;}
.xb5_c00105{left:757.350000px;}
.xe2_c00105{left:759.450000px;}
.x127_c00105{left:764.100000px;}
.xef_c00105{left:765.750000px;}
.xc7_c00105{left:768.750000px;}
.xbb_c00105{left:771.750000px;}
.xce_c00105{left:774.750000px;}
.xda_c00105{left:776.400000px;}
.xf6_c00105{left:778.800000px;}
.xb6_c00105{left:780.000000px;}
.x118_c00105{left:781.200000px;}
.x10e_c00105{left:782.850000px;}
.x113_c00105{left:784.200000px;}
.xc8_c00105{left:789.600000px;}
.x101_c00105{left:790.950000px;}
.xf0_c00105{left:792.750000px;}
.xcf_c00105{left:794.850000px;}
.xeb_c00105{left:795.900000px;}
.x128_c00105{left:797.550000px;}
.x108_c00105{left:799.650000px;}
.x13a_c00105{left:801.450000px;}
.xfb_c00105{left:804.600000px;}
.x13e_c00105{left:806.850000px;}
.x12b_c00105{left:807.900000px;}
.xbc_c00105{left:809.850000px;}
.x114_c00105{left:810.900000px;}
.x11d_c00105{left:812.850000px;}
.xc3_c00105{left:815.100000px;}
.x129_c00105{left:816.600000px;}
.x140_c00105{left:818.400000px;}
.x12f_c00105{left:820.650000px;}
.x117_c00105{left:823.350000px;}
.xfc_c00105{left:825.450000px;}
.xdb_c00105{left:827.550000px;}
.x104_c00105{left:829.800000px;}
.x146_c00105{left:831.750000px;}
.x115_c00105{left:833.250000px;}
.xf1_c00105{left:834.450000px;}
.x10f_c00105{left:836.850000px;}
.xbd_c00105{left:837.900000px;}
.x137_c00105{left:840.900000px;}
.xb7_c00105{left:844.050000px;}
.x13b_c00105{left:846.750000px;}
.xdc_c00105{left:848.400000px;}
.x130_c00105{left:850.950000px;}
.xf2_c00105{left:852.750000px;}
.x141_c00105{left:858.300000px;}
.x121_c00105{left:869.100000px;}
.x14c_c00105{left:894.150000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.wsa_c00105{word-spacing:-11.762227pt;}
.ws0_c00105{word-spacing:-8.888889pt;}
.ws1_c00105{word-spacing:-4.867725pt;}
.wsb_c00105{word-spacing:0.000000pt;}
.ws2_c00105{word-spacing:0.710450pt;}
.ws3_c00105{word-spacing:19.682540pt;}
.ws4_c00105{word-spacing:22.857143pt;}
.ws7_c00105{word-spacing:26.031746pt;}
.ws8_c00105{word-spacing:35.555556pt;}
.ws9_c00105{word-spacing:39.259259pt;}
.ws6_c00105{word-spacing:44.814815pt;}
.ws5_c00105{word-spacing:111.111111pt;}
._0_c00105{width:71.481481pt;}
.fs6_c00105{font-size:16.000000pt;}
.fsb_c00105{font-size:26.666667pt;}
.fs7_c00105{font-size:32.000000pt;}
.fs9_c00105{font-size:42.666667pt;}
.fs0_c00105{font-size:48.000000pt;}
.fs2_c00105{font-size:53.333333pt;}
.fs4_c00105{font-size:58.666667pt;}
.fs3_c00105{font-size:64.000000pt;}
.fsa_c00105{font-size:69.333333pt;}
.fs1_c00105{font-size:74.666667pt;}
.fs8_c00105{font-size:85.333333pt;}
.fs5_c00105{font-size:101.333333pt;}
.y0_c00105{bottom:0.000000pt;}
.y6a_c00105{bottom:159.333333pt;}
.y3b_c00105{bottom:160.000000pt;}
.y3a_c00105{bottom:176.266667pt;}
.y69_c00105{bottom:179.600000pt;}
.y39_c00105{bottom:192.266667pt;}
.y68_c00105{bottom:197.466667pt;}
.y38_c00105{bottom:208.266667pt;}
.y67_c00105{bottom:212.800000pt;}
.y37_c00105{bottom:224.266667pt;}
.y66_c00105{bottom:228.800000pt;}
.y36_c00105{bottom:240.266667pt;}
.y65_c00105{bottom:244.800000pt;}
.y35_c00105{bottom:256.266667pt;}
.y64_c00105{bottom:260.533333pt;}
.y34_c00105{bottom:272.266667pt;}
.y63_c00105{bottom:276.533333pt;}
.y33_c00105{bottom:288.000000pt;}
.y62_c00105{bottom:292.800000pt;}
.y32_c00105{bottom:304.000000pt;}
.y61_c00105{bottom:308.533333pt;}
.y31_c00105{bottom:323.466667pt;}
.y60_c00105{bottom:324.533333pt;}
.y30_c00105{bottom:336.666667pt;}
.y5f_c00105{bottom:340.533333pt;}
.y2f_c00105{bottom:348.533333pt;}
.y5e_c00105{bottom:356.533333pt;}
.y2e_c00105{bottom:356.800000pt;}
.y2d_c00105{bottom:361.866667pt;}
.y2c_c00105{bottom:374.400000pt;}
.y5d_c00105{bottom:376.000000pt;}
.y2b_c00105{bottom:387.466667pt;}
.y5c_c00105{bottom:393.066667pt;}
.y2a_c00105{bottom:399.600000pt;}
.y5b_c00105{bottom:409.333333pt;}
.y29_c00105{bottom:416.266667pt;}
.y5a_c00105{bottom:425.333333pt;}
.y28_c00105{bottom:432.400000pt;}
.y59_c00105{bottom:441.333333pt;}
.y27_c00105{bottom:448.400000pt;}
.y58_c00105{bottom:460.133333pt;}
.y26_c00105{bottom:464.666667pt;}
.y57_c00105{bottom:476.533333pt;}
.y25_c00105{bottom:480.666667pt;}
.y56_c00105{bottom:496.400000pt;}
.y24_c00105{bottom:499.866667pt;}
.y55_c00105{bottom:512.666667pt;}
.y23_c00105{bottom:515.866667pt;}
.y22_c00105{bottom:531.600000pt;}
.y54_c00105{bottom:533.066667pt;}
.y21_c00105{bottom:547.600000pt;}
.y53_c00105{bottom:552.266667pt;}
.y20_c00105{bottom:567.066667pt;}
.y52_c00105{bottom:568.400000pt;}
.y1f_c00105{bottom:583.333333pt;}
.y51_c00105{bottom:585.066667pt;}
.y50_c00105{bottom:601.333333pt;}
.y1e_c00105{bottom:603.200000pt;}
.y4f_c00105{bottom:617.333333pt;}
.y1d_c00105{bottom:623.066667pt;}
.y4e_c00105{bottom:632.666667pt;}
.y1c_c00105{bottom:639.066667pt;}
.y4d_c00105{bottom:648.666667pt;}
.y1b_c00105{bottom:655.333333pt;}
.y4c_c00105{bottom:664.933333pt;}
.y1a_c00105{bottom:674.800000pt;}
.y4b_c00105{bottom:680.666667pt;}
.y19_c00105{bottom:691.066667pt;}
.y4a_c00105{bottom:696.666667pt;}
.y18_c00105{bottom:703.600000pt;}
.y17_c00105{bottom:707.066667pt;}
.y49_c00105{bottom:714.533333pt;}
.y16_c00105{bottom:722.400000pt;}
.y15_c00105{bottom:723.066667pt;}
.y48_c00105{bottom:733.200000pt;}
.y14_c00105{bottom:738.800000pt;}
.y47_c00105{bottom:749.466667pt;}
.y13_c00105{bottom:755.066667pt;}
.y46_c00105{bottom:765.733333pt;}
.y12_c00105{bottom:770.800000pt;}
.y11_c00105{bottom:780.133333pt;}
.y45_c00105{bottom:784.266667pt;}
.y10_c00105{bottom:786.800000pt;}
.y44_c00105{bottom:800.933333pt;}
.yf_c00105{bottom:802.800000pt;}
.ye_c00105{bottom:814.000000pt;}
.yd_c00105{bottom:818.800000pt;}
.y43_c00105{bottom:820.133333pt;}
.yc_c00105{bottom:834.800000pt;}
.y42_c00105{bottom:836.133333pt;}
.yb_c00105{bottom:850.533333pt;}
.y41_c00105{bottom:859.733333pt;}
.ya_c00105{bottom:866.533333pt;}
.y40_c00105{bottom:875.466667pt;}
.y9_c00105{bottom:882.533333pt;}
.y3f_c00105{bottom:895.066667pt;}
.y8_c00105{bottom:900.800000pt;}
.y7_c00105{bottom:913.866667pt;}
.y3e_c00105{bottom:915.600000pt;}
.y6_c00105{bottom:931.866667pt;}
.y5_c00105{bottom:948.133333pt;}
.y4_c00105{bottom:963.866667pt;}
.y3_c00105{bottom:979.866667pt;}
.y3d_c00105{bottom:980.133333pt;}
.y2_c00105{bottom:995.866667pt;}
.y3c_c00105{bottom:996.133333pt;}
.y1_c00105{bottom:1019.466667pt;}
.y6b_c00105{bottom:1136.933333pt;}
.h8_c00105{height:16.000000pt;}
.hd_c00105{height:26.666667pt;}
.h9_c00105{height:32.000000pt;}
.hb_c00105{height:42.666667pt;}
.h2_c00105{height:48.000000pt;}
.h4_c00105{height:53.333333pt;}
.h6_c00105{height:58.666667pt;}
.h5_c00105{height:64.000000pt;}
.hc_c00105{height:69.333333pt;}
.h3_c00105{height:74.666667pt;}
.ha_c00105{height:85.333333pt;}
.h7_c00105{height:101.333333pt;}
.h1_c00105{height:1138.000000pt;}
.h0_c00105{height:1138.239991pt;}
.w1_c00105{width:847.333333pt;}
.w0_c00105{width:847.360027pt;}
.x0_c00105{left:0.000000pt;}
.x7f_c00105{left:143.333333pt;}
.x1_c00105{left:146.533333pt;}
.x29_c00105{left:148.533333pt;}
.x9e_c00105{left:150.133333pt;}
.xa1_c00105{left:157.733333pt;}
.x42_c00105{left:159.733333pt;}
.x2e_c00105{left:161.466667pt;}
.xa_c00105{left:163.866667pt;}
.x3a_c00105{left:164.800000pt;}
.xa0_c00105{left:166.400000pt;}
.x99_c00105{left:169.866667pt;}
.x2f_c00105{left:171.733333pt;}
.x6c_c00105{left:173.733333pt;}
.x9c_c00105{left:175.066667pt;}
.x98_c00105{left:176.666667pt;}
.x14_c00105{left:180.133333pt;}
.x83_c00105{left:181.600000pt;}
.xb_c00105{left:183.066667pt;}
.xab_c00105{left:184.400000pt;}
.x3_c00105{left:185.333333pt;}
.x65_c00105{left:187.600000pt;}
.x73_c00105{left:188.933333pt;}
.x49_c00105{left:190.133333pt;}
.x75_c00105{left:192.000000pt;}
.x51_c00105{left:193.200000pt;}
.x43_c00105{left:194.533333pt;}
.x60_c00105{left:196.000000pt;}
.x22_c00105{left:198.533333pt;}
.x3b_c00105{left:200.000000pt;}
.xa9_c00105{left:201.200000pt;}
.x2a_c00105{left:203.200000pt;}
.x30_c00105{left:205.333333pt;}
.x78_c00105{left:206.400000pt;}
.xac_c00105{left:207.466667pt;}
.x23_c00105{left:208.400000pt;}
.x57_c00105{left:209.466667pt;}
.x4a_c00105{left:210.933333pt;}
.x15_c00105{left:212.133333pt;}
.x9d_c00105{left:213.200000pt;}
.x61_c00105{left:214.533333pt;}
.x7d_c00105{left:216.800000pt;}
.x79_c00105{left:217.866667pt;}
.x52_c00105{left:218.800000pt;}
.x3c_c00105{left:219.866667pt;}
.xc_c00105{left:221.200000pt;}
.xa6_c00105{left:222.933333pt;}
.x4b_c00105{left:225.333333pt;}
.x86_c00105{left:226.666667pt;}
.x16_c00105{left:228.400000pt;}
.x6e_c00105{left:231.466667pt;}
.x24_c00105{left:232.400000pt;}
.x8d_c00105{left:234.266667pt;}
.x1c_c00105{left:235.200000pt;}
.x44_c00105{left:236.400000pt;}
.x53_c00105{left:238.000000pt;}
.xd_c00105{left:239.733333pt;}
.xa2_c00105{left:241.866667pt;}
.x4_c00105{left:243.866667pt;}
.x7c_c00105{left:245.466667pt;}
.x58_c00105{left:247.200000pt;}
.x8b_c00105{left:249.066667pt;}
.x35_c00105{left:251.200000pt;}
.x89_c00105{left:252.266667pt;}
.x62_c00105{left:253.866667pt;}
.x66_c00105{left:255.200000pt;}
.x3d_c00105{left:257.600000pt;}
.x17_c00105{left:260.133333pt;}
.x25_c00105{left:261.866667pt;}
.x92_c00105{left:263.333333pt;}
.x80_c00105{left:264.800000pt;}
.x3e_c00105{left:266.266667pt;}
.x7e_c00105{left:267.733333pt;}
.x4c_c00105{left:270.400000pt;}
.xe_c00105{left:272.400000pt;}
.x7a_c00105{left:273.866667pt;}
.x84_c00105{left:275.066667pt;}
.x18_c00105{left:277.066667pt;}
.xa3_c00105{left:279.600000pt;}
.x59_c00105{left:282.133333pt;}
.x8e_c00105{left:284.133333pt;}
.x6a_c00105{left:285.066667pt;}
.x5_c00105{left:287.333333pt;}
.x77_c00105{left:289.200000pt;}
.x8a_c00105{left:291.066667pt;}
.x26_c00105{left:292.266667pt;}
.x19_c00105{left:293.333333pt;}
.x36_c00105{left:294.400000pt;}
.xa4_c00105{left:295.333333pt;}
.x7b_c00105{left:296.533333pt;}
.x87_c00105{left:298.000000pt;}
.x67_c00105{left:299.066667pt;}
.x3f_c00105{left:300.133333pt;}
.x31_c00105{left:302.266667pt;}
.x70_c00105{left:304.666667pt;}
.x1d_c00105{left:305.600000pt;}
.xf_c00105{left:306.933333pt;}
.x45_c00105{left:309.333333pt;}
.x4d_c00105{left:311.733333pt;}
.xa7_c00105{left:314.533333pt;}
.x6b_c00105{left:315.466667pt;}
.x63_c00105{left:316.533333pt;}
.x10_c00105{left:318.133333pt;}
.xad_c00105{left:319.200000pt;}
.x6_c00105{left:321.600000pt;}
.x9a_c00105{left:322.666667pt;}
.x2b_c00105{left:326.266667pt;}
.x5d_c00105{left:327.200000pt;}
.x46_c00105{left:328.266667pt;}
.x9b_c00105{left:329.333333pt;}
.x32_c00105{left:330.800000pt;}
.x64_c00105{left:331.866667pt;}
.x1a_c00105{left:333.066667pt;}
.x95_c00105{left:335.733333pt;}
.x5a_c00105{left:338.133333pt;}
.x37_c00105{left:339.866667pt;}
.x4e_c00105{left:342.800000pt;}
.x27_c00105{left:344.800000pt;}
.x68_c00105{left:346.800000pt;}
.x8c_c00105{left:348.000000pt;}
.x7_c00105{left:349.466667pt;}
.x47_c00105{left:350.933333pt;}
.x90_c00105{left:351.866667pt;}
.x1e_c00105{left:353.200000pt;}
.xaa_c00105{left:354.266667pt;}
.x93_c00105{left:355.466667pt;}
.x5e_c00105{left:356.933333pt;}
.x2c_c00105{left:359.200000pt;}
.x2_c00105{left:360.933333pt;}
.x28_c00105{left:363.066667pt;}
.x6f_c00105{left:364.133333pt;}
.x8_c00105{left:365.466667pt;}
.x81_c00105{left:366.533333pt;}
.x74_c00105{left:368.133333pt;}
.x11_c00105{left:369.066667pt;}
.x76_c00105{left:370.533333pt;}
.x40_c00105{left:371.866667pt;}
.x4f_c00105{left:372.933333pt;}
.x71_c00105{left:375.333333pt;}
.x38_c00105{left:376.666667pt;}
.x88_c00105{left:377.733333pt;}
.xa5_c00105{left:380.400000pt;}
.x12_c00105{left:382.133333pt;}
.x33_c00105{left:383.866667pt;}
.x5f_c00105{left:384.800000pt;}
.x96_c00105{left:386.266667pt;}
.x69_c00105{left:387.466667pt;}
.xa8_c00105{left:389.733333pt;}
.x1b_c00105{left:390.933333pt;}
.x94_c00105{left:392.266667pt;}
.x1f_c00105{left:396.000000pt;}
.x91_c00105{left:397.333333pt;}
.x72_c00105{left:399.600000pt;}
.xae_c00105{left:400.533333pt;}
.x5b_c00105{left:402.133333pt;}
.x34_c00105{left:404.400000pt;}
.x39_c00105{left:406.133333pt;}
.x9f_c00105{left:407.733333pt;}
.x41_c00105{left:408.666667pt;}
.x56_c00105{left:410.133333pt;}
.x20_c00105{left:411.333333pt;}
.x6d_c00105{left:413.200000pt;}
.x54_c00105{left:414.666667pt;}
.x2d_c00105{left:416.133333pt;}
.xaf_c00105{left:418.133333pt;}
.x82_c00105{left:419.066667pt;}
.x48_c00105{left:421.733333pt;}
.x8f_c00105{left:422.933333pt;}
.x9_c00105{left:426.266667pt;}
.x13_c00105{left:427.200000pt;}
.x5c_c00105{left:431.200000pt;}
.x55_c00105{left:434.133333pt;}
.x97_c00105{left:436.533333pt;}
.x85_c00105{left:438.133333pt;}
.x21_c00105{left:443.333333pt;}
.x50_c00105{left:445.333333pt;}
.x14b_c00105{left:465.866667pt;}
.xd3_c00105{left:466.933333pt;}
.x11e_c00105{left:480.266667pt;}
.x12c_c00105{left:481.333333pt;}
.xb0_c00105{left:482.533333pt;}
.xd0_c00105{left:483.466667pt;}
.x119_c00105{left:496.000000pt;}
.xe5_c00105{left:498.933333pt;}
.xc9_c00105{left:499.866667pt;}
.x105_c00105{left:501.466667pt;}
.x124_c00105{left:502.800000pt;}
.xfd_c00105{left:504.533333pt;}
.xbe_c00105{left:507.066667pt;}
.x110_c00105{left:509.333333pt;}
.xc4_c00105{left:510.533333pt;}
.x12d_c00105{left:515.200000pt;}
.xdd_c00105{left:516.133333pt;}
.x132_c00105{left:518.000000pt;}
.xf3_c00105{left:519.066667pt;}
.xf7_c00105{left:520.000000pt;}
.xd4_c00105{left:522.666667pt;}
.xb1_c00105{left:524.133333pt;}
.x11a_c00105{left:526.400000pt;}
.x122_c00105{left:527.333333pt;}
.xd5_c00105{left:528.400000pt;}
.x138_c00105{left:529.333333pt;}
.xe3_c00105{left:530.533333pt;}
.x142_c00105{left:531.600000pt;}
.xec_c00105{left:533.066667pt;}
.x123_c00105{left:537.600000pt;}
.xb8_c00105{left:538.533333pt;}
.xfe_c00105{left:540.000000pt;}
.x134_c00105{left:541.466667pt;}
.xf9_c00105{left:544.266667pt;}
.x139_c00105{left:545.600000pt;}
.xf8_c00105{left:546.533333pt;}
.xe6_c00105{left:548.533333pt;}
.xc5_c00105{left:550.800000pt;}
.x131_c00105{left:551.866667pt;}
.xd6_c00105{left:554.000000pt;}
.xca_c00105{left:557.733333pt;}
.x143_c00105{left:560.400000pt;}
.x148_c00105{left:561.600000pt;}
.x125_c00105{left:563.333333pt;}
.x109_c00105{left:564.533333pt;}
.xed_c00105{left:566.400000pt;}
.xd1_c00105{left:568.266667pt;}
.xb2_c00105{left:570.533333pt;}
.xf4_c00105{left:571.866667pt;}
.xcb_c00105{left:572.800000pt;}
.x111_c00105{left:574.266667pt;}
.xbf_c00105{left:575.600000pt;}
.xe4_c00105{left:576.933333pt;}
.x13f_c00105{left:578.933333pt;}
.x102_c00105{left:580.000000pt;}
.xde_c00105{left:581.733333pt;}
.xd7_c00105{left:583.066667pt;}
.x135_c00105{left:586.133333pt;}
.x10c_c00105{left:588.666667pt;}
.xb3_c00105{left:590.000000pt;}
.xff_c00105{left:591.466667pt;}
.x144_c00105{left:594.000000pt;}
.x106_c00105{left:595.200000pt;}
.x133_c00105{left:597.733333pt;}
.xd2_c00105{left:598.666667pt;}
.xdf_c00105{left:599.600000pt;}
.xd8_c00105{left:601.333333pt;}
.x11f_c00105{left:604.800000pt;}
.xc6_c00105{left:605.866667pt;}
.xf5_c00105{left:607.733333pt;}
.xe7_c00105{left:608.666667pt;}
.xc0_c00105{left:610.533333pt;}
.x149_c00105{left:611.866667pt;}
.xcc_c00105{left:612.800000pt;}
.xe0_c00105{left:614.000000pt;}
.xd9_c00105{left:615.466667pt;}
.xe9_c00105{left:616.933333pt;}
.x100_c00105{left:619.600000pt;}
.x13c_c00105{left:621.200000pt;}
.x11b_c00105{left:622.400000pt;}
.x116_c00105{left:624.666667pt;}
.xc1_c00105{left:625.600000pt;}
.x10a_c00105{left:626.666667pt;}
.x10d_c00105{left:628.400000pt;}
.x120_c00105{left:629.733333pt;}
.x14a_c00105{left:630.800000pt;}
.x145_c00105{left:632.400000pt;}
.x126_c00105{left:633.733333pt;}
.x13d_c00105{left:635.333333pt;}
.xb4_c00105{left:636.666667pt;}
.xea_c00105{left:638.000000pt;}
.xee_c00105{left:640.000000pt;}
.xb9_c00105{left:641.200000pt;}
.x107_c00105{left:642.266667pt;}
.x12a_c00105{left:644.266667pt;}
.x147_c00105{left:645.866667pt;}
.x10b_c00105{left:648.133333pt;}
.xfa_c00105{left:650.533333pt;}
.xe8_c00105{left:653.066667pt;}
.x136_c00105{left:655.200000pt;}
.xe1_c00105{left:656.533333pt;}
.x12e_c00105{left:659.333333pt;}
.x103_c00105{left:662.000000pt;}
.x112_c00105{left:663.200000pt;}
.xba_c00105{left:664.266667pt;}
.xcd_c00105{left:666.266667pt;}
.xc2_c00105{left:671.066667pt;}
.x11c_c00105{left:672.266667pt;}
.xb5_c00105{left:673.200000pt;}
.xe2_c00105{left:675.066667pt;}
.x127_c00105{left:679.200000pt;}
.xef_c00105{left:680.666667pt;}
.xc7_c00105{left:683.333333pt;}
.xbb_c00105{left:686.000000pt;}
.xce_c00105{left:688.666667pt;}
.xda_c00105{left:690.133333pt;}
.xf6_c00105{left:692.266667pt;}
.xb6_c00105{left:693.333333pt;}
.x118_c00105{left:694.400000pt;}
.x10e_c00105{left:695.866667pt;}
.x113_c00105{left:697.066667pt;}
.xc8_c00105{left:701.866667pt;}
.x101_c00105{left:703.066667pt;}
.xf0_c00105{left:704.666667pt;}
.xcf_c00105{left:706.533333pt;}
.xeb_c00105{left:707.466667pt;}
.x128_c00105{left:708.933333pt;}
.x108_c00105{left:710.800000pt;}
.x13a_c00105{left:712.400000pt;}
.xfb_c00105{left:715.200000pt;}
.x13e_c00105{left:717.200000pt;}
.x12b_c00105{left:718.133333pt;}
.xbc_c00105{left:719.866667pt;}
.x114_c00105{left:720.800000pt;}
.x11d_c00105{left:722.533333pt;}
.xc3_c00105{left:724.533333pt;}
.x129_c00105{left:725.866667pt;}
.x140_c00105{left:727.466667pt;}
.x12f_c00105{left:729.466667pt;}
.x117_c00105{left:731.866667pt;}
.xfc_c00105{left:733.733333pt;}
.xdb_c00105{left:735.600000pt;}
.x104_c00105{left:737.600000pt;}
.x146_c00105{left:739.333333pt;}
.x115_c00105{left:740.666667pt;}
.xf1_c00105{left:741.733333pt;}
.x10f_c00105{left:743.866667pt;}
.xbd_c00105{left:744.800000pt;}
.x137_c00105{left:747.466667pt;}
.xb7_c00105{left:750.266667pt;}
.x13b_c00105{left:752.666667pt;}
.xdc_c00105{left:754.133333pt;}
.x130_c00105{left:756.400000pt;}
.xf2_c00105{left:758.000000pt;}
.x141_c00105{left:762.933333pt;}
.x121_c00105{left:772.533333pt;}
.x14c_c00105{left:794.800000pt;}
}





/* 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_c00106 {
    display:none;
  }
  .loading-indicator_c00106.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00106 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_c00106 { 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_c00106" -> "#page-container .classname_c00106")
 */
.pf_c00106 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00106 { /* 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_c00106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00106 { /* 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_c00106 { /* 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_c00106 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00106 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00106 {overflow:visible;}
  }
}
.c_c00106 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00106 { /* 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_c00106:after { /* webkit #35443 */
  content: '';
}
.t_c00106:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00106 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 */
}
.__c00106 { /* 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_c00106 { /* info for Javascript */
  display:none;
}
.l_c00106 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00106 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00106 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00106: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_c00106 {
    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_c00106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00106.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_c00106 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00106;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.000000;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;}
.m11d_c00106{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m114_c00106{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00106{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00106{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00106{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00106{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00106{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00106{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mba_c00106{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00106{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m57_c00106{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00106{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9_c00106{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m15_c00106{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m122_c00106{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m111_c00106{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.me7_c00106{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m52_c00106{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00106{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00106{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00106{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00106{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m84_c00106{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m85_c00106{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00106{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00106{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00106{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00106{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m92_c00106{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00106{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00106{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m13_c00106{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00106{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00106{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00106{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m103_c00106{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00106{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m101_c00106{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00106{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00106{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me6_c00106{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00106{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.md5_c00106{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m27_c00106{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00106{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m12_c00106{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00106{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00106{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m62_c00106{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m55_c00106{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m97_c00106{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mde_c00106{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m104_c00106{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mda_c00106{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00106{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00106{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00106{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m59_c00106{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m71_c00106{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m118_c00106{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m94_c00106{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00106{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mff_c00106{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.maf_c00106{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m14_c00106{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m32_c00106{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00106{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m91_c00106{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.md4_c00106{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m66_c00106{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00106{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m51_c00106{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mab_c00106{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md6_c00106{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m89_c00106{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00106{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00106{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m54_c00106{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m70_c00106{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00106{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00106{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00106{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m21_c00106{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m83_c00106{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.maa_c00106{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00106{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00106{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00106{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m93_c00106{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00106{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m49_c00106{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m16_c00106{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m61_c00106{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00106{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m56_c00106{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00106{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m90_c00106{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00106{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00106{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00106{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me9_c00106{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m29_c00106{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m76_c00106{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md8_c00106{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00106{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m68_c00106{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00106{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00106{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mca_c00106{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10_c00106{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00106{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00106{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00106{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.meb_c00106{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mc_c00106{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m73_c00106{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m74_c00106{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00106{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m86_c00106{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00106{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m117_c00106{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m28_c00106{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m31_c00106{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m102_c00106{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m48_c00106{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00106{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00106{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m37_c00106{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00106{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00106{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00106{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md0_c00106{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m72_c00106{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m120_c00106{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00106{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00106{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m95_c00106{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00106{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00106{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m78_c00106{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00106{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md9_c00106{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m69_c00106{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00106{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m3_c00106{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00106{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00106{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00106{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00106{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m36_c00106{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m34_c00106{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m63_c00106{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m99_c00106{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.me8_c00106{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00106{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00106{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m77_c00106{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00106{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00106{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m17_c00106{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00106{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00106{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m30_c00106{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00106{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m60_c00106{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00106{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m58_c00106{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00106{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mec_c00106{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m24_c00106{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf_c00106{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m35_c00106{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md2_c00106{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m25_c00106{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mae_c00106{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00106{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m100_c00106{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me3_c00106{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8_c00106{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m65_c00106{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00106{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00106{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5_c00106{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00106{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00106{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00106{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m50_c00106{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00106{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00106{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00106{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.med_c00106{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m64_c00106{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m26_c00106{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6_c00106{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md_c00106{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m38_c00106{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m96_c00106{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00106{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mce_c00106{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m18_c00106{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m53_c00106{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m98_c00106{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m105_c00106{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.me_c00106{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00106{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m44_c00106{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m119_c00106{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m79_c00106{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mee_c00106{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m67_c00106{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m23_c00106{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00106{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m47_c00106{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m75_c00106{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00106{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m39_c00106{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.md3_c00106{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m87_c00106{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00106{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00106{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00106{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00106{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2_c00106{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m33_c00106{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00106{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m20_c00106{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m19_c00106{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7_c00106{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00106{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00106{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00106{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00106{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00106{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me4_c00106{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00106{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m42_c00106{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mad_c00106{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00106{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m43_c00106{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00106{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m113_c00106{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m22_c00106{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00106{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md1_c00106{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mef_c00106{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma_c00106{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m41_c00106{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m82_c00106{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md7_c00106{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00106{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m106_c00106{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m88_c00106{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m107_c00106{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00106{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m11_c00106{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00106{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m4_c00106{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00106{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me0_c00106{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m110_c00106{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.me1_c00106{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00106{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m40_c00106{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m81_c00106{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00106{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00106{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m45_c00106{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mea_c00106{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00106{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m109_c00106{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m108_c00106{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me5_c00106{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00106{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mb_c00106{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00106{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00106{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00106{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m115_c00106{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m46_c00106{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m121_c00106{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m116_c00106{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.me2_c00106{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m80_c00106{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00106{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00106{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00106{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.mac_c00106{transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m112_c00106{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00106{transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00106{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls1_c00106{letter-spacing:0.000000px;}
.ls0_c00106{letter-spacing:70.000000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{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__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00106{word-spacing:-100.000000px;}
.ws0_c00106{word-spacing:-13.130584px;}
.ws4_c00106{word-spacing:-8.055556px;}
.ws1_c00106{word-spacing:-4.892642px;}
.ws2_c00106{word-spacing:0.000000px;}
.ws3_c00106{word-spacing:3.917197px;}
.wsa_c00106{word-spacing:11.184211px;}
.ws9_c00106{word-spacing:12.412607px;}
.ws7_c00106{word-spacing:16.785714px;}
.ws8_c00106{word-spacing:22.142857px;}
.ws5_c00106{word-spacing:65.000000px;}
._0_c00106{margin-left:-70.000000px;}
._1_c00106{width:55.714286px;}
.fc0_c00106{color:transparent;}
.fs6_c00106{font-size:42.000000px;}
.fs1_c00106{font-size:48.000000px;}
.fs5_c00106{font-size:54.000000px;}
.fs4_c00106{font-size:60.000000px;}
.fs3_c00106{font-size:66.000000px;}
.fs2_c00106{font-size:72.000000px;}
.fs0_c00106{font-size:78.000000px;}
.y0_c00106{bottom:0.000000px;}
.y65_c00106{bottom:155.850000px;}
.y64_c00106{bottom:171.750000px;}
.y33_c00106{bottom:173.400000px;}
.y63_c00106{bottom:187.200000px;}
.y32_c00106{bottom:191.400000px;}
.y62_c00106{bottom:203.400000px;}
.y31_c00106{bottom:209.100000px;}
.y61_c00106{bottom:216.000000px;}
.y30_c00106{bottom:227.100000px;}
.y2f_c00106{bottom:244.800000px;}
.y2e_c00106{bottom:262.800000px;}
.y60_c00106{bottom:267.000000px;}
.y5f_c00106{bottom:275.700000px;}
.y2d_c00106{bottom:281.100000px;}
.y5c_c00106{bottom:289.500000px;}
.y5e_c00106{bottom:297.300000px;}
.y2c_c00106{bottom:298.800000px;}
.y5b_c00106{bottom:299.550000px;}
.y2b_c00106{bottom:320.100000px;}
.y5a_c00106{bottom:324.000000px;}
.y2a_c00106{bottom:334.500000px;}
.y59_c00106{bottom:345.600000px;}
.y29_c00106{bottom:348.900000px;}
.y28_c00106{bottom:364.350000px;}
.y58_c00106{bottom:367.950000px;}
.y27_c00106{bottom:383.700000px;}
.y57_c00106{bottom:389.850000px;}
.y26_c00106{bottom:402.000000px;}
.y56_c00106{bottom:412.950000px;}
.y25_c00106{bottom:419.700000px;}
.y24_c00106{bottom:442.050000px;}
.y55_c00106{bottom:447.150000px;}
.y5d_c00106{bottom:447.900000px;}
.y23_c00106{bottom:460.050000px;}
.y22_c00106{bottom:478.050000px;}
.y54_c00106{bottom:483.600000px;}
.y21_c00106{bottom:496.050000px;}
.y53_c00106{bottom:501.900000px;}
.y20_c00106{bottom:513.750000px;}
.y52_c00106{bottom:523.800000px;}
.y1f_c00106{bottom:531.750000px;}
.y51_c00106{bottom:541.800000px;}
.y1e_c00106{bottom:550.050000px;}
.y50_c00106{bottom:560.100000px;}
.y1d_c00106{bottom:568.050000px;}
.y4f_c00106{bottom:586.500000px;}
.y1c_c00106{bottom:594.000000px;}
.y4e_c00106{bottom:604.650000px;}
.y4d_c00106{bottom:622.350000px;}
.y1b_c00106{bottom:625.350000px;}
.y4c_c00106{bottom:640.350000px;}
.y1a_c00106{bottom:647.700000px;}
.y4b_c00106{bottom:658.350000px;}
.y19_c00106{bottom:669.900000px;}
.y4a_c00106{bottom:676.050000px;}
.y18_c00106{bottom:687.900000px;}
.y49_c00106{bottom:694.050000px;}
.y17_c00106{bottom:705.600000px;}
.y48_c00106{bottom:712.050000px;}
.y16_c00106{bottom:723.600000px;}
.y47_c00106{bottom:729.750000px;}
.y15_c00106{bottom:741.600000px;}
.y46_c00106{bottom:754.800000px;}
.y14_c00106{bottom:759.600000px;}
.y45_c00106{bottom:769.950000px;}
.y13_c00106{bottom:777.600000px;}
.y44_c00106{bottom:786.900000px;}
.y12_c00106{bottom:797.400000px;}
.y43_c00106{bottom:808.500000px;}
.y11_c00106{bottom:813.600000px;}
.y42_c00106{bottom:828.000000px;}
.y10_c00106{bottom:831.900000px;}
.y41_c00106{bottom:845.700000px;}
.yf_c00106{bottom:849.900000px;}
.ye_c00106{bottom:867.600000px;}
.y40_c00106{bottom:872.550000px;}
.y3f_c00106{bottom:890.250000px;}
.yd_c00106{bottom:892.800000px;}
.y3e_c00106{bottom:908.550000px;}
.yc_c00106{bottom:919.050000px;}
.y3d_c00106{bottom:926.250000px;}
.yb_c00106{bottom:936.000000px;}
.y3c_c00106{bottom:944.250000px;}
.ya_c00106{bottom:954.000000px;}
.y3b_c00106{bottom:965.850000px;}
.y9_c00106{bottom:972.300000px;}
.y8_c00106{bottom:990.000000px;}
.y3a_c00106{bottom:996.150000px;}
.y7_c00106{bottom:1007.700000px;}
.y39_c00106{bottom:1018.350000px;}
.y6_c00106{bottom:1029.900000px;}
.y38_c00106{bottom:1037.100000px;}
.y5_c00106{bottom:1048.200000px;}
.y37_c00106{bottom:1054.800000px;}
.y4_c00106{bottom:1065.900000px;}
.y36_c00106{bottom:1072.800000px;}
.y3_c00106{bottom:1088.250000px;}
.y35_c00106{bottom:1094.700000px;}
.y34_c00106{bottom:1112.700000px;}
.y2_c00106{bottom:1115.250000px;}
.y1_c00106{bottom:1140.150000px;}
.h8_c00106{height:42.000000px;}
.h3_c00106{height:48.000000px;}
.h7_c00106{height:54.000000px;}
.h6_c00106{height:60.000000px;}
.h5_c00106{height:66.000000px;}
.h4_c00106{height:72.000000px;}
.h2_c00106{height:78.000000px;}
.h0_c00106{height:1276.199982px;}
.h1_c00106{height:1276.500000px;}
.w1_c00106{width:953.250000px;}
.w0_c00106{width:953.280030px;}
.x0_c00106{left:0.000000px;}
.x3_c00106{left:81.000000px;}
.x22_c00106{left:82.500000px;}
.x4d_c00106{left:83.550000px;}
.x7d_c00106{left:85.650000px;}
.x95_c00106{left:86.700000px;}
.xac_c00106{left:88.500000px;}
.x81_c00106{left:98.250000px;}
.x2f_c00106{left:99.600000px;}
.x42_c00106{left:101.400000px;}
.x29_c00106{left:102.600000px;}
.x15_c00106{left:103.650000px;}
.x5c_c00106{left:104.700000px;}
.x63_c00106{left:106.200000px;}
.x89_c00106{left:108.450000px;}
.x84_c00106{left:110.850000px;}
.xb7_c00106{left:112.350000px;}
.x96_c00106{left:114.450000px;}
.xb5_c00106{left:119.850000px;}
.x9_c00106{left:120.900000px;}
.xa5_c00106{left:122.400000px;}
.x10_c00106{left:123.450000px;}
.xa0_c00106{left:126.000000px;}
.x58_c00106{left:127.350000px;}
.x23_c00106{left:130.350000px;}
.x72_c00106{left:131.400000px;}
.x97_c00106{left:135.000000px;}
.x79_c00106{left:136.200000px;}
.x68_c00106{left:138.150000px;}
.x5d_c00106{left:139.200000px;}
.x16_c00106{left:141.750000px;}
.x2a_c00106{left:143.250000px;}
.x6c_c00106{left:144.750000px;}
.x46_c00106{left:145.800000px;}
.x1c_c00106{left:147.300000px;}
.x30_c00106{left:148.500000px;}
.xad_c00106{left:150.150000px;}
.xa1_c00106{left:151.950000px;}
.x7e_c00106{left:153.300000px;}
.xa_c00106{left:155.850000px;}
.x4_c00106{left:158.100000px;}
.x7f_c00106{left:160.050000px;}
.x2b_c00106{left:162.000000px;}
.x43_c00106{left:163.350000px;}
.x64_c00106{left:165.300000px;}
.xb_c00106{left:166.950000px;}
.x92_c00106{left:168.600000px;}
.x47_c00106{left:169.950000px;}
.x85_c00106{left:171.300000px;}
.x5e_c00106{left:174.150000px;}
.x52_c00106{left:175.200000px;}
.x37_c00106{left:177.300000px;}
.x73_c00106{left:178.950000px;}
.x11_c00106{left:180.300000px;}
.x17_c00106{left:182.100000px;}
.x80_c00106{left:183.450000px;}
.x1d_c00106{left:185.100000px;}
.x69_c00106{left:187.800000px;}
.x31_c00106{left:191.400000px;}
.x38_c00106{left:192.750000px;}
.xae_c00106{left:195.600000px;}
.x48_c00106{left:196.650000px;}
.xa2_c00106{left:198.450000px;}
.x24_c00106{left:199.500000px;}
.x3d_c00106{left:201.750000px;}
.x98_c00106{left:203.100000px;}
.x8b_c00106{left:204.600000px;}
.x18_c00106{left:206.250000px;}
.xc_c00106{left:209.100000px;}
.x1e_c00106{left:211.800000px;}
.x53_c00106{left:213.000000px;}
.xb6_c00106{left:214.650000px;}
.x19_c00106{left:216.300000px;}
.xb8_c00106{left:217.800000px;}
.xa6_c00106{left:218.850000px;}
.x5f_c00106{left:220.950000px;}
.x49_c00106{left:225.150000px;}
.x2c_c00106{left:227.400000px;}
.x59_c00106{left:229.650000px;}
.x32_c00106{left:230.700000px;}
.x60_c00106{left:231.750000px;}
.x54_c00106{left:233.850000px;}
.x5_c00106{left:235.500000px;}
.x8e_c00106{left:236.850000px;}
.x6a_c00106{left:242.850000px;}
.x3e_c00106{left:244.200000px;}
.x7a_c00106{left:246.000000px;}
.x1f_c00106{left:247.050000px;}
.x9c_c00106{left:248.100000px;}
.x44_c00106{left:249.150000px;}
.x12_c00106{left:251.250000px;}
.x99_c00106{left:252.450000px;}
.xb2_c00106{left:254.250000px;}
.x39_c00106{left:255.450000px;}
.x4a_c00106{left:257.250000px;}
.x2d_c00106{left:259.800000px;}
.xaa_c00106{left:260.850000px;}
.xd_c00106{left:262.050000px;}
.x75_c00106{left:263.550000px;}
.xa7_c00106{left:264.900000px;}
.x65_c00106{left:266.100000px;}
.x45_c00106{left:267.450000px;}
.xe_c00106{left:269.550000px;}
.x82_c00106{left:270.600000px;}
.xa8_c00106{left:272.100000px;}
.x1a_c00106{left:275.400000px;}
.x8f_c00106{left:276.750000px;}
.x9d_c00106{left:280.050000px;}
.x20_c00106{left:281.550000px;}
.x8c_c00106{left:285.300000px;}
.x33_c00106{left:286.800000px;}
.x25_c00106{left:289.200000px;}
.x55_c00106{left:292.500000px;}
.x3f_c00106{left:293.550000px;}
.x4e_c00106{left:295.650000px;}
.x34_c00106{left:297.600000px;}
.x6_c00106{left:299.250000px;}
.x9a_c00106{left:300.300000px;}
.x9e_c00106{left:301.950000px;}
.x6d_c00106{left:303.450000px;}
.x21_c00106{left:304.950000px;}
.x56_c00106{left:306.900000px;}
.xab_c00106{left:308.700000px;}
.x66_c00106{left:310.050000px;}
.xb4_c00106{left:311.400000px;}
.x13_c00106{left:314.550000px;}
.x26_c00106{left:316.500000px;}
.x76_c00106{left:317.550000px;}
.x5a_c00106{left:318.900000px;}
.xb3_c00106{left:320.250000px;}
.x6b_c00106{left:321.750000px;}
.x7_c00106{left:322.950000px;}
.x4b_c00106{left:324.600000px;}
.xf_c00106{left:326.100000px;}
.x94_c00106{left:327.750000px;}
.x6e_c00106{left:328.950000px;}
.xa9_c00106{left:330.150000px;}
.x1_c00106{left:331.200000px;}
.x9b_c00106{left:333.900000px;}
.x3a_c00106{left:335.700000px;}
.xa3_c00106{left:338.250000px;}
.x4f_c00106{left:341.700000px;}
.x5b_c00106{left:345.600000px;}
.x8_c00106{left:347.850000px;}
.x1b_c00106{left:349.950000px;}
.xaf_c00106{left:351.600000px;}
.x6f_c00106{left:352.650000px;}
.x7b_c00106{left:355.050000px;}
.x3b_c00106{left:356.250000px;}
.xa4_c00106{left:357.750000px;}
.x86_c00106{left:359.100000px;}
.x50_c00106{left:360.750000px;}
.x83_c00106{left:361.800000px;}
.x35_c00106{left:364.200000px;}
.x8a_c00106{left:366.150000px;}
.x67_c00106{left:367.200000px;}
.xb1_c00106{left:370.050000px;}
.x27_c00106{left:371.250000px;}
.x4c_c00106{left:372.450000px;}
.x93_c00106{left:374.100000px;}
.x61_c00106{left:376.200000px;}
.x7c_c00106{left:378.750000px;}
.x9f_c00106{left:380.100000px;}
.x87_c00106{left:381.750000px;}
.x40_c00106{left:382.800000px;}
.x77_c00106{left:384.150000px;}
.x90_c00106{left:385.350000px;}
.x8d_c00106{left:387.750000px;}
.x88_c00106{left:390.000000px;}
.x78_c00106{left:391.050000px;}
.x70_c00106{left:392.250000px;}
.x57_c00106{left:394.350000px;}
.x14_c00106{left:396.000000px;}
.x62_c00106{left:397.500000px;}
.xb0_c00106{left:399.150000px;}
.x41_c00106{left:400.500000px;}
.x36_c00106{left:402.750000px;}
.x74_c00106{left:407.250000px;}
.x71_c00106{left:409.200000px;}
.x91_c00106{left:410.550000px;}
.x51_c00106{left:412.350000px;}
.x2e_c00106{left:414.300000px;}
.x28_c00106{left:415.500000px;}
.x3c_c00106{left:416.700000px;}
.x10d_c00106{left:447.150000px;}
.xe5_c00106{left:448.200000px;}
.xc8_c00106{left:450.000000px;}
.x151_c00106{left:451.050000px;}
.xea_c00106{left:458.550000px;}
.x112_c00106{left:461.250000px;}
.x107_c00106{left:464.400000px;}
.xf3_c00106{left:465.450000px;}
.xdb_c00106{left:466.650000px;}
.xb9_c00106{left:467.700000px;}
.x154_c00106{left:472.050000px;}
.x113_c00106{left:476.700000px;}
.xeb_c00106{left:480.900000px;}
.x104_c00106{left:482.400000px;}
.xef_c00106{left:484.200000px;}
.x141_c00106{left:485.700000px;}
.xdc_c00106{left:486.750000px;}
.xc2_c00106{left:488.250000px;}
.x14c_c00106{left:489.600000px;}
.xf9_c00106{left:490.800000px;}
.x138_c00106{left:492.900000px;}
.x147_c00106{left:493.950000px;}
.x10b_c00106{left:495.300000px;}
.x134_c00106{left:496.800000px;}
.xfe_c00106{left:500.250000px;}
.x11e_c00106{left:503.100000px;}
.x10e_c00106{left:505.500000px;}
.xff_c00106{left:509.250000px;}
.x10c_c00106{left:511.500000px;}
.x125_c00106{left:513.300000px;}
.xba_c00106{left:514.500000px;}
.xc3_c00106{left:515.550000px;}
.xc9_c00106{left:516.900000px;}
.xe6_c00106{left:518.400000px;}
.xce_c00106{left:520.500000px;}
.xd4_c00106{left:523.350000px;}
.x119_c00106{left:525.750000px;}
.x14a_c00106{left:526.800000px;}
.xf0_c00106{left:529.200000px;}
.x14d_c00106{left:530.700000px;}
.x140_c00106{left:531.750000px;}
.x100_c00106{left:532.950000px;}
.x115_c00106{left:536.100000px;}
.x13e_c00106{left:537.150000px;}
.x11f_c00106{left:539.100000px;}
.xcf_c00106{left:540.300000px;}
.x131_c00106{left:541.350000px;}
.xca_c00106{left:542.400000px;}
.xbb_c00106{left:544.350000px;}
.xc4_c00106{left:545.400000px;}
.x10f_c00106{left:546.600000px;}
.x13f_c00106{left:547.950000px;}
.x13a_c00106{left:551.850000px;}
.xd5_c00106{left:552.900000px;}
.x114_c00106{left:554.100000px;}
.xec_c00106{left:555.300000px;}
.xdd_c00106{left:557.700000px;}
.xf4_c00106{left:558.750000px;}
.xbc_c00106{left:561.600000px;}
.x126_c00106{left:564.150000px;}
.x105_c00106{left:565.950000px;}
.x11a_c00106{left:567.900000px;}
.x132_c00106{left:569.100000px;}
.xd0_c00106{left:573.000000px;}
.x129_c00106{left:574.800000px;}
.x108_c00106{left:580.650000px;}
.xcb_c00106{left:581.700000px;}
.x139_c00106{left:583.650000px;}
.x133_c00106{left:585.300000px;}
.xfa_c00106{left:588.300000px;}
.x14b_c00106{left:590.250000px;}
.xc5_c00106{left:591.450000px;}
.x149_c00106{left:593.400000px;}
.xde_c00106{left:594.450000px;}
.x101_c00106{left:596.100000px;}
.x13b_c00106{left:597.150000px;}
.xe7_c00106{left:598.350000px;}
.xfb_c00106{left:599.850000px;}
.x12d_c00106{left:602.550000px;}
.x116_c00106{left:605.700000px;}
.xf5_c00106{left:607.050000px;}
.x142_c00106{left:608.250000px;}
.xd6_c00106{left:610.200000px;}
.xbd_c00106{left:613.050000px;}
.x146_c00106{left:614.100000px;}
.x13d_c00106{left:615.600000px;}
.x148_c00106{left:617.700000px;}
.xc6_c00106{left:619.200000px;}
.x12a_c00106{left:620.550000px;}
.xdf_c00106{left:624.000000px;}
.x11b_c00106{left:627.600000px;}
.x127_c00106{left:629.250000px;}
.xe8_c00106{left:631.800000px;}
.xed_c00106{left:633.000000px;}
.xc7_c00106{left:635.100000px;}
.xf1_c00106{left:637.200000px;}
.x12e_c00106{left:638.550000px;}
.xe0_c00106{left:640.200000px;}
.xf6_c00106{left:642.300000px;}
.x14f_c00106{left:643.800000px;}
.x11c_c00106{left:645.300000px;}
.xe9_c00106{left:646.500000px;}
.xbe_c00106{left:648.000000px;}
.xd7_c00106{left:649.050000px;}
.x152_c00106{left:651.000000px;}
.x117_c00106{left:655.350000px;}
.x128_c00106{left:657.600000px;}
.x110_c00106{left:661.200000px;}
.xd8_c00106{left:662.400000px;}
.x135_c00106{left:663.900000px;}
.x12b_c00106{left:665.850000px;}
.xf7_c00106{left:676.500000px;}
.xe1_c00106{left:679.800000px;}
.x153_c00106{left:680.850000px;}
.x102_c00106{left:684.300000px;}
.xf2_c00106{left:686.850000px;}
.xee_c00106{left:688.500000px;}
.x122_c00106{left:690.000000px;}
.x14e_c00106{left:691.050000px;}
.xbf_c00106{left:692.250000px;}
.x120_c00106{left:693.300000px;}
.xd1_c00106{left:696.150000px;}
.x13c_c00106{left:697.650000px;}
.xf8_c00106{left:699.600000px;}
.x12c_c00106{left:700.800000px;}
.x155_c00106{left:702.450000px;}
.x111_c00106{left:705.450000px;}
.x123_c00106{left:707.250000px;}
.xd9_c00106{left:712.500000px;}
.x109_c00106{left:714.150000px;}
.xd2_c00106{left:716.250000px;}
.xe2_c00106{left:717.600000px;}
.x136_c00106{left:718.650000px;}
.x156_c00106{left:719.700000px;}
.xc0_c00106{left:723.600000px;}
.x12f_c00106{left:724.650000px;}
.xfc_c00106{left:728.100000px;}
.x118_c00106{left:730.500000px;}
.xda_c00106{left:735.600000px;}
.x103_c00106{left:738.300000px;}
.x124_c00106{left:739.650000px;}
.xcc_c00106{left:741.150000px;}
.xe3_c00106{left:743.100000px;}
.x106_c00106{left:744.150000px;}
.x145_c00106{left:745.500000px;}
.x130_c00106{left:747.000000px;}
.x10a_c00106{left:749.400000px;}
.x143_c00106{left:753.000000px;}
.x121_c00106{left:754.500000px;}
.xe4_c00106{left:759.600000px;}
.x11d_c00106{left:764.100000px;}
.xcd_c00106{left:766.050000px;}
.xfd_c00106{left:767.400000px;}
.x2_c00106{left:768.900000px;}
.x144_c00106{left:770.250000px;}
.xd3_c00106{left:771.300000px;}
.xc1_c00106{left:776.100000px;}
.x137_c00106{left:781.650000px;}
.x150_c00106{left:799.800000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls1_c00106{letter-spacing:0.000000pt;}
.ls0_c00106{letter-spacing:62.222222pt;}
.ws6_c00106{word-spacing:-88.888889pt;}
.ws0_c00106{word-spacing:-11.671630pt;}
.ws4_c00106{word-spacing:-7.160494pt;}
.ws1_c00106{word-spacing:-4.349015pt;}
.ws2_c00106{word-spacing:0.000000pt;}
.ws3_c00106{word-spacing:3.481953pt;}
.wsa_c00106{word-spacing:9.941520pt;}
.ws9_c00106{word-spacing:11.033429pt;}
.ws7_c00106{word-spacing:14.920635pt;}
.ws8_c00106{word-spacing:19.682540pt;}
.ws5_c00106{word-spacing:57.777778pt;}
._0_c00106{margin-left:-62.222222pt;}
._1_c00106{width:49.523810pt;}
.fs6_c00106{font-size:37.333333pt;}
.fs1_c00106{font-size:42.666667pt;}
.fs5_c00106{font-size:48.000000pt;}
.fs4_c00106{font-size:53.333333pt;}
.fs3_c00106{font-size:58.666667pt;}
.fs2_c00106{font-size:64.000000pt;}
.fs0_c00106{font-size:69.333333pt;}
.y0_c00106{bottom:0.000000pt;}
.y65_c00106{bottom:138.533333pt;}
.y64_c00106{bottom:152.666667pt;}
.y33_c00106{bottom:154.133333pt;}
.y63_c00106{bottom:166.400000pt;}
.y32_c00106{bottom:170.133333pt;}
.y62_c00106{bottom:180.800000pt;}
.y31_c00106{bottom:185.866667pt;}
.y61_c00106{bottom:192.000000pt;}
.y30_c00106{bottom:201.866667pt;}
.y2f_c00106{bottom:217.600000pt;}
.y2e_c00106{bottom:233.600000pt;}
.y60_c00106{bottom:237.333333pt;}
.y5f_c00106{bottom:245.066667pt;}
.y2d_c00106{bottom:249.866667pt;}
.y5c_c00106{bottom:257.333333pt;}
.y5e_c00106{bottom:264.266667pt;}
.y2c_c00106{bottom:265.600000pt;}
.y5b_c00106{bottom:266.266667pt;}
.y2b_c00106{bottom:284.533333pt;}
.y5a_c00106{bottom:288.000000pt;}
.y2a_c00106{bottom:297.333333pt;}
.y59_c00106{bottom:307.200000pt;}
.y29_c00106{bottom:310.133333pt;}
.y28_c00106{bottom:323.866667pt;}
.y58_c00106{bottom:327.066667pt;}
.y27_c00106{bottom:341.066667pt;}
.y57_c00106{bottom:346.533333pt;}
.y26_c00106{bottom:357.333333pt;}
.y56_c00106{bottom:367.066667pt;}
.y25_c00106{bottom:373.066667pt;}
.y24_c00106{bottom:392.933333pt;}
.y55_c00106{bottom:397.466667pt;}
.y5d_c00106{bottom:398.133333pt;}
.y23_c00106{bottom:408.933333pt;}
.y22_c00106{bottom:424.933333pt;}
.y54_c00106{bottom:429.866667pt;}
.y21_c00106{bottom:440.933333pt;}
.y53_c00106{bottom:446.133333pt;}
.y20_c00106{bottom:456.666667pt;}
.y52_c00106{bottom:465.600000pt;}
.y1f_c00106{bottom:472.666667pt;}
.y51_c00106{bottom:481.600000pt;}
.y1e_c00106{bottom:488.933333pt;}
.y50_c00106{bottom:497.866667pt;}
.y1d_c00106{bottom:504.933333pt;}
.y4f_c00106{bottom:521.333333pt;}
.y1c_c00106{bottom:528.000000pt;}
.y4e_c00106{bottom:537.466667pt;}
.y4d_c00106{bottom:553.200000pt;}
.y1b_c00106{bottom:555.866667pt;}
.y4c_c00106{bottom:569.200000pt;}
.y1a_c00106{bottom:575.733333pt;}
.y4b_c00106{bottom:585.200000pt;}
.y19_c00106{bottom:595.466667pt;}
.y4a_c00106{bottom:600.933333pt;}
.y18_c00106{bottom:611.466667pt;}
.y49_c00106{bottom:616.933333pt;}
.y17_c00106{bottom:627.200000pt;}
.y48_c00106{bottom:632.933333pt;}
.y16_c00106{bottom:643.200000pt;}
.y47_c00106{bottom:648.666667pt;}
.y15_c00106{bottom:659.200000pt;}
.y46_c00106{bottom:670.933333pt;}
.y14_c00106{bottom:675.200000pt;}
.y45_c00106{bottom:684.400000pt;}
.y13_c00106{bottom:691.200000pt;}
.y44_c00106{bottom:699.466667pt;}
.y12_c00106{bottom:708.800000pt;}
.y43_c00106{bottom:718.666667pt;}
.y11_c00106{bottom:723.200000pt;}
.y42_c00106{bottom:736.000000pt;}
.y10_c00106{bottom:739.466667pt;}
.y41_c00106{bottom:751.733333pt;}
.yf_c00106{bottom:755.466667pt;}
.ye_c00106{bottom:771.200000pt;}
.y40_c00106{bottom:775.600000pt;}
.y3f_c00106{bottom:791.333333pt;}
.yd_c00106{bottom:793.600000pt;}
.y3e_c00106{bottom:807.600000pt;}
.yc_c00106{bottom:816.933333pt;}
.y3d_c00106{bottom:823.333333pt;}
.yb_c00106{bottom:832.000000pt;}
.y3c_c00106{bottom:839.333333pt;}
.ya_c00106{bottom:848.000000pt;}
.y3b_c00106{bottom:858.533333pt;}
.y9_c00106{bottom:864.266667pt;}
.y8_c00106{bottom:880.000000pt;}
.y3a_c00106{bottom:885.466667pt;}
.y7_c00106{bottom:895.733333pt;}
.y39_c00106{bottom:905.200000pt;}
.y6_c00106{bottom:915.466667pt;}
.y38_c00106{bottom:921.866667pt;}
.y5_c00106{bottom:931.733333pt;}
.y37_c00106{bottom:937.600000pt;}
.y4_c00106{bottom:947.466667pt;}
.y36_c00106{bottom:953.600000pt;}
.y3_c00106{bottom:967.333333pt;}
.y35_c00106{bottom:973.066667pt;}
.y34_c00106{bottom:989.066667pt;}
.y2_c00106{bottom:991.333333pt;}
.y1_c00106{bottom:1013.466667pt;}
.h8_c00106{height:37.333333pt;}
.h3_c00106{height:42.666667pt;}
.h7_c00106{height:48.000000pt;}
.h6_c00106{height:53.333333pt;}
.h5_c00106{height:58.666667pt;}
.h4_c00106{height:64.000000pt;}
.h2_c00106{height:69.333333pt;}
.h0_c00106{height:1134.399984pt;}
.h1_c00106{height:1134.666667pt;}
.w1_c00106{width:847.333333pt;}
.w0_c00106{width:847.360027pt;}
.x0_c00106{left:0.000000pt;}
.x3_c00106{left:72.000000pt;}
.x22_c00106{left:73.333333pt;}
.x4d_c00106{left:74.266667pt;}
.x7d_c00106{left:76.133333pt;}
.x95_c00106{left:77.066667pt;}
.xac_c00106{left:78.666667pt;}
.x81_c00106{left:87.333333pt;}
.x2f_c00106{left:88.533333pt;}
.x42_c00106{left:90.133333pt;}
.x29_c00106{left:91.200000pt;}
.x15_c00106{left:92.133333pt;}
.x5c_c00106{left:93.066667pt;}
.x63_c00106{left:94.400000pt;}
.x89_c00106{left:96.400000pt;}
.x84_c00106{left:98.533333pt;}
.xb7_c00106{left:99.866667pt;}
.x96_c00106{left:101.733333pt;}
.xb5_c00106{left:106.533333pt;}
.x9_c00106{left:107.466667pt;}
.xa5_c00106{left:108.800000pt;}
.x10_c00106{left:109.733333pt;}
.xa0_c00106{left:112.000000pt;}
.x58_c00106{left:113.200000pt;}
.x23_c00106{left:115.866667pt;}
.x72_c00106{left:116.800000pt;}
.x97_c00106{left:120.000000pt;}
.x79_c00106{left:121.066667pt;}
.x68_c00106{left:122.800000pt;}
.x5d_c00106{left:123.733333pt;}
.x16_c00106{left:126.000000pt;}
.x2a_c00106{left:127.333333pt;}
.x6c_c00106{left:128.666667pt;}
.x46_c00106{left:129.600000pt;}
.x1c_c00106{left:130.933333pt;}
.x30_c00106{left:132.000000pt;}
.xad_c00106{left:133.466667pt;}
.xa1_c00106{left:135.066667pt;}
.x7e_c00106{left:136.266667pt;}
.xa_c00106{left:138.533333pt;}
.x4_c00106{left:140.533333pt;}
.x7f_c00106{left:142.266667pt;}
.x2b_c00106{left:144.000000pt;}
.x43_c00106{left:145.200000pt;}
.x64_c00106{left:146.933333pt;}
.xb_c00106{left:148.400000pt;}
.x92_c00106{left:149.866667pt;}
.x47_c00106{left:151.066667pt;}
.x85_c00106{left:152.266667pt;}
.x5e_c00106{left:154.800000pt;}
.x52_c00106{left:155.733333pt;}
.x37_c00106{left:157.600000pt;}
.x73_c00106{left:159.066667pt;}
.x11_c00106{left:160.266667pt;}
.x17_c00106{left:161.866667pt;}
.x80_c00106{left:163.066667pt;}
.x1d_c00106{left:164.533333pt;}
.x69_c00106{left:166.933333pt;}
.x31_c00106{left:170.133333pt;}
.x38_c00106{left:171.333333pt;}
.xae_c00106{left:173.866667pt;}
.x48_c00106{left:174.800000pt;}
.xa2_c00106{left:176.400000pt;}
.x24_c00106{left:177.333333pt;}
.x3d_c00106{left:179.333333pt;}
.x98_c00106{left:180.533333pt;}
.x8b_c00106{left:181.866667pt;}
.x18_c00106{left:183.333333pt;}
.xc_c00106{left:185.866667pt;}
.x1e_c00106{left:188.266667pt;}
.x53_c00106{left:189.333333pt;}
.xb6_c00106{left:190.800000pt;}
.x19_c00106{left:192.266667pt;}
.xb8_c00106{left:193.600000pt;}
.xa6_c00106{left:194.533333pt;}
.x5f_c00106{left:196.400000pt;}
.x49_c00106{left:200.133333pt;}
.x2c_c00106{left:202.133333pt;}
.x59_c00106{left:204.133333pt;}
.x32_c00106{left:205.066667pt;}
.x60_c00106{left:206.000000pt;}
.x54_c00106{left:207.866667pt;}
.x5_c00106{left:209.333333pt;}
.x8e_c00106{left:210.533333pt;}
.x6a_c00106{left:215.866667pt;}
.x3e_c00106{left:217.066667pt;}
.x7a_c00106{left:218.666667pt;}
.x1f_c00106{left:219.600000pt;}
.x9c_c00106{left:220.533333pt;}
.x44_c00106{left:221.466667pt;}
.x12_c00106{left:223.333333pt;}
.x99_c00106{left:224.400000pt;}
.xb2_c00106{left:226.000000pt;}
.x39_c00106{left:227.066667pt;}
.x4a_c00106{left:228.666667pt;}
.x2d_c00106{left:230.933333pt;}
.xaa_c00106{left:231.866667pt;}
.xd_c00106{left:232.933333pt;}
.x75_c00106{left:234.266667pt;}
.xa7_c00106{left:235.466667pt;}
.x65_c00106{left:236.533333pt;}
.x45_c00106{left:237.733333pt;}
.xe_c00106{left:239.600000pt;}
.x82_c00106{left:240.533333pt;}
.xa8_c00106{left:241.866667pt;}
.x1a_c00106{left:244.800000pt;}
.x8f_c00106{left:246.000000pt;}
.x9d_c00106{left:248.933333pt;}
.x20_c00106{left:250.266667pt;}
.x8c_c00106{left:253.600000pt;}
.x33_c00106{left:254.933333pt;}
.x25_c00106{left:257.066667pt;}
.x55_c00106{left:260.000000pt;}
.x3f_c00106{left:260.933333pt;}
.x4e_c00106{left:262.800000pt;}
.x34_c00106{left:264.533333pt;}
.x6_c00106{left:266.000000pt;}
.x9a_c00106{left:266.933333pt;}
.x9e_c00106{left:268.400000pt;}
.x6d_c00106{left:269.733333pt;}
.x21_c00106{left:271.066667pt;}
.x56_c00106{left:272.800000pt;}
.xab_c00106{left:274.400000pt;}
.x66_c00106{left:275.600000pt;}
.xb4_c00106{left:276.800000pt;}
.x13_c00106{left:279.600000pt;}
.x26_c00106{left:281.333333pt;}
.x76_c00106{left:282.266667pt;}
.x5a_c00106{left:283.466667pt;}
.xb3_c00106{left:284.666667pt;}
.x6b_c00106{left:286.000000pt;}
.x7_c00106{left:287.066667pt;}
.x4b_c00106{left:288.533333pt;}
.xf_c00106{left:289.866667pt;}
.x94_c00106{left:291.333333pt;}
.x6e_c00106{left:292.400000pt;}
.xa9_c00106{left:293.466667pt;}
.x1_c00106{left:294.400000pt;}
.x9b_c00106{left:296.800000pt;}
.x3a_c00106{left:298.400000pt;}
.xa3_c00106{left:300.666667pt;}
.x4f_c00106{left:303.733333pt;}
.x5b_c00106{left:307.200000pt;}
.x8_c00106{left:309.200000pt;}
.x1b_c00106{left:311.066667pt;}
.xaf_c00106{left:312.533333pt;}
.x6f_c00106{left:313.466667pt;}
.x7b_c00106{left:315.600000pt;}
.x3b_c00106{left:316.666667pt;}
.xa4_c00106{left:318.000000pt;}
.x86_c00106{left:319.200000pt;}
.x50_c00106{left:320.666667pt;}
.x83_c00106{left:321.600000pt;}
.x35_c00106{left:323.733333pt;}
.x8a_c00106{left:325.466667pt;}
.x67_c00106{left:326.400000pt;}
.xb1_c00106{left:328.933333pt;}
.x27_c00106{left:330.000000pt;}
.x4c_c00106{left:331.066667pt;}
.x93_c00106{left:332.533333pt;}
.x61_c00106{left:334.400000pt;}
.x7c_c00106{left:336.666667pt;}
.x9f_c00106{left:337.866667pt;}
.x87_c00106{left:339.333333pt;}
.x40_c00106{left:340.266667pt;}
.x77_c00106{left:341.466667pt;}
.x90_c00106{left:342.533333pt;}
.x8d_c00106{left:344.666667pt;}
.x88_c00106{left:346.666667pt;}
.x78_c00106{left:347.600000pt;}
.x70_c00106{left:348.666667pt;}
.x57_c00106{left:350.533333pt;}
.x14_c00106{left:352.000000pt;}
.x62_c00106{left:353.333333pt;}
.xb0_c00106{left:354.800000pt;}
.x41_c00106{left:356.000000pt;}
.x36_c00106{left:358.000000pt;}
.x74_c00106{left:362.000000pt;}
.x71_c00106{left:363.733333pt;}
.x91_c00106{left:364.933333pt;}
.x51_c00106{left:366.533333pt;}
.x2e_c00106{left:368.266667pt;}
.x28_c00106{left:369.333333pt;}
.x3c_c00106{left:370.400000pt;}
.x10d_c00106{left:397.466667pt;}
.xe5_c00106{left:398.400000pt;}
.xc8_c00106{left:400.000000pt;}
.x151_c00106{left:400.933333pt;}
.xea_c00106{left:407.600000pt;}
.x112_c00106{left:410.000000pt;}
.x107_c00106{left:412.800000pt;}
.xf3_c00106{left:413.733333pt;}
.xdb_c00106{left:414.800000pt;}
.xb9_c00106{left:415.733333pt;}
.x154_c00106{left:419.600000pt;}
.x113_c00106{left:423.733333pt;}
.xeb_c00106{left:427.466667pt;}
.x104_c00106{left:428.800000pt;}
.xef_c00106{left:430.400000pt;}
.x141_c00106{left:431.733333pt;}
.xdc_c00106{left:432.666667pt;}
.xc2_c00106{left:434.000000pt;}
.x14c_c00106{left:435.200000pt;}
.xf9_c00106{left:436.266667pt;}
.x138_c00106{left:438.133333pt;}
.x147_c00106{left:439.066667pt;}
.x10b_c00106{left:440.266667pt;}
.x134_c00106{left:441.600000pt;}
.xfe_c00106{left:444.666667pt;}
.x11e_c00106{left:447.200000pt;}
.x10e_c00106{left:449.333333pt;}
.xff_c00106{left:452.666667pt;}
.x10c_c00106{left:454.666667pt;}
.x125_c00106{left:456.266667pt;}
.xba_c00106{left:457.333333pt;}
.xc3_c00106{left:458.266667pt;}
.xc9_c00106{left:459.466667pt;}
.xe6_c00106{left:460.800000pt;}
.xce_c00106{left:462.666667pt;}
.xd4_c00106{left:465.200000pt;}
.x119_c00106{left:467.333333pt;}
.x14a_c00106{left:468.266667pt;}
.xf0_c00106{left:470.400000pt;}
.x14d_c00106{left:471.733333pt;}
.x140_c00106{left:472.666667pt;}
.x100_c00106{left:473.733333pt;}
.x115_c00106{left:476.533333pt;}
.x13e_c00106{left:477.466667pt;}
.x11f_c00106{left:479.200000pt;}
.xcf_c00106{left:480.266667pt;}
.x131_c00106{left:481.200000pt;}
.xca_c00106{left:482.133333pt;}
.xbb_c00106{left:483.866667pt;}
.xc4_c00106{left:484.800000pt;}
.x10f_c00106{left:485.866667pt;}
.x13f_c00106{left:487.066667pt;}
.x13a_c00106{left:490.533333pt;}
.xd5_c00106{left:491.466667pt;}
.x114_c00106{left:492.533333pt;}
.xec_c00106{left:493.600000pt;}
.xdd_c00106{left:495.733333pt;}
.xf4_c00106{left:496.666667pt;}
.xbc_c00106{left:499.200000pt;}
.x126_c00106{left:501.466667pt;}
.x105_c00106{left:503.066667pt;}
.x11a_c00106{left:504.800000pt;}
.x132_c00106{left:505.866667pt;}
.xd0_c00106{left:509.333333pt;}
.x129_c00106{left:510.933333pt;}
.x108_c00106{left:516.133333pt;}
.xcb_c00106{left:517.066667pt;}
.x139_c00106{left:518.800000pt;}
.x133_c00106{left:520.266667pt;}
.xfa_c00106{left:522.933333pt;}
.x14b_c00106{left:524.666667pt;}
.xc5_c00106{left:525.733333pt;}
.x149_c00106{left:527.466667pt;}
.xde_c00106{left:528.400000pt;}
.x101_c00106{left:529.866667pt;}
.x13b_c00106{left:530.800000pt;}
.xe7_c00106{left:531.866667pt;}
.xfb_c00106{left:533.200000pt;}
.x12d_c00106{left:535.600000pt;}
.x116_c00106{left:538.400000pt;}
.xf5_c00106{left:539.600000pt;}
.x142_c00106{left:540.666667pt;}
.xd6_c00106{left:542.400000pt;}
.xbd_c00106{left:544.933333pt;}
.x146_c00106{left:545.866667pt;}
.x13d_c00106{left:547.200000pt;}
.x148_c00106{left:549.066667pt;}
.xc6_c00106{left:550.400000pt;}
.x12a_c00106{left:551.600000pt;}
.xdf_c00106{left:554.666667pt;}
.x11b_c00106{left:557.866667pt;}
.x127_c00106{left:559.333333pt;}
.xe8_c00106{left:561.600000pt;}
.xed_c00106{left:562.666667pt;}
.xc7_c00106{left:564.533333pt;}
.xf1_c00106{left:566.400000pt;}
.x12e_c00106{left:567.600000pt;}
.xe0_c00106{left:569.066667pt;}
.xf6_c00106{left:570.933333pt;}
.x14f_c00106{left:572.266667pt;}
.x11c_c00106{left:573.600000pt;}
.xe9_c00106{left:574.666667pt;}
.xbe_c00106{left:576.000000pt;}
.xd7_c00106{left:576.933333pt;}
.x152_c00106{left:578.666667pt;}
.x117_c00106{left:582.533333pt;}
.x128_c00106{left:584.533333pt;}
.x110_c00106{left:587.733333pt;}
.xd8_c00106{left:588.800000pt;}
.x135_c00106{left:590.133333pt;}
.x12b_c00106{left:591.866667pt;}
.xf7_c00106{left:601.333333pt;}
.xe1_c00106{left:604.266667pt;}
.x153_c00106{left:605.200000pt;}
.x102_c00106{left:608.266667pt;}
.xf2_c00106{left:610.533333pt;}
.xee_c00106{left:612.000000pt;}
.x122_c00106{left:613.333333pt;}
.x14e_c00106{left:614.266667pt;}
.xbf_c00106{left:615.333333pt;}
.x120_c00106{left:616.266667pt;}
.xd1_c00106{left:618.800000pt;}
.x13c_c00106{left:620.133333pt;}
.xf8_c00106{left:621.866667pt;}
.x12c_c00106{left:622.933333pt;}
.x155_c00106{left:624.400000pt;}
.x111_c00106{left:627.066667pt;}
.x123_c00106{left:628.666667pt;}
.xd9_c00106{left:633.333333pt;}
.x109_c00106{left:634.800000pt;}
.xd2_c00106{left:636.666667pt;}
.xe2_c00106{left:637.866667pt;}
.x136_c00106{left:638.800000pt;}
.x156_c00106{left:639.733333pt;}
.xc0_c00106{left:643.200000pt;}
.x12f_c00106{left:644.133333pt;}
.xfc_c00106{left:647.200000pt;}
.x118_c00106{left:649.333333pt;}
.xda_c00106{left:653.866667pt;}
.x103_c00106{left:656.266667pt;}
.x124_c00106{left:657.466667pt;}
.xcc_c00106{left:658.800000pt;}
.xe3_c00106{left:660.533333pt;}
.x106_c00106{left:661.466667pt;}
.x145_c00106{left:662.666667pt;}
.x130_c00106{left:664.000000pt;}
.x10a_c00106{left:666.133333pt;}
.x143_c00106{left:669.333333pt;}
.x121_c00106{left:670.666667pt;}
.xe4_c00106{left:675.200000pt;}
.x11d_c00106{left:679.200000pt;}
.xcd_c00106{left:680.933333pt;}
.xfd_c00106{left:682.133333pt;}
.x2_c00106{left:683.466667pt;}
.x144_c00106{left:684.666667pt;}
.xd3_c00106{left:685.600000pt;}
.xc1_c00106{left:689.866667pt;}
.x137_c00106{left:694.800000pt;}
.x150_c00106{left:710.933333pt;}
}





/* 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_c00107 {
    display:none;
  }
  .loading-indicator_c00107.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00107 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_c00107 { 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_c00107" -> "#page-container .classname_c00107")
 */
.pf_c00107 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00107 { /* 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_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00107 { /* 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_c00107 { /* 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_c00107 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00107 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00107 {overflow:visible;}
  }
}
.c_c00107 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00107 { /* 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_c00107:after { /* webkit #35443 */
  content: '';
}
.t_c00107:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00107 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 */
}
.__c00107 { /* 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_c00107 { /* info for Javascript */
  display:none;
}
.l_c00107 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00107 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00107 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00107: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_c00107 {
    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_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00107.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_c00107 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00107;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.000000;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;}
.mbf_c00107{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mba_c00107{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m95_c00107{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00107{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00107{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m86_c00107{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00107{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00107{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00107{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m110_c00107{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00107{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00107{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00107{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m31_c00107{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00107{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mab_c00107{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00107{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00107{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m33_c00107{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m71_c00107{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.maa_c00107{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m101_c00107{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m106_c00107{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.mac_c00107{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00107{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00107{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00107{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mee_c00107{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00107{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m75_c00107{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m74_c00107{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m77_c00107{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m17_c00107{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00107{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m105_c00107{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00107{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00107{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00107{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m90_c00107{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m79_c00107{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me9_c00107{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00107{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m103_c00107{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m20_c00107{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00107{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m47_c00107{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00107{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.meb_c00107{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m38_c00107{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m99_c00107{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00107{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m27_c00107{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00107{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00107{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00107{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00107{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00107{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me0_c00107{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00107{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m73_c00107{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m83_c00107{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m97_c00107{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00107{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m66_c00107{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00107{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m59_c00107{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m94_c00107{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00107{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00107{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00107{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m25_c00107{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md1_c00107{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00107{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m30_c00107{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00107{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mce_c00107{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00107{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m76_c00107{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m91_c00107{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m57_c00107{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mca_c00107{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md_c00107{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m12_c00107{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m40_c00107{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md6_c00107{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mda_c00107{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m42_c00107{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00107{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m70_c00107{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00107{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.maf_c00107{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00107{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00107{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00107{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00107{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3_c00107{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00107{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m107_c00107{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m69_c00107{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00107{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00107{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m68_c00107{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00107{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m100_c00107{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00107{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m114_c00107{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00107{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m119_c00107{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mae_c00107{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m39_c00107{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md0_c00107{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m72_c00107{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00107{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00107{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m34_c00107{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00107{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00107{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m19_c00107{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00107{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00107{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6_c00107{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m13_c00107{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00107{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00107{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m61_c00107{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00107{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m44_c00107{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m120_c00107{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00107{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.med_c00107{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8_c00107{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m96_c00107{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m121_c00107{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00107{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m85_c00107{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me1_c00107{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00107{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00107{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00107{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m21_c00107{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m67_c00107{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m45_c00107{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m108_c00107{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m37_c00107{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mea_c00107{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00107{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me8_c00107{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md8_c00107{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m50_c00107{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m52_c00107{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me6_c00107{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00107{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m48_c00107{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m87_c00107{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md7_c00107{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00107{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m51_c00107{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.me_c00107{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m11_c00107{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00107{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2_c00107{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m41_c00107{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00107{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10_c00107{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00107{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m24_c00107{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00107{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m98_c00107{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m53_c00107{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00107{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mad_c00107{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00107{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me2_c00107{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00107{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00107{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m26_c00107{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00107{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m23_c00107{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00107{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m43_c00107{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00107{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00107{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4_c00107{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00107{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md9_c00107{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00107{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m109_c00107{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00107{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00107{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00107{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m15_c00107{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m54_c00107{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mec_c00107{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00107{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mef_c00107{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00107{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md5_c00107{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00107{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00107{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md2_c00107{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m22_c00107{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb_c00107{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m60_c00107{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m102_c00107{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m28_c00107{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00107{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md4_c00107{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m113_c00107{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me5_c00107{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9_c00107{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m64_c00107{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m55_c00107{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5_c00107{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m29_c00107{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00107{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m82_c00107{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00107{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m65_c00107{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00107{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me4_c00107{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m58_c00107{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m49_c00107{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.md3_c00107{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me3_c00107{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m56_c00107{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m14_c00107{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00107{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m18_c00107{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00107{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00107{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00107{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00107{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00107{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m78_c00107{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m36_c00107{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00107{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m63_c00107{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m62_c00107{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m32_c00107{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mde_c00107{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m117_c00107{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m104_c00107{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me7_c00107{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc_c00107{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00107{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma_c00107{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m93_c00107{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m111_c00107{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00107{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00107{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m89_c00107{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00107{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00107{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m88_c00107{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf_c00107{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m16_c00107{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00107{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00107{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00107{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00107{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00107{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00107{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00107{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m35_c00107{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m116_c00107{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00107{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00107{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00107{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00107{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00107{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m118_c00107{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m92_c00107{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mff_c00107{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7_c00107{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00107{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00107{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m81_c00107{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00107{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00107{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00107{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m115_c00107{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00107{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m46_c00107{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00107{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.m84_c00107{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00107{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m112_c00107{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00107{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c00107{transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);}
.m80_c00107{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls0_c00107{letter-spacing:0.000000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{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__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00107{word-spacing:-10.087420px;}
.ws0_c00107{word-spacing:-3.600724px;}
.wsf_c00107{word-spacing:-2.953437px;}
.wsd_c00107{word-spacing:-2.634146px;}
.ws1_c00107{word-spacing:-0.131579px;}
.ws10_c00107{word-spacing:0.000000px;}
.ws2_c00107{word-spacing:4.899471px;}
.wsa_c00107{word-spacing:6.052632px;}
.ws9_c00107{word-spacing:16.785714px;}
.ws6_c00107{word-spacing:19.994638px;}
.ws8_c00107{word-spacing:22.142857px;}
.ws7_c00107{word-spacing:25.714286px;}
.ws5_c00107{word-spacing:26.428954px;}
.ws3_c00107{word-spacing:34.471850px;}
.ws4_c00107{word-spacing:39.750000px;}
.wsc_c00107{word-spacing:43.923664px;}
.wsb_c00107{word-spacing:55.374046px;}
._0_c00107{width:59.285714px;}
.fc0_c00107{color:transparent;}
.fs0_c00107{font-size:48.000000px;}
.fs5_c00107{font-size:54.000000px;}
.fs2_c00107{font-size:60.000000px;}
.fs3_c00107{font-size:66.000000px;}
.fs4_c00107{font-size:72.000000px;}
.fs1_c00107{font-size:84.000000px;}
.y0_c00107{bottom:0.000000px;}
.y65_c00107{bottom:179.250000px;}
.y31_c00107{bottom:180.750000px;}
.y30_c00107{bottom:195.150000px;}
.y64_c00107{bottom:197.250000px;}
.y2f_c00107{bottom:208.800000px;}
.y63_c00107{bottom:218.100000px;}
.y2e_c00107{bottom:223.950000px;}
.y62_c00107{bottom:232.500000px;}
.y2d_c00107{bottom:239.400000px;}
.y61_c00107{bottom:253.050000px;}
.y2c_c00107{bottom:265.950000px;}
.y60_c00107{bottom:271.050000px;}
.y2b_c00107{bottom:283.200000px;}
.y5f_c00107{bottom:289.350000px;}
.y2a_c00107{bottom:301.200000px;}
.y5e_c00107{bottom:307.050000px;}
.y29_c00107{bottom:318.900000px;}
.y5d_c00107{bottom:329.700000px;}
.y28_c00107{bottom:336.600000px;}
.y5c_c00107{bottom:347.700000px;}
.y27_c00107{bottom:363.600000px;}
.y5b_c00107{bottom:365.400000px;}
.y26_c00107{bottom:381.300000px;}
.y5a_c00107{bottom:387.000000px;}
.y25_c00107{bottom:399.300000px;}
.y59_c00107{bottom:404.700000px;}
.y24_c00107{bottom:417.300000px;}
.y58_c00107{bottom:430.500000px;}
.y23_c00107{bottom:435.300000px;}
.y57_c00107{bottom:452.850000px;}
.y22_c00107{bottom:453.300000px;}
.y56_c00107{bottom:470.850000px;}
.y21_c00107{bottom:471.300000px;}
.y20_c00107{bottom:488.550000px;}
.y55_c00107{bottom:488.700000px;}
.y1f_c00107{bottom:506.550000px;}
.y54_c00107{bottom:506.700000px;}
.y53_c00107{bottom:524.700000px;}
.y1e_c00107{bottom:541.500000px;}
.y52_c00107{bottom:542.400000px;}
.y51_c00107{bottom:560.400000px;}
.y1d_c00107{bottom:577.050000px;}
.y50_c00107{bottom:578.400000px;}
.y1c_c00107{bottom:595.350000px;}
.y4f_c00107{bottom:596.400000px;}
.y1b_c00107{bottom:613.350000px;}
.y4e_c00107{bottom:614.100000px;}
.y1a_c00107{bottom:631.050000px;}
.y4d_c00107{bottom:632.100000px;}
.y19_c00107{bottom:648.750000px;}
.y4c_c00107{bottom:650.100000px;}
.y18_c00107{bottom:667.050000px;}
.y4b_c00107{bottom:672.450000px;}
.y17_c00107{bottom:684.300000px;}
.y4a_c00107{bottom:690.450000px;}
.y49_c00107{bottom:708.450000px;}
.y16_c00107{bottom:720.300000px;}
.y48_c00107{bottom:726.450000px;}
.y15_c00107{bottom:747.000000px;}
.y47_c00107{bottom:748.800000px;}
.y14_c00107{bottom:765.300000px;}
.y46_c00107{bottom:766.800000px;}
.y13_c00107{bottom:783.300000px;}
.y45_c00107{bottom:789.300000px;}
.y12_c00107{bottom:801.300000px;}
.y44_c00107{bottom:807.300000px;}
.y11_c00107{bottom:819.300000px;}
.y43_c00107{bottom:825.300000px;}
.y42_c00107{bottom:843.300000px;}
.y10_c00107{bottom:846.000000px;}
.y41_c00107{bottom:861.000000px;}
.yf_c00107{bottom:864.000000px;}
.y40_c00107{bottom:879.000000px;}
.ye_c00107{bottom:889.950000px;}
.y3f_c00107{bottom:897.000000px;}
.yd_c00107{bottom:909.000000px;}
.y3e_c00107{bottom:915.000000px;}
.yc_c00107{bottom:926.250000px;}
.y3d_c00107{bottom:933.000000px;}
.y3c_c00107{bottom:951.000000px;}
.yb_c00107{bottom:952.650000px;}
.y3b_c00107{bottom:969.000000px;}
.ya_c00107{bottom:970.950000px;}
.y3a_c00107{bottom:987.000000px;}
.y9_c00107{bottom:992.850000px;}
.y39_c00107{bottom:1004.700000px;}
.y8_c00107{bottom:1014.900000px;}
.y38_c00107{bottom:1022.700000px;}
.y7_c00107{bottom:1033.950000px;}
.y37_c00107{bottom:1044.750000px;}
.y6_c00107{bottom:1054.800000px;}
.y36_c00107{bottom:1059.450000px;}
.y35_c00107{bottom:1072.650000px;}
.y5_c00107{bottom:1073.850000px;}
.y34_c00107{bottom:1088.550000px;}
.y4_c00107{bottom:1095.600000px;}
.y33_c00107{bottom:1102.650000px;}
.y3_c00107{bottom:1113.900000px;}
.y32_c00107{bottom:1118.850000px;}
.y1_c00107{bottom:1140.150000px;}
.y2_c00107{bottom:1141.650000px;}
.h2_c00107{height:48.000000px;}
.h7_c00107{height:54.000000px;}
.h4_c00107{height:60.000000px;}
.h5_c00107{height:66.000000px;}
.h6_c00107{height:72.000000px;}
.h3_c00107{height:84.000000px;}
.h0_c00107{height:1273.320007px;}
.h1_c00107{height:1273.500000px;}
.w1_c00107{width:953.250000px;}
.w0_c00107{width:953.280030px;}
.x0_c00107{left:0.000000px;}
.x4a_c00107{left:176.400000px;}
.x1_c00107{left:178.200000px;}
.x88_c00107{left:190.650000px;}
.x52_c00107{left:193.650000px;}
.x31_c00107{left:194.700000px;}
.xa_c00107{left:196.500000px;}
.x8b_c00107{left:204.750000px;}
.x4d_c00107{left:212.100000px;}
.x3_c00107{left:214.500000px;}
.x60_c00107{left:215.700000px;}
.x67_c00107{left:220.200000px;}
.x53_c00107{left:221.400000px;}
.x7b_c00107{left:222.450000px;}
.x48_c00107{left:223.500000px;}
.x6b_c00107{left:226.650000px;}
.x32_c00107{left:227.850000px;}
.x75_c00107{left:230.850000px;}
.x86_c00107{left:236.250000px;}
.x14_c00107{left:237.300000px;}
.x36_c00107{left:239.400000px;}
.x3d_c00107{left:240.900000px;}
.x54_c00107{left:242.700000px;}
.x79_c00107{left:244.950000px;}
.x40_c00107{left:246.450000px;}
.x37_c00107{left:248.700000px;}
.x6f_c00107{left:253.350000px;}
.x24_c00107{left:255.000000px;}
.x2a_c00107{left:256.350000px;}
.x61_c00107{left:257.400000px;}
.x19_c00107{left:259.500000px;}
.x7e_c00107{left:261.600000px;}
.x6c_c00107{left:262.950000px;}
.x21_c00107{left:264.900000px;}
.x33_c00107{left:267.150000px;}
.x4b_c00107{left:268.650000px;}
.xf_c00107{left:271.800000px;}
.x3b_c00107{left:273.150000px;}
.x4_c00107{left:275.700000px;}
.x76_c00107{left:276.900000px;}
.x7a_c00107{left:278.850000px;}
.x5b_c00107{left:281.250000px;}
.x15_c00107{left:283.050000px;}
.x68_c00107{left:286.800000px;}
.x8c_c00107{left:288.600000px;}
.x1a_c00107{left:289.800000px;}
.x5_c00107{left:291.600000px;}
.x72_c00107{left:292.800000px;}
.x2b_c00107{left:294.450000px;}
.x87_c00107{left:295.650000px;}
.x8d_c00107{left:297.900000px;}
.x65_c00107{left:299.850000px;}
.x77_c00107{left:305.700000px;}
.x81_c00107{left:308.100000px;}
.x4e_c00107{left:311.100000px;}
.x55_c00107{left:312.150000px;}
.x2c_c00107{left:313.950000px;}
.x16_c00107{left:315.150000px;}
.x4c_c00107{left:319.800000px;}
.x49_c00107{left:321.000000px;}
.x10_c00107{left:322.500000px;}
.x66_c00107{left:324.000000px;}
.x22_c00107{left:325.800000px;}
.x5f_c00107{left:328.950000px;}
.x41_c00107{left:330.000000px;}
.x38_c00107{left:333.750000px;}
.x62_c00107{left:335.550000px;}
.x4f_c00107{left:336.900000px;}
.x1b_c00107{left:338.100000px;}
.x73_c00107{left:339.600000px;}
.x6_c00107{left:340.950000px;}
.x89_c00107{left:343.200000px;}
.x23_c00107{left:345.300000px;}
.x34_c00107{left:346.350000px;}
.x11_c00107{left:347.700000px;}
.x42_c00107{left:350.550000px;}
.x45_c00107{left:353.850000px;}
.xb_c00107{left:357.150000px;}
.x25_c00107{left:358.350000px;}
.x7f_c00107{left:361.050000px;}
.x56_c00107{left:365.400000px;}
.x1c_c00107{left:367.950000px;}
.x5c_c00107{left:369.900000px;}
.x78_c00107{left:372.600000px;}
.x26_c00107{left:374.550000px;}
.x17_c00107{left:375.600000px;}
.x2d_c00107{left:379.050000px;}
.x39_c00107{left:380.850000px;}
.x1d_c00107{left:384.150000px;}
.x3e_c00107{left:386.400000px;}
.x7c_c00107{left:392.400000px;}
.x18_c00107{left:395.700000px;}
.x46_c00107{left:397.050000px;}
.x3a_c00107{left:399.600000px;}
.x6d_c00107{left:400.800000px;}
.x7_c00107{left:401.850000px;}
.xc_c00107{left:402.900000px;}
.x12_c00107{left:406.800000px;}
.x2e_c00107{left:408.900000px;}
.x57_c00107{left:411.450000px;}
.x70_c00107{left:412.950000px;}
.x80_c00107{left:415.350000px;}
.x27_c00107{left:417.750000px;}
.x82_c00107{left:419.250000px;}
.x8a_c00107{left:420.300000px;}
.x2_c00107{left:423.000000px;}
.xd_c00107{left:424.500000px;}
.x5d_c00107{left:426.150000px;}
.x84_c00107{left:427.200000px;}
.x63_c00107{left:428.400000px;}
.x58_c00107{left:430.200000px;}
.x1e_c00107{left:433.050000px;}
.x8_c00107{left:434.550000px;}
.x71_c00107{left:437.100000px;}
.x8e_c00107{left:439.050000px;}
.x47_c00107{left:440.250000px;}
.x50_c00107{left:441.300000px;}
.x28_c00107{left:444.750000px;}
.x5e_c00107{left:449.250000px;}
.x7d_c00107{left:451.050000px;}
.x3f_c00107{left:452.700000px;}
.x2f_c00107{left:455.400000px;}
.x43_c00107{left:457.050000px;}
.x13_c00107{left:460.500000px;}
.x6e_c00107{left:461.700000px;}
.x8f_c00107{left:462.900000px;}
.x69_c00107{left:465.750000px;}
.x9_c00107{left:468.000000px;}
.x83_c00107{left:470.400000px;}
.x1f_c00107{left:472.650000px;}
.x51_c00107{left:476.250000px;}
.x59_c00107{left:479.100000px;}
.x3c_c00107{left:480.900000px;}
.x35_c00107{left:482.850000px;}
.x74_c00107{left:484.650000px;}
.x64_c00107{left:486.750000px;}
.x44_c00107{left:489.450000px;}
.x29_c00107{left:491.850000px;}
.x20_c00107{left:494.250000px;}
.xe_c00107{left:496.200000px;}
.x6a_c00107{left:499.200000px;}
.x85_c00107{left:500.550000px;}
.x30_c00107{left:502.200000px;}
.x5a_c00107{left:506.400000px;}
.x122_c00107{left:529.950000px;}
.x107_c00107{left:531.750000px;}
.xb7_c00107{left:534.300000px;}
.x132_c00107{left:544.650000px;}
.x12f_c00107{left:545.700000px;}
.x99_c00107{left:548.250000px;}
.xf6_c00107{left:549.900000px;}
.xe6_c00107{left:551.250000px;}
.xbb_c00107{left:552.300000px;}
.x90_c00107{left:563.400000px;}
.xcf_c00107{left:565.650000px;}
.x124_c00107{left:567.000000px;}
.xfd_c00107{left:568.050000px;}
.xfb_c00107{left:569.700000px;}
.xd8_c00107{left:573.000000px;}
.x133_c00107{left:574.200000px;}
.xbc_c00107{left:576.450000px;}
.x118_c00107{left:578.400000px;}
.x104_c00107{left:580.650000px;}
.x129_c00107{left:583.500000px;}
.xa9_c00107{left:584.700000px;}
.xcb_c00107{left:586.350000px;}
.x11c_c00107{left:587.850000px;}
.xde_c00107{left:589.350000px;}
.x9a_c00107{left:590.700000px;}
.xfc_c00107{left:592.050000px;}
.xee_c00107{left:594.150000px;}
.xc2_c00107{left:595.200000px;}
.xd3_c00107{left:598.950000px;}
.x10e_c00107{left:600.600000px;}
.xaa_c00107{left:603.450000px;}
.xaf_c00107{left:605.400000px;}
.xcc_c00107{left:606.450000px;}
.x10a_c00107{left:607.650000px;}
.xc8_c00107{left:610.350000px;}
.xe7_c00107{left:611.700000px;}
.xbd_c00107{left:612.750000px;}
.xd9_c00107{left:614.400000px;}
.x9b_c00107{left:616.200000px;}
.x11d_c00107{left:617.400000px;}
.xd4_c00107{left:619.500000px;}
.x101_c00107{left:621.450000px;}
.xb8_c00107{left:622.800000px;}
.xd0_c00107{left:624.750000px;}
.x91_c00107{left:626.400000px;}
.x130_c00107{left:628.800000px;}
.xcd_c00107{left:629.850000px;}
.x119_c00107{left:630.900000px;}
.xb6_c00107{left:634.800000px;}
.xdf_c00107{left:637.200000px;}
.x10b_c00107{left:638.250000px;}
.xe9_c00107{left:639.450000px;}
.x12a_c00107{left:640.800000px;}
.x105_c00107{left:642.600000px;}
.x92_c00107{left:645.900000px;}
.xc3_c00107{left:649.200000px;}
.xab_c00107{left:650.250000px;}
.xda_c00107{left:651.450000px;}
.xea_c00107{left:654.600000px;}
.xef_c00107{left:655.650000px;}
.xb2_c00107{left:656.700000px;}
.xe0_c00107{left:658.500000px;}
.xf7_c00107{left:660.750000px;}
.xf8_c00107{left:662.850000px;}
.xb3_c00107{left:664.200000px;}
.xb0_c00107{left:666.600000px;}
.xc4_c00107{left:667.950000px;}
.x106_c00107{left:669.600000px;}
.xb4_c00107{left:671.100000px;}
.x9c_c00107{left:672.300000px;}
.xbe_c00107{left:673.650000px;}
.x127_c00107{left:675.150000px;}
.xac_c00107{left:677.550000px;}
.xb1_c00107{left:679.950000px;}
.x9d_c00107{left:683.400000px;}
.x125_c00107{left:684.450000px;}
.xd5_c00107{left:686.400000px;}
.x131_c00107{left:688.200000px;}
.x12b_c00107{left:690.450000px;}
.xad_c00107{left:691.650000px;}
.xdb_c00107{left:694.950000px;}
.x114_c00107{left:697.050000px;}
.x123_c00107{left:698.550000px;}
.x9e_c00107{left:699.900000px;}
.x103_c00107{left:704.100000px;}
.x9f_c00107{left:706.050000px;}
.xfe_c00107{left:708.150000px;}
.xe1_c00107{left:709.650000px;}
.xeb_c00107{left:711.450000px;}
.xa0_c00107{left:713.550000px;}
.xc5_c00107{left:715.500000px;}
.x93_c00107{left:718.200000px;}
.x108_c00107{left:719.250000px;}
.xa1_c00107{left:720.450000px;}
.xd6_c00107{left:724.200000px;}
.x128_c00107{left:725.400000px;}
.xf2_c00107{left:726.750000px;}
.x94_c00107{left:728.700000px;}
.xe2_c00107{left:729.750000px;}
.x11a_c00107{left:730.950000px;}
.x102_c00107{left:732.300000px;}
.x115_c00107{left:733.350000px;}
.xa2_c00107{left:734.850000px;}
.xe8_c00107{left:738.000000px;}
.x112_c00107{left:739.050000px;}
.xc9_c00107{left:740.400000px;}
.xae_c00107{left:742.800000px;}
.x10c_c00107{left:744.300000px;}
.xf0_c00107{left:746.700000px;}
.xa3_c00107{left:749.550000px;}
.xe3_c00107{left:751.050000px;}
.xa4_c00107{left:756.750000px;}
.xdc_c00107{left:758.250000px;}
.xf9_c00107{left:760.800000px;}
.x126_c00107{left:762.150000px;}
.xbf_c00107{left:763.350000px;}
.xa5_c00107{left:764.700000px;}
.xff_c00107{left:766.050000px;}
.xf1_c00107{left:767.250000px;}
.x134_c00107{left:768.750000px;}
.x136_c00107{left:769.950000px;}
.x95_c00107{left:772.650000px;}
.xd7_c00107{left:774.300000px;}
.xf3_c00107{left:775.650000px;}
.xc6_c00107{left:777.450000px;}
.xec_c00107{left:780.600000px;}
.x11e_c00107{left:782.550000px;}
.x111_c00107{left:783.600000px;}
.x116_c00107{left:785.550000px;}
.x100_c00107{left:786.600000px;}
.x96_c00107{left:789.900000px;}
.x12c_c00107{left:792.000000px;}
.xdd_c00107{left:794.850000px;}
.x11f_c00107{left:796.950000px;}
.xa6_c00107{left:798.600000px;}
.xd1_c00107{left:800.100000px;}
.xe4_c00107{left:801.450000px;}
.xb9_c00107{left:803.550000px;}
.xf4_c00107{left:804.750000px;}
.x11b_c00107{left:806.250000px;}
.x12d_c00107{left:807.450000px;}
.x10f_c00107{left:808.500000px;}
.xce_c00107{left:809.700000px;}
.x117_c00107{left:812.100000px;}
.xba_c00107{left:814.050000px;}
.x135_c00107{left:815.550000px;}
.xfa_c00107{left:818.100000px;}
.x97_c00107{left:821.250000px;}
.xed_c00107{left:823.050000px;}
.xe5_c00107{left:825.600000px;}
.x120_c00107{left:826.800000px;}
.xc0_c00107{left:827.850000px;}
.xa7_c00107{left:829.950000px;}
.x109_c00107{left:833.100000px;}
.x110_c00107{left:834.750000px;}
.xc7_c00107{left:836.100000px;}
.xd2_c00107{left:838.950000px;}
.x113_c00107{left:840.750000px;}
.xca_c00107{left:841.950000px;}
.xf5_c00107{left:846.900000px;}
.xc1_c00107{left:848.700000px;}
.xb5_c00107{left:852.150000px;}
.x121_c00107{left:853.500000px;}
.x98_c00107{left:855.750000px;}
.xa8_c00107{left:857.700000px;}
.x12e_c00107{left:858.900000px;}
.x10d_c00107{left:862.350000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls0_c00107{letter-spacing:0.000000pt;}
.wse_c00107{word-spacing:-8.966596pt;}
.ws0_c00107{word-spacing:-3.200643pt;}
.wsf_c00107{word-spacing:-2.625277pt;}
.wsd_c00107{word-spacing:-2.341463pt;}
.ws1_c00107{word-spacing:-0.116959pt;}
.ws10_c00107{word-spacing:0.000000pt;}
.ws2_c00107{word-spacing:4.355085pt;}
.wsa_c00107{word-spacing:5.380117pt;}
.ws9_c00107{word-spacing:14.920635pt;}
.ws6_c00107{word-spacing:17.773012pt;}
.ws8_c00107{word-spacing:19.682540pt;}
.ws7_c00107{word-spacing:22.857143pt;}
.ws5_c00107{word-spacing:23.492404pt;}
.ws3_c00107{word-spacing:30.641644pt;}
.ws4_c00107{word-spacing:35.333333pt;}
.wsc_c00107{word-spacing:39.043257pt;}
.wsb_c00107{word-spacing:49.221374pt;}
._0_c00107{width:52.698413pt;}
.fs0_c00107{font-size:42.666667pt;}
.fs5_c00107{font-size:48.000000pt;}
.fs2_c00107{font-size:53.333333pt;}
.fs3_c00107{font-size:58.666667pt;}
.fs4_c00107{font-size:64.000000pt;}
.fs1_c00107{font-size:74.666667pt;}
.y0_c00107{bottom:0.000000pt;}
.y65_c00107{bottom:159.333333pt;}
.y31_c00107{bottom:160.666667pt;}
.y30_c00107{bottom:173.466667pt;}
.y64_c00107{bottom:175.333333pt;}
.y2f_c00107{bottom:185.600000pt;}
.y63_c00107{bottom:193.866667pt;}
.y2e_c00107{bottom:199.066667pt;}
.y62_c00107{bottom:206.666667pt;}
.y2d_c00107{bottom:212.800000pt;}
.y61_c00107{bottom:224.933333pt;}
.y2c_c00107{bottom:236.400000pt;}
.y60_c00107{bottom:240.933333pt;}
.y2b_c00107{bottom:251.733333pt;}
.y5f_c00107{bottom:257.200000pt;}
.y2a_c00107{bottom:267.733333pt;}
.y5e_c00107{bottom:272.933333pt;}
.y29_c00107{bottom:283.466667pt;}
.y5d_c00107{bottom:293.066667pt;}
.y28_c00107{bottom:299.200000pt;}
.y5c_c00107{bottom:309.066667pt;}
.y27_c00107{bottom:323.200000pt;}
.y5b_c00107{bottom:324.800000pt;}
.y26_c00107{bottom:338.933333pt;}
.y5a_c00107{bottom:344.000000pt;}
.y25_c00107{bottom:354.933333pt;}
.y59_c00107{bottom:359.733333pt;}
.y24_c00107{bottom:370.933333pt;}
.y58_c00107{bottom:382.666667pt;}
.y23_c00107{bottom:386.933333pt;}
.y57_c00107{bottom:402.533333pt;}
.y22_c00107{bottom:402.933333pt;}
.y56_c00107{bottom:418.533333pt;}
.y21_c00107{bottom:418.933333pt;}
.y20_c00107{bottom:434.266667pt;}
.y55_c00107{bottom:434.400000pt;}
.y1f_c00107{bottom:450.266667pt;}
.y54_c00107{bottom:450.400000pt;}
.y53_c00107{bottom:466.400000pt;}
.y1e_c00107{bottom:481.333333pt;}
.y52_c00107{bottom:482.133333pt;}
.y51_c00107{bottom:498.133333pt;}
.y1d_c00107{bottom:512.933333pt;}
.y50_c00107{bottom:514.133333pt;}
.y1c_c00107{bottom:529.200000pt;}
.y4f_c00107{bottom:530.133333pt;}
.y1b_c00107{bottom:545.200000pt;}
.y4e_c00107{bottom:545.866667pt;}
.y1a_c00107{bottom:560.933333pt;}
.y4d_c00107{bottom:561.866667pt;}
.y19_c00107{bottom:576.666667pt;}
.y4c_c00107{bottom:577.866667pt;}
.y18_c00107{bottom:592.933333pt;}
.y4b_c00107{bottom:597.733333pt;}
.y17_c00107{bottom:608.266667pt;}
.y4a_c00107{bottom:613.733333pt;}
.y49_c00107{bottom:629.733333pt;}
.y16_c00107{bottom:640.266667pt;}
.y48_c00107{bottom:645.733333pt;}
.y15_c00107{bottom:664.000000pt;}
.y47_c00107{bottom:665.600000pt;}
.y14_c00107{bottom:680.266667pt;}
.y46_c00107{bottom:681.600000pt;}
.y13_c00107{bottom:696.266667pt;}
.y45_c00107{bottom:701.600000pt;}
.y12_c00107{bottom:712.266667pt;}
.y44_c00107{bottom:717.600000pt;}
.y11_c00107{bottom:728.266667pt;}
.y43_c00107{bottom:733.600000pt;}
.y42_c00107{bottom:749.600000pt;}
.y10_c00107{bottom:752.000000pt;}
.y41_c00107{bottom:765.333333pt;}
.yf_c00107{bottom:768.000000pt;}
.y40_c00107{bottom:781.333333pt;}
.ye_c00107{bottom:791.066667pt;}
.y3f_c00107{bottom:797.333333pt;}
.yd_c00107{bottom:808.000000pt;}
.y3e_c00107{bottom:813.333333pt;}
.yc_c00107{bottom:823.333333pt;}
.y3d_c00107{bottom:829.333333pt;}
.y3c_c00107{bottom:845.333333pt;}
.yb_c00107{bottom:846.800000pt;}
.y3b_c00107{bottom:861.333333pt;}
.ya_c00107{bottom:863.066667pt;}
.y3a_c00107{bottom:877.333333pt;}
.y9_c00107{bottom:882.533333pt;}
.y39_c00107{bottom:893.066667pt;}
.y8_c00107{bottom:902.133333pt;}
.y38_c00107{bottom:909.066667pt;}
.y7_c00107{bottom:919.066667pt;}
.y37_c00107{bottom:928.666667pt;}
.y6_c00107{bottom:937.600000pt;}
.y36_c00107{bottom:941.733333pt;}
.y35_c00107{bottom:953.466667pt;}
.y5_c00107{bottom:954.533333pt;}
.y34_c00107{bottom:967.600000pt;}
.y4_c00107{bottom:973.866667pt;}
.y33_c00107{bottom:980.133333pt;}
.y3_c00107{bottom:990.133333pt;}
.y32_c00107{bottom:994.533333pt;}
.y1_c00107{bottom:1013.466667pt;}
.y2_c00107{bottom:1014.800000pt;}
.h2_c00107{height:42.666667pt;}
.h7_c00107{height:48.000000pt;}
.h4_c00107{height:53.333333pt;}
.h5_c00107{height:58.666667pt;}
.h6_c00107{height:64.000000pt;}
.h3_c00107{height:74.666667pt;}
.h0_c00107{height:1131.840007pt;}
.h1_c00107{height:1132.000000pt;}
.w1_c00107{width:847.333333pt;}
.w0_c00107{width:847.360027pt;}
.x0_c00107{left:0.000000pt;}
.x4a_c00107{left:156.800000pt;}
.x1_c00107{left:158.400000pt;}
.x88_c00107{left:169.466667pt;}
.x52_c00107{left:172.133333pt;}
.x31_c00107{left:173.066667pt;}
.xa_c00107{left:174.666667pt;}
.x8b_c00107{left:182.000000pt;}
.x4d_c00107{left:188.533333pt;}
.x3_c00107{left:190.666667pt;}
.x60_c00107{left:191.733333pt;}
.x67_c00107{left:195.733333pt;}
.x53_c00107{left:196.800000pt;}
.x7b_c00107{left:197.733333pt;}
.x48_c00107{left:198.666667pt;}
.x6b_c00107{left:201.466667pt;}
.x32_c00107{left:202.533333pt;}
.x75_c00107{left:205.200000pt;}
.x86_c00107{left:210.000000pt;}
.x14_c00107{left:210.933333pt;}
.x36_c00107{left:212.800000pt;}
.x3d_c00107{left:214.133333pt;}
.x54_c00107{left:215.733333pt;}
.x79_c00107{left:217.733333pt;}
.x40_c00107{left:219.066667pt;}
.x37_c00107{left:221.066667pt;}
.x6f_c00107{left:225.200000pt;}
.x24_c00107{left:226.666667pt;}
.x2a_c00107{left:227.866667pt;}
.x61_c00107{left:228.800000pt;}
.x19_c00107{left:230.666667pt;}
.x7e_c00107{left:232.533333pt;}
.x6c_c00107{left:233.733333pt;}
.x21_c00107{left:235.466667pt;}
.x33_c00107{left:237.466667pt;}
.x4b_c00107{left:238.800000pt;}
.xf_c00107{left:241.600000pt;}
.x3b_c00107{left:242.800000pt;}
.x4_c00107{left:245.066667pt;}
.x76_c00107{left:246.133333pt;}
.x7a_c00107{left:247.866667pt;}
.x5b_c00107{left:250.000000pt;}
.x15_c00107{left:251.600000pt;}
.x68_c00107{left:254.933333pt;}
.x8c_c00107{left:256.533333pt;}
.x1a_c00107{left:257.600000pt;}
.x5_c00107{left:259.200000pt;}
.x72_c00107{left:260.266667pt;}
.x2b_c00107{left:261.733333pt;}
.x87_c00107{left:262.800000pt;}
.x8d_c00107{left:264.800000pt;}
.x65_c00107{left:266.533333pt;}
.x77_c00107{left:271.733333pt;}
.x81_c00107{left:273.866667pt;}
.x4e_c00107{left:276.533333pt;}
.x55_c00107{left:277.466667pt;}
.x2c_c00107{left:279.066667pt;}
.x16_c00107{left:280.133333pt;}
.x4c_c00107{left:284.266667pt;}
.x49_c00107{left:285.333333pt;}
.x10_c00107{left:286.666667pt;}
.x66_c00107{left:288.000000pt;}
.x22_c00107{left:289.600000pt;}
.x5f_c00107{left:292.400000pt;}
.x41_c00107{left:293.333333pt;}
.x38_c00107{left:296.666667pt;}
.x62_c00107{left:298.266667pt;}
.x4f_c00107{left:299.466667pt;}
.x1b_c00107{left:300.533333pt;}
.x73_c00107{left:301.866667pt;}
.x6_c00107{left:303.066667pt;}
.x89_c00107{left:305.066667pt;}
.x23_c00107{left:306.933333pt;}
.x34_c00107{left:307.866667pt;}
.x11_c00107{left:309.066667pt;}
.x42_c00107{left:311.600000pt;}
.x45_c00107{left:314.533333pt;}
.xb_c00107{left:317.466667pt;}
.x25_c00107{left:318.533333pt;}
.x7f_c00107{left:320.933333pt;}
.x56_c00107{left:324.800000pt;}
.x1c_c00107{left:327.066667pt;}
.x5c_c00107{left:328.800000pt;}
.x78_c00107{left:331.200000pt;}
.x26_c00107{left:332.933333pt;}
.x17_c00107{left:333.866667pt;}
.x2d_c00107{left:336.933333pt;}
.x39_c00107{left:338.533333pt;}
.x1d_c00107{left:341.466667pt;}
.x3e_c00107{left:343.466667pt;}
.x7c_c00107{left:348.800000pt;}
.x18_c00107{left:351.733333pt;}
.x46_c00107{left:352.933333pt;}
.x3a_c00107{left:355.200000pt;}
.x6d_c00107{left:356.266667pt;}
.x7_c00107{left:357.200000pt;}
.xc_c00107{left:358.133333pt;}
.x12_c00107{left:361.600000pt;}
.x2e_c00107{left:363.466667pt;}
.x57_c00107{left:365.733333pt;}
.x70_c00107{left:367.066667pt;}
.x80_c00107{left:369.200000pt;}
.x27_c00107{left:371.333333pt;}
.x82_c00107{left:372.666667pt;}
.x8a_c00107{left:373.600000pt;}
.x2_c00107{left:376.000000pt;}
.xd_c00107{left:377.333333pt;}
.x5d_c00107{left:378.800000pt;}
.x84_c00107{left:379.733333pt;}
.x63_c00107{left:380.800000pt;}
.x58_c00107{left:382.400000pt;}
.x1e_c00107{left:384.933333pt;}
.x8_c00107{left:386.266667pt;}
.x71_c00107{left:388.533333pt;}
.x8e_c00107{left:390.266667pt;}
.x47_c00107{left:391.333333pt;}
.x50_c00107{left:392.266667pt;}
.x28_c00107{left:395.333333pt;}
.x5e_c00107{left:399.333333pt;}
.x7d_c00107{left:400.933333pt;}
.x3f_c00107{left:402.400000pt;}
.x2f_c00107{left:404.800000pt;}
.x43_c00107{left:406.266667pt;}
.x13_c00107{left:409.333333pt;}
.x6e_c00107{left:410.400000pt;}
.x8f_c00107{left:411.466667pt;}
.x69_c00107{left:414.000000pt;}
.x9_c00107{left:416.000000pt;}
.x83_c00107{left:418.133333pt;}
.x1f_c00107{left:420.133333pt;}
.x51_c00107{left:423.333333pt;}
.x59_c00107{left:425.866667pt;}
.x3c_c00107{left:427.466667pt;}
.x35_c00107{left:429.200000pt;}
.x74_c00107{left:430.800000pt;}
.x64_c00107{left:432.666667pt;}
.x44_c00107{left:435.066667pt;}
.x29_c00107{left:437.200000pt;}
.x20_c00107{left:439.333333pt;}
.xe_c00107{left:441.066667pt;}
.x6a_c00107{left:443.733333pt;}
.x85_c00107{left:444.933333pt;}
.x30_c00107{left:446.400000pt;}
.x5a_c00107{left:450.133333pt;}
.x122_c00107{left:471.066667pt;}
.x107_c00107{left:472.666667pt;}
.xb7_c00107{left:474.933333pt;}
.x132_c00107{left:484.133333pt;}
.x12f_c00107{left:485.066667pt;}
.x99_c00107{left:487.333333pt;}
.xf6_c00107{left:488.800000pt;}
.xe6_c00107{left:490.000000pt;}
.xbb_c00107{left:490.933333pt;}
.x90_c00107{left:500.800000pt;}
.xcf_c00107{left:502.800000pt;}
.x124_c00107{left:504.000000pt;}
.xfd_c00107{left:504.933333pt;}
.xfb_c00107{left:506.400000pt;}
.xd8_c00107{left:509.333333pt;}
.x133_c00107{left:510.400000pt;}
.xbc_c00107{left:512.400000pt;}
.x118_c00107{left:514.133333pt;}
.x104_c00107{left:516.133333pt;}
.x129_c00107{left:518.666667pt;}
.xa9_c00107{left:519.733333pt;}
.xcb_c00107{left:521.200000pt;}
.x11c_c00107{left:522.533333pt;}
.xde_c00107{left:523.866667pt;}
.x9a_c00107{left:525.066667pt;}
.xfc_c00107{left:526.266667pt;}
.xee_c00107{left:528.133333pt;}
.xc2_c00107{left:529.066667pt;}
.xd3_c00107{left:532.400000pt;}
.x10e_c00107{left:533.866667pt;}
.xaa_c00107{left:536.400000pt;}
.xaf_c00107{left:538.133333pt;}
.xcc_c00107{left:539.066667pt;}
.x10a_c00107{left:540.133333pt;}
.xc8_c00107{left:542.533333pt;}
.xe7_c00107{left:543.733333pt;}
.xbd_c00107{left:544.666667pt;}
.xd9_c00107{left:546.133333pt;}
.x9b_c00107{left:547.733333pt;}
.x11d_c00107{left:548.800000pt;}
.xd4_c00107{left:550.666667pt;}
.x101_c00107{left:552.400000pt;}
.xb8_c00107{left:553.600000pt;}
.xd0_c00107{left:555.333333pt;}
.x91_c00107{left:556.800000pt;}
.x130_c00107{left:558.933333pt;}
.xcd_c00107{left:559.866667pt;}
.x119_c00107{left:560.800000pt;}
.xb6_c00107{left:564.266667pt;}
.xdf_c00107{left:566.400000pt;}
.x10b_c00107{left:567.333333pt;}
.xe9_c00107{left:568.400000pt;}
.x12a_c00107{left:569.600000pt;}
.x105_c00107{left:571.200000pt;}
.x92_c00107{left:574.133333pt;}
.xc3_c00107{left:577.066667pt;}
.xab_c00107{left:578.000000pt;}
.xda_c00107{left:579.066667pt;}
.xea_c00107{left:581.866667pt;}
.xef_c00107{left:582.800000pt;}
.xb2_c00107{left:583.733333pt;}
.xe0_c00107{left:585.333333pt;}
.xf7_c00107{left:587.333333pt;}
.xf8_c00107{left:589.200000pt;}
.xb3_c00107{left:590.400000pt;}
.xb0_c00107{left:592.533333pt;}
.xc4_c00107{left:593.733333pt;}
.x106_c00107{left:595.200000pt;}
.xb4_c00107{left:596.533333pt;}
.x9c_c00107{left:597.600000pt;}
.xbe_c00107{left:598.800000pt;}
.x127_c00107{left:600.133333pt;}
.xac_c00107{left:602.266667pt;}
.xb1_c00107{left:604.400000pt;}
.x9d_c00107{left:607.466667pt;}
.x125_c00107{left:608.400000pt;}
.xd5_c00107{left:610.133333pt;}
.x131_c00107{left:611.733333pt;}
.x12b_c00107{left:613.733333pt;}
.xad_c00107{left:614.800000pt;}
.xdb_c00107{left:617.733333pt;}
.x114_c00107{left:619.600000pt;}
.x123_c00107{left:620.933333pt;}
.x9e_c00107{left:622.133333pt;}
.x103_c00107{left:625.866667pt;}
.x9f_c00107{left:627.600000pt;}
.xfe_c00107{left:629.466667pt;}
.xe1_c00107{left:630.800000pt;}
.xeb_c00107{left:632.400000pt;}
.xa0_c00107{left:634.266667pt;}
.xc5_c00107{left:636.000000pt;}
.x93_c00107{left:638.400000pt;}
.x108_c00107{left:639.333333pt;}
.xa1_c00107{left:640.400000pt;}
.xd6_c00107{left:643.733333pt;}
.x128_c00107{left:644.800000pt;}
.xf2_c00107{left:646.000000pt;}
.x94_c00107{left:647.733333pt;}
.xe2_c00107{left:648.666667pt;}
.x11a_c00107{left:649.733333pt;}
.x102_c00107{left:650.933333pt;}
.x115_c00107{left:651.866667pt;}
.xa2_c00107{left:653.200000pt;}
.xe8_c00107{left:656.000000pt;}
.x112_c00107{left:656.933333pt;}
.xc9_c00107{left:658.133333pt;}
.xae_c00107{left:660.266667pt;}
.x10c_c00107{left:661.600000pt;}
.xf0_c00107{left:663.733333pt;}
.xa3_c00107{left:666.266667pt;}
.xe3_c00107{left:667.600000pt;}
.xa4_c00107{left:672.666667pt;}
.xdc_c00107{left:674.000000pt;}
.xf9_c00107{left:676.266667pt;}
.x126_c00107{left:677.466667pt;}
.xbf_c00107{left:678.533333pt;}
.xa5_c00107{left:679.733333pt;}
.xff_c00107{left:680.933333pt;}
.xf1_c00107{left:682.000000pt;}
.x134_c00107{left:683.333333pt;}
.x136_c00107{left:684.400000pt;}
.x95_c00107{left:686.800000pt;}
.xd7_c00107{left:688.266667pt;}
.xf3_c00107{left:689.466667pt;}
.xc6_c00107{left:691.066667pt;}
.xec_c00107{left:693.866667pt;}
.x11e_c00107{left:695.600000pt;}
.x111_c00107{left:696.533333pt;}
.x116_c00107{left:698.266667pt;}
.x100_c00107{left:699.200000pt;}
.x96_c00107{left:702.133333pt;}
.x12c_c00107{left:704.000000pt;}
.xdd_c00107{left:706.533333pt;}
.x11f_c00107{left:708.400000pt;}
.xa6_c00107{left:709.866667pt;}
.xd1_c00107{left:711.200000pt;}
.xe4_c00107{left:712.400000pt;}
.xb9_c00107{left:714.266667pt;}
.xf4_c00107{left:715.333333pt;}
.x11b_c00107{left:716.666667pt;}
.x12d_c00107{left:717.733333pt;}
.x10f_c00107{left:718.666667pt;}
.xce_c00107{left:719.733333pt;}
.x117_c00107{left:721.866667pt;}
.xba_c00107{left:723.600000pt;}
.x135_c00107{left:724.933333pt;}
.xfa_c00107{left:727.200000pt;}
.x97_c00107{left:730.000000pt;}
.xed_c00107{left:731.600000pt;}
.xe5_c00107{left:733.866667pt;}
.x120_c00107{left:734.933333pt;}
.xc0_c00107{left:735.866667pt;}
.xa7_c00107{left:737.733333pt;}
.x109_c00107{left:740.533333pt;}
.x110_c00107{left:742.000000pt;}
.xc7_c00107{left:743.200000pt;}
.xd2_c00107{left:745.733333pt;}
.x113_c00107{left:747.333333pt;}
.xca_c00107{left:748.400000pt;}
.xf5_c00107{left:752.800000pt;}
.xc1_c00107{left:754.400000pt;}
.xb5_c00107{left:757.466667pt;}
.x121_c00107{left:758.666667pt;}
.x98_c00107{left:760.666667pt;}
.xa8_c00107{left:762.400000pt;}
.x12e_c00107{left:763.466667pt;}
.x10d_c00107{left:766.533333pt;}
}





/* 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_c00108 {
    display:none;
  }
  .loading-indicator_c00108.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00108 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_c00108 { 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_c00108" -> "#page-container .classname_c00108")
 */
.pf_c00108 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00108 { /* 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_c00108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00108 { /* 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_c00108 { /* 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_c00108 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00108 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00108 {overflow:visible;}
  }
}
.c_c00108 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00108 { /* 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_c00108:after { /* webkit #35443 */
  content: '';
}
.t_c00108:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00108 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 */
}
.__c00108 { /* 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_c00108 { /* info for Javascript */
  display:none;
}
.l_c00108 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00108 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00108 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00108: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_c00108 {
    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_c00108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00108.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_c00108 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00108;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.000000;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;}
.m1_c00108{transform:matrix(0.019000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00108{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00108{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00108{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mce_c00108{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m48_c00108{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00108{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9_c00108{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00108{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00108{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00108{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00108{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00108{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00108{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md6_c00108{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.me2_c00108{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00108{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m87_c00108{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m96_c00108{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m33_c00108{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m36_c00108{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m52_c00108{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00108{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m92_c00108{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m7_c00108{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m81_c00108{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m97_c00108{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m35_c00108{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m57_c00108{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m103_c00108{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m45_c00108{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md_c00108{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me6_c00108{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m68_c00108{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00108{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00108{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m70_c00108{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me0_c00108{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00108{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00108{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m25_c00108{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m104_c00108{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00108{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00108{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00108{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m24_c00108{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00108{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00108{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00108{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m34_c00108{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m18_c00108{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m78_c00108{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me1_c00108{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.me7_c00108{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10_c00108{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00108{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m51_c00108{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00108{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m6_c00108{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00108{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m65_c00108{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m53_c00108{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md5_c00108{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00108{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m105_c00108{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00108{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00108{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00108{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.med_c00108{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00108{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m38_c00108{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00108{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00108{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m23_c00108{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m102_c00108{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00108{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m19_c00108{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m41_c00108{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m62_c00108{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00108{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m73_c00108{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m90_c00108{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m37_c00108{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00108{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m13_c00108{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00108{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m31_c00108{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00108{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m27_c00108{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m88_c00108{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me4_c00108{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.md2_c00108{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00108{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m28_c00108{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m47_c00108{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m21_c00108{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00108{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m79_c00108{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me5_c00108{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m69_c00108{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m11_c00108{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m26_c00108{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m67_c00108{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m61_c00108{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m30_c00108{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00108{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00108{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m89_c00108{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf_c00108{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mec_c00108{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00108{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m50_c00108{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00108{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00108{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mda_c00108{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00108{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00108{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m71_c00108{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m74_c00108{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00108{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00108{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m66_c00108{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m20_c00108{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00108{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00108{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00108{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00108{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m17_c00108{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md7_c00108{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00108{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00108{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00108{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m32_c00108{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m91_c00108{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md8_c00108{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8_c00108{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00108{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma_c00108{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00108{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m76_c00108{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md0_c00108{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m46_c00108{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mb_c00108{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00108{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00108{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00108{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00108{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00108{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m40_c00108{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00108{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00108{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m42_c00108{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00108{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me9_c00108{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m63_c00108{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12_c00108{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00108{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m86_c00108{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m84_c00108{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mba_c00108{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m80_c00108{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m56_c00108{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mad_c00108{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m82_c00108{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00108{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m64_c00108{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m16_c00108{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00108{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00108{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5_c00108{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc_c00108{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00108{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m93_c00108{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.maa_c00108{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me_c00108{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mef_c00108{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m22_c00108{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m15_c00108{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00108{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m85_c00108{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00108{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00108{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00108{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00108{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m94_c00108{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m29_c00108{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.meb_c00108{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00108{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md1_c00108{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00108{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m44_c00108{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00108{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m55_c00108{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00108{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md9_c00108{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m54_c00108{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me3_c00108{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md4_c00108{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00108{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m106_c00108{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);}
.m49_c00108{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m83_c00108{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00108{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m95_c00108{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00108{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00108{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mee_c00108{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00108{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3_c00108{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m99_c00108{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00108{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me8_c00108{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00108{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00108{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00108{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mde_c00108{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00108{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00108{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00108{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m43_c00108{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m60_c00108{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00108{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00108{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m77_c00108{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mae_c00108{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00108{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mca_c00108{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m101_c00108{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00108{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mea_c00108{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mab_c00108{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m75_c00108{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00108{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00108{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m72_c00108{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00108{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00108{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mac_c00108{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m59_c00108{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m39_c00108{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m98_c00108{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00108{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00108{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00108{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m14_c00108{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mff_c00108{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00108{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00108{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00108{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00108{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00108{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00108{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00108{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m0_c00108{transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);}
.m100_c00108{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00108{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.md3_c00108{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00108{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m58_c00108{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00108{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.maf_c00108{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{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__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00108{word-spacing:-7.500000px;}
.ws0_c00108{word-spacing:-4.102564px;}
.ws5_c00108{word-spacing:0.000000px;}
.ws4_c00108{word-spacing:13.557692px;}
.ws1_c00108{word-spacing:20.625000px;}
.ws3_c00108{word-spacing:514.375000px;}
.fc0_c00108{color:transparent;}
.fs5_c00108{font-size:24.000000px;}
.fs6_c00108{font-size:36.000000px;}
.fs3_c00108{font-size:54.000000px;}
.fs2_c00108{font-size:60.000000px;}
.fs1_c00108{font-size:66.000000px;}
.fs4_c00108{font-size:72.000000px;}
.fs0_c00108{font-size:114.000000px;}
.y0_c00108{bottom:0.000000px;}
.y5a_c00108{bottom:169.650000px;}
.y60_c00108{bottom:171.300000px;}
.y59_c00108{bottom:187.950000px;}
.y5f_c00108{bottom:192.900000px;}
.y58_c00108{bottom:206.250000px;}
.y5e_c00108{bottom:211.650000px;}
.y57_c00108{bottom:224.250000px;}
.y5d_c00108{bottom:243.300000px;}
.y56_c00108{bottom:246.300000px;}
.y55_c00108{bottom:264.300000px;}
.y54_c00108{bottom:282.300000px;}
.y53_c00108{bottom:304.500000px;}
.y52_c00108{bottom:322.500000px;}
.y5c_c00108{bottom:334.500000px;}
.y51_c00108{bottom:342.000000px;}
.y5b_c00108{bottom:356.400000px;}
.y50_c00108{bottom:360.300000px;}
.y4f_c00108{bottom:378.000000px;}
.y28_c00108{bottom:378.750000px;}
.y4e_c00108{bottom:396.000000px;}
.y27_c00108{bottom:397.500000px;}
.y4d_c00108{bottom:414.000000px;}
.y26_c00108{bottom:415.800000px;}
.y4c_c00108{bottom:431.700000px;}
.y25_c00108{bottom:433.800000px;}
.y4b_c00108{bottom:449.700000px;}
.y24_c00108{bottom:451.800000px;}
.y4a_c00108{bottom:467.700000px;}
.y23_c00108{bottom:469.800000px;}
.y49_c00108{bottom:485.700000px;}
.y22_c00108{bottom:487.800000px;}
.y48_c00108{bottom:503.700000px;}
.y21_c00108{bottom:505.800000px;}
.y47_c00108{bottom:521.700000px;}
.y20_c00108{bottom:523.800000px;}
.y46_c00108{bottom:539.700000px;}
.y1f_c00108{bottom:541.800000px;}
.y45_c00108{bottom:557.700000px;}
.y1e_c00108{bottom:559.800000px;}
.y1d_c00108{bottom:577.800000px;}
.y44_c00108{bottom:578.550000px;}
.y1c_c00108{bottom:595.800000px;}
.y43_c00108{bottom:597.900000px;}
.y1b_c00108{bottom:613.800000px;}
.y42_c00108{bottom:617.400000px;}
.y41_c00108{bottom:635.400000px;}
.y1a_c00108{bottom:637.500000px;}
.y19_c00108{bottom:657.450000px;}
.y40_c00108{bottom:657.750000px;}
.y18_c00108{bottom:676.500000px;}
.y3f_c00108{bottom:676.800000px;}
.y3e_c00108{bottom:693.300000px;}
.y17_c00108{bottom:694.800000px;}
.y16_c00108{bottom:712.050000px;}
.y3d_c00108{bottom:732.600000px;}
.y15_c00108{bottom:738.450000px;}
.y3c_c00108{bottom:754.950000px;}
.y14_c00108{bottom:757.200000px;}
.y13_c00108{bottom:775.200000px;}
.y3b_c00108{bottom:777.900000px;}
.y12_c00108{bottom:793.500000px;}
.y3a_c00108{bottom:796.200000px;}
.y39_c00108{bottom:813.900000px;}
.y11_c00108{bottom:814.350000px;}
.y38_c00108{bottom:832.200000px;}
.y10_c00108{bottom:833.400000px;}
.y37_c00108{bottom:849.900000px;}
.yf_c00108{bottom:863.550000px;}
.y36_c00108{bottom:867.900000px;}
.ye_c00108{bottom:882.300000px;}
.y35_c00108{bottom:885.900000px;}
.yd_c00108{bottom:900.300000px;}
.y34_c00108{bottom:907.500000px;}
.yc_c00108{bottom:921.900000px;}
.y33_c00108{bottom:926.250000px;}
.yb_c00108{bottom:944.250000px;}
.ya_c00108{bottom:962.250000px;}
.y9_c00108{bottom:980.250000px;}
.y32_c00108{bottom:997.950000px;}
.y8_c00108{bottom:998.250000px;}
.y31_c00108{bottom:1010.550000px;}
.y30_c00108{bottom:1015.950000px;}
.y7_c00108{bottom:1016.550000px;}
.y2f_c00108{bottom:1033.950000px;}
.y6_c00108{bottom:1034.550000px;}
.y2e_c00108{bottom:1045.800000px;}
.y2d_c00108{bottom:1051.500000px;}
.y5_c00108{bottom:1052.250000px;}
.y2c_c00108{bottom:1063.800000px;}
.y2b_c00108{bottom:1069.950000px;}
.y4_c00108{bottom:1070.550000px;}
.y2a_c00108{bottom:1087.950000px;}
.y3_c00108{bottom:1088.550000px;}
.y2_c00108{bottom:1106.250000px;}
.y29_c00108{bottom:1108.500000px;}
.y1_c00108{bottom:1137.300000px;}
.h7_c00108{height:24.000000px;}
.h8_c00108{height:36.000000px;}
.h5_c00108{height:54.000000px;}
.h4_c00108{height:60.000000px;}
.h3_c00108{height:66.000000px;}
.h6_c00108{height:72.000000px;}
.h2_c00108{height:114.000000px;}
.h0_c00108{height:1273.320007px;}
.h1_c00108{height:1273.500000px;}
.w1_c00108{width:953.250000px;}
.w0_c00108{width:953.280030px;}
.x0_c00108{left:0.000000px;}
.x66_c00108{left:74.100000px;}
.x3d_c00108{left:75.900000px;}
.x12b_c00108{left:76.950000px;}
.x121_c00108{left:78.150000px;}
.x4a_c00108{left:96.450000px;}
.x4_c00108{left:97.950000px;}
.xe_c00108{left:99.000000px;}
.x5c_c00108{left:104.400000px;}
.x28_c00108{left:114.750000px;}
.x127_c00108{left:116.100000px;}
.x4b_c00108{left:117.750000px;}
.x21_c00108{left:121.050000px;}
.x5_c00108{left:123.450000px;}
.x5d_c00108{left:124.500000px;}
.x4d_c00108{left:126.750000px;}
.x45_c00108{left:128.550000px;}
.x87_c00108{left:131.100000px;}
.x73_c00108{left:133.350000px;}
.x4c_c00108{left:134.700000px;}
.x89_c00108{left:135.750000px;}
.x6f_c00108{left:136.950000px;}
.x2f_c00108{left:138.150000px;}
.x56_c00108{left:140.250000px;}
.x129_c00108{left:141.300000px;}
.x29_c00108{left:142.500000px;}
.x8d_c00108{left:144.300000px;}
.x6b_c00108{left:146.850000px;}
.x3e_c00108{left:150.900000px;}
.xf_c00108{left:153.750000px;}
.x1b_c00108{left:155.250000px;}
.x15_c00108{left:156.600000px;}
.x2a_c00108{left:158.400000px;}
.x122_c00108{left:159.450000px;}
.x30_c00108{left:161.550000px;}
.x22_c00108{left:162.750000px;}
.x7c_c00108{left:165.000000px;}
.x6_c00108{left:166.350000px;}
.x3b_c00108{left:168.000000px;}
.x6c_c00108{left:169.200000px;}
.x81_c00108{left:171.450000px;}
.x36_c00108{left:173.250000px;}
.x3f_c00108{left:177.150000px;}
.x10_c00108{left:178.200000px;}
.x16_c00108{left:180.000000px;}
.x7d_c00108{left:181.500000px;}
.x23_c00108{left:182.850000px;}
.x125_c00108{left:187.800000px;}
.x31_c00108{left:189.300000px;}
.x3c_c00108{left:191.700000px;}
.x11_c00108{left:195.900000px;}
.x57_c00108{left:198.150000px;}
.x74_c00108{left:201.300000px;}
.x53_c00108{left:202.350000px;}
.x67_c00108{left:204.150000px;}
.x12a_c00108{left:206.100000px;}
.x60_c00108{left:208.500000px;}
.x46_c00108{left:210.900000px;}
.x8a_c00108{left:212.400000px;}
.x7e_c00108{left:214.650000px;}
.x4e_c00108{left:217.800000px;}
.x17_c00108{left:220.350000px;}
.x7_c00108{left:225.000000px;}
.x6d_c00108{left:228.300000px;}
.x40_c00108{left:230.100000px;}
.x24_c00108{left:233.550000px;}
.x1c_c00108{left:235.500000px;}
.x58_c00108{left:236.700000px;}
.x68_c00108{left:238.050000px;}
.x70_c00108{left:239.550000px;}
.x8b_c00108{left:241.500000px;}
.x2b_c00108{left:244.800000px;}
.x61_c00108{left:246.000000px;}
.x78_c00108{left:247.200000px;}
.x12_c00108{left:248.850000px;}
.x8_c00108{left:250.200000px;}
.x82_c00108{left:251.250000px;}
.x41_c00108{left:253.200000px;}
.x54_c00108{left:254.250000px;}
.x1d_c00108{left:258.900000px;}
.x69_c00108{left:259.950000px;}
.x76_c00108{left:261.300000px;}
.x32_c00108{left:263.850000px;}
.x9_c00108{left:266.100000px;}
.x71_c00108{left:267.300000px;}
.x42_c00108{left:269.100000px;}
.x4f_c00108{left:272.550000px;}
.x123_c00108{left:273.900000px;}
.x64_c00108{left:276.750000px;}
.x5e_c00108{left:277.950000px;}
.x18_c00108{left:279.450000px;}
.x13_c00108{left:281.250000px;}
.x59_c00108{left:283.800000px;}
.x50_c00108{left:285.150000px;}
.x25_c00108{left:287.550000px;}
.x7f_c00108{left:291.300000px;}
.x37_c00108{left:292.500000px;}
.x43_c00108{left:294.600000px;}
.x1e_c00108{left:295.950000px;}
.x79_c00108{left:297.150000px;}
.x83_c00108{left:303.750000px;}
.x47_c00108{left:305.250000px;}
.x128_c00108{left:306.300000px;}
.x26_c00108{left:309.450000px;}
.x51_c00108{left:311.100000px;}
.xa_c00108{left:313.200000px;}
.x33_c00108{left:315.000000px;}
.x19_c00108{left:318.000000px;}
.x7a_c00108{left:319.500000px;}
.x5a_c00108{left:321.300000px;}
.xb_c00108{left:322.500000px;}
.x1_c00108{left:324.000000px;}
.x84_c00108{left:325.050000px;}
.x48_c00108{left:327.600000px;}
.x2c_c00108{left:328.650000px;}
.x88_c00108{left:330.750000px;}
.x38_c00108{left:335.400000px;}
.x1f_c00108{left:337.050000px;}
.x62_c00108{left:340.650000px;}
.xc_c00108{left:342.300000px;}
.x65_c00108{left:348.000000px;}
.x7b_c00108{left:351.150000px;}
.x63_c00108{left:353.250000px;}
.x34_c00108{left:354.300000px;}
.x27_c00108{left:355.950000px;}
.x20_c00108{left:357.900000px;}
.x39_c00108{left:360.900000px;}
.x72_c00108{left:362.700000px;}
.x44_c00108{left:365.550000px;}
.x6a_c00108{left:366.600000px;}
.x5b_c00108{left:368.850000px;}
.x52_c00108{left:370.800000px;}
.x8c_c00108{left:372.450000px;}
.x5f_c00108{left:373.650000px;}
.x126_c00108{left:374.700000px;}
.x55_c00108{left:376.050000px;}
.x75_c00108{left:377.250000px;}
.x1a_c00108{left:379.200000px;}
.x2d_c00108{left:381.150000px;}
.x14_c00108{left:382.650000px;}
.x85_c00108{left:383.700000px;}
.x6e_c00108{left:387.150000px;}
.x80_c00108{left:388.950000px;}
.x35_c00108{left:391.050000px;}
.x8e_c00108{left:395.100000px;}
.x2e_c00108{left:398.400000px;}
.x77_c00108{left:399.450000px;}
.x3a_c00108{left:400.500000px;}
.x49_c00108{left:403.200000px;}
.xd_c00108{left:405.000000px;}
.x86_c00108{left:406.800000px;}
.x103_c00108{left:437.700000px;}
.x8f_c00108{left:439.500000px;}
.x94_c00108{left:440.700000px;}
.xfe_c00108{left:455.850000px;}
.xf1_c00108{left:456.900000px;}
.x9d_c00108{left:458.100000px;}
.xa7_c00108{left:466.500000px;}
.xee_c00108{left:470.400000px;}
.x12f_c00108{left:474.450000px;}
.xd1_c00108{left:475.500000px;}
.xdb_c00108{left:477.000000px;}
.xf5_c00108{left:480.600000px;}
.xfa_c00108{left:482.400000px;}
.xaf_c00108{left:486.000000px;}
.xe0_c00108{left:487.200000px;}
.x10b_c00108{left:488.550000px;}
.xea_c00108{left:491.850000px;}
.xe8_c00108{left:492.900000px;}
.xf6_c00108{left:495.300000px;}
.x104_c00108{left:496.350000px;}
.x115_c00108{left:498.900000px;}
.x90_c00108{left:499.950000px;}
.xec_c00108{left:501.450000px;}
.xbd_c00108{left:504.150000px;}
.xa8_c00108{left:505.800000px;}
.x124_c00108{left:507.000000px;}
.xe1_c00108{left:508.050000px;}
.xce_c00108{left:510.000000px;}
.x11c_c00108{left:512.250000px;}
.xdc_c00108{left:513.300000px;}
.x10a_c00108{left:514.500000px;}
.x9e_c00108{left:518.550000px;}
.xd2_c00108{left:520.200000px;}
.xf0_c00108{left:522.000000px;}
.xa3_c00108{left:523.950000px;}
.x12c_c00108{left:525.900000px;}
.x95_c00108{left:528.900000px;}
.x116_c00108{left:531.300000px;}
.xed_c00108{left:532.800000px;}
.xa9_c00108{left:536.400000px;}
.x105_c00108{left:537.750000px;}
.x91_c00108{left:539.250000px;}
.xd6_c00108{left:540.450000px;}
.x119_c00108{left:542.250000px;}
.xff_c00108{left:543.750000px;}
.x112_c00108{left:545.550000px;}
.x10f_c00108{left:548.550000px;}
.xe2_c00108{left:551.250000px;}
.x106_c00108{left:556.050000px;}
.x92_c00108{left:558.000000px;}
.xb0_c00108{left:560.550000px;}
.x107_c00108{left:561.600000px;}
.xc6_c00108{left:563.700000px;}
.x10e_c00108{left:565.650000px;}
.xdd_c00108{left:567.000000px;}
.x11e_c00108{left:568.800000px;}
.xaa_c00108{left:569.850000px;}
.x96_c00108{left:572.850000px;}
.xb5_c00108{left:575.100000px;}
.xcf_c00108{left:578.400000px;}
.xb1_c00108{left:580.050000px;}
.x97_c00108{left:582.150000px;}
.xef_c00108{left:584.550000px;}
.x12e_c00108{left:587.100000px;}
.xbe_c00108{left:590.850000px;}
.xca_c00108{left:591.900000px;}
.x9f_c00108{left:593.850000px;}
.x11a_c00108{left:596.250000px;}
.x11d_c00108{left:597.900000px;}
.xe9_c00108{left:599.850000px;}
.xba_c00108{left:601.800000px;}
.xab_c00108{left:603.750000px;}
.xf7_c00108{left:605.400000px;}
.xd7_c00108{left:606.600000px;}
.x110_c00108{left:608.250000px;}
.x93_c00108{left:609.900000px;}
.xb6_c00108{left:611.100000px;}
.xa4_c00108{left:612.450000px;}
.x100_c00108{left:615.750000px;}
.xc2_c00108{left:618.900000px;}
.x98_c00108{left:620.700000px;}
.xd3_c00108{left:622.500000px;}
.x10c_c00108{left:624.300000px;}
.xb2_c00108{left:626.100000px;}
.xe3_c00108{left:628.950000px;}
.xac_c00108{left:630.000000px;}
.xcb_c00108{left:631.800000px;}
.x12d_c00108{left:635.700000px;}
.xb7_c00108{left:637.050000px;}
.xc3_c00108{left:639.450000px;}
.x118_c00108{left:641.100000px;}
.xf2_c00108{left:643.650000px;}
.x2_c00108{left:644.700000px;}
.xe6_c00108{left:647.700000px;}
.xa5_c00108{left:650.550000px;}
.x99_c00108{left:652.050000px;}
.x11f_c00108{left:653.700000px;}
.xc4_c00108{left:657.450000px;}
.xa0_c00108{left:658.650000px;}
.xd8_c00108{left:660.300000px;}
.x113_c00108{left:662.550000px;}
.x10d_c00108{left:663.600000px;}
.x101_c00108{left:664.650000px;}
.x11b_c00108{left:665.700000px;}
.xb3_c00108{left:667.500000px;}
.xad_c00108{left:670.650000px;}
.xbf_c00108{left:673.950000px;}
.xbb_c00108{left:676.650000px;}
.x9a_c00108{left:679.800000px;}
.xcc_c00108{left:682.950000px;}
.xf3_c00108{left:684.750000px;}
.xb8_c00108{left:685.950000px;}
.xe4_c00108{left:688.350000px;}
.xd9_c00108{left:691.200000px;}
.xfb_c00108{left:694.050000px;}
.xc7_c00108{left:696.600000px;}
.xe7_c00108{left:698.400000px;}
.xb4_c00108{left:699.900000px;}
.xa1_c00108{left:701.100000px;}
.xeb_c00108{left:702.150000px;}
.x117_c00108{left:705.600000px;}
.xde_c00108{left:708.900000px;}
.xda_c00108{left:711.000000px;}
.xf4_c00108{left:712.500000px;}
.xd4_c00108{left:714.300000px;}
.xd0_c00108{left:715.500000px;}
.x111_c00108{left:719.100000px;}
.x114_c00108{left:720.450000px;}
.x9b_c00108{left:721.950000px;}
.xcd_c00108{left:727.650000px;}
.x108_c00108{left:729.000000px;}
.xa2_c00108{left:730.200000px;}
.xf8_c00108{left:731.400000px;}
.xe5_c00108{left:733.350000px;}
.xfc_c00108{left:734.400000px;}
.xc8_c00108{left:738.300000px;}
.xae_c00108{left:739.350000px;}
.x120_c00108{left:741.300000px;}
.xc5_c00108{left:742.350000px;}
.xb9_c00108{left:745.050000px;}
.xc0_c00108{left:747.750000px;}
.x102_c00108{left:749.850000px;}
.xd5_c00108{left:751.350000px;}
.xc9_c00108{left:752.700000px;}
.xf9_c00108{left:755.100000px;}
.xbc_c00108{left:756.600000px;}
.x3_c00108{left:758.100000px;}
.xdf_c00108{left:760.350000px;}
.xc1_c00108{left:761.850000px;}
.x109_c00108{left:764.700000px;}
.x9c_c00108{left:766.950000px;}
.xfd_c00108{left:770.100000px;}
.xa6_c00108{left:774.000000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws2_c00108{word-spacing:-6.666667pt;}
.ws0_c00108{word-spacing:-3.646724pt;}
.ws5_c00108{word-spacing:0.000000pt;}
.ws4_c00108{word-spacing:12.051282pt;}
.ws1_c00108{word-spacing:18.333333pt;}
.ws3_c00108{word-spacing:457.222222pt;}
.fs5_c00108{font-size:21.333333pt;}
.fs6_c00108{font-size:32.000000pt;}
.fs3_c00108{font-size:48.000000pt;}
.fs2_c00108{font-size:53.333333pt;}
.fs1_c00108{font-size:58.666667pt;}
.fs4_c00108{font-size:64.000000pt;}
.fs0_c00108{font-size:101.333333pt;}
.y0_c00108{bottom:0.000000pt;}
.y5a_c00108{bottom:150.800000pt;}
.y60_c00108{bottom:152.266667pt;}
.y59_c00108{bottom:167.066667pt;}
.y5f_c00108{bottom:171.466667pt;}
.y58_c00108{bottom:183.333333pt;}
.y5e_c00108{bottom:188.133333pt;}
.y57_c00108{bottom:199.333333pt;}
.y5d_c00108{bottom:216.266667pt;}
.y56_c00108{bottom:218.933333pt;}
.y55_c00108{bottom:234.933333pt;}
.y54_c00108{bottom:250.933333pt;}
.y53_c00108{bottom:270.666667pt;}
.y52_c00108{bottom:286.666667pt;}
.y5c_c00108{bottom:297.333333pt;}
.y51_c00108{bottom:304.000000pt;}
.y5b_c00108{bottom:316.800000pt;}
.y50_c00108{bottom:320.266667pt;}
.y4f_c00108{bottom:336.000000pt;}
.y28_c00108{bottom:336.666667pt;}
.y4e_c00108{bottom:352.000000pt;}
.y27_c00108{bottom:353.333333pt;}
.y4d_c00108{bottom:368.000000pt;}
.y26_c00108{bottom:369.600000pt;}
.y4c_c00108{bottom:383.733333pt;}
.y25_c00108{bottom:385.600000pt;}
.y4b_c00108{bottom:399.733333pt;}
.y24_c00108{bottom:401.600000pt;}
.y4a_c00108{bottom:415.733333pt;}
.y23_c00108{bottom:417.600000pt;}
.y49_c00108{bottom:431.733333pt;}
.y22_c00108{bottom:433.600000pt;}
.y48_c00108{bottom:447.733333pt;}
.y21_c00108{bottom:449.600000pt;}
.y47_c00108{bottom:463.733333pt;}
.y20_c00108{bottom:465.600000pt;}
.y46_c00108{bottom:479.733333pt;}
.y1f_c00108{bottom:481.600000pt;}
.y45_c00108{bottom:495.733333pt;}
.y1e_c00108{bottom:497.600000pt;}
.y1d_c00108{bottom:513.600000pt;}
.y44_c00108{bottom:514.266667pt;}
.y1c_c00108{bottom:529.600000pt;}
.y43_c00108{bottom:531.466667pt;}
.y1b_c00108{bottom:545.600000pt;}
.y42_c00108{bottom:548.800000pt;}
.y41_c00108{bottom:564.800000pt;}
.y1a_c00108{bottom:566.666667pt;}
.y19_c00108{bottom:584.400000pt;}
.y40_c00108{bottom:584.666667pt;}
.y18_c00108{bottom:601.333333pt;}
.y3f_c00108{bottom:601.600000pt;}
.y3e_c00108{bottom:616.266667pt;}
.y17_c00108{bottom:617.600000pt;}
.y16_c00108{bottom:632.933333pt;}
.y3d_c00108{bottom:651.200000pt;}
.y15_c00108{bottom:656.400000pt;}
.y3c_c00108{bottom:671.066667pt;}
.y14_c00108{bottom:673.066667pt;}
.y13_c00108{bottom:689.066667pt;}
.y3b_c00108{bottom:691.466667pt;}
.y12_c00108{bottom:705.333333pt;}
.y3a_c00108{bottom:707.733333pt;}
.y39_c00108{bottom:723.466667pt;}
.y11_c00108{bottom:723.866667pt;}
.y38_c00108{bottom:739.733333pt;}
.y10_c00108{bottom:740.800000pt;}
.y37_c00108{bottom:755.466667pt;}
.yf_c00108{bottom:767.600000pt;}
.y36_c00108{bottom:771.466667pt;}
.ye_c00108{bottom:784.266667pt;}
.y35_c00108{bottom:787.466667pt;}
.yd_c00108{bottom:800.266667pt;}
.y34_c00108{bottom:806.666667pt;}
.yc_c00108{bottom:819.466667pt;}
.y33_c00108{bottom:823.333333pt;}
.yb_c00108{bottom:839.333333pt;}
.ya_c00108{bottom:855.333333pt;}
.y9_c00108{bottom:871.333333pt;}
.y32_c00108{bottom:887.066667pt;}
.y8_c00108{bottom:887.333333pt;}
.y31_c00108{bottom:898.266667pt;}
.y30_c00108{bottom:903.066667pt;}
.y7_c00108{bottom:903.600000pt;}
.y2f_c00108{bottom:919.066667pt;}
.y6_c00108{bottom:919.600000pt;}
.y2e_c00108{bottom:929.600000pt;}
.y2d_c00108{bottom:934.666667pt;}
.y5_c00108{bottom:935.333333pt;}
.y2c_c00108{bottom:945.600000pt;}
.y2b_c00108{bottom:951.066667pt;}
.y4_c00108{bottom:951.600000pt;}
.y2a_c00108{bottom:967.066667pt;}
.y3_c00108{bottom:967.600000pt;}
.y2_c00108{bottom:983.333333pt;}
.y29_c00108{bottom:985.333333pt;}
.y1_c00108{bottom:1010.933333pt;}
.h7_c00108{height:21.333333pt;}
.h8_c00108{height:32.000000pt;}
.h5_c00108{height:48.000000pt;}
.h4_c00108{height:53.333333pt;}
.h3_c00108{height:58.666667pt;}
.h6_c00108{height:64.000000pt;}
.h2_c00108{height:101.333333pt;}
.h0_c00108{height:1131.840007pt;}
.h1_c00108{height:1132.000000pt;}
.w1_c00108{width:847.333333pt;}
.w0_c00108{width:847.360027pt;}
.x0_c00108{left:0.000000pt;}
.x66_c00108{left:65.866667pt;}
.x3d_c00108{left:67.466667pt;}
.x12b_c00108{left:68.400000pt;}
.x121_c00108{left:69.466667pt;}
.x4a_c00108{left:85.733333pt;}
.x4_c00108{left:87.066667pt;}
.xe_c00108{left:88.000000pt;}
.x5c_c00108{left:92.800000pt;}
.x28_c00108{left:102.000000pt;}
.x127_c00108{left:103.200000pt;}
.x4b_c00108{left:104.666667pt;}
.x21_c00108{left:107.600000pt;}
.x5_c00108{left:109.733333pt;}
.x5d_c00108{left:110.666667pt;}
.x4d_c00108{left:112.666667pt;}
.x45_c00108{left:114.266667pt;}
.x87_c00108{left:116.533333pt;}
.x73_c00108{left:118.533333pt;}
.x4c_c00108{left:119.733333pt;}
.x89_c00108{left:120.666667pt;}
.x6f_c00108{left:121.733333pt;}
.x2f_c00108{left:122.800000pt;}
.x56_c00108{left:124.666667pt;}
.x129_c00108{left:125.600000pt;}
.x29_c00108{left:126.666667pt;}
.x8d_c00108{left:128.266667pt;}
.x6b_c00108{left:130.533333pt;}
.x3e_c00108{left:134.133333pt;}
.xf_c00108{left:136.666667pt;}
.x1b_c00108{left:138.000000pt;}
.x15_c00108{left:139.200000pt;}
.x2a_c00108{left:140.800000pt;}
.x122_c00108{left:141.733333pt;}
.x30_c00108{left:143.600000pt;}
.x22_c00108{left:144.666667pt;}
.x7c_c00108{left:146.666667pt;}
.x6_c00108{left:147.866667pt;}
.x3b_c00108{left:149.333333pt;}
.x6c_c00108{left:150.400000pt;}
.x81_c00108{left:152.400000pt;}
.x36_c00108{left:154.000000pt;}
.x3f_c00108{left:157.466667pt;}
.x10_c00108{left:158.400000pt;}
.x16_c00108{left:160.000000pt;}
.x7d_c00108{left:161.333333pt;}
.x23_c00108{left:162.533333pt;}
.x125_c00108{left:166.933333pt;}
.x31_c00108{left:168.266667pt;}
.x3c_c00108{left:170.400000pt;}
.x11_c00108{left:174.133333pt;}
.x57_c00108{left:176.133333pt;}
.x74_c00108{left:178.933333pt;}
.x53_c00108{left:179.866667pt;}
.x67_c00108{left:181.466667pt;}
.x12a_c00108{left:183.200000pt;}
.x60_c00108{left:185.333333pt;}
.x46_c00108{left:187.466667pt;}
.x8a_c00108{left:188.800000pt;}
.x7e_c00108{left:190.800000pt;}
.x4e_c00108{left:193.600000pt;}
.x17_c00108{left:195.866667pt;}
.x7_c00108{left:200.000000pt;}
.x6d_c00108{left:202.933333pt;}
.x40_c00108{left:204.533333pt;}
.x24_c00108{left:207.600000pt;}
.x1c_c00108{left:209.333333pt;}
.x58_c00108{left:210.400000pt;}
.x68_c00108{left:211.600000pt;}
.x70_c00108{left:212.933333pt;}
.x8b_c00108{left:214.666667pt;}
.x2b_c00108{left:217.600000pt;}
.x61_c00108{left:218.666667pt;}
.x78_c00108{left:219.733333pt;}
.x12_c00108{left:221.200000pt;}
.x8_c00108{left:222.400000pt;}
.x82_c00108{left:223.333333pt;}
.x41_c00108{left:225.066667pt;}
.x54_c00108{left:226.000000pt;}
.x1d_c00108{left:230.133333pt;}
.x69_c00108{left:231.066667pt;}
.x76_c00108{left:232.266667pt;}
.x32_c00108{left:234.533333pt;}
.x9_c00108{left:236.533333pt;}
.x71_c00108{left:237.600000pt;}
.x42_c00108{left:239.200000pt;}
.x4f_c00108{left:242.266667pt;}
.x123_c00108{left:243.466667pt;}
.x64_c00108{left:246.000000pt;}
.x5e_c00108{left:247.066667pt;}
.x18_c00108{left:248.400000pt;}
.x13_c00108{left:250.000000pt;}
.x59_c00108{left:252.266667pt;}
.x50_c00108{left:253.466667pt;}
.x25_c00108{left:255.600000pt;}
.x7f_c00108{left:258.933333pt;}
.x37_c00108{left:260.000000pt;}
.x43_c00108{left:261.866667pt;}
.x1e_c00108{left:263.066667pt;}
.x79_c00108{left:264.133333pt;}
.x83_c00108{left:270.000000pt;}
.x47_c00108{left:271.333333pt;}
.x128_c00108{left:272.266667pt;}
.x26_c00108{left:275.066667pt;}
.x51_c00108{left:276.533333pt;}
.xa_c00108{left:278.400000pt;}
.x33_c00108{left:280.000000pt;}
.x19_c00108{left:282.666667pt;}
.x7a_c00108{left:284.000000pt;}
.x5a_c00108{left:285.600000pt;}
.xb_c00108{left:286.666667pt;}
.x1_c00108{left:288.000000pt;}
.x84_c00108{left:288.933333pt;}
.x48_c00108{left:291.200000pt;}
.x2c_c00108{left:292.133333pt;}
.x88_c00108{left:294.000000pt;}
.x38_c00108{left:298.133333pt;}
.x1f_c00108{left:299.600000pt;}
.x62_c00108{left:302.800000pt;}
.xc_c00108{left:304.266667pt;}
.x65_c00108{left:309.333333pt;}
.x7b_c00108{left:312.133333pt;}
.x63_c00108{left:314.000000pt;}
.x34_c00108{left:314.933333pt;}
.x27_c00108{left:316.400000pt;}
.x20_c00108{left:318.133333pt;}
.x39_c00108{left:320.800000pt;}
.x72_c00108{left:322.400000pt;}
.x44_c00108{left:324.933333pt;}
.x6a_c00108{left:325.866667pt;}
.x5b_c00108{left:327.866667pt;}
.x52_c00108{left:329.600000pt;}
.x8c_c00108{left:331.066667pt;}
.x5f_c00108{left:332.133333pt;}
.x126_c00108{left:333.066667pt;}
.x55_c00108{left:334.266667pt;}
.x75_c00108{left:335.333333pt;}
.x1a_c00108{left:337.066667pt;}
.x2d_c00108{left:338.800000pt;}
.x14_c00108{left:340.133333pt;}
.x85_c00108{left:341.066667pt;}
.x6e_c00108{left:344.133333pt;}
.x80_c00108{left:345.733333pt;}
.x35_c00108{left:347.600000pt;}
.x8e_c00108{left:351.200000pt;}
.x2e_c00108{left:354.133333pt;}
.x77_c00108{left:355.066667pt;}
.x3a_c00108{left:356.000000pt;}
.x49_c00108{left:358.400000pt;}
.xd_c00108{left:360.000000pt;}
.x86_c00108{left:361.600000pt;}
.x103_c00108{left:389.066667pt;}
.x8f_c00108{left:390.666667pt;}
.x94_c00108{left:391.733333pt;}
.xfe_c00108{left:405.200000pt;}
.xf1_c00108{left:406.133333pt;}
.x9d_c00108{left:407.200000pt;}
.xa7_c00108{left:414.666667pt;}
.xee_c00108{left:418.133333pt;}
.x12f_c00108{left:421.733333pt;}
.xd1_c00108{left:422.666667pt;}
.xdb_c00108{left:424.000000pt;}
.xf5_c00108{left:427.200000pt;}
.xfa_c00108{left:428.800000pt;}
.xaf_c00108{left:432.000000pt;}
.xe0_c00108{left:433.066667pt;}
.x10b_c00108{left:434.266667pt;}
.xea_c00108{left:437.200000pt;}
.xe8_c00108{left:438.133333pt;}
.xf6_c00108{left:440.266667pt;}
.x104_c00108{left:441.200000pt;}
.x115_c00108{left:443.466667pt;}
.x90_c00108{left:444.400000pt;}
.xec_c00108{left:445.733333pt;}
.xbd_c00108{left:448.133333pt;}
.xa8_c00108{left:449.600000pt;}
.x124_c00108{left:450.666667pt;}
.xe1_c00108{left:451.600000pt;}
.xce_c00108{left:453.333333pt;}
.x11c_c00108{left:455.333333pt;}
.xdc_c00108{left:456.266667pt;}
.x10a_c00108{left:457.333333pt;}
.x9e_c00108{left:460.933333pt;}
.xd2_c00108{left:462.400000pt;}
.xf0_c00108{left:464.000000pt;}
.xa3_c00108{left:465.733333pt;}
.x12c_c00108{left:467.466667pt;}
.x95_c00108{left:470.133333pt;}
.x116_c00108{left:472.266667pt;}
.xed_c00108{left:473.600000pt;}
.xa9_c00108{left:476.800000pt;}
.x105_c00108{left:478.000000pt;}
.x91_c00108{left:479.333333pt;}
.xd6_c00108{left:480.400000pt;}
.x119_c00108{left:482.000000pt;}
.xff_c00108{left:483.333333pt;}
.x112_c00108{left:484.933333pt;}
.x10f_c00108{left:487.600000pt;}
.xe2_c00108{left:490.000000pt;}
.x106_c00108{left:494.266667pt;}
.x92_c00108{left:496.000000pt;}
.xb0_c00108{left:498.266667pt;}
.x107_c00108{left:499.200000pt;}
.xc6_c00108{left:501.066667pt;}
.x10e_c00108{left:502.800000pt;}
.xdd_c00108{left:504.000000pt;}
.x11e_c00108{left:505.600000pt;}
.xaa_c00108{left:506.533333pt;}
.x96_c00108{left:509.200000pt;}
.xb5_c00108{left:511.200000pt;}
.xcf_c00108{left:514.133333pt;}
.xb1_c00108{left:515.600000pt;}
.x97_c00108{left:517.466667pt;}
.xef_c00108{left:519.600000pt;}
.x12e_c00108{left:521.866667pt;}
.xbe_c00108{left:525.200000pt;}
.xca_c00108{left:526.133333pt;}
.x9f_c00108{left:527.866667pt;}
.x11a_c00108{left:530.000000pt;}
.x11d_c00108{left:531.466667pt;}
.xe9_c00108{left:533.200000pt;}
.xba_c00108{left:534.933333pt;}
.xab_c00108{left:536.666667pt;}
.xf7_c00108{left:538.133333pt;}
.xd7_c00108{left:539.200000pt;}
.x110_c00108{left:540.666667pt;}
.x93_c00108{left:542.133333pt;}
.xb6_c00108{left:543.200000pt;}
.xa4_c00108{left:544.400000pt;}
.x100_c00108{left:547.333333pt;}
.xc2_c00108{left:550.133333pt;}
.x98_c00108{left:551.733333pt;}
.xd3_c00108{left:553.333333pt;}
.x10c_c00108{left:554.933333pt;}
.xb2_c00108{left:556.533333pt;}
.xe3_c00108{left:559.066667pt;}
.xac_c00108{left:560.000000pt;}
.xcb_c00108{left:561.600000pt;}
.x12d_c00108{left:565.066667pt;}
.xb7_c00108{left:566.266667pt;}
.xc3_c00108{left:568.400000pt;}
.x118_c00108{left:569.866667pt;}
.xf2_c00108{left:572.133333pt;}
.x2_c00108{left:573.066667pt;}
.xe6_c00108{left:575.733333pt;}
.xa5_c00108{left:578.266667pt;}
.x99_c00108{left:579.600000pt;}
.x11f_c00108{left:581.066667pt;}
.xc4_c00108{left:584.400000pt;}
.xa0_c00108{left:585.466667pt;}
.xd8_c00108{left:586.933333pt;}
.x113_c00108{left:588.933333pt;}
.x10d_c00108{left:589.866667pt;}
.x101_c00108{left:590.800000pt;}
.x11b_c00108{left:591.733333pt;}
.xb3_c00108{left:593.333333pt;}
.xad_c00108{left:596.133333pt;}
.xbf_c00108{left:599.066667pt;}
.xbb_c00108{left:601.466667pt;}
.x9a_c00108{left:604.266667pt;}
.xcc_c00108{left:607.066667pt;}
.xf3_c00108{left:608.666667pt;}
.xb8_c00108{left:609.733333pt;}
.xe4_c00108{left:611.866667pt;}
.xd9_c00108{left:614.400000pt;}
.xfb_c00108{left:616.933333pt;}
.xc7_c00108{left:619.200000pt;}
.xe7_c00108{left:620.800000pt;}
.xb4_c00108{left:622.133333pt;}
.xa1_c00108{left:623.200000pt;}
.xeb_c00108{left:624.133333pt;}
.x117_c00108{left:627.200000pt;}
.xde_c00108{left:630.133333pt;}
.xda_c00108{left:632.000000pt;}
.xf4_c00108{left:633.333333pt;}
.xd4_c00108{left:634.933333pt;}
.xd0_c00108{left:636.000000pt;}
.x111_c00108{left:639.200000pt;}
.x114_c00108{left:640.400000pt;}
.x9b_c00108{left:641.733333pt;}
.xcd_c00108{left:646.800000pt;}
.x108_c00108{left:648.000000pt;}
.xa2_c00108{left:649.066667pt;}
.xf8_c00108{left:650.133333pt;}
.xe5_c00108{left:651.866667pt;}
.xfc_c00108{left:652.800000pt;}
.xc8_c00108{left:656.266667pt;}
.xae_c00108{left:657.200000pt;}
.x120_c00108{left:658.933333pt;}
.xc5_c00108{left:659.866667pt;}
.xb9_c00108{left:662.266667pt;}
.xc0_c00108{left:664.666667pt;}
.x102_c00108{left:666.533333pt;}
.xd5_c00108{left:667.866667pt;}
.xc9_c00108{left:669.066667pt;}
.xf9_c00108{left:671.200000pt;}
.xbc_c00108{left:672.533333pt;}
.x3_c00108{left:673.866667pt;}
.xdf_c00108{left:675.866667pt;}
.xc1_c00108{left:677.200000pt;}
.x109_c00108{left:679.733333pt;}
.x9c_c00108{left:681.733333pt;}
.xfd_c00108{left:684.533333pt;}
.xa6_c00108{left:688.000000pt;}
}





/* 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_c00109 {
    display:none;
  }
  .loading-indicator_c00109.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00109 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_c00109 { 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_c00109" -> "#page-container .classname_c00109")
 */
.pf_c00109 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00109 { /* 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_c00109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00109 { /* 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_c00109 { /* 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_c00109 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00109 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00109 {overflow:visible;}
  }
}
.c_c00109 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00109 { /* 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_c00109:after { /* webkit #35443 */
  content: '';
}
.t_c00109:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00109 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 */
}
.__c00109 { /* 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_c00109 { /* info for Javascript */
  display:none;
}
.l_c00109 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00109 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00109 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00109: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_c00109 {
    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_c00109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00109.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_c00109 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00109;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.000000;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;}
.ma5_c00109{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.m10_c00109{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00109{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.me4_c00109{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m38_c00109{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md2_c00109{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.me2_c00109{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m36_c00109{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00109{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m100_c00109{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00109{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00109{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m70_c00109{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m117_c00109{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00109{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m19_c00109{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00109{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m104_c00109{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00109{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.mca_c00109{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m8_c00109{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00109{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m21_c00109{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00109{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00109{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00109{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m89_c00109{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m93_c00109{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00109{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m31_c00109{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00109{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m95_c00109{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m44_c00109{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00109{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00109{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m28_c00109{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m51_c00109{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m81_c00109{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.md0_c00109{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md7_c00109{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m83_c00109{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m82_c00109{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m86_c00109{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00109{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00109{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00109{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me1_c00109{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mae_c00109{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00109{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m76_c00109{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m87_c00109{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m103_c00109{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m78_c00109{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00109{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00109{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00109{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m47_c00109{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.med_c00109{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m88_c00109{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00109{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m69_c00109{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m34_c00109{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00109{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00109{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m62_c00109{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m97_c00109{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m57_c00109{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mf_c00109{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00109{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.meb_c00109{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.md1_c00109{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m99_c00109{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m79_c00109{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m72_c00109{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m110_c00109{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m33_c00109{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m53_c00109{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mea_c00109{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00109{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00109{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m41_c00109{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00109{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m90_c00109{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00109{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00109{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00109{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md6_c00109{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00109{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m55_c00109{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m18_c00109{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00109{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00109{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00109{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m22_c00109{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m30_c00109{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m107_c00109{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00109{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00109{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m58_c00109{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m29_c00109{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mda_c00109{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00109{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00109{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00109{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m49_c00109{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m46_c00109{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00109{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m52_c00109{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m25_c00109{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00109{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00109{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m17_c00109{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m108_c00109{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m39_c00109{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m66_c00109{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00109{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00109{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00109{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00109{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00109{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb_c00109{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00109{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00109{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00109{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m74_c00109{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m24_c00109{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m16_c00109{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m85_c00109{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00109{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00109{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00109{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00109{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00109{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00109{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.me6_c00109{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00109{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00109{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.maf_c00109{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m42_c00109{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mef_c00109{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00109{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m48_c00109{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00109{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00109{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00109{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00109{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00109{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00109{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00109{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00109{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00109{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00109{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00109{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00109{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00109{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc_c00109{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00109{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00109{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00109{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.me5_c00109{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m61_c00109{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mce_c00109{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m94_c00109{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m112_c00109{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mee_c00109{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00109{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00109{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m40_c00109{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m92_c00109{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m102_c00109{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m37_c00109{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00109{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.maa_c00109{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m68_c00109{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m26_c00109{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m50_c00109{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m54_c00109{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00109{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.md9_c00109{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00109{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00109{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mec_c00109{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m20_c00109{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9_c00109{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00109{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m13_c00109{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m96_c00109{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00109{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me8_c00109{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me3_c00109{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md5_c00109{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00109{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m43_c00109{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mff_c00109{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00109{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00109{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m60_c00109{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mde_c00109{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m32_c00109{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m56_c00109{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m27_c00109{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00109{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00109{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m23_c00109{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m35_c00109{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m45_c00109{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00109{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m106_c00109{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m59_c00109{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7_c00109{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m12_c00109{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md3_c00109{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m113_c00109{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m105_c00109{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00109{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00109{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.me7_c00109{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00109{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00109{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m119_c00109{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00109{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00109{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00109{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m111_c00109{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);}
.md_c00109{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m75_c00109{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m118_c00109{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00109{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m80_c00109{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m15_c00109{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00109{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m71_c00109{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m114_c00109{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md4_c00109{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m91_c00109{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00109{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mba_c00109{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m98_c00109{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00109{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m64_c00109{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m84_c00109{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00109{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00109{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00109{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m116_c00109{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00109{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00109{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00109{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m73_c00109{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00109{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m65_c00109{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00109{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00109{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m77_c00109{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00109{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00109{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mab_c00109{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00109{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mac_c00109{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.me_c00109{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m67_c00109{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m14_c00109{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00109{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m63_c00109{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mad_c00109{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me9_c00109{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00109{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.me0_c00109{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.md8_c00109{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m11_c00109{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00109{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00109{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m109_c00109{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m115_c00109{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00109{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00109{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m101_c00109{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls0_c00109{letter-spacing:0.000000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{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__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00109{word-spacing:-14.923567px;}
.ws5_c00109{word-spacing:-11.361186px;}
.ws4_c00109{word-spacing:-3.467354px;}
.ws6_c00109{word-spacing:0.000000px;}
.ws0_c00109{word-spacing:4.516729px;}
.ws2_c00109{word-spacing:9.401274px;}
.ws1_c00109{word-spacing:34.193548px;}
.fc0_c00109{color:transparent;}
.fs5_c00109{font-size:18.000000px;}
.fs7_c00109{font-size:42.000000px;}
.fs2_c00109{font-size:48.000000px;}
.fs6_c00109{font-size:54.000000px;}
.fs3_c00109{font-size:60.000000px;}
.fs1_c00109{font-size:66.000000px;}
.fs4_c00109{font-size:72.000000px;}
.fs0_c00109{font-size:78.000000px;}
.y0_c00109{bottom:0.000000px;}
.y33_c00109{bottom:189.900000px;}
.y64_c00109{bottom:192.150000px;}
.y32_c00109{bottom:209.700000px;}
.y63_c00109{bottom:210.900000px;}
.y31_c00109{bottom:227.700000px;}
.y62_c00109{bottom:228.600000px;}
.y30_c00109{bottom:245.700000px;}
.y61_c00109{bottom:246.600000px;}
.y2f_c00109{bottom:263.700000px;}
.y60_c00109{bottom:264.900000px;}
.y2e_c00109{bottom:281.400000px;}
.y5f_c00109{bottom:282.600000px;}
.y2d_c00109{bottom:299.100000px;}
.y5e_c00109{bottom:300.300000px;}
.y2c_c00109{bottom:317.100000px;}
.y5d_c00109{bottom:318.600000px;}
.y5c_c00109{bottom:336.600000px;}
.y2b_c00109{bottom:347.100000px;}
.y5b_c00109{bottom:354.300000px;}
.y2a_c00109{bottom:369.750000px;}
.y5a_c00109{bottom:372.600000px;}
.y29_c00109{bottom:393.150000px;}
.y59_c00109{bottom:398.100000px;}
.y28_c00109{bottom:414.300000px;}
.y58_c00109{bottom:422.250000px;}
.y27_c00109{bottom:433.800000px;}
.y57_c00109{bottom:440.250000px;}
.y26_c00109{bottom:451.800000px;}
.y56_c00109{bottom:462.450000px;}
.y25_c00109{bottom:469.800000px;}
.y55_c00109{bottom:480.150000px;}
.y24_c00109{bottom:487.800000px;}
.y54_c00109{bottom:498.150000px;}
.y23_c00109{bottom:506.100000px;}
.y53_c00109{bottom:517.650000px;}
.y22_c00109{bottom:524.100000px;}
.y52_c00109{bottom:534.600000px;}
.y21_c00109{bottom:544.350000px;}
.y51_c00109{bottom:552.900000px;}
.y20_c00109{bottom:559.800000px;}
.y50_c00109{bottom:570.600000px;}
.y1f_c00109{bottom:579.600000px;}
.y4f_c00109{bottom:592.950000px;}
.y1e_c00109{bottom:597.900000px;}
.y4e_c00109{bottom:624.150000px;}
.y1d_c00109{bottom:624.600000px;}
.y4d_c00109{bottom:641.850000px;}
.y1c_c00109{bottom:642.600000px;}
.y1b_c00109{bottom:660.900000px;}
.y4c_c00109{bottom:664.650000px;}
.y1a_c00109{bottom:678.900000px;}
.y4b_c00109{bottom:682.650000px;}
.y19_c00109{bottom:696.900000px;}
.y4a_c00109{bottom:700.650000px;}
.y18_c00109{bottom:714.900000px;}
.y49_c00109{bottom:718.950000px;}
.y17_c00109{bottom:737.250000px;}
.y48_c00109{bottom:741.300000px;}
.y47_c00109{bottom:759.300000px;}
.y16_c00109{bottom:764.250000px;}
.y46_c00109{bottom:777.600000px;}
.y15_c00109{bottom:791.250000px;}
.y45_c00109{bottom:795.600000px;}
.y44_c00109{bottom:813.300000px;}
.y14_c00109{bottom:813.600000px;}
.y13_c00109{bottom:823.350000px;}
.y12_c00109{bottom:831.300000px;}
.y43_c00109{bottom:831.600000px;}
.y42_c00109{bottom:849.600000px;}
.y11_c00109{bottom:854.700000px;}
.y41_c00109{bottom:867.600000px;}
.y10_c00109{bottom:872.700000px;}
.y40_c00109{bottom:885.300000px;}
.yf_c00109{bottom:890.250000px;}
.y3f_c00109{bottom:903.300000px;}
.ye_c00109{bottom:908.250000px;}
.y3e_c00109{bottom:924.000000px;}
.yd_c00109{bottom:926.250000px;}
.y3d_c00109{bottom:939.900000px;}
.yc_c00109{bottom:943.950000px;}
.y3c_c00109{bottom:959.100000px;}
.yb_c00109{bottom:962.250000px;}
.y3b_c00109{bottom:977.100000px;}
.ya_c00109{bottom:979.950000px;}
.y9_c00109{bottom:997.950000px;}
.y3a_c00109{bottom:1000.050000px;}
.y8_c00109{bottom:1016.250000px;}
.y39_c00109{bottom:1017.750000px;}
.y38_c00109{bottom:1035.750000px;}
.y7_c00109{bottom:1037.100000px;}
.y6_c00109{bottom:1051.500000px;}
.y37_c00109{bottom:1053.750000px;}
.y5_c00109{bottom:1071.000000px;}
.y36_c00109{bottom:1071.750000px;}
.y4_c00109{bottom:1089.750000px;}
.y35_c00109{bottom:1090.050000px;}
.y3_c00109{bottom:1110.600000px;}
.y34_c00109{bottom:1112.400000px;}
.y2_c00109{bottom:1130.400000px;}
.y1_c00109{bottom:1157.700000px;}
.h7_c00109{height:18.000000px;}
.h9_c00109{height:42.000000px;}
.h4_c00109{height:48.000000px;}
.h8_c00109{height:54.000000px;}
.h5_c00109{height:60.000000px;}
.h3_c00109{height:66.000000px;}
.h6_c00109{height:72.000000px;}
.h2_c00109{height:78.000000px;}
.h1_c00109{height:1284.750000px;}
.h0_c00109{height:1284.839997px;}
.w1_c00109{width:953.250000px;}
.w0_c00109{width:953.280030px;}
.x0_c00109{left:0.000000px;}
.x1_c00109{left:159.150000px;}
.x17_c00109{left:160.200000px;}
.x2d_c00109{left:162.750000px;}
.x12_c00109{left:165.300000px;}
.x64_c00109{left:167.100000px;}
.x7a_c00109{left:168.150000px;}
.x84_c00109{left:169.200000px;}
.x96_c00109{left:170.700000px;}
.x29_c00109{left:175.800000px;}
.x4_c00109{left:177.450000px;}
.x13_c00109{left:178.650000px;}
.x33_c00109{left:180.450000px;}
.x39_c00109{left:181.800000px;}
.x45_c00109{left:183.000000px;}
.x69_c00109{left:184.200000px;}
.x72_c00109{left:185.250000px;}
.x6b_c00109{left:186.750000px;}
.x9d_c00109{left:187.950000px;}
.x65_c00109{left:199.200000px;}
.x57_c00109{left:201.600000px;}
.x66_c00109{left:203.400000px;}
.x2a_c00109{left:205.650000px;}
.x18_c00109{left:207.300000px;}
.x7b_c00109{left:210.300000px;}
.x34_c00109{left:214.650000px;}
.x14_c00109{left:217.500000px;}
.x89_c00109{left:220.650000px;}
.x22_c00109{left:221.850000px;}
.x97_c00109{left:222.900000px;}
.x82_c00109{left:224.250000px;}
.x52_c00109{left:226.050000px;}
.x5f_c00109{left:228.300000px;}
.x1e_c00109{left:232.350000px;}
.x3a_c00109{left:234.300000px;}
.x60_c00109{left:236.250000px;}
.x4c_c00109{left:237.300000px;}
.x8c_c00109{left:238.500000px;}
.x98_c00109{left:240.150000px;}
.x40_c00109{left:242.250000px;}
.x1f_c00109{left:243.900000px;}
.x5_c00109{left:245.550000px;}
.x9c_c00109{left:246.600000px;}
.x8d_c00109{left:247.800000px;}
.xa6_c00109{left:249.600000px;}
.x2b_c00109{left:250.650000px;}
.x15_c00109{left:252.000000px;}
.x53_c00109{left:253.800000px;}
.x2e_c00109{left:256.050000px;}
.x6f_c00109{left:257.550000px;}
.x4d_c00109{left:259.200000px;}
.x23_c00109{left:262.500000px;}
.x3b_c00109{left:264.150000px;}
.x2_c00109{left:266.100000px;}
.x80_c00109{left:269.700000px;}
.x75_c00109{left:272.100000px;}
.x5a_c00109{left:273.750000px;}
.x16_c00109{left:275.400000px;}
.x7f_c00109{left:276.600000px;}
.x7c_c00109{left:277.650000px;}
.x24_c00109{left:281.550000px;}
.x20_c00109{left:283.200000px;}
.x35_c00109{left:285.450000px;}
.x91_c00109{left:288.900000px;}
.x2c_c00109{left:291.300000px;}
.x6_c00109{left:292.650000px;}
.x99_c00109{left:294.600000px;}
.x5d_c00109{left:297.150000px;}
.x48_c00109{left:301.500000px;}
.x61_c00109{left:307.200000px;}
.x36_c00109{left:308.850000px;}
.x2f_c00109{left:311.550000px;}
.x46_c00109{left:312.600000px;}
.x76_c00109{left:314.550000px;}
.x8f_c00109{left:315.600000px;}
.x3c_c00109{left:317.100000px;}
.x54_c00109{left:319.650000px;}
.x83_c00109{left:321.450000px;}
.x9e_c00109{left:323.400000px;}
.x5e_c00109{left:324.450000px;}
.x19_c00109{left:325.500000px;}
.xa0_c00109{left:327.000000px;}
.x92_c00109{left:330.300000px;}
.x4e_c00109{left:331.950000px;}
.x7_c00109{left:334.350000px;}
.x25_c00109{left:337.350000px;}
.x30_c00109{left:339.600000px;}
.xa4_c00109{left:340.950000px;}
.x70_c00109{left:342.900000px;}
.x5b_c00109{left:344.700000px;}
.x62_c00109{left:346.800000px;}
.x21_c00109{left:348.300000px;}
.x42_c00109{left:349.500000px;}
.x77_c00109{left:352.650000px;}
.x3d_c00109{left:354.900000px;}
.x8_c00109{left:357.450000px;}
.xa5_c00109{left:358.950000px;}
.x1a_c00109{left:362.250000px;}
.x5c_c00109{left:363.750000px;}
.x6c_c00109{left:365.400000px;}
.x49_c00109{left:366.750000px;}
.x9a_c00109{left:368.850000px;}
.x43_c00109{left:372.600000px;}
.x7d_c00109{left:373.800000px;}
.x4f_c00109{left:375.450000px;}
.x8a_c00109{left:378.750000px;}
.x31_c00109{left:383.100000px;}
.x93_c00109{left:384.300000px;}
.x1b_c00109{left:386.700000px;}
.x85_c00109{left:388.800000px;}
.x58_c00109{left:390.150000px;}
.x63_c00109{left:392.550000px;}
.x9_c00109{left:395.550000px;}
.x78_c00109{left:396.900000px;}
.x26_c00109{left:398.250000px;}
.x9f_c00109{left:400.800000px;}
.x3e_c00109{left:403.500000px;}
.x3_c00109{left:408.000000px;}
.x59_c00109{left:411.000000px;}
.x4a_c00109{left:412.500000px;}
.x90_c00109{left:413.550000px;}
.x50_c00109{left:415.800000px;}
.x87_c00109{left:418.050000px;}
.x47_c00109{left:419.250000px;}
.x79_c00109{left:420.300000px;}
.x32_c00109{left:421.650000px;}
.x71_c00109{left:423.900000px;}
.x1c_c00109{left:429.150000px;}
.x55_c00109{left:430.200000px;}
.x41_c00109{left:433.800000px;}
.x4b_c00109{left:434.850000px;}
.x27_c00109{left:439.650000px;}
.x94_c00109{left:440.850000px;}
.xa_c00109{left:442.350000px;}
.x37_c00109{left:444.900000px;}
.x86_c00109{left:447.450000px;}
.x67_c00109{left:448.500000px;}
.x7e_c00109{left:451.500000px;}
.x8b_c00109{left:452.550000px;}
.x3f_c00109{left:454.950000px;}
.x6d_c00109{left:456.150000px;}
.xa2_c00109{left:458.850000px;}
.x88_c00109{left:460.050000px;}
.x51_c00109{left:461.850000px;}
.x9b_c00109{left:463.200000px;}
.x56_c00109{left:464.700000px;}
.x8e_c00109{left:466.650000px;}
.x44_c00109{left:467.700000px;}
.x73_c00109{left:469.050000px;}
.x28_c00109{left:471.000000px;}
.xa1_c00109{left:472.950000px;}
.x38_c00109{left:475.200000px;}
.xa3_c00109{left:479.400000px;}
.x6a_c00109{left:480.450000px;}
.xb_c00109{left:481.950000px;}
.x68_c00109{left:484.500000px;}
.x74_c00109{left:486.750000px;}
.x1d_c00109{left:487.950000px;}
.x95_c00109{left:489.150000px;}
.x6e_c00109{left:492.450000px;}
.x81_c00109{left:495.450000px;}
.xce_c00109{left:522.750000px;}
.xc_c00109{left:524.400000px;}
.x12c_c00109{left:525.600000px;}
.x117_c00109{left:526.650000px;}
.xdc_c00109{left:536.850000px;}
.xa7_c00109{left:539.700000px;}
.xb1_c00109{left:541.650000px;}
.x11d_c00109{left:543.300000px;}
.x129_c00109{left:544.500000px;}
.x13c_c00109{left:545.700000px;}
.xcf_c00109{left:546.900000px;}
.xb2_c00109{left:551.400000px;}
.xa8_c00109{left:558.300000px;}
.x106_c00109{left:560.400000px;}
.x11a_c00109{left:561.600000px;}
.xe8_c00109{left:563.250000px;}
.xb3_c00109{left:566.550000px;}
.xb9_c00109{left:567.600000px;}
.x120_c00109{left:568.800000px;}
.xfe_c00109{left:570.000000px;}
.xd_c00109{left:571.200000px;}
.xbf_c00109{left:574.200000px;}
.xcd_c00109{left:576.000000px;}
.x130_c00109{left:577.200000px;}
.xc6_c00109{left:580.050000px;}
.xd4_c00109{left:582.150000px;}
.xd8_c00109{left:584.700000px;}
.x107_c00109{left:586.050000px;}
.x136_c00109{left:587.550000px;}
.xb4_c00109{left:589.650000px;}
.x132_c00109{left:592.650000px;}
.x110_c00109{left:594.000000px;}
.xd5_c00109{left:596.550000px;}
.x139_c00109{left:599.400000px;}
.x10e_c00109{left:601.050000px;}
.xc0_c00109{left:604.050000px;}
.x11b_c00109{left:605.100000px;}
.x104_c00109{left:606.150000px;}
.xe4_c00109{left:608.250000px;}
.xe_c00109{left:610.800000px;}
.xe9_c00109{left:613.350000px;}
.xff_c00109{left:615.300000px;}
.x111_c00109{left:617.100000px;}
.xba_c00109{left:619.050000px;}
.x108_c00109{left:620.250000px;}
.xa9_c00109{left:621.300000px;}
.xed_c00109{left:623.100000px;}
.xd9_c00109{left:625.350000px;}
.x10f_c00109{left:626.550000px;}
.x131_c00109{left:627.600000px;}
.xdd_c00109{left:629.100000px;}
.xf3_c00109{left:630.900000px;}
.xd0_c00109{left:633.300000px;}
.xd6_c00109{left:635.100000px;}
.xe5_c00109{left:638.100000px;}
.x121_c00109{left:641.250000px;}
.xc1_c00109{left:643.650000px;}
.xaa_c00109{left:645.000000px;}
.xee_c00109{left:648.600000px;}
.x125_c00109{left:650.250000px;}
.x109_c00109{left:651.900000px;}
.xd7_c00109{left:653.400000px;}
.xf9_c00109{left:654.600000px;}
.xc7_c00109{left:658.050000px;}
.x100_c00109{left:661.050000px;}
.xf4_c00109{left:665.100000px;}
.xe1_c00109{left:666.150000px;}
.x114_c00109{left:668.550000px;}
.xab_c00109{left:669.900000px;}
.x12f_c00109{left:671.850000px;}
.xb5_c00109{left:674.250000px;}
.x112_c00109{left:676.500000px;}
.x118_c00109{left:677.850000px;}
.xc2_c00109{left:678.900000px;}
.xe6_c00109{left:681.000000px;}
.xd1_c00109{left:683.700000px;}
.xc8_c00109{left:685.050000px;}
.xf_c00109{left:687.450000px;}
.x12a_c00109{left:688.950000px;}
.x105_c00109{left:691.500000px;}
.x113_c00109{left:693.750000px;}
.x126_c00109{left:697.800000px;}
.xac_c00109{left:699.000000px;}
.xea_c00109{left:701.550000px;}
.xbb_c00109{left:702.900000px;}
.x12d_c00109{left:706.950000px;}
.xef_c00109{left:708.300000px;}
.xda_c00109{left:710.400000px;}
.xfa_c00109{left:713.700000px;}
.x101_c00109{left:714.750000px;}
.xb6_c00109{left:716.400000px;}
.x10b_c00109{left:717.450000px;}
.xc9_c00109{left:719.250000px;}
.xad_c00109{left:722.100000px;}
.xd2_c00109{left:725.400000px;}
.xb7_c00109{left:726.450000px;}
.x122_c00109{left:728.100000px;}
.x115_c00109{left:729.450000px;}
.xf5_c00109{left:730.650000px;}
.xf0_c00109{left:733.200000px;}
.xc3_c00109{left:734.250000px;}
.xe2_c00109{left:735.750000px;}
.xe7_c00109{left:737.550000px;}
.x137_c00109{left:741.000000px;}
.x102_c00109{left:742.050000px;}
.xeb_c00109{left:744.450000px;}
.x11e_c00109{left:746.700000px;}
.x127_c00109{left:747.900000px;}
.x116_c00109{left:748.950000px;}
.xca_c00109{left:752.700000px;}
.x13e_c00109{left:753.750000px;}
.xc4_c00109{left:755.100000px;}
.xf6_c00109{left:756.600000px;}
.xdf_c00109{left:758.250000px;}
.x133_c00109{left:760.650000px;}
.xbc_c00109{left:762.000000px;}
.x123_c00109{left:764.100000px;}
.x12b_c00109{left:765.750000px;}
.xf1_c00109{left:768.900000px;}
.xd3_c00109{left:770.400000px;}
.xbd_c00109{left:772.800000px;}
.x10_c00109{left:774.600000px;}
.xfb_c00109{left:776.700000px;}
.xcb_c00109{left:778.200000px;}
.xae_c00109{left:781.500000px;}
.xc5_c00109{left:783.150000px;}
.x12e_c00109{left:784.800000px;}
.x134_c00109{left:787.350000px;}
.xdb_c00109{left:791.400000px;}
.xaf_c00109{left:792.600000px;}
.xde_c00109{left:793.650000px;}
.x119_c00109{left:795.600000px;}
.x138_c00109{left:797.100000px;}
.xfc_c00109{left:798.300000px;}
.x13a_c00109{left:800.550000px;}
.xec_c00109{left:802.050000px;}
.x128_c00109{left:804.150000px;}
.xf7_c00109{left:806.250000px;}
.x10d_c00109{left:807.300000px;}
.xcc_c00109{left:813.150000px;}
.xe0_c00109{left:815.100000px;}
.x124_c00109{left:821.700000px;}
.xfd_c00109{left:823.500000px;}
.xbe_c00109{left:828.300000px;}
.xb0_c00109{left:830.400000px;}
.x10c_c00109{left:831.600000px;}
.xe3_c00109{left:834.000000px;}
.x11_c00109{left:835.500000px;}
.x13b_c00109{left:837.000000px;}
.xb8_c00109{left:838.050000px;}
.x11f_c00109{left:839.250000px;}
.x135_c00109{left:843.150000px;}
.x103_c00109{left:844.350000px;}
.x10a_c00109{left:846.600000px;}
.xf2_c00109{left:848.400000px;}
.x13d_c00109{left:849.600000px;}
.xf8_c00109{left:851.550000px;}
.x11c_c00109{left:858.300000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws3_c00109{word-spacing:-13.265393pt;}
.ws5_c00109{word-spacing:-10.098832pt;}
.ws4_c00109{word-spacing:-3.082092pt;}
.ws6_c00109{word-spacing:0.000000pt;}
.ws0_c00109{word-spacing:4.014870pt;}
.ws2_c00109{word-spacing:8.356688pt;}
.ws1_c00109{word-spacing:30.394265pt;}
.fs5_c00109{font-size:16.000000pt;}
.fs7_c00109{font-size:37.333333pt;}
.fs2_c00109{font-size:42.666667pt;}
.fs6_c00109{font-size:48.000000pt;}
.fs3_c00109{font-size:53.333333pt;}
.fs1_c00109{font-size:58.666667pt;}
.fs4_c00109{font-size:64.000000pt;}
.fs0_c00109{font-size:69.333333pt;}
.y0_c00109{bottom:0.000000pt;}
.y33_c00109{bottom:168.800000pt;}
.y64_c00109{bottom:170.800000pt;}
.y32_c00109{bottom:186.400000pt;}
.y63_c00109{bottom:187.466667pt;}
.y31_c00109{bottom:202.400000pt;}
.y62_c00109{bottom:203.200000pt;}
.y30_c00109{bottom:218.400000pt;}
.y61_c00109{bottom:219.200000pt;}
.y2f_c00109{bottom:234.400000pt;}
.y60_c00109{bottom:235.466667pt;}
.y2e_c00109{bottom:250.133333pt;}
.y5f_c00109{bottom:251.200000pt;}
.y2d_c00109{bottom:265.866667pt;}
.y5e_c00109{bottom:266.933333pt;}
.y2c_c00109{bottom:281.866667pt;}
.y5d_c00109{bottom:283.200000pt;}
.y5c_c00109{bottom:299.200000pt;}
.y2b_c00109{bottom:308.533333pt;}
.y5b_c00109{bottom:314.933333pt;}
.y2a_c00109{bottom:328.666667pt;}
.y5a_c00109{bottom:331.200000pt;}
.y29_c00109{bottom:349.466667pt;}
.y59_c00109{bottom:353.866667pt;}
.y28_c00109{bottom:368.266667pt;}
.y58_c00109{bottom:375.333333pt;}
.y27_c00109{bottom:385.600000pt;}
.y57_c00109{bottom:391.333333pt;}
.y26_c00109{bottom:401.600000pt;}
.y56_c00109{bottom:411.066667pt;}
.y25_c00109{bottom:417.600000pt;}
.y55_c00109{bottom:426.800000pt;}
.y24_c00109{bottom:433.600000pt;}
.y54_c00109{bottom:442.800000pt;}
.y23_c00109{bottom:449.866667pt;}
.y53_c00109{bottom:460.133333pt;}
.y22_c00109{bottom:465.866667pt;}
.y52_c00109{bottom:475.200000pt;}
.y21_c00109{bottom:483.866667pt;}
.y51_c00109{bottom:491.466667pt;}
.y20_c00109{bottom:497.600000pt;}
.y50_c00109{bottom:507.200000pt;}
.y1f_c00109{bottom:515.200000pt;}
.y4f_c00109{bottom:527.066667pt;}
.y1e_c00109{bottom:531.466667pt;}
.y4e_c00109{bottom:554.800000pt;}
.y1d_c00109{bottom:555.200000pt;}
.y4d_c00109{bottom:570.533333pt;}
.y1c_c00109{bottom:571.200000pt;}
.y1b_c00109{bottom:587.466667pt;}
.y4c_c00109{bottom:590.800000pt;}
.y1a_c00109{bottom:603.466667pt;}
.y4b_c00109{bottom:606.800000pt;}
.y19_c00109{bottom:619.466667pt;}
.y4a_c00109{bottom:622.800000pt;}
.y18_c00109{bottom:635.466667pt;}
.y49_c00109{bottom:639.066667pt;}
.y17_c00109{bottom:655.333333pt;}
.y48_c00109{bottom:658.933333pt;}
.y47_c00109{bottom:674.933333pt;}
.y16_c00109{bottom:679.333333pt;}
.y46_c00109{bottom:691.200000pt;}
.y15_c00109{bottom:703.333333pt;}
.y45_c00109{bottom:707.200000pt;}
.y44_c00109{bottom:722.933333pt;}
.y14_c00109{bottom:723.200000pt;}
.y13_c00109{bottom:731.866667pt;}
.y12_c00109{bottom:738.933333pt;}
.y43_c00109{bottom:739.200000pt;}
.y42_c00109{bottom:755.200000pt;}
.y11_c00109{bottom:759.733333pt;}
.y41_c00109{bottom:771.200000pt;}
.y10_c00109{bottom:775.733333pt;}
.y40_c00109{bottom:786.933333pt;}
.yf_c00109{bottom:791.333333pt;}
.y3f_c00109{bottom:802.933333pt;}
.ye_c00109{bottom:807.333333pt;}
.y3e_c00109{bottom:821.333333pt;}
.yd_c00109{bottom:823.333333pt;}
.y3d_c00109{bottom:835.466667pt;}
.yc_c00109{bottom:839.066667pt;}
.y3c_c00109{bottom:852.533333pt;}
.yb_c00109{bottom:855.333333pt;}
.y3b_c00109{bottom:868.533333pt;}
.ya_c00109{bottom:871.066667pt;}
.y9_c00109{bottom:887.066667pt;}
.y3a_c00109{bottom:888.933333pt;}
.y8_c00109{bottom:903.333333pt;}
.y39_c00109{bottom:904.666667pt;}
.y38_c00109{bottom:920.666667pt;}
.y7_c00109{bottom:921.866667pt;}
.y6_c00109{bottom:934.666667pt;}
.y37_c00109{bottom:936.666667pt;}
.y5_c00109{bottom:952.000000pt;}
.y36_c00109{bottom:952.666667pt;}
.y4_c00109{bottom:968.666667pt;}
.y35_c00109{bottom:968.933333pt;}
.y3_c00109{bottom:987.200000pt;}
.y34_c00109{bottom:988.800000pt;}
.y2_c00109{bottom:1004.800000pt;}
.y1_c00109{bottom:1029.066667pt;}
.h7_c00109{height:16.000000pt;}
.h9_c00109{height:37.333333pt;}
.h4_c00109{height:42.666667pt;}
.h8_c00109{height:48.000000pt;}
.h5_c00109{height:53.333333pt;}
.h3_c00109{height:58.666667pt;}
.h6_c00109{height:64.000000pt;}
.h2_c00109{height:69.333333pt;}
.h1_c00109{height:1142.000000pt;}
.h0_c00109{height:1142.079997pt;}
.w1_c00109{width:847.333333pt;}
.w0_c00109{width:847.360027pt;}
.x0_c00109{left:0.000000pt;}
.x1_c00109{left:141.466667pt;}
.x17_c00109{left:142.400000pt;}
.x2d_c00109{left:144.666667pt;}
.x12_c00109{left:146.933333pt;}
.x64_c00109{left:148.533333pt;}
.x7a_c00109{left:149.466667pt;}
.x84_c00109{left:150.400000pt;}
.x96_c00109{left:151.733333pt;}
.x29_c00109{left:156.266667pt;}
.x4_c00109{left:157.733333pt;}
.x13_c00109{left:158.800000pt;}
.x33_c00109{left:160.400000pt;}
.x39_c00109{left:161.600000pt;}
.x45_c00109{left:162.666667pt;}
.x69_c00109{left:163.733333pt;}
.x72_c00109{left:164.666667pt;}
.x6b_c00109{left:166.000000pt;}
.x9d_c00109{left:167.066667pt;}
.x65_c00109{left:177.066667pt;}
.x57_c00109{left:179.200000pt;}
.x66_c00109{left:180.800000pt;}
.x2a_c00109{left:182.800000pt;}
.x18_c00109{left:184.266667pt;}
.x7b_c00109{left:186.933333pt;}
.x34_c00109{left:190.800000pt;}
.x14_c00109{left:193.333333pt;}
.x89_c00109{left:196.133333pt;}
.x22_c00109{left:197.200000pt;}
.x97_c00109{left:198.133333pt;}
.x82_c00109{left:199.333333pt;}
.x52_c00109{left:200.933333pt;}
.x5f_c00109{left:202.933333pt;}
.x1e_c00109{left:206.533333pt;}
.x3a_c00109{left:208.266667pt;}
.x60_c00109{left:210.000000pt;}
.x4c_c00109{left:210.933333pt;}
.x8c_c00109{left:212.000000pt;}
.x98_c00109{left:213.466667pt;}
.x40_c00109{left:215.333333pt;}
.x1f_c00109{left:216.800000pt;}
.x5_c00109{left:218.266667pt;}
.x9c_c00109{left:219.200000pt;}
.x8d_c00109{left:220.266667pt;}
.xa6_c00109{left:221.866667pt;}
.x2b_c00109{left:222.800000pt;}
.x15_c00109{left:224.000000pt;}
.x53_c00109{left:225.600000pt;}
.x2e_c00109{left:227.600000pt;}
.x6f_c00109{left:228.933333pt;}
.x4d_c00109{left:230.400000pt;}
.x23_c00109{left:233.333333pt;}
.x3b_c00109{left:234.800000pt;}
.x2_c00109{left:236.533333pt;}
.x80_c00109{left:239.733333pt;}
.x75_c00109{left:241.866667pt;}
.x5a_c00109{left:243.333333pt;}
.x16_c00109{left:244.800000pt;}
.x7f_c00109{left:245.866667pt;}
.x7c_c00109{left:246.800000pt;}
.x24_c00109{left:250.266667pt;}
.x20_c00109{left:251.733333pt;}
.x35_c00109{left:253.733333pt;}
.x91_c00109{left:256.800000pt;}
.x2c_c00109{left:258.933333pt;}
.x6_c00109{left:260.133333pt;}
.x99_c00109{left:261.866667pt;}
.x5d_c00109{left:264.133333pt;}
.x48_c00109{left:268.000000pt;}
.x61_c00109{left:273.066667pt;}
.x36_c00109{left:274.533333pt;}
.x2f_c00109{left:276.933333pt;}
.x46_c00109{left:277.866667pt;}
.x76_c00109{left:279.600000pt;}
.x8f_c00109{left:280.533333pt;}
.x3c_c00109{left:281.866667pt;}
.x54_c00109{left:284.133333pt;}
.x83_c00109{left:285.733333pt;}
.x9e_c00109{left:287.466667pt;}
.x5e_c00109{left:288.400000pt;}
.x19_c00109{left:289.333333pt;}
.xa0_c00109{left:290.666667pt;}
.x92_c00109{left:293.600000pt;}
.x4e_c00109{left:295.066667pt;}
.x7_c00109{left:297.200000pt;}
.x25_c00109{left:299.866667pt;}
.x30_c00109{left:301.866667pt;}
.xa4_c00109{left:303.066667pt;}
.x70_c00109{left:304.800000pt;}
.x5b_c00109{left:306.400000pt;}
.x62_c00109{left:308.266667pt;}
.x21_c00109{left:309.600000pt;}
.x42_c00109{left:310.666667pt;}
.x77_c00109{left:313.466667pt;}
.x3d_c00109{left:315.466667pt;}
.x8_c00109{left:317.733333pt;}
.xa5_c00109{left:319.066667pt;}
.x1a_c00109{left:322.000000pt;}
.x5c_c00109{left:323.333333pt;}
.x6c_c00109{left:324.800000pt;}
.x49_c00109{left:326.000000pt;}
.x9a_c00109{left:327.866667pt;}
.x43_c00109{left:331.200000pt;}
.x7d_c00109{left:332.266667pt;}
.x4f_c00109{left:333.733333pt;}
.x8a_c00109{left:336.666667pt;}
.x31_c00109{left:340.533333pt;}
.x93_c00109{left:341.600000pt;}
.x1b_c00109{left:343.733333pt;}
.x85_c00109{left:345.600000pt;}
.x58_c00109{left:346.800000pt;}
.x63_c00109{left:348.933333pt;}
.x9_c00109{left:351.600000pt;}
.x78_c00109{left:352.800000pt;}
.x26_c00109{left:354.000000pt;}
.x9f_c00109{left:356.266667pt;}
.x3e_c00109{left:358.666667pt;}
.x3_c00109{left:362.666667pt;}
.x59_c00109{left:365.333333pt;}
.x4a_c00109{left:366.666667pt;}
.x90_c00109{left:367.600000pt;}
.x50_c00109{left:369.600000pt;}
.x87_c00109{left:371.600000pt;}
.x47_c00109{left:372.666667pt;}
.x79_c00109{left:373.600000pt;}
.x32_c00109{left:374.800000pt;}
.x71_c00109{left:376.800000pt;}
.x1c_c00109{left:381.466667pt;}
.x55_c00109{left:382.400000pt;}
.x41_c00109{left:385.600000pt;}
.x4b_c00109{left:386.533333pt;}
.x27_c00109{left:390.800000pt;}
.x94_c00109{left:391.866667pt;}
.xa_c00109{left:393.200000pt;}
.x37_c00109{left:395.466667pt;}
.x86_c00109{left:397.733333pt;}
.x67_c00109{left:398.666667pt;}
.x7e_c00109{left:401.333333pt;}
.x8b_c00109{left:402.266667pt;}
.x3f_c00109{left:404.400000pt;}
.x6d_c00109{left:405.466667pt;}
.xa2_c00109{left:407.866667pt;}
.x88_c00109{left:408.933333pt;}
.x51_c00109{left:410.533333pt;}
.x9b_c00109{left:411.733333pt;}
.x56_c00109{left:413.066667pt;}
.x8e_c00109{left:414.800000pt;}
.x44_c00109{left:415.733333pt;}
.x73_c00109{left:416.933333pt;}
.x28_c00109{left:418.666667pt;}
.xa1_c00109{left:420.400000pt;}
.x38_c00109{left:422.400000pt;}
.xa3_c00109{left:426.133333pt;}
.x6a_c00109{left:427.066667pt;}
.xb_c00109{left:428.400000pt;}
.x68_c00109{left:430.666667pt;}
.x74_c00109{left:432.666667pt;}
.x1d_c00109{left:433.733333pt;}
.x95_c00109{left:434.800000pt;}
.x6e_c00109{left:437.733333pt;}
.x81_c00109{left:440.400000pt;}
.xce_c00109{left:464.666667pt;}
.xc_c00109{left:466.133333pt;}
.x12c_c00109{left:467.200000pt;}
.x117_c00109{left:468.133333pt;}
.xdc_c00109{left:477.200000pt;}
.xa7_c00109{left:479.733333pt;}
.xb1_c00109{left:481.466667pt;}
.x11d_c00109{left:482.933333pt;}
.x129_c00109{left:484.000000pt;}
.x13c_c00109{left:485.066667pt;}
.xcf_c00109{left:486.133333pt;}
.xb2_c00109{left:490.133333pt;}
.xa8_c00109{left:496.266667pt;}
.x106_c00109{left:498.133333pt;}
.x11a_c00109{left:499.200000pt;}
.xe8_c00109{left:500.666667pt;}
.xb3_c00109{left:503.600000pt;}
.xb9_c00109{left:504.533333pt;}
.x120_c00109{left:505.600000pt;}
.xfe_c00109{left:506.666667pt;}
.xd_c00109{left:507.733333pt;}
.xbf_c00109{left:510.400000pt;}
.xcd_c00109{left:512.000000pt;}
.x130_c00109{left:513.066667pt;}
.xc6_c00109{left:515.600000pt;}
.xd4_c00109{left:517.466667pt;}
.xd8_c00109{left:519.733333pt;}
.x107_c00109{left:520.933333pt;}
.x136_c00109{left:522.266667pt;}
.xb4_c00109{left:524.133333pt;}
.x132_c00109{left:526.800000pt;}
.x110_c00109{left:528.000000pt;}
.xd5_c00109{left:530.266667pt;}
.x139_c00109{left:532.800000pt;}
.x10e_c00109{left:534.266667pt;}
.xc0_c00109{left:536.933333pt;}
.x11b_c00109{left:537.866667pt;}
.x104_c00109{left:538.800000pt;}
.xe4_c00109{left:540.666667pt;}
.xe_c00109{left:542.933333pt;}
.xe9_c00109{left:545.200000pt;}
.xff_c00109{left:546.933333pt;}
.x111_c00109{left:548.533333pt;}
.xba_c00109{left:550.266667pt;}
.x108_c00109{left:551.333333pt;}
.xa9_c00109{left:552.266667pt;}
.xed_c00109{left:553.866667pt;}
.xd9_c00109{left:555.866667pt;}
.x10f_c00109{left:556.933333pt;}
.x131_c00109{left:557.866667pt;}
.xdd_c00109{left:559.200000pt;}
.xf3_c00109{left:560.800000pt;}
.xd0_c00109{left:562.933333pt;}
.xd6_c00109{left:564.533333pt;}
.xe5_c00109{left:567.200000pt;}
.x121_c00109{left:570.000000pt;}
.xc1_c00109{left:572.133333pt;}
.xaa_c00109{left:573.333333pt;}
.xee_c00109{left:576.533333pt;}
.x125_c00109{left:578.000000pt;}
.x109_c00109{left:579.466667pt;}
.xd7_c00109{left:580.800000pt;}
.xf9_c00109{left:581.866667pt;}
.xc7_c00109{left:584.933333pt;}
.x100_c00109{left:587.600000pt;}
.xf4_c00109{left:591.200000pt;}
.xe1_c00109{left:592.133333pt;}
.x114_c00109{left:594.266667pt;}
.xab_c00109{left:595.466667pt;}
.x12f_c00109{left:597.200000pt;}
.xb5_c00109{left:599.333333pt;}
.x112_c00109{left:601.333333pt;}
.x118_c00109{left:602.533333pt;}
.xc2_c00109{left:603.466667pt;}
.xe6_c00109{left:605.333333pt;}
.xd1_c00109{left:607.733333pt;}
.xc8_c00109{left:608.933333pt;}
.xf_c00109{left:611.066667pt;}
.x12a_c00109{left:612.400000pt;}
.x105_c00109{left:614.666667pt;}
.x113_c00109{left:616.666667pt;}
.x126_c00109{left:620.266667pt;}
.xac_c00109{left:621.333333pt;}
.xea_c00109{left:623.600000pt;}
.xbb_c00109{left:624.800000pt;}
.x12d_c00109{left:628.400000pt;}
.xef_c00109{left:629.600000pt;}
.xda_c00109{left:631.466667pt;}
.xfa_c00109{left:634.400000pt;}
.x101_c00109{left:635.333333pt;}
.xb6_c00109{left:636.800000pt;}
.x10b_c00109{left:637.733333pt;}
.xc9_c00109{left:639.333333pt;}
.xad_c00109{left:641.866667pt;}
.xd2_c00109{left:644.800000pt;}
.xb7_c00109{left:645.733333pt;}
.x122_c00109{left:647.200000pt;}
.x115_c00109{left:648.400000pt;}
.xf5_c00109{left:649.466667pt;}
.xf0_c00109{left:651.733333pt;}
.xc3_c00109{left:652.666667pt;}
.xe2_c00109{left:654.000000pt;}
.xe7_c00109{left:655.600000pt;}
.x137_c00109{left:658.666667pt;}
.x102_c00109{left:659.600000pt;}
.xeb_c00109{left:661.733333pt;}
.x11e_c00109{left:663.733333pt;}
.x127_c00109{left:664.800000pt;}
.x116_c00109{left:665.733333pt;}
.xca_c00109{left:669.066667pt;}
.x13e_c00109{left:670.000000pt;}
.xc4_c00109{left:671.200000pt;}
.xf6_c00109{left:672.533333pt;}
.xdf_c00109{left:674.000000pt;}
.x133_c00109{left:676.133333pt;}
.xbc_c00109{left:677.333333pt;}
.x123_c00109{left:679.200000pt;}
.x12b_c00109{left:680.666667pt;}
.xf1_c00109{left:683.466667pt;}
.xd3_c00109{left:684.800000pt;}
.xbd_c00109{left:686.933333pt;}
.x10_c00109{left:688.533333pt;}
.xfb_c00109{left:690.400000pt;}
.xcb_c00109{left:691.733333pt;}
.xae_c00109{left:694.666667pt;}
.xc5_c00109{left:696.133333pt;}
.x12e_c00109{left:697.600000pt;}
.x134_c00109{left:699.866667pt;}
.xdb_c00109{left:703.466667pt;}
.xaf_c00109{left:704.533333pt;}
.xde_c00109{left:705.466667pt;}
.x119_c00109{left:707.200000pt;}
.x138_c00109{left:708.533333pt;}
.xfc_c00109{left:709.600000pt;}
.x13a_c00109{left:711.600000pt;}
.xec_c00109{left:712.933333pt;}
.x128_c00109{left:714.800000pt;}
.xf7_c00109{left:716.666667pt;}
.x10d_c00109{left:717.600000pt;}
.xcc_c00109{left:722.800000pt;}
.xe0_c00109{left:724.533333pt;}
.x124_c00109{left:730.400000pt;}
.xfd_c00109{left:732.000000pt;}
.xbe_c00109{left:736.266667pt;}
.xb0_c00109{left:738.133333pt;}
.x10c_c00109{left:739.200000pt;}
.xe3_c00109{left:741.333333pt;}
.x11_c00109{left:742.666667pt;}
.x13b_c00109{left:744.000000pt;}
.xb8_c00109{left:744.933333pt;}
.x11f_c00109{left:746.000000pt;}
.x135_c00109{left:749.466667pt;}
.x103_c00109{left:750.533333pt;}
.x10a_c00109{left:752.533333pt;}
.xf2_c00109{left:754.133333pt;}
.x13d_c00109{left:755.200000pt;}
.xf8_c00109{left:756.933333pt;}
.x11c_c00109{left:762.933333pt;}
}





/* 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_c00110 {
    display:none;
  }
  .loading-indicator_c00110.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00110 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_c00110 { 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_c00110" -> "#page-container .classname_c00110")
 */
.pf_c00110 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00110 { /* 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_c00110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00110 { /* 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_c00110 { /* 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_c00110 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00110 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00110 {overflow:visible;}
  }
}
.c_c00110 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00110 { /* 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_c00110:after { /* webkit #35443 */
  content: '';
}
.t_c00110:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00110 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 */
}
.__c00110 { /* 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_c00110 { /* info for Javascript */
  display:none;
}
.l_c00110 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00110 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00110 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00110: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_c00110 {
    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_c00110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00110.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_c00110 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00110;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.000000;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;}
.mf5_c00110{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00110{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00110{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m33_c00110{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00110{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00110{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00110{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00110{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00110{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00110{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00110{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00110{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m12_c00110{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me0_c00110{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00110{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00110{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00110{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.md6_c00110{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mb_c00110{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00110{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.md_c00110{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mec_c00110{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00110{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00110{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00110{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00110{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00110{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m88_c00110{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00110{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00110{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m71_c00110{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m98_c00110{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md4_c00110{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m97_c00110{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m22_c00110{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00110{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m23_c00110{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m35_c00110{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mab_c00110{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m95_c00110{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00110{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00110{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mac_c00110{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m44_c00110{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00110{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m87_c00110{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m32_c00110{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.me2_c00110{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m94_c00110{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00110{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md1_c00110{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m89_c00110{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m104_c00110{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00110{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00110{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m73_c00110{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m29_c00110{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m107_c00110{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00110{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m20_c00110{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00110{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00110{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00110{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00110{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7_c00110{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md0_c00110{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me_c00110{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m93_c00110{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m21_c00110{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m75_c00110{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m58_c00110{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m59_c00110{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m83_c00110{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m116_c00110{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00110{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m69_c00110{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m82_c00110{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m56_c00110{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m42_c00110{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00110{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00110{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m37_c00110{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00110{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m48_c00110{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00110{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m45_c00110{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5_c00110{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00110{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m26_c00110{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m39_c00110{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m27_c00110{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00110{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m101_c00110{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00110{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m28_c00110{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00110{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.maf_c00110{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m85_c00110{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00110{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00110{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m46_c00110{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00110{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00110{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00110{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00110{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m31_c00110{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m36_c00110{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mde_c00110{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m16_c00110{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m74_c00110{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.md5_c00110{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me4_c00110{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00110{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md9_c00110{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m47_c00110{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00110{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00110{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m81_c00110{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00110{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m25_c00110{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me7_c00110{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mea_c00110{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00110{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10_c00110{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00110{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m34_c00110{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m41_c00110{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00110{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00110{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00110{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00110{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m15_c00110{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00110{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00110{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m55_c00110{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m62_c00110{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00110{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00110{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00110{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00110{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.maa_c00110{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m54_c00110{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00110{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md8_c00110{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m96_c00110{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m91_c00110{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00110{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mda_c00110{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m92_c00110{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mee_c00110{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m50_c00110{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00110{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m84_c00110{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m30_c00110{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00110{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me1_c00110{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m38_c00110{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me9_c00110{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m51_c00110{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m106_c00110{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00110{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m40_c00110{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00110{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00110{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00110{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me6_c00110{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00110{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.md7_c00110{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00110{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00110{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m57_c00110{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mca_c00110{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m102_c00110{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mef_c00110{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mad_c00110{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m80_c00110{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me3_c00110{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m113_c00110{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00110{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00110{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m86_c00110{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m76_c00110{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma_c00110{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m99_c00110{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6_c00110{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00110{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md3_c00110{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m68_c00110{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m24_c00110{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m43_c00110{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m53_c00110{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00110{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m112_c00110{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m100_c00110{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m114_c00110{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8_c00110{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00110{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00110{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00110{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m63_c00110{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m115_c00110{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00110{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m109_c00110{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m18_c00110{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00110{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00110{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00110{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00110{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mae_c00110{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00110{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc_c00110{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.meb_c00110{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m49_c00110{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m66_c00110{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m70_c00110{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00110{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00110{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m64_c00110{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00110{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m79_c00110{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00110{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00110{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00110{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00110{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me8_c00110{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.me5_c00110{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md2_c00110{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00110{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m65_c00110{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m111_c00110{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m60_c00110{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mce_c00110{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m2_c00110{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00110{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m17_c00110{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00110{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00110{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mf_c00110{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m67_c00110{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00110{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00110{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m11_c00110{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m14_c00110{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m13_c00110{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m103_c00110{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m52_c00110{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m105_c00110{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00110{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00110{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00110{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m110_c00110{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00110{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00110{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m72_c00110{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00110{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00110{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00110{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00110{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m61_c00110{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00110{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m19_c00110{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00110{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m3_c00110{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.med_c00110{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m78_c00110{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.mba_c00110{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m108_c00110{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00110{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00110{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00110{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m77_c00110{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00110{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00110{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00110{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00110{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mff_c00110{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m0_c00110{transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);}
.m90_c00110{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls0_c00110{letter-spacing:0.000000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{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__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00110{word-spacing:-9.778875px;}
.wse_c00110{word-spacing:-8.425532px;}
.wsd_c00110{word-spacing:-8.311426px;}
.wsc_c00110{word-spacing:-7.500000px;}
.ws2_c00110{word-spacing:-6.578947px;}
.ws8_c00110{word-spacing:-5.751592px;}
.ws10_c00110{word-spacing:0.000000px;}
.wsb_c00110{word-spacing:0.853659px;}
.ws7_c00110{word-spacing:3.405498px;}
.ws0_c00110{word-spacing:3.827681px;}
.wsf_c00110{word-spacing:8.611111px;}
.ws6_c00110{word-spacing:19.994638px;}
.ws3_c00110{word-spacing:20.785714px;}
.ws4_c00110{word-spacing:24.000000px;}
.ws5_c00110{word-spacing:30.250000px;}
.ws9_c00110{word-spacing:40.000000px;}
.wsa_c00110{word-spacing:44.166667px;}
._0_c00110{width:53.428954px;}
._1_c00110{width:74.166667px;}
.fc0_c00110{color:transparent;}
.fs6_c00110{font-size:36.000000px;}
.fs5_c00110{font-size:48.000000px;}
.fs3_c00110{font-size:54.000000px;}
.fs1_c00110{font-size:60.000000px;}
.fs2_c00110{font-size:66.000000px;}
.fs4_c00110{font-size:72.000000px;}
.fs0_c00110{font-size:84.000000px;}
.y0_c00110{bottom:0.000000px;}
.y66_c00110{bottom:174.900000px;}
.y33_c00110{bottom:175.350000px;}
.y65_c00110{bottom:190.050000px;}
.y32_c00110{bottom:191.550000px;}
.y31_c00110{bottom:206.250000px;}
.y64_c00110{bottom:210.600000px;}
.y30_c00110{bottom:219.600000px;}
.y63_c00110{bottom:228.600000px;}
.y2f_c00110{bottom:235.050000px;}
.y62_c00110{bottom:246.900000px;}
.y2e_c00110{bottom:248.700000px;}
.y61_c00110{bottom:264.900000px;}
.y2d_c00110{bottom:265.650000px;}
.y2c_c00110{bottom:286.950000px;}
.y60_c00110{bottom:291.600000px;}
.y2b_c00110{bottom:306.750000px;}
.y5f_c00110{bottom:309.600000px;}
.y2a_c00110{bottom:327.600000px;}
.y5e_c00110{bottom:327.900000px;}
.y5d_c00110{bottom:345.600000px;}
.y29_c00110{bottom:347.100000px;}
.y28_c00110{bottom:365.400000px;}
.y5c_c00110{bottom:367.800000px;}
.y27_c00110{bottom:383.100000px;}
.y5b_c00110{bottom:385.500000px;}
.y26_c00110{bottom:401.400000px;}
.y5a_c00110{bottom:415.800000px;}
.y25_c00110{bottom:419.400000px;}
.y59_c00110{bottom:434.100000px;}
.y24_c00110{bottom:437.400000px;}
.y23_c00110{bottom:455.400000px;}
.y58_c00110{bottom:460.500000px;}
.y22_c00110{bottom:478.050000px;}
.y57_c00110{bottom:478.800000px;}
.y56_c00110{bottom:500.700000px;}
.y21_c00110{bottom:509.100000px;}
.y55_c00110{bottom:514.350000px;}
.y54_c00110{bottom:520.500000px;}
.y20_c00110{bottom:527.100000px;}
.y53_c00110{bottom:541.050000px;}
.y1f_c00110{bottom:549.000000px;}
.y52_c00110{bottom:559.800000px;}
.y1e_c00110{bottom:568.050000px;}
.y51_c00110{bottom:581.700000px;}
.y1d_c00110{bottom:591.150000px;}
.y50_c00110{bottom:600.000000px;}
.y1c_c00110{bottom:609.150000px;}
.y4f_c00110{bottom:618.000000px;}
.y1b_c00110{bottom:627.150000px;}
.y4e_c00110{bottom:635.700000px;}
.y1a_c00110{bottom:649.800000px;}
.y4d_c00110{bottom:654.150000px;}
.y19_c00110{bottom:669.600000px;}
.y4c_c00110{bottom:671.700000px;}
.y4b_c00110{bottom:689.700000px;}
.y18_c00110{bottom:690.150000px;}
.y17_c00110{bottom:707.400000px;}
.y4a_c00110{bottom:707.700000px;}
.y49_c00110{bottom:725.700000px;}
.y16_c00110{bottom:734.400000px;}
.y48_c00110{bottom:743.700000px;}
.y15_c00110{bottom:757.050000px;}
.y47_c00110{bottom:761.700000px;}
.y14_c00110{bottom:779.400000px;}
.y46_c00110{bottom:779.700000px;}
.y13_c00110{bottom:797.700000px;}
.y12_c00110{bottom:815.400000px;}
.y45_c00110{bottom:815.700000px;}
.y11_c00110{bottom:833.700000px;}
.y44_c00110{bottom:834.000000px;}
.y10_c00110{bottom:851.400000px;}
.y43_c00110{bottom:852.000000px;}
.yf_c00110{bottom:869.700000px;}
.y42_c00110{bottom:870.000000px;}
.ye_c00110{bottom:887.400000px;}
.y41_c00110{bottom:888.000000px;}
.y40_c00110{bottom:906.000000px;}
.yd_c00110{bottom:908.250000px;}
.y3f_c00110{bottom:924.000000px;}
.yc_c00110{bottom:928.800000px;}
.y3e_c00110{bottom:941.700000px;}
.yb_c00110{bottom:946.800000px;}
.y3d_c00110{bottom:959.700000px;}
.ya_c00110{bottom:964.500000px;}
.y3c_c00110{bottom:977.700000px;}
.y9_c00110{bottom:986.400000px;}
.y3b_c00110{bottom:995.700000px;}
.y8_c00110{bottom:1004.700000px;}
.y3a_c00110{bottom:1014.000000px;}
.y7_c00110{bottom:1022.700000px;}
.y39_c00110{bottom:1031.700000px;}
.y6_c00110{bottom:1039.950000px;}
.y5_c00110{bottom:1045.050000px;}
.y38_c00110{bottom:1051.950000px;}
.y37_c00110{bottom:1066.350000px;}
.y4_c00110{bottom:1072.050000px;}
.y36_c00110{bottom:1080.750000px;}
.y3_c00110{bottom:1094.700000px;}
.y35_c00110{bottom:1095.900000px;}
.y34_c00110{bottom:1112.100000px;}
.y2_c00110{bottom:1112.700000px;}
.y1_c00110{bottom:1139.100000px;}
.h8_c00110{height:36.000000px;}
.h7_c00110{height:48.000000px;}
.h5_c00110{height:54.000000px;}
.h3_c00110{height:60.000000px;}
.h4_c00110{height:66.000000px;}
.h6_c00110{height:72.000000px;}
.h2_c00110{height:84.000000px;}
.h0_c00110{height:1275.480010px;}
.h1_c00110{height:1275.750000px;}
.w1_c00110{width:953.250000px;}
.w0_c00110{width:953.280030px;}
.x0_c00110{left:0.000000px;}
.x89_c00110{left:69.450000px;}
.x6e_c00110{left:73.050000px;}
.x6f_c00110{left:74.100000px;}
.x61_c00110{left:75.150000px;}
.x56_c00110{left:76.350000px;}
.x58_c00110{left:77.700000px;}
.x2_c00110{left:78.900000px;}
.x11_c00110{left:81.000000px;}
.x93_c00110{left:85.350000px;}
.x91_c00110{left:86.400000px;}
.x6a_c00110{left:91.200000px;}
.x81_c00110{left:92.250000px;}
.x64_c00110{left:94.050000px;}
.x5a_c00110{left:95.250000px;}
.x40_c00110{left:97.350000px;}
.xa_c00110{left:98.400000px;}
.x9d_c00110{left:101.250000px;}
.x95_c00110{left:102.600000px;}
.x7d_c00110{left:105.750000px;}
.x5c_c00110{left:114.150000px;}
.x65_c00110{left:115.350000px;}
.x1a_c00110{left:118.500000px;}
.x2f_c00110{left:121.350000px;}
.x7e_c00110{left:123.000000px;}
.x12_c00110{left:124.200000px;}
.x2a_c00110{left:126.300000px;}
.x74_c00110{left:128.100000px;}
.x82_c00110{left:130.800000px;}
.x66_c00110{left:131.850000px;}
.x4b_c00110{left:132.900000px;}
.x4f_c00110{left:134.550000px;}
.x41_c00110{left:136.200000px;}
.x96_c00110{left:138.300000px;}
.x20_c00110{left:140.850000px;}
.x18_c00110{left:142.200000px;}
.x9e_c00110{left:143.400000px;}
.x37_c00110{left:145.050000px;}
.x3_c00110{left:146.550000px;}
.x92_c00110{left:147.600000px;}
.x49_c00110{left:149.400000px;}
.x13_c00110{left:150.450000px;}
.x7a_c00110{left:152.100000px;}
.x87_c00110{left:153.750000px;}
.x50_c00110{left:156.450000px;}
.x9f_c00110{left:158.100000px;}
.x14_c00110{left:159.150000px;}
.x98_c00110{left:160.200000px;}
.x60_c00110{left:162.300000px;}
.x1b_c00110{left:164.550000px;}
.x6b_c00110{left:166.050000px;}
.x42_c00110{left:167.850000px;}
.x3b_c00110{left:171.750000px;}
.x57_c00110{left:174.300000px;}
.x99_c00110{left:175.350000px;}
.xb_c00110{left:176.400000px;}
.x4_c00110{left:177.900000px;}
.x27_c00110{left:179.250000px;}
.x21_c00110{left:180.750000px;}
.x97_c00110{left:182.550000px;}
.x38_c00110{left:184.350000px;}
.x30_c00110{left:187.200000px;}
.x5b_c00110{left:188.850000px;}
.x51_c00110{left:193.950000px;}
.x2b_c00110{left:196.200000px;}
.x9a_c00110{left:197.700000px;}
.x67_c00110{left:200.700000px;}
.x6c_c00110{left:201.750000px;}
.x39_c00110{left:203.400000px;}
.x22_c00110{left:204.900000px;}
.x88_c00110{left:208.050000px;}
.xc_c00110{left:212.400000px;}
.x43_c00110{left:215.400000px;}
.x31_c00110{left:217.050000px;}
.x8d_c00110{left:218.100000px;}
.x1c_c00110{left:220.050000px;}
.xd_c00110{left:221.700000px;}
.x3c_c00110{left:222.900000px;}
.x28_c00110{left:223.950000px;}
.x78_c00110{left:227.100000px;}
.x7b_c00110{left:228.450000px;}
.x5_c00110{left:231.150000px;}
.x15_c00110{left:232.200000px;}
.x9b_c00110{left:233.700000px;}
.x5d_c00110{left:235.050000px;}
.x75_c00110{left:237.000000px;}
.x23_c00110{left:238.350000px;}
.x52_c00110{left:241.500000px;}
.x3d_c00110{left:243.750000px;}
.xe_c00110{left:245.100000px;}
.x29_c00110{left:247.050000px;}
.x59_c00110{left:249.300000px;}
.x4c_c00110{left:250.350000px;}
.x32_c00110{left:253.050000px;}
.x3a_c00110{left:255.900000px;}
.x76_c00110{left:257.850000px;}
.xf_c00110{left:259.200000px;}
.x53_c00110{left:261.600000px;}
.xa0_c00110{left:262.650000px;}
.x6d_c00110{left:264.150000px;}
.x1d_c00110{left:267.600000px;}
.x8a_c00110{left:268.800000px;}
.x45_c00110{left:270.300000px;}
.x24_c00110{left:274.650000px;}
.x8e_c00110{left:275.700000px;}
.x62_c00110{left:276.750000px;}
.x19_c00110{left:277.950000px;}
.x70_c00110{left:280.350000px;}
.x7c_c00110{left:281.400000px;}
.x10_c00110{left:283.350000px;}
.x6_c00110{left:284.400000px;}
.x3e_c00110{left:286.650000px;}
.x44_c00110{left:287.700000px;}
.x16_c00110{left:289.800000px;}
.x9c_c00110{left:291.450000px;}
.x33_c00110{left:296.250000px;}
.x25_c00110{left:298.050000px;}
.x2c_c00110{left:299.250000px;}
.x7_c00110{left:305.700000px;}
.x4d_c00110{left:308.400000px;}
.x54_c00110{left:311.250000px;}
.x2d_c00110{left:312.900000px;}
.x84_c00110{left:313.950000px;}
.x34_c00110{left:315.000000px;}
.x7f_c00110{left:320.250000px;}
.x46_c00110{left:321.450000px;}
.x3f_c00110{left:323.400000px;}
.x71_c00110{left:325.050000px;}
.x1_c00110{left:328.650000px;}
.x5e_c00110{left:330.450000px;}
.x8f_c00110{left:332.250000px;}
.x1e_c00110{left:333.450000px;}
.x4e_c00110{left:335.100000px;}
.x85_c00110{left:337.050000px;}
.x17_c00110{left:340.200000px;}
.x8b_c00110{left:343.950000px;}
.x55_c00110{left:347.550000px;}
.x2e_c00110{left:348.600000px;}
.x68_c00110{left:353.250000px;}
.x80_c00110{left:354.750000px;}
.x35_c00110{left:358.950000px;}
.x63_c00110{left:360.150000px;}
.x69_c00110{left:361.500000px;}
.x72_c00110{left:363.150000px;}
.x77_c00110{left:367.500000px;}
.x47_c00110{left:369.300000px;}
.xa1_c00110{left:370.500000px;}
.x83_c00110{left:372.300000px;}
.x8_c00110{left:377.400000px;}
.x86_c00110{left:381.300000px;}
.x5f_c00110{left:382.350000px;}
.x79_c00110{left:383.550000px;}
.x36_c00110{left:385.200000px;}
.x1f_c00110{left:388.500000px;}
.x4a_c00110{left:390.300000px;}
.x26_c00110{left:391.350000px;}
.x8c_c00110{left:393.600000px;}
.x90_c00110{left:397.050000px;}
.x94_c00110{left:398.550000px;}
.x73_c00110{left:405.300000px;}
.x9_c00110{left:411.600000px;}
.x48_c00110{left:415.050000px;}
.x147_c00110{left:432.000000px;}
.x142_c00110{left:433.050000px;}
.x133_c00110{left:434.850000px;}
.x13a_c00110{left:436.350000px;}
.x129_c00110{left:437.400000px;}
.xc3_c00110{left:442.500000px;}
.x145_c00110{left:450.300000px;}
.x134_c00110{left:451.350000px;}
.x136_c00110{left:452.850000px;}
.x127_c00110{left:454.050000px;}
.x11b_c00110{left:455.250000px;}
.x109_c00110{left:456.450000px;}
.xbc_c00110{left:457.500000px;}
.xc8_c00110{left:459.900000px;}
.x12e_c00110{left:463.200000px;}
.x12f_c00110{left:466.650000px;}
.x13c_c00110{left:469.800000px;}
.xa5_c00110{left:471.900000px;}
.x139_c00110{left:474.000000px;}
.x102_c00110{left:476.100000px;}
.xfb_c00110{left:477.600000px;}
.x13b_c00110{left:479.850000px;}
.x11d_c00110{left:480.900000px;}
.x115_c00110{left:481.950000px;}
.x107_c00110{left:488.550000px;}
.x128_c00110{left:490.350000px;}
.x148_c00110{left:492.450000px;}
.xb6_c00110{left:493.800000px;}
.x130_c00110{left:495.450000px;}
.xc9_c00110{left:496.950000px;}
.xdf_c00110{left:498.750000px;}
.xe9_c00110{left:499.800000px;}
.x10c_c00110{left:501.750000px;}
.x103_c00110{left:503.850000px;}
.xcf_c00110{left:506.100000px;}
.xa6_c00110{left:509.700000px;}
.xe0_c00110{left:511.650000px;}
.xdb_c00110{left:512.700000px;}
.xb0_c00110{left:513.900000px;}
.xd7_c00110{left:516.000000px;}
.xb7_c00110{left:517.950000px;}
.x10d_c00110{left:520.050000px;}
.xbd_c00110{left:522.600000px;}
.xca_c00110{left:525.750000px;}
.xa7_c00110{left:527.400000px;}
.xbe_c00110{left:530.100000px;}
.x125_c00110{left:531.150000px;}
.xea_c00110{left:532.500000px;}
.xd0_c00110{left:533.850000px;}
.x122_c00110{left:536.700000px;}
.xf3_c00110{left:539.250000px;}
.x131_c00110{left:541.200000px;}
.xeb_c00110{left:543.300000px;}
.x140_c00110{left:545.100000px;}
.xcb_c00110{left:546.300000px;}
.x113_c00110{left:548.250000px;}
.xe5_c00110{left:549.900000px;}
.xbf_c00110{left:551.700000px;}
.xb1_c00110{left:556.050000px;}
.xd1_c00110{left:558.000000px;}
.xa8_c00110{left:559.500000px;}
.x12a_c00110{left:562.350000px;}
.x10a_c00110{left:564.150000px;}
.xb2_c00110{left:565.350000px;}
.xec_c00110{left:567.000000px;}
.xc4_c00110{left:568.500000px;}
.xdc_c00110{left:572.100000px;}
.xb8_c00110{left:574.050000px;}
.xa9_c00110{left:575.400000px;}
.x116_c00110{left:577.200000px;}
.x124_c00110{left:585.150000px;}
.xd2_c00110{left:587.100000px;}
.x137_c00110{left:588.900000px;}
.x144_c00110{left:590.550000px;}
.xfd_c00110{left:591.750000px;}
.xf4_c00110{left:593.550000px;}
.x104_c00110{left:594.600000px;}
.xb9_c00110{left:597.150000px;}
.x141_c00110{left:598.800000px;}
.x12b_c00110{left:599.850000px;}
.x114_c00110{left:601.200000px;}
.xe6_c00110{left:603.600000px;}
.xaa_c00110{left:605.700000px;}
.x110_c00110{left:607.350000px;}
.x149_c00110{left:609.300000px;}
.x138_c00110{left:610.800000px;}
.x11e_c00110{left:613.050000px;}
.xb3_c00110{left:615.000000px;}
.xc0_c00110{left:617.550000px;}
.x11c_c00110{left:618.750000px;}
.xf5_c00110{left:621.000000px;}
.xab_c00110{left:624.000000px;}
.xd8_c00110{left:625.050000px;}
.xed_c00110{left:626.700000px;}
.x146_c00110{left:628.050000px;}
.xdd_c00110{left:630.750000px;}
.xc1_c00110{left:631.950000px;}
.x117_c00110{left:633.300000px;}
.xb4_c00110{left:634.500000px;}
.xba_c00110{left:637.050000px;}
.x11f_c00110{left:638.550000px;}
.x105_c00110{left:641.100000px;}
.x10e_c00110{left:643.050000px;}
.x13e_c00110{left:644.250000px;}
.xe1_c00110{left:645.300000px;}
.xf0_c00110{left:647.400000px;}
.x132_c00110{left:648.900000px;}
.xd3_c00110{left:650.100000px;}
.xf6_c00110{left:653.700000px;}
.xc5_c00110{left:657.600000px;}
.xac_c00110{left:660.750000px;}
.xbb_c00110{left:661.950000px;}
.xfe_c00110{left:663.750000px;}
.xe2_c00110{left:664.800000px;}
.x111_c00110{left:666.150000px;}
.xde_c00110{left:667.800000px;}
.x108_c00110{left:669.900000px;}
.xcc_c00110{left:671.250000px;}
.xf7_c00110{left:673.500000px;}
.xee_c00110{left:674.850000px;}
.xf1_c00110{left:675.900000px;}
.x123_c00110{left:678.750000px;}
.x13f_c00110{left:680.250000px;}
.xd9_c00110{left:682.650000px;}
.x120_c00110{left:685.650000px;}
.x10b_c00110{left:687.600000px;}
.xf8_c00110{left:689.700000px;}
.xb5_c00110{left:691.050000px;}
.x135_c00110{left:692.550000px;}
.x12c_c00110{left:696.000000px;}
.x118_c00110{left:697.650000px;}
.x143_c00110{left:699.900000px;}
.xa2_c00110{left:701.700000px;}
.xc6_c00110{left:703.650000px;}
.xf2_c00110{left:706.800000px;}
.xff_c00110{left:708.000000px;}
.xad_c00110{left:710.400000px;}
.xcd_c00110{left:711.900000px;}
.xd4_c00110{left:713.400000px;}
.xe7_c00110{left:715.200000px;}
.x126_c00110{left:719.400000px;}
.xe3_c00110{left:720.600000px;}
.x12d_c00110{left:721.650000px;}
.x106_c00110{left:723.300000px;}
.xc7_c00110{left:725.250000px;}
.x13d_c00110{left:726.900000px;}
.xda_c00110{left:727.950000px;}
.x10f_c00110{left:729.150000px;}
.xd5_c00110{left:731.400000px;}
.xa3_c00110{left:732.600000px;}
.xf9_c00110{left:733.950000px;}
.x119_c00110{left:735.450000px;}
.x100_c00110{left:737.100000px;}
.x112_c00110{left:738.150000px;}
.xc2_c00110{left:739.500000px;}
.xae_c00110{left:740.700000px;}
.x11a_c00110{left:744.750000px;}
.xfc_c00110{left:748.350000px;}
.xe8_c00110{left:749.700000px;}
.xfa_c00110{left:751.200000px;}
.xef_c00110{left:753.450000px;}
.x101_c00110{left:757.950000px;}
.xce_c00110{left:760.500000px;}
.xe4_c00110{left:764.100000px;}
.xa4_c00110{left:766.800000px;}
.xaf_c00110{left:768.750000px;}
.xd6_c00110{left:776.400000px;}
.x121_c00110{left:784.950000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws1_c00110{word-spacing:-8.692333pt;}
.wse_c00110{word-spacing:-7.489362pt;}
.wsd_c00110{word-spacing:-7.387934pt;}
.wsc_c00110{word-spacing:-6.666667pt;}
.ws2_c00110{word-spacing:-5.847953pt;}
.ws8_c00110{word-spacing:-5.112527pt;}
.ws10_c00110{word-spacing:0.000000pt;}
.wsb_c00110{word-spacing:0.758808pt;}
.ws7_c00110{word-spacing:3.027110pt;}
.ws0_c00110{word-spacing:3.402383pt;}
.wsf_c00110{word-spacing:7.654321pt;}
.ws6_c00110{word-spacing:17.773012pt;}
.ws3_c00110{word-spacing:18.476190pt;}
.ws4_c00110{word-spacing:21.333333pt;}
.ws5_c00110{word-spacing:26.888889pt;}
.ws9_c00110{word-spacing:35.555556pt;}
.wsa_c00110{word-spacing:39.259259pt;}
._0_c00110{width:47.492404pt;}
._1_c00110{width:65.925926pt;}
.fs6_c00110{font-size:32.000000pt;}
.fs5_c00110{font-size:42.666667pt;}
.fs3_c00110{font-size:48.000000pt;}
.fs1_c00110{font-size:53.333333pt;}
.fs2_c00110{font-size:58.666667pt;}
.fs4_c00110{font-size:64.000000pt;}
.fs0_c00110{font-size:74.666667pt;}
.y0_c00110{bottom:0.000000pt;}
.y66_c00110{bottom:155.466667pt;}
.y33_c00110{bottom:155.866667pt;}
.y65_c00110{bottom:168.933333pt;}
.y32_c00110{bottom:170.266667pt;}
.y31_c00110{bottom:183.333333pt;}
.y64_c00110{bottom:187.200000pt;}
.y30_c00110{bottom:195.200000pt;}
.y63_c00110{bottom:203.200000pt;}
.y2f_c00110{bottom:208.933333pt;}
.y62_c00110{bottom:219.466667pt;}
.y2e_c00110{bottom:221.066667pt;}
.y61_c00110{bottom:235.466667pt;}
.y2d_c00110{bottom:236.133333pt;}
.y2c_c00110{bottom:255.066667pt;}
.y60_c00110{bottom:259.200000pt;}
.y2b_c00110{bottom:272.666667pt;}
.y5f_c00110{bottom:275.200000pt;}
.y2a_c00110{bottom:291.200000pt;}
.y5e_c00110{bottom:291.466667pt;}
.y5d_c00110{bottom:307.200000pt;}
.y29_c00110{bottom:308.533333pt;}
.y28_c00110{bottom:324.800000pt;}
.y5c_c00110{bottom:326.933333pt;}
.y27_c00110{bottom:340.533333pt;}
.y5b_c00110{bottom:342.666667pt;}
.y26_c00110{bottom:356.800000pt;}
.y5a_c00110{bottom:369.600000pt;}
.y25_c00110{bottom:372.800000pt;}
.y59_c00110{bottom:385.866667pt;}
.y24_c00110{bottom:388.800000pt;}
.y23_c00110{bottom:404.800000pt;}
.y58_c00110{bottom:409.333333pt;}
.y22_c00110{bottom:424.933333pt;}
.y57_c00110{bottom:425.600000pt;}
.y56_c00110{bottom:445.066667pt;}
.y21_c00110{bottom:452.533333pt;}
.y55_c00110{bottom:457.200000pt;}
.y54_c00110{bottom:462.666667pt;}
.y20_c00110{bottom:468.533333pt;}
.y53_c00110{bottom:480.933333pt;}
.y1f_c00110{bottom:488.000000pt;}
.y52_c00110{bottom:497.600000pt;}
.y1e_c00110{bottom:504.933333pt;}
.y51_c00110{bottom:517.066667pt;}
.y1d_c00110{bottom:525.466667pt;}
.y50_c00110{bottom:533.333333pt;}
.y1c_c00110{bottom:541.466667pt;}
.y4f_c00110{bottom:549.333333pt;}
.y1b_c00110{bottom:557.466667pt;}
.y4e_c00110{bottom:565.066667pt;}
.y1a_c00110{bottom:577.600000pt;}
.y4d_c00110{bottom:581.466667pt;}
.y19_c00110{bottom:595.200000pt;}
.y4c_c00110{bottom:597.066667pt;}
.y4b_c00110{bottom:613.066667pt;}
.y18_c00110{bottom:613.466667pt;}
.y17_c00110{bottom:628.800000pt;}
.y4a_c00110{bottom:629.066667pt;}
.y49_c00110{bottom:645.066667pt;}
.y16_c00110{bottom:652.800000pt;}
.y48_c00110{bottom:661.066667pt;}
.y15_c00110{bottom:672.933333pt;}
.y47_c00110{bottom:677.066667pt;}
.y14_c00110{bottom:692.800000pt;}
.y46_c00110{bottom:693.066667pt;}
.y13_c00110{bottom:709.066667pt;}
.y12_c00110{bottom:724.800000pt;}
.y45_c00110{bottom:725.066667pt;}
.y11_c00110{bottom:741.066667pt;}
.y44_c00110{bottom:741.333333pt;}
.y10_c00110{bottom:756.800000pt;}
.y43_c00110{bottom:757.333333pt;}
.yf_c00110{bottom:773.066667pt;}
.y42_c00110{bottom:773.333333pt;}
.ye_c00110{bottom:788.800000pt;}
.y41_c00110{bottom:789.333333pt;}
.y40_c00110{bottom:805.333333pt;}
.yd_c00110{bottom:807.333333pt;}
.y3f_c00110{bottom:821.333333pt;}
.yc_c00110{bottom:825.600000pt;}
.y3e_c00110{bottom:837.066667pt;}
.yb_c00110{bottom:841.600000pt;}
.y3d_c00110{bottom:853.066667pt;}
.ya_c00110{bottom:857.333333pt;}
.y3c_c00110{bottom:869.066667pt;}
.y9_c00110{bottom:876.800000pt;}
.y3b_c00110{bottom:885.066667pt;}
.y8_c00110{bottom:893.066667pt;}
.y3a_c00110{bottom:901.333333pt;}
.y7_c00110{bottom:909.066667pt;}
.y39_c00110{bottom:917.066667pt;}
.y6_c00110{bottom:924.400000pt;}
.y5_c00110{bottom:928.933333pt;}
.y38_c00110{bottom:935.066667pt;}
.y37_c00110{bottom:947.866667pt;}
.y4_c00110{bottom:952.933333pt;}
.y36_c00110{bottom:960.666667pt;}
.y3_c00110{bottom:973.066667pt;}
.y35_c00110{bottom:974.133333pt;}
.y34_c00110{bottom:988.533333pt;}
.y2_c00110{bottom:989.066667pt;}
.y1_c00110{bottom:1012.533333pt;}
.h8_c00110{height:32.000000pt;}
.h7_c00110{height:42.666667pt;}
.h5_c00110{height:48.000000pt;}
.h3_c00110{height:53.333333pt;}
.h4_c00110{height:58.666667pt;}
.h6_c00110{height:64.000000pt;}
.h2_c00110{height:74.666667pt;}
.h0_c00110{height:1133.760009pt;}
.h1_c00110{height:1134.000000pt;}
.w1_c00110{width:847.333333pt;}
.w0_c00110{width:847.360027pt;}
.x0_c00110{left:0.000000pt;}
.x89_c00110{left:61.733333pt;}
.x6e_c00110{left:64.933333pt;}
.x6f_c00110{left:65.866667pt;}
.x61_c00110{left:66.800000pt;}
.x56_c00110{left:67.866667pt;}
.x58_c00110{left:69.066667pt;}
.x2_c00110{left:70.133333pt;}
.x11_c00110{left:72.000000pt;}
.x93_c00110{left:75.866667pt;}
.x91_c00110{left:76.800000pt;}
.x6a_c00110{left:81.066667pt;}
.x81_c00110{left:82.000000pt;}
.x64_c00110{left:83.600000pt;}
.x5a_c00110{left:84.666667pt;}
.x40_c00110{left:86.533333pt;}
.xa_c00110{left:87.466667pt;}
.x9d_c00110{left:90.000000pt;}
.x95_c00110{left:91.200000pt;}
.x7d_c00110{left:94.000000pt;}
.x5c_c00110{left:101.466667pt;}
.x65_c00110{left:102.533333pt;}
.x1a_c00110{left:105.333333pt;}
.x2f_c00110{left:107.866667pt;}
.x7e_c00110{left:109.333333pt;}
.x12_c00110{left:110.400000pt;}
.x2a_c00110{left:112.266667pt;}
.x74_c00110{left:113.866667pt;}
.x82_c00110{left:116.266667pt;}
.x66_c00110{left:117.200000pt;}
.x4b_c00110{left:118.133333pt;}
.x4f_c00110{left:119.600000pt;}
.x41_c00110{left:121.066667pt;}
.x96_c00110{left:122.933333pt;}
.x20_c00110{left:125.200000pt;}
.x18_c00110{left:126.400000pt;}
.x9e_c00110{left:127.466667pt;}
.x37_c00110{left:128.933333pt;}
.x3_c00110{left:130.266667pt;}
.x92_c00110{left:131.200000pt;}
.x49_c00110{left:132.800000pt;}
.x13_c00110{left:133.733333pt;}
.x7a_c00110{left:135.200000pt;}
.x87_c00110{left:136.666667pt;}
.x50_c00110{left:139.066667pt;}
.x9f_c00110{left:140.533333pt;}
.x14_c00110{left:141.466667pt;}
.x98_c00110{left:142.400000pt;}
.x60_c00110{left:144.266667pt;}
.x1b_c00110{left:146.266667pt;}
.x6b_c00110{left:147.600000pt;}
.x42_c00110{left:149.200000pt;}
.x3b_c00110{left:152.666667pt;}
.x57_c00110{left:154.933333pt;}
.x99_c00110{left:155.866667pt;}
.xb_c00110{left:156.800000pt;}
.x4_c00110{left:158.133333pt;}
.x27_c00110{left:159.333333pt;}
.x21_c00110{left:160.666667pt;}
.x97_c00110{left:162.266667pt;}
.x38_c00110{left:163.866667pt;}
.x30_c00110{left:166.400000pt;}
.x5b_c00110{left:167.866667pt;}
.x51_c00110{left:172.400000pt;}
.x2b_c00110{left:174.400000pt;}
.x9a_c00110{left:175.733333pt;}
.x67_c00110{left:178.400000pt;}
.x6c_c00110{left:179.333333pt;}
.x39_c00110{left:180.800000pt;}
.x22_c00110{left:182.133333pt;}
.x88_c00110{left:184.933333pt;}
.xc_c00110{left:188.800000pt;}
.x43_c00110{left:191.466667pt;}
.x31_c00110{left:192.933333pt;}
.x8d_c00110{left:193.866667pt;}
.x1c_c00110{left:195.600000pt;}
.xd_c00110{left:197.066667pt;}
.x3c_c00110{left:198.133333pt;}
.x28_c00110{left:199.066667pt;}
.x78_c00110{left:201.866667pt;}
.x7b_c00110{left:203.066667pt;}
.x5_c00110{left:205.466667pt;}
.x15_c00110{left:206.400000pt;}
.x9b_c00110{left:207.733333pt;}
.x5d_c00110{left:208.933333pt;}
.x75_c00110{left:210.666667pt;}
.x23_c00110{left:211.866667pt;}
.x52_c00110{left:214.666667pt;}
.x3d_c00110{left:216.666667pt;}
.xe_c00110{left:217.866667pt;}
.x29_c00110{left:219.600000pt;}
.x59_c00110{left:221.600000pt;}
.x4c_c00110{left:222.533333pt;}
.x32_c00110{left:224.933333pt;}
.x3a_c00110{left:227.466667pt;}
.x76_c00110{left:229.200000pt;}
.xf_c00110{left:230.400000pt;}
.x53_c00110{left:232.533333pt;}
.xa0_c00110{left:233.466667pt;}
.x6d_c00110{left:234.800000pt;}
.x1d_c00110{left:237.866667pt;}
.x8a_c00110{left:238.933333pt;}
.x45_c00110{left:240.266667pt;}
.x24_c00110{left:244.133333pt;}
.x8e_c00110{left:245.066667pt;}
.x62_c00110{left:246.000000pt;}
.x19_c00110{left:247.066667pt;}
.x70_c00110{left:249.200000pt;}
.x7c_c00110{left:250.133333pt;}
.x10_c00110{left:251.866667pt;}
.x6_c00110{left:252.800000pt;}
.x3e_c00110{left:254.800000pt;}
.x44_c00110{left:255.733333pt;}
.x16_c00110{left:257.600000pt;}
.x9c_c00110{left:259.066667pt;}
.x33_c00110{left:263.333333pt;}
.x25_c00110{left:264.933333pt;}
.x2c_c00110{left:266.000000pt;}
.x7_c00110{left:271.733333pt;}
.x4d_c00110{left:274.133333pt;}
.x54_c00110{left:276.666667pt;}
.x2d_c00110{left:278.133333pt;}
.x84_c00110{left:279.066667pt;}
.x34_c00110{left:280.000000pt;}
.x7f_c00110{left:284.666667pt;}
.x46_c00110{left:285.733333pt;}
.x3f_c00110{left:287.466667pt;}
.x71_c00110{left:288.933333pt;}
.x1_c00110{left:292.133333pt;}
.x5e_c00110{left:293.733333pt;}
.x8f_c00110{left:295.333333pt;}
.x1e_c00110{left:296.400000pt;}
.x4e_c00110{left:297.866667pt;}
.x85_c00110{left:299.600000pt;}
.x17_c00110{left:302.400000pt;}
.x8b_c00110{left:305.733333pt;}
.x55_c00110{left:308.933333pt;}
.x2e_c00110{left:309.866667pt;}
.x68_c00110{left:314.000000pt;}
.x80_c00110{left:315.333333pt;}
.x35_c00110{left:319.066667pt;}
.x63_c00110{left:320.133333pt;}
.x69_c00110{left:321.333333pt;}
.x72_c00110{left:322.800000pt;}
.x77_c00110{left:326.666667pt;}
.x47_c00110{left:328.266667pt;}
.xa1_c00110{left:329.333333pt;}
.x83_c00110{left:330.933333pt;}
.x8_c00110{left:335.466667pt;}
.x86_c00110{left:338.933333pt;}
.x5f_c00110{left:339.866667pt;}
.x79_c00110{left:340.933333pt;}
.x36_c00110{left:342.400000pt;}
.x1f_c00110{left:345.333333pt;}
.x4a_c00110{left:346.933333pt;}
.x26_c00110{left:347.866667pt;}
.x8c_c00110{left:349.866667pt;}
.x90_c00110{left:352.933333pt;}
.x94_c00110{left:354.266667pt;}
.x73_c00110{left:360.266667pt;}
.x9_c00110{left:365.866667pt;}
.x48_c00110{left:368.933333pt;}
.x147_c00110{left:384.000000pt;}
.x142_c00110{left:384.933333pt;}
.x133_c00110{left:386.533333pt;}
.x13a_c00110{left:387.866667pt;}
.x129_c00110{left:388.800000pt;}
.xc3_c00110{left:393.333333pt;}
.x145_c00110{left:400.266667pt;}
.x134_c00110{left:401.200000pt;}
.x136_c00110{left:402.533333pt;}
.x127_c00110{left:403.600000pt;}
.x11b_c00110{left:404.666667pt;}
.x109_c00110{left:405.733333pt;}
.xbc_c00110{left:406.666667pt;}
.xc8_c00110{left:408.800000pt;}
.x12e_c00110{left:411.733333pt;}
.x12f_c00110{left:414.800000pt;}
.x13c_c00110{left:417.600000pt;}
.xa5_c00110{left:419.466667pt;}
.x139_c00110{left:421.333333pt;}
.x102_c00110{left:423.200000pt;}
.xfb_c00110{left:424.533333pt;}
.x13b_c00110{left:426.533333pt;}
.x11d_c00110{left:427.466667pt;}
.x115_c00110{left:428.400000pt;}
.x107_c00110{left:434.266667pt;}
.x128_c00110{left:435.866667pt;}
.x148_c00110{left:437.733333pt;}
.xb6_c00110{left:438.933333pt;}
.x130_c00110{left:440.400000pt;}
.xc9_c00110{left:441.733333pt;}
.xdf_c00110{left:443.333333pt;}
.xe9_c00110{left:444.266667pt;}
.x10c_c00110{left:446.000000pt;}
.x103_c00110{left:447.866667pt;}
.xcf_c00110{left:449.866667pt;}
.xa6_c00110{left:453.066667pt;}
.xe0_c00110{left:454.800000pt;}
.xdb_c00110{left:455.733333pt;}
.xb0_c00110{left:456.800000pt;}
.xd7_c00110{left:458.666667pt;}
.xb7_c00110{left:460.400000pt;}
.x10d_c00110{left:462.266667pt;}
.xbd_c00110{left:464.533333pt;}
.xca_c00110{left:467.333333pt;}
.xa7_c00110{left:468.800000pt;}
.xbe_c00110{left:471.200000pt;}
.x125_c00110{left:472.133333pt;}
.xea_c00110{left:473.333333pt;}
.xd0_c00110{left:474.533333pt;}
.x122_c00110{left:477.066667pt;}
.xf3_c00110{left:479.333333pt;}
.x131_c00110{left:481.066667pt;}
.xeb_c00110{left:482.933333pt;}
.x140_c00110{left:484.533333pt;}
.xcb_c00110{left:485.600000pt;}
.x113_c00110{left:487.333333pt;}
.xe5_c00110{left:488.800000pt;}
.xbf_c00110{left:490.400000pt;}
.xb1_c00110{left:494.266667pt;}
.xd1_c00110{left:496.000000pt;}
.xa8_c00110{left:497.333333pt;}
.x12a_c00110{left:499.866667pt;}
.x10a_c00110{left:501.466667pt;}
.xb2_c00110{left:502.533333pt;}
.xec_c00110{left:504.000000pt;}
.xc4_c00110{left:505.333333pt;}
.xdc_c00110{left:508.533333pt;}
.xb8_c00110{left:510.266667pt;}
.xa9_c00110{left:511.466667pt;}
.x116_c00110{left:513.066667pt;}
.x124_c00110{left:520.133333pt;}
.xd2_c00110{left:521.866667pt;}
.x137_c00110{left:523.466667pt;}
.x144_c00110{left:524.933333pt;}
.xfd_c00110{left:526.000000pt;}
.xf4_c00110{left:527.600000pt;}
.x104_c00110{left:528.533333pt;}
.xb9_c00110{left:530.800000pt;}
.x141_c00110{left:532.266667pt;}
.x12b_c00110{left:533.200000pt;}
.x114_c00110{left:534.400000pt;}
.xe6_c00110{left:536.533333pt;}
.xaa_c00110{left:538.400000pt;}
.x110_c00110{left:539.866667pt;}
.x149_c00110{left:541.600000pt;}
.x138_c00110{left:542.933333pt;}
.x11e_c00110{left:544.933333pt;}
.xb3_c00110{left:546.666667pt;}
.xc0_c00110{left:548.933333pt;}
.x11c_c00110{left:550.000000pt;}
.xf5_c00110{left:552.000000pt;}
.xab_c00110{left:554.666667pt;}
.xd8_c00110{left:555.600000pt;}
.xed_c00110{left:557.066667pt;}
.x146_c00110{left:558.266667pt;}
.xdd_c00110{left:560.666667pt;}
.xc1_c00110{left:561.733333pt;}
.x117_c00110{left:562.933333pt;}
.xb4_c00110{left:564.000000pt;}
.xba_c00110{left:566.266667pt;}
.x11f_c00110{left:567.600000pt;}
.x105_c00110{left:569.866667pt;}
.x10e_c00110{left:571.600000pt;}
.x13e_c00110{left:572.666667pt;}
.xe1_c00110{left:573.600000pt;}
.xf0_c00110{left:575.466667pt;}
.x132_c00110{left:576.800000pt;}
.xd3_c00110{left:577.866667pt;}
.xf6_c00110{left:581.066667pt;}
.xc5_c00110{left:584.533333pt;}
.xac_c00110{left:587.333333pt;}
.xbb_c00110{left:588.400000pt;}
.xfe_c00110{left:590.000000pt;}
.xe2_c00110{left:590.933333pt;}
.x111_c00110{left:592.133333pt;}
.xde_c00110{left:593.600000pt;}
.x108_c00110{left:595.466667pt;}
.xcc_c00110{left:596.666667pt;}
.xf7_c00110{left:598.666667pt;}
.xee_c00110{left:599.866667pt;}
.xf1_c00110{left:600.800000pt;}
.x123_c00110{left:603.333333pt;}
.x13f_c00110{left:604.666667pt;}
.xd9_c00110{left:606.800000pt;}
.x120_c00110{left:609.466667pt;}
.x10b_c00110{left:611.200000pt;}
.xf8_c00110{left:613.066667pt;}
.xb5_c00110{left:614.266667pt;}
.x135_c00110{left:615.600000pt;}
.x12c_c00110{left:618.666667pt;}
.x118_c00110{left:620.133333pt;}
.x143_c00110{left:622.133333pt;}
.xa2_c00110{left:623.733333pt;}
.xc6_c00110{left:625.466667pt;}
.xf2_c00110{left:628.266667pt;}
.xff_c00110{left:629.333333pt;}
.xad_c00110{left:631.466667pt;}
.xcd_c00110{left:632.800000pt;}
.xd4_c00110{left:634.133333pt;}
.xe7_c00110{left:635.733333pt;}
.x126_c00110{left:639.466667pt;}
.xe3_c00110{left:640.533333pt;}
.x12d_c00110{left:641.466667pt;}
.x106_c00110{left:642.933333pt;}
.xc7_c00110{left:644.666667pt;}
.x13d_c00110{left:646.133333pt;}
.xda_c00110{left:647.066667pt;}
.x10f_c00110{left:648.133333pt;}
.xd5_c00110{left:650.133333pt;}
.xa3_c00110{left:651.200000pt;}
.xf9_c00110{left:652.400000pt;}
.x119_c00110{left:653.733333pt;}
.x100_c00110{left:655.200000pt;}
.x112_c00110{left:656.133333pt;}
.xc2_c00110{left:657.333333pt;}
.xae_c00110{left:658.400000pt;}
.x11a_c00110{left:662.000000pt;}
.xfc_c00110{left:665.200000pt;}
.xe8_c00110{left:666.400000pt;}
.xfa_c00110{left:667.733333pt;}
.xef_c00110{left:669.733333pt;}
.x101_c00110{left:673.733333pt;}
.xce_c00110{left:676.000000pt;}
.xe4_c00110{left:679.200000pt;}
.xa4_c00110{left:681.600000pt;}
.xaf_c00110{left:683.333333pt;}
.xd6_c00110{left:690.133333pt;}
.x121_c00110{left:697.733333pt;}
}





/* 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_c00111 {
    display:none;
  }
  .loading-indicator_c00111.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00111 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_c00111 { 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_c00111" -> "#page-container .classname_c00111")
 */
.pf_c00111 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00111 { /* 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_c00111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00111 { /* 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_c00111 { /* 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_c00111 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00111 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00111 {overflow:visible;}
  }
}
.c_c00111 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00111 { /* 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_c00111:after { /* webkit #35443 */
  content: '';
}
.t_c00111:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00111 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 */
}
.__c00111 { /* 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_c00111 { /* info for Javascript */
  display:none;
}
.l_c00111 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00111 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00111 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00111: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_c00111 {
    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_c00111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00111.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_c00111 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00111;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.000000;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;}
.me4_c00111{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.md2_c00111{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00111{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00111{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00111{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00111{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00111{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mec_c00111{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00111{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m69_c00111{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m61_c00111{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00111{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md1_c00111{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.med_c00111{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00111{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.meb_c00111{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.md5_c00111{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m55_c00111{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m43_c00111{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m54_c00111{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m75_c00111{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m57_c00111{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00111{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m90_c00111{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m58_c00111{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mee_c00111{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mc_c00111{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md0_c00111{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00111{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m18_c00111{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m60_c00111{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m15_c00111{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m44_c00111{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m30_c00111{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m84_c00111{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m74_c00111{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00111{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m17_c00111{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m41_c00111{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m92_c00111{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00111{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m72_c00111{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00111{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m19_c00111{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00111{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00111{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00111{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.me0_c00111{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m5_c00111{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m97_c00111{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m56_c00111{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m36_c00111{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00111{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m47_c00111{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00111{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00111{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00111{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m70_c00111{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m42_c00111{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m23_c00111{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00111{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00111{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00111{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma_c00111{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m21_c00111{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m73_c00111{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m14_c00111{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m76_c00111{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m45_c00111{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00111{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00111{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00111{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00111{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m28_c00111{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m71_c00111{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00111{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mef_c00111{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00111{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00111{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00111{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m34_c00111{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m98_c00111{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00111{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.md3_c00111{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md6_c00111{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00111{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mf_c00111{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m93_c00111{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00111{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.md9_c00111{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me5_c00111{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m88_c00111{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m87_c00111{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00111{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m99_c00111{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m85_c00111{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00111{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00111{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m62_c00111{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00111{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m46_c00111{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m24_c00111{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m53_c00111{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00111{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m10_c00111{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m81_c00111{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8_c00111{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00111{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m91_c00111{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00111{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m82_c00111{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m33_c00111{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00111{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00111{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m12_c00111{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md7_c00111{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00111{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m32_c00111{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00111{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m13_c00111{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00111{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00111{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00111{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7_c00111{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m94_c00111{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m64_c00111{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m37_c00111{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00111{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m40_c00111{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m52_c00111{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00111{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00111{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m31_c00111{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00111{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11_c00111{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m29_c00111{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m68_c00111{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00111{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mda_c00111{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m26_c00111{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00111{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me3_c00111{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.me_c00111{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00111{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m96_c00111{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me7_c00111{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m39_c00111{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00111{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00111{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00111{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00111{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00111{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m95_c00111{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m22_c00111{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00111{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00111{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00111{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00111{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md8_c00111{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6_c00111{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mde_c00111{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m35_c00111{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m77_c00111{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00111{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00111{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00111{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00111{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00111{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00111{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00111{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00111{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9_c00111{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m25_c00111{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m16_c00111{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00111{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m80_c00111{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2_c00111{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00111{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00111{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00111{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00111{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00111{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mae_c00111{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m0_c00111{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00111{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m86_c00111{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m49_c00111{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00111{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00111{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00111{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m20_c00111{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m89_c00111{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mce_c00111{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00111{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m65_c00111{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00111{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mba_c00111{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00111{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m67_c00111{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m50_c00111{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27_c00111{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00111{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m79_c00111{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m48_c00111{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00111{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00111{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00111{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00111{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00111{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00111{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me6_c00111{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00111{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00111{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00111{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me8_c00111{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00111{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m51_c00111{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m83_c00111{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m38_c00111{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.maf_c00111{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00111{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mca_c00111{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00111{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00111{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m59_c00111{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00111{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00111{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m66_c00111{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.me1_c00111{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m78_c00111{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00111{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me2_c00111{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.md4_c00111{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00111{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mea_c00111{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00111{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mad_c00111{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.me9_c00111{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00111{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.md_c00111{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00111{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00111{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m63_c00111{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00111{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00111{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00111{transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);}
.mac_c00111{transform:matrix(0.436750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436750,0.000000,0.000000,0.250000,0,0);}
.mab_c00111{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.maa_c00111{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00111{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls0_c00111{letter-spacing:0.000000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{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__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00111{word-spacing:-12.125000px;}
.ws6_c00111{word-spacing:-5.441176px;}
.ws5_c00111{word-spacing:-3.876791px;}
.ws0_c00111{word-spacing:-3.333333px;}
.ws1_c00111{word-spacing:-1.738544px;}
.ws7_c00111{word-spacing:0.000000px;}
.ws4_c00111{word-spacing:13.333333px;}
.ws2_c00111{word-spacing:54.993631px;}
.fc0_c00111{color:transparent;}
.fs5_c00111{font-size:30.000000px;}
.fs6_c00111{font-size:48.000000px;}
.fs4_c00111{font-size:54.000000px;}
.fs2_c00111{font-size:60.000000px;}
.fs1_c00111{font-size:66.000000px;}
.fs3_c00111{font-size:72.000000px;}
.fs0_c00111{font-size:84.000000px;}
.y0_c00111{bottom:0.000000px;}
.y5d_c00111{bottom:165.600000px;}
.y5c_c00111{bottom:184.350000px;}
.y32_c00111{bottom:184.650000px;}
.y5b_c00111{bottom:202.200000px;}
.y31_c00111{bottom:202.650000px;}
.y5a_c00111{bottom:220.200000px;}
.y30_c00111{bottom:229.200000px;}
.y59_c00111{bottom:237.900000px;}
.y2f_c00111{bottom:246.900000px;}
.y58_c00111{bottom:255.900000px;}
.y2e_c00111{bottom:264.600000px;}
.y57_c00111{bottom:273.600000px;}
.y2d_c00111{bottom:290.700000px;}
.y56_c00111{bottom:300.300000px;}
.y2c_c00111{bottom:308.700000px;}
.y55_c00111{bottom:318.300000px;}
.y2b_c00111{bottom:326.400000px;}
.y2a_c00111{bottom:344.700000px;}
.y54_c00111{bottom:350.250000px;}
.y29_c00111{bottom:362.700000px;}
.y53_c00111{bottom:368.250000px;}
.y28_c00111{bottom:380.700000px;}
.y52_c00111{bottom:386.250000px;}
.y27_c00111{bottom:398.400000px;}
.y51_c00111{bottom:414.000000px;}
.y26_c00111{bottom:416.400000px;}
.y25_c00111{bottom:434.400000px;}
.y50_c00111{bottom:435.900000px;}
.y24_c00111{bottom:452.400000px;}
.y4f_c00111{bottom:458.700000px;}
.y23_c00111{bottom:470.100000px;}
.y4e_c00111{bottom:476.700000px;}
.y22_c00111{bottom:499.350000px;}
.y21_c00111{bottom:514.050000px;}
.y4d_c00111{bottom:522.000000px;}
.y20_c00111{bottom:543.300000px;}
.y4c_c00111{bottom:544.350000px;}
.y1f_c00111{bottom:561.600000px;}
.y4b_c00111{bottom:567.000000px;}
.y1e_c00111{bottom:579.600000px;}
.y4a_c00111{bottom:589.350000px;}
.y1d_c00111{bottom:597.300000px;}
.y49_c00111{bottom:607.350000px;}
.y1c_c00111{bottom:622.500000px;}
.y48_c00111{bottom:634.950000px;}
.y1b_c00111{bottom:641.700000px;}
.y47_c00111{bottom:655.500000px;}
.y1a_c00111{bottom:659.400000px;}
.y46_c00111{bottom:663.900000px;}
.y45_c00111{bottom:671.700000px;}
.y19_c00111{bottom:677.400000px;}
.y44_c00111{bottom:690.600000px;}
.y18_c00111{bottom:695.400000px;}
.y17_c00111{bottom:713.100000px;}
.y43_c00111{bottom:713.250000px;}
.y16_c00111{bottom:735.450000px;}
.y42_c00111{bottom:735.900000px;}
.y15_c00111{bottom:765.750000px;}
.y41_c00111{bottom:771.900000px;}
.y14_c00111{bottom:784.050000px;}
.y13_c00111{bottom:802.050000px;}
.y40_c00111{bottom:815.700000px;}
.y12_c00111{bottom:820.050000px;}
.y3f_c00111{bottom:837.300000px;}
.y11_c00111{bottom:838.050000px;}
.y3e_c00111{bottom:859.650000px;}
.y10_c00111{bottom:859.800000px;}
.yf_c00111{bottom:878.100000px;}
.y3d_c00111{bottom:882.000000px;}
.ye_c00111{bottom:896.400000px;}
.y3c_c00111{bottom:900.000000px;}
.yd_c00111{bottom:917.700000px;}
.y3b_c00111{bottom:921.600000px;}
.yc_c00111{bottom:936.750000px;}
.y3a_c00111{bottom:940.350000px;}
.yb_c00111{bottom:954.750000px;}
.y39_c00111{bottom:962.700000px;}
.ya_c00111{bottom:972.000000px;}
.y38_c00111{bottom:984.150000px;}
.y9_c00111{bottom:990.000000px;}
.y37_c00111{bottom:1002.900000px;}
.y8_c00111{bottom:1008.000000px;}
.y36_c00111{bottom:1024.950000px;}
.y7_c00111{bottom:1025.700000px;}
.y35_c00111{bottom:1043.250000px;}
.y6_c00111{bottom:1044.450000px;}
.y5_c00111{bottom:1061.700000px;}
.y34_c00111{bottom:1078.950000px;}
.y4_c00111{bottom:1079.700000px;}
.y3_c00111{bottom:1097.700000px;}
.y33_c00111{bottom:1114.200000px;}
.y2_c00111{bottom:1115.700000px;}
.y1_c00111{bottom:1142.700000px;}
.h7_c00111{height:30.000000px;}
.h8_c00111{height:48.000000px;}
.h6_c00111{height:54.000000px;}
.h4_c00111{height:60.000000px;}
.h3_c00111{height:66.000000px;}
.h5_c00111{height:72.000000px;}
.h2_c00111{height:84.000000px;}
.h0_c00111{height:1271.160094px;}
.h1_c00111{height:1271.250000px;}
.w1_c00111{width:953.250000px;}
.w0_c00111{width:953.280030px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:182.100000px;}
.x3_c00111{left:184.650000px;}
.x41_c00111{left:186.150000px;}
.x5b_c00111{left:187.500000px;}
.x9_c00111{left:203.700000px;}
.x51_c00111{left:205.350000px;}
.x61_c00111{left:216.000000px;}
.x5f_c00111{left:223.950000px;}
.x80_c00111{left:225.600000px;}
.x36_c00111{left:227.250000px;}
.x49_c00111{left:228.750000px;}
.x6d_c00111{left:230.550000px;}
.x44_c00111{left:233.400000px;}
.x62_c00111{left:234.750000px;}
.x52_c00111{left:237.000000px;}
.x6c_c00111{left:239.850000px;}
.x65_c00111{left:241.350000px;}
.x92_c00111{left:243.000000px;}
.x70_c00111{left:244.050000px;}
.x42_c00111{left:245.250000px;}
.x11_c00111{left:246.450000px;}
.x2f_c00111{left:248.400000px;}
.x22_c00111{left:252.000000px;}
.x37_c00111{left:254.250000px;}
.x81_c00111{left:255.450000px;}
.x4c_c00111{left:257.100000px;}
.x91_c00111{left:258.150000px;}
.xa_c00111{left:259.200000px;}
.x71_c00111{left:261.300000px;}
.x18_c00111{left:263.400000px;}
.x53_c00111{left:264.750000px;}
.x30_c00111{left:266.700000px;}
.x7b_c00111{left:268.050000px;}
.x66_c00111{left:269.100000px;}
.x4a_c00111{left:271.200000px;}
.x4_c00111{left:272.850000px;}
.x78_c00111{left:274.200000px;}
.x3c_c00111{left:276.900000px;}
.x8c_c00111{left:278.850000px;}
.x7d_c00111{left:282.150000px;}
.x12_c00111{left:283.500000px;}
.x74_c00111{left:286.650000px;}
.x4d_c00111{left:288.450000px;}
.x19_c00111{left:289.650000px;}
.xb_c00111{left:290.850000px;}
.x45_c00111{left:293.550000px;}
.x26_c00111{left:295.950000px;}
.x38_c00111{left:298.950000px;}
.x82_c00111{left:302.550000px;}
.x31_c00111{left:305.250000px;}
.x1a_c00111{left:307.350000px;}
.x93_c00111{left:310.650000px;}
.x60_c00111{left:311.850000px;}
.x2a_c00111{left:314.700000px;}
.x8b_c00111{left:315.900000px;}
.x1f_c00111{left:321.000000px;}
.x5_c00111{left:322.500000px;}
.x72_c00111{left:323.550000px;}
.x87_c00111{left:325.500000px;}
.x46_c00111{left:326.700000px;}
.x39_c00111{left:328.800000px;}
.x2b_c00111{left:330.150000px;}
.x8d_c00111{left:331.350000px;}
.x13_c00111{left:332.400000px;}
.x75_c00111{left:334.200000px;}
.x58_c00111{left:335.400000px;}
.x5c_c00111{left:336.600000px;}
.x4b_c00111{left:338.850000px;}
.x27_c00111{left:340.950000px;}
.x3d_c00111{left:342.000000px;}
.xc_c00111{left:345.900000px;}
.x6b_c00111{left:347.250000px;}
.x32_c00111{left:350.850000px;}
.x3a_c00111{left:353.700000px;}
.x63_c00111{left:355.050000px;}
.x83_c00111{left:357.300000px;}
.x76_c00111{left:361.500000px;}
.x1b_c00111{left:363.150000px;}
.x4e_c00111{left:365.550000px;}
.x47_c00111{left:366.600000px;}
.x14_c00111{left:369.150000px;}
.x7e_c00111{left:371.100000px;}
.x54_c00111{left:373.500000px;}
.x89_c00111{left:374.700000px;}
.x59_c00111{left:376.050000px;}
.x68_c00111{left:378.150000px;}
.x6e_c00111{left:380.700000px;}
.x1c_c00111{left:385.500000px;}
.x88_c00111{left:386.700000px;}
.x8e_c00111{left:387.900000px;}
.x28_c00111{left:389.550000px;}
.x23_c00111{left:396.000000px;}
.x15_c00111{left:397.650000px;}
.x69_c00111{left:399.750000px;}
.x33_c00111{left:401.250000px;}
.x5d_c00111{left:402.900000px;}
.xd_c00111{left:404.550000px;}
.x84_c00111{left:405.600000px;}
.x77_c00111{left:408.000000px;}
.x64_c00111{left:410.100000px;}
.x2c_c00111{left:411.450000px;}
.x1d_c00111{left:412.800000px;}
.x8a_c00111{left:418.200000px;}
.x6_c00111{left:420.450000px;}
.x29_c00111{left:421.950000px;}
.x2d_c00111{left:423.000000px;}
.x5a_c00111{left:425.700000px;}
.xe_c00111{left:427.200000px;}
.x2_c00111{left:428.700000px;}
.x43_c00111{left:430.350000px;}
.x55_c00111{left:434.700000px;}
.x56_c00111{left:436.200000px;}
.x4f_c00111{left:438.300000px;}
.x16_c00111{left:440.550000px;}
.x34_c00111{left:442.650000px;}
.xf_c00111{left:443.700000px;}
.x7a_c00111{left:449.250000px;}
.x2e_c00111{left:450.300000px;}
.x24_c00111{left:453.900000px;}
.x3e_c00111{left:455.100000px;}
.x5e_c00111{left:459.450000px;}
.x7f_c00111{left:461.100000px;}
.x48_c00111{left:464.550000px;}
.x7_c00111{left:466.800000px;}
.x3f_c00111{left:470.550000px;}
.x3b_c00111{left:473.850000px;}
.x1e_c00111{left:475.050000px;}
.x67_c00111{left:476.100000px;}
.x25_c00111{left:478.350000px;}
.x20_c00111{left:479.400000px;}
.x17_c00111{left:480.900000px;}
.x50_c00111{left:482.250000px;}
.x85_c00111{left:485.250000px;}
.x79_c00111{left:486.300000px;}
.x90_c00111{left:488.400000px;}
.x35_c00111{left:489.750000px;}
.x6a_c00111{left:490.950000px;}
.x10_c00111{left:493.350000px;}
.x8_c00111{left:494.550000px;}
.x8f_c00111{left:500.400000px;}
.x86_c00111{left:502.200000px;}
.x57_c00111{left:503.850000px;}
.x40_c00111{left:508.050000px;}
.x21_c00111{left:511.500000px;}
.x7c_c00111{left:512.550000px;}
.x73_c00111{left:513.600000px;}
.x6f_c00111{left:519.900000px;}
.x98_c00111{left:542.850000px;}
.xce_c00111{left:543.900000px;}
.xfa_c00111{left:545.700000px;}
.xf4_c00111{left:552.600000px;}
.x9f_c00111{left:560.400000px;}
.xe3_c00111{left:561.600000px;}
.xf9_c00111{left:563.100000px;}
.xa3_c00111{left:578.550000px;}
.xb5_c00111{left:580.350000px;}
.xee_c00111{left:581.700000px;}
.xe8_c00111{left:583.200000px;}
.xa0_c00111{left:586.350000px;}
.x99_c00111{left:588.900000px;}
.x94_c00111{left:591.900000px;}
.xec_c00111{left:600.450000px;}
.xbb_c00111{left:602.250000px;}
.xf1_c00111{left:607.350000px;}
.xc6_c00111{left:609.150000px;}
.xf5_c00111{left:610.500000px;}
.x101_c00111{left:612.150000px;}
.x96_c00111{left:615.000000px;}
.xe9_c00111{left:617.400000px;}
.xc1_c00111{left:621.750000px;}
.xa9_c00111{left:625.200000px;}
.x10b_c00111{left:627.900000px;}
.xef_c00111{left:629.250000px;}
.xc4_c00111{left:634.050000px;}
.x102_c00111{left:635.850000px;}
.xac_c00111{left:637.200000px;}
.xe6_c00111{left:638.400000px;}
.xb6_c00111{left:639.450000px;}
.x105_c00111{left:640.500000px;}
.x9a_c00111{left:641.850000px;}
.xc7_c00111{left:643.350000px;}
.xe7_c00111{left:644.400000px;}
.xd9_c00111{left:645.900000px;}
.xff_c00111{left:649.500000px;}
.xd1_c00111{left:653.100000px;}
.xb0_c00111{left:654.450000px;}
.xdc_c00111{left:656.550000px;}
.x108_c00111{left:658.050000px;}
.xd4_c00111{left:659.850000px;}
.xc8_c00111{left:661.650000px;}
.xed_c00111{left:664.200000px;}
.xcf_c00111{left:665.700000px;}
.xd2_c00111{left:667.500000px;}
.xfb_c00111{left:670.500000px;}
.xbc_c00111{left:672.150000px;}
.xa1_c00111{left:673.800000px;}
.xf0_c00111{left:675.750000px;}
.xb7_c00111{left:677.250000px;}
.xdd_c00111{left:685.050000px;}
.xc2_c00111{left:686.550000px;}
.xaa_c00111{left:687.750000px;}
.xa4_c00111{left:693.300000px;}
.xde_c00111{left:694.350000px;}
.xad_c00111{left:696.600000px;}
.xbd_c00111{left:700.650000px;}
.xab_c00111{left:705.000000px;}
.x9b_c00111{left:706.650000px;}
.xe4_c00111{left:707.850000px;}
.x109_c00111{left:711.600000px;}
.xcd_c00111{left:712.800000px;}
.xd0_c00111{left:716.850000px;}
.xa5_c00111{left:721.800000px;}
.x95_c00111{left:723.300000px;}
.xe0_c00111{left:724.350000px;}
.xea_c00111{left:725.400000px;}
.x9c_c00111{left:728.250000px;}
.xe5_c00111{left:729.750000px;}
.xd5_c00111{left:735.750000px;}
.x10a_c00111{left:736.800000px;}
.xb1_c00111{left:739.350000px;}
.xc9_c00111{left:741.900000px;}
.x106_c00111{left:745.200000px;}
.xb8_c00111{left:746.700000px;}
.xf6_c00111{left:749.850000px;}
.xca_c00111{left:752.400000px;}
.xc3_c00111{left:753.900000px;}
.xa2_c00111{left:756.300000px;}
.x97_c00111{left:757.950000px;}
.xa6_c00111{left:759.900000px;}
.xbe_c00111{left:764.400000px;}
.xb9_c00111{left:769.050000px;}
.x100_c00111{left:770.550000px;}
.xb2_c00111{left:771.750000px;}
.xae_c00111{left:772.950000px;}
.xd6_c00111{left:778.650000px;}
.x103_c00111{left:782.400000px;}
.xc5_c00111{left:788.700000px;}
.xf2_c00111{left:789.750000px;}
.xaf_c00111{left:793.500000px;}
.xbf_c00111{left:796.800000px;}
.xf7_c00111{left:798.150000px;}
.xb3_c00111{left:802.350000px;}
.xfc_c00111{left:805.500000px;}
.xe1_c00111{left:808.950000px;}
.xcb_c00111{left:811.800000px;}
.xdf_c00111{left:813.150000px;}
.xc0_c00111{left:814.800000px;}
.xfd_c00111{left:816.600000px;}
.x9d_c00111{left:818.550000px;}
.xcc_c00111{left:826.500000px;}
.xf8_c00111{left:832.350000px;}
.xa7_c00111{left:833.700000px;}
.xeb_c00111{left:837.750000px;}
.x104_c00111{left:841.500000px;}
.xd3_c00111{left:844.200000px;}
.x9e_c00111{left:846.300000px;}
.x10c_c00111{left:847.500000px;}
.x107_c00111{left:848.850000px;}
.xda_c00111{left:853.500000px;}
.xf3_c00111{left:856.650000px;}
.xfe_c00111{left:857.700000px;}
.xb4_c00111{left:865.350000px;}
.xe2_c00111{left:866.550000px;}
.xd7_c00111{left:867.900000px;}
.xa8_c00111{left:870.000000px;}
.xba_c00111{left:871.950000px;}
.xdb_c00111{left:877.950000px;}
.xd8_c00111{left:882.300000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws3_c00111{word-spacing:-10.777778pt;}
.ws6_c00111{word-spacing:-4.836601pt;}
.ws5_c00111{word-spacing:-3.446036pt;}
.ws0_c00111{word-spacing:-2.962963pt;}
.ws1_c00111{word-spacing:-1.545373pt;}
.ws7_c00111{word-spacing:0.000000pt;}
.ws4_c00111{word-spacing:11.851852pt;}
.ws2_c00111{word-spacing:48.883227pt;}
.fs5_c00111{font-size:26.666667pt;}
.fs6_c00111{font-size:42.666667pt;}
.fs4_c00111{font-size:48.000000pt;}
.fs2_c00111{font-size:53.333333pt;}
.fs1_c00111{font-size:58.666667pt;}
.fs3_c00111{font-size:64.000000pt;}
.fs0_c00111{font-size:74.666667pt;}
.y0_c00111{bottom:0.000000pt;}
.y5d_c00111{bottom:147.200000pt;}
.y5c_c00111{bottom:163.866667pt;}
.y32_c00111{bottom:164.133333pt;}
.y5b_c00111{bottom:179.733333pt;}
.y31_c00111{bottom:180.133333pt;}
.y5a_c00111{bottom:195.733333pt;}
.y30_c00111{bottom:203.733333pt;}
.y59_c00111{bottom:211.466667pt;}
.y2f_c00111{bottom:219.466667pt;}
.y58_c00111{bottom:227.466667pt;}
.y2e_c00111{bottom:235.200000pt;}
.y57_c00111{bottom:243.200000pt;}
.y2d_c00111{bottom:258.400000pt;}
.y56_c00111{bottom:266.933333pt;}
.y2c_c00111{bottom:274.400000pt;}
.y55_c00111{bottom:282.933333pt;}
.y2b_c00111{bottom:290.133333pt;}
.y2a_c00111{bottom:306.400000pt;}
.y54_c00111{bottom:311.333333pt;}
.y29_c00111{bottom:322.400000pt;}
.y53_c00111{bottom:327.333333pt;}
.y28_c00111{bottom:338.400000pt;}
.y52_c00111{bottom:343.333333pt;}
.y27_c00111{bottom:354.133333pt;}
.y51_c00111{bottom:368.000000pt;}
.y26_c00111{bottom:370.133333pt;}
.y25_c00111{bottom:386.133333pt;}
.y50_c00111{bottom:387.466667pt;}
.y24_c00111{bottom:402.133333pt;}
.y4f_c00111{bottom:407.733333pt;}
.y23_c00111{bottom:417.866667pt;}
.y4e_c00111{bottom:423.733333pt;}
.y22_c00111{bottom:443.866667pt;}
.y21_c00111{bottom:456.933333pt;}
.y4d_c00111{bottom:464.000000pt;}
.y20_c00111{bottom:482.933333pt;}
.y4c_c00111{bottom:483.866667pt;}
.y1f_c00111{bottom:499.200000pt;}
.y4b_c00111{bottom:504.000000pt;}
.y1e_c00111{bottom:515.200000pt;}
.y4a_c00111{bottom:523.866667pt;}
.y1d_c00111{bottom:530.933333pt;}
.y49_c00111{bottom:539.866667pt;}
.y1c_c00111{bottom:553.333333pt;}
.y48_c00111{bottom:564.400000pt;}
.y1b_c00111{bottom:570.400000pt;}
.y47_c00111{bottom:582.666667pt;}
.y1a_c00111{bottom:586.133333pt;}
.y46_c00111{bottom:590.133333pt;}
.y45_c00111{bottom:597.066667pt;}
.y19_c00111{bottom:602.133333pt;}
.y44_c00111{bottom:613.866667pt;}
.y18_c00111{bottom:618.133333pt;}
.y17_c00111{bottom:633.866667pt;}
.y43_c00111{bottom:634.000000pt;}
.y16_c00111{bottom:653.733333pt;}
.y42_c00111{bottom:654.133333pt;}
.y15_c00111{bottom:680.666667pt;}
.y41_c00111{bottom:686.133333pt;}
.y14_c00111{bottom:696.933333pt;}
.y13_c00111{bottom:712.933333pt;}
.y40_c00111{bottom:725.066667pt;}
.y12_c00111{bottom:728.933333pt;}
.y3f_c00111{bottom:744.266667pt;}
.y11_c00111{bottom:744.933333pt;}
.y3e_c00111{bottom:764.133333pt;}
.y10_c00111{bottom:764.266667pt;}
.yf_c00111{bottom:780.533333pt;}
.y3d_c00111{bottom:784.000000pt;}
.ye_c00111{bottom:796.800000pt;}
.y3c_c00111{bottom:800.000000pt;}
.yd_c00111{bottom:815.733333pt;}
.y3b_c00111{bottom:819.200000pt;}
.yc_c00111{bottom:832.666667pt;}
.y3a_c00111{bottom:835.866667pt;}
.yb_c00111{bottom:848.666667pt;}
.y39_c00111{bottom:855.733333pt;}
.ya_c00111{bottom:864.000000pt;}
.y38_c00111{bottom:874.800000pt;}
.y9_c00111{bottom:880.000000pt;}
.y37_c00111{bottom:891.466667pt;}
.y8_c00111{bottom:896.000000pt;}
.y36_c00111{bottom:911.066667pt;}
.y7_c00111{bottom:911.733333pt;}
.y35_c00111{bottom:927.333333pt;}
.y6_c00111{bottom:928.400000pt;}
.y5_c00111{bottom:943.733333pt;}
.y34_c00111{bottom:959.066667pt;}
.y4_c00111{bottom:959.733333pt;}
.y3_c00111{bottom:975.733333pt;}
.y33_c00111{bottom:990.400000pt;}
.y2_c00111{bottom:991.733333pt;}
.y1_c00111{bottom:1015.733333pt;}
.h7_c00111{height:26.666667pt;}
.h8_c00111{height:42.666667pt;}
.h6_c00111{height:48.000000pt;}
.h4_c00111{height:53.333333pt;}
.h3_c00111{height:58.666667pt;}
.h5_c00111{height:64.000000pt;}
.h2_c00111{height:74.666667pt;}
.h0_c00111{height:1129.920084pt;}
.h1_c00111{height:1130.000000pt;}
.w1_c00111{width:847.333333pt;}
.w0_c00111{width:847.360027pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:161.866667pt;}
.x3_c00111{left:164.133333pt;}
.x41_c00111{left:165.466667pt;}
.x5b_c00111{left:166.666667pt;}
.x9_c00111{left:181.066667pt;}
.x51_c00111{left:182.533333pt;}
.x61_c00111{left:192.000000pt;}
.x5f_c00111{left:199.066667pt;}
.x80_c00111{left:200.533333pt;}
.x36_c00111{left:202.000000pt;}
.x49_c00111{left:203.333333pt;}
.x6d_c00111{left:204.933333pt;}
.x44_c00111{left:207.466667pt;}
.x62_c00111{left:208.666667pt;}
.x52_c00111{left:210.666667pt;}
.x6c_c00111{left:213.200000pt;}
.x65_c00111{left:214.533333pt;}
.x92_c00111{left:216.000000pt;}
.x70_c00111{left:216.933333pt;}
.x42_c00111{left:218.000000pt;}
.x11_c00111{left:219.066667pt;}
.x2f_c00111{left:220.800000pt;}
.x22_c00111{left:224.000000pt;}
.x37_c00111{left:226.000000pt;}
.x81_c00111{left:227.066667pt;}
.x4c_c00111{left:228.533333pt;}
.x91_c00111{left:229.466667pt;}
.xa_c00111{left:230.400000pt;}
.x71_c00111{left:232.266667pt;}
.x18_c00111{left:234.133333pt;}
.x53_c00111{left:235.333333pt;}
.x30_c00111{left:237.066667pt;}
.x7b_c00111{left:238.266667pt;}
.x66_c00111{left:239.200000pt;}
.x4a_c00111{left:241.066667pt;}
.x4_c00111{left:242.533333pt;}
.x78_c00111{left:243.733333pt;}
.x3c_c00111{left:246.133333pt;}
.x8c_c00111{left:247.866667pt;}
.x7d_c00111{left:250.800000pt;}
.x12_c00111{left:252.000000pt;}
.x74_c00111{left:254.800000pt;}
.x4d_c00111{left:256.400000pt;}
.x19_c00111{left:257.466667pt;}
.xb_c00111{left:258.533333pt;}
.x45_c00111{left:260.933333pt;}
.x26_c00111{left:263.066667pt;}
.x38_c00111{left:265.733333pt;}
.x82_c00111{left:268.933333pt;}
.x31_c00111{left:271.333333pt;}
.x1a_c00111{left:273.200000pt;}
.x93_c00111{left:276.133333pt;}
.x60_c00111{left:277.200000pt;}
.x2a_c00111{left:279.733333pt;}
.x8b_c00111{left:280.800000pt;}
.x1f_c00111{left:285.333333pt;}
.x5_c00111{left:286.666667pt;}
.x72_c00111{left:287.600000pt;}
.x87_c00111{left:289.333333pt;}
.x46_c00111{left:290.400000pt;}
.x39_c00111{left:292.266667pt;}
.x2b_c00111{left:293.466667pt;}
.x8d_c00111{left:294.533333pt;}
.x13_c00111{left:295.466667pt;}
.x75_c00111{left:297.066667pt;}
.x58_c00111{left:298.133333pt;}
.x5c_c00111{left:299.200000pt;}
.x4b_c00111{left:301.200000pt;}
.x27_c00111{left:303.066667pt;}
.x3d_c00111{left:304.000000pt;}
.xc_c00111{left:307.466667pt;}
.x6b_c00111{left:308.666667pt;}
.x32_c00111{left:311.866667pt;}
.x3a_c00111{left:314.400000pt;}
.x63_c00111{left:315.600000pt;}
.x83_c00111{left:317.600000pt;}
.x76_c00111{left:321.333333pt;}
.x1b_c00111{left:322.800000pt;}
.x4e_c00111{left:324.933333pt;}
.x47_c00111{left:325.866667pt;}
.x14_c00111{left:328.133333pt;}
.x7e_c00111{left:329.866667pt;}
.x54_c00111{left:332.000000pt;}
.x89_c00111{left:333.066667pt;}
.x59_c00111{left:334.266667pt;}
.x68_c00111{left:336.133333pt;}
.x6e_c00111{left:338.400000pt;}
.x1c_c00111{left:342.666667pt;}
.x88_c00111{left:343.733333pt;}
.x8e_c00111{left:344.800000pt;}
.x28_c00111{left:346.266667pt;}
.x23_c00111{left:352.000000pt;}
.x15_c00111{left:353.466667pt;}
.x69_c00111{left:355.333333pt;}
.x33_c00111{left:356.666667pt;}
.x5d_c00111{left:358.133333pt;}
.xd_c00111{left:359.600000pt;}
.x84_c00111{left:360.533333pt;}
.x77_c00111{left:362.666667pt;}
.x64_c00111{left:364.533333pt;}
.x2c_c00111{left:365.733333pt;}
.x1d_c00111{left:366.933333pt;}
.x8a_c00111{left:371.733333pt;}
.x6_c00111{left:373.733333pt;}
.x29_c00111{left:375.066667pt;}
.x2d_c00111{left:376.000000pt;}
.x5a_c00111{left:378.400000pt;}
.xe_c00111{left:379.733333pt;}
.x2_c00111{left:381.066667pt;}
.x43_c00111{left:382.533333pt;}
.x55_c00111{left:386.400000pt;}
.x56_c00111{left:387.733333pt;}
.x4f_c00111{left:389.600000pt;}
.x16_c00111{left:391.600000pt;}
.x34_c00111{left:393.466667pt;}
.xf_c00111{left:394.400000pt;}
.x7a_c00111{left:399.333333pt;}
.x2e_c00111{left:400.266667pt;}
.x24_c00111{left:403.466667pt;}
.x3e_c00111{left:404.533333pt;}
.x5e_c00111{left:408.400000pt;}
.x7f_c00111{left:409.866667pt;}
.x48_c00111{left:412.933333pt;}
.x7_c00111{left:414.933333pt;}
.x3f_c00111{left:418.266667pt;}
.x3b_c00111{left:421.200000pt;}
.x1e_c00111{left:422.266667pt;}
.x67_c00111{left:423.200000pt;}
.x25_c00111{left:425.200000pt;}
.x20_c00111{left:426.133333pt;}
.x17_c00111{left:427.466667pt;}
.x50_c00111{left:428.666667pt;}
.x85_c00111{left:431.333333pt;}
.x79_c00111{left:432.266667pt;}
.x90_c00111{left:434.133333pt;}
.x35_c00111{left:435.333333pt;}
.x6a_c00111{left:436.400000pt;}
.x10_c00111{left:438.533333pt;}
.x8_c00111{left:439.600000pt;}
.x8f_c00111{left:444.800000pt;}
.x86_c00111{left:446.400000pt;}
.x57_c00111{left:447.866667pt;}
.x40_c00111{left:451.600000pt;}
.x21_c00111{left:454.666667pt;}
.x7c_c00111{left:455.600000pt;}
.x73_c00111{left:456.533333pt;}
.x6f_c00111{left:462.133333pt;}
.x98_c00111{left:482.533333pt;}
.xce_c00111{left:483.466667pt;}
.xfa_c00111{left:485.066667pt;}
.xf4_c00111{left:491.200000pt;}
.x9f_c00111{left:498.133333pt;}
.xe3_c00111{left:499.200000pt;}
.xf9_c00111{left:500.533333pt;}
.xa3_c00111{left:514.266667pt;}
.xb5_c00111{left:515.866667pt;}
.xee_c00111{left:517.066667pt;}
.xe8_c00111{left:518.400000pt;}
.xa0_c00111{left:521.200000pt;}
.x99_c00111{left:523.466667pt;}
.x94_c00111{left:526.133333pt;}
.xec_c00111{left:533.733333pt;}
.xbb_c00111{left:535.333333pt;}
.xf1_c00111{left:539.866667pt;}
.xc6_c00111{left:541.466667pt;}
.xf5_c00111{left:542.666667pt;}
.x101_c00111{left:544.133333pt;}
.x96_c00111{left:546.666667pt;}
.xe9_c00111{left:548.800000pt;}
.xc1_c00111{left:552.666667pt;}
.xa9_c00111{left:555.733333pt;}
.x10b_c00111{left:558.133333pt;}
.xef_c00111{left:559.333333pt;}
.xc4_c00111{left:563.600000pt;}
.x102_c00111{left:565.200000pt;}
.xac_c00111{left:566.400000pt;}
.xe6_c00111{left:567.466667pt;}
.xb6_c00111{left:568.400000pt;}
.x105_c00111{left:569.333333pt;}
.x9a_c00111{left:570.533333pt;}
.xc7_c00111{left:571.866667pt;}
.xe7_c00111{left:572.800000pt;}
.xd9_c00111{left:574.133333pt;}
.xff_c00111{left:577.333333pt;}
.xd1_c00111{left:580.533333pt;}
.xb0_c00111{left:581.733333pt;}
.xdc_c00111{left:583.600000pt;}
.x108_c00111{left:584.933333pt;}
.xd4_c00111{left:586.533333pt;}
.xc8_c00111{left:588.133333pt;}
.xed_c00111{left:590.400000pt;}
.xcf_c00111{left:591.733333pt;}
.xd2_c00111{left:593.333333pt;}
.xfb_c00111{left:596.000000pt;}
.xbc_c00111{left:597.466667pt;}
.xa1_c00111{left:598.933333pt;}
.xf0_c00111{left:600.666667pt;}
.xb7_c00111{left:602.000000pt;}
.xdd_c00111{left:608.933333pt;}
.xc2_c00111{left:610.266667pt;}
.xaa_c00111{left:611.333333pt;}
.xa4_c00111{left:616.266667pt;}
.xde_c00111{left:617.200000pt;}
.xad_c00111{left:619.200000pt;}
.xbd_c00111{left:622.800000pt;}
.xab_c00111{left:626.666667pt;}
.x9b_c00111{left:628.133333pt;}
.xe4_c00111{left:629.200000pt;}
.x109_c00111{left:632.533333pt;}
.xcd_c00111{left:633.600000pt;}
.xd0_c00111{left:637.200000pt;}
.xa5_c00111{left:641.600000pt;}
.x95_c00111{left:642.933333pt;}
.xe0_c00111{left:643.866667pt;}
.xea_c00111{left:644.800000pt;}
.x9c_c00111{left:647.333333pt;}
.xe5_c00111{left:648.666667pt;}
.xd5_c00111{left:654.000000pt;}
.x10a_c00111{left:654.933333pt;}
.xb1_c00111{left:657.200000pt;}
.xc9_c00111{left:659.466667pt;}
.x106_c00111{left:662.400000pt;}
.xb8_c00111{left:663.733333pt;}
.xf6_c00111{left:666.533333pt;}
.xca_c00111{left:668.800000pt;}
.xc3_c00111{left:670.133333pt;}
.xa2_c00111{left:672.266667pt;}
.x97_c00111{left:673.733333pt;}
.xa6_c00111{left:675.466667pt;}
.xbe_c00111{left:679.466667pt;}
.xb9_c00111{left:683.600000pt;}
.x100_c00111{left:684.933333pt;}
.xb2_c00111{left:686.000000pt;}
.xae_c00111{left:687.066667pt;}
.xd6_c00111{left:692.133333pt;}
.x103_c00111{left:695.466667pt;}
.xc5_c00111{left:701.066667pt;}
.xf2_c00111{left:702.000000pt;}
.xaf_c00111{left:705.333333pt;}
.xbf_c00111{left:708.266667pt;}
.xf7_c00111{left:709.466667pt;}
.xb3_c00111{left:713.200000pt;}
.xfc_c00111{left:716.000000pt;}
.xe1_c00111{left:719.066667pt;}
.xcb_c00111{left:721.600000pt;}
.xdf_c00111{left:722.800000pt;}
.xc0_c00111{left:724.266667pt;}
.xfd_c00111{left:725.866667pt;}
.x9d_c00111{left:727.600000pt;}
.xcc_c00111{left:734.666667pt;}
.xf8_c00111{left:739.866667pt;}
.xa7_c00111{left:741.066667pt;}
.xeb_c00111{left:744.666667pt;}
.x104_c00111{left:748.000000pt;}
.xd3_c00111{left:750.400000pt;}
.x9e_c00111{left:752.266667pt;}
.x10c_c00111{left:753.333333pt;}
.x107_c00111{left:754.533333pt;}
.xda_c00111{left:758.666667pt;}
.xf3_c00111{left:761.466667pt;}
.xfe_c00111{left:762.400000pt;}
.xb4_c00111{left:769.200000pt;}
.xe2_c00111{left:770.266667pt;}
.xd7_c00111{left:771.466667pt;}
.xa8_c00111{left:773.333333pt;}
.xba_c00111{left:775.066667pt;}
.xdb_c00111{left:780.400000pt;}
.xd8_c00111{left:784.266667pt;}
}





/* 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_c00112 {
    display:none;
  }
  .loading-indicator_c00112.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00112 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_c00112 { 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_c00112" -> "#page-container .classname_c00112")
 */
.pf_c00112 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00112 { /* 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_c00112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00112 { /* 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_c00112 { /* 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_c00112 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00112 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00112 {overflow:visible;}
  }
}
.c_c00112 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00112 { /* 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_c00112:after { /* webkit #35443 */
  content: '';
}
.t_c00112:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00112 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 */
}
.__c00112 { /* 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_c00112 { /* info for Javascript */
  display:none;
}
.l_c00112 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00112 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00112 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00112: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_c00112 {
    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_c00112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00112.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_c00112 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00112;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.000000;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;}
.m21_c00112{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);}
.m72_c00112{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00112{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00112{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m7_c00112{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00112{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m40_c00112{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00112{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m13_c00112{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00112{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00112{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m11_c00112{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00112{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00112{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m12_c00112{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00112{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m63_c00112{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00112{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m15_c00112{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m102_c00112{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m23_c00112{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m84_c00112{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.med_c00112{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m108_c00112{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m14_c00112{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00112{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m68_c00112{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00112{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00112{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m52_c00112{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00112{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00112{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00112{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m42_c00112{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00112{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00112{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.me0_c00112{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mce_c00112{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00112{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9_c00112{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00112{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m81_c00112{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00112{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m56_c00112{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00112{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00112{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mc_c00112{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me5_c00112{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00112{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m79_c00112{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00112{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m38_c00112{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6_c00112{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00112{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mac_c00112{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m87_c00112{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00112{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00112{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m75_c00112{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00112{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m55_c00112{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m28_c00112{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mde_c00112{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00112{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m91_c00112{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00112{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m110_c00112{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00112{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.maa_c00112{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m109_c00112{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00112{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00112{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00112{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00112{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m50_c00112{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m44_c00112{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md0_c00112{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m37_c00112{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m58_c00112{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mf_c00112{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m47_c00112{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m82_c00112{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m90_c00112{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00112{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m65_c00112{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00112{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8_c00112{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m39_c00112{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00112{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00112{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00112{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m53_c00112{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00112{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m46_c00112{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00112{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m93_c00112{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m35_c00112{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m36_c00112{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00112{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m71_c00112{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m92_c00112{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m49_c00112{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00112{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m100_c00112{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m20_c00112{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m5_c00112{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m34_c00112{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00112{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma_c00112{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m43_c00112{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00112{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m54_c00112{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m45_c00112{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m60_c00112{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m18_c00112{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00112{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00112{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00112{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m67_c00112{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m29_c00112{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m101_c00112{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m48_c00112{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00112{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m69_c00112{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m24_c00112{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mad_c00112{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m86_c00112{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00112{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.md2_c00112{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00112{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00112{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m30_c00112{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m62_c00112{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md8_c00112{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00112{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00112{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.me2_c00112{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m80_c00112{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00112{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m19_c00112{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00112{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00112{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00112{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me1_c00112{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mca_c00112{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m94_c00112{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m78_c00112{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00112{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00112{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00112{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m59_c00112{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00112{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mef_c00112{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.md1_c00112{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00112{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00112{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00112{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m73_c00112{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00112{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00112{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md9_c00112{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md6_c00112{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m51_c00112{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m33_c00112{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00112{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m95_c00112{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00112{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m10_c00112{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m88_c00112{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb_c00112{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m107_c00112{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me9_c00112{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00112{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m16_c00112{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m32_c00112{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00112{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00112{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m27_c00112{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00112{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mba_c00112{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00112{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00112{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00112{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00112{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.me_c00112{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00112{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m57_c00112{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m111_c00112{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00112{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m97_c00112{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00112{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m66_c00112{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m77_c00112{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00112{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00112{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00112{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4_c00112{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m89_c00112{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00112{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00112{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00112{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00112{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00112{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m99_c00112{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md7_c00112{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m25_c00112{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md5_c00112{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00112{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m98_c00112{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00112{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mec_c00112{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m2_c00112{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m74_c00112{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m76_c00112{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m41_c00112{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mee_c00112{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00112{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00112{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00112{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00112{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mda_c00112{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m64_c00112{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);}
.m26_c00112{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m96_c00112{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m83_c00112{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m105_c00112{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m31_c00112{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00112{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00112{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m85_c00112{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mea_c00112{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00112{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00112{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.meb_c00112{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.me7_c00112{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00112{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m61_c00112{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me6_c00112{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m104_c00112{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00112{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.me3_c00112{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m70_c00112{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.maf_c00112{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00112{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00112{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m103_c00112{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00112{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00112{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m3_c00112{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00112{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m22_c00112{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00112{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00112{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00112{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.mff_c00112{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me4_c00112{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.mab_c00112{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.md4_c00112{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00112{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.me8_c00112{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00112{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00112{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00112{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00112{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00112{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00112{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.md3_c00112{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00112{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mae_c00112{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m0_c00112{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m106_c00112{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00112{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00112{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls1_c00112{letter-spacing:0.000000px;}
.ls0_c00112{letter-spacing:48.125000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{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__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00112{word-spacing:-78.125000px;}
.ws0_c00112{word-spacing:-7.631579px;}
.wsa_c00112{word-spacing:-4.403941px;}
.wsc_c00112{word-spacing:-2.062500px;}
.ws9_c00112{word-spacing:-1.722557px;}
.ws8_c00112{word-spacing:-1.111111px;}
.wsd_c00112{word-spacing:0.000000px;}
.wsb_c00112{word-spacing:0.307278px;}
.ws4_c00112{word-spacing:5.687421px;}
.ws5_c00112{word-spacing:13.925211px;}
.ws6_c00112{word-spacing:21.865031px;}
.ws3_c00112{word-spacing:28.426230px;}
.ws1_c00112{word-spacing:29.285714px;}
.ws2_c00112{word-spacing:165.263158px;}
._0_c00112{margin-left:-48.125000px;}
.fc0_c00112{color:transparent;}
.fs6_c00112{font-size:30.000000px;}
.fs7_c00112{font-size:36.000000px;}
.fs3_c00112{font-size:48.000000px;}
.fs4_c00112{font-size:60.000000px;}
.fs5_c00112{font-size:66.000000px;}
.fs2_c00112{font-size:72.000000px;}
.fs1_c00112{font-size:78.000000px;}
.fs0_c00112{font-size:84.000000px;}
.y0_c00112{bottom:0.000000px;}
.y63_c00112{bottom:172.200000px;}
.y33_c00112{bottom:177.900000px;}
.y62_c00112{bottom:195.750000px;}
.y32_c00112{bottom:195.900000px;}
.y61_c00112{bottom:213.750000px;}
.y31_c00112{bottom:230.700000px;}
.y60_c00112{bottom:236.100000px;}
.y5f_c00112{bottom:254.100000px;}
.y30_c00112{bottom:265.650000px;}
.y5e_c00112{bottom:272.100000px;}
.y5d_c00112{bottom:289.800000px;}
.y2f_c00112{bottom:292.650000px;}
.y5c_c00112{bottom:307.800000px;}
.y2e_c00112{bottom:319.650000px;}
.y5b_c00112{bottom:325.800000px;}
.y2d_c00112{bottom:337.650000px;}
.y5a_c00112{bottom:343.500000px;}
.y2c_c00112{bottom:355.350000px;}
.y59_c00112{bottom:361.500000px;}
.y2b_c00112{bottom:373.350000px;}
.y58_c00112{bottom:383.400000px;}
.y2a_c00112{bottom:391.050000px;}
.y29_c00112{bottom:409.050000px;}
.y57_c00112{bottom:414.300000px;}
.y28_c00112{bottom:426.750000px;}
.y56_c00112{bottom:436.500000px;}
.y27_c00112{bottom:445.050000px;}
.y55_c00112{bottom:454.500000px;}
.y26_c00112{bottom:462.750000px;}
.y54_c00112{bottom:472.500000px;}
.y25_c00112{bottom:480.750000px;}
.y53_c00112{bottom:490.500000px;}
.y24_c00112{bottom:498.450000px;}
.y52_c00112{bottom:508.200000px;}
.y23_c00112{bottom:516.450000px;}
.y51_c00112{bottom:526.200000px;}
.y22_c00112{bottom:534.150000px;}
.y50_c00112{bottom:543.900000px;}
.y21_c00112{bottom:552.150000px;}
.y4f_c00112{bottom:561.900000px;}
.y20_c00112{bottom:570.150000px;}
.y4e_c00112{bottom:579.900000px;}
.y1f_c00112{bottom:588.150000px;}
.y4d_c00112{bottom:597.900000px;}
.y1e_c00112{bottom:605.850000px;}
.y4c_c00112{bottom:620.250000px;}
.y1d_c00112{bottom:626.400000px;}
.y4b_c00112{bottom:637.950000px;}
.y1c_c00112{bottom:641.850000px;}
.y1b_c00112{bottom:654.450000px;}
.y4a_c00112{bottom:660.600000px;}
.y1a_c00112{bottom:673.200000px;}
.y49_c00112{bottom:682.200000px;}
.y19_c00112{bottom:694.800000px;}
.y48_c00112{bottom:699.900000px;}
.y18_c00112{bottom:712.800000px;}
.y47_c00112{bottom:722.100000px;}
.y17_c00112{bottom:730.800000px;}
.y46_c00112{bottom:740.100000px;}
.y16_c00112{bottom:748.500000px;}
.y45_c00112{bottom:757.800000px;}
.y15_c00112{bottom:766.500000px;}
.y44_c00112{bottom:779.700000px;}
.y14_c00112{bottom:788.100000px;}
.y43_c00112{bottom:797.700000px;}
.y13_c00112{bottom:806.400000px;}
.y42_c00112{bottom:819.750000px;}
.y12_c00112{bottom:833.100000px;}
.y41_c00112{bottom:842.100000px;}
.y11_c00112{bottom:851.400000px;}
.y40_c00112{bottom:860.100000px;}
.y10_c00112{bottom:869.100000px;}
.y3f_c00112{bottom:882.600000px;}
.yf_c00112{bottom:887.100000px;}
.y3e_c00112{bottom:900.300000px;}
.ye_c00112{bottom:913.650000px;}
.y3d_c00112{bottom:921.900000px;}
.yd_c00112{bottom:931.350000px;}
.y3c_c00112{bottom:939.600000px;}
.yc_c00112{bottom:949.350000px;}
.y3b_c00112{bottom:961.200000px;}
.yb_c00112{bottom:967.350000px;}
.y3a_c00112{bottom:979.200000px;}
.ya_c00112{bottom:996.750000px;}
.y39_c00112{bottom:1001.550000px;}
.y9_c00112{bottom:1002.900000px;}
.y8_c00112{bottom:1020.600000px;}
.y38_c00112{bottom:1028.400000px;}
.y37_c00112{bottom:1037.100000px;}
.y7_c00112{bottom:1042.200000px;}
.y36_c00112{bottom:1048.050000px;}
.y6_c00112{bottom:1056.300000px;}
.y35_c00112{bottom:1058.100000px;}
.y5_c00112{bottom:1070.700000px;}
.y4_c00112{bottom:1083.600000px;}
.y34_c00112{bottom:1084.350000px;}
.y3_c00112{bottom:1107.000000px;}
.y2_c00112{bottom:1126.200000px;}
.y1_c00112{bottom:1133.700000px;}
.h8_c00112{height:30.000000px;}
.h9_c00112{height:36.000000px;}
.h5_c00112{height:48.000000px;}
.h6_c00112{height:60.000000px;}
.h7_c00112{height:66.000000px;}
.h4_c00112{height:72.000000px;}
.h3_c00112{height:78.000000px;}
.h2_c00112{height:84.000000px;}
.h1_c00112{height:1273.500000px;}
.h0_c00112{height:1273.679993px;}
.w1_c00112{width:953.250000px;}
.w0_c00112{width:953.280030px;}
.x0_c00112{left:0.000000px;}
.x6c_c00112{left:88.500000px;}
.x68_c00112{left:89.700000px;}
.x4_c00112{left:90.750000px;}
.x4d_c00112{left:92.100000px;}
.x5b_c00112{left:104.100000px;}
.x51_c00112{left:109.050000px;}
.x24_c00112{left:110.700000px;}
.x82_c00112{left:111.900000px;}
.x92_c00112{left:120.300000px;}
.x17_c00112{left:121.650000px;}
.x52_c00112{left:130.350000px;}
.x91_c00112{left:133.950000px;}
.x8d_c00112{left:135.600000px;}
.x5_c00112{left:137.550000px;}
.x65_c00112{left:139.950000px;}
.x31_c00112{left:142.200000px;}
.x18_c00112{left:144.000000px;}
.x76_c00112{left:145.500000px;}
.x84_c00112{left:146.550000px;}
.x75_c00112{left:148.350000px;}
.x5c_c00112{left:151.650000px;}
.xe_c00112{left:152.700000px;}
.x69_c00112{left:155.250000px;}
.x7c_c00112{left:157.500000px;}
.x36_c00112{left:158.850000px;}
.x32_c00112{left:161.700000px;}
.x19_c00112{left:163.500000px;}
.x94_c00112{left:164.550000px;}
.x70_c00112{left:165.900000px;}
.x28_c00112{left:169.350000px;}
.x77_c00112{left:170.400000px;}
.x4e_c00112{left:172.050000px;}
.x49_c00112{left:173.100000px;}
.x53_c00112{left:174.600000px;}
.x7d_c00112{left:175.800000px;}
.x8b_c00112{left:178.050000px;}
.x25_c00112{left:180.150000px;}
.x20_c00112{left:182.250000px;}
.x85_c00112{left:185.100000px;}
.x37_c00112{left:188.700000px;}
.x43_c00112{left:191.550000px;}
.x3d_c00112{left:194.550000px;}
.x29_c00112{left:196.050000px;}
.x71_c00112{left:198.000000px;}
.x95_c00112{left:199.950000px;}
.x8e_c00112{left:201.150000px;}
.x6_c00112{left:202.650000px;}
.x2d_c00112{left:207.600000px;}
.xf_c00112{left:209.250000px;}
.x45_c00112{left:210.300000px;}
.x83_c00112{left:211.650000px;}
.x38_c00112{left:213.600000px;}
.x86_c00112{left:214.950000px;}
.x54_c00112{left:216.750000px;}
.x72_c00112{left:218.550000px;}
.x5d_c00112{left:220.050000px;}
.x4f_c00112{left:221.400000px;}
.x21_c00112{left:223.350000px;}
.x78_c00112{left:225.150000px;}
.x61_c00112{left:226.950000px;}
.x46_c00112{left:229.350000px;}
.x88_c00112{left:232.650000px;}
.x4a_c00112{left:234.000000px;}
.x42_c00112{left:236.100000px;}
.x8a_c00112{left:237.450000px;}
.x3e_c00112{left:238.500000px;}
.x33_c00112{left:239.850000px;}
.x5e_c00112{left:242.400000px;}
.x6d_c00112{left:247.200000px;}
.x66_c00112{left:249.000000px;}
.x7_c00112{left:250.500000px;}
.x55_c00112{left:252.750000px;}
.x6a_c00112{left:256.800000px;}
.x39_c00112{left:258.600000px;}
.x10_c00112{left:259.950000px;}
.x4b_c00112{left:262.500000px;}
.x26_c00112{left:264.450000px;}
.x7e_c00112{left:265.800000px;}
.x93_c00112{left:267.000000px;}
.x87_c00112{left:269.250000px;}
.x57_c00112{left:271.350000px;}
.x73_c00112{left:272.850000px;}
.x2e_c00112{left:273.900000px;}
.x1a_c00112{left:275.850000px;}
.x44_c00112{left:280.500000px;}
.x62_c00112{left:284.850000px;}
.x4c_c00112{left:285.900000px;}
.x5f_c00112{left:288.900000px;}
.x3f_c00112{left:290.700000px;}
.x6b_c00112{left:294.900000px;}
.x1b_c00112{left:296.700000px;}
.x67_c00112{left:299.700000px;}
.x8f_c00112{left:300.900000px;}
.x1c_c00112{left:303.150000px;}
.x8_c00112{left:304.200000px;}
.x3a_c00112{left:306.150000px;}
.x2a_c00112{left:307.650000px;}
.x11_c00112{left:310.350000px;}
.x79_c00112{left:311.850000px;}
.x9_c00112{left:313.950000px;}
.x22_c00112{left:315.150000px;}
.x12_c00112{left:317.550000px;}
.x2f_c00112{left:319.950000px;}
.x7b_c00112{left:321.000000px;}
.x6f_c00112{left:322.650000px;}
.x13_c00112{left:325.500000px;}
.x3b_c00112{left:327.450000px;}
.x14_c00112{left:332.400000px;}
.x1_c00112{left:336.300000px;}
.x40_c00112{left:339.300000px;}
.x63_c00112{left:341.400000px;}
.x30_c00112{left:344.850000px;}
.x7f_c00112{left:347.250000px;}
.x81_c00112{left:349.500000px;}
.xb_c00112{left:351.000000px;}
.xa_c00112{left:352.800000px;}
.x47_c00112{left:354.900000px;}
.x90_c00112{left:356.700000px;}
.x1f_c00112{left:357.750000px;}
.x15_c00112{left:360.750000px;}
.x8c_c00112{left:365.250000px;}
.x50_c00112{left:366.450000px;}
.x59_c00112{left:367.800000px;}
.x3c_c00112{left:369.150000px;}
.x56_c00112{left:370.800000px;}
.x41_c00112{left:373.200000px;}
.x6e_c00112{left:376.050000px;}
.x60_c00112{left:377.850000px;}
.x2b_c00112{left:380.250000px;}
.xc_c00112{left:381.600000px;}
.x23_c00112{left:383.250000px;}
.x34_c00112{left:384.450000px;}
.x16_c00112{left:388.050000px;}
.x58_c00112{left:390.150000px;}
.x74_c00112{left:393.150000px;}
.x27_c00112{left:395.850000px;}
.x2c_c00112{left:401.100000px;}
.x89_c00112{left:403.050000px;}
.x5a_c00112{left:404.550000px;}
.x48_c00112{left:408.600000px;}
.x1d_c00112{left:410.100000px;}
.x7a_c00112{left:414.450000px;}
.xd_c00112{left:415.500000px;}
.x1e_c00112{left:416.550000px;}
.x35_c00112{left:419.100000px;}
.x80_c00112{left:425.700000px;}
.x64_c00112{left:429.900000px;}
.x105_c00112{left:448.950000px;}
.xde_c00112{left:450.000000px;}
.x9b_c00112{left:451.950000px;}
.x127_c00112{left:465.150000px;}
.x10a_c00112{left:466.200000px;}
.xc7_c00112{left:468.000000px;}
.xa6_c00112{left:469.200000px;}
.xa9_c00112{left:473.400000px;}
.x111_c00112{left:478.650000px;}
.xed_c00112{left:482.100000px;}
.xdc_c00112{left:484.950000px;}
.xaa_c00112{left:486.750000px;}
.x96_c00112{left:487.800000px;}
.xd7_c00112{left:490.050000px;}
.x120_c00112{left:491.250000px;}
.xe9_c00112{left:493.500000px;}
.x106_c00112{left:494.550000px;}
.x128_c00112{left:496.050000px;}
.x9c_c00112{left:498.450000px;}
.x11f_c00112{left:501.450000px;}
.xa4_c00112{left:502.950000px;}
.x124_c00112{left:504.150000px;}
.x115_c00112{left:505.200000px;}
.xfb_c00112{left:508.950000px;}
.xf0_c00112{left:510.000000px;}
.xb2_c00112{left:513.300000px;}
.xd3_c00112{left:515.100000px;}
.xf7_c00112{left:518.550000px;}
.xca_c00112{left:521.250000px;}
.x129_c00112{left:522.300000px;}
.x118_c00112{left:523.650000px;}
.x99_c00112{left:527.550000px;}
.xc8_c00112{left:529.500000px;}
.x107_c00112{left:532.050000px;}
.xa5_c00112{left:533.250000px;}
.x10b_c00112{left:534.600000px;}
.x9a_c00112{left:538.350000px;}
.xb4_c00112{left:539.550000px;}
.xb8_c00112{left:541.500000px;}
.xbc_c00112{left:542.550000px;}
.x101_c00112{left:544.650000px;}
.x108_c00112{left:545.850000px;}
.xab_c00112{left:548.250000px;}
.xc3_c00112{left:551.550000px;}
.xf5_c00112{left:553.500000px;}
.xaf_c00112{left:555.150000px;}
.xc1_c00112{left:557.250000px;}
.x121_c00112{left:558.600000px;}
.x11c_c00112{left:560.400000px;}
.xd8_c00112{left:562.800000px;}
.x97_c00112{left:564.900000px;}
.x9d_c00112{left:566.100000px;}
.xa7_c00112{left:568.200000px;}
.xf3_c00112{left:570.450000px;}
.xcf_c00112{left:571.800000px;}
.xe5_c00112{left:573.600000px;}
.xea_c00112{left:576.000000px;}
.xee_c00112{left:578.550000px;}
.xd0_c00112{left:580.050000px;}
.xb3_c00112{left:581.400000px;}
.xfc_c00112{left:582.450000px;}
.xdd_c00112{left:583.950000px;}
.xe1_c00112{left:586.050000px;}
.xcb_c00112{left:587.400000px;}
.x10c_c00112{left:590.100000px;}
.xf8_c00112{left:591.300000px;}
.xc9_c00112{left:592.500000px;}
.xeb_c00112{left:594.750000px;}
.xa8_c00112{left:597.000000px;}
.x11d_c00112{left:605.400000px;}
.x98_c00112{left:607.350000px;}
.x122_c00112{left:608.700000px;}
.xb5_c00112{left:610.050000px;}
.xd9_c00112{left:613.200000px;}
.xbd_c00112{left:614.550000px;}
.xb9_c00112{left:618.150000px;}
.x10d_c00112{left:619.650000px;}
.x109_c00112{left:620.700000px;}
.xac_c00112{left:622.050000px;}
.xd1_c00112{left:626.100000px;}
.x2_c00112{left:630.450000px;}
.xf1_c00112{left:631.650000px;}
.xc4_c00112{left:633.750000px;}
.x9e_c00112{left:636.300000px;}
.xe2_c00112{left:637.500000px;}
.x119_c00112{left:639.150000px;}
.xbe_c00112{left:640.500000px;}
.xda_c00112{left:641.700000px;}
.x102_c00112{left:643.650000px;}
.xef_c00112{left:644.850000px;}
.x125_c00112{left:645.900000px;}
.xc5_c00112{left:647.400000px;}
.xc2_c00112{left:649.350000px;}
.xf9_c00112{left:650.400000px;}
.xfd_c00112{left:652.950000px;}
.x114_c00112{left:657.150000px;}
.xd4_c00112{left:658.650000px;}
.xb6_c00112{left:663.000000px;}
.xf6_c00112{left:664.350000px;}
.xf2_c00112{left:667.650000px;}
.x112_c00112{left:669.000000px;}
.x10e_c00112{left:670.350000px;}
.xad_c00112{left:672.750000px;}
.xfe_c00112{left:675.300000px;}
.xcc_c00112{left:676.350000px;}
.x9f_c00112{left:677.400000px;}
.xec_c00112{left:680.100000px;}
.x113_c00112{left:685.950000px;}
.xbf_c00112{left:687.600000px;}
.x116_c00112{left:688.950000px;}
.xba_c00112{left:691.950000px;}
.xff_c00112{left:694.350000px;}
.xe3_c00112{left:696.150000px;}
.xae_c00112{left:697.950000px;}
.x11a_c00112{left:699.150000px;}
.xd5_c00112{left:700.350000px;}
.xa0_c00112{left:701.850000px;}
.xe6_c00112{left:703.500000px;}
.xb0_c00112{left:705.150000px;}
.xdb_c00112{left:707.550000px;}
.xbb_c00112{left:711.750000px;}
.xdf_c00112{left:713.400000px;}
.x10f_c00112{left:715.050000px;}
.xe4_c00112{left:717.450000px;}
.x123_c00112{left:721.500000px;}
.xc6_c00112{left:722.550000px;}
.xc0_c00112{left:723.600000px;}
.x126_c00112{left:726.150000px;}
.xe7_c00112{left:727.200000px;}
.x117_c00112{left:729.600000px;}
.xfa_c00112{left:730.650000px;}
.x11e_c00112{left:734.700000px;}
.x100_c00112{left:735.750000px;}
.x103_c00112{left:740.250000px;}
.xcd_c00112{left:746.100000px;}
.xe8_c00112{left:747.300000px;}
.x104_c00112{left:749.250000px;}
.xa1_c00112{left:750.750000px;}
.xd2_c00112{left:752.400000px;}
.x110_c00112{left:753.600000px;}
.xd6_c00112{left:756.150000px;}
.xa2_c00112{left:759.450000px;}
.xb7_c00112{left:762.450000px;}
.x11b_c00112{left:766.050000px;}
.xe0_c00112{left:769.500000px;}
.x3_c00112{left:770.850000px;}
.xb1_c00112{left:772.800000px;}
.xa3_c00112{left:775.650000px;}
.xf4_c00112{left:781.050000px;}
.xce_c00112{left:783.150000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls1_c00112{letter-spacing:0.000000pt;}
.ls0_c00112{letter-spacing:42.777778pt;}
.ws7_c00112{word-spacing:-69.444444pt;}
.ws0_c00112{word-spacing:-6.783626pt;}
.wsa_c00112{word-spacing:-3.914614pt;}
.wsc_c00112{word-spacing:-1.833333pt;}
.ws9_c00112{word-spacing:-1.531162pt;}
.ws8_c00112{word-spacing:-0.987654pt;}
.wsd_c00112{word-spacing:0.000000pt;}
.wsb_c00112{word-spacing:0.273136pt;}
.ws4_c00112{word-spacing:5.055485pt;}
.ws5_c00112{word-spacing:12.377965pt;}
.ws6_c00112{word-spacing:19.435583pt;}
.ws3_c00112{word-spacing:25.267760pt;}
.ws1_c00112{word-spacing:26.031746pt;}
.ws2_c00112{word-spacing:146.900585pt;}
._0_c00112{margin-left:-42.777778pt;}
.fs6_c00112{font-size:26.666667pt;}
.fs7_c00112{font-size:32.000000pt;}
.fs3_c00112{font-size:42.666667pt;}
.fs4_c00112{font-size:53.333333pt;}
.fs5_c00112{font-size:58.666667pt;}
.fs2_c00112{font-size:64.000000pt;}
.fs1_c00112{font-size:69.333333pt;}
.fs0_c00112{font-size:74.666667pt;}
.y0_c00112{bottom:0.000000pt;}
.y63_c00112{bottom:153.066667pt;}
.y33_c00112{bottom:158.133333pt;}
.y62_c00112{bottom:174.000000pt;}
.y32_c00112{bottom:174.133333pt;}
.y61_c00112{bottom:190.000000pt;}
.y31_c00112{bottom:205.066667pt;}
.y60_c00112{bottom:209.866667pt;}
.y5f_c00112{bottom:225.866667pt;}
.y30_c00112{bottom:236.133333pt;}
.y5e_c00112{bottom:241.866667pt;}
.y5d_c00112{bottom:257.600000pt;}
.y2f_c00112{bottom:260.133333pt;}
.y5c_c00112{bottom:273.600000pt;}
.y2e_c00112{bottom:284.133333pt;}
.y5b_c00112{bottom:289.600000pt;}
.y2d_c00112{bottom:300.133333pt;}
.y5a_c00112{bottom:305.333333pt;}
.y2c_c00112{bottom:315.866667pt;}
.y59_c00112{bottom:321.333333pt;}
.y2b_c00112{bottom:331.866667pt;}
.y58_c00112{bottom:340.800000pt;}
.y2a_c00112{bottom:347.600000pt;}
.y29_c00112{bottom:363.600000pt;}
.y57_c00112{bottom:368.266667pt;}
.y28_c00112{bottom:379.333333pt;}
.y56_c00112{bottom:388.000000pt;}
.y27_c00112{bottom:395.600000pt;}
.y55_c00112{bottom:404.000000pt;}
.y26_c00112{bottom:411.333333pt;}
.y54_c00112{bottom:420.000000pt;}
.y25_c00112{bottom:427.333333pt;}
.y53_c00112{bottom:436.000000pt;}
.y24_c00112{bottom:443.066667pt;}
.y52_c00112{bottom:451.733333pt;}
.y23_c00112{bottom:459.066667pt;}
.y51_c00112{bottom:467.733333pt;}
.y22_c00112{bottom:474.800000pt;}
.y50_c00112{bottom:483.466667pt;}
.y21_c00112{bottom:490.800000pt;}
.y4f_c00112{bottom:499.466667pt;}
.y20_c00112{bottom:506.800000pt;}
.y4e_c00112{bottom:515.466667pt;}
.y1f_c00112{bottom:522.800000pt;}
.y4d_c00112{bottom:531.466667pt;}
.y1e_c00112{bottom:538.533333pt;}
.y4c_c00112{bottom:551.333333pt;}
.y1d_c00112{bottom:556.800000pt;}
.y4b_c00112{bottom:567.066667pt;}
.y1c_c00112{bottom:570.533333pt;}
.y1b_c00112{bottom:581.733333pt;}
.y4a_c00112{bottom:587.200000pt;}
.y1a_c00112{bottom:598.400000pt;}
.y49_c00112{bottom:606.400000pt;}
.y19_c00112{bottom:617.600000pt;}
.y48_c00112{bottom:622.133333pt;}
.y18_c00112{bottom:633.600000pt;}
.y47_c00112{bottom:641.866667pt;}
.y17_c00112{bottom:649.600000pt;}
.y46_c00112{bottom:657.866667pt;}
.y16_c00112{bottom:665.333333pt;}
.y45_c00112{bottom:673.600000pt;}
.y15_c00112{bottom:681.333333pt;}
.y44_c00112{bottom:693.066667pt;}
.y14_c00112{bottom:700.533333pt;}
.y43_c00112{bottom:709.066667pt;}
.y13_c00112{bottom:716.800000pt;}
.y42_c00112{bottom:728.666667pt;}
.y12_c00112{bottom:740.533333pt;}
.y41_c00112{bottom:748.533333pt;}
.y11_c00112{bottom:756.800000pt;}
.y40_c00112{bottom:764.533333pt;}
.y10_c00112{bottom:772.533333pt;}
.y3f_c00112{bottom:784.533333pt;}
.yf_c00112{bottom:788.533333pt;}
.y3e_c00112{bottom:800.266667pt;}
.ye_c00112{bottom:812.133333pt;}
.y3d_c00112{bottom:819.466667pt;}
.yd_c00112{bottom:827.866667pt;}
.y3c_c00112{bottom:835.200000pt;}
.yc_c00112{bottom:843.866667pt;}
.y3b_c00112{bottom:854.400000pt;}
.yb_c00112{bottom:859.866667pt;}
.y3a_c00112{bottom:870.400000pt;}
.ya_c00112{bottom:886.000000pt;}
.y39_c00112{bottom:890.266667pt;}
.y9_c00112{bottom:891.466667pt;}
.y8_c00112{bottom:907.200000pt;}
.y38_c00112{bottom:914.133333pt;}
.y37_c00112{bottom:921.866667pt;}
.y7_c00112{bottom:926.400000pt;}
.y36_c00112{bottom:931.600000pt;}
.y6_c00112{bottom:938.933333pt;}
.y35_c00112{bottom:940.533333pt;}
.y5_c00112{bottom:951.733333pt;}
.y4_c00112{bottom:963.200000pt;}
.y34_c00112{bottom:963.866667pt;}
.y3_c00112{bottom:984.000000pt;}
.y2_c00112{bottom:1001.066667pt;}
.y1_c00112{bottom:1007.733333pt;}
.h8_c00112{height:26.666667pt;}
.h9_c00112{height:32.000000pt;}
.h5_c00112{height:42.666667pt;}
.h6_c00112{height:53.333333pt;}
.h7_c00112{height:58.666667pt;}
.h4_c00112{height:64.000000pt;}
.h3_c00112{height:69.333333pt;}
.h2_c00112{height:74.666667pt;}
.h1_c00112{height:1132.000000pt;}
.h0_c00112{height:1132.159993pt;}
.w1_c00112{width:847.333333pt;}
.w0_c00112{width:847.360027pt;}
.x0_c00112{left:0.000000pt;}
.x6c_c00112{left:78.666667pt;}
.x68_c00112{left:79.733333pt;}
.x4_c00112{left:80.666667pt;}
.x4d_c00112{left:81.866667pt;}
.x5b_c00112{left:92.533333pt;}
.x51_c00112{left:96.933333pt;}
.x24_c00112{left:98.400000pt;}
.x82_c00112{left:99.466667pt;}
.x92_c00112{left:106.933333pt;}
.x17_c00112{left:108.133333pt;}
.x52_c00112{left:115.866667pt;}
.x91_c00112{left:119.066667pt;}
.x8d_c00112{left:120.533333pt;}
.x5_c00112{left:122.266667pt;}
.x65_c00112{left:124.400000pt;}
.x31_c00112{left:126.400000pt;}
.x18_c00112{left:128.000000pt;}
.x76_c00112{left:129.333333pt;}
.x84_c00112{left:130.266667pt;}
.x75_c00112{left:131.866667pt;}
.x5c_c00112{left:134.800000pt;}
.xe_c00112{left:135.733333pt;}
.x69_c00112{left:138.000000pt;}
.x7c_c00112{left:140.000000pt;}
.x36_c00112{left:141.200000pt;}
.x32_c00112{left:143.733333pt;}
.x19_c00112{left:145.333333pt;}
.x94_c00112{left:146.266667pt;}
.x70_c00112{left:147.466667pt;}
.x28_c00112{left:150.533333pt;}
.x77_c00112{left:151.466667pt;}
.x4e_c00112{left:152.933333pt;}
.x49_c00112{left:153.866667pt;}
.x53_c00112{left:155.200000pt;}
.x7d_c00112{left:156.266667pt;}
.x8b_c00112{left:158.266667pt;}
.x25_c00112{left:160.133333pt;}
.x20_c00112{left:162.000000pt;}
.x85_c00112{left:164.533333pt;}
.x37_c00112{left:167.733333pt;}
.x43_c00112{left:170.266667pt;}
.x3d_c00112{left:172.933333pt;}
.x29_c00112{left:174.266667pt;}
.x71_c00112{left:176.000000pt;}
.x95_c00112{left:177.733333pt;}
.x8e_c00112{left:178.800000pt;}
.x6_c00112{left:180.133333pt;}
.x2d_c00112{left:184.533333pt;}
.xf_c00112{left:186.000000pt;}
.x45_c00112{left:186.933333pt;}
.x83_c00112{left:188.133333pt;}
.x38_c00112{left:189.866667pt;}
.x86_c00112{left:191.066667pt;}
.x54_c00112{left:192.666667pt;}
.x72_c00112{left:194.266667pt;}
.x5d_c00112{left:195.600000pt;}
.x4f_c00112{left:196.800000pt;}
.x21_c00112{left:198.533333pt;}
.x78_c00112{left:200.133333pt;}
.x61_c00112{left:201.733333pt;}
.x46_c00112{left:203.866667pt;}
.x88_c00112{left:206.800000pt;}
.x4a_c00112{left:208.000000pt;}
.x42_c00112{left:209.866667pt;}
.x8a_c00112{left:211.066667pt;}
.x3e_c00112{left:212.000000pt;}
.x33_c00112{left:213.200000pt;}
.x5e_c00112{left:215.466667pt;}
.x6d_c00112{left:219.733333pt;}
.x66_c00112{left:221.333333pt;}
.x7_c00112{left:222.666667pt;}
.x55_c00112{left:224.666667pt;}
.x6a_c00112{left:228.266667pt;}
.x39_c00112{left:229.866667pt;}
.x10_c00112{left:231.066667pt;}
.x4b_c00112{left:233.333333pt;}
.x26_c00112{left:235.066667pt;}
.x7e_c00112{left:236.266667pt;}
.x93_c00112{left:237.333333pt;}
.x87_c00112{left:239.333333pt;}
.x57_c00112{left:241.200000pt;}
.x73_c00112{left:242.533333pt;}
.x2e_c00112{left:243.466667pt;}
.x1a_c00112{left:245.200000pt;}
.x44_c00112{left:249.333333pt;}
.x62_c00112{left:253.200000pt;}
.x4c_c00112{left:254.133333pt;}
.x5f_c00112{left:256.800000pt;}
.x3f_c00112{left:258.400000pt;}
.x6b_c00112{left:262.133333pt;}
.x1b_c00112{left:263.733333pt;}
.x67_c00112{left:266.400000pt;}
.x8f_c00112{left:267.466667pt;}
.x1c_c00112{left:269.466667pt;}
.x8_c00112{left:270.400000pt;}
.x3a_c00112{left:272.133333pt;}
.x2a_c00112{left:273.466667pt;}
.x11_c00112{left:275.866667pt;}
.x79_c00112{left:277.200000pt;}
.x9_c00112{left:279.066667pt;}
.x22_c00112{left:280.133333pt;}
.x12_c00112{left:282.266667pt;}
.x2f_c00112{left:284.400000pt;}
.x7b_c00112{left:285.333333pt;}
.x6f_c00112{left:286.800000pt;}
.x13_c00112{left:289.333333pt;}
.x3b_c00112{left:291.066667pt;}
.x14_c00112{left:295.466667pt;}
.x1_c00112{left:298.933333pt;}
.x40_c00112{left:301.600000pt;}
.x63_c00112{left:303.466667pt;}
.x30_c00112{left:306.533333pt;}
.x7f_c00112{left:308.666667pt;}
.x81_c00112{left:310.666667pt;}
.xb_c00112{left:312.000000pt;}
.xa_c00112{left:313.600000pt;}
.x47_c00112{left:315.466667pt;}
.x90_c00112{left:317.066667pt;}
.x1f_c00112{left:318.000000pt;}
.x15_c00112{left:320.666667pt;}
.x8c_c00112{left:324.666667pt;}
.x50_c00112{left:325.733333pt;}
.x59_c00112{left:326.933333pt;}
.x3c_c00112{left:328.133333pt;}
.x56_c00112{left:329.600000pt;}
.x41_c00112{left:331.733333pt;}
.x6e_c00112{left:334.266667pt;}
.x60_c00112{left:335.866667pt;}
.x2b_c00112{left:338.000000pt;}
.xc_c00112{left:339.200000pt;}
.x23_c00112{left:340.666667pt;}
.x34_c00112{left:341.733333pt;}
.x16_c00112{left:344.933333pt;}
.x58_c00112{left:346.800000pt;}
.x74_c00112{left:349.466667pt;}
.x27_c00112{left:351.866667pt;}
.x2c_c00112{left:356.533333pt;}
.x89_c00112{left:358.266667pt;}
.x5a_c00112{left:359.600000pt;}
.x48_c00112{left:363.200000pt;}
.x1d_c00112{left:364.533333pt;}
.x7a_c00112{left:368.400000pt;}
.xd_c00112{left:369.333333pt;}
.x1e_c00112{left:370.266667pt;}
.x35_c00112{left:372.533333pt;}
.x80_c00112{left:378.400000pt;}
.x64_c00112{left:382.133333pt;}
.x105_c00112{left:399.066667pt;}
.xde_c00112{left:400.000000pt;}
.x9b_c00112{left:401.733333pt;}
.x127_c00112{left:413.466667pt;}
.x10a_c00112{left:414.400000pt;}
.xc7_c00112{left:416.000000pt;}
.xa6_c00112{left:417.066667pt;}
.xa9_c00112{left:420.800000pt;}
.x111_c00112{left:425.466667pt;}
.xed_c00112{left:428.533333pt;}
.xdc_c00112{left:431.066667pt;}
.xaa_c00112{left:432.666667pt;}
.x96_c00112{left:433.600000pt;}
.xd7_c00112{left:435.600000pt;}
.x120_c00112{left:436.666667pt;}
.xe9_c00112{left:438.666667pt;}
.x106_c00112{left:439.600000pt;}
.x128_c00112{left:440.933333pt;}
.x9c_c00112{left:443.066667pt;}
.x11f_c00112{left:445.733333pt;}
.xa4_c00112{left:447.066667pt;}
.x124_c00112{left:448.133333pt;}
.x115_c00112{left:449.066667pt;}
.xfb_c00112{left:452.400000pt;}
.xf0_c00112{left:453.333333pt;}
.xb2_c00112{left:456.266667pt;}
.xd3_c00112{left:457.866667pt;}
.xf7_c00112{left:460.933333pt;}
.xca_c00112{left:463.333333pt;}
.x129_c00112{left:464.266667pt;}
.x118_c00112{left:465.466667pt;}
.x99_c00112{left:468.933333pt;}
.xc8_c00112{left:470.666667pt;}
.x107_c00112{left:472.933333pt;}
.xa5_c00112{left:474.000000pt;}
.x10b_c00112{left:475.200000pt;}
.x9a_c00112{left:478.533333pt;}
.xb4_c00112{left:479.600000pt;}
.xb8_c00112{left:481.333333pt;}
.xbc_c00112{left:482.266667pt;}
.x101_c00112{left:484.133333pt;}
.x108_c00112{left:485.200000pt;}
.xab_c00112{left:487.333333pt;}
.xc3_c00112{left:490.266667pt;}
.xf5_c00112{left:492.000000pt;}
.xaf_c00112{left:493.466667pt;}
.xc1_c00112{left:495.333333pt;}
.x121_c00112{left:496.533333pt;}
.x11c_c00112{left:498.133333pt;}
.xd8_c00112{left:500.266667pt;}
.x97_c00112{left:502.133333pt;}
.x9d_c00112{left:503.200000pt;}
.xa7_c00112{left:505.066667pt;}
.xf3_c00112{left:507.066667pt;}
.xcf_c00112{left:508.266667pt;}
.xe5_c00112{left:509.866667pt;}
.xea_c00112{left:512.000000pt;}
.xee_c00112{left:514.266667pt;}
.xd0_c00112{left:515.600000pt;}
.xb3_c00112{left:516.800000pt;}
.xfc_c00112{left:517.733333pt;}
.xdd_c00112{left:519.066667pt;}
.xe1_c00112{left:520.933333pt;}
.xcb_c00112{left:522.133333pt;}
.x10c_c00112{left:524.533333pt;}
.xf8_c00112{left:525.600000pt;}
.xc9_c00112{left:526.666667pt;}
.xeb_c00112{left:528.666667pt;}
.xa8_c00112{left:530.666667pt;}
.x11d_c00112{left:538.133333pt;}
.x98_c00112{left:539.866667pt;}
.x122_c00112{left:541.066667pt;}
.xb5_c00112{left:542.266667pt;}
.xd9_c00112{left:545.066667pt;}
.xbd_c00112{left:546.266667pt;}
.xb9_c00112{left:549.466667pt;}
.x10d_c00112{left:550.800000pt;}
.x109_c00112{left:551.733333pt;}
.xac_c00112{left:552.933333pt;}
.xd1_c00112{left:556.533333pt;}
.x2_c00112{left:560.400000pt;}
.xf1_c00112{left:561.466667pt;}
.xc4_c00112{left:563.333333pt;}
.x9e_c00112{left:565.600000pt;}
.xe2_c00112{left:566.666667pt;}
.x119_c00112{left:568.133333pt;}
.xbe_c00112{left:569.333333pt;}
.xda_c00112{left:570.400000pt;}
.x102_c00112{left:572.133333pt;}
.xef_c00112{left:573.200000pt;}
.x125_c00112{left:574.133333pt;}
.xc5_c00112{left:575.466667pt;}
.xc2_c00112{left:577.200000pt;}
.xf9_c00112{left:578.133333pt;}
.xfd_c00112{left:580.400000pt;}
.x114_c00112{left:584.133333pt;}
.xd4_c00112{left:585.466667pt;}
.xb6_c00112{left:589.333333pt;}
.xf6_c00112{left:590.533333pt;}
.xf2_c00112{left:593.466667pt;}
.x112_c00112{left:594.666667pt;}
.x10e_c00112{left:595.866667pt;}
.xad_c00112{left:598.000000pt;}
.xfe_c00112{left:600.266667pt;}
.xcc_c00112{left:601.200000pt;}
.x9f_c00112{left:602.133333pt;}
.xec_c00112{left:604.533333pt;}
.x113_c00112{left:609.733333pt;}
.xbf_c00112{left:611.200000pt;}
.x116_c00112{left:612.400000pt;}
.xba_c00112{left:615.066667pt;}
.xff_c00112{left:617.200000pt;}
.xe3_c00112{left:618.800000pt;}
.xae_c00112{left:620.400000pt;}
.x11a_c00112{left:621.466667pt;}
.xd5_c00112{left:622.533333pt;}
.xa0_c00112{left:623.866667pt;}
.xe6_c00112{left:625.333333pt;}
.xb0_c00112{left:626.800000pt;}
.xdb_c00112{left:628.933333pt;}
.xbb_c00112{left:632.666667pt;}
.xdf_c00112{left:634.133333pt;}
.x10f_c00112{left:635.600000pt;}
.xe4_c00112{left:637.733333pt;}
.x123_c00112{left:641.333333pt;}
.xc6_c00112{left:642.266667pt;}
.xc0_c00112{left:643.200000pt;}
.x126_c00112{left:645.466667pt;}
.xe7_c00112{left:646.400000pt;}
.x117_c00112{left:648.533333pt;}
.xfa_c00112{left:649.466667pt;}
.x11e_c00112{left:653.066667pt;}
.x100_c00112{left:654.000000pt;}
.x103_c00112{left:658.000000pt;}
.xcd_c00112{left:663.200000pt;}
.xe8_c00112{left:664.266667pt;}
.x104_c00112{left:666.000000pt;}
.xa1_c00112{left:667.333333pt;}
.xd2_c00112{left:668.800000pt;}
.x110_c00112{left:669.866667pt;}
.xd6_c00112{left:672.133333pt;}
.xa2_c00112{left:675.066667pt;}
.xb7_c00112{left:677.733333pt;}
.x11b_c00112{left:680.933333pt;}
.xe0_c00112{left:684.000000pt;}
.x3_c00112{left:685.200000pt;}
.xb1_c00112{left:686.933333pt;}
.xa3_c00112{left:689.466667pt;}
.xf4_c00112{left:694.266667pt;}
.xce_c00112{left:696.133333pt;}
}





/* 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_c00113 {
    display:none;
  }
  .loading-indicator_c00113.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00113 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_c00113 { 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_c00113" -> "#page-container .classname_c00113")
 */
.pf_c00113 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00113 { /* 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_c00113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00113 { /* 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_c00113 { /* 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_c00113 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00113 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00113 {overflow:visible;}
  }
}
.c_c00113 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00113 { /* 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_c00113:after { /* webkit #35443 */
  content: '';
}
.t_c00113:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00113 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 */
}
.__c00113 { /* 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_c00113 { /* info for Javascript */
  display:none;
}
.l_c00113 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00113 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00113 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00113: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_c00113 {
    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_c00113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00113.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_c00113 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00113;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.000000;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;}
.m10b_c00113{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00113{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m125_c00113{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00113{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00113{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m126_c00113{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00113{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00113{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00113{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m119_c00113{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00113{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m130_c00113{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m118_c00113{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00113{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m56_c00113{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00113{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mca_c00113{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m19_c00113{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m127_c00113{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m24_c00113{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m131_c00113{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.ma_c00113{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.maa_c00113{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00113{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m13_c00113{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md0_c00113{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m46_c00113{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00113{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m115_c00113{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00113{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m110_c00113{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00113{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.me_c00113{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m132_c00113{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00113{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m85_c00113{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00113{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m39_c00113{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00113{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m89_c00113{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m68_c00113{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.me5_c00113{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8_c00113{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m96_c00113{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00113{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00113{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00113{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00113{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m104_c00113{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m28_c00113{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m114_c00113{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m84_c00113{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m37_c00113{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m66_c00113{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m43_c00113{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m40_c00113{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mff_c00113{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m63_c00113{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m25_c00113{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m58_c00113{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m70_c00113{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00113{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m108_c00113{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00113{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00113{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00113{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mde_c00113{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m88_c00113{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00113{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00113{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m64_c00113{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m36_c00113{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me4_c00113{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00113{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m71_c00113{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00113{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00113{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00113{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m9_c00113{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m55_c00113{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.me6_c00113{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m90_c00113{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00113{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m18_c00113{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md8_c00113{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mec_c00113{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m121_c00113{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m86_c00113{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00113{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m45_c00113{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00113{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00113{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00113{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00113{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mea_c00113{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m38_c00113{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mab_c00113{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00113{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00113{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00113{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m78_c00113{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m91_c00113{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mc_c00113{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m48_c00113{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00113{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00113{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m92_c00113{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00113{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md5_c00113{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m42_c00113{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m73_c00113{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00113{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mac_c00113{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00113{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.me0_c00113{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m21_c00113{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m138_c00113{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00113{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m107_c00113{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00113{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00113{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00113{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00113{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00113{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m135_c00113{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m69_c00113{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mef_c00113{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m6_c00113{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m116_c00113{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m30_c00113{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m87_c00113{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00113{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00113{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.md_c00113{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me2_c00113{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m50_c00113{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.maf_c00113{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00113{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m98_c00113{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00113{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me7_c00113{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00113{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m113_c00113{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m34_c00113{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m95_c00113{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00113{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.md4_c00113{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00113{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m77_c00113{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m81_c00113{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00113{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00113{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m44_c00113{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00113{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m10_c00113{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00113{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00113{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m112_c00113{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m29_c00113{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00113{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m120_c00113{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00113{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m57_c00113{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md7_c00113{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00113{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00113{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m134_c00113{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m76_c00113{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m35_c00113{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me8_c00113{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mf_c00113{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00113{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m67_c00113{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m61_c00113{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00113{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00113{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00113{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m41_c00113{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m99_c00113{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m14_c00113{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.med_c00113{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00113{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md6_c00113{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.meb_c00113{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m100_c00113{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00113{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00113{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00113{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m54_c00113{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m33_c00113{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m47_c00113{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00113{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m74_c00113{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00113{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00113{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00113{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00113{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00113{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m53_c00113{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m111_c00113{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00113{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00113{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00113{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m60_c00113{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00113{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mae_c00113{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m65_c00113{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mb_c00113{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m12_c00113{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m72_c00113{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00113{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m103_c00113{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m75_c00113{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m62_c00113{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m102_c00113{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m82_c00113{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m109_c00113{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m94_c00113{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m79_c00113{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m4_c00113{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m31_c00113{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m101_c00113{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00113{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m59_c00113{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m7_c00113{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me9_c00113{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m117_c00113{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00113{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3_c00113{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m133_c00113{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00113{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00113{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00113{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00113{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00113{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00113{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m52_c00113{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m128_c00113{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00113{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00113{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00113{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00113{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00113{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00113{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m137_c00113{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00113{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00113{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00113{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00113{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);}
.m15_c00113{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m32_c00113{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m16_c00113{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m17_c00113{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00113{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00113{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mda_c00113{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00113{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m136_c00113{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00113{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m51_c00113{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00113{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m106_c00113{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m80_c00113{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md3_c00113{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m129_c00113{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m20_c00113{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m23_c00113{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00113{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m93_c00113{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00113{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mba_c00113{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m27_c00113{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.md2_c00113{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00113{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00113{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me3_c00113{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.md1_c00113{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mce_c00113{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m105_c00113{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m124_c00113{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00113{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00113{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m83_c00113{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00113{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m49_c00113{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00113{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m26_c00113{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00113{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mee_c00113{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.md9_c00113{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00113{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m11_c00113{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00113{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00113{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.me1_c00113{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m97_c00113{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00113{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00113{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00113{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00113{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00113{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00113{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00113{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m122_c00113{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m123_c00113{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mad_c00113{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00113{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00113{transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00113{transform:matrix(4.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.116000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls2_c00113{letter-spacing:0.000000px;}
.ls1_c00113{letter-spacing:55.714286px;}
.ls0_c00113{letter-spacing:70.000000px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{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__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00113{word-spacing:-85.714286px;}
.ws2_c00113{word-spacing:-14.166667px;}
.ws11_c00113{word-spacing:0.000000px;}
.ws4_c00113{word-spacing:0.687427px;}
.ws3_c00113{word-spacing:5.279330px;}
.wsf_c00113{word-spacing:11.875000px;}
.ws1_c00113{word-spacing:12.965636px;}
.ws10_c00113{word-spacing:15.628272px;}
.ws8_c00113{word-spacing:20.571429px;}
.ws0_c00113{word-spacing:22.142857px;}
.ws9_c00113{word-spacing:23.666667px;}
.wsc_c00113{word-spacing:25.714286px;}
.wsa_c00113{word-spacing:27.714286px;}
.ws5_c00113{word-spacing:29.583333px;}
.wsd_c00113{word-spacing:35.833333px;}
.wsb_c00113{word-spacing:40.000000px;}
.ws6_c00113{word-spacing:50.416667px;}
.ws7_c00113{word-spacing:195.833333px;}
._0_c00113{margin-left:-70.000000px;}
._4_c00113{margin-left:-55.714286px;}
._2_c00113{width:37.428571px;}
._5_c00113{width:48.125000px;}
._3_c00113{width:74.166667px;}
._1_c00113{width:257.428571px;}
.fc0_c00113{color:transparent;}
.fs5_c00113{font-size:30.000000px;}
.fs6_c00113{font-size:48.000000px;}
.fs4_c00113{font-size:54.000000px;}
.fs1_c00113{font-size:60.000000px;}
.fs2_c00113{font-size:66.000000px;}
.fs3_c00113{font-size:72.000000px;}
.fs0_c00113{font-size:120.000000px;}
.y0_c00113{bottom:0.000000px;}
.y38_c00113{bottom:3.900000px;}
.y37_c00113{bottom:165.900000px;}
.y36_c00113{bottom:184.350000px;}
.y6c_c00113{bottom:186.600000px;}
.y35_c00113{bottom:200.250000px;}
.y6b_c00113{bottom:204.300000px;}
.y34_c00113{bottom:216.750000px;}
.y6a_c00113{bottom:222.000000px;}
.y33_c00113{bottom:234.750000px;}
.y69_c00113{bottom:239.700000px;}
.y32_c00113{bottom:253.050000px;}
.y68_c00113{bottom:257.700000px;}
.y31_c00113{bottom:270.750000px;}
.y67_c00113{bottom:275.700000px;}
.y30_c00113{bottom:292.650000px;}
.y66_c00113{bottom:293.400000px;}
.y2f_c00113{bottom:310.350000px;}
.y65_c00113{bottom:311.400000px;}
.y2e_c00113{bottom:328.350000px;}
.y64_c00113{bottom:329.400000px;}
.y2d_c00113{bottom:346.350000px;}
.y63_c00113{bottom:347.100000px;}
.y2c_c00113{bottom:364.350000px;}
.y62_c00113{bottom:365.100000px;}
.y61_c00113{bottom:385.200000px;}
.y2b_c00113{bottom:386.250000px;}
.y60_c00113{bottom:399.900000px;}
.y5f_c00113{bottom:414.300000px;}
.y2a_c00113{bottom:417.300000px;}
.y5e_c00113{bottom:428.700000px;}
.y29_c00113{bottom:439.500000px;}
.y5d_c00113{bottom:443.100000px;}
.y5c_c00113{bottom:457.200000px;}
.y28_c00113{bottom:457.500000px;}
.y5b_c00113{bottom:471.300000px;}
.y27_c00113{bottom:475.500000px;}
.y5a_c00113{bottom:486.000000px;}
.y26_c00113{bottom:493.200000px;}
.y59_c00113{bottom:500.400000px;}
.y58_c00113{bottom:514.800000px;}
.y25_c00113{bottom:515.400000px;}
.y57_c00113{bottom:529.200000px;}
.y24_c00113{bottom:533.400000px;}
.y56_c00113{bottom:544.350000px;}
.y23_c00113{bottom:551.100000px;}
.y55_c00113{bottom:564.000000px;}
.y22_c00113{bottom:568.650000px;}
.y54_c00113{bottom:581.700000px;}
.y21_c00113{bottom:586.650000px;}
.y53_c00113{bottom:600.450000px;}
.y20_c00113{bottom:604.350000px;}
.y1f_c00113{bottom:622.050000px;}
.y1e_c00113{bottom:638.850000px;}
.y52_c00113{bottom:639.750000px;}
.y1d_c00113{bottom:657.600000px;}
.y51_c00113{bottom:657.750000px;}
.y1c_c00113{bottom:675.600000px;}
.y50_c00113{bottom:675.750000px;}
.y1b_c00113{bottom:693.600000px;}
.y4f_c00113{bottom:694.050000px;}
.y1a_c00113{bottom:711.300000px;}
.y19_c00113{bottom:729.300000px;}
.y4e_c00113{bottom:733.650000px;}
.y18_c00113{bottom:747.000000px;}
.y4d_c00113{bottom:760.650000px;}
.y17_c00113{bottom:765.000000px;}
.y4c_c00113{bottom:782.250000px;}
.y16_c00113{bottom:783.000000px;}
.y15_c00113{bottom:799.650000px;}
.y4b_c00113{bottom:804.300000px;}
.y14_c00113{bottom:818.700000px;}
.y4a_c00113{bottom:822.300000px;}
.y13_c00113{bottom:836.700000px;}
.y49_c00113{bottom:840.000000px;}
.y12_c00113{bottom:853.950000px;}
.y48_c00113{bottom:857.700000px;}
.y11_c00113{bottom:871.950000px;}
.y47_c00113{bottom:875.700000px;}
.y10_c00113{bottom:889.350000px;}
.y46_c00113{bottom:893.700000px;}
.yf_c00113{bottom:907.650000px;}
.y45_c00113{bottom:911.700000px;}
.ye_c00113{bottom:925.650000px;}
.y44_c00113{bottom:929.400000px;}
.yd_c00113{bottom:943.650000px;}
.y43_c00113{bottom:947.100000px;}
.yc_c00113{bottom:961.650000px;}
.y42_c00113{bottom:965.100000px;}
.yb_c00113{bottom:978.900000px;}
.y41_c00113{bottom:983.100000px;}
.ya_c00113{bottom:998.700000px;}
.y40_c00113{bottom:1000.800000px;}
.y9_c00113{bottom:1014.450000px;}
.y3f_c00113{bottom:1018.800000px;}
.y8_c00113{bottom:1028.850000px;}
.y3e_c00113{bottom:1036.500000px;}
.y7_c00113{bottom:1044.000000px;}
.y3d_c00113{bottom:1054.500000px;}
.y6_c00113{bottom:1055.850000px;}
.y5_c00113{bottom:1071.300000px;}
.y3c_c00113{bottom:1074.600000px;}
.y4_c00113{bottom:1084.650000px;}
.y3b_c00113{bottom:1090.050000px;}
.y3_c00113{bottom:1099.500000px;}
.y3a_c00113{bottom:1103.400000px;}
.y2_c00113{bottom:1115.700000px;}
.y39_c00113{bottom:1117.050000px;}
.y1_c00113{bottom:1139.700000px;}
.h7_c00113{height:30.000000px;}
.h8_c00113{height:48.000000px;}
.h6_c00113{height:54.000000px;}
.h3_c00113{height:60.000000px;}
.h4_c00113{height:66.000000px;}
.h5_c00113{height:72.000000px;}
.h2_c00113{height:120.000000px;}
.h0_c00113{height:1277.640015px;}
.h1_c00113{height:1278.000000px;}
.w1_c00113{width:953.250000px;}
.w0_c00113{width:953.280030px;}
.x0_c00113{left:0.000000px;}
.xa8_c00113{left:101.850000px;}
.x96_c00113{left:137.100000px;}
.xa5_c00113{left:161.250000px;}
.x1_c00113{left:162.750000px;}
.x92_c00113{left:163.800000px;}
.xa6_c00113{left:175.800000px;}
.xb_c00113{left:177.300000px;}
.x38_c00113{left:178.500000px;}
.x25_c00113{left:180.300000px;}
.x18_c00113{left:191.700000px;}
.x15_c00113{left:192.750000px;}
.xc_c00113{left:196.350000px;}
.x61_c00113{left:198.450000px;}
.x33_c00113{left:199.500000px;}
.x6c_c00113{left:201.300000px;}
.x4d_c00113{left:203.100000px;}
.x91_c00113{left:206.250000px;}
.x7b_c00113{left:207.450000px;}
.x86_c00113{left:208.800000px;}
.x53_c00113{left:209.850000px;}
.x99_c00113{left:212.850000px;}
.x26_c00113{left:214.800000px;}
.x39_c00113{left:216.600000px;}
.x8f_c00113{left:219.600000px;}
.x41_c00113{left:220.950000px;}
.x3_c00113{left:222.150000px;}
.x72_c00113{left:223.500000px;}
.x8a_c00113{left:225.000000px;}
.x67_c00113{left:226.200000px;}
.x7c_c00113{left:227.250000px;}
.xd_c00113{left:229.500000px;}
.x87_c00113{left:232.800000px;}
.x2b_c00113{left:233.850000px;}
.x6e_c00113{left:234.900000px;}
.x57_c00113{left:236.100000px;}
.x97_c00113{left:237.300000px;}
.x3a_c00113{left:238.500000px;}
.x44_c00113{left:239.700000px;}
.x27_c00113{left:241.800000px;}
.x78_c00113{left:243.450000px;}
.x81_c00113{left:244.800000px;}
.x93_c00113{left:245.850000px;}
.x58_c00113{left:247.200000px;}
.x83_c00113{left:248.850000px;}
.x34_c00113{left:250.950000px;}
.x9a_c00113{left:252.450000px;}
.x2c_c00113{left:253.650000px;}
.x1e_c00113{left:255.600000px;}
.x45_c00113{left:256.650000px;}
.x4e_c00113{left:259.200000px;}
.x54_c00113{left:261.750000px;}
.x62_c00113{left:263.550000px;}
.x4_c00113{left:265.050000px;}
.xe_c00113{left:268.350000px;}
.x9c_c00113{left:269.700000px;}
.xa1_c00113{left:270.900000px;}
.x63_c00113{left:275.850000px;}
.xf_c00113{left:278.400000px;}
.x3b_c00113{left:280.200000px;}
.x2d_c00113{left:281.400000px;}
.x88_c00113{left:283.950000px;}
.x5_c00113{left:285.900000px;}
.x42_c00113{left:287.850000px;}
.x46_c00113{left:291.900000px;}
.x6a_c00113{left:295.050000px;}
.x59_c00113{left:296.850000px;}
.x68_c00113{left:298.950000px;}
.x73_c00113{left:301.800000px;}
.x2e_c00113{left:305.100000px;}
.x9d_c00113{left:306.300000px;}
.x1f_c00113{left:307.500000px;}
.x5d_c00113{left:309.300000px;}
.x48_c00113{left:313.650000px;}
.x89_c00113{left:314.850000px;}
.x6d_c00113{left:316.500000px;}
.x35_c00113{left:319.650000px;}
.x10_c00113{left:321.300000px;}
.x6_c00113{left:322.950000px;}
.x4f_c00113{left:324.000000px;}
.x3c_c00113{left:326.250000px;}
.x2f_c00113{left:328.200000px;}
.x9e_c00113{left:330.750000px;}
.x20_c00113{left:331.950000px;}
.x5a_c00113{left:333.600000px;}
.x19_c00113{left:336.450000px;}
.xa0_c00113{left:337.650000px;}
.x43_c00113{left:340.800000px;}
.x30_c00113{left:341.850000px;}
.x1a_c00113{left:343.950000px;}
.x5e_c00113{left:345.000000px;}
.x6b_c00113{left:346.950000px;}
.x6f_c00113{left:348.000000px;}
.x7d_c00113{left:350.700000px;}
.x36_c00113{left:352.350000px;}
.x90_c00113{left:353.550000px;}
.x21_c00113{left:355.050000px;}
.x28_c00113{left:357.000000px;}
.x1b_c00113{left:358.350000px;}
.x55_c00113{left:360.750000px;}
.x3d_c00113{left:364.350000px;}
.x74_c00113{left:366.300000px;}
.x7_c00113{left:369.750000px;}
.x9b_c00113{left:371.850000px;}
.x5f_c00113{left:374.100000px;}
.x98_c00113{left:375.450000px;}
.x56_c00113{left:376.650000px;}
.x7e_c00113{left:378.000000px;}
.x8e_c00113{left:379.050000px;}
.x49_c00113{left:380.700000px;}
.x47_c00113{left:384.000000px;}
.x75_c00113{left:386.400000px;}
.x79_c00113{left:387.450000px;}
.x11_c00113{left:388.650000px;}
.xa4_c00113{left:389.700000px;}
.x64_c00113{left:391.200000px;}
.x82_c00113{left:392.400000px;}
.x50_c00113{left:394.200000px;}
.x8b_c00113{left:395.850000px;}
.x60_c00113{left:397.200000px;}
.x7f_c00113{left:399.300000px;}
.xa2_c00113{left:401.550000px;}
.x70_c00113{left:402.750000px;}
.x3e_c00113{left:405.750000px;}
.x22_c00113{left:407.550000px;}
.x2_c00113{left:409.650000px;}
.x94_c00113{left:410.700000px;}
.x51_c00113{left:412.200000px;}
.x5b_c00113{left:415.350000px;}
.x4a_c00113{left:416.700000px;}
.x7a_c00113{left:417.750000px;}
.x8_c00113{left:419.100000px;}
.x8c_c00113{left:422.100000px;}
.x69_c00113{left:424.950000px;}
.x16_c00113{left:427.500000px;}
.x1c_c00113{left:428.550000px;}
.x12_c00113{left:429.600000px;}
.x65_c00113{left:430.800000px;}
.x84_c00113{left:436.050000px;}
.x29_c00113{left:437.700000px;}
.x23_c00113{left:441.750000px;}
.x3f_c00113{left:442.800000px;}
.x4b_c00113{left:444.000000px;}
.x5c_c00113{left:447.900000px;}
.x9_c00113{left:449.400000px;}
.x76_c00113{left:450.450000px;}
.x66_c00113{left:451.650000px;}
.xa3_c00113{left:452.700000px;}
.x80_c00113{left:454.350000px;}
.x13_c00113{left:457.350000px;}
.x17_c00113{left:458.850000px;}
.x95_c00113{left:460.050000px;}
.x37_c00113{left:461.400000px;}
.x4c_c00113{left:463.050000px;}
.x2a_c00113{left:465.750000px;}
.x9f_c00113{left:466.950000px;}
.x85_c00113{left:468.750000px;}
.x8d_c00113{left:471.000000px;}
.x31_c00113{left:472.050000px;}
.x77_c00113{left:473.850000px;}
.x24_c00113{left:477.000000px;}
.x40_c00113{left:479.100000px;}
.x1d_c00113{left:480.600000px;}
.xa7_c00113{left:481.650000px;}
.xa_c00113{left:483.600000px;}
.x14_c00113{left:485.850000px;}
.x71_c00113{left:487.350000px;}
.x32_c00113{left:492.900000px;}
.x52_c00113{left:494.250000px;}
.x124_c00113{left:517.350000px;}
.x105_c00113{left:518.400000px;}
.xb3_c00113{left:520.500000px;}
.x128_c00113{left:531.750000px;}
.xac_c00113{left:534.300000px;}
.x13b_c00113{left:535.350000px;}
.xeb_c00113{left:536.550000px;}
.xbc_c00113{left:537.750000px;}
.x12b_c00113{left:544.350000px;}
.x130_c00113{left:545.550000px;}
.x140_c00113{left:552.150000px;}
.x109_c00113{left:554.100000px;}
.x129_c00113{left:558.450000px;}
.x11f_c00113{left:559.800000px;}
.x107_c00113{left:560.850000px;}
.x14c_c00113{left:562.050000px;}
.xf9_c00113{left:563.850000px;}
.x149_c00113{left:565.200000px;}
.x10c_c00113{left:566.700000px;}
.xd0_c00113{left:567.750000px;}
.xf0_c00113{left:568.950000px;}
.xe0_c00113{left:570.450000px;}
.x13c_c00113{left:572.400000px;}
.x117_c00113{left:574.950000px;}
.xc3_c00113{left:576.750000px;}
.xbd_c00113{left:578.100000px;}
.x106_c00113{left:579.900000px;}
.xd1_c00113{left:583.200000px;}
.x123_c00113{left:585.300000px;}
.x133_c00113{left:586.650000px;}
.xcc_c00113{left:588.150000px;}
.xf6_c00113{left:589.650000px;}
.x11d_c00113{left:591.600000px;}
.x100_c00113{left:593.100000px;}
.x10d_c00113{left:594.750000px;}
.xad_c00113{left:596.550000px;}
.x113_c00113{left:598.800000px;}
.x134_c00113{left:601.350000px;}
.x118_c00113{left:603.750000px;}
.xb4_c00113{left:605.100000px;}
.x145_c00113{left:606.300000px;}
.xe5_c00113{left:607.350000px;}
.xdd_c00113{left:610.500000px;}
.xf1_c00113{left:612.150000px;}
.xae_c00113{left:615.300000px;}
.x10a_c00113{left:619.650000px;}
.x10e_c00113{left:620.700000px;}
.xec_c00113{left:622.200000px;}
.xc4_c00113{left:623.850000px;}
.xc8_c00113{left:624.900000px;}
.x120_c00113{left:626.850000px;}
.x12c_c00113{left:627.900000px;}
.xd2_c00113{left:630.300000px;}
.xe6_c00113{left:632.550000px;}
.x138_c00113{left:633.600000px;}
.xbe_c00113{left:635.400000px;}
.x114_c00113{left:637.650000px;}
.xfa_c00113{left:638.700000px;}
.xb5_c00113{left:640.050000px;}
.xcd_c00113{left:642.600000px;}
.x14f_c00113{left:643.800000px;}
.xf7_c00113{left:645.450000px;}
.xd3_c00113{left:646.800000px;}
.xf2_c00113{left:648.150000px;}
.xed_c00113{left:650.250000px;}
.xc5_c00113{left:652.350000px;}
.x119_c00113{left:653.400000px;}
.x139_c00113{left:654.450000px;}
.x135_c00113{left:658.950000px;}
.xe1_c00113{left:661.200000px;}
.xd4_c00113{left:663.000000px;}
.xfb_c00113{left:667.200000px;}
.x12a_c00113{left:668.250000px;}
.x11a_c00113{left:669.300000px;}
.xe7_c00113{left:670.650000px;}
.x101_c00113{left:673.050000px;}
.xc9_c00113{left:674.250000px;}
.x12d_c00113{left:675.450000px;}
.x115_c00113{left:677.250000px;}
.x121_c00113{left:680.100000px;}
.xee_c00113{left:682.650000px;}
.xb6_c00113{left:684.750000px;}
.xd9_c00113{left:686.100000px;}
.x13d_c00113{left:687.900000px;}
.xe8_c00113{left:689.700000px;}
.x136_c00113{left:691.050000px;}
.xd5_c00113{left:693.300000px;}
.x102_c00113{left:697.200000px;}
.x141_c00113{left:700.350000px;}
.xb7_c00113{left:702.000000px;}
.xfc_c00113{left:703.200000px;}
.x12f_c00113{left:704.400000px;}
.xda_c00113{left:706.200000px;}
.x143_c00113{left:707.400000px;}
.xca_c00113{left:708.450000px;}
.x131_c00113{left:710.850000px;}
.xc6_c00113{left:712.050000px;}
.x14a_c00113{left:714.450000px;}
.x125_c00113{left:715.800000px;}
.xbf_c00113{left:717.900000px;}
.xce_c00113{left:718.950000px;}
.x11b_c00113{left:720.000000px;}
.x116_c00113{left:721.500000px;}
.x132_c00113{left:725.250000px;}
.x10b_c00113{left:726.300000px;}
.xf8_c00113{left:728.550000px;}
.x150_c00113{left:730.650000px;}
.x14b_c00113{left:732.750000px;}
.xfd_c00113{left:733.800000px;}
.x11c_c00113{left:735.450000px;}
.x13e_c00113{left:737.550000px;}
.x10f_c00113{left:740.250000px;}
.x12e_c00113{left:742.500000px;}
.xdb_c00113{left:743.700000px;}
.xd6_c00113{left:745.200000px;}
.x103_c00113{left:747.300000px;}
.xf3_c00113{left:748.650000px;}
.xc0_c00113{left:750.600000px;}
.xef_c00113{left:754.350000px;}
.x142_c00113{left:755.400000px;}
.x122_c00113{left:756.450000px;}
.x108_c00113{left:758.400000px;}
.xde_c00113{left:759.900000px;}
.xb8_c00113{left:763.200000px;}
.x11e_c00113{left:765.750000px;}
.x146_c00113{left:767.850000px;}
.xc7_c00113{left:769.350000px;}
.xd7_c00113{left:770.400000px;}
.x14d_c00113{left:771.600000px;}
.xe9_c00113{left:773.100000px;}
.xe2_c00113{left:775.050000px;}
.xa9_c00113{left:777.300000px;}
.x104_c00113{left:780.000000px;}
.xb9_c00113{left:781.950000px;}
.x110_c00113{left:783.150000px;}
.xaf_c00113{left:784.200000px;}
.xb1_c00113{left:787.500000px;}
.xfe_c00113{left:788.550000px;}
.x14e_c00113{left:791.700000px;}
.xe3_c00113{left:792.750000px;}
.xf4_c00113{left:794.100000px;}
.xcb_c00113{left:798.750000px;}
.xc1_c00113{left:800.700000px;}
.x147_c00113{left:802.050000px;}
.x126_c00113{left:804.000000px;}
.x111_c00113{left:805.050000px;}
.xea_c00113{left:806.550000px;}
.xaa_c00113{left:807.900000px;}
.x13f_c00113{left:809.250000px;}
.xba_c00113{left:810.750000px;}
.x13a_c00113{left:812.550000px;}
.xb0_c00113{left:814.050000px;}
.xd8_c00113{left:816.150000px;}
.xdc_c00113{left:818.250000px;}
.xff_c00113{left:820.950000px;}
.xdf_c00113{left:822.150000px;}
.xc2_c00113{left:823.350000px;}
.xf5_c00113{left:824.400000px;}
.xcf_c00113{left:825.900000px;}
.x148_c00113{left:828.300000px;}
.x112_c00113{left:831.000000px;}
.x127_c00113{left:838.500000px;}
.x137_c00113{left:839.550000px;}
.xe4_c00113{left:840.600000px;}
.xab_c00113{left:841.800000px;}
.xb2_c00113{left:843.600000px;}
.xbb_c00113{left:845.250000px;}
.x144_c00113{left:848.550000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls2_c00113{letter-spacing:0.000000pt;}
.ls1_c00113{letter-spacing:49.523810pt;}
.ls0_c00113{letter-spacing:62.222222pt;}
.wse_c00113{word-spacing:-76.190476pt;}
.ws2_c00113{word-spacing:-12.592593pt;}
.ws11_c00113{word-spacing:0.000000pt;}
.ws4_c00113{word-spacing:0.611046pt;}
.ws3_c00113{word-spacing:4.692737pt;}
.wsf_c00113{word-spacing:10.555556pt;}
.ws1_c00113{word-spacing:11.525010pt;}
.ws10_c00113{word-spacing:13.891798pt;}
.ws8_c00113{word-spacing:18.285714pt;}
.ws0_c00113{word-spacing:19.682540pt;}
.ws9_c00113{word-spacing:21.037037pt;}
.wsc_c00113{word-spacing:22.857143pt;}
.wsa_c00113{word-spacing:24.634921pt;}
.ws5_c00113{word-spacing:26.296296pt;}
.wsd_c00113{word-spacing:31.851852pt;}
.wsb_c00113{word-spacing:35.555556pt;}
.ws6_c00113{word-spacing:44.814815pt;}
.ws7_c00113{word-spacing:174.074074pt;}
._0_c00113{margin-left:-62.222222pt;}
._4_c00113{margin-left:-49.523810pt;}
._2_c00113{width:33.269841pt;}
._5_c00113{width:42.777778pt;}
._3_c00113{width:65.925926pt;}
._1_c00113{width:228.825397pt;}
.fs5_c00113{font-size:26.666667pt;}
.fs6_c00113{font-size:42.666667pt;}
.fs4_c00113{font-size:48.000000pt;}
.fs1_c00113{font-size:53.333333pt;}
.fs2_c00113{font-size:58.666667pt;}
.fs3_c00113{font-size:64.000000pt;}
.fs0_c00113{font-size:106.666667pt;}
.y0_c00113{bottom:0.000000pt;}
.y38_c00113{bottom:3.466667pt;}
.y37_c00113{bottom:147.466667pt;}
.y36_c00113{bottom:163.866667pt;}
.y6c_c00113{bottom:165.866667pt;}
.y35_c00113{bottom:178.000000pt;}
.y6b_c00113{bottom:181.600000pt;}
.y34_c00113{bottom:192.666667pt;}
.y6a_c00113{bottom:197.333333pt;}
.y33_c00113{bottom:208.666667pt;}
.y69_c00113{bottom:213.066667pt;}
.y32_c00113{bottom:224.933333pt;}
.y68_c00113{bottom:229.066667pt;}
.y31_c00113{bottom:240.666667pt;}
.y67_c00113{bottom:245.066667pt;}
.y30_c00113{bottom:260.133333pt;}
.y66_c00113{bottom:260.800000pt;}
.y2f_c00113{bottom:275.866667pt;}
.y65_c00113{bottom:276.800000pt;}
.y2e_c00113{bottom:291.866667pt;}
.y64_c00113{bottom:292.800000pt;}
.y2d_c00113{bottom:307.866667pt;}
.y63_c00113{bottom:308.533333pt;}
.y2c_c00113{bottom:323.866667pt;}
.y62_c00113{bottom:324.533333pt;}
.y61_c00113{bottom:342.400000pt;}
.y2b_c00113{bottom:343.333333pt;}
.y60_c00113{bottom:355.466667pt;}
.y5f_c00113{bottom:368.266667pt;}
.y2a_c00113{bottom:370.933333pt;}
.y5e_c00113{bottom:381.066667pt;}
.y29_c00113{bottom:390.666667pt;}
.y5d_c00113{bottom:393.866667pt;}
.y5c_c00113{bottom:406.400000pt;}
.y28_c00113{bottom:406.666667pt;}
.y5b_c00113{bottom:418.933333pt;}
.y27_c00113{bottom:422.666667pt;}
.y5a_c00113{bottom:432.000000pt;}
.y26_c00113{bottom:438.400000pt;}
.y59_c00113{bottom:444.800000pt;}
.y58_c00113{bottom:457.600000pt;}
.y25_c00113{bottom:458.133333pt;}
.y57_c00113{bottom:470.400000pt;}
.y24_c00113{bottom:474.133333pt;}
.y56_c00113{bottom:483.866667pt;}
.y23_c00113{bottom:489.866667pt;}
.y55_c00113{bottom:501.333333pt;}
.y22_c00113{bottom:505.466667pt;}
.y54_c00113{bottom:517.066667pt;}
.y21_c00113{bottom:521.466667pt;}
.y53_c00113{bottom:533.733333pt;}
.y20_c00113{bottom:537.200000pt;}
.y1f_c00113{bottom:552.933333pt;}
.y1e_c00113{bottom:567.866667pt;}
.y52_c00113{bottom:568.666667pt;}
.y1d_c00113{bottom:584.533333pt;}
.y51_c00113{bottom:584.666667pt;}
.y1c_c00113{bottom:600.533333pt;}
.y50_c00113{bottom:600.666667pt;}
.y1b_c00113{bottom:616.533333pt;}
.y4f_c00113{bottom:616.933333pt;}
.y1a_c00113{bottom:632.266667pt;}
.y19_c00113{bottom:648.266667pt;}
.y4e_c00113{bottom:652.133333pt;}
.y18_c00113{bottom:664.000000pt;}
.y4d_c00113{bottom:676.133333pt;}
.y17_c00113{bottom:680.000000pt;}
.y4c_c00113{bottom:695.333333pt;}
.y16_c00113{bottom:696.000000pt;}
.y15_c00113{bottom:710.800000pt;}
.y4b_c00113{bottom:714.933333pt;}
.y14_c00113{bottom:727.733333pt;}
.y4a_c00113{bottom:730.933333pt;}
.y13_c00113{bottom:743.733333pt;}
.y49_c00113{bottom:746.666667pt;}
.y12_c00113{bottom:759.066667pt;}
.y48_c00113{bottom:762.400000pt;}
.y11_c00113{bottom:775.066667pt;}
.y47_c00113{bottom:778.400000pt;}
.y10_c00113{bottom:790.533333pt;}
.y46_c00113{bottom:794.400000pt;}
.yf_c00113{bottom:806.800000pt;}
.y45_c00113{bottom:810.400000pt;}
.ye_c00113{bottom:822.800000pt;}
.y44_c00113{bottom:826.133333pt;}
.yd_c00113{bottom:838.800000pt;}
.y43_c00113{bottom:841.866667pt;}
.yc_c00113{bottom:854.800000pt;}
.y42_c00113{bottom:857.866667pt;}
.yb_c00113{bottom:870.133333pt;}
.y41_c00113{bottom:873.866667pt;}
.ya_c00113{bottom:887.733333pt;}
.y40_c00113{bottom:889.600000pt;}
.y9_c00113{bottom:901.733333pt;}
.y3f_c00113{bottom:905.600000pt;}
.y8_c00113{bottom:914.533333pt;}
.y3e_c00113{bottom:921.333333pt;}
.y7_c00113{bottom:928.000000pt;}
.y3d_c00113{bottom:937.333333pt;}
.y6_c00113{bottom:938.533333pt;}
.y5_c00113{bottom:952.266667pt;}
.y3c_c00113{bottom:955.200000pt;}
.y4_c00113{bottom:964.133333pt;}
.y3b_c00113{bottom:968.933333pt;}
.y3_c00113{bottom:977.333333pt;}
.y3a_c00113{bottom:980.800000pt;}
.y2_c00113{bottom:991.733333pt;}
.y39_c00113{bottom:992.933333pt;}
.y1_c00113{bottom:1013.066667pt;}
.h7_c00113{height:26.666667pt;}
.h8_c00113{height:42.666667pt;}
.h6_c00113{height:48.000000pt;}
.h3_c00113{height:53.333333pt;}
.h4_c00113{height:58.666667pt;}
.h5_c00113{height:64.000000pt;}
.h2_c00113{height:106.666667pt;}
.h0_c00113{height:1135.680013pt;}
.h1_c00113{height:1136.000000pt;}
.w1_c00113{width:847.333333pt;}
.w0_c00113{width:847.360027pt;}
.x0_c00113{left:0.000000pt;}
.xa8_c00113{left:90.533333pt;}
.x96_c00113{left:121.866667pt;}
.xa5_c00113{left:143.333333pt;}
.x1_c00113{left:144.666667pt;}
.x92_c00113{left:145.600000pt;}
.xa6_c00113{left:156.266667pt;}
.xb_c00113{left:157.600000pt;}
.x38_c00113{left:158.666667pt;}
.x25_c00113{left:160.266667pt;}
.x18_c00113{left:170.400000pt;}
.x15_c00113{left:171.333333pt;}
.xc_c00113{left:174.533333pt;}
.x61_c00113{left:176.400000pt;}
.x33_c00113{left:177.333333pt;}
.x6c_c00113{left:178.933333pt;}
.x4d_c00113{left:180.533333pt;}
.x91_c00113{left:183.333333pt;}
.x7b_c00113{left:184.400000pt;}
.x86_c00113{left:185.600000pt;}
.x53_c00113{left:186.533333pt;}
.x99_c00113{left:189.200000pt;}
.x26_c00113{left:190.933333pt;}
.x39_c00113{left:192.533333pt;}
.x8f_c00113{left:195.200000pt;}
.x41_c00113{left:196.400000pt;}
.x3_c00113{left:197.466667pt;}
.x72_c00113{left:198.666667pt;}
.x8a_c00113{left:200.000000pt;}
.x67_c00113{left:201.066667pt;}
.x7c_c00113{left:202.000000pt;}
.xd_c00113{left:204.000000pt;}
.x87_c00113{left:206.933333pt;}
.x2b_c00113{left:207.866667pt;}
.x6e_c00113{left:208.800000pt;}
.x57_c00113{left:209.866667pt;}
.x97_c00113{left:210.933333pt;}
.x3a_c00113{left:212.000000pt;}
.x44_c00113{left:213.066667pt;}
.x27_c00113{left:214.933333pt;}
.x78_c00113{left:216.400000pt;}
.x81_c00113{left:217.600000pt;}
.x93_c00113{left:218.533333pt;}
.x58_c00113{left:219.733333pt;}
.x83_c00113{left:221.200000pt;}
.x34_c00113{left:223.066667pt;}
.x9a_c00113{left:224.400000pt;}
.x2c_c00113{left:225.466667pt;}
.x1e_c00113{left:227.200000pt;}
.x45_c00113{left:228.133333pt;}
.x4e_c00113{left:230.400000pt;}
.x54_c00113{left:232.666667pt;}
.x62_c00113{left:234.266667pt;}
.x4_c00113{left:235.600000pt;}
.xe_c00113{left:238.533333pt;}
.x9c_c00113{left:239.733333pt;}
.xa1_c00113{left:240.800000pt;}
.x63_c00113{left:245.200000pt;}
.xf_c00113{left:247.466667pt;}
.x3b_c00113{left:249.066667pt;}
.x2d_c00113{left:250.133333pt;}
.x88_c00113{left:252.400000pt;}
.x5_c00113{left:254.133333pt;}
.x42_c00113{left:255.866667pt;}
.x46_c00113{left:259.466667pt;}
.x6a_c00113{left:262.266667pt;}
.x59_c00113{left:263.866667pt;}
.x68_c00113{left:265.733333pt;}
.x73_c00113{left:268.266667pt;}
.x2e_c00113{left:271.200000pt;}
.x9d_c00113{left:272.266667pt;}
.x1f_c00113{left:273.333333pt;}
.x5d_c00113{left:274.933333pt;}
.x48_c00113{left:278.800000pt;}
.x89_c00113{left:279.866667pt;}
.x6d_c00113{left:281.333333pt;}
.x35_c00113{left:284.133333pt;}
.x10_c00113{left:285.600000pt;}
.x6_c00113{left:287.066667pt;}
.x4f_c00113{left:288.000000pt;}
.x3c_c00113{left:290.000000pt;}
.x2f_c00113{left:291.733333pt;}
.x9e_c00113{left:294.000000pt;}
.x20_c00113{left:295.066667pt;}
.x5a_c00113{left:296.533333pt;}
.x19_c00113{left:299.066667pt;}
.xa0_c00113{left:300.133333pt;}
.x43_c00113{left:302.933333pt;}
.x30_c00113{left:303.866667pt;}
.x1a_c00113{left:305.733333pt;}
.x5e_c00113{left:306.666667pt;}
.x6b_c00113{left:308.400000pt;}
.x6f_c00113{left:309.333333pt;}
.x7d_c00113{left:311.733333pt;}
.x36_c00113{left:313.200000pt;}
.x90_c00113{left:314.266667pt;}
.x21_c00113{left:315.600000pt;}
.x28_c00113{left:317.333333pt;}
.x1b_c00113{left:318.533333pt;}
.x55_c00113{left:320.666667pt;}
.x3d_c00113{left:323.866667pt;}
.x74_c00113{left:325.600000pt;}
.x7_c00113{left:328.666667pt;}
.x9b_c00113{left:330.533333pt;}
.x5f_c00113{left:332.533333pt;}
.x98_c00113{left:333.733333pt;}
.x56_c00113{left:334.800000pt;}
.x7e_c00113{left:336.000000pt;}
.x8e_c00113{left:336.933333pt;}
.x49_c00113{left:338.400000pt;}
.x47_c00113{left:341.333333pt;}
.x75_c00113{left:343.466667pt;}
.x79_c00113{left:344.400000pt;}
.x11_c00113{left:345.466667pt;}
.xa4_c00113{left:346.400000pt;}
.x64_c00113{left:347.733333pt;}
.x82_c00113{left:348.800000pt;}
.x50_c00113{left:350.400000pt;}
.x8b_c00113{left:351.866667pt;}
.x60_c00113{left:353.066667pt;}
.x7f_c00113{left:354.933333pt;}
.xa2_c00113{left:356.933333pt;}
.x70_c00113{left:358.000000pt;}
.x3e_c00113{left:360.666667pt;}
.x22_c00113{left:362.266667pt;}
.x2_c00113{left:364.133333pt;}
.x94_c00113{left:365.066667pt;}
.x51_c00113{left:366.400000pt;}
.x5b_c00113{left:369.200000pt;}
.x4a_c00113{left:370.400000pt;}
.x7a_c00113{left:371.333333pt;}
.x8_c00113{left:372.533333pt;}
.x8c_c00113{left:375.200000pt;}
.x69_c00113{left:377.733333pt;}
.x16_c00113{left:380.000000pt;}
.x1c_c00113{left:380.933333pt;}
.x12_c00113{left:381.866667pt;}
.x65_c00113{left:382.933333pt;}
.x84_c00113{left:387.600000pt;}
.x29_c00113{left:389.066667pt;}
.x23_c00113{left:392.666667pt;}
.x3f_c00113{left:393.600000pt;}
.x4b_c00113{left:394.666667pt;}
.x5c_c00113{left:398.133333pt;}
.x9_c00113{left:399.466667pt;}
.x76_c00113{left:400.400000pt;}
.x66_c00113{left:401.466667pt;}
.xa3_c00113{left:402.400000pt;}
.x80_c00113{left:403.866667pt;}
.x13_c00113{left:406.533333pt;}
.x17_c00113{left:407.866667pt;}
.x95_c00113{left:408.933333pt;}
.x37_c00113{left:410.133333pt;}
.x4c_c00113{left:411.600000pt;}
.x2a_c00113{left:414.000000pt;}
.x9f_c00113{left:415.066667pt;}
.x85_c00113{left:416.666667pt;}
.x8d_c00113{left:418.666667pt;}
.x31_c00113{left:419.600000pt;}
.x77_c00113{left:421.200000pt;}
.x24_c00113{left:424.000000pt;}
.x40_c00113{left:425.866667pt;}
.x1d_c00113{left:427.200000pt;}
.xa7_c00113{left:428.133333pt;}
.xa_c00113{left:429.866667pt;}
.x14_c00113{left:431.866667pt;}
.x71_c00113{left:433.200000pt;}
.x32_c00113{left:438.133333pt;}
.x52_c00113{left:439.333333pt;}
.x124_c00113{left:459.866667pt;}
.x105_c00113{left:460.800000pt;}
.xb3_c00113{left:462.666667pt;}
.x128_c00113{left:472.666667pt;}
.xac_c00113{left:474.933333pt;}
.x13b_c00113{left:475.866667pt;}
.xeb_c00113{left:476.933333pt;}
.xbc_c00113{left:478.000000pt;}
.x12b_c00113{left:483.866667pt;}
.x130_c00113{left:484.933333pt;}
.x140_c00113{left:490.800000pt;}
.x109_c00113{left:492.533333pt;}
.x129_c00113{left:496.400000pt;}
.x11f_c00113{left:497.600000pt;}
.x107_c00113{left:498.533333pt;}
.x14c_c00113{left:499.600000pt;}
.xf9_c00113{left:501.200000pt;}
.x149_c00113{left:502.400000pt;}
.x10c_c00113{left:503.733333pt;}
.xd0_c00113{left:504.666667pt;}
.xf0_c00113{left:505.733333pt;}
.xe0_c00113{left:507.066667pt;}
.x13c_c00113{left:508.800000pt;}
.x117_c00113{left:511.066667pt;}
.xc3_c00113{left:512.666667pt;}
.xbd_c00113{left:513.866667pt;}
.x106_c00113{left:515.466667pt;}
.xd1_c00113{left:518.400000pt;}
.x123_c00113{left:520.266667pt;}
.x133_c00113{left:521.466667pt;}
.xcc_c00113{left:522.800000pt;}
.xf6_c00113{left:524.133333pt;}
.x11d_c00113{left:525.866667pt;}
.x100_c00113{left:527.200000pt;}
.x10d_c00113{left:528.666667pt;}
.xad_c00113{left:530.266667pt;}
.x113_c00113{left:532.266667pt;}
.x134_c00113{left:534.533333pt;}
.x118_c00113{left:536.666667pt;}
.xb4_c00113{left:537.866667pt;}
.x145_c00113{left:538.933333pt;}
.xe5_c00113{left:539.866667pt;}
.xdd_c00113{left:542.666667pt;}
.xf1_c00113{left:544.133333pt;}
.xae_c00113{left:546.933333pt;}
.x10a_c00113{left:550.800000pt;}
.x10e_c00113{left:551.733333pt;}
.xec_c00113{left:553.066667pt;}
.xc4_c00113{left:554.533333pt;}
.xc8_c00113{left:555.466667pt;}
.x120_c00113{left:557.200000pt;}
.x12c_c00113{left:558.133333pt;}
.xd2_c00113{left:560.266667pt;}
.xe6_c00113{left:562.266667pt;}
.x138_c00113{left:563.200000pt;}
.xbe_c00113{left:564.800000pt;}
.x114_c00113{left:566.800000pt;}
.xfa_c00113{left:567.733333pt;}
.xb5_c00113{left:568.933333pt;}
.xcd_c00113{left:571.200000pt;}
.x14f_c00113{left:572.266667pt;}
.xf7_c00113{left:573.733333pt;}
.xd3_c00113{left:574.933333pt;}
.xf2_c00113{left:576.133333pt;}
.xed_c00113{left:578.000000pt;}
.xc5_c00113{left:579.866667pt;}
.x119_c00113{left:580.800000pt;}
.x139_c00113{left:581.733333pt;}
.x135_c00113{left:585.733333pt;}
.xe1_c00113{left:587.733333pt;}
.xd4_c00113{left:589.333333pt;}
.xfb_c00113{left:593.066667pt;}
.x12a_c00113{left:594.000000pt;}
.x11a_c00113{left:594.933333pt;}
.xe7_c00113{left:596.133333pt;}
.x101_c00113{left:598.266667pt;}
.xc9_c00113{left:599.333333pt;}
.x12d_c00113{left:600.400000pt;}
.x115_c00113{left:602.000000pt;}
.x121_c00113{left:604.533333pt;}
.xee_c00113{left:606.800000pt;}
.xb6_c00113{left:608.666667pt;}
.xd9_c00113{left:609.866667pt;}
.x13d_c00113{left:611.466667pt;}
.xe8_c00113{left:613.066667pt;}
.x136_c00113{left:614.266667pt;}
.xd5_c00113{left:616.266667pt;}
.x102_c00113{left:619.733333pt;}
.x141_c00113{left:622.533333pt;}
.xb7_c00113{left:624.000000pt;}
.xfc_c00113{left:625.066667pt;}
.x12f_c00113{left:626.133333pt;}
.xda_c00113{left:627.733333pt;}
.x143_c00113{left:628.800000pt;}
.xca_c00113{left:629.733333pt;}
.x131_c00113{left:631.866667pt;}
.xc6_c00113{left:632.933333pt;}
.x14a_c00113{left:635.066667pt;}
.x125_c00113{left:636.266667pt;}
.xbf_c00113{left:638.133333pt;}
.xce_c00113{left:639.066667pt;}
.x11b_c00113{left:640.000000pt;}
.x116_c00113{left:641.333333pt;}
.x132_c00113{left:644.666667pt;}
.x10b_c00113{left:645.600000pt;}
.xf8_c00113{left:647.600000pt;}
.x150_c00113{left:649.466667pt;}
.x14b_c00113{left:651.333333pt;}
.xfd_c00113{left:652.266667pt;}
.x11c_c00113{left:653.733333pt;}
.x13e_c00113{left:655.600000pt;}
.x10f_c00113{left:658.000000pt;}
.x12e_c00113{left:660.000000pt;}
.xdb_c00113{left:661.066667pt;}
.xd6_c00113{left:662.400000pt;}
.x103_c00113{left:664.266667pt;}
.xf3_c00113{left:665.466667pt;}
.xc0_c00113{left:667.200000pt;}
.xef_c00113{left:670.533333pt;}
.x142_c00113{left:671.466667pt;}
.x122_c00113{left:672.400000pt;}
.x108_c00113{left:674.133333pt;}
.xde_c00113{left:675.466667pt;}
.xb8_c00113{left:678.400000pt;}
.x11e_c00113{left:680.666667pt;}
.x146_c00113{left:682.533333pt;}
.xc7_c00113{left:683.866667pt;}
.xd7_c00113{left:684.800000pt;}
.x14d_c00113{left:685.866667pt;}
.xe9_c00113{left:687.200000pt;}
.xe2_c00113{left:688.933333pt;}
.xa9_c00113{left:690.933333pt;}
.x104_c00113{left:693.333333pt;}
.xb9_c00113{left:695.066667pt;}
.x110_c00113{left:696.133333pt;}
.xaf_c00113{left:697.066667pt;}
.xb1_c00113{left:700.000000pt;}
.xfe_c00113{left:700.933333pt;}
.x14e_c00113{left:703.733333pt;}
.xe3_c00113{left:704.666667pt;}
.xf4_c00113{left:705.866667pt;}
.xcb_c00113{left:710.000000pt;}
.xc1_c00113{left:711.733333pt;}
.x147_c00113{left:712.933333pt;}
.x126_c00113{left:714.666667pt;}
.x111_c00113{left:715.600000pt;}
.xea_c00113{left:716.933333pt;}
.xaa_c00113{left:718.133333pt;}
.x13f_c00113{left:719.333333pt;}
.xba_c00113{left:720.666667pt;}
.x13a_c00113{left:722.266667pt;}
.xb0_c00113{left:723.600000pt;}
.xd8_c00113{left:725.466667pt;}
.xdc_c00113{left:727.333333pt;}
.xff_c00113{left:729.733333pt;}
.xdf_c00113{left:730.800000pt;}
.xc2_c00113{left:731.866667pt;}
.xf5_c00113{left:732.800000pt;}
.xcf_c00113{left:734.133333pt;}
.x148_c00113{left:736.266667pt;}
.x112_c00113{left:738.666667pt;}
.x127_c00113{left:745.333333pt;}
.x137_c00113{left:746.266667pt;}
.xe4_c00113{left:747.200000pt;}
.xab_c00113{left:748.266667pt;}
.xb2_c00113{left:749.866667pt;}
.xbb_c00113{left:751.333333pt;}
.x144_c00113{left:754.266667pt;}
}





/* 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_c00114 {
    display:none;
  }
  .loading-indicator_c00114.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00114 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_c00114 { 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_c00114" -> "#page-container .classname_c00114")
 */
.pf_c00114 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00114 { /* 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_c00114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00114 { /* 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_c00114 { /* 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_c00114 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00114 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00114 {overflow:visible;}
  }
}
.c_c00114 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00114 { /* 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_c00114:after { /* webkit #35443 */
  content: '';
}
.t_c00114:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00114 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 */
}
.__c00114 { /* 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_c00114 { /* info for Javascript */
  display:none;
}
.l_c00114 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00114 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00114 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00114: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_c00114 {
    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_c00114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00114.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_c00114 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00114;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.000000;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;}
.m10b_c00114{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m115_c00114{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00114{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m46_c00114{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m96_c00114{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00114{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.me3_c00114{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m99_c00114{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m110_c00114{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00114{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00114{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m42_c00114{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m125_c00114{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m10_c00114{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m21_c00114{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00114{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m25_c00114{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m26_c00114{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m97_c00114{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m29_c00114{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00114{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00114{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00114{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m88_c00114{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m74_c00114{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00114{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m24_c00114{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m72_c00114{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m79_c00114{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m75_c00114{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m41_c00114{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m51_c00114{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00114{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m18_c00114{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00114{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m48_c00114{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00114{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m9_c00114{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00114{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mad_c00114{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m34_c00114{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00114{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mda_c00114{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m81_c00114{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m66_c00114{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m117_c00114{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mde_c00114{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7_c00114{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00114{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00114{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00114{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m90_c00114{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m40_c00114{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m82_c00114{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me8_c00114{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.me4_c00114{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.maf_c00114{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00114{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m56_c00114{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00114{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00114{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m124_c00114{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00114{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00114{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00114{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00114{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00114{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00114{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mba_c00114{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00114{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00114{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m85_c00114{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mec_c00114{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m77_c00114{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00114{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00114{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00114{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m60_c00114{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00114{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00114{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m20_c00114{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00114{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00114{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m39_c00114{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m35_c00114{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00114{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m52_c00114{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mef_c00114{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00114{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md9_c00114{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m89_c00114{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m57_c00114{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m114_c00114{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00114{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m65_c00114{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m12_c00114{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00114{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m92_c00114{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00114{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00114{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m116_c00114{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me9_c00114{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md7_c00114{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m11_c00114{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00114{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m61_c00114{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb_c00114{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m87_c00114{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.maa_c00114{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m101_c00114{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00114{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m45_c00114{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00114{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m15_c00114{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mab_c00114{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md2_c00114{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.md_c00114{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m62_c00114{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00114{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00114{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m86_c00114{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00114{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00114{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00114{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00114{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m49_c00114{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma_c00114{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m95_c00114{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00114{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00114{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m67_c00114{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md5_c00114{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00114{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00114{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00114{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m58_c00114{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00114{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m118_c00114{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00114{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m93_c00114{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00114{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5_c00114{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mff_c00114{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m94_c00114{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m47_c00114{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m31_c00114{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m73_c00114{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m120_c00114{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m84_c00114{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m104_c00114{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8_c00114{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00114{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m16_c00114{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m103_c00114{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md0_c00114{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m109_c00114{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00114{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00114{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00114{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m105_c00114{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m38_c00114{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mee_c00114{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00114{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00114{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00114{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m91_c00114{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00114{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00114{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00114{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.md1_c00114{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m55_c00114{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m122_c00114{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00114{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m121_c00114{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md4_c00114{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m107_c00114{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m102_c00114{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me0_c00114{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00114{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m23_c00114{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mac_c00114{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m78_c00114{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00114{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00114{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m106_c00114{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00114{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00114{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m83_c00114{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00114{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00114{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m63_c00114{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m123_c00114{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00114{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00114{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m53_c00114{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me6_c00114{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00114{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00114{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m64_c00114{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00114{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00114{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00114{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00114{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00114{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m69_c00114{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m13_c00114{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00114{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m6_c00114{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m54_c00114{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m112_c00114{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mae_c00114{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m59_c00114{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m44_c00114{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00114{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00114{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m119_c00114{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mf_c00114{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00114{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m126_c00114{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md6_c00114{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m113_c00114{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00114{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m80_c00114{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m33_c00114{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m30_c00114{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00114{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);}
.m11d_c00114{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3_c00114{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me_c00114{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00114{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00114{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.meb_c00114{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00114{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m76_c00114{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00114{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me2_c00114{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00114{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mc_c00114{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md3_c00114{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00114{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00114{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00114{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.me1_c00114{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m14_c00114{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00114{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.md8_c00114{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mce_c00114{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m37_c00114{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00114{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m28_c00114{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00114{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00114{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00114{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m22_c00114{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m50_c00114{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00114{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00114{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m100_c00114{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00114{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00114{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m2_c00114{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m36_c00114{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.me7_c00114{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m108_c00114{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m71_c00114{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.m70_c00114{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00114{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mea_c00114{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00114{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00114{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m32_c00114{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00114{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m17_c00114{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m43_c00114{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00114{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me5_c00114{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00114{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00114{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m68_c00114{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m27_c00114{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.med_c00114{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00114{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00114{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00114{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.mca_c00114{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00114{transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00114{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m127_c00114{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00114{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m98_c00114{transform:matrix(0.486000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486000,0.000000,0.000000,0.250000,0,0);}
.m0_c00114{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00114{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.m111_c00114{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00114{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls0_c00114{letter-spacing:0.000000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{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__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00114{word-spacing:-11.875000px;}
.ws1_c00114{word-spacing:-10.605096px;}
.ws5_c00114{word-spacing:-9.704467px;}
.ws6_c00114{word-spacing:-4.454148px;}
.ws7_c00114{word-spacing:0.000000px;}
.ws0_c00114{word-spacing:4.642857px;}
.ws3_c00114{word-spacing:16.785714px;}
.ws4_c00114{word-spacing:886.428571px;}
._0_c00114{width:55.714286px;}
.fc0_c00114{color:transparent;}
.fs5_c00114{font-size:42.000000px;}
.fs6_c00114{font-size:48.000000px;}
.fs4_c00114{font-size:54.000000px;}
.fs2_c00114{font-size:60.000000px;}
.fs1_c00114{font-size:66.000000px;}
.fs3_c00114{font-size:72.000000px;}
.fs0_c00114{font-size:78.000000px;}
.y0_c00114{bottom:0.000000px;}
.y69_c00114{bottom:162.750000px;}
.y68_c00114{bottom:179.850000px;}
.y36_c00114{bottom:181.050000px;}
.y67_c00114{bottom:195.000000px;}
.y35_c00114{bottom:195.750000px;}
.y66_c00114{bottom:209.100000px;}
.y34_c00114{bottom:209.850000px;}
.y33_c00114{bottom:223.950000px;}
.y32_c00114{bottom:238.350000px;}
.y65_c00114{bottom:244.500000px;}
.y31_c00114{bottom:252.450000px;}
.y64_c00114{bottom:259.200000px;}
.y30_c00114{bottom:267.150000px;}
.y63_c00114{bottom:275.100000px;}
.y62_c00114{bottom:292.650000px;}
.y2f_c00114{bottom:309.000000px;}
.y61_c00114{bottom:309.900000px;}
.y2e_c00114{bottom:326.700000px;}
.y60_c00114{bottom:332.100000px;}
.y2d_c00114{bottom:344.400000px;}
.y5f_c00114{bottom:349.800000px;}
.y2c_c00114{bottom:362.400000px;}
.y5e_c00114{bottom:367.800000px;}
.y2b_c00114{bottom:380.100000px;}
.y5d_c00114{bottom:385.500000px;}
.y2a_c00114{bottom:401.400000px;}
.y5c_c00114{bottom:403.500000px;}
.y29_c00114{bottom:415.800000px;}
.y5b_c00114{bottom:425.100000px;}
.y28_c00114{bottom:429.150000px;}
.y5a_c00114{bottom:443.850000px;}
.y27_c00114{bottom:444.600000px;}
.y26_c00114{bottom:459.000000px;}
.y59_c00114{bottom:465.450000px;}
.y25_c00114{bottom:473.100000px;}
.y24_c00114{bottom:486.750000px;}
.y58_c00114{bottom:487.800000px;}
.y23_c00114{bottom:501.900000px;}
.y57_c00114{bottom:510.000000px;}
.y22_c00114{bottom:516.300000px;}
.y21_c00114{bottom:530.550000px;}
.y56_c00114{bottom:537.000000px;}
.y20_c00114{bottom:543.900000px;}
.y55_c00114{bottom:546.750000px;}
.y1f_c00114{bottom:560.100000px;}
.y54_c00114{bottom:564.750000px;}
.y1e_c00114{bottom:578.850000px;}
.y53_c00114{bottom:582.750000px;}
.y1d_c00114{bottom:596.850000px;}
.y52_c00114{bottom:600.450000px;}
.y51_c00114{bottom:618.450000px;}
.y1c_c00114{bottom:619.200000px;}
.y50_c00114{bottom:636.150000px;}
.y1b_c00114{bottom:638.250000px;}
.y4f_c00114{bottom:654.150000px;}
.y1a_c00114{bottom:654.750000px;}
.y19_c00114{bottom:672.450000px;}
.y4e_c00114{bottom:674.700000px;}
.y4d_c00114{bottom:693.750000px;}
.y18_c00114{bottom:694.500000px;}
.y4c_c00114{bottom:712.800000px;}
.y17_c00114{bottom:720.750000px;}
.y4b_c00114{bottom:733.350000px;}
.y16_c00114{bottom:743.100000px;}
.y4a_c00114{bottom:752.850000px;}
.y15_c00114{bottom:764.850000px;}
.y49_c00114{bottom:770.850000px;}
.y14_c00114{bottom:782.850000px;}
.y48_c00114{bottom:789.150000px;}
.y13_c00114{bottom:800.850000px;}
.y47_c00114{bottom:809.700000px;}
.y12_c00114{bottom:818.850000px;}
.y46_c00114{bottom:831.600000px;}
.y11_c00114{bottom:836.550000px;}
.y10_c00114{bottom:854.250000px;}
.y45_c00114{bottom:854.550000px;}
.y44_c00114{bottom:872.250000px;}
.yf_c00114{bottom:875.100000px;}
.y43_c00114{bottom:894.150000px;}
.ye_c00114{bottom:895.200000px;}
.yd_c00114{bottom:912.900000px;}
.y42_c00114{bottom:914.250000px;}
.y41_c00114{bottom:930.150000px;}
.yc_c00114{bottom:935.250000px;}
.y40_c00114{bottom:948.150000px;}
.yb_c00114{bottom:952.950000px;}
.y3f_c00114{bottom:965.850000px;}
.ya_c00114{bottom:970.950000px;}
.y3e_c00114{bottom:983.850000px;}
.y9_c00114{bottom:993.150000px;}
.y3d_c00114{bottom:1001.100000px;}
.y8_c00114{bottom:1015.500000px;}
.y3c_c00114{bottom:1019.100000px;}
.y3b_c00114{bottom:1036.800000px;}
.y7_c00114{bottom:1037.700000px;}
.y3a_c00114{bottom:1055.100000px;}
.y6_c00114{bottom:1055.400000px;}
.y39_c00114{bottom:1072.350000px;}
.y5_c00114{bottom:1073.400000px;}
.y38_c00114{bottom:1090.050000px;}
.y4_c00114{bottom:1091.400000px;}
.y37_c00114{bottom:1107.750000px;}
.y3_c00114{bottom:1109.100000px;}
.y2_c00114{bottom:1129.350000px;}
.y1_c00114{bottom:1134.750000px;}
.h7_c00114{height:42.000000px;}
.h8_c00114{height:48.000000px;}
.h6_c00114{height:54.000000px;}
.h4_c00114{height:60.000000px;}
.h3_c00114{height:66.000000px;}
.h5_c00114{height:72.000000px;}
.h2_c00114{height:78.000000px;}
.h0_c00114{height:1276.199982px;}
.h1_c00114{height:1276.500000px;}
.w1_c00114{width:953.250000px;}
.w0_c00114{width:953.280030px;}
.x0_c00114{left:0.000000px;}
.x78_c00114{left:87.900000px;}
.x3_c00114{left:90.000000px;}
.x61_c00114{left:91.500000px;}
.x23_c00114{left:92.850000px;}
.x81_c00114{left:96.450000px;}
.x62_c00114{left:102.000000px;}
.x24_c00114{left:103.950000px;}
.x7c_c00114{left:106.050000px;}
.x44_c00114{left:108.300000px;}
.x1c_c00114{left:109.800000px;}
.x8_c00114{left:110.850000px;}
.x25_c00114{left:112.200000px;}
.x92_c00114{left:116.550000px;}
.x84_c00114{left:120.600000px;}
.x99_c00114{left:124.500000px;}
.x93_c00114{left:125.550000px;}
.x2b_c00114{left:129.600000px;}
.xd_c00114{left:131.100000px;}
.x72_c00114{left:133.500000px;}
.x26_c00114{left:134.550000px;}
.x7d_c00114{left:135.600000px;}
.x3e_c00114{left:137.550000px;}
.x94_c00114{left:141.750000px;}
.x9a_c00114{left:144.300000px;}
.x1d_c00114{left:145.500000px;}
.xe_c00114{left:148.050000px;}
.x6d_c00114{left:149.550000px;}
.x14_c00114{left:150.900000px;}
.x60_c00114{left:152.250000px;}
.x4d_c00114{left:154.650000px;}
.x2f_c00114{left:155.700000px;}
.x4_c00114{left:157.350000px;}
.x6c_c00114{left:159.300000px;}
.x22_c00114{left:162.000000px;}
.x96_c00114{left:163.350000px;}
.x63_c00114{left:167.400000px;}
.x1e_c00114{left:168.900000px;}
.x27_c00114{left:170.250000px;}
.x98_c00114{left:172.950000px;}
.x2c_c00114{left:174.600000px;}
.x5b_c00114{left:175.950000px;}
.x45_c00114{left:178.500000px;}
.x64_c00114{left:179.700000px;}
.x8b_c00114{left:180.750000px;}
.x49_c00114{left:181.800000px;}
.x9_c00114{left:185.700000px;}
.x6e_c00114{left:188.100000px;}
.xf_c00114{left:190.500000px;}
.x15_c00114{left:192.000000px;}
.x36_c00114{left:193.800000px;}
.x7e_c00114{left:195.000000px;}
.x73_c00114{left:196.800000px;}
.x55_c00114{left:199.350000px;}
.x3f_c00114{left:205.950000px;}
.x8e_c00114{left:207.900000px;}
.x46_c00114{left:209.400000px;}
.x30_c00114{left:211.500000px;}
.x68_c00114{left:212.700000px;}
.x97_c00114{left:214.500000px;}
.x28_c00114{left:218.100000px;}
.x5_c00114{left:220.050000px;}
.x2d_c00114{left:222.450000px;}
.x10_c00114{left:224.700000px;}
.x65_c00114{left:226.800000px;}
.x4a_c00114{left:230.400000px;}
.x1f_c00114{left:232.200000px;}
.x37_c00114{left:233.700000px;}
.x56_c00114{left:235.050000px;}
.x7f_c00114{left:236.700000px;}
.x69_c00114{left:240.000000px;}
.x74_c00114{left:242.550000px;}
.x4e_c00114{left:244.200000px;}
.x85_c00114{left:245.700000px;}
.x16_c00114{left:247.050000px;}
.x95_c00114{left:248.700000px;}
.x31_c00114{left:250.350000px;}
.x29_c00114{left:257.400000px;}
.x50_c00114{left:259.800000px;}
.x8d_c00114{left:261.450000px;}
.x5f_c00114{left:262.950000px;}
.x5c_c00114{left:265.350000px;}
.x2a_c00114{left:267.150000px;}
.x17_c00114{left:268.650000px;}
.x38_c00114{left:271.800000px;}
.xa_c00114{left:274.650000px;}
.x57_c00114{left:276.150000px;}
.x76_c00114{left:277.800000px;}
.x80_c00114{left:278.850000px;}
.x86_c00114{left:280.500000px;}
.x11_c00114{left:282.600000px;}
.x88_c00114{left:285.150000px;}
.x5d_c00114{left:286.650000px;}
.x32_c00114{left:287.850000px;}
.x6a_c00114{left:288.900000px;}
.x77_c00114{left:292.500000px;}
.xb_c00114{left:294.150000px;}
.x39_c00114{left:296.700000px;}
.x33_c00114{left:298.350000px;}
.x6_c00114{left:299.550000px;}
.x51_c00114{left:300.900000px;}
.x66_c00114{left:302.400000px;}
.x79_c00114{left:304.350000px;}
.x20_c00114{left:305.700000px;}
.x87_c00114{left:308.850000px;}
.x18_c00114{left:312.600000px;}
.x21_c00114{left:315.000000px;}
.x47_c00114{left:316.050000px;}
.x58_c00114{left:317.550000px;}
.x1_c00114{left:318.900000px;}
.x7a_c00114{left:320.250000px;}
.x52_c00114{left:321.750000px;}
.x34_c00114{left:322.800000px;}
.x6f_c00114{left:326.700000px;}
.x89_c00114{left:328.050000px;}
.x19_c00114{left:329.850000px;}
.x3a_c00114{left:330.900000px;}
.x8f_c00114{left:332.400000px;}
.x40_c00114{left:338.100000px;}
.x3b_c00114{left:339.900000px;}
.x7_c00114{left:342.000000px;}
.x4f_c00114{left:343.800000px;}
.x35_c00114{left:345.450000px;}
.x12_c00114{left:348.150000px;}
.x67_c00114{left:352.800000px;}
.x53_c00114{left:354.150000px;}
.x8a_c00114{left:356.550000px;}
.xc_c00114{left:357.900000px;}
.x82_c00114{left:358.950000px;}
.x70_c00114{left:360.600000px;}
.x6b_c00114{left:362.400000px;}
.x3c_c00114{left:364.050000px;}
.x41_c00114{left:366.150000px;}
.x59_c00114{left:370.800000px;}
.x48_c00114{left:373.950000px;}
.x5e_c00114{left:376.650000px;}
.x42_c00114{left:378.000000px;}
.x7b_c00114{left:379.650000px;}
.x91_c00114{left:381.900000px;}
.x4b_c00114{left:385.800000px;}
.x3d_c00114{left:387.750000px;}
.x1a_c00114{left:390.300000px;}
.x2e_c00114{left:394.800000px;}
.x75_c00114{left:396.000000px;}
.x43_c00114{left:397.800000px;}
.x54_c00114{left:399.150000px;}
.x8c_c00114{left:400.350000px;}
.x1b_c00114{left:405.000000px;}
.x5a_c00114{left:407.850000px;}
.x90_c00114{left:409.050000px;}
.x4c_c00114{left:411.300000px;}
.x13_c00114{left:414.450000px;}
.x83_c00114{left:415.500000px;}
.x71_c00114{left:417.900000px;}
.xe8_c00114{left:449.250000px;}
.xef_c00114{left:451.050000px;}
.xf0_c00114{left:460.050000px;}
.x125_c00114{left:463.650000px;}
.x128_c00114{left:465.150000px;}
.x9b_c00114{left:466.950000px;}
.xdd_c00114{left:468.300000px;}
.x126_c00114{left:479.550000px;}
.xf4_c00114{left:486.000000px;}
.x129_c00114{left:488.250000px;}
.xf1_c00114{left:493.200000px;}
.xd8_c00114{left:494.850000px;}
.xc6_c00114{left:496.950000px;}
.x9c_c00114{left:499.350000px;}
.xb6_c00114{left:500.400000px;}
.xf7_c00114{left:501.600000px;}
.x116_c00114{left:505.350000px;}
.x118_c00114{left:506.550000px;}
.x102_c00114{left:507.750000px;}
.xaa_c00114{left:509.550000px;}
.xde_c00114{left:511.500000px;}
.xc7_c00114{left:513.900000px;}
.xb7_c00114{left:516.600000px;}
.xee_c00114{left:518.400000px;}
.x11e_c00114{left:520.200000px;}
.xcf_c00114{left:522.900000px;}
.xbd_c00114{left:524.700000px;}
.x9d_c00114{left:526.050000px;}
.x122_c00114{left:528.150000px;}
.xe7_c00114{left:529.800000px;}
.xdf_c00114{left:532.050000px;}
.xd0_c00114{left:533.700000px;}
.xfe_c00114{left:536.400000px;}
.x115_c00114{left:537.450000px;}
.xab_c00114{left:539.400000px;}
.xf8_c00114{left:543.300000px;}
.xbe_c00114{left:544.800000px;}
.xc8_c00114{left:548.850000px;}
.x10b_c00114{left:551.850000px;}
.xb1_c00114{left:556.200000px;}
.x10f_c00114{left:557.400000px;}
.xe9_c00114{left:558.600000px;}
.xff_c00114{left:560.550000px;}
.xbf_c00114{left:561.750000px;}
.xb8_c00114{left:563.100000px;}
.x11b_c00114{left:564.450000px;}
.xe3_c00114{left:568.200000px;}
.xc9_c00114{left:570.150000px;}
.xb2_c00114{left:572.400000px;}
.xf5_c00114{left:573.450000px;}
.x107_c00114{left:578.250000px;}
.xd1_c00114{left:579.450000px;}
.x9e_c00114{left:581.850000px;}
.x117_c00114{left:587.100000px;}
.xf2_c00114{left:588.150000px;}
.xd2_c00114{left:589.500000px;}
.xc0_c00114{left:590.550000px;}
.x119_c00114{left:592.650000px;}
.xe4_c00114{left:595.500000px;}
.xd9_c00114{left:597.900000px;}
.xc1_c00114{left:599.850000px;}
.xb3_c00114{left:601.950000px;}
.xe0_c00114{left:603.750000px;}
.xac_c00114{left:605.250000px;}
.xa4_c00114{left:607.800000px;}
.x108_c00114{left:608.850000px;}
.x11a_c00114{left:609.900000px;}
.xe5_c00114{left:611.250000px;}
.x120_c00114{left:613.800000px;}
.xb9_c00114{left:616.050000px;}
.xad_c00114{left:617.850000px;}
.x103_c00114{left:618.900000px;}
.xf9_c00114{left:619.950000px;}
.xfc_c00114{left:621.450000px;}
.x9f_c00114{left:623.550000px;}
.xca_c00114{left:625.950000px;}
.xe1_c00114{left:628.200000px;}
.x10c_c00114{left:629.250000px;}
.x113_c00114{left:630.600000px;}
.xda_c00114{left:635.700000px;}
.xc2_c00114{left:637.350000px;}
.x11f_c00114{left:639.000000px;}
.x123_c00114{left:640.500000px;}
.xf3_c00114{left:641.850000px;}
.xfa_c00114{left:643.350000px;}
.xd3_c00114{left:645.000000px;}
.x12b_c00114{left:647.250000px;}
.xba_c00114{left:648.750000px;}
.xb4_c00114{left:650.250000px;}
.x100_c00114{left:652.350000px;}
.xd4_c00114{left:654.300000px;}
.xc3_c00114{left:657.900000px;}
.xea_c00114{left:661.200000px;}
.xa5_c00114{left:663.600000px;}
.x111_c00114{left:664.800000px;}
.xcb_c00114{left:666.600000px;}
.xfd_c00114{left:668.550000px;}
.xae_c00114{left:671.850000px;}
.xe2_c00114{left:673.500000px;}
.xcc_c00114{left:675.600000px;}
.xdb_c00114{left:678.150000px;}
.xa0_c00114{left:679.350000px;}
.x104_c00114{left:680.400000px;}
.xa6_c00114{left:683.100000px;}
.x124_c00114{left:684.750000px;}
.xd5_c00114{left:690.300000px;}
.xb5_c00114{left:692.700000px;}
.x11c_c00114{left:696.900000px;}
.x127_c00114{left:698.250000px;}
.x114_c00114{left:700.050000px;}
.xa1_c00114{left:701.700000px;}
.xd6_c00114{left:706.500000px;}
.xa7_c00114{left:708.600000px;}
.xaf_c00114{left:712.500000px;}
.x112_c00114{left:713.700000px;}
.xc4_c00114{left:715.500000px;}
.xeb_c00114{left:717.750000px;}
.x11d_c00114{left:719.550000px;}
.x105_c00114{left:721.200000px;}
.x10d_c00114{left:723.300000px;}
.xf6_c00114{left:724.500000px;}
.xcd_c00114{left:727.050000px;}
.xa8_c00114{left:729.150000px;}
.xec_c00114{left:730.650000px;}
.x121_c00114{left:734.850000px;}
.x109_c00114{left:736.650000px;}
.xb0_c00114{left:737.700000px;}
.xd7_c00114{left:739.950000px;}
.xe6_c00114{left:741.900000px;}
.xa2_c00114{left:743.850000px;}
.xc5_c00114{left:746.850000px;}
.xdc_c00114{left:749.400000px;}
.xbb_c00114{left:751.350000px;}
.x106_c00114{left:753.600000px;}
.xed_c00114{left:754.800000px;}
.xa3_c00114{left:756.750000px;}
.xfb_c00114{left:758.550000px;}
.x101_c00114{left:761.100000px;}
.xa9_c00114{left:764.100000px;}
.x2_c00114{left:766.800000px;}
.x10a_c00114{left:769.350000px;}
.x110_c00114{left:770.850000px;}
.x12a_c00114{left:772.350000px;}
.x10e_c00114{left:773.700000px;}
.xbc_c00114{left:775.500000px;}
.xce_c00114{left:782.100000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws2_c00114{word-spacing:-10.555556pt;}
.ws1_c00114{word-spacing:-9.426752pt;}
.ws5_c00114{word-spacing:-8.626193pt;}
.ws6_c00114{word-spacing:-3.959243pt;}
.ws7_c00114{word-spacing:0.000000pt;}
.ws0_c00114{word-spacing:4.126984pt;}
.ws3_c00114{word-spacing:14.920635pt;}
.ws4_c00114{word-spacing:787.936508pt;}
._0_c00114{width:49.523810pt;}
.fs5_c00114{font-size:37.333333pt;}
.fs6_c00114{font-size:42.666667pt;}
.fs4_c00114{font-size:48.000000pt;}
.fs2_c00114{font-size:53.333333pt;}
.fs1_c00114{font-size:58.666667pt;}
.fs3_c00114{font-size:64.000000pt;}
.fs0_c00114{font-size:69.333333pt;}
.y0_c00114{bottom:0.000000pt;}
.y69_c00114{bottom:144.666667pt;}
.y68_c00114{bottom:159.866667pt;}
.y36_c00114{bottom:160.933333pt;}
.y67_c00114{bottom:173.333333pt;}
.y35_c00114{bottom:174.000000pt;}
.y66_c00114{bottom:185.866667pt;}
.y34_c00114{bottom:186.533333pt;}
.y33_c00114{bottom:199.066667pt;}
.y32_c00114{bottom:211.866667pt;}
.y65_c00114{bottom:217.333333pt;}
.y31_c00114{bottom:224.400000pt;}
.y64_c00114{bottom:230.400000pt;}
.y30_c00114{bottom:237.466667pt;}
.y63_c00114{bottom:244.533333pt;}
.y62_c00114{bottom:260.133333pt;}
.y2f_c00114{bottom:274.666667pt;}
.y61_c00114{bottom:275.466667pt;}
.y2e_c00114{bottom:290.400000pt;}
.y60_c00114{bottom:295.200000pt;}
.y2d_c00114{bottom:306.133333pt;}
.y5f_c00114{bottom:310.933333pt;}
.y2c_c00114{bottom:322.133333pt;}
.y5e_c00114{bottom:326.933333pt;}
.y2b_c00114{bottom:337.866667pt;}
.y5d_c00114{bottom:342.666667pt;}
.y2a_c00114{bottom:356.800000pt;}
.y5c_c00114{bottom:358.666667pt;}
.y29_c00114{bottom:369.600000pt;}
.y5b_c00114{bottom:377.866667pt;}
.y28_c00114{bottom:381.466667pt;}
.y5a_c00114{bottom:394.533333pt;}
.y27_c00114{bottom:395.200000pt;}
.y26_c00114{bottom:408.000000pt;}
.y59_c00114{bottom:413.733333pt;}
.y25_c00114{bottom:420.533333pt;}
.y24_c00114{bottom:432.666667pt;}
.y58_c00114{bottom:433.600000pt;}
.y23_c00114{bottom:446.133333pt;}
.y57_c00114{bottom:453.333333pt;}
.y22_c00114{bottom:458.933333pt;}
.y21_c00114{bottom:471.600000pt;}
.y56_c00114{bottom:477.333333pt;}
.y20_c00114{bottom:483.466667pt;}
.y55_c00114{bottom:486.000000pt;}
.y1f_c00114{bottom:497.866667pt;}
.y54_c00114{bottom:502.000000pt;}
.y1e_c00114{bottom:514.533333pt;}
.y53_c00114{bottom:518.000000pt;}
.y1d_c00114{bottom:530.533333pt;}
.y52_c00114{bottom:533.733333pt;}
.y51_c00114{bottom:549.733333pt;}
.y1c_c00114{bottom:550.400000pt;}
.y50_c00114{bottom:565.466667pt;}
.y1b_c00114{bottom:567.333333pt;}
.y4f_c00114{bottom:581.466667pt;}
.y1a_c00114{bottom:582.000000pt;}
.y19_c00114{bottom:597.733333pt;}
.y4e_c00114{bottom:599.733333pt;}
.y4d_c00114{bottom:616.666667pt;}
.y18_c00114{bottom:617.333333pt;}
.y4c_c00114{bottom:633.600000pt;}
.y17_c00114{bottom:640.666667pt;}
.y4b_c00114{bottom:651.866667pt;}
.y16_c00114{bottom:660.533333pt;}
.y4a_c00114{bottom:669.200000pt;}
.y15_c00114{bottom:679.866667pt;}
.y49_c00114{bottom:685.200000pt;}
.y14_c00114{bottom:695.866667pt;}
.y48_c00114{bottom:701.466667pt;}
.y13_c00114{bottom:711.866667pt;}
.y47_c00114{bottom:719.733333pt;}
.y12_c00114{bottom:727.866667pt;}
.y46_c00114{bottom:739.200000pt;}
.y11_c00114{bottom:743.600000pt;}
.y10_c00114{bottom:759.333333pt;}
.y45_c00114{bottom:759.600000pt;}
.y44_c00114{bottom:775.333333pt;}
.yf_c00114{bottom:777.866667pt;}
.y43_c00114{bottom:794.800000pt;}
.ye_c00114{bottom:795.733333pt;}
.yd_c00114{bottom:811.466667pt;}
.y42_c00114{bottom:812.666667pt;}
.y41_c00114{bottom:826.800000pt;}
.yc_c00114{bottom:831.333333pt;}
.y40_c00114{bottom:842.800000pt;}
.yb_c00114{bottom:847.066667pt;}
.y3f_c00114{bottom:858.533333pt;}
.ya_c00114{bottom:863.066667pt;}
.y3e_c00114{bottom:874.533333pt;}
.y9_c00114{bottom:882.800000pt;}
.y3d_c00114{bottom:889.866667pt;}
.y8_c00114{bottom:902.666667pt;}
.y3c_c00114{bottom:905.866667pt;}
.y3b_c00114{bottom:921.600000pt;}
.y7_c00114{bottom:922.400000pt;}
.y3a_c00114{bottom:937.866667pt;}
.y6_c00114{bottom:938.133333pt;}
.y39_c00114{bottom:953.200000pt;}
.y5_c00114{bottom:954.133333pt;}
.y38_c00114{bottom:968.933333pt;}
.y4_c00114{bottom:970.133333pt;}
.y37_c00114{bottom:984.666667pt;}
.y3_c00114{bottom:985.866667pt;}
.y2_c00114{bottom:1003.866667pt;}
.y1_c00114{bottom:1008.666667pt;}
.h7_c00114{height:37.333333pt;}
.h8_c00114{height:42.666667pt;}
.h6_c00114{height:48.000000pt;}
.h4_c00114{height:53.333333pt;}
.h3_c00114{height:58.666667pt;}
.h5_c00114{height:64.000000pt;}
.h2_c00114{height:69.333333pt;}
.h0_c00114{height:1134.399984pt;}
.h1_c00114{height:1134.666667pt;}
.w1_c00114{width:847.333333pt;}
.w0_c00114{width:847.360027pt;}
.x0_c00114{left:0.000000pt;}
.x78_c00114{left:78.133333pt;}
.x3_c00114{left:80.000000pt;}
.x61_c00114{left:81.333333pt;}
.x23_c00114{left:82.533333pt;}
.x81_c00114{left:85.733333pt;}
.x62_c00114{left:90.666667pt;}
.x24_c00114{left:92.400000pt;}
.x7c_c00114{left:94.266667pt;}
.x44_c00114{left:96.266667pt;}
.x1c_c00114{left:97.600000pt;}
.x8_c00114{left:98.533333pt;}
.x25_c00114{left:99.733333pt;}
.x92_c00114{left:103.600000pt;}
.x84_c00114{left:107.200000pt;}
.x99_c00114{left:110.666667pt;}
.x93_c00114{left:111.600000pt;}
.x2b_c00114{left:115.200000pt;}
.xd_c00114{left:116.533333pt;}
.x72_c00114{left:118.666667pt;}
.x26_c00114{left:119.600000pt;}
.x7d_c00114{left:120.533333pt;}
.x3e_c00114{left:122.266667pt;}
.x94_c00114{left:126.000000pt;}
.x9a_c00114{left:128.266667pt;}
.x1d_c00114{left:129.333333pt;}
.xe_c00114{left:131.600000pt;}
.x6d_c00114{left:132.933333pt;}
.x14_c00114{left:134.133333pt;}
.x60_c00114{left:135.333333pt;}
.x4d_c00114{left:137.466667pt;}
.x2f_c00114{left:138.400000pt;}
.x4_c00114{left:139.866667pt;}
.x6c_c00114{left:141.600000pt;}
.x22_c00114{left:144.000000pt;}
.x96_c00114{left:145.200000pt;}
.x63_c00114{left:148.800000pt;}
.x1e_c00114{left:150.133333pt;}
.x27_c00114{left:151.333333pt;}
.x98_c00114{left:153.733333pt;}
.x2c_c00114{left:155.200000pt;}
.x5b_c00114{left:156.400000pt;}
.x45_c00114{left:158.666667pt;}
.x64_c00114{left:159.733333pt;}
.x8b_c00114{left:160.666667pt;}
.x49_c00114{left:161.600000pt;}
.x9_c00114{left:165.066667pt;}
.x6e_c00114{left:167.200000pt;}
.xf_c00114{left:169.333333pt;}
.x15_c00114{left:170.666667pt;}
.x36_c00114{left:172.266667pt;}
.x7e_c00114{left:173.333333pt;}
.x73_c00114{left:174.933333pt;}
.x55_c00114{left:177.200000pt;}
.x3f_c00114{left:183.066667pt;}
.x8e_c00114{left:184.800000pt;}
.x46_c00114{left:186.133333pt;}
.x30_c00114{left:188.000000pt;}
.x68_c00114{left:189.066667pt;}
.x97_c00114{left:190.666667pt;}
.x28_c00114{left:193.866667pt;}
.x5_c00114{left:195.600000pt;}
.x2d_c00114{left:197.733333pt;}
.x10_c00114{left:199.733333pt;}
.x65_c00114{left:201.600000pt;}
.x4a_c00114{left:204.800000pt;}
.x1f_c00114{left:206.400000pt;}
.x37_c00114{left:207.733333pt;}
.x56_c00114{left:208.933333pt;}
.x7f_c00114{left:210.400000pt;}
.x69_c00114{left:213.333333pt;}
.x74_c00114{left:215.600000pt;}
.x4e_c00114{left:217.066667pt;}
.x85_c00114{left:218.400000pt;}
.x16_c00114{left:219.600000pt;}
.x95_c00114{left:221.066667pt;}
.x31_c00114{left:222.533333pt;}
.x29_c00114{left:228.800000pt;}
.x50_c00114{left:230.933333pt;}
.x8d_c00114{left:232.400000pt;}
.x5f_c00114{left:233.733333pt;}
.x5c_c00114{left:235.866667pt;}
.x2a_c00114{left:237.466667pt;}
.x17_c00114{left:238.800000pt;}
.x38_c00114{left:241.600000pt;}
.xa_c00114{left:244.133333pt;}
.x57_c00114{left:245.466667pt;}
.x76_c00114{left:246.933333pt;}
.x80_c00114{left:247.866667pt;}
.x86_c00114{left:249.333333pt;}
.x11_c00114{left:251.200000pt;}
.x88_c00114{left:253.466667pt;}
.x5d_c00114{left:254.800000pt;}
.x32_c00114{left:255.866667pt;}
.x6a_c00114{left:256.800000pt;}
.x77_c00114{left:260.000000pt;}
.xb_c00114{left:261.466667pt;}
.x39_c00114{left:263.733333pt;}
.x33_c00114{left:265.200000pt;}
.x6_c00114{left:266.266667pt;}
.x51_c00114{left:267.466667pt;}
.x66_c00114{left:268.800000pt;}
.x79_c00114{left:270.533333pt;}
.x20_c00114{left:271.733333pt;}
.x87_c00114{left:274.533333pt;}
.x18_c00114{left:277.866667pt;}
.x21_c00114{left:280.000000pt;}
.x47_c00114{left:280.933333pt;}
.x58_c00114{left:282.266667pt;}
.x1_c00114{left:283.466667pt;}
.x7a_c00114{left:284.666667pt;}
.x52_c00114{left:286.000000pt;}
.x34_c00114{left:286.933333pt;}
.x6f_c00114{left:290.400000pt;}
.x89_c00114{left:291.600000pt;}
.x19_c00114{left:293.200000pt;}
.x3a_c00114{left:294.133333pt;}
.x8f_c00114{left:295.466667pt;}
.x40_c00114{left:300.533333pt;}
.x3b_c00114{left:302.133333pt;}
.x7_c00114{left:304.000000pt;}
.x4f_c00114{left:305.600000pt;}
.x35_c00114{left:307.066667pt;}
.x12_c00114{left:309.466667pt;}
.x67_c00114{left:313.600000pt;}
.x53_c00114{left:314.800000pt;}
.x8a_c00114{left:316.933333pt;}
.xc_c00114{left:318.133333pt;}
.x82_c00114{left:319.066667pt;}
.x70_c00114{left:320.533333pt;}
.x6b_c00114{left:322.133333pt;}
.x3c_c00114{left:323.600000pt;}
.x41_c00114{left:325.466667pt;}
.x59_c00114{left:329.600000pt;}
.x48_c00114{left:332.400000pt;}
.x5e_c00114{left:334.800000pt;}
.x42_c00114{left:336.000000pt;}
.x7b_c00114{left:337.466667pt;}
.x91_c00114{left:339.466667pt;}
.x4b_c00114{left:342.933333pt;}
.x3d_c00114{left:344.666667pt;}
.x1a_c00114{left:346.933333pt;}
.x2e_c00114{left:350.933333pt;}
.x75_c00114{left:352.000000pt;}
.x43_c00114{left:353.600000pt;}
.x54_c00114{left:354.800000pt;}
.x8c_c00114{left:355.866667pt;}
.x1b_c00114{left:360.000000pt;}
.x5a_c00114{left:362.533333pt;}
.x90_c00114{left:363.600000pt;}
.x4c_c00114{left:365.600000pt;}
.x13_c00114{left:368.400000pt;}
.x83_c00114{left:369.333333pt;}
.x71_c00114{left:371.466667pt;}
.xe8_c00114{left:399.333333pt;}
.xef_c00114{left:400.933333pt;}
.xf0_c00114{left:408.933333pt;}
.x125_c00114{left:412.133333pt;}
.x128_c00114{left:413.466667pt;}
.x9b_c00114{left:415.066667pt;}
.xdd_c00114{left:416.266667pt;}
.x126_c00114{left:426.266667pt;}
.xf4_c00114{left:432.000000pt;}
.x129_c00114{left:434.000000pt;}
.xf1_c00114{left:438.400000pt;}
.xd8_c00114{left:439.866667pt;}
.xc6_c00114{left:441.733333pt;}
.x9c_c00114{left:443.866667pt;}
.xb6_c00114{left:444.800000pt;}
.xf7_c00114{left:445.866667pt;}
.x116_c00114{left:449.200000pt;}
.x118_c00114{left:450.266667pt;}
.x102_c00114{left:451.333333pt;}
.xaa_c00114{left:452.933333pt;}
.xde_c00114{left:454.666667pt;}
.xc7_c00114{left:456.800000pt;}
.xb7_c00114{left:459.200000pt;}
.xee_c00114{left:460.800000pt;}
.x11e_c00114{left:462.400000pt;}
.xcf_c00114{left:464.800000pt;}
.xbd_c00114{left:466.400000pt;}
.x9d_c00114{left:467.600000pt;}
.x122_c00114{left:469.466667pt;}
.xe7_c00114{left:470.933333pt;}
.xdf_c00114{left:472.933333pt;}
.xd0_c00114{left:474.400000pt;}
.xfe_c00114{left:476.800000pt;}
.x115_c00114{left:477.733333pt;}
.xab_c00114{left:479.466667pt;}
.xf8_c00114{left:482.933333pt;}
.xbe_c00114{left:484.266667pt;}
.xc8_c00114{left:487.866667pt;}
.x10b_c00114{left:490.533333pt;}
.xb1_c00114{left:494.400000pt;}
.x10f_c00114{left:495.466667pt;}
.xe9_c00114{left:496.533333pt;}
.xff_c00114{left:498.266667pt;}
.xbf_c00114{left:499.333333pt;}
.xb8_c00114{left:500.533333pt;}
.x11b_c00114{left:501.733333pt;}
.xe3_c00114{left:505.066667pt;}
.xc9_c00114{left:506.800000pt;}
.xb2_c00114{left:508.800000pt;}
.xf5_c00114{left:509.733333pt;}
.x107_c00114{left:514.000000pt;}
.xd1_c00114{left:515.066667pt;}
.x9e_c00114{left:517.200000pt;}
.x117_c00114{left:521.866667pt;}
.xf2_c00114{left:522.800000pt;}
.xd2_c00114{left:524.000000pt;}
.xc0_c00114{left:524.933333pt;}
.x119_c00114{left:526.800000pt;}
.xe4_c00114{left:529.333333pt;}
.xd9_c00114{left:531.466667pt;}
.xc1_c00114{left:533.200000pt;}
.xb3_c00114{left:535.066667pt;}
.xe0_c00114{left:536.666667pt;}
.xac_c00114{left:538.000000pt;}
.xa4_c00114{left:540.266667pt;}
.x108_c00114{left:541.200000pt;}
.x11a_c00114{left:542.133333pt;}
.xe5_c00114{left:543.333333pt;}
.x120_c00114{left:545.600000pt;}
.xb9_c00114{left:547.600000pt;}
.xad_c00114{left:549.200000pt;}
.x103_c00114{left:550.133333pt;}
.xf9_c00114{left:551.066667pt;}
.xfc_c00114{left:552.400000pt;}
.x9f_c00114{left:554.266667pt;}
.xca_c00114{left:556.400000pt;}
.xe1_c00114{left:558.400000pt;}
.x10c_c00114{left:559.333333pt;}
.x113_c00114{left:560.533333pt;}
.xda_c00114{left:565.066667pt;}
.xc2_c00114{left:566.533333pt;}
.x11f_c00114{left:568.000000pt;}
.x123_c00114{left:569.333333pt;}
.xf3_c00114{left:570.533333pt;}
.xfa_c00114{left:571.866667pt;}
.xd3_c00114{left:573.333333pt;}
.x12b_c00114{left:575.333333pt;}
.xba_c00114{left:576.666667pt;}
.xb4_c00114{left:578.000000pt;}
.x100_c00114{left:579.866667pt;}
.xd4_c00114{left:581.600000pt;}
.xc3_c00114{left:584.800000pt;}
.xea_c00114{left:587.733333pt;}
.xa5_c00114{left:589.866667pt;}
.x111_c00114{left:590.933333pt;}
.xcb_c00114{left:592.533333pt;}
.xfd_c00114{left:594.266667pt;}
.xae_c00114{left:597.200000pt;}
.xe2_c00114{left:598.666667pt;}
.xcc_c00114{left:600.533333pt;}
.xdb_c00114{left:602.800000pt;}
.xa0_c00114{left:603.866667pt;}
.x104_c00114{left:604.800000pt;}
.xa6_c00114{left:607.200000pt;}
.x124_c00114{left:608.666667pt;}
.xd5_c00114{left:613.600000pt;}
.xb5_c00114{left:615.733333pt;}
.x11c_c00114{left:619.466667pt;}
.x127_c00114{left:620.666667pt;}
.x114_c00114{left:622.266667pt;}
.xa1_c00114{left:623.733333pt;}
.xd6_c00114{left:628.000000pt;}
.xa7_c00114{left:629.866667pt;}
.xaf_c00114{left:633.333333pt;}
.x112_c00114{left:634.400000pt;}
.xc4_c00114{left:636.000000pt;}
.xeb_c00114{left:638.000000pt;}
.x11d_c00114{left:639.600000pt;}
.x105_c00114{left:641.066667pt;}
.x10d_c00114{left:642.933333pt;}
.xf6_c00114{left:644.000000pt;}
.xcd_c00114{left:646.266667pt;}
.xa8_c00114{left:648.133333pt;}
.xec_c00114{left:649.466667pt;}
.x121_c00114{left:653.200000pt;}
.x109_c00114{left:654.800000pt;}
.xb0_c00114{left:655.733333pt;}
.xd7_c00114{left:657.733333pt;}
.xe6_c00114{left:659.466667pt;}
.xa2_c00114{left:661.200000pt;}
.xc5_c00114{left:663.866667pt;}
.xdc_c00114{left:666.133333pt;}
.xbb_c00114{left:667.866667pt;}
.x106_c00114{left:669.866667pt;}
.xed_c00114{left:670.933333pt;}
.xa3_c00114{left:672.666667pt;}
.xfb_c00114{left:674.266667pt;}
.x101_c00114{left:676.533333pt;}
.xa9_c00114{left:679.200000pt;}
.x2_c00114{left:681.600000pt;}
.x10a_c00114{left:683.866667pt;}
.x110_c00114{left:685.200000pt;}
.x12a_c00114{left:686.533333pt;}
.x10e_c00114{left:687.733333pt;}
.xbc_c00114{left:689.333333pt;}
.xce_c00114{left:695.200000pt;}
}





/* 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_c00115 {
    display:none;
  }
  .loading-indicator_c00115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00115 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_c00115 { 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_c00115" -> "#page-container .classname_c00115")
 */
.pf_c00115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00115 { /* 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_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00115 { /* 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_c00115 { /* 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_c00115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00115 {overflow:visible;}
  }
}
.c_c00115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00115 { /* 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_c00115:after { /* webkit #35443 */
  content: '';
}
.t_c00115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00115 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 */
}
.__c00115 { /* 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_c00115 { /* info for Javascript */
  display:none;
}
.l_c00115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00115: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_c00115 {
    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_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00115.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_c00115 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00115;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.000000;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;}
.mde_c00115{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m102_c00115{transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00115{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00115{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m49_c00115{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00115{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00115{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00115{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00115{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00115{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10_c00115{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m29_c00115{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00115{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00115{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m43_c00115{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00115{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m113_c00115{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00115{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00115{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00115{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m56_c00115{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m16_c00115{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00115{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m63_c00115{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md7_c00115{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m95_c00115{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00115{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00115{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m84_c00115{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00115{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m103_c00115{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m42_c00115{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00115{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m69_c00115{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m26_c00115{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m14_c00115{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00115{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00115{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00115{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00115{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00115{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m85_c00115{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00115{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.md9_c00115{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00115{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me9_c00115{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m55_c00115{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00115{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00115{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m32_c00115{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mca_c00115{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00115{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00115{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.me_c00115{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m83_c00115{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma_c00115{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m61_c00115{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m114_c00115{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00115{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m80_c00115{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m33_c00115{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7_c00115{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00115{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00115{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00115{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m27_c00115{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00115{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mea_c00115{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m82_c00115{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.meb_c00115{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m31_c00115{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mf_c00115{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00115{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m35_c00115{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00115{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m24_c00115{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m12_c00115{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00115{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m81_c00115{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00115{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00115{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m99_c00115{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00115{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00115{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00115{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00115{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m68_c00115{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m22_c00115{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mec_c00115{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00115{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m104_c00115{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00115{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00115{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md0_c00115{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.md5_c00115{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md_c00115{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00115{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mba_c00115{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m41_c00115{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m112_c00115{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m11_c00115{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m90_c00115{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00115{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m67_c00115{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m87_c00115{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00115{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00115{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m36_c00115{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8_c00115{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mab_c00115{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00115{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m94_c00115{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00115{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m110_c00115{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m25_c00115{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00115{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc_c00115{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00115{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me3_c00115{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m4_c00115{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m71_c00115{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m47_c00115{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m38_c00115{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb_c00115{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m17_c00115{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00115{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m86_c00115{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m15_c00115{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m53_c00115{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00115{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mae_c00115{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mac_c00115{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00115{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00115{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m9_c00115{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me8_c00115{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00115{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00115{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m28_c00115{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m54_c00115{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md4_c00115{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00115{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.maa_c00115{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00115{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m13_c00115{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00115{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00115{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m76_c00115{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00115{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00115{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mce_c00115{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m39_c00115{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md2_c00115{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00115{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00115{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00115{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00115{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m46_c00115{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m60_c00115{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00115{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md8_c00115{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00115{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m62_c00115{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6_c00115{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me2_c00115{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00115{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00115{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00115{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00115{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00115{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00115{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00115{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m37_c00115{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m101_c00115{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m45_c00115{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m92_c00115{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00115{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00115{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00115{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00115{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m21_c00115{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00115{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m34_c00115{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m23_c00115{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00115{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00115{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m93_c00115{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00115{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00115{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m70_c00115{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00115{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m100_c00115{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m106_c00115{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m75_c00115{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mad_c00115{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00115{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m30_c00115{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00115{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m109_c00115{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m59_c00115{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00115{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m51_c00115{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00115{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00115{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m52_c00115{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00115{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00115{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m91_c00115{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md6_c00115{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00115{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00115{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00115{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m77_c00115{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m79_c00115{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m19_c00115{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mef_c00115{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);}
.m108_c00115{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m50_c00115{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00115{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md3_c00115{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00115{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00115{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me5_c00115{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00115{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00115{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m111_c00115{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md1_c00115{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00115{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.me6_c00115{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m73_c00115{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m97_c00115{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00115{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mda_c00115{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m96_c00115{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m58_c00115{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00115{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me0_c00115{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m74_c00115{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00115{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m48_c00115{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m20_c00115{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m66_c00115{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00115{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m40_c00115{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me7_c00115{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mee_c00115{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00115{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m72_c00115{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m88_c00115{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.maf_c00115{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m107_c00115{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me1_c00115{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00115{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mff_c00115{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.me4_c00115{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m57_c00115{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c00115{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00115{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m98_c00115{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00115{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00115{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m64_c00115{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00115{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.m105_c00115{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00115{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m89_c00115{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.med_c00115{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m0_c00115{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m78_c00115{transform:matrix(0.393500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393500,0.000000,0.000000,0.250000,0,0);}
.m65_c00115{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00115{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00115{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00115{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls0_c00115{letter-spacing:0.000000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{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__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00115{word-spacing:-9.083123px;}
.ws3_c00115{word-spacing:-7.058824px;}
.ws0_c00115{word-spacing:-6.902655px;}
.ws2_c00115{word-spacing:-2.200573px;}
.ws8_c00115{word-spacing:0.000000px;}
.ws6_c00115{word-spacing:0.378223px;}
.ws5_c00115{word-spacing:1.624204px;}
.ws1_c00115{word-spacing:4.759450px;}
.ws4_c00115{word-spacing:10.657343px;}
.fc0_c00115{color:transparent;}
.fs5_c00115{font-size:18.000000px;}
.fs6_c00115{font-size:48.000000px;}
.fs0_c00115{font-size:54.000000px;}
.fs4_c00115{font-size:60.000000px;}
.fs2_c00115{font-size:66.000000px;}
.fs3_c00115{font-size:72.000000px;}
.fs1_c00115{font-size:120.000000px;}
.y0_c00115{bottom:0.000000px;}
.y33_c00115{bottom:166.050000px;}
.y61_c00115{bottom:167.850000px;}
.y32_c00115{bottom:180.750000px;}
.y60_c00115{bottom:186.600000px;}
.y31_c00115{bottom:195.450000px;}
.y5f_c00115{bottom:204.300000px;}
.y5e_c00115{bottom:222.000000px;}
.y5d_c00115{bottom:240.000000px;}
.y30_c00115{bottom:242.100000px;}
.y5c_c00115{bottom:258.000000px;}
.y2f_c00115{bottom:260.100000px;}
.y5b_c00115{bottom:275.700000px;}
.y2e_c00115{bottom:277.800000px;}
.y5a_c00115{bottom:293.700000px;}
.y2d_c00115{bottom:295.800000px;}
.y59_c00115{bottom:311.700000px;}
.y2c_c00115{bottom:313.800000px;}
.y58_c00115{bottom:329.400000px;}
.y2b_c00115{bottom:331.800000px;}
.y57_c00115{bottom:347.400000px;}
.y2a_c00115{bottom:349.800000px;}
.y29_c00115{bottom:367.500000px;}
.y56_c00115{bottom:373.350000px;}
.y28_c00115{bottom:385.500000px;}
.y55_c00115{bottom:398.400000px;}
.y27_c00115{bottom:403.200000px;}
.y54_c00115{bottom:416.100000px;}
.y26_c00115{bottom:424.050000px;}
.y53_c00115{bottom:434.100000px;}
.y25_c00115{bottom:444.600000px;}
.y52_c00115{bottom:451.800000px;}
.y24_c00115{bottom:462.600000px;}
.y51_c00115{bottom:469.500000px;}
.y23_c00115{bottom:484.800000px;}
.y50_c00115{bottom:496.500000px;}
.y22_c00115{bottom:502.500000px;}
.y4f_c00115{bottom:514.800000px;}
.y21_c00115{bottom:520.200000px;}
.y4e_c00115{bottom:532.800000px;}
.y20_c00115{bottom:542.100000px;}
.y4d_c00115{bottom:559.050000px;}
.y1f_c00115{bottom:567.000000px;}
.y4c_c00115{bottom:577.350000px;}
.y1e_c00115{bottom:589.350000px;}
.y4b_c00115{bottom:594.600000px;}
.y4a_c00115{bottom:612.600000px;}
.y1d_c00115{bottom:616.350000px;}
.y49_c00115{bottom:630.300000px;}
.y1c_c00115{bottom:634.650000px;}
.y1b_c00115{bottom:652.650000px;}
.y1a_c00115{bottom:670.650000px;}
.y19_c00115{bottom:688.350000px;}
.y48_c00115{bottom:698.700000px;}
.y18_c00115{bottom:706.350000px;}
.y47_c00115{bottom:721.050000px;}
.y17_c00115{bottom:725.100000px;}
.y46_c00115{bottom:739.050000px;}
.y16_c00115{bottom:745.200000px;}
.y45_c00115{bottom:757.050000px;}
.y15_c00115{bottom:764.700000px;}
.y14_c00115{bottom:772.950000px;}
.y44_c00115{bottom:774.750000px;}
.y13_c00115{bottom:782.550000px;}
.y43_c00115{bottom:792.750000px;}
.y12_c00115{bottom:800.250000px;}
.y42_c00115{bottom:819.300000px;}
.y11_c00115{bottom:826.500000px;}
.y41_c00115{bottom:837.300000px;}
.y10_c00115{bottom:844.500000px;}
.y40_c00115{bottom:855.000000px;}
.yf_c00115{bottom:862.500000px;}
.y3f_c00115{bottom:873.000000px;}
.ye_c00115{bottom:883.800000px;}
.y3e_c00115{bottom:895.350000px;}
.yd_c00115{bottom:913.350000px;}
.y3d_c00115{bottom:931.350000px;}
.yc_c00115{bottom:935.250000px;}
.y3c_c00115{bottom:957.900000px;}
.yb_c00115{bottom:958.500000px;}
.y3b_c00115{bottom:975.900000px;}
.ya_c00115{bottom:976.500000px;}
.y3a_c00115{bottom:993.900000px;}
.y9_c00115{bottom:994.200000px;}
.y39_c00115{bottom:1011.600000px;}
.y8_c00115{bottom:1012.200000px;}
.y38_c00115{bottom:1029.600000px;}
.y7_c00115{bottom:1029.900000px;}
.y37_c00115{bottom:1047.600000px;}
.y6_c00115{bottom:1047.900000px;}
.y36_c00115{bottom:1065.300000px;}
.y5_c00115{bottom:1065.600000px;}
.y35_c00115{bottom:1083.300000px;}
.y4_c00115{bottom:1083.600000px;}
.y34_c00115{bottom:1101.300000px;}
.y3_c00115{bottom:1101.600000px;}
.y1_c00115{bottom:1125.750000px;}
.y2_c00115{bottom:1128.300000px;}
.h7_c00115{height:18.000000px;}
.h8_c00115{height:48.000000px;}
.h2_c00115{height:54.000000px;}
.h6_c00115{height:60.000000px;}
.h4_c00115{height:66.000000px;}
.h5_c00115{height:72.000000px;}
.h3_c00115{height:120.000000px;}
.h0_c00115{height:1271.879975px;}
.h1_c00115{height:1272.000000px;}
.w1_c00115{width:953.250000px;}
.w0_c00115{width:953.280030px;}
.x0_c00115{left:0.000000px;}
.x8c_c00115{left:165.900000px;}
.x78_c00115{left:167.400000px;}
.x5e_c00115{left:169.800000px;}
.x1_c00115{left:171.000000px;}
.x3a_c00115{left:173.100000px;}
.x7b_c00115{left:177.900000px;}
.xa7_c00115{left:181.500000px;}
.x90_c00115{left:183.900000px;}
.x8_c00115{left:184.950000px;}
.x6e_c00115{left:186.150000px;}
.x66_c00115{left:187.200000px;}
.x56_c00115{left:188.250000px;}
.x10_c00115{left:189.300000px;}
.x7a_c00115{left:199.500000px;}
.x89_c00115{left:201.750000px;}
.xa8_c00115{left:203.400000px;}
.x67_c00115{left:204.900000px;}
.x3e_c00115{left:207.000000px;}
.x7c_c00115{left:209.250000px;}
.x96_c00115{left:212.250000px;}
.x91_c00115{left:215.550000px;}
.x3b_c00115{left:217.050000px;}
.xa4_c00115{left:218.100000px;}
.x3f_c00115{left:219.300000px;}
.xa9_c00115{left:221.250000px;}
.x1a_c00115{left:223.650000px;}
.x79_c00115{left:225.750000px;}
.x4b_c00115{left:226.800000px;}
.x9_c00115{left:229.200000px;}
.x30_c00115{left:230.400000px;}
.x11_c00115{left:232.500000px;}
.x9f_c00115{left:234.900000px;}
.x39_c00115{left:236.550000px;}
.x26_c00115{left:238.650000px;}
.x21_c00115{left:240.600000px;}
.x12_c00115{left:242.550000px;}
.x44_c00115{left:244.500000px;}
.x99_c00115{left:246.000000px;}
.x4c_c00115{left:248.100000px;}
.x3c_c00115{left:250.950000px;}
.x97_c00115{left:252.150000px;}
.x5f_c00115{left:253.650000px;}
.x34_c00115{left:254.700000px;}
.xa1_c00115{left:255.900000px;}
.x2d_c00115{left:257.700000px;}
.x3_c00115{left:258.900000px;}
.x27_c00115{left:260.550000px;}
.x3d_c00115{left:262.050000px;}
.x6f_c00115{left:263.250000px;}
.x22_c00115{left:264.750000px;}
.x80_c00115{left:265.800000px;}
.x60_c00115{left:267.000000px;}
.xae_c00115{left:268.050000px;}
.x31_c00115{left:272.850000px;}
.x85_c00115{left:274.050000px;}
.x13_c00115{left:277.800000px;}
.x6c_c00115{left:280.800000px;}
.xa2_c00115{left:281.850000px;}
.x53_c00115{left:282.900000px;}
.x4d_c00115{left:285.150000px;}
.x45_c00115{left:286.200000px;}
.x57_c00115{left:288.000000px;}
.x9a_c00115{left:289.950000px;}
.x28_c00115{left:291.450000px;}
.x1b_c00115{left:292.800000px;}
.x81_c00115{left:294.300000px;}
.xa_c00115{left:296.100000px;}
.xaf_c00115{left:298.350000px;}
.x61_c00115{left:299.700000px;}
.x7d_c00115{left:302.250000px;}
.x14_c00115{left:304.500000px;}
.x8d_c00115{left:305.850000px;}
.x2e_c00115{left:308.100000px;}
.x70_c00115{left:310.050000px;}
.x35_c00115{left:311.250000px;}
.x1c_c00115{left:313.350000px;}
.x68_c00115{left:315.000000px;}
.x74_c00115{left:316.800000px;}
.x4_c00115{left:318.600000px;}
.x92_c00115{left:320.400000px;}
.x86_c00115{left:323.700000px;}
.x98_c00115{left:325.650000px;}
.x8a_c00115{left:327.750000px;}
.x1d_c00115{left:329.550000px;}
.xb_c00115{left:330.600000px;}
.x54_c00115{left:333.000000px;}
.x23_c00115{left:334.950000px;}
.x62_c00115{left:338.100000px;}
.x29_c00115{left:340.350000px;}
.x6d_c00115{left:342.000000px;}
.x40_c00115{left:343.050000px;}
.x77_c00115{left:344.250000px;}
.x46_c00115{left:345.600000px;}
.x8e_c00115{left:351.600000px;}
.x7f_c00115{left:353.100000px;}
.xc_c00115{left:354.750000px;}
.x69_c00115{left:356.100000px;}
.x15_c00115{left:358.200000px;}
.x71_c00115{left:359.700000px;}
.x63_c00115{left:361.200000px;}
.x9c_c00115{left:363.000000px;}
.x82_c00115{left:364.200000px;}
.x9b_c00115{left:366.300000px;}
.x1e_c00115{left:367.650000px;}
.x58_c00115{left:370.050000px;}
.xa0_c00115{left:371.250000px;}
.x5c_c00115{left:372.750000px;}
.x16_c00115{left:375.450000px;}
.x2f_c00115{left:378.000000px;}
.x32_c00115{left:379.200000px;}
.x72_c00115{left:381.000000px;}
.x7e_c00115{left:384.000000px;}
.xa5_c00115{left:385.050000px;}
.x5_c00115{left:386.250000px;}
.x93_c00115{left:388.200000px;}
.x5b_c00115{left:390.000000px;}
.xd_c00115{left:391.500000px;}
.x24_c00115{left:393.300000px;}
.x87_c00115{left:394.650000px;}
.x17_c00115{left:396.750000px;}
.x33_c00115{left:398.250000px;}
.x47_c00115{left:399.600000px;}
.xaa_c00115{left:400.650000px;}
.x4e_c00115{left:403.350000px;}
.x9d_c00115{left:406.200000px;}
.x36_c00115{left:407.700000px;}
.x2a_c00115{left:409.500000px;}
.x8b_c00115{left:411.300000px;}
.x1f_c00115{left:412.650000px;}
.x18_c00115{left:413.700000px;}
.x88_c00115{left:414.750000px;}
.x2_c00115{left:415.800000px;}
.x59_c00115{left:418.050000px;}
.x4f_c00115{left:419.850000px;}
.x41_c00115{left:421.500000px;}
.x37_c00115{left:424.200000px;}
.x64_c00115{left:425.700000px;}
.x94_c00115{left:426.750000px;}
.x48_c00115{left:428.400000px;}
.x9e_c00115{left:430.350000px;}
.xa3_c00115{left:432.300000px;}
.xe_c00115{left:434.400000px;}
.x55_c00115{left:435.900000px;}
.xab_c00115{left:437.700000px;}
.x50_c00115{left:438.900000px;}
.x75_c00115{left:439.950000px;}
.x6_c00115{left:441.000000px;}
.x49_c00115{left:443.550000px;}
.x95_c00115{left:446.250000px;}
.x84_c00115{left:447.750000px;}
.x25_c00115{left:448.800000px;}
.xf_c00115{left:451.350000px;}
.xac_c00115{left:453.900000px;}
.x6a_c00115{left:455.100000px;}
.x19_c00115{left:456.150000px;}
.x2b_c00115{left:457.350000px;}
.x38_c00115{left:461.250000px;}
.x73_c00115{left:462.750000px;}
.x5a_c00115{left:463.800000px;}
.x4a_c00115{left:465.150000px;}
.x42_c00115{left:466.500000px;}
.x76_c00115{left:468.450000px;}
.x6b_c00115{left:470.250000px;}
.x51_c00115{left:472.050000px;}
.xad_c00115{left:474.000000px;}
.x2c_c00115{left:475.650000px;}
.x7_c00115{left:477.300000px;}
.x20_c00115{left:482.850000px;}
.xa6_c00115{left:486.900000px;}
.x83_c00115{left:489.450000px;}
.x8f_c00115{left:492.450000px;}
.x5d_c00115{left:494.850000px;}
.x52_c00115{left:496.200000px;}
.x43_c00115{left:500.700000px;}
.x141_c00115{left:522.300000px;}
.x136_c00115{left:524.100000px;}
.x65_c00115{left:525.450000px;}
.x107_c00115{left:526.650000px;}
.x120_c00115{left:539.100000px;}
.x140_c00115{left:540.900000px;}
.x125_c00115{left:542.100000px;}
.xed_c00115{left:544.650000px;}
.xb0_c00115{left:546.150000px;}
.xd8_c00115{left:550.050000px;}
.x145_c00115{left:556.500000px;}
.x121_c00115{left:560.550000px;}
.xe6_c00115{left:563.100000px;}
.xb1_c00115{left:565.200000px;}
.x102_c00115{left:566.250000px;}
.x114_c00115{left:568.200000px;}
.x14d_c00115{left:570.450000px;}
.x148_c00115{left:571.800000px;}
.x146_c00115{left:573.450000px;}
.x12c_c00115{left:575.550000px;}
.xf9_c00115{left:577.050000px;}
.xf1_c00115{left:578.550000px;}
.xba_c00115{left:579.750000px;}
.x126_c00115{left:580.950000px;}
.x108_c00115{left:584.550000px;}
.xd3_c00115{left:588.150000px;}
.x13b_c00115{left:590.850000px;}
.xfa_c00115{left:592.200000px;}
.xe3_c00115{left:593.700000px;}
.xd9_c00115{left:596.850000px;}
.xfd_c00115{left:598.800000px;}
.xc2_c00115{left:600.900000px;}
.xc7_c00115{left:603.150000px;}
.xce_c00115{left:604.650000px;}
.xb2_c00115{left:605.850000px;}
.x122_c00115{left:607.350000px;}
.x109_c00115{left:609.450000px;}
.x138_c00115{left:610.950000px;}
.x14b_c00115{left:613.200000px;}
.xf2_c00115{left:617.100000px;}
.x10e_c00115{left:618.150000px;}
.xe7_c00115{left:619.200000px;}
.xbb_c00115{left:621.900000px;}
.xb3_c00115{left:623.850000px;}
.x119_c00115{left:625.200000px;}
.xc3_c00115{left:626.400000px;}
.xda_c00115{left:628.500000px;}
.xf6_c00115{left:629.700000px;}
.x110_c00115{left:630.750000px;}
.xc8_c00115{left:632.250000px;}
.xbc_c00115{left:633.450000px;}
.x137_c00115{left:635.700000px;}
.x134_c00115{left:639.450000px;}
.xf3_c00115{left:640.500000px;}
.xee_c00115{left:642.600000px;}
.xb4_c00115{left:643.950000px;}
.x13f_c00115{left:645.450000px;}
.xdb_c00115{left:646.800000px;}
.xd4_c00115{left:648.900000px;}
.x149_c00115{left:649.950000px;}
.x11c_c00115{left:651.450000px;}
.xcf_c00115{left:652.500000px;}
.xe8_c00115{left:654.900000px;}
.x11a_c00115{left:656.850000px;}
.xe4_c00115{left:658.500000px;}
.x12e_c00115{left:660.600000px;}
.xfe_c00115{left:662.100000px;}
.xdf_c00115{left:664.200000px;}
.x11d_c00115{left:666.900000px;}
.xc9_c00115{left:667.950000px;}
.xf4_c00115{left:671.100000px;}
.xb5_c00115{left:672.450000px;}
.x147_c00115{left:674.250000px;}
.x135_c00115{left:676.200000px;}
.x139_c00115{left:679.050000px;}
.xe5_c00115{left:680.400000px;}
.xbd_c00115{left:682.050000px;}
.xfb_c00115{left:683.700000px;}
.x123_c00115{left:686.100000px;}
.xc4_c00115{left:687.600000px;}
.xe0_c00115{left:689.100000px;}
.x10a_c00115{left:690.150000px;}
.x103_c00115{left:692.700000px;}
.xca_c00115{left:693.900000px;}
.x132_c00115{left:695.100000px;}
.xdc_c00115{left:697.200000px;}
.x10b_c00115{left:699.150000px;}
.xe9_c00115{left:701.700000px;}
.xd0_c00115{left:703.950000px;}
.x115_c00115{left:705.750000px;}
.xd5_c00115{left:706.800000px;}
.xb6_c00115{left:708.150000px;}
.x111_c00115{left:709.650000px;}
.x12a_c00115{left:711.150000px;}
.xbe_c00115{left:712.950000px;}
.xff_c00115{left:716.550000px;}
.x116_c00115{left:718.050000px;}
.x112_c00115{left:720.450000px;}
.x11b_c00115{left:721.950000px;}
.x12d_c00115{left:723.750000px;}
.x104_c00115{left:727.650000px;}
.xcb_c00115{left:729.900000px;}
.xdd_c00115{left:732.150000px;}
.xea_c00115{left:734.400000px;}
.x10c_c00115{left:736.650000px;}
.x14c_c00115{left:737.850000px;}
.x12f_c00115{left:740.100000px;}
.x127_c00115{left:741.900000px;}
.xc5_c00115{left:744.900000px;}
.xf7_c00115{left:745.950000px;}
.xe1_c00115{left:749.250000px;}
.x133_c00115{left:750.600000px;}
.x13c_c00115{left:752.850000px;}
.xb7_c00115{left:755.700000px;}
.xcc_c00115{left:756.900000px;}
.x144_c00115{left:759.300000px;}
.x100_c00115{left:761.850000px;}
.x124_c00115{left:765.600000px;}
.xde_c00115{left:768.900000px;}
.xf8_c00115{left:771.150000px;}
.x142_c00115{left:772.350000px;}
.x11e_c00115{left:774.900000px;}
.xf5_c00115{left:776.250000px;}
.x117_c00115{left:777.900000px;}
.xef_c00115{left:779.400000px;}
.x105_c00115{left:780.450000px;}
.x10d_c00115{left:784.500000px;}
.xe2_c00115{left:785.550000px;}
.x13d_c00115{left:787.350000px;}
.x11f_c00115{left:789.300000px;}
.x106_c00115{left:790.500000px;}
.xd6_c00115{left:791.700000px;}
.xeb_c00115{left:793.050000px;}
.xd1_c00115{left:794.700000px;}
.xbf_c00115{left:796.050000px;}
.xfc_c00115{left:797.850000px;}
.x101_c00115{left:801.450000px;}
.x128_c00115{left:803.550000px;}
.xb8_c00115{left:808.950000px;}
.xf0_c00115{left:810.300000px;}
.xc0_c00115{left:813.300000px;}
.x13e_c00115{left:815.100000px;}
.xcd_c00115{left:817.350000px;}
.xc6_c00115{left:819.450000px;}
.x143_c00115{left:823.050000px;}
.x12b_c00115{left:825.000000px;}
.x130_c00115{left:826.950000px;}
.xb9_c00115{left:828.450000px;}
.xd2_c00115{left:829.650000px;}
.x14e_c00115{left:831.300000px;}
.x113_c00115{left:833.850000px;}
.x14a_c00115{left:835.200000px;}
.xd7_c00115{left:838.800000px;}
.x129_c00115{left:840.300000px;}
.x131_c00115{left:843.450000px;}
.xc1_c00115{left:845.400000px;}
.x118_c00115{left:847.350000px;}
.x10f_c00115{left:850.050000px;}
.xec_c00115{left:852.450000px;}
.x13a_c00115{left:853.950000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws7_c00115{word-spacing:-8.073887pt;}
.ws3_c00115{word-spacing:-6.274510pt;}
.ws0_c00115{word-spacing:-6.135693pt;}
.ws2_c00115{word-spacing:-1.956065pt;}
.ws8_c00115{word-spacing:0.000000pt;}
.ws6_c00115{word-spacing:0.336199pt;}
.ws5_c00115{word-spacing:1.443737pt;}
.ws1_c00115{word-spacing:4.230622pt;}
.ws4_c00115{word-spacing:9.473193pt;}
.fs5_c00115{font-size:16.000000pt;}
.fs6_c00115{font-size:42.666667pt;}
.fs0_c00115{font-size:48.000000pt;}
.fs4_c00115{font-size:53.333333pt;}
.fs2_c00115{font-size:58.666667pt;}
.fs3_c00115{font-size:64.000000pt;}
.fs1_c00115{font-size:106.666667pt;}
.y0_c00115{bottom:0.000000pt;}
.y33_c00115{bottom:147.600000pt;}
.y61_c00115{bottom:149.200000pt;}
.y32_c00115{bottom:160.666667pt;}
.y60_c00115{bottom:165.866667pt;}
.y31_c00115{bottom:173.733333pt;}
.y5f_c00115{bottom:181.600000pt;}
.y5e_c00115{bottom:197.333333pt;}
.y5d_c00115{bottom:213.333333pt;}
.y30_c00115{bottom:215.200000pt;}
.y5c_c00115{bottom:229.333333pt;}
.y2f_c00115{bottom:231.200000pt;}
.y5b_c00115{bottom:245.066667pt;}
.y2e_c00115{bottom:246.933333pt;}
.y5a_c00115{bottom:261.066667pt;}
.y2d_c00115{bottom:262.933333pt;}
.y59_c00115{bottom:277.066667pt;}
.y2c_c00115{bottom:278.933333pt;}
.y58_c00115{bottom:292.800000pt;}
.y2b_c00115{bottom:294.933333pt;}
.y57_c00115{bottom:308.800000pt;}
.y2a_c00115{bottom:310.933333pt;}
.y29_c00115{bottom:326.666667pt;}
.y56_c00115{bottom:331.866667pt;}
.y28_c00115{bottom:342.666667pt;}
.y55_c00115{bottom:354.133333pt;}
.y27_c00115{bottom:358.400000pt;}
.y54_c00115{bottom:369.866667pt;}
.y26_c00115{bottom:376.933333pt;}
.y53_c00115{bottom:385.866667pt;}
.y25_c00115{bottom:395.200000pt;}
.y52_c00115{bottom:401.600000pt;}
.y24_c00115{bottom:411.200000pt;}
.y51_c00115{bottom:417.333333pt;}
.y23_c00115{bottom:430.933333pt;}
.y50_c00115{bottom:441.333333pt;}
.y22_c00115{bottom:446.666667pt;}
.y4f_c00115{bottom:457.600000pt;}
.y21_c00115{bottom:462.400000pt;}
.y4e_c00115{bottom:473.600000pt;}
.y20_c00115{bottom:481.866667pt;}
.y4d_c00115{bottom:496.933333pt;}
.y1f_c00115{bottom:504.000000pt;}
.y4c_c00115{bottom:513.200000pt;}
.y1e_c00115{bottom:523.866667pt;}
.y4b_c00115{bottom:528.533333pt;}
.y4a_c00115{bottom:544.533333pt;}
.y1d_c00115{bottom:547.866667pt;}
.y49_c00115{bottom:560.266667pt;}
.y1c_c00115{bottom:564.133333pt;}
.y1b_c00115{bottom:580.133333pt;}
.y1a_c00115{bottom:596.133333pt;}
.y19_c00115{bottom:611.866667pt;}
.y48_c00115{bottom:621.066667pt;}
.y18_c00115{bottom:627.866667pt;}
.y47_c00115{bottom:640.933333pt;}
.y17_c00115{bottom:644.533333pt;}
.y46_c00115{bottom:656.933333pt;}
.y16_c00115{bottom:662.400000pt;}
.y45_c00115{bottom:672.933333pt;}
.y15_c00115{bottom:679.733333pt;}
.y14_c00115{bottom:687.066667pt;}
.y44_c00115{bottom:688.666667pt;}
.y13_c00115{bottom:695.600000pt;}
.y43_c00115{bottom:704.666667pt;}
.y12_c00115{bottom:711.333333pt;}
.y42_c00115{bottom:728.266667pt;}
.y11_c00115{bottom:734.666667pt;}
.y41_c00115{bottom:744.266667pt;}
.y10_c00115{bottom:750.666667pt;}
.y40_c00115{bottom:760.000000pt;}
.yf_c00115{bottom:766.666667pt;}
.y3f_c00115{bottom:776.000000pt;}
.ye_c00115{bottom:785.600000pt;}
.y3e_c00115{bottom:795.866667pt;}
.yd_c00115{bottom:811.866667pt;}
.y3d_c00115{bottom:827.866667pt;}
.yc_c00115{bottom:831.333333pt;}
.y3c_c00115{bottom:851.466667pt;}
.yb_c00115{bottom:852.000000pt;}
.y3b_c00115{bottom:867.466667pt;}
.ya_c00115{bottom:868.000000pt;}
.y3a_c00115{bottom:883.466667pt;}
.y9_c00115{bottom:883.733333pt;}
.y39_c00115{bottom:899.200000pt;}
.y8_c00115{bottom:899.733333pt;}
.y38_c00115{bottom:915.200000pt;}
.y7_c00115{bottom:915.466667pt;}
.y37_c00115{bottom:931.200000pt;}
.y6_c00115{bottom:931.466667pt;}
.y36_c00115{bottom:946.933333pt;}
.y5_c00115{bottom:947.200000pt;}
.y35_c00115{bottom:962.933333pt;}
.y4_c00115{bottom:963.200000pt;}
.y34_c00115{bottom:978.933333pt;}
.y3_c00115{bottom:979.200000pt;}
.y1_c00115{bottom:1000.666667pt;}
.y2_c00115{bottom:1002.933333pt;}
.h7_c00115{height:16.000000pt;}
.h8_c00115{height:42.666667pt;}
.h2_c00115{height:48.000000pt;}
.h6_c00115{height:53.333333pt;}
.h4_c00115{height:58.666667pt;}
.h5_c00115{height:64.000000pt;}
.h3_c00115{height:106.666667pt;}
.h0_c00115{height:1130.559977pt;}
.h1_c00115{height:1130.666667pt;}
.w1_c00115{width:847.333333pt;}
.w0_c00115{width:847.360027pt;}
.x0_c00115{left:0.000000pt;}
.x8c_c00115{left:147.466667pt;}
.x78_c00115{left:148.800000pt;}
.x5e_c00115{left:150.933333pt;}
.x1_c00115{left:152.000000pt;}
.x3a_c00115{left:153.866667pt;}
.x7b_c00115{left:158.133333pt;}
.xa7_c00115{left:161.333333pt;}
.x90_c00115{left:163.466667pt;}
.x8_c00115{left:164.400000pt;}
.x6e_c00115{left:165.466667pt;}
.x66_c00115{left:166.400000pt;}
.x56_c00115{left:167.333333pt;}
.x10_c00115{left:168.266667pt;}
.x7a_c00115{left:177.333333pt;}
.x89_c00115{left:179.333333pt;}
.xa8_c00115{left:180.800000pt;}
.x67_c00115{left:182.133333pt;}
.x3e_c00115{left:184.000000pt;}
.x7c_c00115{left:186.000000pt;}
.x96_c00115{left:188.666667pt;}
.x91_c00115{left:191.600000pt;}
.x3b_c00115{left:192.933333pt;}
.xa4_c00115{left:193.866667pt;}
.x3f_c00115{left:194.933333pt;}
.xa9_c00115{left:196.666667pt;}
.x1a_c00115{left:198.800000pt;}
.x79_c00115{left:200.666667pt;}
.x4b_c00115{left:201.600000pt;}
.x9_c00115{left:203.733333pt;}
.x30_c00115{left:204.800000pt;}
.x11_c00115{left:206.666667pt;}
.x9f_c00115{left:208.800000pt;}
.x39_c00115{left:210.266667pt;}
.x26_c00115{left:212.133333pt;}
.x21_c00115{left:213.866667pt;}
.x12_c00115{left:215.600000pt;}
.x44_c00115{left:217.333333pt;}
.x99_c00115{left:218.666667pt;}
.x4c_c00115{left:220.533333pt;}
.x3c_c00115{left:223.066667pt;}
.x97_c00115{left:224.133333pt;}
.x5f_c00115{left:225.466667pt;}
.x34_c00115{left:226.400000pt;}
.xa1_c00115{left:227.466667pt;}
.x2d_c00115{left:229.066667pt;}
.x3_c00115{left:230.133333pt;}
.x27_c00115{left:231.600000pt;}
.x3d_c00115{left:232.933333pt;}
.x6f_c00115{left:234.000000pt;}
.x22_c00115{left:235.333333pt;}
.x80_c00115{left:236.266667pt;}
.x60_c00115{left:237.333333pt;}
.xae_c00115{left:238.266667pt;}
.x31_c00115{left:242.533333pt;}
.x85_c00115{left:243.600000pt;}
.x13_c00115{left:246.933333pt;}
.x6c_c00115{left:249.600000pt;}
.xa2_c00115{left:250.533333pt;}
.x53_c00115{left:251.466667pt;}
.x4d_c00115{left:253.466667pt;}
.x45_c00115{left:254.400000pt;}
.x57_c00115{left:256.000000pt;}
.x9a_c00115{left:257.733333pt;}
.x28_c00115{left:259.066667pt;}
.x1b_c00115{left:260.266667pt;}
.x81_c00115{left:261.600000pt;}
.xa_c00115{left:263.200000pt;}
.xaf_c00115{left:265.200000pt;}
.x61_c00115{left:266.400000pt;}
.x7d_c00115{left:268.666667pt;}
.x14_c00115{left:270.666667pt;}
.x8d_c00115{left:271.866667pt;}
.x2e_c00115{left:273.866667pt;}
.x70_c00115{left:275.600000pt;}
.x35_c00115{left:276.666667pt;}
.x1c_c00115{left:278.533333pt;}
.x68_c00115{left:280.000000pt;}
.x74_c00115{left:281.600000pt;}
.x4_c00115{left:283.200000pt;}
.x92_c00115{left:284.800000pt;}
.x86_c00115{left:287.733333pt;}
.x98_c00115{left:289.466667pt;}
.x8a_c00115{left:291.333333pt;}
.x1d_c00115{left:292.933333pt;}
.xb_c00115{left:293.866667pt;}
.x54_c00115{left:296.000000pt;}
.x23_c00115{left:297.733333pt;}
.x62_c00115{left:300.533333pt;}
.x29_c00115{left:302.533333pt;}
.x6d_c00115{left:304.000000pt;}
.x40_c00115{left:304.933333pt;}
.x77_c00115{left:306.000000pt;}
.x46_c00115{left:307.200000pt;}
.x8e_c00115{left:312.533333pt;}
.x7f_c00115{left:313.866667pt;}
.xc_c00115{left:315.333333pt;}
.x69_c00115{left:316.533333pt;}
.x15_c00115{left:318.400000pt;}
.x71_c00115{left:319.733333pt;}
.x63_c00115{left:321.066667pt;}
.x9c_c00115{left:322.666667pt;}
.x82_c00115{left:323.733333pt;}
.x9b_c00115{left:325.600000pt;}
.x1e_c00115{left:326.800000pt;}
.x58_c00115{left:328.933333pt;}
.xa0_c00115{left:330.000000pt;}
.x5c_c00115{left:331.333333pt;}
.x16_c00115{left:333.733333pt;}
.x2f_c00115{left:336.000000pt;}
.x32_c00115{left:337.066667pt;}
.x72_c00115{left:338.666667pt;}
.x7e_c00115{left:341.333333pt;}
.xa5_c00115{left:342.266667pt;}
.x5_c00115{left:343.333333pt;}
.x93_c00115{left:345.066667pt;}
.x5b_c00115{left:346.666667pt;}
.xd_c00115{left:348.000000pt;}
.x24_c00115{left:349.600000pt;}
.x87_c00115{left:350.800000pt;}
.x17_c00115{left:352.666667pt;}
.x33_c00115{left:354.000000pt;}
.x47_c00115{left:355.200000pt;}
.xaa_c00115{left:356.133333pt;}
.x4e_c00115{left:358.533333pt;}
.x9d_c00115{left:361.066667pt;}
.x36_c00115{left:362.400000pt;}
.x2a_c00115{left:364.000000pt;}
.x8b_c00115{left:365.600000pt;}
.x1f_c00115{left:366.800000pt;}
.x18_c00115{left:367.733333pt;}
.x88_c00115{left:368.666667pt;}
.x2_c00115{left:369.600000pt;}
.x59_c00115{left:371.600000pt;}
.x4f_c00115{left:373.200000pt;}
.x41_c00115{left:374.666667pt;}
.x37_c00115{left:377.066667pt;}
.x64_c00115{left:378.400000pt;}
.x94_c00115{left:379.333333pt;}
.x48_c00115{left:380.800000pt;}
.x9e_c00115{left:382.533333pt;}
.xa3_c00115{left:384.266667pt;}
.xe_c00115{left:386.133333pt;}
.x55_c00115{left:387.466667pt;}
.xab_c00115{left:389.066667pt;}
.x50_c00115{left:390.133333pt;}
.x75_c00115{left:391.066667pt;}
.x6_c00115{left:392.000000pt;}
.x49_c00115{left:394.266667pt;}
.x95_c00115{left:396.666667pt;}
.x84_c00115{left:398.000000pt;}
.x25_c00115{left:398.933333pt;}
.xf_c00115{left:401.200000pt;}
.xac_c00115{left:403.466667pt;}
.x6a_c00115{left:404.533333pt;}
.x19_c00115{left:405.466667pt;}
.x2b_c00115{left:406.533333pt;}
.x38_c00115{left:410.000000pt;}
.x73_c00115{left:411.333333pt;}
.x5a_c00115{left:412.266667pt;}
.x4a_c00115{left:413.466667pt;}
.x42_c00115{left:414.666667pt;}
.x76_c00115{left:416.400000pt;}
.x6b_c00115{left:418.000000pt;}
.x51_c00115{left:419.600000pt;}
.xad_c00115{left:421.333333pt;}
.x2c_c00115{left:422.800000pt;}
.x7_c00115{left:424.266667pt;}
.x20_c00115{left:429.200000pt;}
.xa6_c00115{left:432.800000pt;}
.x83_c00115{left:435.066667pt;}
.x8f_c00115{left:437.733333pt;}
.x5d_c00115{left:439.866667pt;}
.x52_c00115{left:441.066667pt;}
.x43_c00115{left:445.066667pt;}
.x141_c00115{left:464.266667pt;}
.x136_c00115{left:465.866667pt;}
.x65_c00115{left:467.066667pt;}
.x107_c00115{left:468.133333pt;}
.x120_c00115{left:479.200000pt;}
.x140_c00115{left:480.800000pt;}
.x125_c00115{left:481.866667pt;}
.xed_c00115{left:484.133333pt;}
.xb0_c00115{left:485.466667pt;}
.xd8_c00115{left:488.933333pt;}
.x145_c00115{left:494.666667pt;}
.x121_c00115{left:498.266667pt;}
.xe6_c00115{left:500.533333pt;}
.xb1_c00115{left:502.400000pt;}
.x102_c00115{left:503.333333pt;}
.x114_c00115{left:505.066667pt;}
.x14d_c00115{left:507.066667pt;}
.x148_c00115{left:508.266667pt;}
.x146_c00115{left:509.733333pt;}
.x12c_c00115{left:511.600000pt;}
.xf9_c00115{left:512.933333pt;}
.xf1_c00115{left:514.266667pt;}
.xba_c00115{left:515.333333pt;}
.x126_c00115{left:516.400000pt;}
.x108_c00115{left:519.600000pt;}
.xd3_c00115{left:522.800000pt;}
.x13b_c00115{left:525.200000pt;}
.xfa_c00115{left:526.400000pt;}
.xe3_c00115{left:527.733333pt;}
.xd9_c00115{left:530.533333pt;}
.xfd_c00115{left:532.266667pt;}
.xc2_c00115{left:534.133333pt;}
.xc7_c00115{left:536.133333pt;}
.xce_c00115{left:537.466667pt;}
.xb2_c00115{left:538.533333pt;}
.x122_c00115{left:539.866667pt;}
.x109_c00115{left:541.733333pt;}
.x138_c00115{left:543.066667pt;}
.x14b_c00115{left:545.066667pt;}
.xf2_c00115{left:548.533333pt;}
.x10e_c00115{left:549.466667pt;}
.xe7_c00115{left:550.400000pt;}
.xbb_c00115{left:552.800000pt;}
.xb3_c00115{left:554.533333pt;}
.x119_c00115{left:555.733333pt;}
.xc3_c00115{left:556.800000pt;}
.xda_c00115{left:558.666667pt;}
.xf6_c00115{left:559.733333pt;}
.x110_c00115{left:560.666667pt;}
.xc8_c00115{left:562.000000pt;}
.xbc_c00115{left:563.066667pt;}
.x137_c00115{left:565.066667pt;}
.x134_c00115{left:568.400000pt;}
.xf3_c00115{left:569.333333pt;}
.xee_c00115{left:571.200000pt;}
.xb4_c00115{left:572.400000pt;}
.x13f_c00115{left:573.733333pt;}
.xdb_c00115{left:574.933333pt;}
.xd4_c00115{left:576.800000pt;}
.x149_c00115{left:577.733333pt;}
.x11c_c00115{left:579.066667pt;}
.xcf_c00115{left:580.000000pt;}
.xe8_c00115{left:582.133333pt;}
.x11a_c00115{left:583.866667pt;}
.xe4_c00115{left:585.333333pt;}
.x12e_c00115{left:587.200000pt;}
.xfe_c00115{left:588.533333pt;}
.xdf_c00115{left:590.400000pt;}
.x11d_c00115{left:592.800000pt;}
.xc9_c00115{left:593.733333pt;}
.xf4_c00115{left:596.533333pt;}
.xb5_c00115{left:597.733333pt;}
.x147_c00115{left:599.333333pt;}
.x135_c00115{left:601.066667pt;}
.x139_c00115{left:603.600000pt;}
.xe5_c00115{left:604.800000pt;}
.xbd_c00115{left:606.266667pt;}
.xfb_c00115{left:607.733333pt;}
.x123_c00115{left:609.866667pt;}
.xc4_c00115{left:611.200000pt;}
.xe0_c00115{left:612.533333pt;}
.x10a_c00115{left:613.466667pt;}
.x103_c00115{left:615.733333pt;}
.xca_c00115{left:616.800000pt;}
.x132_c00115{left:617.866667pt;}
.xdc_c00115{left:619.733333pt;}
.x10b_c00115{left:621.466667pt;}
.xe9_c00115{left:623.733333pt;}
.xd0_c00115{left:625.733333pt;}
.x115_c00115{left:627.333333pt;}
.xd5_c00115{left:628.266667pt;}
.xb6_c00115{left:629.466667pt;}
.x111_c00115{left:630.800000pt;}
.x12a_c00115{left:632.133333pt;}
.xbe_c00115{left:633.733333pt;}
.xff_c00115{left:636.933333pt;}
.x116_c00115{left:638.266667pt;}
.x112_c00115{left:640.400000pt;}
.x11b_c00115{left:641.733333pt;}
.x12d_c00115{left:643.333333pt;}
.x104_c00115{left:646.800000pt;}
.xcb_c00115{left:648.800000pt;}
.xdd_c00115{left:650.800000pt;}
.xea_c00115{left:652.800000pt;}
.x10c_c00115{left:654.800000pt;}
.x14c_c00115{left:655.866667pt;}
.x12f_c00115{left:657.866667pt;}
.x127_c00115{left:659.466667pt;}
.xc5_c00115{left:662.133333pt;}
.xf7_c00115{left:663.066667pt;}
.xe1_c00115{left:666.000000pt;}
.x133_c00115{left:667.200000pt;}
.x13c_c00115{left:669.200000pt;}
.xb7_c00115{left:671.733333pt;}
.xcc_c00115{left:672.800000pt;}
.x144_c00115{left:674.933333pt;}
.x100_c00115{left:677.200000pt;}
.x124_c00115{left:680.533333pt;}
.xde_c00115{left:683.466667pt;}
.xf8_c00115{left:685.466667pt;}
.x142_c00115{left:686.533333pt;}
.x11e_c00115{left:688.800000pt;}
.xf5_c00115{left:690.000000pt;}
.x117_c00115{left:691.466667pt;}
.xef_c00115{left:692.800000pt;}
.x105_c00115{left:693.733333pt;}
.x10d_c00115{left:697.333333pt;}
.xe2_c00115{left:698.266667pt;}
.x13d_c00115{left:699.866667pt;}
.x11f_c00115{left:701.600000pt;}
.x106_c00115{left:702.666667pt;}
.xd6_c00115{left:703.733333pt;}
.xeb_c00115{left:704.933333pt;}
.xd1_c00115{left:706.400000pt;}
.xbf_c00115{left:707.600000pt;}
.xfc_c00115{left:709.200000pt;}
.x101_c00115{left:712.400000pt;}
.x128_c00115{left:714.266667pt;}
.xb8_c00115{left:719.066667pt;}
.xf0_c00115{left:720.266667pt;}
.xc0_c00115{left:722.933333pt;}
.x13e_c00115{left:724.533333pt;}
.xcd_c00115{left:726.533333pt;}
.xc6_c00115{left:728.400000pt;}
.x143_c00115{left:731.600000pt;}
.x12b_c00115{left:733.333333pt;}
.x130_c00115{left:735.066667pt;}
.xb9_c00115{left:736.400000pt;}
.xd2_c00115{left:737.466667pt;}
.x14e_c00115{left:738.933333pt;}
.x113_c00115{left:741.200000pt;}
.x14a_c00115{left:742.400000pt;}
.xd7_c00115{left:745.600000pt;}
.x129_c00115{left:746.933333pt;}
.x131_c00115{left:749.733333pt;}
.xc1_c00115{left:751.466667pt;}
.x118_c00115{left:753.200000pt;}
.x10f_c00115{left:755.600000pt;}
.xec_c00115{left:757.733333pt;}
.x13a_c00115{left:759.066667pt;}
}





/* 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_c00116 {
    display:none;
  }
  .loading-indicator_c00116.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00116 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_c00116 { 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_c00116" -> "#page-container .classname_c00116")
 */
.pf_c00116 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00116 { /* 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_c00116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00116 { /* 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_c00116 { /* 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_c00116 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00116 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00116 {overflow:visible;}
  }
}
.c_c00116 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00116 { /* 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_c00116:after { /* webkit #35443 */
  content: '';
}
.t_c00116:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00116 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 */
}
.__c00116 { /* 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_c00116 { /* info for Javascript */
  display:none;
}
.l_c00116 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00116 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00116 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00116: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_c00116 {
    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_c00116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00116.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_c00116 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00116;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.000000;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;}
.m110_c00116{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00116{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mec_c00116{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00116{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m43_c00116{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00116{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00116{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00116{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m79_c00116{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00116{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m64_c00116{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m119_c00116{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00116{transform:matrix(0.087750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00116{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.mad_c00116{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00116{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00116{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m11_c00116{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mae_c00116{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00116{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mc_c00116{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m36_c00116{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00116{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00116{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00116{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00116{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00116{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00116{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m68_c00116{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.maa_c00116{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m81_c00116{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m107_c00116{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m91_c00116{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m39_c00116{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00116{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00116{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.md9_c00116{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m15_c00116{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00116{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00116{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00116{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00116{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m57_c00116{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00116{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00116{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00116{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00116{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m75_c00116{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00116{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.me4_c00116{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m45_c00116{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m113_c00116{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00116{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m19_c00116{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00116{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m10_c00116{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m71_c00116{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m87_c00116{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00116{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m8_c00116{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m30_c00116{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00116{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m104_c00116{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m16_c00116{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m42_c00116{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m118_c00116{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m46_c00116{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m101_c00116{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00116{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.med_c00116{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m28_c00116{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me9_c00116{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m112_c00116{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00116{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00116{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00116{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00116{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00116{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m25_c00116{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00116{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md6_c00116{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00116{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m59_c00116{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00116{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m41_c00116{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m49_c00116{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.maf_c00116{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00116{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.me1_c00116{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m18_c00116{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00116{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00116{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00116{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m23_c00116{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00116{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00116{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me3_c00116{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m52_c00116{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m13_c00116{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00116{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m32_c00116{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md8_c00116{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m55_c00116{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00116{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m58_c00116{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m21_c00116{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m86_c00116{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00116{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m60_c00116{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00116{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m17_c00116{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md_c00116{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00116{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00116{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m84_c00116{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m94_c00116{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m56_c00116{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m83_c00116{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00116{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00116{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m38_c00116{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m40_c00116{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00116{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mba_c00116{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m76_c00116{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md7_c00116{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me7_c00116{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md2_c00116{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m108_c00116{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.me8_c00116{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00116{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m116_c00116{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00116{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00116{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00116{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00116{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00116{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m69_c00116{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md4_c00116{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00116{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00116{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00116{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m103_c00116{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00116{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00116{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00116{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m27_c00116{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m34_c00116{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me_c00116{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m12_c00116{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00116{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m9_c00116{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m35_c00116{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md5_c00116{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me6_c00116{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me5_c00116{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00116{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mb_c00116{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m37_c00116{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m89_c00116{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00116{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00116{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00116{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m44_c00116{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m24_c00116{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00116{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m54_c00116{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m61_c00116{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m51_c00116{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m74_c00116{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00116{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m14_c00116{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00116{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00116{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00116{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md1_c00116{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m31_c00116{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m92_c00116{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00116{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m99_c00116{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m66_c00116{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00116{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00116{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m80_c00116{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00116{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md3_c00116{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mac_c00116{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00116{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m26_c00116{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m88_c00116{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m78_c00116{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00116{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7_c00116{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00116{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00116{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m50_c00116{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00116{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00116{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m22_c00116{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mde_c00116{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00116{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m29_c00116{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00116{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m20_c00116{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m33_c00116{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m73_c00116{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.me0_c00116{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00116{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00116{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00116{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.meb_c00116{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00116{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m67_c00116{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m98_c00116{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mef_c00116{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00116{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00116{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m117_c00116{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00116{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00116{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m53_c00116{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m93_c00116{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00116{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m90_c00116{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00116{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me2_c00116{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00116{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md0_c00116{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m47_c00116{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00116{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m109_c00116{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00116{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00116{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mce_c00116{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00116{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00116{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mff_c00116{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00116{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00116{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m100_c00116{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m63_c00116{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.ma_c00116{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m48_c00116{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00116{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mca_c00116{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00116{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mea_c00116{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m115_c00116{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m85_c00116{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m97_c00116{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m106_c00116{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00116{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m65_c00116{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m77_c00116{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m62_c00116{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00116{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m82_c00116{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m114_c00116{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00116{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mee_c00116{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m96_c00116{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00116{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mda_c00116{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.mf_c00116{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.m72_c00116{transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00116{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m105_c00116{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00116{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m70_c00116{transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00116{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m111_c00116{transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00116{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00116{transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);}
.m102_c00116{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.mab_c00116{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m95_c00116{transform:matrix(0.608000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608000,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls0_c00116{letter-spacing:0.000000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{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__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00116{word-spacing:-0.757576px;}
.ws9_c00116{word-spacing:0.000000px;}
.ws1_c00116{word-spacing:8.896552px;}
.ws0_c00116{word-spacing:9.157895px;}
.ws7_c00116{word-spacing:24.491803px;}
.ws6_c00116{word-spacing:34.891720px;}
.ws8_c00116{word-spacing:49.414013px;}
.ws3_c00116{word-spacing:61.817694px;}
.ws4_c00116{word-spacing:1007.662198px;}
.ws2_c00116{word-spacing:1066.125000px;}
.fc0_c00116{color:transparent;}
.fs4_c00116{font-size:24.000000px;}
.fs5_c00116{font-size:30.000000px;}
.fs7_c00116{font-size:54.000000px;}
.fs6_c00116{font-size:60.000000px;}
.fs1_c00116{font-size:66.000000px;}
.fs2_c00116{font-size:72.000000px;}
.fs3_c00116{font-size:78.000000px;}
.fs0_c00116{font-size:84.000000px;}
.y0_c00116{bottom:0.000000px;}
.y3c_c00116{bottom:179.700000px;}
.y3b_c00116{bottom:205.650000px;}
.y3a_c00116{bottom:206.700000px;}
.y39_c00116{bottom:219.750000px;}
.y38_c00116{bottom:238.500000px;}
.y37_c00116{bottom:256.200000px;}
.y36_c00116{bottom:273.900000px;}
.y35_c00116{bottom:291.900000px;}
.y34_c00116{bottom:309.450000px;}
.y33_c00116{bottom:340.050000px;}
.y32_c00116{bottom:363.150000px;}
.y31_c00116{bottom:385.500000px;}
.y2e_c00116{bottom:403.200000px;}
.y30_c00116{bottom:406.800000px;}
.y2d_c00116{bottom:421.200000px;}
.y2f_c00116{bottom:429.150000px;}
.y2c_c00116{bottom:438.900000px;}
.y2b_c00116{bottom:456.450000px;}
.y2a_c00116{bottom:474.450000px;}
.y29_c00116{bottom:492.450000px;}
.y24_c00116{bottom:510.300000px;}
.y28_c00116{bottom:514.050000px;}
.y23_c00116{bottom:528.000000px;}
.y27_c00116{bottom:532.050000px;}
.y22_c00116{bottom:546.000000px;}
.y26_c00116{bottom:554.400000px;}
.y21_c00116{bottom:563.700000px;}
.y25_c00116{bottom:572.100000px;}
.y20_c00116{bottom:581.700000px;}
.y1f_c00116{bottom:599.400000px;}
.y1e_c00116{bottom:617.700000px;}
.y1d_c00116{bottom:638.250000px;}
.y1c_c00116{bottom:659.850000px;}
.y1b_c00116{bottom:673.500000px;}
.y1a_c00116{bottom:685.050000px;}
.y19_c00116{bottom:705.450000px;}
.y18_c00116{bottom:720.600000px;}
.y17_c00116{bottom:738.300000px;}
.y16_c00116{bottom:742.650000px;}
.y15_c00116{bottom:747.300000px;}
.y14_c00116{bottom:768.900000px;}
.y13_c00116{bottom:787.650000px;}
.y12_c00116{bottom:809.550000px;}
.y11_c00116{bottom:822.900000px;}
.y10_c00116{bottom:844.950000px;}
.yf_c00116{bottom:857.250000px;}
.ye_c00116{bottom:862.650000px;}
.yd_c00116{bottom:897.600000px;}
.yc_c00116{bottom:924.300000px;}
.yb_c00116{bottom:942.300000px;}
.ya_c00116{bottom:960.000000px;}
.y9_c00116{bottom:978.000000px;}
.y8_c00116{bottom:1003.950000px;}
.y7_c00116{bottom:1022.700000px;}
.y6_c00116{bottom:1040.400000px;}
.y5_c00116{bottom:1058.400000px;}
.y4_c00116{bottom:1076.400000px;}
.y3_c00116{bottom:1094.400000px;}
.y2_c00116{bottom:1112.100000px;}
.y1_c00116{bottom:1138.350000px;}
.h6_c00116{height:24.000000px;}
.h7_c00116{height:30.000000px;}
.h9_c00116{height:54.000000px;}
.h8_c00116{height:60.000000px;}
.h3_c00116{height:66.000000px;}
.h4_c00116{height:72.000000px;}
.h5_c00116{height:78.000000px;}
.h2_c00116{height:84.000000px;}
.h1_c00116{height:1266.000000px;}
.h0_c00116{height:1266.120025px;}
.w1_c00116{width:953.250000px;}
.w0_c00116{width:953.280030px;}
.x0_c00116{left:0.000000px;}
.x10a_c00116{left:49.350000px;}
.x12f_c00116{left:67.650000px;}
.x131_c00116{left:70.200000px;}
.x105_c00116{left:72.000000px;}
.x10b_c00116{left:73.050000px;}
.xcd_c00116{left:74.100000px;}
.xac_c00116{left:75.300000px;}
.x80_c00116{left:76.500000px;}
.x57_c00116{left:77.550000px;}
.x10c_c00116{left:82.350000px;}
.x82_c00116{left:87.750000px;}
.x11b_c00116{left:89.550000px;}
.xfb_c00116{left:90.600000px;}
.xdb_c00116{left:91.650000px;}
.x8f_c00116{left:92.850000px;}
.xb2_c00116{left:93.900000px;}
.x5e_c00116{left:95.400000px;}
.x14_c00116{left:97.500000px;}
.x12d_c00116{left:105.150000px;}
.x113_c00116{left:110.100000px;}
.xd1_c00116{left:111.300000px;}
.x10d_c00116{left:114.450000px;}
.x3_c00116{left:115.950000px;}
.xe0_c00116{left:117.300000px;}
.x7f_c00116{left:118.650000px;}
.x83_c00116{left:120.450000px;}
.xf1_c00116{left:121.650000px;}
.xdc_c00116{left:123.300000px;}
.x81_c00116{left:124.350000px;}
.x4d_c00116{left:129.150000px;}
.x3f_c00116{left:130.950000px;}
.x15_c00116{left:132.450000px;}
.x24_c00116{left:133.500000px;}
.xa2_c00116{left:135.450000px;}
.x8b_c00116{left:137.550000px;}
.x58_c00116{left:140.850000px;}
.x11c_c00116{left:142.800000px;}
.x40_c00116{left:143.850000px;}
.x16_c00116{left:146.100000px;}
.x10e_c00116{left:148.650000px;}
.x32_c00116{left:150.000000px;}
.xbd_c00116{left:152.850000px;}
.xb3_c00116{left:155.400000px;}
.x5f_c00116{left:157.350000px;}
.x114_c00116{left:158.400000px;}
.x78_c00116{left:159.600000px;}
.xd0_c00116{left:160.800000px;}
.x67_c00116{left:161.850000px;}
.x10f_c00116{left:164.550000px;}
.x84_c00116{left:165.750000px;}
.x79_c00116{left:168.300000px;}
.xfa_c00116{left:169.500000px;}
.x101_c00116{left:171.300000px;}
.x25_c00116{left:172.350000px;}
.x4_c00116{left:175.350000px;}
.xce_c00116{left:178.200000px;}
.x60_c00116{left:179.250000px;}
.x41_c00116{left:181.650000px;}
.x72_c00116{left:183.150000px;}
.xd3_c00116{left:184.350000px;}
.x33_c00116{left:185.700000px;}
.x11d_c00116{left:187.050000px;}
.xfc_c00116{left:188.550000px;}
.x121_c00116{left:190.050000px;}
.xed_c00116{left:191.400000px;}
.x132_c00116{left:193.650000px;}
.x17_c00116{left:194.700000px;}
.x73_c00116{left:195.750000px;}
.x5_c00116{left:197.250000px;}
.x95_c00116{left:200.250000px;}
.x90_c00116{left:201.900000px;}
.xf5_c00116{left:203.100000px;}
.x42_c00116{left:204.300000px;}
.x7a_c00116{left:207.150000px;}
.x34_c00116{left:209.400000px;}
.xd7_c00116{left:211.950000px;}
.xbe_c00116{left:213.300000px;}
.x85_c00116{left:215.400000px;}
.x18_c00116{left:218.100000px;}
.xa3_c00116{left:221.550000px;}
.x4e_c00116{left:224.250000px;}
.x59_c00116{left:226.500000px;}
.xbf_c00116{left:227.700000px;}
.x86_c00116{left:230.550000px;}
.x43_c00116{left:233.100000px;}
.x91_c00116{left:235.350000px;}
.x26_c00116{left:238.200000px;}
.x115_c00116{left:239.400000px;}
.xee_c00116{left:240.750000px;}
.x61_c00116{left:242.550000px;}
.xb4_c00116{left:243.600000px;}
.x19_c00116{left:248.400000px;}
.x68_c00116{left:249.600000px;}
.x133_c00116{left:252.300000px;}
.x96_c00116{left:255.000000px;}
.x35_c00116{left:258.300000px;}
.xa4_c00116{left:260.100000px;}
.x6_c00116{left:262.050000px;}
.xb5_c00116{left:263.700000px;}
.xc0_c00116{left:265.500000px;}
.xe1_c00116{left:266.700000px;}
.xdd_c00116{left:268.650000px;}
.x9e_c00116{left:269.850000px;}
.x1a_c00116{left:271.800000px;}
.x5a_c00116{left:275.400000px;}
.xd8_c00116{left:277.500000px;}
.xc1_c00116{left:279.150000px;}
.x7b_c00116{left:280.200000px;}
.x27_c00116{left:281.400000px;}
.x97_c00116{left:284.100000px;}
.x7_c00116{left:286.200000px;}
.x87_c00116{left:288.150000px;}
.x7c_c00116{left:291.000000px;}
.x69_c00116{left:292.800000px;}
.xfd_c00116{left:294.450000px;}
.x74_c00116{left:296.850000px;}
.xa5_c00116{left:297.900000px;}
.x5b_c00116{left:299.550000px;}
.xf6_c00116{left:301.050000px;}
.x92_c00116{left:303.450000px;}
.x9f_c00116{left:304.800000px;}
.xda_c00116{left:306.000000px;}
.x116_c00116{left:308.550000px;}
.xb6_c00116{left:310.500000px;}
.x44_c00116{left:312.750000px;}
.x7d_c00116{left:315.150000px;}
.x28_c00116{left:319.200000px;}
.x11e_c00116{left:320.400000px;}
.x8_c00116{left:322.500000px;}
.x1_c00116{left:324.000000px;}
.xa6_c00116{left:325.200000px;}
.x8c_c00116{left:328.350000px;}
.xe2_c00116{left:330.150000px;}
.x9_c00116{left:331.800000px;}
.x36_c00116{left:333.900000px;}
.xde_c00116{left:336.300000px;}
.x88_c00116{left:337.800000px;}
.xc2_c00116{left:340.350000px;}
.xa7_c00116{left:344.700000px;}
.x93_c00116{left:346.950000px;}
.x45_c00116{left:348.750000px;}
.xad_c00116{left:350.400000px;}
.x75_c00116{left:351.600000px;}
.x11f_c00116{left:356.700000px;}
.xd9_c00116{left:357.750000px;}
.x29_c00116{left:358.800000px;}
.x5c_c00116{left:361.800000px;}
.xf7_c00116{left:365.100000px;}
.xdf_c00116{left:366.900000px;}
.xa_c00116{left:368.100000px;}
.x37_c00116{left:369.900000px;}
.x62_c00116{left:373.200000px;}
.x122_c00116{left:375.750000px;}
.x89_c00116{left:377.700000px;}
.x98_c00116{left:379.200000px;}
.xa0_c00116{left:382.500000px;}
.x1b_c00116{left:383.700000px;}
.x6a_c00116{left:385.650000px;}
.x76_c00116{left:388.650000px;}
.xb7_c00116{left:389.700000px;}
.xb_c00116{left:393.000000px;}
.xc3_c00116{left:394.050000px;}
.x2a_c00116{left:395.100000px;}
.x8a_c00116{left:397.800000px;}
.x77_c00116{left:399.150000px;}
.xa8_c00116{left:402.300000px;}
.x99_c00116{left:404.100000px;}
.xe3_c00116{left:405.750000px;}
.x130_c00116{left:429.150000px;}
.x106_c00116{left:431.850000px;}
.x9a_c00116{left:433.650000px;}
.x7e_c00116{left:435.750000px;}
.xc_c00116{left:439.500000px;}
.x107_c00116{left:440.550000px;}
.x123_c00116{left:446.250000px;}
.x117_c00116{left:447.900000px;}
.xe7_c00116{left:448.950000px;}
.xc4_c00116{left:450.600000px;}
.x6b_c00116{left:454.050000px;}
.x4f_c00116{left:456.000000px;}
.x1c_c00116{left:457.200000px;}
.xef_c00116{left:466.200000px;}
.xd2_c00116{left:467.550000px;}
.xa1_c00116{left:469.200000px;}
.x5d_c00116{left:471.900000px;}
.x63_c00116{left:472.950000px;}
.x12c_c00116{left:474.000000px;}
.x110_c00116{left:476.400000px;}
.x2b_c00116{left:481.500000px;}
.xb8_c00116{left:484.350000px;}
.xf8_c00116{left:490.350000px;}
.x46_c00116{left:492.000000px;}
.x50_c00116{left:494.850000px;}
.x38_c00116{left:498.300000px;}
.x1d_c00116{left:500.100000px;}
.xe4_c00116{left:501.450000px;}
.x47_c00116{left:504.300000px;}
.x108_c00116{left:505.800000px;}
.x102_c00116{left:506.850000px;}
.x126_c00116{left:507.900000px;}
.xe8_c00116{left:509.100000px;}
.x6c_c00116{left:510.150000px;}
.xfe_c00116{left:511.200000px;}
.xb9_c00116{left:516.750000px;}
.xeb_c00116{left:519.750000px;}
.x94_c00116{left:522.600000px;}
.x51_c00116{left:523.650000px;}
.xd_c00116{left:524.850000px;}
.x39_c00116{left:526.800000px;}
.xd4_c00116{left:528.450000px;}
.x8d_c00116{left:529.950000px;}
.x1e_c00116{left:531.000000px;}
.x52_c00116{left:532.950000px;}
.x48_c00116{left:535.950000px;}
.x2c_c00116{left:537.000000px;}
.xd5_c00116{left:539.550000px;}
.xba_c00116{left:541.950000px;}
.x6d_c00116{left:543.300000px;}
.xec_c00116{left:545.250000px;}
.x8e_c00116{left:549.450000px;}
.x1f_c00116{left:550.500000px;}
.x127_c00116{left:551.850000px;}
.xc5_c00116{left:553.500000px;}
.xc7_c00116{left:555.150000px;}
.x109_c00116{left:556.950000px;}
.x3a_c00116{left:561.300000px;}
.xff_c00116{left:562.950000px;}
.xc8_c00116{left:565.650000px;}
.x12e_c00116{left:566.700000px;}
.x53_c00116{left:567.900000px;}
.x103_c00116{left:570.600000px;}
.xe_c00116{left:573.450000px;}
.x128_c00116{left:577.800000px;}
.xc6_c00116{left:579.750000px;}
.x2d_c00116{left:580.950000px;}
.xf2_c00116{left:582.450000px;}
.x3b_c00116{left:585.000000px;}
.x49_c00116{left:589.200000px;}
.xf0_c00116{left:590.850000px;}
.x20_c00116{left:597.000000px;}
.xf9_c00116{left:599.400000px;}
.xae_c00116{left:600.900000px;}
.x54_c00116{left:604.350000px;}
.x124_c00116{left:607.500000px;}
.xaf_c00116{left:610.950000px;}
.xc9_c00116{left:613.500000px;}
.x104_c00116{left:615.600000px;}
.x6e_c00116{left:616.800000px;}
.x2e_c00116{left:618.450000px;}
.xf_c00116{left:620.550000px;}
.x64_c00116{left:623.850000px;}
.xa9_c00116{left:626.550000px;}
.x10_c00116{left:629.250000px;}
.x3c_c00116{left:631.800000px;}
.x21_c00116{left:633.300000px;}
.x100_c00116{left:640.800000px;}
.x6f_c00116{left:642.300000px;}
.x120_c00116{left:644.550000px;}
.x55_c00116{left:646.500000px;}
.x9b_c00116{left:648.450000px;}
.x2f_c00116{left:650.100000px;}
.x4a_c00116{left:652.950000px;}
.xe5_c00116{left:656.550000px;}
.xf3_c00116{left:658.800000px;}
.x11_c00116{left:660.150000px;}
.x65_c00116{left:661.950000px;}
.x118_c00116{left:663.450000px;}
.x22_c00116{left:664.950000px;}
.x4b_c00116{left:672.000000px;}
.xb0_c00116{left:675.300000px;}
.x70_c00116{left:677.550000px;}
.xcf_c00116{left:678.750000px;}
.x56_c00116{left:682.800000px;}
.xb1_c00116{left:686.400000px;}
.x129_c00116{left:688.050000px;}
.xca_c00116{left:690.150000px;}
.x125_c00116{left:691.200000px;}
.x9c_c00116{left:693.750000px;}
.x119_c00116{left:694.800000px;}
.x3d_c00116{left:695.850000px;}
.x4c_c00116{left:698.250000px;}
.xcb_c00116{left:702.750000px;}
.x111_c00116{left:707.850000px;}
.xaa_c00116{left:709.200000px;}
.x12_c00116{left:712.050000px;}
.xe9_c00116{left:713.400000px;}
.x30_c00116{left:717.450000px;}
.x11a_c00116{left:721.800000px;}
.xea_c00116{left:723.150000px;}
.xd6_c00116{left:724.200000px;}
.xf4_c00116{left:730.050000px;}
.x9d_c00116{left:731.250000px;}
.xab_c00116{left:732.300000px;}
.x12a_c00116{left:734.100000px;}
.x31_c00116{left:735.450000px;}
.x13_c00116{left:737.550000px;}
.x66_c00116{left:739.350000px;}
.xbb_c00116{left:740.700000px;}
.x23_c00116{left:742.650000px;}
.x3e_c00116{left:747.300000px;}
.x2_c00116{left:748.800000px;}
.x71_c00116{left:751.650000px;}
.xe6_c00116{left:753.450000px;}
.x12b_c00116{left:754.950000px;}
.xbc_c00116{left:756.900000px;}
.x112_c00116{left:760.350000px;}
.xcc_c00116{left:763.650000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ws5_c00116{word-spacing:-0.673401pt;}
.ws9_c00116{word-spacing:0.000000pt;}
.ws1_c00116{word-spacing:7.908046pt;}
.ws0_c00116{word-spacing:8.140351pt;}
.ws7_c00116{word-spacing:21.770492pt;}
.ws6_c00116{word-spacing:31.014862pt;}
.ws8_c00116{word-spacing:43.923567pt;}
.ws3_c00116{word-spacing:54.949062pt;}
.ws4_c00116{word-spacing:895.699732pt;}
.ws2_c00116{word-spacing:947.666667pt;}
.fs4_c00116{font-size:21.333333pt;}
.fs5_c00116{font-size:26.666667pt;}
.fs7_c00116{font-size:48.000000pt;}
.fs6_c00116{font-size:53.333333pt;}
.fs1_c00116{font-size:58.666667pt;}
.fs2_c00116{font-size:64.000000pt;}
.fs3_c00116{font-size:69.333333pt;}
.fs0_c00116{font-size:74.666667pt;}
.y0_c00116{bottom:0.000000pt;}
.y3c_c00116{bottom:159.733333pt;}
.y3b_c00116{bottom:182.800000pt;}
.y3a_c00116{bottom:183.733333pt;}
.y39_c00116{bottom:195.333333pt;}
.y38_c00116{bottom:212.000000pt;}
.y37_c00116{bottom:227.733333pt;}
.y36_c00116{bottom:243.466667pt;}
.y35_c00116{bottom:259.466667pt;}
.y34_c00116{bottom:275.066667pt;}
.y33_c00116{bottom:302.266667pt;}
.y32_c00116{bottom:322.800000pt;}
.y31_c00116{bottom:342.666667pt;}
.y2e_c00116{bottom:358.400000pt;}
.y30_c00116{bottom:361.600000pt;}
.y2d_c00116{bottom:374.400000pt;}
.y2f_c00116{bottom:381.466667pt;}
.y2c_c00116{bottom:390.133333pt;}
.y2b_c00116{bottom:405.733333pt;}
.y2a_c00116{bottom:421.733333pt;}
.y29_c00116{bottom:437.733333pt;}
.y24_c00116{bottom:453.600000pt;}
.y28_c00116{bottom:456.933333pt;}
.y23_c00116{bottom:469.333333pt;}
.y27_c00116{bottom:472.933333pt;}
.y22_c00116{bottom:485.333333pt;}
.y26_c00116{bottom:492.800000pt;}
.y21_c00116{bottom:501.066667pt;}
.y25_c00116{bottom:508.533333pt;}
.y20_c00116{bottom:517.066667pt;}
.y1f_c00116{bottom:532.800000pt;}
.y1e_c00116{bottom:549.066667pt;}
.y1d_c00116{bottom:567.333333pt;}
.y1c_c00116{bottom:586.533333pt;}
.y1b_c00116{bottom:598.666667pt;}
.y1a_c00116{bottom:608.933333pt;}
.y19_c00116{bottom:627.066667pt;}
.y18_c00116{bottom:640.533333pt;}
.y17_c00116{bottom:656.266667pt;}
.y16_c00116{bottom:660.133333pt;}
.y15_c00116{bottom:664.266667pt;}
.y14_c00116{bottom:683.466667pt;}
.y13_c00116{bottom:700.133333pt;}
.y12_c00116{bottom:719.600000pt;}
.y11_c00116{bottom:731.466667pt;}
.y10_c00116{bottom:751.066667pt;}
.yf_c00116{bottom:762.000000pt;}
.ye_c00116{bottom:766.800000pt;}
.yd_c00116{bottom:797.866667pt;}
.yc_c00116{bottom:821.600000pt;}
.yb_c00116{bottom:837.600000pt;}
.ya_c00116{bottom:853.333333pt;}
.y9_c00116{bottom:869.333333pt;}
.y8_c00116{bottom:892.400000pt;}
.y7_c00116{bottom:909.066667pt;}
.y6_c00116{bottom:924.800000pt;}
.y5_c00116{bottom:940.800000pt;}
.y4_c00116{bottom:956.800000pt;}
.y3_c00116{bottom:972.800000pt;}
.y2_c00116{bottom:988.533333pt;}
.y1_c00116{bottom:1011.866667pt;}
.h6_c00116{height:21.333333pt;}
.h7_c00116{height:26.666667pt;}
.h9_c00116{height:48.000000pt;}
.h8_c00116{height:53.333333pt;}
.h3_c00116{height:58.666667pt;}
.h4_c00116{height:64.000000pt;}
.h5_c00116{height:69.333333pt;}
.h2_c00116{height:74.666667pt;}
.h1_c00116{height:1125.333333pt;}
.h0_c00116{height:1125.440023pt;}
.w1_c00116{width:847.333333pt;}
.w0_c00116{width:847.360027pt;}
.x0_c00116{left:0.000000pt;}
.x10a_c00116{left:43.866667pt;}
.x12f_c00116{left:60.133333pt;}
.x131_c00116{left:62.400000pt;}
.x105_c00116{left:64.000000pt;}
.x10b_c00116{left:64.933333pt;}
.xcd_c00116{left:65.866667pt;}
.xac_c00116{left:66.933333pt;}
.x80_c00116{left:68.000000pt;}
.x57_c00116{left:68.933333pt;}
.x10c_c00116{left:73.200000pt;}
.x82_c00116{left:78.000000pt;}
.x11b_c00116{left:79.600000pt;}
.xfb_c00116{left:80.533333pt;}
.xdb_c00116{left:81.466667pt;}
.x8f_c00116{left:82.533333pt;}
.xb2_c00116{left:83.466667pt;}
.x5e_c00116{left:84.800000pt;}
.x14_c00116{left:86.666667pt;}
.x12d_c00116{left:93.466667pt;}
.x113_c00116{left:97.866667pt;}
.xd1_c00116{left:98.933333pt;}
.x10d_c00116{left:101.733333pt;}
.x3_c00116{left:103.066667pt;}
.xe0_c00116{left:104.266667pt;}
.x7f_c00116{left:105.466667pt;}
.x83_c00116{left:107.066667pt;}
.xf1_c00116{left:108.133333pt;}
.xdc_c00116{left:109.600000pt;}
.x81_c00116{left:110.533333pt;}
.x4d_c00116{left:114.800000pt;}
.x3f_c00116{left:116.400000pt;}
.x15_c00116{left:117.733333pt;}
.x24_c00116{left:118.666667pt;}
.xa2_c00116{left:120.400000pt;}
.x8b_c00116{left:122.266667pt;}
.x58_c00116{left:125.200000pt;}
.x11c_c00116{left:126.933333pt;}
.x40_c00116{left:127.866667pt;}
.x16_c00116{left:129.866667pt;}
.x10e_c00116{left:132.133333pt;}
.x32_c00116{left:133.333333pt;}
.xbd_c00116{left:135.866667pt;}
.xb3_c00116{left:138.133333pt;}
.x5f_c00116{left:139.866667pt;}
.x114_c00116{left:140.800000pt;}
.x78_c00116{left:141.866667pt;}
.xd0_c00116{left:142.933333pt;}
.x67_c00116{left:143.866667pt;}
.x10f_c00116{left:146.266667pt;}
.x84_c00116{left:147.333333pt;}
.x79_c00116{left:149.600000pt;}
.xfa_c00116{left:150.666667pt;}
.x101_c00116{left:152.266667pt;}
.x25_c00116{left:153.200000pt;}
.x4_c00116{left:155.866667pt;}
.xce_c00116{left:158.400000pt;}
.x60_c00116{left:159.333333pt;}
.x41_c00116{left:161.466667pt;}
.x72_c00116{left:162.800000pt;}
.xd3_c00116{left:163.866667pt;}
.x33_c00116{left:165.066667pt;}
.x11d_c00116{left:166.266667pt;}
.xfc_c00116{left:167.600000pt;}
.x121_c00116{left:168.933333pt;}
.xed_c00116{left:170.133333pt;}
.x132_c00116{left:172.133333pt;}
.x17_c00116{left:173.066667pt;}
.x73_c00116{left:174.000000pt;}
.x5_c00116{left:175.333333pt;}
.x95_c00116{left:178.000000pt;}
.x90_c00116{left:179.466667pt;}
.xf5_c00116{left:180.533333pt;}
.x42_c00116{left:181.600000pt;}
.x7a_c00116{left:184.133333pt;}
.x34_c00116{left:186.133333pt;}
.xd7_c00116{left:188.400000pt;}
.xbe_c00116{left:189.600000pt;}
.x85_c00116{left:191.466667pt;}
.x18_c00116{left:193.866667pt;}
.xa3_c00116{left:196.933333pt;}
.x4e_c00116{left:199.333333pt;}
.x59_c00116{left:201.333333pt;}
.xbf_c00116{left:202.400000pt;}
.x86_c00116{left:204.933333pt;}
.x43_c00116{left:207.200000pt;}
.x91_c00116{left:209.200000pt;}
.x26_c00116{left:211.733333pt;}
.x115_c00116{left:212.800000pt;}
.xee_c00116{left:214.000000pt;}
.x61_c00116{left:215.600000pt;}
.xb4_c00116{left:216.533333pt;}
.x19_c00116{left:220.800000pt;}
.x68_c00116{left:221.866667pt;}
.x133_c00116{left:224.266667pt;}
.x96_c00116{left:226.666667pt;}
.x35_c00116{left:229.600000pt;}
.xa4_c00116{left:231.200000pt;}
.x6_c00116{left:232.933333pt;}
.xb5_c00116{left:234.400000pt;}
.xc0_c00116{left:236.000000pt;}
.xe1_c00116{left:237.066667pt;}
.xdd_c00116{left:238.800000pt;}
.x9e_c00116{left:239.866667pt;}
.x1a_c00116{left:241.600000pt;}
.x5a_c00116{left:244.800000pt;}
.xd8_c00116{left:246.666667pt;}
.xc1_c00116{left:248.133333pt;}
.x7b_c00116{left:249.066667pt;}
.x27_c00116{left:250.133333pt;}
.x97_c00116{left:252.533333pt;}
.x7_c00116{left:254.400000pt;}
.x87_c00116{left:256.133333pt;}
.x7c_c00116{left:258.666667pt;}
.x69_c00116{left:260.266667pt;}
.xfd_c00116{left:261.733333pt;}
.x74_c00116{left:263.866667pt;}
.xa5_c00116{left:264.800000pt;}
.x5b_c00116{left:266.266667pt;}
.xf6_c00116{left:267.600000pt;}
.x92_c00116{left:269.733333pt;}
.x9f_c00116{left:270.933333pt;}
.xda_c00116{left:272.000000pt;}
.x116_c00116{left:274.266667pt;}
.xb6_c00116{left:276.000000pt;}
.x44_c00116{left:278.000000pt;}
.x7d_c00116{left:280.133333pt;}
.x28_c00116{left:283.733333pt;}
.x11e_c00116{left:284.800000pt;}
.x8_c00116{left:286.666667pt;}
.x1_c00116{left:288.000000pt;}
.xa6_c00116{left:289.066667pt;}
.x8c_c00116{left:291.866667pt;}
.xe2_c00116{left:293.466667pt;}
.x9_c00116{left:294.933333pt;}
.x36_c00116{left:296.800000pt;}
.xde_c00116{left:298.933333pt;}
.x88_c00116{left:300.266667pt;}
.xc2_c00116{left:302.533333pt;}
.xa7_c00116{left:306.400000pt;}
.x93_c00116{left:308.400000pt;}
.x45_c00116{left:310.000000pt;}
.xad_c00116{left:311.466667pt;}
.x75_c00116{left:312.533333pt;}
.x11f_c00116{left:317.066667pt;}
.xd9_c00116{left:318.000000pt;}
.x29_c00116{left:318.933333pt;}
.x5c_c00116{left:321.600000pt;}
.xf7_c00116{left:324.533333pt;}
.xdf_c00116{left:326.133333pt;}
.xa_c00116{left:327.200000pt;}
.x37_c00116{left:328.800000pt;}
.x62_c00116{left:331.733333pt;}
.x122_c00116{left:334.000000pt;}
.x89_c00116{left:335.733333pt;}
.x98_c00116{left:337.066667pt;}
.xa0_c00116{left:340.000000pt;}
.x1b_c00116{left:341.066667pt;}
.x6a_c00116{left:342.800000pt;}
.x76_c00116{left:345.466667pt;}
.xb7_c00116{left:346.400000pt;}
.xb_c00116{left:349.333333pt;}
.xc3_c00116{left:350.266667pt;}
.x2a_c00116{left:351.200000pt;}
.x8a_c00116{left:353.600000pt;}
.x77_c00116{left:354.800000pt;}
.xa8_c00116{left:357.600000pt;}
.x99_c00116{left:359.200000pt;}
.xe3_c00116{left:360.666667pt;}
.x130_c00116{left:381.466667pt;}
.x106_c00116{left:383.866667pt;}
.x9a_c00116{left:385.466667pt;}
.x7e_c00116{left:387.333333pt;}
.xc_c00116{left:390.666667pt;}
.x107_c00116{left:391.600000pt;}
.x123_c00116{left:396.666667pt;}
.x117_c00116{left:398.133333pt;}
.xe7_c00116{left:399.066667pt;}
.xc4_c00116{left:400.533333pt;}
.x6b_c00116{left:403.600000pt;}
.x4f_c00116{left:405.333333pt;}
.x1c_c00116{left:406.400000pt;}
.xef_c00116{left:414.400000pt;}
.xd2_c00116{left:415.600000pt;}
.xa1_c00116{left:417.066667pt;}
.x5d_c00116{left:419.466667pt;}
.x63_c00116{left:420.400000pt;}
.x12c_c00116{left:421.333333pt;}
.x110_c00116{left:423.466667pt;}
.x2b_c00116{left:428.000000pt;}
.xb8_c00116{left:430.533333pt;}
.xf8_c00116{left:435.866667pt;}
.x46_c00116{left:437.333333pt;}
.x50_c00116{left:439.866667pt;}
.x38_c00116{left:442.933333pt;}
.x1d_c00116{left:444.533333pt;}
.xe4_c00116{left:445.733333pt;}
.x47_c00116{left:448.266667pt;}
.x108_c00116{left:449.600000pt;}
.x102_c00116{left:450.533333pt;}
.x126_c00116{left:451.466667pt;}
.xe8_c00116{left:452.533333pt;}
.x6c_c00116{left:453.466667pt;}
.xfe_c00116{left:454.400000pt;}
.xb9_c00116{left:459.333333pt;}
.xeb_c00116{left:462.000000pt;}
.x94_c00116{left:464.533333pt;}
.x51_c00116{left:465.466667pt;}
.xd_c00116{left:466.533333pt;}
.x39_c00116{left:468.266667pt;}
.xd4_c00116{left:469.733333pt;}
.x8d_c00116{left:471.066667pt;}
.x1e_c00116{left:472.000000pt;}
.x52_c00116{left:473.733333pt;}
.x48_c00116{left:476.400000pt;}
.x2c_c00116{left:477.333333pt;}
.xd5_c00116{left:479.600000pt;}
.xba_c00116{left:481.733333pt;}
.x6d_c00116{left:482.933333pt;}
.xec_c00116{left:484.666667pt;}
.x8e_c00116{left:488.400000pt;}
.x1f_c00116{left:489.333333pt;}
.x127_c00116{left:490.533333pt;}
.xc5_c00116{left:492.000000pt;}
.xc7_c00116{left:493.466667pt;}
.x109_c00116{left:495.066667pt;}
.x3a_c00116{left:498.933333pt;}
.xff_c00116{left:500.400000pt;}
.xc8_c00116{left:502.800000pt;}
.x12e_c00116{left:503.733333pt;}
.x53_c00116{left:504.800000pt;}
.x103_c00116{left:507.200000pt;}
.xe_c00116{left:509.733333pt;}
.x128_c00116{left:513.600000pt;}
.xc6_c00116{left:515.333333pt;}
.x2d_c00116{left:516.400000pt;}
.xf2_c00116{left:517.733333pt;}
.x3b_c00116{left:520.000000pt;}
.x49_c00116{left:523.733333pt;}
.xf0_c00116{left:525.200000pt;}
.x20_c00116{left:530.666667pt;}
.xf9_c00116{left:532.800000pt;}
.xae_c00116{left:534.133333pt;}
.x54_c00116{left:537.200000pt;}
.x124_c00116{left:540.000000pt;}
.xaf_c00116{left:543.066667pt;}
.xc9_c00116{left:545.333333pt;}
.x104_c00116{left:547.200000pt;}
.x6e_c00116{left:548.266667pt;}
.x2e_c00116{left:549.733333pt;}
.xf_c00116{left:551.600000pt;}
.x64_c00116{left:554.533333pt;}
.xa9_c00116{left:556.933333pt;}
.x10_c00116{left:559.333333pt;}
.x3c_c00116{left:561.600000pt;}
.x21_c00116{left:562.933333pt;}
.x100_c00116{left:569.600000pt;}
.x6f_c00116{left:570.933333pt;}
.x120_c00116{left:572.933333pt;}
.x55_c00116{left:574.666667pt;}
.x9b_c00116{left:576.400000pt;}
.x2f_c00116{left:577.866667pt;}
.x4a_c00116{left:580.400000pt;}
.xe5_c00116{left:583.600000pt;}
.xf3_c00116{left:585.600000pt;}
.x11_c00116{left:586.800000pt;}
.x65_c00116{left:588.400000pt;}
.x118_c00116{left:589.733333pt;}
.x22_c00116{left:591.066667pt;}
.x4b_c00116{left:597.333333pt;}
.xb0_c00116{left:600.266667pt;}
.x70_c00116{left:602.266667pt;}
.xcf_c00116{left:603.333333pt;}
.x56_c00116{left:606.933333pt;}
.xb1_c00116{left:610.133333pt;}
.x129_c00116{left:611.600000pt;}
.xca_c00116{left:613.466667pt;}
.x125_c00116{left:614.400000pt;}
.x9c_c00116{left:616.666667pt;}
.x119_c00116{left:617.600000pt;}
.x3d_c00116{left:618.533333pt;}
.x4c_c00116{left:620.666667pt;}
.xcb_c00116{left:624.666667pt;}
.x111_c00116{left:629.200000pt;}
.xaa_c00116{left:630.400000pt;}
.x12_c00116{left:632.933333pt;}
.xe9_c00116{left:634.133333pt;}
.x30_c00116{left:637.733333pt;}
.x11a_c00116{left:641.600000pt;}
.xea_c00116{left:642.800000pt;}
.xd6_c00116{left:643.733333pt;}
.xf4_c00116{left:648.933333pt;}
.x9d_c00116{left:650.000000pt;}
.xab_c00116{left:650.933333pt;}
.x12a_c00116{left:652.533333pt;}
.x31_c00116{left:653.733333pt;}
.x13_c00116{left:655.600000pt;}
.x66_c00116{left:657.200000pt;}
.xbb_c00116{left:658.400000pt;}
.x23_c00116{left:660.133333pt;}
.x3e_c00116{left:664.266667pt;}
.x2_c00116{left:665.600000pt;}
.x71_c00116{left:668.133333pt;}
.xe6_c00116{left:669.733333pt;}
.x12b_c00116{left:671.066667pt;}
.xbc_c00116{left:672.800000pt;}
.x112_c00116{left:675.866667pt;}
.xcc_c00116{left:678.800000pt;}
}





/* 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_c00117 {
    display:none;
  }
  .loading-indicator_c00117.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00117 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_c00117 { 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_c00117" -> "#page-container .classname_c00117")
 */
.pf_c00117 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00117 { /* 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_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00117 { /* 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_c00117 { /* 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_c00117 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00117 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00117 {overflow:visible;}
  }
}
.c_c00117 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00117 { /* 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_c00117:after { /* webkit #35443 */
  content: '';
}
.t_c00117:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00117 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 */
}
.__c00117 { /* 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_c00117 { /* info for Javascript */
  display:none;
}
.l_c00117 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00117 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00117 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00117: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_c00117 {
    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_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00117.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_c00117 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00117;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.000000;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;}
.m7f_c00117{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00117{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.me6_c00117{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m79_c00117{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00117{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00117{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m98_c00117{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00117{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mea_c00117{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m60_c00117{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m23_c00117{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00117{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00117{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m24_c00117{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00117{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00117{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m22_c00117{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m28_c00117{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m100_c00117{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00117{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.ma_c00117{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00117{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00117{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00117{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00117{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m8_c00117{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mce_c00117{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mca_c00117{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00117{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mae_c00117{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00117{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00117{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00117{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m87_c00117{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m105_c00117{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00117{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00117{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m72_c00117{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m34_c00117{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00117{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.maf_c00117{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00117{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.mf_c00117{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m76_c00117{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00117{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m70_c00117{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m40_c00117{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00117{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00117{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00117{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00117{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00117{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00117{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m33_c00117{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00117{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m9_c00117{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.me7_c00117{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00117{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00117{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me8_c00117{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.md8_c00117{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mef_c00117{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m62_c00117{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mee_c00117{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m69_c00117{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m36_c00117{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m88_c00117{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00117{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00117{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00117{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m38_c00117{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m106_c00117{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m74_c00117{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00117{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m59_c00117{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00117{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00117{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00117{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00117{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00117{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m39_c00117{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m41_c00117{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m52_c00117{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00117{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m51_c00117{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc_c00117{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00117{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m77_c00117{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m35_c00117{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m67_c00117{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md9_c00117{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.maa_c00117{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m6_c00117{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00117{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m50_c00117{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mad_c00117{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00117{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00117{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m54_c00117{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m63_c00117{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00117{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.me4_c00117{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m83_c00117{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00117{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00117{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00117{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m81_c00117{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m55_c00117{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00117{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m109_c00117{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00117{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00117{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00117{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m47_c00117{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00117{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00117{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m68_c00117{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mda_c00117{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00117{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m32_c00117{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me2_c00117{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md_c00117{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00117{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m104_c00117{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m49_c00117{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00117{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00117{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m80_c00117{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m58_c00117{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00117{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m75_c00117{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00117{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00117{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00117{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m82_c00117{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00117{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00117{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.med_c00117{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m73_c00117{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me_c00117{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m64_c00117{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m78_c00117{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m56_c00117{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00117{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m13_c00117{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m66_c00117{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00117{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m42_c00117{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me5_c00117{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m29_c00117{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5_c00117{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00117{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00117{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m103_c00117{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m48_c00117{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mac_c00117{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb_c00117{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00117{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00117{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m93_c00117{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.me3_c00117{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m19_c00117{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m31_c00117{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mde_c00117{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00117{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m53_c00117{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m107_c00117{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m30_c00117{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00117{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00117{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00117{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m57_c00117{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00117{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m37_c00117{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md2_c00117{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00117{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00117{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m10_c00117{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00117{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00117{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00117{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m45_c00117{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m86_c00117{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m44_c00117{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7_c00117{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00117{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m95_c00117{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m89_c00117{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00117{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m11_c00117{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m65_c00117{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m21_c00117{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00117{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md5_c00117{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mab_c00117{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mec_c00117{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00117{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md3_c00117{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m43_c00117{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me1_c00117{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00117{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m4_c00117{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md0_c00117{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00117{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00117{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00117{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00117{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00117{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00117{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m61_c00117{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m108_c00117{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00117{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00117{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m90_c00117{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00117{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00117{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00117{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);}
.m102_c00117{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m27_c00117{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m46_c00117{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.meb_c00117{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00117{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m14_c00117{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m15_c00117{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00117{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me9_c00117{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m97_c00117{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m101_c00117{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00117{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mff_c00117{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m25_c00117{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mba_c00117{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m96_c00117{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00117{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00117{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m85_c00117{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m17_c00117{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m71_c00117{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md6_c00117{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00117{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me0_c00117{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00117{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m94_c00117{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.md7_c00117{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00117{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m16_c00117{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m91_c00117{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00117{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m84_c00117{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m12_c00117{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00117{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m99_c00117{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m92_c00117{transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00117{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m26_c00117{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00117{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m20_c00117{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18_c00117{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00117{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.md1_c00117{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.md4_c00117{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00117{transform:matrix(15.805750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(15.805750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(15.805750,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls0_c00117{letter-spacing:0.000000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{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__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00117{word-spacing:-8.667069px;}
.ws4_c00117{word-spacing:-1.000000px;}
.ws8_c00117{word-spacing:0.000000px;}
.ws7_c00117{word-spacing:0.125000px;}
.ws1_c00117{word-spacing:18.125000px;}
.ws6_c00117{word-spacing:24.989529px;}
.ws2_c00117{word-spacing:25.714286px;}
.ws3_c00117{word-spacing:61.250000px;}
.ws0_c00117{word-spacing:86.071429px;}
._0_c00117{width:68.214286px;}
.fc0_c00117{color:transparent;}
.fs5_c00117{font-size:30.000000px;}
.fs8_c00117{font-size:42.000000px;}
.fs7_c00117{font-size:48.000000px;}
.fs0_c00117{font-size:54.000000px;}
.fs2_c00117{font-size:60.000000px;}
.fs3_c00117{font-size:66.000000px;}
.fs4_c00117{font-size:72.000000px;}
.fs6_c00117{font-size:78.000000px;}
.fs1_c00117{font-size:126.000000px;}
.y0_c00117{bottom:0.000000px;}
.y66_c00117{bottom:181.500000px;}
.y35_c00117{bottom:189.750000px;}
.y65_c00117{bottom:196.200000px;}
.y64_c00117{bottom:210.600000px;}
.y34_c00117{bottom:212.100000px;}
.y63_c00117{bottom:224.700000px;}
.y33_c00117{bottom:233.850000px;}
.y62_c00117{bottom:239.100000px;}
.y32_c00117{bottom:251.550000px;}
.y61_c00117{bottom:253.800000px;}
.y60_c00117{bottom:266.700000px;}
.y31_c00117{bottom:269.250000px;}
.y30_c00117{bottom:286.950000px;}
.y5f_c00117{bottom:290.850000px;}
.y2f_c00117{bottom:310.500000px;}
.y2e_c00117{bottom:319.800000px;}
.y5e_c00117{bottom:322.200000px;}
.y5d_c00117{bottom:340.200000px;}
.y2d_c00117{bottom:346.050000px;}
.y2c_c00117{bottom:346.350000px;}
.y5c_c00117{bottom:357.900000px;}
.y2b_c00117{bottom:365.400000px;}
.y5b_c00117{bottom:375.900000px;}
.y2a_c00117{bottom:387.300000px;}
.y5a_c00117{bottom:393.600000px;}
.y29_c00117{bottom:409.650000px;}
.y59_c00117{bottom:411.300000px;}
.y58_c00117{bottom:429.300000px;}
.y28_c00117{bottom:432.000000px;}
.y57_c00117{bottom:447.000000px;}
.y27_c00117{bottom:462.600000px;}
.y56_c00117{bottom:465.000000px;}
.y55_c00117{bottom:482.700000px;}
.y26_c00117{bottom:494.250000px;}
.y54_c00117{bottom:500.400000px;}
.y25_c00117{bottom:516.450000px;}
.y53_c00117{bottom:518.400000px;}
.y24_c00117{bottom:534.150000px;}
.y52_c00117{bottom:536.400000px;}
.y23_c00117{bottom:551.850000px;}
.y51_c00117{bottom:564.900000px;}
.y22_c00117{bottom:569.550000px;}
.y50_c00117{bottom:580.050000px;}
.y4f_c00117{bottom:591.150000px;}
.y21_c00117{bottom:596.400000px;}
.y4e_c00117{bottom:612.300000px;}
.y20_c00117{bottom:614.100000px;}
.y4d_c00117{bottom:630.000000px;}
.y1f_c00117{bottom:632.100000px;}
.y4c_c00117{bottom:647.700000px;}
.y1e_c00117{bottom:654.600000px;}
.y1d_c00117{bottom:672.300000px;}
.y4b_c00117{bottom:678.750000px;}
.y1c_c00117{bottom:690.000000px;}
.y4a_c00117{bottom:696.450000px;}
.y1b_c00117{bottom:708.000000px;}
.y49_c00117{bottom:714.150000px;}
.y1a_c00117{bottom:726.000000px;}
.y48_c00117{bottom:732.150000px;}
.y19_c00117{bottom:743.700000px;}
.y47_c00117{bottom:749.850000px;}
.y18_c00117{bottom:761.400000px;}
.y46_c00117{bottom:767.850000px;}
.y17_c00117{bottom:779.400000px;}
.y45_c00117{bottom:785.550000px;}
.y16_c00117{bottom:797.100000px;}
.y44_c00117{bottom:803.550000px;}
.y15_c00117{bottom:815.100000px;}
.y43_c00117{bottom:820.800000px;}
.y14_c00117{bottom:832.800000px;}
.y42_c00117{bottom:843.900000px;}
.y13_c00117{bottom:850.050000px;}
.y41_c00117{bottom:861.150000px;}
.y12_c00117{bottom:868.050000px;}
.y11_c00117{bottom:886.050000px;}
.y40_c00117{bottom:892.500000px;}
.y10_c00117{bottom:903.750000px;}
.y3f_c00117{bottom:914.400000px;}
.yf_c00117{bottom:921.750000px;}
.y3e_c00117{bottom:932.400000px;}
.ye_c00117{bottom:939.450000px;}
.y3d_c00117{bottom:954.600000px;}
.yd_c00117{bottom:957.150000px;}
.yc_c00117{bottom:974.850000px;}
.y3c_c00117{bottom:975.900000px;}
.yb_c00117{bottom:995.400000px;}
.y3b_c00117{bottom:999.600000px;}
.ya_c00117{bottom:1009.500000px;}
.y3a_c00117{bottom:1020.150000px;}
.y9_c00117{bottom:1024.200000px;}
.y8_c00117{bottom:1038.300000px;}
.y39_c00117{bottom:1042.500000px;}
.y7_c00117{bottom:1052.700000px;}
.y38_c00117{bottom:1064.850000px;}
.y6_c00117{bottom:1066.800000px;}
.y5_c00117{bottom:1081.500000px;}
.y37_c00117{bottom:1086.900000px;}
.y4_c00117{bottom:1095.900000px;}
.y36_c00117{bottom:1104.900000px;}
.y3_c00117{bottom:1110.300000px;}
.y2_c00117{bottom:1132.950000px;}
.y1_c00117{bottom:1135.800000px;}
.h7_c00117{height:30.000000px;}
.ha_c00117{height:42.000000px;}
.h9_c00117{height:48.000000px;}
.h2_c00117{height:54.000000px;}
.h4_c00117{height:60.000000px;}
.h5_c00117{height:66.000000px;}
.h6_c00117{height:72.000000px;}
.h8_c00117{height:78.000000px;}
.h3_c00117{height:126.000000px;}
.h1_c00117{height:1270.500000px;}
.h0_c00117{height:1270.799927px;}
.w1_c00117{width:953.250000px;}
.w0_c00117{width:953.280030px;}
.x0_c00117{left:0.000000px;}
.x87_c00117{left:182.550000px;}
.x8b_c00117{left:184.800000px;}
.x79_c00117{left:186.300000px;}
.x3_c00117{left:187.950000px;}
.x1_c00117{left:190.800000px;}
.x6f_c00117{left:201.900000px;}
.xc_c00117{left:203.100000px;}
.x23_c00117{left:204.300000px;}
.x7e_c00117{left:205.650000px;}
.x40_c00117{left:208.350000px;}
.x1d_c00117{left:216.000000px;}
.x16_c00117{left:217.200000px;}
.x72_c00117{left:219.600000px;}
.xd_c00117{left:220.800000px;}
.x54_c00117{left:222.300000px;}
.x41_c00117{left:225.300000px;}
.x4a_c00117{left:230.250000px;}
.x61_c00117{left:232.650000px;}
.x35_c00117{left:235.950000px;}
.x17_c00117{left:237.750000px;}
.x59_c00117{left:241.950000px;}
.x6c_c00117{left:243.300000px;}
.x2f_c00117{left:246.150000px;}
.x4_c00117{left:248.100000px;}
.x66_c00117{left:249.600000px;}
.x5a_c00117{left:251.700000px;}
.x46_c00117{left:252.900000px;}
.xe_c00117{left:254.700000px;}
.x95_c00117{left:255.750000px;}
.x12_c00117{left:257.700000px;}
.x7a_c00117{left:259.050000px;}
.x18_c00117{left:260.100000px;}
.x73_c00117{left:262.050000px;}
.x8e_c00117{left:263.250000px;}
.x8f_c00117{left:264.300000px;}
.x55_c00117{left:266.850000px;}
.x62_c00117{left:267.900000px;}
.x1f_c00117{left:269.550000px;}
.x4f_c00117{left:271.950000px;}
.x5b_c00117{left:273.000000px;}
.x3c_c00117{left:276.300000px;}
.x24_c00117{left:278.100000px;}
.x71_c00117{left:280.800000px;}
.x82_c00117{left:281.850000px;}
.x2a_c00117{left:286.500000px;}
.x5_c00117{left:287.700000px;}
.x69_c00117{left:288.900000px;}
.x42_c00117{left:290.850000px;}
.x47_c00117{left:292.200000px;}
.x25_c00117{left:294.300000px;}
.x96_c00117{left:295.800000px;}
.x36_c00117{left:297.150000px;}
.x4b_c00117{left:299.400000px;}
.x50_c00117{left:300.450000px;}
.x30_c00117{left:301.950000px;}
.x6d_c00117{left:304.800000px;}
.xf_c00117{left:305.850000px;}
.x2b_c00117{left:307.350000px;}
.x6_c00117{left:309.300000px;}
.x56_c00117{left:312.900000px;}
.x4c_c00117{left:314.550000px;}
.x92_c00117{left:316.050000px;}
.x37_c00117{left:317.250000px;}
.x74_c00117{left:321.150000px;}
.x90_c00117{left:325.500000px;}
.x5e_c00117{left:328.350000px;}
.x48_c00117{left:329.700000px;}
.x8c_c00117{left:331.350000px;}
.x80_c00117{left:332.550000px;}
.x26_c00117{left:333.900000px;}
.x3d_c00117{left:334.950000px;}
.x31_c00117{left:336.450000px;}
.x51_c00117{left:338.550000px;}
.x97_c00117{left:339.750000px;}
.x7f_c00117{left:342.000000px;}
.x84_c00117{left:343.500000px;}
.x75_c00117{left:345.600000px;}
.x19_c00117{left:347.550000px;}
.x7_c00117{left:348.900000px;}
.x5f_c00117{left:352.800000px;}
.x81_c00117{left:353.850000px;}
.x6a_c00117{left:357.000000px;}
.x63_c00117{left:358.950000px;}
.x38_c00117{left:361.500000px;}
.x10_c00117{left:363.000000px;}
.x2c_c00117{left:365.250000px;}
.x5c_c00117{left:367.950000px;}
.x88_c00117{left:371.700000px;}
.x32_c00117{left:374.550000px;}
.x20_c00117{left:378.150000px;}
.x70_c00117{left:380.100000px;}
.x39_c00117{left:381.600000px;}
.x85_c00117{left:387.000000px;}
.x43_c00117{left:390.600000px;}
.x89_c00117{left:392.250000px;}
.x1a_c00117{left:394.050000px;}
.x8_c00117{left:395.400000px;}
.x57_c00117{left:398.250000px;}
.x86_c00117{left:399.300000px;}
.x4d_c00117{left:401.400000px;}
.x49_c00117{left:402.750000px;}
.x6b_c00117{left:406.350000px;}
.x7b_c00117{left:408.300000px;}
.x94_c00117{left:411.000000px;}
.x3e_c00117{left:412.050000px;}
.x11_c00117{left:413.400000px;}
.x7c_c00117{left:414.450000px;}
.x52_c00117{left:418.050000px;}
.x2d_c00117{left:420.000000px;}
.x78_c00117{left:421.800000px;}
.x76_c00117{left:424.050000px;}
.x5d_c00117{left:425.550000px;}
.x2_c00117{left:427.650000px;}
.x21_c00117{left:431.100000px;}
.x64_c00117{left:433.950000px;}
.x27_c00117{left:435.450000px;}
.x8d_c00117{left:438.000000px;}
.x9_c00117{left:443.250000px;}
.x65_c00117{left:445.050000px;}
.x3a_c00117{left:447.900000px;}
.x60_c00117{left:448.950000px;}
.x1e_c00117{left:450.450000px;}
.x13_c00117{left:451.800000px;}
.x33_c00117{left:454.800000px;}
.x3f_c00117{left:456.000000px;}
.x58_c00117{left:457.350000px;}
.x8a_c00117{left:460.950000px;}
.x67_c00117{left:462.450000px;}
.x2e_c00117{left:463.950000px;}
.x53_c00117{left:465.150000px;}
.x91_c00117{left:466.800000px;}
.x28_c00117{left:470.700000px;}
.x44_c00117{left:472.950000px;}
.xa_c00117{left:474.150000px;}
.x83_c00117{left:475.800000px;}
.x4e_c00117{left:479.100000px;}
.x14_c00117{left:480.300000px;}
.x1b_c00117{left:481.350000px;}
.x22_c00117{left:483.600000px;}
.x68_c00117{left:485.850000px;}
.x77_c00117{left:487.350000px;}
.x3b_c00117{left:489.600000px;}
.x45_c00117{left:490.950000px;}
.x29_c00117{left:492.600000px;}
.x7d_c00117{left:499.050000px;}
.x1c_c00117{left:503.700000px;}
.x34_c00117{left:505.950000px;}
.xb_c00117{left:507.600000px;}
.x15_c00117{left:509.100000px;}
.x93_c00117{left:513.150000px;}
.x6e_c00117{left:516.150000px;}
.x11b_c00117{left:537.900000px;}
.xbd_c00117{left:540.300000px;}
.xb5_c00117{left:541.500000px;}
.x11c_c00117{left:553.650000px;}
.xf0_c00117{left:557.700000px;}
.xbb_c00117{left:558.750000px;}
.x9e_c00117{left:561.000000px;}
.xa7_c00117{left:564.150000px;}
.xfa_c00117{left:568.950000px;}
.xc6_c00117{left:576.000000px;}
.xa4_c00117{left:578.100000px;}
.xa2_c00117{left:579.150000px;}
.x98_c00117{left:580.650000px;}
.x123_c00117{left:581.850000px;}
.xde_c00117{left:583.800000px;}
.x120_c00117{left:585.900000px;}
.x10c_c00117{left:587.100000px;}
.xec_c00117{left:588.300000px;}
.xf2_c00117{left:590.100000px;}
.xcc_c00117{left:592.350000px;}
.x10f_c00117{left:593.850000px;}
.xc5_c00117{left:595.800000px;}
.xd9_c00117{left:598.350000px;}
.xf6_c00117{left:599.400000px;}
.xb6_c00117{left:601.950000px;}
.xa8_c00117{left:604.200000px;}
.xbc_c00117{left:606.300000px;}
.x105_c00117{left:608.550000px;}
.xbe_c00117{left:609.750000px;}
.xa5_c00117{left:612.000000px;}
.x114_c00117{left:614.400000px;}
.xe3_c00117{left:616.050000px;}
.x106_c00117{left:617.550000px;}
.xae_c00117{left:618.750000px;}
.xc2_c00117{left:619.800000px;}
.x99_c00117{left:622.050000px;}
.xfc_c00117{left:623.100000px;}
.xcd_c00117{left:625.800000px;}
.x11e_c00117{left:627.750000px;}
.xda_c00117{left:630.000000px;}
.x9f_c00117{left:632.850000px;}
.xc7_c00117{left:634.650000px;}
.x100_c00117{left:636.000000px;}
.xa9_c00117{left:637.800000px;}
.x124_c00117{left:639.450000px;}
.xd0_c00117{left:642.450000px;}
.x12a_c00117{left:644.250000px;}
.xe5_c00117{left:645.300000px;}
.xaf_c00117{left:651.150000px;}
.xa6_c00117{left:652.350000px;}
.xc8_c00117{left:655.500000px;}
.xdb_c00117{left:658.050000px;}
.x117_c00117{left:660.000000px;}
.xfd_c00117{left:661.950000px;}
.xdf_c00117{left:663.000000px;}
.x12c_c00117{left:664.950000px;}
.x119_c00117{left:666.750000px;}
.x113_c00117{left:673.050000px;}
.x12b_c00117{left:674.100000px;}
.xe4_c00117{left:676.500000px;}
.xd1_c00117{left:678.150000px;}
.xaa_c00117{left:682.500000px;}
.xa0_c00117{left:683.550000px;}
.xa3_c00117{left:685.800000px;}
.x101_c00117{left:688.500000px;}
.xbf_c00117{left:691.200000px;}
.xd2_c00117{left:695.100000px;}
.xb7_c00117{left:696.900000px;}
.xab_c00117{left:699.450000px;}
.xa1_c00117{left:701.250000px;}
.xe0_c00117{left:702.300000px;}
.xb2_c00117{left:703.950000px;}
.x127_c00117{left:705.450000px;}
.x9a_c00117{left:710.250000px;}
.xed_c00117{left:711.450000px;}
.xb0_c00117{left:715.200000px;}
.xfe_c00117{left:717.000000px;}
.xac_c00117{left:719.250000px;}
.xe6_c00117{left:721.200000px;}
.x108_c00117{left:722.400000px;}
.xd3_c00117{left:726.750000px;}
.xdc_c00117{left:729.300000px;}
.xb1_c00117{left:731.700000px;}
.x111_c00117{left:733.800000px;}
.xd4_c00117{left:735.450000px;}
.x110_c00117{left:737.700000px;}
.xb8_c00117{left:739.050000px;}
.xc9_c00117{left:741.450000px;}
.x109_c00117{left:745.050000px;}
.xe7_c00117{left:746.400000px;}
.xc3_c00117{left:748.350000px;}
.xad_c00117{left:750.900000px;}
.xe1_c00117{left:751.950000px;}
.xc0_c00117{left:755.250000px;}
.xb3_c00117{left:756.450000px;}
.xf1_c00117{left:758.550000px;}
.xd5_c00117{left:759.900000px;}
.x128_c00117{left:763.800000px;}
.xca_c00117{left:764.850000px;}
.x121_c00117{left:767.550000px;}
.xb9_c00117{left:768.600000px;}
.xf7_c00117{left:771.150000px;}
.xc1_c00117{left:772.200000px;}
.xdd_c00117{left:774.300000px;}
.x10a_c00117{left:776.400000px;}
.x102_c00117{left:778.950000px;}
.xd6_c00117{left:780.750000px;}
.x107_c00117{left:784.500000px;}
.x125_c00117{left:786.750000px;}
.x9b_c00117{left:788.400000px;}
.xee_c00117{left:791.700000px;}
.x11f_c00117{left:795.150000px;}
.xf3_c00117{left:796.650000px;}
.x10b_c00117{left:798.000000px;}
.x10d_c00117{left:799.800000px;}
.xce_c00117{left:802.500000px;}
.xfb_c00117{left:804.450000px;}
.xd7_c00117{left:805.650000px;}
.xf8_c00117{left:807.150000px;}
.x11a_c00117{left:808.200000px;}
.x9c_c00117{left:811.800000px;}
.xba_c00117{left:813.300000px;}
.x112_c00117{left:815.250000px;}
.x115_c00117{left:816.600000px;}
.xe8_c00117{left:817.650000px;}
.xcf_c00117{left:819.450000px;}
.xb4_c00117{left:820.500000px;}
.xea_c00117{left:822.450000px;}
.x103_c00117{left:823.650000px;}
.xf4_c00117{left:826.200000px;}
.xd8_c00117{left:829.050000px;}
.xef_c00117{left:831.600000px;}
.xcb_c00117{left:835.350000px;}
.x118_c00117{left:837.750000px;}
.xc4_c00117{left:840.150000px;}
.xe2_c00117{left:843.150000px;}
.x129_c00117{left:845.850000px;}
.x116_c00117{left:846.900000px;}
.x122_c00117{left:849.750000px;}
.x104_c00117{left:851.550000px;}
.x10e_c00117{left:853.800000px;}
.x11d_c00117{left:855.900000px;}
.xe9_c00117{left:859.800000px;}
.xf5_c00117{left:861.150000px;}
.xf9_c00117{left:862.650000px;}
.x9d_c00117{left:863.700000px;}
.xff_c00117{left:864.900000px;}
.xeb_c00117{left:867.450000px;}
.x126_c00117{left:871.050000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls0_c00117{letter-spacing:0.000000pt;}
.ws5_c00117{word-spacing:-7.704061pt;}
.ws4_c00117{word-spacing:-0.888889pt;}
.ws8_c00117{word-spacing:0.000000pt;}
.ws7_c00117{word-spacing:0.111111pt;}
.ws1_c00117{word-spacing:16.111111pt;}
.ws6_c00117{word-spacing:22.212914pt;}
.ws2_c00117{word-spacing:22.857143pt;}
.ws3_c00117{word-spacing:54.444444pt;}
.ws0_c00117{word-spacing:76.507937pt;}
._0_c00117{width:60.634921pt;}
.fs5_c00117{font-size:26.666667pt;}
.fs8_c00117{font-size:37.333333pt;}
.fs7_c00117{font-size:42.666667pt;}
.fs0_c00117{font-size:48.000000pt;}
.fs2_c00117{font-size:53.333333pt;}
.fs3_c00117{font-size:58.666667pt;}
.fs4_c00117{font-size:64.000000pt;}
.fs6_c00117{font-size:69.333333pt;}
.fs1_c00117{font-size:112.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y66_c00117{bottom:161.333333pt;}
.y35_c00117{bottom:168.666667pt;}
.y65_c00117{bottom:174.400000pt;}
.y64_c00117{bottom:187.200000pt;}
.y34_c00117{bottom:188.533333pt;}
.y63_c00117{bottom:199.733333pt;}
.y33_c00117{bottom:207.866667pt;}
.y62_c00117{bottom:212.533333pt;}
.y32_c00117{bottom:223.600000pt;}
.y61_c00117{bottom:225.600000pt;}
.y60_c00117{bottom:237.066667pt;}
.y31_c00117{bottom:239.333333pt;}
.y30_c00117{bottom:255.066667pt;}
.y5f_c00117{bottom:258.533333pt;}
.y2f_c00117{bottom:276.000000pt;}
.y2e_c00117{bottom:284.266667pt;}
.y5e_c00117{bottom:286.400000pt;}
.y5d_c00117{bottom:302.400000pt;}
.y2d_c00117{bottom:307.600000pt;}
.y2c_c00117{bottom:307.866667pt;}
.y5c_c00117{bottom:318.133333pt;}
.y2b_c00117{bottom:324.800000pt;}
.y5b_c00117{bottom:334.133333pt;}
.y2a_c00117{bottom:344.266667pt;}
.y5a_c00117{bottom:349.866667pt;}
.y29_c00117{bottom:364.133333pt;}
.y59_c00117{bottom:365.600000pt;}
.y58_c00117{bottom:381.600000pt;}
.y28_c00117{bottom:384.000000pt;}
.y57_c00117{bottom:397.333333pt;}
.y27_c00117{bottom:411.200000pt;}
.y56_c00117{bottom:413.333333pt;}
.y55_c00117{bottom:429.066667pt;}
.y26_c00117{bottom:439.333333pt;}
.y54_c00117{bottom:444.800000pt;}
.y25_c00117{bottom:459.066667pt;}
.y53_c00117{bottom:460.800000pt;}
.y24_c00117{bottom:474.800000pt;}
.y52_c00117{bottom:476.800000pt;}
.y23_c00117{bottom:490.533333pt;}
.y51_c00117{bottom:502.133333pt;}
.y22_c00117{bottom:506.266667pt;}
.y50_c00117{bottom:515.600000pt;}
.y4f_c00117{bottom:525.466667pt;}
.y21_c00117{bottom:530.133333pt;}
.y4e_c00117{bottom:544.266667pt;}
.y20_c00117{bottom:545.866667pt;}
.y4d_c00117{bottom:560.000000pt;}
.y1f_c00117{bottom:561.866667pt;}
.y4c_c00117{bottom:575.733333pt;}
.y1e_c00117{bottom:581.866667pt;}
.y1d_c00117{bottom:597.600000pt;}
.y4b_c00117{bottom:603.333333pt;}
.y1c_c00117{bottom:613.333333pt;}
.y4a_c00117{bottom:619.066667pt;}
.y1b_c00117{bottom:629.333333pt;}
.y49_c00117{bottom:634.800000pt;}
.y1a_c00117{bottom:645.333333pt;}
.y48_c00117{bottom:650.800000pt;}
.y19_c00117{bottom:661.066667pt;}
.y47_c00117{bottom:666.533333pt;}
.y18_c00117{bottom:676.800000pt;}
.y46_c00117{bottom:682.533333pt;}
.y17_c00117{bottom:692.800000pt;}
.y45_c00117{bottom:698.266667pt;}
.y16_c00117{bottom:708.533333pt;}
.y44_c00117{bottom:714.266667pt;}
.y15_c00117{bottom:724.533333pt;}
.y43_c00117{bottom:729.600000pt;}
.y14_c00117{bottom:740.266667pt;}
.y42_c00117{bottom:750.133333pt;}
.y13_c00117{bottom:755.600000pt;}
.y41_c00117{bottom:765.466667pt;}
.y12_c00117{bottom:771.600000pt;}
.y11_c00117{bottom:787.600000pt;}
.y40_c00117{bottom:793.333333pt;}
.y10_c00117{bottom:803.333333pt;}
.y3f_c00117{bottom:812.800000pt;}
.yf_c00117{bottom:819.333333pt;}
.y3e_c00117{bottom:828.800000pt;}
.ye_c00117{bottom:835.066667pt;}
.y3d_c00117{bottom:848.533333pt;}
.yd_c00117{bottom:850.800000pt;}
.yc_c00117{bottom:866.533333pt;}
.y3c_c00117{bottom:867.466667pt;}
.yb_c00117{bottom:884.800000pt;}
.y3b_c00117{bottom:888.533333pt;}
.ya_c00117{bottom:897.333333pt;}
.y3a_c00117{bottom:906.800000pt;}
.y9_c00117{bottom:910.400000pt;}
.y8_c00117{bottom:922.933333pt;}
.y39_c00117{bottom:926.666667pt;}
.y7_c00117{bottom:935.733333pt;}
.y38_c00117{bottom:946.533333pt;}
.y6_c00117{bottom:948.266667pt;}
.y5_c00117{bottom:961.333333pt;}
.y37_c00117{bottom:966.133333pt;}
.y4_c00117{bottom:974.133333pt;}
.y36_c00117{bottom:982.133333pt;}
.y3_c00117{bottom:986.933333pt;}
.y2_c00117{bottom:1007.066667pt;}
.y1_c00117{bottom:1009.600000pt;}
.h7_c00117{height:26.666667pt;}
.ha_c00117{height:37.333333pt;}
.h9_c00117{height:42.666667pt;}
.h2_c00117{height:48.000000pt;}
.h4_c00117{height:53.333333pt;}
.h5_c00117{height:58.666667pt;}
.h6_c00117{height:64.000000pt;}
.h8_c00117{height:69.333333pt;}
.h3_c00117{height:112.000000pt;}
.h1_c00117{height:1129.333333pt;}
.h0_c00117{height:1129.599935pt;}
.w1_c00117{width:847.333333pt;}
.w0_c00117{width:847.360027pt;}
.x0_c00117{left:0.000000pt;}
.x87_c00117{left:162.266667pt;}
.x8b_c00117{left:164.266667pt;}
.x79_c00117{left:165.600000pt;}
.x3_c00117{left:167.066667pt;}
.x1_c00117{left:169.600000pt;}
.x6f_c00117{left:179.466667pt;}
.xc_c00117{left:180.533333pt;}
.x23_c00117{left:181.600000pt;}
.x7e_c00117{left:182.800000pt;}
.x40_c00117{left:185.200000pt;}
.x1d_c00117{left:192.000000pt;}
.x16_c00117{left:193.066667pt;}
.x72_c00117{left:195.200000pt;}
.xd_c00117{left:196.266667pt;}
.x54_c00117{left:197.600000pt;}
.x41_c00117{left:200.266667pt;}
.x4a_c00117{left:204.666667pt;}
.x61_c00117{left:206.800000pt;}
.x35_c00117{left:209.733333pt;}
.x17_c00117{left:211.333333pt;}
.x59_c00117{left:215.066667pt;}
.x6c_c00117{left:216.266667pt;}
.x2f_c00117{left:218.800000pt;}
.x4_c00117{left:220.533333pt;}
.x66_c00117{left:221.866667pt;}
.x5a_c00117{left:223.733333pt;}
.x46_c00117{left:224.800000pt;}
.xe_c00117{left:226.400000pt;}
.x95_c00117{left:227.333333pt;}
.x12_c00117{left:229.066667pt;}
.x7a_c00117{left:230.266667pt;}
.x18_c00117{left:231.200000pt;}
.x73_c00117{left:232.933333pt;}
.x8e_c00117{left:234.000000pt;}
.x8f_c00117{left:234.933333pt;}
.x55_c00117{left:237.200000pt;}
.x62_c00117{left:238.133333pt;}
.x1f_c00117{left:239.600000pt;}
.x4f_c00117{left:241.733333pt;}
.x5b_c00117{left:242.666667pt;}
.x3c_c00117{left:245.600000pt;}
.x24_c00117{left:247.200000pt;}
.x71_c00117{left:249.600000pt;}
.x82_c00117{left:250.533333pt;}
.x2a_c00117{left:254.666667pt;}
.x5_c00117{left:255.733333pt;}
.x69_c00117{left:256.800000pt;}
.x42_c00117{left:258.533333pt;}
.x47_c00117{left:259.733333pt;}
.x25_c00117{left:261.600000pt;}
.x96_c00117{left:262.933333pt;}
.x36_c00117{left:264.133333pt;}
.x4b_c00117{left:266.133333pt;}
.x50_c00117{left:267.066667pt;}
.x30_c00117{left:268.400000pt;}
.x6d_c00117{left:270.933333pt;}
.xf_c00117{left:271.866667pt;}
.x2b_c00117{left:273.200000pt;}
.x6_c00117{left:274.933333pt;}
.x56_c00117{left:278.133333pt;}
.x4c_c00117{left:279.600000pt;}
.x92_c00117{left:280.933333pt;}
.x37_c00117{left:282.000000pt;}
.x74_c00117{left:285.466667pt;}
.x90_c00117{left:289.333333pt;}
.x5e_c00117{left:291.866667pt;}
.x48_c00117{left:293.066667pt;}
.x8c_c00117{left:294.533333pt;}
.x80_c00117{left:295.600000pt;}
.x26_c00117{left:296.800000pt;}
.x3d_c00117{left:297.733333pt;}
.x31_c00117{left:299.066667pt;}
.x51_c00117{left:300.933333pt;}
.x97_c00117{left:302.000000pt;}
.x7f_c00117{left:304.000000pt;}
.x84_c00117{left:305.333333pt;}
.x75_c00117{left:307.200000pt;}
.x19_c00117{left:308.933333pt;}
.x7_c00117{left:310.133333pt;}
.x5f_c00117{left:313.600000pt;}
.x81_c00117{left:314.533333pt;}
.x6a_c00117{left:317.333333pt;}
.x63_c00117{left:319.066667pt;}
.x38_c00117{left:321.333333pt;}
.x10_c00117{left:322.666667pt;}
.x2c_c00117{left:324.666667pt;}
.x5c_c00117{left:327.066667pt;}
.x88_c00117{left:330.400000pt;}
.x32_c00117{left:332.933333pt;}
.x20_c00117{left:336.133333pt;}
.x70_c00117{left:337.866667pt;}
.x39_c00117{left:339.200000pt;}
.x85_c00117{left:344.000000pt;}
.x43_c00117{left:347.200000pt;}
.x89_c00117{left:348.666667pt;}
.x1a_c00117{left:350.266667pt;}
.x8_c00117{left:351.466667pt;}
.x57_c00117{left:354.000000pt;}
.x86_c00117{left:354.933333pt;}
.x4d_c00117{left:356.800000pt;}
.x49_c00117{left:358.000000pt;}
.x6b_c00117{left:361.200000pt;}
.x7b_c00117{left:362.933333pt;}
.x94_c00117{left:365.333333pt;}
.x3e_c00117{left:366.266667pt;}
.x11_c00117{left:367.466667pt;}
.x7c_c00117{left:368.400000pt;}
.x52_c00117{left:371.600000pt;}
.x2d_c00117{left:373.333333pt;}
.x78_c00117{left:374.933333pt;}
.x76_c00117{left:376.933333pt;}
.x5d_c00117{left:378.266667pt;}
.x2_c00117{left:380.133333pt;}
.x21_c00117{left:383.200000pt;}
.x64_c00117{left:385.733333pt;}
.x27_c00117{left:387.066667pt;}
.x8d_c00117{left:389.333333pt;}
.x9_c00117{left:394.000000pt;}
.x65_c00117{left:395.600000pt;}
.x3a_c00117{left:398.133333pt;}
.x60_c00117{left:399.066667pt;}
.x1e_c00117{left:400.400000pt;}
.x13_c00117{left:401.600000pt;}
.x33_c00117{left:404.266667pt;}
.x3f_c00117{left:405.333333pt;}
.x58_c00117{left:406.533333pt;}
.x8a_c00117{left:409.733333pt;}
.x67_c00117{left:411.066667pt;}
.x2e_c00117{left:412.400000pt;}
.x53_c00117{left:413.466667pt;}
.x91_c00117{left:414.933333pt;}
.x28_c00117{left:418.400000pt;}
.x44_c00117{left:420.400000pt;}
.xa_c00117{left:421.466667pt;}
.x83_c00117{left:422.933333pt;}
.x4e_c00117{left:425.866667pt;}
.x14_c00117{left:426.933333pt;}
.x1b_c00117{left:427.866667pt;}
.x22_c00117{left:429.866667pt;}
.x68_c00117{left:431.866667pt;}
.x77_c00117{left:433.200000pt;}
.x3b_c00117{left:435.200000pt;}
.x45_c00117{left:436.400000pt;}
.x29_c00117{left:437.866667pt;}
.x7d_c00117{left:443.600000pt;}
.x1c_c00117{left:447.733333pt;}
.x34_c00117{left:449.733333pt;}
.xb_c00117{left:451.200000pt;}
.x15_c00117{left:452.533333pt;}
.x93_c00117{left:456.133333pt;}
.x6e_c00117{left:458.800000pt;}
.x11b_c00117{left:478.133333pt;}
.xbd_c00117{left:480.266667pt;}
.xb5_c00117{left:481.333333pt;}
.x11c_c00117{left:492.133333pt;}
.xf0_c00117{left:495.733333pt;}
.xbb_c00117{left:496.666667pt;}
.x9e_c00117{left:498.666667pt;}
.xa7_c00117{left:501.466667pt;}
.xfa_c00117{left:505.733333pt;}
.xc6_c00117{left:512.000000pt;}
.xa4_c00117{left:513.866667pt;}
.xa2_c00117{left:514.800000pt;}
.x98_c00117{left:516.133333pt;}
.x123_c00117{left:517.200000pt;}
.xde_c00117{left:518.933333pt;}
.x120_c00117{left:520.800000pt;}
.x10c_c00117{left:521.866667pt;}
.xec_c00117{left:522.933333pt;}
.xf2_c00117{left:524.533333pt;}
.xcc_c00117{left:526.533333pt;}
.x10f_c00117{left:527.866667pt;}
.xc5_c00117{left:529.600000pt;}
.xd9_c00117{left:531.866667pt;}
.xf6_c00117{left:532.800000pt;}
.xb6_c00117{left:535.066667pt;}
.xa8_c00117{left:537.066667pt;}
.xbc_c00117{left:538.933333pt;}
.x105_c00117{left:540.933333pt;}
.xbe_c00117{left:542.000000pt;}
.xa5_c00117{left:544.000000pt;}
.x114_c00117{left:546.133333pt;}
.xe3_c00117{left:547.600000pt;}
.x106_c00117{left:548.933333pt;}
.xae_c00117{left:550.000000pt;}
.xc2_c00117{left:550.933333pt;}
.x99_c00117{left:552.933333pt;}
.xfc_c00117{left:553.866667pt;}
.xcd_c00117{left:556.266667pt;}
.x11e_c00117{left:558.000000pt;}
.xda_c00117{left:560.000000pt;}
.x9f_c00117{left:562.533333pt;}
.xc7_c00117{left:564.133333pt;}
.x100_c00117{left:565.333333pt;}
.xa9_c00117{left:566.933333pt;}
.x124_c00117{left:568.400000pt;}
.xd0_c00117{left:571.066667pt;}
.x12a_c00117{left:572.666667pt;}
.xe5_c00117{left:573.600000pt;}
.xaf_c00117{left:578.800000pt;}
.xa6_c00117{left:579.866667pt;}
.xc8_c00117{left:582.666667pt;}
.xdb_c00117{left:584.933333pt;}
.x117_c00117{left:586.666667pt;}
.xfd_c00117{left:588.400000pt;}
.xdf_c00117{left:589.333333pt;}
.x12c_c00117{left:591.066667pt;}
.x119_c00117{left:592.666667pt;}
.x113_c00117{left:598.266667pt;}
.x12b_c00117{left:599.200000pt;}
.xe4_c00117{left:601.333333pt;}
.xd1_c00117{left:602.800000pt;}
.xaa_c00117{left:606.666667pt;}
.xa0_c00117{left:607.600000pt;}
.xa3_c00117{left:609.600000pt;}
.x101_c00117{left:612.000000pt;}
.xbf_c00117{left:614.400000pt;}
.xd2_c00117{left:617.866667pt;}
.xb7_c00117{left:619.466667pt;}
.xab_c00117{left:621.733333pt;}
.xa1_c00117{left:623.333333pt;}
.xe0_c00117{left:624.266667pt;}
.xb2_c00117{left:625.733333pt;}
.x127_c00117{left:627.066667pt;}
.x9a_c00117{left:631.333333pt;}
.xed_c00117{left:632.400000pt;}
.xb0_c00117{left:635.733333pt;}
.xfe_c00117{left:637.333333pt;}
.xac_c00117{left:639.333333pt;}
.xe6_c00117{left:641.066667pt;}
.x108_c00117{left:642.133333pt;}
.xd3_c00117{left:646.000000pt;}
.xdc_c00117{left:648.266667pt;}
.xb1_c00117{left:650.400000pt;}
.x111_c00117{left:652.266667pt;}
.xd4_c00117{left:653.733333pt;}
.x110_c00117{left:655.733333pt;}
.xb8_c00117{left:656.933333pt;}
.xc9_c00117{left:659.066667pt;}
.x109_c00117{left:662.266667pt;}
.xe7_c00117{left:663.466667pt;}
.xc3_c00117{left:665.200000pt;}
.xad_c00117{left:667.466667pt;}
.xe1_c00117{left:668.400000pt;}
.xc0_c00117{left:671.333333pt;}
.xb3_c00117{left:672.400000pt;}
.xf1_c00117{left:674.266667pt;}
.xd5_c00117{left:675.466667pt;}
.x128_c00117{left:678.933333pt;}
.xca_c00117{left:679.866667pt;}
.x121_c00117{left:682.266667pt;}
.xb9_c00117{left:683.200000pt;}
.xf7_c00117{left:685.466667pt;}
.xc1_c00117{left:686.400000pt;}
.xdd_c00117{left:688.266667pt;}
.x10a_c00117{left:690.133333pt;}
.x102_c00117{left:692.400000pt;}
.xd6_c00117{left:694.000000pt;}
.x107_c00117{left:697.333333pt;}
.x125_c00117{left:699.333333pt;}
.x9b_c00117{left:700.800000pt;}
.xee_c00117{left:703.733333pt;}
.x11f_c00117{left:706.800000pt;}
.xf3_c00117{left:708.133333pt;}
.x10b_c00117{left:709.333333pt;}
.x10d_c00117{left:710.933333pt;}
.xce_c00117{left:713.333333pt;}
.xfb_c00117{left:715.066667pt;}
.xd7_c00117{left:716.133333pt;}
.xf8_c00117{left:717.466667pt;}
.x11a_c00117{left:718.400000pt;}
.x9c_c00117{left:721.600000pt;}
.xba_c00117{left:722.933333pt;}
.x112_c00117{left:724.666667pt;}
.x115_c00117{left:725.866667pt;}
.xe8_c00117{left:726.800000pt;}
.xcf_c00117{left:728.400000pt;}
.xb4_c00117{left:729.333333pt;}
.xea_c00117{left:731.066667pt;}
.x103_c00117{left:732.133333pt;}
.xf4_c00117{left:734.400000pt;}
.xd8_c00117{left:736.933333pt;}
.xef_c00117{left:739.200000pt;}
.xcb_c00117{left:742.533333pt;}
.x118_c00117{left:744.666667pt;}
.xc4_c00117{left:746.800000pt;}
.xe2_c00117{left:749.466667pt;}
.x129_c00117{left:751.866667pt;}
.x116_c00117{left:752.800000pt;}
.x122_c00117{left:755.333333pt;}
.x104_c00117{left:756.933333pt;}
.x10e_c00117{left:758.933333pt;}
.x11d_c00117{left:760.800000pt;}
.xe9_c00117{left:764.266667pt;}
.xf5_c00117{left:765.466667pt;}
.xf9_c00117{left:766.800000pt;}
.x9d_c00117{left:767.733333pt;}
.xff_c00117{left:768.800000pt;}
.xeb_c00117{left:771.066667pt;}
.x126_c00117{left:774.266667pt;}
}





/* 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_c00118 {
    display:none;
  }
  .loading-indicator_c00118.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00118 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_c00118 { 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_c00118" -> "#page-container .classname_c00118")
 */
.pf_c00118 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00118 { /* 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_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00118 { /* 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_c00118 { /* 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_c00118 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00118 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00118 {overflow:visible;}
  }
}
.c_c00118 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00118 { /* 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_c00118:after { /* webkit #35443 */
  content: '';
}
.t_c00118:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00118 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 */
}
.__c00118 { /* 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_c00118 { /* info for Javascript */
  display:none;
}
.l_c00118 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00118 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00118 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00118: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_c00118 {
    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_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00118.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_c00118 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00118;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.000000;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;}
.md1_c00118{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00118{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m66_c00118{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00118{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00118{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00118{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00118{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00118{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m113_c00118{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00118{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m63_c00118{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m105_c00118{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00118{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00118{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m38_c00118{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00118{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m90_c00118{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00118{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m87_c00118{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00118{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m74_c00118{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00118{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mea_c00118{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m114_c00118{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m76_c00118{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00118{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00118{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00118{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m104_c00118{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00118{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m37_c00118{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m51_c00118{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m88_c00118{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m79_c00118{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m103_c00118{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m71_c00118{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.maf_c00118{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m92_c00118{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf_c00118{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00118{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00118{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m118_c00118{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00118{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m18_c00118{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me8_c00118{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00118{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma_c00118{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m117_c00118{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m26_c00118{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mae_c00118{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mba_c00118{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00118{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mff_c00118{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00118{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.maa_c00118{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00118{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me4_c00118{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00118{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00118{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00118{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m14_c00118{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00118{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00118{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00118{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00118{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.me9_c00118{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00118{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m27_c00118{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00118{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00118{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m107_c00118{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m108_c00118{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m111_c00118{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m16_c00118{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00118{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00118{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mda_c00118{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00118{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m8_c00118{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m82_c00118{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m56_c00118{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m95_c00118{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m40_c00118{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m20_c00118{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc_c00118{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mad_c00118{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m58_c00118{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00118{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00118{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00118{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00118{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m22_c00118{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m36_c00118{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m57_c00118{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00118{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m73_c00118{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00118{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00118{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m44_c00118{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mec_c00118{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00118{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00118{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m102_c00118{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9_c00118{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md8_c00118{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00118{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me_c00118{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00118{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m110_c00118{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m53_c00118{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m93_c00118{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00118{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m35_c00118{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00118{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m7_c00118{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00118{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m25_c00118{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00118{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md7_c00118{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m42_c00118{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mac_c00118{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m78_c00118{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00118{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00118{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00118{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00118{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m69_c00118{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00118{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m15_c00118{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m34_c00118{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m91_c00118{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00118{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00118{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m65_c00118{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md_c00118{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m30_c00118{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00118{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00118{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m89_c00118{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00118{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00118{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00118{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m10_c00118{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m64_c00118{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00118{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00118{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.meb_c00118{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m84_c00118{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m17_c00118{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00118{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00118{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m96_c00118{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00118{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5_c00118{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00118{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00118{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m19_c00118{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m32_c00118{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m55_c00118{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m13_c00118{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m83_c00118{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mab_c00118{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m98_c00118{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00118{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m106_c00118{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00118{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m68_c00118{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m41_c00118{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00118{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m85_c00118{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00118{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m33_c00118{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m50_c00118{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00118{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00118{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md9_c00118{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00118{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md2_c00118{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00118{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6_c00118{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m80_c00118{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00118{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m59_c00118{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00118{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m75_c00118{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00118{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m101_c00118{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00118{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m112_c00118{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00118{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00118{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m45_c00118{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.md0_c00118{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mca_c00118{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.me1_c00118{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m77_c00118{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m94_c00118{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00118{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00118{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m49_c00118{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mef_c00118{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00118{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00118{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me3_c00118{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m23_c00118{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00118{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m70_c00118{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00118{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m100_c00118{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m21_c00118{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m86_c00118{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m29_c00118{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mee_c00118{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00118{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00118{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.med_c00118{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00118{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m28_c00118{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m119_c00118{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00118{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m31_c00118{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mce_c00118{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me7_c00118{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00118{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);}
.mb0_c00118{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m109_c00118{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb_c00118{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m52_c00118{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m48_c00118{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m116_c00118{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00118{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m12_c00118{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m24_c00118{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me5_c00118{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00118{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00118{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m43_c00118{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00118{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me2_c00118{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00118{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m115_c00118{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m54_c00118{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m1_c00118{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00118{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00118{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m81_c00118{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m97_c00118{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m11_c00118{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00118{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me6_c00118{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md6_c00118{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00118{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00118{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m39_c00118{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m67_c00118{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00118{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00118{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00118{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m47_c00118{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00118{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m46_c00118{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00118{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mde_c00118{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00118{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00118{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.me0_c00118{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00118{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m61_c00118{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m60_c00118{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.md4_c00118{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00118{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.md5_c00118{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m62_c00118{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.md3_c00118{transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);}
.m99_c00118{transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00118{transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00118{transform:matrix(0.396250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00118{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);}
.m72_c00118{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls0_c00118{letter-spacing:0.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{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__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00118{word-spacing:-10.872611px;}
.ws4_c00118{word-spacing:-9.262009px;}
.ws0_c00118{word-spacing:-5.294118px;}
.ws3_c00118{word-spacing:-4.666667px;}
.ws8_c00118{word-spacing:0.000000px;}
.ws5_c00118{word-spacing:0.294118px;}
.ws6_c00118{word-spacing:2.307692px;}
.ws7_c00118{word-spacing:14.000000px;}
.ws2_c00118{word-spacing:6227.500000px;}
.fc0_c00118{color:transparent;}
.fs6_c00118{font-size:48.000000px;}
.fs5_c00118{font-size:54.000000px;}
.fs3_c00118{font-size:60.000000px;}
.fs2_c00118{font-size:66.000000px;}
.fs1_c00118{font-size:72.000000px;}
.fs4_c00118{font-size:78.000000px;}
.fs0_c00118{font-size:84.000000px;}
.y0_c00118{bottom:0.000000px;}
.y61_c00118{bottom:177.900000px;}
.y31_c00118{bottom:179.250000px;}
.y30_c00118{bottom:201.600000px;}
.y60_c00118{bottom:204.900000px;}
.y2f_c00118{bottom:219.600000px;}
.y5f_c00118{bottom:234.000000px;}
.y2e_c00118{bottom:237.600000px;}
.y5e_c00118{bottom:241.200000px;}
.y5d_c00118{bottom:258.150000px;}
.y2d_c00118{bottom:264.300000px;}
.y2c_c00118{bottom:274.050000px;}
.y5c_c00118{bottom:276.450000px;}
.y5b_c00118{bottom:294.150000px;}
.y2b_c00118{bottom:299.550000px;}
.y2a_c00118{bottom:307.350000px;}
.y5a_c00118{bottom:316.050000px;}
.y29_c00118{bottom:325.050000px;}
.y59_c00118{bottom:333.750000px;}
.y28_c00118{bottom:348.150000px;}
.y58_c00118{bottom:360.300000px;}
.y57_c00118{bottom:378.300000px;}
.y27_c00118{bottom:382.350000px;}
.y56_c00118{bottom:396.000000px;}
.y55_c00118{bottom:414.000000px;}
.y26_c00118{bottom:416.550000px;}
.y54_c00118{bottom:440.100000px;}
.y25_c00118{bottom:441.600000px;}
.y24_c00118{bottom:456.750000px;}
.y53_c00118{bottom:458.100000px;}
.y23_c00118{bottom:470.850000px;}
.y52_c00118{bottom:475.800000px;}
.y22_c00118{bottom:485.250000px;}
.y51_c00118{bottom:493.800000px;}
.y21_c00118{bottom:505.050000px;}
.y50_c00118{bottom:511.500000px;}
.y20_c00118{bottom:523.200000px;}
.y4f_c00118{bottom:536.700000px;}
.y1f_c00118{bottom:549.900000px;}
.y4e_c00118{bottom:551.100000px;}
.y4d_c00118{bottom:565.500000px;}
.y1e_c00118{bottom:567.600000px;}
.y4c_c00118{bottom:579.900000px;}
.y1d_c00118{bottom:585.300000px;}
.y1c_c00118{bottom:603.300000px;}
.y4b_c00118{bottom:604.800000px;}
.y1b_c00118{bottom:621.300000px;}
.y4a_c00118{bottom:622.500000px;}
.y49_c00118{bottom:639.750000px;}
.y1a_c00118{bottom:642.900000px;}
.y19_c00118{bottom:660.900000px;}
.y48_c00118{bottom:666.300000px;}
.y47_c00118{bottom:684.300000px;}
.y18_c00118{bottom:687.600000px;}
.y46_c00118{bottom:702.300000px;}
.y17_c00118{bottom:705.300000px;}
.y45_c00118{bottom:720.000000px;}
.y16_c00118{bottom:723.300000px;}
.y44_c00118{bottom:737.250000px;}
.y15_c00118{bottom:744.900000px;}
.y43_c00118{bottom:754.950000px;}
.y14_c00118{bottom:767.100000px;}
.y42_c00118{bottom:777.300000px;}
.y13_c00118{bottom:785.100000px;}
.y41_c00118{bottom:794.550000px;}
.y12_c00118{bottom:803.100000px;}
.y11_c00118{bottom:823.650000px;}
.y40_c00118{bottom:825.900000px;}
.y10_c00118{bottom:844.200000px;}
.y3f_c00118{bottom:848.100000px;}
.yf_c00118{bottom:861.900000px;}
.y3e_c00118{bottom:865.800000px;}
.ye_c00118{bottom:880.200000px;}
.y3d_c00118{bottom:883.800000px;}
.yd_c00118{bottom:901.800000px;}
.y3c_c00118{bottom:906.150000px;}
.yc_c00118{bottom:919.800000px;}
.y3b_c00118{bottom:928.050000px;}
.yb_c00118{bottom:941.700000px;}
.y3a_c00118{bottom:949.950000px;}
.ya_c00118{bottom:959.400000px;}
.y39_c00118{bottom:967.650000px;}
.y38_c00118{bottom:989.250000px;}
.y9_c00118{bottom:990.300000px;}
.y37_c00118{bottom:1007.250000px;}
.y8_c00118{bottom:1012.950000px;}
.y36_c00118{bottom:1024.500000px;}
.y7_c00118{bottom:1030.650000px;}
.y35_c00118{bottom:1046.550000px;}
.y6_c00118{bottom:1048.650000px;}
.y5_c00118{bottom:1066.350000px;}
.y34_c00118{bottom:1068.750000px;}
.y33_c00118{bottom:1086.750000px;}
.y4_c00118{bottom:1088.550000px;}
.y32_c00118{bottom:1104.450000px;}
.y3_c00118{bottom:1106.250000px;}
.y2_c00118{bottom:1129.350000px;}
.y1_c00118{bottom:1131.450000px;}
.h8_c00118{height:48.000000px;}
.h7_c00118{height:54.000000px;}
.h5_c00118{height:60.000000px;}
.h4_c00118{height:66.000000px;}
.h3_c00118{height:72.000000px;}
.h6_c00118{height:78.000000px;}
.h2_c00118{height:84.000000px;}
.h0_c00118{height:1270.440033px;}
.h1_c00118{height:1270.500000px;}
.w1_c00118{width:953.250000px;}
.w0_c00118{width:953.280030px;}
.x0_c00118{left:0.000000px;}
.x77_c00118{left:63.300000px;}
.x44_c00118{left:64.500000px;}
.x12_c00118{left:66.300000px;}
.x5e_c00118{left:74.250000px;}
.x26_c00118{left:76.650000px;}
.x84_c00118{left:78.450000px;}
.x7e_c00118{left:79.500000px;}
.x3d_c00118{left:81.450000px;}
.x3_c00118{left:83.100000px;}
.xd_c00118{left:84.750000px;}
.x9a_c00118{left:101.100000px;}
.x88_c00118{left:102.300000px;}
.x2c_c00118{left:103.650000px;}
.x31_c00118{left:105.750000px;}
.x27_c00118{left:108.750000px;}
.x36_c00118{left:110.250000px;}
.x4c_c00118{left:112.650000px;}
.xe_c00118{left:115.050000px;}
.x94_c00118{left:116.250000px;}
.x7f_c00118{left:117.300000px;}
.x81_c00118{left:118.350000px;}
.x54_c00118{left:119.850000px;}
.x4f_c00118{left:123.900000px;}
.x45_c00118{left:125.700000px;}
.x7a_c00118{left:127.050000px;}
.x13_c00118{left:128.250000px;}
.x59_c00118{left:129.900000px;}
.x73_c00118{left:131.100000px;}
.x50_c00118{left:132.150000px;}
.x24_c00118{left:133.200000px;}
.x18_c00118{left:135.000000px;}
.x4_c00118{left:137.400000px;}
.x66_c00118{left:138.600000px;}
.x3e_c00118{left:139.800000px;}
.x23_c00118{left:141.900000px;}
.x28_c00118{left:144.000000px;}
.x32_c00118{left:146.400000px;}
.x6f_c00118{left:148.350000px;}
.x5a_c00118{left:149.400000px;}
.x47_c00118{left:152.250000px;}
.x19_c00118{left:156.300000px;}
.x25_c00118{left:157.350000px;}
.x61_c00118{left:158.550000px;}
.x42_c00118{left:161.100000px;}
.x8e_c00118{left:163.050000px;}
.x1c_c00118{left:164.250000px;}
.x46_c00118{left:165.600000px;}
.x82_c00118{left:168.000000px;}
.xf_c00118{left:169.650000px;}
.x55_c00118{left:171.300000px;}
.x1d_c00118{left:172.950000px;}
.x37_c00118{left:175.050000px;}
.x70_c00118{left:177.450000px;}
.x78_c00118{left:178.500000px;}
.x74_c00118{left:180.450000px;}
.x1a_c00118{left:181.500000px;}
.x33_c00118{left:184.500000px;}
.x14_c00118{left:186.900000px;}
.x5_c00118{left:189.300000px;}
.x1e_c00118{left:190.950000px;}
.x3f_c00118{left:192.300000px;}
.x62_c00118{left:194.550000px;}
.x97_c00118{left:196.200000px;}
.x2d_c00118{left:197.250000px;}
.x43_c00118{left:199.950000px;}
.x85_c00118{left:202.200000px;}
.x86_c00118{left:205.200000px;}
.x75_c00118{left:207.150000px;}
.x67_c00118{left:208.500000px;}
.x6_c00118{left:209.850000px;}
.x95_c00118{left:212.100000px;}
.x48_c00118{left:213.450000px;}
.x5b_c00118{left:217.500000px;}
.x6c_c00118{left:219.300000px;}
.x10_c00118{left:221.850000px;}
.x38_c00118{left:222.900000px;}
.x76_c00118{left:228.000000px;}
.x56_c00118{left:230.400000px;}
.x63_c00118{left:231.600000px;}
.x5f_c00118{left:235.950000px;}
.x11_c00118{left:238.350000px;}
.x29_c00118{left:239.400000px;}
.x8f_c00118{left:240.750000px;}
.x7_c00118{left:243.300000px;}
.x83_c00118{left:244.650000px;}
.x57_c00118{left:250.200000px;}
.x8d_c00118{left:251.550000px;}
.x98_c00118{left:254.100000px;}
.x39_c00118{left:255.600000px;}
.x7b_c00118{left:256.950000px;}
.x6d_c00118{left:258.900000px;}
.x15_c00118{left:261.000000px;}
.x60_c00118{left:262.200000px;}
.x8_c00118{left:263.400000px;}
.x2e_c00118{left:265.350000px;}
.x1f_c00118{left:268.050000px;}
.x89_c00118{left:270.000000px;}
.x51_c00118{left:273.600000px;}
.x68_c00118{left:274.800000px;}
.x40_c00118{left:275.850000px;}
.x96_c00118{left:276.900000px;}
.x34_c00118{left:278.400000px;}
.x49_c00118{left:281.850000px;}
.x2f_c00118{left:283.050000px;}
.x69_c00118{left:284.850000px;}
.x20_c00118{left:288.150000px;}
.x16_c00118{left:292.350000px;}
.x3a_c00118{left:294.150000px;}
.x8a_c00118{left:295.200000px;}
.x90_c00118{left:299.100000px;}
.x9_c00118{left:300.900000px;}
.x87_c00118{left:302.100000px;}
.x35_c00118{left:303.600000px;}
.x8b_c00118{left:304.800000px;}
.x2a_c00118{left:306.000000px;}
.x64_c00118{left:311.100000px;}
.x1_c00118{left:313.200000px;}
.x2b_c00118{left:315.300000px;}
.x8c_c00118{left:316.650000px;}
.xa_c00118{left:318.150000px;}
.x91_c00118{left:319.950000px;}
.x65_c00118{left:321.150000px;}
.x21_c00118{left:325.200000px;}
.x5c_c00118{left:327.750000px;}
.x3b_c00118{left:329.100000px;}
.x6a_c00118{left:330.900000px;}
.x79_c00118{left:332.250000px;}
.x17_c00118{left:334.800000px;}
.x41_c00118{left:336.000000px;}
.x1b_c00118{left:337.050000px;}
.x4d_c00118{left:338.400000px;}
.x52_c00118{left:341.250000px;}
.x99_c00118{left:344.100000px;}
.x5d_c00118{left:347.550000px;}
.x7c_c00118{left:354.600000px;}
.x4a_c00118{left:355.650000px;}
.x80_c00118{left:358.800000px;}
.x71_c00118{left:362.850000px;}
.x53_c00118{left:364.950000px;}
.x92_c00118{left:366.000000px;}
.xb_c00118{left:367.800000px;}
.x6b_c00118{left:370.200000px;}
.x30_c00118{left:371.700000px;}
.x6e_c00118{left:374.100000px;}
.x7d_c00118{left:375.450000px;}
.x3c_c00118{left:377.400000px;}
.x58_c00118{left:381.600000px;}
.x93_c00118{left:382.950000px;}
.xc_c00118{left:384.300000px;}
.x4e_c00118{left:388.800000px;}
.x72_c00118{left:397.800000px;}
.x4b_c00118{left:399.150000px;}
.x22_c00118{left:400.800000px;}
.xff_c00118{left:422.250000px;}
.xcd_c00118{left:423.750000px;}
.xe1_c00118{left:425.850000px;}
.x110_c00118{left:436.800000px;}
.x121_c00118{left:439.350000px;}
.xea_c00118{left:440.550000px;}
.xd3_c00118{left:441.750000px;}
.xa3_c00118{left:442.800000px;}
.x118_c00118{left:450.750000px;}
.x111_c00118{left:456.300000px;}
.x12a_c00118{left:457.950000px;}
.xaf_c00118{left:459.750000px;}
.x9b_c00118{left:461.100000px;}
.xb2_c00118{left:462.600000px;}
.xab_c00118{left:467.550000px;}
.x100_c00118{left:470.100000px;}
.x127_c00118{left:471.150000px;}
.xd4_c00118{left:472.650000px;}
.xf2_c00118{left:475.050000px;}
.xac_c00118{left:476.850000px;}
.xc2_c00118{left:478.500000px;}
.x134_c00118{left:480.150000px;}
.xfb_c00118{left:481.200000px;}
.xce_c00118{left:482.400000px;}
.x124_c00118{left:485.400000px;}
.x128_c00118{left:487.050000px;}
.x109_c00118{left:488.100000px;}
.xf6_c00118{left:489.600000px;}
.xdd_c00118{left:491.850000px;}
.xf3_c00118{left:493.350000px;}
.xb3_c00118{left:495.000000px;}
.xef_c00118{left:496.050000px;}
.xeb_c00118{left:499.950000px;}
.xdb_c00118{left:501.300000px;}
.xb0_c00118{left:502.650000px;}
.xe2_c00118{left:504.600000px;}
.x11b_c00118{left:505.800000px;}
.xc3_c00118{left:507.000000px;}
.xe5_c00118{left:508.050000px;}
.xad_c00118{left:510.000000px;}
.x122_c00118{left:511.350000px;}
.xf7_c00118{left:513.750000px;}
.x11f_c00118{left:515.400000px;}
.xfc_c00118{left:519.750000px;}
.xbf_c00118{left:522.300000px;}
.x9c_c00118{left:523.800000px;}
.xa4_c00118{left:524.850000px;}
.xdc_c00118{left:526.800000px;}
.x112_c00118{left:528.750000px;}
.xd5_c00118{left:529.950000px;}
.x9d_c00118{left:533.850000px;}
.xbd_c00118{left:535.950000px;}
.xc4_c00118{left:537.300000px;}
.x101_c00118{left:538.500000px;}
.xcc_c00118{left:540.750000px;}
.x10a_c00118{left:543.150000px;}
.xfd_c00118{left:544.950000px;}
.xb8_c00118{left:546.900000px;}
.xa5_c00118{left:547.950000px;}
.xae_c00118{left:549.900000px;}
.xcf_c00118{left:551.850000px;}
.x11c_c00118{left:553.350000px;}
.xc7_c00118{left:555.450000px;}
.xbe_c00118{left:559.050000px;}
.x10b_c00118{left:560.100000px;}
.xb4_c00118{left:561.600000px;}
.xde_c00118{left:563.850000px;}
.x125_c00118{left:565.350000px;}
.xb1_c00118{left:567.750000px;}
.xc5_c00118{left:571.500000px;}
.xe3_c00118{left:574.800000px;}
.x105_c00118{left:576.300000px;}
.xd6_c00118{left:578.550000px;}
.x119_c00118{left:580.050000px;}
.xdf_c00118{left:581.550000px;}
.x113_c00118{left:583.050000px;}
.xf8_c00118{left:586.950000px;}
.xe6_c00118{left:588.750000px;}
.xec_c00118{left:589.950000px;}
.xf4_c00118{left:591.300000px;}
.x102_c00118{left:592.500000px;}
.x131_c00118{left:593.550000px;}
.x123_c00118{left:595.500000px;}
.x10c_c00118{left:596.850000px;}
.x9e_c00118{left:598.950000px;}
.xa6_c00118{left:600.150000px;}
.x12b_c00118{left:602.100000px;}
.x114_c00118{left:606.150000px;}
.xd7_c00118{left:607.650000px;}
.x106_c00118{left:609.000000px;}
.xf0_c00118{left:611.850000px;}
.xb5_c00118{left:613.050000px;}
.xfe_c00118{left:614.100000px;}
.xc8_c00118{left:615.150000px;}
.xc6_c00118{left:616.950000px;}
.xd0_c00118{left:623.550000px;}
.x11d_c00118{left:624.600000px;}
.x103_c00118{left:625.950000px;}
.xed_c00118{left:630.300000px;}
.xc9_c00118{left:633.150000px;}
.x126_c00118{left:637.350000px;}
.xa7_c00118{left:640.050000px;}
.x9f_c00118{left:643.650000px;}
.x10d_c00118{left:646.350000px;}
.xee_c00118{left:649.050000px;}
.x12c_c00118{left:653.550000px;}
.xb9_c00118{left:654.900000px;}
.xd8_c00118{left:657.000000px;}
.xb6_c00118{left:658.350000px;}
.x12f_c00118{left:660.300000px;}
.x115_c00118{left:661.650000px;}
.xa0_c00118{left:662.700000px;}
.xe7_c00118{left:664.050000px;}
.xf1_c00118{left:667.200000px;}
.xe0_c00118{left:668.250000px;}
.x12d_c00118{left:670.500000px;}
.xca_c00118{left:672.450000px;}
.xa8_c00118{left:673.500000px;}
.x132_c00118{left:676.650000px;}
.xc0_c00118{left:677.850000px;}
.xf9_c00118{left:680.250000px;}
.xba_c00118{left:682.200000px;}
.x120_c00118{left:683.700000px;}
.xd1_c00118{left:685.500000px;}
.x116_c00118{left:688.350000px;}
.xd9_c00118{left:690.150000px;}
.xbb_c00118{left:692.250000px;}
.xa9_c00118{left:693.600000px;}
.xe8_c00118{left:696.150000px;}
.x129_c00118{left:699.450000px;}
.xcb_c00118{left:700.950000px;}
.xb7_c00118{left:705.900000px;}
.x10e_c00118{left:710.100000px;}
.x135_c00118{left:711.600000px;}
.xa1_c00118{left:713.850000px;}
.xe9_c00118{left:716.250000px;}
.xe4_c00118{left:717.450000px;}
.x133_c00118{left:719.550000px;}
.x104_c00118{left:721.050000px;}
.x107_c00118{left:722.700000px;}
.x12e_c00118{left:724.050000px;}
.xbc_c00118{left:725.700000px;}
.xaa_c00118{left:726.750000px;}
.xfa_c00118{left:728.100000px;}
.xc1_c00118{left:730.050000px;}
.xd2_c00118{left:734.400000px;}
.x2_c00118{left:735.900000px;}
.x11a_c00118{left:737.400000px;}
.x130_c00118{left:739.050000px;}
.xf5_c00118{left:740.400000px;}
.x10f_c00118{left:744.300000px;}
.x117_c00118{left:745.950000px;}
.x108_c00118{left:749.700000px;}
.xda_c00118{left:751.050000px;}
.x11e_c00118{left:754.800000px;}
.xa2_c00118{left:758.100000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws1_c00118{word-spacing:-9.664544pt;}
.ws4_c00118{word-spacing:-8.232897pt;}
.ws0_c00118{word-spacing:-4.705882pt;}
.ws3_c00118{word-spacing:-4.148148pt;}
.ws8_c00118{word-spacing:0.000000pt;}
.ws5_c00118{word-spacing:0.261438pt;}
.ws6_c00118{word-spacing:2.051282pt;}
.ws7_c00118{word-spacing:12.444444pt;}
.ws2_c00118{word-spacing:5535.555556pt;}
.fs6_c00118{font-size:42.666667pt;}
.fs5_c00118{font-size:48.000000pt;}
.fs3_c00118{font-size:53.333333pt;}
.fs2_c00118{font-size:58.666667pt;}
.fs1_c00118{font-size:64.000000pt;}
.fs4_c00118{font-size:69.333333pt;}
.fs0_c00118{font-size:74.666667pt;}
.y0_c00118{bottom:0.000000pt;}
.y61_c00118{bottom:158.133333pt;}
.y31_c00118{bottom:159.333333pt;}
.y30_c00118{bottom:179.200000pt;}
.y60_c00118{bottom:182.133333pt;}
.y2f_c00118{bottom:195.200000pt;}
.y5f_c00118{bottom:208.000000pt;}
.y2e_c00118{bottom:211.200000pt;}
.y5e_c00118{bottom:214.400000pt;}
.y5d_c00118{bottom:229.466667pt;}
.y2d_c00118{bottom:234.933333pt;}
.y2c_c00118{bottom:243.600000pt;}
.y5c_c00118{bottom:245.733333pt;}
.y5b_c00118{bottom:261.466667pt;}
.y2b_c00118{bottom:266.266667pt;}
.y2a_c00118{bottom:273.200000pt;}
.y5a_c00118{bottom:280.933333pt;}
.y29_c00118{bottom:288.933333pt;}
.y59_c00118{bottom:296.666667pt;}
.y28_c00118{bottom:309.466667pt;}
.y58_c00118{bottom:320.266667pt;}
.y57_c00118{bottom:336.266667pt;}
.y27_c00118{bottom:339.866667pt;}
.y56_c00118{bottom:352.000000pt;}
.y55_c00118{bottom:368.000000pt;}
.y26_c00118{bottom:370.266667pt;}
.y54_c00118{bottom:391.200000pt;}
.y25_c00118{bottom:392.533333pt;}
.y24_c00118{bottom:406.000000pt;}
.y53_c00118{bottom:407.200000pt;}
.y23_c00118{bottom:418.533333pt;}
.y52_c00118{bottom:422.933333pt;}
.y22_c00118{bottom:431.333333pt;}
.y51_c00118{bottom:438.933333pt;}
.y21_c00118{bottom:448.933333pt;}
.y50_c00118{bottom:454.666667pt;}
.y20_c00118{bottom:465.066667pt;}
.y4f_c00118{bottom:477.066667pt;}
.y1f_c00118{bottom:488.800000pt;}
.y4e_c00118{bottom:489.866667pt;}
.y4d_c00118{bottom:502.666667pt;}
.y1e_c00118{bottom:504.533333pt;}
.y4c_c00118{bottom:515.466667pt;}
.y1d_c00118{bottom:520.266667pt;}
.y1c_c00118{bottom:536.266667pt;}
.y4b_c00118{bottom:537.600000pt;}
.y1b_c00118{bottom:552.266667pt;}
.y4a_c00118{bottom:553.333333pt;}
.y49_c00118{bottom:568.666667pt;}
.y1a_c00118{bottom:571.466667pt;}
.y19_c00118{bottom:587.466667pt;}
.y48_c00118{bottom:592.266667pt;}
.y47_c00118{bottom:608.266667pt;}
.y18_c00118{bottom:611.200000pt;}
.y46_c00118{bottom:624.266667pt;}
.y17_c00118{bottom:626.933333pt;}
.y45_c00118{bottom:640.000000pt;}
.y16_c00118{bottom:642.933333pt;}
.y44_c00118{bottom:655.333333pt;}
.y15_c00118{bottom:662.133333pt;}
.y43_c00118{bottom:671.066667pt;}
.y14_c00118{bottom:681.866667pt;}
.y42_c00118{bottom:690.933333pt;}
.y13_c00118{bottom:697.866667pt;}
.y41_c00118{bottom:706.266667pt;}
.y12_c00118{bottom:713.866667pt;}
.y11_c00118{bottom:732.133333pt;}
.y40_c00118{bottom:734.133333pt;}
.y10_c00118{bottom:750.400000pt;}
.y3f_c00118{bottom:753.866667pt;}
.yf_c00118{bottom:766.133333pt;}
.y3e_c00118{bottom:769.600000pt;}
.ye_c00118{bottom:782.400000pt;}
.y3d_c00118{bottom:785.600000pt;}
.yd_c00118{bottom:801.600000pt;}
.y3c_c00118{bottom:805.466667pt;}
.yc_c00118{bottom:817.600000pt;}
.y3b_c00118{bottom:824.933333pt;}
.yb_c00118{bottom:837.066667pt;}
.y3a_c00118{bottom:844.400000pt;}
.ya_c00118{bottom:852.800000pt;}
.y39_c00118{bottom:860.133333pt;}
.y38_c00118{bottom:879.333333pt;}
.y9_c00118{bottom:880.266667pt;}
.y37_c00118{bottom:895.333333pt;}
.y8_c00118{bottom:900.400000pt;}
.y36_c00118{bottom:910.666667pt;}
.y7_c00118{bottom:916.133333pt;}
.y35_c00118{bottom:930.266667pt;}
.y6_c00118{bottom:932.133333pt;}
.y5_c00118{bottom:947.866667pt;}
.y34_c00118{bottom:950.000000pt;}
.y33_c00118{bottom:966.000000pt;}
.y4_c00118{bottom:967.600000pt;}
.y32_c00118{bottom:981.733333pt;}
.y3_c00118{bottom:983.333333pt;}
.y2_c00118{bottom:1003.866667pt;}
.y1_c00118{bottom:1005.733333pt;}
.h8_c00118{height:42.666667pt;}
.h7_c00118{height:48.000000pt;}
.h5_c00118{height:53.333333pt;}
.h4_c00118{height:58.666667pt;}
.h3_c00118{height:64.000000pt;}
.h6_c00118{height:69.333333pt;}
.h2_c00118{height:74.666667pt;}
.h0_c00118{height:1129.280029pt;}
.h1_c00118{height:1129.333333pt;}
.w1_c00118{width:847.333333pt;}
.w0_c00118{width:847.360027pt;}
.x0_c00118{left:0.000000pt;}
.x77_c00118{left:56.266667pt;}
.x44_c00118{left:57.333333pt;}
.x12_c00118{left:58.933333pt;}
.x5e_c00118{left:66.000000pt;}
.x26_c00118{left:68.133333pt;}
.x84_c00118{left:69.733333pt;}
.x7e_c00118{left:70.666667pt;}
.x3d_c00118{left:72.400000pt;}
.x3_c00118{left:73.866667pt;}
.xd_c00118{left:75.333333pt;}
.x9a_c00118{left:89.866667pt;}
.x88_c00118{left:90.933333pt;}
.x2c_c00118{left:92.133333pt;}
.x31_c00118{left:94.000000pt;}
.x27_c00118{left:96.666667pt;}
.x36_c00118{left:98.000000pt;}
.x4c_c00118{left:100.133333pt;}
.xe_c00118{left:102.266667pt;}
.x94_c00118{left:103.333333pt;}
.x7f_c00118{left:104.266667pt;}
.x81_c00118{left:105.200000pt;}
.x54_c00118{left:106.533333pt;}
.x4f_c00118{left:110.133333pt;}
.x45_c00118{left:111.733333pt;}
.x7a_c00118{left:112.933333pt;}
.x13_c00118{left:114.000000pt;}
.x59_c00118{left:115.466667pt;}
.x73_c00118{left:116.533333pt;}
.x50_c00118{left:117.466667pt;}
.x24_c00118{left:118.400000pt;}
.x18_c00118{left:120.000000pt;}
.x4_c00118{left:122.133333pt;}
.x66_c00118{left:123.200000pt;}
.x3e_c00118{left:124.266667pt;}
.x23_c00118{left:126.133333pt;}
.x28_c00118{left:128.000000pt;}
.x32_c00118{left:130.133333pt;}
.x6f_c00118{left:131.866667pt;}
.x5a_c00118{left:132.800000pt;}
.x47_c00118{left:135.333333pt;}
.x19_c00118{left:138.933333pt;}
.x25_c00118{left:139.866667pt;}
.x61_c00118{left:140.933333pt;}
.x42_c00118{left:143.200000pt;}
.x8e_c00118{left:144.933333pt;}
.x1c_c00118{left:146.000000pt;}
.x46_c00118{left:147.200000pt;}
.x82_c00118{left:149.333333pt;}
.xf_c00118{left:150.800000pt;}
.x55_c00118{left:152.266667pt;}
.x1d_c00118{left:153.733333pt;}
.x37_c00118{left:155.600000pt;}
.x70_c00118{left:157.733333pt;}
.x78_c00118{left:158.666667pt;}
.x74_c00118{left:160.400000pt;}
.x1a_c00118{left:161.333333pt;}
.x33_c00118{left:164.000000pt;}
.x14_c00118{left:166.133333pt;}
.x5_c00118{left:168.266667pt;}
.x1e_c00118{left:169.733333pt;}
.x3f_c00118{left:170.933333pt;}
.x62_c00118{left:172.933333pt;}
.x97_c00118{left:174.400000pt;}
.x2d_c00118{left:175.333333pt;}
.x43_c00118{left:177.733333pt;}
.x85_c00118{left:179.733333pt;}
.x86_c00118{left:182.400000pt;}
.x75_c00118{left:184.133333pt;}
.x67_c00118{left:185.333333pt;}
.x6_c00118{left:186.533333pt;}
.x95_c00118{left:188.533333pt;}
.x48_c00118{left:189.733333pt;}
.x5b_c00118{left:193.333333pt;}
.x6c_c00118{left:194.933333pt;}
.x10_c00118{left:197.200000pt;}
.x38_c00118{left:198.133333pt;}
.x76_c00118{left:202.666667pt;}
.x56_c00118{left:204.800000pt;}
.x63_c00118{left:205.866667pt;}
.x5f_c00118{left:209.733333pt;}
.x11_c00118{left:211.866667pt;}
.x29_c00118{left:212.800000pt;}
.x8f_c00118{left:214.000000pt;}
.x7_c00118{left:216.266667pt;}
.x83_c00118{left:217.466667pt;}
.x57_c00118{left:222.400000pt;}
.x8d_c00118{left:223.600000pt;}
.x98_c00118{left:225.866667pt;}
.x39_c00118{left:227.200000pt;}
.x7b_c00118{left:228.400000pt;}
.x6d_c00118{left:230.133333pt;}
.x15_c00118{left:232.000000pt;}
.x60_c00118{left:233.066667pt;}
.x8_c00118{left:234.133333pt;}
.x2e_c00118{left:235.866667pt;}
.x1f_c00118{left:238.266667pt;}
.x89_c00118{left:240.000000pt;}
.x51_c00118{left:243.200000pt;}
.x68_c00118{left:244.266667pt;}
.x40_c00118{left:245.200000pt;}
.x96_c00118{left:246.133333pt;}
.x34_c00118{left:247.466667pt;}
.x49_c00118{left:250.533333pt;}
.x2f_c00118{left:251.600000pt;}
.x69_c00118{left:253.200000pt;}
.x20_c00118{left:256.133333pt;}
.x16_c00118{left:259.866667pt;}
.x3a_c00118{left:261.466667pt;}
.x8a_c00118{left:262.400000pt;}
.x90_c00118{left:265.866667pt;}
.x9_c00118{left:267.466667pt;}
.x87_c00118{left:268.533333pt;}
.x35_c00118{left:269.866667pt;}
.x8b_c00118{left:270.933333pt;}
.x2a_c00118{left:272.000000pt;}
.x64_c00118{left:276.533333pt;}
.x1_c00118{left:278.400000pt;}
.x2b_c00118{left:280.266667pt;}
.x8c_c00118{left:281.466667pt;}
.xa_c00118{left:282.800000pt;}
.x91_c00118{left:284.400000pt;}
.x65_c00118{left:285.466667pt;}
.x21_c00118{left:289.066667pt;}
.x5c_c00118{left:291.333333pt;}
.x3b_c00118{left:292.533333pt;}
.x6a_c00118{left:294.133333pt;}
.x79_c00118{left:295.333333pt;}
.x17_c00118{left:297.600000pt;}
.x41_c00118{left:298.666667pt;}
.x1b_c00118{left:299.600000pt;}
.x4d_c00118{left:300.800000pt;}
.x52_c00118{left:303.333333pt;}
.x99_c00118{left:305.866667pt;}
.x5d_c00118{left:308.933333pt;}
.x7c_c00118{left:315.200000pt;}
.x4a_c00118{left:316.133333pt;}
.x80_c00118{left:318.933333pt;}
.x71_c00118{left:322.533333pt;}
.x53_c00118{left:324.400000pt;}
.x92_c00118{left:325.333333pt;}
.xb_c00118{left:326.933333pt;}
.x6b_c00118{left:329.066667pt;}
.x30_c00118{left:330.400000pt;}
.x6e_c00118{left:332.533333pt;}
.x7d_c00118{left:333.733333pt;}
.x3c_c00118{left:335.466667pt;}
.x58_c00118{left:339.200000pt;}
.x93_c00118{left:340.400000pt;}
.xc_c00118{left:341.600000pt;}
.x4e_c00118{left:345.600000pt;}
.x72_c00118{left:353.600000pt;}
.x4b_c00118{left:354.800000pt;}
.x22_c00118{left:356.266667pt;}
.xff_c00118{left:375.333333pt;}
.xcd_c00118{left:376.666667pt;}
.xe1_c00118{left:378.533333pt;}
.x110_c00118{left:388.266667pt;}
.x121_c00118{left:390.533333pt;}
.xea_c00118{left:391.600000pt;}
.xd3_c00118{left:392.666667pt;}
.xa3_c00118{left:393.600000pt;}
.x118_c00118{left:400.666667pt;}
.x111_c00118{left:405.600000pt;}
.x12a_c00118{left:407.066667pt;}
.xaf_c00118{left:408.666667pt;}
.x9b_c00118{left:409.866667pt;}
.xb2_c00118{left:411.200000pt;}
.xab_c00118{left:415.600000pt;}
.x100_c00118{left:417.866667pt;}
.x127_c00118{left:418.800000pt;}
.xd4_c00118{left:420.133333pt;}
.xf2_c00118{left:422.266667pt;}
.xac_c00118{left:423.866667pt;}
.xc2_c00118{left:425.333333pt;}
.x134_c00118{left:426.800000pt;}
.xfb_c00118{left:427.733333pt;}
.xce_c00118{left:428.800000pt;}
.x124_c00118{left:431.466667pt;}
.x128_c00118{left:432.933333pt;}
.x109_c00118{left:433.866667pt;}
.xf6_c00118{left:435.200000pt;}
.xdd_c00118{left:437.200000pt;}
.xf3_c00118{left:438.533333pt;}
.xb3_c00118{left:440.000000pt;}
.xef_c00118{left:440.933333pt;}
.xeb_c00118{left:444.400000pt;}
.xdb_c00118{left:445.600000pt;}
.xb0_c00118{left:446.800000pt;}
.xe2_c00118{left:448.533333pt;}
.x11b_c00118{left:449.600000pt;}
.xc3_c00118{left:450.666667pt;}
.xe5_c00118{left:451.600000pt;}
.xad_c00118{left:453.333333pt;}
.x122_c00118{left:454.533333pt;}
.xf7_c00118{left:456.666667pt;}
.x11f_c00118{left:458.133333pt;}
.xfc_c00118{left:462.000000pt;}
.xbf_c00118{left:464.266667pt;}
.x9c_c00118{left:465.600000pt;}
.xa4_c00118{left:466.533333pt;}
.xdc_c00118{left:468.266667pt;}
.x112_c00118{left:470.000000pt;}
.xd5_c00118{left:471.066667pt;}
.x9d_c00118{left:474.533333pt;}
.xbd_c00118{left:476.400000pt;}
.xc4_c00118{left:477.600000pt;}
.x101_c00118{left:478.666667pt;}
.xcc_c00118{left:480.666667pt;}
.x10a_c00118{left:482.800000pt;}
.xfd_c00118{left:484.400000pt;}
.xb8_c00118{left:486.133333pt;}
.xa5_c00118{left:487.066667pt;}
.xae_c00118{left:488.800000pt;}
.xcf_c00118{left:490.533333pt;}
.x11c_c00118{left:491.866667pt;}
.xc7_c00118{left:493.733333pt;}
.xbe_c00118{left:496.933333pt;}
.x10b_c00118{left:497.866667pt;}
.xb4_c00118{left:499.200000pt;}
.xde_c00118{left:501.200000pt;}
.x125_c00118{left:502.533333pt;}
.xb1_c00118{left:504.666667pt;}
.xc5_c00118{left:508.000000pt;}
.xe3_c00118{left:510.933333pt;}
.x105_c00118{left:512.266667pt;}
.xd6_c00118{left:514.266667pt;}
.x119_c00118{left:515.600000pt;}
.xdf_c00118{left:516.933333pt;}
.x113_c00118{left:518.266667pt;}
.xf8_c00118{left:521.733333pt;}
.xe6_c00118{left:523.333333pt;}
.xec_c00118{left:524.400000pt;}
.xf4_c00118{left:525.600000pt;}
.x102_c00118{left:526.666667pt;}
.x131_c00118{left:527.600000pt;}
.x123_c00118{left:529.333333pt;}
.x10c_c00118{left:530.533333pt;}
.x9e_c00118{left:532.400000pt;}
.xa6_c00118{left:533.466667pt;}
.x12b_c00118{left:535.200000pt;}
.x114_c00118{left:538.800000pt;}
.xd7_c00118{left:540.133333pt;}
.x106_c00118{left:541.333333pt;}
.xf0_c00118{left:543.866667pt;}
.xb5_c00118{left:544.933333pt;}
.xfe_c00118{left:545.866667pt;}
.xc8_c00118{left:546.800000pt;}
.xc6_c00118{left:548.400000pt;}
.xd0_c00118{left:554.266667pt;}
.x11d_c00118{left:555.200000pt;}
.x103_c00118{left:556.400000pt;}
.xed_c00118{left:560.266667pt;}
.xc9_c00118{left:562.800000pt;}
.x126_c00118{left:566.533333pt;}
.xa7_c00118{left:568.933333pt;}
.x9f_c00118{left:572.133333pt;}
.x10d_c00118{left:574.533333pt;}
.xee_c00118{left:576.933333pt;}
.x12c_c00118{left:580.933333pt;}
.xb9_c00118{left:582.133333pt;}
.xd8_c00118{left:584.000000pt;}
.xb6_c00118{left:585.200000pt;}
.x12f_c00118{left:586.933333pt;}
.x115_c00118{left:588.133333pt;}
.xa0_c00118{left:589.066667pt;}
.xe7_c00118{left:590.266667pt;}
.xf1_c00118{left:593.066667pt;}
.xe0_c00118{left:594.000000pt;}
.x12d_c00118{left:596.000000pt;}
.xca_c00118{left:597.733333pt;}
.xa8_c00118{left:598.666667pt;}
.x132_c00118{left:601.466667pt;}
.xc0_c00118{left:602.533333pt;}
.xf9_c00118{left:604.666667pt;}
.xba_c00118{left:606.400000pt;}
.x120_c00118{left:607.733333pt;}
.xd1_c00118{left:609.333333pt;}
.x116_c00118{left:611.866667pt;}
.xd9_c00118{left:613.466667pt;}
.xbb_c00118{left:615.333333pt;}
.xa9_c00118{left:616.533333pt;}
.xe8_c00118{left:618.800000pt;}
.x129_c00118{left:621.733333pt;}
.xcb_c00118{left:623.066667pt;}
.xb7_c00118{left:627.466667pt;}
.x10e_c00118{left:631.200000pt;}
.x135_c00118{left:632.533333pt;}
.xa1_c00118{left:634.533333pt;}
.xe9_c00118{left:636.666667pt;}
.xe4_c00118{left:637.733333pt;}
.x133_c00118{left:639.600000pt;}
.x104_c00118{left:640.933333pt;}
.x107_c00118{left:642.400000pt;}
.x12e_c00118{left:643.600000pt;}
.xbc_c00118{left:645.066667pt;}
.xaa_c00118{left:646.000000pt;}
.xfa_c00118{left:647.200000pt;}
.xc1_c00118{left:648.933333pt;}
.xd2_c00118{left:652.800000pt;}
.x2_c00118{left:654.133333pt;}
.x11a_c00118{left:655.466667pt;}
.x130_c00118{left:656.933333pt;}
.xf5_c00118{left:658.133333pt;}
.x10f_c00118{left:661.600000pt;}
.x117_c00118{left:663.066667pt;}
.x108_c00118{left:666.400000pt;}
.xda_c00118{left:667.600000pt;}
.x11e_c00118{left:670.933333pt;}
.xa2_c00118{left:673.866667pt;}
}





/* 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_c00119 {
    display:none;
  }
  .loading-indicator_c00119.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00119 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_c00119 { 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_c00119" -> "#page-container .classname_c00119")
 */
.pf_c00119 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00119 { /* 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_c00119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00119 { /* 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_c00119 { /* 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_c00119 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00119 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00119 {overflow:visible;}
  }
}
.c_c00119 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00119 { /* 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_c00119:after { /* webkit #35443 */
  content: '';
}
.t_c00119:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00119 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 */
}
.__c00119 { /* 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_c00119 { /* info for Javascript */
  display:none;
}
.l_c00119 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00119 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00119 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00119: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_c00119 {
    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_c00119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00119.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_c00119 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00119;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.000000;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;}
.me4_c00119{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00119{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m72_c00119{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m76_c00119{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00119{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md5_c00119{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00119{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m15_c00119{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m29_c00119{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00119{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00119{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00119{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00119{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m104_c00119{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m57_c00119{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00119{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m60_c00119{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m23_c00119{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00119{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m24_c00119{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00119{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00119{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00119{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m69_c00119{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m78_c00119{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m110_c00119{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00119{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00119{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00119{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00119{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m91_c00119{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md9_c00119{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00119{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00119{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m105_c00119{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m103_c00119{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.md4_c00119{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00119{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00119{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me7_c00119{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m26_c00119{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00119{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5_c00119{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m40_c00119{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m35_c00119{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00119{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00119{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m67_c00119{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m36_c00119{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m61_c00119{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m88_c00119{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00119{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.me1_c00119{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m13_c00119{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.mc_c00119{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.med_c00119{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00119{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00119{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00119{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00119{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m37_c00119{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00119{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m98_c00119{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m68_c00119{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00119{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7_c00119{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00119{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m20_c00119{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.meb_c00119{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md3_c00119{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m43_c00119{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me2_c00119{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00119{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m80_c00119{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00119{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m48_c00119{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00119{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9_c00119{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00119{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m101_c00119{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m106_c00119{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m10_c00119{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00119{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m95_c00119{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00119{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00119{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00119{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00119{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00119{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m18_c00119{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00119{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m25_c00119{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m93_c00119{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m44_c00119{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00119{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mff_c00119{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m79_c00119{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me5_c00119{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00119{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m14_c00119{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00119{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m30_c00119{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00119{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.me0_c00119{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00119{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m71_c00119{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00119{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma_c00119{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00119{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mb_c00119{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md6_c00119{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m34_c00119{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mae_c00119{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00119{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00119{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00119{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00119{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m16_c00119{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mec_c00119{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m33_c00119{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md7_c00119{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m53_c00119{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m77_c00119{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m81_c00119{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00119{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00119{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00119{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m41_c00119{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mda_c00119{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00119{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00119{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m92_c00119{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00119{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m111_c00119{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me6_c00119{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m102_c00119{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m6_c00119{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m89_c00119{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m82_c00119{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m54_c00119{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00119{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00119{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00119{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00119{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m74_c00119{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00119{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00119{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m90_c00119{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m39_c00119{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00119{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me3_c00119{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m86_c00119{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m100_c00119{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m109_c00119{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00119{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m32_c00119{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m19_c00119{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00119{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md2_c00119{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m85_c00119{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8_c00119{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00119{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00119{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00119{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m64_c00119{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mf_c00119{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00119{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00119{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00119{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00119{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.maf_c00119{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00119{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00119{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m108_c00119{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m97_c00119{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m12_c00119{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00119{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m42_c00119{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00119{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00119{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00119{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00119{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me8_c00119{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00119{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00119{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m96_c00119{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m83_c00119{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m56_c00119{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m52_c00119{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m47_c00119{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00119{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2_c00119{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m55_c00119{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m84_c00119{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m49_c00119{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mba_c00119{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m51_c00119{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m22_c00119{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00119{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m62_c00119{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m99_c00119{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m0_c00119{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m63_c00119{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m31_c00119{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00119{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00119{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m66_c00119{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00119{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m65_c00119{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);}
.mad_c00119{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00119{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00119{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mac_c00119{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m58_c00119{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m107_c00119{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m75_c00119{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00119{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00119{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m94_c00119{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00119{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m11_c00119{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mab_c00119{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00119{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mef_c00119{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00119{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00119{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00119{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m17_c00119{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00119{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m28_c00119{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m50_c00119{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00119{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m70_c00119{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.maa_c00119{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mce_c00119{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00119{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00119{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.md1_c00119{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m46_c00119{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mee_c00119{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00119{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00119{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m21_c00119{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.md_c00119{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00119{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00119{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m27_c00119{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00119{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m87_c00119{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m59_c00119{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00119{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.md0_c00119{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00119{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00119{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m73_c00119{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.md8_c00119{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00119{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.me_c00119{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00119{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m45_c00119{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.mea_c00119{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.m38_c00119{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mde_c00119{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me9_c00119{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00119{transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00119{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00119{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(0.455750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455750,0.000000,0.000000,0.250000,0,0);}
.mca_c00119{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00119{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00119{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00119{transform:matrix(0.861750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.861750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.861750,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls0_c00119{letter-spacing:0.000000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{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__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00119{word-spacing:-12.527473px;}
.ws2_c00119{word-spacing:-11.267658px;}
.ws0_c00119{word-spacing:-2.666667px;}
.ws3_c00119{word-spacing:-1.714703px;}
.ws4_c00119{word-spacing:0.000000px;}
.fc0_c00119{color:transparent;}
.fs6_c00119{font-size:18.000000px;}
.fs7_c00119{font-size:42.000000px;}
.fs4_c00119{font-size:54.000000px;}
.fs2_c00119{font-size:60.000000px;}
.fs3_c00119{font-size:66.000000px;}
.fs5_c00119{font-size:72.000000px;}
.fs0_c00119{font-size:78.000000px;}
.fs1_c00119{font-size:84.000000px;}
.y0_c00119{bottom:0.000000px;}
.y5e_c00119{bottom:155.850000px;}
.y31_c00119{bottom:175.350000px;}
.y30_c00119{bottom:189.750000px;}
.y5d_c00119{bottom:193.350000px;}
.y2f_c00119{bottom:204.150000px;}
.y5c_c00119{bottom:215.700000px;}
.y2e_c00119{bottom:218.550000px;}
.y2d_c00119{bottom:232.200000px;}
.y5b_c00119{bottom:237.600000px;}
.y2c_c00119{bottom:246.900000px;}
.y5a_c00119{bottom:255.600000px;}
.y59_c00119{bottom:273.600000px;}
.y58_c00119{bottom:295.950000px;}
.y2b_c00119{bottom:299.550000px;}
.y2a_c00119{bottom:317.550000px;}
.y57_c00119{bottom:322.800000px;}
.y29_c00119{bottom:344.100000px;}
.y56_c00119{bottom:349.500000px;}
.y28_c00119{bottom:366.150000px;}
.y55_c00119{bottom:367.500000px;}
.y27_c00119{bottom:384.450000px;}
.y54_c00119{bottom:389.400000px;}
.y26_c00119{bottom:405.300000px;}
.y53_c00119{bottom:407.400000px;}
.y25_c00119{bottom:425.250000px;}
.y52_c00119{bottom:425.400000px;}
.y51_c00119{bottom:443.100000px;}
.y24_c00119{bottom:443.250000px;}
.y23_c00119{bottom:460.500000px;}
.y50_c00119{bottom:465.000000px;}
.y22_c00119{bottom:481.650000px;}
.y4f_c00119{bottom:482.700000px;}
.y21_c00119{bottom:500.400000px;}
.y4e_c00119{bottom:505.350000px;}
.y20_c00119{bottom:518.400000px;}
.y4d_c00119{bottom:523.350000px;}
.y1f_c00119{bottom:536.400000px;}
.y4c_c00119{bottom:541.050000px;}
.y1e_c00119{bottom:553.650000px;}
.y4b_c00119{bottom:568.950000px;}
.y1d_c00119{bottom:571.650000px;}
.y4a_c00119{bottom:576.450000px;}
.y49_c00119{bottom:587.250000px;}
.y1c_c00119{bottom:593.250000px;}
.y48_c00119{bottom:597.300000px;}
.y1b_c00119{bottom:611.250000px;}
.y47_c00119{bottom:627.750000px;}
.y1a_c00119{bottom:637.500000px;}
.y46_c00119{bottom:650.100000px;}
.y19_c00119{bottom:660.300000px;}
.y45_c00119{bottom:672.000000px;}
.y18_c00119{bottom:678.300000px;}
.y44_c00119{bottom:694.350000px;}
.y17_c00119{bottom:700.500000px;}
.y43_c00119{bottom:716.700000px;}
.y16_c00119{bottom:718.500000px;}
.y15_c00119{bottom:736.200000px;}
.y42_c00119{bottom:739.050000px;}
.y14_c00119{bottom:754.200000px;}
.y13_c00119{bottom:771.900000px;}
.y41_c00119{bottom:773.250000px;}
.y12_c00119{bottom:798.000000px;}
.y40_c00119{bottom:812.850000px;}
.y11_c00119{bottom:815.700000px;}
.y3f_c00119{bottom:835.200000px;}
.y10_c00119{bottom:840.900000px;}
.y3e_c00119{bottom:853.200000px;}
.yf_c00119{bottom:859.350000px;}
.y3d_c00119{bottom:875.100000px;}
.ye_c00119{bottom:877.650000px;}
.y3c_c00119{bottom:893.100000px;}
.yd_c00119{bottom:895.650000px;}
.y3b_c00119{bottom:911.100000px;}
.yc_c00119{bottom:913.650000px;}
.y3a_c00119{bottom:932.100000px;}
.yb_c00119{bottom:939.900000px;}
.y39_c00119{bottom:952.200000px;}
.ya_c00119{bottom:965.550000px;}
.y38_c00119{bottom:970.200000px;}
.y9_c00119{bottom:987.450000px;}
.y37_c00119{bottom:988.200000px;}
.y8_c00119{bottom:1009.800000px;}
.y36_c00119{bottom:1014.900000px;}
.y7_c00119{bottom:1027.800000px;}
.y35_c00119{bottom:1032.450000px;}
.y6_c00119{bottom:1045.800000px;}
.y34_c00119{bottom:1050.450000px;}
.y5_c00119{bottom:1066.350000px;}
.y33_c00119{bottom:1068.750000px;}
.y4_c00119{bottom:1085.850000px;}
.y32_c00119{bottom:1086.450000px;}
.y3_c00119{bottom:1104.150000px;}
.y1_c00119{bottom:1130.100000px;}
.y2_c00119{bottom:1131.150000px;}
.h8_c00119{height:18.000000px;}
.h9_c00119{height:42.000000px;}
.h6_c00119{height:54.000000px;}
.h4_c00119{height:60.000000px;}
.h5_c00119{height:66.000000px;}
.h7_c00119{height:72.000000px;}
.h2_c00119{height:78.000000px;}
.h3_c00119{height:84.000000px;}
.h1_c00119{height:1273.500000px;}
.h0_c00119{height:1273.679993px;}
.w1_c00119{width:953.250000px;}
.w0_c00119{width:953.280030px;}
.x0_c00119{left:0.000000px;}
.x91_c00119{left:190.200000px;}
.x85_c00119{left:191.700000px;}
.x62_c00119{left:193.650000px;}
.x3e_c00119{left:195.000000px;}
.x1_c00119{left:196.200000px;}
.x22_c00119{left:197.250000px;}
.x66_c00119{left:200.550000px;}
.x92_c00119{left:203.100000px;}
.x23_c00119{left:205.950000px;}
.x81_c00119{left:207.000000px;}
.x86_c00119{left:209.400000px;}
.x42_c00119{left:211.200000px;}
.x79_c00119{left:212.850000px;}
.x3_c00119{left:213.900000px;}
.x8c_c00119{left:219.150000px;}
.x4f_c00119{left:225.750000px;}
.x4b_c00119{left:229.950000px;}
.x82_c00119{left:231.450000px;}
.x2a_c00119{left:232.950000px;}
.x39_c00119{left:236.400000px;}
.x24_c00119{left:237.600000px;}
.x34_c00119{left:239.850000px;}
.x63_c00119{left:242.250000px;}
.x6c_c00119{left:243.450000px;}
.x1d_c00119{left:245.100000px;}
.x3c_c00119{left:248.700000px;}
.x16_c00119{left:250.800000px;}
.x70_c00119{left:251.850000px;}
.xd_c00119{left:254.550000px;}
.x20_c00119{left:256.050000px;}
.x5d_c00119{left:257.250000px;}
.x4_c00119{left:258.600000px;}
.x89_c00119{left:261.750000px;}
.x21_c00119{left:262.800000px;}
.x43_c00119{left:265.500000px;}
.x7a_c00119{left:267.900000px;}
.x25_c00119{left:271.050000px;}
.x87_c00119{left:273.450000px;}
.x93_c00119{left:274.800000px;}
.xe_c00119{left:276.150000px;}
.x2b_c00119{left:277.950000px;}
.x7f_c00119{left:279.300000px;}
.x47_c00119{left:280.350000px;}
.x3d_c00119{left:282.150000px;}
.x1e_c00119{left:283.200000px;}
.x5_c00119{left:284.550000px;}
.x11_c00119{left:285.750000px;}
.x55_c00119{left:287.100000px;}
.x6d_c00119{left:288.150000px;}
.x44_c00119{left:290.400000px;}
.x64_c00119{left:291.900000px;}
.x72_c00119{left:292.950000px;}
.x2e_c00119{left:294.300000px;}
.x17_c00119{left:296.850000px;}
.x83_c00119{left:299.850000px;}
.x3a_c00119{left:301.500000px;}
.x5e_c00119{left:303.300000px;}
.x1f_c00119{left:304.800000px;}
.x74_c00119{left:307.500000px;}
.x73_c00119{left:309.300000px;}
.x4c_c00119{left:310.650000px;}
.x48_c00119{left:312.450000px;}
.x8a_c00119{left:314.250000px;}
.x59_c00119{left:318.300000px;}
.x6_c00119{left:322.350000px;}
.xf_c00119{left:323.700000px;}
.x5f_c00119{left:325.950000px;}
.x69_c00119{left:327.900000px;}
.x7b_c00119{left:330.900000px;}
.x94_c00119{left:332.100000px;}
.x2f_c00119{left:336.450000px;}
.x3f_c00119{left:339.000000px;}
.x75_c00119{left:340.650000px;}
.x12_c00119{left:344.400000px;}
.x7c_c00119{left:346.800000px;}
.x18_c00119{left:349.350000px;}
.x10_c00119{left:353.250000px;}
.x26_c00119{left:354.300000px;}
.x95_c00119{left:355.500000px;}
.x7_c00119{left:357.600000px;}
.x45_c00119{left:358.800000px;}
.x2c_c00119{left:360.450000px;}
.x30_c00119{left:361.950000px;}
.x65_c00119{left:363.150000px;}
.x8d_c00119{left:364.650000px;}
.x6a_c00119{left:367.500000px;}
.x8b_c00119{left:369.000000px;}
.x49_c00119{left:370.050000px;}
.x7d_c00119{left:371.850000px;}
.x76_c00119{left:376.650000px;}
.x5a_c00119{left:378.000000px;}
.x8_c00119{left:380.250000px;}
.x56_c00119{left:384.000000px;}
.x6e_c00119{left:387.150000px;}
.x67_c00119{left:388.350000px;}
.x40_c00119{left:389.400000px;}
.x84_c00119{left:390.900000px;}
.x52_c00119{left:392.850000px;}
.x19_c00119{left:395.400000px;}
.x50_c00119{left:396.450000px;}
.x9_c00119{left:398.250000px;}
.x57_c00119{left:400.500000px;}
.x35_c00119{left:402.150000px;}
.x60_c00119{left:405.150000px;}
.x27_c00119{left:407.250000px;}
.x77_c00119{left:408.300000px;}
.x13_c00119{left:409.500000px;}
.x88_c00119{left:410.700000px;}
.x4d_c00119{left:415.050000px;}
.x28_c00119{left:417.000000px;}
.x46_c00119{left:418.950000px;}
.x8e_c00119{left:422.400000px;}
.x7e_c00119{left:424.050000px;}
.x53_c00119{left:427.050000px;}
.x1a_c00119{left:429.900000px;}
.x6f_c00119{left:431.400000px;}
.x61_c00119{left:433.200000px;}
.x4a_c00119{left:434.400000px;}
.x2_c00119{left:435.600000px;}
.x36_c00119{left:437.100000px;}
.x8f_c00119{left:440.100000px;}
.x54_c00119{left:441.150000px;}
.x6b_c00119{left:443.700000px;}
.x58_c00119{left:444.750000px;}
.x71_c00119{left:445.950000px;}
.x31_c00119{left:447.300000px;}
.x4e_c00119{left:451.050000px;}
.x68_c00119{left:456.750000px;}
.xa_c00119{left:461.250000px;}
.x80_c00119{left:462.600000px;}
.x29_c00119{left:464.550000px;}
.x37_c00119{left:466.650000px;}
.x5b_c00119{left:469.050000px;}
.x51_c00119{left:471.000000px;}
.x3b_c00119{left:474.150000px;}
.x32_c00119{left:475.350000px;}
.x78_c00119{left:477.000000px;}
.x2d_c00119{left:480.000000px;}
.xb_c00119{left:482.100000px;}
.x14_c00119{left:488.700000px;}
.x38_c00119{left:489.750000px;}
.x1b_c00119{left:494.700000px;}
.x5c_c00119{left:496.350000px;}
.xc_c00119{left:500.850000px;}
.x1c_c00119{left:504.000000px;}
.x15_c00119{left:508.200000px;}
.x33_c00119{left:511.650000px;}
.x90_c00119{left:513.900000px;}
.x41_c00119{left:521.550000px;}
.xe2_c00119{left:551.100000px;}
.xbf_c00119{left:552.300000px;}
.x9e_c00119{left:568.050000px;}
.xa7_c00119{left:569.700000px;}
.xbc_c00119{left:570.900000px;}
.xca_c00119{left:579.300000px;}
.x104_c00119{left:583.950000px;}
.x115_c00119{left:585.300000px;}
.xe6_c00119{left:586.800000px;}
.xe9_c00119{left:588.150000px;}
.x96_c00119{left:589.650000px;}
.x9f_c00119{left:593.250000px;}
.xf8_c00119{left:594.300000px;}
.xcb_c00119{left:596.250000px;}
.xc0_c00119{left:597.600000px;}
.xf2_c00119{left:602.100000px;}
.xa0_c00119{left:605.100000px;}
.xcc_c00119{left:609.150000px;}
.x10d_c00119{left:610.950000px;}
.xd7_c00119{left:612.300000px;}
.x112_c00119{left:614.700000px;}
.xa8_c00119{left:616.500000px;}
.xb6_c00119{left:618.600000px;}
.xdf_c00119{left:621.000000px;}
.xbd_c00119{left:622.800000px;}
.xc3_c00119{left:624.300000px;}
.x10a_c00119{left:625.350000px;}
.x117_c00119{left:628.650000px;}
.xf3_c00119{left:630.150000px;}
.xeb_c00119{left:631.200000px;}
.x11e_c00119{left:632.250000px;}
.x11a_c00119{left:636.450000px;}
.x10c_c00119{left:640.800000px;}
.xcf_c00119{left:641.850000px;}
.xdb_c00119{left:643.050000px;}
.xe0_c00119{left:644.400000px;}
.xe7_c00119{left:646.500000px;}
.xcd_c00119{left:648.450000px;}
.x105_c00119{left:649.800000px;}
.xea_c00119{left:652.950000px;}
.x97_c00119{left:654.450000px;}
.xa1_c00119{left:657.600000px;}
.xf9_c00119{left:659.100000px;}
.xc9_c00119{left:660.450000px;}
.x11b_c00119{left:661.650000px;}
.x10e_c00119{left:662.850000px;}
.xa9_c00119{left:664.350000px;}
.xee_c00119{left:665.700000px;}
.xce_c00119{left:666.750000px;}
.xc1_c00119{left:668.850000px;}
.xec_c00119{left:671.850000px;}
.xd8_c00119{left:673.500000px;}
.x98_c00119{left:674.550000px;}
.xa2_c00119{left:677.400000px;}
.xb7_c00119{left:678.750000px;}
.xb2_c00119{left:679.800000px;}
.xed_c00119{left:684.750000px;}
.xd0_c00119{left:686.550000px;}
.xe3_c00119{left:688.650000px;}
.xaa_c00119{left:689.850000px;}
.x107_c00119{left:691.800000px;}
.xf4_c00119{left:695.700000px;}
.x116_c00119{left:696.900000px;}
.xe4_c00119{left:698.700000px;}
.x100_c00119{left:701.250000px;}
.xc4_c00119{left:703.500000px;}
.xd3_c00119{left:705.150000px;}
.xfa_c00119{left:706.950000px;}
.xdc_c00119{left:710.850000px;}
.xab_c00119{left:713.250000px;}
.xe8_c00119{left:714.450000px;}
.xbe_c00119{left:718.200000px;}
.x99_c00119{left:719.250000px;}
.xe1_c00119{left:722.400000px;}
.xa3_c00119{left:725.250000px;}
.xef_c00119{left:727.650000px;}
.x101_c00119{left:730.050000px;}
.xf5_c00119{left:732.000000px;}
.x113_c00119{left:733.200000px;}
.x9a_c00119{left:735.150000px;}
.xb3_c00119{left:737.400000px;}
.xf0_c00119{left:740.550000px;}
.xfc_c00119{left:741.600000px;}
.xd4_c00119{left:744.000000px;}
.xb8_c00119{left:748.350000px;}
.xa4_c00119{left:749.400000px;}
.x109_c00119{left:752.400000px;}
.xfb_c00119{left:755.550000px;}
.xac_c00119{left:757.500000px;}
.x9b_c00119{left:759.600000px;}
.xc5_c00119{left:761.850000px;}
.xb4_c00119{left:762.900000px;}
.xdd_c00119{left:765.900000px;}
.xd9_c00119{left:768.150000px;}
.xad_c00119{left:769.350000px;}
.xfd_c00119{left:771.450000px;}
.x108_c00119{left:776.400000px;}
.xde_c00119{left:777.450000px;}
.x10b_c00119{left:781.650000px;}
.xe5_c00119{left:783.000000px;}
.x9c_c00119{left:785.850000px;}
.xb9_c00119{left:789.450000px;}
.x118_c00119{left:790.500000px;}
.x10f_c00119{left:793.500000px;}
.xfe_c00119{left:795.900000px;}
.xc6_c00119{left:798.150000px;}
.xa5_c00119{left:802.650000px;}
.xae_c00119{left:803.850000px;}
.xba_c00119{left:806.700000px;}
.x119_c00119{left:807.750000px;}
.xf6_c00119{left:810.150000px;}
.xd5_c00119{left:816.000000px;}
.x102_c00119{left:819.000000px;}
.xda_c00119{left:820.050000px;}
.xb5_c00119{left:821.550000px;}
.x114_c00119{left:822.900000px;}
.x11c_c00119{left:825.750000px;}
.xd1_c00119{left:827.250000px;}
.xaf_c00119{left:829.050000px;}
.xf7_c00119{left:831.900000px;}
.x110_c00119{left:833.850000px;}
.xff_c00119{left:835.800000px;}
.xbb_c00119{left:842.400000px;}
.x9d_c00119{left:847.050000px;}
.xc7_c00119{left:848.850000px;}
.xf1_c00119{left:849.900000px;}
.x103_c00119{left:851.100000px;}
.xb0_c00119{left:855.750000px;}
.xc2_c00119{left:858.300000px;}
.x106_c00119{left:859.950000px;}
.xd2_c00119{left:862.500000px;}
.x111_c00119{left:864.450000px;}
.x11d_c00119{left:867.900000px;}
.xb1_c00119{left:870.900000px;}
.xd6_c00119{left:873.300000px;}
.xc8_c00119{left:879.750000px;}
.xa6_c00119{left:883.650000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws1_c00119{word-spacing:-11.135531pt;}
.ws2_c00119{word-spacing:-10.015696pt;}
.ws0_c00119{word-spacing:-2.370370pt;}
.ws3_c00119{word-spacing:-1.524180pt;}
.ws4_c00119{word-spacing:0.000000pt;}
.fs6_c00119{font-size:16.000000pt;}
.fs7_c00119{font-size:37.333333pt;}
.fs4_c00119{font-size:48.000000pt;}
.fs2_c00119{font-size:53.333333pt;}
.fs3_c00119{font-size:58.666667pt;}
.fs5_c00119{font-size:64.000000pt;}
.fs0_c00119{font-size:69.333333pt;}
.fs1_c00119{font-size:74.666667pt;}
.y0_c00119{bottom:0.000000pt;}
.y5e_c00119{bottom:138.533333pt;}
.y31_c00119{bottom:155.866667pt;}
.y30_c00119{bottom:168.666667pt;}
.y5d_c00119{bottom:171.866667pt;}
.y2f_c00119{bottom:181.466667pt;}
.y5c_c00119{bottom:191.733333pt;}
.y2e_c00119{bottom:194.266667pt;}
.y2d_c00119{bottom:206.400000pt;}
.y5b_c00119{bottom:211.200000pt;}
.y2c_c00119{bottom:219.466667pt;}
.y5a_c00119{bottom:227.200000pt;}
.y59_c00119{bottom:243.200000pt;}
.y58_c00119{bottom:263.066667pt;}
.y2b_c00119{bottom:266.266667pt;}
.y2a_c00119{bottom:282.266667pt;}
.y57_c00119{bottom:286.933333pt;}
.y29_c00119{bottom:305.866667pt;}
.y56_c00119{bottom:310.666667pt;}
.y28_c00119{bottom:325.466667pt;}
.y55_c00119{bottom:326.666667pt;}
.y27_c00119{bottom:341.733333pt;}
.y54_c00119{bottom:346.133333pt;}
.y26_c00119{bottom:360.266667pt;}
.y53_c00119{bottom:362.133333pt;}
.y25_c00119{bottom:378.000000pt;}
.y52_c00119{bottom:378.133333pt;}
.y51_c00119{bottom:393.866667pt;}
.y24_c00119{bottom:394.000000pt;}
.y23_c00119{bottom:409.333333pt;}
.y50_c00119{bottom:413.333333pt;}
.y22_c00119{bottom:428.133333pt;}
.y4f_c00119{bottom:429.066667pt;}
.y21_c00119{bottom:444.800000pt;}
.y4e_c00119{bottom:449.200000pt;}
.y20_c00119{bottom:460.800000pt;}
.y4d_c00119{bottom:465.200000pt;}
.y1f_c00119{bottom:476.800000pt;}
.y4c_c00119{bottom:480.933333pt;}
.y1e_c00119{bottom:492.133333pt;}
.y4b_c00119{bottom:505.733333pt;}
.y1d_c00119{bottom:508.133333pt;}
.y4a_c00119{bottom:512.400000pt;}
.y49_c00119{bottom:522.000000pt;}
.y1c_c00119{bottom:527.333333pt;}
.y48_c00119{bottom:530.933333pt;}
.y1b_c00119{bottom:543.333333pt;}
.y47_c00119{bottom:558.000000pt;}
.y1a_c00119{bottom:566.666667pt;}
.y46_c00119{bottom:577.866667pt;}
.y19_c00119{bottom:586.933333pt;}
.y45_c00119{bottom:597.333333pt;}
.y18_c00119{bottom:602.933333pt;}
.y44_c00119{bottom:617.200000pt;}
.y17_c00119{bottom:622.666667pt;}
.y43_c00119{bottom:637.066667pt;}
.y16_c00119{bottom:638.666667pt;}
.y15_c00119{bottom:654.400000pt;}
.y42_c00119{bottom:656.933333pt;}
.y14_c00119{bottom:670.400000pt;}
.y13_c00119{bottom:686.133333pt;}
.y41_c00119{bottom:687.333333pt;}
.y12_c00119{bottom:709.333333pt;}
.y40_c00119{bottom:722.533333pt;}
.y11_c00119{bottom:725.066667pt;}
.y3f_c00119{bottom:742.400000pt;}
.y10_c00119{bottom:747.466667pt;}
.y3e_c00119{bottom:758.400000pt;}
.yf_c00119{bottom:763.866667pt;}
.y3d_c00119{bottom:777.866667pt;}
.ye_c00119{bottom:780.133333pt;}
.y3c_c00119{bottom:793.866667pt;}
.yd_c00119{bottom:796.133333pt;}
.y3b_c00119{bottom:809.866667pt;}
.yc_c00119{bottom:812.133333pt;}
.y3a_c00119{bottom:828.533333pt;}
.yb_c00119{bottom:835.466667pt;}
.y39_c00119{bottom:846.400000pt;}
.ya_c00119{bottom:858.266667pt;}
.y38_c00119{bottom:862.400000pt;}
.y9_c00119{bottom:877.733333pt;}
.y37_c00119{bottom:878.400000pt;}
.y8_c00119{bottom:897.600000pt;}
.y36_c00119{bottom:902.133333pt;}
.y7_c00119{bottom:913.600000pt;}
.y35_c00119{bottom:917.733333pt;}
.y6_c00119{bottom:929.600000pt;}
.y34_c00119{bottom:933.733333pt;}
.y5_c00119{bottom:947.866667pt;}
.y33_c00119{bottom:950.000000pt;}
.y4_c00119{bottom:965.200000pt;}
.y32_c00119{bottom:965.733333pt;}
.y3_c00119{bottom:981.466667pt;}
.y1_c00119{bottom:1004.533333pt;}
.y2_c00119{bottom:1005.466667pt;}
.h8_c00119{height:16.000000pt;}
.h9_c00119{height:37.333333pt;}
.h6_c00119{height:48.000000pt;}
.h4_c00119{height:53.333333pt;}
.h5_c00119{height:58.666667pt;}
.h7_c00119{height:64.000000pt;}
.h2_c00119{height:69.333333pt;}
.h3_c00119{height:74.666667pt;}
.h1_c00119{height:1132.000000pt;}
.h0_c00119{height:1132.159993pt;}
.w1_c00119{width:847.333333pt;}
.w0_c00119{width:847.360027pt;}
.x0_c00119{left:0.000000pt;}
.x91_c00119{left:169.066667pt;}
.x85_c00119{left:170.400000pt;}
.x62_c00119{left:172.133333pt;}
.x3e_c00119{left:173.333333pt;}
.x1_c00119{left:174.400000pt;}
.x22_c00119{left:175.333333pt;}
.x66_c00119{left:178.266667pt;}
.x92_c00119{left:180.533333pt;}
.x23_c00119{left:183.066667pt;}
.x81_c00119{left:184.000000pt;}
.x86_c00119{left:186.133333pt;}
.x42_c00119{left:187.733333pt;}
.x79_c00119{left:189.200000pt;}
.x3_c00119{left:190.133333pt;}
.x8c_c00119{left:194.800000pt;}
.x4f_c00119{left:200.666667pt;}
.x4b_c00119{left:204.400000pt;}
.x82_c00119{left:205.733333pt;}
.x2a_c00119{left:207.066667pt;}
.x39_c00119{left:210.133333pt;}
.x24_c00119{left:211.200000pt;}
.x34_c00119{left:213.200000pt;}
.x63_c00119{left:215.333333pt;}
.x6c_c00119{left:216.400000pt;}
.x1d_c00119{left:217.866667pt;}
.x3c_c00119{left:221.066667pt;}
.x16_c00119{left:222.933333pt;}
.x70_c00119{left:223.866667pt;}
.xd_c00119{left:226.266667pt;}
.x20_c00119{left:227.600000pt;}
.x5d_c00119{left:228.666667pt;}
.x4_c00119{left:229.866667pt;}
.x89_c00119{left:232.666667pt;}
.x21_c00119{left:233.600000pt;}
.x43_c00119{left:236.000000pt;}
.x7a_c00119{left:238.133333pt;}
.x25_c00119{left:240.933333pt;}
.x87_c00119{left:243.066667pt;}
.x93_c00119{left:244.266667pt;}
.xe_c00119{left:245.466667pt;}
.x2b_c00119{left:247.066667pt;}
.x7f_c00119{left:248.266667pt;}
.x47_c00119{left:249.200000pt;}
.x3d_c00119{left:250.800000pt;}
.x1e_c00119{left:251.733333pt;}
.x5_c00119{left:252.933333pt;}
.x11_c00119{left:254.000000pt;}
.x55_c00119{left:255.200000pt;}
.x6d_c00119{left:256.133333pt;}
.x44_c00119{left:258.133333pt;}
.x64_c00119{left:259.466667pt;}
.x72_c00119{left:260.400000pt;}
.x2e_c00119{left:261.600000pt;}
.x17_c00119{left:263.866667pt;}
.x83_c00119{left:266.533333pt;}
.x3a_c00119{left:268.000000pt;}
.x5e_c00119{left:269.600000pt;}
.x1f_c00119{left:270.933333pt;}
.x74_c00119{left:273.333333pt;}
.x73_c00119{left:274.933333pt;}
.x4c_c00119{left:276.133333pt;}
.x48_c00119{left:277.733333pt;}
.x8a_c00119{left:279.333333pt;}
.x59_c00119{left:282.933333pt;}
.x6_c00119{left:286.533333pt;}
.xf_c00119{left:287.733333pt;}
.x5f_c00119{left:289.733333pt;}
.x69_c00119{left:291.466667pt;}
.x7b_c00119{left:294.133333pt;}
.x94_c00119{left:295.200000pt;}
.x2f_c00119{left:299.066667pt;}
.x3f_c00119{left:301.333333pt;}
.x75_c00119{left:302.800000pt;}
.x12_c00119{left:306.133333pt;}
.x7c_c00119{left:308.266667pt;}
.x18_c00119{left:310.533333pt;}
.x10_c00119{left:314.000000pt;}
.x26_c00119{left:314.933333pt;}
.x95_c00119{left:316.000000pt;}
.x7_c00119{left:317.866667pt;}
.x45_c00119{left:318.933333pt;}
.x2c_c00119{left:320.400000pt;}
.x30_c00119{left:321.733333pt;}
.x65_c00119{left:322.800000pt;}
.x8d_c00119{left:324.133333pt;}
.x6a_c00119{left:326.666667pt;}
.x8b_c00119{left:328.000000pt;}
.x49_c00119{left:328.933333pt;}
.x7d_c00119{left:330.533333pt;}
.x76_c00119{left:334.800000pt;}
.x5a_c00119{left:336.000000pt;}
.x8_c00119{left:338.000000pt;}
.x56_c00119{left:341.333333pt;}
.x6e_c00119{left:344.133333pt;}
.x67_c00119{left:345.200000pt;}
.x40_c00119{left:346.133333pt;}
.x84_c00119{left:347.466667pt;}
.x52_c00119{left:349.200000pt;}
.x19_c00119{left:351.466667pt;}
.x50_c00119{left:352.400000pt;}
.x9_c00119{left:354.000000pt;}
.x57_c00119{left:356.000000pt;}
.x35_c00119{left:357.466667pt;}
.x60_c00119{left:360.133333pt;}
.x27_c00119{left:362.000000pt;}
.x77_c00119{left:362.933333pt;}
.x13_c00119{left:364.000000pt;}
.x88_c00119{left:365.066667pt;}
.x4d_c00119{left:368.933333pt;}
.x28_c00119{left:370.666667pt;}
.x46_c00119{left:372.400000pt;}
.x8e_c00119{left:375.466667pt;}
.x7e_c00119{left:376.933333pt;}
.x53_c00119{left:379.600000pt;}
.x1a_c00119{left:382.133333pt;}
.x6f_c00119{left:383.466667pt;}
.x61_c00119{left:385.066667pt;}
.x4a_c00119{left:386.133333pt;}
.x2_c00119{left:387.200000pt;}
.x36_c00119{left:388.533333pt;}
.x8f_c00119{left:391.200000pt;}
.x54_c00119{left:392.133333pt;}
.x6b_c00119{left:394.400000pt;}
.x58_c00119{left:395.333333pt;}
.x71_c00119{left:396.400000pt;}
.x31_c00119{left:397.600000pt;}
.x4e_c00119{left:400.933333pt;}
.x68_c00119{left:406.000000pt;}
.xa_c00119{left:410.000000pt;}
.x80_c00119{left:411.200000pt;}
.x29_c00119{left:412.933333pt;}
.x37_c00119{left:414.800000pt;}
.x5b_c00119{left:416.933333pt;}
.x51_c00119{left:418.666667pt;}
.x3b_c00119{left:421.466667pt;}
.x32_c00119{left:422.533333pt;}
.x78_c00119{left:424.000000pt;}
.x2d_c00119{left:426.666667pt;}
.xb_c00119{left:428.533333pt;}
.x14_c00119{left:434.400000pt;}
.x38_c00119{left:435.333333pt;}
.x1b_c00119{left:439.733333pt;}
.x5c_c00119{left:441.200000pt;}
.xc_c00119{left:445.200000pt;}
.x1c_c00119{left:448.000000pt;}
.x15_c00119{left:451.733333pt;}
.x33_c00119{left:454.800000pt;}
.x90_c00119{left:456.800000pt;}
.x41_c00119{left:463.600000pt;}
.xe2_c00119{left:489.866667pt;}
.xbf_c00119{left:490.933333pt;}
.x9e_c00119{left:504.933333pt;}
.xa7_c00119{left:506.400000pt;}
.xbc_c00119{left:507.466667pt;}
.xca_c00119{left:514.933333pt;}
.x104_c00119{left:519.066667pt;}
.x115_c00119{left:520.266667pt;}
.xe6_c00119{left:521.600000pt;}
.xe9_c00119{left:522.800000pt;}
.x96_c00119{left:524.133333pt;}
.x9f_c00119{left:527.333333pt;}
.xf8_c00119{left:528.266667pt;}
.xcb_c00119{left:530.000000pt;}
.xc0_c00119{left:531.200000pt;}
.xf2_c00119{left:535.200000pt;}
.xa0_c00119{left:537.866667pt;}
.xcc_c00119{left:541.466667pt;}
.x10d_c00119{left:543.066667pt;}
.xd7_c00119{left:544.266667pt;}
.x112_c00119{left:546.400000pt;}
.xa8_c00119{left:548.000000pt;}
.xb6_c00119{left:549.866667pt;}
.xdf_c00119{left:552.000000pt;}
.xbd_c00119{left:553.600000pt;}
.xc3_c00119{left:554.933333pt;}
.x10a_c00119{left:555.866667pt;}
.x117_c00119{left:558.800000pt;}
.xf3_c00119{left:560.133333pt;}
.xeb_c00119{left:561.066667pt;}
.x11e_c00119{left:562.000000pt;}
.x11a_c00119{left:565.733333pt;}
.x10c_c00119{left:569.600000pt;}
.xcf_c00119{left:570.533333pt;}
.xdb_c00119{left:571.600000pt;}
.xe0_c00119{left:572.800000pt;}
.xe7_c00119{left:574.666667pt;}
.xcd_c00119{left:576.400000pt;}
.x105_c00119{left:577.600000pt;}
.xea_c00119{left:580.400000pt;}
.x97_c00119{left:581.733333pt;}
.xa1_c00119{left:584.533333pt;}
.xf9_c00119{left:585.866667pt;}
.xc9_c00119{left:587.066667pt;}
.x11b_c00119{left:588.133333pt;}
.x10e_c00119{left:589.200000pt;}
.xa9_c00119{left:590.533333pt;}
.xee_c00119{left:591.733333pt;}
.xce_c00119{left:592.666667pt;}
.xc1_c00119{left:594.533333pt;}
.xec_c00119{left:597.200000pt;}
.xd8_c00119{left:598.666667pt;}
.x98_c00119{left:599.600000pt;}
.xa2_c00119{left:602.133333pt;}
.xb7_c00119{left:603.333333pt;}
.xb2_c00119{left:604.266667pt;}
.xed_c00119{left:608.666667pt;}
.xd0_c00119{left:610.266667pt;}
.xe3_c00119{left:612.133333pt;}
.xaa_c00119{left:613.200000pt;}
.x107_c00119{left:614.933333pt;}
.xf4_c00119{left:618.400000pt;}
.x116_c00119{left:619.466667pt;}
.xe4_c00119{left:621.066667pt;}
.x100_c00119{left:623.333333pt;}
.xc4_c00119{left:625.333333pt;}
.xd3_c00119{left:626.800000pt;}
.xfa_c00119{left:628.400000pt;}
.xdc_c00119{left:631.866667pt;}
.xab_c00119{left:634.000000pt;}
.xe8_c00119{left:635.066667pt;}
.xbe_c00119{left:638.400000pt;}
.x99_c00119{left:639.333333pt;}
.xe1_c00119{left:642.133333pt;}
.xa3_c00119{left:644.666667pt;}
.xef_c00119{left:646.800000pt;}
.x101_c00119{left:648.933333pt;}
.xf5_c00119{left:650.666667pt;}
.x113_c00119{left:651.733333pt;}
.x9a_c00119{left:653.466667pt;}
.xb3_c00119{left:655.466667pt;}
.xf0_c00119{left:658.266667pt;}
.xfc_c00119{left:659.200000pt;}
.xd4_c00119{left:661.333333pt;}
.xb8_c00119{left:665.200000pt;}
.xa4_c00119{left:666.133333pt;}
.x109_c00119{left:668.800000pt;}
.xfb_c00119{left:671.600000pt;}
.xac_c00119{left:673.333333pt;}
.x9b_c00119{left:675.200000pt;}
.xc5_c00119{left:677.200000pt;}
.xb4_c00119{left:678.133333pt;}
.xdd_c00119{left:680.800000pt;}
.xd9_c00119{left:682.800000pt;}
.xad_c00119{left:683.866667pt;}
.xfd_c00119{left:685.733333pt;}
.x108_c00119{left:690.133333pt;}
.xde_c00119{left:691.066667pt;}
.x10b_c00119{left:694.800000pt;}
.xe5_c00119{left:696.000000pt;}
.x9c_c00119{left:698.533333pt;}
.xb9_c00119{left:701.733333pt;}
.x118_c00119{left:702.666667pt;}
.x10f_c00119{left:705.333333pt;}
.xfe_c00119{left:707.466667pt;}
.xc6_c00119{left:709.466667pt;}
.xa5_c00119{left:713.466667pt;}
.xae_c00119{left:714.533333pt;}
.xba_c00119{left:717.066667pt;}
.x119_c00119{left:718.000000pt;}
.xf6_c00119{left:720.133333pt;}
.xd5_c00119{left:725.333333pt;}
.x102_c00119{left:728.000000pt;}
.xda_c00119{left:728.933333pt;}
.xb5_c00119{left:730.266667pt;}
.x114_c00119{left:731.466667pt;}
.x11c_c00119{left:734.000000pt;}
.xd1_c00119{left:735.333333pt;}
.xaf_c00119{left:736.933333pt;}
.xf7_c00119{left:739.466667pt;}
.x110_c00119{left:741.200000pt;}
.xff_c00119{left:742.933333pt;}
.xbb_c00119{left:748.800000pt;}
.x9d_c00119{left:752.933333pt;}
.xc7_c00119{left:754.533333pt;}
.xf1_c00119{left:755.466667pt;}
.x103_c00119{left:756.533333pt;}
.xb0_c00119{left:760.666667pt;}
.xc2_c00119{left:762.933333pt;}
.x106_c00119{left:764.400000pt;}
.xd2_c00119{left:766.666667pt;}
.x111_c00119{left:768.400000pt;}
.x11d_c00119{left:771.466667pt;}
.xb1_c00119{left:774.133333pt;}
.xd6_c00119{left:776.266667pt;}
.xc8_c00119{left:782.000000pt;}
.xa6_c00119{left:785.466667pt;}
}





/* 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_c00120 {
    display:none;
  }
  .loading-indicator_c00120.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00120 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_c00120 { 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_c00120" -> "#page-container .classname_c00120")
 */
.pf_c00120 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00120 { /* 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_c00120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00120 { /* 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_c00120 { /* 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_c00120 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00120 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00120 {overflow:visible;}
  }
}
.c_c00120 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00120 { /* 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_c00120:after { /* webkit #35443 */
  content: '';
}
.t_c00120:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00120 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 */
}
.__c00120 { /* 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_c00120 { /* info for Javascript */
  display:none;
}
.l_c00120 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00120 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00120 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00120: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_c00120 {
    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_c00120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00120.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_c00120 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00120;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.000000;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;}
.mcc_c00120{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00120{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00120{transform:matrix(0.042250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00120{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m114_c00120{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00120{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00120{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00120{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m68_c00120{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00120{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00120{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00120{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m45_c00120{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m48_c00120{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00120{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mea_c00120{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00120{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00120{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00120{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00120{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m58_c00120{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00120{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00120{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m82_c00120{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m90_c00120{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m59_c00120{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m84_c00120{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf_c00120{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m116_c00120{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m89_c00120{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00120{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m30_c00120{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md2_c00120{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m35_c00120{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m63_c00120{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.maf_c00120{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m21_c00120{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md5_c00120{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00120{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00120{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m60_c00120{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00120{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me0_c00120{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00120{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00120{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00120{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m34_c00120{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m32_c00120{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m107_c00120{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00120{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m98_c00120{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00120{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00120{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m61_c00120{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00120{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m54_c00120{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00120{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mae_c00120{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m19_c00120{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00120{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00120{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00120{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m109_c00120{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00120{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m12_c00120{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00120{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m20_c00120{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00120{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m44_c00120{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m39_c00120{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9_c00120{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m86_c00120{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00120{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me7_c00120{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m112_c00120{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00120{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m66_c00120{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m92_c00120{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00120{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00120{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00120{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.me9_c00120{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md_c00120{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m77_c00120{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m15_c00120{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00120{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mce_c00120{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m11_c00120{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m79_c00120{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00120{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m91_c00120{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m76_c00120{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00120{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m85_c00120{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc_c00120{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00120{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m87_c00120{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00120{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m25_c00120{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00120{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00120{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m97_c00120{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me6_c00120{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m42_c00120{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00120{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10_c00120{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00120{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m13_c00120{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m93_c00120{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mca_c00120{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00120{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00120{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.me3_c00120{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00120{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m69_c00120{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00120{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00120{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md1_c00120{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m88_c00120{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m72_c00120{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m62_c00120{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m38_c00120{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00120{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mad_c00120{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m102_c00120{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.maa_c00120{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mda_c00120{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00120{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00120{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m52_c00120{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00120{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m14_c00120{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m65_c00120{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me5_c00120{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00120{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00120{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m83_c00120{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00120{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00120{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m64_c00120{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md6_c00120{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m41_c00120{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m111_c00120{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m75_c00120{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00120{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m105_c00120{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00120{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m103_c00120{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00120{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00120{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m23_c00120{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.md4_c00120{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m24_c00120{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00120{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mac_c00120{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00120{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m56_c00120{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m47_c00120{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.md9_c00120{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m113_c00120{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m27_c00120{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m16_c00120{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00120{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00120{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m96_c00120{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m81_c00120{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m33_c00120{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m80_c00120{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m67_c00120{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mab_c00120{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6_c00120{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m57_c00120{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m101_c00120{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m104_c00120{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m26_c00120{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m18_c00120{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m22_c00120{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m73_c00120{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00120{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m71_c00120{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m46_c00120{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00120{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00120{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00120{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00120{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00120{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00120{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m110_c00120{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00120{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me8_c00120{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mba_c00120{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m29_c00120{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00120{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00120{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m37_c00120{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00120{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00120{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.me2_c00120{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00120{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00120{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00120{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m95_c00120{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00120{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m78_c00120{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00120{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00120{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m70_c00120{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00120{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.med_c00120{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m55_c00120{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me1_c00120{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00120{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);}
.m5a_c00120{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00120{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00120{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00120{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m100_c00120{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00120{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00120{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m74_c00120{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m115_c00120{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m99_c00120{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mec_c00120{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00120{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.me_c00120{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m43_c00120{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m53_c00120{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me4_c00120{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00120{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00120{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m94_c00120{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00120{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00120{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00120{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m28_c00120{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m31_c00120{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m51_c00120{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00120{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00120{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00120{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.md8_c00120{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md0_c00120{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00120{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00120{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00120{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00120{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.meb_c00120{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00120{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m17_c00120{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00120{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m108_c00120{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.md3_c00120{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m106_c00120{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00120{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00120{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.md7_c00120{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mee_c00120{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mde_c00120{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m50_c00120{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00120{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00120{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.mff_c00120{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00120{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.mef_c00120{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m49_c00120{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00120{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m117_c00120{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m0_c00120{transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);}
.m36_c00120{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m40_c00120{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00120{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{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__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00120{word-spacing:-6.918065px;}
.ws5_c00120{word-spacing:-6.846626px;}
.ws2_c00120{word-spacing:-5.540541px;}
.ws6_c00120{word-spacing:0.000000px;}
.ws3_c00120{word-spacing:0.458967px;}
.ws1_c00120{word-spacing:2.187500px;}
.ws0_c00120{word-spacing:19.662921px;}
.fc0_c00120{color:transparent;}
.fs7_c00120{font-size:42.000000px;}
.fs5_c00120{font-size:48.000000px;}
.fs4_c00120{font-size:54.000000px;}
.fs3_c00120{font-size:60.000000px;}
.fs2_c00120{font-size:66.000000px;}
.fs1_c00120{font-size:72.000000px;}
.fs0_c00120{font-size:84.000000px;}
.fs6_c00120{font-size:102.000000px;}
.y0_c00120{bottom:0.000000px;}
.y35_c00120{bottom:120.600000px;}
.y66_c00120{bottom:178.500000px;}
.y34_c00120{bottom:192.900000px;}
.y65_c00120{bottom:195.450000px;}
.y33_c00120{bottom:207.000000px;}
.y64_c00120{bottom:218.400000px;}
.y32_c00120{bottom:221.400000px;}
.y31_c00120{bottom:236.100000px;}
.y63_c00120{bottom:236.700000px;}
.y30_c00120{bottom:250.200000px;}
.y62_c00120{bottom:254.700000px;}
.y2f_c00120{bottom:264.600000px;}
.y61_c00120{bottom:272.700000px;}
.y2e_c00120{bottom:279.000000px;}
.y60_c00120{bottom:290.400000px;}
.y2d_c00120{bottom:293.100000px;}
.y2c_c00120{bottom:307.500000px;}
.y5f_c00120{bottom:308.100000px;}
.y2b_c00120{bottom:322.200000px;}
.y5e_c00120{bottom:329.700000px;}
.y2a_c00120{bottom:336.300000px;}
.y5d_c00120{bottom:348.450000px;}
.y29_c00120{bottom:350.700000px;}
.y5c_c00120{bottom:366.150000px;}
.y5b_c00120{bottom:384.150000px;}
.y28_c00120{bottom:388.800000px;}
.y5a_c00120{bottom:404.550000px;}
.y27_c00120{bottom:411.000000px;}
.y59_c00120{bottom:423.300000px;}
.y26_c00120{bottom:428.700000px;}
.y58_c00120{bottom:444.600000px;}
.y25_c00120{bottom:459.750000px;}
.y57_c00120{bottom:466.950000px;}
.y24_c00120{bottom:477.750000px;}
.y56_c00120{bottom:489.150000px;}
.y23_c00120{bottom:495.750000px;}
.y55_c00120{bottom:506.850000px;}
.y22_c00120{bottom:517.350000px;}
.y54_c00120{bottom:529.200000px;}
.y21_c00120{bottom:535.350000px;}
.y53_c00120{bottom:547.200000px;}
.y20_c00120{bottom:553.050000px;}
.y52_c00120{bottom:564.900000px;}
.y1f_c00120{bottom:571.050000px;}
.y51_c00120{bottom:583.950000px;}
.y1e_c00120{bottom:589.050000px;}
.y50_c00120{bottom:592.950000px;}
.y4f_c00120{bottom:598.350000px;}
.y1d_c00120{bottom:607.050000px;}
.y4e_c00120{bottom:619.950000px;}
.y1c_c00120{bottom:624.750000px;}
.y1b_c00120{bottom:642.750000px;}
.y4d_c00120{bottom:646.500000px;}
.y1a_c00120{bottom:660.450000px;}
.y4c_c00120{bottom:668.100000px;}
.y19_c00120{bottom:678.450000px;}
.y4b_c00120{bottom:690.450000px;}
.y18_c00120{bottom:696.150000px;}
.y4a_c00120{bottom:712.800000px;}
.y17_c00120{bottom:713.850000px;}
.y16_c00120{bottom:731.850000px;}
.y49_c00120{bottom:734.700000px;}
.y15_c00120{bottom:756.750000px;}
.y48_c00120{bottom:765.750000px;}
.y14_c00120{bottom:771.150000px;}
.y13_c00120{bottom:795.900000px;}
.y47_c00120{bottom:801.300000px;}
.y12_c00120{bottom:813.600000px;}
.y46_c00120{bottom:823.200000px;}
.y11_c00120{bottom:837.150000px;}
.y45_c00120{bottom:841.500000px;}
.y10_c00120{bottom:853.650000px;}
.y44_c00120{bottom:859.200000px;}
.yf_c00120{bottom:871.350000px;}
.y43_c00120{bottom:876.900000px;}
.ye_c00120{bottom:889.350000px;}
.y42_c00120{bottom:894.900000px;}
.yd_c00120{bottom:907.050000px;}
.y41_c00120{bottom:912.900000px;}
.yc_c00120{bottom:925.050000px;}
.y40_c00120{bottom:930.150000px;}
.yb_c00120{bottom:942.750000px;}
.y3f_c00120{bottom:947.850000px;}
.ya_c00120{bottom:960.450000px;}
.y3e_c00120{bottom:965.550000px;}
.y9_c00120{bottom:982.350000px;}
.y3d_c00120{bottom:985.350000px;}
.y8_c00120{bottom:1000.050000px;}
.y3c_c00120{bottom:1005.450000px;}
.y3b_c00120{bottom:1023.450000px;}
.y7_c00120{bottom:1031.400000px;}
.y3a_c00120{bottom:1041.450000px;}
.y6_c00120{bottom:1053.300000px;}
.y39_c00120{bottom:1062.300000px;}
.y5_c00120{bottom:1075.650000px;}
.y38_c00120{bottom:1080.300000px;}
.y4_c00120{bottom:1092.900000px;}
.y37_c00120{bottom:1098.000000px;}
.y3_c00120{bottom:1114.950000px;}
.y36_c00120{bottom:1115.700000px;}
.y1_c00120{bottom:1141.950000px;}
.y2_c00120{bottom:1142.250000px;}
.h9_c00120{height:42.000000px;}
.h7_c00120{height:48.000000px;}
.h6_c00120{height:54.000000px;}
.h5_c00120{height:60.000000px;}
.h4_c00120{height:66.000000px;}
.h3_c00120{height:72.000000px;}
.h2_c00120{height:84.000000px;}
.h8_c00120{height:102.000000px;}
.h0_c00120{height:1271.879975px;}
.h1_c00120{height:1272.000000px;}
.w1_c00120{width:953.250000px;}
.w0_c00120{width:953.280030px;}
.x0_c00120{left:0.000000px;}
.xaa_c00120{left:2.850000px;}
.xd_c00120{left:79.200000px;}
.x13_c00120{left:81.300000px;}
.x7c_c00120{left:83.550000px;}
.x85_c00120{left:86.100000px;}
.x4f_c00120{left:96.750000px;}
.x9_c00120{left:100.350000px;}
.x20_c00120{left:101.400000px;}
.x44_c00120{left:102.450000px;}
.x7b_c00120{left:104.700000px;}
.x93_c00120{left:107.550000px;}
.x9e_c00120{left:108.750000px;}
.x9c_c00120{left:113.550000px;}
.x5_c00120{left:119.550000px;}
.x19_c00120{left:120.600000px;}
.x3_c00120{left:121.650000px;}
.x8b_c00120{left:123.150000px;}
.x84_c00120{left:126.300000px;}
.x46_c00120{left:128.850000px;}
.x14_c00120{left:129.900000px;}
.x86_c00120{left:131.100000px;}
.xa8_c00120{left:132.300000px;}
.x6d_c00120{left:133.800000px;}
.xa_c00120{left:136.050000px;}
.x5c_c00120{left:137.850000px;}
.x25_c00120{left:140.400000px;}
.x4c_c00120{left:141.600000px;}
.x39_c00120{left:143.700000px;}
.x4a_c00120{left:145.650000px;}
.xe_c00120{left:146.850000px;}
.xb_c00120{left:147.900000px;}
.xa2_c00120{left:149.400000px;}
.xf_c00120{left:150.750000px;}
.x7d_c00120{left:155.550000px;}
.x50_c00120{left:156.600000px;}
.x63_c00120{left:158.850000px;}
.x8c_c00120{left:160.200000px;}
.x40_c00120{left:161.250000px;}
.x4_c00120{left:165.150000px;}
.x21_c00120{left:166.200000px;}
.x87_c00120{left:167.400000px;}
.x6_c00120{left:170.700000px;}
.x94_c00120{left:172.350000px;}
.x74_c00120{left:174.300000px;}
.x80_c00120{left:176.700000px;}
.xc_c00120{left:179.550000px;}
.x1a_c00120{left:183.900000px;}
.x7e_c00120{left:185.850000px;}
.x2c_c00120{left:187.500000px;}
.x5d_c00120{left:189.000000px;}
.x78_c00120{left:191.100000px;}
.x9f_c00120{left:194.100000px;}
.x8f_c00120{left:196.200000px;}
.x33_c00120{left:197.400000px;}
.x47_c00120{left:198.750000px;}
.x26_c00120{left:199.800000px;}
.x5e_c00120{left:201.900000px;}
.x2d_c00120{left:203.700000px;}
.x10_c00120{left:205.800000px;}
.x81_c00120{left:208.350000px;}
.x1b_c00120{left:209.400000px;}
.x58_c00120{left:210.900000px;}
.x7f_c00120{left:212.100000px;}
.x51_c00120{left:213.450000px;}
.x79_c00120{left:215.550000px;}
.x18_c00120{left:216.600000px;}
.x22_c00120{left:218.400000px;}
.xa9_c00120{left:220.200000px;}
.x34_c00120{left:224.400000px;}
.x75_c00120{left:226.050000px;}
.x2e_c00120{left:227.100000px;}
.x52_c00120{left:228.600000px;}
.x3a_c00120{left:230.850000px;}
.x27_c00120{left:234.000000px;}
.x95_c00120{left:235.350000px;}
.x7_c00120{left:237.600000px;}
.x6e_c00120{left:238.650000px;}
.x88_c00120{left:240.150000px;}
.xa3_c00120{left:241.650000px;}
.x4b_c00120{left:243.450000px;}
.x3b_c00120{left:246.750000px;}
.x5f_c00120{left:247.950000px;}
.x15_c00120{left:249.750000px;}
.x48_c00120{left:250.950000px;}
.x35_c00120{left:252.450000px;}
.x53_c00120{left:253.800000px;}
.x41_c00120{left:256.950000px;}
.x71_c00120{left:258.150000px;}
.x28_c00120{left:259.200000px;}
.x11_c00120{left:261.300000px;}
.x90_c00120{left:262.800000px;}
.x60_c00120{left:264.150000px;}
.x64_c00120{left:266.850000px;}
.x1c_c00120{left:268.050000px;}
.x54_c00120{left:269.700000px;}
.xa6_c00120{left:271.200000px;}
.x76_c00120{left:272.550000px;}
.x72_c00120{left:273.600000px;}
.x9a_c00120{left:276.900000px;}
.x65_c00120{left:277.950000px;}
.x2f_c00120{left:279.600000px;}
.x3c_c00120{left:281.250000px;}
.x91_c00120{left:282.900000px;}
.x55_c00120{left:284.850000px;}
.x9b_c00120{left:285.900000px;}
.x67_c00120{left:288.300000px;}
.x4d_c00120{left:289.800000px;}
.x23_c00120{left:291.450000px;}
.x7a_c00120{left:293.700000px;}
.x16_c00120{left:295.500000px;}
.x61_c00120{left:296.850000px;}
.x1d_c00120{left:298.650000px;}
.x98_c00120{left:300.600000px;}
.x36_c00120{left:301.800000px;}
.x96_c00120{left:305.550000px;}
.x42_c00120{left:307.350000px;}
.x70_c00120{left:308.850000px;}
.x89_c00120{left:309.900000px;}
.x8d_c00120{left:311.100000px;}
.x56_c00120{left:312.600000px;}
.x12_c00120{left:316.350000px;}
.x30_c00120{left:317.700000px;}
.x45_c00120{left:319.200000px;}
.x29_c00120{left:320.700000px;}
.x66_c00120{left:321.900000px;}
.x82_c00120{left:324.300000px;}
.xa4_c00120{left:326.250000px;}
.x1_c00120{left:327.300000px;}
.x3d_c00120{left:328.800000px;}
.xa0_c00120{left:330.900000px;}
.x77_c00120{left:334.050000px;}
.x59_c00120{left:335.100000px;}
.x6f_c00120{left:337.350000px;}
.x57_c00120{left:338.550000px;}
.x24_c00120{left:342.900000px;}
.x31_c00120{left:348.600000px;}
.x43_c00120{left:349.800000px;}
.x1e_c00120{left:352.350000px;}
.x17_c00120{left:353.400000px;}
.x68_c00120{left:355.950000px;}
.x2a_c00120{left:357.750000px;}
.x8a_c00120{left:360.600000px;}
.xa5_c00120{left:362.550000px;}
.x8e_c00120{left:363.600000px;}
.x3e_c00120{left:365.850000px;}
.x4e_c00120{left:367.950000px;}
.x8_c00120{left:369.300000px;}
.x6a_c00120{left:370.650000px;}
.x37_c00120{left:372.300000px;}
.x32_c00120{left:373.800000px;}
.x5a_c00120{left:375.450000px;}
.xa7_c00120{left:377.550000px;}
.x9d_c00120{left:380.250000px;}
.x49_c00120{left:382.200000px;}
.x1f_c00120{left:383.250000px;}
.x97_c00120{left:384.450000px;}
.xa1_c00120{left:386.400000px;}
.x6b_c00120{left:392.250000px;}
.x92_c00120{left:393.750000px;}
.x5b_c00120{left:394.950000px;}
.x2b_c00120{left:396.600000px;}
.x6c_c00120{left:397.950000px;}
.x99_c00120{left:400.350000px;}
.x3f_c00120{left:401.850000px;}
.x83_c00120{left:404.250000px;}
.x62_c00120{left:406.050000px;}
.x73_c00120{left:408.600000px;}
.x69_c00120{left:413.850000px;}
.x38_c00120{left:416.250000px;}
.xd8_c00120{left:440.700000px;}
.xc5_c00120{left:441.750000px;}
.xd5_c00120{left:457.950000px;}
.xb5_c00120{left:459.300000px;}
.xab_c00120{left:460.500000px;}
.x10c_c00120{left:474.900000px;}
.x104_c00120{left:476.850000px;}
.x12b_c00120{left:478.800000px;}
.xbe_c00120{left:481.950000px;}
.x107_c00120{left:485.700000px;}
.xc6_c00120{left:487.050000px;}
.xac_c00120{left:490.800000px;}
.x109_c00120{left:491.850000px;}
.xed_c00120{left:494.250000px;}
.xd6_c00120{left:497.250000px;}
.xd9_c00120{left:498.300000px;}
.xb6_c00120{left:499.950000px;}
.x11f_c00120{left:502.050000px;}
.x10f_c00120{left:504.150000px;}
.xef_c00120{left:506.250000px;}
.xcc_c00120{left:509.850000px;}
.x112_c00120{left:511.500000px;}
.x127_c00120{left:514.500000px;}
.xd7_c00120{left:516.000000px;}
.xc4_c00120{left:517.500000px;}
.x10a_c00120{left:519.150000px;}
.xda_c00120{left:520.650000px;}
.xcd_c00120{left:522.150000px;}
.xfa_c00120{left:524.700000px;}
.xe0_c00120{left:527.700000px;}
.x12e_c00120{left:531.000000px;}
.xbf_c00120{left:532.050000px;}
.xad_c00120{left:534.750000px;}
.xea_c00120{left:536.100000px;}
.xb7_c00120{left:538.050000px;}
.x116_c00120{left:539.250000px;}
.x10d_c00120{left:540.450000px;}
.xfe_c00120{left:542.700000px;}
.xdb_c00120{left:545.850000px;}
.x101_c00120{left:547.950000px;}
.xe8_c00120{left:549.150000px;}
.xf5_c00120{left:550.500000px;}
.x105_c00120{left:552.150000px;}
.x10b_c00120{left:554.100000px;}
.x11d_c00120{left:555.600000px;}
.xc7_c00120{left:556.950000px;}
.xeb_c00120{left:558.450000px;}
.xf0_c00120{left:560.550000px;}
.x119_c00120{left:561.600000px;}
.xff_c00120{left:565.800000px;}
.xe1_c00120{left:567.300000px;}
.x102_c00120{left:571.050000px;}
.xdc_c00120{left:572.850000px;}
.xce_c00120{left:574.050000px;}
.x106_c00120{left:575.100000px;}
.x113_c00120{left:576.300000px;}
.xe9_c00120{left:580.050000px;}
.xb8_c00120{left:582.300000px;}
.xfb_c00120{left:587.700000px;}
.x111_c00120{left:590.550000px;}
.x128_c00120{left:592.950000px;}
.xe4_c00120{left:594.750000px;}
.xf6_c00120{left:595.800000px;}
.x124_c00120{left:597.300000px;}
.xe2_c00120{left:599.400000px;}
.xae_c00120{left:600.600000px;}
.xc0_c00120{left:602.550000px;}
.x118_c00120{left:604.050000px;}
.xc8_c00120{left:608.400000px;}
.xdd_c00120{left:609.600000px;}
.xb9_c00120{left:612.150000px;}
.x103_c00120{left:613.350000px;}
.x117_c00120{left:615.900000px;}
.xcf_c00120{left:618.000000px;}
.x11a_c00120{left:619.200000px;}
.xee_c00120{left:623.100000px;}
.x100_c00120{left:626.250000px;}
.xf1_c00120{left:628.950000px;}
.xf7_c00120{left:630.300000px;}
.xe5_c00120{left:632.850000px;}
.xde_c00120{left:635.850000px;}
.x129_c00120{left:637.200000px;}
.xd0_c00120{left:640.650000px;}
.xec_c00120{left:643.350000px;}
.xc9_c00120{left:645.450000px;}
.x120_c00120{left:647.850000px;}
.xaf_c00120{left:649.500000px;}
.xdf_c00120{left:651.000000px;}
.xc1_c00120{left:653.700000px;}
.xf2_c00120{left:657.450000px;}
.x12f_c00120{left:660.300000px;}
.x11e_c00120{left:662.550000px;}
.xe6_c00120{left:665.550000px;}
.x132_c00120{left:669.150000px;}
.x121_c00120{left:671.550000px;}
.xb0_c00120{left:673.200000px;}
.xba_c00120{left:674.850000px;}
.x12a_c00120{left:676.050000px;}
.xd1_c00120{left:678.450000px;}
.xf8_c00120{left:683.250000px;}
.xb1_c00120{left:684.300000px;}
.x108_c00120{left:690.600000px;}
.xca_c00120{left:692.250000px;}
.x11b_c00120{left:698.100000px;}
.xb2_c00120{left:699.450000px;}
.xc2_c00120{left:700.800000px;}
.xfc_c00120{left:703.200000px;}
.xf3_c00120{left:704.250000px;}
.x12c_c00120{left:705.600000px;}
.xbb_c00120{left:708.750000px;}
.xd2_c00120{left:711.900000px;}
.x130_c00120{left:714.000000px;}
.xb3_c00120{left:715.950000px;}
.x114_c00120{left:718.050000px;}
.x125_c00120{left:720.450000px;}
.x10e_c00120{left:723.000000px;}
.xfd_c00120{left:726.300000px;}
.x12d_c00120{left:730.800000px;}
.xd3_c00120{left:732.000000px;}
.xe7_c00120{left:735.750000px;}
.xe3_c00120{left:736.950000px;}
.xb4_c00120{left:738.300000px;}
.xc3_c00120{left:739.350000px;}
.xbc_c00120{left:743.250000px;}
.x131_c00120{left:744.600000px;}
.x110_c00120{left:745.650000px;}
.xf4_c00120{left:748.200000px;}
.x122_c00120{left:750.750000px;}
.xd4_c00120{left:752.100000px;}
.x2_c00120{left:753.150000px;}
.x126_c00120{left:754.950000px;}
.x11c_c00120{left:758.250000px;}
.x115_c00120{left:759.750000px;}
.x123_c00120{left:760.800000px;}
.xcb_c00120{left:765.750000px;}
.xbd_c00120{left:767.700000px;}
.xf9_c00120{left:773.400000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws4_c00120{word-spacing:-6.149391pt;}
.ws5_c00120{word-spacing:-6.085890pt;}
.ws2_c00120{word-spacing:-4.924925pt;}
.ws6_c00120{word-spacing:0.000000pt;}
.ws3_c00120{word-spacing:0.407970pt;}
.ws1_c00120{word-spacing:1.944444pt;}
.ws0_c00120{word-spacing:17.478152pt;}
.fs7_c00120{font-size:37.333333pt;}
.fs5_c00120{font-size:42.666667pt;}
.fs4_c00120{font-size:48.000000pt;}
.fs3_c00120{font-size:53.333333pt;}
.fs2_c00120{font-size:58.666667pt;}
.fs1_c00120{font-size:64.000000pt;}
.fs0_c00120{font-size:74.666667pt;}
.fs6_c00120{font-size:90.666667pt;}
.y0_c00120{bottom:0.000000pt;}
.y35_c00120{bottom:107.200000pt;}
.y66_c00120{bottom:158.666667pt;}
.y34_c00120{bottom:171.466667pt;}
.y65_c00120{bottom:173.733333pt;}
.y33_c00120{bottom:184.000000pt;}
.y64_c00120{bottom:194.133333pt;}
.y32_c00120{bottom:196.800000pt;}
.y31_c00120{bottom:209.866667pt;}
.y63_c00120{bottom:210.400000pt;}
.y30_c00120{bottom:222.400000pt;}
.y62_c00120{bottom:226.400000pt;}
.y2f_c00120{bottom:235.200000pt;}
.y61_c00120{bottom:242.400000pt;}
.y2e_c00120{bottom:248.000000pt;}
.y60_c00120{bottom:258.133333pt;}
.y2d_c00120{bottom:260.533333pt;}
.y2c_c00120{bottom:273.333333pt;}
.y5f_c00120{bottom:273.866667pt;}
.y2b_c00120{bottom:286.400000pt;}
.y5e_c00120{bottom:293.066667pt;}
.y2a_c00120{bottom:298.933333pt;}
.y5d_c00120{bottom:309.733333pt;}
.y29_c00120{bottom:311.733333pt;}
.y5c_c00120{bottom:325.466667pt;}
.y5b_c00120{bottom:341.466667pt;}
.y28_c00120{bottom:345.600000pt;}
.y5a_c00120{bottom:359.600000pt;}
.y27_c00120{bottom:365.333333pt;}
.y59_c00120{bottom:376.266667pt;}
.y26_c00120{bottom:381.066667pt;}
.y58_c00120{bottom:395.200000pt;}
.y25_c00120{bottom:408.666667pt;}
.y57_c00120{bottom:415.066667pt;}
.y24_c00120{bottom:424.666667pt;}
.y56_c00120{bottom:434.800000pt;}
.y23_c00120{bottom:440.666667pt;}
.y55_c00120{bottom:450.533333pt;}
.y22_c00120{bottom:459.866667pt;}
.y54_c00120{bottom:470.400000pt;}
.y21_c00120{bottom:475.866667pt;}
.y53_c00120{bottom:486.400000pt;}
.y20_c00120{bottom:491.600000pt;}
.y52_c00120{bottom:502.133333pt;}
.y1f_c00120{bottom:507.600000pt;}
.y51_c00120{bottom:519.066667pt;}
.y1e_c00120{bottom:523.600000pt;}
.y50_c00120{bottom:527.066667pt;}
.y4f_c00120{bottom:531.866667pt;}
.y1d_c00120{bottom:539.600000pt;}
.y4e_c00120{bottom:551.066667pt;}
.y1c_c00120{bottom:555.333333pt;}
.y1b_c00120{bottom:571.333333pt;}
.y4d_c00120{bottom:574.666667pt;}
.y1a_c00120{bottom:587.066667pt;}
.y4c_c00120{bottom:593.866667pt;}
.y19_c00120{bottom:603.066667pt;}
.y4b_c00120{bottom:613.733333pt;}
.y18_c00120{bottom:618.800000pt;}
.y4a_c00120{bottom:633.600000pt;}
.y17_c00120{bottom:634.533333pt;}
.y16_c00120{bottom:650.533333pt;}
.y49_c00120{bottom:653.066667pt;}
.y15_c00120{bottom:672.666667pt;}
.y48_c00120{bottom:680.666667pt;}
.y14_c00120{bottom:685.466667pt;}
.y13_c00120{bottom:707.466667pt;}
.y47_c00120{bottom:712.266667pt;}
.y12_c00120{bottom:723.200000pt;}
.y46_c00120{bottom:731.733333pt;}
.y11_c00120{bottom:744.133333pt;}
.y45_c00120{bottom:748.000000pt;}
.y10_c00120{bottom:758.800000pt;}
.y44_c00120{bottom:763.733333pt;}
.yf_c00120{bottom:774.533333pt;}
.y43_c00120{bottom:779.466667pt;}
.ye_c00120{bottom:790.533333pt;}
.y42_c00120{bottom:795.466667pt;}
.yd_c00120{bottom:806.266667pt;}
.y41_c00120{bottom:811.466667pt;}
.yc_c00120{bottom:822.266667pt;}
.y40_c00120{bottom:826.800000pt;}
.yb_c00120{bottom:838.000000pt;}
.y3f_c00120{bottom:842.533333pt;}
.ya_c00120{bottom:853.733333pt;}
.y3e_c00120{bottom:858.266667pt;}
.y9_c00120{bottom:873.200000pt;}
.y3d_c00120{bottom:875.866667pt;}
.y8_c00120{bottom:888.933333pt;}
.y3c_c00120{bottom:893.733333pt;}
.y3b_c00120{bottom:909.733333pt;}
.y7_c00120{bottom:916.800000pt;}
.y3a_c00120{bottom:925.733333pt;}
.y6_c00120{bottom:936.266667pt;}
.y39_c00120{bottom:944.266667pt;}
.y5_c00120{bottom:956.133333pt;}
.y38_c00120{bottom:960.266667pt;}
.y4_c00120{bottom:971.466667pt;}
.y37_c00120{bottom:976.000000pt;}
.y3_c00120{bottom:991.066667pt;}
.y36_c00120{bottom:991.733333pt;}
.y1_c00120{bottom:1015.066667pt;}
.y2_c00120{bottom:1015.333333pt;}
.h9_c00120{height:37.333333pt;}
.h7_c00120{height:42.666667pt;}
.h6_c00120{height:48.000000pt;}
.h5_c00120{height:53.333333pt;}
.h4_c00120{height:58.666667pt;}
.h3_c00120{height:64.000000pt;}
.h2_c00120{height:74.666667pt;}
.h8_c00120{height:90.666667pt;}
.h0_c00120{height:1130.559977pt;}
.h1_c00120{height:1130.666667pt;}
.w1_c00120{width:847.333333pt;}
.w0_c00120{width:847.360027pt;}
.x0_c00120{left:0.000000pt;}
.xaa_c00120{left:2.533333pt;}
.xd_c00120{left:70.400000pt;}
.x13_c00120{left:72.266667pt;}
.x7c_c00120{left:74.266667pt;}
.x85_c00120{left:76.533333pt;}
.x4f_c00120{left:86.000000pt;}
.x9_c00120{left:89.200000pt;}
.x20_c00120{left:90.133333pt;}
.x44_c00120{left:91.066667pt;}
.x7b_c00120{left:93.066667pt;}
.x93_c00120{left:95.600000pt;}
.x9e_c00120{left:96.666667pt;}
.x9c_c00120{left:100.933333pt;}
.x5_c00120{left:106.266667pt;}
.x19_c00120{left:107.200000pt;}
.x3_c00120{left:108.133333pt;}
.x8b_c00120{left:109.466667pt;}
.x84_c00120{left:112.266667pt;}
.x46_c00120{left:114.533333pt;}
.x14_c00120{left:115.466667pt;}
.x86_c00120{left:116.533333pt;}
.xa8_c00120{left:117.600000pt;}
.x6d_c00120{left:118.933333pt;}
.xa_c00120{left:120.933333pt;}
.x5c_c00120{left:122.533333pt;}
.x25_c00120{left:124.800000pt;}
.x4c_c00120{left:125.866667pt;}
.x39_c00120{left:127.733333pt;}
.x4a_c00120{left:129.466667pt;}
.xe_c00120{left:130.533333pt;}
.xb_c00120{left:131.466667pt;}
.xa2_c00120{left:132.800000pt;}
.xf_c00120{left:134.000000pt;}
.x7d_c00120{left:138.266667pt;}
.x50_c00120{left:139.200000pt;}
.x63_c00120{left:141.200000pt;}
.x8c_c00120{left:142.400000pt;}
.x40_c00120{left:143.333333pt;}
.x4_c00120{left:146.800000pt;}
.x21_c00120{left:147.733333pt;}
.x87_c00120{left:148.800000pt;}
.x6_c00120{left:151.733333pt;}
.x94_c00120{left:153.200000pt;}
.x74_c00120{left:154.933333pt;}
.x80_c00120{left:157.066667pt;}
.xc_c00120{left:159.600000pt;}
.x1a_c00120{left:163.466667pt;}
.x7e_c00120{left:165.200000pt;}
.x2c_c00120{left:166.666667pt;}
.x5d_c00120{left:168.000000pt;}
.x78_c00120{left:169.866667pt;}
.x9f_c00120{left:172.533333pt;}
.x8f_c00120{left:174.400000pt;}
.x33_c00120{left:175.466667pt;}
.x47_c00120{left:176.666667pt;}
.x26_c00120{left:177.600000pt;}
.x5e_c00120{left:179.466667pt;}
.x2d_c00120{left:181.066667pt;}
.x10_c00120{left:182.933333pt;}
.x81_c00120{left:185.200000pt;}
.x1b_c00120{left:186.133333pt;}
.x58_c00120{left:187.466667pt;}
.x7f_c00120{left:188.533333pt;}
.x51_c00120{left:189.733333pt;}
.x79_c00120{left:191.600000pt;}
.x18_c00120{left:192.533333pt;}
.x22_c00120{left:194.133333pt;}
.xa9_c00120{left:195.733333pt;}
.x34_c00120{left:199.466667pt;}
.x75_c00120{left:200.933333pt;}
.x2e_c00120{left:201.866667pt;}
.x52_c00120{left:203.200000pt;}
.x3a_c00120{left:205.200000pt;}
.x27_c00120{left:208.000000pt;}
.x95_c00120{left:209.200000pt;}
.x7_c00120{left:211.200000pt;}
.x6e_c00120{left:212.133333pt;}
.x88_c00120{left:213.466667pt;}
.xa3_c00120{left:214.800000pt;}
.x4b_c00120{left:216.400000pt;}
.x3b_c00120{left:219.333333pt;}
.x5f_c00120{left:220.400000pt;}
.x15_c00120{left:222.000000pt;}
.x48_c00120{left:223.066667pt;}
.x35_c00120{left:224.400000pt;}
.x53_c00120{left:225.600000pt;}
.x41_c00120{left:228.400000pt;}
.x71_c00120{left:229.466667pt;}
.x28_c00120{left:230.400000pt;}
.x11_c00120{left:232.266667pt;}
.x90_c00120{left:233.600000pt;}
.x60_c00120{left:234.800000pt;}
.x64_c00120{left:237.200000pt;}
.x1c_c00120{left:238.266667pt;}
.x54_c00120{left:239.733333pt;}
.xa6_c00120{left:241.066667pt;}
.x76_c00120{left:242.266667pt;}
.x72_c00120{left:243.200000pt;}
.x9a_c00120{left:246.133333pt;}
.x65_c00120{left:247.066667pt;}
.x2f_c00120{left:248.533333pt;}
.x3c_c00120{left:250.000000pt;}
.x91_c00120{left:251.466667pt;}
.x55_c00120{left:253.200000pt;}
.x9b_c00120{left:254.133333pt;}
.x67_c00120{left:256.266667pt;}
.x4d_c00120{left:257.600000pt;}
.x23_c00120{left:259.066667pt;}
.x7a_c00120{left:261.066667pt;}
.x16_c00120{left:262.666667pt;}
.x61_c00120{left:263.866667pt;}
.x1d_c00120{left:265.466667pt;}
.x98_c00120{left:267.200000pt;}
.x36_c00120{left:268.266667pt;}
.x96_c00120{left:271.600000pt;}
.x42_c00120{left:273.200000pt;}
.x70_c00120{left:274.533333pt;}
.x89_c00120{left:275.466667pt;}
.x8d_c00120{left:276.533333pt;}
.x56_c00120{left:277.866667pt;}
.x12_c00120{left:281.200000pt;}
.x30_c00120{left:282.400000pt;}
.x45_c00120{left:283.733333pt;}
.x29_c00120{left:285.066667pt;}
.x66_c00120{left:286.133333pt;}
.x82_c00120{left:288.266667pt;}
.xa4_c00120{left:290.000000pt;}
.x1_c00120{left:290.933333pt;}
.x3d_c00120{left:292.266667pt;}
.xa0_c00120{left:294.133333pt;}
.x77_c00120{left:296.933333pt;}
.x59_c00120{left:297.866667pt;}
.x6f_c00120{left:299.866667pt;}
.x57_c00120{left:300.933333pt;}
.x24_c00120{left:304.800000pt;}
.x31_c00120{left:309.866667pt;}
.x43_c00120{left:310.933333pt;}
.x1e_c00120{left:313.200000pt;}
.x17_c00120{left:314.133333pt;}
.x68_c00120{left:316.400000pt;}
.x2a_c00120{left:318.000000pt;}
.x8a_c00120{left:320.533333pt;}
.xa5_c00120{left:322.266667pt;}
.x8e_c00120{left:323.200000pt;}
.x3e_c00120{left:325.200000pt;}
.x4e_c00120{left:327.066667pt;}
.x8_c00120{left:328.266667pt;}
.x6a_c00120{left:329.466667pt;}
.x37_c00120{left:330.933333pt;}
.x32_c00120{left:332.266667pt;}
.x5a_c00120{left:333.733333pt;}
.xa7_c00120{left:335.600000pt;}
.x9d_c00120{left:338.000000pt;}
.x49_c00120{left:339.733333pt;}
.x1f_c00120{left:340.666667pt;}
.x97_c00120{left:341.733333pt;}
.xa1_c00120{left:343.466667pt;}
.x6b_c00120{left:348.666667pt;}
.x92_c00120{left:350.000000pt;}
.x5b_c00120{left:351.066667pt;}
.x2b_c00120{left:352.533333pt;}
.x6c_c00120{left:353.733333pt;}
.x99_c00120{left:355.866667pt;}
.x3f_c00120{left:357.200000pt;}
.x83_c00120{left:359.333333pt;}
.x62_c00120{left:360.933333pt;}
.x73_c00120{left:363.200000pt;}
.x69_c00120{left:367.866667pt;}
.x38_c00120{left:370.000000pt;}
.xd8_c00120{left:391.733333pt;}
.xc5_c00120{left:392.666667pt;}
.xd5_c00120{left:407.066667pt;}
.xb5_c00120{left:408.266667pt;}
.xab_c00120{left:409.333333pt;}
.x10c_c00120{left:422.133333pt;}
.x104_c00120{left:423.866667pt;}
.x12b_c00120{left:425.600000pt;}
.xbe_c00120{left:428.400000pt;}
.x107_c00120{left:431.733333pt;}
.xc6_c00120{left:432.933333pt;}
.xac_c00120{left:436.266667pt;}
.x109_c00120{left:437.200000pt;}
.xed_c00120{left:439.333333pt;}
.xd6_c00120{left:442.000000pt;}
.xd9_c00120{left:442.933333pt;}
.xb6_c00120{left:444.400000pt;}
.x11f_c00120{left:446.266667pt;}
.x10f_c00120{left:448.133333pt;}
.xef_c00120{left:450.000000pt;}
.xcc_c00120{left:453.200000pt;}
.x112_c00120{left:454.666667pt;}
.x127_c00120{left:457.333333pt;}
.xd7_c00120{left:458.666667pt;}
.xc4_c00120{left:460.000000pt;}
.x10a_c00120{left:461.466667pt;}
.xda_c00120{left:462.800000pt;}
.xcd_c00120{left:464.133333pt;}
.xfa_c00120{left:466.400000pt;}
.xe0_c00120{left:469.066667pt;}
.x12e_c00120{left:472.000000pt;}
.xbf_c00120{left:472.933333pt;}
.xad_c00120{left:475.333333pt;}
.xea_c00120{left:476.533333pt;}
.xb7_c00120{left:478.266667pt;}
.x116_c00120{left:479.333333pt;}
.x10d_c00120{left:480.400000pt;}
.xfe_c00120{left:482.400000pt;}
.xdb_c00120{left:485.200000pt;}
.x101_c00120{left:487.066667pt;}
.xe8_c00120{left:488.133333pt;}
.xf5_c00120{left:489.333333pt;}
.x105_c00120{left:490.800000pt;}
.x10b_c00120{left:492.533333pt;}
.x11d_c00120{left:493.866667pt;}
.xc7_c00120{left:495.066667pt;}
.xeb_c00120{left:496.400000pt;}
.xf0_c00120{left:498.266667pt;}
.x119_c00120{left:499.200000pt;}
.xff_c00120{left:502.933333pt;}
.xe1_c00120{left:504.266667pt;}
.x102_c00120{left:507.600000pt;}
.xdc_c00120{left:509.200000pt;}
.xce_c00120{left:510.266667pt;}
.x106_c00120{left:511.200000pt;}
.x113_c00120{left:512.266667pt;}
.xe9_c00120{left:515.600000pt;}
.xb8_c00120{left:517.600000pt;}
.xfb_c00120{left:522.400000pt;}
.x111_c00120{left:524.933333pt;}
.x128_c00120{left:527.066667pt;}
.xe4_c00120{left:528.666667pt;}
.xf6_c00120{left:529.600000pt;}
.x124_c00120{left:530.933333pt;}
.xe2_c00120{left:532.800000pt;}
.xae_c00120{left:533.866667pt;}
.xc0_c00120{left:535.600000pt;}
.x118_c00120{left:536.933333pt;}
.xc8_c00120{left:540.800000pt;}
.xdd_c00120{left:541.866667pt;}
.xb9_c00120{left:544.133333pt;}
.x103_c00120{left:545.200000pt;}
.x117_c00120{left:547.466667pt;}
.xcf_c00120{left:549.333333pt;}
.x11a_c00120{left:550.400000pt;}
.xee_c00120{left:553.866667pt;}
.x100_c00120{left:556.666667pt;}
.xf1_c00120{left:559.066667pt;}
.xf7_c00120{left:560.266667pt;}
.xe5_c00120{left:562.533333pt;}
.xde_c00120{left:565.200000pt;}
.x129_c00120{left:566.400000pt;}
.xd0_c00120{left:569.466667pt;}
.xec_c00120{left:571.866667pt;}
.xc9_c00120{left:573.733333pt;}
.x120_c00120{left:575.866667pt;}
.xaf_c00120{left:577.333333pt;}
.xdf_c00120{left:578.666667pt;}
.xc1_c00120{left:581.066667pt;}
.xf2_c00120{left:584.400000pt;}
.x12f_c00120{left:586.933333pt;}
.x11e_c00120{left:588.933333pt;}
.xe6_c00120{left:591.600000pt;}
.x132_c00120{left:594.800000pt;}
.x121_c00120{left:596.933333pt;}
.xb0_c00120{left:598.400000pt;}
.xba_c00120{left:599.866667pt;}
.x12a_c00120{left:600.933333pt;}
.xd1_c00120{left:603.066667pt;}
.xf8_c00120{left:607.333333pt;}
.xb1_c00120{left:608.266667pt;}
.x108_c00120{left:613.866667pt;}
.xca_c00120{left:615.333333pt;}
.x11b_c00120{left:620.533333pt;}
.xb2_c00120{left:621.733333pt;}
.xc2_c00120{left:622.933333pt;}
.xfc_c00120{left:625.066667pt;}
.xf3_c00120{left:626.000000pt;}
.x12c_c00120{left:627.200000pt;}
.xbb_c00120{left:630.000000pt;}
.xd2_c00120{left:632.800000pt;}
.x130_c00120{left:634.666667pt;}
.xb3_c00120{left:636.400000pt;}
.x114_c00120{left:638.266667pt;}
.x125_c00120{left:640.400000pt;}
.x10e_c00120{left:642.666667pt;}
.xfd_c00120{left:645.600000pt;}
.x12d_c00120{left:649.600000pt;}
.xd3_c00120{left:650.666667pt;}
.xe7_c00120{left:654.000000pt;}
.xe3_c00120{left:655.066667pt;}
.xb4_c00120{left:656.266667pt;}
.xc3_c00120{left:657.200000pt;}
.xbc_c00120{left:660.666667pt;}
.x131_c00120{left:661.866667pt;}
.x110_c00120{left:662.800000pt;}
.xf4_c00120{left:665.066667pt;}
.x122_c00120{left:667.333333pt;}
.xd4_c00120{left:668.533333pt;}
.x2_c00120{left:669.466667pt;}
.x126_c00120{left:671.066667pt;}
.x11c_c00120{left:674.000000pt;}
.x115_c00120{left:675.333333pt;}
.x123_c00120{left:676.266667pt;}
.xcb_c00120{left:680.666667pt;}
.xbd_c00120{left:682.400000pt;}
.xf9_c00120{left:687.466667pt;}
}





/* 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_c00121 {
    display:none;
  }
  .loading-indicator_c00121.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00121 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_c00121 { 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_c00121" -> "#page-container .classname_c00121")
 */
.pf_c00121 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00121 { /* 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_c00121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00121 { /* 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_c00121 { /* 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_c00121 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00121 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00121 {overflow:visible;}
  }
}
.c_c00121 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00121 { /* 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_c00121:after { /* webkit #35443 */
  content: '';
}
.t_c00121:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00121 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 */
}
.__c00121 { /* 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_c00121 { /* info for Javascript */
  display:none;
}
.l_c00121 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00121 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00121 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00121: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_c00121 {
    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_c00121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00121.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_c00121 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00121;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.000000;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;}
.m83_c00121{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00121{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m133_c00121{transform:matrix(0.083750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00121{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00121{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00121{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00121{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m87_c00121{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00121{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m35_c00121{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m100_c00121{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00121{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m91_c00121{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md5_c00121{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00121{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m106_c00121{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m121_c00121{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m134_c00121{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m37_c00121{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m132_c00121{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00121{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00121{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00121{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m107_c00121{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00121{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00121{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00121{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m74_c00121{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00121{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.md3_c00121{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m20_c00121{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m36_c00121{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m109_c00121{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00121{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m62_c00121{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00121{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00121{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m50_c00121{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00121{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00121{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m67_c00121{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00121{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00121{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m44_c00121{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00121{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00121{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m59_c00121{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me2_c00121{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m7_c00121{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00121{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md1_c00121{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m130_c00121{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mce_c00121{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mef_c00121{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00121{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m30_c00121{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m69_c00121{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00121{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me0_c00121{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.md4_c00121{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00121{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m65_c00121{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.md0_c00121{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00121{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00121{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00121{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00121{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4_c00121{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00121{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.md6_c00121{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m88_c00121{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m38_c00121{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m102_c00121{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m54_c00121{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m27_c00121{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00121{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m26_c00121{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m78_c00121{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m14_c00121{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m97_c00121{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mc_c00121{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m72_c00121{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00121{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m61_c00121{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6_c00121{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m58_c00121{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00121{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00121{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00121{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00121{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00121{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mde_c00121{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00121{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00121{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00121{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m18_c00121{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m40_c00121{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m70_c00121{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00121{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m39_c00121{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10_c00121{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00121{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m15_c00121{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m60_c00121{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me1_c00121{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m13_c00121{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00121{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m77_c00121{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m96_c00121{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m52_c00121{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8_c00121{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00121{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m64_c00121{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.maf_c00121{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mf_c00121{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m82_c00121{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00121{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00121{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mae_c00121{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00121{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00121{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00121{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00121{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m89_c00121{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m16_c00121{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00121{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00121{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00121{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m41_c00121{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00121{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m46_c00121{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00121{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m71_c00121{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00121{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00121{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma_c00121{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00121{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mca_c00121{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.maa_c00121{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md_c00121{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00121{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00121{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00121{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m120_c00121{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m86_c00121{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m32_c00121{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m3_c00121{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me8_c00121{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00121{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m33_c00121{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m95_c00121{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m22_c00121{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m131_c00121{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m19_c00121{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mab_c00121{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00121{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md8_c00121{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me6_c00121{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00121{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m116_c00121{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m101_c00121{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00121{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00121{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00121{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00121{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00121{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me7_c00121{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mad_c00121{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00121{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00121{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m92_c00121{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m12_c00121{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00121{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m49_c00121{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00121{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m17_c00121{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00121{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m34_c00121{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00121{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m68_c00121{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.me3_c00121{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00121{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00121{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m110_c00121{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00121{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00121{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00121{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md9_c00121{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00121{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.md2_c00121{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00121{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m25_c00121{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m84_c00121{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m57_c00121{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m81_c00121{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m31_c00121{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00121{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00121{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m42_c00121{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.med_c00121{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00121{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me9_c00121{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00121{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m127_c00121{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m48_c00121{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00121{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00121{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m53_c00121{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m85_c00121{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m21_c00121{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5_c00121{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00121{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00121{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m79_c00121{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m135_c00121{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00121{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00121{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m73_c00121{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mee_c00121{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m47_c00121{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9_c00121{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00121{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00121{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m11_c00121{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00121{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mea_c00121{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00121{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mba_c00121{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mac_c00121{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m98_c00121{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m94_c00121{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me4_c00121{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me_c00121{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mff_c00121{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md7_c00121{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00121{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m90_c00121{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00121{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00121{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m103_c00121{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m99_c00121{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00121{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m93_c00121{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00121{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00121{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mec_c00121{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m66_c00121{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m123_c00121{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00121{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00121{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m125_c00121{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00121{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m55_c00121{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00121{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mda_c00121{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00121{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00121{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m29_c00121{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00121{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m28_c00121{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{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);}
.m105_c00121{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00121{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24_c00121{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00121{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m129_c00121{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m104_c00121{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00121{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m119_c00121{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m128_c00121{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m115_c00121{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m124_c00121{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00121{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00121{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00121{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m117_c00121{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00121{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m113_c00121{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m63_c00121{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00121{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m126_c00121{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m0_c00121{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m23_c00121{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m111_c00121{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00121{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m75_c00121{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m56_c00121{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m76_c00121{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00121{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m118_c00121{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mb_c00121{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.meb_c00121{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00121{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00121{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00121{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m112_c00121{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00121{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00121{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00121{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00121{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00121{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m122_c00121{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m114_c00121{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m45_c00121{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m108_c00121{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.me5_c00121{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m80_c00121{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.m43_c00121{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m51_c00121{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls0_c00121{letter-spacing:0.000000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{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__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00121{word-spacing:-10.961538px;}
.ws1_c00121{word-spacing:-3.366812px;}
.ws5_c00121{word-spacing:-3.235294px;}
.ws6_c00121{word-spacing:-2.196796px;}
.ws0_c00121{word-spacing:-1.401747px;}
.ws9_c00121{word-spacing:0.000000px;}
.ws7_c00121{word-spacing:1.129032px;}
.ws4_c00121{word-spacing:2.432665px;}
.ws2_c00121{word-spacing:10.294118px;}
.ws3_c00121{word-spacing:16.864865px;}
.fc0_c00121{color:transparent;}
.fs7_c00121{font-size:36.000000px;}
.fs6_c00121{font-size:48.000000px;}
.fs5_c00121{font-size:54.000000px;}
.fs3_c00121{font-size:60.000000px;}
.fs2_c00121{font-size:66.000000px;}
.fs0_c00121{font-size:72.000000px;}
.fs4_c00121{font-size:78.000000px;}
.fs1_c00121{font-size:84.000000px;}
.y0_c00121{bottom:0.000000px;}
.y6e_c00121{bottom:190.050000px;}
.y34_c00121{bottom:190.800000px;}
.y33_c00121{bottom:207.750000px;}
.y6d_c00121{bottom:212.700000px;}
.y32_c00121{bottom:225.450000px;}
.y6c_c00121{bottom:226.800000px;}
.y6b_c00121{bottom:239.100000px;}
.y31_c00121{bottom:243.450000px;}
.y6a_c00121{bottom:248.850000px;}
.y30_c00121{bottom:261.150000px;}
.y69_c00121{bottom:264.300000px;}
.y2f_c00121{bottom:278.850000px;}
.y68_c00121{bottom:279.000000px;}
.y67_c00121{bottom:293.100000px;}
.y2e_c00121{bottom:296.850000px;}
.y66_c00121{bottom:307.500000px;}
.y2d_c00121{bottom:314.850000px;}
.y65_c00121{bottom:321.900000px;}
.y2c_c00121{bottom:332.850000px;}
.y64_c00121{bottom:336.300000px;}
.y63_c00121{bottom:350.700000px;}
.y2b_c00121{bottom:350.850000px;}
.y2a_c00121{bottom:368.850000px;}
.y62_c00121{bottom:378.000000px;}
.y29_c00121{bottom:386.850000px;}
.y61_c00121{bottom:397.800000px;}
.y28_c00121{bottom:404.850000px;}
.y60_c00121{bottom:406.800000px;}
.y5f_c00121{bottom:421.200000px;}
.y27_c00121{bottom:422.550000px;}
.y5e_c00121{bottom:438.150000px;}
.y26_c00121{bottom:440.550000px;}
.y5d_c00121{bottom:450.000000px;}
.y25_c00121{bottom:458.250000px;}
.y5c_c00121{bottom:464.850000px;}
.y24_c00121{bottom:476.250000px;}
.y5b_c00121{bottom:479.250000px;}
.y5a_c00121{bottom:493.950000px;}
.y23_c00121{bottom:494.250000px;}
.y59_c00121{bottom:507.600000px;}
.y22_c00121{bottom:512.250000px;}
.y58_c00121{bottom:522.000000px;}
.y21_c00121{bottom:529.800000px;}
.y57_c00121{bottom:536.550000px;}
.y20_c00121{bottom:547.800000px;}
.y56_c00121{bottom:551.250000px;}
.y55_c00121{bottom:565.350000px;}
.y1f_c00121{bottom:565.800000px;}
.y54_c00121{bottom:579.750000px;}
.y1e_c00121{bottom:583.500000px;}
.y53_c00121{bottom:596.250000px;}
.y1d_c00121{bottom:601.500000px;}
.y52_c00121{bottom:609.150000px;}
.y1c_c00121{bottom:619.200000px;}
.y51_c00121{bottom:622.800000px;}
.y50_c00121{bottom:637.200000px;}
.y1b_c00121{bottom:645.750000px;}
.y4f_c00121{bottom:651.600000px;}
.y1a_c00121{bottom:657.600000px;}
.y4e_c00121{bottom:666.000000px;}
.y19_c00121{bottom:675.300000px;}
.y4d_c00121{bottom:680.700000px;}
.y4c_c00121{bottom:694.800000px;}
.y18_c00121{bottom:697.350000px;}
.y4b_c00121{bottom:709.500000px;}
.y17_c00121{bottom:715.650000px;}
.y4a_c00121{bottom:723.900000px;}
.y16_c00121{bottom:733.650000px;}
.y49_c00121{bottom:738.300000px;}
.y48_c00121{bottom:752.400000px;}
.y15_c00121{bottom:759.600000px;}
.y47_c00121{bottom:766.500000px;}
.y14_c00121{bottom:777.600000px;}
.y46_c00121{bottom:780.900000px;}
.y13_c00121{bottom:794.850000px;}
.y45_c00121{bottom:795.300000px;}
.y44_c00121{bottom:809.700000px;}
.y12_c00121{bottom:813.150000px;}
.y11_c00121{bottom:830.850000px;}
.y10_c00121{bottom:848.100000px;}
.y43_c00121{bottom:855.000000px;}
.yf_c00121{bottom:865.800000px;}
.y42_c00121{bottom:882.750000px;}
.ye_c00121{bottom:884.100000px;}
.y41_c00121{bottom:900.750000px;}
.yd_c00121{bottom:903.300000px;}
.y40_c00121{bottom:919.050000px;}
.yc_c00121{bottom:924.150000px;}
.y3f_c00121{bottom:937.050000px;}
.yb_c00121{bottom:953.250000px;}
.y3e_c00121{bottom:954.750000px;}
.ya_c00121{bottom:975.600000px;}
.y3d_c00121{bottom:979.650000px;}
.y9_c00121{bottom:994.650000px;}
.y3c_c00121{bottom:998.400000px;}
.y8_c00121{bottom:1014.150000px;}
.y3b_c00121{bottom:1016.400000px;}
.y7_c00121{bottom:1034.250000px;}
.y3a_c00121{bottom:1034.400000px;}
.y39_c00121{bottom:1052.100000px;}
.y6_c00121{bottom:1058.400000px;}
.y38_c00121{bottom:1069.800000px;}
.y5_c00121{bottom:1078.650000px;}
.y37_c00121{bottom:1087.800000px;}
.y4_c00121{bottom:1098.750000px;}
.y36_c00121{bottom:1105.800000px;}
.y3_c00121{bottom:1119.600000px;}
.y35_c00121{bottom:1123.500000px;}
.y1_c00121{bottom:1143.000000px;}
.y2_c00121{bottom:1148.100000px;}
.h9_c00121{height:36.000000px;}
.h8_c00121{height:48.000000px;}
.h7_c00121{height:54.000000px;}
.h5_c00121{height:60.000000px;}
.h4_c00121{height:66.000000px;}
.h2_c00121{height:72.000000px;}
.h6_c00121{height:78.000000px;}
.h3_c00121{height:84.000000px;}
.h0_c00121{height:1271.160094px;}
.h1_c00121{height:1271.250000px;}
.w1_c00121{width:953.250000px;}
.w0_c00121{width:953.280030px;}
.x0_c00121{left:0.000000px;}
.x49_c00121{left:177.900000px;}
.x1_c00121{left:179.250000px;}
.x98_c00121{left:191.250000px;}
.x5b_c00121{left:192.450000px;}
.xc_c00121{left:196.650000px;}
.x3c_c00121{left:197.700000px;}
.x74_c00121{left:198.750000px;}
.x84_c00121{left:200.550000px;}
.x78_c00121{left:203.850000px;}
.x3_c00121{left:213.450000px;}
.xe_c00121{left:214.950000px;}
.x7d_c00121{left:221.550000px;}
.x4a_c00121{left:223.200000px;}
.x21_c00121{left:225.750000px;}
.x67_c00121{left:228.300000px;}
.x5c_c00121{left:230.250000px;}
.xd_c00121{left:231.900000px;}
.x29_c00121{left:233.400000px;}
.x91_c00121{left:236.400000px;}
.x6b_c00121{left:239.400000px;}
.x55_c00121{left:240.900000px;}
.x7f_c00121{left:243.000000px;}
.x96_c00121{left:244.200000px;}
.x38_c00121{left:245.400000px;}
.x45_c00121{left:246.450000px;}
.x3d_c00121{left:248.850000px;}
.xf_c00121{left:249.900000px;}
.x32_c00121{left:251.250000px;}
.x63_c00121{left:255.150000px;}
.x4_c00121{left:256.350000px;}
.x8d_c00121{left:258.600000px;}
.x2a_c00121{left:259.650000px;}
.x14_c00121{left:261.450000px;}
.x85_c00121{left:263.850000px;}
.x13_c00121{left:265.350000px;}
.x68_c00121{left:266.400000px;}
.x1f_c00121{left:267.900000px;}
.x16_c00121{left:268.950000px;}
.x6_c00121{left:270.000000px;}
.x42_c00121{left:271.350000px;}
.x8e_c00121{left:273.000000px;}
.x56_c00121{left:274.350000px;}
.x6c_c00121{left:275.400000px;}
.x25_c00121{left:277.200000px;}
.x50_c00121{left:279.000000px;}
.x1b_c00121{left:282.750000px;}
.x86_c00121{left:284.400000px;}
.x79_c00121{left:285.900000px;}
.x46_c00121{left:288.150000px;}
.x4b_c00121{left:289.800000px;}
.x2b_c00121{left:292.800000px;}
.x8a_c00121{left:295.650000px;}
.x51_c00121{left:296.700000px;}
.x26_c00121{left:298.800000px;}
.x75_c00121{left:300.000000px;}
.x70_c00121{left:301.500000px;}
.x3e_c00121{left:303.900000px;}
.x64_c00121{left:304.950000px;}
.x57_c00121{left:307.800000px;}
.x7_c00121{left:310.650000px;}
.x17_c00121{left:313.650000px;}
.x52_c00121{left:315.000000px;}
.x7a_c00121{left:317.550000px;}
.x87_c00121{left:318.900000px;}
.x5_c00121{left:320.100000px;}
.x4e_c00121{left:322.500000px;}
.x7c_c00121{left:323.700000px;}
.x15_c00121{left:326.550000px;}
.x8b_c00121{left:328.800000px;}
.x8_c00121{left:330.150000px;}
.x93_c00121{left:332.100000px;}
.x10_c00121{left:333.750000px;}
.x81_c00121{left:335.550000px;}
.x39_c00121{left:336.750000px;}
.x1c_c00121{left:338.250000px;}
.x8f_c00121{left:339.600000px;}
.x2c_c00121{left:342.150000px;}
.x22_c00121{left:343.800000px;}
.x18_c00121{left:345.750000px;}
.x80_c00121{left:347.850000px;}
.x6d_c00121{left:349.500000px;}
.x27_c00121{left:352.800000px;}
.x53_c00121{left:353.850000px;}
.x76_c00121{left:355.500000px;}
.x20_c00121{left:356.550000px;}
.x71_c00121{left:358.800000px;}
.x43_c00121{left:359.850000px;}
.x5d_c00121{left:362.100000px;}
.x69_c00121{left:363.150000px;}
.x47_c00121{left:366.300000px;}
.x58_c00121{left:368.700000px;}
.x1d_c00121{left:371.700000px;}
.x94_c00121{left:373.500000px;}
.x44_c00121{left:374.550000px;}
.x33_c00121{left:376.200000px;}
.x54_c00121{left:377.550000px;}
.x28_c00121{left:378.750000px;}
.x2d_c00121{left:380.250000px;}
.x11_c00121{left:384.150000px;}
.x9_c00121{left:387.000000px;}
.x60_c00121{left:388.500000px;}
.x7e_c00121{left:390.600000px;}
.x99_c00121{left:392.100000px;}
.x1e_c00121{left:395.400000px;}
.x2e_c00121{left:396.450000px;}
.x61_c00121{left:399.600000px;}
.x3a_c00121{left:402.300000px;}
.x36_c00121{left:403.650000px;}
.x12_c00121{left:405.450000px;}
.x88_c00121{left:409.950000px;}
.x72_c00121{left:411.000000px;}
.x2f_c00121{left:412.950000px;}
.x2_c00121{left:416.850000px;}
.x4c_c00121{left:418.350000px;}
.xa_c00121{left:421.950000px;}
.x82_c00121{left:426.150000px;}
.x3f_c00121{left:427.500000px;}
.x89_c00121{left:430.800000px;}
.x62_c00121{left:432.000000px;}
.x59_c00121{left:435.750000px;}
.x23_c00121{left:438.150000px;}
.x65_c00121{left:440.700000px;}
.x48_c00121{left:442.950000px;}
.x30_c00121{left:447.150000px;}
.x19_c00121{left:448.350000px;}
.x37_c00121{left:450.150000px;}
.x3b_c00121{left:451.200000px;}
.x24_c00121{left:452.850000px;}
.x40_c00121{left:455.250000px;}
.x77_c00121{left:456.600000px;}
.x6f_c00121{left:461.250000px;}
.x73_c00121{left:462.450000px;}
.xb_c00121{left:464.850000px;}
.x1a_c00121{left:466.650000px;}
.x7b_c00121{left:469.050000px;}
.x34_c00121{left:470.100000px;}
.x90_c00121{left:471.450000px;}
.x31_c00121{left:473.850000px;}
.x6e_c00121{left:475.350000px;}
.x9a_c00121{left:476.700000px;}
.x83_c00121{left:478.050000px;}
.x4d_c00121{left:482.400000px;}
.x95_c00121{left:487.200000px;}
.x66_c00121{left:488.550000px;}
.x6a_c00121{left:490.800000px;}
.x8c_c00121{left:493.350000px;}
.x35_c00121{left:495.000000px;}
.x92_c00121{left:497.100000px;}
.x41_c00121{left:498.150000px;}
.x5a_c00121{left:499.500000px;}
.x5e_c00121{left:501.750000px;}
.x97_c00121{left:505.200000px;}
.x4f_c00121{left:510.450000px;}
.x5f_c00121{left:511.500000px;}
.x102_c00121{left:533.400000px;}
.xd0_c00121{left:534.900000px;}
.x12f_c00121{left:536.100000px;}
.x128_c00121{left:537.150000px;}
.xe7_c00121{left:550.050000px;}
.x9b_c00121{left:551.550000px;}
.xb9_c00121{left:552.900000px;}
.x11e_c00121{left:555.150000px;}
.x13a_c00121{left:556.500000px;}
.x123_c00121{left:557.850000px;}
.xf8_c00121{left:559.650000px;}
.xee_c00121{left:561.300000px;}
.x112_c00121{left:565.050000px;}
.xf3_c00121{left:566.100000px;}
.x133_c00121{left:568.500000px;}
.xce_c00121{left:570.300000px;}
.x140_c00121{left:571.350000px;}
.xa4_c00121{left:572.550000px;}
.xab_c00121{left:573.900000px;}
.x11b_c00121{left:575.250000px;}
.x12b_c00121{left:577.200000px;}
.x10e_c00121{left:579.900000px;}
.xdb_c00121{left:580.950000px;}
.x14c_c00121{left:582.900000px;}
.xf9_c00121{left:584.100000px;}
.xb3_c00121{left:585.600000px;}
.xfb_c00121{left:587.100000px;}
.xba_c00121{left:588.900000px;}
.x14d_c00121{left:590.400000px;}
.xe8_c00121{left:591.750000px;}
.xc9_c00121{left:593.400000px;}
.x9c_c00121{left:595.050000px;}
.x149_c00121{left:597.450000px;}
.xd6_c00121{left:599.700000px;}
.x146_c00121{left:600.750000px;}
.xf4_c00121{left:603.150000px;}
.xdf_c00121{left:604.200000px;}
.xe9_c00121{left:606.900000px;}
.xac_c00121{left:608.100000px;}
.xfc_c00121{left:610.500000px;}
.x115_c00121{left:611.850000px;}
.xa5_c00121{left:612.900000px;}
.x14a_c00121{left:613.950000px;}
.x11f_c00121{left:615.000000px;}
.x134_c00121{left:616.050000px;}
.xfa_c00121{left:617.250000px;}
.xd7_c00121{left:619.200000px;}
.xcf_c00121{left:622.200000px;}
.xe4_c00121{left:624.750000px;}
.xbb_c00121{left:627.300000px;}
.xc0_c00121{left:630.000000px;}
.xad_c00121{left:631.800000px;}
.x107_c00121{left:632.850000px;}
.x135_c00121{left:636.150000px;}
.xe0_c00121{left:638.700000px;}
.xc4_c00121{left:641.550000px;}
.x108_c00121{left:643.650000px;}
.x10f_c00121{left:645.750000px;}
.xb4_c00121{left:647.250000px;}
.xd1_c00121{left:648.750000px;}
.x113_c00121{left:650.850000px;}
.xae_c00121{left:652.650000px;}
.xbc_c00121{left:654.300000px;}
.xa6_c00121{left:655.350000px;}
.x9d_c00121{left:657.750000px;}
.xc5_c00121{left:660.300000px;}
.xca_c00121{left:663.600000px;}
.x130_c00121{left:664.650000px;}
.xf5_c00121{left:667.500000px;}
.x109_c00121{left:669.150000px;}
.xbd_c00121{left:671.250000px;}
.xdc_c00121{left:674.100000px;}
.x124_c00121{left:676.050000px;}
.x9e_c00121{left:678.300000px;}
.x116_c00121{left:679.500000px;}
.xef_c00121{left:680.850000px;}
.xb5_c00121{left:682.500000px;}
.xc1_c00121{left:684.450000px;}
.x147_c00121{left:686.400000px;}
.x10a_c00121{left:687.450000px;}
.xfd_c00121{left:689.250000px;}
.x144_c00121{left:690.900000px;}
.xaf_c00121{left:692.250000px;}
.x12c_c00121{left:693.900000px;}
.xd2_c00121{left:695.850000px;}
.xf6_c00121{left:697.800000px;}
.x13d_c00121{left:699.900000px;}
.x11c_c00121{left:701.400000px;}
.x120_c00121{left:703.200000px;}
.x117_c00121{left:705.000000px;}
.xf0_c00121{left:706.950000px;}
.x9f_c00121{left:708.600000px;}
.x125_c00121{left:709.950000px;}
.xb0_c00121{left:711.000000px;}
.xcb_c00121{left:712.500000px;}
.x118_c00121{left:713.700000px;}
.x121_c00121{left:715.500000px;}
.xa7_c00121{left:716.850000px;}
.xa0_c00121{left:719.400000px;}
.x13e_c00121{left:721.800000px;}
.xc6_c00121{left:723.750000px;}
.xdd_c00121{left:724.800000px;}
.x10b_c00121{left:726.300000px;}
.xb1_c00121{left:727.500000px;}
.xf1_c00121{left:728.850000px;}
.x138_c00121{left:730.800000px;}
.x103_c00121{left:731.850000px;}
.x143_c00121{left:734.250000px;}
.xe5_c00121{left:735.600000px;}
.x131_c00121{left:737.100000px;}
.x129_c00121{left:739.200000px;}
.xcc_c00121{left:741.300000px;}
.xea_c00121{left:743.400000px;}
.xe1_c00121{left:745.350000px;}
.xfe_c00121{left:747.150000px;}
.xcd_c00121{left:748.200000px;}
.xe6_c00121{left:749.400000px;}
.xa1_c00121{left:750.750000px;}
.x10c_c00121{left:751.800000px;}
.xc7_c00121{left:753.600000px;}
.x114_c00121{left:755.100000px;}
.x14f_c00121{left:756.900000px;}
.xd8_c00121{left:761.700000px;}
.x119_c00121{left:763.650000px;}
.xf7_c00121{left:765.900000px;}
.x139_c00121{left:767.100000px;}
.xd3_c00121{left:768.600000px;}
.x13f_c00121{left:770.700000px;}
.x12d_c00121{left:772.350000px;}
.xb6_c00121{left:773.550000px;}
.xbe_c00121{left:774.900000px;}
.x145_c00121{left:775.950000px;}
.x110_c00121{left:777.450000px;}
.x11a_c00121{left:779.100000px;}
.xd9_c00121{left:780.450000px;}
.x14b_c00121{left:781.650000px;}
.xf2_c00121{left:783.150000px;}
.xc8_c00121{left:784.200000px;}
.x10d_c00121{left:785.700000px;}
.x132_c00121{left:787.800000px;}
.xe2_c00121{left:789.300000px;}
.x150_c00121{left:790.350000px;}
.x111_c00121{left:792.600000px;}
.xa8_c00121{left:794.250000px;}
.x148_c00121{left:795.450000px;}
.xa2_c00121{left:797.250000px;}
.x13b_c00121{left:799.650000px;}
.xda_c00121{left:802.050000px;}
.xff_c00121{left:804.450000px;}
.xeb_c00121{left:806.700000px;}
.x141_c00121{left:808.200000px;}
.xb7_c00121{left:811.350000px;}
.x12e_c00121{left:814.050000px;}
.x104_c00121{left:816.300000px;}
.x13c_c00121{left:817.350000px;}
.x122_c00121{left:818.550000px;}
.x142_c00121{left:820.050000px;}
.xa9_c00121{left:822.300000px;}
.xe3_c00121{left:823.800000px;}
.x100_c00121{left:825.000000px;}
.xec_c00121{left:826.200000px;}
.xa3_c00121{left:827.550000px;}
.xc2_c00121{left:829.200000px;}
.x136_c00121{left:831.600000px;}
.x105_c00121{left:832.800000px;}
.xd4_c00121{left:834.900000px;}
.xde_c00121{left:837.450000px;}
.xbf_c00121{left:839.400000px;}
.x101_c00121{left:840.900000px;}
.xc3_c00121{left:842.550000px;}
.xd5_c00121{left:843.900000px;}
.xb2_c00121{left:845.250000px;}
.x137_c00121{left:846.300000px;}
.xed_c00121{left:849.300000px;}
.x126_c00121{left:851.400000px;}
.x12a_c00121{left:852.600000px;}
.xb8_c00121{left:855.600000px;}
.xaa_c00121{left:858.000000px;}
.x11d_c00121{left:859.800000px;}
.x106_c00121{left:861.300000px;}
.x14e_c00121{left:865.650000px;}
.x127_c00121{left:867.600000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws8_c00121{word-spacing:-9.743590pt;}
.ws1_c00121{word-spacing:-2.992722pt;}
.ws5_c00121{word-spacing:-2.875817pt;}
.ws6_c00121{word-spacing:-1.952708pt;}
.ws0_c00121{word-spacing:-1.245997pt;}
.ws9_c00121{word-spacing:0.000000pt;}
.ws7_c00121{word-spacing:1.003584pt;}
.ws4_c00121{word-spacing:2.162369pt;}
.ws2_c00121{word-spacing:9.150327pt;}
.ws3_c00121{word-spacing:14.990991pt;}
.fs7_c00121{font-size:32.000000pt;}
.fs6_c00121{font-size:42.666667pt;}
.fs5_c00121{font-size:48.000000pt;}
.fs3_c00121{font-size:53.333333pt;}
.fs2_c00121{font-size:58.666667pt;}
.fs0_c00121{font-size:64.000000pt;}
.fs4_c00121{font-size:69.333333pt;}
.fs1_c00121{font-size:74.666667pt;}
.y0_c00121{bottom:0.000000pt;}
.y6e_c00121{bottom:168.933333pt;}
.y34_c00121{bottom:169.600000pt;}
.y33_c00121{bottom:184.666667pt;}
.y6d_c00121{bottom:189.066667pt;}
.y32_c00121{bottom:200.400000pt;}
.y6c_c00121{bottom:201.600000pt;}
.y6b_c00121{bottom:212.533333pt;}
.y31_c00121{bottom:216.400000pt;}
.y6a_c00121{bottom:221.200000pt;}
.y30_c00121{bottom:232.133333pt;}
.y69_c00121{bottom:234.933333pt;}
.y2f_c00121{bottom:247.866667pt;}
.y68_c00121{bottom:248.000000pt;}
.y67_c00121{bottom:260.533333pt;}
.y2e_c00121{bottom:263.866667pt;}
.y66_c00121{bottom:273.333333pt;}
.y2d_c00121{bottom:279.866667pt;}
.y65_c00121{bottom:286.133333pt;}
.y2c_c00121{bottom:295.866667pt;}
.y64_c00121{bottom:298.933333pt;}
.y63_c00121{bottom:311.733333pt;}
.y2b_c00121{bottom:311.866667pt;}
.y2a_c00121{bottom:327.866667pt;}
.y62_c00121{bottom:336.000000pt;}
.y29_c00121{bottom:343.866667pt;}
.y61_c00121{bottom:353.600000pt;}
.y28_c00121{bottom:359.866667pt;}
.y60_c00121{bottom:361.600000pt;}
.y5f_c00121{bottom:374.400000pt;}
.y27_c00121{bottom:375.600000pt;}
.y5e_c00121{bottom:389.466667pt;}
.y26_c00121{bottom:391.600000pt;}
.y5d_c00121{bottom:400.000000pt;}
.y25_c00121{bottom:407.333333pt;}
.y5c_c00121{bottom:413.200000pt;}
.y24_c00121{bottom:423.333333pt;}
.y5b_c00121{bottom:426.000000pt;}
.y5a_c00121{bottom:439.066667pt;}
.y23_c00121{bottom:439.333333pt;}
.y59_c00121{bottom:451.200000pt;}
.y22_c00121{bottom:455.333333pt;}
.y58_c00121{bottom:464.000000pt;}
.y21_c00121{bottom:470.933333pt;}
.y57_c00121{bottom:476.933333pt;}
.y20_c00121{bottom:486.933333pt;}
.y56_c00121{bottom:490.000000pt;}
.y55_c00121{bottom:502.533333pt;}
.y1f_c00121{bottom:502.933333pt;}
.y54_c00121{bottom:515.333333pt;}
.y1e_c00121{bottom:518.666667pt;}
.y53_c00121{bottom:530.000000pt;}
.y1d_c00121{bottom:534.666667pt;}
.y52_c00121{bottom:541.466667pt;}
.y1c_c00121{bottom:550.400000pt;}
.y51_c00121{bottom:553.600000pt;}
.y50_c00121{bottom:566.400000pt;}
.y1b_c00121{bottom:574.000000pt;}
.y4f_c00121{bottom:579.200000pt;}
.y1a_c00121{bottom:584.533333pt;}
.y4e_c00121{bottom:592.000000pt;}
.y19_c00121{bottom:600.266667pt;}
.y4d_c00121{bottom:605.066667pt;}
.y4c_c00121{bottom:617.600000pt;}
.y18_c00121{bottom:619.866667pt;}
.y4b_c00121{bottom:630.666667pt;}
.y17_c00121{bottom:636.133333pt;}
.y4a_c00121{bottom:643.466667pt;}
.y16_c00121{bottom:652.133333pt;}
.y49_c00121{bottom:656.266667pt;}
.y48_c00121{bottom:668.800000pt;}
.y15_c00121{bottom:675.200000pt;}
.y47_c00121{bottom:681.333333pt;}
.y14_c00121{bottom:691.200000pt;}
.y46_c00121{bottom:694.133333pt;}
.y13_c00121{bottom:706.533333pt;}
.y45_c00121{bottom:706.933333pt;}
.y44_c00121{bottom:719.733333pt;}
.y12_c00121{bottom:722.800000pt;}
.y11_c00121{bottom:738.533333pt;}
.y10_c00121{bottom:753.866667pt;}
.y43_c00121{bottom:760.000000pt;}
.yf_c00121{bottom:769.600000pt;}
.y42_c00121{bottom:784.666667pt;}
.ye_c00121{bottom:785.866667pt;}
.y41_c00121{bottom:800.666667pt;}
.yd_c00121{bottom:802.933333pt;}
.y40_c00121{bottom:816.933333pt;}
.yc_c00121{bottom:821.466667pt;}
.y3f_c00121{bottom:832.933333pt;}
.yb_c00121{bottom:847.333333pt;}
.y3e_c00121{bottom:848.666667pt;}
.ya_c00121{bottom:867.200000pt;}
.y3d_c00121{bottom:870.800000pt;}
.y9_c00121{bottom:884.133333pt;}
.y3c_c00121{bottom:887.466667pt;}
.y8_c00121{bottom:901.466667pt;}
.y3b_c00121{bottom:903.466667pt;}
.y7_c00121{bottom:919.333333pt;}
.y3a_c00121{bottom:919.466667pt;}
.y39_c00121{bottom:935.200000pt;}
.y6_c00121{bottom:940.800000pt;}
.y38_c00121{bottom:950.933333pt;}
.y5_c00121{bottom:958.800000pt;}
.y37_c00121{bottom:966.933333pt;}
.y4_c00121{bottom:976.666667pt;}
.y36_c00121{bottom:982.933333pt;}
.y3_c00121{bottom:995.200000pt;}
.y35_c00121{bottom:998.666667pt;}
.y1_c00121{bottom:1016.000000pt;}
.y2_c00121{bottom:1020.533333pt;}
.h9_c00121{height:32.000000pt;}
.h8_c00121{height:42.666667pt;}
.h7_c00121{height:48.000000pt;}
.h5_c00121{height:53.333333pt;}
.h4_c00121{height:58.666667pt;}
.h2_c00121{height:64.000000pt;}
.h6_c00121{height:69.333333pt;}
.h3_c00121{height:74.666667pt;}
.h0_c00121{height:1129.920084pt;}
.h1_c00121{height:1130.000000pt;}
.w1_c00121{width:847.333333pt;}
.w0_c00121{width:847.360027pt;}
.x0_c00121{left:0.000000pt;}
.x49_c00121{left:158.133333pt;}
.x1_c00121{left:159.333333pt;}
.x98_c00121{left:170.000000pt;}
.x5b_c00121{left:171.066667pt;}
.xc_c00121{left:174.800000pt;}
.x3c_c00121{left:175.733333pt;}
.x74_c00121{left:176.666667pt;}
.x84_c00121{left:178.266667pt;}
.x78_c00121{left:181.200000pt;}
.x3_c00121{left:189.733333pt;}
.xe_c00121{left:191.066667pt;}
.x7d_c00121{left:196.933333pt;}
.x4a_c00121{left:198.400000pt;}
.x21_c00121{left:200.666667pt;}
.x67_c00121{left:202.933333pt;}
.x5c_c00121{left:204.666667pt;}
.xd_c00121{left:206.133333pt;}
.x29_c00121{left:207.466667pt;}
.x91_c00121{left:210.133333pt;}
.x6b_c00121{left:212.800000pt;}
.x55_c00121{left:214.133333pt;}
.x7f_c00121{left:216.000000pt;}
.x96_c00121{left:217.066667pt;}
.x38_c00121{left:218.133333pt;}
.x45_c00121{left:219.066667pt;}
.x3d_c00121{left:221.200000pt;}
.xf_c00121{left:222.133333pt;}
.x32_c00121{left:223.333333pt;}
.x63_c00121{left:226.800000pt;}
.x4_c00121{left:227.866667pt;}
.x8d_c00121{left:229.866667pt;}
.x2a_c00121{left:230.800000pt;}
.x14_c00121{left:232.400000pt;}
.x85_c00121{left:234.533333pt;}
.x13_c00121{left:235.866667pt;}
.x68_c00121{left:236.800000pt;}
.x1f_c00121{left:238.133333pt;}
.x16_c00121{left:239.066667pt;}
.x6_c00121{left:240.000000pt;}
.x42_c00121{left:241.200000pt;}
.x8e_c00121{left:242.666667pt;}
.x56_c00121{left:243.866667pt;}
.x6c_c00121{left:244.800000pt;}
.x25_c00121{left:246.400000pt;}
.x50_c00121{left:248.000000pt;}
.x1b_c00121{left:251.333333pt;}
.x86_c00121{left:252.800000pt;}
.x79_c00121{left:254.133333pt;}
.x46_c00121{left:256.133333pt;}
.x4b_c00121{left:257.600000pt;}
.x2b_c00121{left:260.266667pt;}
.x8a_c00121{left:262.800000pt;}
.x51_c00121{left:263.733333pt;}
.x26_c00121{left:265.600000pt;}
.x75_c00121{left:266.666667pt;}
.x70_c00121{left:268.000000pt;}
.x3e_c00121{left:270.133333pt;}
.x64_c00121{left:271.066667pt;}
.x57_c00121{left:273.600000pt;}
.x7_c00121{left:276.133333pt;}
.x17_c00121{left:278.800000pt;}
.x52_c00121{left:280.000000pt;}
.x7a_c00121{left:282.266667pt;}
.x87_c00121{left:283.466667pt;}
.x5_c00121{left:284.533333pt;}
.x4e_c00121{left:286.666667pt;}
.x7c_c00121{left:287.733333pt;}
.x15_c00121{left:290.266667pt;}
.x8b_c00121{left:292.266667pt;}
.x8_c00121{left:293.466667pt;}
.x93_c00121{left:295.200000pt;}
.x10_c00121{left:296.666667pt;}
.x81_c00121{left:298.266667pt;}
.x39_c00121{left:299.333333pt;}
.x1c_c00121{left:300.666667pt;}
.x8f_c00121{left:301.866667pt;}
.x2c_c00121{left:304.133333pt;}
.x22_c00121{left:305.600000pt;}
.x18_c00121{left:307.333333pt;}
.x80_c00121{left:309.200000pt;}
.x6d_c00121{left:310.666667pt;}
.x27_c00121{left:313.600000pt;}
.x53_c00121{left:314.533333pt;}
.x76_c00121{left:316.000000pt;}
.x20_c00121{left:316.933333pt;}
.x71_c00121{left:318.933333pt;}
.x43_c00121{left:319.866667pt;}
.x5d_c00121{left:321.866667pt;}
.x69_c00121{left:322.800000pt;}
.x47_c00121{left:325.600000pt;}
.x58_c00121{left:327.733333pt;}
.x1d_c00121{left:330.400000pt;}
.x94_c00121{left:332.000000pt;}
.x44_c00121{left:332.933333pt;}
.x33_c00121{left:334.400000pt;}
.x54_c00121{left:335.600000pt;}
.x28_c00121{left:336.666667pt;}
.x2d_c00121{left:338.000000pt;}
.x11_c00121{left:341.466667pt;}
.x9_c00121{left:344.000000pt;}
.x60_c00121{left:345.333333pt;}
.x7e_c00121{left:347.200000pt;}
.x99_c00121{left:348.533333pt;}
.x1e_c00121{left:351.466667pt;}
.x2e_c00121{left:352.400000pt;}
.x61_c00121{left:355.200000pt;}
.x3a_c00121{left:357.600000pt;}
.x36_c00121{left:358.800000pt;}
.x12_c00121{left:360.400000pt;}
.x88_c00121{left:364.400000pt;}
.x72_c00121{left:365.333333pt;}
.x2f_c00121{left:367.066667pt;}
.x2_c00121{left:370.533333pt;}
.x4c_c00121{left:371.866667pt;}
.xa_c00121{left:375.066667pt;}
.x82_c00121{left:378.800000pt;}
.x3f_c00121{left:380.000000pt;}
.x89_c00121{left:382.933333pt;}
.x62_c00121{left:384.000000pt;}
.x59_c00121{left:387.333333pt;}
.x23_c00121{left:389.466667pt;}
.x65_c00121{left:391.733333pt;}
.x48_c00121{left:393.733333pt;}
.x30_c00121{left:397.466667pt;}
.x19_c00121{left:398.533333pt;}
.x37_c00121{left:400.133333pt;}
.x3b_c00121{left:401.066667pt;}
.x24_c00121{left:402.533333pt;}
.x40_c00121{left:404.666667pt;}
.x77_c00121{left:405.866667pt;}
.x6f_c00121{left:410.000000pt;}
.x73_c00121{left:411.066667pt;}
.xb_c00121{left:413.200000pt;}
.x1a_c00121{left:414.800000pt;}
.x7b_c00121{left:416.933333pt;}
.x34_c00121{left:417.866667pt;}
.x90_c00121{left:419.066667pt;}
.x31_c00121{left:421.200000pt;}
.x6e_c00121{left:422.533333pt;}
.x9a_c00121{left:423.733333pt;}
.x83_c00121{left:424.933333pt;}
.x4d_c00121{left:428.800000pt;}
.x95_c00121{left:433.066667pt;}
.x66_c00121{left:434.266667pt;}
.x6a_c00121{left:436.266667pt;}
.x8c_c00121{left:438.533333pt;}
.x35_c00121{left:440.000000pt;}
.x92_c00121{left:441.866667pt;}
.x41_c00121{left:442.800000pt;}
.x5a_c00121{left:444.000000pt;}
.x5e_c00121{left:446.000000pt;}
.x97_c00121{left:449.066667pt;}
.x4f_c00121{left:453.733333pt;}
.x5f_c00121{left:454.666667pt;}
.x102_c00121{left:474.133333pt;}
.xd0_c00121{left:475.466667pt;}
.x12f_c00121{left:476.533333pt;}
.x128_c00121{left:477.466667pt;}
.xe7_c00121{left:488.933333pt;}
.x9b_c00121{left:490.266667pt;}
.xb9_c00121{left:491.466667pt;}
.x11e_c00121{left:493.466667pt;}
.x13a_c00121{left:494.666667pt;}
.x123_c00121{left:495.866667pt;}
.xf8_c00121{left:497.466667pt;}
.xee_c00121{left:498.933333pt;}
.x112_c00121{left:502.266667pt;}
.xf3_c00121{left:503.200000pt;}
.x133_c00121{left:505.333333pt;}
.xce_c00121{left:506.933333pt;}
.x140_c00121{left:507.866667pt;}
.xa4_c00121{left:508.933333pt;}
.xab_c00121{left:510.133333pt;}
.x11b_c00121{left:511.333333pt;}
.x12b_c00121{left:513.066667pt;}
.x10e_c00121{left:515.466667pt;}
.xdb_c00121{left:516.400000pt;}
.x14c_c00121{left:518.133333pt;}
.xf9_c00121{left:519.200000pt;}
.xb3_c00121{left:520.533333pt;}
.xfb_c00121{left:521.866667pt;}
.xba_c00121{left:523.466667pt;}
.x14d_c00121{left:524.800000pt;}
.xe8_c00121{left:526.000000pt;}
.xc9_c00121{left:527.466667pt;}
.x9c_c00121{left:528.933333pt;}
.x149_c00121{left:531.066667pt;}
.xd6_c00121{left:533.066667pt;}
.x146_c00121{left:534.000000pt;}
.xf4_c00121{left:536.133333pt;}
.xdf_c00121{left:537.066667pt;}
.xe9_c00121{left:539.466667pt;}
.xac_c00121{left:540.533333pt;}
.xfc_c00121{left:542.666667pt;}
.x115_c00121{left:543.866667pt;}
.xa5_c00121{left:544.800000pt;}
.x14a_c00121{left:545.733333pt;}
.x11f_c00121{left:546.666667pt;}
.x134_c00121{left:547.600000pt;}
.xfa_c00121{left:548.666667pt;}
.xd7_c00121{left:550.400000pt;}
.xcf_c00121{left:553.066667pt;}
.xe4_c00121{left:555.333333pt;}
.xbb_c00121{left:557.600000pt;}
.xc0_c00121{left:560.000000pt;}
.xad_c00121{left:561.600000pt;}
.x107_c00121{left:562.533333pt;}
.x135_c00121{left:565.466667pt;}
.xe0_c00121{left:567.733333pt;}
.xc4_c00121{left:570.266667pt;}
.x108_c00121{left:572.133333pt;}
.x10f_c00121{left:574.000000pt;}
.xb4_c00121{left:575.333333pt;}
.xd1_c00121{left:576.666667pt;}
.x113_c00121{left:578.533333pt;}
.xae_c00121{left:580.133333pt;}
.xbc_c00121{left:581.600000pt;}
.xa6_c00121{left:582.533333pt;}
.x9d_c00121{left:584.666667pt;}
.xc5_c00121{left:586.933333pt;}
.xca_c00121{left:589.866667pt;}
.x130_c00121{left:590.800000pt;}
.xf5_c00121{left:593.333333pt;}
.x109_c00121{left:594.800000pt;}
.xbd_c00121{left:596.666667pt;}
.xdc_c00121{left:599.200000pt;}
.x124_c00121{left:600.933333pt;}
.x9e_c00121{left:602.933333pt;}
.x116_c00121{left:604.000000pt;}
.xef_c00121{left:605.200000pt;}
.xb5_c00121{left:606.666667pt;}
.xc1_c00121{left:608.400000pt;}
.x147_c00121{left:610.133333pt;}
.x10a_c00121{left:611.066667pt;}
.xfd_c00121{left:612.666667pt;}
.x144_c00121{left:614.133333pt;}
.xaf_c00121{left:615.333333pt;}
.x12c_c00121{left:616.800000pt;}
.xd2_c00121{left:618.533333pt;}
.xf6_c00121{left:620.266667pt;}
.x13d_c00121{left:622.133333pt;}
.x11c_c00121{left:623.466667pt;}
.x120_c00121{left:625.066667pt;}
.x117_c00121{left:626.666667pt;}
.xf0_c00121{left:628.400000pt;}
.x9f_c00121{left:629.866667pt;}
.x125_c00121{left:631.066667pt;}
.xb0_c00121{left:632.000000pt;}
.xcb_c00121{left:633.333333pt;}
.x118_c00121{left:634.400000pt;}
.x121_c00121{left:636.000000pt;}
.xa7_c00121{left:637.200000pt;}
.xa0_c00121{left:639.466667pt;}
.x13e_c00121{left:641.600000pt;}
.xc6_c00121{left:643.333333pt;}
.xdd_c00121{left:644.266667pt;}
.x10b_c00121{left:645.600000pt;}
.xb1_c00121{left:646.666667pt;}
.xf1_c00121{left:647.866667pt;}
.x138_c00121{left:649.600000pt;}
.x103_c00121{left:650.533333pt;}
.x143_c00121{left:652.666667pt;}
.xe5_c00121{left:653.866667pt;}
.x131_c00121{left:655.200000pt;}
.x129_c00121{left:657.066667pt;}
.xcc_c00121{left:658.933333pt;}
.xea_c00121{left:660.800000pt;}
.xe1_c00121{left:662.533333pt;}
.xfe_c00121{left:664.133333pt;}
.xcd_c00121{left:665.066667pt;}
.xe6_c00121{left:666.133333pt;}
.xa1_c00121{left:667.333333pt;}
.x10c_c00121{left:668.266667pt;}
.xc7_c00121{left:669.866667pt;}
.x114_c00121{left:671.200000pt;}
.x14f_c00121{left:672.800000pt;}
.xd8_c00121{left:677.066667pt;}
.x119_c00121{left:678.800000pt;}
.xf7_c00121{left:680.800000pt;}
.x139_c00121{left:681.866667pt;}
.xd3_c00121{left:683.200000pt;}
.x13f_c00121{left:685.066667pt;}
.x12d_c00121{left:686.533333pt;}
.xb6_c00121{left:687.600000pt;}
.xbe_c00121{left:688.800000pt;}
.x145_c00121{left:689.733333pt;}
.x110_c00121{left:691.066667pt;}
.x11a_c00121{left:692.533333pt;}
.xd9_c00121{left:693.733333pt;}
.x14b_c00121{left:694.800000pt;}
.xf2_c00121{left:696.133333pt;}
.xc8_c00121{left:697.066667pt;}
.x10d_c00121{left:698.400000pt;}
.x132_c00121{left:700.266667pt;}
.xe2_c00121{left:701.600000pt;}
.x150_c00121{left:702.533333pt;}
.x111_c00121{left:704.533333pt;}
.xa8_c00121{left:706.000000pt;}
.x148_c00121{left:707.066667pt;}
.xa2_c00121{left:708.666667pt;}
.x13b_c00121{left:710.800000pt;}
.xda_c00121{left:712.933333pt;}
.xff_c00121{left:715.066667pt;}
.xeb_c00121{left:717.066667pt;}
.x141_c00121{left:718.400000pt;}
.xb7_c00121{left:721.200000pt;}
.x12e_c00121{left:723.600000pt;}
.x104_c00121{left:725.600000pt;}
.x13c_c00121{left:726.533333pt;}
.x122_c00121{left:727.600000pt;}
.x142_c00121{left:728.933333pt;}
.xa9_c00121{left:730.933333pt;}
.xe3_c00121{left:732.266667pt;}
.x100_c00121{left:733.333333pt;}
.xec_c00121{left:734.400000pt;}
.xa3_c00121{left:735.600000pt;}
.xc2_c00121{left:737.066667pt;}
.x136_c00121{left:739.200000pt;}
.x105_c00121{left:740.266667pt;}
.xd4_c00121{left:742.133333pt;}
.xde_c00121{left:744.400000pt;}
.xbf_c00121{left:746.133333pt;}
.x101_c00121{left:747.466667pt;}
.xc3_c00121{left:748.933333pt;}
.xd5_c00121{left:750.133333pt;}
.xb2_c00121{left:751.333333pt;}
.x137_c00121{left:752.266667pt;}
.xed_c00121{left:754.933333pt;}
.x126_c00121{left:756.800000pt;}
.x12a_c00121{left:757.866667pt;}
.xb8_c00121{left:760.533333pt;}
.xaa_c00121{left:762.666667pt;}
.x11d_c00121{left:764.266667pt;}
.x106_c00121{left:765.600000pt;}
.x14e_c00121{left:769.466667pt;}
.x127_c00121{left:771.200000pt;}
}





/* 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_c00122 {
    display:none;
  }
  .loading-indicator_c00122.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00122 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_c00122 { 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_c00122" -> "#page-container .classname_c00122")
 */
.pf_c00122 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00122 { /* 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_c00122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00122 { /* 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_c00122 { /* 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_c00122 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00122 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00122 {overflow:visible;}
  }
}
.c_c00122 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00122 { /* 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_c00122:after { /* webkit #35443 */
  content: '';
}
.t_c00122:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00122 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 */
}
.__c00122 { /* 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_c00122 { /* info for Javascript */
  display:none;
}
.l_c00122 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00122 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00122 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00122: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_c00122 {
    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_c00122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00122.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_c00122 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00122;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00122{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m109_c00122{transform:matrix(0.022000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022000,0.000000,0.000000,0.250000,0,0);}
.m91_c00122{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00122{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00122{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.me6_c00122{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00122{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00122{transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);}
.md2_c00122{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.md_c00122{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m26_c00122{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00122{transform:matrix(0.101250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00122{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m10_c00122{transform:matrix(0.108750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108750,0.000000,0.000000,0.250000,0,0);}
.m35_c00122{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mab_c00122{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m79_c00122{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00122{transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00122{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mce_c00122{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.m6_c00122{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00122{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00122{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00122{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00122{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m28_c00122{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00122{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m23_c00122{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00122{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.me5_c00122{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m107_c00122{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m67_c00122{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5_c00122{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m64_c00122{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00122{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00122{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00122{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m1_c00122{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00122{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mad_c00122{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00122{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m53_c00122{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00122{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00122{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.maa_c00122{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00122{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00122{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me3_c00122{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00122{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m44_c00122{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m30_c00122{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00122{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00122{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mef_c00122{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me2_c00122{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me7_c00122{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m68_c00122{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mda_c00122{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00122{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mea_c00122{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00122{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00122{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00122{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00122{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m33_c00122{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me4_c00122{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mc_c00122{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m65_c00122{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00122{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m100_c00122{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00122{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me0_c00122{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00122{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m58_c00122{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m69_c00122{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00122{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00122{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00122{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m21_c00122{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00122{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mde_c00122{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00122{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00122{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m49_c00122{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m29_c00122{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m15_c00122{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00122{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00122{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.meb_c00122{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m20_c00122{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m34_c00122{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m56_c00122{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md5_c00122{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m39_c00122{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m62_c00122{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.maf_c00122{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00122{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00122{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m83_c00122{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me9_c00122{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00122{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00122{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00122{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.md0_c00122{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m95_c00122{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m87_c00122{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m61_c00122{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m86_c00122{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m25_c00122{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00122{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00122{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00122{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m85_c00122{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m105_c00122{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m37_c00122{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m32_c00122{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m89_c00122{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00122{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m40_c00122{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00122{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00122{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00122{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.med_c00122{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00122{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00122{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m36_c00122{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m18_c00122{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00122{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00122{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.me8_c00122{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00122{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m80_c00122{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m55_c00122{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mba_c00122{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00122{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m16_c00122{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m48_c00122{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m17_c00122{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00122{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00122{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m102_c00122{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m78_c00122{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m90_c00122{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m84_c00122{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m27_c00122{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00122{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m31_c00122{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m81_c00122{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me1_c00122{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m51_c00122{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00122{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m98_c00122{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m19_c00122{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00122{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00122{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m99_c00122{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m57_c00122{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00122{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m24_c00122{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00122{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mae_c00122{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mb_c00122{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md9_c00122{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00122{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00122{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00122{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00122{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00122{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m71_c00122{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00122{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00122{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00122{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m70_c00122{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00122{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00122{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m96_c00122{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00122{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m101_c00122{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00122{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m22_c00122{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00122{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m50_c00122{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m45_c00122{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m94_c00122{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m75_c00122{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m46_c00122{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m106_c00122{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00122{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m88_c00122{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00122{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00122{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00122{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00122{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m97_c00122{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md4_c00122{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00122{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);}
.mb8_c00122{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00122{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m42_c00122{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00122{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00122{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00122{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m66_c00122{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m82_c00122{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00122{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00122{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00122{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m103_c00122{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c00122{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mff_c00122{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m104_c00122{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00122{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00122{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.ma_c00122{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m52_c00122{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00122{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m43_c00122{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00122{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00122{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m92_c00122{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m59_c00122{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00122{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m76_c00122{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.md3_c00122{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.me_c00122{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m12_c00122{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mec_c00122{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00122{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md1_c00122{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00122{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m14_c00122{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m54_c00122{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m47_c00122{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.mac_c00122{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m63_c00122{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md8_c00122{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m93_c00122{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m77_c00122{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m4_c00122{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00122{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m74_c00122{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m13_c00122{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m41_c00122{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00122{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m73_c00122{transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325500,0.000000,0.000000,0.250000,0,0);}
.mf_c00122{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m108_c00122{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m60_c00122{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m0_c00122{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00122{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00122{transform:matrix(0.353750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00122{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00122{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c00122{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00122{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m72_c00122{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00122{transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);}
.mca_c00122{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mee_c00122{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00122{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.md6_c00122{transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);}
.m9_c00122{transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00122{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m3_c00122{transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);}
.md7_c00122{transform:matrix(0.994250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.994250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.994250,0.000000,0.000000,0.250000,0,0);}
.m7_c00122{transform:matrix(1.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.860000,0.000000,0.000000,0.250000,0,0);}
.m8_c00122{transform:matrix(3.702000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.702000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.702000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls0_c00122{letter-spacing:0.000000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{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__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00122{word-spacing:-28.758432px;}
.ws1_c00122{word-spacing:-12.535032px;}
.ws4_c00122{word-spacing:-10.625000px;}
.ws6_c00122{word-spacing:0.000000px;}
.ws3_c00122{word-spacing:3.679245px;}
.ws0_c00122{word-spacing:4.130435px;}
.ws5_c00122{word-spacing:53.774799px;}
._0_c00122{width:185.332440px;}
.fc0_c00122{color:transparent;}
.fse_c00122{font-size:18.000000px;}
.fs2_c00122{font-size:30.000000px;}
.fsc_c00122{font-size:42.000000px;}
.fs1_c00122{font-size:48.000000px;}
.fsa_c00122{font-size:54.000000px;}
.fs5_c00122{font-size:60.000000px;}
.fs6_c00122{font-size:66.000000px;}
.fsd_c00122{font-size:72.000000px;}
.fs7_c00122{font-size:78.000000px;}
.fs8_c00122{font-size:84.000000px;}
.fs4_c00122{font-size:96.000000px;}
.fsb_c00122{font-size:102.000000px;}
.fs0_c00122{font-size:114.000000px;}
.fs3_c00122{font-size:120.000000px;}
.fs9_c00122{font-size:192.000000px;}
.y0_c00122{bottom:0.000000px;}
.y39_c00122{bottom:10.050000px;}
.y3a_c00122{bottom:10.350000px;}
.y6e_c00122{bottom:124.500000px;}
.y3b_c00122{bottom:137.550000px;}
.y6d_c00122{bottom:164.100000px;}
.y38_c00122{bottom:181.800000px;}
.y37_c00122{bottom:195.450000px;}
.y6c_c00122{bottom:208.350000px;}
.y36_c00122{bottom:209.850000px;}
.y35_c00122{bottom:223.950000px;}
.y6b_c00122{bottom:230.700000px;}
.y34_c00122{bottom:238.350000px;}
.y33_c00122{bottom:252.450000px;}
.y6a_c00122{bottom:252.750000px;}
.y68_c00122{bottom:261.000000px;}
.y67_c00122{bottom:263.100000px;}
.y69_c00122{bottom:265.650000px;}
.y32_c00122{bottom:267.150000px;}
.y66_c00122{bottom:270.300000px;}
.y31_c00122{bottom:280.800000px;}
.y65_c00122{bottom:288.450000px;}
.y30_c00122{bottom:295.200000px;}
.y64_c00122{bottom:303.150000px;}
.y63_c00122{bottom:310.650000px;}
.y62_c00122{bottom:328.650000px;}
.y2f_c00122{bottom:338.400000px;}
.y61_c00122{bottom:346.650000px;}
.y2e_c00122{bottom:356.400000px;}
.y60_c00122{bottom:369.000000px;}
.y2d_c00122{bottom:378.300000px;}
.y5f_c00122{bottom:390.600000px;}
.y2c_c00122{bottom:400.650000px;}
.y5e_c00122{bottom:404.250000px;}
.y5d_c00122{bottom:412.950000px;}
.y2b_c00122{bottom:420.450000px;}
.y5c_c00122{bottom:435.300000px;}
.y2a_c00122{bottom:440.250000px;}
.y5b_c00122{bottom:453.300000px;}
.y29_c00122{bottom:458.550000px;}
.y5a_c00122{bottom:471.300000px;}
.y28_c00122{bottom:476.550000px;}
.y59_c00122{bottom:493.500000px;}
.y27_c00122{bottom:494.250000px;}
.y58_c00122{bottom:511.200000px;}
.y26_c00122{bottom:512.250000px;}
.y57_c00122{bottom:528.900000px;}
.y25_c00122{bottom:543.600000px;}
.y56_c00122{bottom:551.400000px;}
.y55_c00122{bottom:569.400000px;}
.y24_c00122{bottom:574.200000px;}
.y54_c00122{bottom:587.100000px;}
.y23_c00122{bottom:605.100000px;}
.y22_c00122{bottom:623.100000px;}
.y53_c00122{bottom:640.800000px;}
.y21_c00122{bottom:649.500000px;}
.y52_c00122{bottom:658.500000px;}
.y20_c00122{bottom:667.500000px;}
.y51_c00122{bottom:676.500000px;}
.y1f_c00122{bottom:694.500000px;}
.y4e_c00122{bottom:700.050000px;}
.y50_c00122{bottom:709.200000px;}
.y4d_c00122{bottom:711.600000px;}
.y1e_c00122{bottom:711.750000px;}
.y4c_c00122{bottom:717.000000px;}
.y4b_c00122{bottom:725.700000px;}
.y1d_c00122{bottom:729.600000px;}
.y4f_c00122{bottom:730.800000px;}
.y4a_c00122{bottom:743.700000px;}
.y1c_c00122{bottom:747.300000px;}
.y1b_c00122{bottom:765.300000px;}
.y49_c00122{bottom:767.550000px;}
.y48_c00122{bottom:789.900000px;}
.y1a_c00122{bottom:792.000000px;}
.y19_c00122{bottom:809.700000px;}
.y47_c00122{bottom:811.800000px;}
.y18_c00122{bottom:831.900000px;}
.y46_c00122{bottom:846.300000px;}
.y17_c00122{bottom:849.600000px;}
.y16_c00122{bottom:871.800000px;}
.y45_c00122{bottom:886.650000px;}
.y15_c00122{bottom:889.800000px;}
.y44_c00122{bottom:904.650000px;}
.y14_c00122{bottom:907.500000px;}
.y43_c00122{bottom:926.250000px;}
.y13_c00122{bottom:929.850000px;}
.y42_c00122{bottom:948.300000px;}
.y12_c00122{bottom:952.050000px;}
.y41_c00122{bottom:966.300000px;}
.y11_c00122{bottom:969.750000px;}
.y10_c00122{bottom:987.450000px;}
.y40_c00122{bottom:1001.250000px;}
.yf_c00122{bottom:1010.100000px;}
.ye_c00122{bottom:1027.800000px;}
.y3f_c00122{bottom:1034.700000px;}
.yd_c00122{bottom:1045.800000px;}
.yc_c00122{bottom:1064.550000px;}
.y3e_c00122{bottom:1068.750000px;}
.yb_c00122{bottom:1076.100000px;}
.y3d_c00122{bottom:1086.450000px;}
.ya_c00122{bottom:1090.050000px;}
.y9_c00122{bottom:1097.250000px;}
.y3c_c00122{bottom:1108.500000px;}
.y8_c00122{bottom:1109.550000px;}
.y6_c00122{bottom:1115.550000px;}
.y7_c00122{bottom:1116.600000px;}
.y5_c00122{bottom:1119.150000px;}
.y4_c00122{bottom:1123.500000px;}
.y1_c00122{bottom:1136.550000px;}
.y3_c00122{bottom:1266.900000px;}
.y2_c00122{bottom:1271.550000px;}
.h10_c00122{height:18.000000px;}
.h4_c00122{height:30.000000px;}
.he_c00122{height:42.000000px;}
.h3_c00122{height:48.000000px;}
.hc_c00122{height:54.000000px;}
.h7_c00122{height:60.000000px;}
.h8_c00122{height:66.000000px;}
.hf_c00122{height:72.000000px;}
.h9_c00122{height:78.000000px;}
.ha_c00122{height:84.000000px;}
.h6_c00122{height:96.000000px;}
.hd_c00122{height:102.000000px;}
.h2_c00122{height:114.000000px;}
.h5_c00122{height:120.000000px;}
.hb_c00122{height:192.000000px;}
.h0_c00122{height:1272.600036px;}
.h1_c00122{height:1272.750000px;}
.w1_c00122{width:953.250000px;}
.w0_c00122{width:953.280030px;}
.x0_c00122{left:0.000000px;}
.x3_c00122{left:2.850000px;}
.x78_c00122{left:47.850000px;}
.x72_c00122{left:50.550000px;}
.x11_c00122{left:71.250000px;}
.x73_c00122{left:81.150000px;}
.xf_c00122{left:87.450000px;}
.x5b_c00122{left:88.500000px;}
.x4b_c00122{left:90.000000px;}
.xb_c00122{left:94.650000px;}
.xc_c00122{left:96.150000px;}
.xd_c00122{left:104.400000px;}
.x1d_c00122{left:106.350000px;}
.xe_c00122{left:107.700000px;}
.x24_c00122{left:109.050000px;}
.x14_c00122{left:114.900000px;}
.x10_c00122{left:118.800000px;}
.x8e_c00122{left:120.450000px;}
.x85_c00122{left:122.850000px;}
.x26_c00122{left:126.000000px;}
.x68_c00122{left:128.400000px;}
.x3d_c00122{left:129.900000px;}
.x64_c00122{left:132.450000px;}
.x8b_c00122{left:134.550000px;}
.x15_c00122{left:136.500000px;}
.x56_c00122{left:137.700000px;}
.x1e_c00122{left:140.850000px;}
.x62_c00122{left:145.800000px;}
.x25_c00122{left:146.850000px;}
.x45_c00122{left:150.150000px;}
.x5c_c00122{left:152.550000px;}
.x92_c00122{left:155.700000px;}
.x74_c00122{left:157.950000px;}
.x12_c00122{left:160.200000px;}
.x6a_c00122{left:162.300000px;}
.x6f_c00122{left:163.950000px;}
.x32_c00122{left:166.500000px;}
.x8c_c00122{left:167.700000px;}
.x16_c00122{left:169.650000px;}
.x7a_c00122{left:171.450000px;}
.x4c_c00122{left:174.900000px;}
.x42_c00122{left:177.000000px;}
.x27_c00122{left:180.750000px;}
.x7e_c00122{left:183.000000px;}
.x5e_c00122{left:184.350000px;}
.x3e_c00122{left:186.450000px;}
.x2c_c00122{left:189.150000px;}
.x70_c00122{left:190.200000px;}
.x88_c00122{left:191.850000px;}
.x38_c00122{left:193.950000px;}
.x59_c00122{left:195.750000px;}
.x4a_c00122{left:198.300000px;}
.x1f_c00122{left:199.500000px;}
.x46_c00122{left:201.600000px;}
.x52_c00122{left:203.700000px;}
.x3f_c00122{left:206.250000px;}
.x5f_c00122{left:207.600000px;}
.x33_c00122{left:208.950000px;}
.x83_c00122{left:210.150000px;}
.x3a_c00122{left:211.350000px;}
.x53_c00122{left:213.000000px;}
.x79_c00122{left:217.800000px;}
.x4d_c00122{left:218.850000px;}
.x69_c00122{left:222.000000px;}
.x17_c00122{left:226.200000px;}
.x84_c00122{left:227.850000px;}
.x7f_c00122{left:229.650000px;}
.x3b_c00122{left:233.250000px;}
.x18_c00122{left:237.300000px;}
.x8f_c00122{left:239.550000px;}
.x4e_c00122{left:242.250000px;}
.x4_c00122{left:245.550000px;}
.x7b_c00122{left:247.650000px;}
.x5d_c00122{left:249.450000px;}
.x34_c00122{left:252.150000px;}
.x6b_c00122{left:253.800000px;}
.x28_c00122{left:254.850000px;}
.x2d_c00122{left:258.300000px;}
.x35_c00122{left:261.450000px;}
.x75_c00122{left:262.800000px;}
.x19_c00122{left:264.000000px;}
.x29_c00122{left:265.650000px;}
.x80_c00122{left:266.700000px;}
.x20_c00122{left:268.200000px;}
.x63_c00122{left:272.100000px;}
.x39_c00122{left:273.600000px;}
.x36_c00122{left:278.400000px;}
.x7c_c00122{left:280.050000px;}
.x90_c00122{left:281.250000px;}
.x2e_c00122{left:282.750000px;}
.x13_c00122{left:288.300000px;}
.x54_c00122{left:290.400000px;}
.x47_c00122{left:298.050000px;}
.x65_c00122{left:300.300000px;}
.x4f_c00122{left:301.950000px;}
.x21_c00122{left:306.000000px;}
.x2f_c00122{left:307.650000px;}
.x6c_c00122{left:312.450000px;}
.x66_c00122{left:316.200000px;}
.x5_c00122{left:317.850000px;}
.x91_c00122{left:319.800000px;}
.x1a_c00122{left:323.400000px;}
.x22_c00122{left:325.800000px;}
.x2a_c00122{left:330.150000px;}
.x60_c00122{left:334.350000px;}
.x1_c00122{left:336.600000px;}
.x86_c00122{left:337.800000px;}
.x43_c00122{left:339.750000px;}
.x40_c00122{left:341.550000px;}
.x50_c00122{left:343.350000px;}
.x71_c00122{left:344.700000px;}
.x6_c00122{left:346.650000px;}
.x1b_c00122{left:349.350000px;}
.x48_c00122{left:353.100000px;}
.x6d_c00122{left:354.900000px;}
.x30_c00122{left:355.950000px;}
.x81_c00122{left:357.450000px;}
.x7_c00122{left:359.250000px;}
.x76_c00122{left:361.050000px;}
.x41_c00122{left:362.100000px;}
.x67_c00122{left:364.950000px;}
.x89_c00122{left:366.750000px;}
.x31_c00122{left:367.800000px;}
.x49_c00122{left:369.600000px;}
.x8_c00122{left:372.900000px;}
.x57_c00122{left:373.950000px;}
.x37_c00122{left:379.200000px;}
.x44_c00122{left:380.850000px;}
.x3c_c00122{left:381.900000px;}
.x51_c00122{left:383.250000px;}
.x55_c00122{left:386.100000px;}
.x77_c00122{left:388.050000px;}
.x8d_c00122{left:395.850000px;}
.x61_c00122{left:397.350000px;}
.x23_c00122{left:399.600000px;}
.x82_c00122{left:400.950000px;}
.x87_c00122{left:403.650000px;}
.x5a_c00122{left:406.800000px;}
.x8a_c00122{left:408.150000px;}
.x2b_c00122{left:410.850000px;}
.x6e_c00122{left:413.550000px;}
.x58_c00122{left:415.350000px;}
.x1c_c00122{left:416.700000px;}
.x7d_c00122{left:424.500000px;}
.x9_c00122{left:438.750000px;}
.xa8_c00122{left:447.450000px;}
.x10f_c00122{left:452.550000px;}
.xb7_c00122{left:463.650000px;}
.x9e_c00122{left:465.450000px;}
.xd9_c00122{left:466.800000px;}
.xfc_c00122{left:468.300000px;}
.x107_c00122{left:477.000000px;}
.xa6_c00122{left:480.600000px;}
.xaf_c00122{left:482.400000px;}
.x93_c00122{left:483.900000px;}
.xe5_c00122{left:485.250000px;}
.xf2_c00122{left:486.900000px;}
.xd4_c00122{left:487.950000px;}
.xb8_c00122{left:489.150000px;}
.x10c_c00122{left:490.500000px;}
.xa9_c00122{left:491.700000px;}
.xef_c00122{left:493.500000px;}
.xc1_c00122{left:496.050000px;}
.x102_c00122{left:498.300000px;}
.xf6_c00122{left:499.350000px;}
.xeb_c00122{left:503.550000px;}
.xcd_c00122{left:507.600000px;}
.xfd_c00122{left:508.650000px;}
.x108_c00122{left:510.450000px;}
.x94_c00122{left:512.400000px;}
.x10e_c00122{left:513.750000px;}
.xe4_c00122{left:515.550000px;}
.xd0_c00122{left:518.100000px;}
.xa4_c00122{left:519.900000px;}
.x9f_c00122{left:522.750000px;}
.xfe_c00122{left:525.600000px;}
.xd1_c00122{left:527.400000px;}
.xc6_c00122{left:529.050000px;}
.xc8_c00122{left:530.100000px;}
.xb9_c00122{left:531.300000px;}
.xf7_c00122{left:533.100000px;}
.x103_c00122{left:536.400000px;}
.xbd_c00122{left:537.600000px;}
.xab_c00122{left:539.700000px;}
.xaa_c00122{left:541.800000px;}
.xf5_c00122{left:543.600000px;}
.xda_c00122{left:544.650000px;}
.xa0_c00122{left:549.750000px;}
.xec_c00122{left:552.300000px;}
.xd5_c00122{left:556.350000px;}
.x10d_c00122{left:559.950000px;}
.xde_c00122{left:561.150000px;}
.x98_c00122{left:563.400000px;}
.xc2_c00122{left:565.950000px;}
.xa1_c00122{left:568.050000px;}
.xff_c00122{left:569.850000px;}
.xe1_c00122{left:573.750000px;}
.xf0_c00122{left:574.800000px;}
.xd6_c00122{left:578.700000px;}
.xac_c00122{left:580.650000px;}
.x95_c00122{left:584.100000px;}
.xb1_c00122{left:586.950000px;}
.xf9_c00122{left:588.150000px;}
.x109_c00122{left:590.400000px;}
.xdf_c00122{left:591.450000px;}
.xc9_c00122{left:592.800000px;}
.xc7_c00122{left:593.850000px;}
.xa2_c00122{left:595.350000px;}
.xb0_c00122{left:598.350000px;}
.x104_c00122{left:605.850000px;}
.xdb_c00122{left:607.350000px;}
.xc3_c00122{left:609.900000px;}
.xa3_c00122{left:612.600000px;}
.xbb_c00122{left:614.550000px;}
.x10a_c00122{left:617.550000px;}
.xd2_c00122{left:619.350000px;}
.xba_c00122{left:623.550000px;}
.xad_c00122{left:624.600000px;}
.xcb_c00122{left:628.500000px;}
.xf3_c00122{left:629.850000px;}
.xed_c00122{left:631.500000px;}
.xf8_c00122{left:635.400000px;}
.xa5_c00122{left:640.500000px;}
.xe8_c00122{left:642.150000px;}
.x99_c00122{left:643.650000px;}
.xb2_c00122{left:649.650000px;}
.xce_c00122{left:656.700000px;}
.xf4_c00122{left:657.900000px;}
.x100_c00122{left:659.550000px;}
.x96_c00122{left:660.750000px;}
.xdc_c00122{left:667.800000px;}
.xa_c00122{left:669.900000px;}
.xb3_c00122{left:671.550000px;}
.x10b_c00122{left:672.600000px;}
.xa7_c00122{left:673.950000px;}
.xbe_c00122{left:675.600000px;}
.xe2_c00122{left:679.350000px;}
.xe9_c00122{left:680.700000px;}
.xae_c00122{left:683.700000px;}
.x111_c00122{left:685.800000px;}
.xe6_c00122{left:687.900000px;}
.xfa_c00122{left:690.450000px;}
.xdd_c00122{left:691.500000px;}
.x105_c00122{left:695.550000px;}
.xe7_c00122{left:697.200000px;}
.x9a_c00122{left:698.700000px;}
.xd3_c00122{left:705.750000px;}
.xb4_c00122{left:707.550000px;}
.xd7_c00122{left:709.050000px;}
.x9b_c00122{left:712.350000px;}
.xee_c00122{left:714.600000px;}
.x101_c00122{left:717.900000px;}
.xe0_c00122{left:719.550000px;}
.xbf_c00122{left:722.100000px;}
.xfb_c00122{left:724.950000px;}
.xea_c00122{left:727.500000px;}
.xcc_c00122{left:732.600000px;}
.xf1_c00122{left:734.550000px;}
.x97_c00122{left:736.050000px;}
.xb5_c00122{left:738.450000px;}
.xbc_c00122{left:740.550000px;}
.x106_c00122{left:745.950000px;}
.xc4_c00122{left:747.750000px;}
.xcf_c00122{left:751.350000px;}
.x9c_c00122{left:753.000000px;}
.xc0_c00122{left:755.550000px;}
.x2_c00122{left:757.500000px;}
.xb6_c00122{left:758.550000px;}
.xe3_c00122{left:769.350000px;}
.xc5_c00122{left:770.850000px;}
.xd8_c00122{left:773.100000px;}
.x9d_c00122{left:774.300000px;}
.x110_c00122{left:775.350000px;}
.xca_c00122{left:780.450000px;}
.x112_c00122{left:945.000000px;}
.x113_c00122{left:946.500000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws2_c00122{word-spacing:-25.563051pt;}
.ws1_c00122{word-spacing:-11.142251pt;}
.ws4_c00122{word-spacing:-9.444444pt;}
.ws6_c00122{word-spacing:0.000000pt;}
.ws3_c00122{word-spacing:3.270440pt;}
.ws0_c00122{word-spacing:3.671498pt;}
.ws5_c00122{word-spacing:47.799821pt;}
._0_c00122{width:164.739946pt;}
.fse_c00122{font-size:16.000000pt;}
.fs2_c00122{font-size:26.666667pt;}
.fsc_c00122{font-size:37.333333pt;}
.fs1_c00122{font-size:42.666667pt;}
.fsa_c00122{font-size:48.000000pt;}
.fs5_c00122{font-size:53.333333pt;}
.fs6_c00122{font-size:58.666667pt;}
.fsd_c00122{font-size:64.000000pt;}
.fs7_c00122{font-size:69.333333pt;}
.fs8_c00122{font-size:74.666667pt;}
.fs4_c00122{font-size:85.333333pt;}
.fsb_c00122{font-size:90.666667pt;}
.fs0_c00122{font-size:101.333333pt;}
.fs3_c00122{font-size:106.666667pt;}
.fs9_c00122{font-size:170.666667pt;}
.y0_c00122{bottom:0.000000pt;}
.y39_c00122{bottom:8.933333pt;}
.y3a_c00122{bottom:9.200000pt;}
.y6e_c00122{bottom:110.666667pt;}
.y3b_c00122{bottom:122.266667pt;}
.y6d_c00122{bottom:145.866667pt;}
.y38_c00122{bottom:161.600000pt;}
.y37_c00122{bottom:173.733333pt;}
.y6c_c00122{bottom:185.200000pt;}
.y36_c00122{bottom:186.533333pt;}
.y35_c00122{bottom:199.066667pt;}
.y6b_c00122{bottom:205.066667pt;}
.y34_c00122{bottom:211.866667pt;}
.y33_c00122{bottom:224.400000pt;}
.y6a_c00122{bottom:224.666667pt;}
.y68_c00122{bottom:232.000000pt;}
.y67_c00122{bottom:233.866667pt;}
.y69_c00122{bottom:236.133333pt;}
.y32_c00122{bottom:237.466667pt;}
.y66_c00122{bottom:240.266667pt;}
.y31_c00122{bottom:249.600000pt;}
.y65_c00122{bottom:256.400000pt;}
.y30_c00122{bottom:262.400000pt;}
.y64_c00122{bottom:269.466667pt;}
.y63_c00122{bottom:276.133333pt;}
.y62_c00122{bottom:292.133333pt;}
.y2f_c00122{bottom:300.800000pt;}
.y61_c00122{bottom:308.133333pt;}
.y2e_c00122{bottom:316.800000pt;}
.y60_c00122{bottom:328.000000pt;}
.y2d_c00122{bottom:336.266667pt;}
.y5f_c00122{bottom:347.200000pt;}
.y2c_c00122{bottom:356.133333pt;}
.y5e_c00122{bottom:359.333333pt;}
.y5d_c00122{bottom:367.066667pt;}
.y2b_c00122{bottom:373.733333pt;}
.y5c_c00122{bottom:386.933333pt;}
.y2a_c00122{bottom:391.333333pt;}
.y5b_c00122{bottom:402.933333pt;}
.y29_c00122{bottom:407.600000pt;}
.y5a_c00122{bottom:418.933333pt;}
.y28_c00122{bottom:423.600000pt;}
.y59_c00122{bottom:438.666667pt;}
.y27_c00122{bottom:439.333333pt;}
.y58_c00122{bottom:454.400000pt;}
.y26_c00122{bottom:455.333333pt;}
.y57_c00122{bottom:470.133333pt;}
.y25_c00122{bottom:483.200000pt;}
.y56_c00122{bottom:490.133333pt;}
.y55_c00122{bottom:506.133333pt;}
.y24_c00122{bottom:510.400000pt;}
.y54_c00122{bottom:521.866667pt;}
.y23_c00122{bottom:537.866667pt;}
.y22_c00122{bottom:553.866667pt;}
.y53_c00122{bottom:569.600000pt;}
.y21_c00122{bottom:577.333333pt;}
.y52_c00122{bottom:585.333333pt;}
.y20_c00122{bottom:593.333333pt;}
.y51_c00122{bottom:601.333333pt;}
.y1f_c00122{bottom:617.333333pt;}
.y4e_c00122{bottom:622.266667pt;}
.y50_c00122{bottom:630.400000pt;}
.y4d_c00122{bottom:632.533333pt;}
.y1e_c00122{bottom:632.666667pt;}
.y4c_c00122{bottom:637.333333pt;}
.y4b_c00122{bottom:645.066667pt;}
.y1d_c00122{bottom:648.533333pt;}
.y4f_c00122{bottom:649.600000pt;}
.y4a_c00122{bottom:661.066667pt;}
.y1c_c00122{bottom:664.266667pt;}
.y1b_c00122{bottom:680.266667pt;}
.y49_c00122{bottom:682.266667pt;}
.y48_c00122{bottom:702.133333pt;}
.y1a_c00122{bottom:704.000000pt;}
.y19_c00122{bottom:719.733333pt;}
.y47_c00122{bottom:721.600000pt;}
.y18_c00122{bottom:739.466667pt;}
.y46_c00122{bottom:752.266667pt;}
.y17_c00122{bottom:755.200000pt;}
.y16_c00122{bottom:774.933333pt;}
.y45_c00122{bottom:788.133333pt;}
.y15_c00122{bottom:790.933333pt;}
.y44_c00122{bottom:804.133333pt;}
.y14_c00122{bottom:806.666667pt;}
.y43_c00122{bottom:823.333333pt;}
.y13_c00122{bottom:826.533333pt;}
.y42_c00122{bottom:842.933333pt;}
.y12_c00122{bottom:846.266667pt;}
.y41_c00122{bottom:858.933333pt;}
.y11_c00122{bottom:862.000000pt;}
.y10_c00122{bottom:877.733333pt;}
.y40_c00122{bottom:890.000000pt;}
.yf_c00122{bottom:897.866667pt;}
.ye_c00122{bottom:913.600000pt;}
.y3f_c00122{bottom:919.733333pt;}
.yd_c00122{bottom:929.600000pt;}
.yc_c00122{bottom:946.266667pt;}
.y3e_c00122{bottom:950.000000pt;}
.yb_c00122{bottom:956.533333pt;}
.y3d_c00122{bottom:965.733333pt;}
.ya_c00122{bottom:968.933333pt;}
.y9_c00122{bottom:975.333333pt;}
.y3c_c00122{bottom:985.333333pt;}
.y8_c00122{bottom:986.266667pt;}
.y6_c00122{bottom:991.600000pt;}
.y7_c00122{bottom:992.533333pt;}
.y5_c00122{bottom:994.800000pt;}
.y4_c00122{bottom:998.666667pt;}
.y1_c00122{bottom:1010.266667pt;}
.y3_c00122{bottom:1126.133333pt;}
.y2_c00122{bottom:1130.266667pt;}
.h10_c00122{height:16.000000pt;}
.h4_c00122{height:26.666667pt;}
.he_c00122{height:37.333333pt;}
.h3_c00122{height:42.666667pt;}
.hc_c00122{height:48.000000pt;}
.h7_c00122{height:53.333333pt;}
.h8_c00122{height:58.666667pt;}
.hf_c00122{height:64.000000pt;}
.h9_c00122{height:69.333333pt;}
.ha_c00122{height:74.666667pt;}
.h6_c00122{height:85.333333pt;}
.hd_c00122{height:90.666667pt;}
.h2_c00122{height:101.333333pt;}
.h5_c00122{height:106.666667pt;}
.hb_c00122{height:170.666667pt;}
.h0_c00122{height:1131.200032pt;}
.h1_c00122{height:1131.333333pt;}
.w1_c00122{width:847.333333pt;}
.w0_c00122{width:847.360027pt;}
.x0_c00122{left:0.000000pt;}
.x3_c00122{left:2.533333pt;}
.x78_c00122{left:42.533333pt;}
.x72_c00122{left:44.933333pt;}
.x11_c00122{left:63.333333pt;}
.x73_c00122{left:72.133333pt;}
.xf_c00122{left:77.733333pt;}
.x5b_c00122{left:78.666667pt;}
.x4b_c00122{left:80.000000pt;}
.xb_c00122{left:84.133333pt;}
.xc_c00122{left:85.466667pt;}
.xd_c00122{left:92.800000pt;}
.x1d_c00122{left:94.533333pt;}
.xe_c00122{left:95.733333pt;}
.x24_c00122{left:96.933333pt;}
.x14_c00122{left:102.133333pt;}
.x10_c00122{left:105.600000pt;}
.x8e_c00122{left:107.066667pt;}
.x85_c00122{left:109.200000pt;}
.x26_c00122{left:112.000000pt;}
.x68_c00122{left:114.133333pt;}
.x3d_c00122{left:115.466667pt;}
.x64_c00122{left:117.733333pt;}
.x8b_c00122{left:119.600000pt;}
.x15_c00122{left:121.333333pt;}
.x56_c00122{left:122.400000pt;}
.x1e_c00122{left:125.200000pt;}
.x62_c00122{left:129.600000pt;}
.x25_c00122{left:130.533333pt;}
.x45_c00122{left:133.466667pt;}
.x5c_c00122{left:135.600000pt;}
.x92_c00122{left:138.400000pt;}
.x74_c00122{left:140.400000pt;}
.x12_c00122{left:142.400000pt;}
.x6a_c00122{left:144.266667pt;}
.x6f_c00122{left:145.733333pt;}
.x32_c00122{left:148.000000pt;}
.x8c_c00122{left:149.066667pt;}
.x16_c00122{left:150.800000pt;}
.x7a_c00122{left:152.400000pt;}
.x4c_c00122{left:155.466667pt;}
.x42_c00122{left:157.333333pt;}
.x27_c00122{left:160.666667pt;}
.x7e_c00122{left:162.666667pt;}
.x5e_c00122{left:163.866667pt;}
.x3e_c00122{left:165.733333pt;}
.x2c_c00122{left:168.133333pt;}
.x70_c00122{left:169.066667pt;}
.x88_c00122{left:170.533333pt;}
.x38_c00122{left:172.400000pt;}
.x59_c00122{left:174.000000pt;}
.x4a_c00122{left:176.266667pt;}
.x1f_c00122{left:177.333333pt;}
.x46_c00122{left:179.200000pt;}
.x52_c00122{left:181.066667pt;}
.x3f_c00122{left:183.333333pt;}
.x5f_c00122{left:184.533333pt;}
.x33_c00122{left:185.733333pt;}
.x83_c00122{left:186.800000pt;}
.x3a_c00122{left:187.866667pt;}
.x53_c00122{left:189.333333pt;}
.x79_c00122{left:193.600000pt;}
.x4d_c00122{left:194.533333pt;}
.x69_c00122{left:197.333333pt;}
.x17_c00122{left:201.066667pt;}
.x84_c00122{left:202.533333pt;}
.x7f_c00122{left:204.133333pt;}
.x3b_c00122{left:207.333333pt;}
.x18_c00122{left:210.933333pt;}
.x8f_c00122{left:212.933333pt;}
.x4e_c00122{left:215.333333pt;}
.x4_c00122{left:218.266667pt;}
.x7b_c00122{left:220.133333pt;}
.x5d_c00122{left:221.733333pt;}
.x34_c00122{left:224.133333pt;}
.x6b_c00122{left:225.600000pt;}
.x28_c00122{left:226.533333pt;}
.x2d_c00122{left:229.600000pt;}
.x35_c00122{left:232.400000pt;}
.x75_c00122{left:233.600000pt;}
.x19_c00122{left:234.666667pt;}
.x29_c00122{left:236.133333pt;}
.x80_c00122{left:237.066667pt;}
.x20_c00122{left:238.400000pt;}
.x63_c00122{left:241.866667pt;}
.x39_c00122{left:243.200000pt;}
.x36_c00122{left:247.466667pt;}
.x7c_c00122{left:248.933333pt;}
.x90_c00122{left:250.000000pt;}
.x2e_c00122{left:251.333333pt;}
.x13_c00122{left:256.266667pt;}
.x54_c00122{left:258.133333pt;}
.x47_c00122{left:264.933333pt;}
.x65_c00122{left:266.933333pt;}
.x4f_c00122{left:268.400000pt;}
.x21_c00122{left:272.000000pt;}
.x2f_c00122{left:273.466667pt;}
.x6c_c00122{left:277.733333pt;}
.x66_c00122{left:281.066667pt;}
.x5_c00122{left:282.533333pt;}
.x91_c00122{left:284.266667pt;}
.x1a_c00122{left:287.466667pt;}
.x22_c00122{left:289.600000pt;}
.x2a_c00122{left:293.466667pt;}
.x60_c00122{left:297.200000pt;}
.x1_c00122{left:299.200000pt;}
.x86_c00122{left:300.266667pt;}
.x43_c00122{left:302.000000pt;}
.x40_c00122{left:303.600000pt;}
.x50_c00122{left:305.200000pt;}
.x71_c00122{left:306.400000pt;}
.x6_c00122{left:308.133333pt;}
.x1b_c00122{left:310.533333pt;}
.x48_c00122{left:313.866667pt;}
.x6d_c00122{left:315.466667pt;}
.x30_c00122{left:316.400000pt;}
.x81_c00122{left:317.733333pt;}
.x7_c00122{left:319.333333pt;}
.x76_c00122{left:320.933333pt;}
.x41_c00122{left:321.866667pt;}
.x67_c00122{left:324.400000pt;}
.x89_c00122{left:326.000000pt;}
.x31_c00122{left:326.933333pt;}
.x49_c00122{left:328.533333pt;}
.x8_c00122{left:331.466667pt;}
.x57_c00122{left:332.400000pt;}
.x37_c00122{left:337.066667pt;}
.x44_c00122{left:338.533333pt;}
.x3c_c00122{left:339.466667pt;}
.x51_c00122{left:340.666667pt;}
.x55_c00122{left:343.200000pt;}
.x77_c00122{left:344.933333pt;}
.x8d_c00122{left:351.866667pt;}
.x61_c00122{left:353.200000pt;}
.x23_c00122{left:355.200000pt;}
.x82_c00122{left:356.400000pt;}
.x87_c00122{left:358.800000pt;}
.x5a_c00122{left:361.600000pt;}
.x8a_c00122{left:362.800000pt;}
.x2b_c00122{left:365.200000pt;}
.x6e_c00122{left:367.600000pt;}
.x58_c00122{left:369.200000pt;}
.x1c_c00122{left:370.400000pt;}
.x7d_c00122{left:377.333333pt;}
.x9_c00122{left:390.000000pt;}
.xa8_c00122{left:397.733333pt;}
.x10f_c00122{left:402.266667pt;}
.xb7_c00122{left:412.133333pt;}
.x9e_c00122{left:413.733333pt;}
.xd9_c00122{left:414.933333pt;}
.xfc_c00122{left:416.266667pt;}
.x107_c00122{left:424.000000pt;}
.xa6_c00122{left:427.200000pt;}
.xaf_c00122{left:428.800000pt;}
.x93_c00122{left:430.133333pt;}
.xe5_c00122{left:431.333333pt;}
.xf2_c00122{left:432.800000pt;}
.xd4_c00122{left:433.733333pt;}
.xb8_c00122{left:434.800000pt;}
.x10c_c00122{left:436.000000pt;}
.xa9_c00122{left:437.066667pt;}
.xef_c00122{left:438.666667pt;}
.xc1_c00122{left:440.933333pt;}
.x102_c00122{left:442.933333pt;}
.xf6_c00122{left:443.866667pt;}
.xeb_c00122{left:447.600000pt;}
.xcd_c00122{left:451.200000pt;}
.xfd_c00122{left:452.133333pt;}
.x108_c00122{left:453.733333pt;}
.x94_c00122{left:455.466667pt;}
.x10e_c00122{left:456.666667pt;}
.xe4_c00122{left:458.266667pt;}
.xd0_c00122{left:460.533333pt;}
.xa4_c00122{left:462.133333pt;}
.x9f_c00122{left:464.666667pt;}
.xfe_c00122{left:467.200000pt;}
.xd1_c00122{left:468.800000pt;}
.xc6_c00122{left:470.266667pt;}
.xc8_c00122{left:471.200000pt;}
.xb9_c00122{left:472.266667pt;}
.xf7_c00122{left:473.866667pt;}
.x103_c00122{left:476.800000pt;}
.xbd_c00122{left:477.866667pt;}
.xab_c00122{left:479.733333pt;}
.xaa_c00122{left:481.600000pt;}
.xf5_c00122{left:483.200000pt;}
.xda_c00122{left:484.133333pt;}
.xa0_c00122{left:488.666667pt;}
.xec_c00122{left:490.933333pt;}
.xd5_c00122{left:494.533333pt;}
.x10d_c00122{left:497.733333pt;}
.xde_c00122{left:498.800000pt;}
.x98_c00122{left:500.800000pt;}
.xc2_c00122{left:503.066667pt;}
.xa1_c00122{left:504.933333pt;}
.xff_c00122{left:506.533333pt;}
.xe1_c00122{left:510.000000pt;}
.xf0_c00122{left:510.933333pt;}
.xd6_c00122{left:514.400000pt;}
.xac_c00122{left:516.133333pt;}
.x95_c00122{left:519.200000pt;}
.xb1_c00122{left:521.733333pt;}
.xf9_c00122{left:522.800000pt;}
.x109_c00122{left:524.800000pt;}
.xdf_c00122{left:525.733333pt;}
.xc9_c00122{left:526.933333pt;}
.xc7_c00122{left:527.866667pt;}
.xa2_c00122{left:529.200000pt;}
.xb0_c00122{left:531.866667pt;}
.x104_c00122{left:538.533333pt;}
.xdb_c00122{left:539.866667pt;}
.xc3_c00122{left:542.133333pt;}
.xa3_c00122{left:544.533333pt;}
.xbb_c00122{left:546.266667pt;}
.x10a_c00122{left:548.933333pt;}
.xd2_c00122{left:550.533333pt;}
.xba_c00122{left:554.266667pt;}
.xad_c00122{left:555.200000pt;}
.xcb_c00122{left:558.666667pt;}
.xf3_c00122{left:559.866667pt;}
.xed_c00122{left:561.333333pt;}
.xf8_c00122{left:564.800000pt;}
.xa5_c00122{left:569.333333pt;}
.xe8_c00122{left:570.800000pt;}
.x99_c00122{left:572.133333pt;}
.xb2_c00122{left:577.466667pt;}
.xce_c00122{left:583.733333pt;}
.xf4_c00122{left:584.800000pt;}
.x100_c00122{left:586.266667pt;}
.x96_c00122{left:587.333333pt;}
.xdc_c00122{left:593.600000pt;}
.xa_c00122{left:595.466667pt;}
.xb3_c00122{left:596.933333pt;}
.x10b_c00122{left:597.866667pt;}
.xa7_c00122{left:599.066667pt;}
.xbe_c00122{left:600.533333pt;}
.xe2_c00122{left:603.866667pt;}
.xe9_c00122{left:605.066667pt;}
.xae_c00122{left:607.733333pt;}
.x111_c00122{left:609.600000pt;}
.xe6_c00122{left:611.466667pt;}
.xfa_c00122{left:613.733333pt;}
.xdd_c00122{left:614.666667pt;}
.x105_c00122{left:618.266667pt;}
.xe7_c00122{left:619.733333pt;}
.x9a_c00122{left:621.066667pt;}
.xd3_c00122{left:627.333333pt;}
.xb4_c00122{left:628.933333pt;}
.xd7_c00122{left:630.266667pt;}
.x9b_c00122{left:633.200000pt;}
.xee_c00122{left:635.200000pt;}
.x101_c00122{left:638.133333pt;}
.xe0_c00122{left:639.600000pt;}
.xbf_c00122{left:641.866667pt;}
.xfb_c00122{left:644.400000pt;}
.xea_c00122{left:646.666667pt;}
.xcc_c00122{left:651.200000pt;}
.xf1_c00122{left:652.933333pt;}
.x97_c00122{left:654.266667pt;}
.xb5_c00122{left:656.400000pt;}
.xbc_c00122{left:658.266667pt;}
.x106_c00122{left:663.066667pt;}
.xc4_c00122{left:664.666667pt;}
.xcf_c00122{left:667.866667pt;}
.x9c_c00122{left:669.333333pt;}
.xc0_c00122{left:671.600000pt;}
.x2_c00122{left:673.333333pt;}
.xb6_c00122{left:674.266667pt;}
.xe3_c00122{left:683.866667pt;}
.xc5_c00122{left:685.200000pt;}
.xd8_c00122{left:687.200000pt;}
.x9d_c00122{left:688.266667pt;}
.x110_c00122{left:689.200000pt;}
.xca_c00122{left:693.733333pt;}
.x112_c00122{left:840.000000pt;}
.x113_c00122{left:841.333333pt;}
}





/* 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_c00123 {
    display:none;
  }
  .loading-indicator_c00123.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00123 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_c00123 { 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_c00123" -> "#page-container .classname_c00123")
 */
.pf_c00123 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00123 { /* 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_c00123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00123 { /* 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_c00123 { /* 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_c00123 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00123 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00123 {overflow:visible;}
  }
}
.c_c00123 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00123 { /* 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_c00123:after { /* webkit #35443 */
  content: '';
}
.t_c00123:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00123 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 */
}
.__c00123 { /* 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_c00123 { /* info for Javascript */
  display:none;
}
.l_c00123 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00123 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00123 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00123: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_c00123 {
    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_c00123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00123.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_c00123 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00123;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.000000;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;}
.m92_c00123{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mca_c00123{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mce_c00123{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m118_c00123{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00123{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.mef_c00123{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00123{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00123{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.m103_c00123{transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00123{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m25_c00123{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.md0_c00123{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00123{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00123{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00123{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m104_c00123{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00123{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m17_c00123{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m88_c00123{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00123{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.mf_c00123{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00123{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00123{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00123{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00123{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mc_c00123{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mb_c00123{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m52_c00123{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00123{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00123{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00123{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m9_c00123{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m83_c00123{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m15_c00123{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m110_c00123{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00123{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m84_c00123{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m41_c00123{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00123{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00123{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m11_c00123{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m78_c00123{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00123{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mda_c00123{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00123{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m63_c00123{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00123{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m19_c00123{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00123{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00123{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00123{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00123{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md_c00123{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m111_c00123{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m68_c00123{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mec_c00123{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00123{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00123{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me7_c00123{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m89_c00123{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00123{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00123{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me_c00123{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m112_c00123{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00123{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m67_c00123{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00123{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00123{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00123{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m71_c00123{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00123{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00123{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma_c00123{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me9_c00123{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m20_c00123{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00123{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m14_c00123{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00123{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m22_c00123{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00123{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mea_c00123{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00123{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m23_c00123{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.me5_c00123{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m54_c00123{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m34_c00123{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6_c00123{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00123{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md8_c00123{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00123{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m69_c00123{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00123{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8_c00123{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00123{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m57_c00123{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md7_c00123{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m48_c00123{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00123{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m56_c00123{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00123{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00123{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md9_c00123{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00123{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m12_c00123{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00123{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m29_c00123{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m76_c00123{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00123{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m101_c00123{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00123{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m70_c00123{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00123{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00123{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m64_c00123{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00123{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m116_c00123{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00123{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00123{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m115_c00123{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m13_c00123{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m114_c00123{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md5_c00123{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.md3_c00123{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00123{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00123{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00123{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00123{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00123{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00123{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00123{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mff_c00123{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00123{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00123{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00123{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00123{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00123{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m59_c00123{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m87_c00123{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m65_c00123{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m51_c00123{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m117_c00123{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00123{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me8_c00123{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00123{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m24_c00123{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00123{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.me0_c00123{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m28_c00123{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m58_c00123{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.maf_c00123{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00123{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00123{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.meb_c00123{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00123{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md4_c00123{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00123{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m77_c00123{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m42_c00123{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00123{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m62_c00123{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00123{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m40_c00123{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m113_c00123{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00123{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m85_c00123{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mae_c00123{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m102_c00123{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00123{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m61_c00123{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m109_c00123{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m107_c00123{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m75_c00123{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00123{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m16_c00123{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m72_c00123{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m31_c00123{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00123{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m60_c00123{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00123{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00123{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m45_c00123{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m81_c00123{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m86_c00123{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m49_c00123{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m79_c00123{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00123{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m74_c00123{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m73_c00123{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m91_c00123{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00123{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00123{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m46_c00123{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mab_c00123{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00123{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00123{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00123{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00123{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00123{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00123{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md2_c00123{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00123{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m27_c00123{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18_c00123{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00123{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);}
.mc3_c00123{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00123{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00123{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00123{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00123{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00123{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m38_c00123{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mac_c00123{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.maa_c00123{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m120_c00123{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.me6_c00123{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m106_c00123{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m53_c00123{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00123{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00123{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00123{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m108_c00123{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00123{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00123{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m100_c00123{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m66_c00123{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m82_c00123{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m26_c00123{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00123{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00123{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m43_c00123{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m90_c00123{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m44_c00123{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00123{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00123{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mba_c00123{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md1_c00123{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.md6_c00123{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.me3_c00123{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m37_c00123{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00123{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m35_c00123{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00123{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.mde_c00123{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m10_c00123{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m47_c00123{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m99_c00123{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00123{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00123{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00123{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00123{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00123{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00123{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.me1_c00123{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m32_c00123{transform:matrix(0.300250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00123{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m33_c00123{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mad_c00123{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.me4_c00123{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00123{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00123{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m96_c00123{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00123{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00123{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m39_c00123{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m105_c00123{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m36_c00123{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.me2_c00123{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00123{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00123{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m93_c00123{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m98_c00123{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m80_c00123{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m94_c00123{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m97_c00123{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.med_c00123{transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);}
.m30_c00123{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mee_c00123{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m119_c00123{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m95_c00123{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m21_c00123{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);}
.m55_c00123{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m50_c00123{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls1_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:55.714286px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{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__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00123{word-spacing:-85.714286px;}
.ws6_c00123{word-spacing:-10.985673px;}
.ws7_c00123{word-spacing:-9.668122px;}
.wsd_c00123{word-spacing:0.000000px;}
.ws4_c00123{word-spacing:15.000000px;}
.ws5_c00123{word-spacing:15.477089px;}
.ws9_c00123{word-spacing:18.590164px;}
.ws2_c00123{word-spacing:21.191489px;}
.wsb_c00123{word-spacing:24.491803px;}
.wsa_c00123{word-spacing:28.426230px;}
.ws1_c00123{word-spacing:36.071429px;}
.ws8_c00123{word-spacing:165.297710px;}
.wsc_c00123{word-spacing:396.295082px;}
.ws0_c00123{word-spacing:745.000000px;}
._0_c00123{margin-left:-55.714286px;}
._2_c00123{width:61.426230px;}
._1_c00123{width:65.360656px;}
.fc0_c00123{color:transparent;}
.fs3_c00123{font-size:30.000000px;}
.fs7_c00123{font-size:36.000000px;}
.fs5_c00123{font-size:48.000000px;}
.fs6_c00123{font-size:54.000000px;}
.fs4_c00123{font-size:60.000000px;}
.fs2_c00123{font-size:66.000000px;}
.fs1_c00123{font-size:72.000000px;}
.fs0_c00123{font-size:78.000000px;}
.y0_c00123{bottom:0.000000px;}
.y3f_c00123{bottom:191.100000px;}
.y3e_c00123{bottom:203.100000px;}
.y3d_c00123{bottom:213.900000px;}
.y3c_c00123{bottom:233.700000px;}
.y3b_c00123{bottom:255.600000px;}
.y3a_c00123{bottom:270.600000px;}
.y39_c00123{bottom:277.500000px;}
.y38_c00123{bottom:298.050000px;}
.y37_c00123{bottom:316.500000px;}
.y36_c00123{bottom:334.050000px;}
.y35_c00123{bottom:357.150000px;}
.y34_c00123{bottom:371.100000px;}
.y33_c00123{bottom:394.200000px;}
.y32_c00123{bottom:406.800000px;}
.y31_c00123{bottom:424.500000px;}
.y30_c00123{bottom:444.600000px;}
.y2f_c00123{bottom:466.500000px;}
.y2e_c00123{bottom:486.000000px;}
.y2d_c00123{bottom:499.350000px;}
.y2b_c00123{bottom:512.700000px;}
.y2c_c00123{bottom:520.500000px;}
.y2a_c00123{bottom:531.000000px;}
.y29_c00123{bottom:560.850000px;}
.y28_c00123{bottom:579.600000px;}
.y27_c00123{bottom:593.250000px;}
.y26_c00123{bottom:611.400000px;}
.y25_c00123{bottom:631.500000px;}
.y24_c00123{bottom:650.550000px;}
.y23_c00123{bottom:661.350000px;}
.y22_c00123{bottom:674.700000px;}
.y21_c00123{bottom:687.300000px;}
.y1c_c00123{bottom:695.550000px;}
.y20_c00123{bottom:709.200000px;}
.y1b_c00123{bottom:717.300000px;}
.y1f_c00123{bottom:727.500000px;}
.y1a_c00123{bottom:735.000000px;}
.y1e_c00123{bottom:745.200000px;}
.y19_c00123{bottom:753.000000px;}
.y18_c00123{bottom:770.700000px;}
.y1d_c00123{bottom:775.800000px;}
.y17_c00123{bottom:788.700000px;}
.y16_c00123{bottom:815.100000px;}
.y15_c00123{bottom:833.100000px;}
.y14_c00123{bottom:850.350000px;}
.y13_c00123{bottom:876.300000px;}
.y12_c00123{bottom:889.650000px;}
.yf_c00123{bottom:899.250000px;}
.y11_c00123{bottom:906.900000px;}
.ye_c00123{bottom:919.500000px;}
.yd_c00123{bottom:937.500000px;}
.yc_c00123{bottom:955.050000px;}
.yb_c00123{bottom:973.050000px;}
.ya_c00123{bottom:986.700000px;}
.y10_c00123{bottom:995.400000px;}
.y9_c00123{bottom:1004.850000px;}
.y8_c00123{bottom:1023.900000px;}
.y7_c00123{bottom:1044.300000px;}
.y6_c00123{bottom:1047.600000px;}
.y5_c00123{bottom:1057.650000px;}
.y4_c00123{bottom:1084.350000px;}
.y3_c00123{bottom:1102.050000px;}
.y2_c00123{bottom:1120.350000px;}
.y1_c00123{bottom:1144.050000px;}
.h5_c00123{height:30.000000px;}
.h9_c00123{height:36.000000px;}
.h7_c00123{height:48.000000px;}
.h8_c00123{height:54.000000px;}
.h6_c00123{height:60.000000px;}
.h4_c00123{height:66.000000px;}
.h3_c00123{height:72.000000px;}
.h2_c00123{height:78.000000px;}
.h1_c00123{height:1272.750000px;}
.h0_c00123{height:1272.960022px;}
.w1_c00123{width:953.250000px;}
.w0_c00123{width:953.280030px;}
.x0_c00123{left:0.000000px;}
.x95_c00123{left:166.650000px;}
.x21_c00123{left:167.700000px;}
.x71_c00123{left:168.900000px;}
.x1_c00123{left:170.700000px;}
.x3_c00123{left:179.700000px;}
.xbc_c00123{left:181.500000px;}
.xcf_c00123{left:183.900000px;}
.xa5_c00123{left:184.950000px;}
.x11_c00123{left:186.000000px;}
.x116_c00123{left:188.700000px;}
.x35_c00123{left:195.600000px;}
.xbd_c00123{left:199.500000px;}
.x3a_c00123{left:201.750000px;}
.x43_c00123{left:204.450000px;}
.xf4_c00123{left:206.250000px;}
.x53_c00123{left:208.350000px;}
.xbe_c00123{left:211.050000px;}
.x42_c00123{left:212.100000px;}
.xd0_c00123{left:214.500000px;}
.x99_c00123{left:217.800000px;}
.x9e_c00123{left:219.300000px;}
.x12_c00123{left:220.500000px;}
.xe6_c00123{left:221.700000px;}
.xa6_c00123{left:223.050000px;}
.xf5_c00123{left:224.550000px;}
.xe1_c00123{left:226.800000px;}
.x47_c00123{left:228.300000px;}
.x13_c00123{left:230.550000px;}
.x88_c00123{left:235.050000px;}
.x22_c00123{left:237.150000px;}
.x110_c00123{left:238.350000px;}
.x5d_c00123{left:240.150000px;}
.xdf_c00123{left:243.000000px;}
.x86_c00123{left:244.950000px;}
.x44_c00123{left:246.900000px;}
.xec_c00123{left:248.400000px;}
.xd5_c00123{left:249.600000px;}
.x104_c00123{left:251.100000px;}
.xc5_c00123{left:253.200000px;}
.xff_c00123{left:254.550000px;}
.x81_c00123{left:255.900000px;}
.x117_c00123{left:263.250000px;}
.x4_c00123{left:264.300000px;}
.x9a_c00123{left:266.400000px;}
.x112_c00123{left:268.350000px;}
.x105_c00123{left:269.400000px;}
.x48_c00123{left:270.450000px;}
.xa8_c00123{left:273.300000px;}
.xdb_c00123{left:277.950000px;}
.xa1_c00123{left:279.000000px;}
.x2d_c00123{left:280.050000px;}
.x4c_c00123{left:282.300000px;}
.x5_c00123{left:283.350000px;}
.x14_c00123{left:286.050000px;}
.xe7_c00123{left:287.550000px;}
.x45_c00123{left:288.600000px;}
.x76_c00123{left:290.400000px;}
.xe8_c00123{left:298.350000px;}
.x23_c00123{left:304.500000px;}
.x15_c00123{left:307.650000px;}
.x5e_c00123{left:310.650000px;}
.x49_c00123{left:312.150000px;}
.x10a_c00123{left:313.500000px;}
.x36_c00123{left:315.900000px;}
.x101_c00123{left:317.250000px;}
.x100_c00123{left:318.600000px;}
.x46_c00123{left:322.050000px;}
.x9b_c00123{left:324.300000px;}
.xdc_c00123{left:326.250000px;}
.x4d_c00123{left:327.300000px;}
.x89_c00123{left:328.950000px;}
.x24_c00123{left:330.750000px;}
.x2e_c00123{left:333.300000px;}
.x54_c00123{left:336.150000px;}
.xcd_c00123{left:337.650000px;}
.xa7_c00123{left:342.150000px;}
.x106_c00123{left:343.500000px;}
.xf0_c00123{left:345.300000px;}
.x96_c00123{left:346.650000px;}
.x55_c00123{left:349.050000px;}
.x9c_c00123{left:350.250000px;}
.x25_c00123{left:352.050000px;}
.x77_c00123{left:356.700000px;}
.x87_c00123{left:360.450000px;}
.xe9_c00123{left:362.400000px;}
.x78_c00123{left:363.900000px;}
.x37_c00123{left:366.000000px;}
.x8a_c00123{left:367.500000px;}
.x72_c00123{left:368.700000px;}
.xa2_c00123{left:370.050000px;}
.xe2_c00123{left:371.100000px;}
.x97_c00123{left:372.600000px;}
.xd6_c00123{left:374.100000px;}
.x3b_c00123{left:377.850000px;}
.xed_c00123{left:380.250000px;}
.x79_c00123{left:385.500000px;}
.x6_c00123{left:388.800000px;}
.x8b_c00123{left:389.850000px;}
.xe5_c00123{left:391.350000px;}
.x7a_c00123{left:392.700000px;}
.x9d_c00123{left:394.950000px;}
.x56_c00123{left:397.350000px;}
.x7b_c00123{left:400.200000px;}
.xea_c00123{left:401.250000px;}
.x73_c00123{left:402.900000px;}
.xdd_c00123{left:405.450000px;}
.x2_c00123{left:407.250000px;}
.xa9_c00123{left:408.900000px;}
.xfb_c00123{left:410.100000px;}
.x7_c00123{left:412.200000px;}
.x7c_c00123{left:414.900000px;}
.x82_c00123{left:416.250000px;}
.x8c_c00123{left:418.950000px;}
.xee_c00123{left:420.600000px;}
.x107_c00123{left:422.400000px;}
.x26_c00123{left:423.750000px;}
.xe0_c00123{left:424.800000px;}
.xfc_c00123{left:426.600000px;}
.x102_c00123{left:431.400000px;}
.x4a_c00123{left:432.450000px;}
.x7d_c00123{left:433.650000px;}
.x3c_c00123{left:434.700000px;}
.x9f_c00123{left:436.350000px;}
.x57_c00123{left:439.500000px;}
.xa3_c00123{left:442.350000px;}
.x98_c00123{left:445.350000px;}
.x5f_c00123{left:447.150000px;}
.xd7_c00123{left:449.250000px;}
.x4b_c00123{left:451.500000px;}
.x4e_c00123{left:453.300000px;}
.x74_c00123{left:455.850000px;}
.xde_c00123{left:459.750000px;}
.x7e_c00123{left:464.250000px;}
.xd8_c00123{left:468.000000px;}
.xa4_c00123{left:470.850000px;}
.xce_c00123{left:471.900000px;}
.x8_c00123{left:476.250000px;}
.xfd_c00123{left:479.100000px;}
.xf6_c00123{left:480.600000px;}
.xd1_c00123{left:483.150000px;}
.x4f_c00123{left:484.650000px;}
.x58_c00123{left:488.400000px;}
.x75_c00123{left:490.050000px;}
.xa0_c00123{left:491.400000px;}
.x7f_c00123{left:493.800000px;}
.xc4_c00123{left:496.650000px;}
.x38_c00123{left:499.200000px;}
.x8d_c00123{left:504.300000px;}
.x10c_c00123{left:509.400000px;}
.xb0_c00123{left:522.750000px;}
.xf7_c00123{left:524.100000px;}
.x2f_c00123{left:525.900000px;}
.x118_c00123{left:540.450000px;}
.x108_c00123{left:541.500000px;}
.xb6_c00123{left:542.550000px;}
.x16_c00123{left:543.750000px;}
.xd2_c00123{left:554.400000px;}
.x113_c00123{left:559.200000px;}
.xc6_c00123{left:560.550000px;}
.x9_c00123{left:562.350000px;}
.xcc_c00123{left:563.400000px;}
.x3d_c00123{left:566.100000px;}
.x27_c00123{left:570.900000px;}
.x66_c00123{left:573.150000px;}
.x59_c00123{left:576.600000px;}
.xaa_c00123{left:579.300000px;}
.x10b_c00123{left:583.050000px;}
.x6e_c00123{left:584.250000px;}
.x80_c00123{left:587.400000px;}
.xbf_c00123{left:588.900000px;}
.x60_c00123{left:590.400000px;}
.x17_c00123{left:591.600000px;}
.x10d_c00123{left:594.300000px;}
.x6a_c00123{left:597.300000px;}
.xc0_c00123{left:599.400000px;}
.x28_c00123{left:601.800000px;}
.x114_c00123{left:603.450000px;}
.x119_c00123{left:605.250000px;}
.xab_c00123{left:606.600000px;}
.xb9_c00123{left:608.100000px;}
.xd9_c00123{left:610.500000px;}
.xa_c00123{left:611.700000px;}
.x5a_c00123{left:612.900000px;}
.x3e_c00123{left:614.400000px;}
.x10f_c00123{left:615.450000px;}
.xb7_c00123{left:617.850000px;}
.xac_c00123{left:619.200000px;}
.xeb_c00123{left:620.550000px;}
.xb1_c00123{left:622.350000px;}
.x29_c00123{left:623.700000px;}
.x83_c00123{left:626.250000px;}
.xf8_c00123{left:627.750000px;}
.x6b_c00123{left:631.800000px;}
.xfe_c00123{left:632.850000px;}
.x8e_c00123{left:633.900000px;}
.x30_c00123{left:637.050000px;}
.xc7_c00123{left:640.050000px;}
.xef_c00123{left:641.550000px;}
.x6f_c00123{left:644.100000px;}
.x18_c00123{left:646.650000px;}
.x8f_c00123{left:648.300000px;}
.x61_c00123{left:649.800000px;}
.x6c_c00123{left:654.150000px;}
.x3f_c00123{left:656.100000px;}
.x50_c00123{left:658.950000px;}
.x19_c00123{left:661.350000px;}
.x10e_c00123{left:663.000000px;}
.xad_c00123{left:664.950000px;}
.xb_c00123{left:667.200000px;}
.x115_c00123{left:668.250000px;}
.xc1_c00123{left:669.300000px;}
.x6d_c00123{left:670.350000px;}
.x62_c00123{left:673.200000px;}
.xba_c00123{left:675.000000px;}
.x90_c00123{left:677.400000px;}
.xae_c00123{left:679.350000px;}
.xda_c00123{left:681.750000px;}
.x70_c00123{left:684.000000px;}
.x31_c00123{left:688.200000px;}
.xb2_c00123{left:689.550000px;}
.x91_c00123{left:691.050000px;}
.xc2_c00123{left:694.800000px;}
.x1a_c00123{left:697.650000px;}
.x67_c00123{left:699.450000px;}
.x11a_c00123{left:701.700000px;}
.x84_c00123{left:703.950000px;}
.xb8_c00123{left:706.350000px;}
.x1b_c00123{left:707.700000px;}
.x92_c00123{left:710.850000px;}
.xc8_c00123{left:712.050000px;}
.x51_c00123{left:713.250000px;}
.x63_c00123{left:715.350000px;}
.x2a_c00123{left:717.300000px;}
.xd3_c00123{left:718.950000px;}
.x32_c00123{left:720.900000px;}
.x40_c00123{left:723.750000px;}
.xc_c00123{left:724.800000px;}
.xc3_c00123{left:729.300000px;}
.xf1_c00123{left:730.500000px;}
.xc9_c00123{left:731.550000px;}
.x111_c00123{left:734.400000px;}
.x2b_c00123{left:736.050000px;}
.xaf_c00123{left:738.000000px;}
.x93_c00123{left:739.050000px;}
.xbb_c00123{left:742.200000px;}
.x1c_c00123{left:747.300000px;}
.xd_c00123{left:749.700000px;}
.x85_c00123{left:750.750000px;}
.xf2_c00123{left:752.100000px;}
.x94_c00123{left:760.050000px;}
.xf9_c00123{left:764.100000px;}
.x1d_c00123{left:765.300000px;}
.x41_c00123{left:767.250000px;}
.x68_c00123{left:768.300000px;}
.xe3_c00123{left:770.400000px;}
.x64_c00123{left:774.450000px;}
.x39_c00123{left:776.100000px;}
.xe_c00123{left:779.250000px;}
.x1e_c00123{left:783.600000px;}
.xb3_c00123{left:787.800000px;}
.x33_c00123{left:795.000000px;}
.x2c_c00123{left:797.250000px;}
.x65_c00123{left:800.400000px;}
.x5b_c00123{left:803.250000px;}
.xf_c00123{left:805.950000px;}
.x1f_c00123{left:809.850000px;}
.x109_c00123{left:811.500000px;}
.x5c_c00123{left:813.300000px;}
.xd4_c00123{left:815.100000px;}
.xca_c00123{left:817.200000px;}
.xfa_c00123{left:818.700000px;}
.x52_c00123{left:820.950000px;}
.x69_c00123{left:823.350000px;}
.x34_c00123{left:827.400000px;}
.xe4_c00123{left:828.750000px;}
.x10_c00123{left:831.900000px;}
.x103_c00123{left:835.800000px;}
.xb4_c00123{left:840.300000px;}
.x20_c00123{left:843.000000px;}
.xcb_c00123{left:844.500000px;}
.xf3_c00123{left:845.700000px;}
.xb5_c00123{left:849.300000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls1_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:49.523810pt;}
.ws3_c00123{word-spacing:-76.190476pt;}
.ws6_c00123{word-spacing:-9.765043pt;}
.ws7_c00123{word-spacing:-8.593886pt;}
.wsd_c00123{word-spacing:0.000000pt;}
.ws4_c00123{word-spacing:13.333333pt;}
.ws5_c00123{word-spacing:13.757412pt;}
.ws9_c00123{word-spacing:16.524590pt;}
.ws2_c00123{word-spacing:18.836879pt;}
.wsb_c00123{word-spacing:21.770492pt;}
.wsa_c00123{word-spacing:25.267760pt;}
.ws1_c00123{word-spacing:32.063492pt;}
.ws8_c00123{word-spacing:146.931298pt;}
.wsc_c00123{word-spacing:352.262295pt;}
.ws0_c00123{word-spacing:662.222222pt;}
._0_c00123{margin-left:-49.523810pt;}
._2_c00123{width:54.601093pt;}
._1_c00123{width:58.098361pt;}
.fs3_c00123{font-size:26.666667pt;}
.fs7_c00123{font-size:32.000000pt;}
.fs5_c00123{font-size:42.666667pt;}
.fs6_c00123{font-size:48.000000pt;}
.fs4_c00123{font-size:53.333333pt;}
.fs2_c00123{font-size:58.666667pt;}
.fs1_c00123{font-size:64.000000pt;}
.fs0_c00123{font-size:69.333333pt;}
.y0_c00123{bottom:0.000000pt;}
.y3f_c00123{bottom:169.866667pt;}
.y3e_c00123{bottom:180.533333pt;}
.y3d_c00123{bottom:190.133333pt;}
.y3c_c00123{bottom:207.733333pt;}
.y3b_c00123{bottom:227.200000pt;}
.y3a_c00123{bottom:240.533333pt;}
.y39_c00123{bottom:246.666667pt;}
.y38_c00123{bottom:264.933333pt;}
.y37_c00123{bottom:281.333333pt;}
.y36_c00123{bottom:296.933333pt;}
.y35_c00123{bottom:317.466667pt;}
.y34_c00123{bottom:329.866667pt;}
.y33_c00123{bottom:350.400000pt;}
.y32_c00123{bottom:361.600000pt;}
.y31_c00123{bottom:377.333333pt;}
.y30_c00123{bottom:395.200000pt;}
.y2f_c00123{bottom:414.666667pt;}
.y2e_c00123{bottom:432.000000pt;}
.y2d_c00123{bottom:443.866667pt;}
.y2b_c00123{bottom:455.733333pt;}
.y2c_c00123{bottom:462.666667pt;}
.y2a_c00123{bottom:472.000000pt;}
.y29_c00123{bottom:498.533333pt;}
.y28_c00123{bottom:515.200000pt;}
.y27_c00123{bottom:527.333333pt;}
.y26_c00123{bottom:543.466667pt;}
.y25_c00123{bottom:561.333333pt;}
.y24_c00123{bottom:578.266667pt;}
.y23_c00123{bottom:587.866667pt;}
.y22_c00123{bottom:599.733333pt;}
.y21_c00123{bottom:610.933333pt;}
.y1c_c00123{bottom:618.266667pt;}
.y20_c00123{bottom:630.400000pt;}
.y1b_c00123{bottom:637.600000pt;}
.y1f_c00123{bottom:646.666667pt;}
.y1a_c00123{bottom:653.333333pt;}
.y1e_c00123{bottom:662.400000pt;}
.y19_c00123{bottom:669.333333pt;}
.y18_c00123{bottom:685.066667pt;}
.y1d_c00123{bottom:689.600000pt;}
.y17_c00123{bottom:701.066667pt;}
.y16_c00123{bottom:724.533333pt;}
.y15_c00123{bottom:740.533333pt;}
.y14_c00123{bottom:755.866667pt;}
.y13_c00123{bottom:778.933333pt;}
.y12_c00123{bottom:790.800000pt;}
.yf_c00123{bottom:799.333333pt;}
.y11_c00123{bottom:806.133333pt;}
.ye_c00123{bottom:817.333333pt;}
.yd_c00123{bottom:833.333333pt;}
.yc_c00123{bottom:848.933333pt;}
.yb_c00123{bottom:864.933333pt;}
.ya_c00123{bottom:877.066667pt;}
.y10_c00123{bottom:884.800000pt;}
.y9_c00123{bottom:893.200000pt;}
.y8_c00123{bottom:910.133333pt;}
.y7_c00123{bottom:928.266667pt;}
.y6_c00123{bottom:931.200000pt;}
.y5_c00123{bottom:940.133333pt;}
.y4_c00123{bottom:963.866667pt;}
.y3_c00123{bottom:979.600000pt;}
.y2_c00123{bottom:995.866667pt;}
.y1_c00123{bottom:1016.933333pt;}
.h5_c00123{height:26.666667pt;}
.h9_c00123{height:32.000000pt;}
.h7_c00123{height:42.666667pt;}
.h8_c00123{height:48.000000pt;}
.h6_c00123{height:53.333333pt;}
.h4_c00123{height:58.666667pt;}
.h3_c00123{height:64.000000pt;}
.h2_c00123{height:69.333333pt;}
.h1_c00123{height:1131.333333pt;}
.h0_c00123{height:1131.520020pt;}
.w1_c00123{width:847.333333pt;}
.w0_c00123{width:847.360027pt;}
.x0_c00123{left:0.000000pt;}
.x95_c00123{left:148.133333pt;}
.x21_c00123{left:149.066667pt;}
.x71_c00123{left:150.133333pt;}
.x1_c00123{left:151.733333pt;}
.x3_c00123{left:159.733333pt;}
.xbc_c00123{left:161.333333pt;}
.xcf_c00123{left:163.466667pt;}
.xa5_c00123{left:164.400000pt;}
.x11_c00123{left:165.333333pt;}
.x116_c00123{left:167.733333pt;}
.x35_c00123{left:173.866667pt;}
.xbd_c00123{left:177.333333pt;}
.x3a_c00123{left:179.333333pt;}
.x43_c00123{left:181.733333pt;}
.xf4_c00123{left:183.333333pt;}
.x53_c00123{left:185.200000pt;}
.xbe_c00123{left:187.600000pt;}
.x42_c00123{left:188.533333pt;}
.xd0_c00123{left:190.666667pt;}
.x99_c00123{left:193.600000pt;}
.x9e_c00123{left:194.933333pt;}
.x12_c00123{left:196.000000pt;}
.xe6_c00123{left:197.066667pt;}
.xa6_c00123{left:198.266667pt;}
.xf5_c00123{left:199.600000pt;}
.xe1_c00123{left:201.600000pt;}
.x47_c00123{left:202.933333pt;}
.x13_c00123{left:204.933333pt;}
.x88_c00123{left:208.933333pt;}
.x22_c00123{left:210.800000pt;}
.x110_c00123{left:211.866667pt;}
.x5d_c00123{left:213.466667pt;}
.xdf_c00123{left:216.000000pt;}
.x86_c00123{left:217.733333pt;}
.x44_c00123{left:219.466667pt;}
.xec_c00123{left:220.800000pt;}
.xd5_c00123{left:221.866667pt;}
.x104_c00123{left:223.200000pt;}
.xc5_c00123{left:225.066667pt;}
.xff_c00123{left:226.266667pt;}
.x81_c00123{left:227.466667pt;}
.x117_c00123{left:234.000000pt;}
.x4_c00123{left:234.933333pt;}
.x9a_c00123{left:236.800000pt;}
.x112_c00123{left:238.533333pt;}
.x105_c00123{left:239.466667pt;}
.x48_c00123{left:240.400000pt;}
.xa8_c00123{left:242.933333pt;}
.xdb_c00123{left:247.066667pt;}
.xa1_c00123{left:248.000000pt;}
.x2d_c00123{left:248.933333pt;}
.x4c_c00123{left:250.933333pt;}
.x5_c00123{left:251.866667pt;}
.x14_c00123{left:254.266667pt;}
.xe7_c00123{left:255.600000pt;}
.x45_c00123{left:256.533333pt;}
.x76_c00123{left:258.133333pt;}
.xe8_c00123{left:265.200000pt;}
.x23_c00123{left:270.666667pt;}
.x15_c00123{left:273.466667pt;}
.x5e_c00123{left:276.133333pt;}
.x49_c00123{left:277.466667pt;}
.x10a_c00123{left:278.666667pt;}
.x36_c00123{left:280.800000pt;}
.x101_c00123{left:282.000000pt;}
.x100_c00123{left:283.200000pt;}
.x46_c00123{left:286.266667pt;}
.x9b_c00123{left:288.266667pt;}
.xdc_c00123{left:290.000000pt;}
.x4d_c00123{left:290.933333pt;}
.x89_c00123{left:292.400000pt;}
.x24_c00123{left:294.000000pt;}
.x2e_c00123{left:296.266667pt;}
.x54_c00123{left:298.800000pt;}
.xcd_c00123{left:300.133333pt;}
.xa7_c00123{left:304.133333pt;}
.x106_c00123{left:305.333333pt;}
.xf0_c00123{left:306.933333pt;}
.x96_c00123{left:308.133333pt;}
.x55_c00123{left:310.266667pt;}
.x9c_c00123{left:311.333333pt;}
.x25_c00123{left:312.933333pt;}
.x77_c00123{left:317.066667pt;}
.x87_c00123{left:320.400000pt;}
.xe9_c00123{left:322.133333pt;}
.x78_c00123{left:323.466667pt;}
.x37_c00123{left:325.333333pt;}
.x8a_c00123{left:326.666667pt;}
.x72_c00123{left:327.733333pt;}
.xa2_c00123{left:328.933333pt;}
.xe2_c00123{left:329.866667pt;}
.x97_c00123{left:331.200000pt;}
.xd6_c00123{left:332.533333pt;}
.x3b_c00123{left:335.866667pt;}
.xed_c00123{left:338.000000pt;}
.x79_c00123{left:342.666667pt;}
.x6_c00123{left:345.600000pt;}
.x8b_c00123{left:346.533333pt;}
.xe5_c00123{left:347.866667pt;}
.x7a_c00123{left:349.066667pt;}
.x9d_c00123{left:351.066667pt;}
.x56_c00123{left:353.200000pt;}
.x7b_c00123{left:355.733333pt;}
.xea_c00123{left:356.666667pt;}
.x73_c00123{left:358.133333pt;}
.xdd_c00123{left:360.400000pt;}
.x2_c00123{left:362.000000pt;}
.xa9_c00123{left:363.466667pt;}
.xfb_c00123{left:364.533333pt;}
.x7_c00123{left:366.400000pt;}
.x7c_c00123{left:368.800000pt;}
.x82_c00123{left:370.000000pt;}
.x8c_c00123{left:372.400000pt;}
.xee_c00123{left:373.866667pt;}
.x107_c00123{left:375.466667pt;}
.x26_c00123{left:376.666667pt;}
.xe0_c00123{left:377.600000pt;}
.xfc_c00123{left:379.200000pt;}
.x102_c00123{left:383.466667pt;}
.x4a_c00123{left:384.400000pt;}
.x7d_c00123{left:385.466667pt;}
.x3c_c00123{left:386.400000pt;}
.x9f_c00123{left:387.866667pt;}
.x57_c00123{left:390.666667pt;}
.xa3_c00123{left:393.200000pt;}
.x98_c00123{left:395.866667pt;}
.x5f_c00123{left:397.466667pt;}
.xd7_c00123{left:399.333333pt;}
.x4b_c00123{left:401.333333pt;}
.x4e_c00123{left:402.933333pt;}
.x74_c00123{left:405.200000pt;}
.xde_c00123{left:408.666667pt;}
.x7e_c00123{left:412.666667pt;}
.xd8_c00123{left:416.000000pt;}
.xa4_c00123{left:418.533333pt;}
.xce_c00123{left:419.466667pt;}
.x8_c00123{left:423.333333pt;}
.xfd_c00123{left:425.866667pt;}
.xf6_c00123{left:427.200000pt;}
.xd1_c00123{left:429.466667pt;}
.x4f_c00123{left:430.800000pt;}
.x58_c00123{left:434.133333pt;}
.x75_c00123{left:435.600000pt;}
.xa0_c00123{left:436.800000pt;}
.x7f_c00123{left:438.933333pt;}
.xc4_c00123{left:441.466667pt;}
.x38_c00123{left:443.733333pt;}
.x8d_c00123{left:448.266667pt;}
.x10c_c00123{left:452.800000pt;}
.xb0_c00123{left:464.666667pt;}
.xf7_c00123{left:465.866667pt;}
.x2f_c00123{left:467.466667pt;}
.x118_c00123{left:480.400000pt;}
.x108_c00123{left:481.333333pt;}
.xb6_c00123{left:482.266667pt;}
.x16_c00123{left:483.333333pt;}
.xd2_c00123{left:492.800000pt;}
.x113_c00123{left:497.066667pt;}
.xc6_c00123{left:498.266667pt;}
.x9_c00123{left:499.866667pt;}
.xcc_c00123{left:500.800000pt;}
.x3d_c00123{left:503.200000pt;}
.x27_c00123{left:507.466667pt;}
.x66_c00123{left:509.466667pt;}
.x59_c00123{left:512.533333pt;}
.xaa_c00123{left:514.933333pt;}
.x10b_c00123{left:518.266667pt;}
.x6e_c00123{left:519.333333pt;}
.x80_c00123{left:522.133333pt;}
.xbf_c00123{left:523.466667pt;}
.x60_c00123{left:524.800000pt;}
.x17_c00123{left:525.866667pt;}
.x10d_c00123{left:528.266667pt;}
.x6a_c00123{left:530.933333pt;}
.xc0_c00123{left:532.800000pt;}
.x28_c00123{left:534.933333pt;}
.x114_c00123{left:536.400000pt;}
.x119_c00123{left:538.000000pt;}
.xab_c00123{left:539.200000pt;}
.xb9_c00123{left:540.533333pt;}
.xd9_c00123{left:542.666667pt;}
.xa_c00123{left:543.733333pt;}
.x5a_c00123{left:544.800000pt;}
.x3e_c00123{left:546.133333pt;}
.x10f_c00123{left:547.066667pt;}
.xb7_c00123{left:549.200000pt;}
.xac_c00123{left:550.400000pt;}
.xeb_c00123{left:551.600000pt;}
.xb1_c00123{left:553.200000pt;}
.x29_c00123{left:554.400000pt;}
.x83_c00123{left:556.666667pt;}
.xf8_c00123{left:558.000000pt;}
.x6b_c00123{left:561.600000pt;}
.xfe_c00123{left:562.533333pt;}
.x8e_c00123{left:563.466667pt;}
.x30_c00123{left:566.266667pt;}
.xc7_c00123{left:568.933333pt;}
.xef_c00123{left:570.266667pt;}
.x6f_c00123{left:572.533333pt;}
.x18_c00123{left:574.800000pt;}
.x8f_c00123{left:576.266667pt;}
.x61_c00123{left:577.600000pt;}
.x6c_c00123{left:581.466667pt;}
.x3f_c00123{left:583.200000pt;}
.x50_c00123{left:585.733333pt;}
.x19_c00123{left:587.866667pt;}
.x10e_c00123{left:589.333333pt;}
.xad_c00123{left:591.066667pt;}
.xb_c00123{left:593.066667pt;}
.x115_c00123{left:594.000000pt;}
.xc1_c00123{left:594.933333pt;}
.x6d_c00123{left:595.866667pt;}
.x62_c00123{left:598.400000pt;}
.xba_c00123{left:600.000000pt;}
.x90_c00123{left:602.133333pt;}
.xae_c00123{left:603.866667pt;}
.xda_c00123{left:606.000000pt;}
.x70_c00123{left:608.000000pt;}
.x31_c00123{left:611.733333pt;}
.xb2_c00123{left:612.933333pt;}
.x91_c00123{left:614.266667pt;}
.xc2_c00123{left:617.600000pt;}
.x1a_c00123{left:620.133333pt;}
.x67_c00123{left:621.733333pt;}
.x11a_c00123{left:623.733333pt;}
.x84_c00123{left:625.733333pt;}
.xb8_c00123{left:627.866667pt;}
.x1b_c00123{left:629.066667pt;}
.x92_c00123{left:631.866667pt;}
.xc8_c00123{left:632.933333pt;}
.x51_c00123{left:634.000000pt;}
.x63_c00123{left:635.866667pt;}
.x2a_c00123{left:637.600000pt;}
.xd3_c00123{left:639.066667pt;}
.x32_c00123{left:640.800000pt;}
.x40_c00123{left:643.333333pt;}
.xc_c00123{left:644.266667pt;}
.xc3_c00123{left:648.266667pt;}
.xf1_c00123{left:649.333333pt;}
.xc9_c00123{left:650.266667pt;}
.x111_c00123{left:652.800000pt;}
.x2b_c00123{left:654.266667pt;}
.xaf_c00123{left:656.000000pt;}
.x93_c00123{left:656.933333pt;}
.xbb_c00123{left:659.733333pt;}
.x1c_c00123{left:664.266667pt;}
.xd_c00123{left:666.400000pt;}
.x85_c00123{left:667.333333pt;}
.xf2_c00123{left:668.533333pt;}
.x94_c00123{left:675.600000pt;}
.xf9_c00123{left:679.200000pt;}
.x1d_c00123{left:680.266667pt;}
.x41_c00123{left:682.000000pt;}
.x68_c00123{left:682.933333pt;}
.xe3_c00123{left:684.800000pt;}
.x64_c00123{left:688.400000pt;}
.x39_c00123{left:689.866667pt;}
.xe_c00123{left:692.666667pt;}
.x1e_c00123{left:696.533333pt;}
.xb3_c00123{left:700.266667pt;}
.x33_c00123{left:706.666667pt;}
.x2c_c00123{left:708.666667pt;}
.x65_c00123{left:711.466667pt;}
.x5b_c00123{left:714.000000pt;}
.xf_c00123{left:716.400000pt;}
.x1f_c00123{left:719.866667pt;}
.x109_c00123{left:721.333333pt;}
.x5c_c00123{left:722.933333pt;}
.xd4_c00123{left:724.533333pt;}
.xca_c00123{left:726.400000pt;}
.xfa_c00123{left:727.733333pt;}
.x52_c00123{left:729.733333pt;}
.x69_c00123{left:731.866667pt;}
.x34_c00123{left:735.466667pt;}
.xe4_c00123{left:736.666667pt;}
.x10_c00123{left:739.466667pt;}
.x103_c00123{left:742.933333pt;}
.xb4_c00123{left:746.933333pt;}
.x20_c00123{left:749.333333pt;}
.xcb_c00123{left:750.666667pt;}
.xf3_c00123{left:751.733333pt;}
.xb5_c00123{left:754.933333pt;}
}





/* 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_c00124 {
    display:none;
  }
  .loading-indicator_c00124.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00124 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_c00124 { 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_c00124" -> "#page-container .classname_c00124")
 */
.pf_c00124 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00124 { /* 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_c00124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00124 { /* 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_c00124 { /* 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_c00124 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00124 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00124 {overflow:visible;}
  }
}
.c_c00124 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00124 { /* 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_c00124:after { /* webkit #35443 */
  content: '';
}
.t_c00124:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00124 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 */
}
.__c00124 { /* 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_c00124 { /* info for Javascript */
  display:none;
}
.l_c00124 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00124 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00124 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00124: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_c00124 {
    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_c00124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00124.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_c00124 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00124;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.000000;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;}
.m11f_c00124{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m112_c00124{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m114_c00124{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m17_c00124{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00124{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m121_c00124{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.med_c00124{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m64_c00124{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m117_c00124{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m72_c00124{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00124{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m116_c00124{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m73_c00124{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00124{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md5_c00124{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m70_c00124{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m35_c00124{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m71_c00124{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m100_c00124{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.md1_c00124{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00124{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m42_c00124{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00124{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00124{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m50_c00124{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m75_c00124{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00124{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00124{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00124{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mff_c00124{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.mce_c00124{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00124{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00124{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mab_c00124{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00124{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m74_c00124{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m88_c00124{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00124{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00124{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m39_c00124{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00124{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m52_c00124{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m66_c00124{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00124{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00124{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m91_c00124{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m40_c00124{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m7_c00124{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00124{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m113_c00124{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m44_c00124{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00124{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m111_c00124{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00124{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m36_c00124{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00124{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m69_c00124{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m14_c00124{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00124{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m96_c00124{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mca_c00124{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m120_c00124{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc_c00124{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00124{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00124{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00124{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m102_c00124{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m115_c00124{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m104_c00124{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m29_c00124{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md7_c00124{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m32_c00124{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m80_c00124{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00124{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mda_c00124{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m24_c00124{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m53_c00124{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00124{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00124{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00124{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6_c00124{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00124{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00124{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me1_c00124{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m79_c00124{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00124{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m78_c00124{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00124{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m48_c00124{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00124{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m62_c00124{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.maa_c00124{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m119_c00124{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m63_c00124{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00124{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00124{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00124{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00124{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00124{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mae_c00124{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mf_c00124{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m61_c00124{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00124{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m85_c00124{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00124{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00124{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m81_c00124{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00124{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00124{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mad_c00124{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00124{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me4_c00124{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00124{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00124{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m13_c00124{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m45_c00124{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m90_c00124{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mac_c00124{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m60_c00124{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00124{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m46_c00124{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mba_c00124{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00124{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m95_c00124{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m33_c00124{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m16_c00124{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m101_c00124{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00124{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00124{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00124{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m34_c00124{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00124{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m98_c00124{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00124{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00124{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00124{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m126_c00124{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00124{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00124{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00124{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00124{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m11_c00124{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m55_c00124{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m47_c00124{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00124{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m43_c00124{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00124{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m12_c00124{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00124{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m10_c00124{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00124{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00124{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m25_c00124{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00124{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m30_c00124{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb_c00124{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00124{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m21_c00124{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me0_c00124{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md6_c00124{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00124{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00124{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00124{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00124{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00124{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m65_c00124{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m84_c00124{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md9_c00124{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md4_c00124{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me_c00124{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m107_c00124{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m27_c00124{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00124{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00124{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00124{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00124{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m123_c00124{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m41_c00124{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mea_c00124{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.meb_c00124{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md3_c00124{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00124{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m59_c00124{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00124{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m68_c00124{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m31_c00124{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m3_c00124{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m103_c00124{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.md_c00124{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00124{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00124{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m93_c00124{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m97_c00124{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00124{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m56_c00124{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md0_c00124{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m38_c00124{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me2_c00124{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.me3_c00124{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m118_c00124{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00124{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m20_c00124{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m57_c00124{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m122_c00124{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00124{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00124{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m89_c00124{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00124{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m23_c00124{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00124{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00124{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m99_c00124{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00124{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00124{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m86_c00124{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00124{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m105_c00124{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00124{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00124{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00124{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5_c00124{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m58_c00124{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m22_c00124{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m28_c00124{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00124{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00124{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m26_c00124{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00124{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m83_c00124{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00124{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00124{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00124{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);}
.m87_c00124{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.me6_c00124{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00124{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m76_c00124{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m15_c00124{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00124{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00124{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m125_c00124{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00124{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00124{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.maf_c00124{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mef_c00124{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00124{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mee_c00124{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00124{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md2_c00124{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00124{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m19_c00124{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md8_c00124{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m67_c00124{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m77_c00124{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00124{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m108_c00124{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00124{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m110_c00124{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00124{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00124{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00124{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00124{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m82_c00124{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m106_c00124{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00124{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m37_c00124{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m124_c00124{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.me9_c00124{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00124{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.me7_c00124{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00124{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00124{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);}
.m54_c00124{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m18_c00124{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m94_c00124{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m49_c00124{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.me5_c00124{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mde_c00124{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m92_c00124{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.me8_c00124{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00124{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m109_c00124{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m51_c00124{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mec_c00124{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m8_c00124{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00124{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00124{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00124{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00124{transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00124{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls0_c00124{letter-spacing:0.000000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{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__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:-6.751527px;}
.wsc_c00124{word-spacing:-1.657682px;}
.ws10_c00124{word-spacing:0.000000px;}
.ws4_c00124{word-spacing:6.666667px;}
.ws7_c00124{word-spacing:15.428571px;}
.ws2_c00124{word-spacing:16.785714px;}
.ws5_c00124{word-spacing:21.500000px;}
.wsa_c00124{word-spacing:23.211796px;}
.ws8_c00124{word-spacing:24.000000px;}
.wsf_c00124{word-spacing:25.714286px;}
.ws9_c00124{word-spacing:26.428954px;}
.ws3_c00124{word-spacing:26.625000px;}
.wse_c00124{word-spacing:35.833333px;}
.ws6_c00124{word-spacing:39.000000px;}
.wsb_c00124{word-spacing:40.000000px;}
.ws1_c00124{word-spacing:44.166667px;}
.wsd_c00124{word-spacing:55.374046px;}
._5_c00124{width:35.571429px;}
._6_c00124{width:42.000000px;}
._4_c00124{width:44.500000px;}
._3_c00124{width:48.250000px;}
._7_c00124{width:58.254692px;}
._1_c00124{width:59.285714px;}
._2_c00124{width:66.750000px;}
._0_c00124{width:70.000000px;}
.fc0_c00124{color:transparent;}
.fs4_c00124{font-size:30.000000px;}
.fs6_c00124{font-size:36.000000px;}
.fs5_c00124{font-size:48.000000px;}
.fs1_c00124{font-size:54.000000px;}
.fs2_c00124{font-size:60.000000px;}
.fs3_c00124{font-size:66.000000px;}
.fs8_c00124{font-size:72.000000px;}
.fs0_c00124{font-size:78.000000px;}
.fs7_c00124{font-size:138.000000px;}
.y0_c00124{bottom:0.000000px;}
.y62_c00124{bottom:190.350000px;}
.y5e_c00124{bottom:190.500000px;}
.y61_c00124{bottom:204.450000px;}
.y5d_c00124{bottom:205.200000px;}
.y30_c00124{bottom:219.450000px;}
.y2f_c00124{bottom:233.550000px;}
.y5c_c00124{bottom:241.500000px;}
.y2e_c00124{bottom:247.950000px;}
.y5b_c00124{bottom:259.500000px;}
.y2d_c00124{bottom:262.650000px;}
.y2c_c00124{bottom:276.750000px;}
.y5a_c00124{bottom:277.500000px;}
.y2b_c00124{bottom:291.150000px;}
.y59_c00124{bottom:295.200000px;}
.y2a_c00124{bottom:305.250000px;}
.y29_c00124{bottom:319.350000px;}
.y60_c00124{bottom:320.100000px;}
.y28_c00124{bottom:334.050000px;}
.y5f_c00124{bottom:336.300000px;}
.y58_c00124{bottom:348.900000px;}
.y57_c00124{bottom:361.800000px;}
.y56_c00124{bottom:379.500000px;}
.y27_c00124{bottom:380.850000px;}
.y55_c00124{bottom:394.800000px;}
.y26_c00124{bottom:398.850000px;}
.y54_c00124{bottom:412.500000px;}
.y25_c00124{bottom:416.550000px;}
.y53_c00124{bottom:430.200000px;}
.y24_c00124{bottom:438.900000px;}
.y52_c00124{bottom:448.200000px;}
.y51_c00124{bottom:466.200000px;}
.y23_c00124{bottom:470.100000px;}
.y50_c00124{bottom:484.200000px;}
.y22_c00124{bottom:492.300000px;}
.y4f_c00124{bottom:501.900000px;}
.y21_c00124{bottom:510.000000px;}
.y4e_c00124{bottom:523.800000px;}
.y20_c00124{bottom:528.000000px;}
.y4d_c00124{bottom:541.500000px;}
.y1f_c00124{bottom:545.700000px;}
.y1e_c00124{bottom:563.700000px;}
.y4c_c00124{bottom:568.050000px;}
.y1d_c00124{bottom:585.450000px;}
.y4b_c00124{bottom:590.400000px;}
.y1c_c00124{bottom:603.450000px;}
.y4a_c00124{bottom:608.400000px;}
.y1b_c00124{bottom:621.450000px;}
.y49_c00124{bottom:626.100000px;}
.y1a_c00124{bottom:638.700000px;}
.y48_c00124{bottom:648.000000px;}
.y19_c00124{bottom:660.150000px;}
.y47_c00124{bottom:666.000000px;}
.y18_c00124{bottom:674.550000px;}
.y46_c00124{bottom:684.000000px;}
.y17_c00124{bottom:686.850000px;}
.y45_c00124{bottom:701.250000px;}
.y16_c00124{bottom:701.850000px;}
.y15_c00124{bottom:719.550000px;}
.y44_c00124{bottom:726.150000px;}
.y14_c00124{bottom:737.250000px;}
.y43_c00124{bottom:750.300000px;}
.y13_c00124{bottom:764.250000px;}
.y42_c00124{bottom:776.850000px;}
.y12_c00124{bottom:781.500000px;}
.y41_c00124{bottom:794.850000px;}
.y11_c00124{bottom:799.200000px;}
.y40_c00124{bottom:812.550000px;}
.y10_c00124{bottom:817.200000px;}
.yf_c00124{bottom:834.450000px;}
.y3f_c00124{bottom:834.900000px;}
.y3e_c00124{bottom:852.150000px;}
.ye_c00124{bottom:865.050000px;}
.y3d_c00124{bottom:879.150000px;}
.yd_c00124{bottom:896.700000px;}
.yc_c00124{bottom:914.400000px;}
.yb_c00124{bottom:932.100000px;}
.y3b_c00124{bottom:936.600000px;}
.y3a_c00124{bottom:953.850000px;}
.ya_c00124{bottom:958.650000px;}
.y39_c00124{bottom:971.850000px;}
.y9_c00124{bottom:976.650000px;}
.y38_c00124{bottom:989.550000px;}
.y8_c00124{bottom:993.900000px;}
.y37_c00124{bottom:1007.250000px;}
.y7_c00124{bottom:1011.900000px;}
.y6_c00124{bottom:1029.900000px;}
.y36_c00124{bottom:1032.150000px;}
.y35_c00124{bottom:1046.550000px;}
.y5_c00124{bottom:1055.850000px;}
.y34_c00124{bottom:1060.200000px;}
.y3c_c00124{bottom:1060.950000px;}
.y33_c00124{bottom:1075.650000px;}
.y4_c00124{bottom:1078.200000px;}
.y3_c00124{bottom:1095.900000px;}
.y32_c00124{bottom:1099.350000px;}
.y31_c00124{bottom:1117.050000px;}
.y2_c00124{bottom:1117.800000px;}
.y1_c00124{bottom:1143.750000px;}
.h6_c00124{height:30.000000px;}
.h8_c00124{height:36.000000px;}
.h7_c00124{height:48.000000px;}
.h3_c00124{height:54.000000px;}
.h4_c00124{height:60.000000px;}
.h5_c00124{height:66.000000px;}
.ha_c00124{height:72.000000px;}
.h2_c00124{height:78.000000px;}
.h9_c00124{height:138.000000px;}
.h0_c00124{height:1276.920044px;}
.h1_c00124{height:1277.250000px;}
.w1_c00124{width:953.250000px;}
.w0_c00124{width:953.280030px;}
.x0_c00124{left:0.000000px;}
.x151_c00124{left:66.900000px;}
.x8d_c00124{left:68.100000px;}
.x7d_c00124{left:69.450000px;}
.x17_c00124{left:71.250000px;}
.x4b_c00124{left:73.800000px;}
.x94_c00124{left:82.800000px;}
.x91_c00124{left:87.150000px;}
.x77_c00124{left:88.200000px;}
.x45_c00124{left:90.000000px;}
.x3f_c00124{left:91.200000px;}
.xf_c00124{left:92.400000px;}
.xa5_c00124{left:97.950000px;}
.x6e_c00124{left:101.100000px;}
.x14e_c00124{left:104.400000px;}
.x5b_c00124{left:106.500000px;}
.x99_c00124{left:107.700000px;}
.x51_c00124{left:109.350000px;}
.x3_c00124{left:111.900000px;}
.x10_c00124{left:114.300000px;}
.x61_c00124{left:116.250000px;}
.x4c_c00124{left:118.800000px;}
.xa3_c00124{left:121.200000px;}
.x24_c00124{left:122.250000px;}
.x85_c00124{left:124.800000px;}
.x9a_c00124{left:126.450000px;}
.x46_c00124{left:128.100000px;}
.x69_c00124{left:131.400000px;}
.x55_c00124{left:136.200000px;}
.x18_c00124{left:137.850000px;}
.x9_c00124{left:139.950000px;}
.x33_c00124{left:142.800000px;}
.x11_c00124{left:145.200000px;}
.x80_c00124{left:147.000000px;}
.x1d_c00124{left:149.100000px;}
.x86_c00124{left:151.800000px;}
.x62_c00124{left:153.750000px;}
.x4d_c00124{left:155.100000px;}
.x47_c00124{left:156.900000px;}
.xa6_c00124{left:158.100000px;}
.x56_c00124{left:159.900000px;}
.x95_c00124{left:160.950000px;}
.x34_c00124{left:162.300000px;}
.x78_c00124{left:163.800000px;}
.x12_c00124{left:165.000000px;}
.x39_c00124{left:167.100000px;}
.x52_c00124{left:168.300000px;}
.x96_c00124{left:169.650000px;}
.x2c_c00124{left:171.900000px;}
.x8e_c00124{left:174.300000px;}
.xa_c00124{left:176.700000px;}
.x57_c00124{left:180.450000px;}
.x25_c00124{left:183.150000px;}
.x4_c00124{left:184.200000px;}
.x87_c00124{left:186.600000px;}
.x63_c00124{left:190.500000px;}
.x3a_c00124{left:192.300000px;}
.x2d_c00124{left:193.800000px;}
.x8f_c00124{left:194.850000px;}
.x6a_c00124{left:197.250000px;}
.x1e_c00124{left:199.800000px;}
.x74_c00124{left:201.150000px;}
.x88_c00124{left:203.100000px;}
.x9b_c00124{left:204.150000px;}
.x40_c00124{left:205.350000px;}
.x13_c00124{left:206.700000px;}
.x35_c00124{left:208.800000px;}
.x64_c00124{left:210.300000px;}
.x19_c00124{left:211.350000px;}
.x81_c00124{left:215.100000px;}
.xb_c00124{left:216.600000px;}
.x26_c00124{left:218.400000px;}
.x48_c00124{left:219.600000px;}
.x6b_c00124{left:221.700000px;}
.x9c_c00124{left:223.650000px;}
.x76_c00124{left:226.200000px;}
.x65_c00124{left:228.300000px;}
.x27_c00124{left:230.700000px;}
.x41_c00124{left:232.050000px;}
.x2e_c00124{left:233.400000px;}
.x5e_c00124{left:235.050000px;}
.xa7_c00124{left:237.600000px;}
.x8a_c00124{left:239.850000px;}
.x16_c00124{left:242.250000px;}
.x90_c00124{left:243.300000px;}
.x92_c00124{left:245.550000px;}
.x14_c00124{left:247.050000px;}
.x1f_c00124{left:248.700000px;}
.x4e_c00124{left:249.750000px;}
.x8b_c00124{left:250.950000px;}
.x42_c00124{left:252.150000px;}
.x6c_c00124{left:253.800000px;}
.x79_c00124{left:256.350000px;}
.x5f_c00124{left:258.450000px;}
.x53_c00124{left:260.400000px;}
.xaa_c00124{left:261.450000px;}
.x9d_c00124{left:265.350000px;}
.x58_c00124{left:266.400000px;}
.x6f_c00124{left:268.050000px;}
.x7a_c00124{left:271.050000px;}
.x15_c00124{left:272.250000px;}
.x70_c00124{left:275.250000px;}
.x5_c00124{left:277.050000px;}
.x36_c00124{left:278.250000px;}
.x89_c00124{left:279.450000px;}
.x3b_c00124{left:280.500000px;}
.x28_c00124{left:283.200000px;}
.x5c_c00124{left:284.700000px;}
.x60_c00124{left:285.750000px;}
.x49_c00124{left:287.250000px;}
.x2f_c00124{left:288.450000px;}
.x59_c00124{left:290.100000px;}
.x1a_c00124{left:291.300000px;}
.x97_c00124{left:293.400000px;}
.x7e_c00124{left:294.900000px;}
.x20_c00124{left:296.250000px;}
.x14f_c00124{left:298.200000px;}
.x82_c00124{left:299.400000px;}
.x30_c00124{left:300.750000px;}
.xa8_c00124{left:301.800000px;}
.x43_c00124{left:302.850000px;}
.x71_c00124{left:303.900000px;}
.x5d_c00124{left:305.550000px;}
.xc_c00124{left:309.150000px;}
.x72_c00124{left:311.400000px;}
.x1b_c00124{left:312.600000px;}
.x83_c00124{left:315.300000px;}
.x4f_c00124{left:316.350000px;}
.x1_c00124{left:318.300000px;}
.x21_c00124{left:319.350000px;}
.x44_c00124{left:320.550000px;}
.x4a_c00124{left:321.750000px;}
.x66_c00124{left:323.400000px;}
.x7b_c00124{left:326.100000px;}
.xd_c00124{left:328.200000px;}
.x93_c00124{left:331.350000px;}
.x3c_c00124{left:334.200000px;}
.x98_c00124{left:336.600000px;}
.x37_c00124{left:337.650000px;}
.x73_c00124{left:339.450000px;}
.x29_c00124{left:341.550000px;}
.xa0_c00124{left:345.150000px;}
.x6_c00124{left:346.500000px;}
.x84_c00124{left:348.000000px;}
.xa9_c00124{left:349.350000px;}
.x3d_c00124{left:350.700000px;}
.x7f_c00124{left:352.200000px;}
.x67_c00124{left:353.700000px;}
.x22_c00124{left:355.050000px;}
.xe_c00124{left:356.700000px;}
.x2a_c00124{left:358.800000px;}
.x150_c00124{left:361.200000px;}
.xab_c00124{left:363.450000px;}
.xa1_c00124{left:364.950000px;}
.x6d_c00124{left:367.050000px;}
.x31_c00124{left:371.700000px;}
.x50_c00124{left:375.000000px;}
.x75_c00124{left:378.000000px;}
.x8c_c00124{left:379.200000px;}
.xa4_c00124{left:380.250000px;}
.x23_c00124{left:381.750000px;}
.x7c_c00124{left:384.300000px;}
.x9e_c00124{left:385.350000px;}
.x7_c00124{left:386.400000px;}
.x68_c00124{left:387.600000px;}
.xa2_c00124{left:388.650000px;}
.x38_c00124{left:390.900000px;}
.x9f_c00124{left:391.950000px;}
.x5a_c00124{left:393.450000px;}
.x32_c00124{left:395.100000px;}
.x1c_c00124{left:399.300000px;}
.x2b_c00124{left:402.000000px;}
.x8_c00124{left:403.650000px;}
.x54_c00124{left:406.200000px;}
.x3e_c00124{left:409.050000px;}
.x146_c00124{left:414.300000px;}
.x143_c00124{left:415.800000px;}
.x11a_c00124{left:418.650000px;}
.xac_c00124{left:424.500000px;}
.x132_c00124{left:428.400000px;}
.x116_c00124{left:430.500000px;}
.xfd_c00124{left:432.300000px;}
.xb8_c00124{left:434.550000px;}
.xad_c00124{left:436.050000px;}
.x156_c00124{left:439.200000px;}
.x148_c00124{left:442.050000px;}
.x138_c00124{left:444.150000px;}
.x13a_c00124{left:445.650000px;}
.x120_c00124{left:447.000000px;}
.xc3_c00124{left:449.100000px;}
.xb4_c00124{left:451.050000px;}
.xf4_c00124{left:452.100000px;}
.x152_c00124{left:453.150000px;}
.x154_c00124{left:454.200000px;}
.x157_c00124{left:461.550000px;}
.xd1_c00124{left:463.350000px;}
.x129_c00124{left:465.150000px;}
.x130_c00124{left:466.200000px;}
.x10c_c00124{left:467.250000px;}
.xc4_c00124{left:469.950000px;}
.x115_c00124{left:472.800000px;}
.x107_c00124{left:474.450000px;}
.xed_c00124{left:476.100000px;}
.xae_c00124{left:477.750000px;}
.x158_c00124{left:480.600000px;}
.xf8_c00124{left:482.700000px;}
.x126_c00124{left:484.800000px;}
.x13b_c00124{left:487.050000px;}
.xb5_c00124{left:488.100000px;}
.x110_c00124{left:489.900000px;}
.xb9_c00124{left:491.100000px;}
.xf5_c00124{left:493.200000px;}
.x121_c00124{left:499.500000px;}
.x137_c00124{left:504.000000px;}
.x133_c00124{left:506.100000px;}
.x108_c00124{left:507.150000px;}
.x104_c00124{left:508.500000px;}
.x122_c00124{left:509.550000px;}
.x10d_c00124{left:510.750000px;}
.xb6_c00124{left:512.250000px;}
.x11b_c00124{left:513.300000px;}
.x13e_c00124{left:515.100000px;}
.xe2_c00124{left:517.950000px;}
.x109_c00124{left:519.750000px;}
.xc5_c00124{left:520.950000px;}
.x127_c00124{left:522.300000px;}
.x12c_c00124{left:524.550000px;}
.xd2_c00124{left:526.050000px;}
.xb7_c00124{left:527.400000px;}
.xc6_c00124{left:528.450000px;}
.xf9_c00124{left:530.250000px;}
.x134_c00124{left:532.050000px;}
.xfe_c00124{left:535.350000px;}
.x117_c00124{left:536.700000px;}
.x131_c00124{left:538.200000px;}
.xaf_c00124{left:541.050000px;}
.x13c_c00124{left:543.150000px;}
.x155_c00124{left:544.500000px;}
.xd3_c00124{left:545.550000px;}
.xe8_c00124{left:547.050000px;}
.xdc_c00124{left:548.550000px;}
.xe3_c00124{left:551.100000px;}
.x135_c00124{left:552.900000px;}
.xfa_c00124{left:554.400000px;}
.x14a_c00124{left:556.050000px;}
.xba_c00124{left:557.400000px;}
.x10e_c00124{left:559.350000px;}
.xee_c00124{left:562.200000px;}
.x11c_c00124{left:566.250000px;}
.x123_c00124{left:567.900000px;}
.xdd_c00124{left:570.600000px;}
.xc7_c00124{left:571.650000px;}
.xf6_c00124{left:574.500000px;}
.xde_c00124{left:577.800000px;}
.xc8_c00124{left:579.150000px;}
.xbb_c00124{left:581.100000px;}
.x140_c00124{left:583.650000px;}
.xdf_c00124{left:585.000000px;}
.xc9_c00124{left:586.050000px;}
.xd4_c00124{left:587.400000px;}
.x12d_c00124{left:589.350000px;}
.xe0_c00124{left:592.500000px;}
.x10f_c00124{left:593.550000px;}
.xd5_c00124{left:594.600000px;}
.x14c_c00124{left:596.400000px;}
.x111_c00124{left:597.600000px;}
.xff_c00124{left:598.650000px;}
.xd6_c00124{left:601.500000px;}
.x149_c00124{left:603.750000px;}
.x14b_c00124{left:605.100000px;}
.x11d_c00124{left:606.600000px;}
.xca_c00124{left:608.250000px;}
.xbc_c00124{left:609.900000px;}
.xef_c00124{left:611.850000px;}
.x10a_c00124{left:613.050000px;}
.xd7_c00124{left:616.200000px;}
.xbd_c00124{left:618.900000px;}
.x100_c00124{left:619.950000px;}
.xb0_c00124{left:622.050000px;}
.xe4_c00124{left:623.100000px;}
.x105_c00124{left:626.550000px;}
.xfb_c00124{left:628.200000px;}
.xcb_c00124{left:629.850000px;}
.xe9_c00124{left:631.350000px;}
.xe5_c00124{left:632.400000px;}
.x11e_c00124{left:634.350000px;}
.xbe_c00124{left:636.600000px;}
.xd8_c00124{left:638.550000px;}
.xea_c00124{left:640.350000px;}
.xf0_c00124{left:641.400000px;}
.x136_c00124{left:642.600000px;}
.xd9_c00124{left:645.000000px;}
.x141_c00124{left:647.700000px;}
.x159_c00124{left:650.550000px;}
.x118_c00124{left:651.600000px;}
.xeb_c00124{left:656.850000px;}
.xda_c00124{left:659.100000px;}
.xbf_c00124{left:661.050000px;}
.x101_c00124{left:662.850000px;}
.x112_c00124{left:663.900000px;}
.xcc_c00124{left:666.150000px;}
.xe6_c00124{left:671.700000px;}
.xcd_c00124{left:673.350000px;}
.xf1_c00124{left:674.550000px;}
.x12e_c00124{left:678.600000px;}
.xce_c00124{left:680.850000px;}
.x119_c00124{left:683.250000px;}
.xb1_c00124{left:685.050000px;}
.xf2_c00124{left:686.100000px;}
.x153_c00124{left:688.950000px;}
.xc0_c00124{left:690.900000px;}
.x11f_c00124{left:694.050000px;}
.xfc_c00124{left:696.900000px;}
.x14d_c00124{left:698.550000px;}
.xcf_c00124{left:699.900000px;}
.x12a_c00124{left:701.700000px;}
.xec_c00124{left:704.700000px;}
.xe7_c00124{left:708.000000px;}
.x124_c00124{left:709.200000px;}
.xb2_c00124{left:711.300000px;}
.x144_c00124{left:712.350000px;}
.x10b_c00124{left:714.300000px;}
.x139_c00124{left:715.950000px;}
.x12b_c00124{left:717.900000px;}
.xf3_c00124{left:720.300000px;}
.xc1_c00124{left:721.500000px;}
.x13d_c00124{left:722.550000px;}
.xdb_c00124{left:724.200000px;}
.x12f_c00124{left:725.700000px;}
.xd0_c00124{left:729.000000px;}
.xe1_c00124{left:730.050000px;}
.x128_c00124{left:732.600000px;}
.x102_c00124{left:739.200000px;}
.x113_c00124{left:740.250000px;}
.x125_c00124{left:741.600000px;}
.x13f_c00124{left:743.400000px;}
.x2_c00124{left:745.200000px;}
.x145_c00124{left:746.250000px;}
.x114_c00124{left:747.450000px;}
.x147_c00124{left:749.850000px;}
.x142_c00124{left:751.650000px;}
.xc2_c00124{left:755.400000px;}
.x103_c00124{left:757.500000px;}
.xb3_c00124{left:759.600000px;}
.xf7_c00124{left:766.350000px;}
.x106_c00124{left:775.950000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws0_c00124{word-spacing:-6.001358pt;}
.wsc_c00124{word-spacing:-1.473495pt;}
.ws10_c00124{word-spacing:0.000000pt;}
.ws4_c00124{word-spacing:5.925926pt;}
.ws7_c00124{word-spacing:13.714286pt;}
.ws2_c00124{word-spacing:14.920635pt;}
.ws5_c00124{word-spacing:19.111111pt;}
.wsa_c00124{word-spacing:20.632708pt;}
.ws8_c00124{word-spacing:21.333333pt;}
.wsf_c00124{word-spacing:22.857143pt;}
.ws9_c00124{word-spacing:23.492404pt;}
.ws3_c00124{word-spacing:23.666667pt;}
.wse_c00124{word-spacing:31.851852pt;}
.ws6_c00124{word-spacing:34.666667pt;}
.wsb_c00124{word-spacing:35.555556pt;}
.ws1_c00124{word-spacing:39.259259pt;}
.wsd_c00124{word-spacing:49.221374pt;}
._5_c00124{width:31.619048pt;}
._6_c00124{width:37.333333pt;}
._4_c00124{width:39.555556pt;}
._3_c00124{width:42.888889pt;}
._7_c00124{width:51.781948pt;}
._1_c00124{width:52.698413pt;}
._2_c00124{width:59.333333pt;}
._0_c00124{width:62.222222pt;}
.fs4_c00124{font-size:26.666667pt;}
.fs6_c00124{font-size:32.000000pt;}
.fs5_c00124{font-size:42.666667pt;}
.fs1_c00124{font-size:48.000000pt;}
.fs2_c00124{font-size:53.333333pt;}
.fs3_c00124{font-size:58.666667pt;}
.fs8_c00124{font-size:64.000000pt;}
.fs0_c00124{font-size:69.333333pt;}
.fs7_c00124{font-size:122.666667pt;}
.y0_c00124{bottom:0.000000pt;}
.y62_c00124{bottom:169.200000pt;}
.y5e_c00124{bottom:169.333333pt;}
.y61_c00124{bottom:181.733333pt;}
.y5d_c00124{bottom:182.400000pt;}
.y30_c00124{bottom:195.066667pt;}
.y2f_c00124{bottom:207.600000pt;}
.y5c_c00124{bottom:214.666667pt;}
.y2e_c00124{bottom:220.400000pt;}
.y5b_c00124{bottom:230.666667pt;}
.y2d_c00124{bottom:233.466667pt;}
.y2c_c00124{bottom:246.000000pt;}
.y5a_c00124{bottom:246.666667pt;}
.y2b_c00124{bottom:258.800000pt;}
.y59_c00124{bottom:262.400000pt;}
.y2a_c00124{bottom:271.333333pt;}
.y29_c00124{bottom:283.866667pt;}
.y60_c00124{bottom:284.533333pt;}
.y28_c00124{bottom:296.933333pt;}
.y5f_c00124{bottom:298.933333pt;}
.y58_c00124{bottom:310.133333pt;}
.y57_c00124{bottom:321.600000pt;}
.y56_c00124{bottom:337.333333pt;}
.y27_c00124{bottom:338.533333pt;}
.y55_c00124{bottom:350.933333pt;}
.y26_c00124{bottom:354.533333pt;}
.y54_c00124{bottom:366.666667pt;}
.y25_c00124{bottom:370.266667pt;}
.y53_c00124{bottom:382.400000pt;}
.y24_c00124{bottom:390.133333pt;}
.y52_c00124{bottom:398.400000pt;}
.y51_c00124{bottom:414.400000pt;}
.y23_c00124{bottom:417.866667pt;}
.y50_c00124{bottom:430.400000pt;}
.y22_c00124{bottom:437.600000pt;}
.y4f_c00124{bottom:446.133333pt;}
.y21_c00124{bottom:453.333333pt;}
.y4e_c00124{bottom:465.600000pt;}
.y20_c00124{bottom:469.333333pt;}
.y4d_c00124{bottom:481.333333pt;}
.y1f_c00124{bottom:485.066667pt;}
.y1e_c00124{bottom:501.066667pt;}
.y4c_c00124{bottom:504.933333pt;}
.y1d_c00124{bottom:520.400000pt;}
.y4b_c00124{bottom:524.800000pt;}
.y1c_c00124{bottom:536.400000pt;}
.y4a_c00124{bottom:540.800000pt;}
.y1b_c00124{bottom:552.400000pt;}
.y49_c00124{bottom:556.533333pt;}
.y1a_c00124{bottom:567.733333pt;}
.y48_c00124{bottom:576.000000pt;}
.y19_c00124{bottom:586.800000pt;}
.y47_c00124{bottom:592.000000pt;}
.y18_c00124{bottom:599.600000pt;}
.y46_c00124{bottom:608.000000pt;}
.y17_c00124{bottom:610.533333pt;}
.y45_c00124{bottom:623.333333pt;}
.y16_c00124{bottom:623.866667pt;}
.y15_c00124{bottom:639.600000pt;}
.y44_c00124{bottom:645.466667pt;}
.y14_c00124{bottom:655.333333pt;}
.y43_c00124{bottom:666.933333pt;}
.y13_c00124{bottom:679.333333pt;}
.y42_c00124{bottom:690.533333pt;}
.y12_c00124{bottom:694.666667pt;}
.y41_c00124{bottom:706.533333pt;}
.y11_c00124{bottom:710.400000pt;}
.y40_c00124{bottom:722.266667pt;}
.y10_c00124{bottom:726.400000pt;}
.yf_c00124{bottom:741.733333pt;}
.y3f_c00124{bottom:742.133333pt;}
.y3e_c00124{bottom:757.466667pt;}
.ye_c00124{bottom:768.933333pt;}
.y3d_c00124{bottom:781.466667pt;}
.yd_c00124{bottom:797.066667pt;}
.yc_c00124{bottom:812.800000pt;}
.yb_c00124{bottom:828.533333pt;}
.y3b_c00124{bottom:832.533333pt;}
.y3a_c00124{bottom:847.866667pt;}
.ya_c00124{bottom:852.133333pt;}
.y39_c00124{bottom:863.866667pt;}
.y9_c00124{bottom:868.133333pt;}
.y38_c00124{bottom:879.600000pt;}
.y8_c00124{bottom:883.466667pt;}
.y37_c00124{bottom:895.333333pt;}
.y7_c00124{bottom:899.466667pt;}
.y6_c00124{bottom:915.466667pt;}
.y36_c00124{bottom:917.466667pt;}
.y35_c00124{bottom:930.266667pt;}
.y5_c00124{bottom:938.533333pt;}
.y34_c00124{bottom:942.400000pt;}
.y3c_c00124{bottom:943.066667pt;}
.y33_c00124{bottom:956.133333pt;}
.y4_c00124{bottom:958.400000pt;}
.y3_c00124{bottom:974.133333pt;}
.y32_c00124{bottom:977.200000pt;}
.y31_c00124{bottom:992.933333pt;}
.y2_c00124{bottom:993.600000pt;}
.y1_c00124{bottom:1016.666667pt;}
.h6_c00124{height:26.666667pt;}
.h8_c00124{height:32.000000pt;}
.h7_c00124{height:42.666667pt;}
.h3_c00124{height:48.000000pt;}
.h4_c00124{height:53.333333pt;}
.h5_c00124{height:58.666667pt;}
.ha_c00124{height:64.000000pt;}
.h2_c00124{height:69.333333pt;}
.h9_c00124{height:122.666667pt;}
.h0_c00124{height:1135.040039pt;}
.h1_c00124{height:1135.333333pt;}
.w1_c00124{width:847.333333pt;}
.w0_c00124{width:847.360027pt;}
.x0_c00124{left:0.000000pt;}
.x151_c00124{left:59.466667pt;}
.x8d_c00124{left:60.533333pt;}
.x7d_c00124{left:61.733333pt;}
.x17_c00124{left:63.333333pt;}
.x4b_c00124{left:65.600000pt;}
.x94_c00124{left:73.600000pt;}
.x91_c00124{left:77.466667pt;}
.x77_c00124{left:78.400000pt;}
.x45_c00124{left:80.000000pt;}
.x3f_c00124{left:81.066667pt;}
.xf_c00124{left:82.133333pt;}
.xa5_c00124{left:87.066667pt;}
.x6e_c00124{left:89.866667pt;}
.x14e_c00124{left:92.800000pt;}
.x5b_c00124{left:94.666667pt;}
.x99_c00124{left:95.733333pt;}
.x51_c00124{left:97.200000pt;}
.x3_c00124{left:99.466667pt;}
.x10_c00124{left:101.600000pt;}
.x61_c00124{left:103.333333pt;}
.x4c_c00124{left:105.600000pt;}
.xa3_c00124{left:107.733333pt;}
.x24_c00124{left:108.666667pt;}
.x85_c00124{left:110.933333pt;}
.x9a_c00124{left:112.400000pt;}
.x46_c00124{left:113.866667pt;}
.x69_c00124{left:116.800000pt;}
.x55_c00124{left:121.066667pt;}
.x18_c00124{left:122.533333pt;}
.x9_c00124{left:124.400000pt;}
.x33_c00124{left:126.933333pt;}
.x11_c00124{left:129.066667pt;}
.x80_c00124{left:130.666667pt;}
.x1d_c00124{left:132.533333pt;}
.x86_c00124{left:134.933333pt;}
.x62_c00124{left:136.666667pt;}
.x4d_c00124{left:137.866667pt;}
.x47_c00124{left:139.466667pt;}
.xa6_c00124{left:140.533333pt;}
.x56_c00124{left:142.133333pt;}
.x95_c00124{left:143.066667pt;}
.x34_c00124{left:144.266667pt;}
.x78_c00124{left:145.600000pt;}
.x12_c00124{left:146.666667pt;}
.x39_c00124{left:148.533333pt;}
.x52_c00124{left:149.600000pt;}
.x96_c00124{left:150.800000pt;}
.x2c_c00124{left:152.800000pt;}
.x8e_c00124{left:154.933333pt;}
.xa_c00124{left:157.066667pt;}
.x57_c00124{left:160.400000pt;}
.x25_c00124{left:162.800000pt;}
.x4_c00124{left:163.733333pt;}
.x87_c00124{left:165.866667pt;}
.x63_c00124{left:169.333333pt;}
.x3a_c00124{left:170.933333pt;}
.x2d_c00124{left:172.266667pt;}
.x8f_c00124{left:173.200000pt;}
.x6a_c00124{left:175.333333pt;}
.x1e_c00124{left:177.600000pt;}
.x74_c00124{left:178.800000pt;}
.x88_c00124{left:180.533333pt;}
.x9b_c00124{left:181.466667pt;}
.x40_c00124{left:182.533333pt;}
.x13_c00124{left:183.733333pt;}
.x35_c00124{left:185.600000pt;}
.x64_c00124{left:186.933333pt;}
.x19_c00124{left:187.866667pt;}
.x81_c00124{left:191.200000pt;}
.xb_c00124{left:192.533333pt;}
.x26_c00124{left:194.133333pt;}
.x48_c00124{left:195.200000pt;}
.x6b_c00124{left:197.066667pt;}
.x9c_c00124{left:198.800000pt;}
.x76_c00124{left:201.066667pt;}
.x65_c00124{left:202.933333pt;}
.x27_c00124{left:205.066667pt;}
.x41_c00124{left:206.266667pt;}
.x2e_c00124{left:207.466667pt;}
.x5e_c00124{left:208.933333pt;}
.xa7_c00124{left:211.200000pt;}
.x8a_c00124{left:213.200000pt;}
.x16_c00124{left:215.333333pt;}
.x90_c00124{left:216.266667pt;}
.x92_c00124{left:218.266667pt;}
.x14_c00124{left:219.600000pt;}
.x1f_c00124{left:221.066667pt;}
.x4e_c00124{left:222.000000pt;}
.x8b_c00124{left:223.066667pt;}
.x42_c00124{left:224.133333pt;}
.x6c_c00124{left:225.600000pt;}
.x79_c00124{left:227.866667pt;}
.x5f_c00124{left:229.733333pt;}
.x53_c00124{left:231.466667pt;}
.xaa_c00124{left:232.400000pt;}
.x9d_c00124{left:235.866667pt;}
.x58_c00124{left:236.800000pt;}
.x6f_c00124{left:238.266667pt;}
.x7a_c00124{left:240.933333pt;}
.x15_c00124{left:242.000000pt;}
.x70_c00124{left:244.666667pt;}
.x5_c00124{left:246.266667pt;}
.x36_c00124{left:247.333333pt;}
.x89_c00124{left:248.400000pt;}
.x3b_c00124{left:249.333333pt;}
.x28_c00124{left:251.733333pt;}
.x5c_c00124{left:253.066667pt;}
.x60_c00124{left:254.000000pt;}
.x49_c00124{left:255.333333pt;}
.x2f_c00124{left:256.400000pt;}
.x59_c00124{left:257.866667pt;}
.x1a_c00124{left:258.933333pt;}
.x97_c00124{left:260.800000pt;}
.x7e_c00124{left:262.133333pt;}
.x20_c00124{left:263.333333pt;}
.x14f_c00124{left:265.066667pt;}
.x82_c00124{left:266.133333pt;}
.x30_c00124{left:267.333333pt;}
.xa8_c00124{left:268.266667pt;}
.x43_c00124{left:269.200000pt;}
.x71_c00124{left:270.133333pt;}
.x5d_c00124{left:271.600000pt;}
.xc_c00124{left:274.800000pt;}
.x72_c00124{left:276.800000pt;}
.x1b_c00124{left:277.866667pt;}
.x83_c00124{left:280.266667pt;}
.x4f_c00124{left:281.200000pt;}
.x1_c00124{left:282.933333pt;}
.x21_c00124{left:283.866667pt;}
.x44_c00124{left:284.933333pt;}
.x4a_c00124{left:286.000000pt;}
.x66_c00124{left:287.466667pt;}
.x7b_c00124{left:289.866667pt;}
.xd_c00124{left:291.733333pt;}
.x93_c00124{left:294.533333pt;}
.x3c_c00124{left:297.066667pt;}
.x98_c00124{left:299.200000pt;}
.x37_c00124{left:300.133333pt;}
.x73_c00124{left:301.733333pt;}
.x29_c00124{left:303.600000pt;}
.xa0_c00124{left:306.800000pt;}
.x6_c00124{left:308.000000pt;}
.x84_c00124{left:309.333333pt;}
.xa9_c00124{left:310.533333pt;}
.x3d_c00124{left:311.733333pt;}
.x7f_c00124{left:313.066667pt;}
.x67_c00124{left:314.400000pt;}
.x22_c00124{left:315.600000pt;}
.xe_c00124{left:317.066667pt;}
.x2a_c00124{left:318.933333pt;}
.x150_c00124{left:321.066667pt;}
.xab_c00124{left:323.066667pt;}
.xa1_c00124{left:324.400000pt;}
.x6d_c00124{left:326.266667pt;}
.x31_c00124{left:330.400000pt;}
.x50_c00124{left:333.333333pt;}
.x75_c00124{left:336.000000pt;}
.x8c_c00124{left:337.066667pt;}
.xa4_c00124{left:338.000000pt;}
.x23_c00124{left:339.333333pt;}
.x7c_c00124{left:341.600000pt;}
.x9e_c00124{left:342.533333pt;}
.x7_c00124{left:343.466667pt;}
.x68_c00124{left:344.533333pt;}
.xa2_c00124{left:345.466667pt;}
.x38_c00124{left:347.466667pt;}
.x9f_c00124{left:348.400000pt;}
.x5a_c00124{left:349.733333pt;}
.x32_c00124{left:351.200000pt;}
.x1c_c00124{left:354.933333pt;}
.x2b_c00124{left:357.333333pt;}
.x8_c00124{left:358.800000pt;}
.x54_c00124{left:361.066667pt;}
.x3e_c00124{left:363.600000pt;}
.x146_c00124{left:368.266667pt;}
.x143_c00124{left:369.600000pt;}
.x11a_c00124{left:372.133333pt;}
.xac_c00124{left:377.333333pt;}
.x132_c00124{left:380.800000pt;}
.x116_c00124{left:382.666667pt;}
.xfd_c00124{left:384.266667pt;}
.xb8_c00124{left:386.266667pt;}
.xad_c00124{left:387.600000pt;}
.x156_c00124{left:390.400000pt;}
.x148_c00124{left:392.933333pt;}
.x138_c00124{left:394.800000pt;}
.x13a_c00124{left:396.133333pt;}
.x120_c00124{left:397.333333pt;}
.xc3_c00124{left:399.200000pt;}
.xb4_c00124{left:400.933333pt;}
.xf4_c00124{left:401.866667pt;}
.x152_c00124{left:402.800000pt;}
.x154_c00124{left:403.733333pt;}
.x157_c00124{left:410.266667pt;}
.xd1_c00124{left:411.866667pt;}
.x129_c00124{left:413.466667pt;}
.x130_c00124{left:414.400000pt;}
.x10c_c00124{left:415.333333pt;}
.xc4_c00124{left:417.733333pt;}
.x115_c00124{left:420.266667pt;}
.x107_c00124{left:421.733333pt;}
.xed_c00124{left:423.200000pt;}
.xae_c00124{left:424.666667pt;}
.x158_c00124{left:427.200000pt;}
.xf8_c00124{left:429.066667pt;}
.x126_c00124{left:430.933333pt;}
.x13b_c00124{left:432.933333pt;}
.xb5_c00124{left:433.866667pt;}
.x110_c00124{left:435.466667pt;}
.xb9_c00124{left:436.533333pt;}
.xf5_c00124{left:438.400000pt;}
.x121_c00124{left:444.000000pt;}
.x137_c00124{left:448.000000pt;}
.x133_c00124{left:449.866667pt;}
.x108_c00124{left:450.800000pt;}
.x104_c00124{left:452.000000pt;}
.x122_c00124{left:452.933333pt;}
.x10d_c00124{left:454.000000pt;}
.xb6_c00124{left:455.333333pt;}
.x11b_c00124{left:456.266667pt;}
.x13e_c00124{left:457.866667pt;}
.xe2_c00124{left:460.400000pt;}
.x109_c00124{left:462.000000pt;}
.xc5_c00124{left:463.066667pt;}
.x127_c00124{left:464.266667pt;}
.x12c_c00124{left:466.266667pt;}
.xd2_c00124{left:467.600000pt;}
.xb7_c00124{left:468.800000pt;}
.xc6_c00124{left:469.733333pt;}
.xf9_c00124{left:471.333333pt;}
.x134_c00124{left:472.933333pt;}
.xfe_c00124{left:475.866667pt;}
.x117_c00124{left:477.066667pt;}
.x131_c00124{left:478.400000pt;}
.xaf_c00124{left:480.933333pt;}
.x13c_c00124{left:482.800000pt;}
.x155_c00124{left:484.000000pt;}
.xd3_c00124{left:484.933333pt;}
.xe8_c00124{left:486.266667pt;}
.xdc_c00124{left:487.600000pt;}
.xe3_c00124{left:489.866667pt;}
.x135_c00124{left:491.466667pt;}
.xfa_c00124{left:492.800000pt;}
.x14a_c00124{left:494.266667pt;}
.xba_c00124{left:495.466667pt;}
.x10e_c00124{left:497.200000pt;}
.xee_c00124{left:499.733333pt;}
.x11c_c00124{left:503.333333pt;}
.x123_c00124{left:504.800000pt;}
.xdd_c00124{left:507.200000pt;}
.xc7_c00124{left:508.133333pt;}
.xf6_c00124{left:510.666667pt;}
.xde_c00124{left:513.600000pt;}
.xc8_c00124{left:514.800000pt;}
.xbb_c00124{left:516.533333pt;}
.x140_c00124{left:518.800000pt;}
.xdf_c00124{left:520.000000pt;}
.xc9_c00124{left:520.933333pt;}
.xd4_c00124{left:522.133333pt;}
.x12d_c00124{left:523.866667pt;}
.xe0_c00124{left:526.666667pt;}
.x10f_c00124{left:527.600000pt;}
.xd5_c00124{left:528.533333pt;}
.x14c_c00124{left:530.133333pt;}
.x111_c00124{left:531.200000pt;}
.xff_c00124{left:532.133333pt;}
.xd6_c00124{left:534.666667pt;}
.x149_c00124{left:536.666667pt;}
.x14b_c00124{left:537.866667pt;}
.x11d_c00124{left:539.200000pt;}
.xca_c00124{left:540.666667pt;}
.xbc_c00124{left:542.133333pt;}
.xef_c00124{left:543.866667pt;}
.x10a_c00124{left:544.933333pt;}
.xd7_c00124{left:547.733333pt;}
.xbd_c00124{left:550.133333pt;}
.x100_c00124{left:551.066667pt;}
.xb0_c00124{left:552.933333pt;}
.xe4_c00124{left:553.866667pt;}
.x105_c00124{left:556.933333pt;}
.xfb_c00124{left:558.400000pt;}
.xcb_c00124{left:559.866667pt;}
.xe9_c00124{left:561.200000pt;}
.xe5_c00124{left:562.133333pt;}
.x11e_c00124{left:563.866667pt;}
.xbe_c00124{left:565.866667pt;}
.xd8_c00124{left:567.600000pt;}
.xea_c00124{left:569.200000pt;}
.xf0_c00124{left:570.133333pt;}
.x136_c00124{left:571.200000pt;}
.xd9_c00124{left:573.333333pt;}
.x141_c00124{left:575.733333pt;}
.x159_c00124{left:578.266667pt;}
.x118_c00124{left:579.200000pt;}
.xeb_c00124{left:583.866667pt;}
.xda_c00124{left:585.866667pt;}
.xbf_c00124{left:587.600000pt;}
.x101_c00124{left:589.200000pt;}
.x112_c00124{left:590.133333pt;}
.xcc_c00124{left:592.133333pt;}
.xe6_c00124{left:597.066667pt;}
.xcd_c00124{left:598.533333pt;}
.xf1_c00124{left:599.600000pt;}
.x12e_c00124{left:603.200000pt;}
.xce_c00124{left:605.200000pt;}
.x119_c00124{left:607.333333pt;}
.xb1_c00124{left:608.933333pt;}
.xf2_c00124{left:609.866667pt;}
.x153_c00124{left:612.400000pt;}
.xc0_c00124{left:614.133333pt;}
.x11f_c00124{left:616.933333pt;}
.xfc_c00124{left:619.466667pt;}
.x14d_c00124{left:620.933333pt;}
.xcf_c00124{left:622.133333pt;}
.x12a_c00124{left:623.733333pt;}
.xec_c00124{left:626.400000pt;}
.xe7_c00124{left:629.333333pt;}
.x124_c00124{left:630.400000pt;}
.xb2_c00124{left:632.266667pt;}
.x144_c00124{left:633.200000pt;}
.x10b_c00124{left:634.933333pt;}
.x139_c00124{left:636.400000pt;}
.x12b_c00124{left:638.133333pt;}
.xf3_c00124{left:640.266667pt;}
.xc1_c00124{left:641.333333pt;}
.x13d_c00124{left:642.266667pt;}
.xdb_c00124{left:643.733333pt;}
.x12f_c00124{left:645.066667pt;}
.xd0_c00124{left:648.000000pt;}
.xe1_c00124{left:648.933333pt;}
.x128_c00124{left:651.200000pt;}
.x102_c00124{left:657.066667pt;}
.x113_c00124{left:658.000000pt;}
.x125_c00124{left:659.200000pt;}
.x13f_c00124{left:660.800000pt;}
.x2_c00124{left:662.400000pt;}
.x145_c00124{left:663.333333pt;}
.x114_c00124{left:664.400000pt;}
.x147_c00124{left:666.533333pt;}
.x142_c00124{left:668.133333pt;}
.xc2_c00124{left:671.466667pt;}
.x103_c00124{left:673.333333pt;}
.xb3_c00124{left:675.200000pt;}
.xf7_c00124{left:681.200000pt;}
.x106_c00124{left:689.733333pt;}
}





/* 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_c00125 {
    display:none;
  }
  .loading-indicator_c00125.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00125 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_c00125 { 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_c00125" -> "#page-container .classname_c00125")
 */
.pf_c00125 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00125 { /* 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_c00125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00125 { /* 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_c00125 { /* 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_c00125 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00125 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00125 {overflow:visible;}
  }
}
.c_c00125 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00125 { /* 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_c00125:after { /* webkit #35443 */
  content: '';
}
.t_c00125:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00125 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 */
}
.__c00125 { /* 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_c00125 { /* info for Javascript */
  display:none;
}
.l_c00125 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00125 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00125 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00125: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_c00125 {
    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_c00125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00125.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_c00125 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00125;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.000000;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;}
.m10f_c00125{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00125{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00125{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00125{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.md8_c00125{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mef_c00125{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00125{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00125{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00125{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m0_c00125{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mba_c00125{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mee_c00125{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00125{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m74_c00125{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00125{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m47_c00125{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00125{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00125{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m109_c00125{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00125{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m101_c00125{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00125{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00125{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00125{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md9_c00125{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m85_c00125{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m6_c00125{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.me9_c00125{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me6_c00125{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00125{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00125{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00125{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m29_c00125{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00125{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00125{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00125{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m78_c00125{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m18_c00125{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4_c00125{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00125{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00125{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00125{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md6_c00125{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma_c00125{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m76_c00125{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m62_c00125{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m12_c00125{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m63_c00125{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00125{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mca_c00125{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00125{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m84_c00125{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00125{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m77_c00125{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.med_c00125{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00125{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00125{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.me_c00125{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00125{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7_c00125{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mec_c00125{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00125{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m19_c00125{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00125{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00125{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m80_c00125{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00125{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00125{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m14_c00125{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m27_c00125{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md5_c00125{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00125{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb_c00125{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m57_c00125{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m96_c00125{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m26_c00125{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md7_c00125{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mf_c00125{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m87_c00125{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00125{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00125{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.maa_c00125{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00125{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00125{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m55_c00125{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00125{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00125{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00125{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m56_c00125{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m10_c00125{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m11_c00125{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m33_c00125{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00125{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00125{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me8_c00125{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m40_c00125{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mac_c00125{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m34_c00125{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m99_c00125{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00125{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00125{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00125{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00125{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00125{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m20_c00125{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00125{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00125{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m15_c00125{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m23_c00125{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00125{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m16_c00125{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me4_c00125{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m75_c00125{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m50_c00125{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00125{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m45_c00125{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m28_c00125{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00125{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00125{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m107_c00125{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m102_c00125{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00125{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m93_c00125{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m31_c00125{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mff_c00125{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9_c00125{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m100_c00125{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m103_c00125{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m105_c00125{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00125{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m46_c00125{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00125{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m59_c00125{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8_c00125{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00125{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m37_c00125{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00125{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00125{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m21_c00125{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.md_c00125{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00125{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m89_c00125{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m25_c00125{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00125{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m58_c00125{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00125{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m79_c00125{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m83_c00125{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m17_c00125{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me1_c00125{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me3_c00125{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m35_c00125{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m64_c00125{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m95_c00125{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5_c00125{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00125{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m81_c00125{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m41_c00125{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mea_c00125{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md0_c00125{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m65_c00125{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00125{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m86_c00125{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00125{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00125{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00125{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00125{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.md2_c00125{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00125{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00125{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m60_c00125{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00125{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00125{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m24_c00125{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00125{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00125{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m43_c00125{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00125{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m36_c00125{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00125{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m38_c00125{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00125{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00125{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00125{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00125{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00125{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m71_c00125{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m22_c00125{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md3_c00125{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00125{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m48_c00125{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m32_c00125{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m97_c00125{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00125{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00125{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mab_c00125{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00125{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.me5_c00125{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m88_c00125{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m30_c00125{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00125{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc_c00125{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00125{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00125{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m68_c00125{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00125{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m108_c00125{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mde_c00125{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00125{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m13_c00125{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00125{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00125{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me0_c00125{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00125{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00125{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m70_c00125{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00125{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00125{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00125{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m66_c00125{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md1_c00125{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00125{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00125{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m110_c00125{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m52_c00125{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);}
.m61_c00125{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00125{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m49_c00125{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mce_c00125{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00125{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m44_c00125{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00125{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00125{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m42_c00125{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00125{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m104_c00125{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mad_c00125{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00125{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00125{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m73_c00125{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m72_c00125{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.me2_c00125{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m82_c00125{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00125{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00125{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m69_c00125{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00125{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m54_c00125{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00125{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m39_c00125{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m51_c00125{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00125{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m53_c00125{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00125{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m98_c00125{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m92_c00125{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00125{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m106_c00125{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m67_c00125{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me7_c00125{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mae_c00125{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md4_c00125{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00125{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.meb_c00125{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m91_c00125{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00125{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mda_c00125{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.maf_c00125{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3_c00125{transform:matrix(0.470750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470750,0.000000,0.000000,0.250000,0,0);}
.m90_c00125{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m94_c00125{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls2_c00125{letter-spacing:0.000000px;}
.ls0_c00125{letter-spacing:45.000000px;}
.ls1_c00125{letter-spacing:55.714286px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{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__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00125{word-spacing:-85.714286px;}
.wsa_c00125{word-spacing:-75.000000px;}
.ws1_c00125{word-spacing:-9.712991px;}
.wse_c00125{word-spacing:-9.609665px;}
.ws0_c00125{word-spacing:-8.278351px;}
.ws3_c00125{word-spacing:-7.812500px;}
.ws8_c00125{word-spacing:-7.778976px;}
.wsd_c00125{word-spacing:-0.103093px;}
.ws10_c00125{word-spacing:0.000000px;}
.wsf_c00125{word-spacing:9.315789px;}
.ws9_c00125{word-spacing:9.663073px;}
.ws4_c00125{word-spacing:10.637002px;}
.ws6_c00125{word-spacing:13.447307px;}
.wsc_c00125{word-spacing:13.571429px;}
.ws5_c00125{word-spacing:19.994638px;}
.ws7_c00125{word-spacing:26.428954px;}
.ws2_c00125{word-spacing:53.966261px;}
._3_c00125{margin-left:-55.714286px;}
._2_c00125{margin-left:-45.000000px;}
._1_c00125{margin-left:-3.125000px;}
._0_c00125{width:43.257611px;}
.fc0_c00125{color:transparent;}
.fs6_c00125{font-size:42.000000px;}
.fs0_c00125{font-size:48.000000px;}
.fs5_c00125{font-size:54.000000px;}
.fs4_c00125{font-size:60.000000px;}
.fs3_c00125{font-size:66.000000px;}
.fs2_c00125{font-size:72.000000px;}
.fs1_c00125{font-size:84.000000px;}
.y0_c00125{bottom:0.000000px;}
.y66_c00125{bottom:182.100000px;}
.y34_c00125{bottom:183.150000px;}
.y33_c00125{bottom:198.600000px;}
.y65_c00125{bottom:200.850000px;}
.y32_c00125{bottom:211.950000px;}
.y64_c00125{bottom:222.000000px;}
.y31_c00125{bottom:226.350000px;}
.y30_c00125{bottom:240.450000px;}
.y63_c00125{bottom:240.750000px;}
.y2f_c00125{bottom:255.150000px;}
.y62_c00125{bottom:258.750000px;}
.y2e_c00125{bottom:269.250000px;}
.y61_c00125{bottom:276.450000px;}
.y60_c00125{bottom:294.150000px;}
.y2d_c00125{bottom:306.300000px;}
.y5f_c00125{bottom:315.750000px;}
.y2c_c00125{bottom:324.000000px;}
.y5e_c00125{bottom:334.050000px;}
.y2b_c00125{bottom:341.700000px;}
.y5d_c00125{bottom:361.050000px;}
.y2a_c00125{bottom:363.300000px;}
.y5c_c00125{bottom:387.000000px;}
.y29_c00125{bottom:390.000000px;}
.y5b_c00125{bottom:409.350000px;}
.y28_c00125{bottom:411.900000px;}
.y5a_c00125{bottom:431.400000px;}
.y27_c00125{bottom:434.100000px;}
.y59_c00125{bottom:449.100000px;}
.y26_c00125{bottom:452.100000px;}
.y58_c00125{bottom:467.100000px;}
.y25_c00125{bottom:470.100000px;}
.y57_c00125{bottom:484.800000px;}
.y24_c00125{bottom:488.100000px;}
.y56_c00125{bottom:502.800000px;}
.y23_c00125{bottom:506.100000px;}
.y55_c00125{bottom:520.800000px;}
.y22_c00125{bottom:523.800000px;}
.y54_c00125{bottom:538.500000px;}
.y21_c00125{bottom:541.500000px;}
.y53_c00125{bottom:556.500000px;}
.y20_c00125{bottom:559.500000px;}
.y1f_c00125{bottom:580.350000px;}
.y52_c00125{bottom:581.400000px;}
.y51_c00125{bottom:594.300000px;}
.y1e_c00125{bottom:594.750000px;}
.y50_c00125{bottom:608.700000px;}
.y1d_c00125{bottom:609.150000px;}
.y1c_c00125{bottom:621.750000px;}
.y4f_c00125{bottom:626.700000px;}
.y1b_c00125{bottom:644.400000px;}
.y4e_c00125{bottom:644.700000px;}
.y4d_c00125{bottom:662.400000px;}
.y1a_c00125{bottom:667.050000px;}
.y4c_c00125{bottom:684.750000px;}
.y19_c00125{bottom:685.500000px;}
.y4b_c00125{bottom:702.750000px;}
.y18_c00125{bottom:703.200000px;}
.y17_c00125{bottom:721.500000px;}
.y4a_c00125{bottom:724.650000px;}
.y16_c00125{bottom:738.750000px;}
.y49_c00125{bottom:742.650000px;}
.y15_c00125{bottom:756.750000px;}
.y48_c00125{bottom:768.900000px;}
.y14_c00125{bottom:778.350000px;}
.y47_c00125{bottom:786.900000px;}
.y13_c00125{bottom:795.600000px;}
.y46_c00125{bottom:809.250000px;}
.y12_c00125{bottom:822.900000px;}
.y45_c00125{bottom:831.450000px;}
.y11_c00125{bottom:849.150000px;}
.y10_c00125{bottom:867.150000px;}
.y44_c00125{bottom:884.850000px;}
.yf_c00125{bottom:885.150000px;}
.ye_c00125{bottom:902.850000px;}
.yd_c00125{bottom:920.550000px;}
.y43_c00125{bottom:920.850000px;}
.y42_c00125{bottom:938.550000px;}
.yc_c00125{bottom:946.800000px;}
.y41_c00125{bottom:956.550000px;}
.yb_c00125{bottom:964.800000px;}
.y40_c00125{bottom:974.550000px;}
.ya_c00125{bottom:982.050000px;}
.y3f_c00125{bottom:992.250000px;}
.y9_c00125{bottom:1000.050000px;}
.y3e_c00125{bottom:1010.250000px;}
.y8_c00125{bottom:1022.250000px;}
.y3d_c00125{bottom:1027.500000px;}
.y7_c00125{bottom:1039.950000px;}
.y3c_c00125{bottom:1052.250000px;}
.y3b_c00125{bottom:1053.750000px;}
.y6_c00125{bottom:1057.950000px;}
.y3a_c00125{bottom:1066.650000px;}
.y39_c00125{bottom:1067.400000px;}
.y5_c00125{bottom:1075.650000px;}
.y38_c00125{bottom:1081.050000px;}
.y4_c00125{bottom:1093.650000px;}
.y37_c00125{bottom:1094.700000px;}
.y36_c00125{bottom:1107.300000px;}
.y3_c00125{bottom:1111.350000px;}
.y35_c00125{bottom:1112.700000px;}
.y1_c00125{bottom:1138.350000px;}
.y2_c00125{bottom:1139.850000px;}
.h8_c00125{height:42.000000px;}
.h2_c00125{height:48.000000px;}
.h7_c00125{height:54.000000px;}
.h6_c00125{height:60.000000px;}
.h5_c00125{height:66.000000px;}
.h4_c00125{height:72.000000px;}
.h3_c00125{height:84.000000px;}
.h0_c00125{height:1270.440033px;}
.h1_c00125{height:1270.500000px;}
.w1_c00125{width:953.250000px;}
.w0_c00125{width:953.280030px;}
.x0_c00125{left:0.000000px;}
.x55_c00125{left:177.450000px;}
.x8c_c00125{left:178.500000px;}
.x3e_c00125{left:179.700000px;}
.x5b_c00125{left:181.500000px;}
.x1_c00125{left:182.550000px;}
.x8f_c00125{left:189.750000px;}
.x2_c00125{left:192.600000px;}
.x8d_c00125{left:195.450000px;}
.x3c_c00125{left:197.100000px;}
.x5_c00125{left:198.750000px;}
.xa0_c00125{left:200.700000px;}
.x3_c00125{left:203.100000px;}
.x9e_c00125{left:204.150000px;}
.x97_c00125{left:206.550000px;}
.x7b_c00125{left:207.600000px;}
.x95_c00125{left:210.000000px;}
.x80_c00125{left:211.650000px;}
.x60_c00125{left:216.750000px;}
.x4d_c00125{left:219.000000px;}
.x5c_c00125{left:222.900000px;}
.x16_c00125{left:223.950000px;}
.x21_c00125{left:226.350000px;}
.x81_c00125{left:229.650000px;}
.x69_c00125{left:230.850000px;}
.x9a_c00125{left:232.350000px;}
.x6_c00125{left:236.250000px;}
.x76_c00125{left:238.050000px;}
.x9c_c00125{left:239.400000px;}
.x3f_c00125{left:240.900000px;}
.x56_c00125{left:243.000000px;}
.x72_c00125{left:245.550000px;}
.xd_c00125{left:247.800000px;}
.x3d_c00125{left:251.400000px;}
.x2b_c00125{left:253.050000px;}
.x5d_c00125{left:255.600000px;}
.x13_c00125{left:257.850000px;}
.x26_c00125{left:258.900000px;}
.x51_c00125{left:259.950000px;}
.x40_c00125{left:262.200000px;}
.x4a_c00125{left:264.450000px;}
.x7_c00125{left:267.900000px;}
.x57_c00125{left:270.750000px;}
.x4e_c00125{left:271.950000px;}
.x65_c00125{left:275.100000px;}
.x93_c00125{left:277.500000px;}
.x44_c00125{left:278.550000px;}
.x8e_c00125{left:282.000000px;}
.x17_c00125{left:284.100000px;}
.x33_c00125{left:285.750000px;}
.x2c_c00125{left:288.300000px;}
.x4b_c00125{left:290.700000px;}
.x8_c00125{left:292.350000px;}
.x6e_c00125{left:294.450000px;}
.x34_c00125{left:296.850000px;}
.x58_c00125{left:298.800000px;}
.x22_c00125{left:299.850000px;}
.x2d_c00125{left:300.900000px;}
.x45_c00125{left:302.700000px;}
.x77_c00125{left:303.900000px;}
.x9f_c00125{left:305.550000px;}
.x94_c00125{left:306.900000px;}
.x27_c00125{left:308.550000px;}
.x1e_c00125{left:309.900000px;}
.xe_c00125{left:311.100000px;}
.x61_c00125{left:312.150000px;}
.x7c_c00125{left:313.950000px;}
.x98_c00125{left:316.200000px;}
.x59_c00125{left:318.600000px;}
.x35_c00125{left:322.800000px;}
.x18_c00125{left:324.750000px;}
.x78_c00125{left:325.800000px;}
.x96_c00125{left:328.050000px;}
.x84_c00125{left:329.550000px;}
.x9_c00125{left:331.950000px;}
.x66_c00125{left:333.000000px;}
.x52_c00125{left:335.550000px;}
.x19_c00125{left:337.350000px;}
.x14_c00125{left:339.600000px;}
.x46_c00125{left:342.300000px;}
.x91_c00125{left:343.800000px;}
.x62_c00125{left:346.050000px;}
.x36_c00125{left:347.250000px;}
.x28_c00125{left:350.700000px;}
.x53_c00125{left:351.750000px;}
.x2e_c00125{left:353.850000px;}
.xa_c00125{left:355.350000px;}
.x6a_c00125{left:356.550000px;}
.x9b_c00125{left:357.600000px;}
.x6f_c00125{left:359.250000px;}
.x47_c00125{left:361.350000px;}
.x1f_c00125{left:364.200000px;}
.x73_c00125{left:366.900000px;}
.x41_c00125{left:369.150000px;}
.x4c_c00125{left:371.700000px;}
.x2f_c00125{left:373.950000px;}
.xf_c00125{left:375.900000px;}
.x23_c00125{left:379.500000px;}
.x1a_c00125{left:380.550000px;}
.x99_c00125{left:382.050000px;}
.x85_c00125{left:384.300000px;}
.x5a_c00125{left:385.500000px;}
.x37_c00125{left:387.150000px;}
.x67_c00125{left:389.100000px;}
.xb_c00125{left:392.850000px;}
.x15_c00125{left:396.450000px;}
.x7e_c00125{left:397.950000px;}
.x5e_c00125{left:400.950000px;}
.x90_c00125{left:402.150000px;}
.x29_c00125{left:403.650000px;}
.x30_c00125{left:404.850000px;}
.x54_c00125{left:406.500000px;}
.x7d_c00125{left:408.150000px;}
.x10_c00125{left:410.100000px;}
.x70_c00125{left:411.450000px;}
.x1b_c00125{left:412.950000px;}
.x86_c00125{left:414.900000px;}
.x9d_c00125{left:416.100000px;}
.x38_c00125{left:418.500000px;}
.x4_c00125{left:421.650000px;}
.x8b_c00125{left:422.700000px;}
.x89_c00125{left:423.900000px;}
.x31_c00125{left:425.400000px;}
.x42_c00125{left:427.050000px;}
.x82_c00125{left:428.700000px;}
.x92_c00125{left:430.950000px;}
.x4f_c00125{left:432.750000px;}
.x74_c00125{left:435.600000px;}
.x48_c00125{left:436.650000px;}
.x11_c00125{left:438.150000px;}
.x63_c00125{left:439.650000px;}
.xc_c00125{left:444.000000px;}
.x8a_c00125{left:445.800000px;}
.x39_c00125{left:447.000000px;}
.x24_c00125{left:448.650000px;}
.x6b_c00125{left:450.150000px;}
.x50_c00125{left:451.800000px;}
.x71_c00125{left:456.450000px;}
.x12_c00125{left:458.700000px;}
.x5f_c00125{left:462.450000px;}
.x25_c00125{left:463.800000px;}
.x75_c00125{left:466.200000px;}
.x1c_c00125{left:467.250000px;}
.x88_c00125{left:468.600000px;}
.x49_c00125{left:471.900000px;}
.x79_c00125{left:472.950000px;}
.x6c_c00125{left:474.300000px;}
.x83_c00125{left:476.250000px;}
.x7f_c00125{left:477.600000px;}
.x68_c00125{left:478.800000px;}
.x2a_c00125{left:482.400000px;}
.x3a_c00125{left:484.050000px;}
.x87_c00125{left:486.900000px;}
.x43_c00125{left:490.350000px;}
.x20_c00125{left:492.000000px;}
.x32_c00125{left:494.850000px;}
.x6d_c00125{left:496.650000px;}
.x1d_c00125{left:499.650000px;}
.x7a_c00125{left:502.050000px;}
.x3b_c00125{left:504.600000px;}
.x64_c00125{left:508.800000px;}
.x101_c00125{left:535.350000px;}
.xa1_c00125{left:536.700000px;}
.x130_c00125{left:538.950000px;}
.xff_c00125{left:552.000000px;}
.xed_c00125{left:553.500000px;}
.xac_c00125{left:554.700000px;}
.x100_c00125{left:562.050000px;}
.xbf_c00125{left:564.900000px;}
.x10a_c00125{left:572.400000px;}
.x106_c00125{left:577.350000px;}
.xd0_c00125{left:579.450000px;}
.xa2_c00125{left:580.950000px;}
.xd8_c00125{left:583.800000px;}
.xf8_c00125{left:585.600000px;}
.xcc_c00125{left:589.950000px;}
.x11f_c00125{left:591.000000px;}
.xe3_c00125{left:593.400000px;}
.xb7_c00125{left:595.500000px;}
.x123_c00125{left:596.700000px;}
.xe9_c00125{left:598.050000px;}
.x11a_c00125{left:599.700000px;}
.x102_c00125{left:601.200000px;}
.x115_c00125{left:604.950000px;}
.x10d_c00125{left:606.000000px;}
.x128_c00125{left:608.400000px;}
.xee_c00125{left:609.600000px;}
.xdc_c00125{left:613.650000px;}
.xea_c00125{left:615.750000px;}
.x131_c00125{left:617.100000px;}
.xd1_c00125{left:619.800000px;}
.x107_c00125{left:622.650000px;}
.xc7_c00125{left:623.850000px;}
.x11b_c00125{left:625.200000px;}
.xf1_c00125{left:627.000000px;}
.x116_c00125{left:628.650000px;}
.xc0_c00125{left:630.450000px;}
.x10b_c00125{left:631.500000px;}
.xd9_c00125{left:636.750000px;}
.x124_c00125{left:637.800000px;}
.x108_c00125{left:639.600000px;}
.x12b_c00125{left:640.950000px;}
.xf9_c00125{left:644.700000px;}
.xa3_c00125{left:646.500000px;}
.xf2_c00125{left:648.900000px;}
.x129_c00125{left:651.300000px;}
.xcd_c00125{left:652.650000px;}
.xc1_c00125{left:653.850000px;}
.xd5_c00125{left:656.550000px;}
.xb8_c00125{left:658.200000px;}
.x11c_c00125{left:659.850000px;}
.xf3_c00125{left:661.800000px;}
.x11d_c00125{left:663.450000px;}
.xd2_c00125{left:665.100000px;}
.x112_c00125{left:666.750000px;}
.x10e_c00125{left:668.700000px;}
.xc8_c00125{left:672.750000px;}
.x117_c00125{left:674.400000px;}
.xaa_c00125{left:675.450000px;}
.xb9_c00125{left:677.700000px;}
.xdd_c00125{left:679.500000px;}
.xf4_c00125{left:680.850000px;}
.xa4_c00125{left:684.300000px;}
.x120_c00125{left:685.800000px;}
.xc2_c00125{left:689.550000px;}
.xef_c00125{left:690.900000px;}
.x110_c00125{left:692.400000px;}
.xde_c00125{left:693.900000px;}
.xa5_c00125{left:695.850000px;}
.x134_c00125{left:697.050000px;}
.xe4_c00125{left:698.100000px;}
.xfe_c00125{left:700.500000px;}
.xc3_c00125{left:703.500000px;}
.x109_c00125{left:706.950000px;}
.xd6_c00125{left:710.100000px;}
.x132_c00125{left:711.450000px;}
.xdf_c00125{left:712.650000px;}
.x12e_c00125{left:714.150000px;}
.xeb_c00125{left:715.800000px;}
.xc4_c00125{left:717.600000px;}
.x121_c00125{left:720.450000px;}
.xba_c00125{left:723.000000px;}
.x111_c00125{left:724.800000px;}
.xd3_c00125{left:726.750000px;}
.xab_c00125{left:729.750000px;}
.xc5_c00125{left:732.300000px;}
.xc9_c00125{left:733.650000px;}
.x10f_c00125{left:736.050000px;}
.xa6_c00125{left:738.750000px;}
.xce_c00125{left:741.450000px;}
.x125_c00125{left:743.250000px;}
.xb0_c00125{left:744.300000px;}
.xe5_c00125{left:745.350000px;}
.xc6_c00125{left:746.400000px;}
.x103_c00125{left:748.050000px;}
.x126_c00125{left:750.450000px;}
.xb1_c00125{left:751.800000px;}
.x113_c00125{left:753.600000px;}
.x135_c00125{left:754.950000px;}
.xf5_c00125{left:756.450000px;}
.xb2_c00125{left:759.000000px;}
.xbb_c00125{left:761.250000px;}
.x118_c00125{left:766.650000px;}
.xbc_c00125{left:768.450000px;}
.xfa_c00125{left:770.700000px;}
.xda_c00125{left:775.200000px;}
.x12f_c00125{left:777.450000px;}
.x122_c00125{left:778.800000px;}
.xb3_c00125{left:780.600000px;}
.xbd_c00125{left:782.850000px;}
.x104_c00125{left:786.150000px;}
.xe6_c00125{left:787.500000px;}
.xfb_c00125{left:790.500000px;}
.xad_c00125{left:792.600000px;}
.xd7_c00125{left:794.400000px;}
.x12c_c00125{left:798.000000px;}
.xf0_c00125{left:799.200000px;}
.xb4_c00125{left:801.450000px;}
.xbe_c00125{left:803.700000px;}
.xf6_c00125{left:805.050000px;}
.xa7_c00125{left:806.400000px;}
.xec_c00125{left:808.650000px;}
.x105_c00125{left:811.350000px;}
.xca_c00125{left:814.350000px;}
.x119_c00125{left:815.700000px;}
.x12d_c00125{left:817.050000px;}
.xd4_c00125{left:818.550000px;}
.xe0_c00125{left:819.900000px;}
.xae_c00125{left:823.200000px;}
.xe7_c00125{left:824.550000px;}
.xfc_c00125{left:826.500000px;}
.x10c_c00125{left:828.600000px;}
.xb5_c00125{left:830.250000px;}
.x127_c00125{left:832.950000px;}
.xa8_c00125{left:835.950000px;}
.x12a_c00125{left:838.950000px;}
.xf7_c00125{left:841.800000px;}
.xe1_c00125{left:843.600000px;}
.x136_c00125{left:844.650000px;}
.xcf_c00125{left:845.850000px;}
.xfd_c00125{left:847.050000px;}
.x11e_c00125{left:848.400000px;}
.xe8_c00125{left:849.750000px;}
.xe2_c00125{left:851.100000px;}
.xa9_c00125{left:853.650000px;}
.xdb_c00125{left:855.900000px;}
.xaf_c00125{left:857.400000px;}
.xb6_c00125{left:859.050000px;}
.xcb_c00125{left:861.450000px;}
.x114_c00125{left:863.100000px;}
.x133_c00125{left:881.250000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls2_c00125{letter-spacing:0.000000pt;}
.ls0_c00125{letter-spacing:40.000000pt;}
.ls1_c00125{letter-spacing:49.523810pt;}
.wsb_c00125{word-spacing:-76.190476pt;}
.wsa_c00125{word-spacing:-66.666667pt;}
.ws1_c00125{word-spacing:-8.633770pt;}
.wse_c00125{word-spacing:-8.541925pt;}
.ws0_c00125{word-spacing:-7.358534pt;}
.ws3_c00125{word-spacing:-6.944444pt;}
.ws8_c00125{word-spacing:-6.914645pt;}
.wsd_c00125{word-spacing:-0.091638pt;}
.ws10_c00125{word-spacing:0.000000pt;}
.wsf_c00125{word-spacing:8.280702pt;}
.ws9_c00125{word-spacing:8.589398pt;}
.ws4_c00125{word-spacing:9.455113pt;}
.ws6_c00125{word-spacing:11.953162pt;}
.wsc_c00125{word-spacing:12.063492pt;}
.ws5_c00125{word-spacing:17.773012pt;}
.ws7_c00125{word-spacing:23.492404pt;}
.ws2_c00125{word-spacing:47.970009pt;}
._3_c00125{margin-left:-49.523810pt;}
._2_c00125{margin-left:-40.000000pt;}
._1_c00125{margin-left:-2.777778pt;}
._0_c00125{width:38.451210pt;}
.fs6_c00125{font-size:37.333333pt;}
.fs0_c00125{font-size:42.666667pt;}
.fs5_c00125{font-size:48.000000pt;}
.fs4_c00125{font-size:53.333333pt;}
.fs3_c00125{font-size:58.666667pt;}
.fs2_c00125{font-size:64.000000pt;}
.fs1_c00125{font-size:74.666667pt;}
.y0_c00125{bottom:0.000000pt;}
.y66_c00125{bottom:161.866667pt;}
.y34_c00125{bottom:162.800000pt;}
.y33_c00125{bottom:176.533333pt;}
.y65_c00125{bottom:178.533333pt;}
.y32_c00125{bottom:188.400000pt;}
.y64_c00125{bottom:197.333333pt;}
.y31_c00125{bottom:201.200000pt;}
.y30_c00125{bottom:213.733333pt;}
.y63_c00125{bottom:214.000000pt;}
.y2f_c00125{bottom:226.800000pt;}
.y62_c00125{bottom:230.000000pt;}
.y2e_c00125{bottom:239.333333pt;}
.y61_c00125{bottom:245.733333pt;}
.y60_c00125{bottom:261.466667pt;}
.y2d_c00125{bottom:272.266667pt;}
.y5f_c00125{bottom:280.666667pt;}
.y2c_c00125{bottom:288.000000pt;}
.y5e_c00125{bottom:296.933333pt;}
.y2b_c00125{bottom:303.733333pt;}
.y5d_c00125{bottom:320.933333pt;}
.y2a_c00125{bottom:322.933333pt;}
.y5c_c00125{bottom:344.000000pt;}
.y29_c00125{bottom:346.666667pt;}
.y5b_c00125{bottom:363.866667pt;}
.y28_c00125{bottom:366.133333pt;}
.y5a_c00125{bottom:383.466667pt;}
.y27_c00125{bottom:385.866667pt;}
.y59_c00125{bottom:399.200000pt;}
.y26_c00125{bottom:401.866667pt;}
.y58_c00125{bottom:415.200000pt;}
.y25_c00125{bottom:417.866667pt;}
.y57_c00125{bottom:430.933333pt;}
.y24_c00125{bottom:433.866667pt;}
.y56_c00125{bottom:446.933333pt;}
.y23_c00125{bottom:449.866667pt;}
.y55_c00125{bottom:462.933333pt;}
.y22_c00125{bottom:465.600000pt;}
.y54_c00125{bottom:478.666667pt;}
.y21_c00125{bottom:481.333333pt;}
.y53_c00125{bottom:494.666667pt;}
.y20_c00125{bottom:497.333333pt;}
.y1f_c00125{bottom:515.866667pt;}
.y52_c00125{bottom:516.800000pt;}
.y51_c00125{bottom:528.266667pt;}
.y1e_c00125{bottom:528.666667pt;}
.y50_c00125{bottom:541.066667pt;}
.y1d_c00125{bottom:541.466667pt;}
.y1c_c00125{bottom:552.666667pt;}
.y4f_c00125{bottom:557.066667pt;}
.y1b_c00125{bottom:572.800000pt;}
.y4e_c00125{bottom:573.066667pt;}
.y4d_c00125{bottom:588.800000pt;}
.y1a_c00125{bottom:592.933333pt;}
.y4c_c00125{bottom:608.666667pt;}
.y19_c00125{bottom:609.333333pt;}
.y4b_c00125{bottom:624.666667pt;}
.y18_c00125{bottom:625.066667pt;}
.y17_c00125{bottom:641.333333pt;}
.y4a_c00125{bottom:644.133333pt;}
.y16_c00125{bottom:656.666667pt;}
.y49_c00125{bottom:660.133333pt;}
.y15_c00125{bottom:672.666667pt;}
.y48_c00125{bottom:683.466667pt;}
.y14_c00125{bottom:691.866667pt;}
.y47_c00125{bottom:699.466667pt;}
.y13_c00125{bottom:707.200000pt;}
.y46_c00125{bottom:719.333333pt;}
.y12_c00125{bottom:731.466667pt;}
.y45_c00125{bottom:739.066667pt;}
.y11_c00125{bottom:754.800000pt;}
.y10_c00125{bottom:770.800000pt;}
.y44_c00125{bottom:786.533333pt;}
.yf_c00125{bottom:786.800000pt;}
.ye_c00125{bottom:802.533333pt;}
.yd_c00125{bottom:818.266667pt;}
.y43_c00125{bottom:818.533333pt;}
.y42_c00125{bottom:834.266667pt;}
.yc_c00125{bottom:841.600000pt;}
.y41_c00125{bottom:850.266667pt;}
.yb_c00125{bottom:857.600000pt;}
.y40_c00125{bottom:866.266667pt;}
.ya_c00125{bottom:872.933333pt;}
.y3f_c00125{bottom:882.000000pt;}
.y9_c00125{bottom:888.933333pt;}
.y3e_c00125{bottom:898.000000pt;}
.y8_c00125{bottom:908.666667pt;}
.y3d_c00125{bottom:913.333333pt;}
.y7_c00125{bottom:924.400000pt;}
.y3c_c00125{bottom:935.333333pt;}
.y3b_c00125{bottom:936.666667pt;}
.y6_c00125{bottom:940.400000pt;}
.y3a_c00125{bottom:948.133333pt;}
.y39_c00125{bottom:948.800000pt;}
.y5_c00125{bottom:956.133333pt;}
.y38_c00125{bottom:960.933333pt;}
.y4_c00125{bottom:972.133333pt;}
.y37_c00125{bottom:973.066667pt;}
.y36_c00125{bottom:984.266667pt;}
.y3_c00125{bottom:987.866667pt;}
.y35_c00125{bottom:989.066667pt;}
.y1_c00125{bottom:1011.866667pt;}
.y2_c00125{bottom:1013.200000pt;}
.h8_c00125{height:37.333333pt;}
.h2_c00125{height:42.666667pt;}
.h7_c00125{height:48.000000pt;}
.h6_c00125{height:53.333333pt;}
.h5_c00125{height:58.666667pt;}
.h4_c00125{height:64.000000pt;}
.h3_c00125{height:74.666667pt;}
.h0_c00125{height:1129.280029pt;}
.h1_c00125{height:1129.333333pt;}
.w1_c00125{width:847.333333pt;}
.w0_c00125{width:847.360027pt;}
.x0_c00125{left:0.000000pt;}
.x55_c00125{left:157.733333pt;}
.x8c_c00125{left:158.666667pt;}
.x3e_c00125{left:159.733333pt;}
.x5b_c00125{left:161.333333pt;}
.x1_c00125{left:162.266667pt;}
.x8f_c00125{left:168.666667pt;}
.x2_c00125{left:171.200000pt;}
.x8d_c00125{left:173.733333pt;}
.x3c_c00125{left:175.200000pt;}
.x5_c00125{left:176.666667pt;}
.xa0_c00125{left:178.400000pt;}
.x3_c00125{left:180.533333pt;}
.x9e_c00125{left:181.466667pt;}
.x97_c00125{left:183.600000pt;}
.x7b_c00125{left:184.533333pt;}
.x95_c00125{left:186.666667pt;}
.x80_c00125{left:188.133333pt;}
.x60_c00125{left:192.666667pt;}
.x4d_c00125{left:194.666667pt;}
.x5c_c00125{left:198.133333pt;}
.x16_c00125{left:199.066667pt;}
.x21_c00125{left:201.200000pt;}
.x81_c00125{left:204.133333pt;}
.x69_c00125{left:205.200000pt;}
.x9a_c00125{left:206.533333pt;}
.x6_c00125{left:210.000000pt;}
.x76_c00125{left:211.600000pt;}
.x9c_c00125{left:212.800000pt;}
.x3f_c00125{left:214.133333pt;}
.x56_c00125{left:216.000000pt;}
.x72_c00125{left:218.266667pt;}
.xd_c00125{left:220.266667pt;}
.x3d_c00125{left:223.466667pt;}
.x2b_c00125{left:224.933333pt;}
.x5d_c00125{left:227.200000pt;}
.x13_c00125{left:229.200000pt;}
.x26_c00125{left:230.133333pt;}
.x51_c00125{left:231.066667pt;}
.x40_c00125{left:233.066667pt;}
.x4a_c00125{left:235.066667pt;}
.x7_c00125{left:238.133333pt;}
.x57_c00125{left:240.666667pt;}
.x4e_c00125{left:241.733333pt;}
.x65_c00125{left:244.533333pt;}
.x93_c00125{left:246.666667pt;}
.x44_c00125{left:247.600000pt;}
.x8e_c00125{left:250.666667pt;}
.x17_c00125{left:252.533333pt;}
.x33_c00125{left:254.000000pt;}
.x2c_c00125{left:256.266667pt;}
.x4b_c00125{left:258.400000pt;}
.x8_c00125{left:259.866667pt;}
.x6e_c00125{left:261.733333pt;}
.x34_c00125{left:263.866667pt;}
.x58_c00125{left:265.600000pt;}
.x22_c00125{left:266.533333pt;}
.x2d_c00125{left:267.466667pt;}
.x45_c00125{left:269.066667pt;}
.x77_c00125{left:270.133333pt;}
.x9f_c00125{left:271.600000pt;}
.x94_c00125{left:272.800000pt;}
.x27_c00125{left:274.266667pt;}
.x1e_c00125{left:275.466667pt;}
.xe_c00125{left:276.533333pt;}
.x61_c00125{left:277.466667pt;}
.x7c_c00125{left:279.066667pt;}
.x98_c00125{left:281.066667pt;}
.x59_c00125{left:283.200000pt;}
.x35_c00125{left:286.933333pt;}
.x18_c00125{left:288.666667pt;}
.x78_c00125{left:289.600000pt;}
.x96_c00125{left:291.600000pt;}
.x84_c00125{left:292.933333pt;}
.x9_c00125{left:295.066667pt;}
.x66_c00125{left:296.000000pt;}
.x52_c00125{left:298.266667pt;}
.x19_c00125{left:299.866667pt;}
.x14_c00125{left:301.866667pt;}
.x46_c00125{left:304.266667pt;}
.x91_c00125{left:305.600000pt;}
.x62_c00125{left:307.600000pt;}
.x36_c00125{left:308.666667pt;}
.x28_c00125{left:311.733333pt;}
.x53_c00125{left:312.666667pt;}
.x2e_c00125{left:314.533333pt;}
.xa_c00125{left:315.866667pt;}
.x6a_c00125{left:316.933333pt;}
.x9b_c00125{left:317.866667pt;}
.x6f_c00125{left:319.333333pt;}
.x47_c00125{left:321.200000pt;}
.x1f_c00125{left:323.733333pt;}
.x73_c00125{left:326.133333pt;}
.x41_c00125{left:328.133333pt;}
.x4c_c00125{left:330.400000pt;}
.x2f_c00125{left:332.400000pt;}
.xf_c00125{left:334.133333pt;}
.x23_c00125{left:337.333333pt;}
.x1a_c00125{left:338.266667pt;}
.x99_c00125{left:339.600000pt;}
.x85_c00125{left:341.600000pt;}
.x5a_c00125{left:342.666667pt;}
.x37_c00125{left:344.133333pt;}
.x67_c00125{left:345.866667pt;}
.xb_c00125{left:349.200000pt;}
.x15_c00125{left:352.400000pt;}
.x7e_c00125{left:353.733333pt;}
.x5e_c00125{left:356.400000pt;}
.x90_c00125{left:357.466667pt;}
.x29_c00125{left:358.800000pt;}
.x30_c00125{left:359.866667pt;}
.x54_c00125{left:361.333333pt;}
.x7d_c00125{left:362.800000pt;}
.x10_c00125{left:364.533333pt;}
.x70_c00125{left:365.733333pt;}
.x1b_c00125{left:367.066667pt;}
.x86_c00125{left:368.800000pt;}
.x9d_c00125{left:369.866667pt;}
.x38_c00125{left:372.000000pt;}
.x4_c00125{left:374.800000pt;}
.x8b_c00125{left:375.733333pt;}
.x89_c00125{left:376.800000pt;}
.x31_c00125{left:378.133333pt;}
.x42_c00125{left:379.600000pt;}
.x82_c00125{left:381.066667pt;}
.x92_c00125{left:383.066667pt;}
.x4f_c00125{left:384.666667pt;}
.x74_c00125{left:387.200000pt;}
.x48_c00125{left:388.133333pt;}
.x11_c00125{left:389.466667pt;}
.x63_c00125{left:390.800000pt;}
.xc_c00125{left:394.666667pt;}
.x8a_c00125{left:396.266667pt;}
.x39_c00125{left:397.333333pt;}
.x24_c00125{left:398.800000pt;}
.x6b_c00125{left:400.133333pt;}
.x50_c00125{left:401.600000pt;}
.x71_c00125{left:405.733333pt;}
.x12_c00125{left:407.733333pt;}
.x5f_c00125{left:411.066667pt;}
.x25_c00125{left:412.266667pt;}
.x75_c00125{left:414.400000pt;}
.x1c_c00125{left:415.333333pt;}
.x88_c00125{left:416.533333pt;}
.x49_c00125{left:419.466667pt;}
.x79_c00125{left:420.400000pt;}
.x6c_c00125{left:421.600000pt;}
.x83_c00125{left:423.333333pt;}
.x7f_c00125{left:424.533333pt;}
.x68_c00125{left:425.600000pt;}
.x2a_c00125{left:428.800000pt;}
.x3a_c00125{left:430.266667pt;}
.x87_c00125{left:432.800000pt;}
.x43_c00125{left:435.866667pt;}
.x20_c00125{left:437.333333pt;}
.x32_c00125{left:439.866667pt;}
.x6d_c00125{left:441.466667pt;}
.x1d_c00125{left:444.133333pt;}
.x7a_c00125{left:446.266667pt;}
.x3b_c00125{left:448.533333pt;}
.x64_c00125{left:452.266667pt;}
.x101_c00125{left:475.866667pt;}
.xa1_c00125{left:477.066667pt;}
.x130_c00125{left:479.066667pt;}
.xff_c00125{left:490.666667pt;}
.xed_c00125{left:492.000000pt;}
.xac_c00125{left:493.066667pt;}
.x100_c00125{left:499.600000pt;}
.xbf_c00125{left:502.133333pt;}
.x10a_c00125{left:508.800000pt;}
.x106_c00125{left:513.200000pt;}
.xd0_c00125{left:515.066667pt;}
.xa2_c00125{left:516.400000pt;}
.xd8_c00125{left:518.933333pt;}
.xf8_c00125{left:520.533333pt;}
.xcc_c00125{left:524.400000pt;}
.x11f_c00125{left:525.333333pt;}
.xe3_c00125{left:527.466667pt;}
.xb7_c00125{left:529.333333pt;}
.x123_c00125{left:530.400000pt;}
.xe9_c00125{left:531.600000pt;}
.x11a_c00125{left:533.066667pt;}
.x102_c00125{left:534.400000pt;}
.x115_c00125{left:537.733333pt;}
.x10d_c00125{left:538.666667pt;}
.x128_c00125{left:540.800000pt;}
.xee_c00125{left:541.866667pt;}
.xdc_c00125{left:545.466667pt;}
.xea_c00125{left:547.333333pt;}
.x131_c00125{left:548.533333pt;}
.xd1_c00125{left:550.933333pt;}
.x107_c00125{left:553.466667pt;}
.xc7_c00125{left:554.533333pt;}
.x11b_c00125{left:555.733333pt;}
.xf1_c00125{left:557.333333pt;}
.x116_c00125{left:558.800000pt;}
.xc0_c00125{left:560.400000pt;}
.x10b_c00125{left:561.333333pt;}
.xd9_c00125{left:566.000000pt;}
.x124_c00125{left:566.933333pt;}
.x108_c00125{left:568.533333pt;}
.x12b_c00125{left:569.733333pt;}
.xf9_c00125{left:573.066667pt;}
.xa3_c00125{left:574.666667pt;}
.xf2_c00125{left:576.800000pt;}
.x129_c00125{left:578.933333pt;}
.xcd_c00125{left:580.133333pt;}
.xc1_c00125{left:581.200000pt;}
.xd5_c00125{left:583.600000pt;}
.xb8_c00125{left:585.066667pt;}
.x11c_c00125{left:586.533333pt;}
.xf3_c00125{left:588.266667pt;}
.x11d_c00125{left:589.733333pt;}
.xd2_c00125{left:591.200000pt;}
.x112_c00125{left:592.666667pt;}
.x10e_c00125{left:594.400000pt;}
.xc8_c00125{left:598.000000pt;}
.x117_c00125{left:599.466667pt;}
.xaa_c00125{left:600.400000pt;}
.xb9_c00125{left:602.400000pt;}
.xdd_c00125{left:604.000000pt;}
.xf4_c00125{left:605.200000pt;}
.xa4_c00125{left:608.266667pt;}
.x120_c00125{left:609.600000pt;}
.xc2_c00125{left:612.933333pt;}
.xef_c00125{left:614.133333pt;}
.x110_c00125{left:615.466667pt;}
.xde_c00125{left:616.800000pt;}
.xa5_c00125{left:618.533333pt;}
.x134_c00125{left:619.600000pt;}
.xe4_c00125{left:620.533333pt;}
.xfe_c00125{left:622.666667pt;}
.xc3_c00125{left:625.333333pt;}
.x109_c00125{left:628.400000pt;}
.xd6_c00125{left:631.200000pt;}
.x132_c00125{left:632.400000pt;}
.xdf_c00125{left:633.466667pt;}
.x12e_c00125{left:634.800000pt;}
.xeb_c00125{left:636.266667pt;}
.xc4_c00125{left:637.866667pt;}
.x121_c00125{left:640.400000pt;}
.xba_c00125{left:642.666667pt;}
.x111_c00125{left:644.266667pt;}
.xd3_c00125{left:646.000000pt;}
.xab_c00125{left:648.666667pt;}
.xc5_c00125{left:650.933333pt;}
.xc9_c00125{left:652.133333pt;}
.x10f_c00125{left:654.266667pt;}
.xa6_c00125{left:656.666667pt;}
.xce_c00125{left:659.066667pt;}
.x125_c00125{left:660.666667pt;}
.xb0_c00125{left:661.600000pt;}
.xe5_c00125{left:662.533333pt;}
.xc6_c00125{left:663.466667pt;}
.x103_c00125{left:664.933333pt;}
.x126_c00125{left:667.066667pt;}
.xb1_c00125{left:668.266667pt;}
.x113_c00125{left:669.866667pt;}
.x135_c00125{left:671.066667pt;}
.xf5_c00125{left:672.400000pt;}
.xb2_c00125{left:674.666667pt;}
.xbb_c00125{left:676.666667pt;}
.x118_c00125{left:681.466667pt;}
.xbc_c00125{left:683.066667pt;}
.xfa_c00125{left:685.066667pt;}
.xda_c00125{left:689.066667pt;}
.x12f_c00125{left:691.066667pt;}
.x122_c00125{left:692.266667pt;}
.xb3_c00125{left:693.866667pt;}
.xbd_c00125{left:695.866667pt;}
.x104_c00125{left:698.800000pt;}
.xe6_c00125{left:700.000000pt;}
.xfb_c00125{left:702.666667pt;}
.xad_c00125{left:704.533333pt;}
.xd7_c00125{left:706.133333pt;}
.x12c_c00125{left:709.333333pt;}
.xf0_c00125{left:710.400000pt;}
.xb4_c00125{left:712.400000pt;}
.xbe_c00125{left:714.400000pt;}
.xf6_c00125{left:715.600000pt;}
.xa7_c00125{left:716.800000pt;}
.xec_c00125{left:718.800000pt;}
.x105_c00125{left:721.200000pt;}
.xca_c00125{left:723.866667pt;}
.x119_c00125{left:725.066667pt;}
.x12d_c00125{left:726.266667pt;}
.xd4_c00125{left:727.600000pt;}
.xe0_c00125{left:728.800000pt;}
.xae_c00125{left:731.733333pt;}
.xe7_c00125{left:732.933333pt;}
.xfc_c00125{left:734.666667pt;}
.x10c_c00125{left:736.533333pt;}
.xb5_c00125{left:738.000000pt;}
.x127_c00125{left:740.400000pt;}
.xa8_c00125{left:743.066667pt;}
.x12a_c00125{left:745.733333pt;}
.xf7_c00125{left:748.266667pt;}
.xe1_c00125{left:749.866667pt;}
.x136_c00125{left:750.800000pt;}
.xcf_c00125{left:751.866667pt;}
.xfd_c00125{left:752.933333pt;}
.x11e_c00125{left:754.133333pt;}
.xe8_c00125{left:755.333333pt;}
.xe2_c00125{left:756.533333pt;}
.xa9_c00125{left:758.800000pt;}
.xdb_c00125{left:760.800000pt;}
.xaf_c00125{left:762.133333pt;}
.xb6_c00125{left:763.600000pt;}
.xcb_c00125{left:765.733333pt;}
.x114_c00125{left:767.200000pt;}
.x133_c00125{left:783.333333pt;}
}





/* 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_c00126 {
    display:none;
  }
  .loading-indicator_c00126.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00126 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_c00126 { 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_c00126" -> "#page-container .classname_c00126")
 */
.pf_c00126 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00126 { /* 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_c00126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00126 { /* 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_c00126 { /* 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_c00126 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00126 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00126 {overflow:visible;}
  }
}
.c_c00126 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00126 { /* 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_c00126:after { /* webkit #35443 */
  content: '';
}
.t_c00126:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00126 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 */
}
.__c00126 { /* 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_c00126 { /* info for Javascript */
  display:none;
}
.l_c00126 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00126 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00126 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00126: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_c00126 {
    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_c00126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00126.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_c00126 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00126;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.000000;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;}
.mc_c00126{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mec_c00126{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.md7_c00126{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00126{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m73_c00126{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00126{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00126{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m101_c00126{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md2_c00126{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m72_c00126{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00126{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00126{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00126{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00126{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m12_c00126{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m109_c00126{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m10_c00126{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md8_c00126{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00126{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m74_c00126{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m70_c00126{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00126{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m66_c00126{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00126{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb_c00126{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m102_c00126{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.md3_c00126{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00126{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m67_c00126{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00126{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00126{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00126{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m105_c00126{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00126{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m95_c00126{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m44_c00126{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00126{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00126{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00126{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m97_c00126{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me1_c00126{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00126{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00126{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00126{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me6_c00126{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me4_c00126{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m31_c00126{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m96_c00126{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m78_c00126{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m61_c00126{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.meb_c00126{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00126{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00126{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mca_c00126{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m65_c00126{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m76_c00126{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00126{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m106_c00126{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.md9_c00126{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m54_c00126{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00126{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00126{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00126{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m9_c00126{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00126{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m36_c00126{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00126{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m82_c00126{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00126{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00126{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00126{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m60_c00126{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me0_c00126{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00126{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00126{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00126{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00126{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00126{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m25_c00126{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m92_c00126{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m43_c00126{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00126{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m75_c00126{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m48_c00126{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.md6_c00126{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m47_c00126{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m21_c00126{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00126{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00126{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m29_c00126{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00126{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m30_c00126{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m33_c00126{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mce_c00126{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mf_c00126{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m108_c00126{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m34_c00126{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m69_c00126{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00126{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m84_c00126{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00126{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.med_c00126{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m49_c00126{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m51_c00126{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m55_c00126{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m42_c00126{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma_c00126{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m52_c00126{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00126{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m32_c00126{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00126{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00126{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.me5_c00126{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00126{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00126{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m59_c00126{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m80_c00126{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m104_c00126{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00126{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m81_c00126{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00126{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m16_c00126{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m86_c00126{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m27_c00126{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00126{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00126{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me2_c00126{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00126{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00126{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m35_c00126{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mea_c00126{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m58_c00126{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00126{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me9_c00126{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m22_c00126{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mff_c00126{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00126{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00126{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m28_c00126{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m103_c00126{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m50_c00126{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00126{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00126{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m23_c00126{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mba_c00126{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md1_c00126{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m57_c00126{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00126{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00126{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00126{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m100_c00126{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m90_c00126{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00126{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m15_c00126{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md5_c00126{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me3_c00126{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m107_c00126{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00126{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00126{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00126{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m45_c00126{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7_c00126{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00126{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00126{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00126{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00126{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.maf_c00126{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m14_c00126{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m24_c00126{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00126{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m89_c00126{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00126{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00126{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00126{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mef_c00126{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00126{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mac_c00126{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m94_c00126{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00126{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m77_c00126{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m26_c00126{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6_c00126{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.md0_c00126{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00126{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m71_c00126{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00126{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mde_c00126{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m19_c00126{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m83_c00126{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00126{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00126{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00126{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00126{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00126{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00126{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m20_c00126{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00126{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m37_c00126{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00126{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.md_c00126{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00126{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m53_c00126{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00126{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00126{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.me8_c00126{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m64_c00126{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00126{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00126{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00126{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m68_c00126{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00126{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00126{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m88_c00126{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m40_c00126{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m99_c00126{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00126{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m63_c00126{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me_c00126{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8_c00126{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m46_c00126{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00126{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00126{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00126{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m17_c00126{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m93_c00126{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m91_c00126{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00126{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00126{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m79_c00126{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m11_c00126{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m38_c00126{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mee_c00126{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m85_c00126{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m62_c00126{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00126{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mae_c00126{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m3_c00126{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m39_c00126{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m5_c00126{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m98_c00126{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mad_c00126{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mab_c00126{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00126{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00126{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00126{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.me7_c00126{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c00126{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.maa_c00126{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00126{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00126{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00126{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00126{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m56_c00126{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00126{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00126{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00126{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m18_c00126{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00126{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m87_c00126{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m41_c00126{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.md4_c00126{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00126{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mda_c00126{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00126{transform:matrix(0.458500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458500,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls2_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:50.211796px;}
.ls1_c00126{letter-spacing:55.714286px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{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__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00126{word-spacing:-85.714286px;}
.ws4_c00126{word-spacing:-77.211796px;}
.ws9_c00126{word-spacing:-13.860335px;}
.ws0_c00126{word-spacing:-10.086207px;}
.ws5_c00126{word-spacing:-3.582210px;}
.ws2_c00126{word-spacing:-2.462322px;}
.wsa_c00126{word-spacing:0.000000px;}
.ws1_c00126{word-spacing:13.440461px;}
.ws6_c00126{word-spacing:16.833333px;}
.ws3_c00126{word-spacing:23.211796px;}
.ws8_c00126{word-spacing:24.250000px;}
._2_c00126{margin-left:-55.714286px;}
._1_c00126{margin-left:-50.211796px;}
._0_c00126{width:53.428954px;}
.fc0_c00126{color:transparent;}
.fs6_c00126{font-size:30.000000px;}
.fs5_c00126{font-size:42.000000px;}
.fs7_c00126{font-size:48.000000px;}
.fs1_c00126{font-size:54.000000px;}
.fs2_c00126{font-size:60.000000px;}
.fs3_c00126{font-size:66.000000px;}
.fs4_c00126{font-size:72.000000px;}
.fs0_c00126{font-size:78.000000px;}
.y0_c00126{bottom:0.000000px;}
.y32_c00126{bottom:193.350000px;}
.y66_c00126{bottom:193.650000px;}
.y31_c00126{bottom:211.650000px;}
.y65_c00126{bottom:211.950000px;}
.y64_c00126{bottom:229.950000px;}
.y33_c00126{bottom:235.800000px;}
.y30_c00126{bottom:237.600000px;}
.y63_c00126{bottom:247.950000px;}
.y2f_c00126{bottom:251.250000px;}
.y62_c00126{bottom:265.950000px;}
.y2e_c00126{bottom:267.150000px;}
.y61_c00126{bottom:283.650000px;}
.y2d_c00126{bottom:285.000000px;}
.y60_c00126{bottom:301.650000px;}
.y2c_c00126{bottom:302.700000px;}
.y5f_c00126{bottom:319.350000px;}
.y2b_c00126{bottom:320.700000px;}
.y5e_c00126{bottom:337.350000px;}
.y2a_c00126{bottom:346.650000px;}
.y5d_c00126{bottom:358.200000px;}
.y29_c00126{bottom:365.700000px;}
.y5c_c00126{bottom:373.050000px;}
.y28_c00126{bottom:383.700000px;}
.y5b_c00126{bottom:388.500000px;}
.y27_c00126{bottom:405.000000px;}
.y5a_c00126{bottom:406.800000px;}
.y26_c00126{bottom:423.750000px;}
.y59_c00126{bottom:424.800000px;}
.y58_c00126{bottom:447.000000px;}
.y25_c00126{bottom:451.050000px;}
.y57_c00126{bottom:465.000000px;}
.y24_c00126{bottom:478.800000px;}
.y56_c00126{bottom:486.300000px;}
.y23_c00126{bottom:496.500000px;}
.y55_c00126{bottom:505.050000px;}
.y22_c00126{bottom:523.050000px;}
.y54_c00126{bottom:531.000000px;}
.y21_c00126{bottom:541.050000px;}
.y53_c00126{bottom:549.300000px;}
.y20_c00126{bottom:559.050000px;}
.y52_c00126{bottom:571.350000px;}
.y1f_c00126{bottom:576.750000px;}
.y51_c00126{bottom:593.100000px;}
.y1e_c00126{bottom:594.750000px;}
.y50_c00126{bottom:611.850000px;}
.y1d_c00126{bottom:618.450000px;}
.y4f_c00126{bottom:629.850000px;}
.y1c_c00126{bottom:634.950000px;}
.y4e_c00126{bottom:647.100000px;}
.y1b_c00126{bottom:650.100000px;}
.y4d_c00126{bottom:665.100000px;}
.y1a_c00126{bottom:672.450000px;}
.y4c_c00126{bottom:682.800000px;}
.y19_c00126{bottom:697.650000px;}
.y4b_c00126{bottom:700.500000px;}
.y18_c00126{bottom:716.100000px;}
.y4a_c00126{bottom:726.450000px;}
.y17_c00126{bottom:734.400000px;}
.y49_c00126{bottom:740.550000px;}
.y16_c00126{bottom:752.100000px;}
.y48_c00126{bottom:753.150000px;}
.y47_c00126{bottom:759.300000px;}
.y46_c00126{bottom:768.000000px;}
.y15_c00126{bottom:770.100000px;}
.y45_c00126{bottom:786.300000px;}
.y14_c00126{bottom:791.250000px;}
.y13_c00126{bottom:809.700000px;}
.y44_c00126{bottom:811.800000px;}
.y43_c00126{bottom:829.800000px;}
.y12_c00126{bottom:835.350000px;}
.y42_c00126{bottom:847.500000px;}
.y11_c00126{bottom:854.100000px;}
.y41_c00126{bottom:869.850000px;}
.y10_c00126{bottom:871.800000px;}
.y40_c00126{bottom:887.100000px;}
.yf_c00126{bottom:889.500000px;}
.ye_c00126{bottom:907.500000px;}
.y3f_c00126{bottom:914.100000px;}
.yd_c00126{bottom:925.200000px;}
.y3e_c00126{bottom:931.650000px;}
.yc_c00126{bottom:951.450000px;}
.y3d_c00126{bottom:954.000000px;}
.y3c_c00126{bottom:975.900000px;}
.yb_c00126{bottom:978.300000px;}
.y3b_c00126{bottom:993.600000px;}
.ya_c00126{bottom:996.300000px;}
.y3a_c00126{bottom:1011.300000px;}
.y9_c00126{bottom:1014.000000px;}
.y39_c00126{bottom:1029.300000px;}
.y8_c00126{bottom:1031.700000px;}
.y38_c00126{bottom:1047.000000px;}
.y7_c00126{bottom:1049.700000px;}
.y37_c00126{bottom:1064.700000px;}
.y6_c00126{bottom:1067.400000px;}
.y36_c00126{bottom:1082.400000px;}
.y5_c00126{bottom:1093.200000px;}
.y35_c00126{bottom:1100.100000px;}
.y4_c00126{bottom:1107.300000px;}
.y34_c00126{bottom:1118.100000px;}
.y3_c00126{bottom:1121.700000px;}
.y2_c00126{bottom:1144.800000px;}
.y1_c00126{bottom:1145.550000px;}
.h8_c00126{height:30.000000px;}
.h7_c00126{height:42.000000px;}
.h9_c00126{height:48.000000px;}
.h3_c00126{height:54.000000px;}
.h4_c00126{height:60.000000px;}
.h5_c00126{height:66.000000px;}
.h6_c00126{height:72.000000px;}
.h2_c00126{height:78.000000px;}
.h1_c00126{height:1272.750000px;}
.h0_c00126{height:1272.960022px;}
.w1_c00126{width:953.250000px;}
.w0_c00126{width:953.280030px;}
.x0_c00126{left:0.000000px;}
.x84_c00126{left:68.100000px;}
.x3_c00126{left:69.150000px;}
.x13_c00126{left:70.200000px;}
.xd_c00126{left:71.400000px;}
.x11_c00126{left:83.100000px;}
.x85_c00126{left:84.300000px;}
.x61_c00126{left:86.100000px;}
.x19_c00126{left:87.300000px;}
.x3c_c00126{left:88.650000px;}
.x5d_c00126{left:90.000000px;}
.x7c_c00126{left:91.050000px;}
.xe_c00126{left:96.900000px;}
.x65_c00126{left:100.200000px;}
.x28_c00126{left:105.900000px;}
.x3d_c00126{left:107.700000px;}
.x78_c00126{left:109.050000px;}
.x4a_c00126{left:114.000000px;}
.x5e_c00126{left:115.650000px;}
.x4f_c00126{left:118.800000px;}
.x21_c00126{left:121.050000px;}
.x44_c00126{left:124.500000px;}
.x62_c00126{left:128.250000px;}
.x4_c00126{left:129.300000px;}
.x36_c00126{left:131.250000px;}
.x6f_c00126{left:132.900000px;}
.x29_c00126{left:136.800000px;}
.x67_c00126{left:138.000000px;}
.x1a_c00126{left:140.100000px;}
.x86_c00126{left:144.300000px;}
.x22_c00126{left:148.800000px;}
.x63_c00126{left:150.450000px;}
.x56_c00126{left:152.550000px;}
.x14_c00126{left:156.300000px;}
.x37_c00126{left:157.950000px;}
.x50_c00126{left:159.750000px;}
.x74_c00126{left:163.050000px;}
.x87_c00126{left:166.950000px;}
.x2a_c00126{left:170.700000px;}
.x1b_c00126{left:174.300000px;}
.x4b_c00126{left:178.800000px;}
.x48_c00126{left:181.500000px;}
.x45_c00126{left:183.900000px;}
.x3e_c00126{left:185.100000px;}
.x88_c00126{left:190.050000px;}
.x38_c00126{left:191.250000px;}
.x1c_c00126{left:194.100000px;}
.x5_c00126{left:195.150000px;}
.x4c_c00126{left:200.100000px;}
.x15_c00126{left:201.300000px;}
.x68_c00126{left:203.100000px;}
.x39_c00126{left:208.500000px;}
.x32_c00126{left:210.900000px;}
.x52_c00126{left:212.250000px;}
.x7f_c00126{left:213.750000px;}
.x5f_c00126{left:218.250000px;}
.x54_c00126{left:219.900000px;}
.x89_c00126{left:225.300000px;}
.x57_c00126{left:228.150000px;}
.x3f_c00126{left:230.400000px;}
.x1d_c00126{left:233.400000px;}
.x23_c00126{left:234.450000px;}
.x6_c00126{left:235.800000px;}
.x69_c00126{left:237.600000px;}
.x49_c00126{left:239.400000px;}
.x76_c00126{left:242.100000px;}
.x80_c00126{left:243.300000px;}
.x8b_c00126{left:245.850000px;}
.x16_c00126{left:247.800000px;}
.x40_c00126{left:250.500000px;}
.x53_c00126{left:251.550000px;}
.x83_c00126{left:254.100000px;}
.x7_c00126{left:255.300000px;}
.x2b_c00126{left:257.100000px;}
.x7b_c00126{left:258.600000px;}
.x51_c00126{left:260.250000px;}
.x6a_c00126{left:262.050000px;}
.x5a_c00126{left:264.150000px;}
.x4d_c00126{left:265.200000px;}
.x17_c00126{left:267.600000px;}
.x46_c00126{left:272.100000px;}
.x3a_c00126{left:274.050000px;}
.x41_c00126{left:276.000000px;}
.x60_c00126{left:277.350000px;}
.x24_c00126{left:278.400000px;}
.x2c_c00126{left:279.450000px;}
.x75_c00126{left:282.150000px;}
.x33_c00126{left:287.250000px;}
.x81_c00126{left:288.600000px;}
.x8_c00126{left:291.300000px;}
.x70_c00126{left:293.400000px;}
.x2d_c00126{left:295.650000px;}
.x8c_c00126{left:296.700000px;}
.x55_c00126{left:299.400000px;}
.x6d_c00126{left:300.900000px;}
.x58_c00126{left:302.700000px;}
.x6b_c00126{left:305.550000px;}
.x9_c00126{left:307.800000px;}
.x34_c00126{left:310.650000px;}
.x1_c00126{left:312.150000px;}
.x25_c00126{left:316.200000px;}
.x1e_c00126{left:318.750000px;}
.x79_c00126{left:320.550000px;}
.x2e_c00126{left:323.700000px;}
.x42_c00126{left:325.350000px;}
.xa_c00126{left:327.600000px;}
.x72_c00126{left:329.400000px;}
.x26_c00126{left:333.450000px;}
.xf_c00126{left:335.550000px;}
.x12_c00126{left:337.200000px;}
.x8a_c00126{left:338.700000px;}
.x2f_c00126{left:340.950000px;}
.x7d_c00126{left:343.050000px;}
.x59_c00126{left:344.100000px;}
.x18_c00126{left:345.750000px;}
.x1f_c00126{left:347.550000px;}
.x3b_c00126{left:348.600000px;}
.x6e_c00126{left:350.250000px;}
.x47_c00126{left:354.450000px;}
.x30_c00126{left:356.400000px;}
.xb_c00126{left:358.950000px;}
.x82_c00126{left:360.600000px;}
.x7e_c00126{left:363.150000px;}
.x10_c00126{left:365.400000px;}
.x20_c00126{left:367.650000px;}
.x77_c00126{left:370.200000px;}
.x71_c00126{left:375.600000px;}
.x43_c00126{left:378.300000px;}
.x27_c00126{left:379.500000px;}
.x73_c00126{left:381.900000px;}
.x6c_c00126{left:383.250000px;}
.x7a_c00126{left:384.600000px;}
.x5b_c00126{left:388.050000px;}
.x35_c00126{left:389.100000px;}
.x31_c00126{left:391.350000px;}
.xc_c00126{left:392.850000px;}
.x66_c00126{left:394.650000px;}
.x64_c00126{left:395.700000px;}
.x5c_c00126{left:397.050000px;}
.x4e_c00126{left:401.700000px;}
.xca_c00126{left:424.500000px;}
.xc8_c00126{left:427.650000px;}
.xd4_c00126{left:429.150000px;}
.xda_c00126{left:443.400000px;}
.x8d_c00126{left:445.350000px;}
.xaf_c00126{left:446.850000px;}
.xe6_c00126{left:451.350000px;}
.xf1_c00126{left:455.850000px;}
.x111_c00126{left:457.200000px;}
.xdc_c00126{left:464.100000px;}
.xe7_c00126{left:469.350000px;}
.xcf_c00126{left:470.550000px;}
.xd5_c00126{left:471.600000px;}
.xe5_c00126{left:473.850000px;}
.x92_c00126{left:477.000000px;}
.x109_c00126{left:479.100000px;}
.xf9_c00126{left:480.600000px;}
.xa8_c00126{left:481.650000px;}
.xb3_c00126{left:483.600000px;}
.x115_c00126{left:485.400000px;}
.xef_c00126{left:486.450000px;}
.xc9_c00126{left:488.100000px;}
.xeb_c00126{left:490.350000px;}
.x9a_c00126{left:492.150000px;}
.xcb_c00126{left:494.400000px;}
.xd0_c00126{left:495.750000px;}
.x11c_c00126{left:497.700000px;}
.x93_c00126{left:498.900000px;}
.xf4_c00126{left:500.550000px;}
.xa1_c00126{left:502.350000px;}
.xdb_c00126{left:504.300000px;}
.xd6_c00126{left:506.100000px;}
.xc2_c00126{left:507.750000px;}
.x9b_c00126{left:510.450000px;}
.xa9_c00126{left:512.250000px;}
.x100_c00126{left:513.450000px;}
.xec_c00126{left:514.500000px;}
.xbb_c00126{left:517.200000px;}
.x9c_c00126{left:524.850000px;}
.xb4_c00126{left:528.900000px;}
.xe8_c00126{left:533.100000px;}
.xaa_c00126{left:534.900000px;}
.x94_c00126{left:538.500000px;}
.xd1_c00126{left:540.750000px;}
.xf5_c00126{left:542.400000px;}
.x8e_c00126{left:544.350000px;}
.xbc_c00126{left:546.750000px;}
.x9d_c00126{left:547.950000px;}
.xfe_c00126{left:549.750000px;}
.xc3_c00126{left:551.250000px;}
.xdf_c00126{left:553.350000px;}
.x116_c00126{left:556.950000px;}
.xd2_c00126{left:558.000000px;}
.xfa_c00126{left:559.350000px;}
.x95_c00126{left:560.400000px;}
.xdd_c00126{left:562.050000px;}
.x107_c00126{left:565.950000px;}
.xa2_c00126{left:567.600000px;}
.xb5_c00126{left:570.000000px;}
.x10c_c00126{left:571.350000px;}
.x11d_c00126{left:574.050000px;}
.xab_c00126{left:575.250000px;}
.xb0_c00126{left:576.600000px;}
.xa3_c00126{left:581.250000px;}
.xd3_c00126{left:583.500000px;}
.xcc_c00126{left:586.200000px;}
.xfb_c00126{left:588.150000px;}
.x10a_c00126{left:589.200000px;}
.xbd_c00126{left:590.700000px;}
.x8f_c00126{left:592.950000px;}
.xf6_c00126{left:594.600000px;}
.xac_c00126{left:595.800000px;}
.xd7_c00126{left:598.650000px;}
.x105_c00126{left:601.200000px;}
.xb6_c00126{left:605.250000px;}
.x10e_c00126{left:607.650000px;}
.x118_c00126{left:610.350000px;}
.x10b_c00126{left:612.900000px;}
.xd8_c00126{left:614.100000px;}
.x9e_c00126{left:615.600000px;}
.xc4_c00126{left:617.850000px;}
.x96_c00126{left:620.100000px;}
.xcd_c00126{left:621.900000px;}
.xf7_c00126{left:624.150000px;}
.xa4_c00126{left:627.750000px;}
.x108_c00126{left:630.000000px;}
.xed_c00126{left:631.500000px;}
.x97_c00126{left:633.750000px;}
.xc5_c00126{left:634.800000px;}
.x112_c00126{left:636.300000px;}
.xe0_c00126{left:637.950000px;}
.xbe_c00126{left:640.050000px;}
.xfc_c00126{left:643.950000px;}
.x101_c00126{left:645.300000px;}
.x119_c00126{left:648.150000px;}
.xb7_c00126{left:649.950000px;}
.xc6_c00126{left:655.350000px;}
.xbf_c00126{left:656.550000px;}
.x102_c00126{left:657.600000px;}
.xb1_c00126{left:658.800000px;}
.xad_c00126{left:660.600000px;}
.xb8_c00126{left:661.800000px;}
.x10f_c00126{left:662.850000px;}
.xa5_c00126{left:664.500000px;}
.xce_c00126{left:667.650000px;}
.x11a_c00126{left:668.700000px;}
.x10d_c00126{left:670.650000px;}
.x117_c00126{left:672.600000px;}
.x11e_c00126{left:673.800000px;}
.x90_c00126{left:675.000000px;}
.xe1_c00126{left:676.500000px;}
.x98_c00126{left:679.500000px;}
.x103_c00126{left:682.050000px;}
.x9f_c00126{left:683.700000px;}
.xa6_c00126{left:687.900000px;}
.xd9_c00126{left:691.800000px;}
.xe9_c00126{left:694.200000px;}
.xa0_c00126{left:698.100000px;}
.xb9_c00126{left:699.300000px;}
.x114_c00126{left:700.500000px;}
.xc7_c00126{left:701.850000px;}
.xb2_c00126{left:704.550000px;}
.xff_c00126{left:708.000000px;}
.xc0_c00126{left:709.050000px;}
.xe2_c00126{left:712.500000px;}
.xee_c00126{left:714.600000px;}
.xfd_c00126{left:721.350000px;}
.xba_c00126{left:722.400000px;}
.x11f_c00126{left:724.200000px;}
.xf8_c00126{left:725.850000px;}
.xa7_c00126{left:728.250000px;}
.xe3_c00126{left:729.450000px;}
.xea_c00126{left:730.500000px;}
.xf3_c00126{left:733.800000px;}
.x2_c00126{left:735.900000px;}
.xe4_c00126{left:736.950000px;}
.xae_c00126{left:738.750000px;}
.x106_c00126{left:740.850000px;}
.x104_c00126{left:742.500000px;}
.xf0_c00126{left:744.150000px;}
.x110_c00126{left:747.150000px;}
.x91_c00126{left:748.500000px;}
.xf2_c00126{left:749.550000px;}
.x11b_c00126{left:750.750000px;}
.x99_c00126{left:752.550000px;}
.xde_c00126{left:756.450000px;}
.x113_c00126{left:758.400000px;}
.xc1_c00126{left:760.500000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls2_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:44.632708pt;}
.ls1_c00126{letter-spacing:49.523810pt;}
.ws7_c00126{word-spacing:-76.190476pt;}
.ws4_c00126{word-spacing:-68.632708pt;}
.ws9_c00126{word-spacing:-12.320298pt;}
.ws0_c00126{word-spacing:-8.965517pt;}
.ws5_c00126{word-spacing:-3.184187pt;}
.ws2_c00126{word-spacing:-2.188730pt;}
.wsa_c00126{word-spacing:0.000000pt;}
.ws1_c00126{word-spacing:11.947076pt;}
.ws6_c00126{word-spacing:14.962963pt;}
.ws3_c00126{word-spacing:20.632708pt;}
.ws8_c00126{word-spacing:21.555556pt;}
._2_c00126{margin-left:-49.523810pt;}
._1_c00126{margin-left:-44.632708pt;}
._0_c00126{width:47.492404pt;}
.fs6_c00126{font-size:26.666667pt;}
.fs5_c00126{font-size:37.333333pt;}
.fs7_c00126{font-size:42.666667pt;}
.fs1_c00126{font-size:48.000000pt;}
.fs2_c00126{font-size:53.333333pt;}
.fs3_c00126{font-size:58.666667pt;}
.fs4_c00126{font-size:64.000000pt;}
.fs0_c00126{font-size:69.333333pt;}
.y0_c00126{bottom:0.000000pt;}
.y32_c00126{bottom:171.866667pt;}
.y66_c00126{bottom:172.133333pt;}
.y31_c00126{bottom:188.133333pt;}
.y65_c00126{bottom:188.400000pt;}
.y64_c00126{bottom:204.400000pt;}
.y33_c00126{bottom:209.600000pt;}
.y30_c00126{bottom:211.200000pt;}
.y63_c00126{bottom:220.400000pt;}
.y2f_c00126{bottom:223.333333pt;}
.y62_c00126{bottom:236.400000pt;}
.y2e_c00126{bottom:237.466667pt;}
.y61_c00126{bottom:252.133333pt;}
.y2d_c00126{bottom:253.333333pt;}
.y60_c00126{bottom:268.133333pt;}
.y2c_c00126{bottom:269.066667pt;}
.y5f_c00126{bottom:283.866667pt;}
.y2b_c00126{bottom:285.066667pt;}
.y5e_c00126{bottom:299.866667pt;}
.y2a_c00126{bottom:308.133333pt;}
.y5d_c00126{bottom:318.400000pt;}
.y29_c00126{bottom:325.066667pt;}
.y5c_c00126{bottom:331.600000pt;}
.y28_c00126{bottom:341.066667pt;}
.y5b_c00126{bottom:345.333333pt;}
.y27_c00126{bottom:360.000000pt;}
.y5a_c00126{bottom:361.600000pt;}
.y26_c00126{bottom:376.666667pt;}
.y59_c00126{bottom:377.600000pt;}
.y58_c00126{bottom:397.333333pt;}
.y25_c00126{bottom:400.933333pt;}
.y57_c00126{bottom:413.333333pt;}
.y24_c00126{bottom:425.600000pt;}
.y56_c00126{bottom:432.266667pt;}
.y23_c00126{bottom:441.333333pt;}
.y55_c00126{bottom:448.933333pt;}
.y22_c00126{bottom:464.933333pt;}
.y54_c00126{bottom:472.000000pt;}
.y21_c00126{bottom:480.933333pt;}
.y53_c00126{bottom:488.266667pt;}
.y20_c00126{bottom:496.933333pt;}
.y52_c00126{bottom:507.866667pt;}
.y1f_c00126{bottom:512.666667pt;}
.y51_c00126{bottom:527.200000pt;}
.y1e_c00126{bottom:528.666667pt;}
.y50_c00126{bottom:543.866667pt;}
.y1d_c00126{bottom:549.733333pt;}
.y4f_c00126{bottom:559.866667pt;}
.y1c_c00126{bottom:564.400000pt;}
.y4e_c00126{bottom:575.200000pt;}
.y1b_c00126{bottom:577.866667pt;}
.y4d_c00126{bottom:591.200000pt;}
.y1a_c00126{bottom:597.733333pt;}
.y4c_c00126{bottom:606.933333pt;}
.y19_c00126{bottom:620.133333pt;}
.y4b_c00126{bottom:622.666667pt;}
.y18_c00126{bottom:636.533333pt;}
.y4a_c00126{bottom:645.733333pt;}
.y17_c00126{bottom:652.800000pt;}
.y49_c00126{bottom:658.266667pt;}
.y16_c00126{bottom:668.533333pt;}
.y48_c00126{bottom:669.466667pt;}
.y47_c00126{bottom:674.933333pt;}
.y46_c00126{bottom:682.666667pt;}
.y15_c00126{bottom:684.533333pt;}
.y45_c00126{bottom:698.933333pt;}
.y14_c00126{bottom:703.333333pt;}
.y13_c00126{bottom:719.733333pt;}
.y44_c00126{bottom:721.600000pt;}
.y43_c00126{bottom:737.600000pt;}
.y12_c00126{bottom:742.533333pt;}
.y42_c00126{bottom:753.333333pt;}
.y11_c00126{bottom:759.200000pt;}
.y41_c00126{bottom:773.200000pt;}
.y10_c00126{bottom:774.933333pt;}
.y40_c00126{bottom:788.533333pt;}
.yf_c00126{bottom:790.666667pt;}
.ye_c00126{bottom:806.666667pt;}
.y3f_c00126{bottom:812.533333pt;}
.yd_c00126{bottom:822.400000pt;}
.y3e_c00126{bottom:828.133333pt;}
.yc_c00126{bottom:845.733333pt;}
.y3d_c00126{bottom:848.000000pt;}
.y3c_c00126{bottom:867.466667pt;}
.yb_c00126{bottom:869.600000pt;}
.y3b_c00126{bottom:883.200000pt;}
.ya_c00126{bottom:885.600000pt;}
.y3a_c00126{bottom:898.933333pt;}
.y9_c00126{bottom:901.333333pt;}
.y39_c00126{bottom:914.933333pt;}
.y8_c00126{bottom:917.066667pt;}
.y38_c00126{bottom:930.666667pt;}
.y7_c00126{bottom:933.066667pt;}
.y37_c00126{bottom:946.400000pt;}
.y6_c00126{bottom:948.800000pt;}
.y36_c00126{bottom:962.133333pt;}
.y5_c00126{bottom:971.733333pt;}
.y35_c00126{bottom:977.866667pt;}
.y4_c00126{bottom:984.266667pt;}
.y34_c00126{bottom:993.866667pt;}
.y3_c00126{bottom:997.066667pt;}
.y2_c00126{bottom:1017.600000pt;}
.y1_c00126{bottom:1018.266667pt;}
.h8_c00126{height:26.666667pt;}
.h7_c00126{height:37.333333pt;}
.h9_c00126{height:42.666667pt;}
.h3_c00126{height:48.000000pt;}
.h4_c00126{height:53.333333pt;}
.h5_c00126{height:58.666667pt;}
.h6_c00126{height:64.000000pt;}
.h2_c00126{height:69.333333pt;}
.h1_c00126{height:1131.333333pt;}
.h0_c00126{height:1131.520020pt;}
.w1_c00126{width:847.333333pt;}
.w0_c00126{width:847.360027pt;}
.x0_c00126{left:0.000000pt;}
.x84_c00126{left:60.533333pt;}
.x3_c00126{left:61.466667pt;}
.x13_c00126{left:62.400000pt;}
.xd_c00126{left:63.466667pt;}
.x11_c00126{left:73.866667pt;}
.x85_c00126{left:74.933333pt;}
.x61_c00126{left:76.533333pt;}
.x19_c00126{left:77.600000pt;}
.x3c_c00126{left:78.800000pt;}
.x5d_c00126{left:80.000000pt;}
.x7c_c00126{left:80.933333pt;}
.xe_c00126{left:86.133333pt;}
.x65_c00126{left:89.066667pt;}
.x28_c00126{left:94.133333pt;}
.x3d_c00126{left:95.733333pt;}
.x78_c00126{left:96.933333pt;}
.x4a_c00126{left:101.333333pt;}
.x5e_c00126{left:102.800000pt;}
.x4f_c00126{left:105.600000pt;}
.x21_c00126{left:107.600000pt;}
.x44_c00126{left:110.666667pt;}
.x62_c00126{left:114.000000pt;}
.x4_c00126{left:114.933333pt;}
.x36_c00126{left:116.666667pt;}
.x6f_c00126{left:118.133333pt;}
.x29_c00126{left:121.600000pt;}
.x67_c00126{left:122.666667pt;}
.x1a_c00126{left:124.533333pt;}
.x86_c00126{left:128.266667pt;}
.x22_c00126{left:132.266667pt;}
.x63_c00126{left:133.733333pt;}
.x56_c00126{left:135.600000pt;}
.x14_c00126{left:138.933333pt;}
.x37_c00126{left:140.400000pt;}
.x50_c00126{left:142.000000pt;}
.x74_c00126{left:144.933333pt;}
.x87_c00126{left:148.400000pt;}
.x2a_c00126{left:151.733333pt;}
.x1b_c00126{left:154.933333pt;}
.x4b_c00126{left:158.933333pt;}
.x48_c00126{left:161.333333pt;}
.x45_c00126{left:163.466667pt;}
.x3e_c00126{left:164.533333pt;}
.x88_c00126{left:168.933333pt;}
.x38_c00126{left:170.000000pt;}
.x1c_c00126{left:172.533333pt;}
.x5_c00126{left:173.466667pt;}
.x4c_c00126{left:177.866667pt;}
.x15_c00126{left:178.933333pt;}
.x68_c00126{left:180.533333pt;}
.x39_c00126{left:185.333333pt;}
.x32_c00126{left:187.466667pt;}
.x52_c00126{left:188.666667pt;}
.x7f_c00126{left:190.000000pt;}
.x5f_c00126{left:194.000000pt;}
.x54_c00126{left:195.466667pt;}
.x89_c00126{left:200.266667pt;}
.x57_c00126{left:202.800000pt;}
.x3f_c00126{left:204.800000pt;}
.x1d_c00126{left:207.466667pt;}
.x23_c00126{left:208.400000pt;}
.x6_c00126{left:209.600000pt;}
.x69_c00126{left:211.200000pt;}
.x49_c00126{left:212.800000pt;}
.x76_c00126{left:215.200000pt;}
.x80_c00126{left:216.266667pt;}
.x8b_c00126{left:218.533333pt;}
.x16_c00126{left:220.266667pt;}
.x40_c00126{left:222.666667pt;}
.x53_c00126{left:223.600000pt;}
.x83_c00126{left:225.866667pt;}
.x7_c00126{left:226.933333pt;}
.x2b_c00126{left:228.533333pt;}
.x7b_c00126{left:229.866667pt;}
.x51_c00126{left:231.333333pt;}
.x6a_c00126{left:232.933333pt;}
.x5a_c00126{left:234.800000pt;}
.x4d_c00126{left:235.733333pt;}
.x17_c00126{left:237.866667pt;}
.x46_c00126{left:241.866667pt;}
.x3a_c00126{left:243.600000pt;}
.x41_c00126{left:245.333333pt;}
.x60_c00126{left:246.533333pt;}
.x24_c00126{left:247.466667pt;}
.x2c_c00126{left:248.400000pt;}
.x75_c00126{left:250.800000pt;}
.x33_c00126{left:255.333333pt;}
.x81_c00126{left:256.533333pt;}
.x8_c00126{left:258.933333pt;}
.x70_c00126{left:260.800000pt;}
.x2d_c00126{left:262.800000pt;}
.x8c_c00126{left:263.733333pt;}
.x55_c00126{left:266.133333pt;}
.x6d_c00126{left:267.466667pt;}
.x58_c00126{left:269.066667pt;}
.x6b_c00126{left:271.600000pt;}
.x9_c00126{left:273.600000pt;}
.x34_c00126{left:276.133333pt;}
.x1_c00126{left:277.466667pt;}
.x25_c00126{left:281.066667pt;}
.x1e_c00126{left:283.333333pt;}
.x79_c00126{left:284.933333pt;}
.x2e_c00126{left:287.733333pt;}
.x42_c00126{left:289.200000pt;}
.xa_c00126{left:291.200000pt;}
.x72_c00126{left:292.800000pt;}
.x26_c00126{left:296.400000pt;}
.xf_c00126{left:298.266667pt;}
.x12_c00126{left:299.733333pt;}
.x8a_c00126{left:301.066667pt;}
.x2f_c00126{left:303.066667pt;}
.x7d_c00126{left:304.933333pt;}
.x59_c00126{left:305.866667pt;}
.x18_c00126{left:307.333333pt;}
.x1f_c00126{left:308.933333pt;}
.x3b_c00126{left:309.866667pt;}
.x6e_c00126{left:311.333333pt;}
.x47_c00126{left:315.066667pt;}
.x30_c00126{left:316.800000pt;}
.xb_c00126{left:319.066667pt;}
.x82_c00126{left:320.533333pt;}
.x7e_c00126{left:322.800000pt;}
.x10_c00126{left:324.800000pt;}
.x20_c00126{left:326.800000pt;}
.x77_c00126{left:329.066667pt;}
.x71_c00126{left:333.866667pt;}
.x43_c00126{left:336.266667pt;}
.x27_c00126{left:337.333333pt;}
.x73_c00126{left:339.466667pt;}
.x6c_c00126{left:340.666667pt;}
.x7a_c00126{left:341.866667pt;}
.x5b_c00126{left:344.933333pt;}
.x35_c00126{left:345.866667pt;}
.x31_c00126{left:347.866667pt;}
.xc_c00126{left:349.200000pt;}
.x66_c00126{left:350.800000pt;}
.x64_c00126{left:351.733333pt;}
.x5c_c00126{left:352.933333pt;}
.x4e_c00126{left:357.066667pt;}
.xca_c00126{left:377.333333pt;}
.xc8_c00126{left:380.133333pt;}
.xd4_c00126{left:381.466667pt;}
.xda_c00126{left:394.133333pt;}
.x8d_c00126{left:395.866667pt;}
.xaf_c00126{left:397.200000pt;}
.xe6_c00126{left:401.200000pt;}
.xf1_c00126{left:405.200000pt;}
.x111_c00126{left:406.400000pt;}
.xdc_c00126{left:412.533333pt;}
.xe7_c00126{left:417.200000pt;}
.xcf_c00126{left:418.266667pt;}
.xd5_c00126{left:419.200000pt;}
.xe5_c00126{left:421.200000pt;}
.x92_c00126{left:424.000000pt;}
.x109_c00126{left:425.866667pt;}
.xf9_c00126{left:427.200000pt;}
.xa8_c00126{left:428.133333pt;}
.xb3_c00126{left:429.866667pt;}
.x115_c00126{left:431.466667pt;}
.xef_c00126{left:432.400000pt;}
.xc9_c00126{left:433.866667pt;}
.xeb_c00126{left:435.866667pt;}
.x9a_c00126{left:437.466667pt;}
.xcb_c00126{left:439.466667pt;}
.xd0_c00126{left:440.666667pt;}
.x11c_c00126{left:442.400000pt;}
.x93_c00126{left:443.466667pt;}
.xf4_c00126{left:444.933333pt;}
.xa1_c00126{left:446.533333pt;}
.xdb_c00126{left:448.266667pt;}
.xd6_c00126{left:449.866667pt;}
.xc2_c00126{left:451.333333pt;}
.x9b_c00126{left:453.733333pt;}
.xa9_c00126{left:455.333333pt;}
.x100_c00126{left:456.400000pt;}
.xec_c00126{left:457.333333pt;}
.xbb_c00126{left:459.733333pt;}
.x9c_c00126{left:466.533333pt;}
.xb4_c00126{left:470.133333pt;}
.xe8_c00126{left:473.866667pt;}
.xaa_c00126{left:475.466667pt;}
.x94_c00126{left:478.666667pt;}
.xd1_c00126{left:480.666667pt;}
.xf5_c00126{left:482.133333pt;}
.x8e_c00126{left:483.866667pt;}
.xbc_c00126{left:486.000000pt;}
.x9d_c00126{left:487.066667pt;}
.xfe_c00126{left:488.666667pt;}
.xc3_c00126{left:490.000000pt;}
.xdf_c00126{left:491.866667pt;}
.x116_c00126{left:495.066667pt;}
.xd2_c00126{left:496.000000pt;}
.xfa_c00126{left:497.200000pt;}
.x95_c00126{left:498.133333pt;}
.xdd_c00126{left:499.600000pt;}
.x107_c00126{left:503.066667pt;}
.xa2_c00126{left:504.533333pt;}
.xb5_c00126{left:506.666667pt;}
.x10c_c00126{left:507.866667pt;}
.x11d_c00126{left:510.266667pt;}
.xab_c00126{left:511.333333pt;}
.xb0_c00126{left:512.533333pt;}
.xa3_c00126{left:516.666667pt;}
.xd3_c00126{left:518.666667pt;}
.xcc_c00126{left:521.066667pt;}
.xfb_c00126{left:522.800000pt;}
.x10a_c00126{left:523.733333pt;}
.xbd_c00126{left:525.066667pt;}
.x8f_c00126{left:527.066667pt;}
.xf6_c00126{left:528.533333pt;}
.xac_c00126{left:529.600000pt;}
.xd7_c00126{left:532.133333pt;}
.x105_c00126{left:534.400000pt;}
.xb6_c00126{left:538.000000pt;}
.x10e_c00126{left:540.133333pt;}
.x118_c00126{left:542.533333pt;}
.x10b_c00126{left:544.800000pt;}
.xd8_c00126{left:545.866667pt;}
.x9e_c00126{left:547.200000pt;}
.xc4_c00126{left:549.200000pt;}
.x96_c00126{left:551.200000pt;}
.xcd_c00126{left:552.800000pt;}
.xf7_c00126{left:554.800000pt;}
.xa4_c00126{left:558.000000pt;}
.x108_c00126{left:560.000000pt;}
.xed_c00126{left:561.333333pt;}
.x97_c00126{left:563.333333pt;}
.xc5_c00126{left:564.266667pt;}
.x112_c00126{left:565.600000pt;}
.xe0_c00126{left:567.066667pt;}
.xbe_c00126{left:568.933333pt;}
.xfc_c00126{left:572.400000pt;}
.x101_c00126{left:573.600000pt;}
.x119_c00126{left:576.133333pt;}
.xb7_c00126{left:577.733333pt;}
.xc6_c00126{left:582.533333pt;}
.xbf_c00126{left:583.600000pt;}
.x102_c00126{left:584.533333pt;}
.xb1_c00126{left:585.600000pt;}
.xad_c00126{left:587.200000pt;}
.xb8_c00126{left:588.266667pt;}
.x10f_c00126{left:589.200000pt;}
.xa5_c00126{left:590.666667pt;}
.xce_c00126{left:593.466667pt;}
.x11a_c00126{left:594.400000pt;}
.x10d_c00126{left:596.133333pt;}
.x117_c00126{left:597.866667pt;}
.x11e_c00126{left:598.933333pt;}
.x90_c00126{left:600.000000pt;}
.xe1_c00126{left:601.333333pt;}
.x98_c00126{left:604.000000pt;}
.x103_c00126{left:606.266667pt;}
.x9f_c00126{left:607.733333pt;}
.xa6_c00126{left:611.466667pt;}
.xd9_c00126{left:614.933333pt;}
.xe9_c00126{left:617.066667pt;}
.xa0_c00126{left:620.533333pt;}
.xb9_c00126{left:621.600000pt;}
.x114_c00126{left:622.666667pt;}
.xc7_c00126{left:623.866667pt;}
.xb2_c00126{left:626.266667pt;}
.xff_c00126{left:629.333333pt;}
.xc0_c00126{left:630.266667pt;}
.xe2_c00126{left:633.333333pt;}
.xee_c00126{left:635.200000pt;}
.xfd_c00126{left:641.200000pt;}
.xba_c00126{left:642.133333pt;}
.x11f_c00126{left:643.733333pt;}
.xf8_c00126{left:645.200000pt;}
.xa7_c00126{left:647.333333pt;}
.xe3_c00126{left:648.400000pt;}
.xea_c00126{left:649.333333pt;}
.xf3_c00126{left:652.266667pt;}
.x2_c00126{left:654.133333pt;}
.xe4_c00126{left:655.066667pt;}
.xae_c00126{left:656.666667pt;}
.x106_c00126{left:658.533333pt;}
.x104_c00126{left:660.000000pt;}
.xf0_c00126{left:661.466667pt;}
.x110_c00126{left:664.133333pt;}
.x91_c00126{left:665.333333pt;}
.xf2_c00126{left:666.266667pt;}
.x11b_c00126{left:667.333333pt;}
.x99_c00126{left:668.933333pt;}
.xde_c00126{left:672.400000pt;}
.x113_c00126{left:674.133333pt;}
.xc1_c00126{left:676.000000pt;}
}





/* 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_c00127 {
    display:none;
  }
  .loading-indicator_c00127.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00127 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_c00127 { 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_c00127" -> "#page-container .classname_c00127")
 */
.pf_c00127 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00127 { /* 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_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00127 { /* 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_c00127 { /* 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_c00127 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00127 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00127 {overflow:visible;}
  }
}
.c_c00127 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00127 { /* 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_c00127:after { /* webkit #35443 */
  content: '';
}
.t_c00127:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00127 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 */
}
.__c00127 { /* 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_c00127 { /* info for Javascript */
  display:none;
}
.l_c00127 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00127 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00127 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00127: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_c00127 {
    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_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00127.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_c00127 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00127;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.000000;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;}
.m100_c00127{transform:matrix(0.016750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00127{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m102_c00127{transform:matrix(0.026250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00127{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00127{transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00127{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00127{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00127{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00127{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mda_c00127{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m56_c00127{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00127{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00127{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mec_c00127{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mac_c00127{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.med_c00127{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m55_c00127{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mff_c00127{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m50_c00127{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.me6_c00127{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00127{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m46_c00127{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00127{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00127{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m33_c00127{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00127{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00127{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00127{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00127{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m16_c00127{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m67_c00127{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me5_c00127{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00127{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m83_c00127{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m45_c00127{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m101_c00127{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00127{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m47_c00127{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mad_c00127{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me9_c00127{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m74_c00127{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m43_c00127{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m31_c00127{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00127{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m28_c00127{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00127{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00127{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb_c00127{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m65_c00127{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6_c00127{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00127{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00127{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00127{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m64_c00127{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mde_c00127{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m76_c00127{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md2_c00127{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00127{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m92_c00127{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m12_c00127{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m19_c00127{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00127{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00127{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m24_c00127{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00127{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m26_c00127{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m38_c00127{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00127{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00127{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.maf_c00127{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m34_c00127{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00127{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.maa_c00127{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md4_c00127{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00127{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m4_c00127{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00127{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me2_c00127{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00127{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00127{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00127{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m88_c00127{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00127{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00127{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00127{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00127{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m7_c00127{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m44_c00127{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00127{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m91_c00127{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me1_c00127{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m60_c00127{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00127{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00127{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m63_c00127{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m53_c00127{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m29_c00127{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mae_c00127{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m85_c00127{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m72_c00127{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m94_c00127{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00127{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00127{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mca_c00127{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00127{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00127{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m40_c00127{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m32_c00127{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me_c00127{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m30_c00127{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00127{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00127{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m35_c00127{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00127{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m89_c00127{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00127{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00127{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m10_c00127{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00127{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m93_c00127{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m22_c00127{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m96_c00127{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00127{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00127{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m39_c00127{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m82_c00127{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00127{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m0_c00127{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00127{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m80_c00127{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m77_c00127{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m86_c00127{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00127{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00127{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00127{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m95_c00127{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00127{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m21_c00127{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00127{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc_c00127{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00127{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00127{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m84_c00127{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00127{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mba_c00127{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m68_c00127{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m61_c00127{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m99_c00127{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.md8_c00127{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m90_c00127{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m17_c00127{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00127{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00127{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00127{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m70_c00127{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00127{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m66_c00127{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3_c00127{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m27_c00127{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00127{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m62_c00127{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m75_c00127{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me4_c00127{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00127{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9_c00127{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00127{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00127{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m59_c00127{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00127{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m54_c00127{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m58_c00127{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md9_c00127{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m15_c00127{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00127{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m98_c00127{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.md0_c00127{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00127{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00127{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mab_c00127{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m23_c00127{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m13_c00127{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00127{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m5_c00127{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m18_c00127{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md7_c00127{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00127{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00127{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m71_c00127{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m14_c00127{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me0_c00127{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf_c00127{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m78_c00127{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m79_c00127{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00127{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8_c00127{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00127{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00127{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m57_c00127{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m41_c00127{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00127{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00127{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m49_c00127{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md6_c00127{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m42_c00127{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me3_c00127{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mee_c00127{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00127{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md_c00127{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00127{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mea_c00127{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m81_c00127{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00127{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00127{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m25_c00127{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.ma_c00127{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m20_c00127{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00127{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00127{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md1_c00127{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.md5_c00127{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00127{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00127{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mef_c00127{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m11_c00127{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00127{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m36_c00127{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mce_c00127{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00127{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00127{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m52_c00127{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md3_c00127{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.me8_c00127{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m48_c00127{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00127{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00127{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00127{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m37_c00127{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00127{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00127{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00127{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m2_c00127{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00127{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00127{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m73_c00127{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00127{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m51_c00127{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.me7_c00127{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m97_c00127{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00127{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00127{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m87_c00127{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00127{transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00127{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00127{transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);}
.meb_c00127{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00127{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00127{transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00127{transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls0_c00127{letter-spacing:0.000000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{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__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00127{word-spacing:-6.821656px;}
.ws2_c00127{word-spacing:-6.163324px;}
.ws7_c00127{word-spacing:0.000000px;}
.ws4_c00127{word-spacing:0.138889px;}
.ws3_c00127{word-spacing:1.250000px;}
.ws5_c00127{word-spacing:9.560137px;}
.ws0_c00127{word-spacing:25.714286px;}
.ws1_c00127{word-spacing:66.315789px;}
.fc0_c00127{color:transparent;}
.fs6_c00127{font-size:24.000000px;}
.fs7_c00127{font-size:30.000000px;}
.fs8_c00127{font-size:36.000000px;}
.fs4_c00127{font-size:48.000000px;}
.fs5_c00127{font-size:54.000000px;}
.fs1_c00127{font-size:60.000000px;}
.fs2_c00127{font-size:66.000000px;}
.fs3_c00127{font-size:72.000000px;}
.fs0_c00127{font-size:84.000000px;}
.y0_c00127{bottom:0.000000px;}
.y64_c00127{bottom:177.900000px;}
.y32_c00127{bottom:191.550000px;}
.y63_c00127{bottom:195.900000px;}
.y31_c00127{bottom:207.300000px;}
.y62_c00127{bottom:218.850000px;}
.y30_c00127{bottom:222.000000px;}
.y2f_c00127{bottom:236.100000px;}
.y61_c00127{bottom:236.850000px;}
.y60_c00127{bottom:254.400000px;}
.y5f_c00127{bottom:272.400000px;}
.y67_c00127{bottom:273.300000px;}
.y2e_c00127{bottom:273.600000px;}
.y5e_c00127{bottom:290.100000px;}
.y2d_c00127{bottom:291.300000px;}
.y5d_c00127{bottom:308.100000px;}
.y2c_c00127{bottom:309.600000px;}
.y5c_c00127{bottom:325.800000px;}
.y2b_c00127{bottom:335.850000px;}
.y5b_c00127{bottom:343.800000px;}
.y5a_c00127{bottom:361.500000px;}
.y2a_c00127{bottom:366.450000px;}
.y59_c00127{bottom:379.500000px;}
.y29_c00127{bottom:384.450000px;}
.y58_c00127{bottom:397.500000px;}
.y28_c00127{bottom:406.050000px;}
.y57_c00127{bottom:423.000000px;}
.y27_c00127{bottom:427.650000px;}
.y56_c00127{bottom:437.700000px;}
.y26_c00127{bottom:447.000000px;}
.y55_c00127{bottom:451.800000px;}
.y54_c00127{bottom:464.400000px;}
.y25_c00127{bottom:465.000000px;}
.y53_c00127{bottom:479.550000px;}
.y24_c00127{bottom:482.700000px;}
.y52_c00127{bottom:497.550000px;}
.y23_c00127{bottom:500.700000px;}
.y22_c00127{bottom:518.700000px;}
.y51_c00127{bottom:524.100000px;}
.y21_c00127{bottom:536.400000px;}
.y50_c00127{bottom:541.800000px;}
.y20_c00127{bottom:554.400000px;}
.y4f_c00127{bottom:559.800000px;}
.y1f_c00127{bottom:572.100000px;}
.y4e_c00127{bottom:582.150000px;}
.y1e_c00127{bottom:590.100000px;}
.y4d_c00127{bottom:599.400000px;}
.y1d_c00127{bottom:607.800000px;}
.y1c_c00127{bottom:625.800000px;}
.y4c_c00127{bottom:635.400000px;}
.y1b_c00127{bottom:643.800000px;}
.y4b_c00127{bottom:658.050000px;}
.y1a_c00127{bottom:661.500000px;}
.y66_c00127{bottom:664.500000px;}
.y4a_c00127{bottom:676.050000px;}
.y19_c00127{bottom:679.500000px;}
.y18_c00127{bottom:697.200000px;}
.y49_c00127{bottom:698.100000px;}
.y17_c00127{bottom:715.200000px;}
.y48_c00127{bottom:719.700000px;}
.y16_c00127{bottom:732.900000px;}
.y47_c00127{bottom:738.000000px;}
.y15_c00127{bottom:750.900000px;}
.y46_c00127{bottom:759.900000px;}
.y14_c00127{bottom:772.650000px;}
.y45_c00127{bottom:781.500000px;}
.y13_c00127{bottom:785.550000px;}
.y12_c00127{bottom:799.950000px;}
.y44_c00127{bottom:803.850000px;}
.y11_c00127{bottom:816.150000px;}
.y43_c00127{bottom:821.550000px;}
.y10_c00127{bottom:834.750000px;}
.y65_c00127{bottom:835.500000px;}
.y42_c00127{bottom:843.450000px;}
.yf_c00127{bottom:852.450000px;}
.y41_c00127{bottom:861.450000px;}
.ye_c00127{bottom:874.500000px;}
.y40_c00127{bottom:883.500000px;}
.yd_c00127{bottom:892.800000px;}
.y3f_c00127{bottom:905.700000px;}
.yc_c00127{bottom:910.500000px;}
.y3e_c00127{bottom:923.400000px;}
.yb_c00127{bottom:931.650000px;}
.y3d_c00127{bottom:945.300000px;}
.ya_c00127{bottom:949.650000px;}
.y3c_c00127{bottom:967.650000px;}
.y9_c00127{bottom:980.700000px;}
.y3b_c00127{bottom:985.350000px;}
.y3a_c00127{bottom:1007.250000px;}
.y8_c00127{bottom:1011.300000px;}
.y7_c00127{bottom:1029.300000px;}
.y39_c00127{bottom:1029.600000px;}
.y38_c00127{bottom:1047.600000px;}
.y6_c00127{bottom:1050.750000px;}
.y37_c00127{bottom:1065.300000px;}
.y5_c00127{bottom:1068.450000px;}
.y36_c00127{bottom:1081.800000px;}
.y4_c00127{bottom:1086.450000px;}
.y35_c00127{bottom:1092.300000px;}
.y3_c00127{bottom:1104.450000px;}
.y34_c00127{bottom:1110.600000px;}
.y33_c00127{bottom:1121.100000px;}
.y2_c00127{bottom:1122.150000px;}
.y1_c00127{bottom:1147.650000px;}
.h8_c00127{height:24.000000px;}
.h9_c00127{height:30.000000px;}
.ha_c00127{height:36.000000px;}
.h6_c00127{height:48.000000px;}
.h7_c00127{height:54.000000px;}
.h3_c00127{height:60.000000px;}
.h4_c00127{height:66.000000px;}
.h5_c00127{height:72.000000px;}
.h2_c00127{height:84.000000px;}
.h1_c00127{height:1270.500000px;}
.h0_c00127{height:1270.799927px;}
.w1_c00127{width:953.250000px;}
.w0_c00127{width:953.280030px;}
.x0_c00127{left:0.000000px;}
.x47_c00127{left:175.350000px;}
.x8e_c00127{left:176.400000px;}
.x3_c00127{left:177.900000px;}
.x33_c00127{left:179.250000px;}
.x1_c00127{left:180.300000px;}
.x53_c00127{left:189.450000px;}
.x8f_c00127{left:190.800000px;}
.x37_c00127{left:192.600000px;}
.x29_c00127{left:194.250000px;}
.xf_c00127{left:195.450000px;}
.x57_c00127{left:204.300000px;}
.x2c_c00127{left:205.500000px;}
.x45_c00127{left:210.900000px;}
.x85_c00127{left:212.100000px;}
.x38_c00127{left:214.200000px;}
.x79_c00127{left:215.850000px;}
.x73_c00127{left:217.500000px;}
.x17_c00127{left:219.000000px;}
.x66_c00127{left:223.050000px;}
.x6c_c00127{left:226.800000px;}
.x4d_c00127{left:229.500000px;}
.x2d_c00127{left:232.500000px;}
.x4e_c00127{left:234.600000px;}
.x4_c00127{left:235.800000px;}
.x3e_c00127{left:237.000000px;}
.x23_c00127{left:243.750000px;}
.x10_c00127{left:245.100000px;}
.x18_c00127{left:246.300000px;}
.x1d_c00127{left:247.800000px;}
.x74_c00127{left:248.850000px;}
.x94_c00127{left:251.100000px;}
.x7a_c00127{left:252.900000px;}
.x6d_c00127{left:254.850000px;}
.x39_c00127{left:256.350000px;}
.x5c_c00127{left:261.750000px;}
.x34_c00127{left:264.150000px;}
.x5_c00127{left:267.900000px;}
.x69_c00127{left:269.100000px;}
.x1e_c00127{left:270.150000px;}
.x90_c00127{left:271.800000px;}
.x75_c00127{left:273.000000px;}
.x4f_c00127{left:276.000000px;}
.x67_c00127{left:277.050000px;}
.x46_c00127{left:278.550000px;}
.x24_c00127{left:279.750000px;}
.x48_c00127{left:283.350000px;}
.x88_c00127{left:286.650000px;}
.x58_c00127{left:287.850000px;}
.x19_c00127{left:289.500000px;}
.x6_c00127{left:290.550000px;}
.x3f_c00127{left:292.050000px;}
.x76_c00127{left:293.850000px;}
.x2e_c00127{left:295.200000px;}
.x84_c00127{left:296.850000px;}
.x25_c00127{left:299.550000px;}
.x5d_c00127{left:302.100000px;}
.x59_c00127{left:303.300000px;}
.x3a_c00127{left:305.250000px;}
.x1f_c00127{left:307.650000px;}
.x11_c00127{left:309.600000px;}
.x7_c00127{left:311.100000px;}
.x1a_c00127{left:312.150000px;}
.x7d_c00127{left:315.750000px;}
.x86_c00127{left:320.100000px;}
.x82_c00127{left:321.600000px;}
.x70_c00127{left:325.800000px;}
.x2a_c00127{left:328.800000px;}
.x40_c00127{left:332.700000px;}
.x63_c00127{left:335.400000px;}
.x3b_c00127{left:339.450000px;}
.x26_c00127{left:341.700000px;}
.x61_c00127{left:343.350000px;}
.x5e_c00127{left:346.050000px;}
.x2b_c00127{left:348.600000px;}
.x1b_c00127{left:350.700000px;}
.x8_c00127{left:351.750000px;}
.x8b_c00127{left:353.250000px;}
.x5f_c00127{left:356.850000px;}
.x12_c00127{left:358.200000px;}
.x49_c00127{left:359.700000px;}
.x35_c00127{left:361.050000px;}
.x5a_c00127{left:364.050000px;}
.x2f_c00127{left:366.900000px;}
.x9_c00127{left:369.000000px;}
.x5b_c00127{left:370.200000px;}
.x92_c00127{left:371.250000px;}
.x41_c00127{left:372.600000px;}
.x77_c00127{left:374.100000px;}
.x8c_c00127{left:375.150000px;}
.x20_c00127{left:377.100000px;}
.x13_c00127{left:380.100000px;}
.x62_c00127{left:382.200000px;}
.x80_c00127{left:383.850000px;}
.x4a_c00127{left:387.450000px;}
.xa_c00127{left:389.100000px;}
.x8d_c00127{left:390.900000px;}
.x6e_c00127{left:394.050000px;}
.x78_c00127{left:397.200000px;}
.x83_c00127{left:399.750000px;}
.x1c_c00127{left:401.100000px;}
.x14_c00127{left:403.200000px;}
.x64_c00127{left:404.550000px;}
.x27_c00127{left:408.600000px;}
.x3c_c00127{left:412.200000px;}
.x68_c00127{left:414.150000px;}
.x30_c00127{left:415.500000px;}
.x60_c00127{left:416.550000px;}
.x42_c00127{left:418.650000px;}
.xb_c00127{left:421.200000px;}
.x28_c00127{left:423.300000px;}
.x2_c00127{left:424.350000px;}
.x7b_c00127{left:427.200000px;}
.x21_c00127{left:429.000000px;}
.x93_c00127{left:430.050000px;}
.x50_c00127{left:432.150000px;}
.x7e_c00127{left:436.950000px;}
.x6a_c00127{left:438.600000px;}
.x54_c00127{left:439.950000px;}
.x31_c00127{left:442.200000px;}
.x89_c00127{left:444.000000px;}
.x15_c00127{left:446.400000px;}
.xc_c00127{left:450.300000px;}
.x43_c00127{left:452.100000px;}
.x71_c00127{left:456.150000px;}
.x32_c00127{left:457.350000px;}
.x36_c00127{left:460.050000px;}
.x51_c00127{left:462.750000px;}
.x16_c00127{left:464.100000px;}
.x95_c00127{left:466.200000px;}
.xd_c00127{left:467.250000px;}
.x55_c00127{left:469.800000px;}
.x7f_c00127{left:472.950000px;}
.x7c_c00127{left:474.750000px;}
.x72_c00127{left:476.700000px;}
.x3d_c00127{left:478.500000px;}
.x6f_c00127{left:480.450000px;}
.x4b_c00127{left:481.500000px;}
.x65_c00127{left:483.000000px;}
.x6b_c00127{left:485.700000px;}
.x87_c00127{left:489.000000px;}
.x8a_c00127{left:490.650000px;}
.x22_c00127{left:492.300000px;}
.x44_c00127{left:493.500000px;}
.x91_c00127{left:494.700000px;}
.x52_c00127{left:496.200000px;}
.x56_c00127{left:497.400000px;}
.xe_c00127{left:498.600000px;}
.x81_c00127{left:499.800000px;}
.x4c_c00127{left:501.300000px;}
.xda_c00127{left:531.000000px;}
.xe1_c00127{left:532.800000px;}
.x96_c00127{left:535.350000px;}
.x11d_c00127{left:544.350000px;}
.xdc_c00127{left:548.400000px;}
.xc9_c00127{left:550.500000px;}
.xb6_c00127{left:551.850000px;}
.xa0_c00127{left:553.500000px;}
.xfa_c00127{left:559.800000px;}
.xe7_c00127{left:566.700000px;}
.xd4_c00127{left:567.750000px;}
.xb1_c00127{left:569.100000px;}
.xa4_c00127{left:570.600000px;}
.xe2_c00127{left:572.700000px;}
.xbf_c00127{left:575.400000px;}
.x108_c00127{left:576.600000px;}
.x11e_c00127{left:580.050000px;}
.x97_c00127{left:581.850000px;}
.x121_c00127{left:582.900000px;}
.x119_c00127{left:584.550000px;}
.xf0_c00127{left:586.500000px;}
.xa8_c00127{left:588.300000px;}
.xd2_c00127{left:590.850000px;}
.xc0_c00127{left:591.900000px;}
.xdb_c00127{left:594.750000px;}
.xde_c00127{left:600.150000px;}
.x11f_c00127{left:603.150000px;}
.xbb_c00127{left:604.800000px;}
.xa9_c00127{left:607.050000px;}
.xe3_c00127{left:609.450000px;}
.xc2_c00127{left:611.700000px;}
.x105_c00127{left:614.250000px;}
.xd3_c00127{left:615.600000px;}
.xa1_c00127{left:617.250000px;}
.xd8_c00127{left:618.450000px;}
.xfe_c00127{left:619.500000px;}
.xc1_c00127{left:624.900000px;}
.xaf_c00127{left:626.550000px;}
.xe8_c00127{left:627.900000px;}
.xdf_c00127{left:629.700000px;}
.x122_c00127{left:631.950000px;}
.xa5_c00127{left:633.900000px;}
.xcc_c00127{left:637.950000px;}
.xbc_c00127{left:639.750000px;}
.xd9_c00127{left:642.150000px;}
.x10a_c00127{left:645.000000px;}
.xd6_c00127{left:646.500000px;}
.xe9_c00127{left:648.750000px;}
.x98_c00127{left:649.950000px;}
.xaa_c00127{left:651.000000px;}
.x114_c00127{left:652.200000px;}
.xa2_c00127{left:653.250000px;}
.xca_c00127{left:654.300000px;}
.xdd_c00127{left:656.100000px;}
.xb0_c00127{left:657.150000px;}
.xab_c00127{left:660.000000px;}
.xb7_c00127{left:661.950000px;}
.x115_c00127{left:669.150000px;}
.xcd_c00127{left:674.700000px;}
.xac_c00127{left:676.200000px;}
.xc3_c00127{left:677.550000px;}
.xb8_c00127{left:679.650000px;}
.xa3_c00127{left:681.300000px;}
.xf1_c00127{left:682.650000px;}
.x111_c00127{left:686.400000px;}
.x101_c00127{left:687.750000px;}
.x106_c00127{left:689.550000px;}
.xea_c00127{left:693.000000px;}
.xf8_c00127{left:694.200000px;}
.xce_c00127{left:695.550000px;}
.xcb_c00127{left:699.600000px;}
.xe0_c00127{left:700.650000px;}
.x10d_c00127{left:704.700000px;}
.xbd_c00127{left:706.350000px;}
.xeb_c00127{left:708.900000px;}
.xb9_c00127{left:710.550000px;}
.xb2_c00127{left:711.600000px;}
.xa6_c00127{left:713.400000px;}
.xc4_c00127{left:714.600000px;}
.x11a_c00127{left:717.750000px;}
.x99_c00127{left:719.400000px;}
.xc5_c00127{left:723.600000px;}
.xd5_c00127{left:727.200000px;}
.xa7_c00127{left:728.550000px;}
.x10e_c00127{left:729.900000px;}
.xf4_c00127{left:732.000000px;}
.xec_c00127{left:734.850000px;}
.xe4_c00127{left:737.250000px;}
.x116_c00127{left:738.300000px;}
.x112_c00127{left:739.350000px;}
.xc6_c00127{left:741.300000px;}
.x102_c00127{left:742.500000px;}
.xff_c00127{left:747.300000px;}
.xcf_c00127{left:751.050000px;}
.x103_c00127{left:752.250000px;}
.x113_c00127{left:754.800000px;}
.xb3_c00127{left:757.650000px;}
.x9a_c00127{left:760.500000px;}
.xed_c00127{left:762.150000px;}
.xad_c00127{left:764.100000px;}
.x100_c00127{left:767.850000px;}
.x107_c00127{left:769.500000px;}
.xf2_c00127{left:772.650000px;}
.x109_c00127{left:777.450000px;}
.x104_c00127{left:779.550000px;}
.xb4_c00127{left:780.750000px;}
.xbe_c00127{left:781.950000px;}
.x9b_c00127{left:785.400000px;}
.x120_c00127{left:786.750000px;}
.xf5_c00127{left:788.100000px;}
.x10b_c00127{left:789.300000px;}
.x10f_c00127{left:793.200000px;}
.xfc_c00127{left:795.000000px;}
.xba_c00127{left:796.950000px;}
.x123_c00127{left:798.600000px;}
.x117_c00127{left:800.550000px;}
.xd0_c00127{left:802.500000px;}
.xe5_c00127{left:805.350000px;}
.x11b_c00127{left:807.000000px;}
.xc7_c00127{left:808.200000px;}
.xd7_c00127{left:811.050000px;}
.x110_c00127{left:813.000000px;}
.x118_c00127{left:816.750000px;}
.xae_c00127{left:818.100000px;}
.xd1_c00127{left:822.300000px;}
.xfd_c00127{left:823.800000px;}
.xf9_c00127{left:824.850000px;}
.xee_c00127{left:828.450000px;}
.x10c_c00127{left:832.800000px;}
.x9c_c00127{left:834.000000px;}
.x9d_c00127{left:835.050000px;}
.x124_c00127{left:837.900000px;}
.xc8_c00127{left:839.550000px;}
.x9e_c00127{left:843.000000px;}
.xef_c00127{left:845.700000px;}
.xf3_c00127{left:847.950000px;}
.xf7_c00127{left:852.000000px;}
.xfb_c00127{left:853.350000px;}
.xf6_c00127{left:855.000000px;}
.x9f_c00127{left:858.450000px;}
.x11c_c00127{left:862.500000px;}
.xb5_c00127{left:864.300000px;}
.xe6_c00127{left:878.400000px;}
.x128_c00127{left:940.050000px;}
.x127_c00127{left:941.100000px;}
.x126_c00127{left:943.950000px;}
.x125_c00127{left:949.350000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ws6_c00127{word-spacing:-6.063694pt;}
.ws2_c00127{word-spacing:-5.478510pt;}
.ws7_c00127{word-spacing:0.000000pt;}
.ws4_c00127{word-spacing:0.123457pt;}
.ws3_c00127{word-spacing:1.111111pt;}
.ws5_c00127{word-spacing:8.497900pt;}
.ws0_c00127{word-spacing:22.857143pt;}
.ws1_c00127{word-spacing:58.947368pt;}
.fs6_c00127{font-size:21.333333pt;}
.fs7_c00127{font-size:26.666667pt;}
.fs8_c00127{font-size:32.000000pt;}
.fs4_c00127{font-size:42.666667pt;}
.fs5_c00127{font-size:48.000000pt;}
.fs1_c00127{font-size:53.333333pt;}
.fs2_c00127{font-size:58.666667pt;}
.fs3_c00127{font-size:64.000000pt;}
.fs0_c00127{font-size:74.666667pt;}
.y0_c00127{bottom:0.000000pt;}
.y64_c00127{bottom:158.133333pt;}
.y32_c00127{bottom:170.266667pt;}
.y63_c00127{bottom:174.133333pt;}
.y31_c00127{bottom:184.266667pt;}
.y62_c00127{bottom:194.533333pt;}
.y30_c00127{bottom:197.333333pt;}
.y2f_c00127{bottom:209.866667pt;}
.y61_c00127{bottom:210.533333pt;}
.y60_c00127{bottom:226.133333pt;}
.y5f_c00127{bottom:242.133333pt;}
.y67_c00127{bottom:242.933333pt;}
.y2e_c00127{bottom:243.200000pt;}
.y5e_c00127{bottom:257.866667pt;}
.y2d_c00127{bottom:258.933333pt;}
.y5d_c00127{bottom:273.866667pt;}
.y2c_c00127{bottom:275.200000pt;}
.y5c_c00127{bottom:289.600000pt;}
.y2b_c00127{bottom:298.533333pt;}
.y5b_c00127{bottom:305.600000pt;}
.y5a_c00127{bottom:321.333333pt;}
.y2a_c00127{bottom:325.733333pt;}
.y59_c00127{bottom:337.333333pt;}
.y29_c00127{bottom:341.733333pt;}
.y58_c00127{bottom:353.333333pt;}
.y28_c00127{bottom:360.933333pt;}
.y57_c00127{bottom:376.000000pt;}
.y27_c00127{bottom:380.133333pt;}
.y56_c00127{bottom:389.066667pt;}
.y26_c00127{bottom:397.333333pt;}
.y55_c00127{bottom:401.600000pt;}
.y54_c00127{bottom:412.800000pt;}
.y25_c00127{bottom:413.333333pt;}
.y53_c00127{bottom:426.266667pt;}
.y24_c00127{bottom:429.066667pt;}
.y52_c00127{bottom:442.266667pt;}
.y23_c00127{bottom:445.066667pt;}
.y22_c00127{bottom:461.066667pt;}
.y51_c00127{bottom:465.866667pt;}
.y21_c00127{bottom:476.800000pt;}
.y50_c00127{bottom:481.600000pt;}
.y20_c00127{bottom:492.800000pt;}
.y4f_c00127{bottom:497.600000pt;}
.y1f_c00127{bottom:508.533333pt;}
.y4e_c00127{bottom:517.466667pt;}
.y1e_c00127{bottom:524.533333pt;}
.y4d_c00127{bottom:532.800000pt;}
.y1d_c00127{bottom:540.266667pt;}
.y1c_c00127{bottom:556.266667pt;}
.y4c_c00127{bottom:564.800000pt;}
.y1b_c00127{bottom:572.266667pt;}
.y4b_c00127{bottom:584.933333pt;}
.y1a_c00127{bottom:588.000000pt;}
.y66_c00127{bottom:590.666667pt;}
.y4a_c00127{bottom:600.933333pt;}
.y19_c00127{bottom:604.000000pt;}
.y18_c00127{bottom:619.733333pt;}
.y49_c00127{bottom:620.533333pt;}
.y17_c00127{bottom:635.733333pt;}
.y48_c00127{bottom:639.733333pt;}
.y16_c00127{bottom:651.466667pt;}
.y47_c00127{bottom:656.000000pt;}
.y15_c00127{bottom:667.466667pt;}
.y46_c00127{bottom:675.466667pt;}
.y14_c00127{bottom:686.800000pt;}
.y45_c00127{bottom:694.666667pt;}
.y13_c00127{bottom:698.266667pt;}
.y12_c00127{bottom:711.066667pt;}
.y44_c00127{bottom:714.533333pt;}
.y11_c00127{bottom:725.466667pt;}
.y43_c00127{bottom:730.266667pt;}
.y10_c00127{bottom:742.000000pt;}
.y65_c00127{bottom:742.666667pt;}
.y42_c00127{bottom:749.733333pt;}
.yf_c00127{bottom:757.733333pt;}
.y41_c00127{bottom:765.733333pt;}
.ye_c00127{bottom:777.333333pt;}
.y40_c00127{bottom:785.333333pt;}
.yd_c00127{bottom:793.600000pt;}
.y3f_c00127{bottom:805.066667pt;}
.yc_c00127{bottom:809.333333pt;}
.y3e_c00127{bottom:820.800000pt;}
.yb_c00127{bottom:828.133333pt;}
.y3d_c00127{bottom:840.266667pt;}
.ya_c00127{bottom:844.133333pt;}
.y3c_c00127{bottom:860.133333pt;}
.y9_c00127{bottom:871.733333pt;}
.y3b_c00127{bottom:875.866667pt;}
.y3a_c00127{bottom:895.333333pt;}
.y8_c00127{bottom:898.933333pt;}
.y7_c00127{bottom:914.933333pt;}
.y39_c00127{bottom:915.200000pt;}
.y38_c00127{bottom:931.200000pt;}
.y6_c00127{bottom:934.000000pt;}
.y37_c00127{bottom:946.933333pt;}
.y5_c00127{bottom:949.733333pt;}
.y36_c00127{bottom:961.600000pt;}
.y4_c00127{bottom:965.733333pt;}
.y35_c00127{bottom:970.933333pt;}
.y3_c00127{bottom:981.733333pt;}
.y34_c00127{bottom:987.200000pt;}
.y33_c00127{bottom:996.533333pt;}
.y2_c00127{bottom:997.466667pt;}
.y1_c00127{bottom:1020.133333pt;}
.h8_c00127{height:21.333333pt;}
.h9_c00127{height:26.666667pt;}
.ha_c00127{height:32.000000pt;}
.h6_c00127{height:42.666667pt;}
.h7_c00127{height:48.000000pt;}
.h3_c00127{height:53.333333pt;}
.h4_c00127{height:58.666667pt;}
.h5_c00127{height:64.000000pt;}
.h2_c00127{height:74.666667pt;}
.h1_c00127{height:1129.333333pt;}
.h0_c00127{height:1129.599935pt;}
.w1_c00127{width:847.333333pt;}
.w0_c00127{width:847.360027pt;}
.x0_c00127{left:0.000000pt;}
.x47_c00127{left:155.866667pt;}
.x8e_c00127{left:156.800000pt;}
.x3_c00127{left:158.133333pt;}
.x33_c00127{left:159.333333pt;}
.x1_c00127{left:160.266667pt;}
.x53_c00127{left:168.400000pt;}
.x8f_c00127{left:169.600000pt;}
.x37_c00127{left:171.200000pt;}
.x29_c00127{left:172.666667pt;}
.xf_c00127{left:173.733333pt;}
.x57_c00127{left:181.600000pt;}
.x2c_c00127{left:182.666667pt;}
.x45_c00127{left:187.466667pt;}
.x85_c00127{left:188.533333pt;}
.x38_c00127{left:190.400000pt;}
.x79_c00127{left:191.866667pt;}
.x73_c00127{left:193.333333pt;}
.x17_c00127{left:194.666667pt;}
.x66_c00127{left:198.266667pt;}
.x6c_c00127{left:201.600000pt;}
.x4d_c00127{left:204.000000pt;}
.x2d_c00127{left:206.666667pt;}
.x4e_c00127{left:208.533333pt;}
.x4_c00127{left:209.600000pt;}
.x3e_c00127{left:210.666667pt;}
.x23_c00127{left:216.666667pt;}
.x10_c00127{left:217.866667pt;}
.x18_c00127{left:218.933333pt;}
.x1d_c00127{left:220.266667pt;}
.x74_c00127{left:221.200000pt;}
.x94_c00127{left:223.200000pt;}
.x7a_c00127{left:224.800000pt;}
.x6d_c00127{left:226.533333pt;}
.x39_c00127{left:227.866667pt;}
.x5c_c00127{left:232.666667pt;}
.x34_c00127{left:234.800000pt;}
.x5_c00127{left:238.133333pt;}
.x69_c00127{left:239.200000pt;}
.x1e_c00127{left:240.133333pt;}
.x90_c00127{left:241.600000pt;}
.x75_c00127{left:242.666667pt;}
.x4f_c00127{left:245.333333pt;}
.x67_c00127{left:246.266667pt;}
.x46_c00127{left:247.600000pt;}
.x24_c00127{left:248.666667pt;}
.x48_c00127{left:251.866667pt;}
.x88_c00127{left:254.800000pt;}
.x58_c00127{left:255.866667pt;}
.x19_c00127{left:257.333333pt;}
.x6_c00127{left:258.266667pt;}
.x3f_c00127{left:259.600000pt;}
.x76_c00127{left:261.200000pt;}
.x2e_c00127{left:262.400000pt;}
.x84_c00127{left:263.866667pt;}
.x25_c00127{left:266.266667pt;}
.x5d_c00127{left:268.533333pt;}
.x59_c00127{left:269.600000pt;}
.x3a_c00127{left:271.333333pt;}
.x1f_c00127{left:273.466667pt;}
.x11_c00127{left:275.200000pt;}
.x7_c00127{left:276.533333pt;}
.x1a_c00127{left:277.466667pt;}
.x7d_c00127{left:280.666667pt;}
.x86_c00127{left:284.533333pt;}
.x82_c00127{left:285.866667pt;}
.x70_c00127{left:289.600000pt;}
.x2a_c00127{left:292.266667pt;}
.x40_c00127{left:295.733333pt;}
.x63_c00127{left:298.133333pt;}
.x3b_c00127{left:301.733333pt;}
.x26_c00127{left:303.733333pt;}
.x61_c00127{left:305.200000pt;}
.x5e_c00127{left:307.600000pt;}
.x2b_c00127{left:309.866667pt;}
.x1b_c00127{left:311.733333pt;}
.x8_c00127{left:312.666667pt;}
.x8b_c00127{left:314.000000pt;}
.x5f_c00127{left:317.200000pt;}
.x12_c00127{left:318.400000pt;}
.x49_c00127{left:319.733333pt;}
.x35_c00127{left:320.933333pt;}
.x5a_c00127{left:323.600000pt;}
.x2f_c00127{left:326.133333pt;}
.x9_c00127{left:328.000000pt;}
.x5b_c00127{left:329.066667pt;}
.x92_c00127{left:330.000000pt;}
.x41_c00127{left:331.200000pt;}
.x77_c00127{left:332.533333pt;}
.x8c_c00127{left:333.466667pt;}
.x20_c00127{left:335.200000pt;}
.x13_c00127{left:337.866667pt;}
.x62_c00127{left:339.733333pt;}
.x80_c00127{left:341.200000pt;}
.x4a_c00127{left:344.400000pt;}
.xa_c00127{left:345.866667pt;}
.x8d_c00127{left:347.466667pt;}
.x6e_c00127{left:350.266667pt;}
.x78_c00127{left:353.066667pt;}
.x83_c00127{left:355.333333pt;}
.x1c_c00127{left:356.533333pt;}
.x14_c00127{left:358.400000pt;}
.x64_c00127{left:359.600000pt;}
.x27_c00127{left:363.200000pt;}
.x3c_c00127{left:366.400000pt;}
.x68_c00127{left:368.133333pt;}
.x30_c00127{left:369.333333pt;}
.x60_c00127{left:370.266667pt;}
.x42_c00127{left:372.133333pt;}
.xb_c00127{left:374.400000pt;}
.x28_c00127{left:376.266667pt;}
.x2_c00127{left:377.200000pt;}
.x7b_c00127{left:379.733333pt;}
.x21_c00127{left:381.333333pt;}
.x93_c00127{left:382.266667pt;}
.x50_c00127{left:384.133333pt;}
.x7e_c00127{left:388.400000pt;}
.x6a_c00127{left:389.866667pt;}
.x54_c00127{left:391.066667pt;}
.x31_c00127{left:393.066667pt;}
.x89_c00127{left:394.666667pt;}
.x15_c00127{left:396.800000pt;}
.xc_c00127{left:400.266667pt;}
.x43_c00127{left:401.866667pt;}
.x71_c00127{left:405.466667pt;}
.x32_c00127{left:406.533333pt;}
.x36_c00127{left:408.933333pt;}
.x51_c00127{left:411.333333pt;}
.x16_c00127{left:412.533333pt;}
.x95_c00127{left:414.400000pt;}
.xd_c00127{left:415.333333pt;}
.x55_c00127{left:417.600000pt;}
.x7f_c00127{left:420.400000pt;}
.x7c_c00127{left:422.000000pt;}
.x72_c00127{left:423.733333pt;}
.x3d_c00127{left:425.333333pt;}
.x6f_c00127{left:427.066667pt;}
.x4b_c00127{left:428.000000pt;}
.x65_c00127{left:429.333333pt;}
.x6b_c00127{left:431.733333pt;}
.x87_c00127{left:434.666667pt;}
.x8a_c00127{left:436.133333pt;}
.x22_c00127{left:437.600000pt;}
.x44_c00127{left:438.666667pt;}
.x91_c00127{left:439.733333pt;}
.x52_c00127{left:441.066667pt;}
.x56_c00127{left:442.133333pt;}
.xe_c00127{left:443.200000pt;}
.x81_c00127{left:444.266667pt;}
.x4c_c00127{left:445.600000pt;}
.xda_c00127{left:472.000000pt;}
.xe1_c00127{left:473.600000pt;}
.x96_c00127{left:475.866667pt;}
.x11d_c00127{left:483.866667pt;}
.xdc_c00127{left:487.466667pt;}
.xc9_c00127{left:489.333333pt;}
.xb6_c00127{left:490.533333pt;}
.xa0_c00127{left:492.000000pt;}
.xfa_c00127{left:497.600000pt;}
.xe7_c00127{left:503.733333pt;}
.xd4_c00127{left:504.666667pt;}
.xb1_c00127{left:505.866667pt;}
.xa4_c00127{left:507.200000pt;}
.xe2_c00127{left:509.066667pt;}
.xbf_c00127{left:511.466667pt;}
.x108_c00127{left:512.533333pt;}
.x11e_c00127{left:515.600000pt;}
.x97_c00127{left:517.200000pt;}
.x121_c00127{left:518.133333pt;}
.x119_c00127{left:519.600000pt;}
.xf0_c00127{left:521.333333pt;}
.xa8_c00127{left:522.933333pt;}
.xd2_c00127{left:525.200000pt;}
.xc0_c00127{left:526.133333pt;}
.xdb_c00127{left:528.666667pt;}
.xde_c00127{left:533.466667pt;}
.x11f_c00127{left:536.133333pt;}
.xbb_c00127{left:537.600000pt;}
.xa9_c00127{left:539.600000pt;}
.xe3_c00127{left:541.733333pt;}
.xc2_c00127{left:543.733333pt;}
.x105_c00127{left:546.000000pt;}
.xd3_c00127{left:547.200000pt;}
.xa1_c00127{left:548.666667pt;}
.xd8_c00127{left:549.733333pt;}
.xfe_c00127{left:550.666667pt;}
.xc1_c00127{left:555.466667pt;}
.xaf_c00127{left:556.933333pt;}
.xe8_c00127{left:558.133333pt;}
.xdf_c00127{left:559.733333pt;}
.x122_c00127{left:561.733333pt;}
.xa5_c00127{left:563.466667pt;}
.xcc_c00127{left:567.066667pt;}
.xbc_c00127{left:568.666667pt;}
.xd9_c00127{left:570.800000pt;}
.x10a_c00127{left:573.333333pt;}
.xd6_c00127{left:574.666667pt;}
.xe9_c00127{left:576.666667pt;}
.x98_c00127{left:577.733333pt;}
.xaa_c00127{left:578.666667pt;}
.x114_c00127{left:579.733333pt;}
.xa2_c00127{left:580.666667pt;}
.xca_c00127{left:581.600000pt;}
.xdd_c00127{left:583.200000pt;}
.xb0_c00127{left:584.133333pt;}
.xab_c00127{left:586.666667pt;}
.xb7_c00127{left:588.400000pt;}
.x115_c00127{left:594.800000pt;}
.xcd_c00127{left:599.733333pt;}
.xac_c00127{left:601.066667pt;}
.xc3_c00127{left:602.266667pt;}
.xb8_c00127{left:604.133333pt;}
.xa3_c00127{left:605.600000pt;}
.xf1_c00127{left:606.800000pt;}
.x111_c00127{left:610.133333pt;}
.x101_c00127{left:611.333333pt;}
.x106_c00127{left:612.933333pt;}
.xea_c00127{left:616.000000pt;}
.xf8_c00127{left:617.066667pt;}
.xce_c00127{left:618.266667pt;}
.xcb_c00127{left:621.866667pt;}
.xe0_c00127{left:622.800000pt;}
.x10d_c00127{left:626.400000pt;}
.xbd_c00127{left:627.866667pt;}
.xeb_c00127{left:630.133333pt;}
.xb9_c00127{left:631.600000pt;}
.xb2_c00127{left:632.533333pt;}
.xa6_c00127{left:634.133333pt;}
.xc4_c00127{left:635.200000pt;}
.x11a_c00127{left:638.000000pt;}
.x99_c00127{left:639.466667pt;}
.xc5_c00127{left:643.200000pt;}
.xd5_c00127{left:646.400000pt;}
.xa7_c00127{left:647.600000pt;}
.x10e_c00127{left:648.800000pt;}
.xf4_c00127{left:650.666667pt;}
.xec_c00127{left:653.200000pt;}
.xe4_c00127{left:655.333333pt;}
.x116_c00127{left:656.266667pt;}
.x112_c00127{left:657.200000pt;}
.xc6_c00127{left:658.933333pt;}
.x102_c00127{left:660.000000pt;}
.xff_c00127{left:664.266667pt;}
.xcf_c00127{left:667.600000pt;}
.x103_c00127{left:668.666667pt;}
.x113_c00127{left:670.933333pt;}
.xb3_c00127{left:673.466667pt;}
.x9a_c00127{left:676.000000pt;}
.xed_c00127{left:677.466667pt;}
.xad_c00127{left:679.200000pt;}
.x100_c00127{left:682.533333pt;}
.x107_c00127{left:684.000000pt;}
.xf2_c00127{left:686.800000pt;}
.x109_c00127{left:691.066667pt;}
.x104_c00127{left:692.933333pt;}
.xb4_c00127{left:694.000000pt;}
.xbe_c00127{left:695.066667pt;}
.x9b_c00127{left:698.133333pt;}
.x120_c00127{left:699.333333pt;}
.xf5_c00127{left:700.533333pt;}
.x10b_c00127{left:701.600000pt;}
.x10f_c00127{left:705.066667pt;}
.xfc_c00127{left:706.666667pt;}
.xba_c00127{left:708.400000pt;}
.x123_c00127{left:709.866667pt;}
.x117_c00127{left:711.600000pt;}
.xd0_c00127{left:713.333333pt;}
.xe5_c00127{left:715.866667pt;}
.x11b_c00127{left:717.333333pt;}
.xc7_c00127{left:718.400000pt;}
.xd7_c00127{left:720.933333pt;}
.x110_c00127{left:722.666667pt;}
.x118_c00127{left:726.000000pt;}
.xae_c00127{left:727.200000pt;}
.xd1_c00127{left:730.933333pt;}
.xfd_c00127{left:732.266667pt;}
.xf9_c00127{left:733.200000pt;}
.xee_c00127{left:736.400000pt;}
.x10c_c00127{left:740.266667pt;}
.x9c_c00127{left:741.333333pt;}
.x9d_c00127{left:742.266667pt;}
.x124_c00127{left:744.800000pt;}
.xc8_c00127{left:746.266667pt;}
.x9e_c00127{left:749.333333pt;}
.xef_c00127{left:751.733333pt;}
.xf3_c00127{left:753.733333pt;}
.xf7_c00127{left:757.333333pt;}
.xfb_c00127{left:758.533333pt;}
.xf6_c00127{left:760.000000pt;}
.x9f_c00127{left:763.066667pt;}
.x11c_c00127{left:766.666667pt;}
.xb5_c00127{left:768.266667pt;}
.xe6_c00127{left:780.800000pt;}
.x128_c00127{left:835.600000pt;}
.x127_c00127{left:836.533333pt;}
.x126_c00127{left:839.066667pt;}
.x125_c00127{left:843.866667pt;}
}





/* 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_c00128 {
    display:none;
  }
  .loading-indicator_c00128.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00128 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_c00128 { 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_c00128" -> "#page-container .classname_c00128")
 */
.pf_c00128 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00128 { /* 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_c00128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00128 { /* 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_c00128 { /* 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_c00128 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00128 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00128 {overflow:visible;}
  }
}
.c_c00128 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00128 { /* 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_c00128:after { /* webkit #35443 */
  content: '';
}
.t_c00128:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00128 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 */
}
.__c00128 { /* 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_c00128 { /* info for Javascript */
  display:none;
}
.l_c00128 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00128 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00128 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00128: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_c00128 {
    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_c00128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00128.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_c00128 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00128;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.000000;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;}
.mc8_c00128{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m39_c00128{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m78_c00128{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00128{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00128{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00128{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m105_c00128{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m68_c00128{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00128{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m44_c00128{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m97_c00128{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00128{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m70_c00128{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m43_c00128{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m59_c00128{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m18_c00128{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00128{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m13_c00128{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00128{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00128{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mb_c00128{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00128{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma_c00128{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00128{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m38_c00128{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m45_c00128{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m90_c00128{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m20_c00128{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m35_c00128{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.md4_c00128{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m111_c00128{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00128{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m16_c00128{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf_c00128{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00128{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00128{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m15_c00128{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me5_c00128{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m42_c00128{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md_c00128{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00128{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m66_c00128{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00128{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00128{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.me_c00128{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m77_c00128{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00128{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00128{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m102_c00128{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mae_c00128{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m106_c00128{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00128{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m51_c00128{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00128{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m27_c00128{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m17_c00128{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mea_c00128{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mde_c00128{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m19_c00128{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00128{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mee_c00128{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00128{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.me6_c00128{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m96_c00128{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00128{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc_c00128{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00128{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00128{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00128{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m74_c00128{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m12_c00128{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00128{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md3_c00128{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00128{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md5_c00128{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me7_c00128{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m65_c00128{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m10_c00128{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m72_c00128{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00128{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m101_c00128{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mca_c00128{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00128{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7_c00128{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md2_c00128{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00128{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00128{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m63_c00128{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me4_c00128{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m11_c00128{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00128{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00128{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00128{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9_c00128{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mad_c00128{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00128{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00128{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00128{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m32_c00128{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m76_c00128{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00128{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mab_c00128{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00128{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m99_c00128{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m53_c00128{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m64_c00128{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00128{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00128{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m67_c00128{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00128{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00128{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m75_c00128{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00128{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00128{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m56_c00128{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00128{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m61_c00128{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md6_c00128{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m60_c00128{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m14_c00128{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m110_c00128{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00128{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m58_c00128{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00128{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m30_c00128{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00128{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m57_c00128{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.maf_c00128{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m91_c00128{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m62_c00128{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m26_c00128{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00128{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00128{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00128{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00128{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00128{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.maa_c00128{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00128{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m22_c00128{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00128{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.meb_c00128{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m80_c00128{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00128{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m34_c00128{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m73_c00128{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00128{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mba_c00128{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m84_c00128{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00128{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00128{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00128{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m52_c00128{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00128{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m94_c00128{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m71_c00128{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.med_c00128{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m49_c00128{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m31_c00128{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m104_c00128{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m87_c00128{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00128{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00128{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m81_c00128{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00128{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00128{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00128{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me0_c00128{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00128{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md0_c00128{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.md1_c00128{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00128{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mff_c00128{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00128{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m37_c00128{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00128{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00128{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00128{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m55_c00128{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m93_c00128{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00128{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m112_c00128{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00128{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00128{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00128{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00128{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mec_c00128{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m8_c00128{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m50_c00128{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00128{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mac_c00128{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00128{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me2_c00128{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00128{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m85_c00128{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00128{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m88_c00128{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md7_c00128{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m113_c00128{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00128{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m23_c00128{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00128{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00128{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me1_c00128{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m29_c00128{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mce_c00128{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00128{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m41_c00128{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m28_c00128{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md9_c00128{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1_c00128{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m36_c00128{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00128{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00128{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me3_c00128{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00128{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md8_c00128{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m100_c00128{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me9_c00128{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00128{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00128{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me8_c00128{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m89_c00128{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m103_c00128{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m40_c00128{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00128{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00128{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00128{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m54_c00128{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m79_c00128{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00128{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00128{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00128{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00128{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m92_c00128{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00128{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m46_c00128{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00128{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6_c00128{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m21_c00128{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m33_c00128{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m86_c00128{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00128{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00128{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00128{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00128{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00128{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m47_c00128{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00128{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m24_c00128{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00128{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00128{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00128{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mef_c00128{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m5_c00128{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m98_c00128{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m107_c00128{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m95_c00128{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m108_c00128{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00128{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m48_c00128{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00128{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m83_c00128{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00128{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00128{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.mda_c00128{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00128{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00128{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m82_c00128{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00128{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);}
.m109_c00128{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m25_c00128{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00128{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls0_c00128{letter-spacing:0.000000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{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__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00128{word-spacing:-7.641509px;}
.ws2_c00128{word-spacing:-2.083333px;}
.ws4_c00128{word-spacing:-1.578947px;}
.wsa_c00128{word-spacing:-0.277778px;}
.wsb_c00128{word-spacing:0.000000px;}
.ws6_c00128{word-spacing:5.579618px;}
.ws3_c00128{word-spacing:12.894737px;}
.ws0_c00128{word-spacing:15.168901px;}
.ws8_c00128{word-spacing:16.257611px;}
.ws1_c00128{word-spacing:26.428954px;}
.ws9_c00128{word-spacing:154.272045px;}
.ws5_c00128{word-spacing:160.500000px;}
._3_c00128{width:42.168901px;}
._1_c00128{width:46.994638px;}
._2_c00128{width:50.211796px;}
._0_c00128{width:53.428954px;}
.fc0_c00128{color:transparent;}
.fs9_c00128{font-size:24.000000px;}
.fs8_c00128{font-size:30.000000px;}
.fs7_c00128{font-size:36.000000px;}
.fs4_c00128{font-size:42.000000px;}
.fs6_c00128{font-size:48.000000px;}
.fs5_c00128{font-size:54.000000px;}
.fs2_c00128{font-size:60.000000px;}
.fs1_c00128{font-size:66.000000px;}
.fs3_c00128{font-size:72.000000px;}
.fs0_c00128{font-size:78.000000px;}
.y0_c00128{bottom:0.000000px;}
.y31_c00128{bottom:191.700000px;}
.y60_c00128{bottom:194.100000px;}
.y30_c00128{bottom:206.850000px;}
.y2f_c00128{bottom:221.250000px;}
.y5f_c00128{bottom:225.750000px;}
.y2e_c00128{bottom:235.350000px;}
.y5e_c00128{bottom:244.050000px;}
.y2d_c00128{bottom:250.050000px;}
.y5d_c00128{bottom:261.750000px;}
.y2c_c00128{bottom:264.450000px;}
.y2b_c00128{bottom:279.150000px;}
.y5c_c00128{bottom:291.300000px;}
.y2a_c00128{bottom:292.800000px;}
.y5b_c00128{bottom:306.000000px;}
.y29_c00128{bottom:307.500000px;}
.y5a_c00128{bottom:320.100000px;}
.y28_c00128{bottom:328.350000px;}
.y59_c00128{bottom:334.500000px;}
.y27_c00128{bottom:344.550000px;}
.y58_c00128{bottom:347.400000px;}
.y26_c00128{bottom:360.750000px;}
.y57_c00128{bottom:366.600000px;}
.y25_c00128{bottom:373.350000px;}
.y56_c00128{bottom:384.900000px;}
.y24_c00128{bottom:388.050000px;}
.y55_c00128{bottom:402.900000px;}
.y54_c00128{bottom:428.700000px;}
.y23_c00128{bottom:434.850000px;}
.y53_c00128{bottom:447.150000px;}
.y22_c00128{bottom:461.100000px;}
.y52_c00128{bottom:466.950000px;}
.y21_c00128{bottom:488.100000px;}
.y51_c00128{bottom:491.700000px;}
.y50_c00128{bottom:523.050000px;}
.y20_c00128{bottom:523.800000px;}
.y4f_c00128{bottom:540.750000px;}
.y1f_c00128{bottom:559.500000px;}
.y4e_c00128{bottom:567.300000px;}
.y4d_c00128{bottom:585.300000px;}
.y1e_c00128{bottom:589.200000px;}
.y4c_c00128{bottom:612.000000px;}
.y1d_c00128{bottom:615.900000px;}
.y4b_c00128{bottom:630.000000px;}
.y1c_c00128{bottom:642.600000px;}
.y4a_c00128{bottom:652.350000px;}
.y1b_c00128{bottom:661.650000px;}
.y49_c00128{bottom:669.900000px;}
.y1a_c00128{bottom:679.650000px;}
.y48_c00128{bottom:691.950000px;}
.y19_c00128{bottom:697.350000px;}
.y47_c00128{bottom:714.150000px;}
.y18_c00128{bottom:715.350000px;}
.y46_c00128{bottom:731.850000px;}
.y17_c00128{bottom:736.500000px;}
.y45_c00128{bottom:748.800000px;}
.y44_c00128{bottom:754.200000px;}
.y16_c00128{bottom:754.800000px;}
.y43_c00128{bottom:772.200000px;}
.y15_c00128{bottom:773.100000px;}
.y42_c00128{bottom:789.900000px;}
.y14_c00128{bottom:790.800000px;}
.y13_c00128{bottom:808.800000px;}
.y41_c00128{bottom:812.100000px;}
.y12_c00128{bottom:826.500000px;}
.y40_c00128{bottom:830.100000px;}
.y11_c00128{bottom:844.500000px;}
.y3f_c00128{bottom:851.700000px;}
.y10_c00128{bottom:868.650000px;}
.y3e_c00128{bottom:869.400000px;}
.yf_c00128{bottom:884.550000px;}
.y3d_c00128{bottom:892.050000px;}
.ye_c00128{bottom:898.800000px;}
.y3c_c00128{bottom:909.300000px;}
.yd_c00128{bottom:912.900000px;}
.yc_c00128{bottom:926.250000px;}
.y3b_c00128{bottom:931.200000px;}
.yb_c00128{bottom:939.900000px;}
.y3a_c00128{bottom:948.900000px;}
.ya_c00128{bottom:957.900000px;}
.y39_c00128{bottom:966.600000px;}
.y9_c00128{bottom:988.200000px;}
.y38_c00128{bottom:988.950000px;}
.y8_c00128{bottom:1006.200000px;}
.y37_c00128{bottom:1006.950000px;}
.y7_c00128{bottom:1024.200000px;}
.y36_c00128{bottom:1024.650000px;}
.y6_c00128{bottom:1041.900000px;}
.y35_c00128{bottom:1042.650000px;}
.y5_c00128{bottom:1059.900000px;}
.y4_c00128{bottom:1077.450000px;}
.y34_c00128{bottom:1088.250000px;}
.y3_c00128{bottom:1099.350000px;}
.y33_c00128{bottom:1103.400000px;}
.y32_c00128{bottom:1116.750000px;}
.y2_c00128{bottom:1117.050000px;}
.y1_c00128{bottom:1148.100000px;}
.hb_c00128{height:24.000000px;}
.ha_c00128{height:30.000000px;}
.h9_c00128{height:36.000000px;}
.h6_c00128{height:42.000000px;}
.h8_c00128{height:48.000000px;}
.h7_c00128{height:54.000000px;}
.h4_c00128{height:60.000000px;}
.h3_c00128{height:66.000000px;}
.h5_c00128{height:72.000000px;}
.h2_c00128{height:78.000000px;}
.h0_c00128{height:1276.199982px;}
.h1_c00128{height:1276.500000px;}
.w1_c00128{width:953.250000px;}
.w0_c00128{width:953.280030px;}
.x0_c00128{left:0.000000px;}
.x35_c00128{left:90.300000px;}
.x2a_c00128{left:91.800000px;}
.x3_c00128{left:93.900000px;}
.x67_c00128{left:105.900000px;}
.x7d_c00128{left:107.700000px;}
.x55_c00128{left:110.100000px;}
.x1f_c00128{left:111.300000px;}
.x9_c00128{left:112.500000px;}
.x8a_c00128{left:114.750000px;}
.x79_c00128{left:116.550000px;}
.x60_c00128{left:120.600000px;}
.x39_c00128{left:122.400000px;}
.x7c_c00128{left:123.450000px;}
.x6e_c00128{left:128.850000px;}
.x59_c00128{left:130.350000px;}
.xa_c00128{left:131.700000px;}
.x4d_c00128{left:133.500000px;}
.x68_c00128{left:135.450000px;}
.x2b_c00128{left:137.100000px;}
.x4_c00128{left:138.150000px;}
.x61_c00128{left:140.700000px;}
.x11_c00128{left:142.950000px;}
.x25_c00128{left:144.600000px;}
.x80_c00128{left:147.450000px;}
.x64_c00128{left:148.800000px;}
.x77_c00128{left:152.700000px;}
.x8b_c00128{left:154.500000px;}
.x65_c00128{left:157.350000px;}
.x52_c00128{left:161.250000px;}
.x49_c00128{left:163.950000px;}
.x26_c00128{left:167.250000px;}
.x72_c00128{left:173.100000px;}
.x5_c00128{left:174.450000px;}
.x5a_c00128{left:175.650000px;}
.x93_c00128{left:177.150000px;}
.x3b_c00128{left:179.400000px;}
.x42_c00128{left:181.650000px;}
.x4a_c00128{left:184.800000px;}
.x4e_c00128{left:186.450000px;}
.x6b_c00128{left:187.950000px;}
.x3d_c00128{left:191.250000px;}
.x12_c00128{left:193.350000px;}
.x66_c00128{left:194.850000px;}
.xb_c00128{left:196.200000px;}
.x6f_c00128{left:199.350000px;}
.x58_c00128{left:200.850000px;}
.x78_c00128{left:201.900000px;}
.x20_c00128{left:205.650000px;}
.x62_c00128{left:207.000000px;}
.x43_c00128{left:208.350000px;}
.x70_c00128{left:211.650000px;}
.x1b_c00128{left:213.000000px;}
.x3e_c00128{left:217.500000px;}
.x53_c00128{left:218.550000px;}
.xc_c00128{left:221.400000px;}
.x73_c00128{left:224.700000px;}
.x5b_c00128{left:228.150000px;}
.x27_c00128{left:229.200000px;}
.x7e_c00128{left:231.150000px;}
.x2c_c00128{left:232.500000px;}
.x84_c00128{left:233.550000px;}
.x44_c00128{left:236.100000px;}
.x8e_c00128{left:238.800000px;}
.x13_c00128{left:240.900000px;}
.x56_c00128{left:244.050000px;}
.x81_c00128{left:245.100000px;}
.xd_c00128{left:248.700000px;}
.x63_c00128{left:251.700000px;}
.x1c_c00128{left:253.800000px;}
.x14_c00128{left:256.050000px;}
.x74_c00128{left:257.100000px;}
.x85_c00128{left:258.750000px;}
.x3f_c00128{left:261.150000px;}
.x6c_c00128{left:263.100000px;}
.x45_c00128{left:265.650000px;}
.x91_c00128{left:266.850000px;}
.x5c_c00128{left:269.250000px;}
.x2d_c00128{left:272.100000px;}
.x6_c00128{left:274.500000px;}
.xe_c00128{left:277.500000px;}
.x86_c00128{left:278.850000px;}
.x21_c00128{left:281.550000px;}
.x7a_c00128{left:283.950000px;}
.x28_c00128{left:285.300000px;}
.x8f_c00128{left:286.650000px;}
.x8c_c00128{left:288.750000px;}
.x57_c00128{left:291.150000px;}
.x2e_c00128{left:293.700000px;}
.x40_c00128{left:296.700000px;}
.x4f_c00128{left:297.750000px;}
.x71_c00128{left:298.800000px;}
.x7_c00128{left:301.500000px;}
.x92_c00128{left:302.550000px;}
.x41_c00128{left:303.900000px;}
.xf_c00128{left:305.550000px;}
.x46_c00128{left:307.350000px;}
.x15_c00128{left:309.300000px;}
.x5d_c00128{left:311.100000px;}
.x87_c00128{left:312.300000px;}
.x7b_c00128{left:314.550000px;}
.x6d_c00128{left:316.050000px;}
.x69_c00128{left:317.400000px;}
.x22_c00128{left:321.450000px;}
.x4b_c00128{left:325.050000px;}
.x29_c00128{left:328.200000px;}
.x88_c00128{left:329.250000px;}
.x48_c00128{left:330.300000px;}
.x2f_c00128{left:332.550000px;}
.x50_c00128{left:333.750000px;}
.x47_c00128{left:335.850000px;}
.x1_c00128{left:339.150000px;}
.x75_c00128{left:341.400000px;}
.x82_c00128{left:343.050000px;}
.x16_c00128{left:344.250000px;}
.x5e_c00128{left:349.950000px;}
.x32_c00128{left:351.300000px;}
.x1d_c00128{left:353.250000px;}
.x17_c00128{left:360.450000px;}
.x4c_c00128{left:362.100000px;}
.x51_c00128{left:363.300000px;}
.x23_c00128{left:367.200000px;}
.x83_c00128{left:368.550000px;}
.x8_c00128{left:370.200000px;}
.x89_c00128{left:372.150000px;}
.x7f_c00128{left:376.200000px;}
.x6a_c00128{left:377.550000px;}
.x10_c00128{left:381.150000px;}
.x33_c00128{left:382.650000px;}
.x3c_c00128{left:384.150000px;}
.x54_c00128{left:385.200000px;}
.x24_c00128{left:388.050000px;}
.x36_c00128{left:389.850000px;}
.x18_c00128{left:391.350000px;}
.x8d_c00128{left:398.250000px;}
.x30_c00128{left:399.450000px;}
.x19_c00128{left:401.850000px;}
.x37_c00128{left:405.300000px;}
.x76_c00128{left:406.950000px;}
.x90_c00128{left:410.100000px;}
.x5f_c00128{left:411.450000px;}
.x1e_c00128{left:412.650000px;}
.x34_c00128{left:416.100000px;}
.x38_c00128{left:417.600000px;}
.x3a_c00128{left:419.100000px;}
.x31_c00128{left:420.300000px;}
.x1a_c00128{left:421.950000px;}
.xf6_c00128{left:451.500000px;}
.x94_c00128{left:453.300000px;}
.x109_c00128{left:465.900000px;}
.xe1_c00128{left:467.250000px;}
.xd7_c00128{left:468.600000px;}
.xae_c00128{left:469.800000px;}
.xa2_c00128{left:470.850000px;}
.x118_c00128{left:478.800000px;}
.x11b_c00128{left:480.150000px;}
.xf8_c00128{left:481.650000px;}
.xcb_c00128{left:487.050000px;}
.xbf_c00128{left:488.100000px;}
.xa5_c00128{left:489.300000px;}
.xb4_c00128{left:491.550000px;}
.x9c_c00128{left:492.750000px;}
.x10d_c00128{left:496.050000px;}
.xa3_c00128{left:497.100000px;}
.x95_c00128{left:498.300000px;}
.xf9_c00128{left:499.650000px;}
.x119_c00128{left:501.450000px;}
.xca_c00128{left:503.100000px;}
.x9d_c00128{left:505.050000px;}
.xe7_c00128{left:508.350000px;}
.x122_c00128{left:509.400000px;}
.xd2_c00128{left:512.550000px;}
.x121_c00128{left:514.500000px;}
.xfc_c00128{left:516.300000px;}
.xaf_c00128{left:520.950000px;}
.xba_c00128{left:522.150000px;}
.xd3_c00128{left:523.350000px;}
.x105_c00128{left:526.950000px;}
.x106_c00128{left:530.700000px;}
.x9e_c00128{left:533.100000px;}
.xf1_c00128{left:534.150000px;}
.xc4_c00128{left:535.650000px;}
.x102_c00128{left:538.500000px;}
.xed_c00128{left:539.550000px;}
.x10a_c00128{left:541.500000px;}
.xc0_c00128{left:543.150000px;}
.xec_c00128{left:545.250000px;}
.xb0_c00128{left:547.200000px;}
.xc5_c00128{left:549.000000px;}
.xcc_c00128{left:550.350000px;}
.xa6_c00128{left:553.350000px;}
.xa4_c00128{left:555.300000px;}
.xe8_c00128{left:556.950000px;}
.xfa_c00128{left:558.000000px;}
.xdc_c00128{left:559.350000px;}
.x111_c00128{left:561.600000px;}
.xee_c00128{left:562.950000px;}
.xd9_c00128{left:564.300000px;}
.x96_c00128{left:567.750000px;}
.x9f_c00128{left:568.800000px;}
.x11c_c00128{left:572.250000px;}
.xfb_c00128{left:577.800000px;}
.xbb_c00128{left:579.750000px;}
.x11d_c00128{left:581.700000px;}
.x107_c00128{left:586.500000px;}
.xe2_c00128{left:587.850000px;}
.xcd_c00128{left:591.750000px;}
.xdd_c00128{left:595.350000px;}
.xb5_c00128{left:596.400000px;}
.xf4_c00128{left:598.050000px;}
.xe9_c00128{left:599.400000px;}
.xfd_c00128{left:601.200000px;}
.xbc_c00128{left:604.950000px;}
.xc6_c00128{left:606.900000px;}
.xce_c00128{left:608.700000px;}
.xfe_c00128{left:609.900000px;}
.xf2_c00128{left:611.550000px;}
.xaa_c00128{left:612.900000px;}
.xa0_c00128{left:615.900000px;}
.x10e_c00128{left:617.700000px;}
.xb1_c00128{left:619.200000px;}
.xcf_c00128{left:620.250000px;}
.xea_c00128{left:623.850000px;}
.xff_c00128{left:626.400000px;}
.x11e_c00128{left:627.750000px;}
.x97_c00128{left:629.700000px;}
.xa7_c00128{left:630.750000px;}
.xab_c00128{left:632.700000px;}
.xf5_c00128{left:633.750000px;}
.xe3_c00128{left:635.400000px;}
.xd4_c00128{left:637.500000px;}
.x10b_c00128{left:639.000000px;}
.xbd_c00128{left:641.250000px;}
.x98_c00128{left:642.600000px;}
.x103_c00128{left:643.650000px;}
.xde_c00128{left:645.750000px;}
.xc7_c00128{left:646.800000px;}
.x11f_c00128{left:648.300000px;}
.x112_c00128{left:650.550000px;}
.x115_c00128{left:651.600000px;}
.xa8_c00128{left:654.450000px;}
.xac_c00128{left:655.800000px;}
.x116_c00128{left:659.550000px;}
.xf7_c00128{left:660.600000px;}
.x104_c00128{left:661.950000px;}
.xda_c00128{left:663.600000px;}
.xb6_c00128{left:667.350000px;}
.xe4_c00128{left:669.600000px;}
.x10f_c00128{left:671.700000px;}
.x117_c00128{left:673.950000px;}
.xc8_c00128{left:676.350000px;}
.x100_c00128{left:677.850000px;}
.xc1_c00128{left:680.700000px;}
.xdf_c00128{left:683.250000px;}
.x99_c00128{left:685.050000px;}
.xd0_c00128{left:686.100000px;}
.xa1_c00128{left:687.900000px;}
.xbe_c00128{left:690.600000px;}
.xb7_c00128{left:692.850000px;}
.x11a_c00128{left:696.000000px;}
.xf3_c00128{left:698.250000px;}
.xeb_c00128{left:700.200000px;}
.xe0_c00128{left:701.550000px;}
.xc2_c00128{left:703.800000px;}
.x9a_c00128{left:705.900000px;}
.xef_c00128{left:707.250000px;}
.xb2_c00128{left:708.900000px;}
.xd5_c00128{left:715.200000px;}
.x110_c00128{left:716.700000px;}
.xa9_c00128{left:722.100000px;}
.xf0_c00128{left:729.600000px;}
.x10c_c00128{left:734.400000px;}
.x113_c00128{left:736.800000px;}
.xe5_c00128{left:739.350000px;}
.xb3_c00128{left:742.050000px;}
.xb8_c00128{left:744.000000px;}
.xad_c00128{left:745.500000px;}
.x9b_c00128{left:751.650000px;}
.x101_c00128{left:759.900000px;}
.xd1_c00128{left:761.700000px;}
.x120_c00128{left:762.750000px;}
.x2_c00128{left:765.450000px;}
.x108_c00128{left:766.500000px;}
.xb9_c00128{left:768.000000px;}
.x114_c00128{left:770.700000px;}
.xd8_c00128{left:772.050000px;}
.xc9_c00128{left:773.100000px;}
.xd6_c00128{left:774.300000px;}
.xe6_c00128{left:776.100000px;}
.xc3_c00128{left:777.300000px;}
.xdb_c00128{left:784.200000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws7_c00128{word-spacing:-6.792453pt;}
.ws2_c00128{word-spacing:-1.851852pt;}
.ws4_c00128{word-spacing:-1.403509pt;}
.wsa_c00128{word-spacing:-0.246914pt;}
.wsb_c00128{word-spacing:0.000000pt;}
.ws6_c00128{word-spacing:4.959660pt;}
.ws3_c00128{word-spacing:11.461988pt;}
.ws0_c00128{word-spacing:13.483467pt;}
.ws8_c00128{word-spacing:14.451210pt;}
.ws1_c00128{word-spacing:23.492404pt;}
.ws9_c00128{word-spacing:137.130707pt;}
.ws5_c00128{word-spacing:142.666667pt;}
._3_c00128{width:37.483467pt;}
._1_c00128{width:41.773012pt;}
._2_c00128{width:44.632708pt;}
._0_c00128{width:47.492404pt;}
.fs9_c00128{font-size:21.333333pt;}
.fs8_c00128{font-size:26.666667pt;}
.fs7_c00128{font-size:32.000000pt;}
.fs4_c00128{font-size:37.333333pt;}
.fs6_c00128{font-size:42.666667pt;}
.fs5_c00128{font-size:48.000000pt;}
.fs2_c00128{font-size:53.333333pt;}
.fs1_c00128{font-size:58.666667pt;}
.fs3_c00128{font-size:64.000000pt;}
.fs0_c00128{font-size:69.333333pt;}
.y0_c00128{bottom:0.000000pt;}
.y31_c00128{bottom:170.400000pt;}
.y60_c00128{bottom:172.533333pt;}
.y30_c00128{bottom:183.866667pt;}
.y2f_c00128{bottom:196.666667pt;}
.y5f_c00128{bottom:200.666667pt;}
.y2e_c00128{bottom:209.200000pt;}
.y5e_c00128{bottom:216.933333pt;}
.y2d_c00128{bottom:222.266667pt;}
.y5d_c00128{bottom:232.666667pt;}
.y2c_c00128{bottom:235.066667pt;}
.y2b_c00128{bottom:248.133333pt;}
.y5c_c00128{bottom:258.933333pt;}
.y2a_c00128{bottom:260.266667pt;}
.y5b_c00128{bottom:272.000000pt;}
.y29_c00128{bottom:273.333333pt;}
.y5a_c00128{bottom:284.533333pt;}
.y28_c00128{bottom:291.866667pt;}
.y59_c00128{bottom:297.333333pt;}
.y27_c00128{bottom:306.266667pt;}
.y58_c00128{bottom:308.800000pt;}
.y26_c00128{bottom:320.666667pt;}
.y57_c00128{bottom:325.866667pt;}
.y25_c00128{bottom:331.866667pt;}
.y56_c00128{bottom:342.133333pt;}
.y24_c00128{bottom:344.933333pt;}
.y55_c00128{bottom:358.133333pt;}
.y54_c00128{bottom:381.066667pt;}
.y23_c00128{bottom:386.533333pt;}
.y53_c00128{bottom:397.466667pt;}
.y22_c00128{bottom:409.866667pt;}
.y52_c00128{bottom:415.066667pt;}
.y21_c00128{bottom:433.866667pt;}
.y51_c00128{bottom:437.066667pt;}
.y50_c00128{bottom:464.933333pt;}
.y20_c00128{bottom:465.600000pt;}
.y4f_c00128{bottom:480.666667pt;}
.y1f_c00128{bottom:497.333333pt;}
.y4e_c00128{bottom:504.266667pt;}
.y4d_c00128{bottom:520.266667pt;}
.y1e_c00128{bottom:523.733333pt;}
.y4c_c00128{bottom:544.000000pt;}
.y1d_c00128{bottom:547.466667pt;}
.y4b_c00128{bottom:560.000000pt;}
.y1c_c00128{bottom:571.200000pt;}
.y4a_c00128{bottom:579.866667pt;}
.y1b_c00128{bottom:588.133333pt;}
.y49_c00128{bottom:595.466667pt;}
.y1a_c00128{bottom:604.133333pt;}
.y48_c00128{bottom:615.066667pt;}
.y19_c00128{bottom:619.866667pt;}
.y47_c00128{bottom:634.800000pt;}
.y18_c00128{bottom:635.866667pt;}
.y46_c00128{bottom:650.533333pt;}
.y17_c00128{bottom:654.666667pt;}
.y45_c00128{bottom:665.600000pt;}
.y44_c00128{bottom:670.400000pt;}
.y16_c00128{bottom:670.933333pt;}
.y43_c00128{bottom:686.400000pt;}
.y15_c00128{bottom:687.200000pt;}
.y42_c00128{bottom:702.133333pt;}
.y14_c00128{bottom:702.933333pt;}
.y13_c00128{bottom:718.933333pt;}
.y41_c00128{bottom:721.866667pt;}
.y12_c00128{bottom:734.666667pt;}
.y40_c00128{bottom:737.866667pt;}
.y11_c00128{bottom:750.666667pt;}
.y3f_c00128{bottom:757.066667pt;}
.y10_c00128{bottom:772.133333pt;}
.y3e_c00128{bottom:772.800000pt;}
.yf_c00128{bottom:786.266667pt;}
.y3d_c00128{bottom:792.933333pt;}
.ye_c00128{bottom:798.933333pt;}
.y3c_c00128{bottom:808.266667pt;}
.yd_c00128{bottom:811.466667pt;}
.yc_c00128{bottom:823.333333pt;}
.y3b_c00128{bottom:827.733333pt;}
.yb_c00128{bottom:835.466667pt;}
.y3a_c00128{bottom:843.466667pt;}
.ya_c00128{bottom:851.466667pt;}
.y39_c00128{bottom:859.200000pt;}
.y9_c00128{bottom:878.400000pt;}
.y38_c00128{bottom:879.066667pt;}
.y8_c00128{bottom:894.400000pt;}
.y37_c00128{bottom:895.066667pt;}
.y7_c00128{bottom:910.400000pt;}
.y36_c00128{bottom:910.800000pt;}
.y6_c00128{bottom:926.133333pt;}
.y35_c00128{bottom:926.800000pt;}
.y5_c00128{bottom:942.133333pt;}
.y4_c00128{bottom:957.733333pt;}
.y34_c00128{bottom:967.333333pt;}
.y3_c00128{bottom:977.200000pt;}
.y33_c00128{bottom:980.800000pt;}
.y32_c00128{bottom:992.666667pt;}
.y2_c00128{bottom:992.933333pt;}
.y1_c00128{bottom:1020.533333pt;}
.hb_c00128{height:21.333333pt;}
.ha_c00128{height:26.666667pt;}
.h9_c00128{height:32.000000pt;}
.h6_c00128{height:37.333333pt;}
.h8_c00128{height:42.666667pt;}
.h7_c00128{height:48.000000pt;}
.h4_c00128{height:53.333333pt;}
.h3_c00128{height:58.666667pt;}
.h5_c00128{height:64.000000pt;}
.h2_c00128{height:69.333333pt;}
.h0_c00128{height:1134.399984pt;}
.h1_c00128{height:1134.666667pt;}
.w1_c00128{width:847.333333pt;}
.w0_c00128{width:847.360027pt;}
.x0_c00128{left:0.000000pt;}
.x35_c00128{left:80.266667pt;}
.x2a_c00128{left:81.600000pt;}
.x3_c00128{left:83.466667pt;}
.x67_c00128{left:94.133333pt;}
.x7d_c00128{left:95.733333pt;}
.x55_c00128{left:97.866667pt;}
.x1f_c00128{left:98.933333pt;}
.x9_c00128{left:100.000000pt;}
.x8a_c00128{left:102.000000pt;}
.x79_c00128{left:103.600000pt;}
.x60_c00128{left:107.200000pt;}
.x39_c00128{left:108.800000pt;}
.x7c_c00128{left:109.733333pt;}
.x6e_c00128{left:114.533333pt;}
.x59_c00128{left:115.866667pt;}
.xa_c00128{left:117.066667pt;}
.x4d_c00128{left:118.666667pt;}
.x68_c00128{left:120.400000pt;}
.x2b_c00128{left:121.866667pt;}
.x4_c00128{left:122.800000pt;}
.x61_c00128{left:125.066667pt;}
.x11_c00128{left:127.066667pt;}
.x25_c00128{left:128.533333pt;}
.x80_c00128{left:131.066667pt;}
.x64_c00128{left:132.266667pt;}
.x77_c00128{left:135.733333pt;}
.x8b_c00128{left:137.333333pt;}
.x65_c00128{left:139.866667pt;}
.x52_c00128{left:143.333333pt;}
.x49_c00128{left:145.733333pt;}
.x26_c00128{left:148.666667pt;}
.x72_c00128{left:153.866667pt;}
.x5_c00128{left:155.066667pt;}
.x5a_c00128{left:156.133333pt;}
.x93_c00128{left:157.466667pt;}
.x3b_c00128{left:159.466667pt;}
.x42_c00128{left:161.466667pt;}
.x4a_c00128{left:164.266667pt;}
.x4e_c00128{left:165.733333pt;}
.x6b_c00128{left:167.066667pt;}
.x3d_c00128{left:170.000000pt;}
.x12_c00128{left:171.866667pt;}
.x66_c00128{left:173.200000pt;}
.xb_c00128{left:174.400000pt;}
.x6f_c00128{left:177.200000pt;}
.x58_c00128{left:178.533333pt;}
.x78_c00128{left:179.466667pt;}
.x20_c00128{left:182.800000pt;}
.x62_c00128{left:184.000000pt;}
.x43_c00128{left:185.200000pt;}
.x70_c00128{left:188.133333pt;}
.x1b_c00128{left:189.333333pt;}
.x3e_c00128{left:193.333333pt;}
.x53_c00128{left:194.266667pt;}
.xc_c00128{left:196.800000pt;}
.x73_c00128{left:199.733333pt;}
.x5b_c00128{left:202.800000pt;}
.x27_c00128{left:203.733333pt;}
.x7e_c00128{left:205.466667pt;}
.x2c_c00128{left:206.666667pt;}
.x84_c00128{left:207.600000pt;}
.x44_c00128{left:209.866667pt;}
.x8e_c00128{left:212.266667pt;}
.x13_c00128{left:214.133333pt;}
.x56_c00128{left:216.933333pt;}
.x81_c00128{left:217.866667pt;}
.xd_c00128{left:221.066667pt;}
.x63_c00128{left:223.733333pt;}
.x1c_c00128{left:225.600000pt;}
.x14_c00128{left:227.600000pt;}
.x74_c00128{left:228.533333pt;}
.x85_c00128{left:230.000000pt;}
.x3f_c00128{left:232.133333pt;}
.x6c_c00128{left:233.866667pt;}
.x45_c00128{left:236.133333pt;}
.x91_c00128{left:237.200000pt;}
.x5c_c00128{left:239.333333pt;}
.x2d_c00128{left:241.866667pt;}
.x6_c00128{left:244.000000pt;}
.xe_c00128{left:246.666667pt;}
.x86_c00128{left:247.866667pt;}
.x21_c00128{left:250.266667pt;}
.x7a_c00128{left:252.400000pt;}
.x28_c00128{left:253.600000pt;}
.x8f_c00128{left:254.800000pt;}
.x8c_c00128{left:256.666667pt;}
.x57_c00128{left:258.800000pt;}
.x2e_c00128{left:261.066667pt;}
.x40_c00128{left:263.733333pt;}
.x4f_c00128{left:264.666667pt;}
.x71_c00128{left:265.600000pt;}
.x7_c00128{left:268.000000pt;}
.x92_c00128{left:268.933333pt;}
.x41_c00128{left:270.133333pt;}
.xf_c00128{left:271.600000pt;}
.x46_c00128{left:273.200000pt;}
.x15_c00128{left:274.933333pt;}
.x5d_c00128{left:276.533333pt;}
.x87_c00128{left:277.600000pt;}
.x7b_c00128{left:279.600000pt;}
.x6d_c00128{left:280.933333pt;}
.x69_c00128{left:282.133333pt;}
.x22_c00128{left:285.733333pt;}
.x4b_c00128{left:288.933333pt;}
.x29_c00128{left:291.733333pt;}
.x88_c00128{left:292.666667pt;}
.x48_c00128{left:293.600000pt;}
.x2f_c00128{left:295.600000pt;}
.x50_c00128{left:296.666667pt;}
.x47_c00128{left:298.533333pt;}
.x1_c00128{left:301.466667pt;}
.x75_c00128{left:303.466667pt;}
.x82_c00128{left:304.933333pt;}
.x16_c00128{left:306.000000pt;}
.x5e_c00128{left:311.066667pt;}
.x32_c00128{left:312.266667pt;}
.x1d_c00128{left:314.000000pt;}
.x17_c00128{left:320.400000pt;}
.x4c_c00128{left:321.866667pt;}
.x51_c00128{left:322.933333pt;}
.x23_c00128{left:326.400000pt;}
.x83_c00128{left:327.600000pt;}
.x8_c00128{left:329.066667pt;}
.x89_c00128{left:330.800000pt;}
.x7f_c00128{left:334.400000pt;}
.x6a_c00128{left:335.600000pt;}
.x10_c00128{left:338.800000pt;}
.x33_c00128{left:340.133333pt;}
.x3c_c00128{left:341.466667pt;}
.x54_c00128{left:342.400000pt;}
.x24_c00128{left:344.933333pt;}
.x36_c00128{left:346.533333pt;}
.x18_c00128{left:347.866667pt;}
.x8d_c00128{left:354.000000pt;}
.x30_c00128{left:355.066667pt;}
.x19_c00128{left:357.200000pt;}
.x37_c00128{left:360.266667pt;}
.x76_c00128{left:361.733333pt;}
.x90_c00128{left:364.533333pt;}
.x5f_c00128{left:365.733333pt;}
.x1e_c00128{left:366.800000pt;}
.x34_c00128{left:369.866667pt;}
.x38_c00128{left:371.200000pt;}
.x3a_c00128{left:372.533333pt;}
.x31_c00128{left:373.600000pt;}
.x1a_c00128{left:375.066667pt;}
.xf6_c00128{left:401.333333pt;}
.x94_c00128{left:402.933333pt;}
.x109_c00128{left:414.133333pt;}
.xe1_c00128{left:415.333333pt;}
.xd7_c00128{left:416.533333pt;}
.xae_c00128{left:417.600000pt;}
.xa2_c00128{left:418.533333pt;}
.x118_c00128{left:425.600000pt;}
.x11b_c00128{left:426.800000pt;}
.xf8_c00128{left:428.133333pt;}
.xcb_c00128{left:432.933333pt;}
.xbf_c00128{left:433.866667pt;}
.xa5_c00128{left:434.933333pt;}
.xb4_c00128{left:436.933333pt;}
.x9c_c00128{left:438.000000pt;}
.x10d_c00128{left:440.933333pt;}
.xa3_c00128{left:441.866667pt;}
.x95_c00128{left:442.933333pt;}
.xf9_c00128{left:444.133333pt;}
.x119_c00128{left:445.733333pt;}
.xca_c00128{left:447.200000pt;}
.x9d_c00128{left:448.933333pt;}
.xe7_c00128{left:451.866667pt;}
.x122_c00128{left:452.800000pt;}
.xd2_c00128{left:455.600000pt;}
.x121_c00128{left:457.333333pt;}
.xfc_c00128{left:458.933333pt;}
.xaf_c00128{left:463.066667pt;}
.xba_c00128{left:464.133333pt;}
.xd3_c00128{left:465.200000pt;}
.x105_c00128{left:468.400000pt;}
.x106_c00128{left:471.733333pt;}
.x9e_c00128{left:473.866667pt;}
.xf1_c00128{left:474.800000pt;}
.xc4_c00128{left:476.133333pt;}
.x102_c00128{left:478.666667pt;}
.xed_c00128{left:479.600000pt;}
.x10a_c00128{left:481.333333pt;}
.xc0_c00128{left:482.800000pt;}
.xec_c00128{left:484.666667pt;}
.xb0_c00128{left:486.400000pt;}
.xc5_c00128{left:488.000000pt;}
.xcc_c00128{left:489.200000pt;}
.xa6_c00128{left:491.866667pt;}
.xa4_c00128{left:493.600000pt;}
.xe8_c00128{left:495.066667pt;}
.xfa_c00128{left:496.000000pt;}
.xdc_c00128{left:497.200000pt;}
.x111_c00128{left:499.200000pt;}
.xee_c00128{left:500.400000pt;}
.xd9_c00128{left:501.600000pt;}
.x96_c00128{left:504.666667pt;}
.x9f_c00128{left:505.600000pt;}
.x11c_c00128{left:508.666667pt;}
.xfb_c00128{left:513.600000pt;}
.xbb_c00128{left:515.333333pt;}
.x11d_c00128{left:517.066667pt;}
.x107_c00128{left:521.333333pt;}
.xe2_c00128{left:522.533333pt;}
.xcd_c00128{left:526.000000pt;}
.xdd_c00128{left:529.200000pt;}
.xb5_c00128{left:530.133333pt;}
.xf4_c00128{left:531.600000pt;}
.xe9_c00128{left:532.800000pt;}
.xfd_c00128{left:534.400000pt;}
.xbc_c00128{left:537.733333pt;}
.xc6_c00128{left:539.466667pt;}
.xce_c00128{left:541.066667pt;}
.xfe_c00128{left:542.133333pt;}
.xf2_c00128{left:543.600000pt;}
.xaa_c00128{left:544.800000pt;}
.xa0_c00128{left:547.466667pt;}
.x10e_c00128{left:549.066667pt;}
.xb1_c00128{left:550.400000pt;}
.xcf_c00128{left:551.333333pt;}
.xea_c00128{left:554.533333pt;}
.xff_c00128{left:556.800000pt;}
.x11e_c00128{left:558.000000pt;}
.x97_c00128{left:559.733333pt;}
.xa7_c00128{left:560.666667pt;}
.xab_c00128{left:562.400000pt;}
.xf5_c00128{left:563.333333pt;}
.xe3_c00128{left:564.800000pt;}
.xd4_c00128{left:566.666667pt;}
.x10b_c00128{left:568.000000pt;}
.xbd_c00128{left:570.000000pt;}
.x98_c00128{left:571.200000pt;}
.x103_c00128{left:572.133333pt;}
.xde_c00128{left:574.000000pt;}
.xc7_c00128{left:574.933333pt;}
.x11f_c00128{left:576.266667pt;}
.x112_c00128{left:578.266667pt;}
.x115_c00128{left:579.200000pt;}
.xa8_c00128{left:581.733333pt;}
.xac_c00128{left:582.933333pt;}
.x116_c00128{left:586.266667pt;}
.xf7_c00128{left:587.200000pt;}
.x104_c00128{left:588.400000pt;}
.xda_c00128{left:589.866667pt;}
.xb6_c00128{left:593.200000pt;}
.xe4_c00128{left:595.200000pt;}
.x10f_c00128{left:597.066667pt;}
.x117_c00128{left:599.066667pt;}
.xc8_c00128{left:601.200000pt;}
.x100_c00128{left:602.533333pt;}
.xc1_c00128{left:605.066667pt;}
.xdf_c00128{left:607.333333pt;}
.x99_c00128{left:608.933333pt;}
.xd0_c00128{left:609.866667pt;}
.xa1_c00128{left:611.466667pt;}
.xbe_c00128{left:613.866667pt;}
.xb7_c00128{left:615.866667pt;}
.x11a_c00128{left:618.666667pt;}
.xf3_c00128{left:620.666667pt;}
.xeb_c00128{left:622.400000pt;}
.xe0_c00128{left:623.600000pt;}
.xc2_c00128{left:625.600000pt;}
.x9a_c00128{left:627.466667pt;}
.xef_c00128{left:628.666667pt;}
.xb2_c00128{left:630.133333pt;}
.xd5_c00128{left:635.733333pt;}
.x110_c00128{left:637.066667pt;}
.xa9_c00128{left:641.866667pt;}
.xf0_c00128{left:648.533333pt;}
.x10c_c00128{left:652.800000pt;}
.x113_c00128{left:654.933333pt;}
.xe5_c00128{left:657.200000pt;}
.xb3_c00128{left:659.600000pt;}
.xb8_c00128{left:661.333333pt;}
.xad_c00128{left:662.666667pt;}
.x9b_c00128{left:668.133333pt;}
.x101_c00128{left:675.466667pt;}
.xd1_c00128{left:677.066667pt;}
.x120_c00128{left:678.000000pt;}
.x2_c00128{left:680.400000pt;}
.x108_c00128{left:681.333333pt;}
.xb9_c00128{left:682.666667pt;}
.x114_c00128{left:685.066667pt;}
.xd8_c00128{left:686.266667pt;}
.xc9_c00128{left:687.200000pt;}
.xd6_c00128{left:688.266667pt;}
.xe6_c00128{left:689.866667pt;}
.xc3_c00128{left:690.933333pt;}
.xdb_c00128{left:697.066667pt;}
}





/* 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_c00129 {
    display:none;
  }
  .loading-indicator_c00129.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00129 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_c00129 { 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_c00129" -> "#page-container .classname_c00129")
 */
.pf_c00129 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00129 { /* 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_c00129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00129 { /* 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_c00129 { /* 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_c00129 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00129 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00129 {overflow:visible;}
  }
}
.c_c00129 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00129 { /* 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_c00129:after { /* webkit #35443 */
  content: '';
}
.t_c00129:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00129 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 */
}
.__c00129 { /* 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_c00129 { /* info for Javascript */
  display:none;
}
.l_c00129 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00129 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00129 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00129: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_c00129 {
    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_c00129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00129.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_c00129 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00129;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.000000;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;}
.ma8_c00129{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00129{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md1_c00129{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00129{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m31_c00129{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00129{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00129{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.me4_c00129{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m32_c00129{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md4_c00129{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md3_c00129{transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00129{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00129{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00129{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00129{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00129{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m34_c00129{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7_c00129{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m100_c00129{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00129{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00129{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mca_c00129{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00129{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m74_c00129{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m104_c00129{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00129{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00129{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00129{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00129{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m87_c00129{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00129{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00129{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00129{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m107_c00129{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00129{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m83_c00129{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00129{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.maf_c00129{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m62_c00129{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m13_c00129{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m25_c00129{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00129{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m17_c00129{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00129{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m113_c00129{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m9_c00129{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m0_c00129{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m14_c00129{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.me5_c00129{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00129{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m16_c00129{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.med_c00129{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m36_c00129{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m52_c00129{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00129{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00129{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00129{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m91_c00129{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00129{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00129{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m116_c00129{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m105_c00129{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m64_c00129{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m101_c00129{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00129{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00129{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m40_c00129{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00129{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md8_c00129{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m19_c00129{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00129{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m61_c00129{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m73_c00129{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00129{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m108_c00129{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m112_c00129{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m103_c00129{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00129{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mea_c00129{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mab_c00129{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00129{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00129{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.mf_c00129{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mce_c00129{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md6_c00129{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m71_c00129{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md7_c00129{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m89_c00129{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.maa_c00129{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00129{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00129{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me2_c00129{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00129{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m106_c00129{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00129{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me1_c00129{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m47_c00129{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m82_c00129{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m18_c00129{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md9_c00129{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00129{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m10_c00129{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00129{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m41_c00129{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00129{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me0_c00129{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00129{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00129{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m23_c00129{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00129{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00129{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md_c00129{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m65_c00129{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m90_c00129{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m85_c00129{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m63_c00129{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m102_c00129{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00129{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00129{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00129{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me3_c00129{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00129{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mff_c00129{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00129{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00129{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00129{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00129{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m38_c00129{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00129{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m22_c00129{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00129{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00129{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m59_c00129{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m60_c00129{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me8_c00129{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mee_c00129{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md0_c00129{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00129{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m50_c00129{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m15_c00129{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00129{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00129{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb_c00129{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m99_c00129{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m44_c00129{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.meb_c00129{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m45_c00129{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00129{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00129{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m111_c00129{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00129{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8_c00129{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00129{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m42_c00129{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00129{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m110_c00129{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00129{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00129{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m98_c00129{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me_c00129{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00129{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mec_c00129{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m79_c00129{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mac_c00129{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m77_c00129{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00129{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m94_c00129{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m24_c00129{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m43_c00129{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m84_c00129{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00129{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00129{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m21_c00129{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mad_c00129{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m58_c00129{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m20_c00129{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00129{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m12_c00129{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00129{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m88_c00129{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00129{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m76_c00129{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me9_c00129{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00129{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m33_c00129{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mc_c00129{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m11_c00129{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00129{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m29_c00129{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00129{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m53_c00129{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me6_c00129{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m86_c00129{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mda_c00129{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00129{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m95_c00129{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00129{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00129{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00129{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00129{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00129{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m39_c00129{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m49_c00129{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m115_c00129{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00129{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m67_c00129{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m56_c00129{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00129{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m54_c00129{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00129{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m92_c00129{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.me7_c00129{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00129{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md5_c00129{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00129{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00129{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00129{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00129{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00129{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00129{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);}
.m78_c00129{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00129{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00129{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00129{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m51_c00129{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m37_c00129{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m114_c00129{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00129{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m72_c00129{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00129{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m57_c00129{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mef_c00129{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m28_c00129{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m117_c00129{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m30_c00129{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m69_c00129{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00129{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00129{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6_c00129{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m27_c00129{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00129{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00129{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00129{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m81_c00129{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mba_c00129{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.md2_c00129{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00129{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00129{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00129{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m55_c00129{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m48_c00129{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m80_c00129{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m26_c00129{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m97_c00129{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m93_c00129{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00129{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m46_c00129{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m109_c00129{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00129{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mde_c00129{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00129{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00129{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00129{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m68_c00129{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00129{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m70_c00129{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m96_c00129{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00129{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00129{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m66_c00129{transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);}
.mae_c00129{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00129{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m118_c00129{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00129{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m119_c00129{transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);}
.m75_c00129{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00129{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00129{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m35_c00129{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00129{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls3_c00129{letter-spacing:0.000000px;}
.ls0_c00129{letter-spacing:40.447307px;}
.ls1_c00129{letter-spacing:53.428954px;}
.ls2_c00129{letter-spacing:63.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{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__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00129{word-spacing:-90.000000px;}
.ws9_c00129{word-spacing:-80.428954px;}
.ws5_c00129{word-spacing:-67.447307px;}
.ws14_c00129{word-spacing:-10.441341px;}
.ws16_c00129{word-spacing:-3.472222px;}
.wse_c00129{word-spacing:-3.454545px;}
.ws18_c00129{word-spacing:0.000000px;}
.ws17_c00129{word-spacing:4.291214px;}
.ws10_c00129{word-spacing:4.738832px;}
.ws15_c00129{word-spacing:12.857143px;}
.ws0_c00129{word-spacing:19.994638px;}
.ws2_c00129{word-spacing:22.142857px;}
.ws6_c00129{word-spacing:23.211796px;}
.ws12_c00129{word-spacing:25.714286px;}
.ws4_c00129{word-spacing:26.428954px;}
.ws11_c00129{word-spacing:29.285714px;}
.ws7_c00129{word-spacing:32.250000px;}
.wsa_c00129{word-spacing:39.750000px;}
.ws1_c00129{word-spacing:40.000000px;}
.wsd_c00129{word-spacing:52.841612px;}
.ws13_c00129{word-spacing:60.000000px;}
.ws3_c00129{word-spacing:67.631579px;}
.wsf_c00129{word-spacing:121.666667px;}
.ws8_c00129{word-spacing:150.894934px;}
.wsb_c00129{word-spacing:192.352941px;}
._3_c00129{margin-left:-63.000000px;}
._2_c00129{margin-left:-53.428954px;}
._1_c00129{margin-left:-40.447307px;}
._5_c00129{width:45.595238px;}
._0_c00129{width:50.211796px;}
._4_c00129{width:59.285714px;}
._6_c00129{width:64.642857px;}
.fc0_c00129{color:transparent;}
.fs6_c00129{font-size:36.000000px;}
.fs4_c00129{font-size:48.000000px;}
.fs5_c00129{font-size:54.000000px;}
.fs3_c00129{font-size:60.000000px;}
.fs1_c00129{font-size:66.000000px;}
.fs2_c00129{font-size:72.000000px;}
.fs0_c00129{font-size:114.000000px;}
.y0_c00129{bottom:0.000000px;}
.y65_c00129{bottom:198.000000px;}
.y32_c00129{bottom:201.000000px;}
.y64_c00129{bottom:216.300000px;}
.y31_c00129{bottom:218.700000px;}
.y30_c00129{bottom:236.400000px;}
.y63_c00129{bottom:241.500000px;}
.y2f_c00129{bottom:254.400000px;}
.y62_c00129{bottom:257.850000px;}
.y61_c00129{bottom:270.450000px;}
.y2e_c00129{bottom:272.100000px;}
.y60_c00129{bottom:283.350000px;}
.y2d_c00129{bottom:289.800000px;}
.y5f_c00129{bottom:298.050000px;}
.y2c_c00129{bottom:312.000000px;}
.y5e_c00129{bottom:315.750000px;}
.y2b_c00129{bottom:329.700000px;}
.y5d_c00129{bottom:334.500000px;}
.y2a_c00129{bottom:360.450000px;}
.y5c_c00129{bottom:360.600000px;}
.y5b_c00129{bottom:378.300000px;}
.y29_c00129{bottom:385.950000px;}
.y5a_c00129{bottom:396.300000px;}
.y28_c00129{bottom:411.450000px;}
.y59_c00129{bottom:414.000000px;}
.y27_c00129{bottom:430.500000px;}
.y58_c00129{bottom:440.550000px;}
.y26_c00129{bottom:448.500000px;}
.y57_c00129{bottom:458.250000px;}
.y25_c00129{bottom:466.500000px;}
.y24_c00129{bottom:484.500000px;}
.y56_c00129{bottom:489.600000px;}
.y23_c00129{bottom:507.000000px;}
.y55_c00129{bottom:516.600000px;}
.y22_c00129{bottom:525.000000px;}
.y21_c00129{bottom:543.000000px;}
.y54_c00129{bottom:543.450000px;}
.y20_c00129{bottom:561.000000px;}
.y53_c00129{bottom:561.450000px;}
.y1f_c00129{bottom:579.000000px;}
.y52_c00129{bottom:579.150000px;}
.y51_c00129{bottom:597.150000px;}
.y1e_c00129{bottom:604.500000px;}
.y50_c00129{bottom:615.150000px;}
.y1d_c00129{bottom:619.200000px;}
.y4f_c00129{bottom:632.850000px;}
.y1c_c00129{bottom:633.900000px;}
.y1b_c00129{bottom:648.000000px;}
.y4e_c00129{bottom:650.850000px;}
.y1a_c00129{bottom:662.400000px;}
.y4d_c00129{bottom:668.550000px;}
.y19_c00129{bottom:677.100000px;}
.y18_c00129{bottom:692.250000px;}
.y4c_c00129{bottom:695.100000px;}
.y4b_c00129{bottom:712.800000px;}
.y17_c00129{bottom:713.550000px;}
.y4a_c00129{bottom:730.800000px;}
.y16_c00129{bottom:733.350000px;}
.y49_c00129{bottom:749.100000px;}
.y15_c00129{bottom:751.350000px;}
.y48_c00129{bottom:766.350000px;}
.y14_c00129{bottom:771.750000px;}
.y47_c00129{bottom:784.350000px;}
.y13_c00129{bottom:791.550000px;}
.y46_c00129{bottom:802.350000px;}
.y12_c00129{bottom:808.800000px;}
.y45_c00129{bottom:820.350000px;}
.y11_c00129{bottom:826.500000px;}
.y44_c00129{bottom:838.050000px;}
.y10_c00129{bottom:844.500000px;}
.y43_c00129{bottom:856.050000px;}
.yf_c00129{bottom:874.500000px;}
.y42_c00129{bottom:882.300000px;}
.y41_c00129{bottom:900.600000px;}
.ye_c00129{bottom:900.750000px;}
.y40_c00129{bottom:918.300000px;}
.yd_c00129{bottom:919.800000px;}
.y3f_c00129{bottom:936.000000px;}
.yc_c00129{bottom:937.500000px;}
.y3e_c00129{bottom:954.000000px;}
.yb_c00129{bottom:963.750000px;}
.ya_c00129{bottom:977.400000px;}
.y3c_c00129{bottom:979.200000px;}
.y9_c00129{bottom:991.800000px;}
.y3b_c00129{bottom:993.300000px;}
.y8_c00129{bottom:1005.150000px;}
.y3a_c00129{bottom:1007.850000px;}
.y7_c00129{bottom:1017.000000px;}
.y39_c00129{bottom:1022.250000px;}
.y38_c00129{bottom:1036.350000px;}
.y6_c00129{bottom:1036.800000px;}
.y3d_c00129{bottom:1049.400000px;}
.y37_c00129{bottom:1050.750000px;}
.y5_c00129{bottom:1061.250000px;}
.y36_c00129{bottom:1066.650000px;}
.y4_c00129{bottom:1080.000000px;}
.y35_c00129{bottom:1089.600000px;}
.y3_c00129{bottom:1099.050000px;}
.y34_c00129{bottom:1107.300000px;}
.y2_c00129{bottom:1124.700000px;}
.y33_c00129{bottom:1125.300000px;}
.y1_c00129{bottom:1152.000000px;}
.h8_c00129{height:36.000000px;}
.h6_c00129{height:48.000000px;}
.h7_c00129{height:54.000000px;}
.h5_c00129{height:60.000000px;}
.h3_c00129{height:66.000000px;}
.h4_c00129{height:72.000000px;}
.h2_c00129{height:114.000000px;}
.h1_c00129{height:1281.000000px;}
.h0_c00129{height:1281.240051px;}
.w1_c00129{width:953.250000px;}
.w0_c00129{width:953.280030px;}
.x0_c00129{left:0.000000px;}
.x5b_c00129{left:163.800000px;}
.x22_c00129{left:164.850000px;}
.x1_c00129{left:165.900000px;}
.x3_c00129{left:167.100000px;}
.x4_c00129{left:177.600000px;}
.x85_c00129{left:181.200000px;}
.x36_c00129{left:182.400000px;}
.x10_c00129{left:183.750000px;}
.x73_c00129{left:191.550000px;}
.x69_c00129{left:192.600000px;}
.x2a_c00129{left:194.250000px;}
.x3a_c00129{left:200.850000px;}
.x94_c00129{left:202.200000px;}
.xb_c00129{left:203.400000px;}
.x18_c00129{left:205.350000px;}
.x93_c00129{left:208.350000px;}
.x8a_c00129{left:209.400000px;}
.x5_c00129{left:210.750000px;}
.x19_c00129{left:211.950000px;}
.x2e_c00129{left:214.200000px;}
.x7c_c00129{left:220.350000px;}
.x60_c00129{left:222.150000px;}
.x3c_c00129{left:223.650000px;}
.x89_c00129{left:225.750000px;}
.x23_c00129{left:226.800000px;}
.x42_c00129{left:228.900000px;}
.x57_c00129{left:231.000000px;}
.x2f_c00129{left:232.950000px;}
.x11_c00129{left:234.900000px;}
.x3f_c00129{left:238.650000px;}
.x80_c00129{left:240.450000px;}
.x3d_c00129{left:241.950000px;}
.x61_c00129{left:243.450000px;}
.x77_c00129{left:245.250000px;}
.x4d_c00129{left:246.450000px;}
.x90_c00129{left:248.250000px;}
.x6_c00129{left:249.300000px;}
.x62_c00129{left:250.650000px;}
.x32_c00129{left:252.750000px;}
.x52_c00129{left:254.100000px;}
.x88_c00129{left:256.500000px;}
.x63_c00129{left:257.850000px;}
.x71_c00129{left:259.350000px;}
.x6c_c00129{left:261.450000px;}
.x81_c00129{left:263.400000px;}
.x64_c00129{left:265.350000px;}
.x95_c00129{left:267.300000px;}
.x43_c00129{left:268.800000px;}
.x37_c00129{left:270.300000px;}
.x5c_c00129{left:271.800000px;}
.x4a_c00129{left:275.550000px;}
.x12_c00129{left:276.600000px;}
.x55_c00129{left:279.150000px;}
.x1a_c00129{left:282.450000px;}
.x3b_c00129{left:285.750000px;}
.x65_c00129{left:286.950000px;}
.x6d_c00129{left:288.150000px;}
.x4e_c00129{left:290.700000px;}
.x24_c00129{left:292.350000px;}
.x5d_c00129{left:296.700000px;}
.x84_c00129{left:298.200000px;}
.x74_c00129{left:299.550000px;}
.x91_c00129{left:304.050000px;}
.x44_c00129{left:305.850000px;}
.xc_c00129{left:307.350000px;}
.x53_c00129{left:308.700000px;}
.x3e_c00129{left:311.400000px;}
.x25_c00129{left:312.900000px;}
.x13_c00129{left:315.150000px;}
.x2b_c00129{left:316.950000px;}
.x4f_c00129{left:318.000000px;}
.x75_c00129{left:321.450000px;}
.x38_c00129{left:323.550000px;}
.x7_c00129{left:325.650000px;}
.x54_c00129{left:327.000000px;}
.x8d_c00129{left:329.250000px;}
.x6e_c00129{left:330.300000px;}
.x2c_c00129{left:331.650000px;}
.x1b_c00129{left:334.350000px;}
.x86_c00129{left:336.000000px;}
.x66_c00129{left:337.350000px;}
.x58_c00129{left:338.400000px;}
.x7e_c00129{left:339.750000px;}
.x45_c00129{left:343.350000px;}
.x67_c00129{left:344.550000px;}
.x33_c00129{left:346.950000px;}
.x79_c00129{left:348.600000px;}
.x4b_c00129{left:351.150000px;}
.x82_c00129{left:353.700000px;}
.x26_c00129{left:355.800000px;}
.x5e_c00129{left:358.950000px;}
.x46_c00129{left:360.600000px;}
.x14_c00129{left:363.000000px;}
.x8_c00129{left:364.950000px;}
.x6a_c00129{left:366.900000px;}
.xd_c00129{left:368.250000px;}
.x6f_c00129{left:373.500000px;}
.x9_c00129{left:374.700000px;}
.x1c_c00129{left:378.300000px;}
.x47_c00129{left:380.100000px;}
.x40_c00129{left:381.900000px;}
.x34_c00129{left:385.050000px;}
.x48_c00129{left:389.100000px;}
.x8c_c00129{left:393.600000px;}
.x50_c00129{left:394.650000px;}
.x15_c00129{left:397.500000px;}
.x27_c00129{left:398.700000px;}
.x78_c00129{left:401.100000px;}
.x6b_c00129{left:402.900000px;}
.x2_c00129{left:404.250000px;}
.xe_c00129{left:408.150000px;}
.x70_c00129{left:409.800000px;}
.x30_c00129{left:411.450000px;}
.x49_c00129{left:413.550000px;}
.x83_c00129{left:414.600000px;}
.x35_c00129{left:416.400000px;}
.x39_c00129{left:418.200000px;}
.x1d_c00129{left:420.750000px;}
.x1f_c00129{left:422.700000px;}
.x92_c00129{left:425.700000px;}
.x76_c00129{left:428.400000px;}
.x56_c00129{left:429.600000px;}
.x2d_c00129{left:431.100000px;}
.x28_c00129{left:432.600000px;}
.x8e_c00129{left:435.150000px;}
.xa_c00129{left:436.950000px;}
.x7d_c00129{left:439.200000px;}
.x41_c00129{left:442.800000px;}
.x4c_c00129{left:445.500000px;}
.x87_c00129{left:448.050000px;}
.x7f_c00129{left:451.050000px;}
.x5f_c00129{left:452.100000px;}
.x20_c00129{left:453.600000px;}
.x16_c00129{left:455.100000px;}
.x72_c00129{left:458.100000px;}
.x31_c00129{left:459.750000px;}
.x29_c00129{left:461.400000px;}
.x59_c00129{left:465.450000px;}
.x8f_c00129{left:468.600000px;}
.x8b_c00129{left:470.100000px;}
.xf_c00129{left:471.450000px;}
.x17_c00129{left:474.600000px;}
.x5a_c00129{left:479.550000px;}
.x68_c00129{left:480.600000px;}
.x7a_c00129{left:483.900000px;}
.x51_c00129{left:485.700000px;}
.x21_c00129{left:487.050000px;}
.x1e_c00129{left:489.450000px;}
.x7b_c00129{left:493.650000px;}
.x126_c00129{left:518.100000px;}
.x116_c00129{left:519.450000px;}
.x119_c00129{left:521.700000px;}
.x96_c00129{left:523.500000px;}
.x11a_c00129{left:531.000000px;}
.x11c_c00129{left:534.000000px;}
.xc5_c00129{left:536.250000px;}
.xb1_c00129{left:537.750000px;}
.x9d_c00129{left:539.400000px;}
.xa5_c00129{left:540.750000px;}
.x129_c00129{left:546.450000px;}
.xb3_c00129{left:551.400000px;}
.x105_c00129{left:555.900000px;}
.xe3_c00129{left:556.950000px;}
.x104_c00129{left:559.950000px;}
.xf8_c00129{left:561.150000px;}
.xfb_c00129{left:563.250000px;}
.x10e_c00129{left:565.950000px;}
.x97_c00129{left:569.550000px;}
.xb7_c00129{left:571.500000px;}
.xd6_c00129{left:573.450000px;}
.x115_c00129{left:574.950000px;}
.x9e_c00129{left:577.200000px;}
.xa6_c00129{left:578.550000px;}
.xe2_c00129{left:580.050000px;}
.x117_c00129{left:581.700000px;}
.xaa_c00129{left:582.750000px;}
.x11d_c00129{left:584.700000px;}
.x112_c00129{left:586.050000px;}
.x12a_c00129{left:587.850000px;}
.xb8_c00129{left:589.500000px;}
.xdd_c00129{left:591.600000px;}
.xf3_c00129{left:593.850000px;}
.xfc_c00129{left:595.650000px;}
.xbe_c00129{left:598.200000px;}
.xd7_c00129{left:599.400000px;}
.xc1_c00129{left:602.700000px;}
.xb9_c00129{left:603.900000px;}
.xcb_c00129{left:605.850000px;}
.xf7_c00129{left:607.500000px;}
.x113_c00129{left:608.700000px;}
.xea_c00129{left:610.500000px;}
.xfd_c00129{left:611.550000px;}
.x110_c00129{left:613.050000px;}
.xf9_c00129{left:616.200000px;}
.xc6_c00129{left:618.300000px;}
.xcf_c00129{left:619.800000px;}
.x11e_c00129{left:621.000000px;}
.x101_c00129{left:622.650000px;}
.x9f_c00129{left:624.300000px;}
.xab_c00129{left:627.000000px;}
.x12c_c00129{left:628.650000px;}
.xfe_c00129{left:630.600000px;}
.xe4_c00129{left:632.850000px;}
.xe8_c00129{left:633.900000px;}
.x98_c00129{left:636.900000px;}
.x10f_c00129{left:639.450000px;}
.xc2_c00129{left:640.500000px;}
.x111_c00129{left:641.850000px;}
.xb4_c00129{left:644.250000px;}
.xa0_c00129{left:646.200000px;}
.xac_c00129{left:648.600000px;}
.xf4_c00129{left:651.750000px;}
.x10d_c00129{left:656.250000px;}
.xb5_c00129{left:658.650000px;}
.xa7_c00129{left:661.650000px;}
.xd8_c00129{left:663.450000px;}
.xb6_c00129{left:665.550000px;}
.x124_c00129{left:668.550000px;}
.xf5_c00129{left:669.750000px;}
.xba_c00129{left:671.550000px;}
.xc3_c00129{left:675.900000px;}
.xa1_c00129{left:681.150000px;}
.xd9_c00129{left:682.200000px;}
.xef_c00129{left:683.400000px;}
.xeb_c00129{left:684.600000px;}
.xd0_c00129{left:685.800000px;}
.xff_c00129{left:687.450000px;}
.x99_c00129{left:689.100000px;}
.x102_c00129{left:690.750000px;}
.xf6_c00129{left:692.100000px;}
.xd1_c00129{left:694.500000px;}
.x12b_c00129{left:695.850000px;}
.x118_c00129{left:702.000000px;}
.xa2_c00129{left:703.800000px;}
.xa8_c00129{left:706.650000px;}
.xc7_c00129{left:709.800000px;}
.x11f_c00129{left:711.000000px;}
.x106_c00129{left:712.200000px;}
.xf0_c00129{left:713.250000px;}
.xad_c00129{left:715.500000px;}
.xc4_c00129{left:716.550000px;}
.xe5_c00129{left:718.950000px;}
.xfa_c00129{left:720.900000px;}
.xbf_c00129{left:723.750000px;}
.xde_c00129{left:725.250000px;}
.x120_c00129{left:728.250000px;}
.x114_c00129{left:730.050000px;}
.x9a_c00129{left:732.300000px;}
.x127_c00129{left:733.350000px;}
.xda_c00129{left:736.200000px;}
.xc8_c00129{left:738.300000px;}
.xec_c00129{left:740.700000px;}
.xcc_c00129{left:742.350000px;}
.xc9_c00129{left:745.800000px;}
.xe9_c00129{left:747.000000px;}
.xa9_c00129{left:748.050000px;}
.xcd_c00129{left:749.850000px;}
.xf1_c00129{left:754.650000px;}
.xa3_c00129{left:755.700000px;}
.xd2_c00129{left:756.750000px;}
.xdf_c00129{left:759.450000px;}
.xbb_c00129{left:760.800000px;}
.x128_c00129{left:762.450000px;}
.xdb_c00129{left:763.950000px;}
.xc0_c00129{left:767.700000px;}
.xbc_c00129{left:768.750000px;}
.x121_c00129{left:772.650000px;}
.x122_c00129{left:777.450000px;}
.xae_c00129{left:779.250000px;}
.xe0_c00129{left:781.350000px;}
.xdc_c00129{left:783.000000px;}
.x109_c00129{left:786.300000px;}
.xb2_c00129{left:787.650000px;}
.x103_c00129{left:793.650000px;}
.xd3_c00129{left:796.350000px;}
.xe6_c00129{left:798.150000px;}
.x11b_c00129{left:799.650000px;}
.xed_c00129{left:800.700000px;}
.x10b_c00129{left:802.500000px;}
.xd4_c00129{left:804.600000px;}
.x9b_c00129{left:807.150000px;}
.x10a_c00129{left:808.200000px;}
.xaf_c00129{left:810.600000px;}
.x12d_c00129{left:813.750000px;}
.xbd_c00129{left:816.750000px;}
.xa4_c00129{left:817.950000px;}
.x100_c00129{left:820.200000px;}
.x107_c00129{left:822.000000px;}
.xe7_c00129{left:823.650000px;}
.x10c_c00129{left:824.850000px;}
.xce_c00129{left:829.800000px;}
.xe1_c00129{left:834.300000px;}
.x125_c00129{left:839.250000px;}
.xd5_c00129{left:840.600000px;}
.xf2_c00129{left:841.800000px;}
.x108_c00129{left:842.850000px;}
.xb0_c00129{left:844.500000px;}
.xca_c00129{left:846.300000px;}
.x9c_c00129{left:847.500000px;}
.xee_c00129{left:853.950000px;}
.x123_c00129{left:866.400000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls3_c00129{letter-spacing:0.000000pt;}
.ls0_c00129{letter-spacing:35.953162pt;}
.ls1_c00129{letter-spacing:47.492404pt;}
.ls2_c00129{letter-spacing:56.000000pt;}
.wsc_c00129{word-spacing:-80.000000pt;}
.ws9_c00129{word-spacing:-71.492404pt;}
.ws5_c00129{word-spacing:-59.953162pt;}
.ws14_c00129{word-spacing:-9.281192pt;}
.ws16_c00129{word-spacing:-3.086420pt;}
.wse_c00129{word-spacing:-3.070707pt;}
.ws18_c00129{word-spacing:0.000000pt;}
.ws17_c00129{word-spacing:3.814413pt;}
.ws10_c00129{word-spacing:4.212295pt;}
.ws15_c00129{word-spacing:11.428571pt;}
.ws0_c00129{word-spacing:17.773012pt;}
.ws2_c00129{word-spacing:19.682540pt;}
.ws6_c00129{word-spacing:20.632708pt;}
.ws12_c00129{word-spacing:22.857143pt;}
.ws4_c00129{word-spacing:23.492404pt;}
.ws11_c00129{word-spacing:26.031746pt;}
.ws7_c00129{word-spacing:28.666667pt;}
.wsa_c00129{word-spacing:35.333333pt;}
.ws1_c00129{word-spacing:35.555556pt;}
.wsd_c00129{word-spacing:46.970322pt;}
.ws13_c00129{word-spacing:53.333333pt;}
.ws3_c00129{word-spacing:60.116959pt;}
.wsf_c00129{word-spacing:108.148148pt;}
.ws8_c00129{word-spacing:134.128831pt;}
.wsb_c00129{word-spacing:170.980392pt;}
._3_c00129{margin-left:-56.000000pt;}
._2_c00129{margin-left:-47.492404pt;}
._1_c00129{margin-left:-35.953162pt;}
._5_c00129{width:40.529101pt;}
._0_c00129{width:44.632708pt;}
._4_c00129{width:52.698413pt;}
._6_c00129{width:57.460317pt;}
.fs6_c00129{font-size:32.000000pt;}
.fs4_c00129{font-size:42.666667pt;}
.fs5_c00129{font-size:48.000000pt;}
.fs3_c00129{font-size:53.333333pt;}
.fs1_c00129{font-size:58.666667pt;}
.fs2_c00129{font-size:64.000000pt;}
.fs0_c00129{font-size:101.333333pt;}
.y0_c00129{bottom:0.000000pt;}
.y65_c00129{bottom:176.000000pt;}
.y32_c00129{bottom:178.666667pt;}
.y64_c00129{bottom:192.266667pt;}
.y31_c00129{bottom:194.400000pt;}
.y30_c00129{bottom:210.133333pt;}
.y63_c00129{bottom:214.666667pt;}
.y2f_c00129{bottom:226.133333pt;}
.y62_c00129{bottom:229.200000pt;}
.y61_c00129{bottom:240.400000pt;}
.y2e_c00129{bottom:241.866667pt;}
.y60_c00129{bottom:251.866667pt;}
.y2d_c00129{bottom:257.600000pt;}
.y5f_c00129{bottom:264.933333pt;}
.y2c_c00129{bottom:277.333333pt;}
.y5e_c00129{bottom:280.666667pt;}
.y2b_c00129{bottom:293.066667pt;}
.y5d_c00129{bottom:297.333333pt;}
.y2a_c00129{bottom:320.400000pt;}
.y5c_c00129{bottom:320.533333pt;}
.y5b_c00129{bottom:336.266667pt;}
.y29_c00129{bottom:343.066667pt;}
.y5a_c00129{bottom:352.266667pt;}
.y28_c00129{bottom:365.733333pt;}
.y59_c00129{bottom:368.000000pt;}
.y27_c00129{bottom:382.666667pt;}
.y58_c00129{bottom:391.600000pt;}
.y26_c00129{bottom:398.666667pt;}
.y57_c00129{bottom:407.333333pt;}
.y25_c00129{bottom:414.666667pt;}
.y24_c00129{bottom:430.666667pt;}
.y56_c00129{bottom:435.200000pt;}
.y23_c00129{bottom:450.666667pt;}
.y55_c00129{bottom:459.200000pt;}
.y22_c00129{bottom:466.666667pt;}
.y21_c00129{bottom:482.666667pt;}
.y54_c00129{bottom:483.066667pt;}
.y20_c00129{bottom:498.666667pt;}
.y53_c00129{bottom:499.066667pt;}
.y1f_c00129{bottom:514.666667pt;}
.y52_c00129{bottom:514.800000pt;}
.y51_c00129{bottom:530.800000pt;}
.y1e_c00129{bottom:537.333333pt;}
.y50_c00129{bottom:546.800000pt;}
.y1d_c00129{bottom:550.400000pt;}
.y4f_c00129{bottom:562.533333pt;}
.y1c_c00129{bottom:563.466667pt;}
.y1b_c00129{bottom:576.000000pt;}
.y4e_c00129{bottom:578.533333pt;}
.y1a_c00129{bottom:588.800000pt;}
.y4d_c00129{bottom:594.266667pt;}
.y19_c00129{bottom:601.866667pt;}
.y18_c00129{bottom:615.333333pt;}
.y4c_c00129{bottom:617.866667pt;}
.y4b_c00129{bottom:633.600000pt;}
.y17_c00129{bottom:634.266667pt;}
.y4a_c00129{bottom:649.600000pt;}
.y16_c00129{bottom:651.866667pt;}
.y49_c00129{bottom:665.866667pt;}
.y15_c00129{bottom:667.866667pt;}
.y48_c00129{bottom:681.200000pt;}
.y14_c00129{bottom:686.000000pt;}
.y47_c00129{bottom:697.200000pt;}
.y13_c00129{bottom:703.600000pt;}
.y46_c00129{bottom:713.200000pt;}
.y12_c00129{bottom:718.933333pt;}
.y45_c00129{bottom:729.200000pt;}
.y11_c00129{bottom:734.666667pt;}
.y44_c00129{bottom:744.933333pt;}
.y10_c00129{bottom:750.666667pt;}
.y43_c00129{bottom:760.933333pt;}
.yf_c00129{bottom:777.333333pt;}
.y42_c00129{bottom:784.266667pt;}
.y41_c00129{bottom:800.533333pt;}
.ye_c00129{bottom:800.666667pt;}
.y40_c00129{bottom:816.266667pt;}
.yd_c00129{bottom:817.600000pt;}
.y3f_c00129{bottom:832.000000pt;}
.yc_c00129{bottom:833.333333pt;}
.y3e_c00129{bottom:848.000000pt;}
.yb_c00129{bottom:856.666667pt;}
.ya_c00129{bottom:868.800000pt;}
.y3c_c00129{bottom:870.400000pt;}
.y9_c00129{bottom:881.600000pt;}
.y3b_c00129{bottom:882.933333pt;}
.y8_c00129{bottom:893.466667pt;}
.y3a_c00129{bottom:895.866667pt;}
.y7_c00129{bottom:904.000000pt;}
.y39_c00129{bottom:908.666667pt;}
.y38_c00129{bottom:921.200000pt;}
.y6_c00129{bottom:921.600000pt;}
.y3d_c00129{bottom:932.800000pt;}
.y37_c00129{bottom:934.000000pt;}
.y5_c00129{bottom:943.333333pt;}
.y36_c00129{bottom:948.133333pt;}
.y4_c00129{bottom:960.000000pt;}
.y35_c00129{bottom:968.533333pt;}
.y3_c00129{bottom:976.933333pt;}
.y34_c00129{bottom:984.266667pt;}
.y2_c00129{bottom:999.733333pt;}
.y33_c00129{bottom:1000.266667pt;}
.y1_c00129{bottom:1024.000000pt;}
.h8_c00129{height:32.000000pt;}
.h6_c00129{height:42.666667pt;}
.h7_c00129{height:48.000000pt;}
.h5_c00129{height:53.333333pt;}
.h3_c00129{height:58.666667pt;}
.h4_c00129{height:64.000000pt;}
.h2_c00129{height:101.333333pt;}
.h1_c00129{height:1138.666667pt;}
.h0_c00129{height:1138.880045pt;}
.w1_c00129{width:847.333333pt;}
.w0_c00129{width:847.360027pt;}
.x0_c00129{left:0.000000pt;}
.x5b_c00129{left:145.600000pt;}
.x22_c00129{left:146.533333pt;}
.x1_c00129{left:147.466667pt;}
.x3_c00129{left:148.533333pt;}
.x4_c00129{left:157.866667pt;}
.x85_c00129{left:161.066667pt;}
.x36_c00129{left:162.133333pt;}
.x10_c00129{left:163.333333pt;}
.x73_c00129{left:170.266667pt;}
.x69_c00129{left:171.200000pt;}
.x2a_c00129{left:172.666667pt;}
.x3a_c00129{left:178.533333pt;}
.x94_c00129{left:179.733333pt;}
.xb_c00129{left:180.800000pt;}
.x18_c00129{left:182.533333pt;}
.x93_c00129{left:185.200000pt;}
.x8a_c00129{left:186.133333pt;}
.x5_c00129{left:187.333333pt;}
.x19_c00129{left:188.400000pt;}
.x2e_c00129{left:190.400000pt;}
.x7c_c00129{left:195.866667pt;}
.x60_c00129{left:197.466667pt;}
.x3c_c00129{left:198.800000pt;}
.x89_c00129{left:200.666667pt;}
.x23_c00129{left:201.600000pt;}
.x42_c00129{left:203.466667pt;}
.x57_c00129{left:205.333333pt;}
.x2f_c00129{left:207.066667pt;}
.x11_c00129{left:208.800000pt;}
.x3f_c00129{left:212.133333pt;}
.x80_c00129{left:213.733333pt;}
.x3d_c00129{left:215.066667pt;}
.x61_c00129{left:216.400000pt;}
.x77_c00129{left:218.000000pt;}
.x4d_c00129{left:219.066667pt;}
.x90_c00129{left:220.666667pt;}
.x6_c00129{left:221.600000pt;}
.x62_c00129{left:222.800000pt;}
.x32_c00129{left:224.666667pt;}
.x52_c00129{left:225.866667pt;}
.x88_c00129{left:228.000000pt;}
.x63_c00129{left:229.200000pt;}
.x71_c00129{left:230.533333pt;}
.x6c_c00129{left:232.400000pt;}
.x81_c00129{left:234.133333pt;}
.x64_c00129{left:235.866667pt;}
.x95_c00129{left:237.600000pt;}
.x43_c00129{left:238.933333pt;}
.x37_c00129{left:240.266667pt;}
.x5c_c00129{left:241.600000pt;}
.x4a_c00129{left:244.933333pt;}
.x12_c00129{left:245.866667pt;}
.x55_c00129{left:248.133333pt;}
.x1a_c00129{left:251.066667pt;}
.x3b_c00129{left:254.000000pt;}
.x65_c00129{left:255.066667pt;}
.x6d_c00129{left:256.133333pt;}
.x4e_c00129{left:258.400000pt;}
.x24_c00129{left:259.866667pt;}
.x5d_c00129{left:263.733333pt;}
.x84_c00129{left:265.066667pt;}
.x74_c00129{left:266.266667pt;}
.x91_c00129{left:270.266667pt;}
.x44_c00129{left:271.866667pt;}
.xc_c00129{left:273.200000pt;}
.x53_c00129{left:274.400000pt;}
.x3e_c00129{left:276.800000pt;}
.x25_c00129{left:278.133333pt;}
.x13_c00129{left:280.133333pt;}
.x2b_c00129{left:281.733333pt;}
.x4f_c00129{left:282.666667pt;}
.x75_c00129{left:285.733333pt;}
.x38_c00129{left:287.600000pt;}
.x7_c00129{left:289.466667pt;}
.x54_c00129{left:290.666667pt;}
.x8d_c00129{left:292.666667pt;}
.x6e_c00129{left:293.600000pt;}
.x2c_c00129{left:294.800000pt;}
.x1b_c00129{left:297.200000pt;}
.x86_c00129{left:298.666667pt;}
.x66_c00129{left:299.866667pt;}
.x58_c00129{left:300.800000pt;}
.x7e_c00129{left:302.000000pt;}
.x45_c00129{left:305.200000pt;}
.x67_c00129{left:306.266667pt;}
.x33_c00129{left:308.400000pt;}
.x79_c00129{left:309.866667pt;}
.x4b_c00129{left:312.133333pt;}
.x82_c00129{left:314.400000pt;}
.x26_c00129{left:316.266667pt;}
.x5e_c00129{left:319.066667pt;}
.x46_c00129{left:320.533333pt;}
.x14_c00129{left:322.666667pt;}
.x8_c00129{left:324.400000pt;}
.x6a_c00129{left:326.133333pt;}
.xd_c00129{left:327.333333pt;}
.x6f_c00129{left:332.000000pt;}
.x9_c00129{left:333.066667pt;}
.x1c_c00129{left:336.266667pt;}
.x47_c00129{left:337.866667pt;}
.x40_c00129{left:339.466667pt;}
.x34_c00129{left:342.266667pt;}
.x48_c00129{left:345.866667pt;}
.x8c_c00129{left:349.866667pt;}
.x50_c00129{left:350.800000pt;}
.x15_c00129{left:353.333333pt;}
.x27_c00129{left:354.400000pt;}
.x78_c00129{left:356.533333pt;}
.x6b_c00129{left:358.133333pt;}
.x2_c00129{left:359.333333pt;}
.xe_c00129{left:362.800000pt;}
.x70_c00129{left:364.266667pt;}
.x30_c00129{left:365.733333pt;}
.x49_c00129{left:367.600000pt;}
.x83_c00129{left:368.533333pt;}
.x35_c00129{left:370.133333pt;}
.x39_c00129{left:371.733333pt;}
.x1d_c00129{left:374.000000pt;}
.x1f_c00129{left:375.733333pt;}
.x92_c00129{left:378.400000pt;}
.x76_c00129{left:380.800000pt;}
.x56_c00129{left:381.866667pt;}
.x2d_c00129{left:383.200000pt;}
.x28_c00129{left:384.533333pt;}
.x8e_c00129{left:386.800000pt;}
.xa_c00129{left:388.400000pt;}
.x7d_c00129{left:390.400000pt;}
.x41_c00129{left:393.600000pt;}
.x4c_c00129{left:396.000000pt;}
.x87_c00129{left:398.266667pt;}
.x7f_c00129{left:400.933333pt;}
.x5f_c00129{left:401.866667pt;}
.x20_c00129{left:403.200000pt;}
.x16_c00129{left:404.533333pt;}
.x72_c00129{left:407.200000pt;}
.x31_c00129{left:408.666667pt;}
.x29_c00129{left:410.133333pt;}
.x59_c00129{left:413.733333pt;}
.x8f_c00129{left:416.533333pt;}
.x8b_c00129{left:417.866667pt;}
.xf_c00129{left:419.066667pt;}
.x17_c00129{left:421.866667pt;}
.x5a_c00129{left:426.266667pt;}
.x68_c00129{left:427.200000pt;}
.x7a_c00129{left:430.133333pt;}
.x51_c00129{left:431.733333pt;}
.x21_c00129{left:432.933333pt;}
.x1e_c00129{left:435.066667pt;}
.x7b_c00129{left:438.800000pt;}
.x126_c00129{left:460.533333pt;}
.x116_c00129{left:461.733333pt;}
.x119_c00129{left:463.733333pt;}
.x96_c00129{left:465.333333pt;}
.x11a_c00129{left:472.000000pt;}
.x11c_c00129{left:474.666667pt;}
.xc5_c00129{left:476.666667pt;}
.xb1_c00129{left:478.000000pt;}
.x9d_c00129{left:479.466667pt;}
.xa5_c00129{left:480.666667pt;}
.x129_c00129{left:485.733333pt;}
.xb3_c00129{left:490.133333pt;}
.x105_c00129{left:494.133333pt;}
.xe3_c00129{left:495.066667pt;}
.x104_c00129{left:497.733333pt;}
.xf8_c00129{left:498.800000pt;}
.xfb_c00129{left:500.666667pt;}
.x10e_c00129{left:503.066667pt;}
.x97_c00129{left:506.266667pt;}
.xb7_c00129{left:508.000000pt;}
.xd6_c00129{left:509.733333pt;}
.x115_c00129{left:511.066667pt;}
.x9e_c00129{left:513.066667pt;}
.xa6_c00129{left:514.266667pt;}
.xe2_c00129{left:515.600000pt;}
.x117_c00129{left:517.066667pt;}
.xaa_c00129{left:518.000000pt;}
.x11d_c00129{left:519.733333pt;}
.x112_c00129{left:520.933333pt;}
.x12a_c00129{left:522.533333pt;}
.xb8_c00129{left:524.000000pt;}
.xdd_c00129{left:525.866667pt;}
.xf3_c00129{left:527.866667pt;}
.xfc_c00129{left:529.466667pt;}
.xbe_c00129{left:531.733333pt;}
.xd7_c00129{left:532.800000pt;}
.xc1_c00129{left:535.733333pt;}
.xb9_c00129{left:536.800000pt;}
.xcb_c00129{left:538.533333pt;}
.xf7_c00129{left:540.000000pt;}
.x113_c00129{left:541.066667pt;}
.xea_c00129{left:542.666667pt;}
.xfd_c00129{left:543.600000pt;}
.x110_c00129{left:544.933333pt;}
.xf9_c00129{left:547.733333pt;}
.xc6_c00129{left:549.600000pt;}
.xcf_c00129{left:550.933333pt;}
.x11e_c00129{left:552.000000pt;}
.x101_c00129{left:553.466667pt;}
.x9f_c00129{left:554.933333pt;}
.xab_c00129{left:557.333333pt;}
.x12c_c00129{left:558.800000pt;}
.xfe_c00129{left:560.533333pt;}
.xe4_c00129{left:562.533333pt;}
.xe8_c00129{left:563.466667pt;}
.x98_c00129{left:566.133333pt;}
.x10f_c00129{left:568.400000pt;}
.xc2_c00129{left:569.333333pt;}
.x111_c00129{left:570.533333pt;}
.xb4_c00129{left:572.666667pt;}
.xa0_c00129{left:574.400000pt;}
.xac_c00129{left:576.533333pt;}
.xf4_c00129{left:579.333333pt;}
.x10d_c00129{left:583.333333pt;}
.xb5_c00129{left:585.466667pt;}
.xa7_c00129{left:588.133333pt;}
.xd8_c00129{left:589.733333pt;}
.xb6_c00129{left:591.600000pt;}
.x124_c00129{left:594.266667pt;}
.xf5_c00129{left:595.333333pt;}
.xba_c00129{left:596.933333pt;}
.xc3_c00129{left:600.800000pt;}
.xa1_c00129{left:605.466667pt;}
.xd9_c00129{left:606.400000pt;}
.xef_c00129{left:607.466667pt;}
.xeb_c00129{left:608.533333pt;}
.xd0_c00129{left:609.600000pt;}
.xff_c00129{left:611.066667pt;}
.x99_c00129{left:612.533333pt;}
.x102_c00129{left:614.000000pt;}
.xf6_c00129{left:615.200000pt;}
.xd1_c00129{left:617.333333pt;}
.x12b_c00129{left:618.533333pt;}
.x118_c00129{left:624.000000pt;}
.xa2_c00129{left:625.600000pt;}
.xa8_c00129{left:628.133333pt;}
.xc7_c00129{left:630.933333pt;}
.x11f_c00129{left:632.000000pt;}
.x106_c00129{left:633.066667pt;}
.xf0_c00129{left:634.000000pt;}
.xad_c00129{left:636.000000pt;}
.xc4_c00129{left:636.933333pt;}
.xe5_c00129{left:639.066667pt;}
.xfa_c00129{left:640.800000pt;}
.xbf_c00129{left:643.333333pt;}
.xde_c00129{left:644.666667pt;}
.x120_c00129{left:647.333333pt;}
.x114_c00129{left:648.933333pt;}
.x9a_c00129{left:650.933333pt;}
.x127_c00129{left:651.866667pt;}
.xda_c00129{left:654.400000pt;}
.xc8_c00129{left:656.266667pt;}
.xec_c00129{left:658.400000pt;}
.xcc_c00129{left:659.866667pt;}
.xc9_c00129{left:662.933333pt;}
.xe9_c00129{left:664.000000pt;}
.xa9_c00129{left:664.933333pt;}
.xcd_c00129{left:666.533333pt;}
.xf1_c00129{left:670.800000pt;}
.xa3_c00129{left:671.733333pt;}
.xd2_c00129{left:672.666667pt;}
.xdf_c00129{left:675.066667pt;}
.xbb_c00129{left:676.266667pt;}
.x128_c00129{left:677.733333pt;}
.xdb_c00129{left:679.066667pt;}
.xc0_c00129{left:682.400000pt;}
.xbc_c00129{left:683.333333pt;}
.x121_c00129{left:686.800000pt;}
.x122_c00129{left:691.066667pt;}
.xae_c00129{left:692.666667pt;}
.xe0_c00129{left:694.533333pt;}
.xdc_c00129{left:696.000000pt;}
.x109_c00129{left:698.933333pt;}
.xb2_c00129{left:700.133333pt;}
.x103_c00129{left:705.466667pt;}
.xd3_c00129{left:707.866667pt;}
.xe6_c00129{left:709.466667pt;}
.x11b_c00129{left:710.800000pt;}
.xed_c00129{left:711.733333pt;}
.x10b_c00129{left:713.333333pt;}
.xd4_c00129{left:715.200000pt;}
.x9b_c00129{left:717.466667pt;}
.x10a_c00129{left:718.400000pt;}
.xaf_c00129{left:720.533333pt;}
.x12d_c00129{left:723.333333pt;}
.xbd_c00129{left:726.000000pt;}
.xa4_c00129{left:727.066667pt;}
.x100_c00129{left:729.066667pt;}
.x107_c00129{left:730.666667pt;}
.xe7_c00129{left:732.133333pt;}
.x10c_c00129{left:733.200000pt;}
.xce_c00129{left:737.600000pt;}
.xe1_c00129{left:741.600000pt;}
.x125_c00129{left:746.000000pt;}
.xd5_c00129{left:747.200000pt;}
.xf2_c00129{left:748.266667pt;}
.x108_c00129{left:749.200000pt;}
.xb0_c00129{left:750.666667pt;}
.xca_c00129{left:752.266667pt;}
.x9c_c00129{left:753.333333pt;}
.xee_c00129{left:759.066667pt;}
.x123_c00129{left:770.133333pt;}
}





/* 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_c00130 {
    display:none;
  }
  .loading-indicator_c00130.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00130 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_c00130 { 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_c00130" -> "#page-container .classname_c00130")
 */
.pf_c00130 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00130 { /* 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_c00130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00130 { /* 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_c00130 { /* 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_c00130 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00130 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00130 {overflow:visible;}
  }
}
.c_c00130 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00130 { /* 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_c00130:after { /* webkit #35443 */
  content: '';
}
.t_c00130:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00130 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 */
}
.__c00130 { /* 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_c00130 { /* info for Javascript */
  display:none;
}
.l_c00130 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00130 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00130 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00130: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_c00130 {
    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_c00130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00130.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_c00130 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00130;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.000000;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;}
.mda_c00130{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md7_c00130{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00130{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md5_c00130{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00130{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md6_c00130{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mea_c00130{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00130{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00130{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m56_c00130{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md8_c00130{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m61_c00130{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m63_c00130{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00130{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00130{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00130{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma_c00130{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00130{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m50_c00130{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m53_c00130{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m48_c00130{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m24_c00130{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mab_c00130{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m52_c00130{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00130{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m46_c00130{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00130{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00130{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00130{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m72_c00130{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m33_c00130{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00130{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00130{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.me1_c00130{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00130{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00130{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.md1_c00130{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m5_c00130{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00130{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.maa_c00130{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m39_c00130{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00130{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.md4_c00130{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00130{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m66_c00130{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00130{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00130{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m59_c00130{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m74_c00130{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me3_c00130{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m55_c00130{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00130{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m6_c00130{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.md_c00130{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m29_c00130{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00130{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m21_c00130{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m10_c00130{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00130{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00130{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00130{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.maf_c00130{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00130{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m28_c00130{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m106_c00130{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m73_c00130{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m14_c00130{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m102_c00130{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00130{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m45_c00130{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00130{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m58_c00130{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00130{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m34_c00130{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m16_c00130{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m64_c00130{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00130{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00130{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00130{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m32_c00130{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m88_c00130{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m78_c00130{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m3_c00130{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mff_c00130{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00130{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m87_c00130{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00130{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m62_c00130{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00130{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00130{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me7_c00130{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00130{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00130{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00130{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m93_c00130{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00130{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m47_c00130{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m100_c00130{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m60_c00130{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00130{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m68_c00130{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md0_c00130{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m67_c00130{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m20_c00130{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00130{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m31_c00130{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m71_c00130{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.meb_c00130{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m54_c00130{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00130{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00130{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00130{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m35_c00130{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m18_c00130{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00130{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m92_c00130{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m75_c00130{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m4_c00130{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m25_c00130{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00130{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m30_c00130{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00130{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m80_c00130{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00130{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m44_c00130{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8_c00130{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mca_c00130{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00130{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m105_c00130{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc_c00130{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m101_c00130{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m76_c00130{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mde_c00130{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m83_c00130{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00130{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00130{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00130{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m37_c00130{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m109_c00130{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00130{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00130{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m12_c00130{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m91_c00130{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00130{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mce_c00130{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00130{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00130{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00130{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00130{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m57_c00130{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m13_c00130{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00130{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m81_c00130{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00130{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00130{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m65_c00130{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00130{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00130{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00130{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00130{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m70_c00130{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00130{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m11_c00130{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00130{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7_c00130{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m94_c00130{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00130{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m77_c00130{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00130{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00130{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m38_c00130{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00130{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m108_c00130{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md3_c00130{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mee_c00130{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mb_c00130{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m23_c00130{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00130{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mec_c00130{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00130{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00130{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00130{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00130{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me2_c00130{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m15_c00130{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00130{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m43_c00130{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00130{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00130{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m36_c00130{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00130{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md2_c00130{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me6_c00130{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00130{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00130{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m104_c00130{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.me5_c00130{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00130{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mf_c00130{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00130{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m96_c00130{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00130{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m99_c00130{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00130{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00130{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m79_c00130{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00130{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00130{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00130{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m27_c00130{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9_c00130{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m90_c00130{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00130{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m82_c00130{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);}
.m95_c00130{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m26_c00130{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00130{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00130{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m69_c00130{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m98_c00130{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m40_c00130{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m42_c00130{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m89_c00130{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m97_c00130{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00130{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00130{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.me_c00130{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00130{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00130{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m51_c00130{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00130{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m107_c00130{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00130{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00130{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00130{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me9_c00130{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m85_c00130{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00130{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00130{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m41_c00130{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00130{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00130{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m86_c00130{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mef_c00130{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m84_c00130{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me8_c00130{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m19_c00130{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mba_c00130{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m49_c00130{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00130{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.me0_c00130{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.me4_c00130{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m103_c00130{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m17_c00130{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.mae_c00130{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00130{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00130{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m22_c00130{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.md9_c00130{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00130{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00130{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mac_c00130{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.mad_c00130{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{transform:matrix(0.517000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00130{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.med_c00130{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls1_c00130{letter-spacing:0.000000px;}
.ls0_c00130{letter-spacing:49.521490px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{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__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00130{word-spacing:-82.521490px;}
.wsd_c00130{word-spacing:-0.666667px;}
.wse_c00130{word-spacing:0.000000px;}
.wsc_c00130{word-spacing:6.500000px;}
.ws4_c00130{word-spacing:15.000000px;}
.ws3_c00130{word-spacing:15.583643px;}
.wsb_c00130{word-spacing:16.785714px;}
.ws0_c00130{word-spacing:25.714286px;}
.ws9_c00130{word-spacing:29.285714px;}
.ws6_c00130{word-spacing:39.343511px;}
.ws8_c00130{word-spacing:40.000000px;}
.ws5_c00130{word-spacing:60.000000px;}
.ws2_c00130{word-spacing:142.252129px;}
.wsa_c00130{word-spacing:144.545455px;}
.ws1_c00130{word-spacing:372.142857px;}
._0_c00130{margin-left:-49.521490px;}
._1_c00130{width:59.285714px;}
.fc0_c00130{color:transparent;}
.fs6_c00130{font-size:30.000000px;}
.fs5_c00130{font-size:48.000000px;}
.fs4_c00130{font-size:54.000000px;}
.fs2_c00130{font-size:60.000000px;}
.fs1_c00130{font-size:66.000000px;}
.fs3_c00130{font-size:72.000000px;}
.fs0_c00130{font-size:78.000000px;}
.y0_c00130{bottom:0.000000px;}
.y62_c00130{bottom:169.500000px;}
.y32_c00130{bottom:186.450000px;}
.y61_c00130{bottom:186.750000px;}
.y31_c00130{bottom:204.450000px;}
.y60_c00130{bottom:205.500000px;}
.y30_c00130{bottom:222.750000px;}
.y5f_c00130{bottom:223.500000px;}
.y2f_c00130{bottom:240.450000px;}
.y5e_c00130{bottom:241.500000px;}
.y2e_c00130{bottom:258.150000px;}
.y5d_c00130{bottom:259.500000px;}
.y5c_c00130{bottom:277.200000px;}
.y2d_c00130{bottom:282.300000px;}
.y5b_c00130{bottom:294.900000px;}
.y2c_c00130{bottom:298.200000px;}
.y2b_c00130{bottom:311.100000px;}
.y5a_c00130{bottom:324.750000px;}
.y2a_c00130{bottom:329.100000px;}
.y29_c00130{bottom:347.400000px;}
.y59_c00130{bottom:348.450000px;}
.y28_c00130{bottom:365.400000px;}
.y58_c00130{bottom:366.150000px;}
.y27_c00130{bottom:383.400000px;}
.y57_c00130{bottom:384.450000px;}
.y26_c00130{bottom:404.250000px;}
.y56_c00130{bottom:414.900000px;}
.y25_c00130{bottom:427.950000px;}
.y55_c00130{bottom:432.900000px;}
.y24_c00130{bottom:445.950000px;}
.y54_c00130{bottom:450.600000px;}
.y23_c00130{bottom:463.650000px;}
.y53_c00130{bottom:468.300000px;}
.y22_c00130{bottom:481.650000px;}
.y52_c00130{bottom:494.700000px;}
.y21_c00130{bottom:507.300000px;}
.y51_c00130{bottom:513.000000px;}
.y20_c00130{bottom:525.600000px;}
.y50_c00130{bottom:544.650000px;}
.y1f_c00130{bottom:556.500000px;}
.y4f_c00130{bottom:570.600000px;}
.y1e_c00130{bottom:583.500000px;}
.y4e_c00130{bottom:597.000000px;}
.y1d_c00130{bottom:610.500000px;}
.y4d_c00130{bottom:615.750000px;}
.y1c_c00130{bottom:628.500000px;}
.y4c_c00130{bottom:633.750000px;}
.y1b_c00130{bottom:646.200000px;}
.y4b_c00130{bottom:651.450000px;}
.y1a_c00130{bottom:664.200000px;}
.y4a_c00130{bottom:669.150000px;}
.y19_c00130{bottom:682.500000px;}
.y49_c00130{bottom:686.850000px;}
.y18_c00130{bottom:699.750000px;}
.y48_c00130{bottom:716.100000px;}
.y17_c00130{bottom:717.750000px;}
.y47_c00130{bottom:731.550000px;}
.y16_c00130{bottom:735.750000px;}
.y46_c00130{bottom:745.950000px;}
.y15_c00130{bottom:753.450000px;}
.y45_c00130{bottom:758.550000px;}
.y14_c00130{bottom:771.450000px;}
.y44_c00130{bottom:776.550000px;}
.y43_c00130{bottom:794.850000px;}
.y13_c00130{bottom:796.650000px;}
.y12_c00130{bottom:811.500000px;}
.y42_c00130{bottom:812.850000px;}
.y11_c00130{bottom:825.900000px;}
.y41_c00130{bottom:830.850000px;}
.y10_c00130{bottom:838.800000px;}
.y40_c00130{bottom:856.800000px;}
.yf_c00130{bottom:858.150000px;}
.y3f_c00130{bottom:874.500000px;}
.ye_c00130{bottom:875.850000px;}
.y3e_c00130{bottom:892.500000px;}
.yd_c00130{bottom:893.850000px;}
.y3d_c00130{bottom:910.500000px;}
.yc_c00130{bottom:920.400000px;}
.y3c_c00130{bottom:927.750000px;}
.yb_c00130{bottom:938.100000px;}
.y3b_c00130{bottom:954.300000px;}
.ya_c00130{bottom:956.100000px;}
.y3a_c00130{bottom:972.300000px;}
.y9_c00130{bottom:973.800000px;}
.y8_c00130{bottom:1000.500000px;}
.y39_c00130{bottom:1003.650000px;}
.y7_c00130{bottom:1018.500000px;}
.y38_c00130{bottom:1029.900000px;}
.y6_c00130{bottom:1049.400000px;}
.y37_c00130{bottom:1057.050000px;}
.y36_c00130{bottom:1075.050000px;}
.y5_c00130{bottom:1076.100000px;}
.y35_c00130{bottom:1093.350000px;}
.y4_c00130{bottom:1094.400000px;}
.y34_c00130{bottom:1111.350000px;}
.y3_c00130{bottom:1111.650000px;}
.y1_c00130{bottom:1137.300000px;}
.y2_c00130{bottom:1138.050000px;}
.y33_c00130{bottom:1268.250000px;}
.h8_c00130{height:30.000000px;}
.h7_c00130{height:48.000000px;}
.h6_c00130{height:54.000000px;}
.h4_c00130{height:60.000000px;}
.h3_c00130{height:66.000000px;}
.h5_c00130{height:72.000000px;}
.h2_c00130{height:78.000000px;}
.h1_c00130{height:1271.250000px;}
.h0_c00130{height:1271.519990px;}
.w1_c00130{width:953.250000px;}
.w0_c00130{width:953.280030px;}
.x0_c00130{left:0.000000px;}
.x82_c00130{left:92.850000px;}
.x45_c00130{left:95.100000px;}
.x17_c00130{left:96.900000px;}
.x1b_c00130{left:99.000000px;}
.x81_c00130{left:111.750000px;}
.x88_c00130{left:113.400000px;}
.x3b_c00130{left:115.050000px;}
.x3_c00130{left:116.250000px;}
.x86_c00130{left:125.250000px;}
.x4a_c00130{left:126.450000px;}
.x40_c00130{left:133.800000px;}
.x20_c00130{left:135.000000px;}
.x7a_c00130{left:139.350000px;}
.x1c_c00130{left:142.950000px;}
.x21_c00130{left:144.000000px;}
.x30_c00130{left:146.400000px;}
.x91_c00130{left:150.750000px;}
.xa_c00130{left:154.500000px;}
.x83_c00130{left:156.150000px;}
.x18_c00130{left:157.350000px;}
.x4_c00130{left:159.450000px;}
.x5d_c00130{left:161.700000px;}
.x57_c00130{left:163.350000px;}
.xb_c00130{left:166.050000px;}
.x31_c00130{left:171.600000px;}
.x6f_c00130{left:173.250000px;}
.x19_c00130{left:174.600000px;}
.xc_c00130{left:176.850000px;}
.x3c_c00130{left:178.800000px;}
.x5_c00130{left:180.750000px;}
.x41_c00130{left:183.150000px;}
.x22_c00130{left:185.700000px;}
.x5e_c00130{left:187.650000px;}
.x13_c00130{left:189.450000px;}
.x79_c00130{left:190.650000px;}
.x26_c00130{left:192.900000px;}
.x92_c00130{left:193.950000px;}
.x6b_c00130{left:195.150000px;}
.x46_c00130{left:196.200000px;}
.xd_c00130{left:199.500000px;}
.x64_c00130{left:201.450000px;}
.x2c_c00130{left:205.200000px;}
.x14_c00130{left:208.950000px;}
.x37_c00130{left:211.200000px;}
.x5f_c00130{left:212.850000px;}
.x32_c00130{left:218.100000px;}
.x70_c00130{left:220.050000px;}
.x4b_c00130{left:221.100000px;}
.xe_c00130{left:227.550000px;}
.x15_c00130{left:232.350000px;}
.x76_c00130{left:234.750000px;}
.x74_c00130{left:236.100000px;}
.x51_c00130{left:237.600000px;}
.x33_c00130{left:238.650000px;}
.x42_c00130{left:241.050000px;}
.x3d_c00130{left:242.850000px;}
.x1a_c00130{left:244.050000px;}
.x8e_c00130{left:245.250000px;}
.x67_c00130{left:246.450000px;}
.x4c_c00130{left:250.200000px;}
.x7d_c00130{left:251.700000px;}
.x62_c00130{left:254.700000px;}
.x6_c00130{left:257.850000px;}
.x1d_c00130{left:260.700000px;}
.x27_c00130{left:262.050000px;}
.x93_c00130{left:263.100000px;}
.x38_c00130{left:264.450000px;}
.x58_c00130{left:267.000000px;}
.x16_c00130{left:269.400000px;}
.x52_c00130{left:274.350000px;}
.x6d_c00130{left:277.950000px;}
.x28_c00130{left:280.050000px;}
.x7b_c00130{left:282.300000px;}
.x7_c00130{left:283.800000px;}
.x89_c00130{left:285.000000px;}
.xf_c00130{left:286.200000px;}
.x53_c00130{left:287.250000px;}
.x77_c00130{left:289.050000px;}
.x68_c00130{left:291.150000px;}
.x4d_c00130{left:292.950000px;}
.x29_c00130{left:294.450000px;}
.x6e_c00130{left:298.050000px;}
.x4e_c00130{left:300.900000px;}
.x75_c00130{left:302.700000px;}
.x3e_c00130{left:304.350000px;}
.x59_c00130{left:306.600000px;}
.x34_c00130{left:308.100000px;}
.x2a_c00130{left:311.400000px;}
.x65_c00130{left:312.600000px;}
.x23_c00130{left:314.850000px;}
.x2d_c00130{left:318.300000px;}
.x39_c00130{left:320.250000px;}
.x10_c00130{left:321.900000px;}
.x63_c00130{left:323.100000px;}
.x5a_c00130{left:324.300000px;}
.x60_c00130{left:327.000000px;}
.x84_c00130{left:329.400000px;}
.x8a_c00130{left:331.500000px;}
.x1e_c00130{left:332.700000px;}
.x54_c00130{left:334.350000px;}
.x85_c00130{left:335.850000px;}
.x8f_c00130{left:337.350000px;}
.x7e_c00130{left:339.150000px;}
.x1_c00130{left:340.500000px;}
.x11_c00130{left:343.200000px;}
.x35_c00130{left:345.150000px;}
.x5b_c00130{left:346.950000px;}
.x2b_c00130{left:348.450000px;}
.x3f_c00130{left:350.100000px;}
.x43_c00130{left:353.850000px;}
.x8b_c00130{left:355.950000px;}
.x66_c00130{left:358.650000px;}
.x7f_c00130{left:360.450000px;}
.x8_c00130{left:361.950000px;}
.x47_c00130{left:363.300000px;}
.x50_c00130{left:364.950000px;}
.x72_c00130{left:369.150000px;}
.x71_c00130{left:370.800000px;}
.x2e_c00130{left:372.750000px;}
.x78_c00130{left:375.000000px;}
.x69_c00130{left:376.800000px;}
.x73_c00130{left:377.850000px;}
.x36_c00130{left:378.900000px;}
.x24_c00130{left:379.950000px;}
.x90_c00130{left:384.150000px;}
.x9_c00130{left:386.100000px;}
.x6c_c00130{left:387.750000px;}
.x55_c00130{left:390.150000px;}
.x5c_c00130{left:391.500000px;}
.x48_c00130{left:392.850000px;}
.x25_c00130{left:394.050000px;}
.x12_c00130{left:395.700000px;}
.x7c_c00130{left:397.350000px;}
.x2f_c00130{left:398.700000px;}
.x87_c00130{left:401.100000px;}
.x3a_c00130{left:402.300000px;}
.x6a_c00130{left:405.300000px;}
.x1f_c00130{left:408.000000px;}
.x80_c00130{left:410.550000px;}
.x4f_c00130{left:415.650000px;}
.x56_c00130{left:417.900000px;}
.x44_c00130{left:419.400000px;}
.x49_c00130{left:421.650000px;}
.x8c_c00130{left:422.850000px;}
.x61_c00130{left:430.500000px;}
.x8d_c00130{left:431.550000px;}
.xdd_c00130{left:454.350000px;}
.xcc_c00130{left:455.400000px;}
.xae_c00130{left:456.900000px;}
.xaf_c00130{left:466.200000px;}
.xff_c00130{left:470.400000px;}
.xaa_c00130{left:471.450000px;}
.x9d_c00130{left:472.650000px;}
.x112_c00130{left:473.700000px;}
.xec_c00130{left:482.550000px;}
.xe5_c00130{left:483.600000px;}
.x98_c00130{left:490.650000px;}
.xfa_c00130{left:491.700000px;}
.x103_c00130{left:493.050000px;}
.xb0_c00130{left:496.800000px;}
.xcd_c00130{left:498.300000px;}
.xfb_c00130{left:500.700000px;}
.xd6_c00130{left:503.550000px;}
.xc9_c00130{left:505.800000px;}
.x113_c00130{left:509.700000px;}
.x9e_c00130{left:510.750000px;}
.xde_c00130{left:511.950000px;}
.xf2_c00130{left:514.050000px;}
.x10b_c00130{left:515.550000px;}
.xca_c00130{left:523.800000px;}
.x109_c00130{left:526.800000px;}
.xd7_c00130{left:529.050000px;}
.xf9_c00130{left:530.250000px;}
.xb1_c00130{left:533.100000px;}
.x10a_c00130{left:534.750000px;}
.xc4_c00130{left:538.500000px;}
.x114_c00130{left:541.800000px;}
.x10d_c00130{left:542.850000px;}
.xf3_c00130{left:544.500000px;}
.xb8_c00130{left:549.150000px;}
.xdf_c00130{left:550.500000px;}
.xab_c00130{left:552.600000px;}
.xa3_c00130{left:554.250000px;}
.xcb_c00130{left:557.250000px;}
.xfc_c00130{left:559.350000px;}
.xac_c00130{left:560.550000px;}
.xd1_c00130{left:563.550000px;}
.xa4_c00130{left:566.850000px;}
.x100_c00130{left:568.650000px;}
.xc0_c00130{left:571.350000px;}
.xf4_c00130{left:573.000000px;}
.x10c_c00130{left:576.750000px;}
.x110_c00130{left:578.550000px;}
.x99_c00130{left:580.650000px;}
.x104_c00130{left:581.850000px;}
.xb5_c00130{left:583.200000px;}
.x9f_c00130{left:584.550000px;}
.xad_c00130{left:585.750000px;}
.xe6_c00130{left:587.250000px;}
.xe0_c00130{left:589.050000px;}
.xf6_c00130{left:590.700000px;}
.xe7_c00130{left:593.700000px;}
.xb9_c00130{left:594.900000px;}
.xa5_c00130{left:602.100000px;}
.x105_c00130{left:604.200000px;}
.xd2_c00130{left:606.000000px;}
.xe1_c00130{left:608.100000px;}
.xb2_c00130{left:609.750000px;}
.xc5_c00130{left:613.050000px;}
.xed_c00130{left:614.100000px;}
.xce_c00130{left:617.400000px;}
.x108_c00130{left:620.700000px;}
.xe8_c00130{left:622.500000px;}
.xd8_c00130{left:624.150000px;}
.xb3_c00130{left:625.200000px;}
.xf5_c00130{left:627.000000px;}
.xee_c00130{left:628.800000px;}
.xe9_c00130{left:630.000000px;}
.x9a_c00130{left:631.050000px;}
.xa0_c00130{left:632.400000px;}
.x111_c00130{left:635.400000px;}
.xea_c00130{left:637.200000px;}
.xc6_c00130{left:641.100000px;}
.xef_c00130{left:643.200000px;}
.x94_c00130{left:645.900000px;}
.xa6_c00130{left:647.850000px;}
.xb6_c00130{left:649.500000px;}
.xe2_c00130{left:651.300000px;}
.x115_c00130{left:655.500000px;}
.x95_c00130{left:656.700000px;}
.xd3_c00130{left:658.200000px;}
.xba_c00130{left:663.300000px;}
.xe3_c00130{left:665.700000px;}
.x96_c00130{left:670.800000px;}
.xd9_c00130{left:672.000000px;}
.xfd_c00130{left:673.800000px;}
.x117_c00130{left:678.750000px;}
.xc1_c00130{left:679.800000px;}
.xbb_c00130{left:683.400000px;}
.xa1_c00130{left:686.700000px;}
.xa7_c00130{left:689.250000px;}
.x106_c00130{left:691.950000px;}
.xf0_c00130{left:694.200000px;}
.xfe_c00130{left:696.150000px;}
.xcf_c00130{left:697.650000px;}
.x118_c00130{left:699.600000px;}
.xbc_c00130{left:701.700000px;}
.x97_c00130{left:704.700000px;}
.xc7_c00130{left:706.650000px;}
.x10e_c00130{left:707.700000px;}
.x9b_c00130{left:709.200000px;}
.xf1_c00130{left:710.700000px;}
.xdb_c00130{left:711.750000px;}
.x107_c00130{left:713.250000px;}
.xf7_c00130{left:718.350000px;}
.xd4_c00130{left:720.450000px;}
.xeb_c00130{left:721.500000px;}
.xc8_c00130{left:727.950000px;}
.x10f_c00130{left:731.850000px;}
.x101_c00130{left:733.500000px;}
.xc2_c00130{left:734.850000px;}
.xbd_c00130{left:736.950000px;}
.xa8_c00130{left:739.650000px;}
.xdc_c00130{left:742.650000px;}
.xa2_c00130{left:745.050000px;}
.xda_c00130{left:746.850000px;}
.xb4_c00130{left:749.850000px;}
.xb7_c00130{left:751.050000px;}
.x116_c00130{left:757.500000px;}
.xbe_c00130{left:759.300000px;}
.x102_c00130{left:761.250000px;}
.xa9_c00130{left:764.850000px;}
.x2_c00130{left:766.350000px;}
.xd5_c00130{left:769.350000px;}
.xbf_c00130{left:775.200000px;}
.x9c_c00130{left:777.600000px;}
.xe4_c00130{left:779.100000px;}
.xd0_c00130{left:780.150000px;}
.xf8_c00130{left:781.350000px;}
.xc3_c00130{left:789.150000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls1_c00130{letter-spacing:0.000000pt;}
.ls0_c00130{letter-spacing:44.019102pt;}
.ws7_c00130{word-spacing:-73.352436pt;}
.wsd_c00130{word-spacing:-0.592593pt;}
.wse_c00130{word-spacing:0.000000pt;}
.wsc_c00130{word-spacing:5.777778pt;}
.ws4_c00130{word-spacing:13.333333pt;}
.ws3_c00130{word-spacing:13.852127pt;}
.wsb_c00130{word-spacing:14.920635pt;}
.ws0_c00130{word-spacing:22.857143pt;}
.ws9_c00130{word-spacing:26.031746pt;}
.ws6_c00130{word-spacing:34.972010pt;}
.ws8_c00130{word-spacing:35.555556pt;}
.ws5_c00130{word-spacing:53.333333pt;}
.ws2_c00130{word-spacing:126.446337pt;}
.wsa_c00130{word-spacing:128.484848pt;}
.ws1_c00130{word-spacing:330.793651pt;}
._0_c00130{margin-left:-44.019102pt;}
._1_c00130{width:52.698413pt;}
.fs6_c00130{font-size:26.666667pt;}
.fs5_c00130{font-size:42.666667pt;}
.fs4_c00130{font-size:48.000000pt;}
.fs2_c00130{font-size:53.333333pt;}
.fs1_c00130{font-size:58.666667pt;}
.fs3_c00130{font-size:64.000000pt;}
.fs0_c00130{font-size:69.333333pt;}
.y0_c00130{bottom:0.000000pt;}
.y62_c00130{bottom:150.666667pt;}
.y32_c00130{bottom:165.733333pt;}
.y61_c00130{bottom:166.000000pt;}
.y31_c00130{bottom:181.733333pt;}
.y60_c00130{bottom:182.666667pt;}
.y30_c00130{bottom:198.000000pt;}
.y5f_c00130{bottom:198.666667pt;}
.y2f_c00130{bottom:213.733333pt;}
.y5e_c00130{bottom:214.666667pt;}
.y2e_c00130{bottom:229.466667pt;}
.y5d_c00130{bottom:230.666667pt;}
.y5c_c00130{bottom:246.400000pt;}
.y2d_c00130{bottom:250.933333pt;}
.y5b_c00130{bottom:262.133333pt;}
.y2c_c00130{bottom:265.066667pt;}
.y2b_c00130{bottom:276.533333pt;}
.y5a_c00130{bottom:288.666667pt;}
.y2a_c00130{bottom:292.533333pt;}
.y29_c00130{bottom:308.800000pt;}
.y59_c00130{bottom:309.733333pt;}
.y28_c00130{bottom:324.800000pt;}
.y58_c00130{bottom:325.466667pt;}
.y27_c00130{bottom:340.800000pt;}
.y57_c00130{bottom:341.733333pt;}
.y26_c00130{bottom:359.333333pt;}
.y56_c00130{bottom:368.800000pt;}
.y25_c00130{bottom:380.400000pt;}
.y55_c00130{bottom:384.800000pt;}
.y24_c00130{bottom:396.400000pt;}
.y54_c00130{bottom:400.533333pt;}
.y23_c00130{bottom:412.133333pt;}
.y53_c00130{bottom:416.266667pt;}
.y22_c00130{bottom:428.133333pt;}
.y52_c00130{bottom:439.733333pt;}
.y21_c00130{bottom:450.933333pt;}
.y51_c00130{bottom:456.000000pt;}
.y20_c00130{bottom:467.200000pt;}
.y50_c00130{bottom:484.133333pt;}
.y1f_c00130{bottom:494.666667pt;}
.y4f_c00130{bottom:507.200000pt;}
.y1e_c00130{bottom:518.666667pt;}
.y4e_c00130{bottom:530.666667pt;}
.y1d_c00130{bottom:542.666667pt;}
.y4d_c00130{bottom:547.333333pt;}
.y1c_c00130{bottom:558.666667pt;}
.y4c_c00130{bottom:563.333333pt;}
.y1b_c00130{bottom:574.400000pt;}
.y4b_c00130{bottom:579.066667pt;}
.y1a_c00130{bottom:590.400000pt;}
.y4a_c00130{bottom:594.800000pt;}
.y19_c00130{bottom:606.666667pt;}
.y49_c00130{bottom:610.533333pt;}
.y18_c00130{bottom:622.000000pt;}
.y48_c00130{bottom:636.533333pt;}
.y17_c00130{bottom:638.000000pt;}
.y47_c00130{bottom:650.266667pt;}
.y16_c00130{bottom:654.000000pt;}
.y46_c00130{bottom:663.066667pt;}
.y15_c00130{bottom:669.733333pt;}
.y45_c00130{bottom:674.266667pt;}
.y14_c00130{bottom:685.733333pt;}
.y44_c00130{bottom:690.266667pt;}
.y43_c00130{bottom:706.533333pt;}
.y13_c00130{bottom:708.133333pt;}
.y12_c00130{bottom:721.333333pt;}
.y42_c00130{bottom:722.533333pt;}
.y11_c00130{bottom:734.133333pt;}
.y41_c00130{bottom:738.533333pt;}
.y10_c00130{bottom:745.600000pt;}
.y40_c00130{bottom:761.600000pt;}
.yf_c00130{bottom:762.800000pt;}
.y3f_c00130{bottom:777.333333pt;}
.ye_c00130{bottom:778.533333pt;}
.y3e_c00130{bottom:793.333333pt;}
.yd_c00130{bottom:794.533333pt;}
.y3d_c00130{bottom:809.333333pt;}
.yc_c00130{bottom:818.133333pt;}
.y3c_c00130{bottom:824.666667pt;}
.yb_c00130{bottom:833.866667pt;}
.y3b_c00130{bottom:848.266667pt;}
.ya_c00130{bottom:849.866667pt;}
.y3a_c00130{bottom:864.266667pt;}
.y9_c00130{bottom:865.600000pt;}
.y8_c00130{bottom:889.333333pt;}
.y39_c00130{bottom:892.133333pt;}
.y7_c00130{bottom:905.333333pt;}
.y38_c00130{bottom:915.466667pt;}
.y6_c00130{bottom:932.800000pt;}
.y37_c00130{bottom:939.600000pt;}
.y36_c00130{bottom:955.600000pt;}
.y5_c00130{bottom:956.533333pt;}
.y35_c00130{bottom:971.866667pt;}
.y4_c00130{bottom:972.800000pt;}
.y34_c00130{bottom:987.866667pt;}
.y3_c00130{bottom:988.133333pt;}
.y1_c00130{bottom:1010.933333pt;}
.y2_c00130{bottom:1011.600000pt;}
.y33_c00130{bottom:1127.333333pt;}
.h8_c00130{height:26.666667pt;}
.h7_c00130{height:42.666667pt;}
.h6_c00130{height:48.000000pt;}
.h4_c00130{height:53.333333pt;}
.h3_c00130{height:58.666667pt;}
.h5_c00130{height:64.000000pt;}
.h2_c00130{height:69.333333pt;}
.h1_c00130{height:1130.000000pt;}
.h0_c00130{height:1130.239991pt;}
.w1_c00130{width:847.333333pt;}
.w0_c00130{width:847.360027pt;}
.x0_c00130{left:0.000000pt;}
.x82_c00130{left:82.533333pt;}
.x45_c00130{left:84.533333pt;}
.x17_c00130{left:86.133333pt;}
.x1b_c00130{left:88.000000pt;}
.x81_c00130{left:99.333333pt;}
.x88_c00130{left:100.800000pt;}
.x3b_c00130{left:102.266667pt;}
.x3_c00130{left:103.333333pt;}
.x86_c00130{left:111.333333pt;}
.x4a_c00130{left:112.400000pt;}
.x40_c00130{left:118.933333pt;}
.x20_c00130{left:120.000000pt;}
.x7a_c00130{left:123.866667pt;}
.x1c_c00130{left:127.066667pt;}
.x21_c00130{left:128.000000pt;}
.x30_c00130{left:130.133333pt;}
.x91_c00130{left:134.000000pt;}
.xa_c00130{left:137.333333pt;}
.x83_c00130{left:138.800000pt;}
.x18_c00130{left:139.866667pt;}
.x4_c00130{left:141.733333pt;}
.x5d_c00130{left:143.733333pt;}
.x57_c00130{left:145.200000pt;}
.xb_c00130{left:147.600000pt;}
.x31_c00130{left:152.533333pt;}
.x6f_c00130{left:154.000000pt;}
.x19_c00130{left:155.200000pt;}
.xc_c00130{left:157.200000pt;}
.x3c_c00130{left:158.933333pt;}
.x5_c00130{left:160.666667pt;}
.x41_c00130{left:162.800000pt;}
.x22_c00130{left:165.066667pt;}
.x5e_c00130{left:166.800000pt;}
.x13_c00130{left:168.400000pt;}
.x79_c00130{left:169.466667pt;}
.x26_c00130{left:171.466667pt;}
.x92_c00130{left:172.400000pt;}
.x6b_c00130{left:173.466667pt;}
.x46_c00130{left:174.400000pt;}
.xd_c00130{left:177.333333pt;}
.x64_c00130{left:179.066667pt;}
.x2c_c00130{left:182.400000pt;}
.x14_c00130{left:185.733333pt;}
.x37_c00130{left:187.733333pt;}
.x5f_c00130{left:189.200000pt;}
.x32_c00130{left:193.866667pt;}
.x70_c00130{left:195.600000pt;}
.x4b_c00130{left:196.533333pt;}
.xe_c00130{left:202.266667pt;}
.x15_c00130{left:206.533333pt;}
.x76_c00130{left:208.666667pt;}
.x74_c00130{left:209.866667pt;}
.x51_c00130{left:211.200000pt;}
.x33_c00130{left:212.133333pt;}
.x42_c00130{left:214.266667pt;}
.x3d_c00130{left:215.866667pt;}
.x1a_c00130{left:216.933333pt;}
.x8e_c00130{left:218.000000pt;}
.x67_c00130{left:219.066667pt;}
.x4c_c00130{left:222.400000pt;}
.x7d_c00130{left:223.733333pt;}
.x62_c00130{left:226.400000pt;}
.x6_c00130{left:229.200000pt;}
.x1d_c00130{left:231.733333pt;}
.x27_c00130{left:232.933333pt;}
.x93_c00130{left:233.866667pt;}
.x38_c00130{left:235.066667pt;}
.x58_c00130{left:237.333333pt;}
.x16_c00130{left:239.466667pt;}
.x52_c00130{left:243.866667pt;}
.x6d_c00130{left:247.066667pt;}
.x28_c00130{left:248.933333pt;}
.x7b_c00130{left:250.933333pt;}
.x7_c00130{left:252.266667pt;}
.x89_c00130{left:253.333333pt;}
.xf_c00130{left:254.400000pt;}
.x53_c00130{left:255.333333pt;}
.x77_c00130{left:256.933333pt;}
.x68_c00130{left:258.800000pt;}
.x4d_c00130{left:260.400000pt;}
.x29_c00130{left:261.733333pt;}
.x6e_c00130{left:264.933333pt;}
.x4e_c00130{left:267.466667pt;}
.x75_c00130{left:269.066667pt;}
.x3e_c00130{left:270.533333pt;}
.x59_c00130{left:272.533333pt;}
.x34_c00130{left:273.866667pt;}
.x2a_c00130{left:276.800000pt;}
.x65_c00130{left:277.866667pt;}
.x23_c00130{left:279.866667pt;}
.x2d_c00130{left:282.933333pt;}
.x39_c00130{left:284.666667pt;}
.x10_c00130{left:286.133333pt;}
.x63_c00130{left:287.200000pt;}
.x5a_c00130{left:288.266667pt;}
.x60_c00130{left:290.666667pt;}
.x84_c00130{left:292.800000pt;}
.x8a_c00130{left:294.666667pt;}
.x1e_c00130{left:295.733333pt;}
.x54_c00130{left:297.200000pt;}
.x85_c00130{left:298.533333pt;}
.x8f_c00130{left:299.866667pt;}
.x7e_c00130{left:301.466667pt;}
.x1_c00130{left:302.666667pt;}
.x11_c00130{left:305.066667pt;}
.x35_c00130{left:306.800000pt;}
.x5b_c00130{left:308.400000pt;}
.x2b_c00130{left:309.733333pt;}
.x3f_c00130{left:311.200000pt;}
.x43_c00130{left:314.533333pt;}
.x8b_c00130{left:316.400000pt;}
.x66_c00130{left:318.800000pt;}
.x7f_c00130{left:320.400000pt;}
.x8_c00130{left:321.733333pt;}
.x47_c00130{left:322.933333pt;}
.x50_c00130{left:324.400000pt;}
.x72_c00130{left:328.133333pt;}
.x71_c00130{left:329.600000pt;}
.x2e_c00130{left:331.333333pt;}
.x78_c00130{left:333.333333pt;}
.x69_c00130{left:334.933333pt;}
.x73_c00130{left:335.866667pt;}
.x36_c00130{left:336.800000pt;}
.x24_c00130{left:337.733333pt;}
.x90_c00130{left:341.466667pt;}
.x9_c00130{left:343.200000pt;}
.x6c_c00130{left:344.666667pt;}
.x55_c00130{left:346.800000pt;}
.x5c_c00130{left:348.000000pt;}
.x48_c00130{left:349.200000pt;}
.x25_c00130{left:350.266667pt;}
.x12_c00130{left:351.733333pt;}
.x7c_c00130{left:353.200000pt;}
.x2f_c00130{left:354.400000pt;}
.x87_c00130{left:356.533333pt;}
.x3a_c00130{left:357.600000pt;}
.x6a_c00130{left:360.266667pt;}
.x1f_c00130{left:362.666667pt;}
.x80_c00130{left:364.933333pt;}
.x4f_c00130{left:369.466667pt;}
.x56_c00130{left:371.466667pt;}
.x44_c00130{left:372.800000pt;}
.x49_c00130{left:374.800000pt;}
.x8c_c00130{left:375.866667pt;}
.x61_c00130{left:382.666667pt;}
.x8d_c00130{left:383.600000pt;}
.xdd_c00130{left:403.866667pt;}
.xcc_c00130{left:404.800000pt;}
.xae_c00130{left:406.133333pt;}
.xaf_c00130{left:414.400000pt;}
.xff_c00130{left:418.133333pt;}
.xaa_c00130{left:419.066667pt;}
.x9d_c00130{left:420.133333pt;}
.x112_c00130{left:421.066667pt;}
.xec_c00130{left:428.933333pt;}
.xe5_c00130{left:429.866667pt;}
.x98_c00130{left:436.133333pt;}
.xfa_c00130{left:437.066667pt;}
.x103_c00130{left:438.266667pt;}
.xb0_c00130{left:441.600000pt;}
.xcd_c00130{left:442.933333pt;}
.xfb_c00130{left:445.066667pt;}
.xd6_c00130{left:447.600000pt;}
.xc9_c00130{left:449.600000pt;}
.x113_c00130{left:453.066667pt;}
.x9e_c00130{left:454.000000pt;}
.xde_c00130{left:455.066667pt;}
.xf2_c00130{left:456.933333pt;}
.x10b_c00130{left:458.266667pt;}
.xca_c00130{left:465.600000pt;}
.x109_c00130{left:468.266667pt;}
.xd7_c00130{left:470.266667pt;}
.xf9_c00130{left:471.333333pt;}
.xb1_c00130{left:473.866667pt;}
.x10a_c00130{left:475.333333pt;}
.xc4_c00130{left:478.666667pt;}
.x114_c00130{left:481.600000pt;}
.x10d_c00130{left:482.533333pt;}
.xf3_c00130{left:484.000000pt;}
.xb8_c00130{left:488.133333pt;}
.xdf_c00130{left:489.333333pt;}
.xab_c00130{left:491.200000pt;}
.xa3_c00130{left:492.666667pt;}
.xcb_c00130{left:495.333333pt;}
.xfc_c00130{left:497.200000pt;}
.xac_c00130{left:498.266667pt;}
.xd1_c00130{left:500.933333pt;}
.xa4_c00130{left:503.866667pt;}
.x100_c00130{left:505.466667pt;}
.xc0_c00130{left:507.866667pt;}
.xf4_c00130{left:509.333333pt;}
.x10c_c00130{left:512.666667pt;}
.x110_c00130{left:514.266667pt;}
.x99_c00130{left:516.133333pt;}
.x104_c00130{left:517.200000pt;}
.xb5_c00130{left:518.400000pt;}
.x9f_c00130{left:519.600000pt;}
.xad_c00130{left:520.666667pt;}
.xe6_c00130{left:522.000000pt;}
.xe0_c00130{left:523.600000pt;}
.xf6_c00130{left:525.066667pt;}
.xe7_c00130{left:527.733333pt;}
.xb9_c00130{left:528.800000pt;}
.xa5_c00130{left:535.200000pt;}
.x105_c00130{left:537.066667pt;}
.xd2_c00130{left:538.666667pt;}
.xe1_c00130{left:540.533333pt;}
.xb2_c00130{left:542.000000pt;}
.xc5_c00130{left:544.933333pt;}
.xed_c00130{left:545.866667pt;}
.xce_c00130{left:548.800000pt;}
.x108_c00130{left:551.733333pt;}
.xe8_c00130{left:553.333333pt;}
.xd8_c00130{left:554.800000pt;}
.xb3_c00130{left:555.733333pt;}
.xf5_c00130{left:557.333333pt;}
.xee_c00130{left:558.933333pt;}
.xe9_c00130{left:560.000000pt;}
.x9a_c00130{left:560.933333pt;}
.xa0_c00130{left:562.133333pt;}
.x111_c00130{left:564.800000pt;}
.xea_c00130{left:566.400000pt;}
.xc6_c00130{left:569.866667pt;}
.xef_c00130{left:571.733333pt;}
.x94_c00130{left:574.133333pt;}
.xa6_c00130{left:575.866667pt;}
.xb6_c00130{left:577.333333pt;}
.xe2_c00130{left:578.933333pt;}
.x115_c00130{left:582.666667pt;}
.x95_c00130{left:583.733333pt;}
.xd3_c00130{left:585.066667pt;}
.xba_c00130{left:589.600000pt;}
.xe3_c00130{left:591.733333pt;}
.x96_c00130{left:596.266667pt;}
.xd9_c00130{left:597.333333pt;}
.xfd_c00130{left:598.933333pt;}
.x117_c00130{left:603.333333pt;}
.xc1_c00130{left:604.266667pt;}
.xbb_c00130{left:607.466667pt;}
.xa1_c00130{left:610.400000pt;}
.xa7_c00130{left:612.666667pt;}
.x106_c00130{left:615.066667pt;}
.xf0_c00130{left:617.066667pt;}
.xfe_c00130{left:618.800000pt;}
.xcf_c00130{left:620.133333pt;}
.x118_c00130{left:621.866667pt;}
.xbc_c00130{left:623.733333pt;}
.x97_c00130{left:626.400000pt;}
.xc7_c00130{left:628.133333pt;}
.x10e_c00130{left:629.066667pt;}
.x9b_c00130{left:630.400000pt;}
.xf1_c00130{left:631.733333pt;}
.xdb_c00130{left:632.666667pt;}
.x107_c00130{left:634.000000pt;}
.xf7_c00130{left:638.533333pt;}
.xd4_c00130{left:640.400000pt;}
.xeb_c00130{left:641.333333pt;}
.xc8_c00130{left:647.066667pt;}
.x10f_c00130{left:650.533333pt;}
.x101_c00130{left:652.000000pt;}
.xc2_c00130{left:653.200000pt;}
.xbd_c00130{left:655.066667pt;}
.xa8_c00130{left:657.466667pt;}
.xdc_c00130{left:660.133333pt;}
.xa2_c00130{left:662.266667pt;}
.xda_c00130{left:663.866667pt;}
.xb4_c00130{left:666.533333pt;}
.xb7_c00130{left:667.600000pt;}
.x116_c00130{left:673.333333pt;}
.xbe_c00130{left:674.933333pt;}
.x102_c00130{left:676.666667pt;}
.xa9_c00130{left:679.866667pt;}
.x2_c00130{left:681.200000pt;}
.xd5_c00130{left:683.866667pt;}
.xbf_c00130{left:689.066667pt;}
.x9c_c00130{left:691.200000pt;}
.xe4_c00130{left:692.533333pt;}
.xd0_c00130{left:693.466667pt;}
.xf8_c00130{left:694.533333pt;}
.xc3_c00130{left:701.466667pt;}
}





/* 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_c00131 {
    display:none;
  }
  .loading-indicator_c00131.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00131 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_c00131 { 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_c00131" -> "#page-container .classname_c00131")
 */
.pf_c00131 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00131 { /* 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_c00131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00131 { /* 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_c00131 { /* 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_c00131 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00131 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00131 {overflow:visible;}
  }
}
.c_c00131 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00131 { /* 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_c00131:after { /* webkit #35443 */
  content: '';
}
.t_c00131:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00131 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 */
}
.__c00131 { /* 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_c00131 { /* info for Javascript */
  display:none;
}
.l_c00131 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00131 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00131 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00131: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_c00131 {
    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_c00131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00131.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_c00131 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00131;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.000000;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;}
.ma5_c00131{transform:matrix(0.005250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005250,0.000000,0.000000,0.250000,0,0);}
.m52_c00131{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m65_c00131{transform:matrix(0.021250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00131{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m31_c00131{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m39_c00131{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m37_c00131{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m38_c00131{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00131{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m9_c00131{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m58_c00131{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m20_c00131{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m81_c00131{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb_c00131{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.mff_c00131{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00131{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00131{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00131{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00131{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m64_c00131{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.md2_c00131{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00131{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m63_c00131{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00131{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.md6_c00131{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00131{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00131{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mec_c00131{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00131{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me3_c00131{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mce_c00131{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00131{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00131{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc_c00131{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00131{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m92_c00131{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00131{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m70_c00131{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.md1_c00131{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m90_c00131{transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00131{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me9_c00131{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m33_c00131{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00131{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mea_c00131{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m30_c00131{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m84_c00131{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m46_c00131{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mef_c00131{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m88_c00131{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00131{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00131{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00131{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00131{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m56_c00131{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m74_c00131{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m76_c00131{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00131{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me4_c00131{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m59_c00131{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m85_c00131{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m43_c00131{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m24_c00131{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mda_c00131{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m26_c00131{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00131{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m77_c00131{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m41_c00131{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m104_c00131{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me5_c00131{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00131{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.md0_c00131{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00131{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me6_c00131{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m96_c00131{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m73_c00131{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00131{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00131{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m72_c00131{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m87_c00131{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00131{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m50_c00131{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00131{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m101_c00131{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m18_c00131{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00131{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m42_c00131{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m66_c00131{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00131{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m57_c00131{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m27_c00131{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00131{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m47_c00131{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00131{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00131{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00131{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me7_c00131{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00131{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00131{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00131{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00131{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m83_c00131{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m79_c00131{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00131{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m22_c00131{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00131{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00131{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m40_c00131{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m32_c00131{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00131{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00131{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00131{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00131{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00131{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00131{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00131{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md7_c00131{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m36_c00131{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mac_c00131{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00131{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md_c00131{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me2_c00131{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00131{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00131{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m48_c00131{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m97_c00131{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mab_c00131{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.maf_c00131{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00131{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m75_c00131{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00131{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00131{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00131{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00131{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00131{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m54_c00131{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00131{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00131{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00131{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6_c00131{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00131{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00131{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m94_c00131{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m51_c00131{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m17_c00131{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00131{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.maa_c00131{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00131{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00131{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m21_c00131{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m23_c00131{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m29_c00131{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me0_c00131{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md8_c00131{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m86_c00131{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00131{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m44_c00131{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00131{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00131{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m16_c00131{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mca_c00131{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00131{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m45_c00131{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00131{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m103_c00131{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma_c00131{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me8_c00131{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00131{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m100_c00131{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00131{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m35_c00131{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m89_c00131{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m19_c00131{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m82_c00131{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00131{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00131{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00131{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m99_c00131{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m93_c00131{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00131{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00131{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00131{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.me_c00131{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m15_c00131{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mee_c00131{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00131{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00131{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00131{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf_c00131{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m91_c00131{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mae_c00131{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.meb_c00131{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m49_c00131{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m25_c00131{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m55_c00131{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00131{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m80_c00131{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m62_c00131{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md9_c00131{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00131{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mad_c00131{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5_c00131{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mde_c00131{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00131{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00131{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m67_c00131{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00131{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00131{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);}
.m6a_c00131{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00131{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m28_c00131{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00131{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00131{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00131{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00131{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00131{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00131{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00131{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m34_c00131{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m102_c00131{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00131{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00131{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m95_c00131{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00131{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00131{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00131{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00131{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00131{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m68_c00131{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00131{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m69_c00131{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m53_c00131{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.md5_c00131{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.mba_c00131{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.me1_c00131{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m11_c00131{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00131{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.med_c00131{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00131{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m78_c00131{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m13_c00131{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00131{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00131{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m98_c00131{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00131{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m14_c00131{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.md4_c00131{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m12_c00131{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.m10_c00131{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.md3_c00131{transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);}
.m60_c00131{transform:matrix(0.403500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403500,0.000000,0.000000,0.250000,0,0);}
.m61_c00131{transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00131{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m71_c00131{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls0_c00131{letter-spacing:0.000000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{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__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00131{word-spacing:-11.315789px;}
.ws7_c00131{word-spacing:-8.472222px;}
.ws4_c00131{word-spacing:-8.319588px;}
.ws0_c00131{word-spacing:-3.569794px;}
.ws8_c00131{word-spacing:0.000000px;}
.ws6_c00131{word-spacing:1.763359px;}
.ws1_c00131{word-spacing:25.714286px;}
.ws5_c00131{word-spacing:31.433121px;}
.ws2_c00131{word-spacing:523.636364px;}
.fc0_c00131{color:transparent;}
.fs9_c00131{font-size:30.000000px;}
.fs8_c00131{font-size:42.000000px;}
.fs5_c00131{font-size:48.000000px;}
.fs3_c00131{font-size:54.000000px;}
.fs1_c00131{font-size:60.000000px;}
.fs4_c00131{font-size:66.000000px;}
.fs2_c00131{font-size:72.000000px;}
.fs0_c00131{font-size:84.000000px;}
.fs6_c00131{font-size:102.000000px;}
.fs7_c00131{font-size:702.000000px;}
.y0_c00131{bottom:0.000000px;}
.y5d_c00131{bottom:186.450000px;}
.y2d_c00131{bottom:187.500000px;}
.y2c_c00131{bottom:201.900000px;}
.y5c_c00131{bottom:211.200000px;}
.y2b_c00131{bottom:216.000000px;}
.y5b_c00131{bottom:225.300000px;}
.y5a_c00131{bottom:250.200000px;}
.y2a_c00131{bottom:261.000000px;}
.y59_c00131{bottom:267.900000px;}
.y29_c00131{bottom:279.000000px;}
.y58_c00131{bottom:285.900000px;}
.y28_c00131{bottom:300.600000px;}
.y57_c00131{bottom:312.900000px;}
.y27_c00131{bottom:323.250000px;}
.y56_c00131{bottom:330.900000px;}
.y26_c00131{bottom:346.650000px;}
.y55_c00131{bottom:348.900000px;}
.y25_c00131{bottom:363.600000px;}
.y54_c00131{bottom:366.900000px;}
.y53_c00131{bottom:384.150000px;}
.y24_c00131{bottom:385.200000px;}
.y23_c00131{bottom:403.200000px;}
.y52_c00131{bottom:410.700000px;}
.y22_c00131{bottom:421.200000px;}
.y51_c00131{bottom:428.400000px;}
.y21_c00131{bottom:439.200000px;}
.y50_c00131{bottom:459.750000px;}
.y20_c00131{bottom:461.550000px;}
.y4f_c00131{bottom:482.100000px;}
.y1f_c00131{bottom:483.900000px;}
.y4e_c00131{bottom:500.100000px;}
.y1e_c00131{bottom:506.100000px;}
.y4d_c00131{bottom:518.100000px;}
.y1d_c00131{bottom:524.100000px;}
.y4c_c00131{bottom:533.550000px;}
.y4b_c00131{bottom:540.150000px;}
.y1c_c00131{bottom:541.800000px;}
.y4a_c00131{bottom:557.850000px;}
.y1b_c00131{bottom:565.200000px;}
.y49_c00131{bottom:575.550000px;}
.y1a_c00131{bottom:591.900000px;}
.y48_c00131{bottom:593.850000px;}
.y47_c00131{bottom:611.550000px;}
.y19_c00131{bottom:619.950000px;}
.y46_c00131{bottom:629.250000px;}
.y18_c00131{bottom:638.250000px;}
.y45_c00131{bottom:647.250000px;}
.y17_c00131{bottom:664.950000px;}
.y44_c00131{bottom:682.950000px;}
.y16_c00131{bottom:704.550000px;}
.y43_c00131{bottom:708.150000px;}
.y42_c00131{bottom:722.550000px;}
.y15_c00131{bottom:744.900000px;}
.y41_c00131{bottom:748.800000px;}
.y14_c00131{bottom:762.900000px;}
.y40_c00131{bottom:766.500000px;}
.y3f_c00131{bottom:784.500000px;}
.y13_c00131{bottom:789.450000px;}
.y3e_c00131{bottom:801.750000px;}
.y12_c00131{bottom:807.450000px;}
.y2e_c00131{bottom:817.500000px;}
.y11_c00131{bottom:820.350000px;}
.y10_c00131{bottom:825.000000px;}
.y3d_c00131{bottom:828.000000px;}
.yf_c00131{bottom:842.700000px;}
.y3c_c00131{bottom:845.700000px;}
.y3b_c00131{bottom:863.250000px;}
.ye_c00131{bottom:867.600000px;}
.yd_c00131{bottom:881.700000px;}
.y3a_c00131{bottom:889.950000px;}
.yc_c00131{bottom:896.100000px;}
.y39_c00131{bottom:907.950000px;}
.yb_c00131{bottom:912.600000px;}
.ya_c00131{bottom:932.700000px;}
.y38_c00131{bottom:938.550000px;}
.y9_c00131{bottom:951.000000px;}
.y37_c00131{bottom:956.550000px;}
.y8_c00131{bottom:968.700000px;}
.y36_c00131{bottom:978.450000px;}
.y7_c00131{bottom:986.400000px;}
.y35_c00131{bottom:996.450000px;}
.y6_c00131{bottom:1012.650000px;}
.y34_c00131{bottom:1014.450000px;}
.y5_c00131{bottom:1035.000000px;}
.y33_c00131{bottom:1036.800000px;}
.y4_c00131{bottom:1052.250000px;}
.y32_c00131{bottom:1054.500000px;}
.y31_c00131{bottom:1076.250000px;}
.y3_c00131{bottom:1087.950000px;}
.y30_c00131{bottom:1093.950000px;}
.y2f_c00131{bottom:1111.650000px;}
.y2_c00131{bottom:1114.500000px;}
.y1_c00131{bottom:1139.100000px;}
.hb_c00131{height:30.000000px;}
.ha_c00131{height:42.000000px;}
.h7_c00131{height:48.000000px;}
.h5_c00131{height:54.000000px;}
.h3_c00131{height:60.000000px;}
.h6_c00131{height:66.000000px;}
.h4_c00131{height:72.000000px;}
.h2_c00131{height:84.000000px;}
.h8_c00131{height:102.000000px;}
.h9_c00131{height:702.000000px;}
.h1_c00131{height:1273.500000px;}
.h0_c00131{height:1273.679993px;}
.w1_c00131{width:953.250000px;}
.w0_c00131{width:953.280030px;}
.x0_c00131{left:0.000000px;}
.x86_c00131{left:157.800000px;}
.x7f_c00131{left:159.000000px;}
.x54_c00131{left:161.250000px;}
.x2b_c00131{left:163.500000px;}
.x1_c00131{left:164.850000px;}
.xd_c00131{left:167.400000px;}
.x7a_c00131{left:173.100000px;}
.x72_c00131{left:177.600000px;}
.x6b_c00131{left:178.800000px;}
.x1f_c00131{left:179.850000px;}
.x27_c00131{left:181.500000px;}
.x13_c00131{left:183.300000px;}
.x78_c00131{left:190.350000px;}
.x36_c00131{left:192.300000px;}
.x73_c00131{left:195.150000px;}
.x61_c00131{left:196.950000px;}
.x58_c00131{left:199.500000px;}
.x24_c00131{left:201.450000px;}
.x15_c00131{left:202.650000px;}
.x6c_c00131{left:204.300000px;}
.x87_c00131{left:206.100000px;}
.x79_c00131{left:208.650000px;}
.xe_c00131{left:210.900000px;}
.x37_c00131{left:214.950000px;}
.x4f_c00131{left:219.000000px;}
.x3_c00131{left:223.950000px;}
.x64_c00131{left:225.300000px;}
.x14_c00131{left:226.500000px;}
.x38_c00131{left:227.550000px;}
.x7b_c00131{left:228.600000px;}
.x7_c00131{left:231.750000px;}
.x5b_c00131{left:237.000000px;}
.x52_c00131{left:238.350000px;}
.x5d_c00131{left:241.200000px;}
.x20_c00131{left:244.350000px;}
.xf_c00131{left:247.650000px;}
.x25_c00131{left:250.050000px;}
.x39_c00131{left:252.450000px;}
.x1c_c00131{left:256.950000px;}
.x60_c00131{left:258.300000px;}
.x50_c00131{left:260.400000px;}
.x4_c00131{left:262.800000px;}
.x3e_c00131{left:263.850000px;}
.x4a_c00131{left:265.650000px;}
.x7c_c00131{left:266.700000px;}
.x26_c00131{left:268.800000px;}
.x62_c00131{left:272.100000px;}
.x3f_c00131{left:275.700000px;}
.x65_c00131{left:277.950000px;}
.x19_c00131{left:280.800000px;}
.x5_c00131{left:282.900000px;}
.x59_c00131{left:284.400000px;}
.x2c_c00131{left:289.500000px;}
.x55_c00131{left:292.650000px;}
.x8_c00131{left:293.700000px;}
.x4b_c00131{left:299.100000px;}
.x9_c00131{left:302.400000px;}
.x75_c00131{left:303.450000px;}
.x6d_c00131{left:305.250000px;}
.x2d_c00131{left:311.100000px;}
.x80_c00131{left:313.200000px;}
.x1d_c00131{left:314.550000px;}
.x51_c00131{left:316.200000px;}
.x88_c00131{left:318.450000px;}
.x70_c00131{left:319.650000px;}
.x21_c00131{left:322.500000px;}
.xa_c00131{left:324.300000px;}
.x3a_c00131{left:326.550000px;}
.x16_c00131{left:330.150000px;}
.x4c_c00131{left:331.500000px;}
.x6_c00131{left:333.000000px;}
.x67_c00131{left:336.000000px;}
.xb_c00131{left:337.950000px;}
.x10_c00131{left:339.900000px;}
.x5e_c00131{left:340.950000px;}
.x63_c00131{left:342.000000px;}
.x81_c00131{left:343.050000px;}
.x4d_c00131{left:344.400000px;}
.x53_c00131{left:348.150000px;}
.x2e_c00131{left:352.200000px;}
.x22_c00131{left:353.400000px;}
.x4e_c00131{left:355.500000px;}
.x74_c00131{left:356.700000px;}
.x82_c00131{left:358.500000px;}
.xc_c00131{left:360.300000px;}
.x17_c00131{left:364.650000px;}
.x2f_c00131{left:366.900000px;}
.x5c_c00131{left:369.900000px;}
.x43_c00131{left:371.100000px;}
.x1a_c00131{left:373.650000px;}
.x66_c00131{left:375.900000px;}
.x40_c00131{left:379.650000px;}
.x56_c00131{left:381.150000px;}
.x76_c00131{left:382.650000px;}
.x1b_c00131{left:385.500000px;}
.x30_c00131{left:388.800000px;}
.x3b_c00131{left:392.400000px;}
.x71_c00131{left:394.950000px;}
.x31_c00131{left:396.000000px;}
.x11_c00131{left:397.200000px;}
.x83_c00131{left:401.400000px;}
.x32_c00131{left:403.200000px;}
.x68_c00131{left:404.400000px;}
.x2_c00131{left:406.050000px;}
.x45_c00131{left:407.250000px;}
.x23_c00131{left:408.900000px;}
.x5f_c00131{left:411.600000px;}
.x6e_c00131{left:417.900000px;}
.x28_c00131{left:421.200000px;}
.x46_c00131{left:424.200000px;}
.x77_c00131{left:426.150000px;}
.x18_c00131{left:428.700000px;}
.x33_c00131{left:430.200000px;}
.x57_c00131{left:432.300000px;}
.x6f_c00131{left:437.700000px;}
.x44_c00131{left:438.750000px;}
.x41_c00131{left:447.000000px;}
.x69_c00131{left:449.100000px;}
.x29_c00131{left:452.550000px;}
.x84_c00131{left:458.700000px;}
.x34_c00131{left:459.750000px;}
.x47_c00131{left:463.050000px;}
.x5a_c00131{left:465.450000px;}
.x3c_c00131{left:467.250000px;}
.x7d_c00131{left:468.900000px;}
.x42_c00131{left:470.400000px;}
.x6a_c00131{left:472.500000px;}
.x12_c00131{left:476.700000px;}
.x85_c00131{left:478.500000px;}
.x1e_c00131{left:483.750000px;}
.x7e_c00131{left:484.800000px;}
.x2a_c00131{left:486.000000px;}
.x35_c00131{left:488.550000px;}
.x3d_c00131{left:490.650000px;}
.x48_c00131{left:496.950000px;}
.x49_c00131{left:511.050000px;}
.x114_c00131{left:516.300000px;}
.xfe_c00131{left:517.650000px;}
.xf3_c00131{left:519.150000px;}
.xd3_c00131{left:520.200000px;}
.xae_c00131{left:522.300000px;}
.xa2_c00131{left:523.500000px;}
.x116_c00131{left:531.000000px;}
.xda_c00131{left:534.750000px;}
.xf9_c00131{left:537.150000px;}
.xb4_c00131{left:538.500000px;}
.x90_c00131{left:540.150000px;}
.x102_c00131{left:542.850000px;}
.xbb_c00131{left:554.700000px;}
.x89_c00131{left:558.300000px;}
.x10c_c00131{left:560.550000px;}
.xa7_c00131{left:564.150000px;}
.xef_c00131{left:565.950000px;}
.x108_c00131{left:568.350000px;}
.xdc_c00131{left:570.600000px;}
.x91_c00131{left:572.550000px;}
.xce_c00131{left:574.500000px;}
.xbc_c00131{left:578.850000px;}
.xfa_c00131{left:580.050000px;}
.xf4_c00131{left:581.100000px;}
.xa3_c00131{left:582.150000px;}
.xc9_c00131{left:584.250000px;}
.xff_c00131{left:585.300000px;}
.x10f_c00131{left:587.250000px;}
.xaf_c00131{left:591.450000px;}
.x8a_c00131{left:596.850000px;}
.xb2_c00131{left:599.400000px;}
.xe6_c00131{left:601.050000px;}
.xb5_c00131{left:603.000000px;}
.x92_c00131{left:604.950000px;}
.xdb_c00131{left:609.150000px;}
.xbd_c00131{left:610.200000px;}
.x111_c00131{left:611.700000px;}
.xea_c00131{left:612.750000px;}
.xf5_c00131{left:614.550000px;}
.xdd_c00131{left:615.600000px;}
.x97_c00131{left:616.650000px;}
.xe7_c00131{left:620.550000px;}
.xa8_c00131{left:622.500000px;}
.xd4_c00131{left:624.150000px;}
.xca_c00131{left:625.650000px;}
.xcf_c00131{left:627.000000px;}
.xc2_c00131{left:628.650000px;}
.x9d_c00131{left:632.100000px;}
.xa4_c00131{left:634.350000px;}
.x98_c00131{left:635.400000px;}
.x109_c00131{left:637.050000px;}
.xe3_c00131{left:638.100000px;}
.x105_c00131{left:640.800000px;}
.xf0_c00131{left:641.850000px;}
.xb6_c00131{left:644.100000px;}
.xd0_c00131{left:646.800000px;}
.xb9_c00131{left:648.300000px;}
.x103_c00131{left:650.100000px;}
.x8b_c00131{left:651.150000px;}
.x10a_c00131{left:656.550000px;}
.x8c_c00131{left:660.450000px;}
.xa9_c00131{left:662.100000px;}
.xbe_c00131{left:664.200000px;}
.xd1_c00131{left:665.550000px;}
.x115_c00131{left:667.050000px;}
.x10d_c00131{left:669.000000px;}
.x106_c00131{left:670.500000px;}
.xcb_c00131{left:672.450000px;}
.xeb_c00131{left:675.450000px;}
.xc3_c00131{left:677.550000px;}
.xde_c00131{left:678.600000px;}
.xb7_c00131{left:680.400000px;}
.xd5_c00131{left:682.800000px;}
.xe1_c00131{left:684.000000px;}
.x93_c00131{left:685.650000px;}
.x99_c00131{left:687.300000px;}
.xaa_c00131{left:689.100000px;}
.x112_c00131{left:690.600000px;}
.x9e_c00131{left:694.050000px;}
.xfb_c00131{left:695.250000px;}
.x104_c00131{left:696.600000px;}
.xb3_c00131{left:697.650000px;}
.xbf_c00131{left:698.700000px;}
.x8d_c00131{left:701.850000px;}
.xf6_c00131{left:703.950000px;}
.x94_c00131{left:705.150000px;}
.x107_c00131{left:707.250000px;}
.x113_c00131{left:708.300000px;}
.xc4_c00131{left:709.950000px;}
.x10b_c00131{left:713.850000px;}
.xcc_c00131{left:715.950000px;}
.xfc_c00131{left:720.450000px;}
.xf2_c00131{left:723.000000px;}
.x9a_c00131{left:724.050000px;}
.xd6_c00131{left:725.250000px;}
.xb0_c00131{left:726.450000px;}
.xc5_c00131{left:728.250000px;}
.xab_c00131{left:729.750000px;}
.xec_c00131{left:731.550000px;}
.xe4_c00131{left:733.800000px;}
.xcd_c00131{left:738.600000px;}
.xd2_c00131{left:741.150000px;}
.xa5_c00131{left:742.650000px;}
.x101_c00131{left:745.200000px;}
.xc0_c00131{left:747.300000px;}
.x10e_c00131{left:748.500000px;}
.xb8_c00131{left:753.150000px;}
.x95_c00131{left:757.050000px;}
.xed_c00131{left:758.550000px;}
.x9f_c00131{left:759.600000px;}
.xd7_c00131{left:760.950000px;}
.xdf_c00131{left:763.200000px;}
.xfd_c00131{left:768.000000px;}
.xc6_c00131{left:771.150000px;}
.xd8_c00131{left:777.450000px;}
.x8e_c00131{left:778.500000px;}
.xe8_c00131{left:780.000000px;}
.xee_c00131{left:781.200000px;}
.xc1_c00131{left:782.250000px;}
.xb1_c00131{left:784.350000px;}
.xac_c00131{left:785.550000px;}
.xa0_c00131{left:787.650000px;}
.xba_c00131{left:791.250000px;}
.x9b_c00131{left:796.350000px;}
.xf7_c00131{left:798.600000px;}
.x117_c00131{left:800.400000px;}
.x110_c00131{left:801.750000px;}
.xe2_c00131{left:804.300000px;}
.xa6_c00131{left:808.500000px;}
.xc7_c00131{left:814.350000px;}
.x8f_c00131{left:815.550000px;}
.x100_c00131{left:817.500000px;}
.x96_c00131{left:821.100000px;}
.xf8_c00131{left:823.050000px;}
.x9c_c00131{left:825.450000px;}
.xe9_c00131{left:829.050000px;}
.xa1_c00131{left:830.100000px;}
.xc8_c00131{left:832.050000px;}
.xf1_c00131{left:836.850000px;}
.xe0_c00131{left:840.300000px;}
.xd9_c00131{left:842.250000px;}
.xe5_c00131{left:845.100000px;}
.xad_c00131{left:848.850000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws3_c00131{word-spacing:-10.058480pt;}
.ws7_c00131{word-spacing:-7.530864pt;}
.ws4_c00131{word-spacing:-7.395189pt;}
.ws0_c00131{word-spacing:-3.173150pt;}
.ws8_c00131{word-spacing:0.000000pt;}
.ws6_c00131{word-spacing:1.567430pt;}
.ws1_c00131{word-spacing:22.857143pt;}
.ws5_c00131{word-spacing:27.940552pt;}
.ws2_c00131{word-spacing:465.454545pt;}
.fs9_c00131{font-size:26.666667pt;}
.fs8_c00131{font-size:37.333333pt;}
.fs5_c00131{font-size:42.666667pt;}
.fs3_c00131{font-size:48.000000pt;}
.fs1_c00131{font-size:53.333333pt;}
.fs4_c00131{font-size:58.666667pt;}
.fs2_c00131{font-size:64.000000pt;}
.fs0_c00131{font-size:74.666667pt;}
.fs6_c00131{font-size:90.666667pt;}
.fs7_c00131{font-size:624.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y5d_c00131{bottom:165.733333pt;}
.y2d_c00131{bottom:166.666667pt;}
.y2c_c00131{bottom:179.466667pt;}
.y5c_c00131{bottom:187.733333pt;}
.y2b_c00131{bottom:192.000000pt;}
.y5b_c00131{bottom:200.266667pt;}
.y5a_c00131{bottom:222.400000pt;}
.y2a_c00131{bottom:232.000000pt;}
.y59_c00131{bottom:238.133333pt;}
.y29_c00131{bottom:248.000000pt;}
.y58_c00131{bottom:254.133333pt;}
.y28_c00131{bottom:267.200000pt;}
.y57_c00131{bottom:278.133333pt;}
.y27_c00131{bottom:287.333333pt;}
.y56_c00131{bottom:294.133333pt;}
.y26_c00131{bottom:308.133333pt;}
.y55_c00131{bottom:310.133333pt;}
.y25_c00131{bottom:323.200000pt;}
.y54_c00131{bottom:326.133333pt;}
.y53_c00131{bottom:341.466667pt;}
.y24_c00131{bottom:342.400000pt;}
.y23_c00131{bottom:358.400000pt;}
.y52_c00131{bottom:365.066667pt;}
.y22_c00131{bottom:374.400000pt;}
.y51_c00131{bottom:380.800000pt;}
.y21_c00131{bottom:390.400000pt;}
.y50_c00131{bottom:408.666667pt;}
.y20_c00131{bottom:410.266667pt;}
.y4f_c00131{bottom:428.533333pt;}
.y1f_c00131{bottom:430.133333pt;}
.y4e_c00131{bottom:444.533333pt;}
.y1e_c00131{bottom:449.866667pt;}
.y4d_c00131{bottom:460.533333pt;}
.y1d_c00131{bottom:465.866667pt;}
.y4c_c00131{bottom:474.266667pt;}
.y4b_c00131{bottom:480.133333pt;}
.y1c_c00131{bottom:481.600000pt;}
.y4a_c00131{bottom:495.866667pt;}
.y1b_c00131{bottom:502.400000pt;}
.y49_c00131{bottom:511.600000pt;}
.y1a_c00131{bottom:526.133333pt;}
.y48_c00131{bottom:527.866667pt;}
.y47_c00131{bottom:543.600000pt;}
.y19_c00131{bottom:551.066667pt;}
.y46_c00131{bottom:559.333333pt;}
.y18_c00131{bottom:567.333333pt;}
.y45_c00131{bottom:575.333333pt;}
.y17_c00131{bottom:591.066667pt;}
.y44_c00131{bottom:607.066667pt;}
.y16_c00131{bottom:626.266667pt;}
.y43_c00131{bottom:629.466667pt;}
.y42_c00131{bottom:642.266667pt;}
.y15_c00131{bottom:662.133333pt;}
.y41_c00131{bottom:665.600000pt;}
.y14_c00131{bottom:678.133333pt;}
.y40_c00131{bottom:681.333333pt;}
.y3f_c00131{bottom:697.333333pt;}
.y13_c00131{bottom:701.733333pt;}
.y3e_c00131{bottom:712.666667pt;}
.y12_c00131{bottom:717.733333pt;}
.y2e_c00131{bottom:726.666667pt;}
.y11_c00131{bottom:729.200000pt;}
.y10_c00131{bottom:733.333333pt;}
.y3d_c00131{bottom:736.000000pt;}
.yf_c00131{bottom:749.066667pt;}
.y3c_c00131{bottom:751.733333pt;}
.y3b_c00131{bottom:767.333333pt;}
.ye_c00131{bottom:771.200000pt;}
.yd_c00131{bottom:783.733333pt;}
.y3a_c00131{bottom:791.066667pt;}
.yc_c00131{bottom:796.533333pt;}
.y39_c00131{bottom:807.066667pt;}
.yb_c00131{bottom:811.200000pt;}
.ya_c00131{bottom:829.066667pt;}
.y38_c00131{bottom:834.266667pt;}
.y9_c00131{bottom:845.333333pt;}
.y37_c00131{bottom:850.266667pt;}
.y8_c00131{bottom:861.066667pt;}
.y36_c00131{bottom:869.733333pt;}
.y7_c00131{bottom:876.800000pt;}
.y35_c00131{bottom:885.733333pt;}
.y6_c00131{bottom:900.133333pt;}
.y34_c00131{bottom:901.733333pt;}
.y5_c00131{bottom:920.000000pt;}
.y33_c00131{bottom:921.600000pt;}
.y4_c00131{bottom:935.333333pt;}
.y32_c00131{bottom:937.333333pt;}
.y31_c00131{bottom:956.666667pt;}
.y3_c00131{bottom:967.066667pt;}
.y30_c00131{bottom:972.400000pt;}
.y2f_c00131{bottom:988.133333pt;}
.y2_c00131{bottom:990.666667pt;}
.y1_c00131{bottom:1012.533333pt;}
.hb_c00131{height:26.666667pt;}
.ha_c00131{height:37.333333pt;}
.h7_c00131{height:42.666667pt;}
.h5_c00131{height:48.000000pt;}
.h3_c00131{height:53.333333pt;}
.h6_c00131{height:58.666667pt;}
.h4_c00131{height:64.000000pt;}
.h2_c00131{height:74.666667pt;}
.h8_c00131{height:90.666667pt;}
.h9_c00131{height:624.000000pt;}
.h1_c00131{height:1132.000000pt;}
.h0_c00131{height:1132.159993pt;}
.w1_c00131{width:847.333333pt;}
.w0_c00131{width:847.360027pt;}
.x0_c00131{left:0.000000pt;}
.x86_c00131{left:140.266667pt;}
.x7f_c00131{left:141.333333pt;}
.x54_c00131{left:143.333333pt;}
.x2b_c00131{left:145.333333pt;}
.x1_c00131{left:146.533333pt;}
.xd_c00131{left:148.800000pt;}
.x7a_c00131{left:153.866667pt;}
.x72_c00131{left:157.866667pt;}
.x6b_c00131{left:158.933333pt;}
.x1f_c00131{left:159.866667pt;}
.x27_c00131{left:161.333333pt;}
.x13_c00131{left:162.933333pt;}
.x78_c00131{left:169.200000pt;}
.x36_c00131{left:170.933333pt;}
.x73_c00131{left:173.466667pt;}
.x61_c00131{left:175.066667pt;}
.x58_c00131{left:177.333333pt;}
.x24_c00131{left:179.066667pt;}
.x15_c00131{left:180.133333pt;}
.x6c_c00131{left:181.600000pt;}
.x87_c00131{left:183.200000pt;}
.x79_c00131{left:185.466667pt;}
.xe_c00131{left:187.466667pt;}
.x37_c00131{left:191.066667pt;}
.x4f_c00131{left:194.666667pt;}
.x3_c00131{left:199.066667pt;}
.x64_c00131{left:200.266667pt;}
.x14_c00131{left:201.333333pt;}
.x38_c00131{left:202.266667pt;}
.x7b_c00131{left:203.200000pt;}
.x7_c00131{left:206.000000pt;}
.x5b_c00131{left:210.666667pt;}
.x52_c00131{left:211.866667pt;}
.x5d_c00131{left:214.400000pt;}
.x20_c00131{left:217.200000pt;}
.xf_c00131{left:220.133333pt;}
.x25_c00131{left:222.266667pt;}
.x39_c00131{left:224.400000pt;}
.x1c_c00131{left:228.400000pt;}
.x60_c00131{left:229.600000pt;}
.x50_c00131{left:231.466667pt;}
.x4_c00131{left:233.600000pt;}
.x3e_c00131{left:234.533333pt;}
.x4a_c00131{left:236.133333pt;}
.x7c_c00131{left:237.066667pt;}
.x26_c00131{left:238.933333pt;}
.x62_c00131{left:241.866667pt;}
.x3f_c00131{left:245.066667pt;}
.x65_c00131{left:247.066667pt;}
.x19_c00131{left:249.600000pt;}
.x5_c00131{left:251.466667pt;}
.x59_c00131{left:252.800000pt;}
.x2c_c00131{left:257.333333pt;}
.x55_c00131{left:260.133333pt;}
.x8_c00131{left:261.066667pt;}
.x4b_c00131{left:265.866667pt;}
.x9_c00131{left:268.800000pt;}
.x75_c00131{left:269.733333pt;}
.x6d_c00131{left:271.333333pt;}
.x2d_c00131{left:276.533333pt;}
.x80_c00131{left:278.400000pt;}
.x1d_c00131{left:279.600000pt;}
.x51_c00131{left:281.066667pt;}
.x88_c00131{left:283.066667pt;}
.x70_c00131{left:284.133333pt;}
.x21_c00131{left:286.666667pt;}
.xa_c00131{left:288.266667pt;}
.x3a_c00131{left:290.266667pt;}
.x16_c00131{left:293.466667pt;}
.x4c_c00131{left:294.666667pt;}
.x6_c00131{left:296.000000pt;}
.x67_c00131{left:298.666667pt;}
.xb_c00131{left:300.400000pt;}
.x10_c00131{left:302.133333pt;}
.x5e_c00131{left:303.066667pt;}
.x63_c00131{left:304.000000pt;}
.x81_c00131{left:304.933333pt;}
.x4d_c00131{left:306.133333pt;}
.x53_c00131{left:309.466667pt;}
.x2e_c00131{left:313.066667pt;}
.x22_c00131{left:314.133333pt;}
.x4e_c00131{left:316.000000pt;}
.x74_c00131{left:317.066667pt;}
.x82_c00131{left:318.666667pt;}
.xc_c00131{left:320.266667pt;}
.x17_c00131{left:324.133333pt;}
.x2f_c00131{left:326.133333pt;}
.x5c_c00131{left:328.800000pt;}
.x43_c00131{left:329.866667pt;}
.x1a_c00131{left:332.133333pt;}
.x66_c00131{left:334.133333pt;}
.x40_c00131{left:337.466667pt;}
.x56_c00131{left:338.800000pt;}
.x76_c00131{left:340.133333pt;}
.x1b_c00131{left:342.666667pt;}
.x30_c00131{left:345.600000pt;}
.x3b_c00131{left:348.800000pt;}
.x71_c00131{left:351.066667pt;}
.x31_c00131{left:352.000000pt;}
.x11_c00131{left:353.066667pt;}
.x83_c00131{left:356.800000pt;}
.x32_c00131{left:358.400000pt;}
.x68_c00131{left:359.466667pt;}
.x2_c00131{left:360.933333pt;}
.x45_c00131{left:362.000000pt;}
.x23_c00131{left:363.466667pt;}
.x5f_c00131{left:365.866667pt;}
.x6e_c00131{left:371.466667pt;}
.x28_c00131{left:374.400000pt;}
.x46_c00131{left:377.066667pt;}
.x77_c00131{left:378.800000pt;}
.x18_c00131{left:381.066667pt;}
.x33_c00131{left:382.400000pt;}
.x57_c00131{left:384.266667pt;}
.x6f_c00131{left:389.066667pt;}
.x44_c00131{left:390.000000pt;}
.x41_c00131{left:397.333333pt;}
.x69_c00131{left:399.200000pt;}
.x29_c00131{left:402.266667pt;}
.x84_c00131{left:407.733333pt;}
.x34_c00131{left:408.666667pt;}
.x47_c00131{left:411.600000pt;}
.x5a_c00131{left:413.733333pt;}
.x3c_c00131{left:415.333333pt;}
.x7d_c00131{left:416.800000pt;}
.x42_c00131{left:418.133333pt;}
.x6a_c00131{left:420.000000pt;}
.x12_c00131{left:423.733333pt;}
.x85_c00131{left:425.333333pt;}
.x1e_c00131{left:430.000000pt;}
.x7e_c00131{left:430.933333pt;}
.x2a_c00131{left:432.000000pt;}
.x35_c00131{left:434.266667pt;}
.x3d_c00131{left:436.133333pt;}
.x48_c00131{left:441.733333pt;}
.x49_c00131{left:454.266667pt;}
.x114_c00131{left:458.933333pt;}
.xfe_c00131{left:460.133333pt;}
.xf3_c00131{left:461.466667pt;}
.xd3_c00131{left:462.400000pt;}
.xae_c00131{left:464.266667pt;}
.xa2_c00131{left:465.333333pt;}
.x116_c00131{left:472.000000pt;}
.xda_c00131{left:475.333333pt;}
.xf9_c00131{left:477.466667pt;}
.xb4_c00131{left:478.666667pt;}
.x90_c00131{left:480.133333pt;}
.x102_c00131{left:482.533333pt;}
.xbb_c00131{left:493.066667pt;}
.x89_c00131{left:496.266667pt;}
.x10c_c00131{left:498.266667pt;}
.xa7_c00131{left:501.466667pt;}
.xef_c00131{left:503.066667pt;}
.x108_c00131{left:505.200000pt;}
.xdc_c00131{left:507.200000pt;}
.x91_c00131{left:508.933333pt;}
.xce_c00131{left:510.666667pt;}
.xbc_c00131{left:514.533333pt;}
.xfa_c00131{left:515.600000pt;}
.xf4_c00131{left:516.533333pt;}
.xa3_c00131{left:517.466667pt;}
.xc9_c00131{left:519.333333pt;}
.xff_c00131{left:520.266667pt;}
.x10f_c00131{left:522.000000pt;}
.xaf_c00131{left:525.733333pt;}
.x8a_c00131{left:530.533333pt;}
.xb2_c00131{left:532.800000pt;}
.xe6_c00131{left:534.266667pt;}
.xb5_c00131{left:536.000000pt;}
.x92_c00131{left:537.733333pt;}
.xdb_c00131{left:541.466667pt;}
.xbd_c00131{left:542.400000pt;}
.x111_c00131{left:543.733333pt;}
.xea_c00131{left:544.666667pt;}
.xf5_c00131{left:546.266667pt;}
.xdd_c00131{left:547.200000pt;}
.x97_c00131{left:548.133333pt;}
.xe7_c00131{left:551.600000pt;}
.xa8_c00131{left:553.333333pt;}
.xd4_c00131{left:554.800000pt;}
.xca_c00131{left:556.133333pt;}
.xcf_c00131{left:557.333333pt;}
.xc2_c00131{left:558.800000pt;}
.x9d_c00131{left:561.866667pt;}
.xa4_c00131{left:563.866667pt;}
.x98_c00131{left:564.800000pt;}
.x109_c00131{left:566.266667pt;}
.xe3_c00131{left:567.200000pt;}
.x105_c00131{left:569.600000pt;}
.xf0_c00131{left:570.533333pt;}
.xb6_c00131{left:572.533333pt;}
.xd0_c00131{left:574.933333pt;}
.xb9_c00131{left:576.266667pt;}
.x103_c00131{left:577.866667pt;}
.x8b_c00131{left:578.800000pt;}
.x10a_c00131{left:583.600000pt;}
.x8c_c00131{left:587.066667pt;}
.xa9_c00131{left:588.533333pt;}
.xbe_c00131{left:590.400000pt;}
.xd1_c00131{left:591.600000pt;}
.x115_c00131{left:592.933333pt;}
.x10d_c00131{left:594.666667pt;}
.x106_c00131{left:596.000000pt;}
.xcb_c00131{left:597.733333pt;}
.xeb_c00131{left:600.400000pt;}
.xc3_c00131{left:602.266667pt;}
.xde_c00131{left:603.200000pt;}
.xb7_c00131{left:604.800000pt;}
.xd5_c00131{left:606.933333pt;}
.xe1_c00131{left:608.000000pt;}
.x93_c00131{left:609.466667pt;}
.x99_c00131{left:610.933333pt;}
.xaa_c00131{left:612.533333pt;}
.x112_c00131{left:613.866667pt;}
.x9e_c00131{left:616.933333pt;}
.xfb_c00131{left:618.000000pt;}
.x104_c00131{left:619.200000pt;}
.xb3_c00131{left:620.133333pt;}
.xbf_c00131{left:621.066667pt;}
.x8d_c00131{left:623.866667pt;}
.xf6_c00131{left:625.733333pt;}
.x94_c00131{left:626.800000pt;}
.x107_c00131{left:628.666667pt;}
.x113_c00131{left:629.600000pt;}
.xc4_c00131{left:631.066667pt;}
.x10b_c00131{left:634.533333pt;}
.xcc_c00131{left:636.400000pt;}
.xfc_c00131{left:640.400000pt;}
.xf2_c00131{left:642.666667pt;}
.x9a_c00131{left:643.600000pt;}
.xd6_c00131{left:644.666667pt;}
.xb0_c00131{left:645.733333pt;}
.xc5_c00131{left:647.333333pt;}
.xab_c00131{left:648.666667pt;}
.xec_c00131{left:650.266667pt;}
.xe4_c00131{left:652.266667pt;}
.xcd_c00131{left:656.533333pt;}
.xd2_c00131{left:658.800000pt;}
.xa5_c00131{left:660.133333pt;}
.x101_c00131{left:662.400000pt;}
.xc0_c00131{left:664.266667pt;}
.x10e_c00131{left:665.333333pt;}
.xb8_c00131{left:669.466667pt;}
.x95_c00131{left:672.933333pt;}
.xed_c00131{left:674.266667pt;}
.x9f_c00131{left:675.200000pt;}
.xd7_c00131{left:676.400000pt;}
.xdf_c00131{left:678.400000pt;}
.xfd_c00131{left:682.666667pt;}
.xc6_c00131{left:685.466667pt;}
.xd8_c00131{left:691.066667pt;}
.x8e_c00131{left:692.000000pt;}
.xe8_c00131{left:693.333333pt;}
.xee_c00131{left:694.400000pt;}
.xc1_c00131{left:695.333333pt;}
.xb1_c00131{left:697.200000pt;}
.xac_c00131{left:698.266667pt;}
.xa0_c00131{left:700.133333pt;}
.xba_c00131{left:703.333333pt;}
.x9b_c00131{left:707.866667pt;}
.xf7_c00131{left:709.866667pt;}
.x117_c00131{left:711.466667pt;}
.x110_c00131{left:712.666667pt;}
.xe2_c00131{left:714.933333pt;}
.xa6_c00131{left:718.666667pt;}
.xc7_c00131{left:723.866667pt;}
.x8f_c00131{left:724.933333pt;}
.x100_c00131{left:726.666667pt;}
.x96_c00131{left:729.866667pt;}
.xf8_c00131{left:731.600000pt;}
.x9c_c00131{left:733.733333pt;}
.xe9_c00131{left:736.933333pt;}
.xa1_c00131{left:737.866667pt;}
.xc8_c00131{left:739.600000pt;}
.xf1_c00131{left:743.866667pt;}
.xe0_c00131{left:746.933333pt;}
.xd9_c00131{left:748.666667pt;}
.xe5_c00131{left:751.200000pt;}
.xad_c00131{left:754.533333pt;}
}





/* 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_c00132 {
    display:none;
  }
  .loading-indicator_c00132.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00132 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_c00132 { 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_c00132" -> "#page-container .classname_c00132")
 */
.pf_c00132 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00132 { /* 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_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00132 { /* 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_c00132 { /* 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_c00132 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00132 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00132 {overflow:visible;}
  }
}
.c_c00132 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00132 { /* 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_c00132:after { /* webkit #35443 */
  content: '';
}
.t_c00132:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00132 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 */
}
.__c00132 { /* 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_c00132 { /* info for Javascript */
  display:none;
}
.l_c00132 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00132 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00132 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00132: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_c00132 {
    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_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00132.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_c00132 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00132;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.000000;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;}
.m1_c00132{transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00132{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00132{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00132{transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00132{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mca_c00132{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md0_c00132{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m5_c00132{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00132{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m77_c00132{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00132{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m61_c00132{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m78_c00132{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00132{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m21_c00132{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00132{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m79_c00132{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00132{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m63_c00132{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9_c00132{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00132{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m67_c00132{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m62_c00132{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mf_c00132{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00132{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00132{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m73_c00132{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00132{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00132{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00132{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00132{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m64_c00132{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m34_c00132{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m95_c00132{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m16_c00132{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m37_c00132{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00132{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md1_c00132{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00132{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00132{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mce_c00132{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00132{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m93_c00132{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00132{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00132{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00132{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m15_c00132{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m109_c00132{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m13_c00132{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00132{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m2_c00132{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m72_c00132{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4_c00132{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m7_c00132{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md2_c00132{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mad_c00132{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md9_c00132{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.meb_c00132{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mef_c00132{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00132{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m53_c00132{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.me5_c00132{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m82_c00132{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m39_c00132{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m74_c00132{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00132{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.md_c00132{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00132{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.md5_c00132{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m28_c00132{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mff_c00132{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00132{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00132{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00132{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m87_c00132{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00132{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m33_c00132{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00132{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m85_c00132{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md4_c00132{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00132{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mb_c00132{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00132{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mee_c00132{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m22_c00132{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m55_c00132{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m80_c00132{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00132{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m42_c00132{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00132{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00132{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m59_c00132{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00132{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md3_c00132{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00132{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00132{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00132{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m54_c00132{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m86_c00132{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00132{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00132{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m29_c00132{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m36_c00132{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me9_c00132{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m43_c00132{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.me7_c00132{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m75_c00132{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00132{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00132{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00132{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00132{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m101_c00132{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m94_c00132{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00132{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00132{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m108_c00132{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00132{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00132{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00132{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m11_c00132{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m104_c00132{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m19_c00132{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00132{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00132{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00132{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00132{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mda_c00132{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md8_c00132{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me_c00132{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00132{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me8_c00132{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00132{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m66_c00132{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m31_c00132{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00132{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00132{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m26_c00132{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m17_c00132{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00132{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00132{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8_c00132{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m23_c00132{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m100_c00132{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m40_c00132{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m84_c00132{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00132{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00132{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00132{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m48_c00132{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00132{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10_c00132{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00132{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m32_c00132{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00132{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me3_c00132{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.ma_c00132{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00132{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m14_c00132{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m50_c00132{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00132{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00132{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m44_c00132{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m65_c00132{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6_c00132{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m45_c00132{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m12_c00132{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00132{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m88_c00132{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00132{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m49_c00132{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m69_c00132{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00132{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00132{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m51_c00132{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m81_c00132{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mae_c00132{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m60_c00132{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m52_c00132{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00132{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00132{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mea_c00132{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00132{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m20_c00132{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00132{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00132{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m106_c00132{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mde_c00132{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00132{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.md6_c00132{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m25_c00132{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m76_c00132{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00132{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m105_c00132{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mba_c00132{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m24_c00132{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me2_c00132{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00132{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mec_c00132{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00132{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m58_c00132{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00132{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);}
.m5e_c00132{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3_c00132{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00132{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me1_c00132{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m70_c00132{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00132{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me4_c00132{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m68_c00132{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00132{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00132{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00132{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc_c00132{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00132{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00132{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00132{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m90_c00132{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00132{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00132{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m103_c00132{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00132{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m57_c00132{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.maf_c00132{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.maa_c00132{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m35_c00132{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md7_c00132{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00132{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00132{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m18_c00132{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mac_c00132{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00132{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m38_c00132{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m47_c00132{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00132{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m27_c00132{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m107_c00132{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00132{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m92_c00132{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m56_c00132{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00132{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m98_c00132{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00132{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m91_c00132{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m71_c00132{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00132{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m46_c00132{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00132{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m30_c00132{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00132{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m83_c00132{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00132{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m41_c00132{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00132{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00132{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00132{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00132{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m99_c00132{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.mab_c00132{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m102_c00132{transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);}
.m0_c00132{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.m96_c00132{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me6_c00132{transform:matrix(0.397000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00132{transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);}
.me0_c00132{transform:matrix(0.406000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406000,0.000000,0.000000,0.250000,0,0);}
.m97_c00132{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m89_c00132{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00132{transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);}
.med_c00132{transform:matrix(0.643750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00132{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00132{transform:matrix(0.828000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.828000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.828000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00132{transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls1_c00132{letter-spacing:0.000000px;}
.ls0_c00132{letter-spacing:55.714286px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{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__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00132{word-spacing:-85.714286px;}
.ws4_c00132{word-spacing:-12.305732px;}
.wsd_c00132{word-spacing:0.000000px;}
.ws6_c00132{word-spacing:1.574257px;}
.ws0_c00132{word-spacing:25.714286px;}
.ws1_c00132{word-spacing:40.000000px;}
.ws7_c00132{word-spacing:120.000000px;}
.wsa_c00132{word-spacing:189.737705px;}
.wsb_c00132{word-spacing:208.809160px;}
.ws8_c00132{word-spacing:554.583333px;}
.ws5_c00132{word-spacing:622.073394px;}
.wsc_c00132{word-spacing:1387.770492px;}
.ws3_c00132{word-spacing:2543.142857px;}
.ws9_c00132{word-spacing:5496.250000px;}
._1_c00132{margin-left:-55.714286px;}
._0_c00132{width:74.166667px;}
._2_c00132{width:382.081967px;}
.fc0_c00132{color:transparent;}
.fs7_c00132{font-size:18.000000px;}
.fs6_c00132{font-size:30.000000px;}
.fs5_c00132{font-size:42.000000px;}
.fs4_c00132{font-size:54.000000px;}
.fs2_c00132{font-size:60.000000px;}
.fs1_c00132{font-size:66.000000px;}
.fs3_c00132{font-size:72.000000px;}
.fs0_c00132{font-size:108.000000px;}
.y0_c00132{bottom:0.000000px;}
.y40_c00132{bottom:202.650000px;}
.y3f_c00132{bottom:207.750000px;}
.y3e_c00132{bottom:222.150000px;}
.y3d_c00132{bottom:244.800000px;}
.y3c_c00132{bottom:266.400000px;}
.y3b_c00132{bottom:284.400000px;}
.y3a_c00132{bottom:298.050000px;}
.y39_c00132{bottom:324.300000px;}
.y38_c00132{bottom:326.100000px;}
.y37_c00132{bottom:341.550000px;}
.y35_c00132{bottom:362.400000px;}
.y34_c00132{bottom:365.700000px;}
.y36_c00132{bottom:366.000000px;}
.y33_c00132{bottom:381.900000px;}
.y31_c00132{bottom:408.600000px;}
.y32_c00132{bottom:409.350000px;}
.y2f_c00132{bottom:426.600000px;}
.y30_c00132{bottom:443.850000px;}
.y2e_c00132{bottom:444.900000px;}
.y2c_c00132{bottom:462.900000px;}
.y2d_c00132{bottom:466.200000px;}
.y2b_c00132{bottom:479.250000px;}
.y2a_c00132{bottom:505.950000px;}
.y29_c00132{bottom:522.900000px;}
.y28_c00132{bottom:541.200000px;}
.y26_c00132{bottom:559.950000px;}
.y27_c00132{bottom:568.200000px;}
.y25_c00132{bottom:581.850000px;}
.y24_c00132{bottom:586.500000px;}
.y22_c00132{bottom:604.500000px;}
.y23_c00132{bottom:608.100000px;}
.y21_c00132{bottom:627.150000px;}
.y20_c00132{bottom:640.050000px;}
.y1f_c00132{bottom:657.000000px;}
.y1e_c00132{bottom:662.850000px;}
.y1d_c00132{bottom:669.300000px;}
.y1c_c00132{bottom:685.800000px;}
.y1b_c00132{bottom:707.700000px;}
.y1a_c00132{bottom:709.500000px;}
.y19_c00132{bottom:737.250000px;}
.y18_c00132{bottom:769.350000px;}
.y17_c00132{bottom:800.700000px;}
.y16_c00132{bottom:803.550000px;}
.y15_c00132{bottom:827.550000px;}
.y14_c00132{bottom:827.850000px;}
.y12_c00132{bottom:846.300000px;}
.y13_c00132{bottom:849.150000px;}
.y10_c00132{bottom:864.300000px;}
.y11_c00132{bottom:867.600000px;}
.yf_c00132{bottom:891.600000px;}
.ye_c00132{bottom:908.100000px;}
.yd_c00132{bottom:920.700000px;}
.yc_c00132{bottom:929.400000px;}
.yb_c00132{bottom:956.700000px;}
.ya_c00132{bottom:974.700000px;}
.y9_c00132{bottom:998.400000px;}
.y8_c00132{bottom:1018.500000px;}
.y7_c00132{bottom:1031.100000px;}
.y6_c00132{bottom:1058.400000px;}
.y5_c00132{bottom:1063.050000px;}
.y4_c00132{bottom:1082.250000px;}
.y3_c00132{bottom:1104.150000px;}
.y2_c00132{bottom:1129.350000px;}
.y1_c00132{bottom:1147.650000px;}
.h9_c00132{height:18.000000px;}
.h8_c00132{height:30.000000px;}
.h7_c00132{height:42.000000px;}
.h6_c00132{height:54.000000px;}
.h4_c00132{height:60.000000px;}
.h3_c00132{height:66.000000px;}
.h5_c00132{height:72.000000px;}
.h2_c00132{height:108.000000px;}
.h1_c00132{height:1284.750000px;}
.h0_c00132{height:1284.839997px;}
.w1_c00132{width:953.250000px;}
.w0_c00132{width:953.280030px;}
.x0_c00132{left:0.000000px;}
.x48_c00132{left:59.100000px;}
.x57_c00132{left:62.250000px;}
.x99_c00132{left:65.550000px;}
.xa7_c00132{left:66.750000px;}
.xc2_c00132{left:69.900000px;}
.x4_c00132{left:72.750000px;}
.x1a_c00132{left:74.250000px;}
.x31_c00132{left:75.300000px;}
.x41_c00132{left:76.350000px;}
.x5c_c00132{left:78.900000px;}
.x81_c00132{left:80.550000px;}
.x98_c00132{left:82.050000px;}
.xa1_c00132{left:83.100000px;}
.x11a_c00132{left:84.450000px;}
.xc5_c00132{left:89.250000px;}
.xd8_c00132{left:90.450000px;}
.xe5_c00132{left:93.450000px;}
.x37_c00132{left:95.700000px;}
.x6c_c00132{left:96.900000px;}
.x76_c00132{left:100.050000px;}
.x5d_c00132{left:104.100000px;}
.x58_c00132{left:105.750000px;}
.x32_c00132{left:107.400000px;}
.x116_c00132{left:109.050000px;}
.x9a_c00132{left:112.650000px;}
.xc6_c00132{left:114.750000px;}
.x104_c00132{left:115.950000px;}
.x11_c00132{left:118.050000px;}
.x20_c00132{left:120.600000px;}
.x82_c00132{left:122.250000px;}
.x49_c00132{left:123.900000px;}
.xdc_c00132{left:125.100000px;}
.x4f_c00132{left:128.700000px;}
.x27_c00132{left:130.350000px;}
.x83_c00132{left:133.350000px;}
.xe1_c00132{left:136.950000px;}
.x5e_c00132{left:139.050000px;}
.x10c_c00132{left:141.450000px;}
.x38_c00132{left:142.800000px;}
.x5_c00132{left:144.750000px;}
.x105_c00132{left:146.850000px;}
.x33_c00132{left:151.350000px;}
.x91_c00132{left:153.450000px;}
.x117_c00132{left:155.100000px;}
.x1b_c00132{left:156.300000px;}
.xb3_c00132{left:158.700000px;}
.xae_c00132{left:164.550000px;}
.x21_c00132{left:167.700000px;}
.x7c_c00132{left:171.450000px;}
.xc7_c00132{left:176.700000px;}
.x22_c00132{left:178.800000px;}
.xcb_c00132{left:180.000000px;}
.x112_c00132{left:182.700000px;}
.x6_c00132{left:185.100000px;}
.xba_c00132{left:189.000000px;}
.x77_c00132{left:190.800000px;}
.x12_c00132{left:192.600000px;}
.xaf_c00132{left:194.100000px;}
.x7_c00132{left:196.200000px;}
.x34_c00132{left:197.400000px;}
.x5f_c00132{left:199.500000px;}
.x78_c00132{left:203.100000px;}
.x28_c00132{left:204.450000px;}
.x39_c00132{left:207.900000px;}
.xf3_c00132{left:211.650000px;}
.x10a_c00132{left:212.700000px;}
.xf6_c00132{left:216.750000px;}
.xb4_c00132{left:218.100000px;}
.x13_c00132{left:219.600000px;}
.x87_c00132{left:222.150000px;}
.x3a_c00132{left:223.800000px;}
.x29_c00132{left:227.850000px;}
.x9b_c00132{left:229.650000px;}
.x23_c00132{left:235.350000px;}
.xb5_c00132{left:236.400000px;}
.x113_c00132{left:239.550000px;}
.x8_c00132{left:240.900000px;}
.xd9_c00132{left:242.400000px;}
.x3b_c00132{left:244.350000px;}
.x84_c00132{left:247.050000px;}
.xfe_c00132{left:249.300000px;}
.x14_c00132{left:252.300000px;}
.x100_c00132{left:255.600000px;}
.x1c_c00132{left:256.800000px;}
.xb0_c00132{left:261.000000px;}
.xe2_c00132{left:262.500000px;}
.x9c_c00132{left:264.150000px;}
.x2a_c00132{left:267.150000px;}
.xa8_c00132{left:269.550000px;}
.x15_c00132{left:271.350000px;}
.xc8_c00132{left:272.850000px;}
.x92_c00132{left:274.800000px;}
.x9_c00132{left:276.150000px;}
.x79_c00132{left:277.200000px;}
.x88_c00132{left:278.700000px;}
.x11b_c00132{left:280.950000px;}
.xcc_c00132{left:285.150000px;}
.x2b_c00132{left:287.700000px;}
.x10d_c00132{left:289.800000px;}
.xa2_c00132{left:291.150000px;}
.x24_c00132{left:292.650000px;}
.x85_c00132{left:293.850000px;}
.xc3_c00132{left:294.900000px;}
.xe3_c00132{left:297.900000px;}
.x1_c00132{left:300.900000px;}
.x11c_c00132{left:303.300000px;}
.x118_c00132{left:305.250000px;}
.xf4_c00132{left:307.800000px;}
.x89_c00132{left:309.300000px;}
.x107_c00132{left:314.700000px;}
.x25_c00132{left:315.750000px;}
.x119_c00132{left:321.750000px;}
.xa_c00132{left:323.250000px;}
.x16_c00132{left:325.050000px;}
.x35_c00132{left:327.450000px;}
.xa3_c00132{left:330.750000px;}
.xb_c00132{left:332.550000px;}
.xbb_c00132{left:335.100000px;}
.x93_c00132{left:338.100000px;}
.x9d_c00132{left:341.550000px;}
.x1d_c00132{left:345.000000px;}
.xa9_c00132{left:347.250000px;}
.xf7_c00132{left:348.450000px;}
.x94_c00132{left:349.950000px;}
.xcd_c00132{left:351.000000px;}
.x10e_c00132{left:352.500000px;}
.x8a_c00132{left:356.550000px;}
.xbc_c00132{left:359.250000px;}
.x26_c00132{left:360.750000px;}
.xda_c00132{left:364.800000px;}
.xc_c00132{left:366.750000px;}
.x2c_c00132{left:369.450000px;}
.x3c_c00132{left:370.650000px;}
.x50_c00132{left:376.650000px;}
.x86_c00132{left:377.700000px;}
.xce_c00132{left:380.100000px;}
.xd2_c00132{left:382.050000px;}
.xf8_c00132{left:383.700000px;}
.xc4_c00132{left:385.650000px;}
.xb7_c00132{left:391.350000px;}
.xa4_c00132{left:392.550000px;}
.xdb_c00132{left:393.600000px;}
.x114_c00132{left:400.800000px;}
.xd3_c00132{left:406.950000px;}
.xf9_c00132{left:412.800000px;}
.x2d_c00132{left:417.000000px;}
.x4a_c00132{left:418.350000px;}
.x60_c00132{left:420.150000px;}
.x9e_c00132{left:423.600000px;}
.xaa_c00132{left:426.150000px;}
.xbe_c00132{left:428.400000px;}
.x17_c00132{left:431.250000px;}
.x36_c00132{left:434.400000px;}
.x51_c00132{left:436.350000px;}
.x8b_c00132{left:440.100000px;}
.x95_c00132{left:446.850000px;}
.xd_c00132{left:448.500000px;}
.x1e_c00132{left:452.400000px;}
.x3d_c00132{left:454.500000px;}
.x42_c00132{left:455.700000px;}
.x52_c00132{left:457.950000px;}
.x4b_c00132{left:459.450000px;}
.x2e_c00132{left:462.300000px;}
.xb6_c00132{left:463.650000px;}
.x8c_c00132{left:465.600000px;}
.x18_c00132{left:466.950000px;}
.xe4_c00132{left:468.900000px;}
.xe8_c00132{left:470.850000px;}
.xef_c00132{left:472.350000px;}
.xd4_c00132{left:473.850000px;}
.x101_c00132{left:475.200000px;}
.xf5_c00132{left:476.250000px;}
.x10f_c00132{left:477.450000px;}
.x10b_c00132{left:478.800000px;}
.x61_c00132{left:483.450000px;}
.x9f_c00132{left:485.100000px;}
.xfd_c00132{left:487.650000px;}
.xdd_c00132{left:489.000000px;}
.x19_c00132{left:490.350000px;}
.x7d_c00132{left:496.500000px;}
.x1f_c00132{left:498.450000px;}
.x96_c00132{left:500.400000px;}
.x2f_c00132{left:502.200000px;}
.xa0_c00132{left:503.850000px;}
.x11d_c00132{left:505.350000px;}
.xed_c00132{left:506.700000px;}
.xc9_c00132{left:508.650000px;}
.x7e_c00132{left:511.650000px;}
.x6d_c00132{left:517.050000px;}
.x43_c00132{left:518.700000px;}
.xb1_c00132{left:521.550000px;}
.xb8_c00132{left:522.750000px;}
.x4c_c00132{left:523.950000px;}
.x62_c00132{left:525.150000px;}
.xe9_c00132{left:526.350000px;}
.xe_c00132{left:527.400000px;}
.xde_c00132{left:529.650000px;}
.x8d_c00132{left:530.700000px;}
.xd5_c00132{left:531.750000px;}
.xe6_c00132{left:533.100000px;}
.x53_c00132{left:534.600000px;}
.x106_c00132{left:535.950000px;}
.xca_c00132{left:540.300000px;}
.x6e_c00132{left:543.300000px;}
.x63_c00132{left:545.250000px;}
.xab_c00132{left:547.500000px;}
.x3e_c00132{left:550.950000px;}
.xff_c00132{left:552.300000px;}
.x11e_c00132{left:555.000000px;}
.xb2_c00132{left:556.800000px;}
.x7a_c00132{left:563.100000px;}
.xcf_c00132{left:566.100000px;}
.x8e_c00132{left:569.250000px;}
.x4d_c00132{left:571.800000px;}
.xf0_c00132{left:572.850000px;}
.xea_c00132{left:574.350000px;}
.x102_c00132{left:577.800000px;}
.x6f_c00132{left:579.000000px;}
.x70_c00132{left:586.500000px;}
.x44_c00132{left:588.150000px;}
.x54_c00132{left:589.650000px;}
.xb9_c00132{left:590.850000px;}
.x71_c00132{left:593.700000px;}
.x64_c00132{left:601.500000px;}
.x72_c00132{left:608.100000px;}
.x55_c00132{left:609.450000px;}
.xbd_c00132{left:611.250000px;}
.x73_c00132{left:615.600000px;}
.x11f_c00132{left:616.950000px;}
.xee_c00132{left:618.000000px;}
.xf_c00132{left:619.200000px;}
.x65_c00132{left:623.100000px;}
.xfa_c00132{left:625.500000px;}
.x45_c00132{left:626.700000px;}
.x3f_c00132{left:628.650000px;}
.x66_c00132{left:631.050000px;}
.x120_c00132{left:632.850000px;}
.xf1_c00132{left:634.050000px;}
.x56_c00132{left:637.500000px;}
.xa5_c00132{left:642.450000px;}
.x108_c00132{left:644.100000px;}
.xfb_c00132{left:646.800000px;}
.xd0_c00132{left:653.250000px;}
.x7f_c00132{left:654.300000px;}
.xa6_c00132{left:655.350000px;}
.x46_c00132{left:657.000000px;}
.x67_c00132{left:659.550000px;}
.x103_c00132{left:663.150000px;}
.xd1_c00132{left:664.350000px;}
.x68_c00132{left:667.050000px;}
.x2_c00132{left:669.600000px;}
.x8f_c00132{left:671.100000px;}
.x80_c00132{left:673.800000px;}
.x59_c00132{left:675.900000px;}
.xdf_c00132{left:678.000000px;}
.x110_c00132{left:679.500000px;}
.x30_c00132{left:681.900000px;}
.x69_c00132{left:686.550000px;}
.xfc_c00132{left:688.500000px;}
.xac_c00132{left:692.550000px;}
.x47_c00132{left:693.750000px;}
.x7b_c00132{left:695.250000px;}
.xbf_c00132{left:698.400000px;}
.xd6_c00132{left:700.350000px;}
.x111_c00132{left:701.850000px;}
.x5a_c00132{left:706.800000px;}
.x10_c00132{left:708.150000px;}
.x74_c00132{left:709.200000px;}
.x40_c00132{left:713.550000px;}
.x97_c00132{left:714.600000px;}
.x6a_c00132{left:716.100000px;}
.xeb_c00132{left:718.800000px;}
.x3_c00132{left:720.300000px;}
.x4e_c00132{left:724.800000px;}
.x109_c00132{left:728.400000px;}
.xad_c00132{left:730.650000px;}
.x90_c00132{left:732.000000px;}
.xc0_c00132{left:734.400000px;}
.x75_c00132{left:736.950000px;}
.x5b_c00132{left:741.300000px;}
.xd7_c00132{left:742.800000px;}
.x6b_c00132{left:743.850000px;}
.x121_c00132{left:746.250000px;}
.xe0_c00132{left:748.950000px;}
.xe7_c00132{left:753.300000px;}
.xec_c00132{left:758.400000px;}
.xc1_c00132{left:759.900000px;}
.xf2_c00132{left:761.700000px;}
.x115_c00132{left:771.900000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls1_c00132{letter-spacing:0.000000pt;}
.ls0_c00132{letter-spacing:49.523810pt;}
.ws2_c00132{word-spacing:-76.190476pt;}
.ws4_c00132{word-spacing:-10.938429pt;}
.wsd_c00132{word-spacing:0.000000pt;}
.ws6_c00132{word-spacing:1.399340pt;}
.ws0_c00132{word-spacing:22.857143pt;}
.ws1_c00132{word-spacing:35.555556pt;}
.ws7_c00132{word-spacing:106.666667pt;}
.wsa_c00132{word-spacing:168.655738pt;}
.wsb_c00132{word-spacing:185.608142pt;}
.ws8_c00132{word-spacing:492.962963pt;}
.ws5_c00132{word-spacing:552.954128pt;}
.wsc_c00132{word-spacing:1233.573770pt;}
.ws3_c00132{word-spacing:2260.571429pt;}
.ws9_c00132{word-spacing:4885.555556pt;}
._1_c00132{margin-left:-49.523810pt;}
._0_c00132{width:65.925926pt;}
._2_c00132{width:339.628415pt;}
.fs7_c00132{font-size:16.000000pt;}
.fs6_c00132{font-size:26.666667pt;}
.fs5_c00132{font-size:37.333333pt;}
.fs4_c00132{font-size:48.000000pt;}
.fs2_c00132{font-size:53.333333pt;}
.fs1_c00132{font-size:58.666667pt;}
.fs3_c00132{font-size:64.000000pt;}
.fs0_c00132{font-size:96.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y40_c00132{bottom:180.133333pt;}
.y3f_c00132{bottom:184.666667pt;}
.y3e_c00132{bottom:197.466667pt;}
.y3d_c00132{bottom:217.600000pt;}
.y3c_c00132{bottom:236.800000pt;}
.y3b_c00132{bottom:252.800000pt;}
.y3a_c00132{bottom:264.933333pt;}
.y39_c00132{bottom:288.266667pt;}
.y38_c00132{bottom:289.866667pt;}
.y37_c00132{bottom:303.600000pt;}
.y35_c00132{bottom:322.133333pt;}
.y34_c00132{bottom:325.066667pt;}
.y36_c00132{bottom:325.333333pt;}
.y33_c00132{bottom:339.466667pt;}
.y31_c00132{bottom:363.200000pt;}
.y32_c00132{bottom:363.866667pt;}
.y2f_c00132{bottom:379.200000pt;}
.y30_c00132{bottom:394.533333pt;}
.y2e_c00132{bottom:395.466667pt;}
.y2c_c00132{bottom:411.466667pt;}
.y2d_c00132{bottom:414.400000pt;}
.y2b_c00132{bottom:426.000000pt;}
.y2a_c00132{bottom:449.733333pt;}
.y29_c00132{bottom:464.800000pt;}
.y28_c00132{bottom:481.066667pt;}
.y26_c00132{bottom:497.733333pt;}
.y27_c00132{bottom:505.066667pt;}
.y25_c00132{bottom:517.200000pt;}
.y24_c00132{bottom:521.333333pt;}
.y22_c00132{bottom:537.333333pt;}
.y23_c00132{bottom:540.533333pt;}
.y21_c00132{bottom:557.466667pt;}
.y20_c00132{bottom:568.933333pt;}
.y1f_c00132{bottom:584.000000pt;}
.y1e_c00132{bottom:589.200000pt;}
.y1d_c00132{bottom:594.933333pt;}
.y1c_c00132{bottom:609.600000pt;}
.y1b_c00132{bottom:629.066667pt;}
.y1a_c00132{bottom:630.666667pt;}
.y19_c00132{bottom:655.333333pt;}
.y18_c00132{bottom:683.866667pt;}
.y17_c00132{bottom:711.733333pt;}
.y16_c00132{bottom:714.266667pt;}
.y15_c00132{bottom:735.600000pt;}
.y14_c00132{bottom:735.866667pt;}
.y12_c00132{bottom:752.266667pt;}
.y13_c00132{bottom:754.800000pt;}
.y10_c00132{bottom:768.266667pt;}
.y11_c00132{bottom:771.200000pt;}
.yf_c00132{bottom:792.533333pt;}
.ye_c00132{bottom:807.200000pt;}
.yd_c00132{bottom:818.400000pt;}
.yc_c00132{bottom:826.133333pt;}
.yb_c00132{bottom:850.400000pt;}
.ya_c00132{bottom:866.400000pt;}
.y9_c00132{bottom:887.466667pt;}
.y8_c00132{bottom:905.333333pt;}
.y7_c00132{bottom:916.533333pt;}
.y6_c00132{bottom:940.800000pt;}
.y5_c00132{bottom:944.933333pt;}
.y4_c00132{bottom:962.000000pt;}
.y3_c00132{bottom:981.466667pt;}
.y2_c00132{bottom:1003.866667pt;}
.y1_c00132{bottom:1020.133333pt;}
.h9_c00132{height:16.000000pt;}
.h8_c00132{height:26.666667pt;}
.h7_c00132{height:37.333333pt;}
.h6_c00132{height:48.000000pt;}
.h4_c00132{height:53.333333pt;}
.h3_c00132{height:58.666667pt;}
.h5_c00132{height:64.000000pt;}
.h2_c00132{height:96.000000pt;}
.h1_c00132{height:1142.000000pt;}
.h0_c00132{height:1142.079997pt;}
.w1_c00132{width:847.333333pt;}
.w0_c00132{width:847.360027pt;}
.x0_c00132{left:0.000000pt;}
.x48_c00132{left:52.533333pt;}
.x57_c00132{left:55.333333pt;}
.x99_c00132{left:58.266667pt;}
.xa7_c00132{left:59.333333pt;}
.xc2_c00132{left:62.133333pt;}
.x4_c00132{left:64.666667pt;}
.x1a_c00132{left:66.000000pt;}
.x31_c00132{left:66.933333pt;}
.x41_c00132{left:67.866667pt;}
.x5c_c00132{left:70.133333pt;}
.x81_c00132{left:71.600000pt;}
.x98_c00132{left:72.933333pt;}
.xa1_c00132{left:73.866667pt;}
.x11a_c00132{left:75.066667pt;}
.xc5_c00132{left:79.333333pt;}
.xd8_c00132{left:80.400000pt;}
.xe5_c00132{left:83.066667pt;}
.x37_c00132{left:85.066667pt;}
.x6c_c00132{left:86.133333pt;}
.x76_c00132{left:88.933333pt;}
.x5d_c00132{left:92.533333pt;}
.x58_c00132{left:94.000000pt;}
.x32_c00132{left:95.466667pt;}
.x116_c00132{left:96.933333pt;}
.x9a_c00132{left:100.133333pt;}
.xc6_c00132{left:102.000000pt;}
.x104_c00132{left:103.066667pt;}
.x11_c00132{left:104.933333pt;}
.x20_c00132{left:107.200000pt;}
.x82_c00132{left:108.666667pt;}
.x49_c00132{left:110.133333pt;}
.xdc_c00132{left:111.200000pt;}
.x4f_c00132{left:114.400000pt;}
.x27_c00132{left:115.866667pt;}
.x83_c00132{left:118.533333pt;}
.xe1_c00132{left:121.733333pt;}
.x5e_c00132{left:123.600000pt;}
.x10c_c00132{left:125.733333pt;}
.x38_c00132{left:126.933333pt;}
.x5_c00132{left:128.666667pt;}
.x105_c00132{left:130.533333pt;}
.x33_c00132{left:134.533333pt;}
.x91_c00132{left:136.400000pt;}
.x117_c00132{left:137.866667pt;}
.x1b_c00132{left:138.933333pt;}
.xb3_c00132{left:141.066667pt;}
.xae_c00132{left:146.266667pt;}
.x21_c00132{left:149.066667pt;}
.x7c_c00132{left:152.400000pt;}
.xc7_c00132{left:157.066667pt;}
.x22_c00132{left:158.933333pt;}
.xcb_c00132{left:160.000000pt;}
.x112_c00132{left:162.400000pt;}
.x6_c00132{left:164.533333pt;}
.xba_c00132{left:168.000000pt;}
.x77_c00132{left:169.600000pt;}
.x12_c00132{left:171.200000pt;}
.xaf_c00132{left:172.533333pt;}
.x7_c00132{left:174.400000pt;}
.x34_c00132{left:175.466667pt;}
.x5f_c00132{left:177.333333pt;}
.x78_c00132{left:180.533333pt;}
.x28_c00132{left:181.733333pt;}
.x39_c00132{left:184.800000pt;}
.xf3_c00132{left:188.133333pt;}
.x10a_c00132{left:189.066667pt;}
.xf6_c00132{left:192.666667pt;}
.xb4_c00132{left:193.866667pt;}
.x13_c00132{left:195.200000pt;}
.x87_c00132{left:197.466667pt;}
.x3a_c00132{left:198.933333pt;}
.x29_c00132{left:202.533333pt;}
.x9b_c00132{left:204.133333pt;}
.x23_c00132{left:209.200000pt;}
.xb5_c00132{left:210.133333pt;}
.x113_c00132{left:212.933333pt;}
.x8_c00132{left:214.133333pt;}
.xd9_c00132{left:215.466667pt;}
.x3b_c00132{left:217.200000pt;}
.x84_c00132{left:219.600000pt;}
.xfe_c00132{left:221.600000pt;}
.x14_c00132{left:224.266667pt;}
.x100_c00132{left:227.200000pt;}
.x1c_c00132{left:228.266667pt;}
.xb0_c00132{left:232.000000pt;}
.xe2_c00132{left:233.333333pt;}
.x9c_c00132{left:234.800000pt;}
.x2a_c00132{left:237.466667pt;}
.xa8_c00132{left:239.600000pt;}
.x15_c00132{left:241.200000pt;}
.xc8_c00132{left:242.533333pt;}
.x92_c00132{left:244.266667pt;}
.x9_c00132{left:245.466667pt;}
.x79_c00132{left:246.400000pt;}
.x88_c00132{left:247.733333pt;}
.x11b_c00132{left:249.733333pt;}
.xcc_c00132{left:253.466667pt;}
.x2b_c00132{left:255.733333pt;}
.x10d_c00132{left:257.600000pt;}
.xa2_c00132{left:258.800000pt;}
.x24_c00132{left:260.133333pt;}
.x85_c00132{left:261.200000pt;}
.xc3_c00132{left:262.133333pt;}
.xe3_c00132{left:264.800000pt;}
.x1_c00132{left:267.466667pt;}
.x11c_c00132{left:269.600000pt;}
.x118_c00132{left:271.333333pt;}
.xf4_c00132{left:273.600000pt;}
.x89_c00132{left:274.933333pt;}
.x107_c00132{left:279.733333pt;}
.x25_c00132{left:280.666667pt;}
.x119_c00132{left:286.000000pt;}
.xa_c00132{left:287.333333pt;}
.x16_c00132{left:288.933333pt;}
.x35_c00132{left:291.066667pt;}
.xa3_c00132{left:294.000000pt;}
.xb_c00132{left:295.600000pt;}
.xbb_c00132{left:297.866667pt;}
.x93_c00132{left:300.533333pt;}
.x9d_c00132{left:303.600000pt;}
.x1d_c00132{left:306.666667pt;}
.xa9_c00132{left:308.666667pt;}
.xf7_c00132{left:309.733333pt;}
.x94_c00132{left:311.066667pt;}
.xcd_c00132{left:312.000000pt;}
.x10e_c00132{left:313.333333pt;}
.x8a_c00132{left:316.933333pt;}
.xbc_c00132{left:319.333333pt;}
.x26_c00132{left:320.666667pt;}
.xda_c00132{left:324.266667pt;}
.xc_c00132{left:326.000000pt;}
.x2c_c00132{left:328.400000pt;}
.x3c_c00132{left:329.466667pt;}
.x50_c00132{left:334.800000pt;}
.x86_c00132{left:335.733333pt;}
.xce_c00132{left:337.866667pt;}
.xd2_c00132{left:339.600000pt;}
.xf8_c00132{left:341.066667pt;}
.xc4_c00132{left:342.800000pt;}
.xb7_c00132{left:347.866667pt;}
.xa4_c00132{left:348.933333pt;}
.xdb_c00132{left:349.866667pt;}
.x114_c00132{left:356.266667pt;}
.xd3_c00132{left:361.733333pt;}
.xf9_c00132{left:366.933333pt;}
.x2d_c00132{left:370.666667pt;}
.x4a_c00132{left:371.866667pt;}
.x60_c00132{left:373.466667pt;}
.x9e_c00132{left:376.533333pt;}
.xaa_c00132{left:378.800000pt;}
.xbe_c00132{left:380.800000pt;}
.x17_c00132{left:383.333333pt;}
.x36_c00132{left:386.133333pt;}
.x51_c00132{left:387.866667pt;}
.x8b_c00132{left:391.200000pt;}
.x95_c00132{left:397.200000pt;}
.xd_c00132{left:398.666667pt;}
.x1e_c00132{left:402.133333pt;}
.x3d_c00132{left:404.000000pt;}
.x42_c00132{left:405.066667pt;}
.x52_c00132{left:407.066667pt;}
.x4b_c00132{left:408.400000pt;}
.x2e_c00132{left:410.933333pt;}
.xb6_c00132{left:412.133333pt;}
.x8c_c00132{left:413.866667pt;}
.x18_c00132{left:415.066667pt;}
.xe4_c00132{left:416.800000pt;}
.xe8_c00132{left:418.533333pt;}
.xef_c00132{left:419.866667pt;}
.xd4_c00132{left:421.200000pt;}
.x101_c00132{left:422.400000pt;}
.xf5_c00132{left:423.333333pt;}
.x10f_c00132{left:424.400000pt;}
.x10b_c00132{left:425.600000pt;}
.x61_c00132{left:429.733333pt;}
.x9f_c00132{left:431.200000pt;}
.xfd_c00132{left:433.466667pt;}
.xdd_c00132{left:434.666667pt;}
.x19_c00132{left:435.866667pt;}
.x7d_c00132{left:441.333333pt;}
.x1f_c00132{left:443.066667pt;}
.x96_c00132{left:444.800000pt;}
.x2f_c00132{left:446.400000pt;}
.xa0_c00132{left:447.866667pt;}
.x11d_c00132{left:449.200000pt;}
.xed_c00132{left:450.400000pt;}
.xc9_c00132{left:452.133333pt;}
.x7e_c00132{left:454.800000pt;}
.x6d_c00132{left:459.600000pt;}
.x43_c00132{left:461.066667pt;}
.xb1_c00132{left:463.600000pt;}
.xb8_c00132{left:464.666667pt;}
.x4c_c00132{left:465.733333pt;}
.x62_c00132{left:466.800000pt;}
.xe9_c00132{left:467.866667pt;}
.xe_c00132{left:468.800000pt;}
.xde_c00132{left:470.800000pt;}
.x8d_c00132{left:471.733333pt;}
.xd5_c00132{left:472.666667pt;}
.xe6_c00132{left:473.866667pt;}
.x53_c00132{left:475.200000pt;}
.x106_c00132{left:476.400000pt;}
.xca_c00132{left:480.266667pt;}
.x6e_c00132{left:482.933333pt;}
.x63_c00132{left:484.666667pt;}
.xab_c00132{left:486.666667pt;}
.x3e_c00132{left:489.733333pt;}
.xff_c00132{left:490.933333pt;}
.x11e_c00132{left:493.333333pt;}
.xb2_c00132{left:494.933333pt;}
.x7a_c00132{left:500.533333pt;}
.xcf_c00132{left:503.200000pt;}
.x8e_c00132{left:506.000000pt;}
.x4d_c00132{left:508.266667pt;}
.xf0_c00132{left:509.200000pt;}
.xea_c00132{left:510.533333pt;}
.x102_c00132{left:513.600000pt;}
.x6f_c00132{left:514.666667pt;}
.x70_c00132{left:521.333333pt;}
.x44_c00132{left:522.800000pt;}
.x54_c00132{left:524.133333pt;}
.xb9_c00132{left:525.200000pt;}
.x71_c00132{left:527.733333pt;}
.x64_c00132{left:534.666667pt;}
.x72_c00132{left:540.533333pt;}
.x55_c00132{left:541.733333pt;}
.xbd_c00132{left:543.333333pt;}
.x73_c00132{left:547.200000pt;}
.x11f_c00132{left:548.400000pt;}
.xee_c00132{left:549.333333pt;}
.xf_c00132{left:550.400000pt;}
.x65_c00132{left:553.866667pt;}
.xfa_c00132{left:556.000000pt;}
.x45_c00132{left:557.066667pt;}
.x3f_c00132{left:558.800000pt;}
.x66_c00132{left:560.933333pt;}
.x120_c00132{left:562.533333pt;}
.xf1_c00132{left:563.600000pt;}
.x56_c00132{left:566.666667pt;}
.xa5_c00132{left:571.066667pt;}
.x108_c00132{left:572.533333pt;}
.xfb_c00132{left:574.933333pt;}
.xd0_c00132{left:580.666667pt;}
.x7f_c00132{left:581.600000pt;}
.xa6_c00132{left:582.533333pt;}
.x46_c00132{left:584.000000pt;}
.x67_c00132{left:586.266667pt;}
.x103_c00132{left:589.466667pt;}
.xd1_c00132{left:590.533333pt;}
.x68_c00132{left:592.933333pt;}
.x2_c00132{left:595.200000pt;}
.x8f_c00132{left:596.533333pt;}
.x80_c00132{left:598.933333pt;}
.x59_c00132{left:600.800000pt;}
.xdf_c00132{left:602.666667pt;}
.x110_c00132{left:604.000000pt;}
.x30_c00132{left:606.133333pt;}
.x69_c00132{left:610.266667pt;}
.xfc_c00132{left:612.000000pt;}
.xac_c00132{left:615.600000pt;}
.x47_c00132{left:616.666667pt;}
.x7b_c00132{left:618.000000pt;}
.xbf_c00132{left:620.800000pt;}
.xd6_c00132{left:622.533333pt;}
.x111_c00132{left:623.866667pt;}
.x5a_c00132{left:628.266667pt;}
.x10_c00132{left:629.466667pt;}
.x74_c00132{left:630.400000pt;}
.x40_c00132{left:634.266667pt;}
.x97_c00132{left:635.200000pt;}
.x6a_c00132{left:636.533333pt;}
.xeb_c00132{left:638.933333pt;}
.x3_c00132{left:640.266667pt;}
.x4e_c00132{left:644.266667pt;}
.x109_c00132{left:647.466667pt;}
.xad_c00132{left:649.466667pt;}
.x90_c00132{left:650.666667pt;}
.xc0_c00132{left:652.800000pt;}
.x75_c00132{left:655.066667pt;}
.x5b_c00132{left:658.933333pt;}
.xd7_c00132{left:660.266667pt;}
.x6b_c00132{left:661.200000pt;}
.x121_c00132{left:663.333333pt;}
.xe0_c00132{left:665.733333pt;}
.xe7_c00132{left:669.600000pt;}
.xec_c00132{left:674.133333pt;}
.xc1_c00132{left:675.466667pt;}
.xf2_c00132{left:677.066667pt;}
.x115_c00132{left:686.133333pt;}
}





/* 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_c00133 {
    display:none;
  }
  .loading-indicator_c00133.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00133 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_c00133 { 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_c00133" -> "#page-container .classname_c00133")
 */
.pf_c00133 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00133 { /* 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_c00133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00133 { /* 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_c00133 { /* 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_c00133 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00133 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00133 {overflow:visible;}
  }
}
.c_c00133 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00133 { /* 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_c00133:after { /* webkit #35443 */
  content: '';
}
.t_c00133:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00133 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 */
}
.__c00133 { /* 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_c00133 { /* info for Javascript */
  display:none;
}
.l_c00133 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00133 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00133 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00133: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_c00133 {
    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_c00133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00133.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_c00133 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00133;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.000000;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;}
.m37_c00133{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m78_c00133{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m55_c00133{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00133{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md1_c00133{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mce_c00133{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00133{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00133{transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);}
.m12_c00133{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00133{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00133{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m76_c00133{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m92_c00133{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m70_c00133{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m35_c00133{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md4_c00133{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00133{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mca_c00133{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00133{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m29_c00133{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m59_c00133{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m81_c00133{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mad_c00133{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00133{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00133{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m91_c00133{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00133{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00133{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m87_c00133{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00133{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m82_c00133{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m13_c00133{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.me4_c00133{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m62_c00133{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00133{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mac_c00133{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m20_c00133{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md9_c00133{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00133{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00133{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.me3_c00133{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00133{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mae_c00133{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m54_c00133{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00133{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00133{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.maf_c00133{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m26_c00133{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00133{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00133{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m43_c00133{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m99_c00133{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me2_c00133{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00133{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m67_c00133{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00133{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m14_c00133{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me6_c00133{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m22_c00133{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m96_c00133{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00133{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00133{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00133{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m65_c00133{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m28_c00133{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00133{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mef_c00133{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00133{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m38_c00133{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m58_c00133{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m68_c00133{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m39_c00133{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me8_c00133{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m33_c00133{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m30_c00133{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00133{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00133{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00133{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00133{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m10_c00133{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m19_c00133{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00133{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md7_c00133{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00133{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mea_c00133{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00133{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mf_c00133{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00133{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m47_c00133{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m31_c00133{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00133{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md5_c00133{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00133{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m80_c00133{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00133{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00133{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m50_c00133{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md6_c00133{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m32_c00133{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m63_c00133{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00133{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m85_c00133{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00133{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m86_c00133{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00133{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00133{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00133{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me0_c00133{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.md2_c00133{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6_c00133{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00133{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00133{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.me5_c00133{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00133{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00133{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00133{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00133{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00133{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m71_c00133{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00133{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m18_c00133{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m66_c00133{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m93_c00133{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00133{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00133{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00133{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m84_c00133{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m23_c00133{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m95_c00133{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m56_c00133{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m15_c00133{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb_c00133{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m94_c00133{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7_c00133{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m52_c00133{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00133{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00133{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8_c00133{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m69_c00133{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m17_c00133{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m90_c00133{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4_c00133{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mec_c00133{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m34_c00133{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m60_c00133{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00133{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00133{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00133{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00133{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md0_c00133{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00133{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00133{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.med_c00133{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m97_c00133{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md8_c00133{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me9_c00133{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m24_c00133{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00133{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00133{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00133{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mda_c00133{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00133{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me_c00133{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00133{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m48_c00133{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00133{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m57_c00133{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3_c00133{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m77_c00133{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m89_c00133{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00133{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.meb_c00133{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00133{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00133{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00133{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00133{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma_c00133{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m27_c00133{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00133{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mab_c00133{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00133{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00133{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m41_c00133{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m5_c00133{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m98_c00133{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00133{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m2_c00133{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m53_c00133{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00133{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m51_c00133{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00133{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m40_c00133{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00133{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00133{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00133{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m42_c00133{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mee_c00133{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m61_c00133{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);}
.m83_c00133{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00133{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00133{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m36_c00133{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m46_c00133{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00133{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00133{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00133{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00133{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00133{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m72_c00133{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m88_c00133{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.me7_c00133{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mba_c00133{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00133{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m11_c00133{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00133{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m74_c00133{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m25_c00133{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.md_c00133{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m73_c00133{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00133{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.me1_c00133{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.maa_c00133{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00133{transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00133{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m16_c00133{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mc_c00133{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00133{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m79_c00133{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m75_c00133{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00133{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m64_c00133{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00133{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m45_c00133{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00133{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00133{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00133{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00133{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m9_c00133{transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);}
.m44_c00133{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00133{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00133{transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00133{transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00133{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.mde_c00133{transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00133{transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m21_c00133{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m49_c00133{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.md3_c00133{transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00133{transform:matrix(0.709000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls0_c00133{letter-spacing:0.000000px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{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__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00133{word-spacing:-3.289474px;}
.ws3_c00133{word-spacing:-2.118598px;}
.ws5_c00133{word-spacing:0.000000px;}
.ws0_c00133{word-spacing:3.750000px;}
.ws4_c00133{word-spacing:13.245283px;}
.ws2_c00133{word-spacing:76.250000px;}
.fc0_c00133{color:transparent;}
.fs5_c00133{font-size:24.000000px;}
.fs7_c00133{font-size:30.000000px;}
.fs6_c00133{font-size:48.000000px;}
.fs3_c00133{font-size:54.000000px;}
.fs2_c00133{font-size:60.000000px;}
.fs4_c00133{font-size:66.000000px;}
.fs0_c00133{font-size:72.000000px;}
.fs1_c00133{font-size:78.000000px;}
.fs8_c00133{font-size:108.000000px;}
.y0_c00133{bottom:0.000000px;}
.y5d_c00133{bottom:188.550000px;}
.y30_c00133{bottom:192.900000px;}
.y5c_c00133{bottom:203.700000px;}
.y5b_c00133{bottom:218.100000px;}
.y2f_c00133{bottom:220.050000px;}
.y5a_c00133{bottom:232.200000px;}
.y2e_c00133{bottom:238.350000px;}
.y2d_c00133{bottom:268.800000px;}
.y59_c00133{bottom:281.850000px;}
.y2c_c00133{bottom:286.500000px;}
.y58_c00133{bottom:299.550000px;}
.y2b_c00133{bottom:313.200000px;}
.y57_c00133{bottom:321.750000px;}
.y2a_c00133{bottom:331.200000px;}
.y56_c00133{bottom:339.450000px;}
.y29_c00133{bottom:348.450000px;}
.y55_c00133{bottom:362.100000px;}
.y28_c00133{bottom:366.450000px;}
.y54_c00133{bottom:379.800000px;}
.y27_c00133{bottom:384.150000px;}
.y53_c00133{bottom:401.400000px;}
.y26_c00133{bottom:402.150000px;}
.y52_c00133{bottom:423.750000px;}
.y25_c00133{bottom:427.650000px;}
.y24_c00133{bottom:441.750000px;}
.y51_c00133{bottom:446.850000px;}
.y23_c00133{bottom:457.200000px;}
.y50_c00133{bottom:464.100000px;}
.y22_c00133{bottom:481.200000px;}
.y4f_c00133{bottom:486.300000px;}
.y21_c00133{bottom:498.900000px;}
.y4e_c00133{bottom:509.100000px;}
.y20_c00133{bottom:525.600000px;}
.y4d_c00133{bottom:527.400000px;}
.y1f_c00133{bottom:543.900000px;}
.y4c_c00133{bottom:545.100000px;}
.y1e_c00133{bottom:561.300000px;}
.y4b_c00133{bottom:567.000000px;}
.y4a_c00133{bottom:584.700000px;}
.y1d_c00133{bottom:587.850000px;}
.y1c_c00133{bottom:605.550000px;}
.y49_c00133{bottom:607.200000px;}
.y48_c00133{bottom:624.900000px;}
.y1b_c00133{bottom:636.450000px;}
.y46_c00133{bottom:647.250000px;}
.y1a_c00133{bottom:663.150000px;}
.y45_c00133{bottom:665.250000px;}
.y19_c00133{bottom:681.150000px;}
.y44_c00133{bottom:682.950000px;}
.y18_c00133{bottom:699.450000px;}
.y43_c00133{bottom:709.950000px;}
.y47_c00133{bottom:710.250000px;}
.y17_c00133{bottom:717.450000px;}
.y42_c00133{bottom:728.250000px;}
.y16_c00133{bottom:735.450000px;}
.y41_c00133{bottom:739.500000px;}
.y15_c00133{bottom:753.450000px;}
.y40_c00133{bottom:770.700000px;}
.y14_c00133{bottom:771.150000px;}
.y13_c00133{bottom:796.650000px;}
.y3f_c00133{bottom:797.400000px;}
.y3e_c00133{bottom:815.400000px;}
.y12_c00133{bottom:821.550000px;}
.y11_c00133{bottom:833.100000px;}
.y10_c00133{bottom:840.300000px;}
.y3d_c00133{bottom:849.600000px;}
.yf_c00133{bottom:865.800000px;}
.ye_c00133{bottom:883.800000px;}
.y3c_c00133{bottom:885.900000px;}
.yd_c00133{bottom:901.800000px;}
.y3b_c00133{bottom:903.600000px;}
.yc_c00133{bottom:919.800000px;}
.y3a_c00133{bottom:930.600000px;}
.yb_c00133{bottom:937.800000px;}
.y39_c00133{bottom:948.300000px;}
.ya_c00133{bottom:955.800000px;}
.y38_c00133{bottom:966.300000px;}
.y9_c00133{bottom:973.050000px;}
.y37_c00133{bottom:983.850000px;}
.y8_c00133{bottom:991.050000px;}
.y36_c00133{bottom:1006.200000px;}
.y7_c00133{bottom:1017.750000px;}
.y35_c00133{bottom:1024.200000px;}
.y6_c00133{bottom:1035.750000px;}
.y34_c00133{bottom:1048.950000px;}
.y5_c00133{bottom:1067.100000px;}
.y33_c00133{bottom:1073.850000px;}
.y4_c00133{bottom:1094.400000px;}
.y32_c00133{bottom:1100.550000px;}
.y31_c00133{bottom:1118.550000px;}
.y3_c00133{bottom:1121.400000px;}
.y2_c00133{bottom:1146.150000px;}
.y1_c00133{bottom:1148.700000px;}
.h7_c00133{height:24.000000px;}
.h9_c00133{height:30.000000px;}
.h8_c00133{height:48.000000px;}
.h5_c00133{height:54.000000px;}
.h4_c00133{height:60.000000px;}
.h6_c00133{height:66.000000px;}
.h2_c00133{height:72.000000px;}
.h3_c00133{height:78.000000px;}
.ha_c00133{height:108.000000px;}
.h0_c00133{height:1273.320007px;}
.h1_c00133{height:1273.500000px;}
.w1_c00133{width:953.250000px;}
.w0_c00133{width:953.280030px;}
.x0_c00133{left:0.000000px;}
.x70_c00133{left:186.900000px;}
.x63_c00133{left:187.950000px;}
.x3d_c00133{left:190.800000px;}
.xd_c00133{left:195.150000px;}
.x1_c00133{left:196.200000px;}
.x32_c00133{left:198.300000px;}
.x6c_c00133{left:202.350000px;}
.x73_c00133{left:204.750000px;}
.x41_c00133{left:207.000000px;}
.x33_c00133{left:209.400000px;}
.x27_c00133{left:211.200000px;}
.x13_c00133{left:212.400000px;}
.x6d_c00133{left:216.750000px;}
.x71_c00133{left:220.800000px;}
.x83_c00133{left:222.450000px;}
.x61_c00133{left:225.750000px;}
.x55_c00133{left:227.100000px;}
.x14_c00133{left:229.650000px;}
.x7e_c00133{left:232.200000px;}
.x3_c00133{left:233.250000px;}
.x4c_c00133{left:235.200000px;}
.xe_c00133{left:237.600000px;}
.x59_c00133{left:241.050000px;}
.x21_c00133{left:244.050000px;}
.x50_c00133{left:245.550000px;}
.x28_c00133{left:248.250000px;}
.x34_c00133{left:252.300000px;}
.x9_c00133{left:255.900000px;}
.x82_c00133{left:256.950000px;}
.x1a_c00133{left:258.150000px;}
.xc_c00133{left:261.750000px;}
.x51_c00133{left:265.650000px;}
.x62_c00133{left:268.050000px;}
.x76_c00133{left:269.100000px;}
.xf_c00133{left:271.050000px;}
.x15_c00133{left:272.850000px;}
.x29_c00133{left:277.050000px;}
.x5c_c00133{left:278.700000px;}
.x7f_c00133{left:280.050000px;}
.x4_c00133{left:282.150000px;}
.x45_c00133{left:283.350000px;}
.x4d_c00133{left:284.850000px;}
.x1e_c00133{left:286.050000px;}
.x7a_c00133{left:288.450000px;}
.x42_c00133{left:291.000000px;}
.xa_c00133{left:292.950000px;}
.x2a_c00133{left:302.250000px;}
.x64_c00133{left:303.450000px;}
.x3e_c00133{left:308.850000px;}
.x5_c00133{left:309.900000px;}
.x5a_c00133{left:311.250000px;}
.x46_c00133{left:312.900000px;}
.x16_c00133{left:314.250000px;}
.x60_c00133{left:315.300000px;}
.x56_c00133{left:317.100000px;}
.x2f_c00133{left:318.450000px;}
.x2b_c00133{left:329.550000px;}
.x67_c00133{left:330.900000px;}
.x5d_c00133{left:332.400000px;}
.x1b_c00133{left:334.500000px;}
.x35_c00133{left:337.950000px;}
.xb_c00133{left:341.550000px;}
.x52_c00133{left:345.600000px;}
.x17_c00133{left:347.400000px;}
.x6_c00133{left:348.450000px;}
.x5b_c00133{left:349.800000px;}
.x68_c00133{left:351.450000px;}
.x2c_c00133{left:354.450000px;}
.x65_c00133{left:355.650000px;}
.x3f_c00133{left:360.300000px;}
.x10_c00133{left:363.900000px;}
.x7d_c00133{left:366.150000px;}
.x7_c00133{left:368.550000px;}
.x53_c00133{left:370.500000px;}
.x1c_c00133{left:372.000000px;}
.x5e_c00133{left:373.200000px;}
.x36_c00133{left:374.250000px;}
.x80_c00133{left:376.500000px;}
.x30_c00133{left:377.850000px;}
.x47_c00133{left:380.250000px;}
.x84_c00133{left:381.300000px;}
.x3b_c00133{left:383.250000px;}
.x77_c00133{left:384.750000px;}
.x57_c00133{left:386.550000px;}
.x22_c00133{left:388.050000px;}
.x69_c00133{left:389.550000px;}
.x4e_c00133{left:391.350000px;}
.x31_c00133{left:393.750000px;}
.x81_c00133{left:395.250000px;}
.x66_c00133{left:397.050000px;}
.x3c_c00133{left:400.200000px;}
.x1f_c00133{left:402.750000px;}
.x74_c00133{left:405.300000px;}
.x6a_c00133{left:407.250000px;}
.x37_c00133{left:411.750000px;}
.x72_c00133{left:413.250000px;}
.x48_c00133{left:416.550000px;}
.x18_c00133{left:418.650000px;}
.x54_c00133{left:420.900000px;}
.x8_c00133{left:425.400000px;}
.x78_c00133{left:426.450000px;}
.x7b_c00133{left:427.500000px;}
.x23_c00133{left:428.700000px;}
.x20_c00133{left:433.350000px;}
.x38_c00133{left:436.200000px;}
.x43_c00133{left:438.300000px;}
.x49_c00133{left:440.700000px;}
.x2_c00133{left:442.800000px;}
.x6b_c00133{left:444.750000px;}
.x2d_c00133{left:451.950000px;}
.x11_c00133{left:453.900000px;}
.x6e_c00133{left:455.550000px;}
.x79_c00133{left:457.800000px;}
.x44_c00133{left:462.000000px;}
.x1d_c00133{left:464.250000px;}
.x24_c00133{left:465.750000px;}
.x4f_c00133{left:469.050000px;}
.x19_c00133{left:475.200000px;}
.x75_c00133{left:479.100000px;}
.x5f_c00133{left:480.150000px;}
.x39_c00133{left:481.500000px;}
.x25_c00133{left:483.450000px;}
.x4a_c00133{left:491.400000px;}
.x2e_c00133{left:494.400000px;}
.x58_c00133{left:499.800000px;}
.x40_c00133{left:504.000000px;}
.x7c_c00133{left:505.950000px;}
.x12_c00133{left:507.600000px;}
.x3a_c00133{left:509.550000px;}
.x6f_c00133{left:511.350000px;}
.x4b_c00133{left:512.700000px;}
.x26_c00133{left:520.500000px;}
.x108_c00133{left:542.850000px;}
.xcc_c00133{left:548.700000px;}
.xc3_c00133{left:549.750000px;}
.xc0_c00133{left:550.800000px;}
.x91_c00133{left:552.900000px;}
.x104_c00133{left:558.000000px;}
.xfd_c00133{left:562.050000px;}
.xec_c00133{left:564.150000px;}
.xe5_c00133{left:565.200000px;}
.xde_c00133{left:566.250000px;}
.xc6_c00133{left:568.050000px;}
.xb9_c00133{left:569.100000px;}
.x8c_c00133{left:570.300000px;}
.x85_c00133{left:571.350000px;}
.xb2_c00133{left:577.800000px;}
.x100_c00133{left:580.350000px;}
.xf5_c00133{left:581.400000px;}
.xf2_c00133{left:582.900000px;}
.xd8_c00133{left:584.250000px;}
.xc8_c00133{left:586.050000px;}
.xad_c00133{left:587.550000px;}
.x92_c00133{left:595.350000px;}
.xfe_c00133{left:598.350000px;}
.x8d_c00133{left:603.000000px;}
.xee_c00133{left:604.350000px;}
.xc7_c00133{left:606.600000px;}
.x97_c00133{left:609.150000px;}
.xe1_c00133{left:610.200000px;}
.xa6_c00133{left:615.000000px;}
.xe9_c00133{left:617.400000px;}
.xb3_c00133{left:619.200000px;}
.xf3_c00133{left:621.000000px;}
.xcd_c00133{left:623.550000px;}
.xf7_c00133{left:627.450000px;}
.xd2_c00133{left:628.950000px;}
.x86_c00133{left:630.000000px;}
.x8e_c00133{left:632.100000px;}
.xf6_c00133{left:634.650000px;}
.x10b_c00133{left:635.850000px;}
.x9e_c00133{left:637.200000px;}
.xc2_c00133{left:639.000000px;}
.xe3_c00133{left:643.050000px;}
.xf0_c00133{left:644.400000px;}
.xd9_c00133{left:645.450000px;}
.x105_c00133{left:647.700000px;}
.xf8_c00133{left:648.750000px;}
.x87_c00133{left:651.300000px;}
.x101_c00133{left:653.850000px;}
.x98_c00133{left:657.750000px;}
.x93_c00133{left:659.100000px;}
.xff_c00133{left:660.600000px;}
.x8f_c00133{left:661.950000px;}
.xe6_c00133{left:664.500000px;}
.xa7_c00133{left:667.200000px;}
.xc9_c00133{left:670.350000px;}
.xba_c00133{left:673.500000px;}
.x90_c00133{left:677.850000px;}
.xe2_c00133{left:680.700000px;}
.x99_c00133{left:685.800000px;}
.x88_c00133{left:689.100000px;}
.xce_c00133{left:691.200000px;}
.x94_c00133{left:693.000000px;}
.xa8_c00133{left:695.250000px;}
.xae_c00133{left:699.150000px;}
.xda_c00133{left:701.550000px;}
.xc4_c00133{left:703.800000px;}
.xf1_c00133{left:704.850000px;}
.xf4_c00133{left:707.100000px;}
.xe7_c00133{left:711.000000px;}
.xca_c00133{left:714.300000px;}
.xdf_c00133{left:715.650000px;}
.x9a_c00133{left:719.250000px;}
.xf9_c00133{left:720.450000px;}
.x10c_c00133{left:722.250000px;}
.x9f_c00133{left:723.300000px;}
.xd3_c00133{left:724.350000px;}
.xe8_c00133{left:725.850000px;}
.xea_c00133{left:729.900000px;}
.xaf_c00133{left:731.550000px;}
.xc1_c00133{left:733.650000px;}
.xa9_c00133{left:734.850000px;}
.xbb_c00133{left:736.350000px;}
.x89_c00133{left:739.200000px;}
.xef_c00133{left:744.150000px;}
.x9b_c00133{left:746.550000px;}
.x102_c00133{left:748.500000px;}
.xa0_c00133{left:750.600000px;}
.xcf_c00133{left:751.650000px;}
.xb4_c00133{left:752.700000px;}
.xb0_c00133{left:754.200000px;}
.xaa_c00133{left:756.150000px;}
.xcb_c00133{left:757.500000px;}
.xe0_c00133{left:758.850000px;}
.xd4_c00133{left:762.450000px;}
.x95_c00133{left:764.700000px;}
.x9c_c00133{left:767.400000px;}
.x106_c00133{left:769.050000px;}
.x8a_c00133{left:770.850000px;}
.xb5_c00133{left:774.000000px;}
.xbc_c00133{left:779.550000px;}
.x109_c00133{left:780.900000px;}
.x10d_c00133{left:782.250000px;}
.xa1_c00133{left:784.500000px;}
.xed_c00133{left:785.550000px;}
.xdb_c00133{left:788.700000px;}
.x8b_c00133{left:791.400000px;}
.xfa_c00133{left:794.250000px;}
.x107_c00133{left:797.850000px;}
.x9d_c00133{left:799.800000px;}
.xd0_c00133{left:801.000000px;}
.xa2_c00133{left:802.800000px;}
.x96_c00133{left:808.200000px;}
.xdc_c00133{left:811.050000px;}
.xbd_c00133{left:812.700000px;}
.xd5_c00133{left:814.650000px;}
.xb6_c00133{left:815.700000px;}
.xfc_c00133{left:817.950000px;}
.xab_c00133{left:820.200000px;}
.xfb_c00133{left:823.050000px;}
.xa3_c00133{left:825.150000px;}
.xb7_c00133{left:829.350000px;}
.xe4_c00133{left:832.350000px;}
.x10a_c00133{left:836.700000px;}
.xd6_c00133{left:839.100000px;}
.xa4_c00133{left:842.100000px;}
.x103_c00133{left:847.200000px;}
.xc5_c00133{left:850.350000px;}
.xd1_c00133{left:854.700000px;}
.xac_c00133{left:858.300000px;}
.xbe_c00133{left:859.800000px;}
.x10e_c00133{left:862.500000px;}
.xd7_c00133{left:863.550000px;}
.xeb_c00133{left:868.050000px;}
.xb1_c00133{left:869.700000px;}
.xdd_c00133{left:871.200000px;}
.xb8_c00133{left:874.350000px;}
.xbf_c00133{left:878.100000px;}
.xa5_c00133{left:885.000000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws1_c00133{word-spacing:-2.923977pt;}
.ws3_c00133{word-spacing:-1.883199pt;}
.ws5_c00133{word-spacing:0.000000pt;}
.ws0_c00133{word-spacing:3.333333pt;}
.ws4_c00133{word-spacing:11.773585pt;}
.ws2_c00133{word-spacing:67.777778pt;}
.fs5_c00133{font-size:21.333333pt;}
.fs7_c00133{font-size:26.666667pt;}
.fs6_c00133{font-size:42.666667pt;}
.fs3_c00133{font-size:48.000000pt;}
.fs2_c00133{font-size:53.333333pt;}
.fs4_c00133{font-size:58.666667pt;}
.fs0_c00133{font-size:64.000000pt;}
.fs1_c00133{font-size:69.333333pt;}
.fs8_c00133{font-size:96.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y5d_c00133{bottom:167.600000pt;}
.y30_c00133{bottom:171.466667pt;}
.y5c_c00133{bottom:181.066667pt;}
.y5b_c00133{bottom:193.866667pt;}
.y2f_c00133{bottom:195.600000pt;}
.y5a_c00133{bottom:206.400000pt;}
.y2e_c00133{bottom:211.866667pt;}
.y2d_c00133{bottom:238.933333pt;}
.y59_c00133{bottom:250.533333pt;}
.y2c_c00133{bottom:254.666667pt;}
.y58_c00133{bottom:266.266667pt;}
.y2b_c00133{bottom:278.400000pt;}
.y57_c00133{bottom:286.000000pt;}
.y2a_c00133{bottom:294.400000pt;}
.y56_c00133{bottom:301.733333pt;}
.y29_c00133{bottom:309.733333pt;}
.y55_c00133{bottom:321.866667pt;}
.y28_c00133{bottom:325.733333pt;}
.y54_c00133{bottom:337.600000pt;}
.y27_c00133{bottom:341.466667pt;}
.y53_c00133{bottom:356.800000pt;}
.y26_c00133{bottom:357.466667pt;}
.y52_c00133{bottom:376.666667pt;}
.y25_c00133{bottom:380.133333pt;}
.y24_c00133{bottom:392.666667pt;}
.y51_c00133{bottom:397.200000pt;}
.y23_c00133{bottom:406.400000pt;}
.y50_c00133{bottom:412.533333pt;}
.y22_c00133{bottom:427.733333pt;}
.y4f_c00133{bottom:432.266667pt;}
.y21_c00133{bottom:443.466667pt;}
.y4e_c00133{bottom:452.533333pt;}
.y20_c00133{bottom:467.200000pt;}
.y4d_c00133{bottom:468.800000pt;}
.y1f_c00133{bottom:483.466667pt;}
.y4c_c00133{bottom:484.533333pt;}
.y1e_c00133{bottom:498.933333pt;}
.y4b_c00133{bottom:504.000000pt;}
.y4a_c00133{bottom:519.733333pt;}
.y1d_c00133{bottom:522.533333pt;}
.y1c_c00133{bottom:538.266667pt;}
.y49_c00133{bottom:539.733333pt;}
.y48_c00133{bottom:555.466667pt;}
.y1b_c00133{bottom:565.733333pt;}
.y46_c00133{bottom:575.333333pt;}
.y1a_c00133{bottom:589.466667pt;}
.y45_c00133{bottom:591.333333pt;}
.y19_c00133{bottom:605.466667pt;}
.y44_c00133{bottom:607.066667pt;}
.y18_c00133{bottom:621.733333pt;}
.y43_c00133{bottom:631.066667pt;}
.y47_c00133{bottom:631.333333pt;}
.y17_c00133{bottom:637.733333pt;}
.y42_c00133{bottom:647.333333pt;}
.y16_c00133{bottom:653.733333pt;}
.y41_c00133{bottom:657.333333pt;}
.y15_c00133{bottom:669.733333pt;}
.y40_c00133{bottom:685.066667pt;}
.y14_c00133{bottom:685.466667pt;}
.y13_c00133{bottom:708.133333pt;}
.y3f_c00133{bottom:708.800000pt;}
.y3e_c00133{bottom:724.800000pt;}
.y12_c00133{bottom:730.266667pt;}
.y11_c00133{bottom:740.533333pt;}
.y10_c00133{bottom:746.933333pt;}
.y3d_c00133{bottom:755.200000pt;}
.yf_c00133{bottom:769.600000pt;}
.ye_c00133{bottom:785.600000pt;}
.y3c_c00133{bottom:787.466667pt;}
.yd_c00133{bottom:801.600000pt;}
.y3b_c00133{bottom:803.200000pt;}
.yc_c00133{bottom:817.600000pt;}
.y3a_c00133{bottom:827.200000pt;}
.yb_c00133{bottom:833.600000pt;}
.y39_c00133{bottom:842.933333pt;}
.ya_c00133{bottom:849.600000pt;}
.y38_c00133{bottom:858.933333pt;}
.y9_c00133{bottom:864.933333pt;}
.y37_c00133{bottom:874.533333pt;}
.y8_c00133{bottom:880.933333pt;}
.y36_c00133{bottom:894.400000pt;}
.y7_c00133{bottom:904.666667pt;}
.y35_c00133{bottom:910.400000pt;}
.y6_c00133{bottom:920.666667pt;}
.y34_c00133{bottom:932.400000pt;}
.y5_c00133{bottom:948.533333pt;}
.y33_c00133{bottom:954.533333pt;}
.y4_c00133{bottom:972.800000pt;}
.y32_c00133{bottom:978.266667pt;}
.y31_c00133{bottom:994.266667pt;}
.y3_c00133{bottom:996.800000pt;}
.y2_c00133{bottom:1018.800000pt;}
.y1_c00133{bottom:1021.066667pt;}
.h7_c00133{height:21.333333pt;}
.h9_c00133{height:26.666667pt;}
.h8_c00133{height:42.666667pt;}
.h5_c00133{height:48.000000pt;}
.h4_c00133{height:53.333333pt;}
.h6_c00133{height:58.666667pt;}
.h2_c00133{height:64.000000pt;}
.h3_c00133{height:69.333333pt;}
.ha_c00133{height:96.000000pt;}
.h0_c00133{height:1131.840007pt;}
.h1_c00133{height:1132.000000pt;}
.w1_c00133{width:847.333333pt;}
.w0_c00133{width:847.360027pt;}
.x0_c00133{left:0.000000pt;}
.x70_c00133{left:166.133333pt;}
.x63_c00133{left:167.066667pt;}
.x3d_c00133{left:169.600000pt;}
.xd_c00133{left:173.466667pt;}
.x1_c00133{left:174.400000pt;}
.x32_c00133{left:176.266667pt;}
.x6c_c00133{left:179.866667pt;}
.x73_c00133{left:182.000000pt;}
.x41_c00133{left:184.000000pt;}
.x33_c00133{left:186.133333pt;}
.x27_c00133{left:187.733333pt;}
.x13_c00133{left:188.800000pt;}
.x6d_c00133{left:192.666667pt;}
.x71_c00133{left:196.266667pt;}
.x83_c00133{left:197.733333pt;}
.x61_c00133{left:200.666667pt;}
.x55_c00133{left:201.866667pt;}
.x14_c00133{left:204.133333pt;}
.x7e_c00133{left:206.400000pt;}
.x3_c00133{left:207.333333pt;}
.x4c_c00133{left:209.066667pt;}
.xe_c00133{left:211.200000pt;}
.x59_c00133{left:214.266667pt;}
.x21_c00133{left:216.933333pt;}
.x50_c00133{left:218.266667pt;}
.x28_c00133{left:220.666667pt;}
.x34_c00133{left:224.266667pt;}
.x9_c00133{left:227.466667pt;}
.x82_c00133{left:228.400000pt;}
.x1a_c00133{left:229.466667pt;}
.xc_c00133{left:232.666667pt;}
.x51_c00133{left:236.133333pt;}
.x62_c00133{left:238.266667pt;}
.x76_c00133{left:239.200000pt;}
.xf_c00133{left:240.933333pt;}
.x15_c00133{left:242.533333pt;}
.x29_c00133{left:246.266667pt;}
.x5c_c00133{left:247.733333pt;}
.x7f_c00133{left:248.933333pt;}
.x4_c00133{left:250.800000pt;}
.x45_c00133{left:251.866667pt;}
.x4d_c00133{left:253.200000pt;}
.x1e_c00133{left:254.266667pt;}
.x7a_c00133{left:256.400000pt;}
.x42_c00133{left:258.666667pt;}
.xa_c00133{left:260.400000pt;}
.x2a_c00133{left:268.666667pt;}
.x64_c00133{left:269.733333pt;}
.x3e_c00133{left:274.533333pt;}
.x5_c00133{left:275.466667pt;}
.x5a_c00133{left:276.666667pt;}
.x46_c00133{left:278.133333pt;}
.x16_c00133{left:279.333333pt;}
.x60_c00133{left:280.266667pt;}
.x56_c00133{left:281.866667pt;}
.x2f_c00133{left:283.066667pt;}
.x2b_c00133{left:292.933333pt;}
.x67_c00133{left:294.133333pt;}
.x5d_c00133{left:295.466667pt;}
.x1b_c00133{left:297.333333pt;}
.x35_c00133{left:300.400000pt;}
.xb_c00133{left:303.600000pt;}
.x52_c00133{left:307.200000pt;}
.x17_c00133{left:308.800000pt;}
.x6_c00133{left:309.733333pt;}
.x5b_c00133{left:310.933333pt;}
.x68_c00133{left:312.400000pt;}
.x2c_c00133{left:315.066667pt;}
.x65_c00133{left:316.133333pt;}
.x3f_c00133{left:320.266667pt;}
.x10_c00133{left:323.466667pt;}
.x7d_c00133{left:325.466667pt;}
.x7_c00133{left:327.600000pt;}
.x53_c00133{left:329.333333pt;}
.x1c_c00133{left:330.666667pt;}
.x5e_c00133{left:331.733333pt;}
.x36_c00133{left:332.666667pt;}
.x80_c00133{left:334.666667pt;}
.x30_c00133{left:335.866667pt;}
.x47_c00133{left:338.000000pt;}
.x84_c00133{left:338.933333pt;}
.x3b_c00133{left:340.666667pt;}
.x77_c00133{left:342.000000pt;}
.x57_c00133{left:343.600000pt;}
.x22_c00133{left:344.933333pt;}
.x69_c00133{left:346.266667pt;}
.x4e_c00133{left:347.866667pt;}
.x31_c00133{left:350.000000pt;}
.x81_c00133{left:351.333333pt;}
.x66_c00133{left:352.933333pt;}
.x3c_c00133{left:355.733333pt;}
.x1f_c00133{left:358.000000pt;}
.x74_c00133{left:360.266667pt;}
.x6a_c00133{left:362.000000pt;}
.x37_c00133{left:366.000000pt;}
.x72_c00133{left:367.333333pt;}
.x48_c00133{left:370.266667pt;}
.x18_c00133{left:372.133333pt;}
.x54_c00133{left:374.133333pt;}
.x8_c00133{left:378.133333pt;}
.x78_c00133{left:379.066667pt;}
.x7b_c00133{left:380.000000pt;}
.x23_c00133{left:381.066667pt;}
.x20_c00133{left:385.200000pt;}
.x38_c00133{left:387.733333pt;}
.x43_c00133{left:389.600000pt;}
.x49_c00133{left:391.733333pt;}
.x2_c00133{left:393.600000pt;}
.x6b_c00133{left:395.333333pt;}
.x2d_c00133{left:401.733333pt;}
.x11_c00133{left:403.466667pt;}
.x6e_c00133{left:404.933333pt;}
.x79_c00133{left:406.933333pt;}
.x44_c00133{left:410.666667pt;}
.x1d_c00133{left:412.666667pt;}
.x24_c00133{left:414.000000pt;}
.x4f_c00133{left:416.933333pt;}
.x19_c00133{left:422.400000pt;}
.x75_c00133{left:425.866667pt;}
.x5f_c00133{left:426.800000pt;}
.x39_c00133{left:428.000000pt;}
.x25_c00133{left:429.733333pt;}
.x4a_c00133{left:436.800000pt;}
.x2e_c00133{left:439.466667pt;}
.x58_c00133{left:444.266667pt;}
.x40_c00133{left:448.000000pt;}
.x7c_c00133{left:449.733333pt;}
.x12_c00133{left:451.200000pt;}
.x3a_c00133{left:452.933333pt;}
.x6f_c00133{left:454.533333pt;}
.x4b_c00133{left:455.733333pt;}
.x26_c00133{left:462.666667pt;}
.x108_c00133{left:482.533333pt;}
.xcc_c00133{left:487.733333pt;}
.xc3_c00133{left:488.666667pt;}
.xc0_c00133{left:489.600000pt;}
.x91_c00133{left:491.466667pt;}
.x104_c00133{left:496.000000pt;}
.xfd_c00133{left:499.600000pt;}
.xec_c00133{left:501.466667pt;}
.xe5_c00133{left:502.400000pt;}
.xde_c00133{left:503.333333pt;}
.xc6_c00133{left:504.933333pt;}
.xb9_c00133{left:505.866667pt;}
.x8c_c00133{left:506.933333pt;}
.x85_c00133{left:507.866667pt;}
.xb2_c00133{left:513.600000pt;}
.x100_c00133{left:515.866667pt;}
.xf5_c00133{left:516.800000pt;}
.xf2_c00133{left:518.133333pt;}
.xd8_c00133{left:519.333333pt;}
.xc8_c00133{left:520.933333pt;}
.xad_c00133{left:522.266667pt;}
.x92_c00133{left:529.200000pt;}
.xfe_c00133{left:531.866667pt;}
.x8d_c00133{left:536.000000pt;}
.xee_c00133{left:537.200000pt;}
.xc7_c00133{left:539.200000pt;}
.x97_c00133{left:541.466667pt;}
.xe1_c00133{left:542.400000pt;}
.xa6_c00133{left:546.666667pt;}
.xe9_c00133{left:548.800000pt;}
.xb3_c00133{left:550.400000pt;}
.xf3_c00133{left:552.000000pt;}
.xcd_c00133{left:554.266667pt;}
.xf7_c00133{left:557.733333pt;}
.xd2_c00133{left:559.066667pt;}
.x86_c00133{left:560.000000pt;}
.x8e_c00133{left:561.866667pt;}
.xf6_c00133{left:564.133333pt;}
.x10b_c00133{left:565.200000pt;}
.x9e_c00133{left:566.400000pt;}
.xc2_c00133{left:568.000000pt;}
.xe3_c00133{left:571.600000pt;}
.xf0_c00133{left:572.800000pt;}
.xd9_c00133{left:573.733333pt;}
.x105_c00133{left:575.733333pt;}
.xf8_c00133{left:576.666667pt;}
.x87_c00133{left:578.933333pt;}
.x101_c00133{left:581.200000pt;}
.x98_c00133{left:584.666667pt;}
.x93_c00133{left:585.866667pt;}
.xff_c00133{left:587.200000pt;}
.x8f_c00133{left:588.400000pt;}
.xe6_c00133{left:590.666667pt;}
.xa7_c00133{left:593.066667pt;}
.xc9_c00133{left:595.866667pt;}
.xba_c00133{left:598.666667pt;}
.x90_c00133{left:602.533333pt;}
.xe2_c00133{left:605.066667pt;}
.x99_c00133{left:609.600000pt;}
.x88_c00133{left:612.533333pt;}
.xce_c00133{left:614.400000pt;}
.x94_c00133{left:616.000000pt;}
.xa8_c00133{left:618.000000pt;}
.xae_c00133{left:621.466667pt;}
.xda_c00133{left:623.600000pt;}
.xc4_c00133{left:625.600000pt;}
.xf1_c00133{left:626.533333pt;}
.xf4_c00133{left:628.533333pt;}
.xe7_c00133{left:632.000000pt;}
.xca_c00133{left:634.933333pt;}
.xdf_c00133{left:636.133333pt;}
.x9a_c00133{left:639.333333pt;}
.xf9_c00133{left:640.400000pt;}
.x10c_c00133{left:642.000000pt;}
.x9f_c00133{left:642.933333pt;}
.xd3_c00133{left:643.866667pt;}
.xe8_c00133{left:645.200000pt;}
.xea_c00133{left:648.800000pt;}
.xaf_c00133{left:650.266667pt;}
.xc1_c00133{left:652.133333pt;}
.xa9_c00133{left:653.200000pt;}
.xbb_c00133{left:654.533333pt;}
.x89_c00133{left:657.066667pt;}
.xef_c00133{left:661.466667pt;}
.x9b_c00133{left:663.600000pt;}
.x102_c00133{left:665.333333pt;}
.xa0_c00133{left:667.200000pt;}
.xcf_c00133{left:668.133333pt;}
.xb4_c00133{left:669.066667pt;}
.xb0_c00133{left:670.400000pt;}
.xaa_c00133{left:672.133333pt;}
.xcb_c00133{left:673.333333pt;}
.xe0_c00133{left:674.533333pt;}
.xd4_c00133{left:677.733333pt;}
.x95_c00133{left:679.733333pt;}
.x9c_c00133{left:682.133333pt;}
.x106_c00133{left:683.600000pt;}
.x8a_c00133{left:685.200000pt;}
.xb5_c00133{left:688.000000pt;}
.xbc_c00133{left:692.933333pt;}
.x109_c00133{left:694.133333pt;}
.x10d_c00133{left:695.333333pt;}
.xa1_c00133{left:697.333333pt;}
.xed_c00133{left:698.266667pt;}
.xdb_c00133{left:701.066667pt;}
.x8b_c00133{left:703.466667pt;}
.xfa_c00133{left:706.000000pt;}
.x107_c00133{left:709.200000pt;}
.x9d_c00133{left:710.933333pt;}
.xd0_c00133{left:712.000000pt;}
.xa2_c00133{left:713.600000pt;}
.x96_c00133{left:718.400000pt;}
.xdc_c00133{left:720.933333pt;}
.xbd_c00133{left:722.400000pt;}
.xd5_c00133{left:724.133333pt;}
.xb6_c00133{left:725.066667pt;}
.xfc_c00133{left:727.066667pt;}
.xab_c00133{left:729.066667pt;}
.xfb_c00133{left:731.600000pt;}
.xa3_c00133{left:733.466667pt;}
.xb7_c00133{left:737.200000pt;}
.xe4_c00133{left:739.866667pt;}
.x10a_c00133{left:743.733333pt;}
.xd6_c00133{left:745.866667pt;}
.xa4_c00133{left:748.533333pt;}
.x103_c00133{left:753.066667pt;}
.xc5_c00133{left:755.866667pt;}
.xd1_c00133{left:759.733333pt;}
.xac_c00133{left:762.933333pt;}
.xbe_c00133{left:764.266667pt;}
.x10e_c00133{left:766.666667pt;}
.xd7_c00133{left:767.600000pt;}
.xeb_c00133{left:771.600000pt;}
.xb1_c00133{left:773.066667pt;}
.xdd_c00133{left:774.400000pt;}
.xb8_c00133{left:777.200000pt;}
.xbf_c00133{left:780.533333pt;}
.xa5_c00133{left:786.666667pt;}
}





/* 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_c00134 {
    display:none;
  }
  .loading-indicator_c00134.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00134 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_c00134 { 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_c00134" -> "#page-container .classname_c00134")
 */
.pf_c00134 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00134 { /* 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_c00134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00134 { /* 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_c00134 { /* 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_c00134 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00134 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00134 {overflow:visible;}
  }
}
.c_c00134 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00134 { /* 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_c00134:after { /* webkit #35443 */
  content: '';
}
.t_c00134:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00134 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 */
}
.__c00134 { /* 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_c00134 { /* info for Javascript */
  display:none;
}
.l_c00134 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00134 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00134 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00134: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_c00134 {
    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_c00134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00134.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_c00134 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00134;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.000000;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;}
.m24_c00134{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m60_c00134{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m106_c00134{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m93_c00134{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m41_c00134{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m64_c00134{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.maa_c00134{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00134{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m54_c00134{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00134{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00134{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m55_c00134{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m69_c00134{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00134{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00134{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.md5_c00134{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00134{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m51_c00134{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m67_c00134{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00134{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m19_c00134{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m25_c00134{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00134{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m50_c00134{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m14_c00134{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m100_c00134{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00134{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00134{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.maf_c00134{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m77_c00134{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00134{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m68_c00134{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00134{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m52_c00134{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.med_c00134{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m37_c00134{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00134{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00134{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.me2_c00134{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mad_c00134{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m70_c00134{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m35_c00134{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m36_c00134{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00134{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00134{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00134{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00134{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m90_c00134{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00134{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00134{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mba_c00134{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00134{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m75_c00134{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00134{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00134{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m63_c00134{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m84_c00134{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00134{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me6_c00134{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m83_c00134{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00134{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m85_c00134{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00134{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m10_c00134{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m15_c00134{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m115_c00134{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m74_c00134{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m32_c00134{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.md6_c00134{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00134{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.md0_c00134{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m92_c00134{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00134{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00134{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00134{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m17_c00134{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me4_c00134{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00134{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m82_c00134{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m16_c00134{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m8_c00134{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00134{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00134{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m91_c00134{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00134{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00134{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mee_c00134{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m95_c00134{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00134{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00134{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m81_c00134{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m72_c00134{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00134{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md1_c00134{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m114_c00134{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00134{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00134{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00134{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m108_c00134{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m117_c00134{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m29_c00134{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m38_c00134{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mc_c00134{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m110_c00134{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00134{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m40_c00134{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00134{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00134{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00134{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00134{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m89_c00134{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m112_c00134{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m86_c00134{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m48_c00134{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00134{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00134{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mda_c00134{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00134{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00134{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00134{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00134{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00134{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00134{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m62_c00134{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m27_c00134{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md3_c00134{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m20_c00134{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mca_c00134{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6_c00134{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00134{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma_c00134{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00134{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00134{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00134{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00134{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00134{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00134{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m44_c00134{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00134{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mce_c00134{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00134{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m39_c00134{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m87_c00134{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00134{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md2_c00134{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m28_c00134{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md4_c00134{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me3_c00134{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00134{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00134{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m116_c00134{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m118_c00134{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mab_c00134{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mec_c00134{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00134{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00134{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m58_c00134{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m34_c00134{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00134{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mac_c00134{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00134{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m23_c00134{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mff_c00134{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m80_c00134{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m113_c00134{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00134{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m57_c00134{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m26_c00134{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00134{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00134{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00134{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m47_c00134{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11_c00134{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m45_c00134{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00134{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00134{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00134{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m49_c00134{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00134{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00134{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00134{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md7_c00134{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00134{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m46_c00134{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00134{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00134{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00134{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00134{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m71_c00134{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m61_c00134{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m22_c00134{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m119_c00134{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00134{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb_c00134{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m21_c00134{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00134{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00134{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m111_c00134{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m97_c00134{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md9_c00134{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me8_c00134{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m88_c00134{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00134{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00134{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m18_c00134{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00134{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me0_c00134{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m12_c00134{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mde_c00134{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00134{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m107_c00134{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m102_c00134{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m31_c00134{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00134{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m98_c00134{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.me_c00134{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00134{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00134{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00134{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00134{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00134{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00134{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m79_c00134{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m65_c00134{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m30_c00134{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00134{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00134{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m9_c00134{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00134{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mf_c00134{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00134{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00134{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00134{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m104_c00134{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.md_c00134{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mea_c00134{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.me5_c00134{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m78_c00134{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m53_c00134{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m43_c00134{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m76_c00134{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.meb_c00134{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m66_c00134{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00134{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mae_c00134{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00134{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m105_c00134{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m96_c00134{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00134{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m33_c00134{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00134{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00134{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me7_c00134{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m103_c00134{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00134{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m99_c00134{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me9_c00134{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00134{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.md8_c00134{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m42_c00134{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00134{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00134{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m109_c00134{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.me1_c00134{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m56_c00134{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00134{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00134{transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00134{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m101_c00134{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00134{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m0_c00134{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.m73_c00134{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00134{transform:matrix(0.469500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469500,0.000000,0.000000,0.250000,0,0);}
.m94_c00134{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m59_c00134{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00134{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.mef_c00134{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls3_c00134{letter-spacing:0.000000px;}
.ls2_c00134{letter-spacing:39.000000px;}
.ls0_c00134{letter-spacing:55.714286px;}
.ls1_c00134{letter-spacing:65.833333px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{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__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00134{word-spacing:-95.833333px;}
.ws1_c00134{word-spacing:-85.714286px;}
.ws6_c00134{word-spacing:-60.000000px;}
.ws0_c00134{word-spacing:-7.951673px;}
.ws12_c00134{word-spacing:-6.691843px;}
.ws16_c00134{word-spacing:0.000000px;}
.ws15_c00134{word-spacing:5.540541px;}
.ws14_c00134{word-spacing:5.914040px;}
.wsf_c00134{word-spacing:10.637002px;}
.ws2_c00134{word-spacing:11.875000px;}
.wsa_c00134{word-spacing:15.000000px;}
.ws7_c00134{word-spacing:15.500000px;}
.ws8_c00134{word-spacing:18.000000px;}
.ws10_c00134{word-spacing:19.994638px;}
.ws9_c00134{word-spacing:22.142857px;}
.wse_c00134{word-spacing:23.211796px;}
.ws4_c00134{word-spacing:25.714286px;}
.ws11_c00134{word-spacing:26.428954px;}
.ws5_c00134{word-spacing:35.833333px;}
.wsd_c00134{word-spacing:39.750000px;}
.wsb_c00134{word-spacing:40.000000px;}
.wsc_c00134{word-spacing:150.000000px;}
.ws13_c00134{word-spacing:169.210526px;}
._1_c00134{margin-left:-65.833333px;}
._0_c00134{margin-left:-55.714286px;}
._3_c00134{margin-left:-39.000000px;}
._5_c00134{width:39.000000px;}
._a_c00134{width:40.447307px;}
._4_c00134{width:45.250000px;}
._b_c00134{width:46.994638px;}
._d_c00134{width:50.211796px;}
._7_c00134{width:52.142857px;}
._9_c00134{width:53.428954px;}
._e_c00134{width:58.254692px;}
._6_c00134{width:59.285714px;}
._2_c00134{width:80.416667px;}
._8_c00134{width:270.000000px;}
._c_c00134{width:362.276139px;}
._f_c00134{width:601.954424px;}
.fc0_c00134{color:transparent;}
.fs8_c00134{font-size:30.000000px;}
.fs6_c00134{font-size:42.000000px;}
.fs5_c00134{font-size:48.000000px;}
.fs4_c00134{font-size:54.000000px;}
.fs2_c00134{font-size:60.000000px;}
.fs1_c00134{font-size:66.000000px;}
.fs7_c00134{font-size:72.000000px;}
.fs3_c00134{font-size:78.000000px;}
.fs0_c00134{font-size:84.000000px;}
.y0_c00134{bottom:0.000000px;}
.y6a_c00134{bottom:183.300000px;}
.y37_c00134{bottom:183.600000px;}
.y36_c00134{bottom:184.650000px;}
.y69_c00134{bottom:197.700000px;}
.y35_c00134{bottom:201.600000px;}
.y34_c00134{bottom:212.100000px;}
.y68_c00134{bottom:226.500000px;}
.y33_c00134{bottom:228.000000px;}
.y67_c00134{bottom:240.900000px;}
.y32_c00134{bottom:242.700000px;}
.y66_c00134{bottom:255.600000px;}
.y31_c00134{bottom:257.100000px;}
.y30_c00134{bottom:271.500000px;}
.y2f_c00134{bottom:285.900000px;}
.y2e_c00134{bottom:298.800000px;}
.y65_c00134{bottom:301.950000px;}
.y2d_c00134{bottom:311.700000px;}
.y64_c00134{bottom:319.950000px;}
.y2c_c00134{bottom:330.450000px;}
.y63_c00134{bottom:337.950000px;}
.y2b_c00134{bottom:355.650000px;}
.y62_c00134{bottom:373.650000px;}
.y2a_c00134{bottom:374.400000px;}
.y61_c00134{bottom:391.350000px;}
.y29_c00134{bottom:392.700000px;}
.y60_c00134{bottom:415.800000px;}
.y28_c00134{bottom:418.950000px;}
.y5f_c00134{bottom:430.650000px;}
.y27_c00134{bottom:436.650000px;}
.y5e_c00134{bottom:445.350000px;}
.y5d_c00134{bottom:459.450000px;}
.y26_c00134{bottom:467.700000px;}
.y5c_c00134{bottom:473.850000px;}
.y5b_c00134{bottom:488.250000px;}
.y25_c00134{bottom:493.500000px;}
.y5a_c00134{bottom:502.650000px;}
.y24_c00134{bottom:512.550000px;}
.y59_c00134{bottom:517.050000px;}
.y23_c00134{bottom:530.250000px;}
.y58_c00134{bottom:531.450000px;}
.y57_c00134{bottom:546.150000px;}
.y22_c00134{bottom:548.250000px;}
.y56_c00134{bottom:558.000000px;}
.y21_c00134{bottom:566.250000px;}
.y55_c00134{bottom:578.400000px;}
.y20_c00134{bottom:583.950000px;}
.y54_c00134{bottom:596.100000px;}
.y1f_c00134{bottom:601.950000px;}
.y53_c00134{bottom:614.100000px;}
.y1e_c00134{bottom:628.200000px;}
.y52_c00134{bottom:640.650000px;}
.y1d_c00134{bottom:640.800000px;}
.y1c_c00134{bottom:656.700000px;}
.y51_c00134{bottom:658.650000px;}
.y1b_c00134{bottom:670.800000px;}
.y50_c00134{bottom:676.650000px;}
.y1a_c00134{bottom:685.200000px;}
.y4f_c00134{bottom:694.350000px;}
.y19_c00134{bottom:698.550000px;}
.y4e_c00134{bottom:712.350000px;}
.y18_c00134{bottom:714.000000px;}
.y17_c00134{bottom:728.700000px;}
.y4d_c00134{bottom:730.350000px;}
.y16_c00134{bottom:742.800000px;}
.y4c_c00134{bottom:747.300000px;}
.y15_c00134{bottom:757.200000px;}
.y14_c00134{bottom:771.600000px;}
.y4b_c00134{bottom:774.450000px;}
.y13_c00134{bottom:786.000000px;}
.y4a_c00134{bottom:792.750000px;}
.y12_c00134{bottom:798.900000px;}
.y11_c00134{bottom:812.550000px;}
.y49_c00134{bottom:823.650000px;}
.y10_c00134{bottom:830.850000px;}
.y48_c00134{bottom:849.300000px;}
.yf_c00134{bottom:852.900000px;}
.y47_c00134{bottom:867.300000px;}
.ye_c00134{bottom:870.900000px;}
.y46_c00134{bottom:885.300000px;}
.yd_c00134{bottom:888.900000px;}
.y45_c00134{bottom:903.300000px;}
.yc_c00134{bottom:910.800000px;}
.y44_c00134{bottom:921.000000px;}
.yb_c00134{bottom:928.050000px;}
.y43_c00134{bottom:938.700000px;}
.y42_c00134{bottom:956.700000px;}
.ya_c00134{bottom:962.700000px;}
.y41_c00134{bottom:974.700000px;}
.y9_c00134{bottom:980.700000px;}
.y40_c00134{bottom:992.400000px;}
.y3f_c00134{bottom:1010.400000px;}
.y8_c00134{bottom:1015.950000px;}
.y3e_c00134{bottom:1028.100000px;}
.y7_c00134{bottom:1033.950000px;}
.y3d_c00134{bottom:1045.800000px;}
.y6_c00134{bottom:1060.200000px;}
.y3c_c00134{bottom:1062.300000px;}
.y3b_c00134{bottom:1071.000000px;}
.y5_c00134{bottom:1078.200000px;}
.y3a_c00134{bottom:1085.100000px;}
.y4_c00134{bottom:1095.900000px;}
.y39_c00134{bottom:1099.500000px;}
.y3_c00134{bottom:1113.900000px;}
.y38_c00134{bottom:1114.200000px;}
.y2_c00134{bottom:1135.800000px;}
.y1_c00134{bottom:1139.700000px;}
.ha_c00134{height:30.000000px;}
.h8_c00134{height:42.000000px;}
.h7_c00134{height:48.000000px;}
.h6_c00134{height:54.000000px;}
.h4_c00134{height:60.000000px;}
.h3_c00134{height:66.000000px;}
.h9_c00134{height:72.000000px;}
.h5_c00134{height:78.000000px;}
.h2_c00134{height:84.000000px;}
.h1_c00134{height:1269.750000px;}
.h0_c00134{height:1270.080048px;}
.w1_c00134{width:953.250000px;}
.w0_c00134{width:953.280030px;}
.x0_c00134{left:0.000000px;}
.x70_c00134{left:68.400000px;}
.x24_c00134{left:69.900000px;}
.x3_c00134{left:71.250000px;}
.x2c_c00134{left:72.300000px;}
.x25_c00134{left:83.250000px;}
.x84_c00134{left:85.650000px;}
.x31_c00134{left:87.150000px;}
.xa_c00134{left:88.800000px;}
.x91_c00134{left:97.500000px;}
.x4f_c00134{left:98.700000px;}
.x62_c00134{left:100.050000px;}
.x19_c00134{left:104.400000px;}
.x33_c00134{left:107.700000px;}
.x48_c00134{left:109.200000px;}
.x20_c00134{left:110.550000px;}
.x79_c00134{left:111.600000px;}
.x63_c00134{left:113.850000px;}
.x42_c00134{left:115.200000px;}
.x40_c00134{left:116.850000px;}
.x2d_c00134{left:118.350000px;}
.x7e_c00134{left:119.400000px;}
.x53_c00134{left:121.200000px;}
.x11_c00134{left:124.950000px;}
.xb_c00134{left:127.350000px;}
.x4_c00134{left:128.850000px;}
.x4c_c00134{left:130.050000px;}
.x32_c00134{left:132.450000px;}
.x1f_c00134{left:135.600000px;}
.x1a_c00134{left:136.800000px;}
.x26_c00134{left:138.000000px;}
.x29_c00134{left:139.500000px;}
.x54_c00134{left:141.000000px;}
.x64_c00134{left:142.050000px;}
.x6e_c00134{left:145.350000px;}
.x1b_c00134{left:146.850000px;}
.x97_c00134{left:148.350000px;}
.x12_c00134{left:150.450000px;}
.x5a_c00134{left:152.400000px;}
.x86_c00134{left:154.050000px;}
.x55_c00134{left:155.400000px;}
.x2e_c00134{left:156.900000px;}
.x82_c00134{left:159.150000px;}
.xc_c00134{left:160.500000px;}
.x21_c00134{left:162.000000px;}
.x65_c00134{left:164.700000px;}
.x93_c00134{left:165.750000px;}
.x2a_c00134{left:166.800000px;}
.x49_c00134{left:168.600000px;}
.x39_c00134{left:170.100000px;}
.x5b_c00134{left:172.200000px;}
.x34_c00134{left:173.250000px;}
.x76_c00134{left:174.900000px;}
.x90_c00134{left:176.700000px;}
.x8b_c00134{left:178.800000px;}
.x43_c00134{left:180.750000px;}
.x7f_c00134{left:183.000000px;}
.x1c_c00134{left:186.450000px;}
.x41_c00134{left:189.150000px;}
.x5_c00134{left:194.700000px;}
.x35_c00134{left:196.950000px;}
.x56_c00134{left:198.900000px;}
.x27_c00134{left:200.250000px;}
.x69_c00134{left:201.300000px;}
.x96_c00134{left:202.950000px;}
.x1d_c00134{left:204.750000px;}
.x50_c00134{left:207.450000px;}
.xd_c00134{left:210.900000px;}
.x13_c00134{left:214.500000px;}
.x6b_c00134{left:216.750000px;}
.x3a_c00134{left:218.400000px;}
.x71_c00134{left:219.450000px;}
.x22_c00134{left:221.100000px;}
.x1e_c00134{left:222.450000px;}
.x94_c00134{left:228.000000px;}
.x5c_c00134{left:229.950000px;}
.x44_c00134{left:231.150000px;}
.x95_c00134{left:235.500000px;}
.xe_c00134{left:236.850000px;}
.x36_c00134{left:242.700000px;}
.x5d_c00134{left:244.350000px;}
.x87_c00134{left:246.300000px;}
.x92_c00134{left:248.700000px;}
.x89_c00134{left:250.350000px;}
.x5e_c00134{left:252.600000px;}
.x2b_c00134{left:255.750000px;}
.x3b_c00134{left:257.250000px;}
.x6a_c00134{left:259.500000px;}
.x37_c00134{left:261.450000px;}
.x7a_c00134{left:263.850000px;}
.x66_c00134{left:266.550000px;}
.x6_c00134{left:268.500000px;}
.x85_c00134{left:271.500000px;}
.x57_c00134{left:273.750000px;}
.x45_c00134{left:275.850000px;}
.x2f_c00134{left:278.250000px;}
.x14_c00134{left:280.050000px;}
.x67_c00134{left:281.250000px;}
.x7_c00134{left:284.700000px;}
.x6f_c00134{left:286.500000px;}
.x46_c00134{left:288.150000px;}
.x77_c00134{left:289.350000px;}
.x15_c00134{left:291.900000px;}
.xf_c00134{left:295.200000px;}
.x7c_c00134{left:300.300000px;}
.x6c_c00134{left:302.250000px;}
.x80_c00134{left:303.600000px;}
.x72_c00134{left:306.900000px;}
.x58_c00134{left:309.750000px;}
.x16_c00134{left:311.400000px;}
.x1_c00134{left:315.300000px;}
.x5f_c00134{left:317.250000px;}
.x7d_c00134{left:322.950000px;}
.x88_c00134{left:324.450000px;}
.x8c_c00134{left:325.800000px;}
.x38_c00134{left:327.450000px;}
.x8e_c00134{left:329.700000px;}
.x60_c00134{left:330.900000px;}
.x3c_c00134{left:333.600000px;}
.x17_c00134{left:334.800000px;}
.x8_c00134{left:335.850000px;}
.x23_c00134{left:338.100000px;}
.x28_c00134{left:339.900000px;}
.x3d_c00134{left:342.600000px;}
.x73_c00134{left:347.550000px;}
.x74_c00134{left:352.200000px;}
.x7b_c00134{left:353.550000px;}
.x8f_c00134{left:356.700000px;}
.x4a_c00134{left:359.250000px;}
.x9_c00134{left:361.350000px;}
.x3e_c00134{left:362.400000px;}
.x30_c00134{left:363.600000px;}
.x59_c00134{left:365.550000px;}
.x4d_c00134{left:366.600000px;}
.x68_c00134{left:367.650000px;}
.x78_c00134{left:370.350000px;}
.x8d_c00134{left:373.350000px;}
.x18_c00134{left:374.700000px;}
.x8a_c00134{left:378.300000px;}
.x3f_c00134{left:381.450000px;}
.x47_c00134{left:382.800000px;}
.x81_c00134{left:386.700000px;}
.x6d_c00134{left:388.050000px;}
.x51_c00134{left:389.400000px;}
.x75_c00134{left:391.500000px;}
.x4b_c00134{left:393.150000px;}
.x61_c00134{left:394.200000px;}
.x52_c00134{left:395.250000px;}
.x4e_c00134{left:396.450000px;}
.x10_c00134{left:399.150000px;}
.x83_c00134{left:405.000000px;}
.xbb_c00134{left:423.300000px;}
.x130_c00134{left:425.550000px;}
.x116_c00134{left:426.900000px;}
.x10f_c00134{left:428.100000px;}
.xfa_c00134{left:429.150000px;}
.xbc_c00134{left:430.200000px;}
.xfc_c00134{left:431.250000px;}
.x124_c00134{left:440.100000px;}
.x12d_c00134{left:441.300000px;}
.xb6_c00134{left:443.850000px;}
.xe1_c00134{left:445.650000px;}
.xc2_c00134{left:447.450000px;}
.x132_c00134{left:448.950000px;}
.xa6_c00134{left:454.200000px;}
.x118_c00134{left:455.250000px;}
.x98_c00134{left:457.950000px;}
.xaf_c00134{left:459.000000px;}
.x129_c00134{left:460.950000px;}
.xf2_c00134{left:462.600000px;}
.xdd_c00134{left:465.750000px;}
.xf7_c00134{left:468.150000px;}
.xcf_c00134{left:471.750000px;}
.xfd_c00134{left:474.750000px;}
.xe6_c00134{left:477.600000px;}
.xe2_c00134{left:479.100000px;}
.xa7_c00134{left:480.150000px;}
.x99_c00134{left:482.100000px;}
.x131_c00134{left:483.150000px;}
.x134_c00134{left:487.350000px;}
.xfb_c00134{left:488.550000px;}
.x107_c00134{left:490.500000px;}
.x12a_c00134{left:491.700000px;}
.xeb_c00134{left:493.500000px;}
.xd7_c00134{left:495.300000px;}
.x125_c00134{left:496.950000px;}
.xa8_c00134{left:499.200000px;}
.x12e_c00134{left:501.300000px;}
.xb0_c00134{left:503.250000px;}
.xf8_c00134{left:504.450000px;}
.xc3_c00134{left:505.800000px;}
.x9a_c00134{left:507.000000px;}
.x113_c00134{left:508.950000px;}
.xe3_c00134{left:511.500000px;}
.xe7_c00134{left:512.850000px;}
.xbd_c00134{left:514.050000px;}
.xa9_c00134{left:516.450000px;}
.xb1_c00134{left:520.200000px;}
.xb7_c00134{left:522.300000px;}
.xc7_c00134{left:524.100000px;}
.x10b_c00134{left:526.350000px;}
.x100_c00134{left:527.850000px;}
.xd8_c00134{left:529.500000px;}
.x108_c00134{left:531.600000px;}
.xe8_c00134{left:532.950000px;}
.xb8_c00134{left:537.150000px;}
.x109_c00134{left:539.400000px;}
.x114_c00134{left:542.100000px;}
.xb9_c00134{left:543.600000px;}
.x10a_c00134{left:545.250000px;}
.x11e_c00134{left:549.000000px;}
.xc4_c00134{left:550.800000px;}
.x12c_c00134{left:552.450000px;}
.xde_c00134{left:554.400000px;}
.x9b_c00134{left:557.100000px;}
.xaa_c00134{left:558.600000px;}
.xb2_c00134{left:562.350000px;}
.xbe_c00134{left:567.300000px;}
.xd9_c00134{left:569.850000px;}
.xc8_c00134{left:570.900000px;}
.xdf_c00134{left:573.900000px;}
.x101_c00134{left:575.700000px;}
.xe4_c00134{left:577.050000px;}
.x9c_c00134{left:579.000000px;}
.xf9_c00134{left:581.850000px;}
.xe9_c00134{left:584.100000px;}
.x126_c00134{left:585.150000px;}
.xec_c00134{left:587.850000px;}
.xd0_c00134{left:590.250000px;}
.x11f_c00134{left:592.500000px;}
.x133_c00134{left:593.550000px;}
.x104_c00134{left:595.200000px;}
.xb3_c00134{left:596.250000px;}
.x120_c00134{left:599.700000px;}
.x102_c00134{left:600.900000px;}
.x110_c00134{left:602.400000px;}
.x115_c00134{left:605.100000px;}
.x10c_c00134{left:606.150000px;}
.xc9_c00134{left:609.450000px;}
.xf3_c00134{left:610.800000px;}
.xea_c00134{left:612.150000px;}
.xbf_c00134{left:613.800000px;}
.x9d_c00134{left:617.550000px;}
.x105_c00134{left:618.600000px;}
.xe0_c00134{left:619.950000px;}
.xca_c00134{left:621.000000px;}
.xab_c00134{left:624.450000px;}
.xf4_c00134{left:627.300000px;}
.x127_c00134{left:629.250000px;}
.x122_c00134{left:630.450000px;}
.x9e_c00134{left:631.650000px;}
.xfe_c00134{left:634.950000px;}
.xd1_c00134{left:636.300000px;}
.x9f_c00134{left:639.150000px;}
.xed_c00134{left:642.150000px;}
.x106_c00134{left:644.100000px;}
.xc5_c00134{left:645.450000px;}
.xac_c00134{left:647.100000px;}
.xb4_c00134{left:649.500000px;}
.xee_c00134{left:651.150000px;}
.xad_c00134{left:654.000000px;}
.x12b_c00134{left:657.150000px;}
.xd2_c00134{left:659.400000px;}
.xa0_c00134{left:661.200000px;}
.xef_c00134{left:662.250000px;}
.xc6_c00134{left:663.750000px;}
.x128_c00134{left:664.950000px;}
.xa1_c00134{left:667.650000px;}
.xae_c00134{left:668.700000px;}
.xb5_c00134{left:670.350000px;}
.x10d_c00134{left:671.700000px;}
.x112_c00134{left:673.200000px;}
.xa2_c00134{left:674.850000px;}
.xda_c00134{left:677.400000px;}
.xc0_c00134{left:684.300000px;}
.xcb_c00134{left:685.500000px;}
.x123_c00134{left:687.000000px;}
.x11b_c00134{left:689.700000px;}
.x11a_c00134{left:691.200000px;}
.x10e_c00134{left:692.250000px;}
.xba_c00134{left:693.600000px;}
.xa3_c00134{left:694.950000px;}
.xcc_c00134{left:697.050000px;}
.xd3_c00134{left:701.100000px;}
.xf0_c00134{left:702.600000px;}
.xff_c00134{left:706.950000px;}
.xf5_c00134{left:708.300000px;}
.xc1_c00134{left:709.500000px;}
.xe5_c00134{left:710.850000px;}
.xd4_c00134{left:712.950000px;}
.xcd_c00134{left:714.750000px;}
.xdb_c00134{left:717.750000px;}
.x11c_c00134{left:719.250000px;}
.x103_c00134{left:721.200000px;}
.x119_c00134{left:722.700000px;}
.xa4_c00134{left:723.750000px;}
.xdc_c00134{left:726.750000px;}
.xf6_c00134{left:727.800000px;}
.x12f_c00134{left:729.750000px;}
.x111_c00134{left:734.400000px;}
.xd5_c00134{left:736.050000px;}
.x2_c00134{left:739.800000px;}
.x121_c00134{left:742.500000px;}
.xf1_c00134{left:745.200000px;}
.xce_c00134{left:747.150000px;}
.x11d_c00134{left:748.800000px;}
.x117_c00134{left:750.150000px;}
.xa5_c00134{left:753.300000px;}
.xd6_c00134{left:760.950000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls3_c00134{letter-spacing:0.000000pt;}
.ls2_c00134{letter-spacing:34.666667pt;}
.ls0_c00134{letter-spacing:49.523810pt;}
.ls1_c00134{letter-spacing:58.518519pt;}
.ws3_c00134{word-spacing:-85.185185pt;}
.ws1_c00134{word-spacing:-76.190476pt;}
.ws6_c00134{word-spacing:-53.333333pt;}
.ws0_c00134{word-spacing:-7.068154pt;}
.ws12_c00134{word-spacing:-5.948305pt;}
.ws16_c00134{word-spacing:0.000000pt;}
.ws15_c00134{word-spacing:4.924925pt;}
.ws14_c00134{word-spacing:5.256925pt;}
.wsf_c00134{word-spacing:9.455113pt;}
.ws2_c00134{word-spacing:10.555556pt;}
.wsa_c00134{word-spacing:13.333333pt;}
.ws7_c00134{word-spacing:13.777778pt;}
.ws8_c00134{word-spacing:16.000000pt;}
.ws10_c00134{word-spacing:17.773012pt;}
.ws9_c00134{word-spacing:19.682540pt;}
.wse_c00134{word-spacing:20.632708pt;}
.ws4_c00134{word-spacing:22.857143pt;}
.ws11_c00134{word-spacing:23.492404pt;}
.ws5_c00134{word-spacing:31.851852pt;}
.wsd_c00134{word-spacing:35.333333pt;}
.wsb_c00134{word-spacing:35.555556pt;}
.wsc_c00134{word-spacing:133.333333pt;}
.ws13_c00134{word-spacing:150.409357pt;}
._1_c00134{margin-left:-58.518519pt;}
._0_c00134{margin-left:-49.523810pt;}
._3_c00134{margin-left:-34.666667pt;}
._5_c00134{width:34.666667pt;}
._a_c00134{width:35.953162pt;}
._4_c00134{width:40.222222pt;}
._b_c00134{width:41.773012pt;}
._d_c00134{width:44.632708pt;}
._7_c00134{width:46.349206pt;}
._9_c00134{width:47.492404pt;}
._e_c00134{width:51.781948pt;}
._6_c00134{width:52.698413pt;}
._2_c00134{width:71.481481pt;}
._8_c00134{width:240.000000pt;}
._c_c00134{width:322.023235pt;}
._f_c00134{width:535.070599pt;}
.fs8_c00134{font-size:26.666667pt;}
.fs6_c00134{font-size:37.333333pt;}
.fs5_c00134{font-size:42.666667pt;}
.fs4_c00134{font-size:48.000000pt;}
.fs2_c00134{font-size:53.333333pt;}
.fs1_c00134{font-size:58.666667pt;}
.fs7_c00134{font-size:64.000000pt;}
.fs3_c00134{font-size:69.333333pt;}
.fs0_c00134{font-size:74.666667pt;}
.y0_c00134{bottom:0.000000pt;}
.y6a_c00134{bottom:162.933333pt;}
.y37_c00134{bottom:163.200000pt;}
.y36_c00134{bottom:164.133333pt;}
.y69_c00134{bottom:175.733333pt;}
.y35_c00134{bottom:179.200000pt;}
.y34_c00134{bottom:188.533333pt;}
.y68_c00134{bottom:201.333333pt;}
.y33_c00134{bottom:202.666667pt;}
.y67_c00134{bottom:214.133333pt;}
.y32_c00134{bottom:215.733333pt;}
.y66_c00134{bottom:227.200000pt;}
.y31_c00134{bottom:228.533333pt;}
.y30_c00134{bottom:241.333333pt;}
.y2f_c00134{bottom:254.133333pt;}
.y2e_c00134{bottom:265.600000pt;}
.y65_c00134{bottom:268.400000pt;}
.y2d_c00134{bottom:277.066667pt;}
.y64_c00134{bottom:284.400000pt;}
.y2c_c00134{bottom:293.733333pt;}
.y63_c00134{bottom:300.400000pt;}
.y2b_c00134{bottom:316.133333pt;}
.y62_c00134{bottom:332.133333pt;}
.y2a_c00134{bottom:332.800000pt;}
.y61_c00134{bottom:347.866667pt;}
.y29_c00134{bottom:349.066667pt;}
.y60_c00134{bottom:369.600000pt;}
.y28_c00134{bottom:372.400000pt;}
.y5f_c00134{bottom:382.800000pt;}
.y27_c00134{bottom:388.133333pt;}
.y5e_c00134{bottom:395.866667pt;}
.y5d_c00134{bottom:408.400000pt;}
.y26_c00134{bottom:415.733333pt;}
.y5c_c00134{bottom:421.200000pt;}
.y5b_c00134{bottom:434.000000pt;}
.y25_c00134{bottom:438.666667pt;}
.y5a_c00134{bottom:446.800000pt;}
.y24_c00134{bottom:455.600000pt;}
.y59_c00134{bottom:459.600000pt;}
.y23_c00134{bottom:471.333333pt;}
.y58_c00134{bottom:472.400000pt;}
.y57_c00134{bottom:485.466667pt;}
.y22_c00134{bottom:487.333333pt;}
.y56_c00134{bottom:496.000000pt;}
.y21_c00134{bottom:503.333333pt;}
.y55_c00134{bottom:514.133333pt;}
.y20_c00134{bottom:519.066667pt;}
.y54_c00134{bottom:529.866667pt;}
.y1f_c00134{bottom:535.066667pt;}
.y53_c00134{bottom:545.866667pt;}
.y1e_c00134{bottom:558.400000pt;}
.y52_c00134{bottom:569.466667pt;}
.y1d_c00134{bottom:569.600000pt;}
.y1c_c00134{bottom:583.733333pt;}
.y51_c00134{bottom:585.466667pt;}
.y1b_c00134{bottom:596.266667pt;}
.y50_c00134{bottom:601.466667pt;}
.y1a_c00134{bottom:609.066667pt;}
.y4f_c00134{bottom:617.200000pt;}
.y19_c00134{bottom:620.933333pt;}
.y4e_c00134{bottom:633.200000pt;}
.y18_c00134{bottom:634.666667pt;}
.y17_c00134{bottom:647.733333pt;}
.y4d_c00134{bottom:649.200000pt;}
.y16_c00134{bottom:660.266667pt;}
.y4c_c00134{bottom:664.266667pt;}
.y15_c00134{bottom:673.066667pt;}
.y14_c00134{bottom:685.866667pt;}
.y4b_c00134{bottom:688.400000pt;}
.y13_c00134{bottom:698.666667pt;}
.y4a_c00134{bottom:704.666667pt;}
.y12_c00134{bottom:710.133333pt;}
.y11_c00134{bottom:722.266667pt;}
.y49_c00134{bottom:732.133333pt;}
.y10_c00134{bottom:738.533333pt;}
.y48_c00134{bottom:754.933333pt;}
.yf_c00134{bottom:758.133333pt;}
.y47_c00134{bottom:770.933333pt;}
.ye_c00134{bottom:774.133333pt;}
.y46_c00134{bottom:786.933333pt;}
.yd_c00134{bottom:790.133333pt;}
.y45_c00134{bottom:802.933333pt;}
.yc_c00134{bottom:809.600000pt;}
.y44_c00134{bottom:818.666667pt;}
.yb_c00134{bottom:824.933333pt;}
.y43_c00134{bottom:834.400000pt;}
.y42_c00134{bottom:850.400000pt;}
.ya_c00134{bottom:855.733333pt;}
.y41_c00134{bottom:866.400000pt;}
.y9_c00134{bottom:871.733333pt;}
.y40_c00134{bottom:882.133333pt;}
.y3f_c00134{bottom:898.133333pt;}
.y8_c00134{bottom:903.066667pt;}
.y3e_c00134{bottom:913.866667pt;}
.y7_c00134{bottom:919.066667pt;}
.y3d_c00134{bottom:929.600000pt;}
.y6_c00134{bottom:942.400000pt;}
.y3c_c00134{bottom:944.266667pt;}
.y3b_c00134{bottom:952.000000pt;}
.y5_c00134{bottom:958.400000pt;}
.y3a_c00134{bottom:964.533333pt;}
.y4_c00134{bottom:974.133333pt;}
.y39_c00134{bottom:977.333333pt;}
.y3_c00134{bottom:990.133333pt;}
.y38_c00134{bottom:990.400000pt;}
.y2_c00134{bottom:1009.600000pt;}
.y1_c00134{bottom:1013.066667pt;}
.ha_c00134{height:26.666667pt;}
.h8_c00134{height:37.333333pt;}
.h7_c00134{height:42.666667pt;}
.h6_c00134{height:48.000000pt;}
.h4_c00134{height:53.333333pt;}
.h3_c00134{height:58.666667pt;}
.h9_c00134{height:64.000000pt;}
.h5_c00134{height:69.333333pt;}
.h2_c00134{height:74.666667pt;}
.h1_c00134{height:1128.666667pt;}
.h0_c00134{height:1128.960043pt;}
.w1_c00134{width:847.333333pt;}
.w0_c00134{width:847.360027pt;}
.x0_c00134{left:0.000000pt;}
.x70_c00134{left:60.800000pt;}
.x24_c00134{left:62.133333pt;}
.x3_c00134{left:63.333333pt;}
.x2c_c00134{left:64.266667pt;}
.x25_c00134{left:74.000000pt;}
.x84_c00134{left:76.133333pt;}
.x31_c00134{left:77.466667pt;}
.xa_c00134{left:78.933333pt;}
.x91_c00134{left:86.666667pt;}
.x4f_c00134{left:87.733333pt;}
.x62_c00134{left:88.933333pt;}
.x19_c00134{left:92.800000pt;}
.x33_c00134{left:95.733333pt;}
.x48_c00134{left:97.066667pt;}
.x20_c00134{left:98.266667pt;}
.x79_c00134{left:99.200000pt;}
.x63_c00134{left:101.200000pt;}
.x42_c00134{left:102.400000pt;}
.x40_c00134{left:103.866667pt;}
.x2d_c00134{left:105.200000pt;}
.x7e_c00134{left:106.133333pt;}
.x53_c00134{left:107.733333pt;}
.x11_c00134{left:111.066667pt;}
.xb_c00134{left:113.200000pt;}
.x4_c00134{left:114.533333pt;}
.x4c_c00134{left:115.600000pt;}
.x32_c00134{left:117.733333pt;}
.x1f_c00134{left:120.533333pt;}
.x1a_c00134{left:121.600000pt;}
.x26_c00134{left:122.666667pt;}
.x29_c00134{left:124.000000pt;}
.x54_c00134{left:125.333333pt;}
.x64_c00134{left:126.266667pt;}
.x6e_c00134{left:129.200000pt;}
.x1b_c00134{left:130.533333pt;}
.x97_c00134{left:131.866667pt;}
.x12_c00134{left:133.733333pt;}
.x5a_c00134{left:135.466667pt;}
.x86_c00134{left:136.933333pt;}
.x55_c00134{left:138.133333pt;}
.x2e_c00134{left:139.466667pt;}
.x82_c00134{left:141.466667pt;}
.xc_c00134{left:142.666667pt;}
.x21_c00134{left:144.000000pt;}
.x65_c00134{left:146.400000pt;}
.x93_c00134{left:147.333333pt;}
.x2a_c00134{left:148.266667pt;}
.x49_c00134{left:149.866667pt;}
.x39_c00134{left:151.200000pt;}
.x5b_c00134{left:153.066667pt;}
.x34_c00134{left:154.000000pt;}
.x76_c00134{left:155.466667pt;}
.x90_c00134{left:157.066667pt;}
.x8b_c00134{left:158.933333pt;}
.x43_c00134{left:160.666667pt;}
.x7f_c00134{left:162.666667pt;}
.x1c_c00134{left:165.733333pt;}
.x41_c00134{left:168.133333pt;}
.x5_c00134{left:173.066667pt;}
.x35_c00134{left:175.066667pt;}
.x56_c00134{left:176.800000pt;}
.x27_c00134{left:178.000000pt;}
.x69_c00134{left:178.933333pt;}
.x96_c00134{left:180.400000pt;}
.x1d_c00134{left:182.000000pt;}
.x50_c00134{left:184.400000pt;}
.xd_c00134{left:187.466667pt;}
.x13_c00134{left:190.666667pt;}
.x6b_c00134{left:192.666667pt;}
.x3a_c00134{left:194.133333pt;}
.x71_c00134{left:195.066667pt;}
.x22_c00134{left:196.533333pt;}
.x1e_c00134{left:197.733333pt;}
.x94_c00134{left:202.666667pt;}
.x5c_c00134{left:204.400000pt;}
.x44_c00134{left:205.466667pt;}
.x95_c00134{left:209.333333pt;}
.xe_c00134{left:210.533333pt;}
.x36_c00134{left:215.733333pt;}
.x5d_c00134{left:217.200000pt;}
.x87_c00134{left:218.933333pt;}
.x92_c00134{left:221.066667pt;}
.x89_c00134{left:222.533333pt;}
.x5e_c00134{left:224.533333pt;}
.x2b_c00134{left:227.333333pt;}
.x3b_c00134{left:228.666667pt;}
.x6a_c00134{left:230.666667pt;}
.x37_c00134{left:232.400000pt;}
.x7a_c00134{left:234.533333pt;}
.x66_c00134{left:236.933333pt;}
.x6_c00134{left:238.666667pt;}
.x85_c00134{left:241.333333pt;}
.x57_c00134{left:243.333333pt;}
.x45_c00134{left:245.200000pt;}
.x2f_c00134{left:247.333333pt;}
.x14_c00134{left:248.933333pt;}
.x67_c00134{left:250.000000pt;}
.x7_c00134{left:253.066667pt;}
.x6f_c00134{left:254.666667pt;}
.x46_c00134{left:256.133333pt;}
.x77_c00134{left:257.200000pt;}
.x15_c00134{left:259.466667pt;}
.xf_c00134{left:262.400000pt;}
.x7c_c00134{left:266.933333pt;}
.x6c_c00134{left:268.666667pt;}
.x80_c00134{left:269.866667pt;}
.x72_c00134{left:272.800000pt;}
.x58_c00134{left:275.333333pt;}
.x16_c00134{left:276.800000pt;}
.x1_c00134{left:280.266667pt;}
.x5f_c00134{left:282.000000pt;}
.x7d_c00134{left:287.066667pt;}
.x88_c00134{left:288.400000pt;}
.x8c_c00134{left:289.600000pt;}
.x38_c00134{left:291.066667pt;}
.x8e_c00134{left:293.066667pt;}
.x60_c00134{left:294.133333pt;}
.x3c_c00134{left:296.533333pt;}
.x17_c00134{left:297.600000pt;}
.x8_c00134{left:298.533333pt;}
.x23_c00134{left:300.533333pt;}
.x28_c00134{left:302.133333pt;}
.x3d_c00134{left:304.533333pt;}
.x73_c00134{left:308.933333pt;}
.x74_c00134{left:313.066667pt;}
.x7b_c00134{left:314.266667pt;}
.x8f_c00134{left:317.066667pt;}
.x4a_c00134{left:319.333333pt;}
.x9_c00134{left:321.200000pt;}
.x3e_c00134{left:322.133333pt;}
.x30_c00134{left:323.200000pt;}
.x59_c00134{left:324.933333pt;}
.x4d_c00134{left:325.866667pt;}
.x68_c00134{left:326.800000pt;}
.x78_c00134{left:329.200000pt;}
.x8d_c00134{left:331.866667pt;}
.x18_c00134{left:333.066667pt;}
.x8a_c00134{left:336.266667pt;}
.x3f_c00134{left:339.066667pt;}
.x47_c00134{left:340.266667pt;}
.x81_c00134{left:343.733333pt;}
.x6d_c00134{left:344.933333pt;}
.x51_c00134{left:346.133333pt;}
.x75_c00134{left:348.000000pt;}
.x4b_c00134{left:349.466667pt;}
.x61_c00134{left:350.400000pt;}
.x52_c00134{left:351.333333pt;}
.x4e_c00134{left:352.400000pt;}
.x10_c00134{left:354.800000pt;}
.x83_c00134{left:360.000000pt;}
.xbb_c00134{left:376.266667pt;}
.x130_c00134{left:378.266667pt;}
.x116_c00134{left:379.466667pt;}
.x10f_c00134{left:380.533333pt;}
.xfa_c00134{left:381.466667pt;}
.xbc_c00134{left:382.400000pt;}
.xfc_c00134{left:383.333333pt;}
.x124_c00134{left:391.200000pt;}
.x12d_c00134{left:392.266667pt;}
.xb6_c00134{left:394.533333pt;}
.xe1_c00134{left:396.133333pt;}
.xc2_c00134{left:397.733333pt;}
.x132_c00134{left:399.066667pt;}
.xa6_c00134{left:403.733333pt;}
.x118_c00134{left:404.666667pt;}
.x98_c00134{left:407.066667pt;}
.xaf_c00134{left:408.000000pt;}
.x129_c00134{left:409.733333pt;}
.xf2_c00134{left:411.200000pt;}
.xdd_c00134{left:414.000000pt;}
.xf7_c00134{left:416.133333pt;}
.xcf_c00134{left:419.333333pt;}
.xfd_c00134{left:422.000000pt;}
.xe6_c00134{left:424.533333pt;}
.xe2_c00134{left:425.866667pt;}
.xa7_c00134{left:426.800000pt;}
.x99_c00134{left:428.533333pt;}
.x131_c00134{left:429.466667pt;}
.x134_c00134{left:433.200000pt;}
.xfb_c00134{left:434.266667pt;}
.x107_c00134{left:436.000000pt;}
.x12a_c00134{left:437.066667pt;}
.xeb_c00134{left:438.666667pt;}
.xd7_c00134{left:440.266667pt;}
.x125_c00134{left:441.733333pt;}
.xa8_c00134{left:443.733333pt;}
.x12e_c00134{left:445.600000pt;}
.xb0_c00134{left:447.333333pt;}
.xf8_c00134{left:448.400000pt;}
.xc3_c00134{left:449.600000pt;}
.x9a_c00134{left:450.666667pt;}
.x113_c00134{left:452.400000pt;}
.xe3_c00134{left:454.666667pt;}
.xe7_c00134{left:455.866667pt;}
.xbd_c00134{left:456.933333pt;}
.xa9_c00134{left:459.066667pt;}
.xb1_c00134{left:462.400000pt;}
.xb7_c00134{left:464.266667pt;}
.xc7_c00134{left:465.866667pt;}
.x10b_c00134{left:467.866667pt;}
.x100_c00134{left:469.200000pt;}
.xd8_c00134{left:470.666667pt;}
.x108_c00134{left:472.533333pt;}
.xe8_c00134{left:473.733333pt;}
.xb8_c00134{left:477.466667pt;}
.x109_c00134{left:479.466667pt;}
.x114_c00134{left:481.866667pt;}
.xb9_c00134{left:483.200000pt;}
.x10a_c00134{left:484.666667pt;}
.x11e_c00134{left:488.000000pt;}
.xc4_c00134{left:489.600000pt;}
.x12c_c00134{left:491.066667pt;}
.xde_c00134{left:492.800000pt;}
.x9b_c00134{left:495.200000pt;}
.xaa_c00134{left:496.533333pt;}
.xb2_c00134{left:499.866667pt;}
.xbe_c00134{left:504.266667pt;}
.xd9_c00134{left:506.533333pt;}
.xc8_c00134{left:507.466667pt;}
.xdf_c00134{left:510.133333pt;}
.x101_c00134{left:511.733333pt;}
.xe4_c00134{left:512.933333pt;}
.x9c_c00134{left:514.666667pt;}
.xf9_c00134{left:517.200000pt;}
.xe9_c00134{left:519.200000pt;}
.x126_c00134{left:520.133333pt;}
.xec_c00134{left:522.533333pt;}
.xd0_c00134{left:524.666667pt;}
.x11f_c00134{left:526.666667pt;}
.x133_c00134{left:527.600000pt;}
.x104_c00134{left:529.066667pt;}
.xb3_c00134{left:530.000000pt;}
.x120_c00134{left:533.066667pt;}
.x102_c00134{left:534.133333pt;}
.x110_c00134{left:535.466667pt;}
.x115_c00134{left:537.866667pt;}
.x10c_c00134{left:538.800000pt;}
.xc9_c00134{left:541.733333pt;}
.xf3_c00134{left:542.933333pt;}
.xea_c00134{left:544.133333pt;}
.xbf_c00134{left:545.600000pt;}
.x9d_c00134{left:548.933333pt;}
.x105_c00134{left:549.866667pt;}
.xe0_c00134{left:551.066667pt;}
.xca_c00134{left:552.000000pt;}
.xab_c00134{left:555.066667pt;}
.xf4_c00134{left:557.600000pt;}
.x127_c00134{left:559.333333pt;}
.x122_c00134{left:560.400000pt;}
.x9e_c00134{left:561.466667pt;}
.xfe_c00134{left:564.400000pt;}
.xd1_c00134{left:565.600000pt;}
.x9f_c00134{left:568.133333pt;}
.xed_c00134{left:570.800000pt;}
.x106_c00134{left:572.533333pt;}
.xc5_c00134{left:573.733333pt;}
.xac_c00134{left:575.200000pt;}
.xb4_c00134{left:577.333333pt;}
.xee_c00134{left:578.800000pt;}
.xad_c00134{left:581.333333pt;}
.x12b_c00134{left:584.133333pt;}
.xd2_c00134{left:586.133333pt;}
.xa0_c00134{left:587.733333pt;}
.xef_c00134{left:588.666667pt;}
.xc6_c00134{left:590.000000pt;}
.x128_c00134{left:591.066667pt;}
.xa1_c00134{left:593.466667pt;}
.xae_c00134{left:594.400000pt;}
.xb5_c00134{left:595.866667pt;}
.x10d_c00134{left:597.066667pt;}
.x112_c00134{left:598.400000pt;}
.xa2_c00134{left:599.866667pt;}
.xda_c00134{left:602.133333pt;}
.xc0_c00134{left:608.266667pt;}
.xcb_c00134{left:609.333333pt;}
.x123_c00134{left:610.666667pt;}
.x11b_c00134{left:613.066667pt;}
.x11a_c00134{left:614.400000pt;}
.x10e_c00134{left:615.333333pt;}
.xba_c00134{left:616.533333pt;}
.xa3_c00134{left:617.733333pt;}
.xcc_c00134{left:619.600000pt;}
.xd3_c00134{left:623.200000pt;}
.xf0_c00134{left:624.533333pt;}
.xff_c00134{left:628.400000pt;}
.xf5_c00134{left:629.600000pt;}
.xc1_c00134{left:630.666667pt;}
.xe5_c00134{left:631.866667pt;}
.xd4_c00134{left:633.733333pt;}
.xcd_c00134{left:635.333333pt;}
.xdb_c00134{left:638.000000pt;}
.x11c_c00134{left:639.333333pt;}
.x103_c00134{left:641.066667pt;}
.x119_c00134{left:642.400000pt;}
.xa4_c00134{left:643.333333pt;}
.xdc_c00134{left:646.000000pt;}
.xf6_c00134{left:646.933333pt;}
.x12f_c00134{left:648.666667pt;}
.x111_c00134{left:652.800000pt;}
.xd5_c00134{left:654.266667pt;}
.x2_c00134{left:657.600000pt;}
.x121_c00134{left:660.000000pt;}
.xf1_c00134{left:662.400000pt;}
.xce_c00134{left:664.133333pt;}
.x11d_c00134{left:665.600000pt;}
.x117_c00134{left:666.800000pt;}
.xa5_c00134{left:669.600000pt;}
.xd6_c00134{left:676.400000pt;}
}





/* 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_c00135 {
    display:none;
  }
  .loading-indicator_c00135.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00135 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_c00135 { 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_c00135" -> "#page-container .classname_c00135")
 */
.pf_c00135 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00135 { /* 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_c00135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00135 { /* 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_c00135 { /* 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_c00135 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00135 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00135 {overflow:visible;}
  }
}
.c_c00135 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00135 { /* 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_c00135:after { /* webkit #35443 */
  content: '';
}
.t_c00135:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00135 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 */
}
.__c00135 { /* 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_c00135 { /* info for Javascript */
  display:none;
}
.l_c00135 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00135 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00135 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00135: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_c00135 {
    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_c00135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00135.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_c00135 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00135;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.000000;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;}
.m50_c00135{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00135{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00135{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.md1_c00135{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00135{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.md8_c00135{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.md2_c00135{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00135{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00135{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.md6_c00135{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m61_c00135{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mba_c00135{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00135{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md7_c00135{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00135{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00135{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me7_c00135{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00135{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00135{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00135{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m67_c00135{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m105_c00135{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.me1_c00135{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00135{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m63_c00135{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m95_c00135{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.md4_c00135{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me4_c00135{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00135{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00135{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00135{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00135{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md3_c00135{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m59_c00135{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.md9_c00135{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m92_c00135{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mce_c00135{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m27_c00135{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md0_c00135{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00135{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00135{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m4_c00135{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00135{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.me0_c00135{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00135{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00135{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc_c00135{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m24_c00135{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00135{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mff_c00135{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m73_c00135{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00135{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m114_c00135{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m70_c00135{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m72_c00135{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m83_c00135{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00135{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00135{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00135{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00135{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m20_c00135{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m69_c00135{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00135{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m118_c00135{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00135{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00135{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00135{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00135{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00135{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00135{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m94_c00135{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.me_c00135{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m9_c00135{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5_c00135{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m80_c00135{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m110_c00135{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00135{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m104_c00135{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m115_c00135{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m28_c00135{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m91_c00135{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.ma_c00135{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00135{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00135{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00135{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00135{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m18_c00135{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m30_c00135{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m17_c00135{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00135{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m85_c00135{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00135{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m65_c00135{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00135{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m75_c00135{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00135{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00135{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m117_c00135{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m81_c00135{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.med_c00135{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m15_c00135{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m12_c00135{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00135{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m119_c00135{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00135{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00135{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m29_c00135{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m90_c00135{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00135{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m102_c00135{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m108_c00135{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m23_c00135{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00135{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00135{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m93_c00135{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00135{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m25_c00135{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mad_c00135{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00135{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00135{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m98_c00135{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00135{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00135{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2_c00135{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m44_c00135{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m68_c00135{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00135{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00135{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00135{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00135{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m107_c00135{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00135{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00135{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00135{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6_c00135{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m103_c00135{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb_c00135{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00135{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10_c00135{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mf_c00135{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m101_c00135{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mef_c00135{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00135{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00135{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m51_c00135{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m89_c00135{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00135{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m106_c00135{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m19_c00135{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.md_c00135{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00135{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m56_c00135{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m71_c00135{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00135{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m43_c00135{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00135{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m78_c00135{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00135{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mac_c00135{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00135{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00135{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m41_c00135{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m77_c00135{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m11_c00135{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00135{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00135{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m84_c00135{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mda_c00135{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00135{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m14_c00135{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00135{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m31_c00135{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m88_c00135{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m54_c00135{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m48_c00135{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m113_c00135{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mab_c00135{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mec_c00135{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00135{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m79_c00135{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m55_c00135{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00135{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00135{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00135{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m64_c00135{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00135{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me8_c00135{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m13_c00135{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m58_c00135{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00135{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m53_c00135{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m74_c00135{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m52_c00135{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m47_c00135{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m97_c00135{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m37_c00135{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00135{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00135{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00135{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m45_c00135{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m57_c00135{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8_c00135{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m116_c00135{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m66_c00135{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mee_c00135{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m16_c00135{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m26_c00135{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00135{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m111_c00135{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m86_c00135{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00135{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00135{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m36_c00135{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7_c00135{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00135{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m87_c00135{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00135{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00135{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00135{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00135{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00135{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00135{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m82_c00135{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00135{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00135{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m76_c00135{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00135{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00135{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m99_c00135{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00135{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00135{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m34_c00135{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m60_c00135{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00135{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00135{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m42_c00135{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00135{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m33_c00135{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00135{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00135{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00135{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);}
.me6_c00135{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m39_c00135{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m22_c00135{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md5_c00135{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m32_c00135{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00135{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00135{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00135{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m112_c00135{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mca_c00135{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00135{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m100_c00135{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m109_c00135{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me9_c00135{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m21_c00135{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.maf_c00135{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00135{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m40_c00135{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00135{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.maa_c00135{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m62_c00135{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00135{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00135{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00135{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mde_c00135{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00135{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00135{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mae_c00135{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00135{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.meb_c00135{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m38_c00135{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m96_c00135{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00135{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.mea_c00135{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00135{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m49_c00135{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m46_c00135{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00135{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m35_c00135{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00135{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.me5_c00135{transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);}
.me3_c00135{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.me2_c00135{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls0_c00135{letter-spacing:0.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{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__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00135{word-spacing:-9.000000px;}
.ws2_c00135{word-spacing:-7.500000px;}
.ws4_c00135{word-spacing:-3.611111px;}
.ws5_c00135{word-spacing:-1.309524px;}
.ws3_c00135{word-spacing:-0.909091px;}
.ws1c_c00135{word-spacing:0.000000px;}
.ws1a_c00135{word-spacing:0.189112px;}
.ws1b_c00135{word-spacing:0.378223px;}
.ws12_c00135{word-spacing:1.363636px;}
.wsc_c00135{word-spacing:3.611111px;}
.ws17_c00135{word-spacing:5.056769px;}
.ws13_c00135{word-spacing:10.285714px;}
.ws14_c00135{word-spacing:11.714286px;}
.ws0_c00135{word-spacing:12.680982px;}
.ws1_c00135{word-spacing:12.955414px;}
.ws18_c00135{word-spacing:15.156250px;}
.ws19_c00135{word-spacing:19.714286px;}
.wsb_c00135{word-spacing:22.142857px;}
.ws7_c00135{word-spacing:24.491803px;}
.ws11_c00135{word-spacing:25.714286px;}
.wsf_c00135{word-spacing:29.285714px;}
.wsd_c00135{word-spacing:32.250000px;}
.ws8_c00135{word-spacing:32.360656px;}
.ws10_c00135{word-spacing:35.833333px;}
.wse_c00135{word-spacing:36.000000px;}
.wsa_c00135{word-spacing:49.000000px;}
.ws15_c00135{word-spacing:65.000000px;}
.ws9_c00135{word-spacing:126.366412px;}
.ws16_c00135{word-spacing:160.454545px;}
._5_c00135{width:20.857143px;}
._4_c00135{width:22.285714px;}
._1_c00135{width:55.714286px;}
._0_c00135{width:59.285714px;}
._3_c00135{width:63.000000px;}
._2_c00135{width:66.750000px;}
.fc0_c00135{color:transparent;}
.fs6_c00135{font-size:24.000000px;}
.fs4_c00135{font-size:48.000000px;}
.fs5_c00135{font-size:54.000000px;}
.fs2_c00135{font-size:60.000000px;}
.fs1_c00135{font-size:66.000000px;}
.fs3_c00135{font-size:72.000000px;}
.fs0_c00135{font-size:78.000000px;}
.y0_c00135{bottom:0.000000px;}
.y58_c00135{bottom:174.600000px;}
.y57_c00135{bottom:191.550000px;}
.y52_c00135{bottom:192.900000px;}
.y56_c00135{bottom:210.300000px;}
.y51_c00135{bottom:210.900000px;}
.y50_c00135{bottom:228.600000px;}
.y4f_c00135{bottom:246.300000px;}
.y55_c00135{bottom:246.600000px;}
.y4e_c00135{bottom:264.300000px;}
.y4d_c00135{bottom:282.000000px;}
.y4c_c00135{bottom:300.000000px;}
.y4b_c00135{bottom:317.700000px;}
.y4a_c00135{bottom:335.400000px;}
.y49_c00135{bottom:353.400000px;}
.y48_c00135{bottom:371.400000px;}
.y47_c00135{bottom:389.100000px;}
.y46_c00135{bottom:407.100000px;}
.y45_c00135{bottom:424.800000px;}
.y54_c00135{bottom:425.100000px;}
.y44_c00135{bottom:442.800000px;}
.y53_c00135{bottom:443.100000px;}
.y42_c00135{bottom:460.800000px;}
.y43_c00135{bottom:478.800000px;}
.y41_c00135{bottom:484.950000px;}
.y40_c00135{bottom:502.350000px;}
.y3f_c00135{bottom:512.400000px;}
.y3e_c00135{bottom:517.800000px;}
.y3d_c00135{bottom:530.400000px;}
.y3c_c00135{bottom:545.850000px;}
.y3b_c00135{bottom:560.550000px;}
.y3a_c00135{bottom:576.000000px;}
.y38_c00135{bottom:589.350000px;}
.y39_c00135{bottom:590.100000px;}
.y37_c00135{bottom:604.500000px;}
.y36_c00135{bottom:606.900000px;}
.y35_c00135{bottom:624.900000px;}
.y34_c00135{bottom:633.600000px;}
.y33_c00135{bottom:645.900000px;}
.y32_c00135{bottom:664.950000px;}
.y31_c00135{bottom:683.250000px;}
.y2a_c00135{bottom:683.400000px;}
.y29_c00135{bottom:696.300000px;}
.y28_c00135{bottom:700.950000px;}
.y30_c00135{bottom:709.950000px;}
.y27_c00135{bottom:726.900000px;}
.y2f_c00135{bottom:736.950000px;}
.y26_c00135{bottom:745.950000px;}
.y2e_c00135{bottom:759.150000px;}
.y25_c00135{bottom:763.950000px;}
.y2d_c00135{bottom:776.850000px;}
.y24_c00135{bottom:781.650000px;}
.y2c_c00135{bottom:794.850000px;}
.y23_c00135{bottom:799.650000px;}
.y2b_c00135{bottom:812.850000px;}
.y22_c00135{bottom:818.700000px;}
.y1d_c00135{bottom:834.450000px;}
.y21_c00135{bottom:842.850000px;}
.y1c_c00135{bottom:852.450000px;}
.y20_c00135{bottom:861.900000px;}
.y1b_c00135{bottom:870.150000px;}
.y1a_c00135{bottom:888.150000px;}
.y1f_c00135{bottom:896.400000px;}
.y19_c00135{bottom:906.150000px;}
.y18_c00135{bottom:923.850000px;}
.y1e_c00135{bottom:934.950000px;}
.y17_c00135{bottom:941.850000px;}
.y16_c00135{bottom:959.550000px;}
.ye_c00135{bottom:961.500000px;}
.y15_c00135{bottom:977.550000px;}
.yd_c00135{bottom:980.550000px;}
.y14_c00135{bottom:995.550000px;}
.yc_c00135{bottom:998.850000px;}
.y13_c00135{bottom:1013.250000px;}
.yb_c00135{bottom:1016.550000px;}
.y12_c00135{bottom:1031.250000px;}
.ya_c00135{bottom:1034.250000px;}
.y11_c00135{bottom:1048.950000px;}
.y9_c00135{bottom:1051.950000px;}
.y10_c00135{bottom:1066.650000px;}
.y8_c00135{bottom:1069.650000px;}
.yf_c00135{bottom:1084.350000px;}
.y7_c00135{bottom:1087.650000px;}
.y4_c00135{bottom:1106.400000px;}
.y6_c00135{bottom:1115.700000px;}
.y5_c00135{bottom:1123.200000px;}
.y3_c00135{bottom:1124.700000px;}
.y1_c00135{bottom:1148.100000px;}
.y2_c00135{bottom:1150.200000px;}
.h8_c00135{height:24.000000px;}
.h6_c00135{height:48.000000px;}
.h7_c00135{height:54.000000px;}
.h4_c00135{height:60.000000px;}
.h3_c00135{height:66.000000px;}
.h5_c00135{height:72.000000px;}
.h2_c00135{height:78.000000px;}
.h1_c00135{height:1274.250000px;}
.h0_c00135{height:1274.400056px;}
.w1_c00135{width:953.250000px;}
.w0_c00135{width:953.280030px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:191.850000px;}
.x93_c00135{left:194.400000px;}
.xb3_c00135{left:195.900000px;}
.x9a_c00135{left:196.950000px;}
.xfb_c00135{left:199.050000px;}
.xcb_c00135{left:208.350000px;}
.xd_c00135{left:212.100000px;}
.xa4_c00135{left:213.300000px;}
.xfe_c00135{left:217.050000px;}
.x109_c00135{left:218.550000px;}
.x111_c00135{left:220.350000px;}
.x112_c00135{left:221.550000px;}
.xdb_c00135{left:224.250000px;}
.xd6_c00135{left:225.300000px;}
.xf3_c00135{left:227.100000px;}
.x19_c00135{left:228.900000px;}
.x21_c00135{left:233.250000px;}
.xa5_c00135{left:238.200000px;}
.x9b_c00135{left:240.450000px;}
.x103_c00135{left:242.400000px;}
.xde_c00135{left:243.750000px;}
.x10e_c00135{left:244.800000px;}
.x32_c00135{left:247.350000px;}
.x105_c00135{left:249.600000px;}
.x14_c00135{left:250.800000px;}
.xe_c00135{left:255.000000px;}
.xb6_c00135{left:256.500000px;}
.xad_c00135{left:258.000000px;}
.xcc_c00135{left:261.600000px;}
.x94_c00135{left:262.800000px;}
.x96_c00135{left:265.350000px;}
.x106_c00135{left:266.850000px;}
.xff_c00135{left:268.500000px;}
.x1a_c00135{left:270.600000px;}
.x3e_c00135{left:272.550000px;}
.x97_c00135{left:275.850000px;}
.xdf_c00135{left:276.900000px;}
.x9c_c00135{left:277.950000px;}
.x42_c00135{left:283.800000px;}
.x95_c00135{left:285.900000px;}
.x29_c00135{left:288.150000px;}
.xec_c00135{left:291.450000px;}
.xae_c00135{left:292.500000px;}
.x9f_c00135{left:295.800000px;}
.x10f_c00135{left:298.050000px;}
.x1b_c00135{left:299.400000px;}
.x100_c00135{left:300.900000px;}
.x22_c00135{left:301.950000px;}
.x33_c00135{left:303.900000px;}
.xb0_c00135{left:305.100000px;}
.x2a_c00135{left:308.250000px;}
.xa9_c00135{left:310.950000px;}
.xb7_c00135{left:312.300000px;}
.x34_c00135{left:314.400000px;}
.xf_c00135{left:315.900000px;}
.x114_c00135{left:317.250000px;}
.x23_c00135{left:318.450000px;}
.xa0_c00135{left:319.500000px;}
.x118_c00135{left:320.700000px;}
.x3a_c00135{left:322.950000px;}
.xcd_c00135{left:324.300000px;}
.x115_c00135{left:327.300000px;}
.x98_c00135{left:329.850000px;}
.x1c_c00135{left:333.300000px;}
.xa6_c00135{left:334.650000px;}
.xe0_c00135{left:336.000000px;}
.x101_c00135{left:337.200000px;}
.xaf_c00135{left:338.550000px;}
.x113_c00135{left:340.050000px;}
.x35_c00135{left:341.700000px;}
.x24_c00135{left:342.900000px;}
.xfc_c00135{left:344.100000px;}
.xa1_c00135{left:345.750000px;}
.x3b_c00135{left:347.850000px;}
.x3f_c00135{left:350.250000px;}
.xb8_c00135{left:351.600000px;}
.x10_c00135{left:353.400000px;}
.xaa_c00135{left:354.450000px;}
.xef_c00135{left:360.600000px;}
.x25_c00135{left:364.200000px;}
.x119_c00135{left:365.700000px;}
.xce_c00135{left:368.250000px;}
.x15_c00135{left:370.350000px;}
.x36_c00135{left:372.000000px;}
.x107_c00135{left:373.350000px;}
.xcf_c00135{left:375.750000px;}
.xf4_c00135{left:376.950000px;}
.x26_c00135{left:379.650000px;}
.x2e_c00135{left:381.000000px;}
.x2b_c00135{left:383.100000px;}
.x10a_c00135{left:384.300000px;}
.xa7_c00135{left:386.550000px;}
.x2f_c00135{left:388.500000px;}
.xd0_c00135{left:390.450000px;}
.xf0_c00135{left:391.500000px;}
.x108_c00135{left:393.900000px;}
.x9d_c00135{left:397.800000px;}
.xfd_c00135{left:399.150000px;}
.xa2_c00135{left:401.850000px;}
.x99_c00135{left:403.350000px;}
.x40_c00135{left:404.550000px;}
.x1d_c00135{left:406.050000px;}
.x11_c00135{left:408.450000px;}
.xd1_c00135{left:411.300000px;}
.xe1_c00135{left:412.350000px;}
.x30_c00135{left:413.700000px;}
.x27_c00135{left:415.950000px;}
.x110_c00135{left:417.900000px;}
.xe2_c00135{left:419.550000px;}
.x3c_c00135{left:420.900000px;}
.x116_c00135{left:421.950000px;}
.x37_c00135{left:424.500000px;}
.x16_c00135{left:426.450000px;}
.xe5_c00135{left:427.800000px;}
.x104_c00135{left:429.600000px;}
.x12_c00135{left:431.100000px;}
.xa8_c00135{left:433.050000px;}
.x2_c00135{left:434.100000px;}
.xe6_c00135{left:435.300000px;}
.x1e_c00135{left:438.750000px;}
.xe3_c00135{left:440.850000px;}
.xe7_c00135{left:442.200000px;}
.x17_c00135{left:444.150000px;}
.xab_c00135{left:445.200000px;}
.x10d_c00135{left:446.850000px;}
.x10b_c00135{left:449.850000px;}
.xb9_c00135{left:452.850000px;}
.x1f_c00135{left:456.450000px;}
.x38_c00135{left:458.700000px;}
.xd2_c00135{left:460.350000px;}
.xe8_c00135{left:461.700000px;}
.x11a_c00135{left:466.050000px;}
.xb5_c00135{left:468.150000px;}
.xb1_c00135{left:469.200000px;}
.x3d_c00135{left:471.300000px;}
.x39_c00135{left:474.150000px;}
.xa3_c00135{left:476.400000px;}
.x2c_c00135{left:478.200000px;}
.x9e_c00135{left:483.450000px;}
.xac_c00135{left:486.600000px;}
.xe4_c00135{left:489.150000px;}
.xd3_c00135{left:490.200000px;}
.x28_c00135{left:491.250000px;}
.x41_c00135{left:492.300000px;}
.x31_c00135{left:493.950000px;}
.xb4_c00135{left:499.500000px;}
.x20_c00135{left:501.150000px;}
.x10c_c00135{left:502.350000px;}
.x18_c00135{left:504.300000px;}
.x117_c00135{left:507.600000px;}
.x13_c00135{left:509.250000px;}
.xb2_c00135{left:510.300000px;}
.x102_c00135{left:514.650000px;}
.xc8_c00135{left:516.150000px;}
.x2d_c00135{left:518.100000px;}
.xd7_c00135{left:519.750000px;}
.xed_c00135{left:528.900000px;}
.xee_c00135{left:553.350000px;}
.x4f_c00135{left:555.150000px;}
.x5b_c00135{left:565.650000px;}
.x3_c00135{left:567.300000px;}
.x85_c00135{left:568.950000px;}
.xd8_c00135{left:570.300000px;}
.x11b_c00135{left:571.650000px;}
.x12c_c00135{left:572.700000px;}
.x135_c00135{left:573.900000px;}
.xf7_c00135{left:581.700000px;}
.x43_c00135{left:585.000000px;}
.xba_c00135{left:586.800000px;}
.xc9_c00135{left:588.450000px;}
.xe9_c00135{left:591.300000px;}
.x12e_c00135{left:592.350000px;}
.x8a_c00135{left:595.200000px;}
.xc5_c00135{left:597.150000px;}
.x4_c00135{left:598.650000px;}
.x86_c00135{left:601.650000px;}
.x5c_c00135{left:603.450000px;}
.xc2_c00135{left:604.650000px;}
.x63_c00135{left:606.150000px;}
.x134_c00135{left:607.200000px;}
.xbb_c00135{left:608.400000px;}
.x50_c00135{left:609.900000px;}
.x55_c00135{left:611.850000px;}
.x130_c00135{left:612.900000px;}
.x70_c00135{left:615.150000px;}
.x49_c00135{left:616.950000px;}
.x5_c00135{left:618.150000px;}
.x62_c00135{left:622.350000px;}
.x129_c00135{left:623.850000px;}
.x5d_c00135{left:625.350000px;}
.x12d_c00135{left:627.150000px;}
.x80_c00135{left:628.500000px;}
.x8b_c00135{left:630.150000px;}
.x44_c00135{left:632.100000px;}
.x6_c00135{left:634.050000px;}
.x91_c00135{left:639.300000px;}
.xf8_c00135{left:640.800000px;}
.xf1_c00135{left:642.450000px;}
.x127_c00135{left:643.950000px;}
.x56_c00135{left:645.750000px;}
.x64_c00135{left:649.050000px;}
.x11d_c00135{left:651.300000px;}
.x7a_c00135{left:652.950000px;}
.xc3_c00135{left:656.850000px;}
.xd9_c00135{left:659.100000px;}
.x45_c00135{left:660.150000px;}
.x5e_c00135{left:662.400000px;}
.x123_c00135{left:664.050000px;}
.x4a_c00135{left:665.250000px;}
.xea_c00135{left:667.200000px;}
.x7_c00135{left:669.750000px;}
.x51_c00135{left:671.400000px;}
.x92_c00135{left:674.550000px;}
.xf2_c00135{left:675.600000px;}
.x81_c00135{left:676.800000px;}
.x8c_c00135{left:679.050000px;}
.xbc_c00135{left:682.200000px;}
.x76_c00135{left:683.550000px;}
.x7b_c00135{left:688.200000px;}
.xf9_c00135{left:690.450000px;}
.x6b_c00135{left:691.950000px;}
.x8d_c00135{left:693.150000px;}
.x52_c00135{left:695.100000px;}
.x120_c00135{left:696.450000px;}
.x71_c00135{left:697.950000px;}
.x77_c00135{left:699.750000px;}
.x5f_c00135{left:702.300000px;}
.x87_c00135{left:705.300000px;}
.x11f_c00135{left:707.550000px;}
.xd4_c00135{left:708.750000px;}
.x7c_c00135{left:711.600000px;}
.x4b_c00135{left:714.150000px;}
.x131_c00135{left:715.200000px;}
.x57_c00135{left:716.250000px;}
.x65_c00135{left:719.550000px;}
.x8_c00135{left:721.950000px;}
.x82_c00135{left:724.650000px;}
.x46_c00135{left:727.050000px;}
.x66_c00135{left:728.550000px;}
.x6c_c00135{left:731.850000px;}
.x4c_c00135{left:733.950000px;}
.xeb_c00135{left:735.000000px;}
.x58_c00135{left:739.950000px;}
.x9_c00135{left:741.750000px;}
.x7d_c00135{left:743.700000px;}
.xc4_c00135{left:745.050000px;}
.xc0_c00135{left:747.150000px;}
.x72_c00135{left:748.950000px;}
.x88_c00135{left:751.350000px;}
.x60_c00135{left:754.500000px;}
.xc6_c00135{left:756.000000px;}
.x11c_c00135{left:758.400000px;}
.x6d_c00135{left:760.650000px;}
.x124_c00135{left:761.700000px;}
.xfa_c00135{left:765.600000px;}
.x73_c00135{left:767.700000px;}
.xa_c00135{left:769.500000px;}
.xca_c00135{left:771.450000px;}
.x8e_c00135{left:772.650000px;}
.x12a_c00135{left:774.150000px;}
.x83_c00135{left:776.850000px;}
.x132_c00135{left:778.950000px;}
.x125_c00135{left:781.800000px;}
.x47_c00135{left:784.650000px;}
.xb_c00135{left:786.750000px;}
.x53_c00135{left:788.700000px;}
.x7e_c00135{left:792.300000px;}
.x74_c00135{left:793.650000px;}
.x59_c00135{left:799.050000px;}
.xdc_c00135{left:800.250000px;}
.x61_c00135{left:804.150000px;}
.x67_c00135{left:805.650000px;}
.x128_c00135{left:806.850000px;}
.xc7_c00135{left:810.300000px;}
.x121_c00135{left:814.200000px;}
.xf5_c00135{left:816.300000px;}
.x6e_c00135{left:817.950000px;}
.x5a_c00135{left:819.150000px;}
.x8f_c00135{left:820.500000px;}
.x4d_c00135{left:822.750000px;}
.x133_c00135{left:823.950000px;}
.x89_c00135{left:825.150000px;}
.xc_c00135{left:827.400000px;}
.xd5_c00135{left:829.050000px;}
.x68_c00135{left:830.100000px;}
.x78_c00135{left:834.000000px;}
.xbf_c00135{left:836.400000px;}
.x4e_c00135{left:839.250000px;}
.x69_c00135{left:840.900000px;}
.x48_c00135{left:841.950000px;}
.x6f_c00135{left:843.150000px;}
.x84_c00135{left:845.700000px;}
.x75_c00135{left:847.950000px;}
.x126_c00135{left:850.950000px;}
.x12b_c00135{left:853.800000px;}
.x54_c00135{left:855.300000px;}
.x136_c00135{left:856.500000px;}
.xdd_c00135{left:857.550000px;}
.x12f_c00135{left:858.750000px;}
.x79_c00135{left:859.950000px;}
.x11e_c00135{left:862.200000px;}
.x6a_c00135{left:865.800000px;}
.xbd_c00135{left:868.500000px;}
.xc1_c00135{left:871.050000px;}
.xf6_c00135{left:874.950000px;}
.x90_c00135{left:876.300000px;}
.xda_c00135{left:878.250000px;}
.xbe_c00135{left:880.050000px;}
.x7f_c00135{left:881.250000px;}
.x122_c00135{left:886.950000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws6_c00135{word-spacing:-8.000000pt;}
.ws2_c00135{word-spacing:-6.666667pt;}
.ws4_c00135{word-spacing:-3.209877pt;}
.ws5_c00135{word-spacing:-1.164021pt;}
.ws3_c00135{word-spacing:-0.808081pt;}
.ws1c_c00135{word-spacing:0.000000pt;}
.ws1a_c00135{word-spacing:0.168099pt;}
.ws1b_c00135{word-spacing:0.336199pt;}
.ws12_c00135{word-spacing:1.212121pt;}
.wsc_c00135{word-spacing:3.209877pt;}
.ws17_c00135{word-spacing:4.494905pt;}
.ws13_c00135{word-spacing:9.142857pt;}
.ws14_c00135{word-spacing:10.412698pt;}
.ws0_c00135{word-spacing:11.271984pt;}
.ws1_c00135{word-spacing:11.515924pt;}
.ws18_c00135{word-spacing:13.472222pt;}
.ws19_c00135{word-spacing:17.523810pt;}
.wsb_c00135{word-spacing:19.682540pt;}
.ws7_c00135{word-spacing:21.770492pt;}
.ws11_c00135{word-spacing:22.857143pt;}
.wsf_c00135{word-spacing:26.031746pt;}
.wsd_c00135{word-spacing:28.666667pt;}
.ws8_c00135{word-spacing:28.765027pt;}
.ws10_c00135{word-spacing:31.851852pt;}
.wse_c00135{word-spacing:32.000000pt;}
.wsa_c00135{word-spacing:43.555556pt;}
.ws15_c00135{word-spacing:57.777778pt;}
.ws9_c00135{word-spacing:112.325700pt;}
.ws16_c00135{word-spacing:142.626263pt;}
._5_c00135{width:18.539683pt;}
._4_c00135{width:19.809524pt;}
._1_c00135{width:49.523810pt;}
._0_c00135{width:52.698413pt;}
._3_c00135{width:56.000000pt;}
._2_c00135{width:59.333333pt;}
.fs6_c00135{font-size:21.333333pt;}
.fs4_c00135{font-size:42.666667pt;}
.fs5_c00135{font-size:48.000000pt;}
.fs2_c00135{font-size:53.333333pt;}
.fs1_c00135{font-size:58.666667pt;}
.fs3_c00135{font-size:64.000000pt;}
.fs0_c00135{font-size:69.333333pt;}
.y0_c00135{bottom:0.000000pt;}
.y58_c00135{bottom:155.200000pt;}
.y57_c00135{bottom:170.266667pt;}
.y52_c00135{bottom:171.466667pt;}
.y56_c00135{bottom:186.933333pt;}
.y51_c00135{bottom:187.466667pt;}
.y50_c00135{bottom:203.200000pt;}
.y4f_c00135{bottom:218.933333pt;}
.y55_c00135{bottom:219.200000pt;}
.y4e_c00135{bottom:234.933333pt;}
.y4d_c00135{bottom:250.666667pt;}
.y4c_c00135{bottom:266.666667pt;}
.y4b_c00135{bottom:282.400000pt;}
.y4a_c00135{bottom:298.133333pt;}
.y49_c00135{bottom:314.133333pt;}
.y48_c00135{bottom:330.133333pt;}
.y47_c00135{bottom:345.866667pt;}
.y46_c00135{bottom:361.866667pt;}
.y45_c00135{bottom:377.600000pt;}
.y54_c00135{bottom:377.866667pt;}
.y44_c00135{bottom:393.600000pt;}
.y53_c00135{bottom:393.866667pt;}
.y42_c00135{bottom:409.600000pt;}
.y43_c00135{bottom:425.600000pt;}
.y41_c00135{bottom:431.066667pt;}
.y40_c00135{bottom:446.533333pt;}
.y3f_c00135{bottom:455.466667pt;}
.y3e_c00135{bottom:460.266667pt;}
.y3d_c00135{bottom:471.466667pt;}
.y3c_c00135{bottom:485.200000pt;}
.y3b_c00135{bottom:498.266667pt;}
.y3a_c00135{bottom:512.000000pt;}
.y38_c00135{bottom:523.866667pt;}
.y39_c00135{bottom:524.533333pt;}
.y37_c00135{bottom:537.333333pt;}
.y36_c00135{bottom:539.466667pt;}
.y35_c00135{bottom:555.466667pt;}
.y34_c00135{bottom:563.200000pt;}
.y33_c00135{bottom:574.133333pt;}
.y32_c00135{bottom:591.066667pt;}
.y31_c00135{bottom:607.333333pt;}
.y2a_c00135{bottom:607.466667pt;}
.y29_c00135{bottom:618.933333pt;}
.y28_c00135{bottom:623.066667pt;}
.y30_c00135{bottom:631.066667pt;}
.y27_c00135{bottom:646.133333pt;}
.y2f_c00135{bottom:655.066667pt;}
.y26_c00135{bottom:663.066667pt;}
.y2e_c00135{bottom:674.800000pt;}
.y25_c00135{bottom:679.066667pt;}
.y2d_c00135{bottom:690.533333pt;}
.y24_c00135{bottom:694.800000pt;}
.y2c_c00135{bottom:706.533333pt;}
.y23_c00135{bottom:710.800000pt;}
.y2b_c00135{bottom:722.533333pt;}
.y22_c00135{bottom:727.733333pt;}
.y1d_c00135{bottom:741.733333pt;}
.y21_c00135{bottom:749.200000pt;}
.y1c_c00135{bottom:757.733333pt;}
.y20_c00135{bottom:766.133333pt;}
.y1b_c00135{bottom:773.466667pt;}
.y1a_c00135{bottom:789.466667pt;}
.y1f_c00135{bottom:796.800000pt;}
.y19_c00135{bottom:805.466667pt;}
.y18_c00135{bottom:821.200000pt;}
.y1e_c00135{bottom:831.066667pt;}
.y17_c00135{bottom:837.200000pt;}
.y16_c00135{bottom:852.933333pt;}
.ye_c00135{bottom:854.666667pt;}
.y15_c00135{bottom:868.933333pt;}
.yd_c00135{bottom:871.600000pt;}
.y14_c00135{bottom:884.933333pt;}
.yc_c00135{bottom:887.866667pt;}
.y13_c00135{bottom:900.666667pt;}
.yb_c00135{bottom:903.600000pt;}
.y12_c00135{bottom:916.666667pt;}
.ya_c00135{bottom:919.333333pt;}
.y11_c00135{bottom:932.400000pt;}
.y9_c00135{bottom:935.066667pt;}
.y10_c00135{bottom:948.133333pt;}
.y8_c00135{bottom:950.800000pt;}
.yf_c00135{bottom:963.866667pt;}
.y7_c00135{bottom:966.800000pt;}
.y4_c00135{bottom:983.466667pt;}
.y6_c00135{bottom:991.733333pt;}
.y5_c00135{bottom:998.400000pt;}
.y3_c00135{bottom:999.733333pt;}
.y1_c00135{bottom:1020.533333pt;}
.y2_c00135{bottom:1022.400000pt;}
.h8_c00135{height:21.333333pt;}
.h6_c00135{height:42.666667pt;}
.h7_c00135{height:48.000000pt;}
.h4_c00135{height:53.333333pt;}
.h3_c00135{height:58.666667pt;}
.h5_c00135{height:64.000000pt;}
.h2_c00135{height:69.333333pt;}
.h1_c00135{height:1132.666667pt;}
.h0_c00135{height:1132.800049pt;}
.w1_c00135{width:847.333333pt;}
.w0_c00135{width:847.360027pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:170.533333pt;}
.x93_c00135{left:172.800000pt;}
.xb3_c00135{left:174.133333pt;}
.x9a_c00135{left:175.066667pt;}
.xfb_c00135{left:176.933333pt;}
.xcb_c00135{left:185.200000pt;}
.xd_c00135{left:188.533333pt;}
.xa4_c00135{left:189.600000pt;}
.xfe_c00135{left:192.933333pt;}
.x109_c00135{left:194.266667pt;}
.x111_c00135{left:195.866667pt;}
.x112_c00135{left:196.933333pt;}
.xdb_c00135{left:199.333333pt;}
.xd6_c00135{left:200.266667pt;}
.xf3_c00135{left:201.866667pt;}
.x19_c00135{left:203.466667pt;}
.x21_c00135{left:207.333333pt;}
.xa5_c00135{left:211.733333pt;}
.x9b_c00135{left:213.733333pt;}
.x103_c00135{left:215.466667pt;}
.xde_c00135{left:216.666667pt;}
.x10e_c00135{left:217.600000pt;}
.x32_c00135{left:219.866667pt;}
.x105_c00135{left:221.866667pt;}
.x14_c00135{left:222.933333pt;}
.xe_c00135{left:226.666667pt;}
.xb6_c00135{left:228.000000pt;}
.xad_c00135{left:229.333333pt;}
.xcc_c00135{left:232.533333pt;}
.x94_c00135{left:233.600000pt;}
.x96_c00135{left:235.866667pt;}
.x106_c00135{left:237.200000pt;}
.xff_c00135{left:238.666667pt;}
.x1a_c00135{left:240.533333pt;}
.x3e_c00135{left:242.266667pt;}
.x97_c00135{left:245.200000pt;}
.xdf_c00135{left:246.133333pt;}
.x9c_c00135{left:247.066667pt;}
.x42_c00135{left:252.266667pt;}
.x95_c00135{left:254.133333pt;}
.x29_c00135{left:256.133333pt;}
.xec_c00135{left:259.066667pt;}
.xae_c00135{left:260.000000pt;}
.x9f_c00135{left:262.933333pt;}
.x10f_c00135{left:264.933333pt;}
.x1b_c00135{left:266.133333pt;}
.x100_c00135{left:267.466667pt;}
.x22_c00135{left:268.400000pt;}
.x33_c00135{left:270.133333pt;}
.xb0_c00135{left:271.200000pt;}
.x2a_c00135{left:274.000000pt;}
.xa9_c00135{left:276.400000pt;}
.xb7_c00135{left:277.600000pt;}
.x34_c00135{left:279.466667pt;}
.xf_c00135{left:280.800000pt;}
.x114_c00135{left:282.000000pt;}
.x23_c00135{left:283.066667pt;}
.xa0_c00135{left:284.000000pt;}
.x118_c00135{left:285.066667pt;}
.x3a_c00135{left:287.066667pt;}
.xcd_c00135{left:288.266667pt;}
.x115_c00135{left:290.933333pt;}
.x98_c00135{left:293.200000pt;}
.x1c_c00135{left:296.266667pt;}
.xa6_c00135{left:297.466667pt;}
.xe0_c00135{left:298.666667pt;}
.x101_c00135{left:299.733333pt;}
.xaf_c00135{left:300.933333pt;}
.x113_c00135{left:302.266667pt;}
.x35_c00135{left:303.733333pt;}
.x24_c00135{left:304.800000pt;}
.xfc_c00135{left:305.866667pt;}
.xa1_c00135{left:307.333333pt;}
.x3b_c00135{left:309.200000pt;}
.x3f_c00135{left:311.333333pt;}
.xb8_c00135{left:312.533333pt;}
.x10_c00135{left:314.133333pt;}
.xaa_c00135{left:315.066667pt;}
.xef_c00135{left:320.533333pt;}
.x25_c00135{left:323.733333pt;}
.x119_c00135{left:325.066667pt;}
.xce_c00135{left:327.333333pt;}
.x15_c00135{left:329.200000pt;}
.x36_c00135{left:330.666667pt;}
.x107_c00135{left:331.866667pt;}
.xcf_c00135{left:334.000000pt;}
.xf4_c00135{left:335.066667pt;}
.x26_c00135{left:337.466667pt;}
.x2e_c00135{left:338.666667pt;}
.x2b_c00135{left:340.533333pt;}
.x10a_c00135{left:341.600000pt;}
.xa7_c00135{left:343.600000pt;}
.x2f_c00135{left:345.333333pt;}
.xd0_c00135{left:347.066667pt;}
.xf0_c00135{left:348.000000pt;}
.x108_c00135{left:350.133333pt;}
.x9d_c00135{left:353.600000pt;}
.xfd_c00135{left:354.800000pt;}
.xa2_c00135{left:357.200000pt;}
.x99_c00135{left:358.533333pt;}
.x40_c00135{left:359.600000pt;}
.x1d_c00135{left:360.933333pt;}
.x11_c00135{left:363.066667pt;}
.xd1_c00135{left:365.600000pt;}
.xe1_c00135{left:366.533333pt;}
.x30_c00135{left:367.733333pt;}
.x27_c00135{left:369.733333pt;}
.x110_c00135{left:371.466667pt;}
.xe2_c00135{left:372.933333pt;}
.x3c_c00135{left:374.133333pt;}
.x116_c00135{left:375.066667pt;}
.x37_c00135{left:377.333333pt;}
.x16_c00135{left:379.066667pt;}
.xe5_c00135{left:380.266667pt;}
.x104_c00135{left:381.866667pt;}
.x12_c00135{left:383.200000pt;}
.xa8_c00135{left:384.933333pt;}
.x2_c00135{left:385.866667pt;}
.xe6_c00135{left:386.933333pt;}
.x1e_c00135{left:390.000000pt;}
.xe3_c00135{left:391.866667pt;}
.xe7_c00135{left:393.066667pt;}
.x17_c00135{left:394.800000pt;}
.xab_c00135{left:395.733333pt;}
.x10d_c00135{left:397.200000pt;}
.x10b_c00135{left:399.866667pt;}
.xb9_c00135{left:402.533333pt;}
.x1f_c00135{left:405.733333pt;}
.x38_c00135{left:407.733333pt;}
.xd2_c00135{left:409.200000pt;}
.xe8_c00135{left:410.400000pt;}
.x11a_c00135{left:414.266667pt;}
.xb5_c00135{left:416.133333pt;}
.xb1_c00135{left:417.066667pt;}
.x3d_c00135{left:418.933333pt;}
.x39_c00135{left:421.466667pt;}
.xa3_c00135{left:423.466667pt;}
.x2c_c00135{left:425.066667pt;}
.x9e_c00135{left:429.733333pt;}
.xac_c00135{left:432.533333pt;}
.xe4_c00135{left:434.800000pt;}
.xd3_c00135{left:435.733333pt;}
.x28_c00135{left:436.666667pt;}
.x41_c00135{left:437.600000pt;}
.x31_c00135{left:439.066667pt;}
.xb4_c00135{left:444.000000pt;}
.x20_c00135{left:445.466667pt;}
.x10c_c00135{left:446.533333pt;}
.x18_c00135{left:448.266667pt;}
.x117_c00135{left:451.200000pt;}
.x13_c00135{left:452.666667pt;}
.xb2_c00135{left:453.600000pt;}
.x102_c00135{left:457.466667pt;}
.xc8_c00135{left:458.800000pt;}
.x2d_c00135{left:460.533333pt;}
.xd7_c00135{left:462.000000pt;}
.xed_c00135{left:470.133333pt;}
.xee_c00135{left:491.866667pt;}
.x4f_c00135{left:493.466667pt;}
.x5b_c00135{left:502.800000pt;}
.x3_c00135{left:504.266667pt;}
.x85_c00135{left:505.733333pt;}
.xd8_c00135{left:506.933333pt;}
.x11b_c00135{left:508.133333pt;}
.x12c_c00135{left:509.066667pt;}
.x135_c00135{left:510.133333pt;}
.xf7_c00135{left:517.066667pt;}
.x43_c00135{left:520.000000pt;}
.xba_c00135{left:521.600000pt;}
.xc9_c00135{left:523.066667pt;}
.xe9_c00135{left:525.600000pt;}
.x12e_c00135{left:526.533333pt;}
.x8a_c00135{left:529.066667pt;}
.xc5_c00135{left:530.800000pt;}
.x4_c00135{left:532.133333pt;}
.x86_c00135{left:534.800000pt;}
.x5c_c00135{left:536.400000pt;}
.xc2_c00135{left:537.466667pt;}
.x63_c00135{left:538.800000pt;}
.x134_c00135{left:539.733333pt;}
.xbb_c00135{left:540.800000pt;}
.x50_c00135{left:542.133333pt;}
.x55_c00135{left:543.866667pt;}
.x130_c00135{left:544.800000pt;}
.x70_c00135{left:546.800000pt;}
.x49_c00135{left:548.400000pt;}
.x5_c00135{left:549.466667pt;}
.x62_c00135{left:553.200000pt;}
.x129_c00135{left:554.533333pt;}
.x5d_c00135{left:555.866667pt;}
.x12d_c00135{left:557.466667pt;}
.x80_c00135{left:558.666667pt;}
.x8b_c00135{left:560.133333pt;}
.x44_c00135{left:561.866667pt;}
.x6_c00135{left:563.600000pt;}
.x91_c00135{left:568.266667pt;}
.xf8_c00135{left:569.600000pt;}
.xf1_c00135{left:571.066667pt;}
.x127_c00135{left:572.400000pt;}
.x56_c00135{left:574.000000pt;}
.x64_c00135{left:576.933333pt;}
.x11d_c00135{left:578.933333pt;}
.x7a_c00135{left:580.400000pt;}
.xc3_c00135{left:583.866667pt;}
.xd9_c00135{left:585.866667pt;}
.x45_c00135{left:586.800000pt;}
.x5e_c00135{left:588.800000pt;}
.x123_c00135{left:590.266667pt;}
.x4a_c00135{left:591.333333pt;}
.xea_c00135{left:593.066667pt;}
.x7_c00135{left:595.333333pt;}
.x51_c00135{left:596.800000pt;}
.x92_c00135{left:599.600000pt;}
.xf2_c00135{left:600.533333pt;}
.x81_c00135{left:601.600000pt;}
.x8c_c00135{left:603.600000pt;}
.xbc_c00135{left:606.400000pt;}
.x76_c00135{left:607.600000pt;}
.x7b_c00135{left:611.733333pt;}
.xf9_c00135{left:613.733333pt;}
.x6b_c00135{left:615.066667pt;}
.x8d_c00135{left:616.133333pt;}
.x52_c00135{left:617.866667pt;}
.x120_c00135{left:619.066667pt;}
.x71_c00135{left:620.400000pt;}
.x77_c00135{left:622.000000pt;}
.x5f_c00135{left:624.266667pt;}
.x87_c00135{left:626.933333pt;}
.x11f_c00135{left:628.933333pt;}
.xd4_c00135{left:630.000000pt;}
.x7c_c00135{left:632.533333pt;}
.x4b_c00135{left:634.800000pt;}
.x131_c00135{left:635.733333pt;}
.x57_c00135{left:636.666667pt;}
.x65_c00135{left:639.600000pt;}
.x8_c00135{left:641.733333pt;}
.x82_c00135{left:644.133333pt;}
.x46_c00135{left:646.266667pt;}
.x66_c00135{left:647.600000pt;}
.x6c_c00135{left:650.533333pt;}
.x4c_c00135{left:652.400000pt;}
.xeb_c00135{left:653.333333pt;}
.x58_c00135{left:657.733333pt;}
.x9_c00135{left:659.333333pt;}
.x7d_c00135{left:661.066667pt;}
.xc4_c00135{left:662.266667pt;}
.xc0_c00135{left:664.133333pt;}
.x72_c00135{left:665.733333pt;}
.x88_c00135{left:667.866667pt;}
.x60_c00135{left:670.666667pt;}
.xc6_c00135{left:672.000000pt;}
.x11c_c00135{left:674.133333pt;}
.x6d_c00135{left:676.133333pt;}
.x124_c00135{left:677.066667pt;}
.xfa_c00135{left:680.533333pt;}
.x73_c00135{left:682.400000pt;}
.xa_c00135{left:684.000000pt;}
.xca_c00135{left:685.733333pt;}
.x8e_c00135{left:686.800000pt;}
.x12a_c00135{left:688.133333pt;}
.x83_c00135{left:690.533333pt;}
.x132_c00135{left:692.400000pt;}
.x125_c00135{left:694.933333pt;}
.x47_c00135{left:697.466667pt;}
.xb_c00135{left:699.333333pt;}
.x53_c00135{left:701.066667pt;}
.x7e_c00135{left:704.266667pt;}
.x74_c00135{left:705.466667pt;}
.x59_c00135{left:710.266667pt;}
.xdc_c00135{left:711.333333pt;}
.x61_c00135{left:714.800000pt;}
.x67_c00135{left:716.133333pt;}
.x128_c00135{left:717.200000pt;}
.xc7_c00135{left:720.266667pt;}
.x121_c00135{left:723.733333pt;}
.xf5_c00135{left:725.600000pt;}
.x6e_c00135{left:727.066667pt;}
.x5a_c00135{left:728.133333pt;}
.x8f_c00135{left:729.333333pt;}
.x4d_c00135{left:731.333333pt;}
.x133_c00135{left:732.400000pt;}
.x89_c00135{left:733.466667pt;}
.xc_c00135{left:735.466667pt;}
.xd5_c00135{left:736.933333pt;}
.x68_c00135{left:737.866667pt;}
.x78_c00135{left:741.333333pt;}
.xbf_c00135{left:743.466667pt;}
.x4e_c00135{left:746.000000pt;}
.x69_c00135{left:747.466667pt;}
.x48_c00135{left:748.400000pt;}
.x6f_c00135{left:749.466667pt;}
.x84_c00135{left:751.733333pt;}
.x75_c00135{left:753.733333pt;}
.x126_c00135{left:756.400000pt;}
.x12b_c00135{left:758.933333pt;}
.x54_c00135{left:760.266667pt;}
.x136_c00135{left:761.333333pt;}
.xdd_c00135{left:762.266667pt;}
.x12f_c00135{left:763.333333pt;}
.x79_c00135{left:764.400000pt;}
.x11e_c00135{left:766.400000pt;}
.x6a_c00135{left:769.600000pt;}
.xbd_c00135{left:772.000000pt;}
.xc1_c00135{left:774.266667pt;}
.xf6_c00135{left:777.733333pt;}
.x90_c00135{left:778.933333pt;}
.xda_c00135{left:780.666667pt;}
.xbe_c00135{left:782.266667pt;}
.x7f_c00135{left:783.333333pt;}
.x122_c00135{left:788.400000pt;}
}





/* 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_c00136 {
    display:none;
  }
  .loading-indicator_c00136.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00136 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_c00136 { 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_c00136" -> "#page-container .classname_c00136")
 */
.pf_c00136 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00136 { /* 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_c00136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00136 { /* 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_c00136 { /* 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_c00136 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00136 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00136 {overflow:visible;}
  }
}
.c_c00136 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00136 { /* 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_c00136:after { /* webkit #35443 */
  content: '';
}
.t_c00136:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00136 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 */
}
.__c00136 { /* 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_c00136 { /* info for Javascript */
  display:none;
}
.l_c00136 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00136 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00136 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00136: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_c00136 {
    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_c00136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00136.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_c00136 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00136;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.000000;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;}
.m12a_c00136{transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00136{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00136{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00136{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00136{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m129_c00136{transform:matrix(0.056000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00136{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00136{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00136{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mae_c00136{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m65_c00136{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mba_c00136{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m64_c00136{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00136{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00136{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00136{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m66_c00136{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m95_c00136{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m89_c00136{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00136{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m20_c00136{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m13_c00136{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00136{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m87_c00136{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m14_c00136{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00136{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00136{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.maf_c00136{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00136{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00136{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me7_c00136{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00136{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.me3_c00136{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00136{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mac_c00136{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00136{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00136{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m60_c00136{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m55_c00136{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m102_c00136{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m73_c00136{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m123_c00136{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00136{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m106_c00136{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00136{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m127_c00136{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.mda_c00136{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m49_c00136{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me5_c00136{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00136{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m43_c00136{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00136{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m18_c00136{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00136{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.me4_c00136{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m72_c00136{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m110_c00136{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mee_c00136{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m88_c00136{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00136{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md8_c00136{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00136{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00136{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00136{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00136{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m10_c00136{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m96_c00136{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m44_c00136{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00136{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00136{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00136{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00136{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m29_c00136{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m101_c00136{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m124_c00136{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m119_c00136{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m28_c00136{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mad_c00136{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m122_c00136{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m79_c00136{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mff_c00136{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.md6_c00136{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m70_c00136{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00136{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mab_c00136{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m103_c00136{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m45_c00136{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00136{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00136{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m125_c00136{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00136{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m19_c00136{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me9_c00136{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m111_c00136{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m120_c00136{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00136{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00136{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m7_c00136{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m67_c00136{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00136{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m25_c00136{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00136{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00136{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00136{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m26_c00136{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m91_c00136{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00136{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00136{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m16_c00136{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00136{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m36_c00136{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m24_c00136{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mef_c00136{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m46_c00136{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00136{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00136{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00136{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00136{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m31_c00136{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mea_c00136{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m93_c00136{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5_c00136{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m104_c00136{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m12_c00136{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m58_c00136{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m126_c00136{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00136{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00136{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00136{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00136{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m30_c00136{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00136{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00136{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.md_c00136{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00136{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m48_c00136{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00136{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6_c00136{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m105_c00136{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00136{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00136{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9_c00136{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m27_c00136{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m82_c00136{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mde_c00136{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00136{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me_c00136{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me0_c00136{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00136{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00136{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00136{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00136{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m116_c00136{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m53_c00136{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00136{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m121_c00136{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m71_c00136{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m118_c00136{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m76_c00136{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m8_c00136{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m63_c00136{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md7_c00136{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me2_c00136{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m108_c00136{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m37_c00136{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00136{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m94_c00136{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m59_c00136{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00136{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00136{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m15_c00136{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m42_c00136{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00136{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00136{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00136{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00136{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00136{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m33_c00136{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m41_c00136{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00136{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m80_c00136{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m117_c00136{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00136{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2_c00136{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00136{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00136{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m128_c00136{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00136{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00136{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m23_c00136{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m74_c00136{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00136{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m75_c00136{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md1_c00136{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m17_c00136{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m107_c00136{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00136{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md5_c00136{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m22_c00136{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00136{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00136{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00136{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m47_c00136{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00136{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m54_c00136{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m11_c00136{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.meb_c00136{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m114_c00136{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m90_c00136{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00136{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m78_c00136{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc_c00136{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m92_c00136{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mca_c00136{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00136{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.med_c00136{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00136{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00136{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00136{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me1_c00136{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m112_c00136{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00136{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m115_c00136{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m62_c00136{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m99_c00136{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1_c00136{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m34_c00136{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m21_c00136{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00136{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00136{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m109_c00136{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00136{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00136{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md9_c00136{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m84_c00136{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m97_c00136{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mec_c00136{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m40_c00136{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00136{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me8_c00136{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb_c00136{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m39_c00136{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m51_c00136{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00136{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00136{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00136{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mce_c00136{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4_c00136{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m35_c00136{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00136{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00136{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00136{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00136{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m98_c00136{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m100_c00136{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m61_c00136{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00136{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.maa_c00136{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00136{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m85_c00136{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00136{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m52_c00136{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00136{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00136{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m113_c00136{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00136{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m77_c00136{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00136{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00136{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m86_c00136{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m50_c00136{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00136{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m57_c00136{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m83_c00136{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m32_c00136{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3_c00136{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00136{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00136{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m69_c00136{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.md4_c00136{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m68_c00136{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.me6_c00136{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00136{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m38_c00136{transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);}
.md0_c00136{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00136{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00136{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00136{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m56_c00136{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00136{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00136{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00136{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.m81_c00136{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.md3_c00136{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00136{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mf_c00136{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00136{transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00136{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.md2_c00136{transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);}
.m0_c00136{transform:matrix(0.536250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536250,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls2_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:70.000000px;}
.ls1_c00136{letter-spacing:80.865169px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{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__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13_c00136{word-spacing:-107.865169px;}
.ws4_c00136{word-spacing:-100.000000px;}
.ws11_c00136{word-spacing:-13.947368px;}
.ws0_c00136{word-spacing:-11.227074px;}
.ws16_c00136{word-spacing:-7.926829px;}
.ws1_c00136{word-spacing:-3.289474px;}
.ws17_c00136{word-spacing:0.000000px;}
.wsf_c00136{word-spacing:9.924092px;}
.ws10_c00136{word-spacing:11.470588px;}
.wse_c00136{word-spacing:11.642612px;}
.wsb_c00136{word-spacing:15.168901px;}
.wsc_c00136{word-spacing:19.994638px;}
.ws2_c00136{word-spacing:22.142857px;}
.ws3_c00136{word-spacing:25.714286px;}
.ws15_c00136{word-spacing:26.625000px;}
.ws5_c00136{word-spacing:29.285714px;}
.wsd_c00136{word-spacing:31.254692px;}
.ws14_c00136{word-spacing:32.250000px;}
.ws12_c00136{word-spacing:35.833333px;}
.ws8_c00136{word-spacing:40.000000px;}
.wsa_c00136{word-spacing:44.166667px;}
.ws7_c00136{word-spacing:47.500000px;}
.ws6_c00136{word-spacing:71.944444px;}
.ws9_c00136{word-spacing:162.631579px;}
._6_c00136{margin-left:-80.865169px;}
._1_c00136{margin-left:-70.000000px;}
._0_c00136{width:55.714286px;}
._5_c00136{width:58.254692px;}
._4_c00136{width:65.833333px;}
._7_c00136{width:72.375000px;}
._3_c00136{width:74.166667px;}
._2_c00136{width:90.000000px;}
.fc0_c00136{color:transparent;}
.fs8_c00136{font-size:30.000000px;}
.fs6_c00136{font-size:36.000000px;}
.fs5_c00136{font-size:42.000000px;}
.fs3_c00136{font-size:48.000000px;}
.fs4_c00136{font-size:54.000000px;}
.fs2_c00136{font-size:60.000000px;}
.fs1_c00136{font-size:66.000000px;}
.fs0_c00136{font-size:72.000000px;}
.fs7_c00136{font-size:90.000000px;}
.y0_c00136{bottom:0.000000px;}
.y38_c00136{bottom:88.950000px;}
.y6e_c00136{bottom:99.000000px;}
.y6d_c00136{bottom:107.250000px;}
.y6c_c00136{bottom:164.550000px;}
.y6b_c00136{bottom:186.450000px;}
.y37_c00136{bottom:193.650000px;}
.y6a_c00136{bottom:201.600000px;}
.y36_c00136{bottom:211.650000px;}
.y69_c00136{bottom:215.700000px;}
.y35_c00136{bottom:229.350000px;}
.y68_c00136{bottom:230.400000px;}
.y67_c00136{bottom:244.050000px;}
.y34_c00136{bottom:247.050000px;}
.y33_c00136{bottom:261.150000px;}
.y32_c00136{bottom:264.750000px;}
.y31_c00136{bottom:284.850000px;}
.y66_c00136{bottom:285.300000px;}
.y30_c00136{bottom:299.250000px;}
.y65_c00136{bottom:302.550000px;}
.y2f_c00136{bottom:313.650000px;}
.y64_c00136{bottom:320.550000px;}
.y2e_c00136{bottom:328.050000px;}
.y63_c00136{bottom:338.550000px;}
.y2d_c00136{bottom:342.150000px;}
.y2c_c00136{bottom:349.650000px;}
.y62_c00136{bottom:356.250000px;}
.y2a_c00136{bottom:356.400000px;}
.y2b_c00136{bottom:366.900000px;}
.y29_c00136{bottom:367.950000px;}
.y61_c00136{bottom:373.950000px;}
.y28_c00136{bottom:388.800000px;}
.y60_c00136{bottom:391.650000px;}
.y27_c00136{bottom:406.800000px;}
.y5f_c00136{bottom:409.350000px;}
.y5e_c00136{bottom:427.050000px;}
.y26_c00136{bottom:428.700000px;}
.y5d_c00136{bottom:444.750000px;}
.y25_c00136{bottom:446.700000px;}
.y5c_c00136{bottom:462.750000px;}
.y24_c00136{bottom:464.700000px;}
.y5b_c00136{bottom:480.750000px;}
.y23_c00136{bottom:481.950000px;}
.y5a_c00136{bottom:498.750000px;}
.y22_c00136{bottom:499.650000px;}
.y59_c00136{bottom:516.450000px;}
.y21_c00136{bottom:521.550000px;}
.y58_c00136{bottom:534.150000px;}
.y20_c00136{bottom:539.250000px;}
.y57_c00136{bottom:552.150000px;}
.y56_c00136{bottom:570.450000px;}
.y1f_c00136{bottom:572.700000px;}
.y55_c00136{bottom:587.700000px;}
.y1e_c00136{bottom:595.050000px;}
.y54_c00136{bottom:605.400000px;}
.y1d_c00136{bottom:612.750000px;}
.y53_c00136{bottom:623.400000px;}
.y1c_c00136{bottom:630.750000px;}
.y52_c00136{bottom:641.100000px;}
.y1b_c00136{bottom:648.750000px;}
.y51_c00136{bottom:658.800000px;}
.y1a_c00136{bottom:671.100000px;}
.y50_c00136{bottom:679.350000px;}
.y19_c00136{bottom:688.800000px;}
.y4f_c00136{bottom:693.750000px;}
.y4e_c00136{bottom:708.000000px;}
.y18_c00136{bottom:708.900000px;}
.y17_c00136{bottom:723.600000px;}
.y4d_c00136{bottom:736.800000px;}
.y16_c00136{bottom:737.700000px;}
.y15_c00136{bottom:748.800000px;}
.y4c_c00136{bottom:750.900000px;}
.y4b_c00136{bottom:765.300000px;}
.y14_c00136{bottom:769.950000px;}
.y4a_c00136{bottom:779.700000px;}
.y13_c00136{bottom:787.650000px;}
.y49_c00136{bottom:794.550000px;}
.y12_c00136{bottom:810.000000px;}
.y48_c00136{bottom:814.650000px;}
.y11_c00136{bottom:828.000000px;}
.y47_c00136{bottom:832.650000px;}
.y10_c00136{bottom:845.550000px;}
.y46_c00136{bottom:860.400000px;}
.yf_c00136{bottom:863.250000px;}
.y45_c00136{bottom:876.900000px;}
.ye_c00136{bottom:880.950000px;}
.y44_c00136{bottom:894.600000px;}
.yd_c00136{bottom:903.150000px;}
.y43_c00136{bottom:912.600000px;}
.yc_c00136{bottom:920.850000px;}
.y42_c00136{bottom:930.300000px;}
.y41_c00136{bottom:947.550000px;}
.yb_c00136{bottom:952.650000px;}
.y40_c00136{bottom:965.550000px;}
.ya_c00136{bottom:974.550000px;}
.y3f_c00136{bottom:982.800000px;}
.y9_c00136{bottom:996.900000px;}
.y3e_c00136{bottom:1005.450000px;}
.y8_c00136{bottom:1014.900000px;}
.y3d_c00136{bottom:1022.700000px;}
.y7_c00136{bottom:1032.600000px;}
.y6_c00136{bottom:1050.600000px;}
.y3c_c00136{bottom:1054.500000px;}
.y5_c00136{bottom:1068.300000px;}
.y3b_c00136{bottom:1076.400000px;}
.y4_c00136{bottom:1086.300000px;}
.y3a_c00136{bottom:1098.000000px;}
.y3_c00136{bottom:1104.000000px;}
.y39_c00136{bottom:1116.300000px;}
.y2_c00136{bottom:1121.700000px;}
.y1_c00136{bottom:1144.800000px;}
.ha_c00136{height:30.000000px;}
.h8_c00136{height:36.000000px;}
.h7_c00136{height:42.000000px;}
.h5_c00136{height:48.000000px;}
.h6_c00136{height:54.000000px;}
.h4_c00136{height:60.000000px;}
.h3_c00136{height:66.000000px;}
.h2_c00136{height:72.000000px;}
.h9_c00136{height:90.000000px;}
.h1_c00136{height:1275.750000px;}
.h0_c00136{height:1275.839997px;}
.w1_c00136{width:953.250000px;}
.w0_c00136{width:953.280030px;}
.x0_c00136{left:0.000000px;}
.x98_c00136{left:5.700000px;}
.x3a_c00136{left:83.100000px;}
.x3c_c00136{left:85.350000px;}
.x65_c00136{left:87.000000px;}
.x70_c00136{left:90.300000px;}
.x71_c00136{left:98.250000px;}
.xa_c00136{left:99.450000px;}
.x11_c00136{left:100.650000px;}
.x2d_c00136{left:102.300000px;}
.x4e_c00136{left:103.500000px;}
.x69_c00136{left:106.050000px;}
.x7a_c00136{left:107.700000px;}
.x76_c00136{left:109.050000px;}
.x62_c00136{left:116.250000px;}
.x3_c00136{left:118.050000px;}
.x87_c00136{left:119.100000px;}
.x12_c00136{left:120.750000px;}
.x73_c00136{left:126.000000px;}
.x3d_c00136{left:128.250000px;}
.x2e_c00136{left:130.350000px;}
.x42_c00136{left:131.850000px;}
.x20_c00136{left:132.900000px;}
.x43_c00136{left:139.800000px;}
.x4f_c00136{left:142.350000px;}
.x21_c00136{left:143.400000px;}
.x1a_c00136{left:144.600000px;}
.x3b_c00136{left:147.150000px;}
.x6a_c00136{left:148.500000px;}
.x85_c00136{left:151.050000px;}
.x2f_c00136{left:154.500000px;}
.x93_c00136{left:158.400000px;}
.x59_c00136{left:159.900000px;}
.x4_c00136{left:162.300000px;}
.x50_c00136{left:164.700000px;}
.x3e_c00136{left:166.800000px;}
.x88_c00136{left:168.000000px;}
.x81_c00136{left:169.650000px;}
.x45_c00136{left:171.000000px;}
.x74_c00136{left:173.100000px;}
.x4a_c00136{left:174.150000px;}
.x1b_c00136{left:175.950000px;}
.x22_c00136{left:177.900000px;}
.x82_c00136{left:181.500000px;}
.x7c_c00136{left:183.600000px;}
.x5_c00136{left:185.700000px;}
.xb_c00136{left:187.650000px;}
.x13_c00136{left:189.900000px;}
.x4b_c00136{left:193.200000px;}
.x54_c00136{left:195.450000px;}
.x97_c00136{left:196.950000px;}
.x83_c00136{left:201.300000px;}
.x51_c00136{left:202.500000px;}
.x1c_c00136{left:204.000000px;}
.x30_c00136{left:206.400000px;}
.x5d_c00136{left:207.450000px;}
.x7d_c00136{left:209.100000px;}
.x35_c00136{left:210.300000px;}
.x86_c00136{left:211.950000px;}
.x6f_c00136{left:213.900000px;}
.xc_c00136{left:217.500000px;}
.x94_c00136{left:220.350000px;}
.x31_c00136{left:222.300000px;}
.x44_c00136{left:225.450000px;}
.x8e_c00136{left:227.400000px;}
.x36_c00136{left:230.400000px;}
.x27_c00136{left:231.900000px;}
.x46_c00136{left:232.950000px;}
.x78_c00136{left:236.100000px;}
.x6c_c00136{left:237.900000px;}
.x52_c00136{left:240.000000px;}
.x6_c00136{left:241.200000px;}
.x7e_c00136{left:243.600000px;}
.x55_c00136{left:245.100000px;}
.x8a_c00136{left:249.000000px;}
.x1d_c00136{left:251.100000px;}
.x32_c00136{left:252.600000px;}
.x37_c00136{left:254.100000px;}
.x8b_c00136{left:256.500000px;}
.x14_c00136{left:261.150000px;}
.x6b_c00136{left:263.700000px;}
.x7_c00136{left:265.650000px;}
.x23_c00136{left:271.800000px;}
.x15_c00136{left:273.000000px;}
.x5e_c00136{left:275.550000px;}
.x8c_c00136{left:278.100000px;}
.x66_c00136{left:279.900000px;}
.x3f_c00136{left:282.300000px;}
.xd_c00136{left:283.800000px;}
.x8d_c00136{left:284.850000px;}
.x16_c00136{left:289.200000px;}
.x5f_c00136{left:290.400000px;}
.x38_c00136{left:294.000000px;}
.x40_c00136{left:297.750000px;}
.x56_c00136{left:298.800000px;}
.x1e_c00136{left:300.000000px;}
.x28_c00136{left:303.150000px;}
.x17_c00136{left:304.350000px;}
.x39_c00136{left:306.900000px;}
.x4c_c00136{left:309.450000px;}
.x63_c00136{left:311.100000px;}
.x8_c00136{left:312.150000px;}
.x29_c00136{left:313.200000px;}
.x67_c00136{left:314.850000px;}
.xe_c00136{left:317.250000px;}
.x33_c00136{left:319.200000px;}
.x7f_c00136{left:324.600000px;}
.x60_c00136{left:325.800000px;}
.x24_c00136{left:327.600000px;}
.x80_c00136{left:328.800000px;}
.x1_c00136{left:330.450000px;}
.x34_c00136{left:336.450000px;}
.x75_c00136{left:337.650000px;}
.x25_c00136{left:339.150000px;}
.x5a_c00136{left:343.500000px;}
.x49_c00136{left:345.750000px;}
.x2a_c00136{left:347.700000px;}
.x18_c00136{left:350.850000px;}
.x64_c00136{left:352.200000px;}
.x1f_c00136{left:353.250000px;}
.xf_c00136{left:354.750000px;}
.x6d_c00136{left:356.700000px;}
.x47_c00136{left:358.650000px;}
.x53_c00136{left:360.000000px;}
.x9_c00136{left:361.500000px;}
.x2b_c00136{left:363.900000px;}
.x41_c00136{left:365.850000px;}
.x77_c00136{left:369.600000px;}
.x57_c00136{left:372.300000px;}
.x8f_c00136{left:373.350000px;}
.x5b_c00136{left:374.400000px;}
.x2c_c00136{left:376.200000px;}
.x84_c00136{left:377.550000px;}
.x79_c00136{left:379.800000px;}
.x4d_c00136{left:381.450000px;}
.x90_c00136{left:382.650000px;}
.x68_c00136{left:384.750000px;}
.x48_c00136{left:385.950000px;}
.x19_c00136{left:389.400000px;}
.x72_c00136{left:391.200000px;}
.x7b_c00136{left:393.000000px;}
.x96_c00136{left:400.650000px;}
.x58_c00136{left:402.150000px;}
.x92_c00136{left:403.950000px;}
.x91_c00136{left:405.000000px;}
.x10_c00136{left:406.950000px;}
.x5c_c00136{left:408.300000px;}
.x61_c00136{left:410.850000px;}
.x6e_c00136{left:412.500000px;}
.x89_c00136{left:413.850000px;}
.x26_c00136{left:415.050000px;}
.x95_c00136{left:416.850000px;}
.xa0_c00136{left:439.200000px;}
.xa4_c00136{left:441.300000px;}
.xdb_c00136{left:442.500000px;}
.xff_c00136{left:444.450000px;}
.x131_c00136{left:448.200000px;}
.x9f_c00136{left:456.300000px;}
.x99_c00136{left:457.500000px;}
.xaf_c00136{left:458.700000px;}
.xb5_c00136{left:459.900000px;}
.x103_c00136{left:462.150000px;}
.x10c_c00136{left:463.500000px;}
.x123_c00136{left:465.000000px;}
.x12d_c00136{left:466.350000px;}
.x132_c00136{left:467.700000px;}
.xec_c00136{left:471.300000px;}
.xe7_c00136{left:472.350000px;}
.x104_c00136{left:473.700000px;}
.xaa_c00136{left:476.250000px;}
.x136_c00136{left:478.950000px;}
.xb6_c00136{left:480.000000px;}
.xd9_c00136{left:481.200000px;}
.xbe_c00136{left:482.550000px;}
.xa5_c00136{left:484.500000px;}
.x112_c00136{left:486.900000px;}
.xdc_c00136{left:488.550000px;}
.x115_c00136{left:489.750000px;}
.xd1_c00136{left:491.550000px;}
.x138_c00136{left:492.750000px;}
.xf8_c00136{left:494.100000px;}
.x108_c00136{left:496.200000px;}
.xd2_c00136{left:499.050000px;}
.xa1_c00136{left:500.700000px;}
.xa9_c00136{left:502.050000px;}
.xe8_c00136{left:503.700000px;}
.x126_c00136{left:504.900000px;}
.xa2_c00136{left:507.600000px;}
.xc2_c00136{left:511.950000px;}
.xed_c00136{left:514.500000px;}
.x113_c00136{left:515.700000px;}
.xcc_c00136{left:516.900000px;}
.x129_c00136{left:518.250000px;}
.xf9_c00136{left:519.300000px;}
.x12a_c00136{left:520.350000px;}
.xab_c00136{left:522.750000px;}
.xd3_c00136{left:524.550000px;}
.xa6_c00136{left:526.650000px;}
.x100_c00136{left:528.750000px;}
.xa3_c00136{left:531.000000px;}
.xee_c00136{left:532.500000px;}
.x105_c00136{left:533.850000px;}
.x12e_c00136{left:535.950000px;}
.x11a_c00136{left:538.350000px;}
.xc3_c00136{left:539.700000px;}
.xe2_c00136{left:540.900000px;}
.x12b_c00136{left:542.250000px;}
.xf6_c00136{left:543.300000px;}
.xd4_c00136{left:545.400000px;}
.x133_c00136{left:549.000000px;}
.xe9_c00136{left:550.200000px;}
.xd5_c00136{left:554.700000px;}
.xc4_c00136{left:557.400000px;}
.x10b_c00136{left:558.600000px;}
.xda_c00136{left:559.650000px;}
.x9a_c00136{left:563.400000px;}
.xc5_c00136{left:564.900000px;}
.xac_c00136{left:565.950000px;}
.xb7_c00136{left:568.650000px;}
.xfa_c00136{left:570.750000px;}
.x134_c00136{left:572.400000px;}
.xb0_c00136{left:574.950000px;}
.xf5_c00136{left:577.050000px;}
.x11b_c00136{left:581.250000px;}
.x10f_c00136{left:583.050000px;}
.x9b_c00136{left:584.250000px;}
.xcd_c00136{left:587.100000px;}
.xdf_c00136{left:588.150000px;}
.x127_c00136{left:590.850000px;}
.xfb_c00136{left:593.400000px;}
.x116_c00136{left:595.500000px;}
.x10d_c00136{left:597.450000px;}
.xbf_c00136{left:599.850000px;}
.xad_c00136{left:601.200000px;}
.x11f_c00136{left:604.350000px;}
.xe3_c00136{left:606.150000px;}
.xdd_c00136{left:610.950000px;}
.x109_c00136{left:612.600000px;}
.xe0_c00136{left:615.900000px;}
.xc6_c00136{left:617.400000px;}
.x11d_c00136{left:619.950000px;}
.x10e_c00136{left:622.650000px;}
.xb8_c00136{left:625.500000px;}
.xb1_c00136{left:627.900000px;}
.x114_c00136{left:629.100000px;}
.x9c_c00136{left:630.300000px;}
.x12c_c00136{left:631.950000px;}
.x117_c00136{left:633.600000px;}
.xce_c00136{left:635.400000px;}
.xf1_c00136{left:637.200000px;}
.x101_c00136{left:641.850000px;}
.xfc_c00136{left:644.250000px;}
.x11e_c00136{left:645.450000px;}
.xa7_c00136{left:647.550000px;}
.x9d_c00136{left:648.600000px;}
.x110_c00136{left:649.950000px;}
.xe1_c00136{left:653.400000px;}
.xe4_c00136{left:654.750000px;}
.xc7_c00136{left:656.250000px;}
.xf2_c00136{left:659.100000px;}
.xc8_c00136{left:663.450000px;}
.xfd_c00136{left:665.550000px;}
.xb9_c00136{left:666.900000px;}
.x124_c00136{left:669.300000px;}
.xc0_c00136{left:670.350000px;}
.xd6_c00136{left:671.400000px;}
.xf3_c00136{left:673.500000px;}
.xae_c00136{left:676.500000px;}
.xb2_c00136{left:677.550000px;}
.xc9_c00136{left:678.900000px;}
.x106_c00136{left:681.150000px;}
.x111_c00136{left:683.100000px;}
.x10a_c00136{left:684.600000px;}
.xf4_c00136{left:687.900000px;}
.x12f_c00136{left:692.850000px;}
.xca_c00136{left:699.750000px;}
.x139_c00136{left:700.950000px;}
.x107_c00136{left:702.750000px;}
.x11c_c00136{left:704.850000px;}
.xea_c00136{left:706.050000px;}
.xfe_c00136{left:707.250000px;}
.xd7_c00136{left:708.900000px;}
.xba_c00136{left:711.900000px;}
.x118_c00136{left:713.550000px;}
.xc1_c00136{left:714.600000px;}
.xb3_c00136{left:716.100000px;}
.xde_c00136{left:717.450000px;}
.xbb_c00136{left:721.650000px;}
.x135_c00136{left:724.800000px;}
.x121_c00136{left:726.300000px;}
.xa8_c00136{left:727.800000px;}
.xe5_c00136{left:729.300000px;}
.x119_c00136{left:730.500000px;}
.x128_c00136{left:732.450000px;}
.x125_c00136{left:734.250000px;}
.xf0_c00136{left:735.600000px;}
.xeb_c00136{left:736.950000px;}
.xcb_c00136{left:739.050000px;}
.x122_c00136{left:743.550000px;}
.xb4_c00136{left:748.200000px;}
.x2_c00136{left:750.150000px;}
.xd8_c00136{left:752.850000px;}
.x130_c00136{left:756.600000px;}
.xcf_c00136{left:757.950000px;}
.xef_c00136{left:759.000000px;}
.x120_c00136{left:760.800000px;}
.x9e_c00136{left:762.000000px;}
.xe6_c00136{left:763.500000px;}
.xf7_c00136{left:764.850000px;}
.xbc_c00136{left:765.900000px;}
.xd0_c00136{left:767.250000px;}
.x137_c00136{left:770.250000px;}
.xbd_c00136{left:773.850000px;}
.x102_c00136{left:775.350000px;}
.x13c_c00136{left:938.100000px;}
.x13a_c00136{left:942.900000px;}
.x13b_c00136{left:945.000000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls2_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:62.222222pt;}
.ls1_c00136{letter-spacing:71.880150pt;}
.ws13_c00136{word-spacing:-95.880150pt;}
.ws4_c00136{word-spacing:-88.888889pt;}
.ws11_c00136{word-spacing:-12.397661pt;}
.ws0_c00136{word-spacing:-9.979622pt;}
.ws16_c00136{word-spacing:-7.046070pt;}
.ws1_c00136{word-spacing:-2.923977pt;}
.ws17_c00136{word-spacing:0.000000pt;}
.wsf_c00136{word-spacing:8.821415pt;}
.ws10_c00136{word-spacing:10.196078pt;}
.wse_c00136{word-spacing:10.348988pt;}
.wsb_c00136{word-spacing:13.483467pt;}
.wsc_c00136{word-spacing:17.773012pt;}
.ws2_c00136{word-spacing:19.682540pt;}
.ws3_c00136{word-spacing:22.857143pt;}
.ws15_c00136{word-spacing:23.666667pt;}
.ws5_c00136{word-spacing:26.031746pt;}
.wsd_c00136{word-spacing:27.781948pt;}
.ws14_c00136{word-spacing:28.666667pt;}
.ws12_c00136{word-spacing:31.851852pt;}
.ws8_c00136{word-spacing:35.555556pt;}
.wsa_c00136{word-spacing:39.259259pt;}
.ws7_c00136{word-spacing:42.222222pt;}
.ws6_c00136{word-spacing:63.950617pt;}
.ws9_c00136{word-spacing:144.561404pt;}
._6_c00136{margin-left:-71.880150pt;}
._1_c00136{margin-left:-62.222222pt;}
._0_c00136{width:49.523810pt;}
._5_c00136{width:51.781948pt;}
._4_c00136{width:58.518519pt;}
._7_c00136{width:64.333333pt;}
._3_c00136{width:65.925926pt;}
._2_c00136{width:80.000000pt;}
.fs8_c00136{font-size:26.666667pt;}
.fs6_c00136{font-size:32.000000pt;}
.fs5_c00136{font-size:37.333333pt;}
.fs3_c00136{font-size:42.666667pt;}
.fs4_c00136{font-size:48.000000pt;}
.fs2_c00136{font-size:53.333333pt;}
.fs1_c00136{font-size:58.666667pt;}
.fs0_c00136{font-size:64.000000pt;}
.fs7_c00136{font-size:80.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y38_c00136{bottom:79.066667pt;}
.y6e_c00136{bottom:88.000000pt;}
.y6d_c00136{bottom:95.333333pt;}
.y6c_c00136{bottom:146.266667pt;}
.y6b_c00136{bottom:165.733333pt;}
.y37_c00136{bottom:172.133333pt;}
.y6a_c00136{bottom:179.200000pt;}
.y36_c00136{bottom:188.133333pt;}
.y69_c00136{bottom:191.733333pt;}
.y35_c00136{bottom:203.866667pt;}
.y68_c00136{bottom:204.800000pt;}
.y67_c00136{bottom:216.933333pt;}
.y34_c00136{bottom:219.600000pt;}
.y33_c00136{bottom:232.133333pt;}
.y32_c00136{bottom:235.333333pt;}
.y31_c00136{bottom:253.200000pt;}
.y66_c00136{bottom:253.600000pt;}
.y30_c00136{bottom:266.000000pt;}
.y65_c00136{bottom:268.933333pt;}
.y2f_c00136{bottom:278.800000pt;}
.y64_c00136{bottom:284.933333pt;}
.y2e_c00136{bottom:291.600000pt;}
.y63_c00136{bottom:300.933333pt;}
.y2d_c00136{bottom:304.133333pt;}
.y2c_c00136{bottom:310.800000pt;}
.y62_c00136{bottom:316.666667pt;}
.y2a_c00136{bottom:316.800000pt;}
.y2b_c00136{bottom:326.133333pt;}
.y29_c00136{bottom:327.066667pt;}
.y61_c00136{bottom:332.400000pt;}
.y28_c00136{bottom:345.600000pt;}
.y60_c00136{bottom:348.133333pt;}
.y27_c00136{bottom:361.600000pt;}
.y5f_c00136{bottom:363.866667pt;}
.y5e_c00136{bottom:379.600000pt;}
.y26_c00136{bottom:381.066667pt;}
.y5d_c00136{bottom:395.333333pt;}
.y25_c00136{bottom:397.066667pt;}
.y5c_c00136{bottom:411.333333pt;}
.y24_c00136{bottom:413.066667pt;}
.y5b_c00136{bottom:427.333333pt;}
.y23_c00136{bottom:428.400000pt;}
.y5a_c00136{bottom:443.333333pt;}
.y22_c00136{bottom:444.133333pt;}
.y59_c00136{bottom:459.066667pt;}
.y21_c00136{bottom:463.600000pt;}
.y58_c00136{bottom:474.800000pt;}
.y20_c00136{bottom:479.333333pt;}
.y57_c00136{bottom:490.800000pt;}
.y56_c00136{bottom:507.066667pt;}
.y1f_c00136{bottom:509.066667pt;}
.y55_c00136{bottom:522.400000pt;}
.y1e_c00136{bottom:528.933333pt;}
.y54_c00136{bottom:538.133333pt;}
.y1d_c00136{bottom:544.666667pt;}
.y53_c00136{bottom:554.133333pt;}
.y1c_c00136{bottom:560.666667pt;}
.y52_c00136{bottom:569.866667pt;}
.y1b_c00136{bottom:576.666667pt;}
.y51_c00136{bottom:585.600000pt;}
.y1a_c00136{bottom:596.533333pt;}
.y50_c00136{bottom:603.866667pt;}
.y19_c00136{bottom:612.266667pt;}
.y4f_c00136{bottom:616.666667pt;}
.y4e_c00136{bottom:629.333333pt;}
.y18_c00136{bottom:630.133333pt;}
.y17_c00136{bottom:643.200000pt;}
.y4d_c00136{bottom:654.933333pt;}
.y16_c00136{bottom:655.733333pt;}
.y15_c00136{bottom:665.600000pt;}
.y4c_c00136{bottom:667.466667pt;}
.y4b_c00136{bottom:680.266667pt;}
.y14_c00136{bottom:684.400000pt;}
.y4a_c00136{bottom:693.066667pt;}
.y13_c00136{bottom:700.133333pt;}
.y49_c00136{bottom:706.266667pt;}
.y12_c00136{bottom:720.000000pt;}
.y48_c00136{bottom:724.133333pt;}
.y11_c00136{bottom:736.000000pt;}
.y47_c00136{bottom:740.133333pt;}
.y10_c00136{bottom:751.600000pt;}
.y46_c00136{bottom:764.800000pt;}
.yf_c00136{bottom:767.333333pt;}
.y45_c00136{bottom:779.466667pt;}
.ye_c00136{bottom:783.066667pt;}
.y44_c00136{bottom:795.200000pt;}
.yd_c00136{bottom:802.800000pt;}
.y43_c00136{bottom:811.200000pt;}
.yc_c00136{bottom:818.533333pt;}
.y42_c00136{bottom:826.933333pt;}
.y41_c00136{bottom:842.266667pt;}
.yb_c00136{bottom:846.800000pt;}
.y40_c00136{bottom:858.266667pt;}
.ya_c00136{bottom:866.266667pt;}
.y3f_c00136{bottom:873.600000pt;}
.y9_c00136{bottom:886.133333pt;}
.y3e_c00136{bottom:893.733333pt;}
.y8_c00136{bottom:902.133333pt;}
.y3d_c00136{bottom:909.066667pt;}
.y7_c00136{bottom:917.866667pt;}
.y6_c00136{bottom:933.866667pt;}
.y3c_c00136{bottom:937.333333pt;}
.y5_c00136{bottom:949.600000pt;}
.y3b_c00136{bottom:956.800000pt;}
.y4_c00136{bottom:965.600000pt;}
.y3a_c00136{bottom:976.000000pt;}
.y3_c00136{bottom:981.333333pt;}
.y39_c00136{bottom:992.266667pt;}
.y2_c00136{bottom:997.066667pt;}
.y1_c00136{bottom:1017.600000pt;}
.ha_c00136{height:26.666667pt;}
.h8_c00136{height:32.000000pt;}
.h7_c00136{height:37.333333pt;}
.h5_c00136{height:42.666667pt;}
.h6_c00136{height:48.000000pt;}
.h4_c00136{height:53.333333pt;}
.h3_c00136{height:58.666667pt;}
.h2_c00136{height:64.000000pt;}
.h9_c00136{height:80.000000pt;}
.h1_c00136{height:1134.000000pt;}
.h0_c00136{height:1134.079997pt;}
.w1_c00136{width:847.333333pt;}
.w0_c00136{width:847.360027pt;}
.x0_c00136{left:0.000000pt;}
.x98_c00136{left:5.066667pt;}
.x3a_c00136{left:73.866667pt;}
.x3c_c00136{left:75.866667pt;}
.x65_c00136{left:77.333333pt;}
.x70_c00136{left:80.266667pt;}
.x71_c00136{left:87.333333pt;}
.xa_c00136{left:88.400000pt;}
.x11_c00136{left:89.466667pt;}
.x2d_c00136{left:90.933333pt;}
.x4e_c00136{left:92.000000pt;}
.x69_c00136{left:94.266667pt;}
.x7a_c00136{left:95.733333pt;}
.x76_c00136{left:96.933333pt;}
.x62_c00136{left:103.333333pt;}
.x3_c00136{left:104.933333pt;}
.x87_c00136{left:105.866667pt;}
.x12_c00136{left:107.333333pt;}
.x73_c00136{left:112.000000pt;}
.x3d_c00136{left:114.000000pt;}
.x2e_c00136{left:115.866667pt;}
.x42_c00136{left:117.200000pt;}
.x20_c00136{left:118.133333pt;}
.x43_c00136{left:124.266667pt;}
.x4f_c00136{left:126.533333pt;}
.x21_c00136{left:127.466667pt;}
.x1a_c00136{left:128.533333pt;}
.x3b_c00136{left:130.800000pt;}
.x6a_c00136{left:132.000000pt;}
.x85_c00136{left:134.266667pt;}
.x2f_c00136{left:137.333333pt;}
.x93_c00136{left:140.800000pt;}
.x59_c00136{left:142.133333pt;}
.x4_c00136{left:144.266667pt;}
.x50_c00136{left:146.400000pt;}
.x3e_c00136{left:148.266667pt;}
.x88_c00136{left:149.333333pt;}
.x81_c00136{left:150.800000pt;}
.x45_c00136{left:152.000000pt;}
.x74_c00136{left:153.866667pt;}
.x4a_c00136{left:154.800000pt;}
.x1b_c00136{left:156.400000pt;}
.x22_c00136{left:158.133333pt;}
.x82_c00136{left:161.333333pt;}
.x7c_c00136{left:163.200000pt;}
.x5_c00136{left:165.066667pt;}
.xb_c00136{left:166.800000pt;}
.x13_c00136{left:168.800000pt;}
.x4b_c00136{left:171.733333pt;}
.x54_c00136{left:173.733333pt;}
.x97_c00136{left:175.066667pt;}
.x83_c00136{left:178.933333pt;}
.x51_c00136{left:180.000000pt;}
.x1c_c00136{left:181.333333pt;}
.x30_c00136{left:183.466667pt;}
.x5d_c00136{left:184.400000pt;}
.x7d_c00136{left:185.866667pt;}
.x35_c00136{left:186.933333pt;}
.x86_c00136{left:188.400000pt;}
.x6f_c00136{left:190.133333pt;}
.xc_c00136{left:193.333333pt;}
.x94_c00136{left:195.866667pt;}
.x31_c00136{left:197.600000pt;}
.x44_c00136{left:200.400000pt;}
.x8e_c00136{left:202.133333pt;}
.x36_c00136{left:204.800000pt;}
.x27_c00136{left:206.133333pt;}
.x46_c00136{left:207.066667pt;}
.x78_c00136{left:209.866667pt;}
.x6c_c00136{left:211.466667pt;}
.x52_c00136{left:213.333333pt;}
.x6_c00136{left:214.400000pt;}
.x7e_c00136{left:216.533333pt;}
.x55_c00136{left:217.866667pt;}
.x8a_c00136{left:221.333333pt;}
.x1d_c00136{left:223.200000pt;}
.x32_c00136{left:224.533333pt;}
.x37_c00136{left:225.866667pt;}
.x8b_c00136{left:228.000000pt;}
.x14_c00136{left:232.133333pt;}
.x6b_c00136{left:234.400000pt;}
.x7_c00136{left:236.133333pt;}
.x23_c00136{left:241.600000pt;}
.x15_c00136{left:242.666667pt;}
.x5e_c00136{left:244.933333pt;}
.x8c_c00136{left:247.200000pt;}
.x66_c00136{left:248.800000pt;}
.x3f_c00136{left:250.933333pt;}
.xd_c00136{left:252.266667pt;}
.x8d_c00136{left:253.200000pt;}
.x16_c00136{left:257.066667pt;}
.x5f_c00136{left:258.133333pt;}
.x38_c00136{left:261.333333pt;}
.x40_c00136{left:264.666667pt;}
.x56_c00136{left:265.600000pt;}
.x1e_c00136{left:266.666667pt;}
.x28_c00136{left:269.466667pt;}
.x17_c00136{left:270.533333pt;}
.x39_c00136{left:272.800000pt;}
.x4c_c00136{left:275.066667pt;}
.x63_c00136{left:276.533333pt;}
.x8_c00136{left:277.466667pt;}
.x29_c00136{left:278.400000pt;}
.x67_c00136{left:279.866667pt;}
.xe_c00136{left:282.000000pt;}
.x33_c00136{left:283.733333pt;}
.x7f_c00136{left:288.533333pt;}
.x60_c00136{left:289.600000pt;}
.x24_c00136{left:291.200000pt;}
.x80_c00136{left:292.266667pt;}
.x1_c00136{left:293.733333pt;}
.x34_c00136{left:299.066667pt;}
.x75_c00136{left:300.133333pt;}
.x25_c00136{left:301.466667pt;}
.x5a_c00136{left:305.333333pt;}
.x49_c00136{left:307.333333pt;}
.x2a_c00136{left:309.066667pt;}
.x18_c00136{left:311.866667pt;}
.x64_c00136{left:313.066667pt;}
.x1f_c00136{left:314.000000pt;}
.xf_c00136{left:315.333333pt;}
.x6d_c00136{left:317.066667pt;}
.x47_c00136{left:318.800000pt;}
.x53_c00136{left:320.000000pt;}
.x9_c00136{left:321.333333pt;}
.x2b_c00136{left:323.466667pt;}
.x41_c00136{left:325.200000pt;}
.x77_c00136{left:328.533333pt;}
.x57_c00136{left:330.933333pt;}
.x8f_c00136{left:331.866667pt;}
.x5b_c00136{left:332.800000pt;}
.x2c_c00136{left:334.400000pt;}
.x84_c00136{left:335.600000pt;}
.x79_c00136{left:337.600000pt;}
.x4d_c00136{left:339.066667pt;}
.x90_c00136{left:340.133333pt;}
.x68_c00136{left:342.000000pt;}
.x48_c00136{left:343.066667pt;}
.x19_c00136{left:346.133333pt;}
.x72_c00136{left:347.733333pt;}
.x7b_c00136{left:349.333333pt;}
.x96_c00136{left:356.133333pt;}
.x58_c00136{left:357.466667pt;}
.x92_c00136{left:359.066667pt;}
.x91_c00136{left:360.000000pt;}
.x10_c00136{left:361.733333pt;}
.x5c_c00136{left:362.933333pt;}
.x61_c00136{left:365.200000pt;}
.x6e_c00136{left:366.666667pt;}
.x89_c00136{left:367.866667pt;}
.x26_c00136{left:368.933333pt;}
.x95_c00136{left:370.533333pt;}
.xa0_c00136{left:390.400000pt;}
.xa4_c00136{left:392.266667pt;}
.xdb_c00136{left:393.333333pt;}
.xff_c00136{left:395.066667pt;}
.x131_c00136{left:398.400000pt;}
.x9f_c00136{left:405.600000pt;}
.x99_c00136{left:406.666667pt;}
.xaf_c00136{left:407.733333pt;}
.xb5_c00136{left:408.800000pt;}
.x103_c00136{left:410.800000pt;}
.x10c_c00136{left:412.000000pt;}
.x123_c00136{left:413.333333pt;}
.x12d_c00136{left:414.533333pt;}
.x132_c00136{left:415.733333pt;}
.xec_c00136{left:418.933333pt;}
.xe7_c00136{left:419.866667pt;}
.x104_c00136{left:421.066667pt;}
.xaa_c00136{left:423.333333pt;}
.x136_c00136{left:425.733333pt;}
.xb6_c00136{left:426.666667pt;}
.xd9_c00136{left:427.733333pt;}
.xbe_c00136{left:428.933333pt;}
.xa5_c00136{left:430.666667pt;}
.x112_c00136{left:432.800000pt;}
.xdc_c00136{left:434.266667pt;}
.x115_c00136{left:435.333333pt;}
.xd1_c00136{left:436.933333pt;}
.x138_c00136{left:438.000000pt;}
.xf8_c00136{left:439.200000pt;}
.x108_c00136{left:441.066667pt;}
.xd2_c00136{left:443.600000pt;}
.xa1_c00136{left:445.066667pt;}
.xa9_c00136{left:446.266667pt;}
.xe8_c00136{left:447.733333pt;}
.x126_c00136{left:448.800000pt;}
.xa2_c00136{left:451.200000pt;}
.xc2_c00136{left:455.066667pt;}
.xed_c00136{left:457.333333pt;}
.x113_c00136{left:458.400000pt;}
.xcc_c00136{left:459.466667pt;}
.x129_c00136{left:460.666667pt;}
.xf9_c00136{left:461.600000pt;}
.x12a_c00136{left:462.533333pt;}
.xab_c00136{left:464.666667pt;}
.xd3_c00136{left:466.266667pt;}
.xa6_c00136{left:468.133333pt;}
.x100_c00136{left:470.000000pt;}
.xa3_c00136{left:472.000000pt;}
.xee_c00136{left:473.333333pt;}
.x105_c00136{left:474.533333pt;}
.x12e_c00136{left:476.400000pt;}
.x11a_c00136{left:478.533333pt;}
.xc3_c00136{left:479.733333pt;}
.xe2_c00136{left:480.800000pt;}
.x12b_c00136{left:482.000000pt;}
.xf6_c00136{left:482.933333pt;}
.xd4_c00136{left:484.800000pt;}
.x133_c00136{left:488.000000pt;}
.xe9_c00136{left:489.066667pt;}
.xd5_c00136{left:493.066667pt;}
.xc4_c00136{left:495.466667pt;}
.x10b_c00136{left:496.533333pt;}
.xda_c00136{left:497.466667pt;}
.x9a_c00136{left:500.800000pt;}
.xc5_c00136{left:502.133333pt;}
.xac_c00136{left:503.066667pt;}
.xb7_c00136{left:505.466667pt;}
.xfa_c00136{left:507.333333pt;}
.x134_c00136{left:508.800000pt;}
.xb0_c00136{left:511.066667pt;}
.xf5_c00136{left:512.933333pt;}
.x11b_c00136{left:516.666667pt;}
.x10f_c00136{left:518.266667pt;}
.x9b_c00136{left:519.333333pt;}
.xcd_c00136{left:521.866667pt;}
.xdf_c00136{left:522.800000pt;}
.x127_c00136{left:525.200000pt;}
.xfb_c00136{left:527.466667pt;}
.x116_c00136{left:529.333333pt;}
.x10d_c00136{left:531.066667pt;}
.xbf_c00136{left:533.200000pt;}
.xad_c00136{left:534.400000pt;}
.x11f_c00136{left:537.200000pt;}
.xe3_c00136{left:538.800000pt;}
.xdd_c00136{left:543.066667pt;}
.x109_c00136{left:544.533333pt;}
.xe0_c00136{left:547.466667pt;}
.xc6_c00136{left:548.800000pt;}
.x11d_c00136{left:551.066667pt;}
.x10e_c00136{left:553.466667pt;}
.xb8_c00136{left:556.000000pt;}
.xb1_c00136{left:558.133333pt;}
.x114_c00136{left:559.200000pt;}
.x9c_c00136{left:560.266667pt;}
.x12c_c00136{left:561.733333pt;}
.x117_c00136{left:563.200000pt;}
.xce_c00136{left:564.800000pt;}
.xf1_c00136{left:566.400000pt;}
.x101_c00136{left:570.533333pt;}
.xfc_c00136{left:572.666667pt;}
.x11e_c00136{left:573.733333pt;}
.xa7_c00136{left:575.600000pt;}
.x9d_c00136{left:576.533333pt;}
.x110_c00136{left:577.733333pt;}
.xe1_c00136{left:580.800000pt;}
.xe4_c00136{left:582.000000pt;}
.xc7_c00136{left:583.333333pt;}
.xf2_c00136{left:585.866667pt;}
.xc8_c00136{left:589.733333pt;}
.xfd_c00136{left:591.600000pt;}
.xb9_c00136{left:592.800000pt;}
.x124_c00136{left:594.933333pt;}
.xc0_c00136{left:595.866667pt;}
.xd6_c00136{left:596.800000pt;}
.xf3_c00136{left:598.666667pt;}
.xae_c00136{left:601.333333pt;}
.xb2_c00136{left:602.266667pt;}
.xc9_c00136{left:603.466667pt;}
.x106_c00136{left:605.466667pt;}
.x111_c00136{left:607.200000pt;}
.x10a_c00136{left:608.533333pt;}
.xf4_c00136{left:611.466667pt;}
.x12f_c00136{left:615.866667pt;}
.xca_c00136{left:622.000000pt;}
.x139_c00136{left:623.066667pt;}
.x107_c00136{left:624.666667pt;}
.x11c_c00136{left:626.533333pt;}
.xea_c00136{left:627.600000pt;}
.xfe_c00136{left:628.666667pt;}
.xd7_c00136{left:630.133333pt;}
.xba_c00136{left:632.800000pt;}
.x118_c00136{left:634.266667pt;}
.xc1_c00136{left:635.200000pt;}
.xb3_c00136{left:636.533333pt;}
.xde_c00136{left:637.733333pt;}
.xbb_c00136{left:641.466667pt;}
.x135_c00136{left:644.266667pt;}
.x121_c00136{left:645.600000pt;}
.xa8_c00136{left:646.933333pt;}
.xe5_c00136{left:648.266667pt;}
.x119_c00136{left:649.333333pt;}
.x128_c00136{left:651.066667pt;}
.x125_c00136{left:652.666667pt;}
.xf0_c00136{left:653.866667pt;}
.xeb_c00136{left:655.066667pt;}
.xcb_c00136{left:656.933333pt;}
.x122_c00136{left:660.933333pt;}
.xb4_c00136{left:665.066667pt;}
.x2_c00136{left:666.800000pt;}
.xd8_c00136{left:669.200000pt;}
.x130_c00136{left:672.533333pt;}
.xcf_c00136{left:673.733333pt;}
.xef_c00136{left:674.666667pt;}
.x120_c00136{left:676.266667pt;}
.x9e_c00136{left:677.333333pt;}
.xe6_c00136{left:678.666667pt;}
.xf7_c00136{left:679.866667pt;}
.xbc_c00136{left:680.800000pt;}
.xd0_c00136{left:682.000000pt;}
.x137_c00136{left:684.666667pt;}
.xbd_c00136{left:687.866667pt;}
.x102_c00136{left:689.200000pt;}
.x13c_c00136{left:833.866667pt;}
.x13a_c00136{left:838.133333pt;}
.x13b_c00136{left:840.000000pt;}
}





/* 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_c00137 {
    display:none;
  }
  .loading-indicator_c00137.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00137 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_c00137 { 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_c00137" -> "#page-container .classname_c00137")
 */
.pf_c00137 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00137 { /* 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_c00137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00137 { /* 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_c00137 { /* 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_c00137 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00137 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00137 {overflow:visible;}
  }
}
.c_c00137 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00137 { /* 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_c00137:after { /* webkit #35443 */
  content: '';
}
.t_c00137:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00137 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 */
}
.__c00137 { /* 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_c00137 { /* info for Javascript */
  display:none;
}
.l_c00137 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00137 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00137 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00137: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_c00137 {
    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_c00137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00137.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_c00137 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00137;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.000000;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;}
.m5a_c00137{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00137{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00137{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m122_c00137{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.med_c00137{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00137{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m88_c00137{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00137{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00137{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00137{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00137{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc_c00137{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m86_c00137{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m16_c00137{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00137{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m108_c00137{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00137{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00137{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md9_c00137{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m116_c00137{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.md5_c00137{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00137{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00137{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00137{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00137{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m109_c00137{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00137{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00137{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00137{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.me4_c00137{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00137{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00137{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00137{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mce_c00137{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.me6_c00137{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00137{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m94_c00137{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m56_c00137{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mec_c00137{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00137{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00137{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.md7_c00137{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00137{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00137{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00137{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00137{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m14_c00137{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00137{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00137{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m11_c00137{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m92_c00137{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m46_c00137{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00137{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m13_c00137{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m28_c00137{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m68_c00137{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mab_c00137{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00137{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00137{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mda_c00137{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00137{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m43_c00137{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m37_c00137{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.md6_c00137{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m33_c00137{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00137{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mef_c00137{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m34_c00137{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00137{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mde_c00137{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00137{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md_c00137{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00137{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m52_c00137{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00137{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m19_c00137{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m127_c00137{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00137{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m36_c00137{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m84_c00137{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00137{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m50_c00137{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m67_c00137{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m81_c00137{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00137{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00137{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m51_c00137{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m128_c00137{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00137{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m45_c00137{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.md1_c00137{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00137{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00137{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m15_c00137{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00137{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m125_c00137{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m17_c00137{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00137{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m66_c00137{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00137{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00137{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m91_c00137{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00137{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m30_c00137{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m76_c00137{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6_c00137{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00137{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00137{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m69_c00137{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m44_c00137{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00137{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.me5_c00137{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00137{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00137{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m29_c00137{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00137{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m21_c00137{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m53_c00137{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00137{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m27_c00137{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maa_c00137{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00137{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m85_c00137{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mae_c00137{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.me7_c00137{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00137{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00137{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00137{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00137{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00137{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m18_c00137{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me_c00137{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m87_c00137{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00137{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m12_c00137{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00137{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m75_c00137{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m78_c00137{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m73_c00137{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m70_c00137{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00137{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m93_c00137{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m112_c00137{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m60_c00137{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md2_c00137{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.md3_c00137{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mee_c00137{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m99_c00137{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00137{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m42_c00137{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m20_c00137{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m64_c00137{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m41_c00137{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00137{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m38_c00137{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m126_c00137{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00137{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00137{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00137{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mac_c00137{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mba_c00137{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00137{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m35_c00137{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00137{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00137{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m65_c00137{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m40_c00137{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00137{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00137{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m32_c00137{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m97_c00137{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m55_c00137{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md0_c00137{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md4_c00137{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf_c00137{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m61_c00137{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m119_c00137{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00137{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00137{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb_c00137{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m47_c00137{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m124_c00137{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00137{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00137{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7_c00137{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00137{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00137{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m24_c00137{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00137{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m80_c00137{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00137{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00137{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.maf_c00137{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me9_c00137{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.me1_c00137{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00137{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me3_c00137{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00137{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2_c00137{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00137{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00137{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.me2_c00137{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m98_c00137{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m59_c00137{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m63_c00137{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m114_c00137{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00137{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m74_c00137{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m95_c00137{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00137{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m90_c00137{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mca_c00137{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00137{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00137{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m62_c00137{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m110_c00137{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m82_c00137{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4_c00137{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00137{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m120_c00137{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00137{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m22_c00137{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00137{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m25_c00137{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00137{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00137{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00137{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00137{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m49_c00137{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m54_c00137{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m23_c00137{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00137{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00137{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00137{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00137{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m118_c00137{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00137{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00137{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);}
.mfb_c00137{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m77_c00137{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m72_c00137{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m57_c00137{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c00137{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00137{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00137{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m79_c00137{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me0_c00137{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mad_c00137{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m106_c00137{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m111_c00137{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00137{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m123_c00137{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m71_c00137{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m39_c00137{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m83_c00137{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mff_c00137{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00137{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m31_c00137{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.md8_c00137{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m26_c00137{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00137{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.me8_c00137{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m115_c00137{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00137{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m58_c00137{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00137{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m117_c00137{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma_c00137{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00137{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m113_c00137{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m96_c00137{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00137{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m48_c00137{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.meb_c00137{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m89_c00137{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00137{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m107_c00137{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m9_c00137{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00137{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00137{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m129_c00137{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m105_c00137{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m10_c00137{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m103_c00137{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mea_c00137{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m101_c00137{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00137{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00137{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m121_c00137{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00137{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m104_c00137{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00137{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00137{transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00137{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m102_c00137{transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00137{transform:matrix(0.359000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359000,0.000000,0.000000,0.250000,0,0);}
.m100_c00137{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00137{transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00137{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m1_c00137{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls0_c00137{letter-spacing:0.000000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{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__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c00137{word-spacing:-21.398625px;}
.ws2_c00137{word-spacing:-19.293801px;}
.ws4_c00137{word-spacing:-14.647059px;}
.ws12_c00137{word-spacing:-3.366812px;}
.ws5_c00137{word-spacing:-1.865330px;}
.ws13_c00137{word-spacing:0.000000px;}
.ws1_c00137{word-spacing:1.710526px;}
.ws3_c00137{word-spacing:1.908309px;}
.ws0_c00137{word-spacing:5.243902px;}
.ws10_c00137{word-spacing:5.581395px;}
.wsa_c00137{word-spacing:12.644809px;}
.wsb_c00137{word-spacing:18.000000px;}
.wse_c00137{word-spacing:19.994638px;}
.ws7_c00137{word-spacing:23.211796px;}
.wsc_c00137{word-spacing:25.153285px;}
.ws6_c00137{word-spacing:26.428954px;}
.ws9_c00137{word-spacing:28.072993px;}
.ws8_c00137{word-spacing:32.250000px;}
.wsf_c00137{word-spacing:36.000000px;}
.wsd_c00137{word-spacing:45.463557px;}
._4_c00137{width:45.250000px;}
._0_c00137{width:50.211796px;}
._6_c00137{width:53.428954px;}
._3_c00137{width:63.000000px;}
._2_c00137{width:66.750000px;}
._5_c00137{width:72.375000px;}
._1_c00137{width:104.250000px;}
.fc0_c00137{color:transparent;}
.fs6_c00137{font-size:24.000000px;}
.fs5_c00137{font-size:42.000000px;}
.fs3_c00137{font-size:48.000000px;}
.fs4_c00137{font-size:54.000000px;}
.fs2_c00137{font-size:60.000000px;}
.fs1_c00137{font-size:66.000000px;}
.fs0_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y65_c00137{bottom:167.700000px;}
.y64_c00137{bottom:189.000000px;}
.y60_c00137{bottom:196.500000px;}
.y63_c00137{bottom:207.300000px;}
.y5f_c00137{bottom:210.600000px;}
.y5e_c00137{bottom:224.700000px;}
.y62_c00137{bottom:225.300000px;}
.y5d_c00137{bottom:239.100000px;}
.y61_c00137{bottom:243.000000px;}
.y5c_c00137{bottom:253.500000px;}
.y5b_c00137{bottom:267.450000px;}
.y5a_c00137{bottom:281.850000px;}
.y59_c00137{bottom:295.500000px;}
.y58_c00137{bottom:309.900000px;}
.y57_c00137{bottom:326.250000px;}
.y56_c00137{bottom:338.100000px;}
.y55_c00137{bottom:348.900000px;}
.y45_c00137{bottom:351.900000px;}
.y54_c00137{bottom:363.300000px;}
.y44_c00137{bottom:366.000000px;}
.y53_c00137{bottom:377.700000px;}
.y43_c00137{bottom:380.100000px;}
.y52_c00137{bottom:389.250000px;}
.y42_c00137{bottom:394.200000px;}
.y51_c00137{bottom:405.750000px;}
.y41_c00137{bottom:408.300000px;}
.y40_c00137{bottom:423.000000px;}
.y50_c00137{bottom:423.750000px;}
.y3f_c00137{bottom:436.650000px;}
.y4f_c00137{bottom:446.100000px;}
.y3e_c00137{bottom:450.750000px;}
.y4e_c00137{bottom:464.100000px;}
.y3d_c00137{bottom:465.150000px;}
.y3c_c00137{bottom:479.550000px;}
.y4d_c00137{bottom:481.800000px;}
.y3b_c00137{bottom:499.350000px;}
.y4c_c00137{bottom:499.500000px;}
.y3a_c00137{bottom:507.450000px;}
.y4b_c00137{bottom:517.800000px;}
.y39_c00137{bottom:522.150000px;}
.y4a_c00137{bottom:535.050000px;}
.y38_c00137{bottom:535.500000px;}
.y37_c00137{bottom:549.900000px;}
.y49_c00137{bottom:553.050000px;}
.y36_c00137{bottom:564.000000px;}
.y48_c00137{bottom:570.300000px;}
.y35_c00137{bottom:578.400000px;}
.y47_c00137{bottom:592.500000px;}
.y34_c00137{bottom:592.800000px;}
.y33_c00137{bottom:606.450000px;}
.y46_c00137{bottom:610.500000px;}
.y32_c00137{bottom:620.550000px;}
.y31_c00137{bottom:634.650000px;}
.y29_c00137{bottom:637.200000px;}
.y30_c00137{bottom:649.050000px;}
.y28_c00137{bottom:659.100000px;}
.y2f_c00137{bottom:663.450000px;}
.y27_c00137{bottom:676.800000px;}
.y2e_c00137{bottom:677.550000px;}
.y2d_c00137{bottom:691.950000px;}
.y26_c00137{bottom:694.650000px;}
.y2c_c00137{bottom:706.350000px;}
.y25_c00137{bottom:717.000000px;}
.y24_c00137{bottom:734.700000px;}
.y23_c00137{bottom:756.750000px;}
.y2b_c00137{bottom:770.400000px;}
.y22_c00137{bottom:774.750000px;}
.y2a_c00137{bottom:792.750000px;}
.y21_c00137{bottom:797.100000px;}
.y20_c00137{bottom:814.350000px;}
.y15_c00137{bottom:829.050000px;}
.y1f_c00137{bottom:836.700000px;}
.y14_c00137{bottom:850.800000px;}
.y1e_c00137{bottom:854.700000px;}
.y13_c00137{bottom:868.500000px;}
.y1d_c00137{bottom:876.600000px;}
.y12_c00137{bottom:886.200000px;}
.y69_c00137{bottom:894.600000px;}
.y11_c00137{bottom:903.900000px;}
.y1c_c00137{bottom:912.300000px;}
.y10_c00137{bottom:921.600000px;}
.y68_c00137{bottom:933.150000px;}
.yf_c00137{bottom:939.600000px;}
.y1b_c00137{bottom:955.500000px;}
.ye_c00137{bottom:957.300000px;}
.y67_c00137{bottom:973.050000px;}
.yd_c00137{bottom:978.900000px;}
.y1a_c00137{bottom:995.400000px;}
.yc_c00137{bottom:996.600000px;}
.yb_c00137{bottom:1014.300000px;}
.y19_c00137{bottom:1017.300000px;}
.ya_c00137{bottom:1032.000000px;}
.y18_c00137{bottom:1041.900000px;}
.y9_c00137{bottom:1049.700000px;}
.y17_c00137{bottom:1052.700000px;}
.y66_c00137{bottom:1065.900000px;}
.y8_c00137{bottom:1067.400000px;}
.y4_c00137{bottom:1073.850000px;}
.y7_c00137{bottom:1085.400000px;}
.y3_c00137{bottom:1100.550000px;}
.y6_c00137{bottom:1103.100000px;}
.y5_c00137{bottom:1121.100000px;}
.y2_c00137{bottom:1122.150000px;}
.y16_c00137{bottom:1131.150000px;}
.y1_c00137{bottom:1148.700000px;}
.h8_c00137{height:24.000000px;}
.h7_c00137{height:42.000000px;}
.h5_c00137{height:48.000000px;}
.h6_c00137{height:54.000000px;}
.h4_c00137{height:60.000000px;}
.h3_c00137{height:66.000000px;}
.h2_c00137{height:72.000000px;}
.h0_c00137{height:1271.879975px;}
.h1_c00137{height:1272.000000px;}
.w1_c00137{width:953.250000px;}
.w0_c00137{width:953.280030px;}
.x0_c00137{left:0.000000px;}
.x145_c00137{left:162.150000px;}
.x144_c00137{left:163.500000px;}
.x131_c00137{left:166.050000px;}
.x121_c00137{left:167.100000px;}
.xd2_c00137{left:168.150000px;}
.xc7_c00137{left:169.350000px;}
.xbb_c00137{left:170.400000px;}
.xa4_c00137{left:171.600000px;}
.xa9_c00137{left:172.650000px;}
.x9c_c00137{left:175.050000px;}
.x5f_c00137{left:176.700000px;}
.x3e_c00137{left:179.250000px;}
.x1_c00137{left:182.850000px;}
.xd3_c00137{left:184.050000px;}
.xde_c00137{left:185.550000px;}
.x9e_c00137{left:187.200000px;}
.xcb_c00137{left:188.550000px;}
.x137_c00137{left:189.600000px;}
.x141_c00137{left:190.800000px;}
.xb4_c00137{left:191.850000px;}
.x47_c00137{left:195.450000px;}
.x22_c00137{left:197.700000px;}
.x12_c00137{left:198.750000px;}
.xd1_c00137{left:199.950000px;}
.xbc_c00137{left:202.800000px;}
.xda_c00137{left:204.150000px;}
.x122_c00137{left:205.650000px;}
.xd4_c00137{left:206.700000px;}
.xd6_c00137{left:208.950000px;}
.x9f_c00137{left:210.300000px;}
.xad_c00137{left:212.400000px;}
.xc1_c00137{left:213.450000px;}
.xb0_c00137{left:214.950000px;}
.xc4_c00137{left:216.900000px;}
.x23_c00137{left:218.550000px;}
.x2d_c00137{left:220.350000px;}
.xe2_c00137{left:222.450000px;}
.xc8_c00137{left:224.100000px;}
.x13_c00137{left:228.300000px;}
.x50_c00137{left:229.500000px;}
.x35_c00137{left:231.300000px;}
.x5b_c00137{left:232.650000px;}
.x48_c00137{left:234.300000px;}
.xd7_c00137{left:236.250000px;}
.xa5_c00137{left:238.950000px;}
.xb5_c00137{left:240.150000px;}
.x3a_c00137{left:242.100000px;}
.x60_c00137{left:244.800000px;}
.x13b_c00137{left:246.600000px;}
.x1c_c00137{left:248.850000px;}
.x5e_c00137{left:251.700000px;}
.x36_c00137{left:252.900000px;}
.x51_c00137{left:254.700000px;}
.x32_c00137{left:256.200000px;}
.x2e_c00137{left:258.900000px;}
.xb6_c00137{left:261.450000px;}
.x9b_c00137{left:262.800000px;}
.x57_c00137{left:265.350000px;}
.x125_c00137{left:267.450000px;}
.x61_c00137{left:269.250000px;}
.x24_c00137{left:272.250000px;}
.xcc_c00137{left:273.900000px;}
.x29_c00137{left:276.600000px;}
.x1d_c00137{left:279.150000px;}
.xe6_c00137{left:280.800000px;}
.x123_c00137{left:283.050000px;}
.xc5_c00137{left:284.100000px;}
.xa0_c00137{left:285.900000px;}
.x126_c00137{left:287.250000px;}
.x49_c00137{left:288.300000px;}
.xe9_c00137{left:290.250000px;}
.x13c_c00137{left:291.300000px;}
.xdb_c00137{left:292.800000px;}
.x14_c00137{left:294.150000px;}
.x3b_c00137{left:297.600000px;}
.x142_c00137{left:298.950000px;}
.x3f_c00137{left:300.300000px;}
.xdf_c00137{left:301.800000px;}
.xb7_c00137{left:303.150000px;}
.x15_c00137{left:305.700000px;}
.xb1_c00137{left:307.050000px;}
.x9d_c00137{left:309.300000px;}
.xcd_c00137{left:310.950000px;}
.x5c_c00137{left:314.400000px;}
.x52_c00137{left:315.900000px;}
.x4a_c00137{left:317.850000px;}
.x3c_c00137{left:319.950000px;}
.x16_c00137{left:321.900000px;}
.x1e_c00137{left:323.400000px;}
.x33_c00137{left:325.650000px;}
.xa6_c00137{left:327.450000px;}
.xd8_c00137{left:329.100000px;}
.x44_c00137{left:330.150000px;}
.x138_c00137{left:331.950000px;}
.x53_c00137{left:333.150000px;}
.xd0_c00137{left:335.400000px;}
.xdc_c00137{left:337.050000px;}
.xc9_c00137{left:339.000000px;}
.x37_c00137{left:340.350000px;}
.x1f_c00137{left:342.150000px;}
.xaa_c00137{left:343.350000px;}
.x2f_c00137{left:345.000000px;}
.x34_c00137{left:348.300000px;}
.x25_c00137{left:349.350000px;}
.x13d_c00137{left:350.400000px;}
.xbd_c00137{left:351.900000px;}
.x17_c00137{left:353.550000px;}
.x45_c00137{left:355.350000px;}
.x54_c00137{left:358.650000px;}
.x143_c00137{left:360.150000px;}
.xe3_c00137{left:361.350000px;}
.x18_c00137{left:362.550000px;}
.x38_c00137{left:364.500000px;}
.x20_c00137{left:366.300000px;}
.xa7_c00137{left:368.550000px;}
.xab_c00137{left:371.850000px;}
.xe4_c00137{left:375.750000px;}
.xa1_c00137{left:379.200000px;}
.x3d_c00137{left:380.700000px;}
.x30_c00137{left:381.750000px;}
.xd9_c00137{left:383.400000px;}
.xea_c00137{left:384.600000px;}
.xae_c00137{left:385.950000px;}
.x4b_c00137{left:388.050000px;}
.xc2_c00137{left:389.550000px;}
.xc6_c00137{left:394.350000px;}
.x2_c00137{left:396.000000px;}
.x26_c00137{left:397.650000px;}
.xce_c00137{left:398.700000px;}
.x40_c00137{left:401.100000px;}
.x19_c00137{left:403.650000px;}
.x58_c00137{left:405.300000px;}
.x39_c00137{left:407.700000px;}
.x11a_c00137{left:410.550000px;}
.x27_c00137{left:412.050000px;}
.x2a_c00137{left:414.900000px;}
.xbe_c00137{left:416.700000px;}
.xe0_c00137{left:418.800000px;}
.x55_c00137{left:420.900000px;}
.xe7_c00137{left:422.250000px;}
.x4c_c00137{left:424.350000px;}
.xba_c00137{left:426.000000px;}
.x41_c00137{left:428.100000px;}
.xb2_c00137{left:429.750000px;}
.x1a_c00137{left:432.450000px;}
.xe8_c00137{left:435.600000px;}
.x5d_c00137{left:436.950000px;}
.x4d_c00137{left:438.750000px;}
.x132_c00137{left:439.800000px;}
.x28_c00137{left:441.150000px;}
.xb8_c00137{left:443.550000px;}
.xe1_c00137{left:445.800000px;}
.x46_c00137{left:448.500000px;}
.xb3_c00137{left:449.550000px;}
.x42_c00137{left:451.500000px;}
.xb9_c00137{left:454.350000px;}
.x59_c00137{left:456.000000px;}
.xa2_c00137{left:458.100000px;}
.xc3_c00137{left:459.300000px;}
.x21_c00137{left:460.500000px;}
.x4e_c00137{left:462.450000px;}
.xbf_c00137{left:464.250000px;}
.xaf_c00137{left:466.500000px;}
.x2b_c00137{left:468.600000px;}
.xe5_c00137{left:470.100000px;}
.xa8_c00137{left:471.450000px;}
.x31_c00137{left:472.500000px;}
.xd5_c00137{left:475.350000px;}
.x56_c00137{left:477.750000px;}
.xac_c00137{left:480.900000px;}
.x127_c00137{left:481.950000px;}
.xa3_c00137{left:484.050000px;}
.x2c_c00137{left:486.300000px;}
.xc0_c00137{left:487.650000px;}
.xcf_c00137{left:489.450000px;}
.xca_c00137{left:490.950000px;}
.x43_c00137{left:492.900000px;}
.x5a_c00137{left:495.150000px;}
.x1b_c00137{left:497.550000px;}
.xdd_c00137{left:498.750000px;}
.x4f_c00137{left:501.300000px;}
.x62_c00137{left:504.300000px;}
.x146_c00137{left:516.900000px;}
.x98_c00137{left:518.100000px;}
.x113_c00137{left:520.200000px;}
.x10c_c00137{left:521.700000px;}
.x99_c00137{left:526.350000px;}
.x8c_c00137{left:528.000000px;}
.x128_c00137{left:533.100000px;}
.xa_c00137{left:534.300000px;}
.x108_c00137{left:539.100000px;}
.xef_c00137{left:541.500000px;}
.xfd_c00137{left:543.600000px;}
.x90_c00137{left:544.650000px;}
.x85_c00137{left:546.450000px;}
.x80_c00137{left:547.950000px;}
.x71_c00137{left:549.300000px;}
.x6a_c00137{left:550.800000px;}
.x63_c00137{left:552.300000px;}
.x129_c00137{left:558.000000px;}
.x10f_c00137{left:559.800000px;}
.xf0_c00137{left:561.300000px;}
.x10d_c00137{left:562.800000px;}
.x87_c00137{left:564.450000px;}
.x81_c00137{left:565.500000px;}
.x6b_c00137{left:567.750000px;}
.xeb_c00137{left:568.800000px;}
.x3_c00137{left:570.300000px;}
.x7b_c00137{left:571.500000px;}
.x6_c00137{left:573.150000px;}
.xfe_c00137{left:574.200000px;}
.x14c_c00137{left:575.550000px;}
.x86_c00137{left:577.050000px;}
.x114_c00137{left:580.350000px;}
.x100_c00137{left:582.300000px;}
.x109_c00137{left:584.400000px;}
.x96_c00137{left:586.800000px;}
.x11b_c00137{left:588.750000px;}
.x8d_c00137{left:589.950000px;}
.x7c_c00137{left:592.350000px;}
.x139_c00137{left:594.000000px;}
.x9a_c00137{left:595.500000px;}
.x12a_c00137{left:596.550000px;}
.x72_c00137{left:598.950000px;}
.x147_c00137{left:600.750000px;}
.x12b_c00137{left:603.750000px;}
.x151_c00137{left:604.800000px;}
.x11c_c00137{left:606.000000px;}
.xb_c00137{left:608.400000px;}
.xf3_c00137{left:611.700000px;}
.x13e_c00137{left:612.750000px;}
.x65_c00137{left:614.250000px;}
.x73_c00137{left:615.450000px;}
.x6c_c00137{left:623.550000px;}
.x91_c00137{left:625.350000px;}
.x69_c00137{left:626.700000px;}
.x105_c00137{left:631.950000px;}
.x67_c00137{left:634.650000px;}
.x14e_c00137{left:637.200000px;}
.x13f_c00137{left:638.700000px;}
.x82_c00137{left:640.050000px;}
.x115_c00137{left:642.600000px;}
.x11d_c00137{left:645.600000px;}
.x64_c00137{left:647.400000px;}
.x88_c00137{left:649.050000px;}
.xf1_c00137{left:650.550000px;}
.x10a_c00137{left:652.050000px;}
.x7_c00137{left:656.700000px;}
.x148_c00137{left:658.050000px;}
.x97_c00137{left:660.000000px;}
.x101_c00137{left:661.800000px;}
.x7d_c00137{left:664.800000px;}
.x4_c00137{left:667.200000px;}
.x12c_c00137{left:668.550000px;}
.x8e_c00137{left:669.900000px;}
.x102_c00137{left:671.550000px;}
.xc_c00137{left:674.250000px;}
.x74_c00137{left:675.900000px;}
.xfb_c00137{left:677.400000px;}
.x89_c00137{left:680.400000px;}
.x11e_c00137{left:681.900000px;}
.x66_c00137{left:683.400000px;}
.x10b_c00137{left:685.950000px;}
.x106_c00137{left:687.000000px;}
.x103_c00137{left:688.050000px;}
.x68_c00137{left:689.400000px;}
.x12d_c00137{left:690.600000px;}
.x11f_c00137{left:696.000000px;}
.x10e_c00137{left:697.050000px;}
.x12e_c00137{left:698.100000px;}
.xf2_c00137{left:702.750000px;}
.x77_c00137{left:705.150000px;}
.x14a_c00137{left:706.950000px;}
.x8_c00137{left:708.900000px;}
.x92_c00137{left:710.250000px;}
.x12f_c00137{left:712.500000px;}
.x6d_c00137{left:713.550000px;}
.x5_c00137{left:714.750000px;}
.x7e_c00137{left:717.000000px;}
.xec_c00137{left:719.250000px;}
.x8a_c00137{left:721.050000px;}
.x104_c00137{left:722.250000px;}
.xf4_c00137{left:726.150000px;}
.xf9_c00137{left:728.850000px;}
.x83_c00137{left:730.800000px;}
.x140_c00137{left:732.450000px;}
.x13a_c00137{left:733.650000px;}
.xd_c00137{left:734.700000px;}
.xfc_c00137{left:738.300000px;}
.x8b_c00137{left:740.100000px;}
.x124_c00137{left:741.750000px;}
.xe_c00137{left:744.000000px;}
.xed_c00137{left:745.950000px;}
.x78_c00137{left:747.600000px;}
.x130_c00137{left:748.650000px;}
.x120_c00137{left:749.700000px;}
.x107_c00137{left:751.050000px;}
.x9_c00137{left:752.850000px;}
.x133_c00137{left:755.550000px;}
.xfa_c00137{left:756.600000px;}
.x75_c00137{left:759.300000px;}
.x134_c00137{left:762.450000px;}
.xf5_c00137{left:763.950000px;}
.x7f_c00137{left:766.350000px;}
.x6e_c00137{left:767.850000px;}
.x93_c00137{left:774.000000px;}
.x110_c00137{left:776.850000px;}
.x76_c00137{left:780.150000px;}
.x135_c00137{left:782.250000px;}
.xf_c00137{left:783.900000px;}
.x116_c00137{left:785.100000px;}
.x14b_c00137{left:790.800000px;}
.x94_c00137{left:793.050000px;}
.x14f_c00137{left:794.100000px;}
.xf6_c00137{left:798.150000px;}
.x10_c00137{left:801.900000px;}
.x149_c00137{left:803.100000px;}
.xff_c00137{left:805.050000px;}
.x79_c00137{left:806.250000px;}
.x111_c00137{left:807.450000px;}
.x84_c00137{left:809.700000px;}
.x118_c00137{left:812.850000px;}
.xf7_c00137{left:814.050000px;}
.x6f_c00137{left:815.700000px;}
.xee_c00137{left:816.900000px;}
.x70_c00137{left:827.250000px;}
.x11_c00137{left:834.300000px;}
.x14d_c00137{left:835.500000px;}
.x119_c00137{left:836.550000px;}
.x136_c00137{left:839.850000px;}
.x112_c00137{left:841.650000px;}
.x95_c00137{left:842.700000px;}
.x117_c00137{left:844.200000px;}
.x8f_c00137{left:847.050000px;}
.xf8_c00137{left:849.750000px;}
.x150_c00137{left:850.950000px;}
.x7a_c00137{left:853.050000px;}
.x152_c00137{left:864.300000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws11_c00137{word-spacing:-19.021000pt;}
.ws2_c00137{word-spacing:-17.150045pt;}
.ws4_c00137{word-spacing:-13.019608pt;}
.ws12_c00137{word-spacing:-2.992722pt;}
.ws5_c00137{word-spacing:-1.658071pt;}
.ws13_c00137{word-spacing:0.000000pt;}
.ws1_c00137{word-spacing:1.520468pt;}
.ws3_c00137{word-spacing:1.696275pt;}
.ws0_c00137{word-spacing:4.661247pt;}
.ws10_c00137{word-spacing:4.961240pt;}
.wsa_c00137{word-spacing:11.239830pt;}
.wsb_c00137{word-spacing:16.000000pt;}
.wse_c00137{word-spacing:17.773012pt;}
.ws7_c00137{word-spacing:20.632708pt;}
.wsc_c00137{word-spacing:22.358475pt;}
.ws6_c00137{word-spacing:23.492404pt;}
.ws9_c00137{word-spacing:24.953771pt;}
.ws8_c00137{word-spacing:28.666667pt;}
.wsf_c00137{word-spacing:32.000000pt;}
.wsd_c00137{word-spacing:40.412051pt;}
._4_c00137{width:40.222222pt;}
._0_c00137{width:44.632708pt;}
._6_c00137{width:47.492404pt;}
._3_c00137{width:56.000000pt;}
._2_c00137{width:59.333333pt;}
._5_c00137{width:64.333333pt;}
._1_c00137{width:92.666667pt;}
.fs6_c00137{font-size:21.333333pt;}
.fs5_c00137{font-size:37.333333pt;}
.fs3_c00137{font-size:42.666667pt;}
.fs4_c00137{font-size:48.000000pt;}
.fs2_c00137{font-size:53.333333pt;}
.fs1_c00137{font-size:58.666667pt;}
.fs0_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y65_c00137{bottom:149.066667pt;}
.y64_c00137{bottom:168.000000pt;}
.y60_c00137{bottom:174.666667pt;}
.y63_c00137{bottom:184.266667pt;}
.y5f_c00137{bottom:187.200000pt;}
.y5e_c00137{bottom:199.733333pt;}
.y62_c00137{bottom:200.266667pt;}
.y5d_c00137{bottom:212.533333pt;}
.y61_c00137{bottom:216.000000pt;}
.y5c_c00137{bottom:225.333333pt;}
.y5b_c00137{bottom:237.733333pt;}
.y5a_c00137{bottom:250.533333pt;}
.y59_c00137{bottom:262.666667pt;}
.y58_c00137{bottom:275.466667pt;}
.y57_c00137{bottom:290.000000pt;}
.y56_c00137{bottom:300.533333pt;}
.y55_c00137{bottom:310.133333pt;}
.y45_c00137{bottom:312.800000pt;}
.y54_c00137{bottom:322.933333pt;}
.y44_c00137{bottom:325.333333pt;}
.y53_c00137{bottom:335.733333pt;}
.y43_c00137{bottom:337.866667pt;}
.y52_c00137{bottom:346.000000pt;}
.y42_c00137{bottom:350.400000pt;}
.y51_c00137{bottom:360.666667pt;}
.y41_c00137{bottom:362.933333pt;}
.y40_c00137{bottom:376.000000pt;}
.y50_c00137{bottom:376.666667pt;}
.y3f_c00137{bottom:388.133333pt;}
.y4f_c00137{bottom:396.533333pt;}
.y3e_c00137{bottom:400.666667pt;}
.y4e_c00137{bottom:412.533333pt;}
.y3d_c00137{bottom:413.466667pt;}
.y3c_c00137{bottom:426.266667pt;}
.y4d_c00137{bottom:428.266667pt;}
.y3b_c00137{bottom:443.866667pt;}
.y4c_c00137{bottom:444.000000pt;}
.y3a_c00137{bottom:451.066667pt;}
.y4b_c00137{bottom:460.266667pt;}
.y39_c00137{bottom:464.133333pt;}
.y4a_c00137{bottom:475.600000pt;}
.y38_c00137{bottom:476.000000pt;}
.y37_c00137{bottom:488.800000pt;}
.y49_c00137{bottom:491.600000pt;}
.y36_c00137{bottom:501.333333pt;}
.y48_c00137{bottom:506.933333pt;}
.y35_c00137{bottom:514.133333pt;}
.y47_c00137{bottom:526.666667pt;}
.y34_c00137{bottom:526.933333pt;}
.y33_c00137{bottom:539.066667pt;}
.y46_c00137{bottom:542.666667pt;}
.y32_c00137{bottom:551.600000pt;}
.y31_c00137{bottom:564.133333pt;}
.y29_c00137{bottom:566.400000pt;}
.y30_c00137{bottom:576.933333pt;}
.y28_c00137{bottom:585.866667pt;}
.y2f_c00137{bottom:589.733333pt;}
.y27_c00137{bottom:601.600000pt;}
.y2e_c00137{bottom:602.266667pt;}
.y2d_c00137{bottom:615.066667pt;}
.y26_c00137{bottom:617.466667pt;}
.y2c_c00137{bottom:627.866667pt;}
.y25_c00137{bottom:637.333333pt;}
.y24_c00137{bottom:653.066667pt;}
.y23_c00137{bottom:672.666667pt;}
.y2b_c00137{bottom:684.800000pt;}
.y22_c00137{bottom:688.666667pt;}
.y2a_c00137{bottom:704.666667pt;}
.y21_c00137{bottom:708.533333pt;}
.y20_c00137{bottom:723.866667pt;}
.y15_c00137{bottom:736.933333pt;}
.y1f_c00137{bottom:743.733333pt;}
.y14_c00137{bottom:756.266667pt;}
.y1e_c00137{bottom:759.733333pt;}
.y13_c00137{bottom:772.000000pt;}
.y1d_c00137{bottom:779.200000pt;}
.y12_c00137{bottom:787.733333pt;}
.y69_c00137{bottom:795.200000pt;}
.y11_c00137{bottom:803.466667pt;}
.y1c_c00137{bottom:810.933333pt;}
.y10_c00137{bottom:819.200000pt;}
.y68_c00137{bottom:829.466667pt;}
.yf_c00137{bottom:835.200000pt;}
.y1b_c00137{bottom:849.333333pt;}
.ye_c00137{bottom:850.933333pt;}
.y67_c00137{bottom:864.933333pt;}
.yd_c00137{bottom:870.133333pt;}
.y1a_c00137{bottom:884.800000pt;}
.yc_c00137{bottom:885.866667pt;}
.yb_c00137{bottom:901.600000pt;}
.y19_c00137{bottom:904.266667pt;}
.ya_c00137{bottom:917.333333pt;}
.y18_c00137{bottom:926.133333pt;}
.y9_c00137{bottom:933.066667pt;}
.y17_c00137{bottom:935.733333pt;}
.y66_c00137{bottom:947.466667pt;}
.y8_c00137{bottom:948.800000pt;}
.y4_c00137{bottom:954.533333pt;}
.y7_c00137{bottom:964.800000pt;}
.y3_c00137{bottom:978.266667pt;}
.y6_c00137{bottom:980.533333pt;}
.y5_c00137{bottom:996.533333pt;}
.y2_c00137{bottom:997.466667pt;}
.y16_c00137{bottom:1005.466667pt;}
.y1_c00137{bottom:1021.066667pt;}
.h8_c00137{height:21.333333pt;}
.h7_c00137{height:37.333333pt;}
.h5_c00137{height:42.666667pt;}
.h6_c00137{height:48.000000pt;}
.h4_c00137{height:53.333333pt;}
.h3_c00137{height:58.666667pt;}
.h2_c00137{height:64.000000pt;}
.h0_c00137{height:1130.559977pt;}
.h1_c00137{height:1130.666667pt;}
.w1_c00137{width:847.333333pt;}
.w0_c00137{width:847.360027pt;}
.x0_c00137{left:0.000000pt;}
.x145_c00137{left:144.133333pt;}
.x144_c00137{left:145.333333pt;}
.x131_c00137{left:147.600000pt;}
.x121_c00137{left:148.533333pt;}
.xd2_c00137{left:149.466667pt;}
.xc7_c00137{left:150.533333pt;}
.xbb_c00137{left:151.466667pt;}
.xa4_c00137{left:152.533333pt;}
.xa9_c00137{left:153.466667pt;}
.x9c_c00137{left:155.600000pt;}
.x5f_c00137{left:157.066667pt;}
.x3e_c00137{left:159.333333pt;}
.x1_c00137{left:162.533333pt;}
.xd3_c00137{left:163.600000pt;}
.xde_c00137{left:164.933333pt;}
.x9e_c00137{left:166.400000pt;}
.xcb_c00137{left:167.600000pt;}
.x137_c00137{left:168.533333pt;}
.x141_c00137{left:169.600000pt;}
.xb4_c00137{left:170.533333pt;}
.x47_c00137{left:173.733333pt;}
.x22_c00137{left:175.733333pt;}
.x12_c00137{left:176.666667pt;}
.xd1_c00137{left:177.733333pt;}
.xbc_c00137{left:180.266667pt;}
.xda_c00137{left:181.466667pt;}
.x122_c00137{left:182.800000pt;}
.xd4_c00137{left:183.733333pt;}
.xd6_c00137{left:185.733333pt;}
.x9f_c00137{left:186.933333pt;}
.xad_c00137{left:188.800000pt;}
.xc1_c00137{left:189.733333pt;}
.xb0_c00137{left:191.066667pt;}
.xc4_c00137{left:192.800000pt;}
.x23_c00137{left:194.266667pt;}
.x2d_c00137{left:195.866667pt;}
.xe2_c00137{left:197.733333pt;}
.xc8_c00137{left:199.200000pt;}
.x13_c00137{left:202.933333pt;}
.x50_c00137{left:204.000000pt;}
.x35_c00137{left:205.600000pt;}
.x5b_c00137{left:206.800000pt;}
.x48_c00137{left:208.266667pt;}
.xd7_c00137{left:210.000000pt;}
.xa5_c00137{left:212.400000pt;}
.xb5_c00137{left:213.466667pt;}
.x3a_c00137{left:215.200000pt;}
.x60_c00137{left:217.600000pt;}
.x13b_c00137{left:219.200000pt;}
.x1c_c00137{left:221.200000pt;}
.x5e_c00137{left:223.733333pt;}
.x36_c00137{left:224.800000pt;}
.x51_c00137{left:226.400000pt;}
.x32_c00137{left:227.733333pt;}
.x2e_c00137{left:230.133333pt;}
.xb6_c00137{left:232.400000pt;}
.x9b_c00137{left:233.600000pt;}
.x57_c00137{left:235.866667pt;}
.x125_c00137{left:237.733333pt;}
.x61_c00137{left:239.333333pt;}
.x24_c00137{left:242.000000pt;}
.xcc_c00137{left:243.466667pt;}
.x29_c00137{left:245.866667pt;}
.x1d_c00137{left:248.133333pt;}
.xe6_c00137{left:249.600000pt;}
.x123_c00137{left:251.600000pt;}
.xc5_c00137{left:252.533333pt;}
.xa0_c00137{left:254.133333pt;}
.x126_c00137{left:255.333333pt;}
.x49_c00137{left:256.266667pt;}
.xe9_c00137{left:258.000000pt;}
.x13c_c00137{left:258.933333pt;}
.xdb_c00137{left:260.266667pt;}
.x14_c00137{left:261.466667pt;}
.x3b_c00137{left:264.533333pt;}
.x142_c00137{left:265.733333pt;}
.x3f_c00137{left:266.933333pt;}
.xdf_c00137{left:268.266667pt;}
.xb7_c00137{left:269.466667pt;}
.x15_c00137{left:271.733333pt;}
.xb1_c00137{left:272.933333pt;}
.x9d_c00137{left:274.933333pt;}
.xcd_c00137{left:276.400000pt;}
.x5c_c00137{left:279.466667pt;}
.x52_c00137{left:280.800000pt;}
.x4a_c00137{left:282.533333pt;}
.x3c_c00137{left:284.400000pt;}
.x16_c00137{left:286.133333pt;}
.x1e_c00137{left:287.466667pt;}
.x33_c00137{left:289.466667pt;}
.xa6_c00137{left:291.066667pt;}
.xd8_c00137{left:292.533333pt;}
.x44_c00137{left:293.466667pt;}
.x138_c00137{left:295.066667pt;}
.x53_c00137{left:296.133333pt;}
.xd0_c00137{left:298.133333pt;}
.xdc_c00137{left:299.600000pt;}
.xc9_c00137{left:301.333333pt;}
.x37_c00137{left:302.533333pt;}
.x1f_c00137{left:304.133333pt;}
.xaa_c00137{left:305.200000pt;}
.x2f_c00137{left:306.666667pt;}
.x34_c00137{left:309.600000pt;}
.x25_c00137{left:310.533333pt;}
.x13d_c00137{left:311.466667pt;}
.xbd_c00137{left:312.800000pt;}
.x17_c00137{left:314.266667pt;}
.x45_c00137{left:315.866667pt;}
.x54_c00137{left:318.800000pt;}
.x143_c00137{left:320.133333pt;}
.xe3_c00137{left:321.200000pt;}
.x18_c00137{left:322.266667pt;}
.x38_c00137{left:324.000000pt;}
.x20_c00137{left:325.600000pt;}
.xa7_c00137{left:327.600000pt;}
.xab_c00137{left:330.533333pt;}
.xe4_c00137{left:334.000000pt;}
.xa1_c00137{left:337.066667pt;}
.x3d_c00137{left:338.400000pt;}
.x30_c00137{left:339.333333pt;}
.xd9_c00137{left:340.800000pt;}
.xea_c00137{left:341.866667pt;}
.xae_c00137{left:343.066667pt;}
.x4b_c00137{left:344.933333pt;}
.xc2_c00137{left:346.266667pt;}
.xc6_c00137{left:350.533333pt;}
.x2_c00137{left:352.000000pt;}
.x26_c00137{left:353.466667pt;}
.xce_c00137{left:354.400000pt;}
.x40_c00137{left:356.533333pt;}
.x19_c00137{left:358.800000pt;}
.x58_c00137{left:360.266667pt;}
.x39_c00137{left:362.400000pt;}
.x11a_c00137{left:364.933333pt;}
.x27_c00137{left:366.266667pt;}
.x2a_c00137{left:368.800000pt;}
.xbe_c00137{left:370.400000pt;}
.xe0_c00137{left:372.266667pt;}
.x55_c00137{left:374.133333pt;}
.xe7_c00137{left:375.333333pt;}
.x4c_c00137{left:377.200000pt;}
.xba_c00137{left:378.666667pt;}
.x41_c00137{left:380.533333pt;}
.xb2_c00137{left:382.000000pt;}
.x1a_c00137{left:384.400000pt;}
.xe8_c00137{left:387.200000pt;}
.x5d_c00137{left:388.400000pt;}
.x4d_c00137{left:390.000000pt;}
.x132_c00137{left:390.933333pt;}
.x28_c00137{left:392.133333pt;}
.xb8_c00137{left:394.266667pt;}
.xe1_c00137{left:396.266667pt;}
.x46_c00137{left:398.666667pt;}
.xb3_c00137{left:399.600000pt;}
.x42_c00137{left:401.333333pt;}
.xb9_c00137{left:403.866667pt;}
.x59_c00137{left:405.333333pt;}
.xa2_c00137{left:407.200000pt;}
.xc3_c00137{left:408.266667pt;}
.x21_c00137{left:409.333333pt;}
.x4e_c00137{left:411.066667pt;}
.xbf_c00137{left:412.666667pt;}
.xaf_c00137{left:414.666667pt;}
.x2b_c00137{left:416.533333pt;}
.xe5_c00137{left:417.866667pt;}
.xa8_c00137{left:419.066667pt;}
.x31_c00137{left:420.000000pt;}
.xd5_c00137{left:422.533333pt;}
.x56_c00137{left:424.666667pt;}
.xac_c00137{left:427.466667pt;}
.x127_c00137{left:428.400000pt;}
.xa3_c00137{left:430.266667pt;}
.x2c_c00137{left:432.266667pt;}
.xc0_c00137{left:433.466667pt;}
.xcf_c00137{left:435.066667pt;}
.xca_c00137{left:436.400000pt;}
.x43_c00137{left:438.133333pt;}
.x5a_c00137{left:440.133333pt;}
.x1b_c00137{left:442.266667pt;}
.xdd_c00137{left:443.333333pt;}
.x4f_c00137{left:445.600000pt;}
.x62_c00137{left:448.266667pt;}
.x146_c00137{left:459.466667pt;}
.x98_c00137{left:460.533333pt;}
.x113_c00137{left:462.400000pt;}
.x10c_c00137{left:463.733333pt;}
.x99_c00137{left:467.866667pt;}
.x8c_c00137{left:469.333333pt;}
.x128_c00137{left:473.866667pt;}
.xa_c00137{left:474.933333pt;}
.x108_c00137{left:479.200000pt;}
.xef_c00137{left:481.333333pt;}
.xfd_c00137{left:483.200000pt;}
.x90_c00137{left:484.133333pt;}
.x85_c00137{left:485.733333pt;}
.x80_c00137{left:487.066667pt;}
.x71_c00137{left:488.266667pt;}
.x6a_c00137{left:489.600000pt;}
.x63_c00137{left:490.933333pt;}
.x129_c00137{left:496.000000pt;}
.x10f_c00137{left:497.600000pt;}
.xf0_c00137{left:498.933333pt;}
.x10d_c00137{left:500.266667pt;}
.x87_c00137{left:501.733333pt;}
.x81_c00137{left:502.666667pt;}
.x6b_c00137{left:504.666667pt;}
.xeb_c00137{left:505.600000pt;}
.x3_c00137{left:506.933333pt;}
.x7b_c00137{left:508.000000pt;}
.x6_c00137{left:509.466667pt;}
.xfe_c00137{left:510.400000pt;}
.x14c_c00137{left:511.600000pt;}
.x86_c00137{left:512.933333pt;}
.x114_c00137{left:515.866667pt;}
.x100_c00137{left:517.600000pt;}
.x109_c00137{left:519.466667pt;}
.x96_c00137{left:521.600000pt;}
.x11b_c00137{left:523.333333pt;}
.x8d_c00137{left:524.400000pt;}
.x7c_c00137{left:526.533333pt;}
.x139_c00137{left:528.000000pt;}
.x9a_c00137{left:529.333333pt;}
.x12a_c00137{left:530.266667pt;}
.x72_c00137{left:532.400000pt;}
.x147_c00137{left:534.000000pt;}
.x12b_c00137{left:536.666667pt;}
.x151_c00137{left:537.600000pt;}
.x11c_c00137{left:538.666667pt;}
.xb_c00137{left:540.800000pt;}
.xf3_c00137{left:543.733333pt;}
.x13e_c00137{left:544.666667pt;}
.x65_c00137{left:546.000000pt;}
.x73_c00137{left:547.066667pt;}
.x6c_c00137{left:554.266667pt;}
.x91_c00137{left:555.866667pt;}
.x69_c00137{left:557.066667pt;}
.x105_c00137{left:561.733333pt;}
.x67_c00137{left:564.133333pt;}
.x14e_c00137{left:566.400000pt;}
.x13f_c00137{left:567.733333pt;}
.x82_c00137{left:568.933333pt;}
.x115_c00137{left:571.200000pt;}
.x11d_c00137{left:573.866667pt;}
.x64_c00137{left:575.466667pt;}
.x88_c00137{left:576.933333pt;}
.xf1_c00137{left:578.266667pt;}
.x10a_c00137{left:579.600000pt;}
.x7_c00137{left:583.733333pt;}
.x148_c00137{left:584.933333pt;}
.x97_c00137{left:586.666667pt;}
.x101_c00137{left:588.266667pt;}
.x7d_c00137{left:590.933333pt;}
.x4_c00137{left:593.066667pt;}
.x12c_c00137{left:594.266667pt;}
.x8e_c00137{left:595.466667pt;}
.x102_c00137{left:596.933333pt;}
.xc_c00137{left:599.333333pt;}
.x74_c00137{left:600.800000pt;}
.xfb_c00137{left:602.133333pt;}
.x89_c00137{left:604.800000pt;}
.x11e_c00137{left:606.133333pt;}
.x66_c00137{left:607.466667pt;}
.x10b_c00137{left:609.733333pt;}
.x106_c00137{left:610.666667pt;}
.x103_c00137{left:611.600000pt;}
.x68_c00137{left:612.800000pt;}
.x12d_c00137{left:613.866667pt;}
.x11f_c00137{left:618.666667pt;}
.x10e_c00137{left:619.600000pt;}
.x12e_c00137{left:620.533333pt;}
.xf2_c00137{left:624.666667pt;}
.x77_c00137{left:626.800000pt;}
.x14a_c00137{left:628.400000pt;}
.x8_c00137{left:630.133333pt;}
.x92_c00137{left:631.333333pt;}
.x12f_c00137{left:633.333333pt;}
.x6d_c00137{left:634.266667pt;}
.x5_c00137{left:635.333333pt;}
.x7e_c00137{left:637.333333pt;}
.xec_c00137{left:639.333333pt;}
.x8a_c00137{left:640.933333pt;}
.x104_c00137{left:642.000000pt;}
.xf4_c00137{left:645.466667pt;}
.xf9_c00137{left:647.866667pt;}
.x83_c00137{left:649.600000pt;}
.x140_c00137{left:651.066667pt;}
.x13a_c00137{left:652.133333pt;}
.xd_c00137{left:653.066667pt;}
.xfc_c00137{left:656.266667pt;}
.x8b_c00137{left:657.866667pt;}
.x124_c00137{left:659.333333pt;}
.xe_c00137{left:661.333333pt;}
.xed_c00137{left:663.066667pt;}
.x78_c00137{left:664.533333pt;}
.x130_c00137{left:665.466667pt;}
.x120_c00137{left:666.400000pt;}
.x107_c00137{left:667.600000pt;}
.x9_c00137{left:669.200000pt;}
.x133_c00137{left:671.600000pt;}
.xfa_c00137{left:672.533333pt;}
.x75_c00137{left:674.933333pt;}
.x134_c00137{left:677.733333pt;}
.xf5_c00137{left:679.066667pt;}
.x7f_c00137{left:681.200000pt;}
.x6e_c00137{left:682.533333pt;}
.x93_c00137{left:688.000000pt;}
.x110_c00137{left:690.533333pt;}
.x76_c00137{left:693.466667pt;}
.x135_c00137{left:695.333333pt;}
.xf_c00137{left:696.800000pt;}
.x116_c00137{left:697.866667pt;}
.x14b_c00137{left:702.933333pt;}
.x94_c00137{left:704.933333pt;}
.x14f_c00137{left:705.866667pt;}
.xf6_c00137{left:709.466667pt;}
.x10_c00137{left:712.800000pt;}
.x149_c00137{left:713.866667pt;}
.xff_c00137{left:715.600000pt;}
.x79_c00137{left:716.666667pt;}
.x111_c00137{left:717.733333pt;}
.x84_c00137{left:719.733333pt;}
.x118_c00137{left:722.533333pt;}
.xf7_c00137{left:723.600000pt;}
.x6f_c00137{left:725.066667pt;}
.xee_c00137{left:726.133333pt;}
.x70_c00137{left:735.333333pt;}
.x11_c00137{left:741.600000pt;}
.x14d_c00137{left:742.666667pt;}
.x119_c00137{left:743.600000pt;}
.x136_c00137{left:746.533333pt;}
.x112_c00137{left:748.133333pt;}
.x95_c00137{left:749.066667pt;}
.x117_c00137{left:750.400000pt;}
.x8f_c00137{left:752.933333pt;}
.xf8_c00137{left:755.333333pt;}
.x150_c00137{left:756.400000pt;}
.x7a_c00137{left:758.266667pt;}
.x152_c00137{left:768.266667pt;}
}





/* 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_c00138 {
    display:none;
  }
  .loading-indicator_c00138.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00138 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_c00138 { 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_c00138" -> "#page-container .classname_c00138")
 */
.pf_c00138 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00138 { /* 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_c00138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00138 { /* 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_c00138 { /* 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_c00138 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00138 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00138 {overflow:visible;}
  }
}
.c_c00138 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00138 { /* 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_c00138:after { /* webkit #35443 */
  content: '';
}
.t_c00138:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00138 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 */
}
.__c00138 { /* 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_c00138 { /* info for Javascript */
  display:none;
}
.l_c00138 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00138 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00138 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00138: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_c00138 {
    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_c00138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00138.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_c00138 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00138;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.000000;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;}
.m3_c00138{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00138{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00138{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.meb_c00138{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00138{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00138{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.me_c00138{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00138{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m40_c00138{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00138{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m35_c00138{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00138{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m97_c00138{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m48_c00138{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00138{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m72_c00138{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mef_c00138{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00138{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00138{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.me7_c00138{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00138{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.me4_c00138{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m98_c00138{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00138{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me3_c00138{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00138{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m70_c00138{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mba_c00138{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mad_c00138{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m63_c00138{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.md1_c00138{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m55_c00138{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00138{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m5_c00138{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00138{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00138{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me8_c00138{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.md8_c00138{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00138{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m101_c00138{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00138{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00138{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00138{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00138{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00138{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00138{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m11_c00138{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00138{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00138{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m18_c00138{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00138{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00138{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00138{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.ma_c00138{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00138{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m62_c00138{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m17_c00138{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m71_c00138{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m59_c00138{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00138{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m104_c00138{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00138{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00138{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m38_c00138{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mde_c00138{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m106_c00138{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m33_c00138{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md0_c00138{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00138{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m19_c00138{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m77_c00138{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00138{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mca_c00138{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m83_c00138{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m52_c00138{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00138{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00138{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mda_c00138{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00138{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m61_c00138{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m7_c00138{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md5_c00138{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m51_c00138{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00138{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m25_c00138{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb_c00138{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m95_c00138{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00138{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m75_c00138{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m12_c00138{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00138{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.md6_c00138{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md2_c00138{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4_c00138{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00138{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m47_c00138{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m16_c00138{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00138{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf_c00138{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9_c00138{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00138{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00138{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00138{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m54_c00138{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m32_c00138{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m8_c00138{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m66_c00138{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md4_c00138{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mea_c00138{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m109_c00138{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00138{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00138{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00138{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m29_c00138{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m10_c00138{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m100_c00138{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m64_c00138{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00138{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m76_c00138{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00138{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m96_c00138{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m90_c00138{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m36_c00138{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m14_c00138{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00138{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00138{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00138{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00138{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00138{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me9_c00138{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.md_c00138{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.md9_c00138{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m86_c00138{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00138{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00138{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m27_c00138{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00138{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00138{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m74_c00138{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m37_c00138{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00138{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m39_c00138{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m21_c00138{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m82_c00138{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00138{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m28_c00138{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00138{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00138{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00138{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00138{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00138{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc_c00138{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00138{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m103_c00138{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m41_c00138{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m93_c00138{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m23_c00138{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md7_c00138{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00138{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00138{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m107_c00138{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m91_c00138{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00138{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m31_c00138{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00138{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m15_c00138{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00138{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m13_c00138{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00138{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00138{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00138{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00138{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m22_c00138{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00138{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mae_c00138{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00138{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m53_c00138{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00138{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00138{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00138{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00138{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m20_c00138{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m108_c00138{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m56_c00138{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m92_c00138{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m65_c00138{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00138{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00138{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m34_c00138{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.maa_c00138{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m24_c00138{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m30_c00138{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.me2_c00138{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00138{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m60_c00138{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00138{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me6_c00138{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00138{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00138{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00138{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00138{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00138{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m79_c00138{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00138{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00138{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00138{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m26_c00138{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m99_c00138{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me5_c00138{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m58_c00138{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00138{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00138{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.maf_c00138{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mee_c00138{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m105_c00138{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00138{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00138{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00138{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m80_c00138{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mce_c00138{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m84_c00138{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m94_c00138{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md3_c00138{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m102_c00138{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m43_c00138{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00138{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.mab_c00138{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m46_c00138{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00138{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00138{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m50_c00138{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mac_c00138{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m85_c00138{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00138{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m87_c00138{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.mff_c00138{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.me1_c00138{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00138{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00138{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m88_c00138{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m57_c00138{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00138{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00138{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m68_c00138{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00138{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m69_c00138{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m73_c00138{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m45_c00138{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m42_c00138{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m78_c00138{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c00138{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m89_c00138{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00138{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00138{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00138{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me0_c00138{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.mec_c00138{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m81_c00138{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00138{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m49_c00138{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00138{transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00138{transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);}
.med_c00138{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00138{transform:matrix(0.486000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486000,0.000000,0.000000,0.250000,0,0);}
.m67_c00138{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00138{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00138{transform:matrix(0.744000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744000,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls0_c00138{letter-spacing:0.000000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{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__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00138{word-spacing:-14.199203px;}
.ws3_c00138{word-spacing:-13.421053px;}
.ws2_c00138{word-spacing:-7.660714px;}
.ws0_c00138{word-spacing:-5.832669px;}
.ws5_c00138{word-spacing:-4.845839px;}
.ws4_c00138{word-spacing:-3.735849px;}
.wsd_c00138{word-spacing:0.000000px;}
.wsb_c00138{word-spacing:10.637002px;}
.ws8_c00138{word-spacing:19.994638px;}
.wsa_c00138{word-spacing:23.211796px;}
.ws6_c00138{word-spacing:25.714286px;}
.ws9_c00138{word-spacing:32.250000px;}
.ws7_c00138{word-spacing:152.000000px;}
.wsc_c00138{word-spacing:158.053254px;}
._4_c00138{width:46.994638px;}
._0_c00138{width:53.428954px;}
._2_c00138{width:63.000000px;}
._1_c00138{width:66.750000px;}
._5_c00138{width:72.375000px;}
._3_c00138{width:76.125000px;}
.fc0_c00138{color:transparent;}
.fs5_c00138{font-size:24.000000px;}
.fs8_c00138{font-size:30.000000px;}
.fs9_c00138{font-size:36.000000px;}
.fs1_c00138{font-size:48.000000px;}
.fs6_c00138{font-size:54.000000px;}
.fs3_c00138{font-size:60.000000px;}
.fs4_c00138{font-size:66.000000px;}
.fs2_c00138{font-size:72.000000px;}
.fs0_c00138{font-size:84.000000px;}
.fs7_c00138{font-size:90.000000px;}
.y0_c00138{bottom:0.000000px;}
.y64_c00138{bottom:10.500000px;}
.y31_c00138{bottom:58.350000px;}
.y63_c00138{bottom:164.550000px;}
.y30_c00138{bottom:185.100000px;}
.y62_c00138{bottom:186.300000px;}
.y61_c00138{bottom:204.000000px;}
.y2f_c00138{bottom:210.600000px;}
.y60_c00138{bottom:222.000000px;}
.y5f_c00138{bottom:240.000000px;}
.y2e_c00138{bottom:245.550000px;}
.y5e_c00138{bottom:257.700000px;}
.y5d_c00138{bottom:275.400000px;}
.y2d_c00138{bottom:281.550000px;}
.y2c_c00138{bottom:303.450000px;}
.y5c_c00138{bottom:306.300000px;}
.y5b_c00138{bottom:320.700000px;}
.y2b_c00138{bottom:324.000000px;}
.y5a_c00138{bottom:335.100000px;}
.y2a_c00138{bottom:344.250000px;}
.y59_c00138{bottom:349.500000px;}
.y29_c00138{bottom:362.550000px;}
.y58_c00138{bottom:363.900000px;}
.y57_c00138{bottom:378.300000px;}
.y28_c00138{bottom:384.450000px;}
.y56_c00138{bottom:392.700000px;}
.y27_c00138{bottom:402.450000px;}
.y55_c00138{bottom:405.300000px;}
.y54_c00138{bottom:419.400000px;}
.y26_c00138{bottom:420.150000px;}
.y53_c00138{bottom:437.100000px;}
.y25_c00138{bottom:442.800000px;}
.y52_c00138{bottom:455.700000px;}
.y24_c00138{bottom:460.500000px;}
.y51_c00138{bottom:473.700000px;}
.y23_c00138{bottom:492.150000px;}
.y50_c00138{bottom:504.600000px;}
.y22_c00138{bottom:514.200000px;}
.y4f_c00138{bottom:522.300000px;}
.y21_c00138{bottom:534.300000px;}
.y4e_c00138{bottom:540.000000px;}
.y20_c00138{bottom:554.700000px;}
.y4d_c00138{bottom:567.300000px;}
.y1f_c00138{bottom:572.700000px;}
.y4c_c00138{bottom:586.050000px;}
.y1e_c00138{bottom:595.050000px;}
.y1d_c00138{bottom:613.050000px;}
.y4b_c00138{bottom:625.650000px;}
.y1c_c00138{bottom:631.050000px;}
.y4a_c00138{bottom:652.350000px;}
.y1b_c00138{bottom:652.650000px;}
.y49_c00138{bottom:670.350000px;}
.y1a_c00138{bottom:670.650000px;}
.y48_c00138{bottom:700.200000px;}
.y19_c00138{bottom:701.700000px;}
.y18_c00138{bottom:717.450000px;}
.y47_c00138{bottom:722.550000px;}
.y17_c00138{bottom:723.900000px;}
.y46_c00138{bottom:740.550000px;}
.y16_c00138{bottom:741.900000px;}
.y45_c00138{bottom:762.150000px;}
.y15_c00138{bottom:762.450000px;}
.y14_c00138{bottom:783.000000px;}
.y44_c00138{bottom:784.050000px;}
.y13_c00138{bottom:801.300000px;}
.y43_c00138{bottom:806.400000px;}
.y12_c00138{bottom:822.900000px;}
.y42_c00138{bottom:824.100000px;}
.y11_c00138{bottom:840.900000px;}
.y41_c00138{bottom:842.100000px;}
.y10_c00138{bottom:858.900000px;}
.y40_c00138{bottom:866.550000px;}
.yf_c00138{bottom:881.250000px;}
.y3f_c00138{bottom:885.900000px;}
.ye_c00138{bottom:898.950000px;}
.y3e_c00138{bottom:903.900000px;}
.y3d_c00138{bottom:925.800000px;}
.yd_c00138{bottom:930.300000px;}
.y3c_c00138{bottom:943.500000px;}
.yc_c00138{bottom:952.500000px;}
.y3b_c00138{bottom:961.500000px;}
.yb_c00138{bottom:970.200000px;}
.y3a_c00138{bottom:983.850000px;}
.ya_c00138{bottom:988.500000px;}
.y39_c00138{bottom:1001.550000px;}
.y9_c00138{bottom:1006.200000px;}
.y8_c00138{bottom:1024.200000px;}
.y38_c00138{bottom:1028.250000px;}
.y37_c00138{bottom:1033.950000px;}
.y36_c00138{bottom:1041.150000px;}
.y7_c00138{bottom:1042.200000px;}
.y35_c00138{bottom:1046.850000px;}
.y34_c00138{bottom:1057.350000px;}
.y6_c00138{bottom:1060.200000px;}
.y5_c00138{bottom:1077.900000px;}
.y33_c00138{bottom:1090.500000px;}
.y4_c00138{bottom:1096.200000px;}
.y32_c00138{bottom:1113.150000px;}
.y3_c00138{bottom:1113.900000px;}
.y1_c00138{bottom:1140.150000px;}
.y2_c00138{bottom:1272.900000px;}
.h7_c00138{height:24.000000px;}
.ha_c00138{height:30.000000px;}
.hb_c00138{height:36.000000px;}
.h3_c00138{height:48.000000px;}
.h8_c00138{height:54.000000px;}
.h5_c00138{height:60.000000px;}
.h6_c00138{height:66.000000px;}
.h4_c00138{height:72.000000px;}
.h2_c00138{height:84.000000px;}
.h9_c00138{height:90.000000px;}
.h0_c00138{height:1273.320007px;}
.h1_c00138{height:1273.500000px;}
.w1_c00138{width:953.250000px;}
.w0_c00138{width:953.280030px;}
.x0_c00138{left:0.000000px;}
.x4_c00138{left:3.600000px;}
.x42_c00138{left:82.800000px;}
.x60_c00138{left:84.300000px;}
.x46_c00138{left:85.650000px;}
.x70_c00138{left:86.700000px;}
.x3d_c00138{left:101.100000px;}
.x16_c00138{left:102.900000px;}
.x5_c00138{left:104.100000px;}
.x49_c00138{left:119.850000px;}
.x65_c00138{left:120.900000px;}
.x6_c00138{left:122.850000px;}
.x47_c00138{left:126.300000px;}
.x62_c00138{left:128.250000px;}
.x4a_c00138{left:129.900000px;}
.x17_c00138{left:133.200000px;}
.x34_c00138{left:138.150000px;}
.x75_c00138{left:139.350000px;}
.x23_c00138{left:140.400000px;}
.x43_c00138{left:141.900000px;}
.x4b_c00138{left:144.300000px;}
.x2a_c00138{left:147.450000px;}
.x1b_c00138{left:148.650000px;}
.x7c_c00138{left:152.250000px;}
.xe_c00138{left:155.100000px;}
.x7_c00138{left:156.300000px;}
.x2e_c00138{left:160.800000px;}
.x63_c00138{left:164.250000px;}
.x53_c00138{left:168.900000px;}
.x3e_c00138{left:170.850000px;}
.x24_c00138{left:172.500000px;}
.x8_c00138{left:174.000000px;}
.x35_c00138{left:176.700000px;}
.x2f_c00138{left:177.750000px;}
.x61_c00138{left:179.400000px;}
.x59_c00138{left:184.050000px;}
.x54_c00138{left:186.600000px;}
.x77_c00138{left:190.350000px;}
.x1c_c00138{left:191.550000px;}
.x6d_c00138{left:193.050000px;}
.x36_c00138{left:194.700000px;}
.x5f_c00138{left:195.900000px;}
.x5a_c00138{left:201.300000px;}
.x44_c00138{left:202.350000px;}
.x3f_c00138{left:204.750000px;}
.x80_c00138{left:207.600000px;}
.x1d_c00138{left:208.800000px;}
.x6e_c00138{left:210.000000px;}
.x45_c00138{left:212.400000px;}
.xf_c00138{left:216.300000px;}
.x55_c00138{left:218.700000px;}
.x4f_c00138{left:220.200000px;}
.x18_c00138{left:221.400000px;}
.x4c_c00138{left:222.450000px;}
.x76_c00138{left:223.650000px;}
.x10_c00138{left:225.300000px;}
.x48_c00138{left:227.700000px;}
.x1e_c00138{left:229.650000px;}
.x7a_c00138{left:231.000000px;}
.x25_c00138{left:238.050000px;}
.x30_c00138{left:240.750000px;}
.x37_c00138{left:244.050000px;}
.x9_c00138{left:246.300000px;}
.x67_c00138{left:249.000000px;}
.x7b_c00138{left:252.300000px;}
.x38_c00138{left:253.350000px;}
.x26_c00138{left:255.750000px;}
.x5b_c00138{left:257.850000px;}
.x6c_c00138{left:261.150000px;}
.x78_c00138{left:262.350000px;}
.x4d_c00138{left:263.850000px;}
.xa_c00138{left:265.350000px;}
.x40_c00138{left:267.750000px;}
.x50_c00138{left:269.850000px;}
.x7d_c00138{left:271.500000px;}
.x1f_c00138{left:273.150000px;}
.x19_c00138{left:276.150000px;}
.x72_c00138{left:277.650000px;}
.x56_c00138{left:278.850000px;}
.x11_c00138{left:284.400000px;}
.x39_c00138{left:286.800000px;}
.x31_c00138{left:291.150000px;}
.x20_c00138{left:292.200000px;}
.x12_c00138{left:295.950000px;}
.x57_c00138{left:299.400000px;}
.x73_c00138{left:301.050000px;}
.xb_c00138{left:304.650000px;}
.x68_c00138{left:306.600000px;}
.x7e_c00138{left:308.400000px;}
.x5c_c00138{left:314.400000px;}
.x6f_c00138{left:315.900000px;}
.x2b_c00138{left:318.450000px;}
.x66_c00138{left:321.150000px;}
.x27_c00138{left:325.950000px;}
.x1_c00138{left:327.900000px;}
.x13_c00138{left:333.000000px;}
.x3a_c00138{left:336.150000px;}
.xc_c00138{left:337.350000px;}
.x4e_c00138{left:339.750000px;}
.x51_c00138{left:342.150000px;}
.x32_c00138{left:345.150000px;}
.x41_c00138{left:346.200000px;}
.x1a_c00138{left:347.400000px;}
.x79_c00138{left:348.450000px;}
.x14_c00138{left:350.700000px;}
.x28_c00138{left:351.900000px;}
.x21_c00138{left:354.600000px;}
.x7f_c00138{left:358.050000px;}
.x69_c00138{left:359.850000px;}
.x2c_c00138{left:367.800000px;}
.x5d_c00138{left:368.850000px;}
.x3b_c00138{left:372.450000px;}
.xd_c00138{left:373.650000px;}
.x33_c00138{left:376.050000px;}
.x71_c00138{left:377.550000px;}
.x29_c00138{left:379.650000px;}
.x52_c00138{left:381.000000px;}
.x22_c00138{left:382.350000px;}
.x74_c00138{left:384.150000px;}
.x2d_c00138{left:386.100000px;}
.x64_c00138{left:388.200000px;}
.x6a_c00138{left:391.200000px;}
.x3c_c00138{left:393.750000px;}
.x58_c00138{left:401.550000px;}
.x15_c00138{left:403.200000px;}
.x5e_c00138{left:406.350000px;}
.x6b_c00138{left:409.950000px;}
.xea_c00138{left:441.000000px;}
.x88_c00138{left:442.500000px;}
.xd2_c00138{left:443.550000px;}
.xa6_c00138{left:459.150000px;}
.x96_c00138{left:460.200000px;}
.xef_c00138{left:469.650000px;}
.xc3_c00138{left:477.000000px;}
.x9a_c00138{left:478.500000px;}
.x85_c00138{left:479.550000px;}
.x81_c00138{left:480.900000px;}
.xae_c00138{left:482.250000px;}
.xa7_c00138{left:483.600000px;}
.xe1_c00138{left:484.950000px;}
.x89_c00138{left:489.000000px;}
.x107_c00138{left:490.350000px;}
.xc7_c00138{left:491.700000px;}
.x93_c00138{left:494.400000px;}
.x10c_c00138{left:495.750000px;}
.xb3_c00138{left:498.300000px;}
.x103_c00138{left:500.700000px;}
.xcb_c00138{left:501.750000px;}
.xbf_c00138{left:503.250000px;}
.xfb_c00138{left:505.950000px;}
.x82_c00138{left:508.650000px;}
.x86_c00138{left:510.450000px;}
.xf3_c00138{left:511.800000px;}
.xe4_c00138{left:513.450000px;}
.xc4_c00138{left:516.900000px;}
.xf1_c00138{left:518.250000px;}
.x104_c00138{left:519.450000px;}
.xb5_c00138{left:521.400000px;}
.x87_c00138{left:522.750000px;}
.x97_c00138{left:523.950000px;}
.x94_c00138{left:525.000000px;}
.x92_c00138{left:526.500000px;}
.x9f_c00138{left:528.750000px;}
.xc8_c00138{left:530.700000px;}
.xe8_c00138{left:532.800000px;}
.x95_c00138{left:534.750000px;}
.xa2_c00138{left:535.950000px;}
.xf9_c00138{left:537.450000px;}
.x9b_c00138{left:538.950000px;}
.xa0_c00138{left:540.300000px;}
.x100_c00138{left:542.400000px;}
.xd4_c00138{left:543.900000px;}
.xe2_c00138{left:546.900000px;}
.xc0_c00138{left:548.250000px;}
.x10d_c00138{left:551.250000px;}
.xc1_c00138{left:552.600000px;}
.xaf_c00138{left:554.550000px;}
.x8a_c00138{left:557.100000px;}
.x98_c00138{left:560.700000px;}
.x101_c00138{left:562.200000px;}
.xde_c00138{left:563.550000px;}
.xf4_c00138{left:565.050000px;}
.xd5_c00138{left:567.000000px;}
.xcc_c00138{left:568.350000px;}
.xa1_c00138{left:569.850000px;}
.x83_c00138{left:572.400000px;}
.xa8_c00138{left:574.350000px;}
.xda_c00138{left:575.700000px;}
.xc9_c00138{left:577.500000px;}
.x105_c00138{left:581.400000px;}
.x84_c00138{left:585.000000px;}
.x99_c00138{left:588.000000px;}
.xd0_c00138{left:590.100000px;}
.xb6_c00138{left:591.600000px;}
.xb4_c00138{left:593.250000px;}
.xcd_c00138{left:594.300000px;}
.xca_c00138{left:596.550000px;}
.xf5_c00138{left:599.550000px;}
.xa9_c00138{left:602.100000px;}
.xe5_c00138{left:603.750000px;}
.x9c_c00138{left:607.050000px;}
.xbb_c00138{left:609.450000px;}
.xd6_c00138{left:611.250000px;}
.xa3_c00138{left:612.600000px;}
.xf6_c00138{left:613.950000px;}
.xdb_c00138{left:616.800000px;}
.xb0_c00138{left:619.200000px;}
.xf7_c00138{left:620.850000px;}
.xdf_c00138{left:621.900000px;}
.xaa_c00138{left:624.450000px;}
.x8b_c00138{left:627.000000px;}
.xeb_c00138{left:628.950000px;}
.xe3_c00138{left:630.450000px;}
.xbc_c00138{left:632.100000px;}
.xd3_c00138{left:633.300000px;}
.xf2_c00138{left:635.550000px;}
.xb1_c00138{left:637.500000px;}
.xc2_c00138{left:640.500000px;}
.xce_c00138{left:641.850000px;}
.xe6_c00138{left:643.050000px;}
.xb7_c00138{left:647.700000px;}
.xe0_c00138{left:649.200000px;}
.xab_c00138{left:655.050000px;}
.xfc_c00138{left:657.150000px;}
.xd1_c00138{left:658.200000px;}
.x10a_c00138{left:661.800000px;}
.xd7_c00138{left:664.650000px;}
.x8c_c00138{left:668.400000px;}
.xfd_c00138{left:671.250000px;}
.x106_c00138{left:673.200000px;}
.xd8_c00138{left:674.700000px;}
.xcf_c00138{left:677.850000px;}
.xc5_c00138{left:679.650000px;}
.x108_c00138{left:682.500000px;}
.xfa_c00138{left:686.250000px;}
.x9d_c00138{left:690.600000px;}
.x8d_c00138{left:692.550000px;}
.x102_c00138{left:693.600000px;}
.x2_c00138{left:696.150000px;}
.xa4_c00138{left:698.700000px;}
.xb8_c00138{left:700.350000px;}
.xdc_c00138{left:701.700000px;}
.xd9_c00138{left:703.200000px;}
.xec_c00138{left:705.450000px;}
.x9e_c00138{left:706.500000px;}
.xac_c00138{left:708.000000px;}
.xb9_c00138{left:710.850000px;}
.x10e_c00138{left:712.650000px;}
.xb2_c00138{left:715.650000px;}
.xfe_c00138{left:717.750000px;}
.xdd_c00138{left:718.950000px;}
.xf8_c00138{left:722.400000px;}
.x109_c00138{left:724.650000px;}
.xe7_c00138{left:725.850000px;}
.xad_c00138{left:727.800000px;}
.xbd_c00138{left:729.300000px;}
.xa5_c00138{left:733.950000px;}
.xed_c00138{left:735.750000px;}
.xff_c00138{left:737.550000px;}
.xba_c00138{left:739.650000px;}
.x8e_c00138{left:742.950000px;}
.xc6_c00138{left:745.500000px;}
.xbe_c00138{left:748.050000px;}
.x8f_c00138{left:750.150000px;}
.x10b_c00138{left:752.850000px;}
.x3_c00138{left:755.550000px;}
.xee_c00138{left:758.400000px;}
.xe9_c00138{left:762.900000px;}
.xf0_c00138{left:764.700000px;}
.x90_c00138{left:766.350000px;}
.x91_c00138{left:774.600000px;}
.x10f_c00138{left:822.600000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws1_c00138{word-spacing:-12.621514pt;}
.ws3_c00138{word-spacing:-11.929825pt;}
.ws2_c00138{word-spacing:-6.809524pt;}
.ws0_c00138{word-spacing:-5.184595pt;}
.ws5_c00138{word-spacing:-4.307412pt;}
.ws4_c00138{word-spacing:-3.320755pt;}
.wsd_c00138{word-spacing:0.000000pt;}
.wsb_c00138{word-spacing:9.455113pt;}
.ws8_c00138{word-spacing:17.773012pt;}
.wsa_c00138{word-spacing:20.632708pt;}
.ws6_c00138{word-spacing:22.857143pt;}
.ws9_c00138{word-spacing:28.666667pt;}
.ws7_c00138{word-spacing:135.111111pt;}
.wsc_c00138{word-spacing:140.491782pt;}
._4_c00138{width:41.773012pt;}
._0_c00138{width:47.492404pt;}
._2_c00138{width:56.000000pt;}
._1_c00138{width:59.333333pt;}
._5_c00138{width:64.333333pt;}
._3_c00138{width:67.666667pt;}
.fs5_c00138{font-size:21.333333pt;}
.fs8_c00138{font-size:26.666667pt;}
.fs9_c00138{font-size:32.000000pt;}
.fs1_c00138{font-size:42.666667pt;}
.fs6_c00138{font-size:48.000000pt;}
.fs3_c00138{font-size:53.333333pt;}
.fs4_c00138{font-size:58.666667pt;}
.fs2_c00138{font-size:64.000000pt;}
.fs0_c00138{font-size:74.666667pt;}
.fs7_c00138{font-size:80.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y64_c00138{bottom:9.333333pt;}
.y31_c00138{bottom:51.866667pt;}
.y63_c00138{bottom:146.266667pt;}
.y30_c00138{bottom:164.533333pt;}
.y62_c00138{bottom:165.600000pt;}
.y61_c00138{bottom:181.333333pt;}
.y2f_c00138{bottom:187.200000pt;}
.y60_c00138{bottom:197.333333pt;}
.y5f_c00138{bottom:213.333333pt;}
.y2e_c00138{bottom:218.266667pt;}
.y5e_c00138{bottom:229.066667pt;}
.y5d_c00138{bottom:244.800000pt;}
.y2d_c00138{bottom:250.266667pt;}
.y2c_c00138{bottom:269.733333pt;}
.y5c_c00138{bottom:272.266667pt;}
.y5b_c00138{bottom:285.066667pt;}
.y2b_c00138{bottom:288.000000pt;}
.y5a_c00138{bottom:297.866667pt;}
.y2a_c00138{bottom:306.000000pt;}
.y59_c00138{bottom:310.666667pt;}
.y29_c00138{bottom:322.266667pt;}
.y58_c00138{bottom:323.466667pt;}
.y57_c00138{bottom:336.266667pt;}
.y28_c00138{bottom:341.733333pt;}
.y56_c00138{bottom:349.066667pt;}
.y27_c00138{bottom:357.733333pt;}
.y55_c00138{bottom:360.266667pt;}
.y54_c00138{bottom:372.800000pt;}
.y26_c00138{bottom:373.466667pt;}
.y53_c00138{bottom:388.533333pt;}
.y25_c00138{bottom:393.600000pt;}
.y52_c00138{bottom:405.066667pt;}
.y24_c00138{bottom:409.333333pt;}
.y51_c00138{bottom:421.066667pt;}
.y23_c00138{bottom:437.466667pt;}
.y50_c00138{bottom:448.533333pt;}
.y22_c00138{bottom:457.066667pt;}
.y4f_c00138{bottom:464.266667pt;}
.y21_c00138{bottom:474.933333pt;}
.y4e_c00138{bottom:480.000000pt;}
.y20_c00138{bottom:493.066667pt;}
.y4d_c00138{bottom:504.266667pt;}
.y1f_c00138{bottom:509.066667pt;}
.y4c_c00138{bottom:520.933333pt;}
.y1e_c00138{bottom:528.933333pt;}
.y1d_c00138{bottom:544.933333pt;}
.y4b_c00138{bottom:556.133333pt;}
.y1c_c00138{bottom:560.933333pt;}
.y4a_c00138{bottom:579.866667pt;}
.y1b_c00138{bottom:580.133333pt;}
.y49_c00138{bottom:595.866667pt;}
.y1a_c00138{bottom:596.133333pt;}
.y48_c00138{bottom:622.400000pt;}
.y19_c00138{bottom:623.733333pt;}
.y18_c00138{bottom:637.733333pt;}
.y47_c00138{bottom:642.266667pt;}
.y17_c00138{bottom:643.466667pt;}
.y46_c00138{bottom:658.266667pt;}
.y16_c00138{bottom:659.466667pt;}
.y45_c00138{bottom:677.466667pt;}
.y15_c00138{bottom:677.733333pt;}
.y14_c00138{bottom:696.000000pt;}
.y44_c00138{bottom:696.933333pt;}
.y13_c00138{bottom:712.266667pt;}
.y43_c00138{bottom:716.800000pt;}
.y12_c00138{bottom:731.466667pt;}
.y42_c00138{bottom:732.533333pt;}
.y11_c00138{bottom:747.466667pt;}
.y41_c00138{bottom:748.533333pt;}
.y10_c00138{bottom:763.466667pt;}
.y40_c00138{bottom:770.266667pt;}
.yf_c00138{bottom:783.333333pt;}
.y3f_c00138{bottom:787.466667pt;}
.ye_c00138{bottom:799.066667pt;}
.y3e_c00138{bottom:803.466667pt;}
.y3d_c00138{bottom:822.933333pt;}
.yd_c00138{bottom:826.933333pt;}
.y3c_c00138{bottom:838.666667pt;}
.yc_c00138{bottom:846.666667pt;}
.y3b_c00138{bottom:854.666667pt;}
.yb_c00138{bottom:862.400000pt;}
.y3a_c00138{bottom:874.533333pt;}
.ya_c00138{bottom:878.666667pt;}
.y39_c00138{bottom:890.266667pt;}
.y9_c00138{bottom:894.400000pt;}
.y8_c00138{bottom:910.400000pt;}
.y38_c00138{bottom:914.000000pt;}
.y37_c00138{bottom:919.066667pt;}
.y36_c00138{bottom:925.466667pt;}
.y7_c00138{bottom:926.400000pt;}
.y35_c00138{bottom:930.533333pt;}
.y34_c00138{bottom:939.866667pt;}
.y6_c00138{bottom:942.400000pt;}
.y5_c00138{bottom:958.133333pt;}
.y33_c00138{bottom:969.333333pt;}
.y4_c00138{bottom:974.400000pt;}
.y32_c00138{bottom:989.466667pt;}
.y3_c00138{bottom:990.133333pt;}
.y1_c00138{bottom:1013.466667pt;}
.y2_c00138{bottom:1131.466667pt;}
.h7_c00138{height:21.333333pt;}
.ha_c00138{height:26.666667pt;}
.hb_c00138{height:32.000000pt;}
.h3_c00138{height:42.666667pt;}
.h8_c00138{height:48.000000pt;}
.h5_c00138{height:53.333333pt;}
.h6_c00138{height:58.666667pt;}
.h4_c00138{height:64.000000pt;}
.h2_c00138{height:74.666667pt;}
.h9_c00138{height:80.000000pt;}
.h0_c00138{height:1131.840007pt;}
.h1_c00138{height:1132.000000pt;}
.w1_c00138{width:847.333333pt;}
.w0_c00138{width:847.360027pt;}
.x0_c00138{left:0.000000pt;}
.x4_c00138{left:3.200000pt;}
.x42_c00138{left:73.600000pt;}
.x60_c00138{left:74.933333pt;}
.x46_c00138{left:76.133333pt;}
.x70_c00138{left:77.066667pt;}
.x3d_c00138{left:89.866667pt;}
.x16_c00138{left:91.466667pt;}
.x5_c00138{left:92.533333pt;}
.x49_c00138{left:106.533333pt;}
.x65_c00138{left:107.466667pt;}
.x6_c00138{left:109.200000pt;}
.x47_c00138{left:112.266667pt;}
.x62_c00138{left:114.000000pt;}
.x4a_c00138{left:115.466667pt;}
.x17_c00138{left:118.400000pt;}
.x34_c00138{left:122.800000pt;}
.x75_c00138{left:123.866667pt;}
.x23_c00138{left:124.800000pt;}
.x43_c00138{left:126.133333pt;}
.x4b_c00138{left:128.266667pt;}
.x2a_c00138{left:131.066667pt;}
.x1b_c00138{left:132.133333pt;}
.x7c_c00138{left:135.333333pt;}
.xe_c00138{left:137.866667pt;}
.x7_c00138{left:138.933333pt;}
.x2e_c00138{left:142.933333pt;}
.x63_c00138{left:146.000000pt;}
.x53_c00138{left:150.133333pt;}
.x3e_c00138{left:151.866667pt;}
.x24_c00138{left:153.333333pt;}
.x8_c00138{left:154.666667pt;}
.x35_c00138{left:157.066667pt;}
.x2f_c00138{left:158.000000pt;}
.x61_c00138{left:159.466667pt;}
.x59_c00138{left:163.600000pt;}
.x54_c00138{left:165.866667pt;}
.x77_c00138{left:169.200000pt;}
.x1c_c00138{left:170.266667pt;}
.x6d_c00138{left:171.600000pt;}
.x36_c00138{left:173.066667pt;}
.x5f_c00138{left:174.133333pt;}
.x5a_c00138{left:178.933333pt;}
.x44_c00138{left:179.866667pt;}
.x3f_c00138{left:182.000000pt;}
.x80_c00138{left:184.533333pt;}
.x1d_c00138{left:185.600000pt;}
.x6e_c00138{left:186.666667pt;}
.x45_c00138{left:188.800000pt;}
.xf_c00138{left:192.266667pt;}
.x55_c00138{left:194.400000pt;}
.x4f_c00138{left:195.733333pt;}
.x18_c00138{left:196.800000pt;}
.x4c_c00138{left:197.733333pt;}
.x76_c00138{left:198.800000pt;}
.x10_c00138{left:200.266667pt;}
.x48_c00138{left:202.400000pt;}
.x1e_c00138{left:204.133333pt;}
.x7a_c00138{left:205.333333pt;}
.x25_c00138{left:211.600000pt;}
.x30_c00138{left:214.000000pt;}
.x37_c00138{left:216.933333pt;}
.x9_c00138{left:218.933333pt;}
.x67_c00138{left:221.333333pt;}
.x7b_c00138{left:224.266667pt;}
.x38_c00138{left:225.200000pt;}
.x26_c00138{left:227.333333pt;}
.x5b_c00138{left:229.200000pt;}
.x6c_c00138{left:232.133333pt;}
.x78_c00138{left:233.200000pt;}
.x4d_c00138{left:234.533333pt;}
.xa_c00138{left:235.866667pt;}
.x40_c00138{left:238.000000pt;}
.x50_c00138{left:239.866667pt;}
.x7d_c00138{left:241.333333pt;}
.x1f_c00138{left:242.800000pt;}
.x19_c00138{left:245.466667pt;}
.x72_c00138{left:246.800000pt;}
.x56_c00138{left:247.866667pt;}
.x11_c00138{left:252.800000pt;}
.x39_c00138{left:254.933333pt;}
.x31_c00138{left:258.800000pt;}
.x20_c00138{left:259.733333pt;}
.x12_c00138{left:263.066667pt;}
.x57_c00138{left:266.133333pt;}
.x73_c00138{left:267.600000pt;}
.xb_c00138{left:270.800000pt;}
.x68_c00138{left:272.533333pt;}
.x7e_c00138{left:274.133333pt;}
.x5c_c00138{left:279.466667pt;}
.x6f_c00138{left:280.800000pt;}
.x2b_c00138{left:283.066667pt;}
.x66_c00138{left:285.466667pt;}
.x27_c00138{left:289.733333pt;}
.x1_c00138{left:291.466667pt;}
.x13_c00138{left:296.000000pt;}
.x3a_c00138{left:298.800000pt;}
.xc_c00138{left:299.866667pt;}
.x4e_c00138{left:302.000000pt;}
.x51_c00138{left:304.133333pt;}
.x32_c00138{left:306.800000pt;}
.x41_c00138{left:307.733333pt;}
.x1a_c00138{left:308.800000pt;}
.x79_c00138{left:309.733333pt;}
.x14_c00138{left:311.733333pt;}
.x28_c00138{left:312.800000pt;}
.x21_c00138{left:315.200000pt;}
.x7f_c00138{left:318.266667pt;}
.x69_c00138{left:319.866667pt;}
.x2c_c00138{left:326.933333pt;}
.x5d_c00138{left:327.866667pt;}
.x3b_c00138{left:331.066667pt;}
.xd_c00138{left:332.133333pt;}
.x33_c00138{left:334.266667pt;}
.x71_c00138{left:335.600000pt;}
.x29_c00138{left:337.466667pt;}
.x52_c00138{left:338.666667pt;}
.x22_c00138{left:339.866667pt;}
.x74_c00138{left:341.466667pt;}
.x2d_c00138{left:343.200000pt;}
.x64_c00138{left:345.066667pt;}
.x6a_c00138{left:347.733333pt;}
.x3c_c00138{left:350.000000pt;}
.x58_c00138{left:356.933333pt;}
.x15_c00138{left:358.400000pt;}
.x5e_c00138{left:361.200000pt;}
.x6b_c00138{left:364.400000pt;}
.xea_c00138{left:392.000000pt;}
.x88_c00138{left:393.333333pt;}
.xd2_c00138{left:394.266667pt;}
.xa6_c00138{left:408.133333pt;}
.x96_c00138{left:409.066667pt;}
.xef_c00138{left:417.466667pt;}
.xc3_c00138{left:424.000000pt;}
.x9a_c00138{left:425.333333pt;}
.x85_c00138{left:426.266667pt;}
.x81_c00138{left:427.466667pt;}
.xae_c00138{left:428.666667pt;}
.xa7_c00138{left:429.866667pt;}
.xe1_c00138{left:431.066667pt;}
.x89_c00138{left:434.666667pt;}
.x107_c00138{left:435.866667pt;}
.xc7_c00138{left:437.066667pt;}
.x93_c00138{left:439.466667pt;}
.x10c_c00138{left:440.666667pt;}
.xb3_c00138{left:442.933333pt;}
.x103_c00138{left:445.066667pt;}
.xcb_c00138{left:446.000000pt;}
.xbf_c00138{left:447.333333pt;}
.xfb_c00138{left:449.733333pt;}
.x82_c00138{left:452.133333pt;}
.x86_c00138{left:453.733333pt;}
.xf3_c00138{left:454.933333pt;}
.xe4_c00138{left:456.400000pt;}
.xc4_c00138{left:459.466667pt;}
.xf1_c00138{left:460.666667pt;}
.x104_c00138{left:461.733333pt;}
.xb5_c00138{left:463.466667pt;}
.x87_c00138{left:464.666667pt;}
.x97_c00138{left:465.733333pt;}
.x94_c00138{left:466.666667pt;}
.x92_c00138{left:468.000000pt;}
.x9f_c00138{left:470.000000pt;}
.xc8_c00138{left:471.733333pt;}
.xe8_c00138{left:473.600000pt;}
.x95_c00138{left:475.333333pt;}
.xa2_c00138{left:476.400000pt;}
.xf9_c00138{left:477.733333pt;}
.x9b_c00138{left:479.066667pt;}
.xa0_c00138{left:480.266667pt;}
.x100_c00138{left:482.133333pt;}
.xd4_c00138{left:483.466667pt;}
.xe2_c00138{left:486.133333pt;}
.xc0_c00138{left:487.333333pt;}
.x10d_c00138{left:490.000000pt;}
.xc1_c00138{left:491.200000pt;}
.xaf_c00138{left:492.933333pt;}
.x8a_c00138{left:495.200000pt;}
.x98_c00138{left:498.400000pt;}
.x101_c00138{left:499.733333pt;}
.xde_c00138{left:500.933333pt;}
.xf4_c00138{left:502.266667pt;}
.xd5_c00138{left:504.000000pt;}
.xcc_c00138{left:505.200000pt;}
.xa1_c00138{left:506.533333pt;}
.x83_c00138{left:508.800000pt;}
.xa8_c00138{left:510.533333pt;}
.xda_c00138{left:511.733333pt;}
.xc9_c00138{left:513.333333pt;}
.x105_c00138{left:516.800000pt;}
.x84_c00138{left:520.000000pt;}
.x99_c00138{left:522.666667pt;}
.xd0_c00138{left:524.533333pt;}
.xb6_c00138{left:525.866667pt;}
.xb4_c00138{left:527.333333pt;}
.xcd_c00138{left:528.266667pt;}
.xca_c00138{left:530.266667pt;}
.xf5_c00138{left:532.933333pt;}
.xa9_c00138{left:535.200000pt;}
.xe5_c00138{left:536.666667pt;}
.x9c_c00138{left:539.600000pt;}
.xbb_c00138{left:541.733333pt;}
.xd6_c00138{left:543.333333pt;}
.xa3_c00138{left:544.533333pt;}
.xf6_c00138{left:545.733333pt;}
.xdb_c00138{left:548.266667pt;}
.xb0_c00138{left:550.400000pt;}
.xf7_c00138{left:551.866667pt;}
.xdf_c00138{left:552.800000pt;}
.xaa_c00138{left:555.066667pt;}
.x8b_c00138{left:557.333333pt;}
.xeb_c00138{left:559.066667pt;}
.xe3_c00138{left:560.400000pt;}
.xbc_c00138{left:561.866667pt;}
.xd3_c00138{left:562.933333pt;}
.xf2_c00138{left:564.933333pt;}
.xb1_c00138{left:566.666667pt;}
.xc2_c00138{left:569.333333pt;}
.xce_c00138{left:570.533333pt;}
.xe6_c00138{left:571.600000pt;}
.xb7_c00138{left:575.733333pt;}
.xe0_c00138{left:577.066667pt;}
.xab_c00138{left:582.266667pt;}
.xfc_c00138{left:584.133333pt;}
.xd1_c00138{left:585.066667pt;}
.x10a_c00138{left:588.266667pt;}
.xd7_c00138{left:590.800000pt;}
.x8c_c00138{left:594.133333pt;}
.xfd_c00138{left:596.666667pt;}
.x106_c00138{left:598.400000pt;}
.xd8_c00138{left:599.733333pt;}
.xcf_c00138{left:602.533333pt;}
.xc5_c00138{left:604.133333pt;}
.x108_c00138{left:606.666667pt;}
.xfa_c00138{left:610.000000pt;}
.x9d_c00138{left:613.866667pt;}
.x8d_c00138{left:615.600000pt;}
.x102_c00138{left:616.533333pt;}
.x2_c00138{left:618.800000pt;}
.xa4_c00138{left:621.066667pt;}
.xb8_c00138{left:622.533333pt;}
.xdc_c00138{left:623.733333pt;}
.xd9_c00138{left:625.066667pt;}
.xec_c00138{left:627.066667pt;}
.x9e_c00138{left:628.000000pt;}
.xac_c00138{left:629.333333pt;}
.xb9_c00138{left:631.866667pt;}
.x10e_c00138{left:633.466667pt;}
.xb2_c00138{left:636.133333pt;}
.xfe_c00138{left:638.000000pt;}
.xdd_c00138{left:639.066667pt;}
.xf8_c00138{left:642.133333pt;}
.x109_c00138{left:644.133333pt;}
.xe7_c00138{left:645.200000pt;}
.xad_c00138{left:646.933333pt;}
.xbd_c00138{left:648.266667pt;}
.xa5_c00138{left:652.400000pt;}
.xed_c00138{left:654.000000pt;}
.xff_c00138{left:655.600000pt;}
.xba_c00138{left:657.466667pt;}
.x8e_c00138{left:660.400000pt;}
.xc6_c00138{left:662.666667pt;}
.xbe_c00138{left:664.933333pt;}
.x8f_c00138{left:666.800000pt;}
.x10b_c00138{left:669.200000pt;}
.x3_c00138{left:671.600000pt;}
.xee_c00138{left:674.133333pt;}
.xe9_c00138{left:678.133333pt;}
.xf0_c00138{left:679.733333pt;}
.x90_c00138{left:681.200000pt;}
.x91_c00138{left:688.533333pt;}
.x10f_c00138{left:731.200000pt;}
}





/* 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_c00139 {
    display:none;
  }
  .loading-indicator_c00139.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00139 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_c00139 { 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_c00139" -> "#page-container .classname_c00139")
 */
.pf_c00139 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00139 { /* 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_c00139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00139 { /* 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_c00139 { /* 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_c00139 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00139 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00139 {overflow:visible;}
  }
}
.c_c00139 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00139 { /* 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_c00139:after { /* webkit #35443 */
  content: '';
}
.t_c00139:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00139 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 */
}
.__c00139 { /* 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_c00139 { /* info for Javascript */
  display:none;
}
.l_c00139 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00139 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00139 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00139: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_c00139 {
    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_c00139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00139.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_c00139 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00139;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.000000;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;}
.m100_c00139{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m114_c00139{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m123_c00139{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00139{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m83_c00139{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.md2_c00139{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m112_c00139{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md0_c00139{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m78_c00139{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md1_c00139{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00139{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m113_c00139{transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);}
.m74_c00139{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mae_c00139{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00139{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00139{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00139{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m72_c00139{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma_c00139{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00139{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m73_c00139{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00139{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me4_c00139{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m43_c00139{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00139{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m79_c00139{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m15_c00139{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mad_c00139{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md7_c00139{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mac_c00139{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00139{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mec_c00139{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m70_c00139{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m80_c00139{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00139{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m51_c00139{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00139{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00139{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m44_c00139{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mca_c00139{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00139{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00139{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.meb_c00139{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m99_c00139{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m58_c00139{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00139{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00139{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6_c00139{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00139{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00139{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mce_c00139{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m42_c00139{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m19_c00139{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.me0_c00139{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00139{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00139{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m75_c00139{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m102_c00139{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m10_c00139{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00139{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00139{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00139{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00139{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mb_c00139{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m45_c00139{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00139{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m90_c00139{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00139{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00139{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m89_c00139{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m106_c00139{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m97_c00139{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mda_c00139{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00139{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00139{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mab_c00139{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me6_c00139{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00139{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc_c00139{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m117_c00139{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m82_c00139{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m76_c00139{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m94_c00139{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00139{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m7_c00139{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00139{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00139{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.me9_c00139{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00139{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00139{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m111_c00139{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m48_c00139{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00139{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.me3_c00139{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mde_c00139{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m87_c00139{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00139{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00139{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9_c00139{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m59_c00139{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m107_c00139{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m5_c00139{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00139{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00139{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m27_c00139{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00139{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m31_c00139{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00139{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00139{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md8_c00139{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m46_c00139{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m14_c00139{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me5_c00139{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m69_c00139{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00139{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m4_c00139{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.med_c00139{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00139{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m34_c00139{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m92_c00139{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m118_c00139{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00139{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00139{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m104_c00139{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8_c00139{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me1_c00139{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00139{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m125_c00139{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m60_c00139{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m91_c00139{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00139{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me_c00139{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00139{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00139{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m47_c00139{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00139{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00139{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00139{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00139{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m21_c00139{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mee_c00139{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m28_c00139{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00139{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m85_c00139{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m16_c00139{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me8_c00139{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00139{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m122_c00139{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m35_c00139{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00139{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m64_c00139{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m98_c00139{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00139{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00139{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m38_c00139{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00139{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md4_c00139{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00139{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00139{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m109_c00139{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.maa_c00139{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00139{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m36_c00139{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mea_c00139{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m37_c00139{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00139{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00139{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00139{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00139{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00139{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00139{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.me7_c00139{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00139{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m67_c00139{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00139{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00139{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00139{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m17_c00139{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md6_c00139{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m119_c00139{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m121_c00139{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m54_c00139{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11_c00139{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m18_c00139{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00139{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md3_c00139{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00139{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mf_c00139{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m81_c00139{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00139{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mba_c00139{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md_c00139{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m95_c00139{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m52_c00139{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00139{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m29_c00139{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00139{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mef_c00139{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m88_c00139{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00139{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00139{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00139{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00139{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00139{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00139{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3_c00139{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00139{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m25_c00139{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m26_c00139{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00139{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m33_c00139{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m65_c00139{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00139{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m32_c00139{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00139{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00139{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m49_c00139{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m57_c00139{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m20_c00139{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00139{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00139{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00139{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.maf_c00139{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m23_c00139{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m86_c00139{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00139{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00139{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m93_c00139{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m66_c00139{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00139{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me2_c00139{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m50_c00139{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m71_c00139{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m96_c00139{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00139{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m110_c00139{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00139{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m68_c00139{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m12_c00139{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md9_c00139{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00139{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m124_c00139{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00139{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00139{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m56_c00139{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00139{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m120_c00139{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m41_c00139{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);}
.mb6_c00139{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00139{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00139{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00139{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00139{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00139{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00139{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00139{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00139{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m13_c00139{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00139{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m30_c00139{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m108_c00139{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00139{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m115_c00139{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m22_c00139{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00139{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00139{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00139{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m84_c00139{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.md5_c00139{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m53_c00139{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m77_c00139{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00139{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00139{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00139{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m63_c00139{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m101_c00139{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mff_c00139{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00139{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m61_c00139{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m116_c00139{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m39_c00139{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m62_c00139{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00139{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m105_c00139{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m55_c00139{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m103_c00139{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00139{transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);}
.m40_c00139{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00139{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00139{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00139{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls2_c00139{letter-spacing:0.000000px;}
.ls1_c00139{letter-spacing:50.211796px;}
.ls0_c00139{letter-spacing:55.714286px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{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__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00139{word-spacing:-85.714286px;}
.ws10_c00139{word-spacing:-77.211796px;}
.ws9_c00139{word-spacing:-8.647059px;}
.ws14_c00139{word-spacing:-2.803493px;}
.ws13_c00139{word-spacing:-2.200573px;}
.ws1d_c00139{word-spacing:0.000000px;}
.ws1c_c00139{word-spacing:0.833333px;}
.ws1b_c00139{word-spacing:0.888268px;}
.ws0_c00139{word-spacing:5.454545px;}
.ws15_c00139{word-spacing:9.218750px;}
.ws17_c00139{word-spacing:11.875000px;}
.wsa_c00139{word-spacing:15.000000px;}
.wse_c00139{word-spacing:15.168901px;}
.ws18_c00139{word-spacing:16.442748px;}
.ws16_c00139{word-spacing:16.785714px;}
.ws7_c00139{word-spacing:18.125000px;}
.wsf_c00139{word-spacing:19.994638px;}
.ws3_c00139{word-spacing:22.142857px;}
.wsd_c00139{word-spacing:23.211796px;}
.wsb_c00139{word-spacing:25.416667px;}
.ws1_c00139{word-spacing:25.714286px;}
.ws12_c00139{word-spacing:28.426230px;}
.ws6_c00139{word-spacing:29.285714px;}
.ws11_c00139{word-spacing:32.250000px;}
.ws19_c00139{word-spacing:32.360656px;}
.wsc_c00139{word-spacing:36.000000px;}
.ws2_c00139{word-spacing:40.000000px;}
.ws8_c00139{word-spacing:44.166667px;}
.ws4_c00139{word-spacing:50.416667px;}
.ws1a_c00139{word-spacing:160.000000px;}
._2_c00139{margin-left:-55.714286px;}
._c_c00139{margin-left:-50.211796px;}
._5_c00139{margin-left:-8.928571px;}
._b_c00139{width:3.217158px;}
._9_c00139{width:37.857143px;}
._a_c00139{width:46.785714px;}
._10_c00139{width:48.125000px;}
._0_c00139{width:49.166667px;}
._e_c00139{width:50.211796px;}
._3_c00139{width:52.142857px;}
._8_c00139{width:53.428954px;}
._f_c00139{width:55.714286px;}
._7_c00139{width:58.254692px;}
._1_c00139{width:59.285714px;}
._4_c00139{width:64.642857px;}
._6_c00139{width:65.833333px;}
._d_c00139{width:67.630952px;}
.fc0_c00139{color:transparent;}
.fs7_c00139{font-size:24.000000px;}
.fs5_c00139{font-size:42.000000px;}
.fs6_c00139{font-size:48.000000px;}
.fs8_c00139{font-size:54.000000px;}
.fs4_c00139{font-size:60.000000px;}
.fs3_c00139{font-size:66.000000px;}
.fs2_c00139{font-size:72.000000px;}
.fs0_c00139{font-size:78.000000px;}
.fs1_c00139{font-size:84.000000px;}
.y0_c00139{bottom:0.000000px;}
.y69_c00139{bottom:181.800000px;}
.y38_c00139{bottom:183.300000px;}
.y37_c00139{bottom:197.700000px;}
.y68_c00139{bottom:200.100000px;}
.y36_c00139{bottom:211.650000px;}
.y67_c00139{bottom:222.300000px;}
.y35_c00139{bottom:226.050000px;}
.y66_c00139{bottom:240.000000px;}
.y34_c00139{bottom:240.900000px;}
.y33_c00139{bottom:255.300000px;}
.y65_c00139{bottom:258.000000px;}
.y32_c00139{bottom:269.250000px;}
.y64_c00139{bottom:276.000000px;}
.y31_c00139{bottom:283.650000px;}
.y63_c00139{bottom:293.700000px;}
.y30_c00139{bottom:297.750000px;}
.y2f_c00139{bottom:310.650000px;}
.y62_c00139{bottom:311.700000px;}
.y61_c00139{bottom:329.700000px;}
.y2e_c00139{bottom:330.000000px;}
.y2d_c00139{bottom:347.700000px;}
.y60_c00139{bottom:365.400000px;}
.y2c_c00139{bottom:370.050000px;}
.y5f_c00139{bottom:384.900000px;}
.y2b_c00139{bottom:387.750000px;}
.y2a_c00139{bottom:406.050000px;}
.y5e_c00139{bottom:409.350000px;}
.y5d_c00139{bottom:423.750000px;}
.y29_c00139{bottom:429.450000px;}
.y5c_c00139{bottom:437.700000px;}
.y28_c00139{bottom:447.150000px;}
.y5b_c00139{bottom:452.100000px;}
.y5a_c00139{bottom:464.850000px;}
.y27_c00139{bottom:469.050000px;}
.y26_c00139{bottom:478.500000px;}
.y59_c00139{bottom:483.150000px;}
.y25_c00139{bottom:499.800000px;}
.y58_c00139{bottom:500.850000px;}
.y24_c00139{bottom:517.800000px;}
.y57_c00139{bottom:523.950000px;}
.y23_c00139{bottom:535.800000px;}
.y56_c00139{bottom:541.650000px;}
.y22_c00139{bottom:553.500000px;}
.y55_c00139{bottom:559.350000px;}
.y21_c00139{bottom:571.200000px;}
.y54_c00139{bottom:577.050000px;}
.y20_c00139{bottom:588.900000px;}
.y53_c00139{bottom:595.050000px;}
.y1f_c00139{bottom:606.900000px;}
.y52_c00139{bottom:612.750000px;}
.y1e_c00139{bottom:624.900000px;}
.y51_c00139{bottom:634.350000px;}
.y1d_c00139{bottom:642.600000px;}
.y50_c00139{bottom:652.350000px;}
.y1c_c00139{bottom:660.300000px;}
.y1b_c00139{bottom:682.050000px;}
.y4f_c00139{bottom:683.700000px;}
.y1a_c00139{bottom:696.150000px;}
.y4e_c00139{bottom:701.700000px;}
.y19_c00139{bottom:710.550000px;}
.y4d_c00139{bottom:723.150000px;}
.y18_c00139{bottom:725.700000px;}
.y4c_c00139{bottom:741.150000px;}
.y17_c00139{bottom:748.350000px;}
.y16_c00139{bottom:752.700000px;}
.y4b_c00139{bottom:759.150000px;}
.y15_c00139{bottom:770.700000px;}
.y4a_c00139{bottom:777.150000px;}
.y14_c00139{bottom:788.700000px;}
.y49_c00139{bottom:794.850000px;}
.y13_c00139{bottom:810.750000px;}
.y48_c00139{bottom:812.850000px;}
.y12_c00139{bottom:828.750000px;}
.y47_c00139{bottom:830.550000px;}
.y11_c00139{bottom:846.450000px;}
.y46_c00139{bottom:848.550000px;}
.y10_c00139{bottom:864.450000px;}
.y45_c00139{bottom:866.550000px;}
.yf_c00139{bottom:882.750000px;}
.y44_c00139{bottom:884.550000px;}
.ye_c00139{bottom:900.000000px;}
.y43_c00139{bottom:902.550000px;}
.y42_c00139{bottom:920.250000px;}
.yd_c00139{bottom:920.400000px;}
.y41_c00139{bottom:937.950000px;}
.yc_c00139{bottom:939.900000px;}
.y40_c00139{bottom:955.950000px;}
.yb_c00139{bottom:969.900000px;}
.y3f_c00139{bottom:973.950000px;}
.ya_c00139{bottom:987.900000px;}
.y3e_c00139{bottom:991.950000px;}
.y3d_c00139{bottom:1009.650000px;}
.y9_c00139{bottom:1009.950000px;}
.y8_c00139{bottom:1027.650000px;}
.y3c_c00139{bottom:1045.350000px;}
.y7_c00139{bottom:1045.950000px;}
.y3b_c00139{bottom:1063.350000px;}
.y6_c00139{bottom:1063.650000px;}
.y3a_c00139{bottom:1081.050000px;}
.y5_c00139{bottom:1081.350000px;}
.y4_c00139{bottom:1099.050000px;}
.y39_c00139{bottom:1116.750000px;}
.y3_c00139{bottom:1117.050000px;}
.y1_c00139{bottom:1141.950000px;}
.y2_c00139{bottom:1143.450000px;}
.h9_c00139{height:24.000000px;}
.h7_c00139{height:42.000000px;}
.h8_c00139{height:48.000000px;}
.ha_c00139{height:54.000000px;}
.h6_c00139{height:60.000000px;}
.h5_c00139{height:66.000000px;}
.h4_c00139{height:72.000000px;}
.h2_c00139{height:78.000000px;}
.h3_c00139{height:84.000000px;}
.h0_c00139{height:1271.879975px;}
.h1_c00139{height:1272.000000px;}
.w1_c00139{width:953.250000px;}
.w0_c00139{width:953.280030px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:169.950000px;}
.x31_c00139{left:171.300000px;}
.x58_c00139{left:172.800000px;}
.x3c_c00139{left:173.850000px;}
.x81_c00139{left:186.150000px;}
.x3_c00139{left:187.200000px;}
.x13_c00139{left:188.700000px;}
.x37_c00139{left:189.750000px;}
.x4d_c00139{left:190.950000px;}
.xa6_c00139{left:199.500000px;}
.x6a_c00139{left:200.550000px;}
.x75_c00139{left:201.750000px;}
.x40_c00139{left:207.000000px;}
.x86_c00139{left:211.050000px;}
.x4a_c00139{left:212.100000px;}
.x20_c00139{left:214.800000px;}
.x3d_c00139{left:217.800000px;}
.xd_c00139{left:219.000000px;}
.x94_c00139{left:220.350000px;}
.x59_c00139{left:221.400000px;}
.x6f_c00139{left:222.900000px;}
.x4_c00139{left:224.700000px;}
.x7d_c00139{left:228.750000px;}
.x63_c00139{left:230.850000px;}
.x21_c00139{left:232.500000px;}
.x97_c00139{left:234.000000px;}
.x14_c00139{left:235.500000px;}
.x32_c00139{left:237.600000px;}
.x90_c00139{left:238.650000px;}
.x73_c00139{left:243.000000px;}
.x26_c00139{left:244.200000px;}
.x4e_c00139{left:246.450000px;}
.x84_c00139{left:247.650000px;}
.x70_c00139{left:248.850000px;}
.x5_c00139{left:249.900000px;}
.x76_c00139{left:251.850000px;}
.x5e_c00139{left:253.350000px;}
.x3e_c00139{left:256.350000px;}
.x38_c00139{left:258.450000px;}
.x9a_c00139{left:259.950000px;}
.x2c_c00139{left:261.150000px;}
.x15_c00139{left:264.000000px;}
.x55_c00139{left:265.650000px;}
.x27_c00139{left:267.300000px;}
.xa2_c00139{left:268.500000px;}
.x77_c00139{left:270.900000px;}
.x16_c00139{left:273.000000px;}
.x87_c00139{left:274.050000px;}
.x22_c00139{left:276.450000px;}
.x43_c00139{left:280.950000px;}
.x1b_c00139{left:282.300000px;}
.x85_c00139{left:283.350000px;}
.x39_c00139{left:285.750000px;}
.xa0_c00139{left:287.250000px;}
.x95_c00139{left:288.750000px;}
.x91_c00139{left:290.100000px;}
.x5a_c00139{left:291.300000px;}
.x64_c00139{left:293.100000px;}
.x71_c00139{left:294.600000px;}
.x9f_c00139{left:295.650000px;}
.xa7_c00139{left:296.700000px;}
.x2d_c00139{left:297.900000px;}
.x6_c00139{left:300.000000px;}
.x74_c00139{left:301.650000px;}
.x56_c00139{left:303.750000px;}
.x28_c00139{left:306.900000px;}
.xa4_c00139{left:308.100000px;}
.x6b_c00139{left:309.150000px;}
.x44_c00139{left:310.500000px;}
.x3a_c00139{left:312.750000px;}
.x2e_c00139{left:315.600000px;}
.xa8_c00139{left:316.800000px;}
.x4f_c00139{left:318.150000px;}
.xe_c00139{left:320.550000px;}
.xa3_c00139{left:323.250000px;}
.x78_c00139{left:324.900000px;}
.x8c_c00139{left:327.150000px;}
.x57_c00139{left:328.650000px;}
.x5f_c00139{left:329.700000px;}
.x6c_c00139{left:330.750000px;}
.x98_c00139{left:331.950000px;}
.x93_c00139{left:334.050000px;}
.x17_c00139{left:336.300000px;}
.x4b_c00139{left:337.800000px;}
.x79_c00139{left:338.850000px;}
.x99_c00139{left:339.900000px;}
.x96_c00139{left:340.950000px;}
.x7_c00139{left:342.450000px;}
.x6d_c00139{left:345.150000px;}
.x72_c00139{left:346.200000px;}
.x33_c00139{left:347.400000px;}
.x45_c00139{left:348.600000px;}
.x8a_c00139{left:350.100000px;}
.x41_c00139{left:351.750000px;}
.x65_c00139{left:352.950000px;}
.x7a_c00139{left:356.250000px;}
.xa9_c00139{left:358.200000px;}
.x50_c00139{left:360.600000px;}
.x8_c00139{left:362.550000px;}
.x1c_c00139{left:363.600000px;}
.x23_c00139{left:365.400000px;}
.x66_c00139{left:367.350000px;}
.x5b_c00139{left:368.400000px;}
.x7b_c00139{left:371.100000px;}
.xaa_c00139{left:373.350000px;}
.xf_c00139{left:374.850000px;}
.x9b_c00139{left:376.200000px;}
.x42_c00139{left:377.700000px;}
.x8e_c00139{left:380.100000px;}
.x60_c00139{left:382.200000px;}
.x34_c00139{left:385.200000px;}
.x24_c00139{left:386.700000px;}
.x1d_c00139{left:389.100000px;}
.x4c_c00139{left:390.750000px;}
.x82_c00139{left:392.100000px;}
.x7e_c00139{left:394.200000px;}
.x46_c00139{left:395.400000px;}
.x9_c00139{left:396.450000px;}
.x29_c00139{left:398.700000px;}
.x51_c00139{left:400.200000px;}
.x88_c00139{left:402.150000px;}
.x10_c00139{left:403.350000px;}
.x9c_c00139{left:404.700000px;}
.x83_c00139{left:407.550000px;}
.x2_c00139{left:410.100000px;}
.x18_c00139{left:411.150000px;}
.x9d_c00139{left:412.200000px;}
.x5c_c00139{left:414.900000px;}
.xa1_c00139{left:417.600000px;}
.x2f_c00139{left:419.100000px;}
.x3b_c00139{left:421.050000px;}
.x1e_c00139{left:424.350000px;}
.x25_c00139{left:426.000000px;}
.x61_c00139{left:428.700000px;}
.x8b_c00139{left:430.650000px;}
.x2a_c00139{left:432.900000px;}
.xa_c00139{left:433.950000px;}
.x8f_c00139{left:435.300000px;}
.x67_c00139{left:436.950000px;}
.x3f_c00139{left:438.450000px;}
.x30_c00139{left:440.400000px;}
.x52_c00139{left:441.900000px;}
.x11_c00139{left:444.000000px;}
.xb_c00139{left:445.800000px;}
.x47_c00139{left:446.850000px;}
.x7f_c00139{left:447.900000px;}
.x89_c00139{left:453.450000px;}
.x1f_c00139{left:457.050000px;}
.xc_c00139{left:459.150000px;}
.x19_c00139{left:461.850000px;}
.x53_c00139{left:463.200000px;}
.xab_c00139{left:464.400000px;}
.x12_c00139{left:465.600000px;}
.x68_c00139{left:467.250000px;}
.x9e_c00139{left:469.500000px;}
.x48_c00139{left:472.050000px;}
.x35_c00139{left:474.450000px;}
.x54_c00139{left:477.300000px;}
.x5d_c00139{left:478.650000px;}
.x8d_c00139{left:480.600000px;}
.x2b_c00139{left:484.350000px;}
.x7c_c00139{left:486.600000px;}
.x36_c00139{left:489.600000px;}
.x92_c00139{left:490.650000px;}
.x1a_c00139{left:493.200000px;}
.xa5_c00139{left:494.400000px;}
.x69_c00139{left:495.750000px;}
.x6e_c00139{left:497.250000px;}
.x49_c00139{left:499.350000px;}
.x80_c00139{left:502.950000px;}
.x62_c00139{left:506.700000px;}
.x145_c00139{left:518.550000px;}
.x135_c00139{left:519.900000px;}
.xac_c00139{left:526.650000px;}
.x110_c00139{left:528.900000px;}
.x117_c00139{left:530.700000px;}
.x10f_c00139{left:542.100000px;}
.x11b_c00139{left:543.600000px;}
.xb1_c00139{left:544.950000px;}
.xd0_c00139{left:546.150000px;}
.x126_c00139{left:548.100000px;}
.x13f_c00139{left:549.150000px;}
.x12d_c00139{left:558.750000px;}
.xc3_c00139{left:561.750000px;}
.xe6_c00139{left:563.250000px;}
.x11d_c00139{left:566.250000px;}
.x123_c00139{left:567.450000px;}
.x10c_c00139{left:568.800000px;}
.xca_c00139{left:571.200000px;}
.x118_c00139{left:573.150000px;}
.x113_c00139{left:574.650000px;}
.xf6_c00139{left:575.850000px;}
.xd1_c00139{left:577.500000px;}
.x12e_c00139{left:580.650000px;}
.xde_c00139{left:582.750000px;}
.xb2_c00139{left:584.550000px;}
.x127_c00139{left:586.200000px;}
.xc4_c00139{left:591.300000px;}
.xba_c00139{left:593.250000px;}
.x142_c00139{left:594.450000px;}
.xf3_c00139{left:595.650000px;}
.xb3_c00139{left:597.450000px;}
.x133_c00139{left:600.000000px;}
.xec_c00139{left:601.800000px;}
.xcb_c00139{left:603.300000px;}
.xe7_c00139{left:605.400000px;}
.x119_c00139{left:608.400000px;}
.xf8_c00139{left:610.200000px;}
.x10a_c00139{left:612.300000px;}
.x11e_c00139{left:613.350000px;}
.xad_c00139{left:615.150000px;}
.xf4_c00139{left:616.950000px;}
.x128_c00139{left:618.300000px;}
.x146_c00139{left:620.250000px;}
.xc0_c00139{left:622.950000px;}
.xb4_c00139{left:624.450000px;}
.xe8_c00139{left:625.950000px;}
.xbb_c00139{left:628.500000px;}
.x102_c00139{left:629.700000px;}
.xfc_c00139{left:631.050000px;}
.x114_c00139{left:633.300000px;}
.xe3_c00139{left:634.650000px;}
.x141_c00139{left:635.850000px;}
.xdf_c00139{left:637.050000px;}
.x13c_c00139{left:638.400000px;}
.x124_c00139{left:642.000000px;}
.xda_c00139{left:644.250000px;}
.xc5_c00139{left:648.150000px;}
.x103_c00139{left:650.250000px;}
.xfd_c00139{left:653.700000px;}
.x121_c00139{left:655.350000px;}
.xc6_c00139{left:656.850000px;}
.xe9_c00139{left:659.100000px;}
.xc1_c00139{left:660.450000px;}
.x134_c00139{left:665.850000px;}
.xd2_c00139{left:667.500000px;}
.x111_c00139{left:669.600000px;}
.xae_c00139{left:671.700000px;}
.xdb_c00139{left:674.850000px;}
.xd3_c00139{left:679.350000px;}
.xe4_c00139{left:680.700000px;}
.x10b_c00139{left:681.900000px;}
.x125_c00139{left:683.400000px;}
.xff_c00139{left:684.450000px;}
.xe0_c00139{left:686.700000px;}
.xcc_c00139{left:688.650000px;}
.x12f_c00139{left:690.150000px;}
.xdc_c00139{left:691.800000px;}
.xb5_c00139{left:693.600000px;}
.xbc_c00139{left:695.400000px;}
.xd4_c00139{left:697.650000px;}
.xea_c00139{left:699.450000px;}
.xed_c00139{left:700.800000px;}
.xf5_c00139{left:702.300000px;}
.x100_c00139{left:705.300000px;}
.x140_c00139{left:706.800000px;}
.xbd_c00139{left:711.300000px;}
.xc7_c00139{left:712.650000px;}
.x115_c00139{left:716.400000px;}
.x130_c00139{left:718.200000px;}
.xd5_c00139{left:720.300000px;}
.x147_c00139{left:722.100000px;}
.xc2_c00139{left:723.750000px;}
.x104_c00139{left:725.550000px;}
.x11c_c00139{left:727.950000px;}
.xf9_c00139{left:730.050000px;}
.xd6_c00139{left:731.400000px;}
.x131_c00139{left:733.200000px;}
.xc8_c00139{left:734.250000px;}
.xb6_c00139{left:737.100000px;}
.xf1_c00139{left:738.150000px;}
.x132_c00139{left:739.650000px;}
.xcd_c00139{left:741.300000px;}
.xeb_c00139{left:742.650000px;}
.xee_c00139{left:745.800000px;}
.x10d_c00139{left:747.300000px;}
.xe1_c00139{left:749.100000px;}
.x116_c00139{left:751.650000px;}
.x11f_c00139{left:754.050000px;}
.x136_c00139{left:760.050000px;}
.x129_c00139{left:761.400000px;}
.x105_c00139{left:762.600000px;}
.x138_c00139{left:763.950000px;}
.x13d_c00139{left:766.200000px;}
.xaf_c00139{left:768.150000px;}
.xbe_c00139{left:771.000000px;}
.xb7_c00139{left:772.050000px;}
.x137_c00139{left:774.750000px;}
.xce_c00139{left:775.800000px;}
.x108_c00139{left:779.550000px;}
.xfe_c00139{left:781.050000px;}
.x122_c00139{left:783.000000px;}
.xd7_c00139{left:785.100000px;}
.x12a_c00139{left:787.650000px;}
.xfa_c00139{left:788.700000px;}
.x10e_c00139{left:793.350000px;}
.x11a_c00139{left:794.850000px;}
.xf2_c00139{left:797.250000px;}
.xb8_c00139{left:800.100000px;}
.xd8_c00139{left:801.600000px;}
.x139_c00139{left:805.650000px;}
.xef_c00139{left:807.750000px;}
.x101_c00139{left:811.200000px;}
.xf7_c00139{left:812.250000px;}
.x106_c00139{left:813.300000px;}
.x12b_c00139{left:816.300000px;}
.xd9_c00139{left:821.100000px;}
.xb0_c00139{left:822.900000px;}
.x120_c00139{left:824.250000px;}
.xc9_c00139{left:826.800000px;}
.xe5_c00139{left:828.600000px;}
.xb9_c00139{left:829.650000px;}
.x107_c00139{left:831.000000px;}
.xcf_c00139{left:832.350000px;}
.x112_c00139{left:833.400000px;}
.x144_c00139{left:835.050000px;}
.x143_c00139{left:840.150000px;}
.xbf_c00139{left:841.500000px;}
.x13a_c00139{left:843.150000px;}
.x109_c00139{left:845.100000px;}
.xfb_c00139{left:847.800000px;}
.xf0_c00139{left:848.850000px;}
.x12c_c00139{left:850.200000px;}
.xe2_c00139{left:852.750000px;}
.x13e_c00139{left:855.450000px;}
.xdd_c00139{left:858.900000px;}
.x13b_c00139{left:861.900000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls2_c00139{letter-spacing:0.000000pt;}
.ls1_c00139{letter-spacing:44.632708pt;}
.ls0_c00139{letter-spacing:49.523810pt;}
.ws5_c00139{word-spacing:-76.190476pt;}
.ws10_c00139{word-spacing:-68.632708pt;}
.ws9_c00139{word-spacing:-7.686275pt;}
.ws14_c00139{word-spacing:-2.491994pt;}
.ws13_c00139{word-spacing:-1.956065pt;}
.ws1d_c00139{word-spacing:0.000000pt;}
.ws1c_c00139{word-spacing:0.740741pt;}
.ws1b_c00139{word-spacing:0.789572pt;}
.ws0_c00139{word-spacing:4.848485pt;}
.ws15_c00139{word-spacing:8.194444pt;}
.ws17_c00139{word-spacing:10.555556pt;}
.wsa_c00139{word-spacing:13.333333pt;}
.wse_c00139{word-spacing:13.483467pt;}
.ws18_c00139{word-spacing:14.615776pt;}
.ws16_c00139{word-spacing:14.920635pt;}
.ws7_c00139{word-spacing:16.111111pt;}
.wsf_c00139{word-spacing:17.773012pt;}
.ws3_c00139{word-spacing:19.682540pt;}
.wsd_c00139{word-spacing:20.632708pt;}
.wsb_c00139{word-spacing:22.592593pt;}
.ws1_c00139{word-spacing:22.857143pt;}
.ws12_c00139{word-spacing:25.267760pt;}
.ws6_c00139{word-spacing:26.031746pt;}
.ws11_c00139{word-spacing:28.666667pt;}
.ws19_c00139{word-spacing:28.765027pt;}
.wsc_c00139{word-spacing:32.000000pt;}
.ws2_c00139{word-spacing:35.555556pt;}
.ws8_c00139{word-spacing:39.259259pt;}
.ws4_c00139{word-spacing:44.814815pt;}
.ws1a_c00139{word-spacing:142.222222pt;}
._2_c00139{margin-left:-49.523810pt;}
._c_c00139{margin-left:-44.632708pt;}
._5_c00139{margin-left:-7.936508pt;}
._b_c00139{width:2.859696pt;}
._9_c00139{width:33.650794pt;}
._a_c00139{width:41.587302pt;}
._10_c00139{width:42.777778pt;}
._0_c00139{width:43.703704pt;}
._e_c00139{width:44.632708pt;}
._3_c00139{width:46.349206pt;}
._8_c00139{width:47.492404pt;}
._f_c00139{width:49.523810pt;}
._7_c00139{width:51.781948pt;}
._1_c00139{width:52.698413pt;}
._4_c00139{width:57.460317pt;}
._6_c00139{width:58.518519pt;}
._d_c00139{width:60.116402pt;}
.fs7_c00139{font-size:21.333333pt;}
.fs5_c00139{font-size:37.333333pt;}
.fs6_c00139{font-size:42.666667pt;}
.fs8_c00139{font-size:48.000000pt;}
.fs4_c00139{font-size:53.333333pt;}
.fs3_c00139{font-size:58.666667pt;}
.fs2_c00139{font-size:64.000000pt;}
.fs0_c00139{font-size:69.333333pt;}
.fs1_c00139{font-size:74.666667pt;}
.y0_c00139{bottom:0.000000pt;}
.y69_c00139{bottom:161.600000pt;}
.y38_c00139{bottom:162.933333pt;}
.y37_c00139{bottom:175.733333pt;}
.y68_c00139{bottom:177.866667pt;}
.y36_c00139{bottom:188.133333pt;}
.y67_c00139{bottom:197.600000pt;}
.y35_c00139{bottom:200.933333pt;}
.y66_c00139{bottom:213.333333pt;}
.y34_c00139{bottom:214.133333pt;}
.y33_c00139{bottom:226.933333pt;}
.y65_c00139{bottom:229.333333pt;}
.y32_c00139{bottom:239.333333pt;}
.y64_c00139{bottom:245.333333pt;}
.y31_c00139{bottom:252.133333pt;}
.y63_c00139{bottom:261.066667pt;}
.y30_c00139{bottom:264.666667pt;}
.y2f_c00139{bottom:276.133333pt;}
.y62_c00139{bottom:277.066667pt;}
.y61_c00139{bottom:293.066667pt;}
.y2e_c00139{bottom:293.333333pt;}
.y2d_c00139{bottom:309.066667pt;}
.y60_c00139{bottom:324.800000pt;}
.y2c_c00139{bottom:328.933333pt;}
.y5f_c00139{bottom:342.133333pt;}
.y2b_c00139{bottom:344.666667pt;}
.y2a_c00139{bottom:360.933333pt;}
.y5e_c00139{bottom:363.866667pt;}
.y5d_c00139{bottom:376.666667pt;}
.y29_c00139{bottom:381.733333pt;}
.y5c_c00139{bottom:389.066667pt;}
.y28_c00139{bottom:397.466667pt;}
.y5b_c00139{bottom:401.866667pt;}
.y5a_c00139{bottom:413.200000pt;}
.y27_c00139{bottom:416.933333pt;}
.y26_c00139{bottom:425.333333pt;}
.y59_c00139{bottom:429.466667pt;}
.y25_c00139{bottom:444.266667pt;}
.y58_c00139{bottom:445.200000pt;}
.y24_c00139{bottom:460.266667pt;}
.y57_c00139{bottom:465.733333pt;}
.y23_c00139{bottom:476.266667pt;}
.y56_c00139{bottom:481.466667pt;}
.y22_c00139{bottom:492.000000pt;}
.y55_c00139{bottom:497.200000pt;}
.y21_c00139{bottom:507.733333pt;}
.y54_c00139{bottom:512.933333pt;}
.y20_c00139{bottom:523.466667pt;}
.y53_c00139{bottom:528.933333pt;}
.y1f_c00139{bottom:539.466667pt;}
.y52_c00139{bottom:544.666667pt;}
.y1e_c00139{bottom:555.466667pt;}
.y51_c00139{bottom:563.866667pt;}
.y1d_c00139{bottom:571.200000pt;}
.y50_c00139{bottom:579.866667pt;}
.y1c_c00139{bottom:586.933333pt;}
.y1b_c00139{bottom:606.266667pt;}
.y4f_c00139{bottom:607.733333pt;}
.y1a_c00139{bottom:618.800000pt;}
.y4e_c00139{bottom:623.733333pt;}
.y19_c00139{bottom:631.600000pt;}
.y4d_c00139{bottom:642.800000pt;}
.y18_c00139{bottom:645.066667pt;}
.y4c_c00139{bottom:658.800000pt;}
.y17_c00139{bottom:665.200000pt;}
.y16_c00139{bottom:669.066667pt;}
.y4b_c00139{bottom:674.800000pt;}
.y15_c00139{bottom:685.066667pt;}
.y4a_c00139{bottom:690.800000pt;}
.y14_c00139{bottom:701.066667pt;}
.y49_c00139{bottom:706.533333pt;}
.y13_c00139{bottom:720.666667pt;}
.y48_c00139{bottom:722.533333pt;}
.y12_c00139{bottom:736.666667pt;}
.y47_c00139{bottom:738.266667pt;}
.y11_c00139{bottom:752.400000pt;}
.y46_c00139{bottom:754.266667pt;}
.y10_c00139{bottom:768.400000pt;}
.y45_c00139{bottom:770.266667pt;}
.yf_c00139{bottom:784.666667pt;}
.y44_c00139{bottom:786.266667pt;}
.ye_c00139{bottom:800.000000pt;}
.y43_c00139{bottom:802.266667pt;}
.y42_c00139{bottom:818.000000pt;}
.yd_c00139{bottom:818.133333pt;}
.y41_c00139{bottom:833.733333pt;}
.yc_c00139{bottom:835.466667pt;}
.y40_c00139{bottom:849.733333pt;}
.yb_c00139{bottom:862.133333pt;}
.y3f_c00139{bottom:865.733333pt;}
.ya_c00139{bottom:878.133333pt;}
.y3e_c00139{bottom:881.733333pt;}
.y3d_c00139{bottom:897.466667pt;}
.y9_c00139{bottom:897.733333pt;}
.y8_c00139{bottom:913.466667pt;}
.y3c_c00139{bottom:929.200000pt;}
.y7_c00139{bottom:929.733333pt;}
.y3b_c00139{bottom:945.200000pt;}
.y6_c00139{bottom:945.466667pt;}
.y3a_c00139{bottom:960.933333pt;}
.y5_c00139{bottom:961.200000pt;}
.y4_c00139{bottom:976.933333pt;}
.y39_c00139{bottom:992.666667pt;}
.y3_c00139{bottom:992.933333pt;}
.y1_c00139{bottom:1015.066667pt;}
.y2_c00139{bottom:1016.400000pt;}
.h9_c00139{height:21.333333pt;}
.h7_c00139{height:37.333333pt;}
.h8_c00139{height:42.666667pt;}
.ha_c00139{height:48.000000pt;}
.h6_c00139{height:53.333333pt;}
.h5_c00139{height:58.666667pt;}
.h4_c00139{height:64.000000pt;}
.h2_c00139{height:69.333333pt;}
.h3_c00139{height:74.666667pt;}
.h0_c00139{height:1130.559977pt;}
.h1_c00139{height:1130.666667pt;}
.w1_c00139{width:847.333333pt;}
.w0_c00139{width:847.360027pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:151.066667pt;}
.x31_c00139{left:152.266667pt;}
.x58_c00139{left:153.600000pt;}
.x3c_c00139{left:154.533333pt;}
.x81_c00139{left:165.466667pt;}
.x3_c00139{left:166.400000pt;}
.x13_c00139{left:167.733333pt;}
.x37_c00139{left:168.666667pt;}
.x4d_c00139{left:169.733333pt;}
.xa6_c00139{left:177.333333pt;}
.x6a_c00139{left:178.266667pt;}
.x75_c00139{left:179.333333pt;}
.x40_c00139{left:184.000000pt;}
.x86_c00139{left:187.600000pt;}
.x4a_c00139{left:188.533333pt;}
.x20_c00139{left:190.933333pt;}
.x3d_c00139{left:193.600000pt;}
.xd_c00139{left:194.666667pt;}
.x94_c00139{left:195.866667pt;}
.x59_c00139{left:196.800000pt;}
.x6f_c00139{left:198.133333pt;}
.x4_c00139{left:199.733333pt;}
.x7d_c00139{left:203.333333pt;}
.x63_c00139{left:205.200000pt;}
.x21_c00139{left:206.666667pt;}
.x97_c00139{left:208.000000pt;}
.x14_c00139{left:209.333333pt;}
.x32_c00139{left:211.200000pt;}
.x90_c00139{left:212.133333pt;}
.x73_c00139{left:216.000000pt;}
.x26_c00139{left:217.066667pt;}
.x4e_c00139{left:219.066667pt;}
.x84_c00139{left:220.133333pt;}
.x70_c00139{left:221.200000pt;}
.x5_c00139{left:222.133333pt;}
.x76_c00139{left:223.866667pt;}
.x5e_c00139{left:225.200000pt;}
.x3e_c00139{left:227.866667pt;}
.x38_c00139{left:229.733333pt;}
.x9a_c00139{left:231.066667pt;}
.x2c_c00139{left:232.133333pt;}
.x15_c00139{left:234.666667pt;}
.x55_c00139{left:236.133333pt;}
.x27_c00139{left:237.600000pt;}
.xa2_c00139{left:238.666667pt;}
.x77_c00139{left:240.800000pt;}
.x16_c00139{left:242.666667pt;}
.x87_c00139{left:243.600000pt;}
.x22_c00139{left:245.733333pt;}
.x43_c00139{left:249.733333pt;}
.x1b_c00139{left:250.933333pt;}
.x85_c00139{left:251.866667pt;}
.x39_c00139{left:254.000000pt;}
.xa0_c00139{left:255.333333pt;}
.x95_c00139{left:256.666667pt;}
.x91_c00139{left:257.866667pt;}
.x5a_c00139{left:258.933333pt;}
.x64_c00139{left:260.533333pt;}
.x71_c00139{left:261.866667pt;}
.x9f_c00139{left:262.800000pt;}
.xa7_c00139{left:263.733333pt;}
.x2d_c00139{left:264.800000pt;}
.x6_c00139{left:266.666667pt;}
.x74_c00139{left:268.133333pt;}
.x56_c00139{left:270.000000pt;}
.x28_c00139{left:272.800000pt;}
.xa4_c00139{left:273.866667pt;}
.x6b_c00139{left:274.800000pt;}
.x44_c00139{left:276.000000pt;}
.x3a_c00139{left:278.000000pt;}
.x2e_c00139{left:280.533333pt;}
.xa8_c00139{left:281.600000pt;}
.x4f_c00139{left:282.800000pt;}
.xe_c00139{left:284.933333pt;}
.xa3_c00139{left:287.333333pt;}
.x78_c00139{left:288.800000pt;}
.x8c_c00139{left:290.800000pt;}
.x57_c00139{left:292.133333pt;}
.x5f_c00139{left:293.066667pt;}
.x6c_c00139{left:294.000000pt;}
.x98_c00139{left:295.066667pt;}
.x93_c00139{left:296.933333pt;}
.x17_c00139{left:298.933333pt;}
.x4b_c00139{left:300.266667pt;}
.x79_c00139{left:301.200000pt;}
.x99_c00139{left:302.133333pt;}
.x96_c00139{left:303.066667pt;}
.x7_c00139{left:304.400000pt;}
.x6d_c00139{left:306.800000pt;}
.x72_c00139{left:307.733333pt;}
.x33_c00139{left:308.800000pt;}
.x45_c00139{left:309.866667pt;}
.x8a_c00139{left:311.200000pt;}
.x41_c00139{left:312.666667pt;}
.x65_c00139{left:313.733333pt;}
.x7a_c00139{left:316.666667pt;}
.xa9_c00139{left:318.400000pt;}
.x50_c00139{left:320.533333pt;}
.x8_c00139{left:322.266667pt;}
.x1c_c00139{left:323.200000pt;}
.x23_c00139{left:324.800000pt;}
.x66_c00139{left:326.533333pt;}
.x5b_c00139{left:327.466667pt;}
.x7b_c00139{left:329.866667pt;}
.xaa_c00139{left:331.866667pt;}
.xf_c00139{left:333.200000pt;}
.x9b_c00139{left:334.400000pt;}
.x42_c00139{left:335.733333pt;}
.x8e_c00139{left:337.866667pt;}
.x60_c00139{left:339.733333pt;}
.x34_c00139{left:342.400000pt;}
.x24_c00139{left:343.733333pt;}
.x1d_c00139{left:345.866667pt;}
.x4c_c00139{left:347.333333pt;}
.x82_c00139{left:348.533333pt;}
.x7e_c00139{left:350.400000pt;}
.x46_c00139{left:351.466667pt;}
.x9_c00139{left:352.400000pt;}
.x29_c00139{left:354.400000pt;}
.x51_c00139{left:355.733333pt;}
.x88_c00139{left:357.466667pt;}
.x10_c00139{left:358.533333pt;}
.x9c_c00139{left:359.733333pt;}
.x83_c00139{left:362.266667pt;}
.x2_c00139{left:364.533333pt;}
.x18_c00139{left:365.466667pt;}
.x9d_c00139{left:366.400000pt;}
.x5c_c00139{left:368.800000pt;}
.xa1_c00139{left:371.200000pt;}
.x2f_c00139{left:372.533333pt;}
.x3b_c00139{left:374.266667pt;}
.x1e_c00139{left:377.200000pt;}
.x25_c00139{left:378.666667pt;}
.x61_c00139{left:381.066667pt;}
.x8b_c00139{left:382.800000pt;}
.x2a_c00139{left:384.800000pt;}
.xa_c00139{left:385.733333pt;}
.x8f_c00139{left:386.933333pt;}
.x67_c00139{left:388.400000pt;}
.x3f_c00139{left:389.733333pt;}
.x30_c00139{left:391.466667pt;}
.x52_c00139{left:392.800000pt;}
.x11_c00139{left:394.666667pt;}
.xb_c00139{left:396.266667pt;}
.x47_c00139{left:397.200000pt;}
.x7f_c00139{left:398.133333pt;}
.x89_c00139{left:403.066667pt;}
.x1f_c00139{left:406.266667pt;}
.xc_c00139{left:408.133333pt;}
.x19_c00139{left:410.533333pt;}
.x53_c00139{left:411.733333pt;}
.xab_c00139{left:412.800000pt;}
.x12_c00139{left:413.866667pt;}
.x68_c00139{left:415.333333pt;}
.x9e_c00139{left:417.333333pt;}
.x48_c00139{left:419.600000pt;}
.x35_c00139{left:421.733333pt;}
.x54_c00139{left:424.266667pt;}
.x5d_c00139{left:425.466667pt;}
.x8d_c00139{left:427.200000pt;}
.x2b_c00139{left:430.533333pt;}
.x7c_c00139{left:432.533333pt;}
.x36_c00139{left:435.200000pt;}
.x92_c00139{left:436.133333pt;}
.x1a_c00139{left:438.400000pt;}
.xa5_c00139{left:439.466667pt;}
.x69_c00139{left:440.666667pt;}
.x6e_c00139{left:442.000000pt;}
.x49_c00139{left:443.866667pt;}
.x80_c00139{left:447.066667pt;}
.x62_c00139{left:450.400000pt;}
.x145_c00139{left:460.933333pt;}
.x135_c00139{left:462.133333pt;}
.xac_c00139{left:468.133333pt;}
.x110_c00139{left:470.133333pt;}
.x117_c00139{left:471.733333pt;}
.x10f_c00139{left:481.866667pt;}
.x11b_c00139{left:483.200000pt;}
.xb1_c00139{left:484.400000pt;}
.xd0_c00139{left:485.466667pt;}
.x126_c00139{left:487.200000pt;}
.x13f_c00139{left:488.133333pt;}
.x12d_c00139{left:496.666667pt;}
.xc3_c00139{left:499.333333pt;}
.xe6_c00139{left:500.666667pt;}
.x11d_c00139{left:503.333333pt;}
.x123_c00139{left:504.400000pt;}
.x10c_c00139{left:505.600000pt;}
.xca_c00139{left:507.733333pt;}
.x118_c00139{left:509.466667pt;}
.x113_c00139{left:510.800000pt;}
.xf6_c00139{left:511.866667pt;}
.xd1_c00139{left:513.333333pt;}
.x12e_c00139{left:516.133333pt;}
.xde_c00139{left:518.000000pt;}
.xb2_c00139{left:519.600000pt;}
.x127_c00139{left:521.066667pt;}
.xc4_c00139{left:525.600000pt;}
.xba_c00139{left:527.333333pt;}
.x142_c00139{left:528.400000pt;}
.xf3_c00139{left:529.466667pt;}
.xb3_c00139{left:531.066667pt;}
.x133_c00139{left:533.333333pt;}
.xec_c00139{left:534.933333pt;}
.xcb_c00139{left:536.266667pt;}
.xe7_c00139{left:538.133333pt;}
.x119_c00139{left:540.800000pt;}
.xf8_c00139{left:542.400000pt;}
.x10a_c00139{left:544.266667pt;}
.x11e_c00139{left:545.200000pt;}
.xad_c00139{left:546.800000pt;}
.xf4_c00139{left:548.400000pt;}
.x128_c00139{left:549.600000pt;}
.x146_c00139{left:551.333333pt;}
.xc0_c00139{left:553.733333pt;}
.xb4_c00139{left:555.066667pt;}
.xe8_c00139{left:556.400000pt;}
.xbb_c00139{left:558.666667pt;}
.x102_c00139{left:559.733333pt;}
.xfc_c00139{left:560.933333pt;}
.x114_c00139{left:562.933333pt;}
.xe3_c00139{left:564.133333pt;}
.x141_c00139{left:565.200000pt;}
.xdf_c00139{left:566.266667pt;}
.x13c_c00139{left:567.466667pt;}
.x124_c00139{left:570.666667pt;}
.xda_c00139{left:572.666667pt;}
.xc5_c00139{left:576.133333pt;}
.x103_c00139{left:578.000000pt;}
.xfd_c00139{left:581.066667pt;}
.x121_c00139{left:582.533333pt;}
.xc6_c00139{left:583.866667pt;}
.xe9_c00139{left:585.866667pt;}
.xc1_c00139{left:587.066667pt;}
.x134_c00139{left:591.866667pt;}
.xd2_c00139{left:593.333333pt;}
.x111_c00139{left:595.200000pt;}
.xae_c00139{left:597.066667pt;}
.xdb_c00139{left:599.866667pt;}
.xd3_c00139{left:603.866667pt;}
.xe4_c00139{left:605.066667pt;}
.x10b_c00139{left:606.133333pt;}
.x125_c00139{left:607.466667pt;}
.xff_c00139{left:608.400000pt;}
.xe0_c00139{left:610.400000pt;}
.xcc_c00139{left:612.133333pt;}
.x12f_c00139{left:613.466667pt;}
.xdc_c00139{left:614.933333pt;}
.xb5_c00139{left:616.533333pt;}
.xbc_c00139{left:618.133333pt;}
.xd4_c00139{left:620.133333pt;}
.xea_c00139{left:621.733333pt;}
.xed_c00139{left:622.933333pt;}
.xf5_c00139{left:624.266667pt;}
.x100_c00139{left:626.933333pt;}
.x140_c00139{left:628.266667pt;}
.xbd_c00139{left:632.266667pt;}
.xc7_c00139{left:633.466667pt;}
.x115_c00139{left:636.800000pt;}
.x130_c00139{left:638.400000pt;}
.xd5_c00139{left:640.266667pt;}
.x147_c00139{left:641.866667pt;}
.xc2_c00139{left:643.333333pt;}
.x104_c00139{left:644.933333pt;}
.x11c_c00139{left:647.066667pt;}
.xf9_c00139{left:648.933333pt;}
.xd6_c00139{left:650.133333pt;}
.x131_c00139{left:651.733333pt;}
.xc8_c00139{left:652.666667pt;}
.xb6_c00139{left:655.200000pt;}
.xf1_c00139{left:656.133333pt;}
.x132_c00139{left:657.466667pt;}
.xcd_c00139{left:658.933333pt;}
.xeb_c00139{left:660.133333pt;}
.xee_c00139{left:662.933333pt;}
.x10d_c00139{left:664.266667pt;}
.xe1_c00139{left:665.866667pt;}
.x116_c00139{left:668.133333pt;}
.x11f_c00139{left:670.266667pt;}
.x136_c00139{left:675.600000pt;}
.x129_c00139{left:676.800000pt;}
.x105_c00139{left:677.866667pt;}
.x138_c00139{left:679.066667pt;}
.x13d_c00139{left:681.066667pt;}
.xaf_c00139{left:682.800000pt;}
.xbe_c00139{left:685.333333pt;}
.xb7_c00139{left:686.266667pt;}
.x137_c00139{left:688.666667pt;}
.xce_c00139{left:689.600000pt;}
.x108_c00139{left:692.933333pt;}
.xfe_c00139{left:694.266667pt;}
.x122_c00139{left:696.000000pt;}
.xd7_c00139{left:697.866667pt;}
.x12a_c00139{left:700.133333pt;}
.xfa_c00139{left:701.066667pt;}
.x10e_c00139{left:705.200000pt;}
.x11a_c00139{left:706.533333pt;}
.xf2_c00139{left:708.666667pt;}
.xb8_c00139{left:711.200000pt;}
.xd8_c00139{left:712.533333pt;}
.x139_c00139{left:716.133333pt;}
.xef_c00139{left:718.000000pt;}
.x101_c00139{left:721.066667pt;}
.xf7_c00139{left:722.000000pt;}
.x106_c00139{left:722.933333pt;}
.x12b_c00139{left:725.600000pt;}
.xd9_c00139{left:729.866667pt;}
.xb0_c00139{left:731.466667pt;}
.x120_c00139{left:732.666667pt;}
.xc9_c00139{left:734.933333pt;}
.xe5_c00139{left:736.533333pt;}
.xb9_c00139{left:737.466667pt;}
.x107_c00139{left:738.666667pt;}
.xcf_c00139{left:739.866667pt;}
.x112_c00139{left:740.800000pt;}
.x144_c00139{left:742.266667pt;}
.x143_c00139{left:746.800000pt;}
.xbf_c00139{left:748.000000pt;}
.x13a_c00139{left:749.466667pt;}
.x109_c00139{left:751.200000pt;}
.xfb_c00139{left:753.600000pt;}
.xf0_c00139{left:754.533333pt;}
.x12c_c00139{left:755.733333pt;}
.xe2_c00139{left:758.000000pt;}
.x13e_c00139{left:760.400000pt;}
.xdd_c00139{left:763.466667pt;}
.x13b_c00139{left:766.133333pt;}
}





/* 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_c00140 {
    display:none;
  }
  .loading-indicator_c00140.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00140 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_c00140 { 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_c00140" -> "#page-container .classname_c00140")
 */
.pf_c00140 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00140 { /* 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_c00140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00140 { /* 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_c00140 { /* 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_c00140 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00140 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00140 {overflow:visible;}
  }
}
.c_c00140 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00140 { /* 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_c00140:after { /* webkit #35443 */
  content: '';
}
.t_c00140:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00140 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 */
}
.__c00140 { /* 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_c00140 { /* info for Javascript */
  display:none;
}
.l_c00140 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00140 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00140 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00140: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_c00140 {
    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_c00140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00140.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_c00140 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00140;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.000000;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;}
.m10a_c00140{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.mad_c00140{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m109_c00140{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m50_c00140{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.me3_c00140{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00140{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00140{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00140{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10_c00140{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m112_c00140{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m44_c00140{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00140{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m88_c00140{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m86_c00140{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m79_c00140{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00140{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m12_c00140{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00140{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00140{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00140{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.me7_c00140{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m105_c00140{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00140{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m90_c00140{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m81_c00140{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m16_c00140{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m82_c00140{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00140{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00140{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00140{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mff_c00140{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00140{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m29_c00140{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00140{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m62_c00140{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m96_c00140{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.maa_c00140{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m106_c00140{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6_c00140{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00140{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m67_c00140{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m107_c00140{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mab_c00140{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.me1_c00140{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m43_c00140{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00140{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00140{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00140{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m99_c00140{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00140{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mee_c00140{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00140{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me2_c00140{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m8_c00140{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00140{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00140{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md5_c00140{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.meb_c00140{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m25_c00140{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00140{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.me9_c00140{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00140{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m47_c00140{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00140{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md2_c00140{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m15_c00140{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00140{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m5_c00140{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m41_c00140{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00140{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m71_c00140{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.me4_c00140{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00140{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m73_c00140{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00140{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00140{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m33_c00140{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me8_c00140{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m23_c00140{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00140{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m22_c00140{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md8_c00140{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m68_c00140{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m45_c00140{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00140{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md4_c00140{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00140{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m76_c00140{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00140{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md3_c00140{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m24_c00140{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m93_c00140{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00140{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00140{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m21_c00140{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mca_c00140{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m13_c00140{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00140{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me6_c00140{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m19_c00140{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00140{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00140{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m75_c00140{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mba_c00140{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m80_c00140{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m54_c00140{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00140{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00140{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00140{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00140{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mde_c00140{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m100_c00140{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00140{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m95_c00140{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m39_c00140{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m87_c00140{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m35_c00140{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00140{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m18_c00140{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf_c00140{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mce_c00140{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m58_c00140{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00140{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m66_c00140{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00140{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00140{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m42_c00140{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00140{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m55_c00140{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00140{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m108_c00140{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00140{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00140{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00140{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00140{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.maf_c00140{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00140{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00140{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00140{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00140{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mac_c00140{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00140{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00140{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00140{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m72_c00140{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m49_c00140{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m52_c00140{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00140{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m59_c00140{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.med_c00140{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m70_c00140{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00140{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m85_c00140{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9_c00140{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00140{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00140{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m94_c00140{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7_c00140{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00140{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00140{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m57_c00140{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m53_c00140{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00140{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m83_c00140{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00140{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m78_c00140{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00140{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m32_c00140{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00140{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mef_c00140{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00140{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00140{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00140{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me0_c00140{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m30_c00140{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m56_c00140{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m40_c00140{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00140{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00140{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m104_c00140{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00140{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m74_c00140{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00140{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m111_c00140{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m89_c00140{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mae_c00140{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m60_c00140{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mda_c00140{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mb_c00140{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00140{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md7_c00140{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00140{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m48_c00140{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m65_c00140{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m37_c00140{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m101_c00140{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m36_c00140{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00140{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00140{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m103_c00140{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m28_c00140{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00140{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00140{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00140{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00140{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00140{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m17_c00140{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00140{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m77_c00140{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m97_c00140{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.md1_c00140{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m38_c00140{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m98_c00140{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00140{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00140{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m46_c00140{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md6_c00140{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma_c00140{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m69_c00140{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m31_c00140{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00140{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00140{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mea_c00140{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00140{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mec_c00140{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m27_c00140{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);}
.mfb_c00140{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m51_c00140{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00140{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00140{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00140{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00140{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m64_c00140{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m92_c00140{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00140{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00140{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00140{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00140{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00140{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m11_c00140{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00140{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.md9_c00140{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00140{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md0_c00140{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mc_c00140{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m61_c00140{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00140{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m110_c00140{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m63_c00140{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00140{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me5_c00140{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00140{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00140{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00140{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.md_c00140{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00140{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00140{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m91_c00140{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m84_c00140{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00140{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m26_c00140{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00140{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m102_c00140{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m14_c00140{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m3_c00140{transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);}
.m2_c00140{transform:matrix(0.358500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00140{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00140{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m20_c00140{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00140{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m34_c00140{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m0_c00140{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00140{transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls0_c00140{letter-spacing:0.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{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__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00140{word-spacing:-17.980892px;}
.ws1_c00140{word-spacing:-10.039125px;}
.ws2_c00140{word-spacing:-3.463209px;}
.ws7_c00140{word-spacing:0.000000px;}
.ws0_c00140{word-spacing:2.432665px;}
.ws4_c00140{word-spacing:4.000000px;}
.ws5_c00140{word-spacing:40.000000px;}
.ws6_c00140{word-spacing:162.631579px;}
.fc0_c00140{color:transparent;}
.fs4_c00140{font-size:30.000000px;}
.fs7_c00140{font-size:42.000000px;}
.fs5_c00140{font-size:48.000000px;}
.fs6_c00140{font-size:54.000000px;}
.fs3_c00140{font-size:60.000000px;}
.fs1_c00140{font-size:66.000000px;}
.fs2_c00140{font-size:72.000000px;}
.fs0_c00140{font-size:78.000000px;}
.y0_c00140{bottom:0.000000px;}
.y38_c00140{bottom:104.400000px;}
.y37_c00140{bottom:181.800000px;}
.y6e_c00140{bottom:182.250000px;}
.y36_c00140{bottom:200.100000px;}
.y6d_c00140{bottom:200.550000px;}
.y35_c00140{bottom:218.100000px;}
.y6c_c00140{bottom:230.400000px;}
.y34_c00140{bottom:235.650000px;}
.y6b_c00140{bottom:248.700000px;}
.y33_c00140{bottom:253.650000px;}
.y6a_c00140{bottom:266.700000px;}
.y32_c00140{bottom:271.650000px;}
.y69_c00140{bottom:284.400000px;}
.y31_c00140{bottom:289.350000px;}
.y68_c00140{bottom:302.400000px;}
.y30_c00140{bottom:307.650000px;}
.y67_c00140{bottom:312.450000px;}
.y66_c00140{bottom:320.400000px;}
.y2f_c00140{bottom:324.900000px;}
.y65_c00140{bottom:338.100000px;}
.y2e_c00140{bottom:342.600000px;}
.y64_c00140{bottom:355.800000px;}
.y2d_c00140{bottom:360.600000px;}
.y63_c00140{bottom:374.100000px;}
.y2c_c00140{bottom:378.300000px;}
.y62_c00140{bottom:390.750000px;}
.y2b_c00140{bottom:396.000000px;}
.y61_c00140{bottom:408.450000px;}
.y2a_c00140{bottom:418.200000px;}
.y60_c00140{bottom:426.450000px;}
.y29_c00140{bottom:435.900000px;}
.y5f_c00140{bottom:444.150000px;}
.y5e_c00140{bottom:462.150000px;}
.y28_c00140{bottom:462.300000px;}
.y5d_c00140{bottom:480.150000px;}
.y27_c00140{bottom:480.600000px;}
.y5c_c00140{bottom:497.850000px;}
.y26_c00140{bottom:498.150000px;}
.y25_c00140{bottom:515.850000px;}
.y5b_c00140{bottom:533.550000px;}
.y24_c00140{bottom:534.150000px;}
.y5a_c00140{bottom:551.550000px;}
.y23_c00140{bottom:551.850000px;}
.y59_c00140{bottom:569.250000px;}
.y22_c00140{bottom:569.550000px;}
.y58_c00140{bottom:587.250000px;}
.y21_c00140{bottom:587.550000px;}
.y20_c00140{bottom:605.100000px;}
.y57_c00140{bottom:605.250000px;}
.y1f_c00140{bottom:622.800000px;}
.y56_c00140{bottom:622.950000px;}
.y55_c00140{bottom:640.650000px;}
.y1e_c00140{bottom:640.800000px;}
.y54_c00140{bottom:658.350000px;}
.y1d_c00140{bottom:662.700000px;}
.y53_c00140{bottom:676.350000px;}
.y1c_c00140{bottom:680.700000px;}
.y52_c00140{bottom:694.050000px;}
.y1b_c00140{bottom:702.750000px;}
.y51_c00140{bottom:711.750000px;}
.y1a_c00140{bottom:725.100000px;}
.y50_c00140{bottom:729.750000px;}
.y4f_c00140{bottom:747.000000px;}
.y19_c00140{bottom:747.300000px;}
.y4e_c00140{bottom:765.000000px;}
.y18_c00140{bottom:765.300000px;}
.y4d_c00140{bottom:783.000000px;}
.y17_c00140{bottom:787.650000px;}
.y4c_c00140{bottom:800.700000px;}
.y16_c00140{bottom:810.000000px;}
.y4b_c00140{bottom:818.700000px;}
.y15_c00140{bottom:827.700000px;}
.y4a_c00140{bottom:836.400000px;}
.y14_c00140{bottom:845.550000px;}
.y49_c00140{bottom:854.400000px;}
.y13_c00140{bottom:867.150000px;}
.y48_c00140{bottom:872.100000px;}
.y12_c00140{bottom:885.900000px;}
.y47_c00140{bottom:890.100000px;}
.y11_c00140{bottom:907.650000px;}
.y46_c00140{bottom:909.600000px;}
.y45_c00140{bottom:925.500000px;}
.y10_c00140{bottom:929.550000px;}
.y44_c00140{bottom:943.500000px;}
.ye_c00140{bottom:951.900000px;}
.y43_c00140{bottom:961.200000px;}
.yd_c00140{bottom:969.750000px;}
.y42_c00140{bottom:978.900000px;}
.yc_c00140{bottom:989.550000px;}
.y41_c00140{bottom:996.900000px;}
.yf_c00140{bottom:997.200000px;}
.yb_c00140{bottom:998.250000px;}
.ya_c00140{bottom:1006.200000px;}
.y40_c00140{bottom:1017.300000px;}
.y9_c00140{bottom:1024.500000px;}
.y7_c00140{bottom:1026.000000px;}
.y3f_c00140{bottom:1031.700000px;}
.y8_c00140{bottom:1034.250000px;}
.y3e_c00140{bottom:1046.850000px;}
.y6_c00140{bottom:1048.350000px;}
.y3d_c00140{bottom:1060.200000px;}
.y5_c00140{bottom:1069.950000px;}
.y3c_c00140{bottom:1074.600000px;}
.y4_c00140{bottom:1088.700000px;}
.y3b_c00140{bottom:1090.050000px;}
.y3a_c00140{bottom:1103.400000px;}
.y3_c00140{bottom:1114.500000px;}
.y39_c00140{bottom:1119.300000px;}
.y1_c00140{bottom:1141.500000px;}
.y2_c00140{bottom:1142.250000px;}
.h6_c00140{height:30.000000px;}
.h9_c00140{height:42.000000px;}
.h7_c00140{height:48.000000px;}
.h8_c00140{height:54.000000px;}
.h5_c00140{height:60.000000px;}
.h3_c00140{height:66.000000px;}
.h4_c00140{height:72.000000px;}
.h2_c00140{height:78.000000px;}
.h1_c00140{height:1277.250000px;}
.h0_c00140{height:1277.280030px;}
.w1_c00140{width:953.250000px;}
.w0_c00140{width:953.280030px;}
.x0_c00140{left:0.000000px;}
.x95_c00140{left:5.700000px;}
.x5_c00140{left:68.700000px;}
.xd_c00140{left:69.900000px;}
.x57_c00140{left:75.600000px;}
.x6e_c00140{left:76.650000px;}
.x71_c00140{left:77.700000px;}
.x9_c00140{left:88.200000px;}
.x1f_c00140{left:89.250000px;}
.x31_c00140{left:90.300000px;}
.x44_c00140{left:91.800000px;}
.x54_c00140{left:93.750000px;}
.x6a_c00140{left:95.550000px;}
.x87_c00140{left:97.350000px;}
.xa_c00140{left:107.250000px;}
.x24_c00140{left:109.200000px;}
.x3d_c00140{left:111.300000px;}
.x48_c00140{left:112.650000px;}
.x74_c00140{left:113.700000px;}
.x5c_c00140{left:115.500000px;}
.x65_c00140{left:117.750000px;}
.xe_c00140{left:118.800000px;}
.x81_c00140{left:120.300000px;}
.x18_c00140{left:123.000000px;}
.x4d_c00140{left:124.950000px;}
.x61_c00140{left:126.900000px;}
.x55_c00140{left:128.250000px;}
.x32_c00140{left:129.900000px;}
.x7a_c00140{left:132.300000px;}
.x89_c00140{left:134.700000px;}
.x8f_c00140{left:136.050000px;}
.x58_c00140{left:139.650000px;}
.x2b_c00140{left:143.250000px;}
.x51_c00140{left:144.300000px;}
.x83_c00140{left:145.350000px;}
.x62_c00140{left:146.400000px;}
.x3_c00140{left:149.400000px;}
.x19_c00140{left:153.300000px;}
.x20_c00140{left:154.350000px;}
.x1a_c00140{left:155.850000px;}
.x49_c00140{left:156.900000px;}
.x4b_c00140{left:160.200000px;}
.x66_c00140{left:162.000000px;}
.x39_c00140{left:165.900000px;}
.x88_c00140{left:167.700000px;}
.x22_c00140{left:169.650000px;}
.x1b_c00140{left:172.650000px;}
.x90_c00140{left:174.600000px;}
.x25_c00140{left:175.650000px;}
.x75_c00140{left:177.000000px;}
.x2c_c00140{left:178.200000px;}
.x56_c00140{left:180.750000px;}
.x85_c00140{left:183.000000px;}
.x46_c00140{left:184.650000px;}
.xf_c00140{left:186.900000px;}
.x26_c00140{left:188.250000px;}
.xb_c00140{left:190.050000px;}
.x3a_c00140{left:191.850000px;}
.x7b_c00140{left:193.200000px;}
.x67_c00140{left:195.900000px;}
.x2d_c00140{left:198.300000px;}
.x6b_c00140{left:200.700000px;}
.x33_c00140{left:202.350000px;}
.x6_c00140{left:204.000000px;}
.x4a_c00140{left:205.800000px;}
.x8a_c00140{left:208.800000px;}
.x5d_c00140{left:210.900000px;}
.x84_c00140{left:212.550000px;}
.x63_c00140{left:215.100000px;}
.x21_c00140{left:216.750000px;}
.x3b_c00140{left:222.450000px;}
.x3f_c00140{left:224.250000px;}
.x76_c00140{left:225.300000px;}
.x34_c00140{left:227.250000px;}
.x7c_c00140{left:229.950000px;}
.xc_c00140{left:232.200000px;}
.x2e_c00140{left:233.550000px;}
.x59_c00140{left:235.350000px;}
.x23_c00140{left:239.100000px;}
.x91_c00140{left:240.900000px;}
.x64_c00140{left:243.900000px;}
.x3e_c00140{left:246.000000px;}
.x8c_c00140{left:247.050000px;}
.x10_c00140{left:248.400000px;}
.x1c_c00140{left:249.750000px;}
.x5e_c00140{left:250.800000px;}
.x35_c00140{left:252.450000px;}
.x4_c00140{left:253.500000px;}
.x27_c00140{left:258.750000px;}
.x52_c00140{left:261.000000px;}
.x12_c00140{left:262.500000px;}
.x36_c00140{left:265.050000px;}
.x77_c00140{left:266.250000px;}
.x40_c00140{left:268.200000px;}
.x72_c00140{left:270.150000px;}
.x47_c00140{left:271.350000px;}
.x2f_c00140{left:276.000000px;}
.x7d_c00140{left:280.050000px;}
.x13_c00140{left:281.250000px;}
.x5a_c00140{left:283.200000px;}
.x7_c00140{left:285.750000px;}
.x4c_c00140{left:288.000000px;}
.x8b_c00140{left:289.050000px;}
.x4e_c00140{left:292.650000px;}
.x7e_c00140{left:293.700000px;}
.x82_c00140{left:295.350000px;}
.x14_c00140{left:299.550000px;}
.x6f_c00140{left:300.600000px;}
.x28_c00140{left:304.050000px;}
.x3c_c00140{left:307.350000px;}
.x1_c00140{left:311.400000px;}
.x37_c00140{left:312.900000px;}
.x7f_c00140{left:314.250000px;}
.x92_c00140{left:316.200000px;}
.x78_c00140{left:317.400000px;}
.x6c_c00140{left:318.450000px;}
.x30_c00140{left:321.300000px;}
.x16_c00140{left:323.550000px;}
.x29_c00140{left:324.600000px;}
.x93_c00140{left:329.100000px;}
.x8_c00140{left:330.450000px;}
.x41_c00140{left:333.750000px;}
.x38_c00140{left:337.050000px;}
.x1d_c00140{left:338.700000px;}
.x73_c00140{left:342.150000px;}
.x4f_c00140{left:343.350000px;}
.x15_c00140{left:345.600000px;}
.x53_c00140{left:348.600000px;}
.x5b_c00140{left:350.550000px;}
.x86_c00140{left:355.050000px;}
.x8d_c00140{left:356.850000px;}
.x42_c00140{left:361.050000px;}
.x94_c00140{left:366.600000px;}
.x5f_c00140{left:368.100000px;}
.x68_c00140{left:369.450000px;}
.x11_c00140{left:372.600000px;}
.x8e_c00140{left:376.950000px;}
.x2a_c00140{left:381.150000px;}
.x43_c00140{left:385.200000px;}
.x60_c00140{left:386.850000px;}
.x69_c00140{left:388.200000px;}
.x70_c00140{left:390.300000px;}
.x50_c00140{left:393.000000px;}
.x6d_c00140{left:394.050000px;}
.x45_c00140{left:397.050000px;}
.x1e_c00140{left:398.100000px;}
.x79_c00140{left:400.950000px;}
.x80_c00140{left:404.250000px;}
.x17_c00140{left:405.300000px;}
.x96_c00140{left:426.600000px;}
.xbf_c00140{left:429.900000px;}
.x133_c00140{left:435.900000px;}
.x136_c00140{left:438.450000px;}
.x9f_c00140{left:442.050000px;}
.xc3_c00140{left:447.600000px;}
.xe8_c00140{left:448.650000px;}
.xf7_c00140{left:449.850000px;}
.x10c_c00140{left:451.050000px;}
.x11f_c00140{left:452.100000px;}
.x129_c00140{left:453.150000px;}
.x135_c00140{left:454.650000px;}
.x13a_c00140{left:455.850000px;}
.xbb_c00140{left:457.200000px;}
.xe9_c00140{left:461.250000px;}
.xb0_c00140{left:466.800000px;}
.x105_c00140{left:468.000000px;}
.x12a_c00140{left:470.100000px;}
.xa0_c00140{left:471.150000px;}
.xf8_c00140{left:472.950000px;}
.xb9_c00140{left:474.600000px;}
.xd7_c00140{left:475.950000px;}
.xb1_c00140{left:478.350000px;}
.x137_c00140{left:481.350000px;}
.xff_c00140{left:483.300000px;}
.xf3_c00140{left:485.100000px;}
.x97_c00140{left:487.500000px;}
.xe2_c00140{left:489.000000px;}
.xa1_c00140{left:490.200000px;}
.x131_c00140{left:491.250000px;}
.xdd_c00140{left:493.200000px;}
.xb2_c00140{left:497.100000px;}
.xe3_c00140{left:498.300000px;}
.x100_c00140{left:500.250000px;}
.xcd_c00140{left:502.200000px;}
.x117_c00140{left:503.400000px;}
.xc4_c00140{left:508.500000px;}
.xec_c00140{left:510.300000px;}
.xb3_c00140{left:511.500000px;}
.xc0_c00140{left:512.700000px;}
.x12b_c00140{left:515.100000px;}
.x113_c00140{left:516.300000px;}
.xf9_c00140{left:517.650000px;}
.xc9_c00140{left:519.150000px;}
.x115_c00140{left:520.200000px;}
.x120_c00140{left:522.300000px;}
.xce_c00140{left:523.800000px;}
.xa2_c00140{left:525.450000px;}
.x10d_c00140{left:527.400000px;}
.xed_c00140{left:529.350000px;}
.x138_c00140{left:530.550000px;}
.xd3_c00140{left:535.200000px;}
.xa7_c00140{left:536.250000px;}
.xfa_c00140{left:538.500000px;}
.x122_c00140{left:540.450000px;}
.xe4_c00140{left:541.500000px;}
.xd8_c00140{left:543.900000px;}
.xb4_c00140{left:546.450000px;}
.x107_c00140{left:548.700000px;}
.x98_c00140{left:549.750000px;}
.x12c_c00140{left:551.850000px;}
.x134_c00140{left:554.250000px;}
.xc5_c00140{left:556.050000px;}
.x101_c00140{left:557.400000px;}
.xcf_c00140{left:560.100000px;}
.x111_c00140{left:561.300000px;}
.x11c_c00140{left:563.100000px;}
.x10a_c00140{left:564.450000px;}
.xd9_c00140{left:565.800000px;}
.xa3_c00140{left:568.650000px;}
.x99_c00140{left:569.850000px;}
.xea_c00140{left:571.500000px;}
.x12d_c00140{left:573.750000px;}
.xd4_c00140{left:574.800000px;}
.x12e_c00140{left:576.750000px;}
.xf4_c00140{left:578.250000px;}
.xa8_c00140{left:579.450000px;}
.xde_c00140{left:580.800000px;}
.xfb_c00140{left:582.000000px;}
.x118_c00140{left:583.650000px;}
.xa9_c00140{left:586.650000px;}
.xb5_c00140{left:588.150000px;}
.xda_c00140{left:589.950000px;}
.xeb_c00140{left:591.000000px;}
.x121_c00140{left:592.050000px;}
.xaa_c00140{left:594.600000px;}
.xd0_c00140{left:601.500000px;}
.xe5_c00140{left:602.700000px;}
.xb6_c00140{left:604.050000px;}
.x9a_c00140{left:605.850000px;}
.xee_c00140{left:608.550000px;}
.xca_c00140{left:610.650000px;}
.xa4_c00140{left:613.650000px;}
.xf5_c00140{left:615.750000px;}
.x10e_c00140{left:617.400000px;}
.x106_c00140{left:620.400000px;}
.x11a_c00140{left:621.750000px;}
.xab_c00140{left:622.800000px;}
.x108_c00140{left:625.650000px;}
.xa5_c00140{left:629.850000px;}
.xef_c00140{left:631.950000px;}
.xb7_c00140{left:635.700000px;}
.x11d_c00140{left:637.800000px;}
.xd1_c00140{left:639.300000px;}
.xcb_c00140{left:641.250000px;}
.x10b_c00140{left:643.350000px;}
.x116_c00140{left:644.700000px;}
.xd5_c00140{left:646.800000px;}
.x102_c00140{left:648.300000px;}
.xc6_c00140{left:650.550000px;}
.x9b_c00140{left:651.600000px;}
.x124_c00140{left:654.000000px;}
.xb8_c00140{left:655.200000px;}
.xf0_c00140{left:656.400000px;}
.xcc_c00140{left:657.750000px;}
.x109_c00140{left:660.600000px;}
.xd6_c00140{left:661.950000px;}
.xa6_c00140{left:663.000000px;}
.xdf_c00140{left:664.650000px;}
.xac_c00140{left:666.000000px;}
.x132_c00140{left:670.200000px;}
.x104_c00140{left:672.450000px;}
.x127_c00140{left:673.950000px;}
.xdb_c00140{left:675.300000px;}
.xf1_c00140{left:678.000000px;}
.x112_c00140{left:680.850000px;}
.x9c_c00140{left:682.200000px;}
.x103_c00140{left:683.250000px;}
.x10f_c00140{left:686.100000px;}
.x11e_c00140{left:687.150000px;}
.xfc_c00140{left:688.200000px;}
.x125_c00140{left:689.250000px;}
.x128_c00140{left:691.050000px;}
.xad_c00140{left:693.000000px;}
.xe0_c00140{left:694.500000px;}
.xbe_c00140{left:695.850000px;}
.xc1_c00140{left:698.550000px;}
.x139_c00140{left:699.900000px;}
.xc7_c00140{left:703.050000px;}
.xfe_c00140{left:704.400000px;}
.xe6_c00140{left:706.350000px;}
.x110_c00140{left:707.400000px;}
.xfd_c00140{left:710.550000px;}
.x9d_c00140{left:713.100000px;}
.x130_c00140{left:717.000000px;}
.xc2_c00140{left:718.650000px;}
.x119_c00140{left:720.450000px;}
.xae_c00140{left:722.100000px;}
.xbd_c00140{left:723.600000px;}
.xe7_c00140{left:725.850000px;}
.xf2_c00140{left:727.350000px;}
.xdc_c00140{left:730.800000px;}
.xe1_c00140{left:733.050000px;}
.x2_c00140{left:735.450000px;}
.xf6_c00140{left:737.550000px;}
.xd2_c00140{left:741.150000px;}
.x12f_c00140{left:743.400000px;}
.xba_c00140{left:745.200000px;}
.x9e_c00140{left:746.550000px;}
.x11b_c00140{left:748.500000px;}
.xaf_c00140{left:750.150000px;}
.xbc_c00140{left:751.200000px;}
.x114_c00140{left:752.850000px;}
.xc8_c00140{left:758.550000px;}
.x126_c00140{left:762.300000px;}
.x123_c00140{left:765.450000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws3_c00140{word-spacing:-15.983015pt;}
.ws1_c00140{word-spacing:-8.923667pt;}
.ws2_c00140{word-spacing:-3.078408pt;}
.ws7_c00140{word-spacing:0.000000pt;}
.ws0_c00140{word-spacing:2.162369pt;}
.ws4_c00140{word-spacing:3.555556pt;}
.ws5_c00140{word-spacing:35.555556pt;}
.ws6_c00140{word-spacing:144.561404pt;}
.fs4_c00140{font-size:26.666667pt;}
.fs7_c00140{font-size:37.333333pt;}
.fs5_c00140{font-size:42.666667pt;}
.fs6_c00140{font-size:48.000000pt;}
.fs3_c00140{font-size:53.333333pt;}
.fs1_c00140{font-size:58.666667pt;}
.fs2_c00140{font-size:64.000000pt;}
.fs0_c00140{font-size:69.333333pt;}
.y0_c00140{bottom:0.000000pt;}
.y38_c00140{bottom:92.800000pt;}
.y37_c00140{bottom:161.600000pt;}
.y6e_c00140{bottom:162.000000pt;}
.y36_c00140{bottom:177.866667pt;}
.y6d_c00140{bottom:178.266667pt;}
.y35_c00140{bottom:193.866667pt;}
.y6c_c00140{bottom:204.800000pt;}
.y34_c00140{bottom:209.466667pt;}
.y6b_c00140{bottom:221.066667pt;}
.y33_c00140{bottom:225.466667pt;}
.y6a_c00140{bottom:237.066667pt;}
.y32_c00140{bottom:241.466667pt;}
.y69_c00140{bottom:252.800000pt;}
.y31_c00140{bottom:257.200000pt;}
.y68_c00140{bottom:268.800000pt;}
.y30_c00140{bottom:273.466667pt;}
.y67_c00140{bottom:277.733333pt;}
.y66_c00140{bottom:284.800000pt;}
.y2f_c00140{bottom:288.800000pt;}
.y65_c00140{bottom:300.533333pt;}
.y2e_c00140{bottom:304.533333pt;}
.y64_c00140{bottom:316.266667pt;}
.y2d_c00140{bottom:320.533333pt;}
.y63_c00140{bottom:332.533333pt;}
.y2c_c00140{bottom:336.266667pt;}
.y62_c00140{bottom:347.333333pt;}
.y2b_c00140{bottom:352.000000pt;}
.y61_c00140{bottom:363.066667pt;}
.y2a_c00140{bottom:371.733333pt;}
.y60_c00140{bottom:379.066667pt;}
.y29_c00140{bottom:387.466667pt;}
.y5f_c00140{bottom:394.800000pt;}
.y5e_c00140{bottom:410.800000pt;}
.y28_c00140{bottom:410.933333pt;}
.y5d_c00140{bottom:426.800000pt;}
.y27_c00140{bottom:427.200000pt;}
.y5c_c00140{bottom:442.533333pt;}
.y26_c00140{bottom:442.800000pt;}
.y25_c00140{bottom:458.533333pt;}
.y5b_c00140{bottom:474.266667pt;}
.y24_c00140{bottom:474.800000pt;}
.y5a_c00140{bottom:490.266667pt;}
.y23_c00140{bottom:490.533333pt;}
.y59_c00140{bottom:506.000000pt;}
.y22_c00140{bottom:506.266667pt;}
.y58_c00140{bottom:522.000000pt;}
.y21_c00140{bottom:522.266667pt;}
.y20_c00140{bottom:537.866667pt;}
.y57_c00140{bottom:538.000000pt;}
.y1f_c00140{bottom:553.600000pt;}
.y56_c00140{bottom:553.733333pt;}
.y55_c00140{bottom:569.466667pt;}
.y1e_c00140{bottom:569.600000pt;}
.y54_c00140{bottom:585.200000pt;}
.y1d_c00140{bottom:589.066667pt;}
.y53_c00140{bottom:601.200000pt;}
.y1c_c00140{bottom:605.066667pt;}
.y52_c00140{bottom:616.933333pt;}
.y1b_c00140{bottom:624.666667pt;}
.y51_c00140{bottom:632.666667pt;}
.y1a_c00140{bottom:644.533333pt;}
.y50_c00140{bottom:648.666667pt;}
.y4f_c00140{bottom:664.000000pt;}
.y19_c00140{bottom:664.266667pt;}
.y4e_c00140{bottom:680.000000pt;}
.y18_c00140{bottom:680.266667pt;}
.y4d_c00140{bottom:696.000000pt;}
.y17_c00140{bottom:700.133333pt;}
.y4c_c00140{bottom:711.733333pt;}
.y16_c00140{bottom:720.000000pt;}
.y4b_c00140{bottom:727.733333pt;}
.y15_c00140{bottom:735.733333pt;}
.y4a_c00140{bottom:743.466667pt;}
.y14_c00140{bottom:751.600000pt;}
.y49_c00140{bottom:759.466667pt;}
.y13_c00140{bottom:770.800000pt;}
.y48_c00140{bottom:775.200000pt;}
.y12_c00140{bottom:787.466667pt;}
.y47_c00140{bottom:791.200000pt;}
.y11_c00140{bottom:806.800000pt;}
.y46_c00140{bottom:808.533333pt;}
.y45_c00140{bottom:822.666667pt;}
.y10_c00140{bottom:826.266667pt;}
.y44_c00140{bottom:838.666667pt;}
.ye_c00140{bottom:846.133333pt;}
.y43_c00140{bottom:854.400000pt;}
.yd_c00140{bottom:862.000000pt;}
.y42_c00140{bottom:870.133333pt;}
.yc_c00140{bottom:879.600000pt;}
.y41_c00140{bottom:886.133333pt;}
.yf_c00140{bottom:886.400000pt;}
.yb_c00140{bottom:887.333333pt;}
.ya_c00140{bottom:894.400000pt;}
.y40_c00140{bottom:904.266667pt;}
.y9_c00140{bottom:910.666667pt;}
.y7_c00140{bottom:912.000000pt;}
.y3f_c00140{bottom:917.066667pt;}
.y8_c00140{bottom:919.333333pt;}
.y3e_c00140{bottom:930.533333pt;}
.y6_c00140{bottom:931.866667pt;}
.y3d_c00140{bottom:942.400000pt;}
.y5_c00140{bottom:951.066667pt;}
.y3c_c00140{bottom:955.200000pt;}
.y4_c00140{bottom:967.733333pt;}
.y3b_c00140{bottom:968.933333pt;}
.y3a_c00140{bottom:980.800000pt;}
.y3_c00140{bottom:990.666667pt;}
.y39_c00140{bottom:994.933333pt;}
.y1_c00140{bottom:1014.666667pt;}
.y2_c00140{bottom:1015.333333pt;}
.h6_c00140{height:26.666667pt;}
.h9_c00140{height:37.333333pt;}
.h7_c00140{height:42.666667pt;}
.h8_c00140{height:48.000000pt;}
.h5_c00140{height:53.333333pt;}
.h3_c00140{height:58.666667pt;}
.h4_c00140{height:64.000000pt;}
.h2_c00140{height:69.333333pt;}
.h1_c00140{height:1135.333333pt;}
.h0_c00140{height:1135.360027pt;}
.w1_c00140{width:847.333333pt;}
.w0_c00140{width:847.360027pt;}
.x0_c00140{left:0.000000pt;}
.x95_c00140{left:5.066667pt;}
.x5_c00140{left:61.066667pt;}
.xd_c00140{left:62.133333pt;}
.x57_c00140{left:67.200000pt;}
.x6e_c00140{left:68.133333pt;}
.x71_c00140{left:69.066667pt;}
.x9_c00140{left:78.400000pt;}
.x1f_c00140{left:79.333333pt;}
.x31_c00140{left:80.266667pt;}
.x44_c00140{left:81.600000pt;}
.x54_c00140{left:83.333333pt;}
.x6a_c00140{left:84.933333pt;}
.x87_c00140{left:86.533333pt;}
.xa_c00140{left:95.333333pt;}
.x24_c00140{left:97.066667pt;}
.x3d_c00140{left:98.933333pt;}
.x48_c00140{left:100.133333pt;}
.x74_c00140{left:101.066667pt;}
.x5c_c00140{left:102.666667pt;}
.x65_c00140{left:104.666667pt;}
.xe_c00140{left:105.600000pt;}
.x81_c00140{left:106.933333pt;}
.x18_c00140{left:109.333333pt;}
.x4d_c00140{left:111.066667pt;}
.x61_c00140{left:112.800000pt;}
.x55_c00140{left:114.000000pt;}
.x32_c00140{left:115.466667pt;}
.x7a_c00140{left:117.600000pt;}
.x89_c00140{left:119.733333pt;}
.x8f_c00140{left:120.933333pt;}
.x58_c00140{left:124.133333pt;}
.x2b_c00140{left:127.333333pt;}
.x51_c00140{left:128.266667pt;}
.x83_c00140{left:129.200000pt;}
.x62_c00140{left:130.133333pt;}
.x3_c00140{left:132.800000pt;}
.x19_c00140{left:136.266667pt;}
.x20_c00140{left:137.200000pt;}
.x1a_c00140{left:138.533333pt;}
.x49_c00140{left:139.466667pt;}
.x4b_c00140{left:142.400000pt;}
.x66_c00140{left:144.000000pt;}
.x39_c00140{left:147.466667pt;}
.x88_c00140{left:149.066667pt;}
.x22_c00140{left:150.800000pt;}
.x1b_c00140{left:153.466667pt;}
.x90_c00140{left:155.200000pt;}
.x25_c00140{left:156.133333pt;}
.x75_c00140{left:157.333333pt;}
.x2c_c00140{left:158.400000pt;}
.x56_c00140{left:160.666667pt;}
.x85_c00140{left:162.666667pt;}
.x46_c00140{left:164.133333pt;}
.xf_c00140{left:166.133333pt;}
.x26_c00140{left:167.333333pt;}
.xb_c00140{left:168.933333pt;}
.x3a_c00140{left:170.533333pt;}
.x7b_c00140{left:171.733333pt;}
.x67_c00140{left:174.133333pt;}
.x2d_c00140{left:176.266667pt;}
.x6b_c00140{left:178.400000pt;}
.x33_c00140{left:179.866667pt;}
.x6_c00140{left:181.333333pt;}
.x4a_c00140{left:182.933333pt;}
.x8a_c00140{left:185.600000pt;}
.x5d_c00140{left:187.466667pt;}
.x84_c00140{left:188.933333pt;}
.x63_c00140{left:191.200000pt;}
.x21_c00140{left:192.666667pt;}
.x3b_c00140{left:197.733333pt;}
.x3f_c00140{left:199.333333pt;}
.x76_c00140{left:200.266667pt;}
.x34_c00140{left:202.000000pt;}
.x7c_c00140{left:204.400000pt;}
.xc_c00140{left:206.400000pt;}
.x2e_c00140{left:207.600000pt;}
.x59_c00140{left:209.200000pt;}
.x23_c00140{left:212.533333pt;}
.x91_c00140{left:214.133333pt;}
.x64_c00140{left:216.800000pt;}
.x3e_c00140{left:218.666667pt;}
.x8c_c00140{left:219.600000pt;}
.x10_c00140{left:220.800000pt;}
.x1c_c00140{left:222.000000pt;}
.x5e_c00140{left:222.933333pt;}
.x35_c00140{left:224.400000pt;}
.x4_c00140{left:225.333333pt;}
.x27_c00140{left:230.000000pt;}
.x52_c00140{left:232.000000pt;}
.x12_c00140{left:233.333333pt;}
.x36_c00140{left:235.600000pt;}
.x77_c00140{left:236.666667pt;}
.x40_c00140{left:238.400000pt;}
.x72_c00140{left:240.133333pt;}
.x47_c00140{left:241.200000pt;}
.x2f_c00140{left:245.333333pt;}
.x7d_c00140{left:248.933333pt;}
.x13_c00140{left:250.000000pt;}
.x5a_c00140{left:251.733333pt;}
.x7_c00140{left:254.000000pt;}
.x4c_c00140{left:256.000000pt;}
.x8b_c00140{left:256.933333pt;}
.x4e_c00140{left:260.133333pt;}
.x7e_c00140{left:261.066667pt;}
.x82_c00140{left:262.533333pt;}
.x14_c00140{left:266.266667pt;}
.x6f_c00140{left:267.200000pt;}
.x28_c00140{left:270.266667pt;}
.x3c_c00140{left:273.200000pt;}
.x1_c00140{left:276.800000pt;}
.x37_c00140{left:278.133333pt;}
.x7f_c00140{left:279.333333pt;}
.x92_c00140{left:281.066667pt;}
.x78_c00140{left:282.133333pt;}
.x6c_c00140{left:283.066667pt;}
.x30_c00140{left:285.600000pt;}
.x16_c00140{left:287.600000pt;}
.x29_c00140{left:288.533333pt;}
.x93_c00140{left:292.533333pt;}
.x8_c00140{left:293.733333pt;}
.x41_c00140{left:296.666667pt;}
.x38_c00140{left:299.600000pt;}
.x1d_c00140{left:301.066667pt;}
.x73_c00140{left:304.133333pt;}
.x4f_c00140{left:305.200000pt;}
.x15_c00140{left:307.200000pt;}
.x53_c00140{left:309.866667pt;}
.x5b_c00140{left:311.600000pt;}
.x86_c00140{left:315.600000pt;}
.x8d_c00140{left:317.200000pt;}
.x42_c00140{left:320.933333pt;}
.x94_c00140{left:325.866667pt;}
.x5f_c00140{left:327.200000pt;}
.x68_c00140{left:328.400000pt;}
.x11_c00140{left:331.200000pt;}
.x8e_c00140{left:335.066667pt;}
.x2a_c00140{left:338.800000pt;}
.x43_c00140{left:342.400000pt;}
.x60_c00140{left:343.866667pt;}
.x69_c00140{left:345.066667pt;}
.x70_c00140{left:346.933333pt;}
.x50_c00140{left:349.333333pt;}
.x6d_c00140{left:350.266667pt;}
.x45_c00140{left:352.933333pt;}
.x1e_c00140{left:353.866667pt;}
.x79_c00140{left:356.400000pt;}
.x80_c00140{left:359.333333pt;}
.x17_c00140{left:360.266667pt;}
.x96_c00140{left:379.200000pt;}
.xbf_c00140{left:382.133333pt;}
.x133_c00140{left:387.466667pt;}
.x136_c00140{left:389.733333pt;}
.x9f_c00140{left:392.933333pt;}
.xc3_c00140{left:397.866667pt;}
.xe8_c00140{left:398.800000pt;}
.xf7_c00140{left:399.866667pt;}
.x10c_c00140{left:400.933333pt;}
.x11f_c00140{left:401.866667pt;}
.x129_c00140{left:402.800000pt;}
.x135_c00140{left:404.133333pt;}
.x13a_c00140{left:405.200000pt;}
.xbb_c00140{left:406.400000pt;}
.xe9_c00140{left:410.000000pt;}
.xb0_c00140{left:414.933333pt;}
.x105_c00140{left:416.000000pt;}
.x12a_c00140{left:417.866667pt;}
.xa0_c00140{left:418.800000pt;}
.xf8_c00140{left:420.400000pt;}
.xb9_c00140{left:421.866667pt;}
.xd7_c00140{left:423.066667pt;}
.xb1_c00140{left:425.200000pt;}
.x137_c00140{left:427.866667pt;}
.xff_c00140{left:429.600000pt;}
.xf3_c00140{left:431.200000pt;}
.x97_c00140{left:433.333333pt;}
.xe2_c00140{left:434.666667pt;}
.xa1_c00140{left:435.733333pt;}
.x131_c00140{left:436.666667pt;}
.xdd_c00140{left:438.400000pt;}
.xb2_c00140{left:441.866667pt;}
.xe3_c00140{left:442.933333pt;}
.x100_c00140{left:444.666667pt;}
.xcd_c00140{left:446.400000pt;}
.x117_c00140{left:447.466667pt;}
.xc4_c00140{left:452.000000pt;}
.xec_c00140{left:453.600000pt;}
.xb3_c00140{left:454.666667pt;}
.xc0_c00140{left:455.733333pt;}
.x12b_c00140{left:457.866667pt;}
.x113_c00140{left:458.933333pt;}
.xf9_c00140{left:460.133333pt;}
.xc9_c00140{left:461.466667pt;}
.x115_c00140{left:462.400000pt;}
.x120_c00140{left:464.266667pt;}
.xce_c00140{left:465.600000pt;}
.xa2_c00140{left:467.066667pt;}
.x10d_c00140{left:468.800000pt;}
.xed_c00140{left:470.533333pt;}
.x138_c00140{left:471.600000pt;}
.xd3_c00140{left:475.733333pt;}
.xa7_c00140{left:476.666667pt;}
.xfa_c00140{left:478.666667pt;}
.x122_c00140{left:480.400000pt;}
.xe4_c00140{left:481.333333pt;}
.xd8_c00140{left:483.466667pt;}
.xb4_c00140{left:485.733333pt;}
.x107_c00140{left:487.733333pt;}
.x98_c00140{left:488.666667pt;}
.x12c_c00140{left:490.533333pt;}
.x134_c00140{left:492.666667pt;}
.xc5_c00140{left:494.266667pt;}
.x101_c00140{left:495.466667pt;}
.xcf_c00140{left:497.866667pt;}
.x111_c00140{left:498.933333pt;}
.x11c_c00140{left:500.533333pt;}
.x10a_c00140{left:501.733333pt;}
.xd9_c00140{left:502.933333pt;}
.xa3_c00140{left:505.466667pt;}
.x99_c00140{left:506.533333pt;}
.xea_c00140{left:508.000000pt;}
.x12d_c00140{left:510.000000pt;}
.xd4_c00140{left:510.933333pt;}
.x12e_c00140{left:512.666667pt;}
.xf4_c00140{left:514.000000pt;}
.xa8_c00140{left:515.066667pt;}
.xde_c00140{left:516.266667pt;}
.xfb_c00140{left:517.333333pt;}
.x118_c00140{left:518.800000pt;}
.xa9_c00140{left:521.466667pt;}
.xb5_c00140{left:522.800000pt;}
.xda_c00140{left:524.400000pt;}
.xeb_c00140{left:525.333333pt;}
.x121_c00140{left:526.266667pt;}
.xaa_c00140{left:528.533333pt;}
.xd0_c00140{left:534.666667pt;}
.xe5_c00140{left:535.733333pt;}
.xb6_c00140{left:536.933333pt;}
.x9a_c00140{left:538.533333pt;}
.xee_c00140{left:540.933333pt;}
.xca_c00140{left:542.800000pt;}
.xa4_c00140{left:545.466667pt;}
.xf5_c00140{left:547.333333pt;}
.x10e_c00140{left:548.800000pt;}
.x106_c00140{left:551.466667pt;}
.x11a_c00140{left:552.666667pt;}
.xab_c00140{left:553.600000pt;}
.x108_c00140{left:556.133333pt;}
.xa5_c00140{left:559.866667pt;}
.xef_c00140{left:561.733333pt;}
.xb7_c00140{left:565.066667pt;}
.x11d_c00140{left:566.933333pt;}
.xd1_c00140{left:568.266667pt;}
.xcb_c00140{left:570.000000pt;}
.x10b_c00140{left:571.866667pt;}
.x116_c00140{left:573.066667pt;}
.xd5_c00140{left:574.933333pt;}
.x102_c00140{left:576.266667pt;}
.xc6_c00140{left:578.266667pt;}
.x9b_c00140{left:579.200000pt;}
.x124_c00140{left:581.333333pt;}
.xb8_c00140{left:582.400000pt;}
.xf0_c00140{left:583.466667pt;}
.xcc_c00140{left:584.666667pt;}
.x109_c00140{left:587.200000pt;}
.xd6_c00140{left:588.400000pt;}
.xa6_c00140{left:589.333333pt;}
.xdf_c00140{left:590.800000pt;}
.xac_c00140{left:592.000000pt;}
.x132_c00140{left:595.733333pt;}
.x104_c00140{left:597.733333pt;}
.x127_c00140{left:599.066667pt;}
.xdb_c00140{left:600.266667pt;}
.xf1_c00140{left:602.666667pt;}
.x112_c00140{left:605.200000pt;}
.x9c_c00140{left:606.400000pt;}
.x103_c00140{left:607.333333pt;}
.x10f_c00140{left:609.866667pt;}
.x11e_c00140{left:610.800000pt;}
.xfc_c00140{left:611.733333pt;}
.x125_c00140{left:612.666667pt;}
.x128_c00140{left:614.266667pt;}
.xad_c00140{left:616.000000pt;}
.xe0_c00140{left:617.333333pt;}
.xbe_c00140{left:618.533333pt;}
.xc1_c00140{left:620.933333pt;}
.x139_c00140{left:622.133333pt;}
.xc7_c00140{left:624.933333pt;}
.xfe_c00140{left:626.133333pt;}
.xe6_c00140{left:627.866667pt;}
.x110_c00140{left:628.800000pt;}
.xfd_c00140{left:631.600000pt;}
.x9d_c00140{left:633.866667pt;}
.x130_c00140{left:637.333333pt;}
.xc2_c00140{left:638.800000pt;}
.x119_c00140{left:640.400000pt;}
.xae_c00140{left:641.866667pt;}
.xbd_c00140{left:643.200000pt;}
.xe7_c00140{left:645.200000pt;}
.xf2_c00140{left:646.533333pt;}
.xdc_c00140{left:649.600000pt;}
.xe1_c00140{left:651.600000pt;}
.x2_c00140{left:653.733333pt;}
.xf6_c00140{left:655.600000pt;}
.xd2_c00140{left:658.800000pt;}
.x12f_c00140{left:660.800000pt;}
.xba_c00140{left:662.400000pt;}
.x9e_c00140{left:663.600000pt;}
.x11b_c00140{left:665.333333pt;}
.xaf_c00140{left:666.800000pt;}
.xbc_c00140{left:667.733333pt;}
.x114_c00140{left:669.200000pt;}
.xc8_c00140{left:674.266667pt;}
.x126_c00140{left:677.600000pt;}
.x123_c00140{left:680.400000pt;}
}





/* 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_c00141 {
    display:none;
  }
  .loading-indicator_c00141.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00141 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_c00141 { 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_c00141" -> "#page-container .classname_c00141")
 */
.pf_c00141 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00141 { /* 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_c00141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00141 { /* 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_c00141 { /* 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_c00141 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00141 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00141 {overflow:visible;}
  }
}
.c_c00141 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00141 { /* 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_c00141:after { /* webkit #35443 */
  content: '';
}
.t_c00141:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00141 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 */
}
.__c00141 { /* 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_c00141 { /* info for Javascript */
  display:none;
}
.l_c00141 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00141 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00141 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00141: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_c00141 {
    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_c00141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00141.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_c00141 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00141;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.000000;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;}
.m49_c00141{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00141{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00141{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md8_c00141{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00141{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m94_c00141{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.md4_c00141{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m31_c00141{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00141{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m90_c00141{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mab_c00141{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m93_c00141{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00141{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00141{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m20_c00141{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me8_c00141{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00141{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m92_c00141{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00141{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00141{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m10_c00141{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00141{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00141{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m111_c00141{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00141{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m14_c00141{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00141{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00141{transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00141{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00141{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m79_c00141{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m48_c00141{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m82_c00141{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00141{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00141{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00141{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00141{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00141{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf_c00141{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m11_c00141{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m38_c00141{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00141{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00141{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m42_c00141{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00141{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m109_c00141{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00141{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mca_c00141{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m102_c00141{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m30_c00141{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00141{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me_c00141{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00141{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00141{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m51_c00141{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m56_c00141{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mae_c00141{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m26_c00141{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m99_c00141{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me5_c00141{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m101_c00141{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00141{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00141{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mda_c00141{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m27_c00141{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m57_c00141{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00141{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb_c00141{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00141{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.md0_c00141{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mea_c00141{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00141{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m45_c00141{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m29_c00141{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md9_c00141{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mee_c00141{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00141{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00141{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m6_c00141{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m75_c00141{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m60_c00141{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m5_c00141{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m39_c00141{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m54_c00141{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m83_c00141{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00141{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m84_c00141{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00141{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.maa_c00141{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me6_c00141{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00141{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00141{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me4_c00141{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00141{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m64_c00141{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00141{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00141{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m50_c00141{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00141{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m12_c00141{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m68_c00141{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m112_c00141{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00141{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m37_c00141{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m44_c00141{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma_c00141{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m52_c00141{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00141{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00141{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mde_c00141{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00141{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00141{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00141{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m78_c00141{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m69_c00141{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m34_c00141{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m58_c00141{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m16_c00141{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00141{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m70_c00141{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m53_c00141{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m66_c00141{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00141{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00141{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m62_c00141{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00141{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00141{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.me9_c00141{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m108_c00141{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m47_c00141{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m100_c00141{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00141{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00141{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00141{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00141{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00141{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00141{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md3_c00141{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00141{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m65_c00141{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00141{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m43_c00141{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m59_c00141{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00141{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m17_c00141{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mad_c00141{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8_c00141{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00141{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m61_c00141{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md7_c00141{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00141{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m63_c00141{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m28_c00141{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc_c00141{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m77_c00141{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00141{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m25_c00141{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00141{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me0_c00141{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m13_c00141{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00141{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00141{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3_c00141{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00141{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00141{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00141{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00141{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00141{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md6_c00141{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mce_c00141{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00141{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00141{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00141{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m87_c00141{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00141{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m19_c00141{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.meb_c00141{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00141{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.md_c00141{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m35_c00141{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m22_c00141{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m67_c00141{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00141{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00141{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me2_c00141{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m41_c00141{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m40_c00141{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00141{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m36_c00141{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00141{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md1_c00141{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maf_c00141{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mac_c00141{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m46_c00141{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m107_c00141{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00141{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m88_c00141{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mba_c00141{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m72_c00141{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00141{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00141{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m104_c00141{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00141{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me7_c00141{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m80_c00141{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m55_c00141{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mff_c00141{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00141{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m24_c00141{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m113_c00141{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00141{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m106_c00141{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00141{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00141{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00141{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00141{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00141{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m74_c00141{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00141{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00141{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me1_c00141{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00141{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00141{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00141{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00141{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m89_c00141{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mef_c00141{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00141{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m81_c00141{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00141{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m105_c00141{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m71_c00141{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m103_c00141{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00141{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00141{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00141{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m2_c00141{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.md2_c00141{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m23_c00141{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m110_c00141{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00141{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.me3_c00141{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m97_c00141{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00141{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00141{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00141{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m33_c00141{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00141{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m86_c00141{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.med_c00141{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.md5_c00141{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00141{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m73_c00141{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00141{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m18_c00141{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mec_c00141{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00141{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00141{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m95_c00141{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m76_c00141{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00141{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00141{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00141{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00141{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m85_c00141{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m96_c00141{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m32_c00141{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m15_c00141{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.m91_c00141{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m98_c00141{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.489250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489250,0.000000,0.000000,0.250000,0,0);}
.m21_c00141{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls2_c00141{letter-spacing:0.000000px;}
.ls0_c00141{letter-spacing:56.000000px;}
.ls1_c00141{letter-spacing:63.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{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__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00141{word-spacing:-90.000000px;}
.ws7_c00141{word-spacing:-80.000000px;}
.wsd_c00141{word-spacing:-10.238095px;}
.ws10_c00141{word-spacing:-6.934708px;}
.wsf_c00141{word-spacing:-6.633293px;}
.wse_c00141{word-spacing:0.000000px;}
.wsb_c00141{word-spacing:0.691689px;}
.ws4_c00141{word-spacing:3.846626px;}
.ws1_c00141{word-spacing:4.642857px;}
.ws2_c00141{word-spacing:11.875000px;}
.ws5_c00141{word-spacing:15.000000px;}
.ws0_c00141{word-spacing:17.500000px;}
.ws6_c00141{word-spacing:22.142857px;}
.ws3_c00141{word-spacing:29.500000px;}
.ws9_c00141{word-spacing:44.166667px;}
.ws8_c00141{word-spacing:72.500000px;}
.wsa_c00141{word-spacing:162.631579px;}
._3_c00141{margin-left:-63.000000px;}
._0_c00141{margin-left:-56.000000px;}
._2_c00141{margin-left:-9.375000px;}
._1_c00141{width:59.285714px;}
.fc0_c00141{color:transparent;}
.fs6_c00141{font-size:48.000000px;}
.fs5_c00141{font-size:54.000000px;}
.fs2_c00141{font-size:60.000000px;}
.fs0_c00141{font-size:66.000000px;}
.fs3_c00141{font-size:72.000000px;}
.fs1_c00141{font-size:78.000000px;}
.fs4_c00141{font-size:84.000000px;}
.y0_c00141{bottom:0.000000px;}
.y65_c00141{bottom:185.700000px;}
.y34_c00141{bottom:188.250000px;}
.y64_c00141{bottom:203.400000px;}
.y33_c00141{bottom:205.950000px;}
.y32_c00141{bottom:232.500000px;}
.y63_c00141{bottom:234.000000px;}
.y31_c00141{bottom:250.500000px;}
.y62_c00141{bottom:252.300000px;}
.y30_c00141{bottom:268.050000px;}
.y61_c00141{bottom:278.100000px;}
.y2f_c00141{bottom:285.750000px;}
.y60_c00141{bottom:296.400000px;}
.y2e_c00141{bottom:303.450000px;}
.y5f_c00141{bottom:314.400000px;}
.y2d_c00141{bottom:321.150000px;}
.y5e_c00141{bottom:332.400000px;}
.y2c_c00141{bottom:338.400000px;}
.y5d_c00141{bottom:350.100000px;}
.y2b_c00141{bottom:356.400000px;}
.y5c_c00141{bottom:368.100000px;}
.y2a_c00141{bottom:374.100000px;}
.y5b_c00141{bottom:386.100000px;}
.y29_c00141{bottom:391.350000px;}
.y5a_c00141{bottom:403.800000px;}
.y28_c00141{bottom:417.300000px;}
.y59_c00141{bottom:421.800000px;}
.y27_c00141{bottom:431.700000px;}
.y58_c00141{bottom:439.800000px;}
.y26_c00141{bottom:446.100000px;}
.y57_c00141{bottom:457.500000px;}
.y25_c00141{bottom:460.200000px;}
.y24_c00141{bottom:474.600000px;}
.y56_c00141{bottom:475.500000px;}
.y23_c00141{bottom:487.500000px;}
.y55_c00141{bottom:493.500000px;}
.y22_c00141{bottom:505.800000px;}
.y54_c00141{bottom:519.150000px;}
.y21_c00141{bottom:523.500000px;}
.y53_c00141{bottom:532.500000px;}
.y52_c00141{bottom:545.400000px;}
.y20_c00141{bottom:549.150000px;}
.y51_c00141{bottom:564.900000px;}
.y1f_c00141{bottom:567.450000px;}
.y50_c00141{bottom:582.900000px;}
.y1e_c00141{bottom:585.450000px;}
.y4f_c00141{bottom:600.900000px;}
.y1d_c00141{bottom:603.750000px;}
.y1c_c00141{bottom:624.300000px;}
.y4e_c00141{bottom:627.450000px;}
.y1b_c00141{bottom:642.600000px;}
.y4d_c00141{bottom:645.450000px;}
.y4c_c00141{bottom:663.150000px;}
.y1a_c00141{bottom:673.200000px;}
.y4b_c00141{bottom:685.200000px;}
.y19_c00141{bottom:699.450000px;}
.y4a_c00141{bottom:703.500000px;}
.y18_c00141{bottom:725.100000px;}
.y49_c00141{bottom:734.100000px;}
.y17_c00141{bottom:743.850000px;}
.y48_c00141{bottom:760.200000px;}
.y16_c00141{bottom:761.850000px;}
.y47_c00141{bottom:778.200000px;}
.y15_c00141{bottom:779.550000px;}
.y46_c00141{bottom:796.200000px;}
.y14_c00141{bottom:797.550000px;}
.y45_c00141{bottom:814.200000px;}
.y13_c00141{bottom:815.250000px;}
.y44_c00141{bottom:831.900000px;}
.y12_c00141{bottom:833.250000px;}
.y43_c00141{bottom:850.200000px;}
.y11_c00141{bottom:850.950000px;}
.y42_c00141{bottom:867.900000px;}
.y10_c00141{bottom:868.650000px;}
.y41_c00141{bottom:885.900000px;}
.yf_c00141{bottom:892.500000px;}
.y40_c00141{bottom:903.900000px;}
.ye_c00141{bottom:908.250000px;}
.y3f_c00141{bottom:929.100000px;}
.yd_c00141{bottom:931.650000px;}
.y3e_c00141{bottom:948.900000px;}
.yc_c00141{bottom:951.150000px;}
.y3d_c00141{bottom:967.650000px;}
.yb_c00141{bottom:969.150000px;}
.ya_c00141{bottom:984.300000px;}
.y3c_c00141{bottom:988.200000px;}
.y3b_c00141{bottom:1007.700000px;}
.y9_c00141{bottom:1008.750000px;}
.y3a_c00141{bottom:1026.000000px;}
.y8_c00141{bottom:1027.050000px;}
.y39_c00141{bottom:1044.000000px;}
.y7_c00141{bottom:1044.750000px;}
.y38_c00141{bottom:1061.250000px;}
.y6_c00141{bottom:1062.300000px;}
.y5_c00141{bottom:1080.000000px;}
.y37_c00141{bottom:1095.900000px;}
.y4_c00141{bottom:1098.000000px;}
.y36_c00141{bottom:1099.800000px;}
.y3_c00141{bottom:1115.700000px;}
.y35_c00141{bottom:1119.600000px;}
.y1_c00141{bottom:1141.200000px;}
.y2_c00141{bottom:1143.750000px;}
.h8_c00141{height:48.000000px;}
.h7_c00141{height:54.000000px;}
.h4_c00141{height:60.000000px;}
.h2_c00141{height:66.000000px;}
.h5_c00141{height:72.000000px;}
.h3_c00141{height:78.000000px;}
.h6_c00141{height:84.000000px;}
.h0_c00141{height:1270.440033px;}
.h1_c00141{height:1270.500000px;}
.w1_c00141{width:953.250000px;}
.w0_c00141{width:953.280030px;}
.x0_c00141{left:0.000000px;}
.x30_c00141{left:168.900000px;}
.x1_c00141{left:170.700000px;}
.x62_c00141{left:173.100000px;}
.x84_c00141{left:174.300000px;}
.x91_c00141{left:176.100000px;}
.x3c_c00141{left:185.700000px;}
.x35_c00141{left:188.250000px;}
.xa_c00141{left:189.600000px;}
.x89_c00141{left:192.150000px;}
.x90_c00141{left:193.350000px;}
.x7a_c00141{left:201.300000px;}
.x3d_c00141{left:202.650000px;}
.x2e_c00141{left:207.300000px;}
.x3_c00141{left:208.500000px;}
.x8d_c00141{left:211.350000px;}
.x63_c00141{left:213.000000px;}
.x6f_c00141{left:215.250000px;}
.x31_c00141{left:217.800000px;}
.x56_c00141{left:219.600000px;}
.x7d_c00141{left:222.150000px;}
.x80_c00141{left:223.200000px;}
.x72_c00141{left:225.750000px;}
.x1c_c00141{left:226.800000px;}
.x5f_c00141{left:228.900000px;}
.x74_c00141{left:230.550000px;}
.x6a_c00141{left:232.650000px;}
.xb_c00141{left:234.900000px;}
.x29_c00141{left:236.100000px;}
.x92_c00141{left:237.300000px;}
.x36_c00141{left:238.350000px;}
.x7e_c00141{left:240.450000px;}
.x2f_c00141{left:241.500000px;}
.x6d_c00141{left:243.150000px;}
.x4b_c00141{left:244.650000px;}
.x4_c00141{left:247.350000px;}
.x64_c00141{left:248.700000px;}
.x40_c00141{left:253.200000px;}
.x81_c00141{left:254.850000px;}
.x85_c00141{left:257.100000px;}
.x23_c00141{left:258.750000px;}
.x19_c00141{left:260.550000px;}
.x1d_c00141{left:263.850000px;}
.x46_c00141{left:267.750000px;}
.x5c_c00141{left:269.250000px;}
.x4f_c00141{left:270.300000px;}
.x82_c00141{left:271.500000px;}
.xc_c00141{left:272.700000px;}
.x8e_c00141{left:276.150000px;}
.x50_c00141{left:278.550000px;}
.x15_c00141{left:280.800000px;}
.x1e_c00141{left:282.150000px;}
.x49_c00141{left:283.200000px;}
.x5_c00141{left:287.250000px;}
.x32_c00141{left:289.800000px;}
.x3e_c00141{left:291.150000px;}
.x57_c00141{left:293.100000px;}
.x67_c00141{left:297.300000px;}
.x6e_c00141{left:298.650000px;}
.xd_c00141{left:300.450000px;}
.x51_c00141{left:301.650000px;}
.x24_c00141{left:306.300000px;}
.x60_c00141{left:307.800000px;}
.x8a_c00141{left:309.150000px;}
.x37_c00141{left:312.600000px;}
.x7f_c00141{left:314.250000px;}
.x2a_c00141{left:315.600000px;}
.x4c_c00141{left:317.400000px;}
.x75_c00141{left:318.750000px;}
.x6_c00141{left:320.400000px;}
.x4a_c00141{left:324.900000px;}
.x8f_c00141{left:326.850000px;}
.x1f_c00141{left:328.650000px;}
.x7b_c00141{left:330.150000px;}
.x39_c00141{left:331.200000px;}
.x68_c00141{left:333.600000px;}
.x7c_c00141{left:337.050000px;}
.x41_c00141{left:338.100000px;}
.x20_c00141{left:339.150000px;}
.x58_c00141{left:340.950000px;}
.x33_c00141{left:342.750000px;}
.x54_c00141{left:344.850000px;}
.x1a_c00141{left:346.650000px;}
.x25_c00141{left:347.700000px;}
.x42_c00141{left:349.200000px;}
.x6b_c00141{left:350.700000px;}
.x21_c00141{left:353.550000px;}
.x65_c00141{left:354.600000px;}
.x61_c00141{left:357.150000px;}
.x76_c00141{left:359.850000px;}
.x2b_c00141{left:363.150000px;}
.x3a_c00141{left:365.100000px;}
.x38_c00141{left:366.600000px;}
.x8b_c00141{left:367.950000px;}
.x83_c00141{left:369.000000px;}
.x47_c00141{left:371.400000px;}
.x70_c00141{left:373.950000px;}
.xe_c00141{left:375.000000px;}
.x26_c00141{left:376.500000px;}
.x52_c00141{left:378.000000px;}
.x77_c00141{left:381.150000px;}
.x16_c00141{left:385.500000px;}
.x7_c00141{left:388.050000px;}
.x86_c00141{left:389.700000px;}
.x93_c00141{left:392.400000px;}
.x27_c00141{left:393.450000px;}
.x78_c00141{left:395.850000px;}
.x17_c00141{left:397.050000px;}
.x55_c00141{left:400.950000px;}
.x59_c00141{left:402.450000px;}
.x2c_c00141{left:404.250000px;}
.x43_c00141{left:407.550000px;}
.xf_c00141{left:409.500000px;}
.x28_c00141{left:413.250000px;}
.x2_c00141{left:415.800000px;}
.x3f_c00141{left:418.950000px;}
.x8_c00141{left:420.750000px;}
.x4d_c00141{left:422.850000px;}
.x10_c00141{left:425.700000px;}
.x71_c00141{left:427.950000px;}
.x5d_c00141{left:429.300000px;}
.x66_c00141{left:434.100000px;}
.x79_c00141{left:436.500000px;}
.x18_c00141{left:440.550000px;}
.x11_c00141{left:446.250000px;}
.x22_c00141{left:447.900000px;}
.x4e_c00141{left:451.350000px;}
.x3b_c00141{left:452.850000px;}
.x12_c00141{left:454.200000px;}
.x9_c00141{left:455.250000px;}
.x1b_c00141{left:458.250000px;}
.x44_c00141{left:460.500000px;}
.x5a_c00141{left:462.900000px;}
.x48_c00141{left:465.600000px;}
.x13_c00141{left:469.350000px;}
.x87_c00141{left:472.950000px;}
.x5b_c00141{left:478.050000px;}
.x5e_c00141{left:480.000000px;}
.x53_c00141{left:481.050000px;}
.x6c_c00141{left:482.550000px;}
.x8c_c00141{left:484.200000px;}
.x2d_c00141{left:486.000000px;}
.x69_c00141{left:487.650000px;}
.x73_c00141{left:491.850000px;}
.x14_c00141{left:493.500000px;}
.x45_c00141{left:495.000000px;}
.x34_c00141{left:496.050000px;}
.x88_c00141{left:497.100000px;}
.x94_c00141{left:524.100000px;}
.xbb_c00141{left:525.900000px;}
.xed_c00141{left:527.100000px;}
.xf1_c00141{left:528.150000px;}
.x127_c00141{left:530.250000px;}
.x95_c00141{left:534.600000px;}
.x126_c00141{left:540.150000px;}
.x9b_c00141{left:542.100000px;}
.xc2_c00141{left:543.300000px;}
.xb7_c00141{left:544.950000px;}
.x128_c00141{left:546.000000px;}
.xb8_c00141{left:552.900000px;}
.x105_c00141{left:556.200000px;}
.x9e_c00141{left:561.900000px;}
.xf3_c00141{left:563.100000px;}
.xac_c00141{left:565.500000px;}
.x96_c00141{left:567.000000px;}
.xe1_c00141{left:568.050000px;}
.xbc_c00141{left:569.400000px;}
.xb9_c00141{left:572.250000px;}
.x11f_c00141{left:573.750000px;}
.xba_c00141{left:579.150000px;}
.xe2_c00141{left:581.400000px;}
.xc5_c00141{left:584.700000px;}
.xfe_c00141{left:585.750000px;}
.xd3_c00141{left:586.800000px;}
.x9c_c00141{left:589.650000px;}
.xf6_c00141{left:590.700000px;}
.xb2_c00141{left:592.500000px;}
.xee_c00141{left:596.250000px;}
.x120_c00141{left:597.900000px;}
.x122_c00141{left:598.950000px;}
.x97_c00141{left:600.150000px;}
.xea_c00141{left:602.700000px;}
.xcf_c00141{left:604.350000px;}
.xf4_c00141{left:606.000000px;}
.x10d_c00141{left:610.950000px;}
.x9f_c00141{left:612.000000px;}
.xf9_c00141{left:613.350000px;}
.xad_c00141{left:615.900000px;}
.xc3_c00141{left:619.350000px;}
.xa6_c00141{left:621.750000px;}
.xd4_c00141{left:623.850000px;}
.x118_c00141{left:626.550000px;}
.xe3_c00141{left:628.500000px;}
.xdb_c00141{left:630.150000px;}
.xbd_c00141{left:633.150000px;}
.xef_c00141{left:634.350000px;}
.xc6_c00141{left:636.150000px;}
.xeb_c00141{left:637.650000px;}
.xf7_c00141{left:639.600000px;}
.xae_c00141{left:642.900000px;}
.xdc_c00141{left:647.100000px;}
.xf5_c00141{left:648.150000px;}
.xe6_c00141{left:652.200000px;}
.x112_c00141{left:653.850000px;}
.xf0_c00141{left:655.200000px;}
.x124_c00141{left:656.400000px;}
.xdf_c00141{left:657.600000px;}
.xa0_c00141{left:659.550000px;}
.x11a_c00141{left:663.300000px;}
.xc7_c00141{left:664.650000px;}
.xcb_c00141{left:667.500000px;}
.xb3_c00141{left:670.200000px;}
.xe4_c00141{left:672.450000px;}
.xa3_c00141{left:674.100000px;}
.x115_c00141{left:675.450000px;}
.x110_c00141{left:676.800000px;}
.x10a_c00141{left:677.850000px;}
.x106_c00141{left:679.350000px;}
.xbe_c00141{left:680.700000px;}
.xd0_c00141{left:682.050000px;}
.xaf_c00141{left:685.350000px;}
.xec_c00141{left:687.750000px;}
.xff_c00141{left:688.800000px;}
.x11b_c00141{left:691.350000px;}
.xa7_c00141{left:695.850000px;}
.xa1_c00141{left:701.250000px;}
.x121_c00141{left:702.600000px;}
.x98_c00141{left:704.850000px;}
.xa8_c00141{left:705.900000px;}
.xf2_c00141{left:707.400000px;}
.xa4_c00141{left:708.600000px;}
.xe7_c00141{left:711.150000px;}
.xcc_c00141{left:712.800000px;}
.x10b_c00141{left:714.150000px;}
.x107_c00141{left:716.850000px;}
.x100_c00141{left:719.400000px;}
.xc4_c00141{left:721.650000px;}
.x119_c00141{left:722.700000px;}
.xbf_c00141{left:725.700000px;}
.xc8_c00141{left:728.400000px;}
.xd5_c00141{left:730.500000px;}
.xd9_c00141{left:733.800000px;}
.xb4_c00141{left:737.850000px;}
.x101_c00141{left:740.250000px;}
.x11c_c00141{left:741.450000px;}
.x10e_c00141{left:743.100000px;}
.xc9_c00141{left:744.900000px;}
.xfa_c00141{left:746.550000px;}
.xd6_c00141{left:748.200000px;}
.xa9_c00141{left:750.150000px;}
.xb0_c00141{left:753.450000px;}
.x116_c00141{left:757.200000px;}
.x123_c00141{left:758.700000px;}
.xdd_c00141{left:759.900000px;}
.x9d_c00141{left:761.700000px;}
.xfc_c00141{left:763.950000px;}
.xaa_c00141{left:766.350000px;}
.x10f_c00141{left:770.400000px;}
.xa5_c00141{left:773.400000px;}
.x11e_c00141{left:774.900000px;}
.xb1_c00141{left:777.900000px;}
.xc0_c00141{left:779.700000px;}
.xd1_c00141{left:781.500000px;}
.x113_c00141{left:782.700000px;}
.x102_c00141{left:783.750000px;}
.xe0_c00141{left:785.250000px;}
.xb5_c00141{left:790.050000px;}
.xc1_c00141{left:792.000000px;}
.xa2_c00141{left:794.100000px;}
.xf8_c00141{left:796.800000px;}
.x111_c00141{left:801.450000px;}
.x117_c00141{left:802.500000px;}
.xd7_c00141{left:804.000000px;}
.xe8_c00141{left:805.500000px;}
.xca_c00141{left:806.850000px;}
.x114_c00141{left:808.650000px;}
.xcd_c00141{left:811.050000px;}
.xfb_c00141{left:812.850000px;}
.x103_c00141{left:814.350000px;}
.x99_c00141{left:815.700000px;}
.x11d_c00141{left:818.550000px;}
.x108_c00141{left:820.200000px;}
.xd2_c00141{left:822.900000px;}
.x9a_c00141{left:825.000000px;}
.x125_c00141{left:826.350000px;}
.xab_c00141{left:827.550000px;}
.xce_c00141{left:831.600000px;}
.xde_c00141{left:833.700000px;}
.x10c_c00141{left:837.900000px;}
.xe9_c00141{left:838.950000px;}
.xda_c00141{left:841.800000px;}
.xd8_c00141{left:843.900000px;}
.xb6_c00141{left:846.600000px;}
.x104_c00141{left:847.800000px;}
.x109_c00141{left:849.000000px;}
.xfd_c00141{left:850.350000px;}
.xe5_c00141{left:851.400000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls2_c00141{letter-spacing:0.000000pt;}
.ls0_c00141{letter-spacing:49.777778pt;}
.ls1_c00141{letter-spacing:56.000000pt;}
.wsc_c00141{word-spacing:-80.000000pt;}
.ws7_c00141{word-spacing:-71.111111pt;}
.wsd_c00141{word-spacing:-9.100529pt;}
.ws10_c00141{word-spacing:-6.164185pt;}
.wsf_c00141{word-spacing:-5.896261pt;}
.wse_c00141{word-spacing:0.000000pt;}
.wsb_c00141{word-spacing:0.614835pt;}
.ws4_c00141{word-spacing:3.419223pt;}
.ws1_c00141{word-spacing:4.126984pt;}
.ws2_c00141{word-spacing:10.555556pt;}
.ws5_c00141{word-spacing:13.333333pt;}
.ws0_c00141{word-spacing:15.555556pt;}
.ws6_c00141{word-spacing:19.682540pt;}
.ws3_c00141{word-spacing:26.222222pt;}
.ws9_c00141{word-spacing:39.259259pt;}
.ws8_c00141{word-spacing:64.444444pt;}
.wsa_c00141{word-spacing:144.561404pt;}
._3_c00141{margin-left:-56.000000pt;}
._0_c00141{margin-left:-49.777778pt;}
._2_c00141{margin-left:-8.333333pt;}
._1_c00141{width:52.698413pt;}
.fs6_c00141{font-size:42.666667pt;}
.fs5_c00141{font-size:48.000000pt;}
.fs2_c00141{font-size:53.333333pt;}
.fs0_c00141{font-size:58.666667pt;}
.fs3_c00141{font-size:64.000000pt;}
.fs1_c00141{font-size:69.333333pt;}
.fs4_c00141{font-size:74.666667pt;}
.y0_c00141{bottom:0.000000pt;}
.y65_c00141{bottom:165.066667pt;}
.y34_c00141{bottom:167.333333pt;}
.y64_c00141{bottom:180.800000pt;}
.y33_c00141{bottom:183.066667pt;}
.y32_c00141{bottom:206.666667pt;}
.y63_c00141{bottom:208.000000pt;}
.y31_c00141{bottom:222.666667pt;}
.y62_c00141{bottom:224.266667pt;}
.y30_c00141{bottom:238.266667pt;}
.y61_c00141{bottom:247.200000pt;}
.y2f_c00141{bottom:254.000000pt;}
.y60_c00141{bottom:263.466667pt;}
.y2e_c00141{bottom:269.733333pt;}
.y5f_c00141{bottom:279.466667pt;}
.y2d_c00141{bottom:285.466667pt;}
.y5e_c00141{bottom:295.466667pt;}
.y2c_c00141{bottom:300.800000pt;}
.y5d_c00141{bottom:311.200000pt;}
.y2b_c00141{bottom:316.800000pt;}
.y5c_c00141{bottom:327.200000pt;}
.y2a_c00141{bottom:332.533333pt;}
.y5b_c00141{bottom:343.200000pt;}
.y29_c00141{bottom:347.866667pt;}
.y5a_c00141{bottom:358.933333pt;}
.y28_c00141{bottom:370.933333pt;}
.y59_c00141{bottom:374.933333pt;}
.y27_c00141{bottom:383.733333pt;}
.y58_c00141{bottom:390.933333pt;}
.y26_c00141{bottom:396.533333pt;}
.y57_c00141{bottom:406.666667pt;}
.y25_c00141{bottom:409.066667pt;}
.y24_c00141{bottom:421.866667pt;}
.y56_c00141{bottom:422.666667pt;}
.y23_c00141{bottom:433.333333pt;}
.y55_c00141{bottom:438.666667pt;}
.y22_c00141{bottom:449.600000pt;}
.y54_c00141{bottom:461.466667pt;}
.y21_c00141{bottom:465.333333pt;}
.y53_c00141{bottom:473.333333pt;}
.y52_c00141{bottom:484.800000pt;}
.y20_c00141{bottom:488.133333pt;}
.y51_c00141{bottom:502.133333pt;}
.y1f_c00141{bottom:504.400000pt;}
.y50_c00141{bottom:518.133333pt;}
.y1e_c00141{bottom:520.400000pt;}
.y4f_c00141{bottom:534.133333pt;}
.y1d_c00141{bottom:536.666667pt;}
.y1c_c00141{bottom:554.933333pt;}
.y4e_c00141{bottom:557.733333pt;}
.y1b_c00141{bottom:571.200000pt;}
.y4d_c00141{bottom:573.733333pt;}
.y4c_c00141{bottom:589.466667pt;}
.y1a_c00141{bottom:598.400000pt;}
.y4b_c00141{bottom:609.066667pt;}
.y19_c00141{bottom:621.733333pt;}
.y4a_c00141{bottom:625.333333pt;}
.y18_c00141{bottom:644.533333pt;}
.y49_c00141{bottom:652.533333pt;}
.y17_c00141{bottom:661.200000pt;}
.y48_c00141{bottom:675.733333pt;}
.y16_c00141{bottom:677.200000pt;}
.y47_c00141{bottom:691.733333pt;}
.y15_c00141{bottom:692.933333pt;}
.y46_c00141{bottom:707.733333pt;}
.y14_c00141{bottom:708.933333pt;}
.y45_c00141{bottom:723.733333pt;}
.y13_c00141{bottom:724.666667pt;}
.y44_c00141{bottom:739.466667pt;}
.y12_c00141{bottom:740.666667pt;}
.y43_c00141{bottom:755.733333pt;}
.y11_c00141{bottom:756.400000pt;}
.y42_c00141{bottom:771.466667pt;}
.y10_c00141{bottom:772.133333pt;}
.y41_c00141{bottom:787.466667pt;}
.yf_c00141{bottom:793.333333pt;}
.y40_c00141{bottom:803.466667pt;}
.ye_c00141{bottom:807.333333pt;}
.y3f_c00141{bottom:825.866667pt;}
.yd_c00141{bottom:828.133333pt;}
.y3e_c00141{bottom:843.466667pt;}
.yc_c00141{bottom:845.466667pt;}
.y3d_c00141{bottom:860.133333pt;}
.yb_c00141{bottom:861.466667pt;}
.ya_c00141{bottom:874.933333pt;}
.y3c_c00141{bottom:878.400000pt;}
.y3b_c00141{bottom:895.733333pt;}
.y9_c00141{bottom:896.666667pt;}
.y3a_c00141{bottom:912.000000pt;}
.y8_c00141{bottom:912.933333pt;}
.y39_c00141{bottom:928.000000pt;}
.y7_c00141{bottom:928.666667pt;}
.y38_c00141{bottom:943.333333pt;}
.y6_c00141{bottom:944.266667pt;}
.y5_c00141{bottom:960.000000pt;}
.y37_c00141{bottom:974.133333pt;}
.y4_c00141{bottom:976.000000pt;}
.y36_c00141{bottom:977.600000pt;}
.y3_c00141{bottom:991.733333pt;}
.y35_c00141{bottom:995.200000pt;}
.y1_c00141{bottom:1014.400000pt;}
.y2_c00141{bottom:1016.666667pt;}
.h8_c00141{height:42.666667pt;}
.h7_c00141{height:48.000000pt;}
.h4_c00141{height:53.333333pt;}
.h2_c00141{height:58.666667pt;}
.h5_c00141{height:64.000000pt;}
.h3_c00141{height:69.333333pt;}
.h6_c00141{height:74.666667pt;}
.h0_c00141{height:1129.280029pt;}
.h1_c00141{height:1129.333333pt;}
.w1_c00141{width:847.333333pt;}
.w0_c00141{width:847.360027pt;}
.x0_c00141{left:0.000000pt;}
.x30_c00141{left:150.133333pt;}
.x1_c00141{left:151.733333pt;}
.x62_c00141{left:153.866667pt;}
.x84_c00141{left:154.933333pt;}
.x91_c00141{left:156.533333pt;}
.x3c_c00141{left:165.066667pt;}
.x35_c00141{left:167.333333pt;}
.xa_c00141{left:168.533333pt;}
.x89_c00141{left:170.800000pt;}
.x90_c00141{left:171.866667pt;}
.x7a_c00141{left:178.933333pt;}
.x3d_c00141{left:180.133333pt;}
.x2e_c00141{left:184.266667pt;}
.x3_c00141{left:185.333333pt;}
.x8d_c00141{left:187.866667pt;}
.x63_c00141{left:189.333333pt;}
.x6f_c00141{left:191.333333pt;}
.x31_c00141{left:193.600000pt;}
.x56_c00141{left:195.200000pt;}
.x7d_c00141{left:197.466667pt;}
.x80_c00141{left:198.400000pt;}
.x72_c00141{left:200.666667pt;}
.x1c_c00141{left:201.600000pt;}
.x5f_c00141{left:203.466667pt;}
.x74_c00141{left:204.933333pt;}
.x6a_c00141{left:206.800000pt;}
.xb_c00141{left:208.800000pt;}
.x29_c00141{left:209.866667pt;}
.x92_c00141{left:210.933333pt;}
.x36_c00141{left:211.866667pt;}
.x7e_c00141{left:213.733333pt;}
.x2f_c00141{left:214.666667pt;}
.x6d_c00141{left:216.133333pt;}
.x4b_c00141{left:217.466667pt;}
.x4_c00141{left:219.866667pt;}
.x64_c00141{left:221.066667pt;}
.x40_c00141{left:225.066667pt;}
.x81_c00141{left:226.533333pt;}
.x85_c00141{left:228.533333pt;}
.x23_c00141{left:230.000000pt;}
.x19_c00141{left:231.600000pt;}
.x1d_c00141{left:234.533333pt;}
.x46_c00141{left:238.000000pt;}
.x5c_c00141{left:239.333333pt;}
.x4f_c00141{left:240.266667pt;}
.x82_c00141{left:241.333333pt;}
.xc_c00141{left:242.400000pt;}
.x8e_c00141{left:245.466667pt;}
.x50_c00141{left:247.600000pt;}
.x15_c00141{left:249.600000pt;}
.x1e_c00141{left:250.800000pt;}
.x49_c00141{left:251.733333pt;}
.x5_c00141{left:255.333333pt;}
.x32_c00141{left:257.600000pt;}
.x3e_c00141{left:258.800000pt;}
.x57_c00141{left:260.533333pt;}
.x67_c00141{left:264.266667pt;}
.x6e_c00141{left:265.466667pt;}
.xd_c00141{left:267.066667pt;}
.x51_c00141{left:268.133333pt;}
.x24_c00141{left:272.266667pt;}
.x60_c00141{left:273.600000pt;}
.x8a_c00141{left:274.800000pt;}
.x37_c00141{left:277.866667pt;}
.x7f_c00141{left:279.333333pt;}
.x2a_c00141{left:280.533333pt;}
.x4c_c00141{left:282.133333pt;}
.x75_c00141{left:283.333333pt;}
.x6_c00141{left:284.800000pt;}
.x4a_c00141{left:288.800000pt;}
.x8f_c00141{left:290.533333pt;}
.x1f_c00141{left:292.133333pt;}
.x7b_c00141{left:293.466667pt;}
.x39_c00141{left:294.400000pt;}
.x68_c00141{left:296.533333pt;}
.x7c_c00141{left:299.600000pt;}
.x41_c00141{left:300.533333pt;}
.x20_c00141{left:301.466667pt;}
.x58_c00141{left:303.066667pt;}
.x33_c00141{left:304.666667pt;}
.x54_c00141{left:306.533333pt;}
.x1a_c00141{left:308.133333pt;}
.x25_c00141{left:309.066667pt;}
.x42_c00141{left:310.400000pt;}
.x6b_c00141{left:311.733333pt;}
.x21_c00141{left:314.266667pt;}
.x65_c00141{left:315.200000pt;}
.x61_c00141{left:317.466667pt;}
.x76_c00141{left:319.866667pt;}
.x2b_c00141{left:322.800000pt;}
.x3a_c00141{left:324.533333pt;}
.x38_c00141{left:325.866667pt;}
.x8b_c00141{left:327.066667pt;}
.x83_c00141{left:328.000000pt;}
.x47_c00141{left:330.133333pt;}
.x70_c00141{left:332.400000pt;}
.xe_c00141{left:333.333333pt;}
.x26_c00141{left:334.666667pt;}
.x52_c00141{left:336.000000pt;}
.x77_c00141{left:338.800000pt;}
.x16_c00141{left:342.666667pt;}
.x7_c00141{left:344.933333pt;}
.x86_c00141{left:346.400000pt;}
.x93_c00141{left:348.800000pt;}
.x27_c00141{left:349.733333pt;}
.x78_c00141{left:351.866667pt;}
.x17_c00141{left:352.933333pt;}
.x55_c00141{left:356.400000pt;}
.x59_c00141{left:357.733333pt;}
.x2c_c00141{left:359.333333pt;}
.x43_c00141{left:362.266667pt;}
.xf_c00141{left:364.000000pt;}
.x28_c00141{left:367.333333pt;}
.x2_c00141{left:369.600000pt;}
.x3f_c00141{left:372.400000pt;}
.x8_c00141{left:374.000000pt;}
.x4d_c00141{left:375.866667pt;}
.x10_c00141{left:378.400000pt;}
.x71_c00141{left:380.400000pt;}
.x5d_c00141{left:381.600000pt;}
.x66_c00141{left:385.866667pt;}
.x79_c00141{left:388.000000pt;}
.x18_c00141{left:391.600000pt;}
.x11_c00141{left:396.666667pt;}
.x22_c00141{left:398.133333pt;}
.x4e_c00141{left:401.200000pt;}
.x3b_c00141{left:402.533333pt;}
.x12_c00141{left:403.733333pt;}
.x9_c00141{left:404.666667pt;}
.x1b_c00141{left:407.333333pt;}
.x44_c00141{left:409.333333pt;}
.x5a_c00141{left:411.466667pt;}
.x48_c00141{left:413.866667pt;}
.x13_c00141{left:417.200000pt;}
.x87_c00141{left:420.400000pt;}
.x5b_c00141{left:424.933333pt;}
.x5e_c00141{left:426.666667pt;}
.x53_c00141{left:427.600000pt;}
.x6c_c00141{left:428.933333pt;}
.x8c_c00141{left:430.400000pt;}
.x2d_c00141{left:432.000000pt;}
.x69_c00141{left:433.466667pt;}
.x73_c00141{left:437.200000pt;}
.x14_c00141{left:438.666667pt;}
.x45_c00141{left:440.000000pt;}
.x34_c00141{left:440.933333pt;}
.x88_c00141{left:441.866667pt;}
.x94_c00141{left:465.866667pt;}
.xbb_c00141{left:467.466667pt;}
.xed_c00141{left:468.533333pt;}
.xf1_c00141{left:469.466667pt;}
.x127_c00141{left:471.333333pt;}
.x95_c00141{left:475.200000pt;}
.x126_c00141{left:480.133333pt;}
.x9b_c00141{left:481.866667pt;}
.xc2_c00141{left:482.933333pt;}
.xb7_c00141{left:484.400000pt;}
.x128_c00141{left:485.333333pt;}
.xb8_c00141{left:491.466667pt;}
.x105_c00141{left:494.400000pt;}
.x9e_c00141{left:499.466667pt;}
.xf3_c00141{left:500.533333pt;}
.xac_c00141{left:502.666667pt;}
.x96_c00141{left:504.000000pt;}
.xe1_c00141{left:504.933333pt;}
.xbc_c00141{left:506.133333pt;}
.xb9_c00141{left:508.666667pt;}
.x11f_c00141{left:510.000000pt;}
.xba_c00141{left:514.800000pt;}
.xe2_c00141{left:516.800000pt;}
.xc5_c00141{left:519.733333pt;}
.xfe_c00141{left:520.666667pt;}
.xd3_c00141{left:521.600000pt;}
.x9c_c00141{left:524.133333pt;}
.xf6_c00141{left:525.066667pt;}
.xb2_c00141{left:526.666667pt;}
.xee_c00141{left:530.000000pt;}
.x120_c00141{left:531.466667pt;}
.x122_c00141{left:532.400000pt;}
.x97_c00141{left:533.466667pt;}
.xea_c00141{left:535.733333pt;}
.xcf_c00141{left:537.200000pt;}
.xf4_c00141{left:538.666667pt;}
.x10d_c00141{left:543.066667pt;}
.x9f_c00141{left:544.000000pt;}
.xf9_c00141{left:545.200000pt;}
.xad_c00141{left:547.466667pt;}
.xc3_c00141{left:550.533333pt;}
.xa6_c00141{left:552.666667pt;}
.xd4_c00141{left:554.533333pt;}
.x118_c00141{left:556.933333pt;}
.xe3_c00141{left:558.666667pt;}
.xdb_c00141{left:560.133333pt;}
.xbd_c00141{left:562.800000pt;}
.xef_c00141{left:563.866667pt;}
.xc6_c00141{left:565.466667pt;}
.xeb_c00141{left:566.800000pt;}
.xf7_c00141{left:568.533333pt;}
.xae_c00141{left:571.466667pt;}
.xdc_c00141{left:575.200000pt;}
.xf5_c00141{left:576.133333pt;}
.xe6_c00141{left:579.733333pt;}
.x112_c00141{left:581.200000pt;}
.xf0_c00141{left:582.400000pt;}
.x124_c00141{left:583.466667pt;}
.xdf_c00141{left:584.533333pt;}
.xa0_c00141{left:586.266667pt;}
.x11a_c00141{left:589.600000pt;}
.xc7_c00141{left:590.800000pt;}
.xcb_c00141{left:593.333333pt;}
.xb3_c00141{left:595.733333pt;}
.xe4_c00141{left:597.733333pt;}
.xa3_c00141{left:599.200000pt;}
.x115_c00141{left:600.400000pt;}
.x110_c00141{left:601.600000pt;}
.x10a_c00141{left:602.533333pt;}
.x106_c00141{left:603.866667pt;}
.xbe_c00141{left:605.066667pt;}
.xd0_c00141{left:606.266667pt;}
.xaf_c00141{left:609.200000pt;}
.xec_c00141{left:611.333333pt;}
.xff_c00141{left:612.266667pt;}
.x11b_c00141{left:614.533333pt;}
.xa7_c00141{left:618.533333pt;}
.xa1_c00141{left:623.333333pt;}
.x121_c00141{left:624.533333pt;}
.x98_c00141{left:626.533333pt;}
.xa8_c00141{left:627.466667pt;}
.xf2_c00141{left:628.800000pt;}
.xa4_c00141{left:629.866667pt;}
.xe7_c00141{left:632.133333pt;}
.xcc_c00141{left:633.600000pt;}
.x10b_c00141{left:634.800000pt;}
.x107_c00141{left:637.200000pt;}
.x100_c00141{left:639.466667pt;}
.xc4_c00141{left:641.466667pt;}
.x119_c00141{left:642.400000pt;}
.xbf_c00141{left:645.066667pt;}
.xc8_c00141{left:647.466667pt;}
.xd5_c00141{left:649.333333pt;}
.xd9_c00141{left:652.266667pt;}
.xb4_c00141{left:655.866667pt;}
.x101_c00141{left:658.000000pt;}
.x11c_c00141{left:659.066667pt;}
.x10e_c00141{left:660.533333pt;}
.xc9_c00141{left:662.133333pt;}
.xfa_c00141{left:663.600000pt;}
.xd6_c00141{left:665.066667pt;}
.xa9_c00141{left:666.800000pt;}
.xb0_c00141{left:669.733333pt;}
.x116_c00141{left:673.066667pt;}
.x123_c00141{left:674.400000pt;}
.xdd_c00141{left:675.466667pt;}
.x9d_c00141{left:677.066667pt;}
.xfc_c00141{left:679.066667pt;}
.xaa_c00141{left:681.200000pt;}
.x10f_c00141{left:684.800000pt;}
.xa5_c00141{left:687.466667pt;}
.x11e_c00141{left:688.800000pt;}
.xb1_c00141{left:691.466667pt;}
.xc0_c00141{left:693.066667pt;}
.xd1_c00141{left:694.666667pt;}
.x113_c00141{left:695.733333pt;}
.x102_c00141{left:696.666667pt;}
.xe0_c00141{left:698.000000pt;}
.xb5_c00141{left:702.266667pt;}
.xc1_c00141{left:704.000000pt;}
.xa2_c00141{left:705.866667pt;}
.xf8_c00141{left:708.266667pt;}
.x111_c00141{left:712.400000pt;}
.x117_c00141{left:713.333333pt;}
.xd7_c00141{left:714.666667pt;}
.xe8_c00141{left:716.000000pt;}
.xca_c00141{left:717.200000pt;}
.x114_c00141{left:718.800000pt;}
.xcd_c00141{left:720.933333pt;}
.xfb_c00141{left:722.533333pt;}
.x103_c00141{left:723.866667pt;}
.x99_c00141{left:725.066667pt;}
.x11d_c00141{left:727.600000pt;}
.x108_c00141{left:729.066667pt;}
.xd2_c00141{left:731.466667pt;}
.x9a_c00141{left:733.333333pt;}
.x125_c00141{left:734.533333pt;}
.xab_c00141{left:735.600000pt;}
.xce_c00141{left:739.200000pt;}
.xde_c00141{left:741.066667pt;}
.x10c_c00141{left:744.800000pt;}
.xe9_c00141{left:745.733333pt;}
.xda_c00141{left:748.266667pt;}
.xd8_c00141{left:750.133333pt;}
.xb6_c00141{left:752.533333pt;}
.x104_c00141{left:753.600000pt;}
.x109_c00141{left:754.666667pt;}
.xfd_c00141{left:755.866667pt;}
.xe5_c00141{left:756.800000pt;}
}





/* 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_c00142 {
    display:none;
  }
  .loading-indicator_c00142.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00142 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_c00142 { 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_c00142" -> "#page-container .classname_c00142")
 */
.pf_c00142 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00142 { /* 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_c00142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00142 { /* 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_c00142 { /* 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_c00142 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00142 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00142 {overflow:visible;}
  }
}
.c_c00142 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00142 { /* 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_c00142:after { /* webkit #35443 */
  content: '';
}
.t_c00142:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00142 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 */
}
.__c00142 { /* 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_c00142 { /* info for Javascript */
  display:none;
}
.l_c00142 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00142 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00142 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00142: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_c00142 {
    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_c00142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00142.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_c00142 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00142;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.000000;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;}
.m67_c00142{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m31_c00142{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m34_c00142{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m73_c00142{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mee_c00142{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m62_c00142{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.me1_c00142{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m51_c00142{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m81_c00142{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.med_c00142{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.me2_c00142{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4_c00142{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00142{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00142{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m40_c00142{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7_c00142{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m41_c00142{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00142{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00142{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00142{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00142{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00142{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00142{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00142{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00142{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mad_c00142{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m118_c00142{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00142{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00142{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00142{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00142{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00142{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m64_c00142{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00142{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00142{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m80_c00142{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00142{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00142{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00142{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.me_c00142{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m47_c00142{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.me9_c00142{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00142{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m18_c00142{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mca_c00142{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m50_c00142{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00142{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00142{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00142{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mba_c00142{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m16_c00142{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m43_c00142{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m38_c00142{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00142{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m20_c00142{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m96_c00142{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m106_c00142{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00142{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md0_c00142{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00142{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m90_c00142{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mef_c00142{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00142{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00142{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m111_c00142{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00142{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00142{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me8_c00142{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m108_c00142{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00142{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m12_c00142{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m17_c00142{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00142{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m23_c00142{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00142{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m116_c00142{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m93_c00142{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00142{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m78_c00142{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00142{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00142{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m77_c00142{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m45_c00142{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00142{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00142{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.ma_c00142{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m115_c00142{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m13_c00142{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md7_c00142{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00142{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m76_c00142{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00142{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m103_c00142{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m100_c00142{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m56_c00142{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me5_c00142{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mff_c00142{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00142{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m53_c00142{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00142{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m89_c00142{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m46_c00142{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m8_c00142{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m86_c00142{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md2_c00142{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m19_c00142{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m24_c00142{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc_c00142{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m88_c00142{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00142{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m22_c00142{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m105_c00142{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00142{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m55_c00142{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mea_c00142{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00142{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m25_c00142{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m82_c00142{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m33_c00142{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mce_c00142{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00142{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00142{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00142{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md1_c00142{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m21_c00142{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00142{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00142{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00142{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md8_c00142{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00142{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m36_c00142{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00142{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb_c00142{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00142{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m49_c00142{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m37_c00142{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m99_c00142{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m15_c00142{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00142{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00142{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m84_c00142{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me7_c00142{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00142{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00142{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3_c00142{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m58_c00142{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m87_c00142{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.md9_c00142{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m102_c00142{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00142{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00142{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00142{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m117_c00142{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m114_c00142{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00142{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mf_c00142{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m94_c00142{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m79_c00142{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00142{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00142{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mab_c00142{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00142{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m30_c00142{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00142{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m92_c00142{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00142{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m63_c00142{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00142{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00142{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00142{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m48_c00142{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6_c00142{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00142{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00142{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00142{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m54_c00142{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m109_c00142{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00142{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m119_c00142{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m42_c00142{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m91_c00142{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00142{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m32_c00142{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m14_c00142{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00142{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00142{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00142{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00142{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m113_c00142{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me0_c00142{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m104_c00142{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00142{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m107_c00142{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m110_c00142{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mac_c00142{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md_c00142{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00142{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00142{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00142{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00142{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00142{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00142{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00142{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00142{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m83_c00142{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00142{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m112_c00142{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.maa_c00142{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m60_c00142{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m29_c00142{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00142{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.meb_c00142{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00142{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m59_c00142{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00142{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00142{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m85_c00142{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00142{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mec_c00142{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00142{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m44_c00142{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m52_c00142{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mde_c00142{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m70_c00142{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00142{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00142{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00142{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m57_c00142{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m10_c00142{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00142{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md4_c00142{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00142{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00142{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);}
.m11_c00142{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me3_c00142{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00142{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m61_c00142{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00142{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00142{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m66_c00142{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.md3_c00142{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00142{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m65_c00142{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m39_c00142{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00142{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00142{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00142{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m9_c00142{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m72_c00142{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00142{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m27_c00142{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00142{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m28_c00142{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00142{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.mae_c00142{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.md5_c00142{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00142{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mda_c00142{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m71_c00142{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00142{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00142{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00142{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m26_c00142{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00142{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.maf_c00142{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.me6_c00142{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m98_c00142{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m97_c00142{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m101_c00142{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00142{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00142{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.md6_c00142{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00142{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m95_c00142{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00142{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00142{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00142{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m68_c00142{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00142{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00142{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m69_c00142{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m75_c00142{transform:matrix(0.423750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423750,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(0.457000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457000,0.000000,0.000000,0.250000,0,0);}
.me4_c00142{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m74_c00142{transform:matrix(0.656000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls0_c00142{letter-spacing:0.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{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__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00142{word-spacing:-11.714777px;}
.ws7_c00142{word-spacing:-10.256410px;}
.ws1_c00142{word-spacing:-9.668122px;}
.ws0_c00142{word-spacing:-7.783453px;}
.wsf_c00142{word-spacing:0.000000px;}
.ws2_c00142{word-spacing:1.025641px;}
.ws4_c00142{word-spacing:1.048735px;}
.ws3_c00142{word-spacing:5.277778px;}
.wse_c00142{word-spacing:5.581006px;}
.ws9_c00142{word-spacing:10.637002px;}
.ws8_c00142{word-spacing:22.142857px;}
.wsa_c00142{word-spacing:23.211796px;}
.wsb_c00142{word-spacing:35.833333px;}
.ws5_c00142{word-spacing:40.000000px;}
.ws6_c00142{word-spacing:50.416667px;}
.wsc_c00142{word-spacing:218.750000px;}
._2_c00142{width:43.257611px;}
._1_c00142{width:55.714286px;}
._4_c00142{width:59.285714px;}
._3_c00142{width:64.642857px;}
._5_c00142{width:70.000000px;}
._0_c00142{width:321.785714px;}
.fc0_c00142{color:transparent;}
.fs6_c00142{font-size:30.000000px;}
.fsa_c00142{font-size:42.000000px;}
.fs7_c00142{font-size:48.000000px;}
.fs9_c00142{font-size:54.000000px;}
.fs4_c00142{font-size:60.000000px;}
.fs2_c00142{font-size:66.000000px;}
.fs3_c00142{font-size:72.000000px;}
.fs0_c00142{font-size:78.000000px;}
.fs1_c00142{font-size:84.000000px;}
.fs5_c00142{font-size:90.000000px;}
.fs8_c00142{font-size:144.000000px;}
.y0_c00142{bottom:0.000000px;}
.y66_c00142{bottom:153.750000px;}
.y65_c00142{bottom:181.800000px;}
.y33_c00142{bottom:182.550000px;}
.y32_c00142{bottom:196.950000px;}
.y64_c00142{bottom:199.800000px;}
.y31_c00142{bottom:211.350000px;}
.y63_c00142{bottom:217.800000px;}
.y30_c00142{bottom:225.750000px;}
.y62_c00142{bottom:235.500000px;}
.y2f_c00142{bottom:239.700000px;}
.y61_c00142{bottom:253.500000px;}
.y60_c00142{bottom:271.200000px;}
.y5f_c00142{bottom:289.200000px;}
.y2e_c00142{bottom:294.000000px;}
.y5e_c00142{bottom:306.900000px;}
.y2d_c00142{bottom:311.700000px;}
.y5d_c00142{bottom:324.900000px;}
.y2c_c00142{bottom:329.700000px;}
.y5c_c00142{bottom:342.900000px;}
.y2b_c00142{bottom:355.950000px;}
.y5b_c00142{bottom:360.600000px;}
.y2a_c00142{bottom:373.650000px;}
.y5a_c00142{bottom:378.300000px;}
.y29_c00142{bottom:391.350000px;}
.y59_c00142{bottom:396.000000px;}
.y28_c00142{bottom:414.000000px;}
.y27_c00142{bottom:431.700000px;}
.y58_c00142{bottom:449.700000px;}
.y24_c00142{bottom:453.600000px;}
.y57_c00142{bottom:467.400000px;}
.y23_c00142{bottom:471.600000px;}
.y56_c00142{bottom:485.400000px;}
.y22_c00142{bottom:493.950000px;}
.y55_c00142{bottom:503.100000px;}
.y21_c00142{bottom:511.200000px;}
.y54_c00142{bottom:521.100000px;}
.y20_c00142{bottom:533.550000px;}
.y53_c00142{bottom:539.100000px;}
.y1f_c00142{bottom:554.400000px;}
.y52_c00142{bottom:556.800000px;}
.y51_c00142{bottom:574.500000px;}
.y1e_c00142{bottom:577.050000px;}
.y26_c00142{bottom:587.550000px;}
.y50_c00142{bottom:592.500000px;}
.y1d_c00142{bottom:599.100000px;}
.y4f_c00142{bottom:610.500000px;}
.y1c_c00142{bottom:617.100000px;}
.y4e_c00142{bottom:636.000000px;}
.y1b_c00142{bottom:644.100000px;}
.y25_c00142{bottom:644.700000px;}
.y4d_c00142{bottom:650.100000px;}
.y1a_c00142{bottom:663.900000px;}
.y4c_c00142{bottom:664.800000px;}
.y2_c00142{bottom:672.900000px;}
.y17_c00142{bottom:679.050000px;}
.y4b_c00142{bottom:679.200000px;}
.y19_c00142{bottom:681.150000px;}
.y18_c00142{bottom:681.900000px;}
.y4a_c00142{bottom:693.600000px;}
.y16_c00142{bottom:700.950000px;}
.y49_c00142{bottom:707.700000px;}
.y48_c00142{bottom:722.700000px;}
.y15_c00142{bottom:727.200000px;}
.y47_c00142{bottom:735.600000px;}
.y46_c00142{bottom:750.300000px;}
.y14_c00142{bottom:762.000000px;}
.y45_c00142{bottom:763.800000px;}
.y44_c00142{bottom:779.700000px;}
.y13_c00142{bottom:797.700000px;}
.y43_c00142{bottom:802.950000px;}
.y12_c00142{bottom:815.700000px;}
.y42_c00142{bottom:820.950000px;}
.y41_c00142{bottom:838.950000px;}
.y11_c00142{bottom:842.400000px;}
.y40_c00142{bottom:856.650000px;}
.y10_c00142{bottom:860.400000px;}
.y3f_c00142{bottom:874.350000px;}
.yf_c00142{bottom:882.300000px;}
.y3e_c00142{bottom:892.050000px;}
.ye_c00142{bottom:900.300000px;}
.yd_c00142{bottom:918.300000px;}
.y3d_c00142{bottom:923.100000px;}
.yc_c00142{bottom:936.000000px;}
.y3c_c00142{bottom:940.950000px;}
.y3b_c00142{bottom:958.650000px;}
.yb_c00142{bottom:960.900000px;}
.ya_c00142{bottom:975.900000px;}
.y3a_c00142{bottom:976.650000px;}
.y39_c00142{bottom:994.350000px;}
.y9_c00142{bottom:999.300000px;}
.y38_c00142{bottom:1016.250000px;}
.y8_c00142{bottom:1017.300000px;}
.y7_c00142{bottom:1035.300000px;}
.y6_c00142{bottom:1061.700000px;}
.y36_c00142{bottom:1069.500000px;}
.y5_c00142{bottom:1079.550000px;}
.y4_c00142{bottom:1097.250000px;}
.y35_c00142{bottom:1098.000000px;}
.y37_c00142{bottom:1108.800000px;}
.y3_c00142{bottom:1114.950000px;}
.y34_c00142{bottom:1115.700000px;}
.y1_c00142{bottom:1141.950000px;}
.h8_c00142{height:30.000000px;}
.hc_c00142{height:42.000000px;}
.h9_c00142{height:48.000000px;}
.hb_c00142{height:54.000000px;}
.h6_c00142{height:60.000000px;}
.h4_c00142{height:66.000000px;}
.h5_c00142{height:72.000000px;}
.h2_c00142{height:78.000000px;}
.h3_c00142{height:84.000000px;}
.h7_c00142{height:90.000000px;}
.ha_c00142{height:144.000000px;}
.h1_c00142{height:1270.500000px;}
.h0_c00142{height:1270.799927px;}
.w1_c00142{width:953.250000px;}
.w0_c00142{width:953.280030px;}
.x0_c00142{left:0.000000px;}
.x95_c00142{left:59.400000px;}
.x90_c00142{left:60.450000px;}
.x81_c00142{left:63.000000px;}
.x3_c00142{left:68.100000px;}
.x5d_c00142{left:70.200000px;}
.x38_c00142{left:71.250000px;}
.x45_c00142{left:72.300000px;}
.x1e_c00142{left:74.850000px;}
.x8c_c00142{left:75.900000px;}
.x91_c00142{left:77.400000px;}
.x88_c00142{left:79.500000px;}
.x7e_c00142{left:81.450000px;}
.x75_c00142{left:83.400000px;}
.x70_c00142{left:85.050000px;}
.x41_c00142{left:87.150000px;}
.x52_c00142{left:88.650000px;}
.x4d_c00142{left:89.700000px;}
.x34_c00142{left:90.750000px;}
.x1a_c00142{left:92.850000px;}
.xd_c00142{left:94.950000px;}
.x8d_c00142{left:99.300000px;}
.x72_c00142{left:101.850000px;}
.x71_c00142{left:102.900000px;}
.x5b_c00142{left:104.250000px;}
.x6a_c00142{left:106.200000px;}
.x53_c00142{left:107.400000px;}
.x63_c00142{left:108.450000px;}
.xa_c00142{left:111.900000px;}
.x1f_c00142{left:117.000000px;}
.x89_c00142{left:118.050000px;}
.x4e_c00142{left:119.550000px;}
.x82_c00142{left:121.650000px;}
.x7f_c00142{left:124.350000px;}
.x98_c00142{left:125.700000px;}
.x39_c00142{left:130.350000px;}
.x42_c00142{left:131.400000px;}
.x13_c00142{left:133.200000px;}
.x8e_c00142{left:135.000000px;}
.x35_c00142{left:136.050000px;}
.x5e_c00142{left:140.100000px;}
.x1b_c00142{left:142.950000px;}
.x84_c00142{left:149.700000px;}
.x64_c00142{left:152.700000px;}
.x5c_c00142{left:153.900000px;}
.x3a_c00142{left:155.850000px;}
.xb_c00142{left:157.650000px;}
.x14_c00142{left:159.150000px;}
.x46_c00142{left:160.800000px;}
.x76_c00142{left:162.000000px;}
.x65_c00142{left:164.550000px;}
.x4f_c00142{left:165.600000px;}
.x5f_c00142{left:168.900000px;}
.x68_c00142{left:171.300000px;}
.x4_c00142{left:172.800000px;}
.x6b_c00142{left:177.450000px;}
.x2b_c00142{left:178.650000px;}
.x96_c00142{left:181.050000px;}
.xe_c00142{left:182.850000px;}
.x83_c00142{left:189.300000px;}
.x55_c00142{left:190.350000px;}
.x43_c00142{left:191.550000px;}
.x15_c00142{left:192.600000px;}
.xf_c00142{left:195.750000px;}
.x50_c00142{left:199.050000px;}
.x92_c00142{left:202.050000px;}
.x85_c00142{left:203.700000px;}
.x54_c00142{left:205.650000px;}
.x44_c00142{left:207.000000px;}
.xc_c00142{left:208.350000px;}
.x2c_c00142{left:211.800000px;}
.x3b_c00142{left:213.450000px;}
.x1c_c00142{left:215.250000px;}
.x79_c00142{left:217.050000px;}
.x36_c00142{left:223.950000px;}
.x4a_c00142{left:225.000000px;}
.x16_c00142{left:227.100000px;}
.x20_c00142{left:229.650000px;}
.x6c_c00142{left:234.000000px;}
.x5_c00142{left:235.800000px;}
.x86_c00142{left:237.150000px;}
.x8a_c00142{left:239.100000px;}
.x51_c00142{left:242.700000px;}
.x99_c00142{left:244.200000px;}
.x6_c00142{left:246.300000px;}
.x3c_c00142{left:247.950000px;}
.x17_c00142{left:249.750000px;}
.x6e_c00142{left:250.950000px;}
.x2d_c00142{left:257.550000px;}
.x56_c00142{left:259.050000px;}
.x97_c00142{left:261.000000px;}
.x73_c00142{left:262.950000px;}
.x37_c00142{left:264.000000px;}
.x66_c00142{left:265.350000px;}
.x18_c00142{left:267.000000px;}
.x93_c00142{left:268.350000px;}
.x7a_c00142{left:270.750000px;}
.x21_c00142{left:274.650000px;}
.x3d_c00142{left:275.700000px;}
.x60_c00142{left:279.450000px;}
.x47_c00142{left:280.650000px;}
.x2e_c00142{left:282.000000px;}
.x69_c00142{left:283.200000px;}
.x8f_c00142{left:284.550000px;}
.x19_c00142{left:288.300000px;}
.x10_c00142{left:289.350000px;}
.x4b_c00142{left:290.550000px;}
.x67_c00142{left:292.800000px;}
.x3e_c00142{left:295.200000px;}
.x7_c00142{left:297.750000px;}
.x1d_c00142{left:300.600000px;}
.x7b_c00142{left:304.950000px;}
.x57_c00142{left:306.600000px;}
.x6f_c00142{left:309.300000px;}
.x8_c00142{left:311.100000px;}
.x8b_c00142{left:314.250000px;}
.x87_c00142{left:318.600000px;}
.x1_c00142{left:320.400000px;}
.x9_c00142{left:321.900000px;}
.x78_c00142{left:324.300000px;}
.x48_c00142{left:325.350000px;}
.x11_c00142{left:326.400000px;}
.x74_c00142{left:327.750000px;}
.x22_c00142{left:328.950000px;}
.x58_c00142{left:330.300000px;}
.x2f_c00142{left:333.900000px;}
.x9a_c00142{left:337.200000px;}
.x23_c00142{left:341.250000px;}
.x30_c00142{left:344.400000px;}
.x77_c00142{left:347.100000px;}
.x61_c00142{left:350.700000px;}
.x59_c00142{left:356.250000px;}
.x3f_c00142{left:358.500000px;}
.x7c_c00142{left:360.750000px;}
.x49_c00142{left:362.100000px;}
.x5a_c00142{left:364.950000px;}
.x6d_c00142{left:366.900000px;}
.x80_c00142{left:371.100000px;}
.x4c_c00142{left:372.300000px;}
.x24_c00142{left:373.350000px;}
.x9b_c00142{left:374.400000px;}
.x12_c00142{left:376.500000px;}
.x31_c00142{left:382.950000px;}
.x62_c00142{left:384.900000px;}
.x94_c00142{left:391.050000px;}
.x7d_c00142{left:393.150000px;}
.x32_c00142{left:400.950000px;}
.x40_c00142{left:416.400000px;}
.x112_c00142{left:425.850000px;}
.xe8_c00142{left:427.650000px;}
.xca_c00142{left:430.500000px;}
.x25_c00142{left:434.250000px;}
.x141_c00142{left:439.350000px;}
.x13a_c00142{left:440.400000px;}
.x123_c00142{left:441.450000px;}
.xeb_c00142{left:442.500000px;}
.xdc_c00142{left:445.650000px;}
.xd1_c00142{left:447.000000px;}
.xb5_c00142{left:448.950000px;}
.xae_c00142{left:450.000000px;}
.x9c_c00142{left:451.500000px;}
.xa3_c00142{left:452.550000px;}
.x110_c00142{left:454.200000px;}
.x107_c00142{left:455.550000px;}
.xf7_c00142{left:456.750000px;}
.x124_c00142{left:460.200000px;}
.x127_c00142{left:461.550000px;}
.xa8_c00142{left:468.750000px;}
.xcb_c00142{left:472.950000px;}
.x142_c00142{left:474.300000px;}
.x140_c00142{left:475.350000px;}
.x13d_c00142{left:476.400000px;}
.xec_c00142{left:477.450000px;}
.x26_c00142{left:478.950000px;}
.x131_c00142{left:480.000000px;}
.xd7_c00142{left:482.550000px;}
.x12c_c00142{left:483.750000px;}
.x117_c00142{left:484.800000px;}
.xb6_c00142{left:486.000000px;}
.xef_c00142{left:488.850000px;}
.xe0_c00142{left:490.200000px;}
.xdd_c00142{left:493.200000px;}
.xe5_c00142{left:497.850000px;}
.xfd_c00142{left:499.950000px;}
.x9d_c00142{left:501.150000px;}
.xa4_c00142{left:502.950000px;}
.x135_c00142{left:506.400000px;}
.x33_c00142{left:508.200000px;}
.x101_c00142{left:509.400000px;}
.x113_c00142{left:510.750000px;}
.xa9_c00142{left:512.250000px;}
.x27_c00142{left:515.250000px;}
.xfe_c00142{left:517.200000px;}
.x10d_c00142{left:518.550000px;}
.x108_c00142{left:521.100000px;}
.x118_c00142{left:523.950000px;}
.x9e_c00142{left:525.300000px;}
.xe6_c00142{left:526.350000px;}
.xbd_c00142{left:528.450000px;}
.x12d_c00142{left:529.500000px;}
.x11b_c00142{left:532.050000px;}
.x102_c00142{left:533.850000px;}
.x11f_c00142{left:534.900000px;}
.xde_c00142{left:536.700000px;}
.x145_c00142{left:537.750000px;}
.xcc_c00142{left:538.800000px;}
.x12a_c00142{left:540.900000px;}
.xaf_c00142{left:545.100000px;}
.xd8_c00142{left:546.600000px;}
.xb7_c00142{left:548.250000px;}
.x128_c00142{left:550.050000px;}
.xaa_c00142{left:553.950000px;}
.x137_c00142{left:555.300000px;}
.x132_c00142{left:557.400000px;}
.x125_c00142{left:558.750000px;}
.xe7_c00142{left:559.800000px;}
.xff_c00142{left:561.900000px;}
.xf0_c00142{left:563.400000px;}
.x12e_c00142{left:564.450000px;}
.xc4_c00142{left:565.500000px;}
.x11c_c00142{left:566.550000px;}
.xed_c00142{left:567.750000px;}
.xe1_c00142{left:569.400000px;}
.xb8_c00142{left:570.600000px;}
.x9f_c00142{left:572.400000px;}
.x100_c00142{left:574.500000px;}
.xbe_c00142{left:575.700000px;}
.xf1_c00142{left:578.100000px;}
.xc5_c00142{left:579.150000px;}
.x120_c00142{left:581.250000px;}
.xee_c00142{left:583.200000px;}
.xa5_c00142{left:584.700000px;}
.xbf_c00142{left:586.200000px;}
.xab_c00142{left:587.850000px;}
.xe2_c00142{left:589.200000px;}
.x114_c00142{left:592.050000px;}
.xcd_c00142{left:593.100000px;}
.xf9_c00142{left:594.600000px;}
.x28_c00142{left:596.550000px;}
.x10e_c00142{left:599.100000px;}
.x109_c00142{left:600.600000px;}
.x103_c00142{left:602.550000px;}
.xf8_c00142{left:604.350000px;}
.xb0_c00142{left:605.550000px;}
.x10a_c00142{left:607.500000px;}
.xfa_c00142{left:608.700000px;}
.x104_c00142{left:609.750000px;}
.xd2_c00142{left:611.850000px;}
.xa6_c00142{left:613.200000px;}
.xa0_c00142{left:615.300000px;}
.xb1_c00142{left:616.350000px;}
.x12b_c00142{left:618.000000px;}
.x136_c00142{left:620.100000px;}
.x10b_c00142{left:622.350000px;}
.x11d_c00142{left:623.850000px;}
.x29_c00142{left:625.050000px;}
.x143_c00142{left:626.400000px;}
.x129_c00142{left:627.900000px;}
.xb9_c00142{left:630.750000px;}
.xa7_c00142{left:633.300000px;}
.x12f_c00142{left:636.150000px;}
.xc0_c00142{left:637.350000px;}
.x105_c00142{left:638.850000px;}
.x138_c00142{left:640.650000px;}
.x133_c00142{left:643.050000px;}
.x10f_c00142{left:644.400000px;}
.xf2_c00142{left:645.750000px;}
.xd9_c00142{left:647.400000px;}
.xba_c00142{left:648.450000px;}
.x144_c00142{left:650.100000px;}
.xa1_c00142{left:651.300000px;}
.x121_c00142{left:652.500000px;}
.xc1_c00142{left:653.550000px;}
.xe3_c00142{left:656.100000px;}
.xac_c00142{left:658.350000px;}
.xfb_c00142{left:659.850000px;}
.x13e_c00142{left:661.800000px;}
.xb2_c00142{left:663.900000px;}
.xe9_c00142{left:666.300000px;}
.xf3_c00142{left:667.350000px;}
.x122_c00142{left:671.550000px;}
.x10c_c00142{left:673.200000px;}
.xce_c00142{left:674.400000px;}
.x146_c00142{left:678.150000px;}
.xdf_c00142{left:679.950000px;}
.x13f_c00142{left:681.300000px;}
.xd3_c00142{left:682.350000px;}
.xc6_c00142{left:686.100000px;}
.xcf_c00142{left:688.500000px;}
.xe4_c00142{left:690.300000px;}
.x111_c00142{left:691.500000px;}
.xfc_c00142{left:693.000000px;}
.xf4_c00142{left:694.050000px;}
.x119_c00142{left:695.250000px;}
.x13b_c00142{left:696.300000px;}
.xbb_c00142{left:697.350000px;}
.xd4_c00142{left:698.550000px;}
.x115_c00142{left:700.050000px;}
.xda_c00142{left:701.700000px;}
.xa2_c00142{left:703.200000px;}
.xc2_c00142{left:704.250000px;}
.x126_c00142{left:709.200000px;}
.x139_c00142{left:711.900000px;}
.x130_c00142{left:713.550000px;}
.xd5_c00142{left:716.550000px;}
.xbc_c00142{left:717.900000px;}
.xb3_c00142{left:719.400000px;}
.x2a_c00142{left:721.950000px;}
.x106_c00142{left:723.450000px;}
.xf5_c00142{left:724.950000px;}
.xc7_c00142{left:726.450000px;}
.x134_c00142{left:727.650000px;}
.xdb_c00142{left:729.750000px;}
.x11a_c00142{left:732.150000px;}
.x13c_c00142{left:733.800000px;}
.xad_c00142{left:736.500000px;}
.xc8_c00142{left:738.750000px;}
.x11e_c00142{left:740.100000px;}
.xb4_c00142{left:741.300000px;}
.x2_c00142{left:744.450000px;}
.xf6_c00142{left:746.850000px;}
.xd0_c00142{left:749.400000px;}
.xea_c00142{left:751.050000px;}
.xc3_c00142{left:753.600000px;}
.xc9_c00142{left:757.050000px;}
.x147_c00142{left:758.100000px;}
.x116_c00142{left:759.450000px;}
.xd6_c00142{left:761.250000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.wsd_c00142{word-spacing:-10.413135pt;}
.ws7_c00142{word-spacing:-9.116809pt;}
.ws1_c00142{word-spacing:-8.593886pt;}
.ws0_c00142{word-spacing:-6.918624pt;}
.wsf_c00142{word-spacing:0.000000pt;}
.ws2_c00142{word-spacing:0.911681pt;}
.ws4_c00142{word-spacing:0.932209pt;}
.ws3_c00142{word-spacing:4.691358pt;}
.wse_c00142{word-spacing:4.960894pt;}
.ws9_c00142{word-spacing:9.455113pt;}
.ws8_c00142{word-spacing:19.682540pt;}
.wsa_c00142{word-spacing:20.632708pt;}
.wsb_c00142{word-spacing:31.851852pt;}
.ws5_c00142{word-spacing:35.555556pt;}
.ws6_c00142{word-spacing:44.814815pt;}
.wsc_c00142{word-spacing:194.444444pt;}
._2_c00142{width:38.451210pt;}
._1_c00142{width:49.523810pt;}
._4_c00142{width:52.698413pt;}
._3_c00142{width:57.460317pt;}
._5_c00142{width:62.222222pt;}
._0_c00142{width:286.031746pt;}
.fs6_c00142{font-size:26.666667pt;}
.fsa_c00142{font-size:37.333333pt;}
.fs7_c00142{font-size:42.666667pt;}
.fs9_c00142{font-size:48.000000pt;}
.fs4_c00142{font-size:53.333333pt;}
.fs2_c00142{font-size:58.666667pt;}
.fs3_c00142{font-size:64.000000pt;}
.fs0_c00142{font-size:69.333333pt;}
.fs1_c00142{font-size:74.666667pt;}
.fs5_c00142{font-size:80.000000pt;}
.fs8_c00142{font-size:128.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y66_c00142{bottom:136.666667pt;}
.y65_c00142{bottom:161.600000pt;}
.y33_c00142{bottom:162.266667pt;}
.y32_c00142{bottom:175.066667pt;}
.y64_c00142{bottom:177.600000pt;}
.y31_c00142{bottom:187.866667pt;}
.y63_c00142{bottom:193.600000pt;}
.y30_c00142{bottom:200.666667pt;}
.y62_c00142{bottom:209.333333pt;}
.y2f_c00142{bottom:213.066667pt;}
.y61_c00142{bottom:225.333333pt;}
.y60_c00142{bottom:241.066667pt;}
.y5f_c00142{bottom:257.066667pt;}
.y2e_c00142{bottom:261.333333pt;}
.y5e_c00142{bottom:272.800000pt;}
.y2d_c00142{bottom:277.066667pt;}
.y5d_c00142{bottom:288.800000pt;}
.y2c_c00142{bottom:293.066667pt;}
.y5c_c00142{bottom:304.800000pt;}
.y2b_c00142{bottom:316.400000pt;}
.y5b_c00142{bottom:320.533333pt;}
.y2a_c00142{bottom:332.133333pt;}
.y5a_c00142{bottom:336.266667pt;}
.y29_c00142{bottom:347.866667pt;}
.y59_c00142{bottom:352.000000pt;}
.y28_c00142{bottom:368.000000pt;}
.y27_c00142{bottom:383.733333pt;}
.y58_c00142{bottom:399.733333pt;}
.y24_c00142{bottom:403.200000pt;}
.y57_c00142{bottom:415.466667pt;}
.y23_c00142{bottom:419.200000pt;}
.y56_c00142{bottom:431.466667pt;}
.y22_c00142{bottom:439.066667pt;}
.y55_c00142{bottom:447.200000pt;}
.y21_c00142{bottom:454.400000pt;}
.y54_c00142{bottom:463.200000pt;}
.y20_c00142{bottom:474.266667pt;}
.y53_c00142{bottom:479.200000pt;}
.y1f_c00142{bottom:492.800000pt;}
.y52_c00142{bottom:494.933333pt;}
.y51_c00142{bottom:510.666667pt;}
.y1e_c00142{bottom:512.933333pt;}
.y26_c00142{bottom:522.266667pt;}
.y50_c00142{bottom:526.666667pt;}
.y1d_c00142{bottom:532.533333pt;}
.y4f_c00142{bottom:542.666667pt;}
.y1c_c00142{bottom:548.533333pt;}
.y4e_c00142{bottom:565.333333pt;}
.y1b_c00142{bottom:572.533333pt;}
.y25_c00142{bottom:573.066667pt;}
.y4d_c00142{bottom:577.866667pt;}
.y1a_c00142{bottom:590.133333pt;}
.y4c_c00142{bottom:590.933333pt;}
.y2_c00142{bottom:598.133333pt;}
.y17_c00142{bottom:603.600000pt;}
.y4b_c00142{bottom:603.733333pt;}
.y19_c00142{bottom:605.466667pt;}
.y18_c00142{bottom:606.133333pt;}
.y4a_c00142{bottom:616.533333pt;}
.y16_c00142{bottom:623.066667pt;}
.y49_c00142{bottom:629.066667pt;}
.y48_c00142{bottom:642.400000pt;}
.y15_c00142{bottom:646.400000pt;}
.y47_c00142{bottom:653.866667pt;}
.y46_c00142{bottom:666.933333pt;}
.y14_c00142{bottom:677.333333pt;}
.y45_c00142{bottom:678.933333pt;}
.y44_c00142{bottom:693.066667pt;}
.y13_c00142{bottom:709.066667pt;}
.y43_c00142{bottom:713.733333pt;}
.y12_c00142{bottom:725.066667pt;}
.y42_c00142{bottom:729.733333pt;}
.y41_c00142{bottom:745.733333pt;}
.y11_c00142{bottom:748.800000pt;}
.y40_c00142{bottom:761.466667pt;}
.y10_c00142{bottom:764.800000pt;}
.y3f_c00142{bottom:777.200000pt;}
.yf_c00142{bottom:784.266667pt;}
.y3e_c00142{bottom:792.933333pt;}
.ye_c00142{bottom:800.266667pt;}
.yd_c00142{bottom:816.266667pt;}
.y3d_c00142{bottom:820.533333pt;}
.yc_c00142{bottom:832.000000pt;}
.y3c_c00142{bottom:836.400000pt;}
.y3b_c00142{bottom:852.133333pt;}
.yb_c00142{bottom:854.133333pt;}
.ya_c00142{bottom:867.466667pt;}
.y3a_c00142{bottom:868.133333pt;}
.y39_c00142{bottom:883.866667pt;}
.y9_c00142{bottom:888.266667pt;}
.y38_c00142{bottom:903.333333pt;}
.y8_c00142{bottom:904.266667pt;}
.y7_c00142{bottom:920.266667pt;}
.y6_c00142{bottom:943.733333pt;}
.y36_c00142{bottom:950.666667pt;}
.y5_c00142{bottom:959.600000pt;}
.y4_c00142{bottom:975.333333pt;}
.y35_c00142{bottom:976.000000pt;}
.y37_c00142{bottom:985.600000pt;}
.y3_c00142{bottom:991.066667pt;}
.y34_c00142{bottom:991.733333pt;}
.y1_c00142{bottom:1015.066667pt;}
.h8_c00142{height:26.666667pt;}
.hc_c00142{height:37.333333pt;}
.h9_c00142{height:42.666667pt;}
.hb_c00142{height:48.000000pt;}
.h6_c00142{height:53.333333pt;}
.h4_c00142{height:58.666667pt;}
.h5_c00142{height:64.000000pt;}
.h2_c00142{height:69.333333pt;}
.h3_c00142{height:74.666667pt;}
.h7_c00142{height:80.000000pt;}
.ha_c00142{height:128.000000pt;}
.h1_c00142{height:1129.333333pt;}
.h0_c00142{height:1129.599935pt;}
.w1_c00142{width:847.333333pt;}
.w0_c00142{width:847.360027pt;}
.x0_c00142{left:0.000000pt;}
.x95_c00142{left:52.800000pt;}
.x90_c00142{left:53.733333pt;}
.x81_c00142{left:56.000000pt;}
.x3_c00142{left:60.533333pt;}
.x5d_c00142{left:62.400000pt;}
.x38_c00142{left:63.333333pt;}
.x45_c00142{left:64.266667pt;}
.x1e_c00142{left:66.533333pt;}
.x8c_c00142{left:67.466667pt;}
.x91_c00142{left:68.800000pt;}
.x88_c00142{left:70.666667pt;}
.x7e_c00142{left:72.400000pt;}
.x75_c00142{left:74.133333pt;}
.x70_c00142{left:75.600000pt;}
.x41_c00142{left:77.466667pt;}
.x52_c00142{left:78.800000pt;}
.x4d_c00142{left:79.733333pt;}
.x34_c00142{left:80.666667pt;}
.x1a_c00142{left:82.533333pt;}
.xd_c00142{left:84.400000pt;}
.x8d_c00142{left:88.266667pt;}
.x72_c00142{left:90.533333pt;}
.x71_c00142{left:91.466667pt;}
.x5b_c00142{left:92.666667pt;}
.x6a_c00142{left:94.400000pt;}
.x53_c00142{left:95.466667pt;}
.x63_c00142{left:96.400000pt;}
.xa_c00142{left:99.466667pt;}
.x1f_c00142{left:104.000000pt;}
.x89_c00142{left:104.933333pt;}
.x4e_c00142{left:106.266667pt;}
.x82_c00142{left:108.133333pt;}
.x7f_c00142{left:110.533333pt;}
.x98_c00142{left:111.733333pt;}
.x39_c00142{left:115.866667pt;}
.x42_c00142{left:116.800000pt;}
.x13_c00142{left:118.400000pt;}
.x8e_c00142{left:120.000000pt;}
.x35_c00142{left:120.933333pt;}
.x5e_c00142{left:124.533333pt;}
.x1b_c00142{left:127.066667pt;}
.x84_c00142{left:133.066667pt;}
.x64_c00142{left:135.733333pt;}
.x5c_c00142{left:136.800000pt;}
.x3a_c00142{left:138.533333pt;}
.xb_c00142{left:140.133333pt;}
.x14_c00142{left:141.466667pt;}
.x46_c00142{left:142.933333pt;}
.x76_c00142{left:144.000000pt;}
.x65_c00142{left:146.266667pt;}
.x4f_c00142{left:147.200000pt;}
.x5f_c00142{left:150.133333pt;}
.x68_c00142{left:152.266667pt;}
.x4_c00142{left:153.600000pt;}
.x6b_c00142{left:157.733333pt;}
.x2b_c00142{left:158.800000pt;}
.x96_c00142{left:160.933333pt;}
.xe_c00142{left:162.533333pt;}
.x83_c00142{left:168.266667pt;}
.x55_c00142{left:169.200000pt;}
.x43_c00142{left:170.266667pt;}
.x15_c00142{left:171.200000pt;}
.xf_c00142{left:174.000000pt;}
.x50_c00142{left:176.933333pt;}
.x92_c00142{left:179.600000pt;}
.x85_c00142{left:181.066667pt;}
.x54_c00142{left:182.800000pt;}
.x44_c00142{left:184.000000pt;}
.xc_c00142{left:185.200000pt;}
.x2c_c00142{left:188.266667pt;}
.x3b_c00142{left:189.733333pt;}
.x1c_c00142{left:191.333333pt;}
.x79_c00142{left:192.933333pt;}
.x36_c00142{left:199.066667pt;}
.x4a_c00142{left:200.000000pt;}
.x16_c00142{left:201.866667pt;}
.x20_c00142{left:204.133333pt;}
.x6c_c00142{left:208.000000pt;}
.x5_c00142{left:209.600000pt;}
.x86_c00142{left:210.800000pt;}
.x8a_c00142{left:212.533333pt;}
.x51_c00142{left:215.733333pt;}
.x99_c00142{left:217.066667pt;}
.x6_c00142{left:218.933333pt;}
.x3c_c00142{left:220.400000pt;}
.x17_c00142{left:222.000000pt;}
.x6e_c00142{left:223.066667pt;}
.x2d_c00142{left:228.933333pt;}
.x56_c00142{left:230.266667pt;}
.x97_c00142{left:232.000000pt;}
.x73_c00142{left:233.733333pt;}
.x37_c00142{left:234.666667pt;}
.x66_c00142{left:235.866667pt;}
.x18_c00142{left:237.333333pt;}
.x93_c00142{left:238.533333pt;}
.x7a_c00142{left:240.666667pt;}
.x21_c00142{left:244.133333pt;}
.x3d_c00142{left:245.066667pt;}
.x60_c00142{left:248.400000pt;}
.x47_c00142{left:249.466667pt;}
.x2e_c00142{left:250.666667pt;}
.x69_c00142{left:251.733333pt;}
.x8f_c00142{left:252.933333pt;}
.x19_c00142{left:256.266667pt;}
.x10_c00142{left:257.200000pt;}
.x4b_c00142{left:258.266667pt;}
.x67_c00142{left:260.266667pt;}
.x3e_c00142{left:262.400000pt;}
.x7_c00142{left:264.666667pt;}
.x1d_c00142{left:267.200000pt;}
.x7b_c00142{left:271.066667pt;}
.x57_c00142{left:272.533333pt;}
.x6f_c00142{left:274.933333pt;}
.x8_c00142{left:276.533333pt;}
.x8b_c00142{left:279.333333pt;}
.x87_c00142{left:283.200000pt;}
.x1_c00142{left:284.800000pt;}
.x9_c00142{left:286.133333pt;}
.x78_c00142{left:288.266667pt;}
.x48_c00142{left:289.200000pt;}
.x11_c00142{left:290.133333pt;}
.x74_c00142{left:291.333333pt;}
.x22_c00142{left:292.400000pt;}
.x58_c00142{left:293.600000pt;}
.x2f_c00142{left:296.800000pt;}
.x9a_c00142{left:299.733333pt;}
.x23_c00142{left:303.333333pt;}
.x30_c00142{left:306.133333pt;}
.x77_c00142{left:308.533333pt;}
.x61_c00142{left:311.733333pt;}
.x59_c00142{left:316.666667pt;}
.x3f_c00142{left:318.666667pt;}
.x7c_c00142{left:320.666667pt;}
.x49_c00142{left:321.866667pt;}
.x5a_c00142{left:324.400000pt;}
.x6d_c00142{left:326.133333pt;}
.x80_c00142{left:329.866667pt;}
.x4c_c00142{left:330.933333pt;}
.x24_c00142{left:331.866667pt;}
.x9b_c00142{left:332.800000pt;}
.x12_c00142{left:334.666667pt;}
.x31_c00142{left:340.400000pt;}
.x62_c00142{left:342.133333pt;}
.x94_c00142{left:347.600000pt;}
.x7d_c00142{left:349.466667pt;}
.x32_c00142{left:356.400000pt;}
.x40_c00142{left:370.133333pt;}
.x112_c00142{left:378.533333pt;}
.xe8_c00142{left:380.133333pt;}
.xca_c00142{left:382.666667pt;}
.x25_c00142{left:386.000000pt;}
.x141_c00142{left:390.533333pt;}
.x13a_c00142{left:391.466667pt;}
.x123_c00142{left:392.400000pt;}
.xeb_c00142{left:393.333333pt;}
.xdc_c00142{left:396.133333pt;}
.xd1_c00142{left:397.333333pt;}
.xb5_c00142{left:399.066667pt;}
.xae_c00142{left:400.000000pt;}
.x9c_c00142{left:401.333333pt;}
.xa3_c00142{left:402.266667pt;}
.x110_c00142{left:403.733333pt;}
.x107_c00142{left:404.933333pt;}
.xf7_c00142{left:406.000000pt;}
.x124_c00142{left:409.066667pt;}
.x127_c00142{left:410.266667pt;}
.xa8_c00142{left:416.666667pt;}
.xcb_c00142{left:420.400000pt;}
.x142_c00142{left:421.600000pt;}
.x140_c00142{left:422.533333pt;}
.x13d_c00142{left:423.466667pt;}
.xec_c00142{left:424.400000pt;}
.x26_c00142{left:425.733333pt;}
.x131_c00142{left:426.666667pt;}
.xd7_c00142{left:428.933333pt;}
.x12c_c00142{left:430.000000pt;}
.x117_c00142{left:430.933333pt;}
.xb6_c00142{left:432.000000pt;}
.xef_c00142{left:434.533333pt;}
.xe0_c00142{left:435.733333pt;}
.xdd_c00142{left:438.400000pt;}
.xe5_c00142{left:442.533333pt;}
.xfd_c00142{left:444.400000pt;}
.x9d_c00142{left:445.466667pt;}
.xa4_c00142{left:447.066667pt;}
.x135_c00142{left:450.133333pt;}
.x33_c00142{left:451.733333pt;}
.x101_c00142{left:452.800000pt;}
.x113_c00142{left:454.000000pt;}
.xa9_c00142{left:455.333333pt;}
.x27_c00142{left:458.000000pt;}
.xfe_c00142{left:459.733333pt;}
.x10d_c00142{left:460.933333pt;}
.x108_c00142{left:463.200000pt;}
.x118_c00142{left:465.733333pt;}
.x9e_c00142{left:466.933333pt;}
.xe6_c00142{left:467.866667pt;}
.xbd_c00142{left:469.733333pt;}
.x12d_c00142{left:470.666667pt;}
.x11b_c00142{left:472.933333pt;}
.x102_c00142{left:474.533333pt;}
.x11f_c00142{left:475.466667pt;}
.xde_c00142{left:477.066667pt;}
.x145_c00142{left:478.000000pt;}
.xcc_c00142{left:478.933333pt;}
.x12a_c00142{left:480.800000pt;}
.xaf_c00142{left:484.533333pt;}
.xd8_c00142{left:485.866667pt;}
.xb7_c00142{left:487.333333pt;}
.x128_c00142{left:488.933333pt;}
.xaa_c00142{left:492.400000pt;}
.x137_c00142{left:493.600000pt;}
.x132_c00142{left:495.466667pt;}
.x125_c00142{left:496.666667pt;}
.xe7_c00142{left:497.600000pt;}
.xff_c00142{left:499.466667pt;}
.xf0_c00142{left:500.800000pt;}
.x12e_c00142{left:501.733333pt;}
.xc4_c00142{left:502.666667pt;}
.x11c_c00142{left:503.600000pt;}
.xed_c00142{left:504.666667pt;}
.xe1_c00142{left:506.133333pt;}
.xb8_c00142{left:507.200000pt;}
.x9f_c00142{left:508.800000pt;}
.x100_c00142{left:510.666667pt;}
.xbe_c00142{left:511.733333pt;}
.xf1_c00142{left:513.866667pt;}
.xc5_c00142{left:514.800000pt;}
.x120_c00142{left:516.666667pt;}
.xee_c00142{left:518.400000pt;}
.xa5_c00142{left:519.733333pt;}
.xbf_c00142{left:521.066667pt;}
.xab_c00142{left:522.533333pt;}
.xe2_c00142{left:523.733333pt;}
.x114_c00142{left:526.266667pt;}
.xcd_c00142{left:527.200000pt;}
.xf9_c00142{left:528.533333pt;}
.x28_c00142{left:530.266667pt;}
.x10e_c00142{left:532.533333pt;}
.x109_c00142{left:533.866667pt;}
.x103_c00142{left:535.600000pt;}
.xf8_c00142{left:537.200000pt;}
.xb0_c00142{left:538.266667pt;}
.x10a_c00142{left:540.000000pt;}
.xfa_c00142{left:541.066667pt;}
.x104_c00142{left:542.000000pt;}
.xd2_c00142{left:543.866667pt;}
.xa6_c00142{left:545.066667pt;}
.xa0_c00142{left:546.933333pt;}
.xb1_c00142{left:547.866667pt;}
.x12b_c00142{left:549.333333pt;}
.x136_c00142{left:551.200000pt;}
.x10b_c00142{left:553.200000pt;}
.x11d_c00142{left:554.533333pt;}
.x29_c00142{left:555.600000pt;}
.x143_c00142{left:556.800000pt;}
.x129_c00142{left:558.133333pt;}
.xb9_c00142{left:560.666667pt;}
.xa7_c00142{left:562.933333pt;}
.x12f_c00142{left:565.466667pt;}
.xc0_c00142{left:566.533333pt;}
.x105_c00142{left:567.866667pt;}
.x138_c00142{left:569.466667pt;}
.x133_c00142{left:571.600000pt;}
.x10f_c00142{left:572.800000pt;}
.xf2_c00142{left:574.000000pt;}
.xd9_c00142{left:575.466667pt;}
.xba_c00142{left:576.400000pt;}
.x144_c00142{left:577.866667pt;}
.xa1_c00142{left:578.933333pt;}
.x121_c00142{left:580.000000pt;}
.xc1_c00142{left:580.933333pt;}
.xe3_c00142{left:583.200000pt;}
.xac_c00142{left:585.200000pt;}
.xfb_c00142{left:586.533333pt;}
.x13e_c00142{left:588.266667pt;}
.xb2_c00142{left:590.133333pt;}
.xe9_c00142{left:592.266667pt;}
.xf3_c00142{left:593.200000pt;}
.x122_c00142{left:596.933333pt;}
.x10c_c00142{left:598.400000pt;}
.xce_c00142{left:599.466667pt;}
.x146_c00142{left:602.800000pt;}
.xdf_c00142{left:604.400000pt;}
.x13f_c00142{left:605.600000pt;}
.xd3_c00142{left:606.533333pt;}
.xc6_c00142{left:609.866667pt;}
.xcf_c00142{left:612.000000pt;}
.xe4_c00142{left:613.600000pt;}
.x111_c00142{left:614.666667pt;}
.xfc_c00142{left:616.000000pt;}
.xf4_c00142{left:616.933333pt;}
.x119_c00142{left:618.000000pt;}
.x13b_c00142{left:618.933333pt;}
.xbb_c00142{left:619.866667pt;}
.xd4_c00142{left:620.933333pt;}
.x115_c00142{left:622.266667pt;}
.xda_c00142{left:623.733333pt;}
.xa2_c00142{left:625.066667pt;}
.xc2_c00142{left:626.000000pt;}
.x126_c00142{left:630.400000pt;}
.x139_c00142{left:632.800000pt;}
.x130_c00142{left:634.266667pt;}
.xd5_c00142{left:636.933333pt;}
.xbc_c00142{left:638.133333pt;}
.xb3_c00142{left:639.466667pt;}
.x2a_c00142{left:641.733333pt;}
.x106_c00142{left:643.066667pt;}
.xf5_c00142{left:644.400000pt;}
.xc7_c00142{left:645.733333pt;}
.x134_c00142{left:646.800000pt;}
.xdb_c00142{left:648.666667pt;}
.x11a_c00142{left:650.800000pt;}
.x13c_c00142{left:652.266667pt;}
.xad_c00142{left:654.666667pt;}
.xc8_c00142{left:656.666667pt;}
.x11e_c00142{left:657.866667pt;}
.xb4_c00142{left:658.933333pt;}
.x2_c00142{left:661.733333pt;}
.xf6_c00142{left:663.866667pt;}
.xd0_c00142{left:666.133333pt;}
.xea_c00142{left:667.600000pt;}
.xc3_c00142{left:669.866667pt;}
.xc9_c00142{left:672.933333pt;}
.x147_c00142{left:673.866667pt;}
.x116_c00142{left:675.066667pt;}
.xd6_c00142{left:676.666667pt;}
}





/* 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_c00143 {
    display:none;
  }
  .loading-indicator_c00143.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00143 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_c00143 { 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_c00143" -> "#page-container .classname_c00143")
 */
.pf_c00143 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00143 { /* 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_c00143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00143 { /* 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_c00143 { /* 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_c00143 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00143 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00143 {overflow:visible;}
  }
}
.c_c00143 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00143 { /* 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_c00143:after { /* webkit #35443 */
  content: '';
}
.t_c00143:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00143 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 */
}
.__c00143 { /* 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_c00143 { /* info for Javascript */
  display:none;
}
.l_c00143 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00143 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00143 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00143: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_c00143 {
    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_c00143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00143.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_c00143 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00143;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.000000;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;}
.m5a_c00143{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00143{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00143{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00143{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00143{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m110_c00143{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00143{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mb_c00143{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m56_c00143{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00143{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00143{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.mca_c00143{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00143{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m124_c00143{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m115_c00143{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.maa_c00143{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.m126_c00143{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00143{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m29_c00143{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md7_c00143{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.md1_c00143{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00143{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m54_c00143{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00143{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00143{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md8_c00143{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00143{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00143{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00143{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m11_c00143{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00143{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00143{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00143{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m122_c00143{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00143{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00143{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00143{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00143{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m113_c00143{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m31_c00143{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m106_c00143{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m55_c00143{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00143{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m83_c00143{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m27_c00143{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00143{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m107_c00143{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m57_c00143{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m52_c00143{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00143{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m45_c00143{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00143{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m53_c00143{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00143{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00143{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00143{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m40_c00143{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mba_c00143{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00143{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m65_c00143{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m102_c00143{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00143{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00143{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m95_c00143{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00143{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m19_c00143{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m21_c00143{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m13_c00143{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m71_c00143{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00143{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m43_c00143{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00143{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma_c00143{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m123_c00143{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m16_c00143{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m75_c00143{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m23_c00143{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00143{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00143{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.md9_c00143{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m26_c00143{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mff_c00143{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m91_c00143{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00143{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m22_c00143{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00143{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00143{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00143{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m63_c00143{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00143{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m49_c00143{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m125_c00143{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00143{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00143{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf_c00143{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me6_c00143{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00143{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m42_c00143{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00143{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00143{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m33_c00143{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m72_c00143{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m28_c00143{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m38_c00143{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m99_c00143{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m50_c00143{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.meb_c00143{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00143{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00143{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00143{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00143{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00143{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m24_c00143{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me0_c00143{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00143{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m59_c00143{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m58_c00143{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00143{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m86_c00143{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m73_c00143{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.me4_c00143{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m44_c00143{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00143{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.me_c00143{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m32_c00143{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me8_c00143{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m17_c00143{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00143{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m78_c00143{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m36_c00143{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m47_c00143{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00143{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.mc_c00143{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00143{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m104_c00143{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00143{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m12_c00143{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m97_c00143{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me3_c00143{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00143{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m14_c00143{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m121_c00143{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00143{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.me1_c00143{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m20_c00143{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00143{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m117_c00143{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mad_c00143{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00143{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00143{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m105_c00143{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00143{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00143{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6_c00143{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mec_c00143{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m18_c00143{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mab_c00143{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00143{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00143{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00143{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00143{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00143{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m76_c00143{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m80_c00143{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00143{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00143{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00143{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m98_c00143{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m61_c00143{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m62_c00143{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m101_c00143{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.me9_c00143{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mde_c00143{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m67_c00143{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m93_c00143{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mda_c00143{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m81_c00143{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00143{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m100_c00143{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m15_c00143{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m66_c00143{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00143{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00143{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00143{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mea_c00143{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00143{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00143{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00143{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00143{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m9_c00143{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00143{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m94_c00143{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00143{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00143{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8_c00143{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m39_c00143{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00143{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mce_c00143{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m25_c00143{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00143{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00143{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00143{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m51_c00143{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00143{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m114_c00143{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m60_c00143{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m37_c00143{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00143{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mae_c00143{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m79_c00143{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00143{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me2_c00143{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m77_c00143{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m82_c00143{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m90_c00143{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00143{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m30_c00143{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00143{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m108_c00143{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10_c00143{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m69_c00143{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00143{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m35_c00143{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00143{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00143{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md2_c00143{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00143{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m85_c00143{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00143{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me7_c00143{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00143{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m84_c00143{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00143{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m74_c00143{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me5_c00143{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00143{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.md3_c00143{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mac_c00143{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00143{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00143{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00143{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00143{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m120_c00143{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m46_c00143{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00143{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00143{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m92_c00143{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00143{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00143{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00143{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m64_c00143{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m89_c00143{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md4_c00143{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m48_c00143{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m34_c00143{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m68_c00143{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00143{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.maf_c00143{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m87_c00143{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00143{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00143{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00143{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00143{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00143{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mee_c00143{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00143{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m70_c00143{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m5_c00143{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.md6_c00143{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00143{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m127_c00143{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00143{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md5_c00143{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m109_c00143{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m119_c00143{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m116_c00143{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00143{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m118_c00143{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.md0_c00143{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m88_c00143{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mef_c00143{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m41_c00143{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00143{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m112_c00143{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m103_c00143{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.md_c00143{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m4_c00143{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m96_c00143{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.med_c00143{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.459750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00143{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m111_c00143{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(1.464000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.464000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.464000,0.000000,0.000000,0.250000,0,0);}
.m3_c00143{transform:matrix(1.928000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.928000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.928000,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls0_c00143{letter-spacing:0.000000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{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__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00143{word-spacing:-15.571429px;}
.wse_c00143{word-spacing:-12.212824px;}
.ws2_c00143{word-spacing:-9.804878px;}
.wsd_c00143{word-spacing:-4.500000px;}
.wsf_c00143{word-spacing:0.000000px;}
.ws9_c00143{word-spacing:3.421053px;}
.ws1_c00143{word-spacing:7.656250px;}
.wsc_c00143{word-spacing:8.484848px;}
.ws0_c00143{word-spacing:12.955414px;}
.wsb_c00143{word-spacing:13.585644px;}
.ws4_c00143{word-spacing:15.033520px;}
.ws3_c00143{word-spacing:17.363128px;}
.ws8_c00143{word-spacing:22.142857px;}
.ws6_c00143{word-spacing:36.420382px;}
.ws7_c00143{word-spacing:50.416667px;}
.wsa_c00143{word-spacing:61.250000px;}
._1_c00143{width:55.714286px;}
._0_c00143{width:64.642857px;}
.fc0_c00143{color:transparent;}
.fs2_c00143{font-size:30.000000px;}
.fs5_c00143{font-size:54.000000px;}
.fs4_c00143{font-size:60.000000px;}
.fs3_c00143{font-size:66.000000px;}
.fs0_c00143{font-size:72.000000px;}
.fs1_c00143{font-size:84.000000px;}
.y0_c00143{bottom:0.000000px;}
.y6a_c00143{bottom:191.850000px;}
.y69_c00143{bottom:206.700000px;}
.y68_c00143{bottom:221.100000px;}
.y67_c00143{bottom:236.850000px;}
.y36_c00143{bottom:244.050000px;}
.y66_c00143{bottom:255.000000px;}
.y35_c00143{bottom:265.950000px;}
.y65_c00143{bottom:273.000000px;}
.y34_c00143{bottom:282.900000px;}
.y64_c00143{bottom:291.000000px;}
.y33_c00143{bottom:300.150000px;}
.y63_c00143{bottom:308.700000px;}
.y32_c00143{bottom:317.850000px;}
.y62_c00143{bottom:326.400000px;}
.y31_c00143{bottom:335.100000px;}
.y61_c00143{bottom:344.100000px;}
.y30_c00143{bottom:352.800000px;}
.y60_c00143{bottom:366.000000px;}
.y2f_c00143{bottom:370.050000px;}
.y5f_c00143{bottom:384.000000px;}
.y2e_c00143{bottom:386.400000px;}
.y5e_c00143{bottom:402.000000px;}
.y2d_c00143{bottom:404.100000px;}
.y5d_c00143{bottom:419.700000px;}
.y2c_c00143{bottom:421.800000px;}
.y5c_c00143{bottom:437.700000px;}
.y2b_c00143{bottom:439.500000px;}
.y5b_c00143{bottom:455.400000px;}
.y2a_c00143{bottom:457.200000px;}
.y5a_c00143{bottom:473.100000px;}
.y29_c00143{bottom:474.450000px;}
.y28_c00143{bottom:492.150000px;}
.y59_c00143{bottom:495.000000px;}
.y27_c00143{bottom:509.850000px;}
.y58_c00143{bottom:513.300000px;}
.y26_c00143{bottom:527.550000px;}
.y57_c00143{bottom:540.000000px;}
.y25_c00143{bottom:544.800000px;}
.y56_c00143{bottom:558.300000px;}
.y24_c00143{bottom:562.500000px;}
.y55_c00143{bottom:576.300000px;}
.y23_c00143{bottom:579.750000px;}
.y54_c00143{bottom:594.000000px;}
.y22_c00143{bottom:597.750000px;}
.y53_c00143{bottom:614.550000px;}
.y21_c00143{bottom:615.000000px;}
.y20_c00143{bottom:632.700000px;}
.y52_c00143{bottom:637.950000px;}
.y1f_c00143{bottom:650.400000px;}
.y51_c00143{bottom:655.800000px;}
.y1e_c00143{bottom:668.100000px;}
.y50_c00143{bottom:673.800000px;}
.y1d_c00143{bottom:686.100000px;}
.y4f_c00143{bottom:691.800000px;}
.y1c_c00143{bottom:703.350000px;}
.y4e_c00143{bottom:709.500000px;}
.y1b_c00143{bottom:721.350000px;}
.y4d_c00143{bottom:727.500000px;}
.y1a_c00143{bottom:739.350000px;}
.y4c_c00143{bottom:744.600000px;}
.y19_c00143{bottom:757.050000px;}
.y4b_c00143{bottom:762.900000px;}
.y18_c00143{bottom:774.750000px;}
.y4a_c00143{bottom:781.200000px;}
.y17_c00143{bottom:792.000000px;}
.y49_c00143{bottom:799.200000px;}
.y16_c00143{bottom:810.000000px;}
.y48_c00143{bottom:817.200000px;}
.y15_c00143{bottom:827.700000px;}
.y47_c00143{bottom:835.200000px;}
.y14_c00143{bottom:845.400000px;}
.y46_c00143{bottom:853.200000px;}
.y13_c00143{bottom:863.400000px;}
.y45_c00143{bottom:873.300000px;}
.y12_c00143{bottom:881.100000px;}
.y44_c00143{bottom:893.100000px;}
.y11_c00143{bottom:899.100000px;}
.y43_c00143{bottom:911.100000px;}
.y10_c00143{bottom:916.800000px;}
.y42_c00143{bottom:928.800000px;}
.yf_c00143{bottom:934.500000px;}
.y41_c00143{bottom:946.800000px;}
.ye_c00143{bottom:952.200000px;}
.y40_c00143{bottom:966.600000px;}
.yd_c00143{bottom:970.200000px;}
.y3f_c00143{bottom:982.500000px;}
.yc_c00143{bottom:988.200000px;}
.y3e_c00143{bottom:997.200000px;}
.yb_c00143{bottom:1005.900000px;}
.y3d_c00143{bottom:1012.350000px;}
.ya_c00143{bottom:1023.600000px;}
.y3c_c00143{bottom:1026.750000px;}
.y3b_c00143{bottom:1040.850000px;}
.y9_c00143{bottom:1041.600000px;}
.y3a_c00143{bottom:1055.550000px;}
.y8_c00143{bottom:1059.300000px;}
.y39_c00143{bottom:1067.100000px;}
.y7_c00143{bottom:1077.000000px;}
.y38_c00143{bottom:1083.600000px;}
.y6_c00143{bottom:1095.000000px;}
.y37_c00143{bottom:1096.200000px;}
.y5_c00143{bottom:1112.700000px;}
.y4_c00143{bottom:1130.400000px;}
.y1_c00143{bottom:1156.350000px;}
.y2_c00143{bottom:1157.400000px;}
.y3_c00143{bottom:1276.200000px;}
.h4_c00143{height:30.000000px;}
.h7_c00143{height:54.000000px;}
.h6_c00143{height:60.000000px;}
.h5_c00143{height:66.000000px;}
.h2_c00143{height:72.000000px;}
.h3_c00143{height:84.000000px;}
.h0_c00143{height:1280.879975px;}
.h1_c00143{height:1281.000000px;}
.w1_c00143{width:953.250000px;}
.w0_c00143{width:953.280030px;}
.x0_c00143{left:0.000000px;}
.x3_c00143{left:49.350000px;}
.x4_c00143{left:139.050000px;}
.x1_c00143{left:181.800000px;}
.x5e_c00143{left:195.900000px;}
.x5_c00143{left:199.800000px;}
.x2b_c00143{left:201.750000px;}
.x26_c00143{left:202.800000px;}
.x42_c00143{left:204.000000px;}
.x60_c00143{left:205.800000px;}
.x69_c00143{left:207.150000px;}
.x87_c00143{left:208.350000px;}
.x9a_c00143{left:209.550000px;}
.xa0_c00143{left:218.550000px;}
.x17_c00143{left:220.350000px;}
.x81_c00143{left:223.200000px;}
.x2c_c00143{left:224.400000px;}
.x91_c00143{left:225.450000px;}
.x99_c00143{left:226.500000px;}
.x8e_c00143{left:227.550000px;}
.x55_c00143{left:230.850000px;}
.x4d_c00143{left:234.150000px;}
.x43_c00143{left:235.650000px;}
.x92_c00143{left:237.000000px;}
.xf_c00143{left:238.500000px;}
.x7d_c00143{left:240.150000px;}
.x37_c00143{left:242.850000px;}
.x59_c00143{left:244.200000px;}
.x3c_c00143{left:247.200000px;}
.x6d_c00143{left:249.150000px;}
.x6_c00143{left:250.950000px;}
.x32_c00143{left:253.050000px;}
.xa3_c00143{left:255.750000px;}
.x27_c00143{left:256.800000px;}
.x70_c00143{left:258.900000px;}
.x47_c00143{left:260.550000px;}
.xa7_c00143{left:261.750000px;}
.x3d_c00143{left:264.150000px;}
.x61_c00143{left:265.950000px;}
.x18_c00143{left:267.450000px;}
.x38_c00143{left:269.100000px;}
.x44_c00143{left:271.350000px;}
.x33_c00143{left:272.550000px;}
.x64_c00143{left:273.900000px;}
.x7c_c00143{left:275.100000px;}
.x48_c00143{left:277.800000px;}
.x6a_c00143{left:279.900000px;}
.xa1_c00143{left:282.000000px;}
.x3e_c00143{left:283.200000px;}
.x8a_c00143{left:286.200000px;}
.x4e_c00143{left:287.400000px;}
.x19_c00143{left:288.750000px;}
.x8f_c00143{left:290.100000px;}
.x76_c00143{left:292.200000px;}
.x5a_c00143{left:293.850000px;}
.x62_c00143{left:295.500000px;}
.x75_c00143{left:297.450000px;}
.x10_c00143{left:300.000000px;}
.xa2_c00143{left:301.050000px;}
.xa4_c00143{left:302.550000px;}
.x1a_c00143{left:306.000000px;}
.x28_c00143{left:308.250000px;}
.x5b_c00143{left:309.750000px;}
.x7_c00143{left:311.400000px;}
.x88_c00143{left:313.500000px;}
.x6c_c00143{left:314.550000px;}
.x7e_c00143{left:316.500000px;}
.x39_c00143{left:317.700000px;}
.x11_c00143{left:319.800000px;}
.x45_c00143{left:322.050000px;}
.x8_c00143{left:323.250000px;}
.x9b_c00143{left:328.800000px;}
.x2d_c00143{left:329.850000px;}
.xa8_c00143{left:330.900000px;}
.x95_c00143{left:332.250000px;}
.x12_c00143{left:334.950000px;}
.x9d_c00143{left:337.050000px;}
.x56_c00143{left:338.850000px;}
.x34_c00143{left:340.950000px;}
.x1b_c00143{left:342.000000px;}
.x3f_c00143{left:344.100000px;}
.x9_c00143{left:345.150000px;}
.x20_c00143{left:348.450000px;}
.x83_c00143{left:349.650000px;}
.x5c_c00143{left:351.600000px;}
.x96_c00143{left:353.850000px;}
.x21_c00143{left:355.650000px;}
.x2e_c00143{left:357.900000px;}
.x84_c00143{left:359.100000px;}
.x1c_c00143{left:361.800000px;}
.x90_c00143{left:365.700000px;}
.x49_c00143{left:367.050000px;}
.x79_c00143{left:368.100000px;}
.x2f_c00143{left:369.450000px;}
.x13_c00143{left:372.750000px;}
.xa_c00143{left:373.950000px;}
.x66_c00143{left:376.500000px;}
.x82_c00143{left:378.600000px;}
.x22_c00143{left:380.550000px;}
.x93_c00143{left:382.350000px;}
.x8c_c00143{left:383.400000px;}
.x5f_c00143{left:385.800000px;}
.x9e_c00143{left:387.450000px;}
.x51_c00143{left:388.500000px;}
.x14_c00143{left:391.050000px;}
.x4f_c00143{left:392.850000px;}
.xb_c00143{left:395.850000px;}
.x97_c00143{left:398.100000px;}
.x85_c00143{left:400.200000px;}
.x29_c00143{left:401.550000px;}
.x46_c00143{left:402.750000px;}
.x40_c00143{left:403.800000px;}
.x67_c00143{left:405.900000px;}
.x4a_c00143{left:408.000000px;}
.x23_c00143{left:411.900000px;}
.x5d_c00143{left:413.100000px;}
.x30_c00143{left:414.750000px;}
.x65_c00143{left:416.400000px;}
.x94_c00143{left:418.050000px;}
.xa5_c00143{left:421.500000px;}
.x52_c00143{left:423.450000px;}
.x7f_c00143{left:424.950000px;}
.x71_c00143{left:426.150000px;}
.x7a_c00143{left:427.800000px;}
.x3a_c00143{left:429.000000px;}
.x2_c00143{left:432.300000px;}
.x2a_c00143{left:435.000000px;}
.x1d_c00143{left:436.650000px;}
.x89_c00143{left:438.000000px;}
.x53_c00143{left:441.150000px;}
.xc_c00143{left:442.950000px;}
.x4b_c00143{left:445.800000px;}
.x3b_c00143{left:447.000000px;}
.x72_c00143{left:448.050000px;}
.x8d_c00143{left:449.250000px;}
.x68_c00143{left:451.950000px;}
.xd_c00143{left:455.250000px;}
.x24_c00143{left:456.900000px;}
.x6e_c00143{left:458.700000px;}
.x9f_c00143{left:460.500000px;}
.x77_c00143{left:461.850000px;}
.x15_c00143{left:463.050000px;}
.x7b_c00143{left:464.850000px;}
.x57_c00143{left:466.950000px;}
.x41_c00143{left:468.900000px;}
.x31_c00143{left:470.850000px;}
.x1e_c00143{left:473.400000px;}
.x58_c00143{left:474.900000px;}
.x25_c00143{left:476.400000px;}
.xa6_c00143{left:477.600000px;}
.x35_c00143{left:478.650000px;}
.x80_c00143{left:479.700000px;}
.x16_c00143{left:481.350000px;}
.x78_c00143{left:484.500000px;}
.x50_c00143{left:485.700000px;}
.x73_c00143{left:487.650000px;}
.x86_c00143{left:489.150000px;}
.x63_c00143{left:492.450000px;}
.x36_c00143{left:494.100000px;}
.x6b_c00143{left:495.450000px;}
.x54_c00143{left:497.700000px;}
.x4c_c00143{left:499.050000px;}
.x8b_c00143{left:501.450000px;}
.x1f_c00143{left:503.250000px;}
.xe_c00143{left:504.900000px;}
.xa9_c00143{left:507.300000px;}
.x6f_c00143{left:509.100000px;}
.x98_c00143{left:510.450000px;}
.x74_c00143{left:513.150000px;}
.x9c_c00143{left:515.700000px;}
.xaf_c00143{left:540.000000px;}
.x120_c00143{left:544.950000px;}
.x12f_c00143{left:547.950000px;}
.xd7_c00143{left:550.050000px;}
.xb8_c00143{left:553.500000px;}
.xcf_c00143{left:555.150000px;}
.xe5_c00143{left:560.550000px;}
.x100_c00143{left:562.050000px;}
.x11d_c00143{left:563.100000px;}
.x14a_c00143{left:564.150000px;}
.x133_c00143{left:565.350000px;}
.x138_c00143{left:566.850000px;}
.xc7_c00143{left:569.100000px;}
.xd5_c00143{left:570.150000px;}
.xaa_c00143{left:575.700000px;}
.xdf_c00143{left:578.100000px;}
.xf0_c00143{left:579.300000px;}
.x128_c00143{left:583.350000px;}
.xfb_c00143{left:585.000000px;}
.xb9_c00143{left:587.400000px;}
.x141_c00143{left:589.800000px;}
.xd1_c00143{left:591.150000px;}
.x112_c00143{left:593.250000px;}
.xe0_c00143{left:596.100000px;}
.xdc_c00143{left:600.000000px;}
.xb0_c00143{left:601.500000px;}
.xfc_c00143{left:602.700000px;}
.x121_c00143{left:606.900000px;}
.xc8_c00143{left:608.100000px;}
.xd2_c00143{left:610.200000px;}
.x134_c00143{left:612.150000px;}
.x122_c00143{left:614.850000px;}
.xed_c00143{left:615.900000px;}
.x144_c00143{left:617.100000px;}
.x10d_c00143{left:619.500000px;}
.x104_c00143{left:620.550000px;}
.xe9_c00143{left:621.600000px;}
.xc9_c00143{left:622.800000px;}
.x12c_c00143{left:623.850000px;}
.xd3_c00143{left:624.900000px;}
.x13b_c00143{left:627.150000px;}
.x109_c00143{left:628.350000px;}
.xab_c00143{left:631.200000px;}
.x130_c00143{left:633.000000px;}
.xba_c00143{left:634.950000px;}
.x11e_c00143{left:636.150000px;}
.xee_c00143{left:637.500000px;}
.x101_c00143{left:639.150000px;}
.xf1_c00143{left:642.000000px;}
.x12d_c00143{left:645.150000px;}
.xd6_c00143{left:646.200000px;}
.x139_c00143{left:648.300000px;}
.x116_c00143{left:649.350000px;}
.xac_c00143{left:650.700000px;}
.xd9_c00143{left:652.050000px;}
.xf8_c00143{left:653.550000px;}
.xbe_c00143{left:655.800000px;}
.xca_c00143{left:658.500000px;}
.xe1_c00143{left:659.550000px;}
.x10e_c00143{left:661.650000px;}
.x129_c00143{left:665.400000px;}
.xb1_c00143{left:666.600000px;}
.xad_c00143{left:669.000000px;}
.x131_c00143{left:670.050000px;}
.x145_c00143{left:671.400000px;}
.xbf_c00143{left:674.550000px;}
.x13c_c00143{left:675.750000px;}
.xbb_c00143{left:678.150000px;}
.xd4_c00143{left:680.400000px;}
.x10a_c00143{left:684.450000px;}
.x10f_c00143{left:686.100000px;}
.xb2_c00143{left:688.200000px;}
.xc0_c00143{left:689.250000px;}
.x12a_c00143{left:691.350000px;}
.xbc_c00143{left:693.600000px;}
.x148_c00143{left:694.800000px;}
.x12e_c00143{left:698.400000px;}
.xcb_c00143{left:700.650000px;}
.x105_c00143{left:702.600000px;}
.x113_c00143{left:704.400000px;}
.x13f_c00143{left:706.650000px;}
.x142_c00143{left:708.900000px;}
.xea_c00143{left:710.550000px;}
.xf9_c00143{left:714.000000px;}
.xcc_c00143{left:716.100000px;}
.x11f_c00143{left:717.450000px;}
.xf2_c00143{left:718.650000px;}
.x10b_c00143{left:720.450000px;}
.x125_c00143{left:722.100000px;}
.x117_c00143{left:725.400000px;}
.xb3_c00143{left:726.750000px;}
.x146_c00143{left:727.950000px;}
.xe6_c00143{left:729.450000px;}
.x110_c00143{left:732.600000px;}
.xc1_c00143{left:734.550000px;}
.xae_c00143{left:736.350000px;}
.x10c_c00143{left:737.700000px;}
.xfd_c00143{left:739.200000px;}
.xf6_c00143{left:742.500000px;}
.xeb_c00143{left:744.000000px;}
.x143_c00143{left:745.050000px;}
.xbd_c00143{left:746.550000px;}
.xcd_c00143{left:747.750000px;}
.xc2_c00143{left:749.700000px;}
.x106_c00143{left:752.250000px;}
.x119_c00143{left:754.350000px;}
.x132_c00143{left:755.400000px;}
.xe7_c00143{left:757.200000px;}
.xda_c00143{left:758.850000px;}
.x135_c00143{left:760.200000px;}
.x11c_c00143{left:762.750000px;}
.x12b_c00143{left:763.950000px;}
.xce_c00143{left:766.800000px;}
.x114_c00143{left:769.950000px;}
.x126_c00143{left:771.000000px;}
.xe2_c00143{left:775.050000px;}
.xb4_c00143{left:776.400000px;}
.xfa_c00143{left:779.100000px;}
.x115_c00143{left:781.500000px;}
.x149_c00143{left:784.800000px;}
.xc3_c00143{left:785.850000px;}
.x102_c00143{left:790.200000px;}
.xf3_c00143{left:792.150000px;}
.xb5_c00143{left:796.500000px;}
.x136_c00143{left:799.800000px;}
.xfe_c00143{left:802.200000px;}
.x11a_c00143{left:803.700000px;}
.xc4_c00143{left:805.350000px;}
.xd8_c00143{left:806.400000px;}
.x107_c00143{left:808.350000px;}
.x118_c00143{left:811.800000px;}
.x13d_c00143{left:813.900000px;}
.x11b_c00143{left:816.600000px;}
.xff_c00143{left:819.150000px;}
.xf7_c00143{left:820.500000px;}
.x123_c00143{left:821.850000px;}
.xef_c00143{left:824.250000px;}
.xb6_c00143{left:827.850000px;}
.xe3_c00143{left:829.050000px;}
.xf4_c00143{left:830.700000px;}
.xe8_c00143{left:831.750000px;}
.xd0_c00143{left:834.900000px;}
.xc5_c00143{left:835.950000px;}
.xdd_c00143{left:837.300000px;}
.x108_c00143{left:839.250000px;}
.x111_c00143{left:841.200000px;}
.x127_c00143{left:843.300000px;}
.x14b_c00143{left:844.950000px;}
.x137_c00143{left:846.150000px;}
.xe4_c00143{left:851.400000px;}
.x13a_c00143{left:853.950000px;}
.xec_c00143{left:855.000000px;}
.x103_c00143{left:858.150000px;}
.x140_c00143{left:860.400000px;}
.xb7_c00143{left:862.050000px;}
.xc6_c00143{left:864.000000px;}
.xde_c00143{left:865.350000px;}
.xdb_c00143{left:866.850000px;}
.xf5_c00143{left:869.250000px;}
.x147_c00143{left:870.900000px;}
.x14c_c00143{left:873.000000px;}
.x124_c00143{left:876.150000px;}
.x13e_c00143{left:880.200000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws5_c00143{word-spacing:-13.841270pt;}
.wse_c00143{word-spacing:-10.855844pt;}
.ws2_c00143{word-spacing:-8.715447pt;}
.wsd_c00143{word-spacing:-4.000000pt;}
.wsf_c00143{word-spacing:0.000000pt;}
.ws9_c00143{word-spacing:3.040936pt;}
.ws1_c00143{word-spacing:6.805556pt;}
.wsc_c00143{word-spacing:7.542088pt;}
.ws0_c00143{word-spacing:11.515924pt;}
.wsb_c00143{word-spacing:12.076128pt;}
.ws4_c00143{word-spacing:13.363128pt;}
.ws3_c00143{word-spacing:15.433892pt;}
.ws8_c00143{word-spacing:19.682540pt;}
.ws6_c00143{word-spacing:32.373673pt;}
.ws7_c00143{word-spacing:44.814815pt;}
.wsa_c00143{word-spacing:54.444444pt;}
._1_c00143{width:49.523810pt;}
._0_c00143{width:57.460317pt;}
.fs2_c00143{font-size:26.666667pt;}
.fs5_c00143{font-size:48.000000pt;}
.fs4_c00143{font-size:53.333333pt;}
.fs3_c00143{font-size:58.666667pt;}
.fs0_c00143{font-size:64.000000pt;}
.fs1_c00143{font-size:74.666667pt;}
.y0_c00143{bottom:0.000000pt;}
.y6a_c00143{bottom:170.533333pt;}
.y69_c00143{bottom:183.733333pt;}
.y68_c00143{bottom:196.533333pt;}
.y67_c00143{bottom:210.533333pt;}
.y36_c00143{bottom:216.933333pt;}
.y66_c00143{bottom:226.666667pt;}
.y35_c00143{bottom:236.400000pt;}
.y65_c00143{bottom:242.666667pt;}
.y34_c00143{bottom:251.466667pt;}
.y64_c00143{bottom:258.666667pt;}
.y33_c00143{bottom:266.800000pt;}
.y63_c00143{bottom:274.400000pt;}
.y32_c00143{bottom:282.533333pt;}
.y62_c00143{bottom:290.133333pt;}
.y31_c00143{bottom:297.866667pt;}
.y61_c00143{bottom:305.866667pt;}
.y30_c00143{bottom:313.600000pt;}
.y60_c00143{bottom:325.333333pt;}
.y2f_c00143{bottom:328.933333pt;}
.y5f_c00143{bottom:341.333333pt;}
.y2e_c00143{bottom:343.466667pt;}
.y5e_c00143{bottom:357.333333pt;}
.y2d_c00143{bottom:359.200000pt;}
.y5d_c00143{bottom:373.066667pt;}
.y2c_c00143{bottom:374.933333pt;}
.y5c_c00143{bottom:389.066667pt;}
.y2b_c00143{bottom:390.666667pt;}
.y5b_c00143{bottom:404.800000pt;}
.y2a_c00143{bottom:406.400000pt;}
.y5a_c00143{bottom:420.533333pt;}
.y29_c00143{bottom:421.733333pt;}
.y28_c00143{bottom:437.466667pt;}
.y59_c00143{bottom:440.000000pt;}
.y27_c00143{bottom:453.200000pt;}
.y58_c00143{bottom:456.266667pt;}
.y26_c00143{bottom:468.933333pt;}
.y57_c00143{bottom:480.000000pt;}
.y25_c00143{bottom:484.266667pt;}
.y56_c00143{bottom:496.266667pt;}
.y24_c00143{bottom:500.000000pt;}
.y55_c00143{bottom:512.266667pt;}
.y23_c00143{bottom:515.333333pt;}
.y54_c00143{bottom:528.000000pt;}
.y22_c00143{bottom:531.333333pt;}
.y53_c00143{bottom:546.266667pt;}
.y21_c00143{bottom:546.666667pt;}
.y20_c00143{bottom:562.400000pt;}
.y52_c00143{bottom:567.066667pt;}
.y1f_c00143{bottom:578.133333pt;}
.y51_c00143{bottom:582.933333pt;}
.y1e_c00143{bottom:593.866667pt;}
.y50_c00143{bottom:598.933333pt;}
.y1d_c00143{bottom:609.866667pt;}
.y4f_c00143{bottom:614.933333pt;}
.y1c_c00143{bottom:625.200000pt;}
.y4e_c00143{bottom:630.666667pt;}
.y1b_c00143{bottom:641.200000pt;}
.y4d_c00143{bottom:646.666667pt;}
.y1a_c00143{bottom:657.200000pt;}
.y4c_c00143{bottom:661.866667pt;}
.y19_c00143{bottom:672.933333pt;}
.y4b_c00143{bottom:678.133333pt;}
.y18_c00143{bottom:688.666667pt;}
.y4a_c00143{bottom:694.400000pt;}
.y17_c00143{bottom:704.000000pt;}
.y49_c00143{bottom:710.400000pt;}
.y16_c00143{bottom:720.000000pt;}
.y48_c00143{bottom:726.400000pt;}
.y15_c00143{bottom:735.733333pt;}
.y47_c00143{bottom:742.400000pt;}
.y14_c00143{bottom:751.466667pt;}
.y46_c00143{bottom:758.400000pt;}
.y13_c00143{bottom:767.466667pt;}
.y45_c00143{bottom:776.266667pt;}
.y12_c00143{bottom:783.200000pt;}
.y44_c00143{bottom:793.866667pt;}
.y11_c00143{bottom:799.200000pt;}
.y43_c00143{bottom:809.866667pt;}
.y10_c00143{bottom:814.933333pt;}
.y42_c00143{bottom:825.600000pt;}
.yf_c00143{bottom:830.666667pt;}
.y41_c00143{bottom:841.600000pt;}
.ye_c00143{bottom:846.400000pt;}
.y40_c00143{bottom:859.200000pt;}
.yd_c00143{bottom:862.400000pt;}
.y3f_c00143{bottom:873.333333pt;}
.yc_c00143{bottom:878.400000pt;}
.y3e_c00143{bottom:886.400000pt;}
.yb_c00143{bottom:894.133333pt;}
.y3d_c00143{bottom:899.866667pt;}
.ya_c00143{bottom:909.866667pt;}
.y3c_c00143{bottom:912.666667pt;}
.y3b_c00143{bottom:925.200000pt;}
.y9_c00143{bottom:925.866667pt;}
.y3a_c00143{bottom:938.266667pt;}
.y8_c00143{bottom:941.600000pt;}
.y39_c00143{bottom:948.533333pt;}
.y7_c00143{bottom:957.333333pt;}
.y38_c00143{bottom:963.200000pt;}
.y6_c00143{bottom:973.333333pt;}
.y37_c00143{bottom:974.400000pt;}
.y5_c00143{bottom:989.066667pt;}
.y4_c00143{bottom:1004.800000pt;}
.y1_c00143{bottom:1027.866667pt;}
.y2_c00143{bottom:1028.800000pt;}
.y3_c00143{bottom:1134.400000pt;}
.h4_c00143{height:26.666667pt;}
.h7_c00143{height:48.000000pt;}
.h6_c00143{height:53.333333pt;}
.h5_c00143{height:58.666667pt;}
.h2_c00143{height:64.000000pt;}
.h3_c00143{height:74.666667pt;}
.h0_c00143{height:1138.559977pt;}
.h1_c00143{height:1138.666667pt;}
.w1_c00143{width:847.333333pt;}
.w0_c00143{width:847.360027pt;}
.x0_c00143{left:0.000000pt;}
.x3_c00143{left:43.866667pt;}
.x4_c00143{left:123.600000pt;}
.x1_c00143{left:161.600000pt;}
.x5e_c00143{left:174.133333pt;}
.x5_c00143{left:177.600000pt;}
.x2b_c00143{left:179.333333pt;}
.x26_c00143{left:180.266667pt;}
.x42_c00143{left:181.333333pt;}
.x60_c00143{left:182.933333pt;}
.x69_c00143{left:184.133333pt;}
.x87_c00143{left:185.200000pt;}
.x9a_c00143{left:186.266667pt;}
.xa0_c00143{left:194.266667pt;}
.x17_c00143{left:195.866667pt;}
.x81_c00143{left:198.400000pt;}
.x2c_c00143{left:199.466667pt;}
.x91_c00143{left:200.400000pt;}
.x99_c00143{left:201.333333pt;}
.x8e_c00143{left:202.266667pt;}
.x55_c00143{left:205.200000pt;}
.x4d_c00143{left:208.133333pt;}
.x43_c00143{left:209.466667pt;}
.x92_c00143{left:210.666667pt;}
.xf_c00143{left:212.000000pt;}
.x7d_c00143{left:213.466667pt;}
.x37_c00143{left:215.866667pt;}
.x59_c00143{left:217.066667pt;}
.x3c_c00143{left:219.733333pt;}
.x6d_c00143{left:221.466667pt;}
.x6_c00143{left:223.066667pt;}
.x32_c00143{left:224.933333pt;}
.xa3_c00143{left:227.333333pt;}
.x27_c00143{left:228.266667pt;}
.x70_c00143{left:230.133333pt;}
.x47_c00143{left:231.600000pt;}
.xa7_c00143{left:232.666667pt;}
.x3d_c00143{left:234.800000pt;}
.x61_c00143{left:236.400000pt;}
.x18_c00143{left:237.733333pt;}
.x38_c00143{left:239.200000pt;}
.x44_c00143{left:241.200000pt;}
.x33_c00143{left:242.266667pt;}
.x64_c00143{left:243.466667pt;}
.x7c_c00143{left:244.533333pt;}
.x48_c00143{left:246.933333pt;}
.x6a_c00143{left:248.800000pt;}
.xa1_c00143{left:250.666667pt;}
.x3e_c00143{left:251.733333pt;}
.x8a_c00143{left:254.400000pt;}
.x4e_c00143{left:255.466667pt;}
.x19_c00143{left:256.666667pt;}
.x8f_c00143{left:257.866667pt;}
.x76_c00143{left:259.733333pt;}
.x5a_c00143{left:261.200000pt;}
.x62_c00143{left:262.666667pt;}
.x75_c00143{left:264.400000pt;}
.x10_c00143{left:266.666667pt;}
.xa2_c00143{left:267.600000pt;}
.xa4_c00143{left:268.933333pt;}
.x1a_c00143{left:272.000000pt;}
.x28_c00143{left:274.000000pt;}
.x5b_c00143{left:275.333333pt;}
.x7_c00143{left:276.800000pt;}
.x88_c00143{left:278.666667pt;}
.x6c_c00143{left:279.600000pt;}
.x7e_c00143{left:281.333333pt;}
.x39_c00143{left:282.400000pt;}
.x11_c00143{left:284.266667pt;}
.x45_c00143{left:286.266667pt;}
.x8_c00143{left:287.333333pt;}
.x9b_c00143{left:292.266667pt;}
.x2d_c00143{left:293.200000pt;}
.xa8_c00143{left:294.133333pt;}
.x95_c00143{left:295.333333pt;}
.x12_c00143{left:297.733333pt;}
.x9d_c00143{left:299.600000pt;}
.x56_c00143{left:301.200000pt;}
.x34_c00143{left:303.066667pt;}
.x1b_c00143{left:304.000000pt;}
.x3f_c00143{left:305.866667pt;}
.x9_c00143{left:306.800000pt;}
.x20_c00143{left:309.733333pt;}
.x83_c00143{left:310.800000pt;}
.x5c_c00143{left:312.533333pt;}
.x96_c00143{left:314.533333pt;}
.x21_c00143{left:316.133333pt;}
.x2e_c00143{left:318.133333pt;}
.x84_c00143{left:319.200000pt;}
.x1c_c00143{left:321.600000pt;}
.x90_c00143{left:325.066667pt;}
.x49_c00143{left:326.266667pt;}
.x79_c00143{left:327.200000pt;}
.x2f_c00143{left:328.400000pt;}
.x13_c00143{left:331.333333pt;}
.xa_c00143{left:332.400000pt;}
.x66_c00143{left:334.666667pt;}
.x82_c00143{left:336.533333pt;}
.x22_c00143{left:338.266667pt;}
.x93_c00143{left:339.866667pt;}
.x8c_c00143{left:340.800000pt;}
.x5f_c00143{left:342.933333pt;}
.x9e_c00143{left:344.400000pt;}
.x51_c00143{left:345.333333pt;}
.x14_c00143{left:347.600000pt;}
.x4f_c00143{left:349.200000pt;}
.xb_c00143{left:351.866667pt;}
.x97_c00143{left:353.866667pt;}
.x85_c00143{left:355.733333pt;}
.x29_c00143{left:356.933333pt;}
.x46_c00143{left:358.000000pt;}
.x40_c00143{left:358.933333pt;}
.x67_c00143{left:360.800000pt;}
.x4a_c00143{left:362.666667pt;}
.x23_c00143{left:366.133333pt;}
.x5d_c00143{left:367.200000pt;}
.x30_c00143{left:368.666667pt;}
.x65_c00143{left:370.133333pt;}
.x94_c00143{left:371.600000pt;}
.xa5_c00143{left:374.666667pt;}
.x52_c00143{left:376.400000pt;}
.x7f_c00143{left:377.733333pt;}
.x71_c00143{left:378.800000pt;}
.x7a_c00143{left:380.266667pt;}
.x3a_c00143{left:381.333333pt;}
.x2_c00143{left:384.266667pt;}
.x2a_c00143{left:386.666667pt;}
.x1d_c00143{left:388.133333pt;}
.x89_c00143{left:389.333333pt;}
.x53_c00143{left:392.133333pt;}
.xc_c00143{left:393.733333pt;}
.x4b_c00143{left:396.266667pt;}
.x3b_c00143{left:397.333333pt;}
.x72_c00143{left:398.266667pt;}
.x8d_c00143{left:399.333333pt;}
.x68_c00143{left:401.733333pt;}
.xd_c00143{left:404.666667pt;}
.x24_c00143{left:406.133333pt;}
.x6e_c00143{left:407.733333pt;}
.x9f_c00143{left:409.333333pt;}
.x77_c00143{left:410.533333pt;}
.x15_c00143{left:411.600000pt;}
.x7b_c00143{left:413.200000pt;}
.x57_c00143{left:415.066667pt;}
.x41_c00143{left:416.800000pt;}
.x31_c00143{left:418.533333pt;}
.x1e_c00143{left:420.800000pt;}
.x58_c00143{left:422.133333pt;}
.x25_c00143{left:423.466667pt;}
.xa6_c00143{left:424.533333pt;}
.x35_c00143{left:425.466667pt;}
.x80_c00143{left:426.400000pt;}
.x16_c00143{left:427.866667pt;}
.x78_c00143{left:430.666667pt;}
.x50_c00143{left:431.733333pt;}
.x73_c00143{left:433.466667pt;}
.x86_c00143{left:434.800000pt;}
.x63_c00143{left:437.733333pt;}
.x36_c00143{left:439.200000pt;}
.x6b_c00143{left:440.400000pt;}
.x54_c00143{left:442.400000pt;}
.x4c_c00143{left:443.600000pt;}
.x8b_c00143{left:445.733333pt;}
.x1f_c00143{left:447.333333pt;}
.xe_c00143{left:448.800000pt;}
.xa9_c00143{left:450.933333pt;}
.x6f_c00143{left:452.533333pt;}
.x98_c00143{left:453.733333pt;}
.x74_c00143{left:456.133333pt;}
.x9c_c00143{left:458.400000pt;}
.xaf_c00143{left:480.000000pt;}
.x120_c00143{left:484.400000pt;}
.x12f_c00143{left:487.066667pt;}
.xd7_c00143{left:488.933333pt;}
.xb8_c00143{left:492.000000pt;}
.xcf_c00143{left:493.466667pt;}
.xe5_c00143{left:498.266667pt;}
.x100_c00143{left:499.600000pt;}
.x11d_c00143{left:500.533333pt;}
.x14a_c00143{left:501.466667pt;}
.x133_c00143{left:502.533333pt;}
.x138_c00143{left:503.866667pt;}
.xc7_c00143{left:505.866667pt;}
.xd5_c00143{left:506.800000pt;}
.xaa_c00143{left:511.733333pt;}
.xdf_c00143{left:513.866667pt;}
.xf0_c00143{left:514.933333pt;}
.x128_c00143{left:518.533333pt;}
.xfb_c00143{left:520.000000pt;}
.xb9_c00143{left:522.133333pt;}
.x141_c00143{left:524.266667pt;}
.xd1_c00143{left:525.466667pt;}
.x112_c00143{left:527.333333pt;}
.xe0_c00143{left:529.866667pt;}
.xdc_c00143{left:533.333333pt;}
.xb0_c00143{left:534.666667pt;}
.xfc_c00143{left:535.733333pt;}
.x121_c00143{left:539.466667pt;}
.xc8_c00143{left:540.533333pt;}
.xd2_c00143{left:542.400000pt;}
.x134_c00143{left:544.133333pt;}
.x122_c00143{left:546.533333pt;}
.xed_c00143{left:547.466667pt;}
.x144_c00143{left:548.533333pt;}
.x10d_c00143{left:550.666667pt;}
.x104_c00143{left:551.600000pt;}
.xe9_c00143{left:552.533333pt;}
.xc9_c00143{left:553.600000pt;}
.x12c_c00143{left:554.533333pt;}
.xd3_c00143{left:555.466667pt;}
.x13b_c00143{left:557.466667pt;}
.x109_c00143{left:558.533333pt;}
.xab_c00143{left:561.066667pt;}
.x130_c00143{left:562.666667pt;}
.xba_c00143{left:564.400000pt;}
.x11e_c00143{left:565.466667pt;}
.xee_c00143{left:566.666667pt;}
.x101_c00143{left:568.133333pt;}
.xf1_c00143{left:570.666667pt;}
.x12d_c00143{left:573.466667pt;}
.xd6_c00143{left:574.400000pt;}
.x139_c00143{left:576.266667pt;}
.x116_c00143{left:577.200000pt;}
.xac_c00143{left:578.400000pt;}
.xd9_c00143{left:579.600000pt;}
.xf8_c00143{left:580.933333pt;}
.xbe_c00143{left:582.933333pt;}
.xca_c00143{left:585.333333pt;}
.xe1_c00143{left:586.266667pt;}
.x10e_c00143{left:588.133333pt;}
.x129_c00143{left:591.466667pt;}
.xb1_c00143{left:592.533333pt;}
.xad_c00143{left:594.666667pt;}
.x131_c00143{left:595.600000pt;}
.x145_c00143{left:596.800000pt;}
.xbf_c00143{left:599.600000pt;}
.x13c_c00143{left:600.666667pt;}
.xbb_c00143{left:602.800000pt;}
.xd4_c00143{left:604.800000pt;}
.x10a_c00143{left:608.400000pt;}
.x10f_c00143{left:609.866667pt;}
.xb2_c00143{left:611.733333pt;}
.xc0_c00143{left:612.666667pt;}
.x12a_c00143{left:614.533333pt;}
.xbc_c00143{left:616.533333pt;}
.x148_c00143{left:617.600000pt;}
.x12e_c00143{left:620.800000pt;}
.xcb_c00143{left:622.800000pt;}
.x105_c00143{left:624.533333pt;}
.x113_c00143{left:626.133333pt;}
.x13f_c00143{left:628.133333pt;}
.x142_c00143{left:630.133333pt;}
.xea_c00143{left:631.600000pt;}
.xf9_c00143{left:634.666667pt;}
.xcc_c00143{left:636.533333pt;}
.x11f_c00143{left:637.733333pt;}
.xf2_c00143{left:638.800000pt;}
.x10b_c00143{left:640.400000pt;}
.x125_c00143{left:641.866667pt;}
.x117_c00143{left:644.800000pt;}
.xb3_c00143{left:646.000000pt;}
.x146_c00143{left:647.066667pt;}
.xe6_c00143{left:648.400000pt;}
.x110_c00143{left:651.200000pt;}
.xc1_c00143{left:652.933333pt;}
.xae_c00143{left:654.533333pt;}
.x10c_c00143{left:655.733333pt;}
.xfd_c00143{left:657.066667pt;}
.xf6_c00143{left:660.000000pt;}
.xeb_c00143{left:661.333333pt;}
.x143_c00143{left:662.266667pt;}
.xbd_c00143{left:663.600000pt;}
.xcd_c00143{left:664.666667pt;}
.xc2_c00143{left:666.400000pt;}
.x106_c00143{left:668.666667pt;}
.x119_c00143{left:670.533333pt;}
.x132_c00143{left:671.466667pt;}
.xe7_c00143{left:673.066667pt;}
.xda_c00143{left:674.533333pt;}
.x135_c00143{left:675.733333pt;}
.x11c_c00143{left:678.000000pt;}
.x12b_c00143{left:679.066667pt;}
.xce_c00143{left:681.600000pt;}
.x114_c00143{left:684.400000pt;}
.x126_c00143{left:685.333333pt;}
.xe2_c00143{left:688.933333pt;}
.xb4_c00143{left:690.133333pt;}
.xfa_c00143{left:692.533333pt;}
.x115_c00143{left:694.666667pt;}
.x149_c00143{left:697.600000pt;}
.xc3_c00143{left:698.533333pt;}
.x102_c00143{left:702.400000pt;}
.xf3_c00143{left:704.133333pt;}
.xb5_c00143{left:708.000000pt;}
.x136_c00143{left:710.933333pt;}
.xfe_c00143{left:713.066667pt;}
.x11a_c00143{left:714.400000pt;}
.xc4_c00143{left:715.866667pt;}
.xd8_c00143{left:716.800000pt;}
.x107_c00143{left:718.533333pt;}
.x118_c00143{left:721.600000pt;}
.x13d_c00143{left:723.466667pt;}
.x11b_c00143{left:725.866667pt;}
.xff_c00143{left:728.133333pt;}
.xf7_c00143{left:729.333333pt;}
.x123_c00143{left:730.533333pt;}
.xef_c00143{left:732.666667pt;}
.xb6_c00143{left:735.866667pt;}
.xe3_c00143{left:736.933333pt;}
.xf4_c00143{left:738.400000pt;}
.xe8_c00143{left:739.333333pt;}
.xd0_c00143{left:742.133333pt;}
.xc5_c00143{left:743.066667pt;}
.xdd_c00143{left:744.266667pt;}
.x108_c00143{left:746.000000pt;}
.x111_c00143{left:747.733333pt;}
.x127_c00143{left:749.600000pt;}
.x14b_c00143{left:751.066667pt;}
.x137_c00143{left:752.133333pt;}
.xe4_c00143{left:756.800000pt;}
.x13a_c00143{left:759.066667pt;}
.xec_c00143{left:760.000000pt;}
.x103_c00143{left:762.800000pt;}
.x140_c00143{left:764.800000pt;}
.xb7_c00143{left:766.266667pt;}
.xc6_c00143{left:768.000000pt;}
.xde_c00143{left:769.200000pt;}
.xdb_c00143{left:770.533333pt;}
.xf5_c00143{left:772.666667pt;}
.x147_c00143{left:774.133333pt;}
.x14c_c00143{left:776.000000pt;}
.x124_c00143{left:778.800000pt;}
.x13e_c00143{left:782.400000pt;}
}





/* 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_c00144 {
    display:none;
  }
  .loading-indicator_c00144.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00144 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_c00144 { 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_c00144" -> "#page-container .classname_c00144")
 */
.pf_c00144 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00144 { /* 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_c00144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00144 { /* 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_c00144 { /* 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_c00144 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00144 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00144 {overflow:visible;}
  }
}
.c_c00144 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00144 { /* 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_c00144:after { /* webkit #35443 */
  content: '';
}
.t_c00144:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00144 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 */
}
.__c00144 { /* 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_c00144 { /* info for Javascript */
  display:none;
}
.l_c00144 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00144 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00144 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00144: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_c00144 {
    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_c00144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00144.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_c00144 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00144;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.000000;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;}
.m4d_c00144{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00144{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m46_c00144{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m19_c00144{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00144{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mb_c00144{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.md9_c00144{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mf_c00144{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00144{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m11_c00144{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.maf_c00144{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m10_c00144{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m56_c00144{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00144{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m71_c00144{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00144{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.me3_c00144{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00144{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m22_c00144{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.maa_c00144{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m17_c00144{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.me_c00144{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma_c00144{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00144{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00144{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m99_c00144{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m23_c00144{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m28_c00144{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mea_c00144{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m73_c00144{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8_c00144{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m21_c00144{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.md4_c00144{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m14_c00144{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00144{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m79_c00144{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m96_c00144{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m111_c00144{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00144{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m63_c00144{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m70_c00144{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00144{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m83_c00144{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m110_c00144{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m7_c00144{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m43_c00144{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m93_c00144{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m107_c00144{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00144{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m41_c00144{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m92_c00144{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m113_c00144{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md0_c00144{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00144{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m101_c00144{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m42_c00144{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m116_c00144{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00144{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00144{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m105_c00144{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m97_c00144{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00144{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00144{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00144{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m45_c00144{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00144{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00144{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00144{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9_c00144{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00144{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m52_c00144{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m48_c00144{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m117_c00144{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m44_c00144{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00144{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m106_c00144{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00144{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md_c00144{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00144{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m81_c00144{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m115_c00144{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mca_c00144{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m30_c00144{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m76_c00144{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00144{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mab_c00144{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m25_c00144{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mec_c00144{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00144{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00144{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m114_c00144{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mff_c00144{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m54_c00144{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00144{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m98_c00144{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me9_c00144{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00144{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00144{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m31_c00144{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m15_c00144{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00144{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m40_c00144{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00144{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00144{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00144{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00144{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00144{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m35_c00144{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00144{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m77_c00144{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc_c00144{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.me1_c00144{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m34_c00144{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m89_c00144{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00144{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00144{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00144{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00144{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6_c00144{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m118_c00144{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m50_c00144{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00144{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00144{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m88_c00144{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m72_c00144{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00144{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00144{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m90_c00144{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00144{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00144{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mba_c00144{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m74_c00144{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00144{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00144{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00144{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00144{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.me5_c00144{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00144{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00144{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m36_c00144{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00144{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00144{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m91_c00144{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00144{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m82_c00144{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m65_c00144{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00144{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m109_c00144{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00144{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m69_c00144{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m33_c00144{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00144{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m58_c00144{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m12_c00144{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00144{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00144{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.me0_c00144{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00144{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00144{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00144{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m59_c00144{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md7_c00144{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.me8_c00144{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md2_c00144{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00144{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m29_c00144{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00144{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00144{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00144{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md3_c00144{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m27_c00144{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00144{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00144{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00144{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m78_c00144{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00144{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00144{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m112_c00144{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m102_c00144{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m16_c00144{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m57_c00144{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00144{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m67_c00144{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m55_c00144{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m13_c00144{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m51_c00144{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00144{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.md5_c00144{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00144{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m47_c00144{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00144{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00144{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mce_c00144{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m20_c00144{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md1_c00144{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m80_c00144{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00144{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m39_c00144{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mac_c00144{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00144{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00144{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m104_c00144{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.med_c00144{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m62_c00144{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m100_c00144{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m18_c00144{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00144{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00144{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m49_c00144{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m64_c00144{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m38_c00144{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00144{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m26_c00144{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00144{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m103_c00144{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m68_c00144{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00144{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m37_c00144{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00144{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00144{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.meb_c00144{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md6_c00144{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mef_c00144{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00144{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mae_c00144{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00144{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);}
.m1a_c00144{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m53_c00144{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00144{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00144{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00144{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me6_c00144{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mda_c00144{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00144{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me4_c00144{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m24_c00144{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m66_c00144{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00144{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m32_c00144{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00144{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00144{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m75_c00144{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m108_c00144{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00144{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00144{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m95_c00144{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00144{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00144{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me7_c00144{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m60_c00144{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m84_c00144{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m86_c00144{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.mad_c00144{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mde_c00144{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00144{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00144{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mee_c00144{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m85_c00144{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00144{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m94_c00144{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00144{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m87_c00144{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m61_c00144{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00144{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00144{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00144{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.me2_c00144{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.md8_c00144{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00144{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00144{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m119_c00144{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00144{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00144{transform:matrix(0.367750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00144{transform:matrix(0.390250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390250,0.000000,0.000000,0.250000,0,0);}
.m0_c00144{transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00144{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00144{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls0_c00144{letter-spacing:0.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{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__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00144{word-spacing:-3.498282px;}
.wsa_c00144{word-spacing:0.000000px;}
.ws7_c00144{word-spacing:0.853659px;}
.ws8_c00144{word-spacing:6.315789px;}
.ws4_c00144{word-spacing:9.591065px;}
.ws6_c00144{word-spacing:11.752577px;}
.ws0_c00144{word-spacing:25.714286px;}
.ws1_c00144{word-spacing:35.833333px;}
.ws3_c00144{word-spacing:40.000000px;}
.ws9_c00144{word-spacing:74.410133px;}
.ws2_c00144{word-spacing:162.631579px;}
._1_c00144{width:59.285714px;}
._2_c00144{width:65.833333px;}
._0_c00144{width:68.214286px;}
._3_c00144{width:74.166667px;}
.fc0_c00144{color:transparent;}
.fs5_c00144{font-size:48.000000px;}
.fs2_c00144{font-size:54.000000px;}
.fs1_c00144{font-size:60.000000px;}
.fs4_c00144{font-size:66.000000px;}
.fs3_c00144{font-size:72.000000px;}
.fs0_c00144{font-size:78.000000px;}
.y0_c00144{bottom:0.000000px;}
.y6a_c00144{bottom:32.100000px;}
.y35_c00144{bottom:102.600000px;}
.y69_c00144{bottom:173.100000px;}
.y68_c00144{bottom:192.300000px;}
.y34_c00144{bottom:192.600000px;}
.y33_c00144{bottom:207.000000px;}
.y67_c00144{bottom:211.350000px;}
.y32_c00144{bottom:221.400000px;}
.y66_c00144{bottom:227.850000px;}
.y65_c00144{bottom:245.550000px;}
.y31_c00144{bottom:258.150000px;}
.y64_c00144{bottom:263.550000px;}
.y63_c00144{bottom:281.250000px;}
.y30_c00144{bottom:286.200000px;}
.y2f_c00144{bottom:287.700000px;}
.y62_c00144{bottom:298.950000px;}
.y2e_c00144{bottom:312.900000px;}
.y61_c00144{bottom:316.950000px;}
.y60_c00144{bottom:334.650000px;}
.y2d_c00144{bottom:335.100000px;}
.y5f_c00144{bottom:352.650000px;}
.y2c_c00144{bottom:357.150000px;}
.y5e_c00144{bottom:369.900000px;}
.y2b_c00144{bottom:383.400000px;}
.y5d_c00144{bottom:388.200000px;}
.y5c_c00144{bottom:405.900000px;}
.y2a_c00144{bottom:410.100000px;}
.y5b_c00144{bottom:423.150000px;}
.y29_c00144{bottom:427.650000px;}
.y5a_c00144{bottom:441.150000px;}
.y28_c00144{bottom:445.650000px;}
.y59_c00144{bottom:459.150000px;}
.y27_c00144{bottom:463.350000px;}
.y58_c00144{bottom:476.850000px;}
.y26_c00144{bottom:484.200000px;}
.y57_c00144{bottom:494.850000px;}
.y25_c00144{bottom:500.400000px;}
.y56_c00144{bottom:512.550000px;}
.y24_c00144{bottom:518.700000px;}
.y55_c00144{bottom:530.250000px;}
.y23_c00144{bottom:536.700000px;}
.y54_c00144{bottom:547.950000px;}
.y22_c00144{bottom:554.400000px;}
.y21_c00144{bottom:571.650000px;}
.y53_c00144{bottom:572.400000px;}
.y52_c00144{bottom:586.800000px;}
.y20_c00144{bottom:589.350000px;}
.y51_c00144{bottom:601.200000px;}
.y1f_c00144{bottom:607.350000px;}
.y50_c00144{bottom:615.600000px;}
.y1e_c00144{bottom:629.250000px;}
.y4f_c00144{bottom:630.000000px;}
.y4e_c00144{bottom:641.850000px;}
.y1d_c00144{bottom:647.250000px;}
.y4d_c00144{bottom:658.050000px;}
.y1c_c00144{bottom:673.050000px;}
.y4c_c00144{bottom:675.300000px;}
.y1b_c00144{bottom:691.050000px;}
.y4b_c00144{bottom:697.650000px;}
.y1a_c00144{bottom:708.750000px;}
.y4a_c00144{bottom:715.350000px;}
.y19_c00144{bottom:726.450000px;}
.y49_c00144{bottom:733.350000px;}
.y18_c00144{bottom:744.450000px;}
.y48_c00144{bottom:751.050000px;}
.y17_c00144{bottom:762.150000px;}
.y47_c00144{bottom:768.300000px;}
.y16_c00144{bottom:779.400000px;}
.y46_c00144{bottom:790.500000px;}
.y15_c00144{bottom:797.700000px;}
.y45_c00144{bottom:808.200000px;}
.y14_c00144{bottom:814.950000px;}
.y13_c00144{bottom:832.950000px;}
.y44_c00144{bottom:839.100000px;}
.y12_c00144{bottom:850.650000px;}
.y43_c00144{bottom:861.450000px;}
.y11_c00144{bottom:868.350000px;}
.y42_c00144{bottom:878.700000px;}
.y10_c00144{bottom:886.050000px;}
.y41_c00144{bottom:896.700000px;}
.yf_c00144{bottom:904.050000px;}
.y40_c00144{bottom:919.050000px;}
.ye_c00144{bottom:921.750000px;}
.y3f_c00144{bottom:936.300000px;}
.yd_c00144{bottom:939.450000px;}
.yc_c00144{bottom:957.150000px;}
.y3e_c00144{bottom:958.650000px;}
.yb_c00144{bottom:974.850000px;}
.y3d_c00144{bottom:976.350000px;}
.ya_c00144{bottom:992.850000px;}
.y3c_c00144{bottom:997.650000px;}
.y9_c00144{bottom:1010.100000px;}
.y3b_c00144{bottom:1014.900000px;}
.y8_c00144{bottom:1030.650000px;}
.y3a_c00144{bottom:1037.100000px;}
.y7_c00144{bottom:1045.350000px;}
.y39_c00144{bottom:1059.000000px;}
.y6_c00144{bottom:1059.450000px;}
.y38_c00144{bottom:1076.700000px;}
.y5_c00144{bottom:1087.500000px;}
.y37_c00144{bottom:1094.400000px;}
.y4_c00144{bottom:1101.900000px;}
.y36_c00144{bottom:1112.100000px;}
.y3_c00144{bottom:1116.750000px;}
.y2_c00144{bottom:1135.800000px;}
.y1_c00144{bottom:1139.700000px;}
.h7_c00144{height:48.000000px;}
.h4_c00144{height:54.000000px;}
.h3_c00144{height:60.000000px;}
.h6_c00144{height:66.000000px;}
.h5_c00144{height:72.000000px;}
.h2_c00144{height:78.000000px;}
.h1_c00144{height:1272.000000px;}
.h0_c00144{height:1272.239960px;}
.w1_c00144{width:953.250000px;}
.w0_c00144{width:953.280030px;}
.x0_c00144{left:0.000000px;}
.x9e_c00144{left:8.700000px;}
.x8c_c00144{left:73.500000px;}
.x7d_c00144{left:75.300000px;}
.x74_c00144{left:77.700000px;}
.x28_c00144{left:78.900000px;}
.x98_c00144{left:88.200000px;}
.x83_c00144{left:89.400000px;}
.x7f_c00144{left:91.500000px;}
.x6f_c00144{left:93.300000px;}
.xe_c00144{left:94.650000px;}
.x41_c00144{left:96.450000px;}
.x2e_c00144{left:97.650000px;}
.x9a_c00144{left:104.550000px;}
.x26_c00144{left:105.600000px;}
.x9d_c00144{left:106.650000px;}
.x3_c00144{left:108.750000px;}
.x95_c00144{left:110.100000px;}
.x99_c00144{left:111.600000px;}
.xf_c00144{left:113.400000px;}
.x91_c00144{left:115.200000px;}
.x71_c00144{left:117.000000px;}
.x5f_c00144{left:119.400000px;}
.x4c_c00144{left:121.500000px;}
.x92_c00144{left:126.750000px;}
.x48_c00144{left:128.250000px;}
.x1a_c00144{left:130.200000px;}
.x7c_c00144{left:131.400000px;}
.x3a_c00144{left:133.050000px;}
.x62_c00144{left:134.250000px;}
.x42_c00144{left:136.050000px;}
.x87_c00144{left:143.550000px;}
.x3b_c00144{left:144.600000px;}
.x2f_c00144{left:145.950000px;}
.x69_c00144{left:148.650000px;}
.x1b_c00144{left:152.100000px;}
.x93_c00144{left:153.450000px;}
.x5c_c00144{left:154.950000px;}
.x63_c00144{left:156.600000px;}
.x78_c00144{left:157.650000px;}
.x75_c00144{left:159.000000px;}
.x4d_c00144{left:160.050000px;}
.x10_c00144{left:161.250000px;}
.x85_c00144{left:163.500000px;}
.x70_c00144{left:165.300000px;}
.x5a_c00144{left:166.950000px;}
.x1c_c00144{left:168.300000px;}
.x36_c00144{left:170.850000px;}
.x4_c00144{left:173.850000px;}
.x72_c00144{left:175.650000px;}
.x30_c00144{left:180.900000px;}
.x8d_c00144{left:185.100000px;}
.x7e_c00144{left:187.350000px;}
.x94_c00144{left:188.700000px;}
.x5_c00144{left:191.850000px;}
.x6c_c00144{left:193.800000px;}
.x65_c00144{left:195.450000px;}
.x29_c00144{left:198.000000px;}
.x49_c00144{left:199.200000px;}
.x43_c00144{left:200.550000px;}
.x53_c00144{left:202.200000px;}
.x6_c00144{left:206.550000px;}
.x11_c00144{left:208.050000px;}
.x66_c00144{left:211.350000px;}
.x37_c00144{left:213.750000px;}
.x88_c00144{left:214.800000px;}
.x4e_c00144{left:217.350000px;}
.x3c_c00144{left:219.000000px;}
.x1d_c00144{left:221.250000px;}
.x80_c00144{left:223.200000px;}
.x60_c00144{left:227.400000px;}
.x31_c00144{left:228.750000px;}
.x33_c00144{left:232.050000px;}
.x22_c00144{left:233.400000px;}
.x54_c00144{left:235.350000px;}
.x3d_c00144{left:238.050000px;}
.x44_c00144{left:239.400000px;}
.x1e_c00144{left:240.750000px;}
.x89_c00144{left:243.000000px;}
.x7_c00144{left:244.350000px;}
.x4a_c00144{left:245.400000px;}
.x8e_c00144{left:248.100000px;}
.x67_c00144{left:249.150000px;}
.x23_c00144{left:252.150000px;}
.x4f_c00144{left:253.350000px;}
.x55_c00144{left:255.150000px;}
.x34_c00144{left:257.250000px;}
.x8f_c00144{left:261.450000px;}
.x64_c00144{left:262.800000px;}
.x73_c00144{left:264.600000px;}
.x76_c00144{left:267.600000px;}
.x12_c00144{left:268.950000px;}
.x6d_c00144{left:270.450000px;}
.x5d_c00144{left:273.150000px;}
.x13_c00144{left:277.200000px;}
.x8a_c00144{left:278.250000px;}
.x32_c00144{left:282.450000px;}
.x14_c00144{left:284.100000px;}
.x8_c00144{left:287.850000px;}
.x6a_c00144{left:290.550000px;}
.x2a_c00144{left:293.100000px;}
.x56_c00144{left:294.450000px;}
.x50_c00144{left:296.250000px;}
.x82_c00144{left:298.950000px;}
.x96_c00144{left:300.150000px;}
.x9_c00144{left:303.300000px;}
.x15_c00144{left:307.050000px;}
.x61_c00144{left:308.700000px;}
.x45_c00144{left:310.650000px;}
.x24_c00144{left:312.300000px;}
.x16_c00144{left:313.950000px;}
.x7a_c00144{left:316.050000px;}
.x1f_c00144{left:320.550000px;}
.x77_c00144{left:321.900000px;}
.x2b_c00144{left:322.950000px;}
.x1_c00144{left:324.300000px;}
.x5b_c00144{left:326.700000px;}
.x46_c00144{left:329.400000px;}
.x8b_c00144{left:330.450000px;}
.x38_c00144{left:332.550000px;}
.x59_c00144{left:335.550000px;}
.x97_c00144{left:337.200000px;}
.xa_c00144{left:338.550000px;}
.x84_c00144{left:342.150000px;}
.x2c_c00144{left:343.500000px;}
.x25_c00144{left:346.500000px;}
.x17_c00144{left:347.700000px;}
.x3e_c00144{left:348.900000px;}
.x57_c00144{left:351.300000px;}
.x6e_c00144{left:353.700000px;}
.x9b_c00144{left:356.850000px;}
.x51_c00144{left:358.800000px;}
.x68_c00144{left:363.600000px;}
.x35_c00144{left:365.250000px;}
.xb_c00144{left:368.100000px;}
.x6b_c00144{left:369.150000px;}
.x58_c00144{left:372.150000px;}
.x79_c00144{left:374.400000px;}
.x20_c00144{left:375.750000px;}
.x18_c00144{left:376.800000px;}
.x5e_c00144{left:379.050000px;}
.x52_c00144{left:383.700000px;}
.x2d_c00144{left:384.900000px;}
.x39_c00144{left:387.600000px;}
.x86_c00144{left:388.650000px;}
.x9c_c00144{left:390.000000px;}
.x47_c00144{left:391.350000px;}
.x4b_c00144{left:396.150000px;}
.x81_c00144{left:398.700000px;}
.x3f_c00144{left:401.400000px;}
.x7b_c00144{left:402.750000px;}
.xc_c00144{left:403.800000px;}
.x21_c00144{left:405.300000px;}
.x19_c00144{left:407.100000px;}
.x90_c00144{left:408.300000px;}
.x40_c00144{left:425.850000px;}
.x27_c00144{left:427.500000px;}
.xd_c00144{left:428.700000px;}
.xf6_c00144{left:433.800000px;}
.xf3_c00144{left:434.850000px;}
.xc4_c00144{left:436.350000px;}
.x120_c00144{left:448.650000px;}
.x115_c00144{left:449.850000px;}
.xb3_c00144{left:451.050000px;}
.xde_c00144{left:452.100000px;}
.xcb_c00144{left:453.150000px;}
.xbd_c00144{left:454.350000px;}
.xb8_c00144{left:455.400000px;}
.xa5_c00144{left:456.600000px;}
.xfa_c00144{left:462.900000px;}
.x129_c00144{left:468.300000px;}
.x121_c00144{left:469.500000px;}
.xda_c00144{left:471.900000px;}
.xbb_c00144{left:473.100000px;}
.x9f_c00144{left:475.200000px;}
.xd5_c00144{left:478.050000px;}
.x108_c00144{left:482.400000px;}
.xe5_c00144{left:483.900000px;}
.xcc_c00144{left:485.850000px;}
.xea_c00144{left:487.200000px;}
.x116_c00144{left:492.300000px;}
.xd9_c00144{left:493.500000px;}
.xb9_c00144{left:495.300000px;}
.xab_c00144{left:496.800000px;}
.x11e_c00144{left:499.350000px;}
.xc5_c00144{left:501.450000px;}
.xd3_c00144{left:505.050000px;}
.xa0_c00144{left:507.300000px;}
.xcd_c00144{left:509.550000px;}
.xa6_c00144{left:511.650000px;}
.xc3_c00144{left:512.700000px;}
.xd6_c00144{left:516.150000px;}
.xe9_c00144{left:517.650000px;}
.xbe_c00144{left:519.150000px;}
.x101_c00144{left:521.250000px;}
.x113_c00144{left:524.700000px;}
.xdf_c00144{left:526.950000px;}
.x117_c00144{left:528.000000px;}
.xa7_c00144{left:529.950000px;}
.xb4_c00144{left:531.000000px;}
.x111_c00144{left:532.950000px;}
.xce_c00144{left:534.450000px;}
.x105_c00144{left:538.800000px;}
.xb1_c00144{left:542.550000px;}
.xeb_c00144{left:544.050000px;}
.xcf_c00144{left:546.300000px;}
.x11c_c00144{left:547.350000px;}
.xa1_c00144{left:548.400000px;}
.xba_c00144{left:551.400000px;}
.xac_c00144{left:554.100000px;}
.xdb_c00144{left:557.100000px;}
.xc6_c00144{left:558.750000px;}
.x106_c00144{left:560.400000px;}
.xec_c00144{left:562.050000px;}
.xfd_c00144{left:563.100000px;}
.x124_c00144{left:565.050000px;}
.x109_c00144{left:566.400000px;}
.x12a_c00144{left:570.900000px;}
.xe0_c00144{left:572.250000px;}
.x127_c00144{left:573.300000px;}
.xbf_c00144{left:575.700000px;}
.xe6_c00144{left:577.800000px;}
.xd4_c00144{left:578.850000px;}
.xb2_c00144{left:580.650000px;}
.xe1_c00144{left:585.150000px;}
.x11a_c00144{left:587.550000px;}
.xed_c00144{left:589.050000px;}
.xdc_c00144{left:591.000000px;}
.x128_c00144{left:593.850000px;}
.xa8_c00144{left:597.600000px;}
.xee_c00144{left:599.550000px;}
.xd0_c00144{left:601.350000px;}
.x102_c00144{left:602.550000px;}
.xe7_c00144{left:603.750000px;}
.x118_c00144{left:605.250000px;}
.x10e_c00144{left:607.650000px;}
.xad_c00144{left:609.150000px;}
.xef_c00144{left:610.350000px;}
.xd2_c00144{left:612.450000px;}
.xd7_c00144{left:614.100000px;}
.xa2_c00144{left:616.800000px;}
.x122_c00144{left:621.300000px;}
.xae_c00144{left:623.550000px;}
.xc7_c00144{left:627.450000px;}
.x10f_c00144{left:628.500000px;}
.x10a_c00144{left:630.150000px;}
.xf0_c00144{left:632.700000px;}
.x112_c00144{left:634.800000px;}
.xe2_c00144{left:635.850000px;}
.xa9_c00144{left:639.300000px;}
.x12d_c00144{left:642.750000px;}
.xc8_c00144{left:643.950000px;}
.xf4_c00144{left:645.000000px;}
.xf1_c00144{left:646.350000px;}
.xb5_c00144{left:650.550000px;}
.xc0_c00144{left:655.950000px;}
.x12c_c00144{left:657.750000px;}
.xa3_c00144{left:661.800000px;}
.x11d_c00144{left:663.900000px;}
.xf2_c00144{left:665.400000px;}
.x11f_c00144{left:667.500000px;}
.xb6_c00144{left:670.350000px;}
.x12b_c00144{left:672.000000px;}
.x119_c00144{left:673.200000px;}
.x126_c00144{left:678.000000px;}
.x114_c00144{left:679.200000px;}
.xe8_c00144{left:680.400000px;}
.xaa_c00144{left:681.450000px;}
.xdd_c00144{left:682.500000px;}
.xe3_c00144{left:684.450000px;}
.xc9_c00144{left:690.000000px;}
.x125_c00144{left:691.800000px;}
.x130_c00144{left:693.000000px;}
.xbc_c00144{left:694.200000px;}
.xff_c00144{left:696.300000px;}
.xfe_c00144{left:697.650000px;}
.xf7_c00144{left:699.150000px;}
.x12e_c00144{left:701.100000px;}
.x10b_c00144{left:703.650000px;}
.x11b_c00144{left:711.000000px;}
.x100_c00144{left:712.800000px;}
.x10d_c00144{left:714.000000px;}
.xe4_c00144{left:715.050000px;}
.xaf_c00144{left:716.850000px;}
.x12f_c00144{left:719.400000px;}
.x103_c00144{left:722.400000px;}
.x107_c00144{left:726.000000px;}
.xfb_c00144{left:727.200000px;}
.xf8_c00144{left:728.250000px;}
.xc1_c00144{left:729.450000px;}
.xd8_c00144{left:732.150000px;}
.xa4_c00144{left:735.600000px;}
.xd1_c00144{left:737.400000px;}
.xb0_c00144{left:739.950000px;}
.xc2_c00144{left:742.050000px;}
.x10c_c00144{left:745.050000px;}
.x110_c00144{left:746.400000px;}
.x104_c00144{left:748.350000px;}
.x2_c00144{left:749.850000px;}
.x123_c00144{left:753.900000px;}
.xf9_c00144{left:755.550000px;}
.xfc_c00144{left:757.500000px;}
.xf5_c00144{left:759.750000px;}
.xca_c00144{left:761.700000px;}
.xb7_c00144{left:763.500000px;}
.x131_c00144{left:770.400000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws5_c00144{word-spacing:-3.109584pt;}
.wsa_c00144{word-spacing:0.000000pt;}
.ws7_c00144{word-spacing:0.758808pt;}
.ws8_c00144{word-spacing:5.614035pt;}
.ws4_c00144{word-spacing:8.525391pt;}
.ws6_c00144{word-spacing:10.446735pt;}
.ws0_c00144{word-spacing:22.857143pt;}
.ws1_c00144{word-spacing:31.851852pt;}
.ws3_c00144{word-spacing:35.555556pt;}
.ws9_c00144{word-spacing:66.142340pt;}
.ws2_c00144{word-spacing:144.561404pt;}
._1_c00144{width:52.698413pt;}
._2_c00144{width:58.518519pt;}
._0_c00144{width:60.634921pt;}
._3_c00144{width:65.925926pt;}
.fs5_c00144{font-size:42.666667pt;}
.fs2_c00144{font-size:48.000000pt;}
.fs1_c00144{font-size:53.333333pt;}
.fs4_c00144{font-size:58.666667pt;}
.fs3_c00144{font-size:64.000000pt;}
.fs0_c00144{font-size:69.333333pt;}
.y0_c00144{bottom:0.000000pt;}
.y6a_c00144{bottom:28.533333pt;}
.y35_c00144{bottom:91.200000pt;}
.y69_c00144{bottom:153.866667pt;}
.y68_c00144{bottom:170.933333pt;}
.y34_c00144{bottom:171.200000pt;}
.y33_c00144{bottom:184.000000pt;}
.y67_c00144{bottom:187.866667pt;}
.y32_c00144{bottom:196.800000pt;}
.y66_c00144{bottom:202.533333pt;}
.y65_c00144{bottom:218.266667pt;}
.y31_c00144{bottom:229.466667pt;}
.y64_c00144{bottom:234.266667pt;}
.y63_c00144{bottom:250.000000pt;}
.y30_c00144{bottom:254.400000pt;}
.y2f_c00144{bottom:255.733333pt;}
.y62_c00144{bottom:265.733333pt;}
.y2e_c00144{bottom:278.133333pt;}
.y61_c00144{bottom:281.733333pt;}
.y60_c00144{bottom:297.466667pt;}
.y2d_c00144{bottom:297.866667pt;}
.y5f_c00144{bottom:313.466667pt;}
.y2c_c00144{bottom:317.466667pt;}
.y5e_c00144{bottom:328.800000pt;}
.y2b_c00144{bottom:340.800000pt;}
.y5d_c00144{bottom:345.066667pt;}
.y5c_c00144{bottom:360.800000pt;}
.y2a_c00144{bottom:364.533333pt;}
.y5b_c00144{bottom:376.133333pt;}
.y29_c00144{bottom:380.133333pt;}
.y5a_c00144{bottom:392.133333pt;}
.y28_c00144{bottom:396.133333pt;}
.y59_c00144{bottom:408.133333pt;}
.y27_c00144{bottom:411.866667pt;}
.y58_c00144{bottom:423.866667pt;}
.y26_c00144{bottom:430.400000pt;}
.y57_c00144{bottom:439.866667pt;}
.y25_c00144{bottom:444.800000pt;}
.y56_c00144{bottom:455.600000pt;}
.y24_c00144{bottom:461.066667pt;}
.y55_c00144{bottom:471.333333pt;}
.y23_c00144{bottom:477.066667pt;}
.y54_c00144{bottom:487.066667pt;}
.y22_c00144{bottom:492.800000pt;}
.y21_c00144{bottom:508.133333pt;}
.y53_c00144{bottom:508.800000pt;}
.y52_c00144{bottom:521.600000pt;}
.y20_c00144{bottom:523.866667pt;}
.y51_c00144{bottom:534.400000pt;}
.y1f_c00144{bottom:539.866667pt;}
.y50_c00144{bottom:547.200000pt;}
.y1e_c00144{bottom:559.333333pt;}
.y4f_c00144{bottom:560.000000pt;}
.y4e_c00144{bottom:570.533333pt;}
.y1d_c00144{bottom:575.333333pt;}
.y4d_c00144{bottom:584.933333pt;}
.y1c_c00144{bottom:598.266667pt;}
.y4c_c00144{bottom:600.266667pt;}
.y1b_c00144{bottom:614.266667pt;}
.y4b_c00144{bottom:620.133333pt;}
.y1a_c00144{bottom:630.000000pt;}
.y4a_c00144{bottom:635.866667pt;}
.y19_c00144{bottom:645.733333pt;}
.y49_c00144{bottom:651.866667pt;}
.y18_c00144{bottom:661.733333pt;}
.y48_c00144{bottom:667.600000pt;}
.y17_c00144{bottom:677.466667pt;}
.y47_c00144{bottom:682.933333pt;}
.y16_c00144{bottom:692.800000pt;}
.y46_c00144{bottom:702.666667pt;}
.y15_c00144{bottom:709.066667pt;}
.y45_c00144{bottom:718.400000pt;}
.y14_c00144{bottom:724.400000pt;}
.y13_c00144{bottom:740.400000pt;}
.y44_c00144{bottom:745.866667pt;}
.y12_c00144{bottom:756.133333pt;}
.y43_c00144{bottom:765.733333pt;}
.y11_c00144{bottom:771.866667pt;}
.y42_c00144{bottom:781.066667pt;}
.y10_c00144{bottom:787.600000pt;}
.y41_c00144{bottom:797.066667pt;}
.yf_c00144{bottom:803.600000pt;}
.y40_c00144{bottom:816.933333pt;}
.ye_c00144{bottom:819.333333pt;}
.y3f_c00144{bottom:832.266667pt;}
.yd_c00144{bottom:835.066667pt;}
.yc_c00144{bottom:850.800000pt;}
.y3e_c00144{bottom:852.133333pt;}
.yb_c00144{bottom:866.533333pt;}
.y3d_c00144{bottom:867.866667pt;}
.ya_c00144{bottom:882.533333pt;}
.y3c_c00144{bottom:886.800000pt;}
.y9_c00144{bottom:897.866667pt;}
.y3b_c00144{bottom:902.133333pt;}
.y8_c00144{bottom:916.133333pt;}
.y3a_c00144{bottom:921.866667pt;}
.y7_c00144{bottom:929.200000pt;}
.y39_c00144{bottom:941.333333pt;}
.y6_c00144{bottom:941.733333pt;}
.y38_c00144{bottom:957.066667pt;}
.y5_c00144{bottom:966.666667pt;}
.y37_c00144{bottom:972.800000pt;}
.y4_c00144{bottom:979.466667pt;}
.y36_c00144{bottom:988.533333pt;}
.y3_c00144{bottom:992.666667pt;}
.y2_c00144{bottom:1009.600000pt;}
.y1_c00144{bottom:1013.066667pt;}
.h7_c00144{height:42.666667pt;}
.h4_c00144{height:48.000000pt;}
.h3_c00144{height:53.333333pt;}
.h6_c00144{height:58.666667pt;}
.h5_c00144{height:64.000000pt;}
.h2_c00144{height:69.333333pt;}
.h1_c00144{height:1130.666667pt;}
.h0_c00144{height:1130.879964pt;}
.w1_c00144{width:847.333333pt;}
.w0_c00144{width:847.360027pt;}
.x0_c00144{left:0.000000pt;}
.x9e_c00144{left:7.733333pt;}
.x8c_c00144{left:65.333333pt;}
.x7d_c00144{left:66.933333pt;}
.x74_c00144{left:69.066667pt;}
.x28_c00144{left:70.133333pt;}
.x98_c00144{left:78.400000pt;}
.x83_c00144{left:79.466667pt;}
.x7f_c00144{left:81.333333pt;}
.x6f_c00144{left:82.933333pt;}
.xe_c00144{left:84.133333pt;}
.x41_c00144{left:85.733333pt;}
.x2e_c00144{left:86.800000pt;}
.x9a_c00144{left:92.933333pt;}
.x26_c00144{left:93.866667pt;}
.x9d_c00144{left:94.800000pt;}
.x3_c00144{left:96.666667pt;}
.x95_c00144{left:97.866667pt;}
.x99_c00144{left:99.200000pt;}
.xf_c00144{left:100.800000pt;}
.x91_c00144{left:102.400000pt;}
.x71_c00144{left:104.000000pt;}
.x5f_c00144{left:106.133333pt;}
.x4c_c00144{left:108.000000pt;}
.x92_c00144{left:112.666667pt;}
.x48_c00144{left:114.000000pt;}
.x1a_c00144{left:115.733333pt;}
.x7c_c00144{left:116.800000pt;}
.x3a_c00144{left:118.266667pt;}
.x62_c00144{left:119.333333pt;}
.x42_c00144{left:120.933333pt;}
.x87_c00144{left:127.600000pt;}
.x3b_c00144{left:128.533333pt;}
.x2f_c00144{left:129.733333pt;}
.x69_c00144{left:132.133333pt;}
.x1b_c00144{left:135.200000pt;}
.x93_c00144{left:136.400000pt;}
.x5c_c00144{left:137.733333pt;}
.x63_c00144{left:139.200000pt;}
.x78_c00144{left:140.133333pt;}
.x75_c00144{left:141.333333pt;}
.x4d_c00144{left:142.266667pt;}
.x10_c00144{left:143.333333pt;}
.x85_c00144{left:145.333333pt;}
.x70_c00144{left:146.933333pt;}
.x5a_c00144{left:148.400000pt;}
.x1c_c00144{left:149.600000pt;}
.x36_c00144{left:151.866667pt;}
.x4_c00144{left:154.533333pt;}
.x72_c00144{left:156.133333pt;}
.x30_c00144{left:160.800000pt;}
.x8d_c00144{left:164.533333pt;}
.x7e_c00144{left:166.533333pt;}
.x94_c00144{left:167.733333pt;}
.x5_c00144{left:170.533333pt;}
.x6c_c00144{left:172.266667pt;}
.x65_c00144{left:173.733333pt;}
.x29_c00144{left:176.000000pt;}
.x49_c00144{left:177.066667pt;}
.x43_c00144{left:178.266667pt;}
.x53_c00144{left:179.733333pt;}
.x6_c00144{left:183.600000pt;}
.x11_c00144{left:184.933333pt;}
.x66_c00144{left:187.866667pt;}
.x37_c00144{left:190.000000pt;}
.x88_c00144{left:190.933333pt;}
.x4e_c00144{left:193.200000pt;}
.x3c_c00144{left:194.666667pt;}
.x1d_c00144{left:196.666667pt;}
.x80_c00144{left:198.400000pt;}
.x60_c00144{left:202.133333pt;}
.x31_c00144{left:203.333333pt;}
.x33_c00144{left:206.266667pt;}
.x22_c00144{left:207.466667pt;}
.x54_c00144{left:209.200000pt;}
.x3d_c00144{left:211.600000pt;}
.x44_c00144{left:212.800000pt;}
.x1e_c00144{left:214.000000pt;}
.x89_c00144{left:216.000000pt;}
.x7_c00144{left:217.200000pt;}
.x4a_c00144{left:218.133333pt;}
.x8e_c00144{left:220.533333pt;}
.x67_c00144{left:221.466667pt;}
.x23_c00144{left:224.133333pt;}
.x4f_c00144{left:225.200000pt;}
.x55_c00144{left:226.800000pt;}
.x34_c00144{left:228.666667pt;}
.x8f_c00144{left:232.400000pt;}
.x64_c00144{left:233.600000pt;}
.x73_c00144{left:235.200000pt;}
.x76_c00144{left:237.866667pt;}
.x12_c00144{left:239.066667pt;}
.x6d_c00144{left:240.400000pt;}
.x5d_c00144{left:242.800000pt;}
.x13_c00144{left:246.400000pt;}
.x8a_c00144{left:247.333333pt;}
.x32_c00144{left:251.066667pt;}
.x14_c00144{left:252.533333pt;}
.x8_c00144{left:255.866667pt;}
.x6a_c00144{left:258.266667pt;}
.x2a_c00144{left:260.533333pt;}
.x56_c00144{left:261.733333pt;}
.x50_c00144{left:263.333333pt;}
.x82_c00144{left:265.733333pt;}
.x96_c00144{left:266.800000pt;}
.x9_c00144{left:269.600000pt;}
.x15_c00144{left:272.933333pt;}
.x61_c00144{left:274.400000pt;}
.x45_c00144{left:276.133333pt;}
.x24_c00144{left:277.600000pt;}
.x16_c00144{left:279.066667pt;}
.x7a_c00144{left:280.933333pt;}
.x1f_c00144{left:284.933333pt;}
.x77_c00144{left:286.133333pt;}
.x2b_c00144{left:287.066667pt;}
.x1_c00144{left:288.266667pt;}
.x5b_c00144{left:290.400000pt;}
.x46_c00144{left:292.800000pt;}
.x8b_c00144{left:293.733333pt;}
.x38_c00144{left:295.600000pt;}
.x59_c00144{left:298.266667pt;}
.x97_c00144{left:299.733333pt;}
.xa_c00144{left:300.933333pt;}
.x84_c00144{left:304.133333pt;}
.x2c_c00144{left:305.333333pt;}
.x25_c00144{left:308.000000pt;}
.x17_c00144{left:309.066667pt;}
.x3e_c00144{left:310.133333pt;}
.x57_c00144{left:312.266667pt;}
.x6e_c00144{left:314.400000pt;}
.x9b_c00144{left:317.200000pt;}
.x51_c00144{left:318.933333pt;}
.x68_c00144{left:323.200000pt;}
.x35_c00144{left:324.666667pt;}
.xb_c00144{left:327.200000pt;}
.x6b_c00144{left:328.133333pt;}
.x58_c00144{left:330.800000pt;}
.x79_c00144{left:332.800000pt;}
.x20_c00144{left:334.000000pt;}
.x18_c00144{left:334.933333pt;}
.x5e_c00144{left:336.933333pt;}
.x52_c00144{left:341.066667pt;}
.x2d_c00144{left:342.133333pt;}
.x39_c00144{left:344.533333pt;}
.x86_c00144{left:345.466667pt;}
.x9c_c00144{left:346.666667pt;}
.x47_c00144{left:347.866667pt;}
.x4b_c00144{left:352.133333pt;}
.x81_c00144{left:354.400000pt;}
.x3f_c00144{left:356.800000pt;}
.x7b_c00144{left:358.000000pt;}
.xc_c00144{left:358.933333pt;}
.x21_c00144{left:360.266667pt;}
.x19_c00144{left:361.866667pt;}
.x90_c00144{left:362.933333pt;}
.x40_c00144{left:378.533333pt;}
.x27_c00144{left:380.000000pt;}
.xd_c00144{left:381.066667pt;}
.xf6_c00144{left:385.600000pt;}
.xf3_c00144{left:386.533333pt;}
.xc4_c00144{left:387.866667pt;}
.x120_c00144{left:398.800000pt;}
.x115_c00144{left:399.866667pt;}
.xb3_c00144{left:400.933333pt;}
.xde_c00144{left:401.866667pt;}
.xcb_c00144{left:402.800000pt;}
.xbd_c00144{left:403.866667pt;}
.xb8_c00144{left:404.800000pt;}
.xa5_c00144{left:405.866667pt;}
.xfa_c00144{left:411.466667pt;}
.x129_c00144{left:416.266667pt;}
.x121_c00144{left:417.333333pt;}
.xda_c00144{left:419.466667pt;}
.xbb_c00144{left:420.533333pt;}
.x9f_c00144{left:422.400000pt;}
.xd5_c00144{left:424.933333pt;}
.x108_c00144{left:428.800000pt;}
.xe5_c00144{left:430.133333pt;}
.xcc_c00144{left:431.866667pt;}
.xea_c00144{left:433.066667pt;}
.x116_c00144{left:437.600000pt;}
.xd9_c00144{left:438.666667pt;}
.xb9_c00144{left:440.266667pt;}
.xab_c00144{left:441.600000pt;}
.x11e_c00144{left:443.866667pt;}
.xc5_c00144{left:445.733333pt;}
.xd3_c00144{left:448.933333pt;}
.xa0_c00144{left:450.933333pt;}
.xcd_c00144{left:452.933333pt;}
.xa6_c00144{left:454.800000pt;}
.xc3_c00144{left:455.733333pt;}
.xd6_c00144{left:458.800000pt;}
.xe9_c00144{left:460.133333pt;}
.xbe_c00144{left:461.466667pt;}
.x101_c00144{left:463.333333pt;}
.x113_c00144{left:466.400000pt;}
.xdf_c00144{left:468.400000pt;}
.x117_c00144{left:469.333333pt;}
.xa7_c00144{left:471.066667pt;}
.xb4_c00144{left:472.000000pt;}
.x111_c00144{left:473.733333pt;}
.xce_c00144{left:475.066667pt;}
.x105_c00144{left:478.933333pt;}
.xb1_c00144{left:482.266667pt;}
.xeb_c00144{left:483.600000pt;}
.xcf_c00144{left:485.600000pt;}
.x11c_c00144{left:486.533333pt;}
.xa1_c00144{left:487.466667pt;}
.xba_c00144{left:490.133333pt;}
.xac_c00144{left:492.533333pt;}
.xdb_c00144{left:495.200000pt;}
.xc6_c00144{left:496.666667pt;}
.x106_c00144{left:498.133333pt;}
.xec_c00144{left:499.600000pt;}
.xfd_c00144{left:500.533333pt;}
.x124_c00144{left:502.266667pt;}
.x109_c00144{left:503.466667pt;}
.x12a_c00144{left:507.466667pt;}
.xe0_c00144{left:508.666667pt;}
.x127_c00144{left:509.600000pt;}
.xbf_c00144{left:511.733333pt;}
.xe6_c00144{left:513.600000pt;}
.xd4_c00144{left:514.533333pt;}
.xb2_c00144{left:516.133333pt;}
.xe1_c00144{left:520.133333pt;}
.x11a_c00144{left:522.266667pt;}
.xed_c00144{left:523.600000pt;}
.xdc_c00144{left:525.333333pt;}
.x128_c00144{left:527.866667pt;}
.xa8_c00144{left:531.200000pt;}
.xee_c00144{left:532.933333pt;}
.xd0_c00144{left:534.533333pt;}
.x102_c00144{left:535.600000pt;}
.xe7_c00144{left:536.666667pt;}
.x118_c00144{left:538.000000pt;}
.x10e_c00144{left:540.133333pt;}
.xad_c00144{left:541.466667pt;}
.xef_c00144{left:542.533333pt;}
.xd2_c00144{left:544.400000pt;}
.xd7_c00144{left:545.866667pt;}
.xa2_c00144{left:548.266667pt;}
.x122_c00144{left:552.266667pt;}
.xae_c00144{left:554.266667pt;}
.xc7_c00144{left:557.733333pt;}
.x10f_c00144{left:558.666667pt;}
.x10a_c00144{left:560.133333pt;}
.xf0_c00144{left:562.400000pt;}
.x112_c00144{left:564.266667pt;}
.xe2_c00144{left:565.200000pt;}
.xa9_c00144{left:568.266667pt;}
.x12d_c00144{left:571.333333pt;}
.xc8_c00144{left:572.400000pt;}
.xf4_c00144{left:573.333333pt;}
.xf1_c00144{left:574.533333pt;}
.xb5_c00144{left:578.266667pt;}
.xc0_c00144{left:583.066667pt;}
.x12c_c00144{left:584.666667pt;}
.xa3_c00144{left:588.266667pt;}
.x11d_c00144{left:590.133333pt;}
.xf2_c00144{left:591.466667pt;}
.x11f_c00144{left:593.333333pt;}
.xb6_c00144{left:595.866667pt;}
.x12b_c00144{left:597.333333pt;}
.x119_c00144{left:598.400000pt;}
.x126_c00144{left:602.666667pt;}
.x114_c00144{left:603.733333pt;}
.xe8_c00144{left:604.800000pt;}
.xaa_c00144{left:605.733333pt;}
.xdd_c00144{left:606.666667pt;}
.xe3_c00144{left:608.400000pt;}
.xc9_c00144{left:613.333333pt;}
.x125_c00144{left:614.933333pt;}
.x130_c00144{left:616.000000pt;}
.xbc_c00144{left:617.066667pt;}
.xff_c00144{left:618.933333pt;}
.xfe_c00144{left:620.133333pt;}
.xf7_c00144{left:621.466667pt;}
.x12e_c00144{left:623.200000pt;}
.x10b_c00144{left:625.466667pt;}
.x11b_c00144{left:632.000000pt;}
.x100_c00144{left:633.600000pt;}
.x10d_c00144{left:634.666667pt;}
.xe4_c00144{left:635.600000pt;}
.xaf_c00144{left:637.200000pt;}
.x12f_c00144{left:639.466667pt;}
.x103_c00144{left:642.133333pt;}
.x107_c00144{left:645.333333pt;}
.xfb_c00144{left:646.400000pt;}
.xf8_c00144{left:647.333333pt;}
.xc1_c00144{left:648.400000pt;}
.xd8_c00144{left:650.800000pt;}
.xa4_c00144{left:653.866667pt;}
.xd1_c00144{left:655.466667pt;}
.xb0_c00144{left:657.733333pt;}
.xc2_c00144{left:659.600000pt;}
.x10c_c00144{left:662.266667pt;}
.x110_c00144{left:663.466667pt;}
.x104_c00144{left:665.200000pt;}
.x2_c00144{left:666.533333pt;}
.x123_c00144{left:670.133333pt;}
.xf9_c00144{left:671.600000pt;}
.xfc_c00144{left:673.333333pt;}
.xf5_c00144{left:675.333333pt;}
.xca_c00144{left:677.066667pt;}
.xb7_c00144{left:678.666667pt;}
.x131_c00144{left:684.800000pt;}
}





/* 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_c00145 {
    display:none;
  }
  .loading-indicator_c00145.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00145 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_c00145 { 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_c00145" -> "#page-container .classname_c00145")
 */
.pf_c00145 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00145 { /* 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_c00145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00145 { /* 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_c00145 { /* 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_c00145 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00145 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00145 {overflow:visible;}
  }
}
.c_c00145 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00145 { /* 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_c00145:after { /* webkit #35443 */
  content: '';
}
.t_c00145:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00145 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 */
}
.__c00145 { /* 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_c00145 { /* info for Javascript */
  display:none;
}
.l_c00145 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00145 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00145 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00145: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_c00145 {
    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_c00145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00145.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_c00145 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00145;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.000000;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;}
.mae_c00145{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00145{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mda_c00145{transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00145{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00145{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.m118_c00145{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00145{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00145{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mca_c00145{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00145{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m89_c00145{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb_c00145{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me3_c00145{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00145{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00145{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m14_c00145{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m19_c00145{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m107_c00145{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00145{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m88_c00145{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m116_c00145{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.me4_c00145{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00145{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m81_c00145{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00145{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.me7_c00145{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me1_c00145{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m42_c00145{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00145{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md8_c00145{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m55_c00145{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00145{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mab_c00145{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00145{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00145{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m84_c00145{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m31_c00145{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m99_c00145{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m17_c00145{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m48_c00145{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m117_c00145{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00145{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m27_c00145{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00145{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00145{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m76_c00145{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m59_c00145{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m53_c00145{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m68_c00145{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mac_c00145{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md4_c00145{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m70_c00145{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00145{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00145{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m50_c00145{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m79_c00145{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m43_c00145{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m22_c00145{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m58_c00145{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m5_c00145{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00145{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00145{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m105_c00145{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m65_c00145{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00145{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m44_c00145{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00145{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00145{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m74_c00145{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00145{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00145{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6_c00145{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00145{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md7_c00145{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md3_c00145{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00145{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9_c00145{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00145{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m97_c00145{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m87_c00145{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00145{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m23_c00145{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m80_c00145{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00145{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md2_c00145{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m20_c00145{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00145{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m45_c00145{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m57_c00145{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00145{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m94_c00145{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m66_c00145{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m98_c00145{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00145{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m108_c00145{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.me_c00145{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mff_c00145{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m109_c00145{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00145{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00145{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00145{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7_c00145{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mee_c00145{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m41_c00145{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00145{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00145{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m16_c00145{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.maa_c00145{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m103_c00145{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m30_c00145{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m77_c00145{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mf_c00145{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00145{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me2_c00145{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00145{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma_c00145{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00145{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00145{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00145{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00145{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00145{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00145{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m15_c00145{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m32_c00145{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00145{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8_c00145{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m21_c00145{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00145{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00145{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00145{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m100_c00145{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m28_c00145{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00145{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md9_c00145{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m52_c00145{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m51_c00145{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00145{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m56_c00145{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m12_c00145{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00145{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m92_c00145{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md1_c00145{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00145{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00145{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11_c00145{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00145{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00145{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m24_c00145{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m64_c00145{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m39_c00145{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00145{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00145{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m91_c00145{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00145{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00145{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m54_c00145{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00145{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00145{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me5_c00145{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00145{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mc_c00145{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m33_c00145{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m72_c00145{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00145{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m29_c00145{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m102_c00145{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00145{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m67_c00145{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m61_c00145{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m83_c00145{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md0_c00145{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.md_c00145{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m85_c00145{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m49_c00145{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mde_c00145{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00145{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m114_c00145{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m25_c00145{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00145{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m75_c00145{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00145{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mec_c00145{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m37_c00145{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3_c00145{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00145{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m34_c00145{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mea_c00145{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mef_c00145{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00145{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m115_c00145{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md5_c00145{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00145{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me0_c00145{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00145{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m101_c00145{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m63_c00145{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00145{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m18_c00145{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m90_c00145{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m86_c00145{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00145{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00145{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00145{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00145{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m13_c00145{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m36_c00145{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md6_c00145{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00145{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m73_c00145{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m26_c00145{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m93_c00145{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m119_c00145{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m69_c00145{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.me9_c00145{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00145{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10_c00145{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00145{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00145{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00145{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00145{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00145{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m112_c00145{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m96_c00145{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00145{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00145{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00145{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00145{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00145{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00145{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m113_c00145{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m47_c00145{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.maf_c00145{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00145{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00145{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m110_c00145{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00145{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00145{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m78_c00145{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00145{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m38_c00145{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m46_c00145{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mce_c00145{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.me8_c00145{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m40_c00145{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00145{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00145{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m104_c00145{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00145{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00145{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m111_c00145{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me6_c00145{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00145{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00145{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.meb_c00145{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00145{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m106_c00145{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00145{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00145{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m60_c00145{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mad_c00145{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00145{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mba_c00145{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00145{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00145{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00145{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.med_c00145{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m71_c00145{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00145{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00145{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m35_c00145{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m95_c00145{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00145{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00145{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.m82_c00145{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00145{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00145{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00145{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m2_c00145{transform:matrix(0.436500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00145{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls0_c00145{letter-spacing:0.000000px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{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__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00145{word-spacing:0.000000px;}
.ws2_c00145{word-spacing:6.666667px;}
.ws1_c00145{word-spacing:11.875000px;}
.ws6_c00145{word-spacing:15.000000px;}
.ws0_c00145{word-spacing:18.125000px;}
.ws5_c00145{word-spacing:40.000000px;}
.ws4_c00145{word-spacing:50.416667px;}
.ws7_c00145{word-spacing:66.315789px;}
.ws3_c00145{word-spacing:73.333333px;}
._0_c00145{width:45.000000px;}
._1_c00145{width:1574.166667px;}
.fc0_c00145{color:transparent;}
.fs7_c00145{font-size:36.000000px;}
.fs8_c00145{font-size:42.000000px;}
.fs6_c00145{font-size:48.000000px;}
.fs5_c00145{font-size:54.000000px;}
.fs3_c00145{font-size:60.000000px;}
.fs2_c00145{font-size:66.000000px;}
.fs4_c00145{font-size:72.000000px;}
.fs0_c00145{font-size:78.000000px;}
.fs1_c00145{font-size:84.000000px;}
.y0_c00145{bottom:0.000000px;}
.y68_c00145{bottom:190.500000px;}
.y34_c00145{bottom:193.050000px;}
.y67_c00145{bottom:205.200000px;}
.y33_c00145{bottom:214.950000px;}
.y66_c00145{bottom:218.850000px;}
.y65_c00145{bottom:233.250000px;}
.y32_c00145{bottom:236.850000px;}
.y64_c00145{bottom:249.150000px;}
.y31_c00145{bottom:262.800000px;}
.y63_c00145{bottom:267.150000px;}
.y62_c00145{bottom:285.450000px;}
.y30_c00145{bottom:294.000000px;}
.y61_c00145{bottom:303.450000px;}
.y2f_c00145{bottom:312.000000px;}
.y60_c00145{bottom:325.350000px;}
.y2e_c00145{bottom:329.700000px;}
.y5f_c00145{bottom:343.050000px;}
.y2d_c00145{bottom:351.000000px;}
.y5e_c00145{bottom:365.400000px;}
.y2c_c00145{bottom:372.750000px;}
.y5d_c00145{bottom:383.100000px;}
.y2b_c00145{bottom:391.500000px;}
.y2a_c00145{bottom:409.800000px;}
.y5c_c00145{bottom:413.250000px;}
.y29_c00145{bottom:427.050000px;}
.y5b_c00145{bottom:431.250000px;}
.y28_c00145{bottom:445.050000px;}
.y5a_c00145{bottom:452.850000px;}
.y27_c00145{bottom:462.750000px;}
.y59_c00145{bottom:475.050000px;}
.y26_c00145{bottom:480.450000px;}
.y58_c00145{bottom:492.750000px;}
.y25_c00145{bottom:498.150000px;}
.y57_c00145{bottom:510.750000px;}
.y24_c00145{bottom:516.150000px;}
.y56_c00145{bottom:528.450000px;}
.y23_c00145{bottom:533.850000px;}
.y55_c00145{bottom:546.150000px;}
.y22_c00145{bottom:551.850000px;}
.y54_c00145{bottom:564.150000px;}
.y21_c00145{bottom:569.550000px;}
.y53_c00145{bottom:584.700000px;}
.y20_c00145{bottom:591.150000px;}
.y52_c00145{bottom:598.350000px;}
.y1f_c00145{bottom:604.800000px;}
.y51_c00145{bottom:613.800000px;}
.y1e_c00145{bottom:619.950000px;}
.y50_c00145{bottom:633.300000px;}
.y1d_c00145{bottom:640.050000px;}
.y1c_c00145{bottom:645.150000px;}
.y4f_c00145{bottom:651.300000px;}
.y1b_c00145{bottom:664.200000px;}
.y4e_c00145{bottom:672.900000px;}
.y1a_c00145{bottom:685.950000px;}
.y4d_c00145{bottom:690.900000px;}
.y19_c00145{bottom:704.250000px;}
.y4c_c00145{bottom:708.900000px;}
.y18_c00145{bottom:722.550000px;}
.y4b_c00145{bottom:726.900000px;}
.y17_c00145{bottom:743.400000px;}
.y4a_c00145{bottom:748.050000px;}
.y16_c00145{bottom:762.150000px;}
.y49_c00145{bottom:765.750000px;}
.y15_c00145{bottom:788.100000px;}
.y48_c00145{bottom:795.900000px;}
.y14_c00145{bottom:806.100000px;}
.y47_c00145{bottom:813.600000px;}
.y13_c00145{bottom:826.650000px;}
.y46_c00145{bottom:835.200000px;}
.y12_c00145{bottom:845.400000px;}
.y45_c00145{bottom:853.200000px;}
.y11_c00145{bottom:863.100000px;}
.y44_c00145{bottom:875.100000px;}
.y10_c00145{bottom:881.100000px;}
.y43_c00145{bottom:893.100000px;}
.yf_c00145{bottom:898.800000px;}
.y42_c00145{bottom:914.700000px;}
.ye_c00145{bottom:916.800000px;}
.y41_c00145{bottom:932.700000px;}
.yd_c00145{bottom:934.500000px;}
.y40_c00145{bottom:955.050000px;}
.yc_c00145{bottom:956.400000px;}
.yb_c00145{bottom:974.400000px;}
.y3f_c00145{bottom:976.650000px;}
.ya_c00145{bottom:991.650000px;}
.y3e_c00145{bottom:999.300000px;}
.y9_c00145{bottom:1009.650000px;}
.y3d_c00145{bottom:1020.750000px;}
.y8_c00145{bottom:1027.350000px;}
.y3c_c00145{bottom:1038.450000px;}
.y7_c00145{bottom:1045.350000px;}
.y3b_c00145{bottom:1056.150000px;}
.y6_c00145{bottom:1062.600000px;}
.y5_c00145{bottom:1080.300000px;}
.y3a_c00145{bottom:1083.900000px;}
.y39_c00145{bottom:1087.200000px;}
.y4_c00145{bottom:1098.000000px;}
.y37_c00145{bottom:1107.750000px;}
.y36_c00145{bottom:1111.050000px;}
.y38_c00145{bottom:1111.650000px;}
.y3_c00145{bottom:1116.000000px;}
.y35_c00145{bottom:1118.550000px;}
.y1_c00145{bottom:1141.950000px;}
.y2_c00145{bottom:1142.250000px;}
.h9_c00145{height:36.000000px;}
.ha_c00145{height:42.000000px;}
.h8_c00145{height:48.000000px;}
.h7_c00145{height:54.000000px;}
.h5_c00145{height:60.000000px;}
.h4_c00145{height:66.000000px;}
.h6_c00145{height:72.000000px;}
.h2_c00145{height:78.000000px;}
.h3_c00145{height:84.000000px;}
.h1_c00145{height:1274.250000px;}
.h0_c00145{height:1274.400056px;}
.w1_c00145{width:953.250000px;}
.w0_c00145{width:953.280030px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:180.750000px;}
.x8c_c00145{left:181.800000px;}
.x5c_c00145{left:182.850000px;}
.x75_c00145{left:186.300000px;}
.x90_c00145{left:195.150000px;}
.x4_c00145{left:198.750000px;}
.x81_c00145{left:200.100000px;}
.x69_c00145{left:202.200000px;}
.x70_c00145{left:208.800000px;}
.x68_c00145{left:212.250000px;}
.x94_c00145{left:217.200000px;}
.x5_c00145{left:219.300000px;}
.x2c_c00145{left:220.800000px;}
.x5d_c00145{left:224.250000px;}
.x86_c00145{left:226.050000px;}
.x63_c00145{left:229.950000px;}
.x25_c00145{left:233.400000px;}
.x87_c00145{left:235.350000px;}
.x7b_c00145{left:237.150000px;}
.x76_c00145{left:238.500000px;}
.x38_c00145{left:240.000000px;}
.x42_c00145{left:241.200000px;}
.x47_c00145{left:242.700000px;}
.x30_c00145{left:244.350000px;}
.x15_c00145{left:246.150000px;}
.xe_c00145{left:248.850000px;}
.x1d_c00145{left:250.500000px;}
.x26_c00145{left:254.700000px;}
.x91_c00145{left:257.850000px;}
.x4b_c00145{left:259.200000px;}
.x6_c00145{left:260.700000px;}
.x31_c00145{left:263.850000px;}
.x71_c00145{left:264.900000px;}
.x64_c00145{left:266.250000px;}
.x8e_c00145{left:267.750000px;}
.x2d_c00145{left:269.400000px;}
.x79_c00145{left:270.450000px;}
.x89_c00145{left:271.800000px;}
.x16_c00145{left:272.850000px;}
.x5a_c00145{left:275.550000px;}
.x7_c00145{left:277.650000px;}
.x8f_c00145{left:279.000000px;}
.x43_c00145{left:280.050000px;}
.x60_c00145{left:281.400000px;}
.x2_c00145{left:285.450000px;}
.xf_c00145{left:286.650000px;}
.x92_c00145{left:288.600000px;}
.x27_c00145{left:291.750000px;}
.x56_c00145{left:294.450000px;}
.x8_c00145{left:296.700000px;}
.x10_c00145{left:297.750000px;}
.x32_c00145{left:299.100000px;}
.x17_c00145{left:301.350000px;}
.x48_c00145{left:304.200000px;}
.x82_c00145{left:306.900000px;}
.x33_c00145{left:308.850000px;}
.x18_c00145{left:310.650000px;}
.x7f_c00145{left:312.750000px;}
.x44_c00145{left:316.800000px;}
.x1e_c00145{left:317.850000px;}
.x61_c00145{left:318.900000px;}
.x88_c00145{left:320.700000px;}
.x8d_c00145{left:322.200000px;}
.x65_c00145{left:323.400000px;}
.x11_c00145{left:325.050000px;}
.x57_c00145{left:327.300000px;}
.x49_c00145{left:328.350000px;}
.x3c_c00145{left:330.750000px;}
.x2e_c00145{left:333.900000px;}
.x7a_c00145{left:335.550000px;}
.x45_c00145{left:336.600000px;}
.x40_c00145{left:338.550000px;}
.x1f_c00145{left:340.500000px;}
.x19_c00145{left:342.750000px;}
.x53_c00145{left:344.850000px;}
.x28_c00145{left:346.050000px;}
.x50_c00145{left:348.450000px;}
.x5b_c00145{left:352.950000px;}
.x20_c00145{left:354.150000px;}
.x93_c00145{left:355.500000px;}
.x84_c00145{left:356.700000px;}
.x12_c00145{left:358.950000px;}
.x39_c00145{left:360.600000px;}
.x7c_c00145{left:364.950000px;}
.x58_c00145{left:366.150000px;}
.x9_c00145{left:368.400000px;}
.x8a_c00145{left:370.350000px;}
.x21_c00145{left:372.450000px;}
.x34_c00145{left:373.950000px;}
.x6a_c00145{left:375.900000px;}
.x77_c00145{left:378.900000px;}
.x3a_c00145{left:380.700000px;}
.x6b_c00145{left:382.800000px;}
.x7d_c00145{left:384.750000px;}
.x1a_c00145{left:386.250000px;}
.x5f_c00145{left:387.750000px;}
.x59_c00145{left:389.550000px;}
.x29_c00145{left:391.350000px;}
.x35_c00145{left:393.450000px;}
.xa_c00145{left:395.400000px;}
.x6c_c00145{left:397.200000px;}
.x22_c00145{left:400.200000px;}
.x5e_c00145{left:403.800000px;}
.x73_c00145{left:405.150000px;}
.x13_c00145{left:407.850000px;}
.x6d_c00145{left:411.900000px;}
.x51_c00145{left:413.550000px;}
.x83_c00145{left:415.800000px;}
.x3_c00145{left:416.850000px;}
.x4c_c00145{left:418.800000px;}
.x3d_c00145{left:424.350000px;}
.xb_c00145{left:425.700000px;}
.x4e_c00145{left:427.800000px;}
.x66_c00145{left:429.450000px;}
.x14_c00145{left:431.250000px;}
.x46_c00145{left:437.100000px;}
.x4a_c00145{left:439.650000px;}
.x54_c00145{left:441.300000px;}
.x6e_c00145{left:445.800000px;}
.x2a_c00145{left:447.900000px;}
.x3e_c00145{left:449.250000px;}
.x7e_c00145{left:452.100000px;}
.x4d_c00145{left:456.600000px;}
.x2f_c00145{left:458.100000px;}
.x36_c00145{left:460.050000px;}
.xc_c00145{left:462.450000px;}
.x74_c00145{left:463.800000px;}
.x8b_c00145{left:467.100000px;}
.x41_c00145{left:468.150000px;}
.x3b_c00145{left:472.200000px;}
.x1b_c00145{left:473.400000px;}
.x72_c00145{left:474.600000px;}
.x37_c00145{left:476.550000px;}
.x62_c00145{left:477.600000px;}
.x52_c00145{left:480.450000px;}
.x23_c00145{left:481.500000px;}
.x2b_c00145{left:483.150000px;}
.x85_c00145{left:484.200000px;}
.x67_c00145{left:485.550000px;}
.x78_c00145{left:487.200000px;}
.x80_c00145{left:489.150000px;}
.x1c_c00145{left:494.250000px;}
.x55_c00145{left:496.050000px;}
.x3f_c00145{left:501.150000px;}
.x4f_c00145{left:502.350000px;}
.x6f_c00145{left:503.700000px;}
.x24_c00145{left:505.950000px;}
.xd_c00145{left:513.150000px;}
.x9e_c00145{left:536.700000px;}
.xdc_c00145{left:537.900000px;}
.xe1_c00145{left:540.000000px;}
.x11e_c00145{left:549.900000px;}
.xd4_c00145{left:552.600000px;}
.xa8_c00145{left:554.850000px;}
.xfa_c00145{left:556.200000px;}
.xd5_c00145{left:563.400000px;}
.x125_c00145{left:565.500000px;}
.xab_c00145{left:572.100000px;}
.xbd_c00145{left:573.600000px;}
.x113_c00145{left:575.250000px;}
.xa3_c00145{left:576.600000px;}
.x117_c00145{left:577.800000px;}
.xe6_c00145{left:579.000000px;}
.xed_c00145{left:580.050000px;}
.xa9_c00145{left:581.100000px;}
.xe2_c00145{left:582.900000px;}
.x9f_c00145{left:585.600000px;}
.x11f_c00145{left:586.950000px;}
.xa4_c00145{left:588.450000px;}
.xb3_c00145{left:589.800000px;}
.xea_c00145{left:591.150000px;}
.x121_c00145{left:592.800000px;}
.xd6_c00145{left:594.000000px;}
.xce_c00145{left:595.350000px;}
.x119_c00145{left:596.850000px;}
.xcb_c00145{left:599.550000px;}
.xfc_c00145{left:602.700000px;}
.xac_c00145{left:605.250000px;}
.xb4_c00145{left:607.500000px;}
.xf5_c00145{left:609.600000px;}
.xcf_c00145{left:612.300000px;}
.xa5_c00145{left:614.700000px;}
.x10d_c00145{left:615.900000px;}
.xb9_c00145{left:618.300000px;}
.xe4_c00145{left:619.800000px;}
.xc5_c00145{left:622.350000px;}
.x10c_c00145{left:623.700000px;}
.xbe_c00145{left:627.900000px;}
.xe0_c00145{left:629.850000px;}
.xfe_c00145{left:631.050000px;}
.xe7_c00145{left:633.000000px;}
.xc4_c00145{left:634.200000px;}
.x103_c00145{left:637.200000px;}
.xcc_c00145{left:639.900000px;}
.xb5_c00145{left:642.450000px;}
.xee_c00145{left:645.150000px;}
.xa6_c00145{left:649.650000px;}
.xff_c00145{left:652.650000px;}
.xa0_c00145{left:655.500000px;}
.xd0_c00145{left:657.000000px;}
.xad_c00145{left:660.300000px;}
.x11a_c00145{left:661.950000px;}
.xb6_c00145{left:664.350000px;}
.xf6_c00145{left:666.900000px;}
.xf1_c00145{left:671.100000px;}
.xd7_c00145{left:673.200000px;}
.xba_c00145{left:675.150000px;}
.xaa_c00145{left:677.250000px;}
.xf9_c00145{left:680.100000px;}
.xd8_c00145{left:683.250000px;}
.xbc_c00145{left:684.900000px;}
.xa7_c00145{left:685.950000px;}
.xf0_c00145{left:688.050000px;}
.xfd_c00145{left:690.450000px;}
.x10f_c00145{left:691.500000px;}
.xeb_c00145{left:693.000000px;}
.xc6_c00145{left:694.650000px;}
.xbb_c00145{left:696.000000px;}
.xbf_c00145{left:698.100000px;}
.xdd_c00145{left:701.250000px;}
.xae_c00145{left:703.500000px;}
.xc0_c00145{left:706.350000px;}
.xf7_c00145{left:709.350000px;}
.x11b_c00145{left:713.400000px;}
.xa1_c00145{left:715.200000px;}
.xc7_c00145{left:718.800000px;}
.xe8_c00145{left:720.150000px;}
.xd9_c00145{left:721.350000px;}
.xa2_c00145{left:723.450000px;}
.xd1_c00145{left:727.950000px;}
.x110_c00145{left:729.300000px;}
.xaf_c00145{left:730.500000px;}
.xf2_c00145{left:732.000000px;}
.xcd_c00145{left:738.600000px;}
.xd2_c00145{left:740.850000px;}
.x114_c00145{left:741.900000px;}
.x10e_c00145{left:742.950000px;}
.xc8_c00145{left:744.750000px;}
.xda_c00145{left:745.800000px;}
.x107_c00145{left:747.150000px;}
.x100_c00145{left:749.400000px;}
.x122_c00145{left:751.650000px;}
.x120_c00145{left:754.500000px;}
.xb7_c00145{left:757.200000px;}
.x111_c00145{left:758.850000px;}
.x115_c00145{left:760.650000px;}
.x108_c00145{left:762.300000px;}
.x98_c00145{left:763.800000px;}
.xc1_c00145{left:765.000000px;}
.x95_c00145{left:766.050000px;}
.xde_c00145{left:767.850000px;}
.x104_c00145{left:769.950000px;}
.x11c_c00145{left:771.300000px;}
.x123_c00145{left:773.550000px;}
.x10a_c00145{left:774.900000px;}
.x99_c00145{left:777.450000px;}
.x101_c00145{left:780.000000px;}
.xd3_c00145{left:781.950000px;}
.xb0_c00145{left:786.000000px;}
.x97_c00145{left:789.750000px;}
.xb8_c00145{left:791.700000px;}
.xf3_c00145{left:793.500000px;}
.x112_c00145{left:795.150000px;}
.xdf_c00145{left:797.700000px;}
.x124_c00145{left:799.500000px;}
.xc2_c00145{left:801.300000px;}
.xef_c00145{left:802.350000px;}
.x10b_c00145{left:803.700000px;}
.x96_c00145{left:812.100000px;}
.x116_c00145{left:817.200000px;}
.x105_c00145{left:818.550000px;}
.xc9_c00145{left:820.650000px;}
.xb1_c00145{left:822.000000px;}
.xc3_c00145{left:823.200000px;}
.xf4_c00145{left:824.400000px;}
.x102_c00145{left:826.800000px;}
.x126_c00145{left:829.500000px;}
.xe3_c00145{left:831.450000px;}
.xf8_c00145{left:832.500000px;}
.xe5_c00145{left:834.000000px;}
.xe9_c00145{left:835.650000px;}
.x9a_c00145{left:837.150000px;}
.xdb_c00145{left:838.650000px;}
.xec_c00145{left:840.300000px;}
.x9b_c00145{left:844.650000px;}
.xb2_c00145{left:846.150000px;}
.xfb_c00145{left:850.350000px;}
.x109_c00145{left:853.050000px;}
.x118_c00145{left:855.900000px;}
.x11d_c00145{left:856.950000px;}
.xca_c00145{left:858.750000px;}
.x9c_c00145{left:860.550000px;}
.x106_c00145{left:861.750000px;}
.x9d_c00145{left:869.550000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws8_c00145{word-spacing:0.000000pt;}
.ws2_c00145{word-spacing:5.925926pt;}
.ws1_c00145{word-spacing:10.555556pt;}
.ws6_c00145{word-spacing:13.333333pt;}
.ws0_c00145{word-spacing:16.111111pt;}
.ws5_c00145{word-spacing:35.555556pt;}
.ws4_c00145{word-spacing:44.814815pt;}
.ws7_c00145{word-spacing:58.947368pt;}
.ws3_c00145{word-spacing:65.185185pt;}
._0_c00145{width:40.000000pt;}
._1_c00145{width:1399.259259pt;}
.fs7_c00145{font-size:32.000000pt;}
.fs8_c00145{font-size:37.333333pt;}
.fs6_c00145{font-size:42.666667pt;}
.fs5_c00145{font-size:48.000000pt;}
.fs3_c00145{font-size:53.333333pt;}
.fs2_c00145{font-size:58.666667pt;}
.fs4_c00145{font-size:64.000000pt;}
.fs0_c00145{font-size:69.333333pt;}
.fs1_c00145{font-size:74.666667pt;}
.y0_c00145{bottom:0.000000pt;}
.y68_c00145{bottom:169.333333pt;}
.y34_c00145{bottom:171.600000pt;}
.y67_c00145{bottom:182.400000pt;}
.y33_c00145{bottom:191.066667pt;}
.y66_c00145{bottom:194.533333pt;}
.y65_c00145{bottom:207.333333pt;}
.y32_c00145{bottom:210.533333pt;}
.y64_c00145{bottom:221.466667pt;}
.y31_c00145{bottom:233.600000pt;}
.y63_c00145{bottom:237.466667pt;}
.y62_c00145{bottom:253.733333pt;}
.y30_c00145{bottom:261.333333pt;}
.y61_c00145{bottom:269.733333pt;}
.y2f_c00145{bottom:277.333333pt;}
.y60_c00145{bottom:289.200000pt;}
.y2e_c00145{bottom:293.066667pt;}
.y5f_c00145{bottom:304.933333pt;}
.y2d_c00145{bottom:312.000000pt;}
.y5e_c00145{bottom:324.800000pt;}
.y2c_c00145{bottom:331.333333pt;}
.y5d_c00145{bottom:340.533333pt;}
.y2b_c00145{bottom:348.000000pt;}
.y2a_c00145{bottom:364.266667pt;}
.y5c_c00145{bottom:367.333333pt;}
.y29_c00145{bottom:379.600000pt;}
.y5b_c00145{bottom:383.333333pt;}
.y28_c00145{bottom:395.600000pt;}
.y5a_c00145{bottom:402.533333pt;}
.y27_c00145{bottom:411.333333pt;}
.y59_c00145{bottom:422.266667pt;}
.y26_c00145{bottom:427.066667pt;}
.y58_c00145{bottom:438.000000pt;}
.y25_c00145{bottom:442.800000pt;}
.y57_c00145{bottom:454.000000pt;}
.y24_c00145{bottom:458.800000pt;}
.y56_c00145{bottom:469.733333pt;}
.y23_c00145{bottom:474.533333pt;}
.y55_c00145{bottom:485.466667pt;}
.y22_c00145{bottom:490.533333pt;}
.y54_c00145{bottom:501.466667pt;}
.y21_c00145{bottom:506.266667pt;}
.y53_c00145{bottom:519.733333pt;}
.y20_c00145{bottom:525.466667pt;}
.y52_c00145{bottom:531.866667pt;}
.y1f_c00145{bottom:537.600000pt;}
.y51_c00145{bottom:545.600000pt;}
.y1e_c00145{bottom:551.066667pt;}
.y50_c00145{bottom:562.933333pt;}
.y1d_c00145{bottom:568.933333pt;}
.y1c_c00145{bottom:573.466667pt;}
.y4f_c00145{bottom:578.933333pt;}
.y1b_c00145{bottom:590.400000pt;}
.y4e_c00145{bottom:598.133333pt;}
.y1a_c00145{bottom:609.733333pt;}
.y4d_c00145{bottom:614.133333pt;}
.y19_c00145{bottom:626.000000pt;}
.y4c_c00145{bottom:630.133333pt;}
.y18_c00145{bottom:642.266667pt;}
.y4b_c00145{bottom:646.133333pt;}
.y17_c00145{bottom:660.800000pt;}
.y4a_c00145{bottom:664.933333pt;}
.y16_c00145{bottom:677.466667pt;}
.y49_c00145{bottom:680.666667pt;}
.y15_c00145{bottom:700.533333pt;}
.y48_c00145{bottom:707.466667pt;}
.y14_c00145{bottom:716.533333pt;}
.y47_c00145{bottom:723.200000pt;}
.y13_c00145{bottom:734.800000pt;}
.y46_c00145{bottom:742.400000pt;}
.y12_c00145{bottom:751.466667pt;}
.y45_c00145{bottom:758.400000pt;}
.y11_c00145{bottom:767.200000pt;}
.y44_c00145{bottom:777.866667pt;}
.y10_c00145{bottom:783.200000pt;}
.y43_c00145{bottom:793.866667pt;}
.yf_c00145{bottom:798.933333pt;}
.y42_c00145{bottom:813.066667pt;}
.ye_c00145{bottom:814.933333pt;}
.y41_c00145{bottom:829.066667pt;}
.yd_c00145{bottom:830.666667pt;}
.y40_c00145{bottom:848.933333pt;}
.yc_c00145{bottom:850.133333pt;}
.yb_c00145{bottom:866.133333pt;}
.y3f_c00145{bottom:868.133333pt;}
.ya_c00145{bottom:881.466667pt;}
.y3e_c00145{bottom:888.266667pt;}
.y9_c00145{bottom:897.466667pt;}
.y3d_c00145{bottom:907.333333pt;}
.y8_c00145{bottom:913.200000pt;}
.y3c_c00145{bottom:923.066667pt;}
.y7_c00145{bottom:929.200000pt;}
.y3b_c00145{bottom:938.800000pt;}
.y6_c00145{bottom:944.533333pt;}
.y5_c00145{bottom:960.266667pt;}
.y3a_c00145{bottom:963.466667pt;}
.y39_c00145{bottom:966.400000pt;}
.y4_c00145{bottom:976.000000pt;}
.y37_c00145{bottom:984.666667pt;}
.y36_c00145{bottom:987.600000pt;}
.y38_c00145{bottom:988.133333pt;}
.y3_c00145{bottom:992.000000pt;}
.y35_c00145{bottom:994.266667pt;}
.y1_c00145{bottom:1015.066667pt;}
.y2_c00145{bottom:1015.333333pt;}
.h9_c00145{height:32.000000pt;}
.ha_c00145{height:37.333333pt;}
.h8_c00145{height:42.666667pt;}
.h7_c00145{height:48.000000pt;}
.h5_c00145{height:53.333333pt;}
.h4_c00145{height:58.666667pt;}
.h6_c00145{height:64.000000pt;}
.h2_c00145{height:69.333333pt;}
.h3_c00145{height:74.666667pt;}
.h1_c00145{height:1132.666667pt;}
.h0_c00145{height:1132.800049pt;}
.w1_c00145{width:847.333333pt;}
.w0_c00145{width:847.360027pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:160.666667pt;}
.x8c_c00145{left:161.600000pt;}
.x5c_c00145{left:162.533333pt;}
.x75_c00145{left:165.600000pt;}
.x90_c00145{left:173.466667pt;}
.x4_c00145{left:176.666667pt;}
.x81_c00145{left:177.866667pt;}
.x69_c00145{left:179.733333pt;}
.x70_c00145{left:185.600000pt;}
.x68_c00145{left:188.666667pt;}
.x94_c00145{left:193.066667pt;}
.x5_c00145{left:194.933333pt;}
.x2c_c00145{left:196.266667pt;}
.x5d_c00145{left:199.333333pt;}
.x86_c00145{left:200.933333pt;}
.x63_c00145{left:204.400000pt;}
.x25_c00145{left:207.466667pt;}
.x87_c00145{left:209.200000pt;}
.x7b_c00145{left:210.800000pt;}
.x76_c00145{left:212.000000pt;}
.x38_c00145{left:213.333333pt;}
.x42_c00145{left:214.400000pt;}
.x47_c00145{left:215.733333pt;}
.x30_c00145{left:217.200000pt;}
.x15_c00145{left:218.800000pt;}
.xe_c00145{left:221.200000pt;}
.x1d_c00145{left:222.666667pt;}
.x26_c00145{left:226.400000pt;}
.x91_c00145{left:229.200000pt;}
.x4b_c00145{left:230.400000pt;}
.x6_c00145{left:231.733333pt;}
.x31_c00145{left:234.533333pt;}
.x71_c00145{left:235.466667pt;}
.x64_c00145{left:236.666667pt;}
.x8e_c00145{left:238.000000pt;}
.x2d_c00145{left:239.466667pt;}
.x79_c00145{left:240.400000pt;}
.x89_c00145{left:241.600000pt;}
.x16_c00145{left:242.533333pt;}
.x5a_c00145{left:244.933333pt;}
.x7_c00145{left:246.800000pt;}
.x8f_c00145{left:248.000000pt;}
.x43_c00145{left:248.933333pt;}
.x60_c00145{left:250.133333pt;}
.x2_c00145{left:253.733333pt;}
.xf_c00145{left:254.800000pt;}
.x92_c00145{left:256.533333pt;}
.x27_c00145{left:259.333333pt;}
.x56_c00145{left:261.733333pt;}
.x8_c00145{left:263.733333pt;}
.x10_c00145{left:264.666667pt;}
.x32_c00145{left:265.866667pt;}
.x17_c00145{left:267.866667pt;}
.x48_c00145{left:270.400000pt;}
.x82_c00145{left:272.800000pt;}
.x33_c00145{left:274.533333pt;}
.x18_c00145{left:276.133333pt;}
.x7f_c00145{left:278.000000pt;}
.x44_c00145{left:281.600000pt;}
.x1e_c00145{left:282.533333pt;}
.x61_c00145{left:283.466667pt;}
.x88_c00145{left:285.066667pt;}
.x8d_c00145{left:286.400000pt;}
.x65_c00145{left:287.466667pt;}
.x11_c00145{left:288.933333pt;}
.x57_c00145{left:290.933333pt;}
.x49_c00145{left:291.866667pt;}
.x3c_c00145{left:294.000000pt;}
.x2e_c00145{left:296.800000pt;}
.x7a_c00145{left:298.266667pt;}
.x45_c00145{left:299.200000pt;}
.x40_c00145{left:300.933333pt;}
.x1f_c00145{left:302.666667pt;}
.x19_c00145{left:304.666667pt;}
.x53_c00145{left:306.533333pt;}
.x28_c00145{left:307.600000pt;}
.x50_c00145{left:309.733333pt;}
.x5b_c00145{left:313.733333pt;}
.x20_c00145{left:314.800000pt;}
.x93_c00145{left:316.000000pt;}
.x84_c00145{left:317.066667pt;}
.x12_c00145{left:319.066667pt;}
.x39_c00145{left:320.533333pt;}
.x7c_c00145{left:324.400000pt;}
.x58_c00145{left:325.466667pt;}
.x9_c00145{left:327.466667pt;}
.x8a_c00145{left:329.200000pt;}
.x21_c00145{left:331.066667pt;}
.x34_c00145{left:332.400000pt;}
.x6a_c00145{left:334.133333pt;}
.x77_c00145{left:336.800000pt;}
.x3a_c00145{left:338.400000pt;}
.x6b_c00145{left:340.266667pt;}
.x7d_c00145{left:342.000000pt;}
.x1a_c00145{left:343.333333pt;}
.x5f_c00145{left:344.666667pt;}
.x59_c00145{left:346.266667pt;}
.x29_c00145{left:347.866667pt;}
.x35_c00145{left:349.733333pt;}
.xa_c00145{left:351.466667pt;}
.x6c_c00145{left:353.066667pt;}
.x22_c00145{left:355.733333pt;}
.x5e_c00145{left:358.933333pt;}
.x73_c00145{left:360.133333pt;}
.x13_c00145{left:362.533333pt;}
.x6d_c00145{left:366.133333pt;}
.x51_c00145{left:367.600000pt;}
.x83_c00145{left:369.600000pt;}
.x3_c00145{left:370.533333pt;}
.x4c_c00145{left:372.266667pt;}
.x3d_c00145{left:377.200000pt;}
.xb_c00145{left:378.400000pt;}
.x4e_c00145{left:380.266667pt;}
.x66_c00145{left:381.733333pt;}
.x14_c00145{left:383.333333pt;}
.x46_c00145{left:388.533333pt;}
.x4a_c00145{left:390.800000pt;}
.x54_c00145{left:392.266667pt;}
.x6e_c00145{left:396.266667pt;}
.x2a_c00145{left:398.133333pt;}
.x3e_c00145{left:399.333333pt;}
.x7e_c00145{left:401.866667pt;}
.x4d_c00145{left:405.866667pt;}
.x2f_c00145{left:407.200000pt;}
.x36_c00145{left:408.933333pt;}
.xc_c00145{left:411.066667pt;}
.x74_c00145{left:412.266667pt;}
.x8b_c00145{left:415.200000pt;}
.x41_c00145{left:416.133333pt;}
.x3b_c00145{left:419.733333pt;}
.x1b_c00145{left:420.800000pt;}
.x72_c00145{left:421.866667pt;}
.x37_c00145{left:423.600000pt;}
.x62_c00145{left:424.533333pt;}
.x52_c00145{left:427.066667pt;}
.x23_c00145{left:428.000000pt;}
.x2b_c00145{left:429.466667pt;}
.x85_c00145{left:430.400000pt;}
.x67_c00145{left:431.600000pt;}
.x78_c00145{left:433.066667pt;}
.x80_c00145{left:434.800000pt;}
.x1c_c00145{left:439.333333pt;}
.x55_c00145{left:440.933333pt;}
.x3f_c00145{left:445.466667pt;}
.x4f_c00145{left:446.533333pt;}
.x6f_c00145{left:447.733333pt;}
.x24_c00145{left:449.733333pt;}
.xd_c00145{left:456.133333pt;}
.x9e_c00145{left:477.066667pt;}
.xdc_c00145{left:478.133333pt;}
.xe1_c00145{left:480.000000pt;}
.x11e_c00145{left:488.800000pt;}
.xd4_c00145{left:491.200000pt;}
.xa8_c00145{left:493.200000pt;}
.xfa_c00145{left:494.400000pt;}
.xd5_c00145{left:500.800000pt;}
.x125_c00145{left:502.666667pt;}
.xab_c00145{left:508.533333pt;}
.xbd_c00145{left:509.866667pt;}
.x113_c00145{left:511.333333pt;}
.xa3_c00145{left:512.533333pt;}
.x117_c00145{left:513.600000pt;}
.xe6_c00145{left:514.666667pt;}
.xed_c00145{left:515.600000pt;}
.xa9_c00145{left:516.533333pt;}
.xe2_c00145{left:518.133333pt;}
.x9f_c00145{left:520.533333pt;}
.x11f_c00145{left:521.733333pt;}
.xa4_c00145{left:523.066667pt;}
.xb3_c00145{left:524.266667pt;}
.xea_c00145{left:525.466667pt;}
.x121_c00145{left:526.933333pt;}
.xd6_c00145{left:528.000000pt;}
.xce_c00145{left:529.200000pt;}
.x119_c00145{left:530.533333pt;}
.xcb_c00145{left:532.933333pt;}
.xfc_c00145{left:535.733333pt;}
.xac_c00145{left:538.000000pt;}
.xb4_c00145{left:540.000000pt;}
.xf5_c00145{left:541.866667pt;}
.xcf_c00145{left:544.266667pt;}
.xa5_c00145{left:546.400000pt;}
.x10d_c00145{left:547.466667pt;}
.xb9_c00145{left:549.600000pt;}
.xe4_c00145{left:550.933333pt;}
.xc5_c00145{left:553.200000pt;}
.x10c_c00145{left:554.400000pt;}
.xbe_c00145{left:558.133333pt;}
.xe0_c00145{left:559.866667pt;}
.xfe_c00145{left:560.933333pt;}
.xe7_c00145{left:562.666667pt;}
.xc4_c00145{left:563.733333pt;}
.x103_c00145{left:566.400000pt;}
.xcc_c00145{left:568.800000pt;}
.xb5_c00145{left:571.066667pt;}
.xee_c00145{left:573.466667pt;}
.xa6_c00145{left:577.466667pt;}
.xff_c00145{left:580.133333pt;}
.xa0_c00145{left:582.666667pt;}
.xd0_c00145{left:584.000000pt;}
.xad_c00145{left:586.933333pt;}
.x11a_c00145{left:588.400000pt;}
.xb6_c00145{left:590.533333pt;}
.xf6_c00145{left:592.800000pt;}
.xf1_c00145{left:596.533333pt;}
.xd7_c00145{left:598.400000pt;}
.xba_c00145{left:600.133333pt;}
.xaa_c00145{left:602.000000pt;}
.xf9_c00145{left:604.533333pt;}
.xd8_c00145{left:607.333333pt;}
.xbc_c00145{left:608.800000pt;}
.xa7_c00145{left:609.733333pt;}
.xf0_c00145{left:611.600000pt;}
.xfd_c00145{left:613.733333pt;}
.x10f_c00145{left:614.666667pt;}
.xeb_c00145{left:616.000000pt;}
.xc6_c00145{left:617.466667pt;}
.xbb_c00145{left:618.666667pt;}
.xbf_c00145{left:620.533333pt;}
.xdd_c00145{left:623.333333pt;}
.xae_c00145{left:625.333333pt;}
.xc0_c00145{left:627.866667pt;}
.xf7_c00145{left:630.533333pt;}
.x11b_c00145{left:634.133333pt;}
.xa1_c00145{left:635.733333pt;}
.xc7_c00145{left:638.933333pt;}
.xe8_c00145{left:640.133333pt;}
.xd9_c00145{left:641.200000pt;}
.xa2_c00145{left:643.066667pt;}
.xd1_c00145{left:647.066667pt;}
.x110_c00145{left:648.266667pt;}
.xaf_c00145{left:649.333333pt;}
.xf2_c00145{left:650.666667pt;}
.xcd_c00145{left:656.533333pt;}
.xd2_c00145{left:658.533333pt;}
.x114_c00145{left:659.466667pt;}
.x10e_c00145{left:660.400000pt;}
.xc8_c00145{left:662.000000pt;}
.xda_c00145{left:662.933333pt;}
.x107_c00145{left:664.133333pt;}
.x100_c00145{left:666.133333pt;}
.x122_c00145{left:668.133333pt;}
.x120_c00145{left:670.666667pt;}
.xb7_c00145{left:673.066667pt;}
.x111_c00145{left:674.533333pt;}
.x115_c00145{left:676.133333pt;}
.x108_c00145{left:677.600000pt;}
.x98_c00145{left:678.933333pt;}
.xc1_c00145{left:680.000000pt;}
.x95_c00145{left:680.933333pt;}
.xde_c00145{left:682.533333pt;}
.x104_c00145{left:684.400000pt;}
.x11c_c00145{left:685.600000pt;}
.x123_c00145{left:687.600000pt;}
.x10a_c00145{left:688.800000pt;}
.x99_c00145{left:691.066667pt;}
.x101_c00145{left:693.333333pt;}
.xd3_c00145{left:695.066667pt;}
.xb0_c00145{left:698.666667pt;}
.x97_c00145{left:702.000000pt;}
.xb8_c00145{left:703.733333pt;}
.xf3_c00145{left:705.333333pt;}
.x112_c00145{left:706.800000pt;}
.xdf_c00145{left:709.066667pt;}
.x124_c00145{left:710.666667pt;}
.xc2_c00145{left:712.266667pt;}
.xef_c00145{left:713.200000pt;}
.x10b_c00145{left:714.400000pt;}
.x96_c00145{left:721.866667pt;}
.x116_c00145{left:726.400000pt;}
.x105_c00145{left:727.600000pt;}
.xc9_c00145{left:729.466667pt;}
.xb1_c00145{left:730.666667pt;}
.xc3_c00145{left:731.733333pt;}
.xf4_c00145{left:732.800000pt;}
.x102_c00145{left:734.933333pt;}
.x126_c00145{left:737.333333pt;}
.xe3_c00145{left:739.066667pt;}
.xf8_c00145{left:740.000000pt;}
.xe5_c00145{left:741.333333pt;}
.xe9_c00145{left:742.800000pt;}
.x9a_c00145{left:744.133333pt;}
.xdb_c00145{left:745.466667pt;}
.xec_c00145{left:746.933333pt;}
.x9b_c00145{left:750.800000pt;}
.xb2_c00145{left:752.133333pt;}
.xfb_c00145{left:755.866667pt;}
.x109_c00145{left:758.266667pt;}
.x118_c00145{left:760.800000pt;}
.x11d_c00145{left:761.733333pt;}
.xca_c00145{left:763.333333pt;}
.x9c_c00145{left:764.933333pt;}
.x106_c00145{left:766.000000pt;}
.x9d_c00145{left:772.933333pt;}
}





/* 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_c00146 {
    display:none;
  }
  .loading-indicator_c00146.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00146 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_c00146 { 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_c00146" -> "#page-container .classname_c00146")
 */
.pf_c00146 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00146 { /* 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_c00146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00146 { /* 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_c00146 { /* 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_c00146 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00146 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00146 {overflow:visible;}
  }
}
.c_c00146 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00146 { /* 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_c00146:after { /* webkit #35443 */
  content: '';
}
.t_c00146:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00146 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 */
}
.__c00146 { /* 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_c00146 { /* info for Javascript */
  display:none;
}
.l_c00146 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00146 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00146 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00146: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_c00146 {
    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_c00146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00146.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_c00146 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00146;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.000000;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;}
.m1_c00146{transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);}
.m13_c00146{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00146{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00146{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mac_c00146{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m2_c00146{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.m80_c00146{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m11_c00146{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00146{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m10_c00146{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00146{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00146{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00146{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m12_c00146{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m81_c00146{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00146{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md2_c00146{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m67_c00146{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m85_c00146{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00146{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m82_c00146{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m51_c00146{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00146{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m7_c00146{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.med_c00146{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m79_c00146{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m116_c00146{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m110_c00146{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00146{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m83_c00146{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m15_c00146{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00146{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m56_c00146{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m77_c00146{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m8_c00146{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m90_c00146{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00146{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00146{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m91_c00146{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m65_c00146{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m33_c00146{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00146{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00146{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m25_c00146{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m94_c00146{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md9_c00146{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m115_c00146{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m31_c00146{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00146{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m107_c00146{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00146{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00146{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00146{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m20_c00146{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m68_c00146{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m78_c00146{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.maf_c00146{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00146{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m70_c00146{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mea_c00146{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m38_c00146{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00146{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00146{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00146{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00146{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m64_c00146{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me5_c00146{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00146{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00146{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00146{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00146{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00146{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00146{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m106_c00146{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m22_c00146{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me1_c00146{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00146{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m19_c00146{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m44_c00146{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me4_c00146{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00146{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.md5_c00146{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m62_c00146{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00146{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m72_c00146{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf_c00146{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m92_c00146{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m58_c00146{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m97_c00146{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00146{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m61_c00146{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m54_c00146{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00146{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00146{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m37_c00146{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00146{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00146{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m42_c00146{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m34_c00146{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m55_c00146{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00146{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mce_c00146{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.me9_c00146{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00146{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00146{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00146{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00146{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00146{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md7_c00146{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00146{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m32_c00146{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00146{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00146{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m23_c00146{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00146{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00146{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m100_c00146{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m101_c00146{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00146{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m39_c00146{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m28_c00146{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mba_c00146{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m36_c00146{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mca_c00146{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m63_c00146{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m96_c00146{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00146{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00146{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00146{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me2_c00146{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00146{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m48_c00146{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00146{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m18_c00146{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00146{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mec_c00146{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00146{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m76_c00146{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.maa_c00146{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00146{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00146{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m50_c00146{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00146{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m60_c00146{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00146{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mad_c00146{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m17_c00146{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m35_c00146{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m112_c00146{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.me8_c00146{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md8_c00146{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m43_c00146{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mab_c00146{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00146{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00146{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m99_c00146{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00146{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00146{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00146{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mda_c00146{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00146{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00146{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m95_c00146{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m27_c00146{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00146{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00146{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00146{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m75_c00146{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00146{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00146{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m30_c00146{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m29_c00146{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00146{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00146{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00146{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00146{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m57_c00146{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00146{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m71_c00146{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m6_c00146{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mff_c00146{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00146{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m87_c00146{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m45_c00146{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00146{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00146{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00146{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m66_c00146{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m47_c00146{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m24_c00146{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m93_c00146{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m26_c00146{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00146{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00146{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00146{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m74_c00146{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m111_c00146{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m113_c00146{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00146{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m52_c00146{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00146{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00146{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md1_c00146{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00146{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m84_c00146{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00146{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m86_c00146{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me_c00146{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m98_c00146{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00146{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m41_c00146{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00146{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m53_c00146{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mee_c00146{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00146{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00146{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00146{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00146{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5_c00146{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00146{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mae_c00146{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00146{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md_c00146{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00146{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m16_c00146{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00146{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00146{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00146{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00146{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md0_c00146{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00146{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00146{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m105_c00146{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00146{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m46_c00146{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m21_c00146{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.meb_c00146{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m73_c00146{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00146{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mb_c00146{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m109_c00146{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m59_c00146{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00146{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m40_c00146{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00146{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.me6_c00146{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00146{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00146{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m89_c00146{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00146{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00146{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md6_c00146{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m114_c00146{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mef_c00146{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m88_c00146{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00146{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m9_c00146{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00146{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00146{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me7_c00146{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00146{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m108_c00146{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m69_c00146{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.md4_c00146{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.me3_c00146{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m103_c00146{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.md3_c00146{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00146{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m118_c00146{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m117_c00146{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m102_c00146{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.m49_c00146{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00146{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.450750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450750,0.000000,0.000000,0.250000,0,0);}
.m104_c00146{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mde_c00146{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.me0_c00146{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00146{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls0_c00146{letter-spacing:0.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{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__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:-14.965517px;}
.wsb_c00146{word-spacing:-12.938931px;}
.ws7_c00146{word-spacing:-8.278351px;}
.ws1_c00146{word-spacing:-7.280255px;}
.wsc_c00146{word-spacing:-5.781250px;}
.ws5_c00146{word-spacing:-3.804469px;}
.wsd_c00146{word-spacing:0.000000px;}
.ws6_c00146{word-spacing:5.121951px;}
.ws8_c00146{word-spacing:6.944444px;}
.ws2_c00146{word-spacing:25.714286px;}
.ws9_c00146{word-spacing:29.285714px;}
.wsa_c00146{word-spacing:44.166667px;}
.ws4_c00146{word-spacing:66.315789px;}
.ws3_c00146{word-spacing:73.333333px;}
._0_c00146{width:59.285714px;}
.fc0_c00146{color:transparent;}
.fs5_c00146{font-size:24.000000px;}
.fsa_c00146{font-size:30.000000px;}
.fs8_c00146{font-size:36.000000px;}
.fs7_c00146{font-size:42.000000px;}
.fs1_c00146{font-size:48.000000px;}
.fs3_c00146{font-size:54.000000px;}
.fs2_c00146{font-size:60.000000px;}
.fs4_c00146{font-size:66.000000px;}
.fs6_c00146{font-size:72.000000px;}
.fs0_c00146{font-size:78.000000px;}
.fs9_c00146{font-size:102.000000px;}
.y0_c00146{bottom:0.000000px;}
.y38_c00146{bottom:13.650000px;}
.y37_c00146{bottom:25.950000px;}
.y6b_c00146{bottom:181.050000px;}
.y6a_c00146{bottom:196.200000px;}
.y36_c00146{bottom:197.550000px;}
.y69_c00146{bottom:212.100000px;}
.y35_c00146{bottom:215.850000px;}
.y68_c00146{bottom:228.300000px;}
.y34_c00146{bottom:233.550000px;}
.y67_c00146{bottom:244.500000px;}
.y33_c00146{bottom:251.250000px;}
.y66_c00146{bottom:258.900000px;}
.y32_c00146{bottom:268.950000px;}
.y65_c00146{bottom:273.300000px;}
.y31_c00146{bottom:289.050000px;}
.y30_c00146{bottom:308.550000px;}
.y64_c00146{bottom:318.900000px;}
.y2f_c00146{bottom:326.250000px;}
.y63_c00146{bottom:336.900000px;}
.y2e_c00146{bottom:343.950000px;}
.y62_c00146{bottom:359.250000px;}
.y2d_c00146{bottom:361.650000px;}
.y2c_c00146{bottom:388.950000px;}
.y5f_c00146{bottom:389.850000px;}
.y61_c00146{bottom:390.900000px;}
.y2b_c00146{bottom:397.200000px;}
.y5e_c00146{bottom:401.700000px;}
.y60_c00146{bottom:414.000000px;}
.y2a_c00146{bottom:415.200000px;}
.y5d_c00146{bottom:418.650000px;}
.y6c_c00146{bottom:419.700000px;}
.y5c_c00146{bottom:431.250000px;}
.y29_c00146{bottom:432.900000px;}
.y5b_c00146{bottom:450.450000px;}
.y28_c00146{bottom:450.600000px;}
.y27_c00146{bottom:468.600000px;}
.y5a_c00146{bottom:485.700000px;}
.y26_c00146{bottom:486.900000px;}
.y25_c00146{bottom:504.150000px;}
.y59_c00146{bottom:520.800000px;}
.y24_c00146{bottom:521.850000px;}
.y58_c00146{bottom:538.500000px;}
.y23_c00146{bottom:539.550000px;}
.y22_c00146{bottom:557.250000px;}
.y57_c00146{bottom:564.900000px;}
.y21_c00146{bottom:583.800000px;}
.y56_c00146{bottom:587.100000px;}
.y20_c00146{bottom:597.900000px;}
.y55_c00146{bottom:605.100000px;}
.y1f_c00146{bottom:612.000000px;}
.y54_c00146{bottom:623.100000px;}
.y1e_c00146{bottom:626.400000px;}
.y53_c00146{bottom:640.350000px;}
.y1d_c00146{bottom:640.800000px;}
.y1c_c00146{bottom:653.400000px;}
.y52_c00146{bottom:658.350000px;}
.y1b_c00146{bottom:669.600000px;}
.y51_c00146{bottom:676.350000px;}
.y1a_c00146{bottom:688.650000px;}
.y50_c00146{bottom:693.600000px;}
.y19_c00146{bottom:707.700000px;}
.y4f_c00146{bottom:711.300000px;}
.y4e_c00146{bottom:729.000000px;}
.y18_c00146{bottom:731.550000px;}
.y4d_c00146{bottom:746.700000px;}
.y17_c00146{bottom:749.550000px;}
.y4c_c00146{bottom:767.550000px;}
.y16_c00146{bottom:767.850000px;}
.y4b_c00146{bottom:780.450000px;}
.y15_c00146{bottom:789.150000px;}
.y4a_c00146{bottom:799.200000px;}
.y14_c00146{bottom:807.150000px;}
.y49_c00146{bottom:817.200000px;}
.y48_c00146{bottom:835.200000px;}
.y13_c00146{bottom:838.050000px;}
.y12_c00146{bottom:855.750000px;}
.y47_c00146{bottom:857.550000px;}
.y11_c00146{bottom:873.750000px;}
.y46_c00146{bottom:875.550000px;}
.y45_c00146{bottom:892.800000px;}
.yf_c00146{bottom:900.000000px;}
.y10_c00146{bottom:910.050000px;}
.y44_c00146{bottom:910.800000px;}
.ye_c00146{bottom:921.750000px;}
.y43_c00146{bottom:928.050000px;}
.yd_c00146{bottom:939.750000px;}
.y42_c00146{bottom:946.050000px;}
.yc_c00146{bottom:957.750000px;}
.y41_c00146{bottom:963.300000px;}
.yb_c00146{bottom:975.000000px;}
.y40_c00146{bottom:985.650000px;}
.ya_c00146{bottom:993.000000px;}
.y3f_c00146{bottom:1002.900000px;}
.y9_c00146{bottom:1010.700000px;}
.y8_c00146{bottom:1028.700000px;}
.y3e_c00146{bottom:1029.600000px;}
.y7_c00146{bottom:1046.400000px;}
.y3d_c00146{bottom:1047.300000px;}
.y6_c00146{bottom:1064.100000px;}
.y3c_c00146{bottom:1065.150000px;}
.y3b_c00146{bottom:1082.850000px;}
.y5_c00146{bottom:1085.400000px;}
.y4_c00146{bottom:1100.100000px;}
.y3a_c00146{bottom:1104.900000px;}
.y3_c00146{bottom:1113.750000px;}
.y39_c00146{bottom:1123.200000px;}
.y2_c00146{bottom:1127.100000px;}
.y1_c00146{bottom:1149.900000px;}
.h7_c00146{height:24.000000px;}
.hc_c00146{height:30.000000px;}
.ha_c00146{height:36.000000px;}
.h9_c00146{height:42.000000px;}
.h3_c00146{height:48.000000px;}
.h5_c00146{height:54.000000px;}
.h4_c00146{height:60.000000px;}
.h6_c00146{height:66.000000px;}
.h8_c00146{height:72.000000px;}
.h2_c00146{height:78.000000px;}
.hb_c00146{height:102.000000px;}
.h1_c00146{height:1278.000000px;}
.h0_c00146{height:1278.360077px;}
.w1_c00146{width:953.250000px;}
.w0_c00146{width:953.280030px;}
.x0_c00146{left:0.000000px;}
.xa9_c00146{left:47.550000px;}
.xa7_c00146{left:59.700000px;}
.xa8_c00146{left:73.050000px;}
.x4d_c00146{left:80.250000px;}
.x13_c00146{left:81.300000px;}
.x5a_c00146{left:82.800000px;}
.xaa_c00146{left:88.950000px;}
.x78_c00146{left:95.100000px;}
.x5f_c00146{left:96.150000px;}
.x29_c00146{left:98.100000px;}
.x1a_c00146{left:99.150000px;}
.x84_c00146{left:100.500000px;}
.x89_c00146{left:101.850000px;}
.x92_c00146{left:102.900000px;}
.x9c_c00146{left:103.950000px;}
.x4a_c00146{left:106.500000px;}
.x6_c00146{left:108.000000px;}
.x7f_c00146{left:109.950000px;}
.x74_c00146{left:111.300000px;}
.x32_c00146{left:118.950000px;}
.x1b_c00146{left:121.050000px;}
.x98_c00146{left:122.550000px;}
.x2a_c00146{left:124.800000px;}
.x65_c00146{left:126.000000px;}
.x22_c00146{left:127.650000px;}
.x93_c00146{left:130.650000px;}
.x9f_c00146{left:132.900000px;}
.x62_c00146{left:137.100000px;}
.x4b_c00146{left:138.150000px;}
.x41_c00146{left:141.450000px;}
.x79_c00146{left:142.950000px;}
.x6f_c00146{left:144.150000px;}
.x2b_c00146{left:146.100000px;}
.x33_c00146{left:153.450000px;}
.x46_c00146{left:155.550000px;}
.x85_c00146{left:156.600000px;}
.x5b_c00146{left:158.400000px;}
.x8a_c00146{left:159.450000px;}
.x55_c00146{left:161.100000px;}
.x14_c00146{left:162.600000px;}
.x5d_c00146{left:163.800000px;}
.xa4_c00146{left:164.850000px;}
.x95_c00146{left:167.250000px;}
.x81_c00146{left:168.600000px;}
.x23_c00146{left:170.850000px;}
.x3a_c00146{left:173.550000px;}
.xb_c00146{left:174.600000px;}
.x34_c00146{left:175.800000px;}
.x80_c00146{left:178.050000px;}
.x6b_c00146{left:179.250000px;}
.x4e_c00146{left:181.800000px;}
.x1c_c00146{left:184.350000px;}
.xa0_c00146{left:186.150000px;}
.x3b_c00146{left:187.200000px;}
.x66_c00146{left:190.050000px;}
.x94_c00146{left:191.850000px;}
.x42_c00146{left:194.700000px;}
.x7a_c00146{left:196.950000px;}
.xc_c00146{left:198.750000px;}
.x24_c00146{left:199.950000px;}
.x4f_c00146{left:201.600000px;}
.x47_c00146{left:203.100000px;}
.xa5_c00146{left:204.150000px;}
.x3c_c00146{left:205.200000px;}
.x5e_c00146{left:208.800000px;}
.x96_c00146{left:211.500000px;}
.x59_c00146{left:214.050000px;}
.xa6_c00146{left:215.250000px;}
.x25_c00146{left:217.650000px;}
.x63_c00146{left:220.950000px;}
.x75_c00146{left:222.000000px;}
.x2c_c00146{left:223.500000px;}
.x82_c00146{left:225.450000px;}
.x56_c00146{left:227.400000px;}
.x8b_c00146{left:229.200000px;}
.x6c_c00146{left:231.750000px;}
.x43_c00146{left:234.000000px;}
.x5c_c00146{left:235.500000px;}
.x3d_c00146{left:236.850000px;}
.x67_c00146{left:238.950000px;}
.x64_c00146{left:243.600000px;}
.x15_c00146{left:245.700000px;}
.x70_c00146{left:246.750000px;}
.x35_c00146{left:248.550000px;}
.x50_c00146{left:250.500000px;}
.x8c_c00146{left:251.550000px;}
.x9e_c00146{left:253.050000px;}
.x48_c00146{left:256.350000px;}
.x51_c00146{left:259.500000px;}
.x76_c00146{left:261.000000px;}
.x1d_c00146{left:262.500000px;}
.xa1_c00146{left:263.550000px;}
.x16_c00146{left:265.800000px;}
.xd_c00146{left:267.450000px;}
.x7b_c00146{left:269.700000px;}
.x3e_c00146{left:270.750000px;}
.x8e_c00146{left:272.100000px;}
.xe_c00146{left:274.650000px;}
.x7c_c00146{left:276.900000px;}
.x2d_c00146{left:279.000000px;}
.xf_c00146{left:281.850000px;}
.xa2_c00146{left:283.650000px;}
.x7d_c00146{left:284.850000px;}
.x97_c00146{left:287.400000px;}
.x10_c00146{left:289.350000px;}
.x1e_c00146{left:291.000000px;}
.x52_c00146{left:293.400000px;}
.x9b_c00146{left:294.750000px;}
.x11_c00146{left:296.250000px;}
.x49_c00146{left:297.450000px;}
.x9d_c00146{left:298.500000px;}
.x2e_c00146{left:300.300000px;}
.x71_c00146{left:302.850000px;}
.x68_c00146{left:304.800000px;}
.x6d_c00146{left:306.450000px;}
.x1f_c00146{left:309.300000px;}
.xa3_c00146{left:311.400000px;}
.x77_c00146{left:312.900000px;}
.x26_c00146{left:315.900000px;}
.x91_c00146{left:317.400000px;}
.x72_c00146{left:319.050000px;}
.x17_c00146{left:320.550000px;}
.x53_c00146{left:321.750000px;}
.x1_c00146{left:323.700000px;}
.x69_c00146{left:325.650000px;}
.x99_c00146{left:327.450000px;}
.x6e_c00146{left:329.100000px;}
.x86_c00146{left:333.450000px;}
.x12_c00146{left:335.550000px;}
.x36_c00146{left:337.050000px;}
.x5_c00146{left:338.100000px;}
.x73_c00146{left:339.150000px;}
.x2f_c00146{left:340.200000px;}
.x3f_c00146{left:341.700000px;}
.x7_c00146{left:344.550000px;}
.x27_c00146{left:345.750000px;}
.x54_c00146{left:347.250000px;}
.x37_c00146{left:348.900000px;}
.x44_c00146{left:351.000000px;}
.x4c_c00146{left:352.500000px;}
.x57_c00146{left:354.150000px;}
.x60_c00146{left:356.400000px;}
.x83_c00146{left:357.900000px;}
.x8f_c00146{left:358.950000px;}
.x88_c00146{left:360.750000px;}
.x30_c00146{left:366.900000px;}
.x40_c00146{left:369.000000px;}
.x20_c00146{left:370.800000px;}
.x8_c00146{left:373.650000px;}
.x38_c00146{left:375.150000px;}
.x7e_c00146{left:376.950000px;}
.x18_c00146{left:378.150000px;}
.x9a_c00146{left:379.650000px;}
.x6a_c00146{left:380.700000px;}
.x58_c00146{left:382.200000px;}
.x8d_c00146{left:386.550000px;}
.x19_c00146{left:387.900000px;}
.x90_c00146{left:389.250000px;}
.x31_c00146{left:391.050000px;}
.x28_c00146{left:393.300000px;}
.x61_c00146{left:394.500000px;}
.x39_c00146{left:397.800000px;}
.x21_c00146{left:399.900000px;}
.xa_c00146{left:402.900000px;}
.x9_c00146{left:404.250000px;}
.x45_c00146{left:405.750000px;}
.x87_c00146{left:408.300000px;}
.xab_c00146{left:437.700000px;}
.xc8_c00146{left:439.500000px;}
.x137_c00146{left:440.850000px;}
.x13a_c00146{left:450.750000px;}
.xb4_c00146{left:454.500000px;}
.xbf_c00146{left:455.550000px;}
.x10a_c00146{left:456.600000px;}
.x138_c00146{left:459.150000px;}
.x12f_c00146{left:465.750000px;}
.x115_c00146{left:473.400000px;}
.xce_c00146{left:474.900000px;}
.x11c_c00146{left:476.400000px;}
.x116_c00146{left:478.500000px;}
.xc9_c00146{left:480.150000px;}
.x132_c00146{left:481.350000px;}
.xea_c00146{left:482.700000px;}
.x111_c00146{left:484.200000px;}
.xb5_c00146{left:486.150000px;}
.x117_c00146{left:488.250000px;}
.xd7_c00146{left:493.350000px;}
.xe7_c00146{left:494.700000px;}
.xac_c00146{left:498.150000px;}
.xde_c00146{left:501.600000px;}
.x106_c00146{left:502.800000px;}
.xd3_c00146{left:504.000000px;}
.xb9_c00146{left:506.850000px;}
.x108_c00146{left:509.100000px;}
.xc0_c00146{left:510.300000px;}
.x139_c00146{left:513.450000px;}
.xc4_c00146{left:514.800000px;}
.x11f_c00146{left:516.750000px;}
.xcf_c00146{left:518.100000px;}
.xb6_c00146{left:520.050000px;}
.xe2_c00146{left:522.450000px;}
.xdf_c00146{left:524.700000px;}
.xca_c00146{left:526.200000px;}
.xd8_c00146{left:529.650000px;}
.xdc_c00146{left:531.300000px;}
.x10e_c00146{left:532.350000px;}
.x12a_c00146{left:533.850000px;}
.x124_c00146{left:535.350000px;}
.xee_c00146{left:538.050000px;}
.x112_c00146{left:539.250000px;}
.xe8_c00146{left:541.500000px;}
.xb7_c00146{left:544.950000px;}
.x123_c00146{left:546.450000px;}
.x118_c00146{left:547.950000px;}
.xeb_c00146{left:549.300000px;}
.xef_c00146{left:550.650000px;}
.x13b_c00146{left:552.600000px;}
.xad_c00146{left:555.450000px;}
.x128_c00146{left:557.700000px;}
.xf9_c00146{left:558.750000px;}
.x133_c00146{left:560.250000px;}
.xd9_c00146{left:562.800000px;}
.x12b_c00146{left:564.450000px;}
.xd0_c00146{left:566.700000px;}
.xe3_c00146{left:567.750000px;}
.x11d_c00146{left:571.050000px;}
.xae_c00146{left:573.750000px;}
.x103_c00146{left:577.800000px;}
.x11e_c00146{left:578.850000px;}
.x113_c00146{left:582.450000px;}
.xe9_c00146{left:583.950000px;}
.x2_c00146{left:585.000000px;}
.xc1_c00146{left:586.650000px;}
.xba_c00146{left:588.150000px;}
.x10f_c00146{left:592.500000px;}
.x134_c00146{left:594.150000px;}
.x129_c00146{left:596.100000px;}
.xfa_c00146{left:597.300000px;}
.xe4_c00146{left:599.100000px;}
.xe0_c00146{left:601.050000px;}
.xcb_c00146{left:602.100000px;}
.xf0_c00146{left:603.150000px;}
.xfb_c00146{left:604.500000px;}
.xe5_c00146{left:607.350000px;}
.x125_c00146{left:609.150000px;}
.xc5_c00146{left:610.500000px;}
.xfc_c00146{left:612.000000px;}
.xaf_c00146{left:613.650000px;}
.x104_c00146{left:615.300000px;}
.x109_c00146{left:618.600000px;}
.x130_c00146{left:619.950000px;}
.xb8_c00146{left:621.600000px;}
.x3_c00146{left:623.550000px;}
.xd4_c00146{left:624.600000px;}
.x119_c00146{left:627.750000px;}
.x126_c00146{left:629.100000px;}
.xf4_c00146{left:630.450000px;}
.xb0_c00146{left:634.200000px;}
.x107_c00146{left:635.850000px;}
.x131_c00146{left:637.650000px;}
.xec_c00146{left:638.850000px;}
.xfd_c00146{left:640.500000px;}
.x122_c00146{left:642.600000px;}
.x10b_c00146{left:644.100000px;}
.x120_c00146{left:646.200000px;}
.xbb_c00146{left:647.850000px;}
.xd5_c00146{left:649.800000px;}
.xc6_c00146{left:650.850000px;}
.x10c_c00146{left:653.400000px;}
.xb1_c00146{left:655.800000px;}
.xc2_c00146{left:656.850000px;}
.xda_c00146{left:659.550000px;}
.xfe_c00146{left:662.400000px;}
.xbc_c00146{left:664.350000px;}
.xf1_c00146{left:666.900000px;}
.xff_c00146{left:669.600000px;}
.xcc_c00146{left:672.600000px;}
.x10d_c00146{left:673.950000px;}
.xd1_c00146{left:675.000000px;}
.x13c_c00146{left:676.050000px;}
.x110_c00146{left:677.850000px;}
.xc7_c00146{left:678.900000px;}
.x11a_c00146{left:680.250000px;}
.xcd_c00146{left:681.600000px;}
.x12c_c00146{left:683.250000px;}
.x100_c00146{left:684.300000px;}
.x135_c00146{left:686.250000px;}
.x127_c00146{left:687.450000px;}
.xe1_c00146{left:691.350000px;}
.xbd_c00146{left:693.150000px;}
.xf7_c00146{left:695.100000px;}
.x11b_c00146{left:697.500000px;}
.xf5_c00146{left:698.550000px;}
.xb2_c00146{left:700.050000px;}
.x101_c00146{left:703.050000px;}
.xdd_c00146{left:704.100000px;}
.x114_c00146{left:705.150000px;}
.xd6_c00146{left:708.150000px;}
.x105_c00146{left:714.000000px;}
.xf2_c00146{left:717.750000px;}
.xe6_c00146{left:720.750000px;}
.xf6_c00146{left:723.000000px;}
.xdb_c00146{left:725.850000px;}
.xed_c00146{left:728.550000px;}
.x12d_c00146{left:731.850000px;}
.x102_c00146{left:733.950000px;}
.x121_c00146{left:742.350000px;}
.x4_c00146{left:747.000000px;}
.xf3_c00146{left:748.050000px;}
.xd2_c00146{left:749.850000px;}
.xbe_c00146{left:752.550000px;}
.xf8_c00146{left:759.150000px;}
.xb3_c00146{left:761.550000px;}
.xc3_c00146{left:767.400000px;}
.x136_c00146{left:768.750000px;}
.x12e_c00146{left:771.450000px;}
.x13d_c00146{left:778.350000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:-13.302682pt;}
.wsb_c00146{word-spacing:-11.501272pt;}
.ws7_c00146{word-spacing:-7.358534pt;}
.ws1_c00146{word-spacing:-6.471338pt;}
.wsc_c00146{word-spacing:-5.138889pt;}
.ws5_c00146{word-spacing:-3.381750pt;}
.wsd_c00146{word-spacing:0.000000pt;}
.ws6_c00146{word-spacing:4.552846pt;}
.ws8_c00146{word-spacing:6.172840pt;}
.ws2_c00146{word-spacing:22.857143pt;}
.ws9_c00146{word-spacing:26.031746pt;}
.wsa_c00146{word-spacing:39.259259pt;}
.ws4_c00146{word-spacing:58.947368pt;}
.ws3_c00146{word-spacing:65.185185pt;}
._0_c00146{width:52.698413pt;}
.fs5_c00146{font-size:21.333333pt;}
.fsa_c00146{font-size:26.666667pt;}
.fs8_c00146{font-size:32.000000pt;}
.fs7_c00146{font-size:37.333333pt;}
.fs1_c00146{font-size:42.666667pt;}
.fs3_c00146{font-size:48.000000pt;}
.fs2_c00146{font-size:53.333333pt;}
.fs4_c00146{font-size:58.666667pt;}
.fs6_c00146{font-size:64.000000pt;}
.fs0_c00146{font-size:69.333333pt;}
.fs9_c00146{font-size:90.666667pt;}
.y0_c00146{bottom:0.000000pt;}
.y38_c00146{bottom:12.133333pt;}
.y37_c00146{bottom:23.066667pt;}
.y6b_c00146{bottom:160.933333pt;}
.y6a_c00146{bottom:174.400000pt;}
.y36_c00146{bottom:175.600000pt;}
.y69_c00146{bottom:188.533333pt;}
.y35_c00146{bottom:191.866667pt;}
.y68_c00146{bottom:202.933333pt;}
.y34_c00146{bottom:207.600000pt;}
.y67_c00146{bottom:217.333333pt;}
.y33_c00146{bottom:223.333333pt;}
.y66_c00146{bottom:230.133333pt;}
.y32_c00146{bottom:239.066667pt;}
.y65_c00146{bottom:242.933333pt;}
.y31_c00146{bottom:256.933333pt;}
.y30_c00146{bottom:274.266667pt;}
.y64_c00146{bottom:283.466667pt;}
.y2f_c00146{bottom:290.000000pt;}
.y63_c00146{bottom:299.466667pt;}
.y2e_c00146{bottom:305.733333pt;}
.y62_c00146{bottom:319.333333pt;}
.y2d_c00146{bottom:321.466667pt;}
.y2c_c00146{bottom:345.733333pt;}
.y5f_c00146{bottom:346.533333pt;}
.y61_c00146{bottom:347.466667pt;}
.y2b_c00146{bottom:353.066667pt;}
.y5e_c00146{bottom:357.066667pt;}
.y60_c00146{bottom:368.000000pt;}
.y2a_c00146{bottom:369.066667pt;}
.y5d_c00146{bottom:372.133333pt;}
.y6c_c00146{bottom:373.066667pt;}
.y5c_c00146{bottom:383.333333pt;}
.y29_c00146{bottom:384.800000pt;}
.y5b_c00146{bottom:400.400000pt;}
.y28_c00146{bottom:400.533333pt;}
.y27_c00146{bottom:416.533333pt;}
.y5a_c00146{bottom:431.733333pt;}
.y26_c00146{bottom:432.800000pt;}
.y25_c00146{bottom:448.133333pt;}
.y59_c00146{bottom:462.933333pt;}
.y24_c00146{bottom:463.866667pt;}
.y58_c00146{bottom:478.666667pt;}
.y23_c00146{bottom:479.600000pt;}
.y22_c00146{bottom:495.333333pt;}
.y57_c00146{bottom:502.133333pt;}
.y21_c00146{bottom:518.933333pt;}
.y56_c00146{bottom:521.866667pt;}
.y20_c00146{bottom:531.466667pt;}
.y55_c00146{bottom:537.866667pt;}
.y1f_c00146{bottom:544.000000pt;}
.y54_c00146{bottom:553.866667pt;}
.y1e_c00146{bottom:556.800000pt;}
.y53_c00146{bottom:569.200000pt;}
.y1d_c00146{bottom:569.600000pt;}
.y1c_c00146{bottom:580.800000pt;}
.y52_c00146{bottom:585.200000pt;}
.y1b_c00146{bottom:595.200000pt;}
.y51_c00146{bottom:601.200000pt;}
.y1a_c00146{bottom:612.133333pt;}
.y50_c00146{bottom:616.533333pt;}
.y19_c00146{bottom:629.066667pt;}
.y4f_c00146{bottom:632.266667pt;}
.y4e_c00146{bottom:648.000000pt;}
.y18_c00146{bottom:650.266667pt;}
.y4d_c00146{bottom:663.733333pt;}
.y17_c00146{bottom:666.266667pt;}
.y4c_c00146{bottom:682.266667pt;}
.y16_c00146{bottom:682.533333pt;}
.y4b_c00146{bottom:693.733333pt;}
.y15_c00146{bottom:701.466667pt;}
.y4a_c00146{bottom:710.400000pt;}
.y14_c00146{bottom:717.466667pt;}
.y49_c00146{bottom:726.400000pt;}
.y48_c00146{bottom:742.400000pt;}
.y13_c00146{bottom:744.933333pt;}
.y12_c00146{bottom:760.666667pt;}
.y47_c00146{bottom:762.266667pt;}
.y11_c00146{bottom:776.666667pt;}
.y46_c00146{bottom:778.266667pt;}
.y45_c00146{bottom:793.600000pt;}
.yf_c00146{bottom:800.000000pt;}
.y10_c00146{bottom:808.933333pt;}
.y44_c00146{bottom:809.600000pt;}
.ye_c00146{bottom:819.333333pt;}
.y43_c00146{bottom:824.933333pt;}
.yd_c00146{bottom:835.333333pt;}
.y42_c00146{bottom:840.933333pt;}
.yc_c00146{bottom:851.333333pt;}
.y41_c00146{bottom:856.266667pt;}
.yb_c00146{bottom:866.666667pt;}
.y40_c00146{bottom:876.133333pt;}
.ya_c00146{bottom:882.666667pt;}
.y3f_c00146{bottom:891.466667pt;}
.y9_c00146{bottom:898.400000pt;}
.y8_c00146{bottom:914.400000pt;}
.y3e_c00146{bottom:915.200000pt;}
.y7_c00146{bottom:930.133333pt;}
.y3d_c00146{bottom:930.933333pt;}
.y6_c00146{bottom:945.866667pt;}
.y3c_c00146{bottom:946.800000pt;}
.y3b_c00146{bottom:962.533333pt;}
.y5_c00146{bottom:964.800000pt;}
.y4_c00146{bottom:977.866667pt;}
.y3a_c00146{bottom:982.133333pt;}
.y3_c00146{bottom:990.000000pt;}
.y39_c00146{bottom:998.400000pt;}
.y2_c00146{bottom:1001.866667pt;}
.y1_c00146{bottom:1022.133333pt;}
.h7_c00146{height:21.333333pt;}
.hc_c00146{height:26.666667pt;}
.ha_c00146{height:32.000000pt;}
.h9_c00146{height:37.333333pt;}
.h3_c00146{height:42.666667pt;}
.h5_c00146{height:48.000000pt;}
.h4_c00146{height:53.333333pt;}
.h6_c00146{height:58.666667pt;}
.h8_c00146{height:64.000000pt;}
.h2_c00146{height:69.333333pt;}
.hb_c00146{height:90.666667pt;}
.h1_c00146{height:1136.000000pt;}
.h0_c00146{height:1136.320068pt;}
.w1_c00146{width:847.333333pt;}
.w0_c00146{width:847.360027pt;}
.x0_c00146{left:0.000000pt;}
.xa9_c00146{left:42.266667pt;}
.xa7_c00146{left:53.066667pt;}
.xa8_c00146{left:64.933333pt;}
.x4d_c00146{left:71.333333pt;}
.x13_c00146{left:72.266667pt;}
.x5a_c00146{left:73.600000pt;}
.xaa_c00146{left:79.066667pt;}
.x78_c00146{left:84.533333pt;}
.x5f_c00146{left:85.466667pt;}
.x29_c00146{left:87.200000pt;}
.x1a_c00146{left:88.133333pt;}
.x84_c00146{left:89.333333pt;}
.x89_c00146{left:90.533333pt;}
.x92_c00146{left:91.466667pt;}
.x9c_c00146{left:92.400000pt;}
.x4a_c00146{left:94.666667pt;}
.x6_c00146{left:96.000000pt;}
.x7f_c00146{left:97.733333pt;}
.x74_c00146{left:98.933333pt;}
.x32_c00146{left:105.733333pt;}
.x1b_c00146{left:107.600000pt;}
.x98_c00146{left:108.933333pt;}
.x2a_c00146{left:110.933333pt;}
.x65_c00146{left:112.000000pt;}
.x22_c00146{left:113.466667pt;}
.x93_c00146{left:116.133333pt;}
.x9f_c00146{left:118.133333pt;}
.x62_c00146{left:121.866667pt;}
.x4b_c00146{left:122.800000pt;}
.x41_c00146{left:125.733333pt;}
.x79_c00146{left:127.066667pt;}
.x6f_c00146{left:128.133333pt;}
.x2b_c00146{left:129.866667pt;}
.x33_c00146{left:136.400000pt;}
.x46_c00146{left:138.266667pt;}
.x85_c00146{left:139.200000pt;}
.x5b_c00146{left:140.800000pt;}
.x8a_c00146{left:141.733333pt;}
.x55_c00146{left:143.200000pt;}
.x14_c00146{left:144.533333pt;}
.x5d_c00146{left:145.600000pt;}
.xa4_c00146{left:146.533333pt;}
.x95_c00146{left:148.666667pt;}
.x81_c00146{left:149.866667pt;}
.x23_c00146{left:151.866667pt;}
.x3a_c00146{left:154.266667pt;}
.xb_c00146{left:155.200000pt;}
.x34_c00146{left:156.266667pt;}
.x80_c00146{left:158.266667pt;}
.x6b_c00146{left:159.333333pt;}
.x4e_c00146{left:161.600000pt;}
.x1c_c00146{left:163.866667pt;}
.xa0_c00146{left:165.466667pt;}
.x3b_c00146{left:166.400000pt;}
.x66_c00146{left:168.933333pt;}
.x94_c00146{left:170.533333pt;}
.x42_c00146{left:173.066667pt;}
.x7a_c00146{left:175.066667pt;}
.xc_c00146{left:176.666667pt;}
.x24_c00146{left:177.733333pt;}
.x4f_c00146{left:179.200000pt;}
.x47_c00146{left:180.533333pt;}
.xa5_c00146{left:181.466667pt;}
.x3c_c00146{left:182.400000pt;}
.x5e_c00146{left:185.600000pt;}
.x96_c00146{left:188.000000pt;}
.x59_c00146{left:190.266667pt;}
.xa6_c00146{left:191.333333pt;}
.x25_c00146{left:193.466667pt;}
.x63_c00146{left:196.400000pt;}
.x75_c00146{left:197.333333pt;}
.x2c_c00146{left:198.666667pt;}
.x82_c00146{left:200.400000pt;}
.x56_c00146{left:202.133333pt;}
.x8b_c00146{left:203.733333pt;}
.x6c_c00146{left:206.000000pt;}
.x43_c00146{left:208.000000pt;}
.x5c_c00146{left:209.333333pt;}
.x3d_c00146{left:210.533333pt;}
.x67_c00146{left:212.400000pt;}
.x64_c00146{left:216.533333pt;}
.x15_c00146{left:218.400000pt;}
.x70_c00146{left:219.333333pt;}
.x35_c00146{left:220.933333pt;}
.x50_c00146{left:222.666667pt;}
.x8c_c00146{left:223.600000pt;}
.x9e_c00146{left:224.933333pt;}
.x48_c00146{left:227.866667pt;}
.x51_c00146{left:230.666667pt;}
.x76_c00146{left:232.000000pt;}
.x1d_c00146{left:233.333333pt;}
.xa1_c00146{left:234.266667pt;}
.x16_c00146{left:236.266667pt;}
.xd_c00146{left:237.733333pt;}
.x7b_c00146{left:239.733333pt;}
.x3e_c00146{left:240.666667pt;}
.x8e_c00146{left:241.866667pt;}
.xe_c00146{left:244.133333pt;}
.x7c_c00146{left:246.133333pt;}
.x2d_c00146{left:248.000000pt;}
.xf_c00146{left:250.533333pt;}
.xa2_c00146{left:252.133333pt;}
.x7d_c00146{left:253.200000pt;}
.x97_c00146{left:255.466667pt;}
.x10_c00146{left:257.200000pt;}
.x1e_c00146{left:258.666667pt;}
.x52_c00146{left:260.800000pt;}
.x9b_c00146{left:262.000000pt;}
.x11_c00146{left:263.333333pt;}
.x49_c00146{left:264.400000pt;}
.x9d_c00146{left:265.333333pt;}
.x2e_c00146{left:266.933333pt;}
.x71_c00146{left:269.200000pt;}
.x68_c00146{left:270.933333pt;}
.x6d_c00146{left:272.400000pt;}
.x1f_c00146{left:274.933333pt;}
.xa3_c00146{left:276.800000pt;}
.x77_c00146{left:278.133333pt;}
.x26_c00146{left:280.800000pt;}
.x91_c00146{left:282.133333pt;}
.x72_c00146{left:283.600000pt;}
.x17_c00146{left:284.933333pt;}
.x53_c00146{left:286.000000pt;}
.x1_c00146{left:287.733333pt;}
.x69_c00146{left:289.466667pt;}
.x99_c00146{left:291.066667pt;}
.x6e_c00146{left:292.533333pt;}
.x86_c00146{left:296.400000pt;}
.x12_c00146{left:298.266667pt;}
.x36_c00146{left:299.600000pt;}
.x5_c00146{left:300.533333pt;}
.x73_c00146{left:301.466667pt;}
.x2f_c00146{left:302.400000pt;}
.x3f_c00146{left:303.733333pt;}
.x7_c00146{left:306.266667pt;}
.x27_c00146{left:307.333333pt;}
.x54_c00146{left:308.666667pt;}
.x37_c00146{left:310.133333pt;}
.x44_c00146{left:312.000000pt;}
.x4c_c00146{left:313.333333pt;}
.x57_c00146{left:314.800000pt;}
.x60_c00146{left:316.800000pt;}
.x83_c00146{left:318.133333pt;}
.x8f_c00146{left:319.066667pt;}
.x88_c00146{left:320.666667pt;}
.x30_c00146{left:326.133333pt;}
.x40_c00146{left:328.000000pt;}
.x20_c00146{left:329.600000pt;}
.x8_c00146{left:332.133333pt;}
.x38_c00146{left:333.466667pt;}
.x7e_c00146{left:335.066667pt;}
.x18_c00146{left:336.133333pt;}
.x9a_c00146{left:337.466667pt;}
.x6a_c00146{left:338.400000pt;}
.x58_c00146{left:339.733333pt;}
.x8d_c00146{left:343.600000pt;}
.x19_c00146{left:344.800000pt;}
.x90_c00146{left:346.000000pt;}
.x31_c00146{left:347.600000pt;}
.x28_c00146{left:349.600000pt;}
.x61_c00146{left:350.666667pt;}
.x39_c00146{left:353.600000pt;}
.x21_c00146{left:355.466667pt;}
.xa_c00146{left:358.133333pt;}
.x9_c00146{left:359.333333pt;}
.x45_c00146{left:360.666667pt;}
.x87_c00146{left:362.933333pt;}
.xab_c00146{left:389.066667pt;}
.xc8_c00146{left:390.666667pt;}
.x137_c00146{left:391.866667pt;}
.x13a_c00146{left:400.666667pt;}
.xb4_c00146{left:404.000000pt;}
.xbf_c00146{left:404.933333pt;}
.x10a_c00146{left:405.866667pt;}
.x138_c00146{left:408.133333pt;}
.x12f_c00146{left:414.000000pt;}
.x115_c00146{left:420.800000pt;}
.xce_c00146{left:422.133333pt;}
.x11c_c00146{left:423.466667pt;}
.x116_c00146{left:425.333333pt;}
.xc9_c00146{left:426.800000pt;}
.x132_c00146{left:427.866667pt;}
.xea_c00146{left:429.066667pt;}
.x111_c00146{left:430.400000pt;}
.xb5_c00146{left:432.133333pt;}
.x117_c00146{left:434.000000pt;}
.xd7_c00146{left:438.533333pt;}
.xe7_c00146{left:439.733333pt;}
.xac_c00146{left:442.800000pt;}
.xde_c00146{left:445.866667pt;}
.x106_c00146{left:446.933333pt;}
.xd3_c00146{left:448.000000pt;}
.xb9_c00146{left:450.533333pt;}
.x108_c00146{left:452.533333pt;}
.xc0_c00146{left:453.600000pt;}
.x139_c00146{left:456.400000pt;}
.xc4_c00146{left:457.600000pt;}
.x11f_c00146{left:459.333333pt;}
.xcf_c00146{left:460.533333pt;}
.xb6_c00146{left:462.266667pt;}
.xe2_c00146{left:464.400000pt;}
.xdf_c00146{left:466.400000pt;}
.xca_c00146{left:467.733333pt;}
.xd8_c00146{left:470.800000pt;}
.xdc_c00146{left:472.266667pt;}
.x10e_c00146{left:473.200000pt;}
.x12a_c00146{left:474.533333pt;}
.x124_c00146{left:475.866667pt;}
.xee_c00146{left:478.266667pt;}
.x112_c00146{left:479.333333pt;}
.xe8_c00146{left:481.333333pt;}
.xb7_c00146{left:484.400000pt;}
.x123_c00146{left:485.733333pt;}
.x118_c00146{left:487.066667pt;}
.xeb_c00146{left:488.266667pt;}
.xef_c00146{left:489.466667pt;}
.x13b_c00146{left:491.200000pt;}
.xad_c00146{left:493.733333pt;}
.x128_c00146{left:495.733333pt;}
.xf9_c00146{left:496.666667pt;}
.x133_c00146{left:498.000000pt;}
.xd9_c00146{left:500.266667pt;}
.x12b_c00146{left:501.733333pt;}
.xd0_c00146{left:503.733333pt;}
.xe3_c00146{left:504.666667pt;}
.x11d_c00146{left:507.600000pt;}
.xae_c00146{left:510.000000pt;}
.x103_c00146{left:513.600000pt;}
.x11e_c00146{left:514.533333pt;}
.x113_c00146{left:517.733333pt;}
.xe9_c00146{left:519.066667pt;}
.x2_c00146{left:520.000000pt;}
.xc1_c00146{left:521.466667pt;}
.xba_c00146{left:522.800000pt;}
.x10f_c00146{left:526.666667pt;}
.x134_c00146{left:528.133333pt;}
.x129_c00146{left:529.866667pt;}
.xfa_c00146{left:530.933333pt;}
.xe4_c00146{left:532.533333pt;}
.xe0_c00146{left:534.266667pt;}
.xcb_c00146{left:535.200000pt;}
.xf0_c00146{left:536.133333pt;}
.xfb_c00146{left:537.333333pt;}
.xe5_c00146{left:539.866667pt;}
.x125_c00146{left:541.466667pt;}
.xc5_c00146{left:542.666667pt;}
.xfc_c00146{left:544.000000pt;}
.xaf_c00146{left:545.466667pt;}
.x104_c00146{left:546.933333pt;}
.x109_c00146{left:549.866667pt;}
.x130_c00146{left:551.066667pt;}
.xb8_c00146{left:552.533333pt;}
.x3_c00146{left:554.266667pt;}
.xd4_c00146{left:555.200000pt;}
.x119_c00146{left:558.000000pt;}
.x126_c00146{left:559.200000pt;}
.xf4_c00146{left:560.400000pt;}
.xb0_c00146{left:563.733333pt;}
.x107_c00146{left:565.200000pt;}
.x131_c00146{left:566.800000pt;}
.xec_c00146{left:567.866667pt;}
.xfd_c00146{left:569.333333pt;}
.x122_c00146{left:571.200000pt;}
.x10b_c00146{left:572.533333pt;}
.x120_c00146{left:574.400000pt;}
.xbb_c00146{left:575.866667pt;}
.xd5_c00146{left:577.600000pt;}
.xc6_c00146{left:578.533333pt;}
.x10c_c00146{left:580.800000pt;}
.xb1_c00146{left:582.933333pt;}
.xc2_c00146{left:583.866667pt;}
.xda_c00146{left:586.266667pt;}
.xfe_c00146{left:588.800000pt;}
.xbc_c00146{left:590.533333pt;}
.xf1_c00146{left:592.800000pt;}
.xff_c00146{left:595.200000pt;}
.xcc_c00146{left:597.866667pt;}
.x10d_c00146{left:599.066667pt;}
.xd1_c00146{left:600.000000pt;}
.x13c_c00146{left:600.933333pt;}
.x110_c00146{left:602.533333pt;}
.xc7_c00146{left:603.466667pt;}
.x11a_c00146{left:604.666667pt;}
.xcd_c00146{left:605.866667pt;}
.x12c_c00146{left:607.333333pt;}
.x100_c00146{left:608.266667pt;}
.x135_c00146{left:610.000000pt;}
.x127_c00146{left:611.066667pt;}
.xe1_c00146{left:614.533333pt;}
.xbd_c00146{left:616.133333pt;}
.xf7_c00146{left:617.866667pt;}
.x11b_c00146{left:620.000000pt;}
.xf5_c00146{left:620.933333pt;}
.xb2_c00146{left:622.266667pt;}
.x101_c00146{left:624.933333pt;}
.xdd_c00146{left:625.866667pt;}
.x114_c00146{left:626.800000pt;}
.xd6_c00146{left:629.466667pt;}
.x105_c00146{left:634.666667pt;}
.xf2_c00146{left:638.000000pt;}
.xe6_c00146{left:640.666667pt;}
.xf6_c00146{left:642.666667pt;}
.xdb_c00146{left:645.200000pt;}
.xed_c00146{left:647.600000pt;}
.x12d_c00146{left:650.533333pt;}
.x102_c00146{left:652.400000pt;}
.x121_c00146{left:659.866667pt;}
.x4_c00146{left:664.000000pt;}
.xf3_c00146{left:664.933333pt;}
.xd2_c00146{left:666.533333pt;}
.xbe_c00146{left:668.933333pt;}
.xf8_c00146{left:674.800000pt;}
.xb3_c00146{left:676.933333pt;}
.xc3_c00146{left:682.133333pt;}
.x136_c00146{left:683.333333pt;}
.x12e_c00146{left:685.733333pt;}
.x13d_c00146{left:691.866667pt;}
}





/* 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_c00147 {
    display:none;
  }
  .loading-indicator_c00147.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00147 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_c00147 { 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_c00147" -> "#page-container .classname_c00147")
 */
.pf_c00147 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00147 { /* 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_c00147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00147 { /* 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_c00147 { /* 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_c00147 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00147 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00147 {overflow:visible;}
  }
}
.c_c00147 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00147 { /* 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_c00147:after { /* webkit #35443 */
  content: '';
}
.t_c00147:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00147 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 */
}
.__c00147 { /* 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_c00147 { /* info for Javascript */
  display:none;
}
.l_c00147 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00147 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00147 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00147: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_c00147 {
    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_c00147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00147.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_c00147 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00147;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.000000;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;}
.md1_c00147{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mf_c00147{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00147{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00147{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.m143_c00147{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m12_c00147{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mda_c00147{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m48_c00147{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00147{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m82_c00147{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00147{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00147{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mba_c00147{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m140_c00147{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00147{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00147{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00147{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m126_c00147{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00147{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00147{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m107_c00147{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m14b_c00147{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m76_c00147{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00147{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me1_c00147{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m133_c00147{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00147{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00147{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00147{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00147{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00147{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00147{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00147{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00147{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00147{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00147{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m74_c00147{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mc_c00147{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m47_c00147{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m22_c00147{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00147{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m36_c00147{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00147{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00147{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m54_c00147{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9_c00147{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00147{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m50_c00147{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00147{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00147{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m108_c00147{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma_c00147{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me8_c00147{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m8_c00147{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mad_c00147{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00147{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m40_c00147{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5_c00147{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00147{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mca_c00147{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.me5_c00147{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00147{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00147{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.me_c00147{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00147{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m146_c00147{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00147{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m86_c00147{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m136_c00147{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m58_c00147{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m19_c00147{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m16_c00147{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m32_c00147{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m71_c00147{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m30_c00147{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m129_c00147{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m7_c00147{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00147{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00147{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.meb_c00147{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00147{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m128_c00147{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00147{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m121_c00147{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00147{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00147{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m6_c00147{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m34_c00147{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m69_c00147{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m99_c00147{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m145_c00147{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00147{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m63_c00147{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00147{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m28_c00147{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00147{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00147{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00147{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m83_c00147{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00147{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m33_c00147{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00147{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00147{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m109_c00147{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00147{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00147{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00147{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00147{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m117_c00147{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.md0_c00147{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m60_c00147{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00147{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m56_c00147{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00147{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m20_c00147{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m53_c00147{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00147{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m66_c00147{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4_c00147{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00147{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00147{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m57_c00147{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00147{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00147{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me7_c00147{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.me6_c00147{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m132_c00147{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m110_c00147{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m27_c00147{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m95_c00147{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00147{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m116_c00147{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00147{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m18_c00147{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me9_c00147{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mea_c00147{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m67_c00147{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mef_c00147{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md_c00147{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m72_c00147{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00147{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00147{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m31_c00147{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m113_c00147{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m61_c00147{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m148_c00147{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00147{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00147{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m65_c00147{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00147{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md4_c00147{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m55_c00147{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m62_c00147{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m93_c00147{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00147{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00147{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m21_c00147{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00147{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m119_c00147{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m149_c00147{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00147{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00147{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00147{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb_c00147{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md5_c00147{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m79_c00147{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m42_c00147{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m14a_c00147{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00147{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m45_c00147{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m17_c00147{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00147{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m77_c00147{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00147{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m14_c00147{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00147{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m68_c00147{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00147{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m118_c00147{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m73_c00147{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00147{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m120_c00147{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.maf_c00147{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00147{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m131_c00147{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m46_c00147{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m115_c00147{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00147{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m15_c00147{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m43_c00147{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00147{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m94_c00147{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m91_c00147{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00147{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m29_c00147{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00147{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00147{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00147{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m49_c00147{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m64_c00147{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00147{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m52_c00147{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m78_c00147{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m44_c00147{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m26_c00147{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m144_c00147{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m84_c00147{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00147{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00147{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00147{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maa_c00147{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m98_c00147{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m112_c00147{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00147{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m13_c00147{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m41_c00147{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m96_c00147{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00147{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00147{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m135_c00147{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m23_c00147{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m141_c00147{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mae_c00147{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m14d_c00147{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m147_c00147{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m114_c00147{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mab_c00147{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00147{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00147{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m130_c00147{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m59_c00147{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mec_c00147{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mac_c00147{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m11_c00147{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m134_c00147{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me4_c00147{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00147{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mce_c00147{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m14c_c00147{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m127_c00147{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m87_c00147{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00147{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m90_c00147{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00147{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m88_c00147{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00147{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.med_c00147{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m25_c00147{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m142_c00147{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00147{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m97_c00147{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10_c00147{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m70_c00147{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m80_c00147{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00147{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m125_c00147{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m39_c00147{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m13a_c00147{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m85_c00147{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00147{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00147{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mee_c00147{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m122_c00147{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00147{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00147{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.me3_c00147{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00147{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m75_c00147{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00147{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00147{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00147{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00147{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.md6_c00147{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m92_c00147{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00147{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00147{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m138_c00147{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00147{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00147{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.md3_c00147{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m139_c00147{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00147{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00147{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m13d_c00147{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00147{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00147{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00147{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00147{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00147{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me0_c00147{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00147{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m101_c00147{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00147{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m123_c00147{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00147{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m38_c00147{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m106_c00147{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.md9_c00147{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m102_c00147{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00147{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m137_c00147{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m100_c00147{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00147{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mde_c00147{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m124_c00147{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00147{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m105_c00147{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m111_c00147{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m37_c00147{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00147{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m13f_c00147{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md2_c00147{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00147{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00147{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00147{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m51_c00147{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m103_c00147{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00147{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m104_c00147{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m35_c00147{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m2_c00147{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mff_c00147{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.me2_c00147{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.m81_c00147{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00147{transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00147{transform:matrix(0.425250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425250,0.000000,0.000000,0.250000,0,0);}
.md7_c00147{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m24_c00147{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{transform:matrix(0.505250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505250,0.000000,0.000000,0.250000,0,0);}
.md8_c00147{transform:matrix(0.522000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00147{transform:matrix(0.746750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.746750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.746750,0.000000,0.000000,0.250000,0,0);}
.m89_c00147{transform:matrix(22.056000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(22.056000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(22.056000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls0_c00147{letter-spacing:0.000000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{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__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00147{word-spacing:-11.666667px;}
.ws5_c00147{word-spacing:-9.736842px;}
.ws2_c00147{word-spacing:-7.156425px;}
.ws6_c00147{word-spacing:-6.248071px;}
.ws7_c00147{word-spacing:-4.722222px;}
.ws9_c00147{word-spacing:-1.617647px;}
.wsb_c00147{word-spacing:0.000000px;}
.ws0_c00147{word-spacing:3.636912px;}
.ws3_c00147{word-spacing:6.527778px;}
.ws8_c00147{word-spacing:9.453815px;}
.ws4_c00147{word-spacing:16.422007px;}
.ws1_c00147{word-spacing:17.187500px;}
.fc0_c00147{color:transparent;}
.fs1_c00147{font-size:30.000000px;}
.fs5_c00147{font-size:42.000000px;}
.fs7_c00147{font-size:48.000000px;}
.fs6_c00147{font-size:54.000000px;}
.fs3_c00147{font-size:60.000000px;}
.fs2_c00147{font-size:66.000000px;}
.fs4_c00147{font-size:72.000000px;}
.fs0_c00147{font-size:78.000000px;}
.y0_c00147{bottom:0.000000px;}
.y2_c00147{bottom:15.150000px;}
.y78_c00147{bottom:190.800000px;}
.y38_c00147{bottom:201.300000px;}
.y77_c00147{bottom:205.200000px;}
.y37_c00147{bottom:215.700000px;}
.y76_c00147{bottom:218.550000px;}
.y36_c00147{bottom:225.000000px;}
.y35_c00147{bottom:229.650000px;}
.y75_c00147{bottom:232.950000px;}
.y34_c00147{bottom:243.000000px;}
.y74_c00147{bottom:247.950000px;}
.y33_c00147{bottom:257.400000px;}
.y73_c00147{bottom:262.050000px;}
.y32_c00147{bottom:267.150000px;}
.y72_c00147{bottom:276.750000px;}
.y31_c00147{bottom:278.700000px;}
.y71_c00147{bottom:290.400000px;}
.y30_c00147{bottom:298.800000px;}
.y70_c00147{bottom:304.800000px;}
.y2f_c00147{bottom:313.200000px;}
.y6f_c00147{bottom:319.200000px;}
.y2e_c00147{bottom:326.850000px;}
.y6e_c00147{bottom:332.850000px;}
.y2d_c00147{bottom:340.800000px;}
.y6d_c00147{bottom:347.250000px;}
.y2c_c00147{bottom:354.450000px;}
.y6c_c00147{bottom:361.350000px;}
.y2b_c00147{bottom:368.550000px;}
.y6b_c00147{bottom:375.750000px;}
.y2a_c00147{bottom:382.200000px;}
.y6a_c00147{bottom:389.850000px;}
.y29_c00147{bottom:396.300000px;}
.y69_c00147{bottom:403.950000px;}
.y28_c00147{bottom:409.950000px;}
.y68_c00147{bottom:419.100000px;}
.y27_c00147{bottom:424.650000px;}
.y67_c00147{bottom:432.750000px;}
.y26_c00147{bottom:438.000000px;}
.y66_c00147{bottom:447.150000px;}
.y25_c00147{bottom:452.100000px;}
.y65_c00147{bottom:461.550000px;}
.y24_c00147{bottom:466.200000px;}
.y64_c00147{bottom:475.650000px;}
.y23_c00147{bottom:479.850000px;}
.y63_c00147{bottom:489.750000px;}
.y22_c00147{bottom:500.700000px;}
.y62_c00147{bottom:504.450000px;}
.y61_c00147{bottom:518.100000px;}
.y21_c00147{bottom:522.300000px;}
.y60_c00147{bottom:532.500000px;}
.y20_c00147{bottom:543.900000px;}
.y5f_c00147{bottom:546.900000px;}
.y5e_c00147{bottom:561.000000px;}
.y1f_c00147{bottom:561.600000px;}
.y5d_c00147{bottom:575.700000px;}
.y5c_c00147{bottom:589.350000px;}
.y1e_c00147{bottom:590.700000px;}
.y5b_c00147{bottom:604.050000px;}
.y5a_c00147{bottom:618.150000px;}
.y1d_c00147{bottom:625.650000px;}
.y59_c00147{bottom:632.850000px;}
.y58_c00147{bottom:646.350000px;}
.y1c_c00147{bottom:647.550000px;}
.y57_c00147{bottom:660.750000px;}
.y1b_c00147{bottom:665.250000px;}
.y56_c00147{bottom:675.150000px;}
.y1a_c00147{bottom:687.000000px;}
.y55_c00147{bottom:689.250000px;}
.y54_c00147{bottom:703.350000px;}
.y19_c00147{bottom:704.250000px;}
.y53_c00147{bottom:717.750000px;}
.y18_c00147{bottom:721.950000px;}
.y52_c00147{bottom:731.850000px;}
.y17_c00147{bottom:739.650000px;}
.y51_c00147{bottom:745.950000px;}
.y16_c00147{bottom:757.350000px;}
.y50_c00147{bottom:773.700000px;}
.y4f_c00147{bottom:774.750000px;}
.y15_c00147{bottom:775.050000px;}
.y4e_c00147{bottom:789.150000px;}
.y14_c00147{bottom:795.150000px;}
.y4d_c00147{bottom:802.800000px;}
.y13_c00147{bottom:809.250000px;}
.y4c_c00147{bottom:817.500000px;}
.y12_c00147{bottom:823.650000px;}
.y4b_c00147{bottom:831.900000px;}
.y11_c00147{bottom:843.900000px;}
.y4a_c00147{bottom:845.400000px;}
.y49_c00147{bottom:859.500000px;}
.y10_c00147{bottom:861.150000px;}
.y48_c00147{bottom:873.900000px;}
.yf_c00147{bottom:878.400000px;}
.y47_c00147{bottom:888.300000px;}
.ye_c00147{bottom:900.750000px;}
.y46_c00147{bottom:902.400000px;}
.y45_c00147{bottom:917.550000px;}
.yd_c00147{bottom:918.300000px;}
.y44_c00147{bottom:930.900000px;}
.yc_c00147{bottom:935.550000px;}
.y43_c00147{bottom:945.300000px;}
.yb_c00147{bottom:953.250000px;}
.y42_c00147{bottom:959.400000px;}
.y41_c00147{bottom:973.350000px;}
.ya_c00147{bottom:975.150000px;}
.y40_c00147{bottom:987.750000px;}
.y9_c00147{bottom:992.850000px;}
.y3f_c00147{bottom:1001.850000px;}
.y3e_c00147{bottom:1016.550000px;}
.y8_c00147{bottom:1018.800000px;}
.y3d_c00147{bottom:1030.650000px;}
.y7_c00147{bottom:1038.900000px;}
.y6_c00147{bottom:1058.400000px;}
.y5_c00147{bottom:1080.300000px;}
.y3c_c00147{bottom:1082.100000px;}
.y3b_c00147{bottom:1090.800000px;}
.y4_c00147{bottom:1098.000000px;}
.y3a_c00147{bottom:1106.700000px;}
.y39_c00147{bottom:1116.750000px;}
.y3_c00147{bottom:1119.900000px;}
.y1_c00147{bottom:1145.550000px;}
.h3_c00147{height:30.000000px;}
.h7_c00147{height:42.000000px;}
.h9_c00147{height:48.000000px;}
.h8_c00147{height:54.000000px;}
.h5_c00147{height:60.000000px;}
.h4_c00147{height:66.000000px;}
.h6_c00147{height:72.000000px;}
.h2_c00147{height:78.000000px;}
.h1_c00147{height:1272.000000px;}
.h0_c00147{height:1272.239960px;}
.w1_c00147{width:953.250000px;}
.w0_c00147{width:953.280030px;}
.x0_c00147{left:0.000000px;}
.x3_c00147{left:73.800000px;}
.x1_c00147{left:167.700000px;}
.x1e_c00147{left:174.300000px;}
.x4a_c00147{left:175.650000px;}
.x57_c00147{left:177.150000px;}
.x6d_c00147{left:178.200000px;}
.x73_c00147{left:179.700000px;}
.x75_c00147{left:180.750000px;}
.x7b_c00147{left:182.850000px;}
.x88_c00147{left:183.900000px;}
.x8e_c00147{left:185.550000px;}
.x97_c00147{left:186.600000px;}
.xe_c00147{left:189.300000px;}
.x1b_c00147{left:190.500000px;}
.x22_c00147{left:191.550000px;}
.x36_c00147{left:193.350000px;}
.x5a_c00147{left:195.000000px;}
.x60_c00147{left:196.650000px;}
.x7c_c00147{left:198.000000px;}
.x78_c00147{left:199.350000px;}
.x4_c00147{left:204.900000px;}
.x8_c00147{left:205.950000px;}
.x10_c00147{left:207.000000px;}
.x14_c00147{left:208.800000px;}
.x23_c00147{left:210.900000px;}
.x29_c00147{left:213.000000px;}
.x1f_c00147{left:216.450000px;}
.xf_c00147{left:217.800000px;}
.xaf_c00147{left:219.150000px;}
.x69_c00147{left:221.400000px;}
.x37_c00147{left:222.900000px;}
.x7d_c00147{left:224.250000px;}
.x32_c00147{left:228.450000px;}
.x98_c00147{left:230.100000px;}
.x47_c00147{left:233.700000px;}
.x8b_c00147{left:234.750000px;}
.x6e_c00147{left:236.550000px;}
.x4b_c00147{left:237.600000px;}
.x85_c00147{left:241.050000px;}
.x1c_c00147{left:243.000000px;}
.x5d_c00147{left:245.100000px;}
.x20_c00147{left:250.650000px;}
.x80_c00147{left:251.700000px;}
.x15_c00147{left:253.800000px;}
.x74_c00147{left:257.100000px;}
.x38_c00147{left:258.150000px;}
.x5_c00147{left:259.650000px;}
.x72_c00147{left:261.000000px;}
.x9d_c00147{left:262.050000px;}
.x2a_c00147{left:263.100000px;}
.x52_c00147{left:265.200000px;}
.xa0_c00147{left:268.200000px;}
.x6a_c00147{left:269.250000px;}
.x7a_c00147{left:271.800000px;}
.x48_c00147{left:273.300000px;}
.x39_c00147{left:275.400000px;}
.x42_c00147{left:276.900000px;}
.x99_c00147{left:278.400000px;}
.x11_c00147{left:279.750000px;}
.x1d_c00147{left:281.100000px;}
.x76_c00147{left:283.650000px;}
.xa1_c00147{left:285.150000px;}
.x49_c00147{left:290.250000px;}
.x2b_c00147{left:292.200000px;}
.x9e_c00147{left:293.700000px;}
.x6f_c00147{left:295.200000px;}
.x6_c00147{left:297.450000px;}
.xa8_c00147{left:299.400000px;}
.x24_c00147{left:301.200000px;}
.x5e_c00147{left:302.400000px;}
.x4c_c00147{left:303.900000px;}
.x94_c00147{left:304.950000px;}
.x9_c00147{left:306.150000px;}
.x3a_c00147{left:309.300000px;}
.x16_c00147{left:312.450000px;}
.x7_c00147{left:314.700000px;}
.x2c_c00147{left:317.100000px;}
.x58_c00147{left:318.900000px;}
.xa6_c00147{left:320.100000px;}
.x92_c00147{left:321.300000px;}
.x6b_c00147{left:324.300000px;}
.x17_c00147{left:326.550000px;}
.x33_c00147{left:328.200000px;}
.x3b_c00147{left:329.400000px;}
.x43_c00147{left:331.200000px;}
.x93_c00147{left:332.850000px;}
.x9a_c00147{left:337.350000px;}
.x21_c00147{left:339.150000px;}
.x70_c00147{left:340.200000px;}
.x4d_c00147{left:341.700000px;}
.x61_c00147{left:343.500000px;}
.x8f_c00147{left:345.750000px;}
.x3c_c00147{left:347.100000px;}
.xa2_c00147{left:348.900000px;}
.x4e_c00147{left:350.400000px;}
.xa_c00147{left:351.450000px;}
.x84_c00147{left:354.450000px;}
.x65_c00147{left:356.100000px;}
.x6c_c00147{left:359.850000px;}
.x95_c00147{left:362.250000px;}
.x3d_c00147{left:363.300000px;}
.x12_c00147{left:365.850000px;}
.xb_c00147{left:367.950000px;}
.x62_c00147{left:370.200000px;}
.x2d_c00147{left:371.850000px;}
.x25_c00147{left:373.200000px;}
.x5b_c00147{left:374.550000px;}
.x53_c00147{left:376.050000px;}
.x66_c00147{left:381.600000px;}
.x26_c00147{left:382.950000px;}
.x7e_c00147{left:384.300000px;}
.xa7_c00147{left:387.600000px;}
.x96_c00147{left:388.950000px;}
.x3e_c00147{left:390.000000px;}
.x2e_c00147{left:391.350000px;}
.x63_c00147{left:392.550000px;}
.x86_c00147{left:394.050000px;}
.x5c_c00147{left:395.850000px;}
.xac_c00147{left:397.200000px;}
.x67_c00147{left:398.850000px;}
.xaa_c00147{left:400.050000px;}
.x81_c00147{left:403.650000px;}
.x3f_c00147{left:405.150000px;}
.x9f_c00147{left:406.650000px;}
.x2_c00147{left:408.150000px;}
.x44_c00147{left:411.150000px;}
.x34_c00147{left:412.800000px;}
.x8c_c00147{left:414.900000px;}
.x9b_c00147{left:416.550000px;}
.x82_c00147{left:418.050000px;}
.x89_c00147{left:421.200000px;}
.x40_c00147{left:424.950000px;}
.x2f_c00147{left:426.600000px;}
.xc_c00147{left:428.400000px;}
.x4f_c00147{left:430.050000px;}
.x54_c00147{left:431.850000px;}
.x64_c00147{left:433.650000px;}
.x30_c00147{left:435.600000px;}
.x8a_c00147{left:437.400000px;}
.x45_c00147{left:439.200000px;}
.xa3_c00147{left:441.300000px;}
.xad_c00147{left:442.650000px;}
.x68_c00147{left:444.150000px;}
.x18_c00147{left:445.350000px;}
.x8d_c00147{left:447.600000px;}
.x9c_c00147{left:450.000000px;}
.x79_c00147{left:451.350000px;}
.x46_c00147{left:453.600000px;}
.xb0_c00147{left:457.050000px;}
.x19_c00147{left:458.700000px;}
.x50_c00147{left:460.350000px;}
.xd_c00147{left:461.850000px;}
.x90_c00147{left:463.500000px;}
.x77_c00147{left:464.700000px;}
.x27_c00147{left:466.500000px;}
.xab_c00147{left:468.450000px;}
.x55_c00147{left:469.650000px;}
.xa9_c00147{left:470.850000px;}
.xa5_c00147{left:472.800000px;}
.x35_c00147{left:474.000000px;}
.xa4_c00147{left:477.300000px;}
.x1a_c00147{left:478.500000px;}
.x59_c00147{left:480.150000px;}
.x41_c00147{left:481.500000px;}
.x28_c00147{left:483.000000px;}
.x91_c00147{left:487.650000px;}
.x31_c00147{left:488.850000px;}
.x7f_c00147{left:491.700000px;}
.x51_c00147{left:494.250000px;}
.xae_c00147{left:495.600000px;}
.x56_c00147{left:496.650000px;}
.x5f_c00147{left:499.350000px;}
.x83_c00147{left:500.850000px;}
.x87_c00147{left:504.300000px;}
.x71_c00147{left:505.350000px;}
.x13_c00147{left:509.850000px;}
.xb1_c00147{left:524.550000px;}
.xcc_c00147{left:526.800000px;}
.xff_c00147{left:527.850000px;}
.x10a_c00147{left:528.900000px;}
.x11e_c00147{left:529.950000px;}
.x12d_c00147{left:531.000000px;}
.x145_c00147{left:532.500000px;}
.x152_c00147{left:533.550000px;}
.xc4_c00147{left:540.300000px;}
.xe3_c00147{left:541.800000px;}
.xbf_c00147{left:543.450000px;}
.x124_c00147{left:545.400000px;}
.x12f_c00147{left:547.500000px;}
.xfa_c00147{left:550.800000px;}
.xe0_c00147{left:552.450000px;}
.x114_c00147{left:554.100000px;}
.xd9_c00147{left:556.050000px;}
.x118_c00147{left:557.250000px;}
.x123_c00147{left:558.750000px;}
.xda_c00147{left:563.550000px;}
.x10c_c00147{left:564.750000px;}
.xe4_c00147{left:566.700000px;}
.xcd_c00147{left:567.900000px;}
.xfb_c00147{left:569.550000px;}
.xd4_c00147{left:571.500000px;}
.x142_c00147{left:573.150000px;}
.x10d_c00147{left:574.500000px;}
.xbb_c00147{left:577.050000px;}
.x153_c00147{left:578.250000px;}
.x125_c00147{left:579.300000px;}
.x100_c00147{left:580.500000px;}
.x137_c00147{left:582.150000px;}
.xeb_c00147{left:583.500000px;}
.xc5_c00147{left:585.600000px;}
.x163_c00147{left:587.400000px;}
.x15c_c00147{left:588.600000px;}
.xdb_c00147{left:589.800000px;}
.xef_c00147{left:591.750000px;}
.x130_c00147{left:594.000000px;}
.x133_c00147{left:597.300000px;}
.xb2_c00147{left:599.100000px;}
.xf3_c00147{left:602.550000px;}
.xb9_c00147{left:605.550000px;}
.x15d_c00147{left:607.650000px;}
.xc6_c00147{left:609.000000px;}
.x157_c00147{left:610.950000px;}
.xd5_c00147{left:613.200000px;}
.xec_c00147{left:614.400000px;}
.xfc_c00147{left:616.050000px;}
.xf4_c00147{left:617.250000px;}
.x106_c00147{left:619.500000px;}
.x13b_c00147{left:620.700000px;}
.x164_c00147{left:622.200000px;}
.x128_c00147{left:624.150000px;}
.x13f_c00147{left:626.250000px;}
.x101_c00147{left:627.300000px;}
.xe5_c00147{left:631.200000px;}
.xd6_c00147{left:635.550000px;}
.x14e_c00147{left:636.750000px;}
.xfd_c00147{left:639.450000px;}
.x11f_c00147{left:641.250000px;}
.xc0_c00147{left:643.500000px;}
.x119_c00147{left:644.700000px;}
.x11b_c00147{left:646.350000px;}
.x102_c00147{left:647.850000px;}
.xdc_c00147{left:649.650000px;}
.x143_c00147{left:650.850000px;}
.x12e_c00147{left:653.100000px;}
.x10e_c00147{left:655.800000px;}
.x148_c00147{left:657.600000px;}
.x14c_c00147{left:659.850000px;}
.xf5_c00147{left:660.900000px;}
.xce_c00147{left:664.350000px;}
.xb3_c00147{left:666.000000px;}
.x120_c00147{left:667.500000px;}
.xc7_c00147{left:669.450000px;}
.x10f_c00147{left:671.250000px;}
.x149_c00147{left:673.050000px;}
.xbc_c00147{left:674.550000px;}
.x115_c00147{left:675.750000px;}
.xf0_c00147{left:677.100000px;}
.x158_c00147{left:679.650000px;}
.xe1_c00147{left:681.300000px;}
.x126_c00147{left:682.950000px;}
.xe6_c00147{left:684.150000px;}
.x15e_c00147{left:687.300000px;}
.xf6_c00147{left:688.950000px;}
.x121_c00147{left:691.200000px;}
.x103_c00147{left:692.550000px;}
.xe7_c00147{left:694.950000px;}
.x110_c00147{left:696.900000px;}
.x107_c00147{left:698.700000px;}
.xba_c00147{left:700.650000px;}
.x11c_c00147{left:703.200000px;}
.x146_c00147{left:705.450000px;}
.xbd_c00147{left:707.250000px;}
.x129_c00147{left:709.050000px;}
.x14d_c00147{left:710.250000px;}
.x11a_c00147{left:711.600000px;}
.xd7_c00147{left:712.650000px;}
.x138_c00147{left:713.850000px;}
.x108_c00147{left:715.650000px;}
.x150_c00147{left:716.850000px;}
.x161_c00147{left:718.050000px;}
.x11d_c00147{left:719.700000px;}
.x135_c00147{left:721.200000px;}
.xf7_c00147{left:722.400000px;}
.xe2_c00147{left:724.500000px;}
.xb4_c00147{left:726.450000px;}
.x154_c00147{left:728.100000px;}
.x10b_c00147{left:729.300000px;}
.x13c_c00147{left:731.850000px;}
.xdd_c00147{left:734.250000px;}
.xb5_c00147{left:738.000000px;}
.xbe_c00147{left:739.350000px;}
.xed_c00147{left:740.700000px;}
.xcf_c00147{left:742.500000px;}
.xfe_c00147{left:744.300000px;}
.xf1_c00147{left:747.000000px;}
.xc8_c00147{left:748.650000px;}
.x155_c00147{left:751.050000px;}
.x122_c00147{left:752.400000px;}
.xf8_c00147{left:753.750000px;}
.xde_c00147{left:755.850000px;}
.x15f_c00147{left:757.050000px;}
.xc9_c00147{left:758.700000px;}
.xe8_c00147{left:762.150000px;}
.xd0_c00147{left:764.850000px;}
.x12a_c00147{left:766.650000px;}
.xc1_c00147{left:768.000000px;}
.x15a_c00147{left:769.350000px;}
.xf9_c00147{left:770.700000px;}
.x140_c00147{left:772.800000px;}
.xb8_c00147{left:775.500000px;}
.x116_c00147{left:776.850000px;}
.x139_c00147{left:778.950000px;}
.x104_c00147{left:781.050000px;}
.x15b_c00147{left:782.700000px;}
.x131_c00147{left:788.100000px;}
.x14a_c00147{left:789.300000px;}
.xc2_c00147{left:791.100000px;}
.xe9_c00147{left:793.050000px;}
.x136_c00147{left:794.250000px;}
.xb6_c00147{left:795.900000px;}
.x160_c00147{left:798.450000px;}
.xd1_c00147{left:800.100000px;}
.x165_c00147{left:802.050000px;}
.xf2_c00147{left:803.100000px;}
.x111_c00147{left:805.350000px;}
.x144_c00147{left:808.650000px;}
.xdf_c00147{left:810.150000px;}
.xca_c00147{left:813.450000px;}
.xc3_c00147{left:815.250000px;}
.x112_c00147{left:816.900000px;}
.x12b_c00147{left:818.550000px;}
.xd8_c00147{left:819.600000px;}
.x134_c00147{left:821.250000px;}
.xd2_c00147{left:822.450000px;}
.x132_c00147{left:824.100000px;}
.x162_c00147{left:826.950000px;}
.x13d_c00147{left:828.300000px;}
.xb7_c00147{left:829.350000px;}
.x147_c00147{left:830.400000px;}
.x159_c00147{left:831.900000px;}
.x141_c00147{left:833.850000px;}
.xcb_c00147{left:836.100000px;}
.x12c_c00147{left:838.050000px;}
.x167_c00147{left:839.100000px;}
.x113_c00147{left:842.100000px;}
.xea_c00147{left:844.500000px;}
.x13e_c00147{left:845.550000px;}
.xee_c00147{left:846.900000px;}
.x127_c00147{left:847.950000px;}
.x14b_c00147{left:850.950000px;}
.xd3_c00147{left:852.300000px;}
.x166_c00147{left:854.250000px;}
.x151_c00147{left:855.750000px;}
.x13a_c00147{left:857.850000px;}
.x14f_c00147{left:859.800000px;}
.x117_c00147{left:861.450000px;}
.x105_c00147{left:862.800000px;}
.x109_c00147{left:864.000000px;}
.x156_c00147{left:866.250000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.wsa_c00147{word-spacing:-10.370370pt;}
.ws5_c00147{word-spacing:-8.654971pt;}
.ws2_c00147{word-spacing:-6.361266pt;}
.ws6_c00147{word-spacing:-5.553840pt;}
.ws7_c00147{word-spacing:-4.197531pt;}
.ws9_c00147{word-spacing:-1.437908pt;}
.wsb_c00147{word-spacing:0.000000pt;}
.ws0_c00147{word-spacing:3.232811pt;}
.ws3_c00147{word-spacing:5.802469pt;}
.ws8_c00147{word-spacing:8.403391pt;}
.ws4_c00147{word-spacing:14.597340pt;}
.ws1_c00147{word-spacing:15.277778pt;}
.fs1_c00147{font-size:26.666667pt;}
.fs5_c00147{font-size:37.333333pt;}
.fs7_c00147{font-size:42.666667pt;}
.fs6_c00147{font-size:48.000000pt;}
.fs3_c00147{font-size:53.333333pt;}
.fs2_c00147{font-size:58.666667pt;}
.fs4_c00147{font-size:64.000000pt;}
.fs0_c00147{font-size:69.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.y2_c00147{bottom:13.466667pt;}
.y78_c00147{bottom:169.600000pt;}
.y38_c00147{bottom:178.933333pt;}
.y77_c00147{bottom:182.400000pt;}
.y37_c00147{bottom:191.733333pt;}
.y76_c00147{bottom:194.266667pt;}
.y36_c00147{bottom:200.000000pt;}
.y35_c00147{bottom:204.133333pt;}
.y75_c00147{bottom:207.066667pt;}
.y34_c00147{bottom:216.000000pt;}
.y74_c00147{bottom:220.400000pt;}
.y33_c00147{bottom:228.800000pt;}
.y73_c00147{bottom:232.933333pt;}
.y32_c00147{bottom:237.466667pt;}
.y72_c00147{bottom:246.000000pt;}
.y31_c00147{bottom:247.733333pt;}
.y71_c00147{bottom:258.133333pt;}
.y30_c00147{bottom:265.600000pt;}
.y70_c00147{bottom:270.933333pt;}
.y2f_c00147{bottom:278.400000pt;}
.y6f_c00147{bottom:283.733333pt;}
.y2e_c00147{bottom:290.533333pt;}
.y6e_c00147{bottom:295.866667pt;}
.y2d_c00147{bottom:302.933333pt;}
.y6d_c00147{bottom:308.666667pt;}
.y2c_c00147{bottom:315.066667pt;}
.y6c_c00147{bottom:321.200000pt;}
.y2b_c00147{bottom:327.600000pt;}
.y6b_c00147{bottom:334.000000pt;}
.y2a_c00147{bottom:339.733333pt;}
.y6a_c00147{bottom:346.533333pt;}
.y29_c00147{bottom:352.266667pt;}
.y69_c00147{bottom:359.066667pt;}
.y28_c00147{bottom:364.400000pt;}
.y68_c00147{bottom:372.533333pt;}
.y27_c00147{bottom:377.466667pt;}
.y67_c00147{bottom:384.666667pt;}
.y26_c00147{bottom:389.333333pt;}
.y66_c00147{bottom:397.466667pt;}
.y25_c00147{bottom:401.866667pt;}
.y65_c00147{bottom:410.266667pt;}
.y24_c00147{bottom:414.400000pt;}
.y64_c00147{bottom:422.800000pt;}
.y23_c00147{bottom:426.533333pt;}
.y63_c00147{bottom:435.333333pt;}
.y22_c00147{bottom:445.066667pt;}
.y62_c00147{bottom:448.400000pt;}
.y61_c00147{bottom:460.533333pt;}
.y21_c00147{bottom:464.266667pt;}
.y60_c00147{bottom:473.333333pt;}
.y20_c00147{bottom:483.466667pt;}
.y5f_c00147{bottom:486.133333pt;}
.y5e_c00147{bottom:498.666667pt;}
.y1f_c00147{bottom:499.200000pt;}
.y5d_c00147{bottom:511.733333pt;}
.y5c_c00147{bottom:523.866667pt;}
.y1e_c00147{bottom:525.066667pt;}
.y5b_c00147{bottom:536.933333pt;}
.y5a_c00147{bottom:549.466667pt;}
.y1d_c00147{bottom:556.133333pt;}
.y59_c00147{bottom:562.533333pt;}
.y58_c00147{bottom:574.533333pt;}
.y1c_c00147{bottom:575.600000pt;}
.y57_c00147{bottom:587.333333pt;}
.y1b_c00147{bottom:591.333333pt;}
.y56_c00147{bottom:600.133333pt;}
.y1a_c00147{bottom:610.666667pt;}
.y55_c00147{bottom:612.666667pt;}
.y54_c00147{bottom:625.200000pt;}
.y19_c00147{bottom:626.000000pt;}
.y53_c00147{bottom:638.000000pt;}
.y18_c00147{bottom:641.733333pt;}
.y52_c00147{bottom:650.533333pt;}
.y17_c00147{bottom:657.466667pt;}
.y51_c00147{bottom:663.066667pt;}
.y16_c00147{bottom:673.200000pt;}
.y50_c00147{bottom:687.733333pt;}
.y4f_c00147{bottom:688.666667pt;}
.y15_c00147{bottom:688.933333pt;}
.y4e_c00147{bottom:701.466667pt;}
.y14_c00147{bottom:706.800000pt;}
.y4d_c00147{bottom:713.600000pt;}
.y13_c00147{bottom:719.333333pt;}
.y4c_c00147{bottom:726.666667pt;}
.y12_c00147{bottom:732.133333pt;}
.y4b_c00147{bottom:739.466667pt;}
.y11_c00147{bottom:750.133333pt;}
.y4a_c00147{bottom:751.466667pt;}
.y49_c00147{bottom:764.000000pt;}
.y10_c00147{bottom:765.466667pt;}
.y48_c00147{bottom:776.800000pt;}
.yf_c00147{bottom:780.800000pt;}
.y47_c00147{bottom:789.600000pt;}
.ye_c00147{bottom:800.666667pt;}
.y46_c00147{bottom:802.133333pt;}
.y45_c00147{bottom:815.600000pt;}
.yd_c00147{bottom:816.266667pt;}
.y44_c00147{bottom:827.466667pt;}
.yc_c00147{bottom:831.600000pt;}
.y43_c00147{bottom:840.266667pt;}
.yb_c00147{bottom:847.333333pt;}
.y42_c00147{bottom:852.800000pt;}
.y41_c00147{bottom:865.200000pt;}
.ya_c00147{bottom:866.800000pt;}
.y40_c00147{bottom:878.000000pt;}
.y9_c00147{bottom:882.533333pt;}
.y3f_c00147{bottom:890.533333pt;}
.y3e_c00147{bottom:903.600000pt;}
.y8_c00147{bottom:905.600000pt;}
.y3d_c00147{bottom:916.133333pt;}
.y7_c00147{bottom:923.466667pt;}
.y6_c00147{bottom:940.800000pt;}
.y5_c00147{bottom:960.266667pt;}
.y3c_c00147{bottom:961.866667pt;}
.y3b_c00147{bottom:969.600000pt;}
.y4_c00147{bottom:976.000000pt;}
.y3a_c00147{bottom:983.733333pt;}
.y39_c00147{bottom:992.666667pt;}
.y3_c00147{bottom:995.466667pt;}
.y1_c00147{bottom:1018.266667pt;}
.h3_c00147{height:26.666667pt;}
.h7_c00147{height:37.333333pt;}
.h9_c00147{height:42.666667pt;}
.h8_c00147{height:48.000000pt;}
.h5_c00147{height:53.333333pt;}
.h4_c00147{height:58.666667pt;}
.h6_c00147{height:64.000000pt;}
.h2_c00147{height:69.333333pt;}
.h1_c00147{height:1130.666667pt;}
.h0_c00147{height:1130.879964pt;}
.w1_c00147{width:847.333333pt;}
.w0_c00147{width:847.360027pt;}
.x0_c00147{left:0.000000pt;}
.x3_c00147{left:65.600000pt;}
.x1_c00147{left:149.066667pt;}
.x1e_c00147{left:154.933333pt;}
.x4a_c00147{left:156.133333pt;}
.x57_c00147{left:157.466667pt;}
.x6d_c00147{left:158.400000pt;}
.x73_c00147{left:159.733333pt;}
.x75_c00147{left:160.666667pt;}
.x7b_c00147{left:162.533333pt;}
.x88_c00147{left:163.466667pt;}
.x8e_c00147{left:164.933333pt;}
.x97_c00147{left:165.866667pt;}
.xe_c00147{left:168.266667pt;}
.x1b_c00147{left:169.333333pt;}
.x22_c00147{left:170.266667pt;}
.x36_c00147{left:171.866667pt;}
.x5a_c00147{left:173.333333pt;}
.x60_c00147{left:174.800000pt;}
.x7c_c00147{left:176.000000pt;}
.x78_c00147{left:177.200000pt;}
.x4_c00147{left:182.133333pt;}
.x8_c00147{left:183.066667pt;}
.x10_c00147{left:184.000000pt;}
.x14_c00147{left:185.600000pt;}
.x23_c00147{left:187.466667pt;}
.x29_c00147{left:189.333333pt;}
.x1f_c00147{left:192.400000pt;}
.xf_c00147{left:193.600000pt;}
.xaf_c00147{left:194.800000pt;}
.x69_c00147{left:196.800000pt;}
.x37_c00147{left:198.133333pt;}
.x7d_c00147{left:199.333333pt;}
.x32_c00147{left:203.066667pt;}
.x98_c00147{left:204.533333pt;}
.x47_c00147{left:207.733333pt;}
.x8b_c00147{left:208.666667pt;}
.x6e_c00147{left:210.266667pt;}
.x4b_c00147{left:211.200000pt;}
.x85_c00147{left:214.266667pt;}
.x1c_c00147{left:216.000000pt;}
.x5d_c00147{left:217.866667pt;}
.x20_c00147{left:222.800000pt;}
.x80_c00147{left:223.733333pt;}
.x15_c00147{left:225.600000pt;}
.x74_c00147{left:228.533333pt;}
.x38_c00147{left:229.466667pt;}
.x5_c00147{left:230.800000pt;}
.x72_c00147{left:232.000000pt;}
.x9d_c00147{left:232.933333pt;}
.x2a_c00147{left:233.866667pt;}
.x52_c00147{left:235.733333pt;}
.xa0_c00147{left:238.400000pt;}
.x6a_c00147{left:239.333333pt;}
.x7a_c00147{left:241.600000pt;}
.x48_c00147{left:242.933333pt;}
.x39_c00147{left:244.800000pt;}
.x42_c00147{left:246.133333pt;}
.x99_c00147{left:247.466667pt;}
.x11_c00147{left:248.666667pt;}
.x1d_c00147{left:249.866667pt;}
.x76_c00147{left:252.133333pt;}
.xa1_c00147{left:253.466667pt;}
.x49_c00147{left:258.000000pt;}
.x2b_c00147{left:259.733333pt;}
.x9e_c00147{left:261.066667pt;}
.x6f_c00147{left:262.400000pt;}
.x6_c00147{left:264.400000pt;}
.xa8_c00147{left:266.133333pt;}
.x24_c00147{left:267.733333pt;}
.x5e_c00147{left:268.800000pt;}
.x4c_c00147{left:270.133333pt;}
.x94_c00147{left:271.066667pt;}
.x9_c00147{left:272.133333pt;}
.x3a_c00147{left:274.933333pt;}
.x16_c00147{left:277.733333pt;}
.x7_c00147{left:279.733333pt;}
.x2c_c00147{left:281.866667pt;}
.x58_c00147{left:283.466667pt;}
.xa6_c00147{left:284.533333pt;}
.x92_c00147{left:285.600000pt;}
.x6b_c00147{left:288.266667pt;}
.x17_c00147{left:290.266667pt;}
.x33_c00147{left:291.733333pt;}
.x3b_c00147{left:292.800000pt;}
.x43_c00147{left:294.400000pt;}
.x93_c00147{left:295.866667pt;}
.x9a_c00147{left:299.866667pt;}
.x21_c00147{left:301.466667pt;}
.x70_c00147{left:302.400000pt;}
.x4d_c00147{left:303.733333pt;}
.x61_c00147{left:305.333333pt;}
.x8f_c00147{left:307.333333pt;}
.x3c_c00147{left:308.533333pt;}
.xa2_c00147{left:310.133333pt;}
.x4e_c00147{left:311.466667pt;}
.xa_c00147{left:312.400000pt;}
.x84_c00147{left:315.066667pt;}
.x65_c00147{left:316.533333pt;}
.x6c_c00147{left:319.866667pt;}
.x95_c00147{left:322.000000pt;}
.x3d_c00147{left:322.933333pt;}
.x12_c00147{left:325.200000pt;}
.xb_c00147{left:327.066667pt;}
.x62_c00147{left:329.066667pt;}
.x2d_c00147{left:330.533333pt;}
.x25_c00147{left:331.733333pt;}
.x5b_c00147{left:332.933333pt;}
.x53_c00147{left:334.266667pt;}
.x66_c00147{left:339.200000pt;}
.x26_c00147{left:340.400000pt;}
.x7e_c00147{left:341.600000pt;}
.xa7_c00147{left:344.533333pt;}
.x96_c00147{left:345.733333pt;}
.x3e_c00147{left:346.666667pt;}
.x2e_c00147{left:347.866667pt;}
.x63_c00147{left:348.933333pt;}
.x86_c00147{left:350.266667pt;}
.x5c_c00147{left:351.866667pt;}
.xac_c00147{left:353.066667pt;}
.x67_c00147{left:354.533333pt;}
.xaa_c00147{left:355.600000pt;}
.x81_c00147{left:358.800000pt;}
.x3f_c00147{left:360.133333pt;}
.x9f_c00147{left:361.466667pt;}
.x2_c00147{left:362.800000pt;}
.x44_c00147{left:365.466667pt;}
.x34_c00147{left:366.933333pt;}
.x8c_c00147{left:368.800000pt;}
.x9b_c00147{left:370.266667pt;}
.x82_c00147{left:371.600000pt;}
.x89_c00147{left:374.400000pt;}
.x40_c00147{left:377.733333pt;}
.x2f_c00147{left:379.200000pt;}
.xc_c00147{left:380.800000pt;}
.x4f_c00147{left:382.266667pt;}
.x54_c00147{left:383.866667pt;}
.x64_c00147{left:385.466667pt;}
.x30_c00147{left:387.200000pt;}
.x8a_c00147{left:388.800000pt;}
.x45_c00147{left:390.400000pt;}
.xa3_c00147{left:392.266667pt;}
.xad_c00147{left:393.466667pt;}
.x68_c00147{left:394.800000pt;}
.x18_c00147{left:395.866667pt;}
.x8d_c00147{left:397.866667pt;}
.x9c_c00147{left:400.000000pt;}
.x79_c00147{left:401.200000pt;}
.x46_c00147{left:403.200000pt;}
.xb0_c00147{left:406.266667pt;}
.x19_c00147{left:407.733333pt;}
.x50_c00147{left:409.200000pt;}
.xd_c00147{left:410.533333pt;}
.x90_c00147{left:412.000000pt;}
.x77_c00147{left:413.066667pt;}
.x27_c00147{left:414.666667pt;}
.xab_c00147{left:416.400000pt;}
.x55_c00147{left:417.466667pt;}
.xa9_c00147{left:418.533333pt;}
.xa5_c00147{left:420.266667pt;}
.x35_c00147{left:421.333333pt;}
.xa4_c00147{left:424.266667pt;}
.x1a_c00147{left:425.333333pt;}
.x59_c00147{left:426.800000pt;}
.x41_c00147{left:428.000000pt;}
.x28_c00147{left:429.333333pt;}
.x91_c00147{left:433.466667pt;}
.x31_c00147{left:434.533333pt;}
.x7f_c00147{left:437.066667pt;}
.x51_c00147{left:439.333333pt;}
.xae_c00147{left:440.533333pt;}
.x56_c00147{left:441.466667pt;}
.x5f_c00147{left:443.866667pt;}
.x83_c00147{left:445.200000pt;}
.x87_c00147{left:448.266667pt;}
.x71_c00147{left:449.200000pt;}
.x13_c00147{left:453.200000pt;}
.xb1_c00147{left:466.266667pt;}
.xcc_c00147{left:468.266667pt;}
.xff_c00147{left:469.200000pt;}
.x10a_c00147{left:470.133333pt;}
.x11e_c00147{left:471.066667pt;}
.x12d_c00147{left:472.000000pt;}
.x145_c00147{left:473.333333pt;}
.x152_c00147{left:474.266667pt;}
.xc4_c00147{left:480.266667pt;}
.xe3_c00147{left:481.600000pt;}
.xbf_c00147{left:483.066667pt;}
.x124_c00147{left:484.800000pt;}
.x12f_c00147{left:486.666667pt;}
.xfa_c00147{left:489.600000pt;}
.xe0_c00147{left:491.066667pt;}
.x114_c00147{left:492.533333pt;}
.xd9_c00147{left:494.266667pt;}
.x118_c00147{left:495.333333pt;}
.x123_c00147{left:496.666667pt;}
.xda_c00147{left:500.933333pt;}
.x10c_c00147{left:502.000000pt;}
.xe4_c00147{left:503.733333pt;}
.xcd_c00147{left:504.800000pt;}
.xfb_c00147{left:506.266667pt;}
.xd4_c00147{left:508.000000pt;}
.x142_c00147{left:509.466667pt;}
.x10d_c00147{left:510.666667pt;}
.xbb_c00147{left:512.933333pt;}
.x153_c00147{left:514.000000pt;}
.x125_c00147{left:514.933333pt;}
.x100_c00147{left:516.000000pt;}
.x137_c00147{left:517.466667pt;}
.xeb_c00147{left:518.666667pt;}
.xc5_c00147{left:520.533333pt;}
.x163_c00147{left:522.133333pt;}
.x15c_c00147{left:523.200000pt;}
.xdb_c00147{left:524.266667pt;}
.xef_c00147{left:526.000000pt;}
.x130_c00147{left:528.000000pt;}
.x133_c00147{left:530.933333pt;}
.xb2_c00147{left:532.533333pt;}
.xf3_c00147{left:535.600000pt;}
.xb9_c00147{left:538.266667pt;}
.x15d_c00147{left:540.133333pt;}
.xc6_c00147{left:541.333333pt;}
.x157_c00147{left:543.066667pt;}
.xd5_c00147{left:545.066667pt;}
.xec_c00147{left:546.133333pt;}
.xfc_c00147{left:547.600000pt;}
.xf4_c00147{left:548.666667pt;}
.x106_c00147{left:550.666667pt;}
.x13b_c00147{left:551.733333pt;}
.x164_c00147{left:553.066667pt;}
.x128_c00147{left:554.800000pt;}
.x13f_c00147{left:556.666667pt;}
.x101_c00147{left:557.600000pt;}
.xe5_c00147{left:561.066667pt;}
.xd6_c00147{left:564.933333pt;}
.x14e_c00147{left:566.000000pt;}
.xfd_c00147{left:568.400000pt;}
.x11f_c00147{left:570.000000pt;}
.xc0_c00147{left:572.000000pt;}
.x119_c00147{left:573.066667pt;}
.x11b_c00147{left:574.533333pt;}
.x102_c00147{left:575.866667pt;}
.xdc_c00147{left:577.466667pt;}
.x143_c00147{left:578.533333pt;}
.x12e_c00147{left:580.533333pt;}
.x10e_c00147{left:582.933333pt;}
.x148_c00147{left:584.533333pt;}
.x14c_c00147{left:586.533333pt;}
.xf5_c00147{left:587.466667pt;}
.xce_c00147{left:590.533333pt;}
.xb3_c00147{left:592.000000pt;}
.x120_c00147{left:593.333333pt;}
.xc7_c00147{left:595.066667pt;}
.x10f_c00147{left:596.666667pt;}
.x149_c00147{left:598.266667pt;}
.xbc_c00147{left:599.600000pt;}
.x115_c00147{left:600.666667pt;}
.xf0_c00147{left:601.866667pt;}
.x158_c00147{left:604.133333pt;}
.xe1_c00147{left:605.600000pt;}
.x126_c00147{left:607.066667pt;}
.xe6_c00147{left:608.133333pt;}
.x15e_c00147{left:610.933333pt;}
.xf6_c00147{left:612.400000pt;}
.x121_c00147{left:614.400000pt;}
.x103_c00147{left:615.600000pt;}
.xe7_c00147{left:617.733333pt;}
.x110_c00147{left:619.466667pt;}
.x107_c00147{left:621.066667pt;}
.xba_c00147{left:622.800000pt;}
.x11c_c00147{left:625.066667pt;}
.x146_c00147{left:627.066667pt;}
.xbd_c00147{left:628.666667pt;}
.x129_c00147{left:630.266667pt;}
.x14d_c00147{left:631.333333pt;}
.x11a_c00147{left:632.533333pt;}
.xd7_c00147{left:633.466667pt;}
.x138_c00147{left:634.533333pt;}
.x108_c00147{left:636.133333pt;}
.x150_c00147{left:637.200000pt;}
.x161_c00147{left:638.266667pt;}
.x11d_c00147{left:639.733333pt;}
.x135_c00147{left:641.066667pt;}
.xf7_c00147{left:642.133333pt;}
.xe2_c00147{left:644.000000pt;}
.xb4_c00147{left:645.733333pt;}
.x154_c00147{left:647.200000pt;}
.x10b_c00147{left:648.266667pt;}
.x13c_c00147{left:650.533333pt;}
.xdd_c00147{left:652.666667pt;}
.xb5_c00147{left:656.000000pt;}
.xbe_c00147{left:657.200000pt;}
.xed_c00147{left:658.400000pt;}
.xcf_c00147{left:660.000000pt;}
.xfe_c00147{left:661.600000pt;}
.xf1_c00147{left:664.000000pt;}
.xc8_c00147{left:665.466667pt;}
.x155_c00147{left:667.600000pt;}
.x122_c00147{left:668.800000pt;}
.xf8_c00147{left:670.000000pt;}
.xde_c00147{left:671.866667pt;}
.x15f_c00147{left:672.933333pt;}
.xc9_c00147{left:674.400000pt;}
.xe8_c00147{left:677.466667pt;}
.xd0_c00147{left:679.866667pt;}
.x12a_c00147{left:681.466667pt;}
.xc1_c00147{left:682.666667pt;}
.x15a_c00147{left:683.866667pt;}
.xf9_c00147{left:685.066667pt;}
.x140_c00147{left:686.933333pt;}
.xb8_c00147{left:689.333333pt;}
.x116_c00147{left:690.533333pt;}
.x139_c00147{left:692.400000pt;}
.x104_c00147{left:694.266667pt;}
.x15b_c00147{left:695.733333pt;}
.x131_c00147{left:700.533333pt;}
.x14a_c00147{left:701.600000pt;}
.xc2_c00147{left:703.200000pt;}
.xe9_c00147{left:704.933333pt;}
.x136_c00147{left:706.000000pt;}
.xb6_c00147{left:707.466667pt;}
.x160_c00147{left:709.733333pt;}
.xd1_c00147{left:711.200000pt;}
.x165_c00147{left:712.933333pt;}
.xf2_c00147{left:713.866667pt;}
.x111_c00147{left:715.866667pt;}
.x144_c00147{left:718.800000pt;}
.xdf_c00147{left:720.133333pt;}
.xca_c00147{left:723.066667pt;}
.xc3_c00147{left:724.666667pt;}
.x112_c00147{left:726.133333pt;}
.x12b_c00147{left:727.600000pt;}
.xd8_c00147{left:728.533333pt;}
.x134_c00147{left:730.000000pt;}
.xd2_c00147{left:731.066667pt;}
.x132_c00147{left:732.533333pt;}
.x162_c00147{left:735.066667pt;}
.x13d_c00147{left:736.266667pt;}
.xb7_c00147{left:737.200000pt;}
.x147_c00147{left:738.133333pt;}
.x159_c00147{left:739.466667pt;}
.x141_c00147{left:741.200000pt;}
.xcb_c00147{left:743.200000pt;}
.x12c_c00147{left:744.933333pt;}
.x167_c00147{left:745.866667pt;}
.x113_c00147{left:748.533333pt;}
.xea_c00147{left:750.666667pt;}
.x13e_c00147{left:751.600000pt;}
.xee_c00147{left:752.800000pt;}
.x127_c00147{left:753.733333pt;}
.x14b_c00147{left:756.400000pt;}
.xd3_c00147{left:757.600000pt;}
.x166_c00147{left:759.333333pt;}
.x151_c00147{left:760.666667pt;}
.x13a_c00147{left:762.533333pt;}
.x14f_c00147{left:764.266667pt;}
.x117_c00147{left:765.733333pt;}
.x105_c00147{left:766.933333pt;}
.x109_c00147{left:768.000000pt;}
.x156_c00147{left:770.000000pt;}
}





/* 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_c00148 {
    display:none;
  }
  .loading-indicator_c00148.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00148 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_c00148 { 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_c00148" -> "#page-container .classname_c00148")
 */
.pf_c00148 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00148 { /* 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_c00148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00148 { /* 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_c00148 { /* 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_c00148 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00148 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00148 {overflow:visible;}
  }
}
.c_c00148 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00148 { /* 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_c00148:after { /* webkit #35443 */
  content: '';
}
.t_c00148:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00148 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 */
}
.__c00148 { /* 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_c00148 { /* info for Javascript */
  display:none;
}
.l_c00148 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00148 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00148 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00148: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_c00148 {
    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_c00148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00148.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_c00148 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00148;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.000000;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;}
.m3_c00148{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.m86_c00148{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.md4_c00148{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.me4_c00148{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00148{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00148{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00148{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00148{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m107_c00148{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m44_c00148{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m96_c00148{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m138_c00148{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.me3_c00148{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00148{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m16_c00148{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00148{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00148{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m108_c00148{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m71_c00148{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m88_c00148{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m113_c00148{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00148{transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);}
.m67_c00148{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00148{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00148{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00148{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m48_c00148{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m132_c00148{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00148{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00148{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00148{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.md2_c00148{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mab_c00148{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m37_c00148{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00148{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m137_c00148{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m114_c00148{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00148{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m85_c00148{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m62_c00148{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00148{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m35_c00148{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00148{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m115_c00148{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m109_c00148{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00148{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m90_c00148{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00148{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m54_c00148{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m139_c00148{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00148{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m64_c00148{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m98_c00148{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me_c00148{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00148{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00148{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m4_c00148{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00148{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00148{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00148{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00148{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m39_c00148{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m53_c00148{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00148{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me1_c00148{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8_c00148{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00148{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m78_c00148{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00148{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m116_c00148{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m36_c00148{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m5_c00148{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6_c00148{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00148{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mff_c00148{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md3_c00148{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7_c00148{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m59_c00148{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.meb_c00148{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m103_c00148{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m56_c00148{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.me5_c00148{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m34_c00148{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00148{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00148{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mac_c00148{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m135_c00148{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mea_c00148{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m61_c00148{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00148{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb_c00148{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00148{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.md1_c00148{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m87_c00148{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00148{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m84_c00148{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00148{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00148{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m76_c00148{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m136_c00148{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m23_c00148{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00148{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mf_c00148{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m46_c00148{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m118_c00148{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00148{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me0_c00148{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m82_c00148{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00148{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m17_c00148{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md_c00148{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc_c00148{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00148{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00148{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m81_c00148{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m105_c00148{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me2_c00148{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9_c00148{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00148{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00148{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00148{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00148{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m122_c00148{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00148{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00148{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00148{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00148{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m99_c00148{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00148{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md0_c00148{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00148{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m52_c00148{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m12_c00148{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m94_c00148{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m134_c00148{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00148{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mee_c00148{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m124_c00148{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00148{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00148{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00148{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00148{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00148{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m20_c00148{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m65_c00148{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mba_c00148{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.maa_c00148{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00148{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m97_c00148{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m11_c00148{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m121_c00148{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m43_c00148{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mef_c00148{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m63_c00148{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00148{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00148{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m40_c00148{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00148{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m133_c00148{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00148{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md7_c00148{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00148{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m38_c00148{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m79_c00148{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00148{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m57_c00148{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00148{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m117_c00148{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m92_c00148{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00148{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m131_c00148{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m120_c00148{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m112_c00148{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m28_c00148{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00148{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00148{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00148{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m91_c00148{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m95_c00148{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m101_c00148{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m41_c00148{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m32_c00148{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m10_c00148{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m18_c00148{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m13_c00148{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m47_c00148{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m31_c00148{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00148{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00148{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m75_c00148{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.maf_c00148{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00148{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00148{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mde_c00148{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m60_c00148{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00148{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00148{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m130_c00148{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m24_c00148{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00148{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m66_c00148{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00148{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00148{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00148{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m50_c00148{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m70_c00148{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m58_c00148{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m26_c00148{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mec_c00148{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00148{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m100_c00148{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m15_c00148{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m33_c00148{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00148{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m125_c00148{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00148{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00148{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me7_c00148{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m19_c00148{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.me9_c00148{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00148{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m21_c00148{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00148{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00148{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00148{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m104_c00148{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m27_c00148{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m77_c00148{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00148{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m123_c00148{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00148{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00148{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00148{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m49_c00148{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.md5_c00148{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m55_c00148{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00148{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00148{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00148{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00148{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2_c00148{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m51_c00148{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00148{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00148{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00148{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);}
.med_c00148{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00148{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m14_c00148{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me8_c00148{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m42_c00148{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00148{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mad_c00148{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m83_c00148{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00148{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00148{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m74_c00148{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00148{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00148{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m25_c00148{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m22_c00148{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00148{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m72_c00148{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00148{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00148{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00148{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00148{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma_c00148{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00148{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m89_c00148{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00148{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mae_c00148{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00148{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m73_c00148{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m102_c00148{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m93_c00148{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00148{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m127_c00148{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00148{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m30_c00148{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00148{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00148{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m45_c00148{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m69_c00148{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.md6_c00148{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00148{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m68_c00148{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mca_c00148{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00148{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m29_c00148{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00148{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00148{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mce_c00148{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m128_c00148{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00148{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00148{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00148{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00148{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md9_c00148{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m119_c00148{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.me6_c00148{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m126_c00148{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mda_c00148{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m106_c00148{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m80_c00148{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m129_c00148{transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);}
.md8_c00148{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m110_c00148{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m111_c00148{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00148{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00148{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00148{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00148{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00148{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00148{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m0_c00148{transform:matrix(0.494250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494250,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls0_c00148{letter-spacing:0.000000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{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__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00148{word-spacing:-8.690476px;}
.ws9_c00148{word-spacing:-7.894737px;}
.ws2_c00148{word-spacing:-7.051282px;}
.ws0_c00148{word-spacing:-6.962488px;}
.ws7_c00148{word-spacing:-6.521739px;}
.wse_c00148{word-spacing:-1.842105px;}
.wsb_c00148{word-spacing:-0.201382px;}
.wsf_c00148{word-spacing:0.000000px;}
.wsd_c00148{word-spacing:3.055556px;}
.ws6_c00148{word-spacing:4.166667px;}
.ws4_c00148{word-spacing:5.428571px;}
.ws5_c00148{word-spacing:8.571429px;}
.ws8_c00148{word-spacing:10.270270px;}
.ws3_c00148{word-spacing:12.812500px;}
.ws1_c00148{word-spacing:16.612903px;}
.wsc_c00148{word-spacing:21.666667px;}
.fc0_c00148{color:transparent;}
.fs7_c00148{font-size:30.000000px;}
.fs6_c00148{font-size:36.000000px;}
.fs1_c00148{font-size:48.000000px;}
.fs5_c00148{font-size:54.000000px;}
.fs4_c00148{font-size:60.000000px;}
.fs3_c00148{font-size:66.000000px;}
.fs2_c00148{font-size:72.000000px;}
.fs0_c00148{font-size:78.000000px;}
.y0_c00148{bottom:0.000000px;}
.y2_c00148{bottom:67.350000px;}
.y78_c00148{bottom:182.100000px;}
.y42_c00148{bottom:184.950000px;}
.y77_c00148{bottom:197.250000px;}
.y41_c00148{bottom:199.650000px;}
.y76_c00148{bottom:206.700000px;}
.y40_c00148{bottom:213.750000px;}
.y3f_c00148{bottom:227.850000px;}
.y75_c00148{bottom:232.950000px;}
.y3e_c00148{bottom:242.250000px;}
.y74_c00148{bottom:247.050000px;}
.y3d_c00148{bottom:256.650000px;}
.y73_c00148{bottom:261.750000px;}
.y3c_c00148{bottom:271.800000px;}
.y72_c00148{bottom:275.850000px;}
.y3b_c00148{bottom:284.550000px;}
.y71_c00148{bottom:290.550000px;}
.y3a_c00148{bottom:298.650000px;}
.y70_c00148{bottom:304.950000px;}
.y39_c00148{bottom:313.050000px;}
.y6f_c00148{bottom:318.600000px;}
.y38_c00148{bottom:327.450000px;}
.y6e_c00148{bottom:337.200000px;}
.y37_c00148{bottom:341.850000px;}
.y6d_c00148{bottom:351.600000px;}
.y36_c00148{bottom:356.250000px;}
.y6c_c00148{bottom:366.000000px;}
.y35_c00148{bottom:370.350000px;}
.y6b_c00148{bottom:380.400000px;}
.y34_c00148{bottom:384.450000px;}
.y6a_c00148{bottom:394.500000px;}
.y33_c00148{bottom:399.600000px;}
.y69_c00148{bottom:409.650000px;}
.y32_c00148{bottom:413.700000px;}
.y68_c00148{bottom:423.000000px;}
.y31_c00148{bottom:428.550000px;}
.y67_c00148{bottom:437.400000px;}
.y30_c00148{bottom:442.200000px;}
.y66_c00148{bottom:451.800000px;}
.y2f_c00148{bottom:456.900000px;}
.y65_c00148{bottom:465.900000px;}
.y2e_c00148{bottom:471.600000px;}
.y7b_c00148{bottom:477.300000px;}
.y64_c00148{bottom:480.600000px;}
.y2d_c00148{bottom:484.800000px;}
.y63_c00148{bottom:494.700000px;}
.y2c_c00148{bottom:499.200000px;}
.y62_c00148{bottom:513.150000px;}
.y2b_c00148{bottom:513.300000px;}
.y61_c00148{bottom:527.250000px;}
.y2a_c00148{bottom:527.400000px;}
.y60_c00148{bottom:541.650000px;}
.y29_c00148{bottom:541.800000px;}
.y5f_c00148{bottom:555.750000px;}
.y28_c00148{bottom:556.200000px;}
.y5e_c00148{bottom:570.150000px;}
.y27_c00148{bottom:570.300000px;}
.y5d_c00148{bottom:584.550000px;}
.y26_c00148{bottom:584.700000px;}
.y5c_c00148{bottom:598.650000px;}
.y25_c00148{bottom:599.400000px;}
.y24_c00148{bottom:613.050000px;}
.y23_c00148{bottom:627.450000px;}
.y22_c00148{bottom:641.850000px;}
.y21_c00148{bottom:656.550000px;}
.y5b_c00148{bottom:660.300000px;}
.y20_c00148{bottom:670.200000px;}
.y5a_c00148{bottom:674.700000px;}
.y1f_c00148{bottom:684.600000px;}
.y59_c00148{bottom:689.100000px;}
.y1e_c00148{bottom:698.700000px;}
.y58_c00148{bottom:703.200000px;}
.y1d_c00148{bottom:713.100000px;}
.y57_c00148{bottom:717.600000px;}
.y1c_c00148{bottom:727.950000px;}
.y56_c00148{bottom:732.300000px;}
.y1b_c00148{bottom:741.450000px;}
.y55_c00148{bottom:745.950000px;}
.y1a_c00148{bottom:756.600000px;}
.y54_c00148{bottom:765.000000px;}
.y19_c00148{bottom:770.700000px;}
.y53_c00148{bottom:779.100000px;}
.y18_c00148{bottom:784.350000px;}
.y17_c00148{bottom:799.500000px;}
.y16_c00148{bottom:812.850000px;}
.y52_c00148{bottom:820.050000px;}
.y15_c00148{bottom:827.250000px;}
.y14_c00148{bottom:841.650000px;}
.y51_c00148{bottom:841.950000px;}
.y79_c00148{bottom:849.900000px;}
.y13_c00148{bottom:856.050000px;}
.y50_c00148{bottom:859.650000px;}
.y12_c00148{bottom:870.000000px;}
.y4f_c00148{bottom:881.700000px;}
.y11_c00148{bottom:884.400000px;}
.y10_c00148{bottom:898.800000px;}
.y4e_c00148{bottom:903.600000px;}
.yf_c00148{bottom:912.900000px;}
.y4d_c00148{bottom:925.500000px;}
.ye_c00148{bottom:927.300000px;}
.yd_c00148{bottom:942.000000px;}
.y4c_c00148{bottom:943.200000px;}
.yc_c00148{bottom:956.100000px;}
.y4b_c00148{bottom:965.250000px;}
.yb_c00148{bottom:973.050000px;}
.y4a_c00148{bottom:983.250000px;}
.ya_c00148{bottom:985.350000px;}
.y9_c00148{bottom:998.700000px;}
.y49_c00148{bottom:1001.550000px;}
.y8_c00148{bottom:1012.650000px;}
.y48_c00148{bottom:1019.250000px;}
.y7_c00148{bottom:1027.050000px;}
.y47_c00148{bottom:1036.500000px;}
.y6_c00148{bottom:1041.150000px;}
.y5_c00148{bottom:1055.550000px;}
.y46_c00148{bottom:1058.100000px;}
.y45_c00148{bottom:1076.100000px;}
.y44_c00148{bottom:1098.000000px;}
.y4_c00148{bottom:1101.150000px;}
.y43_c00148{bottom:1116.000000px;}
.y3_c00148{bottom:1118.850000px;}
.y1_c00148{bottom:1144.800000px;}
.y7a_c00148{bottom:1257.900000px;}
.h9_c00148{height:30.000000px;}
.h8_c00148{height:36.000000px;}
.h3_c00148{height:48.000000px;}
.h7_c00148{height:54.000000px;}
.h6_c00148{height:60.000000px;}
.h5_c00148{height:66.000000px;}
.h4_c00148{height:72.000000px;}
.h2_c00148{height:78.000000px;}
.h0_c00148{height:1271.160094px;}
.h1_c00148{height:1271.250000px;}
.w1_c00148{width:953.250000px;}
.w0_c00148{width:953.280030px;}
.x0_c00148{left:0.000000px;}
.x4_c00148{left:8.700000px;}
.x30_c00148{left:67.200000px;}
.x10_c00148{left:68.400000px;}
.x7a_c00148{left:69.450000px;}
.xa7_c00148{left:71.250000px;}
.x5c_c00148{left:74.850000px;}
.x2a_c00148{left:81.750000px;}
.xa2_c00148{left:82.800000px;}
.x71_c00148{left:84.600000px;}
.xb_c00148{left:85.650000px;}
.x39_c00148{left:88.350000px;}
.x11_c00148{left:90.750000px;}
.x31_c00148{left:94.500000px;}
.x36_c00148{left:95.550000px;}
.x8d_c00148{left:96.750000px;}
.x27_c00148{left:98.400000px;}
.x56_c00148{left:100.050000px;}
.xab_c00148{left:101.250000px;}
.x5_c00148{left:103.650000px;}
.xb2_c00148{left:104.700000px;}
.x66_c00148{left:106.350000px;}
.x77_c00148{left:107.400000px;}
.x91_c00148{left:109.800000px;}
.x12_c00148{left:110.850000px;}
.x3f_c00148{left:112.800000px;}
.x18_c00148{left:115.650000px;}
.x7b_c00148{left:117.300000px;}
.xb6_c00148{left:118.500000px;}
.x50_c00148{left:120.150000px;}
.x57_c00148{left:121.950000px;}
.x6d_c00148{left:124.200000px;}
.x8c_c00148{left:125.250000px;}
.x21_c00148{left:127.350000px;}
.x95_c00148{left:129.000000px;}
.x67_c00148{left:131.250000px;}
.xae_c00148{left:132.450000px;}
.x22_c00148{left:134.250000px;}
.x51_c00148{left:136.650000px;}
.x86_c00148{left:138.000000px;}
.x98_c00148{left:139.350000px;}
.x28_c00148{left:141.300000px;}
.xa1_c00148{left:142.500000px;}
.xaf_c00148{left:144.750000px;}
.x2b_c00148{left:148.350000px;}
.x3a_c00148{left:149.850000px;}
.x19_c00148{left:151.650000px;}
.xa3_c00148{left:153.000000px;}
.x52_c00148{left:156.150000px;}
.x9e_c00148{left:158.100000px;}
.xc_c00148{left:159.150000px;}
.x45_c00148{left:160.200000px;}
.x1a_c00148{left:162.450000px;}
.x68_c00148{left:164.400000px;}
.x6_c00148{left:165.900000px;}
.x61_c00148{left:166.950000px;}
.x23_c00148{left:168.150000px;}
.x40_c00148{left:169.650000px;}
.x6e_c00148{left:171.000000px;}
.x7c_c00148{left:174.150000px;}
.x5d_c00148{left:175.350000px;}
.xd_c00148{left:178.950000px;}
.x9f_c00148{left:180.000000px;}
.x29_c00148{left:181.200000px;}
.x96_c00148{left:182.250000px;}
.x87_c00148{left:185.100000px;}
.x1b_c00148{left:187.350000px;}
.x62_c00148{left:188.550000px;}
.x83_c00148{left:190.050000px;}
.x24_c00148{left:191.250000px;}
.x9a_c00148{left:192.300000px;}
.x13_c00148{left:193.950000px;}
.x32_c00148{left:195.300000px;}
.xb3_c00148{left:197.250000px;}
.x78_c00148{left:198.450000px;}
.x7d_c00148{left:200.100000px;}
.x4a_c00148{left:201.600000px;}
.xa4_c00148{left:205.500000px;}
.x41_c00148{left:207.750000px;}
.x4b_c00148{left:209.100000px;}
.x7e_c00148{left:210.600000px;}
.x14_c00148{left:213.450000px;}
.x3b_c00148{left:214.950000px;}
.x42_c00148{left:216.000000px;}
.x9b_c00148{left:217.200000px;}
.x7f_c00148{left:218.550000px;}
.x5e_c00148{left:219.600000px;}
.x8e_c00148{left:222.450000px;}
.xac_c00148{left:224.400000px;}
.x58_c00148{left:225.600000px;}
.x72_c00148{left:227.700000px;}
.x37_c00148{left:229.800000px;}
.x1c_c00148{left:231.600000px;}
.x99_c00148{left:233.400000px;}
.x5f_c00148{left:235.500000px;}
.x46_c00148{left:236.850000px;}
.x25_c00148{left:239.100000px;}
.x6a_c00148{left:240.900000px;}
.xad_c00148{left:242.400000px;}
.x7_c00148{left:243.600000px;}
.x69_c00148{left:245.700000px;}
.x73_c00148{left:246.750000px;}
.xe_c00148{left:249.450000px;}
.x92_c00148{left:250.800000px;}
.x4c_c00148{left:253.050000px;}
.xa5_c00148{left:254.100000px;}
.x2c_c00148{left:255.150000px;}
.x6b_c00148{left:257.100000px;}
.x88_c00148{left:258.600000px;}
.x9c_c00148{left:260.100000px;}
.x33_c00148{left:261.900000px;}
.x1d_c00148{left:264.300000px;}
.xb4_c00148{left:266.400000px;}
.xb1_c00148{left:267.600000px;}
.x6f_c00148{left:269.250000px;}
.x43_c00148{left:272.850000px;}
.xa8_c00148{left:274.950000px;}
.x89_c00148{left:276.750000px;}
.x70_c00148{left:278.550000px;}
.x53_c00148{left:279.600000px;}
.x1e_c00148{left:281.250000px;}
.x15_c00148{left:283.350000px;}
.x59_c00148{left:285.300000px;}
.x2d_c00148{left:286.800000px;}
.x84_c00148{left:289.350000px;}
.x63_c00148{left:293.100000px;}
.x8f_c00148{left:295.200000px;}
.x4d_c00148{left:296.550000px;}
.x60_c00148{left:297.750000px;}
.x48_c00148{left:299.700000px;}
.x47_c00148{left:301.650000px;}
.x8_c00148{left:303.000000px;}
.x74_c00148{left:304.650000px;}
.x64_c00148{left:308.250000px;}
.x16_c00148{left:309.300000px;}
.x1_c00148{left:310.350000px;}
.x93_c00148{left:311.700000px;}
.x3c_c00148{left:313.950000px;}
.x4e_c00148{left:315.300000px;}
.x34_c00148{left:316.950000px;}
.x1f_c00148{left:318.750000px;}
.x8a_c00148{left:321.750000px;}
.x9d_c00148{left:323.250000px;}
.xf_c00148{left:326.100000px;}
.x97_c00148{left:327.450000px;}
.x4f_c00148{left:329.700000px;}
.x9_c00148{left:330.750000px;}
.xb5_c00148{left:332.100000px;}
.x26_c00148{left:333.450000px;}
.x90_c00148{left:335.850000px;}
.x54_c00148{left:340.500000px;}
.x3d_c00148{left:341.700000px;}
.x6c_c00148{left:346.050000px;}
.x85_c00148{left:349.050000px;}
.xa6_c00148{left:351.000000px;}
.x65_c00148{left:352.500000px;}
.x79_c00148{left:353.850000px;}
.x2e_c00148{left:354.900000px;}
.x38_c00148{left:357.300000px;}
.x5a_c00148{left:358.350000px;}
.x49_c00148{left:360.150000px;}
.xb8_c00148{left:361.200000px;}
.x55_c00148{left:363.150000px;}
.x94_c00148{left:364.650000px;}
.x2f_c00148{left:366.000000px;}
.x75_c00148{left:368.400000px;}
.xa9_c00148{left:370.500000px;}
.x81_c00148{left:371.850000px;}
.x3e_c00148{left:374.850000px;}
.x80_c00148{left:378.000000px;}
.x8b_c00148{left:379.050000px;}
.x76_c00148{left:381.000000px;}
.x35_c00148{left:382.800000px;}
.xa_c00148{left:384.450000px;}
.x44_c00148{left:387.750000px;}
.xaa_c00148{left:390.000000px;}
.x17_c00148{left:391.800000px;}
.xa0_c00148{left:393.600000px;}
.x20_c00148{left:395.100000px;}
.x82_c00148{left:396.750000px;}
.xb0_c00148{left:397.800000px;}
.x5b_c00148{left:402.600000px;}
.xb7_c00148{left:405.600000px;}
.x11c_c00148{left:425.550000px;}
.xf6_c00148{left:426.600000px;}
.x12a_c00148{left:439.050000px;}
.x15d_c00148{left:440.250000px;}
.xf9_c00148{left:441.300000px;}
.xb9_c00148{left:443.100000px;}
.x13a_c00148{left:444.900000px;}
.x11d_c00148{left:447.150000px;}
.x13c_c00148{left:449.100000px;}
.x127_c00148{left:452.250000px;}
.x148_c00148{left:453.600000px;}
.xff_c00148{left:455.100000px;}
.x118_c00148{left:457.800000px;}
.x10b_c00148{left:460.050000px;}
.xe0_c00148{left:461.100000px;}
.xc2_c00148{left:462.300000px;}
.x152_c00148{left:463.350000px;}
.x15e_c00148{left:464.400000px;}
.xc1_c00148{left:465.450000px;}
.xd6_c00148{left:466.500000px;}
.xcc_c00148{left:468.150000px;}
.x113_c00148{left:469.950000px;}
.x130_c00148{left:471.600000px;}
.x160_c00148{left:472.950000px;}
.xc8_c00148{left:474.150000px;}
.x13d_c00148{left:476.400000px;}
.x105_c00148{left:477.600000px;}
.x13f_c00148{left:479.100000px;}
.x153_c00148{left:480.300000px;}
.xba_c00148{left:481.650000px;}
.xdc_c00148{left:483.750000px;}
.xfa_c00148{left:484.950000px;}
.x15c_c00148{left:486.300000px;}
.xe5_c00148{left:487.500000px;}
.x11e_c00148{left:488.550000px;}
.x136_c00148{left:489.600000px;}
.xbb_c00148{left:491.700000px;}
.xf7_c00148{left:493.500000px;}
.x147_c00148{left:494.700000px;}
.x114_c00148{left:495.900000px;}
.x12b_c00148{left:496.950000px;}
.x14b_c00148{left:498.000000px;}
.x12f_c00148{left:499.350000px;}
.x155_c00148{left:500.400000px;}
.xea_c00148{left:502.800000px;}
.xe6_c00148{left:504.750000px;}
.xbc_c00148{left:505.800000px;}
.x122_c00148{left:507.600000px;}
.x145_c00148{left:508.950000px;}
.x151_c00148{left:510.750000px;}
.xeb_c00148{left:511.800000px;}
.x100_c00148{left:514.500000px;}
.x158_c00148{left:515.550000px;}
.x10c_c00148{left:517.350000px;}
.x123_c00148{left:519.900000px;}
.xc3_c00148{left:521.400000px;}
.x13e_c00148{left:525.750000px;}
.x140_c00148{left:526.950000px;}
.x10d_c00148{left:528.150000px;}
.x14a_c00148{left:529.200000px;}
.xc9_c00148{left:530.250000px;}
.x154_c00148{left:532.050000px;}
.x135_c00148{left:534.000000px;}
.x141_c00148{left:536.400000px;}
.x131_c00148{left:538.200000px;}
.xd7_c00148{left:539.550000px;}
.x10e_c00148{left:541.800000px;}
.xf1_c00148{left:543.600000px;}
.x142_c00148{left:546.000000px;}
.x137_c00148{left:549.000000px;}
.xcd_c00148{left:551.250000px;}
.xec_c00148{left:552.450000px;}
.x159_c00148{left:553.950000px;}
.x101_c00148{left:555.150000px;}
.xed_c00148{left:556.650000px;}
.x124_c00148{left:560.550000px;}
.x156_c00148{left:562.650000px;}
.x106_c00148{left:564.300000px;}
.xce_c00148{left:566.700000px;}
.xe7_c00148{left:570.300000px;}
.xf2_c00148{left:571.350000px;}
.xbd_c00148{left:573.450000px;}
.x125_c00148{left:574.950000px;}
.xd8_c00148{left:577.050000px;}
.xdd_c00148{left:578.100000px;}
.x10f_c00148{left:579.300000px;}
.xfb_c00148{left:581.400000px;}
.xee_c00148{left:583.650000px;}
.x146_c00148{left:585.750000px;}
.x120_c00148{left:586.800000px;}
.xde_c00148{left:590.400000px;}
.x12c_c00148{left:594.150000px;}
.xe8_c00148{left:595.800000px;}
.x102_c00148{left:597.300000px;}
.x115_c00148{left:598.800000px;}
.xd2_c00148{left:600.450000px;}
.x150_c00148{left:602.100000px;}
.xc4_c00148{left:603.150000px;}
.xf3_c00148{left:606.600000px;}
.xca_c00148{left:607.950000px;}
.x11f_c00148{left:609.150000px;}
.x119_c00148{left:610.350000px;}
.x132_c00148{left:611.550000px;}
.x13b_c00148{left:614.400000px;}
.xe9_c00148{left:617.700000px;}
.x2_c00148{left:621.750000px;}
.x15a_c00148{left:623.100000px;}
.x143_c00148{left:625.200000px;}
.xbe_c00148{left:627.150000px;}
.x138_c00148{left:629.250000px;}
.x157_c00148{left:630.300000px;}
.x107_c00148{left:632.250000px;}
.xef_c00148{left:635.550000px;}
.xcf_c00148{left:637.650000px;}
.x128_c00148{left:638.850000px;}
.x121_c00148{left:640.050000px;}
.xf8_c00148{left:642.600000px;}
.x149_c00148{left:644.100000px;}
.xc5_c00148{left:648.450000px;}
.xfc_c00148{left:649.500000px;}
.xd9_c00148{left:652.200000px;}
.x108_c00148{left:654.150000px;}
.x12d_c00148{left:655.350000px;}
.xfd_c00148{left:657.000000px;}
.x14d_c00148{left:658.050000px;}
.xdf_c00148{left:659.100000px;}
.x110_c00148{left:662.100000px;}
.x11a_c00148{left:664.350000px;}
.x14c_c00148{left:665.850000px;}
.x139_c00148{left:668.100000px;}
.x103_c00148{left:669.300000px;}
.x15b_c00148{left:671.400000px;}
.xd3_c00148{left:672.450000px;}
.x126_c00148{left:674.700000px;}
.x111_c00148{left:676.200000px;}
.xe1_c00148{left:681.750000px;}
.x109_c00148{left:683.250000px;}
.x133_c00148{left:684.300000px;}
.x116_c00148{left:685.500000px;}
.xd0_c00148{left:688.800000px;}
.xbf_c00148{left:690.900000px;}
.x11b_c00148{left:694.200000px;}
.xcb_c00148{left:695.400000px;}
.xd4_c00148{left:697.650000px;}
.xe2_c00148{left:699.450000px;}
.x129_c00148{left:700.800000px;}
.x14e_c00148{left:703.050000px;}
.xf0_c00148{left:704.700000px;}
.xda_c00148{left:705.900000px;}
.xf4_c00148{left:708.150000px;}
.xc0_c00148{left:711.450000px;}
.xc6_c00148{left:714.300000px;}
.xfe_c00148{left:718.200000px;}
.xd5_c00148{left:720.300000px;}
.x134_c00148{left:722.100000px;}
.x104_c00148{left:726.450000px;}
.xf5_c00148{left:728.250000px;}
.x10a_c00148{left:732.150000px;}
.x3_c00148{left:734.100000px;}
.x112_c00148{left:736.350000px;}
.x14f_c00148{left:737.550000px;}
.xe3_c00148{left:738.750000px;}
.x144_c00148{left:741.000000px;}
.xc7_c00148{left:742.350000px;}
.x15f_c00148{left:743.700000px;}
.x12e_c00148{left:744.750000px;}
.xd1_c00148{left:747.150000px;}
.xe4_c00148{left:749.250000px;}
.x117_c00148{left:751.650000px;}
.xdb_c00148{left:757.350000px;}
.x161_c00148{left:869.700000px;}
.x163_c00148{left:935.700000px;}
.x162_c00148{left:938.100000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls0_c00148{letter-spacing:0.000000pt;}
.wsa_c00148{word-spacing:-7.724868pt;}
.ws9_c00148{word-spacing:-7.017544pt;}
.ws2_c00148{word-spacing:-6.267806pt;}
.ws0_c00148{word-spacing:-6.188878pt;}
.ws7_c00148{word-spacing:-5.797101pt;}
.wse_c00148{word-spacing:-1.637427pt;}
.wsb_c00148{word-spacing:-0.179006pt;}
.wsf_c00148{word-spacing:0.000000pt;}
.wsd_c00148{word-spacing:2.716049pt;}
.ws6_c00148{word-spacing:3.703704pt;}
.ws4_c00148{word-spacing:4.825397pt;}
.ws5_c00148{word-spacing:7.619048pt;}
.ws8_c00148{word-spacing:9.129129pt;}
.ws3_c00148{word-spacing:11.388889pt;}
.ws1_c00148{word-spacing:14.767025pt;}
.wsc_c00148{word-spacing:19.259259pt;}
.fs7_c00148{font-size:26.666667pt;}
.fs6_c00148{font-size:32.000000pt;}
.fs1_c00148{font-size:42.666667pt;}
.fs5_c00148{font-size:48.000000pt;}
.fs4_c00148{font-size:53.333333pt;}
.fs3_c00148{font-size:58.666667pt;}
.fs2_c00148{font-size:64.000000pt;}
.fs0_c00148{font-size:69.333333pt;}
.y0_c00148{bottom:0.000000pt;}
.y2_c00148{bottom:59.866667pt;}
.y78_c00148{bottom:161.866667pt;}
.y42_c00148{bottom:164.400000pt;}
.y77_c00148{bottom:175.333333pt;}
.y41_c00148{bottom:177.466667pt;}
.y76_c00148{bottom:183.733333pt;}
.y40_c00148{bottom:190.000000pt;}
.y3f_c00148{bottom:202.533333pt;}
.y75_c00148{bottom:207.066667pt;}
.y3e_c00148{bottom:215.333333pt;}
.y74_c00148{bottom:219.600000pt;}
.y3d_c00148{bottom:228.133333pt;}
.y73_c00148{bottom:232.666667pt;}
.y3c_c00148{bottom:241.600000pt;}
.y72_c00148{bottom:245.200000pt;}
.y3b_c00148{bottom:252.933333pt;}
.y71_c00148{bottom:258.266667pt;}
.y3a_c00148{bottom:265.466667pt;}
.y70_c00148{bottom:271.066667pt;}
.y39_c00148{bottom:278.266667pt;}
.y6f_c00148{bottom:283.200000pt;}
.y38_c00148{bottom:291.066667pt;}
.y6e_c00148{bottom:299.733333pt;}
.y37_c00148{bottom:303.866667pt;}
.y6d_c00148{bottom:312.533333pt;}
.y36_c00148{bottom:316.666667pt;}
.y6c_c00148{bottom:325.333333pt;}
.y35_c00148{bottom:329.200000pt;}
.y6b_c00148{bottom:338.133333pt;}
.y34_c00148{bottom:341.733333pt;}
.y6a_c00148{bottom:350.666667pt;}
.y33_c00148{bottom:355.200000pt;}
.y69_c00148{bottom:364.133333pt;}
.y32_c00148{bottom:367.733333pt;}
.y68_c00148{bottom:376.000000pt;}
.y31_c00148{bottom:380.933333pt;}
.y67_c00148{bottom:388.800000pt;}
.y30_c00148{bottom:393.066667pt;}
.y66_c00148{bottom:401.600000pt;}
.y2f_c00148{bottom:406.133333pt;}
.y65_c00148{bottom:414.133333pt;}
.y2e_c00148{bottom:419.200000pt;}
.y7b_c00148{bottom:424.266667pt;}
.y64_c00148{bottom:427.200000pt;}
.y2d_c00148{bottom:430.933333pt;}
.y63_c00148{bottom:439.733333pt;}
.y2c_c00148{bottom:443.733333pt;}
.y62_c00148{bottom:456.133333pt;}
.y2b_c00148{bottom:456.266667pt;}
.y61_c00148{bottom:468.666667pt;}
.y2a_c00148{bottom:468.800000pt;}
.y60_c00148{bottom:481.466667pt;}
.y29_c00148{bottom:481.600000pt;}
.y5f_c00148{bottom:494.000000pt;}
.y28_c00148{bottom:494.400000pt;}
.y5e_c00148{bottom:506.800000pt;}
.y27_c00148{bottom:506.933333pt;}
.y5d_c00148{bottom:519.600000pt;}
.y26_c00148{bottom:519.733333pt;}
.y5c_c00148{bottom:532.133333pt;}
.y25_c00148{bottom:532.800000pt;}
.y24_c00148{bottom:544.933333pt;}
.y23_c00148{bottom:557.733333pt;}
.y22_c00148{bottom:570.533333pt;}
.y21_c00148{bottom:583.600000pt;}
.y5b_c00148{bottom:586.933333pt;}
.y20_c00148{bottom:595.733333pt;}
.y5a_c00148{bottom:599.733333pt;}
.y1f_c00148{bottom:608.533333pt;}
.y59_c00148{bottom:612.533333pt;}
.y1e_c00148{bottom:621.066667pt;}
.y58_c00148{bottom:625.066667pt;}
.y1d_c00148{bottom:633.866667pt;}
.y57_c00148{bottom:637.866667pt;}
.y1c_c00148{bottom:647.066667pt;}
.y56_c00148{bottom:650.933333pt;}
.y1b_c00148{bottom:659.066667pt;}
.y55_c00148{bottom:663.066667pt;}
.y1a_c00148{bottom:672.533333pt;}
.y54_c00148{bottom:680.000000pt;}
.y19_c00148{bottom:685.066667pt;}
.y53_c00148{bottom:692.533333pt;}
.y18_c00148{bottom:697.200000pt;}
.y17_c00148{bottom:710.666667pt;}
.y16_c00148{bottom:722.533333pt;}
.y52_c00148{bottom:728.933333pt;}
.y15_c00148{bottom:735.333333pt;}
.y14_c00148{bottom:748.133333pt;}
.y51_c00148{bottom:748.400000pt;}
.y79_c00148{bottom:755.466667pt;}
.y13_c00148{bottom:760.933333pt;}
.y50_c00148{bottom:764.133333pt;}
.y12_c00148{bottom:773.333333pt;}
.y4f_c00148{bottom:783.733333pt;}
.y11_c00148{bottom:786.133333pt;}
.y10_c00148{bottom:798.933333pt;}
.y4e_c00148{bottom:803.200000pt;}
.yf_c00148{bottom:811.466667pt;}
.y4d_c00148{bottom:822.666667pt;}
.ye_c00148{bottom:824.266667pt;}
.yd_c00148{bottom:837.333333pt;}
.y4c_c00148{bottom:838.400000pt;}
.yc_c00148{bottom:849.866667pt;}
.y4b_c00148{bottom:858.000000pt;}
.yb_c00148{bottom:864.933333pt;}
.y4a_c00148{bottom:874.000000pt;}
.ya_c00148{bottom:875.866667pt;}
.y9_c00148{bottom:887.733333pt;}
.y49_c00148{bottom:890.266667pt;}
.y8_c00148{bottom:900.133333pt;}
.y48_c00148{bottom:906.000000pt;}
.y7_c00148{bottom:912.933333pt;}
.y47_c00148{bottom:921.333333pt;}
.y6_c00148{bottom:925.466667pt;}
.y5_c00148{bottom:938.266667pt;}
.y46_c00148{bottom:940.533333pt;}
.y45_c00148{bottom:956.533333pt;}
.y44_c00148{bottom:976.000000pt;}
.y4_c00148{bottom:978.800000pt;}
.y43_c00148{bottom:992.000000pt;}
.y3_c00148{bottom:994.533333pt;}
.y1_c00148{bottom:1017.600000pt;}
.y7a_c00148{bottom:1118.133333pt;}
.h9_c00148{height:26.666667pt;}
.h8_c00148{height:32.000000pt;}
.h3_c00148{height:42.666667pt;}
.h7_c00148{height:48.000000pt;}
.h6_c00148{height:53.333333pt;}
.h5_c00148{height:58.666667pt;}
.h4_c00148{height:64.000000pt;}
.h2_c00148{height:69.333333pt;}
.h0_c00148{height:1129.920084pt;}
.h1_c00148{height:1130.000000pt;}
.w1_c00148{width:847.333333pt;}
.w0_c00148{width:847.360027pt;}
.x0_c00148{left:0.000000pt;}
.x4_c00148{left:7.733333pt;}
.x30_c00148{left:59.733333pt;}
.x10_c00148{left:60.800000pt;}
.x7a_c00148{left:61.733333pt;}
.xa7_c00148{left:63.333333pt;}
.x5c_c00148{left:66.533333pt;}
.x2a_c00148{left:72.666667pt;}
.xa2_c00148{left:73.600000pt;}
.x71_c00148{left:75.200000pt;}
.xb_c00148{left:76.133333pt;}
.x39_c00148{left:78.533333pt;}
.x11_c00148{left:80.666667pt;}
.x31_c00148{left:84.000000pt;}
.x36_c00148{left:84.933333pt;}
.x8d_c00148{left:86.000000pt;}
.x27_c00148{left:87.466667pt;}
.x56_c00148{left:88.933333pt;}
.xab_c00148{left:90.000000pt;}
.x5_c00148{left:92.133333pt;}
.xb2_c00148{left:93.066667pt;}
.x66_c00148{left:94.533333pt;}
.x77_c00148{left:95.466667pt;}
.x91_c00148{left:97.600000pt;}
.x12_c00148{left:98.533333pt;}
.x3f_c00148{left:100.266667pt;}
.x18_c00148{left:102.800000pt;}
.x7b_c00148{left:104.266667pt;}
.xb6_c00148{left:105.333333pt;}
.x50_c00148{left:106.800000pt;}
.x57_c00148{left:108.400000pt;}
.x6d_c00148{left:110.400000pt;}
.x8c_c00148{left:111.333333pt;}
.x21_c00148{left:113.200000pt;}
.x95_c00148{left:114.666667pt;}
.x67_c00148{left:116.666667pt;}
.xae_c00148{left:117.733333pt;}
.x22_c00148{left:119.333333pt;}
.x51_c00148{left:121.466667pt;}
.x86_c00148{left:122.666667pt;}
.x98_c00148{left:123.866667pt;}
.x28_c00148{left:125.600000pt;}
.xa1_c00148{left:126.666667pt;}
.xaf_c00148{left:128.666667pt;}
.x2b_c00148{left:131.866667pt;}
.x3a_c00148{left:133.200000pt;}
.x19_c00148{left:134.800000pt;}
.xa3_c00148{left:136.000000pt;}
.x52_c00148{left:138.800000pt;}
.x9e_c00148{left:140.533333pt;}
.xc_c00148{left:141.466667pt;}
.x45_c00148{left:142.400000pt;}
.x1a_c00148{left:144.400000pt;}
.x68_c00148{left:146.133333pt;}
.x6_c00148{left:147.466667pt;}
.x61_c00148{left:148.400000pt;}
.x23_c00148{left:149.466667pt;}
.x40_c00148{left:150.800000pt;}
.x6e_c00148{left:152.000000pt;}
.x7c_c00148{left:154.800000pt;}
.x5d_c00148{left:155.866667pt;}
.xd_c00148{left:159.066667pt;}
.x9f_c00148{left:160.000000pt;}
.x29_c00148{left:161.066667pt;}
.x96_c00148{left:162.000000pt;}
.x87_c00148{left:164.533333pt;}
.x1b_c00148{left:166.533333pt;}
.x62_c00148{left:167.600000pt;}
.x83_c00148{left:168.933333pt;}
.x24_c00148{left:170.000000pt;}
.x9a_c00148{left:170.933333pt;}
.x13_c00148{left:172.400000pt;}
.x32_c00148{left:173.600000pt;}
.xb3_c00148{left:175.333333pt;}
.x78_c00148{left:176.400000pt;}
.x7d_c00148{left:177.866667pt;}
.x4a_c00148{left:179.200000pt;}
.xa4_c00148{left:182.666667pt;}
.x41_c00148{left:184.666667pt;}
.x4b_c00148{left:185.866667pt;}
.x7e_c00148{left:187.200000pt;}
.x14_c00148{left:189.733333pt;}
.x3b_c00148{left:191.066667pt;}
.x42_c00148{left:192.000000pt;}
.x9b_c00148{left:193.066667pt;}
.x7f_c00148{left:194.266667pt;}
.x5e_c00148{left:195.200000pt;}
.x8e_c00148{left:197.733333pt;}
.xac_c00148{left:199.466667pt;}
.x58_c00148{left:200.533333pt;}
.x72_c00148{left:202.400000pt;}
.x37_c00148{left:204.266667pt;}
.x1c_c00148{left:205.866667pt;}
.x99_c00148{left:207.466667pt;}
.x5f_c00148{left:209.333333pt;}
.x46_c00148{left:210.533333pt;}
.x25_c00148{left:212.533333pt;}
.x6a_c00148{left:214.133333pt;}
.xad_c00148{left:215.466667pt;}
.x7_c00148{left:216.533333pt;}
.x69_c00148{left:218.400000pt;}
.x73_c00148{left:219.333333pt;}
.xe_c00148{left:221.733333pt;}
.x92_c00148{left:222.933333pt;}
.x4c_c00148{left:224.933333pt;}
.xa5_c00148{left:225.866667pt;}
.x2c_c00148{left:226.800000pt;}
.x6b_c00148{left:228.533333pt;}
.x88_c00148{left:229.866667pt;}
.x9c_c00148{left:231.200000pt;}
.x33_c00148{left:232.800000pt;}
.x1d_c00148{left:234.933333pt;}
.xb4_c00148{left:236.800000pt;}
.xb1_c00148{left:237.866667pt;}
.x6f_c00148{left:239.333333pt;}
.x43_c00148{left:242.533333pt;}
.xa8_c00148{left:244.400000pt;}
.x89_c00148{left:246.000000pt;}
.x70_c00148{left:247.600000pt;}
.x53_c00148{left:248.533333pt;}
.x1e_c00148{left:250.000000pt;}
.x15_c00148{left:251.866667pt;}
.x59_c00148{left:253.600000pt;}
.x2d_c00148{left:254.933333pt;}
.x84_c00148{left:257.200000pt;}
.x63_c00148{left:260.533333pt;}
.x8f_c00148{left:262.400000pt;}
.x4d_c00148{left:263.600000pt;}
.x60_c00148{left:264.666667pt;}
.x48_c00148{left:266.400000pt;}
.x47_c00148{left:268.133333pt;}
.x8_c00148{left:269.333333pt;}
.x74_c00148{left:270.800000pt;}
.x64_c00148{left:274.000000pt;}
.x16_c00148{left:274.933333pt;}
.x1_c00148{left:275.866667pt;}
.x93_c00148{left:277.066667pt;}
.x3c_c00148{left:279.066667pt;}
.x4e_c00148{left:280.266667pt;}
.x34_c00148{left:281.733333pt;}
.x1f_c00148{left:283.333333pt;}
.x8a_c00148{left:286.000000pt;}
.x9d_c00148{left:287.333333pt;}
.xf_c00148{left:289.866667pt;}
.x97_c00148{left:291.066667pt;}
.x4f_c00148{left:293.066667pt;}
.x9_c00148{left:294.000000pt;}
.xb5_c00148{left:295.200000pt;}
.x26_c00148{left:296.400000pt;}
.x90_c00148{left:298.533333pt;}
.x54_c00148{left:302.666667pt;}
.x3d_c00148{left:303.733333pt;}
.x6c_c00148{left:307.600000pt;}
.x85_c00148{left:310.266667pt;}
.xa6_c00148{left:312.000000pt;}
.x65_c00148{left:313.333333pt;}
.x79_c00148{left:314.533333pt;}
.x2e_c00148{left:315.466667pt;}
.x38_c00148{left:317.600000pt;}
.x5a_c00148{left:318.533333pt;}
.x49_c00148{left:320.133333pt;}
.xb8_c00148{left:321.066667pt;}
.x55_c00148{left:322.800000pt;}
.x94_c00148{left:324.133333pt;}
.x2f_c00148{left:325.333333pt;}
.x75_c00148{left:327.466667pt;}
.xa9_c00148{left:329.333333pt;}
.x81_c00148{left:330.533333pt;}
.x3e_c00148{left:333.200000pt;}
.x80_c00148{left:336.000000pt;}
.x8b_c00148{left:336.933333pt;}
.x76_c00148{left:338.666667pt;}
.x35_c00148{left:340.266667pt;}
.xa_c00148{left:341.733333pt;}
.x44_c00148{left:344.666667pt;}
.xaa_c00148{left:346.666667pt;}
.x17_c00148{left:348.266667pt;}
.xa0_c00148{left:349.866667pt;}
.x20_c00148{left:351.200000pt;}
.x82_c00148{left:352.666667pt;}
.xb0_c00148{left:353.600000pt;}
.x5b_c00148{left:357.866667pt;}
.xb7_c00148{left:360.533333pt;}
.x11c_c00148{left:378.266667pt;}
.xf6_c00148{left:379.200000pt;}
.x12a_c00148{left:390.266667pt;}
.x15d_c00148{left:391.333333pt;}
.xf9_c00148{left:392.266667pt;}
.xb9_c00148{left:393.866667pt;}
.x13a_c00148{left:395.466667pt;}
.x11d_c00148{left:397.466667pt;}
.x13c_c00148{left:399.200000pt;}
.x127_c00148{left:402.000000pt;}
.x148_c00148{left:403.200000pt;}
.xff_c00148{left:404.533333pt;}
.x118_c00148{left:406.933333pt;}
.x10b_c00148{left:408.933333pt;}
.xe0_c00148{left:409.866667pt;}
.xc2_c00148{left:410.933333pt;}
.x152_c00148{left:411.866667pt;}
.x15e_c00148{left:412.800000pt;}
.xc1_c00148{left:413.733333pt;}
.xd6_c00148{left:414.666667pt;}
.xcc_c00148{left:416.133333pt;}
.x113_c00148{left:417.733333pt;}
.x130_c00148{left:419.200000pt;}
.x160_c00148{left:420.400000pt;}
.xc8_c00148{left:421.466667pt;}
.x13d_c00148{left:423.466667pt;}
.x105_c00148{left:424.533333pt;}
.x13f_c00148{left:425.866667pt;}
.x153_c00148{left:426.933333pt;}
.xba_c00148{left:428.133333pt;}
.xdc_c00148{left:430.000000pt;}
.xfa_c00148{left:431.066667pt;}
.x15c_c00148{left:432.266667pt;}
.xe5_c00148{left:433.333333pt;}
.x11e_c00148{left:434.266667pt;}
.x136_c00148{left:435.200000pt;}
.xbb_c00148{left:437.066667pt;}
.xf7_c00148{left:438.666667pt;}
.x147_c00148{left:439.733333pt;}
.x114_c00148{left:440.800000pt;}
.x12b_c00148{left:441.733333pt;}
.x14b_c00148{left:442.666667pt;}
.x12f_c00148{left:443.866667pt;}
.x155_c00148{left:444.800000pt;}
.xea_c00148{left:446.933333pt;}
.xe6_c00148{left:448.666667pt;}
.xbc_c00148{left:449.600000pt;}
.x122_c00148{left:451.200000pt;}
.x145_c00148{left:452.400000pt;}
.x151_c00148{left:454.000000pt;}
.xeb_c00148{left:454.933333pt;}
.x100_c00148{left:457.333333pt;}
.x158_c00148{left:458.266667pt;}
.x10c_c00148{left:459.866667pt;}
.x123_c00148{left:462.133333pt;}
.xc3_c00148{left:463.466667pt;}
.x13e_c00148{left:467.333333pt;}
.x140_c00148{left:468.400000pt;}
.x10d_c00148{left:469.466667pt;}
.x14a_c00148{left:470.400000pt;}
.xc9_c00148{left:471.333333pt;}
.x154_c00148{left:472.933333pt;}
.x135_c00148{left:474.666667pt;}
.x141_c00148{left:476.800000pt;}
.x131_c00148{left:478.400000pt;}
.xd7_c00148{left:479.600000pt;}
.x10e_c00148{left:481.600000pt;}
.xf1_c00148{left:483.200000pt;}
.x142_c00148{left:485.333333pt;}
.x137_c00148{left:488.000000pt;}
.xcd_c00148{left:490.000000pt;}
.xec_c00148{left:491.066667pt;}
.x159_c00148{left:492.400000pt;}
.x101_c00148{left:493.466667pt;}
.xed_c00148{left:494.800000pt;}
.x124_c00148{left:498.266667pt;}
.x156_c00148{left:500.133333pt;}
.x106_c00148{left:501.600000pt;}
.xce_c00148{left:503.733333pt;}
.xe7_c00148{left:506.933333pt;}
.xf2_c00148{left:507.866667pt;}
.xbd_c00148{left:509.733333pt;}
.x125_c00148{left:511.066667pt;}
.xd8_c00148{left:512.933333pt;}
.xdd_c00148{left:513.866667pt;}
.x10f_c00148{left:514.933333pt;}
.xfb_c00148{left:516.800000pt;}
.xee_c00148{left:518.800000pt;}
.x146_c00148{left:520.666667pt;}
.x120_c00148{left:521.600000pt;}
.xde_c00148{left:524.800000pt;}
.x12c_c00148{left:528.133333pt;}
.xe8_c00148{left:529.600000pt;}
.x102_c00148{left:530.933333pt;}
.x115_c00148{left:532.266667pt;}
.xd2_c00148{left:533.733333pt;}
.x150_c00148{left:535.200000pt;}
.xc4_c00148{left:536.133333pt;}
.xf3_c00148{left:539.200000pt;}
.xca_c00148{left:540.400000pt;}
.x11f_c00148{left:541.466667pt;}
.x119_c00148{left:542.533333pt;}
.x132_c00148{left:543.600000pt;}
.x13b_c00148{left:546.133333pt;}
.xe9_c00148{left:549.066667pt;}
.x2_c00148{left:552.666667pt;}
.x15a_c00148{left:553.866667pt;}
.x143_c00148{left:555.733333pt;}
.xbe_c00148{left:557.466667pt;}
.x138_c00148{left:559.333333pt;}
.x157_c00148{left:560.266667pt;}
.x107_c00148{left:562.000000pt;}
.xef_c00148{left:564.933333pt;}
.xcf_c00148{left:566.800000pt;}
.x128_c00148{left:567.866667pt;}
.x121_c00148{left:568.933333pt;}
.xf8_c00148{left:571.200000pt;}
.x149_c00148{left:572.533333pt;}
.xc5_c00148{left:576.400000pt;}
.xfc_c00148{left:577.333333pt;}
.xd9_c00148{left:579.733333pt;}
.x108_c00148{left:581.466667pt;}
.x12d_c00148{left:582.533333pt;}
.xfd_c00148{left:584.000000pt;}
.x14d_c00148{left:584.933333pt;}
.xdf_c00148{left:585.866667pt;}
.x110_c00148{left:588.533333pt;}
.x11a_c00148{left:590.533333pt;}
.x14c_c00148{left:591.866667pt;}
.x139_c00148{left:593.866667pt;}
.x103_c00148{left:594.933333pt;}
.x15b_c00148{left:596.800000pt;}
.xd3_c00148{left:597.733333pt;}
.x126_c00148{left:599.733333pt;}
.x111_c00148{left:601.066667pt;}
.xe1_c00148{left:606.000000pt;}
.x109_c00148{left:607.333333pt;}
.x133_c00148{left:608.266667pt;}
.x116_c00148{left:609.333333pt;}
.xd0_c00148{left:612.266667pt;}
.xbf_c00148{left:614.133333pt;}
.x11b_c00148{left:617.066667pt;}
.xcb_c00148{left:618.133333pt;}
.xd4_c00148{left:620.133333pt;}
.xe2_c00148{left:621.733333pt;}
.x129_c00148{left:622.933333pt;}
.x14e_c00148{left:624.933333pt;}
.xf0_c00148{left:626.400000pt;}
.xda_c00148{left:627.466667pt;}
.xf4_c00148{left:629.466667pt;}
.xc0_c00148{left:632.400000pt;}
.xc6_c00148{left:634.933333pt;}
.xfe_c00148{left:638.400000pt;}
.xd5_c00148{left:640.266667pt;}
.x134_c00148{left:641.866667pt;}
.x104_c00148{left:645.733333pt;}
.xf5_c00148{left:647.333333pt;}
.x10a_c00148{left:650.800000pt;}
.x3_c00148{left:652.533333pt;}
.x112_c00148{left:654.533333pt;}
.x14f_c00148{left:655.600000pt;}
.xe3_c00148{left:656.666667pt;}
.x144_c00148{left:658.666667pt;}
.xc7_c00148{left:659.866667pt;}
.x15f_c00148{left:661.066667pt;}
.x12e_c00148{left:662.000000pt;}
.xd1_c00148{left:664.133333pt;}
.xe4_c00148{left:666.000000pt;}
.x117_c00148{left:668.133333pt;}
.xdb_c00148{left:673.200000pt;}
.x161_c00148{left:773.066667pt;}
.x163_c00148{left:831.733333pt;}
.x162_c00148{left:833.866667pt;}
}





/* 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_c00149 {
    display:none;
  }
  .loading-indicator_c00149.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00149 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_c00149 { 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_c00149" -> "#page-container .classname_c00149")
 */
.pf_c00149 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00149 { /* 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_c00149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00149 { /* 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_c00149 { /* 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_c00149 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00149 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00149 {overflow:visible;}
  }
}
.c_c00149 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00149 { /* 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_c00149:after { /* webkit #35443 */
  content: '';
}
.t_c00149:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00149 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 */
}
.__c00149 { /* 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_c00149 { /* info for Javascript */
  display:none;
}
.l_c00149 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00149 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00149 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00149: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_c00149 {
    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_c00149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00149.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_c00149 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00149;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.000000;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;}
.m81_c00149{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m64_c00149{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mde_c00149{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md5_c00149{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mda_c00149{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00149{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md6_c00149{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00149{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00149{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00149{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md7_c00149{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m34_c00149{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m62_c00149{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m97_c00149{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mad_c00149{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00149{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00149{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00149{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00149{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00149{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00149{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00149{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00149{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00149{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m57_c00149{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m87_c00149{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m45_c00149{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m8_c00149{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m112_c00149{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00149{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m41_c00149{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m99_c00149{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m95_c00149{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00149{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m73_c00149{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m7_c00149{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00149{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m74_c00149{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m107_c00149{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m22_c00149{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m51_c00149{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00149{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m23_c00149{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00149{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m83_c00149{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m90_c00149{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m53_c00149{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m33_c00149{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00149{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m36_c00149{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me6_c00149{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00149{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md3_c00149{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m59_c00149{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m75_c00149{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00149{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00149{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m72_c00149{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00149{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m100_c00149{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m77_c00149{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m30_c00149{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00149{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mb_c00149{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m26_c00149{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00149{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00149{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00149{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00149{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00149{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00149{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m43_c00149{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md9_c00149{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m67_c00149{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00149{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mea_c00149{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m42_c00149{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.ma_c00149{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00149{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m46_c00149{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m16_c00149{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m31_c00149{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00149{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m63_c00149{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00149{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00149{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m17_c00149{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.meb_c00149{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00149{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m88_c00149{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00149{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md2_c00149{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00149{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.me7_c00149{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m14_c00149{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m19_c00149{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m105_c00149{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00149{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00149{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m21_c00149{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00149{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00149{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m85_c00149{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me5_c00149{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00149{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00149{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00149{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.me3_c00149{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m89_c00149{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00149{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m37_c00149{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00149{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00149{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m61_c00149{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00149{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00149{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m102_c00149{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md_c00149{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00149{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4_c00149{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00149{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m29_c00149{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m18_c00149{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00149{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00149{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m92_c00149{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00149{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.med_c00149{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m58_c00149{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00149{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00149{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m48_c00149{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m108_c00149{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m44_c00149{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m66_c00149{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m15_c00149{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00149{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m60_c00149{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00149{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m115_c00149{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00149{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m71_c00149{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mff_c00149{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00149{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00149{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m9_c00149{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m94_c00149{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00149{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m20_c00149{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m35_c00149{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00149{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m113_c00149{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me9_c00149{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00149{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mee_c00149{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m86_c00149{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m47_c00149{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m65_c00149{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me_c00149{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m32_c00149{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mba_c00149{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m69_c00149{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m28_c00149{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m52_c00149{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m56_c00149{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00149{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00149{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m13_c00149{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00149{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00149{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mab_c00149{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m109_c00149{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00149{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00149{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m5_c00149{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00149{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00149{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me4_c00149{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mef_c00149{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m49_c00149{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00149{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m103_c00149{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00149{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m79_c00149{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00149{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00149{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00149{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00149{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me1_c00149{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.me2_c00149{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00149{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00149{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m24_c00149{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m76_c00149{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m40_c00149{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00149{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m50_c00149{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mec_c00149{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00149{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m11_c00149{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mac_c00149{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00149{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mf_c00149{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00149{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m98_c00149{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00149{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00149{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00149{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00149{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12_c00149{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m55_c00149{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me8_c00149{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10_c00149{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00149{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m25_c00149{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00149{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00149{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);}
.mb6_c00149{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00149{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m82_c00149{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00149{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m91_c00149{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00149{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00149{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m78_c00149{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m101_c00149{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mc_c00149{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m68_c00149{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m54_c00149{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md4_c00149{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00149{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m39_c00149{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00149{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m38_c00149{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00149{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00149{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00149{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md8_c00149{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.maa_c00149{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00149{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00149{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00149{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00149{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m114_c00149{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m93_c00149{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m70_c00149{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00149{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m27_c00149{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m106_c00149{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m80_c00149{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.me0_c00149{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m104_c00149{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00149{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00149{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00149{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m110_c00149{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00149{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mae_c00149{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.md0_c00149{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m84_c00149{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.maf_c00149{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00149{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00149{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00149{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md1_c00149{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00149{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mce_c00149{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m96_c00149{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00149{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.mca_c00149{transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00149{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00149{transform:matrix(5.781750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.781750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.781750,0.000000,0.000000,0.250000,0,0);}
.m111_c00149{transform:matrix(21.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(21.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(21.840000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls0_c00149{letter-spacing:0.000000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{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__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00149{word-spacing:-3.735849px;}
.ws5_c00149{word-spacing:-2.232409px;}
.ws7_c00149{word-spacing:0.000000px;}
.ws0_c00149{word-spacing:0.018094px;}
.ws1_c00149{word-spacing:2.297297px;}
.ws2_c00149{word-spacing:23.211796px;}
.ws4_c00149{word-spacing:29.583333px;}
.ws3_c00149{word-spacing:32.250000px;}
._0_c00149{width:63.000000px;}
._1_c00149{width:74.166667px;}
.fc0_c00149{color:transparent;}
.fs6_c00149{font-size:24.000000px;}
.fs8_c00149{font-size:30.000000px;}
.fs5_c00149{font-size:36.000000px;}
.fs7_c00149{font-size:42.000000px;}
.fs3_c00149{font-size:54.000000px;}
.fs0_c00149{font-size:60.000000px;}
.fs2_c00149{font-size:66.000000px;}
.fs4_c00149{font-size:72.000000px;}
.fs1_c00149{font-size:120.000000px;}
.y0_c00149{bottom:0.000000px;}
.y6a_c00149{bottom:203.400000px;}
.y35_c00149{bottom:214.200000px;}
.y69_c00149{bottom:217.500000px;}
.y34_c00149{bottom:224.250000px;}
.y68_c00149{bottom:238.350000px;}
.y33_c00149{bottom:242.700000px;}
.y32_c00149{bottom:258.900000px;}
.y67_c00149{bottom:268.050000px;}
.y31_c00149{bottom:276.150000px;}
.y66_c00149{bottom:285.750000px;}
.y30_c00149{bottom:293.100000px;}
.y65_c00149{bottom:303.750000px;}
.y2f_c00149{bottom:309.600000px;}
.y64_c00149{bottom:321.450000px;}
.y2e_c00149{bottom:327.600000px;}
.y63_c00149{bottom:339.150000px;}
.y2d_c00149{bottom:344.550000px;}
.y62_c00149{bottom:356.850000px;}
.y2c_c00149{bottom:361.800000px;}
.y61_c00149{bottom:374.100000px;}
.y2b_c00149{bottom:378.300000px;}
.y60_c00149{bottom:395.700000px;}
.y2a_c00149{bottom:396.000000px;}
.y29_c00149{bottom:412.500000px;}
.y5f_c00149{bottom:413.700000px;}
.y28_c00149{bottom:430.500000px;}
.y5e_c00149{bottom:431.700000px;}
.y5d_c00149{bottom:448.950000px;}
.y27_c00149{bottom:450.300000px;}
.y5c_c00149{bottom:466.650000px;}
.y26_c00149{bottom:474.000000px;}
.y5b_c00149{bottom:484.350000px;}
.y25_c00149{bottom:491.700000px;}
.y5a_c00149{bottom:502.050000px;}
.y24_c00149{bottom:507.300000px;}
.y59_c00149{bottom:519.750000px;}
.y23_c00149{bottom:525.600000px;}
.y58_c00149{bottom:537.450000px;}
.y22_c00149{bottom:542.850000px;}
.y57_c00149{bottom:559.050000px;}
.y21_c00149{bottom:568.800000px;}
.y56_c00149{bottom:576.750000px;}
.y20_c00149{bottom:586.500000px;}
.y55_c00149{bottom:594.450000px;}
.y1f_c00149{bottom:608.100000px;}
.y54_c00149{bottom:612.450000px;}
.y1e_c00149{bottom:625.800000px;}
.y53_c00149{bottom:629.700000px;}
.y1d_c00149{bottom:643.800000px;}
.y52_c00149{bottom:647.400000px;}
.y1c_c00149{bottom:660.300000px;}
.y51_c00149{bottom:665.400000px;}
.y1b_c00149{bottom:678.600000px;}
.y50_c00149{bottom:683.100000px;}
.y1a_c00149{bottom:696.600000px;}
.y4f_c00149{bottom:701.100000px;}
.y19_c00149{bottom:713.850000px;}
.y4e_c00149{bottom:718.800000px;}
.y18_c00149{bottom:731.850000px;}
.y4d_c00149{bottom:736.500000px;}
.y17_c00149{bottom:749.100000px;}
.y4c_c00149{bottom:754.200000px;}
.y16_c00149{bottom:767.100000px;}
.y4b_c00149{bottom:771.900000px;}
.y15_c00149{bottom:784.350000px;}
.y4a_c00149{bottom:790.200000px;}
.y14_c00149{bottom:802.350000px;}
.y49_c00149{bottom:807.450000px;}
.y13_c00149{bottom:819.600000px;}
.y48_c00149{bottom:825.150000px;}
.y12_c00149{bottom:837.600000px;}
.y47_c00149{bottom:843.150000px;}
.y11_c00149{bottom:855.300000px;}
.y46_c00149{bottom:861.150000px;}
.y10_c00149{bottom:873.000000px;}
.y45_c00149{bottom:879.150000px;}
.yf_c00149{bottom:891.000000px;}
.y44_c00149{bottom:896.100000px;}
.ye_c00149{bottom:908.700000px;}
.y43_c00149{bottom:922.800000px;}
.yd_c00149{bottom:929.100000px;}
.y42_c00149{bottom:935.400000px;}
.yc_c00149{bottom:947.850000px;}
.y41_c00149{bottom:951.300000px;}
.y40_c00149{bottom:965.400000px;}
.yb_c00149{bottom:965.850000px;}
.y3f_c00149{bottom:980.100000px;}
.ya_c00149{bottom:986.400000px;}
.y3e_c00149{bottom:994.500000px;}
.y3d_c00149{bottom:1008.150000px;}
.y9_c00149{bottom:1009.200000px;}
.y3c_c00149{bottom:1022.850000px;}
.y8_c00149{bottom:1027.500000px;}
.y3b_c00149{bottom:1036.500000px;}
.y7_c00149{bottom:1048.350000px;}
.y3a_c00149{bottom:1053.000000px;}
.y6_c00149{bottom:1067.400000px;}
.y39_c00149{bottom:1075.200000px;}
.y5_c00149{bottom:1085.100000px;}
.y38_c00149{bottom:1093.500000px;}
.y4_c00149{bottom:1105.650000px;}
.y37_c00149{bottom:1111.200000px;}
.y3_c00149{bottom:1124.700000px;}
.y36_c00149{bottom:1128.900000px;}
.y2_c00149{bottom:1152.750000px;}
.y1_c00149{bottom:1153.050000px;}
.h8_c00149{height:24.000000px;}
.ha_c00149{height:30.000000px;}
.h7_c00149{height:36.000000px;}
.h9_c00149{height:42.000000px;}
.h5_c00149{height:54.000000px;}
.h2_c00149{height:60.000000px;}
.h4_c00149{height:66.000000px;}
.h6_c00149{height:72.000000px;}
.h3_c00149{height:120.000000px;}
.h1_c00149{height:1281.000000px;}
.h0_c00149{height:1281.240051px;}
.w1_c00149{width:953.250000px;}
.w0_c00149{width:953.280030px;}
.x0_c00149{left:0.000000px;}
.x1_c00149{left:176.100000px;}
.x3b_c00149{left:183.900000px;}
.x77_c00149{left:185.400000px;}
.x9b_c00149{left:190.500000px;}
.x3_c00149{left:197.250000px;}
.x12_c00149{left:198.450000px;}
.x22_c00149{left:199.950000px;}
.x2e_c00149{left:201.450000px;}
.x37_c00149{left:202.800000px;}
.x7f_c00149{left:203.850000px;}
.x79_c00149{left:209.850000px;}
.x95_c00149{left:210.900000px;}
.x8b_c00149{left:213.900000px;}
.xd_c00149{left:217.050000px;}
.x27_c00149{left:218.100000px;}
.x1d_c00149{left:219.900000px;}
.x2f_c00149{left:222.300000px;}
.x78_c00149{left:224.700000px;}
.x47_c00149{left:226.800000px;}
.x81_c00149{left:228.300000px;}
.x5d_c00149{left:230.400000px;}
.x1a_c00149{left:233.700000px;}
.x4_c00149{left:236.100000px;}
.x30_c00149{left:238.800000px;}
.xb_c00149{left:241.200000px;}
.x23_c00149{left:243.150000px;}
.x3c_c00149{left:245.400000px;}
.x3e_c00149{left:247.950000px;}
.x13_c00149{left:250.650000px;}
.x63_c00149{left:253.350000px;}
.x87_c00149{left:255.300000px;}
.x6c_c00149{left:256.500000px;}
.x80_c00149{left:260.400000px;}
.xc_c00149{left:261.750000px;}
.x5e_c00149{left:264.300000px;}
.xe_c00149{left:265.350000px;}
.x1e_c00149{left:266.700000px;}
.x31_c00149{left:268.350000px;}
.x8a_c00149{left:269.550000px;}
.x52_c00149{left:270.600000px;}
.x6a_c00149{left:272.700000px;}
.x14_c00149{left:274.350000px;}
.x4a_c00149{left:276.150000px;}
.x6d_c00149{left:277.350000px;}
.x32_c00149{left:278.400000px;}
.x38_c00149{left:279.600000px;}
.x88_c00149{left:282.300000px;}
.x53_c00149{left:284.250000px;}
.x72_c00149{left:286.350000px;}
.x3f_c00149{left:288.150000px;}
.x8f_c00149{left:289.650000px;}
.x91_c00149{left:291.300000px;}
.x6e_c00149{left:292.500000px;}
.x82_c00149{left:294.150000px;}
.x42_c00149{left:297.150000px;}
.x64_c00149{left:300.900000px;}
.x28_c00149{left:303.150000px;}
.x1b_c00149{left:304.650000px;}
.x54_c00149{left:305.850000px;}
.x5_c00149{left:307.350000px;}
.x59_c00149{left:309.600000px;}
.x93_c00149{left:311.550000px;}
.x5f_c00149{left:313.200000px;}
.x8c_c00149{left:314.700000px;}
.x48_c00149{left:315.750000px;}
.x15_c00149{left:316.800000px;}
.x43_c00149{left:318.450000px;}
.x39_c00149{left:319.500000px;}
.x29_c00149{left:320.850000px;}
.x73_c00149{left:323.850000px;}
.x83_c00149{left:326.250000px;}
.x6f_c00149{left:332.100000px;}
.x1c_c00149{left:333.150000px;}
.x65_c00149{left:335.100000px;}
.xf_c00149{left:336.300000px;}
.x3a_c00149{left:341.100000px;}
.x4f_c00149{left:342.750000px;}
.x24_c00149{left:344.700000px;}
.x84_c00149{left:345.750000px;}
.x99_c00149{left:347.250000px;}
.x44_c00149{left:349.050000px;}
.x98_c00149{left:350.700000px;}
.x1f_c00149{left:352.800000px;}
.x6_c00149{left:354.150000px;}
.x7a_c00149{left:359.250000px;}
.x16_c00149{left:362.550000px;}
.x60_c00149{left:369.750000px;}
.x25_c00149{left:370.950000px;}
.x33_c00149{left:372.000000px;}
.x74_c00149{left:374.250000px;}
.x7_c00149{left:375.450000px;}
.x70_c00149{left:380.250000px;}
.x51_c00149{left:382.650000px;}
.x2a_c00149{left:385.200000px;}
.x76_c00149{left:390.900000px;}
.x50_c00149{left:392.100000px;}
.x10_c00149{left:393.600000px;}
.x26_c00149{left:394.650000px;}
.x8d_c00149{left:396.000000px;}
.x7b_c00149{left:397.050000px;}
.x66_c00149{left:398.400000px;}
.x61_c00149{left:402.900000px;}
.x40_c00149{left:404.100000px;}
.x7c_c00149{left:405.750000px;}
.x5a_c00149{left:407.850000px;}
.x8_c00149{left:409.950000px;}
.x4b_c00149{left:413.850000px;}
.x67_c00149{left:415.350000px;}
.x9a_c00149{left:417.450000px;}
.x2_c00149{left:419.100000px;}
.x89_c00149{left:421.050000px;}
.x6b_c00149{left:422.100000px;}
.x94_c00149{left:426.000000px;}
.x34_c00149{left:427.800000px;}
.x17_c00149{left:429.150000px;}
.x75_c00149{left:430.800000px;}
.x55_c00149{left:433.500000px;}
.x5b_c00149{left:434.850000px;}
.x97_c00149{left:437.250000px;}
.x2b_c00149{left:439.200000px;}
.x9_c00149{left:440.250000px;}
.x4c_c00149{left:441.600000px;}
.x62_c00149{left:443.850000px;}
.x56_c00149{left:445.800000px;}
.x18_c00149{left:447.150000px;}
.x11_c00149{left:448.350000px;}
.x96_c00149{left:449.400000px;}
.x45_c00149{left:452.100000px;}
.x92_c00149{left:453.450000px;}
.x20_c00149{left:456.900000px;}
.xa_c00149{left:458.250000px;}
.x71_c00149{left:460.950000px;}
.x4d_c00149{left:464.700000px;}
.x2c_c00149{left:466.500000px;}
.x8e_c00149{left:468.300000px;}
.x7d_c00149{left:471.600000px;}
.x46_c00149{left:473.400000px;}
.x90_c00149{left:474.600000px;}
.x21_c00149{left:475.650000px;}
.x68_c00149{left:476.850000px;}
.x35_c00149{left:480.300000px;}
.x7e_c00149{left:481.350000px;}
.x5c_c00149{left:482.400000px;}
.x19_c00149{left:484.650000px;}
.x2d_c00149{left:486.600000px;}
.x41_c00149{left:489.000000px;}
.x49_c00149{left:492.150000px;}
.x57_c00149{left:496.500000px;}
.x36_c00149{left:498.000000px;}
.x85_c00149{left:500.550000px;}
.x3d_c00149{left:502.050000px;}
.x4e_c00149{left:504.000000px;}
.x58_c00149{left:508.350000px;}
.x86_c00149{left:513.150000px;}
.x69_c00149{left:514.950000px;}
.x9c_c00149{left:535.650000px;}
.xdd_c00149{left:537.450000px;}
.x143_c00149{left:545.400000px;}
.xbb_c00149{left:549.750000px;}
.xa4_c00149{left:552.000000px;}
.xaa_c00149{left:553.350000px;}
.xe0_c00149{left:555.150000px;}
.xe8_c00149{left:556.650000px;}
.x100_c00149{left:558.000000px;}
.x119_c00149{left:559.050000px;}
.x122_c00149{left:560.700000px;}
.x138_c00149{left:562.350000px;}
.x135_c00149{left:563.550000px;}
.xc1_c00149{left:564.750000px;}
.xca_c00149{left:566.250000px;}
.x144_c00149{left:568.050000px;}
.xa5_c00149{left:569.700000px;}
.x136_c00149{left:573.300000px;}
.x10a_c00149{left:578.550000px;}
.x9d_c00149{left:579.600000px;}
.x137_c00149{left:583.800000px;}
.xe3_c00149{left:585.000000px;}
.xab_c00149{left:586.500000px;}
.xee_c00149{left:588.600000px;}
.x112_c00149{left:589.650000px;}
.xfa_c00149{left:590.850000px;}
.x12a_c00149{left:592.350000px;}
.xb6_c00149{left:594.750000px;}
.xb2_c00149{left:596.700000px;}
.x13f_c00149{left:597.750000px;}
.x106_c00149{left:599.250000px;}
.x126_c00149{left:600.300000px;}
.x12b_c00149{left:603.450000px;}
.x10b_c00149{left:604.800000px;}
.xfb_c00149{left:606.000000px;}
.xa6_c00149{left:607.500000px;}
.xe9_c00149{left:608.850000px;}
.x107_c00149{left:612.900000px;}
.x13b_c00149{left:613.950000px;}
.xc6_c00149{left:615.450000px;}
.xd3_c00149{left:617.550000px;}
.xb3_c00149{left:620.100000px;}
.xde_c00149{left:624.600000px;}
.x114_c00149{left:625.800000px;}
.xcb_c00149{left:627.150000px;}
.xd8_c00149{left:628.950000px;}
.xef_c00149{left:630.750000px;}
.x145_c00149{left:634.650000px;}
.x11e_c00149{left:635.850000px;}
.x115_c00149{left:637.350000px;}
.xc7_c00149{left:639.600000px;}
.xbc_c00149{left:640.800000px;}
.x9e_c00149{left:642.900000px;}
.x11f_c00149{left:646.650000px;}
.xd9_c00149{left:648.750000px;}
.xac_c00149{left:650.250000px;}
.xfc_c00149{left:652.050000px;}
.xb7_c00149{left:655.200000px;}
.x101_c00149{left:657.300000px;}
.xea_c00149{left:660.000000px;}
.x13a_c00149{left:661.800000px;}
.xb4_c00149{left:664.800000px;}
.xa7_c00149{left:668.400000px;}
.xad_c00149{left:671.550000px;}
.x133_c00149{left:672.600000px;}
.x123_c00149{left:674.100000px;}
.x140_c00149{left:677.250000px;}
.xf8_c00149{left:678.900000px;}
.x10e_c00149{left:681.450000px;}
.xf0_c00149{left:685.050000px;}
.xf4_c00149{left:687.150000px;}
.xda_c00149{left:688.350000px;}
.x108_c00149{left:690.000000px;}
.xeb_c00149{left:691.500000px;}
.x12d_c00149{left:693.450000px;}
.xb5_c00149{left:695.700000px;}
.x120_c00149{left:697.800000px;}
.x9f_c00149{left:699.750000px;}
.x127_c00149{left:701.100000px;}
.xfd_c00149{left:702.750000px;}
.xd4_c00149{left:704.250000px;}
.xe4_c00149{left:706.350000px;}
.xdb_c00149{left:707.400000px;}
.x10f_c00149{left:708.450000px;}
.xcc_c00149{left:710.250000px;}
.x102_c00149{left:711.600000px;}
.xbd_c00149{left:713.100000px;}
.xd5_c00149{left:714.300000px;}
.xcd_c00149{left:716.400000px;}
.x13c_c00149{left:721.950000px;}
.xae_c00149{left:723.750000px;}
.xe1_c00149{left:724.800000px;}
.xbe_c00149{left:727.500000px;}
.xce_c00149{left:731.100000px;}
.x11c_c00149{left:733.950000px;}
.x130_c00149{left:736.800000px;}
.xcf_c00149{left:738.600000px;}
.x128_c00149{left:740.700000px;}
.xa0_c00149{left:742.950000px;}
.x117_c00149{left:744.450000px;}
.xd0_c00149{left:746.100000px;}
.x12e_c00149{left:748.950000px;}
.xa8_c00149{left:752.700000px;}
.xa1_c00149{left:755.850000px;}
.x13d_c00149{left:758.700000px;}
.xdc_c00149{left:759.900000px;}
.xf5_c00149{left:760.950000px;}
.xec_c00149{left:763.200000px;}
.x116_c00149{left:765.150000px;}
.xd1_c00149{left:767.400000px;}
.x109_c00149{left:768.600000px;}
.x110_c00149{left:769.650000px;}
.xfe_c00149{left:772.950000px;}
.xbf_c00149{left:774.000000px;}
.x11d_c00149{left:775.350000px;}
.x11a_c00149{left:777.900000px;}
.xa2_c00149{left:779.250000px;}
.xf6_c00149{left:780.750000px;}
.xd2_c00149{left:782.100000px;}
.x124_c00149{left:783.150000px;}
.x12f_c00149{left:784.650000px;}
.x141_c00149{left:786.300000px;}
.x10c_c00149{left:788.700000px;}
.xe5_c00149{left:790.200000px;}
.xf1_c00149{left:791.250000px;}
.xb8_c00149{left:793.050000px;}
.x103_c00149{left:794.700000px;}
.xaf_c00149{left:796.050000px;}
.x10d_c00149{left:797.400000px;}
.xa3_c00149{left:799.350000px;}
.xc4_c00149{left:800.850000px;}
.xc8_c00149{left:801.900000px;}
.xd6_c00149{left:803.550000px;}
.xe6_c00149{left:807.150000px;}
.xf9_c00149{left:809.250000px;}
.xe2_c00149{left:812.550000px;}
.xff_c00149{left:814.050000px;}
.x132_c00149{left:816.450000px;}
.xb0_c00149{left:817.650000px;}
.xf2_c00149{left:819.000000px;}
.x142_c00149{left:820.500000px;}
.xb9_c00149{left:823.950000px;}
.xc2_c00149{left:828.600000px;}
.xa9_c00149{left:830.550000px;}
.xd7_c00149{left:832.350000px;}
.x131_c00149{left:833.550000px;}
.x13e_c00149{left:835.350000px;}
.x12c_c00149{left:838.500000px;}
.xdf_c00149{left:839.850000px;}
.x118_c00149{left:843.750000px;}
.xf7_c00149{left:845.550000px;}
.xe7_c00149{left:846.750000px;}
.xed_c00149{left:848.550000px;}
.x111_c00149{left:849.600000px;}
.x11b_c00149{left:850.650000px;}
.xc3_c00149{left:852.300000px;}
.x139_c00149{left:854.400000px;}
.x129_c00149{left:856.200000px;}
.xba_c00149{left:857.850000px;}
.xc0_c00149{left:858.900000px;}
.xc9_c00149{left:859.950000px;}
.xc5_c00149{left:861.300000px;}
.x125_c00149{left:863.850000px;}
.x104_c00149{left:865.950000px;}
.x134_c00149{left:867.750000px;}
.xb1_c00149{left:868.800000px;}
.x113_c00149{left:870.300000px;}
.xf3_c00149{left:871.500000px;}
.x121_c00149{left:875.700000px;}
.x105_c00149{left:883.950000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws6_c00149{word-spacing:-3.320755pt;}
.ws5_c00149{word-spacing:-1.984364pt;}
.ws7_c00149{word-spacing:0.000000pt;}
.ws0_c00149{word-spacing:0.016084pt;}
.ws1_c00149{word-spacing:2.042042pt;}
.ws2_c00149{word-spacing:20.632708pt;}
.ws4_c00149{word-spacing:26.296296pt;}
.ws3_c00149{word-spacing:28.666667pt;}
._0_c00149{width:56.000000pt;}
._1_c00149{width:65.925926pt;}
.fs6_c00149{font-size:21.333333pt;}
.fs8_c00149{font-size:26.666667pt;}
.fs5_c00149{font-size:32.000000pt;}
.fs7_c00149{font-size:37.333333pt;}
.fs3_c00149{font-size:48.000000pt;}
.fs0_c00149{font-size:53.333333pt;}
.fs2_c00149{font-size:58.666667pt;}
.fs4_c00149{font-size:64.000000pt;}
.fs1_c00149{font-size:106.666667pt;}
.y0_c00149{bottom:0.000000pt;}
.y6a_c00149{bottom:180.800000pt;}
.y35_c00149{bottom:190.400000pt;}
.y69_c00149{bottom:193.333333pt;}
.y34_c00149{bottom:199.333333pt;}
.y68_c00149{bottom:211.866667pt;}
.y33_c00149{bottom:215.733333pt;}
.y32_c00149{bottom:230.133333pt;}
.y67_c00149{bottom:238.266667pt;}
.y31_c00149{bottom:245.466667pt;}
.y66_c00149{bottom:254.000000pt;}
.y30_c00149{bottom:260.533333pt;}
.y65_c00149{bottom:270.000000pt;}
.y2f_c00149{bottom:275.200000pt;}
.y64_c00149{bottom:285.733333pt;}
.y2e_c00149{bottom:291.200000pt;}
.y63_c00149{bottom:301.466667pt;}
.y2d_c00149{bottom:306.266667pt;}
.y62_c00149{bottom:317.200000pt;}
.y2c_c00149{bottom:321.600000pt;}
.y61_c00149{bottom:332.533333pt;}
.y2b_c00149{bottom:336.266667pt;}
.y60_c00149{bottom:351.733333pt;}
.y2a_c00149{bottom:352.000000pt;}
.y29_c00149{bottom:366.666667pt;}
.y5f_c00149{bottom:367.733333pt;}
.y28_c00149{bottom:382.666667pt;}
.y5e_c00149{bottom:383.733333pt;}
.y5d_c00149{bottom:399.066667pt;}
.y27_c00149{bottom:400.266667pt;}
.y5c_c00149{bottom:414.800000pt;}
.y26_c00149{bottom:421.333333pt;}
.y5b_c00149{bottom:430.533333pt;}
.y25_c00149{bottom:437.066667pt;}
.y5a_c00149{bottom:446.266667pt;}
.y24_c00149{bottom:450.933333pt;}
.y59_c00149{bottom:462.000000pt;}
.y23_c00149{bottom:467.200000pt;}
.y58_c00149{bottom:477.733333pt;}
.y22_c00149{bottom:482.533333pt;}
.y57_c00149{bottom:496.933333pt;}
.y21_c00149{bottom:505.600000pt;}
.y56_c00149{bottom:512.666667pt;}
.y20_c00149{bottom:521.333333pt;}
.y55_c00149{bottom:528.400000pt;}
.y1f_c00149{bottom:540.533333pt;}
.y54_c00149{bottom:544.400000pt;}
.y1e_c00149{bottom:556.266667pt;}
.y53_c00149{bottom:559.733333pt;}
.y1d_c00149{bottom:572.266667pt;}
.y52_c00149{bottom:575.466667pt;}
.y1c_c00149{bottom:586.933333pt;}
.y51_c00149{bottom:591.466667pt;}
.y1b_c00149{bottom:603.200000pt;}
.y50_c00149{bottom:607.200000pt;}
.y1a_c00149{bottom:619.200000pt;}
.y4f_c00149{bottom:623.200000pt;}
.y19_c00149{bottom:634.533333pt;}
.y4e_c00149{bottom:638.933333pt;}
.y18_c00149{bottom:650.533333pt;}
.y4d_c00149{bottom:654.666667pt;}
.y17_c00149{bottom:665.866667pt;}
.y4c_c00149{bottom:670.400000pt;}
.y16_c00149{bottom:681.866667pt;}
.y4b_c00149{bottom:686.133333pt;}
.y15_c00149{bottom:697.200000pt;}
.y4a_c00149{bottom:702.400000pt;}
.y14_c00149{bottom:713.200000pt;}
.y49_c00149{bottom:717.733333pt;}
.y13_c00149{bottom:728.533333pt;}
.y48_c00149{bottom:733.466667pt;}
.y12_c00149{bottom:744.533333pt;}
.y47_c00149{bottom:749.466667pt;}
.y11_c00149{bottom:760.266667pt;}
.y46_c00149{bottom:765.466667pt;}
.y10_c00149{bottom:776.000000pt;}
.y45_c00149{bottom:781.466667pt;}
.yf_c00149{bottom:792.000000pt;}
.y44_c00149{bottom:796.533333pt;}
.ye_c00149{bottom:807.733333pt;}
.y43_c00149{bottom:820.266667pt;}
.yd_c00149{bottom:825.866667pt;}
.y42_c00149{bottom:831.466667pt;}
.yc_c00149{bottom:842.533333pt;}
.y41_c00149{bottom:845.600000pt;}
.y40_c00149{bottom:858.133333pt;}
.yb_c00149{bottom:858.533333pt;}
.y3f_c00149{bottom:871.200000pt;}
.ya_c00149{bottom:876.800000pt;}
.y3e_c00149{bottom:884.000000pt;}
.y3d_c00149{bottom:896.133333pt;}
.y9_c00149{bottom:897.066667pt;}
.y3c_c00149{bottom:909.200000pt;}
.y8_c00149{bottom:913.333333pt;}
.y3b_c00149{bottom:921.333333pt;}
.y7_c00149{bottom:931.866667pt;}
.y3a_c00149{bottom:936.000000pt;}
.y6_c00149{bottom:948.800000pt;}
.y39_c00149{bottom:955.733333pt;}
.y5_c00149{bottom:964.533333pt;}
.y38_c00149{bottom:972.000000pt;}
.y4_c00149{bottom:982.800000pt;}
.y37_c00149{bottom:987.733333pt;}
.y3_c00149{bottom:999.733333pt;}
.y36_c00149{bottom:1003.466667pt;}
.y2_c00149{bottom:1024.666667pt;}
.y1_c00149{bottom:1024.933333pt;}
.h8_c00149{height:21.333333pt;}
.ha_c00149{height:26.666667pt;}
.h7_c00149{height:32.000000pt;}
.h9_c00149{height:37.333333pt;}
.h5_c00149{height:48.000000pt;}
.h2_c00149{height:53.333333pt;}
.h4_c00149{height:58.666667pt;}
.h6_c00149{height:64.000000pt;}
.h3_c00149{height:106.666667pt;}
.h1_c00149{height:1138.666667pt;}
.h0_c00149{height:1138.880045pt;}
.w1_c00149{width:847.333333pt;}
.w0_c00149{width:847.360027pt;}
.x0_c00149{left:0.000000pt;}
.x1_c00149{left:156.533333pt;}
.x3b_c00149{left:163.466667pt;}
.x77_c00149{left:164.800000pt;}
.x9b_c00149{left:169.333333pt;}
.x3_c00149{left:175.333333pt;}
.x12_c00149{left:176.400000pt;}
.x22_c00149{left:177.733333pt;}
.x2e_c00149{left:179.066667pt;}
.x37_c00149{left:180.266667pt;}
.x7f_c00149{left:181.200000pt;}
.x79_c00149{left:186.533333pt;}
.x95_c00149{left:187.466667pt;}
.x8b_c00149{left:190.133333pt;}
.xd_c00149{left:192.933333pt;}
.x27_c00149{left:193.866667pt;}
.x1d_c00149{left:195.466667pt;}
.x2f_c00149{left:197.600000pt;}
.x78_c00149{left:199.733333pt;}
.x47_c00149{left:201.600000pt;}
.x81_c00149{left:202.933333pt;}
.x5d_c00149{left:204.800000pt;}
.x1a_c00149{left:207.733333pt;}
.x4_c00149{left:209.866667pt;}
.x30_c00149{left:212.266667pt;}
.xb_c00149{left:214.400000pt;}
.x23_c00149{left:216.133333pt;}
.x3c_c00149{left:218.133333pt;}
.x3e_c00149{left:220.400000pt;}
.x13_c00149{left:222.800000pt;}
.x63_c00149{left:225.200000pt;}
.x87_c00149{left:226.933333pt;}
.x6c_c00149{left:228.000000pt;}
.x80_c00149{left:231.466667pt;}
.xc_c00149{left:232.666667pt;}
.x5e_c00149{left:234.933333pt;}
.xe_c00149{left:235.866667pt;}
.x1e_c00149{left:237.066667pt;}
.x31_c00149{left:238.533333pt;}
.x8a_c00149{left:239.600000pt;}
.x52_c00149{left:240.533333pt;}
.x6a_c00149{left:242.400000pt;}
.x14_c00149{left:243.866667pt;}
.x4a_c00149{left:245.466667pt;}
.x6d_c00149{left:246.533333pt;}
.x32_c00149{left:247.466667pt;}
.x38_c00149{left:248.533333pt;}
.x88_c00149{left:250.933333pt;}
.x53_c00149{left:252.666667pt;}
.x72_c00149{left:254.533333pt;}
.x3f_c00149{left:256.133333pt;}
.x8f_c00149{left:257.466667pt;}
.x91_c00149{left:258.933333pt;}
.x6e_c00149{left:260.000000pt;}
.x82_c00149{left:261.466667pt;}
.x42_c00149{left:264.133333pt;}
.x64_c00149{left:267.466667pt;}
.x28_c00149{left:269.466667pt;}
.x1b_c00149{left:270.800000pt;}
.x54_c00149{left:271.866667pt;}
.x5_c00149{left:273.200000pt;}
.x59_c00149{left:275.200000pt;}
.x93_c00149{left:276.933333pt;}
.x5f_c00149{left:278.400000pt;}
.x8c_c00149{left:279.733333pt;}
.x48_c00149{left:280.666667pt;}
.x15_c00149{left:281.600000pt;}
.x43_c00149{left:283.066667pt;}
.x39_c00149{left:284.000000pt;}
.x29_c00149{left:285.200000pt;}
.x73_c00149{left:287.866667pt;}
.x83_c00149{left:290.000000pt;}
.x6f_c00149{left:295.200000pt;}
.x1c_c00149{left:296.133333pt;}
.x65_c00149{left:297.866667pt;}
.xf_c00149{left:298.933333pt;}
.x3a_c00149{left:303.200000pt;}
.x4f_c00149{left:304.666667pt;}
.x24_c00149{left:306.400000pt;}
.x84_c00149{left:307.333333pt;}
.x99_c00149{left:308.666667pt;}
.x44_c00149{left:310.266667pt;}
.x98_c00149{left:311.733333pt;}
.x1f_c00149{left:313.600000pt;}
.x6_c00149{left:314.800000pt;}
.x7a_c00149{left:319.333333pt;}
.x16_c00149{left:322.266667pt;}
.x60_c00149{left:328.666667pt;}
.x25_c00149{left:329.733333pt;}
.x33_c00149{left:330.666667pt;}
.x74_c00149{left:332.666667pt;}
.x7_c00149{left:333.733333pt;}
.x70_c00149{left:338.000000pt;}
.x51_c00149{left:340.133333pt;}
.x2a_c00149{left:342.400000pt;}
.x76_c00149{left:347.466667pt;}
.x50_c00149{left:348.533333pt;}
.x10_c00149{left:349.866667pt;}
.x26_c00149{left:350.800000pt;}
.x8d_c00149{left:352.000000pt;}
.x7b_c00149{left:352.933333pt;}
.x66_c00149{left:354.133333pt;}
.x61_c00149{left:358.133333pt;}
.x40_c00149{left:359.200000pt;}
.x7c_c00149{left:360.666667pt;}
.x5a_c00149{left:362.533333pt;}
.x8_c00149{left:364.400000pt;}
.x4b_c00149{left:367.866667pt;}
.x67_c00149{left:369.200000pt;}
.x9a_c00149{left:371.066667pt;}
.x2_c00149{left:372.533333pt;}
.x89_c00149{left:374.266667pt;}
.x6b_c00149{left:375.200000pt;}
.x94_c00149{left:378.666667pt;}
.x34_c00149{left:380.266667pt;}
.x17_c00149{left:381.466667pt;}
.x75_c00149{left:382.933333pt;}
.x55_c00149{left:385.333333pt;}
.x5b_c00149{left:386.533333pt;}
.x97_c00149{left:388.666667pt;}
.x2b_c00149{left:390.400000pt;}
.x9_c00149{left:391.333333pt;}
.x4c_c00149{left:392.533333pt;}
.x62_c00149{left:394.533333pt;}
.x56_c00149{left:396.266667pt;}
.x18_c00149{left:397.466667pt;}
.x11_c00149{left:398.533333pt;}
.x96_c00149{left:399.466667pt;}
.x45_c00149{left:401.866667pt;}
.x92_c00149{left:403.066667pt;}
.x20_c00149{left:406.133333pt;}
.xa_c00149{left:407.333333pt;}
.x71_c00149{left:409.733333pt;}
.x4d_c00149{left:413.066667pt;}
.x2c_c00149{left:414.666667pt;}
.x8e_c00149{left:416.266667pt;}
.x7d_c00149{left:419.200000pt;}
.x46_c00149{left:420.800000pt;}
.x90_c00149{left:421.866667pt;}
.x21_c00149{left:422.800000pt;}
.x68_c00149{left:423.866667pt;}
.x35_c00149{left:426.933333pt;}
.x7e_c00149{left:427.866667pt;}
.x5c_c00149{left:428.800000pt;}
.x19_c00149{left:430.800000pt;}
.x2d_c00149{left:432.533333pt;}
.x41_c00149{left:434.666667pt;}
.x49_c00149{left:437.466667pt;}
.x57_c00149{left:441.333333pt;}
.x36_c00149{left:442.666667pt;}
.x85_c00149{left:444.933333pt;}
.x3d_c00149{left:446.266667pt;}
.x4e_c00149{left:448.000000pt;}
.x58_c00149{left:451.866667pt;}
.x86_c00149{left:456.133333pt;}
.x69_c00149{left:457.733333pt;}
.x9c_c00149{left:476.133333pt;}
.xdd_c00149{left:477.733333pt;}
.x143_c00149{left:484.800000pt;}
.xbb_c00149{left:488.666667pt;}
.xa4_c00149{left:490.666667pt;}
.xaa_c00149{left:491.866667pt;}
.xe0_c00149{left:493.466667pt;}
.xe8_c00149{left:494.800000pt;}
.x100_c00149{left:496.000000pt;}
.x119_c00149{left:496.933333pt;}
.x122_c00149{left:498.400000pt;}
.x138_c00149{left:499.866667pt;}
.x135_c00149{left:500.933333pt;}
.xc1_c00149{left:502.000000pt;}
.xca_c00149{left:503.333333pt;}
.x144_c00149{left:504.933333pt;}
.xa5_c00149{left:506.400000pt;}
.x136_c00149{left:509.600000pt;}
.x10a_c00149{left:514.266667pt;}
.x9d_c00149{left:515.200000pt;}
.x137_c00149{left:518.933333pt;}
.xe3_c00149{left:520.000000pt;}
.xab_c00149{left:521.333333pt;}
.xee_c00149{left:523.200000pt;}
.x112_c00149{left:524.133333pt;}
.xfa_c00149{left:525.200000pt;}
.x12a_c00149{left:526.533333pt;}
.xb6_c00149{left:528.666667pt;}
.xb2_c00149{left:530.400000pt;}
.x13f_c00149{left:531.333333pt;}
.x106_c00149{left:532.666667pt;}
.x126_c00149{left:533.600000pt;}
.x12b_c00149{left:536.400000pt;}
.x10b_c00149{left:537.600000pt;}
.xfb_c00149{left:538.666667pt;}
.xa6_c00149{left:540.000000pt;}
.xe9_c00149{left:541.200000pt;}
.x107_c00149{left:544.800000pt;}
.x13b_c00149{left:545.733333pt;}
.xc6_c00149{left:547.066667pt;}
.xd3_c00149{left:548.933333pt;}
.xb3_c00149{left:551.200000pt;}
.xde_c00149{left:555.200000pt;}
.x114_c00149{left:556.266667pt;}
.xcb_c00149{left:557.466667pt;}
.xd8_c00149{left:559.066667pt;}
.xef_c00149{left:560.666667pt;}
.x145_c00149{left:564.133333pt;}
.x11e_c00149{left:565.200000pt;}
.x115_c00149{left:566.533333pt;}
.xc7_c00149{left:568.533333pt;}
.xbc_c00149{left:569.600000pt;}
.x9e_c00149{left:571.466667pt;}
.x11f_c00149{left:574.800000pt;}
.xd9_c00149{left:576.666667pt;}
.xac_c00149{left:578.000000pt;}
.xfc_c00149{left:579.600000pt;}
.xb7_c00149{left:582.400000pt;}
.x101_c00149{left:584.266667pt;}
.xea_c00149{left:586.666667pt;}
.x13a_c00149{left:588.266667pt;}
.xb4_c00149{left:590.933333pt;}
.xa7_c00149{left:594.133333pt;}
.xad_c00149{left:596.933333pt;}
.x133_c00149{left:597.866667pt;}
.x123_c00149{left:599.200000pt;}
.x140_c00149{left:602.000000pt;}
.xf8_c00149{left:603.466667pt;}
.x10e_c00149{left:605.733333pt;}
.xf0_c00149{left:608.933333pt;}
.xf4_c00149{left:610.800000pt;}
.xda_c00149{left:611.866667pt;}
.x108_c00149{left:613.333333pt;}
.xeb_c00149{left:614.666667pt;}
.x12d_c00149{left:616.400000pt;}
.xb5_c00149{left:618.400000pt;}
.x120_c00149{left:620.266667pt;}
.x9f_c00149{left:622.000000pt;}
.x127_c00149{left:623.200000pt;}
.xfd_c00149{left:624.666667pt;}
.xd4_c00149{left:626.000000pt;}
.xe4_c00149{left:627.866667pt;}
.xdb_c00149{left:628.800000pt;}
.x10f_c00149{left:629.733333pt;}
.xcc_c00149{left:631.333333pt;}
.x102_c00149{left:632.533333pt;}
.xbd_c00149{left:633.866667pt;}
.xd5_c00149{left:634.933333pt;}
.xcd_c00149{left:636.800000pt;}
.x13c_c00149{left:641.733333pt;}
.xae_c00149{left:643.333333pt;}
.xe1_c00149{left:644.266667pt;}
.xbe_c00149{left:646.666667pt;}
.xce_c00149{left:649.866667pt;}
.x11c_c00149{left:652.400000pt;}
.x130_c00149{left:654.933333pt;}
.xcf_c00149{left:656.533333pt;}
.x128_c00149{left:658.400000pt;}
.xa0_c00149{left:660.400000pt;}
.x117_c00149{left:661.733333pt;}
.xd0_c00149{left:663.200000pt;}
.x12e_c00149{left:665.733333pt;}
.xa8_c00149{left:669.066667pt;}
.xa1_c00149{left:671.866667pt;}
.x13d_c00149{left:674.400000pt;}
.xdc_c00149{left:675.466667pt;}
.xf5_c00149{left:676.400000pt;}
.xec_c00149{left:678.400000pt;}
.x116_c00149{left:680.133333pt;}
.xd1_c00149{left:682.133333pt;}
.x109_c00149{left:683.200000pt;}
.x110_c00149{left:684.133333pt;}
.xfe_c00149{left:687.066667pt;}
.xbf_c00149{left:688.000000pt;}
.x11d_c00149{left:689.200000pt;}
.x11a_c00149{left:691.466667pt;}
.xa2_c00149{left:692.666667pt;}
.xf6_c00149{left:694.000000pt;}
.xd2_c00149{left:695.200000pt;}
.x124_c00149{left:696.133333pt;}
.x12f_c00149{left:697.466667pt;}
.x141_c00149{left:698.933333pt;}
.x10c_c00149{left:701.066667pt;}
.xe5_c00149{left:702.400000pt;}
.xf1_c00149{left:703.333333pt;}
.xb8_c00149{left:704.933333pt;}
.x103_c00149{left:706.400000pt;}
.xaf_c00149{left:707.600000pt;}
.x10d_c00149{left:708.800000pt;}
.xa3_c00149{left:710.533333pt;}
.xc4_c00149{left:711.866667pt;}
.xc8_c00149{left:712.800000pt;}
.xd6_c00149{left:714.266667pt;}
.xe6_c00149{left:717.466667pt;}
.xf9_c00149{left:719.333333pt;}
.xe2_c00149{left:722.266667pt;}
.xff_c00149{left:723.600000pt;}
.x132_c00149{left:725.733333pt;}
.xb0_c00149{left:726.800000pt;}
.xf2_c00149{left:728.000000pt;}
.x142_c00149{left:729.333333pt;}
.xb9_c00149{left:732.400000pt;}
.xc2_c00149{left:736.533333pt;}
.xa9_c00149{left:738.266667pt;}
.xd7_c00149{left:739.866667pt;}
.x131_c00149{left:740.933333pt;}
.x13e_c00149{left:742.533333pt;}
.x12c_c00149{left:745.333333pt;}
.xdf_c00149{left:746.533333pt;}
.x118_c00149{left:750.000000pt;}
.xf7_c00149{left:751.600000pt;}
.xe7_c00149{left:752.666667pt;}
.xed_c00149{left:754.266667pt;}
.x111_c00149{left:755.200000pt;}
.x11b_c00149{left:756.133333pt;}
.xc3_c00149{left:757.600000pt;}
.x139_c00149{left:759.466667pt;}
.x129_c00149{left:761.066667pt;}
.xba_c00149{left:762.533333pt;}
.xc0_c00149{left:763.466667pt;}
.xc9_c00149{left:764.400000pt;}
.xc5_c00149{left:765.600000pt;}
.x125_c00149{left:767.866667pt;}
.x104_c00149{left:769.733333pt;}
.x134_c00149{left:771.333333pt;}
.xb1_c00149{left:772.266667pt;}
.x113_c00149{left:773.600000pt;}
.xf3_c00149{left:774.666667pt;}
.x121_c00149{left:778.400000pt;}
.x105_c00149{left:785.733333pt;}
}





/* 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_c00150 {
    display:none;
  }
  .loading-indicator_c00150.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00150 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_c00150 { 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_c00150" -> "#page-container .classname_c00150")
 */
.pf_c00150 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00150 { /* 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_c00150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00150 { /* 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_c00150 { /* 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_c00150 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00150 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00150 {overflow:visible;}
  }
}
.c_c00150 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00150 { /* 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_c00150:after { /* webkit #35443 */
  content: '';
}
.t_c00150:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00150 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 */
}
.__c00150 { /* 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_c00150 { /* info for Javascript */
  display:none;
}
.l_c00150 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00150 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00150 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00150: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_c00150 {
    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_c00150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00150.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_c00150 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00150;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.000000;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;}
.mc9_c00150{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00150{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00150{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00150{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00150{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00150{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00150{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m11_c00150{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md1_c00150{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00150{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m43_c00150{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc_c00150{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m114_c00150{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00150{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00150{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00150{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00150{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00150{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00150{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m99_c00150{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.m97_c00150{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mad_c00150{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m90_c00150{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m84_c00150{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00150{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m45_c00150{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00150{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m109_c00150{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00150{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m119_c00150{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00150{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m96_c00150{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00150{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m56_c00150{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m111_c00150{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00150{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00150{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.me_c00150{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me5_c00150{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00150{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m19_c00150{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m86_c00150{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00150{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.me6_c00150{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m77_c00150{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m85_c00150{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m40_c00150{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m28_c00150{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m110_c00150{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00150{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00150{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00150{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00150{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m36_c00150{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m63_c00150{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00150{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m98_c00150{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m102_c00150{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m80_c00150{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8_c00150{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m20_c00150{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me0_c00150{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m52_c00150{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mb_c00150{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m118_c00150{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m29_c00150{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me7_c00150{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m15_c00150{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m5_c00150{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md4_c00150{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00150{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m100_c00150{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.md8_c00150{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00150{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m13_c00150{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m88_c00150{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m78_c00150{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m31_c00150{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00150{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00150{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00150{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m73_c00150{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m38_c00150{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m17_c00150{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00150{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00150{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00150{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00150{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me9_c00150{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m39_c00150{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m60_c00150{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma_c00150{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m74_c00150{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00150{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7_c00150{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00150{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00150{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00150{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00150{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00150{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m24_c00150{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00150{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00150{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00150{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00150{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00150{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me2_c00150{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m14_c00150{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md5_c00150{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00150{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me1_c00150{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mda_c00150{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf_c00150{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m34_c00150{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00150{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m30_c00150{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00150{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00150{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00150{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m23_c00150{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m61_c00150{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me8_c00150{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m18_c00150{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00150{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m12_c00150{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00150{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md7_c00150{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00150{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m50_c00150{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m108_c00150{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m42_c00150{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00150{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m33_c00150{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00150{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00150{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md9_c00150{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m16_c00150{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.meb_c00150{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m25_c00150{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00150{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m44_c00150{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m49_c00150{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00150{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m93_c00150{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00150{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m67_c00150{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md_c00150{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m55_c00150{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00150{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m95_c00150{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md3_c00150{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m27_c00150{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m68_c00150{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mba_c00150{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00150{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.md0_c00150{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m26_c00150{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00150{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00150{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m117_c00150{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00150{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m91_c00150{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00150{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m62_c00150{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00150{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m47_c00150{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md2_c00150{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m71_c00150{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m10_c00150{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m92_c00150{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2_c00150{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00150{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m103_c00150{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m54_c00150{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m106_c00150{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mce_c00150{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00150{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00150{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00150{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00150{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m53_c00150{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m35_c00150{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m59_c00150{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m32_c00150{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00150{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00150{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m81_c00150{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m82_c00150{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00150{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00150{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m72_c00150{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m83_c00150{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00150{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00150{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m48_c00150{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00150{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00150{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00150{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m64_c00150{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m104_c00150{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00150{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00150{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m94_c00150{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md6_c00150{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m69_c00150{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m65_c00150{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m107_c00150{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00150{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m58_c00150{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m46_c00150{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00150{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00150{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m21_c00150{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m70_c00150{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00150{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mac_c00150{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00150{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mca_c00150{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00150{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00150{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m51_c00150{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00150{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.med_c00150{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00150{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00150{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00150{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00150{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);}
.mb0_c00150{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m75_c00150{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m57_c00150{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00150{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.maa_c00150{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00150{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m101_c00150{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mab_c00150{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m76_c00150{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00150{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m66_c00150{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me4_c00150{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00150{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00150{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00150{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mde_c00150{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m116_c00150{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00150{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00150{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00150{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00150{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00150{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.maf_c00150{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00150{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00150{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mef_c00150{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m37_c00150{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00150{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m89_c00150{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00150{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m41_c00150{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00150{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00150{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00150{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mae_c00150{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00150{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mea_c00150{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mee_c00150{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me3_c00150{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00150{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m105_c00150{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00150{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00150{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mff_c00150{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00150{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mec_c00150{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m112_c00150{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00150{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m87_c00150{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m79_c00150{transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);}
.m115_c00150{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00150{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00150{transform:matrix(0.380750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380750,0.000000,0.000000,0.250000,0,0);}
.m113_c00150{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00150{transform:matrix(0.524000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls0_c00150{letter-spacing:0.000000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{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__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00150{word-spacing:-10.884498px;}
.ws6_c00150{word-spacing:-9.674556px;}
.ws0_c00150{word-spacing:-0.040431px;}
.ws9_c00150{word-spacing:0.000000px;}
.ws4_c00150{word-spacing:0.618557px;}
.ws3_c00150{word-spacing:7.500000px;}
.wsb_c00150{word-spacing:15.168901px;}
.wsa_c00150{word-spacing:23.211796px;}
.wsc_c00150{word-spacing:26.428954px;}
.ws7_c00150{word-spacing:26.500000px;}
.ws8_c00150{word-spacing:33.000000px;}
.ws1_c00150{word-spacing:44.750000px;}
.wsd_c00150{word-spacing:54.285714px;}
.ws2_c00150{word-spacing:65.000000px;}
._2_c00150{width:53.428954px;}
._1_c00150{width:89.875000px;}
._0_c00150{width:93.000000px;}
.fc0_c00150{color:transparent;}
.fs6_c00150{font-size:36.000000px;}
.fs7_c00150{font-size:48.000000px;}
.fs4_c00150{font-size:54.000000px;}
.fs5_c00150{font-size:60.000000px;}
.fs3_c00150{font-size:66.000000px;}
.fs2_c00150{font-size:72.000000px;}
.fs0_c00150{font-size:78.000000px;}
.fs1_c00150{font-size:84.000000px;}
.y0_c00150{bottom:0.000000px;}
.y38_c00150{bottom:32.700000px;}
.y69_c00150{bottom:181.650000px;}
.y37_c00150{bottom:184.350000px;}
.y36_c00150{bottom:198.750000px;}
.y68_c00150{bottom:200.400000px;}
.y35_c00150{bottom:212.100000px;}
.y67_c00150{bottom:217.650000px;}
.y66_c00150{bottom:235.350000px;}
.y65_c00150{bottom:253.050000px;}
.y34_c00150{bottom:256.650000px;}
.y64_c00150{bottom:273.900000px;}
.y33_c00150{bottom:274.500000px;}
.y63_c00150{bottom:288.300000px;}
.y32_c00150{bottom:292.200000px;}
.y62_c00150{bottom:302.700000px;}
.y31_c00150{bottom:309.900000px;}
.y61_c00150{bottom:316.800000px;}
.y30_c00150{bottom:327.150000px;}
.y60_c00150{bottom:331.200000px;}
.y2f_c00150{bottom:345.150000px;}
.y5f_c00150{bottom:345.600000px;}
.y2e_c00150{bottom:362.850000px;}
.y5e_c00150{bottom:374.400000px;}
.y2d_c00150{bottom:384.150000px;}
.y5d_c00150{bottom:388.500000px;}
.y2c_c00150{bottom:397.800000px;}
.y5c_c00150{bottom:401.400000px;}
.y2b_c00150{bottom:412.500000px;}
.y5b_c00150{bottom:422.250000px;}
.y2a_c00150{bottom:426.600000px;}
.y5a_c00150{bottom:439.500000px;}
.y29_c00150{bottom:440.700000px;}
.y28_c00150{bottom:455.100000px;}
.y59_c00150{bottom:457.500000px;}
.y27_c00150{bottom:469.500000px;}
.y58_c00150{bottom:475.200000px;}
.y26_c00150{bottom:483.900000px;}
.y57_c00150{bottom:492.450000px;}
.y25_c00150{bottom:496.800000px;}
.y24_c00150{bottom:497.250000px;}
.y23_c00150{bottom:514.500000px;}
.y56_c00150{bottom:515.100000px;}
.y22_c00150{bottom:531.900000px;}
.y55_c00150{bottom:532.800000px;}
.y21_c00150{bottom:549.600000px;}
.y54_c00150{bottom:554.400000px;}
.y20_c00150{bottom:567.300000px;}
.y53_c00150{bottom:572.400000px;}
.y1f_c00150{bottom:585.000000px;}
.y52_c00150{bottom:603.000000px;}
.y1e_c00150{bottom:606.600000px;}
.y51_c00150{bottom:620.250000px;}
.y1d_c00150{bottom:624.600000px;}
.y50_c00150{bottom:642.150000px;}
.y1c_c00150{bottom:642.600000px;}
.y4f_c00150{bottom:660.150000px;}
.y1b_c00150{bottom:664.650000px;}
.y4e_c00150{bottom:678.150000px;}
.y1a_c00150{bottom:681.900000px;}
.y4d_c00150{bottom:695.850000px;}
.y4c_c00150{bottom:713.850000px;}
.y19_c00150{bottom:716.400000px;}
.y18_c00150{bottom:734.400000px;}
.y4b_c00150{bottom:735.000000px;}
.y17_c00150{bottom:752.100000px;}
.y4a_c00150{bottom:752.700000px;}
.y16_c00150{bottom:769.800000px;}
.y49_c00150{bottom:770.700000px;}
.y15_c00150{bottom:787.500000px;}
.y48_c00150{bottom:792.450000px;}
.y14_c00150{bottom:805.500000px;}
.y47_c00150{bottom:810.450000px;}
.y13_c00150{bottom:823.200000px;}
.y46_c00150{bottom:828.150000px;}
.y12_c00150{bottom:840.900000px;}
.y45_c00150{bottom:845.850000px;}
.y11_c00150{bottom:862.350000px;}
.y44_c00150{bottom:863.550000px;}
.y10_c00150{bottom:880.350000px;}
.y43_c00150{bottom:881.250000px;}
.yf_c00150{bottom:898.050000px;}
.y42_c00150{bottom:899.250000px;}
.ye_c00150{bottom:915.750000px;}
.y41_c00150{bottom:916.500000px;}
.yd_c00150{bottom:933.750000px;}
.y40_c00150{bottom:934.200000px;}
.yc_c00150{bottom:951.450000px;}
.y3f_c00150{bottom:951.900000px;}
.yb_c00150{bottom:969.450000px;}
.y3e_c00150{bottom:969.600000px;}
.ya_c00150{bottom:987.150000px;}
.y3d_c00150{bottom:987.300000px;}
.y9_c00150{bottom:1004.850000px;}
.y3c_c00150{bottom:1005.000000px;}
.y8_c00150{bottom:1022.550000px;}
.y3b_c00150{bottom:1023.750000px;}
.y7_c00150{bottom:1040.250000px;}
.y3a_c00150{bottom:1057.950000px;}
.y6_c00150{bottom:1058.250000px;}
.y5_c00150{bottom:1075.950000px;}
.y4_c00150{bottom:1093.650000px;}
.y39_c00150{bottom:1111.350000px;}
.y3_c00150{bottom:1112.400000px;}
.y2_c00150{bottom:1137.600000px;}
.y1_c00150{bottom:1138.350000px;}
.h8_c00150{height:36.000000px;}
.h9_c00150{height:48.000000px;}
.h6_c00150{height:54.000000px;}
.h7_c00150{height:60.000000px;}
.h5_c00150{height:66.000000px;}
.h4_c00150{height:72.000000px;}
.h2_c00150{height:78.000000px;}
.h3_c00150{height:84.000000px;}
.h1_c00150{height:1272.000000px;}
.h0_c00150{height:1272.239960px;}
.w1_c00150{width:953.250000px;}
.w0_c00150{width:953.280030px;}
.x0_c00150{left:0.000000px;}
.x96_c00150{left:77.700000px;}
.x56_c00150{left:79.200000px;}
.x3_c00150{left:81.000000px;}
.x6b_c00150{left:82.800000px;}
.x7f_c00150{left:94.200000px;}
.x14_c00150{left:96.150000px;}
.xb_c00150{left:97.500000px;}
.x73_c00150{left:100.350000px;}
.x74_c00150{left:104.400000px;}
.x82_c00150{left:108.750000px;}
.x87_c00150{left:109.950000px;}
.x97_c00150{left:112.200000px;}
.x38_c00150{left:115.500000px;}
.x6f_c00150{left:116.700000px;}
.x92_c00150{left:118.050000px;}
.x4a_c00150{left:121.950000px;}
.x6c_c00150{left:123.150000px;}
.x91_c00150{left:124.500000px;}
.x46_c00150{left:126.750000px;}
.x99_c00150{left:129.300000px;}
.x1b_c00150{left:130.650000px;}
.x50_c00150{left:134.400000px;}
.x47_c00150{left:135.450000px;}
.x4_c00150{left:137.100000px;}
.x2d_c00150{left:138.300000px;}
.x7b_c00150{left:139.800000px;}
.x33_c00150{left:143.850000px;}
.x15_c00150{left:145.050000px;}
.x39_c00150{left:147.900000px;}
.x21_c00150{left:150.450000px;}
.x1c_c00150{left:152.250000px;}
.xc_c00150{left:153.600000px;}
.x6d_c00150{left:156.600000px;}
.x86_c00150{left:160.800000px;}
.x2e_c00150{left:162.000000px;}
.x27_c00150{left:164.250000px;}
.x77_c00150{left:166.050000px;}
.x5b_c00150{left:167.400000px;}
.x9b_c00150{left:169.200000px;}
.x64_c00150{left:170.250000px;}
.x68_c00150{left:173.250000px;}
.x41_c00150{left:174.300000px;}
.x8a_c00150{left:177.750000px;}
.x16_c00150{left:180.300000px;}
.x2f_c00150{left:183.600000px;}
.x4b_c00150{left:184.650000px;}
.x75_c00150{left:186.900000px;}
.x61_c00150{left:189.900000px;}
.x88_c00150{left:192.000000px;}
.x5_c00150{left:194.400000px;}
.x42_c00150{left:195.600000px;}
.x1d_c00150{left:196.950000px;}
.x3a_c00150{left:199.350000px;}
.x17_c00150{left:202.200000px;}
.x22_c00150{left:204.450000px;}
.x79_c00150{left:206.250000px;}
.x5e_c00150{left:208.800000px;}
.xd_c00150{left:210.900000px;}
.x93_c00150{left:213.750000px;}
.x4c_c00150{left:216.300000px;}
.xe_c00150{left:219.150000px;}
.x57_c00150{left:220.350000px;}
.x3b_c00150{left:222.450000px;}
.x6_c00150{left:223.500000px;}
.x48_c00150{left:226.200000px;}
.x98_c00150{left:228.000000px;}
.x28_c00150{left:230.100000px;}
.x34_c00150{left:233.250000px;}
.x30_c00150{left:235.050000px;}
.x65_c00150{left:236.850000px;}
.x23_c00150{left:238.350000px;}
.x76_c00150{left:240.150000px;}
.x3c_c00150{left:241.200000px;}
.x51_c00150{left:243.150000px;}
.x8c_c00150{left:244.950000px;}
.x83_c00150{left:247.200000px;}
.x29_c00150{left:249.600000px;}
.x8f_c00150{left:250.650000px;}
.x62_c00150{left:251.850000px;}
.xf_c00150{left:253.350000px;}
.x84_c00150{left:254.400000px;}
.x18_c00150{left:255.450000px;}
.x7a_c00150{left:257.700000px;}
.x78_c00150{left:259.950000px;}
.x35_c00150{left:262.050000px;}
.x4d_c00150{left:263.400000px;}
.x24_c00150{left:267.150000px;}
.x90_c00150{left:270.450000px;}
.x6e_c00150{left:271.800000px;}
.x43_c00150{left:274.200000px;}
.x10_c00150{left:275.250000px;}
.x7c_c00150{left:276.750000px;}
.x58_c00150{left:281.850000px;}
.x1e_c00150{left:284.100000px;}
.x9a_c00150{left:285.600000px;}
.x52_c00150{left:287.400000px;}
.x5c_c00150{left:289.050000px;}
.x8e_c00150{left:290.100000px;}
.x7_c00150{left:292.200000px;}
.x69_c00150{left:293.850000px;}
.x1f_c00150{left:295.200000px;}
.x3d_c00150{left:296.550000px;}
.x95_c00150{left:297.750000px;}
.x2a_c00150{left:299.250000px;}
.x5f_c00150{left:301.200000px;}
.x59_c00150{left:302.700000px;}
.x4e_c00150{left:305.850000px;}
.x8d_c00150{left:307.200000px;}
.x7d_c00150{left:308.400000px;}
.x70_c00150{left:310.650000px;}
.x3e_c00150{left:313.500000px;}
.x11_c00150{left:314.550000px;}
.x5d_c00150{left:316.350000px;}
.x44_c00150{left:318.450000px;}
.x1_c00150{left:320.700000px;}
.x94_c00150{left:321.750000px;}
.x19_c00150{left:324.600000px;}
.x36_c00150{left:328.350000px;}
.x8_c00150{left:330.000000px;}
.x71_c00150{left:331.500000px;}
.x60_c00150{left:336.450000px;}
.x7e_c00150{left:337.950000px;}
.x3f_c00150{left:339.450000px;}
.x53_c00150{left:340.650000px;}
.x66_c00150{left:343.500000px;}
.x49_c00150{left:344.700000px;}
.x80_c00150{left:346.200000px;}
.x37_c00150{left:349.950000px;}
.x5a_c00150{left:354.600000px;}
.x25_c00150{left:357.900000px;}
.x9_c00150{left:359.850000px;}
.x45_c00150{left:361.950000px;}
.x2b_c00150{left:363.000000px;}
.x6a_c00150{left:364.800000px;}
.x63_c00150{left:369.150000px;}
.x1a_c00150{left:371.400000px;}
.x54_c00150{left:372.750000px;}
.x89_c00150{left:374.100000px;}
.x26_c00150{left:375.600000px;}
.x12_c00150{left:377.250000px;}
.x20_c00150{left:380.550000px;}
.x2c_c00150{left:383.100000px;}
.x31_c00150{left:385.050000px;}
.x13_c00150{left:386.250000px;}
.x67_c00150{left:387.450000px;}
.x40_c00150{left:390.150000px;}
.x72_c00150{left:391.200000px;}
.x55_c00150{left:395.100000px;}
.x85_c00150{left:398.400000px;}
.xa_c00150{left:400.200000px;}
.x4f_c00150{left:401.250000px;}
.x32_c00150{left:402.750000px;}
.x81_c00150{left:404.700000px;}
.x8b_c00150{left:406.800000px;}
.xf9_c00150{left:436.350000px;}
.x109_c00150{left:437.700000px;}
.x10e_c00150{left:438.900000px;}
.xbc_c00150{left:453.000000px;}
.xe0_c00150{left:454.050000px;}
.x9c_c00150{left:455.100000px;}
.xb8_c00150{left:456.150000px;}
.x137_c00150{left:459.000000px;}
.x128_c00150{left:466.350000px;}
.x12b_c00150{left:467.700000px;}
.xd8_c00150{left:471.300000px;}
.xf4_c00150{left:472.350000px;}
.x111_c00150{left:473.700000px;}
.x100_c00150{left:475.200000px;}
.xa1_c00150{left:478.050000px;}
.xc1_c00150{left:479.100000px;}
.x11a_c00150{left:480.900000px;}
.x123_c00150{left:484.050000px;}
.xca_c00150{left:486.600000px;}
.xb9_c00150{left:488.850000px;}
.x101_c00150{left:493.200000px;}
.xc6_c00150{left:494.250000px;}
.x112_c00150{left:496.050000px;}
.x108_c00150{left:498.150000px;}
.xe5_c00150{left:499.500000px;}
.x11e_c00150{left:500.700000px;}
.x114_c00150{left:501.900000px;}
.x10a_c00150{left:504.600000px;}
.x9d_c00150{left:506.550000px;}
.xa2_c00150{left:508.350000px;}
.x122_c00150{left:511.050000px;}
.xbd_c00150{left:513.450000px;}
.xb3_c00150{left:514.800000px;}
.xe1_c00150{left:516.750000px;}
.xba_c00150{left:518.400000px;}
.xae_c00150{left:520.800000px;}
.xdc_c00150{left:523.200000px;}
.xfa_c00150{left:524.250000px;}
.xd1_c00150{left:529.050000px;}
.x10b_c00150{left:530.850000px;}
.xaf_c00150{left:532.350000px;}
.xe9_c00150{left:535.200000px;}
.x11c_c00150{left:536.400000px;}
.x132_c00150{left:537.900000px;}
.x12c_c00150{left:541.500000px;}
.xa8_c00150{left:542.550000px;}
.x124_c00150{left:544.200000px;}
.x115_c00150{left:546.900000px;}
.xd2_c00150{left:549.600000px;}
.x133_c00150{left:550.800000px;}
.x103_c00150{left:553.050000px;}
.xd7_c00150{left:554.550000px;}
.xd9_c00150{left:556.650000px;}
.xc7_c00150{left:558.300000px;}
.x9e_c00150{left:559.800000px;}
.xf5_c00150{left:560.850000px;}
.x11d_c00150{left:562.350000px;}
.xbe_c00150{left:564.150000px;}
.xa3_c00150{left:567.750000px;}
.xfe_c00150{left:569.400000px;}
.x134_c00150{left:570.600000px;}
.xcb_c00150{left:573.000000px;}
.xfb_c00150{left:574.950000px;}
.xea_c00150{left:576.300000px;}
.xf6_c00150{left:577.350000px;}
.x104_c00150{left:579.300000px;}
.xee_c00150{left:580.350000px;}
.xcc_c00150{left:584.100000px;}
.x11f_c00150{left:585.300000px;}
.xa4_c00150{left:587.550000px;}
.x10d_c00150{left:589.800000px;}
.x9f_c00150{left:591.900000px;}
.x113_c00150{left:593.550000px;}
.x11b_c00150{left:595.500000px;}
.xa9_c00150{left:597.300000px;}
.xb4_c00150{left:598.350000px;}
.xd3_c00150{left:600.300000px;}
.x120_c00150{left:602.550000px;}
.xf3_c00150{left:604.800000px;}
.x116_c00150{left:607.050000px;}
.xa0_c00150{left:608.400000px;}
.x12f_c00150{left:611.100000px;}
.xb0_c00150{left:614.850000px;}
.xef_c00150{left:617.400000px;}
.xc2_c00150{left:621.450000px;}
.x10c_c00150{left:622.650000px;}
.xb5_c00150{left:623.850000px;}
.x10f_c00150{left:627.150000px;}
.x12e_c00150{left:629.250000px;}
.xaa_c00150{left:631.200000px;}
.xbf_c00150{left:632.550000px;}
.xf7_c00150{left:634.950000px;}
.xc3_c00150{left:638.700000px;}
.xe6_c00150{left:639.900000px;}
.xa5_c00150{left:641.550000px;}
.x105_c00150{left:646.200000px;}
.xda_c00150{left:648.150000px;}
.xeb_c00150{left:650.100000px;}
.x110_c00150{left:652.050000px;}
.x130_c00150{left:654.000000px;}
.xe2_c00150{left:655.500000px;}
.xcd_c00150{left:656.850000px;}
.xdd_c00150{left:661.050000px;}
.x121_c00150{left:662.250000px;}
.xb1_c00150{left:663.450000px;}
.x135_c00150{left:667.350000px;}
.xff_c00150{left:668.400000px;}
.xf0_c00150{left:669.600000px;}
.xe7_c00150{left:671.250000px;}
.xfc_c00150{left:672.900000px;}
.x12d_c00150{left:676.500000px;}
.xd4_c00150{left:677.700000px;}
.xb2_c00150{left:679.950000px;}
.xde_c00150{left:681.900000px;}
.xdb_c00150{left:683.100000px;}
.x106_c00150{left:684.750000px;}
.xe3_c00150{left:688.200000px;}
.xab_c00150{left:689.550000px;}
.xc4_c00150{left:691.200000px;}
.x125_c00150{left:692.250000px;}
.xa6_c00150{left:694.050000px;}
.xc0_c00150{left:695.550000px;}
.x102_c00150{left:699.900000px;}
.xf8_c00150{left:701.250000px;}
.x117_c00150{left:702.450000px;}
.xb6_c00150{left:706.350000px;}
.xec_c00150{left:707.400000px;}
.xfd_c00150{left:710.400000px;}
.xe8_c00150{left:712.350000px;}
.xc5_c00150{left:713.850000px;}
.xce_c00150{left:715.950000px;}
.x136_c00150{left:717.900000px;}
.xac_c00150{left:721.950000px;}
.x126_c00150{left:723.600000px;}
.xf1_c00150{left:725.100000px;}
.xbb_c00150{left:726.900000px;}
.x118_c00150{left:728.400000px;}
.xb7_c00150{left:730.050000px;}
.x129_c00150{left:731.100000px;}
.x127_c00150{left:732.750000px;}
.xdf_c00150{left:734.100000px;}
.xc8_c00150{left:739.800000px;}
.xad_c00150{left:741.000000px;}
.x131_c00150{left:742.050000px;}
.xed_c00150{left:743.100000px;}
.x2_c00150{left:745.200000px;}
.xd5_c00150{left:746.400000px;}
.xe4_c00150{left:747.600000px;}
.xf2_c00150{left:750.300000px;}
.xcf_c00150{left:751.950000px;}
.x119_c00150{left:753.600000px;}
.xa7_c00150{left:756.000000px;}
.xd6_c00150{left:757.200000px;}
.x107_c00150{left:758.550000px;}
.x12a_c00150{left:759.600000px;}
.xd0_c00150{left:761.250000px;}
.xc9_c00150{left:762.450000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws5_c00150{word-spacing:-9.675110pt;}
.ws6_c00150{word-spacing:-8.599606pt;}
.ws0_c00150{word-spacing:-0.035939pt;}
.ws9_c00150{word-spacing:0.000000pt;}
.ws4_c00150{word-spacing:0.549828pt;}
.ws3_c00150{word-spacing:6.666667pt;}
.wsb_c00150{word-spacing:13.483467pt;}
.wsa_c00150{word-spacing:20.632708pt;}
.wsc_c00150{word-spacing:23.492404pt;}
.ws7_c00150{word-spacing:23.555556pt;}
.ws8_c00150{word-spacing:29.333333pt;}
.ws1_c00150{word-spacing:39.777778pt;}
.wsd_c00150{word-spacing:48.253968pt;}
.ws2_c00150{word-spacing:57.777778pt;}
._2_c00150{width:47.492404pt;}
._1_c00150{width:79.888889pt;}
._0_c00150{width:82.666667pt;}
.fs6_c00150{font-size:32.000000pt;}
.fs7_c00150{font-size:42.666667pt;}
.fs4_c00150{font-size:48.000000pt;}
.fs5_c00150{font-size:53.333333pt;}
.fs3_c00150{font-size:58.666667pt;}
.fs2_c00150{font-size:64.000000pt;}
.fs0_c00150{font-size:69.333333pt;}
.fs1_c00150{font-size:74.666667pt;}
.y0_c00150{bottom:0.000000pt;}
.y38_c00150{bottom:29.066667pt;}
.y69_c00150{bottom:161.466667pt;}
.y37_c00150{bottom:163.866667pt;}
.y36_c00150{bottom:176.666667pt;}
.y68_c00150{bottom:178.133333pt;}
.y35_c00150{bottom:188.533333pt;}
.y67_c00150{bottom:193.466667pt;}
.y66_c00150{bottom:209.200000pt;}
.y65_c00150{bottom:224.933333pt;}
.y34_c00150{bottom:228.133333pt;}
.y64_c00150{bottom:243.466667pt;}
.y33_c00150{bottom:244.000000pt;}
.y63_c00150{bottom:256.266667pt;}
.y32_c00150{bottom:259.733333pt;}
.y62_c00150{bottom:269.066667pt;}
.y31_c00150{bottom:275.466667pt;}
.y61_c00150{bottom:281.600000pt;}
.y30_c00150{bottom:290.800000pt;}
.y60_c00150{bottom:294.400000pt;}
.y2f_c00150{bottom:306.800000pt;}
.y5f_c00150{bottom:307.200000pt;}
.y2e_c00150{bottom:322.533333pt;}
.y5e_c00150{bottom:332.800000pt;}
.y2d_c00150{bottom:341.466667pt;}
.y5d_c00150{bottom:345.333333pt;}
.y2c_c00150{bottom:353.600000pt;}
.y5c_c00150{bottom:356.800000pt;}
.y2b_c00150{bottom:366.666667pt;}
.y5b_c00150{bottom:375.333333pt;}
.y2a_c00150{bottom:379.200000pt;}
.y5a_c00150{bottom:390.666667pt;}
.y29_c00150{bottom:391.733333pt;}
.y28_c00150{bottom:404.533333pt;}
.y59_c00150{bottom:406.666667pt;}
.y27_c00150{bottom:417.333333pt;}
.y58_c00150{bottom:422.400000pt;}
.y26_c00150{bottom:430.133333pt;}
.y57_c00150{bottom:437.733333pt;}
.y25_c00150{bottom:441.600000pt;}
.y24_c00150{bottom:442.000000pt;}
.y23_c00150{bottom:457.333333pt;}
.y56_c00150{bottom:457.866667pt;}
.y22_c00150{bottom:472.800000pt;}
.y55_c00150{bottom:473.600000pt;}
.y21_c00150{bottom:488.533333pt;}
.y54_c00150{bottom:492.800000pt;}
.y20_c00150{bottom:504.266667pt;}
.y53_c00150{bottom:508.800000pt;}
.y1f_c00150{bottom:520.000000pt;}
.y52_c00150{bottom:536.000000pt;}
.y1e_c00150{bottom:539.200000pt;}
.y51_c00150{bottom:551.333333pt;}
.y1d_c00150{bottom:555.200000pt;}
.y50_c00150{bottom:570.800000pt;}
.y1c_c00150{bottom:571.200000pt;}
.y4f_c00150{bottom:586.800000pt;}
.y1b_c00150{bottom:590.800000pt;}
.y4e_c00150{bottom:602.800000pt;}
.y1a_c00150{bottom:606.133333pt;}
.y4d_c00150{bottom:618.533333pt;}
.y4c_c00150{bottom:634.533333pt;}
.y19_c00150{bottom:636.800000pt;}
.y18_c00150{bottom:652.800000pt;}
.y4b_c00150{bottom:653.333333pt;}
.y17_c00150{bottom:668.533333pt;}
.y4a_c00150{bottom:669.066667pt;}
.y16_c00150{bottom:684.266667pt;}
.y49_c00150{bottom:685.066667pt;}
.y15_c00150{bottom:700.000000pt;}
.y48_c00150{bottom:704.400000pt;}
.y14_c00150{bottom:716.000000pt;}
.y47_c00150{bottom:720.400000pt;}
.y13_c00150{bottom:731.733333pt;}
.y46_c00150{bottom:736.133333pt;}
.y12_c00150{bottom:747.466667pt;}
.y45_c00150{bottom:751.866667pt;}
.y11_c00150{bottom:766.533333pt;}
.y44_c00150{bottom:767.600000pt;}
.y10_c00150{bottom:782.533333pt;}
.y43_c00150{bottom:783.333333pt;}
.yf_c00150{bottom:798.266667pt;}
.y42_c00150{bottom:799.333333pt;}
.ye_c00150{bottom:814.000000pt;}
.y41_c00150{bottom:814.666667pt;}
.yd_c00150{bottom:830.000000pt;}
.y40_c00150{bottom:830.400000pt;}
.yc_c00150{bottom:845.733333pt;}
.y3f_c00150{bottom:846.133333pt;}
.yb_c00150{bottom:861.733333pt;}
.y3e_c00150{bottom:861.866667pt;}
.ya_c00150{bottom:877.466667pt;}
.y3d_c00150{bottom:877.600000pt;}
.y9_c00150{bottom:893.200000pt;}
.y3c_c00150{bottom:893.333333pt;}
.y8_c00150{bottom:908.933333pt;}
.y3b_c00150{bottom:910.000000pt;}
.y7_c00150{bottom:924.666667pt;}
.y3a_c00150{bottom:940.400000pt;}
.y6_c00150{bottom:940.666667pt;}
.y5_c00150{bottom:956.400000pt;}
.y4_c00150{bottom:972.133333pt;}
.y39_c00150{bottom:987.866667pt;}
.y3_c00150{bottom:988.800000pt;}
.y2_c00150{bottom:1011.200000pt;}
.y1_c00150{bottom:1011.866667pt;}
.h8_c00150{height:32.000000pt;}
.h9_c00150{height:42.666667pt;}
.h6_c00150{height:48.000000pt;}
.h7_c00150{height:53.333333pt;}
.h5_c00150{height:58.666667pt;}
.h4_c00150{height:64.000000pt;}
.h2_c00150{height:69.333333pt;}
.h3_c00150{height:74.666667pt;}
.h1_c00150{height:1130.666667pt;}
.h0_c00150{height:1130.879964pt;}
.w1_c00150{width:847.333333pt;}
.w0_c00150{width:847.360027pt;}
.x0_c00150{left:0.000000pt;}
.x96_c00150{left:69.066667pt;}
.x56_c00150{left:70.400000pt;}
.x3_c00150{left:72.000000pt;}
.x6b_c00150{left:73.600000pt;}
.x7f_c00150{left:83.733333pt;}
.x14_c00150{left:85.466667pt;}
.xb_c00150{left:86.666667pt;}
.x73_c00150{left:89.200000pt;}
.x74_c00150{left:92.800000pt;}
.x82_c00150{left:96.666667pt;}
.x87_c00150{left:97.733333pt;}
.x97_c00150{left:99.733333pt;}
.x38_c00150{left:102.666667pt;}
.x6f_c00150{left:103.733333pt;}
.x92_c00150{left:104.933333pt;}
.x4a_c00150{left:108.400000pt;}
.x6c_c00150{left:109.466667pt;}
.x91_c00150{left:110.666667pt;}
.x46_c00150{left:112.666667pt;}
.x99_c00150{left:114.933333pt;}
.x1b_c00150{left:116.133333pt;}
.x50_c00150{left:119.466667pt;}
.x47_c00150{left:120.400000pt;}
.x4_c00150{left:121.866667pt;}
.x2d_c00150{left:122.933333pt;}
.x7b_c00150{left:124.266667pt;}
.x33_c00150{left:127.866667pt;}
.x15_c00150{left:128.933333pt;}
.x39_c00150{left:131.466667pt;}
.x21_c00150{left:133.733333pt;}
.x1c_c00150{left:135.333333pt;}
.xc_c00150{left:136.533333pt;}
.x6d_c00150{left:139.200000pt;}
.x86_c00150{left:142.933333pt;}
.x2e_c00150{left:144.000000pt;}
.x27_c00150{left:146.000000pt;}
.x77_c00150{left:147.600000pt;}
.x5b_c00150{left:148.800000pt;}
.x9b_c00150{left:150.400000pt;}
.x64_c00150{left:151.333333pt;}
.x68_c00150{left:154.000000pt;}
.x41_c00150{left:154.933333pt;}
.x8a_c00150{left:158.000000pt;}
.x16_c00150{left:160.266667pt;}
.x2f_c00150{left:163.200000pt;}
.x4b_c00150{left:164.133333pt;}
.x75_c00150{left:166.133333pt;}
.x61_c00150{left:168.800000pt;}
.x88_c00150{left:170.666667pt;}
.x5_c00150{left:172.800000pt;}
.x42_c00150{left:173.866667pt;}
.x1d_c00150{left:175.066667pt;}
.x3a_c00150{left:177.200000pt;}
.x17_c00150{left:179.733333pt;}
.x22_c00150{left:181.733333pt;}
.x79_c00150{left:183.333333pt;}
.x5e_c00150{left:185.600000pt;}
.xd_c00150{left:187.466667pt;}
.x93_c00150{left:190.000000pt;}
.x4c_c00150{left:192.266667pt;}
.xe_c00150{left:194.800000pt;}
.x57_c00150{left:195.866667pt;}
.x3b_c00150{left:197.733333pt;}
.x6_c00150{left:198.666667pt;}
.x48_c00150{left:201.066667pt;}
.x98_c00150{left:202.666667pt;}
.x28_c00150{left:204.533333pt;}
.x34_c00150{left:207.333333pt;}
.x30_c00150{left:208.933333pt;}
.x65_c00150{left:210.533333pt;}
.x23_c00150{left:211.866667pt;}
.x76_c00150{left:213.466667pt;}
.x3c_c00150{left:214.400000pt;}
.x51_c00150{left:216.133333pt;}
.x8c_c00150{left:217.733333pt;}
.x83_c00150{left:219.733333pt;}
.x29_c00150{left:221.866667pt;}
.x8f_c00150{left:222.800000pt;}
.x62_c00150{left:223.866667pt;}
.xf_c00150{left:225.200000pt;}
.x84_c00150{left:226.133333pt;}
.x18_c00150{left:227.066667pt;}
.x7a_c00150{left:229.066667pt;}
.x78_c00150{left:231.066667pt;}
.x35_c00150{left:232.933333pt;}
.x4d_c00150{left:234.133333pt;}
.x24_c00150{left:237.466667pt;}
.x90_c00150{left:240.400000pt;}
.x6e_c00150{left:241.600000pt;}
.x43_c00150{left:243.733333pt;}
.x10_c00150{left:244.666667pt;}
.x7c_c00150{left:246.000000pt;}
.x58_c00150{left:250.533333pt;}
.x1e_c00150{left:252.533333pt;}
.x9a_c00150{left:253.866667pt;}
.x52_c00150{left:255.466667pt;}
.x5c_c00150{left:256.933333pt;}
.x8e_c00150{left:257.866667pt;}
.x7_c00150{left:259.733333pt;}
.x69_c00150{left:261.200000pt;}
.x1f_c00150{left:262.400000pt;}
.x3d_c00150{left:263.600000pt;}
.x95_c00150{left:264.666667pt;}
.x2a_c00150{left:266.000000pt;}
.x5f_c00150{left:267.733333pt;}
.x59_c00150{left:269.066667pt;}
.x4e_c00150{left:271.866667pt;}
.x8d_c00150{left:273.066667pt;}
.x7d_c00150{left:274.133333pt;}
.x70_c00150{left:276.133333pt;}
.x3e_c00150{left:278.666667pt;}
.x11_c00150{left:279.600000pt;}
.x5d_c00150{left:281.200000pt;}
.x44_c00150{left:283.066667pt;}
.x1_c00150{left:285.066667pt;}
.x94_c00150{left:286.000000pt;}
.x19_c00150{left:288.533333pt;}
.x36_c00150{left:291.866667pt;}
.x8_c00150{left:293.333333pt;}
.x71_c00150{left:294.666667pt;}
.x60_c00150{left:299.066667pt;}
.x7e_c00150{left:300.400000pt;}
.x3f_c00150{left:301.733333pt;}
.x53_c00150{left:302.800000pt;}
.x66_c00150{left:305.333333pt;}
.x49_c00150{left:306.400000pt;}
.x80_c00150{left:307.733333pt;}
.x37_c00150{left:311.066667pt;}
.x5a_c00150{left:315.200000pt;}
.x25_c00150{left:318.133333pt;}
.x9_c00150{left:319.866667pt;}
.x45_c00150{left:321.733333pt;}
.x2b_c00150{left:322.666667pt;}
.x6a_c00150{left:324.266667pt;}
.x63_c00150{left:328.133333pt;}
.x1a_c00150{left:330.133333pt;}
.x54_c00150{left:331.333333pt;}
.x89_c00150{left:332.533333pt;}
.x26_c00150{left:333.866667pt;}
.x12_c00150{left:335.333333pt;}
.x20_c00150{left:338.266667pt;}
.x2c_c00150{left:340.533333pt;}
.x31_c00150{left:342.266667pt;}
.x13_c00150{left:343.333333pt;}
.x67_c00150{left:344.400000pt;}
.x40_c00150{left:346.800000pt;}
.x72_c00150{left:347.733333pt;}
.x55_c00150{left:351.200000pt;}
.x85_c00150{left:354.133333pt;}
.xa_c00150{left:355.733333pt;}
.x4f_c00150{left:356.666667pt;}
.x32_c00150{left:358.000000pt;}
.x81_c00150{left:359.733333pt;}
.x8b_c00150{left:361.600000pt;}
.xf9_c00150{left:387.866667pt;}
.x109_c00150{left:389.066667pt;}
.x10e_c00150{left:390.133333pt;}
.xbc_c00150{left:402.666667pt;}
.xe0_c00150{left:403.600000pt;}
.x9c_c00150{left:404.533333pt;}
.xb8_c00150{left:405.466667pt;}
.x137_c00150{left:408.000000pt;}
.x128_c00150{left:414.533333pt;}
.x12b_c00150{left:415.733333pt;}
.xd8_c00150{left:418.933333pt;}
.xf4_c00150{left:419.866667pt;}
.x111_c00150{left:421.066667pt;}
.x100_c00150{left:422.400000pt;}
.xa1_c00150{left:424.933333pt;}
.xc1_c00150{left:425.866667pt;}
.x11a_c00150{left:427.466667pt;}
.x123_c00150{left:430.266667pt;}
.xca_c00150{left:432.533333pt;}
.xb9_c00150{left:434.533333pt;}
.x101_c00150{left:438.400000pt;}
.xc6_c00150{left:439.333333pt;}
.x112_c00150{left:440.933333pt;}
.x108_c00150{left:442.800000pt;}
.xe5_c00150{left:444.000000pt;}
.x11e_c00150{left:445.066667pt;}
.x114_c00150{left:446.133333pt;}
.x10a_c00150{left:448.533333pt;}
.x9d_c00150{left:450.266667pt;}
.xa2_c00150{left:451.866667pt;}
.x122_c00150{left:454.266667pt;}
.xbd_c00150{left:456.400000pt;}
.xb3_c00150{left:457.600000pt;}
.xe1_c00150{left:459.333333pt;}
.xba_c00150{left:460.800000pt;}
.xae_c00150{left:462.933333pt;}
.xdc_c00150{left:465.066667pt;}
.xfa_c00150{left:466.000000pt;}
.xd1_c00150{left:470.266667pt;}
.x10b_c00150{left:471.866667pt;}
.xaf_c00150{left:473.200000pt;}
.xe9_c00150{left:475.733333pt;}
.x11c_c00150{left:476.800000pt;}
.x132_c00150{left:478.133333pt;}
.x12c_c00150{left:481.333333pt;}
.xa8_c00150{left:482.266667pt;}
.x124_c00150{left:483.733333pt;}
.x115_c00150{left:486.133333pt;}
.xd2_c00150{left:488.533333pt;}
.x133_c00150{left:489.600000pt;}
.x103_c00150{left:491.600000pt;}
.xd7_c00150{left:492.933333pt;}
.xd9_c00150{left:494.800000pt;}
.xc7_c00150{left:496.266667pt;}
.x9e_c00150{left:497.600000pt;}
.xf5_c00150{left:498.533333pt;}
.x11d_c00150{left:499.866667pt;}
.xbe_c00150{left:501.466667pt;}
.xa3_c00150{left:504.666667pt;}
.xfe_c00150{left:506.133333pt;}
.x134_c00150{left:507.200000pt;}
.xcb_c00150{left:509.333333pt;}
.xfb_c00150{left:511.066667pt;}
.xea_c00150{left:512.266667pt;}
.xf6_c00150{left:513.200000pt;}
.x104_c00150{left:514.933333pt;}
.xee_c00150{left:515.866667pt;}
.xcc_c00150{left:519.200000pt;}
.x11f_c00150{left:520.266667pt;}
.xa4_c00150{left:522.266667pt;}
.x10d_c00150{left:524.266667pt;}
.x9f_c00150{left:526.133333pt;}
.x113_c00150{left:527.600000pt;}
.x11b_c00150{left:529.333333pt;}
.xa9_c00150{left:530.933333pt;}
.xb4_c00150{left:531.866667pt;}
.xd3_c00150{left:533.600000pt;}
.x120_c00150{left:535.600000pt;}
.xf3_c00150{left:537.600000pt;}
.x116_c00150{left:539.600000pt;}
.xa0_c00150{left:540.800000pt;}
.x12f_c00150{left:543.200000pt;}
.xb0_c00150{left:546.533333pt;}
.xef_c00150{left:548.800000pt;}
.xc2_c00150{left:552.400000pt;}
.x10c_c00150{left:553.466667pt;}
.xb5_c00150{left:554.533333pt;}
.x10f_c00150{left:557.466667pt;}
.x12e_c00150{left:559.333333pt;}
.xaa_c00150{left:561.066667pt;}
.xbf_c00150{left:562.266667pt;}
.xf7_c00150{left:564.400000pt;}
.xc3_c00150{left:567.733333pt;}
.xe6_c00150{left:568.800000pt;}
.xa5_c00150{left:570.266667pt;}
.x105_c00150{left:574.400000pt;}
.xda_c00150{left:576.133333pt;}
.xeb_c00150{left:577.866667pt;}
.x110_c00150{left:579.600000pt;}
.x130_c00150{left:581.333333pt;}
.xe2_c00150{left:582.666667pt;}
.xcd_c00150{left:583.866667pt;}
.xdd_c00150{left:587.600000pt;}
.x121_c00150{left:588.666667pt;}
.xb1_c00150{left:589.733333pt;}
.x135_c00150{left:593.200000pt;}
.xff_c00150{left:594.133333pt;}
.xf0_c00150{left:595.200000pt;}
.xe7_c00150{left:596.666667pt;}
.xfc_c00150{left:598.133333pt;}
.x12d_c00150{left:601.333333pt;}
.xd4_c00150{left:602.400000pt;}
.xb2_c00150{left:604.400000pt;}
.xde_c00150{left:606.133333pt;}
.xdb_c00150{left:607.200000pt;}
.x106_c00150{left:608.666667pt;}
.xe3_c00150{left:611.733333pt;}
.xab_c00150{left:612.933333pt;}
.xc4_c00150{left:614.400000pt;}
.x125_c00150{left:615.333333pt;}
.xa6_c00150{left:616.933333pt;}
.xc0_c00150{left:618.266667pt;}
.x102_c00150{left:622.133333pt;}
.xf8_c00150{left:623.333333pt;}
.x117_c00150{left:624.400000pt;}
.xb6_c00150{left:627.866667pt;}
.xec_c00150{left:628.800000pt;}
.xfd_c00150{left:631.466667pt;}
.xe8_c00150{left:633.200000pt;}
.xc5_c00150{left:634.533333pt;}
.xce_c00150{left:636.400000pt;}
.x136_c00150{left:638.133333pt;}
.xac_c00150{left:641.733333pt;}
.x126_c00150{left:643.200000pt;}
.xf1_c00150{left:644.533333pt;}
.xbb_c00150{left:646.133333pt;}
.x118_c00150{left:647.466667pt;}
.xb7_c00150{left:648.933333pt;}
.x129_c00150{left:649.866667pt;}
.x127_c00150{left:651.333333pt;}
.xdf_c00150{left:652.533333pt;}
.xc8_c00150{left:657.600000pt;}
.xad_c00150{left:658.666667pt;}
.x131_c00150{left:659.600000pt;}
.xed_c00150{left:660.533333pt;}
.x2_c00150{left:662.400000pt;}
.xd5_c00150{left:663.466667pt;}
.xe4_c00150{left:664.533333pt;}
.xf2_c00150{left:666.933333pt;}
.xcf_c00150{left:668.400000pt;}
.x119_c00150{left:669.866667pt;}
.xa7_c00150{left:672.000000pt;}
.xd6_c00150{left:673.066667pt;}
.x107_c00150{left:674.266667pt;}
.x12a_c00150{left:675.200000pt;}
.xd0_c00150{left:676.666667pt;}
.xc9_c00150{left:677.733333pt;}
}





/* 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_c00151 {
    display:none;
  }
  .loading-indicator_c00151.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00151 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_c00151 { 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_c00151" -> "#page-container .classname_c00151")
 */
.pf_c00151 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00151 { /* 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_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00151 { /* 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_c00151 { /* 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_c00151 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00151 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00151 {overflow:visible;}
  }
}
.c_c00151 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00151 { /* 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_c00151:after { /* webkit #35443 */
  content: '';
}
.t_c00151:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00151 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 */
}
.__c00151 { /* 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_c00151 { /* info for Javascript */
  display:none;
}
.l_c00151 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00151 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00151 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00151: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_c00151 {
    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_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00151.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_c00151 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00151;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.000000;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;}
.mb5_c00151{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mc_c00151{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m89_c00151{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m81_c00151{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00151{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m125_c00151{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00151{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb_c00151{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m63_c00151{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00151{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mda_c00151{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00151{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00151{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m22_c00151{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m34_c00151{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00151{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mab_c00151{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00151{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me_c00151{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m91_c00151{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m106_c00151{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m0_c00151{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.maa_c00151{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma_c00151{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00151{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00151{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00151{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00151{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00151{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md3_c00151{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me0_c00151{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m4_c00151{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00151{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m19_c00151{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00151{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00151{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00151{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m61_c00151{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00151{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00151{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00151{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m80_c00151{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00151{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00151{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m120_c00151{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m124_c00151{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00151{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00151{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m55_c00151{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m102_c00151{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00151{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00151{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m15_c00151{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me3_c00151{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m28_c00151{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m48_c00151{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me8_c00151{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m76_c00151{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00151{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00151{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m49_c00151{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf_c00151{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00151{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mec_c00151{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m11_c00151{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00151{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00151{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m41_c00151{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00151{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mff_c00151{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m2_c00151{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00151{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m29_c00151{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8_c00151{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m64_c00151{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00151{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m58_c00151{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m99_c00151{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m51_c00151{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me1_c00151{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m31_c00151{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00151{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m78_c00151{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m67_c00151{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m37_c00151{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00151{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00151{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00151{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m56_c00151{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00151{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m100_c00151{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m71_c00151{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00151{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00151{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m108_c00151{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00151{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m27_c00151{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m77_c00151{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m30_c00151{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m118_c00151{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m25_c00151{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00151{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m92_c00151{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m16_c00151{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.med_c00151{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m115_c00151{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m96_c00151{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m88_c00151{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m20_c00151{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md0_c00151{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00151{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00151{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mba_c00151{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m33_c00151{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00151{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00151{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m79_c00151{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mea_c00151{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.meb_c00151{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00151{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md9_c00151{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00151{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m35_c00151{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00151{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m53_c00151{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m39_c00151{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00151{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m26_c00151{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00151{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00151{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m70_c00151{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m12_c00151{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00151{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m103_c00151{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m69_c00151{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m36_c00151{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m123_c00151{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00151{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00151{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00151{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m59_c00151{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md5_c00151{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m121_c00151{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m74_c00151{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mee_c00151{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m14_c00151{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m73_c00151{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m60_c00151{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00151{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00151{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m47_c00151{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00151{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m87_c00151{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00151{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00151{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00151{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00151{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00151{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00151{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00151{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00151{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00151{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m101_c00151{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m114_c00151{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m13_c00151{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00151{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00151{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00151{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00151{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m24_c00151{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m98_c00151{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.maf_c00151{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m23_c00151{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m10_c00151{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m38_c00151{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m62_c00151{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m116_c00151{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m75_c00151{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m107_c00151{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00151{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m18_c00151{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00151{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00151{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00151{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me9_c00151{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00151{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m90_c00151{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m17_c00151{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m72_c00151{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m45_c00151{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md4_c00151{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00151{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00151{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00151{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00151{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m122_c00151{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m119_c00151{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m66_c00151{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m68_c00151{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00151{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m57_c00151{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00151{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m50_c00151{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00151{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m21_c00151{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00151{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m5_c00151{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00151{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mef_c00151{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00151{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m52_c00151{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m117_c00151{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m54_c00151{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6_c00151{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m83_c00151{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m105_c00151{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00151{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.md_c00151{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00151{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00151{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m40_c00151{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00151{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m94_c00151{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m110_c00151{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m86_c00151{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m43_c00151{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00151{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00151{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00151{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me4_c00151{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00151{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00151{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m113_c00151{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);}
.mfc_c00151{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00151{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00151{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00151{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00151{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00151{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mde_c00151{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00151{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00151{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m44_c00151{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00151{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m46_c00151{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m32_c00151{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m42_c00151{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00151{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m84_c00151{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00151{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mac_c00151{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.me5_c00151{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00151{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9_c00151{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00151{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m93_c00151{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00151{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mae_c00151{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00151{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m95_c00151{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00151{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md7_c00151{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00151{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.me7_c00151{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00151{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mca_c00151{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00151{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00151{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m111_c00151{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00151{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mad_c00151{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md8_c00151{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m97_c00151{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00151{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m85_c00151{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m65_c00151{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m82_c00151{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.md2_c00151{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m104_c00151{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.me6_c00151{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00151{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mce_c00151{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00151{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00151{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m109_c00151{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m112_c00151{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.md6_c00151{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00151{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.me2_c00151{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00151{transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);}
.m1_c00151{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.md1_c00151{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls0_c00151{letter-spacing:0.000000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{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__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00151{word-spacing:-19.625000px;}
.ws4_c00151{word-spacing:-13.269841px;}
.wsa_c00151{word-spacing:-13.218143px;}
.wsf_c00151{word-spacing:-8.739388px;}
.ws9_c00151{word-spacing:-6.795181px;}
.ws8_c00151{word-spacing:-6.464684px;}
.ws2_c00151{word-spacing:-2.857143px;}
.ws3_c00151{word-spacing:-2.463687px;}
.ws7_c00151{word-spacing:-2.197802px;}
.ws1_c00151{word-spacing:-1.250000px;}
.ws12_c00151{word-spacing:0.000000px;}
.ws11_c00151{word-spacing:1.229023px;}
.wsb_c00151{word-spacing:3.071006px;}
.ws5_c00151{word-spacing:7.698113px;}
.ws6_c00151{word-spacing:16.899713px;}
.ws10_c00151{word-spacing:17.213115px;}
.wsd_c00151{word-spacing:23.211796px;}
.wse_c00151{word-spacing:61.250000px;}
.ws0_c00151{word-spacing:165.000000px;}
._2_c00151{width:46.994638px;}
._1_c00151{width:58.254692px;}
._0_c00151{width:88.817694px;}
.fc0_c00151{color:transparent;}
.fs7_c00151{font-size:36.000000px;}
.fs6_c00151{font-size:54.000000px;}
.fs2_c00151{font-size:60.000000px;}
.fs3_c00151{font-size:66.000000px;}
.fs4_c00151{font-size:72.000000px;}
.fs1_c00151{font-size:78.000000px;}
.fs5_c00151{font-size:84.000000px;}
.fs0_c00151{font-size:108.000000px;}
.y0_c00151{bottom:0.000000px;}
.y6d_c00151{bottom:180.750000px;}
.y6c_c00151{bottom:196.950000px;}
.y37_c00151{bottom:198.300000px;}
.y6b_c00151{bottom:211.650000px;}
.y36_c00151{bottom:216.000000px;}
.y6a_c00151{bottom:225.750000px;}
.y35_c00151{bottom:233.550000px;}
.y69_c00151{bottom:240.450000px;}
.y34_c00151{bottom:251.250000px;}
.y68_c00151{bottom:254.400000px;}
.y67_c00151{bottom:268.800000px;}
.y33_c00151{bottom:268.950000px;}
.y66_c00151{bottom:282.900000px;}
.y32_c00151{bottom:290.100000px;}
.y65_c00151{bottom:297.300000px;}
.y31_c00151{bottom:304.950000px;}
.y64_c00151{bottom:311.700000px;}
.y30_c00151{bottom:319.350000px;}
.y63_c00151{bottom:325.800000px;}
.y2f_c00151{bottom:334.800000px;}
.y62_c00151{bottom:340.200000px;}
.y2e_c00151{bottom:351.000000px;}
.y61_c00151{bottom:354.600000px;}
.y60_c00151{bottom:369.000000px;}
.y2d_c00151{bottom:370.800000px;}
.y5f_c00151{bottom:384.150000px;}
.y2c_c00151{bottom:388.800000px;}
.y5e_c00151{bottom:397.500000px;}
.y2b_c00151{bottom:406.800000px;}
.y5d_c00151{bottom:411.750000px;}
.y2a_c00151{bottom:421.950000px;}
.y5c_c00151{bottom:425.850000px;}
.y5b_c00151{bottom:440.250000px;}
.y29_c00151{bottom:446.400000px;}
.y5a_c00151{bottom:454.650000px;}
.y28_c00151{bottom:464.400000px;}
.y59_c00151{bottom:468.750000px;}
.y27_c00151{bottom:485.250000px;}
.y26_c00151{bottom:504.000000px;}
.y58_c00151{bottom:513.300000px;}
.y57_c00151{bottom:527.700000px;}
.y25_c00151{bottom:528.900000px;}
.y56_c00151{bottom:542.100000px;}
.y24_c00151{bottom:547.950000px;}
.y55_c00151{bottom:556.200000px;}
.y23_c00151{bottom:565.950000px;}
.y54_c00151{bottom:570.900000px;}
.y22_c00151{bottom:583.500000px;}
.y52_c00151{bottom:584.550000px;}
.y53_c00151{bottom:584.700000px;}
.y51_c00151{bottom:599.700000px;}
.y21_c00151{bottom:604.500000px;}
.y50_c00151{bottom:624.150000px;}
.y20_c00151{bottom:626.400000px;}
.y4f_c00151{bottom:641.850000px;}
.y1f_c00151{bottom:645.150000px;}
.y4e_c00151{bottom:660.150000px;}
.y1e_c00151{bottom:662.850000px;}
.y4d_c00151{bottom:677.100000px;}
.y1d_c00151{bottom:680.550000px;}
.y1c_c00151{bottom:698.550000px;}
.y4c_c00151{bottom:703.050000px;}
.y1b_c00151{bottom:716.550000px;}
.y4b_c00151{bottom:720.300000px;}
.y1a_c00151{bottom:734.250000px;}
.y4a_c00151{bottom:738.300000px;}
.y19_c00151{bottom:751.950000px;}
.y49_c00151{bottom:756.000000px;}
.y18_c00151{bottom:769.650000px;}
.y48_c00151{bottom:774.000000px;}
.y17_c00151{bottom:787.650000px;}
.y47_c00151{bottom:791.700000px;}
.y16_c00151{bottom:809.250000px;}
.y46_c00151{bottom:809.400000px;}
.y15_c00151{bottom:826.950000px;}
.y45_c00151{bottom:827.100000px;}
.y14_c00151{bottom:844.650000px;}
.y44_c00151{bottom:844.800000px;}
.y13_c00151{bottom:862.350000px;}
.y43_c00151{bottom:862.500000px;}
.y12_c00151{bottom:879.600000px;}
.y42_c00151{bottom:880.200000px;}
.y11_c00151{bottom:897.600000px;}
.y41_c00151{bottom:902.400000px;}
.y10_c00151{bottom:915.300000px;}
.y40_c00151{bottom:920.100000px;}
.yf_c00151{bottom:933.300000px;}
.ye_c00151{bottom:951.000000px;}
.yd_c00151{bottom:968.700000px;}
.yc_c00151{bottom:986.700000px;}
.y3f_c00151{bottom:995.400000px;}
.yb_c00151{bottom:1004.400000px;}
.ya_c00151{bottom:1022.100000px;}
.y3e_c00151{bottom:1024.800000px;}
.y9_c00151{bottom:1039.800000px;}
.y3d_c00151{bottom:1039.950000px;}
.y3c_c00151{bottom:1057.650000px;}
.y8_c00151{bottom:1057.800000px;}
.y3b_c00151{bottom:1075.350000px;}
.y7_c00151{bottom:1075.500000px;}
.y3a_c00151{bottom:1093.050000px;}
.y6_c00151{bottom:1093.200000px;}
.y5_c00151{bottom:1110.900000px;}
.y39_c00151{bottom:1111.050000px;}
.y4_c00151{bottom:1127.850000px;}
.y38_c00151{bottom:1128.300000px;}
.y3_c00151{bottom:1128.600000px;}
.y1_c00151{bottom:1155.300000px;}
.y2_c00151{bottom:1155.600000px;}
.h9_c00151{height:36.000000px;}
.h8_c00151{height:54.000000px;}
.h4_c00151{height:60.000000px;}
.h5_c00151{height:66.000000px;}
.h6_c00151{height:72.000000px;}
.h3_c00151{height:78.000000px;}
.h7_c00151{height:84.000000px;}
.h2_c00151{height:108.000000px;}
.h1_c00151{height:1278.750000px;}
.h0_c00151{height:1279.079957px;}
.w1_c00151{width:953.250000px;}
.w0_c00151{width:953.280030px;}
.x0_c00151{left:0.000000px;}
.x83_c00151{left:172.800000px;}
.x84_c00151{left:180.000000px;}
.x5f_c00151{left:181.800000px;}
.x1_c00151{left:183.900000px;}
.x86_c00151{left:185.400000px;}
.x9e_c00151{left:186.450000px;}
.x99_c00151{left:193.650000px;}
.x9c_c00151{left:196.950000px;}
.x74_c00151{left:198.150000px;}
.x56_c00151{left:199.500000px;}
.x10_c00151{left:201.000000px;}
.x9a_c00151{left:208.050000px;}
.x3_c00151{left:209.100000px;}
.x8a_c00151{left:216.750000px;}
.x68_c00151{left:217.800000px;}
.x60_c00151{left:219.600000px;}
.x8f_c00151{left:221.400000px;}
.x90_c00151{left:224.700000px;}
.x87_c00151{left:225.750000px;}
.x65_c00151{left:228.450000px;}
.x80_c00151{left:230.250000px;}
.x6e_c00151{left:232.200000px;}
.x4_c00151{left:233.550000px;}
.x28_c00151{left:235.200000px;}
.x14_c00151{left:237.000000px;}
.x1c_c00151{left:238.350000px;}
.x30_c00151{left:240.150000px;}
.x66_c00151{left:241.800000px;}
.x47_c00151{left:243.300000px;}
.x23_c00151{left:244.350000px;}
.x42_c00151{left:245.400000px;}
.x85_c00151{left:246.600000px;}
.x6f_c00151{left:248.700000px;}
.x3c_c00151{left:250.500000px;}
.x34_c00151{left:252.450000px;}
.x53_c00151{left:256.500000px;}
.x4e_c00151{left:258.300000px;}
.x8b_c00151{left:259.650000px;}
.x1d_c00151{left:261.450000px;}
.x5_c00151{left:262.650000px;}
.x4c_c00151{left:264.450000px;}
.x61_c00151{left:270.300000px;}
.x7e_c00151{left:271.950000px;}
.x11_c00151{left:274.500000px;}
.x35_c00151{left:276.900000px;}
.x1e_c00151{left:279.150000px;}
.x88_c00151{left:280.800000px;}
.x43_c00151{left:282.150000px;}
.x6_c00151{left:283.200000px;}
.x15_c00151{left:285.300000px;}
.x36_c00151{left:286.950000px;}
.x5c_c00151{left:288.750000px;}
.x31_c00151{left:290.250000px;}
.x91_c00151{left:293.100000px;}
.x48_c00151{left:295.200000px;}
.x7_c00151{left:302.250000px;}
.x3a_c00151{left:304.200000px;}
.x2e_c00151{left:306.750000px;}
.x79_c00151{left:308.400000px;}
.x81_c00151{left:309.450000px;}
.x3d_c00151{left:312.450000px;}
.x54_c00151{left:314.100000px;}
.x75_c00151{left:316.200000px;}
.x24_c00151{left:317.700000px;}
.x29_c00151{left:319.800000px;}
.x98_c00151{left:321.000000px;}
.x4f_c00151{left:323.100000px;}
.x67_c00151{left:324.600000px;}
.x32_c00151{left:327.000000px;}
.x1f_c00151{left:328.500000px;}
.x25_c00151{left:330.600000px;}
.x3e_c00151{left:332.250000px;}
.x2f_c00151{left:334.500000px;}
.x8_c00151{left:336.750000px;}
.x9f_c00151{left:338.250000px;}
.x37_c00151{left:339.450000px;}
.x5d_c00151{left:340.650000px;}
.x72_c00151{left:342.600000px;}
.x16_c00151{left:344.400000px;}
.x57_c00151{left:347.850000px;}
.x5e_c00151{left:351.750000px;}
.x55_c00151{left:356.550000px;}
.x69_c00151{left:358.200000px;}
.x73_c00151{left:359.850000px;}
.x9_c00151{left:361.650000px;}
.x49_c00151{left:363.600000px;}
.x17_c00151{left:366.000000px;}
.x9d_c00151{left:369.750000px;}
.x26_c00151{left:374.100000px;}
.x58_c00151{left:377.700000px;}
.x76_c00151{left:378.900000px;}
.x3f_c00151{left:382.350000px;}
.x7f_c00151{left:384.600000px;}
.x2a_c00151{left:385.650000px;}
.x7c_c00151{left:390.750000px;}
.x20_c00151{left:393.000000px;}
.x50_c00151{left:396.600000px;}
.x62_c00151{left:398.100000px;}
.x44_c00151{left:399.450000px;}
.x59_c00151{left:400.800000px;}
.x2b_c00151{left:401.850000px;}
.x95_c00151{left:403.200000px;}
.x38_c00151{left:406.350000px;}
.x12_c00151{left:408.000000px;}
.x8c_c00151{left:409.050000px;}
.x6a_c00151{left:410.400000px;}
.x63_c00151{left:411.750000px;}
.x18_c00151{left:414.300000px;}
.xa_c00151{left:415.350000px;}
.x45_c00151{left:419.250000px;}
.x4d_c00151{left:421.050000px;}
.x4a_c00151{left:422.550000px;}
.x92_c00151{left:423.750000px;}
.x19_c00151{left:425.850000px;}
.x2_c00151{left:430.500000px;}
.x40_c00151{left:432.300000px;}
.x7a_c00151{left:435.450000px;}
.x8d_c00151{left:437.100000px;}
.x77_c00151{left:440.850000px;}
.x33_c00151{left:441.900000px;}
.x93_c00151{left:444.300000px;}
.x21_c00151{left:445.950000px;}
.x2c_c00151{left:447.150000px;}
.x51_c00151{left:448.500000px;}
.x5a_c00151{left:451.500000px;}
.xb_c00151{left:453.900000px;}
.x64_c00151{left:455.700000px;}
.x6b_c00151{left:457.200000px;}
.x82_c00151{left:458.550000px;}
.x96_c00151{left:459.750000px;}
.x7d_c00151{left:461.250000px;}
.x94_c00151{left:462.300000px;}
.x1a_c00151{left:463.650000px;}
.x7b_c00151{left:466.050000px;}
.x70_c00151{left:467.250000px;}
.x39_c00151{left:468.300000px;}
.x27_c00151{left:471.000000px;}
.x9b_c00151{left:473.700000px;}
.x5b_c00151{left:474.900000px;}
.xc_c00151{left:476.250000px;}
.x41_c00151{left:477.300000px;}
.x78_c00151{left:479.700000px;}
.x22_c00151{left:481.200000px;}
.x97_c00151{left:482.700000px;}
.x1b_c00151{left:484.950000px;}
.x46_c00151{left:488.100000px;}
.x2d_c00151{left:489.600000px;}
.x3b_c00151{left:491.700000px;}
.x52_c00151{left:493.500000px;}
.x6c_c00151{left:494.700000px;}
.x13_c00151{left:496.950000px;}
.x89_c00151{left:500.700000px;}
.x71_c00151{left:501.750000px;}
.x4b_c00151{left:503.550000px;}
.xd_c00151{left:504.750000px;}
.x8e_c00151{left:505.950000px;}
.x6d_c00151{left:507.000000px;}
.xe_c00151{left:514.500000px;}
.xf_c00151{left:528.600000px;}
.x127_c00151{left:529.950000px;}
.x137_c00151{left:535.950000px;}
.x104_c00151{left:537.150000px;}
.xcd_c00151{left:538.500000px;}
.xed_c00151{left:551.400000px;}
.xfb_c00151{left:553.200000px;}
.xf3_c00151{left:555.000000px;}
.xb4_c00151{left:556.500000px;}
.xa0_c00151{left:557.700000px;}
.x11c_c00151{left:559.500000px;}
.x117_c00151{left:564.900000px;}
.x118_c00151{left:565.950000px;}
.x130_c00151{left:567.300000px;}
.x12e_c00151{left:569.400000px;}
.x128_c00151{left:571.350000px;}
.xd8_c00151{left:573.900000px;}
.xfe_c00151{left:576.150000px;}
.x135_c00151{left:579.300000px;}
.x124_c00151{left:580.500000px;}
.xbb_c00151{left:582.300000px;}
.xa1_c00151{left:584.400000px;}
.x139_c00151{left:586.650000px;}
.xd7_c00151{left:587.700000px;}
.xfc_c00151{left:589.200000px;}
.xbc_c00151{left:592.050000px;}
.xb5_c00151{left:593.550000px;}
.xaf_c00151{left:595.350000px;}
.x13c_c00151{left:597.750000px;}
.x13d_c00151{left:599.100000px;}
.xce_c00151{left:600.450000px;}
.x13e_c00151{left:602.550000px;}
.xe0_c00151{left:603.600000px;}
.xcf_c00151{left:604.800000px;}
.xa2_c00151{left:606.000000px;}
.x125_c00151{left:607.500000px;}
.xc2_c00151{left:612.900000px;}
.x120_c00151{left:614.100000px;}
.xc9_c00151{left:615.150000px;}
.xee_c00151{left:616.200000px;}
.x10c_c00151{left:618.000000px;}
.xd4_c00151{left:621.300000px;}
.x121_c00151{left:623.100000px;}
.xd3_c00151{left:624.750000px;}
.x11e_c00151{left:626.250000px;}
.xe1_c00151{left:627.300000px;}
.xeb_c00151{left:630.600000px;}
.xb6_c00151{left:632.400000px;}
.xc3_c00151{left:633.450000px;}
.xd9_c00151{left:635.850000px;}
.xbd_c00151{left:637.350000px;}
.x142_c00151{left:640.050000px;}
.x12f_c00151{left:642.450000px;}
.xa3_c00151{left:643.500000px;}
.x138_c00151{left:644.700000px;}
.xf4_c00151{left:645.750000px;}
.xa9_c00151{left:648.150000px;}
.xb0_c00151{left:651.150000px;}
.xf7_c00151{left:655.500000px;}
.xff_c00151{left:657.600000px;}
.xda_c00151{left:658.950000px;}
.xb7_c00151{left:661.200000px;}
.x12c_c00151{left:666.150000px;}
.xa4_c00151{left:670.500000px;}
.x102_c00151{left:672.750000px;}
.xb1_c00151{left:673.800000px;}
.xc4_c00151{left:675.900000px;}
.x13f_c00151{left:677.400000px;}
.xf0_c00151{left:679.500000px;}
.xe2_c00151{left:682.050000px;}
.xdb_c00151{left:683.100000px;}
.xbe_c00151{left:684.900000px;}
.xe6_c00151{left:687.900000px;}
.x108_c00151{left:688.950000px;}
.x10d_c00151{left:690.000000px;}
.xaa_c00151{left:691.050000px;}
.xb2_c00151{left:692.550000px;}
.x131_c00151{left:694.350000px;}
.x122_c00151{left:697.650000px;}
.x10e_c00151{left:699.000000px;}
.xf8_c00151{left:700.200000px;}
.x119_c00151{left:701.550000px;}
.xa5_c00151{left:703.950000px;}
.xc5_c00151{left:705.000000px;}
.x105_c00151{left:707.850000px;}
.xdc_c00151{left:709.800000px;}
.xd0_c00151{left:713.550000px;}
.xbf_c00151{left:715.500000px;}
.x11a_c00151{left:716.700000px;}
.xe7_c00151{left:718.500000px;}
.xa6_c00151{left:721.650000px;}
.x126_c00151{left:723.600000px;}
.xb8_c00151{left:727.800000px;}
.x103_c00151{left:730.800000px;}
.xab_c00151{left:733.200000px;}
.x143_c00151{left:734.700000px;}
.x10f_c00151{left:737.550000px;}
.xe8_c00151{left:738.600000px;}
.xd5_c00151{left:741.600000px;}
.xe3_c00151{left:743.550000px;}
.x109_c00151{left:744.750000px;}
.x132_c00151{left:746.250000px;}
.x129_c00151{left:748.500000px;}
.xc0_c00151{left:753.600000px;}
.x106_c00151{left:754.650000px;}
.xdd_c00151{left:755.850000px;}
.x133_c00151{left:757.350000px;}
.x112_c00151{left:759.450000px;}
.xc6_c00151{left:764.100000px;}
.x11f_c00151{left:765.900000px;}
.xe4_c00151{left:767.250000px;}
.x140_c00151{left:768.900000px;}
.x12d_c00151{left:770.550000px;}
.xac_c00151{left:772.500000px;}
.xb9_c00151{left:774.600000px;}
.x100_c00151{left:776.850000px;}
.x113_c00151{left:777.900000px;}
.x136_c00151{left:779.700000px;}
.x110_c00151{left:781.500000px;}
.xec_c00151{left:782.550000px;}
.xc7_c00151{left:784.950000px;}
.xa7_c00151{left:786.150000px;}
.xe9_c00151{left:787.200000px;}
.x11b_c00151{left:789.150000px;}
.xad_c00151{left:790.800000px;}
.x144_c00151{left:793.800000px;}
.xca_c00151{left:794.850000px;}
.x111_c00151{left:797.700000px;}
.xd1_c00151{left:799.200000px;}
.xb3_c00151{left:801.600000px;}
.x115_c00151{left:803.250000px;}
.xde_c00151{left:804.450000px;}
.xcb_c00151{left:805.950000px;}
.x13a_c00151{left:807.750000px;}
.xba_c00151{left:809.550000px;}
.xf9_c00151{left:812.100000px;}
.xdf_c00151{left:814.200000px;}
.x123_c00151{left:816.750000px;}
.x134_c00151{left:820.050000px;}
.x12a_c00151{left:821.100000px;}
.xf1_c00151{left:822.150000px;}
.xcc_c00151{left:823.650000px;}
.x114_c00151{left:825.450000px;}
.xef_c00151{left:827.550000px;}
.x141_c00151{left:829.050000px;}
.xd6_c00151{left:831.300000px;}
.x116_c00151{left:832.800000px;}
.xae_c00151{left:834.750000px;}
.x101_c00151{left:836.550000px;}
.xe5_c00151{left:838.200000px;}
.xa8_c00151{left:841.200000px;}
.xc8_c00151{left:846.900000px;}
.x107_c00151{left:848.250000px;}
.xd2_c00151{left:850.050000px;}
.x10a_c00151{left:851.700000px;}
.xfa_c00151{left:854.100000px;}
.xf2_c00151{left:855.300000px;}
.x11d_c00151{left:856.950000px;}
.xea_c00151{left:858.150000px;}
.x13b_c00151{left:859.200000px;}
.xc1_c00151{left:860.850000px;}
.xf5_c00151{left:863.550000px;}
.x10b_c00151{left:868.200000px;}
.x12b_c00151{left:869.550000px;}
.xfd_c00151{left:870.750000px;}
.xf6_c00151{left:872.550000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.wsc_c00151{word-spacing:-17.444444pt;}
.ws4_c00151{word-spacing:-11.795414pt;}
.wsa_c00151{word-spacing:-11.749460pt;}
.wsf_c00151{word-spacing:-7.768345pt;}
.ws9_c00151{word-spacing:-6.040161pt;}
.ws8_c00151{word-spacing:-5.746386pt;}
.ws2_c00151{word-spacing:-2.539683pt;}
.ws3_c00151{word-spacing:-2.189944pt;}
.ws7_c00151{word-spacing:-1.953602pt;}
.ws1_c00151{word-spacing:-1.111111pt;}
.ws12_c00151{word-spacing:0.000000pt;}
.ws11_c00151{word-spacing:1.092465pt;}
.wsb_c00151{word-spacing:2.729783pt;}
.ws5_c00151{word-spacing:6.842767pt;}
.ws6_c00151{word-spacing:15.021968pt;}
.ws10_c00151{word-spacing:15.300546pt;}
.wsd_c00151{word-spacing:20.632708pt;}
.wse_c00151{word-spacing:54.444444pt;}
.ws0_c00151{word-spacing:146.666667pt;}
._2_c00151{width:41.773012pt;}
._1_c00151{width:51.781948pt;}
._0_c00151{width:78.949062pt;}
.fs7_c00151{font-size:32.000000pt;}
.fs6_c00151{font-size:48.000000pt;}
.fs2_c00151{font-size:53.333333pt;}
.fs3_c00151{font-size:58.666667pt;}
.fs4_c00151{font-size:64.000000pt;}
.fs1_c00151{font-size:69.333333pt;}
.fs5_c00151{font-size:74.666667pt;}
.fs0_c00151{font-size:96.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y6d_c00151{bottom:160.666667pt;}
.y6c_c00151{bottom:175.066667pt;}
.y37_c00151{bottom:176.266667pt;}
.y6b_c00151{bottom:188.133333pt;}
.y36_c00151{bottom:192.000000pt;}
.y6a_c00151{bottom:200.666667pt;}
.y35_c00151{bottom:207.600000pt;}
.y69_c00151{bottom:213.733333pt;}
.y34_c00151{bottom:223.333333pt;}
.y68_c00151{bottom:226.133333pt;}
.y67_c00151{bottom:238.933333pt;}
.y33_c00151{bottom:239.066667pt;}
.y66_c00151{bottom:251.466667pt;}
.y32_c00151{bottom:257.866667pt;}
.y65_c00151{bottom:264.266667pt;}
.y31_c00151{bottom:271.066667pt;}
.y64_c00151{bottom:277.066667pt;}
.y30_c00151{bottom:283.866667pt;}
.y63_c00151{bottom:289.600000pt;}
.y2f_c00151{bottom:297.600000pt;}
.y62_c00151{bottom:302.400000pt;}
.y2e_c00151{bottom:312.000000pt;}
.y61_c00151{bottom:315.200000pt;}
.y60_c00151{bottom:328.000000pt;}
.y2d_c00151{bottom:329.600000pt;}
.y5f_c00151{bottom:341.466667pt;}
.y2c_c00151{bottom:345.600000pt;}
.y5e_c00151{bottom:353.333333pt;}
.y2b_c00151{bottom:361.600000pt;}
.y5d_c00151{bottom:366.000000pt;}
.y2a_c00151{bottom:375.066667pt;}
.y5c_c00151{bottom:378.533333pt;}
.y5b_c00151{bottom:391.333333pt;}
.y29_c00151{bottom:396.800000pt;}
.y5a_c00151{bottom:404.133333pt;}
.y28_c00151{bottom:412.800000pt;}
.y59_c00151{bottom:416.666667pt;}
.y27_c00151{bottom:431.333333pt;}
.y26_c00151{bottom:448.000000pt;}
.y58_c00151{bottom:456.266667pt;}
.y57_c00151{bottom:469.066667pt;}
.y25_c00151{bottom:470.133333pt;}
.y56_c00151{bottom:481.866667pt;}
.y24_c00151{bottom:487.066667pt;}
.y55_c00151{bottom:494.400000pt;}
.y23_c00151{bottom:503.066667pt;}
.y54_c00151{bottom:507.466667pt;}
.y22_c00151{bottom:518.666667pt;}
.y52_c00151{bottom:519.600000pt;}
.y53_c00151{bottom:519.733333pt;}
.y51_c00151{bottom:533.066667pt;}
.y21_c00151{bottom:537.333333pt;}
.y50_c00151{bottom:554.800000pt;}
.y20_c00151{bottom:556.800000pt;}
.y4f_c00151{bottom:570.533333pt;}
.y1f_c00151{bottom:573.466667pt;}
.y4e_c00151{bottom:586.800000pt;}
.y1e_c00151{bottom:589.200000pt;}
.y4d_c00151{bottom:601.866667pt;}
.y1d_c00151{bottom:604.933333pt;}
.y1c_c00151{bottom:620.933333pt;}
.y4c_c00151{bottom:624.933333pt;}
.y1b_c00151{bottom:636.933333pt;}
.y4b_c00151{bottom:640.266667pt;}
.y1a_c00151{bottom:652.666667pt;}
.y4a_c00151{bottom:656.266667pt;}
.y19_c00151{bottom:668.400000pt;}
.y49_c00151{bottom:672.000000pt;}
.y18_c00151{bottom:684.133333pt;}
.y48_c00151{bottom:688.000000pt;}
.y17_c00151{bottom:700.133333pt;}
.y47_c00151{bottom:703.733333pt;}
.y16_c00151{bottom:719.333333pt;}
.y46_c00151{bottom:719.466667pt;}
.y15_c00151{bottom:735.066667pt;}
.y45_c00151{bottom:735.200000pt;}
.y14_c00151{bottom:750.800000pt;}
.y44_c00151{bottom:750.933333pt;}
.y13_c00151{bottom:766.533333pt;}
.y43_c00151{bottom:766.666667pt;}
.y12_c00151{bottom:781.866667pt;}
.y42_c00151{bottom:782.400000pt;}
.y11_c00151{bottom:797.866667pt;}
.y41_c00151{bottom:802.133333pt;}
.y10_c00151{bottom:813.600000pt;}
.y40_c00151{bottom:817.866667pt;}
.yf_c00151{bottom:829.600000pt;}
.ye_c00151{bottom:845.333333pt;}
.yd_c00151{bottom:861.066667pt;}
.yc_c00151{bottom:877.066667pt;}
.y3f_c00151{bottom:884.800000pt;}
.yb_c00151{bottom:892.800000pt;}
.ya_c00151{bottom:908.533333pt;}
.y3e_c00151{bottom:910.933333pt;}
.y9_c00151{bottom:924.266667pt;}
.y3d_c00151{bottom:924.400000pt;}
.y3c_c00151{bottom:940.133333pt;}
.y8_c00151{bottom:940.266667pt;}
.y3b_c00151{bottom:955.866667pt;}
.y7_c00151{bottom:956.000000pt;}
.y3a_c00151{bottom:971.600000pt;}
.y6_c00151{bottom:971.733333pt;}
.y5_c00151{bottom:987.466667pt;}
.y39_c00151{bottom:987.600000pt;}
.y4_c00151{bottom:1002.533333pt;}
.y38_c00151{bottom:1002.933333pt;}
.y3_c00151{bottom:1003.200000pt;}
.y1_c00151{bottom:1026.933333pt;}
.y2_c00151{bottom:1027.200000pt;}
.h9_c00151{height:32.000000pt;}
.h8_c00151{height:48.000000pt;}
.h4_c00151{height:53.333333pt;}
.h5_c00151{height:58.666667pt;}
.h6_c00151{height:64.000000pt;}
.h3_c00151{height:69.333333pt;}
.h7_c00151{height:74.666667pt;}
.h2_c00151{height:96.000000pt;}
.h1_c00151{height:1136.666667pt;}
.h0_c00151{height:1136.959961pt;}
.w1_c00151{width:847.333333pt;}
.w0_c00151{width:847.360027pt;}
.x0_c00151{left:0.000000pt;}
.x83_c00151{left:153.600000pt;}
.x84_c00151{left:160.000000pt;}
.x5f_c00151{left:161.600000pt;}
.x1_c00151{left:163.466667pt;}
.x86_c00151{left:164.800000pt;}
.x9e_c00151{left:165.733333pt;}
.x99_c00151{left:172.133333pt;}
.x9c_c00151{left:175.066667pt;}
.x74_c00151{left:176.133333pt;}
.x56_c00151{left:177.333333pt;}
.x10_c00151{left:178.666667pt;}
.x9a_c00151{left:184.933333pt;}
.x3_c00151{left:185.866667pt;}
.x8a_c00151{left:192.666667pt;}
.x68_c00151{left:193.600000pt;}
.x60_c00151{left:195.200000pt;}
.x8f_c00151{left:196.800000pt;}
.x90_c00151{left:199.733333pt;}
.x87_c00151{left:200.666667pt;}
.x65_c00151{left:203.066667pt;}
.x80_c00151{left:204.666667pt;}
.x6e_c00151{left:206.400000pt;}
.x4_c00151{left:207.600000pt;}
.x28_c00151{left:209.066667pt;}
.x14_c00151{left:210.666667pt;}
.x1c_c00151{left:211.866667pt;}
.x30_c00151{left:213.466667pt;}
.x66_c00151{left:214.933333pt;}
.x47_c00151{left:216.266667pt;}
.x23_c00151{left:217.200000pt;}
.x42_c00151{left:218.133333pt;}
.x85_c00151{left:219.200000pt;}
.x6f_c00151{left:221.066667pt;}
.x3c_c00151{left:222.666667pt;}
.x34_c00151{left:224.400000pt;}
.x53_c00151{left:228.000000pt;}
.x4e_c00151{left:229.600000pt;}
.x8b_c00151{left:230.800000pt;}
.x1d_c00151{left:232.400000pt;}
.x5_c00151{left:233.466667pt;}
.x4c_c00151{left:235.066667pt;}
.x61_c00151{left:240.266667pt;}
.x7e_c00151{left:241.733333pt;}
.x11_c00151{left:244.000000pt;}
.x35_c00151{left:246.133333pt;}
.x1e_c00151{left:248.133333pt;}
.x88_c00151{left:249.600000pt;}
.x43_c00151{left:250.800000pt;}
.x6_c00151{left:251.733333pt;}
.x15_c00151{left:253.600000pt;}
.x36_c00151{left:255.066667pt;}
.x5c_c00151{left:256.666667pt;}
.x31_c00151{left:258.000000pt;}
.x91_c00151{left:260.533333pt;}
.x48_c00151{left:262.400000pt;}
.x7_c00151{left:268.666667pt;}
.x3a_c00151{left:270.400000pt;}
.x2e_c00151{left:272.666667pt;}
.x79_c00151{left:274.133333pt;}
.x81_c00151{left:275.066667pt;}
.x3d_c00151{left:277.733333pt;}
.x54_c00151{left:279.200000pt;}
.x75_c00151{left:281.066667pt;}
.x24_c00151{left:282.400000pt;}
.x29_c00151{left:284.266667pt;}
.x98_c00151{left:285.333333pt;}
.x4f_c00151{left:287.200000pt;}
.x67_c00151{left:288.533333pt;}
.x32_c00151{left:290.666667pt;}
.x1f_c00151{left:292.000000pt;}
.x25_c00151{left:293.866667pt;}
.x3e_c00151{left:295.333333pt;}
.x2f_c00151{left:297.333333pt;}
.x8_c00151{left:299.333333pt;}
.x9f_c00151{left:300.666667pt;}
.x37_c00151{left:301.733333pt;}
.x5d_c00151{left:302.800000pt;}
.x72_c00151{left:304.533333pt;}
.x16_c00151{left:306.133333pt;}
.x57_c00151{left:309.200000pt;}
.x5e_c00151{left:312.666667pt;}
.x55_c00151{left:316.933333pt;}
.x69_c00151{left:318.400000pt;}
.x73_c00151{left:319.866667pt;}
.x9_c00151{left:321.466667pt;}
.x49_c00151{left:323.200000pt;}
.x17_c00151{left:325.333333pt;}
.x9d_c00151{left:328.666667pt;}
.x26_c00151{left:332.533333pt;}
.x58_c00151{left:335.733333pt;}
.x76_c00151{left:336.800000pt;}
.x3f_c00151{left:339.866667pt;}
.x7f_c00151{left:341.866667pt;}
.x2a_c00151{left:342.800000pt;}
.x7c_c00151{left:347.333333pt;}
.x20_c00151{left:349.333333pt;}
.x50_c00151{left:352.533333pt;}
.x62_c00151{left:353.866667pt;}
.x44_c00151{left:355.066667pt;}
.x59_c00151{left:356.266667pt;}
.x2b_c00151{left:357.200000pt;}
.x95_c00151{left:358.400000pt;}
.x38_c00151{left:361.200000pt;}
.x12_c00151{left:362.666667pt;}
.x8c_c00151{left:363.600000pt;}
.x6a_c00151{left:364.800000pt;}
.x63_c00151{left:366.000000pt;}
.x18_c00151{left:368.266667pt;}
.xa_c00151{left:369.200000pt;}
.x45_c00151{left:372.666667pt;}
.x4d_c00151{left:374.266667pt;}
.x4a_c00151{left:375.600000pt;}
.x92_c00151{left:376.666667pt;}
.x19_c00151{left:378.533333pt;}
.x2_c00151{left:382.666667pt;}
.x40_c00151{left:384.266667pt;}
.x7a_c00151{left:387.066667pt;}
.x8d_c00151{left:388.533333pt;}
.x77_c00151{left:391.866667pt;}
.x33_c00151{left:392.800000pt;}
.x93_c00151{left:394.933333pt;}
.x21_c00151{left:396.400000pt;}
.x2c_c00151{left:397.466667pt;}
.x51_c00151{left:398.666667pt;}
.x5a_c00151{left:401.333333pt;}
.xb_c00151{left:403.466667pt;}
.x64_c00151{left:405.066667pt;}
.x6b_c00151{left:406.400000pt;}
.x82_c00151{left:407.600000pt;}
.x96_c00151{left:408.666667pt;}
.x7d_c00151{left:410.000000pt;}
.x94_c00151{left:410.933333pt;}
.x1a_c00151{left:412.133333pt;}
.x7b_c00151{left:414.266667pt;}
.x70_c00151{left:415.333333pt;}
.x39_c00151{left:416.266667pt;}
.x27_c00151{left:418.666667pt;}
.x9b_c00151{left:421.066667pt;}
.x5b_c00151{left:422.133333pt;}
.xc_c00151{left:423.333333pt;}
.x41_c00151{left:424.266667pt;}
.x78_c00151{left:426.400000pt;}
.x22_c00151{left:427.733333pt;}
.x97_c00151{left:429.066667pt;}
.x1b_c00151{left:431.066667pt;}
.x46_c00151{left:433.866667pt;}
.x2d_c00151{left:435.200000pt;}
.x3b_c00151{left:437.066667pt;}
.x52_c00151{left:438.666667pt;}
.x6c_c00151{left:439.733333pt;}
.x13_c00151{left:441.733333pt;}
.x89_c00151{left:445.066667pt;}
.x71_c00151{left:446.000000pt;}
.x4b_c00151{left:447.600000pt;}
.xd_c00151{left:448.666667pt;}
.x8e_c00151{left:449.733333pt;}
.x6d_c00151{left:450.666667pt;}
.xe_c00151{left:457.333333pt;}
.xf_c00151{left:469.866667pt;}
.x127_c00151{left:471.066667pt;}
.x137_c00151{left:476.400000pt;}
.x104_c00151{left:477.466667pt;}
.xcd_c00151{left:478.666667pt;}
.xed_c00151{left:490.133333pt;}
.xfb_c00151{left:491.733333pt;}
.xf3_c00151{left:493.333333pt;}
.xb4_c00151{left:494.666667pt;}
.xa0_c00151{left:495.733333pt;}
.x11c_c00151{left:497.333333pt;}
.x117_c00151{left:502.133333pt;}
.x118_c00151{left:503.066667pt;}
.x130_c00151{left:504.266667pt;}
.x12e_c00151{left:506.133333pt;}
.x128_c00151{left:507.866667pt;}
.xd8_c00151{left:510.133333pt;}
.xfe_c00151{left:512.133333pt;}
.x135_c00151{left:514.933333pt;}
.x124_c00151{left:516.000000pt;}
.xbb_c00151{left:517.600000pt;}
.xa1_c00151{left:519.466667pt;}
.x139_c00151{left:521.466667pt;}
.xd7_c00151{left:522.400000pt;}
.xfc_c00151{left:523.733333pt;}
.xbc_c00151{left:526.266667pt;}
.xb5_c00151{left:527.600000pt;}
.xaf_c00151{left:529.200000pt;}
.x13c_c00151{left:531.333333pt;}
.x13d_c00151{left:532.533333pt;}
.xce_c00151{left:533.733333pt;}
.x13e_c00151{left:535.600000pt;}
.xe0_c00151{left:536.533333pt;}
.xcf_c00151{left:537.600000pt;}
.xa2_c00151{left:538.666667pt;}
.x125_c00151{left:540.000000pt;}
.xc2_c00151{left:544.800000pt;}
.x120_c00151{left:545.866667pt;}
.xc9_c00151{left:546.800000pt;}
.xee_c00151{left:547.733333pt;}
.x10c_c00151{left:549.333333pt;}
.xd4_c00151{left:552.266667pt;}
.x121_c00151{left:553.866667pt;}
.xd3_c00151{left:555.333333pt;}
.x11e_c00151{left:556.666667pt;}
.xe1_c00151{left:557.600000pt;}
.xeb_c00151{left:560.533333pt;}
.xb6_c00151{left:562.133333pt;}
.xc3_c00151{left:563.066667pt;}
.xd9_c00151{left:565.200000pt;}
.xbd_c00151{left:566.533333pt;}
.x142_c00151{left:568.933333pt;}
.x12f_c00151{left:571.066667pt;}
.xa3_c00151{left:572.000000pt;}
.x138_c00151{left:573.066667pt;}
.xf4_c00151{left:574.000000pt;}
.xa9_c00151{left:576.133333pt;}
.xb0_c00151{left:578.800000pt;}
.xf7_c00151{left:582.666667pt;}
.xff_c00151{left:584.533333pt;}
.xda_c00151{left:585.733333pt;}
.xb7_c00151{left:587.733333pt;}
.x12c_c00151{left:592.133333pt;}
.xa4_c00151{left:596.000000pt;}
.x102_c00151{left:598.000000pt;}
.xb1_c00151{left:598.933333pt;}
.xc4_c00151{left:600.800000pt;}
.x13f_c00151{left:602.133333pt;}
.xf0_c00151{left:604.000000pt;}
.xe2_c00151{left:606.266667pt;}
.xdb_c00151{left:607.200000pt;}
.xbe_c00151{left:608.800000pt;}
.xe6_c00151{left:611.466667pt;}
.x108_c00151{left:612.400000pt;}
.x10d_c00151{left:613.333333pt;}
.xaa_c00151{left:614.266667pt;}
.xb2_c00151{left:615.600000pt;}
.x131_c00151{left:617.200000pt;}
.x122_c00151{left:620.133333pt;}
.x10e_c00151{left:621.333333pt;}
.xf8_c00151{left:622.400000pt;}
.x119_c00151{left:623.600000pt;}
.xa5_c00151{left:625.733333pt;}
.xc5_c00151{left:626.666667pt;}
.x105_c00151{left:629.200000pt;}
.xdc_c00151{left:630.933333pt;}
.xd0_c00151{left:634.266667pt;}
.xbf_c00151{left:636.000000pt;}
.x11a_c00151{left:637.066667pt;}
.xe7_c00151{left:638.666667pt;}
.xa6_c00151{left:641.466667pt;}
.x126_c00151{left:643.200000pt;}
.xb8_c00151{left:646.933333pt;}
.x103_c00151{left:649.600000pt;}
.xab_c00151{left:651.733333pt;}
.x143_c00151{left:653.066667pt;}
.x10f_c00151{left:655.600000pt;}
.xe8_c00151{left:656.533333pt;}
.xd5_c00151{left:659.200000pt;}
.xe3_c00151{left:660.933333pt;}
.x109_c00151{left:662.000000pt;}
.x132_c00151{left:663.333333pt;}
.x129_c00151{left:665.333333pt;}
.xc0_c00151{left:669.866667pt;}
.x106_c00151{left:670.800000pt;}
.xdd_c00151{left:671.866667pt;}
.x133_c00151{left:673.200000pt;}
.x112_c00151{left:675.066667pt;}
.xc6_c00151{left:679.200000pt;}
.x11f_c00151{left:680.800000pt;}
.xe4_c00151{left:682.000000pt;}
.x140_c00151{left:683.466667pt;}
.x12d_c00151{left:684.933333pt;}
.xac_c00151{left:686.666667pt;}
.xb9_c00151{left:688.533333pt;}
.x100_c00151{left:690.533333pt;}
.x113_c00151{left:691.466667pt;}
.x136_c00151{left:693.066667pt;}
.x110_c00151{left:694.666667pt;}
.xec_c00151{left:695.600000pt;}
.xc7_c00151{left:697.733333pt;}
.xa7_c00151{left:698.800000pt;}
.xe9_c00151{left:699.733333pt;}
.x11b_c00151{left:701.466667pt;}
.xad_c00151{left:702.933333pt;}
.x144_c00151{left:705.600000pt;}
.xca_c00151{left:706.533333pt;}
.x111_c00151{left:709.066667pt;}
.xd1_c00151{left:710.400000pt;}
.xb3_c00151{left:712.533333pt;}
.x115_c00151{left:714.000000pt;}
.xde_c00151{left:715.066667pt;}
.xcb_c00151{left:716.400000pt;}
.x13a_c00151{left:718.000000pt;}
.xba_c00151{left:719.600000pt;}
.xf9_c00151{left:721.866667pt;}
.xdf_c00151{left:723.733333pt;}
.x123_c00151{left:726.000000pt;}
.x134_c00151{left:728.933333pt;}
.x12a_c00151{left:729.866667pt;}
.xf1_c00151{left:730.800000pt;}
.xcc_c00151{left:732.133333pt;}
.x114_c00151{left:733.733333pt;}
.xef_c00151{left:735.600000pt;}
.x141_c00151{left:736.933333pt;}
.xd6_c00151{left:738.933333pt;}
.x116_c00151{left:740.266667pt;}
.xae_c00151{left:742.000000pt;}
.x101_c00151{left:743.600000pt;}
.xe5_c00151{left:745.066667pt;}
.xa8_c00151{left:747.733333pt;}
.xc8_c00151{left:752.800000pt;}
.x107_c00151{left:754.000000pt;}
.xd2_c00151{left:755.600000pt;}
.x10a_c00151{left:757.066667pt;}
.xfa_c00151{left:759.200000pt;}
.xf2_c00151{left:760.266667pt;}
.x11d_c00151{left:761.733333pt;}
.xea_c00151{left:762.800000pt;}
.x13b_c00151{left:763.733333pt;}
.xc1_c00151{left:765.200000pt;}
.xf5_c00151{left:767.600000pt;}
.x10b_c00151{left:771.733333pt;}
.x12b_c00151{left:772.933333pt;}
.xfd_c00151{left:774.000000pt;}
.xf6_c00151{left:775.600000pt;}
}





/* 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_c00152 {
    display:none;
  }
  .loading-indicator_c00152.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00152 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_c00152 { 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_c00152" -> "#page-container .classname_c00152")
 */
.pf_c00152 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00152 { /* 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_c00152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00152 { /* 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_c00152 { /* 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_c00152 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00152 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00152 {overflow:visible;}
  }
}
.c_c00152 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00152 { /* 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_c00152:after { /* webkit #35443 */
  content: '';
}
.t_c00152:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00152 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 */
}
.__c00152 { /* 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_c00152 { /* info for Javascript */
  display:none;
}
.l_c00152 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00152 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00152 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00152: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_c00152 {
    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_c00152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00152.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_c00152 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00152;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.000000;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;}
.m104_c00152{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.me2_c00152{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mac_c00152{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.me1_c00152{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m32_c00152{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00152{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m23_c00152{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.me8_c00152{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m69_c00152{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m11_c00152{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m16_c00152{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00152{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);}
.m54_c00152{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mee_c00152{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00152{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00152{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me5_c00152{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00152{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00152{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mad_c00152{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m91_c00152{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00152{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00152{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m92_c00152{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00152{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m63_c00152{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00152{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00152{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00152{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00152{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00152{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mae_c00152{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m103_c00152{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m96_c00152{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00152{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m47_c00152{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.maa_c00152{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md9_c00152{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00152{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00152{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.md8_c00152{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mde_c00152{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m101_c00152{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00152{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m33_c00152{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00152{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m62_c00152{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m12_c00152{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md4_c00152{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00152{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mab_c00152{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m34_c00152{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00152{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m6_c00152{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00152{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00152{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m75_c00152{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m64_c00152{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md1_c00152{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00152{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00152{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00152{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m20_c00152{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m5_c00152{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m67_c00152{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m102_c00152{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mba_c00152{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m87_c00152{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00152{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00152{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m97_c00152{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m57_c00152{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md2_c00152{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00152{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m36_c00152{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00152{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m41_c00152{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m44_c00152{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m59_c00152{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mb_c00152{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00152{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m76_c00152{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m93_c00152{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00152{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m45_c00152{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md5_c00152{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00152{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00152{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00152{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7_c00152{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00152{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf_c00152{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m48_c00152{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00152{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m58_c00152{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00152{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00152{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m14_c00152{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00152{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.md3_c00152{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m25_c00152{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.me_c00152{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00152{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00152{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m19_c00152{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00152{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00152{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m83_c00152{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00152{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00152{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m27_c00152{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00152{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m94_c00152{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00152{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00152{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00152{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m56_c00152{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00152{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00152{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m68_c00152{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00152{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m30_c00152{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m22_c00152{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10_c00152{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00152{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00152{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m49_c00152{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m40_c00152{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m21_c00152{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md_c00152{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m53_c00152{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00152{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me3_c00152{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m99_c00152{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m98_c00152{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00152{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00152{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00152{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m35_c00152{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00152{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m37_c00152{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m43_c00152{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00152{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00152{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00152{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc_c00152{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00152{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m26_c00152{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m52_c00152{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00152{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m39_c00152{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m66_c00152{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00152{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m9_c00152{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m74_c00152{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.med_c00152{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00152{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m65_c00152{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m17_c00152{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00152{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mff_c00152{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00152{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00152{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m15_c00152{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m60_c00152{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md6_c00152{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m18_c00152{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00152{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m86_c00152{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m51_c00152{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00152{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00152{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m29_c00152{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m24_c00152{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mec_c00152{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m84_c00152{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m73_c00152{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00152{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m55_c00152{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m42_c00152{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m77_c00152{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mce_c00152{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00152{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00152{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m13_c00152{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00152{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m28_c00152{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00152{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me9_c00152{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m80_c00152{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00152{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00152{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m31_c00152{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8_c00152{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00152{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3_c00152{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.meb_c00152{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00152{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00152{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00152{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mea_c00152{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m61_c00152{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00152{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m89_c00152{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00152{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m79_c00152{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00152{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00152{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m81_c00152{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md7_c00152{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);}
.mf9_c00152{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00152{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00152{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00152{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m88_c00152{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00152{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m85_c00152{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00152{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00152{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00152{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mca_c00152{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m50_c00152{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00152{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.me4_c00152{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00152{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m78_c00152{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00152{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00152{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m90_c00152{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m72_c00152{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m100_c00152{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.md0_c00152{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m38_c00152{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me0_c00152{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00152{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m71_c00152{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m70_c00152{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me7_c00152{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m82_c00152{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00152{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mda_c00152{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00152{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mef_c00152{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00152{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.maf_c00152{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00152{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00152{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m95_c00152{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00152{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00152{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00152{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m46_c00152{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m2_c00152{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00152{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.me6_c00152{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00152{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00152{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls0_c00152{letter-spacing:0.000000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{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__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00152{word-spacing:-3.437500px;}
.ws7_c00152{word-spacing:0.000000px;}
.ws0_c00152{word-spacing:4.090909px;}
.ws6_c00152{word-spacing:5.581006px;}
.ws2_c00152{word-spacing:6.223404px;}
.ws4_c00152{word-spacing:7.421053px;}
.ws3_c00152{word-spacing:13.125000px;}
.ws5_c00152{word-spacing:59.721619px;}
.fc0_c00152{color:transparent;}
.fs1_c00152{font-size:36.000000px;}
.fs6_c00152{font-size:48.000000px;}
.fs4_c00152{font-size:54.000000px;}
.fs3_c00152{font-size:60.000000px;}
.fs2_c00152{font-size:66.000000px;}
.fs5_c00152{font-size:72.000000px;}
.fs0_c00152{font-size:114.000000px;}
.y0_c00152{bottom:0.000000px;}
.y6c_c00152{bottom:72.000000px;}
.y6b_c00152{bottom:172.800000px;}
.y36_c00152{bottom:189.450000px;}
.y6a_c00152{bottom:190.800000px;}
.y35_c00152{bottom:207.150000px;}
.y69_c00152{bottom:208.500000px;}
.y34_c00152{bottom:225.450000px;}
.y68_c00152{bottom:229.950000px;}
.y33_c00152{bottom:242.700000px;}
.y67_c00152{bottom:248.700000px;}
.y32_c00152{bottom:260.700000px;}
.y66_c00152{bottom:266.700000px;}
.y31_c00152{bottom:278.400000px;}
.y65_c00152{bottom:284.700000px;}
.y30_c00152{bottom:296.100000px;}
.y64_c00152{bottom:302.400000px;}
.y2f_c00152{bottom:314.100000px;}
.y63_c00152{bottom:320.400000px;}
.y2e_c00152{bottom:331.800000px;}
.y62_c00152{bottom:341.250000px;}
.y2d_c00152{bottom:349.500000px;}
.y61_c00152{bottom:359.550000px;}
.y2c_c00152{bottom:367.500000px;}
.y60_c00152{bottom:377.850000px;}
.y2b_c00152{bottom:385.500000px;}
.y5f_c00152{bottom:395.550000px;}
.y2a_c00152{bottom:403.500000px;}
.y5e_c00152{bottom:413.250000px;}
.y29_c00152{bottom:421.200000px;}
.y5d_c00152{bottom:430.950000px;}
.y28_c00152{bottom:439.200000px;}
.y5c_c00152{bottom:449.250000px;}
.y27_c00152{bottom:456.900000px;}
.y5b_c00152{bottom:466.500000px;}
.y26_c00152{bottom:478.800000px;}
.y5a_c00152{bottom:484.500000px;}
.y25_c00152{bottom:496.500000px;}
.y59_c00152{bottom:501.750000px;}
.y24_c00152{bottom:519.000000px;}
.y58_c00152{bottom:519.750000px;}
.y23_c00152{bottom:536.700000px;}
.y57_c00152{bottom:537.750000px;}
.y56_c00152{bottom:555.450000px;}
.y22_c00152{bottom:558.600000px;}
.y55_c00152{bottom:573.450000px;}
.y21_c00152{bottom:576.600000px;}
.y54_c00152{bottom:591.150000px;}
.y20_c00152{bottom:594.300000px;}
.y1f_c00152{bottom:612.300000px;}
.y53_c00152{bottom:617.100000px;}
.y52_c00152{bottom:630.000000px;}
.y1e_c00152{bottom:634.200000px;}
.y51_c00152{bottom:645.450000px;}
.y1d_c00152{bottom:652.500000px;}
.y50_c00152{bottom:659.850000px;}
.y1c_c00152{bottom:669.750000px;}
.y4f_c00152{bottom:673.950000px;}
.y1b_c00152{bottom:687.750000px;}
.y4e_c00152{bottom:688.350000px;}
.y4d_c00152{bottom:702.750000px;}
.y1a_c00152{bottom:705.450000px;}
.y4c_c00152{bottom:717.450000px;}
.y19_c00152{bottom:723.450000px;}
.y4b_c00152{bottom:735.750000px;}
.y18_c00152{bottom:741.450000px;}
.y4a_c00152{bottom:753.750000px;}
.y17_c00152{bottom:759.150000px;}
.y49_c00152{bottom:771.750000px;}
.y16_c00152{bottom:776.850000px;}
.y48_c00152{bottom:789.450000px;}
.y15_c00152{bottom:794.850000px;}
.y47_c00152{bottom:807.150000px;}
.y14_c00152{bottom:812.100000px;}
.y13_c00152{bottom:830.100000px;}
.y46_c00152{bottom:831.900000px;}
.y12_c00152{bottom:847.350000px;}
.y45_c00152{bottom:850.650000px;}
.y11_c00152{bottom:865.350000px;}
.y44_c00152{bottom:868.350000px;}
.y10_c00152{bottom:883.350000px;}
.y43_c00152{bottom:886.050000px;}
.yf_c00152{bottom:901.050000px;}
.y42_c00152{bottom:903.750000px;}
.ye_c00152{bottom:918.750000px;}
.y41_c00152{bottom:921.450000px;}
.yd_c00152{bottom:936.450000px;}
.y40_c00152{bottom:939.450000px;}
.yc_c00152{bottom:954.150000px;}
.y3f_c00152{bottom:957.150000px;}
.yb_c00152{bottom:971.850000px;}
.y3e_c00152{bottom:974.850000px;}
.ya_c00152{bottom:989.850000px;}
.y3d_c00152{bottom:992.850000px;}
.y9_c00152{bottom:1007.550000px;}
.y3c_c00152{bottom:1014.150000px;}
.y8_c00152{bottom:1025.250000px;}
.y3b_c00152{bottom:1032.150000px;}
.y7_c00152{bottom:1044.000000px;}
.y3a_c00152{bottom:1058.400000px;}
.y6_c00152{bottom:1061.250000px;}
.y39_c00152{bottom:1076.700000px;}
.y5_c00152{bottom:1078.500000px;}
.y4_c00152{bottom:1096.500000px;}
.y38_c00152{bottom:1098.000000px;}
.y3_c00152{bottom:1114.200000px;}
.y37_c00152{bottom:1116.000000px;}
.y1_c00152{bottom:1141.200000px;}
.y2_c00152{bottom:1266.450000px;}
.h3_c00152{height:36.000000px;}
.h8_c00152{height:48.000000px;}
.h6_c00152{height:54.000000px;}
.h5_c00152{height:60.000000px;}
.h4_c00152{height:66.000000px;}
.h7_c00152{height:72.000000px;}
.h2_c00152{height:114.000000px;}
.h0_c00152{height:1271.160094px;}
.h1_c00152{height:1271.250000px;}
.w1_c00152{width:953.250000px;}
.w0_c00152{width:953.280030px;}
.x0_c00152{left:0.000000px;}
.x3_c00152{left:6.450000px;}
.x4_c00152{left:81.750000px;}
.x46_c00152{left:95.700000px;}
.xa_c00152{left:100.050000px;}
.x30_c00152{left:101.100000px;}
.x54_c00152{left:102.450000px;}
.x6a_c00152{left:103.500000px;}
.x6f_c00152{left:104.550000px;}
.x7b_c00152{left:105.900000px;}
.x81_c00152{left:106.950000px;}
.x85_c00152{left:108.000000px;}
.x91_c00152{left:109.350000px;}
.xa7_c00152{left:110.550000px;}
.x3f_c00152{left:116.250000px;}
.x55_c00152{left:120.300000px;}
.x79_c00152{left:123.900000px;}
.x3a_c00152{left:124.950000px;}
.x95_c00152{left:126.450000px;}
.x70_c00152{left:129.750000px;}
.x1b_c00152{left:132.900000px;}
.x13_c00152{left:138.750000px;}
.x9e_c00152{left:139.950000px;}
.x4c_c00152{left:141.750000px;}
.x4e_c00152{left:143.550000px;}
.x59_c00152{left:145.050000px;}
.x9c_c00152{left:146.100000px;}
.x9b_c00152{left:147.300000px;}
.xb_c00152{left:148.950000px;}
.x2c_c00152{left:151.650000px;}
.x40_c00152{left:153.300000px;}
.x47_c00152{left:154.800000px;}
.x78_c00152{left:157.650000px;}
.x14_c00152{left:161.100000px;}
.x5f_c00152{left:162.750000px;}
.xa1_c00152{left:165.300000px;}
.x1c_c00152{left:169.200000px;}
.x83_c00152{left:171.000000px;}
.x5_c00152{left:172.500000px;}
.x36_c00152{left:173.850000px;}
.xa2_c00152{left:175.050000px;}
.x82_c00152{left:177.150000px;}
.x41_c00152{left:178.500000px;}
.x92_c00152{left:180.300000px;}
.x63_c00152{left:182.850000px;}
.x7c_c00152{left:184.350000px;}
.xc_c00152{left:186.000000px;}
.x90_c00152{left:191.100000px;}
.x86_c00152{left:193.050000px;}
.x27_c00152{left:194.100000px;}
.x31_c00152{left:195.750000px;}
.x21_c00152{left:197.100000px;}
.x42_c00152{left:198.600000px;}
.x89_c00152{left:200.100000px;}
.x2d_c00152{left:202.350000px;}
.x6b_c00152{left:203.700000px;}
.xd_c00152{left:205.050000px;}
.x15_c00152{left:207.900000px;}
.x64_c00152{left:209.100000px;}
.x1d_c00152{left:211.350000px;}
.x28_c00152{left:213.600000px;}
.x32_c00152{left:214.800000px;}
.x56_c00152{left:216.450000px;}
.x6_c00152{left:217.800000px;}
.x96_c00152{left:219.300000px;}
.x4f_c00152{left:220.500000px;}
.x5a_c00152{left:222.450000px;}
.x6c_c00152{left:224.250000px;}
.x9d_c00152{left:227.400000px;}
.x16_c00152{left:228.750000px;}
.x9f_c00152{left:229.950000px;}
.x3b_c00152{left:231.450000px;}
.x8a_c00152{left:232.500000px;}
.x65_c00152{left:234.000000px;}
.x87_c00152{left:236.250000px;}
.x4a_c00152{left:237.900000px;}
.x60_c00152{left:240.150000px;}
.x8c_c00152{left:241.200000px;}
.x17_c00152{left:242.400000px;}
.x73_c00152{left:245.100000px;}
.x22_c00152{left:246.750000px;}
.x8b_c00152{left:248.400000px;}
.x37_c00152{left:249.450000px;}
.x68_c00152{left:250.800000px;}
.x43_c00152{left:252.300000px;}
.x71_c00152{left:253.650000px;}
.x2e_c00152{left:254.850000px;}
.x33_c00152{left:256.200000px;}
.x76_c00152{left:257.550000px;}
.x99_c00152{left:258.600000px;}
.xe_c00152{left:262.650000px;}
.x88_c00152{left:264.000000px;}
.x50_c00152{left:266.250000px;}
.x7d_c00152{left:269.700000px;}
.x5b_c00152{left:272.850000px;}
.x38_c00152{left:274.350000px;}
.x7f_c00152{left:277.200000px;}
.x29_c00152{left:278.700000px;}
.x3c_c00152{left:279.750000px;}
.xa3_c00152{left:280.950000px;}
.x39_c00152{left:283.050000px;}
.x51_c00152{left:286.800000px;}
.x23_c00152{left:287.850000px;}
.x74_c00152{left:291.150000px;}
.x7_c00152{left:293.100000px;}
.xa0_c00152{left:295.050000px;}
.x72_c00152{left:297.900000px;}
.x48_c00152{left:299.100000px;}
.xf_c00152{left:300.150000px;}
.x44_c00152{left:301.200000px;}
.x75_c00152{left:302.700000px;}
.x4d_c00152{left:304.800000px;}
.x5c_c00152{left:306.750000px;}
.x97_c00152{left:308.100000px;}
.x61_c00152{left:310.050000px;}
.xa8_c00152{left:311.550000px;}
.x52_c00152{left:313.050000px;}
.x18_c00152{left:314.100000px;}
.x1e_c00152{left:315.450000px;}
.x24_c00152{left:317.100000px;}
.x8_c00152{left:318.300000px;}
.x3d_c00152{left:322.200000px;}
.x1_c00152{left:324.000000px;}
.xa5_c00152{left:326.550000px;}
.x7a_c00152{left:329.850000px;}
.x10_c00152{left:331.800000px;}
.x84_c00152{left:333.300000px;}
.x57_c00152{left:336.600000px;}
.x77_c00152{left:338.250000px;}
.x2f_c00152{left:340.200000px;}
.x5d_c00152{left:343.500000px;}
.xa4_c00152{left:345.450000px;}
.x7e_c00152{left:346.800000px;}
.x1f_c00152{left:348.600000px;}
.x25_c00152{left:350.550000px;}
.x11_c00152{left:351.600000px;}
.x98_c00152{left:353.100000px;}
.x6d_c00152{left:355.950000px;}
.x80_c00152{left:357.900000px;}
.x93_c00152{left:359.400000px;}
.x19_c00152{left:360.900000px;}
.x2a_c00152{left:363.000000px;}
.x8d_c00152{left:364.200000px;}
.x34_c00152{left:366.750000px;}
.x53_c00152{left:368.550000px;}
.x9_c00152{left:370.800000px;}
.x69_c00152{left:372.150000px;}
.x4b_c00152{left:374.250000px;}
.x20_c00152{left:377.400000px;}
.xa6_c00152{left:378.450000px;}
.x26_c00152{left:380.850000px;}
.x1a_c00152{left:383.550000px;}
.x9a_c00152{left:384.900000px;}
.x58_c00152{left:385.950000px;}
.x62_c00152{left:388.800000px;}
.x94_c00152{left:390.000000px;}
.x67_c00152{left:392.100000px;}
.x49_c00152{left:394.500000px;}
.x5e_c00152{left:396.000000px;}
.x8f_c00152{left:397.800000px;}
.x45_c00152{left:399.600000px;}
.x66_c00152{left:401.100000px;}
.x2b_c00152{left:404.100000px;}
.x8e_c00152{left:409.200000px;}
.x6e_c00152{left:410.250000px;}
.x3e_c00152{left:413.250000px;}
.x12_c00152{left:414.600000px;}
.x35_c00152{left:416.850000px;}
.xbe_c00152{left:440.250000px;}
.xf5_c00152{left:441.300000px;}
.x118_c00152{left:444.300000px;}
.x10e_c00152{left:456.150000px;}
.xa9_c00152{left:457.200000px;}
.xf2_c00152{left:458.250000px;}
.x101_c00152{left:459.750000px;}
.x11b_c00152{left:461.850000px;}
.x123_c00152{left:463.050000px;}
.x144_c00152{left:464.100000px;}
.x113_c00152{left:470.850000px;}
.x114_c00152{left:472.200000px;}
.xb6_c00152{left:475.200000px;}
.xea_c00152{left:478.800000px;}
.xd6_c00152{left:480.450000px;}
.xe1_c00152{left:481.650000px;}
.xf0_c00152{left:482.850000px;}
.xb1_c00152{left:485.100000px;}
.xda_c00152{left:487.350000px;}
.x134_c00152{left:488.700000px;}
.xc2_c00152{left:490.350000px;}
.x102_c00152{left:493.200000px;}
.x12c_c00152{left:495.000000px;}
.xeb_c00152{left:496.350000px;}
.xfd_c00152{left:497.700000px;}
.x149_c00152{left:498.750000px;}
.xaa_c00152{left:500.700000px;}
.xc9_c00152{left:503.850000px;}
.xec_c00152{left:505.350000px;}
.xe2_c00152{left:507.150000px;}
.x13a_c00152{left:510.000000px;}
.x13d_c00152{left:513.000000px;}
.x103_c00152{left:514.050000px;}
.x138_c00152{left:516.450000px;}
.x126_c00152{left:517.650000px;}
.x141_c00152{left:519.300000px;}
.xbf_c00152{left:520.500000px;}
.x115_c00152{left:524.400000px;}
.xca_c00152{left:526.200000px;}
.xe3_c00152{left:527.700000px;}
.xf8_c00152{left:530.400000px;}
.x120_c00152{left:532.050000px;}
.x12a_c00152{left:534.150000px;}
.xbc_c00152{left:536.250000px;}
.xf1_c00152{left:538.650000px;}
.xb7_c00152{left:540.750000px;}
.x135_c00152{left:544.200000px;}
.xab_c00152{left:545.400000px;}
.xdb_c00152{left:546.750000px;}
.x116_c00152{left:548.550000px;}
.xb2_c00152{left:550.950000px;}
.xe4_c00152{left:553.650000px;}
.xd7_c00152{left:555.000000px;}
.xd0_c00152{left:557.100000px;}
.xe6_c00152{left:560.550000px;}
.x108_c00152{left:562.350000px;}
.x130_c00152{left:564.750000px;}
.xc3_c00152{left:565.950000px;}
.x104_c00152{left:568.050000px;}
.xe7_c00152{left:569.250000px;}
.x109_c00152{left:570.300000px;}
.xb3_c00152{left:572.250000px;}
.x13b_c00152{left:574.050000px;}
.xac_c00152{left:575.250000px;}
.xcb_c00152{left:576.900000px;}
.xbd_c00152{left:577.950000px;}
.x124_c00152{left:579.300000px;}
.xf9_c00152{left:582.300000px;}
.x127_c00152{left:583.500000px;}
.xb8_c00152{left:587.850000px;}
.xf3_c00152{left:589.350000px;}
.x137_c00152{left:590.550000px;}
.xc4_c00152{left:592.200000px;}
.x11c_c00152{left:594.300000px;}
.x13e_c00152{left:596.850000px;}
.xd1_c00152{left:598.200000px;}
.xfe_c00152{left:599.850000px;}
.xe8_c00152{left:601.650000px;}
.xcc_c00152{left:602.850000px;}
.xed_c00152{left:604.050000px;}
.x131_c00152{left:605.400000px;}
.x10f_c00152{left:607.950000px;}
.x146_c00152{left:609.000000px;}
.x142_c00152{left:610.050000px;}
.xf6_c00152{left:611.100000px;}
.x136_c00152{left:612.900000px;}
.xfa_c00152{left:613.950000px;}
.x110_c00152{left:615.450000px;}
.x139_c00152{left:616.950000px;}
.xc5_c00152{left:619.950000px;}
.xf4_c00152{left:621.450000px;}
.xe5_c00152{left:623.550000px;}
.x143_c00152{left:625.500000px;}
.xad_c00152{left:626.700000px;}
.xdc_c00152{left:628.500000px;}
.xd2_c00152{left:630.600000px;}
.x119_c00152{left:631.800000px;}
.x105_c00152{left:633.600000px;}
.xfb_c00152{left:634.800000px;}
.x13f_c00152{left:638.100000px;}
.xc0_c00152{left:639.300000px;}
.x12b_c00152{left:640.650000px;}
.xc6_c00152{left:648.450000px;}
.x10a_c00152{left:651.600000px;}
.xb9_c00152{left:654.750000px;}
.x128_c00152{left:656.850000px;}
.xb4_c00152{left:658.350000px;}
.xff_c00152{left:659.550000px;}
.xe9_c00152{left:660.600000px;}
.xd8_c00152{left:661.950000px;}
.xdd_c00152{left:664.800000px;}
.x145_c00152{left:665.850000px;}
.xae_c00152{left:667.050000px;}
.xd3_c00152{left:669.150000px;}
.xc7_c00152{left:671.550000px;}
.x11e_c00152{left:674.700000px;}
.xee_c00152{left:675.750000px;}
.xb5_c00152{left:678.450000px;}
.x147_c00152{left:679.950000px;}
.x121_c00152{left:681.150000px;}
.x10b_c00152{left:682.200000px;}
.x106_c00152{left:684.750000px;}
.xd4_c00152{left:687.450000px;}
.xba_c00152{left:689.250000px;}
.x140_c00152{left:691.050000px;}
.xfc_c00152{left:693.150000px;}
.x13c_c00152{left:694.200000px;}
.x11d_c00152{left:697.200000px;}
.xde_c00152{left:699.300000px;}
.x125_c00152{left:701.400000px;}
.xcd_c00152{left:705.450000px;}
.x111_c00152{left:707.250000px;}
.xd9_c00152{left:708.750000px;}
.x132_c00152{left:709.800000px;}
.xd5_c00152{left:711.150000px;}
.x11a_c00152{left:713.850000px;}
.xaf_c00152{left:715.950000px;}
.x11f_c00152{left:720.000000px;}
.x12d_c00152{left:722.850000px;}
.x148_c00152{left:725.250000px;}
.xef_c00152{left:727.650000px;}
.x10c_c00152{left:729.600000px;}
.xc1_c00152{left:731.100000px;}
.x12e_c00152{left:732.900000px;}
.xc8_c00152{left:735.300000px;}
.x112_c00152{left:736.800000px;}
.xb0_c00152{left:738.600000px;}
.x14a_c00152{left:739.950000px;}
.xce_c00152{left:741.150000px;}
.x100_c00152{left:744.900000px;}
.x107_c00152{left:745.950000px;}
.xdf_c00152{left:747.450000px;}
.x2_c00152{left:748.500000px;}
.x133_c00152{left:750.450000px;}
.xf7_c00152{left:751.500000px;}
.x129_c00152{left:753.000000px;}
.x122_c00152{left:758.550000px;}
.xbb_c00152{left:760.500000px;}
.x10d_c00152{left:762.750000px;}
.xcf_c00152{left:764.850000px;}
.x117_c00152{left:765.900000px;}
.x12f_c00152{left:769.950000px;}
.xe0_c00152{left:772.950000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws1_c00152{word-spacing:-3.055556pt;}
.ws7_c00152{word-spacing:0.000000pt;}
.ws0_c00152{word-spacing:3.636364pt;}
.ws6_c00152{word-spacing:4.960894pt;}
.ws2_c00152{word-spacing:5.531915pt;}
.ws4_c00152{word-spacing:6.596491pt;}
.ws3_c00152{word-spacing:11.666667pt;}
.ws5_c00152{word-spacing:53.085884pt;}
.fs1_c00152{font-size:32.000000pt;}
.fs6_c00152{font-size:42.666667pt;}
.fs4_c00152{font-size:48.000000pt;}
.fs3_c00152{font-size:53.333333pt;}
.fs2_c00152{font-size:58.666667pt;}
.fs5_c00152{font-size:64.000000pt;}
.fs0_c00152{font-size:101.333333pt;}
.y0_c00152{bottom:0.000000pt;}
.y6c_c00152{bottom:64.000000pt;}
.y6b_c00152{bottom:153.600000pt;}
.y36_c00152{bottom:168.400000pt;}
.y6a_c00152{bottom:169.600000pt;}
.y35_c00152{bottom:184.133333pt;}
.y69_c00152{bottom:185.333333pt;}
.y34_c00152{bottom:200.400000pt;}
.y68_c00152{bottom:204.400000pt;}
.y33_c00152{bottom:215.733333pt;}
.y67_c00152{bottom:221.066667pt;}
.y32_c00152{bottom:231.733333pt;}
.y66_c00152{bottom:237.066667pt;}
.y31_c00152{bottom:247.466667pt;}
.y65_c00152{bottom:253.066667pt;}
.y30_c00152{bottom:263.200000pt;}
.y64_c00152{bottom:268.800000pt;}
.y2f_c00152{bottom:279.200000pt;}
.y63_c00152{bottom:284.800000pt;}
.y2e_c00152{bottom:294.933333pt;}
.y62_c00152{bottom:303.333333pt;}
.y2d_c00152{bottom:310.666667pt;}
.y61_c00152{bottom:319.600000pt;}
.y2c_c00152{bottom:326.666667pt;}
.y60_c00152{bottom:335.866667pt;}
.y2b_c00152{bottom:342.666667pt;}
.y5f_c00152{bottom:351.600000pt;}
.y2a_c00152{bottom:358.666667pt;}
.y5e_c00152{bottom:367.333333pt;}
.y29_c00152{bottom:374.400000pt;}
.y5d_c00152{bottom:383.066667pt;}
.y28_c00152{bottom:390.400000pt;}
.y5c_c00152{bottom:399.333333pt;}
.y27_c00152{bottom:406.133333pt;}
.y5b_c00152{bottom:414.666667pt;}
.y26_c00152{bottom:425.600000pt;}
.y5a_c00152{bottom:430.666667pt;}
.y25_c00152{bottom:441.333333pt;}
.y59_c00152{bottom:446.000000pt;}
.y24_c00152{bottom:461.333333pt;}
.y58_c00152{bottom:462.000000pt;}
.y23_c00152{bottom:477.066667pt;}
.y57_c00152{bottom:478.000000pt;}
.y56_c00152{bottom:493.733333pt;}
.y22_c00152{bottom:496.533333pt;}
.y55_c00152{bottom:509.733333pt;}
.y21_c00152{bottom:512.533333pt;}
.y54_c00152{bottom:525.466667pt;}
.y20_c00152{bottom:528.266667pt;}
.y1f_c00152{bottom:544.266667pt;}
.y53_c00152{bottom:548.533333pt;}
.y52_c00152{bottom:560.000000pt;}
.y1e_c00152{bottom:563.733333pt;}
.y51_c00152{bottom:573.733333pt;}
.y1d_c00152{bottom:580.000000pt;}
.y50_c00152{bottom:586.533333pt;}
.y1c_c00152{bottom:595.333333pt;}
.y4f_c00152{bottom:599.066667pt;}
.y1b_c00152{bottom:611.333333pt;}
.y4e_c00152{bottom:611.866667pt;}
.y4d_c00152{bottom:624.666667pt;}
.y1a_c00152{bottom:627.066667pt;}
.y4c_c00152{bottom:637.733333pt;}
.y19_c00152{bottom:643.066667pt;}
.y4b_c00152{bottom:654.000000pt;}
.y18_c00152{bottom:659.066667pt;}
.y4a_c00152{bottom:670.000000pt;}
.y17_c00152{bottom:674.800000pt;}
.y49_c00152{bottom:686.000000pt;}
.y16_c00152{bottom:690.533333pt;}
.y48_c00152{bottom:701.733333pt;}
.y15_c00152{bottom:706.533333pt;}
.y47_c00152{bottom:717.466667pt;}
.y14_c00152{bottom:721.866667pt;}
.y13_c00152{bottom:737.866667pt;}
.y46_c00152{bottom:739.466667pt;}
.y12_c00152{bottom:753.200000pt;}
.y45_c00152{bottom:756.133333pt;}
.y11_c00152{bottom:769.200000pt;}
.y44_c00152{bottom:771.866667pt;}
.y10_c00152{bottom:785.200000pt;}
.y43_c00152{bottom:787.600000pt;}
.yf_c00152{bottom:800.933333pt;}
.y42_c00152{bottom:803.333333pt;}
.ye_c00152{bottom:816.666667pt;}
.y41_c00152{bottom:819.066667pt;}
.yd_c00152{bottom:832.400000pt;}
.y40_c00152{bottom:835.066667pt;}
.yc_c00152{bottom:848.133333pt;}
.y3f_c00152{bottom:850.800000pt;}
.yb_c00152{bottom:863.866667pt;}
.y3e_c00152{bottom:866.533333pt;}
.ya_c00152{bottom:879.866667pt;}
.y3d_c00152{bottom:882.533333pt;}
.y9_c00152{bottom:895.600000pt;}
.y3c_c00152{bottom:901.466667pt;}
.y8_c00152{bottom:911.333333pt;}
.y3b_c00152{bottom:917.466667pt;}
.y7_c00152{bottom:928.000000pt;}
.y3a_c00152{bottom:940.800000pt;}
.y6_c00152{bottom:943.333333pt;}
.y39_c00152{bottom:957.066667pt;}
.y5_c00152{bottom:958.666667pt;}
.y4_c00152{bottom:974.666667pt;}
.y38_c00152{bottom:976.000000pt;}
.y3_c00152{bottom:990.400000pt;}
.y37_c00152{bottom:992.000000pt;}
.y1_c00152{bottom:1014.400000pt;}
.y2_c00152{bottom:1125.733333pt;}
.h3_c00152{height:32.000000pt;}
.h8_c00152{height:42.666667pt;}
.h6_c00152{height:48.000000pt;}
.h5_c00152{height:53.333333pt;}
.h4_c00152{height:58.666667pt;}
.h7_c00152{height:64.000000pt;}
.h2_c00152{height:101.333333pt;}
.h0_c00152{height:1129.920084pt;}
.h1_c00152{height:1130.000000pt;}
.w1_c00152{width:847.333333pt;}
.w0_c00152{width:847.360027pt;}
.x0_c00152{left:0.000000pt;}
.x3_c00152{left:5.733333pt;}
.x4_c00152{left:72.666667pt;}
.x46_c00152{left:85.066667pt;}
.xa_c00152{left:88.933333pt;}
.x30_c00152{left:89.866667pt;}
.x54_c00152{left:91.066667pt;}
.x6a_c00152{left:92.000000pt;}
.x6f_c00152{left:92.933333pt;}
.x7b_c00152{left:94.133333pt;}
.x81_c00152{left:95.066667pt;}
.x85_c00152{left:96.000000pt;}
.x91_c00152{left:97.200000pt;}
.xa7_c00152{left:98.266667pt;}
.x3f_c00152{left:103.333333pt;}
.x55_c00152{left:106.933333pt;}
.x79_c00152{left:110.133333pt;}
.x3a_c00152{left:111.066667pt;}
.x95_c00152{left:112.400000pt;}
.x70_c00152{left:115.333333pt;}
.x1b_c00152{left:118.133333pt;}
.x13_c00152{left:123.333333pt;}
.x9e_c00152{left:124.400000pt;}
.x4c_c00152{left:126.000000pt;}
.x4e_c00152{left:127.600000pt;}
.x59_c00152{left:128.933333pt;}
.x9c_c00152{left:129.866667pt;}
.x9b_c00152{left:130.933333pt;}
.xb_c00152{left:132.400000pt;}
.x2c_c00152{left:134.800000pt;}
.x40_c00152{left:136.266667pt;}
.x47_c00152{left:137.600000pt;}
.x78_c00152{left:140.133333pt;}
.x14_c00152{left:143.200000pt;}
.x5f_c00152{left:144.666667pt;}
.xa1_c00152{left:146.933333pt;}
.x1c_c00152{left:150.400000pt;}
.x83_c00152{left:152.000000pt;}
.x5_c00152{left:153.333333pt;}
.x36_c00152{left:154.533333pt;}
.xa2_c00152{left:155.600000pt;}
.x82_c00152{left:157.466667pt;}
.x41_c00152{left:158.666667pt;}
.x92_c00152{left:160.266667pt;}
.x63_c00152{left:162.533333pt;}
.x7c_c00152{left:163.866667pt;}
.xc_c00152{left:165.333333pt;}
.x90_c00152{left:169.866667pt;}
.x86_c00152{left:171.600000pt;}
.x27_c00152{left:172.533333pt;}
.x31_c00152{left:174.000000pt;}
.x21_c00152{left:175.200000pt;}
.x42_c00152{left:176.533333pt;}
.x89_c00152{left:177.866667pt;}
.x2d_c00152{left:179.866667pt;}
.x6b_c00152{left:181.066667pt;}
.xd_c00152{left:182.266667pt;}
.x15_c00152{left:184.800000pt;}
.x64_c00152{left:185.866667pt;}
.x1d_c00152{left:187.866667pt;}
.x28_c00152{left:189.866667pt;}
.x32_c00152{left:190.933333pt;}
.x56_c00152{left:192.400000pt;}
.x6_c00152{left:193.600000pt;}
.x96_c00152{left:194.933333pt;}
.x4f_c00152{left:196.000000pt;}
.x5a_c00152{left:197.733333pt;}
.x6c_c00152{left:199.333333pt;}
.x9d_c00152{left:202.133333pt;}
.x16_c00152{left:203.333333pt;}
.x9f_c00152{left:204.400000pt;}
.x3b_c00152{left:205.733333pt;}
.x8a_c00152{left:206.666667pt;}
.x65_c00152{left:208.000000pt;}
.x87_c00152{left:210.000000pt;}
.x4a_c00152{left:211.466667pt;}
.x60_c00152{left:213.466667pt;}
.x8c_c00152{left:214.400000pt;}
.x17_c00152{left:215.466667pt;}
.x73_c00152{left:217.866667pt;}
.x22_c00152{left:219.333333pt;}
.x8b_c00152{left:220.800000pt;}
.x37_c00152{left:221.733333pt;}
.x68_c00152{left:222.933333pt;}
.x43_c00152{left:224.266667pt;}
.x71_c00152{left:225.466667pt;}
.x2e_c00152{left:226.533333pt;}
.x33_c00152{left:227.733333pt;}
.x76_c00152{left:228.933333pt;}
.x99_c00152{left:229.866667pt;}
.xe_c00152{left:233.466667pt;}
.x88_c00152{left:234.666667pt;}
.x50_c00152{left:236.666667pt;}
.x7d_c00152{left:239.733333pt;}
.x5b_c00152{left:242.533333pt;}
.x38_c00152{left:243.866667pt;}
.x7f_c00152{left:246.400000pt;}
.x29_c00152{left:247.733333pt;}
.x3c_c00152{left:248.666667pt;}
.xa3_c00152{left:249.733333pt;}
.x39_c00152{left:251.600000pt;}
.x51_c00152{left:254.933333pt;}
.x23_c00152{left:255.866667pt;}
.x74_c00152{left:258.800000pt;}
.x7_c00152{left:260.533333pt;}
.xa0_c00152{left:262.266667pt;}
.x72_c00152{left:264.800000pt;}
.x48_c00152{left:265.866667pt;}
.xf_c00152{left:266.800000pt;}
.x44_c00152{left:267.733333pt;}
.x75_c00152{left:269.066667pt;}
.x4d_c00152{left:270.933333pt;}
.x5c_c00152{left:272.666667pt;}
.x97_c00152{left:273.866667pt;}
.x61_c00152{left:275.600000pt;}
.xa8_c00152{left:276.933333pt;}
.x52_c00152{left:278.266667pt;}
.x18_c00152{left:279.200000pt;}
.x1e_c00152{left:280.400000pt;}
.x24_c00152{left:281.866667pt;}
.x8_c00152{left:282.933333pt;}
.x3d_c00152{left:286.400000pt;}
.x1_c00152{left:288.000000pt;}
.xa5_c00152{left:290.266667pt;}
.x7a_c00152{left:293.200000pt;}
.x10_c00152{left:294.933333pt;}
.x84_c00152{left:296.266667pt;}
.x57_c00152{left:299.200000pt;}
.x77_c00152{left:300.666667pt;}
.x2f_c00152{left:302.400000pt;}
.x5d_c00152{left:305.333333pt;}
.xa4_c00152{left:307.066667pt;}
.x7e_c00152{left:308.266667pt;}
.x1f_c00152{left:309.866667pt;}
.x25_c00152{left:311.600000pt;}
.x11_c00152{left:312.533333pt;}
.x98_c00152{left:313.866667pt;}
.x6d_c00152{left:316.400000pt;}
.x80_c00152{left:318.133333pt;}
.x93_c00152{left:319.466667pt;}
.x19_c00152{left:320.800000pt;}
.x2a_c00152{left:322.666667pt;}
.x8d_c00152{left:323.733333pt;}
.x34_c00152{left:326.000000pt;}
.x53_c00152{left:327.600000pt;}
.x9_c00152{left:329.600000pt;}
.x69_c00152{left:330.800000pt;}
.x4b_c00152{left:332.666667pt;}
.x20_c00152{left:335.466667pt;}
.xa6_c00152{left:336.400000pt;}
.x26_c00152{left:338.533333pt;}
.x1a_c00152{left:340.933333pt;}
.x9a_c00152{left:342.133333pt;}
.x58_c00152{left:343.066667pt;}
.x62_c00152{left:345.600000pt;}
.x94_c00152{left:346.666667pt;}
.x67_c00152{left:348.533333pt;}
.x49_c00152{left:350.666667pt;}
.x5e_c00152{left:352.000000pt;}
.x8f_c00152{left:353.600000pt;}
.x45_c00152{left:355.200000pt;}
.x66_c00152{left:356.533333pt;}
.x2b_c00152{left:359.200000pt;}
.x8e_c00152{left:363.733333pt;}
.x6e_c00152{left:364.666667pt;}
.x3e_c00152{left:367.333333pt;}
.x12_c00152{left:368.533333pt;}
.x35_c00152{left:370.533333pt;}
.xbe_c00152{left:391.333333pt;}
.xf5_c00152{left:392.266667pt;}
.x118_c00152{left:394.933333pt;}
.x10e_c00152{left:405.466667pt;}
.xa9_c00152{left:406.400000pt;}
.xf2_c00152{left:407.333333pt;}
.x101_c00152{left:408.666667pt;}
.x11b_c00152{left:410.533333pt;}
.x123_c00152{left:411.600000pt;}
.x144_c00152{left:412.533333pt;}
.x113_c00152{left:418.533333pt;}
.x114_c00152{left:419.733333pt;}
.xb6_c00152{left:422.400000pt;}
.xea_c00152{left:425.600000pt;}
.xd6_c00152{left:427.066667pt;}
.xe1_c00152{left:428.133333pt;}
.xf0_c00152{left:429.200000pt;}
.xb1_c00152{left:431.200000pt;}
.xda_c00152{left:433.200000pt;}
.x134_c00152{left:434.400000pt;}
.xc2_c00152{left:435.866667pt;}
.x102_c00152{left:438.400000pt;}
.x12c_c00152{left:440.000000pt;}
.xeb_c00152{left:441.200000pt;}
.xfd_c00152{left:442.400000pt;}
.x149_c00152{left:443.333333pt;}
.xaa_c00152{left:445.066667pt;}
.xc9_c00152{left:447.866667pt;}
.xec_c00152{left:449.200000pt;}
.xe2_c00152{left:450.800000pt;}
.x13a_c00152{left:453.333333pt;}
.x13d_c00152{left:456.000000pt;}
.x103_c00152{left:456.933333pt;}
.x138_c00152{left:459.066667pt;}
.x126_c00152{left:460.133333pt;}
.x141_c00152{left:461.600000pt;}
.xbf_c00152{left:462.666667pt;}
.x115_c00152{left:466.133333pt;}
.xca_c00152{left:467.733333pt;}
.xe3_c00152{left:469.066667pt;}
.xf8_c00152{left:471.466667pt;}
.x120_c00152{left:472.933333pt;}
.x12a_c00152{left:474.800000pt;}
.xbc_c00152{left:476.666667pt;}
.xf1_c00152{left:478.800000pt;}
.xb7_c00152{left:480.666667pt;}
.x135_c00152{left:483.733333pt;}
.xab_c00152{left:484.800000pt;}
.xdb_c00152{left:486.000000pt;}
.x116_c00152{left:487.600000pt;}
.xb2_c00152{left:489.733333pt;}
.xe4_c00152{left:492.133333pt;}
.xd7_c00152{left:493.333333pt;}
.xd0_c00152{left:495.200000pt;}
.xe6_c00152{left:498.266667pt;}
.x108_c00152{left:499.866667pt;}
.x130_c00152{left:502.000000pt;}
.xc3_c00152{left:503.066667pt;}
.x104_c00152{left:504.933333pt;}
.xe7_c00152{left:506.000000pt;}
.x109_c00152{left:506.933333pt;}
.xb3_c00152{left:508.666667pt;}
.x13b_c00152{left:510.266667pt;}
.xac_c00152{left:511.333333pt;}
.xcb_c00152{left:512.800000pt;}
.xbd_c00152{left:513.733333pt;}
.x124_c00152{left:514.933333pt;}
.xf9_c00152{left:517.600000pt;}
.x127_c00152{left:518.666667pt;}
.xb8_c00152{left:522.533333pt;}
.xf3_c00152{left:523.866667pt;}
.x137_c00152{left:524.933333pt;}
.xc4_c00152{left:526.400000pt;}
.x11c_c00152{left:528.266667pt;}
.x13e_c00152{left:530.533333pt;}
.xd1_c00152{left:531.733333pt;}
.xfe_c00152{left:533.200000pt;}
.xe8_c00152{left:534.800000pt;}
.xcc_c00152{left:535.866667pt;}
.xed_c00152{left:536.933333pt;}
.x131_c00152{left:538.133333pt;}
.x10f_c00152{left:540.400000pt;}
.x146_c00152{left:541.333333pt;}
.x142_c00152{left:542.266667pt;}
.xf6_c00152{left:543.200000pt;}
.x136_c00152{left:544.800000pt;}
.xfa_c00152{left:545.733333pt;}
.x110_c00152{left:547.066667pt;}
.x139_c00152{left:548.400000pt;}
.xc5_c00152{left:551.066667pt;}
.xf4_c00152{left:552.400000pt;}
.xe5_c00152{left:554.266667pt;}
.x143_c00152{left:556.000000pt;}
.xad_c00152{left:557.066667pt;}
.xdc_c00152{left:558.666667pt;}
.xd2_c00152{left:560.533333pt;}
.x119_c00152{left:561.600000pt;}
.x105_c00152{left:563.200000pt;}
.xfb_c00152{left:564.266667pt;}
.x13f_c00152{left:567.200000pt;}
.xc0_c00152{left:568.266667pt;}
.x12b_c00152{left:569.466667pt;}
.xc6_c00152{left:576.400000pt;}
.x10a_c00152{left:579.200000pt;}
.xb9_c00152{left:582.000000pt;}
.x128_c00152{left:583.866667pt;}
.xb4_c00152{left:585.200000pt;}
.xff_c00152{left:586.266667pt;}
.xe9_c00152{left:587.200000pt;}
.xd8_c00152{left:588.400000pt;}
.xdd_c00152{left:590.933333pt;}
.x145_c00152{left:591.866667pt;}
.xae_c00152{left:592.933333pt;}
.xd3_c00152{left:594.800000pt;}
.xc7_c00152{left:596.933333pt;}
.x11e_c00152{left:599.733333pt;}
.xee_c00152{left:600.666667pt;}
.xb5_c00152{left:603.066667pt;}
.x147_c00152{left:604.400000pt;}
.x121_c00152{left:605.466667pt;}
.x10b_c00152{left:606.400000pt;}
.x106_c00152{left:608.666667pt;}
.xd4_c00152{left:611.066667pt;}
.xba_c00152{left:612.666667pt;}
.x140_c00152{left:614.266667pt;}
.xfc_c00152{left:616.133333pt;}
.x13c_c00152{left:617.066667pt;}
.x11d_c00152{left:619.733333pt;}
.xde_c00152{left:621.600000pt;}
.x125_c00152{left:623.466667pt;}
.xcd_c00152{left:627.066667pt;}
.x111_c00152{left:628.666667pt;}
.xd9_c00152{left:630.000000pt;}
.x132_c00152{left:630.933333pt;}
.xd5_c00152{left:632.133333pt;}
.x11a_c00152{left:634.533333pt;}
.xaf_c00152{left:636.400000pt;}
.x11f_c00152{left:640.000000pt;}
.x12d_c00152{left:642.533333pt;}
.x148_c00152{left:644.666667pt;}
.xef_c00152{left:646.800000pt;}
.x10c_c00152{left:648.533333pt;}
.xc1_c00152{left:649.866667pt;}
.x12e_c00152{left:651.466667pt;}
.xc8_c00152{left:653.600000pt;}
.x112_c00152{left:654.933333pt;}
.xb0_c00152{left:656.533333pt;}
.x14a_c00152{left:657.733333pt;}
.xce_c00152{left:658.800000pt;}
.x100_c00152{left:662.133333pt;}
.x107_c00152{left:663.066667pt;}
.xdf_c00152{left:664.400000pt;}
.x2_c00152{left:665.333333pt;}
.x133_c00152{left:667.066667pt;}
.xf7_c00152{left:668.000000pt;}
.x129_c00152{left:669.333333pt;}
.x122_c00152{left:674.266667pt;}
.xbb_c00152{left:676.000000pt;}
.x10d_c00152{left:678.000000pt;}
.xcf_c00152{left:679.866667pt;}
.x117_c00152{left:680.800000pt;}
.x12f_c00152{left:684.400000pt;}
.xe0_c00152{left:687.066667pt;}
}





/* 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_c00153 {
    display:none;
  }
  .loading-indicator_c00153.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00153 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_c00153 { 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_c00153" -> "#page-container .classname_c00153")
 */
.pf_c00153 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00153 { /* 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_c00153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00153 { /* 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_c00153 { /* 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_c00153 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00153 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00153 {overflow:visible;}
  }
}
.c_c00153 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00153 { /* 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_c00153:after { /* webkit #35443 */
  content: '';
}
.t_c00153:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00153 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 */
}
.__c00153 { /* 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_c00153 { /* info for Javascript */
  display:none;
}
.l_c00153 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00153 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00153 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00153: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_c00153 {
    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_c00153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00153.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_c00153 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00153;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.000000;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;}
.m11c_c00153{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m27_c00153{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00153{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m80_c00153{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m49_c00153{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mac_c00153{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mce_c00153{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m52_c00153{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.maf_c00153{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00153{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m99_c00153{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m83_c00153{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.mad_c00153{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00153{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md1_c00153{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00153{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mae_c00153{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00153{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00153{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m91_c00153{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00153{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00153{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00153{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m115_c00153{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00153{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00153{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m14_c00153{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00153{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m114_c00153{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00153{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00153{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00153{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00153{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00153{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mf_c00153{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00153{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00153{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00153{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m69_c00153{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00153{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mca_c00153{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m77_c00153{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mec_c00153{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00153{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00153{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m19_c00153{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m12_c00153{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00153{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m10_c00153{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00153{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m53_c00153{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mb_c00153{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m26_c00153{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00153{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.me7_c00153{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00153{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m100_c00153{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m18_c00153{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md3_c00153{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m11_c00153{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md8_c00153{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00153{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00153{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00153{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m35_c00153{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m15_c00153{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00153{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.md_c00153{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00153{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00153{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00153{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m56_c00153{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00153{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00153{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m33_c00153{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m25_c00153{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00153{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00153{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mda_c00153{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m38_c00153{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m47_c00153{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m89_c00153{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00153{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m55_c00153{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m23_c00153{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00153{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m61_c00153{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00153{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00153{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00153{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md4_c00153{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mc_c00153{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00153{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00153{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m102_c00153{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00153{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00153{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00153{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m43_c00153{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m60_c00153{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m88_c00153{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md0_c00153{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me_c00153{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00153{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m30_c00153{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00153{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00153{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m45_c00153{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00153{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00153{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m65_c00153{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00153{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.med_c00153{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me0_c00153{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m66_c00153{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me8_c00153{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m106_c00153{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00153{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00153{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00153{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00153{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00153{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00153{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m17_c00153{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00153{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m40_c00153{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00153{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md2_c00153{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00153{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00153{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md9_c00153{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m72_c00153{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m20_c00153{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8_c00153{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m22_c00153{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md6_c00153{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me6_c00153{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7_c00153{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m13_c00153{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me4_c00153{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m24_c00153{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00153{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m57_c00153{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00153{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00153{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00153{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m46_c00153{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m78_c00153{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m81_c00153{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md7_c00153{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m62_c00153{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me2_c00153{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00153{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m64_c00153{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mde_c00153{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m50_c00153{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00153{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00153{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m71_c00153{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m51_c00153{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m82_c00153{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00153{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me9_c00153{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me5_c00153{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m85_c00153{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m6_c00153{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mee_c00153{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00153{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m58_c00153{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m29_c00153{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00153{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m44_c00153{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m108_c00153{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00153{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00153{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m34_c00153{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me3_c00153{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m54_c00153{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m76_c00153{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00153{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m59_c00153{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00153{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m86_c00153{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00153{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m84_c00153{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m28_c00153{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00153{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m31_c00153{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me1_c00153{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00153{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00153{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m39_c00153{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00153{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m41_c00153{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mba_c00153{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00153{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.maa_c00153{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00153{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00153{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00153{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00153{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9_c00153{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00153{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m32_c00153{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00153{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m103_c00153{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00153{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m48_c00153{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m119_c00153{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mab_c00153{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m42_c00153{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00153{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00153{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00153{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00153{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m107_c00153{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m21_c00153{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00153{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m113_c00153{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m16_c00153{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00153{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00153{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00153{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m110_c00153{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m118_c00153{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00153{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.meb_c00153{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00153{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m112_c00153{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m67_c00153{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);}
.mef_c00153{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m79_c00153{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m73_c00153{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00153{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m36_c00153{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00153{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00153{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m116_c00153{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00153{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00153{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00153{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m95_c00153{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mff_c00153{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00153{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m68_c00153{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mea_c00153{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m87_c00153{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m74_c00153{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00153{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00153{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00153{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00153{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m105_c00153{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m117_c00153{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m98_c00153{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m75_c00153{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m101_c00153{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00153{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m109_c00153{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00153{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00153{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00153{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m104_c00153{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00153{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00153{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m70_c00153{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.md5_c00153{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m90_c00153{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m63_c00153{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m93_c00153{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c00153{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00153{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m94_c00153{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m92_c00153{transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);}
.m96_c00153{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00153{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m97_c00153{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);}
.m111_c00153{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls0_c00153{letter-spacing:0.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{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__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00153{word-spacing:-0.194070px;}
.ws10_c00153{word-spacing:0.000000px;}
.ws0_c00153{word-spacing:2.024540px;}
.ws6_c00153{word-spacing:8.663793px;}
.ws2_c00153{word-spacing:13.285714px;}
.ws4_c00153{word-spacing:21.500000px;}
.ws7_c00153{word-spacing:23.211796px;}
.ws5_c00153{word-spacing:23.666667px;}
.ws1_c00153{word-spacing:24.000000px;}
.ws8_c00153{word-spacing:26.428954px;}
.ws3_c00153{word-spacing:26.500000px;}
.wse_c00153{word-spacing:29.285714px;}
.ws9_c00153{word-spacing:31.254692px;}
.wsc_c00153{word-spacing:32.250000px;}
.wsb_c00153{word-spacing:35.833333px;}
.wsd_c00153{word-spacing:36.000000px;}
.wsf_c00153{word-spacing:60.000000px;}
._0_c00153{width:63.000000px;}
._1_c00153{width:91.250000px;}
.fc0_c00153{color:transparent;}
.fs6_c00153{font-size:36.000000px;}
.fs7_c00153{font-size:48.000000px;}
.fs5_c00153{font-size:54.000000px;}
.fs4_c00153{font-size:60.000000px;}
.fs2_c00153{font-size:66.000000px;}
.fs3_c00153{font-size:72.000000px;}
.fs1_c00153{font-size:78.000000px;}
.fs0_c00153{font-size:84.000000px;}
.y0_c00153{bottom:0.000000px;}
.y6c_c00153{bottom:12.900000px;}
.y6b_c00153{bottom:183.900000px;}
.y36_c00153{bottom:185.100000px;}
.y35_c00153{bottom:203.100000px;}
.y6a_c00153{bottom:209.550000px;}
.y34_c00153{bottom:221.100000px;}
.y69_c00153{bottom:224.550000px;}
.y68_c00153{bottom:238.200000px;}
.y33_c00153{bottom:238.650000px;}
.y67_c00153{bottom:252.300000px;}
.y32_c00153{bottom:256.650000px;}
.y66_c00153{bottom:266.700000px;}
.y31_c00153{bottom:274.350000px;}
.y65_c00153{bottom:281.100000px;}
.y30_c00153{bottom:292.650000px;}
.y64_c00153{bottom:295.200000px;}
.y63_c00153{bottom:309.600000px;}
.y2f_c00153{bottom:310.350000px;}
.y62_c00153{bottom:322.500000px;}
.y2e_c00153{bottom:327.600000px;}
.y61_c00153{bottom:337.050000px;}
.y2d_c00153{bottom:353.700000px;}
.y60_c00153{bottom:355.350000px;}
.y2c_c00153{bottom:367.800000px;}
.y5f_c00153{bottom:373.350000px;}
.y2b_c00153{bottom:381.900000px;}
.y5e_c00153{bottom:390.600000px;}
.y2a_c00153{bottom:396.300000px;}
.y5d_c00153{bottom:408.600000px;}
.y29_c00153{bottom:410.400000px;}
.y28_c00153{bottom:425.100000px;}
.y5c_c00153{bottom:426.300000px;}
.y27_c00153{bottom:440.550000px;}
.y5b_c00153{bottom:448.500000px;}
.y26_c00153{bottom:454.950000px;}
.y5a_c00153{bottom:466.200000px;}
.y25_c00153{bottom:469.350000px;}
.y24_c00153{bottom:484.500000px;}
.y59_c00153{bottom:488.400000px;}
.y58_c00153{bottom:506.100000px;}
.y23_c00153{bottom:506.550000px;}
.y22_c00153{bottom:524.850000px;}
.y57_c00153{bottom:532.500000px;}
.y21_c00153{bottom:542.850000px;}
.y56_c00153{bottom:550.800000px;}
.y20_c00153{bottom:560.400000px;}
.y55_c00153{bottom:568.500000px;}
.y1f_c00153{bottom:578.100000px;}
.y54_c00153{bottom:590.550000px;}
.y1e_c00153{bottom:595.800000px;}
.y53_c00153{bottom:608.550000px;}
.y1d_c00153{bottom:613.800000px;}
.y52_c00153{bottom:626.550000px;}
.y1c_c00153{bottom:635.100000px;}
.y51_c00153{bottom:644.550000px;}
.y1b_c00153{bottom:653.400000px;}
.y50_c00153{bottom:662.250000px;}
.y1a_c00153{bottom:671.700000px;}
.y4f_c00153{bottom:679.950000px;}
.y19_c00153{bottom:693.000000px;}
.y4e_c00153{bottom:697.950000px;}
.y18_c00153{bottom:711.300000px;}
.y4d_c00153{bottom:715.950000px;}
.y4c_c00153{bottom:733.950000px;}
.y17_c00153{bottom:742.650000px;}
.y4b_c00153{bottom:751.650000px;}
.y16_c00153{bottom:760.350000px;}
.y4a_c00153{bottom:773.550000px;}
.y15_c00153{bottom:782.700000px;}
.y49_c00153{bottom:791.850000px;}
.y14_c00153{bottom:800.700000px;}
.y48_c00153{bottom:809.550000px;}
.y13_c00153{bottom:818.400000px;}
.y47_c00153{bottom:827.250000px;}
.y12_c00153{bottom:836.100000px;}
.y46_c00153{bottom:845.250000px;}
.y11_c00153{bottom:853.800000px;}
.y45_c00153{bottom:863.250000px;}
.y10_c00153{bottom:871.800000px;}
.y44_c00153{bottom:881.250000px;}
.yf_c00153{bottom:889.800000px;}
.y43_c00153{bottom:899.250000px;}
.ye_c00153{bottom:907.500000px;}
.y42_c00153{bottom:917.250000px;}
.yd_c00153{bottom:925.500000px;}
.y41_c00153{bottom:934.950000px;}
.yc_c00153{bottom:943.500000px;}
.y40_c00153{bottom:952.050000px;}
.yb_c00153{bottom:961.500000px;}
.y3f_c00153{bottom:971.100000px;}
.ya_c00153{bottom:979.200000px;}
.y3e_c00153{bottom:988.800000px;}
.y9_c00153{bottom:996.900000px;}
.y3d_c00153{bottom:1006.800000px;}
.y8_c00153{bottom:1017.300000px;}
.y3c_c00153{bottom:1024.500000px;}
.y7_c00153{bottom:1036.800000px;}
.y3b_c00153{bottom:1042.500000px;}
.y6_c00153{bottom:1054.800000px;}
.y3a_c00153{bottom:1060.200000px;}
.y5_c00153{bottom:1072.500000px;}
.y39_c00153{bottom:1078.200000px;}
.y4_c00153{bottom:1092.900000px;}
.y38_c00153{bottom:1095.900000px;}
.y3_c00153{bottom:1112.400000px;}
.y37_c00153{bottom:1113.900000px;}
.y1_c00153{bottom:1137.600000px;}
.y2_c00153{bottom:1139.400000px;}
.h8_c00153{height:36.000000px;}
.h9_c00153{height:48.000000px;}
.h7_c00153{height:54.000000px;}
.h6_c00153{height:60.000000px;}
.h4_c00153{height:66.000000px;}
.h5_c00153{height:72.000000px;}
.h3_c00153{height:78.000000px;}
.h2_c00153{height:84.000000px;}
.h1_c00153{height:1270.500000px;}
.h0_c00153{height:1270.799927px;}
.w1_c00153{width:953.250000px;}
.w0_c00153{width:953.280030px;}
.x0_c00153{left:0.000000px;}
.x7d_c00153{left:179.250000px;}
.x6a_c00153{left:181.050000px;}
.x1_c00153{left:183.900000px;}
.x88_c00153{left:185.700000px;}
.x4e_c00153{left:191.100000px;}
.x8f_c00153{left:193.950000px;}
.x83_c00153{left:195.000000px;}
.x75_c00153{left:196.350000px;}
.x6e_c00153{left:198.150000px;}
.x27_c00153{left:200.550000px;}
.x3_c00153{left:201.600000px;}
.x95_c00153{left:207.750000px;}
.x9b_c00153{left:209.550000px;}
.x77_c00153{left:216.450000px;}
.xb_c00153{left:219.300000px;}
.x6f_c00153{left:220.500000px;}
.x13_c00153{left:223.800000px;}
.x4f_c00153{left:227.100000px;}
.x7f_c00153{left:229.200000px;}
.xad_c00153{left:230.550000px;}
.x37_c00153{left:232.350000px;}
.x4_c00153{left:233.700000px;}
.xac_c00153{left:235.200000px;}
.x55_c00153{left:236.250000px;}
.x8c_c00153{left:238.350000px;}
.x3c_c00153{left:241.200000px;}
.x42_c00153{left:242.550000px;}
.x90_c00153{left:243.900000px;}
.x20_c00153{left:245.550000px;}
.x76_c00153{left:247.050000px;}
.x70_c00153{left:248.550000px;}
.x5d_c00153{left:249.600000px;}
.x80_c00153{left:251.100000px;}
.x50_c00153{left:253.050000px;}
.x99_c00153{left:254.100000px;}
.x7a_c00153{left:256.200000px;}
.x5_c00153{left:258.600000px;}
.x72_c00153{left:262.500000px;}
.xc_c00153{left:263.550000px;}
.x30_c00153{left:265.200000px;}
.x7b_c00153{left:267.300000px;}
.x51_c00153{left:269.250000px;}
.x71_c00153{left:270.450000px;}
.x3d_c00153{left:271.800000px;}
.x6b_c00153{left:273.900000px;}
.x9f_c00153{left:275.250000px;}
.x1f_c00153{left:276.300000px;}
.x14_c00153{left:277.800000px;}
.x84_c00153{left:279.000000px;}
.xa4_c00153{left:281.250000px;}
.x56_c00153{left:283.800000px;}
.xae_c00153{left:284.850000px;}
.x91_c00153{left:287.100000px;}
.x43_c00153{left:288.300000px;}
.x21_c00153{left:289.500000px;}
.xa1_c00153{left:291.900000px;}
.x1a_c00153{left:293.700000px;}
.x48_c00153{left:295.950000px;}
.x85_c00153{left:297.300000px;}
.x31_c00153{left:299.700000px;}
.x9a_c00153{left:302.400000px;}
.x28_c00153{left:303.600000px;}
.x66_c00153{left:306.300000px;}
.x57_c00153{left:307.500000px;}
.xa9_c00153{left:308.700000px;}
.x9e_c00153{left:311.550000px;}
.xa8_c00153{left:312.750000px;}
.x1b_c00153{left:314.250000px;}
.x3e_c00153{left:315.300000px;}
.x29_c00153{left:318.300000px;}
.x15_c00153{left:319.500000px;}
.x6_c00153{left:321.300000px;}
.x92_c00153{left:323.100000px;}
.xd_c00153{left:324.750000px;}
.x49_c00153{left:327.600000px;}
.x63_c00153{left:328.650000px;}
.x93_c00153{left:330.000000px;}
.x2a_c00153{left:331.200000px;}
.x6c_c00153{left:333.300000px;}
.x7e_c00153{left:335.100000px;}
.x22_c00153{left:336.600000px;}
.xaa_c00153{left:337.800000px;}
.x87_c00153{left:338.850000px;}
.x16_c00153{left:340.050000px;}
.x7_c00153{left:342.150000px;}
.x78_c00153{left:344.700000px;}
.x2b_c00153{left:345.900000px;}
.x86_c00153{left:347.400000px;}
.x9c_c00153{left:349.050000px;}
.x3f_c00153{left:351.000000px;}
.x52_c00153{left:352.050000px;}
.x67_c00153{left:353.100000px;}
.x58_c00153{left:354.600000px;}
.x44_c00153{left:355.950000px;}
.x81_c00153{left:357.000000px;}
.x32_c00153{left:358.350000px;}
.x23_c00153{left:359.700000px;}
.x96_c00153{left:361.050000px;}
.xe_c00153{left:363.600000px;}
.x4a_c00153{left:365.100000px;}
.xa5_c00153{left:366.300000px;}
.x97_c00153{left:367.950000px;}
.x8_c00153{left:371.700000px;}
.x53_c00153{left:373.950000px;}
.x89_c00153{left:375.450000px;}
.x2c_c00153{left:376.800000px;}
.xf_c00153{left:379.800000px;}
.x73_c00153{left:381.300000px;}
.x59_c00153{left:382.650000px;}
.x82_c00153{left:384.000000px;}
.x4b_c00153{left:386.400000px;}
.x45_c00153{left:387.600000px;}
.x98_c00153{left:388.800000px;}
.x33_c00153{left:391.500000px;}
.x17_c00153{left:393.300000px;}
.x5e_c00153{left:394.800000px;}
.x38_c00153{left:396.000000px;}
.x1c_c00153{left:397.650000px;}
.xaf_c00153{left:399.000000px;}
.x8d_c00153{left:400.200000px;}
.x94_c00153{left:402.000000px;}
.x64_c00153{left:404.250000px;}
.x9d_c00153{left:405.600000px;}
.x10_c00153{left:407.550000px;}
.x5f_c00153{left:409.500000px;}
.x18_c00153{left:411.000000px;}
.x4c_c00153{left:413.100000px;}
.x34_c00153{left:415.200000px;}
.x79_c00153{left:419.550000px;}
.x9_c00153{left:421.050000px;}
.x2_c00153{left:423.300000px;}
.x5a_c00153{left:425.850000px;}
.x6d_c00153{left:427.200000px;}
.x1d_c00153{left:429.000000px;}
.x68_c00153{left:430.500000px;}
.x24_c00153{left:432.000000px;}
.x54_c00153{left:433.950000px;}
.x8e_c00153{left:436.200000px;}
.x40_c00153{left:440.250000px;}
.x2d_c00153{left:442.650000px;}
.xa2_c00153{left:443.850000px;}
.x5b_c00153{left:445.350000px;}
.xa6_c00153{left:447.000000px;}
.x39_c00153{left:448.950000px;}
.x4d_c00153{left:450.600000px;}
.x19_c00153{left:452.100000px;}
.xa3_c00153{left:455.250000px;}
.xa_c00153{left:456.750000px;}
.x3a_c00153{left:461.250000px;}
.x25_c00153{left:463.650000px;}
.x35_c00153{left:465.600000px;}
.x69_c00153{left:467.250000px;}
.x65_c00153{left:469.050000px;}
.xa0_c00153{left:470.100000px;}
.x41_c00153{left:471.150000px;}
.x11_c00153{left:473.100000px;}
.xa7_c00153{left:474.750000px;}
.x8b_c00153{left:475.950000px;}
.x7c_c00153{left:477.300000px;}
.x61_c00153{left:478.800000px;}
.x8a_c00153{left:482.850000px;}
.x5c_c00153{left:483.900000px;}
.xb0_c00153{left:485.850000px;}
.x46_c00153{left:487.350000px;}
.x60_c00153{left:488.700000px;}
.x74_c00153{left:490.050000px;}
.x2e_c00153{left:493.800000px;}
.x1e_c00153{left:494.850000px;}
.x47_c00153{left:497.850000px;}
.x3b_c00153{left:499.350000px;}
.x36_c00153{left:501.600000px;}
.x2f_c00153{left:506.400000px;}
.xab_c00153{left:510.150000px;}
.x62_c00153{left:513.000000px;}
.x12_c00153{left:514.200000px;}
.x26_c00153{left:524.850000px;}
.x149_c00153{left:533.850000px;}
.x125_c00153{left:535.650000px;}
.x12b_c00153{left:537.450000px;}
.x123_c00153{left:553.200000px;}
.xf8_c00153{left:554.400000px;}
.xc7_c00153{left:555.600000px;}
.xb1_c00153{left:556.950000px;}
.x144_c00153{left:562.800000px;}
.x147_c00153{left:563.850000px;}
.x130_c00153{left:572.700000px;}
.xe7_c00153{left:573.900000px;}
.xbd_c00153{left:576.450000px;}
.x136_c00153{left:578.550000px;}
.x14a_c00153{left:579.900000px;}
.x12c_c00153{left:580.950000px;}
.xcd_c00153{left:584.250000px;}
.x117_c00153{left:586.050000px;}
.xc8_c00153{left:587.250000px;}
.xd8_c00153{left:589.500000px;}
.xed_c00153{left:591.600000px;}
.xd1_c00153{left:593.400000px;}
.x142_c00153{left:597.150000px;}
.xe4_c00153{left:599.100000px;}
.x13c_c00153{left:600.150000px;}
.x120_c00153{left:603.000000px;}
.x112_c00153{left:604.800000px;}
.x124_c00153{left:605.850000px;}
.xb7_c00153{left:607.350000px;}
.xbe_c00153{left:610.350000px;}
.xe8_c00153{left:611.400000px;}
.x131_c00153{left:615.150000px;}
.xb8_c00153{left:616.350000px;}
.xb2_c00153{left:617.400000px;}
.x106_c00153{left:618.450000px;}
.xbf_c00153{left:619.650000px;}
.x12d_c00153{left:621.600000px;}
.x12e_c00153{left:622.950000px;}
.x101_c00153{left:624.150000px;}
.xdb_c00153{left:625.950000px;}
.xee_c00153{left:628.350000px;}
.x10f_c00153{left:630.750000px;}
.xf4_c00153{left:632.550000px;}
.x12f_c00153{left:633.750000px;}
.xe9_c00153{left:638.700000px;}
.xc9_c00153{left:641.550000px;}
.x133_c00153{left:642.750000px;}
.x128_c00153{left:644.850000px;}
.xfd_c00153{left:646.950000px;}
.x10d_c00153{left:648.000000px;}
.x118_c00153{left:649.650000px;}
.x102_c00153{left:651.450000px;}
.xc0_c00153{left:655.950000px;}
.xb9_c00153{left:657.450000px;}
.xd2_c00153{left:658.500000px;}
.xe5_c00153{left:660.000000px;}
.xd9_c00153{left:661.500000px;}
.x13a_c00153{left:662.550000px;}
.x119_c00153{left:664.050000px;}
.xd3_c00153{left:667.500000px;}
.xf9_c00153{left:669.300000px;}
.xea_c00153{left:670.350000px;}
.x114_c00153{left:671.550000px;}
.xb3_c00153{left:674.700000px;}
.xc1_c00153{left:676.050000px;}
.xe1_c00153{left:680.100000px;}
.xce_c00153{left:681.150000px;}
.x11e_c00153{left:682.500000px;}
.x103_c00153{left:684.150000px;}
.x107_c00153{left:685.350000px;}
.xdc_c00153{left:687.450000px;}
.x115_c00153{left:689.850000px;}
.xf5_c00153{left:691.200000px;}
.x10e_c00153{left:693.000000px;}
.x134_c00153{left:695.250000px;}
.x10b_c00153{left:698.100000px;}
.xe6_c00153{left:699.900000px;}
.x11a_c00153{left:700.950000px;}
.xef_c00153{left:702.150000px;}
.x104_c00153{left:704.700000px;}
.x13b_c00153{left:707.550000px;}
.xc2_c00153{left:709.500000px;}
.x14b_c00153{left:710.550000px;}
.x110_c00153{left:711.750000px;}
.x109_c00153{left:713.700000px;}
.x129_c00153{left:715.050000px;}
.xd4_c00153{left:717.900000px;}
.xf0_c00153{left:719.400000px;}
.xdd_c00153{left:721.950000px;}
.xcf_c00153{left:727.950000px;}
.xb4_c00153{left:729.750000px;}
.xfe_c00153{left:732.600000px;}
.xe2_c00153{left:734.850000px;}
.x11b_c00153{left:736.650000px;}
.xd5_c00153{left:737.700000px;}
.xf1_c00153{left:741.300000px;}
.x108_c00153{left:743.250000px;}
.x137_c00153{left:745.050000px;}
.xba_c00153{left:747.450000px;}
.xde_c00153{left:749.250000px;}
.xc3_c00153{left:750.600000px;}
.xff_c00153{left:751.650000px;}
.xca_c00153{left:753.000000px;}
.x113_c00153{left:755.250000px;}
.xc4_c00153{left:758.550000px;}
.xb5_c00153{left:761.100000px;}
.x13d_c00153{left:762.300000px;}
.x11f_c00153{left:765.000000px;}
.xcb_c00153{left:768.900000px;}
.xd0_c00153{left:771.450000px;}
.x126_c00153{left:772.650000px;}
.xbb_c00153{left:775.950000px;}
.xfa_c00153{left:777.750000px;}
.x12a_c00153{left:780.150000px;}
.x116_c00153{left:781.950000px;}
.xdf_c00153{left:783.150000px;}
.x121_c00153{left:785.400000px;}
.x105_c00153{left:788.250000px;}
.x10a_c00153{left:789.300000px;}
.x140_c00153{left:792.750000px;}
.x11c_c00153{left:795.000000px;}
.xd6_c00153{left:798.300000px;}
.x145_c00153{left:799.650000px;}
.xf2_c00153{left:800.700000px;}
.x111_c00153{left:805.650000px;}
.xc5_c00153{left:808.650000px;}
.xcc_c00153{left:811.050000px;}
.xf6_c00153{left:812.850000px;}
.xb6_c00153{left:815.400000px;}
.xeb_c00153{left:817.200000px;}
.xbc_c00153{left:819.900000px;}
.x122_c00153{left:823.950000px;}
.x13f_c00153{left:825.450000px;}
.xf3_c00153{left:826.650000px;}
.xc6_c00153{left:828.150000px;}
.x132_c00153{left:830.400000px;}
.xf7_c00153{left:832.350000px;}
.x13e_c00153{left:833.850000px;}
.x138_c00153{left:835.350000px;}
.xe3_c00153{left:836.400000px;}
.xec_c00153{left:838.500000px;}
.x135_c00153{left:840.300000px;}
.x10c_c00153{left:841.500000px;}
.xda_c00153{left:842.550000px;}
.x127_c00153{left:843.900000px;}
.x100_c00153{left:846.300000px;}
.xfb_c00153{left:849.750000px;}
.xd7_c00153{left:850.800000px;}
.x11d_c00153{left:855.450000px;}
.x141_c00153{left:856.950000px;}
.x148_c00153{left:858.000000px;}
.xe0_c00153{left:859.050000px;}
.x139_c00153{left:861.300000px;}
.xfc_c00153{left:862.650000px;}
.x143_c00153{left:865.200000px;}
.x146_c00153{left:866.250000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.wsa_c00153{word-spacing:-0.172507pt;}
.ws10_c00153{word-spacing:0.000000pt;}
.ws0_c00153{word-spacing:1.799591pt;}
.ws6_c00153{word-spacing:7.701149pt;}
.ws2_c00153{word-spacing:11.809524pt;}
.ws4_c00153{word-spacing:19.111111pt;}
.ws7_c00153{word-spacing:20.632708pt;}
.ws5_c00153{word-spacing:21.037037pt;}
.ws1_c00153{word-spacing:21.333333pt;}
.ws8_c00153{word-spacing:23.492404pt;}
.ws3_c00153{word-spacing:23.555556pt;}
.wse_c00153{word-spacing:26.031746pt;}
.ws9_c00153{word-spacing:27.781948pt;}
.wsc_c00153{word-spacing:28.666667pt;}
.wsb_c00153{word-spacing:31.851852pt;}
.wsd_c00153{word-spacing:32.000000pt;}
.wsf_c00153{word-spacing:53.333333pt;}
._0_c00153{width:56.000000pt;}
._1_c00153{width:81.111111pt;}
.fs6_c00153{font-size:32.000000pt;}
.fs7_c00153{font-size:42.666667pt;}
.fs5_c00153{font-size:48.000000pt;}
.fs4_c00153{font-size:53.333333pt;}
.fs2_c00153{font-size:58.666667pt;}
.fs3_c00153{font-size:64.000000pt;}
.fs1_c00153{font-size:69.333333pt;}
.fs0_c00153{font-size:74.666667pt;}
.y0_c00153{bottom:0.000000pt;}
.y6c_c00153{bottom:11.466667pt;}
.y6b_c00153{bottom:163.466667pt;}
.y36_c00153{bottom:164.533333pt;}
.y35_c00153{bottom:180.533333pt;}
.y6a_c00153{bottom:186.266667pt;}
.y34_c00153{bottom:196.533333pt;}
.y69_c00153{bottom:199.600000pt;}
.y68_c00153{bottom:211.733333pt;}
.y33_c00153{bottom:212.133333pt;}
.y67_c00153{bottom:224.266667pt;}
.y32_c00153{bottom:228.133333pt;}
.y66_c00153{bottom:237.066667pt;}
.y31_c00153{bottom:243.866667pt;}
.y65_c00153{bottom:249.866667pt;}
.y30_c00153{bottom:260.133333pt;}
.y64_c00153{bottom:262.400000pt;}
.y63_c00153{bottom:275.200000pt;}
.y2f_c00153{bottom:275.866667pt;}
.y62_c00153{bottom:286.666667pt;}
.y2e_c00153{bottom:291.200000pt;}
.y61_c00153{bottom:299.600000pt;}
.y2d_c00153{bottom:314.400000pt;}
.y60_c00153{bottom:315.866667pt;}
.y2c_c00153{bottom:326.933333pt;}
.y5f_c00153{bottom:331.866667pt;}
.y2b_c00153{bottom:339.466667pt;}
.y5e_c00153{bottom:347.200000pt;}
.y2a_c00153{bottom:352.266667pt;}
.y5d_c00153{bottom:363.200000pt;}
.y29_c00153{bottom:364.800000pt;}
.y28_c00153{bottom:377.866667pt;}
.y5c_c00153{bottom:378.933333pt;}
.y27_c00153{bottom:391.600000pt;}
.y5b_c00153{bottom:398.666667pt;}
.y26_c00153{bottom:404.400000pt;}
.y5a_c00153{bottom:414.400000pt;}
.y25_c00153{bottom:417.200000pt;}
.y24_c00153{bottom:430.666667pt;}
.y59_c00153{bottom:434.133333pt;}
.y58_c00153{bottom:449.866667pt;}
.y23_c00153{bottom:450.266667pt;}
.y22_c00153{bottom:466.533333pt;}
.y57_c00153{bottom:473.333333pt;}
.y21_c00153{bottom:482.533333pt;}
.y56_c00153{bottom:489.600000pt;}
.y20_c00153{bottom:498.133333pt;}
.y55_c00153{bottom:505.333333pt;}
.y1f_c00153{bottom:513.866667pt;}
.y54_c00153{bottom:524.933333pt;}
.y1e_c00153{bottom:529.600000pt;}
.y53_c00153{bottom:540.933333pt;}
.y1d_c00153{bottom:545.600000pt;}
.y52_c00153{bottom:556.933333pt;}
.y1c_c00153{bottom:564.533333pt;}
.y51_c00153{bottom:572.933333pt;}
.y1b_c00153{bottom:580.800000pt;}
.y50_c00153{bottom:588.666667pt;}
.y1a_c00153{bottom:597.066667pt;}
.y4f_c00153{bottom:604.400000pt;}
.y19_c00153{bottom:616.000000pt;}
.y4e_c00153{bottom:620.400000pt;}
.y18_c00153{bottom:632.266667pt;}
.y4d_c00153{bottom:636.400000pt;}
.y4c_c00153{bottom:652.400000pt;}
.y17_c00153{bottom:660.133333pt;}
.y4b_c00153{bottom:668.133333pt;}
.y16_c00153{bottom:675.866667pt;}
.y4a_c00153{bottom:687.600000pt;}
.y15_c00153{bottom:695.733333pt;}
.y49_c00153{bottom:703.866667pt;}
.y14_c00153{bottom:711.733333pt;}
.y48_c00153{bottom:719.600000pt;}
.y13_c00153{bottom:727.466667pt;}
.y47_c00153{bottom:735.333333pt;}
.y12_c00153{bottom:743.200000pt;}
.y46_c00153{bottom:751.333333pt;}
.y11_c00153{bottom:758.933333pt;}
.y45_c00153{bottom:767.333333pt;}
.y10_c00153{bottom:774.933333pt;}
.y44_c00153{bottom:783.333333pt;}
.yf_c00153{bottom:790.933333pt;}
.y43_c00153{bottom:799.333333pt;}
.ye_c00153{bottom:806.666667pt;}
.y42_c00153{bottom:815.333333pt;}
.yd_c00153{bottom:822.666667pt;}
.y41_c00153{bottom:831.066667pt;}
.yc_c00153{bottom:838.666667pt;}
.y40_c00153{bottom:846.266667pt;}
.yb_c00153{bottom:854.666667pt;}
.y3f_c00153{bottom:863.200000pt;}
.ya_c00153{bottom:870.400000pt;}
.y3e_c00153{bottom:878.933333pt;}
.y9_c00153{bottom:886.133333pt;}
.y3d_c00153{bottom:894.933333pt;}
.y8_c00153{bottom:904.266667pt;}
.y3c_c00153{bottom:910.666667pt;}
.y7_c00153{bottom:921.600000pt;}
.y3b_c00153{bottom:926.666667pt;}
.y6_c00153{bottom:937.600000pt;}
.y3a_c00153{bottom:942.400000pt;}
.y5_c00153{bottom:953.333333pt;}
.y39_c00153{bottom:958.400000pt;}
.y4_c00153{bottom:971.466667pt;}
.y38_c00153{bottom:974.133333pt;}
.y3_c00153{bottom:988.800000pt;}
.y37_c00153{bottom:990.133333pt;}
.y1_c00153{bottom:1011.200000pt;}
.y2_c00153{bottom:1012.800000pt;}
.h8_c00153{height:32.000000pt;}
.h9_c00153{height:42.666667pt;}
.h7_c00153{height:48.000000pt;}
.h6_c00153{height:53.333333pt;}
.h4_c00153{height:58.666667pt;}
.h5_c00153{height:64.000000pt;}
.h3_c00153{height:69.333333pt;}
.h2_c00153{height:74.666667pt;}
.h1_c00153{height:1129.333333pt;}
.h0_c00153{height:1129.599935pt;}
.w1_c00153{width:847.333333pt;}
.w0_c00153{width:847.360027pt;}
.x0_c00153{left:0.000000pt;}
.x7d_c00153{left:159.333333pt;}
.x6a_c00153{left:160.933333pt;}
.x1_c00153{left:163.466667pt;}
.x88_c00153{left:165.066667pt;}
.x4e_c00153{left:169.866667pt;}
.x8f_c00153{left:172.400000pt;}
.x83_c00153{left:173.333333pt;}
.x75_c00153{left:174.533333pt;}
.x6e_c00153{left:176.133333pt;}
.x27_c00153{left:178.266667pt;}
.x3_c00153{left:179.200000pt;}
.x95_c00153{left:184.666667pt;}
.x9b_c00153{left:186.266667pt;}
.x77_c00153{left:192.400000pt;}
.xb_c00153{left:194.933333pt;}
.x6f_c00153{left:196.000000pt;}
.x13_c00153{left:198.933333pt;}
.x4f_c00153{left:201.866667pt;}
.x7f_c00153{left:203.733333pt;}
.xad_c00153{left:204.933333pt;}
.x37_c00153{left:206.533333pt;}
.x4_c00153{left:207.733333pt;}
.xac_c00153{left:209.066667pt;}
.x55_c00153{left:210.000000pt;}
.x8c_c00153{left:211.866667pt;}
.x3c_c00153{left:214.400000pt;}
.x42_c00153{left:215.600000pt;}
.x90_c00153{left:216.800000pt;}
.x20_c00153{left:218.266667pt;}
.x76_c00153{left:219.600000pt;}
.x70_c00153{left:220.933333pt;}
.x5d_c00153{left:221.866667pt;}
.x80_c00153{left:223.200000pt;}
.x50_c00153{left:224.933333pt;}
.x99_c00153{left:225.866667pt;}
.x7a_c00153{left:227.733333pt;}
.x5_c00153{left:229.866667pt;}
.x72_c00153{left:233.333333pt;}
.xc_c00153{left:234.266667pt;}
.x30_c00153{left:235.733333pt;}
.x7b_c00153{left:237.600000pt;}
.x51_c00153{left:239.333333pt;}
.x71_c00153{left:240.400000pt;}
.x3d_c00153{left:241.600000pt;}
.x6b_c00153{left:243.466667pt;}
.x9f_c00153{left:244.666667pt;}
.x1f_c00153{left:245.600000pt;}
.x14_c00153{left:246.933333pt;}
.x84_c00153{left:248.000000pt;}
.xa4_c00153{left:250.000000pt;}
.x56_c00153{left:252.266667pt;}
.xae_c00153{left:253.200000pt;}
.x91_c00153{left:255.200000pt;}
.x43_c00153{left:256.266667pt;}
.x21_c00153{left:257.333333pt;}
.xa1_c00153{left:259.466667pt;}
.x1a_c00153{left:261.066667pt;}
.x48_c00153{left:263.066667pt;}
.x85_c00153{left:264.266667pt;}
.x31_c00153{left:266.400000pt;}
.x9a_c00153{left:268.800000pt;}
.x28_c00153{left:269.866667pt;}
.x66_c00153{left:272.266667pt;}
.x57_c00153{left:273.333333pt;}
.xa9_c00153{left:274.400000pt;}
.x9e_c00153{left:276.933333pt;}
.xa8_c00153{left:278.000000pt;}
.x1b_c00153{left:279.333333pt;}
.x3e_c00153{left:280.266667pt;}
.x29_c00153{left:282.933333pt;}
.x15_c00153{left:284.000000pt;}
.x6_c00153{left:285.600000pt;}
.x92_c00153{left:287.200000pt;}
.xd_c00153{left:288.666667pt;}
.x49_c00153{left:291.200000pt;}
.x63_c00153{left:292.133333pt;}
.x93_c00153{left:293.333333pt;}
.x2a_c00153{left:294.400000pt;}
.x6c_c00153{left:296.266667pt;}
.x7e_c00153{left:297.866667pt;}
.x22_c00153{left:299.200000pt;}
.xaa_c00153{left:300.266667pt;}
.x87_c00153{left:301.200000pt;}
.x16_c00153{left:302.266667pt;}
.x7_c00153{left:304.133333pt;}
.x78_c00153{left:306.400000pt;}
.x2b_c00153{left:307.466667pt;}
.x86_c00153{left:308.800000pt;}
.x9c_c00153{left:310.266667pt;}
.x3f_c00153{left:312.000000pt;}
.x52_c00153{left:312.933333pt;}
.x67_c00153{left:313.866667pt;}
.x58_c00153{left:315.200000pt;}
.x44_c00153{left:316.400000pt;}
.x81_c00153{left:317.333333pt;}
.x32_c00153{left:318.533333pt;}
.x23_c00153{left:319.733333pt;}
.x96_c00153{left:320.933333pt;}
.xe_c00153{left:323.200000pt;}
.x4a_c00153{left:324.533333pt;}
.xa5_c00153{left:325.600000pt;}
.x97_c00153{left:327.066667pt;}
.x8_c00153{left:330.400000pt;}
.x53_c00153{left:332.400000pt;}
.x89_c00153{left:333.733333pt;}
.x2c_c00153{left:334.933333pt;}
.xf_c00153{left:337.600000pt;}
.x73_c00153{left:338.933333pt;}
.x59_c00153{left:340.133333pt;}
.x82_c00153{left:341.333333pt;}
.x4b_c00153{left:343.466667pt;}
.x45_c00153{left:344.533333pt;}
.x98_c00153{left:345.600000pt;}
.x33_c00153{left:348.000000pt;}
.x17_c00153{left:349.600000pt;}
.x5e_c00153{left:350.933333pt;}
.x38_c00153{left:352.000000pt;}
.x1c_c00153{left:353.466667pt;}
.xaf_c00153{left:354.666667pt;}
.x8d_c00153{left:355.733333pt;}
.x94_c00153{left:357.333333pt;}
.x64_c00153{left:359.333333pt;}
.x9d_c00153{left:360.533333pt;}
.x10_c00153{left:362.266667pt;}
.x5f_c00153{left:364.000000pt;}
.x18_c00153{left:365.333333pt;}
.x4c_c00153{left:367.200000pt;}
.x34_c00153{left:369.066667pt;}
.x79_c00153{left:372.933333pt;}
.x9_c00153{left:374.266667pt;}
.x2_c00153{left:376.266667pt;}
.x5a_c00153{left:378.533333pt;}
.x6d_c00153{left:379.733333pt;}
.x1d_c00153{left:381.333333pt;}
.x68_c00153{left:382.666667pt;}
.x24_c00153{left:384.000000pt;}
.x54_c00153{left:385.733333pt;}
.x8e_c00153{left:387.733333pt;}
.x40_c00153{left:391.333333pt;}
.x2d_c00153{left:393.466667pt;}
.xa2_c00153{left:394.533333pt;}
.x5b_c00153{left:395.866667pt;}
.xa6_c00153{left:397.333333pt;}
.x39_c00153{left:399.066667pt;}
.x4d_c00153{left:400.533333pt;}
.x19_c00153{left:401.866667pt;}
.xa3_c00153{left:404.666667pt;}
.xa_c00153{left:406.000000pt;}
.x3a_c00153{left:410.000000pt;}
.x25_c00153{left:412.133333pt;}
.x35_c00153{left:413.866667pt;}
.x69_c00153{left:415.333333pt;}
.x65_c00153{left:416.933333pt;}
.xa0_c00153{left:417.866667pt;}
.x41_c00153{left:418.800000pt;}
.x11_c00153{left:420.533333pt;}
.xa7_c00153{left:422.000000pt;}
.x8b_c00153{left:423.066667pt;}
.x7c_c00153{left:424.266667pt;}
.x61_c00153{left:425.600000pt;}
.x8a_c00153{left:429.200000pt;}
.x5c_c00153{left:430.133333pt;}
.xb0_c00153{left:431.866667pt;}
.x46_c00153{left:433.200000pt;}
.x60_c00153{left:434.400000pt;}
.x74_c00153{left:435.600000pt;}
.x2e_c00153{left:438.933333pt;}
.x1e_c00153{left:439.866667pt;}
.x47_c00153{left:442.533333pt;}
.x3b_c00153{left:443.866667pt;}
.x36_c00153{left:445.866667pt;}
.x2f_c00153{left:450.133333pt;}
.xab_c00153{left:453.466667pt;}
.x62_c00153{left:456.000000pt;}
.x12_c00153{left:457.066667pt;}
.x26_c00153{left:466.533333pt;}
.x149_c00153{left:474.533333pt;}
.x125_c00153{left:476.133333pt;}
.x12b_c00153{left:477.733333pt;}
.x123_c00153{left:491.733333pt;}
.xf8_c00153{left:492.800000pt;}
.xc7_c00153{left:493.866667pt;}
.xb1_c00153{left:495.066667pt;}
.x144_c00153{left:500.266667pt;}
.x147_c00153{left:501.200000pt;}
.x130_c00153{left:509.066667pt;}
.xe7_c00153{left:510.133333pt;}
.xbd_c00153{left:512.400000pt;}
.x136_c00153{left:514.266667pt;}
.x14a_c00153{left:515.466667pt;}
.x12c_c00153{left:516.400000pt;}
.xcd_c00153{left:519.333333pt;}
.x117_c00153{left:520.933333pt;}
.xc8_c00153{left:522.000000pt;}
.xd8_c00153{left:524.000000pt;}
.xed_c00153{left:525.866667pt;}
.xd1_c00153{left:527.466667pt;}
.x142_c00153{left:530.800000pt;}
.xe4_c00153{left:532.533333pt;}
.x13c_c00153{left:533.466667pt;}
.x120_c00153{left:536.000000pt;}
.x112_c00153{left:537.600000pt;}
.x124_c00153{left:538.533333pt;}
.xb7_c00153{left:539.866667pt;}
.xbe_c00153{left:542.533333pt;}
.xe8_c00153{left:543.466667pt;}
.x131_c00153{left:546.800000pt;}
.xb8_c00153{left:547.866667pt;}
.xb2_c00153{left:548.800000pt;}
.x106_c00153{left:549.733333pt;}
.xbf_c00153{left:550.800000pt;}
.x12d_c00153{left:552.533333pt;}
.x12e_c00153{left:553.733333pt;}
.x101_c00153{left:554.800000pt;}
.xdb_c00153{left:556.400000pt;}
.xee_c00153{left:558.533333pt;}
.x10f_c00153{left:560.666667pt;}
.xf4_c00153{left:562.266667pt;}
.x12f_c00153{left:563.333333pt;}
.xe9_c00153{left:567.733333pt;}
.xc9_c00153{left:570.266667pt;}
.x133_c00153{left:571.333333pt;}
.x128_c00153{left:573.200000pt;}
.xfd_c00153{left:575.066667pt;}
.x10d_c00153{left:576.000000pt;}
.x118_c00153{left:577.466667pt;}
.x102_c00153{left:579.066667pt;}
.xc0_c00153{left:583.066667pt;}
.xb9_c00153{left:584.400000pt;}
.xd2_c00153{left:585.333333pt;}
.xe5_c00153{left:586.666667pt;}
.xd9_c00153{left:588.000000pt;}
.x13a_c00153{left:588.933333pt;}
.x119_c00153{left:590.266667pt;}
.xd3_c00153{left:593.333333pt;}
.xf9_c00153{left:594.933333pt;}
.xea_c00153{left:595.866667pt;}
.x114_c00153{left:596.933333pt;}
.xb3_c00153{left:599.733333pt;}
.xc1_c00153{left:600.933333pt;}
.xe1_c00153{left:604.533333pt;}
.xce_c00153{left:605.466667pt;}
.x11e_c00153{left:606.666667pt;}
.x103_c00153{left:608.133333pt;}
.x107_c00153{left:609.200000pt;}
.xdc_c00153{left:611.066667pt;}
.x115_c00153{left:613.200000pt;}
.xf5_c00153{left:614.400000pt;}
.x10e_c00153{left:616.000000pt;}
.x134_c00153{left:618.000000pt;}
.x10b_c00153{left:620.533333pt;}
.xe6_c00153{left:622.133333pt;}
.x11a_c00153{left:623.066667pt;}
.xef_c00153{left:624.133333pt;}
.x104_c00153{left:626.400000pt;}
.x13b_c00153{left:628.933333pt;}
.xc2_c00153{left:630.666667pt;}
.x14b_c00153{left:631.600000pt;}
.x110_c00153{left:632.666667pt;}
.x109_c00153{left:634.400000pt;}
.x129_c00153{left:635.600000pt;}
.xd4_c00153{left:638.133333pt;}
.xf0_c00153{left:639.466667pt;}
.xdd_c00153{left:641.733333pt;}
.xcf_c00153{left:647.066667pt;}
.xb4_c00153{left:648.666667pt;}
.xfe_c00153{left:651.200000pt;}
.xe2_c00153{left:653.200000pt;}
.x11b_c00153{left:654.800000pt;}
.xd5_c00153{left:655.733333pt;}
.xf1_c00153{left:658.933333pt;}
.x108_c00153{left:660.666667pt;}
.x137_c00153{left:662.266667pt;}
.xba_c00153{left:664.400000pt;}
.xde_c00153{left:666.000000pt;}
.xc3_c00153{left:667.200000pt;}
.xff_c00153{left:668.133333pt;}
.xca_c00153{left:669.333333pt;}
.x113_c00153{left:671.333333pt;}
.xc4_c00153{left:674.266667pt;}
.xb5_c00153{left:676.533333pt;}
.x13d_c00153{left:677.600000pt;}
.x11f_c00153{left:680.000000pt;}
.xcb_c00153{left:683.466667pt;}
.xd0_c00153{left:685.733333pt;}
.x126_c00153{left:686.800000pt;}
.xbb_c00153{left:689.733333pt;}
.xfa_c00153{left:691.333333pt;}
.x12a_c00153{left:693.466667pt;}
.x116_c00153{left:695.066667pt;}
.xdf_c00153{left:696.133333pt;}
.x121_c00153{left:698.133333pt;}
.x105_c00153{left:700.666667pt;}
.x10a_c00153{left:701.600000pt;}
.x140_c00153{left:704.666667pt;}
.x11c_c00153{left:706.666667pt;}
.xd6_c00153{left:709.600000pt;}
.x145_c00153{left:710.800000pt;}
.xf2_c00153{left:711.733333pt;}
.x111_c00153{left:716.133333pt;}
.xc5_c00153{left:718.800000pt;}
.xcc_c00153{left:720.933333pt;}
.xf6_c00153{left:722.533333pt;}
.xb6_c00153{left:724.800000pt;}
.xeb_c00153{left:726.400000pt;}
.xbc_c00153{left:728.800000pt;}
.x122_c00153{left:732.400000pt;}
.x13f_c00153{left:733.733333pt;}
.xf3_c00153{left:734.800000pt;}
.xc6_c00153{left:736.133333pt;}
.x132_c00153{left:738.133333pt;}
.xf7_c00153{left:739.866667pt;}
.x13e_c00153{left:741.200000pt;}
.x138_c00153{left:742.533333pt;}
.xe3_c00153{left:743.466667pt;}
.xec_c00153{left:745.333333pt;}
.x135_c00153{left:746.933333pt;}
.x10c_c00153{left:748.000000pt;}
.xda_c00153{left:748.933333pt;}
.x127_c00153{left:750.133333pt;}
.x100_c00153{left:752.266667pt;}
.xfb_c00153{left:755.333333pt;}
.xd7_c00153{left:756.266667pt;}
.x11d_c00153{left:760.400000pt;}
.x141_c00153{left:761.733333pt;}
.x148_c00153{left:762.666667pt;}
.xe0_c00153{left:763.600000pt;}
.x139_c00153{left:765.600000pt;}
.xfc_c00153{left:766.800000pt;}
.x143_c00153{left:769.066667pt;}
.x146_c00153{left:770.000000pt;}
}





/* 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_c00154 {
    display:none;
  }
  .loading-indicator_c00154.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00154 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_c00154 { 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_c00154" -> "#page-container .classname_c00154")
 */
.pf_c00154 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00154 { /* 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_c00154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00154 { /* 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_c00154 { /* 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_c00154 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00154 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00154 {overflow:visible;}
  }
}
.c_c00154 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00154 { /* 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_c00154:after { /* webkit #35443 */
  content: '';
}
.t_c00154:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00154 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 */
}
.__c00154 { /* 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_c00154 { /* info for Javascript */
  display:none;
}
.l_c00154 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00154 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00154 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00154: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_c00154 {
    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_c00154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00154.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_c00154 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00154;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.000000;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;}
.m60_c00154{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00154{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00154{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m114_c00154{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00154{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00154{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m115_c00154{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m52_c00154{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00154{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00154{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.md_c00154{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00154{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00154{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);}
.m18_c00154{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00154{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.maa_c00154{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00154{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m110_c00154{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00154{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m119_c00154{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00154{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00154{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m112_c00154{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m54_c00154{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00154{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m94_c00154{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00154{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00154{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md9_c00154{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m105_c00154{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m96_c00154{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00154{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mff_c00154{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00154{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00154{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m100_c00154{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00154{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m38_c00154{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00154{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00154{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m69_c00154{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00154{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mee_c00154{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00154{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m48_c00154{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00154{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m106_c00154{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00154{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m23_c00154{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00154{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m74_c00154{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00154{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m24_c00154{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m15_c00154{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00154{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me8_c00154{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00154{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00154{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00154{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00154{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m37_c00154{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00154{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me3_c00154{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00154{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m65_c00154{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00154{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m14_c00154{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb_c00154{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mba_c00154{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m64_c00154{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00154{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m28_c00154{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00154{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00154{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00154{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5_c00154{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mca_c00154{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3_c00154{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00154{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00154{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00154{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m21_c00154{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m46_c00154{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00154{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4_c00154{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mda_c00154{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00154{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00154{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.me_c00154{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00154{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m10_c00154{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00154{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00154{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m29_c00154{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m63_c00154{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00154{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m51_c00154{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m27_c00154{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md1_c00154{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00154{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00154{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m42_c00154{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00154{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6_c00154{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m22_c00154{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m20_c00154{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00154{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m43_c00154{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00154{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m13_c00154{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00154{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00154{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m16_c00154{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m66_c00154{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m93_c00154{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m89_c00154{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8_c00154{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m41_c00154{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m127_c00154{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00154{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m49_c00154{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me9_c00154{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m124_c00154{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00154{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.med_c00154{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00154{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m31_c00154{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m17_c00154{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m36_c00154{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m101_c00154{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m55_c00154{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00154{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m39_c00154{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m126_c00154{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf_c00154{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00154{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m47_c00154{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00154{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00154{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m25_c00154{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m128_c00154{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m40_c00154{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma_c00154{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00154{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m92_c00154{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00154{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me7_c00154{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00154{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m58_c00154{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00154{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me0_c00154{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00154{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00154{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00154{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m59_c00154{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00154{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m123_c00154{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9_c00154{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00154{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00154{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m80_c00154{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7_c00154{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00154{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m62_c00154{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00154{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m35_c00154{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md7_c00154{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00154{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me1_c00154{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m50_c00154{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md0_c00154{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m121_c00154{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.me2_c00154{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00154{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m88_c00154{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00154{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00154{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00154{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m68_c00154{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00154{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mef_c00154{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.me4_c00154{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m120_c00154{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00154{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m82_c00154{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m103_c00154{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m33_c00154{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m32_c00154{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m26_c00154{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m87_c00154{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m113_c00154{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m19_c00154{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m104_c00154{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m11_c00154{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00154{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.meb_c00154{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m72_c00154{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m56_c00154{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00154{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m75_c00154{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m45_c00154{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mab_c00154{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00154{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00154{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00154{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m91_c00154{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m73_c00154{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00154{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md2_c00154{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m109_c00154{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00154{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00154{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.maf_c00154{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00154{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mc_c00154{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md5_c00154{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00154{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00154{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m81_c00154{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mce_c00154{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00154{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00154{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m118_c00154{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m83_c00154{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mae_c00154{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m44_c00154{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00154{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00154{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me6_c00154{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m84_c00154{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mde_c00154{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m53_c00154{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m77_c00154{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m30_c00154{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00154{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00154{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12_c00154{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00154{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00154{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00154{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00154{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m78_c00154{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);}
.m11c_c00154{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m34_c00154{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m116_c00154{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00154{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00154{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.md4_c00154{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m122_c00154{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00154{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mea_c00154{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00154{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00154{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00154{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m86_c00154{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m76_c00154{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m79_c00154{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00154{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.md6_c00154{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00154{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00154{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.me5_c00154{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00154{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m129_c00154{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00154{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00154{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m111_c00154{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.md3_c00154{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m85_c00154{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00154{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m61_c00154{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m90_c00154{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00154{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md8_c00154{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mec_c00154{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m102_c00154{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mac_c00154{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00154{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00154{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00154{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m71_c00154{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m108_c00154{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00154{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m97_c00154{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m57_c00154{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00154{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m125_c00154{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m107_c00154{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00154{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m95_c00154{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m70_c00154{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00154{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m99_c00154{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m117_c00154{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mad_c00154{transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00154{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m98_c00154{transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.460500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460500,0.000000,0.000000,0.250000,0,0);}
.m67_c00154{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls0_c00154{letter-spacing:0.000000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{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__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00154{word-spacing:-17.132369px;}
.ws7_c00154{word-spacing:-8.309278px;}
.ws9_c00154{word-spacing:0.000000px;}
.ws2_c00154{word-spacing:0.375000px;}
.ws6_c00154{word-spacing:3.407572px;}
.ws0_c00154{word-spacing:10.022923px;}
.ws4_c00154{word-spacing:48.000000px;}
.ws8_c00154{word-spacing:60.906219px;}
.ws5_c00154{word-spacing:65.000000px;}
.ws3_c00154{word-spacing:165.263158px;}
.fc0_c00154{color:transparent;}
.fs7_c00154{font-size:36.000000px;}
.fs6_c00154{font-size:42.000000px;}
.fs8_c00154{font-size:48.000000px;}
.fs5_c00154{font-size:54.000000px;}
.fs3_c00154{font-size:60.000000px;}
.fs2_c00154{font-size:66.000000px;}
.fs4_c00154{font-size:72.000000px;}
.fs0_c00154{font-size:84.000000px;}
.fs1_c00154{font-size:102.000000px;}
.y0_c00154{bottom:0.000000px;}
.y6c_c00154{bottom:170.250000px;}
.y6b_c00154{bottom:187.950000px;}
.y35_c00154{bottom:189.750000px;}
.y6a_c00154{bottom:195.900000px;}
.y69_c00154{bottom:205.950000px;}
.y34_c00154{bottom:207.750000px;}
.y68_c00154{bottom:223.650000px;}
.y33_c00154{bottom:225.450000px;}
.y67_c00154{bottom:241.950000px;}
.y32_c00154{bottom:243.150000px;}
.y66_c00154{bottom:259.650000px;}
.y31_c00154{bottom:260.850000px;}
.y65_c00154{bottom:277.650000px;}
.y30_c00154{bottom:278.850000px;}
.y64_c00154{bottom:295.350000px;}
.y2f_c00154{bottom:296.550000px;}
.y63_c00154{bottom:313.350000px;}
.y2e_c00154{bottom:314.550000px;}
.y62_c00154{bottom:331.050000px;}
.y2d_c00154{bottom:332.550000px;}
.y61_c00154{bottom:349.050000px;}
.y2c_c00154{bottom:350.250000px;}
.y60_c00154{bottom:367.050000px;}
.y2b_c00154{bottom:368.250000px;}
.y5f_c00154{bottom:384.750000px;}
.y2a_c00154{bottom:385.950000px;}
.y5e_c00154{bottom:402.450000px;}
.y29_c00154{bottom:403.950000px;}
.y5d_c00154{bottom:420.450000px;}
.y28_c00154{bottom:422.250000px;}
.y27_c00154{bottom:439.500000px;}
.y5c_c00154{bottom:440.700000px;}
.y5b_c00154{bottom:456.450000px;}
.y26_c00154{bottom:460.500000px;}
.y5a_c00154{bottom:469.350000px;}
.y25_c00154{bottom:474.900000px;}
.y59_c00154{bottom:485.250000px;}
.y24_c00154{bottom:489.300000px;}
.y58_c00154{bottom:499.350000px;}
.y23_c00154{bottom:503.700000px;}
.y57_c00154{bottom:513.750000px;}
.y22_c00154{bottom:518.400000px;}
.y56_c00154{bottom:528.150000px;}
.y21_c00154{bottom:532.050000px;}
.y55_c00154{bottom:543.600000px;}
.y20_c00154{bottom:546.450000px;}
.y54_c00154{bottom:561.300000px;}
.y1f_c00154{bottom:575.250000px;}
.y53_c00154{bottom:580.050000px;}
.y1e_c00154{bottom:591.150000px;}
.y52_c00154{bottom:597.750000px;}
.y1d_c00154{bottom:610.350000px;}
.y51_c00154{bottom:616.050000px;}
.y1c_c00154{bottom:628.050000px;}
.y50_c00154{bottom:633.300000px;}
.y1b_c00154{bottom:646.050000px;}
.y4f_c00154{bottom:654.150000px;}
.y1a_c00154{bottom:663.750000px;}
.y4e_c00154{bottom:672.450000px;}
.y19_c00154{bottom:681.750000px;}
.y4d_c00154{bottom:690.450000px;}
.y18_c00154{bottom:699.450000px;}
.y4c_c00154{bottom:708.150000px;}
.y4b_c00154{bottom:726.150000px;}
.y17_c00154{bottom:726.600000px;}
.y4a_c00154{bottom:743.400000px;}
.y16_c00154{bottom:744.900000px;}
.y49_c00154{bottom:761.100000px;}
.y15_c00154{bottom:762.150000px;}
.y48_c00154{bottom:783.000000px;}
.y14_c00154{bottom:789.150000px;}
.y47_c00154{bottom:801.300000px;}
.y13_c00154{bottom:806.400000px;}
.y46_c00154{bottom:823.200000px;}
.y12_c00154{bottom:833.400000px;}
.y45_c00154{bottom:840.900000px;}
.y11_c00154{bottom:851.100000px;}
.y44_c00154{bottom:858.900000px;}
.y43_c00154{bottom:876.600000px;}
.y10_c00154{bottom:877.350000px;}
.y42_c00154{bottom:894.600000px;}
.yf_c00154{bottom:903.600000px;}
.y41_c00154{bottom:912.300000px;}
.ye_c00154{bottom:921.300000px;}
.y40_c00154{bottom:933.750000px;}
.yd_c00154{bottom:939.600000px;}
.y3f_c00154{bottom:951.450000px;}
.yc_c00154{bottom:957.300000px;}
.y3e_c00154{bottom:969.450000px;}
.yb_c00154{bottom:975.000000px;}
.y3d_c00154{bottom:987.150000px;}
.ya_c00154{bottom:993.300000px;}
.y3c_c00154{bottom:1009.500000px;}
.y9_c00154{bottom:1011.000000px;}
.y3b_c00154{bottom:1027.500000px;}
.y8_c00154{bottom:1028.700000px;}
.y3a_c00154{bottom:1044.900000px;}
.y7_c00154{bottom:1046.700000px;}
.y39_c00154{bottom:1062.600000px;}
.y6_c00154{bottom:1064.400000px;}
.y38_c00154{bottom:1080.300000px;}
.y5_c00154{bottom:1082.100000px;}
.y37_c00154{bottom:1098.300000px;}
.y4_c00154{bottom:1100.100000px;}
.y36_c00154{bottom:1116.000000px;}
.y3_c00154{bottom:1117.800000px;}
.y2_c00154{bottom:1141.200000px;}
.y1_c00154{bottom:1143.000000px;}
.h9_c00154{height:36.000000px;}
.h8_c00154{height:42.000000px;}
.ha_c00154{height:48.000000px;}
.h7_c00154{height:54.000000px;}
.h5_c00154{height:60.000000px;}
.h4_c00154{height:66.000000px;}
.h6_c00154{height:72.000000px;}
.h2_c00154{height:84.000000px;}
.h3_c00154{height:102.000000px;}
.h1_c00154{height:1272.000000px;}
.h0_c00154{height:1272.239960px;}
.w1_c00154{width:953.250000px;}
.w0_c00154{width:953.280030px;}
.x0_c00154{left:0.000000px;}
.x4a_c00154{left:80.250000px;}
.x79_c00154{left:81.300000px;}
.x6f_c00154{left:87.450000px;}
.x17_c00154{left:97.950000px;}
.x4_c00154{left:99.000000px;}
.x7d_c00154{left:100.200000px;}
.x70_c00154{left:109.650000px;}
.x71_c00154{left:111.000000px;}
.x52_c00154{left:113.700000px;}
.x5a_c00154{left:118.050000px;}
.x68_c00154{left:123.000000px;}
.x1e_c00154{left:124.050000px;}
.x53_c00154{left:125.550000px;}
.x8b_c00154{left:128.700000px;}
.x5_c00154{left:130.350000px;}
.x2f_c00154{left:132.750000px;}
.x7e_c00154{left:134.700000px;}
.x82_c00154{left:136.500000px;}
.x5c_c00154{left:139.200000px;}
.x97_c00154{left:141.600000px;}
.x2a_c00154{left:142.950000px;}
.x24_c00154{left:144.450000px;}
.x95_c00154{left:146.100000px;}
.x18_c00154{left:147.600000px;}
.x54_c00154{left:148.950000px;}
.x93_c00154{left:151.050000px;}
.x69_c00154{left:152.100000px;}
.x12_c00154{left:153.450000px;}
.x3e_c00154{left:155.550000px;}
.x39_c00154{left:157.650000px;}
.x85_c00154{left:159.450000px;}
.xb_c00154{left:160.950000px;}
.x5b_c00154{left:163.050000px;}
.x4b_c00154{left:164.850000px;}
.x63_c00154{left:168.600000px;}
.x7a_c00154{left:170.250000px;}
.x72_c00154{left:174.000000px;}
.x4e_c00154{left:176.100000px;}
.x89_c00154{left:178.950000px;}
.x3a_c00154{left:180.750000px;}
.x6_c00154{left:182.850000px;}
.x1f_c00154{left:184.500000px;}
.x13_c00154{left:186.900000px;}
.x30_c00154{left:190.650000px;}
.x60_c00154{left:192.300000px;}
.x55_c00154{left:194.250000px;}
.x75_c00154{left:195.450000px;}
.x5f_c00154{left:197.550000px;}
.x47_c00154{left:198.600000px;}
.x7f_c00154{left:201.000000px;}
.x6c_c00154{left:202.650000px;}
.xc_c00154{left:203.850000px;}
.x42_c00154{left:205.050000px;}
.x25_c00154{left:207.450000px;}
.x87_c00154{left:212.850000px;}
.x98_c00154{left:214.350000px;}
.x35_c00154{left:216.450000px;}
.x2b_c00154{left:218.550000px;}
.x56_c00154{left:220.500000px;}
.x7_c00154{left:221.700000px;}
.x5d_c00154{left:224.100000px;}
.x94_c00154{left:226.650000px;}
.x80_c00154{left:228.750000px;}
.x26_c00154{left:230.850000px;}
.x19_c00154{left:233.250000px;}
.x43_c00154{left:235.350000px;}
.x67_c00154{left:237.300000px;}
.x14_c00154{left:238.350000px;}
.x31_c00154{left:240.000000px;}
.x1a_c00154{left:243.750000px;}
.x57_c00154{left:245.400000px;}
.x8a_c00154{left:249.600000px;}
.x4f_c00154{left:250.950000px;}
.x8c_c00154{left:252.450000px;}
.x3b_c00154{left:253.800000px;}
.xd_c00154{left:256.050000px;}
.x4c_c00154{left:259.200000px;}
.x76_c00154{left:260.250000px;}
.x20_c00154{left:262.200000px;}
.x36_c00154{left:263.250000px;}
.x73_c00154{left:267.300000px;}
.x3f_c00154{left:269.250000px;}
.x50_c00154{left:271.050000px;}
.x48_c00154{left:273.150000px;}
.x44_c00154{left:274.650000px;}
.x27_c00154{left:279.750000px;}
.x74_c00154{left:281.700000px;}
.x1b_c00154{left:284.100000px;}
.x40_c00154{left:286.500000px;}
.x7b_c00154{left:288.600000px;}
.x6b_c00154{left:290.400000px;}
.xe_c00154{left:291.750000px;}
.x92_c00154{left:293.250000px;}
.x8_c00154{left:294.750000px;}
.x2c_c00154{left:296.250000px;}
.x77_c00154{left:297.750000px;}
.x6d_c00154{left:299.100000px;}
.xf_c00154{left:300.450000px;}
.x61_c00154{left:301.800000px;}
.x83_c00154{left:304.500000px;}
.x15_c00154{left:306.000000px;}
.x4d_c00154{left:307.800000px;}
.x90_c00154{left:309.300000px;}
.x28_c00154{left:311.400000px;}
.x9a_c00154{left:313.650000px;}
.x8e_c00154{left:315.150000px;}
.x49_c00154{left:316.650000px;}
.x21_c00154{left:318.300000px;}
.x3c_c00154{left:321.900000px;}
.x1_c00154{left:323.700000px;}
.x78_c00154{left:325.950000px;}
.x37_c00154{left:327.300000px;}
.x58_c00154{left:331.050000px;}
.x45_c00154{left:332.250000px;}
.x64_c00154{left:334.950000px;}
.x6e_c00154{left:336.150000px;}
.x10_c00154{left:337.500000px;}
.x66_c00154{left:339.150000px;}
.x32_c00154{left:341.850000px;}
.x59_c00154{left:345.000000px;}
.x1c_c00154{left:346.050000px;}
.x2d_c00154{left:350.250000px;}
.x9_c00154{left:353.100000px;}
.x8f_c00154{left:355.050000px;}
.x8d_c00154{left:356.550000px;}
.x33_c00154{left:360.900000px;}
.x62_c00154{left:363.000000px;}
.x41_c00154{left:364.200000px;}
.x46_c00154{left:367.200000px;}
.x16_c00154{left:369.750000px;}
.x91_c00154{left:372.000000px;}
.x2e_c00154{left:373.650000px;}
.x22_c00154{left:375.900000px;}
.x11_c00154{left:377.850000px;}
.x86_c00154{left:379.650000px;}
.x3d_c00154{left:381.000000px;}
.x34_c00154{left:382.500000px;}
.x1d_c00154{left:383.550000px;}
.x81_c00154{left:384.900000px;}
.x38_c00154{left:387.000000px;}
.x65_c00154{left:388.200000px;}
.x84_c00154{left:390.900000px;}
.x51_c00154{left:392.250000px;}
.x9b_c00154{left:394.350000px;}
.x29_c00154{left:396.000000px;}
.x88_c00154{left:397.800000px;}
.xa_c00154{left:401.700000px;}
.x6a_c00154{left:402.900000px;}
.x23_c00154{left:403.950000px;}
.x99_c00154{left:406.350000px;}
.x96_c00154{left:407.400000px;}
.x7c_c00154{left:413.100000px;}
.x5e_c00154{left:414.600000px;}
.xc8_c00154{left:436.350000px;}
.x108_c00154{left:437.400000px;}
.xee_c00154{left:438.900000px;}
.x123_c00154{left:450.750000px;}
.x113_c00154{left:452.250000px;}
.xa5_c00154{left:454.050000px;}
.xe4_c00154{left:455.100000px;}
.x9c_c00154{left:456.150000px;}
.x133_c00154{left:457.200000px;}
.x11a_c00154{left:465.600000px;}
.xf0_c00154{left:474.150000px;}
.xfa_c00154{left:476.700000px;}
.xaf_c00154{left:478.950000px;}
.x107_c00154{left:480.600000px;}
.xc6_c00154{left:483.900000px;}
.x127_c00154{left:485.100000px;}
.xa6_c00154{left:486.150000px;}
.x12a_c00154{left:488.400000px;}
.x12f_c00154{left:490.500000px;}
.xbd_c00154{left:492.900000px;}
.x10e_c00154{left:494.100000px;}
.x12c_c00154{left:496.650000px;}
.xc9_c00154{left:497.850000px;}
.x114_c00154{left:499.050000px;}
.xc7_c00154{left:501.600000px;}
.xec_c00154{left:502.950000px;}
.xa7_c00154{left:504.150000px;}
.x109_c00154{left:506.700000px;}
.xd9_c00154{left:508.350000px;}
.xb8_c00154{left:510.900000px;}
.xef_c00154{left:512.250000px;}
.xcf_c00154{left:513.600000px;}
.xdd_c00154{left:517.500000px;}
.xb5_c00154{left:518.700000px;}
.xbe_c00154{left:519.900000px;}
.x104_c00154{left:520.950000px;}
.x9d_c00154{left:522.450000px;}
.x124_c00154{left:523.800000px;}
.xf4_c00154{left:526.050000px;}
.x128_c00154{left:528.600000px;}
.x134_c00154{left:531.150000px;}
.xb0_c00154{left:533.250000px;}
.xf1_c00154{left:535.050000px;}
.x10b_c00154{left:536.700000px;}
.xb9_c00154{left:539.700000px;}
.x131_c00154{left:541.650000px;}
.xd4_c00154{left:542.700000px;}
.xed_c00154{left:544.050000px;}
.xd0_c00154{left:547.500000px;}
.xa8_c00154{left:549.900000px;}
.x10f_c00154{left:552.000000px;}
.xbf_c00154{left:554.100000px;}
.x101_c00154{left:555.300000px;}
.xb1_c00154{left:556.650000px;}
.xd5_c00154{left:558.900000px;}
.x9e_c00154{left:560.550000px;}
.xde_c00154{left:562.200000px;}
.x110_c00154{left:564.900000px;}
.xfd_c00154{left:567.300000px;}
.xca_c00154{left:570.600000px;}
.x125_c00154{left:573.150000px;}
.xc0_c00154{left:574.200000px;}
.xdf_c00154{left:575.850000px;}
.xf5_c00154{left:577.200000px;}
.xe9_c00154{left:581.700000px;}
.x9f_c00154{left:582.900000px;}
.x12d_c00154{left:584.100000px;}
.xb2_c00154{left:586.950000px;}
.x10c_c00154{left:589.950000px;}
.xa9_c00154{left:591.300000px;}
.xd6_c00154{left:593.400000px;}
.x126_c00154{left:596.250000px;}
.xe1_c00154{left:598.350000px;}
.xda_c00154{left:600.600000px;}
.xe5_c00154{left:603.150000px;}
.x12b_c00154{left:604.350000px;}
.x115_c00154{left:605.700000px;}
.xcb_c00154{left:607.650000px;}
.xfe_c00154{left:609.000000px;}
.xd1_c00154{left:612.300000px;}
.x105_c00154{left:613.500000px;}
.x136_c00154{left:614.550000px;}
.xc1_c00154{left:615.900000px;}
.x11b_c00154{left:617.100000px;}
.x111_c00154{left:620.400000px;}
.x11c_c00154{left:624.000000px;}
.xf6_c00154{left:625.050000px;}
.x116_c00154{left:627.000000px;}
.xb3_c00154{left:629.100000px;}
.xdb_c00154{left:630.450000px;}
.x129_c00154{left:631.650000px;}
.xcc_c00154{left:632.850000px;}
.x12e_c00154{left:634.200000px;}
.xc2_c00154{left:635.400000px;}
.x132_c00154{left:636.750000px;}
.xa0_c00154{left:638.700000px;}
.xea_c00154{left:640.050000px;}
.x135_c00154{left:641.250000px;}
.x117_c00154{left:645.750000px;}
.xaa_c00154{left:648.150000px;}
.xf7_c00154{left:650.550000px;}
.x11d_c00154{left:652.800000px;}
.xe6_c00154{left:654.000000px;}
.xd2_c00154{left:655.200000px;}
.xfb_c00154{left:656.400000px;}
.xf2_c00154{left:657.600000px;}
.xd7_c00154{left:660.000000px;}
.xa1_c00154{left:661.800000px;}
.xdc_c00154{left:664.350000px;}
.x112_c00154{left:665.700000px;}
.xf8_c00154{left:667.500000px;}
.xb6_c00154{left:672.150000px;}
.x118_c00154{left:674.850000px;}
.xe7_c00154{left:676.350000px;}
.x122_c00154{left:677.700000px;}
.xc3_c00154{left:680.400000px;}
.xab_c00154{left:682.350000px;}
.x10d_c00154{left:691.050000px;}
.xe0_c00154{left:692.550000px;}
.xba_c00154{left:695.250000px;}
.xfc_c00154{left:696.450000px;}
.x102_c00154{left:698.550000px;}
.xf9_c00154{left:700.950000px;}
.xac_c00154{left:702.900000px;}
.xa2_c00154{left:704.250000px;}
.xe2_c00154{left:707.100000px;}
.x10a_c00154{left:709.350000px;}
.xcd_c00154{left:711.300000px;}
.x103_c00154{left:713.700000px;}
.xe8_c00154{left:717.000000px;}
.xad_c00154{left:718.350000px;}
.xbb_c00154{left:719.400000px;}
.xc4_c00154{left:720.750000px;}
.xd3_c00154{left:722.100000px;}
.xff_c00154{left:723.450000px;}
.x130_c00154{left:727.050000px;}
.x11f_c00154{left:729.600000px;}
.x11e_c00154{left:730.650000px;}
.xd8_c00154{left:732.000000px;}
.xf3_c00154{left:733.500000px;}
.xa3_c00154{left:735.600000px;}
.xb7_c00154{left:736.950000px;}
.xce_c00154{left:738.300000px;}
.xc5_c00154{left:740.850000px;}
.xb4_c00154{left:745.050000px;}
.x2_c00154{left:747.450000px;}
.xbc_c00154{left:748.500000px;}
.xa4_c00154{left:750.750000px;}
.x106_c00154{left:752.100000px;}
.x120_c00154{left:753.300000px;}
.x100_c00154{left:754.350000px;}
.x3_c00154{left:757.200000px;}
.xeb_c00154{left:758.550000px;}
.x119_c00154{left:759.750000px;}
.xae_c00154{left:762.600000px;}
.x121_c00154{left:766.200000px;}
.xe3_c00154{left:767.550000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws1_c00154{word-spacing:-15.228773pt;}
.ws7_c00154{word-spacing:-7.386025pt;}
.ws9_c00154{word-spacing:0.000000pt;}
.ws2_c00154{word-spacing:0.333333pt;}
.ws6_c00154{word-spacing:3.028953pt;}
.ws0_c00154{word-spacing:8.909265pt;}
.ws4_c00154{word-spacing:42.666667pt;}
.ws8_c00154{word-spacing:54.138861pt;}
.ws5_c00154{word-spacing:57.777778pt;}
.ws3_c00154{word-spacing:146.900585pt;}
.fs7_c00154{font-size:32.000000pt;}
.fs6_c00154{font-size:37.333333pt;}
.fs8_c00154{font-size:42.666667pt;}
.fs5_c00154{font-size:48.000000pt;}
.fs3_c00154{font-size:53.333333pt;}
.fs2_c00154{font-size:58.666667pt;}
.fs4_c00154{font-size:64.000000pt;}
.fs0_c00154{font-size:74.666667pt;}
.fs1_c00154{font-size:90.666667pt;}
.y0_c00154{bottom:0.000000pt;}
.y6c_c00154{bottom:151.333333pt;}
.y6b_c00154{bottom:167.066667pt;}
.y35_c00154{bottom:168.666667pt;}
.y6a_c00154{bottom:174.133333pt;}
.y69_c00154{bottom:183.066667pt;}
.y34_c00154{bottom:184.666667pt;}
.y68_c00154{bottom:198.800000pt;}
.y33_c00154{bottom:200.400000pt;}
.y67_c00154{bottom:215.066667pt;}
.y32_c00154{bottom:216.133333pt;}
.y66_c00154{bottom:230.800000pt;}
.y31_c00154{bottom:231.866667pt;}
.y65_c00154{bottom:246.800000pt;}
.y30_c00154{bottom:247.866667pt;}
.y64_c00154{bottom:262.533333pt;}
.y2f_c00154{bottom:263.600000pt;}
.y63_c00154{bottom:278.533333pt;}
.y2e_c00154{bottom:279.600000pt;}
.y62_c00154{bottom:294.266667pt;}
.y2d_c00154{bottom:295.600000pt;}
.y61_c00154{bottom:310.266667pt;}
.y2c_c00154{bottom:311.333333pt;}
.y60_c00154{bottom:326.266667pt;}
.y2b_c00154{bottom:327.333333pt;}
.y5f_c00154{bottom:342.000000pt;}
.y2a_c00154{bottom:343.066667pt;}
.y5e_c00154{bottom:357.733333pt;}
.y29_c00154{bottom:359.066667pt;}
.y5d_c00154{bottom:373.733333pt;}
.y28_c00154{bottom:375.333333pt;}
.y27_c00154{bottom:390.666667pt;}
.y5c_c00154{bottom:391.733333pt;}
.y5b_c00154{bottom:405.733333pt;}
.y26_c00154{bottom:409.333333pt;}
.y5a_c00154{bottom:417.200000pt;}
.y25_c00154{bottom:422.133333pt;}
.y59_c00154{bottom:431.333333pt;}
.y24_c00154{bottom:434.933333pt;}
.y58_c00154{bottom:443.866667pt;}
.y23_c00154{bottom:447.733333pt;}
.y57_c00154{bottom:456.666667pt;}
.y22_c00154{bottom:460.800000pt;}
.y56_c00154{bottom:469.466667pt;}
.y21_c00154{bottom:472.933333pt;}
.y55_c00154{bottom:483.200000pt;}
.y20_c00154{bottom:485.733333pt;}
.y54_c00154{bottom:498.933333pt;}
.y1f_c00154{bottom:511.333333pt;}
.y53_c00154{bottom:515.600000pt;}
.y1e_c00154{bottom:525.466667pt;}
.y52_c00154{bottom:531.333333pt;}
.y1d_c00154{bottom:542.533333pt;}
.y51_c00154{bottom:547.600000pt;}
.y1c_c00154{bottom:558.266667pt;}
.y50_c00154{bottom:562.933333pt;}
.y1b_c00154{bottom:574.266667pt;}
.y4f_c00154{bottom:581.466667pt;}
.y1a_c00154{bottom:590.000000pt;}
.y4e_c00154{bottom:597.733333pt;}
.y19_c00154{bottom:606.000000pt;}
.y4d_c00154{bottom:613.733333pt;}
.y18_c00154{bottom:621.733333pt;}
.y4c_c00154{bottom:629.466667pt;}
.y4b_c00154{bottom:645.466667pt;}
.y17_c00154{bottom:645.866667pt;}
.y4a_c00154{bottom:660.800000pt;}
.y16_c00154{bottom:662.133333pt;}
.y49_c00154{bottom:676.533333pt;}
.y15_c00154{bottom:677.466667pt;}
.y48_c00154{bottom:696.000000pt;}
.y14_c00154{bottom:701.466667pt;}
.y47_c00154{bottom:712.266667pt;}
.y13_c00154{bottom:716.800000pt;}
.y46_c00154{bottom:731.733333pt;}
.y12_c00154{bottom:740.800000pt;}
.y45_c00154{bottom:747.466667pt;}
.y11_c00154{bottom:756.533333pt;}
.y44_c00154{bottom:763.466667pt;}
.y43_c00154{bottom:779.200000pt;}
.y10_c00154{bottom:779.866667pt;}
.y42_c00154{bottom:795.200000pt;}
.yf_c00154{bottom:803.200000pt;}
.y41_c00154{bottom:810.933333pt;}
.ye_c00154{bottom:818.933333pt;}
.y40_c00154{bottom:830.000000pt;}
.yd_c00154{bottom:835.200000pt;}
.y3f_c00154{bottom:845.733333pt;}
.yc_c00154{bottom:850.933333pt;}
.y3e_c00154{bottom:861.733333pt;}
.yb_c00154{bottom:866.666667pt;}
.y3d_c00154{bottom:877.466667pt;}
.ya_c00154{bottom:882.933333pt;}
.y3c_c00154{bottom:897.333333pt;}
.y9_c00154{bottom:898.666667pt;}
.y3b_c00154{bottom:913.333333pt;}
.y8_c00154{bottom:914.400000pt;}
.y3a_c00154{bottom:928.800000pt;}
.y7_c00154{bottom:930.400000pt;}
.y39_c00154{bottom:944.533333pt;}
.y6_c00154{bottom:946.133333pt;}
.y38_c00154{bottom:960.266667pt;}
.y5_c00154{bottom:961.866667pt;}
.y37_c00154{bottom:976.266667pt;}
.y4_c00154{bottom:977.866667pt;}
.y36_c00154{bottom:992.000000pt;}
.y3_c00154{bottom:993.600000pt;}
.y2_c00154{bottom:1014.400000pt;}
.y1_c00154{bottom:1016.000000pt;}
.h9_c00154{height:32.000000pt;}
.h8_c00154{height:37.333333pt;}
.ha_c00154{height:42.666667pt;}
.h7_c00154{height:48.000000pt;}
.h5_c00154{height:53.333333pt;}
.h4_c00154{height:58.666667pt;}
.h6_c00154{height:64.000000pt;}
.h2_c00154{height:74.666667pt;}
.h3_c00154{height:90.666667pt;}
.h1_c00154{height:1130.666667pt;}
.h0_c00154{height:1130.879964pt;}
.w1_c00154{width:847.333333pt;}
.w0_c00154{width:847.360027pt;}
.x0_c00154{left:0.000000pt;}
.x4a_c00154{left:71.333333pt;}
.x79_c00154{left:72.266667pt;}
.x6f_c00154{left:77.733333pt;}
.x17_c00154{left:87.066667pt;}
.x4_c00154{left:88.000000pt;}
.x7d_c00154{left:89.066667pt;}
.x70_c00154{left:97.466667pt;}
.x71_c00154{left:98.666667pt;}
.x52_c00154{left:101.066667pt;}
.x5a_c00154{left:104.933333pt;}
.x68_c00154{left:109.333333pt;}
.x1e_c00154{left:110.266667pt;}
.x53_c00154{left:111.600000pt;}
.x8b_c00154{left:114.400000pt;}
.x5_c00154{left:115.866667pt;}
.x2f_c00154{left:118.000000pt;}
.x7e_c00154{left:119.733333pt;}
.x82_c00154{left:121.333333pt;}
.x5c_c00154{left:123.733333pt;}
.x97_c00154{left:125.866667pt;}
.x2a_c00154{left:127.066667pt;}
.x24_c00154{left:128.400000pt;}
.x95_c00154{left:129.866667pt;}
.x18_c00154{left:131.200000pt;}
.x54_c00154{left:132.400000pt;}
.x93_c00154{left:134.266667pt;}
.x69_c00154{left:135.200000pt;}
.x12_c00154{left:136.400000pt;}
.x3e_c00154{left:138.266667pt;}
.x39_c00154{left:140.133333pt;}
.x85_c00154{left:141.733333pt;}
.xb_c00154{left:143.066667pt;}
.x5b_c00154{left:144.933333pt;}
.x4b_c00154{left:146.533333pt;}
.x63_c00154{left:149.866667pt;}
.x7a_c00154{left:151.333333pt;}
.x72_c00154{left:154.666667pt;}
.x4e_c00154{left:156.533333pt;}
.x89_c00154{left:159.066667pt;}
.x3a_c00154{left:160.666667pt;}
.x6_c00154{left:162.533333pt;}
.x1f_c00154{left:164.000000pt;}
.x13_c00154{left:166.133333pt;}
.x30_c00154{left:169.466667pt;}
.x60_c00154{left:170.933333pt;}
.x55_c00154{left:172.666667pt;}
.x75_c00154{left:173.733333pt;}
.x5f_c00154{left:175.600000pt;}
.x47_c00154{left:176.533333pt;}
.x7f_c00154{left:178.666667pt;}
.x6c_c00154{left:180.133333pt;}
.xc_c00154{left:181.200000pt;}
.x42_c00154{left:182.266667pt;}
.x25_c00154{left:184.400000pt;}
.x87_c00154{left:189.200000pt;}
.x98_c00154{left:190.533333pt;}
.x35_c00154{left:192.400000pt;}
.x2b_c00154{left:194.266667pt;}
.x56_c00154{left:196.000000pt;}
.x7_c00154{left:197.066667pt;}
.x5d_c00154{left:199.200000pt;}
.x94_c00154{left:201.466667pt;}
.x80_c00154{left:203.333333pt;}
.x26_c00154{left:205.200000pt;}
.x19_c00154{left:207.333333pt;}
.x43_c00154{left:209.200000pt;}
.x67_c00154{left:210.933333pt;}
.x14_c00154{left:211.866667pt;}
.x31_c00154{left:213.333333pt;}
.x1a_c00154{left:216.666667pt;}
.x57_c00154{left:218.133333pt;}
.x8a_c00154{left:221.866667pt;}
.x4f_c00154{left:223.066667pt;}
.x8c_c00154{left:224.400000pt;}
.x3b_c00154{left:225.600000pt;}
.xd_c00154{left:227.600000pt;}
.x4c_c00154{left:230.400000pt;}
.x76_c00154{left:231.333333pt;}
.x20_c00154{left:233.066667pt;}
.x36_c00154{left:234.000000pt;}
.x73_c00154{left:237.600000pt;}
.x3f_c00154{left:239.333333pt;}
.x50_c00154{left:240.933333pt;}
.x48_c00154{left:242.800000pt;}
.x44_c00154{left:244.133333pt;}
.x27_c00154{left:248.666667pt;}
.x74_c00154{left:250.400000pt;}
.x1b_c00154{left:252.533333pt;}
.x40_c00154{left:254.666667pt;}
.x7b_c00154{left:256.533333pt;}
.x6b_c00154{left:258.133333pt;}
.xe_c00154{left:259.333333pt;}
.x92_c00154{left:260.666667pt;}
.x8_c00154{left:262.000000pt;}
.x2c_c00154{left:263.333333pt;}
.x77_c00154{left:264.666667pt;}
.x6d_c00154{left:265.866667pt;}
.xf_c00154{left:267.066667pt;}
.x61_c00154{left:268.266667pt;}
.x83_c00154{left:270.666667pt;}
.x15_c00154{left:272.000000pt;}
.x4d_c00154{left:273.600000pt;}
.x90_c00154{left:274.933333pt;}
.x28_c00154{left:276.800000pt;}
.x9a_c00154{left:278.800000pt;}
.x8e_c00154{left:280.133333pt;}
.x49_c00154{left:281.466667pt;}
.x21_c00154{left:282.933333pt;}
.x3c_c00154{left:286.133333pt;}
.x1_c00154{left:287.733333pt;}
.x78_c00154{left:289.733333pt;}
.x37_c00154{left:290.933333pt;}
.x58_c00154{left:294.266667pt;}
.x45_c00154{left:295.333333pt;}
.x64_c00154{left:297.733333pt;}
.x6e_c00154{left:298.800000pt;}
.x10_c00154{left:300.000000pt;}
.x66_c00154{left:301.466667pt;}
.x32_c00154{left:303.866667pt;}
.x59_c00154{left:306.666667pt;}
.x1c_c00154{left:307.600000pt;}
.x2d_c00154{left:311.333333pt;}
.x9_c00154{left:313.866667pt;}
.x8f_c00154{left:315.600000pt;}
.x8d_c00154{left:316.933333pt;}
.x33_c00154{left:320.800000pt;}
.x62_c00154{left:322.666667pt;}
.x41_c00154{left:323.733333pt;}
.x46_c00154{left:326.400000pt;}
.x16_c00154{left:328.666667pt;}
.x91_c00154{left:330.666667pt;}
.x2e_c00154{left:332.133333pt;}
.x22_c00154{left:334.133333pt;}
.x11_c00154{left:335.866667pt;}
.x86_c00154{left:337.466667pt;}
.x3d_c00154{left:338.666667pt;}
.x34_c00154{left:340.000000pt;}
.x1d_c00154{left:340.933333pt;}
.x81_c00154{left:342.133333pt;}
.x38_c00154{left:344.000000pt;}
.x65_c00154{left:345.066667pt;}
.x84_c00154{left:347.466667pt;}
.x51_c00154{left:348.666667pt;}
.x9b_c00154{left:350.533333pt;}
.x29_c00154{left:352.000000pt;}
.x88_c00154{left:353.600000pt;}
.xa_c00154{left:357.066667pt;}
.x6a_c00154{left:358.133333pt;}
.x23_c00154{left:359.066667pt;}
.x99_c00154{left:361.200000pt;}
.x96_c00154{left:362.133333pt;}
.x7c_c00154{left:367.200000pt;}
.x5e_c00154{left:368.533333pt;}
.xc8_c00154{left:387.866667pt;}
.x108_c00154{left:388.800000pt;}
.xee_c00154{left:390.133333pt;}
.x123_c00154{left:400.666667pt;}
.x113_c00154{left:402.000000pt;}
.xa5_c00154{left:403.600000pt;}
.xe4_c00154{left:404.533333pt;}
.x9c_c00154{left:405.466667pt;}
.x133_c00154{left:406.400000pt;}
.x11a_c00154{left:413.866667pt;}
.xf0_c00154{left:421.466667pt;}
.xfa_c00154{left:423.733333pt;}
.xaf_c00154{left:425.733333pt;}
.x107_c00154{left:427.200000pt;}
.xc6_c00154{left:430.133333pt;}
.x127_c00154{left:431.200000pt;}
.xa6_c00154{left:432.133333pt;}
.x12a_c00154{left:434.133333pt;}
.x12f_c00154{left:436.000000pt;}
.xbd_c00154{left:438.133333pt;}
.x10e_c00154{left:439.200000pt;}
.x12c_c00154{left:441.466667pt;}
.xc9_c00154{left:442.533333pt;}
.x114_c00154{left:443.600000pt;}
.xc7_c00154{left:445.866667pt;}
.xec_c00154{left:447.066667pt;}
.xa7_c00154{left:448.133333pt;}
.x109_c00154{left:450.400000pt;}
.xd9_c00154{left:451.866667pt;}
.xb8_c00154{left:454.133333pt;}
.xef_c00154{left:455.333333pt;}
.xcf_c00154{left:456.533333pt;}
.xdd_c00154{left:460.000000pt;}
.xb5_c00154{left:461.066667pt;}
.xbe_c00154{left:462.133333pt;}
.x104_c00154{left:463.066667pt;}
.x9d_c00154{left:464.400000pt;}
.x124_c00154{left:465.600000pt;}
.xf4_c00154{left:467.600000pt;}
.x128_c00154{left:469.866667pt;}
.x134_c00154{left:472.133333pt;}
.xb0_c00154{left:474.000000pt;}
.xf1_c00154{left:475.600000pt;}
.x10b_c00154{left:477.066667pt;}
.xb9_c00154{left:479.733333pt;}
.x131_c00154{left:481.466667pt;}
.xd4_c00154{left:482.400000pt;}
.xed_c00154{left:483.600000pt;}
.xd0_c00154{left:486.666667pt;}
.xa8_c00154{left:488.800000pt;}
.x10f_c00154{left:490.666667pt;}
.xbf_c00154{left:492.533333pt;}
.x101_c00154{left:493.600000pt;}
.xb1_c00154{left:494.800000pt;}
.xd5_c00154{left:496.800000pt;}
.x9e_c00154{left:498.266667pt;}
.xde_c00154{left:499.733333pt;}
.x110_c00154{left:502.133333pt;}
.xfd_c00154{left:504.266667pt;}
.xca_c00154{left:507.200000pt;}
.x125_c00154{left:509.466667pt;}
.xc0_c00154{left:510.400000pt;}
.xdf_c00154{left:511.866667pt;}
.xf5_c00154{left:513.066667pt;}
.xe9_c00154{left:517.066667pt;}
.x9f_c00154{left:518.133333pt;}
.x12d_c00154{left:519.200000pt;}
.xb2_c00154{left:521.733333pt;}
.x10c_c00154{left:524.400000pt;}
.xa9_c00154{left:525.600000pt;}
.xd6_c00154{left:527.466667pt;}
.x126_c00154{left:530.000000pt;}
.xe1_c00154{left:531.866667pt;}
.xda_c00154{left:533.866667pt;}
.xe5_c00154{left:536.133333pt;}
.x12b_c00154{left:537.200000pt;}
.x115_c00154{left:538.400000pt;}
.xcb_c00154{left:540.133333pt;}
.xfe_c00154{left:541.333333pt;}
.xd1_c00154{left:544.266667pt;}
.x105_c00154{left:545.333333pt;}
.x136_c00154{left:546.266667pt;}
.xc1_c00154{left:547.466667pt;}
.x11b_c00154{left:548.533333pt;}
.x111_c00154{left:551.466667pt;}
.x11c_c00154{left:554.666667pt;}
.xf6_c00154{left:555.600000pt;}
.x116_c00154{left:557.333333pt;}
.xb3_c00154{left:559.200000pt;}
.xdb_c00154{left:560.400000pt;}
.x129_c00154{left:561.466667pt;}
.xcc_c00154{left:562.533333pt;}
.x12e_c00154{left:563.733333pt;}
.xc2_c00154{left:564.800000pt;}
.x132_c00154{left:566.000000pt;}
.xa0_c00154{left:567.733333pt;}
.xea_c00154{left:568.933333pt;}
.x135_c00154{left:570.000000pt;}
.x117_c00154{left:574.000000pt;}
.xaa_c00154{left:576.133333pt;}
.xf7_c00154{left:578.266667pt;}
.x11d_c00154{left:580.266667pt;}
.xe6_c00154{left:581.333333pt;}
.xd2_c00154{left:582.400000pt;}
.xfb_c00154{left:583.466667pt;}
.xf2_c00154{left:584.533333pt;}
.xd7_c00154{left:586.666667pt;}
.xa1_c00154{left:588.266667pt;}
.xdc_c00154{left:590.533333pt;}
.x112_c00154{left:591.733333pt;}
.xf8_c00154{left:593.333333pt;}
.xb6_c00154{left:597.466667pt;}
.x118_c00154{left:599.866667pt;}
.xe7_c00154{left:601.200000pt;}
.x122_c00154{left:602.400000pt;}
.xc3_c00154{left:604.800000pt;}
.xab_c00154{left:606.533333pt;}
.x10d_c00154{left:614.266667pt;}
.xe0_c00154{left:615.600000pt;}
.xba_c00154{left:618.000000pt;}
.xfc_c00154{left:619.066667pt;}
.x102_c00154{left:620.933333pt;}
.xf9_c00154{left:623.066667pt;}
.xac_c00154{left:624.800000pt;}
.xa2_c00154{left:626.000000pt;}
.xe2_c00154{left:628.533333pt;}
.x10a_c00154{left:630.533333pt;}
.xcd_c00154{left:632.266667pt;}
.x103_c00154{left:634.400000pt;}
.xe8_c00154{left:637.333333pt;}
.xad_c00154{left:638.533333pt;}
.xbb_c00154{left:639.466667pt;}
.xc4_c00154{left:640.666667pt;}
.xd3_c00154{left:641.866667pt;}
.xff_c00154{left:643.066667pt;}
.x130_c00154{left:646.266667pt;}
.x11f_c00154{left:648.533333pt;}
.x11e_c00154{left:649.466667pt;}
.xd8_c00154{left:650.666667pt;}
.xf3_c00154{left:652.000000pt;}
.xa3_c00154{left:653.866667pt;}
.xb7_c00154{left:655.066667pt;}
.xce_c00154{left:656.266667pt;}
.xc5_c00154{left:658.533333pt;}
.xb4_c00154{left:662.266667pt;}
.x2_c00154{left:664.400000pt;}
.xbc_c00154{left:665.333333pt;}
.xa4_c00154{left:667.333333pt;}
.x106_c00154{left:668.533333pt;}
.x120_c00154{left:669.600000pt;}
.x100_c00154{left:670.533333pt;}
.x3_c00154{left:673.066667pt;}
.xeb_c00154{left:674.266667pt;}
.x119_c00154{left:675.333333pt;}
.xae_c00154{left:677.866667pt;}
.x121_c00154{left:681.066667pt;}
.xe3_c00154{left:682.266667pt;}
}





/* 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_c00155 {
    display:none;
  }
  .loading-indicator_c00155.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00155 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_c00155 { 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_c00155" -> "#page-container .classname_c00155")
 */
.pf_c00155 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00155 { /* 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_c00155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00155 { /* 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_c00155 { /* 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_c00155 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00155 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00155 {overflow:visible;}
  }
}
.c_c00155 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00155 { /* 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_c00155:after { /* webkit #35443 */
  content: '';
}
.t_c00155:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00155 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 */
}
.__c00155 { /* 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_c00155 { /* info for Javascript */
  display:none;
}
.l_c00155 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00155 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00155 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00155: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_c00155 {
    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_c00155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00155.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_c00155 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00155;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.000000;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;}
.mf1_c00155{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m53_c00155{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00155{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00155{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m62_c00155{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mad_c00155{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m83_c00155{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00155{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00155{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00155{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00155{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00155{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m41_c00155{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mba_c00155{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m7_c00155{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00155{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00155{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m84_c00155{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00155{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00155{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00155{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m95_c00155{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.me0_c00155{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00155{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00155{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m44_c00155{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00155{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me8_c00155{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00155{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00155{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m5_c00155{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00155{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00155{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m106_c00155{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m73_c00155{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00155{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00155{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md6_c00155{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m10_c00155{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00155{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m28_c00155{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md_c00155{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00155{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00155{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m74_c00155{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m16_c00155{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m49_c00155{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00155{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m100_c00155{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00155{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00155{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m104_c00155{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m97_c00155{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00155{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m30_c00155{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m15_c00155{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m69_c00155{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00155{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00155{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m33_c00155{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00155{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m57_c00155{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m13_c00155{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me9_c00155{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.me_c00155{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00155{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md5_c00155{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00155{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00155{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00155{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m89_c00155{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m87_c00155{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m54_c00155{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00155{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m94_c00155{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m60_c00155{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m42_c00155{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md1_c00155{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.med_c00155{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m14_c00155{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me5_c00155{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00155{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m65_c00155{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m76_c00155{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00155{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m66_c00155{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m75_c00155{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00155{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m98_c00155{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m55_c00155{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00155{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mee_c00155{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m56_c00155{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me6_c00155{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2_c00155{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00155{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mae_c00155{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md9_c00155{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m80_c00155{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mec_c00155{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mda_c00155{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m58_c00155{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mef_c00155{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00155{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m77_c00155{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00155{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mff_c00155{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mab_c00155{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mea_c00155{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m67_c00155{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.meb_c00155{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me3_c00155{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md3_c00155{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00155{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00155{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mde_c00155{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m88_c00155{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m86_c00155{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00155{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00155{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6_c00155{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m45_c00155{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m52_c00155{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m82_c00155{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m40_c00155{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m32_c00155{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00155{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m85_c00155{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00155{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00155{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00155{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me7_c00155{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mca_c00155{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00155{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.me1_c00155{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma_c00155{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00155{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m51_c00155{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00155{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00155{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00155{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3_c00155{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb_c00155{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00155{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m12_c00155{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m43_c00155{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m61_c00155{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00155{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m22_c00155{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00155{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00155{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00155{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m81_c00155{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m35_c00155{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m79_c00155{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00155{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc_c00155{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m21_c00155{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf_c00155{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00155{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00155{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m101_c00155{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.md8_c00155{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00155{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m31_c00155{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m70_c00155{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00155{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me4_c00155{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m26_c00155{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00155{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00155{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m91_c00155{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00155{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00155{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00155{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00155{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00155{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m34_c00155{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00155{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m108_c00155{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00155{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me2_c00155{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m99_c00155{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00155{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m78_c00155{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m109_c00155{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00155{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m59_c00155{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00155{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m102_c00155{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m23_c00155{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9_c00155{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m36_c00155{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m105_c00155{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00155{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00155{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00155{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m38_c00155{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m19_c00155{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00155{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00155{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00155{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m47_c00155{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00155{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.maf_c00155{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m72_c00155{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m29_c00155{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00155{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00155{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m71_c00155{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00155{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11_c00155{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00155{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00155{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m64_c00155{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00155{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00155{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.maa_c00155{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m46_c00155{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m24_c00155{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mac_c00155{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m48_c00155{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00155{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00155{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00155{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8_c00155{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);}
.m37_c00155{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00155{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00155{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m39_c00155{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m103_c00155{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md4_c00155{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00155{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m17_c00155{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00155{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m68_c00155{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m63_c00155{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m90_c00155{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m96_c00155{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.md7_c00155{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00155{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00155{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.md2_c00155{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00155{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00155{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m25_c00155{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m18_c00155{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mce_c00155{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00155{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m0_c00155{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m50_c00155{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00155{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00155{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00155{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00155{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00155{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00155{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00155{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m107_c00155{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m27_c00155{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.md0_c00155{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m92_c00155{transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);}
.m20_c00155{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00155{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00155{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00155{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m93_c00155{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls0_c00155{letter-spacing:0.000000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{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__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00155{word-spacing:-8.804584px;}
.ws6_c00155{word-spacing:-5.048251px;}
.ws1_c00155{word-spacing:-1.718750px;}
.ws3_c00155{word-spacing:-1.666667px;}
.ws5_c00155{word-spacing:-1.566948px;}
.ws7_c00155{word-spacing:0.000000px;}
.ws4_c00155{word-spacing:38.475814px;}
.ws2_c00155{word-spacing:73.333333px;}
.fc0_c00155{color:transparent;}
.fs5_c00155{font-size:30.000000px;}
.fs4_c00155{font-size:42.000000px;}
.fs6_c00155{font-size:54.000000px;}
.fs3_c00155{font-size:60.000000px;}
.fs0_c00155{font-size:66.000000px;}
.fs2_c00155{font-size:72.000000px;}
.fs1_c00155{font-size:78.000000px;}
.y0_c00155{bottom:0.000000px;}
.y33_c00155{bottom:198.750000px;}
.y68_c00155{bottom:202.350000px;}
.y32_c00155{bottom:213.900000px;}
.y67_c00155{bottom:220.350000px;}
.y66_c00155{bottom:238.200000px;}
.y65_c00155{bottom:255.900000px;}
.y31_c00155{bottom:259.350000px;}
.y30_c00155{bottom:277.050000px;}
.y64_c00155{bottom:277.800000px;}
.y2f_c00155{bottom:295.050000px;}
.y63_c00155{bottom:295.500000px;}
.y2e_c00155{bottom:313.050000px;}
.y62_c00155{bottom:313.350000px;}
.y2d_c00155{bottom:330.750000px;}
.y61_c00155{bottom:331.050000px;}
.y2c_c00155{bottom:348.450000px;}
.y60_c00155{bottom:348.750000px;}
.y2b_c00155{bottom:366.150000px;}
.y5f_c00155{bottom:366.450000px;}
.y5e_c00155{bottom:384.150000px;}
.y2a_c00155{bottom:388.050000px;}
.y5d_c00155{bottom:406.650000px;}
.y29_c00155{bottom:409.650000px;}
.y5c_c00155{bottom:424.350000px;}
.y28_c00155{bottom:427.350000px;}
.y5b_c00155{bottom:442.050000px;}
.y27_c00155{bottom:445.350000px;}
.y5a_c00155{bottom:460.050000px;}
.y25_c00155{bottom:474.900000px;}
.y59_c00155{bottom:477.300000px;}
.y24_c00155{bottom:494.400000px;}
.y58_c00155{bottom:495.300000px;}
.y23_c00155{bottom:512.700000px;}
.y57_c00155{bottom:513.000000px;}
.y56_c00155{bottom:531.000000px;}
.y22_c00155{bottom:534.150000px;}
.y55_c00155{bottom:548.700000px;}
.y21_c00155{bottom:555.450000px;}
.y54_c00155{bottom:570.150000px;}
.y20_c00155{bottom:574.650000px;}
.y53_c00155{bottom:587.850000px;}
.y1f_c00155{bottom:592.650000px;}
.y52_c00155{bottom:605.100000px;}
.y1e_c00155{bottom:612.450000px;}
.y51_c00155{bottom:622.800000px;}
.y1d_c00155{bottom:627.900000px;}
.y50_c00155{bottom:640.800000px;}
.y1c_c00155{bottom:645.450000px;}
.y4f_c00155{bottom:658.800000px;}
.y1b_c00155{bottom:663.150000px;}
.y4e_c00155{bottom:676.500000px;}
.y1a_c00155{bottom:681.150000px;}
.y4d_c00155{bottom:694.200000px;}
.y19_c00155{bottom:702.300000px;}
.y4c_c00155{bottom:712.200000px;}
.y26_c00155{bottom:715.650000px;}
.y18_c00155{bottom:716.400000px;}
.y4b_c00155{bottom:729.900000px;}
.y17_c00155{bottom:730.500000px;}
.y16_c00155{bottom:745.500000px;}
.y4a_c00155{bottom:747.900000px;}
.y49_c00155{bottom:765.600000px;}
.y15_c00155{bottom:766.500000px;}
.y48_c00155{bottom:783.300000px;}
.y14_c00155{bottom:787.050000px;}
.y47_c00155{bottom:801.300000px;}
.y13_c00155{bottom:805.050000px;}
.y46_c00155{bottom:819.000000px;}
.y12_c00155{bottom:822.300000px;}
.y45_c00155{bottom:837.000000px;}
.y11_c00155{bottom:841.950000px;}
.y44_c00155{bottom:854.700000px;}
.y10_c00155{bottom:862.050000px;}
.y43_c00155{bottom:872.700000px;}
.yf_c00155{bottom:879.750000px;}
.y42_c00155{bottom:890.400000px;}
.ye_c00155{bottom:897.450000px;}
.y41_c00155{bottom:908.100000px;}
.yd_c00155{bottom:917.550000px;}
.y40_c00155{bottom:926.100000px;}
.yc_c00155{bottom:937.050000px;}
.y3f_c00155{bottom:943.800000px;}
.y3e_c00155{bottom:961.800000px;}
.yb_c00155{bottom:965.100000px;}
.y3d_c00155{bottom:979.500000px;}
.ya_c00155{bottom:985.350000px;}
.y3c_c00155{bottom:997.500000px;}
.y9_c00155{bottom:1002.900000px;}
.y3b_c00155{bottom:1015.200000px;}
.y8_c00155{bottom:1020.600000px;}
.y3a_c00155{bottom:1036.800000px;}
.y7_c00155{bottom:1038.300000px;}
.y39_c00155{bottom:1051.950000px;}
.y6_c00155{bottom:1059.900000px;}
.y38_c00155{bottom:1065.600000px;}
.y5_c00155{bottom:1080.300000px;}
.y37_c00155{bottom:1080.750000px;}
.y36_c00155{bottom:1095.450000px;}
.y4_c00155{bottom:1100.100000px;}
.y35_c00155{bottom:1109.550000px;}
.y3_c00155{bottom:1117.800000px;}
.y34_c00155{bottom:1123.950000px;}
.y1_c00155{bottom:1143.000000px;}
.y2_c00155{bottom:1145.850000px;}
.h7_c00155{height:30.000000px;}
.h6_c00155{height:42.000000px;}
.h8_c00155{height:54.000000px;}
.h5_c00155{height:60.000000px;}
.h2_c00155{height:66.000000px;}
.h4_c00155{height:72.000000px;}
.h3_c00155{height:78.000000px;}
.h1_c00155{height:1271.250000px;}
.h0_c00155{height:1271.519990px;}
.w1_c00155{width:953.250000px;}
.w0_c00155{width:953.280030px;}
.x0_c00155{left:0.000000px;}
.x81_c00155{left:139.350000px;}
.x9c_c00155{left:169.500000px;}
.x85_c00155{left:174.900000px;}
.x79_c00155{left:176.100000px;}
.x53_c00155{left:177.450000px;}
.x3_c00155{left:178.500000px;}
.x12_c00155{left:179.700000px;}
.x1_c00155{left:180.750000px;}
.x99_c00155{left:183.300000px;}
.x97_c00155{left:189.150000px;}
.x8c_c00155{left:190.350000px;}
.x80_c00155{left:191.400000px;}
.x57_c00155{left:192.600000px;}
.x6c_c00155{left:194.850000px;}
.x28_c00155{left:196.350000px;}
.xa_c00155{left:197.550000px;}
.x69_c00155{left:203.400000px;}
.x5b_c00155{left:205.350000px;}
.x9a_c00155{left:208.800000px;}
.x82_c00155{left:212.400000px;}
.x2f_c00155{left:214.950000px;}
.x77_c00155{left:216.000000px;}
.x6f_c00155{left:217.500000px;}
.x31_c00155{left:222.450000px;}
.x36_c00155{left:224.700000px;}
.x64_c00155{left:226.950000px;}
.x35_c00155{left:229.500000px;}
.x93_c00155{left:232.350000px;}
.x3f_c00155{left:233.700000px;}
.x4_c00155{left:236.100000px;}
.x61_c00155{left:237.900000px;}
.x4d_c00155{left:238.950000px;}
.x54_c00155{left:240.150000px;}
.x13_c00155{left:241.650000px;}
.x44_c00155{left:242.850000px;}
.x29_c00155{left:244.950000px;}
.x20_c00155{left:246.000000px;}
.x49_c00155{left:247.500000px;}
.x4e_c00155{left:249.750000px;}
.x19_c00155{left:251.550000px;}
.x11_c00155{left:254.700000px;}
.x6d_c00155{left:256.050000px;}
.x94_c00155{left:259.350000px;}
.x32_c00155{left:260.550000px;}
.x5_c00155{left:263.100000px;}
.x37_c00155{left:266.850000px;}
.x6a_c00155{left:269.700000px;}
.xb_c00155{left:271.050000px;}
.x62_c00155{left:272.100000px;}
.x21_c00155{left:275.100000px;}
.x1a_c00155{left:278.550000px;}
.x88_c00155{left:281.700000px;}
.x40_c00155{left:283.800000px;}
.x6b_c00155{left:286.950000px;}
.x46_c00155{left:289.500000px;}
.xc_c00155{left:290.850000px;}
.x4f_c00155{left:294.450000px;}
.x95_c00155{left:297.150000px;}
.x8d_c00155{left:298.350000px;}
.x22_c00155{left:300.300000px;}
.x5c_c00155{left:301.800000px;}
.x6_c00155{left:304.500000px;}
.x55_c00155{left:306.450000px;}
.x5d_c00155{left:308.100000px;}
.x2a_c00155{left:314.400000px;}
.x14_c00155{left:315.750000px;}
.x41_c00155{left:317.700000px;}
.x8e_c00155{left:319.200000px;}
.x65_c00155{left:322.350000px;}
.x78_c00155{left:325.800000px;}
.x15_c00155{left:327.300000px;}
.x1b_c00155{left:330.000000px;}
.x89_c00155{left:331.050000px;}
.x4a_c00155{left:332.700000px;}
.x7c_c00155{left:335.850000px;}
.x73_c00155{left:338.250000px;}
.x3a_c00155{left:339.300000px;}
.x1c_c00155{left:342.900000px;}
.x4b_c00155{left:345.300000px;}
.x2b_c00155{left:348.600000px;}
.x23_c00155{left:353.250000px;}
.x38_c00155{left:355.050000px;}
.x9b_c00155{left:357.150000px;}
.x66_c00155{left:359.100000px;}
.x42_c00155{left:361.200000px;}
.x6e_c00155{left:362.700000px;}
.xd_c00155{left:364.650000px;}
.x16_c00155{left:366.900000px;}
.x2c_c00155{left:370.200000px;}
.x5e_c00155{left:371.400000px;}
.x7a_c00155{left:372.600000px;}
.x24_c00155{left:373.800000px;}
.x7_c00155{left:375.450000px;}
.x33_c00155{left:376.800000px;}
.x43_c00155{left:378.150000px;}
.x3b_c00155{left:379.650000px;}
.x7f_c00155{left:381.450000px;}
.x50_c00155{left:386.550000px;}
.x70_c00155{left:387.750000px;}
.x63_c00155{left:390.150000px;}
.x17_c00155{left:391.800000px;}
.x8a_c00155{left:394.050000px;}
.xe_c00155{left:398.550000px;}
.x8f_c00155{left:400.500000px;}
.x3c_c00155{left:403.800000px;}
.x45_c00155{left:405.900000px;}
.x47_c00155{left:409.050000px;}
.x71_c00155{left:411.450000px;}
.xf_c00155{left:414.000000px;}
.x74_c00155{left:415.350000px;}
.x67_c00155{left:416.400000px;}
.x2_c00155{left:418.350000px;}
.x7d_c00155{left:419.400000px;}
.x90_c00155{left:421.350000px;}
.x83_c00155{left:422.850000px;}
.x25_c00155{left:427.500000px;}
.x1d_c00155{left:429.300000px;}
.x86_c00155{left:431.400000px;}
.x8b_c00155{left:432.750000px;}
.x39_c00155{left:433.950000px;}
.x18_c00155{left:435.300000px;}
.x8_c00155{left:438.450000px;}
.x91_c00155{left:440.850000px;}
.x1e_c00155{left:441.900000px;}
.x58_c00155{left:443.850000px;}
.x3d_c00155{left:445.500000px;}
.x84_c00155{left:447.000000px;}
.x30_c00155{left:448.200000px;}
.x2d_c00155{left:449.400000px;}
.x9_c00155{left:452.850000px;}
.x75_c00155{left:457.050000px;}
.x7b_c00155{left:458.550000px;}
.x51_c00155{left:460.650000px;}
.x7e_c00155{left:462.600000px;}
.x5f_c00155{left:463.650000px;}
.x68_c00155{left:465.600000px;}
.x2e_c00155{left:467.100000px;}
.x4c_c00155{left:469.650000px;}
.x34_c00155{left:472.950000px;}
.x5a_c00155{left:474.300000px;}
.x26_c00155{left:475.800000px;}
.x98_c00155{left:477.300000px;}
.x92_c00155{left:478.650000px;}
.x60_c00155{left:479.850000px;}
.x96_c00155{left:482.850000px;}
.x76_c00155{left:484.050000px;}
.x10_c00155{left:486.300000px;}
.x27_c00155{left:490.500000px;}
.x72_c00155{left:491.700000px;}
.x3e_c00155{left:493.350000px;}
.x1f_c00155{left:499.200000px;}
.x56_c00155{left:500.250000px;}
.x59_c00155{left:501.750000px;}
.x52_c00155{left:503.100000px;}
.x48_c00155{left:504.150000px;}
.x87_c00155{left:505.950000px;}
.x12a_c00155{left:526.650000px;}
.x131_c00155{left:529.950000px;}
.x9d_c00155{left:535.650000px;}
.x11c_c00155{left:541.350000px;}
.x138_c00155{left:545.850000px;}
.x12f_c00155{left:548.100000px;}
.xa7_c00155{left:549.900000px;}
.x120_c00155{left:551.100000px;}
.xfb_c00155{left:552.600000px;}
.xbd_c00155{left:553.800000px;}
.xab_c00155{left:564.900000px;}
.x130_c00155{left:566.400000px;}
.x116_c00155{left:568.800000px;}
.x136_c00155{left:571.350000px;}
.xd3_c00155{left:572.400000px;}
.x134_c00155{left:574.050000px;}
.xff_c00155{left:575.250000px;}
.x12b_c00155{left:579.450000px;}
.x10f_c00155{left:583.200000px;}
.xcb_c00155{left:584.700000px;}
.xac_c00155{left:586.500000px;}
.xec_c00155{left:590.400000px;}
.x117_c00155{left:591.900000px;}
.x9e_c00155{left:593.550000px;}
.xbe_c00155{left:594.900000px;}
.x115_c00155{left:597.900000px;}
.xe3_c00155{left:599.700000px;}
.xcc_c00155{left:601.950000px;}
.xd4_c00155{left:604.050000px;}
.xb0_c00155{left:606.900000px;}
.xad_c00155{left:608.400000px;}
.xe0_c00155{left:611.700000px;}
.xb2_c00155{left:612.900000px;}
.xbf_c00155{left:613.950000px;}
.xb3_c00155{left:616.200000px;}
.x125_c00155{left:617.550000px;}
.x11d_c00155{left:621.300000px;}
.xb1_c00155{left:623.100000px;}
.xe7_c00155{left:625.050000px;}
.xae_c00155{left:626.400000px;}
.x103_c00155{left:629.250000px;}
.x135_c00155{left:631.650000px;}
.xf4_c00155{left:632.700000px;}
.x100_c00155{left:634.350000px;}
.xcd_c00155{left:638.250000px;}
.xd5_c00155{left:639.300000px;}
.xb4_c00155{left:640.650000px;}
.xfc_c00155{left:643.350000px;}
.xce_c00155{left:645.750000px;}
.xe1_c00155{left:648.000000px;}
.xe4_c00155{left:649.800000px;}
.xc5_c00155{left:651.450000px;}
.x108_c00155{left:652.950000px;}
.x119_c00155{left:654.000000px;}
.x9f_c00155{left:655.500000px;}
.xfa_c00155{left:656.550000px;}
.x112_c00155{left:658.200000px;}
.xda_c00155{left:659.550000px;}
.xf7_c00155{left:662.250000px;}
.xc0_c00155{left:664.050000px;}
.x139_c00155{left:665.250000px;}
.xed_c00155{left:667.800000px;}
.xb7_c00155{left:669.000000px;}
.x123_c00155{left:671.100000px;}
.x113_c00155{left:672.300000px;}
.x11a_c00155{left:674.100000px;}
.x104_c00155{left:675.300000px;}
.xcf_c00155{left:677.100000px;}
.x126_c00155{left:678.300000px;}
.xd6_c00155{left:679.950000px;}
.xf8_c00155{left:681.750000px;}
.x12d_c00155{left:682.800000px;}
.xc6_c00155{left:683.850000px;}
.x121_c00155{left:685.500000px;}
.x109_c00155{left:687.150000px;}
.x110_c00155{left:689.100000px;}
.x114_c00155{left:691.800000px;}
.xa0_c00155{left:695.400000px;}
.xd0_c00155{left:698.700000px;}
.xf5_c00155{left:700.050000px;}
.xe8_c00155{left:702.450000px;}
.x101_c00155{left:704.550000px;}
.x10a_c00155{left:706.950000px;}
.xee_c00155{left:708.450000px;}
.x128_c00155{left:709.800000px;}
.xb8_c00155{left:711.150000px;}
.x122_c00155{left:713.250000px;}
.xa1_c00155{left:714.450000px;}
.xe5_c00155{left:716.100000px;}
.xef_c00155{left:717.450000px;}
.x11e_c00155{left:719.850000px;}
.xf1_c00155{left:721.950000px;}
.x132_c00155{left:723.000000px;}
.xb9_c00155{left:725.850000px;}
.xe9_c00155{left:726.900000px;}
.xc7_c00155{left:728.850000px;}
.xd7_c00155{left:731.100000px;}
.x124_c00155{left:732.300000px;}
.x10b_c00155{left:733.950000px;}
.xc1_c00155{left:736.050000px;}
.xdb_c00155{left:738.750000px;}
.xd1_c00155{left:741.900000px;}
.x13a_c00155{left:742.950000px;}
.x137_c00155{left:745.200000px;}
.xc2_c00155{left:746.550000px;}
.x127_c00155{left:748.500000px;}
.xc8_c00155{left:750.750000px;}
.xa2_c00155{left:753.300000px;}
.xe2_c00155{left:754.500000px;}
.xdc_c00155{left:755.700000px;}
.xb5_c00155{left:757.950000px;}
.xf2_c00155{left:759.000000px;}
.x102_c00155{left:761.100000px;}
.xd8_c00155{left:763.200000px;}
.x129_c00155{left:765.300000px;}
.xea_c00155{left:768.300000px;}
.xa3_c00155{left:770.550000px;}
.xfd_c00155{left:772.650000px;}
.xdd_c00155{left:775.200000px;}
.xba_c00155{left:776.250000px;}
.x12c_c00155{left:778.200000px;}
.xf9_c00155{left:779.250000px;}
.x105_c00155{left:780.450000px;}
.xf0_c00155{left:782.250000px;}
.xc3_c00155{left:788.250000px;}
.xde_c00155{left:789.900000px;}
.xa4_c00155{left:791.400000px;}
.x133_c00155{left:792.900000px;}
.xeb_c00155{left:794.550000px;}
.xd2_c00155{left:796.200000px;}
.x13c_c00155{left:797.700000px;}
.xb6_c00155{left:799.050000px;}
.xa8_c00155{left:800.100000px;}
.x13b_c00155{left:801.600000px;}
.x10e_c00155{left:804.000000px;}
.xbb_c00155{left:808.650000px;}
.x10c_c00155{left:810.300000px;}
.x106_c00155{left:812.100000px;}
.xf3_c00155{left:813.750000px;}
.xfe_c00155{left:816.150000px;}
.xc4_c00155{left:818.550000px;}
.xd9_c00155{left:820.050000px;}
.xa5_c00155{left:821.700000px;}
.xbc_c00155{left:823.800000px;}
.xc9_c00155{left:825.600000px;}
.xaf_c00155{left:829.050000px;}
.xa9_c00155{left:831.000000px;}
.x11b_c00155{left:832.200000px;}
.xe6_c00155{left:836.400000px;}
.x11f_c00155{left:839.100000px;}
.xdf_c00155{left:842.100000px;}
.xca_c00155{left:843.600000px;}
.x10d_c00155{left:847.050000px;}
.x107_c00155{left:849.150000px;}
.x111_c00155{left:851.550000px;}
.x12e_c00155{left:853.350000px;}
.xf6_c00155{left:854.550000px;}
.xa6_c00155{left:856.200000px;}
.xaa_c00155{left:858.000000px;}
.x118_c00155{left:865.350000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws0_c00155{word-spacing:-7.826297pt;}
.ws6_c00155{word-spacing:-4.487334pt;}
.ws1_c00155{word-spacing:-1.527778pt;}
.ws3_c00155{word-spacing:-1.481481pt;}
.ws5_c00155{word-spacing:-1.392843pt;}
.ws7_c00155{word-spacing:0.000000pt;}
.ws4_c00155{word-spacing:34.200724pt;}
.ws2_c00155{word-spacing:65.185185pt;}
.fs5_c00155{font-size:26.666667pt;}
.fs4_c00155{font-size:37.333333pt;}
.fs6_c00155{font-size:48.000000pt;}
.fs3_c00155{font-size:53.333333pt;}
.fs0_c00155{font-size:58.666667pt;}
.fs2_c00155{font-size:64.000000pt;}
.fs1_c00155{font-size:69.333333pt;}
.y0_c00155{bottom:0.000000pt;}
.y33_c00155{bottom:176.666667pt;}
.y68_c00155{bottom:179.866667pt;}
.y32_c00155{bottom:190.133333pt;}
.y67_c00155{bottom:195.866667pt;}
.y66_c00155{bottom:211.733333pt;}
.y65_c00155{bottom:227.466667pt;}
.y31_c00155{bottom:230.533333pt;}
.y30_c00155{bottom:246.266667pt;}
.y64_c00155{bottom:246.933333pt;}
.y2f_c00155{bottom:262.266667pt;}
.y63_c00155{bottom:262.666667pt;}
.y2e_c00155{bottom:278.266667pt;}
.y62_c00155{bottom:278.533333pt;}
.y2d_c00155{bottom:294.000000pt;}
.y61_c00155{bottom:294.266667pt;}
.y2c_c00155{bottom:309.733333pt;}
.y60_c00155{bottom:310.000000pt;}
.y2b_c00155{bottom:325.466667pt;}
.y5f_c00155{bottom:325.733333pt;}
.y5e_c00155{bottom:341.466667pt;}
.y2a_c00155{bottom:344.933333pt;}
.y5d_c00155{bottom:361.466667pt;}
.y29_c00155{bottom:364.133333pt;}
.y5c_c00155{bottom:377.200000pt;}
.y28_c00155{bottom:379.866667pt;}
.y5b_c00155{bottom:392.933333pt;}
.y27_c00155{bottom:395.866667pt;}
.y5a_c00155{bottom:408.933333pt;}
.y25_c00155{bottom:422.133333pt;}
.y59_c00155{bottom:424.266667pt;}
.y24_c00155{bottom:439.466667pt;}
.y58_c00155{bottom:440.266667pt;}
.y23_c00155{bottom:455.733333pt;}
.y57_c00155{bottom:456.000000pt;}
.y56_c00155{bottom:472.000000pt;}
.y22_c00155{bottom:474.800000pt;}
.y55_c00155{bottom:487.733333pt;}
.y21_c00155{bottom:493.733333pt;}
.y54_c00155{bottom:506.800000pt;}
.y20_c00155{bottom:510.800000pt;}
.y53_c00155{bottom:522.533333pt;}
.y1f_c00155{bottom:526.800000pt;}
.y52_c00155{bottom:537.866667pt;}
.y1e_c00155{bottom:544.400000pt;}
.y51_c00155{bottom:553.600000pt;}
.y1d_c00155{bottom:558.133333pt;}
.y50_c00155{bottom:569.600000pt;}
.y1c_c00155{bottom:573.733333pt;}
.y4f_c00155{bottom:585.600000pt;}
.y1b_c00155{bottom:589.466667pt;}
.y4e_c00155{bottom:601.333333pt;}
.y1a_c00155{bottom:605.466667pt;}
.y4d_c00155{bottom:617.066667pt;}
.y19_c00155{bottom:624.266667pt;}
.y4c_c00155{bottom:633.066667pt;}
.y26_c00155{bottom:636.133333pt;}
.y18_c00155{bottom:636.800000pt;}
.y4b_c00155{bottom:648.800000pt;}
.y17_c00155{bottom:649.333333pt;}
.y16_c00155{bottom:662.666667pt;}
.y4a_c00155{bottom:664.800000pt;}
.y49_c00155{bottom:680.533333pt;}
.y15_c00155{bottom:681.333333pt;}
.y48_c00155{bottom:696.266667pt;}
.y14_c00155{bottom:699.600000pt;}
.y47_c00155{bottom:712.266667pt;}
.y13_c00155{bottom:715.600000pt;}
.y46_c00155{bottom:728.000000pt;}
.y12_c00155{bottom:730.933333pt;}
.y45_c00155{bottom:744.000000pt;}
.y11_c00155{bottom:748.400000pt;}
.y44_c00155{bottom:759.733333pt;}
.y10_c00155{bottom:766.266667pt;}
.y43_c00155{bottom:775.733333pt;}
.yf_c00155{bottom:782.000000pt;}
.y42_c00155{bottom:791.466667pt;}
.ye_c00155{bottom:797.733333pt;}
.y41_c00155{bottom:807.200000pt;}
.yd_c00155{bottom:815.600000pt;}
.y40_c00155{bottom:823.200000pt;}
.yc_c00155{bottom:832.933333pt;}
.y3f_c00155{bottom:838.933333pt;}
.y3e_c00155{bottom:854.933333pt;}
.yb_c00155{bottom:857.866667pt;}
.y3d_c00155{bottom:870.666667pt;}
.ya_c00155{bottom:875.866667pt;}
.y3c_c00155{bottom:886.666667pt;}
.y9_c00155{bottom:891.466667pt;}
.y3b_c00155{bottom:902.400000pt;}
.y8_c00155{bottom:907.200000pt;}
.y3a_c00155{bottom:921.600000pt;}
.y7_c00155{bottom:922.933333pt;}
.y39_c00155{bottom:935.066667pt;}
.y6_c00155{bottom:942.133333pt;}
.y38_c00155{bottom:947.200000pt;}
.y5_c00155{bottom:960.266667pt;}
.y37_c00155{bottom:960.666667pt;}
.y36_c00155{bottom:973.733333pt;}
.y4_c00155{bottom:977.866667pt;}
.y35_c00155{bottom:986.266667pt;}
.y3_c00155{bottom:993.600000pt;}
.y34_c00155{bottom:999.066667pt;}
.y1_c00155{bottom:1016.000000pt;}
.y2_c00155{bottom:1018.533333pt;}
.h7_c00155{height:26.666667pt;}
.h6_c00155{height:37.333333pt;}
.h8_c00155{height:48.000000pt;}
.h5_c00155{height:53.333333pt;}
.h2_c00155{height:58.666667pt;}
.h4_c00155{height:64.000000pt;}
.h3_c00155{height:69.333333pt;}
.h1_c00155{height:1130.000000pt;}
.h0_c00155{height:1130.239991pt;}
.w1_c00155{width:847.333333pt;}
.w0_c00155{width:847.360027pt;}
.x0_c00155{left:0.000000pt;}
.x81_c00155{left:123.866667pt;}
.x9c_c00155{left:150.666667pt;}
.x85_c00155{left:155.466667pt;}
.x79_c00155{left:156.533333pt;}
.x53_c00155{left:157.733333pt;}
.x3_c00155{left:158.666667pt;}
.x12_c00155{left:159.733333pt;}
.x1_c00155{left:160.666667pt;}
.x99_c00155{left:162.933333pt;}
.x97_c00155{left:168.133333pt;}
.x8c_c00155{left:169.200000pt;}
.x80_c00155{left:170.133333pt;}
.x57_c00155{left:171.200000pt;}
.x6c_c00155{left:173.200000pt;}
.x28_c00155{left:174.533333pt;}
.xa_c00155{left:175.600000pt;}
.x69_c00155{left:180.800000pt;}
.x5b_c00155{left:182.533333pt;}
.x9a_c00155{left:185.600000pt;}
.x82_c00155{left:188.800000pt;}
.x2f_c00155{left:191.066667pt;}
.x77_c00155{left:192.000000pt;}
.x6f_c00155{left:193.333333pt;}
.x31_c00155{left:197.733333pt;}
.x36_c00155{left:199.733333pt;}
.x64_c00155{left:201.733333pt;}
.x35_c00155{left:204.000000pt;}
.x93_c00155{left:206.533333pt;}
.x3f_c00155{left:207.733333pt;}
.x4_c00155{left:209.866667pt;}
.x61_c00155{left:211.466667pt;}
.x4d_c00155{left:212.400000pt;}
.x54_c00155{left:213.466667pt;}
.x13_c00155{left:214.800000pt;}
.x44_c00155{left:215.866667pt;}
.x29_c00155{left:217.733333pt;}
.x20_c00155{left:218.666667pt;}
.x49_c00155{left:220.000000pt;}
.x4e_c00155{left:222.000000pt;}
.x19_c00155{left:223.600000pt;}
.x11_c00155{left:226.400000pt;}
.x6d_c00155{left:227.600000pt;}
.x94_c00155{left:230.533333pt;}
.x32_c00155{left:231.600000pt;}
.x5_c00155{left:233.866667pt;}
.x37_c00155{left:237.200000pt;}
.x6a_c00155{left:239.733333pt;}
.xb_c00155{left:240.933333pt;}
.x62_c00155{left:241.866667pt;}
.x21_c00155{left:244.533333pt;}
.x1a_c00155{left:247.600000pt;}
.x88_c00155{left:250.400000pt;}
.x40_c00155{left:252.266667pt;}
.x6b_c00155{left:255.066667pt;}
.x46_c00155{left:257.333333pt;}
.xc_c00155{left:258.533333pt;}
.x4f_c00155{left:261.733333pt;}
.x95_c00155{left:264.133333pt;}
.x8d_c00155{left:265.200000pt;}
.x22_c00155{left:266.933333pt;}
.x5c_c00155{left:268.266667pt;}
.x6_c00155{left:270.666667pt;}
.x55_c00155{left:272.400000pt;}
.x5d_c00155{left:273.866667pt;}
.x2a_c00155{left:279.466667pt;}
.x14_c00155{left:280.666667pt;}
.x41_c00155{left:282.400000pt;}
.x8e_c00155{left:283.733333pt;}
.x65_c00155{left:286.533333pt;}
.x78_c00155{left:289.600000pt;}
.x15_c00155{left:290.933333pt;}
.x1b_c00155{left:293.333333pt;}
.x89_c00155{left:294.266667pt;}
.x4a_c00155{left:295.733333pt;}
.x7c_c00155{left:298.533333pt;}
.x73_c00155{left:300.666667pt;}
.x3a_c00155{left:301.600000pt;}
.x1c_c00155{left:304.800000pt;}
.x4b_c00155{left:306.933333pt;}
.x2b_c00155{left:309.866667pt;}
.x23_c00155{left:314.000000pt;}
.x38_c00155{left:315.600000pt;}
.x9b_c00155{left:317.466667pt;}
.x66_c00155{left:319.200000pt;}
.x42_c00155{left:321.066667pt;}
.x6e_c00155{left:322.400000pt;}
.xd_c00155{left:324.133333pt;}
.x16_c00155{left:326.133333pt;}
.x2c_c00155{left:329.066667pt;}
.x5e_c00155{left:330.133333pt;}
.x7a_c00155{left:331.200000pt;}
.x24_c00155{left:332.266667pt;}
.x7_c00155{left:333.733333pt;}
.x33_c00155{left:334.933333pt;}
.x43_c00155{left:336.133333pt;}
.x3b_c00155{left:337.466667pt;}
.x7f_c00155{left:339.066667pt;}
.x50_c00155{left:343.600000pt;}
.x70_c00155{left:344.666667pt;}
.x63_c00155{left:346.800000pt;}
.x17_c00155{left:348.266667pt;}
.x8a_c00155{left:350.266667pt;}
.xe_c00155{left:354.266667pt;}
.x8f_c00155{left:356.000000pt;}
.x3c_c00155{left:358.933333pt;}
.x45_c00155{left:360.800000pt;}
.x47_c00155{left:363.600000pt;}
.x71_c00155{left:365.733333pt;}
.xf_c00155{left:368.000000pt;}
.x74_c00155{left:369.200000pt;}
.x67_c00155{left:370.133333pt;}
.x2_c00155{left:371.866667pt;}
.x7d_c00155{left:372.800000pt;}
.x90_c00155{left:374.533333pt;}
.x83_c00155{left:375.866667pt;}
.x25_c00155{left:380.000000pt;}
.x1d_c00155{left:381.600000pt;}
.x86_c00155{left:383.466667pt;}
.x8b_c00155{left:384.666667pt;}
.x39_c00155{left:385.733333pt;}
.x18_c00155{left:386.933333pt;}
.x8_c00155{left:389.733333pt;}
.x91_c00155{left:391.866667pt;}
.x1e_c00155{left:392.800000pt;}
.x58_c00155{left:394.533333pt;}
.x3d_c00155{left:396.000000pt;}
.x84_c00155{left:397.333333pt;}
.x30_c00155{left:398.400000pt;}
.x2d_c00155{left:399.466667pt;}
.x9_c00155{left:402.533333pt;}
.x75_c00155{left:406.266667pt;}
.x7b_c00155{left:407.600000pt;}
.x51_c00155{left:409.466667pt;}
.x7e_c00155{left:411.200000pt;}
.x5f_c00155{left:412.133333pt;}
.x68_c00155{left:413.866667pt;}
.x2e_c00155{left:415.200000pt;}
.x4c_c00155{left:417.466667pt;}
.x34_c00155{left:420.400000pt;}
.x5a_c00155{left:421.600000pt;}
.x26_c00155{left:422.933333pt;}
.x98_c00155{left:424.266667pt;}
.x92_c00155{left:425.466667pt;}
.x60_c00155{left:426.533333pt;}
.x96_c00155{left:429.200000pt;}
.x76_c00155{left:430.266667pt;}
.x10_c00155{left:432.266667pt;}
.x27_c00155{left:436.000000pt;}
.x72_c00155{left:437.066667pt;}
.x3e_c00155{left:438.533333pt;}
.x1f_c00155{left:443.733333pt;}
.x56_c00155{left:444.666667pt;}
.x59_c00155{left:446.000000pt;}
.x52_c00155{left:447.200000pt;}
.x48_c00155{left:448.133333pt;}
.x87_c00155{left:449.733333pt;}
.x12a_c00155{left:468.133333pt;}
.x131_c00155{left:471.066667pt;}
.x9d_c00155{left:476.133333pt;}
.x11c_c00155{left:481.200000pt;}
.x138_c00155{left:485.200000pt;}
.x12f_c00155{left:487.200000pt;}
.xa7_c00155{left:488.800000pt;}
.x120_c00155{left:489.866667pt;}
.xfb_c00155{left:491.200000pt;}
.xbd_c00155{left:492.266667pt;}
.xab_c00155{left:502.133333pt;}
.x130_c00155{left:503.466667pt;}
.x116_c00155{left:505.600000pt;}
.x136_c00155{left:507.866667pt;}
.xd3_c00155{left:508.800000pt;}
.x134_c00155{left:510.266667pt;}
.xff_c00155{left:511.333333pt;}
.x12b_c00155{left:515.066667pt;}
.x10f_c00155{left:518.400000pt;}
.xcb_c00155{left:519.733333pt;}
.xac_c00155{left:521.333333pt;}
.xec_c00155{left:524.800000pt;}
.x117_c00155{left:526.133333pt;}
.x9e_c00155{left:527.600000pt;}
.xbe_c00155{left:528.800000pt;}
.x115_c00155{left:531.466667pt;}
.xe3_c00155{left:533.066667pt;}
.xcc_c00155{left:535.066667pt;}
.xd4_c00155{left:536.933333pt;}
.xb0_c00155{left:539.466667pt;}
.xad_c00155{left:540.800000pt;}
.xe0_c00155{left:543.733333pt;}
.xb2_c00155{left:544.800000pt;}
.xbf_c00155{left:545.733333pt;}
.xb3_c00155{left:547.733333pt;}
.x125_c00155{left:548.933333pt;}
.x11d_c00155{left:552.266667pt;}
.xb1_c00155{left:553.866667pt;}
.xe7_c00155{left:555.600000pt;}
.xae_c00155{left:556.800000pt;}
.x103_c00155{left:559.333333pt;}
.x135_c00155{left:561.466667pt;}
.xf4_c00155{left:562.400000pt;}
.x100_c00155{left:563.866667pt;}
.xcd_c00155{left:567.333333pt;}
.xd5_c00155{left:568.266667pt;}
.xb4_c00155{left:569.466667pt;}
.xfc_c00155{left:571.866667pt;}
.xce_c00155{left:574.000000pt;}
.xe1_c00155{left:576.000000pt;}
.xe4_c00155{left:577.600000pt;}
.xc5_c00155{left:579.066667pt;}
.x108_c00155{left:580.400000pt;}
.x119_c00155{left:581.333333pt;}
.x9f_c00155{left:582.666667pt;}
.xfa_c00155{left:583.600000pt;}
.x112_c00155{left:585.066667pt;}
.xda_c00155{left:586.266667pt;}
.xf7_c00155{left:588.666667pt;}
.xc0_c00155{left:590.266667pt;}
.x139_c00155{left:591.333333pt;}
.xed_c00155{left:593.600000pt;}
.xb7_c00155{left:594.666667pt;}
.x123_c00155{left:596.533333pt;}
.x113_c00155{left:597.600000pt;}
.x11a_c00155{left:599.200000pt;}
.x104_c00155{left:600.266667pt;}
.xcf_c00155{left:601.866667pt;}
.x126_c00155{left:602.933333pt;}
.xd6_c00155{left:604.400000pt;}
.xf8_c00155{left:606.000000pt;}
.x12d_c00155{left:606.933333pt;}
.xc6_c00155{left:607.866667pt;}
.x121_c00155{left:609.333333pt;}
.x109_c00155{left:610.800000pt;}
.x110_c00155{left:612.533333pt;}
.x114_c00155{left:614.933333pt;}
.xa0_c00155{left:618.133333pt;}
.xd0_c00155{left:621.066667pt;}
.xf5_c00155{left:622.266667pt;}
.xe8_c00155{left:624.400000pt;}
.x101_c00155{left:626.266667pt;}
.x10a_c00155{left:628.400000pt;}
.xee_c00155{left:629.733333pt;}
.x128_c00155{left:630.933333pt;}
.xb8_c00155{left:632.133333pt;}
.x122_c00155{left:634.000000pt;}
.xa1_c00155{left:635.066667pt;}
.xe5_c00155{left:636.533333pt;}
.xef_c00155{left:637.733333pt;}
.x11e_c00155{left:639.866667pt;}
.xf1_c00155{left:641.733333pt;}
.x132_c00155{left:642.666667pt;}
.xb9_c00155{left:645.200000pt;}
.xe9_c00155{left:646.133333pt;}
.xc7_c00155{left:647.866667pt;}
.xd7_c00155{left:649.866667pt;}
.x124_c00155{left:650.933333pt;}
.x10b_c00155{left:652.400000pt;}
.xc1_c00155{left:654.266667pt;}
.xdb_c00155{left:656.666667pt;}
.xd1_c00155{left:659.466667pt;}
.x13a_c00155{left:660.400000pt;}
.x137_c00155{left:662.400000pt;}
.xc2_c00155{left:663.600000pt;}
.x127_c00155{left:665.333333pt;}
.xc8_c00155{left:667.333333pt;}
.xa2_c00155{left:669.600000pt;}
.xe2_c00155{left:670.666667pt;}
.xdc_c00155{left:671.733333pt;}
.xb5_c00155{left:673.733333pt;}
.xf2_c00155{left:674.666667pt;}
.x102_c00155{left:676.533333pt;}
.xd8_c00155{left:678.400000pt;}
.x129_c00155{left:680.266667pt;}
.xea_c00155{left:682.933333pt;}
.xa3_c00155{left:684.933333pt;}
.xfd_c00155{left:686.800000pt;}
.xdd_c00155{left:689.066667pt;}
.xba_c00155{left:690.000000pt;}
.x12c_c00155{left:691.733333pt;}
.xf9_c00155{left:692.666667pt;}
.x105_c00155{left:693.733333pt;}
.xf0_c00155{left:695.333333pt;}
.xc3_c00155{left:700.666667pt;}
.xde_c00155{left:702.133333pt;}
.xa4_c00155{left:703.466667pt;}
.x133_c00155{left:704.800000pt;}
.xeb_c00155{left:706.266667pt;}
.xd2_c00155{left:707.733333pt;}
.x13c_c00155{left:709.066667pt;}
.xb6_c00155{left:710.266667pt;}
.xa8_c00155{left:711.200000pt;}
.x13b_c00155{left:712.533333pt;}
.x10e_c00155{left:714.666667pt;}
.xbb_c00155{left:718.800000pt;}
.x10c_c00155{left:720.266667pt;}
.x106_c00155{left:721.866667pt;}
.xf3_c00155{left:723.333333pt;}
.xfe_c00155{left:725.466667pt;}
.xc4_c00155{left:727.600000pt;}
.xd9_c00155{left:728.933333pt;}
.xa5_c00155{left:730.400000pt;}
.xbc_c00155{left:732.266667pt;}
.xc9_c00155{left:733.866667pt;}
.xaf_c00155{left:736.933333pt;}
.xa9_c00155{left:738.666667pt;}
.x11b_c00155{left:739.733333pt;}
.xe6_c00155{left:743.466667pt;}
.x11f_c00155{left:745.866667pt;}
.xdf_c00155{left:748.533333pt;}
.xca_c00155{left:749.866667pt;}
.x10d_c00155{left:752.933333pt;}
.x107_c00155{left:754.800000pt;}
.x111_c00155{left:756.933333pt;}
.x12e_c00155{left:758.533333pt;}
.xf6_c00155{left:759.600000pt;}
.xa6_c00155{left:761.066667pt;}
.xaa_c00155{left:762.666667pt;}
.x118_c00155{left:769.200000pt;}
}





/* 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_c00156 {
    display:none;
  }
  .loading-indicator_c00156.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00156 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_c00156 { 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_c00156" -> "#page-container .classname_c00156")
 */
.pf_c00156 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00156 { /* 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_c00156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00156 { /* 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_c00156 { /* 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_c00156 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00156 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00156 {overflow:visible;}
  }
}
.c_c00156 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00156 { /* 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_c00156:after { /* webkit #35443 */
  content: '';
}
.t_c00156:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00156 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 */
}
.__c00156 { /* 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_c00156 { /* info for Javascript */
  display:none;
}
.l_c00156 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00156 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00156 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00156: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_c00156 {
    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_c00156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00156.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_c00156 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00156;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.000000;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;}
.m10e_c00156{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00156{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m105_c00156{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.me8_c00156{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.me4_c00156{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m34_c00156{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00156{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m43_c00156{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00156{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00156{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00156{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m45_c00156{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00156{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00156{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m25_c00156{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00156{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00156{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mab_c00156{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m103_c00156{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00156{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m32_c00156{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00156{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m88_c00156{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m33_c00156{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6_c00156{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m39_c00156{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00156{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00156{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00156{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m108_c00156{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00156{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m93_c00156{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00156{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m87_c00156{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m66_c00156{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m98_c00156{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m50_c00156{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m44_c00156{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md_c00156{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m37_c00156{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00156{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00156{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00156{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00156{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m27_c00156{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00156{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00156{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m28_c00156{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00156{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m30_c00156{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00156{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00156{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00156{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00156{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00156{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m54_c00156{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00156{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00156{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb_c00156{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m97_c00156{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m8_c00156{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m64_c00156{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me2_c00156{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.me0_c00156{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m52_c00156{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m29_c00156{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m107_c00156{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m56_c00156{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4_c00156{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m67_c00156{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00156{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.md5_c00156{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m71_c00156{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00156{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m48_c00156{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00156{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00156{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00156{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00156{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9_c00156{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m84_c00156{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m73_c00156{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00156{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00156{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5_c00156{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m55_c00156{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m95_c00156{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00156{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.me1_c00156{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m106_c00156{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00156{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m75_c00156{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00156{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m51_c00156{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m60_c00156{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00156{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mde_c00156{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m72_c00156{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00156{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00156{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf_c00156{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00156{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md1_c00156{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00156{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m82_c00156{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m61_c00156{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m69_c00156{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m74_c00156{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m96_c00156{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00156{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00156{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m65_c00156{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m80_c00156{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mba_c00156{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m76_c00156{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00156{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mda_c00156{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7_c00156{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m26_c00156{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m17_c00156{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00156{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m18_c00156{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md0_c00156{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mca_c00156{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me_c00156{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00156{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m78_c00156{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00156{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m47_c00156{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00156{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00156{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m14_c00156{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m109_c00156{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00156{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00156{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00156{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mac_c00156{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00156{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mce_c00156{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00156{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.me5_c00156{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m81_c00156{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00156{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m79_c00156{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m70_c00156{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m15_c00156{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m46_c00156{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00156{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m10_c00156{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00156{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00156{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma_c00156{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m49_c00156{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00156{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m16_c00156{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mad_c00156{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00156{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00156{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m11_c00156{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00156{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m92_c00156{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m77_c00156{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md3_c00156{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00156{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m85_c00156{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00156{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00156{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.maa_c00156{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00156{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00156{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m12_c00156{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00156{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00156{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m99_c00156{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m58_c00156{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m21_c00156{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m83_c00156{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00156{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m94_c00156{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me7_c00156{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00156{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00156{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m57_c00156{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00156{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m86_c00156{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m36_c00156{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m63_c00156{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md8_c00156{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00156{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.md6_c00156{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00156{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00156{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00156{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m62_c00156{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00156{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00156{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mef_c00156{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me3_c00156{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00156{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.maf_c00156{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m53_c00156{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00156{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m38_c00156{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m42_c00156{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00156{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00156{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m59_c00156{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00156{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mae_c00156{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m23_c00156{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m22_c00156{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mea_c00156{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.md9_c00156{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00156{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00156{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m31_c00156{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m24_c00156{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00156{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00156{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00156{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m13_c00156{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mec_c00156{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00156{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00156{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me6_c00156{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00156{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m35_c00156{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00156{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m68_c00156{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00156{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00156{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3_c00156{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md7_c00156{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00156{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md4_c00156{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.med_c00156{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00156{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00156{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m20_c00156{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me9_c00156{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00156{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00156{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00156{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m41_c00156{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00156{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00156{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m40_c00156{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2_c00156{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00156{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.mff_c00156{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m100_c00156{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m101_c00156{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00156{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00156{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m91_c00156{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mee_c00156{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.md2_c00156{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m90_c00156{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m102_c00156{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.meb_c00156{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00156{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00156{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00156{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00156{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00156{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00156{transform:matrix(0.388250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388250,0.000000,0.000000,0.250000,0,0);}
.m104_c00156{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m0_c00156{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m89_c00156{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00156{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls0_c00156{letter-spacing:0.000000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{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__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00156{word-spacing:-3.487973px;}
.ws5_c00156{word-spacing:-1.446735px;}
.wsd_c00156{word-spacing:0.000000px;}
.wsc_c00156{word-spacing:1.379310px;}
.ws8_c00156{word-spacing:5.240048px;}
.ws9_c00156{word-spacing:5.967655px;}
.wsa_c00156{word-spacing:10.358166px;}
.ws6_c00156{word-spacing:11.628032px;}
.ws7_c00156{word-spacing:18.083434px;}
.wsb_c00156{word-spacing:22.500000px;}
.ws0_c00156{word-spacing:39.789474px;}
.ws2_c00156{word-spacing:44.210526px;}
.ws1_c00156{word-spacing:60.906219px;}
.ws3_c00156{word-spacing:73.333333px;}
.fc0_c00156{color:transparent;}
.fs4_c00156{font-size:36.000000px;}
.fs6_c00156{font-size:48.000000px;}
.fs3_c00156{font-size:54.000000px;}
.fs2_c00156{font-size:60.000000px;}
.fs1_c00156{font-size:66.000000px;}
.fs5_c00156{font-size:72.000000px;}
.fs0_c00156{font-size:84.000000px;}
.y0_c00156{bottom:0.000000px;}
.y65_c00156{bottom:160.200000px;}
.y64_c00156{bottom:191.850000px;}
.y63_c00156{bottom:209.850000px;}
.y62_c00156{bottom:213.750000px;}
.y61_c00156{bottom:227.850000px;}
.y60_c00156{bottom:231.600000px;}
.y5f_c00156{bottom:249.600000px;}
.y56_c00156{bottom:257.400000px;}
.y5e_c00156{bottom:267.900000px;}
.y55_c00156{bottom:275.400000px;}
.y54_c00156{bottom:294.600000px;}
.y53_c00156{bottom:312.600000px;}
.y5d_c00156{bottom:319.350000px;}
.y52_c00156{bottom:330.300000px;}
.y51_c00156{bottom:348.300000px;}
.y50_c00156{bottom:366.300000px;}
.y4f_c00156{bottom:381.750000px;}
.y5c_c00156{bottom:388.500000px;}
.y4e_c00156{bottom:399.750000px;}
.y5b_c00156{bottom:406.500000px;}
.y4d_c00156{bottom:417.450000px;}
.y5a_c00156{bottom:424.500000px;}
.y4c_c00156{bottom:435.450000px;}
.y59_c00156{bottom:446.700000px;}
.y4b_c00156{bottom:453.150000px;}
.y58_c00156{bottom:464.400000px;}
.y4a_c00156{bottom:471.150000px;}
.y57_c00156{bottom:482.700000px;}
.y49_c00156{bottom:488.850000px;}
.y48_c00156{bottom:506.550000px;}
.y47_c00156{bottom:522.300000px;}
.y24_c00156{bottom:524.100000px;}
.y46_c00156{bottom:540.000000px;}
.y23_c00156{bottom:542.100000px;}
.y45_c00156{bottom:558.000000px;}
.y22_c00156{bottom:563.400000px;}
.y44_c00156{bottom:575.700000px;}
.y21_c00156{bottom:581.400000px;}
.y43_c00156{bottom:593.700000px;}
.y20_c00156{bottom:599.700000px;}
.y42_c00156{bottom:611.700000px;}
.y1f_c00156{bottom:617.400000px;}
.y41_c00156{bottom:629.400000px;}
.y1e_c00156{bottom:635.400000px;}
.y40_c00156{bottom:647.400000px;}
.y1d_c00156{bottom:653.100000px;}
.y3f_c00156{bottom:665.100000px;}
.y1c_c00156{bottom:671.100000px;}
.y3e_c00156{bottom:683.100000px;}
.y1b_c00156{bottom:688.800000px;}
.y3d_c00156{bottom:701.100000px;}
.y1a_c00156{bottom:706.800000px;}
.y3c_c00156{bottom:719.100000px;}
.y19_c00156{bottom:724.500000px;}
.y3b_c00156{bottom:737.100000px;}
.y18_c00156{bottom:742.500000px;}
.y3a_c00156{bottom:754.800000px;}
.y17_c00156{bottom:760.200000px;}
.y39_c00156{bottom:772.800000px;}
.y16_c00156{bottom:778.200000px;}
.y38_c00156{bottom:790.500000px;}
.y15_c00156{bottom:796.200000px;}
.y37_c00156{bottom:808.200000px;}
.y14_c00156{bottom:813.900000px;}
.y36_c00156{bottom:826.200000px;}
.y13_c00156{bottom:831.600000px;}
.y12_c00156{bottom:849.600000px;}
.y35_c00156{bottom:855.600000px;}
.y34_c00156{bottom:862.050000px;}
.y11_c00156{bottom:870.150000px;}
.y33_c00156{bottom:876.150000px;}
.y10_c00156{bottom:886.050000px;}
.y32_c00156{bottom:890.550000px;}
.yf_c00156{bottom:900.450000px;}
.y31_c00156{bottom:904.650000px;}
.y30_c00156{bottom:919.050000px;}
.ye_c00156{bottom:929.250000px;}
.y2f_c00156{bottom:933.150000px;}
.yd_c00156{bottom:942.900000px;}
.y2e_c00156{bottom:947.850000px;}
.yc_c00156{bottom:958.050000px;}
.y2d_c00156{bottom:962.250000px;}
.ya_c00156{bottom:970.500000px;}
.yb_c00156{bottom:977.100000px;}
.y2c_c00156{bottom:982.800000px;}
.y9_c00156{bottom:987.450000px;}
.y2b_c00156{bottom:1000.500000px;}
.y8_c00156{bottom:1004.700000px;}
.y2a_c00156{bottom:1018.500000px;}
.y7_c00156{bottom:1023.000000px;}
.y29_c00156{bottom:1035.750000px;}
.y6_c00156{bottom:1041.000000px;}
.y28_c00156{bottom:1054.050000px;}
.y5_c00156{bottom:1058.700000px;}
.y27_c00156{bottom:1071.750000px;}
.y4_c00156{bottom:1076.700000px;}
.y26_c00156{bottom:1093.350000px;}
.y3_c00156{bottom:1094.400000px;}
.y25_c00156{bottom:1111.350000px;}
.y2_c00156{bottom:1113.150000px;}
.y1_c00156{bottom:1138.350000px;}
.h6_c00156{height:36.000000px;}
.h8_c00156{height:48.000000px;}
.h5_c00156{height:54.000000px;}
.h4_c00156{height:60.000000px;}
.h3_c00156{height:66.000000px;}
.h7_c00156{height:72.000000px;}
.h2_c00156{height:84.000000px;}
.h1_c00156{height:1274.250000px;}
.h0_c00156{height:1274.400056px;}
.w1_c00156{width:953.250000px;}
.w0_c00156{width:953.280030px;}
.x0_c00156{left:0.000000px;}
.x2d_c00156{left:74.550000px;}
.x3_c00156{left:76.350000px;}
.x122_c00156{left:78.150000px;}
.x34_c00156{left:89.250000px;}
.x1e_c00156{left:90.450000px;}
.xa_c00156{left:92.100000px;}
.x11_c00156{left:93.300000px;}
.x69_c00156{left:94.350000px;}
.x6f_c00156{left:95.550000px;}
.x107_c00156{left:97.050000px;}
.x37_c00156{left:104.400000px;}
.x7b_c00156{left:112.500000px;}
.x82_c00156{left:114.150000px;}
.x64_c00156{left:115.800000px;}
.x4_c00156{left:117.000000px;}
.x5d_c00156{left:120.750000px;}
.x119_c00156{left:122.850000px;}
.x4d_c00156{left:124.050000px;}
.x59_c00156{left:125.850000px;}
.x105_c00156{left:128.250000px;}
.x1f_c00156{left:131.100000px;}
.x26_c00156{left:133.200000px;}
.x76_c00156{left:134.700000px;}
.x2e_c00156{left:137.550000px;}
.x7e_c00156{left:138.750000px;}
.x10b_c00156{left:141.300000px;}
.x46_c00156{left:143.700000px;}
.xb_c00156{left:145.050000px;}
.x113_c00156{left:146.850000px;}
.x70_c00156{left:148.050000px;}
.x20_c00156{left:149.850000px;}
.x19_c00156{left:150.900000px;}
.x12_c00156{left:151.950000px;}
.x10f_c00156{left:154.050000px;}
.xc_c00156{left:155.850000px;}
.x3f_c00156{left:158.100000px;}
.x43_c00156{left:161.700000px;}
.x106_c00156{left:163.200000px;}
.x11a_c00156{left:164.250000px;}
.x77_c00156{left:165.300000px;}
.x125_c00156{left:166.650000px;}
.x3c_c00156{left:167.850000px;}
.x111_c00156{left:170.250000px;}
.x5a_c00156{left:173.400000px;}
.x85_c00156{left:175.350000px;}
.x27_c00156{left:177.450000px;}
.x3a_c00156{left:180.150000px;}
.x47_c00156{left:181.500000px;}
.x6b_c00156{left:182.550000px;}
.x5_c00156{left:183.600000px;}
.x4e_c00156{left:185.550000px;}
.x123_c00156{left:189.150000px;}
.xd_c00156{left:190.800000px;}
.x65_c00156{left:194.250000px;}
.x110_c00156{left:196.200000px;}
.x1a_c00156{left:198.000000px;}
.x71_c00156{left:199.200000px;}
.x5e_c00156{left:200.400000px;}
.x2f_c00156{left:201.600000px;}
.x13_c00156{left:203.100000px;}
.x6c_c00156{left:204.150000px;}
.x68_c00156{left:205.500000px;}
.x5b_c00156{left:207.900000px;}
.x21_c00156{left:210.000000px;}
.x28_c00156{left:214.500000px;}
.x86_c00156{left:217.800000px;}
.x5f_c00156{left:220.950000px;}
.x78_c00156{left:222.900000px;}
.x7f_c00156{left:224.100000px;}
.x108_c00156{left:225.150000px;}
.x7c_c00156{left:226.200000px;}
.x66_c00156{left:230.250000px;}
.x1b_c00156{left:232.950000px;}
.x51_c00156{left:234.450000px;}
.x6_c00156{left:236.850000px;}
.x6d_c00156{left:241.200000px;}
.x22_c00156{left:242.700000px;}
.x30_c00156{left:244.050000px;}
.x124_c00156{left:245.250000px;}
.x29_c00156{left:246.600000px;}
.x14_c00156{left:247.800000px;}
.x74_c00156{left:251.400000px;}
.x3b_c00156{left:252.450000px;}
.x55_c00156{left:255.150000px;}
.x3d_c00156{left:256.350000px;}
.x48_c00156{left:257.700000px;}
.x109_c00156{left:260.100000px;}
.xe_c00156{left:262.500000px;}
.x15_c00156{left:264.000000px;}
.x31_c00156{left:265.350000px;}
.x52_c00156{left:266.550000px;}
.x10c_c00156{left:267.750000px;}
.x4f_c00156{left:269.850000px;}
.x60_c00156{left:271.650000px;}
.x114_c00156{left:273.150000px;}
.x126_c00156{left:274.200000px;}
.x79_c00156{left:276.600000px;}
.x56_c00156{left:278.550000px;}
.x7d_c00156{left:280.200000px;}
.x32_c00156{left:282.600000px;}
.xf_c00156{left:284.100000px;}
.x49_c00156{left:286.500000px;}
.x23_c00156{left:289.500000px;}
.x53_c00156{left:290.700000px;}
.x61_c00156{left:292.200000px;}
.x10a_c00156{left:293.250000px;}
.x5c_c00156{left:297.150000px;}
.x80_c00156{left:299.700000px;}
.x87_c00156{left:301.350000px;}
.x44_c00156{left:303.300000px;}
.x40_c00156{left:305.400000px;}
.x16_c00156{left:306.450000px;}
.x115_c00156{left:307.650000px;}
.x67_c00156{left:310.200000px;}
.x2a_c00156{left:312.450000px;}
.x7_c00156{left:315.000000px;}
.x72_c00156{left:316.800000px;}
.x1_c00156{left:317.850000px;}
.x41_c00156{left:320.100000px;}
.x3e_c00156{left:321.150000px;}
.x10_c00156{left:322.650000px;}
.x8_c00156{left:324.000000px;}
.x116_c00156{left:327.450000px;}
.x2b_c00156{left:331.950000px;}
.x4a_c00156{left:334.350000px;}
.x83_c00156{left:337.050000px;}
.x35_c00156{left:339.450000px;}
.x57_c00156{left:340.800000px;}
.x10d_c00156{left:342.300000px;}
.x1c_c00156{left:343.500000px;}
.x17_c00156{left:344.550000px;}
.x7a_c00156{left:346.800000px;}
.x73_c00156{left:348.150000px;}
.x2c_c00156{left:349.650000px;}
.x75_c00156{left:350.850000px;}
.x62_c00156{left:352.650000px;}
.x127_c00156{left:354.750000px;}
.x45_c00156{left:356.250000px;}
.x4b_c00156{left:359.850000px;}
.x33_c00156{left:362.100000px;}
.x1d_c00156{left:365.100000px;}
.x50_c00156{left:367.500000px;}
.x38_c00156{left:368.550000px;}
.x36_c00156{left:369.750000px;}
.x58_c00156{left:373.200000px;}
.x9_c00156{left:375.450000px;}
.x4c_c00156{left:378.150000px;}
.x63_c00156{left:380.400000px;}
.x112_c00156{left:383.700000px;}
.x24_c00156{left:385.950000px;}
.x6a_c00156{left:388.200000px;}
.x6e_c00156{left:393.600000px;}
.x81_c00156{left:395.100000px;}
.x42_c00156{left:396.750000px;}
.x39_c00156{left:398.100000px;}
.x18_c00156{left:399.300000px;}
.x54_c00156{left:401.700000px;}
.x84_c00156{left:403.350000px;}
.x25_c00156{left:409.350000px;}
.x10e_c00156{left:410.700000px;}
.x137_c00156{left:431.550000px;}
.x96_c00156{left:433.050000px;}
.xcf_c00156{left:434.550000px;}
.x120_c00156{left:436.650000px;}
.xc2_c00156{left:446.400000px;}
.x88_c00156{left:449.700000px;}
.x91_c00156{left:451.350000px;}
.xa5_c00156{left:453.000000px;}
.xce_c00156{left:460.200000px;}
.xc6_c00156{left:461.250000px;}
.x128_c00156{left:468.750000px;}
.x132_c00156{left:470.250000px;}
.xee_c00156{left:472.950000px;}
.x97_c00156{left:474.150000px;}
.x92_c00156{left:476.550000px;}
.x9e_c00156{left:478.050000px;}
.x131_c00156{left:480.450000px;}
.xdc_c00156{left:481.500000px;}
.xe0_c00156{left:483.900000px;}
.xfd_c00156{left:486.900000px;}
.xaf_c00156{left:488.700000px;}
.xb9_c00156{left:490.800000px;}
.xf3_c00156{left:492.900000px;}
.xa6_c00156{left:494.700000px;}
.x104_c00156{left:497.850000px;}
.x12b_c00156{left:499.650000px;}
.xe3_c00156{left:501.600000px;}
.x89_c00156{left:503.700000px;}
.xb0_c00156{left:505.200000px;}
.x93_c00156{left:507.150000px;}
.xa7_c00156{left:510.150000px;}
.xcc_c00156{left:512.100000px;}
.xc9_c00156{left:513.150000px;}
.x8a_c00156{left:517.350000px;}
.x98_c00156{left:520.950000px;}
.xe4_c00156{left:522.450000px;}
.xd9_c00156{left:523.650000px;}
.x12c_c00156{left:529.500000px;}
.x94_c00156{left:532.050000px;}
.xcd_c00156{left:536.250000px;}
.x99_c00156{left:537.450000px;}
.xa8_c00156{left:539.250000px;}
.x129_c00156{left:542.850000px;}
.x12e_c00156{left:544.350000px;}
.xb1_c00156{left:545.550000px;}
.xfa_c00156{left:547.050000px;}
.xeb_c00156{left:549.000000px;}
.x100_c00156{left:551.400000px;}
.x11b_c00156{left:552.750000px;}
.x133_c00156{left:554.100000px;}
.xd0_c00156{left:555.900000px;}
.x95_c00156{left:558.000000px;}
.xf0_c00156{left:559.200000px;}
.xba_c00156{left:560.700000px;}
.xb2_c00156{left:563.250000px;}
.xe7_c00156{left:564.900000px;}
.xd7_c00156{left:566.850000px;}
.xec_c00156{left:568.800000px;}
.x8b_c00156{left:569.850000px;}
.xa9_c00156{left:573.450000px;}
.xbb_c00156{left:578.700000px;}
.xfe_c00156{left:579.750000px;}
.xf1_c00156{left:582.300000px;}
.xdd_c00156{left:583.350000px;}
.xda_c00156{left:584.550000px;}
.x9a_c00156{left:588.900000px;}
.x9f_c00156{left:590.400000px;}
.x8c_c00156{left:591.750000px;}
.xf4_c00156{left:592.950000px;}
.xf6_c00156{left:594.900000px;}
.xe5_c00156{left:598.050000px;}
.xb3_c00156{left:599.550000px;}
.xbc_c00156{left:601.200000px;}
.xa0_c00156{left:603.750000px;}
.x11c_c00156{left:605.700000px;}
.xd1_c00156{left:607.350000px;}
.x135_c00156{left:610.500000px;}
.xef_c00156{left:612.000000px;}
.xde_c00156{left:613.200000px;}
.xf5_c00156{left:616.050000px;}
.xd3_c00156{left:617.850000px;}
.xaa_c00156{left:620.250000px;}
.x101_c00156{left:621.300000px;}
.xbd_c00156{left:622.800000px;}
.xfb_c00156{left:624.450000px;}
.x12f_c00156{left:626.100000px;}
.x8d_c00156{left:627.750000px;}
.xe8_c00156{left:629.700000px;}
.xa1_c00156{left:632.550000px;}
.xb4_c00156{left:633.750000px;}
.xab_c00156{left:636.450000px;}
.x8e_c00156{left:637.800000px;}
.xbe_c00156{left:639.300000px;}
.x9b_c00156{left:642.600000px;}
.xb5_c00156{left:644.850000px;}
.x121_c00156{left:645.900000px;}
.xd8_c00156{left:647.100000px;}
.xff_c00156{left:652.350000px;}
.xd4_c00156{left:654.150000px;}
.xe9_c00156{left:655.200000px;}
.x11d_c00156{left:658.650000px;}
.xe1_c00156{left:659.700000px;}
.x134_c00156{left:661.050000px;}
.xdf_c00156{left:662.850000px;}
.xb7_c00156{left:665.400000px;}
.xa2_c00156{left:666.450000px;}
.x136_c00156{left:668.850000px;}
.x117_c00156{left:670.050000px;}
.xd5_c00156{left:672.150000px;}
.xed_c00156{left:674.250000px;}
.xf7_c00156{left:676.200000px;}
.xea_c00156{left:677.550000px;}
.x8f_c00156{left:679.200000px;}
.xe6_c00156{left:682.650000px;}
.x130_c00156{left:683.700000px;}
.xd2_c00156{left:685.050000px;}
.xbf_c00156{left:688.200000px;}
.xdb_c00156{left:690.450000px;}
.xac_c00156{left:693.000000px;}
.x11e_c00156{left:694.350000px;}
.xca_c00156{left:695.400000px;}
.xc3_c00156{left:696.600000px;}
.xf9_c00156{left:701.850000px;}
.xf2_c00156{left:702.900000px;}
.xb6_c00156{left:704.250000px;}
.x12d_c00156{left:705.900000px;}
.x102_c00156{left:707.400000px;}
.x11f_c00156{left:712.050000px;}
.x12a_c00156{left:713.550000px;}
.xad_c00156{left:715.350000px;}
.xc0_c00156{left:719.100000px;}
.xf8_c00156{left:720.150000px;}
.xcb_c00156{left:723.900000px;}
.xc8_c00156{left:725.100000px;}
.xb8_c00156{left:726.600000px;}
.xc4_c00156{left:727.950000px;}
.xd6_c00156{left:730.050000px;}
.x9c_c00156{left:731.550000px;}
.xa3_c00156{left:733.800000px;}
.x90_c00156{left:739.350000px;}
.x2_c00156{left:740.850000px;}
.x9d_c00156{left:742.050000px;}
.xfc_c00156{left:744.300000px;}
.xae_c00156{left:745.650000px;}
.xe2_c00156{left:748.200000px;}
.xc5_c00156{left:749.550000px;}
.xc1_c00156{left:753.000000px;}
.xc7_c00156{left:754.950000px;}
.x118_c00156{left:757.200000px;}
.xa4_c00156{left:763.650000px;}
.x103_c00156{left:765.000000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws4_c00156{word-spacing:-3.100420pt;}
.ws5_c00156{word-spacing:-1.285987pt;}
.wsd_c00156{word-spacing:0.000000pt;}
.wsc_c00156{word-spacing:1.226054pt;}
.ws8_c00156{word-spacing:4.657821pt;}
.ws9_c00156{word-spacing:5.304582pt;}
.wsa_c00156{word-spacing:9.207259pt;}
.ws6_c00156{word-spacing:10.336029pt;}
.ws7_c00156{word-spacing:16.074164pt;}
.wsb_c00156{word-spacing:20.000000pt;}
.ws0_c00156{word-spacing:35.368421pt;}
.ws2_c00156{word-spacing:39.298246pt;}
.ws1_c00156{word-spacing:54.138861pt;}
.ws3_c00156{word-spacing:65.185185pt;}
.fs4_c00156{font-size:32.000000pt;}
.fs6_c00156{font-size:42.666667pt;}
.fs3_c00156{font-size:48.000000pt;}
.fs2_c00156{font-size:53.333333pt;}
.fs1_c00156{font-size:58.666667pt;}
.fs5_c00156{font-size:64.000000pt;}
.fs0_c00156{font-size:74.666667pt;}
.y0_c00156{bottom:0.000000pt;}
.y65_c00156{bottom:142.400000pt;}
.y64_c00156{bottom:170.533333pt;}
.y63_c00156{bottom:186.533333pt;}
.y62_c00156{bottom:190.000000pt;}
.y61_c00156{bottom:202.533333pt;}
.y60_c00156{bottom:205.866667pt;}
.y5f_c00156{bottom:221.866667pt;}
.y56_c00156{bottom:228.800000pt;}
.y5e_c00156{bottom:238.133333pt;}
.y55_c00156{bottom:244.800000pt;}
.y54_c00156{bottom:261.866667pt;}
.y53_c00156{bottom:277.866667pt;}
.y5d_c00156{bottom:283.866667pt;}
.y52_c00156{bottom:293.600000pt;}
.y51_c00156{bottom:309.600000pt;}
.y50_c00156{bottom:325.600000pt;}
.y4f_c00156{bottom:339.333333pt;}
.y5c_c00156{bottom:345.333333pt;}
.y4e_c00156{bottom:355.333333pt;}
.y5b_c00156{bottom:361.333333pt;}
.y4d_c00156{bottom:371.066667pt;}
.y5a_c00156{bottom:377.333333pt;}
.y4c_c00156{bottom:387.066667pt;}
.y59_c00156{bottom:397.066667pt;}
.y4b_c00156{bottom:402.800000pt;}
.y58_c00156{bottom:412.800000pt;}
.y4a_c00156{bottom:418.800000pt;}
.y57_c00156{bottom:429.066667pt;}
.y49_c00156{bottom:434.533333pt;}
.y48_c00156{bottom:450.266667pt;}
.y47_c00156{bottom:464.266667pt;}
.y24_c00156{bottom:465.866667pt;}
.y46_c00156{bottom:480.000000pt;}
.y23_c00156{bottom:481.866667pt;}
.y45_c00156{bottom:496.000000pt;}
.y22_c00156{bottom:500.800000pt;}
.y44_c00156{bottom:511.733333pt;}
.y21_c00156{bottom:516.800000pt;}
.y43_c00156{bottom:527.733333pt;}
.y20_c00156{bottom:533.066667pt;}
.y42_c00156{bottom:543.733333pt;}
.y1f_c00156{bottom:548.800000pt;}
.y41_c00156{bottom:559.466667pt;}
.y1e_c00156{bottom:564.800000pt;}
.y40_c00156{bottom:575.466667pt;}
.y1d_c00156{bottom:580.533333pt;}
.y3f_c00156{bottom:591.200000pt;}
.y1c_c00156{bottom:596.533333pt;}
.y3e_c00156{bottom:607.200000pt;}
.y1b_c00156{bottom:612.266667pt;}
.y3d_c00156{bottom:623.200000pt;}
.y1a_c00156{bottom:628.266667pt;}
.y3c_c00156{bottom:639.200000pt;}
.y19_c00156{bottom:644.000000pt;}
.y3b_c00156{bottom:655.200000pt;}
.y18_c00156{bottom:660.000000pt;}
.y3a_c00156{bottom:670.933333pt;}
.y17_c00156{bottom:675.733333pt;}
.y39_c00156{bottom:686.933333pt;}
.y16_c00156{bottom:691.733333pt;}
.y38_c00156{bottom:702.666667pt;}
.y15_c00156{bottom:707.733333pt;}
.y37_c00156{bottom:718.400000pt;}
.y14_c00156{bottom:723.466667pt;}
.y36_c00156{bottom:734.400000pt;}
.y13_c00156{bottom:739.200000pt;}
.y12_c00156{bottom:755.200000pt;}
.y35_c00156{bottom:760.533333pt;}
.y34_c00156{bottom:766.266667pt;}
.y11_c00156{bottom:773.466667pt;}
.y33_c00156{bottom:778.800000pt;}
.y10_c00156{bottom:787.600000pt;}
.y32_c00156{bottom:791.600000pt;}
.yf_c00156{bottom:800.400000pt;}
.y31_c00156{bottom:804.133333pt;}
.y30_c00156{bottom:816.933333pt;}
.ye_c00156{bottom:826.000000pt;}
.y2f_c00156{bottom:829.466667pt;}
.yd_c00156{bottom:838.133333pt;}
.y2e_c00156{bottom:842.533333pt;}
.yc_c00156{bottom:851.600000pt;}
.y2d_c00156{bottom:855.333333pt;}
.ya_c00156{bottom:862.666667pt;}
.yb_c00156{bottom:868.533333pt;}
.y2c_c00156{bottom:873.600000pt;}
.y9_c00156{bottom:877.733333pt;}
.y2b_c00156{bottom:889.333333pt;}
.y8_c00156{bottom:893.066667pt;}
.y2a_c00156{bottom:905.333333pt;}
.y7_c00156{bottom:909.333333pt;}
.y29_c00156{bottom:920.666667pt;}
.y6_c00156{bottom:925.333333pt;}
.y28_c00156{bottom:936.933333pt;}
.y5_c00156{bottom:941.066667pt;}
.y27_c00156{bottom:952.666667pt;}
.y4_c00156{bottom:957.066667pt;}
.y26_c00156{bottom:971.866667pt;}
.y3_c00156{bottom:972.800000pt;}
.y25_c00156{bottom:987.866667pt;}
.y2_c00156{bottom:989.466667pt;}
.y1_c00156{bottom:1011.866667pt;}
.h6_c00156{height:32.000000pt;}
.h8_c00156{height:42.666667pt;}
.h5_c00156{height:48.000000pt;}
.h4_c00156{height:53.333333pt;}
.h3_c00156{height:58.666667pt;}
.h7_c00156{height:64.000000pt;}
.h2_c00156{height:74.666667pt;}
.h1_c00156{height:1132.666667pt;}
.h0_c00156{height:1132.800049pt;}
.w1_c00156{width:847.333333pt;}
.w0_c00156{width:847.360027pt;}
.x0_c00156{left:0.000000pt;}
.x2d_c00156{left:66.266667pt;}
.x3_c00156{left:67.866667pt;}
.x122_c00156{left:69.466667pt;}
.x34_c00156{left:79.333333pt;}
.x1e_c00156{left:80.400000pt;}
.xa_c00156{left:81.866667pt;}
.x11_c00156{left:82.933333pt;}
.x69_c00156{left:83.866667pt;}
.x6f_c00156{left:84.933333pt;}
.x107_c00156{left:86.266667pt;}
.x37_c00156{left:92.800000pt;}
.x7b_c00156{left:100.000000pt;}
.x82_c00156{left:101.466667pt;}
.x64_c00156{left:102.933333pt;}
.x4_c00156{left:104.000000pt;}
.x5d_c00156{left:107.333333pt;}
.x119_c00156{left:109.200000pt;}
.x4d_c00156{left:110.266667pt;}
.x59_c00156{left:111.866667pt;}
.x105_c00156{left:114.000000pt;}
.x1f_c00156{left:116.533333pt;}
.x26_c00156{left:118.400000pt;}
.x76_c00156{left:119.733333pt;}
.x2e_c00156{left:122.266667pt;}
.x7e_c00156{left:123.333333pt;}
.x10b_c00156{left:125.600000pt;}
.x46_c00156{left:127.733333pt;}
.xb_c00156{left:128.933333pt;}
.x113_c00156{left:130.533333pt;}
.x70_c00156{left:131.600000pt;}
.x20_c00156{left:133.200000pt;}
.x19_c00156{left:134.133333pt;}
.x12_c00156{left:135.066667pt;}
.x10f_c00156{left:136.933333pt;}
.xc_c00156{left:138.533333pt;}
.x3f_c00156{left:140.533333pt;}
.x43_c00156{left:143.733333pt;}
.x106_c00156{left:145.066667pt;}
.x11a_c00156{left:146.000000pt;}
.x77_c00156{left:146.933333pt;}
.x125_c00156{left:148.133333pt;}
.x3c_c00156{left:149.200000pt;}
.x111_c00156{left:151.333333pt;}
.x5a_c00156{left:154.133333pt;}
.x85_c00156{left:155.866667pt;}
.x27_c00156{left:157.733333pt;}
.x3a_c00156{left:160.133333pt;}
.x47_c00156{left:161.333333pt;}
.x6b_c00156{left:162.266667pt;}
.x5_c00156{left:163.200000pt;}
.x4e_c00156{left:164.933333pt;}
.x123_c00156{left:168.133333pt;}
.xd_c00156{left:169.600000pt;}
.x65_c00156{left:172.666667pt;}
.x110_c00156{left:174.400000pt;}
.x1a_c00156{left:176.000000pt;}
.x71_c00156{left:177.066667pt;}
.x5e_c00156{left:178.133333pt;}
.x2f_c00156{left:179.200000pt;}
.x13_c00156{left:180.533333pt;}
.x6c_c00156{left:181.466667pt;}
.x68_c00156{left:182.666667pt;}
.x5b_c00156{left:184.800000pt;}
.x21_c00156{left:186.666667pt;}
.x28_c00156{left:190.666667pt;}
.x86_c00156{left:193.600000pt;}
.x5f_c00156{left:196.400000pt;}
.x78_c00156{left:198.133333pt;}
.x7f_c00156{left:199.200000pt;}
.x108_c00156{left:200.133333pt;}
.x7c_c00156{left:201.066667pt;}
.x66_c00156{left:204.666667pt;}
.x1b_c00156{left:207.066667pt;}
.x51_c00156{left:208.400000pt;}
.x6_c00156{left:210.533333pt;}
.x6d_c00156{left:214.400000pt;}
.x22_c00156{left:215.733333pt;}
.x30_c00156{left:216.933333pt;}
.x124_c00156{left:218.000000pt;}
.x29_c00156{left:219.200000pt;}
.x14_c00156{left:220.266667pt;}
.x74_c00156{left:223.466667pt;}
.x3b_c00156{left:224.400000pt;}
.x55_c00156{left:226.800000pt;}
.x3d_c00156{left:227.866667pt;}
.x48_c00156{left:229.066667pt;}
.x109_c00156{left:231.200000pt;}
.xe_c00156{left:233.333333pt;}
.x15_c00156{left:234.666667pt;}
.x31_c00156{left:235.866667pt;}
.x52_c00156{left:236.933333pt;}
.x10c_c00156{left:238.000000pt;}
.x4f_c00156{left:239.866667pt;}
.x60_c00156{left:241.466667pt;}
.x114_c00156{left:242.800000pt;}
.x126_c00156{left:243.733333pt;}
.x79_c00156{left:245.866667pt;}
.x56_c00156{left:247.600000pt;}
.x7d_c00156{left:249.066667pt;}
.x32_c00156{left:251.200000pt;}
.xf_c00156{left:252.533333pt;}
.x49_c00156{left:254.666667pt;}
.x23_c00156{left:257.333333pt;}
.x53_c00156{left:258.400000pt;}
.x61_c00156{left:259.733333pt;}
.x10a_c00156{left:260.666667pt;}
.x5c_c00156{left:264.133333pt;}
.x80_c00156{left:266.400000pt;}
.x87_c00156{left:267.866667pt;}
.x44_c00156{left:269.600000pt;}
.x40_c00156{left:271.466667pt;}
.x16_c00156{left:272.400000pt;}
.x115_c00156{left:273.466667pt;}
.x67_c00156{left:275.733333pt;}
.x2a_c00156{left:277.733333pt;}
.x7_c00156{left:280.000000pt;}
.x72_c00156{left:281.600000pt;}
.x1_c00156{left:282.533333pt;}
.x41_c00156{left:284.533333pt;}
.x3e_c00156{left:285.466667pt;}
.x10_c00156{left:286.800000pt;}
.x8_c00156{left:288.000000pt;}
.x116_c00156{left:291.066667pt;}
.x2b_c00156{left:295.066667pt;}
.x4a_c00156{left:297.200000pt;}
.x83_c00156{left:299.600000pt;}
.x35_c00156{left:301.733333pt;}
.x57_c00156{left:302.933333pt;}
.x10d_c00156{left:304.266667pt;}
.x1c_c00156{left:305.333333pt;}
.x17_c00156{left:306.266667pt;}
.x7a_c00156{left:308.266667pt;}
.x73_c00156{left:309.466667pt;}
.x2c_c00156{left:310.800000pt;}
.x75_c00156{left:311.866667pt;}
.x62_c00156{left:313.466667pt;}
.x127_c00156{left:315.333333pt;}
.x45_c00156{left:316.666667pt;}
.x4b_c00156{left:319.866667pt;}
.x33_c00156{left:321.866667pt;}
.x1d_c00156{left:324.533333pt;}
.x50_c00156{left:326.666667pt;}
.x38_c00156{left:327.600000pt;}
.x36_c00156{left:328.666667pt;}
.x58_c00156{left:331.733333pt;}
.x9_c00156{left:333.733333pt;}
.x4c_c00156{left:336.133333pt;}
.x63_c00156{left:338.133333pt;}
.x112_c00156{left:341.066667pt;}
.x24_c00156{left:343.066667pt;}
.x6a_c00156{left:345.066667pt;}
.x6e_c00156{left:349.866667pt;}
.x81_c00156{left:351.200000pt;}
.x42_c00156{left:352.666667pt;}
.x39_c00156{left:353.866667pt;}
.x18_c00156{left:354.933333pt;}
.x54_c00156{left:357.066667pt;}
.x84_c00156{left:358.533333pt;}
.x25_c00156{left:363.866667pt;}
.x10e_c00156{left:365.066667pt;}
.x137_c00156{left:383.600000pt;}
.x96_c00156{left:384.933333pt;}
.xcf_c00156{left:386.266667pt;}
.x120_c00156{left:388.133333pt;}
.xc2_c00156{left:396.800000pt;}
.x88_c00156{left:399.733333pt;}
.x91_c00156{left:401.200000pt;}
.xa5_c00156{left:402.666667pt;}
.xce_c00156{left:409.066667pt;}
.xc6_c00156{left:410.000000pt;}
.x128_c00156{left:416.666667pt;}
.x132_c00156{left:418.000000pt;}
.xee_c00156{left:420.400000pt;}
.x97_c00156{left:421.466667pt;}
.x92_c00156{left:423.600000pt;}
.x9e_c00156{left:424.933333pt;}
.x131_c00156{left:427.066667pt;}
.xdc_c00156{left:428.000000pt;}
.xe0_c00156{left:430.133333pt;}
.xfd_c00156{left:432.800000pt;}
.xaf_c00156{left:434.400000pt;}
.xb9_c00156{left:436.266667pt;}
.xf3_c00156{left:438.133333pt;}
.xa6_c00156{left:439.733333pt;}
.x104_c00156{left:442.533333pt;}
.x12b_c00156{left:444.133333pt;}
.xe3_c00156{left:445.866667pt;}
.x89_c00156{left:447.733333pt;}
.xb0_c00156{left:449.066667pt;}
.x93_c00156{left:450.800000pt;}
.xa7_c00156{left:453.466667pt;}
.xcc_c00156{left:455.200000pt;}
.xc9_c00156{left:456.133333pt;}
.x8a_c00156{left:459.866667pt;}
.x98_c00156{left:463.066667pt;}
.xe4_c00156{left:464.400000pt;}
.xd9_c00156{left:465.466667pt;}
.x12c_c00156{left:470.666667pt;}
.x94_c00156{left:472.933333pt;}
.xcd_c00156{left:476.666667pt;}
.x99_c00156{left:477.733333pt;}
.xa8_c00156{left:479.333333pt;}
.x129_c00156{left:482.533333pt;}
.x12e_c00156{left:483.866667pt;}
.xb1_c00156{left:484.933333pt;}
.xfa_c00156{left:486.266667pt;}
.xeb_c00156{left:488.000000pt;}
.x100_c00156{left:490.133333pt;}
.x11b_c00156{left:491.333333pt;}
.x133_c00156{left:492.533333pt;}
.xd0_c00156{left:494.133333pt;}
.x95_c00156{left:496.000000pt;}
.xf0_c00156{left:497.066667pt;}
.xba_c00156{left:498.400000pt;}
.xb2_c00156{left:500.666667pt;}
.xe7_c00156{left:502.133333pt;}
.xd7_c00156{left:503.866667pt;}
.xec_c00156{left:505.600000pt;}
.x8b_c00156{left:506.533333pt;}
.xa9_c00156{left:509.733333pt;}
.xbb_c00156{left:514.400000pt;}
.xfe_c00156{left:515.333333pt;}
.xf1_c00156{left:517.600000pt;}
.xdd_c00156{left:518.533333pt;}
.xda_c00156{left:519.600000pt;}
.x9a_c00156{left:523.466667pt;}
.x9f_c00156{left:524.800000pt;}
.x8c_c00156{left:526.000000pt;}
.xf4_c00156{left:527.066667pt;}
.xf6_c00156{left:528.800000pt;}
.xe5_c00156{left:531.600000pt;}
.xb3_c00156{left:532.933333pt;}
.xbc_c00156{left:534.400000pt;}
.xa0_c00156{left:536.666667pt;}
.x11c_c00156{left:538.400000pt;}
.xd1_c00156{left:539.866667pt;}
.x135_c00156{left:542.666667pt;}
.xef_c00156{left:544.000000pt;}
.xde_c00156{left:545.066667pt;}
.xf5_c00156{left:547.600000pt;}
.xd3_c00156{left:549.200000pt;}
.xaa_c00156{left:551.333333pt;}
.x101_c00156{left:552.266667pt;}
.xbd_c00156{left:553.600000pt;}
.xfb_c00156{left:555.066667pt;}
.x12f_c00156{left:556.533333pt;}
.x8d_c00156{left:558.000000pt;}
.xe8_c00156{left:559.733333pt;}
.xa1_c00156{left:562.266667pt;}
.xb4_c00156{left:563.333333pt;}
.xab_c00156{left:565.733333pt;}
.x8e_c00156{left:566.933333pt;}
.xbe_c00156{left:568.266667pt;}
.x9b_c00156{left:571.200000pt;}
.xb5_c00156{left:573.200000pt;}
.x121_c00156{left:574.133333pt;}
.xd8_c00156{left:575.200000pt;}
.xff_c00156{left:579.866667pt;}
.xd4_c00156{left:581.466667pt;}
.xe9_c00156{left:582.400000pt;}
.x11d_c00156{left:585.466667pt;}
.xe1_c00156{left:586.400000pt;}
.x134_c00156{left:587.600000pt;}
.xdf_c00156{left:589.200000pt;}
.xb7_c00156{left:591.466667pt;}
.xa2_c00156{left:592.400000pt;}
.x136_c00156{left:594.533333pt;}
.x117_c00156{left:595.600000pt;}
.xd5_c00156{left:597.466667pt;}
.xed_c00156{left:599.333333pt;}
.xf7_c00156{left:601.066667pt;}
.xea_c00156{left:602.266667pt;}
.x8f_c00156{left:603.733333pt;}
.xe6_c00156{left:606.800000pt;}
.x130_c00156{left:607.733333pt;}
.xd2_c00156{left:608.933333pt;}
.xbf_c00156{left:611.733333pt;}
.xdb_c00156{left:613.733333pt;}
.xac_c00156{left:616.000000pt;}
.x11e_c00156{left:617.200000pt;}
.xca_c00156{left:618.133333pt;}
.xc3_c00156{left:619.200000pt;}
.xf9_c00156{left:623.866667pt;}
.xf2_c00156{left:624.800000pt;}
.xb6_c00156{left:626.000000pt;}
.x12d_c00156{left:627.466667pt;}
.x102_c00156{left:628.800000pt;}
.x11f_c00156{left:632.933333pt;}
.x12a_c00156{left:634.266667pt;}
.xad_c00156{left:635.866667pt;}
.xc0_c00156{left:639.200000pt;}
.xf8_c00156{left:640.133333pt;}
.xcb_c00156{left:643.466667pt;}
.xc8_c00156{left:644.533333pt;}
.xb8_c00156{left:645.866667pt;}
.xc4_c00156{left:647.066667pt;}
.xd6_c00156{left:648.933333pt;}
.x9c_c00156{left:650.266667pt;}
.xa3_c00156{left:652.266667pt;}
.x90_c00156{left:657.200000pt;}
.x2_c00156{left:658.533333pt;}
.x9d_c00156{left:659.600000pt;}
.xfc_c00156{left:661.600000pt;}
.xae_c00156{left:662.800000pt;}
.xe2_c00156{left:665.066667pt;}
.xc5_c00156{left:666.266667pt;}
.xc1_c00156{left:669.333333pt;}
.xc7_c00156{left:671.066667pt;}
.x118_c00156{left:673.066667pt;}
.xa4_c00156{left:678.800000pt;}
.x103_c00156{left:680.000000pt;}
}





/* 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_c00157 {
    display:none;
  }
  .loading-indicator_c00157.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00157 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_c00157 { 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_c00157" -> "#page-container .classname_c00157")
 */
.pf_c00157 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00157 { /* 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_c00157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00157 { /* 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_c00157 { /* 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_c00157 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00157 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00157 {overflow:visible;}
  }
}
.c_c00157 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00157 { /* 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_c00157:after { /* webkit #35443 */
  content: '';
}
.t_c00157:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00157 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 */
}
.__c00157 { /* 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_c00157 { /* info for Javascript */
  display:none;
}
.l_c00157 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00157 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00157 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00157: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_c00157 {
    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_c00157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00157.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_c00157 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00157;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.000000;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;}
.mae_c00157{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m30_c00157{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m57_c00157{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00157{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mad_c00157{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m54_c00157{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m32_c00157{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00157{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m56_c00157{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m58_c00157{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m115_c00157{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00157{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m55_c00157{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00157{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00157{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m51_c00157{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md0_c00157{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.maf_c00157{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m89_c00157{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m2_c00157{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00157{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00157{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mb_c00157{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00157{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00157{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.me0_c00157{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m20_c00157{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00157{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m26_c00157{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00157{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m21_c00157{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m53_c00157{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m10_c00157{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00157{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00157{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00157{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00157{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mf_c00157{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.me2_c00157{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00157{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m95_c00157{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m94_c00157{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00157{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.maa_c00157{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m37_c00157{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00157{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m110_c00157{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m25_c00157{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00157{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00157{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00157{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00157{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00157{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m70_c00157{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m72_c00157{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00157{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.mc_c00157{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m31_c00157{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00157{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.med_c00157{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m111_c00157{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m109_c00157{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mee_c00157{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00157{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00157{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md5_c00157{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00157{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m45_c00157{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00157{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.md_c00157{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00157{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m105_c00157{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00157{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00157{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00157{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00157{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00157{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00157{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00157{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00157{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m19_c00157{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m98_c00157{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m97_c00157{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00157{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00157{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00157{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00157{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m29_c00157{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mda_c00157{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9_c00157{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00157{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.meb_c00157{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00157{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mba_c00157{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m18_c00157{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m77_c00157{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me_c00157{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00157{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00157{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00157{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mac_c00157{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00157{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m46_c00157{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m103_c00157{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.md3_c00157{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00157{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00157{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00157{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m100_c00157{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m7_c00157{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me7_c00157{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00157{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m79_c00157{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m67_c00157{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00157{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00157{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m117_c00157{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00157{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m85_c00157{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00157{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00157{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00157{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5_c00157{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00157{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m65_c00157{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m93_c00157{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m15_c00157{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00157{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m47_c00157{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m68_c00157{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m24_c00157{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00157{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m96_c00157{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m6_c00157{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00157{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00157{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m62_c00157{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mef_c00157{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00157{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m14_c00157{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00157{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00157{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00157{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00157{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m80_c00157{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m42_c00157{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00157{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00157{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mec_c00157{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m64_c00157{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m33_c00157{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma_c00157{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00157{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m36_c00157{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00157{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m52_c00157{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00157{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m60_c00157{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00157{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00157{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00157{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00157{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m59_c00157{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mff_c00157{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00157{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m63_c00157{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m40_c00157{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m104_c00157{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md8_c00157{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m69_c00157{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m39_c00157{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00157{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md6_c00157{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mca_c00157{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m106_c00157{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me8_c00157{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m22_c00157{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m83_c00157{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mde_c00157{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m75_c00157{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00157{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md2_c00157{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me6_c00157{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m11_c00157{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md9_c00157{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me5_c00157{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m78_c00157{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me3_c00157{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8_c00157{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m76_c00157{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00157{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m34_c00157{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00157{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m101_c00157{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m113_c00157{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m16_c00157{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00157{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m38_c00157{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m99_c00157{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m12_c00157{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m61_c00157{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.me1_c00157{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00157{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m23_c00157{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m41_c00157{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00157{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m44_c00157{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00157{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m66_c00157{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m50_c00157{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00157{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m87_c00157{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00157{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m74_c00157{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00157{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mea_c00157{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00157{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m108_c00157{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00157{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me9_c00157{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00157{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00157{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00157{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m88_c00157{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m48_c00157{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00157{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m114_c00157{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m28_c00157{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md4_c00157{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mab_c00157{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m116_c00157{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00157{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00157{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00157{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00157{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m107_c00157{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m71_c00157{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mce_c00157{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m43_c00157{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m86_c00157{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00157{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m13_c00157{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00157{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00157{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00157{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m73_c00157{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m84_c00157{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me4_c00157{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m82_c00157{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m49_c00157{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00157{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00157{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m102_c00157{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m27_c00157{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m90_c00157{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m81_c00157{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00157{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00157{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00157{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00157{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.md1_c00157{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00157{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00157{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00157{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m92_c00157{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.md7_c00157{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m91_c00157{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00157{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00157{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00157{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00157{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00157{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00157{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00157{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m17_c00157{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m112_c00157{transform:matrix(0.666500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666500,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls1_c00157{letter-spacing:0.000000px;}
.ls0_c00157{letter-spacing:55.714286px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{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__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00157{word-spacing:-85.714286px;}
.ws1_c00157{word-spacing:-9.545455px;}
.ws9_c00157{word-spacing:-4.615385px;}
.ws10_c00157{word-spacing:-3.194444px;}
.wsd_c00157{word-spacing:-1.430318px;}
.ws11_c00157{word-spacing:0.000000px;}
.wsc_c00157{word-spacing:0.558912px;}
.ws0_c00157{word-spacing:1.323024px;}
.ws3_c00157{word-spacing:3.515924px;}
.ws2_c00157{word-spacing:10.000000px;}
.ws6_c00157{word-spacing:13.083095px;}
.ws8_c00157{word-spacing:13.706199px;}
.wsb_c00157{word-spacing:22.142857px;}
.ws5_c00157{word-spacing:24.491803px;}
.ws4_c00157{word-spacing:25.714286px;}
.wsf_c00157{word-spacing:40.000000px;}
.ws7_c00157{word-spacing:59.764192px;}
.wse_c00157{word-spacing:109.350230px;}
._2_c00157{margin-left:-55.714286px;}
._1_c00157{width:52.142857px;}
._3_c00157{width:55.714286px;}
._4_c00157{width:74.166667px;}
._0_c00157{width:750.357143px;}
.fc0_c00157{color:transparent;}
.fs7_c00157{font-size:36.000000px;}
.fs2_c00157{font-size:42.000000px;}
.fs6_c00157{font-size:48.000000px;}
.fs5_c00157{font-size:54.000000px;}
.fs4_c00157{font-size:60.000000px;}
.fs3_c00157{font-size:66.000000px;}
.fs0_c00157{font-size:72.000000px;}
.fs1_c00157{font-size:84.000000px;}
.y0_c00157{bottom:0.000000px;}
.y6c_c00157{bottom:187.950000px;}
.y3_c00157{bottom:189.750000px;}
.y37_c00157{bottom:190.500000px;}
.y6b_c00157{bottom:202.650000px;}
.y36_c00157{bottom:208.500000px;}
.y6a_c00157{bottom:217.050000px;}
.y35_c00157{bottom:226.800000px;}
.y69_c00157{bottom:231.450000px;}
.y34_c00157{bottom:244.500000px;}
.y68_c00157{bottom:245.850000px;}
.y67_c00157{bottom:260.250000px;}
.y33_c00157{bottom:265.350000px;}
.y66_c00157{bottom:274.650000px;}
.y32_c00157{bottom:278.700000px;}
.y65_c00157{bottom:289.500000px;}
.y31_c00157{bottom:293.400000px;}
.y64_c00157{bottom:306.000000px;}
.y30_c00157{bottom:309.300000px;}
.y63_c00157{bottom:321.900000px;}
.y2f_c00157{bottom:326.550000px;}
.y62_c00157{bottom:339.900000px;}
.y2e_c00157{bottom:344.550000px;}
.y61_c00157{bottom:357.900000px;}
.y2d_c00157{bottom:366.000000px;}
.y60_c00157{bottom:379.800000px;}
.y2c_c00157{bottom:383.700000px;}
.y5f_c00157{bottom:398.850000px;}
.y2b_c00157{bottom:401.700000px;}
.y5e_c00157{bottom:415.800000px;}
.y2a_c00157{bottom:419.400000px;}
.y5d_c00157{bottom:433.800000px;}
.y29_c00157{bottom:437.400000px;}
.y5c_c00157{bottom:451.800000px;}
.y28_c00157{bottom:459.000000px;}
.y5b_c00157{bottom:469.050000px;}
.y27_c00157{bottom:477.000000px;}
.y5a_c00157{bottom:487.050000px;}
.y26_c00157{bottom:501.900000px;}
.y58_c00157{bottom:509.100000px;}
.y25_c00157{bottom:519.900000px;}
.y57_c00157{bottom:527.100000px;}
.y24_c00157{bottom:537.600000px;}
.y56_c00157{bottom:549.300000px;}
.y23_c00157{bottom:555.900000px;}
.y55_c00157{bottom:567.300000px;}
.y22_c00157{bottom:577.500000px;}
.y54_c00157{bottom:589.650000px;}
.y21_c00157{bottom:599.850000px;}
.y53_c00157{bottom:612.000000px;}
.y20_c00157{bottom:617.850000px;}
.y52_c00157{bottom:630.000000px;}
.y1f_c00157{bottom:635.550000px;}
.y51_c00157{bottom:648.000000px;}
.y1e_c00157{bottom:653.550000px;}
.y50_c00157{bottom:665.700000px;}
.y1d_c00157{bottom:671.250000px;}
.y4f_c00157{bottom:683.700000px;}
.y1c_c00157{bottom:689.250000px;}
.y4e_c00157{bottom:701.700000px;}
.y1b_c00157{bottom:707.250000px;}
.y4d_c00157{bottom:720.000000px;}
.y1a_c00157{bottom:725.250000px;}
.y4c_c00157{bottom:737.700000px;}
.y19_c00157{bottom:742.950000px;}
.y4b_c00157{bottom:755.700000px;}
.y18_c00157{bottom:760.650000px;}
.y4a_c00157{bottom:775.800000px;}
.y17_c00157{bottom:778.650000px;}
.y49_c00157{bottom:790.200000px;}
.y59_c00157{bottom:791.700000px;}
.y16_c00157{bottom:796.650000px;}
.y48_c00157{bottom:807.150000px;}
.y15_c00157{bottom:814.350000px;}
.y47_c00157{bottom:825.150000px;}
.y14_c00157{bottom:832.350000px;}
.y46_c00157{bottom:844.200000px;}
.y13_c00157{bottom:852.900000px;}
.y45_c00157{bottom:861.900000px;}
.y12_c00157{bottom:866.550000px;}
.y44_c00157{bottom:879.900000px;}
.y11_c00157{bottom:882.000000px;}
.y10_c00157{bottom:897.450000px;}
.y43_c00157{bottom:901.500000px;}
.yf_c00157{bottom:915.300000px;}
.y42_c00157{bottom:919.500000px;}
.ye_c00157{bottom:933.300000px;}
.y41_c00157{bottom:937.800000px;}
.yd_c00157{bottom:951.300000px;}
.y40_c00157{bottom:959.400000px;}
.yc_c00157{bottom:969.000000px;}
.y3f_c00157{bottom:977.700000px;}
.yb_c00157{bottom:986.700000px;}
.y3e_c00157{bottom:999.300000px;}
.ya_c00157{bottom:1004.400000px;}
.y3d_c00157{bottom:1021.650000px;}
.y9_c00157{bottom:1026.600000px;}
.y3c_c00157{bottom:1044.300000px;}
.y8_c00157{bottom:1044.600000px;}
.y3b_c00157{bottom:1062.000000px;}
.y7_c00157{bottom:1062.300000px;}
.y3a_c00157{bottom:1080.000000px;}
.y6_c00157{bottom:1080.300000px;}
.y39_c00157{bottom:1098.000000px;}
.y5_c00157{bottom:1098.300000px;}
.y38_c00157{bottom:1115.700000px;}
.y4_c00157{bottom:1116.000000px;}
.y2_c00157{bottom:1143.000000px;}
.y1_c00157{bottom:1143.300000px;}
.h9_c00157{height:36.000000px;}
.h4_c00157{height:42.000000px;}
.h8_c00157{height:48.000000px;}
.h7_c00157{height:54.000000px;}
.h6_c00157{height:60.000000px;}
.h5_c00157{height:66.000000px;}
.h2_c00157{height:72.000000px;}
.h3_c00157{height:84.000000px;}
.h1_c00157{height:1272.000000px;}
.h0_c00157{height:1272.239960px;}
.w1_c00157{width:953.250000px;}
.w0_c00157{width:953.280030px;}
.x0_c00157{left:0.000000px;}
.x3_c00157{left:153.000000px;}
.x8b_c00157{left:168.150000px;}
.x4c_c00157{left:170.250000px;}
.x26_c00157{left:172.500000px;}
.x1_c00157{left:174.600000px;}
.x62_c00157{left:181.950000px;}
.x54_c00157{left:184.050000px;}
.x3a_c00157{left:186.000000px;}
.x2e_c00157{left:188.100000px;}
.x22_c00157{left:189.300000px;}
.x4_c00157{left:190.800000px;}
.x59_c00157{left:198.750000px;}
.x7f_c00157{left:203.550000px;}
.x42_c00157{left:207.900000px;}
.x48_c00157{left:208.950000px;}
.x88_c00157{left:210.150000px;}
.x94_c00157{left:212.400000px;}
.x25_c00157{left:213.450000px;}
.x27_c00157{left:214.650000px;}
.x75_c00157{left:217.800000px;}
.x35_c00157{left:220.950000px;}
.x1a_c00157{left:222.600000px;}
.x2f_c00157{left:224.100000px;}
.x55_c00157{left:226.500000px;}
.x3b_c00157{left:228.150000px;}
.x83_c00157{left:230.550000px;}
.x14_c00157{left:231.900000px;}
.x97_c00157{left:234.300000px;}
.x5_c00157{left:236.100000px;}
.x63_c00157{left:240.300000px;}
.x6b_c00157{left:241.650000px;}
.xa3_c00157{left:245.250000px;}
.x86_c00157{left:248.550000px;}
.x76_c00157{left:251.250000px;}
.x15_c00157{left:252.450000px;}
.xf_c00157{left:253.950000px;}
.x6_c00157{left:256.200000px;}
.x8d_c00157{left:258.000000px;}
.x6e_c00157{left:259.950000px;}
.xa0_c00157{left:261.000000px;}
.x89_c00157{left:262.050000px;}
.x3c_c00157{left:264.450000px;}
.x72_c00157{left:266.400000px;}
.x1b_c00157{left:268.350000px;}
.x7c_c00157{left:270.150000px;}
.x64_c00157{left:271.650000px;}
.xa4_c00157{left:273.000000px;}
.x9a_c00157{left:276.300000px;}
.x98_c00157{left:277.950000px;}
.x28_c00157{left:279.150000px;}
.x49_c00157{left:282.750000px;}
.x87_c00157{left:284.250000px;}
.x80_c00157{left:285.750000px;}
.x43_c00157{left:287.100000px;}
.x5a_c00157{left:288.150000px;}
.x65_c00157{left:290.400000px;}
.x3d_c00157{left:291.450000px;}
.x30_c00157{left:297.450000px;}
.x4d_c00157{left:300.450000px;}
.x81_c00157{left:302.250000px;}
.x79_c00157{left:303.300000px;}
.x44_c00157{left:304.350000px;}
.x7_c00157{left:305.850000px;}
.x8e_c00157{left:307.350000px;}
.x3e_c00157{left:309.150000px;}
.x4a_c00157{left:313.050000px;}
.x9b_c00157{left:314.100000px;}
.x7d_c00157{left:315.450000px;}
.x6c_c00157{left:318.300000px;}
.x84_c00157{left:319.800000px;}
.x91_c00157{left:321.450000px;}
.x31_c00157{left:323.400000px;}
.x73_c00157{left:325.500000px;}
.x4e_c00157{left:326.700000px;}
.x16_c00157{left:328.350000px;}
.x66_c00157{left:330.000000px;}
.x10_c00157{left:331.050000px;}
.x8_c00157{left:332.550000px;}
.x29_c00157{left:334.650000px;}
.x85_c00157{left:336.300000px;}
.x45_c00157{left:338.850000px;}
.x96_c00157{left:341.250000px;}
.x17_c00157{left:342.450000px;}
.x1c_c00157{left:343.650000px;}
.x4b_c00157{left:344.700000px;}
.x9c_c00157{left:346.650000px;}
.x23_c00157{left:348.300000px;}
.x4f_c00157{left:350.100000px;}
.x61_c00157{left:352.800000px;}
.x82_c00157{left:354.000000px;}
.x5b_c00157{left:356.250000px;}
.x69_c00157{left:357.300000px;}
.x8a_c00157{left:358.650000px;}
.x3f_c00157{left:361.350000px;}
.x5c_c00157{left:363.450000px;}
.x46_c00157{left:365.550000px;}
.x32_c00157{left:366.900000px;}
.x9d_c00157{left:367.950000px;}
.x6f_c00157{left:369.000000px;}
.x5d_c00157{left:370.650000px;}
.x7e_c00157{left:374.850000px;}
.x2a_c00157{left:376.050000px;}
.x33_c00157{left:378.000000px;}
.x1d_c00157{left:379.350000px;}
.x50_c00157{left:381.450000px;}
.x18_c00157{left:383.550000px;}
.x2b_c00157{left:385.050000px;}
.x9_c00157{left:387.600000px;}
.x40_c00157{left:389.400000px;}
.x11_c00157{left:390.750000px;}
.x5e_c00157{left:391.950000px;}
.x67_c00157{left:394.050000px;}
.x1e_c00157{left:396.300000px;}
.x92_c00157{left:397.500000px;}
.x5f_c00157{left:399.450000px;}
.x77_c00157{left:401.700000px;}
.x51_c00157{left:404.100000px;}
.x12_c00157{left:405.450000px;}
.x60_c00157{left:406.650000px;}
.xa_c00157{left:407.700000px;}
.x36_c00157{left:409.650000px;}
.x9e_c00157{left:410.850000px;}
.x70_c00157{left:412.200000px;}
.x56_c00157{left:413.700000px;}
.x8f_c00157{left:415.350000px;}
.x99_c00157{left:417.000000px;}
.x2c_c00157{left:418.950000px;}
.x2_c00157{left:420.900000px;}
.x78_c00157{left:423.600000px;}
.x52_c00157{left:424.950000px;}
.x37_c00157{left:426.600000px;}
.x1f_c00157{left:429.750000px;}
.x57_c00157{left:432.750000px;}
.x47_c00157{left:434.400000px;}
.xa1_c00157{left:438.150000px;}
.x71_c00157{left:441.000000px;}
.x90_c00157{left:442.050000px;}
.x68_c00157{left:443.700000px;}
.x6a_c00157{left:444.750000px;}
.xa5_c00157{left:448.200000px;}
.x38_c00157{left:449.250000px;}
.xb_c00157{left:451.200000px;}
.x7a_c00157{left:452.850000px;}
.xa2_c00157{left:454.050000px;}
.x13_c00157{left:455.850000px;}
.x93_c00157{left:458.700000px;}
.x9f_c00157{left:459.750000px;}
.x41_c00157{left:462.750000px;}
.x20_c00157{left:464.700000px;}
.x2d_c00157{left:467.850000px;}
.xc_c00157{left:469.200000px;}
.x7b_c00157{left:470.850000px;}
.x34_c00157{left:471.900000px;}
.xd_c00157{left:477.150000px;}
.x39_c00157{left:479.100000px;}
.x19_c00157{left:480.750000px;}
.x74_c00157{left:482.100000px;}
.x6d_c00157{left:484.650000px;}
.x21_c00157{left:486.000000px;}
.x24_c00157{left:487.650000px;}
.x53_c00157{left:489.300000px;}
.x58_c00157{left:491.100000px;}
.xe_c00157{left:495.900000px;}
.x8c_c00157{left:497.400000px;}
.x95_c00157{left:499.800000px;}
.x149_c00157{left:513.300000px;}
.x148_c00157{left:520.650000px;}
.x132_c00157{left:522.000000px;}
.x117_c00157{left:523.500000px;}
.xea_c00157{left:524.550000px;}
.xdc_c00157{left:525.900000px;}
.xc8_c00157{left:527.400000px;}
.x13e_c00157{left:534.900000px;}
.x139_c00157{left:537.000000px;}
.xf3_c00157{left:538.050000px;}
.x123_c00157{left:540.000000px;}
.xfe_c00157{left:541.350000px;}
.xd1_c00157{left:543.300000px;}
.xa6_c00157{left:546.150000px;}
.x140_c00157{left:549.600000px;}
.xf6_c00157{left:553.200000px;}
.x11e_c00157{left:559.500000px;}
.xae_c00157{left:562.800000px;}
.x138_c00157{left:565.800000px;}
.x11a_c00157{left:567.000000px;}
.xcb_c00157{left:568.350000px;}
.x126_c00157{left:570.900000px;}
.x10e_c00157{left:572.100000px;}
.xa7_c00157{left:573.150000px;}
.x115_c00157{left:574.350000px;}
.xbd_c00157{left:576.000000px;}
.xda_c00157{left:578.100000px;}
.xb6_c00157{left:580.950000px;}
.xeb_c00157{left:582.450000px;}
.x107_c00157{left:584.850000px;}
.x14a_c00157{left:586.650000px;}
.xc9_c00157{left:587.850000px;}
.xc3_c00157{left:591.600000px;}
.xca_c00157{left:594.300000px;}
.xf7_c00157{left:596.700000px;}
.xf4_c00157{left:598.200000px;}
.xcc_c00157{left:600.750000px;}
.x111_c00157{left:602.700000px;}
.xaf_c00157{left:604.200000px;}
.xf5_c00157{left:605.700000px;}
.x12e_c00157{left:607.650000px;}
.xa8_c00157{left:608.850000px;}
.xd2_c00157{left:612.750000px;}
.x143_c00157{left:615.900000px;}
.xe5_c00157{left:617.400000px;}
.x133_c00157{left:618.600000px;}
.xbe_c00157{left:619.950000px;}
.xa9_c00157{left:621.450000px;}
.xdf_c00157{left:622.650000px;}
.x118_c00157{left:626.550000px;}
.x10d_c00157{left:628.650000px;}
.x127_c00157{left:631.800000px;}
.xdb_c00157{left:634.200000px;}
.x10f_c00157{left:636.150000px;}
.x103_c00157{left:638.100000px;}
.x13a_c00157{left:639.150000px;}
.x144_c00157{left:640.350000px;}
.x112_c00157{left:641.550000px;}
.x141_c00157{left:642.900000px;}
.xec_c00157{left:644.400000px;}
.xbf_c00157{left:646.650000px;}
.x11f_c00157{left:649.200000px;}
.x134_c00157{left:650.700000px;}
.xaa_c00157{left:653.100000px;}
.x124_c00157{left:655.950000px;}
.xb7_c00157{left:657.300000px;}
.x108_c00157{left:658.950000px;}
.xb0_c00157{left:661.500000px;}
.xed_c00157{left:663.150000px;}
.xe6_c00157{left:664.200000px;}
.x116_c00157{left:668.400000px;}
.xe0_c00157{left:670.500000px;}
.x120_c00157{left:677.250000px;}
.xc4_c00157{left:679.500000px;}
.xb8_c00157{left:681.750000px;}
.x110_c00157{left:684.450000px;}
.xd3_c00157{left:685.800000px;}
.xb1_c00157{left:687.000000px;}
.x104_c00157{left:688.500000px;}
.x129_c00157{left:689.850000px;}
.xe1_c00157{left:695.700000px;}
.xab_c00157{left:697.800000px;}
.xfb_c00157{left:700.200000px;}
.x113_c00157{left:702.150000px;}
.xc5_c00157{left:703.950000px;}
.x121_c00157{left:705.750000px;}
.xdd_c00157{left:708.450000px;}
.x12a_c00157{left:712.200000px;}
.xee_c00157{left:713.250000px;}
.xe2_c00157{left:714.450000px;}
.xe7_c00157{left:716.700000px;}
.xcd_c00157{left:718.050000px;}
.x125_c00157{left:720.300000px;}
.xfc_c00157{left:722.100000px;}
.x109_c00157{left:723.750000px;}
.xc6_c00157{left:725.850000px;}
.xb9_c00157{left:727.500000px;}
.x12f_c00157{left:729.000000px;}
.xc0_c00157{left:730.200000px;}
.x12b_c00157{left:732.750000px;}
.xd6_c00157{left:733.950000px;}
.x105_c00157{left:735.600000px;}
.xff_c00157{left:737.550000px;}
.xfd_c00157{left:739.050000px;}
.xce_c00157{left:743.550000px;}
.xef_c00157{left:744.600000px;}
.xb2_c00157{left:745.650000px;}
.xac_c00157{left:748.500000px;}
.x13f_c00157{left:750.600000px;}
.xe3_c00157{left:753.000000px;}
.x119_c00157{left:756.150000px;}
.x145_c00157{left:757.800000px;}
.x13b_c00157{left:759.600000px;}
.xd4_c00157{left:760.650000px;}
.xe8_c00157{left:762.450000px;}
.xba_c00157{left:763.500000px;}
.x128_c00157{left:764.700000px;}
.x10a_c00157{left:765.900000px;}
.xb3_c00157{left:766.950000px;}
.x135_c00157{left:769.200000px;}
.xc7_c00157{left:770.850000px;}
.x130_c00157{left:772.800000px;}
.x100_c00157{left:777.450000px;}
.xe9_c00157{left:779.400000px;}
.xf0_c00157{left:781.350000px;}
.xd7_c00157{left:782.850000px;}
.xcf_c00157{left:784.200000px;}
.x10b_c00157{left:785.700000px;}
.x12c_c00157{left:787.050000px;}
.x136_c00157{left:788.250000px;}
.xf8_c00157{left:789.600000px;}
.x11c_c00157{left:790.950000px;}
.x101_c00157{left:792.600000px;}
.x131_c00157{left:794.400000px;}
.xc1_c00157{left:796.050000px;}
.x147_c00157{left:798.900000px;}
.xb4_c00157{left:802.650000px;}
.x122_c00157{left:805.350000px;}
.x13c_c00157{left:807.000000px;}
.xe4_c00157{left:808.500000px;}
.xf1_c00157{left:811.950000px;}
.x146_c00157{left:814.200000px;}
.xd8_c00157{left:815.250000px;}
.xbb_c00157{left:816.450000px;}
.x12d_c00157{left:819.450000px;}
.xf9_c00157{left:820.950000px;}
.xad_c00157{left:823.800000px;}
.x137_c00157{left:825.000000px;}
.x106_c00157{left:826.050000px;}
.x102_c00157{left:830.400000px;}
.x11b_c00157{left:832.500000px;}
.xde_c00157{left:835.500000px;}
.xd5_c00157{left:837.300000px;}
.xb5_c00157{left:838.350000px;}
.x114_c00157{left:840.000000px;}
.x13d_c00157{left:841.200000px;}
.x11d_c00157{left:842.700000px;}
.x142_c00157{left:843.750000px;}
.x10c_c00157{left:845.100000px;}
.xf2_c00157{left:846.150000px;}
.xfa_c00157{left:848.250000px;}
.xc2_c00157{left:849.300000px;}
.xd9_c00157{left:852.000000px;}
.xbc_c00157{left:859.650000px;}
.xd0_c00157{left:860.850000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls1_c00157{letter-spacing:0.000000pt;}
.ls0_c00157{letter-spacing:49.523810pt;}
.wsa_c00157{word-spacing:-76.190476pt;}
.ws1_c00157{word-spacing:-8.484848pt;}
.ws9_c00157{word-spacing:-4.102564pt;}
.ws10_c00157{word-spacing:-2.839506pt;}
.wsd_c00157{word-spacing:-1.271394pt;}
.ws11_c00157{word-spacing:0.000000pt;}
.wsc_c00157{word-spacing:0.496811pt;}
.ws0_c00157{word-spacing:1.176021pt;}
.ws3_c00157{word-spacing:3.125265pt;}
.ws2_c00157{word-spacing:8.888889pt;}
.ws6_c00157{word-spacing:11.629417pt;}
.ws8_c00157{word-spacing:12.183288pt;}
.wsb_c00157{word-spacing:19.682540pt;}
.ws5_c00157{word-spacing:21.770492pt;}
.ws4_c00157{word-spacing:22.857143pt;}
.wsf_c00157{word-spacing:35.555556pt;}
.ws7_c00157{word-spacing:53.123726pt;}
.wse_c00157{word-spacing:97.200205pt;}
._2_c00157{margin-left:-49.523810pt;}
._1_c00157{width:46.349206pt;}
._3_c00157{width:49.523810pt;}
._4_c00157{width:65.925926pt;}
._0_c00157{width:666.984127pt;}
.fs7_c00157{font-size:32.000000pt;}
.fs2_c00157{font-size:37.333333pt;}
.fs6_c00157{font-size:42.666667pt;}
.fs5_c00157{font-size:48.000000pt;}
.fs4_c00157{font-size:53.333333pt;}
.fs3_c00157{font-size:58.666667pt;}
.fs0_c00157{font-size:64.000000pt;}
.fs1_c00157{font-size:74.666667pt;}
.y0_c00157{bottom:0.000000pt;}
.y6c_c00157{bottom:167.066667pt;}
.y3_c00157{bottom:168.666667pt;}
.y37_c00157{bottom:169.333333pt;}
.y6b_c00157{bottom:180.133333pt;}
.y36_c00157{bottom:185.333333pt;}
.y6a_c00157{bottom:192.933333pt;}
.y35_c00157{bottom:201.600000pt;}
.y69_c00157{bottom:205.733333pt;}
.y34_c00157{bottom:217.333333pt;}
.y68_c00157{bottom:218.533333pt;}
.y67_c00157{bottom:231.333333pt;}
.y33_c00157{bottom:235.866667pt;}
.y66_c00157{bottom:244.133333pt;}
.y32_c00157{bottom:247.733333pt;}
.y65_c00157{bottom:257.333333pt;}
.y31_c00157{bottom:260.800000pt;}
.y64_c00157{bottom:272.000000pt;}
.y30_c00157{bottom:274.933333pt;}
.y63_c00157{bottom:286.133333pt;}
.y2f_c00157{bottom:290.266667pt;}
.y62_c00157{bottom:302.133333pt;}
.y2e_c00157{bottom:306.266667pt;}
.y61_c00157{bottom:318.133333pt;}
.y2d_c00157{bottom:325.333333pt;}
.y60_c00157{bottom:337.600000pt;}
.y2c_c00157{bottom:341.066667pt;}
.y5f_c00157{bottom:354.533333pt;}
.y2b_c00157{bottom:357.066667pt;}
.y5e_c00157{bottom:369.600000pt;}
.y2a_c00157{bottom:372.800000pt;}
.y5d_c00157{bottom:385.600000pt;}
.y29_c00157{bottom:388.800000pt;}
.y5c_c00157{bottom:401.600000pt;}
.y28_c00157{bottom:408.000000pt;}
.y5b_c00157{bottom:416.933333pt;}
.y27_c00157{bottom:424.000000pt;}
.y5a_c00157{bottom:432.933333pt;}
.y26_c00157{bottom:446.133333pt;}
.y58_c00157{bottom:452.533333pt;}
.y25_c00157{bottom:462.133333pt;}
.y57_c00157{bottom:468.533333pt;}
.y24_c00157{bottom:477.866667pt;}
.y56_c00157{bottom:488.266667pt;}
.y23_c00157{bottom:494.133333pt;}
.y55_c00157{bottom:504.266667pt;}
.y22_c00157{bottom:513.333333pt;}
.y54_c00157{bottom:524.133333pt;}
.y21_c00157{bottom:533.200000pt;}
.y53_c00157{bottom:544.000000pt;}
.y20_c00157{bottom:549.200000pt;}
.y52_c00157{bottom:560.000000pt;}
.y1f_c00157{bottom:564.933333pt;}
.y51_c00157{bottom:576.000000pt;}
.y1e_c00157{bottom:580.933333pt;}
.y50_c00157{bottom:591.733333pt;}
.y1d_c00157{bottom:596.666667pt;}
.y4f_c00157{bottom:607.733333pt;}
.y1c_c00157{bottom:612.666667pt;}
.y4e_c00157{bottom:623.733333pt;}
.y1b_c00157{bottom:628.666667pt;}
.y4d_c00157{bottom:640.000000pt;}
.y1a_c00157{bottom:644.666667pt;}
.y4c_c00157{bottom:655.733333pt;}
.y19_c00157{bottom:660.400000pt;}
.y4b_c00157{bottom:671.733333pt;}
.y18_c00157{bottom:676.133333pt;}
.y4a_c00157{bottom:689.600000pt;}
.y17_c00157{bottom:692.133333pt;}
.y49_c00157{bottom:702.400000pt;}
.y59_c00157{bottom:703.733333pt;}
.y16_c00157{bottom:708.133333pt;}
.y48_c00157{bottom:717.466667pt;}
.y15_c00157{bottom:723.866667pt;}
.y47_c00157{bottom:733.466667pt;}
.y14_c00157{bottom:739.866667pt;}
.y46_c00157{bottom:750.400000pt;}
.y13_c00157{bottom:758.133333pt;}
.y45_c00157{bottom:766.133333pt;}
.y12_c00157{bottom:770.266667pt;}
.y44_c00157{bottom:782.133333pt;}
.y11_c00157{bottom:784.000000pt;}
.y10_c00157{bottom:797.733333pt;}
.y43_c00157{bottom:801.333333pt;}
.yf_c00157{bottom:813.600000pt;}
.y42_c00157{bottom:817.333333pt;}
.ye_c00157{bottom:829.600000pt;}
.y41_c00157{bottom:833.600000pt;}
.yd_c00157{bottom:845.600000pt;}
.y40_c00157{bottom:852.800000pt;}
.yc_c00157{bottom:861.333333pt;}
.y3f_c00157{bottom:869.066667pt;}
.yb_c00157{bottom:877.066667pt;}
.y3e_c00157{bottom:888.266667pt;}
.ya_c00157{bottom:892.800000pt;}
.y3d_c00157{bottom:908.133333pt;}
.y9_c00157{bottom:912.533333pt;}
.y3c_c00157{bottom:928.266667pt;}
.y8_c00157{bottom:928.533333pt;}
.y3b_c00157{bottom:944.000000pt;}
.y7_c00157{bottom:944.266667pt;}
.y3a_c00157{bottom:960.000000pt;}
.y6_c00157{bottom:960.266667pt;}
.y39_c00157{bottom:976.000000pt;}
.y5_c00157{bottom:976.266667pt;}
.y38_c00157{bottom:991.733333pt;}
.y4_c00157{bottom:992.000000pt;}
.y2_c00157{bottom:1016.000000pt;}
.y1_c00157{bottom:1016.266667pt;}
.h9_c00157{height:32.000000pt;}
.h4_c00157{height:37.333333pt;}
.h8_c00157{height:42.666667pt;}
.h7_c00157{height:48.000000pt;}
.h6_c00157{height:53.333333pt;}
.h5_c00157{height:58.666667pt;}
.h2_c00157{height:64.000000pt;}
.h3_c00157{height:74.666667pt;}
.h1_c00157{height:1130.666667pt;}
.h0_c00157{height:1130.879964pt;}
.w1_c00157{width:847.333333pt;}
.w0_c00157{width:847.360027pt;}
.x0_c00157{left:0.000000pt;}
.x3_c00157{left:136.000000pt;}
.x8b_c00157{left:149.466667pt;}
.x4c_c00157{left:151.333333pt;}
.x26_c00157{left:153.333333pt;}
.x1_c00157{left:155.200000pt;}
.x62_c00157{left:161.733333pt;}
.x54_c00157{left:163.600000pt;}
.x3a_c00157{left:165.333333pt;}
.x2e_c00157{left:167.200000pt;}
.x22_c00157{left:168.266667pt;}
.x4_c00157{left:169.600000pt;}
.x59_c00157{left:176.666667pt;}
.x7f_c00157{left:180.933333pt;}
.x42_c00157{left:184.800000pt;}
.x48_c00157{left:185.733333pt;}
.x88_c00157{left:186.800000pt;}
.x94_c00157{left:188.800000pt;}
.x25_c00157{left:189.733333pt;}
.x27_c00157{left:190.800000pt;}
.x75_c00157{left:193.600000pt;}
.x35_c00157{left:196.400000pt;}
.x1a_c00157{left:197.866667pt;}
.x2f_c00157{left:199.200000pt;}
.x55_c00157{left:201.333333pt;}
.x3b_c00157{left:202.800000pt;}
.x83_c00157{left:204.933333pt;}
.x14_c00157{left:206.133333pt;}
.x97_c00157{left:208.266667pt;}
.x5_c00157{left:209.866667pt;}
.x63_c00157{left:213.600000pt;}
.x6b_c00157{left:214.800000pt;}
.xa3_c00157{left:218.000000pt;}
.x86_c00157{left:220.933333pt;}
.x76_c00157{left:223.333333pt;}
.x15_c00157{left:224.400000pt;}
.xf_c00157{left:225.733333pt;}
.x6_c00157{left:227.733333pt;}
.x8d_c00157{left:229.333333pt;}
.x6e_c00157{left:231.066667pt;}
.xa0_c00157{left:232.000000pt;}
.x89_c00157{left:232.933333pt;}
.x3c_c00157{left:235.066667pt;}
.x72_c00157{left:236.800000pt;}
.x1b_c00157{left:238.533333pt;}
.x7c_c00157{left:240.133333pt;}
.x64_c00157{left:241.466667pt;}
.xa4_c00157{left:242.666667pt;}
.x9a_c00157{left:245.600000pt;}
.x98_c00157{left:247.066667pt;}
.x28_c00157{left:248.133333pt;}
.x49_c00157{left:251.333333pt;}
.x87_c00157{left:252.666667pt;}
.x80_c00157{left:254.000000pt;}
.x43_c00157{left:255.200000pt;}
.x5a_c00157{left:256.133333pt;}
.x65_c00157{left:258.133333pt;}
.x3d_c00157{left:259.066667pt;}
.x30_c00157{left:264.400000pt;}
.x4d_c00157{left:267.066667pt;}
.x81_c00157{left:268.666667pt;}
.x79_c00157{left:269.600000pt;}
.x44_c00157{left:270.533333pt;}
.x7_c00157{left:271.866667pt;}
.x8e_c00157{left:273.200000pt;}
.x3e_c00157{left:274.800000pt;}
.x4a_c00157{left:278.266667pt;}
.x9b_c00157{left:279.200000pt;}
.x7d_c00157{left:280.400000pt;}
.x6c_c00157{left:282.933333pt;}
.x84_c00157{left:284.266667pt;}
.x91_c00157{left:285.733333pt;}
.x31_c00157{left:287.466667pt;}
.x73_c00157{left:289.333333pt;}
.x4e_c00157{left:290.400000pt;}
.x16_c00157{left:291.866667pt;}
.x66_c00157{left:293.333333pt;}
.x10_c00157{left:294.266667pt;}
.x8_c00157{left:295.600000pt;}
.x29_c00157{left:297.466667pt;}
.x85_c00157{left:298.933333pt;}
.x45_c00157{left:301.200000pt;}
.x96_c00157{left:303.333333pt;}
.x17_c00157{left:304.400000pt;}
.x1c_c00157{left:305.466667pt;}
.x4b_c00157{left:306.400000pt;}
.x9c_c00157{left:308.133333pt;}
.x23_c00157{left:309.600000pt;}
.x4f_c00157{left:311.200000pt;}
.x61_c00157{left:313.600000pt;}
.x82_c00157{left:314.666667pt;}
.x5b_c00157{left:316.666667pt;}
.x69_c00157{left:317.600000pt;}
.x8a_c00157{left:318.800000pt;}
.x3f_c00157{left:321.200000pt;}
.x5c_c00157{left:323.066667pt;}
.x46_c00157{left:324.933333pt;}
.x32_c00157{left:326.133333pt;}
.x9d_c00157{left:327.066667pt;}
.x6f_c00157{left:328.000000pt;}
.x5d_c00157{left:329.466667pt;}
.x7e_c00157{left:333.200000pt;}
.x2a_c00157{left:334.266667pt;}
.x33_c00157{left:336.000000pt;}
.x1d_c00157{left:337.200000pt;}
.x50_c00157{left:339.066667pt;}
.x18_c00157{left:340.933333pt;}
.x2b_c00157{left:342.266667pt;}
.x9_c00157{left:344.533333pt;}
.x40_c00157{left:346.133333pt;}
.x11_c00157{left:347.333333pt;}
.x5e_c00157{left:348.400000pt;}
.x67_c00157{left:350.266667pt;}
.x1e_c00157{left:352.266667pt;}
.x92_c00157{left:353.333333pt;}
.x5f_c00157{left:355.066667pt;}
.x77_c00157{left:357.066667pt;}
.x51_c00157{left:359.200000pt;}
.x12_c00157{left:360.400000pt;}
.x60_c00157{left:361.466667pt;}
.xa_c00157{left:362.400000pt;}
.x36_c00157{left:364.133333pt;}
.x9e_c00157{left:365.200000pt;}
.x70_c00157{left:366.400000pt;}
.x56_c00157{left:367.733333pt;}
.x8f_c00157{left:369.200000pt;}
.x99_c00157{left:370.666667pt;}
.x2c_c00157{left:372.400000pt;}
.x2_c00157{left:374.133333pt;}
.x78_c00157{left:376.533333pt;}
.x52_c00157{left:377.733333pt;}
.x37_c00157{left:379.200000pt;}
.x1f_c00157{left:382.000000pt;}
.x57_c00157{left:384.666667pt;}
.x47_c00157{left:386.133333pt;}
.xa1_c00157{left:389.466667pt;}
.x71_c00157{left:392.000000pt;}
.x90_c00157{left:392.933333pt;}
.x68_c00157{left:394.400000pt;}
.x6a_c00157{left:395.333333pt;}
.xa5_c00157{left:398.400000pt;}
.x38_c00157{left:399.333333pt;}
.xb_c00157{left:401.066667pt;}
.x7a_c00157{left:402.533333pt;}
.xa2_c00157{left:403.600000pt;}
.x13_c00157{left:405.200000pt;}
.x93_c00157{left:407.733333pt;}
.x9f_c00157{left:408.666667pt;}
.x41_c00157{left:411.333333pt;}
.x20_c00157{left:413.066667pt;}
.x2d_c00157{left:415.866667pt;}
.xc_c00157{left:417.066667pt;}
.x7b_c00157{left:418.533333pt;}
.x34_c00157{left:419.466667pt;}
.xd_c00157{left:424.133333pt;}
.x39_c00157{left:425.866667pt;}
.x19_c00157{left:427.333333pt;}
.x74_c00157{left:428.533333pt;}
.x6d_c00157{left:430.800000pt;}
.x21_c00157{left:432.000000pt;}
.x24_c00157{left:433.466667pt;}
.x53_c00157{left:434.933333pt;}
.x58_c00157{left:436.533333pt;}
.xe_c00157{left:440.800000pt;}
.x8c_c00157{left:442.133333pt;}
.x95_c00157{left:444.266667pt;}
.x149_c00157{left:456.266667pt;}
.x148_c00157{left:462.800000pt;}
.x132_c00157{left:464.000000pt;}
.x117_c00157{left:465.333333pt;}
.xea_c00157{left:466.266667pt;}
.xdc_c00157{left:467.466667pt;}
.xc8_c00157{left:468.800000pt;}
.x13e_c00157{left:475.466667pt;}
.x139_c00157{left:477.333333pt;}
.xf3_c00157{left:478.266667pt;}
.x123_c00157{left:480.000000pt;}
.xfe_c00157{left:481.200000pt;}
.xd1_c00157{left:482.933333pt;}
.xa6_c00157{left:485.466667pt;}
.x140_c00157{left:488.533333pt;}
.xf6_c00157{left:491.733333pt;}
.x11e_c00157{left:497.333333pt;}
.xae_c00157{left:500.266667pt;}
.x138_c00157{left:502.933333pt;}
.x11a_c00157{left:504.000000pt;}
.xcb_c00157{left:505.200000pt;}
.x126_c00157{left:507.466667pt;}
.x10e_c00157{left:508.533333pt;}
.xa7_c00157{left:509.466667pt;}
.x115_c00157{left:510.533333pt;}
.xbd_c00157{left:512.000000pt;}
.xda_c00157{left:513.866667pt;}
.xb6_c00157{left:516.400000pt;}
.xeb_c00157{left:517.733333pt;}
.x107_c00157{left:519.866667pt;}
.x14a_c00157{left:521.466667pt;}
.xc9_c00157{left:522.533333pt;}
.xc3_c00157{left:525.866667pt;}
.xca_c00157{left:528.266667pt;}
.xf7_c00157{left:530.400000pt;}
.xf4_c00157{left:531.733333pt;}
.xcc_c00157{left:534.000000pt;}
.x111_c00157{left:535.733333pt;}
.xaf_c00157{left:537.066667pt;}
.xf5_c00157{left:538.400000pt;}
.x12e_c00157{left:540.133333pt;}
.xa8_c00157{left:541.200000pt;}
.xd2_c00157{left:544.666667pt;}
.x143_c00157{left:547.466667pt;}
.xe5_c00157{left:548.800000pt;}
.x133_c00157{left:549.866667pt;}
.xbe_c00157{left:551.066667pt;}
.xa9_c00157{left:552.400000pt;}
.xdf_c00157{left:553.466667pt;}
.x118_c00157{left:556.933333pt;}
.x10d_c00157{left:558.800000pt;}
.x127_c00157{left:561.600000pt;}
.xdb_c00157{left:563.733333pt;}
.x10f_c00157{left:565.466667pt;}
.x103_c00157{left:567.200000pt;}
.x13a_c00157{left:568.133333pt;}
.x144_c00157{left:569.200000pt;}
.x112_c00157{left:570.266667pt;}
.x141_c00157{left:571.466667pt;}
.xec_c00157{left:572.800000pt;}
.xbf_c00157{left:574.800000pt;}
.x11f_c00157{left:577.066667pt;}
.x134_c00157{left:578.400000pt;}
.xaa_c00157{left:580.533333pt;}
.x124_c00157{left:583.066667pt;}
.xb7_c00157{left:584.266667pt;}
.x108_c00157{left:585.733333pt;}
.xb0_c00157{left:588.000000pt;}
.xed_c00157{left:589.466667pt;}
.xe6_c00157{left:590.400000pt;}
.x116_c00157{left:594.133333pt;}
.xe0_c00157{left:596.000000pt;}
.x120_c00157{left:602.000000pt;}
.xc4_c00157{left:604.000000pt;}
.xb8_c00157{left:606.000000pt;}
.x110_c00157{left:608.400000pt;}
.xd3_c00157{left:609.600000pt;}
.xb1_c00157{left:610.666667pt;}
.x104_c00157{left:612.000000pt;}
.x129_c00157{left:613.200000pt;}
.xe1_c00157{left:618.400000pt;}
.xab_c00157{left:620.266667pt;}
.xfb_c00157{left:622.400000pt;}
.x113_c00157{left:624.133333pt;}
.xc5_c00157{left:625.733333pt;}
.x121_c00157{left:627.333333pt;}
.xdd_c00157{left:629.733333pt;}
.x12a_c00157{left:633.066667pt;}
.xee_c00157{left:634.000000pt;}
.xe2_c00157{left:635.066667pt;}
.xe7_c00157{left:637.066667pt;}
.xcd_c00157{left:638.266667pt;}
.x125_c00157{left:640.266667pt;}
.xfc_c00157{left:641.866667pt;}
.x109_c00157{left:643.333333pt;}
.xc6_c00157{left:645.200000pt;}
.xb9_c00157{left:646.666667pt;}
.x12f_c00157{left:648.000000pt;}
.xc0_c00157{left:649.066667pt;}
.x12b_c00157{left:651.333333pt;}
.xd6_c00157{left:652.400000pt;}
.x105_c00157{left:653.866667pt;}
.xff_c00157{left:655.600000pt;}
.xfd_c00157{left:656.933333pt;}
.xce_c00157{left:660.933333pt;}
.xef_c00157{left:661.866667pt;}
.xb2_c00157{left:662.800000pt;}
.xac_c00157{left:665.333333pt;}
.x13f_c00157{left:667.200000pt;}
.xe3_c00157{left:669.333333pt;}
.x119_c00157{left:672.133333pt;}
.x145_c00157{left:673.600000pt;}
.x13b_c00157{left:675.200000pt;}
.xd4_c00157{left:676.133333pt;}
.xe8_c00157{left:677.733333pt;}
.xba_c00157{left:678.666667pt;}
.x128_c00157{left:679.733333pt;}
.x10a_c00157{left:680.800000pt;}
.xb3_c00157{left:681.733333pt;}
.x135_c00157{left:683.733333pt;}
.xc7_c00157{left:685.200000pt;}
.x130_c00157{left:686.933333pt;}
.x100_c00157{left:691.066667pt;}
.xe9_c00157{left:692.800000pt;}
.xf0_c00157{left:694.533333pt;}
.xd7_c00157{left:695.866667pt;}
.xcf_c00157{left:697.066667pt;}
.x10b_c00157{left:698.400000pt;}
.x12c_c00157{left:699.600000pt;}
.x136_c00157{left:700.666667pt;}
.xf8_c00157{left:701.866667pt;}
.x11c_c00157{left:703.066667pt;}
.x101_c00157{left:704.533333pt;}
.x131_c00157{left:706.133333pt;}
.xc1_c00157{left:707.600000pt;}
.x147_c00157{left:710.133333pt;}
.xb4_c00157{left:713.466667pt;}
.x122_c00157{left:715.866667pt;}
.x13c_c00157{left:717.333333pt;}
.xe4_c00157{left:718.666667pt;}
.xf1_c00157{left:721.733333pt;}
.x146_c00157{left:723.733333pt;}
.xd8_c00157{left:724.666667pt;}
.xbb_c00157{left:725.733333pt;}
.x12d_c00157{left:728.400000pt;}
.xf9_c00157{left:729.733333pt;}
.xad_c00157{left:732.266667pt;}
.x137_c00157{left:733.333333pt;}
.x106_c00157{left:734.266667pt;}
.x102_c00157{left:738.133333pt;}
.x11b_c00157{left:740.000000pt;}
.xde_c00157{left:742.666667pt;}
.xd5_c00157{left:744.266667pt;}
.xb5_c00157{left:745.200000pt;}
.x114_c00157{left:746.666667pt;}
.x13d_c00157{left:747.733333pt;}
.x11d_c00157{left:749.066667pt;}
.x142_c00157{left:750.000000pt;}
.x10c_c00157{left:751.200000pt;}
.xf2_c00157{left:752.133333pt;}
.xfa_c00157{left:754.000000pt;}
.xc2_c00157{left:754.933333pt;}
.xd9_c00157{left:757.333333pt;}
.xbc_c00157{left:764.133333pt;}
.xd0_c00157{left:765.200000pt;}
}





/* 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_c00158 {
    display:none;
  }
  .loading-indicator_c00158.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00158 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_c00158 { 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_c00158" -> "#page-container .classname_c00158")
 */
.pf_c00158 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00158 { /* 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_c00158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00158 { /* 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_c00158 { /* 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_c00158 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00158 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00158 {overflow:visible;}
  }
}
.c_c00158 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00158 { /* 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_c00158:after { /* webkit #35443 */
  content: '';
}
.t_c00158:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00158 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 */
}
.__c00158 { /* 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_c00158 { /* info for Javascript */
  display:none;
}
.l_c00158 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00158 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00158 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00158: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_c00158 {
    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_c00158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00158.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_c00158 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00158;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.000000;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;}
.m5c_c00158{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mb_c00158{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m100_c00158{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00158{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00158{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00158{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00158{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00158{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6_c00158{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m68_c00158{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m51_c00158{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md8_c00158{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00158{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00158{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m115_c00158{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m19_c00158{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m37_c00158{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00158{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00158{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m42_c00158{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m41_c00158{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m81_c00158{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mef_c00158{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00158{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00158{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m22_c00158{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me9_c00158{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00158{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m52_c00158{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m114_c00158{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m82_c00158{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md9_c00158{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mce_c00158{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00158{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00158{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m118_c00158{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m9_c00158{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mff_c00158{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00158{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00158{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m117_c00158{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m78_c00158{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m116_c00158{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m26_c00158{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00158{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00158{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00158{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mee_c00158{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.maf_c00158{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md3_c00158{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00158{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00158{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m108_c00158{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00158{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m121_c00158{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m20_c00158{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00158{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00158{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m28_c00158{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md5_c00158{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m12_c00158{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m8_c00158{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m90_c00158{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00158{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00158{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m23_c00158{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00158{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m15_c00158{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma_c00158{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m79_c00158{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m43_c00158{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00158{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00158{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00158{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00158{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00158{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mc_c00158{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m59_c00158{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00158{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m101_c00158{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m31_c00158{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m92_c00158{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00158{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00158{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00158{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me3_c00158{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.md7_c00158{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00158{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00158{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00158{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00158{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me7_c00158{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00158{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00158{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m120_c00158{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m18_c00158{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00158{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m66_c00158{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00158{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mea_c00158{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m13_c00158{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me5_c00158{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00158{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mab_c00158{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00158{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m38_c00158{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m40_c00158{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m93_c00158{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me8_c00158{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00158{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00158{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m60_c00158{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m84_c00158{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m83_c00158{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5_c00158{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00158{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md1_c00158{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m47_c00158{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00158{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00158{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00158{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00158{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00158{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00158{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00158{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md0_c00158{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.maa_c00158{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00158{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00158{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m97_c00158{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11_c00158{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m54_c00158{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m45_c00158{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mad_c00158{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00158{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00158{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m48_c00158{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00158{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m39_c00158{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m96_c00158{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00158{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf_c00158{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00158{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00158{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m61_c00158{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m58_c00158{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m10_c00158{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m53_c00158{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m99_c00158{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00158{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00158{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m21_c00158{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m30_c00158{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00158{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00158{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00158{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00158{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m17_c00158{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m46_c00158{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m36_c00158{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00158{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m75_c00158{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mac_c00158{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mae_c00158{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m33_c00158{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m119_c00158{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00158{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md_c00158{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m63_c00158{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00158{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00158{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m85_c00158{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md6_c00158{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m14_c00158{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00158{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m95_c00158{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00158{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7_c00158{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m16_c00158{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00158{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00158{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m110_c00158{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00158{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00158{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m87_c00158{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me2_c00158{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m74_c00158{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00158{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m4_c00158{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00158{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m24_c00158{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m111_c00158{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00158{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00158{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m27_c00158{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00158{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m62_c00158{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m55_c00158{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mec_c00158{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00158{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00158{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m25_c00158{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00158{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m80_c00158{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00158{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mde_c00158{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00158{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00158{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mca_c00158{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00158{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m89_c00158{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00158{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m77_c00158{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m102_c00158{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2_c00158{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.md4_c00158{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00158{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00158{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00158{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00158{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00158{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00158{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mba_c00158{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00158{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00158{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00158{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m113_c00158{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m73_c00158{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m49_c00158{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00158{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00158{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m72_c00158{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);}
.m67_c00158{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00158{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m50_c00158{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m70_c00158{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00158{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00158{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m88_c00158{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00158{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m65_c00158{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mda_c00158{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.med_c00158{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me_c00158{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m86_c00158{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.me1_c00158{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00158{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.me4_c00158{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m34_c00158{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00158{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m57_c00158{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m35_c00158{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00158{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m29_c00158{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.md2_c00158{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m112_c00158{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00158{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m44_c00158{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m32_c00158{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m106_c00158{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.meb_c00158{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m56_c00158{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m98_c00158{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00158{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00158{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00158{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m64_c00158{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m104_c00158{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00158{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00158{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00158{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m69_c00158{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00158{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m109_c00158{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m105_c00158{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m91_c00158{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m103_c00158{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me6_c00158{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m76_c00158{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00158{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m71_c00158{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m107_c00158{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00158{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m94_c00158{transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);}
.me0_c00158{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00158{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00158{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m0_c00158{transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465250,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls0_c00158{letter-spacing:0.000000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{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__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00158{word-spacing:-10.114596px;}
.ws0_c00158{word-spacing:-9.761905px;}
.ws7_c00158{word-spacing:0.000000px;}
.ws6_c00158{word-spacing:3.206273px;}
.ws5_c00158{word-spacing:11.587601px;}
.ws3_c00158{word-spacing:22.142857px;}
.ws4_c00158{word-spacing:150.000000px;}
.ws1_c00158{word-spacing:150.894934px;}
._1_c00158{width:55.714286px;}
._0_c00158{width:59.285714px;}
.fc0_c00158{color:transparent;}
.fs6_c00158{font-size:48.000000px;}
.fs5_c00158{font-size:54.000000px;}
.fs4_c00158{font-size:60.000000px;}
.fs3_c00158{font-size:66.000000px;}
.fs2_c00158{font-size:72.000000px;}
.fs1_c00158{font-size:78.000000px;}
.fs0_c00158{font-size:84.000000px;}
.y0_c00158{bottom:0.000000px;}
.y34_c00158{bottom:190.350000px;}
.y68_c00158{bottom:192.300000px;}
.y33_c00158{bottom:204.000000px;}
.y67_c00158{bottom:210.600000px;}
.y32_c00158{bottom:218.700000px;}
.y66_c00158{bottom:230.550000px;}
.y31_c00158{bottom:232.800000px;}
.y65_c00158{bottom:244.950000px;}
.y30_c00158{bottom:247.200000px;}
.y64_c00158{bottom:259.650000px;}
.y2f_c00158{bottom:263.400000px;}
.y63_c00158{bottom:272.550000px;}
.y2e_c00158{bottom:275.700000px;}
.y62_c00158{bottom:287.700000px;}
.y61_c00158{bottom:305.550000px;}
.y2d_c00158{bottom:322.650000px;}
.y60_c00158{bottom:323.250000px;}
.y5f_c00158{bottom:341.250000px;}
.y2c_c00158{bottom:362.250000px;}
.y5e_c00158{bottom:367.500000px;}
.y2b_c00158{bottom:380.550000px;}
.y5d_c00158{bottom:385.500000px;}
.y2a_c00158{bottom:402.150000px;}
.y5c_c00158{bottom:403.200000px;}
.y5b_c00158{bottom:421.200000px;}
.y29_c00158{bottom:423.300000px;}
.y5a_c00158{bottom:438.900000px;}
.y28_c00158{bottom:442.350000px;}
.y27_c00158{bottom:460.050000px;}
.y59_c00158{bottom:461.550000px;}
.y26_c00158{bottom:478.050000px;}
.y58_c00158{bottom:478.800000px;}
.y25_c00158{bottom:499.950000px;}
.y57_c00158{bottom:500.850000px;}
.y24_c00158{bottom:518.250000px;}
.y56_c00158{bottom:522.750000px;}
.y23_c00158{bottom:535.950000px;}
.y55_c00158{bottom:544.950000px;}
.y22_c00158{bottom:553.200000px;}
.y54_c00158{bottom:562.950000px;}
.y21_c00158{bottom:571.200000px;}
.y53_c00158{bottom:580.650000px;}
.y20_c00158{bottom:588.900000px;}
.y1f_c00158{bottom:609.450000px;}
.y52_c00158{bottom:615.600000px;}
.y51_c00158{bottom:616.650000px;}
.y1e_c00158{bottom:625.350000px;}
.y50_c00158{bottom:634.050000px;}
.y1d_c00158{bottom:638.250000px;}
.y4f_c00158{bottom:652.050000px;}
.y1c_c00158{bottom:653.700000px;}
.y1b_c00158{bottom:668.100000px;}
.y4e_c00158{bottom:669.300000px;}
.y1a_c00158{bottom:683.250000px;}
.y4d_c00158{bottom:687.300000px;}
.y19_c00158{bottom:701.850000px;}
.y4c_c00158{bottom:705.000000px;}
.y18_c00158{bottom:719.850000px;}
.y4b_c00158{bottom:723.000000px;}
.y17_c00158{bottom:737.550000px;}
.y4a_c00158{bottom:741.000000px;}
.y16_c00158{bottom:755.250000px;}
.y49_c00158{bottom:758.700000px;}
.y48_c00158{bottom:776.700000px;}
.y15_c00158{bottom:777.300000px;}
.y47_c00158{bottom:794.700000px;}
.y14_c00158{bottom:795.600000px;}
.y46_c00158{bottom:812.400000px;}
.y13_c00158{bottom:813.300000px;}
.y45_c00158{bottom:830.700000px;}
.y12_c00158{bottom:831.300000px;}
.y44_c00158{bottom:848.400000px;}
.y11_c00158{bottom:849.300000px;}
.y43_c00158{bottom:866.400000px;}
.y10_c00158{bottom:871.200000px;}
.y42_c00158{bottom:884.100000px;}
.yf_c00158{bottom:888.900000px;}
.y41_c00158{bottom:902.100000px;}
.ye_c00158{bottom:910.800000px;}
.y40_c00158{bottom:922.650000px;}
.yd_c00158{bottom:928.350000px;}
.y3f_c00158{bottom:937.050000px;}
.yc_c00158{bottom:950.700000px;}
.y3e_c00158{bottom:951.450000px;}
.y3d_c00158{bottom:965.550000px;}
.yb_c00158{bottom:972.900000px;}
.y3c_c00158{bottom:986.400000px;}
.ya_c00158{bottom:990.900000px;}
.y3b_c00158{bottom:1003.650000px;}
.y9_c00158{bottom:1008.900000px;}
.y3a_c00158{bottom:1021.650000px;}
.y8_c00158{bottom:1026.600000px;}
.y39_c00158{bottom:1039.350000px;}
.y7_c00158{bottom:1044.600000px;}
.y38_c00158{bottom:1061.250000px;}
.y6_c00158{bottom:1062.600000px;}
.y5_c00158{bottom:1080.300000px;}
.y37_c00158{bottom:1084.350000px;}
.y36_c00158{bottom:1097.250000px;}
.y4_c00158{bottom:1098.300000px;}
.y35_c00158{bottom:1114.950000px;}
.y3_c00158{bottom:1116.000000px;}
.y2_c00158{bottom:1140.750000px;}
.y1_c00158{bottom:1142.250000px;}
.h8_c00158{height:48.000000px;}
.h7_c00158{height:54.000000px;}
.h6_c00158{height:60.000000px;}
.h5_c00158{height:66.000000px;}
.h4_c00158{height:72.000000px;}
.h3_c00158{height:78.000000px;}
.h2_c00158{height:84.000000px;}
.h1_c00158{height:1273.500000px;}
.h0_c00158{height:1273.679993px;}
.w1_c00158{width:953.250000px;}
.w0_c00158{width:953.280030px;}
.x0_c00158{left:0.000000px;}
.x62_c00158{left:76.350000px;}
.x31_c00158{left:77.400000px;}
.x4_c00158{left:78.450000px;}
.x66_c00158{left:91.800000px;}
.x1c_c00158{left:95.550000px;}
.xc_c00158{left:96.600000px;}
.x91_c00158{left:105.750000px;}
.x68_c00158{left:106.950000px;}
.x43_c00158{left:113.550000px;}
.x3e_c00158{left:115.200000px;}
.x4a_c00158{left:119.100000px;}
.x3b_c00158{left:120.900000px;}
.x76_c00158{left:124.200000px;}
.x5a_c00158{left:127.500000px;}
.x6a_c00158{left:129.450000px;}
.x22_c00158{left:132.750000px;}
.x8f_c00158{left:133.950000px;}
.x5e_c00158{left:135.000000px;}
.x7c_c00158{left:136.050000px;}
.x8b_c00158{left:137.850000px;}
.x7a_c00158{left:139.500000px;}
.x32_c00158{left:140.700000px;}
.x77_c00158{left:141.900000px;}
.xd_c00158{left:143.100000px;}
.x33_c00158{left:148.200000px;}
.x30_c00158{left:151.950000px;}
.x23_c00158{left:155.850000px;}
.x7f_c00158{left:157.500000px;}
.x1d_c00158{left:158.550000px;}
.x4b_c00158{left:160.500000px;}
.x5_c00158{left:162.000000px;}
.x12_c00158{left:163.350000px;}
.x3d_c00158{left:167.400000px;}
.x97_c00158{left:169.350000px;}
.x90_c00158{left:171.750000px;}
.x24_c00158{left:173.100000px;}
.x34_c00158{left:175.950000px;}
.x6b_c00158{left:180.150000px;}
.x16_c00158{left:181.350000px;}
.x8c_c00158{left:182.400000px;}
.x57_c00158{left:185.100000px;}
.x55_c00158{left:187.200000px;}
.x82_c00158{left:189.900000px;}
.x88_c00158{left:194.550000px;}
.x5f_c00158{left:196.650000px;}
.x6c_c00158{left:198.900000px;}
.x6_c00158{left:200.100000px;}
.x8d_c00158{left:201.450000px;}
.x93_c00158{left:202.950000px;}
.x29_c00158{left:204.150000px;}
.x63_c00158{left:205.200000px;}
.x6e_c00158{left:207.750000px;}
.x3f_c00158{left:209.100000px;}
.xe_c00158{left:210.450000px;}
.x44_c00158{left:212.250000px;}
.x94_c00158{left:215.550000px;}
.x25_c00158{left:217.050000px;}
.x80_c00158{left:218.700000px;}
.x4c_c00158{left:220.950000px;}
.x98_c00158{left:222.300000px;}
.x13_c00158{left:223.800000px;}
.x83_c00158{left:225.150000px;}
.x1e_c00158{left:227.250000px;}
.x60_c00158{left:228.750000px;}
.x35_c00158{left:231.450000px;}
.x95_c00158{left:232.800000px;}
.x54_c00158{left:234.300000px;}
.x51_c00158{left:236.100000px;}
.x40_c00158{left:237.600000px;}
.x8e_c00158{left:238.950000px;}
.x2e_c00158{left:241.350000px;}
.x17_c00158{left:243.600000px;}
.xf_c00158{left:246.150000px;}
.x71_c00158{left:247.650000px;}
.x45_c00158{left:250.800000px;}
.x26_c00158{left:252.000000px;}
.x7_c00158{left:255.600000px;}
.x7d_c00158{left:257.100000px;}
.x1f_c00158{left:258.900000px;}
.x6f_c00158{left:261.000000px;}
.x5b_c00158{left:262.800000px;}
.x99_c00158{left:264.450000px;}
.x2a_c00158{left:265.650000px;}
.x3c_c00158{left:267.450000px;}
.x8_c00158{left:268.500000px;}
.x64_c00158{left:270.000000px;}
.x92_c00158{left:276.300000px;}
.x18_c00158{left:277.800000px;}
.x36_c00158{left:280.050000px;}
.x14_c00158{left:282.150000px;}
.x52_c00158{left:285.450000px;}
.x65_c00158{left:287.250000px;}
.x73_c00158{left:288.450000px;}
.x58_c00158{left:289.500000px;}
.x85_c00158{left:291.450000px;}
.x2f_c00158{left:293.850000px;}
.x37_c00158{left:295.500000px;}
.x78_c00158{left:297.300000px;}
.x19_c00158{left:299.700000px;}
.x81_c00158{left:302.550000px;}
.x27_c00158{left:304.500000px;}
.x38_c00158{left:308.850000px;}
.x10_c00158{left:310.950000px;}
.x89_c00158{left:312.300000px;}
.x7b_c00158{left:314.100000px;}
.x5c_c00158{left:315.300000px;}
.x4d_c00158{left:316.350000px;}
.x70_c00158{left:320.400000px;}
.x46_c00158{left:321.450000px;}
.x1_c00158{left:322.950000px;}
.x28_c00158{left:325.050000px;}
.x84_c00158{left:327.750000px;}
.x56_c00158{left:328.800000px;}
.x11_c00158{left:330.750000px;}
.x2b_c00158{left:332.250000px;}
.x39_c00158{left:334.050000px;}
.x61_c00158{left:335.250000px;}
.x86_c00158{left:338.250000px;}
.x59_c00158{left:340.200000px;}
.x9a_c00158{left:341.550000px;}
.x69_c00158{left:342.750000px;}
.x20_c00158{left:343.800000px;}
.x41_c00158{left:346.350000px;}
.x74_c00158{left:350.700000px;}
.x9c_c00158{left:353.400000px;}
.x4e_c00158{left:355.950000px;}
.x2c_c00158{left:357.450000px;}
.x15_c00158{left:359.550000px;}
.x9_c00158{left:360.600000px;}
.x72_c00158{left:361.800000px;}
.x53_c00158{left:364.650000px;}
.x4f_c00158{left:366.750000px;}
.x21_c00158{left:368.250000px;}
.x75_c00158{left:370.200000px;}
.x6d_c00158{left:372.150000px;}
.x47_c00158{left:373.200000px;}
.x79_c00158{left:374.250000px;}
.x1a_c00158{left:375.300000px;}
.x50_c00158{left:376.500000px;}
.xa_c00158{left:378.900000px;}
.x8a_c00158{left:382.500000px;}
.x2d_c00158{left:384.150000px;}
.x7e_c00158{left:386.700000px;}
.x5d_c00158{left:387.750000px;}
.x96_c00158{left:391.500000px;}
.x48_c00158{left:394.500000px;}
.x3a_c00158{left:395.550000px;}
.x1b_c00158{left:398.700000px;}
.x87_c00158{left:400.200000px;}
.x67_c00158{left:401.850000px;}
.x42_c00158{left:402.900000px;}
.x49_c00158{left:405.000000px;}
.xb_c00158{left:410.550000px;}
.x9b_c00158{left:411.750000px;}
.xb5_c00158{left:435.600000px;}
.x11c_c00158{left:436.650000px;}
.x101_c00158{left:449.250000px;}
.x9d_c00158{left:452.550000px;}
.xa5_c00158{left:453.600000px;}
.x10c_c00158{left:461.550000px;}
.x12b_c00158{left:462.900000px;}
.xd1_c00158{left:464.400000px;}
.x112_c00158{left:468.900000px;}
.x11f_c00158{left:471.300000px;}
.xed_c00158{left:473.100000px;}
.xda_c00158{left:477.000000px;}
.x9e_c00158{left:479.250000px;}
.xfd_c00158{left:483.150000px;}
.xf1_c00158{left:484.950000px;}
.xd2_c00158{left:486.300000px;}
.x119_c00158{left:488.550000px;}
.xb3_c00158{left:489.600000px;}
.xab_c00158{left:492.150000px;}
.xcb_c00158{left:493.950000px;}
.xa6_c00158{left:496.500000px;}
.xc6_c00158{left:497.700000px;}
.xbc_c00158{left:498.750000px;}
.x109_c00158{left:500.550000px;}
.x126_c00158{left:501.900000px;}
.xfa_c00158{left:504.000000px;}
.x10f_c00158{left:506.250000px;}
.x104_c00158{left:509.400000px;}
.x122_c00158{left:510.600000px;}
.x113_c00158{left:511.800000px;}
.xb4_c00158{left:513.750000px;}
.x110_c00158{left:516.000000px;}
.x11a_c00158{left:518.850000px;}
.xd3_c00158{left:520.200000px;}
.x127_c00158{left:521.400000px;}
.xd4_c00158{left:522.450000px;}
.x9f_c00158{left:523.950000px;}
.xc0_c00158{left:525.600000px;}
.xe4_c00158{left:527.100000px;}
.xbd_c00158{left:529.350000px;}
.xc7_c00158{left:530.850000px;}
.x10d_c00158{left:532.800000px;}
.xa7_c00158{left:534.000000px;}
.xac_c00158{left:538.650000px;}
.x10a_c00158{left:539.850000px;}
.xf6_c00158{left:541.200000px;}
.xb6_c00158{left:543.600000px;}
.xfe_c00158{left:544.650000px;}
.xdb_c00158{left:545.850000px;}
.x11b_c00158{left:547.350000px;}
.xee_c00158{left:548.700000px;}
.xa8_c00158{left:550.200000px;}
.xde_c00158{left:552.600000px;}
.xa0_c00158{left:555.600000px;}
.xd5_c00158{left:557.400000px;}
.x105_c00158{left:559.500000px;}
.xc8_c00158{left:562.500000px;}
.xef_c00158{left:566.700000px;}
.x129_c00158{left:569.550000px;}
.xfb_c00158{left:571.350000px;}
.xdf_c00158{left:572.700000px;}
.xcc_c00158{left:574.200000px;}
.x114_c00158{left:575.400000px;}
.xbe_c00158{left:576.450000px;}
.xad_c00158{left:578.550000px;}
.xa1_c00158{left:581.100000px;}
.xa9_c00158{left:583.650000px;}
.x120_c00158{left:585.900000px;}
.xf2_c00158{left:591.900000px;}
.xe5_c00158{left:592.950000px;}
.x108_c00158{left:594.300000px;}
.xff_c00158{left:595.800000px;}
.xb7_c00158{left:596.850000px;}
.x124_c00158{left:599.400000px;}
.xd9_c00158{left:601.650000px;}
.x10e_c00158{left:603.750000px;}
.x125_c00158{left:606.600000px;}
.xdc_c00158{left:609.150000px;}
.xe6_c00158{left:612.000000px;}
.xea_c00158{left:613.950000px;}
.xf3_c00158{left:615.000000px;}
.xae_c00158{left:616.350000px;}
.xc1_c00158{left:618.150000px;}
.xcd_c00158{left:623.250000px;}
.xe0_c00158{left:626.400000px;}
.xa2_c00158{left:627.900000px;}
.xce_c00158{left:630.450000px;}
.x115_c00158{left:633.300000px;}
.xaa_c00158{left:637.950000px;}
.xe7_c00158{left:640.800000px;}
.x100_c00158{left:642.300000px;}
.x102_c00158{left:644.850000px;}
.xe1_c00158{left:646.950000px;}
.x106_c00158{left:648.450000px;}
.xa3_c00158{left:649.500000px;}
.x10b_c00158{left:652.200000px;}
.xd6_c00158{left:654.300000px;}
.xc2_c00158{left:657.750000px;}
.xeb_c00158{left:658.950000px;}
.x117_c00158{left:660.600000px;}
.xaf_c00158{left:661.650000px;}
.x12d_c00158{left:663.450000px;}
.x12f_c00158{left:664.800000px;}
.xf7_c00158{left:666.150000px;}
.xb8_c00158{left:668.550000px;}
.x103_c00158{left:669.750000px;}
.xf4_c00158{left:673.650000px;}
.xe8_c00158{left:676.800000px;}
.xb9_c00158{left:680.850000px;}
.x12e_c00158{left:682.200000px;}
.x111_c00158{left:688.200000px;}
.xe2_c00158{left:689.400000px;}
.x123_c00158{left:690.600000px;}
.xc9_c00158{left:691.800000px;}
.xb0_c00158{left:693.000000px;}
.xc3_c00158{left:694.800000px;}
.x11d_c00158{left:696.450000px;}
.xfc_c00158{left:697.950000px;}
.x12a_c00158{left:699.000000px;}
.xcf_c00158{left:700.050000px;}
.xd7_c00158{left:701.850000px;}
.x11e_c00158{left:708.000000px;}
.x107_c00158{left:709.650000px;}
.x2_c00158{left:712.800000px;}
.xba_c00158{left:717.150000px;}
.xdd_c00158{left:719.250000px;}
.xf8_c00158{left:721.200000px;}
.xa4_c00158{left:723.300000px;}
.xc4_c00158{left:725.100000px;}
.x128_c00158{left:727.350000px;}
.xb1_c00158{left:729.000000px;}
.x12c_c00158{left:730.050000px;}
.xec_c00158{left:732.000000px;}
.xd8_c00158{left:734.250000px;}
.x121_c00158{left:735.600000px;}
.x118_c00158{left:739.800000px;}
.x116_c00158{left:740.850000px;}
.xe9_c00158{left:743.100000px;}
.x3_c00158{left:744.900000px;}
.xb2_c00158{left:745.950000px;}
.xf0_c00158{left:747.750000px;}
.xbb_c00158{left:749.250000px;}
.xf9_c00158{left:751.050000px;}
.xe3_c00158{left:754.200000px;}
.xca_c00158{left:756.300000px;}
.xd0_c00158{left:757.350000px;}
.xf5_c00158{left:759.000000px;}
.xbf_c00158{left:766.050000px;}
.xc5_c00158{left:767.250000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws2_c00158{word-spacing:-8.990752pt;}
.ws0_c00158{word-spacing:-8.677249pt;}
.ws7_c00158{word-spacing:0.000000pt;}
.ws6_c00158{word-spacing:2.850020pt;}
.ws5_c00158{word-spacing:10.300090pt;}
.ws3_c00158{word-spacing:19.682540pt;}
.ws4_c00158{word-spacing:133.333333pt;}
.ws1_c00158{word-spacing:134.128831pt;}
._1_c00158{width:49.523810pt;}
._0_c00158{width:52.698413pt;}
.fs6_c00158{font-size:42.666667pt;}
.fs5_c00158{font-size:48.000000pt;}
.fs4_c00158{font-size:53.333333pt;}
.fs3_c00158{font-size:58.666667pt;}
.fs2_c00158{font-size:64.000000pt;}
.fs1_c00158{font-size:69.333333pt;}
.fs0_c00158{font-size:74.666667pt;}
.y0_c00158{bottom:0.000000pt;}
.y34_c00158{bottom:169.200000pt;}
.y68_c00158{bottom:170.933333pt;}
.y33_c00158{bottom:181.333333pt;}
.y67_c00158{bottom:187.200000pt;}
.y32_c00158{bottom:194.400000pt;}
.y66_c00158{bottom:204.933333pt;}
.y31_c00158{bottom:206.933333pt;}
.y65_c00158{bottom:217.733333pt;}
.y30_c00158{bottom:219.733333pt;}
.y64_c00158{bottom:230.800000pt;}
.y2f_c00158{bottom:234.133333pt;}
.y63_c00158{bottom:242.266667pt;}
.y2e_c00158{bottom:245.066667pt;}
.y62_c00158{bottom:255.733333pt;}
.y61_c00158{bottom:271.600000pt;}
.y2d_c00158{bottom:286.800000pt;}
.y60_c00158{bottom:287.333333pt;}
.y5f_c00158{bottom:303.333333pt;}
.y2c_c00158{bottom:322.000000pt;}
.y5e_c00158{bottom:326.666667pt;}
.y2b_c00158{bottom:338.266667pt;}
.y5d_c00158{bottom:342.666667pt;}
.y2a_c00158{bottom:357.466667pt;}
.y5c_c00158{bottom:358.400000pt;}
.y5b_c00158{bottom:374.400000pt;}
.y29_c00158{bottom:376.266667pt;}
.y5a_c00158{bottom:390.133333pt;}
.y28_c00158{bottom:393.200000pt;}
.y27_c00158{bottom:408.933333pt;}
.y59_c00158{bottom:410.266667pt;}
.y26_c00158{bottom:424.933333pt;}
.y58_c00158{bottom:425.600000pt;}
.y25_c00158{bottom:444.400000pt;}
.y57_c00158{bottom:445.200000pt;}
.y24_c00158{bottom:460.666667pt;}
.y56_c00158{bottom:464.666667pt;}
.y23_c00158{bottom:476.400000pt;}
.y55_c00158{bottom:484.400000pt;}
.y22_c00158{bottom:491.733333pt;}
.y54_c00158{bottom:500.400000pt;}
.y21_c00158{bottom:507.733333pt;}
.y53_c00158{bottom:516.133333pt;}
.y20_c00158{bottom:523.466667pt;}
.y1f_c00158{bottom:541.733333pt;}
.y52_c00158{bottom:547.200000pt;}
.y51_c00158{bottom:548.133333pt;}
.y1e_c00158{bottom:555.866667pt;}
.y50_c00158{bottom:563.600000pt;}
.y1d_c00158{bottom:567.333333pt;}
.y4f_c00158{bottom:579.600000pt;}
.y1c_c00158{bottom:581.066667pt;}
.y1b_c00158{bottom:593.866667pt;}
.y4e_c00158{bottom:594.933333pt;}
.y1a_c00158{bottom:607.333333pt;}
.y4d_c00158{bottom:610.933333pt;}
.y19_c00158{bottom:623.866667pt;}
.y4c_c00158{bottom:626.666667pt;}
.y18_c00158{bottom:639.866667pt;}
.y4b_c00158{bottom:642.666667pt;}
.y17_c00158{bottom:655.600000pt;}
.y4a_c00158{bottom:658.666667pt;}
.y16_c00158{bottom:671.333333pt;}
.y49_c00158{bottom:674.400000pt;}
.y48_c00158{bottom:690.400000pt;}
.y15_c00158{bottom:690.933333pt;}
.y47_c00158{bottom:706.400000pt;}
.y14_c00158{bottom:707.200000pt;}
.y46_c00158{bottom:722.133333pt;}
.y13_c00158{bottom:722.933333pt;}
.y45_c00158{bottom:738.400000pt;}
.y12_c00158{bottom:738.933333pt;}
.y44_c00158{bottom:754.133333pt;}
.y11_c00158{bottom:754.933333pt;}
.y43_c00158{bottom:770.133333pt;}
.y10_c00158{bottom:774.400000pt;}
.y42_c00158{bottom:785.866667pt;}
.yf_c00158{bottom:790.133333pt;}
.y41_c00158{bottom:801.866667pt;}
.ye_c00158{bottom:809.600000pt;}
.y40_c00158{bottom:820.133333pt;}
.yd_c00158{bottom:825.200000pt;}
.y3f_c00158{bottom:832.933333pt;}
.yc_c00158{bottom:845.066667pt;}
.y3e_c00158{bottom:845.733333pt;}
.y3d_c00158{bottom:858.266667pt;}
.yb_c00158{bottom:864.800000pt;}
.y3c_c00158{bottom:876.800000pt;}
.ya_c00158{bottom:880.800000pt;}
.y3b_c00158{bottom:892.133333pt;}
.y9_c00158{bottom:896.800000pt;}
.y3a_c00158{bottom:908.133333pt;}
.y8_c00158{bottom:912.533333pt;}
.y39_c00158{bottom:923.866667pt;}
.y7_c00158{bottom:928.533333pt;}
.y38_c00158{bottom:943.333333pt;}
.y6_c00158{bottom:944.533333pt;}
.y5_c00158{bottom:960.266667pt;}
.y37_c00158{bottom:963.866667pt;}
.y36_c00158{bottom:975.333333pt;}
.y4_c00158{bottom:976.266667pt;}
.y35_c00158{bottom:991.066667pt;}
.y3_c00158{bottom:992.000000pt;}
.y2_c00158{bottom:1014.000000pt;}
.y1_c00158{bottom:1015.333333pt;}
.h8_c00158{height:42.666667pt;}
.h7_c00158{height:48.000000pt;}
.h6_c00158{height:53.333333pt;}
.h5_c00158{height:58.666667pt;}
.h4_c00158{height:64.000000pt;}
.h3_c00158{height:69.333333pt;}
.h2_c00158{height:74.666667pt;}
.h1_c00158{height:1132.000000pt;}
.h0_c00158{height:1132.159993pt;}
.w1_c00158{width:847.333333pt;}
.w0_c00158{width:847.360027pt;}
.x0_c00158{left:0.000000pt;}
.x62_c00158{left:67.866667pt;}
.x31_c00158{left:68.800000pt;}
.x4_c00158{left:69.733333pt;}
.x66_c00158{left:81.600000pt;}
.x1c_c00158{left:84.933333pt;}
.xc_c00158{left:85.866667pt;}
.x91_c00158{left:94.000000pt;}
.x68_c00158{left:95.066667pt;}
.x43_c00158{left:100.933333pt;}
.x3e_c00158{left:102.400000pt;}
.x4a_c00158{left:105.866667pt;}
.x3b_c00158{left:107.466667pt;}
.x76_c00158{left:110.400000pt;}
.x5a_c00158{left:113.333333pt;}
.x6a_c00158{left:115.066667pt;}
.x22_c00158{left:118.000000pt;}
.x8f_c00158{left:119.066667pt;}
.x5e_c00158{left:120.000000pt;}
.x7c_c00158{left:120.933333pt;}
.x8b_c00158{left:122.533333pt;}
.x7a_c00158{left:124.000000pt;}
.x32_c00158{left:125.066667pt;}
.x77_c00158{left:126.133333pt;}
.xd_c00158{left:127.200000pt;}
.x33_c00158{left:131.733333pt;}
.x30_c00158{left:135.066667pt;}
.x23_c00158{left:138.533333pt;}
.x7f_c00158{left:140.000000pt;}
.x1d_c00158{left:140.933333pt;}
.x4b_c00158{left:142.666667pt;}
.x5_c00158{left:144.000000pt;}
.x12_c00158{left:145.200000pt;}
.x3d_c00158{left:148.800000pt;}
.x97_c00158{left:150.533333pt;}
.x90_c00158{left:152.666667pt;}
.x24_c00158{left:153.866667pt;}
.x34_c00158{left:156.400000pt;}
.x6b_c00158{left:160.133333pt;}
.x16_c00158{left:161.200000pt;}
.x8c_c00158{left:162.133333pt;}
.x57_c00158{left:164.533333pt;}
.x55_c00158{left:166.400000pt;}
.x82_c00158{left:168.800000pt;}
.x88_c00158{left:172.933333pt;}
.x5f_c00158{left:174.800000pt;}
.x6c_c00158{left:176.800000pt;}
.x6_c00158{left:177.866667pt;}
.x8d_c00158{left:179.066667pt;}
.x93_c00158{left:180.400000pt;}
.x29_c00158{left:181.466667pt;}
.x63_c00158{left:182.400000pt;}
.x6e_c00158{left:184.666667pt;}
.x3f_c00158{left:185.866667pt;}
.xe_c00158{left:187.066667pt;}
.x44_c00158{left:188.666667pt;}
.x94_c00158{left:191.600000pt;}
.x25_c00158{left:192.933333pt;}
.x80_c00158{left:194.400000pt;}
.x4c_c00158{left:196.400000pt;}
.x98_c00158{left:197.600000pt;}
.x13_c00158{left:198.933333pt;}
.x83_c00158{left:200.133333pt;}
.x1e_c00158{left:202.000000pt;}
.x60_c00158{left:203.333333pt;}
.x35_c00158{left:205.733333pt;}
.x95_c00158{left:206.933333pt;}
.x54_c00158{left:208.266667pt;}
.x51_c00158{left:209.866667pt;}
.x40_c00158{left:211.200000pt;}
.x8e_c00158{left:212.400000pt;}
.x2e_c00158{left:214.533333pt;}
.x17_c00158{left:216.533333pt;}
.xf_c00158{left:218.800000pt;}
.x71_c00158{left:220.133333pt;}
.x45_c00158{left:222.933333pt;}
.x26_c00158{left:224.000000pt;}
.x7_c00158{left:227.200000pt;}
.x7d_c00158{left:228.533333pt;}
.x1f_c00158{left:230.133333pt;}
.x6f_c00158{left:232.000000pt;}
.x5b_c00158{left:233.600000pt;}
.x99_c00158{left:235.066667pt;}
.x2a_c00158{left:236.133333pt;}
.x3c_c00158{left:237.733333pt;}
.x8_c00158{left:238.666667pt;}
.x64_c00158{left:240.000000pt;}
.x92_c00158{left:245.600000pt;}
.x18_c00158{left:246.933333pt;}
.x36_c00158{left:248.933333pt;}
.x14_c00158{left:250.800000pt;}
.x52_c00158{left:253.733333pt;}
.x65_c00158{left:255.333333pt;}
.x73_c00158{left:256.400000pt;}
.x58_c00158{left:257.333333pt;}
.x85_c00158{left:259.066667pt;}
.x2f_c00158{left:261.200000pt;}
.x37_c00158{left:262.666667pt;}
.x78_c00158{left:264.266667pt;}
.x19_c00158{left:266.400000pt;}
.x81_c00158{left:268.933333pt;}
.x27_c00158{left:270.666667pt;}
.x38_c00158{left:274.533333pt;}
.x10_c00158{left:276.400000pt;}
.x89_c00158{left:277.600000pt;}
.x7b_c00158{left:279.200000pt;}
.x5c_c00158{left:280.266667pt;}
.x4d_c00158{left:281.200000pt;}
.x70_c00158{left:284.800000pt;}
.x46_c00158{left:285.733333pt;}
.x1_c00158{left:287.066667pt;}
.x28_c00158{left:288.933333pt;}
.x84_c00158{left:291.333333pt;}
.x56_c00158{left:292.266667pt;}
.x11_c00158{left:294.000000pt;}
.x2b_c00158{left:295.333333pt;}
.x39_c00158{left:296.933333pt;}
.x61_c00158{left:298.000000pt;}
.x86_c00158{left:300.666667pt;}
.x59_c00158{left:302.400000pt;}
.x9a_c00158{left:303.600000pt;}
.x69_c00158{left:304.666667pt;}
.x20_c00158{left:305.600000pt;}
.x41_c00158{left:307.866667pt;}
.x74_c00158{left:311.733333pt;}
.x9c_c00158{left:314.133333pt;}
.x4e_c00158{left:316.400000pt;}
.x2c_c00158{left:317.733333pt;}
.x15_c00158{left:319.600000pt;}
.x9_c00158{left:320.533333pt;}
.x72_c00158{left:321.600000pt;}
.x53_c00158{left:324.133333pt;}
.x4f_c00158{left:326.000000pt;}
.x21_c00158{left:327.333333pt;}
.x75_c00158{left:329.066667pt;}
.x6d_c00158{left:330.800000pt;}
.x47_c00158{left:331.733333pt;}
.x79_c00158{left:332.666667pt;}
.x1a_c00158{left:333.600000pt;}
.x50_c00158{left:334.666667pt;}
.xa_c00158{left:336.800000pt;}
.x8a_c00158{left:340.000000pt;}
.x2d_c00158{left:341.466667pt;}
.x7e_c00158{left:343.733333pt;}
.x5d_c00158{left:344.666667pt;}
.x96_c00158{left:348.000000pt;}
.x48_c00158{left:350.666667pt;}
.x3a_c00158{left:351.600000pt;}
.x1b_c00158{left:354.400000pt;}
.x87_c00158{left:355.733333pt;}
.x67_c00158{left:357.200000pt;}
.x42_c00158{left:358.133333pt;}
.x49_c00158{left:360.000000pt;}
.xb_c00158{left:364.933333pt;}
.x9b_c00158{left:366.000000pt;}
.xb5_c00158{left:387.200000pt;}
.x11c_c00158{left:388.133333pt;}
.x101_c00158{left:399.333333pt;}
.x9d_c00158{left:402.266667pt;}
.xa5_c00158{left:403.200000pt;}
.x10c_c00158{left:410.266667pt;}
.x12b_c00158{left:411.466667pt;}
.xd1_c00158{left:412.800000pt;}
.x112_c00158{left:416.800000pt;}
.x11f_c00158{left:418.933333pt;}
.xed_c00158{left:420.533333pt;}
.xda_c00158{left:424.000000pt;}
.x9e_c00158{left:426.000000pt;}
.xfd_c00158{left:429.466667pt;}
.xf1_c00158{left:431.066667pt;}
.xd2_c00158{left:432.266667pt;}
.x119_c00158{left:434.266667pt;}
.xb3_c00158{left:435.200000pt;}
.xab_c00158{left:437.466667pt;}
.xcb_c00158{left:439.066667pt;}
.xa6_c00158{left:441.333333pt;}
.xc6_c00158{left:442.400000pt;}
.xbc_c00158{left:443.333333pt;}
.x109_c00158{left:444.933333pt;}
.x126_c00158{left:446.133333pt;}
.xfa_c00158{left:448.000000pt;}
.x10f_c00158{left:450.000000pt;}
.x104_c00158{left:452.800000pt;}
.x122_c00158{left:453.866667pt;}
.x113_c00158{left:454.933333pt;}
.xb4_c00158{left:456.666667pt;}
.x110_c00158{left:458.666667pt;}
.x11a_c00158{left:461.200000pt;}
.xd3_c00158{left:462.400000pt;}
.x127_c00158{left:463.466667pt;}
.xd4_c00158{left:464.400000pt;}
.x9f_c00158{left:465.733333pt;}
.xc0_c00158{left:467.200000pt;}
.xe4_c00158{left:468.533333pt;}
.xbd_c00158{left:470.533333pt;}
.xc7_c00158{left:471.866667pt;}
.x10d_c00158{left:473.600000pt;}
.xa7_c00158{left:474.666667pt;}
.xac_c00158{left:478.800000pt;}
.x10a_c00158{left:479.866667pt;}
.xf6_c00158{left:481.066667pt;}
.xb6_c00158{left:483.200000pt;}
.xfe_c00158{left:484.133333pt;}
.xdb_c00158{left:485.200000pt;}
.x11b_c00158{left:486.533333pt;}
.xee_c00158{left:487.733333pt;}
.xa8_c00158{left:489.066667pt;}
.xde_c00158{left:491.200000pt;}
.xa0_c00158{left:493.866667pt;}
.xd5_c00158{left:495.466667pt;}
.x105_c00158{left:497.333333pt;}
.xc8_c00158{left:500.000000pt;}
.xef_c00158{left:503.733333pt;}
.x129_c00158{left:506.266667pt;}
.xfb_c00158{left:507.866667pt;}
.xdf_c00158{left:509.066667pt;}
.xcc_c00158{left:510.400000pt;}
.x114_c00158{left:511.466667pt;}
.xbe_c00158{left:512.400000pt;}
.xad_c00158{left:514.266667pt;}
.xa1_c00158{left:516.533333pt;}
.xa9_c00158{left:518.800000pt;}
.x120_c00158{left:520.800000pt;}
.xf2_c00158{left:526.133333pt;}
.xe5_c00158{left:527.066667pt;}
.x108_c00158{left:528.266667pt;}
.xff_c00158{left:529.600000pt;}
.xb7_c00158{left:530.533333pt;}
.x124_c00158{left:532.800000pt;}
.xd9_c00158{left:534.800000pt;}
.x10e_c00158{left:536.666667pt;}
.x125_c00158{left:539.200000pt;}
.xdc_c00158{left:541.466667pt;}
.xe6_c00158{left:544.000000pt;}
.xea_c00158{left:545.733333pt;}
.xf3_c00158{left:546.666667pt;}
.xae_c00158{left:547.866667pt;}
.xc1_c00158{left:549.466667pt;}
.xcd_c00158{left:554.000000pt;}
.xe0_c00158{left:556.800000pt;}
.xa2_c00158{left:558.133333pt;}
.xce_c00158{left:560.400000pt;}
.x115_c00158{left:562.933333pt;}
.xaa_c00158{left:567.066667pt;}
.xe7_c00158{left:569.600000pt;}
.x100_c00158{left:570.933333pt;}
.x102_c00158{left:573.200000pt;}
.xe1_c00158{left:575.066667pt;}
.x106_c00158{left:576.400000pt;}
.xa3_c00158{left:577.333333pt;}
.x10b_c00158{left:579.733333pt;}
.xd6_c00158{left:581.600000pt;}
.xc2_c00158{left:584.666667pt;}
.xeb_c00158{left:585.733333pt;}
.x117_c00158{left:587.200000pt;}
.xaf_c00158{left:588.133333pt;}
.x12d_c00158{left:589.733333pt;}
.x12f_c00158{left:590.933333pt;}
.xf7_c00158{left:592.133333pt;}
.xb8_c00158{left:594.266667pt;}
.x103_c00158{left:595.333333pt;}
.xf4_c00158{left:598.800000pt;}
.xe8_c00158{left:601.600000pt;}
.xb9_c00158{left:605.200000pt;}
.x12e_c00158{left:606.400000pt;}
.x111_c00158{left:611.733333pt;}
.xe2_c00158{left:612.800000pt;}
.x123_c00158{left:613.866667pt;}
.xc9_c00158{left:614.933333pt;}
.xb0_c00158{left:616.000000pt;}
.xc3_c00158{left:617.600000pt;}
.x11d_c00158{left:619.066667pt;}
.xfc_c00158{left:620.400000pt;}
.x12a_c00158{left:621.333333pt;}
.xcf_c00158{left:622.266667pt;}
.xd7_c00158{left:623.866667pt;}
.x11e_c00158{left:629.333333pt;}
.x107_c00158{left:630.800000pt;}
.x2_c00158{left:633.600000pt;}
.xba_c00158{left:637.466667pt;}
.xdd_c00158{left:639.333333pt;}
.xf8_c00158{left:641.066667pt;}
.xa4_c00158{left:642.933333pt;}
.xc4_c00158{left:644.533333pt;}
.x128_c00158{left:646.533333pt;}
.xb1_c00158{left:648.000000pt;}
.x12c_c00158{left:648.933333pt;}
.xec_c00158{left:650.666667pt;}
.xd8_c00158{left:652.666667pt;}
.x121_c00158{left:653.866667pt;}
.x118_c00158{left:657.600000pt;}
.x116_c00158{left:658.533333pt;}
.xe9_c00158{left:660.533333pt;}
.x3_c00158{left:662.133333pt;}
.xb2_c00158{left:663.066667pt;}
.xf0_c00158{left:664.666667pt;}
.xbb_c00158{left:666.000000pt;}
.xf9_c00158{left:667.600000pt;}
.xe3_c00158{left:670.400000pt;}
.xca_c00158{left:672.266667pt;}
.xd0_c00158{left:673.200000pt;}
.xf5_c00158{left:674.666667pt;}
.xbf_c00158{left:680.933333pt;}
.xc5_c00158{left:682.000000pt;}
}





/* 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_c00159 {
    display:none;
  }
  .loading-indicator_c00159.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00159 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_c00159 { 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_c00159" -> "#page-container .classname_c00159")
 */
.pf_c00159 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00159 { /* 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_c00159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00159 { /* 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_c00159 { /* 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_c00159 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00159 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00159 {overflow:visible;}
  }
}
.c_c00159 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00159 { /* 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_c00159:after { /* webkit #35443 */
  content: '';
}
.t_c00159:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00159 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 */
}
.__c00159 { /* 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_c00159 { /* info for Javascript */
  display:none;
}
.l_c00159 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00159 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00159 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00159: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_c00159 {
    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_c00159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00159.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_c00159 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00159;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.000000;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;}
.mc5_c00159{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00159{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m114_c00159{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m101_c00159{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(0.069250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069250,0.000000,0.000000,0.250000,0,0);}
.maf_c00159{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00159{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m129_c00159{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00159{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00159{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00159{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md6_c00159{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m68_c00159{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m110_c00159{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00159{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00159{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00159{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m69_c00159{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00159{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m27_c00159{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m38_c00159{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00159{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00159{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00159{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m0_c00159{transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);}
.m119_c00159{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m108_c00159{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00159{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00159{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00159{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.me2_c00159{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m58_c00159{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00159{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00159{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me8_c00159{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m36_c00159{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.me3_c00159{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.ma_c00159{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m44_c00159{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me6_c00159{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m104_c00159{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m80_c00159{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00159{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00159{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00159{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00159{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m24_c00159{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m56_c00159{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00159{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00159{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m124_c00159{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00159{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md3_c00159{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mad_c00159{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m93_c00159{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5_c00159{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m60_c00159{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00159{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m37_c00159{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m9_c00159{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00159{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00159{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00159{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00159{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.me1_c00159{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m97_c00159{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m20_c00159{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md7_c00159{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mae_c00159{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.me7_c00159{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m115_c00159{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m59_c00159{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m57_c00159{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m105_c00159{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00159{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m21_c00159{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m16_c00159{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00159{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m13_c00159{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00159{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00159{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m76_c00159{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00159{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m22_c00159{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m83_c00159{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8_c00159{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m45_c00159{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00159{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00159{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00159{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11_c00159{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00159{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00159{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m32_c00159{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m103_c00159{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md4_c00159{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.me0_c00159{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00159{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00159{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00159{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m94_c00159{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m49_c00159{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00159{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00159{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00159{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00159{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m25_c00159{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m117_c00159{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00159{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m23_c00159{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00159{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00159{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m90_c00159{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m100_c00159{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00159{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m12_c00159{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00159{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m34_c00159{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00159{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m14_c00159{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m67_c00159{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00159{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00159{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00159{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mee_c00159{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00159{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00159{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.md_c00159{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m84_c00159{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00159{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m82_c00159{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00159{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mef_c00159{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md8_c00159{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m91_c00159{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.md9_c00159{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m51_c00159{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m128_c00159{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00159{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md2_c00159{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m46_c00159{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00159{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00159{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6_c00159{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00159{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m120_c00159{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00159{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m86_c00159{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00159{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m126_c00159{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00159{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00159{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00159{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7_c00159{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m118_c00159{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m18_c00159{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00159{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m81_c00159{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4_c00159{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00159{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m47_c00159{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb_c00159{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m98_c00159{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m78_c00159{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m43_c00159{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00159{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m63_c00159{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00159{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00159{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00159{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00159{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m121_c00159{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m29_c00159{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00159{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m52_c00159{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m122_c00159{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.me_c00159{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00159{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00159{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m113_c00159{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00159{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m127_c00159{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m55_c00159{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00159{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00159{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00159{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m75_c00159{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m42_c00159{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m77_c00159{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mda_c00159{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m123_c00159{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m62_c00159{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m111_c00159{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m48_c00159{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00159{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m15_c00159{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m85_c00159{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m79_c00159{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc_c00159{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00159{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf_c00159{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m61_c00159{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m112_c00159{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00159{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m40_c00159{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md1_c00159{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m71_c00159{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00159{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m26_c00159{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00159{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m64_c00159{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m109_c00159{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m28_c00159{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m17_c00159{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m95_c00159{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00159{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00159{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00159{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m35_c00159{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m107_c00159{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m96_c00159{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m74_c00159{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m87_c00159{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00159{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m92_c00159{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m31_c00159{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mac_c00159{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00159{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m41_c00159{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00159{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00159{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m33_c00159{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00159{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00159{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00159{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mea_c00159{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m88_c00159{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00159{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mba_c00159{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m116_c00159{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m125_c00159{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m54_c00159{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00159{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mff_c00159{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mde_c00159{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m50_c00159{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00159{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00159{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00159{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);}
.m102_c00159{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m99_c00159{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00159{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m70_c00159{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mec_c00159{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m65_c00159{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10_c00159{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00159{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00159{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00159{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00159{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m73_c00159{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mab_c00159{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mce_c00159{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00159{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m72_c00159{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00159{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m19_c00159{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mca_c00159{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00159{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m106_c00159{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00159{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00159{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00159{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.md5_c00159{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00159{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00159{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.me4_c00159{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.me5_c00159{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.maa_c00159{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.meb_c00159{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m53_c00159{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m39_c00159{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00159{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m66_c00159{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00159{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md0_c00159{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m30_c00159{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00159{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00159{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00159{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m89_c00159{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.med_c00159{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.me9_c00159{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00159{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00159{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00159{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00159{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls0_c00159{letter-spacing:0.000000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{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__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00159{word-spacing:-13.520216px;}
.wsb_c00159{word-spacing:-8.278351px;}
.ws0_c00159{word-spacing:-5.522293px;}
.wsc_c00159{word-spacing:0.000000px;}
.ws8_c00159{word-spacing:12.680982px;}
.ws2_c00159{word-spacing:13.447307px;}
.ws6_c00159{word-spacing:16.110357px;}
.ws4_c00159{word-spacing:21.029412px;}
.ws1_c00159{word-spacing:23.211796px;}
.wsa_c00159{word-spacing:25.714286px;}
.ws5_c00159{word-spacing:39.414894px;}
.ws3_c00159{word-spacing:44.861111px;}
.ws9_c00159{word-spacing:63.125000px;}
._0_c00159{width:46.994638px;}
._1_c00159{width:53.428954px;}
._2_c00159{width:59.285714px;}
.fc0_c00159{color:transparent;}
.fs6_c00159{font-size:42.000000px;}
.fs7_c00159{font-size:54.000000px;}
.fs3_c00159{font-size:60.000000px;}
.fs4_c00159{font-size:66.000000px;}
.fs2_c00159{font-size:72.000000px;}
.fs5_c00159{font-size:78.000000px;}
.fs1_c00159{font-size:84.000000px;}
.fs0_c00159{font-size:156.000000px;}
.y0_c00159{bottom:0.000000px;}
.y68_c00159{bottom:176.100000px;}
.y67_c00159{bottom:194.700000px;}
.y34_c00159{bottom:198.300000px;}
.y66_c00159{bottom:212.700000px;}
.y33_c00159{bottom:221.700000px;}
.y65_c00159{bottom:230.400000px;}
.y32_c00159{bottom:242.250000px;}
.y64_c00159{bottom:248.400000px;}
.y31_c00159{bottom:259.950000px;}
.y63_c00159{bottom:266.400000px;}
.y30_c00159{bottom:277.950000px;}
.y62_c00159{bottom:284.100000px;}
.y2f_c00159{bottom:299.850000px;}
.y61_c00159{bottom:302.100000px;}
.y2e_c00159{bottom:317.550000px;}
.y60_c00159{bottom:320.100000px;}
.y2d_c00159{bottom:335.850000px;}
.y5f_c00159{bottom:338.100000px;}
.y5e_c00159{bottom:355.800000px;}
.y2c_c00159{bottom:357.450000px;}
.y5d_c00159{bottom:373.800000px;}
.y2b_c00159{bottom:375.450000px;}
.y5c_c00159{bottom:391.800000px;}
.y2a_c00159{bottom:402.150000px;}
.y5b_c00159{bottom:409.500000px;}
.y29_c00159{bottom:424.050000px;}
.y5a_c00159{bottom:427.200000px;}
.y59_c00159{bottom:445.200000px;}
.y28_c00159{bottom:446.850000px;}
.y58_c00159{bottom:462.900000px;}
.y27_c00159{bottom:464.550000px;}
.y57_c00159{bottom:480.900000px;}
.y26_c00159{bottom:482.250000px;}
.y25_c00159{bottom:499.950000px;}
.y56_c00159{bottom:506.100000px;}
.y24_c00159{bottom:517.650000px;}
.y55_c00159{bottom:525.450000px;}
.y54_c00159{bottom:539.550000px;}
.y23_c00159{bottom:540.000000px;}
.y53_c00159{bottom:555.750000px;}
.y22_c00159{bottom:558.000000px;}
.y52_c00159{bottom:570.150000px;}
.y21_c00159{bottom:576.000000px;}
.y51_c00159{bottom:584.250000px;}
.y20_c00159{bottom:593.250000px;}
.y50_c00159{bottom:597.150000px;}
.y1f_c00159{bottom:611.250000px;}
.y4f_c00159{bottom:627.450000px;}
.y1e_c00159{bottom:628.950000px;}
.y4e_c00159{bottom:641.850000px;}
.y1d_c00159{bottom:646.950000px;}
.y4d_c00159{bottom:657.000000px;}
.y1c_c00159{bottom:664.950000px;}
.y4c_c00159{bottom:674.100000px;}
.y1b_c00159{bottom:682.200000px;}
.y4b_c00159{bottom:693.600000px;}
.y1a_c00159{bottom:704.100000px;}
.y4a_c00159{bottom:711.300000px;}
.y19_c00159{bottom:718.200000px;}
.y49_c00159{bottom:732.300000px;}
.y18_c00159{bottom:732.600000px;}
.y17_c00159{bottom:745.200000px;}
.y48_c00159{bottom:750.600000px;}
.y16_c00159{bottom:759.600000px;}
.y47_c00159{bottom:768.300000px;}
.y15_c00159{bottom:777.900000px;}
.y46_c00159{bottom:786.300000px;}
.y14_c00159{bottom:795.600000px;}
.y45_c00159{bottom:804.300000px;}
.y13_c00159{bottom:812.850000px;}
.y44_c00159{bottom:822.600000px;}
.y12_c00159{bottom:835.050000px;}
.y43_c00159{bottom:840.300000px;}
.y11_c00159{bottom:853.050000px;}
.y42_c00159{bottom:858.300000px;}
.y10_c00159{bottom:870.750000px;}
.y41_c00159{bottom:876.300000px;}
.yf_c00159{bottom:888.450000px;}
.y40_c00159{bottom:896.400000px;}
.ye_c00159{bottom:906.450000px;}
.y3f_c00159{bottom:915.900000px;}
.yd_c00159{bottom:928.500000px;}
.y3e_c00159{bottom:941.250000px;}
.yc_c00159{bottom:946.500000px;}
.y3d_c00159{bottom:960.300000px;}
.yb_c00159{bottom:968.100000px;}
.y3c_c00159{bottom:978.000000px;}
.ya_c00159{bottom:990.000000px;}
.y3b_c00159{bottom:996.000000px;}
.y9_c00159{bottom:1012.050000px;}
.y3a_c00159{bottom:1013.700000px;}
.y8_c00159{bottom:1029.750000px;}
.y39_c00159{bottom:1039.350000px;}
.y7_c00159{bottom:1047.750000px;}
.y38_c00159{bottom:1057.650000px;}
.y6_c00159{bottom:1065.450000px;}
.y37_c00159{bottom:1078.950000px;}
.y5_c00159{bottom:1083.150000px;}
.y4_c00159{bottom:1101.150000px;}
.y36_c00159{bottom:1101.600000px;}
.y3_c00159{bottom:1118.850000px;}
.y35_c00159{bottom:1119.600000px;}
.y1_c00159{bottom:1144.800000px;}
.y2_c00159{bottom:1145.550000px;}
.h8_c00159{height:42.000000px;}
.h9_c00159{height:54.000000px;}
.h5_c00159{height:60.000000px;}
.h6_c00159{height:66.000000px;}
.h4_c00159{height:72.000000px;}
.h7_c00159{height:78.000000px;}
.h3_c00159{height:84.000000px;}
.h2_c00159{height:156.000000px;}
.h0_c00159{height:1269.720063px;}
.h1_c00159{height:1269.750000px;}
.w1_c00159{width:953.250000px;}
.w0_c00159{width:953.280030px;}
.x0_c00159{left:0.000000px;}
.x92_c00159{left:174.300000px;}
.x1_c00159{left:178.950000px;}
.x29_c00159{left:180.000000px;}
.x2c_c00159{left:181.800000px;}
.x86_c00159{left:184.350000px;}
.x75_c00159{left:185.400000px;}
.x88_c00159{left:186.450000px;}
.x4_c00159{left:196.200000px;}
.x16_c00159{left:197.400000px;}
.x30_c00159{left:198.450000px;}
.x3d_c00159{left:199.950000px;}
.x71_c00159{left:201.450000px;}
.x80_c00159{left:203.400000px;}
.x60_c00159{left:210.600000px;}
.x31_c00159{left:215.700000px;}
.x52_c00159{left:222.450000px;}
.x2d_c00159{left:224.250000px;}
.x32_c00159{left:228.000000px;}
.x8b_c00159{left:229.650000px;}
.x2_c00159{left:231.450000px;}
.x61_c00159{left:232.500000px;}
.x17_c00159{left:236.250000px;}
.x5_c00159{left:237.300000px;}
.x43_c00159{left:238.500000px;}
.x1c_c00159{left:239.700000px;}
.x59_c00159{left:241.200000px;}
.x24_c00159{left:242.400000px;}
.x90_c00159{left:244.050000px;}
.x83_c00159{left:246.600000px;}
.x2a_c00159{left:249.000000px;}
.x87_c00159{left:250.650000px;}
.x3e_c00159{left:252.900000px;}
.x6e_c00159{left:255.300000px;}
.x18_c00159{left:257.550000px;}
.xf_c00159{left:260.100000px;}
.x25_c00159{left:261.450000px;}
.x6b_c00159{left:262.800000px;}
.x6_c00159{left:267.150000px;}
.x4e_c00159{left:268.950000px;}
.x1d_c00159{left:270.000000px;}
.x2b_c00159{left:273.900000px;}
.x44_c00159{left:276.000000px;}
.x65_c00159{left:278.100000px;}
.x56_c00159{left:279.600000px;}
.xc_c00159{left:282.300000px;}
.x3f_c00159{left:283.800000px;}
.x79_c00159{left:284.850000px;}
.x49_c00159{left:287.700000px;}
.x19_c00159{left:293.850000px;}
.x36_c00159{left:295.650000px;}
.x8f_c00159{left:298.800000px;}
.x39_c00159{left:302.100000px;}
.x89_c00159{left:306.750000px;}
.x84_c00159{left:308.550000px;}
.x10_c00159{left:311.550000px;}
.x33_c00159{left:314.400000px;}
.x40_c00159{left:315.900000px;}
.x7a_c00159{left:317.550000px;}
.x8c_c00159{left:320.100000px;}
.x7_c00159{left:321.900000px;}
.x53_c00159{left:324.600000px;}
.x72_c00159{left:325.950000px;}
.x66_c00159{left:327.000000px;}
.x45_c00159{left:328.500000px;}
.x81_c00159{left:329.850000px;}
.x11_c00159{left:331.050000px;}
.x7b_c00159{left:332.250000px;}
.x91_c00159{left:335.550000px;}
.x26_c00159{left:338.100000px;}
.x4a_c00159{left:341.700000px;}
.x8_c00159{left:343.500000px;}
.x1e_c00159{left:346.350000px;}
.x3a_c00159{left:349.650000px;}
.x1a_c00159{left:351.450000px;}
.x4f_c00159{left:352.800000px;}
.x5a_c00159{left:356.400000px;}
.x54_c00159{left:359.100000px;}
.x46_c00159{left:361.950000px;}
.xd_c00159{left:363.000000px;}
.x12_c00159{left:364.500000px;}
.x85_c00159{left:369.000000px;}
.x6c_c00159{left:370.200000px;}
.x3b_c00159{left:371.250000px;}
.x27_c00159{left:372.600000px;}
.x62_c00159{left:376.200000px;}
.x5b_c00159{left:378.000000px;}
.x2e_c00159{left:379.800000px;}
.x37_c00159{left:381.750000px;}
.x5c_c00159{left:385.200000px;}
.x13_c00159{left:386.400000px;}
.x50_c00159{left:388.800000px;}
.x1f_c00159{left:390.600000px;}
.x68_c00159{left:392.550000px;}
.x9_c00159{left:394.200000px;}
.x76_c00159{left:396.300000px;}
.x47_c00159{left:397.650000px;}
.x5d_c00159{left:399.600000px;}
.x51_c00159{left:401.400000px;}
.x7d_c00159{left:405.000000px;}
.x5e_c00159{left:407.100000px;}
.x41_c00159{left:408.750000px;}
.x73_c00159{left:410.550000px;}
.x4b_c00159{left:412.950000px;}
.x20_c00159{left:417.900000px;}
.x14_c00159{left:421.350000px;}
.x48_c00159{left:422.550000px;}
.x8a_c00159{left:424.050000px;}
.x3_c00159{left:426.150000px;}
.x8d_c00159{left:429.300000px;}
.x6d_c00159{left:430.350000px;}
.x69_c00159{left:432.000000px;}
.x34_c00159{left:434.250000px;}
.x6f_c00159{left:436.500000px;}
.xa_c00159{left:437.850000px;}
.x63_c00159{left:439.500000px;}
.x21_c00159{left:441.600000px;}
.x8e_c00159{left:442.650000px;}
.x3c_c00159{left:444.000000px;}
.x74_c00159{left:445.800000px;}
.x5f_c00159{left:447.450000px;}
.x7c_c00159{left:449.250000px;}
.x2f_c00159{left:451.500000px;}
.xb_c00159{left:454.050000px;}
.x77_c00159{left:456.300000px;}
.x15_c00159{left:459.450000px;}
.x4c_c00159{left:462.600000px;}
.x67_c00159{left:463.950000px;}
.x28_c00159{left:466.200000px;}
.x57_c00159{left:469.350000px;}
.x7e_c00159{left:472.650000px;}
.x82_c00159{left:473.700000px;}
.x42_c00159{left:477.150000px;}
.x55_c00159{left:479.550000px;}
.x22_c00159{left:481.200000px;}
.xe_c00159{left:484.350000px;}
.x6a_c00159{left:487.050000px;}
.x78_c00159{left:489.000000px;}
.x70_c00159{left:492.000000px;}
.x4d_c00159{left:494.700000px;}
.x1b_c00159{left:495.750000px;}
.x38_c00159{left:499.200000px;}
.x35_c00159{left:500.850000px;}
.x58_c00159{left:502.500000px;}
.x23_c00159{left:504.900000px;}
.x64_c00159{left:512.550000px;}
.x7f_c00159{left:515.850000px;}
.x9e_c00159{left:535.650000px;}
.xac_c00159{left:536.700000px;}
.xc7_c00159{left:538.200000px;}
.x117_c00159{left:540.750000px;}
.x93_c00159{left:552.600000px;}
.xa8_c00159{left:555.000000px;}
.xb1_c00159{left:556.050000px;}
.xfa_c00159{left:557.250000px;}
.x11c_c00159{left:558.450000px;}
.x104_c00159{left:567.450000px;}
.x109_c00159{left:568.950000px;}
.xad_c00159{left:570.600000px;}
.xcb_c00159{left:572.400000px;}
.xde_c00159{left:574.800000px;}
.xd7_c00159{left:576.150000px;}
.xef_c00159{left:577.650000px;}
.xc8_c00159{left:579.900000px;}
.xa9_c00159{left:581.250000px;}
.xea_c00159{left:584.850000px;}
.xca_c00159{left:587.550000px;}
.x106_c00159{left:589.950000px;}
.xe5_c00159{left:593.250000px;}
.x9f_c00159{left:594.300000px;}
.x9a_c00159{left:597.000000px;}
.x12d_c00159{left:598.050000px;}
.xbf_c00159{left:600.000000px;}
.x113_c00159{left:601.500000px;}
.x119_c00159{left:603.000000px;}
.xa0_c00159{left:606.000000px;}
.xe6_c00159{left:610.200000px;}
.xdf_c00159{left:611.850000px;}
.x94_c00159{left:613.500000px;}
.xd3_c00159{left:615.000000px;}
.x107_c00159{left:617.700000px;}
.x10a_c00159{left:619.650000px;}
.x11d_c00159{left:621.450000px;}
.xf4_c00159{left:622.500000px;}
.xc4_c00159{left:624.900000px;}
.xd8_c00159{left:626.550000px;}
.xb8_c00159{left:630.450000px;}
.x9b_c00159{left:631.500000px;}
.x110_c00159{left:633.450000px;}
.xa1_c00159{left:634.500000px;}
.x108_c00159{left:636.750000px;}
.xcc_c00159{left:638.700000px;}
.xe7_c00159{left:640.050000px;}
.xaa_c00159{left:641.700000px;}
.xe0_c00159{left:643.200000px;}
.xc5_c00159{left:644.700000px;}
.xb2_c00159{left:646.050000px;}
.x9c_c00159{left:648.000000px;}
.xd9_c00159{left:651.450000px;}
.x111_c00159{left:652.500000px;}
.xfb_c00159{left:653.700000px;}
.xae_c00159{left:654.900000px;}
.xd4_c00159{left:656.400000px;}
.xe1_c00159{left:658.350000px;}
.xcd_c00159{left:661.050000px;}
.x133_c00159{left:662.100000px;}
.xf5_c00159{left:663.900000px;}
.x95_c00159{left:666.000000px;}
.x12a_c00159{left:667.350000px;}
.x124_c00159{left:670.350000px;}
.xce_c00159{left:671.550000px;}
.x120_c00159{left:676.350000px;}
.xd5_c00159{left:678.300000px;}
.xb9_c00159{left:679.500000px;}
.x114_c00159{left:682.500000px;}
.xe8_c00159{left:683.850000px;}
.xe2_c00159{left:687.450000px;}
.x131_c00159{left:688.650000px;}
.xa2_c00159{left:690.000000px;}
.xc6_c00159{left:693.000000px;}
.xf0_c00159{left:694.650000px;}
.x123_c00159{left:696.300000px;}
.x10b_c00159{left:698.100000px;}
.x96_c00159{left:699.450000px;}
.xf7_c00159{left:702.300000px;}
.xb3_c00159{left:703.650000px;}
.xc0_c00159{left:705.150000px;}
.xda_c00159{left:706.500000px;}
.xeb_c00159{left:708.300000px;}
.x10c_c00159{left:712.500000px;}
.xa3_c00159{left:716.250000px;}
.xcf_c00159{left:718.050000px;}
.x97_c00159{left:720.000000px;}
.xe9_c00159{left:721.650000px;}
.x121_c00159{left:722.850000px;}
.x9d_c00159{left:724.350000px;}
.xdb_c00159{left:725.550000px;}
.xfc_c00159{left:726.750000px;}
.xc9_c00159{left:727.950000px;}
.xba_c00159{left:730.350000px;}
.xb4_c00159{left:731.400000px;}
.x11e_c00159{left:732.900000px;}
.x10d_c00159{left:734.100000px;}
.xd0_c00159{left:737.100000px;}
.x125_c00159{left:741.300000px;}
.xfe_c00159{left:744.150000px;}
.x128_c00159{left:745.500000px;}
.xa4_c00159{left:747.600000px;}
.xb5_c00159{left:749.700000px;}
.x12f_c00159{left:751.200000px;}
.xe3_c00159{left:752.700000px;}
.x132_c00159{left:753.900000px;}
.xd1_c00159{left:755.850000px;}
.xf1_c00159{left:758.700000px;}
.xec_c00159{left:760.950000px;}
.xa5_c00159{left:763.050000px;}
.xf6_c00159{left:764.250000px;}
.x134_c00159{left:765.300000px;}
.x115_c00159{left:766.350000px;}
.x12c_c00159{left:768.300000px;}
.x10e_c00159{left:770.100000px;}
.x98_c00159{left:771.150000px;}
.xd2_c00159{left:774.150000px;}
.xbb_c00159{left:776.400000px;}
.x126_c00159{left:777.600000px;}
.xc1_c00159{left:778.950000px;}
.x116_c00159{left:781.050000px;}
.x11f_c00159{left:782.250000px;}
.x112_c00159{left:783.900000px;}
.xfd_c00159{left:784.950000px;}
.x130_c00159{left:786.450000px;}
.xb6_c00159{left:788.250000px;}
.x12b_c00159{left:791.100000px;}
.xa6_c00159{left:792.150000px;}
.xff_c00159{left:793.950000px;}
.xc2_c00159{left:795.150000px;}
.x12e_c00159{left:797.550000px;}
.xdc_c00159{left:798.600000px;}
.x102_c00159{left:802.800000px;}
.x105_c00159{left:803.850000px;}
.xbc_c00159{left:804.900000px;}
.xf2_c00159{left:807.600000px;}
.xe4_c00159{left:810.300000px;}
.xed_c00159{left:812.400000px;}
.x129_c00159{left:814.200000px;}
.xaf_c00159{left:816.300000px;}
.x127_c00159{left:819.000000px;}
.x135_c00159{left:820.050000px;}
.x11a_c00159{left:821.550000px;}
.x100_c00159{left:824.250000px;}
.x122_c00159{left:826.200000px;}
.x10f_c00159{left:827.850000px;}
.xb0_c00159{left:831.450000px;}
.xd6_c00159{left:833.100000px;}
.xbd_c00159{left:834.750000px;}
.xf8_c00159{left:838.350000px;}
.xab_c00159{left:840.000000px;}
.xb7_c00159{left:842.550000px;}
.xee_c00159{left:845.100000px;}
.x118_c00159{left:846.750000px;}
.xdd_c00159{left:848.700000px;}
.xa7_c00159{left:851.250000px;}
.xc3_c00159{left:853.500000px;}
.x99_c00159{left:855.750000px;}
.x101_c00159{left:858.150000px;}
.x103_c00159{left:860.100000px;}
.xf3_c00159{left:862.350000px;}
.xf9_c00159{left:865.050000px;}
.xbe_c00159{left:866.400000px;}
.x11b_c00159{left:871.950000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws7_c00159{word-spacing:-12.017969pt;}
.wsb_c00159{word-spacing:-7.358534pt;}
.ws0_c00159{word-spacing:-4.908705pt;}
.wsc_c00159{word-spacing:0.000000pt;}
.ws8_c00159{word-spacing:11.271984pt;}
.ws2_c00159{word-spacing:11.953162pt;}
.ws6_c00159{word-spacing:14.320317pt;}
.ws4_c00159{word-spacing:18.692810pt;}
.ws1_c00159{word-spacing:20.632708pt;}
.wsa_c00159{word-spacing:22.857143pt;}
.ws5_c00159{word-spacing:35.035461pt;}
.ws3_c00159{word-spacing:39.876543pt;}
.ws9_c00159{word-spacing:56.111111pt;}
._0_c00159{width:41.773012pt;}
._1_c00159{width:47.492404pt;}
._2_c00159{width:52.698413pt;}
.fs6_c00159{font-size:37.333333pt;}
.fs7_c00159{font-size:48.000000pt;}
.fs3_c00159{font-size:53.333333pt;}
.fs4_c00159{font-size:58.666667pt;}
.fs2_c00159{font-size:64.000000pt;}
.fs5_c00159{font-size:69.333333pt;}
.fs1_c00159{font-size:74.666667pt;}
.fs0_c00159{font-size:138.666667pt;}
.y0_c00159{bottom:0.000000pt;}
.y68_c00159{bottom:156.533333pt;}
.y67_c00159{bottom:173.066667pt;}
.y34_c00159{bottom:176.266667pt;}
.y66_c00159{bottom:189.066667pt;}
.y33_c00159{bottom:197.066667pt;}
.y65_c00159{bottom:204.800000pt;}
.y32_c00159{bottom:215.333333pt;}
.y64_c00159{bottom:220.800000pt;}
.y31_c00159{bottom:231.066667pt;}
.y63_c00159{bottom:236.800000pt;}
.y30_c00159{bottom:247.066667pt;}
.y62_c00159{bottom:252.533333pt;}
.y2f_c00159{bottom:266.533333pt;}
.y61_c00159{bottom:268.533333pt;}
.y2e_c00159{bottom:282.266667pt;}
.y60_c00159{bottom:284.533333pt;}
.y2d_c00159{bottom:298.533333pt;}
.y5f_c00159{bottom:300.533333pt;}
.y5e_c00159{bottom:316.266667pt;}
.y2c_c00159{bottom:317.733333pt;}
.y5d_c00159{bottom:332.266667pt;}
.y2b_c00159{bottom:333.733333pt;}
.y5c_c00159{bottom:348.266667pt;}
.y2a_c00159{bottom:357.466667pt;}
.y5b_c00159{bottom:364.000000pt;}
.y29_c00159{bottom:376.933333pt;}
.y5a_c00159{bottom:379.733333pt;}
.y59_c00159{bottom:395.733333pt;}
.y28_c00159{bottom:397.200000pt;}
.y58_c00159{bottom:411.466667pt;}
.y27_c00159{bottom:412.933333pt;}
.y57_c00159{bottom:427.466667pt;}
.y26_c00159{bottom:428.666667pt;}
.y25_c00159{bottom:444.400000pt;}
.y56_c00159{bottom:449.866667pt;}
.y24_c00159{bottom:460.133333pt;}
.y55_c00159{bottom:467.066667pt;}
.y54_c00159{bottom:479.600000pt;}
.y23_c00159{bottom:480.000000pt;}
.y53_c00159{bottom:494.000000pt;}
.y22_c00159{bottom:496.000000pt;}
.y52_c00159{bottom:506.800000pt;}
.y21_c00159{bottom:512.000000pt;}
.y51_c00159{bottom:519.333333pt;}
.y20_c00159{bottom:527.333333pt;}
.y50_c00159{bottom:530.800000pt;}
.y1f_c00159{bottom:543.333333pt;}
.y4f_c00159{bottom:557.733333pt;}
.y1e_c00159{bottom:559.066667pt;}
.y4e_c00159{bottom:570.533333pt;}
.y1d_c00159{bottom:575.066667pt;}
.y4d_c00159{bottom:584.000000pt;}
.y1c_c00159{bottom:591.066667pt;}
.y4c_c00159{bottom:599.200000pt;}
.y1b_c00159{bottom:606.400000pt;}
.y4b_c00159{bottom:616.533333pt;}
.y1a_c00159{bottom:625.866667pt;}
.y4a_c00159{bottom:632.266667pt;}
.y19_c00159{bottom:638.400000pt;}
.y49_c00159{bottom:650.933333pt;}
.y18_c00159{bottom:651.200000pt;}
.y17_c00159{bottom:662.400000pt;}
.y48_c00159{bottom:667.200000pt;}
.y16_c00159{bottom:675.200000pt;}
.y47_c00159{bottom:682.933333pt;}
.y15_c00159{bottom:691.466667pt;}
.y46_c00159{bottom:698.933333pt;}
.y14_c00159{bottom:707.200000pt;}
.y45_c00159{bottom:714.933333pt;}
.y13_c00159{bottom:722.533333pt;}
.y44_c00159{bottom:731.200000pt;}
.y12_c00159{bottom:742.266667pt;}
.y43_c00159{bottom:746.933333pt;}
.y11_c00159{bottom:758.266667pt;}
.y42_c00159{bottom:762.933333pt;}
.y10_c00159{bottom:774.000000pt;}
.y41_c00159{bottom:778.933333pt;}
.yf_c00159{bottom:789.733333pt;}
.y40_c00159{bottom:796.800000pt;}
.ye_c00159{bottom:805.733333pt;}
.y3f_c00159{bottom:814.133333pt;}
.yd_c00159{bottom:825.333333pt;}
.y3e_c00159{bottom:836.666667pt;}
.yc_c00159{bottom:841.333333pt;}
.y3d_c00159{bottom:853.600000pt;}
.yb_c00159{bottom:860.533333pt;}
.y3c_c00159{bottom:869.333333pt;}
.ya_c00159{bottom:880.000000pt;}
.y3b_c00159{bottom:885.333333pt;}
.y9_c00159{bottom:899.600000pt;}
.y3a_c00159{bottom:901.066667pt;}
.y8_c00159{bottom:915.333333pt;}
.y39_c00159{bottom:923.866667pt;}
.y7_c00159{bottom:931.333333pt;}
.y38_c00159{bottom:940.133333pt;}
.y6_c00159{bottom:947.066667pt;}
.y37_c00159{bottom:959.066667pt;}
.y5_c00159{bottom:962.800000pt;}
.y4_c00159{bottom:978.800000pt;}
.y36_c00159{bottom:979.200000pt;}
.y3_c00159{bottom:994.533333pt;}
.y35_c00159{bottom:995.200000pt;}
.y1_c00159{bottom:1017.600000pt;}
.y2_c00159{bottom:1018.266667pt;}
.h8_c00159{height:37.333333pt;}
.h9_c00159{height:48.000000pt;}
.h5_c00159{height:53.333333pt;}
.h6_c00159{height:58.666667pt;}
.h4_c00159{height:64.000000pt;}
.h7_c00159{height:69.333333pt;}
.h3_c00159{height:74.666667pt;}
.h2_c00159{height:138.666667pt;}
.h0_c00159{height:1128.640056pt;}
.h1_c00159{height:1128.666667pt;}
.w1_c00159{width:847.333333pt;}
.w0_c00159{width:847.360027pt;}
.x0_c00159{left:0.000000pt;}
.x92_c00159{left:154.933333pt;}
.x1_c00159{left:159.066667pt;}
.x29_c00159{left:160.000000pt;}
.x2c_c00159{left:161.600000pt;}
.x86_c00159{left:163.866667pt;}
.x75_c00159{left:164.800000pt;}
.x88_c00159{left:165.733333pt;}
.x4_c00159{left:174.400000pt;}
.x16_c00159{left:175.466667pt;}
.x30_c00159{left:176.400000pt;}
.x3d_c00159{left:177.733333pt;}
.x71_c00159{left:179.066667pt;}
.x80_c00159{left:180.800000pt;}
.x60_c00159{left:187.200000pt;}
.x31_c00159{left:191.733333pt;}
.x52_c00159{left:197.733333pt;}
.x2d_c00159{left:199.333333pt;}
.x32_c00159{left:202.666667pt;}
.x8b_c00159{left:204.133333pt;}
.x2_c00159{left:205.733333pt;}
.x61_c00159{left:206.666667pt;}
.x17_c00159{left:210.000000pt;}
.x5_c00159{left:210.933333pt;}
.x43_c00159{left:212.000000pt;}
.x1c_c00159{left:213.066667pt;}
.x59_c00159{left:214.400000pt;}
.x24_c00159{left:215.466667pt;}
.x90_c00159{left:216.933333pt;}
.x83_c00159{left:219.200000pt;}
.x2a_c00159{left:221.333333pt;}
.x87_c00159{left:222.800000pt;}
.x3e_c00159{left:224.800000pt;}
.x6e_c00159{left:226.933333pt;}
.x18_c00159{left:228.933333pt;}
.xf_c00159{left:231.200000pt;}
.x25_c00159{left:232.400000pt;}
.x6b_c00159{left:233.600000pt;}
.x6_c00159{left:237.466667pt;}
.x4e_c00159{left:239.066667pt;}
.x1d_c00159{left:240.000000pt;}
.x2b_c00159{left:243.466667pt;}
.x44_c00159{left:245.333333pt;}
.x65_c00159{left:247.200000pt;}
.x56_c00159{left:248.533333pt;}
.xc_c00159{left:250.933333pt;}
.x3f_c00159{left:252.266667pt;}
.x79_c00159{left:253.200000pt;}
.x49_c00159{left:255.733333pt;}
.x19_c00159{left:261.200000pt;}
.x36_c00159{left:262.800000pt;}
.x8f_c00159{left:265.600000pt;}
.x39_c00159{left:268.533333pt;}
.x89_c00159{left:272.666667pt;}
.x84_c00159{left:274.266667pt;}
.x10_c00159{left:276.933333pt;}
.x33_c00159{left:279.466667pt;}
.x40_c00159{left:280.800000pt;}
.x7a_c00159{left:282.266667pt;}
.x8c_c00159{left:284.533333pt;}
.x7_c00159{left:286.133333pt;}
.x53_c00159{left:288.533333pt;}
.x72_c00159{left:289.733333pt;}
.x66_c00159{left:290.666667pt;}
.x45_c00159{left:292.000000pt;}
.x81_c00159{left:293.200000pt;}
.x11_c00159{left:294.266667pt;}
.x7b_c00159{left:295.333333pt;}
.x91_c00159{left:298.266667pt;}
.x26_c00159{left:300.533333pt;}
.x4a_c00159{left:303.733333pt;}
.x8_c00159{left:305.333333pt;}
.x1e_c00159{left:307.866667pt;}
.x3a_c00159{left:310.800000pt;}
.x1a_c00159{left:312.400000pt;}
.x4f_c00159{left:313.600000pt;}
.x5a_c00159{left:316.800000pt;}
.x54_c00159{left:319.200000pt;}
.x46_c00159{left:321.733333pt;}
.xd_c00159{left:322.666667pt;}
.x12_c00159{left:324.000000pt;}
.x85_c00159{left:328.000000pt;}
.x6c_c00159{left:329.066667pt;}
.x3b_c00159{left:330.000000pt;}
.x27_c00159{left:331.200000pt;}
.x62_c00159{left:334.400000pt;}
.x5b_c00159{left:336.000000pt;}
.x2e_c00159{left:337.600000pt;}
.x37_c00159{left:339.333333pt;}
.x5c_c00159{left:342.400000pt;}
.x13_c00159{left:343.466667pt;}
.x50_c00159{left:345.600000pt;}
.x1f_c00159{left:347.200000pt;}
.x68_c00159{left:348.933333pt;}
.x9_c00159{left:350.400000pt;}
.x76_c00159{left:352.266667pt;}
.x47_c00159{left:353.466667pt;}
.x5d_c00159{left:355.200000pt;}
.x51_c00159{left:356.800000pt;}
.x7d_c00159{left:360.000000pt;}
.x5e_c00159{left:361.866667pt;}
.x41_c00159{left:363.333333pt;}
.x73_c00159{left:364.933333pt;}
.x4b_c00159{left:367.066667pt;}
.x20_c00159{left:371.466667pt;}
.x14_c00159{left:374.533333pt;}
.x48_c00159{left:375.600000pt;}
.x8a_c00159{left:376.933333pt;}
.x3_c00159{left:378.800000pt;}
.x8d_c00159{left:381.600000pt;}
.x6d_c00159{left:382.533333pt;}
.x69_c00159{left:384.000000pt;}
.x34_c00159{left:386.000000pt;}
.x6f_c00159{left:388.000000pt;}
.xa_c00159{left:389.200000pt;}
.x63_c00159{left:390.666667pt;}
.x21_c00159{left:392.533333pt;}
.x8e_c00159{left:393.466667pt;}
.x3c_c00159{left:394.666667pt;}
.x74_c00159{left:396.266667pt;}
.x5f_c00159{left:397.733333pt;}
.x7c_c00159{left:399.333333pt;}
.x2f_c00159{left:401.333333pt;}
.xb_c00159{left:403.600000pt;}
.x77_c00159{left:405.600000pt;}
.x15_c00159{left:408.400000pt;}
.x4c_c00159{left:411.200000pt;}
.x67_c00159{left:412.400000pt;}
.x28_c00159{left:414.400000pt;}
.x57_c00159{left:417.200000pt;}
.x7e_c00159{left:420.133333pt;}
.x82_c00159{left:421.066667pt;}
.x42_c00159{left:424.133333pt;}
.x55_c00159{left:426.266667pt;}
.x22_c00159{left:427.733333pt;}
.xe_c00159{left:430.533333pt;}
.x6a_c00159{left:432.933333pt;}
.x78_c00159{left:434.666667pt;}
.x70_c00159{left:437.333333pt;}
.x4d_c00159{left:439.733333pt;}
.x1b_c00159{left:440.666667pt;}
.x38_c00159{left:443.733333pt;}
.x35_c00159{left:445.200000pt;}
.x58_c00159{left:446.666667pt;}
.x23_c00159{left:448.800000pt;}
.x64_c00159{left:455.600000pt;}
.x7f_c00159{left:458.533333pt;}
.x9e_c00159{left:476.133333pt;}
.xac_c00159{left:477.066667pt;}
.xc7_c00159{left:478.400000pt;}
.x117_c00159{left:480.666667pt;}
.x93_c00159{left:491.200000pt;}
.xa8_c00159{left:493.333333pt;}
.xb1_c00159{left:494.266667pt;}
.xfa_c00159{left:495.333333pt;}
.x11c_c00159{left:496.400000pt;}
.x104_c00159{left:504.400000pt;}
.x109_c00159{left:505.733333pt;}
.xad_c00159{left:507.200000pt;}
.xcb_c00159{left:508.800000pt;}
.xde_c00159{left:510.933333pt;}
.xd7_c00159{left:512.133333pt;}
.xef_c00159{left:513.466667pt;}
.xc8_c00159{left:515.466667pt;}
.xa9_c00159{left:516.666667pt;}
.xea_c00159{left:519.866667pt;}
.xca_c00159{left:522.266667pt;}
.x106_c00159{left:524.400000pt;}
.xe5_c00159{left:527.333333pt;}
.x9f_c00159{left:528.266667pt;}
.x9a_c00159{left:530.666667pt;}
.x12d_c00159{left:531.600000pt;}
.xbf_c00159{left:533.333333pt;}
.x113_c00159{left:534.666667pt;}
.x119_c00159{left:536.000000pt;}
.xa0_c00159{left:538.666667pt;}
.xe6_c00159{left:542.400000pt;}
.xdf_c00159{left:543.866667pt;}
.x94_c00159{left:545.333333pt;}
.xd3_c00159{left:546.666667pt;}
.x107_c00159{left:549.066667pt;}
.x10a_c00159{left:550.800000pt;}
.x11d_c00159{left:552.400000pt;}
.xf4_c00159{left:553.333333pt;}
.xc4_c00159{left:555.466667pt;}
.xd8_c00159{left:556.933333pt;}
.xb8_c00159{left:560.400000pt;}
.x9b_c00159{left:561.333333pt;}
.x110_c00159{left:563.066667pt;}
.xa1_c00159{left:564.000000pt;}
.x108_c00159{left:566.000000pt;}
.xcc_c00159{left:567.733333pt;}
.xe7_c00159{left:568.933333pt;}
.xaa_c00159{left:570.400000pt;}
.xe0_c00159{left:571.733333pt;}
.xc5_c00159{left:573.066667pt;}
.xb2_c00159{left:574.266667pt;}
.x9c_c00159{left:576.000000pt;}
.xd9_c00159{left:579.066667pt;}
.x111_c00159{left:580.000000pt;}
.xfb_c00159{left:581.066667pt;}
.xae_c00159{left:582.133333pt;}
.xd4_c00159{left:583.466667pt;}
.xe1_c00159{left:585.200000pt;}
.xcd_c00159{left:587.600000pt;}
.x133_c00159{left:588.533333pt;}
.xf5_c00159{left:590.133333pt;}
.x95_c00159{left:592.000000pt;}
.x12a_c00159{left:593.200000pt;}
.x124_c00159{left:595.866667pt;}
.xce_c00159{left:596.933333pt;}
.x120_c00159{left:601.200000pt;}
.xd5_c00159{left:602.933333pt;}
.xb9_c00159{left:604.000000pt;}
.x114_c00159{left:606.666667pt;}
.xe8_c00159{left:607.866667pt;}
.xe2_c00159{left:611.066667pt;}
.x131_c00159{left:612.133333pt;}
.xa2_c00159{left:613.333333pt;}
.xc6_c00159{left:616.000000pt;}
.xf0_c00159{left:617.466667pt;}
.x123_c00159{left:618.933333pt;}
.x10b_c00159{left:620.533333pt;}
.x96_c00159{left:621.733333pt;}
.xf7_c00159{left:624.266667pt;}
.xb3_c00159{left:625.466667pt;}
.xc0_c00159{left:626.800000pt;}
.xda_c00159{left:628.000000pt;}
.xeb_c00159{left:629.600000pt;}
.x10c_c00159{left:633.333333pt;}
.xa3_c00159{left:636.666667pt;}
.xcf_c00159{left:638.266667pt;}
.x97_c00159{left:640.000000pt;}
.xe9_c00159{left:641.466667pt;}
.x121_c00159{left:642.533333pt;}
.x9d_c00159{left:643.866667pt;}
.xdb_c00159{left:644.933333pt;}
.xfc_c00159{left:646.000000pt;}
.xc9_c00159{left:647.066667pt;}
.xba_c00159{left:649.200000pt;}
.xb4_c00159{left:650.133333pt;}
.x11e_c00159{left:651.466667pt;}
.x10d_c00159{left:652.533333pt;}
.xd0_c00159{left:655.200000pt;}
.x125_c00159{left:658.933333pt;}
.xfe_c00159{left:661.466667pt;}
.x128_c00159{left:662.666667pt;}
.xa4_c00159{left:664.533333pt;}
.xb5_c00159{left:666.400000pt;}
.x12f_c00159{left:667.733333pt;}
.xe3_c00159{left:669.066667pt;}
.x132_c00159{left:670.133333pt;}
.xd1_c00159{left:671.866667pt;}
.xf1_c00159{left:674.400000pt;}
.xec_c00159{left:676.400000pt;}
.xa5_c00159{left:678.266667pt;}
.xf6_c00159{left:679.333333pt;}
.x134_c00159{left:680.266667pt;}
.x115_c00159{left:681.200000pt;}
.x12c_c00159{left:682.933333pt;}
.x10e_c00159{left:684.533333pt;}
.x98_c00159{left:685.466667pt;}
.xd2_c00159{left:688.133333pt;}
.xbb_c00159{left:690.133333pt;}
.x126_c00159{left:691.200000pt;}
.xc1_c00159{left:692.400000pt;}
.x116_c00159{left:694.266667pt;}
.x11f_c00159{left:695.333333pt;}
.x112_c00159{left:696.800000pt;}
.xfd_c00159{left:697.733333pt;}
.x130_c00159{left:699.066667pt;}
.xb6_c00159{left:700.666667pt;}
.x12b_c00159{left:703.200000pt;}
.xa6_c00159{left:704.133333pt;}
.xff_c00159{left:705.733333pt;}
.xc2_c00159{left:706.800000pt;}
.x12e_c00159{left:708.933333pt;}
.xdc_c00159{left:709.866667pt;}
.x102_c00159{left:713.600000pt;}
.x105_c00159{left:714.533333pt;}
.xbc_c00159{left:715.466667pt;}
.xf2_c00159{left:717.866667pt;}
.xe4_c00159{left:720.266667pt;}
.xed_c00159{left:722.133333pt;}
.x129_c00159{left:723.733333pt;}
.xaf_c00159{left:725.600000pt;}
.x127_c00159{left:728.000000pt;}
.x135_c00159{left:728.933333pt;}
.x11a_c00159{left:730.266667pt;}
.x100_c00159{left:732.666667pt;}
.x122_c00159{left:734.400000pt;}
.x10f_c00159{left:735.866667pt;}
.xb0_c00159{left:739.066667pt;}
.xd6_c00159{left:740.533333pt;}
.xbd_c00159{left:742.000000pt;}
.xf8_c00159{left:745.200000pt;}
.xab_c00159{left:746.666667pt;}
.xb7_c00159{left:748.933333pt;}
.xee_c00159{left:751.200000pt;}
.x118_c00159{left:752.666667pt;}
.xdd_c00159{left:754.400000pt;}
.xa7_c00159{left:756.666667pt;}
.xc3_c00159{left:758.666667pt;}
.x99_c00159{left:760.666667pt;}
.x101_c00159{left:762.800000pt;}
.x103_c00159{left:764.533333pt;}
.xf3_c00159{left:766.533333pt;}
.xf9_c00159{left:768.933333pt;}
.xbe_c00159{left:770.133333pt;}
.x11b_c00159{left:775.066667pt;}
}





/* 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_c00160 {
    display:none;
  }
  .loading-indicator_c00160.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00160 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_c00160 { 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_c00160" -> "#page-container .classname_c00160")
 */
.pf_c00160 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00160 { /* 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_c00160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00160 { /* 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_c00160 { /* 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_c00160 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00160 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00160 {overflow:visible;}
  }
}
.c_c00160 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00160 { /* 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_c00160:after { /* webkit #35443 */
  content: '';
}
.t_c00160:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00160 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 */
}
.__c00160 { /* 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_c00160 { /* info for Javascript */
  display:none;
}
.l_c00160 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00160 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00160 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00160: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_c00160 {
    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_c00160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00160.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_c00160 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00160;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.000000;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_c00160{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mde_c00160{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m48_c00160{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.md9_c00160{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00160{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00160{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m30_c00160{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m21_c00160{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m31_c00160{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00160{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m32_c00160{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m12_c00160{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m105_c00160{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mab_c00160{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00160{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m11_c00160{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m24_c00160{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m41_c00160{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00160{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m94_c00160{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m26_c00160{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m99_c00160{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00160{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mf_c00160{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00160{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00160{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m40_c00160{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00160{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m25_c00160{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00160{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m120_c00160{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m34_c00160{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00160{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m20_c00160{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00160{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00160{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m13_c00160{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.md7_c00160{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m80_c00160{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00160{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m18_c00160{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m14_c00160{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m98_c00160{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me9_c00160{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00160{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00160{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00160{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00160{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m81_c00160{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00160{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00160{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m66_c00160{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00160{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00160{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00160{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00160{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m84_c00160{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m64_c00160{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me6_c00160{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m126_c00160{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00160{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00160{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m83_c00160{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00160{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.md1_c00160{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m75_c00160{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m123_c00160{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m122_c00160{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m107_c00160{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.maa_c00160{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m59_c00160{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma_c00160{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m54_c00160{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m90_c00160{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m108_c00160{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m93_c00160{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00160{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00160{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m86_c00160{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00160{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00160{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00160{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00160{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m17_c00160{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00160{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00160{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00160{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00160{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00160{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mef_c00160{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00160{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00160{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00160{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m55_c00160{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mca_c00160{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m97_c00160{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00160{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me7_c00160{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00160{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m23_c00160{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m79_c00160{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00160{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m116_c00160{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m92_c00160{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me8_c00160{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m63_c00160{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00160{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m61_c00160{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00160{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m50_c00160{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m58_c00160{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m89_c00160{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00160{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00160{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m22_c00160{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00160{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m62_c00160{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m38_c00160{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m37_c00160{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00160{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md6_c00160{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m16_c00160{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m46_c00160{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00160{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m36_c00160{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00160{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m57_c00160{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00160{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00160{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mac_c00160{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m56_c00160{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me5_c00160{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m42_c00160{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00160{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m76_c00160{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9_c00160{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m70_c00160{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m72_c00160{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.med_c00160{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00160{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mce_c00160{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00160{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00160{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00160{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md_c00160{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00160{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m44_c00160{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m104_c00160{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m65_c00160{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mc_c00160{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00160{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00160{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m39_c00160{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m91_c00160{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m71_c00160{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00160{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m113_c00160{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.me_c00160{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md8_c00160{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00160{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m69_c00160{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb_c00160{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md5_c00160{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m117_c00160{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00160{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00160{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.md0_c00160{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00160{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mff_c00160{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m35_c00160{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m106_c00160{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m85_c00160{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mae_c00160{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mea_c00160{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00160{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00160{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.maf_c00160{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m60_c00160{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00160{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m68_c00160{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00160{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00160{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00160{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m103_c00160{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m45_c00160{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mee_c00160{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m43_c00160{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00160{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me0_c00160{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00160{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me4_c00160{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m28_c00160{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00160{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00160{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m88_c00160{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m78_c00160{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m101_c00160{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m102_c00160{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00160{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m77_c00160{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00160{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00160{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m67_c00160{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m19_c00160{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00160{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.me3_c00160{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m49_c00160{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m53_c00160{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00160{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00160{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m87_c00160{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00160{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00160{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m82_c00160{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00160{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00160{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00160{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m73_c00160{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m124_c00160{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8_c00160{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m127_c00160{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mec_c00160{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00160{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m112_c00160{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m125_c00160{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00160{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00160{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m15_c00160{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m95_c00160{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00160{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00160{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.meb_c00160{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md2_c00160{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m74_c00160{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me2_c00160{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00160{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m29_c00160{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m118_c00160{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m110_c00160{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00160{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00160{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00160{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mad_c00160{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00160{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00160{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00160{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00160{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m115_c00160{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m47_c00160{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md3_c00160{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00160{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00160{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00160{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m100_c00160{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m52_c00160{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m119_c00160{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00160{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m109_c00160{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00160{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00160{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00160{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00160{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00160{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00160{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00160{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00160{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00160{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00160{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mba_c00160{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00160{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00160{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m111_c00160{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m114_c00160{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00160{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m121_c00160{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.md4_c00160{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00160{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m51_c00160{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00160{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m96_c00160{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m33_c00160{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mda_c00160{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me1_c00160{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00160{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00160{transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);}
.m6_c00160{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00160{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m27_c00160{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c00160{transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00160{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00160{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m5_c00160{transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.864000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.864000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.864000,0.000000,0.000000,0.250000,0,0);}
.m3_c00160{transform:matrix(0.888000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.888000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.888000,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls1_c00160{letter-spacing:0.000000px;}
.ls0_c00160{letter-spacing:54.000000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{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__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00160{word-spacing:-72.000000px;}
.ws7_c00160{word-spacing:-6.060453px;}
.ws6_c00160{word-spacing:-1.718750px;}
.wsa_c00160{word-spacing:0.000000px;}
.ws5_c00160{word-spacing:2.702703px;}
.ws8_c00160{word-spacing:5.468750px;}
.ws9_c00160{word-spacing:12.297297px;}
.ws1_c00160{word-spacing:21.500000px;}
.ws4_c00160{word-spacing:38.262295px;}
.ws3_c00160{word-spacing:40.000000px;}
.ws0_c00160{word-spacing:2208.642857px;}
._0_c00160{margin-left:-54.000000px;}
._1_c00160{width:74.166667px;}
._2_c00160{width:365.833333px;}
.fc0_c00160{color:transparent;}
.fs1_c00160{font-size:30.000000px;}
.fs4_c00160{font-size:36.000000px;}
.fs0_c00160{font-size:48.000000px;}
.fs6_c00160{font-size:54.000000px;}
.fs5_c00160{font-size:60.000000px;}
.fs3_c00160{font-size:66.000000px;}
.fs7_c00160{font-size:72.000000px;}
.fs2_c00160{font-size:78.000000px;}
.y0_c00160{bottom:0.000000px;}
.y1_c00160{bottom:105.450000px;}
.y69_c00160{bottom:153.300000px;}
.y68_c00160{bottom:166.650000px;}
.y67_c00160{bottom:186.150000px;}
.y38_c00160{bottom:186.900000px;}
.y37_c00160{bottom:203.400000px;}
.y66_c00160{bottom:204.450000px;}
.y36_c00160{bottom:215.250000px;}
.y65_c00160{bottom:222.150000px;}
.y35_c00160{bottom:246.900000px;}
.y64_c00160{bottom:249.450000px;}
.y34_c00160{bottom:261.000000px;}
.y63_c00160{bottom:267.150000px;}
.y33_c00160{bottom:275.400000px;}
.y62_c00160{bottom:285.150000px;}
.y32_c00160{bottom:289.500000px;}
.y31_c00160{bottom:304.200000px;}
.y61_c00160{bottom:306.750000px;}
.y30_c00160{bottom:316.800000px;}
.y60_c00160{bottom:324.750000px;}
.y2f_c00160{bottom:332.100000px;}
.y2e_c00160{bottom:349.800000px;}
.y5f_c00160{bottom:350.550000px;}
.y2d_c00160{bottom:368.100000px;}
.y5e_c00160{bottom:368.550000px;}
.y2c_c00160{bottom:385.800000px;}
.y5d_c00160{bottom:386.250000px;}
.y2b_c00160{bottom:403.500000px;}
.y5c_c00160{bottom:404.550000px;}
.y2a_c00160{bottom:421.200000px;}
.y5b_c00160{bottom:422.250000px;}
.y29_c00160{bottom:444.000000px;}
.y5a_c00160{bottom:444.600000px;}
.y28_c00160{bottom:461.250000px;}
.y59_c00160{bottom:462.900000px;}
.y27_c00160{bottom:479.550000px;}
.y58_c00160{bottom:480.600000px;}
.y26_c00160{bottom:497.100000px;}
.y57_c00160{bottom:498.300000px;}
.y25_c00160{bottom:515.100000px;}
.y56_c00160{bottom:519.900000px;}
.y24_c00160{bottom:532.800000px;}
.y55_c00160{bottom:537.600000px;}
.y23_c00160{bottom:550.500000px;}
.y54_c00160{bottom:555.600000px;}
.y22_c00160{bottom:572.700000px;}
.y53_c00160{bottom:573.900000px;}
.y21_c00160{bottom:590.400000px;}
.y52_c00160{bottom:591.600000px;}
.y51_c00160{bottom:609.600000px;}
.y20_c00160{bottom:612.300000px;}
.y50_c00160{bottom:627.300000px;}
.y1f_c00160{bottom:634.950000px;}
.y4f_c00160{bottom:645.000000px;}
.y1e_c00160{bottom:652.200000px;}
.y4e_c00160{bottom:663.000000px;}
.y1d_c00160{bottom:670.200000px;}
.y4d_c00160{bottom:681.000000px;}
.y1c_c00160{bottom:688.200000px;}
.y4c_c00160{bottom:698.700000px;}
.y1b_c00160{bottom:705.900000px;}
.y4b_c00160{bottom:716.700000px;}
.y1a_c00160{bottom:728.250000px;}
.y4a_c00160{bottom:734.400000px;}
.y19_c00160{bottom:745.950000px;}
.y49_c00160{bottom:752.400000px;}
.y18_c00160{bottom:763.950000px;}
.y48_c00160{bottom:770.400000px;}
.y17_c00160{bottom:786.300000px;}
.y47_c00160{bottom:788.100000px;}
.y16_c00160{bottom:804.300000px;}
.y46_c00160{bottom:806.100000px;}
.y15_c00160{bottom:822.300000px;}
.y45_c00160{bottom:823.800000px;}
.y14_c00160{bottom:839.850000px;}
.y44_c00160{bottom:841.800000px;}
.y43_c00160{bottom:859.800000px;}
.y13_c00160{bottom:862.200000px;}
.y42_c00160{bottom:877.500000px;}
.y12_c00160{bottom:884.400000px;}
.y41_c00160{bottom:895.500000px;}
.y11_c00160{bottom:902.400000px;}
.y40_c00160{bottom:913.200000px;}
.y10_c00160{bottom:920.400000px;}
.y3f_c00160{bottom:930.900000px;}
.yf_c00160{bottom:938.100000px;}
.y3e_c00160{bottom:948.600000px;}
.ye_c00160{bottom:956.100000px;}
.y3d_c00160{bottom:966.300000px;}
.yd_c00160{bottom:973.800000px;}
.y3c_c00160{bottom:984.300000px;}
.yc_c00160{bottom:991.800000px;}
.y3b_c00160{bottom:1002.300000px;}
.yb_c00160{bottom:1009.500000px;}
.y3a_c00160{bottom:1020.600000px;}
.ya_c00160{bottom:1027.800000px;}
.y39_c00160{bottom:1037.850000px;}
.y9_c00160{bottom:1045.500000px;}
.y8_c00160{bottom:1063.350000px;}
.y7_c00160{bottom:1081.350000px;}
.y6_c00160{bottom:1085.250000px;}
.y5_c00160{bottom:1100.700000px;}
.y4_c00160{bottom:1116.600000px;}
.y3_c00160{bottom:1140.750000px;}
.y2_c00160{bottom:1266.450000px;}
.h3_c00160{height:30.000000px;}
.h6_c00160{height:36.000000px;}
.h2_c00160{height:48.000000px;}
.h8_c00160{height:54.000000px;}
.h7_c00160{height:60.000000px;}
.h5_c00160{height:66.000000px;}
.h9_c00160{height:72.000000px;}
.h4_c00160{height:78.000000px;}
.h1_c00160{height:1275.000000px;}
.h0_c00160{height:1275.119934px;}
.w1_c00160{width:953.250000px;}
.w0_c00160{width:953.280030px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:2.100000px;}
.xc5_c00160{left:81.750000px;}
.xbd_c00160{left:82.800000px;}
.x76_c00160{left:84.000000px;}
.x85_c00160{left:85.350000px;}
.xc2_c00160{left:97.950000px;}
.xc6_c00160{left:99.000000px;}
.x9e_c00160{left:100.500000px;}
.xa6_c00160{left:101.550000px;}
.x98_c00160{left:103.050000px;}
.x44_c00160{left:104.400000px;}
.xa_c00160{left:105.600000px;}
.xaf_c00160{left:108.450000px;}
.x27_c00160{left:112.650000px;}
.xab_c00160{left:114.150000px;}
.xa0_c00160{left:121.350000px;}
.x45_c00160{left:123.150000px;}
.x7c_c00160{left:124.200000px;}
.xb0_c00160{left:126.450000px;}
.x4b_c00160{left:128.250000px;}
.x5c_c00160{left:129.900000px;}
.x18_c00160{left:135.300000px;}
.x60_c00160{left:136.650000px;}
.xb3_c00160{left:139.050000px;}
.x77_c00160{left:142.650000px;}
.x86_c00160{left:144.000000px;}
.x9c_c00160{left:145.050000px;}
.x51_c00160{left:147.000000px;}
.x56_c00160{left:148.500000px;}
.x84_c00160{left:149.700000px;}
.x5d_c00160{left:150.750000px;}
.xbc_c00160{left:153.000000px;}
.x9f_c00160{left:155.250000px;}
.x2c_c00160{left:159.900000px;}
.x7d_c00160{left:163.050000px;}
.x78_c00160{left:164.550000px;}
.x80_c00160{left:165.600000px;}
.x91_c00160{left:167.100000px;}
.x19_c00160{left:168.450000px;}
.x36_c00160{left:170.250000px;}
.xa3_c00160{left:171.300000px;}
.xb6_c00160{left:172.500000px;}
.xb_c00160{left:173.700000px;}
.x68_c00160{left:177.300000px;}
.x1a_c00160{left:181.050000px;}
.x99_c00160{left:182.850000px;}
.xb7_c00160{left:184.050000px;}
.x37_c00160{left:185.400000px;}
.x8c_c00160{left:186.750000px;}
.x6d_c00160{left:189.000000px;}
.x46_c00160{left:190.500000px;}
.xb9_c00160{left:191.700000px;}
.x72_c00160{left:196.200000px;}
.x1b_c00160{left:197.550000px;}
.x9d_c00160{left:200.100000px;}
.x96_c00160{left:202.800000px;}
.x2d_c00160{left:204.900000px;}
.x61_c00160{left:207.150000px;}
.xa7_c00160{left:208.200000px;}
.x66_c00160{left:209.850000px;}
.x5e_c00160{left:211.350000px;}
.x4c_c00160{left:213.600000px;}
.x28_c00160{left:217.050000px;}
.x73_c00160{left:221.100000px;}
.xb4_c00160{left:222.900000px;}
.x52_c00160{left:224.100000px;}
.xa4_c00160{left:225.600000px;}
.x79_c00160{left:227.250000px;}
.x87_c00160{left:228.300000px;}
.x69_c00160{left:229.500000px;}
.x57_c00160{left:230.550000px;}
.xc_c00160{left:233.400000px;}
.xa8_c00160{left:234.450000px;}
.x6e_c00160{left:235.800000px;}
.xaa_c00160{left:238.950000px;}
.x62_c00160{left:240.300000px;}
.x97_c00160{left:241.350000px;}
.xb1_c00160{left:244.200000px;}
.x8d_c00160{left:247.200000px;}
.x92_c00160{left:248.250000px;}
.x53_c00160{left:250.350000px;}
.xb8_c00160{left:251.700000px;}
.xa5_c00160{left:252.900000px;}
.x9a_c00160{left:254.250000px;}
.x47_c00160{left:255.300000px;}
.xbe_c00160{left:257.550000px;}
.x74_c00160{left:258.900000px;}
.x63_c00160{left:261.600000px;}
.x67_c00160{left:263.250000px;}
.x1c_c00160{left:264.900000px;}
.x4d_c00160{left:266.400000px;}
.x8e_c00160{left:267.750000px;}
.x75_c00160{left:270.450000px;}
.xae_c00160{left:273.900000px;}
.x38_c00160{left:275.400000px;}
.xd_c00160{left:276.600000px;}
.x6a_c00160{left:278.400000px;}
.xac_c00160{left:280.350000px;}
.x81_c00160{left:282.000000px;}
.x6f_c00160{left:286.500000px;}
.x39_c00160{left:289.500000px;}
.xc7_c00160{left:290.850000px;}
.x2e_c00160{left:293.400000px;}
.xb5_c00160{left:295.650000px;}
.xba_c00160{left:298.800000px;}
.xa1_c00160{left:300.750000px;}
.x54_c00160{left:303.300000px;}
.x88_c00160{left:304.650000px;}
.x58_c00160{left:305.850000px;}
.x93_c00160{left:309.150000px;}
.xe_c00160{left:310.500000px;}
.x6b_c00160{left:311.850000px;}
.x64_c00160{left:313.050000px;}
.xb2_c00160{left:319.800000px;}
.xbf_c00160{left:322.200000px;}
.x48_c00160{left:323.250000px;}
.xc3_c00160{left:326.550000px;}
.x7a_c00160{left:327.750000px;}
.x5f_c00160{left:329.100000px;}
.x8_c00160{left:331.950000px;}
.x1d_c00160{left:336.150000px;}
.xbb_c00160{left:337.350000px;}
.x89_c00160{left:338.550000px;}
.x9b_c00160{left:340.650000px;}
.x4e_c00160{left:341.700000px;}
.xa9_c00160{left:343.200000px;}
.x59_c00160{left:344.400000px;}
.x82_c00160{left:345.750000px;}
.x3a_c00160{left:346.800000px;}
.x94_c00160{left:348.750000px;}
.x55_c00160{left:351.900000px;}
.x1e_c00160{left:353.100000px;}
.xc4_c00160{left:357.900000px;}
.x3b_c00160{left:359.400000px;}
.x7e_c00160{left:360.600000px;}
.x7b_c00160{left:362.250000px;}
.x4f_c00160{left:364.050000px;}
.x70_c00160{left:365.700000px;}
.x83_c00160{left:367.050000px;}
.x7f_c00160{left:369.300000px;}
.xa2_c00160{left:371.700000px;}
.xf_c00160{left:373.200000px;}
.x2f_c00160{left:374.400000px;}
.x1f_c00160{left:375.750000px;}
.x6c_c00160{left:376.950000px;}
.x5a_c00160{left:379.350000px;}
.x8f_c00160{left:381.450000px;}
.x8a_c00160{left:382.500000px;}
.x50_c00160{left:383.550000px;}
.x65_c00160{left:385.050000px;}
.x71_c00160{left:386.250000px;}
.x20_c00160{left:387.300000px;}
.xc8_c00160{left:390.150000px;}
.x49_c00160{left:392.400000px;}
.x10_c00160{left:395.850000px;}
.x5b_c00160{left:398.850000px;}
.xc1_c00160{left:400.650000px;}
.xad_c00160{left:402.450000px;}
.x90_c00160{left:403.800000px;}
.xc0_c00160{left:405.750000px;}
.x3c_c00160{left:409.050000px;}
.x95_c00160{left:411.000000px;}
.x8b_c00160{left:412.350000px;}
.x4a_c00160{left:433.500000px;}
.x132_c00160{left:441.000000px;}
.x143_c00160{left:442.050000px;}
.xc9_c00160{left:444.000000px;}
.x137_c00160{left:457.950000px;}
.x139_c00160{left:459.150000px;}
.xf0_c00160{left:460.350000px;}
.xda_c00160{left:461.400000px;}
.xcd_c00160{left:462.450000px;}
.x2_c00160{left:463.650000px;}
.x11_c00160{left:473.250000px;}
.x146_c00160{left:477.750000px;}
.x102_c00160{left:481.050000px;}
.xf1_c00160{left:485.250000px;}
.xe2_c00160{left:487.200000px;}
.xdb_c00160{left:489.900000px;}
.x145_c00160{left:491.400000px;}
.x105_c00160{left:492.750000px;}
.xf8_c00160{left:493.800000px;}
.xff_c00160{left:495.150000px;}
.x10e_c00160{left:497.400000px;}
.x11c_c00160{left:499.800000px;}
.xeb_c00160{left:501.000000px;}
.xf9_c00160{left:503.250000px;}
.xf2_c00160{left:504.300000px;}
.x122_c00160{left:506.700000px;}
.x12e_c00160{left:508.200000px;}
.x138_c00160{left:509.400000px;}
.x126_c00160{left:511.950000px;}
.xd5_c00160{left:514.950000px;}
.x114_c00160{left:518.850000px;}
.xe3_c00160{left:521.100000px;}
.x117_c00160{left:524.400000px;}
.xce_c00160{left:525.750000px;}
.xca_c00160{left:527.550000px;}
.x108_c00160{left:528.900000px;}
.x11e_c00160{left:530.250000px;}
.xe4_c00160{left:531.600000px;}
.x123_c00160{left:532.950000px;}
.x12_c00160{left:534.750000px;}
.x112_c00160{left:538.350000px;}
.x21_c00160{left:541.050000px;}
.x13d_c00160{left:543.300000px;}
.x12a_c00160{left:544.500000px;}
.x3_c00160{left:546.150000px;}
.x109_c00160{left:548.400000px;}
.xf3_c00160{left:550.350000px;}
.xdc_c00160{left:552.150000px;}
.x3d_c00160{left:553.350000px;}
.x13_c00160{left:554.550000px;}
.x29_c00160{left:556.200000px;}
.xe5_c00160{left:557.550000px;}
.x127_c00160{left:559.800000px;}
.x22_c00160{left:560.850000px;}
.x11d_c00160{left:562.350000px;}
.xfa_c00160{left:563.400000px;}
.x30_c00160{left:564.900000px;}
.x130_c00160{left:566.100000px;}
.x133_c00160{left:567.750000px;}
.x11f_c00160{left:569.100000px;}
.x4_c00160{left:571.050000px;}
.xfe_c00160{left:572.400000px;}
.xd6_c00160{left:573.600000px;}
.x13e_c00160{left:576.150000px;}
.x100_c00160{left:577.650000px;}
.x124_c00160{left:580.050000px;}
.x13a_c00160{left:581.100000px;}
.x14_c00160{left:583.050000px;}
.x13b_c00160{left:587.100000px;}
.xdd_c00160{left:588.450000px;}
.x103_c00160{left:590.400000px;}
.xcf_c00160{left:592.350000px;}
.x3e_c00160{left:594.450000px;}
.x118_c00160{left:596.100000px;}
.x10a_c00160{left:597.300000px;}
.x120_c00160{left:600.000000px;}
.x134_c00160{left:602.250000px;}
.xde_c00160{left:606.750000px;}
.x31_c00160{left:609.150000px;}
.x12f_c00160{left:611.850000px;}
.x3f_c00160{left:613.500000px;}
.x131_c00160{left:615.000000px;}
.x32_c00160{left:616.350000px;}
.x101_c00160{left:618.300000px;}
.xec_c00160{left:619.800000px;}
.x14a_c00160{left:621.150000px;}
.x113_c00160{left:622.650000px;}
.x135_c00160{left:623.850000px;}
.xed_c00160{left:625.200000px;}
.x104_c00160{left:626.400000px;}
.xcb_c00160{left:627.750000px;}
.xe6_c00160{left:629.550000px;}
.xfb_c00160{left:631.800000px;}
.xf4_c00160{left:634.500000px;}
.x14b_c00160{left:636.300000px;}
.xd7_c00160{left:637.350000px;}
.x149_c00160{left:638.550000px;}
.xe7_c00160{left:640.350000px;}
.x140_c00160{left:641.400000px;}
.xfc_c00160{left:642.900000px;}
.x148_c00160{left:643.950000px;}
.xd8_c00160{left:646.050000px;}
.xd0_c00160{left:648.150000px;}
.x12b_c00160{left:650.100000px;}
.x40_c00160{left:651.300000px;}
.xdf_c00160{left:653.550000px;}
.x13c_c00160{left:655.950000px;}
.x119_c00160{left:657.300000px;}
.x144_c00160{left:659.250000px;}
.x2a_c00160{left:660.600000px;}
.x10b_c00160{left:663.300000px;}
.xd1_c00160{left:665.850000px;}
.x33_c00160{left:667.050000px;}
.x11a_c00160{left:668.850000px;}
.x10f_c00160{left:670.200000px;}
.x5_c00160{left:671.850000px;}
.x41_c00160{left:673.650000px;}
.x2b_c00160{left:675.000000px;}
.xe0_c00160{left:677.250000px;}
.xf5_c00160{left:679.200000px;}
.x34_c00160{left:681.450000px;}
.x141_c00160{left:684.300000px;}
.xee_c00160{left:685.650000px;}
.x147_c00160{left:686.850000px;}
.x42_c00160{left:688.050000px;}
.x14c_c00160{left:689.250000px;}
.x23_c00160{left:690.450000px;}
.x6_c00160{left:691.650000px;}
.xe8_c00160{left:694.650000px;}
.x110_c00160{left:695.700000px;}
.xfd_c00160{left:700.800000px;}
.xf6_c00160{left:701.850000px;}
.x115_c00160{left:703.350000px;}
.x15_c00160{left:705.150000px;}
.x12c_c00160{left:706.200000px;}
.x35_c00160{left:708.150000px;}
.x24_c00160{left:709.500000px;}
.x10c_c00160{left:711.900000px;}
.x7_c00160{left:714.300000px;}
.x106_c00160{left:715.650000px;}
.x121_c00160{left:717.300000px;}
.xd2_c00160{left:719.100000px;}
.xe1_c00160{left:721.500000px;}
.xef_c00160{left:723.150000px;}
.x128_c00160{left:724.200000px;}
.x12d_c00160{left:726.000000px;}
.x13f_c00160{left:729.600000px;}
.xd9_c00160{left:730.650000px;}
.x16_c00160{left:731.850000px;}
.x136_c00160{left:733.650000px;}
.x142_c00160{left:734.700000px;}
.x43_c00160{left:736.350000px;}
.x25_c00160{left:738.300000px;}
.xd3_c00160{left:739.950000px;}
.xe9_c00160{left:741.150000px;}
.x129_c00160{left:744.000000px;}
.x116_c00160{left:745.050000px;}
.xcc_c00160{left:746.850000px;}
.x11b_c00160{left:748.500000px;}
.x10d_c00160{left:749.700000px;}
.x107_c00160{left:751.650000px;}
.x9_c00160{left:753.900000px;}
.x125_c00160{left:757.200000px;}
.x111_c00160{left:760.500000px;}
.xf7_c00160{left:763.050000px;}
.x17_c00160{left:766.050000px;}
.x26_c00160{left:767.100000px;}
.xea_c00160{left:768.150000px;}
.xd4_c00160{left:774.900000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls1_c00160{letter-spacing:0.000000pt;}
.ls0_c00160{letter-spacing:48.000000pt;}
.ws2_c00160{word-spacing:-64.000000pt;}
.ws7_c00160{word-spacing:-5.387070pt;}
.ws6_c00160{word-spacing:-1.527778pt;}
.wsa_c00160{word-spacing:0.000000pt;}
.ws5_c00160{word-spacing:2.402402pt;}
.ws8_c00160{word-spacing:4.861111pt;}
.ws9_c00160{word-spacing:10.930931pt;}
.ws1_c00160{word-spacing:19.111111pt;}
.ws4_c00160{word-spacing:34.010929pt;}
.ws3_c00160{word-spacing:35.555556pt;}
.ws0_c00160{word-spacing:1963.238095pt;}
._0_c00160{margin-left:-48.000000pt;}
._1_c00160{width:65.925926pt;}
._2_c00160{width:325.185185pt;}
.fs1_c00160{font-size:26.666667pt;}
.fs4_c00160{font-size:32.000000pt;}
.fs0_c00160{font-size:42.666667pt;}
.fs6_c00160{font-size:48.000000pt;}
.fs5_c00160{font-size:53.333333pt;}
.fs3_c00160{font-size:58.666667pt;}
.fs7_c00160{font-size:64.000000pt;}
.fs2_c00160{font-size:69.333333pt;}
.y0_c00160{bottom:0.000000pt;}
.y1_c00160{bottom:93.733333pt;}
.y69_c00160{bottom:136.266667pt;}
.y68_c00160{bottom:148.133333pt;}
.y67_c00160{bottom:165.466667pt;}
.y38_c00160{bottom:166.133333pt;}
.y37_c00160{bottom:180.800000pt;}
.y66_c00160{bottom:181.733333pt;}
.y36_c00160{bottom:191.333333pt;}
.y65_c00160{bottom:197.466667pt;}
.y35_c00160{bottom:219.466667pt;}
.y64_c00160{bottom:221.733333pt;}
.y34_c00160{bottom:232.000000pt;}
.y63_c00160{bottom:237.466667pt;}
.y33_c00160{bottom:244.800000pt;}
.y62_c00160{bottom:253.466667pt;}
.y32_c00160{bottom:257.333333pt;}
.y31_c00160{bottom:270.400000pt;}
.y61_c00160{bottom:272.666667pt;}
.y30_c00160{bottom:281.600000pt;}
.y60_c00160{bottom:288.666667pt;}
.y2f_c00160{bottom:295.200000pt;}
.y2e_c00160{bottom:310.933333pt;}
.y5f_c00160{bottom:311.600000pt;}
.y2d_c00160{bottom:327.200000pt;}
.y5e_c00160{bottom:327.600000pt;}
.y2c_c00160{bottom:342.933333pt;}
.y5d_c00160{bottom:343.333333pt;}
.y2b_c00160{bottom:358.666667pt;}
.y5c_c00160{bottom:359.600000pt;}
.y2a_c00160{bottom:374.400000pt;}
.y5b_c00160{bottom:375.333333pt;}
.y29_c00160{bottom:394.666667pt;}
.y5a_c00160{bottom:395.200000pt;}
.y28_c00160{bottom:410.000000pt;}
.y59_c00160{bottom:411.466667pt;}
.y27_c00160{bottom:426.266667pt;}
.y58_c00160{bottom:427.200000pt;}
.y26_c00160{bottom:441.866667pt;}
.y57_c00160{bottom:442.933333pt;}
.y25_c00160{bottom:457.866667pt;}
.y56_c00160{bottom:462.133333pt;}
.y24_c00160{bottom:473.600000pt;}
.y55_c00160{bottom:477.866667pt;}
.y23_c00160{bottom:489.333333pt;}
.y54_c00160{bottom:493.866667pt;}
.y22_c00160{bottom:509.066667pt;}
.y53_c00160{bottom:510.133333pt;}
.y21_c00160{bottom:524.800000pt;}
.y52_c00160{bottom:525.866667pt;}
.y51_c00160{bottom:541.866667pt;}
.y20_c00160{bottom:544.266667pt;}
.y50_c00160{bottom:557.600000pt;}
.y1f_c00160{bottom:564.400000pt;}
.y4f_c00160{bottom:573.333333pt;}
.y1e_c00160{bottom:579.733333pt;}
.y4e_c00160{bottom:589.333333pt;}
.y1d_c00160{bottom:595.733333pt;}
.y4d_c00160{bottom:605.333333pt;}
.y1c_c00160{bottom:611.733333pt;}
.y4c_c00160{bottom:621.066667pt;}
.y1b_c00160{bottom:627.466667pt;}
.y4b_c00160{bottom:637.066667pt;}
.y1a_c00160{bottom:647.333333pt;}
.y4a_c00160{bottom:652.800000pt;}
.y19_c00160{bottom:663.066667pt;}
.y49_c00160{bottom:668.800000pt;}
.y18_c00160{bottom:679.066667pt;}
.y48_c00160{bottom:684.800000pt;}
.y17_c00160{bottom:698.933333pt;}
.y47_c00160{bottom:700.533333pt;}
.y16_c00160{bottom:714.933333pt;}
.y46_c00160{bottom:716.533333pt;}
.y15_c00160{bottom:730.933333pt;}
.y45_c00160{bottom:732.266667pt;}
.y14_c00160{bottom:746.533333pt;}
.y44_c00160{bottom:748.266667pt;}
.y43_c00160{bottom:764.266667pt;}
.y13_c00160{bottom:766.400000pt;}
.y42_c00160{bottom:780.000000pt;}
.y12_c00160{bottom:786.133333pt;}
.y41_c00160{bottom:796.000000pt;}
.y11_c00160{bottom:802.133333pt;}
.y40_c00160{bottom:811.733333pt;}
.y10_c00160{bottom:818.133333pt;}
.y3f_c00160{bottom:827.466667pt;}
.yf_c00160{bottom:833.866667pt;}
.y3e_c00160{bottom:843.200000pt;}
.ye_c00160{bottom:849.866667pt;}
.y3d_c00160{bottom:858.933333pt;}
.yd_c00160{bottom:865.600000pt;}
.y3c_c00160{bottom:874.933333pt;}
.yc_c00160{bottom:881.600000pt;}
.y3b_c00160{bottom:890.933333pt;}
.yb_c00160{bottom:897.333333pt;}
.y3a_c00160{bottom:907.200000pt;}
.ya_c00160{bottom:913.600000pt;}
.y39_c00160{bottom:922.533333pt;}
.y9_c00160{bottom:929.333333pt;}
.y8_c00160{bottom:945.200000pt;}
.y7_c00160{bottom:961.200000pt;}
.y6_c00160{bottom:964.666667pt;}
.y5_c00160{bottom:978.400000pt;}
.y4_c00160{bottom:992.533333pt;}
.y3_c00160{bottom:1014.000000pt;}
.y2_c00160{bottom:1125.733333pt;}
.h3_c00160{height:26.666667pt;}
.h6_c00160{height:32.000000pt;}
.h2_c00160{height:42.666667pt;}
.h8_c00160{height:48.000000pt;}
.h7_c00160{height:53.333333pt;}
.h5_c00160{height:58.666667pt;}
.h9_c00160{height:64.000000pt;}
.h4_c00160{height:69.333333pt;}
.h1_c00160{height:1133.333333pt;}
.h0_c00160{height:1133.439941pt;}
.w1_c00160{width:847.333333pt;}
.w0_c00160{width:847.360027pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:1.866667pt;}
.xc5_c00160{left:72.666667pt;}
.xbd_c00160{left:73.600000pt;}
.x76_c00160{left:74.666667pt;}
.x85_c00160{left:75.866667pt;}
.xc2_c00160{left:87.066667pt;}
.xc6_c00160{left:88.000000pt;}
.x9e_c00160{left:89.333333pt;}
.xa6_c00160{left:90.266667pt;}
.x98_c00160{left:91.600000pt;}
.x44_c00160{left:92.800000pt;}
.xa_c00160{left:93.866667pt;}
.xaf_c00160{left:96.400000pt;}
.x27_c00160{left:100.133333pt;}
.xab_c00160{left:101.466667pt;}
.xa0_c00160{left:107.866667pt;}
.x45_c00160{left:109.466667pt;}
.x7c_c00160{left:110.400000pt;}
.xb0_c00160{left:112.400000pt;}
.x4b_c00160{left:114.000000pt;}
.x5c_c00160{left:115.466667pt;}
.x18_c00160{left:120.266667pt;}
.x60_c00160{left:121.466667pt;}
.xb3_c00160{left:123.600000pt;}
.x77_c00160{left:126.800000pt;}
.x86_c00160{left:128.000000pt;}
.x9c_c00160{left:128.933333pt;}
.x51_c00160{left:130.666667pt;}
.x56_c00160{left:132.000000pt;}
.x84_c00160{left:133.066667pt;}
.x5d_c00160{left:134.000000pt;}
.xbc_c00160{left:136.000000pt;}
.x9f_c00160{left:138.000000pt;}
.x2c_c00160{left:142.133333pt;}
.x7d_c00160{left:144.933333pt;}
.x78_c00160{left:146.266667pt;}
.x80_c00160{left:147.200000pt;}
.x91_c00160{left:148.533333pt;}
.x19_c00160{left:149.733333pt;}
.x36_c00160{left:151.333333pt;}
.xa3_c00160{left:152.266667pt;}
.xb6_c00160{left:153.333333pt;}
.xb_c00160{left:154.400000pt;}
.x68_c00160{left:157.600000pt;}
.x1a_c00160{left:160.933333pt;}
.x99_c00160{left:162.533333pt;}
.xb7_c00160{left:163.600000pt;}
.x37_c00160{left:164.800000pt;}
.x8c_c00160{left:166.000000pt;}
.x6d_c00160{left:168.000000pt;}
.x46_c00160{left:169.333333pt;}
.xb9_c00160{left:170.400000pt;}
.x72_c00160{left:174.400000pt;}
.x1b_c00160{left:175.600000pt;}
.x9d_c00160{left:177.866667pt;}
.x96_c00160{left:180.266667pt;}
.x2d_c00160{left:182.133333pt;}
.x61_c00160{left:184.133333pt;}
.xa7_c00160{left:185.066667pt;}
.x66_c00160{left:186.533333pt;}
.x5e_c00160{left:187.866667pt;}
.x4c_c00160{left:189.866667pt;}
.x28_c00160{left:192.933333pt;}
.x73_c00160{left:196.533333pt;}
.xb4_c00160{left:198.133333pt;}
.x52_c00160{left:199.200000pt;}
.xa4_c00160{left:200.533333pt;}
.x79_c00160{left:202.000000pt;}
.x87_c00160{left:202.933333pt;}
.x69_c00160{left:204.000000pt;}
.x57_c00160{left:204.933333pt;}
.xc_c00160{left:207.466667pt;}
.xa8_c00160{left:208.400000pt;}
.x6e_c00160{left:209.600000pt;}
.xaa_c00160{left:212.400000pt;}
.x62_c00160{left:213.600000pt;}
.x97_c00160{left:214.533333pt;}
.xb1_c00160{left:217.066667pt;}
.x8d_c00160{left:219.733333pt;}
.x92_c00160{left:220.666667pt;}
.x53_c00160{left:222.533333pt;}
.xb8_c00160{left:223.733333pt;}
.xa5_c00160{left:224.800000pt;}
.x9a_c00160{left:226.000000pt;}
.x47_c00160{left:226.933333pt;}
.xbe_c00160{left:228.933333pt;}
.x74_c00160{left:230.133333pt;}
.x63_c00160{left:232.533333pt;}
.x67_c00160{left:234.000000pt;}
.x1c_c00160{left:235.466667pt;}
.x4d_c00160{left:236.800000pt;}
.x8e_c00160{left:238.000000pt;}
.x75_c00160{left:240.400000pt;}
.xae_c00160{left:243.466667pt;}
.x38_c00160{left:244.800000pt;}
.xd_c00160{left:245.866667pt;}
.x6a_c00160{left:247.466667pt;}
.xac_c00160{left:249.200000pt;}
.x81_c00160{left:250.666667pt;}
.x6f_c00160{left:254.666667pt;}
.x39_c00160{left:257.333333pt;}
.xc7_c00160{left:258.533333pt;}
.x2e_c00160{left:260.800000pt;}
.xb5_c00160{left:262.800000pt;}
.xba_c00160{left:265.600000pt;}
.xa1_c00160{left:267.333333pt;}
.x54_c00160{left:269.600000pt;}
.x88_c00160{left:270.800000pt;}
.x58_c00160{left:271.866667pt;}
.x93_c00160{left:274.800000pt;}
.xe_c00160{left:276.000000pt;}
.x6b_c00160{left:277.200000pt;}
.x64_c00160{left:278.266667pt;}
.xb2_c00160{left:284.266667pt;}
.xbf_c00160{left:286.400000pt;}
.x48_c00160{left:287.333333pt;}
.xc3_c00160{left:290.266667pt;}
.x7a_c00160{left:291.333333pt;}
.x5f_c00160{left:292.533333pt;}
.x8_c00160{left:295.066667pt;}
.x1d_c00160{left:298.800000pt;}
.xbb_c00160{left:299.866667pt;}
.x89_c00160{left:300.933333pt;}
.x9b_c00160{left:302.800000pt;}
.x4e_c00160{left:303.733333pt;}
.xa9_c00160{left:305.066667pt;}
.x59_c00160{left:306.133333pt;}
.x82_c00160{left:307.333333pt;}
.x3a_c00160{left:308.266667pt;}
.x94_c00160{left:310.000000pt;}
.x55_c00160{left:312.800000pt;}
.x1e_c00160{left:313.866667pt;}
.xc4_c00160{left:318.133333pt;}
.x3b_c00160{left:319.466667pt;}
.x7e_c00160{left:320.533333pt;}
.x7b_c00160{left:322.000000pt;}
.x4f_c00160{left:323.600000pt;}
.x70_c00160{left:325.066667pt;}
.x83_c00160{left:326.266667pt;}
.x7f_c00160{left:328.266667pt;}
.xa2_c00160{left:330.400000pt;}
.xf_c00160{left:331.733333pt;}
.x2f_c00160{left:332.800000pt;}
.x1f_c00160{left:334.000000pt;}
.x6c_c00160{left:335.066667pt;}
.x5a_c00160{left:337.200000pt;}
.x8f_c00160{left:339.066667pt;}
.x8a_c00160{left:340.000000pt;}
.x50_c00160{left:340.933333pt;}
.x65_c00160{left:342.266667pt;}
.x71_c00160{left:343.333333pt;}
.x20_c00160{left:344.266667pt;}
.xc8_c00160{left:346.800000pt;}
.x49_c00160{left:348.800000pt;}
.x10_c00160{left:351.866667pt;}
.x5b_c00160{left:354.533333pt;}
.xc1_c00160{left:356.133333pt;}
.xad_c00160{left:357.733333pt;}
.x90_c00160{left:358.933333pt;}
.xc0_c00160{left:360.666667pt;}
.x3c_c00160{left:363.600000pt;}
.x95_c00160{left:365.333333pt;}
.x8b_c00160{left:366.533333pt;}
.x4a_c00160{left:385.333333pt;}
.x132_c00160{left:392.000000pt;}
.x143_c00160{left:392.933333pt;}
.xc9_c00160{left:394.666667pt;}
.x137_c00160{left:407.066667pt;}
.x139_c00160{left:408.133333pt;}
.xf0_c00160{left:409.200000pt;}
.xda_c00160{left:410.133333pt;}
.xcd_c00160{left:411.066667pt;}
.x2_c00160{left:412.133333pt;}
.x11_c00160{left:420.666667pt;}
.x146_c00160{left:424.666667pt;}
.x102_c00160{left:427.600000pt;}
.xf1_c00160{left:431.333333pt;}
.xe2_c00160{left:433.066667pt;}
.xdb_c00160{left:435.466667pt;}
.x145_c00160{left:436.800000pt;}
.x105_c00160{left:438.000000pt;}
.xf8_c00160{left:438.933333pt;}
.xff_c00160{left:440.133333pt;}
.x10e_c00160{left:442.133333pt;}
.x11c_c00160{left:444.266667pt;}
.xeb_c00160{left:445.333333pt;}
.xf9_c00160{left:447.333333pt;}
.xf2_c00160{left:448.266667pt;}
.x122_c00160{left:450.400000pt;}
.x12e_c00160{left:451.733333pt;}
.x138_c00160{left:452.800000pt;}
.x126_c00160{left:455.066667pt;}
.xd5_c00160{left:457.733333pt;}
.x114_c00160{left:461.200000pt;}
.xe3_c00160{left:463.200000pt;}
.x117_c00160{left:466.133333pt;}
.xce_c00160{left:467.333333pt;}
.xca_c00160{left:468.933333pt;}
.x108_c00160{left:470.133333pt;}
.x11e_c00160{left:471.333333pt;}
.xe4_c00160{left:472.533333pt;}
.x123_c00160{left:473.733333pt;}
.x12_c00160{left:475.333333pt;}
.x112_c00160{left:478.533333pt;}
.x21_c00160{left:480.933333pt;}
.x13d_c00160{left:482.933333pt;}
.x12a_c00160{left:484.000000pt;}
.x3_c00160{left:485.466667pt;}
.x109_c00160{left:487.466667pt;}
.xf3_c00160{left:489.200000pt;}
.xdc_c00160{left:490.800000pt;}
.x3d_c00160{left:491.866667pt;}
.x13_c00160{left:492.933333pt;}
.x29_c00160{left:494.400000pt;}
.xe5_c00160{left:495.600000pt;}
.x127_c00160{left:497.600000pt;}
.x22_c00160{left:498.533333pt;}
.x11d_c00160{left:499.866667pt;}
.xfa_c00160{left:500.800000pt;}
.x30_c00160{left:502.133333pt;}
.x130_c00160{left:503.200000pt;}
.x133_c00160{left:504.666667pt;}
.x11f_c00160{left:505.866667pt;}
.x4_c00160{left:507.600000pt;}
.xfe_c00160{left:508.800000pt;}
.xd6_c00160{left:509.866667pt;}
.x13e_c00160{left:512.133333pt;}
.x100_c00160{left:513.466667pt;}
.x124_c00160{left:515.600000pt;}
.x13a_c00160{left:516.533333pt;}
.x14_c00160{left:518.266667pt;}
.x13b_c00160{left:521.866667pt;}
.xdd_c00160{left:523.066667pt;}
.x103_c00160{left:524.800000pt;}
.xcf_c00160{left:526.533333pt;}
.x3e_c00160{left:528.400000pt;}
.x118_c00160{left:529.866667pt;}
.x10a_c00160{left:530.933333pt;}
.x120_c00160{left:533.333333pt;}
.x134_c00160{left:535.333333pt;}
.xde_c00160{left:539.333333pt;}
.x31_c00160{left:541.466667pt;}
.x12f_c00160{left:543.866667pt;}
.x3f_c00160{left:545.333333pt;}
.x131_c00160{left:546.666667pt;}
.x32_c00160{left:547.866667pt;}
.x101_c00160{left:549.600000pt;}
.xec_c00160{left:550.933333pt;}
.x14a_c00160{left:552.133333pt;}
.x113_c00160{left:553.466667pt;}
.x135_c00160{left:554.533333pt;}
.xed_c00160{left:555.733333pt;}
.x104_c00160{left:556.800000pt;}
.xcb_c00160{left:558.000000pt;}
.xe6_c00160{left:559.600000pt;}
.xfb_c00160{left:561.600000pt;}
.xf4_c00160{left:564.000000pt;}
.x14b_c00160{left:565.600000pt;}
.xd7_c00160{left:566.533333pt;}
.x149_c00160{left:567.600000pt;}
.xe7_c00160{left:569.200000pt;}
.x140_c00160{left:570.133333pt;}
.xfc_c00160{left:571.466667pt;}
.x148_c00160{left:572.400000pt;}
.xd8_c00160{left:574.266667pt;}
.xd0_c00160{left:576.133333pt;}
.x12b_c00160{left:577.866667pt;}
.x40_c00160{left:578.933333pt;}
.xdf_c00160{left:580.933333pt;}
.x13c_c00160{left:583.066667pt;}
.x119_c00160{left:584.266667pt;}
.x144_c00160{left:586.000000pt;}
.x2a_c00160{left:587.200000pt;}
.x10b_c00160{left:589.600000pt;}
.xd1_c00160{left:591.866667pt;}
.x33_c00160{left:592.933333pt;}
.x11a_c00160{left:594.533333pt;}
.x10f_c00160{left:595.733333pt;}
.x5_c00160{left:597.200000pt;}
.x41_c00160{left:598.800000pt;}
.x2b_c00160{left:600.000000pt;}
.xe0_c00160{left:602.000000pt;}
.xf5_c00160{left:603.733333pt;}
.x34_c00160{left:605.733333pt;}
.x141_c00160{left:608.266667pt;}
.xee_c00160{left:609.466667pt;}
.x147_c00160{left:610.533333pt;}
.x42_c00160{left:611.600000pt;}
.x14c_c00160{left:612.666667pt;}
.x23_c00160{left:613.733333pt;}
.x6_c00160{left:614.800000pt;}
.xe8_c00160{left:617.466667pt;}
.x110_c00160{left:618.400000pt;}
.xfd_c00160{left:622.933333pt;}
.xf6_c00160{left:623.866667pt;}
.x115_c00160{left:625.200000pt;}
.x15_c00160{left:626.800000pt;}
.x12c_c00160{left:627.733333pt;}
.x35_c00160{left:629.466667pt;}
.x24_c00160{left:630.666667pt;}
.x10c_c00160{left:632.800000pt;}
.x7_c00160{left:634.933333pt;}
.x106_c00160{left:636.133333pt;}
.x121_c00160{left:637.600000pt;}
.xd2_c00160{left:639.200000pt;}
.xe1_c00160{left:641.333333pt;}
.xef_c00160{left:642.800000pt;}
.x128_c00160{left:643.733333pt;}
.x12d_c00160{left:645.333333pt;}
.x13f_c00160{left:648.533333pt;}
.xd9_c00160{left:649.466667pt;}
.x16_c00160{left:650.533333pt;}
.x136_c00160{left:652.133333pt;}
.x142_c00160{left:653.066667pt;}
.x43_c00160{left:654.533333pt;}
.x25_c00160{left:656.266667pt;}
.xd3_c00160{left:657.733333pt;}
.xe9_c00160{left:658.800000pt;}
.x129_c00160{left:661.333333pt;}
.x116_c00160{left:662.266667pt;}
.xcc_c00160{left:663.866667pt;}
.x11b_c00160{left:665.333333pt;}
.x10d_c00160{left:666.400000pt;}
.x107_c00160{left:668.133333pt;}
.x9_c00160{left:670.133333pt;}
.x125_c00160{left:673.066667pt;}
.x111_c00160{left:676.000000pt;}
.xf7_c00160{left:678.266667pt;}
.x17_c00160{left:680.933333pt;}
.x26_c00160{left:681.866667pt;}
.xea_c00160{left:682.800000pt;}
.xd4_c00160{left:688.800000pt;}
}





/* 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_c00161 {
    display:none;
  }
  .loading-indicator_c00161.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00161 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_c00161 { 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_c00161" -> "#page-container .classname_c00161")
 */
.pf_c00161 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00161 { /* 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_c00161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00161 { /* 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_c00161 { /* 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_c00161 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00161 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00161 {overflow:visible;}
  }
}
.c_c00161 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00161 { /* 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_c00161:after { /* webkit #35443 */
  content: '';
}
.t_c00161:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00161 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 */
}
.__c00161 { /* 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_c00161 { /* info for Javascript */
  display:none;
}
.l_c00161 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00161 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00161 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00161: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_c00161 {
    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_c00161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00161.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_c00161 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00161;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.000000;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;}
.md1_c00161{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m23_c00161{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00161{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00161{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m34_c00161{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m97_c00161{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00161{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m49_c00161{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00161{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m91_c00161{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00161{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00161{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00161{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00161{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mce_c00161{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me2_c00161{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00161{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00161{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m59_c00161{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6_c00161{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me9_c00161{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m102_c00161{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m92_c00161{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m41_c00161{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m57_c00161{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m83_c00161{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m14_c00161{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m36_c00161{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mea_c00161{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00161{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m62_c00161{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m85_c00161{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mee_c00161{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m89_c00161{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mae_c00161{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md4_c00161{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md_c00161{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00161{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m46_c00161{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00161{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00161{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00161{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m3_c00161{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m77_c00161{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me8_c00161{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mef_c00161{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m44_c00161{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md6_c00161{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m38_c00161{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00161{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00161{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00161{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mac_c00161{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mec_c00161{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m43_c00161{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00161{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m88_c00161{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m39_c00161{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00161{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00161{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m108_c00161{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m52_c00161{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m27_c00161{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m8_c00161{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m7_c00161{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00161{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00161{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00161{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m69_c00161{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00161{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me7_c00161{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m58_c00161{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00161{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m31_c00161{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00161{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00161{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mda_c00161{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m98_c00161{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00161{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00161{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m32_c00161{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma_c00161{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00161{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m61_c00161{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00161{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m107_c00161{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m101_c00161{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m24_c00161{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00161{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m80_c00161{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m12_c00161{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m37_c00161{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m75_c00161{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m73_c00161{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m25_c00161{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00161{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00161{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5_c00161{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4_c00161{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00161{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00161{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m64_c00161{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m17_c00161{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m50_c00161{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m76_c00161{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb_c00161{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m100_c00161{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m63_c00161{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m56_c00161{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00161{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m53_c00161{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00161{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00161{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00161{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00161{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m66_c00161{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m60_c00161{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m42_c00161{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m22_c00161{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md9_c00161{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m20_c00161{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9_c00161{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00161{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.me1_c00161{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m13_c00161{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.maf_c00161{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m33_c00161{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mca_c00161{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00161{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m19_c00161{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m35_c00161{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m45_c00161{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00161{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00161{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.me0_c00161{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md0_c00161{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00161{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00161{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00161{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00161{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.meb_c00161{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00161{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00161{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m55_c00161{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m71_c00161{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m51_c00161{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m99_c00161{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00161{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mab_c00161{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m40_c00161{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m105_c00161{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m67_c00161{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00161{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m47_c00161{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m29_c00161{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00161{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m30_c00161{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mff_c00161{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00161{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00161{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00161{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m0_c00161{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m26_c00161{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00161{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00161{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m68_c00161{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m104_c00161{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m70_c00161{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m78_c00161{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m11_c00161{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc_c00161{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00161{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m28_c00161{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00161{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00161{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m18_c00161{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m54_c00161{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00161{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00161{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00161{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00161{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00161{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00161{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m79_c00161{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me3_c00161{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md5_c00161{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m72_c00161{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md3_c00161{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00161{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m90_c00161{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00161{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00161{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00161{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00161{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00161{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m48_c00161{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00161{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00161{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00161{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21_c00161{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m87_c00161{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m81_c00161{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);}
.mf6_c00161{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00161{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00161{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m16_c00161{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.me4_c00161{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m86_c00161{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00161{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m65_c00161{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00161{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00161{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me6_c00161{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00161{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mad_c00161{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00161{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00161{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mde_c00161{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c00161{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m93_c00161{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00161{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00161{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00161{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mf_c00161{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m74_c00161{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.med_c00161{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.maa_c00161{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.me5_c00161{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00161{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m84_c00161{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00161{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00161{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00161{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00161{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m82_c00161{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00161{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mba_c00161{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00161{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00161{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00161{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00161{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.md2_c00161{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00161{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.md8_c00161{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00161{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00161{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00161{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m103_c00161{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00161{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.md7_c00161{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m10_c00161{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00161{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m94_c00161{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m106_c00161{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.me_c00161{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00161{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00161{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m96_c00161{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00161{transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00161{transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);}
.m95_c00161{transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00161{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00161{transform:matrix(1.121250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.121250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.121250,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls0_c00161{letter-spacing:0.000000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{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__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00161{word-spacing:-7.833333px;}
.ws3_c00161{word-spacing:0.000000px;}
.ws1_c00161{word-spacing:13.721893px;}
.ws0_c00161{word-spacing:25.125000px;}
.fc0_c00161{color:transparent;}
.fs8_c00161{font-size:18.000000px;}
.fs3_c00161{font-size:24.000000px;}
.fs7_c00161{font-size:48.000000px;}
.fs6_c00161{font-size:54.000000px;}
.fs4_c00161{font-size:60.000000px;}
.fs2_c00161{font-size:66.000000px;}
.fs5_c00161{font-size:72.000000px;}
.fs1_c00161{font-size:78.000000px;}
.fs0_c00161{font-size:84.000000px;}
.y0_c00161{bottom:0.000000px;}
.y52_c00161{bottom:177.450000px;}
.y60_c00161{bottom:180.300000px;}
.y5f_c00161{bottom:196.500000px;}
.y51_c00161{bottom:207.300000px;}
.y5e_c00161{bottom:210.900000px;}
.y5d_c00161{bottom:225.000000px;}
.y50_c00161{bottom:225.300000px;}
.y5c_c00161{bottom:239.400000px;}
.y4f_c00161{bottom:243.000000px;}
.y4e_c00161{bottom:261.000000px;}
.y5b_c00161{bottom:261.450000px;}
.y5a_c00161{bottom:274.350000px;}
.y4d_c00161{bottom:279.000000px;}
.y59_c00161{bottom:295.200000px;}
.y4c_c00161{bottom:296.700000px;}
.y58_c00161{bottom:313.950000px;}
.y4b_c00161{bottom:315.000000px;}
.y57_c00161{bottom:334.500000px;}
.y4a_c00161{bottom:341.250000px;}
.y56_c00161{bottom:354.300000px;}
.y49_c00161{bottom:355.050000px;}
.y48_c00161{bottom:369.750000px;}
.y55_c00161{bottom:374.700000px;}
.y47_c00161{bottom:384.450000px;}
.y54_c00161{bottom:394.500000px;}
.y46_c00161{bottom:403.500000px;}
.y53_c00161{bottom:424.050000px;}
.y45_c00161{bottom:425.850000px;}
.y44_c00161{bottom:443.850000px;}
.y25_c00161{bottom:461.850000px;}
.y43_c00161{bottom:464.400000px;}
.y42_c00161{bottom:486.600000px;}
.y24_c00161{bottom:486.750000px;}
.y41_c00161{bottom:505.350000px;}
.y23_c00161{bottom:505.500000px;}
.y40_c00161{bottom:523.350000px;}
.y22_c00161{bottom:523.800000px;}
.y3f_c00161{bottom:541.350000px;}
.y21_c00161{bottom:542.100000px;}
.y3e_c00161{bottom:559.350000px;}
.y20_c00161{bottom:563.400000px;}
.y3d_c00161{bottom:577.050000px;}
.y1f_c00161{bottom:594.750000px;}
.y3c_c00161{bottom:596.850000px;}
.y1e_c00161{bottom:616.350000px;}
.y3b_c00161{bottom:617.400000px;}
.y3a_c00161{bottom:635.700000px;}
.y1d_c00161{bottom:639.750000px;}
.y39_c00161{bottom:653.700000px;}
.y1c_c00161{bottom:662.550000px;}
.y38_c00161{bottom:676.050000px;}
.y1b_c00161{bottom:682.350000px;}
.y37_c00161{bottom:694.050000px;}
.y1a_c00161{bottom:700.350000px;}
.y36_c00161{bottom:711.750000px;}
.y19_c00161{bottom:717.600000px;}
.y35_c00161{bottom:729.750000px;}
.y18_c00161{bottom:735.900000px;}
.y17_c00161{bottom:753.150000px;}
.y34_c00161{bottom:755.550000px;}
.y16_c00161{bottom:771.150000px;}
.y33_c00161{bottom:774.300000px;}
.y15_c00161{bottom:788.850000px;}
.y32_c00161{bottom:804.600000px;}
.y14_c00161{bottom:806.550000px;}
.y13_c00161{bottom:824.550000px;}
.y31_c00161{bottom:827.400000px;}
.y12_c00161{bottom:842.550000px;}
.y30_c00161{bottom:845.700000px;}
.y11_c00161{bottom:862.350000px;}
.y2f_c00161{bottom:867.300000px;}
.y10_c00161{bottom:877.800000px;}
.y2e_c00161{bottom:885.600000px;}
.yf_c00161{bottom:895.800000px;}
.y2d_c00161{bottom:906.450000px;}
.ye_c00161{bottom:913.800000px;}
.y2c_c00161{bottom:925.200000px;}
.yd_c00161{bottom:931.500000px;}
.y2b_c00161{bottom:948.000000px;}
.yc_c00161{bottom:949.200000px;}
.yb_c00161{bottom:967.200000px;}
.y2a_c00161{bottom:969.900000px;}
.ya_c00161{bottom:984.900000px;}
.y9_c00161{bottom:1002.900000px;}
.y29_c00161{bottom:1015.200000px;}
.y8_c00161{bottom:1020.600000px;}
.y7_c00161{bottom:1038.900000px;}
.y28_c00161{bottom:1050.450000px;}
.y6_c00161{bottom:1062.750000px;}
.y5_c00161{bottom:1074.450000px;}
.y27_c00161{bottom:1085.850000px;}
.y4_c00161{bottom:1086.750000px;}
.y3_c00161{bottom:1106.250000px;}
.y26_c00161{bottom:1110.300000px;}
.y1_c00161{bottom:1128.300000px;}
.y2_c00161{bottom:1133.700000px;}
.ha_c00161{height:18.000000px;}
.h5_c00161{height:24.000000px;}
.h9_c00161{height:48.000000px;}
.h8_c00161{height:54.000000px;}
.h6_c00161{height:60.000000px;}
.h4_c00161{height:66.000000px;}
.h7_c00161{height:72.000000px;}
.h3_c00161{height:78.000000px;}
.h2_c00161{height:84.000000px;}
.h0_c00161{height:1273.320007px;}
.h1_c00161{height:1273.500000px;}
.w1_c00161{width:953.250000px;}
.w0_c00161{width:953.280030px;}
.x0_c00161{left:0.000000px;}
.xf_c00161{left:173.550000px;}
.x1_c00161{left:174.600000px;}
.x70_c00161{left:175.650000px;}
.x74_c00161{left:177.450000px;}
.xfe_c00161{left:178.500000px;}
.x6c_c00161{left:190.350000px;}
.x3_c00161{left:191.550000px;}
.x19_c00161{left:192.600000px;}
.x21_c00161{left:193.650000px;}
.x6a_c00161{left:195.150000px;}
.x7c_c00161{left:197.250000px;}
.x5f_c00161{left:203.400000px;}
.xfb_c00161{left:206.700000px;}
.x77_c00161{left:214.200000px;}
.x2a_c00161{left:218.700000px;}
.x73_c00161{left:220.050000px;}
.x7d_c00161{left:222.150000px;}
.x4_c00161{left:224.250000px;}
.x3b_c00161{left:227.250000px;}
.x22_c00161{left:230.400000px;}
.x1a_c00161{left:232.950000px;}
.x10_c00161{left:234.750000px;}
.x54_c00161{left:236.400000px;}
.x42_c00161{left:239.400000px;}
.x23_c00161{left:240.450000px;}
.xe_c00161{left:241.950000px;}
.x71_c00161{left:244.200000px;}
.x6d_c00161{left:245.400000px;}
.x31_c00161{left:247.050000px;}
.x6b_c00161{left:249.450000px;}
.x75_c00161{left:251.250000px;}
.x43_c00161{left:253.800000px;}
.x5_c00161{left:256.650000px;}
.x6e_c00161{left:257.850000px;}
.x55_c00161{left:259.800000px;}
.xc_c00161{left:261.750000px;}
.x3e_c00161{left:263.250000px;}
.x1b_c00161{left:267.450000px;}
.xec_c00161{left:268.500000px;}
.x44_c00161{left:271.800000px;}
.x52_c00161{left:272.850000px;}
.x6_c00161{left:274.650000px;}
.x79_c00161{left:276.000000px;}
.x2b_c00161{left:277.050000px;}
.x3f_c00161{left:279.150000px;}
.xf5_c00161{left:280.500000px;}
.x11_c00161{left:283.050000px;}
.x39_c00161{left:287.850000px;}
.x1c_c00161{left:289.050000px;}
.x6f_c00161{left:290.250000px;}
.x24_c00161{left:291.900000px;}
.xed_c00161{left:292.950000px;}
.x4e_c00161{left:295.350000px;}
.x106_c00161{left:297.000000px;}
.x49_c00161{left:298.650000px;}
.x32_c00161{left:301.050000px;}
.x60_c00161{left:302.400000px;}
.x45_c00161{left:306.300000px;}
.x2c_c00161{left:307.350000px;}
.x12_c00161{left:310.350000px;}
.x33_c00161{left:313.350000px;}
.x53_c00161{left:316.350000px;}
.x4f_c00161{left:318.750000px;}
.x16_c00161{left:321.450000px;}
.x36_c00161{left:323.100000px;}
.x7_c00161{left:325.050000px;}
.x46_c00161{left:327.900000px;}
.xff_c00161{left:329.700000px;}
.xee_c00161{left:331.800000px;}
.x8_c00161{left:333.750000px;}
.xd_c00161{left:336.300000px;}
.x61_c00161{left:340.200000px;}
.x1d_c00161{left:341.250000px;}
.x13_c00161{left:346.350000px;}
.x25_c00161{left:348.450000px;}
.xf7_c00161{left:349.650000px;}
.x66_c00161{left:352.800000px;}
.x103_c00161{left:358.500000px;}
.x40_c00161{left:359.700000px;}
.x62_c00161{left:360.750000px;}
.x3c_c00161{left:362.700000px;}
.x1e_c00161{left:363.900000px;}
.x76_c00161{left:364.950000px;}
.x5b_c00161{left:367.200000px;}
.xf8_c00161{left:370.200000px;}
.x14_c00161{left:371.250000px;}
.x26_c00161{left:372.600000px;}
.x4a_c00161{left:375.000000px;}
.x2d_c00161{left:377.550000px;}
.x9_c00161{left:379.800000px;}
.x67_c00161{left:382.350000px;}
.x37_c00161{left:384.000000px;}
.x15_c00161{left:386.400000px;}
.x104_c00161{left:388.800000px;}
.x27_c00161{left:392.700000px;}
.x47_c00161{left:394.500000px;}
.x5c_c00161{left:398.550000px;}
.x107_c00161{left:399.600000px;}
.x2e_c00161{left:400.650000px;}
.x68_c00161{left:401.850000px;}
.x1f_c00161{left:403.800000px;}
.x56_c00161{left:406.950000px;}
.x59_c00161{left:410.100000px;}
.x2_c00161{left:412.950000px;}
.x50_c00161{left:414.150000px;}
.x7a_c00161{left:416.700000px;}
.x4b_c00161{left:418.500000px;}
.x72_c00161{left:420.150000px;}
.x41_c00161{left:422.400000px;}
.x5a_c00161{left:423.450000px;}
.x3a_c00161{left:424.950000px;}
.x17_c00161{left:426.600000px;}
.xf6_c00161{left:429.150000px;}
.x63_c00161{left:430.200000px;}
.x2f_c00161{left:431.250000px;}
.x100_c00161{left:432.300000px;}
.x5d_c00161{left:433.500000px;}
.xf9_c00161{left:435.450000px;}
.x108_c00161{left:437.400000px;}
.x4c_c00161{left:440.100000px;}
.x57_c00161{left:443.250000px;}
.xfa_c00161{left:444.300000px;}
.x30_c00161{left:445.350000px;}
.x34_c00161{left:448.050000px;}
.x20_c00161{left:450.300000px;}
.x28_c00161{left:452.100000px;}
.x64_c00161{left:454.350000px;}
.x5e_c00161{left:455.400000px;}
.x109_c00161{left:457.500000px;}
.xa_c00161{left:458.700000px;}
.x7e_c00161{left:460.200000px;}
.xef_c00161{left:461.400000px;}
.x69_c00161{left:463.050000px;}
.x7b_c00161{left:466.050000px;}
.xfd_c00161{left:467.100000px;}
.x38_c00161{left:471.150000px;}
.x29_c00161{left:472.200000px;}
.x65_c00161{left:473.850000px;}
.x4d_c00161{left:477.150000px;}
.xb_c00161{left:478.200000px;}
.xf0_c00161{left:479.400000px;}
.x51_c00161{left:480.750000px;}
.x18_c00161{left:485.250000px;}
.x105_c00161{left:487.800000px;}
.x7f_c00161{left:489.300000px;}
.x101_c00161{left:490.650000px;}
.x58_c00161{left:491.850000px;}
.x48_c00161{left:496.650000px;}
.x78_c00161{left:498.900000px;}
.x3d_c00161{left:500.850000px;}
.xfc_c00161{left:502.350000px;}
.x35_c00161{left:507.450000px;}
.x102_c00161{left:511.500000px;}
.x80_c00161{left:530.250000px;}
.x96_c00161{left:531.450000px;}
.xb5_c00161{left:532.500000px;}
.xb9_c00161{left:533.550000px;}
.xeb_c00161{left:534.600000px;}
.x10a_c00161{left:536.400000px;}
.x112_c00161{left:538.950000px;}
.xf1_c00161{left:546.450000px;}
.x89_c00161{left:548.100000px;}
.xa8_c00161{left:549.750000px;}
.xdb_c00161{left:552.000000px;}
.x10c_c00161{left:553.500000px;}
.x116_c00161{left:564.750000px;}
.x99_c00161{left:567.150000px;}
.x92_c00161{left:568.500000px;}
.x8a_c00161{left:572.550000px;}
.xe1_c00161{left:573.750000px;}
.xba_c00161{left:576.450000px;}
.xd0_c00161{left:578.850000px;}
.xc5_c00161{left:580.500000px;}
.x10b_c00161{left:582.900000px;}
.x117_c00161{left:584.250000px;}
.xd6_c00161{left:587.100000px;}
.xa9_c00161{left:589.350000px;}
.x10f_c00161{left:591.900000px;}
.xcc_c00161{left:595.200000px;}
.xb6_c00161{left:597.300000px;}
.x81_c00161{left:598.350000px;}
.xf2_c00161{left:600.750000px;}
.x122_c00161{left:603.300000px;}
.xc6_c00161{left:605.250000px;}
.xcd_c00161{left:607.500000px;}
.x9a_c00161{left:609.600000px;}
.xaa_c00161{left:612.300000px;}
.xd9_c00161{left:614.850000px;}
.x8b_c00161{left:616.800000px;}
.xe2_c00161{left:619.050000px;}
.xbe_c00161{left:621.150000px;}
.xa3_c00161{left:622.200000px;}
.xb7_c00161{left:626.400000px;}
.xd7_c00161{left:628.200000px;}
.xe7_c00161{left:629.550000px;}
.xc7_c00161{left:631.200000px;}
.x82_c00161{left:634.050000px;}
.xdd_c00161{left:635.100000px;}
.x97_c00161{left:636.600000px;}
.x8d_c00161{left:639.000000px;}
.x8f_c00161{left:643.350000px;}
.x118_c00161{left:644.400000px;}
.xd1_c00161{left:647.250000px;}
.x110_c00161{left:649.500000px;}
.x93_c00161{left:650.850000px;}
.x83_c00161{left:653.550000px;}
.x8c_c00161{left:659.250000px;}
.x11e_c00161{left:660.600000px;}
.xbb_c00161{left:661.950000px;}
.xc8_c00161{left:665.700000px;}
.xab_c00161{left:667.800000px;}
.xb0_c00161{left:675.300000px;}
.xe3_c00161{left:676.950000px;}
.x9b_c00161{left:681.600000px;}
.xce_c00161{left:684.600000px;}
.x9d_c00161{left:686.100000px;}
.x8e_c00161{left:687.600000px;}
.xb1_c00161{left:689.400000px;}
.xbc_c00161{left:690.450000px;}
.x113_c00161{left:691.800000px;}
.x94_c00161{left:694.050000px;}
.xde_c00161{left:696.000000px;}
.x98_c00161{left:697.800000px;}
.x111_c00161{left:699.600000px;}
.x90_c00161{left:702.000000px;}
.xdc_c00161{left:703.200000px;}
.xe8_c00161{left:704.850000px;}
.xd2_c00161{left:705.900000px;}
.xc9_c00161{left:707.400000px;}
.xd8_c00161{left:708.600000px;}
.x9c_c00161{left:710.400000px;}
.x91_c00161{left:712.800000px;}
.x84_c00161{left:714.000000px;}
.xdf_c00161{left:716.100000px;}
.xbf_c00161{left:718.650000px;}
.xa4_c00161{left:721.500000px;}
.x119_c00161{left:723.600000px;}
.x9e_c00161{left:724.650000px;}
.xb8_c00161{left:726.450000px;}
.xb2_c00161{left:727.950000px;}
.xc0_c00161{left:729.150000px;}
.xda_c00161{left:731.250000px;}
.xac_c00161{left:734.700000px;}
.x85_c00161{left:737.100000px;}
.x95_c00161{left:740.550000px;}
.x9f_c00161{left:744.150000px;}
.xe4_c00161{left:748.650000px;}
.x86_c00161{left:750.450000px;}
.x11a_c00161{left:752.400000px;}
.xca_c00161{left:753.450000px;}
.xad_c00161{left:754.500000px;}
.xd3_c00161{left:758.400000px;}
.xe9_c00161{left:760.650000px;}
.xcf_c00161{left:762.750000px;}
.xe0_c00161{left:766.200000px;}
.xe5_c00161{left:768.750000px;}
.x11f_c00161{left:770.100000px;}
.xc1_c00161{left:772.050000px;}
.xcb_c00161{left:774.750000px;}
.xd4_c00161{left:776.400000px;}
.xa5_c00161{left:779.400000px;}
.xae_c00161{left:783.000000px;}
.xa0_c00161{left:785.850000px;}
.x87_c00161{left:787.500000px;}
.xb3_c00161{left:792.000000px;}
.xf3_c00161{left:793.950000px;}
.xaf_c00161{left:798.450000px;}
.xf4_c00161{left:802.650000px;}
.x114_c00161{left:803.850000px;}
.xa1_c00161{left:805.950000px;}
.xc2_c00161{left:807.000000px;}
.x11b_c00161{left:808.500000px;}
.xb4_c00161{left:813.600000px;}
.xe6_c00161{left:815.550000px;}
.xa6_c00161{left:816.900000px;}
.x123_c00161{left:819.900000px;}
.x120_c00161{left:821.250000px;}
.x10d_c00161{left:823.650000px;}
.xa2_c00161{left:827.250000px;}
.xd5_c00161{left:829.650000px;}
.x11c_c00161{left:830.850000px;}
.xa7_c00161{left:837.450000px;}
.xbd_c00161{left:839.400000px;}
.xc3_c00161{left:840.450000px;}
.x11d_c00161{left:844.200000px;}
.x88_c00161{left:845.850000px;}
.x115_c00161{left:848.850000px;}
.xea_c00161{left:849.900000px;}
.x121_c00161{left:851.100000px;}
.x124_c00161{left:855.900000px;}
.xc4_c00161{left:857.700000px;}
.x10e_c00161{left:865.500000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws2_c00161{word-spacing:-6.962963pt;}
.ws3_c00161{word-spacing:0.000000pt;}
.ws1_c00161{word-spacing:12.197239pt;}
.ws0_c00161{word-spacing:22.333333pt;}
.fs8_c00161{font-size:16.000000pt;}
.fs3_c00161{font-size:21.333333pt;}
.fs7_c00161{font-size:42.666667pt;}
.fs6_c00161{font-size:48.000000pt;}
.fs4_c00161{font-size:53.333333pt;}
.fs2_c00161{font-size:58.666667pt;}
.fs5_c00161{font-size:64.000000pt;}
.fs1_c00161{font-size:69.333333pt;}
.fs0_c00161{font-size:74.666667pt;}
.y0_c00161{bottom:0.000000pt;}
.y52_c00161{bottom:157.733333pt;}
.y60_c00161{bottom:160.266667pt;}
.y5f_c00161{bottom:174.666667pt;}
.y51_c00161{bottom:184.266667pt;}
.y5e_c00161{bottom:187.466667pt;}
.y5d_c00161{bottom:200.000000pt;}
.y50_c00161{bottom:200.266667pt;}
.y5c_c00161{bottom:212.800000pt;}
.y4f_c00161{bottom:216.000000pt;}
.y4e_c00161{bottom:232.000000pt;}
.y5b_c00161{bottom:232.400000pt;}
.y5a_c00161{bottom:243.866667pt;}
.y4d_c00161{bottom:248.000000pt;}
.y59_c00161{bottom:262.400000pt;}
.y4c_c00161{bottom:263.733333pt;}
.y58_c00161{bottom:279.066667pt;}
.y4b_c00161{bottom:280.000000pt;}
.y57_c00161{bottom:297.333333pt;}
.y4a_c00161{bottom:303.333333pt;}
.y56_c00161{bottom:314.933333pt;}
.y49_c00161{bottom:315.600000pt;}
.y48_c00161{bottom:328.666667pt;}
.y55_c00161{bottom:333.066667pt;}
.y47_c00161{bottom:341.733333pt;}
.y54_c00161{bottom:350.666667pt;}
.y46_c00161{bottom:358.666667pt;}
.y53_c00161{bottom:376.933333pt;}
.y45_c00161{bottom:378.533333pt;}
.y44_c00161{bottom:394.533333pt;}
.y25_c00161{bottom:410.533333pt;}
.y43_c00161{bottom:412.800000pt;}
.y42_c00161{bottom:432.533333pt;}
.y24_c00161{bottom:432.666667pt;}
.y41_c00161{bottom:449.200000pt;}
.y23_c00161{bottom:449.333333pt;}
.y40_c00161{bottom:465.200000pt;}
.y22_c00161{bottom:465.600000pt;}
.y3f_c00161{bottom:481.200000pt;}
.y21_c00161{bottom:481.866667pt;}
.y3e_c00161{bottom:497.200000pt;}
.y20_c00161{bottom:500.800000pt;}
.y3d_c00161{bottom:512.933333pt;}
.y1f_c00161{bottom:528.666667pt;}
.y3c_c00161{bottom:530.533333pt;}
.y1e_c00161{bottom:547.866667pt;}
.y3b_c00161{bottom:548.800000pt;}
.y3a_c00161{bottom:565.066667pt;}
.y1d_c00161{bottom:568.666667pt;}
.y39_c00161{bottom:581.066667pt;}
.y1c_c00161{bottom:588.933333pt;}
.y38_c00161{bottom:600.933333pt;}
.y1b_c00161{bottom:606.533333pt;}
.y37_c00161{bottom:616.933333pt;}
.y1a_c00161{bottom:622.533333pt;}
.y36_c00161{bottom:632.666667pt;}
.y19_c00161{bottom:637.866667pt;}
.y35_c00161{bottom:648.666667pt;}
.y18_c00161{bottom:654.133333pt;}
.y17_c00161{bottom:669.466667pt;}
.y34_c00161{bottom:671.600000pt;}
.y16_c00161{bottom:685.466667pt;}
.y33_c00161{bottom:688.266667pt;}
.y15_c00161{bottom:701.200000pt;}
.y32_c00161{bottom:715.200000pt;}
.y14_c00161{bottom:716.933333pt;}
.y13_c00161{bottom:732.933333pt;}
.y31_c00161{bottom:735.466667pt;}
.y12_c00161{bottom:748.933333pt;}
.y30_c00161{bottom:751.733333pt;}
.y11_c00161{bottom:766.533333pt;}
.y2f_c00161{bottom:770.933333pt;}
.y10_c00161{bottom:780.266667pt;}
.y2e_c00161{bottom:787.200000pt;}
.yf_c00161{bottom:796.266667pt;}
.y2d_c00161{bottom:805.733333pt;}
.ye_c00161{bottom:812.266667pt;}
.y2c_c00161{bottom:822.400000pt;}
.yd_c00161{bottom:828.000000pt;}
.y2b_c00161{bottom:842.666667pt;}
.yc_c00161{bottom:843.733333pt;}
.yb_c00161{bottom:859.733333pt;}
.y2a_c00161{bottom:862.133333pt;}
.ya_c00161{bottom:875.466667pt;}
.y9_c00161{bottom:891.466667pt;}
.y29_c00161{bottom:902.400000pt;}
.y8_c00161{bottom:907.200000pt;}
.y7_c00161{bottom:923.466667pt;}
.y28_c00161{bottom:933.733333pt;}
.y6_c00161{bottom:944.666667pt;}
.y5_c00161{bottom:955.066667pt;}
.y27_c00161{bottom:965.200000pt;}
.y4_c00161{bottom:966.000000pt;}
.y3_c00161{bottom:983.333333pt;}
.y26_c00161{bottom:986.933333pt;}
.y1_c00161{bottom:1002.933333pt;}
.y2_c00161{bottom:1007.733333pt;}
.ha_c00161{height:16.000000pt;}
.h5_c00161{height:21.333333pt;}
.h9_c00161{height:42.666667pt;}
.h8_c00161{height:48.000000pt;}
.h6_c00161{height:53.333333pt;}
.h4_c00161{height:58.666667pt;}
.h7_c00161{height:64.000000pt;}
.h3_c00161{height:69.333333pt;}
.h2_c00161{height:74.666667pt;}
.h0_c00161{height:1131.840007pt;}
.h1_c00161{height:1132.000000pt;}
.w1_c00161{width:847.333333pt;}
.w0_c00161{width:847.360027pt;}
.x0_c00161{left:0.000000pt;}
.xf_c00161{left:154.266667pt;}
.x1_c00161{left:155.200000pt;}
.x70_c00161{left:156.133333pt;}
.x74_c00161{left:157.733333pt;}
.xfe_c00161{left:158.666667pt;}
.x6c_c00161{left:169.200000pt;}
.x3_c00161{left:170.266667pt;}
.x19_c00161{left:171.200000pt;}
.x21_c00161{left:172.133333pt;}
.x6a_c00161{left:173.466667pt;}
.x7c_c00161{left:175.333333pt;}
.x5f_c00161{left:180.800000pt;}
.xfb_c00161{left:183.733333pt;}
.x77_c00161{left:190.400000pt;}
.x2a_c00161{left:194.400000pt;}
.x73_c00161{left:195.600000pt;}
.x7d_c00161{left:197.466667pt;}
.x4_c00161{left:199.333333pt;}
.x3b_c00161{left:202.000000pt;}
.x22_c00161{left:204.800000pt;}
.x1a_c00161{left:207.066667pt;}
.x10_c00161{left:208.666667pt;}
.x54_c00161{left:210.133333pt;}
.x42_c00161{left:212.800000pt;}
.x23_c00161{left:213.733333pt;}
.xe_c00161{left:215.066667pt;}
.x71_c00161{left:217.066667pt;}
.x6d_c00161{left:218.133333pt;}
.x31_c00161{left:219.600000pt;}
.x6b_c00161{left:221.733333pt;}
.x75_c00161{left:223.333333pt;}
.x43_c00161{left:225.600000pt;}
.x5_c00161{left:228.133333pt;}
.x6e_c00161{left:229.200000pt;}
.x55_c00161{left:230.933333pt;}
.xc_c00161{left:232.666667pt;}
.x3e_c00161{left:234.000000pt;}
.x1b_c00161{left:237.733333pt;}
.xec_c00161{left:238.666667pt;}
.x44_c00161{left:241.600000pt;}
.x52_c00161{left:242.533333pt;}
.x6_c00161{left:244.133333pt;}
.x79_c00161{left:245.333333pt;}
.x2b_c00161{left:246.266667pt;}
.x3f_c00161{left:248.133333pt;}
.xf5_c00161{left:249.333333pt;}
.x11_c00161{left:251.600000pt;}
.x39_c00161{left:255.866667pt;}
.x1c_c00161{left:256.933333pt;}
.x6f_c00161{left:258.000000pt;}
.x24_c00161{left:259.466667pt;}
.xed_c00161{left:260.400000pt;}
.x4e_c00161{left:262.533333pt;}
.x106_c00161{left:264.000000pt;}
.x49_c00161{left:265.466667pt;}
.x32_c00161{left:267.600000pt;}
.x60_c00161{left:268.800000pt;}
.x45_c00161{left:272.266667pt;}
.x2c_c00161{left:273.200000pt;}
.x12_c00161{left:275.866667pt;}
.x33_c00161{left:278.533333pt;}
.x53_c00161{left:281.200000pt;}
.x4f_c00161{left:283.333333pt;}
.x16_c00161{left:285.733333pt;}
.x36_c00161{left:287.200000pt;}
.x7_c00161{left:288.933333pt;}
.x46_c00161{left:291.466667pt;}
.xff_c00161{left:293.066667pt;}
.xee_c00161{left:294.933333pt;}
.x8_c00161{left:296.666667pt;}
.xd_c00161{left:298.933333pt;}
.x61_c00161{left:302.400000pt;}
.x1d_c00161{left:303.333333pt;}
.x13_c00161{left:307.866667pt;}
.x25_c00161{left:309.733333pt;}
.xf7_c00161{left:310.800000pt;}
.x66_c00161{left:313.600000pt;}
.x103_c00161{left:318.666667pt;}
.x40_c00161{left:319.733333pt;}
.x62_c00161{left:320.666667pt;}
.x3c_c00161{left:322.400000pt;}
.x1e_c00161{left:323.466667pt;}
.x76_c00161{left:324.400000pt;}
.x5b_c00161{left:326.400000pt;}
.xf8_c00161{left:329.066667pt;}
.x14_c00161{left:330.000000pt;}
.x26_c00161{left:331.200000pt;}
.x4a_c00161{left:333.333333pt;}
.x2d_c00161{left:335.600000pt;}
.x9_c00161{left:337.600000pt;}
.x67_c00161{left:339.866667pt;}
.x37_c00161{left:341.333333pt;}
.x15_c00161{left:343.466667pt;}
.x104_c00161{left:345.600000pt;}
.x27_c00161{left:349.066667pt;}
.x47_c00161{left:350.666667pt;}
.x5c_c00161{left:354.266667pt;}
.x107_c00161{left:355.200000pt;}
.x2e_c00161{left:356.133333pt;}
.x68_c00161{left:357.200000pt;}
.x1f_c00161{left:358.933333pt;}
.x56_c00161{left:361.733333pt;}
.x59_c00161{left:364.533333pt;}
.x2_c00161{left:367.066667pt;}
.x50_c00161{left:368.133333pt;}
.x7a_c00161{left:370.400000pt;}
.x4b_c00161{left:372.000000pt;}
.x72_c00161{left:373.466667pt;}
.x41_c00161{left:375.466667pt;}
.x5a_c00161{left:376.400000pt;}
.x3a_c00161{left:377.733333pt;}
.x17_c00161{left:379.200000pt;}
.xf6_c00161{left:381.466667pt;}
.x63_c00161{left:382.400000pt;}
.x2f_c00161{left:383.333333pt;}
.x100_c00161{left:384.266667pt;}
.x5d_c00161{left:385.333333pt;}
.xf9_c00161{left:387.066667pt;}
.x108_c00161{left:388.800000pt;}
.x4c_c00161{left:391.200000pt;}
.x57_c00161{left:394.000000pt;}
.xfa_c00161{left:394.933333pt;}
.x30_c00161{left:395.866667pt;}
.x34_c00161{left:398.266667pt;}
.x20_c00161{left:400.266667pt;}
.x28_c00161{left:401.866667pt;}
.x64_c00161{left:403.866667pt;}
.x5e_c00161{left:404.800000pt;}
.x109_c00161{left:406.666667pt;}
.xa_c00161{left:407.733333pt;}
.x7e_c00161{left:409.066667pt;}
.xef_c00161{left:410.133333pt;}
.x69_c00161{left:411.600000pt;}
.x7b_c00161{left:414.266667pt;}
.xfd_c00161{left:415.200000pt;}
.x38_c00161{left:418.800000pt;}
.x29_c00161{left:419.733333pt;}
.x65_c00161{left:421.200000pt;}
.x4d_c00161{left:424.133333pt;}
.xb_c00161{left:425.066667pt;}
.xf0_c00161{left:426.133333pt;}
.x51_c00161{left:427.333333pt;}
.x18_c00161{left:431.333333pt;}
.x105_c00161{left:433.600000pt;}
.x7f_c00161{left:434.933333pt;}
.x101_c00161{left:436.133333pt;}
.x58_c00161{left:437.200000pt;}
.x48_c00161{left:441.466667pt;}
.x78_c00161{left:443.466667pt;}
.x3d_c00161{left:445.200000pt;}
.xfc_c00161{left:446.533333pt;}
.x35_c00161{left:451.066667pt;}
.x102_c00161{left:454.666667pt;}
.x80_c00161{left:471.333333pt;}
.x96_c00161{left:472.400000pt;}
.xb5_c00161{left:473.333333pt;}
.xb9_c00161{left:474.266667pt;}
.xeb_c00161{left:475.200000pt;}
.x10a_c00161{left:476.800000pt;}
.x112_c00161{left:479.066667pt;}
.xf1_c00161{left:485.733333pt;}
.x89_c00161{left:487.200000pt;}
.xa8_c00161{left:488.666667pt;}
.xdb_c00161{left:490.666667pt;}
.x10c_c00161{left:492.000000pt;}
.x116_c00161{left:502.000000pt;}
.x99_c00161{left:504.133333pt;}
.x92_c00161{left:505.333333pt;}
.x8a_c00161{left:508.933333pt;}
.xe1_c00161{left:510.000000pt;}
.xba_c00161{left:512.400000pt;}
.xd0_c00161{left:514.533333pt;}
.xc5_c00161{left:516.000000pt;}
.x10b_c00161{left:518.133333pt;}
.x117_c00161{left:519.333333pt;}
.xd6_c00161{left:521.866667pt;}
.xa9_c00161{left:523.866667pt;}
.x10f_c00161{left:526.133333pt;}
.xcc_c00161{left:529.066667pt;}
.xb6_c00161{left:530.933333pt;}
.x81_c00161{left:531.866667pt;}
.xf2_c00161{left:534.000000pt;}
.x122_c00161{left:536.266667pt;}
.xc6_c00161{left:538.000000pt;}
.xcd_c00161{left:540.000000pt;}
.x9a_c00161{left:541.866667pt;}
.xaa_c00161{left:544.266667pt;}
.xd9_c00161{left:546.533333pt;}
.x8b_c00161{left:548.266667pt;}
.xe2_c00161{left:550.266667pt;}
.xbe_c00161{left:552.133333pt;}
.xa3_c00161{left:553.066667pt;}
.xb7_c00161{left:556.800000pt;}
.xd7_c00161{left:558.400000pt;}
.xe7_c00161{left:559.600000pt;}
.xc7_c00161{left:561.066667pt;}
.x82_c00161{left:563.600000pt;}
.xdd_c00161{left:564.533333pt;}
.x97_c00161{left:565.866667pt;}
.x8d_c00161{left:568.000000pt;}
.x8f_c00161{left:571.866667pt;}
.x118_c00161{left:572.800000pt;}
.xd1_c00161{left:575.333333pt;}
.x110_c00161{left:577.333333pt;}
.x93_c00161{left:578.533333pt;}
.x83_c00161{left:580.933333pt;}
.x8c_c00161{left:586.000000pt;}
.x11e_c00161{left:587.200000pt;}
.xbb_c00161{left:588.400000pt;}
.xc8_c00161{left:591.733333pt;}
.xab_c00161{left:593.600000pt;}
.xb0_c00161{left:600.266667pt;}
.xe3_c00161{left:601.733333pt;}
.x9b_c00161{left:605.866667pt;}
.xce_c00161{left:608.533333pt;}
.x9d_c00161{left:609.866667pt;}
.x8e_c00161{left:611.200000pt;}
.xb1_c00161{left:612.800000pt;}
.xbc_c00161{left:613.733333pt;}
.x113_c00161{left:614.933333pt;}
.x94_c00161{left:616.933333pt;}
.xde_c00161{left:618.666667pt;}
.x98_c00161{left:620.266667pt;}
.x111_c00161{left:621.866667pt;}
.x90_c00161{left:624.000000pt;}
.xdc_c00161{left:625.066667pt;}
.xe8_c00161{left:626.533333pt;}
.xd2_c00161{left:627.466667pt;}
.xc9_c00161{left:628.800000pt;}
.xd8_c00161{left:629.866667pt;}
.x9c_c00161{left:631.466667pt;}
.x91_c00161{left:633.600000pt;}
.x84_c00161{left:634.666667pt;}
.xdf_c00161{left:636.533333pt;}
.xbf_c00161{left:638.800000pt;}
.xa4_c00161{left:641.333333pt;}
.x119_c00161{left:643.200000pt;}
.x9e_c00161{left:644.133333pt;}
.xb8_c00161{left:645.733333pt;}
.xb2_c00161{left:647.066667pt;}
.xc0_c00161{left:648.133333pt;}
.xda_c00161{left:650.000000pt;}
.xac_c00161{left:653.066667pt;}
.x85_c00161{left:655.200000pt;}
.x95_c00161{left:658.266667pt;}
.x9f_c00161{left:661.466667pt;}
.xe4_c00161{left:665.466667pt;}
.x86_c00161{left:667.066667pt;}
.x11a_c00161{left:668.800000pt;}
.xca_c00161{left:669.733333pt;}
.xad_c00161{left:670.666667pt;}
.xd3_c00161{left:674.133333pt;}
.xe9_c00161{left:676.133333pt;}
.xcf_c00161{left:678.000000pt;}
.xe0_c00161{left:681.066667pt;}
.xe5_c00161{left:683.333333pt;}
.x11f_c00161{left:684.533333pt;}
.xc1_c00161{left:686.266667pt;}
.xcb_c00161{left:688.666667pt;}
.xd4_c00161{left:690.133333pt;}
.xa5_c00161{left:692.800000pt;}
.xae_c00161{left:696.000000pt;}
.xa0_c00161{left:698.533333pt;}
.x87_c00161{left:700.000000pt;}
.xb3_c00161{left:704.000000pt;}
.xf3_c00161{left:705.733333pt;}
.xaf_c00161{left:709.733333pt;}
.xf4_c00161{left:713.466667pt;}
.x114_c00161{left:714.533333pt;}
.xa1_c00161{left:716.400000pt;}
.xc2_c00161{left:717.333333pt;}
.x11b_c00161{left:718.666667pt;}
.xb4_c00161{left:723.200000pt;}
.xe6_c00161{left:724.933333pt;}
.xa6_c00161{left:726.133333pt;}
.x123_c00161{left:728.800000pt;}
.x120_c00161{left:730.000000pt;}
.x10d_c00161{left:732.133333pt;}
.xa2_c00161{left:735.333333pt;}
.xd5_c00161{left:737.466667pt;}
.x11c_c00161{left:738.533333pt;}
.xa7_c00161{left:744.400000pt;}
.xbd_c00161{left:746.133333pt;}
.xc3_c00161{left:747.066667pt;}
.x11d_c00161{left:750.400000pt;}
.x88_c00161{left:751.866667pt;}
.x115_c00161{left:754.533333pt;}
.xea_c00161{left:755.466667pt;}
.x121_c00161{left:756.533333pt;}
.x124_c00161{left:760.800000pt;}
.xc4_c00161{left:762.400000pt;}
.x10e_c00161{left:769.333333pt;}
}





/* 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_c00162 {
    display:none;
  }
  .loading-indicator_c00162.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00162 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_c00162 { 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_c00162" -> "#page-container .classname_c00162")
 */
.pf_c00162 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00162 { /* 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_c00162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00162 { /* 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_c00162 { /* 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_c00162 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00162 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00162 {overflow:visible;}
  }
}
.c_c00162 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00162 { /* 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_c00162:after { /* webkit #35443 */
  content: '';
}
.t_c00162:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00162 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 */
}
.__c00162 { /* 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_c00162 { /* info for Javascript */
  display:none;
}
.l_c00162 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00162 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00162 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00162: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_c00162 {
    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_c00162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00162.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_c00162 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00162;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.000000;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;}
.m111_c00162{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00162{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00162{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m101_c00162{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m78_c00162{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m115_c00162{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m102_c00162{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m67_c00162{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m53_c00162{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00162{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00162{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m50_c00162{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m106_c00162{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m116_c00162{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m114_c00162{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00162{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00162{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00162{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00162{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m92_c00162{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00162{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m103_c00162{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m86_c00162{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.me3_c00162{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md5_c00162{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.me4_c00162{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.med_c00162{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m33_c00162{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00162{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mad_c00162{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mda_c00162{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m74_c00162{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mef_c00162{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m98_c00162{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m60_c00162{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m112_c00162{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m85_c00162{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mab_c00162{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m11_c00162{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00162{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00162{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me7_c00162{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.me9_c00162{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00162{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me8_c00162{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00162{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00162{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m90_c00162{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00162{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m84_c00162{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m30_c00162{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m12_c00162{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m94_c00162{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m87_c00162{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00162{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m71_c00162{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mee_c00162{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00162{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00162{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00162{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m72_c00162{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m45_c00162{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00162{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.maa_c00162{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m43_c00162{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00162{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m14_c00162{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m23_c00162{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00162{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m82_c00162{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00162{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m91_c00162{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00162{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m37_c00162{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m97_c00162{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m18_c00162{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00162{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m99_c00162{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00162{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m46_c00162{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00162{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00162{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m27_c00162{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m51_c00162{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00162{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5_c00162{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md8_c00162{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m22_c00162{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00162{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00162{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m64_c00162{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00162{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00162{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m42_c00162{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00162{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m70_c00162{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.maf_c00162{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m24_c00162{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m108_c00162{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m83_c00162{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me_c00162{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m89_c00162{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m81_c00162{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00162{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00162{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m69_c00162{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00162{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m52_c00162{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00162{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m96_c00162{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00162{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m77_c00162{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m54_c00162{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m47_c00162{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mac_c00162{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m49_c00162{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00162{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m36_c00162{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.meb_c00162{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00162{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m29_c00162{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00162{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m95_c00162{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6_c00162{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m28_c00162{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00162{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00162{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00162{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00162{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m26_c00162{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00162{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8_c00162{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00162{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00162{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m21_c00162{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00162{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mff_c00162{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00162{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m25_c00162{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m41_c00162{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00162{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00162{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mca_c00162{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m40_c00162{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00162{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m66_c00162{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00162{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md_c00162{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m73_c00162{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00162{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00162{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m34_c00162{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m63_c00162{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00162{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m93_c00162{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m88_c00162{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m35_c00162{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00162{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m61_c00162{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md1_c00162{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m107_c00162{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.md0_c00162{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m110_c00162{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m44_c00162{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00162{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf_c00162{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00162{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00162{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m68_c00162{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00162{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m65_c00162{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m38_c00162{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00162{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00162{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma_c00162{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m62_c00162{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.me6_c00162{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m80_c00162{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00162{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00162{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mec_c00162{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00162{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mb_c00162{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m9_c00162{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me2_c00162{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00162{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00162{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m32_c00162{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4_c00162{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00162{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m39_c00162{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00162{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00162{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md3_c00162{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m59_c00162{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mce_c00162{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m16_c00162{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00162{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md4_c00162{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7_c00162{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m100_c00162{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m58_c00162{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00162{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00162{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00162{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00162{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00162{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m13_c00162{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00162{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00162{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc_c00162{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00162{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00162{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00162{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00162{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m76_c00162{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mde_c00162{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m20_c00162{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me5_c00162{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);}
.m3f_c00162{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00162{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m57_c00162{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00162{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m31_c00162{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mae_c00162{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00162{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00162{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mea_c00162{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00162{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00162{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00162{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mba_c00162{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00162{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00162{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00162{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00162{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m3_c00162{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00162{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00162{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m105_c00162{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.md7_c00162{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00162{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.md9_c00162{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00162{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me1_c00162{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m48_c00162{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md6_c00162{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.md2_c00162{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00162{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00162{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m17_c00162{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00162{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m56_c00162{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m15_c00162{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m75_c00162{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00162{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00162{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m19_c00162{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00162{transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00162{transform:matrix(0.384250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00162{transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);}
.m113_c00162{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00162{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00162{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.me0_c00162{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00162{transform:matrix(0.423750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00162{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00162{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m0_c00162{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.m109_c00162{transform:matrix(0.463250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463250,0.000000,0.000000,0.250000,0,0);}
.m55_c00162{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m104_c00162{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00162{transform:matrix(0.559500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00162{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.m79_c00162{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00162{transform:matrix(0.665250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00162{transform:matrix(0.774750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774750,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls0_c00162{letter-spacing:0.000000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{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__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00162{word-spacing:-5.625000px;}
.ws0_c00162{word-spacing:-2.396648px;}
.ws7_c00162{word-spacing:0.000000px;}
.ws3_c00162{word-spacing:5.967655px;}
.ws1_c00162{word-spacing:10.288299px;}
.ws6_c00162{word-spacing:18.109756px;}
.ws5_c00162{word-spacing:40.000000px;}
.ws4_c00162{word-spacing:74.722222px;}
._0_c00162{width:74.166667px;}
.fc0_c00162{color:transparent;}
.fs6_c00162{font-size:24.000000px;}
.fs4_c00162{font-size:30.000000px;}
.fs9_c00162{font-size:36.000000px;}
.fsa_c00162{font-size:42.000000px;}
.fs8_c00162{font-size:48.000000px;}
.fs5_c00162{font-size:54.000000px;}
.fs3_c00162{font-size:60.000000px;}
.fs2_c00162{font-size:66.000000px;}
.fs7_c00162{font-size:72.000000px;}
.fs0_c00162{font-size:84.000000px;}
.fs1_c00162{font-size:132.000000px;}
.y0_c00162{bottom:0.000000px;}
.y65_c00162{bottom:97.950000px;}
.y64_c00162{bottom:173.850000px;}
.y2f_c00162{bottom:184.050000px;}
.y63_c00162{bottom:187.200000px;}
.y2e_c00162{bottom:201.000000px;}
.y62_c00162{bottom:205.950000px;}
.y2d_c00162{bottom:215.400000px;}
.y61_c00162{bottom:218.850000px;}
.y2c_c00162{bottom:230.100000px;}
.y60_c00162{bottom:234.000000px;}
.y2b_c00162{bottom:253.050000px;}
.y5f_c00162{bottom:266.100000px;}
.y5e_c00162{bottom:282.600000px;}
.y2a_c00162{bottom:285.150000px;}
.y5d_c00162{bottom:296.250000px;}
.y29_c00162{bottom:303.150000px;}
.y5c_c00162{bottom:309.300000px;}
.y28_c00162{bottom:324.300000px;}
.y5b_c00162{bottom:325.500000px;}
.y5a_c00162{bottom:337.950000px;}
.y27_c00162{bottom:345.900000px;}
.y59_c00162{bottom:353.850000px;}
.y58_c00162{bottom:368.550000px;}
.y26_c00162{bottom:368.700000px;}
.y57_c00162{bottom:381.900000px;}
.y25_c00162{bottom:387.000000px;}
.y56_c00162{bottom:395.250000px;}
.y24_c00162{bottom:405.000000px;}
.y55_c00162{bottom:411.450000px;}
.y23_c00162{bottom:420.150000px;}
.y54_c00162{bottom:426.900000px;}
.y22_c00162{bottom:430.200000px;}
.y53_c00162{bottom:441.750000px;}
.y21_c00162{bottom:462.300000px;}
.y52_c00162{bottom:463.350000px;}
.y51_c00162{bottom:481.650000px;}
.y20_c00162{bottom:488.550000px;}
.y50_c00162{bottom:503.550000px;}
.y1f_c00162{bottom:507.300000px;}
.y4f_c00162{bottom:521.250000px;}
.y4e_c00162{bottom:538.500000px;}
.y1e_c00162{bottom:541.050000px;}
.y4d_c00162{bottom:557.250000px;}
.y4c_c00162{bottom:575.250000px;}
.y1d_c00162{bottom:576.450000px;}
.y1c_c00162{bottom:595.500000px;}
.y4b_c00162{bottom:596.850000px;}
.y1b_c00162{bottom:613.800000px;}
.y4a_c00162{bottom:621.750000px;}
.y49_c00162{bottom:643.200000px;}
.y1a_c00162{bottom:645.900000px;}
.y48_c00162{bottom:663.300000px;}
.y19_c00162{bottom:666.750000px;}
.y47_c00162{bottom:681.000000px;}
.y18_c00162{bottom:690.450000px;}
.y46_c00162{bottom:699.000000px;}
.y17_c00162{bottom:711.750000px;}
.y45_c00162{bottom:717.000000px;}
.y16_c00162{bottom:733.350000px;}
.y44_c00162{bottom:734.700000px;}
.y43_c00162{bottom:752.400000px;}
.y15_c00162{bottom:755.250000px;}
.y42_c00162{bottom:770.400000px;}
.y14_c00162{bottom:775.350000px;}
.y41_c00162{bottom:790.200000px;}
.y13_c00162{bottom:795.900000px;}
.y40_c00162{bottom:805.650000px;}
.y12_c00162{bottom:816.450000px;}
.y3f_c00162{bottom:823.950000px;}
.y11_c00162{bottom:835.950000px;}
.y3e_c00162{bottom:841.200000px;}
.y10_c00162{bottom:857.850000px;}
.y3d_c00162{bottom:858.900000px;}
.y3c_c00162{bottom:878.700000px;}
.yf_c00162{bottom:880.200000px;}
.ye_c00162{bottom:887.400000px;}
.yd_c00162{bottom:898.500000px;}
.y3b_c00162{bottom:898.800000px;}
.yc_c00162{bottom:916.500000px;}
.y3a_c00162{bottom:916.800000px;}
.yb_c00162{bottom:934.200000px;}
.y39_c00162{bottom:934.500000px;}
.y38_c00162{bottom:953.250000px;}
.ya_c00162{bottom:960.600000px;}
.y37_c00162{bottom:974.100000px;}
.y9_c00162{bottom:991.500000px;}
.y36_c00162{bottom:994.650000px;}
.y35_c00162{bottom:1015.650000px;}
.y8_c00162{bottom:1016.250000px;}
.y7_c00162{bottom:1025.550000px;}
.y34_c00162{bottom:1036.500000px;}
.y6_c00162{bottom:1052.250000px;}
.y33_c00162{bottom:1060.950000px;}
.y5_c00162{bottom:1080.000000px;}
.y4_c00162{bottom:1098.000000px;}
.y32_c00162{bottom:1099.500000px;}
.y3_c00162{bottom:1116.000000px;}
.y31_c00162{bottom:1120.350000px;}
.y1_c00162{bottom:1143.000000px;}
.y2_c00162{bottom:1146.900000px;}
.y30_c00162{bottom:1265.700000px;}
.h8_c00162{height:24.000000px;}
.h6_c00162{height:30.000000px;}
.hb_c00162{height:36.000000px;}
.hc_c00162{height:42.000000px;}
.ha_c00162{height:48.000000px;}
.h7_c00162{height:54.000000px;}
.h5_c00162{height:60.000000px;}
.h4_c00162{height:66.000000px;}
.h9_c00162{height:72.000000px;}
.h2_c00162{height:84.000000px;}
.h3_c00162{height:132.000000px;}
.h1_c00162{height:1273.500000px;}
.h0_c00162{height:1273.679993px;}
.w1_c00162{width:953.250000px;}
.w0_c00162{width:953.280030px;}
.x0_c00162{left:0.000000px;}
.x4_c00162{left:94.350000px;}
.x18_c00162{left:95.400000px;}
.x50_c00162{left:96.900000px;}
.x48_c00162{left:97.950000px;}
.x65_c00162{left:99.000000px;}
.x8d_c00162{left:101.250000px;}
.x8a_c00162{left:103.050000px;}
.x86_c00162{left:104.400000px;}
.xa_c00162{left:114.000000px;}
.x22_c00162{left:115.050000px;}
.x27_c00162{left:116.100000px;}
.x56_c00162{left:118.050000px;}
.x19_c00162{left:119.250000px;}
.x71_c00162{left:120.600000px;}
.x81_c00162{left:121.950000px;}
.x8b_c00162{left:128.250000px;}
.x57_c00162{left:131.100000px;}
.x33_c00162{left:134.250000px;}
.x3c_c00162{left:136.500000px;}
.x3b_c00162{left:137.700000px;}
.x79_c00162{left:139.500000px;}
.x7b_c00162{left:141.150000px;}
.x1b_c00162{left:142.650000px;}
.x90_c00162{left:145.350000px;}
.x23_c00162{left:146.700000px;}
.x62_c00162{left:148.800000px;}
.x8c_c00162{left:149.850000px;}
.xb_c00162{left:153.300000px;}
.x67_c00162{left:155.100000px;}
.x16_c00162{left:157.800000px;}
.x17_c00162{left:162.000000px;}
.x51_c00162{left:165.600000px;}
.x72_c00162{left:167.700000px;}
.x5e_c00162{left:168.750000px;}
.x8e_c00162{left:174.000000px;}
.x2e_c00162{left:175.200000px;}
.x34_c00162{left:176.700000px;}
.x5_c00162{left:179.250000px;}
.x37_c00162{left:181.200000px;}
.x49_c00162{left:182.850000px;}
.x11_c00162{left:186.600000px;}
.x28_c00162{left:187.800000px;}
.x52_c00162{left:193.650000px;}
.x63_c00162{left:195.900000px;}
.x24_c00162{left:197.550000px;}
.x41_c00162{left:199.500000px;}
.x73_c00162{left:201.150000px;}
.xc_c00162{left:203.700000px;}
.x77_c00162{left:204.900000px;}
.x1d_c00162{left:206.250000px;}
.x2f_c00162{left:207.300000px;}
.x68_c00162{left:208.800000px;}
.x58_c00162{left:211.800000px;}
.x4a_c00162{left:216.300000px;}
.x6e_c00162{left:217.500000px;}
.x82_c00162{left:219.450000px;}
.x64_c00162{left:221.400000px;}
.x42_c00162{left:222.900000px;}
.x6_c00162{left:225.000000px;}
.x5f_c00162{left:227.400000px;}
.x7c_c00162{left:230.850000px;}
.x44_c00162{left:232.500000px;}
.x87_c00162{left:234.300000px;}
.x83_c00162{left:239.250000px;}
.x8f_c00162{left:240.300000px;}
.x38_c00162{left:241.650000px;}
.x69_c00162{left:245.850000px;}
.x1e_c00162{left:246.900000px;}
.x12_c00162{left:248.550000px;}
.x3d_c00162{left:249.600000px;}
.x45_c00162{left:253.050000px;}
.x59_c00162{left:255.000000px;}
.x29_c00162{left:263.700000px;}
.x74_c00162{left:265.650000px;}
.x4b_c00162{left:269.250000px;}
.x7a_c00162{left:271.200000px;}
.x78_c00162{left:272.400000px;}
.x35_c00162{left:274.650000px;}
.x1a_c00162{left:276.600000px;}
.x4c_c00162{left:278.550000px;}
.x43_c00162{left:280.800000px;}
.x13_c00162{left:282.450000px;}
.x39_c00162{left:283.800000px;}
.x3e_c00162{left:285.900000px;}
.x46_c00162{left:288.300000px;}
.x60_c00162{left:290.100000px;}
.x6a_c00162{left:291.900000px;}
.x7_c00162{left:296.250000px;}
.x1f_c00162{left:297.300000px;}
.x30_c00162{left:298.800000px;}
.x14_c00162{left:301.500000px;}
.xd_c00162{left:303.750000px;}
.x7d_c00162{left:306.900000px;}
.x36_c00162{left:308.850000px;}
.x5a_c00162{left:310.050000px;}
.x31_c00162{left:311.700000px;}
.x3a_c00162{left:316.200000px;}
.x1c_c00162{left:317.250000px;}
.x6f_c00162{left:321.450000px;}
.x53_c00162{left:324.000000px;}
.x75_c00162{left:326.100000px;}
.xe_c00162{left:327.450000px;}
.x47_c00162{left:330.450000px;}
.x6c_c00162{left:331.500000px;}
.x1_c00162{left:336.600000px;}
.x20_c00162{left:338.700000px;}
.x6b_c00162{left:340.800000px;}
.x2a_c00162{left:342.450000px;}
.x25_c00162{left:348.000000px;}
.x6d_c00162{left:352.050000px;}
.x54_c00162{left:353.550000px;}
.x84_c00162{left:354.750000px;}
.x15_c00162{left:355.800000px;}
.x2b_c00162{left:356.850000px;}
.x3f_c00162{left:358.650000px;}
.x88_c00162{left:359.700000px;}
.x7e_c00162{left:362.700000px;}
.x76_c00162{left:365.400000px;}
.x4f_c00162{left:367.200000px;}
.x5b_c00162{left:371.550000px;}
.x8_c00162{left:372.900000px;}
.xf_c00162{left:375.300000px;}
.x61_c00162{left:381.450000px;}
.x7f_c00162{left:383.250000px;}
.x32_c00162{left:385.200000px;}
.x66_c00162{left:387.600000px;}
.x2c_c00162{left:388.950000px;}
.x55_c00162{left:390.600000px;}
.x5c_c00162{left:392.850000px;}
.x21_c00162{left:394.800000px;}
.x10_c00162{left:397.200000px;}
.x26_c00162{left:398.700000px;}
.x9_c00162{left:404.550000px;}
.x70_c00162{left:406.050000px;}
.x4d_c00162{left:407.100000px;}
.x40_c00162{left:411.150000px;}
.x85_c00162{left:414.150000px;}
.x4e_c00162{left:415.800000px;}
.x2d_c00162{left:421.650000px;}
.x80_c00162{left:428.250000px;}
.x5d_c00162{left:430.950000px;}
.x89_c00162{left:436.350000px;}
.x124_c00162{left:449.700000px;}
.xca_c00162{left:454.650000px;}
.xfa_c00162{left:457.200000px;}
.xfb_c00162{left:458.250000px;}
.x120_c00162{left:461.100000px;}
.x94_c00162{left:470.550000px;}
.xbf_c00162{left:471.750000px;}
.xdb_c00162{left:472.800000px;}
.xe6_c00162{left:474.000000px;}
.x100_c00162{left:475.200000px;}
.x108_c00162{left:476.400000px;}
.x10a_c00162{left:477.450000px;}
.xf0_c00162{left:484.950000px;}
.x116_c00162{left:486.300000px;}
.x9d_c00162{left:488.100000px;}
.xa9_c00162{left:489.600000px;}
.xb1_c00162{left:491.400000px;}
.xdc_c00162{left:493.350000px;}
.xf9_c00162{left:495.450000px;}
.xa5_c00162{left:496.650000px;}
.x122_c00162{left:497.850000px;}
.xfc_c00162{left:498.900000px;}
.x9c_c00162{left:499.950000px;}
.xf1_c00162{left:502.200000px;}
.x10b_c00162{left:506.550000px;}
.xc0_c00162{left:507.750000px;}
.x119_c00162{left:509.100000px;}
.x118_c00162{left:510.300000px;}
.xcb_c00162{left:511.950000px;}
.xd1_c00162{left:513.450000px;}
.xee_c00162{left:515.550000px;}
.xe7_c00162{left:516.900000px;}
.xa6_c00162{left:517.950000px;}
.xb3_c00162{left:522.000000px;}
.xaf_c00162{left:524.550000px;}
.xd7_c00162{left:527.400000px;}
.x112_c00162{left:528.900000px;}
.xb9_c00162{left:531.450000px;}
.x121_c00162{left:533.100000px;}
.xe2_c00162{left:534.450000px;}
.xb0_c00162{left:536.100000px;}
.xc6_c00162{left:537.150000px;}
.xd2_c00162{left:538.350000px;}
.x95_c00162{left:540.750000px;}
.x9e_c00162{left:542.400000px;}
.x104_c00162{left:544.500000px;}
.xc1_c00162{left:545.850000px;}
.x11a_c00162{left:546.900000px;}
.x91_c00162{left:548.250000px;}
.xba_c00162{left:552.750000px;}
.xdd_c00162{left:556.050000px;}
.xec_c00162{left:559.800000px;}
.x96_c00162{left:560.850000px;}
.x10d_c00162{left:564.900000px;}
.xaa_c00162{left:567.450000px;}
.x106_c00162{left:570.600000px;}
.xd3_c00162{left:574.350000px;}
.xc2_c00162{left:575.700000px;}
.xcc_c00162{left:577.050000px;}
.x113_c00162{left:578.550000px;}
.x11b_c00162{left:581.100000px;}
.xb2_c00162{left:582.750000px;}
.x10f_c00162{left:583.800000px;}
.xb4_c00162{left:585.750000px;}
.x9f_c00162{left:587.400000px;}
.x2_c00162{left:588.600000px;}
.xf2_c00162{left:590.400000px;}
.xe8_c00162{left:592.800000px;}
.xa0_c00162{left:593.850000px;}
.xa7_c00162{left:596.850000px;}
.xde_c00162{left:598.800000px;}
.xc7_c00162{left:600.900000px;}
.x97_c00162{left:602.250000px;}
.xab_c00162{left:605.550000px;}
.xbb_c00162{left:608.550000px;}
.xd4_c00162{left:611.400000px;}
.x110_c00162{left:612.750000px;}
.xa8_c00162{left:613.800000px;}
.xf3_c00162{left:615.600000px;}
.xfd_c00162{left:617.400000px;}
.xe3_c00162{left:619.050000px;}
.x10c_c00162{left:622.050000px;}
.xf5_c00162{left:624.450000px;}
.x101_c00162{left:627.600000px;}
.xa1_c00162{left:629.550000px;}
.x98_c00162{left:633.150000px;}
.xb5_c00162{left:635.100000px;}
.xd8_c00162{left:639.750000px;}
.xc3_c00162{left:641.550000px;}
.xb6_c00162{left:642.600000px;}
.xcd_c00162{left:643.650000px;}
.x99_c00162{left:647.250000px;}
.xed_c00162{left:649.800000px;}
.xdf_c00162{left:651.000000px;}
.xce_c00162{left:652.650000px;}
.xac_c00162{left:654.450000px;}
.x109_c00162{left:658.500000px;}
.xe0_c00162{left:662.100000px;}
.x92_c00162{left:663.450000px;}
.x11c_c00162{left:664.950000px;}
.xbc_c00162{left:666.150000px;}
.xc4_c00162{left:669.300000px;}
.xcf_c00162{left:670.650000px;}
.xc8_c00162{left:672.600000px;}
.x114_c00162{left:674.700000px;}
.x10e_c00162{left:676.200000px;}
.xf7_c00162{left:678.600000px;}
.xa2_c00162{left:682.800000px;}
.x107_c00162{left:684.750000px;}
.xd5_c00162{left:688.800000px;}
.xa3_c00162{left:691.800000px;}
.x102_c00162{left:694.950000px;}
.xf4_c00162{left:696.000000px;}
.xbd_c00162{left:699.600000px;}
.x11d_c00162{left:704.250000px;}
.xd9_c00162{left:705.300000px;}
.xf8_c00162{left:706.350000px;}
.xfe_c00162{left:709.200000px;}
.xe1_c00162{left:712.200000px;}
.xe4_c00162{left:714.150000px;}
.xe9_c00162{left:715.200000px;}
.xad_c00162{left:718.500000px;}
.xda_c00162{left:722.250000px;}
.x11e_c00162{left:723.300000px;}
.xea_c00162{left:726.900000px;}
.x9a_c00162{left:728.250000px;}
.x103_c00162{left:729.900000px;}
.xbe_c00162{left:732.000000px;}
.xb7_c00162{left:733.350000px;}
.xc5_c00162{left:735.150000px;}
.xc9_c00162{left:737.700000px;}
.xef_c00162{left:738.750000px;}
.xa4_c00162{left:740.400000px;}
.xe5_c00162{left:742.950000px;}
.x123_c00162{left:744.000000px;}
.xeb_c00162{left:745.200000px;}
.xd6_c00162{left:747.450000px;}
.xb8_c00162{left:748.500000px;}
.x117_c00162{left:751.800000px;}
.xf6_c00162{left:753.000000px;}
.x9b_c00162{left:755.250000px;}
.x3_c00162{left:760.650000px;}
.xd0_c00162{left:769.650000px;}
.xff_c00162{left:774.000000px;}
.x105_c00162{left:776.100000px;}
.xae_c00162{left:777.600000px;}
.x111_c00162{left:778.650000px;}
.x115_c00162{left:780.450000px;}
.x11f_c00162{left:781.650000px;}
.x93_c00162{left:784.350000px;}
.x126_c00162{left:945.750000px;}
.x125_c00162{left:949.650000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws2_c00162{word-spacing:-5.000000pt;}
.ws0_c00162{word-spacing:-2.130354pt;}
.ws7_c00162{word-spacing:0.000000pt;}
.ws3_c00162{word-spacing:5.304582pt;}
.ws1_c00162{word-spacing:9.145155pt;}
.ws6_c00162{word-spacing:16.097561pt;}
.ws5_c00162{word-spacing:35.555556pt;}
.ws4_c00162{word-spacing:66.419753pt;}
._0_c00162{width:65.925926pt;}
.fs6_c00162{font-size:21.333333pt;}
.fs4_c00162{font-size:26.666667pt;}
.fs9_c00162{font-size:32.000000pt;}
.fsa_c00162{font-size:37.333333pt;}
.fs8_c00162{font-size:42.666667pt;}
.fs5_c00162{font-size:48.000000pt;}
.fs3_c00162{font-size:53.333333pt;}
.fs2_c00162{font-size:58.666667pt;}
.fs7_c00162{font-size:64.000000pt;}
.fs0_c00162{font-size:74.666667pt;}
.fs1_c00162{font-size:117.333333pt;}
.y0_c00162{bottom:0.000000pt;}
.y65_c00162{bottom:87.066667pt;}
.y64_c00162{bottom:154.533333pt;}
.y2f_c00162{bottom:163.600000pt;}
.y63_c00162{bottom:166.400000pt;}
.y2e_c00162{bottom:178.666667pt;}
.y62_c00162{bottom:183.066667pt;}
.y2d_c00162{bottom:191.466667pt;}
.y61_c00162{bottom:194.533333pt;}
.y2c_c00162{bottom:204.533333pt;}
.y60_c00162{bottom:208.000000pt;}
.y2b_c00162{bottom:224.933333pt;}
.y5f_c00162{bottom:236.533333pt;}
.y5e_c00162{bottom:251.200000pt;}
.y2a_c00162{bottom:253.466667pt;}
.y5d_c00162{bottom:263.333333pt;}
.y29_c00162{bottom:269.466667pt;}
.y5c_c00162{bottom:274.933333pt;}
.y28_c00162{bottom:288.266667pt;}
.y5b_c00162{bottom:289.333333pt;}
.y5a_c00162{bottom:300.400000pt;}
.y27_c00162{bottom:307.466667pt;}
.y59_c00162{bottom:314.533333pt;}
.y58_c00162{bottom:327.600000pt;}
.y26_c00162{bottom:327.733333pt;}
.y57_c00162{bottom:339.466667pt;}
.y25_c00162{bottom:344.000000pt;}
.y56_c00162{bottom:351.333333pt;}
.y24_c00162{bottom:360.000000pt;}
.y55_c00162{bottom:365.733333pt;}
.y23_c00162{bottom:373.466667pt;}
.y54_c00162{bottom:379.466667pt;}
.y22_c00162{bottom:382.400000pt;}
.y53_c00162{bottom:392.666667pt;}
.y21_c00162{bottom:410.933333pt;}
.y52_c00162{bottom:411.866667pt;}
.y51_c00162{bottom:428.133333pt;}
.y20_c00162{bottom:434.266667pt;}
.y50_c00162{bottom:447.600000pt;}
.y1f_c00162{bottom:450.933333pt;}
.y4f_c00162{bottom:463.333333pt;}
.y4e_c00162{bottom:478.666667pt;}
.y1e_c00162{bottom:480.933333pt;}
.y4d_c00162{bottom:495.333333pt;}
.y4c_c00162{bottom:511.333333pt;}
.y1d_c00162{bottom:512.400000pt;}
.y1c_c00162{bottom:529.333333pt;}
.y4b_c00162{bottom:530.533333pt;}
.y1b_c00162{bottom:545.600000pt;}
.y4a_c00162{bottom:552.666667pt;}
.y49_c00162{bottom:571.733333pt;}
.y1a_c00162{bottom:574.133333pt;}
.y48_c00162{bottom:589.600000pt;}
.y19_c00162{bottom:592.666667pt;}
.y47_c00162{bottom:605.333333pt;}
.y18_c00162{bottom:613.733333pt;}
.y46_c00162{bottom:621.333333pt;}
.y17_c00162{bottom:632.666667pt;}
.y45_c00162{bottom:637.333333pt;}
.y16_c00162{bottom:651.866667pt;}
.y44_c00162{bottom:653.066667pt;}
.y43_c00162{bottom:668.800000pt;}
.y15_c00162{bottom:671.333333pt;}
.y42_c00162{bottom:684.800000pt;}
.y14_c00162{bottom:689.200000pt;}
.y41_c00162{bottom:702.400000pt;}
.y13_c00162{bottom:707.466667pt;}
.y40_c00162{bottom:716.133333pt;}
.y12_c00162{bottom:725.733333pt;}
.y3f_c00162{bottom:732.400000pt;}
.y11_c00162{bottom:743.066667pt;}
.y3e_c00162{bottom:747.733333pt;}
.y10_c00162{bottom:762.533333pt;}
.y3d_c00162{bottom:763.466667pt;}
.y3c_c00162{bottom:781.066667pt;}
.yf_c00162{bottom:782.400000pt;}
.ye_c00162{bottom:788.800000pt;}
.yd_c00162{bottom:798.666667pt;}
.y3b_c00162{bottom:798.933333pt;}
.yc_c00162{bottom:814.666667pt;}
.y3a_c00162{bottom:814.933333pt;}
.yb_c00162{bottom:830.400000pt;}
.y39_c00162{bottom:830.666667pt;}
.y38_c00162{bottom:847.333333pt;}
.ya_c00162{bottom:853.866667pt;}
.y37_c00162{bottom:865.866667pt;}
.y9_c00162{bottom:881.333333pt;}
.y36_c00162{bottom:884.133333pt;}
.y35_c00162{bottom:902.800000pt;}
.y8_c00162{bottom:903.333333pt;}
.y7_c00162{bottom:911.600000pt;}
.y34_c00162{bottom:921.333333pt;}
.y6_c00162{bottom:935.333333pt;}
.y33_c00162{bottom:943.066667pt;}
.y5_c00162{bottom:960.000000pt;}
.y4_c00162{bottom:976.000000pt;}
.y32_c00162{bottom:977.333333pt;}
.y3_c00162{bottom:992.000000pt;}
.y31_c00162{bottom:995.866667pt;}
.y1_c00162{bottom:1016.000000pt;}
.y2_c00162{bottom:1019.466667pt;}
.y30_c00162{bottom:1125.066667pt;}
.h8_c00162{height:21.333333pt;}
.h6_c00162{height:26.666667pt;}
.hb_c00162{height:32.000000pt;}
.hc_c00162{height:37.333333pt;}
.ha_c00162{height:42.666667pt;}
.h7_c00162{height:48.000000pt;}
.h5_c00162{height:53.333333pt;}
.h4_c00162{height:58.666667pt;}
.h9_c00162{height:64.000000pt;}
.h2_c00162{height:74.666667pt;}
.h3_c00162{height:117.333333pt;}
.h1_c00162{height:1132.000000pt;}
.h0_c00162{height:1132.159993pt;}
.w1_c00162{width:847.333333pt;}
.w0_c00162{width:847.360027pt;}
.x0_c00162{left:0.000000pt;}
.x4_c00162{left:83.866667pt;}
.x18_c00162{left:84.800000pt;}
.x50_c00162{left:86.133333pt;}
.x48_c00162{left:87.066667pt;}
.x65_c00162{left:88.000000pt;}
.x8d_c00162{left:90.000000pt;}
.x8a_c00162{left:91.600000pt;}
.x86_c00162{left:92.800000pt;}
.xa_c00162{left:101.333333pt;}
.x22_c00162{left:102.266667pt;}
.x27_c00162{left:103.200000pt;}
.x56_c00162{left:104.933333pt;}
.x19_c00162{left:106.000000pt;}
.x71_c00162{left:107.200000pt;}
.x81_c00162{left:108.400000pt;}
.x8b_c00162{left:114.000000pt;}
.x57_c00162{left:116.533333pt;}
.x33_c00162{left:119.333333pt;}
.x3c_c00162{left:121.333333pt;}
.x3b_c00162{left:122.400000pt;}
.x79_c00162{left:124.000000pt;}
.x7b_c00162{left:125.466667pt;}
.x1b_c00162{left:126.800000pt;}
.x90_c00162{left:129.200000pt;}
.x23_c00162{left:130.400000pt;}
.x62_c00162{left:132.266667pt;}
.x8c_c00162{left:133.200000pt;}
.xb_c00162{left:136.266667pt;}
.x67_c00162{left:137.866667pt;}
.x16_c00162{left:140.266667pt;}
.x17_c00162{left:144.000000pt;}
.x51_c00162{left:147.200000pt;}
.x72_c00162{left:149.066667pt;}
.x5e_c00162{left:150.000000pt;}
.x8e_c00162{left:154.666667pt;}
.x2e_c00162{left:155.733333pt;}
.x34_c00162{left:157.066667pt;}
.x5_c00162{left:159.333333pt;}
.x37_c00162{left:161.066667pt;}
.x49_c00162{left:162.533333pt;}
.x11_c00162{left:165.866667pt;}
.x28_c00162{left:166.933333pt;}
.x52_c00162{left:172.133333pt;}
.x63_c00162{left:174.133333pt;}
.x24_c00162{left:175.600000pt;}
.x41_c00162{left:177.333333pt;}
.x73_c00162{left:178.800000pt;}
.xc_c00162{left:181.066667pt;}
.x77_c00162{left:182.133333pt;}
.x1d_c00162{left:183.333333pt;}
.x2f_c00162{left:184.266667pt;}
.x68_c00162{left:185.600000pt;}
.x58_c00162{left:188.266667pt;}
.x4a_c00162{left:192.266667pt;}
.x6e_c00162{left:193.333333pt;}
.x82_c00162{left:195.066667pt;}
.x64_c00162{left:196.800000pt;}
.x42_c00162{left:198.133333pt;}
.x6_c00162{left:200.000000pt;}
.x5f_c00162{left:202.133333pt;}
.x7c_c00162{left:205.200000pt;}
.x44_c00162{left:206.666667pt;}
.x87_c00162{left:208.266667pt;}
.x83_c00162{left:212.666667pt;}
.x8f_c00162{left:213.600000pt;}
.x38_c00162{left:214.800000pt;}
.x69_c00162{left:218.533333pt;}
.x1e_c00162{left:219.466667pt;}
.x12_c00162{left:220.933333pt;}
.x3d_c00162{left:221.866667pt;}
.x45_c00162{left:224.933333pt;}
.x59_c00162{left:226.666667pt;}
.x29_c00162{left:234.400000pt;}
.x74_c00162{left:236.133333pt;}
.x4b_c00162{left:239.333333pt;}
.x7a_c00162{left:241.066667pt;}
.x78_c00162{left:242.133333pt;}
.x35_c00162{left:244.133333pt;}
.x1a_c00162{left:245.866667pt;}
.x4c_c00162{left:247.600000pt;}
.x43_c00162{left:249.600000pt;}
.x13_c00162{left:251.066667pt;}
.x39_c00162{left:252.266667pt;}
.x3e_c00162{left:254.133333pt;}
.x46_c00162{left:256.266667pt;}
.x60_c00162{left:257.866667pt;}
.x6a_c00162{left:259.466667pt;}
.x7_c00162{left:263.333333pt;}
.x1f_c00162{left:264.266667pt;}
.x30_c00162{left:265.600000pt;}
.x14_c00162{left:268.000000pt;}
.xd_c00162{left:270.000000pt;}
.x7d_c00162{left:272.800000pt;}
.x36_c00162{left:274.533333pt;}
.x5a_c00162{left:275.600000pt;}
.x31_c00162{left:277.066667pt;}
.x3a_c00162{left:281.066667pt;}
.x1c_c00162{left:282.000000pt;}
.x6f_c00162{left:285.733333pt;}
.x53_c00162{left:288.000000pt;}
.x75_c00162{left:289.866667pt;}
.xe_c00162{left:291.066667pt;}
.x47_c00162{left:293.733333pt;}
.x6c_c00162{left:294.666667pt;}
.x1_c00162{left:299.200000pt;}
.x20_c00162{left:301.066667pt;}
.x6b_c00162{left:302.933333pt;}
.x2a_c00162{left:304.400000pt;}
.x25_c00162{left:309.333333pt;}
.x6d_c00162{left:312.933333pt;}
.x54_c00162{left:314.266667pt;}
.x84_c00162{left:315.333333pt;}
.x15_c00162{left:316.266667pt;}
.x2b_c00162{left:317.200000pt;}
.x3f_c00162{left:318.800000pt;}
.x88_c00162{left:319.733333pt;}
.x7e_c00162{left:322.400000pt;}
.x76_c00162{left:324.800000pt;}
.x4f_c00162{left:326.400000pt;}
.x5b_c00162{left:330.266667pt;}
.x8_c00162{left:331.466667pt;}
.xf_c00162{left:333.600000pt;}
.x61_c00162{left:339.066667pt;}
.x7f_c00162{left:340.666667pt;}
.x32_c00162{left:342.400000pt;}
.x66_c00162{left:344.533333pt;}
.x2c_c00162{left:345.733333pt;}
.x55_c00162{left:347.200000pt;}
.x5c_c00162{left:349.200000pt;}
.x21_c00162{left:350.933333pt;}
.x10_c00162{left:353.066667pt;}
.x26_c00162{left:354.400000pt;}
.x9_c00162{left:359.600000pt;}
.x70_c00162{left:360.933333pt;}
.x4d_c00162{left:361.866667pt;}
.x40_c00162{left:365.466667pt;}
.x85_c00162{left:368.133333pt;}
.x4e_c00162{left:369.600000pt;}
.x2d_c00162{left:374.800000pt;}
.x80_c00162{left:380.666667pt;}
.x5d_c00162{left:383.066667pt;}
.x89_c00162{left:387.866667pt;}
.x124_c00162{left:399.733333pt;}
.xca_c00162{left:404.133333pt;}
.xfa_c00162{left:406.400000pt;}
.xfb_c00162{left:407.333333pt;}
.x120_c00162{left:409.866667pt;}
.x94_c00162{left:418.266667pt;}
.xbf_c00162{left:419.333333pt;}
.xdb_c00162{left:420.266667pt;}
.xe6_c00162{left:421.333333pt;}
.x100_c00162{left:422.400000pt;}
.x108_c00162{left:423.466667pt;}
.x10a_c00162{left:424.400000pt;}
.xf0_c00162{left:431.066667pt;}
.x116_c00162{left:432.266667pt;}
.x9d_c00162{left:433.866667pt;}
.xa9_c00162{left:435.200000pt;}
.xb1_c00162{left:436.800000pt;}
.xdc_c00162{left:438.533333pt;}
.xf9_c00162{left:440.400000pt;}
.xa5_c00162{left:441.466667pt;}
.x122_c00162{left:442.533333pt;}
.xfc_c00162{left:443.466667pt;}
.x9c_c00162{left:444.400000pt;}
.xf1_c00162{left:446.400000pt;}
.x10b_c00162{left:450.266667pt;}
.xc0_c00162{left:451.333333pt;}
.x119_c00162{left:452.533333pt;}
.x118_c00162{left:453.600000pt;}
.xcb_c00162{left:455.066667pt;}
.xd1_c00162{left:456.400000pt;}
.xee_c00162{left:458.266667pt;}
.xe7_c00162{left:459.466667pt;}
.xa6_c00162{left:460.400000pt;}
.xb3_c00162{left:464.000000pt;}
.xaf_c00162{left:466.266667pt;}
.xd7_c00162{left:468.800000pt;}
.x112_c00162{left:470.133333pt;}
.xb9_c00162{left:472.400000pt;}
.x121_c00162{left:473.866667pt;}
.xe2_c00162{left:475.066667pt;}
.xb0_c00162{left:476.533333pt;}
.xc6_c00162{left:477.466667pt;}
.xd2_c00162{left:478.533333pt;}
.x95_c00162{left:480.666667pt;}
.x9e_c00162{left:482.133333pt;}
.x104_c00162{left:484.000000pt;}
.xc1_c00162{left:485.200000pt;}
.x11a_c00162{left:486.133333pt;}
.x91_c00162{left:487.333333pt;}
.xba_c00162{left:491.333333pt;}
.xdd_c00162{left:494.266667pt;}
.xec_c00162{left:497.600000pt;}
.x96_c00162{left:498.533333pt;}
.x10d_c00162{left:502.133333pt;}
.xaa_c00162{left:504.400000pt;}
.x106_c00162{left:507.200000pt;}
.xd3_c00162{left:510.533333pt;}
.xc2_c00162{left:511.733333pt;}
.xcc_c00162{left:512.933333pt;}
.x113_c00162{left:514.266667pt;}
.x11b_c00162{left:516.533333pt;}
.xb2_c00162{left:518.000000pt;}
.x10f_c00162{left:518.933333pt;}
.xb4_c00162{left:520.666667pt;}
.x9f_c00162{left:522.133333pt;}
.x2_c00162{left:523.200000pt;}
.xf2_c00162{left:524.800000pt;}
.xe8_c00162{left:526.933333pt;}
.xa0_c00162{left:527.866667pt;}
.xa7_c00162{left:530.533333pt;}
.xde_c00162{left:532.266667pt;}
.xc7_c00162{left:534.133333pt;}
.x97_c00162{left:535.333333pt;}
.xab_c00162{left:538.266667pt;}
.xbb_c00162{left:540.933333pt;}
.xd4_c00162{left:543.466667pt;}
.x110_c00162{left:544.666667pt;}
.xa8_c00162{left:545.600000pt;}
.xf3_c00162{left:547.200000pt;}
.xfd_c00162{left:548.800000pt;}
.xe3_c00162{left:550.266667pt;}
.x10c_c00162{left:552.933333pt;}
.xf5_c00162{left:555.066667pt;}
.x101_c00162{left:557.866667pt;}
.xa1_c00162{left:559.600000pt;}
.x98_c00162{left:562.800000pt;}
.xb5_c00162{left:564.533333pt;}
.xd8_c00162{left:568.666667pt;}
.xc3_c00162{left:570.266667pt;}
.xb6_c00162{left:571.200000pt;}
.xcd_c00162{left:572.133333pt;}
.x99_c00162{left:575.333333pt;}
.xed_c00162{left:577.600000pt;}
.xdf_c00162{left:578.666667pt;}
.xce_c00162{left:580.133333pt;}
.xac_c00162{left:581.733333pt;}
.x109_c00162{left:585.333333pt;}
.xe0_c00162{left:588.533333pt;}
.x92_c00162{left:589.733333pt;}
.x11c_c00162{left:591.066667pt;}
.xbc_c00162{left:592.133333pt;}
.xc4_c00162{left:594.933333pt;}
.xcf_c00162{left:596.133333pt;}
.xc8_c00162{left:597.866667pt;}
.x114_c00162{left:599.733333pt;}
.x10e_c00162{left:601.066667pt;}
.xf7_c00162{left:603.200000pt;}
.xa2_c00162{left:606.933333pt;}
.x107_c00162{left:608.666667pt;}
.xd5_c00162{left:612.266667pt;}
.xa3_c00162{left:614.933333pt;}
.x102_c00162{left:617.733333pt;}
.xf4_c00162{left:618.666667pt;}
.xbd_c00162{left:621.866667pt;}
.x11d_c00162{left:626.000000pt;}
.xd9_c00162{left:626.933333pt;}
.xf8_c00162{left:627.866667pt;}
.xfe_c00162{left:630.400000pt;}
.xe1_c00162{left:633.066667pt;}
.xe4_c00162{left:634.800000pt;}
.xe9_c00162{left:635.733333pt;}
.xad_c00162{left:638.666667pt;}
.xda_c00162{left:642.000000pt;}
.x11e_c00162{left:642.933333pt;}
.xea_c00162{left:646.133333pt;}
.x9a_c00162{left:647.333333pt;}
.x103_c00162{left:648.800000pt;}
.xbe_c00162{left:650.666667pt;}
.xb7_c00162{left:651.866667pt;}
.xc5_c00162{left:653.466667pt;}
.xc9_c00162{left:655.733333pt;}
.xef_c00162{left:656.666667pt;}
.xa4_c00162{left:658.133333pt;}
.xe5_c00162{left:660.400000pt;}
.x123_c00162{left:661.333333pt;}
.xeb_c00162{left:662.400000pt;}
.xd6_c00162{left:664.400000pt;}
.xb8_c00162{left:665.333333pt;}
.x117_c00162{left:668.266667pt;}
.xf6_c00162{left:669.333333pt;}
.x9b_c00162{left:671.333333pt;}
.x3_c00162{left:676.133333pt;}
.xd0_c00162{left:684.133333pt;}
.xff_c00162{left:688.000000pt;}
.x105_c00162{left:689.866667pt;}
.xae_c00162{left:691.200000pt;}
.x111_c00162{left:692.133333pt;}
.x115_c00162{left:693.733333pt;}
.x11f_c00162{left:694.800000pt;}
.x93_c00162{left:697.200000pt;}
.x126_c00162{left:840.666667pt;}
.x125_c00162{left:844.133333pt;}
}





/* 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_c00163 {
    display:none;
  }
  .loading-indicator_c00163.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00163 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_c00163 { 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_c00163" -> "#page-container .classname_c00163")
 */
.pf_c00163 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00163 { /* 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_c00163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00163 { /* 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_c00163 { /* 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_c00163 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00163 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00163 {overflow:visible;}
  }
}
.c_c00163 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00163 { /* 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_c00163:after { /* webkit #35443 */
  content: '';
}
.t_c00163:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00163 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 */
}
.__c00163 { /* 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_c00163 { /* info for Javascript */
  display:none;
}
.l_c00163 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00163 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00163 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00163: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_c00163 {
    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_c00163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00163.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_c00163 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00163;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.000000;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;}
.m9c_c00163{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00163{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00163{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.m101_c00163{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m108_c00163{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mf_c00163{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m82_c00163{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m45_c00163{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.md_c00163{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m40_c00163{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00163{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m79_c00163{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m0_c00163{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.m44_c00163{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00163{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00163{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00163{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00163{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.me5_c00163{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m94_c00163{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mda_c00163{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00163{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me6_c00163{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00163{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00163{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m103_c00163{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00163{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m37_c00163{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00163{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m90_c00163{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m69_c00163{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00163{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00163{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m10_c00163{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00163{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m114_c00163{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00163{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m61_c00163{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m87_c00163{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00163{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m85_c00163{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00163{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m67_c00163{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m93_c00163{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00163{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m83_c00163{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m75_c00163{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mb_c00163{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00163{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00163{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m35_c00163{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m102_c00163{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m9_c00163{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00163{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00163{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00163{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mec_c00163{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m39_c00163{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.med_c00163{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00163{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m46_c00163{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.me7_c00163{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00163{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m110_c00163{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00163{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00163{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00163{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00163{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md8_c00163{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me_c00163{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m98_c00163{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mca_c00163{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00163{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m73_c00163{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00163{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mce_c00163{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m72_c00163{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m19_c00163{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m81_c00163{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00163{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mab_c00163{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00163{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m107_c00163{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m21_c00163{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m30_c00163{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00163{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00163{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00163{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mde_c00163{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m88_c00163{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00163{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me1_c00163{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00163{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m64_c00163{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc_c00163{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md1_c00163{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m111_c00163{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00163{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mad_c00163{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m112_c00163{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8_c00163{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m80_c00163{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m28_c00163{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00163{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00163{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m22_c00163{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00163{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m23_c00163{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m86_c00163{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m13_c00163{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00163{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m47_c00163{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m84_c00163{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m115_c00163{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m92_c00163{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m100_c00163{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00163{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00163{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m78_c00163{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m34_c00163{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m11_c00163{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m49_c00163{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00163{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma_c00163{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m24_c00163{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mee_c00163{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00163{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m33_c00163{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m89_c00163{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m113_c00163{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mba_c00163{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00163{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00163{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00163{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00163{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00163{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00163{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00163{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00163{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m41_c00163{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m62_c00163{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m32_c00163{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00163{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.maf_c00163{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m91_c00163{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00163{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m31_c00163{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00163{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.me0_c00163{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00163{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m26_c00163{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00163{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00163{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m27_c00163{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00163{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00163{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.me3_c00163{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00163{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m97_c00163{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m25_c00163{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m66_c00163{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00163{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00163{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m55_c00163{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00163{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00163{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m60_c00163{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00163{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00163{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00163{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00163{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00163{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m57_c00163{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m48_c00163{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mae_c00163{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md6_c00163{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00163{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m18_c00163{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m95_c00163{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mac_c00163{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m16_c00163{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m38_c00163{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00163{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m6_c00163{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00163{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m36_c00163{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m54_c00163{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00163{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00163{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00163{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00163{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00163{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md9_c00163{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00163{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md3_c00163{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00163{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m58_c00163{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m63_c00163{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00163{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m29_c00163{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4_c00163{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m43_c00163{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m105_c00163{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00163{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00163{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m51_c00163{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m77_c00163{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00163{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m50_c00163{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00163{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00163{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00163{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m76_c00163{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m106_c00163{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m71_c00163{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00163{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12_c00163{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.meb_c00163{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00163{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m20_c00163{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00163{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00163{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me2_c00163{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mff_c00163{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m96_c00163{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00163{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.me4_c00163{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m17_c00163{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00163{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m74_c00163{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me9_c00163{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m70_c00163{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m104_c00163{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md7_c00163{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m109_c00163{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00163{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m52_c00163{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00163{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m53_c00163{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m56_c00163{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m42_c00163{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00163{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.md2_c00163{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.me8_c00163{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mea_c00163{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md4_c00163{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00163{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00163{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00163{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md5_c00163{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00163{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00163{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00163{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m59_c00163{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00163{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00163{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00163{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mef_c00163{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.maa_c00163{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m68_c00163{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m99_c00163{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00163{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00163{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00163{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00163{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.md0_c00163{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00163{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m116_c00163{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m65_c00163{transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00163{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m2_c00163{transform:matrix(0.396750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00163{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00163{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls0_c00163{letter-spacing:0.000000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{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__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00163{word-spacing:-2.487805px;}
.wsb_c00163{word-spacing:0.000000px;}
.ws7_c00163{word-spacing:4.250000px;}
.ws6_c00163{word-spacing:5.466307px;}
.ws2_c00163{word-spacing:6.136364px;}
.ws3_c00163{word-spacing:6.962606px;}
.ws1_c00163{word-spacing:10.169054px;}
.ws5_c00163{word-spacing:14.751592px;}
.ws0_c00163{word-spacing:15.156250px;}
.ws4_c00163{word-spacing:17.749326px;}
.ws8_c00163{word-spacing:18.793651px;}
.ws9_c00163{word-spacing:25.714286px;}
._0_c00163{width:52.142857px;}
._1_c00163{width:64.642857px;}
.fc0_c00163{color:transparent;}
.fs6_c00163{font-size:24.000000px;}
.fs7_c00163{font-size:30.000000px;}
.fs9_c00163{font-size:48.000000px;}
.fs4_c00163{font-size:54.000000px;}
.fs3_c00163{font-size:60.000000px;}
.fs2_c00163{font-size:66.000000px;}
.fs5_c00163{font-size:72.000000px;}
.fs8_c00163{font-size:78.000000px;}
.fs0_c00163{font-size:84.000000px;}
.fs1_c00163{font-size:90.000000px;}
.y0_c00163{bottom:0.000000px;}
.y36_c00163{bottom:165.300000px;}
.y35_c00163{bottom:183.150000px;}
.y68_c00163{bottom:183.900000px;}
.y34_c00163{bottom:201.900000px;}
.y67_c00163{bottom:202.200000px;}
.y33_c00163{bottom:219.600000px;}
.y66_c00163{bottom:219.900000px;}
.y65_c00163{bottom:237.900000px;}
.y32_c00163{bottom:245.400000px;}
.y64_c00163{bottom:259.800000px;}
.y31_c00163{bottom:263.700000px;}
.y63_c00163{bottom:277.800000px;}
.y30_c00163{bottom:281.400000px;}
.y62_c00163{bottom:295.800000px;}
.y2f_c00163{bottom:299.400000px;}
.y61_c00163{bottom:313.800000px;}
.y2e_c00163{bottom:317.100000px;}
.y60_c00163{bottom:331.500000px;}
.y2d_c00163{bottom:335.100000px;}
.y2c_c00163{bottom:352.800000px;}
.y5f_c00163{bottom:353.100000px;}
.y5e_c00163{bottom:366.450000px;}
.y2b_c00163{bottom:370.800000px;}
.y5d_c00163{bottom:384.600000px;}
.y2a_c00163{bottom:388.800000px;}
.y5c_c00163{bottom:402.900000px;}
.y29_c00163{bottom:406.800000px;}
.y5b_c00163{bottom:421.200000px;}
.y28_c00163{bottom:424.500000px;}
.y27_c00163{bottom:442.500000px;}
.y26_c00163{bottom:460.500000px;}
.y5a_c00163{bottom:460.800000px;}
.y25_c00163{bottom:478.500000px;}
.y59_c00163{bottom:478.800000px;}
.y24_c00163{bottom:496.500000px;}
.y58_c00163{bottom:514.800000px;}
.y23_c00163{bottom:523.050000px;}
.y57_c00163{bottom:536.400000px;}
.y22_c00163{bottom:541.050000px;}
.y56_c00163{bottom:548.700000px;}
.y55_c00163{bottom:554.100000px;}
.y21_c00163{bottom:558.750000px;}
.y20_c00163{bottom:576.450000px;}
.y54_c00163{bottom:585.000000px;}
.y1f_c00163{bottom:594.450000px;}
.y53_c00163{bottom:603.000000px;}
.y1e_c00163{bottom:612.450000px;}
.y52_c00163{bottom:620.700000px;}
.y1d_c00163{bottom:630.450000px;}
.y51_c00163{bottom:642.900000px;}
.y1c_c00163{bottom:648.450000px;}
.y50_c00163{bottom:660.900000px;}
.y1b_c00163{bottom:666.450000px;}
.y4f_c00163{bottom:682.650000px;}
.y1a_c00163{bottom:684.750000px;}
.y4e_c00163{bottom:700.650000px;}
.y19_c00163{bottom:702.000000px;}
.y4d_c00163{bottom:718.650000px;}
.y18_c00163{bottom:724.350000px;}
.y4c_c00163{bottom:736.350000px;}
.y17_c00163{bottom:742.650000px;}
.y4b_c00163{bottom:754.350000px;}
.y16_c00163{bottom:760.350000px;}
.y4a_c00163{bottom:772.350000px;}
.y15_c00163{bottom:782.550000px;}
.y49_c00163{bottom:790.050000px;}
.y14_c00163{bottom:800.250000px;}
.y48_c00163{bottom:807.750000px;}
.y13_c00163{bottom:817.950000px;}
.y47_c00163{bottom:825.750000px;}
.y12_c00163{bottom:843.450000px;}
.y46_c00163{bottom:843.750000px;}
.y45_c00163{bottom:861.750000px;}
.y11_c00163{bottom:862.200000px;}
.y44_c00163{bottom:879.450000px;}
.y10_c00163{bottom:879.900000px;}
.yf_c00163{bottom:898.650000px;}
.y43_c00163{bottom:904.650000px;}
.ye_c00163{bottom:915.900000px;}
.y42_c00163{bottom:925.200000px;}
.yd_c00163{bottom:933.600000px;}
.y41_c00163{bottom:942.900000px;}
.yc_c00163{bottom:951.600000px;}
.y40_c00163{bottom:960.600000px;}
.yb_c00163{bottom:969.900000px;}
.y3f_c00163{bottom:982.500000px;}
.ya_c00163{bottom:987.150000px;}
.y3e_c00163{bottom:1000.800000px;}
.y9_c00163{bottom:1005.150000px;}
.y3d_c00163{bottom:1018.050000px;}
.y8_c00163{bottom:1023.150000px;}
.y3c_c00163{bottom:1036.350000px;}
.y7_c00163{bottom:1041.150000px;}
.y3b_c00163{bottom:1054.050000px;}
.y6_c00163{bottom:1058.400000px;}
.y3a_c00163{bottom:1072.050000px;}
.y5_c00163{bottom:1076.400000px;}
.y39_c00163{bottom:1094.100000px;}
.y4_c00163{bottom:1094.400000px;}
.y3_c00163{bottom:1112.700000px;}
.y38_c00163{bottom:1117.800000px;}
.y1_c00163{bottom:1138.350000px;}
.y2_c00163{bottom:1138.650000px;}
.y37_c00163{bottom:1183.650000px;}
.h8_c00163{height:24.000000px;}
.h9_c00163{height:30.000000px;}
.hb_c00163{height:48.000000px;}
.h6_c00163{height:54.000000px;}
.h5_c00163{height:60.000000px;}
.h4_c00163{height:66.000000px;}
.h7_c00163{height:72.000000px;}
.ha_c00163{height:78.000000px;}
.h2_c00163{height:84.000000px;}
.h3_c00163{height:90.000000px;}
.h1_c00163{height:1266.750000px;}
.h0_c00163{height:1266.839905px;}
.w1_c00163{width:963.000000px;}
.w0_c00163{width:963.359985px;}
.x0_c00163{left:0.000000px;}
.x94_c00163{left:162.750000px;}
.x70_c00163{left:164.550000px;}
.x4_c00163{left:165.600000px;}
.x1_c00163{left:166.650000px;}
.x99_c00163{left:168.150000px;}
.xac_c00163{left:170.700000px;}
.x2_c00163{left:175.950000px;}
.x95_c00163{left:179.700000px;}
.x6d_c00163{left:181.350000px;}
.x2d_c00163{left:182.700000px;}
.xc_c00163{left:184.200000px;}
.x33_c00163{left:191.850000px;}
.x81_c00163{left:196.200000px;}
.x5c_c00163{left:200.550000px;}
.x9a_c00163{left:204.450000px;}
.x36_c00163{left:206.100000px;}
.x57_c00163{left:207.600000px;}
.x7b_c00163{left:210.300000px;}
.x4c_c00163{left:211.350000px;}
.x41_c00163{left:213.900000px;}
.x39_c00163{left:216.600000px;}
.x19_c00163{left:218.250000px;}
.x71_c00163{left:219.300000px;}
.x67_c00163{left:220.350000px;}
.x14_c00163{left:221.700000px;}
.x42_c00163{left:222.900000px;}
.xa1_c00163{left:224.400000px;}
.x8f_c00163{left:225.750000px;}
.x7c_c00163{left:228.300000px;}
.xab_c00163{left:229.650000px;}
.x8b_c00163{left:231.300000px;}
.x53_c00163{left:232.800000px;}
.x92_c00163{left:233.850000px;}
.x77_c00163{left:235.350000px;}
.x66_c00163{left:237.150000px;}
.x43_c00163{left:239.100000px;}
.x26_c00163{left:241.950000px;}
.x6e_c00163{left:243.300000px;}
.x3a_c00163{left:244.350000px;}
.x72_c00163{left:246.300000px;}
.x5d_c00163{left:247.350000px;}
.x21_c00163{left:249.150000px;}
.x5_c00163{left:250.500000px;}
.x9d_c00163{left:254.400000px;}
.x78_c00163{left:255.450000px;}
.x8c_c00163{left:257.550000px;}
.x44_c00163{left:258.600000px;}
.x2e_c00163{left:261.300000px;}
.x7e_c00163{left:262.500000px;}
.x3b_c00163{left:263.850000px;}
.x6f_c00163{left:265.650000px;}
.x68_c00163{left:268.350000px;}
.xa3_c00163{left:269.400000px;}
.x88_c00163{left:270.450000px;}
.x4d_c00163{left:271.800000px;}
.x1a_c00163{left:274.050000px;}
.x85_c00163{left:275.850000px;}
.xd_c00163{left:278.550000px;}
.x79_c00163{left:279.600000px;}
.x27_c00163{left:281.850000px;}
.x15_c00163{left:284.400000px;}
.x7f_c00163{left:285.600000px;}
.x58_c00163{left:287.250000px;}
.x4e_c00163{left:288.300000px;}
.x9e_c00163{left:289.350000px;}
.x54_c00163{left:292.200000px;}
.x6_c00163{left:293.400000px;}
.x22_c00163{left:295.200000px;}
.x28_c00163{left:296.250000px;}
.x3c_c00163{left:298.350000px;}
.x5e_c00163{left:301.650000px;}
.x59_c00163{left:304.950000px;}
.x64_c00163{left:308.100000px;}
.x45_c00163{left:309.750000px;}
.x6a_c00163{left:310.950000px;}
.x16_c00163{left:313.500000px;}
.x7a_c00163{left:315.600000px;}
.x48_c00163{left:317.550000px;}
.x5f_c00163{left:318.600000px;}
.x34_c00163{left:323.550000px;}
.x4f_c00163{left:324.600000px;}
.xa9_c00163{left:326.400000px;}
.xe_c00163{left:328.200000px;}
.x3d_c00163{left:329.250000px;}
.x1b_c00163{left:331.650000px;}
.x73_c00163{left:334.650000px;}
.x96_c00163{left:335.850000px;}
.xa6_c00163{left:337.950000px;}
.x2f_c00163{left:339.150000px;}
.x8e_c00163{left:340.650000px;}
.x7_c00163{left:342.300000px;}
.x89_c00163{left:344.250000px;}
.x46_c00163{left:345.450000px;}
.x3e_c00163{left:348.300000px;}
.x1c_c00163{left:349.950000px;}
.x8_c00163{left:351.300000px;}
.x86_c00163{left:352.500000px;}
.xa7_c00163{left:357.750000px;}
.x7d_c00163{left:360.750000px;}
.x60_c00163{left:362.850000px;}
.x37_c00163{left:364.500000px;}
.x29_c00163{left:366.450000px;}
.x9b_c00163{left:367.800000px;}
.x23_c00163{left:369.000000px;}
.x50_c00163{left:370.650000px;}
.x74_c00163{left:375.300000px;}
.xf_c00163{left:376.800000px;}
.x8a_c00163{left:378.150000px;}
.x38_c00163{left:379.950000px;}
.x2a_c00163{left:381.150000px;}
.x61_c00163{left:384.150000px;}
.x10_c00163{left:385.500000px;}
.x65_c00163{left:387.600000px;}
.x8d_c00163{left:388.650000px;}
.x17_c00163{left:389.850000px;}
.xa0_c00163{left:391.200000px;}
.x24_c00163{left:392.400000px;}
.x47_c00163{left:394.350000px;}
.xa5_c00163{left:395.400000px;}
.x87_c00163{left:397.200000px;}
.xa4_c00163{left:400.050000px;}
.x1d_c00163{left:401.100000px;}
.x5a_c00163{left:402.150000px;}
.x6b_c00163{left:403.500000px;}
.x30_c00163{left:405.000000px;}
.x9_c00163{left:409.650000px;}
.x90_c00163{left:412.200000px;}
.x3_c00163{left:414.300000px;}
.x1e_c00163{left:415.800000px;}
.x82_c00163{left:418.950000px;}
.x55_c00163{left:421.050000px;}
.x9f_c00163{left:423.450000px;}
.x5b_c00163{left:424.500000px;}
.x11_c00163{left:426.150000px;}
.x49_c00163{left:427.650000px;}
.xa_c00163{left:428.700000px;}
.x31_c00163{left:430.500000px;}
.x12_c00163{left:433.650000px;}
.x62_c00163{left:435.600000px;}
.x51_c00163{left:436.650000px;}
.x97_c00163{left:437.700000px;}
.x18_c00163{left:441.750000px;}
.xa2_c00163{left:443.250000px;}
.x63_c00163{left:444.900000px;}
.x52_c00163{left:445.950000px;}
.x13_c00163{left:447.750000px;}
.x9c_c00163{left:449.250000px;}
.x83_c00163{left:451.050000px;}
.x1f_c00163{left:453.600000px;}
.x6c_c00163{left:456.750000px;}
.x75_c00163{left:457.800000px;}
.x80_c00163{left:459.000000px;}
.x56_c00163{left:460.350000px;}
.xaa_c00163{left:461.400000px;}
.x35_c00163{left:462.750000px;}
.x69_c00163{left:464.700000px;}
.x4a_c00163{left:467.550000px;}
.x32_c00163{left:469.050000px;}
.x3f_c00163{left:471.000000px;}
.x98_c00163{left:475.350000px;}
.x93_c00163{left:478.350000px;}
.xb_c00163{left:479.400000px;}
.xa8_c00163{left:480.600000px;}
.x2b_c00163{left:483.000000px;}
.x40_c00163{left:484.350000px;}
.x76_c00163{left:485.550000px;}
.x91_c00163{left:486.600000px;}
.x25_c00163{left:487.800000px;}
.x84_c00163{left:489.600000px;}
.x4b_c00163{left:490.650000px;}
.x20_c00163{left:492.450000px;}
.x2c_c00163{left:495.900000px;}
.x133_c00163{left:518.400000px;}
.x117_c00163{left:519.900000px;}
.xdd_c00163{left:522.750000px;}
.xae_c00163{left:524.550000px;}
.x126_c00163{left:529.950000px;}
.x136_c00163{left:535.050000px;}
.x12b_c00163{left:536.550000px;}
.x113_c00163{left:537.900000px;}
.xf0_c00163{left:538.950000px;}
.xd4_c00163{left:540.300000px;}
.xb4_c00163{left:541.500000px;}
.x137_c00163{left:552.750000px;}
.x128_c00163{left:555.150000px;}
.x132_c00163{left:557.400000px;}
.xb6_c00163{left:559.800000px;}
.x122_c00163{left:562.950000px;}
.xaf_c00163{left:565.950000px;}
.xde_c00163{left:569.550000px;}
.xad_c00163{left:571.650000px;}
.xbb_c00163{left:573.150000px;}
.xc4_c00163{left:575.850000px;}
.xf6_c00163{left:577.050000px;}
.x127_c00163{left:580.350000px;}
.xe7_c00163{left:581.400000px;}
.xbc_c00163{left:583.650000px;}
.x102_c00163{left:587.250000px;}
.xd5_c00163{left:588.450000px;}
.xe3_c00163{left:590.850000px;}
.xff_c00163{left:594.000000px;}
.xcc_c00163{left:595.200000px;}
.x11f_c00163{left:599.700000px;}
.xdb_c00163{left:601.950000px;}
.xd6_c00163{left:603.150000px;}
.xb0_c00163{left:604.500000px;}
.xe8_c00163{left:605.550000px;}
.xb5_c00163{left:607.050000px;}
.xed_c00163{left:609.150000px;}
.x123_c00163{left:611.850000px;}
.xe4_c00163{left:613.950000px;}
.x140_c00163{left:616.050000px;}
.x103_c00163{left:617.550000px;}
.x138_c00163{left:618.600000px;}
.x110_c00163{left:619.650000px;}
.x129_c00163{left:621.450000px;}
.xdc_c00163{left:623.550000px;}
.xbd_c00163{left:625.350000px;}
.xf7_c00163{left:627.750000px;}
.xcd_c00163{left:630.150000px;}
.xc5_c00163{left:632.400000px;}
.xbe_c00163{left:635.100000px;}
.x13b_c00163{left:640.050000px;}
.xdf_c00163{left:641.550000px;}
.xf8_c00163{left:644.250000px;}
.xb7_c00163{left:646.950000px;}
.xc6_c00163{left:648.300000px;}
.x12c_c00163{left:649.950000px;}
.x120_c00163{left:654.150000px;}
.x13a_c00163{left:656.850000px;}
.xce_c00163{left:657.900000px;}
.x108_c00163{left:659.100000px;}
.xf1_c00163{left:661.650000px;}
.x100_c00163{left:663.750000px;}
.xee_c00163{left:667.800000px;}
.xbf_c00163{left:669.000000px;}
.x104_c00163{left:671.250000px;}
.x121_c00163{left:676.050000px;}
.x134_c00163{left:678.300000px;}
.x11b_c00163{left:679.650000px;}
.xcf_c00163{left:681.000000px;}
.xb8_c00163{left:682.650000px;}
.x119_c00163{left:684.000000px;}
.xc7_c00163{left:685.800000px;}
.xb1_c00163{left:688.050000px;}
.x13f_c00163{left:689.100000px;}
.xe9_c00163{left:690.150000px;}
.x13c_c00163{left:691.950000px;}
.xfe_c00163{left:693.450000px;}
.x109_c00163{left:695.400000px;}
.xf9_c00163{left:698.550000px;}
.x10d_c00163{left:700.950000px;}
.x131_c00163{left:702.300000px;}
.xe0_c00163{left:703.500000px;}
.xb2_c00163{left:705.300000px;}
.x11c_c00163{left:706.500000px;}
.xc8_c00163{left:708.150000px;}
.x124_c00163{left:711.300000px;}
.xd0_c00163{left:712.350000px;}
.x13d_c00163{left:713.850000px;}
.xea_c00163{left:715.050000px;}
.x12d_c00163{left:716.550000px;}
.xef_c00163{left:718.200000px;}
.x118_c00163{left:721.200000px;}
.xe5_c00163{left:722.700000px;}
.xc0_c00163{left:724.500000px;}
.x11a_c00163{left:725.700000px;}
.x10e_c00163{left:729.000000px;}
.x11d_c00163{left:731.400000px;}
.x105_c00163{left:735.000000px;}
.xd1_c00163{left:736.050000px;}
.xf2_c00163{left:738.750000px;}
.xe1_c00163{left:740.550000px;}
.x114_c00163{left:743.400000px;}
.x101_c00163{left:744.450000px;}
.xd7_c00163{left:746.400000px;}
.xeb_c00163{left:750.300000px;}
.x141_c00163{left:751.350000px;}
.xd2_c00163{left:757.350000px;}
.xd8_c00163{left:759.750000px;}
.x10a_c00163{left:762.000000px;}
.x115_c00163{left:763.200000px;}
.xc9_c00163{left:764.250000px;}
.x10f_c00163{left:766.800000px;}
.x12e_c00163{left:768.150000px;}
.x139_c00163{left:770.100000px;}
.xb9_c00163{left:771.150000px;}
.xfa_c00163{left:772.800000px;}
.xca_c00163{left:774.750000px;}
.xc1_c00163{left:778.200000px;}
.x145_c00163{left:780.600000px;}
.x130_c00163{left:782.250000px;}
.xb3_c00163{left:783.750000px;}
.x12f_c00163{left:787.650000px;}
.x125_c00163{left:789.450000px;}
.x106_c00163{left:790.800000px;}
.xf3_c00163{left:792.750000px;}
.x116_c00163{left:796.650000px;}
.xec_c00163{left:798.600000px;}
.x10b_c00163{left:800.100000px;}
.x143_c00163{left:804.000000px;}
.xf4_c00163{left:805.650000px;}
.xfb_c00163{left:806.700000px;}
.xcb_c00163{left:808.650000px;}
.xe2_c00163{left:810.150000px;}
.xd3_c00163{left:811.350000px;}
.x135_c00163{left:813.000000px;}
.xc2_c00163{left:815.250000px;}
.xe6_c00163{left:818.100000px;}
.x10c_c00163{left:820.650000px;}
.x146_c00163{left:821.700000px;}
.xfc_c00163{left:822.900000px;}
.x144_c00163{left:824.550000px;}
.xfd_c00163{left:825.750000px;}
.x107_c00163{left:827.550000px;}
.xd9_c00163{left:828.900000px;}
.x11e_c00163{left:831.150000px;}
.xc3_c00163{left:833.250000px;}
.x111_c00163{left:835.950000px;}
.xf5_c00163{left:837.750000px;}
.xba_c00163{left:838.800000px;}
.x13e_c00163{left:841.500000px;}
.x112_c00163{left:845.700000px;}
.x142_c00163{left:847.800000px;}
.xda_c00163{left:849.000000px;}
.x12a_c00163{left:851.550000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.wsa_c00163{word-spacing:-2.211382pt;}
.wsb_c00163{word-spacing:0.000000pt;}
.ws7_c00163{word-spacing:3.777778pt;}
.ws6_c00163{word-spacing:4.858940pt;}
.ws2_c00163{word-spacing:5.454545pt;}
.ws3_c00163{word-spacing:6.188983pt;}
.ws1_c00163{word-spacing:9.039160pt;}
.ws5_c00163{word-spacing:13.112527pt;}
.ws0_c00163{word-spacing:13.472222pt;}
.ws4_c00163{word-spacing:15.777179pt;}
.ws8_c00163{word-spacing:16.705467pt;}
.ws9_c00163{word-spacing:22.857143pt;}
._0_c00163{width:46.349206pt;}
._1_c00163{width:57.460317pt;}
.fs6_c00163{font-size:21.333333pt;}
.fs7_c00163{font-size:26.666667pt;}
.fs9_c00163{font-size:42.666667pt;}
.fs4_c00163{font-size:48.000000pt;}
.fs3_c00163{font-size:53.333333pt;}
.fs2_c00163{font-size:58.666667pt;}
.fs5_c00163{font-size:64.000000pt;}
.fs8_c00163{font-size:69.333333pt;}
.fs0_c00163{font-size:74.666667pt;}
.fs1_c00163{font-size:80.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y36_c00163{bottom:146.933333pt;}
.y35_c00163{bottom:162.800000pt;}
.y68_c00163{bottom:163.466667pt;}
.y34_c00163{bottom:179.466667pt;}
.y67_c00163{bottom:179.733333pt;}
.y33_c00163{bottom:195.200000pt;}
.y66_c00163{bottom:195.466667pt;}
.y65_c00163{bottom:211.466667pt;}
.y32_c00163{bottom:218.133333pt;}
.y64_c00163{bottom:230.933333pt;}
.y31_c00163{bottom:234.400000pt;}
.y63_c00163{bottom:246.933333pt;}
.y30_c00163{bottom:250.133333pt;}
.y62_c00163{bottom:262.933333pt;}
.y2f_c00163{bottom:266.133333pt;}
.y61_c00163{bottom:278.933333pt;}
.y2e_c00163{bottom:281.866667pt;}
.y60_c00163{bottom:294.666667pt;}
.y2d_c00163{bottom:297.866667pt;}
.y2c_c00163{bottom:313.600000pt;}
.y5f_c00163{bottom:313.866667pt;}
.y5e_c00163{bottom:325.733333pt;}
.y2b_c00163{bottom:329.600000pt;}
.y5d_c00163{bottom:341.866667pt;}
.y2a_c00163{bottom:345.600000pt;}
.y5c_c00163{bottom:358.133333pt;}
.y29_c00163{bottom:361.600000pt;}
.y5b_c00163{bottom:374.400000pt;}
.y28_c00163{bottom:377.333333pt;}
.y27_c00163{bottom:393.333333pt;}
.y26_c00163{bottom:409.333333pt;}
.y5a_c00163{bottom:409.600000pt;}
.y25_c00163{bottom:425.333333pt;}
.y59_c00163{bottom:425.600000pt;}
.y24_c00163{bottom:441.333333pt;}
.y58_c00163{bottom:457.600000pt;}
.y23_c00163{bottom:464.933333pt;}
.y57_c00163{bottom:476.800000pt;}
.y22_c00163{bottom:480.933333pt;}
.y56_c00163{bottom:487.733333pt;}
.y55_c00163{bottom:492.533333pt;}
.y21_c00163{bottom:496.666667pt;}
.y20_c00163{bottom:512.400000pt;}
.y54_c00163{bottom:520.000000pt;}
.y1f_c00163{bottom:528.400000pt;}
.y53_c00163{bottom:536.000000pt;}
.y1e_c00163{bottom:544.400000pt;}
.y52_c00163{bottom:551.733333pt;}
.y1d_c00163{bottom:560.400000pt;}
.y51_c00163{bottom:571.466667pt;}
.y1c_c00163{bottom:576.400000pt;}
.y50_c00163{bottom:587.466667pt;}
.y1b_c00163{bottom:592.400000pt;}
.y4f_c00163{bottom:606.800000pt;}
.y1a_c00163{bottom:608.666667pt;}
.y4e_c00163{bottom:622.800000pt;}
.y19_c00163{bottom:624.000000pt;}
.y4d_c00163{bottom:638.800000pt;}
.y18_c00163{bottom:643.866667pt;}
.y4c_c00163{bottom:654.533333pt;}
.y17_c00163{bottom:660.133333pt;}
.y4b_c00163{bottom:670.533333pt;}
.y16_c00163{bottom:675.866667pt;}
.y4a_c00163{bottom:686.533333pt;}
.y15_c00163{bottom:695.600000pt;}
.y49_c00163{bottom:702.266667pt;}
.y14_c00163{bottom:711.333333pt;}
.y48_c00163{bottom:718.000000pt;}
.y13_c00163{bottom:727.066667pt;}
.y47_c00163{bottom:734.000000pt;}
.y12_c00163{bottom:749.733333pt;}
.y46_c00163{bottom:750.000000pt;}
.y45_c00163{bottom:766.000000pt;}
.y11_c00163{bottom:766.400000pt;}
.y44_c00163{bottom:781.733333pt;}
.y10_c00163{bottom:782.133333pt;}
.yf_c00163{bottom:798.800000pt;}
.y43_c00163{bottom:804.133333pt;}
.ye_c00163{bottom:814.133333pt;}
.y42_c00163{bottom:822.400000pt;}
.yd_c00163{bottom:829.866667pt;}
.y41_c00163{bottom:838.133333pt;}
.yc_c00163{bottom:845.866667pt;}
.y40_c00163{bottom:853.866667pt;}
.yb_c00163{bottom:862.133333pt;}
.y3f_c00163{bottom:873.333333pt;}
.ya_c00163{bottom:877.466667pt;}
.y3e_c00163{bottom:889.600000pt;}
.y9_c00163{bottom:893.466667pt;}
.y3d_c00163{bottom:904.933333pt;}
.y8_c00163{bottom:909.466667pt;}
.y3c_c00163{bottom:921.200000pt;}
.y7_c00163{bottom:925.466667pt;}
.y3b_c00163{bottom:936.933333pt;}
.y6_c00163{bottom:940.800000pt;}
.y3a_c00163{bottom:952.933333pt;}
.y5_c00163{bottom:956.800000pt;}
.y39_c00163{bottom:972.533333pt;}
.y4_c00163{bottom:972.800000pt;}
.y3_c00163{bottom:989.066667pt;}
.y38_c00163{bottom:993.600000pt;}
.y1_c00163{bottom:1011.866667pt;}
.y2_c00163{bottom:1012.133333pt;}
.y37_c00163{bottom:1052.133333pt;}
.h8_c00163{height:21.333333pt;}
.h9_c00163{height:26.666667pt;}
.hb_c00163{height:42.666667pt;}
.h6_c00163{height:48.000000pt;}
.h5_c00163{height:53.333333pt;}
.h4_c00163{height:58.666667pt;}
.h7_c00163{height:64.000000pt;}
.ha_c00163{height:69.333333pt;}
.h2_c00163{height:74.666667pt;}
.h3_c00163{height:80.000000pt;}
.h1_c00163{height:1126.000000pt;}
.h0_c00163{height:1126.079916pt;}
.w1_c00163{width:856.000000pt;}
.w0_c00163{width:856.319987pt;}
.x0_c00163{left:0.000000pt;}
.x94_c00163{left:144.666667pt;}
.x70_c00163{left:146.266667pt;}
.x4_c00163{left:147.200000pt;}
.x1_c00163{left:148.133333pt;}
.x99_c00163{left:149.466667pt;}
.xac_c00163{left:151.733333pt;}
.x2_c00163{left:156.400000pt;}
.x95_c00163{left:159.733333pt;}
.x6d_c00163{left:161.200000pt;}
.x2d_c00163{left:162.400000pt;}
.xc_c00163{left:163.733333pt;}
.x33_c00163{left:170.533333pt;}
.x81_c00163{left:174.400000pt;}
.x5c_c00163{left:178.266667pt;}
.x9a_c00163{left:181.733333pt;}
.x36_c00163{left:183.200000pt;}
.x57_c00163{left:184.533333pt;}
.x7b_c00163{left:186.933333pt;}
.x4c_c00163{left:187.866667pt;}
.x41_c00163{left:190.133333pt;}
.x39_c00163{left:192.533333pt;}
.x19_c00163{left:194.000000pt;}
.x71_c00163{left:194.933333pt;}
.x67_c00163{left:195.866667pt;}
.x14_c00163{left:197.066667pt;}
.x42_c00163{left:198.133333pt;}
.xa1_c00163{left:199.466667pt;}
.x8f_c00163{left:200.666667pt;}
.x7c_c00163{left:202.933333pt;}
.xab_c00163{left:204.133333pt;}
.x8b_c00163{left:205.600000pt;}
.x53_c00163{left:206.933333pt;}
.x92_c00163{left:207.866667pt;}
.x77_c00163{left:209.200000pt;}
.x66_c00163{left:210.800000pt;}
.x43_c00163{left:212.533333pt;}
.x26_c00163{left:215.066667pt;}
.x6e_c00163{left:216.266667pt;}
.x3a_c00163{left:217.200000pt;}
.x72_c00163{left:218.933333pt;}
.x5d_c00163{left:219.866667pt;}
.x21_c00163{left:221.466667pt;}
.x5_c00163{left:222.666667pt;}
.x9d_c00163{left:226.133333pt;}
.x78_c00163{left:227.066667pt;}
.x8c_c00163{left:228.933333pt;}
.x44_c00163{left:229.866667pt;}
.x2e_c00163{left:232.266667pt;}
.x7e_c00163{left:233.333333pt;}
.x3b_c00163{left:234.533333pt;}
.x6f_c00163{left:236.133333pt;}
.x68_c00163{left:238.533333pt;}
.xa3_c00163{left:239.466667pt;}
.x88_c00163{left:240.400000pt;}
.x4d_c00163{left:241.600000pt;}
.x1a_c00163{left:243.600000pt;}
.x85_c00163{left:245.200000pt;}
.xd_c00163{left:247.600000pt;}
.x79_c00163{left:248.533333pt;}
.x27_c00163{left:250.533333pt;}
.x15_c00163{left:252.800000pt;}
.x7f_c00163{left:253.866667pt;}
.x58_c00163{left:255.333333pt;}
.x4e_c00163{left:256.266667pt;}
.x9e_c00163{left:257.200000pt;}
.x54_c00163{left:259.733333pt;}
.x6_c00163{left:260.800000pt;}
.x22_c00163{left:262.400000pt;}
.x28_c00163{left:263.333333pt;}
.x3c_c00163{left:265.200000pt;}
.x5e_c00163{left:268.133333pt;}
.x59_c00163{left:271.066667pt;}
.x64_c00163{left:273.866667pt;}
.x45_c00163{left:275.333333pt;}
.x6a_c00163{left:276.400000pt;}
.x16_c00163{left:278.666667pt;}
.x7a_c00163{left:280.533333pt;}
.x48_c00163{left:282.266667pt;}
.x5f_c00163{left:283.200000pt;}
.x34_c00163{left:287.600000pt;}
.x4f_c00163{left:288.533333pt;}
.xa9_c00163{left:290.133333pt;}
.xe_c00163{left:291.733333pt;}
.x3d_c00163{left:292.666667pt;}
.x1b_c00163{left:294.800000pt;}
.x73_c00163{left:297.466667pt;}
.x96_c00163{left:298.533333pt;}
.xa6_c00163{left:300.400000pt;}
.x2f_c00163{left:301.466667pt;}
.x8e_c00163{left:302.800000pt;}
.x7_c00163{left:304.266667pt;}
.x89_c00163{left:306.000000pt;}
.x46_c00163{left:307.066667pt;}
.x3e_c00163{left:309.600000pt;}
.x1c_c00163{left:311.066667pt;}
.x8_c00163{left:312.266667pt;}
.x86_c00163{left:313.333333pt;}
.xa7_c00163{left:318.000000pt;}
.x7d_c00163{left:320.666667pt;}
.x60_c00163{left:322.533333pt;}
.x37_c00163{left:324.000000pt;}
.x29_c00163{left:325.733333pt;}
.x9b_c00163{left:326.933333pt;}
.x23_c00163{left:328.000000pt;}
.x50_c00163{left:329.466667pt;}
.x74_c00163{left:333.600000pt;}
.xf_c00163{left:334.933333pt;}
.x8a_c00163{left:336.133333pt;}
.x38_c00163{left:337.733333pt;}
.x2a_c00163{left:338.800000pt;}
.x61_c00163{left:341.466667pt;}
.x10_c00163{left:342.666667pt;}
.x65_c00163{left:344.533333pt;}
.x8d_c00163{left:345.466667pt;}
.x17_c00163{left:346.533333pt;}
.xa0_c00163{left:347.733333pt;}
.x24_c00163{left:348.800000pt;}
.x47_c00163{left:350.533333pt;}
.xa5_c00163{left:351.466667pt;}
.x87_c00163{left:353.066667pt;}
.xa4_c00163{left:355.600000pt;}
.x1d_c00163{left:356.533333pt;}
.x5a_c00163{left:357.466667pt;}
.x6b_c00163{left:358.666667pt;}
.x30_c00163{left:360.000000pt;}
.x9_c00163{left:364.133333pt;}
.x90_c00163{left:366.400000pt;}
.x3_c00163{left:368.266667pt;}
.x1e_c00163{left:369.600000pt;}
.x82_c00163{left:372.400000pt;}
.x55_c00163{left:374.266667pt;}
.x9f_c00163{left:376.400000pt;}
.x5b_c00163{left:377.333333pt;}
.x11_c00163{left:378.800000pt;}
.x49_c00163{left:380.133333pt;}
.xa_c00163{left:381.066667pt;}
.x31_c00163{left:382.666667pt;}
.x12_c00163{left:385.466667pt;}
.x62_c00163{left:387.200000pt;}
.x51_c00163{left:388.133333pt;}
.x97_c00163{left:389.066667pt;}
.x18_c00163{left:392.666667pt;}
.xa2_c00163{left:394.000000pt;}
.x63_c00163{left:395.466667pt;}
.x52_c00163{left:396.400000pt;}
.x13_c00163{left:398.000000pt;}
.x9c_c00163{left:399.333333pt;}
.x83_c00163{left:400.933333pt;}
.x1f_c00163{left:403.200000pt;}
.x6c_c00163{left:406.000000pt;}
.x75_c00163{left:406.933333pt;}
.x80_c00163{left:408.000000pt;}
.x56_c00163{left:409.200000pt;}
.xaa_c00163{left:410.133333pt;}
.x35_c00163{left:411.333333pt;}
.x69_c00163{left:413.066667pt;}
.x4a_c00163{left:415.600000pt;}
.x32_c00163{left:416.933333pt;}
.x3f_c00163{left:418.666667pt;}
.x98_c00163{left:422.533333pt;}
.x93_c00163{left:425.200000pt;}
.xb_c00163{left:426.133333pt;}
.xa8_c00163{left:427.200000pt;}
.x2b_c00163{left:429.333333pt;}
.x40_c00163{left:430.533333pt;}
.x76_c00163{left:431.600000pt;}
.x91_c00163{left:432.533333pt;}
.x25_c00163{left:433.600000pt;}
.x84_c00163{left:435.200000pt;}
.x4b_c00163{left:436.133333pt;}
.x20_c00163{left:437.733333pt;}
.x2c_c00163{left:440.800000pt;}
.x133_c00163{left:460.800000pt;}
.x117_c00163{left:462.133333pt;}
.xdd_c00163{left:464.666667pt;}
.xae_c00163{left:466.266667pt;}
.x126_c00163{left:471.066667pt;}
.x136_c00163{left:475.600000pt;}
.x12b_c00163{left:476.933333pt;}
.x113_c00163{left:478.133333pt;}
.xf0_c00163{left:479.066667pt;}
.xd4_c00163{left:480.266667pt;}
.xb4_c00163{left:481.333333pt;}
.x137_c00163{left:491.333333pt;}
.x128_c00163{left:493.466667pt;}
.x132_c00163{left:495.466667pt;}
.xb6_c00163{left:497.600000pt;}
.x122_c00163{left:500.400000pt;}
.xaf_c00163{left:503.066667pt;}
.xde_c00163{left:506.266667pt;}
.xad_c00163{left:508.133333pt;}
.xbb_c00163{left:509.466667pt;}
.xc4_c00163{left:511.866667pt;}
.xf6_c00163{left:512.933333pt;}
.x127_c00163{left:515.866667pt;}
.xe7_c00163{left:516.800000pt;}
.xbc_c00163{left:518.800000pt;}
.x102_c00163{left:522.000000pt;}
.xd5_c00163{left:523.066667pt;}
.xe3_c00163{left:525.200000pt;}
.xff_c00163{left:528.000000pt;}
.xcc_c00163{left:529.066667pt;}
.x11f_c00163{left:533.066667pt;}
.xdb_c00163{left:535.066667pt;}
.xd6_c00163{left:536.133333pt;}
.xb0_c00163{left:537.333333pt;}
.xe8_c00163{left:538.266667pt;}
.xb5_c00163{left:539.600000pt;}
.xed_c00163{left:541.466667pt;}
.x123_c00163{left:543.866667pt;}
.xe4_c00163{left:545.733333pt;}
.x140_c00163{left:547.600000pt;}
.x103_c00163{left:548.933333pt;}
.x138_c00163{left:549.866667pt;}
.x110_c00163{left:550.800000pt;}
.x129_c00163{left:552.400000pt;}
.xdc_c00163{left:554.266667pt;}
.xbd_c00163{left:555.866667pt;}
.xf7_c00163{left:558.000000pt;}
.xcd_c00163{left:560.133333pt;}
.xc5_c00163{left:562.133333pt;}
.xbe_c00163{left:564.533333pt;}
.x13b_c00163{left:568.933333pt;}
.xdf_c00163{left:570.266667pt;}
.xf8_c00163{left:572.666667pt;}
.xb7_c00163{left:575.066667pt;}
.xc6_c00163{left:576.266667pt;}
.x12c_c00163{left:577.733333pt;}
.x120_c00163{left:581.466667pt;}
.x13a_c00163{left:583.866667pt;}
.xce_c00163{left:584.800000pt;}
.x108_c00163{left:585.866667pt;}
.xf1_c00163{left:588.133333pt;}
.x100_c00163{left:590.000000pt;}
.xee_c00163{left:593.600000pt;}
.xbf_c00163{left:594.666667pt;}
.x104_c00163{left:596.666667pt;}
.x121_c00163{left:600.933333pt;}
.x134_c00163{left:602.933333pt;}
.x11b_c00163{left:604.133333pt;}
.xcf_c00163{left:605.333333pt;}
.xb8_c00163{left:606.800000pt;}
.x119_c00163{left:608.000000pt;}
.xc7_c00163{left:609.600000pt;}
.xb1_c00163{left:611.600000pt;}
.x13f_c00163{left:612.533333pt;}
.xe9_c00163{left:613.466667pt;}
.x13c_c00163{left:615.066667pt;}
.xfe_c00163{left:616.400000pt;}
.x109_c00163{left:618.133333pt;}
.xf9_c00163{left:620.933333pt;}
.x10d_c00163{left:623.066667pt;}
.x131_c00163{left:624.266667pt;}
.xe0_c00163{left:625.333333pt;}
.xb2_c00163{left:626.933333pt;}
.x11c_c00163{left:628.000000pt;}
.xc8_c00163{left:629.466667pt;}
.x124_c00163{left:632.266667pt;}
.xd0_c00163{left:633.200000pt;}
.x13d_c00163{left:634.533333pt;}
.xea_c00163{left:635.600000pt;}
.x12d_c00163{left:636.933333pt;}
.xef_c00163{left:638.400000pt;}
.x118_c00163{left:641.066667pt;}
.xe5_c00163{left:642.400000pt;}
.xc0_c00163{left:644.000000pt;}
.x11a_c00163{left:645.066667pt;}
.x10e_c00163{left:648.000000pt;}
.x11d_c00163{left:650.133333pt;}
.x105_c00163{left:653.333333pt;}
.xd1_c00163{left:654.266667pt;}
.xf2_c00163{left:656.666667pt;}
.xe1_c00163{left:658.266667pt;}
.x114_c00163{left:660.800000pt;}
.x101_c00163{left:661.733333pt;}
.xd7_c00163{left:663.466667pt;}
.xeb_c00163{left:666.933333pt;}
.x141_c00163{left:667.866667pt;}
.xd2_c00163{left:673.200000pt;}
.xd8_c00163{left:675.333333pt;}
.x10a_c00163{left:677.333333pt;}
.x115_c00163{left:678.400000pt;}
.xc9_c00163{left:679.333333pt;}
.x10f_c00163{left:681.600000pt;}
.x12e_c00163{left:682.800000pt;}
.x139_c00163{left:684.533333pt;}
.xb9_c00163{left:685.466667pt;}
.xfa_c00163{left:686.933333pt;}
.xca_c00163{left:688.666667pt;}
.xc1_c00163{left:691.733333pt;}
.x145_c00163{left:693.866667pt;}
.x130_c00163{left:695.333333pt;}
.xb3_c00163{left:696.666667pt;}
.x12f_c00163{left:700.133333pt;}
.x125_c00163{left:701.733333pt;}
.x106_c00163{left:702.933333pt;}
.xf3_c00163{left:704.666667pt;}
.x116_c00163{left:708.133333pt;}
.xec_c00163{left:709.866667pt;}
.x10b_c00163{left:711.200000pt;}
.x143_c00163{left:714.666667pt;}
.xf4_c00163{left:716.133333pt;}
.xfb_c00163{left:717.066667pt;}
.xcb_c00163{left:718.800000pt;}
.xe2_c00163{left:720.133333pt;}
.xd3_c00163{left:721.200000pt;}
.x135_c00163{left:722.666667pt;}
.xc2_c00163{left:724.666667pt;}
.xe6_c00163{left:727.200000pt;}
.x10c_c00163{left:729.466667pt;}
.x146_c00163{left:730.400000pt;}
.xfc_c00163{left:731.466667pt;}
.x144_c00163{left:732.933333pt;}
.xfd_c00163{left:734.000000pt;}
.x107_c00163{left:735.600000pt;}
.xd9_c00163{left:736.800000pt;}
.x11e_c00163{left:738.800000pt;}
.xc3_c00163{left:740.666667pt;}
.x111_c00163{left:743.066667pt;}
.xf5_c00163{left:744.666667pt;}
.xba_c00163{left:745.600000pt;}
.x13e_c00163{left:748.000000pt;}
.x112_c00163{left:751.733333pt;}
.x142_c00163{left:753.600000pt;}
.xda_c00163{left:754.666667pt;}
.x12a_c00163{left:756.933333pt;}
}





/* 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_c00164 {
    display:none;
  }
  .loading-indicator_c00164.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00164 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_c00164 { 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_c00164" -> "#page-container .classname_c00164")
 */
.pf_c00164 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00164 { /* 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_c00164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00164 { /* 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_c00164 { /* 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_c00164 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00164 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00164 {overflow:visible;}
  }
}
.c_c00164 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00164 { /* 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_c00164:after { /* webkit #35443 */
  content: '';
}
.t_c00164:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00164 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 */
}
.__c00164 { /* 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_c00164 { /* info for Javascript */
  display:none;
}
.l_c00164 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00164 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00164 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00164: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_c00164 {
    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_c00164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00164.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_c00164 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00164;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.000000;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;}
.m115_c00164{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00164{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00164{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00164{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.me9_c00164{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00164{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00164{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.me1_c00164{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00164{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m119_c00164{transform:matrix(0.091250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00164{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m38_c00164{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m70_c00164{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m42_c00164{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00164{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m65_c00164{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m55_c00164{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m2_c00164{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m129_c00164{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m114_c00164{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m44_c00164{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00164{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m107_c00164{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m40_c00164{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00164{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00164{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m49_c00164{transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);}
.mba_c00164{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m123_c00164{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb_c00164{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00164{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00164{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00164{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00164{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00164{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.meb_c00164{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.mce_c00164{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00164{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00164{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00164{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00164{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00164{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00164{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00164{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m28_c00164{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me3_c00164{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m90_c00164{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m23_c00164{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m53_c00164{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.md8_c00164{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.ma_c00164{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md4_c00164{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00164{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00164{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m33_c00164{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m63_c00164{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m112_c00164{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m86_c00164{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00164{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.md_c00164{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00164{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me2_c00164{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00164{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m56_c00164{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00164{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m57_c00164{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md7_c00164{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00164{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m47_c00164{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00164{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m41_c00164{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m105_c00164{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m101_c00164{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m69_c00164{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m78_c00164{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00164{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me7_c00164{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m74_c00164{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.maa_c00164{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m106_c00164{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m58_c00164{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00164{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md2_c00164{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00164{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8_c00164{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00164{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00164{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mad_c00164{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m68_c00164{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00164{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00164{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00164{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m80_c00164{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m94_c00164{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00164{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.maf_c00164{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m15_c00164{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m52_c00164{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m10_c00164{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00164{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m113_c00164{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00164{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m97_c00164{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m73_c00164{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me4_c00164{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m122_c00164{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9_c00164{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00164{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md5_c00164{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00164{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m16_c00164{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.med_c00164{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00164{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00164{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00164{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m59_c00164{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me8_c00164{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md3_c00164{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00164{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m17_c00164{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00164{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00164{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00164{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m32_c00164{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m95_c00164{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m109_c00164{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mab_c00164{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m19_c00164{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00164{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00164{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00164{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00164{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00164{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00164{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m71_c00164{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00164{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m26_c00164{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00164{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mac_c00164{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m60_c00164{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00164{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m45_c00164{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mda_c00164{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m27_c00164{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00164{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00164{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00164{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m25_c00164{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6_c00164{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc_c00164{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me6_c00164{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m75_c00164{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00164{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m30_c00164{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m62_c00164{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m120_c00164{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m39_c00164{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00164{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m29_c00164{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m24_c00164{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00164{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m91_c00164{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m64_c00164{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mec_c00164{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00164{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00164{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00164{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.md0_c00164{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00164{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00164{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00164{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00164{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00164{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00164{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00164{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00164{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m83_c00164{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mff_c00164{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m13_c00164{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00164{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m54_c00164{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7_c00164{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m76_c00164{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m85_c00164{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00164{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m118_c00164{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00164{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me0_c00164{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m51_c00164{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00164{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m46_c00164{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00164{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mae_c00164{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00164{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00164{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00164{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00164{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m125_c00164{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m4_c00164{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m22_c00164{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00164{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m14_c00164{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5_c00164{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00164{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md6_c00164{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m20_c00164{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m87_c00164{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00164{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m88_c00164{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me5_c00164{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.me_c00164{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00164{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00164{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m128_c00164{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m11_c00164{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m92_c00164{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mca_c00164{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md1_c00164{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00164{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m66_c00164{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00164{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00164{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00164{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00164{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00164{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mf_c00164{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m110_c00164{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00164{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00164{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m21_c00164{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m67_c00164{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m127_c00164{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00164{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mde_c00164{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m100_c00164{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m102_c00164{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m82_c00164{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00164{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m50_c00164{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m61_c00164{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12_c00164{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00164{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00164{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00164{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00164{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00164{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);}
.m4d_c00164{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00164{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00164{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m111_c00164{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00164{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md9_c00164{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mee_c00164{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00164{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00164{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m96_c00164{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m99_c00164{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00164{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00164{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00164{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m84_c00164{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m48_c00164{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00164{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m81_c00164{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m79_c00164{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m77_c00164{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00164{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m121_c00164{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00164{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00164{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m117_c00164{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m108_c00164{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00164{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mef_c00164{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00164{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mea_c00164{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00164{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m89_c00164{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00164{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m72_c00164{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00164{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m98_c00164{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00164{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m116_c00164{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m124_c00164{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00164{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.m103_c00164{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00164{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00164{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m93_c00164{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m34_c00164{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m31_c00164{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m37_c00164{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.m126_c00164{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m35_c00164{transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00164{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m104_c00164{transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);}
.m36_c00164{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m43_c00164{transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);}
.m0_c00164{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00164{transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls0_c00164{letter-spacing:0.000000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{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__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:-45.000000px;}
.ws2_c00164{word-spacing:-7.763158px;}
.ws3_c00164{word-spacing:-1.718750px;}
.ws8_c00164{word-spacing:0.000000px;}
.ws4_c00164{word-spacing:8.648649px;}
.ws6_c00164{word-spacing:29.285714px;}
.ws5_c00164{word-spacing:35.833333px;}
.ws7_c00164{word-spacing:47.142857px;}
.ws1_c00164{word-spacing:150.700730px;}
._0_c00164{width:1.875000px;}
._1_c00164{width:367.321168px;}
.fc0_c00164{color:transparent;}
.fs7_c00164{font-size:30.000000px;}
.fs4_c00164{font-size:42.000000px;}
.fs6_c00164{font-size:54.000000px;}
.fs3_c00164{font-size:60.000000px;}
.fs2_c00164{font-size:66.000000px;}
.fs5_c00164{font-size:72.000000px;}
.fs0_c00164{font-size:78.000000px;}
.fs1_c00164{font-size:90.000000px;}
.y0_c00164{bottom:0.000000px;}
.y6b_c00164{bottom:188.550000px;}
.y37_c00164{bottom:191.550000px;}
.y6a_c00164{bottom:202.650000px;}
.y36_c00164{bottom:205.950000px;}
.y69_c00164{bottom:217.500000px;}
.y35_c00164{bottom:220.050000px;}
.y68_c00164{bottom:231.900000px;}
.y34_c00164{bottom:234.450000px;}
.y67_c00164{bottom:246.300000px;}
.y33_c00164{bottom:248.850000px;}
.y66_c00164{bottom:257.700000px;}
.y64_c00164{bottom:260.700000px;}
.y32_c00164{bottom:263.550000px;}
.y65_c00164{bottom:272.850000px;}
.y63_c00164{bottom:275.100000px;}
.y31_c00164{bottom:277.650000px;}
.y62_c00164{bottom:289.500000px;}
.y30_c00164{bottom:292.350000px;}
.y61_c00164{bottom:304.200000px;}
.y2f_c00164{bottom:310.650000px;}
.y60_c00164{bottom:318.600000px;}
.y2e_c00164{bottom:325.050000px;}
.y5f_c00164{bottom:333.300000px;}
.y2d_c00164{bottom:339.750000px;}
.y2c_c00164{bottom:353.850000px;}
.y5e_c00164{bottom:357.900000px;}
.y2b_c00164{bottom:368.250000px;}
.y5d_c00164{bottom:375.450000px;}
.y2a_c00164{bottom:382.650000px;}
.y5c_c00164{bottom:393.450000px;}
.y29_c00164{bottom:396.750000px;}
.y5b_c00164{bottom:405.750000px;}
.y28_c00164{bottom:412.200000px;}
.y5a_c00164{bottom:412.950000px;}
.y27_c00164{bottom:425.850000px;}
.y59_c00164{bottom:429.150000px;}
.y26_c00164{bottom:443.850000px;}
.y58_c00164{bottom:456.000000px;}
.y25_c00164{bottom:458.550000px;}
.y24_c00164{bottom:472.950000px;}
.y57_c00164{bottom:473.700000px;}
.y23_c00164{bottom:487.050000px;}
.y56_c00164{bottom:491.400000px;}
.y22_c00164{bottom:501.450000px;}
.y55_c00164{bottom:509.700000px;}
.y21_c00164{bottom:516.900000px;}
.y54_c00164{bottom:527.700000px;}
.y20_c00164{bottom:530.250000px;}
.y1f_c00164{bottom:544.650000px;}
.y53_c00164{bottom:547.200000px;}
.y1e_c00164{bottom:559.050000px;}
.y52_c00164{bottom:563.100000px;}
.y1d_c00164{bottom:577.350000px;}
.y51_c00164{bottom:580.650000px;}
.y1c_c00164{bottom:592.500000px;}
.y1b_c00164{bottom:606.900000px;}
.y50_c00164{bottom:620.250000px;}
.y4f_c00164{bottom:637.950000px;}
.y1a_c00164{bottom:652.950000px;}
.y4e_c00164{bottom:664.200000px;}
.y19_c00164{bottom:670.650000px;}
.y4d_c00164{bottom:681.900000px;}
.y18_c00164{bottom:693.000000px;}
.y4c_c00164{bottom:699.900000px;}
.y17_c00164{bottom:711.000000px;}
.y4b_c00164{bottom:717.600000px;}
.y16_c00164{bottom:728.250000px;}
.y4a_c00164{bottom:735.900000px;}
.y15_c00164{bottom:746.250000px;}
.y49_c00164{bottom:753.150000px;}
.y48_c00164{bottom:771.150000px;}
.y14_c00164{bottom:777.600000px;}
.y13_c00164{bottom:783.750000px;}
.y47_c00164{bottom:796.350000px;}
.y12_c00164{bottom:799.950000px;}
.y11_c00164{bottom:808.200000px;}
.y46_c00164{bottom:814.350000px;}
.y10_c00164{bottom:826.500000px;}
.y45_c00164{bottom:832.350000px;}
.yf_c00164{bottom:852.900000px;}
.y44_c00164{bottom:854.550000px;}
.y43_c00164{bottom:872.250000px;}
.ye_c00164{bottom:878.100000px;}
.yd_c00164{bottom:892.500000px;}
.y42_c00164{bottom:895.050000px;}
.y41_c00164{bottom:913.350000px;}
.yc_c00164{bottom:925.950000px;}
.y40_c00164{bottom:935.250000px;}
.yb_c00164{bottom:956.850000px;}
.y3f_c00164{bottom:957.150000px;}
.ya_c00164{bottom:974.850000px;}
.y3e_c00164{bottom:992.100000px;}
.y9_c00164{bottom:1001.100000px;}
.y3d_c00164{bottom:1014.150000px;}
.y8_c00164{bottom:1026.750000px;}
.y3c_c00164{bottom:1036.050000px;}
.y7_c00164{bottom:1044.450000px;}
.y3b_c00164{bottom:1058.100000px;}
.y6_c00164{bottom:1062.150000px;}
.y5_c00164{bottom:1079.850000px;}
.y3a_c00164{bottom:1080.000000px;}
.y4_c00164{bottom:1097.550000px;}
.y39_c00164{bottom:1097.700000px;}
.y3_c00164{bottom:1115.250000px;}
.y38_c00164{bottom:1115.700000px;}
.y2_c00164{bottom:1141.200000px;}
.y1_c00164{bottom:1141.500000px;}
.h9_c00164{height:30.000000px;}
.h6_c00164{height:42.000000px;}
.h8_c00164{height:54.000000px;}
.h5_c00164{height:60.000000px;}
.h4_c00164{height:66.000000px;}
.h7_c00164{height:72.000000px;}
.h2_c00164{height:78.000000px;}
.h3_c00164{height:90.000000px;}
.h1_c00164{height:1273.500000px;}
.h0_c00164{height:1273.679993px;}
.w1_c00164{width:963.000000px;}
.w0_c00164{width:963.359985px;}
.x0_c00164{left:0.000000px;}
.x8a_c00164{left:93.450000px;}
.x68_c00164{left:95.100000px;}
.x37_c00164{left:97.200000px;}
.x2e_c00164{left:99.000000px;}
.xa1_c00164{left:106.950000px;}
.x9b_c00164{left:110.550000px;}
.x87_c00164{left:111.900000px;}
.x6c_c00164{left:113.100000px;}
.x96_c00164{left:115.650000px;}
.x4c_c00164{left:117.450000px;}
.xf_c00164{left:119.550000px;}
.x5_c00164{left:120.600000px;}
.x9e_c00164{left:121.650000px;}
.x8b_c00164{left:125.550000px;}
.x8e_c00164{left:126.600000px;}
.x4a_c00164{left:129.600000px;}
.x6_c00164{left:131.400000px;}
.x85_c00164{left:132.450000px;}
.x88_c00164{left:134.550000px;}
.x40_c00164{left:135.750000px;}
.x5b_c00164{left:136.800000px;}
.x50_c00164{left:137.850000px;}
.x10_c00164{left:140.100000px;}
.x70_c00164{left:141.300000px;}
.x79_c00164{left:142.350000px;}
.x4b_c00164{left:144.750000px;}
.x4d_c00164{left:145.950000px;}
.x81_c00164{left:148.200000px;}
.x9c_c00164{left:150.900000px;}
.x46_c00164{left:153.450000px;}
.x5f_c00164{left:155.250000px;}
.x6b_c00164{left:156.900000px;}
.x11_c00164{left:158.100000px;}
.x28_c00164{left:160.800000px;}
.x80_c00164{left:163.950000px;}
.x74_c00164{left:166.200000px;}
.x2f_c00164{left:167.400000px;}
.x38_c00164{left:169.950000px;}
.xaa_c00164{left:171.450000px;}
.x30_c00164{left:173.250000px;}
.x82_c00164{left:174.900000px;}
.x17_c00164{left:177.900000px;}
.x7_c00164{left:181.500000px;}
.x4e_c00164{left:185.250000px;}
.x29_c00164{left:187.050000px;}
.x89_c00164{left:188.550000px;}
.x1e_c00164{left:190.800000px;}
.x7a_c00164{left:192.000000px;}
.x5c_c00164{left:193.650000px;}
.x63_c00164{left:196.950000px;}
.x76_c00164{left:199.650000px;}
.x71_c00164{left:200.700000px;}
.x7b_c00164{left:201.750000px;}
.x8c_c00164{left:203.250000px;}
.x35_c00164{left:205.200000px;}
.x4f_c00164{left:206.550000px;}
.x57_c00164{left:208.200000px;}
.xa4_c00164{left:209.250000px;}
.x2a_c00164{left:210.750000px;}
.x86_c00164{left:212.100000px;}
.x6d_c00164{left:214.200000px;}
.xa7_c00164{left:215.850000px;}
.x31_c00164{left:217.500000px;}
.x47_c00164{left:218.700000px;}
.x8_c00164{left:220.350000px;}
.x18_c00164{left:221.850000px;}
.x8f_c00164{left:223.500000px;}
.x1f_c00164{left:225.750000px;}
.x39_c00164{left:228.300000px;}
.x41_c00164{left:229.350000px;}
.x64_c00164{left:230.400000px;}
.xa8_c00164{left:232.050000px;}
.x23_c00164{left:233.550000px;}
.x3a_c00164{left:235.200000px;}
.x9d_c00164{left:241.800000px;}
.x12_c00164{left:243.150000px;}
.x58_c00164{left:245.250000px;}
.x9_c00164{left:247.050000px;}
.x19_c00164{left:248.850000px;}
.x69_c00164{left:250.050000px;}
.x53_c00164{left:251.250000px;}
.x8d_c00164{left:253.350000px;}
.xa2_c00164{left:255.000000px;}
.x60_c00164{left:260.700000px;}
.x97_c00164{left:261.900000px;}
.x91_c00164{left:265.500000px;}
.x6e_c00164{left:266.850000px;}
.x13_c00164{left:268.350000px;}
.xa_c00164{left:271.500000px;}
.x2b_c00164{left:273.000000px;}
.xa3_c00164{left:274.050000px;}
.x36_c00164{left:275.400000px;}
.x9a_c00164{left:276.450000px;}
.x3b_c00164{left:278.100000px;}
.x65_c00164{left:280.500000px;}
.x61_c00164{left:282.600000px;}
.x24_c00164{left:283.650000px;}
.x72_c00164{left:285.000000px;}
.xa5_c00164{left:286.050000px;}
.x7c_c00164{left:287.100000px;}
.x32_c00164{left:288.750000px;}
.x3f_c00164{left:293.550000px;}
.x6a_c00164{left:294.600000px;}
.x5d_c00164{left:299.250000px;}
.xa9_c00164{left:303.000000px;}
.x25_c00164{left:304.500000px;}
.x2c_c00164{left:306.150000px;}
.x33_c00164{left:308.250000px;}
.x48_c00164{left:311.250000px;}
.xb_c00164{left:313.200000px;}
.x3c_c00164{left:319.200000px;}
.x7d_c00164{left:321.450000px;}
.x54_c00164{left:322.500000px;}
.x73_c00164{left:325.350000px;}
.x1a_c00164{left:327.750000px;}
.x14_c00164{left:330.300000px;}
.x2d_c00164{left:332.850000px;}
.x20_c00164{left:336.150000px;}
.x42_c00164{left:339.150000px;}
.x62_c00164{left:340.950000px;}
.x7e_c00164{left:343.800000px;}
.x1_c00164{left:345.600000px;}
.x9f_c00164{left:347.400000px;}
.x59_c00164{left:349.650000px;}
.x77_c00164{left:350.850000px;}
.x3d_c00164{left:354.450000px;}
.x75_c00164{left:357.150000px;}
.x43_c00164{left:358.200000px;}
.x21_c00164{left:359.850000px;}
.x92_c00164{left:360.900000px;}
.x94_c00164{left:361.950000px;}
.x26_c00164{left:363.900000px;}
.x1b_c00164{left:365.850000px;}
.xc_c00164{left:369.000000px;}
.x93_c00164{left:370.650000px;}
.x49_c00164{left:371.850000px;}
.x55_c00164{left:372.900000px;}
.x7f_c00164{left:375.450000px;}
.x51_c00164{left:379.800000px;}
.x27_c00164{left:382.950000px;}
.x98_c00164{left:384.900000px;}
.xd_c00164{left:386.250000px;}
.x1c_c00164{left:387.450000px;}
.x22_c00164{left:389.400000px;}
.xa6_c00164{left:390.750000px;}
.x45_c00164{left:392.100000px;}
.x5e_c00164{left:393.900000px;}
.x52_c00164{left:394.950000px;}
.x95_c00164{left:396.150000px;}
.x15_c00164{left:397.650000px;}
.x83_c00164{left:399.900000px;}
.x78_c00164{left:400.950000px;}
.xe_c00164{left:402.450000px;}
.x44_c00164{left:405.300000px;}
.x66_c00164{left:406.800000px;}
.x3e_c00164{left:408.150000px;}
.x99_c00164{left:409.800000px;}
.x34_c00164{left:412.950000px;}
.x16_c00164{left:415.950000px;}
.x1d_c00164{left:417.300000px;}
.x84_c00164{left:418.950000px;}
.x6f_c00164{left:420.900000px;}
.xa0_c00164{left:422.250000px;}
.x56_c00164{left:423.600000px;}
.x90_c00164{left:427.050000px;}
.x67_c00164{left:432.000000px;}
.x5a_c00164{left:433.500000px;}
.xfb_c00164{left:458.700000px;}
.x139_c00164{left:470.850000px;}
.x12c_c00164{left:474.900000px;}
.xf5_c00164{left:475.950000px;}
.xb3_c00164{left:477.300000px;}
.xbc_c00164{left:478.500000px;}
.xef_c00164{left:483.150000px;}
.x13c_c00164{left:485.700000px;}
.xde_c00164{left:495.000000px;}
.xab_c00164{left:496.500000px;}
.xbe_c00164{left:497.550000px;}
.xb4_c00164{left:498.600000px;}
.xf6_c00164{left:499.650000px;}
.x13f_c00164{left:501.150000px;}
.x11c_c00164{left:503.400000px;}
.x120_c00164{left:504.900000px;}
.x119_c00164{left:506.400000px;}
.x125_c00164{left:508.350000px;}
.x134_c00164{left:513.750000px;}
.x10e_c00164{left:515.400000px;}
.x136_c00164{left:517.650000px;}
.xfc_c00164{left:520.650000px;}
.x100_c00164{left:521.700000px;}
.x12d_c00164{left:523.800000px;}
.xd0_c00164{left:525.150000px;}
.xf0_c00164{left:527.400000px;}
.xbf_c00164{left:529.200000px;}
.x105_c00164{left:530.550000px;}
.xfa_c00164{left:533.550000px;}
.xc7_c00164{left:534.900000px;}
.xf7_c00164{left:537.150000px;}
.xd8_c00164{left:538.950000px;}
.x13d_c00164{left:540.300000px;}
.x145_c00164{left:543.450000px;}
.xca_c00164{left:545.400000px;}
.xbd_c00164{left:547.200000px;}
.xfd_c00164{left:548.400000px;}
.xc4_c00164{left:550.050000px;}
.x135_c00164{left:553.050000px;}
.x121_c00164{left:554.250000px;}
.x124_c00164{left:555.750000px;}
.xac_c00164{left:557.700000px;}
.x10a_c00164{left:559.050000px;}
.x116_c00164{left:560.850000px;}
.x10f_c00164{left:562.950000px;}
.xe8_c00164{left:564.000000px;}
.xe3_c00164{left:565.950000px;}
.xad_c00164{left:567.000000px;}
.x12f_c00164{left:568.200000px;}
.xd1_c00164{left:569.850000px;}
.x127_c00164{left:571.050000px;}
.xf1_c00164{left:573.150000px;}
.xb5_c00164{left:574.200000px;}
.x13e_c00164{left:575.250000px;}
.xed_c00164{left:576.900000px;}
.x12e_c00164{left:578.100000px;}
.xcb_c00164{left:579.900000px;}
.xc8_c00164{left:582.450000px;}
.xe9_c00164{left:585.900000px;}
.xdf_c00164{left:588.900000px;}
.xd9_c00164{left:591.450000px;}
.x132_c00164{left:594.150000px;}
.x10b_c00164{left:596.100000px;}
.xc5_c00164{left:598.950000px;}
.x137_c00164{left:600.150000px;}
.xfe_c00164{left:602.850000px;}
.x126_c00164{left:604.050000px;}
.xcc_c00164{left:605.400000px;}
.x140_c00164{left:606.600000px;}
.xc6_c00164{left:607.950000px;}
.x130_c00164{left:609.300000px;}
.xb6_c00164{left:610.950000px;}
.xda_c00164{left:612.300000px;}
.x141_c00164{left:614.550000px;}
.x10c_c00164{left:615.900000px;}
.xc9_c00164{left:617.400000px;}
.xe4_c00164{left:619.950000px;}
.x142_c00164{left:621.450000px;}
.xf2_c00164{left:623.250000px;}
.x101_c00164{left:624.300000px;}
.x106_c00164{left:625.650000px;}
.xd6_c00164{left:627.750000px;}
.xc0_c00164{left:629.250000px;}
.xae_c00164{left:630.300000px;}
.xb7_c00164{left:632.250000px;}
.x113_c00164{left:633.300000px;}
.xe5_c00164{left:634.650000px;}
.x143_c00164{left:635.850000px;}
.x118_c00164{left:637.800000px;}
.xe0_c00164{left:641.850000px;}
.xea_c00164{left:643.200000px;}
.xf3_c00164{left:645.900000px;}
.xdb_c00164{left:647.250000px;}
.xd2_c00164{left:650.550000px;}
.x107_c00164{left:652.650000px;}
.xcd_c00164{left:653.700000px;}
.xc1_c00164{left:656.250000px;}
.x122_c00164{left:657.900000px;}
.x110_c00164{left:659.100000px;}
.x13a_c00164{left:660.150000px;}
.xb8_c00164{left:661.800000px;}
.x133_c00164{left:663.450000px;}
.xaf_c00164{left:664.500000px;}
.x131_c00164{left:669.000000px;}
.xb0_c00164{left:671.700000px;}
.xe6_c00164{left:672.750000px;}
.xdc_c00164{left:675.000000px;}
.x147_c00164{left:676.650000px;}
.x128_c00164{left:680.100000px;}
.x108_c00164{left:682.200000px;}
.x11d_c00164{left:683.400000px;}
.xd3_c00164{left:685.800000px;}
.xd7_c00164{left:688.650000px;}
.xe7_c00164{left:690.450000px;}
.xdd_c00164{left:691.500000px;}
.x138_c00164{left:692.550000px;}
.x146_c00164{left:694.800000px;}
.x129_c00164{left:696.000000px;}
.xe1_c00164{left:697.350000px;}
.x117_c00164{left:699.000000px;}
.x148_c00164{left:700.500000px;}
.x102_c00164{left:701.700000px;}
.xff_c00164{left:703.200000px;}
.x11e_c00164{left:707.550000px;}
.xeb_c00164{left:710.250000px;}
.xce_c00164{left:711.600000px;}
.x103_c00164{left:713.550000px;}
.xd4_c00164{left:714.600000px;}
.xb9_c00164{left:716.100000px;}
.xf8_c00164{left:717.150000px;}
.x114_c00164{left:720.450000px;}
.xc2_c00164{left:723.150000px;}
.xb1_c00164{left:725.400000px;}
.x11a_c00164{left:728.100000px;}
.x2_c00164{left:729.300000px;}
.xec_c00164{left:730.800000px;}
.xba_c00164{left:732.300000px;}
.x11f_c00164{left:735.600000px;}
.xf4_c00164{left:737.700000px;}
.x12a_c00164{left:738.900000px;}
.xe2_c00164{left:740.550000px;}
.x115_c00164{left:742.350000px;}
.xb2_c00164{left:744.150000px;}
.xc3_c00164{left:746.250000px;}
.x11b_c00164{left:748.650000px;}
.x111_c00164{left:750.600000px;}
.x13b_c00164{left:752.100000px;}
.x104_c00164{left:753.450000px;}
.x109_c00164{left:754.500000px;}
.x10d_c00164{left:756.600000px;}
.xcf_c00164{left:759.150000px;}
.x3_c00164{left:768.150000px;}
.xf9_c00164{left:770.400000px;}
.xbb_c00164{left:771.900000px;}
.x144_c00164{left:772.950000px;}
.x123_c00164{left:774.600000px;}
.x4_c00164{left:776.850000px;}
.xee_c00164{left:779.250000px;}
.x12b_c00164{left:780.300000px;}
.xd5_c00164{left:783.300000px;}
.x112_c00164{left:788.100000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ws0_c00164{word-spacing:-40.000000pt;}
.ws2_c00164{word-spacing:-6.900585pt;}
.ws3_c00164{word-spacing:-1.527778pt;}
.ws8_c00164{word-spacing:0.000000pt;}
.ws4_c00164{word-spacing:7.687688pt;}
.ws6_c00164{word-spacing:26.031746pt;}
.ws5_c00164{word-spacing:31.851852pt;}
.ws7_c00164{word-spacing:41.904762pt;}
.ws1_c00164{word-spacing:133.956204pt;}
._0_c00164{width:1.666667pt;}
._1_c00164{width:326.507705pt;}
.fs7_c00164{font-size:26.666667pt;}
.fs4_c00164{font-size:37.333333pt;}
.fs6_c00164{font-size:48.000000pt;}
.fs3_c00164{font-size:53.333333pt;}
.fs2_c00164{font-size:58.666667pt;}
.fs5_c00164{font-size:64.000000pt;}
.fs0_c00164{font-size:69.333333pt;}
.fs1_c00164{font-size:80.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y6b_c00164{bottom:167.600000pt;}
.y37_c00164{bottom:170.266667pt;}
.y6a_c00164{bottom:180.133333pt;}
.y36_c00164{bottom:183.066667pt;}
.y69_c00164{bottom:193.333333pt;}
.y35_c00164{bottom:195.600000pt;}
.y68_c00164{bottom:206.133333pt;}
.y34_c00164{bottom:208.400000pt;}
.y67_c00164{bottom:218.933333pt;}
.y33_c00164{bottom:221.200000pt;}
.y66_c00164{bottom:229.066667pt;}
.y64_c00164{bottom:231.733333pt;}
.y32_c00164{bottom:234.266667pt;}
.y65_c00164{bottom:242.533333pt;}
.y63_c00164{bottom:244.533333pt;}
.y31_c00164{bottom:246.800000pt;}
.y62_c00164{bottom:257.333333pt;}
.y30_c00164{bottom:259.866667pt;}
.y61_c00164{bottom:270.400000pt;}
.y2f_c00164{bottom:276.133333pt;}
.y60_c00164{bottom:283.200000pt;}
.y2e_c00164{bottom:288.933333pt;}
.y5f_c00164{bottom:296.266667pt;}
.y2d_c00164{bottom:302.000000pt;}
.y2c_c00164{bottom:314.533333pt;}
.y5e_c00164{bottom:318.133333pt;}
.y2b_c00164{bottom:327.333333pt;}
.y5d_c00164{bottom:333.733333pt;}
.y2a_c00164{bottom:340.133333pt;}
.y5c_c00164{bottom:349.733333pt;}
.y29_c00164{bottom:352.666667pt;}
.y5b_c00164{bottom:360.666667pt;}
.y28_c00164{bottom:366.400000pt;}
.y5a_c00164{bottom:367.066667pt;}
.y27_c00164{bottom:378.533333pt;}
.y59_c00164{bottom:381.466667pt;}
.y26_c00164{bottom:394.533333pt;}
.y58_c00164{bottom:405.333333pt;}
.y25_c00164{bottom:407.600000pt;}
.y24_c00164{bottom:420.400000pt;}
.y57_c00164{bottom:421.066667pt;}
.y23_c00164{bottom:432.933333pt;}
.y56_c00164{bottom:436.800000pt;}
.y22_c00164{bottom:445.733333pt;}
.y55_c00164{bottom:453.066667pt;}
.y21_c00164{bottom:459.466667pt;}
.y54_c00164{bottom:469.066667pt;}
.y20_c00164{bottom:471.333333pt;}
.y1f_c00164{bottom:484.133333pt;}
.y53_c00164{bottom:486.400000pt;}
.y1e_c00164{bottom:496.933333pt;}
.y52_c00164{bottom:500.533333pt;}
.y1d_c00164{bottom:513.200000pt;}
.y51_c00164{bottom:516.133333pt;}
.y1c_c00164{bottom:526.666667pt;}
.y1b_c00164{bottom:539.466667pt;}
.y50_c00164{bottom:551.333333pt;}
.y4f_c00164{bottom:567.066667pt;}
.y1a_c00164{bottom:580.400000pt;}
.y4e_c00164{bottom:590.400000pt;}
.y19_c00164{bottom:596.133333pt;}
.y4d_c00164{bottom:606.133333pt;}
.y18_c00164{bottom:616.000000pt;}
.y4c_c00164{bottom:622.133333pt;}
.y17_c00164{bottom:632.000000pt;}
.y4b_c00164{bottom:637.866667pt;}
.y16_c00164{bottom:647.333333pt;}
.y4a_c00164{bottom:654.133333pt;}
.y15_c00164{bottom:663.333333pt;}
.y49_c00164{bottom:669.466667pt;}
.y48_c00164{bottom:685.466667pt;}
.y14_c00164{bottom:691.200000pt;}
.y13_c00164{bottom:696.666667pt;}
.y47_c00164{bottom:707.866667pt;}
.y12_c00164{bottom:711.066667pt;}
.y11_c00164{bottom:718.400000pt;}
.y46_c00164{bottom:723.866667pt;}
.y10_c00164{bottom:734.666667pt;}
.y45_c00164{bottom:739.866667pt;}
.yf_c00164{bottom:758.133333pt;}
.y44_c00164{bottom:759.600000pt;}
.y43_c00164{bottom:775.333333pt;}
.ye_c00164{bottom:780.533333pt;}
.yd_c00164{bottom:793.333333pt;}
.y42_c00164{bottom:795.600000pt;}
.y41_c00164{bottom:811.866667pt;}
.yc_c00164{bottom:823.066667pt;}
.y40_c00164{bottom:831.333333pt;}
.yb_c00164{bottom:850.533333pt;}
.y3f_c00164{bottom:850.800000pt;}
.ya_c00164{bottom:866.533333pt;}
.y3e_c00164{bottom:881.866667pt;}
.y9_c00164{bottom:889.866667pt;}
.y3d_c00164{bottom:901.466667pt;}
.y8_c00164{bottom:912.666667pt;}
.y3c_c00164{bottom:920.933333pt;}
.y7_c00164{bottom:928.400000pt;}
.y3b_c00164{bottom:940.533333pt;}
.y6_c00164{bottom:944.133333pt;}
.y5_c00164{bottom:959.866667pt;}
.y3a_c00164{bottom:960.000000pt;}
.y4_c00164{bottom:975.600000pt;}
.y39_c00164{bottom:975.733333pt;}
.y3_c00164{bottom:991.333333pt;}
.y38_c00164{bottom:991.733333pt;}
.y2_c00164{bottom:1014.400000pt;}
.y1_c00164{bottom:1014.666667pt;}
.h9_c00164{height:26.666667pt;}
.h6_c00164{height:37.333333pt;}
.h8_c00164{height:48.000000pt;}
.h5_c00164{height:53.333333pt;}
.h4_c00164{height:58.666667pt;}
.h7_c00164{height:64.000000pt;}
.h2_c00164{height:69.333333pt;}
.h3_c00164{height:80.000000pt;}
.h1_c00164{height:1132.000000pt;}
.h0_c00164{height:1132.159993pt;}
.w1_c00164{width:856.000000pt;}
.w0_c00164{width:856.319987pt;}
.x0_c00164{left:0.000000pt;}
.x8a_c00164{left:83.066667pt;}
.x68_c00164{left:84.533333pt;}
.x37_c00164{left:86.400000pt;}
.x2e_c00164{left:88.000000pt;}
.xa1_c00164{left:95.066667pt;}
.x9b_c00164{left:98.266667pt;}
.x87_c00164{left:99.466667pt;}
.x6c_c00164{left:100.533333pt;}
.x96_c00164{left:102.800000pt;}
.x4c_c00164{left:104.400000pt;}
.xf_c00164{left:106.266667pt;}
.x5_c00164{left:107.200000pt;}
.x9e_c00164{left:108.133333pt;}
.x8b_c00164{left:111.600000pt;}
.x8e_c00164{left:112.533333pt;}
.x4a_c00164{left:115.200000pt;}
.x6_c00164{left:116.800000pt;}
.x85_c00164{left:117.733333pt;}
.x88_c00164{left:119.600000pt;}
.x40_c00164{left:120.666667pt;}
.x5b_c00164{left:121.600000pt;}
.x50_c00164{left:122.533333pt;}
.x10_c00164{left:124.533333pt;}
.x70_c00164{left:125.600000pt;}
.x79_c00164{left:126.533333pt;}
.x4b_c00164{left:128.666667pt;}
.x4d_c00164{left:129.733333pt;}
.x81_c00164{left:131.733333pt;}
.x9c_c00164{left:134.133333pt;}
.x46_c00164{left:136.400000pt;}
.x5f_c00164{left:138.000000pt;}
.x6b_c00164{left:139.466667pt;}
.x11_c00164{left:140.533333pt;}
.x28_c00164{left:142.933333pt;}
.x80_c00164{left:145.733333pt;}
.x74_c00164{left:147.733333pt;}
.x2f_c00164{left:148.800000pt;}
.x38_c00164{left:151.066667pt;}
.xaa_c00164{left:152.400000pt;}
.x30_c00164{left:154.000000pt;}
.x82_c00164{left:155.466667pt;}
.x17_c00164{left:158.133333pt;}
.x7_c00164{left:161.333333pt;}
.x4e_c00164{left:164.666667pt;}
.x29_c00164{left:166.266667pt;}
.x89_c00164{left:167.600000pt;}
.x1e_c00164{left:169.600000pt;}
.x7a_c00164{left:170.666667pt;}
.x5c_c00164{left:172.133333pt;}
.x63_c00164{left:175.066667pt;}
.x76_c00164{left:177.466667pt;}
.x71_c00164{left:178.400000pt;}
.x7b_c00164{left:179.333333pt;}
.x8c_c00164{left:180.666667pt;}
.x35_c00164{left:182.400000pt;}
.x4f_c00164{left:183.600000pt;}
.x57_c00164{left:185.066667pt;}
.xa4_c00164{left:186.000000pt;}
.x2a_c00164{left:187.333333pt;}
.x86_c00164{left:188.533333pt;}
.x6d_c00164{left:190.400000pt;}
.xa7_c00164{left:191.866667pt;}
.x31_c00164{left:193.333333pt;}
.x47_c00164{left:194.400000pt;}
.x8_c00164{left:195.866667pt;}
.x18_c00164{left:197.200000pt;}
.x8f_c00164{left:198.666667pt;}
.x1f_c00164{left:200.666667pt;}
.x39_c00164{left:202.933333pt;}
.x41_c00164{left:203.866667pt;}
.x64_c00164{left:204.800000pt;}
.xa8_c00164{left:206.266667pt;}
.x23_c00164{left:207.600000pt;}
.x3a_c00164{left:209.066667pt;}
.x9d_c00164{left:214.933333pt;}
.x12_c00164{left:216.133333pt;}
.x58_c00164{left:218.000000pt;}
.x9_c00164{left:219.600000pt;}
.x19_c00164{left:221.200000pt;}
.x69_c00164{left:222.266667pt;}
.x53_c00164{left:223.333333pt;}
.x8d_c00164{left:225.200000pt;}
.xa2_c00164{left:226.666667pt;}
.x60_c00164{left:231.733333pt;}
.x97_c00164{left:232.800000pt;}
.x91_c00164{left:236.000000pt;}
.x6e_c00164{left:237.200000pt;}
.x13_c00164{left:238.533333pt;}
.xa_c00164{left:241.333333pt;}
.x2b_c00164{left:242.666667pt;}
.xa3_c00164{left:243.600000pt;}
.x36_c00164{left:244.800000pt;}
.x9a_c00164{left:245.733333pt;}
.x3b_c00164{left:247.200000pt;}
.x65_c00164{left:249.333333pt;}
.x61_c00164{left:251.200000pt;}
.x24_c00164{left:252.133333pt;}
.x72_c00164{left:253.333333pt;}
.xa5_c00164{left:254.266667pt;}
.x7c_c00164{left:255.200000pt;}
.x32_c00164{left:256.666667pt;}
.x3f_c00164{left:260.933333pt;}
.x6a_c00164{left:261.866667pt;}
.x5d_c00164{left:266.000000pt;}
.xa9_c00164{left:269.333333pt;}
.x25_c00164{left:270.666667pt;}
.x2c_c00164{left:272.133333pt;}
.x33_c00164{left:274.000000pt;}
.x48_c00164{left:276.666667pt;}
.xb_c00164{left:278.400000pt;}
.x3c_c00164{left:283.733333pt;}
.x7d_c00164{left:285.733333pt;}
.x54_c00164{left:286.666667pt;}
.x73_c00164{left:289.200000pt;}
.x1a_c00164{left:291.333333pt;}
.x14_c00164{left:293.600000pt;}
.x2d_c00164{left:295.866667pt;}
.x20_c00164{left:298.800000pt;}
.x42_c00164{left:301.466667pt;}
.x62_c00164{left:303.066667pt;}
.x7e_c00164{left:305.600000pt;}
.x1_c00164{left:307.200000pt;}
.x9f_c00164{left:308.800000pt;}
.x59_c00164{left:310.800000pt;}
.x77_c00164{left:311.866667pt;}
.x3d_c00164{left:315.066667pt;}
.x75_c00164{left:317.466667pt;}
.x43_c00164{left:318.400000pt;}
.x21_c00164{left:319.866667pt;}
.x92_c00164{left:320.800000pt;}
.x94_c00164{left:321.733333pt;}
.x26_c00164{left:323.466667pt;}
.x1b_c00164{left:325.200000pt;}
.xc_c00164{left:328.000000pt;}
.x93_c00164{left:329.466667pt;}
.x49_c00164{left:330.533333pt;}
.x55_c00164{left:331.466667pt;}
.x7f_c00164{left:333.733333pt;}
.x51_c00164{left:337.600000pt;}
.x27_c00164{left:340.400000pt;}
.x98_c00164{left:342.133333pt;}
.xd_c00164{left:343.333333pt;}
.x1c_c00164{left:344.400000pt;}
.x22_c00164{left:346.133333pt;}
.xa6_c00164{left:347.333333pt;}
.x45_c00164{left:348.533333pt;}
.x5e_c00164{left:350.133333pt;}
.x52_c00164{left:351.066667pt;}
.x95_c00164{left:352.133333pt;}
.x15_c00164{left:353.466667pt;}
.x83_c00164{left:355.466667pt;}
.x78_c00164{left:356.400000pt;}
.xe_c00164{left:357.733333pt;}
.x44_c00164{left:360.266667pt;}
.x66_c00164{left:361.600000pt;}
.x3e_c00164{left:362.800000pt;}
.x99_c00164{left:364.266667pt;}
.x34_c00164{left:367.066667pt;}
.x16_c00164{left:369.733333pt;}
.x1d_c00164{left:370.933333pt;}
.x84_c00164{left:372.400000pt;}
.x6f_c00164{left:374.133333pt;}
.xa0_c00164{left:375.333333pt;}
.x56_c00164{left:376.533333pt;}
.x90_c00164{left:379.600000pt;}
.x67_c00164{left:384.000000pt;}
.x5a_c00164{left:385.333333pt;}
.xfb_c00164{left:407.733333pt;}
.x139_c00164{left:418.533333pt;}
.x12c_c00164{left:422.133333pt;}
.xf5_c00164{left:423.066667pt;}
.xb3_c00164{left:424.266667pt;}
.xbc_c00164{left:425.333333pt;}
.xef_c00164{left:429.466667pt;}
.x13c_c00164{left:431.733333pt;}
.xde_c00164{left:440.000000pt;}
.xab_c00164{left:441.333333pt;}
.xbe_c00164{left:442.266667pt;}
.xb4_c00164{left:443.200000pt;}
.xf6_c00164{left:444.133333pt;}
.x13f_c00164{left:445.466667pt;}
.x11c_c00164{left:447.466667pt;}
.x120_c00164{left:448.800000pt;}
.x119_c00164{left:450.133333pt;}
.x125_c00164{left:451.866667pt;}
.x134_c00164{left:456.666667pt;}
.x10e_c00164{left:458.133333pt;}
.x136_c00164{left:460.133333pt;}
.xfc_c00164{left:462.800000pt;}
.x100_c00164{left:463.733333pt;}
.x12d_c00164{left:465.600000pt;}
.xd0_c00164{left:466.800000pt;}
.xf0_c00164{left:468.800000pt;}
.xbf_c00164{left:470.400000pt;}
.x105_c00164{left:471.600000pt;}
.xfa_c00164{left:474.266667pt;}
.xc7_c00164{left:475.466667pt;}
.xf7_c00164{left:477.466667pt;}
.xd8_c00164{left:479.066667pt;}
.x13d_c00164{left:480.266667pt;}
.x145_c00164{left:483.066667pt;}
.xca_c00164{left:484.800000pt;}
.xbd_c00164{left:486.400000pt;}
.xfd_c00164{left:487.466667pt;}
.xc4_c00164{left:488.933333pt;}
.x135_c00164{left:491.600000pt;}
.x121_c00164{left:492.666667pt;}
.x124_c00164{left:494.000000pt;}
.xac_c00164{left:495.733333pt;}
.x10a_c00164{left:496.933333pt;}
.x116_c00164{left:498.533333pt;}
.x10f_c00164{left:500.400000pt;}
.xe8_c00164{left:501.333333pt;}
.xe3_c00164{left:503.066667pt;}
.xad_c00164{left:504.000000pt;}
.x12f_c00164{left:505.066667pt;}
.xd1_c00164{left:506.533333pt;}
.x127_c00164{left:507.600000pt;}
.xf1_c00164{left:509.466667pt;}
.xb5_c00164{left:510.400000pt;}
.x13e_c00164{left:511.333333pt;}
.xed_c00164{left:512.800000pt;}
.x12e_c00164{left:513.866667pt;}
.xcb_c00164{left:515.466667pt;}
.xc8_c00164{left:517.733333pt;}
.xe9_c00164{left:520.800000pt;}
.xdf_c00164{left:523.466667pt;}
.xd9_c00164{left:525.733333pt;}
.x132_c00164{left:528.133333pt;}
.x10b_c00164{left:529.866667pt;}
.xc5_c00164{left:532.400000pt;}
.x137_c00164{left:533.466667pt;}
.xfe_c00164{left:535.866667pt;}
.x126_c00164{left:536.933333pt;}
.xcc_c00164{left:538.133333pt;}
.x140_c00164{left:539.200000pt;}
.xc6_c00164{left:540.400000pt;}
.x130_c00164{left:541.600000pt;}
.xb6_c00164{left:543.066667pt;}
.xda_c00164{left:544.266667pt;}
.x141_c00164{left:546.266667pt;}
.x10c_c00164{left:547.466667pt;}
.xc9_c00164{left:548.800000pt;}
.xe4_c00164{left:551.066667pt;}
.x142_c00164{left:552.400000pt;}
.xf2_c00164{left:554.000000pt;}
.x101_c00164{left:554.933333pt;}
.x106_c00164{left:556.133333pt;}
.xd6_c00164{left:558.000000pt;}
.xc0_c00164{left:559.333333pt;}
.xae_c00164{left:560.266667pt;}
.xb7_c00164{left:562.000000pt;}
.x113_c00164{left:562.933333pt;}
.xe5_c00164{left:564.133333pt;}
.x143_c00164{left:565.200000pt;}
.x118_c00164{left:566.933333pt;}
.xe0_c00164{left:570.533333pt;}
.xea_c00164{left:571.733333pt;}
.xf3_c00164{left:574.133333pt;}
.xdb_c00164{left:575.333333pt;}
.xd2_c00164{left:578.266667pt;}
.x107_c00164{left:580.133333pt;}
.xcd_c00164{left:581.066667pt;}
.xc1_c00164{left:583.333333pt;}
.x122_c00164{left:584.800000pt;}
.x110_c00164{left:585.866667pt;}
.x13a_c00164{left:586.800000pt;}
.xb8_c00164{left:588.266667pt;}
.x133_c00164{left:589.733333pt;}
.xaf_c00164{left:590.666667pt;}
.x131_c00164{left:594.666667pt;}
.xb0_c00164{left:597.066667pt;}
.xe6_c00164{left:598.000000pt;}
.xdc_c00164{left:600.000000pt;}
.x147_c00164{left:601.466667pt;}
.x128_c00164{left:604.533333pt;}
.x108_c00164{left:606.400000pt;}
.x11d_c00164{left:607.466667pt;}
.xd3_c00164{left:609.600000pt;}
.xd7_c00164{left:612.133333pt;}
.xe7_c00164{left:613.733333pt;}
.xdd_c00164{left:614.666667pt;}
.x138_c00164{left:615.600000pt;}
.x146_c00164{left:617.600000pt;}
.x129_c00164{left:618.666667pt;}
.xe1_c00164{left:619.866667pt;}
.x117_c00164{left:621.333333pt;}
.x148_c00164{left:622.666667pt;}
.x102_c00164{left:623.733333pt;}
.xff_c00164{left:625.066667pt;}
.x11e_c00164{left:628.933333pt;}
.xeb_c00164{left:631.333333pt;}
.xce_c00164{left:632.533333pt;}
.x103_c00164{left:634.266667pt;}
.xd4_c00164{left:635.200000pt;}
.xb9_c00164{left:636.533333pt;}
.xf8_c00164{left:637.466667pt;}
.x114_c00164{left:640.400000pt;}
.xc2_c00164{left:642.800000pt;}
.xb1_c00164{left:644.800000pt;}
.x11a_c00164{left:647.200000pt;}
.x2_c00164{left:648.266667pt;}
.xec_c00164{left:649.600000pt;}
.xba_c00164{left:650.933333pt;}
.x11f_c00164{left:653.866667pt;}
.xf4_c00164{left:655.733333pt;}
.x12a_c00164{left:656.800000pt;}
.xe2_c00164{left:658.266667pt;}
.x115_c00164{left:659.866667pt;}
.xb2_c00164{left:661.466667pt;}
.xc3_c00164{left:663.333333pt;}
.x11b_c00164{left:665.466667pt;}
.x111_c00164{left:667.200000pt;}
.x13b_c00164{left:668.533333pt;}
.x104_c00164{left:669.733333pt;}
.x109_c00164{left:670.666667pt;}
.x10d_c00164{left:672.533333pt;}
.xcf_c00164{left:674.800000pt;}
.x3_c00164{left:682.800000pt;}
.xf9_c00164{left:684.800000pt;}
.xbb_c00164{left:686.133333pt;}
.x144_c00164{left:687.066667pt;}
.x123_c00164{left:688.533333pt;}
.x4_c00164{left:690.533333pt;}
.xee_c00164{left:692.666667pt;}
.x12b_c00164{left:693.600000pt;}
.xd5_c00164{left:696.266667pt;}
.x112_c00164{left:700.533333pt;}
}





/* 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_c00165 {
    display:none;
  }
  .loading-indicator_c00165.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00165 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_c00165 { 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_c00165" -> "#page-container .classname_c00165")
 */
.pf_c00165 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00165 { /* 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_c00165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00165 { /* 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_c00165 { /* 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_c00165 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00165 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00165 {overflow:visible;}
  }
}
.c_c00165 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00165 { /* 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_c00165:after { /* webkit #35443 */
  content: '';
}
.t_c00165:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00165 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 */
}
.__c00165 { /* 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_c00165 { /* info for Javascript */
  display:none;
}
.l_c00165 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00165 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00165 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00165: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_c00165 {
    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_c00165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00165.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_c00165 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00165;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.000000;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;}
.m77_c00165{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m96_c00165{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00165{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00165{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mde_c00165{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00165{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me0_c00165{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00165{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00165{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me1_c00165{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00165{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md0_c00165{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00165{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00165{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00165{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.me2_c00165{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.md5_c00165{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.md1_c00165{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m54_c00165{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m21_c00165{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md3_c00165{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.md_c00165{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb_c00165{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00165{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00165{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m0_c00165{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00165{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00165{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m112_c00165{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.me_c00165{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00165{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m64_c00165{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m5_c00165{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00165{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma_c00165{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.md8_c00165{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00165{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00165{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00165{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00165{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00165{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.me6_c00165{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m16_c00165{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m74_c00165{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m67_c00165{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00165{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m15_c00165{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m105_c00165{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00165{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m62_c00165{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mef_c00165{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m22_c00165{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00165{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00165{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.md6_c00165{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00165{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m34_c00165{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m50_c00165{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00165{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m103_c00165{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00165{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m37_c00165{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00165{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m100_c00165{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00165{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m46_c00165{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00165{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00165{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00165{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00165{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m95_c00165{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00165{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m117_c00165{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m43_c00165{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m40_c00165{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m87_c00165{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00165{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00165{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m38_c00165{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00165{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00165{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00165{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00165{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00165{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00165{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m88_c00165{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00165{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00165{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00165{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m51_c00165{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf_c00165{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mff_c00165{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m60_c00165{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m61_c00165{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m24_c00165{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00165{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00165{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00165{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mac_c00165{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00165{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00165{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00165{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00165{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00165{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m101_c00165{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m14_c00165{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mae_c00165{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mca_c00165{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mee_c00165{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00165{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m75_c00165{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00165{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00165{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00165{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m9_c00165{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m41_c00165{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6_c00165{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00165{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m28_c00165{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m33_c00165{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mba_c00165{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00165{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00165{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00165{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00165{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00165{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00165{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m102_c00165{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m23_c00165{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m47_c00165{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00165{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00165{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m78_c00165{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m92_c00165{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00165{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00165{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m118_c00165{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m31_c00165{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m59_c00165{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00165{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m17_c00165{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m18_c00165{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m90_c00165{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00165{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m39_c00165{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m13_c00165{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00165{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00165{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00165{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m71_c00165{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00165{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m19_c00165{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m119_c00165{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m20_c00165{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00165{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.me5_c00165{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m107_c00165{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m58_c00165{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00165{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00165{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00165{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00165{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00165{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m104_c00165{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m84_c00165{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mda_c00165{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m94_c00165{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m45_c00165{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m26_c00165{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m81_c00165{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00165{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00165{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m69_c00165{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00165{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00165{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m53_c00165{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m30_c00165{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m55_c00165{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mec_c00165{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m91_c00165{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4_c00165{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00165{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00165{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m35_c00165{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m42_c00165{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m93_c00165{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m48_c00165{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m89_c00165{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00165{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00165{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.meb_c00165{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me7_c00165{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m63_c00165{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m65_c00165{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m44_c00165{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00165{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00165{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m12_c00165{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m52_c00165{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m86_c00165{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m57_c00165{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m36_c00165{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m79_c00165{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mab_c00165{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00165{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m113_c00165{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00165{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.med_c00165{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7_c00165{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m29_c00165{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00165{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m85_c00165{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m116_c00165{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m66_c00165{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3_c00165{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00165{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8_c00165{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m68_c00165{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m49_c00165{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mea_c00165{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00165{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.me9_c00165{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00165{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00165{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m80_c00165{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00165{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m98_c00165{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m72_c00165{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00165{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m32_c00165{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00165{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00165{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00165{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md4_c00165{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00165{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00165{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m73_c00165{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00165{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27_c00165{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m76_c00165{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00165{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00165{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me8_c00165{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m56_c00165{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m25_c00165{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m111_c00165{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m70_c00165{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00165{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.md9_c00165{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m83_c00165{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00165{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00165{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m106_c00165{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m82_c00165{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me4_c00165{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00165{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m110_c00165{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.md2_c00165{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00165{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m97_c00165{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00165{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m115_c00165{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.maf_c00165{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00165{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m114_c00165{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00165{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00165{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m99_c00165{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mad_c00165{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00165{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m109_c00165{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00165{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00165{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m108_c00165{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.maa_c00165{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mce_c00165{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00165{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00165{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mc_c00165{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m10_c00165{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.me3_c00165{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m2_c00165{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.md7_c00165{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m11_c00165{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00165{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls2_c00165{letter-spacing:0.000000px;}
.ls1_c00165{letter-spacing:61.426230px;}
.ls0_c00165{letter-spacing:81.503817px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{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__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15_c00165{word-spacing:-114.503817px;}
.ws16_c00165{word-spacing:-94.426230px;}
.ws1c_c00165{word-spacing:-12.763158px;}
.ws8_c00165{word-spacing:-1.111111px;}
.ws7_c00165{word-spacing:-0.666667px;}
.ws6_c00165{word-spacing:0.000000px;}
.ws19_c00165{word-spacing:1.625000px;}
.ws1a_c00165{word-spacing:1.757962px;}
.ws1b_c00165{word-spacing:4.062500px;}
.ws18_c00165{word-spacing:6.810997px;}
.ws5_c00165{word-spacing:7.352941px;}
.ws3_c00165{word-spacing:10.071429px;}
.ws9_c00165{word-spacing:10.951965px;}
.ws2_c00165{word-spacing:13.285714px;}
.wsb_c00165{word-spacing:15.000000px;}
.ws1_c00165{word-spacing:21.500000px;}
.wsa_c00165{word-spacing:22.142857px;}
.ws0_c00165{word-spacing:24.000000px;}
.ws13_c00165{word-spacing:25.714286px;}
.wsf_c00165{word-spacing:26.428954px;}
.ws10_c00165{word-spacing:26.625000px;}
.ws14_c00165{word-spacing:27.893130px;}
.wsc_c00165{word-spacing:29.285714px;}
.ws12_c00165{word-spacing:35.833333px;}
.wse_c00165{word-spacing:39.750000px;}
.ws4_c00165{word-spacing:40.000000px;}
.ws11_c00165{word-spacing:58.421053px;}
.ws17_c00165{word-spacing:61.250000px;}
.wsd_c00165{word-spacing:67.631579px;}
._a_c00165{margin-left:-81.503817px;}
._c_c00165{margin-left:-61.426230px;}
._b_c00165{margin-left:-3.934426px;}
._2_c00165{width:33.428571px;}
._3_c00165{width:35.571429px;}
._1_c00165{width:38.785714px;}
._0_c00165{width:44.500000px;}
._4_c00165{width:59.285714px;}
._5_c00165{width:63.000000px;}
._9_c00165{width:70.000000px;}
._6_c00165{width:72.375000px;}
._8_c00165{width:74.166667px;}
._7_c00165{width:80.416667px;}
.fc0_c00165{color:transparent;}
.fs5_c00165{font-size:30.000000px;}
.fs3_c00165{font-size:36.000000px;}
.fs8_c00165{font-size:48.000000px;}
.fs7_c00165{font-size:54.000000px;}
.fs2_c00165{font-size:60.000000px;}
.fs4_c00165{font-size:66.000000px;}
.fs6_c00165{font-size:72.000000px;}
.fs0_c00165{font-size:78.000000px;}
.fs1_c00165{font-size:84.000000px;}
.y0_c00165{bottom:0.000000px;}
.y6c_c00165{bottom:172.350000px;}
.y35_c00165{bottom:173.700000px;}
.y6b_c00165{bottom:187.800000px;}
.y34_c00165{bottom:191.700000px;}
.y6a_c00165{bottom:202.500000px;}
.y33_c00165{bottom:209.400000px;}
.y69_c00165{bottom:216.600000px;}
.y32_c00165{bottom:227.100000px;}
.y68_c00165{bottom:230.700000px;}
.y67_c00165{bottom:245.100000px;}
.y31_c00165{bottom:252.000000px;}
.y66_c00165{bottom:259.500000px;}
.y30_c00165{bottom:270.000000px;}
.y65_c00165{bottom:273.900000px;}
.y64_c00165{bottom:288.000000px;}
.y2f_c00165{bottom:288.300000px;}
.y2e_c00165{bottom:306.300000px;}
.y2d_c00165{bottom:324.300000px;}
.y63_c00165{bottom:329.700000px;}
.y2c_c00165{bottom:342.300000px;}
.y62_c00165{bottom:347.700000px;}
.y2b_c00165{bottom:360.300000px;}
.y61_c00165{bottom:368.550000px;}
.y2a_c00165{bottom:378.300000px;}
.y60_c00165{bottom:387.300000px;}
.y29_c00165{bottom:396.300000px;}
.y5f_c00165{bottom:413.100000px;}
.y28_c00165{bottom:414.000000px;}
.y5e_c00165{bottom:431.400000px;}
.y27_c00165{bottom:449.700000px;}
.y5d_c00165{bottom:453.000000px;}
.y5c_c00165{bottom:471.750000px;}
.y26_c00165{bottom:477.000000px;}
.y25_c00165{bottom:483.900000px;}
.y5b_c00165{bottom:489.750000px;}
.y24_c00165{bottom:503.250000px;}
.y5a_c00165{bottom:507.450000px;}
.y23_c00165{bottom:521.250000px;}
.y59_c00165{bottom:525.450000px;}
.y22_c00165{bottom:538.950000px;}
.y58_c00165{bottom:543.450000px;}
.y21_c00165{bottom:556.950000px;}
.y57_c00165{bottom:561.150000px;}
.y20_c00165{bottom:574.950000px;}
.y56_c00165{bottom:582.000000px;}
.y1f_c00165{bottom:592.950000px;}
.y55_c00165{bottom:600.000000px;}
.y1e_c00165{bottom:610.650000px;}
.y54_c00165{bottom:618.000000px;}
.y1d_c00165{bottom:628.950000px;}
.y53_c00165{bottom:635.700000px;}
.y1c_c00165{bottom:646.200000px;}
.y52_c00165{bottom:653.700000px;}
.y1b_c00165{bottom:668.550000px;}
.y51_c00165{bottom:671.700000px;}
.y1a_c00165{bottom:686.850000px;}
.y50_c00165{bottom:689.700000px;}
.y19_c00165{bottom:704.550000px;}
.y4f_c00165{bottom:707.400000px;}
.y18_c00165{bottom:722.550000px;}
.y4e_c00165{bottom:725.100000px;}
.y17_c00165{bottom:740.100000px;}
.y4d_c00165{bottom:743.100000px;}
.y16_c00165{bottom:757.800000px;}
.y4c_c00165{bottom:760.800000px;}
.y15_c00165{bottom:775.800000px;}
.y4b_c00165{bottom:779.100000px;}
.y14_c00165{bottom:793.500000px;}
.y4a_c00165{bottom:797.700000px;}
.y13_c00165{bottom:811.500000px;}
.y49_c00165{bottom:814.200000px;}
.y12_c00165{bottom:829.500000px;}
.y48_c00165{bottom:832.200000px;}
.y11_c00165{bottom:847.200000px;}
.y47_c00165{bottom:849.900000px;}
.y10_c00165{bottom:864.900000px;}
.y46_c00165{bottom:871.500000px;}
.yf_c00165{bottom:883.200000px;}
.y45_c00165{bottom:885.150000px;}
.y44_c00165{bottom:900.300000px;}
.ye_c00165{bottom:900.900000px;}
.y43_c00165{bottom:913.650000px;}
.yd_c00165{bottom:918.600000px;}
.y42_c00165{bottom:928.800000px;}
.yc_c00165{bottom:936.300000px;}
.y41_c00165{bottom:942.450000px;}
.yb_c00165{bottom:954.300000px;}
.y40_c00165{bottom:957.900000px;}
.y3f_c00165{bottom:970.950000px;}
.ya_c00165{bottom:972.300000px;}
.y3e_c00165{bottom:986.100000px;}
.y9_c00165{bottom:990.000000px;}
.y3d_c00165{bottom:1000.800000px;}
.y8_c00165{bottom:1008.000000px;}
.y3c_c00165{bottom:1014.900000px;}
.y7_c00165{bottom:1025.700000px;}
.y3b_c00165{bottom:1028.100000px;}
.y6_c00165{bottom:1043.700000px;}
.y3a_c00165{bottom:1044.000000px;}
.y39_c00165{bottom:1057.050000px;}
.y5_c00165{bottom:1068.750000px;}
.y38_c00165{bottom:1073.550000px;}
.y37_c00165{bottom:1091.850000px;}
.y4_c00165{bottom:1097.550000px;}
.y36_c00165{bottom:1109.550000px;}
.y3_c00165{bottom:1113.450000px;}
.y1_c00165{bottom:1136.100000px;}
.y2_c00165{bottom:1136.850000px;}
.h7_c00165{height:30.000000px;}
.h5_c00165{height:36.000000px;}
.ha_c00165{height:48.000000px;}
.h9_c00165{height:54.000000px;}
.h4_c00165{height:60.000000px;}
.h6_c00165{height:66.000000px;}
.h8_c00165{height:72.000000px;}
.h2_c00165{height:78.000000px;}
.h3_c00165{height:84.000000px;}
.h0_c00165{height:1266.480010px;}
.h1_c00165{height:1266.750000px;}
.w1_c00165{width:963.000000px;}
.w0_c00165{width:963.359985px;}
.x0_c00165{left:0.000000px;}
.x98_c00165{left:181.500000px;}
.xa4_c00165{left:183.600000px;}
.x99_c00165{left:185.550000px;}
.x9a_c00165{left:186.900000px;}
.x1_c00165{left:190.800000px;}
.xab_c00165{left:198.600000px;}
.x2_c00165{left:199.800000px;}
.xa6_c00165{left:200.850000px;}
.x9b_c00165{left:202.800000px;}
.xe_c00165{left:204.450000px;}
.x6e_c00165{left:206.100000px;}
.x38_c00165{left:207.150000px;}
.x31_c00165{left:208.350000px;}
.x4_c00165{left:219.300000px;}
.x84_c00165{left:223.200000px;}
.x65_c00165{left:225.300000px;}
.x24_c00165{left:227.550000px;}
.x39_c00165{left:228.750000px;}
.x97_c00165{left:229.800000px;}
.x94_c00165{left:231.150000px;}
.x82_c00165{left:234.000000px;}
.x3e_c00165{left:236.250000px;}
.xac_c00165{left:237.450000px;}
.x54_c00165{left:238.500000px;}
.x78_c00165{left:239.700000px;}
.xf_c00165{left:240.750000px;}
.x6a_c00165{left:241.950000px;}
.xa1_c00165{left:243.000000px;}
.x3a_c00165{left:244.200000px;}
.x5a_c00165{left:245.550000px;}
.x87_c00165{left:247.650000px;}
.x5e_c00165{left:249.450000px;}
.x4d_c00165{left:251.850000px;}
.x7f_c00165{left:252.900000px;}
.x71_c00165{left:254.550000px;}
.x95_c00165{left:256.050000px;}
.x5b_c00165{left:257.850000px;}
.x1d_c00165{left:259.350000px;}
.x4f_c00165{left:260.850000px;}
.x6b_c00165{left:262.800000px;}
.x55_c00165{left:264.000000px;}
.x3f_c00165{left:266.100000px;}
.x92_c00165{left:267.150000px;}
.x5f_c00165{left:268.500000px;}
.x10_c00165{left:269.850000px;}
.x32_c00165{left:272.550000px;}
.x2a_c00165{left:273.600000px;}
.x83_c00165{left:274.650000px;}
.x11_c00165{left:277.050000px;}
.x66_c00165{left:279.000000px;}
.x5_c00165{left:280.500000px;}
.x25_c00165{left:282.600000px;}
.x74_c00165{left:284.850000px;}
.x1e_c00165{left:288.900000px;}
.x12_c00165{left:290.850000px;}
.x8c_c00165{left:292.950000px;}
.x67_c00165{left:294.450000px;}
.x72_c00165{left:295.650000px;}
.x13_c00165{left:298.800000px;}
.x6_c00165{left:300.600000px;}
.x4b_c00165{left:302.250000px;}
.x33_c00165{left:304.200000px;}
.x14_c00165{left:305.250000px;}
.xa2_c00165{left:306.300000px;}
.x1f_c00165{left:307.650000px;}
.x50_c00165{left:309.450000px;}
.x2b_c00165{left:313.200000px;}
.x7_c00165{left:314.250000px;}
.x8d_c00165{left:315.600000px;}
.xa8_c00165{left:317.850000px;}
.x79_c00165{left:318.900000px;}
.x6c_c00165{left:321.450000px;}
.x9e_c00165{left:323.400000px;}
.x60_c00165{left:325.050000px;}
.x56_c00165{left:326.550000px;}
.x47_c00165{left:328.650000px;}
.x3b_c00165{left:331.350000px;}
.x89_c00165{left:332.550000px;}
.x15_c00165{left:334.500000px;}
.x88_c00165{left:336.150000px;}
.x26_c00165{left:337.200000px;}
.x7a_c00165{left:339.750000px;}
.xa0_c00165{left:341.250000px;}
.x57_c00165{left:342.450000px;}
.x90_c00165{left:346.200000px;}
.x40_c00165{left:347.550000px;}
.x61_c00165{left:349.200000px;}
.x48_c00165{left:350.250000px;}
.xa7_c00165{left:351.750000px;}
.x51_c00165{left:353.400000px;}
.x4c_c00165{left:355.500000px;}
.x20_c00165{left:358.050000px;}
.x68_c00165{left:360.750000px;}
.x8_c00165{left:362.550000px;}
.x70_c00165{left:363.750000px;}
.x62_c00165{left:365.400000px;}
.x58_c00165{left:366.600000px;}
.x21_c00165{left:367.800000px;}
.x8a_c00165{left:369.600000px;}
.xa9_c00165{left:371.100000px;}
.x34_c00165{left:373.200000px;}
.x4e_c00165{left:374.550000px;}
.x2c_c00165{left:375.900000px;}
.x16_c00165{left:377.700000px;}
.x9_c00165{left:383.400000px;}
.x7b_c00165{left:385.050000px;}
.x8e_c00165{left:386.100000px;}
.x59_c00165{left:388.200000px;}
.x17_c00165{left:391.650000px;}
.x41_c00165{left:393.600000px;}
.x2d_c00165{left:394.950000px;}
.x9d_c00165{left:396.900000px;}
.x18_c00165{left:398.550000px;}
.x75_c00165{left:400.200000px;}
.x6d_c00165{left:402.450000px;}
.x19_c00165{left:405.750000px;}
.x7d_c00165{left:407.100000px;}
.x22_c00165{left:410.700000px;}
.x8f_c00165{left:413.850000px;}
.x63_c00165{left:416.850000px;}
.x42_c00165{left:418.050000px;}
.x1a_c00165{left:420.450000px;}
.x35_c00165{left:423.600000px;}
.x23_c00165{left:425.100000px;}
.x80_c00165{left:426.150000px;}
.xa_c00165{left:427.650000px;}
.x69_c00165{left:429.150000px;}
.x7c_c00165{left:431.550000px;}
.x43_c00165{left:433.950000px;}
.x27_c00165{left:435.000000px;}
.x52_c00165{left:436.200000px;}
.x3_c00165{left:437.700000px;}
.x5c_c00165{left:441.750000px;}
.x85_c00165{left:444.150000px;}
.xb_c00165{left:446.700000px;}
.x2e_c00165{left:450.000000px;}
.x1b_c00165{left:453.150000px;}
.x76_c00165{left:454.950000px;}
.xaa_c00165{left:456.750000px;}
.x2f_c00165{left:459.000000px;}
.x73_c00165{left:460.050000px;}
.x8b_c00165{left:462.150000px;}
.x36_c00165{left:464.250000px;}
.x81_c00165{left:465.450000px;}
.x3c_c00165{left:466.650000px;}
.x9f_c00165{left:468.750000px;}
.xa5_c00165{left:469.800000px;}
.x91_c00165{left:471.000000px;}
.x44_c00165{left:472.050000px;}
.x64_c00165{left:473.400000px;}
.x3d_c00165{left:475.350000px;}
.xc_c00165{left:476.550000px;}
.x49_c00165{left:478.350000px;}
.x45_c00165{left:480.300000px;}
.x1c_c00165{left:481.950000px;}
.x28_c00165{left:483.300000px;}
.x5d_c00165{left:485.250000px;}
.x9c_c00165{left:487.200000px;}
.x93_c00165{left:488.850000px;}
.x30_c00165{left:491.700000px;}
.x6f_c00165{left:493.050000px;}
.x37_c00165{left:495.150000px;}
.x46_c00165{left:497.250000px;}
.x53_c00165{left:500.250000px;}
.x86_c00165{left:504.300000px;}
.x7e_c00165{left:508.200000px;}
.x4a_c00165{left:509.250000px;}
.xd_c00165{left:510.750000px;}
.x29_c00165{left:511.800000px;}
.xa3_c00165{left:516.600000px;}
.x96_c00165{left:517.800000px;}
.x77_c00165{left:530.550000px;}
.x153_c00165{left:538.500000px;}
.x14d_c00165{left:539.550000px;}
.x132_c00165{left:541.350000px;}
.x10c_c00165{left:543.600000px;}
.xba_c00165{left:545.700000px;}
.x137_c00165{left:551.850000px;}
.x149_c00165{left:555.150000px;}
.xf0_c00165{left:558.000000px;}
.xc2_c00165{left:559.950000px;}
.x113_c00165{left:561.600000px;}
.xad_c00165{left:563.400000px;}
.x154_c00165{left:565.050000px;}
.x138_c00165{left:567.750000px;}
.x150_c00165{left:570.300000px;}
.xe2_c00165{left:573.300000px;}
.xd6_c00165{left:574.350000px;}
.x147_c00165{left:577.050000px;}
.x14a_c00165{left:579.900000px;}
.x118_c00165{left:581.100000px;}
.x144_c00165{left:582.900000px;}
.x126_c00165{left:585.000000px;}
.xc3_c00165{left:589.800000px;}
.x107_c00165{left:591.900000px;}
.xd7_c00165{left:595.650000px;}
.x119_c00165{left:597.000000px;}
.xb7_c00165{left:598.800000px;}
.x14b_c00165{left:600.750000px;}
.x10f_c00165{left:603.000000px;}
.xae_c00165{left:606.300000px;}
.xc4_c00165{left:607.500000px;}
.xc9_c00165{left:609.150000px;}
.x108_c00165{left:611.400000px;}
.xf8_c00165{left:612.600000px;}
.xd8_c00165{left:613.650000px;}
.xec_c00165{left:617.850000px;}
.xfb_c00165{left:619.200000px;}
.x110_c00165{left:620.700000px;}
.x13d_c00165{left:621.750000px;}
.x127_c00165{left:622.800000px;}
.x133_c00165{left:624.900000px;}
.x14e_c00165{left:627.000000px;}
.xd9_c00165{left:628.050000px;}
.x120_c00165{left:629.400000px;}
.xf5_c00165{left:632.250000px;}
.x122_c00165{left:633.900000px;}
.x128_c00165{left:635.400000px;}
.x11e_c00165{left:636.450000px;}
.xdf_c00165{left:637.500000px;}
.xb8_c00165{left:639.150000px;}
.xc5_c00165{left:641.400000px;}
.xfd_c00165{left:643.650000px;}
.xf9_c00165{left:644.700000px;}
.x114_c00165{left:648.300000px;}
.x143_c00165{left:649.950000px;}
.xaf_c00165{left:651.300000px;}
.x109_c00165{left:652.800000px;}
.xda_c00165{left:655.050000px;}
.xca_c00165{left:656.700000px;}
.xb9_c00165{left:658.650000px;}
.x14c_c00165{left:659.850000px;}
.x12e_c00165{left:662.100000px;}
.xdb_c00165{left:664.050000px;}
.x121_c00165{left:665.400000px;}
.xf1_c00165{left:667.050000px;}
.xfa_c00165{left:669.150000px;}
.xbb_c00165{left:670.200000px;}
.x123_c00165{left:673.200000px;}
.xf2_c00165{left:675.300000px;}
.xb0_c00165{left:677.250000px;}
.xfc_c00165{left:679.350000px;}
.x129_c00165{left:682.200000px;}
.xf6_c00165{left:683.850000px;}
.xfe_c00165{left:686.400000px;}
.x111_c00165{left:687.900000px;}
.xbc_c00165{left:689.700000px;}
.xb1_c00165{left:692.700000px;}
.xff_c00165{left:694.650000px;}
.x10a_c00165{left:695.700000px;}
.xcb_c00165{left:697.350000px;}
.xed_c00165{left:698.550000px;}
.x12a_c00165{left:699.900000px;}
.x100_c00165{left:701.100000px;}
.xe3_c00165{left:702.900000px;}
.xcc_c00165{left:704.250000px;}
.xdc_c00165{left:706.950000px;}
.x101_c00165{left:708.000000px;}
.x13e_c00165{left:709.650000px;}
.x10b_c00165{left:711.150000px;}
.xcd_c00165{left:712.500000px;}
.xe4_c00165{left:716.850000px;}
.xe0_c00165{left:718.500000px;}
.xce_c00165{left:719.700000px;}
.x139_c00165{left:720.750000px;}
.xdd_c00165{left:722.100000px;}
.xbd_c00165{left:725.700000px;}
.x145_c00165{left:727.650000px;}
.xb2_c00165{left:729.000000px;}
.x102_c00165{left:730.050000px;}
.xe5_c00165{left:731.550000px;}
.xc6_c00165{left:733.200000px;}
.x12b_c00165{left:736.950000px;}
.xe6_c00165{left:738.450000px;}
.xb3_c00165{left:739.500000px;}
.xf3_c00165{left:740.550000px;}
.x11a_c00165{left:742.350000px;}
.xee_c00165{left:743.550000px;}
.x151_c00165{left:745.200000px;}
.xe7_c00165{left:746.400000px;}
.xc7_c00165{left:747.900000px;}
.x12f_c00165{left:749.100000px;}
.xf7_c00165{left:750.450000px;}
.x103_c00165{left:752.400000px;}
.xde_c00165{left:753.450000px;}
.xcf_c00165{left:755.100000px;}
.x115_c00165{left:756.750000px;}
.xef_c00165{left:759.000000px;}
.x125_c00165{left:760.950000px;}
.xd0_c00165{left:762.600000px;}
.x13a_c00165{left:765.150000px;}
.x10d_c00165{left:767.550000px;}
.xd1_c00165{left:769.800000px;}
.xbe_c00165{left:772.800000px;}
.x13b_c00165{left:773.850000px;}
.xe8_c00165{left:775.200000px;}
.xd2_c00165{left:777.300000px;}
.xc8_c00165{left:780.600000px;}
.xe9_c00165{left:782.400000px;}
.xf4_c00165{left:783.750000px;}
.x112_c00165{left:784.800000px;}
.xb4_c00165{left:786.600000px;}
.x104_c00165{left:788.400000px;}
.x11f_c00165{left:790.200000px;}
.xd3_c00165{left:792.000000px;}
.x148_c00165{left:793.050000px;}
.x135_c00165{left:797.700000px;}
.xbf_c00165{left:802.350000px;}
.x11b_c00165{left:803.550000px;}
.x105_c00165{left:807.900000px;}
.xea_c00165{left:809.400000px;}
.xd4_c00165{left:810.750000px;}
.x152_c00165{left:813.900000px;}
.x12c_c00165{left:816.150000px;}
.x116_c00165{left:821.100000px;}
.x141_c00165{left:822.900000px;}
.x140_c00165{left:825.600000px;}
.x10e_c00165{left:828.000000px;}
.x124_c00165{left:829.200000px;}
.x14f_c00165{left:831.150000px;}
.xc0_c00165{left:833.250000px;}
.x136_c00165{left:835.200000px;}
.x106_c00165{left:837.000000px;}
.xb5_c00165{left:840.300000px;}
.x130_c00165{left:843.000000px;}
.x142_c00165{left:844.800000px;}
.x13f_c00165{left:847.800000px;}
.x117_c00165{left:850.200000px;}
.x13c_c00165{left:853.050000px;}
.x131_c00165{left:854.850000px;}
.x11c_c00165{left:856.050000px;}
.xb6_c00165{left:859.050000px;}
.x146_c00165{left:860.550000px;}
.x12d_c00165{left:863.700000px;}
.xc1_c00165{left:867.450000px;}
.xe1_c00165{left:868.500000px;}
.xeb_c00165{left:869.550000px;}
.xd5_c00165{left:870.600000px;}
.x134_c00165{left:874.050000px;}
.x11d_c00165{left:890.550000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls2_c00165{letter-spacing:0.000000pt;}
.ls1_c00165{letter-spacing:54.601093pt;}
.ls0_c00165{letter-spacing:72.447837pt;}
.ws15_c00165{word-spacing:-101.781170pt;}
.ws16_c00165{word-spacing:-83.934426pt;}
.ws1c_c00165{word-spacing:-11.345029pt;}
.ws8_c00165{word-spacing:-0.987654pt;}
.ws7_c00165{word-spacing:-0.592593pt;}
.ws6_c00165{word-spacing:0.000000pt;}
.ws19_c00165{word-spacing:1.444444pt;}
.ws1a_c00165{word-spacing:1.562633pt;}
.ws1b_c00165{word-spacing:3.611111pt;}
.ws18_c00165{word-spacing:6.054219pt;}
.ws5_c00165{word-spacing:6.535948pt;}
.ws3_c00165{word-spacing:8.952381pt;}
.ws9_c00165{word-spacing:9.735080pt;}
.ws2_c00165{word-spacing:11.809524pt;}
.wsb_c00165{word-spacing:13.333333pt;}
.ws1_c00165{word-spacing:19.111111pt;}
.wsa_c00165{word-spacing:19.682540pt;}
.ws0_c00165{word-spacing:21.333333pt;}
.ws13_c00165{word-spacing:22.857143pt;}
.wsf_c00165{word-spacing:23.492404pt;}
.ws10_c00165{word-spacing:23.666667pt;}
.ws14_c00165{word-spacing:24.793893pt;}
.wsc_c00165{word-spacing:26.031746pt;}
.ws12_c00165{word-spacing:31.851852pt;}
.wse_c00165{word-spacing:35.333333pt;}
.ws4_c00165{word-spacing:35.555556pt;}
.ws11_c00165{word-spacing:51.929825pt;}
.ws17_c00165{word-spacing:54.444444pt;}
.wsd_c00165{word-spacing:60.116959pt;}
._a_c00165{margin-left:-72.447837pt;}
._c_c00165{margin-left:-54.601093pt;}
._b_c00165{margin-left:-3.497268pt;}
._2_c00165{width:29.714286pt;}
._3_c00165{width:31.619048pt;}
._1_c00165{width:34.476190pt;}
._0_c00165{width:39.555556pt;}
._4_c00165{width:52.698413pt;}
._5_c00165{width:56.000000pt;}
._9_c00165{width:62.222222pt;}
._6_c00165{width:64.333333pt;}
._8_c00165{width:65.925926pt;}
._7_c00165{width:71.481481pt;}
.fs5_c00165{font-size:26.666667pt;}
.fs3_c00165{font-size:32.000000pt;}
.fs8_c00165{font-size:42.666667pt;}
.fs7_c00165{font-size:48.000000pt;}
.fs2_c00165{font-size:53.333333pt;}
.fs4_c00165{font-size:58.666667pt;}
.fs6_c00165{font-size:64.000000pt;}
.fs0_c00165{font-size:69.333333pt;}
.fs1_c00165{font-size:74.666667pt;}
.y0_c00165{bottom:0.000000pt;}
.y6c_c00165{bottom:153.200000pt;}
.y35_c00165{bottom:154.400000pt;}
.y6b_c00165{bottom:166.933333pt;}
.y34_c00165{bottom:170.400000pt;}
.y6a_c00165{bottom:180.000000pt;}
.y33_c00165{bottom:186.133333pt;}
.y69_c00165{bottom:192.533333pt;}
.y32_c00165{bottom:201.866667pt;}
.y68_c00165{bottom:205.066667pt;}
.y67_c00165{bottom:217.866667pt;}
.y31_c00165{bottom:224.000000pt;}
.y66_c00165{bottom:230.666667pt;}
.y30_c00165{bottom:240.000000pt;}
.y65_c00165{bottom:243.466667pt;}
.y64_c00165{bottom:256.000000pt;}
.y2f_c00165{bottom:256.266667pt;}
.y2e_c00165{bottom:272.266667pt;}
.y2d_c00165{bottom:288.266667pt;}
.y63_c00165{bottom:293.066667pt;}
.y2c_c00165{bottom:304.266667pt;}
.y62_c00165{bottom:309.066667pt;}
.y2b_c00165{bottom:320.266667pt;}
.y61_c00165{bottom:327.600000pt;}
.y2a_c00165{bottom:336.266667pt;}
.y60_c00165{bottom:344.266667pt;}
.y29_c00165{bottom:352.266667pt;}
.y5f_c00165{bottom:367.200000pt;}
.y28_c00165{bottom:368.000000pt;}
.y5e_c00165{bottom:383.466667pt;}
.y27_c00165{bottom:399.733333pt;}
.y5d_c00165{bottom:402.666667pt;}
.y5c_c00165{bottom:419.333333pt;}
.y26_c00165{bottom:424.000000pt;}
.y25_c00165{bottom:430.133333pt;}
.y5b_c00165{bottom:435.333333pt;}
.y24_c00165{bottom:447.333333pt;}
.y5a_c00165{bottom:451.066667pt;}
.y23_c00165{bottom:463.333333pt;}
.y59_c00165{bottom:467.066667pt;}
.y22_c00165{bottom:479.066667pt;}
.y58_c00165{bottom:483.066667pt;}
.y21_c00165{bottom:495.066667pt;}
.y57_c00165{bottom:498.800000pt;}
.y20_c00165{bottom:511.066667pt;}
.y56_c00165{bottom:517.333333pt;}
.y1f_c00165{bottom:527.066667pt;}
.y55_c00165{bottom:533.333333pt;}
.y1e_c00165{bottom:542.800000pt;}
.y54_c00165{bottom:549.333333pt;}
.y1d_c00165{bottom:559.066667pt;}
.y53_c00165{bottom:565.066667pt;}
.y1c_c00165{bottom:574.400000pt;}
.y52_c00165{bottom:581.066667pt;}
.y1b_c00165{bottom:594.266667pt;}
.y51_c00165{bottom:597.066667pt;}
.y1a_c00165{bottom:610.533333pt;}
.y50_c00165{bottom:613.066667pt;}
.y19_c00165{bottom:626.266667pt;}
.y4f_c00165{bottom:628.800000pt;}
.y18_c00165{bottom:642.266667pt;}
.y4e_c00165{bottom:644.533333pt;}
.y17_c00165{bottom:657.866667pt;}
.y4d_c00165{bottom:660.533333pt;}
.y16_c00165{bottom:673.600000pt;}
.y4c_c00165{bottom:676.266667pt;}
.y15_c00165{bottom:689.600000pt;}
.y4b_c00165{bottom:692.533333pt;}
.y14_c00165{bottom:705.333333pt;}
.y4a_c00165{bottom:709.066667pt;}
.y13_c00165{bottom:721.333333pt;}
.y49_c00165{bottom:723.733333pt;}
.y12_c00165{bottom:737.333333pt;}
.y48_c00165{bottom:739.733333pt;}
.y11_c00165{bottom:753.066667pt;}
.y47_c00165{bottom:755.466667pt;}
.y10_c00165{bottom:768.800000pt;}
.y46_c00165{bottom:774.666667pt;}
.yf_c00165{bottom:785.066667pt;}
.y45_c00165{bottom:786.800000pt;}
.y44_c00165{bottom:800.266667pt;}
.ye_c00165{bottom:800.800000pt;}
.y43_c00165{bottom:812.133333pt;}
.yd_c00165{bottom:816.533333pt;}
.y42_c00165{bottom:825.600000pt;}
.yc_c00165{bottom:832.266667pt;}
.y41_c00165{bottom:837.733333pt;}
.yb_c00165{bottom:848.266667pt;}
.y40_c00165{bottom:851.466667pt;}
.y3f_c00165{bottom:863.066667pt;}
.ya_c00165{bottom:864.266667pt;}
.y3e_c00165{bottom:876.533333pt;}
.y9_c00165{bottom:880.000000pt;}
.y3d_c00165{bottom:889.600000pt;}
.y8_c00165{bottom:896.000000pt;}
.y3c_c00165{bottom:902.133333pt;}
.y7_c00165{bottom:911.733333pt;}
.y3b_c00165{bottom:913.866667pt;}
.y6_c00165{bottom:927.733333pt;}
.y3a_c00165{bottom:928.000000pt;}
.y39_c00165{bottom:939.600000pt;}
.y5_c00165{bottom:950.000000pt;}
.y38_c00165{bottom:954.266667pt;}
.y37_c00165{bottom:970.533333pt;}
.y4_c00165{bottom:975.600000pt;}
.y36_c00165{bottom:986.266667pt;}
.y3_c00165{bottom:989.733333pt;}
.y1_c00165{bottom:1009.866667pt;}
.y2_c00165{bottom:1010.533333pt;}
.h7_c00165{height:26.666667pt;}
.h5_c00165{height:32.000000pt;}
.ha_c00165{height:42.666667pt;}
.h9_c00165{height:48.000000pt;}
.h4_c00165{height:53.333333pt;}
.h6_c00165{height:58.666667pt;}
.h8_c00165{height:64.000000pt;}
.h2_c00165{height:69.333333pt;}
.h3_c00165{height:74.666667pt;}
.h0_c00165{height:1125.760009pt;}
.h1_c00165{height:1126.000000pt;}
.w1_c00165{width:856.000000pt;}
.w0_c00165{width:856.319987pt;}
.x0_c00165{left:0.000000pt;}
.x98_c00165{left:161.333333pt;}
.xa4_c00165{left:163.200000pt;}
.x99_c00165{left:164.933333pt;}
.x9a_c00165{left:166.133333pt;}
.x1_c00165{left:169.600000pt;}
.xab_c00165{left:176.533333pt;}
.x2_c00165{left:177.600000pt;}
.xa6_c00165{left:178.533333pt;}
.x9b_c00165{left:180.266667pt;}
.xe_c00165{left:181.733333pt;}
.x6e_c00165{left:183.200000pt;}
.x38_c00165{left:184.133333pt;}
.x31_c00165{left:185.200000pt;}
.x4_c00165{left:194.933333pt;}
.x84_c00165{left:198.400000pt;}
.x65_c00165{left:200.266667pt;}
.x24_c00165{left:202.266667pt;}
.x39_c00165{left:203.333333pt;}
.x97_c00165{left:204.266667pt;}
.x94_c00165{left:205.466667pt;}
.x82_c00165{left:208.000000pt;}
.x3e_c00165{left:210.000000pt;}
.xac_c00165{left:211.066667pt;}
.x54_c00165{left:212.000000pt;}
.x78_c00165{left:213.066667pt;}
.xf_c00165{left:214.000000pt;}
.x6a_c00165{left:215.066667pt;}
.xa1_c00165{left:216.000000pt;}
.x3a_c00165{left:217.066667pt;}
.x5a_c00165{left:218.266667pt;}
.x87_c00165{left:220.133333pt;}
.x5e_c00165{left:221.733333pt;}
.x4d_c00165{left:223.866667pt;}
.x7f_c00165{left:224.800000pt;}
.x71_c00165{left:226.266667pt;}
.x95_c00165{left:227.600000pt;}
.x5b_c00165{left:229.200000pt;}
.x1d_c00165{left:230.533333pt;}
.x4f_c00165{left:231.866667pt;}
.x6b_c00165{left:233.600000pt;}
.x55_c00165{left:234.666667pt;}
.x3f_c00165{left:236.533333pt;}
.x92_c00165{left:237.466667pt;}
.x5f_c00165{left:238.666667pt;}
.x10_c00165{left:239.866667pt;}
.x32_c00165{left:242.266667pt;}
.x2a_c00165{left:243.200000pt;}
.x83_c00165{left:244.133333pt;}
.x11_c00165{left:246.266667pt;}
.x66_c00165{left:248.000000pt;}
.x5_c00165{left:249.333333pt;}
.x25_c00165{left:251.200000pt;}
.x74_c00165{left:253.200000pt;}
.x1e_c00165{left:256.800000pt;}
.x12_c00165{left:258.533333pt;}
.x8c_c00165{left:260.400000pt;}
.x67_c00165{left:261.733333pt;}
.x72_c00165{left:262.800000pt;}
.x13_c00165{left:265.600000pt;}
.x6_c00165{left:267.200000pt;}
.x4b_c00165{left:268.666667pt;}
.x33_c00165{left:270.400000pt;}
.x14_c00165{left:271.333333pt;}
.xa2_c00165{left:272.266667pt;}
.x1f_c00165{left:273.466667pt;}
.x50_c00165{left:275.066667pt;}
.x2b_c00165{left:278.400000pt;}
.x7_c00165{left:279.333333pt;}
.x8d_c00165{left:280.533333pt;}
.xa8_c00165{left:282.533333pt;}
.x79_c00165{left:283.466667pt;}
.x6c_c00165{left:285.733333pt;}
.x9e_c00165{left:287.466667pt;}
.x60_c00165{left:288.933333pt;}
.x56_c00165{left:290.266667pt;}
.x47_c00165{left:292.133333pt;}
.x3b_c00165{left:294.533333pt;}
.x89_c00165{left:295.600000pt;}
.x15_c00165{left:297.333333pt;}
.x88_c00165{left:298.800000pt;}
.x26_c00165{left:299.733333pt;}
.x7a_c00165{left:302.000000pt;}
.xa0_c00165{left:303.333333pt;}
.x57_c00165{left:304.400000pt;}
.x90_c00165{left:307.733333pt;}
.x40_c00165{left:308.933333pt;}
.x61_c00165{left:310.400000pt;}
.x48_c00165{left:311.333333pt;}
.xa7_c00165{left:312.666667pt;}
.x51_c00165{left:314.133333pt;}
.x4c_c00165{left:316.000000pt;}
.x20_c00165{left:318.266667pt;}
.x68_c00165{left:320.666667pt;}
.x8_c00165{left:322.266667pt;}
.x70_c00165{left:323.333333pt;}
.x62_c00165{left:324.800000pt;}
.x58_c00165{left:325.866667pt;}
.x21_c00165{left:326.933333pt;}
.x8a_c00165{left:328.533333pt;}
.xa9_c00165{left:329.866667pt;}
.x34_c00165{left:331.733333pt;}
.x4e_c00165{left:332.933333pt;}
.x2c_c00165{left:334.133333pt;}
.x16_c00165{left:335.733333pt;}
.x9_c00165{left:340.800000pt;}
.x7b_c00165{left:342.266667pt;}
.x8e_c00165{left:343.200000pt;}
.x59_c00165{left:345.066667pt;}
.x17_c00165{left:348.133333pt;}
.x41_c00165{left:349.866667pt;}
.x2d_c00165{left:351.066667pt;}
.x9d_c00165{left:352.800000pt;}
.x18_c00165{left:354.266667pt;}
.x75_c00165{left:355.733333pt;}
.x6d_c00165{left:357.733333pt;}
.x19_c00165{left:360.666667pt;}
.x7d_c00165{left:361.866667pt;}
.x22_c00165{left:365.066667pt;}
.x8f_c00165{left:367.866667pt;}
.x63_c00165{left:370.533333pt;}
.x42_c00165{left:371.600000pt;}
.x1a_c00165{left:373.733333pt;}
.x35_c00165{left:376.533333pt;}
.x23_c00165{left:377.866667pt;}
.x80_c00165{left:378.800000pt;}
.xa_c00165{left:380.133333pt;}
.x69_c00165{left:381.466667pt;}
.x7c_c00165{left:383.600000pt;}
.x43_c00165{left:385.733333pt;}
.x27_c00165{left:386.666667pt;}
.x52_c00165{left:387.733333pt;}
.x3_c00165{left:389.066667pt;}
.x5c_c00165{left:392.666667pt;}
.x85_c00165{left:394.800000pt;}
.xb_c00165{left:397.066667pt;}
.x2e_c00165{left:400.000000pt;}
.x1b_c00165{left:402.800000pt;}
.x76_c00165{left:404.400000pt;}
.xaa_c00165{left:406.000000pt;}
.x2f_c00165{left:408.000000pt;}
.x73_c00165{left:408.933333pt;}
.x8b_c00165{left:410.800000pt;}
.x36_c00165{left:412.666667pt;}
.x81_c00165{left:413.733333pt;}
.x3c_c00165{left:414.800000pt;}
.x9f_c00165{left:416.666667pt;}
.xa5_c00165{left:417.600000pt;}
.x91_c00165{left:418.666667pt;}
.x44_c00165{left:419.600000pt;}
.x64_c00165{left:420.800000pt;}
.x3d_c00165{left:422.533333pt;}
.xc_c00165{left:423.600000pt;}
.x49_c00165{left:425.200000pt;}
.x45_c00165{left:426.933333pt;}
.x1c_c00165{left:428.400000pt;}
.x28_c00165{left:429.600000pt;}
.x5d_c00165{left:431.333333pt;}
.x9c_c00165{left:433.066667pt;}
.x93_c00165{left:434.533333pt;}
.x30_c00165{left:437.066667pt;}
.x6f_c00165{left:438.266667pt;}
.x37_c00165{left:440.133333pt;}
.x46_c00165{left:442.000000pt;}
.x53_c00165{left:444.666667pt;}
.x86_c00165{left:448.266667pt;}
.x7e_c00165{left:451.733333pt;}
.x4a_c00165{left:452.666667pt;}
.xd_c00165{left:454.000000pt;}
.x29_c00165{left:454.933333pt;}
.xa3_c00165{left:459.200000pt;}
.x96_c00165{left:460.266667pt;}
.x77_c00165{left:471.600000pt;}
.x153_c00165{left:478.666667pt;}
.x14d_c00165{left:479.600000pt;}
.x132_c00165{left:481.200000pt;}
.x10c_c00165{left:483.200000pt;}
.xba_c00165{left:485.066667pt;}
.x137_c00165{left:490.533333pt;}
.x149_c00165{left:493.466667pt;}
.xf0_c00165{left:496.000000pt;}
.xc2_c00165{left:497.733333pt;}
.x113_c00165{left:499.200000pt;}
.xad_c00165{left:500.800000pt;}
.x154_c00165{left:502.266667pt;}
.x138_c00165{left:504.666667pt;}
.x150_c00165{left:506.933333pt;}
.xe2_c00165{left:509.600000pt;}
.xd6_c00165{left:510.533333pt;}
.x147_c00165{left:512.933333pt;}
.x14a_c00165{left:515.466667pt;}
.x118_c00165{left:516.533333pt;}
.x144_c00165{left:518.133333pt;}
.x126_c00165{left:520.000000pt;}
.xc3_c00165{left:524.266667pt;}
.x107_c00165{left:526.133333pt;}
.xd7_c00165{left:529.466667pt;}
.x119_c00165{left:530.666667pt;}
.xb7_c00165{left:532.266667pt;}
.x14b_c00165{left:534.000000pt;}
.x10f_c00165{left:536.000000pt;}
.xae_c00165{left:538.933333pt;}
.xc4_c00165{left:540.000000pt;}
.xc9_c00165{left:541.466667pt;}
.x108_c00165{left:543.466667pt;}
.xf8_c00165{left:544.533333pt;}
.xd8_c00165{left:545.466667pt;}
.xec_c00165{left:549.200000pt;}
.xfb_c00165{left:550.400000pt;}
.x110_c00165{left:551.733333pt;}
.x13d_c00165{left:552.666667pt;}
.x127_c00165{left:553.600000pt;}
.x133_c00165{left:555.466667pt;}
.x14e_c00165{left:557.333333pt;}
.xd9_c00165{left:558.266667pt;}
.x120_c00165{left:559.466667pt;}
.xf5_c00165{left:562.000000pt;}
.x122_c00165{left:563.466667pt;}
.x128_c00165{left:564.800000pt;}
.x11e_c00165{left:565.733333pt;}
.xdf_c00165{left:566.666667pt;}
.xb8_c00165{left:568.133333pt;}
.xc5_c00165{left:570.133333pt;}
.xfd_c00165{left:572.133333pt;}
.xf9_c00165{left:573.066667pt;}
.x114_c00165{left:576.266667pt;}
.x143_c00165{left:577.733333pt;}
.xaf_c00165{left:578.933333pt;}
.x109_c00165{left:580.266667pt;}
.xda_c00165{left:582.266667pt;}
.xca_c00165{left:583.733333pt;}
.xb9_c00165{left:585.466667pt;}
.x14c_c00165{left:586.533333pt;}
.x12e_c00165{left:588.533333pt;}
.xdb_c00165{left:590.266667pt;}
.x121_c00165{left:591.466667pt;}
.xf1_c00165{left:592.933333pt;}
.xfa_c00165{left:594.800000pt;}
.xbb_c00165{left:595.733333pt;}
.x123_c00165{left:598.400000pt;}
.xf2_c00165{left:600.266667pt;}
.xb0_c00165{left:602.000000pt;}
.xfc_c00165{left:603.866667pt;}
.x129_c00165{left:606.400000pt;}
.xf6_c00165{left:607.866667pt;}
.xfe_c00165{left:610.133333pt;}
.x111_c00165{left:611.466667pt;}
.xbc_c00165{left:613.066667pt;}
.xb1_c00165{left:615.733333pt;}
.xff_c00165{left:617.466667pt;}
.x10a_c00165{left:618.400000pt;}
.xcb_c00165{left:619.866667pt;}
.xed_c00165{left:620.933333pt;}
.x12a_c00165{left:622.133333pt;}
.x100_c00165{left:623.200000pt;}
.xe3_c00165{left:624.800000pt;}
.xcc_c00165{left:626.000000pt;}
.xdc_c00165{left:628.400000pt;}
.x101_c00165{left:629.333333pt;}
.x13e_c00165{left:630.800000pt;}
.x10b_c00165{left:632.133333pt;}
.xcd_c00165{left:633.333333pt;}
.xe4_c00165{left:637.200000pt;}
.xe0_c00165{left:638.666667pt;}
.xce_c00165{left:639.733333pt;}
.x139_c00165{left:640.666667pt;}
.xdd_c00165{left:641.866667pt;}
.xbd_c00165{left:645.066667pt;}
.x145_c00165{left:646.800000pt;}
.xb2_c00165{left:648.000000pt;}
.x102_c00165{left:648.933333pt;}
.xe5_c00165{left:650.266667pt;}
.xc6_c00165{left:651.733333pt;}
.x12b_c00165{left:655.066667pt;}
.xe6_c00165{left:656.400000pt;}
.xb3_c00165{left:657.333333pt;}
.xf3_c00165{left:658.266667pt;}
.x11a_c00165{left:659.866667pt;}
.xee_c00165{left:660.933333pt;}
.x151_c00165{left:662.400000pt;}
.xe7_c00165{left:663.466667pt;}
.xc7_c00165{left:664.800000pt;}
.x12f_c00165{left:665.866667pt;}
.xf7_c00165{left:667.066667pt;}
.x103_c00165{left:668.800000pt;}
.xde_c00165{left:669.733333pt;}
.xcf_c00165{left:671.200000pt;}
.x115_c00165{left:672.666667pt;}
.xef_c00165{left:674.666667pt;}
.x125_c00165{left:676.400000pt;}
.xd0_c00165{left:677.866667pt;}
.x13a_c00165{left:680.133333pt;}
.x10d_c00165{left:682.266667pt;}
.xd1_c00165{left:684.266667pt;}
.xbe_c00165{left:686.933333pt;}
.x13b_c00165{left:687.866667pt;}
.xe8_c00165{left:689.066667pt;}
.xd2_c00165{left:690.933333pt;}
.xc8_c00165{left:693.866667pt;}
.xe9_c00165{left:695.466667pt;}
.xf4_c00165{left:696.666667pt;}
.x112_c00165{left:697.600000pt;}
.xb4_c00165{left:699.200000pt;}
.x104_c00165{left:700.800000pt;}
.x11f_c00165{left:702.400000pt;}
.xd3_c00165{left:704.000000pt;}
.x148_c00165{left:704.933333pt;}
.x135_c00165{left:709.066667pt;}
.xbf_c00165{left:713.200000pt;}
.x11b_c00165{left:714.266667pt;}
.x105_c00165{left:718.133333pt;}
.xea_c00165{left:719.466667pt;}
.xd4_c00165{left:720.666667pt;}
.x152_c00165{left:723.466667pt;}
.x12c_c00165{left:725.466667pt;}
.x116_c00165{left:729.866667pt;}
.x141_c00165{left:731.466667pt;}
.x140_c00165{left:733.866667pt;}
.x10e_c00165{left:736.000000pt;}
.x124_c00165{left:737.066667pt;}
.x14f_c00165{left:738.800000pt;}
.xc0_c00165{left:740.666667pt;}
.x136_c00165{left:742.400000pt;}
.x106_c00165{left:744.000000pt;}
.xb5_c00165{left:746.933333pt;}
.x130_c00165{left:749.333333pt;}
.x142_c00165{left:750.933333pt;}
.x13f_c00165{left:753.600000pt;}
.x117_c00165{left:755.733333pt;}
.x13c_c00165{left:758.266667pt;}
.x131_c00165{left:759.866667pt;}
.x11c_c00165{left:760.933333pt;}
.xb6_c00165{left:763.600000pt;}
.x146_c00165{left:764.933333pt;}
.x12d_c00165{left:767.733333pt;}
.xc1_c00165{left:771.066667pt;}
.xe1_c00165{left:772.000000pt;}
.xeb_c00165{left:772.933333pt;}
.xd5_c00165{left:773.866667pt;}
.x134_c00165{left:776.933333pt;}
.x11d_c00165{left:791.600000pt;}
}





/* 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_c00166 {
    display:none;
  }
  .loading-indicator_c00166.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00166 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_c00166 { 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_c00166" -> "#page-container .classname_c00166")
 */
.pf_c00166 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00166 { /* 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_c00166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00166 { /* 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_c00166 { /* 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_c00166 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00166 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00166 {overflow:visible;}
  }
}
.c_c00166 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00166 { /* 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_c00166:after { /* webkit #35443 */
  content: '';
}
.t_c00166:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00166 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 */
}
.__c00166 { /* 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_c00166 { /* info for Javascript */
  display:none;
}
.l_c00166 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00166 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00166 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00166: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_c00166 {
    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_c00166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00166.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_c00166 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00166;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.000000;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;}
.ma7_c00166{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00166{transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00166{transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);}
.md0_c00166{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.m33_c00166{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00166{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00166{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m32_c00166{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m104_c00166{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m24_c00166{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.mb_c00166{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00166{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00166{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00166{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m34_c00166{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m48_c00166{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00166{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m61_c00166{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00166{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m11_c00166{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m16_c00166{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m86_c00166{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00166{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00166{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00166{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00166{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00166{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m35_c00166{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00166{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m18_c00166{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mce_c00166{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m26_c00166{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m88_c00166{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00166{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00166{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mec_c00166{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00166{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m10_c00166{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m97_c00166{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mf_c00166{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00166{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m5_c00166{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00166{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m15_c00166{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m105_c00166{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mba_c00166{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00166{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00166{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00166{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m81_c00166{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00166{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00166{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mef_c00166{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m94_c00166{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00166{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00166{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00166{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.maa_c00166{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.me_c00166{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00166{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.md2_c00166{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m122_c00166{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m49_c00166{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00166{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m56_c00166{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00166{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.maf_c00166{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m123_c00166{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m54_c00166{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m57_c00166{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m109_c00166{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m50_c00166{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00166{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00166{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00166{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m95_c00166{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00166{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m120_c00166{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me3_c00166{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m53_c00166{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00166{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m106_c00166{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m102_c00166{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00166{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m29_c00166{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md6_c00166{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00166{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m92_c00166{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m116_c00166{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m45_c00166{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m25_c00166{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m119_c00166{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00166{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00166{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00166{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m75_c00166{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.md1_c00166{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00166{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m103_c00166{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.md4_c00166{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00166{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00166{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m96_c00166{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m17_c00166{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00166{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.meb_c00166{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m114_c00166{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me8_c00166{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m69_c00166{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4_c00166{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m98_c00166{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m51_c00166{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00166{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00166{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00166{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00166{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m12_c00166{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00166{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mde_c00166{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00166{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mc_c00166{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00166{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00166{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m66_c00166{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m43_c00166{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m30_c00166{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00166{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00166{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md3_c00166{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mca_c00166{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m82_c00166{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00166{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00166{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00166{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00166{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m63_c00166{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m47_c00166{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m60_c00166{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m93_c00166{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md9_c00166{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00166{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m87_c00166{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9_c00166{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.md_c00166{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m14_c00166{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m83_c00166{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00166{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00166{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00166{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00166{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00166{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m38_c00166{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00166{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m55_c00166{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m78_c00166{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00166{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00166{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m108_c00166{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00166{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00166{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m41_c00166{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m74_c00166{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00166{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00166{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8_c00166{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00166{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00166{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m42_c00166{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md8_c00166{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m65_c00166{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mee_c00166{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m77_c00166{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m72_c00166{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m64_c00166{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00166{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00166{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mab_c00166{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m99_c00166{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.md5_c00166{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00166{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m46_c00166{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00166{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m62_c00166{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00166{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00166{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m67_c00166{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m91_c00166{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m121_c00166{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m68_c00166{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m113_c00166{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m40_c00166{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m44_c00166{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m13_c00166{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00166{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m73_c00166{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00166{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m59_c00166{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00166{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00166{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m80_c00166{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m58_c00166{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m70_c00166{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00166{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mac_c00166{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00166{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m89_c00166{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00166{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00166{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m28_c00166{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m71_c00166{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m52_c00166{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00166{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m23_c00166{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m20_c00166{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00166{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m37_c00166{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.me1_c00166{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00166{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00166{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00166{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mae_c00166{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00166{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00166{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00166{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);}
.m22_c00166{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00166{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00166{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mff_c00166{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00166{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m115_c00166{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21_c00166{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m100_c00166{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.me4_c00166{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m112_c00166{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00166{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00166{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m101_c00166{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00166{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00166{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m118_c00166{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me2_c00166{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00166{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00166{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00166{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00166{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.me5_c00166{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00166{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00166{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00166{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00166{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mea_c00166{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00166{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00166{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m90_c00166{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m79_c00166{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00166{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m76_c00166{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m111_c00166{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00166{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00166{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m85_c00166{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m107_c00166{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.me9_c00166{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00166{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.me7_c00166{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.md7_c00166{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00166{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m84_c00166{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mda_c00166{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m39_c00166{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m117_c00166{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m31_c00166{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00166{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m27_c00166{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00166{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.me6_c00166{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.mad_c00166{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00166{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.me0_c00166{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00166{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m19_c00166{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m110_c00166{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m36_c00166{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.med_c00166{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00166{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls0_c00166{letter-spacing:0.000000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{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__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00166{word-spacing:-8.714286px;}
.ws0_c00166{word-spacing:-6.903780px;}
.ws7_c00166{word-spacing:0.000000px;}
.ws2_c00166{word-spacing:1.353952px;}
.ws4_c00166{word-spacing:5.967655px;}
.ws1_c00166{word-spacing:6.825090px;}
.ws5_c00166{word-spacing:19.994638px;}
.ws3_c00166{word-spacing:23.666667px;}
._2_c00166{width:50.211796px;}
._0_c00166{width:56.000000px;}
._1_c00166{width:59.333333px;}
._3_c00166{width:992.839142px;}
.fc0_c00166{color:transparent;}
.fs6_c00166{font-size:42.000000px;}
.fs5_c00166{font-size:48.000000px;}
.fs3_c00166{font-size:54.000000px;}
.fs4_c00166{font-size:60.000000px;}
.fs2_c00166{font-size:66.000000px;}
.fs1_c00166{font-size:72.000000px;}
.fs0_c00166{font-size:78.000000px;}
.y0_c00166{bottom:0.000000px;}
.y67_c00166{bottom:191.250000px;}
.y37_c00166{bottom:191.550000px;}
.y66_c00166{bottom:209.250000px;}
.y36_c00166{bottom:209.850000px;}
.y35_c00166{bottom:227.550000px;}
.y34_c00166{bottom:240.450000px;}
.y33_c00166{bottom:245.400000px;}
.y65_c00166{bottom:247.650000px;}
.y64_c00166{bottom:262.800000px;}
.y32_c00166{bottom:263.100000px;}
.y31_c00166{bottom:275.700000px;}
.y30_c00166{bottom:281.100000px;}
.y63_c00166{bottom:286.200000px;}
.y2f_c00166{bottom:298.800000px;}
.y62_c00166{bottom:304.200000px;}
.y2e_c00166{bottom:320.400000px;}
.y61_c00166{bottom:326.550000px;}
.y2d_c00166{bottom:334.800000px;}
.y60_c00166{bottom:344.550000px;}
.y2c_c00166{bottom:350.250000px;}
.y2b_c00166{bottom:367.950000px;}
.y5f_c00166{bottom:375.150000px;}
.y2a_c00166{bottom:386.250000px;}
.y5e_c00166{bottom:401.700000px;}
.y29_c00166{bottom:404.250000px;}
.y28_c00166{bottom:421.950000px;}
.y5d_c00166{bottom:428.100000px;}
.y27_c00166{bottom:443.250000px;}
.y5c_c00166{bottom:446.100000px;}
.y26_c00166{bottom:461.550000px;}
.y5b_c00166{bottom:463.800000px;}
.y25_c00166{bottom:479.100000px;}
.y5a_c00166{bottom:481.500000px;}
.y24_c00166{bottom:497.100000px;}
.y59_c00166{bottom:499.500000px;}
.y23_c00166{bottom:514.800000px;}
.y58_c00166{bottom:517.500000px;}
.y22_c00166{bottom:532.500000px;}
.y57_c00166{bottom:535.500000px;}
.y21_c00166{bottom:550.500000px;}
.y56_c00166{bottom:553.200000px;}
.y55_c00166{bottom:570.900000px;}
.y20_c00166{bottom:572.100000px;}
.y54_c00166{bottom:588.900000px;}
.y1f_c00166{bottom:590.400000px;}
.y53_c00166{bottom:606.600000px;}
.y1e_c00166{bottom:621.000000px;}
.y52_c00166{bottom:624.600000px;}
.y1d_c00166{bottom:639.000000px;}
.y51_c00166{bottom:645.000000px;}
.y50_c00166{bottom:660.150000px;}
.y1c_c00166{bottom:660.900000px;}
.y4f_c00166{bottom:676.050000px;}
.y1b_c00166{bottom:678.900000px;}
.y4e_c00166{bottom:694.050000px;}
.y1a_c00166{bottom:696.600000px;}
.y4d_c00166{bottom:712.500000px;}
.y19_c00166{bottom:714.300000px;}
.y4c_c00166{bottom:734.400000px;}
.y18_c00166{bottom:736.050000px;}
.y4b_c00166{bottom:752.250000px;}
.y17_c00166{bottom:753.750000px;}
.y4a_c00166{bottom:769.950000px;}
.y16_c00166{bottom:771.750000px;}
.y49_c00166{bottom:787.650000px;}
.y15_c00166{bottom:789.450000px;}
.y48_c00166{bottom:805.650000px;}
.y14_c00166{bottom:807.150000px;}
.y13_c00166{bottom:824.850000px;}
.y47_c00166{bottom:827.250000px;}
.y12_c00166{bottom:842.850000px;}
.y46_c00166{bottom:846.000000px;}
.y11_c00166{bottom:860.550000px;}
.y45_c00166{bottom:876.600000px;}
.y10_c00166{bottom:878.250000px;}
.yf_c00166{bottom:896.250000px;}
.y44_c00166{bottom:898.200000px;}
.ye_c00166{bottom:913.950000px;}
.y43_c00166{bottom:917.250000px;}
.yd_c00166{bottom:931.650000px;}
.y42_c00166{bottom:937.950000px;}
.yc_c00166{bottom:949.350000px;}
.y41_c00166{bottom:957.000000px;}
.yb_c00166{bottom:969.150000px;}
.y40_c00166{bottom:975.000000px;}
.ya_c00166{bottom:984.600000px;}
.y3f_c00166{bottom:992.700000px;}
.y9_c00166{bottom:1001.100000px;}
.y3e_c00166{bottom:1010.700000px;}
.y8_c00166{bottom:1022.850000px;}
.y3d_c00166{bottom:1028.400000px;}
.y7_c00166{bottom:1041.600000px;}
.y3c_c00166{bottom:1046.100000px;}
.y6_c00166{bottom:1059.900000px;}
.y3b_c00166{bottom:1065.900000px;}
.y5_c00166{bottom:1080.000000px;}
.y3a_c00166{bottom:1081.800000px;}
.y4_c00166{bottom:1099.050000px;}
.y39_c00166{bottom:1099.800000px;}
.y3_c00166{bottom:1116.750000px;}
.y38_c00166{bottom:1117.500000px;}
.y1_c00166{bottom:1144.500000px;}
.y2_c00166{bottom:1145.250000px;}
.h8_c00166{height:42.000000px;}
.h7_c00166{height:48.000000px;}
.h5_c00166{height:54.000000px;}
.h6_c00166{height:60.000000px;}
.h4_c00166{height:66.000000px;}
.h3_c00166{height:72.000000px;}
.h2_c00166{height:78.000000px;}
.h0_c00166{height:1275.480010px;}
.h1_c00166{height:1275.750000px;}
.w1_c00166{width:963.000000px;}
.w0_c00166{width:963.359985px;}
.x0_c00166{left:0.000000px;}
.x81_c00166{left:85.650000px;}
.x66_c00166{left:87.150000px;}
.x24_c00166{left:88.500000px;}
.x17_c00166{left:89.550000px;}
.xc_c00166{left:97.650000px;}
.x7d_c00166{left:100.050000px;}
.x8e_c00166{left:102.300000px;}
.x2d_c00166{left:105.450000px;}
.x73_c00166{left:106.800000px;}
.x3_c00166{left:108.000000px;}
.x15_c00166{left:109.050000px;}
.x70_c00166{left:111.150000px;}
.x18_c00166{left:115.050000px;}
.x34_c00166{left:118.950000px;}
.x8f_c00166{left:120.300000px;}
.x52_c00166{left:127.200000px;}
.x16_c00166{left:132.750000px;}
.x19_c00166{left:134.100000px;}
.x7c_c00166{left:135.450000px;}
.x97_c00166{left:138.000000px;}
.x57_c00166{left:139.650000px;}
.x3c_c00166{left:141.000000px;}
.xd_c00166{left:142.950000px;}
.x47_c00166{left:144.000000px;}
.x35_c00166{left:148.500000px;}
.x4_c00166{left:150.150000px;}
.x25_c00166{left:151.500000px;}
.x4c_c00166{left:154.050000px;}
.x1d_c00166{left:156.000000px;}
.x41_c00166{left:158.400000px;}
.x6e_c00166{left:159.750000px;}
.x64_c00166{left:161.400000px;}
.x98_c00166{left:163.200000px;}
.x6c_c00166{left:165.300000px;}
.x77_c00166{left:166.650000px;}
.x42_c00166{left:167.700000px;}
.x5_c00166{left:168.900000px;}
.x53_c00166{left:170.700000px;}
.x92_c00166{left:172.800000px;}
.x1e_c00166{left:175.050000px;}
.xe_c00166{left:178.200000px;}
.x3d_c00166{left:179.550000px;}
.x50_c00166{left:181.500000px;}
.x23_c00166{left:183.450000px;}
.x86_c00166{left:185.700000px;}
.x9a_c00166{left:189.000000px;}
.x2e_c00166{left:190.800000px;}
.x5c_c00166{left:192.000000px;}
.x96_c00166{left:193.200000px;}
.x60_c00166{left:194.700000px;}
.xf_c00166{left:197.250000px;}
.x2f_c00166{left:199.050000px;}
.x6a_c00166{left:200.100000px;}
.x6_c00166{left:201.600000px;}
.x82_c00166{left:203.700000px;}
.x30_c00166{left:205.500000px;}
.x7e_c00166{left:207.300000px;}
.x5a_c00166{left:209.250000px;}
.x72_c00166{left:211.650000px;}
.x31_c00166{left:213.000000px;}
.x10_c00166{left:216.000000px;}
.x8b_c00166{left:217.200000px;}
.x26_c00166{left:219.150000px;}
.x7_c00166{left:220.650000px;}
.x65_c00166{left:222.600000px;}
.x74_c00166{left:224.550000px;}
.xa1_c00166{left:228.150000px;}
.x9b_c00166{left:229.350000px;}
.x79_c00166{left:231.000000px;}
.x5d_c00166{left:234.450000px;}
.x4d_c00166{left:235.800000px;}
.x87_c00166{left:236.850000px;}
.x68_c00166{left:238.500000px;}
.x11_c00166{left:240.450000px;}
.x6d_c00166{left:242.400000px;}
.x54_c00166{left:243.750000px;}
.x48_c00166{left:246.000000px;}
.x38_c00166{left:247.050000px;}
.x5e_c00166{left:248.550000px;}
.x7f_c00166{left:252.300000px;}
.x1f_c00166{left:254.550000px;}
.x49_c00166{left:256.050000px;}
.x12_c00166{left:258.450000px;}
.x27_c00166{left:260.550000px;}
.x61_c00166{left:263.400000px;}
.x43_c00166{left:265.950000px;}
.x99_c00166{left:267.000000px;}
.x7a_c00166{left:269.850000px;}
.x4a_c00166{left:271.500000px;}
.x20_c00166{left:274.650000px;}
.x28_c00166{left:281.400000px;}
.x3e_c00166{left:283.200000px;}
.x13_c00166{left:285.150000px;}
.x85_c00166{left:290.100000px;}
.x39_c00166{left:291.750000px;}
.x44_c00166{left:294.450000px;}
.x8_c00166{left:297.000000px;}
.x29_c00166{left:299.100000px;}
.x9d_c00166{left:300.750000px;}
.x75_c00166{left:303.750000px;}
.x55_c00166{left:304.950000px;}
.x4e_c00166{left:306.000000px;}
.x6f_c00166{left:308.400000px;}
.x3a_c00166{left:311.250000px;}
.x1a_c00166{left:314.100000px;}
.x7b_c00166{left:315.450000px;}
.x93_c00166{left:317.100000px;}
.x69_c00166{left:321.300000px;}
.x58_c00166{left:324.000000px;}
.x91_c00166{left:325.800000px;}
.x88_c00166{left:326.850000px;}
.x2a_c00166{left:328.650000px;}
.x8c_c00166{left:330.300000px;}
.x9c_c00166{left:332.250000px;}
.x1_c00166{left:333.750000px;}
.x9_c00166{left:334.800000px;}
.x21_c00166{left:337.650000px;}
.x62_c00166{left:341.100000px;}
.x94_c00166{left:342.300000px;}
.x4f_c00166{left:343.500000px;}
.x71_c00166{left:344.850000px;}
.x2b_c00166{left:346.950000px;}
.x8d_c00166{left:348.300000px;}
.x45_c00166{left:349.950000px;}
.x6b_c00166{left:352.200000px;}
.x9f_c00166{left:353.850000px;}
.x3f_c00166{left:354.900000px;}
.x32_c00166{left:356.250000px;}
.x56_c00166{left:357.450000px;}
.x63_c00166{left:359.400000px;}
.x1b_c00166{left:360.900000px;}
.x89_c00166{left:362.850000px;}
.x76_c00166{left:364.650000px;}
.x3b_c00166{left:366.000000px;}
.x95_c00166{left:367.500000px;}
.x67_c00166{left:370.350000px;}
.xa_c00166{left:372.300000px;}
.x46_c00166{left:373.650000px;}
.x9e_c00166{left:375.600000px;}
.x59_c00166{left:377.250000px;}
.x14_c00166{left:378.750000px;}
.x5f_c00166{left:380.700000px;}
.x51_c00166{left:381.750000px;}
.x83_c00166{left:383.250000px;}
.x33_c00166{left:386.100000px;}
.x36_c00166{left:387.150000px;}
.x5b_c00166{left:388.650000px;}
.x78_c00166{left:393.450000px;}
.x84_c00166{left:395.100000px;}
.x80_c00166{left:396.900000px;}
.xa0_c00166{left:399.600000px;}
.x40_c00166{left:402.750000px;}
.x4b_c00166{left:407.550000px;}
.xb_c00166{left:409.050000px;}
.x2c_c00166{left:411.300000px;}
.x37_c00166{left:413.850000px;}
.x1c_c00166{left:414.900000px;}
.x90_c00166{left:415.950000px;}
.x8a_c00166{left:418.650000px;}
.x22_c00166{left:422.550000px;}
.xe0_c00166{left:447.450000px;}
.x12b_c00166{left:449.250000px;}
.x12e_c00166{left:450.750000px;}
.x101_c00166{left:461.550000px;}
.xf0_c00166{left:463.950000px;}
.xc6_c00166{left:465.150000px;}
.xa2_c00166{left:466.200000px;}
.x139_c00166{left:467.700000px;}
.x106_c00166{left:475.650000px;}
.xa3_c00166{left:479.100000px;}
.xa9_c00166{left:483.600000px;}
.x112_c00166{left:485.400000px;}
.x10c_c00166{left:488.700000px;}
.xf9_c00166{left:490.050000px;}
.xe4_c00166{left:491.700000px;}
.x136_c00166{left:492.750000px;}
.xa4_c00166{left:497.400000px;}
.xcd_c00166{left:499.050000px;}
.xd7_c00166{left:502.500000px;}
.xe1_c00166{left:505.050000px;}
.xd2_c00166{left:506.250000px;}
.xbe_c00166{left:507.900000px;}
.x10d_c00166{left:509.250000px;}
.x12c_c00166{left:510.900000px;}
.x113_c00166{left:514.500000px;}
.xc7_c00166{left:517.350000px;}
.x102_c00166{left:518.850000px;}
.x126_c00166{left:520.050000px;}
.xeb_c00166{left:521.550000px;}
.xb8_c00166{left:522.600000px;}
.xb1_c00166{left:524.100000px;}
.x103_c00166{left:526.050000px;}
.xe7_c00166{left:528.000000px;}
.xbf_c00166{left:530.250000px;}
.xf1_c00166{left:532.950000px;}
.xd8_c00166{left:535.950000px;}
.xaa_c00166{left:537.600000px;}
.xe5_c00166{left:539.700000px;}
.xc8_c00166{left:540.750000px;}
.x129_c00166{left:542.700000px;}
.x123_c00166{left:544.950000px;}
.x110_c00166{left:546.300000px;}
.xdd_c00166{left:547.350000px;}
.x11f_c00166{left:550.200000px;}
.x131_c00166{left:553.200000px;}
.xf2_c00166{left:556.650000px;}
.xc0_c00166{left:559.050000px;}
.xec_c00166{left:561.150000px;}
.x12a_c00166{left:564.000000px;}
.xa5_c00166{left:565.800000px;}
.x115_c00166{left:568.650000px;}
.x13a_c00166{left:570.000000px;}
.xb9_c00166{left:572.700000px;}
.xfd_c00166{left:574.950000px;}
.xfc_c00166{left:576.750000px;}
.x120_c00166{left:577.950000px;}
.x114_c00166{left:579.300000px;}
.xce_c00166{left:583.350000px;}
.xc1_c00166{left:585.000000px;}
.xc9_c00166{left:587.250000px;}
.x127_c00166{left:589.200000px;}
.xd9_c00166{left:591.000000px;}
.xed_c00166{left:593.250000px;}
.xe2_c00166{left:594.750000px;}
.xf3_c00166{left:595.800000px;}
.xca_c00166{left:598.350000px;}
.xab_c00166{left:602.400000px;}
.x116_c00166{left:604.650000px;}
.x118_c00166{left:607.350000px;}
.x11b_c00166{left:608.850000px;}
.x137_c00166{left:611.550000px;}
.xb2_c00166{left:613.800000px;}
.xf4_c00166{left:614.850000px;}
.xac_c00166{left:616.500000px;}
.x10e_c00166{left:618.000000px;}
.xe6_c00166{left:619.200000px;}
.xd3_c00166{left:621.000000px;}
.xcf_c00166{left:623.250000px;}
.x111_c00166{left:624.750000px;}
.xf7_c00166{left:627.750000px;}
.x12d_c00166{left:631.350000px;}
.xb3_c00166{left:632.850000px;}
.xda_c00166{left:637.500000px;}
.xee_c00166{left:640.350000px;}
.xc2_c00166{left:642.900000px;}
.xba_c00166{left:645.000000px;}
.x132_c00166{left:646.350000px;}
.xa6_c00166{left:648.900000px;}
.xf8_c00166{left:652.650000px;}
.xd4_c00166{left:653.700000px;}
.xcb_c00166{left:655.200000px;}
.xfe_c00166{left:656.400000px;}
.x124_c00166{left:657.900000px;}
.x109_c00166{left:658.950000px;}
.x13b_c00166{left:660.000000px;}
.xc3_c00166{left:661.650000px;}
.x119_c00166{left:662.850000px;}
.xd0_c00166{left:666.450000px;}
.x11c_c00166{left:667.950000px;}
.x121_c00166{left:672.150000px;}
.xad_c00166{left:673.800000px;}
.xfa_c00166{left:675.900000px;}
.xb4_c00166{left:677.100000px;}
.xde_c00166{left:679.050000px;}
.x133_c00166{left:680.550000px;}
.xae_c00166{left:683.550000px;}
.xb5_c00166{left:684.600000px;}
.xff_c00166{left:686.250000px;}
.xef_c00166{left:687.450000px;}
.xfb_c00166{left:690.000000px;}
.xcc_c00166{left:691.950000px;}
.x122_c00166{left:693.450000px;}
.xa7_c00166{left:694.650000px;}
.xd1_c00166{left:697.350000px;}
.xdf_c00166{left:700.950000px;}
.xbb_c00166{left:702.300000px;}
.xdb_c00166{left:703.350000px;}
.xc4_c00166{left:704.850000px;}
.xd5_c00166{left:706.950000px;}
.x11a_c00166{left:708.600000px;}
.xea_c00166{left:710.550000px;}
.xb6_c00166{left:711.900000px;}
.xdc_c00166{left:713.400000px;}
.x134_c00166{left:715.500000px;}
.xbc_c00166{left:716.700000px;}
.xe8_c00166{left:720.600000px;}
.x11e_c00166{left:722.250000px;}
.x128_c00166{left:724.200000px;}
.x117_c00166{left:726.450000px;}
.xaf_c00166{left:727.500000px;}
.xf5_c00166{left:729.750000px;}
.xe3_c00166{left:730.800000px;}
.xb7_c00166{left:734.550000px;}
.x10a_c00166{left:736.050000px;}
.x135_c00166{left:737.400000px;}
.xc5_c00166{left:739.350000px;}
.xa8_c00166{left:740.700000px;}
.x104_c00166{left:741.750000px;}
.x107_c00166{left:743.400000px;}
.xbd_c00166{left:746.250000px;}
.x10b_c00166{left:748.650000px;}
.x13c_c00166{left:750.750000px;}
.x130_c00166{left:751.950000px;}
.x125_c00166{left:753.600000px;}
.xb0_c00166{left:755.550000px;}
.x2_c00166{left:756.750000px;}
.x10f_c00166{left:759.000000px;}
.xe9_c00166{left:760.200000px;}
.x105_c00166{left:765.150000px;}
.x138_c00166{left:767.250000px;}
.x100_c00166{left:768.300000px;}
.x12f_c00166{left:769.650000px;}
.x108_c00166{left:771.150000px;}
.xd6_c00166{left:772.500000px;}
.x13d_c00166{left:776.250000px;}
.xf6_c00166{left:779.100000px;}
.x11d_c00166{left:780.900000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws6_c00166{word-spacing:-7.746032pt;}
.ws0_c00166{word-spacing:-6.136693pt;}
.ws7_c00166{word-spacing:0.000000pt;}
.ws2_c00166{word-spacing:1.203513pt;}
.ws4_c00166{word-spacing:5.304582pt;}
.ws1_c00166{word-spacing:6.066747pt;}
.ws5_c00166{word-spacing:17.773012pt;}
.ws3_c00166{word-spacing:21.037037pt;}
._2_c00166{width:44.632708pt;}
._0_c00166{width:49.777778pt;}
._1_c00166{width:52.740741pt;}
._3_c00166{width:882.523682pt;}
.fs6_c00166{font-size:37.333333pt;}
.fs5_c00166{font-size:42.666667pt;}
.fs3_c00166{font-size:48.000000pt;}
.fs4_c00166{font-size:53.333333pt;}
.fs2_c00166{font-size:58.666667pt;}
.fs1_c00166{font-size:64.000000pt;}
.fs0_c00166{font-size:69.333333pt;}
.y0_c00166{bottom:0.000000pt;}
.y67_c00166{bottom:170.000000pt;}
.y37_c00166{bottom:170.266667pt;}
.y66_c00166{bottom:186.000000pt;}
.y36_c00166{bottom:186.533333pt;}
.y35_c00166{bottom:202.266667pt;}
.y34_c00166{bottom:213.733333pt;}
.y33_c00166{bottom:218.133333pt;}
.y65_c00166{bottom:220.133333pt;}
.y64_c00166{bottom:233.600000pt;}
.y32_c00166{bottom:233.866667pt;}
.y31_c00166{bottom:245.066667pt;}
.y30_c00166{bottom:249.866667pt;}
.y63_c00166{bottom:254.400000pt;}
.y2f_c00166{bottom:265.600000pt;}
.y62_c00166{bottom:270.400000pt;}
.y2e_c00166{bottom:284.800000pt;}
.y61_c00166{bottom:290.266667pt;}
.y2d_c00166{bottom:297.600000pt;}
.y60_c00166{bottom:306.266667pt;}
.y2c_c00166{bottom:311.333333pt;}
.y2b_c00166{bottom:327.066667pt;}
.y5f_c00166{bottom:333.466667pt;}
.y2a_c00166{bottom:343.333333pt;}
.y5e_c00166{bottom:357.066667pt;}
.y29_c00166{bottom:359.333333pt;}
.y28_c00166{bottom:375.066667pt;}
.y5d_c00166{bottom:380.533333pt;}
.y27_c00166{bottom:394.000000pt;}
.y5c_c00166{bottom:396.533333pt;}
.y26_c00166{bottom:410.266667pt;}
.y5b_c00166{bottom:412.266667pt;}
.y25_c00166{bottom:425.866667pt;}
.y5a_c00166{bottom:428.000000pt;}
.y24_c00166{bottom:441.866667pt;}
.y59_c00166{bottom:444.000000pt;}
.y23_c00166{bottom:457.600000pt;}
.y58_c00166{bottom:460.000000pt;}
.y22_c00166{bottom:473.333333pt;}
.y57_c00166{bottom:476.000000pt;}
.y21_c00166{bottom:489.333333pt;}
.y56_c00166{bottom:491.733333pt;}
.y55_c00166{bottom:507.466667pt;}
.y20_c00166{bottom:508.533333pt;}
.y54_c00166{bottom:523.466667pt;}
.y1f_c00166{bottom:524.800000pt;}
.y53_c00166{bottom:539.200000pt;}
.y1e_c00166{bottom:552.000000pt;}
.y52_c00166{bottom:555.200000pt;}
.y1d_c00166{bottom:568.000000pt;}
.y51_c00166{bottom:573.333333pt;}
.y50_c00166{bottom:586.800000pt;}
.y1c_c00166{bottom:587.466667pt;}
.y4f_c00166{bottom:600.933333pt;}
.y1b_c00166{bottom:603.466667pt;}
.y4e_c00166{bottom:616.933333pt;}
.y1a_c00166{bottom:619.200000pt;}
.y4d_c00166{bottom:633.333333pt;}
.y19_c00166{bottom:634.933333pt;}
.y4c_c00166{bottom:652.800000pt;}
.y18_c00166{bottom:654.266667pt;}
.y4b_c00166{bottom:668.666667pt;}
.y17_c00166{bottom:670.000000pt;}
.y4a_c00166{bottom:684.400000pt;}
.y16_c00166{bottom:686.000000pt;}
.y49_c00166{bottom:700.133333pt;}
.y15_c00166{bottom:701.733333pt;}
.y48_c00166{bottom:716.133333pt;}
.y14_c00166{bottom:717.466667pt;}
.y13_c00166{bottom:733.200000pt;}
.y47_c00166{bottom:735.333333pt;}
.y12_c00166{bottom:749.200000pt;}
.y46_c00166{bottom:752.000000pt;}
.y11_c00166{bottom:764.933333pt;}
.y45_c00166{bottom:779.200000pt;}
.y10_c00166{bottom:780.666667pt;}
.yf_c00166{bottom:796.666667pt;}
.y44_c00166{bottom:798.400000pt;}
.ye_c00166{bottom:812.400000pt;}
.y43_c00166{bottom:815.333333pt;}
.yd_c00166{bottom:828.133333pt;}
.y42_c00166{bottom:833.733333pt;}
.yc_c00166{bottom:843.866667pt;}
.y41_c00166{bottom:850.666667pt;}
.yb_c00166{bottom:861.466667pt;}
.y40_c00166{bottom:866.666667pt;}
.ya_c00166{bottom:875.200000pt;}
.y3f_c00166{bottom:882.400000pt;}
.y9_c00166{bottom:889.866667pt;}
.y3e_c00166{bottom:898.400000pt;}
.y8_c00166{bottom:909.200000pt;}
.y3d_c00166{bottom:914.133333pt;}
.y7_c00166{bottom:925.866667pt;}
.y3c_c00166{bottom:929.866667pt;}
.y6_c00166{bottom:942.133333pt;}
.y3b_c00166{bottom:947.466667pt;}
.y5_c00166{bottom:960.000000pt;}
.y3a_c00166{bottom:961.600000pt;}
.y4_c00166{bottom:976.933333pt;}
.y39_c00166{bottom:977.600000pt;}
.y3_c00166{bottom:992.666667pt;}
.y38_c00166{bottom:993.333333pt;}
.y1_c00166{bottom:1017.333333pt;}
.y2_c00166{bottom:1018.000000pt;}
.h8_c00166{height:37.333333pt;}
.h7_c00166{height:42.666667pt;}
.h5_c00166{height:48.000000pt;}
.h6_c00166{height:53.333333pt;}
.h4_c00166{height:58.666667pt;}
.h3_c00166{height:64.000000pt;}
.h2_c00166{height:69.333333pt;}
.h0_c00166{height:1133.760009pt;}
.h1_c00166{height:1134.000000pt;}
.w1_c00166{width:856.000000pt;}
.w0_c00166{width:856.319987pt;}
.x0_c00166{left:0.000000pt;}
.x81_c00166{left:76.133333pt;}
.x66_c00166{left:77.466667pt;}
.x24_c00166{left:78.666667pt;}
.x17_c00166{left:79.600000pt;}
.xc_c00166{left:86.800000pt;}
.x7d_c00166{left:88.933333pt;}
.x8e_c00166{left:90.933333pt;}
.x2d_c00166{left:93.733333pt;}
.x73_c00166{left:94.933333pt;}
.x3_c00166{left:96.000000pt;}
.x15_c00166{left:96.933333pt;}
.x70_c00166{left:98.800000pt;}
.x18_c00166{left:102.266667pt;}
.x34_c00166{left:105.733333pt;}
.x8f_c00166{left:106.933333pt;}
.x52_c00166{left:113.066667pt;}
.x16_c00166{left:118.000000pt;}
.x19_c00166{left:119.200000pt;}
.x7c_c00166{left:120.400000pt;}
.x97_c00166{left:122.666667pt;}
.x57_c00166{left:124.133333pt;}
.x3c_c00166{left:125.333333pt;}
.xd_c00166{left:127.066667pt;}
.x47_c00166{left:128.000000pt;}
.x35_c00166{left:132.000000pt;}
.x4_c00166{left:133.466667pt;}
.x25_c00166{left:134.666667pt;}
.x4c_c00166{left:136.933333pt;}
.x1d_c00166{left:138.666667pt;}
.x41_c00166{left:140.800000pt;}
.x6e_c00166{left:142.000000pt;}
.x64_c00166{left:143.466667pt;}
.x98_c00166{left:145.066667pt;}
.x6c_c00166{left:146.933333pt;}
.x77_c00166{left:148.133333pt;}
.x42_c00166{left:149.066667pt;}
.x5_c00166{left:150.133333pt;}
.x53_c00166{left:151.733333pt;}
.x92_c00166{left:153.600000pt;}
.x1e_c00166{left:155.600000pt;}
.xe_c00166{left:158.400000pt;}
.x3d_c00166{left:159.600000pt;}
.x50_c00166{left:161.333333pt;}
.x23_c00166{left:163.066667pt;}
.x86_c00166{left:165.066667pt;}
.x9a_c00166{left:168.000000pt;}
.x2e_c00166{left:169.600000pt;}
.x5c_c00166{left:170.666667pt;}
.x96_c00166{left:171.733333pt;}
.x60_c00166{left:173.066667pt;}
.xf_c00166{left:175.333333pt;}
.x2f_c00166{left:176.933333pt;}
.x6a_c00166{left:177.866667pt;}
.x6_c00166{left:179.200000pt;}
.x82_c00166{left:181.066667pt;}
.x30_c00166{left:182.666667pt;}
.x7e_c00166{left:184.266667pt;}
.x5a_c00166{left:186.000000pt;}
.x72_c00166{left:188.133333pt;}
.x31_c00166{left:189.333333pt;}
.x10_c00166{left:192.000000pt;}
.x8b_c00166{left:193.066667pt;}
.x26_c00166{left:194.800000pt;}
.x7_c00166{left:196.133333pt;}
.x65_c00166{left:197.866667pt;}
.x74_c00166{left:199.600000pt;}
.xa1_c00166{left:202.800000pt;}
.x9b_c00166{left:203.866667pt;}
.x79_c00166{left:205.333333pt;}
.x5d_c00166{left:208.400000pt;}
.x4d_c00166{left:209.600000pt;}
.x87_c00166{left:210.533333pt;}
.x68_c00166{left:212.000000pt;}
.x11_c00166{left:213.733333pt;}
.x6d_c00166{left:215.466667pt;}
.x54_c00166{left:216.666667pt;}
.x48_c00166{left:218.666667pt;}
.x38_c00166{left:219.600000pt;}
.x5e_c00166{left:220.933333pt;}
.x7f_c00166{left:224.266667pt;}
.x1f_c00166{left:226.266667pt;}
.x49_c00166{left:227.600000pt;}
.x12_c00166{left:229.733333pt;}
.x27_c00166{left:231.600000pt;}
.x61_c00166{left:234.133333pt;}
.x43_c00166{left:236.400000pt;}
.x99_c00166{left:237.333333pt;}
.x7a_c00166{left:239.866667pt;}
.x4a_c00166{left:241.333333pt;}
.x20_c00166{left:244.133333pt;}
.x28_c00166{left:250.133333pt;}
.x3e_c00166{left:251.733333pt;}
.x13_c00166{left:253.466667pt;}
.x85_c00166{left:257.866667pt;}
.x39_c00166{left:259.333333pt;}
.x44_c00166{left:261.733333pt;}
.x8_c00166{left:264.000000pt;}
.x29_c00166{left:265.866667pt;}
.x9d_c00166{left:267.333333pt;}
.x75_c00166{left:270.000000pt;}
.x55_c00166{left:271.066667pt;}
.x4e_c00166{left:272.000000pt;}
.x6f_c00166{left:274.133333pt;}
.x3a_c00166{left:276.666667pt;}
.x1a_c00166{left:279.200000pt;}
.x7b_c00166{left:280.400000pt;}
.x93_c00166{left:281.866667pt;}
.x69_c00166{left:285.600000pt;}
.x58_c00166{left:288.000000pt;}
.x91_c00166{left:289.600000pt;}
.x88_c00166{left:290.533333pt;}
.x2a_c00166{left:292.133333pt;}
.x8c_c00166{left:293.600000pt;}
.x9c_c00166{left:295.333333pt;}
.x1_c00166{left:296.666667pt;}
.x9_c00166{left:297.600000pt;}
.x21_c00166{left:300.133333pt;}
.x62_c00166{left:303.200000pt;}
.x94_c00166{left:304.266667pt;}
.x4f_c00166{left:305.333333pt;}
.x71_c00166{left:306.533333pt;}
.x2b_c00166{left:308.400000pt;}
.x8d_c00166{left:309.600000pt;}
.x45_c00166{left:311.066667pt;}
.x6b_c00166{left:313.066667pt;}
.x9f_c00166{left:314.533333pt;}
.x3f_c00166{left:315.466667pt;}
.x32_c00166{left:316.666667pt;}
.x56_c00166{left:317.733333pt;}
.x63_c00166{left:319.466667pt;}
.x1b_c00166{left:320.800000pt;}
.x89_c00166{left:322.533333pt;}
.x76_c00166{left:324.133333pt;}
.x3b_c00166{left:325.333333pt;}
.x95_c00166{left:326.666667pt;}
.x67_c00166{left:329.200000pt;}
.xa_c00166{left:330.933333pt;}
.x46_c00166{left:332.133333pt;}
.x9e_c00166{left:333.866667pt;}
.x59_c00166{left:335.333333pt;}
.x14_c00166{left:336.666667pt;}
.x5f_c00166{left:338.400000pt;}
.x51_c00166{left:339.333333pt;}
.x83_c00166{left:340.666667pt;}
.x33_c00166{left:343.200000pt;}
.x36_c00166{left:344.133333pt;}
.x5b_c00166{left:345.466667pt;}
.x78_c00166{left:349.733333pt;}
.x84_c00166{left:351.200000pt;}
.x80_c00166{left:352.800000pt;}
.xa0_c00166{left:355.200000pt;}
.x40_c00166{left:358.000000pt;}
.x4b_c00166{left:362.266667pt;}
.xb_c00166{left:363.600000pt;}
.x2c_c00166{left:365.600000pt;}
.x37_c00166{left:367.866667pt;}
.x1c_c00166{left:368.800000pt;}
.x90_c00166{left:369.733333pt;}
.x8a_c00166{left:372.133333pt;}
.x22_c00166{left:375.600000pt;}
.xe0_c00166{left:397.733333pt;}
.x12b_c00166{left:399.333333pt;}
.x12e_c00166{left:400.666667pt;}
.x101_c00166{left:410.266667pt;}
.xf0_c00166{left:412.400000pt;}
.xc6_c00166{left:413.466667pt;}
.xa2_c00166{left:414.400000pt;}
.x139_c00166{left:415.733333pt;}
.x106_c00166{left:422.800000pt;}
.xa3_c00166{left:425.866667pt;}
.xa9_c00166{left:429.866667pt;}
.x112_c00166{left:431.466667pt;}
.x10c_c00166{left:434.400000pt;}
.xf9_c00166{left:435.600000pt;}
.xe4_c00166{left:437.066667pt;}
.x136_c00166{left:438.000000pt;}
.xa4_c00166{left:442.133333pt;}
.xcd_c00166{left:443.600000pt;}
.xd7_c00166{left:446.666667pt;}
.xe1_c00166{left:448.933333pt;}
.xd2_c00166{left:450.000000pt;}
.xbe_c00166{left:451.466667pt;}
.x10d_c00166{left:452.666667pt;}
.x12c_c00166{left:454.133333pt;}
.x113_c00166{left:457.333333pt;}
.xc7_c00166{left:459.866667pt;}
.x102_c00166{left:461.200000pt;}
.x126_c00166{left:462.266667pt;}
.xeb_c00166{left:463.600000pt;}
.xb8_c00166{left:464.533333pt;}
.xb1_c00166{left:465.866667pt;}
.x103_c00166{left:467.600000pt;}
.xe7_c00166{left:469.333333pt;}
.xbf_c00166{left:471.333333pt;}
.xf1_c00166{left:473.733333pt;}
.xd8_c00166{left:476.400000pt;}
.xaa_c00166{left:477.866667pt;}
.xe5_c00166{left:479.733333pt;}
.xc8_c00166{left:480.666667pt;}
.x129_c00166{left:482.400000pt;}
.x123_c00166{left:484.400000pt;}
.x110_c00166{left:485.600000pt;}
.xdd_c00166{left:486.533333pt;}
.x11f_c00166{left:489.066667pt;}
.x131_c00166{left:491.733333pt;}
.xf2_c00166{left:494.800000pt;}
.xc0_c00166{left:496.933333pt;}
.xec_c00166{left:498.800000pt;}
.x12a_c00166{left:501.333333pt;}
.xa5_c00166{left:502.933333pt;}
.x115_c00166{left:505.466667pt;}
.x13a_c00166{left:506.666667pt;}
.xb9_c00166{left:509.066667pt;}
.xfd_c00166{left:511.066667pt;}
.xfc_c00166{left:512.666667pt;}
.x120_c00166{left:513.733333pt;}
.x114_c00166{left:514.933333pt;}
.xce_c00166{left:518.533333pt;}
.xc1_c00166{left:520.000000pt;}
.xc9_c00166{left:522.000000pt;}
.x127_c00166{left:523.733333pt;}
.xd9_c00166{left:525.333333pt;}
.xed_c00166{left:527.333333pt;}
.xe2_c00166{left:528.666667pt;}
.xf3_c00166{left:529.600000pt;}
.xca_c00166{left:531.866667pt;}
.xab_c00166{left:535.466667pt;}
.x116_c00166{left:537.466667pt;}
.x118_c00166{left:539.866667pt;}
.x11b_c00166{left:541.200000pt;}
.x137_c00166{left:543.600000pt;}
.xb2_c00166{left:545.600000pt;}
.xf4_c00166{left:546.533333pt;}
.xac_c00166{left:548.000000pt;}
.x10e_c00166{left:549.333333pt;}
.xe6_c00166{left:550.400000pt;}
.xd3_c00166{left:552.000000pt;}
.xcf_c00166{left:554.000000pt;}
.x111_c00166{left:555.333333pt;}
.xf7_c00166{left:558.000000pt;}
.x12d_c00166{left:561.200000pt;}
.xb3_c00166{left:562.533333pt;}
.xda_c00166{left:566.666667pt;}
.xee_c00166{left:569.200000pt;}
.xc2_c00166{left:571.466667pt;}
.xba_c00166{left:573.333333pt;}
.x132_c00166{left:574.533333pt;}
.xa6_c00166{left:576.800000pt;}
.xf8_c00166{left:580.133333pt;}
.xd4_c00166{left:581.066667pt;}
.xcb_c00166{left:582.400000pt;}
.xfe_c00166{left:583.466667pt;}
.x124_c00166{left:584.800000pt;}
.x109_c00166{left:585.733333pt;}
.x13b_c00166{left:586.666667pt;}
.xc3_c00166{left:588.133333pt;}
.x119_c00166{left:589.200000pt;}
.xd0_c00166{left:592.400000pt;}
.x11c_c00166{left:593.733333pt;}
.x121_c00166{left:597.466667pt;}
.xad_c00166{left:598.933333pt;}
.xfa_c00166{left:600.800000pt;}
.xb4_c00166{left:601.866667pt;}
.xde_c00166{left:603.600000pt;}
.x133_c00166{left:604.933333pt;}
.xae_c00166{left:607.600000pt;}
.xb5_c00166{left:608.533333pt;}
.xff_c00166{left:610.000000pt;}
.xef_c00166{left:611.066667pt;}
.xfb_c00166{left:613.333333pt;}
.xcc_c00166{left:615.066667pt;}
.x122_c00166{left:616.400000pt;}
.xa7_c00166{left:617.466667pt;}
.xd1_c00166{left:619.866667pt;}
.xdf_c00166{left:623.066667pt;}
.xbb_c00166{left:624.266667pt;}
.xdb_c00166{left:625.200000pt;}
.xc4_c00166{left:626.533333pt;}
.xd5_c00166{left:628.400000pt;}
.x11a_c00166{left:629.866667pt;}
.xea_c00166{left:631.600000pt;}
.xb6_c00166{left:632.800000pt;}
.xdc_c00166{left:634.133333pt;}
.x134_c00166{left:636.000000pt;}
.xbc_c00166{left:637.066667pt;}
.xe8_c00166{left:640.533333pt;}
.x11e_c00166{left:642.000000pt;}
.x128_c00166{left:643.733333pt;}
.x117_c00166{left:645.733333pt;}
.xaf_c00166{left:646.666667pt;}
.xf5_c00166{left:648.666667pt;}
.xe3_c00166{left:649.600000pt;}
.xb7_c00166{left:652.933333pt;}
.x10a_c00166{left:654.266667pt;}
.x135_c00166{left:655.466667pt;}
.xc5_c00166{left:657.200000pt;}
.xa8_c00166{left:658.400000pt;}
.x104_c00166{left:659.333333pt;}
.x107_c00166{left:660.800000pt;}
.xbd_c00166{left:663.333333pt;}
.x10b_c00166{left:665.466667pt;}
.x13c_c00166{left:667.333333pt;}
.x130_c00166{left:668.400000pt;}
.x125_c00166{left:669.866667pt;}
.xb0_c00166{left:671.600000pt;}
.x2_c00166{left:672.666667pt;}
.x10f_c00166{left:674.666667pt;}
.xe9_c00166{left:675.733333pt;}
.x105_c00166{left:680.133333pt;}
.x138_c00166{left:682.000000pt;}
.x100_c00166{left:682.933333pt;}
.x12f_c00166{left:684.133333pt;}
.x108_c00166{left:685.466667pt;}
.xd6_c00166{left:686.666667pt;}
.x13d_c00166{left:690.000000pt;}
.xf6_c00166{left:692.533333pt;}
.x11d_c00166{left:694.133333pt;}
}





/* 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_c00167 {
    display:none;
  }
  .loading-indicator_c00167.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00167 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_c00167 { 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_c00167" -> "#page-container .classname_c00167")
 */
.pf_c00167 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00167 { /* 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_c00167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00167 { /* 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_c00167 { /* 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_c00167 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00167 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00167 {overflow:visible;}
  }
}
.c_c00167 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00167 { /* 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_c00167:after { /* webkit #35443 */
  content: '';
}
.t_c00167:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00167 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 */
}
.__c00167 { /* 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_c00167 { /* info for Javascript */
  display:none;
}
.l_c00167 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00167 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00167 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00167: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_c00167 {
    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_c00167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00167.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_c00167 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00167;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.000000;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;}
.mf0_c00167{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m115_c00167{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00167{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00167{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00167{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m14_c00167{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00167{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m75_c00167{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.md_c00167{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.me1_c00167{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md3_c00167{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf_c00167{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00167{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me_c00167{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m39_c00167{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00167{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m104_c00167{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m15_c00167{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00167{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m113_c00167{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.me2_c00167{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m102_c00167{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m80_c00167{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00167{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.med_c00167{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m114_c00167{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m84_c00167{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00167{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m71_c00167{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md4_c00167{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m16_c00167{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.md2_c00167{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00167{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00167{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m31_c00167{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00167{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m9_c00167{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m48_c00167{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00167{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00167{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00167{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00167{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mba_c00167{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00167{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00167{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m34_c00167{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m69_c00167{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m65_c00167{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00167{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m85_c00167{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00167{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m70_c00167{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00167{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m78_c00167{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00167{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mef_c00167{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00167{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m42_c00167{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m56_c00167{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m30_c00167{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00167{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00167{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00167{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me6_c00167{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m98_c00167{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md0_c00167{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00167{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m88_c00167{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m108_c00167{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00167{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md6_c00167{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00167{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00167{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m22_c00167{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m74_c00167{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00167{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00167{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00167{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m4_c00167{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mff_c00167{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00167{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8_c00167{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m76_c00167{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m66_c00167{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m83_c00167{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00167{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00167{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00167{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m64_c00167{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7_c00167{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mda_c00167{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m60_c00167{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00167{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00167{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00167{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00167{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m24_c00167{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00167{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00167{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m94_c00167{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m73_c00167{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00167{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m100_c00167{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00167{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00167{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00167{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m62_c00167{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.maa_c00167{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mee_c00167{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me9_c00167{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00167{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00167{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00167{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00167{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00167{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mab_c00167{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m23_c00167{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mde_c00167{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00167{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00167{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m40_c00167{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00167{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00167{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00167{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mec_c00167{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m37_c00167{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m33_c00167{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb_c00167{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mac_c00167{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m41_c00167{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m86_c00167{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00167{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00167{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00167{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m0_c00167{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00167{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m47_c00167{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mad_c00167{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m25_c00167{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.meb_c00167{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m45_c00167{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m52_c00167{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m29_c00167{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m96_c00167{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00167{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00167{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m26_c00167{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00167{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m11_c00167{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m36_c00167{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00167{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m91_c00167{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00167{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m107_c00167{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m35_c00167{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma_c00167{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00167{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m46_c00167{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00167{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00167{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m27_c00167{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00167{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m90_c00167{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me4_c00167{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00167{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m95_c00167{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m87_c00167{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m50_c00167{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5_c00167{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m59_c00167{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m32_c00167{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00167{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00167{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md5_c00167{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00167{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mea_c00167{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me7_c00167{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00167{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m49_c00167{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00167{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00167{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m97_c00167{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00167{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m51_c00167{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00167{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m106_c00167{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00167{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00167{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00167{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00167{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md7_c00167{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00167{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m44_c00167{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m93_c00167{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m43_c00167{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m55_c00167{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m20_c00167{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me8_c00167{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00167{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m77_c00167{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m21_c00167{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m38_c00167{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m67_c00167{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00167{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mae_c00167{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m79_c00167{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m89_c00167{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m82_c00167{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m17_c00167{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3_c00167{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00167{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00167{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m99_c00167{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00167{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m72_c00167{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00167{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00167{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00167{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m68_c00167{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me0_c00167{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m28_c00167{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md9_c00167{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m12_c00167{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m57_c00167{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00167{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00167{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00167{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m92_c00167{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);}
.mcc_c00167{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00167{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10_c00167{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m101_c00167{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00167{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mce_c00167{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00167{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2_c00167{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.maf_c00167{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me3_c00167{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m105_c00167{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m103_c00167{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00167{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m18_c00167{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00167{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00167{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00167{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00167{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00167{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m112_c00167{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m54_c00167{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mca_c00167{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mc_c00167{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00167{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00167{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m19_c00167{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00167{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m61_c00167{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00167{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00167{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00167{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m63_c00167{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me5_c00167{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m13_c00167{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00167{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m116_c00167{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m58_c00167{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m53_c00167{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00167{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m109_c00167{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.md1_c00167{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00167{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00167{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m110_c00167{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m81_c00167{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00167{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.md8_c00167{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00167{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.398750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398750,0.000000,0.000000,0.250000,0,0);}
.m111_c00167{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls1_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:53.428954px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{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__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00167{word-spacing:-80.428954px;}
.ws9_c00167{word-spacing:-10.238095px;}
.ws8_c00167{word-spacing:-5.505041px;}
.wse_c00167{word-spacing:-1.306748px;}
.ws4_c00167{word-spacing:-0.131579px;}
.ws11_c00167{word-spacing:0.000000px;}
.wsa_c00167{word-spacing:1.470120px;}
.ws10_c00167{word-spacing:15.168901px;}
.ws1_c00167{word-spacing:19.994638px;}
.ws3_c00167{word-spacing:23.211796px;}
.wsb_c00167{word-spacing:26.428954px;}
.wsf_c00167{word-spacing:32.250000px;}
.wsd_c00167{word-spacing:34.642857px;}
.ws5_c00167{word-spacing:36.000000px;}
.ws0_c00167{word-spacing:39.750000px;}
.ws6_c00167{word-spacing:45.375000px;}
.wsc_c00167{word-spacing:59.721619px;}
.ws7_c00167{word-spacing:73.012128px;}
._4_c00167{margin-left:-53.428954px;}
._7_c00167{width:46.994638px;}
._3_c00167{width:50.211796px;}
._1_c00167{width:53.428954px;}
._0_c00167{width:58.254692px;}
._5_c00167{width:66.750000px;}
._6_c00167{width:72.375000px;}
._2_c00167{width:281.847185px;}
._8_c00167{width:447.530831px;}
.fc0_c00167{color:transparent;}
.fs5_c00167{font-size:30.000000px;}
.fs3_c00167{font-size:54.000000px;}
.fs2_c00167{font-size:60.000000px;}
.fs0_c00167{font-size:66.000000px;}
.fs4_c00167{font-size:72.000000px;}
.fs1_c00167{font-size:90.000000px;}
.y0_c00167{bottom:0.000000px;}
.y68_c00167{bottom:174.000000px;}
.y67_c00167{bottom:192.300000px;}
.y34_c00167{bottom:196.950000px;}
.y66_c00167{bottom:207.000000px;}
.y33_c00167{bottom:214.200000px;}
.y65_c00167{bottom:221.700000px;}
.y32_c00167{bottom:245.550000px;}
.y64_c00167{bottom:246.600000px;}
.y31_c00167{bottom:263.550000px;}
.y63_c00167{bottom:264.300000px;}
.y62_c00167{bottom:282.300000px;}
.y30_c00167{bottom:289.800000px;}
.y61_c00167{bottom:299.850000px;}
.y2f_c00167{bottom:316.200000px;}
.y60_c00167{bottom:318.150000px;}
.y2e_c00167{bottom:333.900000px;}
.y5f_c00167{bottom:335.850000px;}
.y2d_c00167{bottom:351.900000px;}
.y5e_c00167{bottom:353.550000px;}
.y2c_c00167{bottom:369.900000px;}
.y5d_c00167{bottom:371.550000px;}
.y2b_c00167{bottom:387.900000px;}
.y5c_c00167{bottom:388.500000px;}
.y2a_c00167{bottom:405.600000px;}
.y5b_c00167{bottom:411.000000px;}
.y29_c00167{bottom:423.600000px;}
.y5a_c00167{bottom:428.700000px;}
.y28_c00167{bottom:441.600000px;}
.y27_c00167{bottom:459.300000px;}
.y59_c00167{bottom:459.750000px;}
.y26_c00167{bottom:477.000000px;}
.y58_c00167{bottom:478.050000px;}
.y25_c00167{bottom:496.500000px;}
.y57_c00167{bottom:499.950000px;}
.y24_c00167{bottom:512.700000px;}
.y56_c00167{bottom:517.950000px;}
.y23_c00167{bottom:530.700000px;}
.y55_c00167{bottom:535.650000px;}
.y22_c00167{bottom:548.250000px;}
.y54_c00167{bottom:557.700000px;}
.y21_c00167{bottom:566.250000px;}
.y53_c00167{bottom:575.400000px;}
.y20_c00167{bottom:583.950000px;}
.y52_c00167{bottom:593.400000px;}
.y1f_c00167{bottom:601.500000px;}
.y51_c00167{bottom:611.100000px;}
.y1e_c00167{bottom:625.950000px;}
.y50_c00167{bottom:629.100000px;}
.y1d_c00167{bottom:641.100000px;}
.y4f_c00167{bottom:646.800000px;}
.y1c_c00167{bottom:657.300000px;}
.y4e_c00167{bottom:664.800000px;}
.y1b_c00167{bottom:680.850000px;}
.y4d_c00167{bottom:682.500000px;}
.y1a_c00167{bottom:698.100000px;}
.y4c_c00167{bottom:703.050000px;}
.y19_c00167{bottom:716.100000px;}
.y4b_c00167{bottom:717.600000px;}
.y4a_c00167{bottom:732.300000px;}
.y18_c00167{bottom:738.150000px;}
.y49_c00167{bottom:752.250000px;}
.y17_c00167{bottom:755.850000px;}
.y48_c00167{bottom:769.950000px;}
.y16_c00167{bottom:773.850000px;}
.y47_c00167{bottom:787.650000px;}
.y15_c00167{bottom:791.550000px;}
.y14_c00167{bottom:809.250000px;}
.y46_c00167{bottom:810.450000px;}
.y13_c00167{bottom:836.250000px;}
.y45_c00167{bottom:842.850000px;}
.y44_c00167{bottom:845.700000px;}
.y12_c00167{bottom:857.850000px;}
.y43_c00167{bottom:864.000000px;}
.y11_c00167{bottom:875.550000px;}
.y42_c00167{bottom:881.700000px;}
.y10_c00167{bottom:893.550000px;}
.y41_c00167{bottom:903.900000px;}
.yf_c00167{bottom:915.750000px;}
.y40_c00167{bottom:921.600000px;}
.ye_c00167{bottom:933.450000px;}
.yd_c00167{bottom:950.850000px;}
.y3e_c00167{bottom:951.150000px;}
.y3d_c00167{bottom:965.850000px;}
.yc_c00167{bottom:968.850000px;}
.y3c_c00167{bottom:983.850000px;}
.yb_c00167{bottom:986.850000px;}
.y3f_c00167{bottom:1000.050000px;}
.ya_c00167{bottom:1004.550000px;}
.y3b_c00167{bottom:1005.900000px;}
.y9_c00167{bottom:1022.250000px;}
.y3a_c00167{bottom:1023.900000px;}
.y8_c00167{bottom:1039.950000px;}
.y39_c00167{bottom:1041.900000px;}
.y7_c00167{bottom:1057.950000px;}
.y38_c00167{bottom:1063.800000px;}
.y6_c00167{bottom:1075.650000px;}
.y37_c00167{bottom:1081.500000px;}
.y5_c00167{bottom:1096.500000px;}
.y36_c00167{bottom:1103.700000px;}
.y4_c00167{bottom:1110.600000px;}
.y35_c00167{bottom:1121.400000px;}
.y3_c00167{bottom:1126.050000px;}
.y2_c00167{bottom:1149.450000px;}
.y1_c00167{bottom:1150.500000px;}
.h7_c00167{height:30.000000px;}
.h5_c00167{height:54.000000px;}
.h4_c00167{height:60.000000px;}
.h2_c00167{height:66.000000px;}
.h6_c00167{height:72.000000px;}
.h3_c00167{height:90.000000px;}
.h1_c00167{height:1268.250000px;}
.h0_c00167{height:1268.279937px;}
.w1_c00167{width:963.000000px;}
.w0_c00167{width:963.359985px;}
.x0_c00167{left:0.000000px;}
.x98_c00167{left:174.600000px;}
.x94_c00167{left:175.650000px;}
.x58_c00167{left:178.500000px;}
.x3_c00167{left:179.700000px;}
.x1_c00167{left:181.500000px;}
.x9b_c00167{left:191.250000px;}
.x56_c00167{left:192.450000px;}
.x26_c00167{left:193.800000px;}
.xd_c00167{left:195.000000px;}
.x90_c00167{left:196.050000px;}
.x51_c00167{left:197.100000px;}
.x2e_c00167{left:198.300000px;}
.x72_c00167{left:206.850000px;}
.x18_c00167{left:208.950000px;}
.x27_c00167{left:216.150000px;}
.x57_c00167{left:219.750000px;}
.x59_c00167{left:222.000000px;}
.x32_c00167{left:225.000000px;}
.x86_c00167{left:226.950000px;}
.x7e_c00167{left:229.350000px;}
.x2f_c00167{left:231.750000px;}
.x38_c00167{left:233.100000px;}
.x19_c00167{left:238.500000px;}
.x62_c00167{left:240.450000px;}
.x4_c00167{left:241.950000px;}
.x7c_c00167{left:244.050000px;}
.x28_c00167{left:247.500000px;}
.xe_c00167{left:249.750000px;}
.x47_c00167{left:252.000000px;}
.x83_c00167{left:253.650000px;}
.xf_c00167{left:257.250000px;}
.x35_c00167{left:260.550000px;}
.x10_c00167{left:264.450000px;}
.x3c_c00167{left:265.800000px;}
.x99_c00167{left:267.450000px;}
.x29_c00167{left:269.400000px;}
.x69_c00167{left:271.050000px;}
.x48_c00167{left:273.300000px;}
.x42_c00167{left:276.150000px;}
.x33_c00167{left:277.200000px;}
.x11_c00167{left:278.850000px;}
.x3f_c00167{left:283.500000px;}
.x79_c00167{left:285.150000px;}
.x39_c00167{left:287.100000px;}
.x5f_c00167{left:289.650000px;}
.x4e_c00167{left:291.300000px;}
.x92_c00167{left:292.650000px;}
.x6a_c00167{left:293.700000px;}
.x84_c00167{left:295.350000px;}
.x95_c00167{left:296.550000px;}
.x2a_c00167{left:298.200000px;}
.x6b_c00167{left:300.150000px;}
.x8f_c00167{left:301.200000px;}
.x1a_c00167{left:303.300000px;}
.x8e_c00167{left:304.350000px;}
.x63_c00167{left:305.550000px;}
.x5_c00167{left:308.250000px;}
.x1b_c00167{left:310.200000px;}
.x7f_c00167{left:311.550000px;}
.x21_c00167{left:314.700000px;}
.x89_c00167{left:315.750000px;}
.x1c_c00167{left:317.400000px;}
.x53_c00167{left:319.500000px;}
.x96_c00167{left:321.000000px;}
.x73_c00167{left:322.350000px;}
.x3d_c00167{left:324.900000px;}
.x49_c00167{left:326.550000px;}
.x74_c00167{left:328.800000px;}
.x1d_c00167{left:331.800000px;}
.x5a_c00167{left:335.400000px;}
.x6c_c00167{left:336.450000px;}
.x43_c00167{left:337.650000px;}
.x87_c00167{left:339.150000px;}
.x3a_c00167{left:341.400000px;}
.x22_c00167{left:344.250000px;}
.x85_c00167{left:346.650000px;}
.x64_c00167{left:347.700000px;}
.x6_c00167{left:350.400000px;}
.x1e_c00167{left:353.250000px;}
.x7d_c00167{left:355.650000px;}
.x2b_c00167{left:357.150000px;}
.x6d_c00167{left:358.200000px;}
.x1f_c00167{left:360.450000px;}
.x7a_c00167{left:361.950000px;}
.x76_c00167{left:364.950000px;}
.x12_c00167{left:366.900000px;}
.x7_c00167{left:369.150000px;}
.x52_c00167{left:370.350000px;}
.x60_c00167{left:372.750000px;}
.x13_c00167{left:374.100000px;}
.x5b_c00167{left:376.500000px;}
.x30_c00167{left:378.600000px;}
.x6e_c00167{left:379.800000px;}
.x77_c00167{left:381.150000px;}
.x44_c00167{left:384.150000px;}
.x65_c00167{left:385.500000px;}
.x8_c00167{left:386.850000px;}
.x14_c00167{left:388.500000px;}
.x6f_c00167{left:394.500000px;}
.x81_c00167{left:396.600000px;}
.x8c_c00167{left:399.750000px;}
.x97_c00167{left:401.250000px;}
.x4a_c00167{left:402.600000px;}
.x23_c00167{left:405.450000px;}
.x2c_c00167{left:407.850000px;}
.x5c_c00167{left:409.200000px;}
.x34_c00167{left:410.400000px;}
.x78_c00167{left:412.500000px;}
.x4f_c00167{left:414.150000px;}
.x75_c00167{left:415.950000px;}
.x66_c00167{left:417.150000px;}
.x9_c00167{left:418.950000px;}
.x2_c00167{left:421.950000px;}
.x93_c00167{left:426.000000px;}
.x4b_c00167{left:427.500000px;}
.x45_c00167{left:429.450000px;}
.x80_c00167{left:430.800000px;}
.x67_c00167{left:434.850000px;}
.xa_c00167{left:436.650000px;}
.x8a_c00167{left:437.700000px;}
.x5d_c00167{left:439.050000px;}
.x61_c00167{left:440.850000px;}
.x70_c00167{left:442.800000px;}
.x15_c00167{left:444.300000px;}
.x40_c00167{left:445.650000px;}
.x4c_c00167{left:447.600000px;}
.x46_c00167{left:448.950000px;}
.x54_c00167{left:450.450000px;}
.x50_c00167{left:451.950000px;}
.x31_c00167{left:453.900000px;}
.x82_c00167{left:456.300000px;}
.x24_c00167{left:457.950000px;}
.x5e_c00167{left:459.300000px;}
.x88_c00167{left:463.050000px;}
.x36_c00167{left:465.450000px;}
.xb_c00167{left:467.250000px;}
.x3e_c00167{left:468.600000px;}
.x3b_c00167{left:469.650000px;}
.x71_c00167{left:471.900000px;}
.x16_c00167{left:474.150000px;}
.x20_c00167{left:475.650000px;}
.x9a_c00167{left:478.950000px;}
.x37_c00167{left:480.150000px;}
.x8d_c00167{left:483.300000px;}
.x41_c00167{left:484.500000px;}
.x25_c00167{left:487.500000px;}
.x8b_c00167{left:489.600000px;}
.x91_c00167{left:492.600000px;}
.x4d_c00167{left:494.400000px;}
.x55_c00167{left:496.950000px;}
.x2d_c00167{left:498.150000px;}
.x68_c00167{left:499.350000px;}
.xc_c00167{left:500.700000px;}
.x17_c00167{left:502.650000px;}
.x7b_c00167{left:520.350000px;}
.x12f_c00167{left:533.100000px;}
.x114_c00167{left:534.300000px;}
.xaa_c00167{left:535.650000px;}
.x132_c00167{left:547.350000px;}
.xfb_c00167{left:549.150000px;}
.x11f_c00167{left:550.650000px;}
.xc3_c00167{left:551.850000px;}
.xa2_c00167{left:553.350000px;}
.xe6_c00167{left:559.500000px;}
.x105_c00167{left:562.350000px;}
.x137_c00167{left:564.750000px;}
.x125_c00167{left:568.800000px;}
.xcf_c00167{left:570.900000px;}
.x9c_c00167{left:572.400000px;}
.xc4_c00167{left:574.950000px;}
.xa3_c00167{left:576.750000px;}
.x12d_c00167{left:577.800000px;}
.xab_c00167{left:579.150000px;}
.x10e_c00167{left:580.950000px;}
.xb2_c00167{left:583.050000px;}
.xba_c00167{left:585.300000px;}
.xe4_c00167{left:586.350000px;}
.x109_c00167{left:589.200000px;}
.xd6_c00167{left:591.750000px;}
.xeb_c00167{left:593.850000px;}
.xf4_c00167{left:595.800000px;}
.xf3_c00167{left:599.250000px;}
.x11c_c00167{left:600.450000px;}
.xb3_c00167{left:603.150000px;}
.x133_c00167{left:604.950000px;}
.xfc_c00167{left:606.450000px;}
.x134_c00167{left:611.850000px;}
.xa4_c00167{left:614.550000px;}
.xcb_c00167{left:615.600000px;}
.x9d_c00167{left:617.100000px;}
.xb4_c00167{left:618.150000px;}
.x121_c00167{left:619.500000px;}
.xfd_c00167{left:621.150000px;}
.xe5_c00167{left:622.650000px;}
.x112_c00167{left:625.200000px;}
.xec_c00167{left:629.100000px;}
.xd0_c00167{left:631.050000px;}
.xc5_c00167{left:634.350000px;}
.xc1_c00167{left:636.300000px;}
.x12c_c00167{left:640.050000px;}
.xed_c00167{left:641.700000px;}
.x118_c00167{left:643.950000px;}
.xc0_c00167{left:645.750000px;}
.xac_c00167{left:647.250000px;}
.x135_c00167{left:648.750000px;}
.x115_c00167{left:651.000000px;}
.xbb_c00167{left:653.400000px;}
.xc6_c00167{left:654.900000px;}
.xfe_c00167{left:657.150000px;}
.x130_c00167{left:658.800000px;}
.xb5_c00167{left:660.600000px;}
.xa5_c00167{left:661.650000px;}
.xdd_c00167{left:664.200000px;}
.xc2_c00167{left:666.900000px;}
.x10d_c00167{left:669.450000px;}
.xc7_c00167{left:672.900000px;}
.xd7_c00167{left:676.350000px;}
.xd1_c00167{left:678.150000px;}
.x9e_c00167{left:680.400000px;}
.x116_c00167{left:684.150000px;}
.xe1_c00167{left:685.200000px;}
.xde_c00167{left:686.550000px;}
.xe7_c00167{left:688.800000px;}
.x126_c00167{left:690.900000px;}
.xa6_c00167{left:692.250000px;}
.xff_c00167{left:693.450000px;}
.xbc_c00167{left:694.800000px;}
.x119_c00167{left:696.900000px;}
.xad_c00167{left:699.750000px;}
.xb6_c00167{left:701.250000px;}
.x113_c00167{left:702.300000px;}
.xf5_c00167{left:703.800000px;}
.xd2_c00167{left:704.850000px;}
.xd8_c00167{left:706.200000px;}
.x120_c00167{left:708.600000px;}
.xee_c00167{left:709.800000px;}
.x127_c00167{left:713.550000px;}
.xef_c00167{left:719.550000px;}
.xc8_c00167{left:720.750000px;}
.x100_c00167{left:721.950000px;}
.x9f_c00167{left:724.350000px;}
.x106_c00167{left:726.450000px;}
.xd3_c00167{left:728.550000px;}
.xa7_c00167{left:730.350000px;}
.x122_c00167{left:731.850000px;}
.xe8_c00167{left:734.850000px;}
.x101_c00167{left:736.050000px;}
.xae_c00167{left:739.650000px;}
.xc9_c00167{left:741.600000px;}
.xf6_c00167{left:743.100000px;}
.xd9_c00167{left:744.750000px;}
.x10f_c00167{left:746.400000px;}
.xa8_c00167{left:747.600000px;}
.xcc_c00167{left:748.800000px;}
.xe2_c00167{left:751.200000px;}
.xe9_c00167{left:752.550000px;}
.x107_c00167{left:754.200000px;}
.x102_c00167{left:758.250000px;}
.x10a_c00167{left:759.900000px;}
.xaf_c00167{left:762.000000px;}
.x110_c00167{left:763.350000px;}
.xbd_c00167{left:765.300000px;}
.x128_c00167{left:768.300000px;}
.xda_c00167{left:769.650000px;}
.xd4_c00167{left:771.000000px;}
.x103_c00167{left:772.650000px;}
.xf7_c00167{left:774.450000px;}
.x11a_c00167{left:775.500000px;}
.xbe_c00167{left:780.000000px;}
.xa9_c00167{left:781.050000px;}
.xa0_c00167{left:784.050000px;}
.xdf_c00167{left:785.550000px;}
.x12e_c00167{left:787.350000px;}
.x11d_c00167{left:790.500000px;}
.xf8_c00167{left:792.450000px;}
.xf0_c00167{left:794.400000px;}
.xe0_c00167{left:796.050000px;}
.xea_c00167{left:797.250000px;}
.x136_c00167{left:798.450000px;}
.x104_c00167{left:799.650000px;}
.xb7_c00167{left:803.100000px;}
.xcd_c00167{left:804.600000px;}
.x123_c00167{left:806.700000px;}
.x11e_c00167{left:807.750000px;}
.xb0_c00167{left:808.800000px;}
.x12b_c00167{left:814.050000px;}
.xce_c00167{left:815.400000px;}
.x11b_c00167{left:817.950000px;}
.x10c_c00167{left:820.950000px;}
.xf9_c00167{left:823.050000px;}
.xb8_c00167{left:825.450000px;}
.xe3_c00167{left:826.500000px;}
.xf1_c00167{left:828.600000px;}
.xd5_c00167{left:830.100000px;}
.xa1_c00167{left:832.650000px;}
.x111_c00167{left:836.400000px;}
.xdb_c00167{left:838.050000px;}
.x108_c00167{left:839.100000px;}
.x10b_c00167{left:840.150000px;}
.x12a_c00167{left:843.150000px;}
.x117_c00167{left:844.200000px;}
.xf2_c00167{left:848.700000px;}
.x124_c00167{left:850.950000px;}
.xb1_c00167{left:852.000000px;}
.xbf_c00167{left:853.050000px;}
.x131_c00167{left:855.150000px;}
.xca_c00167{left:856.200000px;}
.xfa_c00167{left:857.250000px;}
.xdc_c00167{left:861.150000px;}
.x129_c00167{left:868.350000px;}
.xb9_c00167{left:879.450000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls1_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:47.492404pt;}
.ws2_c00167{word-spacing:-71.492404pt;}
.ws9_c00167{word-spacing:-9.100529pt;}
.ws8_c00167{word-spacing:-4.893370pt;}
.wse_c00167{word-spacing:-1.161554pt;}
.ws4_c00167{word-spacing:-0.116959pt;}
.ws11_c00167{word-spacing:0.000000pt;}
.wsa_c00167{word-spacing:1.306773pt;}
.ws10_c00167{word-spacing:13.483467pt;}
.ws1_c00167{word-spacing:17.773012pt;}
.ws3_c00167{word-spacing:20.632708pt;}
.wsb_c00167{word-spacing:23.492404pt;}
.wsf_c00167{word-spacing:28.666667pt;}
.wsd_c00167{word-spacing:30.793651pt;}
.ws5_c00167{word-spacing:32.000000pt;}
.ws0_c00167{word-spacing:35.333333pt;}
.ws6_c00167{word-spacing:40.333333pt;}
.wsc_c00167{word-spacing:53.085884pt;}
.ws7_c00167{word-spacing:64.899669pt;}
._4_c00167{margin-left:-47.492404pt;}
._7_c00167{width:41.773012pt;}
._3_c00167{width:44.632708pt;}
._1_c00167{width:47.492404pt;}
._0_c00167{width:51.781948pt;}
._5_c00167{width:59.333333pt;}
._6_c00167{width:64.333333pt;}
._2_c00167{width:250.530831pt;}
._8_c00167{width:397.805183pt;}
.fs5_c00167{font-size:26.666667pt;}
.fs3_c00167{font-size:48.000000pt;}
.fs2_c00167{font-size:53.333333pt;}
.fs0_c00167{font-size:58.666667pt;}
.fs4_c00167{font-size:64.000000pt;}
.fs1_c00167{font-size:80.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y68_c00167{bottom:154.666667pt;}
.y67_c00167{bottom:170.933333pt;}
.y34_c00167{bottom:175.066667pt;}
.y66_c00167{bottom:184.000000pt;}
.y33_c00167{bottom:190.400000pt;}
.y65_c00167{bottom:197.066667pt;}
.y32_c00167{bottom:218.266667pt;}
.y64_c00167{bottom:219.200000pt;}
.y31_c00167{bottom:234.266667pt;}
.y63_c00167{bottom:234.933333pt;}
.y62_c00167{bottom:250.933333pt;}
.y30_c00167{bottom:257.600000pt;}
.y61_c00167{bottom:266.533333pt;}
.y2f_c00167{bottom:281.066667pt;}
.y60_c00167{bottom:282.800000pt;}
.y2e_c00167{bottom:296.800000pt;}
.y5f_c00167{bottom:298.533333pt;}
.y2d_c00167{bottom:312.800000pt;}
.y5e_c00167{bottom:314.266667pt;}
.y2c_c00167{bottom:328.800000pt;}
.y5d_c00167{bottom:330.266667pt;}
.y2b_c00167{bottom:344.800000pt;}
.y5c_c00167{bottom:345.333333pt;}
.y2a_c00167{bottom:360.533333pt;}
.y5b_c00167{bottom:365.333333pt;}
.y29_c00167{bottom:376.533333pt;}
.y5a_c00167{bottom:381.066667pt;}
.y28_c00167{bottom:392.533333pt;}
.y27_c00167{bottom:408.266667pt;}
.y59_c00167{bottom:408.666667pt;}
.y26_c00167{bottom:424.000000pt;}
.y58_c00167{bottom:424.933333pt;}
.y25_c00167{bottom:441.333333pt;}
.y57_c00167{bottom:444.400000pt;}
.y24_c00167{bottom:455.733333pt;}
.y56_c00167{bottom:460.400000pt;}
.y23_c00167{bottom:471.733333pt;}
.y55_c00167{bottom:476.133333pt;}
.y22_c00167{bottom:487.333333pt;}
.y54_c00167{bottom:495.733333pt;}
.y21_c00167{bottom:503.333333pt;}
.y53_c00167{bottom:511.466667pt;}
.y20_c00167{bottom:519.066667pt;}
.y52_c00167{bottom:527.466667pt;}
.y1f_c00167{bottom:534.666667pt;}
.y51_c00167{bottom:543.200000pt;}
.y1e_c00167{bottom:556.400000pt;}
.y50_c00167{bottom:559.200000pt;}
.y1d_c00167{bottom:569.866667pt;}
.y4f_c00167{bottom:574.933333pt;}
.y1c_c00167{bottom:584.266667pt;}
.y4e_c00167{bottom:590.933333pt;}
.y1b_c00167{bottom:605.200000pt;}
.y4d_c00167{bottom:606.666667pt;}
.y1a_c00167{bottom:620.533333pt;}
.y4c_c00167{bottom:624.933333pt;}
.y19_c00167{bottom:636.533333pt;}
.y4b_c00167{bottom:637.866667pt;}
.y4a_c00167{bottom:650.933333pt;}
.y18_c00167{bottom:656.133333pt;}
.y49_c00167{bottom:668.666667pt;}
.y17_c00167{bottom:671.866667pt;}
.y48_c00167{bottom:684.400000pt;}
.y16_c00167{bottom:687.866667pt;}
.y47_c00167{bottom:700.133333pt;}
.y15_c00167{bottom:703.600000pt;}
.y14_c00167{bottom:719.333333pt;}
.y46_c00167{bottom:720.400000pt;}
.y13_c00167{bottom:743.333333pt;}
.y45_c00167{bottom:749.200000pt;}
.y44_c00167{bottom:751.733333pt;}
.y12_c00167{bottom:762.533333pt;}
.y43_c00167{bottom:768.000000pt;}
.y11_c00167{bottom:778.266667pt;}
.y42_c00167{bottom:783.733333pt;}
.y10_c00167{bottom:794.266667pt;}
.y41_c00167{bottom:803.466667pt;}
.yf_c00167{bottom:814.000000pt;}
.y40_c00167{bottom:819.200000pt;}
.ye_c00167{bottom:829.733333pt;}
.yd_c00167{bottom:845.200000pt;}
.y3e_c00167{bottom:845.466667pt;}
.y3d_c00167{bottom:858.533333pt;}
.yc_c00167{bottom:861.200000pt;}
.y3c_c00167{bottom:874.533333pt;}
.yb_c00167{bottom:877.200000pt;}
.y3f_c00167{bottom:888.933333pt;}
.ya_c00167{bottom:892.933333pt;}
.y3b_c00167{bottom:894.133333pt;}
.y9_c00167{bottom:908.666667pt;}
.y3a_c00167{bottom:910.133333pt;}
.y8_c00167{bottom:924.400000pt;}
.y39_c00167{bottom:926.133333pt;}
.y7_c00167{bottom:940.400000pt;}
.y38_c00167{bottom:945.600000pt;}
.y6_c00167{bottom:956.133333pt;}
.y37_c00167{bottom:961.333333pt;}
.y5_c00167{bottom:974.666667pt;}
.y36_c00167{bottom:981.066667pt;}
.y4_c00167{bottom:987.200000pt;}
.y35_c00167{bottom:996.800000pt;}
.y3_c00167{bottom:1000.933333pt;}
.y2_c00167{bottom:1021.733333pt;}
.y1_c00167{bottom:1022.666667pt;}
.h7_c00167{height:26.666667pt;}
.h5_c00167{height:48.000000pt;}
.h4_c00167{height:53.333333pt;}
.h2_c00167{height:58.666667pt;}
.h6_c00167{height:64.000000pt;}
.h3_c00167{height:80.000000pt;}
.h1_c00167{height:1127.333333pt;}
.h0_c00167{height:1127.359944pt;}
.w1_c00167{width:856.000000pt;}
.w0_c00167{width:856.319987pt;}
.x0_c00167{left:0.000000pt;}
.x98_c00167{left:155.200000pt;}
.x94_c00167{left:156.133333pt;}
.x58_c00167{left:158.666667pt;}
.x3_c00167{left:159.733333pt;}
.x1_c00167{left:161.333333pt;}
.x9b_c00167{left:170.000000pt;}
.x56_c00167{left:171.066667pt;}
.x26_c00167{left:172.266667pt;}
.xd_c00167{left:173.333333pt;}
.x90_c00167{left:174.266667pt;}
.x51_c00167{left:175.200000pt;}
.x2e_c00167{left:176.266667pt;}
.x72_c00167{left:183.866667pt;}
.x18_c00167{left:185.733333pt;}
.x27_c00167{left:192.133333pt;}
.x57_c00167{left:195.333333pt;}
.x59_c00167{left:197.333333pt;}
.x32_c00167{left:200.000000pt;}
.x86_c00167{left:201.733333pt;}
.x7e_c00167{left:203.866667pt;}
.x2f_c00167{left:206.000000pt;}
.x38_c00167{left:207.200000pt;}
.x19_c00167{left:212.000000pt;}
.x62_c00167{left:213.733333pt;}
.x4_c00167{left:215.066667pt;}
.x7c_c00167{left:216.933333pt;}
.x28_c00167{left:220.000000pt;}
.xe_c00167{left:222.000000pt;}
.x47_c00167{left:224.000000pt;}
.x83_c00167{left:225.466667pt;}
.xf_c00167{left:228.666667pt;}
.x35_c00167{left:231.600000pt;}
.x10_c00167{left:235.066667pt;}
.x3c_c00167{left:236.266667pt;}
.x99_c00167{left:237.733333pt;}
.x29_c00167{left:239.466667pt;}
.x69_c00167{left:240.933333pt;}
.x48_c00167{left:242.933333pt;}
.x42_c00167{left:245.466667pt;}
.x33_c00167{left:246.400000pt;}
.x11_c00167{left:247.866667pt;}
.x3f_c00167{left:252.000000pt;}
.x79_c00167{left:253.466667pt;}
.x39_c00167{left:255.200000pt;}
.x5f_c00167{left:257.466667pt;}
.x4e_c00167{left:258.933333pt;}
.x92_c00167{left:260.133333pt;}
.x6a_c00167{left:261.066667pt;}
.x84_c00167{left:262.533333pt;}
.x95_c00167{left:263.600000pt;}
.x2a_c00167{left:265.066667pt;}
.x6b_c00167{left:266.800000pt;}
.x8f_c00167{left:267.733333pt;}
.x1a_c00167{left:269.600000pt;}
.x8e_c00167{left:270.533333pt;}
.x63_c00167{left:271.600000pt;}
.x5_c00167{left:274.000000pt;}
.x1b_c00167{left:275.733333pt;}
.x7f_c00167{left:276.933333pt;}
.x21_c00167{left:279.733333pt;}
.x89_c00167{left:280.666667pt;}
.x1c_c00167{left:282.133333pt;}
.x53_c00167{left:284.000000pt;}
.x96_c00167{left:285.333333pt;}
.x73_c00167{left:286.533333pt;}
.x3d_c00167{left:288.800000pt;}
.x49_c00167{left:290.266667pt;}
.x74_c00167{left:292.266667pt;}
.x1d_c00167{left:294.933333pt;}
.x5a_c00167{left:298.133333pt;}
.x6c_c00167{left:299.066667pt;}
.x43_c00167{left:300.133333pt;}
.x87_c00167{left:301.466667pt;}
.x3a_c00167{left:303.466667pt;}
.x22_c00167{left:306.000000pt;}
.x85_c00167{left:308.133333pt;}
.x64_c00167{left:309.066667pt;}
.x6_c00167{left:311.466667pt;}
.x1e_c00167{left:314.000000pt;}
.x7d_c00167{left:316.133333pt;}
.x2b_c00167{left:317.466667pt;}
.x6d_c00167{left:318.400000pt;}
.x1f_c00167{left:320.400000pt;}
.x7a_c00167{left:321.733333pt;}
.x76_c00167{left:324.400000pt;}
.x12_c00167{left:326.133333pt;}
.x7_c00167{left:328.133333pt;}
.x52_c00167{left:329.200000pt;}
.x60_c00167{left:331.333333pt;}
.x13_c00167{left:332.533333pt;}
.x5b_c00167{left:334.666667pt;}
.x30_c00167{left:336.533333pt;}
.x6e_c00167{left:337.600000pt;}
.x77_c00167{left:338.800000pt;}
.x44_c00167{left:341.466667pt;}
.x65_c00167{left:342.666667pt;}
.x8_c00167{left:343.866667pt;}
.x14_c00167{left:345.333333pt;}
.x6f_c00167{left:350.666667pt;}
.x81_c00167{left:352.533333pt;}
.x8c_c00167{left:355.333333pt;}
.x97_c00167{left:356.666667pt;}
.x4a_c00167{left:357.866667pt;}
.x23_c00167{left:360.400000pt;}
.x2c_c00167{left:362.533333pt;}
.x5c_c00167{left:363.733333pt;}
.x34_c00167{left:364.800000pt;}
.x78_c00167{left:366.666667pt;}
.x4f_c00167{left:368.133333pt;}
.x75_c00167{left:369.733333pt;}
.x66_c00167{left:370.800000pt;}
.x9_c00167{left:372.400000pt;}
.x2_c00167{left:375.066667pt;}
.x93_c00167{left:378.666667pt;}
.x4b_c00167{left:380.000000pt;}
.x45_c00167{left:381.733333pt;}
.x80_c00167{left:382.933333pt;}
.x67_c00167{left:386.533333pt;}
.xa_c00167{left:388.133333pt;}
.x8a_c00167{left:389.066667pt;}
.x5d_c00167{left:390.266667pt;}
.x61_c00167{left:391.866667pt;}
.x70_c00167{left:393.600000pt;}
.x15_c00167{left:394.933333pt;}
.x40_c00167{left:396.133333pt;}
.x4c_c00167{left:397.866667pt;}
.x46_c00167{left:399.066667pt;}
.x54_c00167{left:400.400000pt;}
.x50_c00167{left:401.733333pt;}
.x31_c00167{left:403.466667pt;}
.x82_c00167{left:405.600000pt;}
.x24_c00167{left:407.066667pt;}
.x5e_c00167{left:408.266667pt;}
.x88_c00167{left:411.600000pt;}
.x36_c00167{left:413.733333pt;}
.xb_c00167{left:415.333333pt;}
.x3e_c00167{left:416.533333pt;}
.x3b_c00167{left:417.466667pt;}
.x71_c00167{left:419.466667pt;}
.x16_c00167{left:421.466667pt;}
.x20_c00167{left:422.800000pt;}
.x9a_c00167{left:425.733333pt;}
.x37_c00167{left:426.800000pt;}
.x8d_c00167{left:429.600000pt;}
.x41_c00167{left:430.666667pt;}
.x25_c00167{left:433.333333pt;}
.x8b_c00167{left:435.200000pt;}
.x91_c00167{left:437.866667pt;}
.x4d_c00167{left:439.466667pt;}
.x55_c00167{left:441.733333pt;}
.x2d_c00167{left:442.800000pt;}
.x68_c00167{left:443.866667pt;}
.xc_c00167{left:445.066667pt;}
.x17_c00167{left:446.800000pt;}
.x7b_c00167{left:462.533333pt;}
.x12f_c00167{left:473.866667pt;}
.x114_c00167{left:474.933333pt;}
.xaa_c00167{left:476.133333pt;}
.x132_c00167{left:486.533333pt;}
.xfb_c00167{left:488.133333pt;}
.x11f_c00167{left:489.466667pt;}
.xc3_c00167{left:490.533333pt;}
.xa2_c00167{left:491.866667pt;}
.xe6_c00167{left:497.333333pt;}
.x105_c00167{left:499.866667pt;}
.x137_c00167{left:502.000000pt;}
.x125_c00167{left:505.600000pt;}
.xcf_c00167{left:507.466667pt;}
.x9c_c00167{left:508.800000pt;}
.xc4_c00167{left:511.066667pt;}
.xa3_c00167{left:512.666667pt;}
.x12d_c00167{left:513.600000pt;}
.xab_c00167{left:514.800000pt;}
.x10e_c00167{left:516.400000pt;}
.xb2_c00167{left:518.266667pt;}
.xba_c00167{left:520.266667pt;}
.xe4_c00167{left:521.200000pt;}
.x109_c00167{left:523.733333pt;}
.xd6_c00167{left:526.000000pt;}
.xeb_c00167{left:527.866667pt;}
.xf4_c00167{left:529.600000pt;}
.xf3_c00167{left:532.666667pt;}
.x11c_c00167{left:533.733333pt;}
.xb3_c00167{left:536.133333pt;}
.x133_c00167{left:537.733333pt;}
.xfc_c00167{left:539.066667pt;}
.x134_c00167{left:543.866667pt;}
.xa4_c00167{left:546.266667pt;}
.xcb_c00167{left:547.200000pt;}
.x9d_c00167{left:548.533333pt;}
.xb4_c00167{left:549.466667pt;}
.x121_c00167{left:550.666667pt;}
.xfd_c00167{left:552.133333pt;}
.xe5_c00167{left:553.466667pt;}
.x112_c00167{left:555.733333pt;}
.xec_c00167{left:559.200000pt;}
.xd0_c00167{left:560.933333pt;}
.xc5_c00167{left:563.866667pt;}
.xc1_c00167{left:565.600000pt;}
.x12c_c00167{left:568.933333pt;}
.xed_c00167{left:570.400000pt;}
.x118_c00167{left:572.400000pt;}
.xc0_c00167{left:574.000000pt;}
.xac_c00167{left:575.333333pt;}
.x135_c00167{left:576.666667pt;}
.x115_c00167{left:578.666667pt;}
.xbb_c00167{left:580.800000pt;}
.xc6_c00167{left:582.133333pt;}
.xfe_c00167{left:584.133333pt;}
.x130_c00167{left:585.600000pt;}
.xb5_c00167{left:587.200000pt;}
.xa5_c00167{left:588.133333pt;}
.xdd_c00167{left:590.400000pt;}
.xc2_c00167{left:592.800000pt;}
.x10d_c00167{left:595.066667pt;}
.xc7_c00167{left:598.133333pt;}
.xd7_c00167{left:601.200000pt;}
.xd1_c00167{left:602.800000pt;}
.x9e_c00167{left:604.800000pt;}
.x116_c00167{left:608.133333pt;}
.xe1_c00167{left:609.066667pt;}
.xde_c00167{left:610.266667pt;}
.xe7_c00167{left:612.266667pt;}
.x126_c00167{left:614.133333pt;}
.xa6_c00167{left:615.333333pt;}
.xff_c00167{left:616.400000pt;}
.xbc_c00167{left:617.600000pt;}
.x119_c00167{left:619.466667pt;}
.xad_c00167{left:622.000000pt;}
.xb6_c00167{left:623.333333pt;}
.x113_c00167{left:624.266667pt;}
.xf5_c00167{left:625.600000pt;}
.xd2_c00167{left:626.533333pt;}
.xd8_c00167{left:627.733333pt;}
.x120_c00167{left:629.866667pt;}
.xee_c00167{left:630.933333pt;}
.x127_c00167{left:634.266667pt;}
.xef_c00167{left:639.600000pt;}
.xc8_c00167{left:640.666667pt;}
.x100_c00167{left:641.733333pt;}
.x9f_c00167{left:643.866667pt;}
.x106_c00167{left:645.733333pt;}
.xd3_c00167{left:647.600000pt;}
.xa7_c00167{left:649.200000pt;}
.x122_c00167{left:650.533333pt;}
.xe8_c00167{left:653.200000pt;}
.x101_c00167{left:654.266667pt;}
.xae_c00167{left:657.466667pt;}
.xc9_c00167{left:659.200000pt;}
.xf6_c00167{left:660.533333pt;}
.xd9_c00167{left:662.000000pt;}
.x10f_c00167{left:663.466667pt;}
.xa8_c00167{left:664.533333pt;}
.xcc_c00167{left:665.600000pt;}
.xe2_c00167{left:667.733333pt;}
.xe9_c00167{left:668.933333pt;}
.x107_c00167{left:670.400000pt;}
.x102_c00167{left:674.000000pt;}
.x10a_c00167{left:675.466667pt;}
.xaf_c00167{left:677.333333pt;}
.x110_c00167{left:678.533333pt;}
.xbd_c00167{left:680.266667pt;}
.x128_c00167{left:682.933333pt;}
.xda_c00167{left:684.133333pt;}
.xd4_c00167{left:685.333333pt;}
.x103_c00167{left:686.800000pt;}
.xf7_c00167{left:688.400000pt;}
.x11a_c00167{left:689.333333pt;}
.xbe_c00167{left:693.333333pt;}
.xa9_c00167{left:694.266667pt;}
.xa0_c00167{left:696.933333pt;}
.xdf_c00167{left:698.266667pt;}
.x12e_c00167{left:699.866667pt;}
.x11d_c00167{left:702.666667pt;}
.xf8_c00167{left:704.400000pt;}
.xf0_c00167{left:706.133333pt;}
.xe0_c00167{left:707.600000pt;}
.xea_c00167{left:708.666667pt;}
.x136_c00167{left:709.733333pt;}
.x104_c00167{left:710.800000pt;}
.xb7_c00167{left:713.866667pt;}
.xcd_c00167{left:715.200000pt;}
.x123_c00167{left:717.066667pt;}
.x11e_c00167{left:718.000000pt;}
.xb0_c00167{left:718.933333pt;}
.x12b_c00167{left:723.600000pt;}
.xce_c00167{left:724.800000pt;}
.x11b_c00167{left:727.066667pt;}
.x10c_c00167{left:729.733333pt;}
.xf9_c00167{left:731.600000pt;}
.xb8_c00167{left:733.733333pt;}
.xe3_c00167{left:734.666667pt;}
.xf1_c00167{left:736.533333pt;}
.xd5_c00167{left:737.866667pt;}
.xa1_c00167{left:740.133333pt;}
.x111_c00167{left:743.466667pt;}
.xdb_c00167{left:744.933333pt;}
.x108_c00167{left:745.866667pt;}
.x10b_c00167{left:746.800000pt;}
.x12a_c00167{left:749.466667pt;}
.x117_c00167{left:750.400000pt;}
.xf2_c00167{left:754.400000pt;}
.x124_c00167{left:756.400000pt;}
.xb1_c00167{left:757.333333pt;}
.xbf_c00167{left:758.266667pt;}
.x131_c00167{left:760.133333pt;}
.xca_c00167{left:761.066667pt;}
.xfa_c00167{left:762.000000pt;}
.xdc_c00167{left:765.466667pt;}
.x129_c00167{left:771.866667pt;}
.xb9_c00167{left:781.733333pt;}
}





/* 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_c00168 {
    display:none;
  }
  .loading-indicator_c00168.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00168 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_c00168 { 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_c00168" -> "#page-container .classname_c00168")
 */
.pf_c00168 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00168 { /* 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_c00168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00168 { /* 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_c00168 { /* 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_c00168 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00168 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00168 {overflow:visible;}
  }
}
.c_c00168 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00168 { /* 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_c00168:after { /* webkit #35443 */
  content: '';
}
.t_c00168:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00168 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 */
}
.__c00168 { /* 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_c00168 { /* info for Javascript */
  display:none;
}
.l_c00168 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00168 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00168 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00168: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_c00168 {
    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_c00168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00168.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_c00168 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00168;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.000000;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;}
.md5_c00168{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m15_c00168{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.me6_c00168{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00168{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00168{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00168{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.me7_c00168{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00168{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md8_c00168{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m109_c00168{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{transform:matrix(0.075750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075750,0.000000,0.000000,0.250000,0,0);}
.md9_c00168{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00168{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m98_c00168{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m11_c00168{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00168{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00168{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m70_c00168{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m14_c00168{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m87_c00168{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m71_c00168{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00168{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00168{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00168{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mba_c00168{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00168{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00168{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mda_c00168{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mec_c00168{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mca_c00168{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00168{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m65_c00168{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c00168{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00168{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m52_c00168{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m64_c00168{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00168{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mce_c00168{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m57_c00168{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m60_c00168{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00168{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00168{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m53_c00168{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m138_c00168{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m86_c00168{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00168{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mc_c00168{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mef_c00168{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m58_c00168{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m111_c00168{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m93_c00168{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m62_c00168{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m38_c00168{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m88_c00168{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m96_c00168{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00168{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m12_c00168{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m102_c00168{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m85_c00168{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m42_c00168{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00168{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00168{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m25_c00168{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00168{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m101_c00168{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m82_c00168{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m89_c00168{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m16_c00168{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m77_c00168{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m79_c00168{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00168{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00168{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m69_c00168{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00168{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m75_c00168{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00168{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m130_c00168{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m117_c00168{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00168{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00168{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m54_c00168{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m47_c00168{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00168{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m8_c00168{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00168{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m5_c00168{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m50_c00168{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.me4_c00168{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00168{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00168{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00168{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00168{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mff_c00168{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md6_c00168{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00168{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mf_c00168{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mac_c00168{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m59_c00168{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m33_c00168{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m36_c00168{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4_c00168{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md4_c00168{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m94_c00168{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mab_c00168{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00168{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00168{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00168{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.meb_c00168{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m84_c00168{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00168{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00168{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m106_c00168{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00168{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m27_c00168{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m74_c00168{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m100_c00168{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00168{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m22_c00168{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00168{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00168{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00168{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m72_c00168{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00168{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7_c00168{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00168{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma_c00168{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m133_c00168{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb_c00168{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m66_c00168{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m92_c00168{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00168{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me8_c00168{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00168{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mad_c00168{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m13_c00168{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3_c00168{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m32_c00168{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00168{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00168{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00168{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m37_c00168{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m135_c00168{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mea_c00168{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00168{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m83_c00168{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00168{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00168{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9_c00168{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00168{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00168{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m73_c00168{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m131_c00168{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m91_c00168{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.md_c00168{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00168{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m114_c00168{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m10_c00168{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00168{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m104_c00168{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m17_c00168{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00168{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00168{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me0_c00168{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00168{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m48_c00168{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m31_c00168{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00168{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m90_c00168{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m129_c00168{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00168{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00168{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me5_c00168{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00168{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m29_c00168{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00168{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m95_c00168{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m21_c00168{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00168{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m78_c00168{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m67_c00168{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00168{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00168{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m103_c00168{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m56_c00168{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me3_c00168{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00168{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m132_c00168{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00168{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m26_c00168{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m61_c00168{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m41_c00168{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00168{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m115_c00168{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00168{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.maa_c00168{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m51_c00168{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00168{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m68_c00168{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m120_c00168{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m20_c00168{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m112_c00168{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m55_c00168{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m108_c00168{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m35_c00168{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00168{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m80_c00168{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00168{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m125_c00168{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m40_c00168{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.maf_c00168{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m45_c00168{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00168{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.med_c00168{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00168{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mae_c00168{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00168{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00168{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m105_c00168{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00168{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00168{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m30_c00168{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00168{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m34_c00168{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m99_c00168{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m23_c00168{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00168{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m81_c00168{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00168{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00168{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m97_c00168{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00168{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m39_c00168{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00168{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m110_c00168{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md7_c00168{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m113_c00168{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00168{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00168{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m28_c00168{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m107_c00168{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00168{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00168{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00168{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me_c00168{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00168{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m63_c00168{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m46_c00168{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00168{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00168{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me1_c00168{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00168{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00168{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m118_c00168{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.me2_c00168{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m119_c00168{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m124_c00168{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00168{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00168{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m24_c00168{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00168{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00168{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m134_c00168{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m76_c00168{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m137_c00168{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.me9_c00168{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00168{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m127_c00168{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00168{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00168{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m136_c00168{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00168{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00168{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00168{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m116_c00168{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.md0_c00168{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00168{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00168{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00168{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00168{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00168{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m43_c00168{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m121_c00168{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md1_c00168{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m44_c00168{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00168{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00168{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m19_c00168{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00168{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.md3_c00168{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00168{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00168{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m49_c00168{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00168{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m128_c00168{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00168{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mee_c00168{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m123_c00168{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m126_c00168{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00168{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00168{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m0_c00168{transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);}
.m122_c00168{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00168{transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00168{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00168{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00168{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00168{transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00168{transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00168{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00168{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m139_c00168{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.md2_c00168{transform:matrix(0.589000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589000,0.000000,0.000000,0.250000,0,0);}
.mde_c00168{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls0_c00168{letter-spacing:0.000000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{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__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00168{word-spacing:-8.278351px;}
.ws4_c00168{word-spacing:-7.923149px;}
.ws7_c00168{word-spacing:-3.894737px;}
.ws6_c00168{word-spacing:-3.540984px;}
.wsa_c00168{word-spacing:0.000000px;}
.ws9_c00168{word-spacing:2.053927px;}
.ws3_c00168{word-spacing:6.521739px;}
.ws8_c00168{word-spacing:7.343750px;}
.ws5_c00168{word-spacing:14.404738px;}
.ws0_c00168{word-spacing:15.006873px;}
.ws2_c00168{word-spacing:207.442623px;}
.fc0_c00168{color:transparent;}
.fs1_c00168{font-size:30.000000px;}
.fs6_c00168{font-size:36.000000px;}
.fs2_c00168{font-size:42.000000px;}
.fs8_c00168{font-size:48.000000px;}
.fs7_c00168{font-size:54.000000px;}
.fs5_c00168{font-size:60.000000px;}
.fs4_c00168{font-size:66.000000px;}
.fs3_c00168{font-size:72.000000px;}
.fs0_c00168{font-size:114.000000px;}
.y0_c00168{bottom:0.000000px;}
.y33_c00168{bottom:182.250000px;}
.y73_c00168{bottom:183.150000px;}
.y32_c00168{bottom:196.950000px;}
.y72_c00168{bottom:198.300000px;}
.y31_c00168{bottom:211.350000px;}
.y71_c00168{bottom:212.700000px;}
.y30_c00168{bottom:225.750000px;}
.y70_c00168{bottom:227.850000px;}
.y6f_c00168{bottom:245.700000px;}
.y6e_c00168{bottom:259.800000px;}
.y6d_c00168{bottom:274.200000px;}
.y2f_c00168{bottom:275.850000px;}
.y6c_c00168{bottom:288.600000px;}
.y2e_c00168{bottom:297.750000px;}
.y6b_c00168{bottom:303.000000px;}
.y6a_c00168{bottom:317.400000px;}
.y2d_c00168{bottom:328.650000px;}
.y69_c00168{bottom:331.500000px;}
.y68_c00168{bottom:345.900000px;}
.y67_c00168{bottom:360.300000px;}
.y2c_c00168{bottom:364.350000px;}
.y66_c00168{bottom:374.400000px;}
.y2b_c00168{bottom:386.550000px;}
.y65_c00168{bottom:388.500000px;}
.y64_c00168{bottom:402.900000px;}
.y2a_c00168{bottom:404.550000px;}
.y63_c00168{bottom:417.300000px;}
.y29_c00168{bottom:422.250000px;}
.y62_c00168{bottom:432.000000px;}
.y28_c00168{bottom:440.250000px;}
.y61_c00168{bottom:445.050000px;}
.y60_c00168{bottom:459.750000px;}
.y27_c00168{bottom:462.300000px;}
.y5f_c00168{bottom:474.450000px;}
.y26_c00168{bottom:479.550000px;}
.y5e_c00168{bottom:488.550000px;}
.y25_c00168{bottom:497.850000px;}
.y5d_c00168{bottom:503.250000px;}
.y24_c00168{bottom:515.550000px;}
.y5c_c00168{bottom:517.200000px;}
.y5b_c00168{bottom:531.300000px;}
.y23_c00168{bottom:533.250000px;}
.y5a_c00168{bottom:546.450000px;}
.y22_c00168{bottom:550.950000px;}
.y59_c00168{bottom:559.800000px;}
.y21_c00168{bottom:568.950000px;}
.y58_c00168{bottom:574.500000px;}
.y20_c00168{bottom:586.950000px;}
.y57_c00168{bottom:589.650000px;}
.y56_c00168{bottom:603.300000px;}
.y1f_c00168{bottom:604.650000px;}
.y55_c00168{bottom:617.700000px;}
.y1e_c00168{bottom:622.350000px;}
.y54_c00168{bottom:631.500000px;}
.y1d_c00168{bottom:640.350000px;}
.y53_c00168{bottom:646.200000px;}
.y1c_c00168{bottom:658.350000px;}
.y52_c00168{bottom:661.200000px;}
.y51_c00168{bottom:674.550000px;}
.y1b_c00168{bottom:675.600000px;}
.y50_c00168{bottom:688.200000px;}
.y1a_c00168{bottom:693.300000px;}
.y4f_c00168{bottom:702.300000px;}
.y19_c00168{bottom:713.850000px;}
.y4e_c00168{bottom:716.700000px;}
.y18_c00168{bottom:728.250000px;}
.y4d_c00168{bottom:731.850000px;}
.y17_c00168{bottom:743.400000px;}
.y4c_c00168{bottom:744.900000px;}
.y4b_c00168{bottom:760.350000px;}
.y16_c00168{bottom:763.050000px;}
.y4a_c00168{bottom:773.250000px;}
.y15_c00168{bottom:780.750000px;}
.y49_c00168{bottom:788.700000px;}
.y14_c00168{bottom:803.100000px;}
.y48_c00168{bottom:803.550000px;}
.y47_c00168{bottom:816.150000px;}
.y13_c00168{bottom:820.800000px;}
.y46_c00168{bottom:831.600000px;}
.y12_c00168{bottom:838.050000px;}
.y11_c00168{bottom:855.750000px;}
.y45_c00168{bottom:868.500000px;}
.y10_c00168{bottom:878.100000px;}
.y44_c00168{bottom:886.500000px;}
.yf_c00168{bottom:895.350000px;}
.y43_c00168{bottom:904.200000px;}
.y42_c00168{bottom:921.900000px;}
.ye_c00168{bottom:922.650000px;}
.y41_c00168{bottom:938.850000px;}
.yd_c00168{bottom:944.700000px;}
.y40_c00168{bottom:949.800000px;}
.y3f_c00168{bottom:957.300000px;}
.yc_c00168{bottom:962.700000px;}
.y3e_c00168{bottom:972.750000px;}
.yb_c00168{bottom:984.450000px;}
.y3d_c00168{bottom:996.450000px;}
.ya_c00168{bottom:1002.150000px;}
.y3c_c00168{bottom:1006.200000px;}
.y3b_c00168{bottom:1018.050000px;}
.y9_c00168{bottom:1019.850000px;}
.y3a_c00168{bottom:1026.750000px;}
.y38_c00168{bottom:1028.100000px;}
.y39_c00168{bottom:1034.250000px;}
.y8_c00168{bottom:1037.550000px;}
.y37_c00168{bottom:1050.450000px;}
.y7_c00168{bottom:1055.850000px;}
.y6_c00168{bottom:1073.100000px;}
.y36_c00168{bottom:1076.100000px;}
.y35_c00168{bottom:1090.050000px;}
.y5_c00168{bottom:1091.100000px;}
.y34_c00168{bottom:1107.750000px;}
.y4_c00168{bottom:1108.800000px;}
.y2_c00168{bottom:1134.450000px;}
.y1_c00168{bottom:1134.750000px;}
.y3_c00168{bottom:1138.800000px;}
.h3_c00168{height:30.000000px;}
.h8_c00168{height:36.000000px;}
.h4_c00168{height:42.000000px;}
.ha_c00168{height:48.000000px;}
.h9_c00168{height:54.000000px;}
.h7_c00168{height:60.000000px;}
.h6_c00168{height:66.000000px;}
.h5_c00168{height:72.000000px;}
.h2_c00168{height:114.000000px;}
.h0_c00168{height:1268.640015px;}
.h1_c00168{height:1269.000000px;}
.w1_c00168{width:963.000000px;}
.w0_c00168{width:963.359985px;}
.x0_c00168{left:0.000000px;}
.x9c_c00168{left:82.050000px;}
.x5c_c00168{left:84.600000px;}
.x37_c00168{left:85.650000px;}
.x43_c00168{left:87.150000px;}
.x5_c00168{left:88.500000px;}
.x9f_c00168{left:96.150000px;}
.x25_c00168{left:97.950000px;}
.x64_c00168{left:100.350000px;}
.x97_c00168{left:102.300000px;}
.x58_c00168{left:103.350000px;}
.x16_c00168{left:104.550000px;}
.xd_c00168{left:105.750000px;}
.x67_c00168{left:115.500000px;}
.xa3_c00168{left:117.750000px;}
.x9d_c00168{left:120.600000px;}
.x47_c00168{left:121.650000px;}
.xa0_c00168{left:123.900000px;}
.xe_c00168{left:126.300000px;}
.x2e_c00168{left:131.250000px;}
.x98_c00168{left:133.200000px;}
.xa6_c00168{left:134.550000px;}
.x7c_c00168{left:136.500000px;}
.x33_c00168{left:138.000000px;}
.x8b_c00168{left:140.400000px;}
.x1f_c00168{left:141.450000px;}
.x52_c00168{left:143.250000px;}
.x38_c00168{left:144.300000px;}
.x86_c00168{left:145.650000px;}
.x5d_c00168{left:147.600000px;}
.x26_c00168{left:149.850000px;}
.x4f_c00168{left:151.500000px;}
.x75_c00168{left:152.550000px;}
.x59_c00168{left:155.250000px;}
.x17_c00168{left:156.450000px;}
.x4a_c00168{left:160.050000px;}
.x1c_c00168{left:162.750000px;}
.xa7_c00168{left:164.100000px;}
.x39_c00168{left:165.600000px;}
.x9e_c00168{left:166.650000px;}
.x44_c00168{left:170.250000px;}
.x6_c00168{left:172.050000px;}
.x87_c00168{left:173.400000px;}
.x2f_c00168{left:175.500000px;}
.x9b_c00168{left:177.450000px;}
.x41_c00168{left:179.700000px;}
.x7d_c00168{left:181.800000px;}
.x6d_c00168{left:183.450000px;}
.x1d_c00168{left:185.400000px;}
.x95_c00168{left:187.500000px;}
.x20_c00168{left:190.050000px;}
.x8c_c00168{left:193.350000px;}
.x27_c00168{left:196.650000px;}
.x55_c00168{left:197.700000px;}
.x3a_c00168{left:200.100000px;}
.xf_c00168{left:201.900000px;}
.x5a_c00168{left:203.550000px;}
.x28_c00168{left:205.650000px;}
.x78_c00168{left:206.700000px;}
.x7e_c00168{left:208.050000px;}
.x92_c00168{left:209.700000px;}
.x7_c00168{left:211.650000px;}
.xa1_c00168{left:213.450000px;}
.x21_c00168{left:220.650000px;}
.x88_c00168{left:223.050000px;}
.x94_c00168{left:225.600000px;}
.x8_c00168{left:227.850000px;}
.x6a_c00168{left:229.650000px;}
.x42_c00168{left:231.150000px;}
.x3b_c00168{left:234.000000px;}
.x29_c00168{left:235.200000px;}
.x22_c00168{left:236.850000px;}
.x1e_c00168{left:239.100000px;}
.x40_c00168{left:241.500000px;}
.x48_c00168{left:245.400000px;}
.x5e_c00168{left:246.600000px;}
.x5b_c00168{left:249.300000px;}
.x34_c00168{left:250.350000px;}
.x4b_c00168{left:253.050000px;}
.x30_c00168{left:254.250000px;}
.x3c_c00168{left:255.300000px;}
.x2a_c00168{left:258.300000px;}
.x76_c00168{left:260.250000px;}
.x10_c00168{left:262.350000px;}
.x5f_c00168{left:264.900000px;}
.x50_c00168{left:265.950000px;}
.x8d_c00168{left:268.200000px;}
.xa4_c00168{left:271.050000px;}
.x79_c00168{left:272.850000px;}
.x2b_c00168{left:274.200000px;}
.x84_c00168{left:275.850000px;}
.x80_c00168{left:279.000000px;}
.x45_c00168{left:281.100000px;}
.x53_c00168{left:282.900000px;}
.x9_c00168{left:283.950000px;}
.xa8_c00168{left:285.150000px;}
.x56_c00168{left:286.200000px;}
.x85_c00168{left:291.000000px;}
.x68_c00168{left:292.800000px;}
.x7a_c00168{left:294.150000px;}
.x81_c00168{left:296.700000px;}
.x11_c00168{left:298.650000px;}
.x4c_c00168{left:299.850000px;}
.x23_c00168{left:301.350000px;}
.x6e_c00168{left:302.550000px;}
.x31_c00168{left:306.450000px;}
.x60_c00168{left:307.650000px;}
.x51_c00168{left:309.150000px;}
.x77_c00168{left:312.150000px;}
.x6b_c00168{left:313.500000px;}
.x49_c00168{left:314.550000px;}
.x18_c00168{left:316.350000px;}
.x82_c00168{left:319.350000px;}
.x3d_c00168{left:320.700000px;}
.x61_c00168{left:322.350000px;}
.x6f_c00168{left:323.850000px;}
.x7f_c00168{left:325.050000px;}
.x72_c00168{left:327.450000px;}
.xa_c00168{left:329.250000px;}
.x1_c00168{left:331.950000px;}
.x93_c00168{left:335.100000px;}
.x6c_c00168{left:337.950000px;}
.x4d_c00168{left:339.750000px;}
.x2c_c00168{left:340.800000px;}
.x57_c00168{left:342.000000px;}
.x12_c00168{left:343.650000px;}
.x70_c00168{left:345.450000px;}
.x9a_c00168{left:348.150000px;}
.x3e_c00168{left:349.500000px;}
.xb_c00168{left:350.550000px;}
.x35_c00168{left:352.950000px;}
.x83_c00168{left:354.600000px;}
.x19_c00168{left:355.650000px;}
.x4e_c00168{left:357.750000px;}
.x73_c00168{left:359.550000px;}
.x90_c00168{left:360.900000px;}
.x7b_c00168{left:362.850000px;}
.x54_c00168{left:364.800000px;}
.x71_c00168{left:368.100000px;}
.xa2_c00168{left:369.450000px;}
.x13_c00168{left:370.950000px;}
.x62_c00168{left:372.750000px;}
.x36_c00168{left:374.850000px;}
.x24_c00168{left:375.900000px;}
.x99_c00168{left:377.550000px;}
.x1a_c00168{left:378.750000px;}
.x89_c00168{left:379.800000px;}
.x65_c00168{left:381.150000px;}
.x32_c00168{left:383.850000px;}
.x2d_c00168{left:385.050000px;}
.x46_c00168{left:386.100000px;}
.x69_c00168{left:387.600000px;}
.x8e_c00168{left:390.900000px;}
.xa5_c00168{left:391.950000px;}
.xc_c00168{left:393.450000px;}
.x1b_c00168{left:394.950000px;}
.x91_c00168{left:396.900000px;}
.x8a_c00168{left:398.100000px;}
.x3f_c00168{left:399.150000px;}
.xa9_c00168{left:400.200000px;}
.x63_c00168{left:406.650000px;}
.x66_c00168{left:408.900000px;}
.x74_c00168{left:411.000000px;}
.x8f_c00168{left:412.200000px;}
.x96_c00168{left:415.200000px;}
.x14_c00168{left:417.750000px;}
.x15_c00168{left:429.300000px;}
.x145_c00168{left:439.200000px;}
.x130_c00168{left:440.700000px;}
.x114_c00168{left:442.050000px;}
.xb0_c00168{left:443.100000px;}
.x11e_c00168{left:455.700000px;}
.xfc_c00168{left:457.200000px;}
.xf2_c00168{left:458.700000px;}
.xb7_c00168{left:461.100000px;}
.x149_c00168{left:462.600000px;}
.x126_c00168{left:463.800000px;}
.x137_c00168{left:465.300000px;}
.x115_c00168{left:467.250000px;}
.x13b_c00168{left:469.650000px;}
.x110_c00168{left:471.900000px;}
.x131_c00168{left:474.150000px;}
.x11a_c00168{left:475.650000px;}
.x153_c00168{left:477.450000px;}
.xad_c00168{left:478.800000px;}
.xaa_c00168{left:480.900000px;}
.xfd_c00168{left:482.100000px;}
.xf3_c00168{left:483.600000px;}
.x147_c00168{left:486.450000px;}
.xc1_c00168{left:487.800000px;}
.x151_c00168{left:490.200000px;}
.x12d_c00168{left:491.250000px;}
.xcc_c00168{left:494.250000px;}
.xec_c00168{left:497.250000px;}
.x132_c00168{left:498.300000px;}
.xd8_c00168{left:499.650000px;}
.xe0_c00168{left:501.450000px;}
.x10b_c00168{left:502.500000px;}
.x156_c00168{left:503.550000px;}
.xf4_c00168{left:505.500000px;}
.xe1_c00168{left:507.600000px;}
.x12e_c00168{left:509.550000px;}
.x154_c00168{left:511.800000px;}
.xd9_c00168{left:513.000000px;}
.xb8_c00168{left:514.050000px;}
.x122_c00168{left:515.400000px;}
.xb1_c00168{left:518.700000px;}
.xed_c00168{left:520.350000px;}
.xcf_c00168{left:522.300000px;}
.xda_c00168{left:523.800000px;}
.xe6_c00168{left:525.450000px;}
.x142_c00168{left:526.800000px;}
.x158_c00168{left:529.950000px;}
.xae_c00168{left:531.000000px;}
.x14e_c00168{left:532.200000px;}
.xfe_c00168{left:533.850000px;}
.x128_c00168{left:535.500000px;}
.x10c_c00168{left:536.700000px;}
.xab_c00168{left:538.200000px;}
.xf5_c00168{left:539.700000px;}
.x13d_c00168{left:541.800000px;}
.x11f_c00168{left:543.600000px;}
.x111_c00168{left:544.950000px;}
.xe2_c00168{left:546.150000px;}
.x14a_c00168{left:547.500000px;}
.x138_c00168{left:549.750000px;}
.x146_c00168{left:551.550000px;}
.xb9_c00168{left:552.900000px;}
.xe3_c00168{left:554.700000px;}
.x123_c00168{left:556.050000px;}
.x143_c00168{left:557.400000px;}
.x144_c00168{left:561.750000px;}
.x135_c00168{left:562.800000px;}
.x152_c00168{left:564.000000px;}
.xd0_c00168{left:565.200000px;}
.xdb_c00168{left:567.300000px;}
.xee_c00168{left:568.650000px;}
.x129_c00168{left:569.700000px;}
.xe7_c00168{left:571.200000px;}
.x112_c00168{left:574.500000px;}
.xd1_c00168{left:576.300000px;}
.xc8_c00168{left:577.800000px;}
.x157_c00168{left:578.850000px;}
.xb2_c00168{left:582.450000px;}
.x14c_c00168{left:583.650000px;}
.xff_c00168{left:585.300000px;}
.xc4_c00168{left:587.850000px;}
.x133_c00168{left:589.200000px;}
.xba_c00168{left:590.700000px;}
.xe8_c00168{left:592.050000px;}
.xf6_c00168{left:594.000000px;}
.x12f_c00168{left:595.050000px;}
.x108_c00168{left:597.150000px;}
.x103_c00168{left:599.850000px;}
.x124_c00168{left:601.650000px;}
.x10d_c00168{left:603.000000px;}
.xef_c00168{left:604.650000px;}
.xbb_c00168{left:606.150000px;}
.xc5_c00168{left:607.350000px;}
.x104_c00168{left:609.900000px;}
.xd2_c00168{left:612.000000px;}
.xf7_c00168{left:613.050000px;}
.x13e_c00168{left:614.100000px;}
.xd5_c00168{left:616.200000px;}
.xdc_c00168{left:617.400000px;}
.xfa_c00168{left:619.950000px;}
.x140_c00168{left:621.150000px;}
.x109_c00168{left:622.350000px;}
.x100_c00168{left:624.150000px;}
.xf0_c00168{left:626.250000px;}
.x12a_c00168{left:628.350000px;}
.xc6_c00168{left:630.000000px;}
.x117_c00168{left:631.500000px;}
.x105_c00168{left:633.600000px;}
.x113_c00168{left:635.250000px;}
.xe4_c00168{left:636.750000px;}
.x12b_c00168{left:638.850000px;}
.xb3_c00168{left:640.050000px;}
.x148_c00168{left:642.600000px;}
.x101_c00168{left:643.650000px;}
.x13c_c00168{left:645.450000px;}
.xe9_c00168{left:648.150000px;}
.xb4_c00168{left:649.800000px;}
.x10e_c00168{left:652.950000px;}
.xc9_c00168{left:655.500000px;}
.x14f_c00168{left:657.150000px;}
.xbc_c00168{left:658.500000px;}
.xdd_c00168{left:660.600000px;}
.x11b_c00168{left:662.550000px;}
.xcd_c00168{left:664.050000px;}
.x120_c00168{left:666.150000px;}
.xea_c00168{left:668.250000px;}
.xbd_c00168{left:669.300000px;}
.x127_c00168{left:670.950000px;}
.xce_c00168{left:673.800000px;}
.x139_c00168{left:675.450000px;}
.x118_c00168{left:676.500000px;}
.xc7_c00168{left:678.300000px;}
.xbe_c00168{left:680.100000px;}
.x102_c00168{left:681.150000px;}
.x14d_c00168{left:683.400000px;}
.xd3_c00168{left:685.350000px;}
.x10f_c00168{left:690.750000px;}
.xf8_c00168{left:691.950000px;}
.xb5_c00168{left:693.750000px;}
.xd6_c00168{left:696.150000px;}
.xe5_c00168{left:698.250000px;}
.x134_c00168{left:699.300000px;}
.x106_c00168{left:700.500000px;}
.xca_c00168{left:702.000000px;}
.xc2_c00168{left:703.500000px;}
.xd7_c00168{left:706.650000px;}
.xd4_c00168{left:707.700000px;}
.x155_c00168{left:710.700000px;}
.xbf_c00168{left:714.000000px;}
.x107_c00168{left:715.950000px;}
.xf1_c00168{left:717.750000px;}
.x116_c00168{left:718.800000px;}
.xb6_c00168{left:721.050000px;}
.x10a_c00168{left:722.100000px;}
.x13f_c00168{left:723.600000px;}
.xeb_c00168{left:724.800000px;}
.xc3_c00168{left:725.850000px;}
.x11c_c00168{left:727.050000px;}
.x119_c00168{left:728.400000px;}
.xc0_c00168{left:730.500000px;}
.xde_c00168{left:731.850000px;}
.xcb_c00168{left:735.900000px;}
.x150_c00168{left:737.850000px;}
.x13a_c00168{left:738.900000px;}
.x136_c00168{left:741.750000px;}
.x125_c00168{left:744.600000px;}
.xf9_c00168{left:746.400000px;}
.xaf_c00168{left:748.500000px;}
.x2_c00168{left:750.300000px;}
.x11d_c00168{left:752.250000px;}
.x14b_c00168{left:753.600000px;}
.x141_c00168{left:755.400000px;}
.xdf_c00168{left:757.350000px;}
.xac_c00168{left:758.850000px;}
.x12c_c00168{left:761.250000px;}
.x3_c00168{left:762.900000px;}
.x121_c00168{left:765.150000px;}
.x4_c00168{left:772.650000px;}
.xfb_c00168{left:774.000000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws1_c00168{word-spacing:-7.358534pt;}
.ws4_c00168{word-spacing:-7.042799pt;}
.ws7_c00168{word-spacing:-3.461988pt;}
.ws6_c00168{word-spacing:-3.147541pt;}
.wsa_c00168{word-spacing:0.000000pt;}
.ws9_c00168{word-spacing:1.825713pt;}
.ws3_c00168{word-spacing:5.797101pt;}
.ws8_c00168{word-spacing:6.527778pt;}
.ws5_c00168{word-spacing:12.804212pt;}
.ws0_c00168{word-spacing:13.339443pt;}
.ws2_c00168{word-spacing:184.393443pt;}
.fs1_c00168{font-size:26.666667pt;}
.fs6_c00168{font-size:32.000000pt;}
.fs2_c00168{font-size:37.333333pt;}
.fs8_c00168{font-size:42.666667pt;}
.fs7_c00168{font-size:48.000000pt;}
.fs5_c00168{font-size:53.333333pt;}
.fs4_c00168{font-size:58.666667pt;}
.fs3_c00168{font-size:64.000000pt;}
.fs0_c00168{font-size:101.333333pt;}
.y0_c00168{bottom:0.000000pt;}
.y33_c00168{bottom:162.000000pt;}
.y73_c00168{bottom:162.800000pt;}
.y32_c00168{bottom:175.066667pt;}
.y72_c00168{bottom:176.266667pt;}
.y31_c00168{bottom:187.866667pt;}
.y71_c00168{bottom:189.066667pt;}
.y30_c00168{bottom:200.666667pt;}
.y70_c00168{bottom:202.533333pt;}
.y6f_c00168{bottom:218.400000pt;}
.y6e_c00168{bottom:230.933333pt;}
.y6d_c00168{bottom:243.733333pt;}
.y2f_c00168{bottom:245.200000pt;}
.y6c_c00168{bottom:256.533333pt;}
.y2e_c00168{bottom:264.666667pt;}
.y6b_c00168{bottom:269.333333pt;}
.y6a_c00168{bottom:282.133333pt;}
.y2d_c00168{bottom:292.133333pt;}
.y69_c00168{bottom:294.666667pt;}
.y68_c00168{bottom:307.466667pt;}
.y67_c00168{bottom:320.266667pt;}
.y2c_c00168{bottom:323.866667pt;}
.y66_c00168{bottom:332.800000pt;}
.y2b_c00168{bottom:343.600000pt;}
.y65_c00168{bottom:345.333333pt;}
.y64_c00168{bottom:358.133333pt;}
.y2a_c00168{bottom:359.600000pt;}
.y63_c00168{bottom:370.933333pt;}
.y29_c00168{bottom:375.333333pt;}
.y62_c00168{bottom:384.000000pt;}
.y28_c00168{bottom:391.333333pt;}
.y61_c00168{bottom:395.600000pt;}
.y60_c00168{bottom:408.666667pt;}
.y27_c00168{bottom:410.933333pt;}
.y5f_c00168{bottom:421.733333pt;}
.y26_c00168{bottom:426.266667pt;}
.y5e_c00168{bottom:434.266667pt;}
.y25_c00168{bottom:442.533333pt;}
.y5d_c00168{bottom:447.333333pt;}
.y24_c00168{bottom:458.266667pt;}
.y5c_c00168{bottom:459.733333pt;}
.y5b_c00168{bottom:472.266667pt;}
.y23_c00168{bottom:474.000000pt;}
.y5a_c00168{bottom:485.733333pt;}
.y22_c00168{bottom:489.733333pt;}
.y59_c00168{bottom:497.600000pt;}
.y21_c00168{bottom:505.733333pt;}
.y58_c00168{bottom:510.666667pt;}
.y20_c00168{bottom:521.733333pt;}
.y57_c00168{bottom:524.133333pt;}
.y56_c00168{bottom:536.266667pt;}
.y1f_c00168{bottom:537.466667pt;}
.y55_c00168{bottom:549.066667pt;}
.y1e_c00168{bottom:553.200000pt;}
.y54_c00168{bottom:561.333333pt;}
.y1d_c00168{bottom:569.200000pt;}
.y53_c00168{bottom:574.400000pt;}
.y1c_c00168{bottom:585.200000pt;}
.y52_c00168{bottom:587.733333pt;}
.y51_c00168{bottom:599.600000pt;}
.y1b_c00168{bottom:600.533333pt;}
.y50_c00168{bottom:611.733333pt;}
.y1a_c00168{bottom:616.266667pt;}
.y4f_c00168{bottom:624.266667pt;}
.y19_c00168{bottom:634.533333pt;}
.y4e_c00168{bottom:637.066667pt;}
.y18_c00168{bottom:647.333333pt;}
.y4d_c00168{bottom:650.533333pt;}
.y17_c00168{bottom:660.800000pt;}
.y4c_c00168{bottom:662.133333pt;}
.y4b_c00168{bottom:675.866667pt;}
.y16_c00168{bottom:678.266667pt;}
.y4a_c00168{bottom:687.333333pt;}
.y15_c00168{bottom:694.000000pt;}
.y49_c00168{bottom:701.066667pt;}
.y14_c00168{bottom:713.866667pt;}
.y48_c00168{bottom:714.266667pt;}
.y47_c00168{bottom:725.466667pt;}
.y13_c00168{bottom:729.600000pt;}
.y46_c00168{bottom:739.200000pt;}
.y12_c00168{bottom:744.933333pt;}
.y11_c00168{bottom:760.666667pt;}
.y45_c00168{bottom:772.000000pt;}
.y10_c00168{bottom:780.533333pt;}
.y44_c00168{bottom:788.000000pt;}
.yf_c00168{bottom:795.866667pt;}
.y43_c00168{bottom:803.733333pt;}
.y42_c00168{bottom:819.466667pt;}
.ye_c00168{bottom:820.133333pt;}
.y41_c00168{bottom:834.533333pt;}
.yd_c00168{bottom:839.733333pt;}
.y40_c00168{bottom:844.266667pt;}
.y3f_c00168{bottom:850.933333pt;}
.yc_c00168{bottom:855.733333pt;}
.y3e_c00168{bottom:864.666667pt;}
.yb_c00168{bottom:875.066667pt;}
.y3d_c00168{bottom:885.733333pt;}
.ya_c00168{bottom:890.800000pt;}
.y3c_c00168{bottom:894.400000pt;}
.y3b_c00168{bottom:904.933333pt;}
.y9_c00168{bottom:906.533333pt;}
.y3a_c00168{bottom:912.666667pt;}
.y38_c00168{bottom:913.866667pt;}
.y39_c00168{bottom:919.333333pt;}
.y8_c00168{bottom:922.266667pt;}
.y37_c00168{bottom:933.733333pt;}
.y7_c00168{bottom:938.533333pt;}
.y6_c00168{bottom:953.866667pt;}
.y36_c00168{bottom:956.533333pt;}
.y35_c00168{bottom:968.933333pt;}
.y5_c00168{bottom:969.866667pt;}
.y34_c00168{bottom:984.666667pt;}
.y4_c00168{bottom:985.600000pt;}
.y2_c00168{bottom:1008.400000pt;}
.y1_c00168{bottom:1008.666667pt;}
.y3_c00168{bottom:1012.266667pt;}
.h3_c00168{height:26.666667pt;}
.h8_c00168{height:32.000000pt;}
.h4_c00168{height:37.333333pt;}
.ha_c00168{height:42.666667pt;}
.h9_c00168{height:48.000000pt;}
.h7_c00168{height:53.333333pt;}
.h6_c00168{height:58.666667pt;}
.h5_c00168{height:64.000000pt;}
.h2_c00168{height:101.333333pt;}
.h0_c00168{height:1127.680013pt;}
.h1_c00168{height:1128.000000pt;}
.w1_c00168{width:856.000000pt;}
.w0_c00168{width:856.319987pt;}
.x0_c00168{left:0.000000pt;}
.x9c_c00168{left:72.933333pt;}
.x5c_c00168{left:75.200000pt;}
.x37_c00168{left:76.133333pt;}
.x43_c00168{left:77.466667pt;}
.x5_c00168{left:78.666667pt;}
.x9f_c00168{left:85.466667pt;}
.x25_c00168{left:87.066667pt;}
.x64_c00168{left:89.200000pt;}
.x97_c00168{left:90.933333pt;}
.x58_c00168{left:91.866667pt;}
.x16_c00168{left:92.933333pt;}
.xd_c00168{left:94.000000pt;}
.x67_c00168{left:102.666667pt;}
.xa3_c00168{left:104.666667pt;}
.x9d_c00168{left:107.200000pt;}
.x47_c00168{left:108.133333pt;}
.xa0_c00168{left:110.133333pt;}
.xe_c00168{left:112.266667pt;}
.x2e_c00168{left:116.666667pt;}
.x98_c00168{left:118.400000pt;}
.xa6_c00168{left:119.600000pt;}
.x7c_c00168{left:121.333333pt;}
.x33_c00168{left:122.666667pt;}
.x8b_c00168{left:124.800000pt;}
.x1f_c00168{left:125.733333pt;}
.x52_c00168{left:127.333333pt;}
.x38_c00168{left:128.266667pt;}
.x86_c00168{left:129.466667pt;}
.x5d_c00168{left:131.200000pt;}
.x26_c00168{left:133.200000pt;}
.x4f_c00168{left:134.666667pt;}
.x75_c00168{left:135.600000pt;}
.x59_c00168{left:138.000000pt;}
.x17_c00168{left:139.066667pt;}
.x4a_c00168{left:142.266667pt;}
.x1c_c00168{left:144.666667pt;}
.xa7_c00168{left:145.866667pt;}
.x39_c00168{left:147.200000pt;}
.x9e_c00168{left:148.133333pt;}
.x44_c00168{left:151.333333pt;}
.x6_c00168{left:152.933333pt;}
.x87_c00168{left:154.133333pt;}
.x2f_c00168{left:156.000000pt;}
.x9b_c00168{left:157.733333pt;}
.x41_c00168{left:159.733333pt;}
.x7d_c00168{left:161.600000pt;}
.x6d_c00168{left:163.066667pt;}
.x1d_c00168{left:164.800000pt;}
.x95_c00168{left:166.666667pt;}
.x20_c00168{left:168.933333pt;}
.x8c_c00168{left:171.866667pt;}
.x27_c00168{left:174.800000pt;}
.x55_c00168{left:175.733333pt;}
.x3a_c00168{left:177.866667pt;}
.xf_c00168{left:179.466667pt;}
.x5a_c00168{left:180.933333pt;}
.x28_c00168{left:182.800000pt;}
.x78_c00168{left:183.733333pt;}
.x7e_c00168{left:184.933333pt;}
.x92_c00168{left:186.400000pt;}
.x7_c00168{left:188.133333pt;}
.xa1_c00168{left:189.733333pt;}
.x21_c00168{left:196.133333pt;}
.x88_c00168{left:198.266667pt;}
.x94_c00168{left:200.533333pt;}
.x8_c00168{left:202.533333pt;}
.x6a_c00168{left:204.133333pt;}
.x42_c00168{left:205.466667pt;}
.x3b_c00168{left:208.000000pt;}
.x29_c00168{left:209.066667pt;}
.x22_c00168{left:210.533333pt;}
.x1e_c00168{left:212.533333pt;}
.x40_c00168{left:214.666667pt;}
.x48_c00168{left:218.133333pt;}
.x5e_c00168{left:219.200000pt;}
.x5b_c00168{left:221.600000pt;}
.x34_c00168{left:222.533333pt;}
.x4b_c00168{left:224.933333pt;}
.x30_c00168{left:226.000000pt;}
.x3c_c00168{left:226.933333pt;}
.x2a_c00168{left:229.600000pt;}
.x76_c00168{left:231.333333pt;}
.x10_c00168{left:233.200000pt;}
.x5f_c00168{left:235.466667pt;}
.x50_c00168{left:236.400000pt;}
.x8d_c00168{left:238.400000pt;}
.xa4_c00168{left:240.933333pt;}
.x79_c00168{left:242.533333pt;}
.x2b_c00168{left:243.733333pt;}
.x84_c00168{left:245.200000pt;}
.x80_c00168{left:248.000000pt;}
.x45_c00168{left:249.866667pt;}
.x53_c00168{left:251.466667pt;}
.x9_c00168{left:252.400000pt;}
.xa8_c00168{left:253.466667pt;}
.x56_c00168{left:254.400000pt;}
.x85_c00168{left:258.666667pt;}
.x68_c00168{left:260.266667pt;}
.x7a_c00168{left:261.466667pt;}
.x81_c00168{left:263.733333pt;}
.x11_c00168{left:265.466667pt;}
.x4c_c00168{left:266.533333pt;}
.x23_c00168{left:267.866667pt;}
.x6e_c00168{left:268.933333pt;}
.x31_c00168{left:272.400000pt;}
.x60_c00168{left:273.466667pt;}
.x51_c00168{left:274.800000pt;}
.x77_c00168{left:277.466667pt;}
.x6b_c00168{left:278.666667pt;}
.x49_c00168{left:279.600000pt;}
.x18_c00168{left:281.200000pt;}
.x82_c00168{left:283.866667pt;}
.x3d_c00168{left:285.066667pt;}
.x61_c00168{left:286.533333pt;}
.x6f_c00168{left:287.866667pt;}
.x7f_c00168{left:288.933333pt;}
.x72_c00168{left:291.066667pt;}
.xa_c00168{left:292.666667pt;}
.x1_c00168{left:295.066667pt;}
.x93_c00168{left:297.866667pt;}
.x6c_c00168{left:300.400000pt;}
.x4d_c00168{left:302.000000pt;}
.x2c_c00168{left:302.933333pt;}
.x57_c00168{left:304.000000pt;}
.x12_c00168{left:305.466667pt;}
.x70_c00168{left:307.066667pt;}
.x9a_c00168{left:309.466667pt;}
.x3e_c00168{left:310.666667pt;}
.xb_c00168{left:311.600000pt;}
.x35_c00168{left:313.733333pt;}
.x83_c00168{left:315.200000pt;}
.x19_c00168{left:316.133333pt;}
.x4e_c00168{left:318.000000pt;}
.x73_c00168{left:319.600000pt;}
.x90_c00168{left:320.800000pt;}
.x7b_c00168{left:322.533333pt;}
.x54_c00168{left:324.266667pt;}
.x71_c00168{left:327.200000pt;}
.xa2_c00168{left:328.400000pt;}
.x13_c00168{left:329.733333pt;}
.x62_c00168{left:331.333333pt;}
.x36_c00168{left:333.200000pt;}
.x24_c00168{left:334.133333pt;}
.x99_c00168{left:335.600000pt;}
.x1a_c00168{left:336.666667pt;}
.x89_c00168{left:337.600000pt;}
.x65_c00168{left:338.800000pt;}
.x32_c00168{left:341.200000pt;}
.x2d_c00168{left:342.266667pt;}
.x46_c00168{left:343.200000pt;}
.x69_c00168{left:344.533333pt;}
.x8e_c00168{left:347.466667pt;}
.xa5_c00168{left:348.400000pt;}
.xc_c00168{left:349.733333pt;}
.x1b_c00168{left:351.066667pt;}
.x91_c00168{left:352.800000pt;}
.x8a_c00168{left:353.866667pt;}
.x3f_c00168{left:354.800000pt;}
.xa9_c00168{left:355.733333pt;}
.x63_c00168{left:361.466667pt;}
.x66_c00168{left:363.466667pt;}
.x74_c00168{left:365.333333pt;}
.x8f_c00168{left:366.400000pt;}
.x96_c00168{left:369.066667pt;}
.x14_c00168{left:371.333333pt;}
.x15_c00168{left:381.600000pt;}
.x145_c00168{left:390.400000pt;}
.x130_c00168{left:391.733333pt;}
.x114_c00168{left:392.933333pt;}
.xb0_c00168{left:393.866667pt;}
.x11e_c00168{left:405.066667pt;}
.xfc_c00168{left:406.400000pt;}
.xf2_c00168{left:407.733333pt;}
.xb7_c00168{left:409.866667pt;}
.x149_c00168{left:411.200000pt;}
.x126_c00168{left:412.266667pt;}
.x137_c00168{left:413.600000pt;}
.x115_c00168{left:415.333333pt;}
.x13b_c00168{left:417.466667pt;}
.x110_c00168{left:419.466667pt;}
.x131_c00168{left:421.466667pt;}
.x11a_c00168{left:422.800000pt;}
.x153_c00168{left:424.400000pt;}
.xad_c00168{left:425.600000pt;}
.xaa_c00168{left:427.466667pt;}
.xfd_c00168{left:428.533333pt;}
.xf3_c00168{left:429.866667pt;}
.x147_c00168{left:432.400000pt;}
.xc1_c00168{left:433.600000pt;}
.x151_c00168{left:435.733333pt;}
.x12d_c00168{left:436.666667pt;}
.xcc_c00168{left:439.333333pt;}
.xec_c00168{left:442.000000pt;}
.x132_c00168{left:442.933333pt;}
.xd8_c00168{left:444.133333pt;}
.xe0_c00168{left:445.733333pt;}
.x10b_c00168{left:446.666667pt;}
.x156_c00168{left:447.600000pt;}
.xf4_c00168{left:449.333333pt;}
.xe1_c00168{left:451.200000pt;}
.x12e_c00168{left:452.933333pt;}
.x154_c00168{left:454.933333pt;}
.xd9_c00168{left:456.000000pt;}
.xb8_c00168{left:456.933333pt;}
.x122_c00168{left:458.133333pt;}
.xb1_c00168{left:461.066667pt;}
.xed_c00168{left:462.533333pt;}
.xcf_c00168{left:464.266667pt;}
.xda_c00168{left:465.600000pt;}
.xe6_c00168{left:467.066667pt;}
.x142_c00168{left:468.266667pt;}
.x158_c00168{left:471.066667pt;}
.xae_c00168{left:472.000000pt;}
.x14e_c00168{left:473.066667pt;}
.xfe_c00168{left:474.533333pt;}
.x128_c00168{left:476.000000pt;}
.x10c_c00168{left:477.066667pt;}
.xab_c00168{left:478.400000pt;}
.xf5_c00168{left:479.733333pt;}
.x13d_c00168{left:481.600000pt;}
.x11f_c00168{left:483.200000pt;}
.x111_c00168{left:484.400000pt;}
.xe2_c00168{left:485.466667pt;}
.x14a_c00168{left:486.666667pt;}
.x138_c00168{left:488.666667pt;}
.x146_c00168{left:490.266667pt;}
.xb9_c00168{left:491.466667pt;}
.xe3_c00168{left:493.066667pt;}
.x123_c00168{left:494.266667pt;}
.x143_c00168{left:495.466667pt;}
.x144_c00168{left:499.333333pt;}
.x135_c00168{left:500.266667pt;}
.x152_c00168{left:501.333333pt;}
.xd0_c00168{left:502.400000pt;}
.xdb_c00168{left:504.266667pt;}
.xee_c00168{left:505.466667pt;}
.x129_c00168{left:506.400000pt;}
.xe7_c00168{left:507.733333pt;}
.x112_c00168{left:510.666667pt;}
.xd1_c00168{left:512.266667pt;}
.xc8_c00168{left:513.600000pt;}
.x157_c00168{left:514.533333pt;}
.xb2_c00168{left:517.733333pt;}
.x14c_c00168{left:518.800000pt;}
.xff_c00168{left:520.266667pt;}
.xc4_c00168{left:522.533333pt;}
.x133_c00168{left:523.733333pt;}
.xba_c00168{left:525.066667pt;}
.xe8_c00168{left:526.266667pt;}
.xf6_c00168{left:528.000000pt;}
.x12f_c00168{left:528.933333pt;}
.x108_c00168{left:530.800000pt;}
.x103_c00168{left:533.200000pt;}
.x124_c00168{left:534.800000pt;}
.x10d_c00168{left:536.000000pt;}
.xef_c00168{left:537.466667pt;}
.xbb_c00168{left:538.800000pt;}
.xc5_c00168{left:539.866667pt;}
.x104_c00168{left:542.133333pt;}
.xd2_c00168{left:544.000000pt;}
.xf7_c00168{left:544.933333pt;}
.x13e_c00168{left:545.866667pt;}
.xd5_c00168{left:547.733333pt;}
.xdc_c00168{left:548.800000pt;}
.xfa_c00168{left:551.066667pt;}
.x140_c00168{left:552.133333pt;}
.x109_c00168{left:553.200000pt;}
.x100_c00168{left:554.800000pt;}
.xf0_c00168{left:556.666667pt;}
.x12a_c00168{left:558.533333pt;}
.xc6_c00168{left:560.000000pt;}
.x117_c00168{left:561.333333pt;}
.x105_c00168{left:563.200000pt;}
.x113_c00168{left:564.666667pt;}
.xe4_c00168{left:566.000000pt;}
.x12b_c00168{left:567.866667pt;}
.xb3_c00168{left:568.933333pt;}
.x148_c00168{left:571.200000pt;}
.x101_c00168{left:572.133333pt;}
.x13c_c00168{left:573.733333pt;}
.xe9_c00168{left:576.133333pt;}
.xb4_c00168{left:577.600000pt;}
.x10e_c00168{left:580.400000pt;}
.xc9_c00168{left:582.666667pt;}
.x14f_c00168{left:584.133333pt;}
.xbc_c00168{left:585.333333pt;}
.xdd_c00168{left:587.200000pt;}
.x11b_c00168{left:588.933333pt;}
.xcd_c00168{left:590.266667pt;}
.x120_c00168{left:592.133333pt;}
.xea_c00168{left:594.000000pt;}
.xbd_c00168{left:594.933333pt;}
.x127_c00168{left:596.400000pt;}
.xce_c00168{left:598.933333pt;}
.x139_c00168{left:600.400000pt;}
.x118_c00168{left:601.333333pt;}
.xc7_c00168{left:602.933333pt;}
.xbe_c00168{left:604.533333pt;}
.x102_c00168{left:605.466667pt;}
.x14d_c00168{left:607.466667pt;}
.xd3_c00168{left:609.200000pt;}
.x10f_c00168{left:614.000000pt;}
.xf8_c00168{left:615.066667pt;}
.xb5_c00168{left:616.666667pt;}
.xd6_c00168{left:618.800000pt;}
.xe5_c00168{left:620.666667pt;}
.x134_c00168{left:621.600000pt;}
.x106_c00168{left:622.666667pt;}
.xca_c00168{left:624.000000pt;}
.xc2_c00168{left:625.333333pt;}
.xd7_c00168{left:628.133333pt;}
.xd4_c00168{left:629.066667pt;}
.x155_c00168{left:631.733333pt;}
.xbf_c00168{left:634.666667pt;}
.x107_c00168{left:636.400000pt;}
.xf1_c00168{left:638.000000pt;}
.x116_c00168{left:638.933333pt;}
.xb6_c00168{left:640.933333pt;}
.x10a_c00168{left:641.866667pt;}
.x13f_c00168{left:643.200000pt;}
.xeb_c00168{left:644.266667pt;}
.xc3_c00168{left:645.200000pt;}
.x11c_c00168{left:646.266667pt;}
.x119_c00168{left:647.466667pt;}
.xc0_c00168{left:649.333333pt;}
.xde_c00168{left:650.533333pt;}
.xcb_c00168{left:654.133333pt;}
.x150_c00168{left:655.866667pt;}
.x13a_c00168{left:656.800000pt;}
.x136_c00168{left:659.333333pt;}
.x125_c00168{left:661.866667pt;}
.xf9_c00168{left:663.466667pt;}
.xaf_c00168{left:665.333333pt;}
.x2_c00168{left:666.933333pt;}
.x11d_c00168{left:668.666667pt;}
.x14b_c00168{left:669.866667pt;}
.x141_c00168{left:671.466667pt;}
.xdf_c00168{left:673.200000pt;}
.xac_c00168{left:674.533333pt;}
.x12c_c00168{left:676.666667pt;}
.x3_c00168{left:678.133333pt;}
.x121_c00168{left:680.133333pt;}
.x4_c00168{left:686.800000pt;}
.xfb_c00168{left:688.000000pt;}
}





/* 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_c00169 {
    display:none;
  }
  .loading-indicator_c00169.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00169 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_c00169 { 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_c00169" -> "#page-container .classname_c00169")
 */
.pf_c00169 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00169 { /* 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_c00169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00169 { /* 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_c00169 { /* 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_c00169 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00169 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00169 {overflow:visible;}
  }
}
.c_c00169 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00169 { /* 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_c00169:after { /* webkit #35443 */
  content: '';
}
.t_c00169:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00169 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 */
}
.__c00169 { /* 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_c00169 { /* info for Javascript */
  display:none;
}
.l_c00169 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00169 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00169 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00169: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_c00169 {
    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_c00169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00169.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_c00169 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00169;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.000000;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;}
.m7a_c00169{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m77_c00169{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00169{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.m103_c00169{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m83_c00169{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m44_c00169{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00169{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m73_c00169{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00169{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00169{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m51_c00169{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00169{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00169{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m100_c00169{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m32_c00169{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m0_c00169{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.md2_c00169{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00169{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00169{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00169{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m105_c00169{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m80_c00169{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00169{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mff_c00169{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00169{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m108_c00169{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00169{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00169{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m109_c00169{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00169{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00169{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m107_c00169{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00169{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00169{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m52_c00169{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m87_c00169{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00169{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mac_c00169{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00169{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00169{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m54_c00169{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.meb_c00169{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m90_c00169{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m57_c00169{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00169{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00169{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m98_c00169{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md1_c00169{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00169{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m36_c00169{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00169{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md_c00169{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me3_c00169{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00169{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m117_c00169{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mc_c00169{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00169{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb_c00169{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.md0_c00169{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00169{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me8_c00169{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m15_c00169{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me7_c00169{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m81_c00169{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m86_c00169{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00169{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.me9_c00169{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m112_c00169{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me6_c00169{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6_c00169{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.maf_c00169{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m25_c00169{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.md7_c00169{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00169{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.me4_c00169{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m8_c00169{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m38_c00169{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00169{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m53_c00169{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00169{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00169{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00169{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00169{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m67_c00169{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m27_c00169{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00169{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m22_c00169{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mba_c00169{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m11_c00169{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00169{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00169{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m69_c00169{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m24_c00169{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00169{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m55_c00169{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00169{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me5_c00169{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m7_c00169{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me0_c00169{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00169{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m65_c00169{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00169{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m60_c00169{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m33_c00169{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00169{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m58_c00169{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00169{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00169{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.me_c00169{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00169{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m21_c00169{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00169{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00169{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mae_c00169{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m23_c00169{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m64_c00169{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m104_c00169{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00169{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m12_c00169{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m75_c00169{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m19_c00169{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00169{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m82_c00169{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md4_c00169{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00169{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m114_c00169{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m10_c00169{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mce_c00169{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00169{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00169{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m28_c00169{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me1_c00169{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.maa_c00169{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m43_c00169{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m96_c00169{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m18_c00169{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00169{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md5_c00169{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00169{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00169{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00169{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m61_c00169{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00169{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00169{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mea_c00169{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m45_c00169{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md6_c00169{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m31_c00169{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf_c00169{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md3_c00169{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00169{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00169{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00169{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4_c00169{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m29_c00169{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m41_c00169{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m115_c00169{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m26_c00169{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00169{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m13_c00169{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00169{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00169{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m49_c00169{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mda_c00169{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m71_c00169{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m116_c00169{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.me2_c00169{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m42_c00169{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m106_c00169{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00169{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00169{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m89_c00169{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma_c00169{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m30_c00169{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m97_c00169{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mab_c00169{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m92_c00169{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00169{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00169{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00169{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00169{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00169{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m50_c00169{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00169{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00169{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m56_c00169{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m39_c00169{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mde_c00169{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00169{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m16_c00169{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m46_c00169{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m20_c00169{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m113_c00169{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00169{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m110_c00169{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m111_c00169{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00169{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00169{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00169{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00169{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00169{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m79_c00169{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m35_c00169{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m102_c00169{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00169{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00169{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00169{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00169{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00169{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m17_c00169{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00169{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00169{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mad_c00169{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00169{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m68_c00169{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m63_c00169{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00169{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m70_c00169{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m9_c00169{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m99_c00169{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00169{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m37_c00169{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m62_c00169{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5_c00169{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00169{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00169{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m76_c00169{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m66_c00169{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m84_c00169{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m40_c00169{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14_c00169{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m101_c00169{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m47_c00169{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00169{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00169{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);}
.m34_c00169{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00169{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00169{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m72_c00169{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mef_c00169{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00169{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00169{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m59_c00169{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00169{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m74_c00169{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00169{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00169{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00169{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md8_c00169{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00169{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00169{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00169{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00169{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00169{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00169{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m95_c00169{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00169{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00169{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00169{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mec_c00169{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m78_c00169{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m91_c00169{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.med_c00169{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mee_c00169{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00169{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mca_c00169{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00169{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m85_c00169{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m88_c00169{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m94_c00169{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00169{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00169{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m93_c00169{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.md9_c00169{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00169{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m48_c00169{transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00169{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m118_c00169{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls0_c00169{letter-spacing:0.000000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{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__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00169{word-spacing:-3.225806px;}
.ws4_c00169{word-spacing:-1.865330px;}
.ws6_c00169{word-spacing:0.000000px;}
.ws0_c00169{word-spacing:4.833333px;}
.ws2_c00169{word-spacing:7.912424px;}
.ws1_c00169{word-spacing:11.470588px;}
.ws3_c00169{word-spacing:19.227496px;}
.fc0_c00169{color:transparent;}
.fs6_c00169{font-size:24.000000px;}
.fs5_c00169{font-size:54.000000px;}
.fs2_c00169{font-size:60.000000px;}
.fs3_c00169{font-size:66.000000px;}
.fs4_c00169{font-size:72.000000px;}
.fs1_c00169{font-size:78.000000px;}
.fs0_c00169{font-size:84.000000px;}
.y0_c00169{bottom:0.000000px;}
.y66_c00169{bottom:161.250000px;}
.y65_c00169{bottom:185.400000px;}
.y31_c00169{bottom:186.150000px;}
.y64_c00169{bottom:203.100000px;}
.y30_c00169{bottom:204.150000px;}
.y63_c00169{bottom:221.100000px;}
.y2f_c00169{bottom:222.000000px;}
.y62_c00169{bottom:238.350000px;}
.y2e_c00169{bottom:239.700000px;}
.y61_c00169{bottom:256.050000px;}
.y2d_c00169{bottom:257.400000px;}
.y60_c00169{bottom:274.050000px;}
.y2c_c00169{bottom:283.050000px;}
.y5f_c00169{bottom:292.050000px;}
.y2b_c00169{bottom:301.350000px;}
.y5e_c00169{bottom:309.750000px;}
.y2a_c00169{bottom:318.900000px;}
.y5d_c00169{bottom:328.050000px;}
.y29_c00169{bottom:336.900000px;}
.y5c_c00169{bottom:345.300000px;}
.y28_c00169{bottom:354.600000px;}
.y5b_c00169{bottom:365.850000px;}
.y27_c00169{bottom:371.850000px;}
.y5a_c00169{bottom:379.500000px;}
.y26_c00169{bottom:389.850000px;}
.y59_c00169{bottom:394.500000px;}
.y25_c00169{bottom:407.850000px;}
.y58_c00169{bottom:415.350000px;}
.y24_c00169{bottom:425.850000px;}
.y57_c00169{bottom:433.350000px;}
.y23_c00169{bottom:443.550000px;}
.y56_c00169{bottom:450.600000px;}
.y22_c00169{bottom:461.550000px;}
.y55_c00169{bottom:468.600000px;}
.y21_c00169{bottom:482.700000px;}
.y54_c00169{bottom:486.300000px;}
.y20_c00169{bottom:500.700000px;}
.y53_c00169{bottom:508.500000px;}
.y52_c00169{bottom:526.200000px;}
.y1f_c00169{bottom:535.650000px;}
.y51_c00169{bottom:544.200000px;}
.y1e_c00169{bottom:561.300000px;}
.y50_c00169{bottom:561.900000px;}
.y1d_c00169{bottom:579.600000px;}
.y4f_c00169{bottom:584.250000px;}
.y1c_c00169{bottom:597.300000px;}
.y4e_c00169{bottom:601.500000px;}
.y1b_c00169{bottom:615.000000px;}
.y1a_c00169{bottom:632.700000px;}
.y4d_c00169{bottom:637.350000px;}
.y19_c00169{bottom:651.000000px;}
.y4c_c00169{bottom:655.650000px;}
.y18_c00169{bottom:668.700000px;}
.y4b_c00169{bottom:672.900000px;}
.y17_c00169{bottom:686.400000px;}
.y4a_c00169{bottom:694.800000px;}
.y16_c00169{bottom:704.400000px;}
.y49_c00169{bottom:713.100000px;}
.y15_c00169{bottom:722.100000px;}
.y48_c00169{bottom:739.800000px;}
.y14_c00169{bottom:740.100000px;}
.y47_c00169{bottom:757.050000px;}
.y13_c00169{bottom:757.800000px;}
.y46_c00169{bottom:775.050000px;}
.y12_c00169{bottom:775.500000px;}
.y45_c00169{bottom:792.750000px;}
.y11_c00169{bottom:801.300000px;}
.y44_c00169{bottom:810.450000px;}
.y10_c00169{bottom:823.500000px;}
.y43_c00169{bottom:828.150000px;}
.yf_c00169{bottom:841.200000px;}
.y42_c00169{bottom:845.850000px;}
.ye_c00169{bottom:858.900000px;}
.y41_c00169{bottom:863.850000px;}
.yd_c00169{bottom:880.950000px;}
.y40_c00169{bottom:881.550000px;}
.y3f_c00169{bottom:899.550000px;}
.yc_c00169{bottom:903.150000px;}
.y3e_c00169{bottom:917.250000px;}
.yb_c00169{bottom:920.850000px;}
.y3d_c00169{bottom:935.250000px;}
.ya_c00169{bottom:938.850000px;}
.y3c_c00169{bottom:952.500000px;}
.y9_c00169{bottom:956.550000px;}
.y3b_c00169{bottom:970.500000px;}
.y8_c00169{bottom:978.450000px;}
.y3a_c00169{bottom:988.200000px;}
.y7_c00169{bottom:996.450000px;}
.y39_c00169{bottom:1005.900000px;}
.y6_c00169{bottom:1014.150000px;}
.y38_c00169{bottom:1023.150000px;}
.y5_c00169{bottom:1036.050000px;}
.y37_c00169{bottom:1041.450000px;}
.y4_c00169{bottom:1054.050000px;}
.y36_c00169{bottom:1065.600000px;}
.y3_c00169{bottom:1071.750000px;}
.y35_c00169{bottom:1084.350000px;}
.y2_c00169{bottom:1093.350000px;}
.y34_c00169{bottom:1098.450000px;}
.y32_c00169{bottom:1110.900000px;}
.y33_c00169{bottom:1113.900000px;}
.y1_c00169{bottom:1137.300000px;}
.h8_c00169{height:24.000000px;}
.h7_c00169{height:54.000000px;}
.h4_c00169{height:60.000000px;}
.h5_c00169{height:66.000000px;}
.h6_c00169{height:72.000000px;}
.h3_c00169{height:78.000000px;}
.h2_c00169{height:84.000000px;}
.h1_c00169{height:1267.500000px;}
.h0_c00169{height:1267.559967px;}
.w1_c00169{width:963.000000px;}
.w0_c00169{width:963.359985px;}
.x0_c00169{left:0.000000px;}
.x7e_c00169{left:189.750000px;}
.x1_c00169{left:191.100000px;}
.x50_c00169{left:195.900000px;}
.x7f_c00169{left:198.000000px;}
.x80_c00169{left:199.500000px;}
.x99_c00169{left:200.550000px;}
.xa4_c00169{left:208.500000px;}
.x4_c00169{left:209.550000px;}
.xd_c00169{left:211.200000px;}
.x2e_c00169{left:212.400000px;}
.x4a_c00169{left:213.750000px;}
.x55_c00169{left:214.800000px;}
.x82_c00169{left:216.150000px;}
.x88_c00169{left:217.200000px;}
.x95_c00169{left:218.550000px;}
.x9a_c00169{left:224.250000px;}
.x5_c00169{left:229.350000px;}
.x3d_c00169{left:230.700000px;}
.x4d_c00169{left:233.700000px;}
.x83_c00169{left:234.750000px;}
.x9b_c00169{left:242.250000px;}
.x5f_c00169{left:244.200000px;}
.x1f_c00169{left:245.400000px;}
.x26_c00169{left:247.950000px;}
.x96_c00169{left:249.900000px;}
.x79_c00169{left:251.100000px;}
.x13_c00169{left:252.450000px;}
.x6b_c00169{left:255.000000px;}
.x51_c00169{left:256.050000px;}
.xe_c00169{left:258.000000px;}
.x17_c00169{left:259.500000px;}
.x42_c00169{left:261.600000px;}
.x3c_c00169{left:262.800000px;}
.xa2_c00169{left:263.850000px;}
.x27_c00169{left:265.200000px;}
.x73_c00169{left:266.850000px;}
.x5a_c00169{left:268.350000px;}
.x56_c00169{left:269.550000px;}
.x8d_c00169{left:271.800000px;}
.x3e_c00169{left:273.150000px;}
.x6c_c00169{left:274.500000px;}
.x52_c00169{left:275.850000px;}
.x4e_c00169{left:277.200000px;}
.x8b_c00169{left:280.500000px;}
.x6f_c00169{left:281.700000px;}
.x97_c00169{left:283.800000px;}
.x6_c00169{left:286.200000px;}
.x65_c00169{left:287.700000px;}
.x92_c00169{left:289.800000px;}
.x2f_c00169{left:291.900000px;}
.x43_c00169{left:293.250000px;}
.x34_c00169{left:295.350000px;}
.x84_c00169{left:296.700000px;}
.x60_c00169{left:297.900000px;}
.x93_c00169{left:300.900000px;}
.x70_c00169{left:302.250000px;}
.x5b_c00169{left:305.850000px;}
.x18_c00169{left:307.350000px;}
.x28_c00169{left:310.200000px;}
.x68_c00169{left:311.700000px;}
.x7b_c00169{left:313.650000px;}
.xf_c00169{left:315.300000px;}
.x7_c00169{left:316.500000px;}
.x44_c00169{left:318.150000px;}
.x85_c00169{left:319.350000px;}
.x8f_c00169{left:320.850000px;}
.x6d_c00169{left:322.800000px;}
.x61_c00169{left:324.150000px;}
.x75_c00169{left:325.200000px;}
.xa3_c00169{left:326.550000px;}
.x20_c00169{left:327.900000px;}
.x35_c00169{left:329.850000px;}
.x10_c00169{left:331.200000px;}
.x3f_c00169{left:334.650000px;}
.x57_c00169{left:336.450000px;}
.x2a_c00169{left:339.450000px;}
.x76_c00169{left:344.700000px;}
.x66_c00169{left:345.900000px;}
.x9c_c00169{left:347.400000px;}
.x40_c00169{left:348.750000px;}
.x4b_c00169{left:350.550000px;}
.x21_c00169{left:352.350000px;}
.x2b_c00169{left:353.850000px;}
.x8c_c00169{left:355.050000px;}
.x11_c00169{left:356.400000px;}
.x4f_c00169{left:357.900000px;}
.x81_c00169{left:360.900000px;}
.x94_c00169{left:362.400000px;}
.x36_c00169{left:363.750000px;}
.x4c_c00169{left:368.850000px;}
.x22_c00169{left:371.400000px;}
.x14_c00169{left:372.750000px;}
.x19_c00169{left:374.700000px;}
.x91_c00169{left:375.750000px;}
.x8e_c00169{left:376.950000px;}
.x9d_c00169{left:379.500000px;}
.x30_c00169{left:381.450000px;}
.x8_c00169{left:382.800000px;}
.x5c_c00169{left:384.000000px;}
.x37_c00169{left:386.850000px;}
.x74_c00169{left:389.250000px;}
.x45_c00169{left:391.650000px;}
.x86_c00169{left:397.800000px;}
.x46_c00169{left:399.150000px;}
.x29_c00169{left:401.250000px;}
.x31_c00169{left:403.050000px;}
.x8a_c00169{left:405.150000px;}
.x5d_c00169{left:406.650000px;}
.x9_c00169{left:407.700000px;}
.x7c_c00169{left:409.500000px;}
.x62_c00169{left:410.850000px;}
.x7a_c00169{left:413.250000px;}
.x69_c00169{left:415.200000px;}
.x9e_c00169{left:416.400000px;}
.x38_c00169{left:417.750000px;}
.x6e_c00169{left:420.000000px;}
.x23_c00169{left:421.500000px;}
.x2_c00169{left:424.800000px;}
.x58_c00169{left:427.950000px;}
.x39_c00169{left:429.600000px;}
.x9f_c00169{left:431.550000px;}
.x1a_c00169{left:432.600000px;}
.x53_c00169{left:434.400000px;}
.xa5_c00169{left:435.600000px;}
.xa_c00169{left:437.250000px;}
.x5e_c00169{left:440.100000px;}
.x47_c00169{left:441.600000px;}
.x15_c00169{left:443.250000px;}
.x77_c00169{left:445.200000px;}
.x63_c00169{left:446.550000px;}
.x3a_c00169{left:449.400000px;}
.x32_c00169{left:450.900000px;}
.xa0_c00169{left:453.150000px;}
.x1b_c00169{left:454.500000px;}
.x24_c00169{left:458.550000px;}
.x16_c00169{left:460.500000px;}
.x71_c00169{left:462.750000px;}
.x6a_c00169{left:464.850000px;}
.x48_c00169{left:466.050000px;}
.x2c_c00169{left:467.700000px;}
.x25_c00169{left:469.350000px;}
.x33_c00169{left:475.350000px;}
.x41_c00169{left:477.300000px;}
.x90_c00169{left:479.550000px;}
.xb_c00169{left:481.950000px;}
.x89_c00169{left:483.750000px;}
.x59_c00169{left:484.800000px;}
.x1c_c00169{left:486.600000px;}
.x64_c00169{left:489.750000px;}
.x12_c00169{left:491.100000px;}
.x49_c00169{left:493.050000px;}
.x3b_c00169{left:494.700000px;}
.x1d_c00169{left:496.350000px;}
.xa1_c00169{left:497.850000px;}
.x2d_c00169{left:501.900000px;}
.x67_c00169{left:504.300000px;}
.x7d_c00169{left:508.050000px;}
.xc_c00169{left:509.250000px;}
.x54_c00169{left:511.500000px;}
.x1e_c00169{left:513.300000px;}
.x78_c00169{left:516.450000px;}
.x72_c00169{left:519.600000px;}
.x98_c00169{left:521.100000px;}
.x87_c00169{left:527.850000px;}
.xa6_c00169{left:547.500000px;}
.xb9_c00169{left:548.700000px;}
.x109_c00169{left:550.800000px;}
.x119_c00169{left:552.900000px;}
.x12c_c00169{left:554.100000px;}
.xaf_c00169{left:561.600000px;}
.xbf_c00169{left:566.700000px;}
.xd3_c00169{left:567.750000px;}
.xfe_c00169{left:569.100000px;}
.x120_c00169{left:571.050000px;}
.x12a_c00169{left:572.550000px;}
.xb3_c00169{left:576.300000px;}
.xb5_c00169{left:577.800000px;}
.x12b_c00169{left:583.350000px;}
.xd4_c00169{left:588.300000px;}
.x11c_c00169{left:589.350000px;}
.xc0_c00169{left:591.900000px;}
.xc7_c00169{left:595.050000px;}
.x11a_c00169{left:596.850000px;}
.x12d_c00169{left:598.050000px;}
.x100_c00169{left:599.250000px;}
.xc8_c00169{left:603.000000px;}
.xb4_c00169{left:606.150000px;}
.xf8_c00169{left:609.900000px;}
.xa7_c00169{left:611.550000px;}
.x10a_c00169{left:612.750000px;}
.xdb_c00169{left:613.800000px;}
.x13e_c00169{left:615.600000px;}
.x106_c00169{left:617.400000px;}
.xce_c00169{left:618.600000px;}
.x10f_c00169{left:622.800000px;}
.xf3_c00169{left:623.850000px;}
.xef_c00169{left:629.550000px;}
.xe0_c00169{left:630.900000px;}
.xb6_c00169{left:632.100000px;}
.x117_c00169{left:634.500000px;}
.xba_c00169{left:636.150000px;}
.x103_c00169{left:637.650000px;}
.xea_c00169{left:640.200000px;}
.x13d_c00169{left:642.300000px;}
.x133_c00169{left:643.500000px;}
.xc1_c00169{left:645.600000px;}
.xd5_c00169{left:648.750000px;}
.xb7_c00169{left:651.150000px;}
.x124_c00169{left:654.450000px;}
.xf4_c00169{left:655.950000px;}
.x10b_c00169{left:658.050000px;}
.x135_c00169{left:661.800000px;}
.x112_c00169{left:662.850000px;}
.x132_c00169{left:665.100000px;}
.x12e_c00169{left:666.450000px;}
.xdc_c00169{left:667.500000px;}
.xeb_c00169{left:670.050000px;}
.xe4_c00169{left:671.400000px;}
.xa8_c00169{left:673.800000px;}
.x140_c00169{left:678.000000px;}
.xd6_c00169{left:679.050000px;}
.xc9_c00169{left:680.700000px;}
.xdd_c00169{left:682.650000px;}
.x113_c00169{left:684.450000px;}
.xbb_c00169{left:687.300000px;}
.xb8_c00169{left:688.650000px;}
.x118_c00169{left:690.300000px;}
.x13f_c00169{left:691.350000px;}
.xe5_c00169{left:693.300000px;}
.x143_c00169{left:697.650000px;}
.xf9_c00169{left:698.850000px;}
.x110_c00169{left:699.900000px;}
.xf0_c00169{left:701.250000px;}
.xc2_c00169{left:706.050000px;}
.x12f_c00169{left:707.850000px;}
.xca_c00169{left:709.500000px;}
.xf5_c00169{left:711.450000px;}
.x138_c00169{left:712.800000px;}
.xa9_c00169{left:714.900000px;}
.x107_c00169{left:716.850000px;}
.xd7_c00169{left:719.700000px;}
.x125_c00169{left:721.050000px;}
.x10c_c00169{left:722.250000px;}
.xf1_c00169{left:724.650000px;}
.x137_c00169{left:728.850000px;}
.xe1_c00169{left:730.350000px;}
.x136_c00169{left:733.800000px;}
.xaa_c00169{left:736.800000px;}
.x130_c00169{left:739.500000px;}
.xd8_c00169{left:743.400000px;}
.x139_c00169{left:744.450000px;}
.x126_c00169{left:745.500000px;}
.xc3_c00169{left:748.500000px;}
.xde_c00169{left:749.550000px;}
.xcf_c00169{left:752.550000px;}
.xbc_c00169{left:753.900000px;}
.xab_c00169{left:755.550000px;}
.xf2_c00169{left:756.750000px;}
.x114_c00169{left:759.300000px;}
.xfa_c00169{left:760.350000px;}
.xcb_c00169{left:763.200000px;}
.xd9_c00169{left:764.250000px;}
.xe6_c00169{left:765.600000px;}
.xff_c00169{left:767.550000px;}
.xec_c00169{left:769.350000px;}
.x115_c00169{left:770.400000px;}
.xbd_c00169{left:773.700000px;}
.xf6_c00169{left:776.700000px;}
.x3_c00169{left:779.700000px;}
.x104_c00169{left:781.650000px;}
.x11d_c00169{left:783.450000px;}
.xed_c00169{left:785.400000px;}
.xac_c00169{left:786.900000px;}
.x108_c00169{left:788.550000px;}
.xd0_c00169{left:790.650000px;}
.x111_c00169{left:791.700000px;}
.x121_c00169{left:792.900000px;}
.x101_c00169{left:793.950000px;}
.x11e_c00169{left:796.050000px;}
.xcc_c00169{left:798.150000px;}
.xc4_c00169{left:802.800000px;}
.xad_c00169{left:804.900000px;}
.x122_c00169{left:806.550000px;}
.x11f_c00169{left:808.350000px;}
.x131_c00169{left:809.400000px;}
.xe2_c00169{left:811.800000px;}
.xb0_c00169{left:813.600000px;}
.x116_c00169{left:814.650000px;}
.x141_c00169{left:816.750000px;}
.x13c_c00169{left:818.250000px;}
.xe7_c00169{left:819.600000px;}
.x134_c00169{left:820.950000px;}
.xfb_c00169{left:822.300000px;}
.xf7_c00169{left:825.600000px;}
.xd1_c00169{left:827.700000px;}
.x102_c00169{left:829.650000px;}
.xfc_c00169{left:831.600000px;}
.x127_c00169{left:834.150000px;}
.xae_c00169{left:835.500000px;}
.xc5_c00169{left:837.000000px;}
.x10d_c00169{left:839.250000px;}
.x13a_c00169{left:840.450000px;}
.xb1_c00169{left:842.700000px;}
.x11b_c00169{left:844.500000px;}
.x105_c00169{left:846.000000px;}
.xcd_c00169{left:847.200000px;}
.x142_c00169{left:849.600000px;}
.x128_c00169{left:851.100000px;}
.xe8_c00169{left:855.600000px;}
.x123_c00169{left:856.650000px;}
.xda_c00169{left:858.600000px;}
.xbe_c00169{left:859.800000px;}
.xd2_c00169{left:860.850000px;}
.xc6_c00169{left:862.200000px;}
.xee_c00169{left:863.850000px;}
.xe9_c00169{left:864.900000px;}
.xdf_c00169{left:867.300000px;}
.xfd_c00169{left:869.400000px;}
.xb2_c00169{left:870.750000px;}
.x13b_c00169{left:873.900000px;}
.x10e_c00169{left:875.250000px;}
.x129_c00169{left:877.800000px;}
.xe3_c00169{left:879.450000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws5_c00169{word-spacing:-2.867384pt;}
.ws4_c00169{word-spacing:-1.658071pt;}
.ws6_c00169{word-spacing:0.000000pt;}
.ws0_c00169{word-spacing:4.296296pt;}
.ws2_c00169{word-spacing:7.033265pt;}
.ws1_c00169{word-spacing:10.196078pt;}
.ws3_c00169{word-spacing:17.091107pt;}
.fs6_c00169{font-size:21.333333pt;}
.fs5_c00169{font-size:48.000000pt;}
.fs2_c00169{font-size:53.333333pt;}
.fs3_c00169{font-size:58.666667pt;}
.fs4_c00169{font-size:64.000000pt;}
.fs1_c00169{font-size:69.333333pt;}
.fs0_c00169{font-size:74.666667pt;}
.y0_c00169{bottom:0.000000pt;}
.y66_c00169{bottom:143.333333pt;}
.y65_c00169{bottom:164.800000pt;}
.y31_c00169{bottom:165.466667pt;}
.y64_c00169{bottom:180.533333pt;}
.y30_c00169{bottom:181.466667pt;}
.y63_c00169{bottom:196.533333pt;}
.y2f_c00169{bottom:197.333333pt;}
.y62_c00169{bottom:211.866667pt;}
.y2e_c00169{bottom:213.066667pt;}
.y61_c00169{bottom:227.600000pt;}
.y2d_c00169{bottom:228.800000pt;}
.y60_c00169{bottom:243.600000pt;}
.y2c_c00169{bottom:251.600000pt;}
.y5f_c00169{bottom:259.600000pt;}
.y2b_c00169{bottom:267.866667pt;}
.y5e_c00169{bottom:275.333333pt;}
.y2a_c00169{bottom:283.466667pt;}
.y5d_c00169{bottom:291.600000pt;}
.y29_c00169{bottom:299.466667pt;}
.y5c_c00169{bottom:306.933333pt;}
.y28_c00169{bottom:315.200000pt;}
.y5b_c00169{bottom:325.200000pt;}
.y27_c00169{bottom:330.533333pt;}
.y5a_c00169{bottom:337.333333pt;}
.y26_c00169{bottom:346.533333pt;}
.y59_c00169{bottom:350.666667pt;}
.y25_c00169{bottom:362.533333pt;}
.y58_c00169{bottom:369.200000pt;}
.y24_c00169{bottom:378.533333pt;}
.y57_c00169{bottom:385.200000pt;}
.y23_c00169{bottom:394.266667pt;}
.y56_c00169{bottom:400.533333pt;}
.y22_c00169{bottom:410.266667pt;}
.y55_c00169{bottom:416.533333pt;}
.y21_c00169{bottom:429.066667pt;}
.y54_c00169{bottom:432.266667pt;}
.y20_c00169{bottom:445.066667pt;}
.y53_c00169{bottom:452.000000pt;}
.y52_c00169{bottom:467.733333pt;}
.y1f_c00169{bottom:476.133333pt;}
.y51_c00169{bottom:483.733333pt;}
.y1e_c00169{bottom:498.933333pt;}
.y50_c00169{bottom:499.466667pt;}
.y1d_c00169{bottom:515.200000pt;}
.y4f_c00169{bottom:519.333333pt;}
.y1c_c00169{bottom:530.933333pt;}
.y4e_c00169{bottom:534.666667pt;}
.y1b_c00169{bottom:546.666667pt;}
.y1a_c00169{bottom:562.400000pt;}
.y4d_c00169{bottom:566.533333pt;}
.y19_c00169{bottom:578.666667pt;}
.y4c_c00169{bottom:582.800000pt;}
.y18_c00169{bottom:594.400000pt;}
.y4b_c00169{bottom:598.133333pt;}
.y17_c00169{bottom:610.133333pt;}
.y4a_c00169{bottom:617.600000pt;}
.y16_c00169{bottom:626.133333pt;}
.y49_c00169{bottom:633.866667pt;}
.y15_c00169{bottom:641.866667pt;}
.y48_c00169{bottom:657.600000pt;}
.y14_c00169{bottom:657.866667pt;}
.y47_c00169{bottom:672.933333pt;}
.y13_c00169{bottom:673.600000pt;}
.y46_c00169{bottom:688.933333pt;}
.y12_c00169{bottom:689.333333pt;}
.y45_c00169{bottom:704.666667pt;}
.y11_c00169{bottom:712.266667pt;}
.y44_c00169{bottom:720.400000pt;}
.y10_c00169{bottom:732.000000pt;}
.y43_c00169{bottom:736.133333pt;}
.yf_c00169{bottom:747.733333pt;}
.y42_c00169{bottom:751.866667pt;}
.ye_c00169{bottom:763.466667pt;}
.y41_c00169{bottom:767.866667pt;}
.yd_c00169{bottom:783.066667pt;}
.y40_c00169{bottom:783.600000pt;}
.y3f_c00169{bottom:799.600000pt;}
.yc_c00169{bottom:802.800000pt;}
.y3e_c00169{bottom:815.333333pt;}
.yb_c00169{bottom:818.533333pt;}
.y3d_c00169{bottom:831.333333pt;}
.ya_c00169{bottom:834.533333pt;}
.y3c_c00169{bottom:846.666667pt;}
.y9_c00169{bottom:850.266667pt;}
.y3b_c00169{bottom:862.666667pt;}
.y8_c00169{bottom:869.733333pt;}
.y3a_c00169{bottom:878.400000pt;}
.y7_c00169{bottom:885.733333pt;}
.y39_c00169{bottom:894.133333pt;}
.y6_c00169{bottom:901.466667pt;}
.y38_c00169{bottom:909.466667pt;}
.y5_c00169{bottom:920.933333pt;}
.y37_c00169{bottom:925.733333pt;}
.y4_c00169{bottom:936.933333pt;}
.y36_c00169{bottom:947.200000pt;}
.y3_c00169{bottom:952.666667pt;}
.y35_c00169{bottom:963.866667pt;}
.y2_c00169{bottom:971.866667pt;}
.y34_c00169{bottom:976.400000pt;}
.y32_c00169{bottom:987.466667pt;}
.y33_c00169{bottom:990.133333pt;}
.y1_c00169{bottom:1010.933333pt;}
.h8_c00169{height:21.333333pt;}
.h7_c00169{height:48.000000pt;}
.h4_c00169{height:53.333333pt;}
.h5_c00169{height:58.666667pt;}
.h6_c00169{height:64.000000pt;}
.h3_c00169{height:69.333333pt;}
.h2_c00169{height:74.666667pt;}
.h1_c00169{height:1126.666667pt;}
.h0_c00169{height:1126.719971pt;}
.w1_c00169{width:856.000000pt;}
.w0_c00169{width:856.319987pt;}
.x0_c00169{left:0.000000pt;}
.x7e_c00169{left:168.666667pt;}
.x1_c00169{left:169.866667pt;}
.x50_c00169{left:174.133333pt;}
.x7f_c00169{left:176.000000pt;}
.x80_c00169{left:177.333333pt;}
.x99_c00169{left:178.266667pt;}
.xa4_c00169{left:185.333333pt;}
.x4_c00169{left:186.266667pt;}
.xd_c00169{left:187.733333pt;}
.x2e_c00169{left:188.800000pt;}
.x4a_c00169{left:190.000000pt;}
.x55_c00169{left:190.933333pt;}
.x82_c00169{left:192.133333pt;}
.x88_c00169{left:193.066667pt;}
.x95_c00169{left:194.266667pt;}
.x9a_c00169{left:199.333333pt;}
.x5_c00169{left:203.866667pt;}
.x3d_c00169{left:205.066667pt;}
.x4d_c00169{left:207.733333pt;}
.x83_c00169{left:208.666667pt;}
.x9b_c00169{left:215.333333pt;}
.x5f_c00169{left:217.066667pt;}
.x1f_c00169{left:218.133333pt;}
.x26_c00169{left:220.400000pt;}
.x96_c00169{left:222.133333pt;}
.x79_c00169{left:223.200000pt;}
.x13_c00169{left:224.400000pt;}
.x6b_c00169{left:226.666667pt;}
.x51_c00169{left:227.600000pt;}
.xe_c00169{left:229.333333pt;}
.x17_c00169{left:230.666667pt;}
.x42_c00169{left:232.533333pt;}
.x3c_c00169{left:233.600000pt;}
.xa2_c00169{left:234.533333pt;}
.x27_c00169{left:235.733333pt;}
.x73_c00169{left:237.200000pt;}
.x5a_c00169{left:238.533333pt;}
.x56_c00169{left:239.600000pt;}
.x8d_c00169{left:241.600000pt;}
.x3e_c00169{left:242.800000pt;}
.x6c_c00169{left:244.000000pt;}
.x52_c00169{left:245.200000pt;}
.x4e_c00169{left:246.400000pt;}
.x8b_c00169{left:249.333333pt;}
.x6f_c00169{left:250.400000pt;}
.x97_c00169{left:252.266667pt;}
.x6_c00169{left:254.400000pt;}
.x65_c00169{left:255.733333pt;}
.x92_c00169{left:257.600000pt;}
.x2f_c00169{left:259.466667pt;}
.x43_c00169{left:260.666667pt;}
.x34_c00169{left:262.533333pt;}
.x84_c00169{left:263.733333pt;}
.x60_c00169{left:264.800000pt;}
.x93_c00169{left:267.466667pt;}
.x70_c00169{left:268.666667pt;}
.x5b_c00169{left:271.866667pt;}
.x18_c00169{left:273.200000pt;}
.x28_c00169{left:275.733333pt;}
.x68_c00169{left:277.066667pt;}
.x7b_c00169{left:278.800000pt;}
.xf_c00169{left:280.266667pt;}
.x7_c00169{left:281.333333pt;}
.x44_c00169{left:282.800000pt;}
.x85_c00169{left:283.866667pt;}
.x8f_c00169{left:285.200000pt;}
.x6d_c00169{left:286.933333pt;}
.x61_c00169{left:288.133333pt;}
.x75_c00169{left:289.066667pt;}
.xa3_c00169{left:290.266667pt;}
.x20_c00169{left:291.466667pt;}
.x35_c00169{left:293.200000pt;}
.x10_c00169{left:294.400000pt;}
.x3f_c00169{left:297.466667pt;}
.x57_c00169{left:299.066667pt;}
.x2a_c00169{left:301.733333pt;}
.x76_c00169{left:306.400000pt;}
.x66_c00169{left:307.466667pt;}
.x9c_c00169{left:308.800000pt;}
.x40_c00169{left:310.000000pt;}
.x4b_c00169{left:311.600000pt;}
.x21_c00169{left:313.200000pt;}
.x2b_c00169{left:314.533333pt;}
.x8c_c00169{left:315.600000pt;}
.x11_c00169{left:316.800000pt;}
.x4f_c00169{left:318.133333pt;}
.x81_c00169{left:320.800000pt;}
.x94_c00169{left:322.133333pt;}
.x36_c00169{left:323.333333pt;}
.x4c_c00169{left:327.866667pt;}
.x22_c00169{left:330.133333pt;}
.x14_c00169{left:331.333333pt;}
.x19_c00169{left:333.066667pt;}
.x91_c00169{left:334.000000pt;}
.x8e_c00169{left:335.066667pt;}
.x9d_c00169{left:337.333333pt;}
.x30_c00169{left:339.066667pt;}
.x8_c00169{left:340.266667pt;}
.x5c_c00169{left:341.333333pt;}
.x37_c00169{left:343.866667pt;}
.x74_c00169{left:346.000000pt;}
.x45_c00169{left:348.133333pt;}
.x86_c00169{left:353.600000pt;}
.x46_c00169{left:354.800000pt;}
.x29_c00169{left:356.666667pt;}
.x31_c00169{left:358.266667pt;}
.x8a_c00169{left:360.133333pt;}
.x5d_c00169{left:361.466667pt;}
.x9_c00169{left:362.400000pt;}
.x7c_c00169{left:364.000000pt;}
.x62_c00169{left:365.200000pt;}
.x7a_c00169{left:367.333333pt;}
.x69_c00169{left:369.066667pt;}
.x9e_c00169{left:370.133333pt;}
.x38_c00169{left:371.333333pt;}
.x6e_c00169{left:373.333333pt;}
.x23_c00169{left:374.666667pt;}
.x2_c00169{left:377.600000pt;}
.x58_c00169{left:380.400000pt;}
.x39_c00169{left:381.866667pt;}
.x9f_c00169{left:383.600000pt;}
.x1a_c00169{left:384.533333pt;}
.x53_c00169{left:386.133333pt;}
.xa5_c00169{left:387.200000pt;}
.xa_c00169{left:388.666667pt;}
.x5e_c00169{left:391.200000pt;}
.x47_c00169{left:392.533333pt;}
.x15_c00169{left:394.000000pt;}
.x77_c00169{left:395.733333pt;}
.x63_c00169{left:396.933333pt;}
.x3a_c00169{left:399.466667pt;}
.x32_c00169{left:400.800000pt;}
.xa0_c00169{left:402.800000pt;}
.x1b_c00169{left:404.000000pt;}
.x24_c00169{left:407.600000pt;}
.x16_c00169{left:409.333333pt;}
.x71_c00169{left:411.333333pt;}
.x6a_c00169{left:413.200000pt;}
.x48_c00169{left:414.266667pt;}
.x2c_c00169{left:415.733333pt;}
.x25_c00169{left:417.200000pt;}
.x33_c00169{left:422.533333pt;}
.x41_c00169{left:424.266667pt;}
.x90_c00169{left:426.266667pt;}
.xb_c00169{left:428.400000pt;}
.x89_c00169{left:430.000000pt;}
.x59_c00169{left:430.933333pt;}
.x1c_c00169{left:432.533333pt;}
.x64_c00169{left:435.333333pt;}
.x12_c00169{left:436.533333pt;}
.x49_c00169{left:438.266667pt;}
.x3b_c00169{left:439.733333pt;}
.x1d_c00169{left:441.200000pt;}
.xa1_c00169{left:442.533333pt;}
.x2d_c00169{left:446.133333pt;}
.x67_c00169{left:448.266667pt;}
.x7d_c00169{left:451.600000pt;}
.xc_c00169{left:452.666667pt;}
.x54_c00169{left:454.666667pt;}
.x1e_c00169{left:456.266667pt;}
.x78_c00169{left:459.066667pt;}
.x72_c00169{left:461.866667pt;}
.x98_c00169{left:463.200000pt;}
.x87_c00169{left:469.200000pt;}
.xa6_c00169{left:486.666667pt;}
.xb9_c00169{left:487.733333pt;}
.x109_c00169{left:489.600000pt;}
.x119_c00169{left:491.466667pt;}
.x12c_c00169{left:492.533333pt;}
.xaf_c00169{left:499.200000pt;}
.xbf_c00169{left:503.733333pt;}
.xd3_c00169{left:504.666667pt;}
.xfe_c00169{left:505.866667pt;}
.x120_c00169{left:507.600000pt;}
.x12a_c00169{left:508.933333pt;}
.xb3_c00169{left:512.266667pt;}
.xb5_c00169{left:513.600000pt;}
.x12b_c00169{left:518.533333pt;}
.xd4_c00169{left:522.933333pt;}
.x11c_c00169{left:523.866667pt;}
.xc0_c00169{left:526.133333pt;}
.xc7_c00169{left:528.933333pt;}
.x11a_c00169{left:530.533333pt;}
.x12d_c00169{left:531.600000pt;}
.x100_c00169{left:532.666667pt;}
.xc8_c00169{left:536.000000pt;}
.xb4_c00169{left:538.800000pt;}
.xf8_c00169{left:542.133333pt;}
.xa7_c00169{left:543.600000pt;}
.x10a_c00169{left:544.666667pt;}
.xdb_c00169{left:545.600000pt;}
.x13e_c00169{left:547.200000pt;}
.x106_c00169{left:548.800000pt;}
.xce_c00169{left:549.866667pt;}
.x10f_c00169{left:553.600000pt;}
.xf3_c00169{left:554.533333pt;}
.xef_c00169{left:559.600000pt;}
.xe0_c00169{left:560.800000pt;}
.xb6_c00169{left:561.866667pt;}
.x117_c00169{left:564.000000pt;}
.xba_c00169{left:565.466667pt;}
.x103_c00169{left:566.800000pt;}
.xea_c00169{left:569.066667pt;}
.x13d_c00169{left:570.933333pt;}
.x133_c00169{left:572.000000pt;}
.xc1_c00169{left:573.866667pt;}
.xd5_c00169{left:576.666667pt;}
.xb7_c00169{left:578.800000pt;}
.x124_c00169{left:581.733333pt;}
.xf4_c00169{left:583.066667pt;}
.x10b_c00169{left:584.933333pt;}
.x135_c00169{left:588.266667pt;}
.x112_c00169{left:589.200000pt;}
.x132_c00169{left:591.200000pt;}
.x12e_c00169{left:592.400000pt;}
.xdc_c00169{left:593.333333pt;}
.xeb_c00169{left:595.600000pt;}
.xe4_c00169{left:596.800000pt;}
.xa8_c00169{left:598.933333pt;}
.x140_c00169{left:602.666667pt;}
.xd6_c00169{left:603.600000pt;}
.xc9_c00169{left:605.066667pt;}
.xdd_c00169{left:606.800000pt;}
.x113_c00169{left:608.400000pt;}
.xbb_c00169{left:610.933333pt;}
.xb8_c00169{left:612.133333pt;}
.x118_c00169{left:613.600000pt;}
.x13f_c00169{left:614.533333pt;}
.xe5_c00169{left:616.266667pt;}
.x143_c00169{left:620.133333pt;}
.xf9_c00169{left:621.200000pt;}
.x110_c00169{left:622.133333pt;}
.xf0_c00169{left:623.333333pt;}
.xc2_c00169{left:627.600000pt;}
.x12f_c00169{left:629.200000pt;}
.xca_c00169{left:630.666667pt;}
.xf5_c00169{left:632.400000pt;}
.x138_c00169{left:633.600000pt;}
.xa9_c00169{left:635.466667pt;}
.x107_c00169{left:637.200000pt;}
.xd7_c00169{left:639.733333pt;}
.x125_c00169{left:640.933333pt;}
.x10c_c00169{left:642.000000pt;}
.xf1_c00169{left:644.133333pt;}
.x137_c00169{left:647.866667pt;}
.xe1_c00169{left:649.200000pt;}
.x136_c00169{left:652.266667pt;}
.xaa_c00169{left:654.933333pt;}
.x130_c00169{left:657.333333pt;}
.xd8_c00169{left:660.800000pt;}
.x139_c00169{left:661.733333pt;}
.x126_c00169{left:662.666667pt;}
.xc3_c00169{left:665.333333pt;}
.xde_c00169{left:666.266667pt;}
.xcf_c00169{left:668.933333pt;}
.xbc_c00169{left:670.133333pt;}
.xab_c00169{left:671.600000pt;}
.xf2_c00169{left:672.666667pt;}
.x114_c00169{left:674.933333pt;}
.xfa_c00169{left:675.866667pt;}
.xcb_c00169{left:678.400000pt;}
.xd9_c00169{left:679.333333pt;}
.xe6_c00169{left:680.533333pt;}
.xff_c00169{left:682.266667pt;}
.xec_c00169{left:683.866667pt;}
.x115_c00169{left:684.800000pt;}
.xbd_c00169{left:687.733333pt;}
.xf6_c00169{left:690.400000pt;}
.x3_c00169{left:693.066667pt;}
.x104_c00169{left:694.800000pt;}
.x11d_c00169{left:696.400000pt;}
.xed_c00169{left:698.133333pt;}
.xac_c00169{left:699.466667pt;}
.x108_c00169{left:700.933333pt;}
.xd0_c00169{left:702.800000pt;}
.x111_c00169{left:703.733333pt;}
.x121_c00169{left:704.800000pt;}
.x101_c00169{left:705.733333pt;}
.x11e_c00169{left:707.600000pt;}
.xcc_c00169{left:709.466667pt;}
.xc4_c00169{left:713.600000pt;}
.xad_c00169{left:715.466667pt;}
.x122_c00169{left:716.933333pt;}
.x11f_c00169{left:718.533333pt;}
.x131_c00169{left:719.466667pt;}
.xe2_c00169{left:721.600000pt;}
.xb0_c00169{left:723.200000pt;}
.x116_c00169{left:724.133333pt;}
.x141_c00169{left:726.000000pt;}
.x13c_c00169{left:727.333333pt;}
.xe7_c00169{left:728.533333pt;}
.x134_c00169{left:729.733333pt;}
.xfb_c00169{left:730.933333pt;}
.xf7_c00169{left:733.866667pt;}
.xd1_c00169{left:735.733333pt;}
.x102_c00169{left:737.466667pt;}
.xfc_c00169{left:739.200000pt;}
.x127_c00169{left:741.466667pt;}
.xae_c00169{left:742.666667pt;}
.xc5_c00169{left:744.000000pt;}
.x10d_c00169{left:746.000000pt;}
.x13a_c00169{left:747.066667pt;}
.xb1_c00169{left:749.066667pt;}
.x11b_c00169{left:750.666667pt;}
.x105_c00169{left:752.000000pt;}
.xcd_c00169{left:753.066667pt;}
.x142_c00169{left:755.200000pt;}
.x128_c00169{left:756.533333pt;}
.xe8_c00169{left:760.533333pt;}
.x123_c00169{left:761.466667pt;}
.xda_c00169{left:763.200000pt;}
.xbe_c00169{left:764.266667pt;}
.xd2_c00169{left:765.200000pt;}
.xc6_c00169{left:766.400000pt;}
.xee_c00169{left:767.866667pt;}
.xe9_c00169{left:768.800000pt;}
.xdf_c00169{left:770.933333pt;}
.xfd_c00169{left:772.800000pt;}
.xb2_c00169{left:774.000000pt;}
.x13b_c00169{left:776.800000pt;}
.x10e_c00169{left:778.000000pt;}
.x129_c00169{left:780.266667pt;}
.xe3_c00169{left:781.733333pt;}
}





/* 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_c00170 {
    display:none;
  }
  .loading-indicator_c00170.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00170 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_c00170 { 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_c00170" -> "#page-container .classname_c00170")
 */
.pf_c00170 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00170 { /* 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_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00170 { /* 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_c00170 { /* 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_c00170 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00170 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00170 {overflow:visible;}
  }
}
.c_c00170 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00170 { /* 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_c00170:after { /* webkit #35443 */
  content: '';
}
.t_c00170:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00170 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 */
}
.__c00170 { /* 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_c00170 { /* info for Javascript */
  display:none;
}
.l_c00170 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00170 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00170 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00170: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_c00170 {
    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_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00170.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_c00170 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00170;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.000000;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;}
.m51_c00170{transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00170{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00170{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mce_c00170{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00170{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.md7_c00170{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m50_c00170{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.md1_c00170{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00170{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00170{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m32_c00170{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mab_c00170{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.md0_c00170{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00170{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00170{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00170{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mde_c00170{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00170{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m24_c00170{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00170{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m54_c00170{transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);}
.me5_c00170{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m86_c00170{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m52_c00170{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00170{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m59_c00170{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md5_c00170{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00170{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.me0_c00170{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00170{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mda_c00170{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m70_c00170{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m91_c00170{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m49_c00170{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00170{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m40_c00170{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00170{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00170{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00170{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m13_c00170{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00170{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00170{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00170{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00170{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m61_c00170{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m102_c00170{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00170{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00170{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00170{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00170{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m78_c00170{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m100_c00170{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mca_c00170{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m16_c00170{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00170{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00170{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m34_c00170{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00170{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00170{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m69_c00170{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mef_c00170{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m36_c00170{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00170{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00170{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00170{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00170{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00170{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00170{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00170{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00170{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m92_c00170{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00170{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00170{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00170{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00170{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00170{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m56_c00170{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.mc_c00170{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m97_c00170{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mad_c00170{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.med_c00170{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00170{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m101_c00170{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00170{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mff_c00170{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m95_c00170{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m33_c00170{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00170{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00170{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00170{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m76_c00170{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00170{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3_c00170{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00170{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00170{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m103_c00170{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00170{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m82_c00170{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00170{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8_c00170{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m90_c00170{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m35_c00170{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mea_c00170{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00170{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m66_c00170{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m15_c00170{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00170{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m104_c00170{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m81_c00170{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00170{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m98_c00170{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m37_c00170{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00170{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m60_c00170{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00170{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2_c00170{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m31_c00170{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00170{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00170{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00170{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m57_c00170{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m93_c00170{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m77_c00170{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00170{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00170{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m74_c00170{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m63_c00170{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mae_c00170{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m94_c00170{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mec_c00170{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m18_c00170{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me3_c00170{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.maa_c00170{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00170{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m58_c00170{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00170{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m28_c00170{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m106_c00170{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00170{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m26_c00170{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00170{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m87_c00170{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m108_c00170{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00170{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m96_c00170{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4_c00170{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me8_c00170{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00170{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me9_c00170{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00170{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00170{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m19_c00170{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00170{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00170{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m44_c00170{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00170{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m14_c00170{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb_c00170{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00170{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00170{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m17_c00170{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m64_c00170{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00170{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m89_c00170{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma_c00170{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00170{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00170{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00170{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m99_c00170{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m22_c00170{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00170{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00170{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7_c00170{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00170{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00170{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m80_c00170{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00170{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m45_c00170{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m25_c00170{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m71_c00170{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00170{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00170{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00170{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf_c00170{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mee_c00170{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m46_c00170{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00170{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m39_c00170{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00170{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m10_c00170{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m38_c00170{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md9_c00170{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mba_c00170{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00170{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00170{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m88_c00170{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m55_c00170{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00170{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00170{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m48_c00170{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me4_c00170{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m42_c00170{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m109_c00170{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m6_c00170{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00170{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m23_c00170{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00170{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m79_c00170{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m65_c00170{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m21_c00170{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m83_c00170{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m29_c00170{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00170{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m62_c00170{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m107_c00170{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m12_c00170{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m11_c00170{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00170{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m75_c00170{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00170{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m73_c00170{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m67_c00170{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m105_c00170{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00170{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00170{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.meb_c00170{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m85_c00170{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5_c00170{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00170{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.me1_c00170{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m72_c00170{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00170{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m41_c00170{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md2_c00170{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00170{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me7_c00170{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m68_c00170{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md6_c00170{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00170{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m20_c00170{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m47_c00170{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.maf_c00170{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m9_c00170{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md4_c00170{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m110_c00170{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me6_c00170{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m27_c00170{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m43_c00170{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m30_c00170{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md3_c00170{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00170{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me_c00170{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m84_c00170{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00170{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00170{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00170{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00170{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mac_c00170{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00170{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00170{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00170{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m1_c00170{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m111_c00170{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00170{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00170{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00170{transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00170{transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00170{transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);}
.m0_c00170{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.me2_c00170{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.md8_c00170{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m53_c00170{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00170{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00170{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls0_c00170{letter-spacing:0.000000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{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__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00170{word-spacing:-9.510917px;}
.ws8_c00170{word-spacing:0.000000px;}
.ws0_c00170{word-spacing:3.845942px;}
.ws1_c00170{word-spacing:6.935780px;}
.ws7_c00170{word-spacing:13.447307px;}
.ws5_c00170{word-spacing:16.785714px;}
.ws3_c00170{word-spacing:19.994638px;}
.ws6_c00170{word-spacing:26.428954px;}
.ws4_c00170{word-spacing:59.721619px;}
.fc0_c00170{color:transparent;}
.fs7_c00170{font-size:24.000000px;}
.fs0_c00170{font-size:30.000000px;}
.fs5_c00170{font-size:36.000000px;}
.fs6_c00170{font-size:54.000000px;}
.fs3_c00170{font-size:60.000000px;}
.fs2_c00170{font-size:66.000000px;}
.fs4_c00170{font-size:72.000000px;}
.fs1_c00170{font-size:84.000000px;}
.y0_c00170{bottom:0.000000px;}
.y65_c00170{bottom:182.550000px;}
.y64_c00170{bottom:199.500000px;}
.y30_c00170{bottom:217.350000px;}
.y63_c00170{bottom:218.100000px;}
.y2f_c00170{bottom:235.050000px;}
.y62_c00170{bottom:244.200000px;}
.y2e_c00170{bottom:252.750000px;}
.y61_c00170{bottom:262.500000px;}
.y2d_c00170{bottom:270.750000px;}
.y60_c00170{bottom:280.500000px;}
.y2c_c00170{bottom:288.450000px;}
.y2b_c00170{bottom:305.700000px;}
.y5f_c00170{bottom:305.850000px;}
.y5e_c00170{bottom:323.850000px;}
.y2a_c00170{bottom:326.250000px;}
.y5d_c00170{bottom:341.850000px;}
.y29_c00170{bottom:345.300000px;}
.y5c_c00170{bottom:359.550000px;}
.y28_c00170{bottom:366.900000px;}
.y5b_c00170{bottom:377.550000px;}
.y27_c00170{bottom:385.200000px;}
.y5a_c00170{bottom:395.550000px;}
.y26_c00170{bottom:406.950000px;}
.y59_c00170{bottom:412.500000px;}
.y25_c00170{bottom:424.950000px;}
.y58_c00170{bottom:430.500000px;}
.y24_c00170{bottom:443.250000px;}
.y57_c00170{bottom:448.500000px;}
.y23_c00170{bottom:460.500000px;}
.y56_c00170{bottom:465.750000px;}
.y22_c00170{bottom:482.400000px;}
.y55_c00170{bottom:483.750000px;}
.y21_c00170{bottom:500.400000px;}
.y54_c00170{bottom:501.750000px;}
.y20_c00170{bottom:518.100000px;}
.y53_c00170{bottom:519.000000px;}
.y1f_c00170{bottom:536.100000px;}
.y52_c00170{bottom:537.000000px;}
.y51_c00170{bottom:554.700000px;}
.y1e_c00170{bottom:556.950000px;}
.y50_c00170{bottom:572.400000px;}
.y1d_c00170{bottom:575.700000px;}
.y4f_c00170{bottom:590.100000px;}
.y1c_c00170{bottom:594.000000px;}
.y4e_c00170{bottom:608.100000px;}
.y1b_c00170{bottom:611.250000px;}
.y4d_c00170{bottom:625.800000px;}
.y1a_c00170{bottom:632.550000px;}
.y19_c00170{bottom:650.550000px;}
.y4c_c00170{bottom:651.000000px;}
.y4b_c00170{bottom:664.350000px;}
.y18_c00170{bottom:668.550000px;}
.y4a_c00170{bottom:679.500000px;}
.y17_c00170{bottom:686.250000px;}
.y49_c00170{bottom:692.850000px;}
.y16_c00170{bottom:705.000000px;}
.y48_c00170{bottom:707.250000px;}
.y15_c00170{bottom:721.500000px;}
.y47_c00170{bottom:723.450000px;}
.y46_c00170{bottom:736.050000px;}
.y14_c00170{bottom:748.800000px;}
.y45_c00170{bottom:750.150000px;}
.y1_c00170{bottom:750.600000px;}
.y13_c00170{bottom:752.400000px;}
.y44_c00170{bottom:766.050000px;}
.y43_c00170{bottom:784.200000px;}
.y12_c00170{bottom:784.800000px;}
.y42_c00170{bottom:802.200000px;}
.y11_c00170{bottom:810.450000px;}
.y41_c00170{bottom:820.500000px;}
.y10_c00170{bottom:832.350000px;}
.y40_c00170{bottom:835.950000px;}
.y3f_c00170{bottom:841.650000px;}
.yf_c00170{bottom:854.250000px;}
.y3e_c00170{bottom:859.650000px;}
.y3d_c00170{bottom:877.650000px;}
.ye_c00170{bottom:888.900000px;}
.y3c_c00170{bottom:894.900000px;}
.y3b_c00170{bottom:912.600000px;}
.yd_c00170{bottom:924.300000px;}
.y3a_c00170{bottom:930.300000px;}
.yc_c00170{bottom:942.300000px;}
.y39_c00170{bottom:951.900000px;}
.yb_c00170{bottom:960.000000px;}
.y38_c00170{bottom:969.450000px;}
.ya_c00170{bottom:977.700000px;}
.y9_c00170{bottom:995.400000px;}
.y37_c00170{bottom:1003.950000px;}
.y36_c00170{bottom:1021.950000px;}
.y8_c00170{bottom:1022.100000px;}
.y35_c00170{bottom:1039.650000px;}
.y7_c00170{bottom:1048.650000px;}
.y34_c00170{bottom:1061.700000px;}
.y6_c00170{bottom:1066.350000px;}
.y33_c00170{bottom:1083.300000px;}
.y5_c00170{bottom:1083.900000px;}
.y32_c00170{bottom:1101.300000px;}
.y4_c00170{bottom:1101.600000px;}
.y3_c00170{bottom:1119.300000px;}
.y2_c00170{bottom:1145.550000px;}
.y31_c00170{bottom:1265.100000px;}
.h9_c00170{height:24.000000px;}
.h2_c00170{height:30.000000px;}
.h7_c00170{height:36.000000px;}
.h8_c00170{height:54.000000px;}
.h5_c00170{height:60.000000px;}
.h4_c00170{height:66.000000px;}
.h6_c00170{height:72.000000px;}
.h3_c00170{height:84.000000px;}
.h0_c00170{height:1271.879975px;}
.h1_c00170{height:1272.000000px;}
.w1_c00170{width:963.000000px;}
.w0_c00170{width:963.359985px;}
.x0_c00170{left:0.000000px;}
.x1_c00170{left:66.600000px;}
.x3e_c00170{left:87.150000px;}
.x1f_c00170{left:88.950000px;}
.x47_c00170{left:90.750000px;}
.x3_c00170{left:105.150000px;}
.x1e_c00170{left:106.950000px;}
.x55_c00170{left:108.000000px;}
.x4c_c00170{left:109.200000px;}
.x6d_c00170{left:110.400000px;}
.x86_c00170{left:111.900000px;}
.x91_c00170{left:112.950000px;}
.x43_c00170{left:126.150000px;}
.x46_c00170{left:128.250000px;}
.xb_c00170{left:130.050000px;}
.x35_c00170{left:133.950000px;}
.x4_c00170{left:136.500000px;}
.x79_c00170{left:141.300000px;}
.x4f_c00170{left:142.350000px;}
.x81_c00170{left:147.300000px;}
.x2f_c00170{left:148.950000px;}
.x20_c00170{left:150.900000px;}
.x21_c00170{left:154.350000px;}
.x4d_c00170{left:155.700000px;}
.x52_c00170{left:156.900000px;}
.x64_c00170{left:157.950000px;}
.x28_c00170{left:161.100000px;}
.x7a_c00170{left:162.600000px;}
.x82_c00170{left:166.050000px;}
.x87_c00170{left:168.150000px;}
.x39_c00170{left:169.200000px;}
.x30_c00170{left:170.550000px;}
.x3f_c00170{left:174.300000px;}
.x89_c00170{left:175.950000px;}
.x44_c00170{left:177.600000px;}
.x68_c00170{left:179.550000px;}
.x5_c00170{left:181.500000px;}
.xc_c00170{left:182.550000px;}
.x29_c00170{left:183.750000px;}
.x40_c00170{left:184.800000px;}
.x31_c00170{left:186.450000px;}
.x61_c00170{left:187.500000px;}
.x69_c00170{left:188.550000px;}
.x3d_c00170{left:190.050000px;}
.x7d_c00170{left:191.550000px;}
.x5a_c00170{left:193.200000px;}
.x53_c00170{left:195.750000px;}
.x6e_c00170{left:198.300000px;}
.x74_c00170{left:199.650000px;}
.x48_c00170{left:203.700000px;}
.x2a_c00170{left:205.050000px;}
.x13_c00170{left:208.650000px;}
.x5b_c00170{left:210.150000px;}
.xd_c00170{left:216.450000px;}
.x8f_c00170{left:218.100000px;}
.x45_c00170{left:219.300000px;}
.x5e_c00170{left:220.500000px;}
.x3a_c00170{left:226.350000px;}
.x50_c00170{left:228.300000px;}
.x6_c00170{left:229.350000px;}
.x36_c00170{left:230.700000px;}
.x14_c00170{left:233.100000px;}
.x70_c00170{left:235.050000px;}
.xe_c00170{left:236.250000px;}
.x37_c00170{left:239.400000px;}
.x7b_c00170{left:241.800000px;}
.x22_c00170{left:243.900000px;}
.x41_c00170{left:245.250000px;}
.x63_c00170{left:248.250000px;}
.x19_c00170{left:249.900000px;}
.x56_c00170{left:253.500000px;}
.x32_c00170{left:254.850000px;}
.x54_c00170{left:256.950000px;}
.x75_c00170{left:258.300000px;}
.x23_c00170{left:262.650000px;}
.x2b_c00170{left:264.150000px;}
.x62_c00170{left:265.950000px;}
.x6b_c00170{left:268.800000px;}
.x7c_c00170{left:270.300000px;}
.x1a_c00170{left:272.250000px;}
.x8a_c00170{left:273.900000px;}
.x15_c00170{left:276.000000px;}
.x5f_c00170{left:277.350000px;}
.x5c_c00170{left:279.300000px;}
.x71_c00170{left:281.100000px;}
.x3b_c00170{left:283.200000px;}
.xf_c00170{left:284.550000px;}
.x83_c00170{left:286.500000px;}
.x6a_c00170{left:287.550000px;}
.x38_c00170{left:289.050000px;}
.x4e_c00170{left:291.000000px;}
.x7_c00170{left:293.400000px;}
.x93_c00170{left:294.450000px;}
.x57_c00170{left:297.750000px;}
.x51_c00170{left:299.550000px;}
.x3c_c00170{left:301.950000px;}
.x7e_c00170{left:303.600000px;}
.x58_c00170{left:308.250000px;}
.x6c_c00170{left:309.450000px;}
.x10_c00170{left:310.500000px;}
.x24_c00170{left:312.000000px;}
.x49_c00170{left:313.950000px;}
.x8_c00170{left:315.750000px;}
.x25_c00170{left:321.000000px;}
.x2c_c00170{left:322.950000px;}
.x1b_c00170{left:324.150000px;}
.x76_c00170{left:328.500000px;}
.x42_c00170{left:329.850000px;}
.x2_c00170{left:331.950000px;}
.x4a_c00170{left:333.450000px;}
.x65_c00170{left:335.100000px;}
.x60_c00170{left:337.050000px;}
.x8c_c00170{left:339.750000px;}
.x26_c00170{left:340.800000px;}
.x16_c00170{left:342.300000px;}
.x33_c00170{left:344.850000px;}
.x66_c00170{left:348.450000px;}
.x11_c00170{left:353.700000px;}
.x8d_c00170{left:355.200000px;}
.x94_c00170{left:356.400000px;}
.x34_c00170{left:357.450000px;}
.x130_c00170{left:359.400000px;}
.x88_c00170{left:362.250000px;}
.x17_c00170{left:363.600000px;}
.x67_c00170{left:366.750000px;}
.x90_c00170{left:368.550000px;}
.x77_c00170{left:369.600000px;}
.x4b_c00170{left:370.950000px;}
.x9_c00170{left:373.350000px;}
.x2d_c00170{left:375.450000px;}
.x7f_c00170{left:377.100000px;}
.x8b_c00170{left:380.850000px;}
.x18_c00170{left:383.400000px;}
.x84_c00170{left:385.500000px;}
.x1c_c00170{left:388.200000px;}
.x78_c00170{left:391.500000px;}
.x72_c00170{left:393.000000px;}
.x6f_c00170{left:394.500000px;}
.x12_c00170{left:396.600000px;}
.x27_c00170{left:400.200000px;}
.x2e_c00170{left:402.750000px;}
.x85_c00170{left:404.550000px;}
.x8e_c00170{left:406.350000px;}
.x73_c00170{left:408.450000px;}
.x5d_c00170{left:410.700000px;}
.xa_c00170{left:412.950000px;}
.x1d_c00170{left:414.450000px;}
.x59_c00170{left:420.900000px;}
.x80_c00170{left:424.950000px;}
.x92_c00170{left:427.650000px;}
.x131_c00170{left:442.200000px;}
.xbd_c00170{left:446.400000px;}
.xda_c00170{left:447.900000px;}
.x12a_c00170{left:451.050000px;}
.x12e_c00170{left:452.100000px;}
.xea_c00170{left:461.700000px;}
.x96_c00170{left:462.900000px;}
.xd6_c00170{left:464.100000px;}
.x105_c00170{left:465.450000px;}
.x114_c00170{left:466.500000px;}
.x11b_c00170{left:467.700000px;}
.x124_c00170{left:468.750000px;}
.x125_c00170{left:469.800000px;}
.xee_c00170{left:475.500000px;}
.xfd_c00170{left:477.000000px;}
.x100_c00170{left:480.150000px;}
.xaa_c00170{left:483.150000px;}
.x11a_c00170{left:484.500000px;}
.xca_c00170{left:486.150000px;}
.xbe_c00170{left:487.800000px;}
.xdb_c00170{left:492.150000px;}
.x132_c00170{left:496.200000px;}
.xf6_c00170{left:497.550000px;}
.xef_c00170{left:498.600000px;}
.x97_c00170{left:502.500000px;}
.xc5_c00170{left:504.600000px;}
.x11f_c00170{left:505.800000px;}
.x9f_c00170{left:510.900000px;}
.x12b_c00170{left:513.300000px;}
.xf9_c00170{left:515.400000px;}
.xe4_c00170{left:517.650000px;}
.x98_c00170{left:519.000000px;}
.x111_c00170{left:521.850000px;}
.xab_c00170{left:524.550000px;}
.xdf_c00170{left:525.600000px;}
.xad_c00170{left:526.650000px;}
.x122_c00170{left:528.000000px;}
.xac_c00170{left:529.200000px;}
.xb4_c00170{left:531.750000px;}
.x106_c00170{left:534.150000px;}
.xeb_c00170{left:538.350000px;}
.x115_c00170{left:540.600000px;}
.x108_c00170{left:543.150000px;}
.x10d_c00170{left:545.550000px;}
.xec_c00170{left:546.600000px;}
.xa6_c00170{left:549.450000px;}
.x99_c00170{left:550.650000px;}
.x12f_c00170{left:551.850000px;}
.xed_c00170{left:553.500000px;}
.xbc_c00170{left:554.850000px;}
.x10b_c00170{left:557.400000px;}
.xdc_c00170{left:558.750000px;}
.xc1_c00170{left:560.850000px;}
.xf7_c00170{left:562.800000px;}
.xae_c00170{left:565.200000px;}
.xd7_c00170{left:567.000000px;}
.xd1_c00170{left:568.800000px;}
.xc6_c00170{left:572.250000px;}
.xfa_c00170{left:573.300000px;}
.xcb_c00170{left:575.700000px;}
.xaf_c00170{left:577.050000px;}
.xe5_c00170{left:578.550000px;}
.xb5_c00170{left:580.350000px;}
.xa0_c00170{left:581.400000px;}
.xc2_c00170{left:583.200000px;}
.x9a_c00170{left:585.150000px;}
.xe0_c00170{left:587.850000px;}
.xa1_c00170{left:591.900000px;}
.x10e_c00170{left:597.750000px;}
.xb6_c00170{left:599.850000px;}
.xa7_c00170{left:603.450000px;}
.x9b_c00170{left:605.700000px;}
.x116_c00170{left:607.200000px;}
.xb7_c00170{left:608.850000px;}
.xc7_c00170{left:612.150000px;}
.x112_c00170{left:613.650000px;}
.xd8_c00170{left:615.300000px;}
.xcc_c00170{left:618.150000px;}
.xa8_c00170{left:620.400000px;}
.xe6_c00170{left:621.450000px;}
.xfb_c00170{left:626.850000px;}
.xbf_c00170{left:628.350000px;}
.xf8_c00170{left:629.850000px;}
.xe1_c00170{left:631.050000px;}
.xa2_c00170{left:632.550000px;}
.xb0_c00170{left:634.650000px;}
.x12c_c00170{left:639.750000px;}
.x10f_c00170{left:640.950000px;}
.xd2_c00170{left:643.050000px;}
.x9c_c00170{left:645.600000px;}
.xfe_c00170{left:646.650000px;}
.xf3_c00170{left:648.750000px;}
.x128_c00170{left:652.650000px;}
.xc3_c00170{left:653.700000px;}
.xe2_c00170{left:654.750000px;}
.xf4_c00170{left:656.250000px;}
.xd3_c00170{left:658.500000px;}
.x95_c00170{left:660.900000px;}
.x117_c00170{left:663.750000px;}
.xcd_c00170{left:664.950000px;}
.xa3_c00170{left:667.500000px;}
.xff_c00170{left:668.550000px;}
.xb1_c00170{left:672.150000px;}
.x129_c00170{left:675.300000px;}
.x121_c00170{left:677.700000px;}
.x11d_c00170{left:678.750000px;}
.x9d_c00170{left:681.600000px;}
.x101_c00170{left:683.550000px;}
.xe7_c00170{left:685.500000px;}
.xdd_c00170{left:687.300000px;}
.x10c_c00170{left:688.800000px;}
.x123_c00170{left:691.500000px;}
.xd4_c00170{left:694.200000px;}
.xd9_c00170{left:698.100000px;}
.xce_c00170{left:699.900000px;}
.x12d_c00170{left:701.550000px;}
.xe8_c00170{left:703.200000px;}
.xe3_c00170{left:704.400000px;}
.xb2_c00170{left:706.650000px;}
.x102_c00170{left:709.500000px;}
.xa4_c00170{left:710.700000px;}
.xf0_c00170{left:712.500000px;}
.xb8_c00170{left:714.300000px;}
.x110_c00170{left:715.500000px;}
.x126_c00170{left:716.550000px;}
.x11e_c00170{left:717.600000px;}
.xd5_c00170{left:719.700000px;}
.x11c_c00170{left:721.950000px;}
.xc8_c00170{left:724.800000px;}
.xb9_c00170{left:725.850000px;}
.x103_c00170{left:727.500000px;}
.x113_c00170{left:729.600000px;}
.x120_c00170{left:730.950000px;}
.xcf_c00170{left:734.100000px;}
.xc4_c00170{left:736.500000px;}
.xb3_c00170{left:738.300000px;}
.xde_c00170{left:739.800000px;}
.xf5_c00170{left:741.150000px;}
.xf1_c00170{left:742.800000px;}
.xba_c00170{left:743.850000px;}
.x107_c00170{left:745.500000px;}
.x118_c00170{left:746.850000px;}
.x10a_c00170{left:748.950000px;}
.x109_c00170{left:750.000000px;}
.xd0_c00170{left:752.850000px;}
.x9e_c00170{left:754.350000px;}
.x127_c00170{left:759.000000px;}
.xc0_c00170{left:761.250000px;}
.xfc_c00170{left:763.950000px;}
.xa5_c00170{left:765.450000px;}
.xe9_c00170{left:767.400000px;}
.xc9_c00170{left:769.800000px;}
.xf2_c00170{left:771.300000px;}
.xa9_c00170{left:776.250000px;}
.xbb_c00170{left:777.750000px;}
.x104_c00170{left:778.950000px;}
.x119_c00170{left:780.000000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ws2_c00170{word-spacing:-8.454148pt;}
.ws8_c00170{word-spacing:0.000000pt;}
.ws0_c00170{word-spacing:3.418615pt;}
.ws1_c00170{word-spacing:6.165138pt;}
.ws7_c00170{word-spacing:11.953162pt;}
.ws5_c00170{word-spacing:14.920635pt;}
.ws3_c00170{word-spacing:17.773012pt;}
.ws6_c00170{word-spacing:23.492404pt;}
.ws4_c00170{word-spacing:53.085884pt;}
.fs7_c00170{font-size:21.333333pt;}
.fs0_c00170{font-size:26.666667pt;}
.fs5_c00170{font-size:32.000000pt;}
.fs6_c00170{font-size:48.000000pt;}
.fs3_c00170{font-size:53.333333pt;}
.fs2_c00170{font-size:58.666667pt;}
.fs4_c00170{font-size:64.000000pt;}
.fs1_c00170{font-size:74.666667pt;}
.y0_c00170{bottom:0.000000pt;}
.y65_c00170{bottom:162.266667pt;}
.y64_c00170{bottom:177.333333pt;}
.y30_c00170{bottom:193.200000pt;}
.y63_c00170{bottom:193.866667pt;}
.y2f_c00170{bottom:208.933333pt;}
.y62_c00170{bottom:217.066667pt;}
.y2e_c00170{bottom:224.666667pt;}
.y61_c00170{bottom:233.333333pt;}
.y2d_c00170{bottom:240.666667pt;}
.y60_c00170{bottom:249.333333pt;}
.y2c_c00170{bottom:256.400000pt;}
.y2b_c00170{bottom:271.733333pt;}
.y5f_c00170{bottom:271.866667pt;}
.y5e_c00170{bottom:287.866667pt;}
.y2a_c00170{bottom:290.000000pt;}
.y5d_c00170{bottom:303.866667pt;}
.y29_c00170{bottom:306.933333pt;}
.y5c_c00170{bottom:319.600000pt;}
.y28_c00170{bottom:326.133333pt;}
.y5b_c00170{bottom:335.600000pt;}
.y27_c00170{bottom:342.400000pt;}
.y5a_c00170{bottom:351.600000pt;}
.y26_c00170{bottom:361.733333pt;}
.y59_c00170{bottom:366.666667pt;}
.y25_c00170{bottom:377.733333pt;}
.y58_c00170{bottom:382.666667pt;}
.y24_c00170{bottom:394.000000pt;}
.y57_c00170{bottom:398.666667pt;}
.y23_c00170{bottom:409.333333pt;}
.y56_c00170{bottom:414.000000pt;}
.y22_c00170{bottom:428.800000pt;}
.y55_c00170{bottom:430.000000pt;}
.y21_c00170{bottom:444.800000pt;}
.y54_c00170{bottom:446.000000pt;}
.y20_c00170{bottom:460.533333pt;}
.y53_c00170{bottom:461.333333pt;}
.y1f_c00170{bottom:476.533333pt;}
.y52_c00170{bottom:477.333333pt;}
.y51_c00170{bottom:493.066667pt;}
.y1e_c00170{bottom:495.066667pt;}
.y50_c00170{bottom:508.800000pt;}
.y1d_c00170{bottom:511.733333pt;}
.y4f_c00170{bottom:524.533333pt;}
.y1c_c00170{bottom:528.000000pt;}
.y4e_c00170{bottom:540.533333pt;}
.y1b_c00170{bottom:543.333333pt;}
.y4d_c00170{bottom:556.266667pt;}
.y1a_c00170{bottom:562.266667pt;}
.y19_c00170{bottom:578.266667pt;}
.y4c_c00170{bottom:578.666667pt;}
.y4b_c00170{bottom:590.533333pt;}
.y18_c00170{bottom:594.266667pt;}
.y4a_c00170{bottom:604.000000pt;}
.y17_c00170{bottom:610.000000pt;}
.y49_c00170{bottom:615.866667pt;}
.y16_c00170{bottom:626.666667pt;}
.y48_c00170{bottom:628.666667pt;}
.y15_c00170{bottom:641.333333pt;}
.y47_c00170{bottom:643.066667pt;}
.y46_c00170{bottom:654.266667pt;}
.y14_c00170{bottom:665.600000pt;}
.y45_c00170{bottom:666.800000pt;}
.y1_c00170{bottom:667.200000pt;}
.y13_c00170{bottom:668.800000pt;}
.y44_c00170{bottom:680.933333pt;}
.y43_c00170{bottom:697.066667pt;}
.y12_c00170{bottom:697.600000pt;}
.y42_c00170{bottom:713.066667pt;}
.y11_c00170{bottom:720.400000pt;}
.y41_c00170{bottom:729.333333pt;}
.y10_c00170{bottom:739.866667pt;}
.y40_c00170{bottom:743.066667pt;}
.y3f_c00170{bottom:748.133333pt;}
.yf_c00170{bottom:759.333333pt;}
.y3e_c00170{bottom:764.133333pt;}
.y3d_c00170{bottom:780.133333pt;}
.ye_c00170{bottom:790.133333pt;}
.y3c_c00170{bottom:795.466667pt;}
.y3b_c00170{bottom:811.200000pt;}
.yd_c00170{bottom:821.600000pt;}
.y3a_c00170{bottom:826.933333pt;}
.yc_c00170{bottom:837.600000pt;}
.y39_c00170{bottom:846.133333pt;}
.yb_c00170{bottom:853.333333pt;}
.y38_c00170{bottom:861.733333pt;}
.ya_c00170{bottom:869.066667pt;}
.y9_c00170{bottom:884.800000pt;}
.y37_c00170{bottom:892.400000pt;}
.y36_c00170{bottom:908.400000pt;}
.y8_c00170{bottom:908.533333pt;}
.y35_c00170{bottom:924.133333pt;}
.y7_c00170{bottom:932.133333pt;}
.y34_c00170{bottom:943.733333pt;}
.y6_c00170{bottom:947.866667pt;}
.y33_c00170{bottom:962.933333pt;}
.y5_c00170{bottom:963.466667pt;}
.y32_c00170{bottom:978.933333pt;}
.y4_c00170{bottom:979.200000pt;}
.y3_c00170{bottom:994.933333pt;}
.y2_c00170{bottom:1018.266667pt;}
.y31_c00170{bottom:1124.533333pt;}
.h9_c00170{height:21.333333pt;}
.h2_c00170{height:26.666667pt;}
.h7_c00170{height:32.000000pt;}
.h8_c00170{height:48.000000pt;}
.h5_c00170{height:53.333333pt;}
.h4_c00170{height:58.666667pt;}
.h6_c00170{height:64.000000pt;}
.h3_c00170{height:74.666667pt;}
.h0_c00170{height:1130.559977pt;}
.h1_c00170{height:1130.666667pt;}
.w1_c00170{width:856.000000pt;}
.w0_c00170{width:856.319987pt;}
.x0_c00170{left:0.000000pt;}
.x1_c00170{left:59.200000pt;}
.x3e_c00170{left:77.466667pt;}
.x1f_c00170{left:79.066667pt;}
.x47_c00170{left:80.666667pt;}
.x3_c00170{left:93.466667pt;}
.x1e_c00170{left:95.066667pt;}
.x55_c00170{left:96.000000pt;}
.x4c_c00170{left:97.066667pt;}
.x6d_c00170{left:98.133333pt;}
.x86_c00170{left:99.466667pt;}
.x91_c00170{left:100.400000pt;}
.x43_c00170{left:112.133333pt;}
.x46_c00170{left:114.000000pt;}
.xb_c00170{left:115.600000pt;}
.x35_c00170{left:119.066667pt;}
.x4_c00170{left:121.333333pt;}
.x79_c00170{left:125.600000pt;}
.x4f_c00170{left:126.533333pt;}
.x81_c00170{left:130.933333pt;}
.x2f_c00170{left:132.400000pt;}
.x20_c00170{left:134.133333pt;}
.x21_c00170{left:137.200000pt;}
.x4d_c00170{left:138.400000pt;}
.x52_c00170{left:139.466667pt;}
.x64_c00170{left:140.400000pt;}
.x28_c00170{left:143.200000pt;}
.x7a_c00170{left:144.533333pt;}
.x82_c00170{left:147.600000pt;}
.x87_c00170{left:149.466667pt;}
.x39_c00170{left:150.400000pt;}
.x30_c00170{left:151.600000pt;}
.x3f_c00170{left:154.933333pt;}
.x89_c00170{left:156.400000pt;}
.x44_c00170{left:157.866667pt;}
.x68_c00170{left:159.600000pt;}
.x5_c00170{left:161.333333pt;}
.xc_c00170{left:162.266667pt;}
.x29_c00170{left:163.333333pt;}
.x40_c00170{left:164.266667pt;}
.x31_c00170{left:165.733333pt;}
.x61_c00170{left:166.666667pt;}
.x69_c00170{left:167.600000pt;}
.x3d_c00170{left:168.933333pt;}
.x7d_c00170{left:170.266667pt;}
.x5a_c00170{left:171.733333pt;}
.x53_c00170{left:174.000000pt;}
.x6e_c00170{left:176.266667pt;}
.x74_c00170{left:177.466667pt;}
.x48_c00170{left:181.066667pt;}
.x2a_c00170{left:182.266667pt;}
.x13_c00170{left:185.466667pt;}
.x5b_c00170{left:186.800000pt;}
.xd_c00170{left:192.400000pt;}
.x8f_c00170{left:193.866667pt;}
.x45_c00170{left:194.933333pt;}
.x5e_c00170{left:196.000000pt;}
.x3a_c00170{left:201.200000pt;}
.x50_c00170{left:202.933333pt;}
.x6_c00170{left:203.866667pt;}
.x36_c00170{left:205.066667pt;}
.x14_c00170{left:207.200000pt;}
.x70_c00170{left:208.933333pt;}
.xe_c00170{left:210.000000pt;}
.x37_c00170{left:212.800000pt;}
.x7b_c00170{left:214.933333pt;}
.x22_c00170{left:216.800000pt;}
.x41_c00170{left:218.000000pt;}
.x63_c00170{left:220.666667pt;}
.x19_c00170{left:222.133333pt;}
.x56_c00170{left:225.333333pt;}
.x32_c00170{left:226.533333pt;}
.x54_c00170{left:228.400000pt;}
.x75_c00170{left:229.600000pt;}
.x23_c00170{left:233.466667pt;}
.x2b_c00170{left:234.800000pt;}
.x62_c00170{left:236.400000pt;}
.x6b_c00170{left:238.933333pt;}
.x7c_c00170{left:240.266667pt;}
.x1a_c00170{left:242.000000pt;}
.x8a_c00170{left:243.466667pt;}
.x15_c00170{left:245.333333pt;}
.x5f_c00170{left:246.533333pt;}
.x5c_c00170{left:248.266667pt;}
.x71_c00170{left:249.866667pt;}
.x3b_c00170{left:251.733333pt;}
.xf_c00170{left:252.933333pt;}
.x83_c00170{left:254.666667pt;}
.x6a_c00170{left:255.600000pt;}
.x38_c00170{left:256.933333pt;}
.x4e_c00170{left:258.666667pt;}
.x7_c00170{left:260.800000pt;}
.x93_c00170{left:261.733333pt;}
.x57_c00170{left:264.666667pt;}
.x51_c00170{left:266.266667pt;}
.x3c_c00170{left:268.400000pt;}
.x7e_c00170{left:269.866667pt;}
.x58_c00170{left:274.000000pt;}
.x6c_c00170{left:275.066667pt;}
.x10_c00170{left:276.000000pt;}
.x24_c00170{left:277.333333pt;}
.x49_c00170{left:279.066667pt;}
.x8_c00170{left:280.666667pt;}
.x25_c00170{left:285.333333pt;}
.x2c_c00170{left:287.066667pt;}
.x1b_c00170{left:288.133333pt;}
.x76_c00170{left:292.000000pt;}
.x42_c00170{left:293.200000pt;}
.x2_c00170{left:295.066667pt;}
.x4a_c00170{left:296.400000pt;}
.x65_c00170{left:297.866667pt;}
.x60_c00170{left:299.600000pt;}
.x8c_c00170{left:302.000000pt;}
.x26_c00170{left:302.933333pt;}
.x16_c00170{left:304.266667pt;}
.x33_c00170{left:306.533333pt;}
.x66_c00170{left:309.733333pt;}
.x11_c00170{left:314.400000pt;}
.x8d_c00170{left:315.733333pt;}
.x94_c00170{left:316.800000pt;}
.x34_c00170{left:317.733333pt;}
.x130_c00170{left:319.466667pt;}
.x88_c00170{left:322.000000pt;}
.x17_c00170{left:323.200000pt;}
.x67_c00170{left:326.000000pt;}
.x90_c00170{left:327.600000pt;}
.x77_c00170{left:328.533333pt;}
.x4b_c00170{left:329.733333pt;}
.x9_c00170{left:331.866667pt;}
.x2d_c00170{left:333.733333pt;}
.x7f_c00170{left:335.200000pt;}
.x8b_c00170{left:338.533333pt;}
.x18_c00170{left:340.800000pt;}
.x84_c00170{left:342.666667pt;}
.x1c_c00170{left:345.066667pt;}
.x78_c00170{left:348.000000pt;}
.x72_c00170{left:349.333333pt;}
.x6f_c00170{left:350.666667pt;}
.x12_c00170{left:352.533333pt;}
.x27_c00170{left:355.733333pt;}
.x2e_c00170{left:358.000000pt;}
.x85_c00170{left:359.600000pt;}
.x8e_c00170{left:361.200000pt;}
.x73_c00170{left:363.066667pt;}
.x5d_c00170{left:365.066667pt;}
.xa_c00170{left:367.066667pt;}
.x1d_c00170{left:368.400000pt;}
.x59_c00170{left:374.133333pt;}
.x80_c00170{left:377.733333pt;}
.x92_c00170{left:380.133333pt;}
.x131_c00170{left:393.066667pt;}
.xbd_c00170{left:396.800000pt;}
.xda_c00170{left:398.133333pt;}
.x12a_c00170{left:400.933333pt;}
.x12e_c00170{left:401.866667pt;}
.xea_c00170{left:410.400000pt;}
.x96_c00170{left:411.466667pt;}
.xd6_c00170{left:412.533333pt;}
.x105_c00170{left:413.733333pt;}
.x114_c00170{left:414.666667pt;}
.x11b_c00170{left:415.733333pt;}
.x124_c00170{left:416.666667pt;}
.x125_c00170{left:417.600000pt;}
.xee_c00170{left:422.666667pt;}
.xfd_c00170{left:424.000000pt;}
.x100_c00170{left:426.800000pt;}
.xaa_c00170{left:429.466667pt;}
.x11a_c00170{left:430.666667pt;}
.xca_c00170{left:432.133333pt;}
.xbe_c00170{left:433.600000pt;}
.xdb_c00170{left:437.466667pt;}
.x132_c00170{left:441.066667pt;}
.xf6_c00170{left:442.266667pt;}
.xef_c00170{left:443.200000pt;}
.x97_c00170{left:446.666667pt;}
.xc5_c00170{left:448.533333pt;}
.x11f_c00170{left:449.600000pt;}
.x9f_c00170{left:454.133333pt;}
.x12b_c00170{left:456.266667pt;}
.xf9_c00170{left:458.133333pt;}
.xe4_c00170{left:460.133333pt;}
.x98_c00170{left:461.333333pt;}
.x111_c00170{left:463.866667pt;}
.xab_c00170{left:466.266667pt;}
.xdf_c00170{left:467.200000pt;}
.xad_c00170{left:468.133333pt;}
.x122_c00170{left:469.333333pt;}
.xac_c00170{left:470.400000pt;}
.xb4_c00170{left:472.666667pt;}
.x106_c00170{left:474.800000pt;}
.xeb_c00170{left:478.533333pt;}
.x115_c00170{left:480.533333pt;}
.x108_c00170{left:482.800000pt;}
.x10d_c00170{left:484.933333pt;}
.xec_c00170{left:485.866667pt;}
.xa6_c00170{left:488.400000pt;}
.x99_c00170{left:489.466667pt;}
.x12f_c00170{left:490.533333pt;}
.xed_c00170{left:492.000000pt;}
.xbc_c00170{left:493.200000pt;}
.x10b_c00170{left:495.466667pt;}
.xdc_c00170{left:496.666667pt;}
.xc1_c00170{left:498.533333pt;}
.xf7_c00170{left:500.266667pt;}
.xae_c00170{left:502.400000pt;}
.xd7_c00170{left:504.000000pt;}
.xd1_c00170{left:505.600000pt;}
.xc6_c00170{left:508.666667pt;}
.xfa_c00170{left:509.600000pt;}
.xcb_c00170{left:511.733333pt;}
.xaf_c00170{left:512.933333pt;}
.xe5_c00170{left:514.266667pt;}
.xb5_c00170{left:515.866667pt;}
.xa0_c00170{left:516.800000pt;}
.xc2_c00170{left:518.400000pt;}
.x9a_c00170{left:520.133333pt;}
.xe0_c00170{left:522.533333pt;}
.xa1_c00170{left:526.133333pt;}
.x10e_c00170{left:531.333333pt;}
.xb6_c00170{left:533.200000pt;}
.xa7_c00170{left:536.400000pt;}
.x9b_c00170{left:538.400000pt;}
.x116_c00170{left:539.733333pt;}
.xb7_c00170{left:541.200000pt;}
.xc7_c00170{left:544.133333pt;}
.x112_c00170{left:545.466667pt;}
.xd8_c00170{left:546.933333pt;}
.xcc_c00170{left:549.466667pt;}
.xa8_c00170{left:551.466667pt;}
.xe6_c00170{left:552.400000pt;}
.xfb_c00170{left:557.200000pt;}
.xbf_c00170{left:558.533333pt;}
.xf8_c00170{left:559.866667pt;}
.xe1_c00170{left:560.933333pt;}
.xa2_c00170{left:562.266667pt;}
.xb0_c00170{left:564.133333pt;}
.x12c_c00170{left:568.666667pt;}
.x10f_c00170{left:569.733333pt;}
.xd2_c00170{left:571.600000pt;}
.x9c_c00170{left:573.866667pt;}
.xfe_c00170{left:574.800000pt;}
.xf3_c00170{left:576.666667pt;}
.x128_c00170{left:580.133333pt;}
.xc3_c00170{left:581.066667pt;}
.xe2_c00170{left:582.000000pt;}
.xf4_c00170{left:583.333333pt;}
.xd3_c00170{left:585.333333pt;}
.x95_c00170{left:587.466667pt;}
.x117_c00170{left:590.000000pt;}
.xcd_c00170{left:591.066667pt;}
.xa3_c00170{left:593.333333pt;}
.xff_c00170{left:594.266667pt;}
.xb1_c00170{left:597.466667pt;}
.x129_c00170{left:600.266667pt;}
.x121_c00170{left:602.400000pt;}
.x11d_c00170{left:603.333333pt;}
.x9d_c00170{left:605.866667pt;}
.x101_c00170{left:607.600000pt;}
.xe7_c00170{left:609.333333pt;}
.xdd_c00170{left:610.933333pt;}
.x10c_c00170{left:612.266667pt;}
.x123_c00170{left:614.666667pt;}
.xd4_c00170{left:617.066667pt;}
.xd9_c00170{left:620.533333pt;}
.xce_c00170{left:622.133333pt;}
.x12d_c00170{left:623.600000pt;}
.xe8_c00170{left:625.066667pt;}
.xe3_c00170{left:626.133333pt;}
.xb2_c00170{left:628.133333pt;}
.x102_c00170{left:630.666667pt;}
.xa4_c00170{left:631.733333pt;}
.xf0_c00170{left:633.333333pt;}
.xb8_c00170{left:634.933333pt;}
.x110_c00170{left:636.000000pt;}
.x126_c00170{left:636.933333pt;}
.x11e_c00170{left:637.866667pt;}
.xd5_c00170{left:639.733333pt;}
.x11c_c00170{left:641.733333pt;}
.xc8_c00170{left:644.266667pt;}
.xb9_c00170{left:645.200000pt;}
.x103_c00170{left:646.666667pt;}
.x113_c00170{left:648.533333pt;}
.x120_c00170{left:649.733333pt;}
.xcf_c00170{left:652.533333pt;}
.xc4_c00170{left:654.666667pt;}
.xb3_c00170{left:656.266667pt;}
.xde_c00170{left:657.600000pt;}
.xf5_c00170{left:658.800000pt;}
.xf1_c00170{left:660.266667pt;}
.xba_c00170{left:661.200000pt;}
.x107_c00170{left:662.666667pt;}
.x118_c00170{left:663.866667pt;}
.x10a_c00170{left:665.733333pt;}
.x109_c00170{left:666.666667pt;}
.xd0_c00170{left:669.200000pt;}
.x9e_c00170{left:670.533333pt;}
.x127_c00170{left:674.666667pt;}
.xc0_c00170{left:676.666667pt;}
.xfc_c00170{left:679.066667pt;}
.xa5_c00170{left:680.400000pt;}
.xe9_c00170{left:682.133333pt;}
.xc9_c00170{left:684.266667pt;}
.xf2_c00170{left:685.600000pt;}
.xa9_c00170{left:690.000000pt;}
.xbb_c00170{left:691.333333pt;}
.x104_c00170{left:692.400000pt;}
.x119_c00170{left:693.333333pt;}
}





/* 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_c00171 {
    display:none;
  }
  .loading-indicator_c00171.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00171 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_c00171 { 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_c00171" -> "#page-container .classname_c00171")
 */
.pf_c00171 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00171 { /* 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_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00171 { /* 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_c00171 { /* 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_c00171 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00171 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00171 {overflow:visible;}
  }
}
.c_c00171 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00171 { /* 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_c00171:after { /* webkit #35443 */
  content: '';
}
.t_c00171:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00171 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 */
}
.__c00171 { /* 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_c00171 { /* info for Javascript */
  display:none;
}
.l_c00171 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00171 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00171 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00171: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_c00171 {
    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_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00171.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_c00171 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00171;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.000000;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;}
.md2_c00171{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00171{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mb_c00171{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00171{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m36_c00171{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.m26_c00171{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mae_c00171{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00171{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m22_c00171{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m5_c00171{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00171{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m55_c00171{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m93_c00171{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m16_c00171{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m97_c00171{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m88_c00171{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m94_c00171{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mde_c00171{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00171{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m91_c00171{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.meb_c00171{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m99_c00171{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m92_c00171{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00171{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00171{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m20_c00171{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m77_c00171{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m78_c00171{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m50_c00171{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00171{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m29_c00171{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00171{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.med_c00171{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00171{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00171{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m28_c00171{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.ma_c00171{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00171{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m95_c00171{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m15_c00171{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md5_c00171{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00171{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me8_c00171{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00171{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m89_c00171{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m96_c00171{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00171{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mef_c00171{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00171{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00171{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m17_c00171{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m27_c00171{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mac_c00171{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00171{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m109_c00171{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m41_c00171{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00171{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m66_c00171{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00171{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6_c00171{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md_c00171{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m100_c00171{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00171{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m19_c00171{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mba_c00171{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00171{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00171{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00171{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00171{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00171{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00171{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mce_c00171{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m48_c00171{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00171{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00171{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00171{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00171{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00171{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00171{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00171{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m38_c00171{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00171{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00171{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00171{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m74_c00171{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m31_c00171{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00171{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00171{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00171{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m80_c00171{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m52_c00171{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mca_c00171{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00171{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m33_c00171{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mad_c00171{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.md9_c00171{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m72_c00171{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mab_c00171{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00171{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md7_c00171{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m35_c00171{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00171{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m56_c00171{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mee_c00171{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00171{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mff_c00171{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00171{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m14_c00171{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00171{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m60_c00171{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00171{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m53_c00171{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mea_c00171{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00171{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m59_c00171{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m65_c00171{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00171{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00171{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00171{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00171{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00171{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m37_c00171{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00171{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md6_c00171{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00171{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00171{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m32_c00171{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.maf_c00171{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00171{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9_c00171{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m45_c00171{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00171{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00171{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m25_c00171{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00171{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m51_c00171{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m18_c00171{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m40_c00171{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m69_c00171{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m90_c00171{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.maa_c00171{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m68_c00171{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00171{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m63_c00171{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m84_c00171{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m44_c00171{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00171{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m75_c00171{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m101_c00171{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me1_c00171{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00171{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8_c00171{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00171{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m47_c00171{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00171{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00171{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m71_c00171{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00171{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00171{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00171{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m62_c00171{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00171{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00171{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m49_c00171{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mc_c00171{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m43_c00171{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00171{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00171{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md3_c00171{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00171{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00171{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00171{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m106_c00171{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00171{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00171{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m34_c00171{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m58_c00171{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00171{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m64_c00171{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00171{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.md8_c00171{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00171{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00171{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00171{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m61_c00171{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00171{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m46_c00171{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7_c00171{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00171{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m82_c00171{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m54_c00171{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00171{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00171{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m103_c00171{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00171{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00171{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00171{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf_c00171{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m98_c00171{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00171{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00171{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00171{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00171{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me2_c00171{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m79_c00171{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00171{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me5_c00171{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00171{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m105_c00171{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m30_c00171{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m87_c00171{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00171{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m13_c00171{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m10_c00171{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00171{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00171{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.me4_c00171{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m70_c00171{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m23_c00171{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m104_c00171{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m76_c00171{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00171{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00171{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00171{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md0_c00171{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00171{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00171{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00171{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m42_c00171{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m67_c00171{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00171{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md1_c00171{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me3_c00171{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00171{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m83_c00171{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mec_c00171{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m21_c00171{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00171{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m11_c00171{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m107_c00171{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m108_c00171{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mda_c00171{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m81_c00171{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m57_c00171{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m39_c00171{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00171{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00171{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00171{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00171{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m86_c00171{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.me9_c00171{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m102_c00171{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m73_c00171{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.me0_c00171{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00171{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00171{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m85_c00171{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00171{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00171{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00171{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.md4_c00171{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00171{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.me6_c00171{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m2_c00171{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00171{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me7_c00171{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.m3_c00171{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m4_c00171{transform:matrix(0.385500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385500,0.000000,0.000000,0.250000,0,0);}
.m1_c00171{transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);}
.m24_c00171{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{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__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00171{word-spacing:-17.541985px;}
.ws3_c00171{word-spacing:-9.342105px;}
.ws1_c00171{word-spacing:-5.277778px;}
.ws0_c00171{word-spacing:-4.500000px;}
.ws5_c00171{word-spacing:0.000000px;}
.ws4_c00171{word-spacing:3.405498px;}
.fc0_c00171{color:transparent;}
.fs4_c00171{font-size:54.000000px;}
.fs2_c00171{font-size:60.000000px;}
.fs0_c00171{font-size:66.000000px;}
.fs3_c00171{font-size:72.000000px;}
.fs1_c00171{font-size:78.000000px;}
.y0_c00171{bottom:0.000000px;}
.y60_c00171{bottom:200.100000px;}
.y30_c00171{bottom:206.100000px;}
.y5f_c00171{bottom:214.200000px;}
.y2f_c00171{bottom:224.400000px;}
.y5e_c00171{bottom:228.300000px;}
.y2e_c00171{bottom:241.650000px;}
.y2d_c00171{bottom:259.650000px;}
.y2c_c00171{bottom:278.700000px;}
.y5d_c00171{bottom:280.050000px;}
.y2b_c00171{bottom:294.900000px;}
.y5c_c00171{bottom:298.050000px;}
.y2a_c00171{bottom:312.150000px;}
.y5b_c00171{bottom:324.750000px;}
.y29_c00171{bottom:338.850000px;}
.y5a_c00171{bottom:350.400000px;}
.y28_c00171{bottom:356.100000px;}
.y59_c00171{bottom:368.400000px;}
.y58_c00171{bottom:386.100000px;}
.y27_c00171{bottom:387.000000px;}
.y57_c00171{bottom:404.100000px;}
.y26_c00171{bottom:413.250000px;}
.y56_c00171{bottom:421.800000px;}
.y25_c00171{bottom:435.600000px;}
.y55_c00171{bottom:439.800000px;}
.y54_c00171{bottom:457.500000px;}
.y24_c00171{bottom:457.950000px;}
.y53_c00171{bottom:475.200000px;}
.y23_c00171{bottom:475.950000px;}
.y22_c00171{bottom:497.400000px;}
.y52_c00171{bottom:502.950000px;}
.y21_c00171{bottom:515.400000px;}
.y51_c00171{bottom:518.100000px;}
.y20_c00171{bottom:533.100000px;}
.y50_c00171{bottom:543.150000px;}
.y1f_c00171{bottom:554.400000px;}
.y4f_c00171{bottom:560.400000px;}
.y1e_c00171{bottom:572.400000px;}
.y4e_c00171{bottom:578.100000px;}
.y1d_c00171{bottom:590.100000px;}
.y4d_c00171{bottom:600.300000px;}
.y1c_c00171{bottom:612.000000px;}
.y4c_c00171{bottom:618.000000px;}
.y1b_c00171{bottom:633.900000px;}
.y4b_c00171{bottom:636.000000px;}
.y4a_c00171{bottom:653.700000px;}
.y1a_c00171{bottom:655.950000px;}
.y49_c00171{bottom:671.700000px;}
.y19_c00171{bottom:673.950000px;}
.y48_c00171{bottom:689.400000px;}
.y18_c00171{bottom:695.700000px;}
.y47_c00171{bottom:707.100000px;}
.y17_c00171{bottom:713.700000px;}
.y46_c00171{bottom:729.450000px;}
.y16_c00171{bottom:731.400000px;}
.y45_c00171{bottom:747.750000px;}
.y15_c00171{bottom:749.100000px;}
.y14_c00171{bottom:767.100000px;}
.y44_c00171{bottom:778.350000px;}
.y13_c00171{bottom:784.800000px;}
.y43_c00171{bottom:796.200000px;}
.y12_c00171{bottom:802.500000px;}
.y42_c00171{bottom:813.900000px;}
.y11_c00171{bottom:820.800000px;}
.y41_c00171{bottom:831.600000px;}
.y10_c00171{bottom:837.750000px;}
.y40_c00171{bottom:853.650000px;}
.yf_c00171{bottom:859.650000px;}
.y3f_c00171{bottom:871.650000px;}
.ye_c00171{bottom:877.350000px;}
.y3e_c00171{bottom:889.350000px;}
.yd_c00171{bottom:899.400000px;}
.y3d_c00171{bottom:906.600000px;}
.yc_c00171{bottom:917.400000px;}
.y3c_c00171{bottom:924.600000px;}
.yb_c00171{bottom:935.700000px;}
.y3b_c00171{bottom:942.300000px;}
.ya_c00171{bottom:958.950000px;}
.y3a_c00171{bottom:960.300000px;}
.y9_c00171{bottom:962.550000px;}
.y39_c00171{bottom:978.000000px;}
.y8_c00171{bottom:991.050000px;}
.y38_c00171{bottom:995.700000px;}
.y37_c00171{bottom:1013.400000px;}
.y7_c00171{bottom:1021.650000px;}
.y36_c00171{bottom:1033.650000px;}
.y6_c00171{bottom:1043.700000px;}
.y35_c00171{bottom:1048.350000px;}
.y5_c00171{bottom:1066.050000px;}
.y34_c00171{bottom:1068.150000px;}
.y33_c00171{bottom:1086.150000px;}
.y4_c00171{bottom:1087.950000px;}
.y32_c00171{bottom:1103.400000px;}
.y31_c00171{bottom:1121.100000px;}
.y3_c00171{bottom:1121.400000px;}
.y2_c00171{bottom:1148.400000px;}
.y1_c00171{bottom:1150.500000px;}
.h6_c00171{height:54.000000px;}
.h4_c00171{height:60.000000px;}
.h2_c00171{height:66.000000px;}
.h5_c00171{height:72.000000px;}
.h3_c00171{height:78.000000px;}
.h0_c00171{height:1271.160094px;}
.h1_c00171{height:1271.250000px;}
.w1_c00171{width:963.000000px;}
.w0_c00171{width:963.359985px;}
.x0_c00171{left:0.000000px;}
.x77_c00171{left:178.200000px;}
.x13_c00171{left:184.350000px;}
.x1_c00171{left:186.450000px;}
.x88_c00171{left:193.200000px;}
.x7e_c00171{left:194.250000px;}
.x80_c00171{left:195.750000px;}
.x61_c00171{left:196.950000px;}
.x51_c00171{left:198.150000px;}
.x35_c00171{left:199.800000px;}
.x27_c00171{left:201.000000px;}
.x9_c00171{left:202.350000px;}
.x1a_c00171{left:211.500000px;}
.x7f_c00171{left:213.900000px;}
.x5a_c00171{left:215.250000px;}
.x3a_c00171{left:217.500000px;}
.x11_c00171{left:218.550000px;}
.x2e_c00171{left:219.900000px;}
.x7b_c00171{left:220.950000px;}
.xc_c00171{left:222.600000px;}
.x1b_c00171{left:226.200000px;}
.x14_c00171{left:229.350000px;}
.x6b_c00171{left:232.500000px;}
.x89_c00171{left:233.850000px;}
.x20_c00171{left:237.000000px;}
.x36_c00171{left:239.100000px;}
.x2d_c00171{left:240.750000px;}
.x69_c00171{left:243.300000px;}
.x28_c00171{left:245.700000px;}
.x48_c00171{left:247.950000px;}
.x1c_c00171{left:249.600000px;}
.xa_c00171{left:250.650000px;}
.x5f_c00171{left:252.750000px;}
.x5e_c00171{left:254.850000px;}
.x6f_c00171{left:256.200000px;}
.x37_c00171{left:257.400000px;}
.x62_c00171{left:259.200000px;}
.x2f_c00171{left:262.350000px;}
.x42_c00171{left:267.150000px;}
.x3b_c00171{left:268.200000px;}
.x55_c00171{left:269.400000px;}
.x12_c00171{left:271.500000px;}
.xd_c00171{left:273.000000px;}
.x60_c00171{left:274.350000px;}
.x3e_c00171{left:276.900000px;}
.x22_c00171{left:278.700000px;}
.x63_c00171{left:281.550000px;}
.x8a_c00171{left:283.500000px;}
.x84_c00171{left:286.800000px;}
.x3_c00171{left:288.000000px;}
.x8e_c00171{left:290.250000px;}
.x70_c00171{left:291.450000px;}
.x15_c00171{left:293.400000px;}
.x5b_c00171{left:295.200000px;}
.x81_c00171{left:296.250000px;}
.x75_c00171{left:298.500000px;}
.x71_c00171{left:300.450000px;}
.x29_c00171{left:302.250000px;}
.x6c_c00171{left:304.500000px;}
.x49_c00171{left:306.600000px;}
.x38_c00171{left:308.850000px;}
.x52_c00171{left:311.550000px;}
.xe_c00171{left:313.650000px;}
.x30_c00171{left:319.200000px;}
.x76_c00171{left:320.400000px;}
.x8f_c00171{left:322.650000px;}
.x8b_c00171{left:323.850000px;}
.x7a_c00171{left:326.250000px;}
.x58_c00171{left:327.450000px;}
.x6d_c00171{left:328.650000px;}
.x31_c00171{left:330.000000px;}
.x43_c00171{left:332.250000px;}
.x65_c00171{left:333.300000px;}
.x1d_c00171{left:336.450000px;}
.x6a_c00171{left:341.100000px;}
.x5_c00171{left:342.450000px;}
.x56_c00171{left:343.950000px;}
.x6e_c00171{left:345.900000px;}
.x1e_c00171{left:348.300000px;}
.x6_c00171{left:350.400000px;}
.x4_c00171{left:353.550000px;}
.xf_c00171{left:355.350000px;}
.x32_c00171{left:356.700000px;}
.x78_c00171{left:359.700000px;}
.x5c_c00171{left:362.850000px;}
.x39_c00171{left:366.150000px;}
.x16_c00171{left:369.000000px;}
.x3f_c00171{left:370.200000px;}
.x4a_c00171{left:371.700000px;}
.x73_c00171{left:372.900000px;}
.x66_c00171{left:373.950000px;}
.x21_c00171{left:375.600000px;}
.x4d_c00171{left:380.400000px;}
.x2a_c00171{left:383.250000px;}
.x1f_c00171{left:384.600000px;}
.x8c_c00171{left:387.900000px;}
.x7c_c00171{left:390.450000px;}
.x85_c00171{left:391.950000px;}
.xb_c00171{left:393.600000px;}
.x23_c00171{left:394.650000px;}
.x74_c00171{left:399.900000px;}
.x4b_c00171{left:402.000000px;}
.x40_c00171{left:403.650000px;}
.x3c_c00171{left:405.750000px;}
.x17_c00171{left:407.550000px;}
.x10_c00171{left:409.350000px;}
.x24_c00171{left:411.150000px;}
.x8d_c00171{left:413.250000px;}
.x2b_c00171{left:415.650000px;}
.x4e_c00171{left:417.450000px;}
.x7d_c00171{left:418.950000px;}
.x86_c00171{left:423.300000px;}
.x18_c00171{left:424.500000px;}
.x2_c00171{left:425.550000px;}
.x44_c00171{left:432.750000px;}
.x79_c00171{left:436.800000px;}
.x33_c00171{left:439.500000px;}
.x53_c00171{left:441.150000px;}
.x7_c00171{left:442.500000px;}
.x45_c00171{left:448.650000px;}
.x2c_c00171{left:449.850000px;}
.x5d_c00171{left:451.350000px;}
.x57_c00171{left:454.800000px;}
.x4f_c00171{left:460.650000px;}
.x82_c00171{left:462.600000px;}
.x19_c00171{left:463.800000px;}
.x3d_c00171{left:464.850000px;}
.x25_c00171{left:466.200000px;}
.x46_c00171{left:468.750000px;}
.x50_c00171{left:469.950000px;}
.x54_c00171{left:471.000000px;}
.x72_c00171{left:472.350000px;}
.x83_c00171{left:473.700000px;}
.x4c_c00171{left:475.500000px;}
.x8_c00171{left:478.500000px;}
.x67_c00171{left:484.200000px;}
.x59_c00171{left:486.150000px;}
.x26_c00171{left:489.300000px;}
.x41_c00171{left:490.800000px;}
.x34_c00171{left:494.250000px;}
.x87_c00171{left:496.350000px;}
.x47_c00171{left:502.200000px;}
.x64_c00171{left:503.250000px;}
.x68_c00171{left:507.900000px;}
.x112_c00171{left:525.600000px;}
.x125_c00171{left:531.750000px;}
.x12d_c00171{left:532.950000px;}
.x107_c00171{left:534.300000px;}
.xe4_c00171{left:536.700000px;}
.xa7_c00171{left:541.500000px;}
.x90_c00171{left:542.550000px;}
.xe8_c00171{left:545.850000px;}
.x127_c00171{left:548.850000px;}
.x11a_c00171{left:550.050000px;}
.xfb_c00171{left:551.400000px;}
.xf6_c00171{left:552.600000px;}
.xee_c00171{left:554.100000px;}
.xad_c00171{left:555.150000px;}
.xc7_c00171{left:556.650000px;}
.xbf_c00171{left:557.700000px;}
.x98_c00171{left:559.050000px;}
.x12b_c00171{left:560.850000px;}
.x128_c00171{left:566.100000px;}
.xde_c00171{left:570.450000px;}
.x12a_c00171{left:571.650000px;}
.xb8_c00171{left:575.850000px;}
.xf2_c00171{left:577.800000px;}
.xe3_c00171{left:579.300000px;}
.x122_c00171{left:580.500000px;}
.xc0_c00171{left:586.500000px;}
.x91_c00171{left:587.850000px;}
.x105_c00171{left:589.800000px;}
.x110_c00171{left:590.850000px;}
.xae_c00171{left:592.950000px;}
.x126_c00171{left:594.000000px;}
.x10a_c00171{left:596.250000px;}
.x99_c00171{left:597.900000px;}
.xd9_c00171{left:599.100000px;}
.xa4_c00171{left:600.900000px;}
.x129_c00171{left:603.150000px;}
.xc8_c00171{left:606.300000px;}
.xe5_c00171{left:607.950000px;}
.xb9_c00171{left:610.050000px;}
.xc1_c00171{left:612.000000px;}
.x124_c00171{left:613.200000px;}
.xdf_c00171{left:614.400000px;}
.xda_c00171{left:617.100000px;}
.xe9_c00171{left:618.600000px;}
.xcd_c00171{left:620.250000px;}
.x12e_c00171{left:621.600000px;}
.xa8_c00171{left:623.250000px;}
.xfe_c00171{left:626.550000px;}
.xb2_c00171{left:627.900000px;}
.xe0_c00171{left:631.650000px;}
.xba_c00171{left:634.500000px;}
.x10b_c00171{left:635.550000px;}
.xa5_c00171{left:639.000000px;}
.xce_c00171{left:640.050000px;}
.x100_c00171{left:641.700000px;}
.x11b_c00171{left:646.950000px;}
.x9a_c00171{left:648.600000px;}
.xa9_c00171{left:649.950000px;}
.xdb_c00171{left:653.850000px;}
.x92_c00171{left:655.500000px;}
.xa6_c00171{left:657.300000px;}
.x104_c00171{left:658.500000px;}
.x11e_c00171{left:660.750000px;}
.xc2_c00171{left:662.100000px;}
.x116_c00171{left:664.350000px;}
.x111_c00171{left:668.850000px;}
.xf4_c00171{left:669.900000px;}
.xb3_c00171{left:671.850000px;}
.x9b_c00171{left:675.300000px;}
.xc9_c00171{left:676.500000px;}
.x9f_c00171{left:678.300000px;}
.xc3_c00171{left:681.150000px;}
.xcf_c00171{left:682.500000px;}
.x12c_c00171{left:684.000000px;}
.xaf_c00171{left:687.150000px;}
.x93_c00171{left:688.950000px;}
.xa0_c00171{left:690.150000px;}
.x101_c00171{left:692.100000px;}
.x113_c00171{left:697.500000px;}
.xd5_c00171{left:700.350000px;}
.xe6_c00171{left:702.900000px;}
.xbb_c00171{left:705.300000px;}
.xf5_c00171{left:706.650000px;}
.x11c_c00171{left:708.150000px;}
.xf7_c00171{left:709.500000px;}
.xc4_c00171{left:710.700000px;}
.x106_c00171{left:712.650000px;}
.xaa_c00171{left:715.050000px;}
.xef_c00171{left:716.400000px;}
.x10c_c00171{left:717.600000px;}
.x9c_c00171{left:719.250000px;}
.xa1_c00171{left:722.850000px;}
.xb4_c00171{left:725.850000px;}
.xca_c00171{left:727.500000px;}
.xd6_c00171{left:730.200000px;}
.x94_c00171{left:731.850000px;}
.x10d_c00171{left:734.550000px;}
.xfc_c00171{left:736.200000px;}
.x11f_c00171{left:737.400000px;}
.xab_c00171{left:741.000000px;}
.xd7_c00171{left:742.800000px;}
.xf0_c00171{left:744.150000px;}
.xb0_c00171{left:745.500000px;}
.xea_c00171{left:750.000000px;}
.xc5_c00171{left:752.100000px;}
.x108_c00171{left:753.600000px;}
.xf8_c00171{left:755.250000px;}
.x9d_c00171{left:756.300000px;}
.xb1_c00171{left:757.350000px;}
.xe7_c00171{left:759.750000px;}
.xd2_c00171{left:764.400000px;}
.xa2_c00171{left:765.750000px;}
.xe1_c00171{left:767.100000px;}
.x114_c00171{left:771.750000px;}
.x102_c00171{left:774.900000px;}
.xff_c00171{left:776.700000px;}
.xf9_c00171{left:780.000000px;}
.xbc_c00171{left:781.650000px;}
.xd3_c00171{left:783.450000px;}
.x123_c00171{left:784.950000px;}
.xd0_c00171{left:786.600000px;}
.xb5_c00171{left:788.550000px;}
.x95_c00171{left:789.750000px;}
.xdc_c00171{left:791.100000px;}
.xa3_c00171{left:793.050000px;}
.xd8_c00171{left:794.250000px;}
.xc6_c00171{left:795.300000px;}
.x120_c00171{left:796.800000px;}
.xe2_c00171{left:799.200000px;}
.xcb_c00171{left:802.350000px;}
.xeb_c00171{left:804.000000px;}
.x117_c00171{left:807.000000px;}
.xb6_c00171{left:809.400000px;}
.xf3_c00171{left:812.100000px;}
.xbd_c00171{left:814.350000px;}
.x109_c00171{left:816.900000px;}
.x96_c00171{left:820.050000px;}
.x11d_c00171{left:821.250000px;}
.xd4_c00171{left:824.850000px;}
.xdd_c00171{left:826.050000px;}
.xec_c00171{left:828.450000px;}
.xfd_c00171{left:832.200000px;}
.x9e_c00171{left:834.000000px;}
.x118_c00171{left:835.500000px;}
.x10e_c00171{left:837.150000px;}
.xd1_c00171{left:838.800000px;}
.x103_c00171{left:841.050000px;}
.x119_c00171{left:843.150000px;}
.xb7_c00171{left:844.350000px;}
.xbe_c00171{left:845.700000px;}
.xac_c00171{left:848.550000px;}
.x121_c00171{left:850.050000px;}
.xed_c00171{left:851.850000px;}
.x97_c00171{left:853.200000px;}
.xcc_c00171{left:855.300000px;}
.xf1_c00171{left:857.250000px;}
.xfa_c00171{left:860.250000px;}
.x115_c00171{left:864.900000px;}
.x10f_c00171{left:871.350000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws2_c00171{word-spacing:-15.592875pt;}
.ws3_c00171{word-spacing:-8.304094pt;}
.ws1_c00171{word-spacing:-4.691358pt;}
.ws0_c00171{word-spacing:-4.000000pt;}
.ws5_c00171{word-spacing:0.000000pt;}
.ws4_c00171{word-spacing:3.027110pt;}
.fs4_c00171{font-size:48.000000pt;}
.fs2_c00171{font-size:53.333333pt;}
.fs0_c00171{font-size:58.666667pt;}
.fs3_c00171{font-size:64.000000pt;}
.fs1_c00171{font-size:69.333333pt;}
.y0_c00171{bottom:0.000000pt;}
.y60_c00171{bottom:177.866667pt;}
.y30_c00171{bottom:183.200000pt;}
.y5f_c00171{bottom:190.400000pt;}
.y2f_c00171{bottom:199.466667pt;}
.y5e_c00171{bottom:202.933333pt;}
.y2e_c00171{bottom:214.800000pt;}
.y2d_c00171{bottom:230.800000pt;}
.y2c_c00171{bottom:247.733333pt;}
.y5d_c00171{bottom:248.933333pt;}
.y2b_c00171{bottom:262.133333pt;}
.y5c_c00171{bottom:264.933333pt;}
.y2a_c00171{bottom:277.466667pt;}
.y5b_c00171{bottom:288.666667pt;}
.y29_c00171{bottom:301.200000pt;}
.y5a_c00171{bottom:311.466667pt;}
.y28_c00171{bottom:316.533333pt;}
.y59_c00171{bottom:327.466667pt;}
.y58_c00171{bottom:343.200000pt;}
.y27_c00171{bottom:344.000000pt;}
.y57_c00171{bottom:359.200000pt;}
.y26_c00171{bottom:367.333333pt;}
.y56_c00171{bottom:374.933333pt;}
.y25_c00171{bottom:387.200000pt;}
.y55_c00171{bottom:390.933333pt;}
.y54_c00171{bottom:406.666667pt;}
.y24_c00171{bottom:407.066667pt;}
.y53_c00171{bottom:422.400000pt;}
.y23_c00171{bottom:423.066667pt;}
.y22_c00171{bottom:442.133333pt;}
.y52_c00171{bottom:447.066667pt;}
.y21_c00171{bottom:458.133333pt;}
.y51_c00171{bottom:460.533333pt;}
.y20_c00171{bottom:473.866667pt;}
.y50_c00171{bottom:482.800000pt;}
.y1f_c00171{bottom:492.800000pt;}
.y4f_c00171{bottom:498.133333pt;}
.y1e_c00171{bottom:508.800000pt;}
.y4e_c00171{bottom:513.866667pt;}
.y1d_c00171{bottom:524.533333pt;}
.y4d_c00171{bottom:533.600000pt;}
.y1c_c00171{bottom:544.000000pt;}
.y4c_c00171{bottom:549.333333pt;}
.y1b_c00171{bottom:563.466667pt;}
.y4b_c00171{bottom:565.333333pt;}
.y4a_c00171{bottom:581.066667pt;}
.y1a_c00171{bottom:583.066667pt;}
.y49_c00171{bottom:597.066667pt;}
.y19_c00171{bottom:599.066667pt;}
.y48_c00171{bottom:612.800000pt;}
.y18_c00171{bottom:618.400000pt;}
.y47_c00171{bottom:628.533333pt;}
.y17_c00171{bottom:634.400000pt;}
.y46_c00171{bottom:648.400000pt;}
.y16_c00171{bottom:650.133333pt;}
.y45_c00171{bottom:664.666667pt;}
.y15_c00171{bottom:665.866667pt;}
.y14_c00171{bottom:681.866667pt;}
.y44_c00171{bottom:691.866667pt;}
.y13_c00171{bottom:697.600000pt;}
.y43_c00171{bottom:707.733333pt;}
.y12_c00171{bottom:713.333333pt;}
.y42_c00171{bottom:723.466667pt;}
.y11_c00171{bottom:729.600000pt;}
.y41_c00171{bottom:739.200000pt;}
.y10_c00171{bottom:744.666667pt;}
.y40_c00171{bottom:758.800000pt;}
.yf_c00171{bottom:764.133333pt;}
.y3f_c00171{bottom:774.800000pt;}
.ye_c00171{bottom:779.866667pt;}
.y3e_c00171{bottom:790.533333pt;}
.yd_c00171{bottom:799.466667pt;}
.y3d_c00171{bottom:805.866667pt;}
.yc_c00171{bottom:815.466667pt;}
.y3c_c00171{bottom:821.866667pt;}
.yb_c00171{bottom:831.733333pt;}
.y3b_c00171{bottom:837.600000pt;}
.ya_c00171{bottom:852.400000pt;}
.y3a_c00171{bottom:853.600000pt;}
.y9_c00171{bottom:855.600000pt;}
.y39_c00171{bottom:869.333333pt;}
.y8_c00171{bottom:880.933333pt;}
.y38_c00171{bottom:885.066667pt;}
.y37_c00171{bottom:900.800000pt;}
.y7_c00171{bottom:908.133333pt;}
.y36_c00171{bottom:918.800000pt;}
.y6_c00171{bottom:927.733333pt;}
.y35_c00171{bottom:931.866667pt;}
.y5_c00171{bottom:947.600000pt;}
.y34_c00171{bottom:949.466667pt;}
.y33_c00171{bottom:965.466667pt;}
.y4_c00171{bottom:967.066667pt;}
.y32_c00171{bottom:980.800000pt;}
.y31_c00171{bottom:996.533333pt;}
.y3_c00171{bottom:996.800000pt;}
.y2_c00171{bottom:1020.800000pt;}
.y1_c00171{bottom:1022.666667pt;}
.h6_c00171{height:48.000000pt;}
.h4_c00171{height:53.333333pt;}
.h2_c00171{height:58.666667pt;}
.h5_c00171{height:64.000000pt;}
.h3_c00171{height:69.333333pt;}
.h0_c00171{height:1129.920084pt;}
.h1_c00171{height:1130.000000pt;}
.w1_c00171{width:856.000000pt;}
.w0_c00171{width:856.319987pt;}
.x0_c00171{left:0.000000pt;}
.x77_c00171{left:158.400000pt;}
.x13_c00171{left:163.866667pt;}
.x1_c00171{left:165.733333pt;}
.x88_c00171{left:171.733333pt;}
.x7e_c00171{left:172.666667pt;}
.x80_c00171{left:174.000000pt;}
.x61_c00171{left:175.066667pt;}
.x51_c00171{left:176.133333pt;}
.x35_c00171{left:177.600000pt;}
.x27_c00171{left:178.666667pt;}
.x9_c00171{left:179.866667pt;}
.x1a_c00171{left:188.000000pt;}
.x7f_c00171{left:190.133333pt;}
.x5a_c00171{left:191.333333pt;}
.x3a_c00171{left:193.333333pt;}
.x11_c00171{left:194.266667pt;}
.x2e_c00171{left:195.466667pt;}
.x7b_c00171{left:196.400000pt;}
.xc_c00171{left:197.866667pt;}
.x1b_c00171{left:201.066667pt;}
.x14_c00171{left:203.866667pt;}
.x6b_c00171{left:206.666667pt;}
.x89_c00171{left:207.866667pt;}
.x20_c00171{left:210.666667pt;}
.x36_c00171{left:212.533333pt;}
.x2d_c00171{left:214.000000pt;}
.x69_c00171{left:216.266667pt;}
.x28_c00171{left:218.400000pt;}
.x48_c00171{left:220.400000pt;}
.x1c_c00171{left:221.866667pt;}
.xa_c00171{left:222.800000pt;}
.x5f_c00171{left:224.666667pt;}
.x5e_c00171{left:226.533333pt;}
.x6f_c00171{left:227.733333pt;}
.x37_c00171{left:228.800000pt;}
.x62_c00171{left:230.400000pt;}
.x2f_c00171{left:233.200000pt;}
.x42_c00171{left:237.466667pt;}
.x3b_c00171{left:238.400000pt;}
.x55_c00171{left:239.466667pt;}
.x12_c00171{left:241.333333pt;}
.xd_c00171{left:242.666667pt;}
.x60_c00171{left:243.866667pt;}
.x3e_c00171{left:246.133333pt;}
.x22_c00171{left:247.733333pt;}
.x63_c00171{left:250.266667pt;}
.x8a_c00171{left:252.000000pt;}
.x84_c00171{left:254.933333pt;}
.x3_c00171{left:256.000000pt;}
.x8e_c00171{left:258.000000pt;}
.x70_c00171{left:259.066667pt;}
.x15_c00171{left:260.800000pt;}
.x5b_c00171{left:262.400000pt;}
.x81_c00171{left:263.333333pt;}
.x75_c00171{left:265.333333pt;}
.x71_c00171{left:267.066667pt;}
.x29_c00171{left:268.666667pt;}
.x6c_c00171{left:270.666667pt;}
.x49_c00171{left:272.533333pt;}
.x38_c00171{left:274.533333pt;}
.x52_c00171{left:276.933333pt;}
.xe_c00171{left:278.800000pt;}
.x30_c00171{left:283.733333pt;}
.x76_c00171{left:284.800000pt;}
.x8f_c00171{left:286.800000pt;}
.x8b_c00171{left:287.866667pt;}
.x7a_c00171{left:290.000000pt;}
.x58_c00171{left:291.066667pt;}
.x6d_c00171{left:292.133333pt;}
.x31_c00171{left:293.333333pt;}
.x43_c00171{left:295.333333pt;}
.x65_c00171{left:296.266667pt;}
.x1d_c00171{left:299.066667pt;}
.x6a_c00171{left:303.200000pt;}
.x5_c00171{left:304.400000pt;}
.x56_c00171{left:305.733333pt;}
.x6e_c00171{left:307.466667pt;}
.x1e_c00171{left:309.600000pt;}
.x6_c00171{left:311.466667pt;}
.x4_c00171{left:314.266667pt;}
.xf_c00171{left:315.866667pt;}
.x32_c00171{left:317.066667pt;}
.x78_c00171{left:319.733333pt;}
.x5c_c00171{left:322.533333pt;}
.x39_c00171{left:325.466667pt;}
.x16_c00171{left:328.000000pt;}
.x3f_c00171{left:329.066667pt;}
.x4a_c00171{left:330.400000pt;}
.x73_c00171{left:331.466667pt;}
.x66_c00171{left:332.400000pt;}
.x21_c00171{left:333.866667pt;}
.x4d_c00171{left:338.133333pt;}
.x2a_c00171{left:340.666667pt;}
.x1f_c00171{left:341.866667pt;}
.x8c_c00171{left:344.800000pt;}
.x7c_c00171{left:347.066667pt;}
.x85_c00171{left:348.400000pt;}
.xb_c00171{left:349.866667pt;}
.x23_c00171{left:350.800000pt;}
.x74_c00171{left:355.466667pt;}
.x4b_c00171{left:357.333333pt;}
.x40_c00171{left:358.800000pt;}
.x3c_c00171{left:360.666667pt;}
.x17_c00171{left:362.266667pt;}
.x10_c00171{left:363.866667pt;}
.x24_c00171{left:365.466667pt;}
.x8d_c00171{left:367.333333pt;}
.x2b_c00171{left:369.466667pt;}
.x4e_c00171{left:371.066667pt;}
.x7d_c00171{left:372.400000pt;}
.x86_c00171{left:376.266667pt;}
.x18_c00171{left:377.333333pt;}
.x2_c00171{left:378.266667pt;}
.x44_c00171{left:384.666667pt;}
.x79_c00171{left:388.266667pt;}
.x33_c00171{left:390.666667pt;}
.x53_c00171{left:392.133333pt;}
.x7_c00171{left:393.333333pt;}
.x45_c00171{left:398.800000pt;}
.x2c_c00171{left:399.866667pt;}
.x5d_c00171{left:401.200000pt;}
.x57_c00171{left:404.266667pt;}
.x4f_c00171{left:409.466667pt;}
.x82_c00171{left:411.200000pt;}
.x19_c00171{left:412.266667pt;}
.x3d_c00171{left:413.200000pt;}
.x25_c00171{left:414.400000pt;}
.x46_c00171{left:416.666667pt;}
.x50_c00171{left:417.733333pt;}
.x54_c00171{left:418.666667pt;}
.x72_c00171{left:419.866667pt;}
.x83_c00171{left:421.066667pt;}
.x4c_c00171{left:422.666667pt;}
.x8_c00171{left:425.333333pt;}
.x67_c00171{left:430.400000pt;}
.x59_c00171{left:432.133333pt;}
.x26_c00171{left:434.933333pt;}
.x41_c00171{left:436.266667pt;}
.x34_c00171{left:439.333333pt;}
.x87_c00171{left:441.200000pt;}
.x47_c00171{left:446.400000pt;}
.x64_c00171{left:447.333333pt;}
.x68_c00171{left:451.466667pt;}
.x112_c00171{left:467.200000pt;}
.x125_c00171{left:472.666667pt;}
.x12d_c00171{left:473.733333pt;}
.x107_c00171{left:474.933333pt;}
.xe4_c00171{left:477.066667pt;}
.xa7_c00171{left:481.333333pt;}
.x90_c00171{left:482.266667pt;}
.xe8_c00171{left:485.200000pt;}
.x127_c00171{left:487.866667pt;}
.x11a_c00171{left:488.933333pt;}
.xfb_c00171{left:490.133333pt;}
.xf6_c00171{left:491.200000pt;}
.xee_c00171{left:492.533333pt;}
.xad_c00171{left:493.466667pt;}
.xc7_c00171{left:494.800000pt;}
.xbf_c00171{left:495.733333pt;}
.x98_c00171{left:496.933333pt;}
.x12b_c00171{left:498.533333pt;}
.x128_c00171{left:503.200000pt;}
.xde_c00171{left:507.066667pt;}
.x12a_c00171{left:508.133333pt;}
.xb8_c00171{left:511.866667pt;}
.xf2_c00171{left:513.600000pt;}
.xe3_c00171{left:514.933333pt;}
.x122_c00171{left:516.000000pt;}
.xc0_c00171{left:521.333333pt;}
.x91_c00171{left:522.533333pt;}
.x105_c00171{left:524.266667pt;}
.x110_c00171{left:525.200000pt;}
.xae_c00171{left:527.066667pt;}
.x126_c00171{left:528.000000pt;}
.x10a_c00171{left:530.000000pt;}
.x99_c00171{left:531.466667pt;}
.xd9_c00171{left:532.533333pt;}
.xa4_c00171{left:534.133333pt;}
.x129_c00171{left:536.133333pt;}
.xc8_c00171{left:538.933333pt;}
.xe5_c00171{left:540.400000pt;}
.xb9_c00171{left:542.266667pt;}
.xc1_c00171{left:544.000000pt;}
.x124_c00171{left:545.066667pt;}
.xdf_c00171{left:546.133333pt;}
.xda_c00171{left:548.533333pt;}
.xe9_c00171{left:549.866667pt;}
.xcd_c00171{left:551.333333pt;}
.x12e_c00171{left:552.533333pt;}
.xa8_c00171{left:554.000000pt;}
.xfe_c00171{left:556.933333pt;}
.xb2_c00171{left:558.133333pt;}
.xe0_c00171{left:561.466667pt;}
.xba_c00171{left:564.000000pt;}
.x10b_c00171{left:564.933333pt;}
.xa5_c00171{left:568.000000pt;}
.xce_c00171{left:568.933333pt;}
.x100_c00171{left:570.400000pt;}
.x11b_c00171{left:575.066667pt;}
.x9a_c00171{left:576.533333pt;}
.xa9_c00171{left:577.733333pt;}
.xdb_c00171{left:581.200000pt;}
.x92_c00171{left:582.666667pt;}
.xa6_c00171{left:584.266667pt;}
.x104_c00171{left:585.333333pt;}
.x11e_c00171{left:587.333333pt;}
.xc2_c00171{left:588.533333pt;}
.x116_c00171{left:590.533333pt;}
.x111_c00171{left:594.533333pt;}
.xf4_c00171{left:595.466667pt;}
.xb3_c00171{left:597.200000pt;}
.x9b_c00171{left:600.266667pt;}
.xc9_c00171{left:601.333333pt;}
.x9f_c00171{left:602.933333pt;}
.xc3_c00171{left:605.466667pt;}
.xcf_c00171{left:606.666667pt;}
.x12c_c00171{left:608.000000pt;}
.xaf_c00171{left:610.800000pt;}
.x93_c00171{left:612.400000pt;}
.xa0_c00171{left:613.466667pt;}
.x101_c00171{left:615.200000pt;}
.x113_c00171{left:620.000000pt;}
.xd5_c00171{left:622.533333pt;}
.xe6_c00171{left:624.800000pt;}
.xbb_c00171{left:626.933333pt;}
.xf5_c00171{left:628.133333pt;}
.x11c_c00171{left:629.466667pt;}
.xf7_c00171{left:630.666667pt;}
.xc4_c00171{left:631.733333pt;}
.x106_c00171{left:633.466667pt;}
.xaa_c00171{left:635.600000pt;}
.xef_c00171{left:636.800000pt;}
.x10c_c00171{left:637.866667pt;}
.x9c_c00171{left:639.333333pt;}
.xa1_c00171{left:642.533333pt;}
.xb4_c00171{left:645.200000pt;}
.xca_c00171{left:646.666667pt;}
.xd6_c00171{left:649.066667pt;}
.x94_c00171{left:650.533333pt;}
.x10d_c00171{left:652.933333pt;}
.xfc_c00171{left:654.400000pt;}
.x11f_c00171{left:655.466667pt;}
.xab_c00171{left:658.666667pt;}
.xd7_c00171{left:660.266667pt;}
.xf0_c00171{left:661.466667pt;}
.xb0_c00171{left:662.666667pt;}
.xea_c00171{left:666.666667pt;}
.xc5_c00171{left:668.533333pt;}
.x108_c00171{left:669.866667pt;}
.xf8_c00171{left:671.333333pt;}
.x9d_c00171{left:672.266667pt;}
.xb1_c00171{left:673.200000pt;}
.xe7_c00171{left:675.333333pt;}
.xd2_c00171{left:679.466667pt;}
.xa2_c00171{left:680.666667pt;}
.xe1_c00171{left:681.866667pt;}
.x114_c00171{left:686.000000pt;}
.x102_c00171{left:688.800000pt;}
.xff_c00171{left:690.400000pt;}
.xf9_c00171{left:693.333333pt;}
.xbc_c00171{left:694.800000pt;}
.xd3_c00171{left:696.400000pt;}
.x123_c00171{left:697.733333pt;}
.xd0_c00171{left:699.200000pt;}
.xb5_c00171{left:700.933333pt;}
.x95_c00171{left:702.000000pt;}
.xdc_c00171{left:703.200000pt;}
.xa3_c00171{left:704.933333pt;}
.xd8_c00171{left:706.000000pt;}
.xc6_c00171{left:706.933333pt;}
.x120_c00171{left:708.266667pt;}
.xe2_c00171{left:710.400000pt;}
.xcb_c00171{left:713.200000pt;}
.xeb_c00171{left:714.666667pt;}
.x117_c00171{left:717.333333pt;}
.xb6_c00171{left:719.466667pt;}
.xf3_c00171{left:721.866667pt;}
.xbd_c00171{left:723.866667pt;}
.x109_c00171{left:726.133333pt;}
.x96_c00171{left:728.933333pt;}
.x11d_c00171{left:730.000000pt;}
.xd4_c00171{left:733.200000pt;}
.xdd_c00171{left:734.266667pt;}
.xec_c00171{left:736.400000pt;}
.xfd_c00171{left:739.733333pt;}
.x9e_c00171{left:741.333333pt;}
.x118_c00171{left:742.666667pt;}
.x10e_c00171{left:744.133333pt;}
.xd1_c00171{left:745.600000pt;}
.x103_c00171{left:747.600000pt;}
.x119_c00171{left:749.466667pt;}
.xb7_c00171{left:750.533333pt;}
.xbe_c00171{left:751.733333pt;}
.xac_c00171{left:754.266667pt;}
.x121_c00171{left:755.600000pt;}
.xed_c00171{left:757.200000pt;}
.x97_c00171{left:758.400000pt;}
.xcc_c00171{left:760.266667pt;}
.xf1_c00171{left:762.000000pt;}
.xfa_c00171{left:764.666667pt;}
.x115_c00171{left:768.800000pt;}
.x10f_c00171{left:774.533333pt;}
}





/* 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_c00172 {
    display:none;
  }
  .loading-indicator_c00172.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00172 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_c00172 { 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_c00172" -> "#page-container .classname_c00172")
 */
.pf_c00172 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00172 { /* 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_c00172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00172 { /* 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_c00172 { /* 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_c00172 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00172 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00172 {overflow:visible;}
  }
}
.c_c00172 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00172 { /* 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_c00172:after { /* webkit #35443 */
  content: '';
}
.t_c00172:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00172 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 */
}
.__c00172 { /* 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_c00172 { /* info for Javascript */
  display:none;
}
.l_c00172 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00172 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00172 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00172: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_c00172 {
    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_c00172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00172.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_c00172 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00172;src:url('chunks/assets/font_1a6cf15efa53d5b0fbcb86de.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00172{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.md3_c00172{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m80_c00172{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m39_c00172{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00172{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00172{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00172{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m33_c00172{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m50_c00172{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb_c00172{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00172{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mca_c00172{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00172{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00172{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00172{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00172{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00172{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.me7_c00172{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m54_c00172{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m63_c00172{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00172{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m26_c00172{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00172{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00172{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00172{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00172{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me3_c00172{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00172{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m68_c00172{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00172{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m12_c00172{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00172{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00172{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m11_c00172{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00172{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m77_c00172{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m88_c00172{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00172{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m75_c00172{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m97_c00172{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00172{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00172{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00172{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m20_c00172{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m64_c00172{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00172{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.me5_c00172{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m85_c00172{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00172{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m48_c00172{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m76_c00172{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mad_c00172{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00172{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m61_c00172{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00172{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m49_c00172{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00172{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md2_c00172{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00172{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00172{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00172{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00172{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00172{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m87_c00172{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mee_c00172{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me4_c00172{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m60_c00172{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m30_c00172{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00172{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md1_c00172{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00172{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md4_c00172{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00172{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m86_c00172{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mea_c00172{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m51_c00172{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00172{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00172{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m15_c00172{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00172{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00172{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00172{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00172{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m79_c00172{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00172{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m56_c00172{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00172{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00172{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m73_c00172{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md9_c00172{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00172{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00172{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me8_c00172{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00172{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m82_c00172{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m13_c00172{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00172{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc_c00172{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00172{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md7_c00172{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mda_c00172{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m71_c00172{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m42_c00172{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00172{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m99_c00172{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3_c00172{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m65_c00172{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00172{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m66_c00172{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf_c00172{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m40_c00172{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mec_c00172{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md0_c00172{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00172{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m47_c00172{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8_c00172{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m78_c00172{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m96_c00172{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00172{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mde_c00172{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00172{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00172{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00172{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00172{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m93_c00172{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00172{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me0_c00172{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00172{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00172{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m62_c00172{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00172{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m95_c00172{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m67_c00172{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00172{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m58_c00172{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m21_c00172{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00172{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m53_c00172{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m69_c00172{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00172{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m24_c00172{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m90_c00172{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00172{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m91_c00172{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00172{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00172{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.md_c00172{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00172{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m89_c00172{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m55_c00172{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m72_c00172{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.me6_c00172{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m57_c00172{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m17_c00172{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00172{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m22_c00172{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m81_c00172{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.me9_c00172{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00172{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.maf_c00172{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m52_c00172{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00172{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00172{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00172{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9_c00172{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mae_c00172{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m94_c00172{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00172{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00172{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m23_c00172{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md6_c00172{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00172{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00172{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m14_c00172{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00172{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m31_c00172{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00172{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m25_c00172{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m84_c00172{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mba_c00172{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m18_c00172{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00172{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m41_c00172{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00172{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m43_c00172{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00172{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00172{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m74_c00172{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m27_c00172{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00172{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m10_c00172{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m59_c00172{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00172{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00172{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00172{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m83_c00172{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00172{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.me_c00172{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.maa_c00172{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00172{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mac_c00172{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00172{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00172{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00172{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00172{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.me1_c00172{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00172{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00172{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m32_c00172{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m98_c00172{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m70_c00172{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m16_c00172{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00172{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00172{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);}
.m2e_c00172{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00172{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m35_c00172{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m92_c00172{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.me2_c00172{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mef_c00172{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m28_c00172{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00172{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.med_c00172{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.meb_c00172{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m34_c00172{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00172{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00172{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mab_c00172{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00172{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m38_c00172{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00172{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m36_c00172{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m37_c00172{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00172{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md8_c00172{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.md5_c00172{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00172{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00172{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m5_c00172{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00172{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00172{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.mce_c00172{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m46_c00172{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00172{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00172{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m29_c00172{transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);}
.m44_c00172{transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.475250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475250,0.000000,0.000000,0.250000,0,0);}
.m45_c00172{transform:matrix(0.994250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.994250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.994250,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls0_c00172{letter-spacing:0.000000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{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__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00172{word-spacing:-9.167598px;}
.ws4_c00172{word-spacing:-6.419214px;}
.ws3_c00172{word-spacing:-3.333333px;}
.ws0_c00172{word-spacing:-1.471338px;}
.ws7_c00172{word-spacing:0.000000px;}
.ws5_c00172{word-spacing:2.229050px;}
.ws2_c00172{word-spacing:5.166667px;}
.ws1_c00172{word-spacing:13.706199px;}
.fc0_c00172{color:transparent;}
.fs5_c00172{font-size:30.000000px;}
.fs6_c00172{font-size:42.000000px;}
.fs2_c00172{font-size:48.000000px;}
.fs7_c00172{font-size:54.000000px;}
.fs3_c00172{font-size:60.000000px;}
.fs4_c00172{font-size:66.000000px;}
.fs1_c00172{font-size:78.000000px;}
.fs0_c00172{font-size:90.000000px;}
.y0_c00172{bottom:0.000000px;}
.y4_c00172{bottom:34.950000px;}
.y6e_c00172{bottom:167.400000px;}
.y6d_c00172{bottom:192.600000px;}
.y39_c00172{bottom:196.500000px;}
.y6c_c00172{bottom:207.750000px;}
.y38_c00172{bottom:214.200000px;}
.y6b_c00172{bottom:222.150000px;}
.y37_c00172{bottom:232.200000px;}
.y6a_c00172{bottom:237.300000px;}
.y36_c00172{bottom:249.900000px;}
.y69_c00172{bottom:250.950000px;}
.y68_c00172{bottom:267.450000px;}
.y35_c00172{bottom:267.600000px;}
.y34_c00172{bottom:285.900000px;}
.y33_c00172{bottom:303.150000px;}
.y65_c00172{bottom:304.200000px;}
.y64_c00172{bottom:320.700000px;}
.y32_c00172{bottom:320.850000px;}
.y31_c00172{bottom:338.850000px;}
.y63_c00172{bottom:346.950000px;}
.y6f_c00172{bottom:356.400000px;}
.y30_c00172{bottom:356.550000px;}
.y62_c00172{bottom:369.300000px;}
.y2f_c00172{bottom:374.250000px;}
.y61_c00172{bottom:390.600000px;}
.y2e_c00172{bottom:392.250000px;}
.y60_c00172{bottom:409.350000px;}
.y2d_c00172{bottom:409.950000px;}
.y2c_c00172{bottom:427.650000px;}
.y5f_c00172{bottom:430.500000px;}
.y2b_c00172{bottom:445.350000px;}
.y5e_c00172{bottom:452.850000px;}
.y2a_c00172{bottom:467.400000px;}
.y5d_c00172{bottom:470.550000px;}
.y29_c00172{bottom:485.100000px;}
.y5c_c00172{bottom:488.550000px;}
.y28_c00172{bottom:503.100000px;}
.y5b_c00172{bottom:510.150000px;}
.y27_c00172{bottom:521.100000px;}
.y5a_c00172{bottom:532.500000px;}
.y67_c00172{bottom:535.200000px;}
.y26_c00172{bottom:538.800000px;}
.y66_c00172{bottom:551.100000px;}
.y59_c00172{bottom:554.700000px;}
.y25_c00172{bottom:556.800000px;}
.y58_c00172{bottom:572.400000px;}
.y24_c00172{bottom:574.050000px;}
.y57_c00172{bottom:590.100000px;}
.y23_c00172{bottom:592.050000px;}
.y22_c00172{bottom:610.050000px;}
.y56_c00172{bottom:612.300000px;}
.y21_c00172{bottom:628.050000px;}
.y55_c00172{bottom:630.000000px;}
.y20_c00172{bottom:645.750000px;}
.y54_c00172{bottom:647.700000px;}
.y1f_c00172{bottom:663.450000px;}
.y53_c00172{bottom:665.400000px;}
.y1e_c00172{bottom:681.450000px;}
.y52_c00172{bottom:683.100000px;}
.y1d_c00172{bottom:699.450000px;}
.y51_c00172{bottom:700.800000px;}
.y1c_c00172{bottom:717.150000px;}
.y50_c00172{bottom:718.500000px;}
.y1b_c00172{bottom:734.850000px;}
.y4f_c00172{bottom:736.200000px;}
.y1a_c00172{bottom:752.850000px;}
.y4e_c00172{bottom:753.900000px;}
.y19_c00172{bottom:770.100000px;}
.y4d_c00172{bottom:771.900000px;}
.y18_c00172{bottom:788.100000px;}
.y4c_c00172{bottom:789.900000px;}
.y4b_c00172{bottom:807.150000px;}
.y17_c00172{bottom:809.700000px;}
.y4a_c00172{bottom:825.150000px;}
.y16_c00172{bottom:838.050000px;}
.y49_c00172{bottom:842.100000px;}
.y15_c00172{bottom:845.550000px;}
.y14_c00172{bottom:847.050000px;}
.y13_c00172{bottom:848.100000px;}
.y12_c00172{bottom:858.900000px;}
.y48_c00172{bottom:860.100000px;}
.y11_c00172{bottom:866.850000px;}
.y47_c00172{bottom:878.100000px;}
.y10_c00172{bottom:884.850000px;}
.yf_c00172{bottom:891.750000px;}
.y46_c00172{bottom:895.800000px;}
.y45_c00172{bottom:913.500000px;}
.ye_c00172{bottom:914.400000px;}
.y44_c00172{bottom:931.200000px;}
.yd_c00172{bottom:935.700000px;}
.y43_c00172{bottom:948.900000px;}
.yc_c00172{bottom:957.900000px;}
.y42_c00172{bottom:965.850000px;}
.y41_c00172{bottom:988.650000px;}
.yb_c00172{bottom:991.800000px;}
.y40_c00172{bottom:1006.350000px;}
.y3f_c00172{bottom:1024.350000px;}
.ya_c00172{bottom:1027.350000px;}
.y3e_c00172{bottom:1042.050000px;}
.y9_c00172{bottom:1045.050000px;}
.y3d_c00172{bottom:1059.300000px;}
.y8_c00172{bottom:1063.050000px;}
.y3c_c00172{bottom:1077.300000px;}
.y7_c00172{bottom:1080.300000px;}
.y3b_c00172{bottom:1095.000000px;}
.y6_c00172{bottom:1098.300000px;}
.y3a_c00172{bottom:1112.700000px;}
.y5_c00172{bottom:1116.000000px;}
.y2_c00172{bottom:1136.250000px;}
.y1_c00172{bottom:1140.900000px;}
.y3_c00172{bottom:1271.850000px;}
.h7_c00172{height:30.000000px;}
.h8_c00172{height:42.000000px;}
.h4_c00172{height:48.000000px;}
.h9_c00172{height:54.000000px;}
.h5_c00172{height:60.000000px;}
.h6_c00172{height:66.000000px;}
.h3_c00172{height:78.000000px;}
.h2_c00172{height:90.000000px;}
.h1_c00172{height:1272.000000px;}
.h0_c00172{height:1272.239960px;}
.w1_c00172{width:963.000000px;}
.w0_c00172{width:963.359985px;}
.x0_c00172{left:0.000000px;}
.x38_c00172{left:76.650000px;}
.x2b_c00172{left:83.550000px;}
.x3_c00172{left:84.600000px;}
.x89_c00172{left:92.550000px;}
.x81_c00172{left:95.250000px;}
.x72_c00172{left:96.450000px;}
.x4e_c00172{left:98.250000px;}
.x26_c00172{left:99.900000px;}
.x9_c00172{left:102.900000px;}
.x86_c00172{left:113.100000px;}
.x4f_c00172{left:115.200000px;}
.x5c_c00172{left:116.250000px;}
.x2f_c00172{left:117.750000px;}
.x4_c00172{left:119.850000px;}
.x7c_c00172{left:121.500000px;}
.xa_c00172{left:124.200000px;}
.x39_c00172{left:127.800000px;}
.x41_c00172{left:128.850000px;}
.x23_c00172{left:130.050000px;}
.x45_c00172{left:131.700000px;}
.x82_c00172{left:134.250000px;}
.x57_c00172{left:136.950000px;}
.x14_c00172{left:138.600000px;}
.x5f_c00172{left:141.150000px;}
.x1c_c00172{left:143.100000px;}
.x73_c00172{left:145.800000px;}
.x42_c00172{left:146.850000px;}
.x91_c00172{left:147.900000px;}
.x50_c00172{left:149.700000px;}
.x8b_c00172{left:152.400000px;}
.x98_c00172{left:156.300000px;}
.x15_c00172{left:157.350000px;}
.x87_c00172{left:159.900000px;}
.x9a_c00172{left:161.250000px;}
.x34_c00172{left:163.500000px;}
.xb_c00172{left:164.550000px;}
.x46_c00172{left:168.000000px;}
.x51_c00172{left:169.500000px;}
.x30_c00172{left:170.700000px;}
.x35_c00172{left:174.600000px;}
.xc_c00172{left:176.850000px;}
.x77_c00172{left:179.250000px;}
.x2a_c00172{left:181.800000px;}
.x95_c00172{left:183.750000px;}
.x24_c00172{left:184.800000px;}
.x27_c00172{left:188.100000px;}
.x8e_c00172{left:189.900000px;}
.x47_c00172{left:191.400000px;}
.x83_c00172{left:193.350000px;}
.x3a_c00172{left:194.700000px;}
.x78_c00172{left:199.050000px;}
.x5_c00172{left:200.550000px;}
.x88_c00172{left:203.850000px;}
.x2c_c00172{left:204.900000px;}
.x5d_c00172{left:207.000000px;}
.x8c_c00172{left:208.200000px;}
.x3f_c00172{left:210.300000px;}
.x36_c00172{left:212.400000px;}
.x31_c00172{left:213.900000px;}
.x2d_c00172{left:215.700000px;}
.x65_c00172{left:217.200000px;}
.x16_c00172{left:219.300000px;}
.x9d_c00172{left:220.950000px;}
.x1d_c00172{left:222.300000px;}
.xd_c00172{left:224.700000px;}
.x9b_c00172{left:226.350000px;}
.x94_c00172{left:227.700000px;}
.x28_c00172{left:230.250000px;}
.x96_c00172{left:234.450000px;}
.x17_c00172{left:236.550000px;}
.x58_c00172{left:237.750000px;}
.x4b_c00172{left:239.250000px;}
.x6_c00172{left:242.700000px;}
.xe_c00172{left:244.200000px;}
.x71_c00172{left:247.050000px;}
.x29_c00172{left:249.000000px;}
.x4c_c00172{left:250.050000px;}
.x62_c00172{left:251.850000px;}
.x52_c00172{left:252.900000px;}
.x18_c00172{left:254.250000px;}
.x1e_c00172{left:255.450000px;}
.x92_c00172{left:257.100000px;}
.x32_c00172{left:261.450000px;}
.x63_c00172{left:263.700000px;}
.x1f_c00172{left:266.550000px;}
.x7d_c00172{left:268.800000px;}
.x84_c00172{left:270.000000px;}
.x70_c00172{left:271.650000px;}
.x60_c00172{left:273.300000px;}
.x59_c00172{left:276.300000px;}
.xf_c00172{left:279.900000px;}
.x5e_c00172{left:283.650000px;}
.x8d_c00172{left:284.850000px;}
.x6e_c00172{left:286.500000px;}
.x99_c00172{left:288.750000px;}
.x43_c00172{left:290.100000px;}
.x2e_c00172{left:291.600000px;}
.x7e_c00172{left:293.700000px;}
.x74_c00172{left:295.200000px;}
.x7_c00172{left:297.750000px;}
.x66_c00172{left:298.950000px;}
.x19_c00172{left:300.300000px;}
.x3e_c00172{left:304.950000px;}
.x75_c00172{left:306.750000px;}
.x53_c00172{left:308.400000px;}
.x67_c00172{left:310.050000px;}
.x6b_c00172{left:311.850000px;}
.x20_c00172{left:313.650000px;}
.x9c_c00172{left:314.850000px;}
.x33_c00172{left:316.500000px;}
.x7a_c00172{left:319.500000px;}
.x48_c00172{left:321.000000px;}
.x10_c00172{left:322.800000px;}
.x3b_c00172{left:325.350000px;}
.x54_c00172{left:327.450000px;}
.x68_c00172{left:329.100000px;}
.x1_c00172{left:330.900000px;}
.x21_c00172{left:333.450000px;}
.x85_c00172{left:337.200000px;}
.x6f_c00172{left:339.000000px;}
.x64_c00172{left:340.350000px;}
.x11_c00172{left:341.850000px;}
.x1a_c00172{left:343.200000px;}
.x49_c00172{left:344.400000px;}
.x8f_c00172{left:345.900000px;}
.x5a_c00172{left:346.950000px;}
.x6c_c00172{left:351.900000px;}
.x7f_c00172{left:354.150000px;}
.x97_c00172{left:355.350000px;}
.x8_c00172{left:356.400000px;}
.x90_c00172{left:358.200000px;}
.x25_c00172{left:359.400000px;}
.x79_c00172{left:361.050000px;}
.x76_c00172{left:362.850000px;}
.x3c_c00172{left:363.900000px;}
.x22_c00172{left:365.100000px;}
.x44_c00172{left:367.800000px;}
.x69_c00172{left:370.800000px;}
.x61_c00172{left:372.300000px;}
.x9f_c00172{left:373.500000px;}
.x9e_c00172{left:375.450000px;}
.x55_c00172{left:376.800000px;}
.x80_c00172{left:377.850000px;}
.x4a_c00172{left:380.700000px;}
.x7b_c00172{left:383.550000px;}
.x93_c00172{left:385.650000px;}
.x56_c00172{left:387.600000px;}
.x5b_c00172{left:389.400000px;}
.x12_c00172{left:391.200000px;}
.x4d_c00172{left:392.400000px;}
.x6a_c00172{left:393.900000px;}
.x40_c00172{left:398.250000px;}
.x3d_c00172{left:401.400000px;}
.x1b_c00172{left:403.650000px;}
.xa0_c00172{left:407.400000px;}
.x8a_c00172{left:408.750000px;}
.x6d_c00172{left:412.050000px;}
.x37_c00172{left:414.300000px;}
.x13_c00172{left:418.200000px;}
.x135_c00172{left:431.250000px;}
.x12d_c00172{left:432.300000px;}
.xf1_c00172{left:443.100000px;}
.x133_c00172{left:446.400000px;}
.x12a_c00172{left:450.000000px;}
.x124_c00172{left:451.200000px;}
.x117_c00172{left:452.550000px;}
.x107_c00172{left:453.900000px;}
.x100_c00172{left:455.400000px;}
.xe4_c00172{left:456.900000px;}
.xdb_c00172{left:457.950000px;}
.xc5_c00172{left:459.000000px;}
.xa1_c00172{left:461.100000px;}
.x12b_c00172{left:467.250000px;}
.x11c_c00172{left:468.450000px;}
.x128_c00172{left:469.500000px;}
.x115_c00172{left:470.850000px;}
.xc6_c00172{left:475.950000px;}
.xa2_c00172{left:477.000000px;}
.xc9_c00172{left:479.700000px;}
.xf7_c00172{left:485.850000px;}
.xb1_c00172{left:488.100000px;}
.xd1_c00172{left:489.450000px;}
.x12e_c00172{left:491.400000px;}
.x125_c00172{left:492.900000px;}
.xca_c00172{left:495.600000px;}
.x120_c00172{left:498.750000px;}
.xb2_c00172{left:499.950000px;}
.xfb_c00172{left:501.000000px;}
.xac_c00172{left:502.200000px;}
.xa3_c00172{left:506.100000px;}
.x134_c00172{left:508.050000px;}
.x11b_c00172{left:509.400000px;}
.xdc_c00172{left:511.200000px;}
.x11a_c00172{left:512.250000px;}
.xfc_c00172{left:513.300000px;}
.x109_c00172{left:514.350000px;}
.xb3_c00172{left:515.850000px;}
.xb9_c00172{left:517.050000px;}
.xec_c00172{left:518.700000px;}
.xdf_c00172{left:520.950000px;}
.x105_c00172{left:522.600000px;}
.xf2_c00172{left:524.100000px;}
.xc7_c00172{left:525.600000px;}
.x10f_c00172{left:528.300000px;}
.xcd_c00172{left:529.500000px;}
.xd2_c00172{left:530.850000px;}
.xe9_c00172{left:532.350000px;}
.xfd_c00172{left:533.400000px;}
.xd8_c00172{left:534.450000px;}
.xe0_c00172{left:536.100000px;}
.xf8_c00172{left:541.350000px;}
.x10a_c00172{left:542.850000px;}
.x12f_c00172{left:543.900000px;}
.xa4_c00172{left:547.500000px;}
.xba_c00172{left:549.150000px;}
.xed_c00172{left:550.350000px;}
.x119_c00172{left:551.850000px;}
.xc1_c00172{left:554.400000px;}
.x138_c00172{left:556.800000px;}
.xcb_c00172{left:558.900000px;}
.x121_c00172{left:559.950000px;}
.x111_c00172{left:561.300000px;}
.x102_c00172{left:563.850000px;}
.xbf_c00172{left:566.100000px;}
.xa5_c00172{left:567.600000px;}
.xe5_c00172{left:570.300000px;}
.xdd_c00172{left:572.100000px;}
.x110_c00172{left:573.300000px;}
.xce_c00172{left:574.500000px;}
.x112_c00172{left:576.000000px;}
.x11d_c00172{left:577.650000px;}
.x10d_c00172{left:579.750000px;}
.xd3_c00172{left:580.950000px;}
.xad_c00172{left:586.050000px;}
.xb4_c00172{left:589.350000px;}
.xe1_c00172{left:590.850000px;}
.x10b_c00172{left:593.250000px;}
.xcc_c00172{left:595.650000px;}
.xa6_c00172{left:597.900000px;}
.xae_c00172{left:601.200000px;}
.xee_c00172{left:603.300000px;}
.xd9_c00172{left:607.950000px;}
.xd4_c00172{left:609.750000px;}
.xde_c00172{left:612.000000px;}
.x103_c00172{left:614.550000px;}
.xa7_c00172{left:616.650000px;}
.xef_c00172{left:620.250000px;}
.xb5_c00172{left:622.050000px;}
.x136_c00172{left:626.250000px;}
.xf3_c00172{left:628.050000px;}
.x11e_c00172{left:630.150000px;}
.xcf_c00172{left:632.100000px;}
.xa8_c00172{left:633.600000px;}
.x129_c00172{left:635.100000px;}
.xbb_c00172{left:636.600000px;}
.xc8_c00172{left:638.700000px;}
.xc2_c00172{left:639.750000px;}
.x108_c00172{left:640.800000px;}
.xfe_c00172{left:642.000000px;}
.xf4_c00172{left:643.950000px;}
.x126_c00172{left:645.150000px;}
.x130_c00172{left:646.950000px;}
.xe6_c00172{left:649.500000px;}
.x10c_c00172{left:652.350000px;}
.x127_c00172{left:654.150000px;}
.x12c_c00172{left:656.550000px;}
.xb6_c00172{left:657.750000px;}
.x118_c00172{left:659.250000px;}
.xea_c00172{left:660.450000px;}
.xa9_c00172{left:662.700000px;}
.xda_c00172{left:664.050000px;}
.xbc_c00172{left:666.150000px;}
.xe7_c00172{left:669.000000px;}
.xd5_c00172{left:670.500000px;}
.xaf_c00172{left:672.450000px;}
.x106_c00172{left:673.800000px;}
.xeb_c00172{left:677.400000px;}
.xe2_c00172{left:678.750000px;}
.xf9_c00172{left:681.000000px;}
.xc0_c00172{left:684.450000px;}
.x122_c00172{left:685.650000px;}
.x104_c00172{left:689.100000px;}
.x137_c00172{left:690.300000px;}
.x11f_c00172{left:693.900000px;}
.x101_c00172{left:696.900000px;}
.xe3_c00172{left:698.550000px;}
.x132_c00172{left:700.200000px;}
.xf5_c00172{left:701.550000px;}
.x123_c00172{left:702.900000px;}
.x131_c00172{left:704.550000px;}
.xd0_c00172{left:708.750000px;}
.xff_c00172{left:711.750000px;}
.x10e_c00172{left:714.150000px;}
.xe8_c00172{left:717.300000px;}
.x113_c00172{left:719.550000px;}
.xbd_c00172{left:721.200000px;}
.xb0_c00172{left:725.700000px;}
.xc3_c00172{left:729.000000px;}
.xaa_c00172{left:730.800000px;}
.xd6_c00172{left:732.450000px;}
.xf6_c00172{left:735.000000px;}
.xb7_c00172{left:736.650000px;}
.xbe_c00172{left:737.700000px;}
.x114_c00172{left:739.350000px;}
.xfa_c00172{left:743.700000px;}
.xab_c00172{left:748.050000px;}
.x2_c00172{left:752.100000px;}
.x116_c00172{left:755.250000px;}
.xc4_c00172{left:757.500000px;}
.xd7_c00172{left:759.450000px;}
.xf0_c00172{left:763.950000px;}
.xb8_c00172{left:767.550000px;}
.x139_c00172{left:812.100000px;}
.x13a_c00172{left:937.050000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ws6_c00172{word-spacing:-8.148976pt;}
.ws4_c00172{word-spacing:-5.705968pt;}
.ws3_c00172{word-spacing:-2.962963pt;}
.ws0_c00172{word-spacing:-1.307856pt;}
.ws7_c00172{word-spacing:0.000000pt;}
.ws5_c00172{word-spacing:1.981378pt;}
.ws2_c00172{word-spacing:4.592593pt;}
.ws1_c00172{word-spacing:12.183288pt;}
.fs5_c00172{font-size:26.666667pt;}
.fs6_c00172{font-size:37.333333pt;}
.fs2_c00172{font-size:42.666667pt;}
.fs7_c00172{font-size:48.000000pt;}
.fs3_c00172{font-size:53.333333pt;}
.fs4_c00172{font-size:58.666667pt;}
.fs1_c00172{font-size:69.333333pt;}
.fs0_c00172{font-size:80.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y4_c00172{bottom:31.066667pt;}
.y6e_c00172{bottom:148.800000pt;}
.y6d_c00172{bottom:171.200000pt;}
.y39_c00172{bottom:174.666667pt;}
.y6c_c00172{bottom:184.666667pt;}
.y38_c00172{bottom:190.400000pt;}
.y6b_c00172{bottom:197.466667pt;}
.y37_c00172{bottom:206.400000pt;}
.y6a_c00172{bottom:210.933333pt;}
.y36_c00172{bottom:222.133333pt;}
.y69_c00172{bottom:223.066667pt;}
.y68_c00172{bottom:237.733333pt;}
.y35_c00172{bottom:237.866667pt;}
.y34_c00172{bottom:254.133333pt;}
.y33_c00172{bottom:269.466667pt;}
.y65_c00172{bottom:270.400000pt;}
.y64_c00172{bottom:285.066667pt;}
.y32_c00172{bottom:285.200000pt;}
.y31_c00172{bottom:301.200000pt;}
.y63_c00172{bottom:308.400000pt;}
.y6f_c00172{bottom:316.800000pt;}
.y30_c00172{bottom:316.933333pt;}
.y62_c00172{bottom:328.266667pt;}
.y2f_c00172{bottom:332.666667pt;}
.y61_c00172{bottom:347.200000pt;}
.y2e_c00172{bottom:348.666667pt;}
.y60_c00172{bottom:363.866667pt;}
.y2d_c00172{bottom:364.400000pt;}
.y2c_c00172{bottom:380.133333pt;}
.y5f_c00172{bottom:382.666667pt;}
.y2b_c00172{bottom:395.866667pt;}
.y5e_c00172{bottom:402.533333pt;}
.y2a_c00172{bottom:415.466667pt;}
.y5d_c00172{bottom:418.266667pt;}
.y29_c00172{bottom:431.200000pt;}
.y5c_c00172{bottom:434.266667pt;}
.y28_c00172{bottom:447.200000pt;}
.y5b_c00172{bottom:453.466667pt;}
.y27_c00172{bottom:463.200000pt;}
.y5a_c00172{bottom:473.333333pt;}
.y67_c00172{bottom:475.733333pt;}
.y26_c00172{bottom:478.933333pt;}
.y66_c00172{bottom:489.866667pt;}
.y59_c00172{bottom:493.066667pt;}
.y25_c00172{bottom:494.933333pt;}
.y58_c00172{bottom:508.800000pt;}
.y24_c00172{bottom:510.266667pt;}
.y57_c00172{bottom:524.533333pt;}
.y23_c00172{bottom:526.266667pt;}
.y22_c00172{bottom:542.266667pt;}
.y56_c00172{bottom:544.266667pt;}
.y21_c00172{bottom:558.266667pt;}
.y55_c00172{bottom:560.000000pt;}
.y20_c00172{bottom:574.000000pt;}
.y54_c00172{bottom:575.733333pt;}
.y1f_c00172{bottom:589.733333pt;}
.y53_c00172{bottom:591.466667pt;}
.y1e_c00172{bottom:605.733333pt;}
.y52_c00172{bottom:607.200000pt;}
.y1d_c00172{bottom:621.733333pt;}
.y51_c00172{bottom:622.933333pt;}
.y1c_c00172{bottom:637.466667pt;}
.y50_c00172{bottom:638.666667pt;}
.y1b_c00172{bottom:653.200000pt;}
.y4f_c00172{bottom:654.400000pt;}
.y1a_c00172{bottom:669.200000pt;}
.y4e_c00172{bottom:670.133333pt;}
.y19_c00172{bottom:684.533333pt;}
.y4d_c00172{bottom:686.133333pt;}
.y18_c00172{bottom:700.533333pt;}
.y4c_c00172{bottom:702.133333pt;}
.y4b_c00172{bottom:717.466667pt;}
.y17_c00172{bottom:719.733333pt;}
.y4a_c00172{bottom:733.466667pt;}
.y16_c00172{bottom:744.933333pt;}
.y49_c00172{bottom:748.533333pt;}
.y15_c00172{bottom:751.600000pt;}
.y14_c00172{bottom:752.933333pt;}
.y13_c00172{bottom:753.866667pt;}
.y12_c00172{bottom:763.466667pt;}
.y48_c00172{bottom:764.533333pt;}
.y11_c00172{bottom:770.533333pt;}
.y47_c00172{bottom:780.533333pt;}
.y10_c00172{bottom:786.533333pt;}
.yf_c00172{bottom:792.666667pt;}
.y46_c00172{bottom:796.266667pt;}
.y45_c00172{bottom:812.000000pt;}
.ye_c00172{bottom:812.800000pt;}
.y44_c00172{bottom:827.733333pt;}
.yd_c00172{bottom:831.733333pt;}
.y43_c00172{bottom:843.466667pt;}
.yc_c00172{bottom:851.466667pt;}
.y42_c00172{bottom:858.533333pt;}
.y41_c00172{bottom:878.800000pt;}
.yb_c00172{bottom:881.600000pt;}
.y40_c00172{bottom:894.533333pt;}
.y3f_c00172{bottom:910.533333pt;}
.ya_c00172{bottom:913.200000pt;}
.y3e_c00172{bottom:926.266667pt;}
.y9_c00172{bottom:928.933333pt;}
.y3d_c00172{bottom:941.600000pt;}
.y8_c00172{bottom:944.933333pt;}
.y3c_c00172{bottom:957.600000pt;}
.y7_c00172{bottom:960.266667pt;}
.y3b_c00172{bottom:973.333333pt;}
.y6_c00172{bottom:976.266667pt;}
.y3a_c00172{bottom:989.066667pt;}
.y5_c00172{bottom:992.000000pt;}
.y2_c00172{bottom:1010.000000pt;}
.y1_c00172{bottom:1014.133333pt;}
.y3_c00172{bottom:1130.533333pt;}
.h7_c00172{height:26.666667pt;}
.h8_c00172{height:37.333333pt;}
.h4_c00172{height:42.666667pt;}
.h9_c00172{height:48.000000pt;}
.h5_c00172{height:53.333333pt;}
.h6_c00172{height:58.666667pt;}
.h3_c00172{height:69.333333pt;}
.h2_c00172{height:80.000000pt;}
.h1_c00172{height:1130.666667pt;}
.h0_c00172{height:1130.879964pt;}
.w1_c00172{width:856.000000pt;}
.w0_c00172{width:856.319987pt;}
.x0_c00172{left:0.000000pt;}
.x38_c00172{left:68.133333pt;}
.x2b_c00172{left:74.266667pt;}
.x3_c00172{left:75.200000pt;}
.x89_c00172{left:82.266667pt;}
.x81_c00172{left:84.666667pt;}
.x72_c00172{left:85.733333pt;}
.x4e_c00172{left:87.333333pt;}
.x26_c00172{left:88.800000pt;}
.x9_c00172{left:91.466667pt;}
.x86_c00172{left:100.533333pt;}
.x4f_c00172{left:102.400000pt;}
.x5c_c00172{left:103.333333pt;}
.x2f_c00172{left:104.666667pt;}
.x4_c00172{left:106.533333pt;}
.x7c_c00172{left:108.000000pt;}
.xa_c00172{left:110.400000pt;}
.x39_c00172{left:113.600000pt;}
.x41_c00172{left:114.533333pt;}
.x23_c00172{left:115.600000pt;}
.x45_c00172{left:117.066667pt;}
.x82_c00172{left:119.333333pt;}
.x57_c00172{left:121.733333pt;}
.x14_c00172{left:123.200000pt;}
.x5f_c00172{left:125.466667pt;}
.x1c_c00172{left:127.200000pt;}
.x73_c00172{left:129.600000pt;}
.x42_c00172{left:130.533333pt;}
.x91_c00172{left:131.466667pt;}
.x50_c00172{left:133.066667pt;}
.x8b_c00172{left:135.466667pt;}
.x98_c00172{left:138.933333pt;}
.x15_c00172{left:139.866667pt;}
.x87_c00172{left:142.133333pt;}
.x9a_c00172{left:143.333333pt;}
.x34_c00172{left:145.333333pt;}
.xb_c00172{left:146.266667pt;}
.x46_c00172{left:149.333333pt;}
.x51_c00172{left:150.666667pt;}
.x30_c00172{left:151.733333pt;}
.x35_c00172{left:155.200000pt;}
.xc_c00172{left:157.200000pt;}
.x77_c00172{left:159.333333pt;}
.x2a_c00172{left:161.600000pt;}
.x95_c00172{left:163.333333pt;}
.x24_c00172{left:164.266667pt;}
.x27_c00172{left:167.200000pt;}
.x8e_c00172{left:168.800000pt;}
.x47_c00172{left:170.133333pt;}
.x83_c00172{left:171.866667pt;}
.x3a_c00172{left:173.066667pt;}
.x78_c00172{left:176.933333pt;}
.x5_c00172{left:178.266667pt;}
.x88_c00172{left:181.200000pt;}
.x2c_c00172{left:182.133333pt;}
.x5d_c00172{left:184.000000pt;}
.x8c_c00172{left:185.066667pt;}
.x3f_c00172{left:186.933333pt;}
.x36_c00172{left:188.800000pt;}
.x31_c00172{left:190.133333pt;}
.x2d_c00172{left:191.733333pt;}
.x65_c00172{left:193.066667pt;}
.x16_c00172{left:194.933333pt;}
.x9d_c00172{left:196.400000pt;}
.x1d_c00172{left:197.600000pt;}
.xd_c00172{left:199.733333pt;}
.x9b_c00172{left:201.200000pt;}
.x94_c00172{left:202.400000pt;}
.x28_c00172{left:204.666667pt;}
.x96_c00172{left:208.400000pt;}
.x17_c00172{left:210.266667pt;}
.x58_c00172{left:211.333333pt;}
.x4b_c00172{left:212.666667pt;}
.x6_c00172{left:215.733333pt;}
.xe_c00172{left:217.066667pt;}
.x71_c00172{left:219.600000pt;}
.x29_c00172{left:221.333333pt;}
.x4c_c00172{left:222.266667pt;}
.x62_c00172{left:223.866667pt;}
.x52_c00172{left:224.800000pt;}
.x18_c00172{left:226.000000pt;}
.x1e_c00172{left:227.066667pt;}
.x92_c00172{left:228.533333pt;}
.x32_c00172{left:232.400000pt;}
.x63_c00172{left:234.400000pt;}
.x1f_c00172{left:236.933333pt;}
.x7d_c00172{left:238.933333pt;}
.x84_c00172{left:240.000000pt;}
.x70_c00172{left:241.466667pt;}
.x60_c00172{left:242.933333pt;}
.x59_c00172{left:245.600000pt;}
.xf_c00172{left:248.800000pt;}
.x5e_c00172{left:252.133333pt;}
.x8d_c00172{left:253.200000pt;}
.x6e_c00172{left:254.666667pt;}
.x99_c00172{left:256.666667pt;}
.x43_c00172{left:257.866667pt;}
.x2e_c00172{left:259.200000pt;}
.x7e_c00172{left:261.066667pt;}
.x74_c00172{left:262.400000pt;}
.x7_c00172{left:264.666667pt;}
.x66_c00172{left:265.733333pt;}
.x19_c00172{left:266.933333pt;}
.x3e_c00172{left:271.066667pt;}
.x75_c00172{left:272.666667pt;}
.x53_c00172{left:274.133333pt;}
.x67_c00172{left:275.600000pt;}
.x6b_c00172{left:277.200000pt;}
.x20_c00172{left:278.800000pt;}
.x9c_c00172{left:279.866667pt;}
.x33_c00172{left:281.333333pt;}
.x7a_c00172{left:284.000000pt;}
.x48_c00172{left:285.333333pt;}
.x10_c00172{left:286.933333pt;}
.x3b_c00172{left:289.200000pt;}
.x54_c00172{left:291.066667pt;}
.x68_c00172{left:292.533333pt;}
.x1_c00172{left:294.133333pt;}
.x21_c00172{left:296.400000pt;}
.x85_c00172{left:299.733333pt;}
.x6f_c00172{left:301.333333pt;}
.x64_c00172{left:302.533333pt;}
.x11_c00172{left:303.866667pt;}
.x1a_c00172{left:305.066667pt;}
.x49_c00172{left:306.133333pt;}
.x8f_c00172{left:307.466667pt;}
.x5a_c00172{left:308.400000pt;}
.x6c_c00172{left:312.800000pt;}
.x7f_c00172{left:314.800000pt;}
.x97_c00172{left:315.866667pt;}
.x8_c00172{left:316.800000pt;}
.x90_c00172{left:318.400000pt;}
.x25_c00172{left:319.466667pt;}
.x79_c00172{left:320.933333pt;}
.x76_c00172{left:322.533333pt;}
.x3c_c00172{left:323.466667pt;}
.x22_c00172{left:324.533333pt;}
.x44_c00172{left:326.933333pt;}
.x69_c00172{left:329.600000pt;}
.x61_c00172{left:330.933333pt;}
.x9f_c00172{left:332.000000pt;}
.x9e_c00172{left:333.733333pt;}
.x55_c00172{left:334.933333pt;}
.x80_c00172{left:335.866667pt;}
.x4a_c00172{left:338.400000pt;}
.x7b_c00172{left:340.933333pt;}
.x93_c00172{left:342.800000pt;}
.x56_c00172{left:344.533333pt;}
.x5b_c00172{left:346.133333pt;}
.x12_c00172{left:347.733333pt;}
.x4d_c00172{left:348.800000pt;}
.x6a_c00172{left:350.133333pt;}
.x40_c00172{left:354.000000pt;}
.x3d_c00172{left:356.800000pt;}
.x1b_c00172{left:358.800000pt;}
.xa0_c00172{left:362.133333pt;}
.x8a_c00172{left:363.333333pt;}
.x6d_c00172{left:366.266667pt;}
.x37_c00172{left:368.266667pt;}
.x13_c00172{left:371.733333pt;}
.x135_c00172{left:383.333333pt;}
.x12d_c00172{left:384.266667pt;}
.xf1_c00172{left:393.866667pt;}
.x133_c00172{left:396.800000pt;}
.x12a_c00172{left:400.000000pt;}
.x124_c00172{left:401.066667pt;}
.x117_c00172{left:402.266667pt;}
.x107_c00172{left:403.466667pt;}
.x100_c00172{left:404.800000pt;}
.xe4_c00172{left:406.133333pt;}
.xdb_c00172{left:407.066667pt;}
.xc5_c00172{left:408.000000pt;}
.xa1_c00172{left:409.866667pt;}
.x12b_c00172{left:415.333333pt;}
.x11c_c00172{left:416.400000pt;}
.x128_c00172{left:417.333333pt;}
.x115_c00172{left:418.533333pt;}
.xc6_c00172{left:423.066667pt;}
.xa2_c00172{left:424.000000pt;}
.xc9_c00172{left:426.400000pt;}
.xf7_c00172{left:431.866667pt;}
.xb1_c00172{left:433.866667pt;}
.xd1_c00172{left:435.066667pt;}
.x12e_c00172{left:436.800000pt;}
.x125_c00172{left:438.133333pt;}
.xca_c00172{left:440.533333pt;}
.x120_c00172{left:443.333333pt;}
.xb2_c00172{left:444.400000pt;}
.xfb_c00172{left:445.333333pt;}
.xac_c00172{left:446.400000pt;}
.xa3_c00172{left:449.866667pt;}
.x134_c00172{left:451.600000pt;}
.x11b_c00172{left:452.800000pt;}
.xdc_c00172{left:454.400000pt;}
.x11a_c00172{left:455.333333pt;}
.xfc_c00172{left:456.266667pt;}
.x109_c00172{left:457.200000pt;}
.xb3_c00172{left:458.533333pt;}
.xb9_c00172{left:459.600000pt;}
.xec_c00172{left:461.066667pt;}
.xdf_c00172{left:463.066667pt;}
.x105_c00172{left:464.533333pt;}
.xf2_c00172{left:465.866667pt;}
.xc7_c00172{left:467.200000pt;}
.x10f_c00172{left:469.600000pt;}
.xcd_c00172{left:470.666667pt;}
.xd2_c00172{left:471.866667pt;}
.xe9_c00172{left:473.200000pt;}
.xfd_c00172{left:474.133333pt;}
.xd8_c00172{left:475.066667pt;}
.xe0_c00172{left:476.533333pt;}
.xf8_c00172{left:481.200000pt;}
.x10a_c00172{left:482.533333pt;}
.x12f_c00172{left:483.466667pt;}
.xa4_c00172{left:486.666667pt;}
.xba_c00172{left:488.133333pt;}
.xed_c00172{left:489.200000pt;}
.x119_c00172{left:490.533333pt;}
.xc1_c00172{left:492.800000pt;}
.x138_c00172{left:494.933333pt;}
.xcb_c00172{left:496.800000pt;}
.x121_c00172{left:497.733333pt;}
.x111_c00172{left:498.933333pt;}
.x102_c00172{left:501.200000pt;}
.xbf_c00172{left:503.200000pt;}
.xa5_c00172{left:504.533333pt;}
.xe5_c00172{left:506.933333pt;}
.xdd_c00172{left:508.533333pt;}
.x110_c00172{left:509.600000pt;}
.xce_c00172{left:510.666667pt;}
.x112_c00172{left:512.000000pt;}
.x11d_c00172{left:513.466667pt;}
.x10d_c00172{left:515.333333pt;}
.xd3_c00172{left:516.400000pt;}
.xad_c00172{left:520.933333pt;}
.xb4_c00172{left:523.866667pt;}
.xe1_c00172{left:525.200000pt;}
.x10b_c00172{left:527.333333pt;}
.xcc_c00172{left:529.466667pt;}
.xa6_c00172{left:531.466667pt;}
.xae_c00172{left:534.400000pt;}
.xee_c00172{left:536.266667pt;}
.xd9_c00172{left:540.400000pt;}
.xd4_c00172{left:542.000000pt;}
.xde_c00172{left:544.000000pt;}
.x103_c00172{left:546.266667pt;}
.xa7_c00172{left:548.133333pt;}
.xef_c00172{left:551.333333pt;}
.xb5_c00172{left:552.933333pt;}
.x136_c00172{left:556.666667pt;}
.xf3_c00172{left:558.266667pt;}
.x11e_c00172{left:560.133333pt;}
.xcf_c00172{left:561.866667pt;}
.xa8_c00172{left:563.200000pt;}
.x129_c00172{left:564.533333pt;}
.xbb_c00172{left:565.866667pt;}
.xc8_c00172{left:567.733333pt;}
.xc2_c00172{left:568.666667pt;}
.x108_c00172{left:569.600000pt;}
.xfe_c00172{left:570.666667pt;}
.xf4_c00172{left:572.400000pt;}
.x126_c00172{left:573.466667pt;}
.x130_c00172{left:575.066667pt;}
.xe6_c00172{left:577.333333pt;}
.x10c_c00172{left:579.866667pt;}
.x127_c00172{left:581.466667pt;}
.x12c_c00172{left:583.600000pt;}
.xb6_c00172{left:584.666667pt;}
.x118_c00172{left:586.000000pt;}
.xea_c00172{left:587.066667pt;}
.xa9_c00172{left:589.066667pt;}
.xda_c00172{left:590.266667pt;}
.xbc_c00172{left:592.133333pt;}
.xe7_c00172{left:594.666667pt;}
.xd5_c00172{left:596.000000pt;}
.xaf_c00172{left:597.733333pt;}
.x106_c00172{left:598.933333pt;}
.xeb_c00172{left:602.133333pt;}
.xe2_c00172{left:603.333333pt;}
.xf9_c00172{left:605.333333pt;}
.xc0_c00172{left:608.400000pt;}
.x122_c00172{left:609.466667pt;}
.x104_c00172{left:612.533333pt;}
.x137_c00172{left:613.600000pt;}
.x11f_c00172{left:616.800000pt;}
.x101_c00172{left:619.466667pt;}
.xe3_c00172{left:620.933333pt;}
.x132_c00172{left:622.400000pt;}
.xf5_c00172{left:623.600000pt;}
.x123_c00172{left:624.800000pt;}
.x131_c00172{left:626.266667pt;}
.xd0_c00172{left:630.000000pt;}
.xff_c00172{left:632.666667pt;}
.x10e_c00172{left:634.800000pt;}
.xe8_c00172{left:637.600000pt;}
.x113_c00172{left:639.600000pt;}
.xbd_c00172{left:641.066667pt;}
.xb0_c00172{left:645.066667pt;}
.xc3_c00172{left:648.000000pt;}
.xaa_c00172{left:649.600000pt;}
.xd6_c00172{left:651.066667pt;}
.xf6_c00172{left:653.333333pt;}
.xb7_c00172{left:654.800000pt;}
.xbe_c00172{left:655.733333pt;}
.x114_c00172{left:657.200000pt;}
.xfa_c00172{left:661.066667pt;}
.xab_c00172{left:664.933333pt;}
.x2_c00172{left:668.533333pt;}
.x116_c00172{left:671.333333pt;}
.xc4_c00172{left:673.333333pt;}
.xd7_c00172{left:675.066667pt;}
.xf0_c00172{left:679.066667pt;}
.xb8_c00172{left:682.266667pt;}
.x139_c00172{left:721.866667pt;}
.x13a_c00172{left:832.933333pt;}
}





/* 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_c00173 {
    display:none;
  }
  .loading-indicator_c00173.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00173 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_c00173 { 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_c00173" -> "#page-container .classname_c00173")
 */
.pf_c00173 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00173 { /* 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_c00173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00173 { /* 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_c00173 { /* 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_c00173 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00173 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00173 {overflow:visible;}
  }
}
.c_c00173 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00173 { /* 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_c00173:after { /* webkit #35443 */
  content: '';
}
.t_c00173:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00173 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 */
}
.__c00173 { /* 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_c00173 { /* info for Javascript */
  display:none;
}
.l_c00173 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00173 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00173 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00173: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_c00173 {
    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_c00173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00173.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_c00173 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00173;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00173{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m121_c00173{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.med_c00173{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00173{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m43_c00173{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m125_c00173{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00173{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m64_c00173{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00173{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m53_c00173{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00173{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m4_c00173{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m54_c00173{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00173{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.me2_c00173{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00173{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.md_c00173{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m111_c00173{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m49_c00173{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m55_c00173{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m110_c00173{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m104_c00173{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.md6_c00173{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00173{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md2_c00173{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m33_c00173{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m29_c00173{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00173{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00173{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00173{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m6_c00173{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00173{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00173{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m65_c00173{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m45_c00173{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mee_c00173{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00173{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m21_c00173{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00173{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00173{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m32_c00173{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m113_c00173{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m34_c00173{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00173{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00173{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00173{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m38_c00173{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10_c00173{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00173{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00173{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5_c00173{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00173{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00173{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mde_c00173{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m51_c00173{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00173{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00173{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m88_c00173{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00173{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00173{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m123_c00173{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m22_c00173{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00173{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00173{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m41_c00173{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mca_c00173{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00173{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.meb_c00173{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m100_c00173{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m18_c00173{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m16_c00173{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m42_c00173{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00173{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m68_c00173{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00173{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00173{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00173{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m27_c00173{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00173{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m80_c00173{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m120_c00173{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00173{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00173{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00173{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00173{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00173{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00173{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m119_c00173{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00173{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m36_c00173{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00173{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.md9_c00173{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00173{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00173{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00173{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m107_c00173{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00173{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00173{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.md8_c00173{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00173{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m85_c00173{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m12_c00173{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m116_c00173{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m14_c00173{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mae_c00173{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m92_c00173{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00173{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m31_c00173{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00173{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m83_c00173{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00173{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00173{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9_c00173{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mef_c00173{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m17_c00173{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00173{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00173{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00173{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m39_c00173{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00173{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m82_c00173{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m97_c00173{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00173{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00173{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m3_c00173{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mf_c00173{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mab_c00173{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m37_c00173{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m30_c00173{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00173{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00173{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md7_c00173{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00173{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00173{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00173{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00173{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00173{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00173{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00173{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m70_c00173{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00173{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m86_c00173{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00173{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mac_c00173{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00173{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md1_c00173{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8_c00173{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m95_c00173{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00173{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m13_c00173{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00173{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.me6_c00173{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00173{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00173{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00173{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md0_c00173{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me7_c00173{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m23_c00173{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00173{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00173{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mc_c00173{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00173{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00173{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m76_c00173{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mba_c00173{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m117_c00173{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mce_c00173{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00173{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me_c00173{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00173{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m63_c00173{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m69_c00173{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00173{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00173{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m79_c00173{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00173{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mec_c00173{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m40_c00173{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m44_c00173{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00173{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m89_c00173{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.maa_c00173{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.maf_c00173{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00173{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m77_c00173{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00173{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m114_c00173{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m90_c00173{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me3_c00173{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m122_c00173{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m19_c00173{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00173{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00173{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m48_c00173{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00173{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00173{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m72_c00173{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me5_c00173{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00173{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00173{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00173{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00173{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m106_c00173{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mff_c00173{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00173{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m96_c00173{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00173{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00173{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m81_c00173{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m62_c00173{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00173{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00173{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mda_c00173{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m75_c00173{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00173{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m61_c00173{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00173{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me1_c00173{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m28_c00173{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00173{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00173{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m47_c00173{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00173{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m91_c00173{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00173{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m71_c00173{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00173{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00173{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00173{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m118_c00173{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma_c00173{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00173{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11_c00173{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20_c00173{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me0_c00173{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m59_c00173{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00173{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00173{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m78_c00173{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m35_c00173{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m46_c00173{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m74_c00173{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00173{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m24_c00173{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00173{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00173{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m50_c00173{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00173{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m67_c00173{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00173{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md5_c00173{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mad_c00173{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m87_c00173{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb_c00173{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m52_c00173{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m98_c00173{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.md3_c00173{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00173{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m94_c00173{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m66_c00173{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mea_c00173{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m124_c00173{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m105_c00173{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m58_c00173{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m103_c00173{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00173{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m73_c00173{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m56_c00173{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m99_c00173{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00173{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00173{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m102_c00173{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m60_c00173{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m57_c00173{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m101_c00173{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.me8_c00173{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m26_c00173{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.me9_c00173{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.md4_c00173{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m25_c00173{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00173{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00173{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m15_c00173{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m93_c00173{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m109_c00173{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m108_c00173{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.me4_c00173{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00173{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m112_c00173{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00173{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m115_c00173{transform:matrix(3.672000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.672000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.672000,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls0_c00173{letter-spacing:0.000000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{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__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00173{word-spacing:-11.875000px;}
.ws9_c00173{word-spacing:-9.157895px;}
.wsc_c00173{word-spacing:-7.219542px;}
.ws6_c00173{word-spacing:-6.309456px;}
.ws7_c00173{word-spacing:-5.000000px;}
.ws0_c00173{word-spacing:-4.000000px;}
.wsd_c00173{word-spacing:-0.178571px;}
.wsf_c00173{word-spacing:0.000000px;}
.wsa_c00173{word-spacing:4.493450px;}
.ws2_c00173{word-spacing:6.000000px;}
.ws8_c00173{word-spacing:7.877301px;}
.ws5_c00173{word-spacing:9.117647px;}
.ws1_c00173{word-spacing:13.447307px;}
.ws4_c00173{word-spacing:19.994638px;}
.ws3_c00173{word-spacing:137.386492px;}
.wse_c00173{word-spacing:2746.000000px;}
._0_c00173{width:37.637002px;}
._1_c00173{width:43.257611px;}
._2_c00173{width:50.211796px;}
.fc0_c00173{color:transparent;}
.fs6_c00173{font-size:24.000000px;}
.fs1_c00173{font-size:48.000000px;}
.fs5_c00173{font-size:54.000000px;}
.fs3_c00173{font-size:60.000000px;}
.fs4_c00173{font-size:66.000000px;}
.fs2_c00173{font-size:72.000000px;}
.fs0_c00173{font-size:114.000000px;}
.y0_c00173{bottom:0.000000px;}
.y6f_c00173{bottom:196.950000px;}
.y38_c00173{bottom:207.000000px;}
.y6e_c00173{bottom:212.100000px;}
.y37_c00173{bottom:224.700000px;}
.y6d_c00173{bottom:225.750000px;}
.y6c_c00173{bottom:240.150000px;}
.y36_c00173{bottom:242.100000px;}
.y6b_c00173{bottom:254.550000px;}
.y35_c00173{bottom:259.800000px;}
.y6a_c00173{bottom:268.650000px;}
.y34_c00173{bottom:277.500000px;}
.y69_c00173{bottom:283.050000px;}
.y33_c00173{bottom:295.500000px;}
.y68_c00173{bottom:297.450000px;}
.y67_c00173{bottom:311.850000px;}
.y32_c00173{bottom:313.200000px;}
.y66_c00173{bottom:326.550000px;}
.y31_c00173{bottom:330.900000px;}
.y65_c00173{bottom:344.850000px;}
.y30_c00173{bottom:348.900000px;}
.y2f_c00173{bottom:366.900000px;}
.y64_c00173{bottom:368.850000px;}
.y2e_c00173{bottom:384.150000px;}
.y63_c00173{bottom:387.600000px;}
.y2d_c00173{bottom:402.150000px;}
.y62_c00173{bottom:405.300000px;}
.y2c_c00173{bottom:419.850000px;}
.y61_c00173{bottom:423.000000px;}
.y2b_c00173{bottom:437.550000px;}
.y60_c00173{bottom:440.250000px;}
.y2a_c00173{bottom:455.850000px;}
.y5f_c00173{bottom:463.050000px;}
.y29_c00173{bottom:473.550000px;}
.y5e_c00173{bottom:480.300000px;}
.y28_c00173{bottom:491.850000px;}
.y5d_c00173{bottom:506.850000px;}
.y27_c00173{bottom:509.100000px;}
.y5c_c00173{bottom:524.850000px;}
.y26_c00173{bottom:527.100000px;}
.y5b_c00173{bottom:542.850000px;}
.y25_c00173{bottom:544.350000px;}
.y5a_c00173{bottom:560.100000px;}
.y24_c00173{bottom:562.650000px;}
.y23_c00173{bottom:580.350000px;}
.y59_c00173{bottom:582.750000px;}
.y22_c00173{bottom:598.050000px;}
.y58_c00173{bottom:600.450000px;}
.y21_c00173{bottom:615.750000px;}
.y57_c00173{bottom:618.450000px;}
.y20_c00173{bottom:633.450000px;}
.y56_c00173{bottom:635.700000px;}
.y1f_c00173{bottom:651.450000px;}
.y55_c00173{bottom:653.700000px;}
.y1e_c00173{bottom:669.450000px;}
.y54_c00173{bottom:671.400000px;}
.y53_c00173{bottom:682.200000px;}
.y1d_c00173{bottom:686.700000px;}
.y52_c00173{bottom:693.750000px;}
.y1c_c00173{bottom:704.700000px;}
.y51_c00173{bottom:711.750000px;}
.y1b_c00173{bottom:722.400000px;}
.y50_c00173{bottom:729.000000px;}
.y1a_c00173{bottom:740.100000px;}
.y4e_c00173{bottom:751.350000px;}
.y19_c00173{bottom:757.800000px;}
.y4f_c00173{bottom:758.550000px;}
.y4d_c00173{bottom:769.350000px;}
.y18_c00173{bottom:775.500000px;}
.y4c_c00173{bottom:786.300000px;}
.y17_c00173{bottom:800.850000px;}
.y4b_c00173{bottom:804.000000px;}
.y16_c00173{bottom:814.200000px;}
.y4a_c00173{bottom:821.700000px;}
.y15_c00173{bottom:828.900000px;}
.y49_c00173{bottom:839.400000px;}
.y14_c00173{bottom:842.550000px;}
.y13_c00173{bottom:856.950000px;}
.y48_c00173{bottom:857.100000px;}
.y12_c00173{bottom:871.650000px;}
.y47_c00173{bottom:874.800000px;}
.y11_c00173{bottom:886.050000px;}
.y46_c00173{bottom:892.500000px;}
.y10_c00173{bottom:899.700000px;}
.y45_c00173{bottom:910.500000px;}
.yf_c00173{bottom:914.400000px;}
.ye_c00173{bottom:926.700000px;}
.y44_c00173{bottom:928.200000px;}
.y43_c00173{bottom:945.900000px;}
.yd_c00173{bottom:946.650000px;}
.y42_c00173{bottom:963.900000px;}
.yc_c00173{bottom:964.350000px;}
.y41_c00173{bottom:981.600000px;}
.yb_c00173{bottom:982.050000px;}
.y40_c00173{bottom:998.850000px;}
.ya_c00173{bottom:1008.150000px;}
.y3f_c00173{bottom:1016.550000px;}
.y9_c00173{bottom:1026.150000px;}
.y3e_c00173{bottom:1034.550000px;}
.y8_c00173{bottom:1043.850000px;}
.y3d_c00173{bottom:1052.250000px;}
.y7_c00173{bottom:1061.550000px;}
.y3c_c00173{bottom:1070.250000px;}
.y6_c00173{bottom:1079.250000px;}
.y3b_c00173{bottom:1087.500000px;}
.y5_c00173{bottom:1096.950000px;}
.y3a_c00173{bottom:1105.200000px;}
.y4_c00173{bottom:1114.650000px;}
.y39_c00173{bottom:1123.200000px;}
.y3_c00173{bottom:1131.150000px;}
.y2_c00173{bottom:1137.300000px;}
.y1_c00173{bottom:1153.050000px;}
.h8_c00173{height:24.000000px;}
.h3_c00173{height:48.000000px;}
.h7_c00173{height:54.000000px;}
.h5_c00173{height:60.000000px;}
.h6_c00173{height:66.000000px;}
.h4_c00173{height:72.000000px;}
.h2_c00173{height:114.000000px;}
.h1_c00173{height:1278.750000px;}
.h0_c00173{height:1279.079957px;}
.w1_c00173{width:963.000000px;}
.w0_c00173{width:963.359985px;}
.x0_c00173{left:0.000000px;}
.x5d_c00173{left:182.850000px;}
.x46_c00173{left:183.900000px;}
.x34_c00173{left:185.400000px;}
.x1_c00173{left:186.450000px;}
.xa1_c00173{left:192.300000px;}
.x95_c00173{left:194.100000px;}
.x8b_c00173{left:195.300000px;}
.x59_c00173{left:196.500000px;}
.x4d_c00173{left:198.000000px;}
.xa9_c00173{left:199.050000px;}
.x69_c00173{left:200.100000px;}
.x62_c00173{left:201.150000px;}
.x39_c00173{left:202.350000px;}
.xc_c00173{left:204.150000px;}
.x14_c00173{left:206.100000px;}
.x35_c00173{left:210.300000px;}
.x4e_c00173{left:211.950000px;}
.x4a_c00173{left:213.450000px;}
.x87_c00173{left:214.950000px;}
.x9e_c00173{left:218.250000px;}
.x75_c00173{left:220.050000px;}
.x77_c00173{left:222.000000px;}
.x4_c00173{left:223.200000px;}
.x1c_c00173{left:227.550000px;}
.x9a_c00173{left:229.500000px;}
.x96_c00173{left:231.150000px;}
.x36_c00173{left:232.200000px;}
.x55_c00173{left:233.850000px;}
.x81_c00173{left:237.300000px;}
.x2b_c00173{left:238.650000px;}
.x72_c00173{left:240.000000px;}
.x7b_c00173{left:243.450000px;}
.x47_c00173{left:244.800000px;}
.x3f_c00173{left:246.000000px;}
.x1d_c00173{left:248.400000px;}
.x92_c00173{left:250.950000px;}
.xd_c00173{left:252.750000px;}
.x3a_c00173{left:254.550000px;}
.xa4_c00173{left:256.050000px;}
.x15_c00173{left:258.000000px;}
.x24_c00173{left:260.550000px;}
.x2c_c00173{left:267.450000px;}
.xaa_c00173{left:268.800000px;}
.x5e_c00173{left:272.850000px;}
.x4f_c00173{left:274.200000px;}
.x25_c00173{left:275.700000px;}
.x6d_c00173{left:276.750000px;}
.x7e_c00173{left:278.400000px;}
.x56_c00173{left:281.400000px;}
.x1e_c00173{left:284.100000px;}
.x63_c00173{left:285.450000px;}
.x6a_c00173{left:288.600000px;}
.x16_c00173{left:289.650000px;}
.x5a_c00173{left:292.050000px;}
.xa2_c00173{left:295.650000px;}
.x70_c00173{left:296.700000px;}
.x5_c00173{left:298.050000px;}
.x37_c00173{left:299.850000px;}
.x6e_c00173{left:302.250000px;}
.x64_c00173{left:303.450000px;}
.x1f_c00173{left:306.450000px;}
.xa6_c00173{left:308.400000px;}
.x50_c00173{left:312.300000px;}
.x6_c00173{left:315.000000px;}
.x40_c00173{left:316.500000px;}
.x79_c00173{left:317.850000px;}
.x57_c00173{left:318.900000px;}
.xa5_c00173{left:320.550000px;}
.x20_c00173{left:322.350000px;}
.x65_c00173{left:323.550000px;}
.xe_c00173{left:324.750000px;}
.x76_c00173{left:326.700000px;}
.x2f_c00173{left:328.050000px;}
.x84_c00173{left:329.100000px;}
.x51_c00173{left:331.050000px;}
.x41_c00173{left:333.000000px;}
.x5f_c00173{left:336.600000px;}
.xf_c00173{left:338.400000px;}
.x89_c00173{left:341.550000px;}
.x6b_c00173{left:343.350000px;}
.x97_c00173{left:344.550000px;}
.x3b_c00173{left:345.600000px;}
.x30_c00173{left:349.650000px;}
.x71_c00173{left:351.450000px;}
.x90_c00173{left:353.550000px;}
.x17_c00173{left:355.500000px;}
.x58_c00173{left:356.700000px;}
.x8c_c00173{left:359.400000px;}
.x7_c00173{left:362.100000px;}
.x21_c00173{left:364.050000px;}
.xa3_c00173{left:365.400000px;}
.x98_c00173{left:366.900000px;}
.x82_c00173{left:368.700000px;}
.x60_c00173{left:371.550000px;}
.x4b_c00173{left:373.650000px;}
.x42_c00173{left:378.000000px;}
.x8_c00173{left:379.800000px;}
.x44_c00173{left:381.900000px;}
.x22_c00173{left:384.600000px;}
.x52_c00173{left:385.800000px;}
.x93_c00173{left:387.000000px;}
.x66_c00173{left:388.350000px;}
.x31_c00173{left:391.050000px;}
.x18_c00173{left:395.100000px;}
.x85_c00173{left:396.750000px;}
.x43_c00173{left:397.800000px;}
.x2d_c00173{left:398.850000px;}
.x7f_c00173{left:400.200000px;}
.x88_c00173{left:401.250000px;}
.x8d_c00173{left:403.800000px;}
.x83_c00173{left:405.000000px;}
.x99_c00173{left:406.200000px;}
.x10_c00173{left:407.400000px;}
.x27_c00173{left:409.650000px;}
.x6c_c00173{left:411.450000px;}
.x5b_c00173{left:414.150000px;}
.x7c_c00173{left:416.550000px;}
.x3c_c00173{left:417.900000px;}
.x4c_c00173{left:419.400000px;}
.x94_c00173{left:420.450000px;}
.x53_c00173{left:421.500000px;}
.x7a_c00173{left:426.000000px;}
.x32_c00173{left:428.100000px;}
.x91_c00173{left:429.150000px;}
.x9f_c00173{left:430.800000px;}
.x9_c00173{left:432.750000px;}
.x2_c00173{left:434.100000px;}
.x3d_c00173{left:435.900000px;}
.x9b_c00173{left:437.100000px;}
.x19_c00173{left:438.300000px;}
.x28_c00173{left:442.050000px;}
.xa7_c00173{left:444.150000px;}
.x73_c00173{left:445.350000px;}
.x67_c00173{left:446.700000px;}
.x54_c00173{left:448.200000px;}
.x48_c00173{left:450.000000px;}
.x11_c00173{left:451.650000px;}
.x7d_c00173{left:454.050000px;}
.x86_c00173{left:455.400000px;}
.x9c_c00173{left:457.200000px;}
.x68_c00173{left:458.250000px;}
.x29_c00173{left:461.100000px;}
.x8e_c00173{left:462.150000px;}
.xa0_c00173{left:463.500000px;}
.x74_c00173{left:465.900000px;}
.x23_c00173{left:467.100000px;}
.xa8_c00173{left:469.050000px;}
.x33_c00173{left:471.000000px;}
.x1a_c00173{left:472.200000px;}
.xa_c00173{left:476.250000px;}
.x3e_c00173{left:477.300000px;}
.x49_c00173{left:478.800000px;}
.x9d_c00173{left:482.100000px;}
.x6f_c00173{left:483.150000px;}
.x80_c00173{left:484.200000px;}
.x12_c00173{left:485.850000px;}
.x2e_c00173{left:487.500000px;}
.x78_c00173{left:490.200000px;}
.x8a_c00173{left:493.050000px;}
.x2a_c00173{left:494.250000px;}
.x8f_c00173{left:496.350000px;}
.x26_c00173{left:497.550000px;}
.xb_c00173{left:499.650000px;}
.x45_c00173{left:505.800000px;}
.x5c_c00173{left:507.150000px;}
.x13_c00173{left:508.200000px;}
.x38_c00173{left:509.400000px;}
.x1b_c00173{left:511.500000px;}
.x61_c00173{left:514.650000px;}
.x3_c00173{left:515.850000px;}
.x153_c00173{left:526.950000px;}
.x14a_c00173{left:528.150000px;}
.x143_c00173{left:529.800000px;}
.x13e_c00173{left:531.000000px;}
.x130_c00173{left:533.850000px;}
.x127_c00173{left:535.650000px;}
.x119_c00173{left:537.450000px;}
.x14b_c00173{left:542.550000px;}
.x13f_c00173{left:544.650000px;}
.x12b_c00173{left:545.850000px;}
.x102_c00173{left:547.050000px;}
.x135_c00173{left:549.300000px;}
.x12d_c00173{left:550.800000px;}
.x11b_c00173{left:553.950000px;}
.x116_c00173{left:555.600000px;}
.x109_c00173{left:557.100000px;}
.xed_c00173{left:558.300000px;}
.xe8_c00173{left:559.350000px;}
.xcb_c00173{left:561.000000px;}
.xab_c00173{left:562.350000px;}
.x14c_c00173{left:564.450000px;}
.x134_c00173{left:566.250000px;}
.x112_c00173{left:573.900000px;}
.x131_c00173{left:576.000000px;}
.x10f_c00173{left:578.100000px;}
.xe9_c00173{left:579.450000px;}
.xd2_c00173{left:582.750000px;}
.x117_c00173{left:586.950000px;}
.x139_c00173{left:588.000000px;}
.x140_c00173{left:589.650000px;}
.xcc_c00173{left:591.300000px;}
.xe4_c00173{left:593.250000px;}
.xf8_c00173{left:594.300000px;}
.xee_c00173{left:595.800000px;}
.x11a_c00173{left:597.150000px;}
.xfb_c00173{left:598.200000px;}
.xac_c00173{left:599.400000px;}
.xc6_c00173{left:601.050000px;}
.x128_c00173{left:602.250000px;}
.xb9_c00173{left:603.750000px;}
.xda_c00173{left:605.700000px;}
.xbe_c00173{left:607.650000px;}
.x137_c00173{left:609.150000px;}
.xfd_c00173{left:611.850000px;}
.xb3_c00173{left:613.050000px;}
.x113_c00173{left:615.600000px;}
.xd3_c00173{left:617.700000px;}
.x107_c00173{left:619.050000px;}
.xf3_c00173{left:620.700000px;}
.x132_c00173{left:622.050000px;}
.x145_c00173{left:623.400000px;}
.x11c_c00173{left:625.650000px;}
.x122_c00173{left:627.000000px;}
.x146_c00173{left:629.550000px;}
.xfe_c00173{left:632.400000px;}
.x144_c00173{left:634.200000px;}
.xb4_c00173{left:635.400000px;}
.xf4_c00173{left:637.200000px;}
.x12f_c00173{left:638.550000px;}
.xbf_c00173{left:641.100000px;}
.xef_c00173{left:642.600000px;}
.xad_c00173{left:645.450000px;}
.xdf_c00173{left:646.500000px;}
.x13a_c00173{left:647.700000px;}
.xcd_c00173{left:649.950000px;}
.x103_c00173{left:652.800000px;}
.x141_c00173{left:654.000000px;}
.xdb_c00173{left:655.350000px;}
.xc0_c00173{left:657.300000px;}
.xf0_c00173{left:659.550000px;}
.xba_c00173{left:661.350000px;}
.xfc_c00173{left:663.750000px;}
.xd4_c00173{left:664.800000px;}
.x14d_c00173{left:667.350000px;}
.xf9_c00173{left:670.200000px;}
.x111_c00173{left:671.250000px;}
.x104_c00173{left:672.300000px;}
.xff_c00173{left:673.800000px;}
.x136_c00173{left:680.700000px;}
.x10a_c00173{left:681.750000px;}
.xc7_c00173{left:685.650000px;}
.x147_c00173{left:687.750000px;}
.x13b_c00173{left:689.100000px;}
.xf5_c00173{left:690.150000px;}
.xc1_c00173{left:691.800000px;}
.x14f_c00173{left:693.600000px;}
.x123_c00173{left:694.950000px;}
.xd5_c00173{left:696.450000px;}
.xbb_c00173{left:698.400000px;}
.xb5_c00173{left:700.950000px;}
.xdc_c00173{left:702.900000px;}
.xce_c00173{left:705.450000px;}
.x100_c00173{left:707.250000px;}
.x120_c00173{left:708.450000px;}
.x114_c00173{left:711.000000px;}
.xf1_c00173{left:712.800000px;}
.x13c_c00173{left:715.050000px;}
.x125_c00173{left:716.100000px;}
.xc2_c00173{left:717.750000px;}
.xe0_c00173{left:719.550000px;}
.x12e_c00173{left:721.200000px;}
.xe5_c00173{left:722.550000px;}
.x148_c00173{left:724.050000px;}
.xbc_c00173{left:726.150000px;}
.x129_c00173{left:728.250000px;}
.x10c_c00173{left:730.800000px;}
.x138_c00173{left:732.600000px;}
.xd6_c00173{left:735.750000px;}
.xc3_c00173{left:737.550000px;}
.x13d_c00173{left:738.750000px;}
.xb6_c00173{left:739.800000px;}
.xae_c00173{left:741.600000px;}
.x12c_c00173{left:743.400000px;}
.xe6_c00173{left:745.200000px;}
.x126_c00173{left:746.400000px;}
.x11d_c00173{left:747.750000px;}
.x10b_c00173{left:749.850000px;}
.x150_c00173{left:751.500000px;}
.x105_c00173{left:753.300000px;}
.x149_c00173{left:754.650000px;}
.xcf_c00173{left:756.150000px;}
.x14e_c00173{left:757.650000px;}
.x142_c00173{left:760.950000px;}
.xfa_c00173{left:763.050000px;}
.xd7_c00173{left:764.550000px;}
.xb7_c00173{left:771.150000px;}
.x108_c00173{left:774.150000px;}
.xf6_c00173{left:775.800000px;}
.xea_c00173{left:777.300000px;}
.xe1_c00173{left:779.400000px;}
.xd0_c00173{left:781.650000px;}
.xaf_c00173{left:784.500000px;}
.xc8_c00173{left:786.750000px;}
.xb0_c00173{left:793.800000px;}
.xe7_c00173{left:794.850000px;}
.xe2_c00173{left:797.700000px;}
.x151_c00173{left:798.750000px;}
.xeb_c00173{left:799.950000px;}
.xf7_c00173{left:801.300000px;}
.x11e_c00173{left:803.850000px;}
.xdd_c00173{left:805.950000px;}
.x124_c00173{left:807.000000px;}
.x133_c00173{left:808.500000px;}
.xc4_c00173{left:809.850000px;}
.x121_c00173{left:811.050000px;}
.xd8_c00173{left:812.400000px;}
.xb1_c00173{left:816.150000px;}
.x106_c00173{left:817.800000px;}
.x152_c00173{left:820.350000px;}
.x110_c00173{left:827.400000px;}
.xc9_c00173{left:828.450000px;}
.x118_c00173{left:829.500000px;}
.x10d_c00173{left:832.650000px;}
.x115_c00173{left:834.900000px;}
.xec_c00173{left:838.050000px;}
.xde_c00173{left:839.100000px;}
.xe3_c00173{left:840.150000px;}
.xb8_c00173{left:841.650000px;}
.x101_c00173{left:843.300000px;}
.xca_c00173{left:845.700000px;}
.xd1_c00173{left:848.700000px;}
.xbd_c00173{left:850.350000px;}
.xf2_c00173{left:855.750000px;}
.x11f_c00173{left:856.800000px;}
.x12a_c00173{left:858.300000px;}
.xb2_c00173{left:861.450000px;}
.xd9_c00173{left:864.300000px;}
.xc5_c00173{left:865.650000px;}
.x10e_c00173{left:871.950000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.wsb_c00173{word-spacing:-10.555556pt;}
.ws9_c00173{word-spacing:-8.140351pt;}
.wsc_c00173{word-spacing:-6.417370pt;}
.ws6_c00173{word-spacing:-5.608405pt;}
.ws7_c00173{word-spacing:-4.444444pt;}
.ws0_c00173{word-spacing:-3.555556pt;}
.wsd_c00173{word-spacing:-0.158730pt;}
.wsf_c00173{word-spacing:0.000000pt;}
.wsa_c00173{word-spacing:3.994178pt;}
.ws2_c00173{word-spacing:5.333333pt;}
.ws8_c00173{word-spacing:7.002045pt;}
.ws5_c00173{word-spacing:8.104575pt;}
.ws1_c00173{word-spacing:11.953162pt;}
.ws4_c00173{word-spacing:17.773012pt;}
.ws3_c00173{word-spacing:122.121326pt;}
.wse_c00173{word-spacing:2440.888889pt;}
._0_c00173{width:33.455113pt;}
._1_c00173{width:38.451210pt;}
._2_c00173{width:44.632708pt;}
.fs6_c00173{font-size:21.333333pt;}
.fs1_c00173{font-size:42.666667pt;}
.fs5_c00173{font-size:48.000000pt;}
.fs3_c00173{font-size:53.333333pt;}
.fs4_c00173{font-size:58.666667pt;}
.fs2_c00173{font-size:64.000000pt;}
.fs0_c00173{font-size:101.333333pt;}
.y0_c00173{bottom:0.000000pt;}
.y6f_c00173{bottom:175.066667pt;}
.y38_c00173{bottom:184.000000pt;}
.y6e_c00173{bottom:188.533333pt;}
.y37_c00173{bottom:199.733333pt;}
.y6d_c00173{bottom:200.666667pt;}
.y6c_c00173{bottom:213.466667pt;}
.y36_c00173{bottom:215.200000pt;}
.y6b_c00173{bottom:226.266667pt;}
.y35_c00173{bottom:230.933333pt;}
.y6a_c00173{bottom:238.800000pt;}
.y34_c00173{bottom:246.666667pt;}
.y69_c00173{bottom:251.600000pt;}
.y33_c00173{bottom:262.666667pt;}
.y68_c00173{bottom:264.400000pt;}
.y67_c00173{bottom:277.200000pt;}
.y32_c00173{bottom:278.400000pt;}
.y66_c00173{bottom:290.266667pt;}
.y31_c00173{bottom:294.133333pt;}
.y65_c00173{bottom:306.533333pt;}
.y30_c00173{bottom:310.133333pt;}
.y2f_c00173{bottom:326.133333pt;}
.y64_c00173{bottom:327.866667pt;}
.y2e_c00173{bottom:341.466667pt;}
.y63_c00173{bottom:344.533333pt;}
.y2d_c00173{bottom:357.466667pt;}
.y62_c00173{bottom:360.266667pt;}
.y2c_c00173{bottom:373.200000pt;}
.y61_c00173{bottom:376.000000pt;}
.y2b_c00173{bottom:388.933333pt;}
.y60_c00173{bottom:391.333333pt;}
.y2a_c00173{bottom:405.200000pt;}
.y5f_c00173{bottom:411.600000pt;}
.y29_c00173{bottom:420.933333pt;}
.y5e_c00173{bottom:426.933333pt;}
.y28_c00173{bottom:437.200000pt;}
.y5d_c00173{bottom:450.533333pt;}
.y27_c00173{bottom:452.533333pt;}
.y5c_c00173{bottom:466.533333pt;}
.y26_c00173{bottom:468.533333pt;}
.y5b_c00173{bottom:482.533333pt;}
.y25_c00173{bottom:483.866667pt;}
.y5a_c00173{bottom:497.866667pt;}
.y24_c00173{bottom:500.133333pt;}
.y23_c00173{bottom:515.866667pt;}
.y59_c00173{bottom:518.000000pt;}
.y22_c00173{bottom:531.600000pt;}
.y58_c00173{bottom:533.733333pt;}
.y21_c00173{bottom:547.333333pt;}
.y57_c00173{bottom:549.733333pt;}
.y20_c00173{bottom:563.066667pt;}
.y56_c00173{bottom:565.066667pt;}
.y1f_c00173{bottom:579.066667pt;}
.y55_c00173{bottom:581.066667pt;}
.y1e_c00173{bottom:595.066667pt;}
.y54_c00173{bottom:596.800000pt;}
.y53_c00173{bottom:606.400000pt;}
.y1d_c00173{bottom:610.400000pt;}
.y52_c00173{bottom:616.666667pt;}
.y1c_c00173{bottom:626.400000pt;}
.y51_c00173{bottom:632.666667pt;}
.y1b_c00173{bottom:642.133333pt;}
.y50_c00173{bottom:648.000000pt;}
.y1a_c00173{bottom:657.866667pt;}
.y4e_c00173{bottom:667.866667pt;}
.y19_c00173{bottom:673.600000pt;}
.y4f_c00173{bottom:674.266667pt;}
.y4d_c00173{bottom:683.866667pt;}
.y18_c00173{bottom:689.333333pt;}
.y4c_c00173{bottom:698.933333pt;}
.y17_c00173{bottom:711.866667pt;}
.y4b_c00173{bottom:714.666667pt;}
.y16_c00173{bottom:723.733333pt;}
.y4a_c00173{bottom:730.400000pt;}
.y15_c00173{bottom:736.800000pt;}
.y49_c00173{bottom:746.133333pt;}
.y14_c00173{bottom:748.933333pt;}
.y13_c00173{bottom:761.733333pt;}
.y48_c00173{bottom:761.866667pt;}
.y12_c00173{bottom:774.800000pt;}
.y47_c00173{bottom:777.600000pt;}
.y11_c00173{bottom:787.600000pt;}
.y46_c00173{bottom:793.333333pt;}
.y10_c00173{bottom:799.733333pt;}
.y45_c00173{bottom:809.333333pt;}
.yf_c00173{bottom:812.800000pt;}
.ye_c00173{bottom:823.733333pt;}
.y44_c00173{bottom:825.066667pt;}
.y43_c00173{bottom:840.800000pt;}
.yd_c00173{bottom:841.466667pt;}
.y42_c00173{bottom:856.800000pt;}
.yc_c00173{bottom:857.200000pt;}
.y41_c00173{bottom:872.533333pt;}
.yb_c00173{bottom:872.933333pt;}
.y40_c00173{bottom:887.866667pt;}
.ya_c00173{bottom:896.133333pt;}
.y3f_c00173{bottom:903.600000pt;}
.y9_c00173{bottom:912.133333pt;}
.y3e_c00173{bottom:919.600000pt;}
.y8_c00173{bottom:927.866667pt;}
.y3d_c00173{bottom:935.333333pt;}
.y7_c00173{bottom:943.600000pt;}
.y3c_c00173{bottom:951.333333pt;}
.y6_c00173{bottom:959.333333pt;}
.y3b_c00173{bottom:966.666667pt;}
.y5_c00173{bottom:975.066667pt;}
.y3a_c00173{bottom:982.400000pt;}
.y4_c00173{bottom:990.800000pt;}
.y39_c00173{bottom:998.400000pt;}
.y3_c00173{bottom:1005.466667pt;}
.y2_c00173{bottom:1010.933333pt;}
.y1_c00173{bottom:1024.933333pt;}
.h8_c00173{height:21.333333pt;}
.h3_c00173{height:42.666667pt;}
.h7_c00173{height:48.000000pt;}
.h5_c00173{height:53.333333pt;}
.h6_c00173{height:58.666667pt;}
.h4_c00173{height:64.000000pt;}
.h2_c00173{height:101.333333pt;}
.h1_c00173{height:1136.666667pt;}
.h0_c00173{height:1136.959961pt;}
.w1_c00173{width:856.000000pt;}
.w0_c00173{width:856.319987pt;}
.x0_c00173{left:0.000000pt;}
.x5d_c00173{left:162.533333pt;}
.x46_c00173{left:163.466667pt;}
.x34_c00173{left:164.800000pt;}
.x1_c00173{left:165.733333pt;}
.xa1_c00173{left:170.933333pt;}
.x95_c00173{left:172.533333pt;}
.x8b_c00173{left:173.600000pt;}
.x59_c00173{left:174.666667pt;}
.x4d_c00173{left:176.000000pt;}
.xa9_c00173{left:176.933333pt;}
.x69_c00173{left:177.866667pt;}
.x62_c00173{left:178.800000pt;}
.x39_c00173{left:179.866667pt;}
.xc_c00173{left:181.466667pt;}
.x14_c00173{left:183.200000pt;}
.x35_c00173{left:186.933333pt;}
.x4e_c00173{left:188.400000pt;}
.x4a_c00173{left:189.733333pt;}
.x87_c00173{left:191.066667pt;}
.x9e_c00173{left:194.000000pt;}
.x75_c00173{left:195.600000pt;}
.x77_c00173{left:197.333333pt;}
.x4_c00173{left:198.400000pt;}
.x1c_c00173{left:202.266667pt;}
.x9a_c00173{left:204.000000pt;}
.x96_c00173{left:205.466667pt;}
.x36_c00173{left:206.400000pt;}
.x55_c00173{left:207.866667pt;}
.x81_c00173{left:210.933333pt;}
.x2b_c00173{left:212.133333pt;}
.x72_c00173{left:213.333333pt;}
.x7b_c00173{left:216.400000pt;}
.x47_c00173{left:217.600000pt;}
.x3f_c00173{left:218.666667pt;}
.x1d_c00173{left:220.800000pt;}
.x92_c00173{left:223.066667pt;}
.xd_c00173{left:224.666667pt;}
.x3a_c00173{left:226.266667pt;}
.xa4_c00173{left:227.600000pt;}
.x15_c00173{left:229.333333pt;}
.x24_c00173{left:231.600000pt;}
.x2c_c00173{left:237.733333pt;}
.xaa_c00173{left:238.933333pt;}
.x5e_c00173{left:242.533333pt;}
.x4f_c00173{left:243.733333pt;}
.x25_c00173{left:245.066667pt;}
.x6d_c00173{left:246.000000pt;}
.x7e_c00173{left:247.466667pt;}
.x56_c00173{left:250.133333pt;}
.x1e_c00173{left:252.533333pt;}
.x63_c00173{left:253.733333pt;}
.x6a_c00173{left:256.533333pt;}
.x16_c00173{left:257.466667pt;}
.x5a_c00173{left:259.600000pt;}
.xa2_c00173{left:262.800000pt;}
.x70_c00173{left:263.733333pt;}
.x5_c00173{left:264.933333pt;}
.x37_c00173{left:266.533333pt;}
.x6e_c00173{left:268.666667pt;}
.x64_c00173{left:269.733333pt;}
.x1f_c00173{left:272.400000pt;}
.xa6_c00173{left:274.133333pt;}
.x50_c00173{left:277.600000pt;}
.x6_c00173{left:280.000000pt;}
.x40_c00173{left:281.333333pt;}
.x79_c00173{left:282.533333pt;}
.x57_c00173{left:283.466667pt;}
.xa5_c00173{left:284.933333pt;}
.x20_c00173{left:286.533333pt;}
.x65_c00173{left:287.600000pt;}
.xe_c00173{left:288.666667pt;}
.x76_c00173{left:290.400000pt;}
.x2f_c00173{left:291.600000pt;}
.x84_c00173{left:292.533333pt;}
.x51_c00173{left:294.266667pt;}
.x41_c00173{left:296.000000pt;}
.x5f_c00173{left:299.200000pt;}
.xf_c00173{left:300.800000pt;}
.x89_c00173{left:303.600000pt;}
.x6b_c00173{left:305.200000pt;}
.x97_c00173{left:306.266667pt;}
.x3b_c00173{left:307.200000pt;}
.x30_c00173{left:310.800000pt;}
.x71_c00173{left:312.400000pt;}
.x90_c00173{left:314.266667pt;}
.x17_c00173{left:316.000000pt;}
.x58_c00173{left:317.066667pt;}
.x8c_c00173{left:319.466667pt;}
.x7_c00173{left:321.866667pt;}
.x21_c00173{left:323.600000pt;}
.xa3_c00173{left:324.800000pt;}
.x98_c00173{left:326.133333pt;}
.x82_c00173{left:327.733333pt;}
.x60_c00173{left:330.266667pt;}
.x4b_c00173{left:332.133333pt;}
.x42_c00173{left:336.000000pt;}
.x8_c00173{left:337.600000pt;}
.x44_c00173{left:339.466667pt;}
.x22_c00173{left:341.866667pt;}
.x52_c00173{left:342.933333pt;}
.x93_c00173{left:344.000000pt;}
.x66_c00173{left:345.200000pt;}
.x31_c00173{left:347.600000pt;}
.x18_c00173{left:351.200000pt;}
.x85_c00173{left:352.666667pt;}
.x43_c00173{left:353.600000pt;}
.x2d_c00173{left:354.533333pt;}
.x7f_c00173{left:355.733333pt;}
.x88_c00173{left:356.666667pt;}
.x8d_c00173{left:358.933333pt;}
.x83_c00173{left:360.000000pt;}
.x99_c00173{left:361.066667pt;}
.x10_c00173{left:362.133333pt;}
.x27_c00173{left:364.133333pt;}
.x6c_c00173{left:365.733333pt;}
.x5b_c00173{left:368.133333pt;}
.x7c_c00173{left:370.266667pt;}
.x3c_c00173{left:371.466667pt;}
.x4c_c00173{left:372.800000pt;}
.x94_c00173{left:373.733333pt;}
.x53_c00173{left:374.666667pt;}
.x7a_c00173{left:378.666667pt;}
.x32_c00173{left:380.533333pt;}
.x91_c00173{left:381.466667pt;}
.x9f_c00173{left:382.933333pt;}
.x9_c00173{left:384.666667pt;}
.x2_c00173{left:385.866667pt;}
.x3d_c00173{left:387.466667pt;}
.x9b_c00173{left:388.533333pt;}
.x19_c00173{left:389.600000pt;}
.x28_c00173{left:392.933333pt;}
.xa7_c00173{left:394.800000pt;}
.x73_c00173{left:395.866667pt;}
.x67_c00173{left:397.066667pt;}
.x54_c00173{left:398.400000pt;}
.x48_c00173{left:400.000000pt;}
.x11_c00173{left:401.466667pt;}
.x7d_c00173{left:403.600000pt;}
.x86_c00173{left:404.800000pt;}
.x9c_c00173{left:406.400000pt;}
.x68_c00173{left:407.333333pt;}
.x29_c00173{left:409.866667pt;}
.x8e_c00173{left:410.800000pt;}
.xa0_c00173{left:412.000000pt;}
.x74_c00173{left:414.133333pt;}
.x23_c00173{left:415.200000pt;}
.xa8_c00173{left:416.933333pt;}
.x33_c00173{left:418.666667pt;}
.x1a_c00173{left:419.733333pt;}
.xa_c00173{left:423.333333pt;}
.x3e_c00173{left:424.266667pt;}
.x49_c00173{left:425.600000pt;}
.x9d_c00173{left:428.533333pt;}
.x6f_c00173{left:429.466667pt;}
.x80_c00173{left:430.400000pt;}
.x12_c00173{left:431.866667pt;}
.x2e_c00173{left:433.333333pt;}
.x78_c00173{left:435.733333pt;}
.x8a_c00173{left:438.266667pt;}
.x2a_c00173{left:439.333333pt;}
.x8f_c00173{left:441.200000pt;}
.x26_c00173{left:442.266667pt;}
.xb_c00173{left:444.133333pt;}
.x45_c00173{left:449.600000pt;}
.x5c_c00173{left:450.800000pt;}
.x13_c00173{left:451.733333pt;}
.x38_c00173{left:452.800000pt;}
.x1b_c00173{left:454.666667pt;}
.x61_c00173{left:457.466667pt;}
.x3_c00173{left:458.533333pt;}
.x153_c00173{left:468.400000pt;}
.x14a_c00173{left:469.466667pt;}
.x143_c00173{left:470.933333pt;}
.x13e_c00173{left:472.000000pt;}
.x130_c00173{left:474.533333pt;}
.x127_c00173{left:476.133333pt;}
.x119_c00173{left:477.733333pt;}
.x14b_c00173{left:482.266667pt;}
.x13f_c00173{left:484.133333pt;}
.x12b_c00173{left:485.200000pt;}
.x102_c00173{left:486.266667pt;}
.x135_c00173{left:488.266667pt;}
.x12d_c00173{left:489.600000pt;}
.x11b_c00173{left:492.400000pt;}
.x116_c00173{left:493.866667pt;}
.x109_c00173{left:495.200000pt;}
.xed_c00173{left:496.266667pt;}
.xe8_c00173{left:497.200000pt;}
.xcb_c00173{left:498.666667pt;}
.xab_c00173{left:499.866667pt;}
.x14c_c00173{left:501.733333pt;}
.x134_c00173{left:503.333333pt;}
.x112_c00173{left:510.133333pt;}
.x131_c00173{left:512.000000pt;}
.x10f_c00173{left:513.866667pt;}
.xe9_c00173{left:515.066667pt;}
.xd2_c00173{left:518.000000pt;}
.x117_c00173{left:521.733333pt;}
.x139_c00173{left:522.666667pt;}
.x140_c00173{left:524.133333pt;}
.xcc_c00173{left:525.600000pt;}
.xe4_c00173{left:527.333333pt;}
.xf8_c00173{left:528.266667pt;}
.xee_c00173{left:529.600000pt;}
.x11a_c00173{left:530.800000pt;}
.xfb_c00173{left:531.733333pt;}
.xac_c00173{left:532.800000pt;}
.xc6_c00173{left:534.266667pt;}
.x128_c00173{left:535.333333pt;}
.xb9_c00173{left:536.666667pt;}
.xda_c00173{left:538.400000pt;}
.xbe_c00173{left:540.133333pt;}
.x137_c00173{left:541.466667pt;}
.xfd_c00173{left:543.866667pt;}
.xb3_c00173{left:544.933333pt;}
.x113_c00173{left:547.200000pt;}
.xd3_c00173{left:549.066667pt;}
.x107_c00173{left:550.266667pt;}
.xf3_c00173{left:551.733333pt;}
.x132_c00173{left:552.933333pt;}
.x145_c00173{left:554.133333pt;}
.x11c_c00173{left:556.133333pt;}
.x122_c00173{left:557.333333pt;}
.x146_c00173{left:559.600000pt;}
.xfe_c00173{left:562.133333pt;}
.x144_c00173{left:563.733333pt;}
.xb4_c00173{left:564.800000pt;}
.xf4_c00173{left:566.400000pt;}
.x12f_c00173{left:567.600000pt;}
.xbf_c00173{left:569.866667pt;}
.xef_c00173{left:571.200000pt;}
.xad_c00173{left:573.733333pt;}
.xdf_c00173{left:574.666667pt;}
.x13a_c00173{left:575.733333pt;}
.xcd_c00173{left:577.733333pt;}
.x103_c00173{left:580.266667pt;}
.x141_c00173{left:581.333333pt;}
.xdb_c00173{left:582.533333pt;}
.xc0_c00173{left:584.266667pt;}
.xf0_c00173{left:586.266667pt;}
.xba_c00173{left:587.866667pt;}
.xfc_c00173{left:590.000000pt;}
.xd4_c00173{left:590.933333pt;}
.x14d_c00173{left:593.200000pt;}
.xf9_c00173{left:595.733333pt;}
.x111_c00173{left:596.666667pt;}
.x104_c00173{left:597.600000pt;}
.xff_c00173{left:598.933333pt;}
.x136_c00173{left:605.066667pt;}
.x10a_c00173{left:606.000000pt;}
.xc7_c00173{left:609.466667pt;}
.x147_c00173{left:611.333333pt;}
.x13b_c00173{left:612.533333pt;}
.xf5_c00173{left:613.466667pt;}
.xc1_c00173{left:614.933333pt;}
.x14f_c00173{left:616.533333pt;}
.x123_c00173{left:617.733333pt;}
.xd5_c00173{left:619.066667pt;}
.xbb_c00173{left:620.800000pt;}
.xb5_c00173{left:623.066667pt;}
.xdc_c00173{left:624.800000pt;}
.xce_c00173{left:627.066667pt;}
.x100_c00173{left:628.666667pt;}
.x120_c00173{left:629.733333pt;}
.x114_c00173{left:632.000000pt;}
.xf1_c00173{left:633.600000pt;}
.x13c_c00173{left:635.600000pt;}
.x125_c00173{left:636.533333pt;}
.xc2_c00173{left:638.000000pt;}
.xe0_c00173{left:639.600000pt;}
.x12e_c00173{left:641.066667pt;}
.xe5_c00173{left:642.266667pt;}
.x148_c00173{left:643.600000pt;}
.xbc_c00173{left:645.466667pt;}
.x129_c00173{left:647.333333pt;}
.x10c_c00173{left:649.600000pt;}
.x138_c00173{left:651.200000pt;}
.xd6_c00173{left:654.000000pt;}
.xc3_c00173{left:655.600000pt;}
.x13d_c00173{left:656.666667pt;}
.xb6_c00173{left:657.600000pt;}
.xae_c00173{left:659.200000pt;}
.x12c_c00173{left:660.800000pt;}
.xe6_c00173{left:662.400000pt;}
.x126_c00173{left:663.466667pt;}
.x11d_c00173{left:664.666667pt;}
.x10b_c00173{left:666.533333pt;}
.x150_c00173{left:668.000000pt;}
.x105_c00173{left:669.600000pt;}
.x149_c00173{left:670.800000pt;}
.xcf_c00173{left:672.133333pt;}
.x14e_c00173{left:673.466667pt;}
.x142_c00173{left:676.400000pt;}
.xfa_c00173{left:678.266667pt;}
.xd7_c00173{left:679.600000pt;}
.xb7_c00173{left:685.466667pt;}
.x108_c00173{left:688.133333pt;}
.xf6_c00173{left:689.600000pt;}
.xea_c00173{left:690.933333pt;}
.xe1_c00173{left:692.800000pt;}
.xd0_c00173{left:694.800000pt;}
.xaf_c00173{left:697.333333pt;}
.xc8_c00173{left:699.333333pt;}
.xb0_c00173{left:705.600000pt;}
.xe7_c00173{left:706.533333pt;}
.xe2_c00173{left:709.066667pt;}
.x151_c00173{left:710.000000pt;}
.xeb_c00173{left:711.066667pt;}
.xf7_c00173{left:712.266667pt;}
.x11e_c00173{left:714.533333pt;}
.xdd_c00173{left:716.400000pt;}
.x124_c00173{left:717.333333pt;}
.x133_c00173{left:718.666667pt;}
.xc4_c00173{left:719.866667pt;}
.x121_c00173{left:720.933333pt;}
.xd8_c00173{left:722.133333pt;}
.xb1_c00173{left:725.466667pt;}
.x106_c00173{left:726.933333pt;}
.x152_c00173{left:729.200000pt;}
.x110_c00173{left:735.466667pt;}
.xc9_c00173{left:736.400000pt;}
.x118_c00173{left:737.333333pt;}
.x10d_c00173{left:740.133333pt;}
.x115_c00173{left:742.133333pt;}
.xec_c00173{left:744.933333pt;}
.xde_c00173{left:745.866667pt;}
.xe3_c00173{left:746.800000pt;}
.xb8_c00173{left:748.133333pt;}
.x101_c00173{left:749.600000pt;}
.xca_c00173{left:751.733333pt;}
.xd1_c00173{left:754.400000pt;}
.xbd_c00173{left:755.866667pt;}
.xf2_c00173{left:760.666667pt;}
.x11f_c00173{left:761.600000pt;}
.x12a_c00173{left:762.933333pt;}
.xb2_c00173{left:765.733333pt;}
.xd9_c00173{left:768.266667pt;}
.xc5_c00173{left:769.466667pt;}
.x10e_c00173{left:775.066667pt;}
}





/* 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_c00174 {
    display:none;
  }
  .loading-indicator_c00174.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00174 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_c00174 { 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_c00174" -> "#page-container .classname_c00174")
 */
.pf_c00174 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00174 { /* 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_c00174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00174 { /* 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_c00174 { /* 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_c00174 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00174 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00174 {overflow:visible;}
  }
}
.c_c00174 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00174 { /* 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_c00174:after { /* webkit #35443 */
  content: '';
}
.t_c00174:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00174 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 */
}
.__c00174 { /* 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_c00174 { /* info for Javascript */
  display:none;
}
.l_c00174 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00174 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00174 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00174: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_c00174 {
    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_c00174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00174.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_c00174 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00174;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.000000;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;}
.mac_c00174{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m2_c00174{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00174{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00174{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m71_c00174{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m77_c00174{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m104_c00174{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m70_c00174{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00174{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m78_c00174{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00174{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m81_c00174{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00174{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00174{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00174{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00174{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m54_c00174{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00174{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00174{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me3_c00174{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m110_c00174{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m47_c00174{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m72_c00174{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m76_c00174{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00174{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00174{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me4_c00174{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m18_c00174{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00174{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00174{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00174{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m23_c00174{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00174{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00174{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00174{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mab_c00174{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00174{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7_c00174{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00174{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m86_c00174{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m111_c00174{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mef_c00174{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m51_c00174{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.me_c00174{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m79_c00174{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m58_c00174{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00174{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m55_c00174{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m99_c00174{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m49_c00174{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m61_c00174{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m75_c00174{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m28_c00174{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00174{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.md_c00174{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md6_c00174{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m80_c00174{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10_c00174{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m40_c00174{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00174{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m52_c00174{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00174{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m30_c00174{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00174{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m66_c00174{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00174{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00174{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00174{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m82_c00174{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m90_c00174{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m97_c00174{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00174{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mce_c00174{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m20_c00174{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00174{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m93_c00174{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me0_c00174{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m89_c00174{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00174{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m27_c00174{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00174{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma_c00174{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m13_c00174{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m65_c00174{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m69_c00174{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m6_c00174{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00174{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00174{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m16_c00174{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00174{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00174{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00174{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00174{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m29_c00174{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m64_c00174{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00174{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m53_c00174{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00174{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4_c00174{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00174{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md5_c00174{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00174{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m25_c00174{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb_c00174{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8_c00174{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md4_c00174{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00174{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m19_c00174{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.maa_c00174{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00174{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00174{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00174{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9_c00174{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m60_c00174{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m46_c00174{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md0_c00174{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mda_c00174{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00174{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00174{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m102_c00174{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00174{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m73_c00174{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00174{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mc_c00174{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00174{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00174{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00174{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00174{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mae_c00174{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00174{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m68_c00174{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00174{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00174{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00174{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m15_c00174{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m103_c00174{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00174{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m56_c00174{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00174{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mf_c00174{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m84_c00174{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00174{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m94_c00174{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md9_c00174{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00174{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00174{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00174{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m92_c00174{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m105_c00174{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00174{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md2_c00174{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md1_c00174{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00174{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m50_c00174{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mca_c00174{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5_c00174{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m88_c00174{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m67_c00174{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00174{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00174{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md3_c00174{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00174{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00174{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00174{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m98_c00174{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me8_c00174{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m107_c00174{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m17_c00174{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00174{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00174{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m87_c00174{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m32_c00174{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m26_c00174{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m57_c00174{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00174{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m83_c00174{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m59_c00174{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m85_c00174{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.me1_c00174{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00174{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m74_c00174{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00174{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mec_c00174{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00174{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00174{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m37_c00174{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00174{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m34_c00174{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md7_c00174{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00174{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mde_c00174{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00174{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00174{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m24_c00174{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m95_c00174{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00174{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m14_c00174{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m21_c00174{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00174{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00174{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00174{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m108_c00174{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m96_c00174{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m109_c00174{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m44_c00174{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00174{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00174{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00174{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me6_c00174{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.meb_c00174{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00174{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00174{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00174{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mba_c00174{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00174{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00174{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m38_c00174{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mad_c00174{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m12_c00174{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me2_c00174{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m45_c00174{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00174{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m41_c00174{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me7_c00174{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00174{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00174{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m91_c00174{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m63_c00174{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.maf_c00174{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m36_c00174{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m35_c00174{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m11_c00174{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00174{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00174{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m33_c00174{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.med_c00174{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00174{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me9_c00174{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m101_c00174{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m39_c00174{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00174{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m31_c00174{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m43_c00174{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m100_c00174{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00174{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00174{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00174{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me5_c00174{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mee_c00174{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3_c00174{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00174{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mea_c00174{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00174{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mff_c00174{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00174{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00174{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m106_c00174{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00174{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00174{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00174{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m22_c00174{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00174{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m48_c00174{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md8_c00174{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00174{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00174{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00174{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m42_c00174{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00174{transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);}
.m0_c00174{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00174{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00174{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00174{transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.ls0_c00174{letter-spacing:0.000000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{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__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00174{word-spacing:-13.472393px;}
.ws7_c00174{word-spacing:-7.156425px;}
.ws0_c00174{word-spacing:-6.965636px;}
.ws4_c00174{word-spacing:-3.750000px;}
.wsb_c00174{word-spacing:0.000000px;}
.ws2_c00174{word-spacing:4.375000px;}
.ws9_c00174{word-spacing:4.436328px;}
.ws5_c00174{word-spacing:10.625000px;}
.ws1_c00174{word-spacing:11.497207px;}
.ws8_c00174{word-spacing:11.577960px;}
.wsa_c00174{word-spacing:14.411765px;}
.ws3_c00174{word-spacing:253.000000px;}
._0_c00174{width:469.000000px;}
.fc0_c00174{color:transparent;}
.fs1_c00174{font-size:48.000000px;}
.fs5_c00174{font-size:54.000000px;}
.fs3_c00174{font-size:60.000000px;}
.fs2_c00174{font-size:66.000000px;}
.fs4_c00174{font-size:72.000000px;}
.fs0_c00174{font-size:108.000000px;}
.y0_c00174{bottom:0.000000px;}
.y2_c00174{bottom:36.750000px;}
.y67_c00174{bottom:187.200000px;}
.y32_c00174{bottom:188.550000px;}
.y31_c00174{bottom:206.550000px;}
.y66_c00174{bottom:213.300000px;}
.y30_c00174{bottom:224.250000px;}
.y65_c00174{bottom:227.400000px;}
.y64_c00174{bottom:241.800000px;}
.y2f_c00174{bottom:241.950000px;}
.y63_c00174{bottom:255.900000px;}
.y2e_c00174{bottom:259.950000px;}
.y62_c00174{bottom:270.300000px;}
.y2d_c00174{bottom:277.200000px;}
.y61_c00174{bottom:284.700000px;}
.y2c_c00174{bottom:295.200000px;}
.y60_c00174{bottom:298.800000px;}
.y2b_c00174{bottom:312.750000px;}
.y5f_c00174{bottom:313.200000px;}
.y5e_c00174{bottom:327.600000px;}
.y2a_c00174{bottom:330.450000px;}
.y5d_c00174{bottom:341.700000px;}
.y29_c00174{bottom:348.150000px;}
.y5c_c00174{bottom:355.800000px;}
.y68_c00174{bottom:360.000000px;}
.y5b_c00174{bottom:369.900000px;}
.y28_c00174{bottom:373.950000px;}
.y5a_c00174{bottom:384.300000px;}
.y27_c00174{bottom:391.950000px;}
.y59_c00174{bottom:398.700000px;}
.y26_c00174{bottom:409.650000px;}
.y58_c00174{bottom:412.800000px;}
.y57_c00174{bottom:427.200000px;}
.y25_c00174{bottom:431.550000px;}
.y56_c00174{bottom:441.300000px;}
.y24_c00174{bottom:449.550000px;}
.y55_c00174{bottom:455.700000px;}
.y23_c00174{bottom:467.250000px;}
.y54_c00174{bottom:469.800000px;}
.y53_c00174{bottom:484.200000px;}
.y22_c00174{bottom:484.950000px;}
.y52_c00174{bottom:498.600000px;}
.y21_c00174{bottom:511.350000px;}
.y51_c00174{bottom:512.700000px;}
.y50_c00174{bottom:527.100000px;}
.y20_c00174{bottom:540.450000px;}
.y1f_c00174{bottom:548.700000px;}
.y1e_c00174{bottom:566.700000px;}
.y4f_c00174{bottom:575.700000px;}
.y1d_c00174{bottom:584.700000px;}
.y4e_c00174{bottom:593.700000px;}
.y4d_c00174{bottom:615.600000px;}
.y1c_c00174{bottom:619.200000px;}
.y4c_c00174{bottom:637.500000px;}
.y1b_c00174{bottom:649.800000px;}
.y1a_c00174{bottom:654.900000px;}
.y4b_c00174{bottom:659.400000px;}
.y4a_c00174{bottom:677.400000px;}
.y19_c00174{bottom:678.600000px;}
.y49_c00174{bottom:694.650000px;}
.y18_c00174{bottom:707.400000px;}
.y48_c00174{bottom:712.350000px;}
.y17_c00174{bottom:729.750000px;}
.y47_c00174{bottom:730.050000px;}
.y46_c00174{bottom:748.050000px;}
.y16_c00174{bottom:751.800000px;}
.y45_c00174{bottom:765.750000px;}
.y15_c00174{bottom:769.500000px;}
.y44_c00174{bottom:783.750000px;}
.y14_c00174{bottom:787.500000px;}
.y43_c00174{bottom:801.000000px;}
.y13_c00174{bottom:805.200000px;}
.y12_c00174{bottom:822.900000px;}
.y42_c00174{bottom:823.050000px;}
.y11_c00174{bottom:840.900000px;}
.y41_c00174{bottom:844.950000px;}
.y10_c00174{bottom:858.150000px;}
.y40_c00174{bottom:867.150000px;}
.yf_c00174{bottom:876.150000px;}
.y3f_c00174{bottom:884.850000px;}
.ye_c00174{bottom:893.850000px;}
.y3e_c00174{bottom:907.200000px;}
.yd_c00174{bottom:911.550000px;}
.y3d_c00174{bottom:924.900000px;}
.yc_c00174{bottom:933.900000px;}
.y3c_c00174{bottom:942.150000px;}
.yb_c00174{bottom:951.150000px;}
.y3b_c00174{bottom:959.850000px;}
.ya_c00174{bottom:969.300000px;}
.y3a_c00174{bottom:977.550000px;}
.y9_c00174{bottom:987.000000px;}
.y39_c00174{bottom:995.250000px;}
.y8_c00174{bottom:1004.700000px;}
.y38_c00174{bottom:1013.250000px;}
.y7_c00174{bottom:1022.400000px;}
.y37_c00174{bottom:1030.950000px;}
.y6_c00174{bottom:1047.300000px;}
.y36_c00174{bottom:1048.650000px;}
.y5_c00174{bottom:1062.000000px;}
.y35_c00174{bottom:1070.700000px;}
.y34_c00174{bottom:1088.700000px;}
.y4_c00174{bottom:1091.250000px;}
.y33_c00174{bottom:1106.250000px;}
.y3_c00174{bottom:1108.500000px;}
.y1_c00174{bottom:1134.000000px;}
.h3_c00174{height:48.000000px;}
.h7_c00174{height:54.000000px;}
.h5_c00174{height:60.000000px;}
.h4_c00174{height:66.000000px;}
.h6_c00174{height:72.000000px;}
.h2_c00174{height:108.000000px;}
.h0_c00174{height:1271.160094px;}
.h1_c00174{height:1271.250000px;}
.w1_c00174{width:963.000000px;}
.w0_c00174{width:963.359985px;}
.x0_c00174{left:0.000000px;}
.x3_c00174{left:14.400000px;}
.x11_c00174{left:92.550000px;}
.x4_c00174{left:93.900000px;}
.x6c_c00174{left:96.900000px;}
.x72_c00174{left:97.950000px;}
.x7a_c00174{left:99.900000px;}
.x1c_c00174{left:108.450000px;}
.xc_c00174{left:110.550000px;}
.x22_c00174{left:111.750000px;}
.x4a_c00174{left:112.800000px;}
.x44_c00174{left:113.850000px;}
.x56_c00174{left:115.500000px;}
.x65_c00174{left:116.550000px;}
.x7e_c00174{left:117.900000px;}
.x85_c00174{left:119.100000px;}
.x1d_c00174{left:121.050000px;}
.x3a_c00174{left:129.600000px;}
.x5_c00174{left:135.000000px;}
.x33_c00174{left:136.800000px;}
.x66_c00174{left:143.550000px;}
.x91_c00174{left:145.050000px;}
.x3f_c00174{left:147.900000px;}
.x5b_c00174{left:149.850000px;}
.x6b_c00174{left:152.550000px;}
.x12_c00174{left:154.050000px;}
.xd_c00174{left:155.850000px;}
.x40_c00174{left:160.200000px;}
.x60_c00174{left:163.950000px;}
.x9c_c00174{left:165.000000px;}
.x76_c00174{left:166.050000px;}
.x23_c00174{left:168.300000px;}
.x57_c00174{left:170.250000px;}
.x88_c00174{left:171.300000px;}
.x37_c00174{left:172.800000px;}
.x45_c00174{left:174.750000px;}
.x1e_c00174{left:177.000000px;}
.x34_c00174{left:178.950000px;}
.x97_c00174{left:180.150000px;}
.xe_c00174{left:181.800000px;}
.x70_c00174{left:183.300000px;}
.x4b_c00174{left:184.350000px;}
.x41_c00174{left:187.950000px;}
.x61_c00174{left:191.250000px;}
.x38_c00174{left:194.100000px;}
.x8e_c00174{left:196.350000px;}
.xf_c00174{left:198.750000px;}
.x6_c00174{left:200.850000px;}
.x46_c00174{left:203.250000px;}
.x3b_c00174{left:205.650000px;}
.x96_c00174{left:208.950000px;}
.x24_c00174{left:210.000000px;}
.x77_c00174{left:214.350000px;}
.x8a_c00174{left:216.000000px;}
.x6d_c00174{left:217.050000px;}
.x51_c00174{left:218.100000px;}
.x13_c00174{left:219.600000px;}
.x1f_c00174{left:220.950000px;}
.x5c_c00174{left:222.900000px;}
.x35_c00174{left:226.050000px;}
.x39_c00174{left:230.100000px;}
.x25_c00174{left:233.100000px;}
.x67_c00174{left:234.750000px;}
.x92_c00174{left:236.400000px;}
.x80_c00174{left:238.050000px;}
.x86_c00174{left:239.100000px;}
.x2a_c00174{left:240.750000px;}
.x7_c00174{left:242.250000px;}
.x2d_c00174{left:244.350000px;}
.x98_c00174{left:250.350000px;}
.x26_c00174{left:252.600000px;}
.x68_c00174{left:256.050000px;}
.x81_c00174{left:257.850000px;}
.x14_c00174{left:259.200000px;}
.x8_c00174{left:261.000000px;}
.x10_c00174{left:263.100000px;}
.x4c_c00174{left:264.600000px;}
.x62_c00174{left:267.600000px;}
.x58_c00174{left:269.250000px;}
.x93_c00174{left:270.300000px;}
.x52_c00174{left:271.800000px;}
.x6f_c00174{left:273.450000px;}
.x71_c00174{left:275.400000px;}
.x8f_c00174{left:276.450000px;}
.x7f_c00174{left:277.500000px;}
.x47_c00174{left:278.850000px;}
.x15_c00174{left:280.050000px;}
.x82_c00174{left:281.550000px;}
.x59_c00174{left:285.750000px;}
.x2e_c00174{left:290.100000px;}
.x53_c00174{left:292.650000px;}
.x27_c00174{left:293.700000px;}
.x20_c00174{left:295.800000px;}
.x83_c00174{left:298.050000px;}
.x9_c00174{left:299.850000px;}
.x4d_c00174{left:301.650000px;}
.x73_c00174{left:302.850000px;}
.x99_c00174{left:306.150000px;}
.x42_c00174{left:309.300000px;}
.x3c_c00174{left:314.700000px;}
.x16_c00174{left:316.800000px;}
.x9a_c00174{left:319.800000px;}
.x5d_c00174{left:320.850000px;}
.x8b_c00174{left:322.200000px;}
.x94_c00174{left:323.550000px;}
.x1_c00174{left:324.750000px;}
.x69_c00174{left:325.950000px;}
.x43_c00174{left:327.300000px;}
.x2f_c00174{left:329.700000px;}
.x4e_c00174{left:331.950000px;}
.x48_c00174{left:333.150000px;}
.x17_c00174{left:335.550000px;}
.x78_c00174{left:337.500000px;}
.x84_c00174{left:339.000000px;}
.x7b_c00174{left:340.800000px;}
.x9b_c00174{left:342.600000px;}
.x2b_c00174{left:343.950000px;}
.x9d_c00174{left:346.200000px;}
.x30_c00174{left:347.700000px;}
.x5e_c00174{left:349.350000px;}
.x21_c00174{left:352.950000px;}
.x49_c00174{left:354.000000px;}
.x18_c00174{left:355.350000px;}
.x8c_c00174{left:356.700000px;}
.x74_c00174{left:357.900000px;}
.xa_c00174{left:359.250000px;}
.x63_c00174{left:363.000000px;}
.x54_c00174{left:365.700000px;}
.x5a_c00174{left:368.250000px;}
.x3d_c00174{left:369.750000px;}
.x19_c00174{left:371.850000px;}
.x28_c00174{left:373.650000px;}
.x89_c00174{left:376.500000px;}
.x6e_c00174{left:379.500000px;}
.x6a_c00174{left:381.450000px;}
.x90_c00174{left:382.650000px;}
.x87_c00174{left:387.300000px;}
.x31_c00174{left:389.400000px;}
.x9e_c00174{left:391.200000px;}
.x36_c00174{left:392.850000px;}
.x55_c00174{left:394.800000px;}
.x3e_c00174{left:396.750000px;}
.xb_c00174{left:398.850000px;}
.x32_c00174{left:399.900000px;}
.x7c_c00174{left:401.700000px;}
.x75_c00174{left:403.200000px;}
.x4f_c00174{left:406.050000px;}
.x79_c00174{left:407.700000px;}
.x1a_c00174{left:409.350000px;}
.x5f_c00174{left:413.100000px;}
.x29_c00174{left:415.350000px;}
.x64_c00174{left:417.450000px;}
.x2c_c00174{left:418.500000px;}
.x50_c00174{left:419.700000px;}
.x1b_c00174{left:424.500000px;}
.x8d_c00174{left:426.300000px;}
.x7d_c00174{left:430.800000px;}
.x95_c00174{left:445.950000px;}
.x10b_c00174{left:454.650000px;}
.x11c_c00174{left:455.700000px;}
.x12f_c00174{left:456.900000px;}
.x139_c00174{left:457.950000px;}
.x9f_c00174{left:468.000000px;}
.xe2_c00174{left:469.800000px;}
.xf2_c00174{left:471.000000px;}
.x107_c00174{left:472.650000px;}
.x136_c00174{left:476.400000px;}
.x13e_c00174{left:478.050000px;}
.x11f_c00174{left:482.550000px;}
.x111_c00174{left:484.650000px;}
.xad_c00174{left:486.000000px;}
.xd7_c00174{left:487.800000px;}
.xbc_c00174{left:489.600000px;}
.x100_c00174{left:490.650000px;}
.x124_c00174{left:492.000000px;}
.xd3_c00174{left:493.200000px;}
.xf3_c00174{left:495.900000px;}
.xc3_c00174{left:497.550000px;}
.xa0_c00174{left:499.350000px;}
.xfc_c00174{left:502.050000px;}
.xce_c00174{left:503.100000px;}
.x11d_c00174{left:504.600000px;}
.x132_c00174{left:507.000000px;}
.x10d_c00174{left:510.450000px;}
.x131_c00174{left:511.800000px;}
.x125_c00174{left:513.300000px;}
.xae_c00174{left:514.500000px;}
.xa1_c00174{left:516.600000px;}
.xb3_c00174{left:518.550000px;}
.xac_c00174{left:521.250000px;}
.x133_c00174{left:522.450000px;}
.xd8_c00174{left:523.500000px;}
.xdc_c00174{left:524.850000px;}
.xbd_c00174{left:526.350000px;}
.x108_c00174{left:527.400000px;}
.xdd_c00174{left:528.450000px;}
.xb4_c00174{left:530.400000px;}
.xd4_c00174{left:532.500000px;}
.xa7_c00174{left:533.850000px;}
.x13a_c00174{left:536.100000px;}
.xef_c00174{left:538.050000px;}
.x126_c00174{left:539.550000px;}
.x112_c00174{left:541.500000px;}
.xf9_c00174{left:543.750000px;}
.xea_c00174{left:544.950000px;}
.xc4_c00174{left:546.150000px;}
.xb5_c00174{left:548.700000px;}
.xaf_c00174{left:549.750000px;}
.xdf_c00174{left:551.850000px;}
.x130_c00174{left:553.350000px;}
.xc5_c00174{left:555.450000px;}
.x12a_c00174{left:556.950000px;}
.xf0_c00174{left:559.650000px;}
.xe3_c00174{left:561.000000px;}
.x113_c00174{left:563.850000px;}
.xbe_c00174{left:566.250000px;}
.x11a_c00174{left:567.300000px;}
.x137_c00174{left:569.700000px;}
.xc6_c00174{left:571.350000px;}
.xcf_c00174{left:573.000000px;}
.x109_c00174{left:575.550000px;}
.xf4_c00174{left:576.900000px;}
.x102_c00174{left:577.950000px;}
.x138_c00174{left:580.500000px;}
.xa2_c00174{left:582.150000px;}
.xf1_c00174{left:584.100000px;}
.xfd_c00174{left:585.900000px;}
.x103_c00174{left:587.550000px;}
.xbf_c00174{left:588.600000px;}
.xde_c00174{left:590.400000px;}
.xcb_c00174{left:594.450000px;}
.x129_c00174{left:596.100000px;}
.x114_c00174{left:597.750000px;}
.x11b_c00174{left:598.950000px;}
.xba_c00174{left:600.150000px;}
.x127_c00174{left:602.250000px;}
.xd9_c00174{left:604.500000px;}
.xb6_c00174{left:607.050000px;}
.xd0_c00174{left:608.250000px;}
.x10f_c00174{left:609.600000px;}
.xf5_c00174{left:611.100000px;}
.xd5_c00174{left:614.550000px;}
.x12b_c00174{left:615.900000px;}
.xd1_c00174{left:617.250000px;}
.xe7_c00174{left:619.500000px;}
.xb0_c00174{left:621.750000px;}
.xa8_c00174{left:623.100000px;}
.x115_c00174{left:626.850000px;}
.x110_c00174{left:628.650000px;}
.x134_c00174{left:629.700000px;}
.xeb_c00174{left:633.600000px;}
.xa9_c00174{left:635.400000px;}
.x120_c00174{left:637.800000px;}
.xe4_c00174{left:640.500000px;}
.xfe_c00174{left:643.200000px;}
.xb7_c00174{left:644.550000px;}
.x12e_c00174{left:645.750000px;}
.xc0_c00174{left:646.950000px;}
.x10e_c00174{left:648.300000px;}
.xc7_c00174{left:649.500000px;}
.x104_c00174{left:650.550000px;}
.xe0_c00174{left:651.600000px;}
.x13b_c00174{left:653.850000px;}
.xa3_c00174{left:655.200000px;}
.xfa_c00174{left:658.950000px;}
.x101_c00174{left:661.200000px;}
.xe8_c00174{left:662.700000px;}
.x116_c00174{left:663.900000px;}
.xbb_c00174{left:666.000000px;}
.xa4_c00174{left:669.600000px;}
.xda_c00174{left:670.800000px;}
.x12c_c00174{left:674.250000px;}
.x13c_c00174{left:675.750000px;}
.xb8_c00174{left:678.000000px;}
.xec_c00174{left:680.100000px;}
.x135_c00174{left:682.050000px;}
.xb1_c00174{left:684.450000px;}
.x13f_c00174{left:686.250000px;}
.xa5_c00174{left:687.900000px;}
.xc1_c00174{left:689.850000px;}
.x128_c00174{left:692.250000px;}
.x121_c00174{left:693.600000px;}
.xf6_c00174{left:695.400000px;}
.x105_c00174{left:697.050000px;}
.xaa_c00174{left:698.100000px;}
.xc8_c00174{left:699.150000px;}
.x140_c00174{left:700.650000px;}
.xe5_c00174{left:702.000000px;}
.xed_c00174{left:705.300000px;}
.xd2_c00174{left:706.800000px;}
.xc9_c00174{left:709.200000px;}
.x122_c00174{left:714.150000px;}
.x106_c00174{left:717.150000px;}
.x117_c00174{left:719.400000px;}
.xab_c00174{left:721.800000px;}
.xcc_c00174{left:723.450000px;}
.xc2_c00174{left:725.850000px;}
.xe1_c00174{left:727.500000px;}
.xdb_c00174{left:731.250000px;}
.xf7_c00174{left:732.900000px;}
.xe9_c00174{left:733.950000px;}
.x10c_c00174{left:735.750000px;}
.xb9_c00174{left:737.100000px;}
.xfb_c00174{left:739.650000px;}
.xee_c00174{left:741.000000px;}
.x118_c00174{left:742.500000px;}
.xd6_c00174{left:746.550000px;}
.x141_c00174{left:747.750000px;}
.xe6_c00174{left:750.600000px;}
.xca_c00174{left:753.150000px;}
.xb2_c00174{left:755.700000px;}
.x2_c00174{left:757.050000px;}
.xff_c00174{left:762.000000px;}
.x119_c00174{left:763.050000px;}
.x11e_c00174{left:765.450000px;}
.x123_c00174{left:767.100000px;}
.x142_c00174{left:769.050000px;}
.xcd_c00174{left:770.250000px;}
.x10a_c00174{left:771.750000px;}
.xa6_c00174{left:774.300000px;}
.xf8_c00174{left:776.400000px;}
.x12d_c00174{left:780.750000px;}
.x13d_c00174{left:785.850000px;}
.x143_c00174{left:943.500000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws6_c00174{word-spacing:-11.975460pt;}
.ws7_c00174{word-spacing:-6.361266pt;}
.ws0_c00174{word-spacing:-6.191676pt;}
.ws4_c00174{word-spacing:-3.333333pt;}
.wsb_c00174{word-spacing:0.000000pt;}
.ws2_c00174{word-spacing:3.888889pt;}
.ws9_c00174{word-spacing:3.943402pt;}
.ws5_c00174{word-spacing:9.444444pt;}
.ws1_c00174{word-spacing:10.219739pt;}
.ws8_c00174{word-spacing:10.291520pt;}
.wsa_c00174{word-spacing:12.810458pt;}
.ws3_c00174{word-spacing:224.888889pt;}
._0_c00174{width:416.888889pt;}
.fs1_c00174{font-size:42.666667pt;}
.fs5_c00174{font-size:48.000000pt;}
.fs3_c00174{font-size:53.333333pt;}
.fs2_c00174{font-size:58.666667pt;}
.fs4_c00174{font-size:64.000000pt;}
.fs0_c00174{font-size:96.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y2_c00174{bottom:32.666667pt;}
.y67_c00174{bottom:166.400000pt;}
.y32_c00174{bottom:167.600000pt;}
.y31_c00174{bottom:183.600000pt;}
.y66_c00174{bottom:189.600000pt;}
.y30_c00174{bottom:199.333333pt;}
.y65_c00174{bottom:202.133333pt;}
.y64_c00174{bottom:214.933333pt;}
.y2f_c00174{bottom:215.066667pt;}
.y63_c00174{bottom:227.466667pt;}
.y2e_c00174{bottom:231.066667pt;}
.y62_c00174{bottom:240.266667pt;}
.y2d_c00174{bottom:246.400000pt;}
.y61_c00174{bottom:253.066667pt;}
.y2c_c00174{bottom:262.400000pt;}
.y60_c00174{bottom:265.600000pt;}
.y2b_c00174{bottom:278.000000pt;}
.y5f_c00174{bottom:278.400000pt;}
.y5e_c00174{bottom:291.200000pt;}
.y2a_c00174{bottom:293.733333pt;}
.y5d_c00174{bottom:303.733333pt;}
.y29_c00174{bottom:309.466667pt;}
.y5c_c00174{bottom:316.266667pt;}
.y68_c00174{bottom:320.000000pt;}
.y5b_c00174{bottom:328.800000pt;}
.y28_c00174{bottom:332.400000pt;}
.y5a_c00174{bottom:341.600000pt;}
.y27_c00174{bottom:348.400000pt;}
.y59_c00174{bottom:354.400000pt;}
.y26_c00174{bottom:364.133333pt;}
.y58_c00174{bottom:366.933333pt;}
.y57_c00174{bottom:379.733333pt;}
.y25_c00174{bottom:383.600000pt;}
.y56_c00174{bottom:392.266667pt;}
.y24_c00174{bottom:399.600000pt;}
.y55_c00174{bottom:405.066667pt;}
.y23_c00174{bottom:415.333333pt;}
.y54_c00174{bottom:417.600000pt;}
.y53_c00174{bottom:430.400000pt;}
.y22_c00174{bottom:431.066667pt;}
.y52_c00174{bottom:443.200000pt;}
.y21_c00174{bottom:454.533333pt;}
.y51_c00174{bottom:455.733333pt;}
.y50_c00174{bottom:468.533333pt;}
.y20_c00174{bottom:480.400000pt;}
.y1f_c00174{bottom:487.733333pt;}
.y1e_c00174{bottom:503.733333pt;}
.y4f_c00174{bottom:511.733333pt;}
.y1d_c00174{bottom:519.733333pt;}
.y4e_c00174{bottom:527.733333pt;}
.y4d_c00174{bottom:547.200000pt;}
.y1c_c00174{bottom:550.400000pt;}
.y4c_c00174{bottom:566.666667pt;}
.y1b_c00174{bottom:577.600000pt;}
.y1a_c00174{bottom:582.133333pt;}
.y4b_c00174{bottom:586.133333pt;}
.y4a_c00174{bottom:602.133333pt;}
.y19_c00174{bottom:603.200000pt;}
.y49_c00174{bottom:617.466667pt;}
.y18_c00174{bottom:628.800000pt;}
.y48_c00174{bottom:633.200000pt;}
.y17_c00174{bottom:648.666667pt;}
.y47_c00174{bottom:648.933333pt;}
.y46_c00174{bottom:664.933333pt;}
.y16_c00174{bottom:668.266667pt;}
.y45_c00174{bottom:680.666667pt;}
.y15_c00174{bottom:684.000000pt;}
.y44_c00174{bottom:696.666667pt;}
.y14_c00174{bottom:700.000000pt;}
.y43_c00174{bottom:712.000000pt;}
.y13_c00174{bottom:715.733333pt;}
.y12_c00174{bottom:731.466667pt;}
.y42_c00174{bottom:731.600000pt;}
.y11_c00174{bottom:747.466667pt;}
.y41_c00174{bottom:751.066667pt;}
.y10_c00174{bottom:762.800000pt;}
.y40_c00174{bottom:770.800000pt;}
.yf_c00174{bottom:778.800000pt;}
.y3f_c00174{bottom:786.533333pt;}
.ye_c00174{bottom:794.533333pt;}
.y3e_c00174{bottom:806.400000pt;}
.yd_c00174{bottom:810.266667pt;}
.y3d_c00174{bottom:822.133333pt;}
.yc_c00174{bottom:830.133333pt;}
.y3c_c00174{bottom:837.466667pt;}
.yb_c00174{bottom:845.466667pt;}
.y3b_c00174{bottom:853.200000pt;}
.ya_c00174{bottom:861.600000pt;}
.y3a_c00174{bottom:868.933333pt;}
.y9_c00174{bottom:877.333333pt;}
.y39_c00174{bottom:884.666667pt;}
.y8_c00174{bottom:893.066667pt;}
.y38_c00174{bottom:900.666667pt;}
.y7_c00174{bottom:908.800000pt;}
.y37_c00174{bottom:916.400000pt;}
.y6_c00174{bottom:930.933333pt;}
.y36_c00174{bottom:932.133333pt;}
.y5_c00174{bottom:944.000000pt;}
.y35_c00174{bottom:951.733333pt;}
.y34_c00174{bottom:967.733333pt;}
.y4_c00174{bottom:970.000000pt;}
.y33_c00174{bottom:983.333333pt;}
.y3_c00174{bottom:985.333333pt;}
.y1_c00174{bottom:1008.000000pt;}
.h3_c00174{height:42.666667pt;}
.h7_c00174{height:48.000000pt;}
.h5_c00174{height:53.333333pt;}
.h4_c00174{height:58.666667pt;}
.h6_c00174{height:64.000000pt;}
.h2_c00174{height:96.000000pt;}
.h0_c00174{height:1129.920084pt;}
.h1_c00174{height:1130.000000pt;}
.w1_c00174{width:856.000000pt;}
.w0_c00174{width:856.319987pt;}
.x0_c00174{left:0.000000pt;}
.x3_c00174{left:12.800000pt;}
.x11_c00174{left:82.266667pt;}
.x4_c00174{left:83.466667pt;}
.x6c_c00174{left:86.133333pt;}
.x72_c00174{left:87.066667pt;}
.x7a_c00174{left:88.800000pt;}
.x1c_c00174{left:96.400000pt;}
.xc_c00174{left:98.266667pt;}
.x22_c00174{left:99.333333pt;}
.x4a_c00174{left:100.266667pt;}
.x44_c00174{left:101.200000pt;}
.x56_c00174{left:102.666667pt;}
.x65_c00174{left:103.600000pt;}
.x7e_c00174{left:104.800000pt;}
.x85_c00174{left:105.866667pt;}
.x1d_c00174{left:107.600000pt;}
.x3a_c00174{left:115.200000pt;}
.x5_c00174{left:120.000000pt;}
.x33_c00174{left:121.600000pt;}
.x66_c00174{left:127.600000pt;}
.x91_c00174{left:128.933333pt;}
.x3f_c00174{left:131.466667pt;}
.x5b_c00174{left:133.200000pt;}
.x6b_c00174{left:135.600000pt;}
.x12_c00174{left:136.933333pt;}
.xd_c00174{left:138.533333pt;}
.x40_c00174{left:142.400000pt;}
.x60_c00174{left:145.733333pt;}
.x9c_c00174{left:146.666667pt;}
.x76_c00174{left:147.600000pt;}
.x23_c00174{left:149.600000pt;}
.x57_c00174{left:151.333333pt;}
.x88_c00174{left:152.266667pt;}
.x37_c00174{left:153.600000pt;}
.x45_c00174{left:155.333333pt;}
.x1e_c00174{left:157.333333pt;}
.x34_c00174{left:159.066667pt;}
.x97_c00174{left:160.133333pt;}
.xe_c00174{left:161.600000pt;}
.x70_c00174{left:162.933333pt;}
.x4b_c00174{left:163.866667pt;}
.x41_c00174{left:167.066667pt;}
.x61_c00174{left:170.000000pt;}
.x38_c00174{left:172.533333pt;}
.x8e_c00174{left:174.533333pt;}
.xf_c00174{left:176.666667pt;}
.x6_c00174{left:178.533333pt;}
.x46_c00174{left:180.666667pt;}
.x3b_c00174{left:182.800000pt;}
.x96_c00174{left:185.733333pt;}
.x24_c00174{left:186.666667pt;}
.x77_c00174{left:190.533333pt;}
.x8a_c00174{left:192.000000pt;}
.x6d_c00174{left:192.933333pt;}
.x51_c00174{left:193.866667pt;}
.x13_c00174{left:195.200000pt;}
.x1f_c00174{left:196.400000pt;}
.x5c_c00174{left:198.133333pt;}
.x35_c00174{left:200.933333pt;}
.x39_c00174{left:204.533333pt;}
.x25_c00174{left:207.200000pt;}
.x67_c00174{left:208.666667pt;}
.x92_c00174{left:210.133333pt;}
.x80_c00174{left:211.600000pt;}
.x86_c00174{left:212.533333pt;}
.x2a_c00174{left:214.000000pt;}
.x7_c00174{left:215.333333pt;}
.x2d_c00174{left:217.200000pt;}
.x98_c00174{left:222.533333pt;}
.x26_c00174{left:224.533333pt;}
.x68_c00174{left:227.600000pt;}
.x81_c00174{left:229.200000pt;}
.x14_c00174{left:230.400000pt;}
.x8_c00174{left:232.000000pt;}
.x10_c00174{left:233.866667pt;}
.x4c_c00174{left:235.200000pt;}
.x62_c00174{left:237.866667pt;}
.x58_c00174{left:239.333333pt;}
.x93_c00174{left:240.266667pt;}
.x52_c00174{left:241.600000pt;}
.x6f_c00174{left:243.066667pt;}
.x71_c00174{left:244.800000pt;}
.x8f_c00174{left:245.733333pt;}
.x7f_c00174{left:246.666667pt;}
.x47_c00174{left:247.866667pt;}
.x15_c00174{left:248.933333pt;}
.x82_c00174{left:250.266667pt;}
.x59_c00174{left:254.000000pt;}
.x2e_c00174{left:257.866667pt;}
.x53_c00174{left:260.133333pt;}
.x27_c00174{left:261.066667pt;}
.x20_c00174{left:262.933333pt;}
.x83_c00174{left:264.933333pt;}
.x9_c00174{left:266.533333pt;}
.x4d_c00174{left:268.133333pt;}
.x73_c00174{left:269.200000pt;}
.x99_c00174{left:272.133333pt;}
.x42_c00174{left:274.933333pt;}
.x3c_c00174{left:279.733333pt;}
.x16_c00174{left:281.600000pt;}
.x9a_c00174{left:284.266667pt;}
.x5d_c00174{left:285.200000pt;}
.x8b_c00174{left:286.400000pt;}
.x94_c00174{left:287.600000pt;}
.x1_c00174{left:288.666667pt;}
.x69_c00174{left:289.733333pt;}
.x43_c00174{left:290.933333pt;}
.x2f_c00174{left:293.066667pt;}
.x4e_c00174{left:295.066667pt;}
.x48_c00174{left:296.133333pt;}
.x17_c00174{left:298.266667pt;}
.x78_c00174{left:300.000000pt;}
.x84_c00174{left:301.333333pt;}
.x7b_c00174{left:302.933333pt;}
.x9b_c00174{left:304.533333pt;}
.x2b_c00174{left:305.733333pt;}
.x9d_c00174{left:307.733333pt;}
.x30_c00174{left:309.066667pt;}
.x5e_c00174{left:310.533333pt;}
.x21_c00174{left:313.733333pt;}
.x49_c00174{left:314.666667pt;}
.x18_c00174{left:315.866667pt;}
.x8c_c00174{left:317.066667pt;}
.x74_c00174{left:318.133333pt;}
.xa_c00174{left:319.333333pt;}
.x63_c00174{left:322.666667pt;}
.x54_c00174{left:325.066667pt;}
.x5a_c00174{left:327.333333pt;}
.x3d_c00174{left:328.666667pt;}
.x19_c00174{left:330.533333pt;}
.x28_c00174{left:332.133333pt;}
.x89_c00174{left:334.666667pt;}
.x6e_c00174{left:337.333333pt;}
.x6a_c00174{left:339.066667pt;}
.x90_c00174{left:340.133333pt;}
.x87_c00174{left:344.266667pt;}
.x31_c00174{left:346.133333pt;}
.x9e_c00174{left:347.733333pt;}
.x36_c00174{left:349.200000pt;}
.x55_c00174{left:350.933333pt;}
.x3e_c00174{left:352.666667pt;}
.xb_c00174{left:354.533333pt;}
.x32_c00174{left:355.466667pt;}
.x7c_c00174{left:357.066667pt;}
.x75_c00174{left:358.400000pt;}
.x4f_c00174{left:360.933333pt;}
.x79_c00174{left:362.400000pt;}
.x1a_c00174{left:363.866667pt;}
.x5f_c00174{left:367.200000pt;}
.x29_c00174{left:369.200000pt;}
.x64_c00174{left:371.066667pt;}
.x2c_c00174{left:372.000000pt;}
.x50_c00174{left:373.066667pt;}
.x1b_c00174{left:377.333333pt;}
.x8d_c00174{left:378.933333pt;}
.x7d_c00174{left:382.933333pt;}
.x95_c00174{left:396.400000pt;}
.x10b_c00174{left:404.133333pt;}
.x11c_c00174{left:405.066667pt;}
.x12f_c00174{left:406.133333pt;}
.x139_c00174{left:407.066667pt;}
.x9f_c00174{left:416.000000pt;}
.xe2_c00174{left:417.600000pt;}
.xf2_c00174{left:418.666667pt;}
.x107_c00174{left:420.133333pt;}
.x136_c00174{left:423.466667pt;}
.x13e_c00174{left:424.933333pt;}
.x11f_c00174{left:428.933333pt;}
.x111_c00174{left:430.800000pt;}
.xad_c00174{left:432.000000pt;}
.xd7_c00174{left:433.600000pt;}
.xbc_c00174{left:435.200000pt;}
.x100_c00174{left:436.133333pt;}
.x124_c00174{left:437.333333pt;}
.xd3_c00174{left:438.400000pt;}
.xf3_c00174{left:440.800000pt;}
.xc3_c00174{left:442.266667pt;}
.xa0_c00174{left:443.866667pt;}
.xfc_c00174{left:446.266667pt;}
.xce_c00174{left:447.200000pt;}
.x11d_c00174{left:448.533333pt;}
.x132_c00174{left:450.666667pt;}
.x10d_c00174{left:453.733333pt;}
.x131_c00174{left:454.933333pt;}
.x125_c00174{left:456.266667pt;}
.xae_c00174{left:457.333333pt;}
.xa1_c00174{left:459.200000pt;}
.xb3_c00174{left:460.933333pt;}
.xac_c00174{left:463.333333pt;}
.x133_c00174{left:464.400000pt;}
.xd8_c00174{left:465.333333pt;}
.xdc_c00174{left:466.533333pt;}
.xbd_c00174{left:467.866667pt;}
.x108_c00174{left:468.800000pt;}
.xdd_c00174{left:469.733333pt;}
.xb4_c00174{left:471.466667pt;}
.xd4_c00174{left:473.333333pt;}
.xa7_c00174{left:474.533333pt;}
.x13a_c00174{left:476.533333pt;}
.xef_c00174{left:478.266667pt;}
.x126_c00174{left:479.600000pt;}
.x112_c00174{left:481.333333pt;}
.xf9_c00174{left:483.333333pt;}
.xea_c00174{left:484.400000pt;}
.xc4_c00174{left:485.466667pt;}
.xb5_c00174{left:487.733333pt;}
.xaf_c00174{left:488.666667pt;}
.xdf_c00174{left:490.533333pt;}
.x130_c00174{left:491.866667pt;}
.xc5_c00174{left:493.733333pt;}
.x12a_c00174{left:495.066667pt;}
.xf0_c00174{left:497.466667pt;}
.xe3_c00174{left:498.666667pt;}
.x113_c00174{left:501.200000pt;}
.xbe_c00174{left:503.333333pt;}
.x11a_c00174{left:504.266667pt;}
.x137_c00174{left:506.400000pt;}
.xc6_c00174{left:507.866667pt;}
.xcf_c00174{left:509.333333pt;}
.x109_c00174{left:511.600000pt;}
.xf4_c00174{left:512.800000pt;}
.x102_c00174{left:513.733333pt;}
.x138_c00174{left:516.000000pt;}
.xa2_c00174{left:517.466667pt;}
.xf1_c00174{left:519.200000pt;}
.xfd_c00174{left:520.800000pt;}
.x103_c00174{left:522.266667pt;}
.xbf_c00174{left:523.200000pt;}
.xde_c00174{left:524.800000pt;}
.xcb_c00174{left:528.400000pt;}
.x129_c00174{left:529.866667pt;}
.x114_c00174{left:531.333333pt;}
.x11b_c00174{left:532.400000pt;}
.xba_c00174{left:533.466667pt;}
.x127_c00174{left:535.333333pt;}
.xd9_c00174{left:537.333333pt;}
.xb6_c00174{left:539.600000pt;}
.xd0_c00174{left:540.666667pt;}
.x10f_c00174{left:541.866667pt;}
.xf5_c00174{left:543.200000pt;}
.xd5_c00174{left:546.266667pt;}
.x12b_c00174{left:547.466667pt;}
.xd1_c00174{left:548.666667pt;}
.xe7_c00174{left:550.666667pt;}
.xb0_c00174{left:552.666667pt;}
.xa8_c00174{left:553.866667pt;}
.x115_c00174{left:557.200000pt;}
.x110_c00174{left:558.800000pt;}
.x134_c00174{left:559.733333pt;}
.xeb_c00174{left:563.200000pt;}
.xa9_c00174{left:564.800000pt;}
.x120_c00174{left:566.933333pt;}
.xe4_c00174{left:569.333333pt;}
.xfe_c00174{left:571.733333pt;}
.xb7_c00174{left:572.933333pt;}
.x12e_c00174{left:574.000000pt;}
.xc0_c00174{left:575.066667pt;}
.x10e_c00174{left:576.266667pt;}
.xc7_c00174{left:577.333333pt;}
.x104_c00174{left:578.266667pt;}
.xe0_c00174{left:579.200000pt;}
.x13b_c00174{left:581.200000pt;}
.xa3_c00174{left:582.400000pt;}
.xfa_c00174{left:585.733333pt;}
.x101_c00174{left:587.733333pt;}
.xe8_c00174{left:589.066667pt;}
.x116_c00174{left:590.133333pt;}
.xbb_c00174{left:592.000000pt;}
.xa4_c00174{left:595.200000pt;}
.xda_c00174{left:596.266667pt;}
.x12c_c00174{left:599.333333pt;}
.x13c_c00174{left:600.666667pt;}
.xb8_c00174{left:602.666667pt;}
.xec_c00174{left:604.533333pt;}
.x135_c00174{left:606.266667pt;}
.xb1_c00174{left:608.400000pt;}
.x13f_c00174{left:610.000000pt;}
.xa5_c00174{left:611.466667pt;}
.xc1_c00174{left:613.200000pt;}
.x128_c00174{left:615.333333pt;}
.x121_c00174{left:616.533333pt;}
.xf6_c00174{left:618.133333pt;}
.x105_c00174{left:619.600000pt;}
.xaa_c00174{left:620.533333pt;}
.xc8_c00174{left:621.466667pt;}
.x140_c00174{left:622.800000pt;}
.xe5_c00174{left:624.000000pt;}
.xed_c00174{left:626.933333pt;}
.xd2_c00174{left:628.266667pt;}
.xc9_c00174{left:630.400000pt;}
.x122_c00174{left:634.800000pt;}
.x106_c00174{left:637.466667pt;}
.x117_c00174{left:639.466667pt;}
.xab_c00174{left:641.600000pt;}
.xcc_c00174{left:643.066667pt;}
.xc2_c00174{left:645.200000pt;}
.xe1_c00174{left:646.666667pt;}
.xdb_c00174{left:650.000000pt;}
.xf7_c00174{left:651.466667pt;}
.xe9_c00174{left:652.400000pt;}
.x10c_c00174{left:654.000000pt;}
.xb9_c00174{left:655.200000pt;}
.xfb_c00174{left:657.466667pt;}
.xee_c00174{left:658.666667pt;}
.x118_c00174{left:660.000000pt;}
.xd6_c00174{left:663.600000pt;}
.x141_c00174{left:664.666667pt;}
.xe6_c00174{left:667.200000pt;}
.xca_c00174{left:669.466667pt;}
.xb2_c00174{left:671.733333pt;}
.x2_c00174{left:672.933333pt;}
.xff_c00174{left:677.333333pt;}
.x119_c00174{left:678.266667pt;}
.x11e_c00174{left:680.400000pt;}
.x123_c00174{left:681.866667pt;}
.x142_c00174{left:683.600000pt;}
.xcd_c00174{left:684.666667pt;}
.x10a_c00174{left:686.000000pt;}
.xa6_c00174{left:688.266667pt;}
.xf8_c00174{left:690.133333pt;}
.x12d_c00174{left:694.000000pt;}
.x13d_c00174{left:698.533333pt;}
.x143_c00174{left:838.666667pt;}
}





/* 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_c00175 {
    display:none;
  }
  .loading-indicator_c00175.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00175 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_c00175 { 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_c00175" -> "#page-container .classname_c00175")
 */
.pf_c00175 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00175 { /* 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_c00175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00175 { /* 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_c00175 { /* 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_c00175 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00175 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00175 {overflow:visible;}
  }
}
.c_c00175 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00175 { /* 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_c00175:after { /* webkit #35443 */
  content: '';
}
.t_c00175:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00175 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 */
}
.__c00175 { /* 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_c00175 { /* info for Javascript */
  display:none;
}
.l_c00175 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00175 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00175 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00175: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_c00175 {
    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_c00175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00175.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_c00175 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00175;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.000000;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;}
.mbc_c00175{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m70_c00175{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00175{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00175{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00175{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00175{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m63_c00175{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00175{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00175{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m61_c00175{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m93_c00175{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me0_c00175{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00175{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00175{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m14_c00175{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md3_c00175{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.maf_c00175{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00175{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m52_c00175{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00175{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00175{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00175{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m75_c00175{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.md1_c00175{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m72_c00175{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00175{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00175{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00175{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m48_c00175{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m81_c00175{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00175{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m64_c00175{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00175{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m69_c00175{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mea_c00175{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00175{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m122_c00175{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m57_c00175{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mca_c00175{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00175{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00175{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m53_c00175{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mab_c00175{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00175{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00175{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m120_c00175{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00175{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.md9_c00175{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m25_c00175{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00175{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mae_c00175{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00175{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00175{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mac_c00175{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00175{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m125_c00175{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m24_c00175{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m34_c00175{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m73_c00175{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m22_c00175{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m82_c00175{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00175{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00175{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m106_c00175{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m92_c00175{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m38_c00175{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mad_c00175{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00175{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00175{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m45_c00175{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me_c00175{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00175{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m95_c00175{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mff_c00175{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00175{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00175{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00175{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md5_c00175{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m27_c00175{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m102_c00175{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00175{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m60_c00175{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf_c00175{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.mc_c00175{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00175{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m108_c00175{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00175{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00175{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m104_c00175{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m46_c00175{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me1_c00175{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00175{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00175{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00175{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m56_c00175{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m124_c00175{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00175{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5_c00175{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00175{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00175{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00175{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m30_c00175{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m103_c00175{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m26_c00175{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m20_c00175{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m112_c00175{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9_c00175{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00175{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00175{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00175{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m101_c00175{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m114_c00175{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m37_c00175{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m18_c00175{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00175{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m87_c00175{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md8_c00175{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00175{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00175{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m47_c00175{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m83_c00175{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m100_c00175{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m13_c00175{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00175{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00175{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m54_c00175{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md_c00175{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m36_c00175{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me5_c00175{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00175{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00175{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m59_c00175{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00175{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m107_c00175{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00175{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00175{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m90_c00175{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m11_c00175{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m91_c00175{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00175{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00175{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00175{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m78_c00175{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m121_c00175{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m16_c00175{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m28_c00175{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m58_c00175{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00175{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00175{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m89_c00175{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00175{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00175{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m109_c00175{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m55_c00175{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md0_c00175{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mba_c00175{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00175{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00175{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m62_c00175{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb_c00175{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00175{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00175{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00175{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00175{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00175{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00175{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00175{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00175{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m19_c00175{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m123_c00175{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m115_c00175{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00175{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m50_c00175{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m117_c00175{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00175{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m98_c00175{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m31_c00175{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00175{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m116_c00175{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6_c00175{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00175{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00175{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00175{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00175{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m33_c00175{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00175{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m21_c00175{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00175{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00175{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00175{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m68_c00175{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00175{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mde_c00175{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma_c00175{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m39_c00175{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me2_c00175{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2_c00175{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m94_c00175{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m40_c00175{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00175{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m74_c00175{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m10_c00175{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md7_c00175{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8_c00175{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m99_c00175{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m119_c00175{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mef_c00175{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00175{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m51_c00175{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m86_c00175{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me3_c00175{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m66_c00175{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m88_c00175{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mda_c00175{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00175{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00175{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m32_c00175{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00175{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00175{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00175{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m67_c00175{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00175{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00175{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.me7_c00175{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m15_c00175{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.maa_c00175{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00175{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00175{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m23_c00175{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12_c00175{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me4_c00175{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m118_c00175{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m96_c00175{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00175{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m111_c00175{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00175{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);}
.m65_c00175{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00175{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00175{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17_c00175{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m97_c00175{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00175{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m44_c00175{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m113_c00175{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mec_c00175{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00175{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m79_c00175{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00175{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m110_c00175{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m29_c00175{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m3_c00175{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00175{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00175{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m41_c00175{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4_c00175{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00175{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00175{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00175{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m84_c00175{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00175{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md2_c00175{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m105_c00175{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00175{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.me9_c00175{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m0_c00175{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m43_c00175{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00175{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m127_c00175{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mee_c00175{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.md6_c00175{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.me8_c00175{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m85_c00175{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00175{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mce_c00175{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m7_c00175{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00175{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m80_c00175{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00175{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.med_c00175{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00175{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.me6_c00175{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.md4_c00175{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.meb_c00175{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00175{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m49_c00175{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00175{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m129_c00175{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00175{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m35_c00175{transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00175{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m76_c00175{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00175{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m77_c00175{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m71_c00175{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m126_c00175{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00175{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m42_c00175{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.m128_c00175{transform:matrix(0.805750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805750,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls0_c00175{letter-spacing:0.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{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__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00175{word-spacing:-3.823529px;}
.ws9_c00175{word-spacing:-1.493450px;}
.wsb_c00175{word-spacing:0.000000px;}
.wsa_c00175{word-spacing:0.421203px;}
.ws2_c00175{word-spacing:3.918919px;}
.ws1_c00175{word-spacing:5.377563px;}
.ws6_c00175{word-spacing:7.788462px;}
.ws0_c00175{word-spacing:14.089005px;}
.ws5_c00175{word-spacing:19.994638px;}
.ws3_c00175{word-spacing:25.714286px;}
.ws4_c00175{word-spacing:40.000000px;}
.ws8_c00175{word-spacing:66.105263px;}
._0_c00175{width:52.142857px;}
._2_c00175{width:53.428954px;}
._1_c00175{width:59.285714px;}
.fc0_c00175{color:transparent;}
.fs8_c00175{font-size:24.000000px;}
.fs6_c00175{font-size:30.000000px;}
.fs5_c00175{font-size:36.000000px;}
.fs4_c00175{font-size:42.000000px;}
.fs7_c00175{font-size:48.000000px;}
.fs3_c00175{font-size:54.000000px;}
.fs2_c00175{font-size:60.000000px;}
.fs0_c00175{font-size:66.000000px;}
.fs9_c00175{font-size:72.000000px;}
.fs1_c00175{font-size:78.000000px;}
.y0_c00175{bottom:0.000000px;}
.y72_c00175{bottom:12.600000px;}
.y71_c00175{bottom:175.050000px;}
.y70_c00175{bottom:193.350000px;}
.y3d_c00175{bottom:195.300000px;}
.y6f_c00175{bottom:211.350000px;}
.y3c_c00175{bottom:213.300000px;}
.y6e_c00175{bottom:228.900000px;}
.y3b_c00175{bottom:230.550000px;}
.y3a_c00175{bottom:248.250000px;}
.y6d_c00175{bottom:255.000000px;}
.y39_c00175{bottom:265.200000px;}
.y6c_c00175{bottom:273.000000px;}
.y38_c00175{bottom:282.450000px;}
.y6b_c00175{bottom:290.700000px;}
.y37_c00175{bottom:300.450000px;}
.y6a_c00175{bottom:308.400000px;}
.y36_c00175{bottom:317.400000px;}
.y69_c00175{bottom:326.400000px;}
.y35_c00175{bottom:334.650000px;}
.y68_c00175{bottom:344.100000px;}
.y34_c00175{bottom:352.350000px;}
.y67_c00175{bottom:362.100000px;}
.y33_c00175{bottom:370.050000px;}
.y66_c00175{bottom:379.800000px;}
.y32_c00175{bottom:387.750000px;}
.y65_c00175{bottom:401.700000px;}
.y31_c00175{bottom:405.750000px;}
.y64_c00175{bottom:415.050000px;}
.y30_c00175{bottom:423.000000px;}
.y63_c00175{bottom:433.050000px;}
.y2f_c00175{bottom:440.700000px;}
.y62_c00175{bottom:451.050000px;}
.y2e_c00175{bottom:458.400000px;}
.y61_c00175{bottom:468.000000px;}
.y2d_c00175{bottom:476.400000px;}
.y60_c00175{bottom:485.700000px;}
.y2c_c00175{bottom:494.100000px;}
.y5f_c00175{bottom:503.700000px;}
.y2b_c00175{bottom:511.800000px;}
.y5e_c00175{bottom:521.400000px;}
.y2a_c00175{bottom:529.500000px;}
.y5d_c00175{bottom:539.100000px;}
.y29_c00175{bottom:547.200000px;}
.y5c_c00175{bottom:557.100000px;}
.y28_c00175{bottom:565.200000px;}
.y5b_c00175{bottom:575.100000px;}
.y27_c00175{bottom:582.900000px;}
.y5a_c00175{bottom:592.800000px;}
.y4_c00175{bottom:600.450000px;}
.y59_c00175{bottom:610.800000px;}
.y25_c00175{bottom:621.750000px;}
.y58_c00175{bottom:628.500000px;}
.y24_c00175{bottom:634.650000px;}
.y57_c00175{bottom:646.500000px;}
.y23_c00175{bottom:650.250000px;}
.y22_c00175{bottom:663.150000px;}
.y56_c00175{bottom:664.200000px;}
.y1d_c00175{bottom:673.650000px;}
.y21_c00175{bottom:677.100000px;}
.y26_c00175{bottom:678.900000px;}
.y55_c00175{bottom:690.150000px;}
.y20_c00175{bottom:691.500000px;}
.y1c_c00175{bottom:707.550000px;}
.y54_c00175{bottom:708.900000px;}
.y1b_c00175{bottom:719.850000px;}
.y53_c00175{bottom:726.900000px;}
.y1a_c00175{bottom:733.950000px;}
.y1f_c00175{bottom:735.900000px;}
.y52_c00175{bottom:744.900000px;}
.y19_c00175{bottom:748.350000px;}
.y51_c00175{bottom:762.450000px;}
.y18_c00175{bottom:764.250000px;}
.y17_c00175{bottom:778.650000px;}
.y50_c00175{bottom:788.700000px;}
.y16_c00175{bottom:790.950000px;}
.y1e_c00175{bottom:805.350000px;}
.y15_c00175{bottom:806.400000px;}
.y4f_c00175{bottom:806.700000px;}
.y14_c00175{bottom:819.300000px;}
.y4e_c00175{bottom:824.700000px;}
.y13_c00175{bottom:835.500000px;}
.y4d_c00175{bottom:842.400000px;}
.y12_c00175{bottom:848.100000px;}
.y4c_c00175{bottom:864.600000px;}
.y11_c00175{bottom:864.750000px;}
.y10_c00175{bottom:882.000000px;}
.y4b_c00175{bottom:882.900000px;}
.y4a_c00175{bottom:899.850000px;}
.yf_c00175{bottom:901.500000px;}
.y49_c00175{bottom:917.850000px;}
.ye_c00175{bottom:921.600000px;}
.y48_c00175{bottom:935.550000px;}
.yd_c00175{bottom:941.100000px;}
.y47_c00175{bottom:953.250000px;}
.yc_c00175{bottom:958.500000px;}
.y46_c00175{bottom:971.250000px;}
.yb_c00175{bottom:976.200000px;}
.y45_c00175{bottom:989.250000px;}
.ya_c00175{bottom:993.900000px;}
.y44_c00175{bottom:1011.150000px;}
.y9_c00175{bottom:1015.200000px;}
.y43_c00175{bottom:1029.450000px;}
.y8_c00175{bottom:1044.000000px;}
.y42_c00175{bottom:1047.150000px;}
.y7_c00175{bottom:1063.500000px;}
.y41_c00175{bottom:1065.150000px;}
.y6_c00175{bottom:1081.800000px;}
.y40_c00175{bottom:1083.150000px;}
.y5_c00175{bottom:1099.050000px;}
.y3f_c00175{bottom:1100.850000px;}
.y3_c00175{bottom:1116.750000px;}
.y3e_c00175{bottom:1118.850000px;}
.y1_c00175{bottom:1140.900000px;}
.y2_c00175{bottom:1143.750000px;}
.ha_c00175{height:24.000000px;}
.h8_c00175{height:30.000000px;}
.h7_c00175{height:36.000000px;}
.h6_c00175{height:42.000000px;}
.h9_c00175{height:48.000000px;}
.h5_c00175{height:54.000000px;}
.h4_c00175{height:60.000000px;}
.h2_c00175{height:66.000000px;}
.hb_c00175{height:72.000000px;}
.h3_c00175{height:78.000000px;}
.h0_c00175{height:1276.920044px;}
.h1_c00175{height:1277.250000px;}
.w1_c00175{width:963.000000px;}
.w0_c00175{width:963.359985px;}
.x0_c00175{left:0.000000px;}
.x8_c00175{left:192.300000px;}
.x3_c00175{left:195.150000px;}
.x1_c00175{left:196.950000px;}
.x4e_c00175{left:198.000000px;}
.x29_c00175{left:199.050000px;}
.x52_c00175{left:212.100000px;}
.xe_c00175{left:214.200000px;}
.x17_c00175{left:215.250000px;}
.x4d_c00175{left:216.750000px;}
.x83_c00175{left:218.550000px;}
.x5a_c00175{left:226.800000px;}
.x74_c00175{left:227.850000px;}
.x2e_c00175{left:233.700000px;}
.xa1_c00175{left:237.450000px;}
.x47_c00175{left:240.750000px;}
.x53_c00175{left:241.950000px;}
.x88_c00175{left:244.050000px;}
.x18_c00175{left:245.100000px;}
.x5f_c00175{left:248.250000px;}
.x75_c00175{left:249.450000px;}
.xf_c00175{left:252.000000px;}
.x9e_c00175{left:254.250000px;}
.x39_c00175{left:255.750000px;}
.x90_c00175{left:257.850000px;}
.x4_c00175{left:258.900000px;}
.x34_c00175{left:259.950000px;}
.x54_c00175{left:261.750000px;}
.x78_c00175{left:263.550000px;}
.x89_c00175{left:264.900000px;}
.x19_c00175{left:265.950000px;}
.x62_c00175{left:267.600000px;}
.x10_c00175{left:269.700000px;}
.x84_c00175{left:271.050000px;}
.x20_c00175{left:273.150000px;}
.x79_c00175{left:274.650000px;}
.x2a_c00175{left:276.450000px;}
.x28_c00175{left:278.100000px;}
.x5b_c00175{left:280.050000px;}
.x67_c00175{left:281.550000px;}
.x9_c00175{left:283.800000px;}
.x3a_c00175{left:286.350000px;}
.x6e_c00175{left:288.150000px;}
.x45_c00175{left:289.500000px;}
.x85_c00175{left:291.600000px;}
.x97_c00175{left:292.950000px;}
.x2f_c00175{left:295.200000px;}
.x9f_c00175{left:298.500000px;}
.x35_c00175{left:302.400000px;}
.x1a_c00175{left:303.450000px;}
.x6b_c00175{left:305.100000px;}
.x48_c00175{left:306.300000px;}
.x5c_c00175{left:307.350000px;}
.x9c_c00175{left:309.000000px;}
.x95_c00175{left:312.450000px;}
.x93_c00175{left:313.800000px;}
.x21_c00175{left:315.300000px;}
.x30_c00175{left:316.800000px;}
.x11_c00175{left:318.000000px;}
.x68_c00175{left:319.050000px;}
.xa0_c00175{left:320.400000px;}
.x1b_c00175{left:322.200000px;}
.x46_c00175{left:324.000000px;}
.x9d_c00175{left:325.650000px;}
.x6f_c00175{left:327.450000px;}
.xa_c00175{left:329.850000px;}
.x5_c00175{left:330.900000px;}
.x7a_c00175{left:333.000000px;}
.x2b_c00175{left:334.050000px;}
.x36_c00175{left:335.550000px;}
.x22_c00175{left:337.650000px;}
.x4f_c00175{left:339.150000px;}
.x60_c00175{left:340.800000px;}
.x31_c00175{left:342.000000px;}
.x55_c00175{left:343.800000px;}
.x91_c00175{left:345.000000px;}
.x6c_c00175{left:347.250000px;}
.x72_c00175{left:348.900000px;}
.x1c_c00175{left:350.250000px;}
.x63_c00175{left:351.450000px;}
.x49_c00175{left:355.200000px;}
.x5d_c00175{left:357.750000px;}
.x69_c00175{left:361.500000px;}
.x73_c00175{left:363.300000px;}
.x12_c00175{left:364.500000px;}
.x7d_c00175{left:366.150000px;}
.x32_c00175{left:367.950000px;}
.x23_c00175{left:370.050000px;}
.x37_c00175{left:371.250000px;}
.x41_c00175{left:372.900000px;}
.x8b_c00175{left:375.150000px;}
.x50_c00175{left:376.200000px;}
.xb_c00175{left:378.150000px;}
.x3b_c00175{left:381.000000px;}
.x6d_c00175{left:383.550000px;}
.x56_c00175{left:387.000000px;}
.x4a_c00175{left:389.100000px;}
.x24_c00175{left:391.950000px;}
.x33_c00175{left:393.150000px;}
.x64_c00175{left:394.650000px;}
.x3c_c00175{left:395.700000px;}
.x71_c00175{left:397.500000px;}
.x4b_c00175{left:398.850000px;}
.x1d_c00175{left:401.700000px;}
.x61_c00175{left:405.300000px;}
.x65_c00175{left:410.100000px;}
.x8e_c00175{left:411.300000px;}
.x7e_c00175{left:414.450000px;}
.x8c_c00175{left:415.500000px;}
.x76_c00175{left:416.850000px;}
.x42_c00175{left:419.400000px;}
.x3d_c00175{left:420.600000px;}
.x2c_c00175{left:421.950000px;}
.x5e_c00175{left:423.000000px;}
.x6a_c00175{left:424.200000px;}
.x6_c00175{left:428.100000px;}
.x3e_c00175{left:429.300000px;}
.x25_c00175{left:433.650000px;}
.x7f_c00175{left:436.800000px;}
.xc_c00175{left:438.600000px;}
.x13_c00175{left:439.800000px;}
.x4c_c00175{left:441.750000px;}
.x43_c00175{left:443.550000px;}
.x2_c00175{left:445.350000px;}
.x7c_c00175{left:448.500000px;}
.x80_c00175{left:449.550000px;}
.x26_c00175{left:450.600000px;}
.x9a_c00175{left:451.650000px;}
.x92_c00175{left:452.700000px;}
.x1e_c00175{left:453.900000px;}
.x57_c00175{left:459.750000px;}
.x2d_c00175{left:460.800000px;}
.x14_c00175{left:462.900000px;}
.x3f_c00175{left:465.600000px;}
.x27_c00175{left:471.900000px;}
.x1f_c00175{left:474.000000px;}
.x7b_c00175{left:475.500000px;}
.x96_c00175{left:476.550000px;}
.x51_c00175{left:482.850000px;}
.x86_c00175{left:484.500000px;}
.x8f_c00175{left:486.150000px;}
.x8d_c00175{left:487.950000px;}
.x66_c00175{left:489.300000px;}
.x58_c00175{left:490.350000px;}
.x98_c00175{left:491.400000px;}
.x44_c00175{left:493.200000px;}
.xd_c00175{left:495.450000px;}
.x38_c00175{left:498.450000px;}
.x7_c00175{left:500.400000px;}
.x87_c00175{left:501.450000px;}
.x15_c00175{left:503.550000px;}
.x8a_c00175{left:505.500000px;}
.x81_c00175{left:507.900000px;}
.x99_c00175{left:510.150000px;}
.x40_c00175{left:511.350000px;}
.x82_c00175{left:513.750000px;}
.x16_c00175{left:515.100000px;}
.x59_c00175{left:517.650000px;}
.x70_c00175{left:519.000000px;}
.x77_c00175{left:520.200000px;}
.x9b_c00175{left:523.950000px;}
.x94_c00175{left:530.550000px;}
.x14c_c00175{left:532.350000px;}
.xa2_c00175{left:551.100000px;}
.xcf_c00175{left:552.300000px;}
.xf4_c00175{left:553.650000px;}
.x149_c00175{left:554.700000px;}
.x104_c00175{left:564.750000px;}
.xb4_c00175{left:567.900000px;}
.xab_c00175{left:569.100000px;}
.xef_c00175{left:570.450000px;}
.x132_c00175{left:571.800000px;}
.x142_c00175{left:573.450000px;}
.x13c_c00175{left:584.400000px;}
.x133_c00175{left:587.700000px;}
.x12b_c00175{left:590.400000px;}
.x11a_c00175{left:592.350000px;}
.xc2_c00175{left:595.050000px;}
.x120_c00175{left:598.500000px;}
.xff_c00175{left:600.000000px;}
.xa3_c00175{left:601.200000px;}
.xbb_c00175{left:602.250000px;}
.xc9_c00175{left:604.200000px;}
.xe4_c00175{left:605.550000px;}
.xf5_c00175{left:607.950000px;}
.xd2_c00175{left:609.150000px;}
.x147_c00175{left:611.400000px;}
.x114_c00175{left:613.050000px;}
.xac_c00175{left:614.100000px;}
.x100_c00175{left:615.450000px;}
.xe9_c00175{left:618.000000px;}
.x126_c00175{left:619.350000px;}
.xf8_c00175{left:620.700000px;}
.xa4_c00175{left:621.750000px;}
.xc3_c00175{left:622.800000px;}
.x134_c00175{left:624.450000px;}
.x13e_c00175{left:627.600000px;}
.xb5_c00175{left:628.800000px;}
.x11d_c00175{left:630.450000px;}
.x10f_c00175{left:631.800000px;}
.xf6_c00175{left:632.850000px;}
.xce_c00175{left:634.800000px;}
.x148_c00175{left:636.900000px;}
.xea_c00175{left:639.600000px;}
.x127_c00175{left:640.950000px;}
.xde_c00175{left:644.100000px;}
.xf0_c00175{left:645.450000px;}
.x115_c00175{left:646.500000px;}
.x101_c00175{left:648.150000px;}
.x125_c00175{left:649.350000px;}
.x121_c00175{left:650.700000px;}
.xc4_c00175{left:652.350000px;}
.xf9_c00175{left:655.650000px;}
.xe5_c00175{left:658.050000px;}
.xca_c00175{left:660.000000px;}
.x110_c00175{left:661.650000px;}
.x108_c00175{left:664.500000px;}
.x12c_c00175{left:666.000000px;}
.x105_c00175{left:667.050000px;}
.xa5_c00175{left:670.650000px;}
.xd0_c00175{left:672.150000px;}
.xd3_c00175{left:677.250000px;}
.x144_c00175{left:679.050000px;}
.x11b_c00175{left:681.600000px;}
.x109_c00175{left:683.550000px;}
.xad_c00175{left:684.600000px;}
.xdf_c00175{left:685.800000px;}
.xbc_c00175{left:686.850000px;}
.x11e_c00175{left:688.050000px;}
.xb6_c00175{left:689.700000px;}
.xf1_c00175{left:691.200000px;}
.x13b_c00175{left:692.700000px;}
.xd4_c00175{left:694.950000px;}
.x128_c00175{left:699.150000px;}
.xb7_c00175{left:701.550000px;}
.x116_c00175{left:704.400000px;}
.x122_c00175{left:706.200000px;}
.xe0_c00175{left:707.700000px;}
.xfa_c00175{left:709.200000px;}
.xd5_c00175{left:711.150000px;}
.x102_c00175{left:712.650000px;}
.x118_c00175{left:714.150000px;}
.xfc_c00175{left:715.950000px;}
.x10a_c00175{left:718.500000px;}
.xd9_c00175{left:720.150000px;}
.x13f_c00175{left:723.600000px;}
.x11f_c00175{left:725.550000px;}
.xae_c00175{left:726.750000px;}
.x138_c00175{left:727.800000px;}
.xd6_c00175{left:729.450000px;}
.xc5_c00175{left:730.500000px;}
.xcb_c00175{left:732.000000px;}
.x145_c00175{left:733.050000px;}
.xfd_c00175{left:734.250000px;}
.xa6_c00175{left:735.450000px;}
.xe6_c00175{left:737.550000px;}
.x130_c00175{left:739.500000px;}
.x111_c00175{left:740.850000px;}
.x106_c00175{left:742.350000px;}
.xfb_c00175{left:745.200000px;}
.xc6_c00175{left:746.400000px;}
.x117_c00175{left:748.650000px;}
.x129_c00175{left:751.350000px;}
.x14a_c00175{left:753.000000px;}
.xeb_c00175{left:754.050000px;}
.xda_c00175{left:757.950000px;}
.xe7_c00175{left:759.900000px;}
.x146_c00175{left:761.100000px;}
.xe1_c00175{left:762.450000px;}
.x140_c00175{left:763.500000px;}
.x136_c00175{left:764.550000px;}
.x103_c00175{left:765.600000px;}
.x10b_c00175{left:767.850000px;}
.xbd_c00175{left:769.350000px;}
.xf2_c00175{left:772.950000px;}
.x139_c00175{left:776.850000px;}
.x11c_c00175{left:778.800000px;}
.xaf_c00175{left:780.000000px;}
.x112_c00175{left:782.250000px;}
.x107_c00175{left:783.450000px;}
.xc7_c00175{left:785.700000px;}
.xec_c00175{left:786.750000px;}
.xbe_c00175{left:788.850000px;}
.xb8_c00175{left:790.500000px;}
.xd1_c00175{left:792.750000px;}
.xa7_c00175{left:794.550000px;}
.xcc_c00175{left:797.850000px;}
.x14b_c00175{left:799.200000px;}
.x10d_c00175{left:800.700000px;}
.x13a_c00175{left:801.750000px;}
.xd7_c00175{left:804.750000px;}
.x12f_c00175{left:808.200000px;}
.x143_c00175{left:810.600000px;}
.xed_c00175{left:813.000000px;}
.x10c_c00175{left:814.350000px;}
.xb0_c00175{left:816.300000px;}
.xa8_c00175{left:817.650000px;}
.xbf_c00175{left:819.450000px;}
.xe8_c00175{left:821.100000px;}
.x12d_c00175{left:822.600000px;}
.x131_c00175{left:823.800000px;}
.xe2_c00175{left:825.450000px;}
.x123_c00175{left:827.100000px;}
.xdb_c00175{left:829.050000px;}
.xb9_c00175{left:830.400000px;}
.x10e_c00175{left:833.100000px;}
.xb1_c00175{left:835.050000px;}
.xd8_c00175{left:836.850000px;}
.x12a_c00175{left:838.800000px;}
.xba_c00175{left:840.150000px;}
.x119_c00175{left:841.500000px;}
.xfe_c00175{left:842.850000px;}
.xa9_c00175{left:843.900000px;}
.xcd_c00175{left:846.150000px;}
.xc0_c00175{left:847.500000px;}
.xdc_c00175{left:848.550000px;}
.xf7_c00175{left:850.050000px;}
.x113_c00175{left:851.400000px;}
.x141_c00175{left:852.450000px;}
.x124_c00175{left:853.800000px;}
.xb2_c00175{left:855.600000px;}
.xee_c00175{left:859.500000px;}
.xe3_c00175{left:861.450000px;}
.x135_c00175{left:864.150000px;}
.xc8_c00175{left:865.200000px;}
.x12e_c00175{left:867.600000px;}
.xaa_c00175{left:869.400000px;}
.xf3_c00175{left:870.900000px;}
.x137_c00175{left:872.250000px;}
.xc1_c00175{left:873.750000px;}
.xb3_c00175{left:875.700000px;}
.xdd_c00175{left:877.050000px;}
.x13d_c00175{left:878.850000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws7_c00175{word-spacing:-3.398693pt;}
.ws9_c00175{word-spacing:-1.327511pt;}
.wsb_c00175{word-spacing:0.000000pt;}
.wsa_c00175{word-spacing:0.374403pt;}
.ws2_c00175{word-spacing:3.483483pt;}
.ws1_c00175{word-spacing:4.780056pt;}
.ws6_c00175{word-spacing:6.923077pt;}
.ws0_c00175{word-spacing:12.523560pt;}
.ws5_c00175{word-spacing:17.773012pt;}
.ws3_c00175{word-spacing:22.857143pt;}
.ws4_c00175{word-spacing:35.555556pt;}
.ws8_c00175{word-spacing:58.760234pt;}
._0_c00175{width:46.349206pt;}
._2_c00175{width:47.492404pt;}
._1_c00175{width:52.698413pt;}
.fs8_c00175{font-size:21.333333pt;}
.fs6_c00175{font-size:26.666667pt;}
.fs5_c00175{font-size:32.000000pt;}
.fs4_c00175{font-size:37.333333pt;}
.fs7_c00175{font-size:42.666667pt;}
.fs3_c00175{font-size:48.000000pt;}
.fs2_c00175{font-size:53.333333pt;}
.fs0_c00175{font-size:58.666667pt;}
.fs9_c00175{font-size:64.000000pt;}
.fs1_c00175{font-size:69.333333pt;}
.y0_c00175{bottom:0.000000pt;}
.y72_c00175{bottom:11.200000pt;}
.y71_c00175{bottom:155.600000pt;}
.y70_c00175{bottom:171.866667pt;}
.y3d_c00175{bottom:173.600000pt;}
.y6f_c00175{bottom:187.866667pt;}
.y3c_c00175{bottom:189.600000pt;}
.y6e_c00175{bottom:203.466667pt;}
.y3b_c00175{bottom:204.933333pt;}
.y3a_c00175{bottom:220.666667pt;}
.y6d_c00175{bottom:226.666667pt;}
.y39_c00175{bottom:235.733333pt;}
.y6c_c00175{bottom:242.666667pt;}
.y38_c00175{bottom:251.066667pt;}
.y6b_c00175{bottom:258.400000pt;}
.y37_c00175{bottom:267.066667pt;}
.y6a_c00175{bottom:274.133333pt;}
.y36_c00175{bottom:282.133333pt;}
.y69_c00175{bottom:290.133333pt;}
.y35_c00175{bottom:297.466667pt;}
.y68_c00175{bottom:305.866667pt;}
.y34_c00175{bottom:313.200000pt;}
.y67_c00175{bottom:321.866667pt;}
.y33_c00175{bottom:328.933333pt;}
.y66_c00175{bottom:337.600000pt;}
.y32_c00175{bottom:344.666667pt;}
.y65_c00175{bottom:357.066667pt;}
.y31_c00175{bottom:360.666667pt;}
.y64_c00175{bottom:368.933333pt;}
.y30_c00175{bottom:376.000000pt;}
.y63_c00175{bottom:384.933333pt;}
.y2f_c00175{bottom:391.733333pt;}
.y62_c00175{bottom:400.933333pt;}
.y2e_c00175{bottom:407.466667pt;}
.y61_c00175{bottom:416.000000pt;}
.y2d_c00175{bottom:423.466667pt;}
.y60_c00175{bottom:431.733333pt;}
.y2c_c00175{bottom:439.200000pt;}
.y5f_c00175{bottom:447.733333pt;}
.y2b_c00175{bottom:454.933333pt;}
.y5e_c00175{bottom:463.466667pt;}
.y2a_c00175{bottom:470.666667pt;}
.y5d_c00175{bottom:479.200000pt;}
.y29_c00175{bottom:486.400000pt;}
.y5c_c00175{bottom:495.200000pt;}
.y28_c00175{bottom:502.400000pt;}
.y5b_c00175{bottom:511.200000pt;}
.y27_c00175{bottom:518.133333pt;}
.y5a_c00175{bottom:526.933333pt;}
.y4_c00175{bottom:533.733333pt;}
.y59_c00175{bottom:542.933333pt;}
.y25_c00175{bottom:552.666667pt;}
.y58_c00175{bottom:558.666667pt;}
.y24_c00175{bottom:564.133333pt;}
.y57_c00175{bottom:574.666667pt;}
.y23_c00175{bottom:578.000000pt;}
.y22_c00175{bottom:589.466667pt;}
.y56_c00175{bottom:590.400000pt;}
.y1d_c00175{bottom:598.800000pt;}
.y21_c00175{bottom:601.866667pt;}
.y26_c00175{bottom:603.466667pt;}
.y55_c00175{bottom:613.466667pt;}
.y20_c00175{bottom:614.666667pt;}
.y1c_c00175{bottom:628.933333pt;}
.y54_c00175{bottom:630.133333pt;}
.y1b_c00175{bottom:639.866667pt;}
.y53_c00175{bottom:646.133333pt;}
.y1a_c00175{bottom:652.400000pt;}
.y1f_c00175{bottom:654.133333pt;}
.y52_c00175{bottom:662.133333pt;}
.y19_c00175{bottom:665.200000pt;}
.y51_c00175{bottom:677.733333pt;}
.y18_c00175{bottom:679.333333pt;}
.y17_c00175{bottom:692.133333pt;}
.y50_c00175{bottom:701.066667pt;}
.y16_c00175{bottom:703.066667pt;}
.y1e_c00175{bottom:715.866667pt;}
.y15_c00175{bottom:716.800000pt;}
.y4f_c00175{bottom:717.066667pt;}
.y14_c00175{bottom:728.266667pt;}
.y4e_c00175{bottom:733.066667pt;}
.y13_c00175{bottom:742.666667pt;}
.y4d_c00175{bottom:748.800000pt;}
.y12_c00175{bottom:753.866667pt;}
.y4c_c00175{bottom:768.533333pt;}
.y11_c00175{bottom:768.666667pt;}
.y10_c00175{bottom:784.000000pt;}
.y4b_c00175{bottom:784.800000pt;}
.y4a_c00175{bottom:799.866667pt;}
.yf_c00175{bottom:801.333333pt;}
.y49_c00175{bottom:815.866667pt;}
.ye_c00175{bottom:819.200000pt;}
.y48_c00175{bottom:831.600000pt;}
.yd_c00175{bottom:836.533333pt;}
.y47_c00175{bottom:847.333333pt;}
.yc_c00175{bottom:852.000000pt;}
.y46_c00175{bottom:863.333333pt;}
.yb_c00175{bottom:867.733333pt;}
.y45_c00175{bottom:879.333333pt;}
.ya_c00175{bottom:883.466667pt;}
.y44_c00175{bottom:898.800000pt;}
.y9_c00175{bottom:902.400000pt;}
.y43_c00175{bottom:915.066667pt;}
.y8_c00175{bottom:928.000000pt;}
.y42_c00175{bottom:930.800000pt;}
.y7_c00175{bottom:945.333333pt;}
.y41_c00175{bottom:946.800000pt;}
.y6_c00175{bottom:961.600000pt;}
.y40_c00175{bottom:962.800000pt;}
.y5_c00175{bottom:976.933333pt;}
.y3f_c00175{bottom:978.533333pt;}
.y3_c00175{bottom:992.666667pt;}
.y3e_c00175{bottom:994.533333pt;}
.y1_c00175{bottom:1014.133333pt;}
.y2_c00175{bottom:1016.666667pt;}
.ha_c00175{height:21.333333pt;}
.h8_c00175{height:26.666667pt;}
.h7_c00175{height:32.000000pt;}
.h6_c00175{height:37.333333pt;}
.h9_c00175{height:42.666667pt;}
.h5_c00175{height:48.000000pt;}
.h4_c00175{height:53.333333pt;}
.h2_c00175{height:58.666667pt;}
.hb_c00175{height:64.000000pt;}
.h3_c00175{height:69.333333pt;}
.h0_c00175{height:1135.040039pt;}
.h1_c00175{height:1135.333333pt;}
.w1_c00175{width:856.000000pt;}
.w0_c00175{width:856.319987pt;}
.x0_c00175{left:0.000000pt;}
.x8_c00175{left:170.933333pt;}
.x3_c00175{left:173.466667pt;}
.x1_c00175{left:175.066667pt;}
.x4e_c00175{left:176.000000pt;}
.x29_c00175{left:176.933333pt;}
.x52_c00175{left:188.533333pt;}
.xe_c00175{left:190.400000pt;}
.x17_c00175{left:191.333333pt;}
.x4d_c00175{left:192.666667pt;}
.x83_c00175{left:194.266667pt;}
.x5a_c00175{left:201.600000pt;}
.x74_c00175{left:202.533333pt;}
.x2e_c00175{left:207.733333pt;}
.xa1_c00175{left:211.066667pt;}
.x47_c00175{left:214.000000pt;}
.x53_c00175{left:215.066667pt;}
.x88_c00175{left:216.933333pt;}
.x18_c00175{left:217.866667pt;}
.x5f_c00175{left:220.666667pt;}
.x75_c00175{left:221.733333pt;}
.xf_c00175{left:224.000000pt;}
.x9e_c00175{left:226.000000pt;}
.x39_c00175{left:227.333333pt;}
.x90_c00175{left:229.200000pt;}
.x4_c00175{left:230.133333pt;}
.x34_c00175{left:231.066667pt;}
.x54_c00175{left:232.666667pt;}
.x78_c00175{left:234.266667pt;}
.x89_c00175{left:235.466667pt;}
.x19_c00175{left:236.400000pt;}
.x62_c00175{left:237.866667pt;}
.x10_c00175{left:239.733333pt;}
.x84_c00175{left:240.933333pt;}
.x20_c00175{left:242.800000pt;}
.x79_c00175{left:244.133333pt;}
.x2a_c00175{left:245.733333pt;}
.x28_c00175{left:247.200000pt;}
.x5b_c00175{left:248.933333pt;}
.x67_c00175{left:250.266667pt;}
.x9_c00175{left:252.266667pt;}
.x3a_c00175{left:254.533333pt;}
.x6e_c00175{left:256.133333pt;}
.x45_c00175{left:257.333333pt;}
.x85_c00175{left:259.200000pt;}
.x97_c00175{left:260.400000pt;}
.x2f_c00175{left:262.400000pt;}
.x9f_c00175{left:265.333333pt;}
.x35_c00175{left:268.800000pt;}
.x1a_c00175{left:269.733333pt;}
.x6b_c00175{left:271.200000pt;}
.x48_c00175{left:272.266667pt;}
.x5c_c00175{left:273.200000pt;}
.x9c_c00175{left:274.666667pt;}
.x95_c00175{left:277.733333pt;}
.x93_c00175{left:278.933333pt;}
.x21_c00175{left:280.266667pt;}
.x30_c00175{left:281.600000pt;}
.x11_c00175{left:282.666667pt;}
.x68_c00175{left:283.600000pt;}
.xa0_c00175{left:284.800000pt;}
.x1b_c00175{left:286.400000pt;}
.x46_c00175{left:288.000000pt;}
.x9d_c00175{left:289.466667pt;}
.x6f_c00175{left:291.066667pt;}
.xa_c00175{left:293.200000pt;}
.x5_c00175{left:294.133333pt;}
.x7a_c00175{left:296.000000pt;}
.x2b_c00175{left:296.933333pt;}
.x36_c00175{left:298.266667pt;}
.x22_c00175{left:300.133333pt;}
.x4f_c00175{left:301.466667pt;}
.x60_c00175{left:302.933333pt;}
.x31_c00175{left:304.000000pt;}
.x55_c00175{left:305.600000pt;}
.x91_c00175{left:306.666667pt;}
.x6c_c00175{left:308.666667pt;}
.x72_c00175{left:310.133333pt;}
.x1c_c00175{left:311.333333pt;}
.x63_c00175{left:312.400000pt;}
.x49_c00175{left:315.733333pt;}
.x5d_c00175{left:318.000000pt;}
.x69_c00175{left:321.333333pt;}
.x73_c00175{left:322.933333pt;}
.x12_c00175{left:324.000000pt;}
.x7d_c00175{left:325.466667pt;}
.x32_c00175{left:327.066667pt;}
.x23_c00175{left:328.933333pt;}
.x37_c00175{left:330.000000pt;}
.x41_c00175{left:331.466667pt;}
.x8b_c00175{left:333.466667pt;}
.x50_c00175{left:334.400000pt;}
.xb_c00175{left:336.133333pt;}
.x3b_c00175{left:338.666667pt;}
.x6d_c00175{left:340.933333pt;}
.x56_c00175{left:344.000000pt;}
.x4a_c00175{left:345.866667pt;}
.x24_c00175{left:348.400000pt;}
.x33_c00175{left:349.466667pt;}
.x64_c00175{left:350.800000pt;}
.x3c_c00175{left:351.733333pt;}
.x71_c00175{left:353.333333pt;}
.x4b_c00175{left:354.533333pt;}
.x1d_c00175{left:357.066667pt;}
.x61_c00175{left:360.266667pt;}
.x65_c00175{left:364.533333pt;}
.x8e_c00175{left:365.600000pt;}
.x7e_c00175{left:368.400000pt;}
.x8c_c00175{left:369.333333pt;}
.x76_c00175{left:370.533333pt;}
.x42_c00175{left:372.800000pt;}
.x3d_c00175{left:373.866667pt;}
.x2c_c00175{left:375.066667pt;}
.x5e_c00175{left:376.000000pt;}
.x6a_c00175{left:377.066667pt;}
.x6_c00175{left:380.533333pt;}
.x3e_c00175{left:381.600000pt;}
.x25_c00175{left:385.466667pt;}
.x7f_c00175{left:388.266667pt;}
.xc_c00175{left:389.866667pt;}
.x13_c00175{left:390.933333pt;}
.x4c_c00175{left:392.666667pt;}
.x43_c00175{left:394.266667pt;}
.x2_c00175{left:395.866667pt;}
.x7c_c00175{left:398.666667pt;}
.x80_c00175{left:399.600000pt;}
.x26_c00175{left:400.533333pt;}
.x9a_c00175{left:401.466667pt;}
.x92_c00175{left:402.400000pt;}
.x1e_c00175{left:403.466667pt;}
.x57_c00175{left:408.666667pt;}
.x2d_c00175{left:409.600000pt;}
.x14_c00175{left:411.466667pt;}
.x3f_c00175{left:413.866667pt;}
.x27_c00175{left:419.466667pt;}
.x1f_c00175{left:421.333333pt;}
.x7b_c00175{left:422.666667pt;}
.x96_c00175{left:423.600000pt;}
.x51_c00175{left:429.200000pt;}
.x86_c00175{left:430.666667pt;}
.x8f_c00175{left:432.133333pt;}
.x8d_c00175{left:433.733333pt;}
.x66_c00175{left:434.933333pt;}
.x58_c00175{left:435.866667pt;}
.x98_c00175{left:436.800000pt;}
.x44_c00175{left:438.400000pt;}
.xd_c00175{left:440.400000pt;}
.x38_c00175{left:443.066667pt;}
.x7_c00175{left:444.800000pt;}
.x87_c00175{left:445.733333pt;}
.x15_c00175{left:447.600000pt;}
.x8a_c00175{left:449.333333pt;}
.x81_c00175{left:451.466667pt;}
.x99_c00175{left:453.466667pt;}
.x40_c00175{left:454.533333pt;}
.x82_c00175{left:456.666667pt;}
.x16_c00175{left:457.866667pt;}
.x59_c00175{left:460.133333pt;}
.x70_c00175{left:461.333333pt;}
.x77_c00175{left:462.400000pt;}
.x9b_c00175{left:465.733333pt;}
.x94_c00175{left:471.600000pt;}
.x14c_c00175{left:473.200000pt;}
.xa2_c00175{left:489.866667pt;}
.xcf_c00175{left:490.933333pt;}
.xf4_c00175{left:492.133333pt;}
.x149_c00175{left:493.066667pt;}
.x104_c00175{left:502.000000pt;}
.xb4_c00175{left:504.800000pt;}
.xab_c00175{left:505.866667pt;}
.xef_c00175{left:507.066667pt;}
.x132_c00175{left:508.266667pt;}
.x142_c00175{left:509.733333pt;}
.x13c_c00175{left:519.466667pt;}
.x133_c00175{left:522.400000pt;}
.x12b_c00175{left:524.800000pt;}
.x11a_c00175{left:526.533333pt;}
.xc2_c00175{left:528.933333pt;}
.x120_c00175{left:532.000000pt;}
.xff_c00175{left:533.333333pt;}
.xa3_c00175{left:534.400000pt;}
.xbb_c00175{left:535.333333pt;}
.xc9_c00175{left:537.066667pt;}
.xe4_c00175{left:538.266667pt;}
.xf5_c00175{left:540.400000pt;}
.xd2_c00175{left:541.466667pt;}
.x147_c00175{left:543.466667pt;}
.x114_c00175{left:544.933333pt;}
.xac_c00175{left:545.866667pt;}
.x100_c00175{left:547.066667pt;}
.xe9_c00175{left:549.333333pt;}
.x126_c00175{left:550.533333pt;}
.xf8_c00175{left:551.733333pt;}
.xa4_c00175{left:552.666667pt;}
.xc3_c00175{left:553.600000pt;}
.x134_c00175{left:555.066667pt;}
.x13e_c00175{left:557.866667pt;}
.xb5_c00175{left:558.933333pt;}
.x11d_c00175{left:560.400000pt;}
.x10f_c00175{left:561.600000pt;}
.xf6_c00175{left:562.533333pt;}
.xce_c00175{left:564.266667pt;}
.x148_c00175{left:566.133333pt;}
.xea_c00175{left:568.533333pt;}
.x127_c00175{left:569.733333pt;}
.xde_c00175{left:572.533333pt;}
.xf0_c00175{left:573.733333pt;}
.x115_c00175{left:574.666667pt;}
.x101_c00175{left:576.133333pt;}
.x125_c00175{left:577.200000pt;}
.x121_c00175{left:578.400000pt;}
.xc4_c00175{left:579.866667pt;}
.xf9_c00175{left:582.800000pt;}
.xe5_c00175{left:584.933333pt;}
.xca_c00175{left:586.666667pt;}
.x110_c00175{left:588.133333pt;}
.x108_c00175{left:590.666667pt;}
.x12c_c00175{left:592.000000pt;}
.x105_c00175{left:592.933333pt;}
.xa5_c00175{left:596.133333pt;}
.xd0_c00175{left:597.466667pt;}
.xd3_c00175{left:602.000000pt;}
.x144_c00175{left:603.600000pt;}
.x11b_c00175{left:605.866667pt;}
.x109_c00175{left:607.600000pt;}
.xad_c00175{left:608.533333pt;}
.xdf_c00175{left:609.600000pt;}
.xbc_c00175{left:610.533333pt;}
.x11e_c00175{left:611.600000pt;}
.xb6_c00175{left:613.066667pt;}
.xf1_c00175{left:614.400000pt;}
.x13b_c00175{left:615.733333pt;}
.xd4_c00175{left:617.733333pt;}
.x128_c00175{left:621.466667pt;}
.xb7_c00175{left:623.600000pt;}
.x116_c00175{left:626.133333pt;}
.x122_c00175{left:627.733333pt;}
.xe0_c00175{left:629.066667pt;}
.xfa_c00175{left:630.400000pt;}
.xd5_c00175{left:632.133333pt;}
.x102_c00175{left:633.466667pt;}
.x118_c00175{left:634.800000pt;}
.xfc_c00175{left:636.400000pt;}
.x10a_c00175{left:638.666667pt;}
.xd9_c00175{left:640.133333pt;}
.x13f_c00175{left:643.200000pt;}
.x11f_c00175{left:644.933333pt;}
.xae_c00175{left:646.000000pt;}
.x138_c00175{left:646.933333pt;}
.xd6_c00175{left:648.400000pt;}
.xc5_c00175{left:649.333333pt;}
.xcb_c00175{left:650.666667pt;}
.x145_c00175{left:651.600000pt;}
.xfd_c00175{left:652.666667pt;}
.xa6_c00175{left:653.733333pt;}
.xe6_c00175{left:655.600000pt;}
.x130_c00175{left:657.333333pt;}
.x111_c00175{left:658.533333pt;}
.x106_c00175{left:659.866667pt;}
.xfb_c00175{left:662.400000pt;}
.xc6_c00175{left:663.466667pt;}
.x117_c00175{left:665.466667pt;}
.x129_c00175{left:667.866667pt;}
.x14a_c00175{left:669.333333pt;}
.xeb_c00175{left:670.266667pt;}
.xda_c00175{left:673.733333pt;}
.xe7_c00175{left:675.466667pt;}
.x146_c00175{left:676.533333pt;}
.xe1_c00175{left:677.733333pt;}
.x140_c00175{left:678.666667pt;}
.x136_c00175{left:679.600000pt;}
.x103_c00175{left:680.533333pt;}
.x10b_c00175{left:682.533333pt;}
.xbd_c00175{left:683.866667pt;}
.xf2_c00175{left:687.066667pt;}
.x139_c00175{left:690.533333pt;}
.x11c_c00175{left:692.266667pt;}
.xaf_c00175{left:693.333333pt;}
.x112_c00175{left:695.333333pt;}
.x107_c00175{left:696.400000pt;}
.xc7_c00175{left:698.400000pt;}
.xec_c00175{left:699.333333pt;}
.xbe_c00175{left:701.200000pt;}
.xb8_c00175{left:702.666667pt;}
.xd1_c00175{left:704.666667pt;}
.xa7_c00175{left:706.266667pt;}
.xcc_c00175{left:709.200000pt;}
.x14b_c00175{left:710.400000pt;}
.x10d_c00175{left:711.733333pt;}
.x13a_c00175{left:712.666667pt;}
.xd7_c00175{left:715.333333pt;}
.x12f_c00175{left:718.400000pt;}
.x143_c00175{left:720.533333pt;}
.xed_c00175{left:722.666667pt;}
.x10c_c00175{left:723.866667pt;}
.xb0_c00175{left:725.600000pt;}
.xa8_c00175{left:726.800000pt;}
.xbf_c00175{left:728.400000pt;}
.xe8_c00175{left:729.866667pt;}
.x12d_c00175{left:731.200000pt;}
.x131_c00175{left:732.266667pt;}
.xe2_c00175{left:733.733333pt;}
.x123_c00175{left:735.200000pt;}
.xdb_c00175{left:736.933333pt;}
.xb9_c00175{left:738.133333pt;}
.x10e_c00175{left:740.533333pt;}
.xb1_c00175{left:742.266667pt;}
.xd8_c00175{left:743.866667pt;}
.x12a_c00175{left:745.600000pt;}
.xba_c00175{left:746.800000pt;}
.x119_c00175{left:748.000000pt;}
.xfe_c00175{left:749.200000pt;}
.xa9_c00175{left:750.133333pt;}
.xcd_c00175{left:752.133333pt;}
.xc0_c00175{left:753.333333pt;}
.xdc_c00175{left:754.266667pt;}
.xf7_c00175{left:755.600000pt;}
.x113_c00175{left:756.800000pt;}
.x141_c00175{left:757.733333pt;}
.x124_c00175{left:758.933333pt;}
.xb2_c00175{left:760.533333pt;}
.xee_c00175{left:764.000000pt;}
.xe3_c00175{left:765.733333pt;}
.x135_c00175{left:768.133333pt;}
.xc8_c00175{left:769.066667pt;}
.x12e_c00175{left:771.200000pt;}
.xaa_c00175{left:772.800000pt;}
.xf3_c00175{left:774.133333pt;}
.x137_c00175{left:775.333333pt;}
.xc1_c00175{left:776.666667pt;}
.xb3_c00175{left:778.400000pt;}
.xdd_c00175{left:779.600000pt;}
.x13d_c00175{left:781.200000pt;}
}





/* 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_c00176 {
    display:none;
  }
  .loading-indicator_c00176.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00176 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_c00176 { 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_c00176" -> "#page-container .classname_c00176")
 */
.pf_c00176 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00176 { /* 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_c00176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00176 { /* 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_c00176 { /* 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_c00176 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00176 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00176 {overflow:visible;}
  }
}
.c_c00176 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00176 { /* 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_c00176:after { /* webkit #35443 */
  content: '';
}
.t_c00176:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00176 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 */
}
.__c00176 { /* 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_c00176 { /* info for Javascript */
  display:none;
}
.l_c00176 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00176 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00176 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00176: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_c00176 {
    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_c00176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00176.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_c00176 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00176;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.000000;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;}
.m31_c00176{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00176{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m107_c00176{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m80_c00176{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00176{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m54_c00176{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.me7_c00176{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m102_c00176{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00176{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00176{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m12_c00176{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m97_c00176{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m71_c00176{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m25_c00176{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m16_c00176{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m106_c00176{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.me1_c00176{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00176{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m82_c00176{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.maf_c00176{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00176{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m99_c00176{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.maa_c00176{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00176{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00176{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m94_c00176{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00176{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md7_c00176{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00176{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m98_c00176{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m18_c00176{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m105_c00176{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m63_c00176{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00176{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00176{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00176{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00176{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mca_c00176{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m34_c00176{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md6_c00176{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00176{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m43_c00176{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m58_c00176{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m50_c00176{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00176{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00176{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00176{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md4_c00176{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m29_c00176{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m60_c00176{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00176{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me2_c00176{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00176{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00176{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m40_c00176{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m52_c00176{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m85_c00176{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00176{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00176{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00176{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00176{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00176{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m49_c00176{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m42_c00176{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00176{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m41_c00176{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m88_c00176{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m66_c00176{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00176{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00176{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m24_c00176{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m45_c00176{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m33_c00176{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m62_c00176{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00176{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mde_c00176{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m32_c00176{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m77_c00176{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m69_c00176{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00176{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m5_c00176{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00176{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m65_c00176{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00176{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00176{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m61_c00176{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mee_c00176{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m7_c00176{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00176{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m26_c00176{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m84_c00176{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m95_c00176{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m92_c00176{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00176{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00176{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m75_c00176{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m78_c00176{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m96_c00176{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me6_c00176{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00176{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m23_c00176{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb_c00176{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m17_c00176{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00176{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00176{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00176{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m59_c00176{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m56_c00176{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00176{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00176{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m79_c00176{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m8_c00176{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00176{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00176{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md8_c00176{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m53_c00176{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m36_c00176{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m30_c00176{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00176{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00176{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00176{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.med_c00176{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00176{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00176{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m35_c00176{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m57_c00176{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00176{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mda_c00176{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md9_c00176{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m103_c00176{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00176{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00176{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m46_c00176{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00176{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m44_c00176{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m48_c00176{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m81_c00176{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00176{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00176{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me0_c00176{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00176{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md2_c00176{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md5_c00176{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00176{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00176{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m83_c00176{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m38_c00176{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m64_c00176{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m22_c00176{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00176{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m11_c00176{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m10_c00176{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00176{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00176{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00176{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00176{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m37_c00176{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.me5_c00176{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me9_c00176{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me8_c00176{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00176{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mff_c00176{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00176{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf_c00176{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mc_c00176{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me4_c00176{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m39_c00176{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mef_c00176{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md3_c00176{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m67_c00176{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m100_c00176{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m51_c00176{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m70_c00176{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mec_c00176{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m55_c00176{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.meb_c00176{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00176{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m47_c00176{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00176{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m76_c00176{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m19_c00176{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00176{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00176{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m89_c00176{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma_c00176{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00176{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m104_c00176{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00176{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4_c00176{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00176{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00176{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00176{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m91_c00176{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m68_c00176{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00176{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00176{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00176{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m93_c00176{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00176{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00176{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m86_c00176{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00176{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md1_c00176{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md0_c00176{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00176{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m21_c00176{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mae_c00176{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.md_c00176{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00176{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.me3_c00176{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00176{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9_c00176{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m72_c00176{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00176{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00176{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m73_c00176{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m101_c00176{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mba_c00176{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00176{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);}
.mc3_c00176{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20_c00176{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me_c00176{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00176{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00176{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00176{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00176{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mea_c00176{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00176{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00176{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m74_c00176{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00176{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m90_c00176{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m6_c00176{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00176{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m1_c00176{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00176{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mac_c00176{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00176{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00176{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00176{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00176{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00176{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00176{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m3_c00176{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00176{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00176{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.mab_c00176{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mce_c00176{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m87_c00176{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mad_c00176{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00176{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00176{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00176{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m27_c00176{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00176{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00176{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m2_c00176{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m13_c00176{transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);}
.m14_c00176{transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);}
.m28_c00176{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m15_c00176{transform:matrix(0.394500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394500,0.000000,0.000000,0.250000,0,0);}
.m108_c00176{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c00176{transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00176{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00176{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls0_c00176{letter-spacing:0.000000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{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__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00176{word-spacing:-11.725086px;}
.ws1_c00176{word-spacing:-3.735849px;}
.ws7_c00176{word-spacing:0.000000px;}
.ws0_c00176{word-spacing:9.355795px;}
.ws5_c00176{word-spacing:12.960159px;}
.ws6_c00176{word-spacing:14.687500px;}
.ws2_c00176{word-spacing:21.529412px;}
.ws3_c00176{word-spacing:27.145553px;}
._0_c00176{width:36.695418px;}
.fc0_c00176{color:transparent;}
.fs3_c00176{font-size:30.000000px;}
.fs5_c00176{font-size:54.000000px;}
.fs2_c00176{font-size:60.000000px;}
.fs1_c00176{font-size:66.000000px;}
.fs4_c00176{font-size:72.000000px;}
.fs0_c00176{font-size:78.000000px;}
.y0_c00176{bottom:0.000000px;}
.y66_c00176{bottom:168.150000px;}
.y65_c00176{bottom:184.200000px;}
.y31_c00176{bottom:185.400000px;}
.y64_c00176{bottom:198.600000px;}
.y30_c00176{bottom:203.400000px;}
.y63_c00176{bottom:209.100000px;}
.y62_c00176{bottom:213.450000px;}
.y2f_c00176{bottom:221.400000px;}
.y61_c00176{bottom:227.550000px;}
.y60_c00176{bottom:242.250000px;}
.y2e_c00176{bottom:243.300000px;}
.y2d_c00176{bottom:265.350000px;}
.y2c_c00176{bottom:283.650000px;}
.y5f_c00176{bottom:288.600000px;}
.y2b_c00176{bottom:305.700000px;}
.y5e_c00176{bottom:306.600000px;}
.y2a_c00176{bottom:323.700000px;}
.y5d_c00176{bottom:324.300000px;}
.y29_c00176{bottom:340.950000px;}
.y5c_c00176{bottom:342.300000px;}
.y5b_c00176{bottom:360.000000px;}
.y28_c00176{bottom:363.600000px;}
.y5a_c00176{bottom:378.000000px;}
.y27_c00176{bottom:385.500000px;}
.y59_c00176{bottom:395.700000px;}
.y26_c00176{bottom:408.300000px;}
.y58_c00176{bottom:413.100000px;}
.y25_c00176{bottom:429.450000px;}
.y57_c00176{bottom:430.800000px;}
.y56_c00176{bottom:448.800000px;}
.y24_c00176{bottom:452.100000px;}
.y55_c00176{bottom:466.500000px;}
.y23_c00176{bottom:469.500000px;}
.y54_c00176{bottom:484.500000px;}
.y22_c00176{bottom:487.200000px;}
.y53_c00176{bottom:502.200000px;}
.y21_c00176{bottom:505.200000px;}
.y52_c00176{bottom:519.900000px;}
.y20_c00176{bottom:522.900000px;}
.y51_c00176{bottom:537.600000px;}
.y1f_c00176{bottom:540.900000px;}
.y50_c00176{bottom:555.600000px;}
.y1e_c00176{bottom:558.600000px;}
.y4f_c00176{bottom:573.300000px;}
.y1d_c00176{bottom:576.300000px;}
.y4e_c00176{bottom:591.300000px;}
.y1c_c00176{bottom:594.300000px;}
.y4d_c00176{bottom:609.000000px;}
.y1b_c00176{bottom:612.000000px;}
.y4c_c00176{bottom:627.000000px;}
.y1a_c00176{bottom:629.700000px;}
.y4b_c00176{bottom:644.700000px;}
.y19_c00176{bottom:648.000000px;}
.y4a_c00176{bottom:662.700000px;}
.y18_c00176{bottom:665.700000px;}
.y49_c00176{bottom:679.950000px;}
.y17_c00176{bottom:683.400000px;}
.y48_c00176{bottom:697.950000px;}
.y16_c00176{bottom:701.100000px;}
.y47_c00176{bottom:715.650000px;}
.y15_c00176{bottom:719.100000px;}
.y46_c00176{bottom:733.650000px;}
.y14_c00176{bottom:737.100000px;}
.y45_c00176{bottom:751.350000px;}
.y13_c00176{bottom:754.800000px;}
.y44_c00176{bottom:769.350000px;}
.y12_c00176{bottom:772.500000px;}
.y43_c00176{bottom:789.450000px;}
.y11_c00176{bottom:794.850000px;}
.y42_c00176{bottom:810.000000px;}
.y10_c00176{bottom:812.550000px;}
.y41_c00176{bottom:828.000000px;}
.yf_c00176{bottom:834.150000px;}
.y40_c00176{bottom:846.000000px;}
.ye_c00176{bottom:852.150000px;}
.y3f_c00176{bottom:871.500000px;}
.yd_c00176{bottom:874.050000px;}
.y3e_c00176{bottom:890.400000px;}
.yc_c00176{bottom:898.200000px;}
.yb_c00176{bottom:905.850000px;}
.y3d_c00176{bottom:908.700000px;}
.y3_c00176{bottom:924.900000px;}
.y3c_c00176{bottom:925.950000px;}
.y3b_c00176{bottom:944.250000px;}
.ya_c00176{bottom:951.150000px;}
.y3a_c00176{bottom:961.500000px;}
.y9_c00176{bottom:975.300000px;}
.y39_c00176{bottom:979.500000px;}
.y8_c00176{bottom:999.750000px;}
.y38_c00176{bottom:1000.800000px;}
.y37_c00176{bottom:1019.100000px;}
.y7_c00176{bottom:1024.500000px;}
.y36_c00176{bottom:1049.400000px;}
.y6_c00176{bottom:1057.650000px;}
.y35_c00176{bottom:1075.350000px;}
.y34_c00176{bottom:1088.250000px;}
.y5_c00176{bottom:1092.300000px;}
.y33_c00176{bottom:1095.150000px;}
.y4_c00176{bottom:1110.300000px;}
.y32_c00176{bottom:1112.700000px;}
.y1_c00176{bottom:1137.900000px;}
.y2_c00176{bottom:1139.700000px;}
.h5_c00176{height:30.000000px;}
.h7_c00176{height:54.000000px;}
.h4_c00176{height:60.000000px;}
.h3_c00176{height:66.000000px;}
.h6_c00176{height:72.000000px;}
.h2_c00176{height:78.000000px;}
.h0_c00176{height:1268.640015px;}
.h1_c00176{height:1269.000000px;}
.w1_c00176{width:963.000000px;}
.w0_c00176{width:963.359985px;}
.x0_c00176{left:0.000000px;}
.x14_c00176{left:87.150000px;}
.x3_c00176{left:89.250000px;}
.x88_c00176{left:92.550000px;}
.x7e_c00176{left:100.050000px;}
.x9_c00176{left:105.450000px;}
.x28_c00176{left:106.950000px;}
.x25_c00176{left:108.450000px;}
.x3e_c00176{left:110.250000px;}
.x84_c00176{left:111.300000px;}
.x26_c00176{left:116.700000px;}
.x1b_c00176{left:124.500000px;}
.x18_c00176{left:126.300000px;}
.x37_c00176{left:127.500000px;}
.x6e_c00176{left:128.700000px;}
.x80_c00176{left:129.900000px;}
.xa_c00176{left:132.450000px;}
.x48_c00176{left:135.600000px;}
.x4_c00176{left:137.850000px;}
.x60_c00176{left:140.100000px;}
.x29_c00176{left:141.450000px;}
.x70_c00176{left:143.850000px;}
.x30_c00176{left:145.500000px;}
.x5a_c00176{left:147.600000px;}
.x86_c00176{left:149.550000px;}
.x2a_c00176{left:151.950000px;}
.x43_c00176{left:153.000000px;}
.x56_c00176{left:155.700000px;}
.x10_c00176{left:161.700000px;}
.x3f_c00176{left:163.950000px;}
.x7f_c00176{left:167.700000px;}
.x15_c00176{left:169.200000px;}
.x85_c00176{left:171.750000px;}
.x71_c00176{left:174.150000px;}
.x74_c00176{left:176.250000px;}
.x13_c00176{left:178.950000px;}
.x16_c00176{left:181.050000px;}
.x5b_c00176{left:182.100000px;}
.x19_c00176{left:183.150000px;}
.x4d_c00176{left:184.350000px;}
.x5c_c00176{left:187.800000px;}
.x11_c00176{left:189.000000px;}
.x32_c00176{left:190.500000px;}
.x87_c00176{left:192.450000px;}
.x1a_c00176{left:194.700000px;}
.x4e_c00176{left:199.800000px;}
.x1e_c00176{left:201.750000px;}
.x40_c00176{left:203.850000px;}
.x5_c00176{left:207.000000px;}
.x44_c00176{left:210.600000px;}
.x2b_c00176{left:213.900000px;}
.x75_c00176{left:218.400000px;}
.x1c_c00176{left:220.950000px;}
.x27_c00176{left:223.200000px;}
.x31_c00176{left:224.400000px;}
.x72_c00176{left:226.350000px;}
.x61_c00176{left:227.550000px;}
.x41_c00176{left:229.800000px;}
.x82_c00176{left:231.750000px;}
.x6b_c00176{left:233.400000px;}
.xb_c00176{left:235.050000px;}
.x66_c00176{left:236.850000px;}
.x49_c00176{left:240.000000px;}
.x78_c00176{left:241.650000px;}
.x1f_c00176{left:243.450000px;}
.x52_c00176{left:244.650000px;}
.x17_c00176{left:247.350000px;}
.x57_c00176{left:249.600000px;}
.x62_c00176{left:250.650000px;}
.x36_c00176{left:252.450000px;}
.x38_c00176{left:256.050000px;}
.x8b_c00176{left:258.750000px;}
.x89_c00176{left:260.700000px;}
.x4f_c00176{left:263.550000px;}
.x39_c00176{left:265.350000px;}
.x33_c00176{left:266.400000px;}
.x6c_c00176{left:270.150000px;}
.xc_c00176{left:272.850000px;}
.x2c_c00176{left:275.100000px;}
.x6_c00176{left:279.300000px;}
.x76_c00176{left:282.450000px;}
.x45_c00176{left:283.650000px;}
.x79_c00176{left:287.400000px;}
.x7c_c00176{left:288.450000px;}
.x67_c00176{left:289.650000px;}
.x20_c00176{left:291.000000px;}
.x8c_c00176{left:295.500000px;}
.xd_c00176{left:297.000000px;}
.x3a_c00176{left:299.250000px;}
.x63_c00176{left:301.800000px;}
.x42_c00176{left:303.900000px;}
.x7a_c00176{left:306.150000px;}
.x58_c00176{left:307.500000px;}
.x5d_c00176{left:311.850000px;}
.x81_c00176{left:313.500000px;}
.x3b_c00176{left:314.700000px;}
.x22_c00176{left:316.500000px;}
.x6f_c00176{left:317.700000px;}
.x2d_c00176{left:319.350000px;}
.x69_c00176{left:323.700000px;}
.x64_c00176{left:327.300000px;}
.x4a_c00176{left:330.000000px;}
.x1_c00176{left:332.250000px;}
.x7_c00176{left:333.600000px;}
.x21_c00176{left:336.000000px;}
.x50_c00176{left:338.400000px;}
.x34_c00176{left:339.450000px;}
.x68_c00176{left:341.850000px;}
.x6a_c00176{left:347.100000px;}
.x8a_c00176{left:348.150000px;}
.x65_c00176{left:352.800000px;}
.x2e_c00176{left:354.600000px;}
.x46_c00176{left:357.000000px;}
.x8_c00176{left:358.500000px;}
.x35_c00176{left:362.850000px;}
.xe_c00176{left:364.350000px;}
.x53_c00176{left:368.850000px;}
.x23_c00176{left:371.250000px;}
.x59_c00176{left:372.300000px;}
.x1d_c00176{left:375.000000px;}
.x3c_c00176{left:376.950000px;}
.x4b_c00176{left:378.900000px;}
.x54_c00176{left:381.150000px;}
.x6d_c00176{left:382.500000px;}
.x77_c00176{left:385.500000px;}
.x24_c00176{left:387.450000px;}
.x5e_c00176{left:388.500000px;}
.x3d_c00176{left:392.100000px;}
.x47_c00176{left:396.300000px;}
.x4c_c00176{left:397.950000px;}
.x55_c00176{left:399.150000px;}
.x5f_c00176{left:400.800000px;}
.x7d_c00176{left:402.300000px;}
.x73_c00176{left:403.800000px;}
.x12_c00176{left:406.800000px;}
.xf_c00176{left:409.350000px;}
.x7b_c00176{left:411.600000px;}
.x2f_c00176{left:414.300000px;}
.x83_c00176{left:415.500000px;}
.x51_c00176{left:421.500000px;}
.xa2_c00176{left:445.650000px;}
.xa6_c00176{left:447.150000px;}
.x129_c00176{left:448.500000px;}
.x10c_c00176{left:449.700000px;}
.x8d_c00176{left:462.900000px;}
.xf4_c00176{left:463.950000px;}
.xa7_c00176{left:465.900000px;}
.x127_c00176{left:471.150000px;}
.x9f_c00176{left:476.700000px;}
.x12c_c00176{left:478.050000px;}
.xae_c00176{left:482.400000px;}
.x8e_c00176{left:484.800000px;}
.xee_c00176{left:486.000000px;}
.xa8_c00176{left:487.500000px;}
.xc9_c00176{left:491.850000px;}
.xf9_c00176{left:494.250000px;}
.x115_c00176{left:496.050000px;}
.x123_c00176{left:497.250000px;}
.x103_c00176{left:500.250000px;}
.x8f_c00176{left:502.050000px;}
.xc5_c00176{left:504.750000px;}
.x112_c00176{left:505.800000px;}
.xa1_c00176{left:507.300000px;}
.x12d_c00176{left:509.250000px;}
.xce_c00176{left:510.900000px;}
.x11f_c00176{left:513.000000px;}
.xa3_c00176{left:514.350000px;}
.xdd_c00176{left:516.450000px;}
.x12a_c00176{left:519.450000px;}
.xc8_c00176{left:520.950000px;}
.xa0_c00176{left:523.500000px;}
.xab_c00176{left:525.300000px;}
.x114_c00176{left:526.650000px;}
.xfa_c00176{left:528.150000px;}
.xfe_c00176{left:529.500000px;}
.x97_c00176{left:530.700000px;}
.xd7_c00176{left:533.550000px;}
.x10f_c00176{left:537.300000px;}
.xe4_c00176{left:538.350000px;}
.xea_c00176{left:539.400000px;}
.x98_c00176{left:542.250000px;}
.xef_c00176{left:543.600000px;}
.xaf_c00176{left:545.400000px;}
.xde_c00176{left:547.350000px;}
.xcf_c00176{left:548.400000px;}
.xa4_c00176{left:549.600000px;}
.xbe_c00176{left:552.150000px;}
.x12e_c00176{left:553.200000px;}
.xeb_c00176{left:555.300000px;}
.xac_c00176{left:557.700000px;}
.xca_c00176{left:559.500000px;}
.x90_c00176{left:561.450000px;}
.x10a_c00176{left:563.550000px;}
.xd4_c00176{left:564.900000px;}
.x113_c00176{left:567.300000px;}
.xf0_c00176{left:569.850000px;}
.xa5_c00176{left:570.900000px;}
.xfb_c00176{left:572.400000px;}
.xd3_c00176{left:574.350000px;}
.x131_c00176{left:576.750000px;}
.x11b_c00176{left:577.800000px;}
.x99_c00176{left:579.000000px;}
.x102_c00176{left:580.500000px;}
.xc2_c00176{left:582.000000px;}
.xdf_c00176{left:583.650000px;}
.xe5_c00176{left:585.150000px;}
.x128_c00176{left:586.350000px;}
.xc6_c00176{left:587.550000px;}
.x117_c00176{left:589.650000px;}
.xd8_c00176{left:591.450000px;}
.xc3_c00176{left:593.100000px;}
.xa9_c00176{left:594.750000px;}
.x91_c00176{left:595.950000px;}
.x10d_c00176{left:597.000000px;}
.xf3_c00176{left:599.100000px;}
.x121_c00176{left:600.300000px;}
.xe0_c00176{left:601.350000px;}
.xba_c00176{left:602.400000px;}
.xbf_c00176{left:604.050000px;}
.x107_c00176{left:605.850000px;}
.xb6_c00176{left:607.200000px;}
.xda_c00176{left:610.500000px;}
.xad_c00176{left:612.750000px;}
.x92_c00176{left:614.250000px;}
.x104_c00176{left:617.250000px;}
.x12b_c00176{left:618.450000px;}
.xb7_c00176{left:619.800000px;}
.xcb_c00176{left:621.450000px;}
.xb0_c00176{left:622.800000px;}
.x9a_c00176{left:625.500000px;}
.xf5_c00176{left:627.750000px;}
.xff_c00176{left:628.950000px;}
.xc4_c00176{left:630.150000px;}
.x118_c00176{left:632.550000px;}
.xb1_c00176{left:633.600000px;}
.xc7_c00176{left:634.650000px;}
.xd0_c00176{left:637.650000px;}
.xdb_c00176{left:641.400000px;}
.xb2_c00176{left:642.900000px;}
.xf6_c00176{left:643.950000px;}
.x9b_c00176{left:647.100000px;}
.xbb_c00176{left:649.200000px;}
.x108_c00176{left:651.150000px;}
.x93_c00176{left:653.850000px;}
.x110_c00176{left:654.900000px;}
.xb8_c00176{left:657.900000px;}
.xe6_c00176{left:660.000000px;}
.xcc_c00176{left:661.800000px;}
.x94_c00176{left:662.850000px;}
.x116_c00176{left:666.450000px;}
.x126_c00176{left:667.650000px;}
.xe1_c00176{left:668.700000px;}
.xbc_c00176{left:670.500000px;}
.x9c_c00176{left:672.000000px;}
.xc0_c00176{left:673.200000px;}
.xdc_c00176{left:674.850000px;}
.xb3_c00176{left:676.350000px;}
.xec_c00176{left:677.400000px;}
.x12f_c00176{left:678.750000px;}
.x95_c00176{left:681.150000px;}
.xaa_c00176{left:682.650000px;}
.xe7_c00176{left:684.450000px;}
.xed_c00176{left:686.100000px;}
.xd5_c00176{left:687.900000px;}
.xe2_c00176{left:689.550000px;}
.x100_c00176{left:693.000000px;}
.xb4_c00176{left:694.650000px;}
.x105_c00176{left:695.850000px;}
.xd1_c00176{left:700.650000px;}
.x124_c00176{left:703.800000px;}
.xf7_c00176{left:705.450000px;}
.xd6_c00176{left:706.950000px;}
.xb9_c00176{left:710.100000px;}
.x11a_c00176{left:711.600000px;}
.x109_c00176{left:713.700000px;}
.x9d_c00176{left:714.900000px;}
.x120_c00176{left:717.300000px;}
.xf1_c00176{left:718.500000px;}
.xc1_c00176{left:721.050000px;}
.xfc_c00176{left:722.100000px;}
.xbd_c00176{left:724.200000px;}
.xe3_c00176{left:725.850000px;}
.x111_c00176{left:727.500000px;}
.xb5_c00176{left:729.900000px;}
.x119_c00176{left:731.700000px;}
.x11c_c00176{left:733.350000px;}
.xf2_c00176{left:734.400000px;}
.x122_c00176{left:738.150000px;}
.x9e_c00176{left:739.800000px;}
.xd9_c00176{left:741.900000px;}
.xfd_c00176{left:742.950000px;}
.xe8_c00176{left:744.600000px;}
.x11d_c00176{left:745.650000px;}
.xf8_c00176{left:746.850000px;}
.x101_c00176{left:749.100000px;}
.xcd_c00176{left:750.300000px;}
.x2_c00176{left:753.450000px;}
.x96_c00176{left:755.250000px;}
.x130_c00176{left:756.900000px;}
.x125_c00176{left:759.600000px;}
.x11e_c00176{left:761.100000px;}
.x10e_c00176{left:767.250000px;}
.xe9_c00176{left:770.850000px;}
.xd2_c00176{left:775.200000px;}
.x10b_c00176{left:778.200000px;}
.x106_c00176{left:779.400000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws4_c00176{word-spacing:-10.422299pt;}
.ws1_c00176{word-spacing:-3.320755pt;}
.ws7_c00176{word-spacing:0.000000pt;}
.ws0_c00176{word-spacing:8.316262pt;}
.ws5_c00176{word-spacing:11.520142pt;}
.ws6_c00176{word-spacing:13.055556pt;}
.ws2_c00176{word-spacing:19.137255pt;}
.ws3_c00176{word-spacing:24.129380pt;}
._0_c00176{width:32.618149pt;}
.fs3_c00176{font-size:26.666667pt;}
.fs5_c00176{font-size:48.000000pt;}
.fs2_c00176{font-size:53.333333pt;}
.fs1_c00176{font-size:58.666667pt;}
.fs4_c00176{font-size:64.000000pt;}
.fs0_c00176{font-size:69.333333pt;}
.y0_c00176{bottom:0.000000pt;}
.y66_c00176{bottom:149.466667pt;}
.y65_c00176{bottom:163.733333pt;}
.y31_c00176{bottom:164.800000pt;}
.y64_c00176{bottom:176.533333pt;}
.y30_c00176{bottom:180.800000pt;}
.y63_c00176{bottom:185.866667pt;}
.y62_c00176{bottom:189.733333pt;}
.y2f_c00176{bottom:196.800000pt;}
.y61_c00176{bottom:202.266667pt;}
.y60_c00176{bottom:215.333333pt;}
.y2e_c00176{bottom:216.266667pt;}
.y2d_c00176{bottom:235.866667pt;}
.y2c_c00176{bottom:252.133333pt;}
.y5f_c00176{bottom:256.533333pt;}
.y2b_c00176{bottom:271.733333pt;}
.y5e_c00176{bottom:272.533333pt;}
.y2a_c00176{bottom:287.733333pt;}
.y5d_c00176{bottom:288.266667pt;}
.y29_c00176{bottom:303.066667pt;}
.y5c_c00176{bottom:304.266667pt;}
.y5b_c00176{bottom:320.000000pt;}
.y28_c00176{bottom:323.200000pt;}
.y5a_c00176{bottom:336.000000pt;}
.y27_c00176{bottom:342.666667pt;}
.y59_c00176{bottom:351.733333pt;}
.y26_c00176{bottom:362.933333pt;}
.y58_c00176{bottom:367.200000pt;}
.y25_c00176{bottom:381.733333pt;}
.y57_c00176{bottom:382.933333pt;}
.y56_c00176{bottom:398.933333pt;}
.y24_c00176{bottom:401.866667pt;}
.y55_c00176{bottom:414.666667pt;}
.y23_c00176{bottom:417.333333pt;}
.y54_c00176{bottom:430.666667pt;}
.y22_c00176{bottom:433.066667pt;}
.y53_c00176{bottom:446.400000pt;}
.y21_c00176{bottom:449.066667pt;}
.y52_c00176{bottom:462.133333pt;}
.y20_c00176{bottom:464.800000pt;}
.y51_c00176{bottom:477.866667pt;}
.y1f_c00176{bottom:480.800000pt;}
.y50_c00176{bottom:493.866667pt;}
.y1e_c00176{bottom:496.533333pt;}
.y4f_c00176{bottom:509.600000pt;}
.y1d_c00176{bottom:512.266667pt;}
.y4e_c00176{bottom:525.600000pt;}
.y1c_c00176{bottom:528.266667pt;}
.y4d_c00176{bottom:541.333333pt;}
.y1b_c00176{bottom:544.000000pt;}
.y4c_c00176{bottom:557.333333pt;}
.y1a_c00176{bottom:559.733333pt;}
.y4b_c00176{bottom:573.066667pt;}
.y19_c00176{bottom:576.000000pt;}
.y4a_c00176{bottom:589.066667pt;}
.y18_c00176{bottom:591.733333pt;}
.y49_c00176{bottom:604.400000pt;}
.y17_c00176{bottom:607.466667pt;}
.y48_c00176{bottom:620.400000pt;}
.y16_c00176{bottom:623.200000pt;}
.y47_c00176{bottom:636.133333pt;}
.y15_c00176{bottom:639.200000pt;}
.y46_c00176{bottom:652.133333pt;}
.y14_c00176{bottom:655.200000pt;}
.y45_c00176{bottom:667.866667pt;}
.y13_c00176{bottom:670.933333pt;}
.y44_c00176{bottom:683.866667pt;}
.y12_c00176{bottom:686.666667pt;}
.y43_c00176{bottom:701.733333pt;}
.y11_c00176{bottom:706.533333pt;}
.y42_c00176{bottom:720.000000pt;}
.y10_c00176{bottom:722.266667pt;}
.y41_c00176{bottom:736.000000pt;}
.yf_c00176{bottom:741.466667pt;}
.y40_c00176{bottom:752.000000pt;}
.ye_c00176{bottom:757.466667pt;}
.y3f_c00176{bottom:774.666667pt;}
.yd_c00176{bottom:776.933333pt;}
.y3e_c00176{bottom:791.466667pt;}
.yc_c00176{bottom:798.400000pt;}
.yb_c00176{bottom:805.200000pt;}
.y3d_c00176{bottom:807.733333pt;}
.y3_c00176{bottom:822.133333pt;}
.y3c_c00176{bottom:823.066667pt;}
.y3b_c00176{bottom:839.333333pt;}
.ya_c00176{bottom:845.466667pt;}
.y3a_c00176{bottom:854.666667pt;}
.y9_c00176{bottom:866.933333pt;}
.y39_c00176{bottom:870.666667pt;}
.y8_c00176{bottom:888.666667pt;}
.y38_c00176{bottom:889.600000pt;}
.y37_c00176{bottom:905.866667pt;}
.y7_c00176{bottom:910.666667pt;}
.y36_c00176{bottom:932.800000pt;}
.y6_c00176{bottom:940.133333pt;}
.y35_c00176{bottom:955.866667pt;}
.y34_c00176{bottom:967.333333pt;}
.y5_c00176{bottom:970.933333pt;}
.y33_c00176{bottom:973.466667pt;}
.y4_c00176{bottom:986.933333pt;}
.y32_c00176{bottom:989.066667pt;}
.y1_c00176{bottom:1011.466667pt;}
.y2_c00176{bottom:1013.066667pt;}
.h5_c00176{height:26.666667pt;}
.h7_c00176{height:48.000000pt;}
.h4_c00176{height:53.333333pt;}
.h3_c00176{height:58.666667pt;}
.h6_c00176{height:64.000000pt;}
.h2_c00176{height:69.333333pt;}
.h0_c00176{height:1127.680013pt;}
.h1_c00176{height:1128.000000pt;}
.w1_c00176{width:856.000000pt;}
.w0_c00176{width:856.319987pt;}
.x0_c00176{left:0.000000pt;}
.x14_c00176{left:77.466667pt;}
.x3_c00176{left:79.333333pt;}
.x88_c00176{left:82.266667pt;}
.x7e_c00176{left:88.933333pt;}
.x9_c00176{left:93.733333pt;}
.x28_c00176{left:95.066667pt;}
.x25_c00176{left:96.400000pt;}
.x3e_c00176{left:98.000000pt;}
.x84_c00176{left:98.933333pt;}
.x26_c00176{left:103.733333pt;}
.x1b_c00176{left:110.666667pt;}
.x18_c00176{left:112.266667pt;}
.x37_c00176{left:113.333333pt;}
.x6e_c00176{left:114.400000pt;}
.x80_c00176{left:115.466667pt;}
.xa_c00176{left:117.733333pt;}
.x48_c00176{left:120.533333pt;}
.x4_c00176{left:122.533333pt;}
.x60_c00176{left:124.533333pt;}
.x29_c00176{left:125.733333pt;}
.x70_c00176{left:127.866667pt;}
.x30_c00176{left:129.333333pt;}
.x5a_c00176{left:131.200000pt;}
.x86_c00176{left:132.933333pt;}
.x2a_c00176{left:135.066667pt;}
.x43_c00176{left:136.000000pt;}
.x56_c00176{left:138.400000pt;}
.x10_c00176{left:143.733333pt;}
.x3f_c00176{left:145.733333pt;}
.x7f_c00176{left:149.066667pt;}
.x15_c00176{left:150.400000pt;}
.x85_c00176{left:152.666667pt;}
.x71_c00176{left:154.800000pt;}
.x74_c00176{left:156.666667pt;}
.x13_c00176{left:159.066667pt;}
.x16_c00176{left:160.933333pt;}
.x5b_c00176{left:161.866667pt;}
.x19_c00176{left:162.800000pt;}
.x4d_c00176{left:163.866667pt;}
.x5c_c00176{left:166.933333pt;}
.x11_c00176{left:168.000000pt;}
.x32_c00176{left:169.333333pt;}
.x87_c00176{left:171.066667pt;}
.x1a_c00176{left:173.066667pt;}
.x4e_c00176{left:177.600000pt;}
.x1e_c00176{left:179.333333pt;}
.x40_c00176{left:181.200000pt;}
.x5_c00176{left:184.000000pt;}
.x44_c00176{left:187.200000pt;}
.x2b_c00176{left:190.133333pt;}
.x75_c00176{left:194.133333pt;}
.x1c_c00176{left:196.400000pt;}
.x27_c00176{left:198.400000pt;}
.x31_c00176{left:199.466667pt;}
.x72_c00176{left:201.200000pt;}
.x61_c00176{left:202.266667pt;}
.x41_c00176{left:204.266667pt;}
.x82_c00176{left:206.000000pt;}
.x6b_c00176{left:207.466667pt;}
.xb_c00176{left:208.933333pt;}
.x66_c00176{left:210.533333pt;}
.x49_c00176{left:213.333333pt;}
.x78_c00176{left:214.800000pt;}
.x1f_c00176{left:216.400000pt;}
.x52_c00176{left:217.466667pt;}
.x17_c00176{left:219.866667pt;}
.x57_c00176{left:221.866667pt;}
.x62_c00176{left:222.800000pt;}
.x36_c00176{left:224.400000pt;}
.x38_c00176{left:227.600000pt;}
.x8b_c00176{left:230.000000pt;}
.x89_c00176{left:231.733333pt;}
.x4f_c00176{left:234.266667pt;}
.x39_c00176{left:235.866667pt;}
.x33_c00176{left:236.800000pt;}
.x6c_c00176{left:240.133333pt;}
.xc_c00176{left:242.533333pt;}
.x2c_c00176{left:244.533333pt;}
.x6_c00176{left:248.266667pt;}
.x76_c00176{left:251.066667pt;}
.x45_c00176{left:252.133333pt;}
.x79_c00176{left:255.466667pt;}
.x7c_c00176{left:256.400000pt;}
.x67_c00176{left:257.466667pt;}
.x20_c00176{left:258.666667pt;}
.x8c_c00176{left:262.666667pt;}
.xd_c00176{left:264.000000pt;}
.x3a_c00176{left:266.000000pt;}
.x63_c00176{left:268.266667pt;}
.x42_c00176{left:270.133333pt;}
.x7a_c00176{left:272.133333pt;}
.x58_c00176{left:273.333333pt;}
.x5d_c00176{left:277.200000pt;}
.x81_c00176{left:278.666667pt;}
.x3b_c00176{left:279.733333pt;}
.x22_c00176{left:281.333333pt;}
.x6f_c00176{left:282.400000pt;}
.x2d_c00176{left:283.866667pt;}
.x69_c00176{left:287.733333pt;}
.x64_c00176{left:290.933333pt;}
.x4a_c00176{left:293.333333pt;}
.x1_c00176{left:295.333333pt;}
.x7_c00176{left:296.533333pt;}
.x21_c00176{left:298.666667pt;}
.x50_c00176{left:300.800000pt;}
.x34_c00176{left:301.733333pt;}
.x68_c00176{left:303.866667pt;}
.x6a_c00176{left:308.533333pt;}
.x8a_c00176{left:309.466667pt;}
.x65_c00176{left:313.600000pt;}
.x2e_c00176{left:315.200000pt;}
.x46_c00176{left:317.333333pt;}
.x8_c00176{left:318.666667pt;}
.x35_c00176{left:322.533333pt;}
.xe_c00176{left:323.866667pt;}
.x53_c00176{left:327.866667pt;}
.x23_c00176{left:330.000000pt;}
.x59_c00176{left:330.933333pt;}
.x1d_c00176{left:333.333333pt;}
.x3c_c00176{left:335.066667pt;}
.x4b_c00176{left:336.800000pt;}
.x54_c00176{left:338.800000pt;}
.x6d_c00176{left:340.000000pt;}
.x77_c00176{left:342.666667pt;}
.x24_c00176{left:344.400000pt;}
.x5e_c00176{left:345.333333pt;}
.x3d_c00176{left:348.533333pt;}
.x47_c00176{left:352.266667pt;}
.x4c_c00176{left:353.733333pt;}
.x55_c00176{left:354.800000pt;}
.x5f_c00176{left:356.266667pt;}
.x7d_c00176{left:357.600000pt;}
.x73_c00176{left:358.933333pt;}
.x12_c00176{left:361.600000pt;}
.xf_c00176{left:363.866667pt;}
.x7b_c00176{left:365.866667pt;}
.x2f_c00176{left:368.266667pt;}
.x83_c00176{left:369.333333pt;}
.x51_c00176{left:374.666667pt;}
.xa2_c00176{left:396.133333pt;}
.xa6_c00176{left:397.466667pt;}
.x129_c00176{left:398.666667pt;}
.x10c_c00176{left:399.733333pt;}
.x8d_c00176{left:411.466667pt;}
.xf4_c00176{left:412.400000pt;}
.xa7_c00176{left:414.133333pt;}
.x127_c00176{left:418.800000pt;}
.x9f_c00176{left:423.733333pt;}
.x12c_c00176{left:424.933333pt;}
.xae_c00176{left:428.800000pt;}
.x8e_c00176{left:430.933333pt;}
.xee_c00176{left:432.000000pt;}
.xa8_c00176{left:433.333333pt;}
.xc9_c00176{left:437.200000pt;}
.xf9_c00176{left:439.333333pt;}
.x115_c00176{left:440.933333pt;}
.x123_c00176{left:442.000000pt;}
.x103_c00176{left:444.666667pt;}
.x8f_c00176{left:446.266667pt;}
.xc5_c00176{left:448.666667pt;}
.x112_c00176{left:449.600000pt;}
.xa1_c00176{left:450.933333pt;}
.x12d_c00176{left:452.666667pt;}
.xce_c00176{left:454.133333pt;}
.x11f_c00176{left:456.000000pt;}
.xa3_c00176{left:457.200000pt;}
.xdd_c00176{left:459.066667pt;}
.x12a_c00176{left:461.733333pt;}
.xc8_c00176{left:463.066667pt;}
.xa0_c00176{left:465.333333pt;}
.xab_c00176{left:466.933333pt;}
.x114_c00176{left:468.133333pt;}
.xfa_c00176{left:469.466667pt;}
.xfe_c00176{left:470.666667pt;}
.x97_c00176{left:471.733333pt;}
.xd7_c00176{left:474.266667pt;}
.x10f_c00176{left:477.600000pt;}
.xe4_c00176{left:478.533333pt;}
.xea_c00176{left:479.466667pt;}
.x98_c00176{left:482.000000pt;}
.xef_c00176{left:483.200000pt;}
.xaf_c00176{left:484.800000pt;}
.xde_c00176{left:486.533333pt;}
.xcf_c00176{left:487.466667pt;}
.xa4_c00176{left:488.533333pt;}
.xbe_c00176{left:490.800000pt;}
.x12e_c00176{left:491.733333pt;}
.xeb_c00176{left:493.600000pt;}
.xac_c00176{left:495.733333pt;}
.xca_c00176{left:497.333333pt;}
.x90_c00176{left:499.066667pt;}
.x10a_c00176{left:500.933333pt;}
.xd4_c00176{left:502.133333pt;}
.x113_c00176{left:504.266667pt;}
.xf0_c00176{left:506.533333pt;}
.xa5_c00176{left:507.466667pt;}
.xfb_c00176{left:508.800000pt;}
.xd3_c00176{left:510.533333pt;}
.x131_c00176{left:512.666667pt;}
.x11b_c00176{left:513.600000pt;}
.x99_c00176{left:514.666667pt;}
.x102_c00176{left:516.000000pt;}
.xc2_c00176{left:517.333333pt;}
.xdf_c00176{left:518.800000pt;}
.xe5_c00176{left:520.133333pt;}
.x128_c00176{left:521.200000pt;}
.xc6_c00176{left:522.266667pt;}
.x117_c00176{left:524.133333pt;}
.xd8_c00176{left:525.733333pt;}
.xc3_c00176{left:527.200000pt;}
.xa9_c00176{left:528.666667pt;}
.x91_c00176{left:529.733333pt;}
.x10d_c00176{left:530.666667pt;}
.xf3_c00176{left:532.533333pt;}
.x121_c00176{left:533.600000pt;}
.xe0_c00176{left:534.533333pt;}
.xba_c00176{left:535.466667pt;}
.xbf_c00176{left:536.933333pt;}
.x107_c00176{left:538.533333pt;}
.xb6_c00176{left:539.733333pt;}
.xda_c00176{left:542.666667pt;}
.xad_c00176{left:544.666667pt;}
.x92_c00176{left:546.000000pt;}
.x104_c00176{left:548.666667pt;}
.x12b_c00176{left:549.733333pt;}
.xb7_c00176{left:550.933333pt;}
.xcb_c00176{left:552.400000pt;}
.xb0_c00176{left:553.600000pt;}
.x9a_c00176{left:556.000000pt;}
.xf5_c00176{left:558.000000pt;}
.xff_c00176{left:559.066667pt;}
.xc4_c00176{left:560.133333pt;}
.x118_c00176{left:562.266667pt;}
.xb1_c00176{left:563.200000pt;}
.xc7_c00176{left:564.133333pt;}
.xd0_c00176{left:566.800000pt;}
.xdb_c00176{left:570.133333pt;}
.xb2_c00176{left:571.466667pt;}
.xf6_c00176{left:572.400000pt;}
.x9b_c00176{left:575.200000pt;}
.xbb_c00176{left:577.066667pt;}
.x108_c00176{left:578.800000pt;}
.x93_c00176{left:581.200000pt;}
.x110_c00176{left:582.133333pt;}
.xb8_c00176{left:584.800000pt;}
.xe6_c00176{left:586.666667pt;}
.xcc_c00176{left:588.266667pt;}
.x94_c00176{left:589.200000pt;}
.x116_c00176{left:592.400000pt;}
.x126_c00176{left:593.466667pt;}
.xe1_c00176{left:594.400000pt;}
.xbc_c00176{left:596.000000pt;}
.x9c_c00176{left:597.333333pt;}
.xc0_c00176{left:598.400000pt;}
.xdc_c00176{left:599.866667pt;}
.xb3_c00176{left:601.200000pt;}
.xec_c00176{left:602.133333pt;}
.x12f_c00176{left:603.333333pt;}
.x95_c00176{left:605.466667pt;}
.xaa_c00176{left:606.800000pt;}
.xe7_c00176{left:608.400000pt;}
.xed_c00176{left:609.866667pt;}
.xd5_c00176{left:611.466667pt;}
.xe2_c00176{left:612.933333pt;}
.x100_c00176{left:616.000000pt;}
.xb4_c00176{left:617.466667pt;}
.x105_c00176{left:618.533333pt;}
.xd1_c00176{left:622.800000pt;}
.x124_c00176{left:625.600000pt;}
.xf7_c00176{left:627.066667pt;}
.xd6_c00176{left:628.400000pt;}
.xb9_c00176{left:631.200000pt;}
.x11a_c00176{left:632.533333pt;}
.x109_c00176{left:634.400000pt;}
.x9d_c00176{left:635.466667pt;}
.x120_c00176{left:637.600000pt;}
.xf1_c00176{left:638.666667pt;}
.xc1_c00176{left:640.933333pt;}
.xfc_c00176{left:641.866667pt;}
.xbd_c00176{left:643.733333pt;}
.xe3_c00176{left:645.200000pt;}
.x111_c00176{left:646.666667pt;}
.xb5_c00176{left:648.800000pt;}
.x119_c00176{left:650.400000pt;}
.x11c_c00176{left:651.866667pt;}
.xf2_c00176{left:652.800000pt;}
.x122_c00176{left:656.133333pt;}
.x9e_c00176{left:657.600000pt;}
.xd9_c00176{left:659.466667pt;}
.xfd_c00176{left:660.400000pt;}
.xe8_c00176{left:661.866667pt;}
.x11d_c00176{left:662.800000pt;}
.xf8_c00176{left:663.866667pt;}
.x101_c00176{left:665.866667pt;}
.xcd_c00176{left:666.933333pt;}
.x2_c00176{left:669.733333pt;}
.x96_c00176{left:671.333333pt;}
.x130_c00176{left:672.800000pt;}
.x125_c00176{left:675.200000pt;}
.x11e_c00176{left:676.533333pt;}
.x10e_c00176{left:682.000000pt;}
.xe9_c00176{left:685.200000pt;}
.xd2_c00176{left:689.066667pt;}
.x10b_c00176{left:691.733333pt;}
.x106_c00176{left:692.800000pt;}
}





/* 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_c00177 {
    display:none;
  }
  .loading-indicator_c00177.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00177 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_c00177 { 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_c00177" -> "#page-container .classname_c00177")
 */
.pf_c00177 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00177 { /* 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_c00177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00177 { /* 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_c00177 { /* 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_c00177 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00177 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00177 {overflow:visible;}
  }
}
.c_c00177 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00177 { /* 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_c00177:after { /* webkit #35443 */
  content: '';
}
.t_c00177:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00177 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 */
}
.__c00177 { /* 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_c00177 { /* info for Javascript */
  display:none;
}
.l_c00177 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00177 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00177 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00177: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_c00177 {
    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_c00177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00177.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_c00177 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00177;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.000000;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;}
.m8_c00177{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00177{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m19_c00177{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m109_c00177{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00177{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00177{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00177{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m96_c00177{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00177{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mff_c00177{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00177{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00177{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mef_c00177{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m3_c00177{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00177{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00177{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4_c00177{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m103_c00177{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00177{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m90_c00177{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00177{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00177{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m88_c00177{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m24_c00177{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m60_c00177{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md7_c00177{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00177{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m37_c00177{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me9_c00177{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m106_c00177{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m36_c00177{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00177{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m66_c00177{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m79_c00177{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.me7_c00177{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m35_c00177{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md8_c00177{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00177{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m78_c00177{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00177{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me5_c00177{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00177{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00177{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00177{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m80_c00177{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00177{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00177{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9_c00177{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m2_c00177{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00177{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00177{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00177{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m40_c00177{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00177{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00177{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00177{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00177{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md9_c00177{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m62_c00177{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m5_c00177{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00177{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m33_c00177{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.med_c00177{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m95_c00177{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00177{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m68_c00177{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00177{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m63_c00177{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m76_c00177{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m21_c00177{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7_c00177{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mca_c00177{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00177{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00177{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m42_c00177{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m30_c00177{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00177{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00177{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00177{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mab_c00177{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00177{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m31_c00177{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me6_c00177{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00177{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m29_c00177{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mba_c00177{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m53_c00177{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00177{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m39_c00177{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m72_c00177{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me1_c00177{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00177{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00177{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00177{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma_c00177{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mda_c00177{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00177{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.me4_c00177{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m43_c00177{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m102_c00177{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00177{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m69_c00177{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m26_c00177{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00177{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m89_c00177{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me3_c00177{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mae_c00177{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00177{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00177{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m17_c00177{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m44_c00177{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m49_c00177{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m81_c00177{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m77_c00177{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m52_c00177{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m20_c00177{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m87_c00177{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m15_c00177{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00177{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00177{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00177{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6_c00177{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00177{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m58_c00177{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m14_c00177{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00177{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me8_c00177{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m28_c00177{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mee_c00177{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00177{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m98_c00177{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00177{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00177{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m71_c00177{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00177{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mce_c00177{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00177{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00177{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00177{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m22_c00177{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mad_c00177{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m61_c00177{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00177{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc_c00177{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m64_c00177{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mea_c00177{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00177{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m50_c00177{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00177{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m34_c00177{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md1_c00177{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m18_c00177{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m23_c00177{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00177{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00177{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00177{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md6_c00177{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m38_c00177{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mde_c00177{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00177{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00177{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m107_c00177{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m92_c00177{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m59_c00177{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m70_c00177{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m73_c00177{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00177{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m45_c00177{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m27_c00177{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00177{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m67_c00177{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me2_c00177{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mac_c00177{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00177{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00177{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me0_c00177{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00177{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m32_c00177{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00177{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00177{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00177{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00177{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00177{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00177{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00177{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m51_c00177{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00177{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m47_c00177{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00177{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00177{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m16_c00177{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maa_c00177{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.meb_c00177{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00177{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m48_c00177{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m56_c00177{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m85_c00177{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00177{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m10_c00177{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00177{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00177{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m93_c00177{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m86_c00177{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m99_c00177{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m55_c00177{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00177{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00177{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00177{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00177{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m25_c00177{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m65_c00177{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00177{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb_c00177{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00177{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00177{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00177{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md0_c00177{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00177{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m100_c00177{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf_c00177{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00177{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m41_c00177{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m75_c00177{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.maf_c00177{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me_c00177{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00177{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00177{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00177{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m105_c00177{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00177{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m83_c00177{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m12_c00177{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m46_c00177{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00177{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00177{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m54_c00177{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md4_c00177{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m101_c00177{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m74_c00177{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m91_c00177{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00177{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md_c00177{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md5_c00177{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m104_c00177{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m108_c00177{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00177{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m57_c00177{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00177{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00177{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m94_c00177{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.mec_c00177{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00177{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00177{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m84_c00177{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.md3_c00177{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00177{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00177{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m82_c00177{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00177{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00177{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m97_c00177{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00177{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.md2_c00177{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c00177{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00177{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00177{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls0_c00177{letter-spacing:0.000000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{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__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:-11.235669px;}
.ws5_c00177{word-spacing:-7.082027px;}
.ws2_c00177{word-spacing:-0.183206px;}
.ws7_c00177{word-spacing:0.000000px;}
.ws1_c00177{word-spacing:2.750000px;}
.ws4_c00177{word-spacing:4.002695px;}
.ws6_c00177{word-spacing:8.823529px;}
.ws3_c00177{word-spacing:16.500000px;}
.fc0_c00177{color:transparent;}
.fs5_c00177{font-size:24.000000px;}
.fs6_c00177{font-size:42.000000px;}
.fs4_c00177{font-size:54.000000px;}
.fs3_c00177{font-size:60.000000px;}
.fs0_c00177{font-size:66.000000px;}
.fs2_c00177{font-size:72.000000px;}
.fs1_c00177{font-size:78.000000px;}
.y0_c00177{bottom:0.000000px;}
.y66_c00177{bottom:181.050000px;}
.y65_c00177{bottom:198.900000px;}
.y61_c00177{bottom:203.400000px;}
.y64_c00177{bottom:216.600000px;}
.y60_c00177{bottom:221.400000px;}
.y63_c00177{bottom:234.600000px;}
.y5f_c00177{bottom:239.100000px;}
.y62_c00177{bottom:252.300000px;}
.y5e_c00177{bottom:257.100000px;}
.y5d_c00177{bottom:275.100000px;}
.y57_c00177{bottom:277.200000px;}
.y56_c00177{bottom:291.600000px;}
.y5c_c00177{bottom:293.100000px;}
.y55_c00177{bottom:306.000000px;}
.y5b_c00177{bottom:310.350000px;}
.y54_c00177{bottom:320.400000px;}
.y5a_c00177{bottom:329.100000px;}
.y53_c00177{bottom:335.100000px;}
.y59_c00177{bottom:346.350000px;}
.y52_c00177{bottom:359.250000px;}
.y58_c00177{bottom:368.700000px;}
.y51_c00177{bottom:377.550000px;}
.y67_c00177{bottom:386.700000px;}
.y50_c00177{bottom:395.250000px;}
.y4f_c00177{bottom:413.250000px;}
.y4e_c00177{bottom:431.250000px;}
.y4d_c00177{bottom:435.600000px;}
.y4c_c00177{bottom:446.400000px;}
.y4b_c00177{bottom:457.650000px;}
.y26_c00177{bottom:457.800000px;}
.y4a_c00177{bottom:475.650000px;}
.y25_c00177{bottom:475.800000px;}
.y24_c00177{bottom:493.500000px;}
.y49_c00177{bottom:493.950000px;}
.y23_c00177{bottom:511.200000px;}
.y48_c00177{bottom:511.650000px;}
.y22_c00177{bottom:529.200000px;}
.y47_c00177{bottom:529.350000px;}
.y46_c00177{bottom:547.350000px;}
.y21_c00177{bottom:556.500000px;}
.y20_c00177{bottom:564.450000px;}
.y45_c00177{bottom:565.050000px;}
.y44_c00177{bottom:583.350000px;}
.y1f_c00177{bottom:585.300000px;}
.y43_c00177{bottom:601.050000px;}
.y1e_c00177{bottom:604.050000px;}
.y42_c00177{bottom:619.050000px;}
.y1d_c00177{bottom:633.300000px;}
.y41_c00177{bottom:637.050000px;}
.y1c_c00177{bottom:652.650000px;}
.y40_c00177{bottom:654.750000px;}
.y3f_c00177{bottom:672.750000px;}
.y1b_c00177{bottom:673.500000px;}
.y3e_c00177{bottom:690.750000px;}
.y1a_c00177{bottom:692.250000px;}
.y3d_c00177{bottom:708.450000px;}
.y19_c00177{bottom:713.400000px;}
.y3c_c00177{bottom:726.450000px;}
.y18_c00177{bottom:732.150000px;}
.y3b_c00177{bottom:744.150000px;}
.y17_c00177{bottom:749.850000px;}
.y3a_c00177{bottom:762.150000px;}
.y16_c00177{bottom:767.850000px;}
.y39_c00177{bottom:780.150000px;}
.y15_c00177{bottom:785.850000px;}
.y38_c00177{bottom:798.150000px;}
.y14_c00177{bottom:803.550000px;}
.y37_c00177{bottom:815.850000px;}
.y13_c00177{bottom:821.250000px;}
.y36_c00177{bottom:834.150000px;}
.y12_c00177{bottom:839.250000px;}
.y35_c00177{bottom:851.400000px;}
.y11_c00177{bottom:856.950000px;}
.y34_c00177{bottom:869.700000px;}
.y10_c00177{bottom:874.950000px;}
.y33_c00177{bottom:887.700000px;}
.yf_c00177{bottom:892.950000px;}
.y32_c00177{bottom:905.700000px;}
.ye_c00177{bottom:910.650000px;}
.y31_c00177{bottom:923.400000px;}
.yd_c00177{bottom:928.650000px;}
.y30_c00177{bottom:945.750000px;}
.yc_c00177{bottom:946.650000px;}
.y2f_c00177{bottom:963.750000px;}
.yb_c00177{bottom:964.350000px;}
.y2e_c00177{bottom:981.450000px;}
.ya_c00177{bottom:982.350000px;}
.y2d_c00177{bottom:999.450000px;}
.y9_c00177{bottom:1000.050000px;}
.y2c_c00177{bottom:1017.450000px;}
.y8_c00177{bottom:1018.050000px;}
.y2b_c00177{bottom:1035.750000px;}
.y7_c00177{bottom:1036.050000px;}
.y2a_c00177{bottom:1053.000000px;}
.y6_c00177{bottom:1053.750000px;}
.y29_c00177{bottom:1071.000000px;}
.y5_c00177{bottom:1071.750000px;}
.y28_c00177{bottom:1089.000000px;}
.y4_c00177{bottom:1090.050000px;}
.y27_c00177{bottom:1107.000000px;}
.y3_c00177{bottom:1107.750000px;}
.y1_c00177{bottom:1134.300000px;}
.y2_c00177{bottom:1134.600000px;}
.h7_c00177{height:24.000000px;}
.h8_c00177{height:42.000000px;}
.h6_c00177{height:54.000000px;}
.h5_c00177{height:60.000000px;}
.h2_c00177{height:66.000000px;}
.h4_c00177{height:72.000000px;}
.h3_c00177{height:78.000000px;}
.h1_c00177{height:1266.750000px;}
.h0_c00177{height:1266.839905px;}
.w1_c00177{width:963.000000px;}
.w0_c00177{width:963.359985px;}
.x0_c00177{left:0.000000px;}
.x1_c00177{left:172.500000px;}
.x75_c00177{left:173.850000px;}
.x126_c00177{left:186.300000px;}
.x11d_c00177{left:187.500000px;}
.x3_c00177{left:189.300000px;}
.x19_c00177{left:190.800000px;}
.x127_c00177{left:202.500000px;}
.x1a_c00177{left:209.100000px;}
.x71_c00177{left:212.850000px;}
.x11a_c00177{left:214.650000px;}
.x121_c00177{left:215.700000px;}
.x76_c00177{left:217.350000px;}
.x7e_c00177{left:218.700000px;}
.x24_c00177{left:220.050000px;}
.x59_c00177{left:222.450000px;}
.x6b_c00177{left:223.500000px;}
.x43_c00177{left:228.450000px;}
.x13_c00177{left:229.800000px;}
.x36_c00177{left:231.600000px;}
.x31_c00177{left:232.650000px;}
.x7d_c00177{left:235.350000px;}
.x52_c00177{left:237.450000px;}
.x4_c00177{left:238.650000px;}
.x122_c00177{left:240.000000px;}
.x37_c00177{left:241.350000px;}
.x20_c00177{left:243.450000px;}
.x4e_c00177{left:246.000000px;}
.x3c_c00177{left:248.400000px;}
.x14_c00177{left:251.100000px;}
.x2a_c00177{left:252.300000px;}
.x5_c00177{left:253.800000px;}
.x64_c00177{left:255.600000px;}
.x7b_c00177{left:256.800000px;}
.x61_c00177{left:259.200000px;}
.x53_c00177{left:261.150000px;}
.x128_c00177{left:262.500000px;}
.x123_c00177{left:264.900000px;}
.x66_c00177{left:266.550000px;}
.x21_c00177{left:267.900000px;}
.x5f_c00177{left:269.250000px;}
.x7f_c00177{left:270.900000px;}
.x3d_c00177{left:272.100000px;}
.x84_c00177{left:273.450000px;}
.xc_c00177{left:275.700000px;}
.x80_c00177{left:277.050000px;}
.x124_c00177{left:278.250000px;}
.x38_c00177{left:280.200000px;}
.x1b_c00177{left:282.600000px;}
.x25_c00177{left:283.800000px;}
.x81_c00177{left:285.300000px;}
.x32_c00177{left:286.350000px;}
.x2b_c00177{left:289.350000px;}
.x78_c00177{left:290.850000px;}
.x39_c00177{left:293.100000px;}
.x6_c00177{left:295.200000px;}
.x85_c00177{left:301.200000px;}
.x62_c00177{left:302.700000px;}
.x33_c00177{left:306.450000px;}
.x6f_c00177{left:307.950000px;}
.x44_c00177{left:309.750000px;}
.x15_c00177{left:311.250000px;}
.x26_c00177{left:313.650000px;}
.x135_c00177{left:314.850000px;}
.x11e_c00177{left:316.650000px;}
.x49_c00177{left:318.000000px;}
.xd_c00177{left:321.000000px;}
.x34_c00177{left:322.350000px;}
.x67_c00177{left:323.850000px;}
.x60_c00177{left:325.050000px;}
.x3e_c00177{left:326.400000px;}
.x5c_c00177{left:329.400000px;}
.x77_c00177{left:330.450000px;}
.x45_c00177{left:333.900000px;}
.x2c_c00177{left:335.400000px;}
.x16_c00177{left:336.750000px;}
.x5a_c00177{left:338.400000px;}
.x68_c00177{left:339.750000px;}
.x70_c00177{left:342.150000px;}
.x136_c00177{left:343.650000px;}
.x54_c00177{left:344.700000px;}
.x4a_c00177{left:347.850000px;}
.xe_c00177{left:352.650000px;}
.x79_c00177{left:354.150000px;}
.x2d_c00177{left:355.200000px;}
.x1c_c00177{left:356.400000px;}
.x3f_c00177{left:359.850000px;}
.x12a_c00177{left:363.750000px;}
.x72_c00177{left:365.550000px;}
.x55_c00177{left:368.100000px;}
.x86_c00177{left:369.300000px;}
.x7_c00177{left:370.800000px;}
.x3a_c00177{left:372.300000px;}
.x82_c00177{left:374.700000px;}
.x1d_c00177{left:377.700000px;}
.x46_c00177{left:379.650000px;}
.x4f_c00177{left:381.450000px;}
.x35_c00177{left:385.350000px;}
.xf_c00177{left:388.950000px;}
.x8_c00177{left:390.600000px;}
.x27_c00177{left:393.600000px;}
.x129_c00177{left:396.000000px;}
.x7c_c00177{left:397.950000px;}
.x56_c00177{left:399.750000px;}
.x7a_c00177{left:401.250000px;}
.x3b_c00177{left:402.900000px;}
.x6c_c00177{left:404.700000px;}
.x5d_c00177{left:405.750000px;}
.x63_c00177{left:407.100000px;}
.x47_c00177{left:408.150000px;}
.x50_c00177{left:411.750000px;}
.x4b_c00177{left:414.000000px;}
.x11f_c00177{left:416.100000px;}
.x1e_c00177{left:417.600000px;}
.x2_c00177{left:418.800000px;}
.x28_c00177{left:421.650000px;}
.x12b_c00177{left:425.550000px;}
.x9_c00177{left:427.650000px;}
.x17_c00177{left:428.850000px;}
.x40_c00177{left:430.350000px;}
.x2e_c00177{left:431.550000px;}
.x10_c00177{left:433.650000px;}
.xa_c00177{left:435.150000px;}
.x69_c00177{left:436.650000px;}
.x41_c00177{left:439.050000px;}
.x2f_c00177{left:441.300000px;}
.x73_c00177{left:443.400000px;}
.x57_c00177{left:446.550000px;}
.x4c_c00177{left:447.900000px;}
.x6d_c00177{left:451.800000px;}
.x1f_c00177{left:455.100000px;}
.x11_c00177{left:456.300000px;}
.x29_c00177{left:457.950000px;}
.x51_c00177{left:459.600000px;}
.x120_c00177{left:460.950000px;}
.x42_c00177{left:462.150000px;}
.x6a_c00177{left:463.950000px;}
.xb_c00177{left:465.750000px;}
.x11b_c00177{left:468.600000px;}
.x22_c00177{left:469.950000px;}
.x83_c00177{left:472.350000px;}
.x4d_c00177{left:474.150000px;}
.x125_c00177{left:476.400000px;}
.x12_c00177{left:478.200000px;}
.x48_c00177{left:479.400000px;}
.x23_c00177{left:481.050000px;}
.x5e_c00177{left:482.700000px;}
.x5b_c00177{left:484.500000px;}
.x58_c00177{left:486.750000px;}
.x30_c00177{left:487.800000px;}
.x74_c00177{left:491.250000px;}
.x11c_c00177{left:492.750000px;}
.x6e_c00177{left:495.000000px;}
.x65_c00177{left:498.000000px;}
.x18_c00177{left:504.000000px;}
.x137_c00177{left:528.750000px;}
.x119_c00177{left:529.950000px;}
.x92_c00177{left:546.300000px;}
.x87_c00177{left:547.950000px;}
.x134_c00177{left:549.600000px;}
.x93_c00177{left:565.350000px;}
.xbb_c00177{left:567.150000px;}
.x99_c00177{left:568.650000px;}
.x116_c00177{left:570.900000px;}
.x12e_c00177{left:572.400000px;}
.xdf_c00177{left:573.450000px;}
.xeb_c00177{left:575.400000px;}
.x13a_c00177{left:576.450000px;}
.xf6_c00177{left:578.100000px;}
.xcc_c00177{left:579.750000px;}
.xe7_c00177{left:581.400000px;}
.x109_c00177{left:583.650000px;}
.x9a_c00177{left:584.850000px;}
.x133_c00177{left:588.900000px;}
.xfa_c00177{left:590.250000px;}
.xa4_c00177{left:592.950000px;}
.xdb_c00177{left:594.600000px;}
.x88_c00177{left:599.400000px;}
.x101_c00177{left:601.800000px;}
.xc9_c00177{left:603.750000px;}
.xab_c00177{left:608.400000px;}
.xc3_c00177{left:610.200000px;}
.xb2_c00177{left:612.000000px;}
.xdc_c00177{left:613.350000px;}
.x12c_c00177{left:614.550000px;}
.x13b_c00177{left:616.050000px;}
.x94_c00177{left:617.850000px;}
.xe0_c00177{left:619.500000px;}
.x9b_c00177{left:621.600000px;}
.x117_c00177{left:624.600000px;}
.x115_c00177{left:628.050000px;}
.x89_c00177{left:630.300000px;}
.xef_c00177{left:631.500000px;}
.xe8_c00177{left:632.850000px;}
.xb8_c00177{left:634.350000px;}
.xbc_c00177{left:635.850000px;}
.xcd_c00177{left:637.350000px;}
.xd9_c00177{left:640.350000px;}
.x110_c00177{left:641.400000px;}
.xac_c00177{left:643.650000px;}
.x8a_c00177{left:646.500000px;}
.xb3_c00177{left:648.300000px;}
.xec_c00177{left:650.250000px;}
.xf2_c00177{left:653.850000px;}
.xe1_c00177{left:655.200000px;}
.xf7_c00177{left:657.300000px;}
.xb9_c00177{left:658.500000px;}
.x12f_c00177{left:659.850000px;}
.xd5_c00177{left:661.200000px;}
.x9c_c00177{left:662.700000px;}
.xce_c00177{left:666.450000px;}
.xd3_c00177{left:668.400000px;}
.x10a_c00177{left:670.050000px;}
.x9d_c00177{left:671.700000px;}
.xfd_c00177{left:673.800000px;}
.xad_c00177{left:675.750000px;}
.xe2_c00177{left:676.800000px;}
.x95_c00177{left:679.350000px;}
.xa5_c00177{left:681.900000px;}
.xfb_c00177{left:684.450000px;}
.xda_c00177{left:687.900000px;}
.xd6_c00177{left:688.950000px;}
.x8b_c00177{left:690.450000px;}
.xca_c00177{left:691.500000px;}
.xc4_c00177{left:693.300000px;}
.xfe_c00177{left:695.700000px;}
.x105_c00177{left:697.050000px;}
.xc0_c00177{left:699.900000px;}
.xcf_c00177{left:701.400000px;}
.xed_c00177{left:703.500000px;}
.xe9_c00177{left:704.550000px;}
.x10e_c00177{left:705.600000px;}
.x8c_c00177{left:707.700000px;}
.xbd_c00177{left:709.650000px;}
.xdd_c00177{left:711.900000px;}
.xff_c00177{left:715.500000px;}
.x130_c00177{left:717.150000px;}
.x8d_c00177{left:718.800000px;}
.x111_c00177{left:720.150000px;}
.xb4_c00177{left:721.800000px;}
.x9e_c00177{left:723.900000px;}
.x138_c00177{left:725.700000px;}
.xf3_c00177{left:727.350000px;}
.x102_c00177{left:728.550000px;}
.xa6_c00177{left:729.750000px;}
.x8e_c00177{left:733.500000px;}
.x106_c00177{left:734.850000px;}
.x96_c00177{left:735.900000px;}
.xba_c00177{left:737.700000px;}
.xea_c00177{left:740.250000px;}
.xd7_c00177{left:742.650000px;}
.x139_c00177{left:743.700000px;}
.x9f_c00177{left:744.750000px;}
.xa7_c00177{left:745.950000px;}
.xf8_c00177{left:747.300000px;}
.xae_c00177{left:748.500000px;}
.xd4_c00177{left:750.150000px;}
.xf4_c00177{left:751.800000px;}
.x103_c00177{left:753.450000px;}
.x12d_c00177{left:755.700000px;}
.xe5_c00177{left:757.800000px;}
.xc5_c00177{left:758.850000px;}
.xaf_c00177{left:760.050000px;}
.xfc_c00177{left:761.850000px;}
.xb5_c00177{left:762.900000px;}
.xd8_c00177{left:764.550000px;}
.xa8_c00177{left:767.250000px;}
.x118_c00177{left:768.300000px;}
.xa0_c00177{left:770.250000px;}
.xf9_c00177{left:771.450000px;}
.x10b_c00177{left:773.400000px;}
.x131_c00177{left:774.450000px;}
.xf0_c00177{left:776.550000px;}
.xbe_c00177{left:778.800000px;}
.xa1_c00177{left:780.000000px;}
.x107_c00177{left:781.650000px;}
.x10d_c00177{left:783.000000px;}
.xb6_c00177{left:785.250000px;}
.x8f_c00177{left:786.750000px;}
.x112_c00177{left:787.800000px;}
.xc6_c00177{left:789.450000px;}
.xde_c00177{left:790.800000px;}
.xc1_c00177{left:792.000000px;}
.x97_c00177{left:793.950000px;}
.xb0_c00177{left:797.100000px;}
.xd0_c00177{left:799.200000px;}
.xe3_c00177{left:800.700000px;}
.xe6_c00177{left:802.050000px;}
.x132_c00177{left:807.600000px;}
.x104_c00177{left:809.250000px;}
.xee_c00177{left:811.500000px;}
.x113_c00177{left:812.700000px;}
.xa9_c00177{left:813.750000px;}
.xcb_c00177{left:816.900000px;}
.xb1_c00177{left:819.000000px;}
.xd1_c00177{left:820.050000px;}
.x90_c00177{left:821.700000px;}
.xb7_c00177{left:823.050000px;}
.xc7_c00177{left:825.150000px;}
.x100_c00177{left:826.800000px;}
.xe4_c00177{left:829.800000px;}
.xf5_c00177{left:833.250000px;}
.x98_c00177{left:834.300000px;}
.xa2_c00177{left:835.500000px;}
.x91_c00177{left:837.600000px;}
.x10c_c00177{left:839.550000px;}
.x108_c00177{left:842.850000px;}
.xc2_c00177{left:844.200000px;}
.xa3_c00177{left:845.250000px;}
.x10f_c00177{left:847.350000px;}
.xd2_c00177{left:849.150000px;}
.x114_c00177{left:850.200000px;}
.xf1_c00177{left:854.250000px;}
.xc8_c00177{left:855.750000px;}
.xbf_c00177{left:861.600000px;}
.xaa_c00177{left:862.650000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws0_c00177{word-spacing:-9.987261pt;}
.ws5_c00177{word-spacing:-6.295135pt;}
.ws2_c00177{word-spacing:-0.162850pt;}
.ws7_c00177{word-spacing:0.000000pt;}
.ws1_c00177{word-spacing:2.444444pt;}
.ws4_c00177{word-spacing:3.557951pt;}
.ws6_c00177{word-spacing:7.843137pt;}
.ws3_c00177{word-spacing:14.666667pt;}
.fs5_c00177{font-size:21.333333pt;}
.fs6_c00177{font-size:37.333333pt;}
.fs4_c00177{font-size:48.000000pt;}
.fs3_c00177{font-size:53.333333pt;}
.fs0_c00177{font-size:58.666667pt;}
.fs2_c00177{font-size:64.000000pt;}
.fs1_c00177{font-size:69.333333pt;}
.y0_c00177{bottom:0.000000pt;}
.y66_c00177{bottom:160.933333pt;}
.y65_c00177{bottom:176.800000pt;}
.y61_c00177{bottom:180.800000pt;}
.y64_c00177{bottom:192.533333pt;}
.y60_c00177{bottom:196.800000pt;}
.y63_c00177{bottom:208.533333pt;}
.y5f_c00177{bottom:212.533333pt;}
.y62_c00177{bottom:224.266667pt;}
.y5e_c00177{bottom:228.533333pt;}
.y5d_c00177{bottom:244.533333pt;}
.y57_c00177{bottom:246.400000pt;}
.y56_c00177{bottom:259.200000pt;}
.y5c_c00177{bottom:260.533333pt;}
.y55_c00177{bottom:272.000000pt;}
.y5b_c00177{bottom:275.866667pt;}
.y54_c00177{bottom:284.800000pt;}
.y5a_c00177{bottom:292.533333pt;}
.y53_c00177{bottom:297.866667pt;}
.y59_c00177{bottom:307.866667pt;}
.y52_c00177{bottom:319.333333pt;}
.y58_c00177{bottom:327.733333pt;}
.y51_c00177{bottom:335.600000pt;}
.y67_c00177{bottom:343.733333pt;}
.y50_c00177{bottom:351.333333pt;}
.y4f_c00177{bottom:367.333333pt;}
.y4e_c00177{bottom:383.333333pt;}
.y4d_c00177{bottom:387.200000pt;}
.y4c_c00177{bottom:396.800000pt;}
.y4b_c00177{bottom:406.800000pt;}
.y26_c00177{bottom:406.933333pt;}
.y4a_c00177{bottom:422.800000pt;}
.y25_c00177{bottom:422.933333pt;}
.y24_c00177{bottom:438.666667pt;}
.y49_c00177{bottom:439.066667pt;}
.y23_c00177{bottom:454.400000pt;}
.y48_c00177{bottom:454.800000pt;}
.y22_c00177{bottom:470.400000pt;}
.y47_c00177{bottom:470.533333pt;}
.y46_c00177{bottom:486.533333pt;}
.y21_c00177{bottom:494.666667pt;}
.y20_c00177{bottom:501.733333pt;}
.y45_c00177{bottom:502.266667pt;}
.y44_c00177{bottom:518.533333pt;}
.y1f_c00177{bottom:520.266667pt;}
.y43_c00177{bottom:534.266667pt;}
.y1e_c00177{bottom:536.933333pt;}
.y42_c00177{bottom:550.266667pt;}
.y1d_c00177{bottom:562.933333pt;}
.y41_c00177{bottom:566.266667pt;}
.y1c_c00177{bottom:580.133333pt;}
.y40_c00177{bottom:582.000000pt;}
.y3f_c00177{bottom:598.000000pt;}
.y1b_c00177{bottom:598.666667pt;}
.y3e_c00177{bottom:614.000000pt;}
.y1a_c00177{bottom:615.333333pt;}
.y3d_c00177{bottom:629.733333pt;}
.y19_c00177{bottom:634.133333pt;}
.y3c_c00177{bottom:645.733333pt;}
.y18_c00177{bottom:650.800000pt;}
.y3b_c00177{bottom:661.466667pt;}
.y17_c00177{bottom:666.533333pt;}
.y3a_c00177{bottom:677.466667pt;}
.y16_c00177{bottom:682.533333pt;}
.y39_c00177{bottom:693.466667pt;}
.y15_c00177{bottom:698.533333pt;}
.y38_c00177{bottom:709.466667pt;}
.y14_c00177{bottom:714.266667pt;}
.y37_c00177{bottom:725.200000pt;}
.y13_c00177{bottom:730.000000pt;}
.y36_c00177{bottom:741.466667pt;}
.y12_c00177{bottom:746.000000pt;}
.y35_c00177{bottom:756.800000pt;}
.y11_c00177{bottom:761.733333pt;}
.y34_c00177{bottom:773.066667pt;}
.y10_c00177{bottom:777.733333pt;}
.y33_c00177{bottom:789.066667pt;}
.yf_c00177{bottom:793.733333pt;}
.y32_c00177{bottom:805.066667pt;}
.ye_c00177{bottom:809.466667pt;}
.y31_c00177{bottom:820.800000pt;}
.yd_c00177{bottom:825.466667pt;}
.y30_c00177{bottom:840.666667pt;}
.yc_c00177{bottom:841.466667pt;}
.y2f_c00177{bottom:856.666667pt;}
.yb_c00177{bottom:857.200000pt;}
.y2e_c00177{bottom:872.400000pt;}
.ya_c00177{bottom:873.200000pt;}
.y2d_c00177{bottom:888.400000pt;}
.y9_c00177{bottom:888.933333pt;}
.y2c_c00177{bottom:904.400000pt;}
.y8_c00177{bottom:904.933333pt;}
.y2b_c00177{bottom:920.666667pt;}
.y7_c00177{bottom:920.933333pt;}
.y2a_c00177{bottom:936.000000pt;}
.y6_c00177{bottom:936.666667pt;}
.y29_c00177{bottom:952.000000pt;}
.y5_c00177{bottom:952.666667pt;}
.y28_c00177{bottom:968.000000pt;}
.y4_c00177{bottom:968.933333pt;}
.y27_c00177{bottom:984.000000pt;}
.y3_c00177{bottom:984.666667pt;}
.y1_c00177{bottom:1008.266667pt;}
.y2_c00177{bottom:1008.533333pt;}
.h7_c00177{height:21.333333pt;}
.h8_c00177{height:37.333333pt;}
.h6_c00177{height:48.000000pt;}
.h5_c00177{height:53.333333pt;}
.h2_c00177{height:58.666667pt;}
.h4_c00177{height:64.000000pt;}
.h3_c00177{height:69.333333pt;}
.h1_c00177{height:1126.000000pt;}
.h0_c00177{height:1126.079916pt;}
.w1_c00177{width:856.000000pt;}
.w0_c00177{width:856.319987pt;}
.x0_c00177{left:0.000000pt;}
.x1_c00177{left:153.333333pt;}
.x75_c00177{left:154.533333pt;}
.x126_c00177{left:165.600000pt;}
.x11d_c00177{left:166.666667pt;}
.x3_c00177{left:168.266667pt;}
.x19_c00177{left:169.600000pt;}
.x127_c00177{left:180.000000pt;}
.x1a_c00177{left:185.866667pt;}
.x71_c00177{left:189.200000pt;}
.x11a_c00177{left:190.800000pt;}
.x121_c00177{left:191.733333pt;}
.x76_c00177{left:193.200000pt;}
.x7e_c00177{left:194.400000pt;}
.x24_c00177{left:195.600000pt;}
.x59_c00177{left:197.733333pt;}
.x6b_c00177{left:198.666667pt;}
.x43_c00177{left:203.066667pt;}
.x13_c00177{left:204.266667pt;}
.x36_c00177{left:205.866667pt;}
.x31_c00177{left:206.800000pt;}
.x7d_c00177{left:209.200000pt;}
.x52_c00177{left:211.066667pt;}
.x4_c00177{left:212.133333pt;}
.x122_c00177{left:213.333333pt;}
.x37_c00177{left:214.533333pt;}
.x20_c00177{left:216.400000pt;}
.x4e_c00177{left:218.666667pt;}
.x3c_c00177{left:220.800000pt;}
.x14_c00177{left:223.200000pt;}
.x2a_c00177{left:224.266667pt;}
.x5_c00177{left:225.600000pt;}
.x64_c00177{left:227.200000pt;}
.x7b_c00177{left:228.266667pt;}
.x61_c00177{left:230.400000pt;}
.x53_c00177{left:232.133333pt;}
.x128_c00177{left:233.333333pt;}
.x123_c00177{left:235.466667pt;}
.x66_c00177{left:236.933333pt;}
.x21_c00177{left:238.133333pt;}
.x5f_c00177{left:239.333333pt;}
.x7f_c00177{left:240.800000pt;}
.x3d_c00177{left:241.866667pt;}
.x84_c00177{left:243.066667pt;}
.xc_c00177{left:245.066667pt;}
.x80_c00177{left:246.266667pt;}
.x124_c00177{left:247.333333pt;}
.x38_c00177{left:249.066667pt;}
.x1b_c00177{left:251.200000pt;}
.x25_c00177{left:252.266667pt;}
.x81_c00177{left:253.600000pt;}
.x32_c00177{left:254.533333pt;}
.x2b_c00177{left:257.200000pt;}
.x78_c00177{left:258.533333pt;}
.x39_c00177{left:260.533333pt;}
.x6_c00177{left:262.400000pt;}
.x85_c00177{left:267.733333pt;}
.x62_c00177{left:269.066667pt;}
.x33_c00177{left:272.400000pt;}
.x6f_c00177{left:273.733333pt;}
.x44_c00177{left:275.333333pt;}
.x15_c00177{left:276.666667pt;}
.x26_c00177{left:278.800000pt;}
.x135_c00177{left:279.866667pt;}
.x11e_c00177{left:281.466667pt;}
.x49_c00177{left:282.666667pt;}
.xd_c00177{left:285.333333pt;}
.x34_c00177{left:286.533333pt;}
.x67_c00177{left:287.866667pt;}
.x60_c00177{left:288.933333pt;}
.x3e_c00177{left:290.133333pt;}
.x5c_c00177{left:292.800000pt;}
.x77_c00177{left:293.733333pt;}
.x45_c00177{left:296.800000pt;}
.x2c_c00177{left:298.133333pt;}
.x16_c00177{left:299.333333pt;}
.x5a_c00177{left:300.800000pt;}
.x68_c00177{left:302.000000pt;}
.x70_c00177{left:304.133333pt;}
.x136_c00177{left:305.466667pt;}
.x54_c00177{left:306.400000pt;}
.x4a_c00177{left:309.200000pt;}
.xe_c00177{left:313.466667pt;}
.x79_c00177{left:314.800000pt;}
.x2d_c00177{left:315.733333pt;}
.x1c_c00177{left:316.800000pt;}
.x3f_c00177{left:319.866667pt;}
.x12a_c00177{left:323.333333pt;}
.x72_c00177{left:324.933333pt;}
.x55_c00177{left:327.200000pt;}
.x86_c00177{left:328.266667pt;}
.x7_c00177{left:329.600000pt;}
.x3a_c00177{left:330.933333pt;}
.x82_c00177{left:333.066667pt;}
.x1d_c00177{left:335.733333pt;}
.x46_c00177{left:337.466667pt;}
.x4f_c00177{left:339.066667pt;}
.x35_c00177{left:342.533333pt;}
.xf_c00177{left:345.733333pt;}
.x8_c00177{left:347.200000pt;}
.x27_c00177{left:349.866667pt;}
.x129_c00177{left:352.000000pt;}
.x7c_c00177{left:353.733333pt;}
.x56_c00177{left:355.333333pt;}
.x7a_c00177{left:356.666667pt;}
.x3b_c00177{left:358.133333pt;}
.x6c_c00177{left:359.733333pt;}
.x5d_c00177{left:360.666667pt;}
.x63_c00177{left:361.866667pt;}
.x47_c00177{left:362.800000pt;}
.x50_c00177{left:366.000000pt;}
.x4b_c00177{left:368.000000pt;}
.x11f_c00177{left:369.866667pt;}
.x1e_c00177{left:371.200000pt;}
.x2_c00177{left:372.266667pt;}
.x28_c00177{left:374.800000pt;}
.x12b_c00177{left:378.266667pt;}
.x9_c00177{left:380.133333pt;}
.x17_c00177{left:381.200000pt;}
.x40_c00177{left:382.533333pt;}
.x2e_c00177{left:383.600000pt;}
.x10_c00177{left:385.466667pt;}
.xa_c00177{left:386.800000pt;}
.x69_c00177{left:388.133333pt;}
.x41_c00177{left:390.266667pt;}
.x2f_c00177{left:392.266667pt;}
.x73_c00177{left:394.133333pt;}
.x57_c00177{left:396.933333pt;}
.x4c_c00177{left:398.133333pt;}
.x6d_c00177{left:401.600000pt;}
.x1f_c00177{left:404.533333pt;}
.x11_c00177{left:405.600000pt;}
.x29_c00177{left:407.066667pt;}
.x51_c00177{left:408.533333pt;}
.x120_c00177{left:409.733333pt;}
.x42_c00177{left:410.800000pt;}
.x6a_c00177{left:412.400000pt;}
.xb_c00177{left:414.000000pt;}
.x11b_c00177{left:416.533333pt;}
.x22_c00177{left:417.733333pt;}
.x83_c00177{left:419.866667pt;}
.x4d_c00177{left:421.466667pt;}
.x125_c00177{left:423.466667pt;}
.x12_c00177{left:425.066667pt;}
.x48_c00177{left:426.133333pt;}
.x23_c00177{left:427.600000pt;}
.x5e_c00177{left:429.066667pt;}
.x5b_c00177{left:430.666667pt;}
.x58_c00177{left:432.666667pt;}
.x30_c00177{left:433.600000pt;}
.x74_c00177{left:436.666667pt;}
.x11c_c00177{left:438.000000pt;}
.x6e_c00177{left:440.000000pt;}
.x65_c00177{left:442.666667pt;}
.x18_c00177{left:448.000000pt;}
.x137_c00177{left:470.000000pt;}
.x119_c00177{left:471.066667pt;}
.x92_c00177{left:485.600000pt;}
.x87_c00177{left:487.066667pt;}
.x134_c00177{left:488.533333pt;}
.x93_c00177{left:502.533333pt;}
.xbb_c00177{left:504.133333pt;}
.x99_c00177{left:505.466667pt;}
.x116_c00177{left:507.466667pt;}
.x12e_c00177{left:508.800000pt;}
.xdf_c00177{left:509.733333pt;}
.xeb_c00177{left:511.466667pt;}
.x13a_c00177{left:512.400000pt;}
.xf6_c00177{left:513.866667pt;}
.xcc_c00177{left:515.333333pt;}
.xe7_c00177{left:516.800000pt;}
.x109_c00177{left:518.800000pt;}
.x9a_c00177{left:519.866667pt;}
.x133_c00177{left:523.466667pt;}
.xfa_c00177{left:524.666667pt;}
.xa4_c00177{left:527.066667pt;}
.xdb_c00177{left:528.533333pt;}
.x88_c00177{left:532.800000pt;}
.x101_c00177{left:534.933333pt;}
.xc9_c00177{left:536.666667pt;}
.xab_c00177{left:540.800000pt;}
.xc3_c00177{left:542.400000pt;}
.xb2_c00177{left:544.000000pt;}
.xdc_c00177{left:545.200000pt;}
.x12c_c00177{left:546.266667pt;}
.x13b_c00177{left:547.600000pt;}
.x94_c00177{left:549.200000pt;}
.xe0_c00177{left:550.666667pt;}
.x9b_c00177{left:552.533333pt;}
.x117_c00177{left:555.200000pt;}
.x115_c00177{left:558.266667pt;}
.x89_c00177{left:560.266667pt;}
.xef_c00177{left:561.333333pt;}
.xe8_c00177{left:562.533333pt;}
.xb8_c00177{left:563.866667pt;}
.xbc_c00177{left:565.200000pt;}
.xcd_c00177{left:566.533333pt;}
.xd9_c00177{left:569.200000pt;}
.x110_c00177{left:570.133333pt;}
.xac_c00177{left:572.133333pt;}
.x8a_c00177{left:574.666667pt;}
.xb3_c00177{left:576.266667pt;}
.xec_c00177{left:578.000000pt;}
.xf2_c00177{left:581.200000pt;}
.xe1_c00177{left:582.400000pt;}
.xf7_c00177{left:584.266667pt;}
.xb9_c00177{left:585.333333pt;}
.x12f_c00177{left:586.533333pt;}
.xd5_c00177{left:587.733333pt;}
.x9c_c00177{left:589.066667pt;}
.xce_c00177{left:592.400000pt;}
.xd3_c00177{left:594.133333pt;}
.x10a_c00177{left:595.600000pt;}
.x9d_c00177{left:597.066667pt;}
.xfd_c00177{left:598.933333pt;}
.xad_c00177{left:600.666667pt;}
.xe2_c00177{left:601.600000pt;}
.x95_c00177{left:603.866667pt;}
.xa5_c00177{left:606.133333pt;}
.xfb_c00177{left:608.400000pt;}
.xda_c00177{left:611.466667pt;}
.xd6_c00177{left:612.400000pt;}
.x8b_c00177{left:613.733333pt;}
.xca_c00177{left:614.666667pt;}
.xc4_c00177{left:616.266667pt;}
.xfe_c00177{left:618.400000pt;}
.x105_c00177{left:619.600000pt;}
.xc0_c00177{left:622.133333pt;}
.xcf_c00177{left:623.466667pt;}
.xed_c00177{left:625.333333pt;}
.xe9_c00177{left:626.266667pt;}
.x10e_c00177{left:627.200000pt;}
.x8c_c00177{left:629.066667pt;}
.xbd_c00177{left:630.800000pt;}
.xdd_c00177{left:632.800000pt;}
.xff_c00177{left:636.000000pt;}
.x130_c00177{left:637.466667pt;}
.x8d_c00177{left:638.933333pt;}
.x111_c00177{left:640.133333pt;}
.xb4_c00177{left:641.600000pt;}
.x9e_c00177{left:643.466667pt;}
.x138_c00177{left:645.066667pt;}
.xf3_c00177{left:646.533333pt;}
.x102_c00177{left:647.600000pt;}
.xa6_c00177{left:648.666667pt;}
.x8e_c00177{left:652.000000pt;}
.x106_c00177{left:653.200000pt;}
.x96_c00177{left:654.133333pt;}
.xba_c00177{left:655.733333pt;}
.xea_c00177{left:658.000000pt;}
.xd7_c00177{left:660.133333pt;}
.x139_c00177{left:661.066667pt;}
.x9f_c00177{left:662.000000pt;}
.xa7_c00177{left:663.066667pt;}
.xf8_c00177{left:664.266667pt;}
.xae_c00177{left:665.333333pt;}
.xd4_c00177{left:666.800000pt;}
.xf4_c00177{left:668.266667pt;}
.x103_c00177{left:669.733333pt;}
.x12d_c00177{left:671.733333pt;}
.xe5_c00177{left:673.600000pt;}
.xc5_c00177{left:674.533333pt;}
.xaf_c00177{left:675.600000pt;}
.xfc_c00177{left:677.200000pt;}
.xb5_c00177{left:678.133333pt;}
.xd8_c00177{left:679.600000pt;}
.xa8_c00177{left:682.000000pt;}
.x118_c00177{left:682.933333pt;}
.xa0_c00177{left:684.666667pt;}
.xf9_c00177{left:685.733333pt;}
.x10b_c00177{left:687.466667pt;}
.x131_c00177{left:688.400000pt;}
.xf0_c00177{left:690.266667pt;}
.xbe_c00177{left:692.266667pt;}
.xa1_c00177{left:693.333333pt;}
.x107_c00177{left:694.800000pt;}
.x10d_c00177{left:696.000000pt;}
.xb6_c00177{left:698.000000pt;}
.x8f_c00177{left:699.333333pt;}
.x112_c00177{left:700.266667pt;}
.xc6_c00177{left:701.733333pt;}
.xde_c00177{left:702.933333pt;}
.xc1_c00177{left:704.000000pt;}
.x97_c00177{left:705.733333pt;}
.xb0_c00177{left:708.533333pt;}
.xd0_c00177{left:710.400000pt;}
.xe3_c00177{left:711.733333pt;}
.xe6_c00177{left:712.933333pt;}
.x132_c00177{left:717.866667pt;}
.x104_c00177{left:719.333333pt;}
.xee_c00177{left:721.333333pt;}
.x113_c00177{left:722.400000pt;}
.xa9_c00177{left:723.333333pt;}
.xcb_c00177{left:726.133333pt;}
.xb1_c00177{left:728.000000pt;}
.xd1_c00177{left:728.933333pt;}
.x90_c00177{left:730.400000pt;}
.xb7_c00177{left:731.600000pt;}
.xc7_c00177{left:733.466667pt;}
.x100_c00177{left:734.933333pt;}
.xe4_c00177{left:737.600000pt;}
.xf5_c00177{left:740.666667pt;}
.x98_c00177{left:741.600000pt;}
.xa2_c00177{left:742.666667pt;}
.x91_c00177{left:744.533333pt;}
.x10c_c00177{left:746.266667pt;}
.x108_c00177{left:749.200000pt;}
.xc2_c00177{left:750.400000pt;}
.xa3_c00177{left:751.333333pt;}
.x10f_c00177{left:753.200000pt;}
.xd2_c00177{left:754.800000pt;}
.x114_c00177{left:755.733333pt;}
.xf1_c00177{left:759.333333pt;}
.xc8_c00177{left:760.666667pt;}
.xbf_c00177{left:765.866667pt;}
.xaa_c00177{left:766.800000pt;}
}





/* 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_c00178 {
    display:none;
  }
  .loading-indicator_c00178.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00178 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_c00178 { 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_c00178" -> "#page-container .classname_c00178")
 */
.pf_c00178 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00178 { /* 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_c00178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00178 { /* 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_c00178 { /* 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_c00178 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00178 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00178 {overflow:visible;}
  }
}
.c_c00178 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00178 { /* 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_c00178:after { /* webkit #35443 */
  content: '';
}
.t_c00178:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00178 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 */
}
.__c00178 { /* 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_c00178 { /* info for Javascript */
  display:none;
}
.l_c00178 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00178 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00178 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00178: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_c00178 {
    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_c00178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00178.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_c00178 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00178;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.000000;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;}
.m82_c00178{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00178{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00178{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00178{transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);}
.md0_c00178{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00178{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00178{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00178{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00178{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m41_c00178{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m28_c00178{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m71_c00178{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00178{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m65_c00178{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00178{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mda_c00178{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00178{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00178{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00178{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c00178{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m18_c00178{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00178{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00178{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m75_c00178{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md6_c00178{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00178{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m6_c00178{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00178{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m97_c00178{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00178{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me0_c00178{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00178{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m85_c00178{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00178{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mce_c00178{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m72_c00178{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m31_c00178{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m91_c00178{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00178{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m55_c00178{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m69_c00178{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.md4_c00178{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00178{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m51_c00178{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m53_c00178{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00178{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00178{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00178{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m92_c00178{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m86_c00178{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m34_c00178{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mde_c00178{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md5_c00178{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m93_c00178{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m88_c00178{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m59_c00178{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mec_c00178{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m16_c00178{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8_c00178{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.maf_c00178{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.me_c00178{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00178{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00178{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00178{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00178{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m56_c00178{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m77_c00178{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00178{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00178{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00178{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00178{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00178{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00178{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m99_c00178{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m13_c00178{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m42_c00178{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md3_c00178{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m19_c00178{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00178{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mca_c00178{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m94_c00178{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mee_c00178{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m4_c00178{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m84_c00178{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m61_c00178{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m33_c00178{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m73_c00178{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m96_c00178{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00178{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m70_c00178{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mad_c00178{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m38_c00178{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00178{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m32_c00178{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.maa_c00178{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m27_c00178{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7_c00178{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00178{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00178{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m48_c00178{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma_c00178{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1_c00178{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m74_c00178{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m46_c00178{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md_c00178{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00178{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00178{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m44_c00178{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m87_c00178{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00178{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00178{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m10_c00178{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00178{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00178{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m79_c00178{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00178{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00178{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m57_c00178{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00178{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00178{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m40_c00178{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00178{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m78_c00178{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m76_c00178{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00178{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m37_c00178{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m47_c00178{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m60_c00178{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mc_c00178{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00178{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m45_c00178{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2_c00178{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00178{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00178{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00178{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00178{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00178{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m43_c00178{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00178{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.md8_c00178{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00178{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00178{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.meb_c00178{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m15_c00178{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00178{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00178{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00178{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m5_c00178{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00178{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00178{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00178{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m62_c00178{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00178{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3_c00178{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00178{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m83_c00178{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m25_c00178{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m95_c00178{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00178{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00178{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m89_c00178{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m17_c00178{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00178{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m35_c00178{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00178{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00178{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m30_c00178{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m29_c00178{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00178{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me1_c00178{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m20_c00178{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00178{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00178{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m98_c00178{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m58_c00178{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00178{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mab_c00178{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00178{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m14_c00178{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00178{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00178{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00178{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m63_c00178{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mea_c00178{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m90_c00178{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md7_c00178{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00178{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m66_c00178{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00178{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m81_c00178{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m39_c00178{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00178{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9_c00178{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00178{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m67_c00178{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m21_c00178{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md9_c00178{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00178{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m52_c00178{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mae_c00178{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m12_c00178{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mac_c00178{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m49_c00178{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00178{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m80_c00178{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00178{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m22_c00178{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00178{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me3_c00178{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m54_c00178{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me9_c00178{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00178{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);}
.m50_c00178{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mef_c00178{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c00178{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00178{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m26_c00178{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00178{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m23_c00178{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00178{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m36_c00178{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00178{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m68_c00178{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00178{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00178{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00178{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00178{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m24_c00178{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me4_c00178{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00178{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00178{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md2_c00178{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.med_c00178{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mb_c00178{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00178{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00178{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00178{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.md1_c00178{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m64_c00178{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00178{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.me2_c00178{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00178{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.me5_c00178{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00178{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00178{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00178{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.mba_c00178{transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);}
.me8_c00178{transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);}
.me6_c00178{transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00178{transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);}
.me7_c00178{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00178{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m0_c00178{transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00178{transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00178{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls0_c00178{letter-spacing:0.000000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{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__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00178{word-spacing:-18.600000px;}
.ws0_c00178{word-spacing:-9.439490px;}
.ws1_c00178{word-spacing:-3.498282px;}
.ws4_c00178{word-spacing:0.000000px;}
.ws3_c00178{word-spacing:155.115282px;}
._0_c00178{width:381.579088px;}
.fc0_c00178{color:transparent;}
.fs4_c00178{font-size:24.000000px;}
.fs3_c00178{font-size:30.000000px;}
.fs6_c00178{font-size:54.000000px;}
.fs2_c00178{font-size:60.000000px;}
.fs1_c00178{font-size:66.000000px;}
.fs5_c00178{font-size:72.000000px;}
.fs0_c00178{font-size:78.000000px;}
.y0_c00178{bottom:0.000000px;}
.y57_c00178{bottom:171.000000px;}
.y56_c00178{bottom:198.450000px;}
.y55_c00178{bottom:207.450000px;}
.y54_c00178{bottom:226.500000px;}
.y53_c00178{bottom:234.750000px;}
.y52_c00178{bottom:264.900000px;}
.y51_c00178{bottom:283.050000px;}
.y50_c00178{bottom:300.300000px;}
.y4d_c00178{bottom:327.300000px;}
.y4f_c00178{bottom:334.050000px;}
.y4c_c00178{bottom:345.600000px;}
.y4b_c00178{bottom:362.850000px;}
.y48_c00178{bottom:369.450000px;}
.y4e_c00178{bottom:378.750000px;}
.y4a_c00178{bottom:380.850000px;}
.y47_c00178{bottom:391.350000px;}
.y49_c00178{bottom:398.550000px;}
.y46_c00178{bottom:409.950000px;}
.y45_c00178{bottom:425.100000px;}
.y44_c00178{bottom:445.350000px;}
.y43_c00178{bottom:465.900000px;}
.y42_c00178{bottom:483.900000px;}
.y41_c00178{bottom:507.600000px;}
.y3a_c00178{bottom:509.850000px;}
.y39_c00178{bottom:527.850000px;}
.y40_c00178{bottom:529.950000px;}
.y38_c00178{bottom:545.550000px;}
.y3f_c00178{bottom:548.700000px;}
.y37_c00178{bottom:563.550000px;}
.y3e_c00178{bottom:566.700000px;}
.y36_c00178{bottom:581.250000px;}
.y3d_c00178{bottom:588.600000px;}
.y35_c00178{bottom:599.250000px;}
.y34_c00178{bottom:616.950000px;}
.y3c_c00178{bottom:619.650000px;}
.y33_c00178{bottom:634.650000px;}
.y32_c00178{bottom:652.650000px;}
.y3b_c00178{bottom:654.900000px;}
.y31_c00178{bottom:670.350000px;}
.y30_c00178{bottom:682.200000px;}
.y2f_c00178{bottom:690.450000px;}
.y2e_c00178{bottom:696.600000px;}
.y2d_c00178{bottom:716.700000px;}
.y29_c00178{bottom:723.600000px;}
.y2c_c00178{bottom:739.050000px;}
.y28_c00178{bottom:741.300000px;}
.y2b_c00178{bottom:756.750000px;}
.y27_c00178{bottom:763.200000px;}
.y2a_c00178{bottom:774.750000px;}
.y26_c00178{bottom:785.850000px;}
.y22_c00178{bottom:796.950000px;}
.y25_c00178{bottom:803.550000px;}
.y21_c00178{bottom:814.650000px;}
.y24_c00178{bottom:825.150000px;}
.y20_c00178{bottom:832.350000px;}
.y23_c00178{bottom:847.800000px;}
.y1f_c00178{bottom:850.350000px;}
.y1e_c00178{bottom:865.500000px;}
.y10_c00178{bottom:868.200000px;}
.yf_c00178{bottom:885.900000px;}
.y1d_c00178{bottom:887.700000px;}
.ye_c00178{bottom:904.200000px;}
.y1c_c00178{bottom:905.400000px;}
.yd_c00178{bottom:921.900000px;}
.y1b_c00178{bottom:927.300000px;}
.yc_c00178{bottom:939.900000px;}
.y1a_c00178{bottom:949.650000px;}
.yb_c00178{bottom:958.200000px;}
.y19_c00178{bottom:967.650000px;}
.ya_c00178{bottom:975.900000px;}
.y18_c00178{bottom:985.650000px;}
.y9_c00178{bottom:993.900000px;}
.y17_c00178{bottom:1003.350000px;}
.y8_c00178{bottom:1011.600000px;}
.y16_c00178{bottom:1025.250000px;}
.y7_c00178{bottom:1029.600000px;}
.y15_c00178{bottom:1047.450000px;}
.y6_c00178{bottom:1050.150000px;}
.y5_c00178{bottom:1064.850000px;}
.y14_c00178{bottom:1065.450000px;}
.y13_c00178{bottom:1083.150000px;}
.y4_c00178{bottom:1085.400000px;}
.y12_c00178{bottom:1101.150000px;}
.y3_c00178{bottom:1103.400000px;}
.y11_c00178{bottom:1118.850000px;}
.y2_c00178{bottom:1121.100000px;}
.y1_c00178{bottom:1146.600000px;}
.h6_c00178{height:24.000000px;}
.h5_c00178{height:30.000000px;}
.h8_c00178{height:54.000000px;}
.h4_c00178{height:60.000000px;}
.h3_c00178{height:66.000000px;}
.h7_c00178{height:72.000000px;}
.h2_c00178{height:78.000000px;}
.h0_c00178{height:1271.160094px;}
.h1_c00178{height:1271.250000px;}
.w1_c00178{width:963.000000px;}
.w0_c00178{width:963.359985px;}
.x0_c00178{left:0.000000px;}
.x11a_c00178{left:79.200000px;}
.x105_c00178{left:93.600000px;}
.xc8_c00178{left:95.700000px;}
.xc6_c00178{left:96.900000px;}
.x13_c00178{left:98.250000px;}
.x12d_c00178{left:111.900000px;}
.x1e_c00178{left:113.400000px;}
.x2d_c00178{left:116.100000px;}
.x3_c00178{left:117.300000px;}
.xeb_c00178{left:130.350000px;}
.xf0_c00178{left:132.450000px;}
.xbd_c00178{left:134.700000px;}
.x2e_c00178{left:136.950000px;}
.x34_c00178{left:138.900000px;}
.x26_c00178{left:142.800000px;}
.xfd_c00178{left:144.750000px;}
.x126_c00178{left:146.550000px;}
.x4e_c00178{left:147.750000px;}
.xd_c00178{left:150.600000px;}
.x3e_c00178{left:152.850000px;}
.xc4_c00178{left:155.250000px;}
.xec_c00178{left:156.300000px;}
.x14_c00178{left:157.350000px;}
.xaa_c00178{left:159.150000px;}
.x1f_c00178{left:160.500000px;}
.x2f_c00178{left:162.150000px;}
.x9a_c00178{left:163.500000px;}
.x4_c00178{left:164.850000px;}
.xf2_c00178{left:166.500000px;}
.xa5_c00178{left:169.950000px;}
.x44_c00178{left:172.050000px;}
.xed_c00178{left:173.100000px;}
.xab_c00178{left:175.350000px;}
.x9b_c00178{left:180.000000px;}
.x20_c00178{left:184.050000px;}
.x35_c00178{left:186.000000px;}
.xf3_c00178{left:188.100000px;}
.xf6_c00178{left:190.050000px;}
.x38_c00178{left:192.900000px;}
.x127_c00178{left:194.400000px;}
.x5_c00178{left:196.500000px;}
.xe_c00178{left:198.450000px;}
.xee_c00178{left:199.800000px;}
.xf4_c00178{left:201.000000px;}
.xc7_c00178{left:203.100000px;}
.x128_c00178{left:204.150000px;}
.xa0_c00178{left:205.200000px;}
.x32_c00178{left:207.300000px;}
.xfe_c00178{left:208.950000px;}
.x6_c00178{left:212.700000px;}
.x3f_c00178{left:214.050000px;}
.x21_c00178{left:216.450000px;}
.x15_c00178{left:220.050000px;}
.x106_c00178{left:221.700000px;}
.xc5_c00178{left:223.350000px;}
.x108_c00178{left:224.700000px;}
.xf_c00178{left:226.950000px;}
.xa1_c00178{left:228.900000px;}
.xf5_c00178{left:231.300000px;}
.x40_c00178{left:232.350000px;}
.x9c_c00178{left:235.350000px;}
.xf7_c00178{left:238.650000px;}
.xa6_c00178{left:240.450000px;}
.x4a_c00178{left:244.200000px;}
.x30_c00178{left:246.000000px;}
.x27_c00178{left:249.000000px;}
.xf1_c00178{left:250.500000px;}
.x7_c00178{left:252.300000px;}
.x41_c00178{left:253.950000px;}
.x39_c00178{left:256.200000px;}
.x28_c00178{left:258.300000px;}
.x16_c00178{left:259.650000px;}
.x4b_c00178{left:264.750000px;}
.xf8_c00178{left:266.400000px;}
.x8_c00178{left:268.200000px;}
.xff_c00178{left:270.600000px;}
.xa7_c00178{left:271.800000px;}
.xc1_c00178{left:273.750000px;}
.x109_c00178{left:275.850000px;}
.x3a_c00178{left:277.050000px;}
.x17_c00178{left:278.700000px;}
.x129_c00178{left:280.050000px;}
.x107_c00178{left:282.300000px;}
.x45_c00178{left:283.350000px;}
.x29_c00178{left:285.300000px;}
.x22_c00178{left:286.350000px;}
.x9_c00178{left:287.700000px;}
.x10_c00178{left:291.450000px;}
.x100_c00178{left:292.500000px;}
.x31_c00178{left:293.850000px;}
.xbe_c00178{left:295.500000px;}
.x4c_c00178{left:299.250000px;}
.x46_c00178{left:300.300000px;}
.xf9_c00178{left:302.400000px;}
.x101_c00178{left:304.050000px;}
.x23_c00178{left:306.900000px;}
.x42_c00178{left:310.050000px;}
.x36_c00178{left:313.050000px;}
.x18_c00178{left:315.750000px;}
.xac_c00178{left:316.950000px;}
.xa2_c00178{left:318.900000px;}
.x3b_c00178{left:320.550000px;}
.x4f_c00178{left:322.650000px;}
.xef_c00178{left:323.700000px;}
.x47_c00178{left:326.250000px;}
.xa_c00178{left:328.050000px;}
.x19_c00178{left:331.200000px;}
.x121_c00178{left:333.750000px;}
.x48_c00178{left:334.950000px;}
.x9d_c00178{left:336.600000px;}
.xa8_c00178{left:338.100000px;}
.x4d_c00178{left:342.150000px;}
.xa3_c00178{left:343.350000px;}
.x1_c00178{left:345.300000px;}
.x1a_c00178{left:349.500000px;}
.xb_c00178{left:352.500000px;}
.xbf_c00178{left:353.850000px;}
.x2a_c00178{left:356.250000px;}
.x24_c00178{left:359.850000px;}
.x43_c00178{left:361.500000px;}
.x3c_c00178{left:362.700000px;}
.x1b_c00178{left:364.200000px;}
.xa9_c00178{left:366.150000px;}
.x49_c00178{left:368.850000px;}
.xc9_c00178{left:373.350000px;}
.x2b_c00178{left:376.050000px;}
.xc0_c00178{left:382.950000px;}
.x9e_c00178{left:386.250000px;}
.x25_c00178{left:388.650000px;}
.x1c_c00178{left:390.450000px;}
.x11_c00178{left:391.650000px;}
.x37_c00178{left:394.050000px;}
.xc2_c00178{left:397.950000px;}
.x1d_c00178{left:399.450000px;}
.x33_c00178{left:400.950000px;}
.x2c_c00178{left:402.300000px;}
.x9f_c00178{left:403.950000px;}
.xc_c00178{left:410.850000px;}
.x12_c00178{left:412.200000px;}
.xa4_c00178{left:414.000000px;}
.x3d_c00178{left:419.250000px;}
.xc3_c00178{left:422.400000px;}
.x122_c00178{left:427.050000px;}
.xfa_c00178{left:452.250000px;}
.xcb_c00178{left:453.300000px;}
.x123_c00178{left:466.350000px;}
.x110_c00178{left:468.600000px;}
.xe5_c00178{left:469.650000px;}
.xcf_c00178{left:470.850000px;}
.xad_c00178{left:471.900000px;}
.x7c_c00178{left:472.950000px;}
.x6b_c00178{left:474.000000px;}
.x56_c00178{left:475.200000px;}
.x94_c00178{left:482.400000px;}
.x10a_c00178{left:487.500000px;}
.x75_c00178{left:489.900000px;}
.x86_c00178{left:491.100000px;}
.x72_c00178{left:492.450000px;}
.x50_c00178{left:493.950000px;}
.x102_c00178{left:495.450000px;}
.xd4_c00178{left:499.200000px;}
.x7d_c00178{left:502.050000px;}
.xb1_c00178{left:504.450000px;}
.x57_c00178{left:506.100000px;}
.x6c_c00178{left:507.900000px;}
.xd0_c00178{left:508.950000px;}
.xe6_c00178{left:511.800000px;}
.xb2_c00178{left:513.750000px;}
.xb8_c00178{left:515.250000px;}
.xd9_c00178{left:516.750000px;}
.xd5_c00178{left:519.300000px;}
.xea_c00178{left:521.250000px;}
.xdc_c00178{left:523.350000px;}
.x8a_c00178{left:525.900000px;}
.x124_c00178{left:527.100000px;}
.x65_c00178{left:529.050000px;}
.x111_c00178{left:531.300000px;}
.x81_c00178{left:533.550000px;}
.xb7_c00178{left:536.850000px;}
.x91_c00178{left:538.950000px;}
.xae_c00178{left:542.850000px;}
.x95_c00178{left:544.650000px;}
.x125_c00178{left:547.200000px;}
.x73_c00178{left:548.550000px;}
.x58_c00178{left:549.600000px;}
.x10b_c00178{left:550.800000px;}
.x76_c00178{left:551.850000px;}
.x82_c00178{left:553.350000px;}
.x5f_c00178{left:555.750000px;}
.x92_c00178{left:557.250000px;}
.x51_c00178{left:558.750000px;}
.x11b_c00178{left:560.400000px;}
.x10f_c00178{left:566.850000px;}
.xde_c00178{left:567.900000px;}
.x59_c00178{left:569.100000px;}
.x8b_c00178{left:570.600000px;}
.x60_c00178{left:571.650000px;}
.x116_c00178{left:572.700000px;}
.x10c_c00178{left:574.200000px;}
.x112_c00178{left:579.600000px;}
.x87_c00178{left:581.250000px;}
.x8c_c00178{left:582.900000px;}
.xdf_c00178{left:584.400000px;}
.xb9_c00178{left:586.950000px;}
.x6d_c00178{left:589.200000px;}
.x11d_c00178{left:590.400000px;}
.x61_c00178{left:592.200000px;}
.x52_c00178{left:594.750000px;}
.xb3_c00178{left:595.800000px;}
.xdd_c00178{left:598.200000px;}
.x10d_c00178{left:599.400000px;}
.x5a_c00178{left:601.500000px;}
.xfb_c00178{left:603.000000px;}
.xb4_c00178{left:604.050000px;}
.xcc_c00178{left:607.050000px;}
.xe7_c00178{left:608.550000px;}
.x74_c00178{left:611.550000px;}
.x66_c00178{left:614.400000px;}
.x93_c00178{left:616.650000px;}
.x8d_c00178{left:619.950000px;}
.xb5_c00178{left:621.000000px;}
.xba_c00178{left:622.950000px;}
.x7e_c00178{left:624.450000px;}
.xd6_c00178{left:625.500000px;}
.x77_c00178{left:628.200000px;}
.xaf_c00178{left:630.150000px;}
.x117_c00178{left:631.350000px;}
.x103_c00178{left:633.300000px;}
.x6e_c00178{left:635.700000px;}
.x8e_c00178{left:639.750000px;}
.x96_c00178{left:642.900000px;}
.xd1_c00178{left:645.450000px;}
.x6f_c00178{left:647.250000px;}
.xd7_c00178{left:648.600000px;}
.xe0_c00178{left:651.750000px;}
.x120_c00178{left:653.400000px;}
.x10e_c00178{left:654.900000px;}
.x67_c00178{left:656.550000px;}
.x53_c00178{left:658.800000px;}
.x5b_c00178{left:660.900000px;}
.x62_c00178{left:662.100000px;}
.x114_c00178{left:666.150000px;}
.x83_c00178{left:667.200000px;}
.x68_c00178{left:669.450000px;}
.x104_c00178{left:671.100000px;}
.xdb_c00178{left:672.750000px;}
.x7f_c00178{left:674.100000px;}
.x88_c00178{left:675.900000px;}
.x70_c00178{left:677.550000px;}
.xda_c00178{left:678.750000px;}
.xcd_c00178{left:681.450000px;}
.x54_c00178{left:683.700000px;}
.x78_c00178{left:685.800000px;}
.x11e_c00178{left:687.300000px;}
.x12a_c00178{left:688.650000px;}
.x5c_c00178{left:689.700000px;}
.x118_c00178{left:691.500000px;}
.xe8_c00178{left:692.550000px;}
.x8f_c00178{left:695.250000px;}
.x97_c00178{left:697.200000px;}
.xe4_c00178{left:700.350000px;}
.xce_c00178{left:702.000000px;}
.xb0_c00178{left:705.000000px;}
.x98_c00178{left:706.200000px;}
.x79_c00178{left:708.150000px;}
.x71_c00178{left:710.250000px;}
.x5d_c00178{left:711.600000px;}
.xe1_c00178{left:712.650000px;}
.xbb_c00178{left:714.000000px;}
.x7a_c00178{left:719.250000px;}
.x84_c00178{left:721.200000px;}
.x55_c00178{left:723.300000px;}
.xd2_c00178{left:725.400000px;}
.x99_c00178{left:727.050000px;}
.x90_c00178{left:728.700000px;}
.x12b_c00178{left:731.100000px;}
.xe2_c00178{left:732.150000px;}
.xfc_c00178{left:733.650000px;}
.x89_c00178{left:735.000000px;}
.x63_c00178{left:736.200000px;}
.x85_c00178{left:738.900000px;}
.x69_c00178{left:741.150000px;}
.x119_c00178{left:744.450000px;}
.x113_c00178{left:747.450000px;}
.x11f_c00178{left:748.800000px;}
.xca_c00178{left:749.850000px;}
.x80_c00178{left:751.800000px;}
.x7b_c00178{left:754.500000px;}
.xb6_c00178{left:755.850000px;}
.x5e_c00178{left:758.100000px;}
.xe9_c00178{left:759.150000px;}
.xbc_c00178{left:761.100000px;}
.x12c_c00178{left:762.750000px;}
.x64_c00178{left:764.250000px;}
.x2_c00178{left:766.200000px;}
.x115_c00178{left:768.000000px;}
.xd3_c00178{left:773.250000px;}
.xd8_c00178{left:775.200000px;}
.x6a_c00178{left:778.200000px;}
.x11c_c00178{left:781.650000px;}
.xe3_c00178{left:786.450000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws2_c00178{word-spacing:-16.533333pt;}
.ws0_c00178{word-spacing:-8.390658pt;}
.ws1_c00178{word-spacing:-3.109584pt;}
.ws4_c00178{word-spacing:0.000000pt;}
.ws3_c00178{word-spacing:137.880250pt;}
._0_c00178{width:339.181412pt;}
.fs4_c00178{font-size:21.333333pt;}
.fs3_c00178{font-size:26.666667pt;}
.fs6_c00178{font-size:48.000000pt;}
.fs2_c00178{font-size:53.333333pt;}
.fs1_c00178{font-size:58.666667pt;}
.fs5_c00178{font-size:64.000000pt;}
.fs0_c00178{font-size:69.333333pt;}
.y0_c00178{bottom:0.000000pt;}
.y57_c00178{bottom:152.000000pt;}
.y56_c00178{bottom:176.400000pt;}
.y55_c00178{bottom:184.400000pt;}
.y54_c00178{bottom:201.333333pt;}
.y53_c00178{bottom:208.666667pt;}
.y52_c00178{bottom:235.466667pt;}
.y51_c00178{bottom:251.600000pt;}
.y50_c00178{bottom:266.933333pt;}
.y4d_c00178{bottom:290.933333pt;}
.y4f_c00178{bottom:296.933333pt;}
.y4c_c00178{bottom:307.200000pt;}
.y4b_c00178{bottom:322.533333pt;}
.y48_c00178{bottom:328.400000pt;}
.y4e_c00178{bottom:336.666667pt;}
.y4a_c00178{bottom:338.533333pt;}
.y47_c00178{bottom:347.866667pt;}
.y49_c00178{bottom:354.266667pt;}
.y46_c00178{bottom:364.400000pt;}
.y45_c00178{bottom:377.866667pt;}
.y44_c00178{bottom:395.866667pt;}
.y43_c00178{bottom:414.133333pt;}
.y42_c00178{bottom:430.133333pt;}
.y41_c00178{bottom:451.200000pt;}
.y3a_c00178{bottom:453.200000pt;}
.y39_c00178{bottom:469.200000pt;}
.y40_c00178{bottom:471.066667pt;}
.y38_c00178{bottom:484.933333pt;}
.y3f_c00178{bottom:487.733333pt;}
.y37_c00178{bottom:500.933333pt;}
.y3e_c00178{bottom:503.733333pt;}
.y36_c00178{bottom:516.666667pt;}
.y3d_c00178{bottom:523.200000pt;}
.y35_c00178{bottom:532.666667pt;}
.y34_c00178{bottom:548.400000pt;}
.y3c_c00178{bottom:550.800000pt;}
.y33_c00178{bottom:564.133333pt;}
.y32_c00178{bottom:580.133333pt;}
.y3b_c00178{bottom:582.133333pt;}
.y31_c00178{bottom:595.866667pt;}
.y30_c00178{bottom:606.400000pt;}
.y2f_c00178{bottom:613.733333pt;}
.y2e_c00178{bottom:619.200000pt;}
.y2d_c00178{bottom:637.066667pt;}
.y29_c00178{bottom:643.200000pt;}
.y2c_c00178{bottom:656.933333pt;}
.y28_c00178{bottom:658.933333pt;}
.y2b_c00178{bottom:672.666667pt;}
.y27_c00178{bottom:678.400000pt;}
.y2a_c00178{bottom:688.666667pt;}
.y26_c00178{bottom:698.533333pt;}
.y22_c00178{bottom:708.400000pt;}
.y25_c00178{bottom:714.266667pt;}
.y21_c00178{bottom:724.133333pt;}
.y24_c00178{bottom:733.466667pt;}
.y20_c00178{bottom:739.866667pt;}
.y23_c00178{bottom:753.600000pt;}
.y1f_c00178{bottom:755.866667pt;}
.y1e_c00178{bottom:769.333333pt;}
.y10_c00178{bottom:771.733333pt;}
.yf_c00178{bottom:787.466667pt;}
.y1d_c00178{bottom:789.066667pt;}
.ye_c00178{bottom:803.733333pt;}
.y1c_c00178{bottom:804.800000pt;}
.yd_c00178{bottom:819.466667pt;}
.y1b_c00178{bottom:824.266667pt;}
.yc_c00178{bottom:835.466667pt;}
.y1a_c00178{bottom:844.133333pt;}
.yb_c00178{bottom:851.733333pt;}
.y19_c00178{bottom:860.133333pt;}
.ya_c00178{bottom:867.466667pt;}
.y18_c00178{bottom:876.133333pt;}
.y9_c00178{bottom:883.466667pt;}
.y17_c00178{bottom:891.866667pt;}
.y8_c00178{bottom:899.200000pt;}
.y16_c00178{bottom:911.333333pt;}
.y7_c00178{bottom:915.200000pt;}
.y15_c00178{bottom:931.066667pt;}
.y6_c00178{bottom:933.466667pt;}
.y5_c00178{bottom:946.533333pt;}
.y14_c00178{bottom:947.066667pt;}
.y13_c00178{bottom:962.800000pt;}
.y4_c00178{bottom:964.800000pt;}
.y12_c00178{bottom:978.800000pt;}
.y3_c00178{bottom:980.800000pt;}
.y11_c00178{bottom:994.533333pt;}
.y2_c00178{bottom:996.533333pt;}
.y1_c00178{bottom:1019.200000pt;}
.h6_c00178{height:21.333333pt;}
.h5_c00178{height:26.666667pt;}
.h8_c00178{height:48.000000pt;}
.h4_c00178{height:53.333333pt;}
.h3_c00178{height:58.666667pt;}
.h7_c00178{height:64.000000pt;}
.h2_c00178{height:69.333333pt;}
.h0_c00178{height:1129.920084pt;}
.h1_c00178{height:1130.000000pt;}
.w1_c00178{width:856.000000pt;}
.w0_c00178{width:856.319987pt;}
.x0_c00178{left:0.000000pt;}
.x11a_c00178{left:70.400000pt;}
.x105_c00178{left:83.200000pt;}
.xc8_c00178{left:85.066667pt;}
.xc6_c00178{left:86.133333pt;}
.x13_c00178{left:87.333333pt;}
.x12d_c00178{left:99.466667pt;}
.x1e_c00178{left:100.800000pt;}
.x2d_c00178{left:103.200000pt;}
.x3_c00178{left:104.266667pt;}
.xeb_c00178{left:115.866667pt;}
.xf0_c00178{left:117.733333pt;}
.xbd_c00178{left:119.733333pt;}
.x2e_c00178{left:121.733333pt;}
.x34_c00178{left:123.466667pt;}
.x26_c00178{left:126.933333pt;}
.xfd_c00178{left:128.666667pt;}
.x126_c00178{left:130.266667pt;}
.x4e_c00178{left:131.333333pt;}
.xd_c00178{left:133.866667pt;}
.x3e_c00178{left:135.866667pt;}
.xc4_c00178{left:138.000000pt;}
.xec_c00178{left:138.933333pt;}
.x14_c00178{left:139.866667pt;}
.xaa_c00178{left:141.466667pt;}
.x1f_c00178{left:142.666667pt;}
.x2f_c00178{left:144.133333pt;}
.x9a_c00178{left:145.333333pt;}
.x4_c00178{left:146.533333pt;}
.xf2_c00178{left:148.000000pt;}
.xa5_c00178{left:151.066667pt;}
.x44_c00178{left:152.933333pt;}
.xed_c00178{left:153.866667pt;}
.xab_c00178{left:155.866667pt;}
.x9b_c00178{left:160.000000pt;}
.x20_c00178{left:163.600000pt;}
.x35_c00178{left:165.333333pt;}
.xf3_c00178{left:167.200000pt;}
.xf6_c00178{left:168.933333pt;}
.x38_c00178{left:171.466667pt;}
.x127_c00178{left:172.800000pt;}
.x5_c00178{left:174.666667pt;}
.xe_c00178{left:176.400000pt;}
.xee_c00178{left:177.600000pt;}
.xf4_c00178{left:178.666667pt;}
.xc7_c00178{left:180.533333pt;}
.x128_c00178{left:181.466667pt;}
.xa0_c00178{left:182.400000pt;}
.x32_c00178{left:184.266667pt;}
.xfe_c00178{left:185.733333pt;}
.x6_c00178{left:189.066667pt;}
.x3f_c00178{left:190.266667pt;}
.x21_c00178{left:192.400000pt;}
.x15_c00178{left:195.600000pt;}
.x106_c00178{left:197.066667pt;}
.xc5_c00178{left:198.533333pt;}
.x108_c00178{left:199.733333pt;}
.xf_c00178{left:201.733333pt;}
.xa1_c00178{left:203.466667pt;}
.xf5_c00178{left:205.600000pt;}
.x40_c00178{left:206.533333pt;}
.x9c_c00178{left:209.200000pt;}
.xf7_c00178{left:212.133333pt;}
.xa6_c00178{left:213.733333pt;}
.x4a_c00178{left:217.066667pt;}
.x30_c00178{left:218.666667pt;}
.x27_c00178{left:221.333333pt;}
.xf1_c00178{left:222.666667pt;}
.x7_c00178{left:224.266667pt;}
.x41_c00178{left:225.733333pt;}
.x39_c00178{left:227.733333pt;}
.x28_c00178{left:229.600000pt;}
.x16_c00178{left:230.800000pt;}
.x4b_c00178{left:235.333333pt;}
.xf8_c00178{left:236.800000pt;}
.x8_c00178{left:238.400000pt;}
.xff_c00178{left:240.533333pt;}
.xa7_c00178{left:241.600000pt;}
.xc1_c00178{left:243.333333pt;}
.x109_c00178{left:245.200000pt;}
.x3a_c00178{left:246.266667pt;}
.x17_c00178{left:247.733333pt;}
.x129_c00178{left:248.933333pt;}
.x107_c00178{left:250.933333pt;}
.x45_c00178{left:251.866667pt;}
.x29_c00178{left:253.600000pt;}
.x22_c00178{left:254.533333pt;}
.x9_c00178{left:255.733333pt;}
.x10_c00178{left:259.066667pt;}
.x100_c00178{left:260.000000pt;}
.x31_c00178{left:261.200000pt;}
.xbe_c00178{left:262.666667pt;}
.x4c_c00178{left:266.000000pt;}
.x46_c00178{left:266.933333pt;}
.xf9_c00178{left:268.800000pt;}
.x101_c00178{left:270.266667pt;}
.x23_c00178{left:272.800000pt;}
.x42_c00178{left:275.600000pt;}
.x36_c00178{left:278.266667pt;}
.x18_c00178{left:280.666667pt;}
.xac_c00178{left:281.733333pt;}
.xa2_c00178{left:283.466667pt;}
.x3b_c00178{left:284.933333pt;}
.x4f_c00178{left:286.800000pt;}
.xef_c00178{left:287.733333pt;}
.x47_c00178{left:290.000000pt;}
.xa_c00178{left:291.600000pt;}
.x19_c00178{left:294.400000pt;}
.x121_c00178{left:296.666667pt;}
.x48_c00178{left:297.733333pt;}
.x9d_c00178{left:299.200000pt;}
.xa8_c00178{left:300.533333pt;}
.x4d_c00178{left:304.133333pt;}
.xa3_c00178{left:305.200000pt;}
.x1_c00178{left:306.933333pt;}
.x1a_c00178{left:310.666667pt;}
.xb_c00178{left:313.333333pt;}
.xbf_c00178{left:314.533333pt;}
.x2a_c00178{left:316.666667pt;}
.x24_c00178{left:319.866667pt;}
.x43_c00178{left:321.333333pt;}
.x3c_c00178{left:322.400000pt;}
.x1b_c00178{left:323.733333pt;}
.xa9_c00178{left:325.466667pt;}
.x49_c00178{left:327.866667pt;}
.xc9_c00178{left:331.866667pt;}
.x2b_c00178{left:334.266667pt;}
.xc0_c00178{left:340.400000pt;}
.x9e_c00178{left:343.333333pt;}
.x25_c00178{left:345.466667pt;}
.x1c_c00178{left:347.066667pt;}
.x11_c00178{left:348.133333pt;}
.x37_c00178{left:350.266667pt;}
.xc2_c00178{left:353.733333pt;}
.x1d_c00178{left:355.066667pt;}
.x33_c00178{left:356.400000pt;}
.x2c_c00178{left:357.600000pt;}
.x9f_c00178{left:359.066667pt;}
.xc_c00178{left:365.200000pt;}
.x12_c00178{left:366.400000pt;}
.xa4_c00178{left:368.000000pt;}
.x3d_c00178{left:372.666667pt;}
.xc3_c00178{left:375.466667pt;}
.x122_c00178{left:379.600000pt;}
.xfa_c00178{left:402.000000pt;}
.xcb_c00178{left:402.933333pt;}
.x123_c00178{left:414.533333pt;}
.x110_c00178{left:416.533333pt;}
.xe5_c00178{left:417.466667pt;}
.xcf_c00178{left:418.533333pt;}
.xad_c00178{left:419.466667pt;}
.x7c_c00178{left:420.400000pt;}
.x6b_c00178{left:421.333333pt;}
.x56_c00178{left:422.400000pt;}
.x94_c00178{left:428.800000pt;}
.x10a_c00178{left:433.333333pt;}
.x75_c00178{left:435.466667pt;}
.x86_c00178{left:436.533333pt;}
.x72_c00178{left:437.733333pt;}
.x50_c00178{left:439.066667pt;}
.x102_c00178{left:440.400000pt;}
.xd4_c00178{left:443.733333pt;}
.x7d_c00178{left:446.266667pt;}
.xb1_c00178{left:448.400000pt;}
.x57_c00178{left:449.866667pt;}
.x6c_c00178{left:451.466667pt;}
.xd0_c00178{left:452.400000pt;}
.xe6_c00178{left:454.933333pt;}
.xb2_c00178{left:456.666667pt;}
.xb8_c00178{left:458.000000pt;}
.xd9_c00178{left:459.333333pt;}
.xd5_c00178{left:461.600000pt;}
.xea_c00178{left:463.333333pt;}
.xdc_c00178{left:465.200000pt;}
.x8a_c00178{left:467.466667pt;}
.x124_c00178{left:468.533333pt;}
.x65_c00178{left:470.266667pt;}
.x111_c00178{left:472.266667pt;}
.x81_c00178{left:474.266667pt;}
.xb7_c00178{left:477.200000pt;}
.x91_c00178{left:479.066667pt;}
.xae_c00178{left:482.533333pt;}
.x95_c00178{left:484.133333pt;}
.x125_c00178{left:486.400000pt;}
.x73_c00178{left:487.600000pt;}
.x58_c00178{left:488.533333pt;}
.x10b_c00178{left:489.600000pt;}
.x76_c00178{left:490.533333pt;}
.x82_c00178{left:491.866667pt;}
.x5f_c00178{left:494.000000pt;}
.x92_c00178{left:495.333333pt;}
.x51_c00178{left:496.666667pt;}
.x11b_c00178{left:498.133333pt;}
.x10f_c00178{left:503.866667pt;}
.xde_c00178{left:504.800000pt;}
.x59_c00178{left:505.866667pt;}
.x8b_c00178{left:507.200000pt;}
.x60_c00178{left:508.133333pt;}
.x116_c00178{left:509.066667pt;}
.x10c_c00178{left:510.400000pt;}
.x112_c00178{left:515.200000pt;}
.x87_c00178{left:516.666667pt;}
.x8c_c00178{left:518.133333pt;}
.xdf_c00178{left:519.466667pt;}
.xb9_c00178{left:521.733333pt;}
.x6d_c00178{left:523.733333pt;}
.x11d_c00178{left:524.800000pt;}
.x61_c00178{left:526.400000pt;}
.x52_c00178{left:528.666667pt;}
.xb3_c00178{left:529.600000pt;}
.xdd_c00178{left:531.733333pt;}
.x10d_c00178{left:532.800000pt;}
.x5a_c00178{left:534.666667pt;}
.xfb_c00178{left:536.000000pt;}
.xb4_c00178{left:536.933333pt;}
.xcc_c00178{left:539.600000pt;}
.xe7_c00178{left:540.933333pt;}
.x74_c00178{left:543.600000pt;}
.x66_c00178{left:546.133333pt;}
.x93_c00178{left:548.133333pt;}
.x8d_c00178{left:551.066667pt;}
.xb5_c00178{left:552.000000pt;}
.xba_c00178{left:553.733333pt;}
.x7e_c00178{left:555.066667pt;}
.xd6_c00178{left:556.000000pt;}
.x77_c00178{left:558.400000pt;}
.xaf_c00178{left:560.133333pt;}
.x117_c00178{left:561.200000pt;}
.x103_c00178{left:562.933333pt;}
.x6e_c00178{left:565.066667pt;}
.x8e_c00178{left:568.666667pt;}
.x96_c00178{left:571.466667pt;}
.xd1_c00178{left:573.733333pt;}
.x6f_c00178{left:575.333333pt;}
.xd7_c00178{left:576.533333pt;}
.xe0_c00178{left:579.333333pt;}
.x120_c00178{left:580.800000pt;}
.x10e_c00178{left:582.133333pt;}
.x67_c00178{left:583.600000pt;}
.x53_c00178{left:585.600000pt;}
.x5b_c00178{left:587.466667pt;}
.x62_c00178{left:588.533333pt;}
.x114_c00178{left:592.133333pt;}
.x83_c00178{left:593.066667pt;}
.x68_c00178{left:595.066667pt;}
.x104_c00178{left:596.533333pt;}
.xdb_c00178{left:598.000000pt;}
.x7f_c00178{left:599.200000pt;}
.x88_c00178{left:600.800000pt;}
.x70_c00178{left:602.266667pt;}
.xda_c00178{left:603.333333pt;}
.xcd_c00178{left:605.733333pt;}
.x54_c00178{left:607.733333pt;}
.x78_c00178{left:609.600000pt;}
.x11e_c00178{left:610.933333pt;}
.x12a_c00178{left:612.133333pt;}
.x5c_c00178{left:613.066667pt;}
.x118_c00178{left:614.666667pt;}
.xe8_c00178{left:615.600000pt;}
.x8f_c00178{left:618.000000pt;}
.x97_c00178{left:619.733333pt;}
.xe4_c00178{left:622.533333pt;}
.xce_c00178{left:624.000000pt;}
.xb0_c00178{left:626.666667pt;}
.x98_c00178{left:627.733333pt;}
.x79_c00178{left:629.466667pt;}
.x71_c00178{left:631.333333pt;}
.x5d_c00178{left:632.533333pt;}
.xe1_c00178{left:633.466667pt;}
.xbb_c00178{left:634.666667pt;}
.x7a_c00178{left:639.333333pt;}
.x84_c00178{left:641.066667pt;}
.x55_c00178{left:642.933333pt;}
.xd2_c00178{left:644.800000pt;}
.x99_c00178{left:646.266667pt;}
.x90_c00178{left:647.733333pt;}
.x12b_c00178{left:649.866667pt;}
.xe2_c00178{left:650.800000pt;}
.xfc_c00178{left:652.133333pt;}
.x89_c00178{left:653.333333pt;}
.x63_c00178{left:654.400000pt;}
.x85_c00178{left:656.800000pt;}
.x69_c00178{left:658.800000pt;}
.x119_c00178{left:661.733333pt;}
.x113_c00178{left:664.400000pt;}
.x11f_c00178{left:665.600000pt;}
.xca_c00178{left:666.533333pt;}
.x80_c00178{left:668.266667pt;}
.x7b_c00178{left:670.666667pt;}
.xb6_c00178{left:671.866667pt;}
.x5e_c00178{left:673.866667pt;}
.xe9_c00178{left:674.800000pt;}
.xbc_c00178{left:676.533333pt;}
.x12c_c00178{left:678.000000pt;}
.x64_c00178{left:679.333333pt;}
.x2_c00178{left:681.066667pt;}
.x115_c00178{left:682.666667pt;}
.xd3_c00178{left:687.333333pt;}
.xd8_c00178{left:689.066667pt;}
.x6a_c00178{left:691.733333pt;}
.x11c_c00178{left:694.800000pt;}
.xe3_c00178{left:699.066667pt;}
}





/* 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_c00179 {
    display:none;
  }
  .loading-indicator_c00179.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00179 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_c00179 { 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_c00179" -> "#page-container .classname_c00179")
 */
.pf_c00179 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00179 { /* 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_c00179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00179 { /* 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_c00179 { /* 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_c00179 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00179 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00179 {overflow:visible;}
  }
}
.c_c00179 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00179 { /* 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_c00179:after { /* webkit #35443 */
  content: '';
}
.t_c00179:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00179 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 */
}
.__c00179 { /* 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_c00179 { /* info for Javascript */
  display:none;
}
.l_c00179 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00179 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00179 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00179: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_c00179 {
    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_c00179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00179.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_c00179 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00179;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.000000;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;}
.mf0_c00179{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00179{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00179{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m19_c00179{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m87_c00179{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m13_c00179{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m78_c00179{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me6_c00179{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00179{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m58_c00179{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mee_c00179{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00179{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00179{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00179{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.maf_c00179{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m16_c00179{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00179{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00179{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m37_c00179{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc_c00179{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me5_c00179{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m93_c00179{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m84_c00179{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00179{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00179{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00179{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m7_c00179{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m38_c00179{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mea_c00179{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00179{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00179{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m54_c00179{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00179{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.md3_c00179{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00179{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00179{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mff_c00179{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00179{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mef_c00179{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00179{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00179{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m59_c00179{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m27_c00179{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m56_c00179{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me9_c00179{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00179{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.md0_c00179{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00179{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m92_c00179{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m68_c00179{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m96_c00179{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m28_c00179{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00179{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mad_c00179{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00179{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mca_c00179{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m72_c00179{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00179{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m8_c00179{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00179{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00179{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m46_c00179{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m77_c00179{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mec_c00179{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m12_c00179{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00179{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00179{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00179{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m32_c00179{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00179{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m82_c00179{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m81_c00179{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md4_c00179{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00179{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00179{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m49_c00179{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00179{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.meb_c00179{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m64_c00179{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00179{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m53_c00179{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m99_c00179{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00179{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00179{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me2_c00179{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00179{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m30_c00179{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00179{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00179{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00179{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m95_c00179{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m26_c00179{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m90_c00179{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mac_c00179{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00179{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00179{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00179{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00179{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00179{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m60_c00179{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00179{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me8_c00179{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00179{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md9_c00179{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00179{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mda_c00179{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m42_c00179{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m75_c00179{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00179{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00179{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00179{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00179{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.me4_c00179{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00179{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m109_c00179{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00179{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m55_c00179{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00179{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m24_c00179{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00179{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00179{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00179{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00179{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m98_c00179{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m23_c00179{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00179{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m106_c00179{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m66_c00179{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00179{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m48_c00179{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m20_c00179{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me7_c00179{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00179{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m41_c00179{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m18_c00179{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m52_c00179{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00179{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00179{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.md1_c00179{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m57_c00179{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00179{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00179{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m22_c00179{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00179{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00179{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m44_c00179{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00179{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m67_c00179{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00179{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00179{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m100_c00179{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m21_c00179{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m88_c00179{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00179{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m45_c00179{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md_c00179{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m31_c00179{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00179{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m69_c00179{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00179{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00179{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m29_c00179{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md7_c00179{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00179{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00179{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00179{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m89_c00179{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00179{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m74_c00179{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00179{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m79_c00179{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00179{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00179{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb_c00179{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me0_c00179{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mab_c00179{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m35_c00179{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m63_c00179{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00179{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m51_c00179{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00179{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m83_c00179{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00179{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m33_c00179{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00179{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m34_c00179{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m5_c00179{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00179{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m105_c00179{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m101_c00179{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00179{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md6_c00179{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m17_c00179{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00179{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00179{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m97_c00179{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m73_c00179{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m76_c00179{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mf_c00179{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m108_c00179{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m40_c00179{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00179{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00179{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.maa_c00179{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m36_c00179{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00179{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3_c00179{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me1_c00179{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00179{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m80_c00179{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m47_c00179{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m14_c00179{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m65_c00179{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00179{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md8_c00179{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mce_c00179{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md2_c00179{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m86_c00179{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m102_c00179{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00179{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m61_c00179{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m0_c00179{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m104_c00179{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00179{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10_c00179{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m39_c00179{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00179{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m107_c00179{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);}
.m91_c00179{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m43_c00179{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00179{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00179{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m50_c00179{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00179{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m85_c00179{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md5_c00179{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mde_c00179{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m70_c00179{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00179{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mba_c00179{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00179{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m62_c00179{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma_c00179{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00179{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m71_c00179{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00179{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.me3_c00179{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m94_c00179{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00179{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mae_c00179{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.med_c00179{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m103_c00179{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00179{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00179{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00179{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00179{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m110_c00179{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00179{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00179{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m15_c00179{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00179{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);}
.m25_c00179{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.me_c00179{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00179{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00179{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00179{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00179{transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls1_c00179{letter-spacing:0.000000px;}
.ls0_c00179{letter-spacing:59.285714px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{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__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00179{word-spacing:-89.285714px;}
.ws0_c00179{word-spacing:-12.500000px;}
.wsa_c00179{word-spacing:-7.625337px;}
.ws5_c00179{word-spacing:-4.407583px;}
.ws9_c00179{word-spacing:-4.234201px;}
.wse_c00179{word-spacing:0.000000px;}
.wsb_c00179{word-spacing:0.065502px;}
.wsc_c00179{word-spacing:5.000000px;}
.wsd_c00179{word-spacing:9.062500px;}
.ws4_c00179{word-spacing:11.628032px;}
.ws1_c00179{word-spacing:22.142857px;}
.ws6_c00179{word-spacing:25.714286px;}
.ws3_c00179{word-spacing:29.285714px;}
.ws8_c00179{word-spacing:56.760118px;}
.ws7_c00179{word-spacing:177.500000px;}
._2_c00179{margin-left:-59.285714px;}
._0_c00179{width:55.714286px;}
._1_c00179{width:59.285714px;}
.fc0_c00179{color:transparent;}
.fs8_c00179{font-size:24.000000px;}
.fs9_c00179{font-size:30.000000px;}
.fs7_c00179{font-size:48.000000px;}
.fs6_c00179{font-size:54.000000px;}
.fs2_c00179{font-size:60.000000px;}
.fs3_c00179{font-size:66.000000px;}
.fs4_c00179{font-size:72.000000px;}
.fs0_c00179{font-size:78.000000px;}
.fs1_c00179{font-size:84.000000px;}
.fs5_c00179{font-size:90.000000px;}
.y0_c00179{bottom:0.000000px;}
.y6c_c00179{bottom:1.500000px;}
.y6b_c00179{bottom:181.200000px;}
.y37_c00179{bottom:182.550000px;}
.y6a_c00179{bottom:195.900000px;}
.y36_c00179{bottom:197.250000px;}
.y69_c00179{bottom:210.600000px;}
.y35_c00179{bottom:211.650000px;}
.y68_c00179{bottom:225.000000px;}
.y34_c00179{bottom:235.500000px;}
.y6d_c00179{bottom:235.800000px;}
.y67_c00179{bottom:239.100000px;}
.y66_c00179{bottom:253.500000px;}
.y33_c00179{bottom:262.800000px;}
.y65_c00179{bottom:267.900000px;}
.y32_c00179{bottom:280.500000px;}
.y64_c00179{bottom:282.000000px;}
.y63_c00179{bottom:296.400000px;}
.y31_c00179{bottom:298.500000px;}
.y62_c00179{bottom:310.800000px;}
.y30_c00179{bottom:316.800000px;}
.y61_c00179{bottom:325.500000px;}
.y2f_c00179{bottom:334.050000px;}
.y2e_c00179{bottom:356.100000px;}
.y60_c00179{bottom:371.550000px;}
.y2d_c00179{bottom:374.100000px;}
.y2c_c00179{bottom:391.350000px;}
.y5f_c00179{bottom:393.900000px;}
.y2b_c00179{bottom:409.050000px;}
.y2a_c00179{bottom:427.350000px;}
.y5e_c00179{bottom:430.050000px;}
.y29_c00179{bottom:445.050000px;}
.y5d_c00179{bottom:447.750000px;}
.y28_c00179{bottom:463.050000px;}
.y5c_c00179{bottom:465.750000px;}
.y27_c00179{bottom:481.350000px;}
.y5b_c00179{bottom:483.750000px;}
.y26_c00179{bottom:499.050000px;}
.y5a_c00179{bottom:501.750000px;}
.y25_c00179{bottom:516.750000px;}
.y59_c00179{bottom:519.450000px;}
.y24_c00179{bottom:534.750000px;}
.y58_c00179{bottom:541.500000px;}
.y23_c00179{bottom:552.750000px;}
.y57_c00179{bottom:559.500000px;}
.y22_c00179{bottom:570.450000px;}
.y56_c00179{bottom:577.200000px;}
.y21_c00179{bottom:588.150000px;}
.y55_c00179{bottom:595.500000px;}
.y20_c00179{bottom:606.150000px;}
.y54_c00179{bottom:613.200000px;}
.y1f_c00179{bottom:624.450000px;}
.y53_c00179{bottom:631.200000px;}
.y1e_c00179{bottom:641.700000px;}
.y52_c00179{bottom:648.900000px;}
.y1d_c00179{bottom:659.700000px;}
.y51_c00179{bottom:666.900000px;}
.y1c_c00179{bottom:677.700000px;}
.y50_c00179{bottom:684.600000px;}
.y1b_c00179{bottom:695.700000px;}
.y4f_c00179{bottom:702.600000px;}
.y1a_c00179{bottom:713.400000px;}
.y4e_c00179{bottom:720.600000px;}
.y19_c00179{bottom:731.700000px;}
.y4d_c00179{bottom:738.600000px;}
.y18_c00179{bottom:749.400000px;}
.y4c_c00179{bottom:756.300000px;}
.y17_c00179{bottom:767.100000px;}
.y4b_c00179{bottom:774.300000px;}
.y16_c00179{bottom:785.100000px;}
.y4a_c00179{bottom:792.300000px;}
.y15_c00179{bottom:803.100000px;}
.y49_c00179{bottom:810.300000px;}
.y14_c00179{bottom:820.800000px;}
.y48_c00179{bottom:828.000000px;}
.y13_c00179{bottom:838.800000px;}
.y47_c00179{bottom:846.000000px;}
.y12_c00179{bottom:856.500000px;}
.y46_c00179{bottom:863.700000px;}
.y11_c00179{bottom:874.500000px;}
.y45_c00179{bottom:882.000000px;}
.y10_c00179{bottom:892.500000px;}
.y44_c00179{bottom:899.700000px;}
.yf_c00179{bottom:914.400000px;}
.y43_c00179{bottom:922.050000px;}
.y42_c00179{bottom:940.350000px;}
.ye_c00179{bottom:941.100000px;}
.yd_c00179{bottom:958.950000px;}
.y41_c00179{bottom:961.800000px;}
.yc_c00179{bottom:976.950000px;}
.y40_c00179{bottom:979.800000px;}
.yb_c00179{bottom:994.950000px;}
.y3f_c00179{bottom:997.800000px;}
.y3e_c00179{bottom:1015.800000px;}
.ya_c00179{bottom:1016.550000px;}
.y9_c00179{bottom:1029.450000px;}
.y3d_c00179{bottom:1033.800000px;}
.y8_c00179{bottom:1045.350000px;}
.y3c_c00179{bottom:1051.500000px;}
.y7_c00179{bottom:1058.250000px;}
.y3b_c00179{bottom:1069.500000px;}
.y6_c00179{bottom:1072.650000px;}
.y5_c00179{bottom:1088.550000px;}
.y3a_c00179{bottom:1091.100000px;}
.y4_c00179{bottom:1100.850000px;}
.y39_c00179{bottom:1105.500000px;}
.y3_c00179{bottom:1118.100000px;}
.y38_c00179{bottom:1118.850000px;}
.y1_c00179{bottom:1139.700000px;}
.y2_c00179{bottom:1141.500000px;}
.ha_c00179{height:24.000000px;}
.hb_c00179{height:30.000000px;}
.h9_c00179{height:48.000000px;}
.h8_c00179{height:54.000000px;}
.h4_c00179{height:60.000000px;}
.h5_c00179{height:66.000000px;}
.h6_c00179{height:72.000000px;}
.h2_c00179{height:78.000000px;}
.h3_c00179{height:84.000000px;}
.h7_c00179{height:90.000000px;}
.h1_c00179{height:1265.250000px;}
.h0_c00179{height:1265.399964px;}
.w1_c00179{width:963.000000px;}
.w0_c00179{width:963.359985px;}
.x0_c00179{left:0.000000px;}
.xa1_c00179{left:176.700000px;}
.x3_c00179{left:179.700000px;}
.x1_c00179{left:180.750000px;}
.x52_c00179{left:183.300000px;}
.xa6_c00179{left:189.450000px;}
.x53_c00179{left:193.350000px;}
.xb_c00179{left:195.000000px;}
.x25_c00179{left:196.500000px;}
.x93_c00179{left:198.300000px;}
.x37_c00179{left:199.500000px;}
.x57_c00179{left:200.850000px;}
.x61_c00179{left:202.500000px;}
.xa8_c00179{left:204.450000px;}
.x10_c00179{left:209.400000px;}
.x1f_c00179{left:210.750000px;}
.x19_c00179{left:212.400000px;}
.x8d_c00179{left:213.900000px;}
.x96_c00179{left:215.250000px;}
.x99_c00179{left:216.300000px;}
.x30_c00179{left:217.350000px;}
.x7f_c00179{left:222.750000px;}
.x92_c00179{left:224.400000px;}
.x9e_c00179{left:225.900000px;}
.x6d_c00179{left:228.150000px;}
.x11_c00179{left:231.750000px;}
.x38_c00179{left:235.200000px;}
.x3f_c00179{left:236.850000px;}
.x6e_c00179{left:238.650000px;}
.x4_c00179{left:240.600000px;}
.x87_c00179{left:241.800000px;}
.xa9_c00179{left:243.000000px;}
.x66_c00179{left:244.650000px;}
.x44_c00179{left:248.100000px;}
.x12_c00179{left:249.750000px;}
.x9f_c00179{left:252.000000px;}
.x8a_c00179{left:253.650000px;}
.x68_c00179{left:255.000000px;}
.x6f_c00179{left:256.350000px;}
.x62_c00179{left:258.300000px;}
.x5e_c00179{left:261.450000px;}
.x7a_c00179{left:262.650000px;}
.x31_c00179{left:263.850000px;}
.x4b_c00179{left:266.100000px;}
.x1a_c00179{left:267.450000px;}
.x48_c00179{left:268.500000px;}
.x58_c00179{left:269.850000px;}
.x39_c00179{left:270.900000px;}
.x20_c00179{left:273.450000px;}
.x81_c00179{left:274.800000px;}
.x2a_c00179{left:279.600000px;}
.x45_c00179{left:281.250000px;}
.x32_c00179{left:282.600000px;}
.x4e_c00179{left:284.400000px;}
.x7c_c00179{left:286.950000px;}
.xc_c00179{left:288.600000px;}
.x9a_c00179{left:290.850000px;}
.x21_c00179{left:292.500000px;}
.x7b_c00179{left:294.300000px;}
.x98_c00179{left:296.550000px;}
.x8b_c00179{left:298.200000px;}
.x54_c00179{left:299.550000px;}
.x13_c00179{left:300.600000px;}
.x5_c00179{left:304.650000px;}
.x4f_c00179{left:306.000000px;}
.x75_c00179{left:307.650000px;}
.x6a_c00179{left:309.150000px;}
.x33_c00179{left:311.400000px;}
.x26_c00179{left:313.050000px;}
.x67_c00179{left:314.100000px;}
.x83_c00179{left:318.000000px;}
.x40_c00179{left:319.200000px;}
.x1b_c00179{left:321.450000px;}
.x22_c00179{left:324.600000px;}
.x2e_c00179{left:329.550000px;}
.x9d_c00179{left:330.750000px;}
.x8f_c00179{left:331.950000px;}
.x69_c00179{left:334.200000px;}
.x46_c00179{left:338.850000px;}
.x55_c00179{left:340.650000px;}
.x1c_c00179{left:342.000000px;}
.x23_c00179{left:344.100000px;}
.x6_c00179{left:345.300000px;}
.x50_c00179{left:347.100000px;}
.x49_c00179{left:348.450000px;}
.x14_c00179{left:350.700000px;}
.x5b_c00179{left:352.200000px;}
.x3a_c00179{left:355.500000px;}
.x2b_c00179{left:357.300000px;}
.x84_c00179{left:358.950000px;}
.x15_c00179{left:360.750000px;}
.x78_c00179{left:362.100000px;}
.x7_c00179{left:365.100000px;}
.x27_c00179{left:368.550000px;}
.x63_c00179{left:370.800000px;}
.x59_c00179{left:372.450000px;}
.x9b_c00179{left:373.650000px;}
.x3b_c00179{left:375.300000px;}
.xa2_c00179{left:378.300000px;}
.x90_c00179{left:381.000000px;}
.x76_c00179{left:384.000000px;}
.x7d_c00179{left:385.650000px;}
.x56_c00179{left:388.200000px;}
.x1d_c00179{left:390.300000px;}
.x70_c00179{left:391.650000px;}
.x24_c00179{left:394.200000px;}
.x41_c00179{left:395.550000px;}
.x2c_c00179{left:399.000000px;}
.xa3_c00179{left:400.650000px;}
.x47_c00179{left:401.850000px;}
.x6b_c00179{left:403.800000px;}
.x97_c00179{left:406.350000px;}
.x5c_c00179{left:408.300000px;}
.x34_c00179{left:409.350000px;}
.x88_c00179{left:410.550000px;}
.x28_c00179{left:413.250000px;}
.x2d_c00179{left:414.900000px;}
.x79_c00179{left:416.400000px;}
.x42_c00179{left:418.650000px;}
.x2f_c00179{left:419.850000px;}
.x8e_c00179{left:421.200000px;}
.x4a_c00179{left:423.300000px;}
.x2_c00179{left:425.250000px;}
.x3c_c00179{left:427.800000px;}
.x85_c00179{left:430.200000px;}
.x9c_c00179{left:431.250000px;}
.x5a_c00179{left:432.600000px;}
.xa4_c00179{left:433.800000px;}
.x8_c00179{left:435.600000px;}
.x6c_c00179{left:439.500000px;}
.x94_c00179{left:440.700000px;}
.x35_c00179{left:443.250000px;}
.x16_c00179{left:444.900000px;}
.xd_c00179{left:446.700000px;}
.x3d_c00179{left:449.100000px;}
.x7e_c00179{left:451.950000px;}
.x5d_c00179{left:453.300000px;}
.x4c_c00179{left:454.350000px;}
.x72_c00179{left:456.300000px;}
.xa0_c00179{left:457.950000px;}
.x5f_c00179{left:459.150000px;}
.x71_c00179{left:460.650000px;}
.x95_c00179{left:463.050000px;}
.x64_c00179{left:464.400000px;}
.x9_c00179{left:466.500000px;}
.x17_c00179{left:468.000000px;}
.x3e_c00179{left:470.400000px;}
.xa7_c00179{left:472.050000px;}
.xe_c00179{left:474.000000px;}
.x29_c00179{left:475.200000px;}
.x1e_c00179{left:476.400000px;}
.x89_c00179{left:477.450000px;}
.x91_c00179{left:478.950000px;}
.x73_c00179{left:481.200000px;}
.x77_c00179{left:483.300000px;}
.x82_c00179{left:487.500000px;}
.x4d_c00179{left:489.600000px;}
.x51_c00179{left:491.100000px;}
.x65_c00179{left:493.500000px;}
.x36_c00179{left:494.700000px;}
.x60_c00179{left:495.900000px;}
.xa5_c00179{left:498.300000px;}
.xa_c00179{left:500.700000px;}
.x80_c00179{left:501.900000px;}
.xf_c00179{left:503.100000px;}
.x18_c00179{left:504.750000px;}
.x43_c00179{left:505.800000px;}
.x86_c00179{left:506.850000px;}
.x8c_c00179{left:512.700000px;}
.x74_c00179{left:514.650000px;}
.x13e_c00179{left:535.500000px;}
.xe1_c00179{left:538.200000px;}
.x138_c00179{left:551.550000px;}
.xc0_c00179{left:555.450000px;}
.xe6_c00179{left:556.500000px;}
.xff_c00179{left:558.150000px;}
.x14b_c00179{left:563.100000px;}
.xad_c00179{left:565.200000px;}
.x13f_c00179{left:568.950000px;}
.x139_c00179{left:572.850000px;}
.xba_c00179{left:573.900000px;}
.xcf_c00179{left:576.150000px;}
.x135_c00179{left:578.850000px;}
.x128_c00179{left:580.350000px;}
.x124_c00179{left:582.300000px;}
.x12b_c00179{left:583.650000px;}
.x117_c00179{left:584.850000px;}
.xb8_c00179{left:587.700000px;}
.x146_c00179{left:590.400000px;}
.xca_c00179{left:593.700000px;}
.xe2_c00179{left:594.750000px;}
.x10a_c00179{left:597.000000px;}
.x132_c00179{left:598.800000px;}
.xec_c00179{left:600.000000px;}
.xdb_c00179{left:601.050000px;}
.x106_c00179{left:602.400000px;}
.x144_c00179{left:604.200000px;}
.x113_c00179{left:606.150000px;}
.xf1_c00179{left:608.250000px;}
.xd5_c00179{left:610.200000px;}
.x12f_c00179{left:611.250000px;}
.x100_c00179{left:613.200000px;}
.xc1_c00179{left:614.550000px;}
.x133_c00179{left:616.500000px;}
.xae_c00179{left:619.950000px;}
.xbb_c00179{left:621.450000px;}
.xf5_c00179{left:623.250000px;}
.x140_c00179{left:624.450000px;}
.xf2_c00179{left:625.500000px;}
.x114_c00179{left:627.000000px;}
.x13a_c00179{left:628.200000px;}
.xdc_c00179{left:630.150000px;}
.x110_c00179{left:632.400000px;}
.xe7_c00179{left:633.900000px;}
.x101_c00179{left:636.300000px;}
.xf8_c00179{left:637.350000px;}
.xfb_c00179{left:639.000000px;}
.xaf_c00179{left:640.500000px;}
.xc2_c00179{left:641.550000px;}
.xd6_c00179{left:643.350000px;}
.xf3_c00179{left:645.600000px;}
.x12c_c00179{left:646.950000px;}
.x13b_c00179{left:650.100000px;}
.xed_c00179{left:652.200000px;}
.xe8_c00179{left:653.700000px;}
.x141_c00179{left:654.900000px;}
.xcb_c00179{left:657.000000px;}
.xe3_c00179{left:658.800000px;}
.xc3_c00179{left:662.100000px;}
.x121_c00179{left:664.500000px;}
.xd0_c00179{left:665.550000px;}
.xdd_c00179{left:667.650000px;}
.x11e_c00179{left:669.750000px;}
.x118_c00179{left:671.550000px;}
.xb0_c00179{left:672.900000px;}
.xe9_c00179{left:675.600000px;}
.x102_c00179{left:678.000000px;}
.x10b_c00179{left:679.050000px;}
.xbc_c00179{left:680.100000px;}
.x142_c00179{left:681.750000px;}
.x12e_c00179{left:683.400000px;}
.xd7_c00179{left:685.050000px;}
.xf9_c00179{left:686.700000px;}
.xde_c00179{left:688.500000px;}
.x107_c00179{left:690.600000px;}
.xb1_c00179{left:692.400000px;}
.x13c_c00179{left:695.400000px;}
.x103_c00179{left:696.750000px;}
.xe4_c00179{left:700.200000px;}
.x148_c00179{left:702.300000px;}
.xf6_c00179{left:703.650000px;}
.x119_c00179{left:705.450000px;}
.xd1_c00179{left:710.550000px;}
.x11b_c00179{left:712.200000px;}
.x120_c00179{left:713.700000px;}
.xbd_c00179{left:716.400000px;}
.x10c_c00179{left:717.600000px;}
.xc4_c00179{left:718.650000px;}
.x108_c00179{left:720.900000px;}
.xee_c00179{left:723.450000px;}
.x136_c00179{left:724.650000px;}
.x122_c00179{left:726.000000px;}
.x129_c00179{left:727.200000px;}
.xea_c00179{left:730.650000px;}
.xfc_c00179{left:733.050000px;}
.xdf_c00179{left:735.000000px;}
.x12a_c00179{left:736.200000px;}
.xd2_c00179{left:737.550000px;}
.xc5_c00179{left:739.200000px;}
.xb2_c00179{left:740.700000px;}
.xfd_c00179{left:744.600000px;}
.xb3_c00179{left:748.200000px;}
.xbe_c00179{left:750.600000px;}
.xd8_c00179{left:751.950000px;}
.x111_c00179{left:753.750000px;}
.xeb_c00179{left:754.800000px;}
.xcc_c00179{left:759.900000px;}
.xb4_c00179{left:762.300000px;}
.x137_c00179{left:763.500000px;}
.x109_c00179{left:764.850000px;}
.xc6_c00179{left:766.200000px;}
.x147_c00179{left:767.850000px;}
.x11f_c00179{left:769.200000px;}
.xd3_c00179{left:772.500000px;}
.xf4_c00179{left:775.500000px;}
.xb5_c00179{left:776.700000px;}
.x11a_c00179{left:778.500000px;}
.xfa_c00179{left:780.000000px;}
.x11c_c00179{left:782.100000px;}
.x115_c00179{left:784.350000px;}
.xd9_c00179{left:785.850000px;}
.x13d_c00179{left:787.500000px;}
.xc7_c00179{left:791.100000px;}
.xcd_c00179{left:792.600000px;}
.xaa_c00179{left:794.100000px;}
.x126_c00179{left:796.500000px;}
.x131_c00179{left:798.750000px;}
.xbf_c00179{left:801.300000px;}
.x134_c00179{left:803.400000px;}
.xb6_c00179{left:804.750000px;}
.x127_c00179{left:805.800000px;}
.x130_c00179{left:807.750000px;}
.xe0_c00179{left:809.550000px;}
.xd4_c00179{left:811.800000px;}
.x145_c00179{left:813.300000px;}
.x123_c00179{left:814.950000px;}
.x143_c00179{left:816.300000px;}
.xda_c00179{left:818.550000px;}
.xfe_c00179{left:819.900000px;}
.x12d_c00179{left:822.300000px;}
.x14a_c00179{left:823.650000px;}
.xab_c00179{left:824.700000px;}
.xef_c00179{left:826.800000px;}
.x125_c00179{left:828.900000px;}
.xe5_c00179{left:830.850000px;}
.xb9_c00179{left:832.050000px;}
.xc8_c00179{left:833.250000px;}
.x104_c00179{left:835.050000px;}
.xf7_c00179{left:837.600000px;}
.x10d_c00179{left:839.400000px;}
.x116_c00179{left:840.450000px;}
.xce_c00179{left:843.300000px;}
.xc9_c00179{left:844.350000px;}
.x112_c00179{left:845.550000px;}
.x11d_c00179{left:847.650000px;}
.xf0_c00179{left:849.150000px;}
.x10e_c00179{left:850.500000px;}
.x105_c00179{left:854.100000px;}
.xac_c00179{left:857.850000px;}
.xb7_c00179{left:859.950000px;}
.x149_c00179{left:867.150000px;}
.x10f_c00179{left:870.000000px;}
.x14c_c00179{left:885.300000px;}
.x14e_c00179{left:886.650000px;}
.x14d_c00179{left:949.800000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls1_c00179{letter-spacing:0.000000pt;}
.ls0_c00179{letter-spacing:52.698413pt;}
.ws2_c00179{word-spacing:-79.365079pt;}
.ws0_c00179{word-spacing:-11.111111pt;}
.wsa_c00179{word-spacing:-6.778077pt;}
.ws5_c00179{word-spacing:-3.917852pt;}
.ws9_c00179{word-spacing:-3.763734pt;}
.wse_c00179{word-spacing:0.000000pt;}
.wsb_c00179{word-spacing:0.058224pt;}
.wsc_c00179{word-spacing:4.444444pt;}
.wsd_c00179{word-spacing:8.055556pt;}
.ws4_c00179{word-spacing:10.336029pt;}
.ws1_c00179{word-spacing:19.682540pt;}
.ws6_c00179{word-spacing:22.857143pt;}
.ws3_c00179{word-spacing:26.031746pt;}
.ws8_c00179{word-spacing:50.453439pt;}
.ws7_c00179{word-spacing:157.777778pt;}
._2_c00179{margin-left:-52.698413pt;}
._0_c00179{width:49.523810pt;}
._1_c00179{width:52.698413pt;}
.fs8_c00179{font-size:21.333333pt;}
.fs9_c00179{font-size:26.666667pt;}
.fs7_c00179{font-size:42.666667pt;}
.fs6_c00179{font-size:48.000000pt;}
.fs2_c00179{font-size:53.333333pt;}
.fs3_c00179{font-size:58.666667pt;}
.fs4_c00179{font-size:64.000000pt;}
.fs0_c00179{font-size:69.333333pt;}
.fs1_c00179{font-size:74.666667pt;}
.fs5_c00179{font-size:80.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y6c_c00179{bottom:1.333333pt;}
.y6b_c00179{bottom:161.066667pt;}
.y37_c00179{bottom:162.266667pt;}
.y6a_c00179{bottom:174.133333pt;}
.y36_c00179{bottom:175.333333pt;}
.y69_c00179{bottom:187.200000pt;}
.y35_c00179{bottom:188.133333pt;}
.y68_c00179{bottom:200.000000pt;}
.y34_c00179{bottom:209.333333pt;}
.y6d_c00179{bottom:209.600000pt;}
.y67_c00179{bottom:212.533333pt;}
.y66_c00179{bottom:225.333333pt;}
.y33_c00179{bottom:233.600000pt;}
.y65_c00179{bottom:238.133333pt;}
.y32_c00179{bottom:249.333333pt;}
.y64_c00179{bottom:250.666667pt;}
.y63_c00179{bottom:263.466667pt;}
.y31_c00179{bottom:265.333333pt;}
.y62_c00179{bottom:276.266667pt;}
.y30_c00179{bottom:281.600000pt;}
.y61_c00179{bottom:289.333333pt;}
.y2f_c00179{bottom:296.933333pt;}
.y2e_c00179{bottom:316.533333pt;}
.y60_c00179{bottom:330.266667pt;}
.y2d_c00179{bottom:332.533333pt;}
.y2c_c00179{bottom:347.866667pt;}
.y5f_c00179{bottom:350.133333pt;}
.y2b_c00179{bottom:363.600000pt;}
.y2a_c00179{bottom:379.866667pt;}
.y5e_c00179{bottom:382.266667pt;}
.y29_c00179{bottom:395.600000pt;}
.y5d_c00179{bottom:398.000000pt;}
.y28_c00179{bottom:411.600000pt;}
.y5c_c00179{bottom:414.000000pt;}
.y27_c00179{bottom:427.866667pt;}
.y5b_c00179{bottom:430.000000pt;}
.y26_c00179{bottom:443.600000pt;}
.y5a_c00179{bottom:446.000000pt;}
.y25_c00179{bottom:459.333333pt;}
.y59_c00179{bottom:461.733333pt;}
.y24_c00179{bottom:475.333333pt;}
.y58_c00179{bottom:481.333333pt;}
.y23_c00179{bottom:491.333333pt;}
.y57_c00179{bottom:497.333333pt;}
.y22_c00179{bottom:507.066667pt;}
.y56_c00179{bottom:513.066667pt;}
.y21_c00179{bottom:522.800000pt;}
.y55_c00179{bottom:529.333333pt;}
.y20_c00179{bottom:538.800000pt;}
.y54_c00179{bottom:545.066667pt;}
.y1f_c00179{bottom:555.066667pt;}
.y53_c00179{bottom:561.066667pt;}
.y1e_c00179{bottom:570.400000pt;}
.y52_c00179{bottom:576.800000pt;}
.y1d_c00179{bottom:586.400000pt;}
.y51_c00179{bottom:592.800000pt;}
.y1c_c00179{bottom:602.400000pt;}
.y50_c00179{bottom:608.533333pt;}
.y1b_c00179{bottom:618.400000pt;}
.y4f_c00179{bottom:624.533333pt;}
.y1a_c00179{bottom:634.133333pt;}
.y4e_c00179{bottom:640.533333pt;}
.y19_c00179{bottom:650.400000pt;}
.y4d_c00179{bottom:656.533333pt;}
.y18_c00179{bottom:666.133333pt;}
.y4c_c00179{bottom:672.266667pt;}
.y17_c00179{bottom:681.866667pt;}
.y4b_c00179{bottom:688.266667pt;}
.y16_c00179{bottom:697.866667pt;}
.y4a_c00179{bottom:704.266667pt;}
.y15_c00179{bottom:713.866667pt;}
.y49_c00179{bottom:720.266667pt;}
.y14_c00179{bottom:729.600000pt;}
.y48_c00179{bottom:736.000000pt;}
.y13_c00179{bottom:745.600000pt;}
.y47_c00179{bottom:752.000000pt;}
.y12_c00179{bottom:761.333333pt;}
.y46_c00179{bottom:767.733333pt;}
.y11_c00179{bottom:777.333333pt;}
.y45_c00179{bottom:784.000000pt;}
.y10_c00179{bottom:793.333333pt;}
.y44_c00179{bottom:799.733333pt;}
.yf_c00179{bottom:812.800000pt;}
.y43_c00179{bottom:819.600000pt;}
.y42_c00179{bottom:835.866667pt;}
.ye_c00179{bottom:836.533333pt;}
.yd_c00179{bottom:852.400000pt;}
.y41_c00179{bottom:854.933333pt;}
.yc_c00179{bottom:868.400000pt;}
.y40_c00179{bottom:870.933333pt;}
.yb_c00179{bottom:884.400000pt;}
.y3f_c00179{bottom:886.933333pt;}
.y3e_c00179{bottom:902.933333pt;}
.ya_c00179{bottom:903.600000pt;}
.y9_c00179{bottom:915.066667pt;}
.y3d_c00179{bottom:918.933333pt;}
.y8_c00179{bottom:929.200000pt;}
.y3c_c00179{bottom:934.666667pt;}
.y7_c00179{bottom:940.666667pt;}
.y3b_c00179{bottom:950.666667pt;}
.y6_c00179{bottom:953.466667pt;}
.y5_c00179{bottom:967.600000pt;}
.y3a_c00179{bottom:969.866667pt;}
.y4_c00179{bottom:978.533333pt;}
.y39_c00179{bottom:982.666667pt;}
.y3_c00179{bottom:993.866667pt;}
.y38_c00179{bottom:994.533333pt;}
.y1_c00179{bottom:1013.066667pt;}
.y2_c00179{bottom:1014.666667pt;}
.ha_c00179{height:21.333333pt;}
.hb_c00179{height:26.666667pt;}
.h9_c00179{height:42.666667pt;}
.h8_c00179{height:48.000000pt;}
.h4_c00179{height:53.333333pt;}
.h5_c00179{height:58.666667pt;}
.h6_c00179{height:64.000000pt;}
.h2_c00179{height:69.333333pt;}
.h3_c00179{height:74.666667pt;}
.h7_c00179{height:80.000000pt;}
.h1_c00179{height:1124.666667pt;}
.h0_c00179{height:1124.799968pt;}
.w1_c00179{width:856.000000pt;}
.w0_c00179{width:856.319987pt;}
.x0_c00179{left:0.000000pt;}
.xa1_c00179{left:157.066667pt;}
.x3_c00179{left:159.733333pt;}
.x1_c00179{left:160.666667pt;}
.x52_c00179{left:162.933333pt;}
.xa6_c00179{left:168.400000pt;}
.x53_c00179{left:171.866667pt;}
.xb_c00179{left:173.333333pt;}
.x25_c00179{left:174.666667pt;}
.x93_c00179{left:176.266667pt;}
.x37_c00179{left:177.333333pt;}
.x57_c00179{left:178.533333pt;}
.x61_c00179{left:180.000000pt;}
.xa8_c00179{left:181.733333pt;}
.x10_c00179{left:186.133333pt;}
.x1f_c00179{left:187.333333pt;}
.x19_c00179{left:188.800000pt;}
.x8d_c00179{left:190.133333pt;}
.x96_c00179{left:191.333333pt;}
.x99_c00179{left:192.266667pt;}
.x30_c00179{left:193.200000pt;}
.x7f_c00179{left:198.000000pt;}
.x92_c00179{left:199.466667pt;}
.x9e_c00179{left:200.800000pt;}
.x6d_c00179{left:202.800000pt;}
.x11_c00179{left:206.000000pt;}
.x38_c00179{left:209.066667pt;}
.x3f_c00179{left:210.533333pt;}
.x6e_c00179{left:212.133333pt;}
.x4_c00179{left:213.866667pt;}
.x87_c00179{left:214.933333pt;}
.xa9_c00179{left:216.000000pt;}
.x66_c00179{left:217.466667pt;}
.x44_c00179{left:220.533333pt;}
.x12_c00179{left:222.000000pt;}
.x9f_c00179{left:224.000000pt;}
.x8a_c00179{left:225.466667pt;}
.x68_c00179{left:226.666667pt;}
.x6f_c00179{left:227.866667pt;}
.x62_c00179{left:229.600000pt;}
.x5e_c00179{left:232.400000pt;}
.x7a_c00179{left:233.466667pt;}
.x31_c00179{left:234.533333pt;}
.x4b_c00179{left:236.533333pt;}
.x1a_c00179{left:237.733333pt;}
.x48_c00179{left:238.666667pt;}
.x58_c00179{left:239.866667pt;}
.x39_c00179{left:240.800000pt;}
.x20_c00179{left:243.066667pt;}
.x81_c00179{left:244.266667pt;}
.x2a_c00179{left:248.533333pt;}
.x45_c00179{left:250.000000pt;}
.x32_c00179{left:251.200000pt;}
.x4e_c00179{left:252.800000pt;}
.x7c_c00179{left:255.066667pt;}
.xc_c00179{left:256.533333pt;}
.x9a_c00179{left:258.533333pt;}
.x21_c00179{left:260.000000pt;}
.x7b_c00179{left:261.600000pt;}
.x98_c00179{left:263.600000pt;}
.x8b_c00179{left:265.066667pt;}
.x54_c00179{left:266.266667pt;}
.x13_c00179{left:267.200000pt;}
.x5_c00179{left:270.800000pt;}
.x4f_c00179{left:272.000000pt;}
.x75_c00179{left:273.466667pt;}
.x6a_c00179{left:274.800000pt;}
.x33_c00179{left:276.800000pt;}
.x26_c00179{left:278.266667pt;}
.x67_c00179{left:279.200000pt;}
.x83_c00179{left:282.666667pt;}
.x40_c00179{left:283.733333pt;}
.x1b_c00179{left:285.733333pt;}
.x22_c00179{left:288.533333pt;}
.x2e_c00179{left:292.933333pt;}
.x9d_c00179{left:294.000000pt;}
.x8f_c00179{left:295.066667pt;}
.x69_c00179{left:297.066667pt;}
.x46_c00179{left:301.200000pt;}
.x55_c00179{left:302.800000pt;}
.x1c_c00179{left:304.000000pt;}
.x23_c00179{left:305.866667pt;}
.x6_c00179{left:306.933333pt;}
.x50_c00179{left:308.533333pt;}
.x49_c00179{left:309.733333pt;}
.x14_c00179{left:311.733333pt;}
.x5b_c00179{left:313.066667pt;}
.x3a_c00179{left:316.000000pt;}
.x2b_c00179{left:317.600000pt;}
.x84_c00179{left:319.066667pt;}
.x15_c00179{left:320.666667pt;}
.x78_c00179{left:321.866667pt;}
.x7_c00179{left:324.533333pt;}
.x27_c00179{left:327.600000pt;}
.x63_c00179{left:329.600000pt;}
.x59_c00179{left:331.066667pt;}
.x9b_c00179{left:332.133333pt;}
.x3b_c00179{left:333.600000pt;}
.xa2_c00179{left:336.266667pt;}
.x90_c00179{left:338.666667pt;}
.x76_c00179{left:341.333333pt;}
.x7d_c00179{left:342.800000pt;}
.x56_c00179{left:345.066667pt;}
.x1d_c00179{left:346.933333pt;}
.x70_c00179{left:348.133333pt;}
.x24_c00179{left:350.400000pt;}
.x41_c00179{left:351.600000pt;}
.x2c_c00179{left:354.666667pt;}
.xa3_c00179{left:356.133333pt;}
.x47_c00179{left:357.200000pt;}
.x6b_c00179{left:358.933333pt;}
.x97_c00179{left:361.200000pt;}
.x5c_c00179{left:362.933333pt;}
.x34_c00179{left:363.866667pt;}
.x88_c00179{left:364.933333pt;}
.x28_c00179{left:367.333333pt;}
.x2d_c00179{left:368.800000pt;}
.x79_c00179{left:370.133333pt;}
.x42_c00179{left:372.133333pt;}
.x2f_c00179{left:373.200000pt;}
.x8e_c00179{left:374.400000pt;}
.x4a_c00179{left:376.266667pt;}
.x2_c00179{left:378.000000pt;}
.x3c_c00179{left:380.266667pt;}
.x85_c00179{left:382.400000pt;}
.x9c_c00179{left:383.333333pt;}
.x5a_c00179{left:384.533333pt;}
.xa4_c00179{left:385.600000pt;}
.x8_c00179{left:387.200000pt;}
.x6c_c00179{left:390.666667pt;}
.x94_c00179{left:391.733333pt;}
.x35_c00179{left:394.000000pt;}
.x16_c00179{left:395.466667pt;}
.xd_c00179{left:397.066667pt;}
.x3d_c00179{left:399.200000pt;}
.x7e_c00179{left:401.733333pt;}
.x5d_c00179{left:402.933333pt;}
.x4c_c00179{left:403.866667pt;}
.x72_c00179{left:405.600000pt;}
.xa0_c00179{left:407.066667pt;}
.x5f_c00179{left:408.133333pt;}
.x71_c00179{left:409.466667pt;}
.x95_c00179{left:411.600000pt;}
.x64_c00179{left:412.800000pt;}
.x9_c00179{left:414.666667pt;}
.x17_c00179{left:416.000000pt;}
.x3e_c00179{left:418.133333pt;}
.xa7_c00179{left:419.600000pt;}
.xe_c00179{left:421.333333pt;}
.x29_c00179{left:422.400000pt;}
.x1e_c00179{left:423.466667pt;}
.x89_c00179{left:424.400000pt;}
.x91_c00179{left:425.733333pt;}
.x73_c00179{left:427.733333pt;}
.x77_c00179{left:429.600000pt;}
.x82_c00179{left:433.333333pt;}
.x4d_c00179{left:435.200000pt;}
.x51_c00179{left:436.533333pt;}
.x65_c00179{left:438.666667pt;}
.x36_c00179{left:439.733333pt;}
.x60_c00179{left:440.800000pt;}
.xa5_c00179{left:442.933333pt;}
.xa_c00179{left:445.066667pt;}
.x80_c00179{left:446.133333pt;}
.xf_c00179{left:447.200000pt;}
.x18_c00179{left:448.666667pt;}
.x43_c00179{left:449.600000pt;}
.x86_c00179{left:450.533333pt;}
.x8c_c00179{left:455.733333pt;}
.x74_c00179{left:457.466667pt;}
.x13e_c00179{left:476.000000pt;}
.xe1_c00179{left:478.400000pt;}
.x138_c00179{left:490.266667pt;}
.xc0_c00179{left:493.733333pt;}
.xe6_c00179{left:494.666667pt;}
.xff_c00179{left:496.133333pt;}
.x14b_c00179{left:500.533333pt;}
.xad_c00179{left:502.400000pt;}
.x13f_c00179{left:505.733333pt;}
.x139_c00179{left:509.200000pt;}
.xba_c00179{left:510.133333pt;}
.xcf_c00179{left:512.133333pt;}
.x135_c00179{left:514.533333pt;}
.x128_c00179{left:515.866667pt;}
.x124_c00179{left:517.600000pt;}
.x12b_c00179{left:518.800000pt;}
.x117_c00179{left:519.866667pt;}
.xb8_c00179{left:522.400000pt;}
.x146_c00179{left:524.800000pt;}
.xca_c00179{left:527.733333pt;}
.xe2_c00179{left:528.666667pt;}
.x10a_c00179{left:530.666667pt;}
.x132_c00179{left:532.266667pt;}
.xec_c00179{left:533.333333pt;}
.xdb_c00179{left:534.266667pt;}
.x106_c00179{left:535.466667pt;}
.x144_c00179{left:537.066667pt;}
.x113_c00179{left:538.800000pt;}
.xf1_c00179{left:540.666667pt;}
.xd5_c00179{left:542.400000pt;}
.x12f_c00179{left:543.333333pt;}
.x100_c00179{left:545.066667pt;}
.xc1_c00179{left:546.266667pt;}
.x133_c00179{left:548.000000pt;}
.xae_c00179{left:551.066667pt;}
.xbb_c00179{left:552.400000pt;}
.xf5_c00179{left:554.000000pt;}
.x140_c00179{left:555.066667pt;}
.xf2_c00179{left:556.000000pt;}
.x114_c00179{left:557.333333pt;}
.x13a_c00179{left:558.400000pt;}
.xdc_c00179{left:560.133333pt;}
.x110_c00179{left:562.133333pt;}
.xe7_c00179{left:563.466667pt;}
.x101_c00179{left:565.600000pt;}
.xf8_c00179{left:566.533333pt;}
.xfb_c00179{left:568.000000pt;}
.xaf_c00179{left:569.333333pt;}
.xc2_c00179{left:570.266667pt;}
.xd6_c00179{left:571.866667pt;}
.xf3_c00179{left:573.866667pt;}
.x12c_c00179{left:575.066667pt;}
.x13b_c00179{left:577.866667pt;}
.xed_c00179{left:579.733333pt;}
.xe8_c00179{left:581.066667pt;}
.x141_c00179{left:582.133333pt;}
.xcb_c00179{left:584.000000pt;}
.xe3_c00179{left:585.600000pt;}
.xc3_c00179{left:588.533333pt;}
.x121_c00179{left:590.666667pt;}
.xd0_c00179{left:591.600000pt;}
.xdd_c00179{left:593.466667pt;}
.x11e_c00179{left:595.333333pt;}
.x118_c00179{left:596.933333pt;}
.xb0_c00179{left:598.133333pt;}
.xe9_c00179{left:600.533333pt;}
.x102_c00179{left:602.666667pt;}
.x10b_c00179{left:603.600000pt;}
.xbc_c00179{left:604.533333pt;}
.x142_c00179{left:606.000000pt;}
.x12e_c00179{left:607.466667pt;}
.xd7_c00179{left:608.933333pt;}
.xf9_c00179{left:610.400000pt;}
.xde_c00179{left:612.000000pt;}
.x107_c00179{left:613.866667pt;}
.xb1_c00179{left:615.466667pt;}
.x13c_c00179{left:618.133333pt;}
.x103_c00179{left:619.333333pt;}
.xe4_c00179{left:622.400000pt;}
.x148_c00179{left:624.266667pt;}
.xf6_c00179{left:625.466667pt;}
.x119_c00179{left:627.066667pt;}
.xd1_c00179{left:631.600000pt;}
.x11b_c00179{left:633.066667pt;}
.x120_c00179{left:634.400000pt;}
.xbd_c00179{left:636.800000pt;}
.x10c_c00179{left:637.866667pt;}
.xc4_c00179{left:638.800000pt;}
.x108_c00179{left:640.800000pt;}
.xee_c00179{left:643.066667pt;}
.x136_c00179{left:644.133333pt;}
.x122_c00179{left:645.333333pt;}
.x129_c00179{left:646.400000pt;}
.xea_c00179{left:649.466667pt;}
.xfc_c00179{left:651.600000pt;}
.xdf_c00179{left:653.333333pt;}
.x12a_c00179{left:654.400000pt;}
.xd2_c00179{left:655.600000pt;}
.xc5_c00179{left:657.066667pt;}
.xb2_c00179{left:658.400000pt;}
.xfd_c00179{left:661.866667pt;}
.xb3_c00179{left:665.066667pt;}
.xbe_c00179{left:667.200000pt;}
.xd8_c00179{left:668.400000pt;}
.x111_c00179{left:670.000000pt;}
.xeb_c00179{left:670.933333pt;}
.xcc_c00179{left:675.466667pt;}
.xb4_c00179{left:677.600000pt;}
.x137_c00179{left:678.666667pt;}
.x109_c00179{left:679.866667pt;}
.xc6_c00179{left:681.066667pt;}
.x147_c00179{left:682.533333pt;}
.x11f_c00179{left:683.733333pt;}
.xd3_c00179{left:686.666667pt;}
.xf4_c00179{left:689.333333pt;}
.xb5_c00179{left:690.400000pt;}
.x11a_c00179{left:692.000000pt;}
.xfa_c00179{left:693.333333pt;}
.x11c_c00179{left:695.200000pt;}
.x115_c00179{left:697.200000pt;}
.xd9_c00179{left:698.533333pt;}
.x13d_c00179{left:700.000000pt;}
.xc7_c00179{left:703.200000pt;}
.xcd_c00179{left:704.533333pt;}
.xaa_c00179{left:705.866667pt;}
.x126_c00179{left:708.000000pt;}
.x131_c00179{left:710.000000pt;}
.xbf_c00179{left:712.266667pt;}
.x134_c00179{left:714.133333pt;}
.xb6_c00179{left:715.333333pt;}
.x127_c00179{left:716.266667pt;}
.x130_c00179{left:718.000000pt;}
.xe0_c00179{left:719.600000pt;}
.xd4_c00179{left:721.600000pt;}
.x145_c00179{left:722.933333pt;}
.x123_c00179{left:724.400000pt;}
.x143_c00179{left:725.600000pt;}
.xda_c00179{left:727.600000pt;}
.xfe_c00179{left:728.800000pt;}
.x12d_c00179{left:730.933333pt;}
.x14a_c00179{left:732.133333pt;}
.xab_c00179{left:733.066667pt;}
.xef_c00179{left:734.933333pt;}
.x125_c00179{left:736.800000pt;}
.xe5_c00179{left:738.533333pt;}
.xb9_c00179{left:739.600000pt;}
.xc8_c00179{left:740.666667pt;}
.x104_c00179{left:742.266667pt;}
.xf7_c00179{left:744.533333pt;}
.x10d_c00179{left:746.133333pt;}
.x116_c00179{left:747.066667pt;}
.xce_c00179{left:749.600000pt;}
.xc9_c00179{left:750.533333pt;}
.x112_c00179{left:751.600000pt;}
.x11d_c00179{left:753.466667pt;}
.xf0_c00179{left:754.800000pt;}
.x10e_c00179{left:756.000000pt;}
.x105_c00179{left:759.200000pt;}
.xac_c00179{left:762.533333pt;}
.xb7_c00179{left:764.400000pt;}
.x149_c00179{left:770.800000pt;}
.x10f_c00179{left:773.333333pt;}
.x14c_c00179{left:786.933333pt;}
.x14e_c00179{left:788.133333pt;}
.x14d_c00179{left:844.266667pt;}
}





/* 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_c00180 {
    display:none;
  }
  .loading-indicator_c00180.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00180 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_c00180 { 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_c00180" -> "#page-container .classname_c00180")
 */
.pf_c00180 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00180 { /* 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_c00180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00180 { /* 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_c00180 { /* 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_c00180 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00180 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00180 {overflow:visible;}
  }
}
.c_c00180 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00180 { /* 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_c00180:after { /* webkit #35443 */
  content: '';
}
.t_c00180:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00180 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 */
}
.__c00180 { /* 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_c00180 { /* info for Javascript */
  display:none;
}
.l_c00180 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00180 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00180 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00180: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_c00180 {
    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_c00180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00180.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_c00180 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00180;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.000000;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;}
.me7_c00180{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00180{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m39_c00180{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00180{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00180{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00180{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m60_c00180{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me0_c00180{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00180{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m52_c00180{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00180{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00180{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m122_c00180{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m35_c00180{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m46_c00180{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m127_c00180{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00180{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m24_c00180{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m75_c00180{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m50_c00180{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00180{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.md1_c00180{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00180{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb_c00180{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00180{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m13_c00180{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00180{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00180{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m81_c00180{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.md7_c00180{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m93_c00180{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m33_c00180{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00180{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00180{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00180{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m87_c00180{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m73_c00180{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.mc_c00180{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00180{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m89_c00180{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m53_c00180{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m66_c00180{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m109_c00180{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m76_c00180{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00180{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md2_c00180{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m74_c00180{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m54_c00180{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00180{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00180{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m105_c00180{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m88_c00180{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00180{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00180{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00180{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m64_c00180{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m34_c00180{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m72_c00180{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00180{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m110_c00180{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m23_c00180{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m82_c00180{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m71_c00180{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mae_c00180{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m62_c00180{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00180{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m112_c00180{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m12_c00180{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m92_c00180{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00180{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00180{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m65_c00180{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00180{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00180{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m78_c00180{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m31_c00180{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m63_c00180{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00180{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mce_c00180{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m86_c00180{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00180{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m41_c00180{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m67_c00180{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00180{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m90_c00180{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00180{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mad_c00180{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m77_c00180{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m29_c00180{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00180{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00180{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m80_c00180{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00180{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00180{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m59_c00180{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m20_c00180{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m111_c00180{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.me8_c00180{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00180{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00180{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00180{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00180{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00180{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m70_c00180{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00180{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00180{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m61_c00180{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00180{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m22_c00180{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m98_c00180{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m121_c00180{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mac_c00180{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8_c00180{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me6_c00180{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00180{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00180{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m27_c00180{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00180{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00180{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m97_c00180{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7_c00180{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00180{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00180{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00180{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00180{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00180{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m38_c00180{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00180{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00180{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m51_c00180{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m102_c00180{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4_c00180{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00180{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00180{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mca_c00180{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m14_c00180{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00180{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mba_c00180{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md0_c00180{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.md4_c00180{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00180{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m56_c00180{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m26_c00180{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m108_c00180{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00180{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m94_c00180{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m120_c00180{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.meb_c00180{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00180{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9_c00180{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00180{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3_c00180{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00180{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00180{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00180{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m103_c00180{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00180{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00180{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00180{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00180{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m57_c00180{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m21_c00180{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00180{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00180{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00180{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m37_c00180{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m28_c00180{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00180{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md5_c00180{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m106_c00180{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00180{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00180{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m25_c00180{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00180{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00180{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.maf_c00180{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf_c00180{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00180{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m114_c00180{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.md3_c00180{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00180{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m15_c00180{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00180{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mee_c00180{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m30_c00180{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00180{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m84_c00180{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m100_c00180{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.md_c00180{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00180{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00180{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00180{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m83_c00180{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00180{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m116_c00180{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m11_c00180{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00180{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m107_c00180{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00180{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m19_c00180{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00180{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma_c00180{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m40_c00180{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m58_c00180{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me1_c00180{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00180{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00180{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m48_c00180{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m115_c00180{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.med_c00180{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m113_c00180{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00180{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00180{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00180{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00180{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me2_c00180{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00180{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00180{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m36_c00180{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00180{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.md9_c00180{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mec_c00180{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00180{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2_c00180{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m32_c00180{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00180{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me4_c00180{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m68_c00180{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m44_c00180{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m118_c00180{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m96_c00180{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00180{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mea_c00180{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00180{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00180{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);}
.mc2_c00180{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00180{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m85_c00180{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.md6_c00180{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mde_c00180{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00180{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m55_c00180{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m43_c00180{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m101_c00180{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00180{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mff_c00180{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00180{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00180{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m6_c00180{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00180{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m126_c00180{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mda_c00180{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m42_c00180{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md8_c00180{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.me9_c00180{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00180{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00180{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00180{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m95_c00180{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00180{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m45_c00180{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m91_c00180{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m5_c00180{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.maa_c00180{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c00180{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00180{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00180{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00180{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.me3_c00180{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00180{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m18_c00180{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00180{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00180{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mab_c00180{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00180{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m124_c00180{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00180{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m79_c00180{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m117_c00180{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m99_c00180{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00180{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mef_c00180{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m123_c00180{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00180{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m10_c00180{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m17_c00180{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.me5_c00180{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00180{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m119_c00180{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m125_c00180{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m104_c00180{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m47_c00180{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m49_c00180{transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);}
.m0_c00180{transform:matrix(0.468500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468500,0.000000,0.000000,0.250000,0,0);}
.me_c00180{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls0_c00180{letter-spacing:0.000000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{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__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00180{word-spacing:-9.605263px;}
.ws8_c00180{word-spacing:-7.500000px;}
.ws6_c00180{word-spacing:-6.855204px;}
.wsc_c00180{word-spacing:-1.718750px;}
.ws7_c00180{word-spacing:-1.500000px;}
.wsd_c00180{word-spacing:0.000000px;}
.ws9_c00180{word-spacing:10.294118px;}
.ws2_c00180{word-spacing:11.875000px;}
.ws0_c00180{word-spacing:14.629630px;}
.ws1_c00180{word-spacing:15.000000px;}
.ws4_c00180{word-spacing:16.785714px;}
.ws3_c00180{word-spacing:22.142857px;}
.wsb_c00180{word-spacing:25.714286px;}
.ws5_c00180{word-spacing:63.125000px;}
._1_c00180{width:52.142857px;}
._0_c00180{width:59.285714px;}
.fc0_c00180{color:transparent;}
.fs4_c00180{font-size:30.000000px;}
.fs6_c00180{font-size:48.000000px;}
.fs3_c00180{font-size:54.000000px;}
.fs2_c00180{font-size:60.000000px;}
.fs1_c00180{font-size:66.000000px;}
.fs5_c00180{font-size:72.000000px;}
.fs0_c00180{font-size:78.000000px;}
.y0_c00180{bottom:0.000000px;}
.y38_c00180{bottom:183.600000px;}
.y6b_c00180{bottom:186.150000px;}
.y37_c00180{bottom:198.300000px;}
.y6a_c00180{bottom:202.650000px;}
.y36_c00180{bottom:213.000000px;}
.y69_c00180{bottom:220.650000px;}
.y35_c00180{bottom:227.400000px;}
.y34_c00180{bottom:241.500000px;}
.y68_c00180{bottom:246.600000px;}
.y33_c00180{bottom:255.900000px;}
.y32_c00180{bottom:270.000000px;}
.y67_c00180{bottom:281.700000px;}
.y31_c00180{bottom:284.400000px;}
.y30_c00180{bottom:298.500000px;}
.y66_c00180{bottom:300.000000px;}
.y2f_c00180{bottom:312.900000px;}
.y65_c00180{bottom:317.250000px;}
.y2e_c00180{bottom:327.600000px;}
.y64_c00180{bottom:335.250000px;}
.y2d_c00180{bottom:341.250000px;}
.y63_c00180{bottom:352.950000px;}
.y2c_c00180{bottom:355.650000px;}
.y62_c00180{bottom:370.950000px;}
.y61_c00180{bottom:388.650000px;}
.y2b_c00180{bottom:398.550000px;}
.y60_c00180{bottom:406.350000px;}
.y2a_c00180{bottom:420.450000px;}
.y5f_c00180{bottom:424.350000px;}
.y29_c00180{bottom:438.150000px;}
.y28_c00180{bottom:438.750000px;}
.y5e_c00180{bottom:442.050000px;}
.y27_c00180{bottom:456.450000px;}
.y5d_c00180{bottom:464.100000px;}
.y26_c00180{bottom:474.150000px;}
.y5c_c00180{bottom:482.100000px;}
.y25_c00180{bottom:496.500000px;}
.y5b_c00180{bottom:499.800000px;}
.y5a_c00180{bottom:517.800000px;}
.y24_c00180{bottom:523.050000px;}
.y59_c00180{bottom:535.800000px;}
.y23_c00180{bottom:540.600000px;}
.y58_c00180{bottom:553.800000px;}
.y22_c00180{bottom:558.600000px;}
.y57_c00180{bottom:571.800000px;}
.y21_c00180{bottom:576.300000px;}
.y56_c00180{bottom:589.500000px;}
.y20_c00180{bottom:598.650000px;}
.y55_c00180{bottom:607.200000px;}
.y1f_c00180{bottom:616.650000px;}
.y54_c00180{bottom:625.200000px;}
.y1e_c00180{bottom:634.350000px;}
.y53_c00180{bottom:643.200000px;}
.y1d_c00180{bottom:656.400000px;}
.y52_c00180{bottom:661.200000px;}
.y1c_c00180{bottom:674.100000px;}
.y51_c00180{bottom:678.900000px;}
.y1b_c00180{bottom:692.100000px;}
.y50_c00180{bottom:696.600000px;}
.y1a_c00180{bottom:709.800000px;}
.y4f_c00180{bottom:714.600000px;}
.y19_c00180{bottom:728.100000px;}
.y4e_c00180{bottom:737.250000px;}
.y18_c00180{bottom:745.800000px;}
.y4d_c00180{bottom:754.950000px;}
.y17_c00180{bottom:763.500000px;}
.y16_c00180{bottom:781.800000px;}
.y4c_c00180{bottom:794.550000px;}
.y4b_c00180{bottom:794.850000px;}
.y15_c00180{bottom:799.050000px;}
.y4a_c00180{bottom:813.600000px;}
.y14_c00180{bottom:817.050000px;}
.y49_c00180{bottom:831.150000px;}
.y13_c00180{bottom:835.050000px;}
.y48_c00180{bottom:849.150000px;}
.y12_c00180{bottom:853.050000px;}
.y47_c00180{bottom:866.850000px;}
.y11_c00180{bottom:870.750000px;}
.y46_c00180{bottom:884.550000px;}
.y10_c00180{bottom:888.450000px;}
.y45_c00180{bottom:902.550000px;}
.ye_c00180{bottom:912.300000px;}
.y44_c00180{bottom:920.550000px;}
.yd_c00180{bottom:927.000000px;}
.y43_c00180{bottom:938.550000px;}
.yc_c00180{bottom:941.400000px;}
.y42_c00180{bottom:955.800000px;}
.yb_c00180{bottom:957.300000px;}
.ya_c00180{bottom:969.150000px;}
.yf_c00180{bottom:969.450000px;}
.y41_c00180{bottom:975.900000px;}
.y9_c00180{bottom:986.100000px;}
.y40_c00180{bottom:990.750000px;}
.y8_c00180{bottom:1004.100000px;}
.y3f_c00180{bottom:1006.650000px;}
.y3e_c00180{bottom:1021.350000px;}
.y7_c00180{bottom:1022.850000px;}
.y3d_c00180{bottom:1035.000000px;}
.y6_c00180{bottom:1041.150000px;}
.y3c_c00180{bottom:1047.600000px;}
.y5_c00180{bottom:1058.400000px;}
.y3b_c00180{bottom:1062.300000px;}
.y3a_c00180{bottom:1079.550000px;}
.y4_c00180{bottom:1080.600000px;}
.y3_c00180{bottom:1098.300000px;}
.y39_c00180{bottom:1098.600000px;}
.y2_c00180{bottom:1116.300000px;}
.y1_c00180{bottom:1143.000000px;}
.h6_c00180{height:30.000000px;}
.h8_c00180{height:48.000000px;}
.h5_c00180{height:54.000000px;}
.h4_c00180{height:60.000000px;}
.h3_c00180{height:66.000000px;}
.h7_c00180{height:72.000000px;}
.h2_c00180{height:78.000000px;}
.h1_c00180{height:1273.500000px;}
.h0_c00180{height:1273.679993px;}
.w1_c00180{width:963.000000px;}
.w0_c00180{width:963.359985px;}
.x0_c00180{left:0.000000px;}
.x2e_c00180{left:93.900000px;}
.x17_c00180{left:95.400000px;}
.x9f_c00180{left:97.050000px;}
.xa3_c00180{left:105.150000px;}
.x35_c00180{left:110.550000px;}
.x3_c00180{left:112.350000px;}
.xa_c00180{left:113.700000px;}
.x84_c00180{left:114.900000px;}
.x95_c00180{left:121.950000px;}
.x39_c00180{left:124.200000px;}
.x4f_c00180{left:125.250000px;}
.xb0_c00180{left:130.350000px;}
.x6d_c00180{left:132.000000px;}
.x11_c00180{left:133.500000px;}
.xa4_c00180{left:136.500000px;}
.x18_c00180{left:137.550000px;}
.x9b_c00180{left:138.600000px;}
.x79_c00180{left:139.950000px;}
.x3a_c00180{left:141.450000px;}
.x98_c00180{left:143.100000px;}
.xa0_c00180{left:144.150000px;}
.x43_c00180{left:145.500000px;}
.x74_c00180{left:146.700000px;}
.x12_c00180{left:149.400000px;}
.x54_c00180{left:152.100000px;}
.x4_c00180{left:154.050000px;}
.x85_c00180{left:156.300000px;}
.x83_c00180{left:158.100000px;}
.x62_c00180{left:159.600000px;}
.x1e_c00180{left:161.100000px;}
.x8f_c00180{left:162.450000px;}
.x44_c00180{left:164.250000px;}
.x7d_c00180{left:166.800000px;}
.x50_c00180{left:168.750000px;}
.x3b_c00180{left:170.550000px;}
.x2f_c00180{left:172.050000px;}
.x66_c00180{left:173.850000px;}
.x8b_c00180{left:174.900000px;}
.xad_c00180{left:176.100000px;}
.x63_c00180{left:177.300000px;}
.x5_c00180{left:178.500000px;}
.x4a_c00180{left:183.300000px;}
.x7a_c00180{left:184.950000px;}
.xa5_c00180{left:187.950000px;}
.x49_c00180{left:189.750000px;}
.xaf_c00180{left:192.000000px;}
.x1f_c00180{left:193.200000px;}
.x6e_c00180{left:194.700000px;}
.xb_c00180{left:196.200000px;}
.x27_c00180{left:197.850000px;}
.x5d_c00180{left:198.900000px;}
.xab_c00180{left:200.400000px;}
.x19_c00180{left:201.600000px;}
.x92_c00180{left:203.250000px;}
.x86_c00180{left:205.650000px;}
.xa1_c00180{left:207.450000px;}
.x99_c00180{left:209.400000px;}
.x4b_c00180{left:212.100000px;}
.x57_c00180{left:213.600000px;}
.x3c_c00180{left:214.800000px;}
.xa6_c00180{left:216.450000px;}
.x75_c00180{left:219.900000px;}
.x13_c00180{left:220.950000px;}
.x51_c00180{left:224.850000px;}
.x30_c00180{left:226.350000px;}
.x45_c00180{left:228.750000px;}
.x67_c00180{left:231.750000px;}
.x1a_c00180{left:233.250000px;}
.xc_c00180{left:236.100000px;}
.x14_c00180{left:238.650000px;}
.x68_c00180{left:240.000000px;}
.x9e_c00180{left:241.500000px;}
.x7f_c00180{left:243.000000px;}
.x20_c00180{left:244.350000px;}
.x6f_c00180{left:245.850000px;}
.x6_c00180{left:247.200000px;}
.x7b_c00180{left:248.250000px;}
.x55_c00180{left:250.050000px;}
.x93_c00180{left:251.100000px;}
.xd_c00180{left:252.300000px;}
.x76_c00180{left:255.150000px;}
.x87_c00180{left:256.800000px;}
.x70_c00180{left:259.200000px;}
.x3e_c00180{left:261.600000px;}
.x21_c00180{left:262.650000px;}
.x89_c00180{left:265.800000px;}
.x58_c00180{left:266.850000px;}
.x69_c00180{left:268.050000px;}
.xe_c00180{left:269.250000px;}
.x80_c00180{left:271.050000px;}
.x7_c00180{left:272.100000px;}
.x1b_c00180{left:273.600000px;}
.x28_c00180{left:275.250000px;}
.x56_c00180{left:276.300000px;}
.x52_c00180{left:277.800000px;}
.x90_c00180{left:280.350000px;}
.x22_c00180{left:281.400000px;}
.x3f_c00180{left:283.500000px;}
.x8a_c00180{left:284.850000px;}
.x31_c00180{left:287.250000px;}
.x96_c00180{left:288.750000px;}
.x40_c00180{left:291.000000px;}
.x6a_c00180{left:292.200000px;}
.x71_c00180{left:294.150000px;}
.x59_c00180{left:295.950000px;}
.x5e_c00180{left:297.150000px;}
.x81_c00180{left:300.150000px;}
.x77_c00180{left:303.150000px;}
.xf_c00180{left:304.200000px;}
.x23_c00180{left:305.550000px;}
.x91_c00180{left:307.650000px;}
.x64_c00180{left:309.750000px;}
.x53_c00180{left:310.950000px;}
.x15_c00180{left:312.450000px;}
.x4c_c00180{left:313.500000px;}
.x24_c00180{left:315.600000px;}
.x29_c00180{left:318.150000px;}
.x41_c00180{left:320.100000px;}
.x8c_c00180{left:322.200000px;}
.xa9_c00180{left:325.500000px;}
.x3d_c00180{left:326.700000px;}
.x1_c00180{left:327.900000px;}
.x97_c00180{left:329.100000px;}
.x5a_c00180{left:331.200000px;}
.x16_c00180{left:333.000000px;}
.x42_c00180{left:334.800000px;}
.x9a_c00180{left:337.200000px;}
.x4d_c00180{left:339.000000px;}
.x6b_c00180{left:341.100000px;}
.x8_c00180{left:342.300000px;}
.x1c_c00180{left:344.100000px;}
.x2a_c00180{left:345.900000px;}
.x82_c00180{left:346.950000px;}
.x9c_c00180{left:349.650000px;}
.x32_c00180{left:351.750000px;}
.x25_c00180{left:354.450000px;}
.x47_c00180{left:359.850000px;}
.x36_c00180{left:361.500000px;}
.x2b_c00180{left:363.150000px;}
.xac_c00180{left:364.800000px;}
.x5f_c00180{left:367.350000px;}
.x8d_c00180{left:369.300000px;}
.x78_c00180{left:370.800000px;}
.x4e_c00180{left:372.900000px;}
.xae_c00180{left:374.100000px;}
.x5b_c00180{left:376.200000px;}
.x72_c00180{left:378.750000px;}
.xa2_c00180{left:380.700000px;}
.x7c_c00180{left:381.750000px;}
.x33_c00180{left:383.100000px;}
.x46_c00180{left:384.300000px;}
.x94_c00180{left:385.800000px;}
.x9d_c00180{left:388.500000px;}
.x37_c00180{left:390.000000px;}
.x10_c00180{left:391.650000px;}
.x1d_c00180{left:393.000000px;}
.x6c_c00180{left:394.350000px;}
.x65_c00180{left:395.700000px;}
.x8e_c00180{left:397.350000px;}
.x2c_c00180{left:399.450000px;}
.xa8_c00180{left:401.100000px;}
.x26_c00180{left:402.300000px;}
.x88_c00180{left:403.650000px;}
.x73_c00180{left:406.950000px;}
.x60_c00180{left:409.050000px;}
.xaa_c00180{left:410.100000px;}
.x9_c00180{left:411.750000px;}
.x7e_c00180{left:415.500000px;}
.x34_c00180{left:416.550000px;}
.x38_c00180{left:419.100000px;}
.x48_c00180{left:420.300000px;}
.x61_c00180{left:421.350000px;}
.x2d_c00180{left:422.550000px;}
.x5c_c00180{left:428.100000px;}
.xa7_c00180{left:429.600000px;}
.xc7_c00180{left:452.100000px;}
.x113_c00180{left:453.300000px;}
.x144_c00180{left:454.350000px;}
.x155_c00180{left:455.700000px;}
.x119_c00180{left:458.700000px;}
.xbb_c00180{left:467.400000px;}
.xb1_c00180{left:469.800000px;}
.x10a_c00180{left:470.850000px;}
.x12f_c00180{left:472.050000px;}
.xcf_c00180{left:481.350000px;}
.x110_c00180{left:482.700000px;}
.xb2_c00180{left:483.900000px;}
.x104_c00180{left:488.100000px;}
.x128_c00180{left:490.500000px;}
.xf7_c00180{left:491.850000px;}
.x121_c00180{left:493.050000px;}
.x13c_c00180{left:494.550000px;}
.x11c_c00180{left:498.300000px;}
.xc3_c00180{left:502.350000px;}
.xdf_c00180{left:505.050000px;}
.xe2_c00180{left:506.550000px;}
.xf8_c00180{left:508.350000px;}
.xef_c00180{left:509.550000px;}
.x13a_c00180{left:510.900000px;}
.xc8_c00180{left:513.000000px;}
.xbc_c00180{left:514.950000px;}
.x10b_c00180{left:518.700000px;}
.x140_c00180{left:520.200000px;}
.xd1_c00180{left:522.000000px;}
.x117_c00180{left:523.050000px;}
.x145_c00180{left:524.250000px;}
.x132_c00180{left:525.750000px;}
.x14a_c00180{left:526.950000px;}
.x105_c00180{left:529.500000px;}
.xf0_c00180{left:531.450000px;}
.xb3_c00180{left:532.800000px;}
.x136_c00180{left:535.050000px;}
.xd2_c00180{left:536.700000px;}
.xbd_c00180{left:540.150000px;}
.xd4_c00180{left:542.250000px;}
.xe0_c00180{left:543.900000px;}
.x14e_c00180{left:545.400000px;}
.x126_c00180{left:548.100000px;}
.xff_c00180{left:551.400000px;}
.xf9_c00180{left:553.350000px;}
.x10c_c00180{left:555.000000px;}
.x150_c00180{left:556.650000px;}
.xb4_c00180{left:558.000000px;}
.xd5_c00180{left:559.500000px;}
.x159_c00180{left:560.850000px;}
.x11a_c00180{left:562.800000px;}
.xe3_c00180{left:564.900000px;}
.x13d_c00180{left:566.400000px;}
.x106_c00180{left:568.800000px;}
.x158_c00180{left:569.850000px;}
.x114_c00180{left:571.650000px;}
.xe9_c00180{left:572.700000px;}
.xc9_c00180{left:576.300000px;}
.xb5_c00180{left:578.550000px;}
.xbe_c00180{left:581.550000px;}
.x13e_c00180{left:584.100000px;}
.x142_c00180{left:585.300000px;}
.xe1_c00180{left:586.800000px;}
.xdb_c00180{left:588.600000px;}
.x122_c00180{left:590.250000px;}
.xd6_c00180{left:591.600000px;}
.xe4_c00180{left:592.950000px;}
.xf1_c00180{left:594.150000px;}
.x11d_c00180{left:597.300000px;}
.x137_c00180{left:600.900000px;}
.x147_c00180{left:603.150000px;}
.xb6_c00180{left:604.800000px;}
.xfa_c00180{left:605.850000px;}
.x111_c00180{left:606.900000px;}
.x12d_c00180{left:608.100000px;}
.xd7_c00180{left:610.350000px;}
.x123_c00180{left:611.850000px;}
.x146_c00180{left:613.200000px;}
.xca_c00180{left:614.850000px;}
.x118_c00180{left:616.050000px;}
.x154_c00180{left:618.000000px;}
.x10d_c00180{left:619.050000px;}
.x153_c00180{left:621.600000px;}
.xea_c00180{left:623.400000px;}
.x102_c00180{left:625.350000px;}
.x14b_c00180{left:626.400000px;}
.x115_c00180{left:627.450000px;}
.x138_c00180{left:628.950000px;}
.xfb_c00180{left:630.300000px;}
.xcb_c00180{left:634.350000px;}
.x133_c00180{left:635.550000px;}
.xdc_c00180{left:637.950000px;}
.x11e_c00180{left:640.200000px;}
.x129_c00180{left:641.550000px;}
.x14c_c00180{left:642.600000px;}
.x156_c00180{left:644.850000px;}
.x141_c00180{left:646.050000px;}
.xe5_c00180{left:647.250000px;}
.xf4_c00180{left:650.550000px;}
.x148_c00180{left:651.750000px;}
.xeb_c00180{left:653.700000px;}
.xd8_c00180{left:655.050000px;}
.xb7_c00180{left:657.000000px;}
.x11f_c00180{left:659.250000px;}
.x134_c00180{left:661.500000px;}
.xfc_c00180{left:662.700000px;}
.xe6_c00180{left:663.750000px;}
.x11b_c00180{left:665.850000px;}
.x130_c00180{left:667.500000px;}
.x103_c00180{left:668.850000px;}
.xbf_c00180{left:670.050000px;}
.x157_c00180{left:671.400000px;}
.xfd_c00180{left:672.450000px;}
.x12a_c00180{left:674.700000px;}
.x124_c00180{left:675.900000px;}
.x14f_c00180{left:677.550000px;}
.x10e_c00180{left:679.200000px;}
.x100_c00180{left:680.700000px;}
.x112_c00180{left:682.500000px;}
.xec_c00180{left:686.850000px;}
.xd9_c00180{left:691.050000px;}
.xdd_c00180{left:692.250000px;}
.x13b_c00180{left:693.600000px;}
.x12b_c00180{left:695.550000px;}
.xda_c00180{left:698.250000px;}
.x127_c00180{left:700.050000px;}
.xc0_c00180{left:703.950000px;}
.xb8_c00180{left:706.350000px;}
.x12e_c00180{left:707.850000px;}
.xc4_c00180{left:709.200000px;}
.xf2_c00180{left:712.200000px;}
.xcc_c00180{left:716.400000px;}
.xd0_c00180{left:718.200000px;}
.x107_c00180{left:719.250000px;}
.xed_c00180{left:721.350000px;}
.x149_c00180{left:723.150000px;}
.xf5_c00180{left:725.100000px;}
.x152_c00180{left:726.300000px;}
.x10f_c00180{left:728.850000px;}
.x143_c00180{left:730.650000px;}
.xb9_c00180{left:732.300000px;}
.x14d_c00180{left:735.450000px;}
.xc1_c00180{left:737.400000px;}
.xc5_c00180{left:739.800000px;}
.x131_c00180{left:741.000000px;}
.x108_c00180{left:743.700000px;}
.x12c_c00180{left:745.200000px;}
.xcd_c00180{left:746.250000px;}
.xd3_c00180{left:747.450000px;}
.xf3_c00180{left:750.300000px;}
.x135_c00180{left:751.800000px;}
.x13f_c00180{left:753.000000px;}
.xf6_c00180{left:754.650000px;}
.xe7_c00180{left:755.850000px;}
.xee_c00180{left:757.650000px;}
.x101_c00180{left:758.850000px;}
.x116_c00180{left:759.900000px;}
.x2_c00180{left:761.700000px;}
.x139_c00180{left:763.950000px;}
.xde_c00180{left:765.000000px;}
.x109_c00180{left:766.350000px;}
.x125_c00180{left:767.400000px;}
.xfe_c00180{left:769.650000px;}
.x151_c00180{left:771.300000px;}
.xc6_c00180{left:773.700000px;}
.xce_c00180{left:775.050000px;}
.xba_c00180{left:778.050000px;}
.xc2_c00180{left:783.450000px;}
.x120_c00180{left:785.700000px;}
.xe8_c00180{left:795.150000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.wsa_c00180{word-spacing:-8.538012pt;}
.ws8_c00180{word-spacing:-6.666667pt;}
.ws6_c00180{word-spacing:-6.093514pt;}
.wsc_c00180{word-spacing:-1.527778pt;}
.ws7_c00180{word-spacing:-1.333333pt;}
.wsd_c00180{word-spacing:0.000000pt;}
.ws9_c00180{word-spacing:9.150327pt;}
.ws2_c00180{word-spacing:10.555556pt;}
.ws0_c00180{word-spacing:13.004115pt;}
.ws1_c00180{word-spacing:13.333333pt;}
.ws4_c00180{word-spacing:14.920635pt;}
.ws3_c00180{word-spacing:19.682540pt;}
.wsb_c00180{word-spacing:22.857143pt;}
.ws5_c00180{word-spacing:56.111111pt;}
._1_c00180{width:46.349206pt;}
._0_c00180{width:52.698413pt;}
.fs4_c00180{font-size:26.666667pt;}
.fs6_c00180{font-size:42.666667pt;}
.fs3_c00180{font-size:48.000000pt;}
.fs2_c00180{font-size:53.333333pt;}
.fs1_c00180{font-size:58.666667pt;}
.fs5_c00180{font-size:64.000000pt;}
.fs0_c00180{font-size:69.333333pt;}
.y0_c00180{bottom:0.000000pt;}
.y38_c00180{bottom:163.200000pt;}
.y6b_c00180{bottom:165.466667pt;}
.y37_c00180{bottom:176.266667pt;}
.y6a_c00180{bottom:180.133333pt;}
.y36_c00180{bottom:189.333333pt;}
.y69_c00180{bottom:196.133333pt;}
.y35_c00180{bottom:202.133333pt;}
.y34_c00180{bottom:214.666667pt;}
.y68_c00180{bottom:219.200000pt;}
.y33_c00180{bottom:227.466667pt;}
.y32_c00180{bottom:240.000000pt;}
.y67_c00180{bottom:250.400000pt;}
.y31_c00180{bottom:252.800000pt;}
.y30_c00180{bottom:265.333333pt;}
.y66_c00180{bottom:266.666667pt;}
.y2f_c00180{bottom:278.133333pt;}
.y65_c00180{bottom:282.000000pt;}
.y2e_c00180{bottom:291.200000pt;}
.y64_c00180{bottom:298.000000pt;}
.y2d_c00180{bottom:303.333333pt;}
.y63_c00180{bottom:313.733333pt;}
.y2c_c00180{bottom:316.133333pt;}
.y62_c00180{bottom:329.733333pt;}
.y61_c00180{bottom:345.466667pt;}
.y2b_c00180{bottom:354.266667pt;}
.y60_c00180{bottom:361.200000pt;}
.y2a_c00180{bottom:373.733333pt;}
.y5f_c00180{bottom:377.200000pt;}
.y29_c00180{bottom:389.466667pt;}
.y28_c00180{bottom:390.000000pt;}
.y5e_c00180{bottom:392.933333pt;}
.y27_c00180{bottom:405.733333pt;}
.y5d_c00180{bottom:412.533333pt;}
.y26_c00180{bottom:421.466667pt;}
.y5c_c00180{bottom:428.533333pt;}
.y25_c00180{bottom:441.333333pt;}
.y5b_c00180{bottom:444.266667pt;}
.y5a_c00180{bottom:460.266667pt;}
.y24_c00180{bottom:464.933333pt;}
.y59_c00180{bottom:476.266667pt;}
.y23_c00180{bottom:480.533333pt;}
.y58_c00180{bottom:492.266667pt;}
.y22_c00180{bottom:496.533333pt;}
.y57_c00180{bottom:508.266667pt;}
.y21_c00180{bottom:512.266667pt;}
.y56_c00180{bottom:524.000000pt;}
.y20_c00180{bottom:532.133333pt;}
.y55_c00180{bottom:539.733333pt;}
.y1f_c00180{bottom:548.133333pt;}
.y54_c00180{bottom:555.733333pt;}
.y1e_c00180{bottom:563.866667pt;}
.y53_c00180{bottom:571.733333pt;}
.y1d_c00180{bottom:583.466667pt;}
.y52_c00180{bottom:587.733333pt;}
.y1c_c00180{bottom:599.200000pt;}
.y51_c00180{bottom:603.466667pt;}
.y1b_c00180{bottom:615.200000pt;}
.y50_c00180{bottom:619.200000pt;}
.y1a_c00180{bottom:630.933333pt;}
.y4f_c00180{bottom:635.200000pt;}
.y19_c00180{bottom:647.200000pt;}
.y4e_c00180{bottom:655.333333pt;}
.y18_c00180{bottom:662.933333pt;}
.y4d_c00180{bottom:671.066667pt;}
.y17_c00180{bottom:678.666667pt;}
.y16_c00180{bottom:694.933333pt;}
.y4c_c00180{bottom:706.266667pt;}
.y4b_c00180{bottom:706.533333pt;}
.y15_c00180{bottom:710.266667pt;}
.y4a_c00180{bottom:723.200000pt;}
.y14_c00180{bottom:726.266667pt;}
.y49_c00180{bottom:738.800000pt;}
.y13_c00180{bottom:742.266667pt;}
.y48_c00180{bottom:754.800000pt;}
.y12_c00180{bottom:758.266667pt;}
.y47_c00180{bottom:770.533333pt;}
.y11_c00180{bottom:774.000000pt;}
.y46_c00180{bottom:786.266667pt;}
.y10_c00180{bottom:789.733333pt;}
.y45_c00180{bottom:802.266667pt;}
.ye_c00180{bottom:810.933333pt;}
.y44_c00180{bottom:818.266667pt;}
.yd_c00180{bottom:824.000000pt;}
.y43_c00180{bottom:834.266667pt;}
.yc_c00180{bottom:836.800000pt;}
.y42_c00180{bottom:849.600000pt;}
.yb_c00180{bottom:850.933333pt;}
.ya_c00180{bottom:861.466667pt;}
.yf_c00180{bottom:861.733333pt;}
.y41_c00180{bottom:867.466667pt;}
.y9_c00180{bottom:876.533333pt;}
.y40_c00180{bottom:880.666667pt;}
.y8_c00180{bottom:892.533333pt;}
.y3f_c00180{bottom:894.800000pt;}
.y3e_c00180{bottom:907.866667pt;}
.y7_c00180{bottom:909.200000pt;}
.y3d_c00180{bottom:920.000000pt;}
.y6_c00180{bottom:925.466667pt;}
.y3c_c00180{bottom:931.200000pt;}
.y5_c00180{bottom:940.800000pt;}
.y3b_c00180{bottom:944.266667pt;}
.y3a_c00180{bottom:959.600000pt;}
.y4_c00180{bottom:960.533333pt;}
.y3_c00180{bottom:976.266667pt;}
.y39_c00180{bottom:976.533333pt;}
.y2_c00180{bottom:992.266667pt;}
.y1_c00180{bottom:1016.000000pt;}
.h6_c00180{height:26.666667pt;}
.h8_c00180{height:42.666667pt;}
.h5_c00180{height:48.000000pt;}
.h4_c00180{height:53.333333pt;}
.h3_c00180{height:58.666667pt;}
.h7_c00180{height:64.000000pt;}
.h2_c00180{height:69.333333pt;}
.h1_c00180{height:1132.000000pt;}
.h0_c00180{height:1132.159993pt;}
.w1_c00180{width:856.000000pt;}
.w0_c00180{width:856.319987pt;}
.x0_c00180{left:0.000000pt;}
.x2e_c00180{left:83.466667pt;}
.x17_c00180{left:84.800000pt;}
.x9f_c00180{left:86.266667pt;}
.xa3_c00180{left:93.466667pt;}
.x35_c00180{left:98.266667pt;}
.x3_c00180{left:99.866667pt;}
.xa_c00180{left:101.066667pt;}
.x84_c00180{left:102.133333pt;}
.x95_c00180{left:108.400000pt;}
.x39_c00180{left:110.400000pt;}
.x4f_c00180{left:111.333333pt;}
.xb0_c00180{left:115.866667pt;}
.x6d_c00180{left:117.333333pt;}
.x11_c00180{left:118.666667pt;}
.xa4_c00180{left:121.333333pt;}
.x18_c00180{left:122.266667pt;}
.x9b_c00180{left:123.200000pt;}
.x79_c00180{left:124.400000pt;}
.x3a_c00180{left:125.733333pt;}
.x98_c00180{left:127.200000pt;}
.xa0_c00180{left:128.133333pt;}
.x43_c00180{left:129.333333pt;}
.x74_c00180{left:130.400000pt;}
.x12_c00180{left:132.800000pt;}
.x54_c00180{left:135.200000pt;}
.x4_c00180{left:136.933333pt;}
.x85_c00180{left:138.933333pt;}
.x83_c00180{left:140.533333pt;}
.x62_c00180{left:141.866667pt;}
.x1e_c00180{left:143.200000pt;}
.x8f_c00180{left:144.400000pt;}
.x44_c00180{left:146.000000pt;}
.x7d_c00180{left:148.266667pt;}
.x50_c00180{left:150.000000pt;}
.x3b_c00180{left:151.600000pt;}
.x2f_c00180{left:152.933333pt;}
.x66_c00180{left:154.533333pt;}
.x8b_c00180{left:155.466667pt;}
.xad_c00180{left:156.533333pt;}
.x63_c00180{left:157.600000pt;}
.x5_c00180{left:158.666667pt;}
.x4a_c00180{left:162.933333pt;}
.x7a_c00180{left:164.400000pt;}
.xa5_c00180{left:167.066667pt;}
.x49_c00180{left:168.666667pt;}
.xaf_c00180{left:170.666667pt;}
.x1f_c00180{left:171.733333pt;}
.x6e_c00180{left:173.066667pt;}
.xb_c00180{left:174.400000pt;}
.x27_c00180{left:175.866667pt;}
.x5d_c00180{left:176.800000pt;}
.xab_c00180{left:178.133333pt;}
.x19_c00180{left:179.200000pt;}
.x92_c00180{left:180.666667pt;}
.x86_c00180{left:182.800000pt;}
.xa1_c00180{left:184.400000pt;}
.x99_c00180{left:186.133333pt;}
.x4b_c00180{left:188.533333pt;}
.x57_c00180{left:189.866667pt;}
.x3c_c00180{left:190.933333pt;}
.xa6_c00180{left:192.400000pt;}
.x75_c00180{left:195.466667pt;}
.x13_c00180{left:196.400000pt;}
.x51_c00180{left:199.866667pt;}
.x30_c00180{left:201.200000pt;}
.x45_c00180{left:203.333333pt;}
.x67_c00180{left:206.000000pt;}
.x1a_c00180{left:207.333333pt;}
.xc_c00180{left:209.866667pt;}
.x14_c00180{left:212.133333pt;}
.x68_c00180{left:213.333333pt;}
.x9e_c00180{left:214.666667pt;}
.x7f_c00180{left:216.000000pt;}
.x20_c00180{left:217.200000pt;}
.x6f_c00180{left:218.533333pt;}
.x6_c00180{left:219.733333pt;}
.x7b_c00180{left:220.666667pt;}
.x55_c00180{left:222.266667pt;}
.x93_c00180{left:223.200000pt;}
.xd_c00180{left:224.266667pt;}
.x76_c00180{left:226.800000pt;}
.x87_c00180{left:228.266667pt;}
.x70_c00180{left:230.400000pt;}
.x3e_c00180{left:232.533333pt;}
.x21_c00180{left:233.466667pt;}
.x89_c00180{left:236.266667pt;}
.x58_c00180{left:237.200000pt;}
.x69_c00180{left:238.266667pt;}
.xe_c00180{left:239.333333pt;}
.x80_c00180{left:240.933333pt;}
.x7_c00180{left:241.866667pt;}
.x1b_c00180{left:243.200000pt;}
.x28_c00180{left:244.666667pt;}
.x56_c00180{left:245.600000pt;}
.x52_c00180{left:246.933333pt;}
.x90_c00180{left:249.200000pt;}
.x22_c00180{left:250.133333pt;}
.x3f_c00180{left:252.000000pt;}
.x8a_c00180{left:253.200000pt;}
.x31_c00180{left:255.333333pt;}
.x96_c00180{left:256.666667pt;}
.x40_c00180{left:258.666667pt;}
.x6a_c00180{left:259.733333pt;}
.x71_c00180{left:261.466667pt;}
.x59_c00180{left:263.066667pt;}
.x5e_c00180{left:264.133333pt;}
.x81_c00180{left:266.800000pt;}
.x77_c00180{left:269.466667pt;}
.xf_c00180{left:270.400000pt;}
.x23_c00180{left:271.600000pt;}
.x91_c00180{left:273.466667pt;}
.x64_c00180{left:275.333333pt;}
.x53_c00180{left:276.400000pt;}
.x15_c00180{left:277.733333pt;}
.x4c_c00180{left:278.666667pt;}
.x24_c00180{left:280.533333pt;}
.x29_c00180{left:282.800000pt;}
.x41_c00180{left:284.533333pt;}
.x8c_c00180{left:286.400000pt;}
.xa9_c00180{left:289.333333pt;}
.x3d_c00180{left:290.400000pt;}
.x1_c00180{left:291.466667pt;}
.x97_c00180{left:292.533333pt;}
.x5a_c00180{left:294.400000pt;}
.x16_c00180{left:296.000000pt;}
.x42_c00180{left:297.600000pt;}
.x9a_c00180{left:299.733333pt;}
.x4d_c00180{left:301.333333pt;}
.x6b_c00180{left:303.200000pt;}
.x8_c00180{left:304.266667pt;}
.x1c_c00180{left:305.866667pt;}
.x2a_c00180{left:307.466667pt;}
.x82_c00180{left:308.400000pt;}
.x9c_c00180{left:310.800000pt;}
.x32_c00180{left:312.666667pt;}
.x25_c00180{left:315.066667pt;}
.x47_c00180{left:319.866667pt;}
.x36_c00180{left:321.333333pt;}
.x2b_c00180{left:322.800000pt;}
.xac_c00180{left:324.266667pt;}
.x5f_c00180{left:326.533333pt;}
.x8d_c00180{left:328.266667pt;}
.x78_c00180{left:329.600000pt;}
.x4e_c00180{left:331.466667pt;}
.xae_c00180{left:332.533333pt;}
.x5b_c00180{left:334.400000pt;}
.x72_c00180{left:336.666667pt;}
.xa2_c00180{left:338.400000pt;}
.x7c_c00180{left:339.333333pt;}
.x33_c00180{left:340.533333pt;}
.x46_c00180{left:341.600000pt;}
.x94_c00180{left:342.933333pt;}
.x9d_c00180{left:345.333333pt;}
.x37_c00180{left:346.666667pt;}
.x10_c00180{left:348.133333pt;}
.x1d_c00180{left:349.333333pt;}
.x6c_c00180{left:350.533333pt;}
.x65_c00180{left:351.733333pt;}
.x8e_c00180{left:353.200000pt;}
.x2c_c00180{left:355.066667pt;}
.xa8_c00180{left:356.533333pt;}
.x26_c00180{left:357.600000pt;}
.x88_c00180{left:358.800000pt;}
.x73_c00180{left:361.733333pt;}
.x60_c00180{left:363.600000pt;}
.xaa_c00180{left:364.533333pt;}
.x9_c00180{left:366.000000pt;}
.x7e_c00180{left:369.333333pt;}
.x34_c00180{left:370.266667pt;}
.x38_c00180{left:372.533333pt;}
.x48_c00180{left:373.600000pt;}
.x61_c00180{left:374.533333pt;}
.x2d_c00180{left:375.600000pt;}
.x5c_c00180{left:380.533333pt;}
.xa7_c00180{left:381.866667pt;}
.xc7_c00180{left:401.866667pt;}
.x113_c00180{left:402.933333pt;}
.x144_c00180{left:403.866667pt;}
.x155_c00180{left:405.066667pt;}
.x119_c00180{left:407.733333pt;}
.xbb_c00180{left:415.466667pt;}
.xb1_c00180{left:417.600000pt;}
.x10a_c00180{left:418.533333pt;}
.x12f_c00180{left:419.600000pt;}
.xcf_c00180{left:427.866667pt;}
.x110_c00180{left:429.066667pt;}
.xb2_c00180{left:430.133333pt;}
.x104_c00180{left:433.866667pt;}
.x128_c00180{left:436.000000pt;}
.xf7_c00180{left:437.200000pt;}
.x121_c00180{left:438.266667pt;}
.x13c_c00180{left:439.600000pt;}
.x11c_c00180{left:442.933333pt;}
.xc3_c00180{left:446.533333pt;}
.xdf_c00180{left:448.933333pt;}
.xe2_c00180{left:450.266667pt;}
.xf8_c00180{left:451.866667pt;}
.xef_c00180{left:452.933333pt;}
.x13a_c00180{left:454.133333pt;}
.xc8_c00180{left:456.000000pt;}
.xbc_c00180{left:457.733333pt;}
.x10b_c00180{left:461.066667pt;}
.x140_c00180{left:462.400000pt;}
.xd1_c00180{left:464.000000pt;}
.x117_c00180{left:464.933333pt;}
.x145_c00180{left:466.000000pt;}
.x132_c00180{left:467.333333pt;}
.x14a_c00180{left:468.400000pt;}
.x105_c00180{left:470.666667pt;}
.xf0_c00180{left:472.400000pt;}
.xb3_c00180{left:473.600000pt;}
.x136_c00180{left:475.600000pt;}
.xd2_c00180{left:477.066667pt;}
.xbd_c00180{left:480.133333pt;}
.xd4_c00180{left:482.000000pt;}
.xe0_c00180{left:483.466667pt;}
.x14e_c00180{left:484.800000pt;}
.x126_c00180{left:487.200000pt;}
.xff_c00180{left:490.133333pt;}
.xf9_c00180{left:491.866667pt;}
.x10c_c00180{left:493.333333pt;}
.x150_c00180{left:494.800000pt;}
.xb4_c00180{left:496.000000pt;}
.xd5_c00180{left:497.333333pt;}
.x159_c00180{left:498.533333pt;}
.x11a_c00180{left:500.266667pt;}
.xe3_c00180{left:502.133333pt;}
.x13d_c00180{left:503.466667pt;}
.x106_c00180{left:505.600000pt;}
.x158_c00180{left:506.533333pt;}
.x114_c00180{left:508.133333pt;}
.xe9_c00180{left:509.066667pt;}
.xc9_c00180{left:512.266667pt;}
.xb5_c00180{left:514.266667pt;}
.xbe_c00180{left:516.933333pt;}
.x13e_c00180{left:519.200000pt;}
.x142_c00180{left:520.266667pt;}
.xe1_c00180{left:521.600000pt;}
.xdb_c00180{left:523.200000pt;}
.x122_c00180{left:524.666667pt;}
.xd6_c00180{left:525.866667pt;}
.xe4_c00180{left:527.066667pt;}
.xf1_c00180{left:528.133333pt;}
.x11d_c00180{left:530.933333pt;}
.x137_c00180{left:534.133333pt;}
.x147_c00180{left:536.133333pt;}
.xb6_c00180{left:537.600000pt;}
.xfa_c00180{left:538.533333pt;}
.x111_c00180{left:539.466667pt;}
.x12d_c00180{left:540.533333pt;}
.xd7_c00180{left:542.533333pt;}
.x123_c00180{left:543.866667pt;}
.x146_c00180{left:545.066667pt;}
.xca_c00180{left:546.533333pt;}
.x118_c00180{left:547.600000pt;}
.x154_c00180{left:549.333333pt;}
.x10d_c00180{left:550.266667pt;}
.x153_c00180{left:552.533333pt;}
.xea_c00180{left:554.133333pt;}
.x102_c00180{left:555.866667pt;}
.x14b_c00180{left:556.800000pt;}
.x115_c00180{left:557.733333pt;}
.x138_c00180{left:559.066667pt;}
.xfb_c00180{left:560.266667pt;}
.xcb_c00180{left:563.866667pt;}
.x133_c00180{left:564.933333pt;}
.xdc_c00180{left:567.066667pt;}
.x11e_c00180{left:569.066667pt;}
.x129_c00180{left:570.266667pt;}
.x14c_c00180{left:571.200000pt;}
.x156_c00180{left:573.200000pt;}
.x141_c00180{left:574.266667pt;}
.xe5_c00180{left:575.333333pt;}
.xf4_c00180{left:578.266667pt;}
.x148_c00180{left:579.333333pt;}
.xeb_c00180{left:581.066667pt;}
.xd8_c00180{left:582.266667pt;}
.xb7_c00180{left:584.000000pt;}
.x11f_c00180{left:586.000000pt;}
.x134_c00180{left:588.000000pt;}
.xfc_c00180{left:589.066667pt;}
.xe6_c00180{left:590.000000pt;}
.x11b_c00180{left:591.866667pt;}
.x130_c00180{left:593.333333pt;}
.x103_c00180{left:594.533333pt;}
.xbf_c00180{left:595.600000pt;}
.x157_c00180{left:596.800000pt;}
.xfd_c00180{left:597.733333pt;}
.x12a_c00180{left:599.733333pt;}
.x124_c00180{left:600.800000pt;}
.x14f_c00180{left:602.266667pt;}
.x10e_c00180{left:603.733333pt;}
.x100_c00180{left:605.066667pt;}
.x112_c00180{left:606.666667pt;}
.xec_c00180{left:610.533333pt;}
.xd9_c00180{left:614.266667pt;}
.xdd_c00180{left:615.333333pt;}
.x13b_c00180{left:616.533333pt;}
.x12b_c00180{left:618.266667pt;}
.xda_c00180{left:620.666667pt;}
.x127_c00180{left:622.266667pt;}
.xc0_c00180{left:625.733333pt;}
.xb8_c00180{left:627.866667pt;}
.x12e_c00180{left:629.200000pt;}
.xc4_c00180{left:630.400000pt;}
.xf2_c00180{left:633.066667pt;}
.xcc_c00180{left:636.800000pt;}
.xd0_c00180{left:638.400000pt;}
.x107_c00180{left:639.333333pt;}
.xed_c00180{left:641.200000pt;}
.x149_c00180{left:642.800000pt;}
.xf5_c00180{left:644.533333pt;}
.x152_c00180{left:645.600000pt;}
.x10f_c00180{left:647.866667pt;}
.x143_c00180{left:649.466667pt;}
.xb9_c00180{left:650.933333pt;}
.x14d_c00180{left:653.733333pt;}
.xc1_c00180{left:655.466667pt;}
.xc5_c00180{left:657.600000pt;}
.x131_c00180{left:658.666667pt;}
.x108_c00180{left:661.066667pt;}
.x12c_c00180{left:662.400000pt;}
.xcd_c00180{left:663.333333pt;}
.xd3_c00180{left:664.400000pt;}
.xf3_c00180{left:666.933333pt;}
.x135_c00180{left:668.266667pt;}
.x13f_c00180{left:669.333333pt;}
.xf6_c00180{left:670.800000pt;}
.xe7_c00180{left:671.866667pt;}
.xee_c00180{left:673.466667pt;}
.x101_c00180{left:674.533333pt;}
.x116_c00180{left:675.466667pt;}
.x2_c00180{left:677.066667pt;}
.x139_c00180{left:679.066667pt;}
.xde_c00180{left:680.000000pt;}
.x109_c00180{left:681.200000pt;}
.x125_c00180{left:682.133333pt;}
.xfe_c00180{left:684.133333pt;}
.x151_c00180{left:685.600000pt;}
.xc6_c00180{left:687.733333pt;}
.xce_c00180{left:688.933333pt;}
.xba_c00180{left:691.600000pt;}
.xc2_c00180{left:696.400000pt;}
.x120_c00180{left:698.400000pt;}
.xe8_c00180{left:706.800000pt;}
}





/* 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_c00181 {
    display:none;
  }
  .loading-indicator_c00181.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00181 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_c00181 { 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_c00181" -> "#page-container .classname_c00181")
 */
.pf_c00181 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00181 { /* 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_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00181 { /* 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_c00181 { /* 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_c00181 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00181 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00181 {overflow:visible;}
  }
}
.c_c00181 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00181 { /* 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_c00181:after { /* webkit #35443 */
  content: '';
}
.t_c00181:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00181 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 */
}
.__c00181 { /* 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_c00181 { /* info for Javascript */
  display:none;
}
.l_c00181 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00181 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00181 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00181: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_c00181 {
    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_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00181.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_c00181 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00181;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.000000;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;}
.me2_c00181{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00181{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m67_c00181{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m38_c00181{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00181{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m45_c00181{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mf_c00181{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m101_c00181{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m3_c00181{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00181{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.md6_c00181{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m113_c00181{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m30_c00181{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00181{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m32_c00181{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00181{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m36_c00181{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00181{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00181{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m12_c00181{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4_c00181{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m61_c00181{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00181{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00181{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m49_c00181{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00181{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m19_c00181{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m79_c00181{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00181{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.md4_c00181{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m86_c00181{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m111_c00181{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m71_c00181{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.meb_c00181{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m88_c00181{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mab_c00181{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md_c00181{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m106_c00181{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00181{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00181{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00181{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m100_c00181{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00181{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00181{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00181{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00181{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m108_c00181{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m47_c00181{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m29_c00181{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mba_c00181{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00181{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m77_c00181{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m99_c00181{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00181{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m109_c00181{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m18_c00181{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00181{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00181{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mea_c00181{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m65_c00181{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m11_c00181{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00181{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00181{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00181{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me9_c00181{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00181{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m95_c00181{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00181{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m51_c00181{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m15_c00181{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me8_c00181{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00181{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00181{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mac_c00181{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00181{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00181{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m66_c00181{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m93_c00181{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m10_c00181{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m98_c00181{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00181{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00181{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mad_c00181{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00181{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.me_c00181{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mce_c00181{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m14_c00181{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00181{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00181{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00181{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m74_c00181{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m40_c00181{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m92_c00181{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00181{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m31_c00181{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00181{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m80_c00181{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00181{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.md8_c00181{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc_c00181{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md3_c00181{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m112_c00181{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m73_c00181{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00181{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m70_c00181{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00181{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00181{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00181{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00181{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maf_c00181{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m82_c00181{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00181{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m103_c00181{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m72_c00181{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m20_c00181{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m59_c00181{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m68_c00181{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m60_c00181{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00181{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m104_c00181{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m87_c00181{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00181{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me7_c00181{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m94_c00181{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m116_c00181{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00181{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00181{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00181{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00181{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m78_c00181{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00181{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m41_c00181{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7_c00181{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00181{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb_c00181{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00181{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5_c00181{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00181{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m83_c00181{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8_c00181{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00181{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m64_c00181{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m52_c00181{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m26_c00181{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00181{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00181{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mec_c00181{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.med_c00181{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m90_c00181{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mee_c00181{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.me3_c00181{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma_c00181{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00181{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00181{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m42_c00181{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00181{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00181{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m69_c00181{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m22_c00181{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00181{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00181{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00181{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00181{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m50_c00181{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00181{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m62_c00181{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00181{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00181{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m96_c00181{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m107_c00181{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00181{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m17_c00181{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m21_c00181{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00181{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9_c00181{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m35_c00181{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m48_c00181{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m54_c00181{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m102_c00181{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mef_c00181{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00181{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m34_c00181{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m81_c00181{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me5_c00181{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00181{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00181{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m110_c00181{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00181{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00181{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00181{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m27_c00181{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m16_c00181{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m46_c00181{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m76_c00181{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m33_c00181{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00181{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.maa_c00181{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00181{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m25_c00181{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00181{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00181{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m58_c00181{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m75_c00181{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m85_c00181{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m114_c00181{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00181{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00181{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m84_c00181{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00181{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00181{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m37_c00181{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00181{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00181{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m28_c00181{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m44_c00181{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m63_c00181{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md5_c00181{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m105_c00181{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m53_c00181{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00181{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m91_c00181{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00181{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.md9_c00181{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00181{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00181{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m13_c00181{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00181{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m97_c00181{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m24_c00181{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00181{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m89_c00181{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m57_c00181{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00181{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00181{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00181{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mff_c00181{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00181{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00181{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.md2_c00181{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00181{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m23_c00181{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00181{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00181{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00181{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.md0_c00181{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00181{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me4_c00181{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.me6_c00181{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.me1_c00181{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.md1_c00181{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mae_c00181{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00181{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00181{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mda_c00181{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m56_c00181{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00181{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.md7_c00181{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00181{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m0_c00181{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.me0_c00181{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m55_c00181{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m115_c00181{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00181{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00181{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00181{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00181{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00181{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00181{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.mde_c00181{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.mca_c00181{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00181{transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);}
.m43_c00181{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00181{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00181{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00181{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00181{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m6_c00181{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls0_c00181{letter-spacing:0.000000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{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__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00181{word-spacing:-8.798883px;}
.ws5_c00181{word-spacing:-3.194444px;}
.ws3_c00181{word-spacing:-1.388889px;}
.ws6_c00181{word-spacing:0.000000px;}
.ws2_c00181{word-spacing:1.944444px;}
.ws4_c00181{word-spacing:3.343788px;}
.ws0_c00181{word-spacing:6.833333px;}
.fc0_c00181{color:transparent;}
.fs2_c00181{font-size:24.000000px;}
.fs5_c00181{font-size:30.000000px;}
.fs7_c00181{font-size:48.000000px;}
.fs4_c00181{font-size:54.000000px;}
.fs3_c00181{font-size:60.000000px;}
.fs0_c00181{font-size:66.000000px;}
.fs6_c00181{font-size:72.000000px;}
.fs1_c00181{font-size:84.000000px;}
.y0_c00181{bottom:0.000000px;}
.y3_c00181{bottom:7.200000px;}
.y6a_c00181{bottom:192.600000px;}
.y38_c00181{bottom:195.450000px;}
.y69_c00181{bottom:207.300000px;}
.y37_c00181{bottom:213.150000px;}
.y68_c00181{bottom:221.400000px;}
.y67_c00181{bottom:235.500000px;}
.y36_c00181{bottom:239.400000px;}
.y66_c00181{bottom:249.900000px;}
.y35_c00181{bottom:257.400000px;}
.y65_c00181{bottom:264.300000px;}
.y34_c00181{bottom:274.650000px;}
.y64_c00181{bottom:277.950000px;}
.y33_c00181{bottom:291.900000px;}
.y63_c00181{bottom:292.350000px;}
.y32_c00181{bottom:309.600000px;}
.y31_c00181{bottom:327.300000px;}
.y62_c00181{bottom:340.200000px;}
.y30_c00181{bottom:345.000000px;}
.y2f_c00181{bottom:362.250000px;}
.y61_c00181{bottom:362.400000px;}
.y2e_c00181{bottom:379.950000px;}
.y60_c00181{bottom:380.100000px;}
.y2d_c00181{bottom:397.950000px;}
.y5f_c00181{bottom:398.100000px;}
.y2c_c00181{bottom:415.950000px;}
.y5e_c00181{bottom:416.100000px;}
.y2b_c00181{bottom:433.650000px;}
.y5d_c00181{bottom:433.800000px;}
.y2a_c00181{bottom:451.350000px;}
.y5c_c00181{bottom:451.800000px;}
.y29_c00181{bottom:469.350000px;}
.y5b_c00181{bottom:469.500000px;}
.y28_c00181{bottom:487.350000px;}
.y5a_c00181{bottom:491.700000px;}
.y27_c00181{bottom:505.050000px;}
.y59_c00181{bottom:509.700000px;}
.y26_c00181{bottom:523.050000px;}
.y58_c00181{bottom:527.400000px;}
.y25_c00181{bottom:541.050000px;}
.y57_c00181{bottom:545.100000px;}
.y56_c00181{bottom:563.100000px;}
.y24_c00181{bottom:567.000000px;}
.y55_c00181{bottom:580.500000px;}
.y23_c00181{bottom:585.000000px;}
.y22_c00181{bottom:602.700000px;}
.y54_c00181{bottom:613.650000px;}
.y53_c00181{bottom:616.500000px;}
.y21_c00181{bottom:620.700000px;}
.y52_c00181{bottom:634.200000px;}
.y20_c00181{bottom:638.700000px;}
.y51_c00181{bottom:651.900000px;}
.y1f_c00181{bottom:656.400000px;}
.y50_c00181{bottom:669.900000px;}
.y1e_c00181{bottom:674.400000px;}
.y4f_c00181{bottom:687.900000px;}
.y1d_c00181{bottom:692.100000px;}
.y4e_c00181{bottom:705.600000px;}
.y1c_c00181{bottom:710.100000px;}
.y4d_c00181{bottom:723.600000px;}
.y1b_c00181{bottom:727.800000px;}
.y4c_c00181{bottom:741.300000px;}
.y1a_c00181{bottom:745.500000px;}
.y4b_c00181{bottom:759.300000px;}
.y19_c00181{bottom:763.500000px;}
.y4a_c00181{bottom:780.150000px;}
.y18_c00181{bottom:781.200000px;}
.y17_c00181{bottom:799.200000px;}
.y49_c00181{bottom:800.250000px;}
.y16_c00181{bottom:816.900000px;}
.y48_c00181{bottom:818.250000px;}
.y15_c00181{bottom:834.900000px;}
.y47_c00181{bottom:836.250000px;}
.y46_c00181{bottom:858.150000px;}
.y13_c00181{bottom:860.850000px;}
.y45_c00181{bottom:875.850000px;}
.y12_c00181{bottom:879.150000px;}
.y44_c00181{bottom:893.850000px;}
.y11_c00181{bottom:897.450000px;}
.y43_c00181{bottom:911.850000px;}
.y10_c00181{bottom:916.950000px;}
.y14_c00181{bottom:918.000000px;}
.y42_c00181{bottom:929.850000px;}
.yf_c00181{bottom:930.600000px;}
.ye_c00181{bottom:946.800000px;}
.y41_c00181{bottom:947.100000px;}
.yd_c00181{bottom:960.900000px;}
.y40_c00181{bottom:969.150000px;}
.yc_c00181{bottom:973.800000px;}
.y3f_c00181{bottom:987.150000px;}
.yb_c00181{bottom:988.500000px;}
.ya_c00181{bottom:1004.400000px;}
.y3e_c00181{bottom:1013.400000px;}
.y9_c00181{bottom:1022.400000px;}
.y3d_c00181{bottom:1031.700000px;}
.y8_c00181{bottom:1041.150000px;}
.y3c_c00181{bottom:1050.450000px;}
.y7_c00181{bottom:1058.700000px;}
.y3b_c00181{bottom:1067.700000px;}
.y6_c00181{bottom:1084.800000px;}
.y3a_c00181{bottom:1085.400000px;}
.y39_c00181{bottom:1103.400000px;}
.y5_c00181{bottom:1104.900000px;}
.y4_c00181{bottom:1121.100000px;}
.y1_c00181{bottom:1146.900000px;}
.y2_c00181{bottom:1147.200000px;}
.h4_c00181{height:24.000000px;}
.h7_c00181{height:30.000000px;}
.h9_c00181{height:48.000000px;}
.h6_c00181{height:54.000000px;}
.h5_c00181{height:60.000000px;}
.h2_c00181{height:66.000000px;}
.h8_c00181{height:72.000000px;}
.h3_c00181{height:84.000000px;}
.h0_c00181{height:1267.919952px;}
.h1_c00181{height:1268.250000px;}
.w1_c00181{width:963.000000px;}
.w0_c00181{width:963.359985px;}
.x0_c00181{left:0.000000px;}
.x1b_c00181{left:173.550000px;}
.x84_c00181{left:175.350000px;}
.x1_c00181{left:177.150000px;}
.x3_c00181{left:179.700000px;}
.x32_c00181{left:189.750000px;}
.x23_c00181{left:190.800000px;}
.x47_c00181{left:192.600000px;}
.x8_c00181{left:193.650000px;}
.x99_c00181{left:194.700000px;}
.x1c_c00181{left:200.550000px;}
.x36_c00181{left:204.450000px;}
.x41_c00181{left:210.900000px;}
.x9a_c00181{left:212.100000px;}
.xf_c00181{left:213.450000px;}
.x1d_c00181{left:217.500000px;}
.x90_c00181{left:218.550000px;}
.x9e_c00181{left:220.650000px;}
.x76_c00181{left:221.700000px;}
.x10_c00181{left:223.200000px;}
.x18_c00181{left:224.400000px;}
.x39_c00181{left:227.100000px;}
.x64_c00181{left:228.300000px;}
.x82_c00181{left:229.650000px;}
.x55_c00181{left:232.950000px;}
.x85_c00181{left:234.750000px;}
.x9b_c00181{left:235.800000px;}
.x24_c00181{left:237.600000px;}
.x72_c00181{left:239.100000px;}
.x48_c00181{left:240.450000px;}
.x2a_c00181{left:241.500000px;}
.x60_c00181{left:244.650000px;}
.x3c_c00181{left:245.850000px;}
.x11_c00181{left:247.650000px;}
.x5d_c00181{left:250.350000px;}
.x42_c00181{left:254.850000px;}
.x25_c00181{left:256.650000px;}
.x6b_c00181{left:259.650000px;}
.x19_c00181{left:261.150000px;}
.x4f_c00181{left:262.500000px;}
.x7d_c00181{left:264.750000px;}
.x49_c00181{left:266.700000px;}
.x65_c00181{left:268.200000px;}
.x83_c00181{left:270.000000px;}
.x91_c00181{left:272.250000px;}
.x61_c00181{left:274.200000px;}
.x4_c00181{left:275.400000px;}
.x3f_c00181{left:276.600000px;}
.x12_c00181{left:278.250000px;}
.x9_c00181{left:280.350000px;}
.x43_c00181{left:282.600000px;}
.x73_c00181{left:286.200000px;}
.x5_c00181{left:289.800000px;}
.x56_c00181{left:291.000000px;}
.x1a_c00181{left:292.500000px;}
.xa1_c00181{left:293.550000px;}
.x94_c00181{left:294.600000px;}
.x8c_c00181{left:295.650000px;}
.x9c_c00181{left:297.000000px;}
.x4a_c00181{left:298.800000px;}
.x3d_c00181{left:300.150000px;}
.x9f_c00181{left:302.850000px;}
.x13_c00181{left:304.950000px;}
.x9d_c00181{left:306.750000px;}
.x2b_c00181{left:308.100000px;}
.x50_c00181{left:310.050000px;}
.x44_c00181{left:311.700000px;}
.x1e_c00181{left:312.900000px;}
.x69_c00181{left:316.050000px;}
.x5e_c00181{left:318.450000px;}
.x4b_c00181{left:320.100000px;}
.x77_c00181{left:322.200000px;}
.xa_c00181{left:323.250000px;}
.x3e_c00181{left:325.050000px;}
.x40_c00181{left:327.750000px;}
.x51_c00181{left:330.600000px;}
.x14_c00181{left:332.250000px;}
.x57_c00181{left:333.900000px;}
.x97_c00181{left:335.400000px;}
.x8e_c00181{left:336.900000px;}
.x66_c00181{left:340.200000px;}
.x4c_c00181{left:343.500000px;}
.x86_c00181{left:345.000000px;}
.x15_c00181{left:346.650000px;}
.x2c_c00181{left:348.000000px;}
.x58_c00181{left:350.100000px;}
.x78_c00181{left:354.300000px;}
.x6a_c00181{left:355.650000px;}
.x89_c00181{left:356.700000px;}
.x7e_c00181{left:357.900000px;}
.x45_c00181{left:359.250000px;}
.x8f_c00181{left:360.300000px;}
.x2d_c00181{left:361.650000px;}
.x74_c00181{left:362.850000px;}
.x26_c00181{left:363.900000px;}
.x87_c00181{left:365.850000px;}
.xb_c00181{left:368.250000px;}
.x1f_c00181{left:369.450000px;}
.x6_c00181{left:370.800000px;}
.x27_c00181{left:376.200000px;}
.x7_c00181{left:377.250000px;}
.x7f_c00181{left:378.750000px;}
.x59_c00181{left:379.950000px;}
.x4d_c00181{left:381.600000px;}
.x5f_c00181{left:383.250000px;}
.x8a_c00181{left:384.450000px;}
.x98_c00181{left:385.800000px;}
.x6c_c00181{left:388.200000px;}
.x52_c00181{left:389.550000px;}
.x8d_c00181{left:391.050000px;}
.x67_c00181{left:393.900000px;}
.x92_c00181{left:398.250000px;}
.x6d_c00181{left:400.500000px;}
.x95_c00181{left:401.550000px;}
.x88_c00181{left:403.350000px;}
.xc_c00181{left:404.550000px;}
.x79_c00181{left:405.750000px;}
.x20_c00181{left:407.550000px;}
.x8b_c00181{left:408.600000px;}
.x75_c00181{left:411.450000px;}
.x2e_c00181{left:414.150000px;}
.x5a_c00181{left:415.650000px;}
.x2_c00181{left:416.850000px;}
.x80_c00181{left:418.650000px;}
.x16_c00181{left:421.050000px;}
.x70_c00181{left:423.600000px;}
.x46_c00181{left:425.100000px;}
.xa0_c00181{left:427.500000px;}
.x62_c00181{left:430.500000px;}
.x2f_c00181{left:432.150000px;}
.x6e_c00181{left:434.400000px;}
.x7b_c00181{left:436.650000px;}
.xa2_c00181{left:437.700000px;}
.x3a_c00181{left:440.250000px;}
.x33_c00181{left:442.350000px;}
.x53_c00181{left:445.650000px;}
.x71_c00181{left:449.550000px;}
.x7a_c00181{left:451.050000px;}
.xd_c00181{left:452.100000px;}
.x93_c00181{left:453.750000px;}
.x21_c00181{left:455.100000px;}
.x54_c00181{left:459.300000px;}
.x30_c00181{left:462.750000px;}
.x81_c00181{left:463.950000px;}
.x28_c00181{left:465.000000px;}
.x63_c00181{left:467.250000px;}
.x34_c00181{left:469.050000px;}
.x37_c00181{left:470.100000px;}
.x6f_c00181{left:472.500000px;}
.x5b_c00181{left:475.800000px;}
.x7c_c00181{left:478.050000px;}
.x22_c00181{left:480.000000px;}
.x5c_c00181{left:481.050000px;}
.x17_c00181{left:483.300000px;}
.x96_c00181{left:484.350000px;}
.xe_c00181{left:486.000000px;}
.x68_c00181{left:493.200000px;}
.x31_c00181{left:496.200000px;}
.x38_c00181{left:497.400000px;}
.x3b_c00181{left:498.600000px;}
.x35_c00181{left:499.950000px;}
.x4e_c00181{left:501.150000px;}
.x29_c00181{left:502.500000px;}
.x13c_c00181{left:529.650000px;}
.xfe_c00181{left:530.700000px;}
.xf5_c00181{left:531.750000px;}
.xcd_c00181{left:532.800000px;}
.x12e_c00181{left:539.700000px;}
.x139_c00181{left:545.400000px;}
.x10c_c00181{left:547.500000px;}
.xe2_c00181{left:549.000000px;}
.xb9_c00181{left:550.200000px;}
.xa3_c00181{left:551.550000px;}
.x120_c00181{left:557.700000px;}
.x141_c00181{left:560.100000px;}
.x140_c00181{left:564.600000px;}
.xd5_c00181{left:569.100000px;}
.x134_c00181{left:570.150000px;}
.x13a_c00181{left:571.350000px;}
.xf6_c00181{left:572.850000px;}
.xce_c00181{left:574.200000px;}
.x111_c00181{left:576.450000px;}
.xab_c00181{left:577.650000px;}
.xc5_c00181{left:579.000000px;}
.xef_c00181{left:583.050000px;}
.x106_c00181{left:584.550000px;}
.xe8_c00181{left:586.200000px;}
.x124_c00181{left:588.000000px;}
.x12f_c00181{left:589.050000px;}
.xba_c00181{left:590.100000px;}
.xff_c00181{left:591.150000px;}
.x132_c00181{left:592.500000px;}
.xc0_c00181{left:595.050000px;}
.xfa_c00181{left:597.900000px;}
.xf3_c00181{left:600.000000px;}
.xe9_c00181{left:602.100000px;}
.xac_c00181{left:603.600000px;}
.x115_c00181{left:605.550000px;}
.xbb_c00181{left:607.350000px;}
.xcf_c00181{left:609.450000px;}
.x142_c00181{left:611.550000px;}
.x128_c00181{left:614.250000px;}
.x11a_c00181{left:616.200000px;}
.xa4_c00181{left:618.450000px;}
.xf0_c00181{left:620.550000px;}
.xea_c00181{left:623.400000px;}
.xd9_c00181{left:625.500000px;}
.xad_c00181{left:627.750000px;}
.x129_c00181{left:628.950000px;}
.xfb_c00181{left:630.000000px;}
.xd6_c00181{left:631.800000px;}
.x108_c00181{left:633.750000px;}
.xf7_c00181{left:635.850000px;}
.xc6_c00181{left:636.900000px;}
.x13b_c00181{left:637.950000px;}
.xc1_c00181{left:640.800000px;}
.x100_c00181{left:647.700000px;}
.x112_c00181{left:648.750000px;}
.x137_c00181{left:649.800000px;}
.xa5_c00181{left:651.600000px;}
.x121_c00181{left:652.650000px;}
.xd0_c00181{left:655.500000px;}
.x10d_c00181{left:657.000000px;}
.x102_c00181{left:658.800000px;}
.xbc_c00181{left:660.300000px;}
.xc7_c00181{left:661.800000px;}
.x11b_c00181{left:663.750000px;}
.x12a_c00181{left:664.950000px;}
.xda_c00181{left:666.150000px;}
.xae_c00181{left:667.650000px;}
.xa6_c00181{left:669.900000px;}
.xfc_c00181{left:671.400000px;}
.xb4_c00181{left:676.650000px;}
.xbd_c00181{left:679.350000px;}
.x116_c00181{left:681.150000px;}
.x101_c00181{left:682.950000px;}
.xc8_c00181{left:685.500000px;}
.xc2_c00181{left:687.900000px;}
.x144_c00181{left:690.600000px;}
.xd1_c00181{left:692.250000px;}
.xe3_c00181{left:694.500000px;}
.x143_c00181{left:697.200000px;}
.xd7_c00181{left:698.700000px;}
.xa7_c00181{left:701.550000px;}
.x127_c00181{left:703.200000px;}
.x13d_c00181{left:704.250000px;}
.x13f_c00181{left:706.350000px;}
.x11c_c00181{left:708.000000px;}
.xd8_c00181{left:712.800000px;}
.x10b_c00181{left:715.200000px;}
.xeb_c00181{left:716.250000px;}
.x12c_c00181{left:719.100000px;}
.x122_c00181{left:720.450000px;}
.x107_c00181{left:722.700000px;}
.xc9_c00181{left:724.800000px;}
.xfd_c00181{left:726.450000px;}
.xf4_c00181{left:727.500000px;}
.x117_c00181{left:728.550000px;}
.x12d_c00181{left:729.750000px;}
.x109_c00181{left:731.250000px;}
.xdb_c00181{left:732.750000px;}
.x125_c00181{left:735.600000px;}
.xaf_c00181{left:738.150000px;}
.xb5_c00181{left:739.650000px;}
.x11d_c00181{left:741.450000px;}
.xe4_c00181{left:744.600000px;}
.xdc_c00181{left:746.400000px;}
.x135_c00181{left:748.350000px;}
.xc3_c00181{left:749.400000px;}
.xec_c00181{left:751.200000px;}
.x113_c00181{left:752.400000px;}
.x138_c00181{left:754.200000px;}
.x130_c00181{left:756.150000px;}
.x103_c00181{left:757.350000px;}
.x110_c00181{left:759.750000px;}
.xb0_c00181{left:760.800000px;}
.xed_c00181{left:762.000000px;}
.x10a_c00181{left:764.700000px;}
.xd2_c00181{left:766.800000px;}
.xbe_c00181{left:768.300000px;}
.xb6_c00181{left:769.500000px;}
.x131_c00181{left:770.550000px;}
.xdd_c00181{left:774.150000px;}
.xb1_c00181{left:776.700000px;}
.xa8_c00181{left:778.200000px;}
.x10e_c00181{left:780.600000px;}
.xe5_c00181{left:782.700000px;}
.x118_c00181{left:784.350000px;}
.xd4_c00181{left:785.850000px;}
.x126_c00181{left:788.550000px;}
.xca_c00181{left:789.900000px;}
.x12b_c00181{left:791.700000px;}
.x11e_c00181{left:793.800000px;}
.xb7_c00181{left:795.000000px;}
.xa9_c00181{left:796.950000px;}
.x104_c00181{left:798.000000px;}
.xf1_c00181{left:799.800000px;}
.xee_c00181{left:804.900000px;}
.x13e_c00181{left:808.650000px;}
.xcb_c00181{left:809.700000px;}
.xc4_c00181{left:811.650000px;}
.xf8_c00181{left:813.900000px;}
.xf2_c00181{left:816.000000px;}
.xaa_c00181{left:817.050000px;}
.x105_c00181{left:819.300000px;}
.xe6_c00181{left:820.500000px;}
.xb8_c00181{left:826.350000px;}
.xf9_c00181{left:828.000000px;}
.xde_c00181{left:831.000000px;}
.xcc_c00181{left:832.350000px;}
.x123_c00181{left:833.850000px;}
.xb2_c00181{left:835.350000px;}
.xd3_c00181{left:837.000000px;}
.xdf_c00181{left:838.500000px;}
.xbf_c00181{left:839.550000px;}
.x114_c00181{left:840.600000px;}
.x136_c00181{left:842.700000px;}
.x10f_c00181{left:845.100000px;}
.xe0_c00181{left:849.300000px;}
.x119_c00181{left:850.950000px;}
.x133_c00181{left:852.000000px;}
.x11f_c00181{left:853.200000px;}
.xb3_c00181{left:854.400000px;}
.xe1_c00181{left:856.500000px;}
.xe7_c00181{left:858.000000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws1_c00181{word-spacing:-7.821229pt;}
.ws5_c00181{word-spacing:-2.839506pt;}
.ws3_c00181{word-spacing:-1.234568pt;}
.ws6_c00181{word-spacing:0.000000pt;}
.ws2_c00181{word-spacing:1.728395pt;}
.ws4_c00181{word-spacing:2.972256pt;}
.ws0_c00181{word-spacing:6.074074pt;}
.fs2_c00181{font-size:21.333333pt;}
.fs5_c00181{font-size:26.666667pt;}
.fs7_c00181{font-size:42.666667pt;}
.fs4_c00181{font-size:48.000000pt;}
.fs3_c00181{font-size:53.333333pt;}
.fs0_c00181{font-size:58.666667pt;}
.fs6_c00181{font-size:64.000000pt;}
.fs1_c00181{font-size:74.666667pt;}
.y0_c00181{bottom:0.000000pt;}
.y3_c00181{bottom:6.400000pt;}
.y6a_c00181{bottom:171.200000pt;}
.y38_c00181{bottom:173.733333pt;}
.y69_c00181{bottom:184.266667pt;}
.y37_c00181{bottom:189.466667pt;}
.y68_c00181{bottom:196.800000pt;}
.y67_c00181{bottom:209.333333pt;}
.y36_c00181{bottom:212.800000pt;}
.y66_c00181{bottom:222.133333pt;}
.y35_c00181{bottom:228.800000pt;}
.y65_c00181{bottom:234.933333pt;}
.y34_c00181{bottom:244.133333pt;}
.y64_c00181{bottom:247.066667pt;}
.y33_c00181{bottom:259.466667pt;}
.y63_c00181{bottom:259.866667pt;}
.y32_c00181{bottom:275.200000pt;}
.y31_c00181{bottom:290.933333pt;}
.y62_c00181{bottom:302.400000pt;}
.y30_c00181{bottom:306.666667pt;}
.y2f_c00181{bottom:322.000000pt;}
.y61_c00181{bottom:322.133333pt;}
.y2e_c00181{bottom:337.733333pt;}
.y60_c00181{bottom:337.866667pt;}
.y2d_c00181{bottom:353.733333pt;}
.y5f_c00181{bottom:353.866667pt;}
.y2c_c00181{bottom:369.733333pt;}
.y5e_c00181{bottom:369.866667pt;}
.y2b_c00181{bottom:385.466667pt;}
.y5d_c00181{bottom:385.600000pt;}
.y2a_c00181{bottom:401.200000pt;}
.y5c_c00181{bottom:401.600000pt;}
.y29_c00181{bottom:417.200000pt;}
.y5b_c00181{bottom:417.333333pt;}
.y28_c00181{bottom:433.200000pt;}
.y5a_c00181{bottom:437.066667pt;}
.y27_c00181{bottom:448.933333pt;}
.y59_c00181{bottom:453.066667pt;}
.y26_c00181{bottom:464.933333pt;}
.y58_c00181{bottom:468.800000pt;}
.y25_c00181{bottom:480.933333pt;}
.y57_c00181{bottom:484.533333pt;}
.y56_c00181{bottom:500.533333pt;}
.y24_c00181{bottom:504.000000pt;}
.y55_c00181{bottom:516.000000pt;}
.y23_c00181{bottom:520.000000pt;}
.y22_c00181{bottom:535.733333pt;}
.y54_c00181{bottom:545.466667pt;}
.y53_c00181{bottom:548.000000pt;}
.y21_c00181{bottom:551.733333pt;}
.y52_c00181{bottom:563.733333pt;}
.y20_c00181{bottom:567.733333pt;}
.y51_c00181{bottom:579.466667pt;}
.y1f_c00181{bottom:583.466667pt;}
.y50_c00181{bottom:595.466667pt;}
.y1e_c00181{bottom:599.466667pt;}
.y4f_c00181{bottom:611.466667pt;}
.y1d_c00181{bottom:615.200000pt;}
.y4e_c00181{bottom:627.200000pt;}
.y1c_c00181{bottom:631.200000pt;}
.y4d_c00181{bottom:643.200000pt;}
.y1b_c00181{bottom:646.933333pt;}
.y4c_c00181{bottom:658.933333pt;}
.y1a_c00181{bottom:662.666667pt;}
.y4b_c00181{bottom:674.933333pt;}
.y19_c00181{bottom:678.666667pt;}
.y4a_c00181{bottom:693.466667pt;}
.y18_c00181{bottom:694.400000pt;}
.y17_c00181{bottom:710.400000pt;}
.y49_c00181{bottom:711.333333pt;}
.y16_c00181{bottom:726.133333pt;}
.y48_c00181{bottom:727.333333pt;}
.y15_c00181{bottom:742.133333pt;}
.y47_c00181{bottom:743.333333pt;}
.y46_c00181{bottom:762.800000pt;}
.y13_c00181{bottom:765.200000pt;}
.y45_c00181{bottom:778.533333pt;}
.y12_c00181{bottom:781.466667pt;}
.y44_c00181{bottom:794.533333pt;}
.y11_c00181{bottom:797.733333pt;}
.y43_c00181{bottom:810.533333pt;}
.y10_c00181{bottom:815.066667pt;}
.y14_c00181{bottom:816.000000pt;}
.y42_c00181{bottom:826.533333pt;}
.yf_c00181{bottom:827.200000pt;}
.ye_c00181{bottom:841.600000pt;}
.y41_c00181{bottom:841.866667pt;}
.yd_c00181{bottom:854.133333pt;}
.y40_c00181{bottom:861.466667pt;}
.yc_c00181{bottom:865.600000pt;}
.y3f_c00181{bottom:877.466667pt;}
.yb_c00181{bottom:878.666667pt;}
.ya_c00181{bottom:892.800000pt;}
.y3e_c00181{bottom:900.800000pt;}
.y9_c00181{bottom:908.800000pt;}
.y3d_c00181{bottom:917.066667pt;}
.y8_c00181{bottom:925.466667pt;}
.y3c_c00181{bottom:933.733333pt;}
.y7_c00181{bottom:941.066667pt;}
.y3b_c00181{bottom:949.066667pt;}
.y6_c00181{bottom:964.266667pt;}
.y3a_c00181{bottom:964.800000pt;}
.y39_c00181{bottom:980.800000pt;}
.y5_c00181{bottom:982.133333pt;}
.y4_c00181{bottom:996.533333pt;}
.y1_c00181{bottom:1019.466667pt;}
.y2_c00181{bottom:1019.733333pt;}
.h4_c00181{height:21.333333pt;}
.h7_c00181{height:26.666667pt;}
.h9_c00181{height:42.666667pt;}
.h6_c00181{height:48.000000pt;}
.h5_c00181{height:53.333333pt;}
.h2_c00181{height:58.666667pt;}
.h8_c00181{height:64.000000pt;}
.h3_c00181{height:74.666667pt;}
.h0_c00181{height:1127.039957pt;}
.h1_c00181{height:1127.333333pt;}
.w1_c00181{width:856.000000pt;}
.w0_c00181{width:856.319987pt;}
.x0_c00181{left:0.000000pt;}
.x1b_c00181{left:154.266667pt;}
.x84_c00181{left:155.866667pt;}
.x1_c00181{left:157.466667pt;}
.x3_c00181{left:159.733333pt;}
.x32_c00181{left:168.666667pt;}
.x23_c00181{left:169.600000pt;}
.x47_c00181{left:171.200000pt;}
.x8_c00181{left:172.133333pt;}
.x99_c00181{left:173.066667pt;}
.x1c_c00181{left:178.266667pt;}
.x36_c00181{left:181.733333pt;}
.x41_c00181{left:187.466667pt;}
.x9a_c00181{left:188.533333pt;}
.xf_c00181{left:189.733333pt;}
.x1d_c00181{left:193.333333pt;}
.x90_c00181{left:194.266667pt;}
.x9e_c00181{left:196.133333pt;}
.x76_c00181{left:197.066667pt;}
.x10_c00181{left:198.400000pt;}
.x18_c00181{left:199.466667pt;}
.x39_c00181{left:201.866667pt;}
.x64_c00181{left:202.933333pt;}
.x82_c00181{left:204.133333pt;}
.x55_c00181{left:207.066667pt;}
.x85_c00181{left:208.666667pt;}
.x9b_c00181{left:209.600000pt;}
.x24_c00181{left:211.200000pt;}
.x72_c00181{left:212.533333pt;}
.x48_c00181{left:213.733333pt;}
.x2a_c00181{left:214.666667pt;}
.x60_c00181{left:217.466667pt;}
.x3c_c00181{left:218.533333pt;}
.x11_c00181{left:220.133333pt;}
.x5d_c00181{left:222.533333pt;}
.x42_c00181{left:226.533333pt;}
.x25_c00181{left:228.133333pt;}
.x6b_c00181{left:230.800000pt;}
.x19_c00181{left:232.133333pt;}
.x4f_c00181{left:233.333333pt;}
.x7d_c00181{left:235.333333pt;}
.x49_c00181{left:237.066667pt;}
.x65_c00181{left:238.400000pt;}
.x83_c00181{left:240.000000pt;}
.x91_c00181{left:242.000000pt;}
.x61_c00181{left:243.733333pt;}
.x4_c00181{left:244.800000pt;}
.x3f_c00181{left:245.866667pt;}
.x12_c00181{left:247.333333pt;}
.x9_c00181{left:249.200000pt;}
.x43_c00181{left:251.200000pt;}
.x73_c00181{left:254.400000pt;}
.x5_c00181{left:257.600000pt;}
.x56_c00181{left:258.666667pt;}
.x1a_c00181{left:260.000000pt;}
.xa1_c00181{left:260.933333pt;}
.x94_c00181{left:261.866667pt;}
.x8c_c00181{left:262.800000pt;}
.x9c_c00181{left:264.000000pt;}
.x4a_c00181{left:265.600000pt;}
.x3d_c00181{left:266.800000pt;}
.x9f_c00181{left:269.200000pt;}
.x13_c00181{left:271.066667pt;}
.x9d_c00181{left:272.666667pt;}
.x2b_c00181{left:273.866667pt;}
.x50_c00181{left:275.600000pt;}
.x44_c00181{left:277.066667pt;}
.x1e_c00181{left:278.133333pt;}
.x69_c00181{left:280.933333pt;}
.x5e_c00181{left:283.066667pt;}
.x4b_c00181{left:284.533333pt;}
.x77_c00181{left:286.400000pt;}
.xa_c00181{left:287.333333pt;}
.x3e_c00181{left:288.933333pt;}
.x40_c00181{left:291.333333pt;}
.x51_c00181{left:293.866667pt;}
.x14_c00181{left:295.333333pt;}
.x57_c00181{left:296.800000pt;}
.x97_c00181{left:298.133333pt;}
.x8e_c00181{left:299.466667pt;}
.x66_c00181{left:302.400000pt;}
.x4c_c00181{left:305.333333pt;}
.x86_c00181{left:306.666667pt;}
.x15_c00181{left:308.133333pt;}
.x2c_c00181{left:309.333333pt;}
.x58_c00181{left:311.200000pt;}
.x78_c00181{left:314.933333pt;}
.x6a_c00181{left:316.133333pt;}
.x89_c00181{left:317.066667pt;}
.x7e_c00181{left:318.133333pt;}
.x45_c00181{left:319.333333pt;}
.x8f_c00181{left:320.266667pt;}
.x2d_c00181{left:321.466667pt;}
.x74_c00181{left:322.533333pt;}
.x26_c00181{left:323.466667pt;}
.x87_c00181{left:325.200000pt;}
.xb_c00181{left:327.333333pt;}
.x1f_c00181{left:328.400000pt;}
.x6_c00181{left:329.600000pt;}
.x27_c00181{left:334.400000pt;}
.x7_c00181{left:335.333333pt;}
.x7f_c00181{left:336.666667pt;}
.x59_c00181{left:337.733333pt;}
.x4d_c00181{left:339.200000pt;}
.x5f_c00181{left:340.666667pt;}
.x8a_c00181{left:341.733333pt;}
.x98_c00181{left:342.933333pt;}
.x6c_c00181{left:345.066667pt;}
.x52_c00181{left:346.266667pt;}
.x8d_c00181{left:347.600000pt;}
.x67_c00181{left:350.133333pt;}
.x92_c00181{left:354.000000pt;}
.x6d_c00181{left:356.000000pt;}
.x95_c00181{left:356.933333pt;}
.x88_c00181{left:358.533333pt;}
.xc_c00181{left:359.600000pt;}
.x79_c00181{left:360.666667pt;}
.x20_c00181{left:362.266667pt;}
.x8b_c00181{left:363.200000pt;}
.x75_c00181{left:365.733333pt;}
.x2e_c00181{left:368.133333pt;}
.x5a_c00181{left:369.466667pt;}
.x2_c00181{left:370.533333pt;}
.x80_c00181{left:372.133333pt;}
.x16_c00181{left:374.266667pt;}
.x70_c00181{left:376.533333pt;}
.x46_c00181{left:377.866667pt;}
.xa0_c00181{left:380.000000pt;}
.x62_c00181{left:382.666667pt;}
.x2f_c00181{left:384.133333pt;}
.x6e_c00181{left:386.133333pt;}
.x7b_c00181{left:388.133333pt;}
.xa2_c00181{left:389.066667pt;}
.x3a_c00181{left:391.333333pt;}
.x33_c00181{left:393.200000pt;}
.x53_c00181{left:396.133333pt;}
.x71_c00181{left:399.600000pt;}
.x7a_c00181{left:400.933333pt;}
.xd_c00181{left:401.866667pt;}
.x93_c00181{left:403.333333pt;}
.x21_c00181{left:404.533333pt;}
.x54_c00181{left:408.266667pt;}
.x30_c00181{left:411.333333pt;}
.x81_c00181{left:412.400000pt;}
.x28_c00181{left:413.333333pt;}
.x63_c00181{left:415.333333pt;}
.x34_c00181{left:416.933333pt;}
.x37_c00181{left:417.866667pt;}
.x6f_c00181{left:420.000000pt;}
.x5b_c00181{left:422.933333pt;}
.x7c_c00181{left:424.933333pt;}
.x22_c00181{left:426.666667pt;}
.x5c_c00181{left:427.600000pt;}
.x17_c00181{left:429.600000pt;}
.x96_c00181{left:430.533333pt;}
.xe_c00181{left:432.000000pt;}
.x68_c00181{left:438.400000pt;}
.x31_c00181{left:441.066667pt;}
.x38_c00181{left:442.133333pt;}
.x3b_c00181{left:443.200000pt;}
.x35_c00181{left:444.400000pt;}
.x4e_c00181{left:445.466667pt;}
.x29_c00181{left:446.666667pt;}
.x13c_c00181{left:470.800000pt;}
.xfe_c00181{left:471.733333pt;}
.xf5_c00181{left:472.666667pt;}
.xcd_c00181{left:473.600000pt;}
.x12e_c00181{left:479.733333pt;}
.x139_c00181{left:484.800000pt;}
.x10c_c00181{left:486.666667pt;}
.xe2_c00181{left:488.000000pt;}
.xb9_c00181{left:489.066667pt;}
.xa3_c00181{left:490.266667pt;}
.x120_c00181{left:495.733333pt;}
.x141_c00181{left:497.866667pt;}
.x140_c00181{left:501.866667pt;}
.xd5_c00181{left:505.866667pt;}
.x134_c00181{left:506.800000pt;}
.x13a_c00181{left:507.866667pt;}
.xf6_c00181{left:509.200000pt;}
.xce_c00181{left:510.400000pt;}
.x111_c00181{left:512.400000pt;}
.xab_c00181{left:513.466667pt;}
.xc5_c00181{left:514.666667pt;}
.xef_c00181{left:518.266667pt;}
.x106_c00181{left:519.600000pt;}
.xe8_c00181{left:521.066667pt;}
.x124_c00181{left:522.666667pt;}
.x12f_c00181{left:523.600000pt;}
.xba_c00181{left:524.533333pt;}
.xff_c00181{left:525.466667pt;}
.x132_c00181{left:526.666667pt;}
.xc0_c00181{left:528.933333pt;}
.xfa_c00181{left:531.466667pt;}
.xf3_c00181{left:533.333333pt;}
.xe9_c00181{left:535.200000pt;}
.xac_c00181{left:536.533333pt;}
.x115_c00181{left:538.266667pt;}
.xbb_c00181{left:539.866667pt;}
.xcf_c00181{left:541.733333pt;}
.x142_c00181{left:543.600000pt;}
.x128_c00181{left:546.000000pt;}
.x11a_c00181{left:547.733333pt;}
.xa4_c00181{left:549.733333pt;}
.xf0_c00181{left:551.600000pt;}
.xea_c00181{left:554.133333pt;}
.xd9_c00181{left:556.000000pt;}
.xad_c00181{left:558.000000pt;}
.x129_c00181{left:559.066667pt;}
.xfb_c00181{left:560.000000pt;}
.xd6_c00181{left:561.600000pt;}
.x108_c00181{left:563.333333pt;}
.xf7_c00181{left:565.200000pt;}
.xc6_c00181{left:566.133333pt;}
.x13b_c00181{left:567.066667pt;}
.xc1_c00181{left:569.600000pt;}
.x100_c00181{left:575.733333pt;}
.x112_c00181{left:576.666667pt;}
.x137_c00181{left:577.600000pt;}
.xa5_c00181{left:579.200000pt;}
.x121_c00181{left:580.133333pt;}
.xd0_c00181{left:582.666667pt;}
.x10d_c00181{left:584.000000pt;}
.x102_c00181{left:585.600000pt;}
.xbc_c00181{left:586.933333pt;}
.xc7_c00181{left:588.266667pt;}
.x11b_c00181{left:590.000000pt;}
.x12a_c00181{left:591.066667pt;}
.xda_c00181{left:592.133333pt;}
.xae_c00181{left:593.466667pt;}
.xa6_c00181{left:595.466667pt;}
.xfc_c00181{left:596.800000pt;}
.xb4_c00181{left:601.466667pt;}
.xbd_c00181{left:603.866667pt;}
.x116_c00181{left:605.466667pt;}
.x101_c00181{left:607.066667pt;}
.xc8_c00181{left:609.333333pt;}
.xc2_c00181{left:611.466667pt;}
.x144_c00181{left:613.866667pt;}
.xd1_c00181{left:615.333333pt;}
.xe3_c00181{left:617.333333pt;}
.x143_c00181{left:619.733333pt;}
.xd7_c00181{left:621.066667pt;}
.xa7_c00181{left:623.600000pt;}
.x127_c00181{left:625.066667pt;}
.x13d_c00181{left:626.000000pt;}
.x13f_c00181{left:627.866667pt;}
.x11c_c00181{left:629.333333pt;}
.xd8_c00181{left:633.600000pt;}
.x10b_c00181{left:635.733333pt;}
.xeb_c00181{left:636.666667pt;}
.x12c_c00181{left:639.200000pt;}
.x122_c00181{left:640.400000pt;}
.x107_c00181{left:642.400000pt;}
.xc9_c00181{left:644.266667pt;}
.xfd_c00181{left:645.733333pt;}
.xf4_c00181{left:646.666667pt;}
.x117_c00181{left:647.600000pt;}
.x12d_c00181{left:648.666667pt;}
.x109_c00181{left:650.000000pt;}
.xdb_c00181{left:651.333333pt;}
.x125_c00181{left:653.866667pt;}
.xaf_c00181{left:656.133333pt;}
.xb5_c00181{left:657.466667pt;}
.x11d_c00181{left:659.066667pt;}
.xe4_c00181{left:661.866667pt;}
.xdc_c00181{left:663.466667pt;}
.x135_c00181{left:665.200000pt;}
.xc3_c00181{left:666.133333pt;}
.xec_c00181{left:667.733333pt;}
.x113_c00181{left:668.800000pt;}
.x138_c00181{left:670.400000pt;}
.x130_c00181{left:672.133333pt;}
.x103_c00181{left:673.200000pt;}
.x110_c00181{left:675.333333pt;}
.xb0_c00181{left:676.266667pt;}
.xed_c00181{left:677.333333pt;}
.x10a_c00181{left:679.733333pt;}
.xd2_c00181{left:681.600000pt;}
.xbe_c00181{left:682.933333pt;}
.xb6_c00181{left:684.000000pt;}
.x131_c00181{left:684.933333pt;}
.xdd_c00181{left:688.133333pt;}
.xb1_c00181{left:690.400000pt;}
.xa8_c00181{left:691.733333pt;}
.x10e_c00181{left:693.866667pt;}
.xe5_c00181{left:695.733333pt;}
.x118_c00181{left:697.200000pt;}
.xd4_c00181{left:698.533333pt;}
.x126_c00181{left:700.933333pt;}
.xca_c00181{left:702.133333pt;}
.x12b_c00181{left:703.733333pt;}
.x11e_c00181{left:705.600000pt;}
.xb7_c00181{left:706.666667pt;}
.xa9_c00181{left:708.400000pt;}
.x104_c00181{left:709.333333pt;}
.xf1_c00181{left:710.933333pt;}
.xee_c00181{left:715.466667pt;}
.x13e_c00181{left:718.800000pt;}
.xcb_c00181{left:719.733333pt;}
.xc4_c00181{left:721.466667pt;}
.xf8_c00181{left:723.466667pt;}
.xf2_c00181{left:725.333333pt;}
.xaa_c00181{left:726.266667pt;}
.x105_c00181{left:728.266667pt;}
.xe6_c00181{left:729.333333pt;}
.xb8_c00181{left:734.533333pt;}
.xf9_c00181{left:736.000000pt;}
.xde_c00181{left:738.666667pt;}
.xcc_c00181{left:739.866667pt;}
.x123_c00181{left:741.200000pt;}
.xb2_c00181{left:742.533333pt;}
.xd3_c00181{left:744.000000pt;}
.xdf_c00181{left:745.333333pt;}
.xbf_c00181{left:746.266667pt;}
.x114_c00181{left:747.200000pt;}
.x136_c00181{left:749.066667pt;}
.x10f_c00181{left:751.200000pt;}
.xe0_c00181{left:754.933333pt;}
.x119_c00181{left:756.400000pt;}
.x133_c00181{left:757.333333pt;}
.x11f_c00181{left:758.400000pt;}
.xb3_c00181{left:759.466667pt;}
.xe1_c00181{left:761.333333pt;}
.xe7_c00181{left:762.666667pt;}
}





/* 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_c00182 {
    display:none;
  }
  .loading-indicator_c00182.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00182 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_c00182 { 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_c00182" -> "#page-container .classname_c00182")
 */
.pf_c00182 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00182 { /* 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_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00182 { /* 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_c00182 { /* 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_c00182 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00182 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00182 {overflow:visible;}
  }
}
.c_c00182 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00182 { /* 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_c00182:after { /* webkit #35443 */
  content: '';
}
.t_c00182:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00182 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 */
}
.__c00182 { /* 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_c00182 { /* info for Javascript */
  display:none;
}
.l_c00182 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00182 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00182 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00182: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_c00182 {
    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_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00182.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_c00182 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00182;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.000000;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;}
.m87_c00182{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.me7_c00182{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m65_c00182{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m79_c00182{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00182{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m46_c00182{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m81_c00182{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00182{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m60_c00182{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00182{transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);}
.m21_c00182{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mef_c00182{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00182{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.me3_c00182{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00182{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00182{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m73_c00182{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m88_c00182{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00182{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00182{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00182{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m13_c00182{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m115_c00182{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m90_c00182{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00182{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00182{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m109_c00182{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m62_c00182{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m105_c00182{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m15_c00182{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00182{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00182{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00182{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6_c00182{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m22_c00182{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00182{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m35_c00182{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00182{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7_c00182{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m112_c00182{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m19_c00182{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m43_c00182{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m55_c00182{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00182{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00182{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m56_c00182{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m36_c00182{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m27_c00182{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00182{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00182{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00182{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m106_c00182{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00182{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00182{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m66_c00182{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00182{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mae_c00182{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me8_c00182{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m102_c00182{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00182{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m103_c00182{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00182{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00182{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00182{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00182{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m41_c00182{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m76_c00182{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00182{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m38_c00182{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m89_c00182{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mce_c00182{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m67_c00182{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m12_c00182{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2_c00182{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8_c00182{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mac_c00182{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m33_c00182{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00182{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00182{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00182{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00182{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m45_c00182{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.maf_c00182{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m24_c00182{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00182{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc_c00182{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md5_c00182{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m58_c00182{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m92_c00182{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m39_c00182{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00182{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m101_c00182{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mad_c00182{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00182{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00182{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00182{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m42_c00182{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00182{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me_c00182{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md0_c00182{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m52_c00182{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md7_c00182{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m86_c00182{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00182{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m20_c00182{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00182{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m77_c00182{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m114_c00182{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00182{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00182{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00182{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00182{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m54_c00182{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00182{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m29_c00182{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00182{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.md8_c00182{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00182{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00182{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md6_c00182{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m104_c00182{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m84_c00182{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb_c00182{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m69_c00182{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00182{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m64_c00182{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00182{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m63_c00182{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00182{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.maa_c00182{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m116_c00182{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00182{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00182{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md_c00182{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mff_c00182{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00182{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mba_c00182{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mab_c00182{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m72_c00182{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00182{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m85_c00182{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m57_c00182{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m51_c00182{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma_c00182{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md2_c00182{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m17_c00182{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m14_c00182{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m113_c00182{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00182{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00182{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00182{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00182{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00182{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m16_c00182{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m28_c00182{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m99_c00182{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m61_c00182{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00182{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00182{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m37_c00182{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m68_c00182{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m107_c00182{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m18_c00182{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00182{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00182{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00182{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00182{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m95_c00182{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11_c00182{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00182{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m80_c00182{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md4_c00182{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m59_c00182{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m10_c00182{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00182{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m40_c00182{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me0_c00182{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m34_c00182{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00182{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mda_c00182{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00182{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m32_c00182{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00182{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m98_c00182{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m110_c00182{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m26_c00182{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00182{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m74_c00182{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00182{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00182{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m53_c00182{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00182{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m49_c00182{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00182{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00182{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.md1_c00182{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m111_c00182{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00182{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00182{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00182{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m30_c00182{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00182{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m100_c00182{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00182{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m93_c00182{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf_c00182{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00182{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00182{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00182{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00182{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00182{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);}
.ma7_c00182{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00182{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00182{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00182{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00182{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m71_c00182{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m97_c00182{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md3_c00182{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mea_c00182{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00182{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m82_c00182{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m48_c00182{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m91_c00182{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00182{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00182{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m78_c00182{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m31_c00182{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00182{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00182{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m96_c00182{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00182{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00182{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m47_c00182{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5_c00182{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mee_c00182{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00182{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00182{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00182{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.me1_c00182{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00182{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00182{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mca_c00182{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00182{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00182{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m4_c00182{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m25_c00182{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me4_c00182{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.md9_c00182{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00182{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m83_c00182{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m70_c00182{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me2_c00182{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00182{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m75_c00182{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m9_c00182{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m50_c00182{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00182{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.med_c00182{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00182{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m108_c00182{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00182{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.me6_c00182{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00182{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m94_c00182{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.mec_c00182{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.me5_c00182{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m44_c00182{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00182{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.me9_c00182{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.meb_c00182{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m23_c00182{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.mde_c00182{transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00182{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00182{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00182{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls0_c00182{letter-spacing:0.000000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{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__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00182{word-spacing:-5.250000px;}
.ws0_c00182{word-spacing:-4.000987px;}
.ws5_c00182{word-spacing:0.000000px;}
.ws3_c00182{word-spacing:8.790698px;}
.ws2_c00182{word-spacing:11.621993px;}
.ws4_c00182{word-spacing:12.000000px;}
.fc0_c00182{color:transparent;}
.fs8_c00182{font-size:30.000000px;}
.fs6_c00182{font-size:36.000000px;}
.fs7_c00182{font-size:42.000000px;}
.fs5_c00182{font-size:48.000000px;}
.fs4_c00182{font-size:54.000000px;}
.fs2_c00182{font-size:60.000000px;}
.fs3_c00182{font-size:66.000000px;}
.fs1_c00182{font-size:72.000000px;}
.fs0_c00182{font-size:78.000000px;}
.y0_c00182{bottom:0.000000px;}
.y65_c00182{bottom:177.450000px;}
.y34_c00182{bottom:180.300000px;}
.y64_c00182{bottom:191.850000px;}
.y33_c00182{bottom:198.000000px;}
.y63_c00182{bottom:206.250000px;}
.y32_c00182{bottom:216.000000px;}
.y62_c00182{bottom:220.950000px;}
.y31_c00182{bottom:233.700000px;}
.y61_c00182{bottom:234.600000px;}
.y60_c00182{bottom:248.700000px;}
.y30_c00182{bottom:255.300000px;}
.y5f_c00182{bottom:270.750000px;}
.y2f_c00182{bottom:273.300000px;}
.y5e_c00182{bottom:295.500000px;}
.y2e_c00182{bottom:304.650000px;}
.y5d_c00182{bottom:317.100000px;}
.y2d_c00182{bottom:322.350000px;}
.y5c_c00182{bottom:339.150000px;}
.y2c_c00182{bottom:340.350000px;}
.y5b_c00182{bottom:357.150000px;}
.y2b_c00182{bottom:358.350000px;}
.y5a_c00182{bottom:375.150000px;}
.y2a_c00182{bottom:376.050000px;}
.y29_c00182{bottom:393.750000px;}
.y59_c00182{bottom:397.050000px;}
.y28_c00182{bottom:411.750000px;}
.y58_c00182{bottom:419.100000px;}
.y27_c00182{bottom:429.450000px;}
.y57_c00182{bottom:441.300000px;}
.y26_c00182{bottom:447.150000px;}
.y56_c00182{bottom:462.900000px;}
.y25_c00182{bottom:465.000000px;}
.y24_c00182{bottom:482.700000px;}
.y55_c00182{bottom:485.250000px;}
.y23_c00182{bottom:500.700000px;}
.y54_c00182{bottom:507.450000px;}
.y22_c00182{bottom:518.400000px;}
.y53_c00182{bottom:525.450000px;}
.y21_c00182{bottom:537.150000px;}
.y52_c00182{bottom:543.150000px;}
.y20_c00182{bottom:558.300000px;}
.y51_c00182{bottom:561.450000px;}
.y1f_c00182{bottom:576.300000px;}
.y50_c00182{bottom:579.150000px;}
.y1e_c00182{bottom:594.300000px;}
.y4f_c00182{bottom:597.150000px;}
.y1d_c00182{bottom:611.400000px;}
.y4e_c00182{bottom:614.850000px;}
.y1c_c00182{bottom:629.400000px;}
.y4d_c00182{bottom:632.550000px;}
.y1b_c00182{bottom:647.700000px;}
.y4c_c00182{bottom:654.900000px;}
.y1a_c00182{bottom:665.400000px;}
.y4b_c00182{bottom:673.800000px;}
.y4a_c00182{bottom:682.500000px;}
.y19_c00182{bottom:683.100000px;}
.y18_c00182{bottom:701.100000px;}
.y49_c00182{bottom:710.250000px;}
.y17_c00182{bottom:718.800000px;}
.y48_c00182{bottom:719.250000px;}
.y16_c00182{bottom:736.500000px;}
.y47_c00182{bottom:738.000000px;}
.y15_c00182{bottom:758.550000px;}
.y46_c00182{bottom:760.200000px;}
.y14_c00182{bottom:776.550000px;}
.y45_c00182{bottom:782.550000px;}
.y13_c00182{bottom:794.550000px;}
.y44_c00182{bottom:804.900000px;}
.y12_c00182{bottom:812.550000px;}
.y11_c00182{bottom:830.100000px;}
.y43_c00182{bottom:835.200000px;}
.y10_c00182{bottom:847.650000px;}
.yf_c00182{bottom:865.650000px;}
.y42_c00182{bottom:866.550000px;}
.ye_c00182{bottom:883.350000px;}
.y41_c00182{bottom:884.550000px;}
.yd_c00182{bottom:901.350000px;}
.y40_c00182{bottom:906.450000px;}
.yc_c00182{bottom:919.050000px;}
.y3f_c00182{bottom:924.450000px;}
.yb_c00182{bottom:940.050000px;}
.y3e_c00182{bottom:942.450000px;}
.ya_c00182{bottom:954.750000px;}
.y3d_c00182{bottom:960.150000px;}
.y9_c00182{bottom:973.800000px;}
.y3c_c00182{bottom:978.450000px;}
.y8_c00182{bottom:991.800000px;}
.y3b_c00182{bottom:995.700000px;}
.y3a_c00182{bottom:1013.400000px;}
.y7_c00182{bottom:1013.700000px;}
.y6_c00182{bottom:1031.700000px;}
.y39_c00182{bottom:1034.250000px;}
.y5_c00182{bottom:1050.000000px;}
.y38_c00182{bottom:1054.500000px;}
.y4_c00182{bottom:1067.700000px;}
.y37_c00182{bottom:1072.500000px;}
.y3_c00182{bottom:1089.300000px;}
.y36_c00182{bottom:1090.500000px;}
.y2_c00182{bottom:1107.300000px;}
.y35_c00182{bottom:1111.350000px;}
.y1_c00182{bottom:1134.300000px;}
.h9_c00182{height:30.000000px;}
.h7_c00182{height:36.000000px;}
.h8_c00182{height:42.000000px;}
.h6_c00182{height:48.000000px;}
.h5_c00182{height:54.000000px;}
.h3_c00182{height:60.000000px;}
.h4_c00182{height:66.000000px;}
.h2_c00182{height:72.000000px;}
.h1_c00182{height:78.000000px;}
.h0_c00182{height:1269.000000px;}
.w1_c00182{width:963.000000px;}
.w0_c00182{width:963.359985px;}
.x0_c00182{left:0.000000px;}
.x5b_c00182{left:83.550000px;}
.x1f_c00182{left:84.900000px;}
.x3_c00182{left:86.700000px;}
.x30_c00182{left:99.450000px;}
.x64_c00182{left:101.700000px;}
.x26_c00182{left:103.050000px;}
.xa_c00182{left:104.250000px;}
.x20_c00182{left:110.100000px;}
.x87_c00182{left:118.200000px;}
.x71_c00182{left:120.600000px;}
.xb_c00182{left:121.650000px;}
.x4b_c00182{left:122.850000px;}
.x53_c00182{left:124.800000px;}
.x1c_c00182{left:126.900000px;}
.x8e_c00182{left:128.250000px;}
.x4_c00182{left:129.900000px;}
.x27_c00182{left:132.600000px;}
.x8a_c00182{left:136.800000px;}
.x79_c00182{left:138.450000px;}
.x3f_c00182{left:139.950000px;}
.x4e_c00182{left:142.800000px;}
.x43_c00182{left:144.900000px;}
.x2d_c00182{left:146.100000px;}
.x61_c00182{left:148.950000px;}
.x10_c00182{left:150.450000px;}
.x5f_c00182{left:153.600000px;}
.x6c_c00182{left:157.050000px;}
.x3b_c00182{left:158.250000px;}
.x47_c00182{left:161.850000px;}
.x31_c00182{left:163.500000px;}
.x65_c00182{left:165.450000px;}
.x5_c00182{left:167.700000px;}
.xc_c00182{left:168.750000px;}
.x75_c00182{left:169.800000px;}
.x3a_c00182{left:171.000000px;}
.x5c_c00182{left:172.050000px;}
.x66_c00182{left:174.150000px;}
.x28_c00182{left:176.550000px;}
.x1d_c00182{left:179.850000px;}
.x32_c00182{left:183.300000px;}
.x82_c00182{left:184.350000px;}
.x29_c00182{left:185.550000px;}
.x54_c00182{left:187.050000px;}
.x7f_c00182{left:188.850000px;}
.x67_c00182{left:191.850000px;}
.x21_c00182{left:195.300000px;}
.x7d_c00182{left:196.350000px;}
.x1e_c00182{left:197.850000px;}
.x69_c00182{left:199.200000px;}
.x94_c00182{left:201.450000px;}
.x33_c00182{left:205.200000px;}
.x68_c00182{left:206.400000px;}
.x11_c00182{left:210.600000px;}
.xd_c00182{left:213.450000px;}
.x6_c00182{left:215.550000px;}
.x76_c00182{left:216.600000px;}
.x6d_c00182{left:218.850000px;}
.x48_c00182{left:220.200000px;}
.x3c_c00182{left:222.000000px;}
.x58_c00182{left:225.000000px;}
.x55_c00182{left:226.950000px;}
.x92_c00182{left:228.000000px;}
.x3d_c00182{left:231.000000px;}
.x17_c00182{left:233.400000px;}
.x22_c00182{left:235.650000px;}
.x8f_c00182{left:237.150000px;}
.x6a_c00182{left:241.200000px;}
.x4c_c00182{left:242.400000px;}
.x72_c00182{left:244.500000px;}
.x4f_c00182{left:246.750000px;}
.x7_c00182{left:249.000000px;}
.xe_c00182{left:250.950000px;}
.x12_c00182{left:254.100000px;}
.x2a_c00182{left:255.450000px;}
.x81_c00182{left:256.500000px;}
.x60_c00182{left:263.100000px;}
.x7a_c00182{left:264.150000px;}
.x56_c00182{left:266.250000px;}
.x8b_c00182{left:268.500000px;}
.x8d_c00182{left:270.000000px;}
.x77_c00182{left:273.900000px;}
.x40_c00182{left:274.950000px;}
.x34_c00182{left:277.950000px;}
.x8c_c00182{left:279.000000px;}
.x13_c00182{left:280.050000px;}
.x50_c00182{left:281.700000px;}
.x86_c00182{left:282.900000px;}
.x62_c00182{left:285.750000px;}
.x35_c00182{left:287.700000px;}
.x2b_c00182{left:289.350000px;}
.x5d_c00182{left:290.400000px;}
.x41_c00182{left:294.000000px;}
.x18_c00182{left:297.150000px;}
.x7b_c00182{left:299.400000px;}
.x23_c00182{left:301.200000px;}
.x90_c00182{left:302.400000px;}
.x14_c00182{left:304.950000px;}
.x36_c00182{left:306.000000px;}
.x6e_c00182{left:308.550000px;}
.x59_c00182{left:309.600000px;}
.x44_c00182{left:315.150000px;}
.x7c_c00182{left:316.350000px;}
.x2e_c00182{left:317.550000px;}
.x88_c00182{left:319.050000px;}
.x37_c00182{left:320.700000px;}
.x3e_c00182{left:321.750000px;}
.x57_c00182{left:323.550000px;}
.x4d_c00182{left:326.250000px;}
.x1_c00182{left:327.900000px;}
.x49_c00182{left:329.250000px;}
.x6b_c00182{left:331.650000px;}
.x2c_c00182{left:333.600000px;}
.x51_c00182{left:335.400000px;}
.x73_c00182{left:337.950000px;}
.x8_c00182{left:341.550000px;}
.x78_c00182{left:344.700000px;}
.x19_c00182{left:346.050000px;}
.x38_c00182{left:348.750000px;}
.x5a_c00182{left:349.950000px;}
.x42_c00182{left:351.600000px;}
.x85_c00182{left:353.850000px;}
.x80_c00182{left:355.800000px;}
.x15_c00182{left:357.150000px;}
.x74_c00182{left:359.550000px;}
.x4a_c00182{left:361.650000px;}
.x89_c00182{left:363.300000px;}
.x1a_c00182{left:366.900000px;}
.x5e_c00182{left:368.850000px;}
.xf_c00182{left:370.050000px;}
.x6f_c00182{left:372.150000px;}
.x91_c00182{left:374.100000px;}
.x45_c00182{left:375.600000px;}
.x83_c00182{left:376.650000px;}
.x9_c00182{left:379.350000px;}
.x39_c00182{left:381.150000px;}
.x52_c00182{left:383.250000px;}
.x24_c00182{left:385.200000px;}
.x46_c00182{left:391.500000px;}
.x84_c00182{left:393.450000px;}
.x2f_c00182{left:394.650000px;}
.x7e_c00182{left:395.850000px;}
.x70_c00182{left:397.050000px;}
.x93_c00182{left:399.900000px;}
.x1b_c00182{left:402.600000px;}
.x25_c00182{left:403.950000px;}
.x63_c00182{left:406.650000px;}
.x16_c00182{left:409.050000px;}
.x123_c00182{left:439.350000px;}
.x118_c00182{left:440.700000px;}
.xe3_c00182{left:442.500000px;}
.xaa_c00182{left:443.850000px;}
.x95_c00182{left:444.900000px;}
.x124_c00182{left:449.100000px;}
.xf6_c00182{left:455.550000px;}
.x11f_c00182{left:456.750000px;}
.x105_c00182{left:458.550000px;}
.xe2_c00182{left:459.900000px;}
.x9d_c00182{left:461.250000px;}
.xa9_c00182{left:462.750000px;}
.x117_c00182{left:474.150000px;}
.x110_c00182{left:476.250000px;}
.xf3_c00182{left:477.300000px;}
.xc1_c00182{left:478.650000px;}
.xe6_c00182{left:480.300000px;}
.x11a_c00182{left:481.350000px;}
.xcc_c00182{left:482.400000px;}
.xda_c00182{left:487.500000px;}
.x96_c00182{left:490.200000px;}
.x112_c00182{left:491.250000px;}
.xfe_c00182{left:492.600000px;}
.x125_c00182{left:494.850000px;}
.xd5_c00182{left:500.400000px;}
.x11b_c00182{left:503.700000px;}
.x9e_c00182{left:505.500000px;}
.xab_c00182{left:506.850000px;}
.xa4_c00182{left:511.350000px;}
.xfa_c00182{left:513.300000px;}
.xdb_c00182{left:515.250000px;}
.xea_c00182{left:517.800000px;}
.x10b_c00182{left:519.900000px;}
.xac_c00182{left:520.950000px;}
.xe4_c00182{left:524.250000px;}
.xcd_c00182{left:525.300000px;}
.xeb_c00182{left:527.400000px;}
.x10e_c00182{left:529.200000px;}
.xe7_c00182{left:530.700000px;}
.xb4_c00182{left:532.800000px;}
.x10d_c00182{left:534.000000px;}
.xf0_c00182{left:535.350000px;}
.x9f_c00182{left:537.600000px;}
.xf4_c00182{left:539.250000px;}
.xff_c00182{left:544.800000px;}
.xad_c00182{left:546.450000px;}
.x10c_c00182{left:547.950000px;}
.xd6_c00182{left:549.000000px;}
.xf1_c00182{left:550.500000px;}
.xbb_c00182{left:552.750000px;}
.xf7_c00182{left:555.900000px;}
.x97_c00182{left:558.900000px;}
.xc2_c00182{left:560.700000px;}
.xc6_c00182{left:562.950000px;}
.xde_c00182{left:565.500000px;}
.x100_c00182{left:569.250000px;}
.x106_c00182{left:570.750000px;}
.x114_c00182{left:571.800000px;}
.xe8_c00182{left:574.200000px;}
.xb5_c00182{left:575.250000px;}
.xae_c00182{left:576.750000px;}
.xce_c00182{left:579.000000px;}
.xdc_c00182{left:580.050000px;}
.xfb_c00182{left:582.450000px;}
.x109_c00182{left:583.800000px;}
.x11c_c00182{left:585.000000px;}
.xbc_c00182{left:586.650000px;}
.xcf_c00182{left:589.500000px;}
.xa5_c00182{left:590.850000px;}
.xc3_c00182{left:593.100000px;}
.xaf_c00182{left:594.750000px;}
.x101_c00182{left:596.550000px;}
.xd7_c00182{left:602.250000px;}
.x98_c00182{left:604.200000px;}
.xf2_c00182{left:605.550000px;}
.xb0_c00182{left:608.400000px;}
.xee_c00182{left:609.750000px;}
.x119_c00182{left:612.150000px;}
.xa0_c00182{left:615.000000px;}
.xd0_c00182{left:617.250000px;}
.xc7_c00182{left:618.750000px;}
.xb6_c00182{left:621.300000px;}
.xfd_c00182{left:623.850000px;}
.xa1_c00182{left:625.050000px;}
.xbd_c00182{left:628.350000px;}
.x115_c00182{left:629.400000px;}
.x102_c00182{left:631.800000px;}
.xb7_c00182{left:634.200000px;}
.xc8_c00182{left:636.750000px;}
.xd1_c00182{left:638.100000px;}
.xe5_c00182{left:639.450000px;}
.xc4_c00182{left:640.650000px;}
.xb1_c00182{left:641.850000px;}
.xf5_c00182{left:643.950000px;}
.x116_c00182{left:645.300000px;}
.x99_c00182{left:646.350000px;}
.xdf_c00182{left:647.550000px;}
.x10f_c00182{left:649.500000px;}
.xd8_c00182{left:650.850000px;}
.xc9_c00182{left:652.950000px;}
.xa6_c00182{left:655.350000px;}
.xdd_c00182{left:657.150000px;}
.xb2_c00182{left:659.550000px;}
.xa2_c00182{left:660.750000px;}
.x126_c00182{left:667.950000px;}
.xbe_c00182{left:671.850000px;}
.xe9_c00182{left:675.000000px;}
.xa7_c00182{left:678.000000px;}
.x107_c00182{left:679.050000px;}
.x113_c00182{left:680.850000px;}
.xf8_c00182{left:682.200000px;}
.xb8_c00182{left:684.900000px;}
.xd2_c00182{left:687.750000px;}
.xd9_c00182{left:689.400000px;}
.x103_c00182{left:693.750000px;}
.xca_c00182{left:695.100000px;}
.xa8_c00182{left:698.850000px;}
.x122_c00182{left:700.050000px;}
.xa3_c00182{left:703.200000px;}
.xb9_c00182{left:710.100000px;}
.xb3_c00182{left:712.500000px;}
.x9a_c00182{left:715.800000px;}
.xe0_c00182{left:717.300000px;}
.xbf_c00182{left:720.150000px;}
.x11d_c00182{left:722.100000px;}
.xfc_c00182{left:727.950000px;}
.xcb_c00182{left:729.300000px;}
.x9b_c00182{left:732.300000px;}
.x127_c00182{left:733.800000px;}
.xc5_c00182{left:735.300000px;}
.x121_c00182{left:738.600000px;}
.xec_c00182{left:740.100000px;}
.xf9_c00182{left:743.100000px;}
.xd3_c00182{left:744.300000px;}
.x120_c00182{left:747.000000px;}
.xed_c00182{left:749.100000px;}
.x111_c00182{left:752.250000px;}
.x2_c00182{left:754.200000px;}
.x10a_c00182{left:756.150000px;}
.xc0_c00182{left:757.650000px;}
.xd4_c00182{left:760.500000px;}
.x108_c00182{left:762.300000px;}
.xe1_c00182{left:764.850000px;}
.xba_c00182{left:766.200000px;}
.x9c_c00182{left:769.350000px;}
.x11e_c00182{left:771.750000px;}
.xef_c00182{left:775.500000px;}
.x104_c00182{left:783.300000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws1_c00182{word-spacing:-4.666667pt;}
.ws0_c00182{word-spacing:-3.556433pt;}
.ws5_c00182{word-spacing:0.000000pt;}
.ws3_c00182{word-spacing:7.813953pt;}
.ws2_c00182{word-spacing:10.330661pt;}
.ws4_c00182{word-spacing:10.666667pt;}
.fs8_c00182{font-size:26.666667pt;}
.fs6_c00182{font-size:32.000000pt;}
.fs7_c00182{font-size:37.333333pt;}
.fs5_c00182{font-size:42.666667pt;}
.fs4_c00182{font-size:48.000000pt;}
.fs2_c00182{font-size:53.333333pt;}
.fs3_c00182{font-size:58.666667pt;}
.fs1_c00182{font-size:64.000000pt;}
.fs0_c00182{font-size:69.333333pt;}
.y0_c00182{bottom:0.000000pt;}
.y65_c00182{bottom:157.733333pt;}
.y34_c00182{bottom:160.266667pt;}
.y64_c00182{bottom:170.533333pt;}
.y33_c00182{bottom:176.000000pt;}
.y63_c00182{bottom:183.333333pt;}
.y32_c00182{bottom:192.000000pt;}
.y62_c00182{bottom:196.400000pt;}
.y31_c00182{bottom:207.733333pt;}
.y61_c00182{bottom:208.533333pt;}
.y60_c00182{bottom:221.066667pt;}
.y30_c00182{bottom:226.933333pt;}
.y5f_c00182{bottom:240.666667pt;}
.y2f_c00182{bottom:242.933333pt;}
.y5e_c00182{bottom:262.666667pt;}
.y2e_c00182{bottom:270.800000pt;}
.y5d_c00182{bottom:281.866667pt;}
.y2d_c00182{bottom:286.533333pt;}
.y5c_c00182{bottom:301.466667pt;}
.y2c_c00182{bottom:302.533333pt;}
.y5b_c00182{bottom:317.466667pt;}
.y2b_c00182{bottom:318.533333pt;}
.y5a_c00182{bottom:333.466667pt;}
.y2a_c00182{bottom:334.266667pt;}
.y29_c00182{bottom:350.000000pt;}
.y59_c00182{bottom:352.933333pt;}
.y28_c00182{bottom:366.000000pt;}
.y58_c00182{bottom:372.533333pt;}
.y27_c00182{bottom:381.733333pt;}
.y57_c00182{bottom:392.266667pt;}
.y26_c00182{bottom:397.466667pt;}
.y56_c00182{bottom:411.466667pt;}
.y25_c00182{bottom:413.333333pt;}
.y24_c00182{bottom:429.066667pt;}
.y55_c00182{bottom:431.333333pt;}
.y23_c00182{bottom:445.066667pt;}
.y54_c00182{bottom:451.066667pt;}
.y22_c00182{bottom:460.800000pt;}
.y53_c00182{bottom:467.066667pt;}
.y21_c00182{bottom:477.466667pt;}
.y52_c00182{bottom:482.800000pt;}
.y20_c00182{bottom:496.266667pt;}
.y51_c00182{bottom:499.066667pt;}
.y1f_c00182{bottom:512.266667pt;}
.y50_c00182{bottom:514.800000pt;}
.y1e_c00182{bottom:528.266667pt;}
.y4f_c00182{bottom:530.800000pt;}
.y1d_c00182{bottom:543.466667pt;}
.y4e_c00182{bottom:546.533333pt;}
.y1c_c00182{bottom:559.466667pt;}
.y4d_c00182{bottom:562.266667pt;}
.y1b_c00182{bottom:575.733333pt;}
.y4c_c00182{bottom:582.133333pt;}
.y1a_c00182{bottom:591.466667pt;}
.y4b_c00182{bottom:598.933333pt;}
.y4a_c00182{bottom:606.666667pt;}
.y19_c00182{bottom:607.200000pt;}
.y18_c00182{bottom:623.200000pt;}
.y49_c00182{bottom:631.333333pt;}
.y17_c00182{bottom:638.933333pt;}
.y48_c00182{bottom:639.333333pt;}
.y16_c00182{bottom:654.666667pt;}
.y47_c00182{bottom:656.000000pt;}
.y15_c00182{bottom:674.266667pt;}
.y46_c00182{bottom:675.733333pt;}
.y14_c00182{bottom:690.266667pt;}
.y45_c00182{bottom:695.600000pt;}
.y13_c00182{bottom:706.266667pt;}
.y44_c00182{bottom:715.466667pt;}
.y12_c00182{bottom:722.266667pt;}
.y11_c00182{bottom:737.866667pt;}
.y43_c00182{bottom:742.400000pt;}
.y10_c00182{bottom:753.466667pt;}
.yf_c00182{bottom:769.466667pt;}
.y42_c00182{bottom:770.266667pt;}
.ye_c00182{bottom:785.200000pt;}
.y41_c00182{bottom:786.266667pt;}
.yd_c00182{bottom:801.200000pt;}
.y40_c00182{bottom:805.733333pt;}
.yc_c00182{bottom:816.933333pt;}
.y3f_c00182{bottom:821.733333pt;}
.yb_c00182{bottom:835.600000pt;}
.y3e_c00182{bottom:837.733333pt;}
.ya_c00182{bottom:848.666667pt;}
.y3d_c00182{bottom:853.466667pt;}
.y9_c00182{bottom:865.600000pt;}
.y3c_c00182{bottom:869.733333pt;}
.y8_c00182{bottom:881.600000pt;}
.y3b_c00182{bottom:885.066667pt;}
.y3a_c00182{bottom:900.800000pt;}
.y7_c00182{bottom:901.066667pt;}
.y6_c00182{bottom:917.066667pt;}
.y39_c00182{bottom:919.333333pt;}
.y5_c00182{bottom:933.333333pt;}
.y38_c00182{bottom:937.333333pt;}
.y4_c00182{bottom:949.066667pt;}
.y37_c00182{bottom:953.333333pt;}
.y3_c00182{bottom:968.266667pt;}
.y36_c00182{bottom:969.333333pt;}
.y2_c00182{bottom:984.266667pt;}
.y35_c00182{bottom:987.866667pt;}
.y1_c00182{bottom:1008.266667pt;}
.h9_c00182{height:26.666667pt;}
.h7_c00182{height:32.000000pt;}
.h8_c00182{height:37.333333pt;}
.h6_c00182{height:42.666667pt;}
.h5_c00182{height:48.000000pt;}
.h3_c00182{height:53.333333pt;}
.h4_c00182{height:58.666667pt;}
.h2_c00182{height:64.000000pt;}
.h1_c00182{height:69.333333pt;}
.h0_c00182{height:1128.000000pt;}
.w1_c00182{width:856.000000pt;}
.w0_c00182{width:856.319987pt;}
.x0_c00182{left:0.000000pt;}
.x5b_c00182{left:74.266667pt;}
.x1f_c00182{left:75.466667pt;}
.x3_c00182{left:77.066667pt;}
.x30_c00182{left:88.400000pt;}
.x64_c00182{left:90.400000pt;}
.x26_c00182{left:91.600000pt;}
.xa_c00182{left:92.666667pt;}
.x20_c00182{left:97.866667pt;}
.x87_c00182{left:105.066667pt;}
.x71_c00182{left:107.200000pt;}
.xb_c00182{left:108.133333pt;}
.x4b_c00182{left:109.200000pt;}
.x53_c00182{left:110.933333pt;}
.x1c_c00182{left:112.800000pt;}
.x8e_c00182{left:114.000000pt;}
.x4_c00182{left:115.466667pt;}
.x27_c00182{left:117.866667pt;}
.x8a_c00182{left:121.600000pt;}
.x79_c00182{left:123.066667pt;}
.x3f_c00182{left:124.400000pt;}
.x4e_c00182{left:126.933333pt;}
.x43_c00182{left:128.800000pt;}
.x2d_c00182{left:129.866667pt;}
.x61_c00182{left:132.400000pt;}
.x10_c00182{left:133.733333pt;}
.x5f_c00182{left:136.533333pt;}
.x6c_c00182{left:139.600000pt;}
.x3b_c00182{left:140.666667pt;}
.x47_c00182{left:143.866667pt;}
.x31_c00182{left:145.333333pt;}
.x65_c00182{left:147.066667pt;}
.x5_c00182{left:149.066667pt;}
.xc_c00182{left:150.000000pt;}
.x75_c00182{left:150.933333pt;}
.x3a_c00182{left:152.000000pt;}
.x5c_c00182{left:152.933333pt;}
.x66_c00182{left:154.800000pt;}
.x28_c00182{left:156.933333pt;}
.x1d_c00182{left:159.866667pt;}
.x32_c00182{left:162.933333pt;}
.x82_c00182{left:163.866667pt;}
.x29_c00182{left:164.933333pt;}
.x54_c00182{left:166.266667pt;}
.x7f_c00182{left:167.866667pt;}
.x67_c00182{left:170.533333pt;}
.x21_c00182{left:173.600000pt;}
.x7d_c00182{left:174.533333pt;}
.x1e_c00182{left:175.866667pt;}
.x69_c00182{left:177.066667pt;}
.x94_c00182{left:179.066667pt;}
.x33_c00182{left:182.400000pt;}
.x68_c00182{left:183.466667pt;}
.x11_c00182{left:187.200000pt;}
.xd_c00182{left:189.733333pt;}
.x6_c00182{left:191.600000pt;}
.x76_c00182{left:192.533333pt;}
.x6d_c00182{left:194.533333pt;}
.x48_c00182{left:195.733333pt;}
.x3c_c00182{left:197.333333pt;}
.x58_c00182{left:200.000000pt;}
.x55_c00182{left:201.733333pt;}
.x92_c00182{left:202.666667pt;}
.x3d_c00182{left:205.333333pt;}
.x17_c00182{left:207.466667pt;}
.x22_c00182{left:209.466667pt;}
.x8f_c00182{left:210.800000pt;}
.x6a_c00182{left:214.400000pt;}
.x4c_c00182{left:215.466667pt;}
.x72_c00182{left:217.333333pt;}
.x4f_c00182{left:219.333333pt;}
.x7_c00182{left:221.333333pt;}
.xe_c00182{left:223.066667pt;}
.x12_c00182{left:225.866667pt;}
.x2a_c00182{left:227.066667pt;}
.x81_c00182{left:228.000000pt;}
.x60_c00182{left:233.866667pt;}
.x7a_c00182{left:234.800000pt;}
.x56_c00182{left:236.666667pt;}
.x8b_c00182{left:238.666667pt;}
.x8d_c00182{left:240.000000pt;}
.x77_c00182{left:243.466667pt;}
.x40_c00182{left:244.400000pt;}
.x34_c00182{left:247.066667pt;}
.x8c_c00182{left:248.000000pt;}
.x13_c00182{left:248.933333pt;}
.x50_c00182{left:250.400000pt;}
.x86_c00182{left:251.466667pt;}
.x62_c00182{left:254.000000pt;}
.x35_c00182{left:255.733333pt;}
.x2b_c00182{left:257.200000pt;}
.x5d_c00182{left:258.133333pt;}
.x41_c00182{left:261.333333pt;}
.x18_c00182{left:264.133333pt;}
.x7b_c00182{left:266.133333pt;}
.x23_c00182{left:267.733333pt;}
.x90_c00182{left:268.800000pt;}
.x14_c00182{left:271.066667pt;}
.x36_c00182{left:272.000000pt;}
.x6e_c00182{left:274.266667pt;}
.x59_c00182{left:275.200000pt;}
.x44_c00182{left:280.133333pt;}
.x7c_c00182{left:281.200000pt;}
.x2e_c00182{left:282.266667pt;}
.x88_c00182{left:283.600000pt;}
.x37_c00182{left:285.066667pt;}
.x3e_c00182{left:286.000000pt;}
.x57_c00182{left:287.600000pt;}
.x4d_c00182{left:290.000000pt;}
.x1_c00182{left:291.466667pt;}
.x49_c00182{left:292.666667pt;}
.x6b_c00182{left:294.800000pt;}
.x2c_c00182{left:296.533333pt;}
.x51_c00182{left:298.133333pt;}
.x73_c00182{left:300.400000pt;}
.x8_c00182{left:303.600000pt;}
.x78_c00182{left:306.400000pt;}
.x19_c00182{left:307.600000pt;}
.x38_c00182{left:310.000000pt;}
.x5a_c00182{left:311.066667pt;}
.x42_c00182{left:312.533333pt;}
.x85_c00182{left:314.533333pt;}
.x80_c00182{left:316.266667pt;}
.x15_c00182{left:317.466667pt;}
.x74_c00182{left:319.600000pt;}
.x4a_c00182{left:321.466667pt;}
.x89_c00182{left:322.933333pt;}
.x1a_c00182{left:326.133333pt;}
.x5e_c00182{left:327.866667pt;}
.xf_c00182{left:328.933333pt;}
.x6f_c00182{left:330.800000pt;}
.x91_c00182{left:332.533333pt;}
.x45_c00182{left:333.866667pt;}
.x83_c00182{left:334.800000pt;}
.x9_c00182{left:337.200000pt;}
.x39_c00182{left:338.800000pt;}
.x52_c00182{left:340.666667pt;}
.x24_c00182{left:342.400000pt;}
.x46_c00182{left:348.000000pt;}
.x84_c00182{left:349.733333pt;}
.x2f_c00182{left:350.800000pt;}
.x7e_c00182{left:351.866667pt;}
.x70_c00182{left:352.933333pt;}
.x93_c00182{left:355.466667pt;}
.x1b_c00182{left:357.866667pt;}
.x25_c00182{left:359.066667pt;}
.x63_c00182{left:361.466667pt;}
.x16_c00182{left:363.600000pt;}
.x123_c00182{left:390.533333pt;}
.x118_c00182{left:391.733333pt;}
.xe3_c00182{left:393.333333pt;}
.xaa_c00182{left:394.533333pt;}
.x95_c00182{left:395.466667pt;}
.x124_c00182{left:399.200000pt;}
.xf6_c00182{left:404.933333pt;}
.x11f_c00182{left:406.000000pt;}
.x105_c00182{left:407.600000pt;}
.xe2_c00182{left:408.800000pt;}
.x9d_c00182{left:410.000000pt;}
.xa9_c00182{left:411.333333pt;}
.x117_c00182{left:421.466667pt;}
.x110_c00182{left:423.333333pt;}
.xf3_c00182{left:424.266667pt;}
.xc1_c00182{left:425.466667pt;}
.xe6_c00182{left:426.933333pt;}
.x11a_c00182{left:427.866667pt;}
.xcc_c00182{left:428.800000pt;}
.xda_c00182{left:433.333333pt;}
.x96_c00182{left:435.733333pt;}
.x112_c00182{left:436.666667pt;}
.xfe_c00182{left:437.866667pt;}
.x125_c00182{left:439.866667pt;}
.xd5_c00182{left:444.800000pt;}
.x11b_c00182{left:447.733333pt;}
.x9e_c00182{left:449.333333pt;}
.xab_c00182{left:450.533333pt;}
.xa4_c00182{left:454.533333pt;}
.xfa_c00182{left:456.266667pt;}
.xdb_c00182{left:458.000000pt;}
.xea_c00182{left:460.266667pt;}
.x10b_c00182{left:462.133333pt;}
.xac_c00182{left:463.066667pt;}
.xe4_c00182{left:466.000000pt;}
.xcd_c00182{left:466.933333pt;}
.xeb_c00182{left:468.800000pt;}
.x10e_c00182{left:470.400000pt;}
.xe7_c00182{left:471.733333pt;}
.xb4_c00182{left:473.600000pt;}
.x10d_c00182{left:474.666667pt;}
.xf0_c00182{left:475.866667pt;}
.x9f_c00182{left:477.866667pt;}
.xf4_c00182{left:479.333333pt;}
.xff_c00182{left:484.266667pt;}
.xad_c00182{left:485.733333pt;}
.x10c_c00182{left:487.066667pt;}
.xd6_c00182{left:488.000000pt;}
.xf1_c00182{left:489.333333pt;}
.xbb_c00182{left:491.333333pt;}
.xf7_c00182{left:494.133333pt;}
.x97_c00182{left:496.800000pt;}
.xc2_c00182{left:498.400000pt;}
.xc6_c00182{left:500.400000pt;}
.xde_c00182{left:502.666667pt;}
.x100_c00182{left:506.000000pt;}
.x106_c00182{left:507.333333pt;}
.x114_c00182{left:508.266667pt;}
.xe8_c00182{left:510.400000pt;}
.xb5_c00182{left:511.333333pt;}
.xae_c00182{left:512.666667pt;}
.xce_c00182{left:514.666667pt;}
.xdc_c00182{left:515.600000pt;}
.xfb_c00182{left:517.733333pt;}
.x109_c00182{left:518.933333pt;}
.x11c_c00182{left:520.000000pt;}
.xbc_c00182{left:521.466667pt;}
.xcf_c00182{left:524.000000pt;}
.xa5_c00182{left:525.200000pt;}
.xc3_c00182{left:527.200000pt;}
.xaf_c00182{left:528.666667pt;}
.x101_c00182{left:530.266667pt;}
.xd7_c00182{left:535.333333pt;}
.x98_c00182{left:537.066667pt;}
.xf2_c00182{left:538.266667pt;}
.xb0_c00182{left:540.800000pt;}
.xee_c00182{left:542.000000pt;}
.x119_c00182{left:544.133333pt;}
.xa0_c00182{left:546.666667pt;}
.xd0_c00182{left:548.666667pt;}
.xc7_c00182{left:550.000000pt;}
.xb6_c00182{left:552.266667pt;}
.xfd_c00182{left:554.533333pt;}
.xa1_c00182{left:555.600000pt;}
.xbd_c00182{left:558.533333pt;}
.x115_c00182{left:559.466667pt;}
.x102_c00182{left:561.600000pt;}
.xb7_c00182{left:563.733333pt;}
.xc8_c00182{left:566.000000pt;}
.xd1_c00182{left:567.200000pt;}
.xe5_c00182{left:568.400000pt;}
.xc4_c00182{left:569.466667pt;}
.xb1_c00182{left:570.533333pt;}
.xf5_c00182{left:572.400000pt;}
.x116_c00182{left:573.600000pt;}
.x99_c00182{left:574.533333pt;}
.xdf_c00182{left:575.600000pt;}
.x10f_c00182{left:577.333333pt;}
.xd8_c00182{left:578.533333pt;}
.xc9_c00182{left:580.400000pt;}
.xa6_c00182{left:582.533333pt;}
.xdd_c00182{left:584.133333pt;}
.xb2_c00182{left:586.266667pt;}
.xa2_c00182{left:587.333333pt;}
.x126_c00182{left:593.733333pt;}
.xbe_c00182{left:597.200000pt;}
.xe9_c00182{left:600.000000pt;}
.xa7_c00182{left:602.666667pt;}
.x107_c00182{left:603.600000pt;}
.x113_c00182{left:605.200000pt;}
.xf8_c00182{left:606.400000pt;}
.xb8_c00182{left:608.800000pt;}
.xd2_c00182{left:611.333333pt;}
.xd9_c00182{left:612.800000pt;}
.x103_c00182{left:616.666667pt;}
.xca_c00182{left:617.866667pt;}
.xa8_c00182{left:621.200000pt;}
.x122_c00182{left:622.266667pt;}
.xa3_c00182{left:625.066667pt;}
.xb9_c00182{left:631.200000pt;}
.xb3_c00182{left:633.333333pt;}
.x9a_c00182{left:636.266667pt;}
.xe0_c00182{left:637.600000pt;}
.xbf_c00182{left:640.133333pt;}
.x11d_c00182{left:641.866667pt;}
.xfc_c00182{left:647.066667pt;}
.xcb_c00182{left:648.266667pt;}
.x9b_c00182{left:650.933333pt;}
.x127_c00182{left:652.266667pt;}
.xc5_c00182{left:653.600000pt;}
.x121_c00182{left:656.533333pt;}
.xec_c00182{left:657.866667pt;}
.xf9_c00182{left:660.533333pt;}
.xd3_c00182{left:661.600000pt;}
.x120_c00182{left:664.000000pt;}
.xed_c00182{left:665.866667pt;}
.x111_c00182{left:668.666667pt;}
.x2_c00182{left:670.400000pt;}
.x10a_c00182{left:672.133333pt;}
.xc0_c00182{left:673.466667pt;}
.xd4_c00182{left:676.000000pt;}
.x108_c00182{left:677.600000pt;}
.xe1_c00182{left:679.866667pt;}
.xba_c00182{left:681.066667pt;}
.x9c_c00182{left:683.866667pt;}
.x11e_c00182{left:686.000000pt;}
.xef_c00182{left:689.333333pt;}
.x104_c00182{left:696.266667pt;}
}





/* 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_c00183 {
    display:none;
  }
  .loading-indicator_c00183.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00183 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_c00183 { 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_c00183" -> "#page-container .classname_c00183")
 */
.pf_c00183 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00183 { /* 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_c00183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00183 { /* 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_c00183 { /* 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_c00183 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00183 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00183 {overflow:visible;}
  }
}
.c_c00183 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00183 { /* 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_c00183:after { /* webkit #35443 */
  content: '';
}
.t_c00183:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00183 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 */
}
.__c00183 { /* 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_c00183 { /* info for Javascript */
  display:none;
}
.l_c00183 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00183 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00183 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00183: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_c00183 {
    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_c00183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00183.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_c00183 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00183;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.000000;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;}
.m48_c00183{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m73_c00183{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00183{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00183{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00183{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00183{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00183{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.med_c00183{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m35_c00183{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m85_c00183{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mab_c00183{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00183{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00183{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2_c00183{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me6_c00183{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00183{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00183{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m109_c00183{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m60_c00183{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m30_c00183{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00183{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m21_c00183{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00183{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00183{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00183{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m40_c00183{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m69_c00183{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m38_c00183{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00183{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m20_c00183{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00183{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m84_c00183{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mde_c00183{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m59_c00183{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.md6_c00183{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m67_c00183{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m28_c00183{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m55_c00183{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00183{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me2_c00183{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00183{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m29_c00183{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me8_c00183{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m19_c00183{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m11_c00183{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00183{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00183{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00183{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md9_c00183{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me0_c00183{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00183{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00183{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00183{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m100_c00183{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00183{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m71_c00183{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00183{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me1_c00183{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00183{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m39_c00183{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.meb_c00183{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00183{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4_c00183{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mea_c00183{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00183{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m22_c00183{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00183{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m77_c00183{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m13_c00183{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9_c00183{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00183{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00183{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m12_c00183{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m37_c00183{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00183{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00183{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00183{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mec_c00183{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m24_c00183{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00183{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m26_c00183{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m68_c00183{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8_c00183{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00183{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mb_c00183{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mff_c00183{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m88_c00183{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00183{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mda_c00183{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00183{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m76_c00183{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m108_c00183{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00183{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m25_c00183{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m95_c00183{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00183{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me5_c00183{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m89_c00183{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00183{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m91_c00183{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00183{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00183{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mf_c00183{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mac_c00183{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m92_c00183{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m7_c00183{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m57_c00183{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00183{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00183{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mad_c00183{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00183{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6_c00183{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m79_c00183{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m99_c00183{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00183{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m83_c00183{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m98_c00183{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00183{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00183{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m106_c00183{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m36_c00183{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m47_c00183{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00183{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m51_c00183{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mca_c00183{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m90_c00183{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00183{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md0_c00183{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00183{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m96_c00183{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m41_c00183{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00183{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00183{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00183{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m16_c00183{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m52_c00183{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00183{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00183{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00183{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00183{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m17_c00183{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m107_c00183{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.md1_c00183{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m86_c00183{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00183{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me4_c00183{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m66_c00183{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me3_c00183{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m10_c00183{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00183{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m15_c00183{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.maa_c00183{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m104_c00183{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00183{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00183{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m87_c00183{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m78_c00183{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00183{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m23_c00183{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00183{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mef_c00183{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m53_c00183{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m58_c00183{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00183{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00183{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m80_c00183{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md4_c00183{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00183{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00183{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md7_c00183{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00183{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m56_c00183{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3_c00183{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.maf_c00183{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m54_c00183{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5_c00183{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m42_c00183{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m32_c00183{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00183{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00183{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m101_c00183{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m82_c00183{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m97_c00183{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m27_c00183{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00183{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00183{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m72_c00183{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00183{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00183{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m105_c00183{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00183{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m62_c00183{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00183{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.md3_c00183{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00183{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m103_c00183{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00183{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00183{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m43_c00183{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00183{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00183{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00183{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00183{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m31_c00183{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma_c00183{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m64_c00183{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mce_c00183{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m14_c00183{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00183{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00183{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00183{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md5_c00183{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00183{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m50_c00183{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m34_c00183{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me9_c00183{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00183{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00183{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m102_c00183{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m93_c00183{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.md_c00183{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mae_c00183{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m65_c00183{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc_c00183{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00183{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00183{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md8_c00183{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m33_c00183{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m46_c00183{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00183{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00183{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m18_c00183{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m74_c00183{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00183{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00183{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md2_c00183{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m63_c00183{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00183{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00183{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00183{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m70_c00183{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m94_c00183{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00183{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m45_c00183{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00183{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mba_c00183{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m75_c00183{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.me7_c00183{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00183{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00183{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00183{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00183{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00183{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mee_c00183{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m81_c00183{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m49_c00183{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00183{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00183{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00183{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00183{transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);}
.m61_c00183{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00183{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m44_c00183{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls0_c00183{letter-spacing:0.000000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{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__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00183{word-spacing:-5.933020px;}
.ws4_c00183{word-spacing:-5.516129px;}
.ws5_c00183{word-spacing:-1.964960px;}
.ws9_c00183{word-spacing:-1.405498px;}
.wsa_c00183{word-spacing:-0.618725px;}
.wsc_c00183{word-spacing:0.000000px;}
.ws8_c00183{word-spacing:3.554140px;}
.ws6_c00183{word-spacing:3.636912px;}
.wsb_c00183{word-spacing:6.458515px;}
.ws0_c00183{word-spacing:15.000000px;}
.ws7_c00183{word-spacing:21.000000px;}
.ws1_c00183{word-spacing:158.750000px;}
.ws3_c00183{word-spacing:818.862385px;}
._0_c00183{width:48.125000px;}
.fc0_c00183{color:transparent;}
.fs4_c00183{font-size:48.000000px;}
.fs5_c00183{font-size:54.000000px;}
.fs2_c00183{font-size:60.000000px;}
.fs0_c00183{font-size:66.000000px;}
.fs3_c00183{font-size:72.000000px;}
.fs1_c00183{font-size:78.000000px;}
.y0_c00183{bottom:0.000000px;}
.y6b_c00183{bottom:166.350000px;}
.y38_c00183{bottom:180.450000px;}
.y6a_c00183{bottom:183.600000px;}
.y37_c00183{bottom:195.900000px;}
.y69_c00183{bottom:201.600000px;}
.y36_c00183{bottom:210.600000px;}
.y68_c00183{bottom:219.600000px;}
.y35_c00183{bottom:225.000000px;}
.y67_c00183{bottom:237.300000px;}
.y34_c00183{bottom:239.400000px;}
.y66_c00183{bottom:255.000000px;}
.y65_c00183{bottom:272.700000px;}
.y33_c00183{bottom:285.750000px;}
.y64_c00183{bottom:291.000000px;}
.y32_c00183{bottom:303.450000px;}
.y63_c00183{bottom:308.700000px;}
.y31_c00183{bottom:321.150000px;}
.y62_c00183{bottom:326.400000px;}
.y30_c00183{bottom:338.850000px;}
.y61_c00183{bottom:344.100000px;}
.y2f_c00183{bottom:356.850000px;}
.y60_c00183{bottom:362.100000px;}
.y2e_c00183{bottom:374.550000px;}
.y5f_c00183{bottom:379.800000px;}
.y2d_c00183{bottom:392.550000px;}
.y5e_c00183{bottom:406.800000px;}
.y2c_c00183{bottom:410.250000px;}
.y5d_c00183{bottom:424.500000px;}
.y2b_c00183{bottom:428.250000px;}
.y5c_c00183{bottom:442.500000px;}
.y2a_c00183{bottom:446.250000px;}
.y5b_c00183{bottom:460.500000px;}
.y29_c00183{bottom:464.250000px;}
.y28_c00183{bottom:482.250000px;}
.y5a_c00183{bottom:487.050000px;}
.y27_c00183{bottom:500.550000px;}
.y59_c00183{bottom:505.050000px;}
.y26_c00183{bottom:517.800000px;}
.y58_c00183{bottom:522.600000px;}
.y25_c00183{bottom:535.500000px;}
.y57_c00183{bottom:540.600000px;}
.y24_c00183{bottom:553.500000px;}
.y56_c00183{bottom:558.300000px;}
.y23_c00183{bottom:571.200000px;}
.y55_c00183{bottom:576.300000px;}
.y22_c00183{bottom:589.200000px;}
.y54_c00183{bottom:594.000000px;}
.y21_c00183{bottom:606.900000px;}
.y53_c00183{bottom:616.350000px;}
.y20_c00183{bottom:619.800000px;}
.y1f_c00183{bottom:624.900000px;}
.y52_c00183{bottom:634.650000px;}
.y1e_c00183{bottom:642.600000px;}
.y51_c00183{bottom:652.650000px;}
.y1d_c00183{bottom:660.600000px;}
.y50_c00183{bottom:670.350000px;}
.y1c_c00183{bottom:675.000000px;}
.y1b_c00183{bottom:678.600000px;}
.y4f_c00183{bottom:692.250000px;}
.y1a_c00183{bottom:699.150000px;}
.y4e_c00183{bottom:710.250000px;}
.y19_c00183{bottom:714.600000px;}
.y18_c00183{bottom:727.950000px;}
.y4d_c00183{bottom:731.850000px;}
.y17_c00183{bottom:742.350000px;}
.y4c_c00183{bottom:750.150000px;}
.y16_c00183{bottom:758.250000px;}
.y4b_c00183{bottom:767.850000px;}
.y15_c00183{bottom:771.150000px;}
.y14_c00183{bottom:784.800000px;}
.y4a_c00183{bottom:785.550000px;}
.y49_c00183{bottom:803.550000px;}
.y13_c00183{bottom:804.000000px;}
.y48_c00183{bottom:821.550000px;}
.y12_c00183{bottom:822.000000px;}
.y47_c00183{bottom:839.250000px;}
.y11_c00183{bottom:840.300000px;}
.y46_c00183{bottom:857.250000px;}
.y10_c00183{bottom:861.600000px;}
.y45_c00183{bottom:875.250000px;}
.yf_c00183{bottom:879.300000px;}
.y44_c00183{bottom:892.950000px;}
.ye_c00183{bottom:897.300000px;}
.y43_c00183{bottom:910.950000px;}
.yd_c00183{bottom:915.300000px;}
.y42_c00183{bottom:928.650000px;}
.yc_c00183{bottom:933.000000px;}
.y41_c00183{bottom:946.650000px;}
.yb_c00183{bottom:951.000000px;}
.y40_c00183{bottom:964.350000px;}
.ya_c00183{bottom:968.700000px;}
.y3f_c00183{bottom:982.350000px;}
.y9_c00183{bottom:986.700000px;}
.y3e_c00183{bottom:1000.350000px;}
.y8_c00183{bottom:1004.700000px;}
.y3d_c00183{bottom:1018.050000px;}
.y7_c00183{bottom:1026.750000px;}
.y3c_c00183{bottom:1040.250000px;}
.y6_c00183{bottom:1053.000000px;}
.y3b_c00183{bottom:1057.950000px;}
.y5_c00183{bottom:1075.350000px;}
.y3a_c00183{bottom:1076.250000px;}
.y4_c00183{bottom:1093.350000px;}
.y39_c00183{bottom:1093.950000px;}
.y3_c00183{bottom:1111.650000px;}
.y2_c00183{bottom:1138.350000px;}
.y1_c00183{bottom:1138.650000px;}
.h6_c00183{height:48.000000px;}
.h7_c00183{height:54.000000px;}
.h4_c00183{height:60.000000px;}
.h2_c00183{height:66.000000px;}
.h5_c00183{height:72.000000px;}
.h3_c00183{height:78.000000px;}
.h1_c00183{height:1269.000000px;}
.h0_c00183{height:1269.359985px;}
.w1_c00183{width:963.000000px;}
.w0_c00183{width:963.359985px;}
.x0_c00183{left:0.000000px;}
.x1_c00183{left:182.100000px;}
.x3_c00183{left:183.900000px;}
.xa6_c00183{left:185.100000px;}
.x72_c00183{left:194.250000px;}
.x5e_c00183{left:198.000000px;}
.x4_c00183{left:200.400000px;}
.x31_c00183{left:201.450000px;}
.x68_c00183{left:202.500000px;}
.x16_c00183{left:203.700000px;}
.xa7_c00183{left:209.250000px;}
.x58_c00183{left:213.300000px;}
.xa8_c00183{left:214.350000px;}
.x1d_c00183{left:218.850000px;}
.x9d_c00183{left:222.750000px;}
.x17_c00183{left:225.000000px;}
.x2a_c00183{left:227.100000px;}
.xc_c00183{left:228.300000px;}
.x42_c00183{left:229.650000px;}
.x88_c00183{left:234.150000px;}
.x59_c00183{left:235.200000px;}
.x12_c00183{left:236.700000px;}
.x4c_c00183{left:238.050000px;}
.x69_c00183{left:239.550000px;}
.x38_c00183{left:241.050000px;}
.x5_c00183{left:242.850000px;}
.x32_c00183{left:243.900000px;}
.x9b_c00183{left:246.000000px;}
.x81_c00183{left:248.250000px;}
.x89_c00183{left:249.600000px;}
.x13_c00183{left:252.300000px;}
.x97_c00183{left:254.700000px;}
.x4d_c00183{left:256.350000px;}
.x46_c00183{left:258.150000px;}
.x18_c00183{left:259.950000px;}
.x6_c00183{left:261.150000px;}
.x90_c00183{left:262.950000px;}
.x84_c00183{left:266.850000px;}
.x5a_c00183{left:267.900000px;}
.x6a_c00183{left:269.400000px;}
.x33_c00183{left:270.600000px;}
.x73_c00183{left:271.650000px;}
.x70_c00183{left:273.450000px;}
.x2b_c00183{left:274.500000px;}
.x5f_c00183{left:276.450000px;}
.x75_c00183{left:277.500000px;}
.x60_c00183{left:279.000000px;}
.x14_c00183{left:280.800000px;}
.x7_c00183{left:283.800000px;}
.x39_c00183{left:286.350000px;}
.x4e_c00183{left:289.050000px;}
.x47_c00183{left:290.550000px;}
.x8a_c00183{left:292.500000px;}
.x77_c00183{left:293.700000px;}
.x98_c00183{left:295.050000px;}
.x93_c00183{left:296.100000px;}
.x43_c00183{left:297.300000px;}
.x3d_c00183{left:299.700000px;}
.x66_c00183{left:301.650000px;}
.xd_c00183{left:303.150000px;}
.x41_c00183{left:304.350000px;}
.x52_c00183{left:305.700000px;}
.x95_c00183{left:307.050000px;}
.x1e_c00183{left:310.650000px;}
.xa3_c00183{left:311.700000px;}
.x34_c00183{left:313.050000px;}
.x15_c00183{left:316.050000px;}
.x3e_c00183{left:320.250000px;}
.x19_c00183{left:321.450000px;}
.x48_c00183{left:324.000000px;}
.x8e_c00183{left:325.050000px;}
.x53_c00183{left:326.250000px;}
.x3a_c00183{left:327.750000px;}
.x24_c00183{left:330.150000px;}
.x61_c00183{left:332.700000px;}
.x82_c00183{left:333.900000px;}
.x76_c00183{left:336.150000px;}
.x1f_c00183{left:337.650000px;}
.x2c_c00183{left:339.600000px;}
.x35_c00183{left:342.900000px;}
.xa4_c00183{left:345.600000px;}
.x3b_c00183{left:346.800000px;}
.x9c_c00183{left:348.300000px;}
.x83_c00183{left:349.350000px;}
.x7d_c00183{left:352.650000px;}
.x9f_c00183{left:354.900000px;}
.x8_c00183{left:356.850000px;}
.x6b_c00183{left:358.800000px;}
.x7c_c00183{left:360.600000px;}
.x78_c00183{left:362.100000px;}
.x5c_c00183{left:364.050000px;}
.x20_c00183{left:365.700000px;}
.x36_c00183{left:367.800000px;}
.xe_c00183{left:370.050000px;}
.x54_c00183{left:372.000000px;}
.x25_c00183{left:373.050000px;}
.x62_c00183{left:374.100000px;}
.x55_c00183{left:379.200000px;}
.x3f_c00183{left:380.400000px;}
.x3c_c00183{left:382.050000px;}
.x1a_c00183{left:384.150000px;}
.x67_c00183{left:386.250000px;}
.x2d_c00183{left:390.300000px;}
.x6c_c00183{left:391.500000px;}
.x21_c00183{left:392.700000px;}
.x63_c00183{left:394.200000px;}
.x1b_c00183{left:395.250000px;}
.x91_c00183{left:396.750000px;}
.x8b_c00183{left:399.000000px;}
.xf_c00183{left:402.450000px;}
.x26_c00183{left:409.050000px;}
.x64_c00183{left:410.100000px;}
.x6d_c00183{left:412.050000px;}
.x86_c00183{left:413.100000px;}
.x49_c00183{left:415.200000px;}
.x74_c00183{left:416.250000px;}
.xa0_c00183{left:417.450000px;}
.x7f_c00183{left:419.400000px;}
.x44_c00183{left:422.700000px;}
.x5d_c00183{left:425.850000px;}
.x2_c00183{left:427.200000px;}
.x9_c00183{left:428.850000px;}
.x56_c00183{left:430.200000px;}
.x2e_c00183{left:431.700000px;}
.x1c_c00183{left:432.750000px;}
.x92_c00183{left:433.800000px;}
.x79_c00183{left:435.150000px;}
.x65_c00183{left:436.350000px;}
.x22_c00183{left:437.400000px;}
.x4f_c00183{left:439.950000px;}
.x8c_c00183{left:444.000000px;}
.x27_c00183{left:445.050000px;}
.x7a_c00183{left:446.250000px;}
.x96_c00183{left:448.350000px;}
.x5b_c00183{left:449.400000px;}
.x10_c00183{left:450.750000px;}
.x37_c00183{left:452.400000px;}
.x9e_c00183{left:455.550000px;}
.x80_c00183{left:456.750000px;}
.xa_c00183{left:459.450000px;}
.xa5_c00183{left:460.800000px;}
.x4a_c00183{left:462.000000px;}
.xa1_c00183{left:465.750000px;}
.x99_c00183{left:468.600000px;}
.x50_c00183{left:470.850000px;}
.x85_c00183{left:471.900000px;}
.x28_c00183{left:473.100000px;}
.x7e_c00183{left:474.450000px;}
.x6e_c00183{left:475.800000px;}
.x45_c00183{left:477.000000px;}
.x57_c00183{left:478.350000px;}
.x87_c00183{left:479.700000px;}
.x2f_c00183{left:481.800000px;}
.x23_c00183{left:483.150000px;}
.xa9_c00183{left:485.100000px;}
.x8d_c00183{left:486.150000px;}
.x8f_c00183{left:487.800000px;}
.x11_c00183{left:489.300000px;}
.x6f_c00183{left:492.300000px;}
.x7b_c00183{left:493.500000px;}
.xb_c00183{left:495.450000px;}
.xa2_c00183{left:498.150000px;}
.x40_c00183{left:499.200000px;}
.x4b_c00183{left:500.850000px;}
.x51_c00183{left:504.750000px;}
.x71_c00183{left:505.950000px;}
.x29_c00183{left:507.600000px;}
.x9a_c00183{left:509.250000px;}
.x94_c00183{left:514.800000px;}
.x30_c00183{left:516.150000px;}
.x113_c00183{left:540.300000px;}
.xaa_c00183{left:556.500000px;}
.xec_c00183{left:557.550000px;}
.x109_c00183{left:558.900000px;}
.x141_c00183{left:559.950000px;}
.x110_c00183{left:573.150000px;}
.xc7_c00183{left:575.250000px;}
.xb8_c00183{left:577.050000px;}
.xb3_c00183{left:578.100000px;}
.xf4_c00183{left:579.750000px;}
.xff_c00183{left:581.400000px;}
.x11c_c00183{left:583.200000px;}
.x120_c00183{left:590.400000px;}
.x128_c00183{left:591.450000px;}
.x131_c00183{left:594.750000px;}
.xe2_c00183{left:595.950000px;}
.xed_c00183{left:597.900000px;}
.xf5_c00183{left:599.550000px;}
.x142_c00183{left:601.050000px;}
.xf9_c00183{left:603.450000px;}
.xdd_c00183{left:604.650000px;}
.xd4_c00183{left:606.900000px;}
.x121_c00183{left:609.150000px;}
.xab_c00183{left:610.500000px;}
.x10a_c00183{left:612.600000px;}
.x105_c00183{left:615.450000px;}
.xc2_c00183{left:616.650000px;}
.xf1_c00183{left:619.500000px;}
.xe3_c00183{left:620.850000px;}
.xac_c00183{left:622.800000px;}
.x13b_c00183{left:625.050000px;}
.x111_c00183{left:626.400000px;}
.xd5_c00183{left:627.750000px;}
.x125_c00183{left:629.400000px;}
.xc6_c00183{left:633.450000px;}
.xb9_c00183{left:634.950000px;}
.xb4_c00183{left:636.450000px;}
.xee_c00183{left:638.550000px;}
.xad_c00183{left:641.100000px;}
.xe4_c00183{left:642.450000px;}
.xf6_c00183{left:644.850000px;}
.x112_c00183{left:646.200000px;}
.x132_c00183{left:648.750000px;}
.xcd_c00183{left:649.950000px;}
.x122_c00183{left:651.600000px;}
.x12a_c00183{left:654.000000px;}
.xe7_c00183{left:660.450000px;}
.x135_c00183{left:661.950000px;}
.xd6_c00183{left:663.000000px;}
.xf2_c00183{left:664.500000px;}
.xef_c00183{left:665.850000px;}
.xce_c00183{left:667.200000px;}
.x11d_c00183{left:668.250000px;}
.xba_c00183{left:670.650000px;}
.x10b_c00183{left:673.800000px;}
.x13c_c00183{left:674.850000px;}
.xae_c00183{left:676.350000px;}
.xe5_c00183{left:677.700000px;}
.x106_c00183{left:679.200000px;}
.xfc_c00183{left:683.250000px;}
.x117_c00183{left:684.300000px;}
.x12c_c00183{left:685.800000px;}
.xf3_c00183{left:687.150000px;}
.x129_c00183{left:688.200000px;}
.x13e_c00183{left:690.000000px;}
.xbb_c00183{left:691.950000px;}
.xc8_c00183{left:693.600000px;}
.x12d_c00183{left:694.800000px;}
.xde_c00183{left:698.550000px;}
.xc3_c00183{left:699.750000px;}
.x136_c00183{left:700.800000px;}
.xaf_c00183{left:703.350000px;}
.x107_c00183{left:704.400000px;}
.x114_c00183{left:706.350000px;}
.x12f_c00183{left:709.050000px;}
.xf7_c00183{left:710.700000px;}
.xfa_c00183{left:711.750000px;}
.xc9_c00183{left:714.150000px;}
.x10e_c00183{left:715.500000px;}
.xd7_c00183{left:717.000000px;}
.xb5_c00183{left:718.950000px;}
.x108_c00183{left:720.600000px;}
.x11e_c00183{left:728.400000px;}
.x13f_c00183{left:729.600000px;}
.xcf_c00183{left:730.950000px;}
.xf0_c00183{left:732.450000px;}
.xbc_c00183{left:734.850000px;}
.xd8_c00183{left:737.100000px;}
.xb0_c00183{left:739.050000px;}
.x139_c00183{left:740.400000px;}
.xdf_c00183{left:742.500000px;}
.xbd_c00183{left:744.150000px;}
.x118_c00183{left:746.250000px;}
.x123_c00183{left:747.300000px;}
.x124_c00183{left:749.100000px;}
.x137_c00183{left:751.200000px;}
.xca_c00183{left:752.250000px;}
.x100_c00183{left:753.900000px;}
.xd0_c00183{left:756.150000px;}
.x102_c00183{left:757.500000px;}
.xe8_c00183{left:760.200000px;}
.x13d_c00183{left:764.850000px;}
.xbe_c00183{left:766.500000px;}
.xd9_c00183{left:768.000000px;}
.x140_c00183{left:769.500000px;}
.x103_c00183{left:771.150000px;}
.x10c_c00183{left:772.200000px;}
.x13a_c00183{left:773.550000px;}
.x119_c00183{left:775.050000px;}
.xd1_c00183{left:778.800000px;}
.xc4_c00183{left:780.750000px;}
.x134_c00183{left:782.700000px;}
.xda_c00183{left:785.250000px;}
.xcb_c00183{left:786.450000px;}
.xb1_c00183{left:787.950000px;}
.x12b_c00183{left:789.750000px;}
.xb6_c00183{left:792.750000px;}
.xfd_c00183{left:794.250000px;}
.xe0_c00183{left:795.750000px;}
.x126_c00183{left:796.950000px;}
.x10f_c00183{left:798.300000px;}
.x12e_c00183{left:800.250000px;}
.x104_c00183{left:801.450000px;}
.xe9_c00183{left:802.650000px;}
.xdb_c00183{left:804.750000px;}
.x143_c00183{left:806.100000px;}
.x101_c00183{left:807.150000px;}
.x11a_c00183{left:810.000000px;}
.x130_c00183{left:812.100000px;}
.xbf_c00183{left:813.300000px;}
.xea_c00183{left:814.500000px;}
.xfe_c00183{left:816.150000px;}
.xe1_c00183{left:822.750000px;}
.x10d_c00183{left:824.100000px;}
.xfb_c00183{left:826.500000px;}
.xd2_c00183{left:828.900000px;}
.xc0_c00183{left:832.350000px;}
.xf8_c00183{left:834.450000px;}
.x115_c00183{left:837.300000px;}
.xd3_c00183{left:839.400000px;}
.xe6_c00183{left:841.500000px;}
.xb2_c00183{left:842.700000px;}
.xdc_c00183{left:844.050000px;}
.x11b_c00183{left:845.250000px;}
.xb7_c00183{left:847.050000px;}
.x11f_c00183{left:848.250000px;}
.xc5_c00183{left:849.450000px;}
.xeb_c00183{left:853.050000px;}
.xc1_c00183{left:855.450000px;}
.x133_c00183{left:856.500000px;}
.x116_c00183{left:860.700000px;}
.x144_c00183{left:861.900000px;}
.x138_c00183{left:865.200000px;}
.x127_c00183{left:866.700000px;}
.xcc_c00183{left:871.350000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws2_c00183{word-spacing:-5.273796pt;}
.ws4_c00183{word-spacing:-4.903226pt;}
.ws5_c00183{word-spacing:-1.746631pt;}
.ws9_c00183{word-spacing:-1.249332pt;}
.wsa_c00183{word-spacing:-0.549977pt;}
.wsc_c00183{word-spacing:0.000000pt;}
.ws8_c00183{word-spacing:3.159236pt;}
.ws6_c00183{word-spacing:3.232811pt;}
.wsb_c00183{word-spacing:5.740902pt;}
.ws0_c00183{word-spacing:13.333333pt;}
.ws7_c00183{word-spacing:18.666667pt;}
.ws1_c00183{word-spacing:141.111111pt;}
.ws3_c00183{word-spacing:727.877676pt;}
._0_c00183{width:42.777778pt;}
.fs4_c00183{font-size:42.666667pt;}
.fs5_c00183{font-size:48.000000pt;}
.fs2_c00183{font-size:53.333333pt;}
.fs0_c00183{font-size:58.666667pt;}
.fs3_c00183{font-size:64.000000pt;}
.fs1_c00183{font-size:69.333333pt;}
.y0_c00183{bottom:0.000000pt;}
.y6b_c00183{bottom:147.866667pt;}
.y38_c00183{bottom:160.400000pt;}
.y6a_c00183{bottom:163.200000pt;}
.y37_c00183{bottom:174.133333pt;}
.y69_c00183{bottom:179.200000pt;}
.y36_c00183{bottom:187.200000pt;}
.y68_c00183{bottom:195.200000pt;}
.y35_c00183{bottom:200.000000pt;}
.y67_c00183{bottom:210.933333pt;}
.y34_c00183{bottom:212.800000pt;}
.y66_c00183{bottom:226.666667pt;}
.y65_c00183{bottom:242.400000pt;}
.y33_c00183{bottom:254.000000pt;}
.y64_c00183{bottom:258.666667pt;}
.y32_c00183{bottom:269.733333pt;}
.y63_c00183{bottom:274.400000pt;}
.y31_c00183{bottom:285.466667pt;}
.y62_c00183{bottom:290.133333pt;}
.y30_c00183{bottom:301.200000pt;}
.y61_c00183{bottom:305.866667pt;}
.y2f_c00183{bottom:317.200000pt;}
.y60_c00183{bottom:321.866667pt;}
.y2e_c00183{bottom:332.933333pt;}
.y5f_c00183{bottom:337.600000pt;}
.y2d_c00183{bottom:348.933333pt;}
.y5e_c00183{bottom:361.600000pt;}
.y2c_c00183{bottom:364.666667pt;}
.y5d_c00183{bottom:377.333333pt;}
.y2b_c00183{bottom:380.666667pt;}
.y5c_c00183{bottom:393.333333pt;}
.y2a_c00183{bottom:396.666667pt;}
.y5b_c00183{bottom:409.333333pt;}
.y29_c00183{bottom:412.666667pt;}
.y28_c00183{bottom:428.666667pt;}
.y5a_c00183{bottom:432.933333pt;}
.y27_c00183{bottom:444.933333pt;}
.y59_c00183{bottom:448.933333pt;}
.y26_c00183{bottom:460.266667pt;}
.y58_c00183{bottom:464.533333pt;}
.y25_c00183{bottom:476.000000pt;}
.y57_c00183{bottom:480.533333pt;}
.y24_c00183{bottom:492.000000pt;}
.y56_c00183{bottom:496.266667pt;}
.y23_c00183{bottom:507.733333pt;}
.y55_c00183{bottom:512.266667pt;}
.y22_c00183{bottom:523.733333pt;}
.y54_c00183{bottom:528.000000pt;}
.y21_c00183{bottom:539.466667pt;}
.y53_c00183{bottom:547.866667pt;}
.y20_c00183{bottom:550.933333pt;}
.y1f_c00183{bottom:555.466667pt;}
.y52_c00183{bottom:564.133333pt;}
.y1e_c00183{bottom:571.200000pt;}
.y51_c00183{bottom:580.133333pt;}
.y1d_c00183{bottom:587.200000pt;}
.y50_c00183{bottom:595.866667pt;}
.y1c_c00183{bottom:600.000000pt;}
.y1b_c00183{bottom:603.200000pt;}
.y4f_c00183{bottom:615.333333pt;}
.y1a_c00183{bottom:621.466667pt;}
.y4e_c00183{bottom:631.333333pt;}
.y19_c00183{bottom:635.200000pt;}
.y18_c00183{bottom:647.066667pt;}
.y4d_c00183{bottom:650.533333pt;}
.y17_c00183{bottom:659.866667pt;}
.y4c_c00183{bottom:666.800000pt;}
.y16_c00183{bottom:674.000000pt;}
.y4b_c00183{bottom:682.533333pt;}
.y15_c00183{bottom:685.466667pt;}
.y14_c00183{bottom:697.600000pt;}
.y4a_c00183{bottom:698.266667pt;}
.y49_c00183{bottom:714.266667pt;}
.y13_c00183{bottom:714.666667pt;}
.y48_c00183{bottom:730.266667pt;}
.y12_c00183{bottom:730.666667pt;}
.y47_c00183{bottom:746.000000pt;}
.y11_c00183{bottom:746.933333pt;}
.y46_c00183{bottom:762.000000pt;}
.y10_c00183{bottom:765.866667pt;}
.y45_c00183{bottom:778.000000pt;}
.yf_c00183{bottom:781.600000pt;}
.y44_c00183{bottom:793.733333pt;}
.ye_c00183{bottom:797.600000pt;}
.y43_c00183{bottom:809.733333pt;}
.yd_c00183{bottom:813.600000pt;}
.y42_c00183{bottom:825.466667pt;}
.yc_c00183{bottom:829.333333pt;}
.y41_c00183{bottom:841.466667pt;}
.yb_c00183{bottom:845.333333pt;}
.y40_c00183{bottom:857.200000pt;}
.ya_c00183{bottom:861.066667pt;}
.y3f_c00183{bottom:873.200000pt;}
.y9_c00183{bottom:877.066667pt;}
.y3e_c00183{bottom:889.200000pt;}
.y8_c00183{bottom:893.066667pt;}
.y3d_c00183{bottom:904.933333pt;}
.y7_c00183{bottom:912.666667pt;}
.y3c_c00183{bottom:924.666667pt;}
.y6_c00183{bottom:936.000000pt;}
.y3b_c00183{bottom:940.400000pt;}
.y5_c00183{bottom:955.866667pt;}
.y3a_c00183{bottom:956.666667pt;}
.y4_c00183{bottom:971.866667pt;}
.y39_c00183{bottom:972.400000pt;}
.y3_c00183{bottom:988.133333pt;}
.y2_c00183{bottom:1011.866667pt;}
.y1_c00183{bottom:1012.133333pt;}
.h6_c00183{height:42.666667pt;}
.h7_c00183{height:48.000000pt;}
.h4_c00183{height:53.333333pt;}
.h2_c00183{height:58.666667pt;}
.h5_c00183{height:64.000000pt;}
.h3_c00183{height:69.333333pt;}
.h1_c00183{height:1128.000000pt;}
.h0_c00183{height:1128.319987pt;}
.w1_c00183{width:856.000000pt;}
.w0_c00183{width:856.319987pt;}
.x0_c00183{left:0.000000pt;}
.x1_c00183{left:161.866667pt;}
.x3_c00183{left:163.466667pt;}
.xa6_c00183{left:164.533333pt;}
.x72_c00183{left:172.666667pt;}
.x5e_c00183{left:176.000000pt;}
.x4_c00183{left:178.133333pt;}
.x31_c00183{left:179.066667pt;}
.x68_c00183{left:180.000000pt;}
.x16_c00183{left:181.066667pt;}
.xa7_c00183{left:186.000000pt;}
.x58_c00183{left:189.600000pt;}
.xa8_c00183{left:190.533333pt;}
.x1d_c00183{left:194.533333pt;}
.x9d_c00183{left:198.000000pt;}
.x17_c00183{left:200.000000pt;}
.x2a_c00183{left:201.866667pt;}
.xc_c00183{left:202.933333pt;}
.x42_c00183{left:204.133333pt;}
.x88_c00183{left:208.133333pt;}
.x59_c00183{left:209.066667pt;}
.x12_c00183{left:210.400000pt;}
.x4c_c00183{left:211.600000pt;}
.x69_c00183{left:212.933333pt;}
.x38_c00183{left:214.266667pt;}
.x5_c00183{left:215.866667pt;}
.x32_c00183{left:216.800000pt;}
.x9b_c00183{left:218.666667pt;}
.x81_c00183{left:220.666667pt;}
.x89_c00183{left:221.866667pt;}
.x13_c00183{left:224.266667pt;}
.x97_c00183{left:226.400000pt;}
.x4d_c00183{left:227.866667pt;}
.x46_c00183{left:229.466667pt;}
.x18_c00183{left:231.066667pt;}
.x6_c00183{left:232.133333pt;}
.x90_c00183{left:233.733333pt;}
.x84_c00183{left:237.200000pt;}
.x5a_c00183{left:238.133333pt;}
.x6a_c00183{left:239.466667pt;}
.x33_c00183{left:240.533333pt;}
.x73_c00183{left:241.466667pt;}
.x70_c00183{left:243.066667pt;}
.x2b_c00183{left:244.000000pt;}
.x5f_c00183{left:245.733333pt;}
.x75_c00183{left:246.666667pt;}
.x60_c00183{left:248.000000pt;}
.x14_c00183{left:249.600000pt;}
.x7_c00183{left:252.266667pt;}
.x39_c00183{left:254.533333pt;}
.x4e_c00183{left:256.933333pt;}
.x47_c00183{left:258.266667pt;}
.x8a_c00183{left:260.000000pt;}
.x77_c00183{left:261.066667pt;}
.x98_c00183{left:262.266667pt;}
.x93_c00183{left:263.200000pt;}
.x43_c00183{left:264.266667pt;}
.x3d_c00183{left:266.400000pt;}
.x66_c00183{left:268.133333pt;}
.xd_c00183{left:269.466667pt;}
.x41_c00183{left:270.533333pt;}
.x52_c00183{left:271.733333pt;}
.x95_c00183{left:272.933333pt;}
.x1e_c00183{left:276.133333pt;}
.xa3_c00183{left:277.066667pt;}
.x34_c00183{left:278.266667pt;}
.x15_c00183{left:280.933333pt;}
.x3e_c00183{left:284.666667pt;}
.x19_c00183{left:285.733333pt;}
.x48_c00183{left:288.000000pt;}
.x8e_c00183{left:288.933333pt;}
.x53_c00183{left:290.000000pt;}
.x3a_c00183{left:291.333333pt;}
.x24_c00183{left:293.466667pt;}
.x61_c00183{left:295.733333pt;}
.x82_c00183{left:296.800000pt;}
.x76_c00183{left:298.800000pt;}
.x1f_c00183{left:300.133333pt;}
.x2c_c00183{left:301.866667pt;}
.x35_c00183{left:304.800000pt;}
.xa4_c00183{left:307.200000pt;}
.x3b_c00183{left:308.266667pt;}
.x9c_c00183{left:309.600000pt;}
.x83_c00183{left:310.533333pt;}
.x7d_c00183{left:313.466667pt;}
.x9f_c00183{left:315.466667pt;}
.x8_c00183{left:317.200000pt;}
.x6b_c00183{left:318.933333pt;}
.x7c_c00183{left:320.533333pt;}
.x78_c00183{left:321.866667pt;}
.x5c_c00183{left:323.600000pt;}
.x20_c00183{left:325.066667pt;}
.x36_c00183{left:326.933333pt;}
.xe_c00183{left:328.933333pt;}
.x54_c00183{left:330.666667pt;}
.x25_c00183{left:331.600000pt;}
.x62_c00183{left:332.533333pt;}
.x55_c00183{left:337.066667pt;}
.x3f_c00183{left:338.133333pt;}
.x3c_c00183{left:339.600000pt;}
.x1a_c00183{left:341.466667pt;}
.x67_c00183{left:343.333333pt;}
.x2d_c00183{left:346.933333pt;}
.x6c_c00183{left:348.000000pt;}
.x21_c00183{left:349.066667pt;}
.x63_c00183{left:350.400000pt;}
.x1b_c00183{left:351.333333pt;}
.x91_c00183{left:352.666667pt;}
.x8b_c00183{left:354.666667pt;}
.xf_c00183{left:357.733333pt;}
.x26_c00183{left:363.600000pt;}
.x64_c00183{left:364.533333pt;}
.x6d_c00183{left:366.266667pt;}
.x86_c00183{left:367.200000pt;}
.x49_c00183{left:369.066667pt;}
.x74_c00183{left:370.000000pt;}
.xa0_c00183{left:371.066667pt;}
.x7f_c00183{left:372.800000pt;}
.x44_c00183{left:375.733333pt;}
.x5d_c00183{left:378.533333pt;}
.x2_c00183{left:379.733333pt;}
.x9_c00183{left:381.200000pt;}
.x56_c00183{left:382.400000pt;}
.x2e_c00183{left:383.733333pt;}
.x1c_c00183{left:384.666667pt;}
.x92_c00183{left:385.600000pt;}
.x79_c00183{left:386.800000pt;}
.x65_c00183{left:387.866667pt;}
.x22_c00183{left:388.800000pt;}
.x4f_c00183{left:391.066667pt;}
.x8c_c00183{left:394.666667pt;}
.x27_c00183{left:395.600000pt;}
.x7a_c00183{left:396.666667pt;}
.x96_c00183{left:398.533333pt;}
.x5b_c00183{left:399.466667pt;}
.x10_c00183{left:400.666667pt;}
.x37_c00183{left:402.133333pt;}
.x9e_c00183{left:404.933333pt;}
.x80_c00183{left:406.000000pt;}
.xa_c00183{left:408.400000pt;}
.xa5_c00183{left:409.600000pt;}
.x4a_c00183{left:410.666667pt;}
.xa1_c00183{left:414.000000pt;}
.x99_c00183{left:416.533333pt;}
.x50_c00183{left:418.533333pt;}
.x85_c00183{left:419.466667pt;}
.x28_c00183{left:420.533333pt;}
.x7e_c00183{left:421.733333pt;}
.x6e_c00183{left:422.933333pt;}
.x45_c00183{left:424.000000pt;}
.x57_c00183{left:425.200000pt;}
.x87_c00183{left:426.400000pt;}
.x2f_c00183{left:428.266667pt;}
.x23_c00183{left:429.466667pt;}
.xa9_c00183{left:431.200000pt;}
.x8d_c00183{left:432.133333pt;}
.x8f_c00183{left:433.600000pt;}
.x11_c00183{left:434.933333pt;}
.x6f_c00183{left:437.600000pt;}
.x7b_c00183{left:438.666667pt;}
.xb_c00183{left:440.400000pt;}
.xa2_c00183{left:442.800000pt;}
.x40_c00183{left:443.733333pt;}
.x4b_c00183{left:445.200000pt;}
.x51_c00183{left:448.666667pt;}
.x71_c00183{left:449.733333pt;}
.x29_c00183{left:451.200000pt;}
.x9a_c00183{left:452.666667pt;}
.x94_c00183{left:457.600000pt;}
.x30_c00183{left:458.800000pt;}
.x113_c00183{left:480.266667pt;}
.xaa_c00183{left:494.666667pt;}
.xec_c00183{left:495.600000pt;}
.x109_c00183{left:496.800000pt;}
.x141_c00183{left:497.733333pt;}
.x110_c00183{left:509.466667pt;}
.xc7_c00183{left:511.333333pt;}
.xb8_c00183{left:512.933333pt;}
.xb3_c00183{left:513.866667pt;}
.xf4_c00183{left:515.333333pt;}
.xff_c00183{left:516.800000pt;}
.x11c_c00183{left:518.400000pt;}
.x120_c00183{left:524.800000pt;}
.x128_c00183{left:525.733333pt;}
.x131_c00183{left:528.666667pt;}
.xe2_c00183{left:529.733333pt;}
.xed_c00183{left:531.466667pt;}
.xf5_c00183{left:532.933333pt;}
.x142_c00183{left:534.266667pt;}
.xf9_c00183{left:536.400000pt;}
.xdd_c00183{left:537.466667pt;}
.xd4_c00183{left:539.466667pt;}
.x121_c00183{left:541.466667pt;}
.xab_c00183{left:542.666667pt;}
.x10a_c00183{left:544.533333pt;}
.x105_c00183{left:547.066667pt;}
.xc2_c00183{left:548.133333pt;}
.xf1_c00183{left:550.666667pt;}
.xe3_c00183{left:551.866667pt;}
.xac_c00183{left:553.600000pt;}
.x13b_c00183{left:555.600000pt;}
.x111_c00183{left:556.800000pt;}
.xd5_c00183{left:558.000000pt;}
.x125_c00183{left:559.466667pt;}
.xc6_c00183{left:563.066667pt;}
.xb9_c00183{left:564.400000pt;}
.xb4_c00183{left:565.733333pt;}
.xee_c00183{left:567.600000pt;}
.xad_c00183{left:569.866667pt;}
.xe4_c00183{left:571.066667pt;}
.xf6_c00183{left:573.200000pt;}
.x112_c00183{left:574.400000pt;}
.x132_c00183{left:576.666667pt;}
.xcd_c00183{left:577.733333pt;}
.x122_c00183{left:579.200000pt;}
.x12a_c00183{left:581.333333pt;}
.xe7_c00183{left:587.066667pt;}
.x135_c00183{left:588.400000pt;}
.xd6_c00183{left:589.333333pt;}
.xf2_c00183{left:590.666667pt;}
.xef_c00183{left:591.866667pt;}
.xce_c00183{left:593.066667pt;}
.x11d_c00183{left:594.000000pt;}
.xba_c00183{left:596.133333pt;}
.x10b_c00183{left:598.933333pt;}
.x13c_c00183{left:599.866667pt;}
.xae_c00183{left:601.200000pt;}
.xe5_c00183{left:602.400000pt;}
.x106_c00183{left:603.733333pt;}
.xfc_c00183{left:607.333333pt;}
.x117_c00183{left:608.266667pt;}
.x12c_c00183{left:609.600000pt;}
.xf3_c00183{left:610.800000pt;}
.x129_c00183{left:611.733333pt;}
.x13e_c00183{left:613.333333pt;}
.xbb_c00183{left:615.066667pt;}
.xc8_c00183{left:616.533333pt;}
.x12d_c00183{left:617.600000pt;}
.xde_c00183{left:620.933333pt;}
.xc3_c00183{left:622.000000pt;}
.x136_c00183{left:622.933333pt;}
.xaf_c00183{left:625.200000pt;}
.x107_c00183{left:626.133333pt;}
.x114_c00183{left:627.866667pt;}
.x12f_c00183{left:630.266667pt;}
.xf7_c00183{left:631.733333pt;}
.xfa_c00183{left:632.666667pt;}
.xc9_c00183{left:634.800000pt;}
.x10e_c00183{left:636.000000pt;}
.xd7_c00183{left:637.333333pt;}
.xb5_c00183{left:639.066667pt;}
.x108_c00183{left:640.533333pt;}
.x11e_c00183{left:647.466667pt;}
.x13f_c00183{left:648.533333pt;}
.xcf_c00183{left:649.733333pt;}
.xf0_c00183{left:651.066667pt;}
.xbc_c00183{left:653.200000pt;}
.xd8_c00183{left:655.200000pt;}
.xb0_c00183{left:656.933333pt;}
.x139_c00183{left:658.133333pt;}
.xdf_c00183{left:660.000000pt;}
.xbd_c00183{left:661.466667pt;}
.x118_c00183{left:663.333333pt;}
.x123_c00183{left:664.266667pt;}
.x124_c00183{left:665.866667pt;}
.x137_c00183{left:667.733333pt;}
.xca_c00183{left:668.666667pt;}
.x100_c00183{left:670.133333pt;}
.xd0_c00183{left:672.133333pt;}
.x102_c00183{left:673.333333pt;}
.xe8_c00183{left:675.733333pt;}
.x13d_c00183{left:679.866667pt;}
.xbe_c00183{left:681.333333pt;}
.xd9_c00183{left:682.666667pt;}
.x140_c00183{left:684.000000pt;}
.x103_c00183{left:685.466667pt;}
.x10c_c00183{left:686.400000pt;}
.x13a_c00183{left:687.600000pt;}
.x119_c00183{left:688.933333pt;}
.xd1_c00183{left:692.266667pt;}
.xc4_c00183{left:694.000000pt;}
.x134_c00183{left:695.733333pt;}
.xda_c00183{left:698.000000pt;}
.xcb_c00183{left:699.066667pt;}
.xb1_c00183{left:700.400000pt;}
.x12b_c00183{left:702.000000pt;}
.xb6_c00183{left:704.666667pt;}
.xfd_c00183{left:706.000000pt;}
.xe0_c00183{left:707.333333pt;}
.x126_c00183{left:708.400000pt;}
.x10f_c00183{left:709.600000pt;}
.x12e_c00183{left:711.333333pt;}
.x104_c00183{left:712.400000pt;}
.xe9_c00183{left:713.466667pt;}
.xdb_c00183{left:715.333333pt;}
.x143_c00183{left:716.533333pt;}
.x101_c00183{left:717.466667pt;}
.x11a_c00183{left:720.000000pt;}
.x130_c00183{left:721.866667pt;}
.xbf_c00183{left:722.933333pt;}
.xea_c00183{left:724.000000pt;}
.xfe_c00183{left:725.466667pt;}
.xe1_c00183{left:731.333333pt;}
.x10d_c00183{left:732.533333pt;}
.xfb_c00183{left:734.666667pt;}
.xd2_c00183{left:736.800000pt;}
.xc0_c00183{left:739.866667pt;}
.xf8_c00183{left:741.733333pt;}
.x115_c00183{left:744.266667pt;}
.xd3_c00183{left:746.133333pt;}
.xe6_c00183{left:748.000000pt;}
.xb2_c00183{left:749.066667pt;}
.xdc_c00183{left:750.266667pt;}
.x11b_c00183{left:751.333333pt;}
.xb7_c00183{left:752.933333pt;}
.x11f_c00183{left:754.000000pt;}
.xc5_c00183{left:755.066667pt;}
.xeb_c00183{left:758.266667pt;}
.xc1_c00183{left:760.400000pt;}
.x133_c00183{left:761.333333pt;}
.x116_c00183{left:765.066667pt;}
.x144_c00183{left:766.133333pt;}
.x138_c00183{left:769.066667pt;}
.x127_c00183{left:770.400000pt;}
.xcc_c00183{left:774.533333pt;}
}





/* 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_c00184 {
    display:none;
  }
  .loading-indicator_c00184.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00184 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_c00184 { 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_c00184" -> "#page-container .classname_c00184")
 */
.pf_c00184 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00184 { /* 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_c00184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00184 { /* 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_c00184 { /* 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_c00184 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00184 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00184 {overflow:visible;}
  }
}
.c_c00184 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00184 { /* 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_c00184:after { /* webkit #35443 */
  content: '';
}
.t_c00184:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00184 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 */
}
.__c00184 { /* 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_c00184 { /* info for Javascript */
  display:none;
}
.l_c00184 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00184 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00184 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00184: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_c00184 {
    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_c00184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00184.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_c00184 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00184;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.000000;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;}
.mf1_c00184{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00184{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00184{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m67_c00184{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00184{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m44_c00184{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m66_c00184{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m99_c00184{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m37_c00184{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00184{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00184{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9_c00184{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00184{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m63_c00184{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00184{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00184{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m24_c00184{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00184{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.md9_c00184{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00184{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m17_c00184{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m56_c00184{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00184{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00184{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m55_c00184{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me0_c00184{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m98_c00184{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m89_c00184{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00184{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00184{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00184{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00184{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m69_c00184{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00184{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m2_c00184{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m10_c00184{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md8_c00184{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00184{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00184{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me7_c00184{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mba_c00184{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m7_c00184{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma_c00184{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00184{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m103_c00184{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m116_c00184{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00184{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m29_c00184{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00184{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00184{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m110_c00184{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m70_c00184{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00184{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me3_c00184{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m57_c00184{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00184{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00184{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00184{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00184{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m21_c00184{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m41_c00184{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m40_c00184{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00184{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m8_c00184{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m94_c00184{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00184{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m46_c00184{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00184{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m45_c00184{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m104_c00184{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m14_c00184{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me5_c00184{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m97_c00184{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m19_c00184{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00184{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.md1_c00184{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m53_c00184{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m101_c00184{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00184{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mad_c00184{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m18_c00184{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00184{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00184{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00184{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00184{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00184{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mae_c00184{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00184{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m112_c00184{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00184{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m13_c00184{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m108_c00184{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00184{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00184{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m88_c00184{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00184{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00184{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00184{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00184{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md2_c00184{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m34_c00184{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00184{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00184{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.me_c00184{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m74_c00184{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m4_c00184{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00184{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m25_c00184{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00184{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m58_c00184{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.meb_c00184{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00184{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00184{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mff_c00184{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m96_c00184{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00184{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m106_c00184{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m72_c00184{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m20_c00184{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m73_c00184{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.maa_c00184{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.md5_c00184{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m100_c00184{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00184{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m61_c00184{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m28_c00184{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m86_c00184{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00184{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m64_c00184{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00184{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m68_c00184{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3_c00184{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m77_c00184{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00184{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m81_c00184{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5_c00184{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00184{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.maf_c00184{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00184{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m83_c00184{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m12_c00184{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m109_c00184{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m6_c00184{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m65_c00184{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00184{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m111_c00184{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m84_c00184{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00184{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m76_c00184{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00184{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m30_c00184{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00184{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00184{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m22_c00184{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m71_c00184{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00184{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md7_c00184{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00184{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m23_c00184{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m11_c00184{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mde_c00184{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m16_c00184{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m80_c00184{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m95_c00184{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00184{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00184{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00184{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00184{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb_c00184{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00184{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m35_c00184{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00184{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00184{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00184{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md3_c00184{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mea_c00184{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00184{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m113_c00184{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m50_c00184{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00184{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.md_c00184{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00184{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00184{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md6_c00184{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00184{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m62_c00184{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00184{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00184{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00184{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m54_c00184{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf_c00184{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00184{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00184{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m115_c00184{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m93_c00184{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m75_c00184{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m85_c00184{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00184{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00184{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00184{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m39_c00184{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m59_c00184{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me2_c00184{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m82_c00184{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mab_c00184{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00184{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mca_c00184{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m90_c00184{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mec_c00184{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m32_c00184{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00184{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m102_c00184{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00184{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc_c00184{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m79_c00184{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m87_c00184{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m15_c00184{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00184{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mce_c00184{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00184{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m47_c00184{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00184{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m49_c00184{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m36_c00184{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m27_c00184{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m91_c00184{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mac_c00184{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m107_c00184{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00184{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m43_c00184{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m33_c00184{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00184{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00184{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md4_c00184{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00184{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m92_c00184{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m48_c00184{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m51_c00184{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00184{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m114_c00184{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me4_c00184{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.med_c00184{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00184{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m52_c00184{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m31_c00184{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mda_c00184{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00184{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00184{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m42_c00184{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00184{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mef_c00184{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00184{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.md0_c00184{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00184{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m105_c00184{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00184{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00184{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me1_c00184{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00184{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m26_c00184{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mee_c00184{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m38_c00184{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00184{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.me9_c00184{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.me6_c00184{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00184{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00184{transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);}
.m117_c00184{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m78_c00184{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.me8_c00184{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00184{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m60_c00184{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00184{transform:matrix(0.457250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00184{transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00184{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00184{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00184{transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00184{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls0_c00184{letter-spacing:0.000000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{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__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00184{word-spacing:-8.329897px;}
.ws7_c00184{word-spacing:-5.194805px;}
.wsa_c00184{word-spacing:0.000000px;}
.ws8_c00184{word-spacing:8.333333px;}
.ws0_c00184{word-spacing:20.312500px;}
.ws3_c00184{word-spacing:22.142857px;}
.ws5_c00184{word-spacing:25.714286px;}
.ws4_c00184{word-spacing:29.285714px;}
.ws6_c00184{word-spacing:61.250000px;}
.ws2_c00184{word-spacing:62.683119px;}
.ws1_c00184{word-spacing:66.315789px;}
.fc0_c00184{color:transparent;}
.fs6_c00184{font-size:30.000000px;}
.fs7_c00184{font-size:42.000000px;}
.fs4_c00184{font-size:54.000000px;}
.fs5_c00184{font-size:60.000000px;}
.fs3_c00184{font-size:66.000000px;}
.fs2_c00184{font-size:72.000000px;}
.fs0_c00184{font-size:78.000000px;}
.fs1_c00184{font-size:84.000000px;}
.y0_c00184{bottom:0.000000px;}
.y64_c00184{bottom:174.600000px;}
.y38_c00184{bottom:186.750000px;}
.y63_c00184{bottom:192.600000px;}
.y37_c00184{bottom:202.200000px;}
.y62_c00184{bottom:213.450000px;}
.y36_c00184{bottom:216.300000px;}
.y35_c00184{bottom:230.550000px;}
.y61_c00184{bottom:236.100000px;}
.y34_c00184{bottom:245.250000px;}
.y60_c00184{bottom:257.850000px;}
.y33_c00184{bottom:259.950000px;}
.y32_c00184{bottom:274.350000px;}
.y5f_c00184{bottom:276.900000px;}
.y31_c00184{bottom:288.000000px;}
.y5e_c00184{bottom:298.800000px;}
.y30_c00184{bottom:303.150000px;}
.y2f_c00184{bottom:316.800000px;}
.y2e_c00184{bottom:331.200000px;}
.y5d_c00184{bottom:338.700000px;}
.y2d_c00184{bottom:345.900000px;}
.y5c_c00184{bottom:360.600000px;}
.y5b_c00184{bottom:381.900000px;}
.y2c_c00184{bottom:394.950000px;}
.y5a_c00184{bottom:399.900000px;}
.y2b_c00184{bottom:412.800000px;}
.y59_c00184{bottom:421.500000px;}
.y2a_c00184{bottom:430.800000px;}
.y58_c00184{bottom:440.250000px;}
.y29_c00184{bottom:448.500000px;}
.y57_c00184{bottom:461.850000px;}
.y28_c00184{bottom:466.500000px;}
.y56_c00184{bottom:483.900000px;}
.y27_c00184{bottom:484.500000px;}
.y26_c00184{bottom:502.200000px;}
.y25_c00184{bottom:520.200000px;}
.y24_c00184{bottom:538.200000px;}
.y23_c00184{bottom:555.900000px;}
.y22_c00184{bottom:573.900000px;}
.y55_c00184{bottom:595.800000px;}
.y21_c00184{bottom:596.100000px;}
.y20_c00184{bottom:610.200000px;}
.y54_c00184{bottom:613.800000px;}
.y1f_c00184{bottom:624.300000px;}
.y53_c00184{bottom:631.500000px;}
.y1e_c00184{bottom:637.200000px;}
.y1d_c00184{bottom:653.100000px;}
.y52_c00184{bottom:653.400000px;}
.y1c_c00184{bottom:666.000000px;}
.y51_c00184{bottom:680.400000px;}
.y1b_c00184{bottom:681.450000px;}
.y50_c00184{bottom:689.850000px;}
.y1a_c00184{bottom:694.350000px;}
.y4f_c00184{bottom:703.200000px;}
.y4e_c00184{bottom:705.300000px;}
.y4d_c00184{bottom:706.050000px;}
.y19_c00184{bottom:710.250000px;}
.y4c_c00184{bottom:711.750000px;}
.y18_c00184{bottom:723.300000px;}
.y17_c00184{bottom:738.750000px;}
.y4b_c00184{bottom:741.900000px;}
.y16_c00184{bottom:753.150000px;}
.y4a_c00184{bottom:764.250000px;}
.y15_c00184{bottom:767.850000px;}
.y14_c00184{bottom:782.250000px;}
.y49_c00184{bottom:786.600000px;}
.y13_c00184{bottom:799.950000px;}
.y12_c00184{bottom:818.250000px;}
.y48_c00184{bottom:821.850000px;}
.y11_c00184{bottom:836.250000px;}
.y10_c00184{bottom:853.950000px;}
.y47_c00184{bottom:856.800000px;}
.y46_c00184{bottom:874.800000px;}
.yf_c00184{bottom:879.450000px;}
.y45_c00184{bottom:897.000000px;}
.ye_c00184{bottom:897.750000px;}
.y44_c00184{bottom:914.700000px;}
.yd_c00184{bottom:915.750000px;}
.y43_c00184{bottom:932.700000px;}
.yc_c00184{bottom:933.450000px;}
.y42_c00184{bottom:950.400000px;}
.yb_c00184{bottom:951.450000px;}
.y41_c00184{bottom:968.400000px;}
.ya_c00184{bottom:973.050000px;}
.y40_c00184{bottom:990.300000px;}
.y9_c00184{bottom:990.750000px;}
.y3f_c00184{bottom:1008.300000px;}
.y8_c00184{bottom:1021.350000px;}
.y3e_c00184{bottom:1026.300000px;}
.y7_c00184{bottom:1039.350000px;}
.y3d_c00184{bottom:1044.000000px;}
.y6_c00184{bottom:1057.350000px;}
.y3c_c00184{bottom:1062.000000px;}
.y5_c00184{bottom:1079.700000px;}
.y3b_c00184{bottom:1080.000000px;}
.y4_c00184{bottom:1097.700000px;}
.y3_c00184{bottom:1115.700000px;}
.y2_c00184{bottom:1141.650000px;}
.y1_c00184{bottom:1141.950000px;}
.y39_c00184{bottom:1269.300000px;}
.y3a_c00184{bottom:1270.800000px;}
.h8_c00184{height:30.000000px;}
.h9_c00184{height:42.000000px;}
.h6_c00184{height:54.000000px;}
.h7_c00184{height:60.000000px;}
.h5_c00184{height:66.000000px;}
.h4_c00184{height:72.000000px;}
.h2_c00184{height:78.000000px;}
.h3_c00184{height:84.000000px;}
.h1_c00184{height:1272.000000px;}
.h0_c00184{height:1272.239960px;}
.w1_c00184{width:963.000000px;}
.w0_c00184{width:963.359985px;}
.x0_c00184{left:0.000000px;}
.x4c_c00184{left:81.300000px;}
.x16_c00184{left:87.900000px;}
.x27_c00184{left:88.950000px;}
.x74_c00184{left:93.600000px;}
.x99_c00184{left:95.100000px;}
.xa2_c00184{left:96.600000px;}
.x3_c00184{left:105.150000px;}
.x10_c00184{left:106.500000px;}
.x2d_c00184{left:107.550000px;}
.x82_c00184{left:110.700000px;}
.x78_c00184{left:112.050000px;}
.x55_c00184{left:118.800000px;}
.x59_c00184{left:120.150000px;}
.x6e_c00184{left:121.200000px;}
.x9_c00184{left:123.450000px;}
.x2f_c00184{left:125.250000px;}
.x4_c00184{left:132.450000px;}
.x28_c00184{left:135.000000px;}
.xa_c00184{left:137.550000px;}
.x20_c00184{left:138.750000px;}
.x69_c00184{left:139.950000px;}
.x57_c00184{left:141.450000px;}
.x64_c00184{left:142.950000px;}
.x7c_c00184{left:144.300000px;}
.x38_c00184{left:145.800000px;}
.x49_c00184{left:147.450000px;}
.x26_c00184{left:148.650000px;}
.x91_c00184{left:150.450000px;}
.x4d_c00184{left:151.800000px;}
.x8d_c00184{left:153.750000px;}
.x39_c00184{left:154.800000px;}
.x17_c00184{left:158.850000px;}
.x3d_c00184{left:161.100000px;}
.x79_c00184{left:164.400000px;}
.xb_c00184{left:166.050000px;}
.x4a_c00184{left:168.000000px;}
.x9e_c00184{left:169.050000px;}
.x30_c00184{left:170.250000px;}
.x93_c00184{left:171.600000px;}
.x21_c00184{left:172.650000px;}
.x6f_c00184{left:174.150000px;}
.x34_c00184{left:175.650000px;}
.x29_c00184{left:176.700000px;}
.x85_c00184{left:178.200000px;}
.xc_c00184{left:179.700000px;}
.x11_c00184{left:182.100000px;}
.x7d_c00184{left:183.150000px;}
.x3a_c00184{left:185.400000px;}
.x8f_c00184{left:187.650000px;}
.x46_c00184{left:189.300000px;}
.x6a_c00184{left:193.200000px;}
.x8a_c00184{left:195.000000px;}
.x3e_c00184{left:198.150000px;}
.x96_c00184{left:200.550000px;}
.x41_c00184{left:201.750000px;}
.x94_c00184{left:202.800000px;}
.x67_c00184{left:204.900000px;}
.x2e_c00184{left:206.850000px;}
.x92_c00184{left:208.800000px;}
.x75_c00184{left:211.800000px;}
.x18_c00184{left:212.850000px;}
.x88_c00184{left:213.900000px;}
.x9c_c00184{left:214.950000px;}
.x22_c00184{left:216.300000px;}
.x4e_c00184{left:217.650000px;}
.x35_c00184{left:219.150000px;}
.x5_c00184{left:222.450000px;}
.xa0_c00184{left:224.250000px;}
.x12_c00184{left:226.050000px;}
.x19_c00184{left:229.350000px;}
.x5a_c00184{left:232.050000px;}
.x7e_c00184{left:235.050000px;}
.x83_c00184{left:236.250000px;}
.x86_c00184{left:238.650000px;}
.x2a_c00184{left:240.000000px;}
.x76_c00184{left:241.650000px;}
.x97_c00184{left:243.000000px;}
.x3b_c00184{left:244.500000px;}
.x70_c00184{left:246.750000px;}
.x31_c00184{left:249.750000px;}
.x42_c00184{left:250.800000px;}
.xd_c00184{left:252.000000px;}
.x5c_c00184{left:254.550000px;}
.x61_c00184{left:255.750000px;}
.x9a_c00184{left:258.450000px;}
.x4f_c00184{left:260.100000px;}
.x98_c00184{left:261.300000px;}
.x13_c00184{left:262.350000px;}
.x1a_c00184{left:263.550000px;}
.x9d_c00184{left:266.100000px;}
.x7f_c00184{left:267.150000px;}
.x5d_c00184{left:268.950000px;}
.x62_c00184{left:270.900000px;}
.x47_c00184{left:273.900000px;}
.x5b_c00184{left:276.000000px;}
.x71_c00184{left:277.350000px;}
.x68_c00184{left:278.400000px;}
.x3f_c00184{left:281.250000px;}
.x5e_c00184{left:283.350000px;}
.x8b_c00184{left:284.550000px;}
.x1b_c00184{left:285.900000px;}
.x87_c00184{left:288.300000px;}
.x43_c00184{left:289.350000px;}
.x8e_c00184{left:290.550000px;}
.xe_c00184{left:291.600000px;}
.x23_c00184{left:295.800000px;}
.x6_c00184{left:297.000000px;}
.x7a_c00184{left:299.550000px;}
.x14_c00184{left:302.250000px;}
.x1c_c00184{left:304.650000px;}
.x90_c00184{left:307.500000px;}
.x4b_c00184{left:308.850000px;}
.x6b_c00184{left:316.800000px;}
.x5f_c00184{left:319.350000px;}
.x2b_c00184{left:320.700000px;}
.x6c_c00184{left:323.700000px;}
.x32_c00184{left:325.050000px;}
.x3c_c00184{left:327.000000px;}
.x48_c00184{left:328.200000px;}
.x36_c00184{left:330.000000px;}
.x40_c00184{left:331.350000px;}
.x1_c00184{left:333.000000px;}
.x7b_c00184{left:334.050000px;}
.x1d_c00184{left:337.800000px;}
.x6d_c00184{left:338.850000px;}
.xf_c00184{left:341.250000px;}
.x9b_c00184{left:346.050000px;}
.x50_c00184{left:347.250000px;}
.x60_c00184{left:353.550000px;}
.x56_c00184{left:355.350000px;}
.x53_c00184{left:356.400000px;}
.x65_c00184{left:357.450000px;}
.x15_c00184{left:359.100000px;}
.x37_c00184{left:362.100000px;}
.x7_c00184{left:365.400000px;}
.x33_c00184{left:367.500000px;}
.x77_c00184{left:370.950000px;}
.x63_c00184{left:372.750000px;}
.x51_c00184{left:377.850000px;}
.x1e_c00184{left:378.900000px;}
.x72_c00184{left:380.700000px;}
.x2c_c00184{left:382.200000px;}
.x9f_c00184{left:383.700000px;}
.x54_c00184{left:385.200000px;}
.x66_c00184{left:387.000000px;}
.x8_c00184{left:389.100000px;}
.x24_c00184{left:392.700000px;}
.xa1_c00184{left:394.200000px;}
.x44_c00184{left:395.550000px;}
.x8c_c00184{left:397.200000px;}
.x1f_c00184{left:400.500000px;}
.x25_c00184{left:401.700000px;}
.x89_c00184{left:403.800000px;}
.x84_c00184{left:405.750000px;}
.x80_c00184{left:408.150000px;}
.x52_c00184{left:411.750000px;}
.x58_c00184{left:413.250000px;}
.x45_c00184{left:414.600000px;}
.x73_c00184{left:415.800000px;}
.x81_c00184{left:418.200000px;}
.x95_c00184{left:423.900000px;}
.xdc_c00184{left:446.400000px;}
.xff_c00184{left:447.450000px;}
.x125_c00184{left:452.100000px;}
.xa8_c00184{left:463.350000px;}
.xca_c00184{left:464.400000px;}
.x108_c00184{left:466.500000px;}
.xa3_c00184{left:468.750000px;}
.xa4_c00184{left:481.350000px;}
.xfc_c00184{left:484.200000px;}
.xfa_c00184{left:485.250000px;}
.xc4_c00184{left:486.600000px;}
.x100_c00184{left:492.450000px;}
.x11a_c00184{left:493.950000px;}
.xe2_c00184{left:496.050000px;}
.xd4_c00184{left:503.550000px;}
.xf3_c00184{left:505.350000px;}
.xb0_c00184{left:506.550000px;}
.xdd_c00184{left:507.900000px;}
.x126_c00184{left:510.750000px;}
.xb7_c00184{left:512.400000px;}
.xeb_c00184{left:516.300000px;}
.xee_c00184{left:517.500000px;}
.xbf_c00184{left:518.850000px;}
.xf8_c00184{left:520.800000px;}
.xf4_c00184{left:521.850000px;}
.xa9_c00184{left:523.500000px;}
.x11c_c00184{left:526.350000px;}
.xc5_c00184{left:527.700000px;}
.x122_c00184{left:529.200000px;}
.xa5_c00184{left:531.450000px;}
.x120_c00184{left:532.500000px;}
.xb1_c00184{left:533.550000px;}
.xc0_c00184{left:534.750000px;}
.xfb_c00184{left:536.700000px;}
.x121_c00184{left:537.900000px;}
.xd5_c00184{left:540.300000px;}
.x10e_c00184{left:541.350000px;}
.x10a_c00184{left:544.200000px;}
.xce_c00184{left:545.700000px;}
.xe5_c00184{left:546.750000px;}
.xb8_c00184{left:549.450000px;}
.xaa_c00184{left:552.300000px;}
.xc1_c00184{left:554.250000px;}
.xcb_c00184{left:555.450000px;}
.xb9_c00184{left:559.200000px;}
.xd6_c00184{left:560.400000px;}
.x101_c00184{left:561.600000px;}
.x109_c00184{left:562.950000px;}
.xc6_c00184{left:565.800000px;}
.xe6_c00184{left:570.150000px;}
.xf9_c00184{left:571.950000px;}
.xef_c00184{left:573.000000px;}
.xf5_c00184{left:575.250000px;}
.x127_c00184{left:576.300000px;}
.xb2_c00184{left:578.250000px;}
.xcf_c00184{left:580.950000px;}
.x117_c00184{left:582.000000px;}
.xde_c00184{left:585.300000px;}
.xd7_c00184{left:587.700000px;}
.xfd_c00184{left:589.650000px;}
.xd0_c00184{left:591.750000px;}
.xcc_c00184{left:592.950000px;}
.x10c_c00184{left:594.450000px;}
.xab_c00184{left:597.000000px;}
.xa6_c00184{left:599.550000px;}
.xec_c00184{left:602.700000px;}
.xd8_c00184{left:603.900000px;}
.xb3_c00184{left:606.000000px;}
.xf1_c00184{left:608.700000px;}
.x10f_c00184{left:611.250000px;}
.x10b_c00184{left:612.900000px;}
.xac_c00184{left:617.100000px;}
.xf6_c00184{left:619.050000px;}
.xd9_c00184{left:623.400000px;}
.x110_c00184{left:625.350000px;}
.xd1_c00184{left:627.750000px;}
.xc2_c00184{left:631.350000px;}
.xf0_c00184{left:634.950000px;}
.xba_c00184{left:638.100000px;}
.x113_c00184{left:640.800000px;}
.xdf_c00184{left:641.850000px;}
.xfe_c00184{left:643.350000px;}
.xb4_c00184{left:645.300000px;}
.xe7_c00184{left:647.250000px;}
.xd2_c00184{left:649.350000px;}
.xad_c00184{left:653.100000px;}
.xa7_c00184{left:655.650000px;}
.xf7_c00184{left:658.200000px;}
.xc7_c00184{left:659.700000px;}
.xda_c00184{left:660.900000px;}
.xe0_c00184{left:664.500000px;}
.x106_c00184{left:668.250000px;}
.xc8_c00184{left:672.000000px;}
.xe8_c00184{left:675.000000px;}
.x102_c00184{left:677.850000px;}
.x115_c00184{left:682.950000px;}
.xcd_c00184{left:687.900000px;}
.xed_c00184{left:689.850000px;}
.xbb_c00184{left:692.400000px;}
.xe9_c00184{left:697.350000px;}
.x103_c00184{left:698.400000px;}
.x111_c00184{left:699.900000px;}
.xe1_c00184{left:704.850000px;}
.xf2_c00184{left:705.900000px;}
.xae_c00184{left:707.100000px;}
.xea_c00184{left:709.950000px;}
.x11b_c00184{left:711.300000px;}
.x124_c00184{left:713.250000px;}
.xbc_c00184{left:714.750000px;}
.x114_c00184{left:717.450000px;}
.xb5_c00184{left:721.200000px;}
.x128_c00184{left:723.450000px;}
.xdb_c00184{left:726.000000px;}
.xe3_c00184{left:728.550000px;}
.x118_c00184{left:734.700000px;}
.xc3_c00184{left:736.500000px;}
.xc9_c00184{left:738.000000px;}
.x11f_c00184{left:739.050000px;}
.x104_c00184{left:742.650000px;}
.x119_c00184{left:744.300000px;}
.x123_c00184{left:745.800000px;}
.xbd_c00184{left:749.700000px;}
.x107_c00184{left:751.350000px;}
.x129_c00184{left:753.000000px;}
.xd3_c00184{left:754.050000px;}
.x2_c00184{left:755.250000px;}
.x116_c00184{left:758.850000px;}
.x10d_c00184{left:760.800000px;}
.xaf_c00184{left:762.900000px;}
.xe4_c00184{left:764.850000px;}
.xb6_c00184{left:766.950000px;}
.xbe_c00184{left:771.600000px;}
.x112_c00184{left:772.950000px;}
.x11d_c00184{left:774.750000px;}
.x105_c00184{left:776.550000px;}
.x11e_c00184{left:784.800000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws9_c00184{word-spacing:-7.404353pt;}
.ws7_c00184{word-spacing:-4.617605pt;}
.wsa_c00184{word-spacing:0.000000pt;}
.ws8_c00184{word-spacing:7.407407pt;}
.ws0_c00184{word-spacing:18.055556pt;}
.ws3_c00184{word-spacing:19.682540pt;}
.ws5_c00184{word-spacing:22.857143pt;}
.ws4_c00184{word-spacing:26.031746pt;}
.ws6_c00184{word-spacing:54.444444pt;}
.ws2_c00184{word-spacing:55.718328pt;}
.ws1_c00184{word-spacing:58.947368pt;}
.fs6_c00184{font-size:26.666667pt;}
.fs7_c00184{font-size:37.333333pt;}
.fs4_c00184{font-size:48.000000pt;}
.fs5_c00184{font-size:53.333333pt;}
.fs3_c00184{font-size:58.666667pt;}
.fs2_c00184{font-size:64.000000pt;}
.fs0_c00184{font-size:69.333333pt;}
.fs1_c00184{font-size:74.666667pt;}
.y0_c00184{bottom:0.000000pt;}
.y64_c00184{bottom:155.200000pt;}
.y38_c00184{bottom:166.000000pt;}
.y63_c00184{bottom:171.200000pt;}
.y37_c00184{bottom:179.733333pt;}
.y62_c00184{bottom:189.733333pt;}
.y36_c00184{bottom:192.266667pt;}
.y35_c00184{bottom:204.933333pt;}
.y61_c00184{bottom:209.866667pt;}
.y34_c00184{bottom:218.000000pt;}
.y60_c00184{bottom:229.200000pt;}
.y33_c00184{bottom:231.066667pt;}
.y32_c00184{bottom:243.866667pt;}
.y5f_c00184{bottom:246.133333pt;}
.y31_c00184{bottom:256.000000pt;}
.y5e_c00184{bottom:265.600000pt;}
.y30_c00184{bottom:269.466667pt;}
.y2f_c00184{bottom:281.600000pt;}
.y2e_c00184{bottom:294.400000pt;}
.y5d_c00184{bottom:301.066667pt;}
.y2d_c00184{bottom:307.466667pt;}
.y5c_c00184{bottom:320.533333pt;}
.y5b_c00184{bottom:339.466667pt;}
.y2c_c00184{bottom:351.066667pt;}
.y5a_c00184{bottom:355.466667pt;}
.y2b_c00184{bottom:366.933333pt;}
.y59_c00184{bottom:374.666667pt;}
.y2a_c00184{bottom:382.933333pt;}
.y58_c00184{bottom:391.333333pt;}
.y29_c00184{bottom:398.666667pt;}
.y57_c00184{bottom:410.533333pt;}
.y28_c00184{bottom:414.666667pt;}
.y56_c00184{bottom:430.133333pt;}
.y27_c00184{bottom:430.666667pt;}
.y26_c00184{bottom:446.400000pt;}
.y25_c00184{bottom:462.400000pt;}
.y24_c00184{bottom:478.400000pt;}
.y23_c00184{bottom:494.133333pt;}
.y22_c00184{bottom:510.133333pt;}
.y55_c00184{bottom:529.600000pt;}
.y21_c00184{bottom:529.866667pt;}
.y20_c00184{bottom:542.400000pt;}
.y54_c00184{bottom:545.600000pt;}
.y1f_c00184{bottom:554.933333pt;}
.y53_c00184{bottom:561.333333pt;}
.y1e_c00184{bottom:566.400000pt;}
.y1d_c00184{bottom:580.533333pt;}
.y52_c00184{bottom:580.800000pt;}
.y1c_c00184{bottom:592.000000pt;}
.y51_c00184{bottom:604.800000pt;}
.y1b_c00184{bottom:605.733333pt;}
.y50_c00184{bottom:613.200000pt;}
.y1a_c00184{bottom:617.200000pt;}
.y4f_c00184{bottom:625.066667pt;}
.y4e_c00184{bottom:626.933333pt;}
.y4d_c00184{bottom:627.600000pt;}
.y19_c00184{bottom:631.333333pt;}
.y4c_c00184{bottom:632.666667pt;}
.y18_c00184{bottom:642.933333pt;}
.y17_c00184{bottom:656.666667pt;}
.y4b_c00184{bottom:659.466667pt;}
.y16_c00184{bottom:669.466667pt;}
.y4a_c00184{bottom:679.333333pt;}
.y15_c00184{bottom:682.533333pt;}
.y14_c00184{bottom:695.333333pt;}
.y49_c00184{bottom:699.200000pt;}
.y13_c00184{bottom:711.066667pt;}
.y12_c00184{bottom:727.333333pt;}
.y48_c00184{bottom:730.533333pt;}
.y11_c00184{bottom:743.333333pt;}
.y10_c00184{bottom:759.066667pt;}
.y47_c00184{bottom:761.600000pt;}
.y46_c00184{bottom:777.600000pt;}
.yf_c00184{bottom:781.733333pt;}
.y45_c00184{bottom:797.333333pt;}
.ye_c00184{bottom:798.000000pt;}
.y44_c00184{bottom:813.066667pt;}
.yd_c00184{bottom:814.000000pt;}
.y43_c00184{bottom:829.066667pt;}
.yc_c00184{bottom:829.733333pt;}
.y42_c00184{bottom:844.800000pt;}
.yb_c00184{bottom:845.733333pt;}
.y41_c00184{bottom:860.800000pt;}
.ya_c00184{bottom:864.933333pt;}
.y40_c00184{bottom:880.266667pt;}
.y9_c00184{bottom:880.666667pt;}
.y3f_c00184{bottom:896.266667pt;}
.y8_c00184{bottom:907.866667pt;}
.y3e_c00184{bottom:912.266667pt;}
.y7_c00184{bottom:923.866667pt;}
.y3d_c00184{bottom:928.000000pt;}
.y6_c00184{bottom:939.866667pt;}
.y3c_c00184{bottom:944.000000pt;}
.y5_c00184{bottom:959.733333pt;}
.y3b_c00184{bottom:960.000000pt;}
.y4_c00184{bottom:975.733333pt;}
.y3_c00184{bottom:991.733333pt;}
.y2_c00184{bottom:1014.800000pt;}
.y1_c00184{bottom:1015.066667pt;}
.y39_c00184{bottom:1128.266667pt;}
.y3a_c00184{bottom:1129.600000pt;}
.h8_c00184{height:26.666667pt;}
.h9_c00184{height:37.333333pt;}
.h6_c00184{height:48.000000pt;}
.h7_c00184{height:53.333333pt;}
.h5_c00184{height:58.666667pt;}
.h4_c00184{height:64.000000pt;}
.h2_c00184{height:69.333333pt;}
.h3_c00184{height:74.666667pt;}
.h1_c00184{height:1130.666667pt;}
.h0_c00184{height:1130.879964pt;}
.w1_c00184{width:856.000000pt;}
.w0_c00184{width:856.319987pt;}
.x0_c00184{left:0.000000pt;}
.x4c_c00184{left:72.266667pt;}
.x16_c00184{left:78.133333pt;}
.x27_c00184{left:79.066667pt;}
.x74_c00184{left:83.200000pt;}
.x99_c00184{left:84.533333pt;}
.xa2_c00184{left:85.866667pt;}
.x3_c00184{left:93.466667pt;}
.x10_c00184{left:94.666667pt;}
.x2d_c00184{left:95.600000pt;}
.x82_c00184{left:98.400000pt;}
.x78_c00184{left:99.600000pt;}
.x55_c00184{left:105.600000pt;}
.x59_c00184{left:106.800000pt;}
.x6e_c00184{left:107.733333pt;}
.x9_c00184{left:109.733333pt;}
.x2f_c00184{left:111.333333pt;}
.x4_c00184{left:117.733333pt;}
.x28_c00184{left:120.000000pt;}
.xa_c00184{left:122.266667pt;}
.x20_c00184{left:123.333333pt;}
.x69_c00184{left:124.400000pt;}
.x57_c00184{left:125.733333pt;}
.x64_c00184{left:127.066667pt;}
.x7c_c00184{left:128.266667pt;}
.x38_c00184{left:129.600000pt;}
.x49_c00184{left:131.066667pt;}
.x26_c00184{left:132.133333pt;}
.x91_c00184{left:133.733333pt;}
.x4d_c00184{left:134.933333pt;}
.x8d_c00184{left:136.666667pt;}
.x39_c00184{left:137.600000pt;}
.x17_c00184{left:141.200000pt;}
.x3d_c00184{left:143.200000pt;}
.x79_c00184{left:146.133333pt;}
.xb_c00184{left:147.600000pt;}
.x4a_c00184{left:149.333333pt;}
.x9e_c00184{left:150.266667pt;}
.x30_c00184{left:151.333333pt;}
.x93_c00184{left:152.533333pt;}
.x21_c00184{left:153.466667pt;}
.x6f_c00184{left:154.800000pt;}
.x34_c00184{left:156.133333pt;}
.x29_c00184{left:157.066667pt;}
.x85_c00184{left:158.400000pt;}
.xc_c00184{left:159.733333pt;}
.x11_c00184{left:161.866667pt;}
.x7d_c00184{left:162.800000pt;}
.x3a_c00184{left:164.800000pt;}
.x8f_c00184{left:166.800000pt;}
.x46_c00184{left:168.266667pt;}
.x6a_c00184{left:171.733333pt;}
.x8a_c00184{left:173.333333pt;}
.x3e_c00184{left:176.133333pt;}
.x96_c00184{left:178.266667pt;}
.x41_c00184{left:179.333333pt;}
.x94_c00184{left:180.266667pt;}
.x67_c00184{left:182.133333pt;}
.x2e_c00184{left:183.866667pt;}
.x92_c00184{left:185.600000pt;}
.x75_c00184{left:188.266667pt;}
.x18_c00184{left:189.200000pt;}
.x88_c00184{left:190.133333pt;}
.x9c_c00184{left:191.066667pt;}
.x22_c00184{left:192.266667pt;}
.x4e_c00184{left:193.466667pt;}
.x35_c00184{left:194.800000pt;}
.x5_c00184{left:197.733333pt;}
.xa0_c00184{left:199.333333pt;}
.x12_c00184{left:200.933333pt;}
.x19_c00184{left:203.866667pt;}
.x5a_c00184{left:206.266667pt;}
.x7e_c00184{left:208.933333pt;}
.x83_c00184{left:210.000000pt;}
.x86_c00184{left:212.133333pt;}
.x2a_c00184{left:213.333333pt;}
.x76_c00184{left:214.800000pt;}
.x97_c00184{left:216.000000pt;}
.x3b_c00184{left:217.333333pt;}
.x70_c00184{left:219.333333pt;}
.x31_c00184{left:222.000000pt;}
.x42_c00184{left:222.933333pt;}
.xd_c00184{left:224.000000pt;}
.x5c_c00184{left:226.266667pt;}
.x61_c00184{left:227.333333pt;}
.x9a_c00184{left:229.733333pt;}
.x4f_c00184{left:231.200000pt;}
.x98_c00184{left:232.266667pt;}
.x13_c00184{left:233.200000pt;}
.x1a_c00184{left:234.266667pt;}
.x9d_c00184{left:236.533333pt;}
.x7f_c00184{left:237.466667pt;}
.x5d_c00184{left:239.066667pt;}
.x62_c00184{left:240.800000pt;}
.x47_c00184{left:243.466667pt;}
.x5b_c00184{left:245.333333pt;}
.x71_c00184{left:246.533333pt;}
.x68_c00184{left:247.466667pt;}
.x3f_c00184{left:250.000000pt;}
.x5e_c00184{left:251.866667pt;}
.x8b_c00184{left:252.933333pt;}
.x1b_c00184{left:254.133333pt;}
.x87_c00184{left:256.266667pt;}
.x43_c00184{left:257.200000pt;}
.x8e_c00184{left:258.266667pt;}
.xe_c00184{left:259.200000pt;}
.x23_c00184{left:262.933333pt;}
.x6_c00184{left:264.000000pt;}
.x7a_c00184{left:266.266667pt;}
.x14_c00184{left:268.666667pt;}
.x1c_c00184{left:270.800000pt;}
.x90_c00184{left:273.333333pt;}
.x4b_c00184{left:274.533333pt;}
.x6b_c00184{left:281.600000pt;}
.x5f_c00184{left:283.866667pt;}
.x2b_c00184{left:285.066667pt;}
.x6c_c00184{left:287.733333pt;}
.x32_c00184{left:288.933333pt;}
.x3c_c00184{left:290.666667pt;}
.x48_c00184{left:291.733333pt;}
.x36_c00184{left:293.333333pt;}
.x40_c00184{left:294.533333pt;}
.x1_c00184{left:296.000000pt;}
.x7b_c00184{left:296.933333pt;}
.x1d_c00184{left:300.266667pt;}
.x6d_c00184{left:301.200000pt;}
.xf_c00184{left:303.333333pt;}
.x9b_c00184{left:307.600000pt;}
.x50_c00184{left:308.666667pt;}
.x60_c00184{left:314.266667pt;}
.x56_c00184{left:315.866667pt;}
.x53_c00184{left:316.800000pt;}
.x65_c00184{left:317.733333pt;}
.x15_c00184{left:319.200000pt;}
.x37_c00184{left:321.866667pt;}
.x7_c00184{left:324.800000pt;}
.x33_c00184{left:326.666667pt;}
.x77_c00184{left:329.733333pt;}
.x63_c00184{left:331.333333pt;}
.x51_c00184{left:335.866667pt;}
.x1e_c00184{left:336.800000pt;}
.x72_c00184{left:338.400000pt;}
.x2c_c00184{left:339.733333pt;}
.x9f_c00184{left:341.066667pt;}
.x54_c00184{left:342.400000pt;}
.x66_c00184{left:344.000000pt;}
.x8_c00184{left:345.866667pt;}
.x24_c00184{left:349.066667pt;}
.xa1_c00184{left:350.400000pt;}
.x44_c00184{left:351.600000pt;}
.x8c_c00184{left:353.066667pt;}
.x1f_c00184{left:356.000000pt;}
.x25_c00184{left:357.066667pt;}
.x89_c00184{left:358.933333pt;}
.x84_c00184{left:360.666667pt;}
.x80_c00184{left:362.800000pt;}
.x52_c00184{left:366.000000pt;}
.x58_c00184{left:367.333333pt;}
.x45_c00184{left:368.533333pt;}
.x73_c00184{left:369.600000pt;}
.x81_c00184{left:371.733333pt;}
.x95_c00184{left:376.800000pt;}
.xdc_c00184{left:396.800000pt;}
.xff_c00184{left:397.733333pt;}
.x125_c00184{left:401.866667pt;}
.xa8_c00184{left:411.866667pt;}
.xca_c00184{left:412.800000pt;}
.x108_c00184{left:414.666667pt;}
.xa3_c00184{left:416.666667pt;}
.xa4_c00184{left:427.866667pt;}
.xfc_c00184{left:430.400000pt;}
.xfa_c00184{left:431.333333pt;}
.xc4_c00184{left:432.533333pt;}
.x100_c00184{left:437.733333pt;}
.x11a_c00184{left:439.066667pt;}
.xe2_c00184{left:440.933333pt;}
.xd4_c00184{left:447.600000pt;}
.xf3_c00184{left:449.200000pt;}
.xb0_c00184{left:450.266667pt;}
.xdd_c00184{left:451.466667pt;}
.x126_c00184{left:454.000000pt;}
.xb7_c00184{left:455.466667pt;}
.xeb_c00184{left:458.933333pt;}
.xee_c00184{left:460.000000pt;}
.xbf_c00184{left:461.200000pt;}
.xf8_c00184{left:462.933333pt;}
.xf4_c00184{left:463.866667pt;}
.xa9_c00184{left:465.333333pt;}
.x11c_c00184{left:467.866667pt;}
.xc5_c00184{left:469.066667pt;}
.x122_c00184{left:470.400000pt;}
.xa5_c00184{left:472.400000pt;}
.x120_c00184{left:473.333333pt;}
.xb1_c00184{left:474.266667pt;}
.xc0_c00184{left:475.333333pt;}
.xfb_c00184{left:477.066667pt;}
.x121_c00184{left:478.133333pt;}
.xd5_c00184{left:480.266667pt;}
.x10e_c00184{left:481.200000pt;}
.x10a_c00184{left:483.733333pt;}
.xce_c00184{left:485.066667pt;}
.xe5_c00184{left:486.000000pt;}
.xb8_c00184{left:488.400000pt;}
.xaa_c00184{left:490.933333pt;}
.xc1_c00184{left:492.666667pt;}
.xcb_c00184{left:493.733333pt;}
.xb9_c00184{left:497.066667pt;}
.xd6_c00184{left:498.133333pt;}
.x101_c00184{left:499.200000pt;}
.x109_c00184{left:500.400000pt;}
.xc6_c00184{left:502.933333pt;}
.xe6_c00184{left:506.800000pt;}
.xf9_c00184{left:508.400000pt;}
.xef_c00184{left:509.333333pt;}
.xf5_c00184{left:511.333333pt;}
.x127_c00184{left:512.266667pt;}
.xb2_c00184{left:514.000000pt;}
.xcf_c00184{left:516.400000pt;}
.x117_c00184{left:517.333333pt;}
.xde_c00184{left:520.266667pt;}
.xd7_c00184{left:522.400000pt;}
.xfd_c00184{left:524.133333pt;}
.xd0_c00184{left:526.000000pt;}
.xcc_c00184{left:527.066667pt;}
.x10c_c00184{left:528.400000pt;}
.xab_c00184{left:530.666667pt;}
.xa6_c00184{left:532.933333pt;}
.xec_c00184{left:535.733333pt;}
.xd8_c00184{left:536.800000pt;}
.xb3_c00184{left:538.666667pt;}
.xf1_c00184{left:541.066667pt;}
.x10f_c00184{left:543.333333pt;}
.x10b_c00184{left:544.800000pt;}
.xac_c00184{left:548.533333pt;}
.xf6_c00184{left:550.266667pt;}
.xd9_c00184{left:554.133333pt;}
.x110_c00184{left:555.866667pt;}
.xd1_c00184{left:558.000000pt;}
.xc2_c00184{left:561.200000pt;}
.xf0_c00184{left:564.400000pt;}
.xba_c00184{left:567.200000pt;}
.x113_c00184{left:569.600000pt;}
.xdf_c00184{left:570.533333pt;}
.xfe_c00184{left:571.866667pt;}
.xb4_c00184{left:573.600000pt;}
.xe7_c00184{left:575.333333pt;}
.xd2_c00184{left:577.200000pt;}
.xad_c00184{left:580.533333pt;}
.xa7_c00184{left:582.800000pt;}
.xf7_c00184{left:585.066667pt;}
.xc7_c00184{left:586.400000pt;}
.xda_c00184{left:587.466667pt;}
.xe0_c00184{left:590.666667pt;}
.x106_c00184{left:594.000000pt;}
.xc8_c00184{left:597.333333pt;}
.xe8_c00184{left:600.000000pt;}
.x102_c00184{left:602.533333pt;}
.x115_c00184{left:607.066667pt;}
.xcd_c00184{left:611.466667pt;}
.xed_c00184{left:613.200000pt;}
.xbb_c00184{left:615.466667pt;}
.xe9_c00184{left:619.866667pt;}
.x103_c00184{left:620.800000pt;}
.x111_c00184{left:622.133333pt;}
.xe1_c00184{left:626.533333pt;}
.xf2_c00184{left:627.466667pt;}
.xae_c00184{left:628.533333pt;}
.xea_c00184{left:631.066667pt;}
.x11b_c00184{left:632.266667pt;}
.x124_c00184{left:634.000000pt;}
.xbc_c00184{left:635.333333pt;}
.x114_c00184{left:637.733333pt;}
.xb5_c00184{left:641.066667pt;}
.x128_c00184{left:643.066667pt;}
.xdb_c00184{left:645.333333pt;}
.xe3_c00184{left:647.600000pt;}
.x118_c00184{left:653.066667pt;}
.xc3_c00184{left:654.666667pt;}
.xc9_c00184{left:656.000000pt;}
.x11f_c00184{left:656.933333pt;}
.x104_c00184{left:660.133333pt;}
.x119_c00184{left:661.600000pt;}
.x123_c00184{left:662.933333pt;}
.xbd_c00184{left:666.400000pt;}
.x107_c00184{left:667.866667pt;}
.x129_c00184{left:669.333333pt;}
.xd3_c00184{left:670.266667pt;}
.x2_c00184{left:671.333333pt;}
.x116_c00184{left:674.533333pt;}
.x10d_c00184{left:676.266667pt;}
.xaf_c00184{left:678.133333pt;}
.xe4_c00184{left:679.866667pt;}
.xb6_c00184{left:681.733333pt;}
.xbe_c00184{left:685.866667pt;}
.x112_c00184{left:687.066667pt;}
.x11d_c00184{left:688.666667pt;}
.x105_c00184{left:690.266667pt;}
.x11e_c00184{left:697.600000pt;}
}





/* 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_c00185 {
    display:none;
  }
  .loading-indicator_c00185.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00185 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_c00185 { 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_c00185" -> "#page-container .classname_c00185")
 */
.pf_c00185 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00185 { /* 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_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00185 { /* 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_c00185 { /* 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_c00185 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00185 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00185 {overflow:visible;}
  }
}
.c_c00185 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00185 { /* 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_c00185:after { /* webkit #35443 */
  content: '';
}
.t_c00185:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00185 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 */
}
.__c00185 { /* 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_c00185 { /* info for Javascript */
  display:none;
}
.l_c00185 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00185 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00185 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00185: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_c00185 {
    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_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00185.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_c00185 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00185;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.000000;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;}
.m67_c00185{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m38_c00185{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m58_c00185{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m79_c00185{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m22_c00185{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00185{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m74_c00185{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00185{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m69_c00185{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m16_c00185{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00185{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00185{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00185{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00185{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m53_c00185{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mce_c00185{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00185{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m26_c00185{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.me1_c00185{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m60_c00185{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00185{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00185{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me3_c00185{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00185{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m76_c00185{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00185{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mef_c00185{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m68_c00185{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m72_c00185{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m95_c00185{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m33_c00185{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m96_c00185{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00185{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m70_c00185{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00185{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m24_c00185{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m110_c00185{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m45_c00185{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m6_c00185{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00185{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00185{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mee_c00185{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mc_c00185{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00185{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00185{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m59_c00185{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m97_c00185{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00185{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me0_c00185{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m98_c00185{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m114_c00185{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.maa_c00185{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00185{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md1_c00185{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mea_c00185{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00185{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m17_c00185{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00185{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00185{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00185{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m62_c00185{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mda_c00185{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00185{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m117_c00185{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m35_c00185{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m73_c00185{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m65_c00185{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00185{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m43_c00185{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00185{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00185{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m113_c00185{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m11_c00185{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00185{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00185{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00185{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00185{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.me2_c00185{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mab_c00185{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00185{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m93_c00185{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00185{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md5_c00185{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00185{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00185{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.md_c00185{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00185{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m90_c00185{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m10_c00185{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m75_c00185{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m86_c00185{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m15_c00185{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m31_c00185{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m41_c00185{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00185{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00185{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00185{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m44_c00185{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00185{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.med_c00185{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00185{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m55_c00185{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00185{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m34_c00185{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00185{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m66_c00185{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00185{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00185{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00185{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m46_c00185{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00185{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md8_c00185{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m7_c00185{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mca_c00185{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mba_c00185{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00185{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00185{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md7_c00185{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m91_c00185{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me6_c00185{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3_c00185{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00185{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00185{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00185{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf_c00185{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00185{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00185{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00185{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00185{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00185{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00185{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00185{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me_c00185{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m23_c00185{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00185{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m36_c00185{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8_c00185{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00185{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00185{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m83_c00185{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00185{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m14_c00185{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m63_c00185{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m82_c00185{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mae_c00185{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00185{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mac_c00185{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m99_c00185{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00185{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m56_c00185{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m109_c00185{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mff_c00185{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m78_c00185{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00185{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00185{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb_c00185{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00185{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00185{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00185{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00185{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m40_c00185{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m37_c00185{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00185{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m4_c00185{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00185{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m94_c00185{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m116_c00185{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma_c00185{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00185{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00185{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m13_c00185{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m89_c00185{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00185{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00185{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m87_c00185{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00185{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m32_c00185{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m51_c00185{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md4_c00185{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m118_c00185{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m12_c00185{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00185{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m19_c00185{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00185{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md9_c00185{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00185{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00185{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.maf_c00185{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m42_c00185{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me4_c00185{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m84_c00185{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md6_c00185{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00185{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m50_c00185{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5_c00185{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00185{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00185{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00185{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9_c00185{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m18_c00185{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00185{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00185{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00185{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00185{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00185{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m71_c00185{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00185{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m77_c00185{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00185{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m106_c00185{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.meb_c00185{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m81_c00185{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m61_c00185{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00185{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me5_c00185{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00185{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m112_c00185{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m27_c00185{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00185{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m80_c00185{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m57_c00185{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00185{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00185{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00185{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m52_c00185{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m101_c00185{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00185{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m100_c00185{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m92_c00185{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00185{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md3_c00185{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00185{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m103_c00185{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m29_c00185{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m102_c00185{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00185{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);}
.m107_c00185{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00185{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m54_c00185{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m111_c00185{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00185{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mad_c00185{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m88_c00185{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00185{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m119_c00185{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00185{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m49_c00185{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00185{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.me7_c00185{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m20_c00185{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md0_c00185{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00185{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m28_c00185{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m108_c00185{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m48_c00185{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00185{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00185{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00185{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m39_c00185{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me8_c00185{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m25_c00185{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m21_c00185{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00185{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00185{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m47_c00185{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.mde_c00185{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m104_c00185{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m85_c00185{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00185{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00185{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m115_c00185{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m105_c00185{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md2_c00185{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m30_c00185{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00185{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00185{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m64_c00185{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00185{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00185{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00185{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mec_c00185{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.me9_c00185{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls0_c00185{letter-spacing:0.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{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__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00185{word-spacing:-5.656051px;}
.wsa_c00185{word-spacing:-3.166667px;}
.wsc_c00185{word-spacing:0.000000px;}
.wsd_c00185{word-spacing:1.343643px;}
.wsb_c00185{word-spacing:2.333333px;}
.ws8_c00185{word-spacing:4.749141px;}
.ws1_c00185{word-spacing:8.185567px;}
.ws2_c00185{word-spacing:12.063306px;}
.ws4_c00185{word-spacing:15.000000px;}
.ws5_c00185{word-spacing:22.142857px;}
.ws3_c00185{word-spacing:25.714286px;}
.ws9_c00185{word-spacing:31.299363px;}
.ws7_c00185{word-spacing:50.416667px;}
.ws6_c00185{word-spacing:71.944444px;}
.fc0_c00185{color:transparent;}
.fs5_c00185{font-size:24.000000px;}
.fs4_c00185{font-size:54.000000px;}
.fs2_c00185{font-size:60.000000px;}
.fs1_c00185{font-size:66.000000px;}
.fs3_c00185{font-size:72.000000px;}
.fs0_c00185{font-size:108.000000px;}
.y0_c00185{bottom:0.000000px;}
.y6a_c00185{bottom:154.800000px;}
.y69_c00185{bottom:177.450000px;}
.y36_c00185{bottom:177.900000px;}
.y68_c00185{bottom:195.750000px;}
.y35_c00185{bottom:196.200000px;}
.y67_c00185{bottom:213.000000px;}
.y34_c00185{bottom:214.200000px;}
.y66_c00185{bottom:231.000000px;}
.y33_c00185{bottom:232.200000px;}
.y65_c00185{bottom:248.700000px;}
.y32_c00185{bottom:250.200000px;}
.y64_c00185{bottom:266.700000px;}
.y31_c00185{bottom:267.450000px;}
.y63_c00185{bottom:285.000000px;}
.y30_c00185{bottom:285.750000px;}
.y62_c00185{bottom:302.700000px;}
.y2f_c00185{bottom:303.450000px;}
.y61_c00185{bottom:320.700000px;}
.y2e_c00185{bottom:321.450000px;}
.y60_c00185{bottom:338.700000px;}
.y2d_c00185{bottom:339.150000px;}
.y5f_c00185{bottom:356.700000px;}
.y2c_c00185{bottom:357.150000px;}
.y5e_c00185{bottom:375.000000px;}
.y2b_c00185{bottom:375.150000px;}
.y5d_c00185{bottom:392.700000px;}
.y2a_c00185{bottom:393.150000px;}
.y5c_c00185{bottom:410.700000px;}
.y29_c00185{bottom:410.850000px;}
.y5b_c00185{bottom:428.700000px;}
.y28_c00185{bottom:428.850000px;}
.y27_c00185{bottom:446.850000px;}
.y5a_c00185{bottom:453.600000px;}
.y26_c00185{bottom:464.850000px;}
.y59_c00185{bottom:473.700000px;}
.y25_c00185{bottom:482.850000px;}
.y58_c00185{bottom:486.000000px;}
.y57_c00185{bottom:491.700000px;}
.y24_c00185{bottom:500.550000px;}
.y56_c00185{bottom:509.700000px;}
.y23_c00185{bottom:518.550000px;}
.y55_c00185{bottom:527.700000px;}
.y22_c00185{bottom:536.550000px;}
.y21_c00185{bottom:554.550000px;}
.y54_c00185{bottom:554.700000px;}
.y20_c00185{bottom:572.550000px;}
.y53_c00185{bottom:572.700000px;}
.y1f_c00185{bottom:590.250000px;}
.y52_c00185{bottom:590.400000px;}
.y1e_c00185{bottom:608.250000px;}
.y51_c00185{bottom:608.400000px;}
.y1d_c00185{bottom:626.250000px;}
.y50_c00185{bottom:626.400000px;}
.y1c_c00185{bottom:643.950000px;}
.y4f_c00185{bottom:644.400000px;}
.y1b_c00185{bottom:661.950000px;}
.y4e_c00185{bottom:662.400000px;}
.y1a_c00185{bottom:679.950000px;}
.y4d_c00185{bottom:680.400000px;}
.y19_c00185{bottom:697.650000px;}
.y4c_c00185{bottom:698.400000px;}
.y18_c00185{bottom:715.650000px;}
.y4b_c00185{bottom:717.150000px;}
.y4a_c00185{bottom:734.100000px;}
.y17_c00185{bottom:737.250000px;}
.y16_c00185{bottom:751.650000px;}
.y49_c00185{bottom:752.100000px;}
.y15_c00185{bottom:766.050000px;}
.y48_c00185{bottom:773.250000px;}
.y14_c00185{bottom:780.900000px;}
.y13_c00185{bottom:794.850000px;}
.y47_c00185{bottom:803.700000px;}
.y12_c00185{bottom:808.500000px;}
.y46_c00185{bottom:822.450000px;}
.y11_c00185{bottom:823.950000px;}
.y10_c00185{bottom:839.100000px;}
.y45_c00185{bottom:840.450000px;}
.yf_c00185{bottom:858.000000px;}
.y44_c00185{bottom:858.150000px;}
.ye_c00185{bottom:876.000000px;}
.y43_c00185{bottom:876.150000px;}
.y42_c00185{bottom:894.150000px;}
.yd_c00185{bottom:894.300000px;}
.yc_c00185{bottom:911.550000px;}
.y41_c00185{bottom:912.150000px;}
.y40_c00185{bottom:930.150000px;}
.yb_c00185{bottom:933.750000px;}
.y3f_c00185{bottom:947.850000px;}
.ya_c00185{bottom:951.450000px;}
.y3e_c00185{bottom:965.850000px;}
.y9_c00185{bottom:969.450000px;}
.y3d_c00185{bottom:983.850000px;}
.y8_c00185{bottom:987.150000px;}
.y3c_c00185{bottom:1001.550000px;}
.y7_c00185{bottom:1009.500000px;}
.y3b_c00185{bottom:1019.550000px;}
.y6_c00185{bottom:1036.050000px;}
.y3a_c00185{bottom:1037.550000px;}
.y5_c00185{bottom:1058.400000px;}
.y39_c00185{bottom:1065.900000px;}
.y4_c00185{bottom:1076.400000px;}
.y3_c00185{bottom:1094.400000px;}
.y38_c00185{bottom:1095.150000px;}
.y2_c00185{bottom:1112.100000px;}
.y37_c00185{bottom:1112.700000px;}
.y1_c00185{bottom:1139.100000px;}
.h7_c00185{height:24.000000px;}
.h6_c00185{height:54.000000px;}
.h4_c00185{height:60.000000px;}
.h3_c00185{height:66.000000px;}
.h5_c00185{height:72.000000px;}
.h2_c00185{height:108.000000px;}
.h0_c00185{height:1269.720063px;}
.h1_c00185{height:1269.750000px;}
.w1_c00185{width:963.000000px;}
.w0_c00185{width:963.359985px;}
.x0_c00185{left:0.000000px;}
.x4a_c00185{left:165.300000px;}
.x1_c00185{left:166.350000px;}
.x20_c00185{left:167.400000px;}
.x4d_c00185{left:180.600000px;}
.x67_c00185{left:182.700000px;}
.x3_c00185{left:183.900000px;}
.x2f_c00185{left:185.100000px;}
.x32_c00185{left:186.900000px;}
.x9d_c00185{left:188.700000px;}
.x53_c00185{left:193.650000px;}
.x51_c00185{left:196.200000px;}
.x25_c00185{left:203.400000px;}
.x89_c00185{left:207.300000px;}
.x8d_c00185{left:208.350000px;}
.x21_c00185{left:209.550000px;}
.xa3_c00185{left:211.200000px;}
.xb_c00185{left:212.700000px;}
.x6a_c00185{left:214.200000px;}
.x4_c00185{left:215.250000px;}
.x57_c00185{left:216.450000px;}
.x52_c00185{left:217.800000px;}
.x80_c00185{left:219.750000px;}
.x70_c00185{left:222.150000px;}
.x6b_c00185{left:223.200000px;}
.x2a_c00185{left:225.900000px;}
.x9e_c00185{left:229.050000px;}
.x83_c00185{left:230.100000px;}
.xa2_c00185{left:232.350000px;}
.x38_c00185{left:234.000000px;}
.x1e_c00185{left:236.100000px;}
.x64_c00185{left:237.450000px;}
.x7a_c00185{left:238.950000px;}
.x18_c00185{left:240.300000px;}
.x4e_c00185{left:242.850000px;}
.x3e_c00185{left:244.950000px;}
.x39_c00185{left:246.300000px;}
.x5_c00185{left:247.950000px;}
.x26_c00185{left:250.200000px;}
.x71_c00185{left:251.250000px;}
.x65_c00185{left:252.900000px;}
.x62_c00185{left:254.250000px;}
.x68_c00185{left:256.950000px;}
.xc_c00185{left:259.200000px;}
.x7e_c00185{left:260.400000px;}
.x58_c00185{left:265.050000px;}
.x19_c00185{left:266.250000px;}
.x5a_c00185{left:267.450000px;}
.x8a_c00185{left:268.800000px;}
.x45_c00185{left:270.600000px;}
.x86_c00185{left:272.850000px;}
.x6c_c00185{left:273.900000px;}
.x72_c00185{left:275.700000px;}
.x8f_c00185{left:277.650000px;}
.x92_c00185{left:279.900000px;}
.x33_c00185{left:281.850000px;}
.x6_c00185{left:283.950000px;}
.x59_c00185{left:286.650000px;}
.x5c_c00185{left:287.850000px;}
.x46_c00185{left:289.650000px;}
.x98_c00185{left:290.700000px;}
.xd_c00185{left:292.650000px;}
.x1a_c00185{left:294.750000px;}
.x81_c00185{left:296.400000px;}
.x3a_c00185{left:300.300000px;}
.x87_c00185{left:301.950000px;}
.x1b_c00185{left:303.450000px;}
.x7_c00185{left:305.250000px;}
.x76_c00185{left:306.300000px;}
.x99_c00185{left:309.450000px;}
.x54_c00185{left:311.100000px;}
.x4b_c00185{left:312.300000px;}
.x3f_c00185{left:314.100000px;}
.x9f_c00185{left:316.200000px;}
.x2b_c00185{left:319.500000px;}
.x47_c00185{left:321.300000px;}
.x8_c00185{left:322.500000px;}
.x13_c00185{left:324.450000px;}
.x1f_c00185{left:326.400000px;}
.x34_c00185{left:329.700000px;}
.x97_c00185{left:331.050000px;}
.x27_c00185{left:334.500000px;}
.x66_c00185{left:335.700000px;}
.x69_c00185{left:337.350000px;}
.x5d_c00185{left:339.000000px;}
.x78_c00185{left:340.800000px;}
.xe_c00185{left:342.750000px;}
.x14_c00185{left:344.550000px;}
.x82_c00185{left:346.800000px;}
.x22_c00185{left:349.200000px;}
.xa1_c00185{left:350.850000px;}
.x5e_c00185{left:353.400000px;}
.xa5_c00185{left:355.350000px;}
.xa4_c00185{left:357.450000px;}
.x23_c00185{left:358.500000px;}
.x55_c00185{left:362.100000px;}
.x90_c00185{left:364.500000px;}
.x40_c00185{left:365.550000px;}
.x30_c00185{left:366.600000px;}
.x84_c00185{left:367.950000px;}
.x48_c00185{left:369.150000px;}
.x95_c00185{left:371.250000px;}
.x79_c00185{left:372.450000px;}
.x6d_c00185{left:374.400000px;}
.x5f_c00185{left:375.450000px;}
.xf_c00185{left:376.950000px;}
.x8b_c00185{left:378.300000px;}
.x73_c00185{left:381.150000px;}
.x3b_c00185{left:382.350000px;}
.x15_c00185{left:383.400000px;}
.x41_c00185{left:386.850000px;}
.x10_c00185{left:388.500000px;}
.x60_c00185{left:389.550000px;}
.x63_c00185{left:391.800000px;}
.x1c_c00185{left:393.450000px;}
.x3c_c00185{left:394.650000px;}
.x5b_c00185{left:396.600000px;}
.x9_c00185{left:398.400000px;}
.x42_c00185{left:400.200000px;}
.x24_c00185{left:402.000000px;}
.x2c_c00185{left:403.050000px;}
.x2_c00185{left:404.700000px;}
.x49_c00185{left:407.250000px;}
.x6e_c00185{left:408.900000px;}
.x28_c00185{left:411.150000px;}
.x9a_c00185{left:414.600000px;}
.x35_c00185{left:418.200000px;}
.x7b_c00185{left:419.400000px;}
.x16_c00185{left:420.900000px;}
.x4c_c00185{left:422.850000px;}
.x93_c00185{left:424.650000px;}
.x8e_c00185{left:426.750000px;}
.x9b_c00185{left:427.800000px;}
.x3d_c00185{left:429.600000px;}
.x56_c00185{left:430.950000px;}
.x2d_c00185{left:432.150000px;}
.x4f_c00185{left:433.350000px;}
.x74_c00185{left:434.850000px;}
.x43_c00185{left:438.000000px;}
.xa_c00185{left:440.550000px;}
.x8c_c00185{left:442.350000px;}
.x7c_c00185{left:443.550000px;}
.x85_c00185{left:444.600000px;}
.xa6_c00185{left:446.850000px;}
.x11_c00185{left:449.700000px;}
.x36_c00185{left:452.400000px;}
.x61_c00185{left:454.200000px;}
.x6f_c00185{left:455.700000px;}
.x88_c00185{left:457.500000px;}
.x31_c00185{left:459.450000px;}
.x29_c00185{left:461.250000px;}
.xa0_c00185{left:462.300000px;}
.x7d_c00185{left:464.100000px;}
.x1d_c00185{left:465.150000px;}
.x96_c00185{left:467.400000px;}
.x7f_c00185{left:469.500000px;}
.x17_c00185{left:472.800000px;}
.x44_c00185{left:474.000000px;}
.x12_c00185{left:475.950000px;}
.x77_c00185{left:478.350000px;}
.x75_c00185{left:479.550000px;}
.x2e_c00185{left:481.050000px;}
.x94_c00185{left:483.750000px;}
.xa7_c00185{left:485.400000px;}
.x37_c00185{left:486.600000px;}
.x50_c00185{left:488.850000px;}
.x9c_c00185{left:491.100000px;}
.x91_c00185{left:499.800000px;}
.xb6_c00185{left:510.150000px;}
.xfa_c00185{left:523.800000px;}
.xa8_c00185{left:539.700000px;}
.xbc_c00185{left:541.050000px;}
.xde_c00185{left:542.100000px;}
.x13a_c00185{left:543.150000px;}
.xd2_c00185{left:557.550000px;}
.xe6_c00185{left:559.200000px;}
.xfb_c00185{left:563.700000px;}
.x113_c00185{left:566.100000px;}
.x12d_c00185{left:568.800000px;}
.xae_c00185{left:570.900000px;}
.xa9_c00185{left:572.400000px;}
.x11e_c00185{left:575.100000px;}
.x130_c00185{left:577.800000px;}
.xb4_c00185{left:581.100000px;}
.x13d_c00185{left:582.150000px;}
.xbd_c00185{left:583.650000px;}
.xb7_c00185{left:584.700000px;}
.xc4_c00185{left:585.900000px;}
.xd9_c00185{left:589.350000px;}
.x104_c00185{left:591.600000px;}
.xed_c00185{left:593.250000px;}
.x109_c00185{left:595.050000px;}
.xe7_c00185{left:598.500000px;}
.xfc_c00185{left:600.750000px;}
.xc5_c00185{left:602.400000px;}
.xdf_c00185{left:605.100000px;}
.xe1_c00185{left:606.600000px;}
.x12a_c00185{left:607.800000px;}
.xbe_c00185{left:608.850000px;}
.xcb_c00185{left:612.750000px;}
.xea_c00185{left:613.800000px;}
.x100_c00185{left:617.700000px;}
.xaf_c00185{left:619.800000px;}
.x114_c00185{left:622.950000px;}
.xd3_c00185{left:624.450000px;}
.xb5_c00185{left:626.100000px;}
.x119_c00185{left:629.100000px;}
.xb8_c00185{left:630.750000px;}
.xcc_c00185{left:634.650000px;}
.x134_c00185{left:636.450000px;}
.x11a_c00185{left:638.100000px;}
.x101_c00185{left:640.050000px;}
.x115_c00185{left:641.700000px;}
.xc6_c00185{left:645.300000px;}
.x126_c00185{left:646.500000px;}
.x10a_c00185{left:647.550000px;}
.x124_c00185{left:651.750000px;}
.x12b_c00185{left:653.100000px;}
.x138_c00185{left:654.300000px;}
.xbf_c00185{left:655.350000px;}
.xf3_c00185{left:656.550000px;}
.xd4_c00185{left:658.350000px;}
.xaa_c00185{left:660.600000px;}
.xe2_c00185{left:661.950000px;}
.xc7_c00185{left:664.350000px;}
.xb0_c00185{left:665.850000px;}
.x139_c00185{left:670.200000px;}
.xf0_c00185{left:674.250000px;}
.x121_c00185{left:676.050000px;}
.xd5_c00185{left:678.150000px;}
.x105_c00185{left:679.200000px;}
.x13b_c00185{left:680.400000px;}
.x11b_c00185{left:682.050000px;}
.xab_c00185{left:683.250000px;}
.xe3_c00185{left:686.100000px;}
.xee_c00185{left:687.900000px;}
.x13e_c00185{left:689.700000px;}
.x10d_c00185{left:690.900000px;}
.xcd_c00185{left:692.250000px;}
.xf6_c00185{left:693.750000px;}
.x131_c00185{left:695.100000px;}
.xfd_c00185{left:699.000000px;}
.x106_c00185{left:700.050000px;}
.x102_c00185{left:701.550000px;}
.xf1_c00185{left:703.050000px;}
.x11f_c00185{left:705.000000px;}
.xb9_c00185{left:706.050000px;}
.xfe_c00185{left:708.000000px;}
.xce_c00185{left:710.250000px;}
.x116_c00185{left:713.250000px;}
.xda_c00185{left:715.050000px;}
.x135_c00185{left:718.950000px;}
.xe4_c00185{left:720.000000px;}
.x129_c00185{left:722.100000px;}
.xe0_c00185{left:723.300000px;}
.xba_c00185{left:724.350000px;}
.xc0_c00185{left:726.000000px;}
.x10b_c00185{left:727.350000px;}
.xdb_c00185{left:730.200000px;}
.xc8_c00185{left:732.000000px;}
.x140_c00185{left:733.800000px;}
.x111_c00185{left:735.150000px;}
.x10e_c00185{left:736.200000px;}
.x141_c00185{left:738.150000px;}
.xe8_c00185{left:739.950000px;}
.x103_c00185{left:742.650000px;}
.xc9_c00185{left:744.900000px;}
.x127_c00185{left:746.550000px;}
.xb1_c00185{left:748.950000px;}
.xff_c00185{left:750.150000px;}
.x107_c00185{left:753.000000px;}
.xf7_c00185{left:754.950000px;}
.xe5_c00185{left:758.550000px;}
.xc1_c00185{left:759.900000px;}
.xd6_c00185{left:761.250000px;}
.x120_c00185{left:763.200000px;}
.x122_c00185{left:764.550000px;}
.x132_c00185{left:766.050000px;}
.x13c_c00185{left:767.100000px;}
.x136_c00185{left:768.300000px;}
.x117_c00185{left:769.800000px;}
.xcf_c00185{left:771.750000px;}
.xf4_c00185{left:773.250000px;}
.xeb_c00185{left:777.300000px;}
.xc2_c00185{left:779.700000px;}
.xf2_c00185{left:782.250000px;}
.x125_c00185{left:784.200000px;}
.xca_c00185{left:787.800000px;}
.xbb_c00185{left:790.200000px;}
.xac_c00185{left:792.300000px;}
.x133_c00185{left:793.350000px;}
.xf5_c00185{left:795.600000px;}
.x11c_c00185{left:797.550000px;}
.xd0_c00185{left:798.750000px;}
.xd7_c00185{left:800.550000px;}
.xdc_c00185{left:802.650000px;}
.x10f_c00185{left:804.300000px;}
.x12f_c00185{left:806.850000px;}
.x118_c00185{left:810.150000px;}
.x11d_c00185{left:811.200000px;}
.xef_c00185{left:813.900000px;}
.xe9_c00185{left:815.100000px;}
.xad_c00185{left:817.200000px;}
.x12e_c00185{left:819.000000px;}
.xd8_c00185{left:820.050000px;}
.xd1_c00185{left:821.100000px;}
.x12c_c00185{left:823.650000px;}
.x108_c00185{left:824.700000px;}
.xf8_c00185{left:826.200000px;}
.x128_c00185{left:828.000000px;}
.xc3_c00185{left:829.350000px;}
.x123_c00185{left:831.450000px;}
.x137_c00185{left:833.850000px;}
.xb2_c00185{left:834.900000px;}
.x10c_c00185{left:837.150000px;}
.x13f_c00185{left:838.950000px;}
.x112_c00185{left:841.050000px;}
.xec_c00185{left:842.850000px;}
.xb3_c00185{left:846.000000px;}
.xf9_c00185{left:848.100000px;}
.xdd_c00185{left:850.200000px;}
.x110_c00185{left:853.950000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws0_c00185{word-spacing:-5.027601pt;}
.wsa_c00185{word-spacing:-2.814815pt;}
.wsc_c00185{word-spacing:0.000000pt;}
.wsd_c00185{word-spacing:1.194349pt;}
.wsb_c00185{word-spacing:2.074074pt;}
.ws8_c00185{word-spacing:4.221459pt;}
.ws1_c00185{word-spacing:7.276060pt;}
.ws2_c00185{word-spacing:10.722939pt;}
.ws4_c00185{word-spacing:13.333333pt;}
.ws5_c00185{word-spacing:19.682540pt;}
.ws3_c00185{word-spacing:22.857143pt;}
.ws9_c00185{word-spacing:27.821656pt;}
.ws7_c00185{word-spacing:44.814815pt;}
.ws6_c00185{word-spacing:63.950617pt;}
.fs5_c00185{font-size:21.333333pt;}
.fs4_c00185{font-size:48.000000pt;}
.fs2_c00185{font-size:53.333333pt;}
.fs1_c00185{font-size:58.666667pt;}
.fs3_c00185{font-size:64.000000pt;}
.fs0_c00185{font-size:96.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y6a_c00185{bottom:137.600000pt;}
.y69_c00185{bottom:157.733333pt;}
.y36_c00185{bottom:158.133333pt;}
.y68_c00185{bottom:174.000000pt;}
.y35_c00185{bottom:174.400000pt;}
.y67_c00185{bottom:189.333333pt;}
.y34_c00185{bottom:190.400000pt;}
.y66_c00185{bottom:205.333333pt;}
.y33_c00185{bottom:206.400000pt;}
.y65_c00185{bottom:221.066667pt;}
.y32_c00185{bottom:222.400000pt;}
.y64_c00185{bottom:237.066667pt;}
.y31_c00185{bottom:237.733333pt;}
.y63_c00185{bottom:253.333333pt;}
.y30_c00185{bottom:254.000000pt;}
.y62_c00185{bottom:269.066667pt;}
.y2f_c00185{bottom:269.733333pt;}
.y61_c00185{bottom:285.066667pt;}
.y2e_c00185{bottom:285.733333pt;}
.y60_c00185{bottom:301.066667pt;}
.y2d_c00185{bottom:301.466667pt;}
.y5f_c00185{bottom:317.066667pt;}
.y2c_c00185{bottom:317.466667pt;}
.y5e_c00185{bottom:333.333333pt;}
.y2b_c00185{bottom:333.466667pt;}
.y5d_c00185{bottom:349.066667pt;}
.y2a_c00185{bottom:349.466667pt;}
.y5c_c00185{bottom:365.066667pt;}
.y29_c00185{bottom:365.200000pt;}
.y5b_c00185{bottom:381.066667pt;}
.y28_c00185{bottom:381.200000pt;}
.y27_c00185{bottom:397.200000pt;}
.y5a_c00185{bottom:403.200000pt;}
.y26_c00185{bottom:413.200000pt;}
.y59_c00185{bottom:421.066667pt;}
.y25_c00185{bottom:429.200000pt;}
.y58_c00185{bottom:432.000000pt;}
.y57_c00185{bottom:437.066667pt;}
.y24_c00185{bottom:444.933333pt;}
.y56_c00185{bottom:453.066667pt;}
.y23_c00185{bottom:460.933333pt;}
.y55_c00185{bottom:469.066667pt;}
.y22_c00185{bottom:476.933333pt;}
.y21_c00185{bottom:492.933333pt;}
.y54_c00185{bottom:493.066667pt;}
.y20_c00185{bottom:508.933333pt;}
.y53_c00185{bottom:509.066667pt;}
.y1f_c00185{bottom:524.666667pt;}
.y52_c00185{bottom:524.800000pt;}
.y1e_c00185{bottom:540.666667pt;}
.y51_c00185{bottom:540.800000pt;}
.y1d_c00185{bottom:556.666667pt;}
.y50_c00185{bottom:556.800000pt;}
.y1c_c00185{bottom:572.400000pt;}
.y4f_c00185{bottom:572.800000pt;}
.y1b_c00185{bottom:588.400000pt;}
.y4e_c00185{bottom:588.800000pt;}
.y1a_c00185{bottom:604.400000pt;}
.y4d_c00185{bottom:604.800000pt;}
.y19_c00185{bottom:620.133333pt;}
.y4c_c00185{bottom:620.800000pt;}
.y18_c00185{bottom:636.133333pt;}
.y4b_c00185{bottom:637.466667pt;}
.y4a_c00185{bottom:652.533333pt;}
.y17_c00185{bottom:655.333333pt;}
.y16_c00185{bottom:668.133333pt;}
.y49_c00185{bottom:668.533333pt;}
.y15_c00185{bottom:680.933333pt;}
.y48_c00185{bottom:687.333333pt;}
.y14_c00185{bottom:694.133333pt;}
.y13_c00185{bottom:706.533333pt;}
.y47_c00185{bottom:714.400000pt;}
.y12_c00185{bottom:718.666667pt;}
.y46_c00185{bottom:731.066667pt;}
.y11_c00185{bottom:732.400000pt;}
.y10_c00185{bottom:745.866667pt;}
.y45_c00185{bottom:747.066667pt;}
.yf_c00185{bottom:762.666667pt;}
.y44_c00185{bottom:762.800000pt;}
.ye_c00185{bottom:778.666667pt;}
.y43_c00185{bottom:778.800000pt;}
.y42_c00185{bottom:794.800000pt;}
.yd_c00185{bottom:794.933333pt;}
.yc_c00185{bottom:810.266667pt;}
.y41_c00185{bottom:810.800000pt;}
.y40_c00185{bottom:826.800000pt;}
.yb_c00185{bottom:830.000000pt;}
.y3f_c00185{bottom:842.533333pt;}
.ya_c00185{bottom:845.733333pt;}
.y3e_c00185{bottom:858.533333pt;}
.y9_c00185{bottom:861.733333pt;}
.y3d_c00185{bottom:874.533333pt;}
.y8_c00185{bottom:877.466667pt;}
.y3c_c00185{bottom:890.266667pt;}
.y7_c00185{bottom:897.333333pt;}
.y3b_c00185{bottom:906.266667pt;}
.y6_c00185{bottom:920.933333pt;}
.y3a_c00185{bottom:922.266667pt;}
.y5_c00185{bottom:940.800000pt;}
.y39_c00185{bottom:947.466667pt;}
.y4_c00185{bottom:956.800000pt;}
.y3_c00185{bottom:972.800000pt;}
.y38_c00185{bottom:973.466667pt;}
.y2_c00185{bottom:988.533333pt;}
.y37_c00185{bottom:989.066667pt;}
.y1_c00185{bottom:1012.533333pt;}
.h7_c00185{height:21.333333pt;}
.h6_c00185{height:48.000000pt;}
.h4_c00185{height:53.333333pt;}
.h3_c00185{height:58.666667pt;}
.h5_c00185{height:64.000000pt;}
.h2_c00185{height:96.000000pt;}
.h0_c00185{height:1128.640056pt;}
.h1_c00185{height:1128.666667pt;}
.w1_c00185{width:856.000000pt;}
.w0_c00185{width:856.319987pt;}
.x0_c00185{left:0.000000pt;}
.x4a_c00185{left:146.933333pt;}
.x1_c00185{left:147.866667pt;}
.x20_c00185{left:148.800000pt;}
.x4d_c00185{left:160.533333pt;}
.x67_c00185{left:162.400000pt;}
.x3_c00185{left:163.466667pt;}
.x2f_c00185{left:164.533333pt;}
.x32_c00185{left:166.133333pt;}
.x9d_c00185{left:167.733333pt;}
.x53_c00185{left:172.133333pt;}
.x51_c00185{left:174.400000pt;}
.x25_c00185{left:180.800000pt;}
.x89_c00185{left:184.266667pt;}
.x8d_c00185{left:185.200000pt;}
.x21_c00185{left:186.266667pt;}
.xa3_c00185{left:187.733333pt;}
.xb_c00185{left:189.066667pt;}
.x6a_c00185{left:190.400000pt;}
.x4_c00185{left:191.333333pt;}
.x57_c00185{left:192.400000pt;}
.x52_c00185{left:193.600000pt;}
.x80_c00185{left:195.333333pt;}
.x70_c00185{left:197.466667pt;}
.x6b_c00185{left:198.400000pt;}
.x2a_c00185{left:200.800000pt;}
.x9e_c00185{left:203.600000pt;}
.x83_c00185{left:204.533333pt;}
.xa2_c00185{left:206.533333pt;}
.x38_c00185{left:208.000000pt;}
.x1e_c00185{left:209.866667pt;}
.x64_c00185{left:211.066667pt;}
.x7a_c00185{left:212.400000pt;}
.x18_c00185{left:213.600000pt;}
.x4e_c00185{left:215.866667pt;}
.x3e_c00185{left:217.733333pt;}
.x39_c00185{left:218.933333pt;}
.x5_c00185{left:220.400000pt;}
.x26_c00185{left:222.400000pt;}
.x71_c00185{left:223.333333pt;}
.x65_c00185{left:224.800000pt;}
.x62_c00185{left:226.000000pt;}
.x68_c00185{left:228.400000pt;}
.xc_c00185{left:230.400000pt;}
.x7e_c00185{left:231.466667pt;}
.x58_c00185{left:235.600000pt;}
.x19_c00185{left:236.666667pt;}
.x5a_c00185{left:237.733333pt;}
.x8a_c00185{left:238.933333pt;}
.x45_c00185{left:240.533333pt;}
.x86_c00185{left:242.533333pt;}
.x6c_c00185{left:243.466667pt;}
.x72_c00185{left:245.066667pt;}
.x8f_c00185{left:246.800000pt;}
.x92_c00185{left:248.800000pt;}
.x33_c00185{left:250.533333pt;}
.x6_c00185{left:252.400000pt;}
.x59_c00185{left:254.800000pt;}
.x5c_c00185{left:255.866667pt;}
.x46_c00185{left:257.466667pt;}
.x98_c00185{left:258.400000pt;}
.xd_c00185{left:260.133333pt;}
.x1a_c00185{left:262.000000pt;}
.x81_c00185{left:263.466667pt;}
.x3a_c00185{left:266.933333pt;}
.x87_c00185{left:268.400000pt;}
.x1b_c00185{left:269.733333pt;}
.x7_c00185{left:271.333333pt;}
.x76_c00185{left:272.266667pt;}
.x99_c00185{left:275.066667pt;}
.x54_c00185{left:276.533333pt;}
.x4b_c00185{left:277.600000pt;}
.x3f_c00185{left:279.200000pt;}
.x9f_c00185{left:281.066667pt;}
.x2b_c00185{left:284.000000pt;}
.x47_c00185{left:285.600000pt;}
.x8_c00185{left:286.666667pt;}
.x13_c00185{left:288.400000pt;}
.x1f_c00185{left:290.133333pt;}
.x34_c00185{left:293.066667pt;}
.x97_c00185{left:294.266667pt;}
.x27_c00185{left:297.333333pt;}
.x66_c00185{left:298.400000pt;}
.x69_c00185{left:299.866667pt;}
.x5d_c00185{left:301.333333pt;}
.x78_c00185{left:302.933333pt;}
.xe_c00185{left:304.666667pt;}
.x14_c00185{left:306.266667pt;}
.x82_c00185{left:308.266667pt;}
.x22_c00185{left:310.400000pt;}
.xa1_c00185{left:311.866667pt;}
.x5e_c00185{left:314.133333pt;}
.xa5_c00185{left:315.866667pt;}
.xa4_c00185{left:317.733333pt;}
.x23_c00185{left:318.666667pt;}
.x55_c00185{left:321.866667pt;}
.x90_c00185{left:324.000000pt;}
.x40_c00185{left:324.933333pt;}
.x30_c00185{left:325.866667pt;}
.x84_c00185{left:327.066667pt;}
.x48_c00185{left:328.133333pt;}
.x95_c00185{left:330.000000pt;}
.x79_c00185{left:331.066667pt;}
.x6d_c00185{left:332.800000pt;}
.x5f_c00185{left:333.733333pt;}
.xf_c00185{left:335.066667pt;}
.x8b_c00185{left:336.266667pt;}
.x73_c00185{left:338.800000pt;}
.x3b_c00185{left:339.866667pt;}
.x15_c00185{left:340.800000pt;}
.x41_c00185{left:343.866667pt;}
.x10_c00185{left:345.333333pt;}
.x60_c00185{left:346.266667pt;}
.x63_c00185{left:348.266667pt;}
.x1c_c00185{left:349.733333pt;}
.x3c_c00185{left:350.800000pt;}
.x5b_c00185{left:352.533333pt;}
.x9_c00185{left:354.133333pt;}
.x42_c00185{left:355.733333pt;}
.x24_c00185{left:357.333333pt;}
.x2c_c00185{left:358.266667pt;}
.x2_c00185{left:359.733333pt;}
.x49_c00185{left:362.000000pt;}
.x6e_c00185{left:363.466667pt;}
.x28_c00185{left:365.466667pt;}
.x9a_c00185{left:368.533333pt;}
.x35_c00185{left:371.733333pt;}
.x7b_c00185{left:372.800000pt;}
.x16_c00185{left:374.133333pt;}
.x4c_c00185{left:375.866667pt;}
.x93_c00185{left:377.466667pt;}
.x8e_c00185{left:379.333333pt;}
.x9b_c00185{left:380.266667pt;}
.x3d_c00185{left:381.866667pt;}
.x56_c00185{left:383.066667pt;}
.x2d_c00185{left:384.133333pt;}
.x4f_c00185{left:385.200000pt;}
.x74_c00185{left:386.533333pt;}
.x43_c00185{left:389.333333pt;}
.xa_c00185{left:391.600000pt;}
.x8c_c00185{left:393.200000pt;}
.x7c_c00185{left:394.266667pt;}
.x85_c00185{left:395.200000pt;}
.xa6_c00185{left:397.200000pt;}
.x11_c00185{left:399.733333pt;}
.x36_c00185{left:402.133333pt;}
.x61_c00185{left:403.733333pt;}
.x6f_c00185{left:405.066667pt;}
.x88_c00185{left:406.666667pt;}
.x31_c00185{left:408.400000pt;}
.x29_c00185{left:410.000000pt;}
.xa0_c00185{left:410.933333pt;}
.x7d_c00185{left:412.533333pt;}
.x1d_c00185{left:413.466667pt;}
.x96_c00185{left:415.466667pt;}
.x7f_c00185{left:417.333333pt;}
.x17_c00185{left:420.266667pt;}
.x44_c00185{left:421.333333pt;}
.x12_c00185{left:423.066667pt;}
.x77_c00185{left:425.200000pt;}
.x75_c00185{left:426.266667pt;}
.x2e_c00185{left:427.600000pt;}
.x94_c00185{left:430.000000pt;}
.xa7_c00185{left:431.466667pt;}
.x37_c00185{left:432.533333pt;}
.x50_c00185{left:434.533333pt;}
.x9c_c00185{left:436.533333pt;}
.x91_c00185{left:444.266667pt;}
.xb6_c00185{left:453.466667pt;}
.xfa_c00185{left:465.600000pt;}
.xa8_c00185{left:479.733333pt;}
.xbc_c00185{left:480.933333pt;}
.xde_c00185{left:481.866667pt;}
.x13a_c00185{left:482.800000pt;}
.xd2_c00185{left:495.600000pt;}
.xe6_c00185{left:497.066667pt;}
.xfb_c00185{left:501.066667pt;}
.x113_c00185{left:503.200000pt;}
.x12d_c00185{left:505.600000pt;}
.xae_c00185{left:507.466667pt;}
.xa9_c00185{left:508.800000pt;}
.x11e_c00185{left:511.200000pt;}
.x130_c00185{left:513.600000pt;}
.xb4_c00185{left:516.533333pt;}
.x13d_c00185{left:517.466667pt;}
.xbd_c00185{left:518.800000pt;}
.xb7_c00185{left:519.733333pt;}
.xc4_c00185{left:520.800000pt;}
.xd9_c00185{left:523.866667pt;}
.x104_c00185{left:525.866667pt;}
.xed_c00185{left:527.333333pt;}
.x109_c00185{left:528.933333pt;}
.xe7_c00185{left:532.000000pt;}
.xfc_c00185{left:534.000000pt;}
.xc5_c00185{left:535.466667pt;}
.xdf_c00185{left:537.866667pt;}
.xe1_c00185{left:539.200000pt;}
.x12a_c00185{left:540.266667pt;}
.xbe_c00185{left:541.200000pt;}
.xcb_c00185{left:544.666667pt;}
.xea_c00185{left:545.600000pt;}
.x100_c00185{left:549.066667pt;}
.xaf_c00185{left:550.933333pt;}
.x114_c00185{left:553.733333pt;}
.xd3_c00185{left:555.066667pt;}
.xb5_c00185{left:556.533333pt;}
.x119_c00185{left:559.200000pt;}
.xb8_c00185{left:560.666667pt;}
.xcc_c00185{left:564.133333pt;}
.x134_c00185{left:565.733333pt;}
.x11a_c00185{left:567.200000pt;}
.x101_c00185{left:568.933333pt;}
.x115_c00185{left:570.400000pt;}
.xc6_c00185{left:573.600000pt;}
.x126_c00185{left:574.666667pt;}
.x10a_c00185{left:575.600000pt;}
.x124_c00185{left:579.333333pt;}
.x12b_c00185{left:580.533333pt;}
.x138_c00185{left:581.600000pt;}
.xbf_c00185{left:582.533333pt;}
.xf3_c00185{left:583.600000pt;}
.xd4_c00185{left:585.200000pt;}
.xaa_c00185{left:587.200000pt;}
.xe2_c00185{left:588.400000pt;}
.xc7_c00185{left:590.533333pt;}
.xb0_c00185{left:591.866667pt;}
.x139_c00185{left:595.733333pt;}
.xf0_c00185{left:599.333333pt;}
.x121_c00185{left:600.933333pt;}
.xd5_c00185{left:602.800000pt;}
.x105_c00185{left:603.733333pt;}
.x13b_c00185{left:604.800000pt;}
.x11b_c00185{left:606.266667pt;}
.xab_c00185{left:607.333333pt;}
.xe3_c00185{left:609.866667pt;}
.xee_c00185{left:611.466667pt;}
.x13e_c00185{left:613.066667pt;}
.x10d_c00185{left:614.133333pt;}
.xcd_c00185{left:615.333333pt;}
.xf6_c00185{left:616.666667pt;}
.x131_c00185{left:617.866667pt;}
.xfd_c00185{left:621.333333pt;}
.x106_c00185{left:622.266667pt;}
.x102_c00185{left:623.600000pt;}
.xf1_c00185{left:624.933333pt;}
.x11f_c00185{left:626.666667pt;}
.xb9_c00185{left:627.600000pt;}
.xfe_c00185{left:629.333333pt;}
.xce_c00185{left:631.333333pt;}
.x116_c00185{left:634.000000pt;}
.xda_c00185{left:635.600000pt;}
.x135_c00185{left:639.066667pt;}
.xe4_c00185{left:640.000000pt;}
.x129_c00185{left:641.866667pt;}
.xe0_c00185{left:642.933333pt;}
.xba_c00185{left:643.866667pt;}
.xc0_c00185{left:645.333333pt;}
.x10b_c00185{left:646.533333pt;}
.xdb_c00185{left:649.066667pt;}
.xc8_c00185{left:650.666667pt;}
.x140_c00185{left:652.266667pt;}
.x111_c00185{left:653.466667pt;}
.x10e_c00185{left:654.400000pt;}
.x141_c00185{left:656.133333pt;}
.xe8_c00185{left:657.733333pt;}
.x103_c00185{left:660.133333pt;}
.xc9_c00185{left:662.133333pt;}
.x127_c00185{left:663.600000pt;}
.xb1_c00185{left:665.733333pt;}
.xff_c00185{left:666.800000pt;}
.x107_c00185{left:669.333333pt;}
.xf7_c00185{left:671.066667pt;}
.xe5_c00185{left:674.266667pt;}
.xc1_c00185{left:675.466667pt;}
.xd6_c00185{left:676.666667pt;}
.x120_c00185{left:678.400000pt;}
.x122_c00185{left:679.600000pt;}
.x132_c00185{left:680.933333pt;}
.x13c_c00185{left:681.866667pt;}
.x136_c00185{left:682.933333pt;}
.x117_c00185{left:684.266667pt;}
.xcf_c00185{left:686.000000pt;}
.xf4_c00185{left:687.333333pt;}
.xeb_c00185{left:690.933333pt;}
.xc2_c00185{left:693.066667pt;}
.xf2_c00185{left:695.333333pt;}
.x125_c00185{left:697.066667pt;}
.xca_c00185{left:700.266667pt;}
.xbb_c00185{left:702.400000pt;}
.xac_c00185{left:704.266667pt;}
.x133_c00185{left:705.200000pt;}
.xf5_c00185{left:707.200000pt;}
.x11c_c00185{left:708.933333pt;}
.xd0_c00185{left:710.000000pt;}
.xd7_c00185{left:711.600000pt;}
.xdc_c00185{left:713.466667pt;}
.x10f_c00185{left:714.933333pt;}
.x12f_c00185{left:717.200000pt;}
.x118_c00185{left:720.133333pt;}
.x11d_c00185{left:721.066667pt;}
.xef_c00185{left:723.466667pt;}
.xe9_c00185{left:724.533333pt;}
.xad_c00185{left:726.400000pt;}
.x12e_c00185{left:728.000000pt;}
.xd8_c00185{left:728.933333pt;}
.xd1_c00185{left:729.866667pt;}
.x12c_c00185{left:732.133333pt;}
.x108_c00185{left:733.066667pt;}
.xf8_c00185{left:734.400000pt;}
.x128_c00185{left:736.000000pt;}
.xc3_c00185{left:737.200000pt;}
.x123_c00185{left:739.066667pt;}
.x137_c00185{left:741.200000pt;}
.xb2_c00185{left:742.133333pt;}
.x10c_c00185{left:744.133333pt;}
.x13f_c00185{left:745.733333pt;}
.x112_c00185{left:747.600000pt;}
.xec_c00185{left:749.200000pt;}
.xb3_c00185{left:752.000000pt;}
.xf9_c00185{left:753.866667pt;}
.xdd_c00185{left:755.733333pt;}
.x110_c00185{left:759.066667pt;}
}





/* 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_c00186 {
    display:none;
  }
  .loading-indicator_c00186.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00186 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_c00186 { 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_c00186" -> "#page-container .classname_c00186")
 */
.pf_c00186 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00186 { /* 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_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00186 { /* 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_c00186 { /* 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_c00186 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00186 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00186 {overflow:visible;}
  }
}
.c_c00186 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00186 { /* 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_c00186:after { /* webkit #35443 */
  content: '';
}
.t_c00186:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00186 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 */
}
.__c00186 { /* 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_c00186 { /* info for Javascript */
  display:none;
}
.l_c00186 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00186 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00186 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00186: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_c00186 {
    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_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00186.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_c00186 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00186;src:url('chunks/assets/font_fa2bbdc3a2871d777158af48.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.000000;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;}
.ma9_c00186{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00186{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00186{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00186{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.md3_c00186{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00186{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00186{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m34_c00186{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00186{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m24_c00186{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00186{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00186{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m49_c00186{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md2_c00186{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00186{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00186{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md1_c00186{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md0_c00186{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m85_c00186{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m91_c00186{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00186{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m40_c00186{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m35_c00186{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m98_c00186{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00186{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m18_c00186{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00186{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00186{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00186{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00186{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mde_c00186{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00186{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mae_c00186{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00186{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m75_c00186{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00186{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00186{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m2_c00186{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00186{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00186{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m76_c00186{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00186{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m21_c00186{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m48_c00186{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m27_c00186{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00186{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00186{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m46_c00186{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00186{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00186{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00186{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m84_c00186{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.maf_c00186{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m23_c00186{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00186{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00186{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00186{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.me8_c00186{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00186{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m79_c00186{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00186{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00186{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00186{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00186{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00186{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00186{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m44_c00186{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m83_c00186{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m7_c00186{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m32_c00186{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00186{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m95_c00186{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00186{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m59_c00186{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00186{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00186{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m78_c00186{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m39_c00186{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m66_c00186{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00186{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00186{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m19_c00186{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me2_c00186{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m93_c00186{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m73_c00186{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00186{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.me_c00186{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00186{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00186{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m67_c00186{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m90_c00186{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00186{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00186{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m88_c00186{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m41_c00186{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00186{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m94_c00186{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.maa_c00186{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma_c00186{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md7_c00186{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00186{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mee_c00186{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me9_c00186{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m97_c00186{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m16_c00186{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00186{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00186{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00186{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00186{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3_c00186{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m68_c00186{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9_c00186{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00186{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m92_c00186{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00186{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00186{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m45_c00186{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00186{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m20_c00186{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mce_c00186{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00186{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m51_c00186{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m82_c00186{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mc_c00186{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00186{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00186{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m17_c00186{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m56_c00186{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m10_c00186{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00186{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mac_c00186{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m80_c00186{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me0_c00186{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m26_c00186{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m42_c00186{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00186{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m43_c00186{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md_c00186{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m54_c00186{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mab_c00186{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m74_c00186{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m36_c00186{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m87_c00186{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m22_c00186{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me5_c00186{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m57_c00186{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m11_c00186{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00186{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m81_c00186{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m14_c00186{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00186{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m15_c00186{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00186{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m38_c00186{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m33_c00186{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m13_c00186{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m47_c00186{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.med_c00186{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me7_c00186{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00186{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m28_c00186{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00186{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00186{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m96_c00186{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12_c00186{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m55_c00186{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me1_c00186{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00186{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m69_c00186{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00186{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00186{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00186{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00186{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mda_c00186{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00186{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md9_c00186{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m61_c00186{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m25_c00186{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00186{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mf_c00186{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m65_c00186{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me4_c00186{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mea_c00186{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00186{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.me3_c00186{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m86_c00186{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00186{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00186{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00186{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8_c00186{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00186{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m63_c00186{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m89_c00186{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m72_c00186{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m71_c00186{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00186{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00186{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m64_c00186{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6_c00186{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m60_c00186{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mad_c00186{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00186{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00186{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m29_c00186{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m58_c00186{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00186{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m31_c00186{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00186{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);}
.m6b_c00186{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m53_c00186{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00186{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00186{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mca_c00186{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md8_c00186{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00186{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00186{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m50_c00186{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00186{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4_c00186{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m30_c00186{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m70_c00186{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mef_c00186{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.meb_c00186{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m62_c00186{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mba_c00186{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00186{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m52_c00186{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00186{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00186{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00186{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00186{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.mec_c00186{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00186{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m99_c00186{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.md6_c00186{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me6_c00186{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00186{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m77_c00186{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00186{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m37_c00186{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.md5_c00186{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00186{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.md4_c00186{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00186{transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00186{transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);}
.m0_c00186{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{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__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:-8.709957px;}
.ws3_c00186{word-spacing:0.000000px;}
.ws1_c00186{word-spacing:0.853659px;}
.ws2_c00186{word-spacing:8.484848px;}
.fc0_c00186{color:transparent;}
.fs6_c00186{font-size:48.000000px;}
.fs5_c00186{font-size:54.000000px;}
.fs3_c00186{font-size:60.000000px;}
.fs2_c00186{font-size:66.000000px;}
.fs4_c00186{font-size:72.000000px;}
.fs0_c00186{font-size:84.000000px;}
.fs1_c00186{font-size:90.000000px;}
.y0_c00186{bottom:0.000000px;}
.y64_c00186{bottom:174.600000px;}
.y35_c00186{bottom:191.550000px;}
.y63_c00186{bottom:192.600000px;}
.y34_c00186{bottom:206.250000px;}
.y62_c00186{bottom:210.600000px;}
.y61_c00186{bottom:232.200000px;}
.y33_c00186{bottom:244.950000px;}
.y60_c00186{bottom:250.500000px;}
.y32_c00186{bottom:262.950000px;}
.y31_c00186{bottom:280.200000px;}
.y5f_c00186{bottom:282.000000px;}
.y30_c00186{bottom:298.200000px;}
.y5e_c00186{bottom:303.900000px;}
.y2f_c00186{bottom:316.200000px;}
.y5d_c00186{bottom:322.650000px;}
.y5c_c00186{bottom:348.900000px;}
.y2e_c00186{bottom:350.400000px;}
.y2d_c00186{bottom:351.900000px;}
.y2c_c00186{bottom:369.900000px;}
.y5b_c00186{bottom:370.500000px;}
.y2b_c00186{bottom:387.600000px;}
.y5a_c00186{bottom:392.850000px;}
.y2a_c00186{bottom:405.600000px;}
.y59_c00186{bottom:411.900000px;}
.y29_c00186{bottom:423.600000px;}
.y58_c00186{bottom:429.900000px;}
.y28_c00186{bottom:441.600000px;}
.y57_c00186{bottom:447.900000px;}
.y27_c00186{bottom:459.300000px;}
.y56_c00186{bottom:467.700000px;}
.y26_c00186{bottom:481.650000px;}
.y55_c00186{bottom:487.200000px;}
.y25_c00186{bottom:499.350000px;}
.y54_c00186{bottom:504.900000px;}
.y24_c00186{bottom:525.600000px;}
.y53_c00186{bottom:527.250000px;}
.y23_c00186{bottom:543.300000px;}
.y52_c00186{bottom:549.150000px;}
.y22_c00186{bottom:561.300000px;}
.y51_c00186{bottom:571.800000px;}
.y21_c00186{bottom:579.000000px;}
.y50_c00186{bottom:593.700000px;}
.y20_c00186{bottom:597.000000px;}
.y1f_c00186{bottom:615.000000px;}
.y4f_c00186{bottom:616.050000px;}
.y1e_c00186{bottom:632.700000px;}
.y4e_c00186{bottom:634.050000px;}
.y1d_c00186{bottom:650.700000px;}
.y4d_c00186{bottom:652.350000px;}
.y1c_c00186{bottom:668.400000px;}
.y4c_c00186{bottom:672.450000px;}
.y1b_c00186{bottom:686.400000px;}
.y4b_c00186{bottom:691.500000px;}
.y1a_c00186{bottom:704.400000px;}
.y4a_c00186{bottom:713.100000px;}
.y19_c00186{bottom:722.100000px;}
.y49_c00186{bottom:731.850000px;}
.y18_c00186{bottom:740.100000px;}
.y17_c00186{bottom:757.800000px;}
.y48_c00186{bottom:758.250000px;}
.y47_c00186{bottom:767.250000px;}
.y16_c00186{bottom:775.500000px;}
.y46_c00186{bottom:787.800000px;}
.y15_c00186{bottom:793.200000px;}
.y45_c00186{bottom:798.900000px;}
.y14_c00186{bottom:810.900000px;}
.y44_c00186{bottom:813.900000px;}
.y13_c00186{bottom:828.600000px;}
.y43_c00186{bottom:835.950000px;}
.y12_c00186{bottom:846.300000px;}
.y42_c00186{bottom:859.650000px;}
.y11_c00186{bottom:864.300000px;}
.y41_c00186{bottom:880.200000px;}
.y10_c00186{bottom:882.000000px;}
.y40_c00186{bottom:902.100000px;}
.yf_c00186{bottom:903.600000px;}
.ye_c00186{bottom:925.500000px;}
.y3f_c00186{bottom:936.300000px;}
.yd_c00186{bottom:939.150000px;}
.yc_c00186{bottom:956.850000px;}
.y3e_c00186{bottom:972.600000px;}
.yb_c00186{bottom:978.900000px;}
.y3d_c00186{bottom:990.600000px;}
.ya_c00186{bottom:997.650000px;}
.y3c_c00186{bottom:1008.300000px;}
.y9_c00186{bottom:1014.900000px;}
.y3b_c00186{bottom:1026.000000px;}
.y8_c00186{bottom:1032.600000px;}
.y3a_c00186{bottom:1043.700000px;}
.y7_c00186{bottom:1050.600000px;}
.y39_c00186{bottom:1066.200000px;}
.y6_c00186{bottom:1068.300000px;}
.y38_c00186{bottom:1084.200000px;}
.y5_c00186{bottom:1086.000000px;}
.y37_c00186{bottom:1101.900000px;}
.y4_c00186{bottom:1104.000000px;}
.y36_c00186{bottom:1119.600000px;}
.y3_c00186{bottom:1121.700000px;}
.y2_c00186{bottom:1145.850000px;}
.y1_c00186{bottom:1147.650000px;}
.h8_c00186{height:48.000000px;}
.h7_c00186{height:54.000000px;}
.h5_c00186{height:60.000000px;}
.h4_c00186{height:66.000000px;}
.h6_c00186{height:72.000000px;}
.h2_c00186{height:84.000000px;}
.h3_c00186{height:90.000000px;}
.h0_c00186{height:1275.480010px;}
.h1_c00186{height:1275.750000px;}
.w1_c00186{width:963.000000px;}
.w0_c00186{width:963.359985px;}
.x0_c00186{left:0.000000px;}
.x83_c00186{left:114.150000px;}
.x9f_c00186{left:115.500000px;}
.x9c_c00186{left:123.450000px;}
.x9d_c00186{left:129.600000px;}
.xb_c00186{left:130.950000px;}
.x3_c00186{left:132.450000px;}
.x85_c00186{left:134.100000px;}
.x97_c00186{left:144.600000px;}
.x3a_c00186{left:150.150000px;}
.x2c_c00186{left:151.950000px;}
.x47_c00186{left:154.350000px;}
.x8f_c00186{left:159.900000px;}
.x2d_c00186{left:161.700000px;}
.x40_c00186{left:163.800000px;}
.x1f_c00186{left:166.200000px;}
.x18_c00186{left:168.450000px;}
.x79_c00186{left:169.800000px;}
.x4_c00186{left:171.750000px;}
.x74_c00186{left:174.150000px;}
.x5d_c00186{left:175.350000px;}
.x77_c00186{left:176.400000px;}
.x49_c00186{left:178.200000px;}
.x20_c00186{left:179.550000px;}
.x51_c00186{left:180.600000px;}
.x34_c00186{left:182.250000px;}
.x6f_c00186{left:185.850000px;}
.x59_c00186{left:187.650000px;}
.x12_c00186{left:190.050000px;}
.x69_c00186{left:192.000000px;}
.x5_c00186{left:196.950000px;}
.x71_c00186{left:198.600000px;}
.x87_c00186{left:199.800000px;}
.x55_c00186{left:201.000000px;}
.x26_c00186{left:204.300000px;}
.x8b_c00186{left:206.550000px;}
.x38_c00186{left:207.750000px;}
.x13_c00186{left:209.100000px;}
.x92_c00186{left:210.900000px;}
.x19_c00186{left:212.700000px;}
.x3b_c00186{left:213.900000px;}
.x62_c00186{left:216.750000px;}
.x98_c00186{left:218.700000px;}
.xc_c00186{left:221.550000px;}
.x5e_c00186{left:223.200000px;}
.x66_c00186{left:225.600000px;}
.x35_c00186{left:226.950000px;}
.x7a_c00186{left:228.450000px;}
.x78_c00186{left:232.200000px;}
.x44_c00186{left:233.250000px;}
.x5a_c00186{left:235.500000px;}
.x56_c00186{left:237.000000px;}
.x6c_c00186{left:238.650000px;}
.x6d_c00186{left:240.150000px;}
.x27_c00186{left:241.800000px;}
.xd_c00186{left:243.150000px;}
.x52_c00186{left:246.900000px;}
.x41_c00186{left:248.400000px;}
.x90_c00186{left:249.600000px;}
.x7c_c00186{left:250.800000px;}
.x2e_c00186{left:252.450000px;}
.x48_c00186{left:254.400000px;}
.x53_c00186{left:255.900000px;}
.x14_c00186{left:257.400000px;}
.x93_c00186{left:261.000000px;}
.x94_c00186{left:263.250000px;}
.x4a_c00186{left:264.600000px;}
.x5b_c00186{left:267.600000px;}
.x2f_c00186{left:269.700000px;}
.x72_c00186{left:271.200000px;}
.x1a_c00186{left:273.150000px;}
.xe_c00186{left:275.850000px;}
.x15_c00186{left:277.500000px;}
.x4e_c00186{left:278.850000px;}
.x75_c00186{left:280.350000px;}
.x21_c00186{left:282.600000px;}
.x45_c00186{left:284.400000px;}
.x7b_c00186{left:285.750000px;}
.x6_c00186{left:287.700000px;}
.x63_c00186{left:289.500000px;}
.x36_c00186{left:291.450000px;}
.x28_c00186{left:292.500000px;}
.x7d_c00186{left:294.300000px;}
.x86_c00186{left:295.350000px;}
.x1b_c00186{left:296.850000px;}
.x39_c00186{left:300.300000px;}
.x88_c00186{left:301.350000px;}
.x3c_c00186{left:304.950000px;}
.x22_c00186{left:306.300000px;}
.x95_c00186{left:308.550000px;}
.x57_c00186{left:310.800000px;}
.x99_c00186{left:312.300000px;}
.x5c_c00186{left:313.650000px;}
.x4b_c00186{left:314.700000px;}
.x3d_c00186{left:316.500000px;}
.xf_c00186{left:317.550000px;}
.x4f_c00186{left:319.200000px;}
.x7_c00186{left:321.150000px;}
.x8e_c00186{left:323.100000px;}
.x5f_c00186{left:324.300000px;}
.x76_c00186{left:325.350000px;}
.x16_c00186{left:326.850000px;}
.x81_c00186{left:328.500000px;}
.x9b_c00186{left:329.700000px;}
.x30_c00186{left:331.200000px;}
.x1c_c00186{left:333.600000px;}
.x8c_c00186{left:334.650000px;}
.x64_c00186{left:336.600000px;}
.x10_c00186{left:338.400000px;}
.x29_c00186{left:342.900000px;}
.x6e_c00186{left:345.300000px;}
.x9a_c00186{left:346.500000px;}
.x60_c00186{left:348.000000px;}
.x8_c00186{left:349.200000px;}
.x46_c00186{left:351.300000px;}
.x6a_c00186{left:353.100000px;}
.x1_c00186{left:355.350000px;}
.x42_c00186{left:357.150000px;}
.x23_c00186{left:359.250000px;}
.x31_c00186{left:364.650000px;}
.x89_c00186{left:366.450000px;}
.x7e_c00186{left:368.400000px;}
.x67_c00186{left:370.650000px;}
.x70_c00186{left:373.650000px;}
.x37_c00186{left:375.450000px;}
.x2a_c00186{left:377.400000px;}
.x1d_c00186{left:378.600000px;}
.x58_c00186{left:379.950000px;}
.x96_c00186{left:383.100000px;}
.x32_c00186{left:385.200000px;}
.x65_c00186{left:386.700000px;}
.x84_c00186{left:388.950000px;}
.x9_c00186{left:390.900000px;}
.x4c_c00186{left:392.400000px;}
.x8d_c00186{left:393.750000px;}
.x61_c00186{left:397.650000px;}
.x1e_c00186{left:399.150000px;}
.x24_c00186{left:400.650000px;}
.x7f_c00186{left:402.300000px;}
.x11_c00186{left:403.500000px;}
.x3e_c00186{left:405.450000px;}
.x9e_c00186{left:406.800000px;}
.x73_c00186{left:409.350000px;}
.x6b_c00186{left:410.700000px;}
.xa_c00186{left:411.750000px;}
.x82_c00186{left:412.800000px;}
.x4d_c00186{left:416.100000px;}
.x91_c00186{left:418.950000px;}
.x80_c00186{left:420.300000px;}
.x54_c00186{left:421.800000px;}
.x3f_c00186{left:423.450000px;}
.x50_c00186{left:424.950000px;}
.x2b_c00186{left:426.300000px;}
.x17_c00186{left:427.350000px;}
.x43_c00186{left:429.450000px;}
.x68_c00186{left:430.800000px;}
.x33_c00186{left:433.050000px;}
.x8a_c00186{left:435.150000px;}
.x25_c00186{left:437.700000px;}
.xc0_c00186{left:469.800000px;}
.x10c_c00186{left:471.300000px;}
.x113_c00186{left:473.400000px;}
.xa0_c00186{left:487.050000px;}
.xdc_c00186{left:488.550000px;}
.xfa_c00186{left:491.700000px;}
.xa1_c00186{left:505.800000px;}
.xf8_c00186{left:506.850000px;}
.xf5_c00186{left:507.900000px;}
.xc6_c00186{left:509.550000px;}
.xa8_c00186{left:510.600000px;}
.x10a_c00186{left:515.850000px;}
.x111_c00186{left:517.050000px;}
.xa9_c00186{left:520.350000px;}
.xee_c00186{left:529.650000px;}
.xd4_c00186{left:530.700000px;}
.xdd_c00186{left:532.050000px;}
.xba_c00186{left:533.250000px;}
.xcf_c00186{left:538.350000px;}
.xc1_c00186{left:540.000000px;}
.x112_c00186{left:541.200000px;}
.x10b_c00186{left:542.250000px;}
.xb1_c00186{left:544.050000px;}
.xd5_c00186{left:547.950000px;}
.xf9_c00186{left:549.300000px;}
.x102_c00186{left:550.350000px;}
.xde_c00186{left:552.600000px;}
.xaa_c00186{left:554.550000px;}
.xc7_c00186{left:556.350000px;}
.xa2_c00186{left:559.500000px;}
.xfc_c00186{left:560.550000px;}
.xbb_c00186{left:562.350000px;}
.xc2_c00186{left:564.450000px;}
.xff_c00186{left:567.150000px;}
.xb2_c00186{left:569.250000px;}
.xe5_c00186{left:570.300000px;}
.xab_c00186{left:574.350000px;}
.xc8_c00186{left:576.900000px;}
.xd0_c00186{left:577.950000px;}
.xe0_c00186{left:579.900000px;}
.xd6_c00186{left:582.900000px;}
.xbc_c00186{left:584.700000px;}
.xa3_c00186{left:585.750000px;}
.x10d_c00186{left:587.250000px;}
.x103_c00186{left:591.000000px;}
.xe4_c00186{left:592.200000px;}
.x116_c00186{left:595.800000px;}
.xf0_c00186{left:597.300000px;}
.xfb_c00186{left:598.350000px;}
.xb3_c00186{left:601.650000px;}
.xfd_c00186{left:603.750000px;}
.x106_c00186{left:605.550000px;}
.xea_c00186{left:607.350000px;}
.xe2_c00186{left:610.950000px;}
.xb4_c00186{left:614.550000px;}
.xbd_c00186{left:617.400000px;}
.xd7_c00186{left:619.650000px;}
.x104_c00186{left:622.050000px;}
.x117_c00186{left:624.300000px;}
.xdf_c00186{left:629.250000px;}
.xe1_c00186{left:631.800000px;}
.xc3_c00186{left:635.100000px;}
.xac_c00186{left:636.600000px;}
.xef_c00186{left:639.450000px;}
.xb5_c00186{left:640.500000px;}
.x114_c00186{left:642.300000px;}
.xe6_c00186{left:644.100000px;}
.xfe_c00186{left:646.950000px;}
.x119_c00186{left:648.000000px;}
.xd8_c00186{left:650.250000px;}
.xf1_c00186{left:652.050000px;}
.xc9_c00186{left:656.850000px;}
.x100_c00186{left:658.650000px;}
.xf6_c00186{left:660.150000px;}
.xbe_c00186{left:662.400000px;}
.x107_c00186{left:663.900000px;}
.xd1_c00186{left:666.150000px;}
.xca_c00186{left:667.950000px;}
.xa4_c00186{left:675.450000px;}
.xe7_c00186{left:676.500000px;}
.xe3_c00186{left:678.600000px;}
.xb6_c00186{left:681.600000px;}
.x10e_c00186{left:683.400000px;}
.xd9_c00186{left:686.250000px;}
.xad_c00186{left:687.300000px;}
.xcb_c00186{left:688.500000px;}
.xa5_c00186{left:691.350000px;}
.x101_c00186{left:694.650000px;}
.xe8_c00186{left:696.000000px;}
.xc4_c00186{left:699.900000px;}
.x115_c00186{left:705.300000px;}
.xda_c00186{left:708.150000px;}
.x108_c00186{left:711.750000px;}
.xf3_c00186{left:713.100000px;}
.xae_c00186{left:714.300000px;}
.xa6_c00186{left:715.800000px;}
.xb7_c00186{left:717.300000px;}
.xd2_c00186{left:719.100000px;}
.x118_c00186{left:722.700000px;}
.x10f_c00186{left:725.550000px;}
.xcc_c00186{left:728.850000px;}
.xbf_c00186{left:732.900000px;}
.xf4_c00186{left:735.000000px;}
.x109_c00186{left:736.650000px;}
.xeb_c00186{left:739.800000px;}
.xb8_c00186{left:742.500000px;}
.xa7_c00186{left:748.950000px;}
.xf2_c00186{left:750.000000px;}
.x110_c00186{left:752.850000px;}
.x11a_c00186{left:757.500000px;}
.xcd_c00186{left:761.550000px;}
.xf7_c00186{left:763.800000px;}
.xd3_c00186{left:764.850000px;}
.xaf_c00186{left:767.550000px;}
.xdb_c00186{left:770.850000px;}
.xec_c00186{left:775.050000px;}
.xe9_c00186{left:777.300000px;}
.x2_c00186{left:780.900000px;}
.xce_c00186{left:782.100000px;}
.x105_c00186{left:786.600000px;}
.xc5_c00186{left:789.900000px;}
.xb9_c00186{left:791.100000px;}
.xb0_c00186{left:795.300000px;}
.xed_c00186{left:803.550000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws0_c00186{word-spacing:-7.742184pt;}
.ws3_c00186{word-spacing:0.000000pt;}
.ws1_c00186{word-spacing:0.758808pt;}
.ws2_c00186{word-spacing:7.542088pt;}
.fs6_c00186{font-size:42.666667pt;}
.fs5_c00186{font-size:48.000000pt;}
.fs3_c00186{font-size:53.333333pt;}
.fs2_c00186{font-size:58.666667pt;}
.fs4_c00186{font-size:64.000000pt;}
.fs0_c00186{font-size:74.666667pt;}
.fs1_c00186{font-size:80.000000pt;}
.y0_c00186{bottom:0.000000pt;}
.y64_c00186{bottom:155.200000pt;}
.y35_c00186{bottom:170.266667pt;}
.y63_c00186{bottom:171.200000pt;}
.y34_c00186{bottom:183.333333pt;}
.y62_c00186{bottom:187.200000pt;}
.y61_c00186{bottom:206.400000pt;}
.y33_c00186{bottom:217.733333pt;}
.y60_c00186{bottom:222.666667pt;}
.y32_c00186{bottom:233.733333pt;}
.y31_c00186{bottom:249.066667pt;}
.y5f_c00186{bottom:250.666667pt;}
.y30_c00186{bottom:265.066667pt;}
.y5e_c00186{bottom:270.133333pt;}
.y2f_c00186{bottom:281.066667pt;}
.y5d_c00186{bottom:286.800000pt;}
.y5c_c00186{bottom:310.133333pt;}
.y2e_c00186{bottom:311.466667pt;}
.y2d_c00186{bottom:312.800000pt;}
.y2c_c00186{bottom:328.800000pt;}
.y5b_c00186{bottom:329.333333pt;}
.y2b_c00186{bottom:344.533333pt;}
.y5a_c00186{bottom:349.200000pt;}
.y2a_c00186{bottom:360.533333pt;}
.y59_c00186{bottom:366.133333pt;}
.y29_c00186{bottom:376.533333pt;}
.y58_c00186{bottom:382.133333pt;}
.y28_c00186{bottom:392.533333pt;}
.y57_c00186{bottom:398.133333pt;}
.y27_c00186{bottom:408.266667pt;}
.y56_c00186{bottom:415.733333pt;}
.y26_c00186{bottom:428.133333pt;}
.y55_c00186{bottom:433.066667pt;}
.y25_c00186{bottom:443.866667pt;}
.y54_c00186{bottom:448.800000pt;}
.y24_c00186{bottom:467.200000pt;}
.y53_c00186{bottom:468.666667pt;}
.y23_c00186{bottom:482.933333pt;}
.y52_c00186{bottom:488.133333pt;}
.y22_c00186{bottom:498.933333pt;}
.y51_c00186{bottom:508.266667pt;}
.y21_c00186{bottom:514.666667pt;}
.y50_c00186{bottom:527.733333pt;}
.y20_c00186{bottom:530.666667pt;}
.y1f_c00186{bottom:546.666667pt;}
.y4f_c00186{bottom:547.600000pt;}
.y1e_c00186{bottom:562.400000pt;}
.y4e_c00186{bottom:563.600000pt;}
.y1d_c00186{bottom:578.400000pt;}
.y4d_c00186{bottom:579.866667pt;}
.y1c_c00186{bottom:594.133333pt;}
.y4c_c00186{bottom:597.733333pt;}
.y1b_c00186{bottom:610.133333pt;}
.y4b_c00186{bottom:614.666667pt;}
.y1a_c00186{bottom:626.133333pt;}
.y4a_c00186{bottom:633.866667pt;}
.y19_c00186{bottom:641.866667pt;}
.y49_c00186{bottom:650.533333pt;}
.y18_c00186{bottom:657.866667pt;}
.y17_c00186{bottom:673.600000pt;}
.y48_c00186{bottom:674.000000pt;}
.y47_c00186{bottom:682.000000pt;}
.y16_c00186{bottom:689.333333pt;}
.y46_c00186{bottom:700.266667pt;}
.y15_c00186{bottom:705.066667pt;}
.y45_c00186{bottom:710.133333pt;}
.y14_c00186{bottom:720.800000pt;}
.y44_c00186{bottom:723.466667pt;}
.y13_c00186{bottom:736.533333pt;}
.y43_c00186{bottom:743.066667pt;}
.y12_c00186{bottom:752.266667pt;}
.y42_c00186{bottom:764.133333pt;}
.y11_c00186{bottom:768.266667pt;}
.y41_c00186{bottom:782.400000pt;}
.y10_c00186{bottom:784.000000pt;}
.y40_c00186{bottom:801.866667pt;}
.yf_c00186{bottom:803.200000pt;}
.ye_c00186{bottom:822.666667pt;}
.y3f_c00186{bottom:832.266667pt;}
.yd_c00186{bottom:834.800000pt;}
.yc_c00186{bottom:850.533333pt;}
.y3e_c00186{bottom:864.533333pt;}
.yb_c00186{bottom:870.133333pt;}
.y3d_c00186{bottom:880.533333pt;}
.ya_c00186{bottom:886.800000pt;}
.y3c_c00186{bottom:896.266667pt;}
.y9_c00186{bottom:902.133333pt;}
.y3b_c00186{bottom:912.000000pt;}
.y8_c00186{bottom:917.866667pt;}
.y3a_c00186{bottom:927.733333pt;}
.y7_c00186{bottom:933.866667pt;}
.y39_c00186{bottom:947.733333pt;}
.y6_c00186{bottom:949.600000pt;}
.y38_c00186{bottom:963.733333pt;}
.y5_c00186{bottom:965.333333pt;}
.y37_c00186{bottom:979.466667pt;}
.y4_c00186{bottom:981.333333pt;}
.y36_c00186{bottom:995.200000pt;}
.y3_c00186{bottom:997.066667pt;}
.y2_c00186{bottom:1018.533333pt;}
.y1_c00186{bottom:1020.133333pt;}
.h8_c00186{height:42.666667pt;}
.h7_c00186{height:48.000000pt;}
.h5_c00186{height:53.333333pt;}
.h4_c00186{height:58.666667pt;}
.h6_c00186{height:64.000000pt;}
.h2_c00186{height:74.666667pt;}
.h3_c00186{height:80.000000pt;}
.h0_c00186{height:1133.760009pt;}
.h1_c00186{height:1134.000000pt;}
.w1_c00186{width:856.000000pt;}
.w0_c00186{width:856.319987pt;}
.x0_c00186{left:0.000000pt;}
.x83_c00186{left:101.466667pt;}
.x9f_c00186{left:102.666667pt;}
.x9c_c00186{left:109.733333pt;}
.x9d_c00186{left:115.200000pt;}
.xb_c00186{left:116.400000pt;}
.x3_c00186{left:117.733333pt;}
.x85_c00186{left:119.200000pt;}
.x97_c00186{left:128.533333pt;}
.x3a_c00186{left:133.466667pt;}
.x2c_c00186{left:135.066667pt;}
.x47_c00186{left:137.200000pt;}
.x8f_c00186{left:142.133333pt;}
.x2d_c00186{left:143.733333pt;}
.x40_c00186{left:145.600000pt;}
.x1f_c00186{left:147.733333pt;}
.x18_c00186{left:149.733333pt;}
.x79_c00186{left:150.933333pt;}
.x4_c00186{left:152.666667pt;}
.x74_c00186{left:154.800000pt;}
.x5d_c00186{left:155.866667pt;}
.x77_c00186{left:156.800000pt;}
.x49_c00186{left:158.400000pt;}
.x20_c00186{left:159.600000pt;}
.x51_c00186{left:160.533333pt;}
.x34_c00186{left:162.000000pt;}
.x6f_c00186{left:165.200000pt;}
.x59_c00186{left:166.800000pt;}
.x12_c00186{left:168.933333pt;}
.x69_c00186{left:170.666667pt;}
.x5_c00186{left:175.066667pt;}
.x71_c00186{left:176.533333pt;}
.x87_c00186{left:177.600000pt;}
.x55_c00186{left:178.666667pt;}
.x26_c00186{left:181.600000pt;}
.x8b_c00186{left:183.600000pt;}
.x38_c00186{left:184.666667pt;}
.x13_c00186{left:185.866667pt;}
.x92_c00186{left:187.466667pt;}
.x19_c00186{left:189.066667pt;}
.x3b_c00186{left:190.133333pt;}
.x62_c00186{left:192.666667pt;}
.x98_c00186{left:194.400000pt;}
.xc_c00186{left:196.933333pt;}
.x5e_c00186{left:198.400000pt;}
.x66_c00186{left:200.533333pt;}
.x35_c00186{left:201.733333pt;}
.x7a_c00186{left:203.066667pt;}
.x78_c00186{left:206.400000pt;}
.x44_c00186{left:207.333333pt;}
.x5a_c00186{left:209.333333pt;}
.x56_c00186{left:210.666667pt;}
.x6c_c00186{left:212.133333pt;}
.x6d_c00186{left:213.466667pt;}
.x27_c00186{left:214.933333pt;}
.xd_c00186{left:216.133333pt;}
.x52_c00186{left:219.466667pt;}
.x41_c00186{left:220.800000pt;}
.x90_c00186{left:221.866667pt;}
.x7c_c00186{left:222.933333pt;}
.x2e_c00186{left:224.400000pt;}
.x48_c00186{left:226.133333pt;}
.x53_c00186{left:227.466667pt;}
.x14_c00186{left:228.800000pt;}
.x93_c00186{left:232.000000pt;}
.x94_c00186{left:234.000000pt;}
.x4a_c00186{left:235.200000pt;}
.x5b_c00186{left:237.866667pt;}
.x2f_c00186{left:239.733333pt;}
.x72_c00186{left:241.066667pt;}
.x1a_c00186{left:242.800000pt;}
.xe_c00186{left:245.200000pt;}
.x15_c00186{left:246.666667pt;}
.x4e_c00186{left:247.866667pt;}
.x75_c00186{left:249.200000pt;}
.x21_c00186{left:251.200000pt;}
.x45_c00186{left:252.800000pt;}
.x7b_c00186{left:254.000000pt;}
.x6_c00186{left:255.733333pt;}
.x63_c00186{left:257.333333pt;}
.x36_c00186{left:259.066667pt;}
.x28_c00186{left:260.000000pt;}
.x7d_c00186{left:261.600000pt;}
.x86_c00186{left:262.533333pt;}
.x1b_c00186{left:263.866667pt;}
.x39_c00186{left:266.933333pt;}
.x88_c00186{left:267.866667pt;}
.x3c_c00186{left:271.066667pt;}
.x22_c00186{left:272.266667pt;}
.x95_c00186{left:274.266667pt;}
.x57_c00186{left:276.266667pt;}
.x99_c00186{left:277.600000pt;}
.x5c_c00186{left:278.800000pt;}
.x4b_c00186{left:279.733333pt;}
.x3d_c00186{left:281.333333pt;}
.xf_c00186{left:282.266667pt;}
.x4f_c00186{left:283.733333pt;}
.x7_c00186{left:285.466667pt;}
.x8e_c00186{left:287.200000pt;}
.x5f_c00186{left:288.266667pt;}
.x76_c00186{left:289.200000pt;}
.x16_c00186{left:290.533333pt;}
.x81_c00186{left:292.000000pt;}
.x9b_c00186{left:293.066667pt;}
.x30_c00186{left:294.400000pt;}
.x1c_c00186{left:296.533333pt;}
.x8c_c00186{left:297.466667pt;}
.x64_c00186{left:299.200000pt;}
.x10_c00186{left:300.800000pt;}
.x29_c00186{left:304.800000pt;}
.x6e_c00186{left:306.933333pt;}
.x9a_c00186{left:308.000000pt;}
.x60_c00186{left:309.333333pt;}
.x8_c00186{left:310.400000pt;}
.x46_c00186{left:312.266667pt;}
.x6a_c00186{left:313.866667pt;}
.x1_c00186{left:315.866667pt;}
.x42_c00186{left:317.466667pt;}
.x23_c00186{left:319.333333pt;}
.x31_c00186{left:324.133333pt;}
.x89_c00186{left:325.733333pt;}
.x7e_c00186{left:327.466667pt;}
.x67_c00186{left:329.466667pt;}
.x70_c00186{left:332.133333pt;}
.x37_c00186{left:333.733333pt;}
.x2a_c00186{left:335.466667pt;}
.x1d_c00186{left:336.533333pt;}
.x58_c00186{left:337.733333pt;}
.x96_c00186{left:340.533333pt;}
.x32_c00186{left:342.400000pt;}
.x65_c00186{left:343.733333pt;}
.x84_c00186{left:345.733333pt;}
.x9_c00186{left:347.466667pt;}
.x4c_c00186{left:348.800000pt;}
.x8d_c00186{left:350.000000pt;}
.x61_c00186{left:353.466667pt;}
.x1e_c00186{left:354.800000pt;}
.x24_c00186{left:356.133333pt;}
.x7f_c00186{left:357.600000pt;}
.x11_c00186{left:358.666667pt;}
.x3e_c00186{left:360.400000pt;}
.x9e_c00186{left:361.600000pt;}
.x73_c00186{left:363.866667pt;}
.x6b_c00186{left:365.066667pt;}
.xa_c00186{left:366.000000pt;}
.x82_c00186{left:366.933333pt;}
.x4d_c00186{left:369.866667pt;}
.x91_c00186{left:372.400000pt;}
.x80_c00186{left:373.600000pt;}
.x54_c00186{left:374.933333pt;}
.x3f_c00186{left:376.400000pt;}
.x50_c00186{left:377.733333pt;}
.x2b_c00186{left:378.933333pt;}
.x17_c00186{left:379.866667pt;}
.x43_c00186{left:381.733333pt;}
.x68_c00186{left:382.933333pt;}
.x33_c00186{left:384.933333pt;}
.x8a_c00186{left:386.800000pt;}
.x25_c00186{left:389.066667pt;}
.xc0_c00186{left:417.600000pt;}
.x10c_c00186{left:418.933333pt;}
.x113_c00186{left:420.800000pt;}
.xa0_c00186{left:432.933333pt;}
.xdc_c00186{left:434.266667pt;}
.xfa_c00186{left:437.066667pt;}
.xa1_c00186{left:449.600000pt;}
.xf8_c00186{left:450.533333pt;}
.xf5_c00186{left:451.466667pt;}
.xc6_c00186{left:452.933333pt;}
.xa8_c00186{left:453.866667pt;}
.x10a_c00186{left:458.533333pt;}
.x111_c00186{left:459.600000pt;}
.xa9_c00186{left:462.533333pt;}
.xee_c00186{left:470.800000pt;}
.xd4_c00186{left:471.733333pt;}
.xdd_c00186{left:472.933333pt;}
.xba_c00186{left:474.000000pt;}
.xcf_c00186{left:478.533333pt;}
.xc1_c00186{left:480.000000pt;}
.x112_c00186{left:481.066667pt;}
.x10b_c00186{left:482.000000pt;}
.xb1_c00186{left:483.600000pt;}
.xd5_c00186{left:487.066667pt;}
.xf9_c00186{left:488.266667pt;}
.x102_c00186{left:489.200000pt;}
.xde_c00186{left:491.200000pt;}
.xaa_c00186{left:492.933333pt;}
.xc7_c00186{left:494.533333pt;}
.xa2_c00186{left:497.333333pt;}
.xfc_c00186{left:498.266667pt;}
.xbb_c00186{left:499.866667pt;}
.xc2_c00186{left:501.733333pt;}
.xff_c00186{left:504.133333pt;}
.xb2_c00186{left:506.000000pt;}
.xe5_c00186{left:506.933333pt;}
.xab_c00186{left:510.533333pt;}
.xc8_c00186{left:512.800000pt;}
.xd0_c00186{left:513.733333pt;}
.xe0_c00186{left:515.466667pt;}
.xd6_c00186{left:518.133333pt;}
.xbc_c00186{left:519.733333pt;}
.xa3_c00186{left:520.666667pt;}
.x10d_c00186{left:522.000000pt;}
.x103_c00186{left:525.333333pt;}
.xe4_c00186{left:526.400000pt;}
.x116_c00186{left:529.600000pt;}
.xf0_c00186{left:530.933333pt;}
.xfb_c00186{left:531.866667pt;}
.xb3_c00186{left:534.800000pt;}
.xfd_c00186{left:536.666667pt;}
.x106_c00186{left:538.266667pt;}
.xea_c00186{left:539.866667pt;}
.xe2_c00186{left:543.066667pt;}
.xb4_c00186{left:546.266667pt;}
.xbd_c00186{left:548.800000pt;}
.xd7_c00186{left:550.800000pt;}
.x104_c00186{left:552.933333pt;}
.x117_c00186{left:554.933333pt;}
.xdf_c00186{left:559.333333pt;}
.xe1_c00186{left:561.600000pt;}
.xc3_c00186{left:564.533333pt;}
.xac_c00186{left:565.866667pt;}
.xef_c00186{left:568.400000pt;}
.xb5_c00186{left:569.333333pt;}
.x114_c00186{left:570.933333pt;}
.xe6_c00186{left:572.533333pt;}
.xfe_c00186{left:575.066667pt;}
.x119_c00186{left:576.000000pt;}
.xd8_c00186{left:578.000000pt;}
.xf1_c00186{left:579.600000pt;}
.xc9_c00186{left:583.866667pt;}
.x100_c00186{left:585.466667pt;}
.xf6_c00186{left:586.800000pt;}
.xbe_c00186{left:588.800000pt;}
.x107_c00186{left:590.133333pt;}
.xd1_c00186{left:592.133333pt;}
.xca_c00186{left:593.733333pt;}
.xa4_c00186{left:600.400000pt;}
.xe7_c00186{left:601.333333pt;}
.xe3_c00186{left:603.200000pt;}
.xb6_c00186{left:605.866667pt;}
.x10e_c00186{left:607.466667pt;}
.xd9_c00186{left:610.000000pt;}
.xad_c00186{left:610.933333pt;}
.xcb_c00186{left:612.000000pt;}
.xa5_c00186{left:614.533333pt;}
.x101_c00186{left:617.466667pt;}
.xe8_c00186{left:618.666667pt;}
.xc4_c00186{left:622.133333pt;}
.x115_c00186{left:626.933333pt;}
.xda_c00186{left:629.466667pt;}
.x108_c00186{left:632.666667pt;}
.xf3_c00186{left:633.866667pt;}
.xae_c00186{left:634.933333pt;}
.xa6_c00186{left:636.266667pt;}
.xb7_c00186{left:637.600000pt;}
.xd2_c00186{left:639.200000pt;}
.x118_c00186{left:642.400000pt;}
.x10f_c00186{left:644.933333pt;}
.xcc_c00186{left:647.866667pt;}
.xbf_c00186{left:651.466667pt;}
.xf4_c00186{left:653.333333pt;}
.x109_c00186{left:654.800000pt;}
.xeb_c00186{left:657.600000pt;}
.xb8_c00186{left:660.000000pt;}
.xa7_c00186{left:665.733333pt;}
.xf2_c00186{left:666.666667pt;}
.x110_c00186{left:669.200000pt;}
.x11a_c00186{left:673.333333pt;}
.xcd_c00186{left:676.933333pt;}
.xf7_c00186{left:678.933333pt;}
.xd3_c00186{left:679.866667pt;}
.xaf_c00186{left:682.266667pt;}
.xdb_c00186{left:685.200000pt;}
.xec_c00186{left:688.933333pt;}
.xe9_c00186{left:690.933333pt;}
.x2_c00186{left:694.133333pt;}
.xce_c00186{left:695.200000pt;}
.x105_c00186{left:699.200000pt;}
.xc5_c00186{left:702.133333pt;}
.xb9_c00186{left:703.200000pt;}
.xb0_c00186{left:706.933333pt;}
.xed_c00186{left:714.266667pt;}
}





/* 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_c00187 {
    display:none;
  }
  .loading-indicator_c00187.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00187 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_c00187 { 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_c00187" -> "#page-container .classname_c00187")
 */
.pf_c00187 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00187 { /* 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_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00187 { /* 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_c00187 { /* 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_c00187 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00187 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00187 {overflow:visible;}
  }
}
.c_c00187 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00187 { /* 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_c00187:after { /* webkit #35443 */
  content: '';
}
.t_c00187:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00187 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 */
}
.__c00187 { /* 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_c00187 { /* info for Javascript */
  display:none;
}
.l_c00187 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00187 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00187 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00187: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_c00187 {
    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_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00187.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_c00187 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00187;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.000000;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;}
.m12_c00187{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{transform:matrix(0.032000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00187{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m58_c00187{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m71_c00187{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m103_c00187{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00187{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m33_c00187{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m55_c00187{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00187{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.me8_c00187{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00187{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m20_c00187{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00187{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00187{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00187{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00187{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00187{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m6_c00187{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m23_c00187{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00187{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m27_c00187{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00187{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mff_c00187{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m11_c00187{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mee_c00187{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m17_c00187{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00187{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00187{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md_c00187{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m77_c00187{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m42_c00187{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00187{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m35_c00187{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mef_c00187{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00187{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m116_c00187{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00187{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00187{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00187{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m37_c00187{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m10_c00187{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m114_c00187{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mad_c00187{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00187{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m67_c00187{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00187{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m87_c00187{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m51_c00187{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00187{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me9_c00187{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00187{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8_c00187{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m45_c00187{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m18_c00187{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00187{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00187{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb_c00187{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mab_c00187{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m75_c00187{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00187{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00187{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00187{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m47_c00187{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00187{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m110_c00187{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m39_c00187{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00187{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m49_c00187{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m16_c00187{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m81_c00187{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m70_c00187{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00187{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf_c00187{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m0_c00187{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00187{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me4_c00187{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md7_c00187{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00187{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00187{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m69_c00187{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00187{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m90_c00187{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00187{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m50_c00187{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00187{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00187{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m72_c00187{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m53_c00187{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m40_c00187{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00187{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m95_c00187{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00187{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00187{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00187{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00187{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00187{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m115_c00187{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.me_c00187{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m15_c00187{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00187{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m118_c00187{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m19_c00187{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00187{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00187{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m62_c00187{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5_c00187{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00187{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m60_c00187{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00187{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m117_c00187{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m94_c00187{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m92_c00187{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m74_c00187{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me0_c00187{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m93_c00187{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m98_c00187{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3_c00187{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m97_c00187{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00187{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00187{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m73_c00187{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m30_c00187{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00187{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4_c00187{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00187{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7_c00187{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m88_c00187{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00187{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00187{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m86_c00187{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00187{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.me7_c00187{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m9_c00187{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mca_c00187{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00187{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00187{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00187{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00187{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m112_c00187{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00187{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00187{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00187{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m52_c00187{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00187{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m99_c00187{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00187{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md9_c00187{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00187{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m56_c00187{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00187{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00187{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00187{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00187{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m54_c00187{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00187{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00187{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00187{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m83_c00187{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00187{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m68_c00187{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mac_c00187{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mec_c00187{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m46_c00187{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m109_c00187{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m113_c00187{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00187{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mae_c00187{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00187{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.maa_c00187{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m119_c00187{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md4_c00187{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00187{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m59_c00187{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m57_c00187{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m32_c00187{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00187{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00187{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m26_c00187{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m84_c00187{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00187{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m108_c00187{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m22_c00187{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00187{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.ma_c00187{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mde_c00187{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.meb_c00187{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00187{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00187{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m76_c00187{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m14_c00187{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00187{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m36_c00187{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mba_c00187{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m38_c00187{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc_c00187{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m111_c00187{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m48_c00187{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m106_c00187{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00187{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00187{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m31_c00187{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00187{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00187{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00187{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00187{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m107_c00187{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me5_c00187{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00187{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m44_c00187{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m79_c00187{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m63_c00187{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m80_c00187{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m24_c00187{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00187{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.me3_c00187{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00187{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m101_c00187{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m89_c00187{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00187{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00187{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me6_c00187{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m100_c00187{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m91_c00187{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m34_c00187{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00187{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m65_c00187{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00187{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00187{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.maf_c00187{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m13_c00187{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);}
.md5_c00187{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00187{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m43_c00187{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m21_c00187{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m28_c00187{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mce_c00187{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00187{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00187{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m66_c00187{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md1_c00187{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md0_c00187{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m85_c00187{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00187{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.md3_c00187{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00187{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m78_c00187{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mda_c00187{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00187{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m61_c00187{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00187{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00187{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m29_c00187{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00187{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00187{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00187{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.md6_c00187{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m82_c00187{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md8_c00187{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00187{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m96_c00187{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m64_c00187{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.me2_c00187{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md2_c00187{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00187{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.med_c00187{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m41_c00187{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00187{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00187{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mea_c00187{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me1_c00187{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00187{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00187{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00187{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00187{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m104_c00187{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00187{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{transform:matrix(0.429000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00187{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m102_c00187{transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);}
.m25_c00187{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m105_c00187{transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls0_c00187{letter-spacing:0.000000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{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__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00187{word-spacing:-7.428571px;}
.ws2_c00187{word-spacing:-0.030928px;}
.ws6_c00187{word-spacing:0.000000px;}
.ws4_c00187{word-spacing:9.375000px;}
.ws1_c00187{word-spacing:12.028951px;}
.ws5_c00187{word-spacing:13.398922px;}
.ws0_c00187{word-spacing:59.721619px;}
.fc0_c00187{color:transparent;}
.fs7_c00187{font-size:30.000000px;}
.fs5_c00187{font-size:48.000000px;}
.fs6_c00187{font-size:54.000000px;}
.fs4_c00187{font-size:60.000000px;}
.fs2_c00187{font-size:66.000000px;}
.fs3_c00187{font-size:72.000000px;}
.fs1_c00187{font-size:90.000000px;}
.fs0_c00187{font-size:96.000000px;}
.y0_c00187{bottom:0.000000px;}
.y6b_c00187{bottom:193.800000px;}
.y38_c00187{bottom:194.700000px;}
.y37_c00187{bottom:209.100000px;}
.y6a_c00187{bottom:211.050000px;}
.y36_c00187{bottom:223.500000px;}
.y69_c00187{bottom:229.050000px;}
.y35_c00187{bottom:237.600000px;}
.y68_c00187{bottom:246.750000px;}
.y34_c00187{bottom:252.000000px;}
.y67_c00187{bottom:264.750000px;}
.y66_c00187{bottom:282.750000px;}
.y33_c00187{bottom:293.100000px;}
.y65_c00187{bottom:300.450000px;}
.y32_c00187{bottom:310.800000px;}
.y64_c00187{bottom:318.750000px;}
.y31_c00187{bottom:328.500000px;}
.y63_c00187{bottom:336.750000px;}
.y30_c00187{bottom:346.200000px;}
.y62_c00187{bottom:354.450000px;}
.y2f_c00187{bottom:363.900000px;}
.y61_c00187{bottom:372.150000px;}
.y2e_c00187{bottom:381.900000px;}
.y60_c00187{bottom:389.850000px;}
.y2d_c00187{bottom:399.600000px;}
.y5f_c00187{bottom:408.150000px;}
.y2c_c00187{bottom:417.600000px;}
.y5e_c00187{bottom:425.850000px;}
.y2b_c00187{bottom:439.650000px;}
.y5d_c00187{bottom:448.200000px;}
.y2a_c00187{bottom:457.350000px;}
.y5c_c00187{bottom:470.550000px;}
.y29_c00187{bottom:475.650000px;}
.y5b_c00187{bottom:488.550000px;}
.y28_c00187{bottom:493.350000px;}
.y27_c00187{bottom:511.050000px;}
.y5a_c00187{bottom:515.550000px;}
.y59_c00187{bottom:523.500000px;}
.y26_c00187{bottom:529.050000px;}
.y58_c00187{bottom:532.800000px;}
.y57_c00187{bottom:542.550000px;}
.y25_c00187{bottom:546.750000px;}
.y56_c00187{bottom:552.600000px;}
.y24_c00187{bottom:565.800000px;}
.y55_c00187{bottom:569.100000px;}
.y23_c00187{bottom:582.000000px;}
.y54_c00187{bottom:590.700000px;}
.y22_c00187{bottom:600.000000px;}
.y53_c00187{bottom:613.050000px;}
.y21_c00187{bottom:617.700000px;}
.y20_c00187{bottom:635.700000px;}
.y52_c00187{bottom:644.100000px;}
.y1f_c00187{bottom:653.700000px;}
.y1e_c00187{bottom:671.700000px;}
.y51_c00187{bottom:679.500000px;}
.y1d_c00187{bottom:689.400000px;}
.y50_c00187{bottom:697.500000px;}
.y1c_c00187{bottom:707.100000px;}
.y4f_c00187{bottom:715.800000px;}
.y1b_c00187{bottom:724.800000px;}
.y4e_c00187{bottom:733.500000px;}
.y1a_c00187{bottom:742.800000px;}
.y4d_c00187{bottom:751.200000px;}
.y19_c00187{bottom:760.800000px;}
.y4c_c00187{bottom:769.200000px;}
.y18_c00187{bottom:778.500000px;}
.y4b_c00187{bottom:786.900000px;}
.y17_c00187{bottom:796.200000px;}
.y4a_c00187{bottom:804.900000px;}
.y16_c00187{bottom:814.200000px;}
.y49_c00187{bottom:822.900000px;}
.y15_c00187{bottom:833.700000px;}
.y48_c00187{bottom:840.600000px;}
.y14_c00187{bottom:849.600000px;}
.y47_c00187{bottom:858.600000px;}
.y13_c00187{bottom:870.900000px;}
.y46_c00187{bottom:876.300000px;}
.y12_c00187{bottom:885.600000px;}
.y45_c00187{bottom:894.300000px;}
.y11_c00187{bottom:898.500000px;}
.y44_c00187{bottom:912.000000px;}
.y10_c00187{bottom:913.050000px;}
.yf_c00187{bottom:928.500000px;}
.y43_c00187{bottom:930.300000px;}
.ye_c00187{bottom:940.950000px;}
.y42_c00187{bottom:947.850000px;}
.yd_c00187{bottom:956.850000px;}
.y41_c00187{bottom:969.450000px;}
.yc_c00187{bottom:969.750000px;}
.yb_c00187{bottom:985.650000px;}
.y40_c00187{bottom:988.200000px;}
.ya_c00187{bottom:999.450000px;}
.y3f_c00187{bottom:1006.200000px;}
.y9_c00187{bottom:1014.150000px;}
.y3e_c00187{bottom:1023.900000px;}
.y8_c00187{bottom:1026.750000px;}
.y7_c00187{bottom:1040.400000px;}
.y3d_c00187{bottom:1045.500000px;}
.y6_c00187{bottom:1058.400000px;}
.y3c_c00187{bottom:1063.800000px;}
.y5_c00187{bottom:1080.300000px;}
.y3b_c00187{bottom:1081.800000px;}
.y4_c00187{bottom:1098.300000px;}
.y3a_c00187{bottom:1099.800000px;}
.y3_c00187{bottom:1116.000000px;}
.y39_c00187{bottom:1117.800000px;}
.y1_c00187{bottom:1143.300000px;}
.y2_c00187{bottom:1143.600000px;}
.h9_c00187{height:30.000000px;}
.h7_c00187{height:48.000000px;}
.h8_c00187{height:54.000000px;}
.h6_c00187{height:60.000000px;}
.h4_c00187{height:66.000000px;}
.h5_c00187{height:72.000000px;}
.h3_c00187{height:90.000000px;}
.h2_c00187{height:96.000000px;}
.h1_c00187{height:1272.000000px;}
.h0_c00187{height:1272.239960px;}
.w1_c00187{width:963.000000px;}
.w0_c00187{width:963.359985px;}
.x0_c00187{left:0.000000px;}
.xa8_c00187{left:143.250000px;}
.xb1_c00187{left:159.450000px;}
.xa9_c00187{left:160.500000px;}
.x94_c00187{left:165.600000px;}
.x15_c00187{left:169.950000px;}
.x3f_c00187{left:174.600000px;}
.x1f_c00187{left:176.400000px;}
.x16_c00187{left:178.650000px;}
.x1_c00187{left:180.300000px;}
.x99_c00187{left:182.400000px;}
.x92_c00187{left:184.350000px;}
.x85_c00187{left:185.400000px;}
.x76_c00187{left:186.450000px;}
.x66_c00187{left:188.700000px;}
.x2e_c00187{left:190.050000px;}
.x44_c00187{left:192.150000px;}
.x4_c00187{left:195.900000px;}
.xb_c00187{left:196.950000px;}
.x77_c00187{left:199.800000px;}
.x82_c00187{left:200.850000px;}
.x3d_c00187{left:203.100000px;}
.x36_c00187{left:204.150000px;}
.x24_c00187{left:205.650000px;}
.xac_c00187{left:207.000000px;}
.x73_c00187{left:208.350000px;}
.x8a_c00187{left:213.300000px;}
.x9a_c00187{left:214.800000px;}
.xa0_c00187{left:216.000000px;}
.xc_c00187{left:217.800000px;}
.xaa_c00187{left:218.850000px;}
.x5_c00187{left:220.350000px;}
.x14_c00187{left:222.150000px;}
.x5a_c00187{left:223.650000px;}
.x17_c00187{left:224.700000px;}
.x37_c00187{left:225.750000px;}
.x27_c00187{left:227.100000px;}
.x62_c00187{left:229.200000px;}
.x52_c00187{left:230.250000px;}
.x7a_c00187{left:231.600000px;}
.x6b_c00187{left:232.950000px;}
.xd_c00187{left:235.050000px;}
.x8b_c00187{left:238.500000px;}
.x95_c00187{left:239.700000px;}
.x4e_c00187{left:241.950000px;}
.x86_c00187{left:243.000000px;}
.x2f_c00187{left:244.350000px;}
.x31_c00187{left:245.700000px;}
.x6e_c00187{left:247.350000px;}
.x29_c00187{left:250.200000px;}
.x53_c00187{left:251.550000px;}
.xa6_c00187{left:253.350000px;}
.xa1_c00187{left:255.150000px;}
.x7d_c00187{left:256.350000px;}
.x5f_c00187{left:257.400000px;}
.x83_c00187{left:258.750000px;}
.x32_c00187{left:260.400000px;}
.x93_c00187{left:261.450000px;}
.x40_c00187{left:263.100000px;}
.x63_c00187{left:264.900000px;}
.x54_c00187{left:266.700000px;}
.x2a_c00187{left:268.500000px;}
.x9e_c00187{left:269.550000px;}
.x9b_c00187{left:271.050000px;}
.x87_c00187{left:273.300000px;}
.x7e_c00187{left:274.650000px;}
.x97_c00187{left:276.000000px;}
.x47_c00187{left:277.800000px;}
.x4a_c00187{left:279.750000px;}
.x45_c00187{left:281.400000px;}
.x2_c00187{left:283.200000px;}
.x38_c00187{left:284.700000px;}
.x74_c00187{left:286.500000px;}
.x4f_c00187{left:289.800000px;}
.x84_c00187{left:290.850000px;}
.x6c_c00187{left:292.650000px;}
.x18_c00187{left:295.200000px;}
.x78_c00187{left:297.300000px;}
.x20_c00187{left:300.300000px;}
.x50_c00187{left:302.700000px;}
.x64_c00187{left:308.100000px;}
.x6_c00187{left:309.300000px;}
.x6f_c00187{left:311.100000px;}
.x2b_c00187{left:313.200000px;}
.xaf_c00187{left:315.750000px;}
.x55_c00187{left:316.800000px;}
.x9c_c00187{left:318.300000px;}
.x67_c00187{left:321.000000px;}
.xb0_c00187{left:324.750000px;}
.xe_c00187{left:325.800000px;}
.x7f_c00187{left:327.600000px;}
.x4b_c00187{left:329.100000px;}
.x48_c00187{left:331.500000px;}
.x46_c00187{left:333.900000px;}
.x5b_c00187{left:335.400000px;}
.x60_c00187{left:336.600000px;}
.x56_c00187{left:337.650000px;}
.xa2_c00187{left:340.500000px;}
.x39_c00187{left:341.550000px;}
.x41_c00187{left:344.850000px;}
.x19_c00187{left:346.650000px;}
.x69_c00187{left:347.850000px;}
.x33_c00187{left:350.100000px;}
.x57_c00187{left:353.100000px;}
.x70_c00187{left:357.150000px;}
.x88_c00187{left:358.350000px;}
.x2c_c00187{left:360.750000px;}
.xf_c00187{left:361.800000px;}
.x80_c00187{left:363.300000px;}
.x34_c00187{left:365.250000px;}
.x5c_c00187{left:368.550000px;}
.x8f_c00187{left:370.500000px;}
.x8c_c00187{left:374.250000px;}
.x3a_c00187{left:375.450000px;}
.x6d_c00187{left:377.550000px;}
.x2d_c00187{left:380.850000px;}
.x1a_c00187{left:381.900000px;}
.x42_c00187{left:385.950000px;}
.x5d_c00187{left:388.350000px;}
.x90_c00187{left:390.000000px;}
.x7_c00187{left:392.400000px;}
.x4c_c00187{left:394.650000px;}
.x71_c00187{left:396.000000px;}
.x10_c00187{left:398.100000px;}
.x8d_c00187{left:399.150000px;}
.x51_c00187{left:400.950000px;}
.x8_c00187{left:402.900000px;}
.x35_c00187{left:405.600000px;}
.x58_c00187{left:407.400000px;}
.x49_c00187{left:409.650000px;}
.x61_c00187{left:412.200000px;}
.x75_c00187{left:414.300000px;}
.xad_c00187{left:415.350000px;}
.xa3_c00187{left:418.350000px;}
.x79_c00187{left:419.700000px;}
.x65_c00187{left:421.500000px;}
.x3_c00187{left:422.550000px;}
.x68_c00187{left:424.050000px;}
.x6a_c00187{left:425.550000px;}
.x11_c00187{left:426.600000px;}
.x9f_c00187{left:428.850000px;}
.xa5_c00187{left:430.050000px;}
.x1c_c00187{left:432.000000px;}
.x91_c00187{left:433.050000px;}
.xab_c00187{left:434.100000px;}
.x7b_c00187{left:436.500000px;}
.x3e_c00187{left:438.900000px;}
.x28_c00187{left:441.000000px;}
.x25_c00187{left:442.200000px;}
.x21_c00187{left:443.550000px;}
.x81_c00187{left:445.050000px;}
.x9d_c00187{left:446.400000px;}
.x8e_c00187{left:447.450000px;}
.x89_c00187{left:449.100000px;}
.xa4_c00187{left:451.200000px;}
.x43_c00187{left:452.550000px;}
.x72_c00187{left:453.900000px;}
.x4d_c00187{left:455.100000px;}
.x9_c00187{left:456.150000px;}
.x3b_c00187{left:459.000000px;}
.x1d_c00187{left:462.900000px;}
.xae_c00187{left:465.000000px;}
.x96_c00187{left:466.500000px;}
.x12_c00187{left:468.300000px;}
.x3c_c00187{left:469.350000px;}
.x22_c00187{left:470.550000px;}
.x26_c00187{left:471.750000px;}
.x5e_c00187{left:474.450000px;}
.xa7_c00187{left:479.850000px;}
.x1b_c00187{left:484.800000px;}
.xa_c00187{left:486.750000px;}
.x7c_c00187{left:488.400000px;}
.x98_c00187{left:489.450000px;}
.x59_c00187{left:492.600000px;}
.x1e_c00187{left:497.100000px;}
.x30_c00187{left:498.150000px;}
.x23_c00187{left:499.350000px;}
.x13_c00187{left:503.550000px;}
.x12c_c00187{left:524.850000px;}
.xe5_c00187{left:532.050000px;}
.x158_c00187{left:534.900000px;}
.x152_c00187{left:536.250000px;}
.x14b_c00187{left:537.450000px;}
.x147_c00187{left:538.650000px;}
.x139_c00187{left:540.000000px;}
.x128_c00187{left:541.650000px;}
.x12a_c00187{left:544.050000px;}
.x121_c00187{left:545.100000px;}
.x10f_c00187{left:546.300000px;}
.x10a_c00187{left:547.500000px;}
.xf0_c00187{left:548.550000px;}
.xeb_c00187{left:550.050000px;}
.xc0_c00187{left:551.550000px;}
.xb2_c00187{left:552.900000px;}
.x148_c00187{left:555.900000px;}
.x13d_c00187{left:558.000000px;}
.x137_c00187{left:559.050000px;}
.x12f_c00187{left:560.550000px;}
.x133_c00187{left:561.750000px;}
.x129_c00187{left:563.250000px;}
.xf1_c00187{left:565.050000px;}
.xcd_c00187{left:567.300000px;}
.x122_c00187{left:571.050000px;}
.x106_c00187{left:572.100000px;}
.xca_c00187{left:574.350000px;}
.xb3_c00187{left:575.550000px;}
.x110_c00187{left:579.750000px;}
.xe2_c00187{left:580.950000px;}
.x13a_c00187{left:584.700000px;}
.x159_c00187{left:586.050000px;}
.x10b_c00187{left:588.900000px;}
.xe3_c00187{left:590.250000px;}
.xf9_c00187{left:591.300000px;}
.x107_c00187{left:592.650000px;}
.x150_c00187{left:595.050000px;}
.xe6_c00187{left:598.650000px;}
.xda_c00187{left:600.750000px;}
.x11e_c00187{left:601.800000px;}
.x135_c00187{left:603.000000px;}
.x119_c00187{left:605.400000px;}
.x13b_c00187{left:606.600000px;}
.xce_c00187{left:607.950000px;}
.xe4_c00187{left:610.800000px;}
.xd4_c00187{left:612.750000px;}
.xfa_c00187{left:613.950000px;}
.x11a_c00187{left:615.150000px;}
.x124_c00187{left:617.400000px;}
.xba_c00187{left:619.500000px;}
.xc4_c00187{left:622.200000px;}
.x14c_c00187{left:623.250000px;}
.xdb_c00187{left:624.900000px;}
.x12b_c00187{left:626.400000px;}
.x12d_c00187{left:630.000000px;}
.x142_c00187{left:632.400000px;}
.x103_c00187{left:633.600000px;}
.x114_c00187{left:634.950000px;}
.x136_c00187{left:636.150000px;}
.xcb_c00187{left:637.650000px;}
.x154_c00187{left:639.000000px;}
.xe7_c00187{left:641.100000px;}
.xb4_c00187{left:642.150000px;}
.x13e_c00187{left:643.950000px;}
.xc1_c00187{left:645.900000px;}
.x149_c00187{left:646.950000px;}
.x15a_c00187{left:649.050000px;}
.x156_c00187{left:651.000000px;}
.x104_c00187{left:652.350000px;}
.x115_c00187{left:653.700000px;}
.xd5_c00187{left:655.200000px;}
.x151_c00187{left:656.550000px;}
.x11b_c00187{left:657.600000px;}
.x111_c00187{left:659.250000px;}
.x108_c00187{left:660.300000px;}
.xfe_c00187{left:662.700000px;}
.xec_c00187{left:663.750000px;}
.xe8_c00187{left:666.000000px;}
.x14d_c00187{left:668.700000px;}
.xcc_c00187{left:670.050000px;}
.xcf_c00187{left:672.450000px;}
.xc5_c00187{left:674.100000px;}
.xdc_c00187{left:675.300000px;}
.x105_c00187{left:676.800000px;}
.x12e_c00187{left:678.900000px;}
.x153_c00187{left:681.750000px;}
.xe9_c00187{left:685.050000px;}
.xbb_c00187{left:686.850000px;}
.xfb_c00187{left:689.550000px;}
.x143_c00187{left:691.800000px;}
.x10c_c00187{left:694.650000px;}
.xf2_c00187{left:695.700000px;}
.x130_c00187{left:697.350000px;}
.xdd_c00187{left:698.700000px;}
.xb5_c00187{left:701.550000px;}
.x125_c00187{left:703.050000px;}
.xf3_c00187{left:705.450000px;}
.xc6_c00187{left:706.800000px;}
.xd6_c00187{left:709.950000px;}
.xb6_c00187{left:712.650000px;}
.xfc_c00187{left:715.500000px;}
.xff_c00187{left:717.750000px;}
.xd0_c00187{left:721.050000px;}
.x144_c00187{left:722.400000px;}
.x109_c00187{left:723.600000px;}
.x13f_c00187{left:724.650000px;}
.x157_c00187{left:727.200000px;}
.x126_c00187{left:728.250000px;}
.xc7_c00187{left:729.450000px;}
.x123_c00187{left:731.250000px;}
.x116_c00187{left:733.350000px;}
.xf4_c00187{left:735.300000px;}
.xed_c00187{left:736.800000px;}
.xd7_c00187{left:738.450000px;}
.xfd_c00187{left:739.950000px;}
.x131_c00187{left:743.850000px;}
.xd1_c00187{left:746.250000px;}
.xb7_c00187{left:748.350000px;}
.x117_c00187{left:749.850000px;}
.x100_c00187{left:751.950000px;}
.xde_c00187{left:754.500000px;}
.xf5_c00187{left:755.850000px;}
.xd8_c00187{left:757.950000px;}
.x145_c00187{left:760.500000px;}
.xc2_c00187{left:763.950000px;}
.x14e_c00187{left:765.150000px;}
.xdf_c00187{left:767.100000px;}
.x11f_c00187{left:768.750000px;}
.x138_c00187{left:770.400000px;}
.x127_c00187{left:771.450000px;}
.xbc_c00187{left:773.700000px;}
.x10d_c00187{left:779.250000px;}
.x132_c00187{left:781.350000px;}
.x118_c00187{left:783.300000px;}
.x140_c00187{left:785.100000px;}
.x13c_c00187{left:786.600000px;}
.x101_c00187{left:787.650000px;}
.xee_c00187{left:790.500000px;}
.x146_c00187{left:793.200000px;}
.x112_c00187{left:794.700000px;}
.xbd_c00187{left:798.150000px;}
.x14a_c00187{left:799.200000px;}
.xd2_c00187{left:803.850000px;}
.xf6_c00187{left:806.250000px;}
.x120_c00187{left:808.650000px;}
.x102_c00187{left:810.000000px;}
.x155_c00187{left:811.500000px;}
.xe0_c00187{left:814.650000px;}
.xc8_c00187{left:817.350000px;}
.xb8_c00187{left:819.300000px;}
.xf7_c00187{left:822.450000px;}
.x134_c00187{left:826.050000px;}
.x10e_c00187{left:827.850000px;}
.xc3_c00187{left:829.500000px;}
.xbe_c00187{left:831.300000px;}
.xd3_c00187{left:832.650000px;}
.xc9_c00187{left:833.850000px;}
.x14f_c00187{left:835.050000px;}
.x113_c00187{left:836.100000px;}
.x11c_c00187{left:837.150000px;}
.xe1_c00187{left:838.350000px;}
.xbf_c00187{left:840.300000px;}
.xb9_c00187{left:841.650000px;}
.x141_c00187{left:843.750000px;}
.x11d_c00187{left:847.650000px;}
.xea_c00187{left:850.350000px;}
.xef_c00187{left:852.000000px;}
.xd9_c00187{left:853.050000px;}
.xf8_c00187{left:855.900000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws3_c00187{word-spacing:-6.603175pt;}
.ws2_c00187{word-spacing:-0.027491pt;}
.ws6_c00187{word-spacing:0.000000pt;}
.ws4_c00187{word-spacing:8.333333pt;}
.ws1_c00187{word-spacing:10.692400pt;}
.ws5_c00187{word-spacing:11.910153pt;}
.ws0_c00187{word-spacing:53.085884pt;}
.fs7_c00187{font-size:26.666667pt;}
.fs5_c00187{font-size:42.666667pt;}
.fs6_c00187{font-size:48.000000pt;}
.fs4_c00187{font-size:53.333333pt;}
.fs2_c00187{font-size:58.666667pt;}
.fs3_c00187{font-size:64.000000pt;}
.fs1_c00187{font-size:80.000000pt;}
.fs0_c00187{font-size:85.333333pt;}
.y0_c00187{bottom:0.000000pt;}
.y6b_c00187{bottom:172.266667pt;}
.y38_c00187{bottom:173.066667pt;}
.y37_c00187{bottom:185.866667pt;}
.y6a_c00187{bottom:187.600000pt;}
.y36_c00187{bottom:198.666667pt;}
.y69_c00187{bottom:203.600000pt;}
.y35_c00187{bottom:211.200000pt;}
.y68_c00187{bottom:219.333333pt;}
.y34_c00187{bottom:224.000000pt;}
.y67_c00187{bottom:235.333333pt;}
.y66_c00187{bottom:251.333333pt;}
.y33_c00187{bottom:260.533333pt;}
.y65_c00187{bottom:267.066667pt;}
.y32_c00187{bottom:276.266667pt;}
.y64_c00187{bottom:283.333333pt;}
.y31_c00187{bottom:292.000000pt;}
.y63_c00187{bottom:299.333333pt;}
.y30_c00187{bottom:307.733333pt;}
.y62_c00187{bottom:315.066667pt;}
.y2f_c00187{bottom:323.466667pt;}
.y61_c00187{bottom:330.800000pt;}
.y2e_c00187{bottom:339.466667pt;}
.y60_c00187{bottom:346.533333pt;}
.y2d_c00187{bottom:355.200000pt;}
.y5f_c00187{bottom:362.800000pt;}
.y2c_c00187{bottom:371.200000pt;}
.y5e_c00187{bottom:378.533333pt;}
.y2b_c00187{bottom:390.800000pt;}
.y5d_c00187{bottom:398.400000pt;}
.y2a_c00187{bottom:406.533333pt;}
.y5c_c00187{bottom:418.266667pt;}
.y29_c00187{bottom:422.800000pt;}
.y5b_c00187{bottom:434.266667pt;}
.y28_c00187{bottom:438.533333pt;}
.y27_c00187{bottom:454.266667pt;}
.y5a_c00187{bottom:458.266667pt;}
.y59_c00187{bottom:465.333333pt;}
.y26_c00187{bottom:470.266667pt;}
.y58_c00187{bottom:473.600000pt;}
.y57_c00187{bottom:482.266667pt;}
.y25_c00187{bottom:486.000000pt;}
.y56_c00187{bottom:491.200000pt;}
.y24_c00187{bottom:502.933333pt;}
.y55_c00187{bottom:505.866667pt;}
.y23_c00187{bottom:517.333333pt;}
.y54_c00187{bottom:525.066667pt;}
.y22_c00187{bottom:533.333333pt;}
.y53_c00187{bottom:544.933333pt;}
.y21_c00187{bottom:549.066667pt;}
.y20_c00187{bottom:565.066667pt;}
.y52_c00187{bottom:572.533333pt;}
.y1f_c00187{bottom:581.066667pt;}
.y1e_c00187{bottom:597.066667pt;}
.y51_c00187{bottom:604.000000pt;}
.y1d_c00187{bottom:612.800000pt;}
.y50_c00187{bottom:620.000000pt;}
.y1c_c00187{bottom:628.533333pt;}
.y4f_c00187{bottom:636.266667pt;}
.y1b_c00187{bottom:644.266667pt;}
.y4e_c00187{bottom:652.000000pt;}
.y1a_c00187{bottom:660.266667pt;}
.y4d_c00187{bottom:667.733333pt;}
.y19_c00187{bottom:676.266667pt;}
.y4c_c00187{bottom:683.733333pt;}
.y18_c00187{bottom:692.000000pt;}
.y4b_c00187{bottom:699.466667pt;}
.y17_c00187{bottom:707.733333pt;}
.y4a_c00187{bottom:715.466667pt;}
.y16_c00187{bottom:723.733333pt;}
.y49_c00187{bottom:731.466667pt;}
.y15_c00187{bottom:741.066667pt;}
.y48_c00187{bottom:747.200000pt;}
.y14_c00187{bottom:755.200000pt;}
.y47_c00187{bottom:763.200000pt;}
.y13_c00187{bottom:774.133333pt;}
.y46_c00187{bottom:778.933333pt;}
.y12_c00187{bottom:787.200000pt;}
.y45_c00187{bottom:794.933333pt;}
.y11_c00187{bottom:798.666667pt;}
.y44_c00187{bottom:810.666667pt;}
.y10_c00187{bottom:811.600000pt;}
.yf_c00187{bottom:825.333333pt;}
.y43_c00187{bottom:826.933333pt;}
.ye_c00187{bottom:836.400000pt;}
.y42_c00187{bottom:842.533333pt;}
.yd_c00187{bottom:850.533333pt;}
.y41_c00187{bottom:861.733333pt;}
.yc_c00187{bottom:862.000000pt;}
.yb_c00187{bottom:876.133333pt;}
.y40_c00187{bottom:878.400000pt;}
.ya_c00187{bottom:888.400000pt;}
.y3f_c00187{bottom:894.400000pt;}
.y9_c00187{bottom:901.466667pt;}
.y3e_c00187{bottom:910.133333pt;}
.y8_c00187{bottom:912.666667pt;}
.y7_c00187{bottom:924.800000pt;}
.y3d_c00187{bottom:929.333333pt;}
.y6_c00187{bottom:940.800000pt;}
.y3c_c00187{bottom:945.600000pt;}
.y5_c00187{bottom:960.266667pt;}
.y3b_c00187{bottom:961.600000pt;}
.y4_c00187{bottom:976.266667pt;}
.y3a_c00187{bottom:977.600000pt;}
.y3_c00187{bottom:992.000000pt;}
.y39_c00187{bottom:993.600000pt;}
.y1_c00187{bottom:1016.266667pt;}
.y2_c00187{bottom:1016.533333pt;}
.h9_c00187{height:26.666667pt;}
.h7_c00187{height:42.666667pt;}
.h8_c00187{height:48.000000pt;}
.h6_c00187{height:53.333333pt;}
.h4_c00187{height:58.666667pt;}
.h5_c00187{height:64.000000pt;}
.h3_c00187{height:80.000000pt;}
.h2_c00187{height:85.333333pt;}
.h1_c00187{height:1130.666667pt;}
.h0_c00187{height:1130.879964pt;}
.w1_c00187{width:856.000000pt;}
.w0_c00187{width:856.319987pt;}
.x0_c00187{left:0.000000pt;}
.xa8_c00187{left:127.333333pt;}
.xb1_c00187{left:141.733333pt;}
.xa9_c00187{left:142.666667pt;}
.x94_c00187{left:147.200000pt;}
.x15_c00187{left:151.066667pt;}
.x3f_c00187{left:155.200000pt;}
.x1f_c00187{left:156.800000pt;}
.x16_c00187{left:158.800000pt;}
.x1_c00187{left:160.266667pt;}
.x99_c00187{left:162.133333pt;}
.x92_c00187{left:163.866667pt;}
.x85_c00187{left:164.800000pt;}
.x76_c00187{left:165.733333pt;}
.x66_c00187{left:167.733333pt;}
.x2e_c00187{left:168.933333pt;}
.x44_c00187{left:170.800000pt;}
.x4_c00187{left:174.133333pt;}
.xb_c00187{left:175.066667pt;}
.x77_c00187{left:177.600000pt;}
.x82_c00187{left:178.533333pt;}
.x3d_c00187{left:180.533333pt;}
.x36_c00187{left:181.466667pt;}
.x24_c00187{left:182.800000pt;}
.xac_c00187{left:184.000000pt;}
.x73_c00187{left:185.200000pt;}
.x8a_c00187{left:189.600000pt;}
.x9a_c00187{left:190.933333pt;}
.xa0_c00187{left:192.000000pt;}
.xc_c00187{left:193.600000pt;}
.xaa_c00187{left:194.533333pt;}
.x5_c00187{left:195.866667pt;}
.x14_c00187{left:197.466667pt;}
.x5a_c00187{left:198.800000pt;}
.x17_c00187{left:199.733333pt;}
.x37_c00187{left:200.666667pt;}
.x27_c00187{left:201.866667pt;}
.x62_c00187{left:203.733333pt;}
.x52_c00187{left:204.666667pt;}
.x7a_c00187{left:205.866667pt;}
.x6b_c00187{left:207.066667pt;}
.xd_c00187{left:208.933333pt;}
.x8b_c00187{left:212.000000pt;}
.x95_c00187{left:213.066667pt;}
.x4e_c00187{left:215.066667pt;}
.x86_c00187{left:216.000000pt;}
.x2f_c00187{left:217.200000pt;}
.x31_c00187{left:218.400000pt;}
.x6e_c00187{left:219.866667pt;}
.x29_c00187{left:222.400000pt;}
.x53_c00187{left:223.600000pt;}
.xa6_c00187{left:225.200000pt;}
.xa1_c00187{left:226.800000pt;}
.x7d_c00187{left:227.866667pt;}
.x5f_c00187{left:228.800000pt;}
.x83_c00187{left:230.000000pt;}
.x32_c00187{left:231.466667pt;}
.x93_c00187{left:232.400000pt;}
.x40_c00187{left:233.866667pt;}
.x63_c00187{left:235.466667pt;}
.x54_c00187{left:237.066667pt;}
.x2a_c00187{left:238.666667pt;}
.x9e_c00187{left:239.600000pt;}
.x9b_c00187{left:240.933333pt;}
.x87_c00187{left:242.933333pt;}
.x7e_c00187{left:244.133333pt;}
.x97_c00187{left:245.333333pt;}
.x47_c00187{left:246.933333pt;}
.x4a_c00187{left:248.666667pt;}
.x45_c00187{left:250.133333pt;}
.x2_c00187{left:251.733333pt;}
.x38_c00187{left:253.066667pt;}
.x74_c00187{left:254.666667pt;}
.x4f_c00187{left:257.600000pt;}
.x84_c00187{left:258.533333pt;}
.x6c_c00187{left:260.133333pt;}
.x18_c00187{left:262.400000pt;}
.x78_c00187{left:264.266667pt;}
.x20_c00187{left:266.933333pt;}
.x50_c00187{left:269.066667pt;}
.x64_c00187{left:273.866667pt;}
.x6_c00187{left:274.933333pt;}
.x6f_c00187{left:276.533333pt;}
.x2b_c00187{left:278.400000pt;}
.xaf_c00187{left:280.666667pt;}
.x55_c00187{left:281.600000pt;}
.x9c_c00187{left:282.933333pt;}
.x67_c00187{left:285.333333pt;}
.xb0_c00187{left:288.666667pt;}
.xe_c00187{left:289.600000pt;}
.x7f_c00187{left:291.200000pt;}
.x4b_c00187{left:292.533333pt;}
.x48_c00187{left:294.666667pt;}
.x46_c00187{left:296.800000pt;}
.x5b_c00187{left:298.133333pt;}
.x60_c00187{left:299.200000pt;}
.x56_c00187{left:300.133333pt;}
.xa2_c00187{left:302.666667pt;}
.x39_c00187{left:303.600000pt;}
.x41_c00187{left:306.533333pt;}
.x19_c00187{left:308.133333pt;}
.x69_c00187{left:309.200000pt;}
.x33_c00187{left:311.200000pt;}
.x57_c00187{left:313.866667pt;}
.x70_c00187{left:317.466667pt;}
.x88_c00187{left:318.533333pt;}
.x2c_c00187{left:320.666667pt;}
.xf_c00187{left:321.600000pt;}
.x80_c00187{left:322.933333pt;}
.x34_c00187{left:324.666667pt;}
.x5c_c00187{left:327.600000pt;}
.x8f_c00187{left:329.333333pt;}
.x8c_c00187{left:332.666667pt;}
.x3a_c00187{left:333.733333pt;}
.x6d_c00187{left:335.600000pt;}
.x2d_c00187{left:338.533333pt;}
.x1a_c00187{left:339.466667pt;}
.x42_c00187{left:343.066667pt;}
.x5d_c00187{left:345.200000pt;}
.x90_c00187{left:346.666667pt;}
.x7_c00187{left:348.800000pt;}
.x4c_c00187{left:350.800000pt;}
.x71_c00187{left:352.000000pt;}
.x10_c00187{left:353.866667pt;}
.x8d_c00187{left:354.800000pt;}
.x51_c00187{left:356.400000pt;}
.x8_c00187{left:358.133333pt;}
.x35_c00187{left:360.533333pt;}
.x58_c00187{left:362.133333pt;}
.x49_c00187{left:364.133333pt;}
.x61_c00187{left:366.400000pt;}
.x75_c00187{left:368.266667pt;}
.xad_c00187{left:369.200000pt;}
.xa3_c00187{left:371.866667pt;}
.x79_c00187{left:373.066667pt;}
.x65_c00187{left:374.666667pt;}
.x3_c00187{left:375.600000pt;}
.x68_c00187{left:376.933333pt;}
.x6a_c00187{left:378.266667pt;}
.x11_c00187{left:379.200000pt;}
.x9f_c00187{left:381.200000pt;}
.xa5_c00187{left:382.266667pt;}
.x1c_c00187{left:384.000000pt;}
.x91_c00187{left:384.933333pt;}
.xab_c00187{left:385.866667pt;}
.x7b_c00187{left:388.000000pt;}
.x3e_c00187{left:390.133333pt;}
.x28_c00187{left:392.000000pt;}
.x25_c00187{left:393.066667pt;}
.x21_c00187{left:394.266667pt;}
.x81_c00187{left:395.600000pt;}
.x9d_c00187{left:396.800000pt;}
.x8e_c00187{left:397.733333pt;}
.x89_c00187{left:399.200000pt;}
.xa4_c00187{left:401.066667pt;}
.x43_c00187{left:402.266667pt;}
.x72_c00187{left:403.466667pt;}
.x4d_c00187{left:404.533333pt;}
.x9_c00187{left:405.466667pt;}
.x3b_c00187{left:408.000000pt;}
.x1d_c00187{left:411.466667pt;}
.xae_c00187{left:413.333333pt;}
.x96_c00187{left:414.666667pt;}
.x12_c00187{left:416.266667pt;}
.x3c_c00187{left:417.200000pt;}
.x22_c00187{left:418.266667pt;}
.x26_c00187{left:419.333333pt;}
.x5e_c00187{left:421.733333pt;}
.xa7_c00187{left:426.533333pt;}
.x1b_c00187{left:430.933333pt;}
.xa_c00187{left:432.666667pt;}
.x7c_c00187{left:434.133333pt;}
.x98_c00187{left:435.066667pt;}
.x59_c00187{left:437.866667pt;}
.x1e_c00187{left:441.866667pt;}
.x30_c00187{left:442.800000pt;}
.x23_c00187{left:443.866667pt;}
.x13_c00187{left:447.600000pt;}
.x12c_c00187{left:466.533333pt;}
.xe5_c00187{left:472.933333pt;}
.x158_c00187{left:475.466667pt;}
.x152_c00187{left:476.666667pt;}
.x14b_c00187{left:477.733333pt;}
.x147_c00187{left:478.800000pt;}
.x139_c00187{left:480.000000pt;}
.x128_c00187{left:481.466667pt;}
.x12a_c00187{left:483.600000pt;}
.x121_c00187{left:484.533333pt;}
.x10f_c00187{left:485.600000pt;}
.x10a_c00187{left:486.666667pt;}
.xf0_c00187{left:487.600000pt;}
.xeb_c00187{left:488.933333pt;}
.xc0_c00187{left:490.266667pt;}
.xb2_c00187{left:491.466667pt;}
.x148_c00187{left:494.133333pt;}
.x13d_c00187{left:496.000000pt;}
.x137_c00187{left:496.933333pt;}
.x12f_c00187{left:498.266667pt;}
.x133_c00187{left:499.333333pt;}
.x129_c00187{left:500.666667pt;}
.xf1_c00187{left:502.266667pt;}
.xcd_c00187{left:504.266667pt;}
.x122_c00187{left:507.600000pt;}
.x106_c00187{left:508.533333pt;}
.xca_c00187{left:510.533333pt;}
.xb3_c00187{left:511.600000pt;}
.x110_c00187{left:515.333333pt;}
.xe2_c00187{left:516.400000pt;}
.x13a_c00187{left:519.733333pt;}
.x159_c00187{left:520.933333pt;}
.x10b_c00187{left:523.466667pt;}
.xe3_c00187{left:524.666667pt;}
.xf9_c00187{left:525.600000pt;}
.x107_c00187{left:526.800000pt;}
.x150_c00187{left:528.933333pt;}
.xe6_c00187{left:532.133333pt;}
.xda_c00187{left:534.000000pt;}
.x11e_c00187{left:534.933333pt;}
.x135_c00187{left:536.000000pt;}
.x119_c00187{left:538.133333pt;}
.x13b_c00187{left:539.200000pt;}
.xce_c00187{left:540.400000pt;}
.xe4_c00187{left:542.933333pt;}
.xd4_c00187{left:544.666667pt;}
.xfa_c00187{left:545.733333pt;}
.x11a_c00187{left:546.800000pt;}
.x124_c00187{left:548.800000pt;}
.xba_c00187{left:550.666667pt;}
.xc4_c00187{left:553.066667pt;}
.x14c_c00187{left:554.000000pt;}
.xdb_c00187{left:555.466667pt;}
.x12b_c00187{left:556.800000pt;}
.x12d_c00187{left:560.000000pt;}
.x142_c00187{left:562.133333pt;}
.x103_c00187{left:563.200000pt;}
.x114_c00187{left:564.400000pt;}
.x136_c00187{left:565.466667pt;}
.xcb_c00187{left:566.800000pt;}
.x154_c00187{left:568.000000pt;}
.xe7_c00187{left:569.866667pt;}
.xb4_c00187{left:570.800000pt;}
.x13e_c00187{left:572.400000pt;}
.xc1_c00187{left:574.133333pt;}
.x149_c00187{left:575.066667pt;}
.x15a_c00187{left:576.933333pt;}
.x156_c00187{left:578.666667pt;}
.x104_c00187{left:579.866667pt;}
.x115_c00187{left:581.066667pt;}
.xd5_c00187{left:582.400000pt;}
.x151_c00187{left:583.600000pt;}
.x11b_c00187{left:584.533333pt;}
.x111_c00187{left:586.000000pt;}
.x108_c00187{left:586.933333pt;}
.xfe_c00187{left:589.066667pt;}
.xec_c00187{left:590.000000pt;}
.xe8_c00187{left:592.000000pt;}
.x14d_c00187{left:594.400000pt;}
.xcc_c00187{left:595.600000pt;}
.xcf_c00187{left:597.733333pt;}
.xc5_c00187{left:599.200000pt;}
.xdc_c00187{left:600.266667pt;}
.x105_c00187{left:601.600000pt;}
.x12e_c00187{left:603.466667pt;}
.x153_c00187{left:606.000000pt;}
.xe9_c00187{left:608.933333pt;}
.xbb_c00187{left:610.533333pt;}
.xfb_c00187{left:612.933333pt;}
.x143_c00187{left:614.933333pt;}
.x10c_c00187{left:617.466667pt;}
.xf2_c00187{left:618.400000pt;}
.x130_c00187{left:619.866667pt;}
.xdd_c00187{left:621.066667pt;}
.xb5_c00187{left:623.600000pt;}
.x125_c00187{left:624.933333pt;}
.xf3_c00187{left:627.066667pt;}
.xc6_c00187{left:628.266667pt;}
.xd6_c00187{left:631.066667pt;}
.xb6_c00187{left:633.466667pt;}
.xfc_c00187{left:636.000000pt;}
.xff_c00187{left:638.000000pt;}
.xd0_c00187{left:640.933333pt;}
.x144_c00187{left:642.133333pt;}
.x109_c00187{left:643.200000pt;}
.x13f_c00187{left:644.133333pt;}
.x157_c00187{left:646.400000pt;}
.x126_c00187{left:647.333333pt;}
.xc7_c00187{left:648.400000pt;}
.x123_c00187{left:650.000000pt;}
.x116_c00187{left:651.866667pt;}
.xf4_c00187{left:653.600000pt;}
.xed_c00187{left:654.933333pt;}
.xd7_c00187{left:656.400000pt;}
.xfd_c00187{left:657.733333pt;}
.x131_c00187{left:661.200000pt;}
.xd1_c00187{left:663.333333pt;}
.xb7_c00187{left:665.200000pt;}
.x117_c00187{left:666.533333pt;}
.x100_c00187{left:668.400000pt;}
.xde_c00187{left:670.666667pt;}
.xf5_c00187{left:671.866667pt;}
.xd8_c00187{left:673.733333pt;}
.x145_c00187{left:676.000000pt;}
.xc2_c00187{left:679.066667pt;}
.x14e_c00187{left:680.133333pt;}
.xdf_c00187{left:681.866667pt;}
.x11f_c00187{left:683.333333pt;}
.x138_c00187{left:684.800000pt;}
.x127_c00187{left:685.733333pt;}
.xbc_c00187{left:687.733333pt;}
.x10d_c00187{left:692.666667pt;}
.x132_c00187{left:694.533333pt;}
.x118_c00187{left:696.266667pt;}
.x140_c00187{left:697.866667pt;}
.x13c_c00187{left:699.200000pt;}
.x101_c00187{left:700.133333pt;}
.xee_c00187{left:702.666667pt;}
.x146_c00187{left:705.066667pt;}
.x112_c00187{left:706.400000pt;}
.xbd_c00187{left:709.466667pt;}
.x14a_c00187{left:710.400000pt;}
.xd2_c00187{left:714.533333pt;}
.xf6_c00187{left:716.666667pt;}
.x120_c00187{left:718.800000pt;}
.x102_c00187{left:720.000000pt;}
.x155_c00187{left:721.333333pt;}
.xe0_c00187{left:724.133333pt;}
.xc8_c00187{left:726.533333pt;}
.xb8_c00187{left:728.266667pt;}
.xf7_c00187{left:731.066667pt;}
.x134_c00187{left:734.266667pt;}
.x10e_c00187{left:735.866667pt;}
.xc3_c00187{left:737.333333pt;}
.xbe_c00187{left:738.933333pt;}
.xd3_c00187{left:740.133333pt;}
.xc9_c00187{left:741.200000pt;}
.x14f_c00187{left:742.266667pt;}
.x113_c00187{left:743.200000pt;}
.x11c_c00187{left:744.133333pt;}
.xe1_c00187{left:745.200000pt;}
.xbf_c00187{left:746.933333pt;}
.xb9_c00187{left:748.133333pt;}
.x141_c00187{left:750.000000pt;}
.x11d_c00187{left:753.466667pt;}
.xea_c00187{left:755.866667pt;}
.xef_c00187{left:757.333333pt;}
.xd9_c00187{left:758.266667pt;}
.xf8_c00187{left:760.800000pt;}
}





/* 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_c00188 {
    display:none;
  }
  .loading-indicator_c00188.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00188 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_c00188 { 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_c00188" -> "#page-container .classname_c00188")
 */
.pf_c00188 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00188 { /* 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_c00188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00188 { /* 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_c00188 { /* 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_c00188 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00188 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00188 {overflow:visible;}
  }
}
.c_c00188 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00188 { /* 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_c00188:after { /* webkit #35443 */
  content: '';
}
.t_c00188:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00188 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 */
}
.__c00188 { /* 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_c00188 { /* info for Javascript */
  display:none;
}
.l_c00188 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00188 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00188 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00188: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_c00188 {
    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_c00188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00188.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_c00188 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00188;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.000000;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;}
.m11d_c00188{transform:matrix(0.008500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008500,0.000000,0.000000,0.250000,0,0);}
.m2_c00188{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m78_c00188{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m54_c00188{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00188{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00188{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m99_c00188{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m97_c00188{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00188{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00188{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m107_c00188{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m96_c00188{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00188{transform:matrix(0.083500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00188{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00188{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00188{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00188{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00188{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m16_c00188{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00188{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m119_c00188{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m98_c00188{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00188{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m51_c00188{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00188{transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00188{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00188{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00188{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00188{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.maa_c00188{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m57_c00188{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00188{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mab_c00188{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m109_c00188{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00188{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m89_c00188{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00188{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m112_c00188{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m61_c00188{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c00188{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00188{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mce_c00188{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00188{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00188{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m59_c00188{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m37_c00188{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m56_c00188{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00188{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00188{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m55_c00188{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m101_c00188{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m44_c00188{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m67_c00188{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m23_c00188{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00188{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.me0_c00188{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00188{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00188{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me_c00188{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m86_c00188{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00188{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m114_c00188{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00188{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00188{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1_c00188{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00188{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m85_c00188{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m36_c00188{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00188{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m33_c00188{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00188{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00188{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m69_c00188{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00188{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00188{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m72_c00188{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m108_c00188{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00188{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m43_c00188{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me8_c00188{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m111_c00188{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m35_c00188{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m25_c00188{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00188{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00188{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00188{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00188{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mde_c00188{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00188{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m18_c00188{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00188{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00188{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m84_c00188{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m15_c00188{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00188{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00188{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00188{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.md_c00188{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m13_c00188{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m73_c00188{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00188{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00188{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m105_c00188{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00188{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m20_c00188{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00188{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00188{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m58_c00188{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00188{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m103_c00188{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.md5_c00188{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00188{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00188{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m27_c00188{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m113_c00188{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m34_c00188{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00188{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00188{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00188{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m115_c00188{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00188{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00188{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00188{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.md3_c00188{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md9_c00188{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m17_c00188{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mff_c00188{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00188{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00188{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m100_c00188{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m49_c00188{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.md6_c00188{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00188{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m40_c00188{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00188{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00188{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m52_c00188{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00188{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00188{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00188{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m70_c00188{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m9_c00188{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m41_c00188{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mec_c00188{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.md4_c00188{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me3_c00188{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m29_c00188{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00188{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00188{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mf_c00188{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m42_c00188{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00188{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00188{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00188{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me4_c00188{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mae_c00188{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00188{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb_c00188{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md0_c00188{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00188{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.md1_c00188{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mea_c00188{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00188{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m66_c00188{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00188{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m81_c00188{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00188{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m19_c00188{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m38_c00188{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me1_c00188{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m39_c00188{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me6_c00188{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00188{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00188{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mef_c00188{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m11_c00188{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00188{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00188{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00188{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m75_c00188{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m83_c00188{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m31_c00188{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mda_c00188{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m116_c00188{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md2_c00188{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00188{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m88_c00188{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m14_c00188{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me2_c00188{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m60_c00188{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m26_c00188{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00188{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m53_c00188{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m24_c00188{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00188{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc_c00188{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m104_c00188{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00188{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00188{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.me5_c00188{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me9_c00188{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6_c00188{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m71_c00188{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00188{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m80_c00188{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m118_c00188{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m46_c00188{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m28_c00188{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md8_c00188{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mba_c00188{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00188{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00188{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00188{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md7_c00188{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m79_c00188{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m32_c00188{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m82_c00188{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.meb_c00188{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00188{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00188{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00188{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m62_c00188{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00188{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00188{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00188{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00188{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m45_c00188{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m117_c00188{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m12_c00188{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00188{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m76_c00188{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00188{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00188{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m95_c00188{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mca_c00188{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00188{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00188{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.maf_c00188{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);}
.m48_c00188{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m110_c00188{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m22_c00188{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m90_c00188{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00188{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m68_c00188{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00188{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m94_c00188{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10_c00188{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m106_c00188{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00188{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00188{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mad_c00188{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00188{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00188{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00188{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.me7_c00188{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m64_c00188{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m92_c00188{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m93_c00188{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00188{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.med_c00188{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m77_c00188{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m50_c00188{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00188{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m87_c00188{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m63_c00188{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00188{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mee_c00188{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00188{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m30_c00188{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00188{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m47_c00188{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m65_c00188{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m102_c00188{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m91_c00188{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00188{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m74_c00188{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m8_c00188{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00188{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m0_c00188{transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);}
.m21_c00188{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00188{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00188{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m5_c00188{transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00188{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mac_c00188{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m4_c00188{transform:matrix(1.992000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.992000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.992000,0.000000,0.000000,0.250000,0,0);}
.m7_c00188{transform:matrix(3.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.264000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls1_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:66.750000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{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__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00188{word-spacing:-93.750000px;}
.ws5_c00188{word-spacing:-7.500000px;}
.ws1_c00188{word-spacing:-6.163324px;}
.ws3_c00188{word-spacing:-5.878578px;}
.wsc_c00188{word-spacing:-4.276596px;}
.wsd_c00188{word-spacing:-3.947368px;}
.wse_c00188{word-spacing:0.000000px;}
.ws2_c00188{word-spacing:2.187500px;}
.wsb_c00188{word-spacing:6.666667px;}
.ws0_c00188{word-spacing:12.747851px;}
.ws6_c00188{word-spacing:22.142857px;}
.ws8_c00188{word-spacing:29.285714px;}
.ws9_c00188{word-spacing:32.250000px;}
.ws7_c00188{word-spacing:35.833333px;}
.wsa_c00188{word-spacing:655.333333px;}
._0_c00188{margin-left:-66.750000px;}
._1_c00188{width:70.000000px;}
.fc0_c00188{color:transparent;}
.fs5_c00188{font-size:18.000000px;}
.fs2_c00188{font-size:30.000000px;}
.fs1_c00188{font-size:48.000000px;}
.fs7_c00188{font-size:54.000000px;}
.fs4_c00188{font-size:60.000000px;}
.fs3_c00188{font-size:66.000000px;}
.fs6_c00188{font-size:72.000000px;}
.fs0_c00188{font-size:108.000000px;}
.y0_c00188{bottom:0.000000px;}
.y2_c00188{bottom:91.500000px;}
.y6f_c00188{bottom:132.900000px;}
.y6c_c00188{bottom:179.700000px;}
.y38_c00188{bottom:183.300000px;}
.y37_c00188{bottom:194.400000px;}
.y6b_c00188{bottom:198.000000px;}
.y36_c00188{bottom:208.050000px;}
.y6a_c00188{bottom:215.250000px;}
.y35_c00188{bottom:222.450000px;}
.y34_c00188{bottom:236.850000px;}
.y69_c00188{bottom:237.450000px;}
.y33_c00188{bottom:250.950000px;}
.y68_c00188{bottom:255.750000px;}
.y32_c00188{bottom:265.650000px;}
.y67_c00188{bottom:273.450000px;}
.y66_c00188{bottom:291.450000px;}
.y31_c00188{bottom:294.450000px;}
.y30_c00188{bottom:308.550000px;}
.y65_c00188{bottom:309.150000px;}
.y2f_c00188{bottom:322.950000px;}
.y6d_c00188{bottom:326.550000px;}
.y64_c00188{bottom:326.850000px;}
.y2e_c00188{bottom:337.350000px;}
.y63_c00188{bottom:344.550000px;}
.y2d_c00188{bottom:352.050000px;}
.y2c_c00188{bottom:366.150000px;}
.y62_c00188{bottom:366.900000px;}
.y2b_c00188{bottom:380.550000px;}
.y61_c00188{bottom:384.900000px;}
.y60_c00188{bottom:391.650000px;}
.y2a_c00188{bottom:394.950000px;}
.y5f_c00188{bottom:402.450000px;}
.y29_c00188{bottom:409.350000px;}
.y6e_c00188{bottom:417.900000px;}
.y5e_c00188{bottom:420.450000px;}
.y28_c00188{bottom:423.750000px;}
.y5d_c00188{bottom:438.300000px;}
.y27_c00188{bottom:438.450000px;}
.y26_c00188{bottom:452.850000px;}
.y5c_c00188{bottom:456.000000px;}
.y5b_c00188{bottom:474.000000px;}
.y25_c00188{bottom:477.300000px;}
.y5a_c00188{bottom:491.700000px;}
.y24_c00188{bottom:495.300000px;}
.y59_c00188{bottom:509.700000px;}
.y23_c00188{bottom:513.300000px;}
.y58_c00188{bottom:527.700000px;}
.y22_c00188{bottom:539.100000px;}
.y57_c00188{bottom:545.400000px;}
.y21_c00188{bottom:557.400000px;}
.y56_c00188{bottom:563.400000px;}
.y20_c00188{bottom:575.100000px;}
.y55_c00188{bottom:581.400000px;}
.y1f_c00188{bottom:592.800000px;}
.y54_c00188{bottom:599.400000px;}
.y1e_c00188{bottom:610.800000px;}
.y53_c00188{bottom:617.100000px;}
.y1d_c00188{bottom:628.800000px;}
.y52_c00188{bottom:635.100000px;}
.y1c_c00188{bottom:646.500000px;}
.y51_c00188{bottom:652.350000px;}
.y1b_c00188{bottom:663.750000px;}
.y50_c00188{bottom:670.650000px;}
.y1a_c00188{bottom:686.100000px;}
.y4f_c00188{bottom:696.900000px;}
.y19_c00188{bottom:704.100000px;}
.y4e_c00188{bottom:714.600000px;}
.y4d_c00188{bottom:732.300000px;}
.y18_c00188{bottom:735.450000px;}
.y4c_c00188{bottom:750.300000px;}
.y17_c00188{bottom:753.150000px;}
.y4b_c00188{bottom:768.300000px;}
.y16_c00188{bottom:775.500000px;}
.y4a_c00188{bottom:786.300000px;}
.y15_c00188{bottom:797.400000px;}
.y49_c00188{bottom:804.300000px;}
.y14_c00188{bottom:819.600000px;}
.y48_c00188{bottom:822.000000px;}
.y13_c00188{bottom:837.300000px;}
.y47_c00188{bottom:840.000000px;}
.y46_c00188{bottom:857.700000px;}
.y12_c00188{bottom:859.350000px;}
.y45_c00188{bottom:875.700000px;}
.y11_c00188{bottom:877.350000px;}
.y44_c00188{bottom:893.400000px;}
.y10_c00188{bottom:895.050000px;}
.yf_c00188{bottom:903.300000px;}
.y43_c00188{bottom:911.700000px;}
.ye_c00188{bottom:916.500000px;}
.y42_c00188{bottom:928.950000px;}
.yd_c00188{bottom:939.150000px;}
.y41_c00188{bottom:946.950000px;}
.yc_c00188{bottom:956.850000px;}
.y40_c00188{bottom:964.950000px;}
.yb_c00188{bottom:978.900000px;}
.y3f_c00188{bottom:982.650000px;}
.y3e_c00188{bottom:1000.650000px;}
.ya_c00188{bottom:1000.800000px;}
.y3d_c00188{bottom:1018.350000px;}
.y9_c00188{bottom:1023.600000px;}
.y3c_c00188{bottom:1036.350000px;}
.y8_c00188{bottom:1045.500000px;}
.y3b_c00188{bottom:1054.050000px;}
.y7_c00188{bottom:1067.400000px;}
.y3a_c00188{bottom:1072.050000px;}
.y6_c00188{bottom:1090.050000px;}
.y39_c00188{bottom:1107.750000px;}
.y5_c00188{bottom:1108.800000px;}
.y1_c00188{bottom:1134.750000px;}
.y3_c00188{bottom:1267.200000px;}
.y4_c00188{bottom:1267.500000px;}
.h7_c00188{height:18.000000px;}
.h4_c00188{height:30.000000px;}
.h3_c00188{height:48.000000px;}
.h9_c00188{height:54.000000px;}
.h6_c00188{height:60.000000px;}
.h5_c00188{height:66.000000px;}
.h8_c00188{height:72.000000px;}
.h2_c00188{height:108.000000px;}
.h0_c00188{height:1271.160094px;}
.h1_c00188{height:1271.250000px;}
.w1_c00188{width:963.000000px;}
.w0_c00188{width:963.359985px;}
.x0_c00188{left:0.000000px;}
.x3_c00188{left:1.500000px;}
.x98_c00188{left:73.050000px;}
.x71_c00188{left:75.300000px;}
.x43_c00188{left:78.450000px;}
.x3f_c00188{left:79.950000px;}
.x95_c00188{left:86.100000px;}
.x4e_c00188{left:87.150000px;}
.x7f_c00188{left:89.400000px;}
.x6e_c00188{left:93.150000px;}
.x4c_c00188{left:94.650000px;}
.x54_c00188{left:96.300000px;}
.x45_c00188{left:97.500000px;}
.x32_c00188{left:98.850000px;}
.x27_c00188{left:100.650000px;}
.xa_c00188{left:102.600000px;}
.x89_c00188{left:104.100000px;}
.x4_c00188{left:110.850000px;}
.x74_c00188{left:112.950000px;}
.x4f_c00188{left:115.650000px;}
.x2a_c00188{left:117.000000px;}
.x22_c00188{left:118.500000px;}
.x1a_c00188{left:119.700000px;}
.x14_c00188{left:121.350000px;}
.x46_c00188{left:122.400000px;}
.x91_c00188{left:124.050000px;}
.x11_c00188{left:125.250000px;}
.x36_c00188{left:128.100000px;}
.x28_c00188{left:130.500000px;}
.x65_c00188{left:131.550000px;}
.x7c_c00188{left:138.300000px;}
.x29_c00188{left:141.150000px;}
.x38_c00188{left:143.250000px;}
.x66_c00188{left:144.900000px;}
.x2b_c00188{left:148.650000px;}
.x62_c00188{left:149.700000px;}
.x3d_c00188{left:151.500000px;}
.x6f_c00188{left:155.100000px;}
.x8f_c00188{left:156.900000px;}
.x1f_c00188{left:158.400000px;}
.x47_c00188{left:160.950000px;}
.x23_c00188{left:162.450000px;}
.x15_c00188{left:163.800000px;}
.x8c_c00188{left:166.350000px;}
.x21_c00188{left:170.550000px;}
.x33_c00188{left:172.650000px;}
.x1b_c00188{left:175.500000px;}
.x50_c00188{left:177.150000px;}
.x63_c00188{left:179.550000px;}
.x72_c00188{left:181.800000px;}
.x5_c00188{left:182.850000px;}
.x3e_c00188{left:185.700000px;}
.x8d_c00188{left:187.200000px;}
.x2c_c00188{left:189.300000px;}
.xb_c00188{left:192.300000px;}
.x75_c00188{left:195.150000px;}
.x12_c00188{left:196.200000px;}
.x5d_c00188{left:198.000000px;}
.x16_c00188{left:199.050000px;}
.x92_c00188{left:200.100000px;}
.x67_c00188{left:201.750000px;}
.x7d_c00188{left:202.800000px;}
.x1c_c00188{left:204.000000px;}
.x83_c00188{left:206.700000px;}
.x17_c00188{left:208.350000px;}
.xc_c00188{left:210.000000px;}
.x80_c00188{left:211.050000px;}
.x24_c00188{left:212.100000px;}
.x39_c00188{left:214.950000px;}
.x93_c00188{left:216.600000px;}
.x40_c00188{left:219.300000px;}
.x34_c00188{left:220.950000px;}
.x7e_c00188{left:222.900000px;}
.x13_c00188{left:223.950000px;}
.x84_c00188{left:225.000000px;}
.x1d_c00188{left:227.700000px;}
.x41_c00188{left:232.200000px;}
.x18_c00188{left:234.600000px;}
.x76_c00188{left:235.800000px;}
.x55_c00188{left:237.750000px;}
.x8e_c00188{left:239.700000px;}
.x6a_c00188{left:241.650000px;}
.x5e_c00188{left:243.300000px;}
.x1e_c00188{left:244.950000px;}
.x48_c00188{left:248.100000px;}
.x3a_c00188{left:250.200000px;}
.x59_c00188{left:252.000000px;}
.x64_c00188{left:253.350000px;}
.x19_c00188{left:258.000000px;}
.x6_c00188{left:260.250000px;}
.x20_c00188{left:263.550000px;}
.x25_c00188{left:268.950000px;}
.xd_c00188{left:270.450000px;}
.x79_c00188{left:272.100000px;}
.x42_c00188{left:273.900000px;}
.x8a_c00188{left:277.500000px;}
.x81_c00188{left:278.850000px;}
.x51_c00188{left:280.950000px;}
.x56_c00188{left:282.750000px;}
.x6b_c00188{left:285.600000px;}
.x3b_c00188{left:288.300000px;}
.x70_c00188{left:291.150000px;}
.x5f_c00188{left:294.750000px;}
.x5a_c00188{left:297.000000px;}
.x85_c00188{left:298.800000px;}
.x2d_c00188{left:301.050000px;}
.x52_c00188{left:302.250000px;}
.x35_c00188{left:303.450000px;}
.x7a_c00188{left:305.550000px;}
.x86_c00188{left:307.050000px;}
.x99_c00188{left:308.250000px;}
.x37_c00188{left:309.900000px;}
.x7_c00188{left:312.450000px;}
.x87_c00188{left:313.500000px;}
.x4d_c00188{left:316.800000px;}
.x68_c00188{left:320.550000px;}
.xe_c00188{left:321.600000px;}
.x1_c00188{left:326.850000px;}
.x5b_c00188{left:331.500000px;}
.x8_c00188{left:332.550000px;}
.x49_c00188{left:336.300000px;}
.x97_c00188{left:337.650000px;}
.x57_c00188{left:339.300000px;}
.x88_c00188{left:340.950000px;}
.x2e_c00188{left:342.450000px;}
.x7b_c00188{left:344.100000px;}
.x4a_c00188{left:348.900000px;}
.x53_c00188{left:351.900000px;}
.x60_c00188{left:353.400000px;}
.x77_c00188{left:355.200000px;}
.x2f_c00188{left:359.400000px;}
.x6c_c00188{left:361.950000px;}
.xf_c00188{left:364.500000px;}
.x26_c00188{left:366.000000px;}
.x96_c00188{left:367.500000px;}
.x44_c00188{left:369.000000px;}
.x8b_c00188{left:370.050000px;}
.x82_c00188{left:371.100000px;}
.x78_c00188{left:372.150000px;}
.x30_c00188{left:374.550000px;}
.x3c_c00188{left:376.950000px;}
.x10_c00188{left:382.200000px;}
.x5c_c00188{left:384.750000px;}
.x9_c00188{left:387.300000px;}
.x73_c00188{left:389.100000px;}
.x4b_c00188{left:391.350000px;}
.x94_c00188{left:397.050000px;}
.x61_c00188{left:398.100000px;}
.x90_c00188{left:399.450000px;}
.x58_c00188{left:400.800000px;}
.x6d_c00188{left:402.750000px;}
.x69_c00188{left:403.800000px;}
.x31_c00188{left:415.950000px;}
.x136_c00188{left:432.300000px;}
.x10c_c00188{left:435.900000px;}
.x13c_c00188{left:447.900000px;}
.x135_c00188{left:449.250000px;}
.x125_c00188{left:450.750000px;}
.x120_c00188{left:451.950000px;}
.x10e_c00188{left:453.300000px;}
.x104_c00188{left:455.100000px;}
.xf1_c00188{left:456.150000px;}
.xe4_c00188{left:457.200000px;}
.xd7_c00188{left:458.400000px;}
.xb7_c00188{left:459.750000px;}
.x9a_c00188{left:461.100000px;}
.x143_c00188{left:465.900000px;}
.x12c_c00188{left:472.950000px;}
.x11e_c00188{left:474.750000px;}
.x128_c00188{left:476.250000px;}
.xe5_c00188{left:477.300000px;}
.xe1_c00188{left:479.850000px;}
.x130_c00188{left:483.450000px;}
.xdc_c00188{left:485.850000px;}
.x140_c00188{left:487.200000px;}
.xf8_c00188{left:488.250000px;}
.x100_c00188{left:490.350000px;}
.x11a_c00188{left:491.700000px;}
.x10a_c00188{left:493.650000px;}
.xf6_c00188{left:495.750000px;}
.xb8_c00188{left:497.250000px;}
.x105_c00188{left:500.100000px;}
.x9b_c00188{left:504.300000px;}
.x131_c00188{left:506.550000px;}
.xfc_c00188{left:509.550000px;}
.xa1_c00188{left:511.200000px;}
.x123_c00188{left:512.700000px;}
.x126_c00188{left:514.500000px;}
.xb9_c00188{left:517.050000px;}
.xa2_c00188{left:519.450000px;}
.xb2_c00188{left:520.950000px;}
.xd8_c00188{left:522.900000px;}
.x13d_c00188{left:525.000000px;}
.x129_c00188{left:529.050000px;}
.xfd_c00188{left:530.400000px;}
.x139_c00188{left:531.450000px;}
.xee_c00188{left:533.250000px;}
.xa9_c00188{left:534.300000px;}
.xa3_c00188{left:536.400000px;}
.xd2_c00188{left:538.650000px;}
.x141_c00188{left:541.950000px;}
.xaa_c00188{left:543.600000px;}
.xf4_c00188{left:545.850000px;}
.xba_c00188{left:547.650000px;}
.xc4_c00188{left:549.900000px;}
.x121_c00188{left:551.250000px;}
.xa4_c00188{left:552.900000px;}
.xab_c00188{left:554.400000px;}
.xf2_c00188{left:557.250000px;}
.xd3_c00188{left:558.450000px;}
.x10d_c00188{left:559.650000px;}
.xe9_c00188{left:561.150000px;}
.xc1_c00188{left:563.250000px;}
.xd9_c00188{left:565.800000px;}
.x10b_c00188{left:566.850000px;}
.x122_c00188{left:567.900000px;}
.x111_c00188{left:569.850000px;}
.xdd_c00188{left:571.800000px;}
.xbb_c00188{left:573.150000px;}
.xb3_c00188{left:574.650000px;}
.x132_c00188{left:578.850000px;}
.x11b_c00188{left:580.500000px;}
.xf9_c00188{left:581.850000px;}
.xc5_c00188{left:583.350000px;}
.xcb_c00188{left:584.850000px;}
.xea_c00188{left:586.350000px;}
.xfe_c00188{left:587.550000px;}
.x119_c00188{left:589.650000px;}
.xac_c00188{left:593.250000px;}
.x9c_c00188{left:595.050000px;}
.xd4_c00188{left:596.250000px;}
.x144_c00188{left:598.800000px;}
.xf7_c00188{left:600.450000px;}
.x145_c00188{left:602.550000px;}
.xcc_c00188{left:604.350000px;}
.x11f_c00188{left:605.700000px;}
.x133_c00188{left:606.900000px;}
.x12d_c00188{left:607.950000px;}
.x115_c00188{left:609.900000px;}
.x106_c00188{left:611.400000px;}
.xbc_c00188{left:612.450000px;}
.xad_c00188{left:613.800000px;}
.xe6_c00188{left:615.450000px;}
.x9d_c00188{left:618.450000px;}
.xb4_c00188{left:620.700000px;}
.xa5_c00188{left:622.350000px;}
.x12b_c00188{left:624.600000px;}
.xe2_c00188{left:626.850000px;}
.xc6_c00188{left:628.050000px;}
.xae_c00188{left:629.700000px;}
.x142_c00188{left:630.750000px;}
.xef_c00188{left:631.800000px;}
.xbd_c00188{left:633.000000px;}
.x107_c00188{left:634.800000px;}
.xe3_c00188{left:636.600000px;}
.xc7_c00188{left:639.600000px;}
.xeb_c00188{left:641.400000px;}
.x124_c00188{left:642.600000px;}
.x112_c00188{left:645.450000px;}
.x137_c00188{left:646.950000px;}
.xe7_c00188{left:648.600000px;}
.xbe_c00188{left:651.750000px;}
.xf3_c00188{left:653.700000px;}
.x113_c00188{left:654.750000px;}
.xc2_c00188{left:655.800000px;}
.xcd_c00188{left:656.850000px;}
.x116_c00188{left:657.900000px;}
.x11c_c00188{left:659.700000px;}
.xda_c00188{left:660.900000px;}
.x134_c00188{left:662.700000px;}
.xde_c00188{left:664.350000px;}
.xce_c00188{left:666.150000px;}
.x10f_c00188{left:667.500000px;}
.x9e_c00188{left:669.600000px;}
.xc8_c00188{left:672.000000px;}
.x13a_c00188{left:673.200000px;}
.xb5_c00188{left:674.700000px;}
.xff_c00188{left:676.200000px;}
.xfa_c00188{left:678.000000px;}
.x108_c00188{left:683.400000px;}
.xdb_c00188{left:686.400000px;}
.xbf_c00188{left:688.800000px;}
.x12f_c00188{left:690.150000px;}
.xaf_c00188{left:691.200000px;}
.x101_c00188{left:693.000000px;}
.xc9_c00188{left:694.350000px;}
.x117_c00188{left:697.200000px;}
.x114_c00188{left:699.450000px;}
.xa6_c00188{left:701.550000px;}
.xc3_c00188{left:705.450000px;}
.x9f_c00188{left:708.450000px;}
.xec_c00188{left:710.400000px;}
.x138_c00188{left:711.450000px;}
.x13e_c00188{left:712.500000px;}
.xd5_c00188{left:713.550000px;}
.xb0_c00188{left:716.100000px;}
.x102_c00188{left:717.450000px;}
.xcf_c00188{left:719.850000px;}
.xf0_c00188{left:721.500000px;}
.xfb_c00188{left:723.750000px;}
.x118_c00188{left:725.700000px;}
.x11d_c00188{left:728.100000px;}
.xb6_c00188{left:730.500000px;}
.xd0_c00188{left:731.700000px;}
.xc0_c00188{left:733.500000px;}
.xa7_c00188{left:735.000000px;}
.xe8_c00188{left:736.200000px;}
.xdf_c00188{left:738.450000px;}
.xca_c00188{left:740.400000px;}
.xed_c00188{left:741.750000px;}
.x127_c00188{left:743.700000px;}
.x12a_c00188{left:744.900000px;}
.x109_c00188{left:746.100000px;}
.x12e_c00188{left:748.050000px;}
.xd6_c00188{left:749.250000px;}
.x13f_c00188{left:751.050000px;}
.x2_c00188{left:752.700000px;}
.xa8_c00188{left:754.500000px;}
.x13b_c00188{left:755.700000px;}
.x110_c00188{left:756.750000px;}
.xb1_c00188{left:759.000000px;}
.xe0_c00188{left:760.350000px;}
.xa0_c00188{left:761.400000px;}
.x103_c00188{left:763.950000px;}
.xd1_c00188{left:768.000000px;}
.xf5_c00188{left:769.650000px;}
.x148_c00188{left:946.050000px;}
.x14a_c00188{left:949.650000px;}
.x149_c00188{left:954.300000px;}
.x147_c00188{left:958.650000px;}
.x146_c00188{left:959.700000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls1_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:59.333333pt;}
.ws4_c00188{word-spacing:-83.333333pt;}
.ws5_c00188{word-spacing:-6.666667pt;}
.ws1_c00188{word-spacing:-5.478510pt;}
.ws3_c00188{word-spacing:-5.225403pt;}
.wsc_c00188{word-spacing:-3.801418pt;}
.wsd_c00188{word-spacing:-3.508772pt;}
.wse_c00188{word-spacing:0.000000pt;}
.ws2_c00188{word-spacing:1.944444pt;}
.wsb_c00188{word-spacing:5.925926pt;}
.ws0_c00188{word-spacing:11.331423pt;}
.ws6_c00188{word-spacing:19.682540pt;}
.ws8_c00188{word-spacing:26.031746pt;}
.ws9_c00188{word-spacing:28.666667pt;}
.ws7_c00188{word-spacing:31.851852pt;}
.wsa_c00188{word-spacing:582.518519pt;}
._0_c00188{margin-left:-59.333333pt;}
._1_c00188{width:62.222222pt;}
.fs5_c00188{font-size:16.000000pt;}
.fs2_c00188{font-size:26.666667pt;}
.fs1_c00188{font-size:42.666667pt;}
.fs7_c00188{font-size:48.000000pt;}
.fs4_c00188{font-size:53.333333pt;}
.fs3_c00188{font-size:58.666667pt;}
.fs6_c00188{font-size:64.000000pt;}
.fs0_c00188{font-size:96.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y2_c00188{bottom:81.333333pt;}
.y6f_c00188{bottom:118.133333pt;}
.y6c_c00188{bottom:159.733333pt;}
.y38_c00188{bottom:162.933333pt;}
.y37_c00188{bottom:172.800000pt;}
.y6b_c00188{bottom:176.000000pt;}
.y36_c00188{bottom:184.933333pt;}
.y6a_c00188{bottom:191.333333pt;}
.y35_c00188{bottom:197.733333pt;}
.y34_c00188{bottom:210.533333pt;}
.y69_c00188{bottom:211.066667pt;}
.y33_c00188{bottom:223.066667pt;}
.y68_c00188{bottom:227.333333pt;}
.y32_c00188{bottom:236.133333pt;}
.y67_c00188{bottom:243.066667pt;}
.y66_c00188{bottom:259.066667pt;}
.y31_c00188{bottom:261.733333pt;}
.y30_c00188{bottom:274.266667pt;}
.y65_c00188{bottom:274.800000pt;}
.y2f_c00188{bottom:287.066667pt;}
.y6d_c00188{bottom:290.266667pt;}
.y64_c00188{bottom:290.533333pt;}
.y2e_c00188{bottom:299.866667pt;}
.y63_c00188{bottom:306.266667pt;}
.y2d_c00188{bottom:312.933333pt;}
.y2c_c00188{bottom:325.466667pt;}
.y62_c00188{bottom:326.133333pt;}
.y2b_c00188{bottom:338.266667pt;}
.y61_c00188{bottom:342.133333pt;}
.y60_c00188{bottom:348.133333pt;}
.y2a_c00188{bottom:351.066667pt;}
.y5f_c00188{bottom:357.733333pt;}
.y29_c00188{bottom:363.866667pt;}
.y6e_c00188{bottom:371.466667pt;}
.y5e_c00188{bottom:373.733333pt;}
.y28_c00188{bottom:376.666667pt;}
.y5d_c00188{bottom:389.600000pt;}
.y27_c00188{bottom:389.733333pt;}
.y26_c00188{bottom:402.533333pt;}
.y5c_c00188{bottom:405.333333pt;}
.y5b_c00188{bottom:421.333333pt;}
.y25_c00188{bottom:424.266667pt;}
.y5a_c00188{bottom:437.066667pt;}
.y24_c00188{bottom:440.266667pt;}
.y59_c00188{bottom:453.066667pt;}
.y23_c00188{bottom:456.266667pt;}
.y58_c00188{bottom:469.066667pt;}
.y22_c00188{bottom:479.200000pt;}
.y57_c00188{bottom:484.800000pt;}
.y21_c00188{bottom:495.466667pt;}
.y56_c00188{bottom:500.800000pt;}
.y20_c00188{bottom:511.200000pt;}
.y55_c00188{bottom:516.800000pt;}
.y1f_c00188{bottom:526.933333pt;}
.y54_c00188{bottom:532.800000pt;}
.y1e_c00188{bottom:542.933333pt;}
.y53_c00188{bottom:548.533333pt;}
.y1d_c00188{bottom:558.933333pt;}
.y52_c00188{bottom:564.533333pt;}
.y1c_c00188{bottom:574.666667pt;}
.y51_c00188{bottom:579.866667pt;}
.y1b_c00188{bottom:590.000000pt;}
.y50_c00188{bottom:596.133333pt;}
.y1a_c00188{bottom:609.866667pt;}
.y4f_c00188{bottom:619.466667pt;}
.y19_c00188{bottom:625.866667pt;}
.y4e_c00188{bottom:635.200000pt;}
.y4d_c00188{bottom:650.933333pt;}
.y18_c00188{bottom:653.733333pt;}
.y4c_c00188{bottom:666.933333pt;}
.y17_c00188{bottom:669.466667pt;}
.y4b_c00188{bottom:682.933333pt;}
.y16_c00188{bottom:689.333333pt;}
.y4a_c00188{bottom:698.933333pt;}
.y15_c00188{bottom:708.800000pt;}
.y49_c00188{bottom:714.933333pt;}
.y14_c00188{bottom:728.533333pt;}
.y48_c00188{bottom:730.666667pt;}
.y13_c00188{bottom:744.266667pt;}
.y47_c00188{bottom:746.666667pt;}
.y46_c00188{bottom:762.400000pt;}
.y12_c00188{bottom:763.866667pt;}
.y45_c00188{bottom:778.400000pt;}
.y11_c00188{bottom:779.866667pt;}
.y44_c00188{bottom:794.133333pt;}
.y10_c00188{bottom:795.600000pt;}
.yf_c00188{bottom:802.933333pt;}
.y43_c00188{bottom:810.400000pt;}
.ye_c00188{bottom:814.666667pt;}
.y42_c00188{bottom:825.733333pt;}
.yd_c00188{bottom:834.800000pt;}
.y41_c00188{bottom:841.733333pt;}
.yc_c00188{bottom:850.533333pt;}
.y40_c00188{bottom:857.733333pt;}
.yb_c00188{bottom:870.133333pt;}
.y3f_c00188{bottom:873.466667pt;}
.y3e_c00188{bottom:889.466667pt;}
.ya_c00188{bottom:889.600000pt;}
.y3d_c00188{bottom:905.200000pt;}
.y9_c00188{bottom:909.866667pt;}
.y3c_c00188{bottom:921.200000pt;}
.y8_c00188{bottom:929.333333pt;}
.y3b_c00188{bottom:936.933333pt;}
.y7_c00188{bottom:948.800000pt;}
.y3a_c00188{bottom:952.933333pt;}
.y6_c00188{bottom:968.933333pt;}
.y39_c00188{bottom:984.666667pt;}
.y5_c00188{bottom:985.600000pt;}
.y1_c00188{bottom:1008.666667pt;}
.y3_c00188{bottom:1126.400000pt;}
.y4_c00188{bottom:1126.666667pt;}
.h7_c00188{height:16.000000pt;}
.h4_c00188{height:26.666667pt;}
.h3_c00188{height:42.666667pt;}
.h9_c00188{height:48.000000pt;}
.h6_c00188{height:53.333333pt;}
.h5_c00188{height:58.666667pt;}
.h8_c00188{height:64.000000pt;}
.h2_c00188{height:96.000000pt;}
.h0_c00188{height:1129.920084pt;}
.h1_c00188{height:1130.000000pt;}
.w1_c00188{width:856.000000pt;}
.w0_c00188{width:856.319987pt;}
.x0_c00188{left:0.000000pt;}
.x3_c00188{left:1.333333pt;}
.x98_c00188{left:64.933333pt;}
.x71_c00188{left:66.933333pt;}
.x43_c00188{left:69.733333pt;}
.x3f_c00188{left:71.066667pt;}
.x95_c00188{left:76.533333pt;}
.x4e_c00188{left:77.466667pt;}
.x7f_c00188{left:79.466667pt;}
.x6e_c00188{left:82.800000pt;}
.x4c_c00188{left:84.133333pt;}
.x54_c00188{left:85.600000pt;}
.x45_c00188{left:86.666667pt;}
.x32_c00188{left:87.866667pt;}
.x27_c00188{left:89.466667pt;}
.xa_c00188{left:91.200000pt;}
.x89_c00188{left:92.533333pt;}
.x4_c00188{left:98.533333pt;}
.x74_c00188{left:100.400000pt;}
.x4f_c00188{left:102.800000pt;}
.x2a_c00188{left:104.000000pt;}
.x22_c00188{left:105.333333pt;}
.x1a_c00188{left:106.400000pt;}
.x14_c00188{left:107.866667pt;}
.x46_c00188{left:108.800000pt;}
.x91_c00188{left:110.266667pt;}
.x11_c00188{left:111.333333pt;}
.x36_c00188{left:113.866667pt;}
.x28_c00188{left:116.000000pt;}
.x65_c00188{left:116.933333pt;}
.x7c_c00188{left:122.933333pt;}
.x29_c00188{left:125.466667pt;}
.x38_c00188{left:127.333333pt;}
.x66_c00188{left:128.800000pt;}
.x2b_c00188{left:132.133333pt;}
.x62_c00188{left:133.066667pt;}
.x3d_c00188{left:134.666667pt;}
.x6f_c00188{left:137.866667pt;}
.x8f_c00188{left:139.466667pt;}
.x1f_c00188{left:140.800000pt;}
.x47_c00188{left:143.066667pt;}
.x23_c00188{left:144.400000pt;}
.x15_c00188{left:145.600000pt;}
.x8c_c00188{left:147.866667pt;}
.x21_c00188{left:151.600000pt;}
.x33_c00188{left:153.466667pt;}
.x1b_c00188{left:156.000000pt;}
.x50_c00188{left:157.466667pt;}
.x63_c00188{left:159.600000pt;}
.x72_c00188{left:161.600000pt;}
.x5_c00188{left:162.533333pt;}
.x3e_c00188{left:165.066667pt;}
.x8d_c00188{left:166.400000pt;}
.x2c_c00188{left:168.266667pt;}
.xb_c00188{left:170.933333pt;}
.x75_c00188{left:173.466667pt;}
.x12_c00188{left:174.400000pt;}
.x5d_c00188{left:176.000000pt;}
.x16_c00188{left:176.933333pt;}
.x92_c00188{left:177.866667pt;}
.x67_c00188{left:179.333333pt;}
.x7d_c00188{left:180.266667pt;}
.x1c_c00188{left:181.333333pt;}
.x83_c00188{left:183.733333pt;}
.x17_c00188{left:185.200000pt;}
.xc_c00188{left:186.666667pt;}
.x80_c00188{left:187.600000pt;}
.x24_c00188{left:188.533333pt;}
.x39_c00188{left:191.066667pt;}
.x93_c00188{left:192.533333pt;}
.x40_c00188{left:194.933333pt;}
.x34_c00188{left:196.400000pt;}
.x7e_c00188{left:198.133333pt;}
.x13_c00188{left:199.066667pt;}
.x84_c00188{left:200.000000pt;}
.x1d_c00188{left:202.400000pt;}
.x41_c00188{left:206.400000pt;}
.x18_c00188{left:208.533333pt;}
.x76_c00188{left:209.600000pt;}
.x55_c00188{left:211.333333pt;}
.x8e_c00188{left:213.066667pt;}
.x6a_c00188{left:214.800000pt;}
.x5e_c00188{left:216.266667pt;}
.x1e_c00188{left:217.733333pt;}
.x48_c00188{left:220.533333pt;}
.x3a_c00188{left:222.400000pt;}
.x59_c00188{left:224.000000pt;}
.x64_c00188{left:225.200000pt;}
.x19_c00188{left:229.333333pt;}
.x6_c00188{left:231.333333pt;}
.x20_c00188{left:234.266667pt;}
.x25_c00188{left:239.066667pt;}
.xd_c00188{left:240.400000pt;}
.x79_c00188{left:241.866667pt;}
.x42_c00188{left:243.466667pt;}
.x8a_c00188{left:246.666667pt;}
.x81_c00188{left:247.866667pt;}
.x51_c00188{left:249.733333pt;}
.x56_c00188{left:251.333333pt;}
.x6b_c00188{left:253.866667pt;}
.x3b_c00188{left:256.266667pt;}
.x70_c00188{left:258.800000pt;}
.x5f_c00188{left:262.000000pt;}
.x5a_c00188{left:264.000000pt;}
.x85_c00188{left:265.600000pt;}
.x2d_c00188{left:267.600000pt;}
.x52_c00188{left:268.666667pt;}
.x35_c00188{left:269.733333pt;}
.x7a_c00188{left:271.600000pt;}
.x86_c00188{left:272.933333pt;}
.x99_c00188{left:274.000000pt;}
.x37_c00188{left:275.466667pt;}
.x7_c00188{left:277.733333pt;}
.x87_c00188{left:278.666667pt;}
.x4d_c00188{left:281.600000pt;}
.x68_c00188{left:284.933333pt;}
.xe_c00188{left:285.866667pt;}
.x1_c00188{left:290.533333pt;}
.x5b_c00188{left:294.666667pt;}
.x8_c00188{left:295.600000pt;}
.x49_c00188{left:298.933333pt;}
.x97_c00188{left:300.133333pt;}
.x57_c00188{left:301.600000pt;}
.x88_c00188{left:303.066667pt;}
.x2e_c00188{left:304.400000pt;}
.x7b_c00188{left:305.866667pt;}
.x4a_c00188{left:310.133333pt;}
.x53_c00188{left:312.800000pt;}
.x60_c00188{left:314.133333pt;}
.x77_c00188{left:315.733333pt;}
.x2f_c00188{left:319.466667pt;}
.x6c_c00188{left:321.733333pt;}
.xf_c00188{left:324.000000pt;}
.x26_c00188{left:325.333333pt;}
.x96_c00188{left:326.666667pt;}
.x44_c00188{left:328.000000pt;}
.x8b_c00188{left:328.933333pt;}
.x82_c00188{left:329.866667pt;}
.x78_c00188{left:330.800000pt;}
.x30_c00188{left:332.933333pt;}
.x3c_c00188{left:335.066667pt;}
.x10_c00188{left:339.733333pt;}
.x5c_c00188{left:342.000000pt;}
.x9_c00188{left:344.266667pt;}
.x73_c00188{left:345.866667pt;}
.x4b_c00188{left:347.866667pt;}
.x94_c00188{left:352.933333pt;}
.x61_c00188{left:353.866667pt;}
.x90_c00188{left:355.066667pt;}
.x58_c00188{left:356.266667pt;}
.x6d_c00188{left:358.000000pt;}
.x69_c00188{left:358.933333pt;}
.x31_c00188{left:369.733333pt;}
.x136_c00188{left:384.266667pt;}
.x10c_c00188{left:387.466667pt;}
.x13c_c00188{left:398.133333pt;}
.x135_c00188{left:399.333333pt;}
.x125_c00188{left:400.666667pt;}
.x120_c00188{left:401.733333pt;}
.x10e_c00188{left:402.933333pt;}
.x104_c00188{left:404.533333pt;}
.xf1_c00188{left:405.466667pt;}
.xe4_c00188{left:406.400000pt;}
.xd7_c00188{left:407.466667pt;}
.xb7_c00188{left:408.666667pt;}
.x9a_c00188{left:409.866667pt;}
.x143_c00188{left:414.133333pt;}
.x12c_c00188{left:420.400000pt;}
.x11e_c00188{left:422.000000pt;}
.x128_c00188{left:423.333333pt;}
.xe5_c00188{left:424.266667pt;}
.xe1_c00188{left:426.533333pt;}
.x130_c00188{left:429.733333pt;}
.xdc_c00188{left:431.866667pt;}
.x140_c00188{left:433.066667pt;}
.xf8_c00188{left:434.000000pt;}
.x100_c00188{left:435.866667pt;}
.x11a_c00188{left:437.066667pt;}
.x10a_c00188{left:438.800000pt;}
.xf6_c00188{left:440.666667pt;}
.xb8_c00188{left:442.000000pt;}
.x105_c00188{left:444.533333pt;}
.x9b_c00188{left:448.266667pt;}
.x131_c00188{left:450.266667pt;}
.xfc_c00188{left:452.933333pt;}
.xa1_c00188{left:454.400000pt;}
.x123_c00188{left:455.733333pt;}
.x126_c00188{left:457.333333pt;}
.xb9_c00188{left:459.600000pt;}
.xa2_c00188{left:461.733333pt;}
.xb2_c00188{left:463.066667pt;}
.xd8_c00188{left:464.800000pt;}
.x13d_c00188{left:466.666667pt;}
.x129_c00188{left:470.266667pt;}
.xfd_c00188{left:471.466667pt;}
.x139_c00188{left:472.400000pt;}
.xee_c00188{left:474.000000pt;}
.xa9_c00188{left:474.933333pt;}
.xa3_c00188{left:476.800000pt;}
.xd2_c00188{left:478.800000pt;}
.x141_c00188{left:481.733333pt;}
.xaa_c00188{left:483.200000pt;}
.xf4_c00188{left:485.200000pt;}
.xba_c00188{left:486.800000pt;}
.xc4_c00188{left:488.800000pt;}
.x121_c00188{left:490.000000pt;}
.xa4_c00188{left:491.466667pt;}
.xab_c00188{left:492.800000pt;}
.xf2_c00188{left:495.333333pt;}
.xd3_c00188{left:496.400000pt;}
.x10d_c00188{left:497.466667pt;}
.xe9_c00188{left:498.800000pt;}
.xc1_c00188{left:500.666667pt;}
.xd9_c00188{left:502.933333pt;}
.x10b_c00188{left:503.866667pt;}
.x122_c00188{left:504.800000pt;}
.x111_c00188{left:506.533333pt;}
.xdd_c00188{left:508.266667pt;}
.xbb_c00188{left:509.466667pt;}
.xb3_c00188{left:510.800000pt;}
.x132_c00188{left:514.533333pt;}
.x11b_c00188{left:516.000000pt;}
.xf9_c00188{left:517.200000pt;}
.xc5_c00188{left:518.533333pt;}
.xcb_c00188{left:519.866667pt;}
.xea_c00188{left:521.200000pt;}
.xfe_c00188{left:522.266667pt;}
.x119_c00188{left:524.133333pt;}
.xac_c00188{left:527.333333pt;}
.x9c_c00188{left:528.933333pt;}
.xd4_c00188{left:530.000000pt;}
.x144_c00188{left:532.266667pt;}
.xf7_c00188{left:533.733333pt;}
.x145_c00188{left:535.600000pt;}
.xcc_c00188{left:537.200000pt;}
.x11f_c00188{left:538.400000pt;}
.x133_c00188{left:539.466667pt;}
.x12d_c00188{left:540.400000pt;}
.x115_c00188{left:542.133333pt;}
.x106_c00188{left:543.466667pt;}
.xbc_c00188{left:544.400000pt;}
.xad_c00188{left:545.600000pt;}
.xe6_c00188{left:547.066667pt;}
.x9d_c00188{left:549.733333pt;}
.xb4_c00188{left:551.733333pt;}
.xa5_c00188{left:553.200000pt;}
.x12b_c00188{left:555.200000pt;}
.xe2_c00188{left:557.200000pt;}
.xc6_c00188{left:558.266667pt;}
.xae_c00188{left:559.733333pt;}
.x142_c00188{left:560.666667pt;}
.xef_c00188{left:561.600000pt;}
.xbd_c00188{left:562.666667pt;}
.x107_c00188{left:564.266667pt;}
.xe3_c00188{left:565.866667pt;}
.xc7_c00188{left:568.533333pt;}
.xeb_c00188{left:570.133333pt;}
.x124_c00188{left:571.200000pt;}
.x112_c00188{left:573.733333pt;}
.x137_c00188{left:575.066667pt;}
.xe7_c00188{left:576.533333pt;}
.xbe_c00188{left:579.333333pt;}
.xf3_c00188{left:581.066667pt;}
.x113_c00188{left:582.000000pt;}
.xc2_c00188{left:582.933333pt;}
.xcd_c00188{left:583.866667pt;}
.x116_c00188{left:584.800000pt;}
.x11c_c00188{left:586.400000pt;}
.xda_c00188{left:587.466667pt;}
.x134_c00188{left:589.066667pt;}
.xde_c00188{left:590.533333pt;}
.xce_c00188{left:592.133333pt;}
.x10f_c00188{left:593.333333pt;}
.x9e_c00188{left:595.200000pt;}
.xc8_c00188{left:597.333333pt;}
.x13a_c00188{left:598.400000pt;}
.xb5_c00188{left:599.733333pt;}
.xff_c00188{left:601.066667pt;}
.xfa_c00188{left:602.666667pt;}
.x108_c00188{left:607.466667pt;}
.xdb_c00188{left:610.133333pt;}
.xbf_c00188{left:612.266667pt;}
.x12f_c00188{left:613.466667pt;}
.xaf_c00188{left:614.400000pt;}
.x101_c00188{left:616.000000pt;}
.xc9_c00188{left:617.200000pt;}
.x117_c00188{left:619.733333pt;}
.x114_c00188{left:621.733333pt;}
.xa6_c00188{left:623.600000pt;}
.xc3_c00188{left:627.066667pt;}
.x9f_c00188{left:629.733333pt;}
.xec_c00188{left:631.466667pt;}
.x138_c00188{left:632.400000pt;}
.x13e_c00188{left:633.333333pt;}
.xd5_c00188{left:634.266667pt;}
.xb0_c00188{left:636.533333pt;}
.x102_c00188{left:637.733333pt;}
.xcf_c00188{left:639.866667pt;}
.xf0_c00188{left:641.333333pt;}
.xfb_c00188{left:643.333333pt;}
.x118_c00188{left:645.066667pt;}
.x11d_c00188{left:647.200000pt;}
.xb6_c00188{left:649.333333pt;}
.xd0_c00188{left:650.400000pt;}
.xc0_c00188{left:652.000000pt;}
.xa7_c00188{left:653.333333pt;}
.xe8_c00188{left:654.400000pt;}
.xdf_c00188{left:656.400000pt;}
.xca_c00188{left:658.133333pt;}
.xed_c00188{left:659.333333pt;}
.x127_c00188{left:661.066667pt;}
.x12a_c00188{left:662.133333pt;}
.x109_c00188{left:663.200000pt;}
.x12e_c00188{left:664.933333pt;}
.xd6_c00188{left:666.000000pt;}
.x13f_c00188{left:667.600000pt;}
.x2_c00188{left:669.066667pt;}
.xa8_c00188{left:670.666667pt;}
.x13b_c00188{left:671.733333pt;}
.x110_c00188{left:672.666667pt;}
.xb1_c00188{left:674.666667pt;}
.xe0_c00188{left:675.866667pt;}
.xa0_c00188{left:676.800000pt;}
.x103_c00188{left:679.066667pt;}
.xd1_c00188{left:682.666667pt;}
.xf5_c00188{left:684.133333pt;}
.x148_c00188{left:840.933333pt;}
.x14a_c00188{left:844.133333pt;}
.x149_c00188{left:848.266667pt;}
.x147_c00188{left:852.133333pt;}
.x146_c00188{left:853.066667pt;}
}





/* 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_c00189 {
    display:none;
  }
  .loading-indicator_c00189.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00189 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_c00189 { 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_c00189" -> "#page-container .classname_c00189")
 */
.pf_c00189 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00189 { /* 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_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00189 { /* 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_c00189 { /* 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_c00189 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00189 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00189 {overflow:visible;}
  }
}
.c_c00189 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00189 { /* 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_c00189:after { /* webkit #35443 */
  content: '';
}
.t_c00189:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00189 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 */
}
.__c00189 { /* 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_c00189 { /* info for Javascript */
  display:none;
}
.l_c00189 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00189 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00189 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00189: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_c00189 {
    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_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00189.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_c00189 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00189;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.000000;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;}
.med_c00189{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00189{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00189{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mec_c00189{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me5_c00189{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00189{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00189{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00189{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00189{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00189{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m94_c00189{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m14_c00189{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me0_c00189{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00189{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00189{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me8_c00189{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.mef_c00189{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.mee_c00189{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mca_c00189{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00189{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m20_c00189{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00189{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00189{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00189{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00189{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m16_c00189{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00189{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m38_c00189{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00189{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00189{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mac_c00189{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00189{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m91_c00189{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m56_c00189{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mda_c00189{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m96_c00189{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md3_c00189{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00189{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00189{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m40_c00189{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me7_c00189{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m98_c00189{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00189{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m37_c00189{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00189{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m4_c00189{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m68_c00189{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00189{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00189{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m93_c00189{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m74_c00189{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mff_c00189{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m58_c00189{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md_c00189{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m65_c00189{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00189{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m6_c00189{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00189{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m10_c00189{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m86_c00189{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m46_c00189{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00189{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00189{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00189{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m48_c00189{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00189{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00189{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m41_c00189{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00189{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.md6_c00189{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m102_c00189{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m25_c00189{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m104_c00189{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mce_c00189{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00189{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00189{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00189{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00189{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.maf_c00189{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m64_c00189{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m29_c00189{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m69_c00189{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00189{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00189{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00189{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00189{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00189{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m67_c00189{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me3_c00189{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m62_c00189{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m51_c00189{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m60_c00189{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc_c00189{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m100_c00189{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m77_c00189{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00189{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00189{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m90_c00189{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00189{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m18_c00189{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m113_c00189{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00189{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00189{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m44_c00189{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00189{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00189{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00189{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00189{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00189{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00189{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m81_c00189{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m53_c00189{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mba_c00189{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mab_c00189{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m101_c00189{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m61_c00189{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00189{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00189{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m15_c00189{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.meb_c00189{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m0_c00189{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mad_c00189{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m95_c00189{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m103_c00189{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md9_c00189{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m55_c00189{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m63_c00189{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m80_c00189{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00189{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m79_c00189{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m17_c00189{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00189{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.ma_c00189{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m89_c00189{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me6_c00189{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m39_c00189{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00189{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m26_c00189{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m43_c00189{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00189{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00189{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.me_c00189{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m24_c00189{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m83_c00189{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00189{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00189{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00189{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00189{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00189{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb_c00189{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m72_c00189{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m71_c00189{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m66_c00189{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00189{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m84_c00189{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md1_c00189{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m73_c00189{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00189{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m47_c00189{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md0_c00189{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00189{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m54_c00189{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00189{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00189{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m36_c00189{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00189{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m49_c00189{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00189{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m109_c00189{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m8_c00189{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m85_c00189{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00189{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00189{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.me9_c00189{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00189{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m88_c00189{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m45_c00189{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md5_c00189{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m50_c00189{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m87_c00189{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m76_c00189{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9_c00189{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m57_c00189{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5_c00189{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m82_c00189{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m75_c00189{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00189{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.maa_c00189{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m28_c00189{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m78_c00189{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m112_c00189{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m92_c00189{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me2_c00189{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m35_c00189{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00189{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00189{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00189{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m52_c00189{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7_c00189{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.me4_c00189{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00189{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00189{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m97_c00189{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m33_c00189{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3_c00189{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00189{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m42_c00189{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00189{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00189{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00189{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00189{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m19_c00189{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00189{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00189{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m114_c00189{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00189{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00189{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m111_c00189{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00189{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mf_c00189{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00189{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00189{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m59_c00189{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00189{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00189{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me1_c00189{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);}
.m21_c00189{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00189{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00189{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md7_c00189{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00189{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m106_c00189{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m105_c00189{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00189{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m108_c00189{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00189{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.md4_c00189{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00189{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00189{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m27_c00189{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00189{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00189{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mae_c00189{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00189{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m70_c00189{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m22_c00189{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00189{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00189{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00189{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m107_c00189{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00189{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00189{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00189{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m110_c00189{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m23_c00189{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00189{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00189{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m99_c00189{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00189{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00189{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m11_c00189{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m34_c00189{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mde_c00189{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00189{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c00189{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00189{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m12_c00189{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m13_c00189{transform:matrix(0.395750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395750,0.000000,0.000000,0.250000,0,0);}
.m2_c00189{transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453500,0.000000,0.000000,0.250000,0,0);}
.m32_c00189{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00189{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00189{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.md2_c00189{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mea_c00189{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.md8_c00189{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m31_c00189{transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls0_c00189{letter-spacing:0.000000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{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__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:-5.547170px;}
.ws8_c00189{word-spacing:-0.343991px;}
.ws7_c00189{word-spacing:-0.119421px;}
.ws9_c00189{word-spacing:0.000000px;}
.ws4_c00189{word-spacing:16.257611px;}
.ws2_c00189{word-spacing:16.785714px;}
.ws5_c00189{word-spacing:19.994638px;}
.ws3_c00189{word-spacing:23.211796px;}
.ws6_c00189{word-spacing:25.714286px;}
.ws1_c00189{word-spacing:179.444444px;}
._0_c00189{width:55.714286px;}
._1_c00189{width:58.254692px;}
.fc0_c00189{color:transparent;}
.fs1_c00189{font-size:36.000000px;}
.fs6_c00189{font-size:48.000000px;}
.fs7_c00189{font-size:54.000000px;}
.fs4_c00189{font-size:60.000000px;}
.fs3_c00189{font-size:66.000000px;}
.fs5_c00189{font-size:72.000000px;}
.fs2_c00189{font-size:84.000000px;}
.fs0_c00189{font-size:90.000000px;}
.y0_c00189{bottom:0.000000px;}
.y64_c00189{bottom:195.450000px;}
.y31_c00189{bottom:196.500000px;}
.y30_c00189{bottom:211.800000px;}
.y63_c00189{bottom:213.450000px;}
.y2f_c00189{bottom:226.500000px;}
.y2e_c00189{bottom:239.850000px;}
.y62_c00189{bottom:240.450000px;}
.y2d_c00189{bottom:255.000000px;}
.y61_c00189{bottom:258.450000px;}
.y2c_c00189{bottom:268.650000px;}
.y2b_c00189{bottom:283.050000px;}
.y60_c00189{bottom:288.750000px;}
.y2a_c00189{bottom:296.700000px;}
.y5f_c00189{bottom:306.750000px;}
.y29_c00189{bottom:312.150000px;}
.y5e_c00189{bottom:324.750000px;}
.y28_c00189{bottom:325.050000px;}
.y27_c00189{bottom:339.450000px;}
.y5d_c00189{bottom:342.750000px;}
.y26_c00189{bottom:353.550000px;}
.y5c_c00189{bottom:360.750000px;}
.y5b_c00189{bottom:378.450000px;}
.y5a_c00189{bottom:396.450000px;}
.y25_c00189{bottom:404.700000px;}
.y59_c00189{bottom:414.150000px;}
.y24_c00189{bottom:422.700000px;}
.y58_c00189{bottom:431.850000px;}
.y23_c00189{bottom:448.950000px;}
.y57_c00189{bottom:450.150000px;}
.y56_c00189{bottom:467.400000px;}
.y22_c00189{bottom:471.300000px;}
.y55_c00189{bottom:485.400000px;}
.y21_c00189{bottom:489.300000px;}
.y54_c00189{bottom:503.400000px;}
.y20_c00189{bottom:510.750000px;}
.y53_c00189{bottom:521.400000px;}
.y1f_c00189{bottom:528.450000px;}
.y52_c00189{bottom:539.100000px;}
.y1e_c00189{bottom:546.450000px;}
.y51_c00189{bottom:556.800000px;}
.y1d_c00189{bottom:564.150000px;}
.y50_c00189{bottom:574.800000px;}
.y1c_c00189{bottom:586.050000px;}
.y4f_c00189{bottom:592.500000px;}
.y1b_c00189{bottom:608.100000px;}
.y4e_c00189{bottom:621.750000px;}
.y1a_c00189{bottom:630.300000px;}
.y4d_c00189{bottom:636.150000px;}
.y4c_c00189{bottom:650.550000px;}
.y19_c00189{bottom:652.350000px;}
.y4b_c00189{bottom:665.250000px;}
.y18_c00189{bottom:670.650000px;}
.y4a_c00189{bottom:679.350000px;}
.y17_c00189{bottom:692.400000px;}
.y49_c00189{bottom:693.750000px;}
.y48_c00189{bottom:708.150000px;}
.y16_c00189{bottom:710.400000px;}
.y47_c00189{bottom:722.250000px;}
.y15_c00189{bottom:728.400000px;}
.y46_c00189{bottom:736.650000px;}
.y14_c00189{bottom:746.100000px;}
.y45_c00189{bottom:751.350000px;}
.y13_c00189{bottom:764.100000px;}
.y44_c00189{bottom:766.800000px;}
.y12_c00189{bottom:781.800000px;}
.y43_c00189{bottom:789.900000px;}
.y11_c00189{bottom:799.500000px;}
.y42_c00189{bottom:807.900000px;}
.y10_c00189{bottom:821.550000px;}
.y41_c00189{bottom:825.900000px;}
.yf_c00189{bottom:843.900000px;}
.y40_c00189{bottom:852.000000px;}
.ye_c00189{bottom:861.900000px;}
.y3f_c00189{bottom:870.000000px;}
.y3e_c00189{bottom:887.700000px;}
.yd_c00189{bottom:890.250000px;}
.y3d_c00189{bottom:905.700000px;}
.yc_c00189{bottom:918.000000px;}
.y3c_c00189{bottom:923.400000px;}
.y3b_c00189{bottom:941.100000px;}
.yb_c00189{bottom:944.550000px;}
.y3a_c00189{bottom:962.700000px;}
.ya_c00189{bottom:966.900000px;}
.y39_c00189{bottom:980.700000px;}
.y9_c00189{bottom:988.800000px;}
.y38_c00189{bottom:998.700000px;}
.y8_c00189{bottom:1010.400000px;}
.y37_c00189{bottom:1016.400000px;}
.y7_c00189{bottom:1033.500000px;}
.y36_c00189{bottom:1034.700000px;}
.y35_c00189{bottom:1051.950000px;}
.y6_c00189{bottom:1067.700000px;}
.y34_c00189{bottom:1073.850000px;}
.y5_c00189{bottom:1102.200000px;}
.y33_c00189{bottom:1104.150000px;}
.y4_c00189{bottom:1121.700000px;}
.y32_c00189{bottom:1125.000000px;}
.y1_c00189{bottom:1141.200000px;}
.y3_c00189{bottom:1148.700000px;}
.y2_c00189{bottom:1153.050000px;}
.h3_c00189{height:36.000000px;}
.h8_c00189{height:48.000000px;}
.h9_c00189{height:54.000000px;}
.h6_c00189{height:60.000000px;}
.h5_c00189{height:66.000000px;}
.h7_c00189{height:72.000000px;}
.h4_c00189{height:84.000000px;}
.h2_c00189{height:90.000000px;}
.h0_c00189{height:1268.640015px;}
.h1_c00189{height:1269.000000px;}
.w1_c00189{width:963.000000px;}
.w0_c00189{width:963.359985px;}
.x0_c00189{left:0.000000px;}
.x97_c00189{left:189.300000px;}
.x72_c00189{left:190.500000px;}
.x13_c00189{left:194.400000px;}
.x1_c00189{left:196.500000px;}
.x78_c00189{left:205.950000px;}
.x5a_c00189{left:209.100000px;}
.x40_c00189{left:210.300000px;}
.x2e_c00189{left:211.500000px;}
.x4_c00189{left:213.450000px;}
.x2_c00189{left:218.850000px;}
.x80_c00189{left:223.050000px;}
.x5c_c00189{left:226.800000px;}
.x31_c00189{left:228.600000px;}
.x1a_c00189{left:229.950000px;}
.x1d_c00189{left:231.450000px;}
.x84_c00189{left:235.200000px;}
.xd_c00189{left:238.800000px;}
.x65_c00189{left:240.150000px;}
.x48_c00189{left:241.200000px;}
.x95_c00189{left:243.600000px;}
.x29_c00189{left:244.800000px;}
.x6e_c00189{left:246.750000px;}
.x81_c00189{left:248.250000px;}
.x73_c00189{left:253.500000px;}
.x85_c00189{left:257.850000px;}
.x3a_c00189{left:260.250000px;}
.x41_c00189{left:262.500000px;}
.x98_c00189{left:263.850000px;}
.xe_c00189{left:266.550000px;}
.x4b_c00189{left:267.900000px;}
.x55_c00189{left:269.700000px;}
.x35_c00189{left:271.350000px;}
.x2a_c00189{left:273.300000px;}
.x6f_c00189{left:274.800000px;}
.x93_c00189{left:276.600000px;}
.x4c_c00189{left:279.450000px;}
.x21_c00189{left:280.800000px;}
.x1e_c00189{left:282.600000px;}
.x1b_c00189{left:284.700000px;}
.xf_c00189{left:286.050000px;}
.x5_c00189{left:288.000000px;}
.x14_c00189{left:289.800000px;}
.x36_c00189{left:291.450000px;}
.x45_c00189{left:292.950000px;}
.x23_c00189{left:295.500000px;}
.x1c_c00189{left:297.300000px;}
.x66_c00189{left:298.500000px;}
.x11_c00189{left:299.550000px;}
.x96_c00189{left:301.650000px;}
.x6_c00189{left:303.900000px;}
.x24_c00189{left:307.800000px;}
.x2f_c00189{left:310.200000px;}
.x71_c00189{left:312.150000px;}
.x79_c00189{left:313.500000px;}
.x8d_c00189{left:315.300000px;}
.x5f_c00189{left:317.100000px;}
.x82_c00189{left:320.250000px;}
.x51_c00189{left:322.350000px;}
.x7_c00189{left:323.700000px;}
.x1f_c00189{left:325.500000px;}
.x5d_c00189{left:326.550000px;}
.x22_c00189{left:327.600000px;}
.x15_c00189{left:330.600000px;}
.x25_c00189{left:332.250000px;}
.x56_c00189{left:334.050000px;}
.x7a_c00189{left:336.600000px;}
.x37_c00189{left:339.000000px;}
.x10_c00189{left:340.050000px;}
.x2b_c00189{left:341.400000px;}
.x16_c00189{left:342.900000px;}
.x8_c00189{left:345.300000px;}
.x99_c00189{left:346.350000px;}
.x86_c00189{left:348.600000px;}
.x94_c00189{left:350.100000px;}
.x52_c00189{left:353.250000px;}
.x6a_c00189{left:355.050000px;}
.x12_c00189{left:357.150000px;}
.x57_c00189{left:358.500000px;}
.x3b_c00189{left:359.700000px;}
.x49_c00189{left:361.800000px;}
.x77_c00189{left:363.300000px;}
.x5b_c00189{left:364.650000px;}
.x2c_c00189{left:366.300000px;}
.x38_c00189{left:367.500000px;}
.x7e_c00189{left:369.600000px;}
.x60_c00189{left:372.150000px;}
.x6b_c00189{left:373.800000px;}
.x4d_c00189{left:374.850000px;}
.x42_c00189{left:376.200000px;}
.x46_c00189{left:378.300000px;}
.x9_c00189{left:381.300000px;}
.x53_c00189{left:383.550000px;}
.x39_c00189{left:388.800000px;}
.x6c_c00189{left:390.000000px;}
.x26_c00189{left:391.950000px;}
.x8a_c00189{left:393.450000px;}
.x87_c00189{left:395.400000px;}
.x3d_c00189{left:397.500000px;}
.xa_c00189{left:399.000000px;}
.x70_c00189{left:400.200000px;}
.x27_c00189{left:401.700000px;}
.x32_c00189{left:403.050000px;}
.x2d_c00189{left:404.100000px;}
.x17_c00189{left:405.150000px;}
.x74_c00189{left:409.050000px;}
.x8e_c00189{left:412.200000px;}
.x5e_c00189{left:414.150000px;}
.x61_c00189{left:416.100000px;}
.x58_c00189{left:418.200000px;}
.x6d_c00189{left:420.300000px;}
.x33_c00189{left:423.600000px;}
.x8b_c00189{left:425.850000px;}
.x88_c00189{left:427.050000px;}
.x8f_c00189{left:432.300000px;}
.x30_c00189{left:433.350000px;}
.x54_c00189{left:435.450000px;}
.x7b_c00189{left:437.100000px;}
.x7c_c00189{left:438.300000px;}
.x4e_c00189{left:439.350000px;}
.x3_c00189{left:440.550000px;}
.x47_c00189{left:443.850000px;}
.x67_c00189{left:445.800000px;}
.x83_c00189{left:446.850000px;}
.x62_c00189{left:448.800000px;}
.x18_c00189{left:450.150000px;}
.x75_c00189{left:454.050000px;}
.xb_c00189{left:455.100000px;}
.x7f_c00189{left:457.050000px;}
.x28_c00189{left:459.000000px;}
.x90_c00189{left:462.900000px;}
.x4f_c00189{left:465.300000px;}
.x8c_c00189{left:469.350000px;}
.x20_c00189{left:474.150000px;}
.x91_c00189{left:476.400000px;}
.x7d_c00189{left:478.650000px;}
.xc_c00189{left:480.300000px;}
.x3e_c00189{left:482.100000px;}
.x76_c00189{left:484.650000px;}
.x19_c00189{left:487.650000px;}
.x4a_c00189{left:489.300000px;}
.x68_c00189{left:493.050000px;}
.x3c_c00189{left:494.700000px;}
.x3f_c00189{left:495.750000px;}
.x59_c00189{left:498.150000px;}
.x63_c00189{left:499.200000px;}
.x43_c00189{left:502.500000px;}
.x92_c00189{left:506.250000px;}
.x64_c00189{left:507.900000px;}
.x44_c00189{left:511.200000px;}
.x34_c00189{left:512.550000px;}
.x69_c00189{left:517.950000px;}
.x9a_c00189{left:521.700000px;}
.x89_c00189{left:522.900000px;}
.x50_c00189{left:524.400000px;}
.x13b_c00189{left:545.400000px;}
.x9b_c00189{left:548.700000px;}
.xa3_c00189{left:549.750000px;}
.xf3_c00189{left:562.800000px;}
.x136_c00189{left:563.850000px;}
.xe1_c00189{left:565.050000px;}
.xa2_c00189{left:566.850000px;}
.xf8_c00189{left:576.600000px;}
.x12c_c00189{left:580.200000px;}
.x122_c00189{left:581.250000px;}
.xf4_c00189{left:582.900000px;}
.xaa_c00189{left:585.000000px;}
.xce_c00189{left:586.500000px;}
.xa4_c00189{left:591.450000px;}
.xb4_c00189{left:593.250000px;}
.xfb_c00189{left:595.500000px;}
.x101_c00189{left:598.200000px;}
.xe5_c00189{left:599.400000px;}
.xbc_c00189{left:600.900000px;}
.xe2_c00189{left:602.100000px;}
.xee_c00189{left:606.600000px;}
.xb5_c00189{left:608.400000px;}
.xda_c00189{left:609.750000px;}
.xcb_c00189{left:610.800000px;}
.x13e_c00189{left:612.300000px;}
.x11e_c00189{left:613.950000px;}
.xec_c00189{left:616.050000px;}
.x9c_c00189{left:617.850000px;}
.xfc_c00189{left:620.400000px;}
.x12d_c00189{left:621.900000px;}
.xfa_c00189{left:622.950000px;}
.x132_c00189{left:625.350000px;}
.xa5_c00189{left:626.400000px;}
.x11a_c00189{left:627.600000px;}
.xb6_c00189{left:628.950000px;}
.xbd_c00189{left:630.750000px;}
.xe3_c00189{left:632.700000px;}
.x118_c00189{left:633.900000px;}
.xd5_c00189{left:636.300000px;}
.x12e_c00189{left:638.850000px;}
.x10b_c00189{left:640.650000px;}
.x131_c00189{left:642.300000px;}
.xcc_c00189{left:643.500000px;}
.xc3_c00189{left:645.450000px;}
.xab_c00189{left:646.950000px;}
.x10d_c00189{left:649.350000px;}
.x105_c00189{left:650.700000px;}
.xc8_c00189{left:652.200000px;}
.xcd_c00189{left:654.300000px;}
.xe8_c00189{left:655.650000px;}
.x11b_c00189{left:656.700000px;}
.x116_c00189{left:658.950000px;}
.x133_c00189{left:661.050000px;}
.xfd_c00189{left:662.100000px;}
.xbe_c00189{left:664.950000px;}
.x124_c00189{left:666.150000px;}
.xe4_c00189{left:667.950000px;}
.xac_c00189{left:669.600000px;}
.x102_c00189{left:671.400000px;}
.x10e_c00189{left:673.500000px;}
.x11f_c00189{left:675.150000px;}
.xd6_c00189{left:676.200000px;}
.x13c_c00189{left:677.550000px;}
.xc4_c00189{left:678.900000px;}
.x103_c00189{left:680.400000px;}
.xbf_c00189{left:681.900000px;}
.x12f_c00189{left:684.150000px;}
.x10c_c00189{left:686.400000px;}
.xdf_c00189{left:687.600000px;}
.xe6_c00189{left:688.800000px;}
.x104_c00189{left:691.950000px;}
.x112_c00189{left:693.150000px;}
.xad_c00189{left:694.800000px;}
.x134_c00189{left:696.300000px;}
.xe9_c00189{left:697.350000px;}
.x137_c00189{left:698.850000px;}
.xdb_c00189{left:700.800000px;}
.x125_c00189{left:702.450000px;}
.x140_c00189{left:704.550000px;}
.xb7_c00189{left:706.650000px;}
.xa6_c00189{left:708.450000px;}
.xc5_c00189{left:712.350000px;}
.x106_c00189{left:713.400000px;}
.xef_c00189{left:715.800000px;}
.x9d_c00189{left:718.350000px;}
.xd7_c00189{left:720.150000px;}
.xae_c00189{left:721.800000px;}
.xcf_c00189{left:723.300000px;}
.x120_c00189{left:724.800000px;}
.x107_c00189{left:727.500000px;}
.xf5_c00189{left:728.550000px;}
.x129_c00189{left:729.600000px;}
.x138_c00189{left:731.700000px;}
.xa7_c00189{left:732.900000px;}
.xea_c00189{left:734.400000px;}
.xc6_c00189{left:736.500000px;}
.xaf_c00189{left:738.300000px;}
.x9e_c00189{left:741.000000px;}
.xc9_c00189{left:742.950000px;}
.x13f_c00189{left:744.900000px;}
.xb8_c00189{left:745.950000px;}
.xc0_c00189{left:747.750000px;}
.x108_c00189{left:749.100000px;}
.xff_c00189{left:750.450000px;}
.xe0_c00189{left:751.950000px;}
.x10f_c00189{left:756.600000px;}
.xf0_c00189{left:757.950000px;}
.xd8_c00189{left:762.600000px;}
.x109_c00189{left:763.800000px;}
.xdc_c00189{left:766.650000px;}
.xd0_c00189{left:769.350000px;}
.x10a_c00189{left:771.000000px;}
.xe7_c00189{left:772.650000px;}
.x115_c00189{left:774.900000px;}
.x12a_c00189{left:776.700000px;}
.x110_c00189{left:778.950000px;}
.x9f_c00189{left:780.600000px;}
.xb9_c00189{left:785.550000px;}
.xfe_c00189{left:787.350000px;}
.xa8_c00189{left:788.700000px;}
.xd1_c00189{left:789.900000px;}
.x117_c00189{left:791.700000px;}
.xc1_c00189{left:792.750000px;}
.xf6_c00189{left:793.800000px;}
.x113_c00189{left:795.150000px;}
.x12b_c00189{left:796.500000px;}
.xdd_c00189{left:798.300000px;}
.x119_c00189{left:801.600000px;}
.xa0_c00189{left:804.750000px;}
.x126_c00189{left:808.200000px;}
.x11c_c00189{left:810.450000px;}
.x141_c00189{left:811.650000px;}
.xf9_c00189{left:812.700000px;}
.xf7_c00189{left:813.900000px;}
.x100_c00189{left:814.950000px;}
.x127_c00189{left:817.500000px;}
.xba_c00189{left:820.050000px;}
.xa9_c00189{left:822.150000px;}
.xb0_c00189{left:824.400000px;}
.x130_c00189{left:825.600000px;}
.xd2_c00189{left:826.950000px;}
.xde_c00189{left:831.000000px;}
.x139_c00189{left:832.800000px;}
.xca_c00189{left:834.750000px;}
.xf1_c00189{left:836.400000px;}
.xc2_c00189{left:837.750000px;}
.xd9_c00189{left:840.750000px;}
.xb1_c00189{left:842.400000px;}
.xd3_c00189{left:844.650000px;}
.xc7_c00189{left:846.000000px;}
.x128_c00189{left:849.150000px;}
.x123_c00189{left:850.950000px;}
.xed_c00189{left:852.000000px;}
.x114_c00189{left:855.300000px;}
.x13d_c00189{left:856.650000px;}
.xeb_c00189{left:858.300000px;}
.xa1_c00189{left:860.250000px;}
.x121_c00189{left:861.300000px;}
.xd4_c00189{left:862.350000px;}
.x13a_c00189{left:863.400000px;}
.xb2_c00189{left:866.100000px;}
.xbb_c00189{left:867.600000px;}
.x11d_c00189{left:868.800000px;}
.xf2_c00189{left:870.600000px;}
.x111_c00189{left:871.950000px;}
.xb3_c00189{left:876.150000px;}
.x135_c00189{left:879.600000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:-4.930818pt;}
.ws8_c00189{word-spacing:-0.305770pt;}
.ws7_c00189{word-spacing:-0.106152pt;}
.ws9_c00189{word-spacing:0.000000pt;}
.ws4_c00189{word-spacing:14.451210pt;}
.ws2_c00189{word-spacing:14.920635pt;}
.ws5_c00189{word-spacing:17.773012pt;}
.ws3_c00189{word-spacing:20.632708pt;}
.ws6_c00189{word-spacing:22.857143pt;}
.ws1_c00189{word-spacing:159.506173pt;}
._0_c00189{width:49.523810pt;}
._1_c00189{width:51.781948pt;}
.fs1_c00189{font-size:32.000000pt;}
.fs6_c00189{font-size:42.666667pt;}
.fs7_c00189{font-size:48.000000pt;}
.fs4_c00189{font-size:53.333333pt;}
.fs3_c00189{font-size:58.666667pt;}
.fs5_c00189{font-size:64.000000pt;}
.fs2_c00189{font-size:74.666667pt;}
.fs0_c00189{font-size:80.000000pt;}
.y0_c00189{bottom:0.000000pt;}
.y64_c00189{bottom:173.733333pt;}
.y31_c00189{bottom:174.666667pt;}
.y30_c00189{bottom:188.266667pt;}
.y63_c00189{bottom:189.733333pt;}
.y2f_c00189{bottom:201.333333pt;}
.y2e_c00189{bottom:213.200000pt;}
.y62_c00189{bottom:213.733333pt;}
.y2d_c00189{bottom:226.666667pt;}
.y61_c00189{bottom:229.733333pt;}
.y2c_c00189{bottom:238.800000pt;}
.y2b_c00189{bottom:251.600000pt;}
.y60_c00189{bottom:256.666667pt;}
.y2a_c00189{bottom:263.733333pt;}
.y5f_c00189{bottom:272.666667pt;}
.y29_c00189{bottom:277.466667pt;}
.y5e_c00189{bottom:288.666667pt;}
.y28_c00189{bottom:288.933333pt;}
.y27_c00189{bottom:301.733333pt;}
.y5d_c00189{bottom:304.666667pt;}
.y26_c00189{bottom:314.266667pt;}
.y5c_c00189{bottom:320.666667pt;}
.y5b_c00189{bottom:336.400000pt;}
.y5a_c00189{bottom:352.400000pt;}
.y25_c00189{bottom:359.733333pt;}
.y59_c00189{bottom:368.133333pt;}
.y24_c00189{bottom:375.733333pt;}
.y58_c00189{bottom:383.866667pt;}
.y23_c00189{bottom:399.066667pt;}
.y57_c00189{bottom:400.133333pt;}
.y56_c00189{bottom:415.466667pt;}
.y22_c00189{bottom:418.933333pt;}
.y55_c00189{bottom:431.466667pt;}
.y21_c00189{bottom:434.933333pt;}
.y54_c00189{bottom:447.466667pt;}
.y20_c00189{bottom:454.000000pt;}
.y53_c00189{bottom:463.466667pt;}
.y1f_c00189{bottom:469.733333pt;}
.y52_c00189{bottom:479.200000pt;}
.y1e_c00189{bottom:485.733333pt;}
.y51_c00189{bottom:494.933333pt;}
.y1d_c00189{bottom:501.466667pt;}
.y50_c00189{bottom:510.933333pt;}
.y1c_c00189{bottom:520.933333pt;}
.y4f_c00189{bottom:526.666667pt;}
.y1b_c00189{bottom:540.533333pt;}
.y4e_c00189{bottom:552.666667pt;}
.y1a_c00189{bottom:560.266667pt;}
.y4d_c00189{bottom:565.466667pt;}
.y4c_c00189{bottom:578.266667pt;}
.y19_c00189{bottom:579.866667pt;}
.y4b_c00189{bottom:591.333333pt;}
.y18_c00189{bottom:596.133333pt;}
.y4a_c00189{bottom:603.866667pt;}
.y17_c00189{bottom:615.466667pt;}
.y49_c00189{bottom:616.666667pt;}
.y48_c00189{bottom:629.466667pt;}
.y16_c00189{bottom:631.466667pt;}
.y47_c00189{bottom:642.000000pt;}
.y15_c00189{bottom:647.466667pt;}
.y46_c00189{bottom:654.800000pt;}
.y14_c00189{bottom:663.200000pt;}
.y45_c00189{bottom:667.866667pt;}
.y13_c00189{bottom:679.200000pt;}
.y44_c00189{bottom:681.600000pt;}
.y12_c00189{bottom:694.933333pt;}
.y43_c00189{bottom:702.133333pt;}
.y11_c00189{bottom:710.666667pt;}
.y42_c00189{bottom:718.133333pt;}
.y10_c00189{bottom:730.266667pt;}
.y41_c00189{bottom:734.133333pt;}
.yf_c00189{bottom:750.133333pt;}
.y40_c00189{bottom:757.333333pt;}
.ye_c00189{bottom:766.133333pt;}
.y3f_c00189{bottom:773.333333pt;}
.y3e_c00189{bottom:789.066667pt;}
.yd_c00189{bottom:791.333333pt;}
.y3d_c00189{bottom:805.066667pt;}
.yc_c00189{bottom:816.000000pt;}
.y3c_c00189{bottom:820.800000pt;}
.y3b_c00189{bottom:836.533333pt;}
.yb_c00189{bottom:839.600000pt;}
.y3a_c00189{bottom:855.733333pt;}
.ya_c00189{bottom:859.466667pt;}
.y39_c00189{bottom:871.733333pt;}
.y9_c00189{bottom:878.933333pt;}
.y38_c00189{bottom:887.733333pt;}
.y8_c00189{bottom:898.133333pt;}
.y37_c00189{bottom:903.466667pt;}
.y7_c00189{bottom:918.666667pt;}
.y36_c00189{bottom:919.733333pt;}
.y35_c00189{bottom:935.066667pt;}
.y6_c00189{bottom:949.066667pt;}
.y34_c00189{bottom:954.533333pt;}
.y5_c00189{bottom:979.733333pt;}
.y33_c00189{bottom:981.466667pt;}
.y4_c00189{bottom:997.066667pt;}
.y32_c00189{bottom:1000.000000pt;}
.y1_c00189{bottom:1014.400000pt;}
.y3_c00189{bottom:1021.066667pt;}
.y2_c00189{bottom:1024.933333pt;}
.h3_c00189{height:32.000000pt;}
.h8_c00189{height:42.666667pt;}
.h9_c00189{height:48.000000pt;}
.h6_c00189{height:53.333333pt;}
.h5_c00189{height:58.666667pt;}
.h7_c00189{height:64.000000pt;}
.h4_c00189{height:74.666667pt;}
.h2_c00189{height:80.000000pt;}
.h0_c00189{height:1127.680013pt;}
.h1_c00189{height:1128.000000pt;}
.w1_c00189{width:856.000000pt;}
.w0_c00189{width:856.319987pt;}
.x0_c00189{left:0.000000pt;}
.x97_c00189{left:168.266667pt;}
.x72_c00189{left:169.333333pt;}
.x13_c00189{left:172.800000pt;}
.x1_c00189{left:174.666667pt;}
.x78_c00189{left:183.066667pt;}
.x5a_c00189{left:185.866667pt;}
.x40_c00189{left:186.933333pt;}
.x2e_c00189{left:188.000000pt;}
.x4_c00189{left:189.733333pt;}
.x2_c00189{left:194.533333pt;}
.x80_c00189{left:198.266667pt;}
.x5c_c00189{left:201.600000pt;}
.x31_c00189{left:203.200000pt;}
.x1a_c00189{left:204.400000pt;}
.x1d_c00189{left:205.733333pt;}
.x84_c00189{left:209.066667pt;}
.xd_c00189{left:212.266667pt;}
.x65_c00189{left:213.466667pt;}
.x48_c00189{left:214.400000pt;}
.x95_c00189{left:216.533333pt;}
.x29_c00189{left:217.600000pt;}
.x6e_c00189{left:219.333333pt;}
.x81_c00189{left:220.666667pt;}
.x73_c00189{left:225.333333pt;}
.x85_c00189{left:229.200000pt;}
.x3a_c00189{left:231.333333pt;}
.x41_c00189{left:233.333333pt;}
.x98_c00189{left:234.533333pt;}
.xe_c00189{left:236.933333pt;}
.x4b_c00189{left:238.133333pt;}
.x55_c00189{left:239.733333pt;}
.x35_c00189{left:241.200000pt;}
.x2a_c00189{left:242.933333pt;}
.x6f_c00189{left:244.266667pt;}
.x93_c00189{left:245.866667pt;}
.x4c_c00189{left:248.400000pt;}
.x21_c00189{left:249.600000pt;}
.x1e_c00189{left:251.200000pt;}
.x1b_c00189{left:253.066667pt;}
.xf_c00189{left:254.266667pt;}
.x5_c00189{left:256.000000pt;}
.x14_c00189{left:257.600000pt;}
.x36_c00189{left:259.066667pt;}
.x45_c00189{left:260.400000pt;}
.x23_c00189{left:262.666667pt;}
.x1c_c00189{left:264.266667pt;}
.x66_c00189{left:265.333333pt;}
.x11_c00189{left:266.266667pt;}
.x96_c00189{left:268.133333pt;}
.x6_c00189{left:270.133333pt;}
.x24_c00189{left:273.600000pt;}
.x2f_c00189{left:275.733333pt;}
.x71_c00189{left:277.466667pt;}
.x79_c00189{left:278.666667pt;}
.x8d_c00189{left:280.266667pt;}
.x5f_c00189{left:281.866667pt;}
.x82_c00189{left:284.666667pt;}
.x51_c00189{left:286.533333pt;}
.x7_c00189{left:287.733333pt;}
.x1f_c00189{left:289.333333pt;}
.x5d_c00189{left:290.266667pt;}
.x22_c00189{left:291.200000pt;}
.x15_c00189{left:293.866667pt;}
.x25_c00189{left:295.333333pt;}
.x56_c00189{left:296.933333pt;}
.x7a_c00189{left:299.200000pt;}
.x37_c00189{left:301.333333pt;}
.x10_c00189{left:302.266667pt;}
.x2b_c00189{left:303.466667pt;}
.x16_c00189{left:304.800000pt;}
.x8_c00189{left:306.933333pt;}
.x99_c00189{left:307.866667pt;}
.x86_c00189{left:309.866667pt;}
.x94_c00189{left:311.200000pt;}
.x52_c00189{left:314.000000pt;}
.x6a_c00189{left:315.600000pt;}
.x12_c00189{left:317.466667pt;}
.x57_c00189{left:318.666667pt;}
.x3b_c00189{left:319.733333pt;}
.x49_c00189{left:321.600000pt;}
.x77_c00189{left:322.933333pt;}
.x5b_c00189{left:324.133333pt;}
.x2c_c00189{left:325.600000pt;}
.x38_c00189{left:326.666667pt;}
.x7e_c00189{left:328.533333pt;}
.x60_c00189{left:330.800000pt;}
.x6b_c00189{left:332.266667pt;}
.x4d_c00189{left:333.200000pt;}
.x42_c00189{left:334.400000pt;}
.x46_c00189{left:336.266667pt;}
.x9_c00189{left:338.933333pt;}
.x53_c00189{left:340.933333pt;}
.x39_c00189{left:345.600000pt;}
.x6c_c00189{left:346.666667pt;}
.x26_c00189{left:348.400000pt;}
.x8a_c00189{left:349.733333pt;}
.x87_c00189{left:351.466667pt;}
.x3d_c00189{left:353.333333pt;}
.xa_c00189{left:354.666667pt;}
.x70_c00189{left:355.733333pt;}
.x27_c00189{left:357.066667pt;}
.x32_c00189{left:358.266667pt;}
.x2d_c00189{left:359.200000pt;}
.x17_c00189{left:360.133333pt;}
.x74_c00189{left:363.600000pt;}
.x8e_c00189{left:366.400000pt;}
.x5e_c00189{left:368.133333pt;}
.x61_c00189{left:369.866667pt;}
.x58_c00189{left:371.733333pt;}
.x6d_c00189{left:373.600000pt;}
.x33_c00189{left:376.533333pt;}
.x8b_c00189{left:378.533333pt;}
.x88_c00189{left:379.600000pt;}
.x8f_c00189{left:384.266667pt;}
.x30_c00189{left:385.200000pt;}
.x54_c00189{left:387.066667pt;}
.x7b_c00189{left:388.533333pt;}
.x7c_c00189{left:389.600000pt;}
.x4e_c00189{left:390.533333pt;}
.x3_c00189{left:391.600000pt;}
.x47_c00189{left:394.533333pt;}
.x67_c00189{left:396.266667pt;}
.x83_c00189{left:397.200000pt;}
.x62_c00189{left:398.933333pt;}
.x18_c00189{left:400.133333pt;}
.x75_c00189{left:403.600000pt;}
.xb_c00189{left:404.533333pt;}
.x7f_c00189{left:406.266667pt;}
.x28_c00189{left:408.000000pt;}
.x90_c00189{left:411.466667pt;}
.x4f_c00189{left:413.600000pt;}
.x8c_c00189{left:417.200000pt;}
.x20_c00189{left:421.466667pt;}
.x91_c00189{left:423.466667pt;}
.x7d_c00189{left:425.466667pt;}
.xc_c00189{left:426.933333pt;}
.x3e_c00189{left:428.533333pt;}
.x76_c00189{left:430.800000pt;}
.x19_c00189{left:433.466667pt;}
.x4a_c00189{left:434.933333pt;}
.x68_c00189{left:438.266667pt;}
.x3c_c00189{left:439.733333pt;}
.x3f_c00189{left:440.666667pt;}
.x59_c00189{left:442.800000pt;}
.x63_c00189{left:443.733333pt;}
.x43_c00189{left:446.666667pt;}
.x92_c00189{left:450.000000pt;}
.x64_c00189{left:451.466667pt;}
.x44_c00189{left:454.400000pt;}
.x34_c00189{left:455.600000pt;}
.x69_c00189{left:460.400000pt;}
.x9a_c00189{left:463.733333pt;}
.x89_c00189{left:464.800000pt;}
.x50_c00189{left:466.133333pt;}
.x13b_c00189{left:484.800000pt;}
.x9b_c00189{left:487.733333pt;}
.xa3_c00189{left:488.666667pt;}
.xf3_c00189{left:500.266667pt;}
.x136_c00189{left:501.200000pt;}
.xe1_c00189{left:502.266667pt;}
.xa2_c00189{left:503.866667pt;}
.xf8_c00189{left:512.533333pt;}
.x12c_c00189{left:515.733333pt;}
.x122_c00189{left:516.666667pt;}
.xf4_c00189{left:518.133333pt;}
.xaa_c00189{left:520.000000pt;}
.xce_c00189{left:521.333333pt;}
.xa4_c00189{left:525.733333pt;}
.xb4_c00189{left:527.333333pt;}
.xfb_c00189{left:529.333333pt;}
.x101_c00189{left:531.733333pt;}
.xe5_c00189{left:532.800000pt;}
.xbc_c00189{left:534.133333pt;}
.xe2_c00189{left:535.200000pt;}
.xee_c00189{left:539.200000pt;}
.xb5_c00189{left:540.800000pt;}
.xda_c00189{left:542.000000pt;}
.xcb_c00189{left:542.933333pt;}
.x13e_c00189{left:544.266667pt;}
.x11e_c00189{left:545.733333pt;}
.xec_c00189{left:547.600000pt;}
.x9c_c00189{left:549.200000pt;}
.xfc_c00189{left:551.466667pt;}
.x12d_c00189{left:552.800000pt;}
.xfa_c00189{left:553.733333pt;}
.x132_c00189{left:555.866667pt;}
.xa5_c00189{left:556.800000pt;}
.x11a_c00189{left:557.866667pt;}
.xb6_c00189{left:559.066667pt;}
.xbd_c00189{left:560.666667pt;}
.xe3_c00189{left:562.400000pt;}
.x118_c00189{left:563.466667pt;}
.xd5_c00189{left:565.600000pt;}
.x12e_c00189{left:567.866667pt;}
.x10b_c00189{left:569.466667pt;}
.x131_c00189{left:570.933333pt;}
.xcc_c00189{left:572.000000pt;}
.xc3_c00189{left:573.733333pt;}
.xab_c00189{left:575.066667pt;}
.x10d_c00189{left:577.200000pt;}
.x105_c00189{left:578.400000pt;}
.xc8_c00189{left:579.733333pt;}
.xcd_c00189{left:581.600000pt;}
.xe8_c00189{left:582.800000pt;}
.x11b_c00189{left:583.733333pt;}
.x116_c00189{left:585.733333pt;}
.x133_c00189{left:587.600000pt;}
.xfd_c00189{left:588.533333pt;}
.xbe_c00189{left:591.066667pt;}
.x124_c00189{left:592.133333pt;}
.xe4_c00189{left:593.733333pt;}
.xac_c00189{left:595.200000pt;}
.x102_c00189{left:596.800000pt;}
.x10e_c00189{left:598.666667pt;}
.x11f_c00189{left:600.133333pt;}
.xd6_c00189{left:601.066667pt;}
.x13c_c00189{left:602.266667pt;}
.xc4_c00189{left:603.466667pt;}
.x103_c00189{left:604.800000pt;}
.xbf_c00189{left:606.133333pt;}
.x12f_c00189{left:608.133333pt;}
.x10c_c00189{left:610.133333pt;}
.xdf_c00189{left:611.200000pt;}
.xe6_c00189{left:612.266667pt;}
.x104_c00189{left:615.066667pt;}
.x112_c00189{left:616.133333pt;}
.xad_c00189{left:617.600000pt;}
.x134_c00189{left:618.933333pt;}
.xe9_c00189{left:619.866667pt;}
.x137_c00189{left:621.200000pt;}
.xdb_c00189{left:622.933333pt;}
.x125_c00189{left:624.400000pt;}
.x140_c00189{left:626.266667pt;}
.xb7_c00189{left:628.133333pt;}
.xa6_c00189{left:629.733333pt;}
.xc5_c00189{left:633.200000pt;}
.x106_c00189{left:634.133333pt;}
.xef_c00189{left:636.266667pt;}
.x9d_c00189{left:638.533333pt;}
.xd7_c00189{left:640.133333pt;}
.xae_c00189{left:641.600000pt;}
.xcf_c00189{left:642.933333pt;}
.x120_c00189{left:644.266667pt;}
.x107_c00189{left:646.666667pt;}
.xf5_c00189{left:647.600000pt;}
.x129_c00189{left:648.533333pt;}
.x138_c00189{left:650.400000pt;}
.xa7_c00189{left:651.466667pt;}
.xea_c00189{left:652.800000pt;}
.xc6_c00189{left:654.666667pt;}
.xaf_c00189{left:656.266667pt;}
.x9e_c00189{left:658.666667pt;}
.xc9_c00189{left:660.400000pt;}
.x13f_c00189{left:662.133333pt;}
.xb8_c00189{left:663.066667pt;}
.xc0_c00189{left:664.666667pt;}
.x108_c00189{left:665.866667pt;}
.xff_c00189{left:667.066667pt;}
.xe0_c00189{left:668.400000pt;}
.x10f_c00189{left:672.533333pt;}
.xf0_c00189{left:673.733333pt;}
.xd8_c00189{left:677.866667pt;}
.x109_c00189{left:678.933333pt;}
.xdc_c00189{left:681.466667pt;}
.xd0_c00189{left:683.866667pt;}
.x10a_c00189{left:685.333333pt;}
.xe7_c00189{left:686.800000pt;}
.x115_c00189{left:688.800000pt;}
.x12a_c00189{left:690.400000pt;}
.x110_c00189{left:692.400000pt;}
.x9f_c00189{left:693.866667pt;}
.xb9_c00189{left:698.266667pt;}
.xfe_c00189{left:699.866667pt;}
.xa8_c00189{left:701.066667pt;}
.xd1_c00189{left:702.133333pt;}
.x117_c00189{left:703.733333pt;}
.xc1_c00189{left:704.666667pt;}
.xf6_c00189{left:705.600000pt;}
.x113_c00189{left:706.800000pt;}
.x12b_c00189{left:708.000000pt;}
.xdd_c00189{left:709.600000pt;}
.x119_c00189{left:712.533333pt;}
.xa0_c00189{left:715.333333pt;}
.x126_c00189{left:718.400000pt;}
.x11c_c00189{left:720.400000pt;}
.x141_c00189{left:721.466667pt;}
.xf9_c00189{left:722.400000pt;}
.xf7_c00189{left:723.466667pt;}
.x100_c00189{left:724.400000pt;}
.x127_c00189{left:726.666667pt;}
.xba_c00189{left:728.933333pt;}
.xa9_c00189{left:730.800000pt;}
.xb0_c00189{left:732.800000pt;}
.x130_c00189{left:733.866667pt;}
.xd2_c00189{left:735.066667pt;}
.xde_c00189{left:738.666667pt;}
.x139_c00189{left:740.266667pt;}
.xca_c00189{left:742.000000pt;}
.xf1_c00189{left:743.466667pt;}
.xc2_c00189{left:744.666667pt;}
.xd9_c00189{left:747.333333pt;}
.xb1_c00189{left:748.800000pt;}
.xd3_c00189{left:750.800000pt;}
.xc7_c00189{left:752.000000pt;}
.x128_c00189{left:754.800000pt;}
.x123_c00189{left:756.400000pt;}
.xed_c00189{left:757.333333pt;}
.x114_c00189{left:760.266667pt;}
.x13d_c00189{left:761.466667pt;}
.xeb_c00189{left:762.933333pt;}
.xa1_c00189{left:764.666667pt;}
.x121_c00189{left:765.600000pt;}
.xd4_c00189{left:766.533333pt;}
.x13a_c00189{left:767.466667pt;}
.xb2_c00189{left:769.866667pt;}
.xbb_c00189{left:771.200000pt;}
.x11d_c00189{left:772.266667pt;}
.xf2_c00189{left:773.866667pt;}
.x111_c00189{left:775.066667pt;}
.xb3_c00189{left:778.800000pt;}
.x135_c00189{left:781.866667pt;}
}





/* 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_c00190 {
    display:none;
  }
  .loading-indicator_c00190.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00190 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_c00190 { 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_c00190" -> "#page-container .classname_c00190")
 */
.pf_c00190 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00190 { /* 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_c00190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00190 { /* 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_c00190 { /* 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_c00190 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00190 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00190 {overflow:visible;}
  }
}
.c_c00190 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00190 { /* 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_c00190:after { /* webkit #35443 */
  content: '';
}
.t_c00190:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00190 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 */
}
.__c00190 { /* 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_c00190 { /* info for Javascript */
  display:none;
}
.l_c00190 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00190 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00190 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00190: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_c00190 {
    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_c00190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00190.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_c00190 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00190;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.000000;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;}
.m8d_c00190{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.m111_c00190{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00190{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m120_c00190{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m76_c00190{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m112_c00190{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m81_c00190{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m109_c00190{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00190{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00190{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5_c00190{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md4_c00190{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00190{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m86_c00190{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m88_c00190{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m103_c00190{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m29_c00190{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00190{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00190{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m45_c00190{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m124_c00190{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00190{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00190{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00190{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m72_c00190{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mba_c00190{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m80_c00190{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m102_c00190{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.me7_c00190{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m39_c00190{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00190{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m84_c00190{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00190{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00190{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00190{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m114_c00190{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m66_c00190{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00190{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00190{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m7_c00190{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md2_c00190{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mab_c00190{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma_c00190{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00190{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md3_c00190{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00190{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00190{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00190{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md7_c00190{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m17_c00190{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00190{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m91_c00190{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md9_c00190{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m104_c00190{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00190{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m33_c00190{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00190{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00190{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00190{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m95_c00190{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m23_c00190{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00190{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mda_c00190{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m60_c00190{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md5_c00190{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m38_c00190{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00190{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m92_c00190{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00190{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m24_c00190{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m87_c00190{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00190{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m9_c00190{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00190{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mee_c00190{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00190{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me_c00190{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00190{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00190{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m85_c00190{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m94_c00190{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00190{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m90_c00190{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m20_c00190{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00190{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m70_c00190{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00190{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m49_c00190{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m37_c00190{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00190{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m68_c00190{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m56_c00190{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me6_c00190{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00190{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m22_c00190{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m79_c00190{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00190{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00190{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00190{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.md_c00190{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00190{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00190{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m15_c00190{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf_c00190{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00190{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m99_c00190{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me3_c00190{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.md1_c00190{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me9_c00190{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00190{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00190{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m116_c00190{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00190{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m58_c00190{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8_c00190{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00190{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m101_c00190{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m65_c00190{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m13_c00190{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00190{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00190{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00190{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00190{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00190{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m40_c00190{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m50_c00190{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m31_c00190{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m97_c00190{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m36_c00190{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m30_c00190{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.med_c00190{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.md8_c00190{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00190{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00190{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00190{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m82_c00190{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m12_c00190{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00190{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00190{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m10_c00190{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00190{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00190{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1_c00190{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00190{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.md6_c00190{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m51_c00190{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00190{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00190{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00190{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m100_c00190{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me8_c00190{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mef_c00190{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m107_c00190{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00190{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m71_c00190{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mea_c00190{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00190{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m98_c00190{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00190{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00190{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb_c00190{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me2_c00190{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00190{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mec_c00190{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00190{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00190{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m59_c00190{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me4_c00190{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m67_c00190{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mca_c00190{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00190{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m46_c00190{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00190{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m3_c00190{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m122_c00190{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00190{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00190{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m42_c00190{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00190{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m83_c00190{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00190{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00190{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m63_c00190{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m19_c00190{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00190{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m41_c00190{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m93_c00190{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m117_c00190{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m73_c00190{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00190{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00190{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m96_c00190{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00190{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m32_c00190{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m16_c00190{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m64_c00190{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m77_c00190{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m105_c00190{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00190{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m123_c00190{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.me5_c00190{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00190{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00190{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00190{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00190{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m78_c00190{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00190{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00190{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mce_c00190{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me1_c00190{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m54_c00190{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00190{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00190{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00190{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00190{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m14_c00190{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00190{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m25_c00190{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m35_c00190{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00190{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m48_c00190{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00190{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mde_c00190{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m34_c00190{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4_c00190{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00190{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mff_c00190{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m11_c00190{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00190{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m74_c00190{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m18_c00190{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00190{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00190{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me0_c00190{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m28_c00190{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00190{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00190{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00190{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m53_c00190{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00190{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27_c00190{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m118_c00190{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.maa_c00190{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.meb_c00190{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00190{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m75_c00190{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m62_c00190{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00190{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00190{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00190{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m52_c00190{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00190{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m119_c00190{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00190{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00190{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00190{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m121_c00190{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00190{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m69_c00190{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m57_c00190{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00190{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m55_c00190{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md0_c00190{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m61_c00190{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00190{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00190{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00190{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m44_c00190{transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);}
.m115_c00190{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m110_c00190{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00190{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m108_c00190{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6_c00190{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00190{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m113_c00190{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m21_c00190{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m26_c00190{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00190{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00190{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.maf_c00190{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m43_c00190{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m47_c00190{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mae_c00190{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00190{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00190{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m106_c00190{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.mad_c00190{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.mac_c00190{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00190{transform:matrix(0.396250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00190{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m0_c00190{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.m89_c00190{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m125_c00190{transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls0_c00190{letter-spacing:0.000000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{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__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00190{word-spacing:-8.847134px;}
.ws5_c00190{word-spacing:-7.156425px;}
.ws0_c00190{word-spacing:-6.914089px;}
.ws3_c00190{word-spacing:-3.229299px;}
.ws1_c00190{word-spacing:-1.722557px;}
.ws8_c00190{word-spacing:0.000000px;}
.ws4_c00190{word-spacing:1.217391px;}
.ws6_c00190{word-spacing:10.702703px;}
.ws2_c00190{word-spacing:42.250000px;}
.fc0_c00190{color:transparent;}
.fs7_c00190{font-size:30.000000px;}
.fs4_c00190{font-size:36.000000px;}
.fs6_c00190{font-size:42.000000px;}
.fs5_c00190{font-size:54.000000px;}
.fs2_c00190{font-size:60.000000px;}
.fs1_c00190{font-size:66.000000px;}
.fs3_c00190{font-size:72.000000px;}
.fs0_c00190{font-size:84.000000px;}
.y0_c00190{bottom:0.000000px;}
.y69_c00190{bottom:2.550000px;}
.y68_c00190{bottom:181.800000px;}
.y36_c00190{bottom:185.100000px;}
.y67_c00190{bottom:202.350000px;}
.y35_c00190{bottom:203.400000px;}
.y66_c00190{bottom:220.650000px;}
.y34_c00190{bottom:221.400000px;}
.y65_c00190{bottom:237.900000px;}
.y33_c00190{bottom:239.100000px;}
.y32_c00190{bottom:257.100000px;}
.y64_c00190{bottom:264.450000px;}
.y31_c00190{bottom:275.100000px;}
.y63_c00190{bottom:282.450000px;}
.y30_c00190{bottom:293.100000px;}
.y62_c00190{bottom:300.150000px;}
.y2f_c00190{bottom:310.800000px;}
.y61_c00190{bottom:317.850000px;}
.y2e_c00190{bottom:328.800000px;}
.y60_c00190{bottom:335.850000px;}
.y2d_c00190{bottom:346.500000px;}
.y5f_c00190{bottom:353.550000px;}
.y2c_c00190{bottom:364.500000px;}
.y5e_c00190{bottom:371.550000px;}
.y2b_c00190{bottom:382.200000px;}
.y5d_c00190{bottom:393.900000px;}
.y2a_c00190{bottom:399.900000px;}
.y29_c00190{bottom:417.900000px;}
.y5c_c00190{bottom:430.200000px;}
.y28_c00190{bottom:438.750000px;}
.y5b_c00190{bottom:448.200000px;}
.y27_c00190{bottom:452.850000px;}
.y5a_c00190{bottom:466.200000px;}
.y26_c00190{bottom:467.550000px;}
.y25_c00190{bottom:481.950000px;}
.y59_c00190{bottom:483.900000px;}
.y24_c00190{bottom:496.050000px;}
.y23_c00190{bottom:510.450000px;}
.y58_c00190{bottom:510.750000px;}
.y22_c00190{bottom:524.550000px;}
.y57_c00190{bottom:528.750000px;}
.y21_c00190{bottom:539.250000px;}
.y56_c00190{bottom:546.750000px;}
.y20_c00190{bottom:554.700000px;}
.y55_c00190{bottom:564.450000px;}
.y1f_c00190{bottom:573.750000px;}
.y54_c00190{bottom:582.450000px;}
.y1e_c00190{bottom:591.450000px;}
.y53_c00190{bottom:600.150000px;}
.y1d_c00190{bottom:609.750000px;}
.y52_c00190{bottom:618.150000px;}
.y1c_c00190{bottom:627.450000px;}
.y51_c00190{bottom:643.800000px;}
.y1b_c00190{bottom:649.800000px;}
.y50_c00190{bottom:661.800000px;}
.y1a_c00190{bottom:667.800000px;}
.y4f_c00190{bottom:679.500000px;}
.y19_c00190{bottom:685.500000px;}
.y4e_c00190{bottom:697.200000px;}
.y18_c00190{bottom:703.500000px;}
.y4d_c00190{bottom:715.200000px;}
.y17_c00190{bottom:721.200000px;}
.y4c_c00190{bottom:733.200000px;}
.y16_c00190{bottom:739.500000px;}
.y4b_c00190{bottom:751.200000px;}
.y15_c00190{bottom:756.750000px;}
.y4a_c00190{bottom:768.450000px;}
.y14_c00190{bottom:774.750000px;}
.y49_c00190{bottom:786.150000px;}
.y13_c00190{bottom:796.650000px;}
.y48_c00190{bottom:804.150000px;}
.y47_c00190{bottom:822.150000px;}
.y12_c00190{bottom:822.750000px;}
.y46_c00190{bottom:839.850000px;}
.y11_c00190{bottom:840.750000px;}
.y10_c00190{bottom:858.450000px;}
.y45_c00190{bottom:862.200000px;}
.yf_c00190{bottom:876.150000px;}
.y44_c00190{bottom:880.200000px;}
.ye_c00190{bottom:894.150000px;}
.y43_c00190{bottom:898.200000px;}
.yd_c00190{bottom:912.150000px;}
.y42_c00190{bottom:915.900000px;}
.yc_c00190{bottom:929.850000px;}
.y41_c00190{bottom:933.300000px;}
.yb_c00190{bottom:947.850000px;}
.y40_c00190{bottom:951.000000px;}
.ya_c00190{bottom:965.550000px;}
.y3f_c00190{bottom:969.000000px;}
.y9_c00190{bottom:983.550000px;}
.y3e_c00190{bottom:986.700000px;}
.y3d_c00190{bottom:1004.700000px;}
.y8_c00190{bottom:1005.300000px;}
.y3c_c00190{bottom:1022.400000px;}
.y7_c00190{bottom:1023.300000px;}
.y3b_c00190{bottom:1040.400000px;}
.y6_c00190{bottom:1041.000000px;}
.y3a_c00190{bottom:1057.650000px;}
.y5_c00190{bottom:1058.700000px;}
.y39_c00190{bottom:1075.650000px;}
.y4_c00190{bottom:1076.700000px;}
.y38_c00190{bottom:1093.650000px;}
.y3_c00190{bottom:1094.400000px;}
.y37_c00190{bottom:1111.350000px;}
.y2_c00190{bottom:1112.400000px;}
.y1_c00190{bottom:1143.750000px;}
.h9_c00190{height:30.000000px;}
.h6_c00190{height:36.000000px;}
.h8_c00190{height:42.000000px;}
.h7_c00190{height:54.000000px;}
.h4_c00190{height:60.000000px;}
.h3_c00190{height:66.000000px;}
.h5_c00190{height:72.000000px;}
.h2_c00190{height:84.000000px;}
.h1_c00190{height:1274.250000px;}
.h0_c00190{height:1274.400056px;}
.w1_c00190{width:963.000000px;}
.w0_c00190{width:963.359985px;}
.x0_c00190{left:0.000000px;}
.x34_c00190{left:75.300000px;}
.x66_c00190{left:76.650000px;}
.x8f_c00190{left:90.900000px;}
.x5_c00190{left:92.850000px;}
.x2b_c00190{left:94.200000px;}
.x71_c00190{left:95.400000px;}
.xa5_c00190{left:96.750000px;}
.x95_c00190{left:106.200000px;}
.x47_c00190{left:111.000000px;}
.x69_c00190{left:114.150000px;}
.x55_c00190{left:116.850000px;}
.x82_c00190{left:118.800000px;}
.x4f_c00190{left:120.150000px;}
.x76_c00190{left:121.950000px;}
.xf_c00190{left:123.900000px;}
.x4b_c00190{left:126.000000px;}
.x1f_c00190{left:127.050000px;}
.x39_c00190{left:128.400000px;}
.x7d_c00190{left:132.150000px;}
.x40_c00190{left:133.650000px;}
.x60_c00190{left:136.200000px;}
.x7e_c00190{left:140.400000px;}
.x56_c00190{left:142.350000px;}
.x9b_c00190{left:143.850000px;}
.x35_c00190{left:145.800000px;}
.x10_c00190{left:147.000000px;}
.x3a_c00190{left:149.250000px;}
.x6c_c00190{left:150.450000px;}
.x6_c00190{left:152.250000px;}
.x87_c00190{left:153.600000px;}
.x67_c00190{left:154.800000px;}
.x61_c00190{left:157.050000px;}
.x41_c00190{left:158.850000px;}
.x96_c00190{left:159.900000px;}
.x7_c00190{left:161.250000px;}
.x48_c00190{left:162.450000px;}
.x30_c00190{left:163.950000px;}
.x17_c00190{left:165.150000px;}
.x8c_c00190{left:166.200000px;}
.x92_c00190{left:167.850000px;}
.x9e_c00190{left:168.900000px;}
.x36_c00190{left:170.250000px;}
.x5d_c00190{left:171.300000px;}
.x79_c00190{left:173.550000px;}
.x9a_c00190{left:176.550000px;}
.x6d_c00190{left:178.200000px;}
.x97_c00190{left:182.100000px;}
.x25_c00190{left:183.450000px;}
.x77_c00190{left:185.250000px;}
.x5a_c00190{left:186.750000px;}
.x6e_c00190{left:187.950000px;}
.x18_c00190{left:191.400000px;}
.x11_c00190{left:194.400000px;}
.x3b_c00190{left:196.050000px;}
.xa2_c00190{left:197.550000px;}
.x6a_c00190{left:198.750000px;}
.x72_c00190{left:200.550000px;}
.x99_c00190{left:201.600000px;}
.x31_c00190{left:203.550000px;}
.x50_c00190{left:204.750000px;}
.xa7_c00190{left:207.750000px;}
.x26_c00190{left:210.150000px;}
.x20_c00190{left:211.650000px;}
.x7f_c00190{left:214.200000px;}
.x8_c00190{left:215.250000px;}
.x3c_c00190{left:216.900000px;}
.x19_c00190{left:220.200000px;}
.xa3_c00190{left:223.050000px;}
.x4c_c00190{left:225.300000px;}
.x37_c00190{left:227.550000px;}
.x21_c00190{left:231.150000px;}
.x42_c00190{left:232.650000px;}
.x9_c00190{left:236.550000px;}
.x12_c00190{left:237.900000px;}
.x32_c00190{left:239.250000px;}
.x57_c00190{left:240.300000px;}
.x90_c00190{left:241.350000px;}
.x51_c00190{left:242.850000px;}
.x62_c00190{left:245.250000px;}
.x43_c00190{left:247.800000px;}
.x4d_c00190{left:249.750000px;}
.x83_c00190{left:250.950000px;}
.x5e_c00190{left:252.750000px;}
.x1a_c00190{left:254.100000px;}
.x5b_c00190{left:256.200000px;}
.x80_c00190{left:257.700000px;}
.x13_c00190{left:258.750000px;}
.xa4_c00190{left:261.600000px;}
.x7a_c00190{left:262.800000px;}
.x8d_c00190{left:264.750000px;}
.x3d_c00190{left:266.550000px;}
.x44_c00190{left:269.100000px;}
.x27_c00190{left:270.300000px;}
.x1b_c00190{left:272.100000px;}
.xa_c00190{left:274.050000px;}
.x22_c00190{left:275.100000px;}
.x63_c00190{left:277.950000px;}
.x28_c00190{left:279.000000px;}
.xa0_c00190{left:280.050000px;}
.x9f_c00190{left:281.400000px;}
.x58_c00190{left:282.900000px;}
.x91_c00190{left:284.100000px;}
.x88_c00190{left:285.750000px;}
.x78_c00190{left:287.100000px;}
.xa6_c00190{left:289.350000px;}
.xb_c00190{left:292.050000px;}
.x64_c00190{left:293.850000px;}
.x49_c00190{left:295.350000px;}
.x14_c00190{left:296.550000px;}
.x4e_c00190{left:298.650000px;}
.x3e_c00190{left:299.700000px;}
.x52_c00190{left:301.200000px;}
.x1c_c00190{left:302.700000px;}
.x68_c00190{left:304.200000px;}
.x15_c00190{left:305.550000px;}
.x2c_c00190{left:308.100000px;}
.x33_c00190{left:309.450000px;}
.x9c_c00190{left:311.850000px;}
.xc_c00190{left:313.350000px;}
.x84_c00190{left:315.000000px;}
.x73_c00190{left:316.050000px;}
.x1_c00190{left:317.550000px;}
.x2d_c00190{left:318.900000px;}
.x45_c00190{left:320.550000px;}
.x3f_c00190{left:322.350000px;}
.x16_c00190{left:324.600000px;}
.x65_c00190{left:327.750000px;}
.x9d_c00190{left:328.800000px;}
.x89_c00190{left:331.500000px;}
.x2e_c00190{left:333.600000px;}
.xa8_c00190{left:335.250000px;}
.x59_c00190{left:338.400000px;}
.x6b_c00190{left:339.600000px;}
.x98_c00190{left:341.250000px;}
.x23_c00190{left:342.900000px;}
.x5c_c00190{left:345.150000px;}
.x53_c00190{left:346.200000px;}
.x6f_c00190{left:348.450000px;}
.x74_c00190{left:352.800000px;}
.x29_c00190{left:354.600000px;}
.x2f_c00190{left:356.250000px;}
.x81_c00190{left:358.200000px;}
.x85_c00190{left:359.250000px;}
.x5f_c00190{left:361.200000px;}
.x8e_c00190{left:362.700000px;}
.x70_c00190{left:364.650000px;}
.x4a_c00190{left:365.850000px;}
.xd_c00190{left:367.650000px;}
.x93_c00190{left:369.750000px;}
.x1d_c00190{left:371.100000px;}
.x54_c00190{left:372.900000px;}
.x2a_c00190{left:376.500000px;}
.x8a_c00190{left:380.100000px;}
.x24_c00190{left:381.450000px;}
.x46_c00190{left:382.800000px;}
.x38_c00190{left:384.750000px;}
.xa1_c00190{left:386.700000px;}
.xe_c00190{left:388.200000px;}
.x1e_c00190{left:389.850000px;}
.x86_c00190{left:393.750000px;}
.x75_c00190{left:396.000000px;}
.x94_c00190{left:398.550000px;}
.x7b_c00190{left:402.150000px;}
.x8b_c00190{left:408.150000px;}
.x7c_c00190{left:409.350000px;}
.x124_c00190{left:432.750000px;}
.x12f_c00190{left:447.750000px;}
.xa9_c00190{left:449.700000px;}
.xf4_c00190{left:450.750000px;}
.x126_c00190{left:463.650000px;}
.xf7_c00190{left:468.300000px;}
.x137_c00190{left:469.500000px;}
.x123_c00190{left:471.750000px;}
.xd7_c00190{left:473.700000px;}
.x13a_c00190{left:475.950000px;}
.xeb_c00190{left:477.300000px;}
.xf9_c00190{left:478.350000px;}
.xbd_c00190{left:481.050000px;}
.x111_c00190{left:482.850000px;}
.x104_c00190{left:484.500000px;}
.xfd_c00190{left:486.450000px;}
.xe0_c00190{left:487.950000px;}
.xd8_c00190{left:489.900000px;}
.xc3_c00190{left:493.500000px;}
.xb8_c00190{left:495.000000px;}
.x117_c00190{left:496.200000px;}
.xb2_c00190{left:497.700000px;}
.xaa_c00190{left:500.100000px;}
.xd3_c00190{left:502.800000px;}
.x127_c00190{left:504.750000px;}
.xfa_c00190{left:506.100000px;}
.x120_c00190{left:507.300000px;}
.xe6_c00190{left:508.650000px;}
.xc4_c00190{left:510.450000px;}
.x134_c00190{left:511.500000px;}
.xe1_c00190{left:512.850000px;}
.xd9_c00190{left:514.800000px;}
.xcb_c00190{left:517.350000px;}
.xef_c00190{left:520.200000px;}
.xda_c00190{left:524.100000px;}
.x12c_c00190{left:525.150000px;}
.xab_c00190{left:526.350000px;}
.xe7_c00190{left:528.450000px;}
.xe2_c00190{left:529.800000px;}
.xc5_c00190{left:531.300000px;}
.xfe_c00190{left:533.850000px;}
.xd4_c00190{left:537.000000px;}
.xf0_c00190{left:541.800000px;}
.x141_c00190{left:544.200000px;}
.xf5_c00190{left:545.400000px;}
.xb3_c00190{left:547.800000px;}
.xb9_c00190{left:549.750000px;}
.x2_c00190{left:551.250000px;}
.xcc_c00190{left:553.650000px;}
.x105_c00190{left:556.200000px;}
.x13e_c00190{left:557.550000px;}
.xd5_c00190{left:558.600000px;}
.x13f_c00190{left:560.400000px;}
.x11b_c00190{left:563.400000px;}
.x130_c00190{left:566.250000px;}
.xec_c00190{left:569.100000px;}
.xff_c00190{left:572.400000px;}
.xc6_c00190{left:575.250000px;}
.xe8_c00190{left:577.800000px;}
.x118_c00190{left:579.300000px;}
.xac_c00190{left:581.850000px;}
.xbe_c00190{left:584.250000px;}
.x13c_c00190{left:587.550000px;}
.x131_c00190{left:590.100000px;}
.xb4_c00190{left:591.300000px;}
.x10d_c00190{left:593.700000px;}
.xcd_c00190{left:595.050000px;}
.x11c_c00190{left:596.550000px;}
.xc7_c00190{left:597.900000px;}
.x10a_c00190{left:599.700000px;}
.xfb_c00190{left:601.200000px;}
.x112_c00190{left:603.150000px;}
.xbf_c00190{left:605.850000px;}
.x100_c00190{left:607.650000px;}
.xad_c00190{left:608.850000px;}
.xdb_c00190{left:610.800000px;}
.x12d_c00190{left:612.300000px;}
.x3_c00190{left:613.950000px;}
.x142_c00190{left:615.150000px;}
.xe9_c00190{left:618.150000px;}
.x121_c00190{left:619.500000px;}
.xf8_c00190{left:621.150000px;}
.xce_c00190{left:623.400000px;}
.x10e_c00190{left:626.100000px;}
.xdc_c00190{left:627.300000px;}
.xb5_c00190{left:628.800000px;}
.xba_c00190{left:630.000000px;}
.xea_c00190{left:631.800000px;}
.x119_c00190{left:633.300000px;}
.xf6_c00190{left:635.400000px;}
.xe3_c00190{left:637.800000px;}
.x113_c00190{left:639.150000px;}
.x125_c00190{left:640.800000px;}
.xb6_c00190{left:642.150000px;}
.x10b_c00190{left:644.700000px;}
.xc8_c00190{left:646.800000px;}
.x114_c00190{left:651.000000px;}
.x13b_c00190{left:652.200000px;}
.x12e_c00190{left:653.700000px;}
.xe4_c00190{left:655.500000px;}
.xbb_c00190{left:657.750000px;}
.x135_c00190{left:660.450000px;}
.xae_c00190{left:661.800000px;}
.xd6_c00190{left:663.000000px;}
.x101_c00190{left:664.200000px;}
.x128_c00190{left:665.850000px;}
.x12a_c00190{left:667.050000px;}
.x10f_c00190{left:668.250000px;}
.xdd_c00190{left:670.200000px;}
.x11d_c00190{left:671.400000px;}
.xed_c00190{left:672.450000px;}
.x122_c00190{left:673.800000px;}
.xcf_c00190{left:675.900000px;}
.x106_c00190{left:677.850000px;}
.xde_c00190{left:679.200000px;}
.x140_c00190{left:680.250000px;}
.xc0_c00190{left:682.050000px;}
.x132_c00190{left:683.250000px;}
.xf1_c00190{left:684.450000px;}
.xaf_c00190{left:686.700000px;}
.x11a_c00190{left:687.750000px;}
.xee_c00190{left:689.700000px;}
.xb7_c00190{left:692.550000px;}
.xf2_c00190{left:693.750000px;}
.x11e_c00190{left:696.300000px;}
.xc1_c00190{left:698.250000px;}
.x136_c00190{left:699.750000px;}
.x107_c00190{left:702.300000px;}
.x138_c00190{left:703.650000px;}
.x102_c00190{left:705.300000px;}
.xd0_c00190{left:706.800000px;}
.x10c_c00190{left:708.450000px;}
.xfc_c00190{left:709.650000px;}
.xc9_c00190{left:711.600000px;}
.x115_c00190{left:713.700000px;}
.x133_c00190{left:718.950000px;}
.x103_c00190{left:722.550000px;}
.xe5_c00190{left:727.500000px;}
.x129_c00190{left:728.550000px;}
.x110_c00190{left:730.050000px;}
.x13d_c00190{left:731.100000px;}
.xb0_c00190{left:732.750000px;}
.xc2_c00190{left:733.950000px;}
.x108_c00190{left:735.750000px;}
.x116_c00190{left:736.800000px;}
.xbc_c00190{left:738.450000px;}
.xd1_c00190{left:740.700000px;}
.x4_c00190{left:742.800000px;}
.xdf_c00190{left:744.000000px;}
.xf3_c00190{left:745.650000px;}
.xb1_c00190{left:750.000000px;}
.x12b_c00190{left:751.350000px;}
.x109_c00190{left:753.750000px;}
.x11f_c00190{left:756.750000px;}
.xd2_c00190{left:757.950000px;}
.x139_c00190{left:763.350000px;}
.xca_c00190{left:765.900000px;}
.x143_c00190{left:820.500000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls0_c00190{letter-spacing:0.000000pt;}
.ws7_c00190{word-spacing:-7.864119pt;}
.ws5_c00190{word-spacing:-6.361266pt;}
.ws0_c00190{word-spacing:-6.145857pt;}
.ws3_c00190{word-spacing:-2.870488pt;}
.ws1_c00190{word-spacing:-1.531162pt;}
.ws8_c00190{word-spacing:0.000000pt;}
.ws4_c00190{word-spacing:1.082126pt;}
.ws6_c00190{word-spacing:9.513514pt;}
.ws2_c00190{word-spacing:37.555556pt;}
.fs7_c00190{font-size:26.666667pt;}
.fs4_c00190{font-size:32.000000pt;}
.fs6_c00190{font-size:37.333333pt;}
.fs5_c00190{font-size:48.000000pt;}
.fs2_c00190{font-size:53.333333pt;}
.fs1_c00190{font-size:58.666667pt;}
.fs3_c00190{font-size:64.000000pt;}
.fs0_c00190{font-size:74.666667pt;}
.y0_c00190{bottom:0.000000pt;}
.y69_c00190{bottom:2.266667pt;}
.y68_c00190{bottom:161.600000pt;}
.y36_c00190{bottom:164.533333pt;}
.y67_c00190{bottom:179.866667pt;}
.y35_c00190{bottom:180.800000pt;}
.y66_c00190{bottom:196.133333pt;}
.y34_c00190{bottom:196.800000pt;}
.y65_c00190{bottom:211.466667pt;}
.y33_c00190{bottom:212.533333pt;}
.y32_c00190{bottom:228.533333pt;}
.y64_c00190{bottom:235.066667pt;}
.y31_c00190{bottom:244.533333pt;}
.y63_c00190{bottom:251.066667pt;}
.y30_c00190{bottom:260.533333pt;}
.y62_c00190{bottom:266.800000pt;}
.y2f_c00190{bottom:276.266667pt;}
.y61_c00190{bottom:282.533333pt;}
.y2e_c00190{bottom:292.266667pt;}
.y60_c00190{bottom:298.533333pt;}
.y2d_c00190{bottom:308.000000pt;}
.y5f_c00190{bottom:314.266667pt;}
.y2c_c00190{bottom:324.000000pt;}
.y5e_c00190{bottom:330.266667pt;}
.y2b_c00190{bottom:339.733333pt;}
.y5d_c00190{bottom:350.133333pt;}
.y2a_c00190{bottom:355.466667pt;}
.y29_c00190{bottom:371.466667pt;}
.y5c_c00190{bottom:382.400000pt;}
.y28_c00190{bottom:390.000000pt;}
.y5b_c00190{bottom:398.400000pt;}
.y27_c00190{bottom:402.533333pt;}
.y5a_c00190{bottom:414.400000pt;}
.y26_c00190{bottom:415.600000pt;}
.y25_c00190{bottom:428.400000pt;}
.y59_c00190{bottom:430.133333pt;}
.y24_c00190{bottom:440.933333pt;}
.y23_c00190{bottom:453.733333pt;}
.y58_c00190{bottom:454.000000pt;}
.y22_c00190{bottom:466.266667pt;}
.y57_c00190{bottom:470.000000pt;}
.y21_c00190{bottom:479.333333pt;}
.y56_c00190{bottom:486.000000pt;}
.y20_c00190{bottom:493.066667pt;}
.y55_c00190{bottom:501.733333pt;}
.y1f_c00190{bottom:510.000000pt;}
.y54_c00190{bottom:517.733333pt;}
.y1e_c00190{bottom:525.733333pt;}
.y53_c00190{bottom:533.466667pt;}
.y1d_c00190{bottom:542.000000pt;}
.y52_c00190{bottom:549.466667pt;}
.y1c_c00190{bottom:557.733333pt;}
.y51_c00190{bottom:572.266667pt;}
.y1b_c00190{bottom:577.600000pt;}
.y50_c00190{bottom:588.266667pt;}
.y1a_c00190{bottom:593.600000pt;}
.y4f_c00190{bottom:604.000000pt;}
.y19_c00190{bottom:609.333333pt;}
.y4e_c00190{bottom:619.733333pt;}
.y18_c00190{bottom:625.333333pt;}
.y4d_c00190{bottom:635.733333pt;}
.y17_c00190{bottom:641.066667pt;}
.y4c_c00190{bottom:651.733333pt;}
.y16_c00190{bottom:657.333333pt;}
.y4b_c00190{bottom:667.733333pt;}
.y15_c00190{bottom:672.666667pt;}
.y4a_c00190{bottom:683.066667pt;}
.y14_c00190{bottom:688.666667pt;}
.y49_c00190{bottom:698.800000pt;}
.y13_c00190{bottom:708.133333pt;}
.y48_c00190{bottom:714.800000pt;}
.y47_c00190{bottom:730.800000pt;}
.y12_c00190{bottom:731.333333pt;}
.y46_c00190{bottom:746.533333pt;}
.y11_c00190{bottom:747.333333pt;}
.y10_c00190{bottom:763.066667pt;}
.y45_c00190{bottom:766.400000pt;}
.yf_c00190{bottom:778.800000pt;}
.y44_c00190{bottom:782.400000pt;}
.ye_c00190{bottom:794.800000pt;}
.y43_c00190{bottom:798.400000pt;}
.yd_c00190{bottom:810.800000pt;}
.y42_c00190{bottom:814.133333pt;}
.yc_c00190{bottom:826.533333pt;}
.y41_c00190{bottom:829.600000pt;}
.yb_c00190{bottom:842.533333pt;}
.y40_c00190{bottom:845.333333pt;}
.ya_c00190{bottom:858.266667pt;}
.y3f_c00190{bottom:861.333333pt;}
.y9_c00190{bottom:874.266667pt;}
.y3e_c00190{bottom:877.066667pt;}
.y3d_c00190{bottom:893.066667pt;}
.y8_c00190{bottom:893.600000pt;}
.y3c_c00190{bottom:908.800000pt;}
.y7_c00190{bottom:909.600000pt;}
.y3b_c00190{bottom:924.800000pt;}
.y6_c00190{bottom:925.333333pt;}
.y3a_c00190{bottom:940.133333pt;}
.y5_c00190{bottom:941.066667pt;}
.y39_c00190{bottom:956.133333pt;}
.y4_c00190{bottom:957.066667pt;}
.y38_c00190{bottom:972.133333pt;}
.y3_c00190{bottom:972.800000pt;}
.y37_c00190{bottom:987.866667pt;}
.y2_c00190{bottom:988.800000pt;}
.y1_c00190{bottom:1016.666667pt;}
.h9_c00190{height:26.666667pt;}
.h6_c00190{height:32.000000pt;}
.h8_c00190{height:37.333333pt;}
.h7_c00190{height:48.000000pt;}
.h4_c00190{height:53.333333pt;}
.h3_c00190{height:58.666667pt;}
.h5_c00190{height:64.000000pt;}
.h2_c00190{height:74.666667pt;}
.h1_c00190{height:1132.666667pt;}
.h0_c00190{height:1132.800049pt;}
.w1_c00190{width:856.000000pt;}
.w0_c00190{width:856.319987pt;}
.x0_c00190{left:0.000000pt;}
.x34_c00190{left:66.933333pt;}
.x66_c00190{left:68.133333pt;}
.x8f_c00190{left:80.800000pt;}
.x5_c00190{left:82.533333pt;}
.x2b_c00190{left:83.733333pt;}
.x71_c00190{left:84.800000pt;}
.xa5_c00190{left:86.000000pt;}
.x95_c00190{left:94.400000pt;}
.x47_c00190{left:98.666667pt;}
.x69_c00190{left:101.466667pt;}
.x55_c00190{left:103.866667pt;}
.x82_c00190{left:105.600000pt;}
.x4f_c00190{left:106.800000pt;}
.x76_c00190{left:108.400000pt;}
.xf_c00190{left:110.133333pt;}
.x4b_c00190{left:112.000000pt;}
.x1f_c00190{left:112.933333pt;}
.x39_c00190{left:114.133333pt;}
.x7d_c00190{left:117.466667pt;}
.x40_c00190{left:118.800000pt;}
.x60_c00190{left:121.066667pt;}
.x7e_c00190{left:124.800000pt;}
.x56_c00190{left:126.533333pt;}
.x9b_c00190{left:127.866667pt;}
.x35_c00190{left:129.600000pt;}
.x10_c00190{left:130.666667pt;}
.x3a_c00190{left:132.666667pt;}
.x6c_c00190{left:133.733333pt;}
.x6_c00190{left:135.333333pt;}
.x87_c00190{left:136.533333pt;}
.x67_c00190{left:137.600000pt;}
.x61_c00190{left:139.600000pt;}
.x41_c00190{left:141.200000pt;}
.x96_c00190{left:142.133333pt;}
.x7_c00190{left:143.333333pt;}
.x48_c00190{left:144.400000pt;}
.x30_c00190{left:145.733333pt;}
.x17_c00190{left:146.800000pt;}
.x8c_c00190{left:147.733333pt;}
.x92_c00190{left:149.200000pt;}
.x9e_c00190{left:150.133333pt;}
.x36_c00190{left:151.333333pt;}
.x5d_c00190{left:152.266667pt;}
.x79_c00190{left:154.266667pt;}
.x9a_c00190{left:156.933333pt;}
.x6d_c00190{left:158.400000pt;}
.x97_c00190{left:161.866667pt;}
.x25_c00190{left:163.066667pt;}
.x77_c00190{left:164.666667pt;}
.x5a_c00190{left:166.000000pt;}
.x6e_c00190{left:167.066667pt;}
.x18_c00190{left:170.133333pt;}
.x11_c00190{left:172.800000pt;}
.x3b_c00190{left:174.266667pt;}
.xa2_c00190{left:175.600000pt;}
.x6a_c00190{left:176.666667pt;}
.x72_c00190{left:178.266667pt;}
.x99_c00190{left:179.200000pt;}
.x31_c00190{left:180.933333pt;}
.x50_c00190{left:182.000000pt;}
.xa7_c00190{left:184.666667pt;}
.x26_c00190{left:186.800000pt;}
.x20_c00190{left:188.133333pt;}
.x7f_c00190{left:190.400000pt;}
.x8_c00190{left:191.333333pt;}
.x3c_c00190{left:192.800000pt;}
.x19_c00190{left:195.733333pt;}
.xa3_c00190{left:198.266667pt;}
.x4c_c00190{left:200.266667pt;}
.x37_c00190{left:202.266667pt;}
.x21_c00190{left:205.466667pt;}
.x42_c00190{left:206.800000pt;}
.x9_c00190{left:210.266667pt;}
.x12_c00190{left:211.466667pt;}
.x32_c00190{left:212.666667pt;}
.x57_c00190{left:213.600000pt;}
.x90_c00190{left:214.533333pt;}
.x51_c00190{left:215.866667pt;}
.x62_c00190{left:218.000000pt;}
.x43_c00190{left:220.266667pt;}
.x4d_c00190{left:222.000000pt;}
.x83_c00190{left:223.066667pt;}
.x5e_c00190{left:224.666667pt;}
.x1a_c00190{left:225.866667pt;}
.x5b_c00190{left:227.733333pt;}
.x80_c00190{left:229.066667pt;}
.x13_c00190{left:230.000000pt;}
.xa4_c00190{left:232.533333pt;}
.x7a_c00190{left:233.600000pt;}
.x8d_c00190{left:235.333333pt;}
.x3d_c00190{left:236.933333pt;}
.x44_c00190{left:239.200000pt;}
.x27_c00190{left:240.266667pt;}
.x1b_c00190{left:241.866667pt;}
.xa_c00190{left:243.600000pt;}
.x22_c00190{left:244.533333pt;}
.x63_c00190{left:247.066667pt;}
.x28_c00190{left:248.000000pt;}
.xa0_c00190{left:248.933333pt;}
.x9f_c00190{left:250.133333pt;}
.x58_c00190{left:251.466667pt;}
.x91_c00190{left:252.533333pt;}
.x88_c00190{left:254.000000pt;}
.x78_c00190{left:255.200000pt;}
.xa6_c00190{left:257.200000pt;}
.xb_c00190{left:259.600000pt;}
.x64_c00190{left:261.200000pt;}
.x49_c00190{left:262.533333pt;}
.x14_c00190{left:263.600000pt;}
.x4e_c00190{left:265.466667pt;}
.x3e_c00190{left:266.400000pt;}
.x52_c00190{left:267.733333pt;}
.x1c_c00190{left:269.066667pt;}
.x68_c00190{left:270.400000pt;}
.x15_c00190{left:271.600000pt;}
.x2c_c00190{left:273.866667pt;}
.x33_c00190{left:275.066667pt;}
.x9c_c00190{left:277.200000pt;}
.xc_c00190{left:278.533333pt;}
.x84_c00190{left:280.000000pt;}
.x73_c00190{left:280.933333pt;}
.x1_c00190{left:282.266667pt;}
.x2d_c00190{left:283.466667pt;}
.x45_c00190{left:284.933333pt;}
.x3f_c00190{left:286.533333pt;}
.x16_c00190{left:288.533333pt;}
.x65_c00190{left:291.333333pt;}
.x9d_c00190{left:292.266667pt;}
.x89_c00190{left:294.666667pt;}
.x2e_c00190{left:296.533333pt;}
.xa8_c00190{left:298.000000pt;}
.x59_c00190{left:300.800000pt;}
.x6b_c00190{left:301.866667pt;}
.x98_c00190{left:303.333333pt;}
.x23_c00190{left:304.800000pt;}
.x5c_c00190{left:306.800000pt;}
.x53_c00190{left:307.733333pt;}
.x6f_c00190{left:309.733333pt;}
.x74_c00190{left:313.600000pt;}
.x29_c00190{left:315.200000pt;}
.x2f_c00190{left:316.666667pt;}
.x81_c00190{left:318.400000pt;}
.x85_c00190{left:319.333333pt;}
.x5f_c00190{left:321.066667pt;}
.x8e_c00190{left:322.400000pt;}
.x70_c00190{left:324.133333pt;}
.x4a_c00190{left:325.200000pt;}
.xd_c00190{left:326.800000pt;}
.x93_c00190{left:328.666667pt;}
.x1d_c00190{left:329.866667pt;}
.x54_c00190{left:331.466667pt;}
.x2a_c00190{left:334.666667pt;}
.x8a_c00190{left:337.866667pt;}
.x24_c00190{left:339.066667pt;}
.x46_c00190{left:340.266667pt;}
.x38_c00190{left:342.000000pt;}
.xa1_c00190{left:343.733333pt;}
.xe_c00190{left:345.066667pt;}
.x1e_c00190{left:346.533333pt;}
.x86_c00190{left:350.000000pt;}
.x75_c00190{left:352.000000pt;}
.x94_c00190{left:354.266667pt;}
.x7b_c00190{left:357.466667pt;}
.x8b_c00190{left:362.800000pt;}
.x7c_c00190{left:363.866667pt;}
.x124_c00190{left:384.666667pt;}
.x12f_c00190{left:398.000000pt;}
.xa9_c00190{left:399.733333pt;}
.xf4_c00190{left:400.666667pt;}
.x126_c00190{left:412.133333pt;}
.xf7_c00190{left:416.266667pt;}
.x137_c00190{left:417.333333pt;}
.x123_c00190{left:419.333333pt;}
.xd7_c00190{left:421.066667pt;}
.x13a_c00190{left:423.066667pt;}
.xeb_c00190{left:424.266667pt;}
.xf9_c00190{left:425.200000pt;}
.xbd_c00190{left:427.600000pt;}
.x111_c00190{left:429.200000pt;}
.x104_c00190{left:430.666667pt;}
.xfd_c00190{left:432.400000pt;}
.xe0_c00190{left:433.733333pt;}
.xd8_c00190{left:435.466667pt;}
.xc3_c00190{left:438.666667pt;}
.xb8_c00190{left:440.000000pt;}
.x117_c00190{left:441.066667pt;}
.xb2_c00190{left:442.400000pt;}
.xaa_c00190{left:444.533333pt;}
.xd3_c00190{left:446.933333pt;}
.x127_c00190{left:448.666667pt;}
.xfa_c00190{left:449.866667pt;}
.x120_c00190{left:450.933333pt;}
.xe6_c00190{left:452.133333pt;}
.xc4_c00190{left:453.733333pt;}
.x134_c00190{left:454.666667pt;}
.xe1_c00190{left:455.866667pt;}
.xd9_c00190{left:457.600000pt;}
.xcb_c00190{left:459.866667pt;}
.xef_c00190{left:462.400000pt;}
.xda_c00190{left:465.866667pt;}
.x12c_c00190{left:466.800000pt;}
.xab_c00190{left:467.866667pt;}
.xe7_c00190{left:469.733333pt;}
.xe2_c00190{left:470.933333pt;}
.xc5_c00190{left:472.266667pt;}
.xfe_c00190{left:474.533333pt;}
.xd4_c00190{left:477.333333pt;}
.xf0_c00190{left:481.600000pt;}
.x141_c00190{left:483.733333pt;}
.xf5_c00190{left:484.800000pt;}
.xb3_c00190{left:486.933333pt;}
.xb9_c00190{left:488.666667pt;}
.x2_c00190{left:490.000000pt;}
.xcc_c00190{left:492.133333pt;}
.x105_c00190{left:494.400000pt;}
.x13e_c00190{left:495.600000pt;}
.xd5_c00190{left:496.533333pt;}
.x13f_c00190{left:498.133333pt;}
.x11b_c00190{left:500.800000pt;}
.x130_c00190{left:503.333333pt;}
.xec_c00190{left:505.866667pt;}
.xff_c00190{left:508.800000pt;}
.xc6_c00190{left:511.333333pt;}
.xe8_c00190{left:513.600000pt;}
.x118_c00190{left:514.933333pt;}
.xac_c00190{left:517.200000pt;}
.xbe_c00190{left:519.333333pt;}
.x13c_c00190{left:522.266667pt;}
.x131_c00190{left:524.533333pt;}
.xb4_c00190{left:525.600000pt;}
.x10d_c00190{left:527.733333pt;}
.xcd_c00190{left:528.933333pt;}
.x11c_c00190{left:530.266667pt;}
.xc7_c00190{left:531.466667pt;}
.x10a_c00190{left:533.066667pt;}
.xfb_c00190{left:534.400000pt;}
.x112_c00190{left:536.133333pt;}
.xbf_c00190{left:538.533333pt;}
.x100_c00190{left:540.133333pt;}
.xad_c00190{left:541.200000pt;}
.xdb_c00190{left:542.933333pt;}
.x12d_c00190{left:544.266667pt;}
.x3_c00190{left:545.733333pt;}
.x142_c00190{left:546.800000pt;}
.xe9_c00190{left:549.466667pt;}
.x121_c00190{left:550.666667pt;}
.xf8_c00190{left:552.133333pt;}
.xce_c00190{left:554.133333pt;}
.x10e_c00190{left:556.533333pt;}
.xdc_c00190{left:557.600000pt;}
.xb5_c00190{left:558.933333pt;}
.xba_c00190{left:560.000000pt;}
.xea_c00190{left:561.600000pt;}
.x119_c00190{left:562.933333pt;}
.xf6_c00190{left:564.800000pt;}
.xe3_c00190{left:566.933333pt;}
.x113_c00190{left:568.133333pt;}
.x125_c00190{left:569.600000pt;}
.xb6_c00190{left:570.800000pt;}
.x10b_c00190{left:573.066667pt;}
.xc8_c00190{left:574.933333pt;}
.x114_c00190{left:578.666667pt;}
.x13b_c00190{left:579.733333pt;}
.x12e_c00190{left:581.066667pt;}
.xe4_c00190{left:582.666667pt;}
.xbb_c00190{left:584.666667pt;}
.x135_c00190{left:587.066667pt;}
.xae_c00190{left:588.266667pt;}
.xd6_c00190{left:589.333333pt;}
.x101_c00190{left:590.400000pt;}
.x128_c00190{left:591.866667pt;}
.x12a_c00190{left:592.933333pt;}
.x10f_c00190{left:594.000000pt;}
.xdd_c00190{left:595.733333pt;}
.x11d_c00190{left:596.800000pt;}
.xed_c00190{left:597.733333pt;}
.x122_c00190{left:598.933333pt;}
.xcf_c00190{left:600.800000pt;}
.x106_c00190{left:602.533333pt;}
.xde_c00190{left:603.733333pt;}
.x140_c00190{left:604.666667pt;}
.xc0_c00190{left:606.266667pt;}
.x132_c00190{left:607.333333pt;}
.xf1_c00190{left:608.400000pt;}
.xaf_c00190{left:610.400000pt;}
.x11a_c00190{left:611.333333pt;}
.xee_c00190{left:613.066667pt;}
.xb7_c00190{left:615.600000pt;}
.xf2_c00190{left:616.666667pt;}
.x11e_c00190{left:618.933333pt;}
.xc1_c00190{left:620.666667pt;}
.x136_c00190{left:622.000000pt;}
.x107_c00190{left:624.266667pt;}
.x138_c00190{left:625.466667pt;}
.x102_c00190{left:626.933333pt;}
.xd0_c00190{left:628.266667pt;}
.x10c_c00190{left:629.733333pt;}
.xfc_c00190{left:630.800000pt;}
.xc9_c00190{left:632.533333pt;}
.x115_c00190{left:634.400000pt;}
.x133_c00190{left:639.066667pt;}
.x103_c00190{left:642.266667pt;}
.xe5_c00190{left:646.666667pt;}
.x129_c00190{left:647.600000pt;}
.x110_c00190{left:648.933333pt;}
.x13d_c00190{left:649.866667pt;}
.xb0_c00190{left:651.333333pt;}
.xc2_c00190{left:652.400000pt;}
.x108_c00190{left:654.000000pt;}
.x116_c00190{left:654.933333pt;}
.xbc_c00190{left:656.400000pt;}
.xd1_c00190{left:658.400000pt;}
.x4_c00190{left:660.266667pt;}
.xdf_c00190{left:661.333333pt;}
.xf3_c00190{left:662.800000pt;}
.xb1_c00190{left:666.666667pt;}
.x12b_c00190{left:667.866667pt;}
.x109_c00190{left:670.000000pt;}
.x11f_c00190{left:672.666667pt;}
.xd2_c00190{left:673.733333pt;}
.x139_c00190{left:678.533333pt;}
.xca_c00190{left:680.800000pt;}
.x143_c00190{left:729.333333pt;}
}





/* 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_c00191 {
    display:none;
  }
  .loading-indicator_c00191.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00191 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_c00191 { 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_c00191" -> "#page-container .classname_c00191")
 */
.pf_c00191 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00191 { /* 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_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00191 { /* 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_c00191 { /* 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_c00191 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00191 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00191 {overflow:visible;}
  }
}
.c_c00191 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00191 { /* 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_c00191:after { /* webkit #35443 */
  content: '';
}
.t_c00191:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00191 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 */
}
.__c00191 { /* 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_c00191 { /* info for Javascript */
  display:none;
}
.l_c00191 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00191 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00191 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00191: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_c00191 {
    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_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00191.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_c00191 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00191;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.000000;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;}
.mdc_c00191{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m39_c00191{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00191{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00191{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m2_c00191{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00191{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00191{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m68_c00191{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m96_c00191{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m14_c00191{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mea_c00191{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00191{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m92_c00191{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.md3_c00191{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.maa_c00191{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7_c00191{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00191{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00191{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m8_c00191{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m26_c00191{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mff_c00191{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00191{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m66_c00191{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m101_c00191{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m62_c00191{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00191{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m30_c00191{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00191{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00191{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00191{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb_c00191{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00191{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m88_c00191{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00191{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m33_c00191{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md9_c00191{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00191{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mef_c00191{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00191{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00191{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m75_c00191{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m36_c00191{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00191{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00191{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mee_c00191{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.md8_c00191{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00191{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00191{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00191{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m48_c00191{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00191{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00191{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md_c00191{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00191{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00191{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00191{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00191{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m42_c00191{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m108_c00191{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m23_c00191{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m87_c00191{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00191{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00191{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m22_c00191{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md5_c00191{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00191{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m61_c00191{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m110_c00191{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00191{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m69_c00191{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00191{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00191{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00191{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m86_c00191{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mda_c00191{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m41_c00191{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m84_c00191{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m67_c00191{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m63_c00191{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m80_c00191{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m55_c00191{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00191{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00191{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m60_c00191{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m95_c00191{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m37_c00191{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00191{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00191{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00191{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00191{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m74_c00191{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00191{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mba_c00191{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00191{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00191{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m27_c00191{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mca_c00191{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m25_c00191{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00191{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00191{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m71_c00191{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m40_c00191{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mac_c00191{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m99_c00191{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00191{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m56_c00191{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00191{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00191{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m15_c00191{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00191{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00191{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma_c00191{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m28_c00191{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m47_c00191{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me8_c00191{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00191{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00191{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m103_c00191{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m34_c00191{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00191{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00191{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m29_c00191{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m83_c00191{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6_c00191{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00191{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.maf_c00191{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00191{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m79_c00191{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m20_c00191{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mc_c00191{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00191{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m70_c00191{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00191{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00191{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00191{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m81_c00191{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m53_c00191{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m31_c00191{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00191{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m35_c00191{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m44_c00191{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10_c00191{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00191{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00191{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m43_c00191{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m100_c00191{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m49_c00191{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m16_c00191{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00191{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m51_c00191{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m9_c00191{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me4_c00191{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00191{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00191{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00191{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00191{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m45_c00191{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00191{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00191{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00191{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m11_c00191{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m98_c00191{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00191{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00191{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00191{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m24_c00191{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m82_c00191{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00191{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00191{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00191{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00191{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00191{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m106_c00191{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.me_c00191{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m90_c00191{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m13_c00191{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m21_c00191{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.med_c00191{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m46_c00191{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m54_c00191{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m57_c00191{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m76_c00191{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00191{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m65_c00191{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mad_c00191{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00191{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m38_c00191{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00191{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00191{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mce_c00191{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00191{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00191{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m89_c00191{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m78_c00191{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00191{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m59_c00191{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me1_c00191{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00191{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00191{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf_c00191{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3_c00191{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00191{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00191{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m19_c00191{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00191{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.md7_c00191{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m12_c00191{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m18_c00191{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00191{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m17_c00191{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me9_c00191{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00191{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m50_c00191{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00191{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00191{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m107_c00191{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m58_c00191{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00191{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m109_c00191{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m91_c00191{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me6_c00191{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00191{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00191{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00191{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md4_c00191{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mae_c00191{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00191{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00191{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00191{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mab_c00191{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m94_c00191{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00191{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00191{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00191{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m102_c00191{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00191{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m73_c00191{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.md0_c00191{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00191{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m97_c00191{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.md6_c00191{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00191{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00191{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m77_c00191{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00191{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00191{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00191{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00191{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m52_c00191{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m104_c00191{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m32_c00191{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m72_c00191{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00191{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m85_c00191{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m64_c00191{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00191{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.me7_c00191{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m105_c00191{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.me3_c00191{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m93_c00191{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.me0_c00191{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md2_c00191{transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);}
.mde_c00191{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.md1_c00191{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00191{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.mec_c00191{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.me2_c00191{transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(0.501000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501000,0.000000,0.000000,0.250000,0,0);}
.me5_c00191{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.meb_c00191{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{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__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00191{word-spacing:-9.167598px;}
.ws0_c00191{word-spacing:-5.609808px;}
.ws2_c00191{word-spacing:-4.605263px;}
.ws1_c00191{word-spacing:-3.750000px;}
.ws4_c00191{word-spacing:-0.997650px;}
.ws5_c00191{word-spacing:0.000000px;}
._1_c00191{width:25.541899px;}
._0_c00191{width:31.710526px;}
.fc0_c00191{color:transparent;}
.fs2_c00191{font-size:30.000000px;}
.fs6_c00191{font-size:48.000000px;}
.fs7_c00191{font-size:54.000000px;}
.fs5_c00191{font-size:60.000000px;}
.fs4_c00191{font-size:66.000000px;}
.fs3_c00191{font-size:72.000000px;}
.fs1_c00191{font-size:78.000000px;}
.fs0_c00191{font-size:84.000000px;}
.y0_c00191{bottom:0.000000px;}
.y2_c00191{bottom:140.700000px;}
.y66_c00191{bottom:178.500000px;}
.y65_c00191{bottom:195.900000px;}
.y36_c00191{bottom:197.250000px;}
.y64_c00191{bottom:209.550000px;}
.y35_c00191{bottom:214.950000px;}
.y63_c00191{bottom:224.250000px;}
.y34_c00191{bottom:232.950000px;}
.y62_c00191{bottom:238.650000px;}
.y33_c00191{bottom:250.650000px;}
.y61_c00191{bottom:253.050000px;}
.y60_c00191{bottom:267.450000px;}
.y32_c00191{bottom:268.950000px;}
.y5f_c00191{bottom:282.300000px;}
.y31_c00191{bottom:286.200000px;}
.y5e_c00191{bottom:296.400000px;}
.y30_c00191{bottom:308.550000px;}
.y5d_c00191{bottom:311.100000px;}
.y2f_c00191{bottom:322.500000px;}
.y5c_c00191{bottom:325.500000px;}
.y2e_c00191{bottom:336.900000px;}
.y5b_c00191{bottom:339.150000px;}
.y2d_c00191{bottom:349.500000px;}
.y2c_c00191{bottom:363.600000px;}
.y2b_c00191{bottom:381.600000px;}
.y5a_c00191{bottom:385.200000px;}
.y2a_c00191{bottom:399.600000px;}
.y59_c00191{bottom:402.900000px;}
.y29_c00191{bottom:417.600000px;}
.y58_c00191{bottom:421.200000px;}
.y28_c00191{bottom:435.300000px;}
.y57_c00191{bottom:439.200000px;}
.y56_c00191{bottom:456.900000px;}
.y27_c00191{bottom:457.650000px;}
.y55_c00191{bottom:475.200000px;}
.y26_c00191{bottom:475.650000px;}
.y54_c00191{bottom:492.450000px;}
.y25_c00191{bottom:493.950000px;}
.y24_c00191{bottom:511.200000px;}
.y53_c00191{bottom:514.800000px;}
.y23_c00191{bottom:529.500000px;}
.y52_c00191{bottom:537.150000px;}
.y22_c00191{bottom:547.500000px;}
.y51_c00191{bottom:555.150000px;}
.y21_c00191{bottom:569.100000px;}
.y50_c00191{bottom:583.200000px;}
.y20_c00191{bottom:600.450000px;}
.y4f_c00191{bottom:605.100000px;}
.y4e_c00191{bottom:616.350000px;}
.y1f_c00191{bottom:618.450000px;}
.y4d_c00191{bottom:621.750000px;}
.y4c_c00191{bottom:636.450000px;}
.y1e_c00191{bottom:640.800000px;}
.y4b_c00191{bottom:654.150000px;}
.y1d_c00191{bottom:658.800000px;}
.y1c_c00191{bottom:676.500000px;}
.y4a_c00191{bottom:689.100000px;}
.y1b_c00191{bottom:694.500000px;}
.y1a_c00191{bottom:715.950000px;}
.y49_c00191{bottom:725.100000px;}
.y19_c00191{bottom:733.950000px;}
.y48_c00191{bottom:742.800000px;}
.y18_c00191{bottom:751.650000px;}
.y47_c00191{bottom:761.100000px;}
.y17_c00191{bottom:769.650000px;}
.y16_c00191{bottom:787.650000px;}
.y46_c00191{bottom:796.050000px;}
.y15_c00191{bottom:805.650000px;}
.y45_c00191{bottom:814.050000px;}
.y14_c00191{bottom:823.350000px;}
.y44_c00191{bottom:832.350000px;}
.y13_c00191{bottom:841.350000px;}
.y12_c00191{bottom:859.350000px;}
.y43_c00191{bottom:865.050000px;}
.y11_c00191{bottom:877.050000px;}
.y10_c00191{bottom:895.050000px;}
.y42_c00191{bottom:898.950000px;}
.yf_c00191{bottom:913.050000px;}
.y41_c00191{bottom:916.950000px;}
.ye_c00191{bottom:930.300000px;}
.y40_c00191{bottom:943.800000px;}
.yd_c00191{bottom:948.300000px;}
.y3f_c00191{bottom:961.500000px;}
.yc_c00191{bottom:966.300000px;}
.y3e_c00191{bottom:979.500000px;}
.yb_c00191{bottom:984.000000px;}
.y3d_c00191{bottom:1001.250000px;}
.ya_c00191{bottom:1001.700000px;}
.y3c_c00191{bottom:1019.550000px;}
.y9_c00191{bottom:1019.700000px;}
.y8_c00191{bottom:1037.400000px;}
.y3b_c00191{bottom:1037.550000px;}
.y3a_c00191{bottom:1055.250000px;}
.y7_c00191{bottom:1055.400000px;}
.y6_c00191{bottom:1073.100000px;}
.y39_c00191{bottom:1073.250000px;}
.y5_c00191{bottom:1090.800000px;}
.y38_c00191{bottom:1091.250000px;}
.y4_c00191{bottom:1108.800000px;}
.y37_c00191{bottom:1112.850000px;}
.y3_c00191{bottom:1126.500000px;}
.y1_c00191{bottom:1153.500000px;}
.h3_c00191{height:30.000000px;}
.h7_c00191{height:48.000000px;}
.h8_c00191{height:54.000000px;}
.h6_c00191{height:60.000000px;}
.h5_c00191{height:66.000000px;}
.h4_c00191{height:72.000000px;}
.h2_c00191{height:78.000000px;}
.h1_c00191{height:84.000000px;}
.h0_c00191{height:1269.000000px;}
.w1_c00191{width:963.000000px;}
.w0_c00191{width:963.359985px;}
.x0_c00191{left:0.000000px;}
.x3_c00191{left:95.700000px;}
.x7a_c00191{left:184.350000px;}
.x83_c00191{left:185.400000px;}
.x86_c00191{left:186.900000px;}
.x1_c00191{left:188.250000px;}
.x63_c00191{left:202.200000px;}
.x4e_c00191{left:203.550000px;}
.xb_c00191{left:204.750000px;}
.x8f_c00191{left:205.950000px;}
.x9e_c00191{left:216.300000px;}
.x3a_c00191{left:222.150000px;}
.x89_c00191{left:223.200000px;}
.xc_c00191{left:225.300000px;}
.x6c_c00191{left:226.350000px;}
.x7e_c00191{left:228.450000px;}
.x6d_c00191{left:229.950000px;}
.x97_c00191{left:231.150000px;}
.x11_c00191{left:234.000000px;}
.x92_c00191{left:236.100000px;}
.x5b_c00191{left:238.200000px;}
.x4f_c00191{left:239.550000px;}
.x64_c00191{left:241.050000px;}
.x3b_c00191{left:243.000000px;}
.x93_c00191{left:244.800000px;}
.x20_c00191{left:246.000000px;}
.x7b_c00191{left:247.350000px;}
.x82_c00191{left:248.550000px;}
.x42_c00191{left:252.000000px;}
.x30_c00191{left:254.550000px;}
.x9a_c00191{left:256.200000px;}
.x74_c00191{left:257.400000px;}
.x90_c00191{left:259.200000px;}
.x48_c00191{left:261.900000px;}
.x67_c00191{left:263.100000px;}
.x27_c00191{left:264.600000px;}
.x21_c00191{left:265.800000px;}
.x55_c00191{left:267.600000px;}
.x36_c00191{left:268.650000px;}
.x1a_c00191{left:270.450000px;}
.x49_c00191{left:271.950000px;}
.x77_c00191{left:273.750000px;}
.x4_c00191{left:274.950000px;}
.x95_c00191{left:276.000000px;}
.x3c_c00191{left:277.500000px;}
.x12_c00191{left:279.300000px;}
.xa1_c00191{left:280.500000px;}
.x5c_c00191{left:282.150000px;}
.x75_c00191{left:283.350000px;}
.xd_c00191{left:285.000000px;}
.x31_c00191{left:287.250000px;}
.x13_c00191{left:289.050000px;}
.x22_c00191{left:292.050000px;}
.x78_c00191{left:294.300000px;}
.x56_c00191{left:297.450000px;}
.x43_c00191{left:299.850000px;}
.x8d_c00191{left:301.650000px;}
.x68_c00191{left:303.450000px;}
.x14_c00191{left:305.550000px;}
.xa5_c00191{left:306.900000px;}
.x7f_c00191{left:307.950000px;}
.x1b_c00191{left:309.000000px;}
.x8a_c00191{left:311.850000px;}
.x9b_c00191{left:313.800000px;}
.xe_c00191{left:317.700000px;}
.x23_c00191{left:319.800000px;}
.x91_c00191{left:321.900000px;}
.x37_c00191{left:322.950000px;}
.x72_c00191{left:324.750000px;}
.x28_c00191{left:325.800000px;}
.x69_c00191{left:327.150000px;}
.x60_c00191{left:328.200000px;}
.x1c_c00191{left:329.850000px;}
.x5_c00191{left:332.250000px;}
.x9c_c00191{left:333.300000px;}
.x57_c00191{left:334.500000px;}
.x8b_c00191{left:336.150000px;}
.x4a_c00191{left:338.100000px;}
.x50_c00191{left:341.250000px;}
.x15_c00191{left:343.650000px;}
.x7c_c00191{left:344.850000px;}
.x29_c00191{left:345.900000px;}
.x6a_c00191{left:348.450000px;}
.xa6_c00191{left:349.800000px;}
.x3d_c00191{left:350.850000px;}
.x38_c00191{left:353.550000px;}
.x84_c00191{left:354.600000px;}
.x6e_c00191{left:356.250000px;}
.x3e_c00191{left:357.750000px;}
.xa7_c00191{left:358.950000px;}
.x1d_c00191{left:360.150000px;}
.x44_c00191{left:362.550000px;}
.x16_c00191{left:363.750000px;}
.x61_c00191{left:366.300000px;}
.x96_c00191{left:367.500000px;}
.x6f_c00191{left:369.150000px;}
.x51_c00191{left:371.100000px;}
.xa8_c00191{left:374.850000px;}
.x32_c00191{left:377.250000px;}
.x4b_c00191{left:378.450000px;}
.xa0_c00191{left:380.250000px;}
.x45_c00191{left:384.150000px;}
.x5d_c00191{left:385.500000px;}
.x24_c00191{left:390.300000px;}
.x39_c00191{left:391.650000px;}
.xf_c00191{left:393.300000px;}
.x6b_c00191{left:395.550000px;}
.x2a_c00191{left:397.050000px;}
.x6_c00191{left:398.100000px;}
.x76_c00191{left:399.150000px;}
.x70_c00191{left:401.550000px;}
.xa3_c00191{left:402.750000px;}
.x25_c00191{left:404.700000px;}
.x94_c00191{left:406.200000px;}
.x3f_c00191{left:407.850000px;}
.x8c_c00191{left:409.350000px;}
.x87_c00191{left:411.150000px;}
.x80_c00191{left:412.350000px;}
.x58_c00191{left:413.700000px;}
.x98_c00191{left:415.800000px;}
.x4c_c00191{left:417.000000px;}
.x52_c00191{left:418.200000px;}
.x7_c00191{left:419.700000px;}
.xa9_c00191{left:421.650000px;}
.x1e_c00191{left:423.450000px;}
.x79_c00191{left:425.100000px;}
.x2b_c00191{left:427.350000px;}
.x62_c00191{left:431.850000px;}
.x2_c00191{left:433.050000px;}
.x8_c00191{left:435.600000px;}
.x2c_c00191{left:436.650000px;}
.x5e_c00191{left:438.450000px;}
.x33_c00191{left:441.000000px;}
.x17_c00191{left:443.700000px;}
.x88_c00191{left:445.050000px;}
.x4d_c00191{left:446.850000px;}
.x10_c00191{left:448.800000px;}
.xa2_c00191{left:449.850000px;}
.x53_c00191{left:450.900000px;}
.x81_c00191{left:452.250000px;}
.x2d_c00191{left:453.900000px;}
.x65_c00191{left:456.300000px;}
.x5f_c00191{left:457.800000px;}
.x99_c00191{left:459.300000px;}
.x59_c00191{left:461.250000px;}
.x40_c00191{left:467.250000px;}
.x66_c00191{left:468.900000px;}
.x5a_c00191{left:469.950000px;}
.x54_c00191{left:471.000000px;}
.x46_c00191{left:472.200000px;}
.x8e_c00191{left:474.150000px;}
.x2e_c00191{left:475.500000px;}
.x34_c00191{left:476.700000px;}
.x18_c00191{left:478.200000px;}
.x26_c00191{left:481.350000px;}
.x9f_c00191{left:482.400000px;}
.x85_c00191{left:484.500000px;}
.x9_c00191{left:486.300000px;}
.x7d_c00191{left:487.950000px;}
.x1f_c00191{left:490.800000px;}
.x73_c00191{left:491.850000px;}
.x71_c00191{left:493.650000px;}
.x2f_c00191{left:495.300000px;}
.x9d_c00191{left:496.500000px;}
.x19_c00191{left:498.750000px;}
.x35_c00191{left:499.800000px;}
.xa4_c00191{left:503.550000px;}
.x41_c00191{left:506.850000px;}
.xa_c00191{left:507.900000px;}
.x47_c00191{left:510.300000px;}
.xdd_c00191{left:542.550000px;}
.xfe_c00191{left:543.600000px;}
.x121_c00191{left:557.700000px;}
.xd0_c00191{left:559.800000px;}
.xaa_c00191{left:561.300000px;}
.x11b_c00191{left:562.350000px;}
.x12c_c00191{left:563.850000px;}
.x12f_c00191{left:564.900000px;}
.x129_c00191{left:568.050000px;}
.xf5_c00191{left:570.000000px;}
.x10c_c00191{left:579.300000px;}
.xf8_c00191{left:581.550000px;}
.xe7_c00191{left:583.500000px;}
.xab_c00191{left:584.700000px;}
.x115_c00191{left:586.950000px;}
.x111_c00191{left:590.400000px;}
.x12d_c00191{left:591.900000px;}
.xcb_c00191{left:593.850000px;}
.xfb_c00191{left:600.000000px;}
.xac_c00191{left:601.200000px;}
.xee_c00191{left:602.250000px;}
.xd7_c00191{left:603.450000px;}
.xbc_c00191{left:605.550000px;}
.x100_c00191{left:607.950000px;}
.x11c_c00191{left:609.900000px;}
.xe9_c00191{left:611.250000px;}
.xe2_c00191{left:613.050000px;}
.xf2_c00191{left:617.850000px;}
.x103_c00191{left:618.900000px;}
.xbd_c00191{left:622.500000px;}
.xef_c00191{left:623.550000px;}
.xb4_c00191{left:625.650000px;}
.xe8_c00191{left:630.300000px;}
.xd1_c00191{left:633.600000px;}
.x112_c00191{left:637.950000px;}
.x118_c00191{left:639.300000px;}
.x10d_c00191{left:640.500000px;}
.xea_c00191{left:641.550000px;}
.x11e_c00191{left:643.800000px;}
.xd2_c00191{left:646.500000px;}
.xb5_c00191{left:648.750000px;}
.xf6_c00191{left:649.950000px;}
.xd8_c00191{left:651.000000px;}
.xfc_c00191{left:653.400000px;}
.x136_c00191{left:655.650000px;}
.x119_c00191{left:659.400000px;}
.xad_c00191{left:662.100000px;}
.x116_c00191{left:664.950000px;}
.x109_c00191{left:670.650000px;}
.x130_c00191{left:672.150000px;}
.xc6_c00191{left:673.800000px;}
.xbe_c00191{left:675.450000px;}
.x11d_c00191{left:676.800000px;}
.xae_c00191{left:678.600000px;}
.xe3_c00191{left:681.150000px;}
.x126_c00191{left:684.300000px;}
.xd3_c00191{left:686.100000px;}
.xcc_c00191{left:688.500000px;}
.x139_c00191{left:693.000000px;}
.x101_c00191{left:694.050000px;}
.xde_c00191{left:695.550000px;}
.xbf_c00191{left:697.800000px;}
.xfd_c00191{left:700.500000px;}
.x131_c00191{left:704.850000px;}
.xeb_c00191{left:707.100000px;}
.xb6_c00191{left:709.200000px;}
.xaf_c00191{left:710.250000px;}
.xc7_c00191{left:712.650000px;}
.xe4_c00191{left:716.400000px;}
.x122_c00191{left:719.400000px;}
.xdf_c00191{left:721.500000px;}
.xcd_c00191{left:723.450000px;}
.xb7_c00191{left:725.100000px;}
.xd9_c00191{left:728.850000px;}
.xec_c00191{left:730.800000px;}
.xc8_c00191{left:734.250000px;}
.xb0_c00191{left:735.750000px;}
.x135_c00191{left:738.000000px;}
.x132_c00191{left:741.600000px;}
.xc0_c00191{left:743.550000px;}
.x104_c00191{left:746.400000px;}
.xf9_c00191{left:747.900000px;}
.x12a_c00191{left:750.150000px;}
.x10a_c00191{left:751.200000px;}
.xce_c00191{left:752.550000px;}
.xf3_c00191{left:755.250000px;}
.x105_c00191{left:757.500000px;}
.x10e_c00191{left:758.850000px;}
.xc1_c00191{left:760.800000px;}
.xf0_c00191{left:762.900000px;}
.xed_c00191{left:765.300000px;}
.x12b_c00191{left:767.100000px;}
.xd4_c00191{left:769.350000px;}
.xff_c00191{left:771.450000px;}
.x10b_c00191{left:774.300000px;}
.x127_c00191{left:775.800000px;}
.xb1_c00191{left:777.150000px;}
.x11f_c00191{left:778.200000px;}
.x10f_c00191{left:779.400000px;}
.xc2_c00191{left:780.600000px;}
.xda_c00191{left:781.800000px;}
.xe5_c00191{left:784.050000px;}
.x11a_c00191{left:785.100000px;}
.xc9_c00191{left:787.500000px;}
.x123_c00191{left:788.550000px;}
.xb2_c00191{left:793.350000px;}
.x106_c00191{left:797.400000px;}
.xb8_c00191{left:798.900000px;}
.x137_c00191{left:800.100000px;}
.x133_c00191{left:801.450000px;}
.x117_c00191{left:802.950000px;}
.xe0_c00191{left:806.100000px;}
.x120_c00191{left:808.800000px;}
.xfa_c00191{left:810.600000px;}
.x107_c00191{left:813.300000px;}
.x12e_c00191{left:816.150000px;}
.x124_c00191{left:818.100000px;}
.xca_c00191{left:819.150000px;}
.x138_c00191{left:820.650000px;}
.xf7_c00191{left:821.700000px;}
.x113_c00191{left:822.750000px;}
.xb9_c00191{left:824.850000px;}
.xe1_c00191{left:826.200000px;}
.xcf_c00191{left:829.500000px;}
.xc3_c00191{left:831.300000px;}
.xba_c00191{left:834.600000px;}
.xd5_c00191{left:837.450000px;}
.xf1_c00191{left:840.300000px;}
.xc4_c00191{left:841.350000px;}
.x114_c00191{left:842.850000px;}
.xdb_c00191{left:845.100000px;}
.x102_c00191{left:846.750000px;}
.x108_c00191{left:849.600000px;}
.xe6_c00191{left:850.950000px;}
.xbb_c00191{left:852.600000px;}
.x134_c00191{left:854.400000px;}
.xc5_c00191{left:856.800000px;}
.xd6_c00191{left:858.300000px;}
.xf4_c00191{left:859.950000px;}
.xb3_c00191{left:861.450000px;}
.x110_c00191{left:863.250000px;}
.x128_c00191{left:864.600000px;}
.x125_c00191{left:865.650000px;}
.xdc_c00191{left:869.250000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws3_c00191{word-spacing:-8.148976pt;}
.ws0_c00191{word-spacing:-4.986496pt;}
.ws2_c00191{word-spacing:-4.093567pt;}
.ws1_c00191{word-spacing:-3.333333pt;}
.ws4_c00191{word-spacing:-0.886800pt;}
.ws5_c00191{word-spacing:0.000000pt;}
._1_c00191{width:22.703911pt;}
._0_c00191{width:28.187135pt;}
.fs2_c00191{font-size:26.666667pt;}
.fs6_c00191{font-size:42.666667pt;}
.fs7_c00191{font-size:48.000000pt;}
.fs5_c00191{font-size:53.333333pt;}
.fs4_c00191{font-size:58.666667pt;}
.fs3_c00191{font-size:64.000000pt;}
.fs1_c00191{font-size:69.333333pt;}
.fs0_c00191{font-size:74.666667pt;}
.y0_c00191{bottom:0.000000pt;}
.y2_c00191{bottom:125.066667pt;}
.y66_c00191{bottom:158.666667pt;}
.y65_c00191{bottom:174.133333pt;}
.y36_c00191{bottom:175.333333pt;}
.y64_c00191{bottom:186.266667pt;}
.y35_c00191{bottom:191.066667pt;}
.y63_c00191{bottom:199.333333pt;}
.y34_c00191{bottom:207.066667pt;}
.y62_c00191{bottom:212.133333pt;}
.y33_c00191{bottom:222.800000pt;}
.y61_c00191{bottom:224.933333pt;}
.y60_c00191{bottom:237.733333pt;}
.y32_c00191{bottom:239.066667pt;}
.y5f_c00191{bottom:250.933333pt;}
.y31_c00191{bottom:254.400000pt;}
.y5e_c00191{bottom:263.466667pt;}
.y30_c00191{bottom:274.266667pt;}
.y5d_c00191{bottom:276.533333pt;}
.y2f_c00191{bottom:286.666667pt;}
.y5c_c00191{bottom:289.333333pt;}
.y2e_c00191{bottom:299.466667pt;}
.y5b_c00191{bottom:301.466667pt;}
.y2d_c00191{bottom:310.666667pt;}
.y2c_c00191{bottom:323.200000pt;}
.y2b_c00191{bottom:339.200000pt;}
.y5a_c00191{bottom:342.400000pt;}
.y2a_c00191{bottom:355.200000pt;}
.y59_c00191{bottom:358.133333pt;}
.y29_c00191{bottom:371.200000pt;}
.y58_c00191{bottom:374.400000pt;}
.y28_c00191{bottom:386.933333pt;}
.y57_c00191{bottom:390.400000pt;}
.y56_c00191{bottom:406.133333pt;}
.y27_c00191{bottom:406.800000pt;}
.y55_c00191{bottom:422.400000pt;}
.y26_c00191{bottom:422.800000pt;}
.y54_c00191{bottom:437.733333pt;}
.y25_c00191{bottom:439.066667pt;}
.y24_c00191{bottom:454.400000pt;}
.y53_c00191{bottom:457.600000pt;}
.y23_c00191{bottom:470.666667pt;}
.y52_c00191{bottom:477.466667pt;}
.y22_c00191{bottom:486.666667pt;}
.y51_c00191{bottom:493.466667pt;}
.y21_c00191{bottom:505.866667pt;}
.y50_c00191{bottom:518.400000pt;}
.y20_c00191{bottom:533.733333pt;}
.y4f_c00191{bottom:537.866667pt;}
.y4e_c00191{bottom:547.866667pt;}
.y1f_c00191{bottom:549.733333pt;}
.y4d_c00191{bottom:552.666667pt;}
.y4c_c00191{bottom:565.733333pt;}
.y1e_c00191{bottom:569.600000pt;}
.y4b_c00191{bottom:581.466667pt;}
.y1d_c00191{bottom:585.600000pt;}
.y1c_c00191{bottom:601.333333pt;}
.y4a_c00191{bottom:612.533333pt;}
.y1b_c00191{bottom:617.333333pt;}
.y1a_c00191{bottom:636.400000pt;}
.y49_c00191{bottom:644.533333pt;}
.y19_c00191{bottom:652.400000pt;}
.y48_c00191{bottom:660.266667pt;}
.y18_c00191{bottom:668.133333pt;}
.y47_c00191{bottom:676.533333pt;}
.y17_c00191{bottom:684.133333pt;}
.y16_c00191{bottom:700.133333pt;}
.y46_c00191{bottom:707.600000pt;}
.y15_c00191{bottom:716.133333pt;}
.y45_c00191{bottom:723.600000pt;}
.y14_c00191{bottom:731.866667pt;}
.y44_c00191{bottom:739.866667pt;}
.y13_c00191{bottom:747.866667pt;}
.y12_c00191{bottom:763.866667pt;}
.y43_c00191{bottom:768.933333pt;}
.y11_c00191{bottom:779.600000pt;}
.y10_c00191{bottom:795.600000pt;}
.y42_c00191{bottom:799.066667pt;}
.yf_c00191{bottom:811.600000pt;}
.y41_c00191{bottom:815.066667pt;}
.ye_c00191{bottom:826.933333pt;}
.y40_c00191{bottom:838.933333pt;}
.yd_c00191{bottom:842.933333pt;}
.y3f_c00191{bottom:854.666667pt;}
.yc_c00191{bottom:858.933333pt;}
.y3e_c00191{bottom:870.666667pt;}
.yb_c00191{bottom:874.666667pt;}
.y3d_c00191{bottom:890.000000pt;}
.ya_c00191{bottom:890.400000pt;}
.y3c_c00191{bottom:906.266667pt;}
.y9_c00191{bottom:906.400000pt;}
.y8_c00191{bottom:922.133333pt;}
.y3b_c00191{bottom:922.266667pt;}
.y3a_c00191{bottom:938.000000pt;}
.y7_c00191{bottom:938.133333pt;}
.y6_c00191{bottom:953.866667pt;}
.y39_c00191{bottom:954.000000pt;}
.y5_c00191{bottom:969.600000pt;}
.y38_c00191{bottom:970.000000pt;}
.y4_c00191{bottom:985.600000pt;}
.y37_c00191{bottom:989.200000pt;}
.y3_c00191{bottom:1001.333333pt;}
.y1_c00191{bottom:1025.333333pt;}
.h3_c00191{height:26.666667pt;}
.h7_c00191{height:42.666667pt;}
.h8_c00191{height:48.000000pt;}
.h6_c00191{height:53.333333pt;}
.h5_c00191{height:58.666667pt;}
.h4_c00191{height:64.000000pt;}
.h2_c00191{height:69.333333pt;}
.h1_c00191{height:74.666667pt;}
.h0_c00191{height:1128.000000pt;}
.w1_c00191{width:856.000000pt;}
.w0_c00191{width:856.319987pt;}
.x0_c00191{left:0.000000pt;}
.x3_c00191{left:85.066667pt;}
.x7a_c00191{left:163.866667pt;}
.x83_c00191{left:164.800000pt;}
.x86_c00191{left:166.133333pt;}
.x1_c00191{left:167.333333pt;}
.x63_c00191{left:179.733333pt;}
.x4e_c00191{left:180.933333pt;}
.xb_c00191{left:182.000000pt;}
.x8f_c00191{left:183.066667pt;}
.x9e_c00191{left:192.266667pt;}
.x3a_c00191{left:197.466667pt;}
.x89_c00191{left:198.400000pt;}
.xc_c00191{left:200.266667pt;}
.x6c_c00191{left:201.200000pt;}
.x7e_c00191{left:203.066667pt;}
.x6d_c00191{left:204.400000pt;}
.x97_c00191{left:205.466667pt;}
.x11_c00191{left:208.000000pt;}
.x92_c00191{left:209.866667pt;}
.x5b_c00191{left:211.733333pt;}
.x4f_c00191{left:212.933333pt;}
.x64_c00191{left:214.266667pt;}
.x3b_c00191{left:216.000000pt;}
.x93_c00191{left:217.600000pt;}
.x20_c00191{left:218.666667pt;}
.x7b_c00191{left:219.866667pt;}
.x82_c00191{left:220.933333pt;}
.x42_c00191{left:224.000000pt;}
.x30_c00191{left:226.266667pt;}
.x9a_c00191{left:227.733333pt;}
.x74_c00191{left:228.800000pt;}
.x90_c00191{left:230.400000pt;}
.x48_c00191{left:232.800000pt;}
.x67_c00191{left:233.866667pt;}
.x27_c00191{left:235.200000pt;}
.x21_c00191{left:236.266667pt;}
.x55_c00191{left:237.866667pt;}
.x36_c00191{left:238.800000pt;}
.x1a_c00191{left:240.400000pt;}
.x49_c00191{left:241.733333pt;}
.x77_c00191{left:243.333333pt;}
.x4_c00191{left:244.400000pt;}
.x95_c00191{left:245.333333pt;}
.x3c_c00191{left:246.666667pt;}
.x12_c00191{left:248.266667pt;}
.xa1_c00191{left:249.333333pt;}
.x5c_c00191{left:250.800000pt;}
.x75_c00191{left:251.866667pt;}
.xd_c00191{left:253.333333pt;}
.x31_c00191{left:255.333333pt;}
.x13_c00191{left:256.933333pt;}
.x22_c00191{left:259.600000pt;}
.x78_c00191{left:261.600000pt;}
.x56_c00191{left:264.400000pt;}
.x43_c00191{left:266.533333pt;}
.x8d_c00191{left:268.133333pt;}
.x68_c00191{left:269.733333pt;}
.x14_c00191{left:271.600000pt;}
.xa5_c00191{left:272.800000pt;}
.x7f_c00191{left:273.733333pt;}
.x1b_c00191{left:274.666667pt;}
.x8a_c00191{left:277.200000pt;}
.x9b_c00191{left:278.933333pt;}
.xe_c00191{left:282.400000pt;}
.x23_c00191{left:284.266667pt;}
.x91_c00191{left:286.133333pt;}
.x37_c00191{left:287.066667pt;}
.x72_c00191{left:288.666667pt;}
.x28_c00191{left:289.600000pt;}
.x69_c00191{left:290.800000pt;}
.x60_c00191{left:291.733333pt;}
.x1c_c00191{left:293.200000pt;}
.x5_c00191{left:295.333333pt;}
.x9c_c00191{left:296.266667pt;}
.x57_c00191{left:297.333333pt;}
.x8b_c00191{left:298.800000pt;}
.x4a_c00191{left:300.533333pt;}
.x50_c00191{left:303.333333pt;}
.x15_c00191{left:305.466667pt;}
.x7c_c00191{left:306.533333pt;}
.x29_c00191{left:307.466667pt;}
.x6a_c00191{left:309.733333pt;}
.xa6_c00191{left:310.933333pt;}
.x3d_c00191{left:311.866667pt;}
.x38_c00191{left:314.266667pt;}
.x84_c00191{left:315.200000pt;}
.x6e_c00191{left:316.666667pt;}
.x3e_c00191{left:318.000000pt;}
.xa7_c00191{left:319.066667pt;}
.x1d_c00191{left:320.133333pt;}
.x44_c00191{left:322.266667pt;}
.x16_c00191{left:323.333333pt;}
.x61_c00191{left:325.600000pt;}
.x96_c00191{left:326.666667pt;}
.x6f_c00191{left:328.133333pt;}
.x51_c00191{left:329.866667pt;}
.xa8_c00191{left:333.200000pt;}
.x32_c00191{left:335.333333pt;}
.x4b_c00191{left:336.400000pt;}
.xa0_c00191{left:338.000000pt;}
.x45_c00191{left:341.466667pt;}
.x5d_c00191{left:342.666667pt;}
.x24_c00191{left:346.933333pt;}
.x39_c00191{left:348.133333pt;}
.xf_c00191{left:349.600000pt;}
.x6b_c00191{left:351.600000pt;}
.x2a_c00191{left:352.933333pt;}
.x6_c00191{left:353.866667pt;}
.x76_c00191{left:354.800000pt;}
.x70_c00191{left:356.933333pt;}
.xa3_c00191{left:358.000000pt;}
.x25_c00191{left:359.733333pt;}
.x94_c00191{left:361.066667pt;}
.x3f_c00191{left:362.533333pt;}
.x8c_c00191{left:363.866667pt;}
.x87_c00191{left:365.466667pt;}
.x80_c00191{left:366.533333pt;}
.x58_c00191{left:367.733333pt;}
.x98_c00191{left:369.600000pt;}
.x4c_c00191{left:370.666667pt;}
.x52_c00191{left:371.733333pt;}
.x7_c00191{left:373.066667pt;}
.xa9_c00191{left:374.800000pt;}
.x1e_c00191{left:376.400000pt;}
.x79_c00191{left:377.866667pt;}
.x2b_c00191{left:379.866667pt;}
.x62_c00191{left:383.866667pt;}
.x2_c00191{left:384.933333pt;}
.x8_c00191{left:387.200000pt;}
.x2c_c00191{left:388.133333pt;}
.x5e_c00191{left:389.733333pt;}
.x33_c00191{left:392.000000pt;}
.x17_c00191{left:394.400000pt;}
.x88_c00191{left:395.600000pt;}
.x4d_c00191{left:397.200000pt;}
.x10_c00191{left:398.933333pt;}
.xa2_c00191{left:399.866667pt;}
.x53_c00191{left:400.800000pt;}
.x81_c00191{left:402.000000pt;}
.x2d_c00191{left:403.466667pt;}
.x65_c00191{left:405.600000pt;}
.x5f_c00191{left:406.933333pt;}
.x99_c00191{left:408.266667pt;}
.x59_c00191{left:410.000000pt;}
.x40_c00191{left:415.333333pt;}
.x66_c00191{left:416.800000pt;}
.x5a_c00191{left:417.733333pt;}
.x54_c00191{left:418.666667pt;}
.x46_c00191{left:419.733333pt;}
.x8e_c00191{left:421.466667pt;}
.x2e_c00191{left:422.666667pt;}
.x34_c00191{left:423.733333pt;}
.x18_c00191{left:425.066667pt;}
.x26_c00191{left:427.866667pt;}
.x9f_c00191{left:428.800000pt;}
.x85_c00191{left:430.666667pt;}
.x9_c00191{left:432.266667pt;}
.x7d_c00191{left:433.733333pt;}
.x1f_c00191{left:436.266667pt;}
.x73_c00191{left:437.200000pt;}
.x71_c00191{left:438.800000pt;}
.x2f_c00191{left:440.266667pt;}
.x9d_c00191{left:441.333333pt;}
.x19_c00191{left:443.333333pt;}
.x35_c00191{left:444.266667pt;}
.xa4_c00191{left:447.600000pt;}
.x41_c00191{left:450.533333pt;}
.xa_c00191{left:451.466667pt;}
.x47_c00191{left:453.600000pt;}
.xdd_c00191{left:482.266667pt;}
.xfe_c00191{left:483.200000pt;}
.x121_c00191{left:495.733333pt;}
.xd0_c00191{left:497.600000pt;}
.xaa_c00191{left:498.933333pt;}
.x11b_c00191{left:499.866667pt;}
.x12c_c00191{left:501.200000pt;}
.x12f_c00191{left:502.133333pt;}
.x129_c00191{left:504.933333pt;}
.xf5_c00191{left:506.666667pt;}
.x10c_c00191{left:514.933333pt;}
.xf8_c00191{left:516.933333pt;}
.xe7_c00191{left:518.666667pt;}
.xab_c00191{left:519.733333pt;}
.x115_c00191{left:521.733333pt;}
.x111_c00191{left:524.800000pt;}
.x12d_c00191{left:526.133333pt;}
.xcb_c00191{left:527.866667pt;}
.xfb_c00191{left:533.333333pt;}
.xac_c00191{left:534.400000pt;}
.xee_c00191{left:535.333333pt;}
.xd7_c00191{left:536.400000pt;}
.xbc_c00191{left:538.266667pt;}
.x100_c00191{left:540.400000pt;}
.x11c_c00191{left:542.133333pt;}
.xe9_c00191{left:543.333333pt;}
.xe2_c00191{left:544.933333pt;}
.xf2_c00191{left:549.200000pt;}
.x103_c00191{left:550.133333pt;}
.xbd_c00191{left:553.333333pt;}
.xef_c00191{left:554.266667pt;}
.xb4_c00191{left:556.133333pt;}
.xe8_c00191{left:560.266667pt;}
.xd1_c00191{left:563.200000pt;}
.x112_c00191{left:567.066667pt;}
.x118_c00191{left:568.266667pt;}
.x10d_c00191{left:569.333333pt;}
.xea_c00191{left:570.266667pt;}
.x11e_c00191{left:572.266667pt;}
.xd2_c00191{left:574.666667pt;}
.xb5_c00191{left:576.666667pt;}
.xf6_c00191{left:577.733333pt;}
.xd8_c00191{left:578.666667pt;}
.xfc_c00191{left:580.800000pt;}
.x136_c00191{left:582.800000pt;}
.x119_c00191{left:586.133333pt;}
.xad_c00191{left:588.533333pt;}
.x116_c00191{left:591.066667pt;}
.x109_c00191{left:596.133333pt;}
.x130_c00191{left:597.466667pt;}
.xc6_c00191{left:598.933333pt;}
.xbe_c00191{left:600.400000pt;}
.x11d_c00191{left:601.600000pt;}
.xae_c00191{left:603.200000pt;}
.xe3_c00191{left:605.466667pt;}
.x126_c00191{left:608.266667pt;}
.xd3_c00191{left:609.866667pt;}
.xcc_c00191{left:612.000000pt;}
.x139_c00191{left:616.000000pt;}
.x101_c00191{left:616.933333pt;}
.xde_c00191{left:618.266667pt;}
.xbf_c00191{left:620.266667pt;}
.xfd_c00191{left:622.666667pt;}
.x131_c00191{left:626.533333pt;}
.xeb_c00191{left:628.533333pt;}
.xb6_c00191{left:630.400000pt;}
.xaf_c00191{left:631.333333pt;}
.xc7_c00191{left:633.466667pt;}
.xe4_c00191{left:636.800000pt;}
.x122_c00191{left:639.466667pt;}
.xdf_c00191{left:641.333333pt;}
.xcd_c00191{left:643.066667pt;}
.xb7_c00191{left:644.533333pt;}
.xd9_c00191{left:647.866667pt;}
.xec_c00191{left:649.600000pt;}
.xc8_c00191{left:652.666667pt;}
.xb0_c00191{left:654.000000pt;}
.x135_c00191{left:656.000000pt;}
.x132_c00191{left:659.200000pt;}
.xc0_c00191{left:660.933333pt;}
.x104_c00191{left:663.466667pt;}
.xf9_c00191{left:664.800000pt;}
.x12a_c00191{left:666.800000pt;}
.x10a_c00191{left:667.733333pt;}
.xce_c00191{left:668.933333pt;}
.xf3_c00191{left:671.333333pt;}
.x105_c00191{left:673.333333pt;}
.x10e_c00191{left:674.533333pt;}
.xc1_c00191{left:676.266667pt;}
.xf0_c00191{left:678.133333pt;}
.xed_c00191{left:680.266667pt;}
.x12b_c00191{left:681.866667pt;}
.xd4_c00191{left:683.866667pt;}
.xff_c00191{left:685.733333pt;}
.x10b_c00191{left:688.266667pt;}
.x127_c00191{left:689.600000pt;}
.xb1_c00191{left:690.800000pt;}
.x11f_c00191{left:691.733333pt;}
.x10f_c00191{left:692.800000pt;}
.xc2_c00191{left:693.866667pt;}
.xda_c00191{left:694.933333pt;}
.xe5_c00191{left:696.933333pt;}
.x11a_c00191{left:697.866667pt;}
.xc9_c00191{left:700.000000pt;}
.x123_c00191{left:700.933333pt;}
.xb2_c00191{left:705.200000pt;}
.x106_c00191{left:708.800000pt;}
.xb8_c00191{left:710.133333pt;}
.x137_c00191{left:711.200000pt;}
.x133_c00191{left:712.400000pt;}
.x117_c00191{left:713.733333pt;}
.xe0_c00191{left:716.533333pt;}
.x120_c00191{left:718.933333pt;}
.xfa_c00191{left:720.533333pt;}
.x107_c00191{left:722.933333pt;}
.x12e_c00191{left:725.466667pt;}
.x124_c00191{left:727.200000pt;}
.xca_c00191{left:728.133333pt;}
.x138_c00191{left:729.466667pt;}
.xf7_c00191{left:730.400000pt;}
.x113_c00191{left:731.333333pt;}
.xb9_c00191{left:733.200000pt;}
.xe1_c00191{left:734.400000pt;}
.xcf_c00191{left:737.333333pt;}
.xc3_c00191{left:738.933333pt;}
.xba_c00191{left:741.866667pt;}
.xd5_c00191{left:744.400000pt;}
.xf1_c00191{left:746.933333pt;}
.xc4_c00191{left:747.866667pt;}
.x114_c00191{left:749.200000pt;}
.xdb_c00191{left:751.200000pt;}
.x102_c00191{left:752.666667pt;}
.x108_c00191{left:755.200000pt;}
.xe6_c00191{left:756.400000pt;}
.xbb_c00191{left:757.866667pt;}
.x134_c00191{left:759.466667pt;}
.xc5_c00191{left:761.600000pt;}
.xd6_c00191{left:762.933333pt;}
.xf4_c00191{left:764.400000pt;}
.xb3_c00191{left:765.733333pt;}
.x110_c00191{left:767.333333pt;}
.x128_c00191{left:768.533333pt;}
.x125_c00191{left:769.466667pt;}
.xdc_c00191{left:772.666667pt;}
}





/* 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_c00192 {
    display:none;
  }
  .loading-indicator_c00192.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00192 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_c00192 { 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_c00192" -> "#page-container .classname_c00192")
 */
.pf_c00192 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00192 { /* 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_c00192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00192 { /* 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_c00192 { /* 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_c00192 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00192 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00192 {overflow:visible;}
  }
}
.c_c00192 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00192 { /* 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_c00192:after { /* webkit #35443 */
  content: '';
}
.t_c00192:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00192 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 */
}
.__c00192 { /* 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_c00192 { /* info for Javascript */
  display:none;
}
.l_c00192 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00192 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00192 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00192: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_c00192 {
    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_c00192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00192.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_c00192 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00192;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00192{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00192{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00192{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mae_c00192{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00192{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mad_c00192{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mab_c00192{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00192{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00192{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00192{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00192{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00192{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00192{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00192{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00192{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00192{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.mac_c00192{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mea_c00192{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00192{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m83_c00192{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00192{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00192{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00192{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00192{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m56_c00192{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00192{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m48_c00192{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00192{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00192{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00192{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m51_c00192{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mde_c00192{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m29_c00192{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md8_c00192{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00192{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m18_c00192{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00192{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00192{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mce_c00192{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00192{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00192{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00192{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m81_c00192{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m71_c00192{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m96_c00192{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00192{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.med_c00192{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00192{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m38_c00192{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00192{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m10_c00192{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00192{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m40_c00192{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00192{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m59_c00192{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00192{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.me7_c00192{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00192{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00192{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m62_c00192{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00192{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me3_c00192{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m90_c00192{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00192{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00192{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00192{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00192{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m97_c00192{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00192{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00192{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00192{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00192{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m24_c00192{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00192{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00192{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m19_c00192{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me4_c00192{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m92_c00192{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m42_c00192{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m46_c00192{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md3_c00192{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00192{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m11_c00192{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m98_c00192{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m70_c00192{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me1_c00192{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m72_c00192{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m54_c00192{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00192{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m43_c00192{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m50_c00192{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m55_c00192{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00192{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m49_c00192{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00192{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00192{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m65_c00192{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me_c00192{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mca_c00192{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m28_c00192{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7_c00192{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mda_c00192{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00192{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m17_c00192{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md5_c00192{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me0_c00192{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m66_c00192{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00192{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m61_c00192{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m67_c00192{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00192{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m21_c00192{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m79_c00192{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5_c00192{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m75_c00192{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m30_c00192{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00192{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00192{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00192{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mec_c00192{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00192{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m37_c00192{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m86_c00192{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md6_c00192{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m45_c00192{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m58_c00192{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00192{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3_c00192{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.meb_c00192{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m76_c00192{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00192{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00192{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m88_c00192{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md0_c00192{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m22_c00192{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00192{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00192{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00192{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00192{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00192{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.ma_c00192{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me5_c00192{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00192{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m25_c00192{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md9_c00192{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00192{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00192{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m78_c00192{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00192{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m57_c00192{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00192{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.me6_c00192{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me2_c00192{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m68_c00192{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m6_c00192{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me9_c00192{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mf_c00192{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m60_c00192{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m23_c00192{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m16_c00192{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00192{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00192{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m44_c00192{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m52_c00192{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m20_c00192{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m69_c00192{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m53_c00192{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00192{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m77_c00192{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m14_c00192{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00192{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00192{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00192{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00192{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00192{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00192{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m33_c00192{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mee_c00192{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m63_c00192{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00192{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me8_c00192{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md1_c00192{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m8_c00192{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m27_c00192{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4_c00192{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00192{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1_c00192{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc_c00192{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m12_c00192{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00192{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.md7_c00192{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mef_c00192{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m47_c00192{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00192{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m41_c00192{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m15_c00192{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md_c00192{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m87_c00192{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00192{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m35_c00192{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00192{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00192{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m95_c00192{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md4_c00192{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb_c00192{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00192{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00192{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m74_c00192{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m89_c00192{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00192{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m34_c00192{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00192{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m36_c00192{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m85_c00192{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mba_c00192{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m102_c00192{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00192{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00192{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m32_c00192{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m26_c00192{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00192{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00192{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m39_c00192{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00192{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.maf_c00192{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00192{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m31_c00192{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m73_c00192{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m9_c00192{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m101_c00192{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00192{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m64_c00192{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00192{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00192{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mff_c00192{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m94_c00192{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md2_c00192{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00192{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m99_c00192{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00192{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00192{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m91_c00192{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m100_c00192{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m80_c00192{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00192{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.maa_c00192{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00192{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m13_c00192{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00192{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00192{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m103_c00192{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m82_c00192{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00192{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m84_c00192{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.m93_c00192{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00192{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00192{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m0_c00192{transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00192{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00192{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls1_c00192{letter-spacing:0.000000px;}
.ls0_c00192{letter-spacing:90.000000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{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__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00192{word-spacing:-120.000000px;}
.ws3_c00192{word-spacing:-8.292683px;}
.wsf_c00192{word-spacing:-8.099652px;}
.wse_c00192{word-spacing:-7.156425px;}
.ws6_c00192{word-spacing:-6.578947px;}
.ws1_c00192{word-spacing:-1.250000px;}
.ws0_c00192{word-spacing:-0.146132px;}
.ws10_c00192{word-spacing:0.000000px;}
.ws2_c00192{word-spacing:5.340974px;}
.wsc_c00192{word-spacing:6.537994px;}
.ws5_c00192{word-spacing:11.184211px;}
.ws7_c00192{word-spacing:25.714286px;}
.ws4_c00192{word-spacing:27.500000px;}
.wsd_c00192{word-spacing:35.833333px;}
.ws8_c00192{word-spacing:40.000000px;}
.ws9_c00192{word-spacing:60.000000px;}
.wsb_c00192{word-spacing:73.333333px;}
._0_c00192{margin-left:-90.000000px;}
._1_c00192{width:70.000000px;}
.fc0_c00192{color:transparent;}
.fs6_c00192{font-size:24.000000px;}
.fs5_c00192{font-size:30.000000px;}
.fs1_c00192{font-size:48.000000px;}
.fs7_c00192{font-size:54.000000px;}
.fs3_c00192{font-size:60.000000px;}
.fs2_c00192{font-size:66.000000px;}
.fs4_c00192{font-size:72.000000px;}
.fs0_c00192{font-size:78.000000px;}
.y0_c00192{bottom:0.000000px;}
.y3_c00192{bottom:64.500000px;}
.y6b_c00192{bottom:165.900000px;}
.y34_c00192{bottom:181.800000px;}
.y6a_c00192{bottom:184.350000px;}
.y33_c00192{bottom:199.500000px;}
.y69_c00192{bottom:205.050000px;}
.y32_c00192{bottom:212.400000px;}
.y31_c00192{bottom:218.100000px;}
.y68_c00192{bottom:224.550000px;}
.y67_c00192{bottom:241.800000px;}
.y30_c00192{bottom:243.150000px;}
.y66_c00192{bottom:259.800000px;}
.y2f_c00192{bottom:262.200000px;}
.y65_c00192{bottom:277.500000px;}
.y2e_c00192{bottom:279.900000px;}
.y64_c00192{bottom:295.500000px;}
.y2d_c00192{bottom:297.600000px;}
.y63_c00192{bottom:313.200000px;}
.y2c_c00192{bottom:315.300000px;}
.y62_c00192{bottom:330.900000px;}
.y2b_c00192{bottom:342.000000px;}
.y61_c00192{bottom:349.200000px;}
.y60_c00192{bottom:369.300000px;}
.y29_c00192{bottom:376.050000px;}
.y5f_c00192{bottom:384.750000px;}
.y28_c00192{bottom:395.550000px;}
.y5e_c00192{bottom:402.750000px;}
.y27_c00192{bottom:413.550000px;}
.y5d_c00192{bottom:420.450000px;}
.y26_c00192{bottom:431.250000px;}
.y5c_c00192{bottom:438.450000px;}
.y25_c00192{bottom:449.250000px;}
.y5b_c00192{bottom:455.700000px;}
.y2a_c00192{bottom:462.300000px;}
.y24_c00192{bottom:467.250000px;}
.y5a_c00192{bottom:476.250000px;}
.y23_c00192{bottom:485.250000px;}
.y59_c00192{bottom:495.300000px;}
.y22_c00192{bottom:503.250000px;}
.y58_c00192{bottom:513.300000px;}
.y57_c00192{bottom:531.000000px;}
.y21_c00192{bottom:535.950000px;}
.y56_c00192{bottom:549.000000px;}
.y20_c00192{bottom:554.700000px;}
.y55_c00192{bottom:566.700000px;}
.y1f_c00192{bottom:572.700000px;}
.y54_c00192{bottom:584.400000px;}
.y1e_c00192{bottom:591.000000px;}
.y53_c00192{bottom:602.400000px;}
.y1d_c00192{bottom:608.700000px;}
.y52_c00192{bottom:622.200000px;}
.y1c_c00192{bottom:634.200000px;}
.y51_c00192{bottom:638.100000px;}
.y1b_c00192{bottom:653.250000px;}
.y50_c00192{bottom:655.800000px;}
.y1a_c00192{bottom:670.950000px;}
.y4f_c00192{bottom:673.500000px;}
.y19_c00192{bottom:688.950000px;}
.y4e_c00192{bottom:691.500000px;}
.y18_c00192{bottom:706.650000px;}
.y4d_c00192{bottom:709.200000px;}
.y17_c00192{bottom:724.650000px;}
.y4c_c00192{bottom:726.900000px;}
.y4b_c00192{bottom:744.900000px;}
.y16_c00192{bottom:749.850000px;}
.y4a_c00192{bottom:762.600000px;}
.y15_c00192{bottom:771.450000px;}
.y49_c00192{bottom:780.300000px;}
.y14_c00192{bottom:793.800000px;}
.y48_c00192{bottom:798.000000px;}
.y13_c00192{bottom:812.850000px;}
.y47_c00192{bottom:816.000000px;}
.y12_c00192{bottom:833.700000px;}
.y46_c00192{bottom:851.400000px;}
.y11_c00192{bottom:852.000000px;}
.y45_c00192{bottom:869.400000px;}
.y10_c00192{bottom:870.000000px;}
.y44_c00192{bottom:887.100000px;}
.yf_c00192{bottom:887.700000px;}
.y43_c00192{bottom:905.100000px;}
.ye_c00192{bottom:908.700000px;}
.y42_c00192{bottom:926.250000px;}
.yd_c00192{bottom:926.700000px;}
.y41_c00192{bottom:939.150000px;}
.yc_c00192{bottom:945.000000px;}
.y40_c00192{bottom:954.600000px;}
.yb_c00192{bottom:965.850000px;}
.y3f_c00192{bottom:967.950000px;}
.y3e_c00192{bottom:983.400000px;}
.ya_c00192{bottom:988.500000px;}
.y3d_c00192{bottom:996.300000px;}
.y9_c00192{bottom:1010.550000px;}
.y3c_c00192{bottom:1012.200000px;}
.y3b_c00192{bottom:1025.100000px;}
.y8_c00192{bottom:1029.300000px;}
.y3a_c00192{bottom:1041.300000px;}
.y7_c00192{bottom:1051.200000px;}
.y39_c00192{bottom:1055.400000px;}
.y6_c00192{bottom:1068.900000px;}
.y38_c00192{bottom:1069.500000px;}
.y37_c00192{bottom:1082.850000px;}
.y5_c00192{bottom:1090.500000px;}
.y36_c00192{bottom:1098.750000px;}
.y4_c00192{bottom:1108.800000px;}
.y35_c00192{bottom:1113.900000px;}
.y1_c00192{bottom:1136.100000px;}
.y2_c00192{bottom:1268.250000px;}
.h8_c00192{height:24.000000px;}
.h7_c00192{height:30.000000px;}
.h3_c00192{height:48.000000px;}
.h9_c00192{height:54.000000px;}
.h5_c00192{height:60.000000px;}
.h4_c00192{height:66.000000px;}
.h6_c00192{height:72.000000px;}
.h2_c00192{height:78.000000px;}
.h0_c00192{height:1268.640015px;}
.h1_c00192{height:1269.000000px;}
.w1_c00192{width:963.000000px;}
.w0_c00192{width:963.359985px;}
.x0_c00192{left:0.000000px;}
.x3_c00192{left:2.850000px;}
.x85_c00192{left:65.850000px;}
.x86_c00192{left:92.850000px;}
.x46_c00192{left:95.700000px;}
.x62_c00192{left:97.200000px;}
.x87_c00192{left:100.050000px;}
.x4_c00192{left:110.550000px;}
.x23_c00192{left:112.500000px;}
.x37_c00192{left:114.450000px;}
.x65_c00192{left:115.800000px;}
.x71_c00192{left:116.850000px;}
.x92_c00192{left:118.500000px;}
.x88_c00192{left:120.150000px;}
.x6f_c00192{left:125.700000px;}
.x9b_c00192{left:127.200000px;}
.xf_c00192{left:130.350000px;}
.x1b_c00192{left:131.400000px;}
.x2e_c00192{left:133.050000px;}
.x4b_c00192{left:135.450000px;}
.x8d_c00192{left:136.800000px;}
.x7d_c00192{left:138.150000px;}
.x51_c00192{left:139.650000px;}
.x89_c00192{left:142.500000px;}
.x99_c00192{left:143.700000px;}
.x45_c00192{left:145.050000px;}
.x2b_c00192{left:146.400000px;}
.x60_c00192{left:147.900000px;}
.x3b_c00192{left:150.150000px;}
.x9d_c00192{left:151.350000px;}
.x14_c00192{left:152.700000px;}
.x96_c00192{left:154.050000px;}
.x52_c00192{left:156.900000px;}
.x47_c00192{left:158.700000px;}
.x93_c00192{left:159.900000px;}
.x72_c00192{left:161.100000px;}
.x56_c00192{left:162.600000px;}
.x1c_c00192{left:164.100000px;}
.x79_c00192{left:165.450000px;}
.x80_c00192{left:166.950000px;}
.x3f_c00192{left:170.250000px;}
.xa_c00192{left:171.750000px;}
.x15_c00192{left:173.550000px;}
.x41_c00192{left:174.900000px;}
.x30_c00192{left:176.100000px;}
.x2f_c00192{left:178.050000px;}
.x8a_c00192{left:180.600000px;}
.x28_c00192{left:182.250000px;}
.x24_c00192{left:184.800000px;}
.x57_c00192{left:188.850000px;}
.x63_c00192{left:192.150000px;}
.x9c_c00192{left:193.800000px;}
.x6a_c00192{left:195.600000px;}
.x31_c00192{left:197.700000px;}
.x29_c00192{left:199.950000px;}
.x5_c00192{left:202.350000px;}
.xb_c00192{left:203.850000px;}
.x1d_c00192{left:205.200000px;}
.x2c_c00192{left:206.850000px;}
.x38_c00192{left:208.800000px;}
.x5b_c00192{left:211.200000px;}
.x58_c00192{left:212.550000px;}
.x16_c00192{left:216.000000px;}
.x66_c00192{left:218.100000px;}
.x61_c00192{left:219.600000px;}
.x7a_c00192{left:222.000000px;}
.xc_c00192{left:225.450000px;}
.x6_c00192{left:226.500000px;}
.x8e_c00192{left:228.000000px;}
.x7e_c00192{left:229.950000px;}
.x3c_c00192{left:231.150000px;}
.x5c_c00192{left:232.500000px;}
.x10_c00192{left:234.450000px;}
.x81_c00192{left:235.650000px;}
.x40_c00192{left:237.150000px;}
.x25_c00192{left:239.850000px;}
.x94_c00192{left:241.650000px;}
.x73_c00192{left:243.150000px;}
.x8b_c00192{left:244.650000px;}
.x9f_c00192{left:245.850000px;}
.x32_c00192{left:247.050000px;}
.x42_c00192{left:249.450000px;}
.x11_c00192{left:250.650000px;}
.x1e_c00192{left:253.500000px;}
.x9e_c00192{left:255.450000px;}
.x8f_c00192{left:257.850000px;}
.xd_c00192{left:259.350000px;}
.x1f_c00192{left:262.500000px;}
.x17_c00192{left:267.450000px;}
.x5d_c00192{left:268.800000px;}
.x95_c00192{left:270.750000px;}
.x6b_c00192{left:273.300000px;}
.x67_c00192{left:277.050000px;}
.x5e_c00192{left:278.100000px;}
.x82_c00192{left:279.900000px;}
.x53_c00192{left:280.950000px;}
.x4c_c00192{left:282.300000px;}
.x90_c00192{left:286.650000px;}
.x7_c00192{left:287.700000px;}
.x26_c00192{left:290.550000px;}
.x12_c00192{left:292.050000px;}
.x3d_c00192{left:294.150000px;}
.x2d_c00192{left:295.800000px;}
.x6c_c00192{left:300.000000px;}
.xe_c00192{left:302.250000px;}
.x4d_c00192{left:304.200000px;}
.x27_c00192{left:307.050000px;}
.x59_c00192{left:308.700000px;}
.x48_c00192{left:310.950000px;}
.x74_c00192{left:314.850000px;}
.x20_c00192{left:316.500000px;}
.x43_c00192{left:317.850000px;}
.x33_c00192{left:319.350000px;}
.x3e_c00192{left:321.900000px;}
.x76_c00192{left:323.850000px;}
.x54_c00192{left:325.650000px;}
.x18_c00192{left:326.850000px;}
.x68_c00192{left:329.250000px;}
.x70_c00192{left:331.350000px;}
.x1_c00192{left:333.750000px;}
.x55_c00192{left:335.400000px;}
.x97_c00192{left:336.600000px;}
.x49_c00192{left:337.950000px;}
.x84_c00192{left:342.300000px;}
.x6d_c00192{left:347.850000px;}
.x19_c00192{left:349.500000px;}
.x34_c00192{left:352.050000px;}
.x8_c00192{left:354.000000px;}
.x4e_c00192{left:356.400000px;}
.x8c_c00192{left:360.300000px;}
.x6e_c00192{left:363.300000px;}
.x21_c00192{left:364.800000px;}
.x5f_c00192{left:367.500000px;}
.x9_c00192{left:368.700000px;}
.x1a_c00192{left:370.350000px;}
.x98_c00192{left:372.600000px;}
.x91_c00192{left:373.800000px;}
.x35_c00192{left:375.450000px;}
.x13_c00192{left:380.550000px;}
.x7b_c00192{left:382.200000px;}
.x22_c00192{left:384.600000px;}
.x64_c00192{left:386.850000px;}
.x39_c00192{left:389.100000px;}
.x4f_c00192{left:391.350000px;}
.x83_c00192{left:392.550000px;}
.x77_c00192{left:394.050000px;}
.x5a_c00192{left:398.100000px;}
.x7f_c00192{left:400.950000px;}
.x44_c00192{left:402.450000px;}
.x9a_c00192{left:403.650000px;}
.x4a_c00192{left:406.650000px;}
.x75_c00192{left:408.150000px;}
.x3a_c00192{left:409.650000px;}
.x2a_c00192{left:412.050000px;}
.x50_c00192{left:414.450000px;}
.x36_c00192{left:419.700000px;}
.x7c_c00192{left:423.600000px;}
.x69_c00192{left:426.750000px;}
.x78_c00192{left:428.550000px;}
.xa0_c00192{left:448.950000px;}
.xd5_c00192{left:451.800000px;}
.x125_c00192{left:453.900000px;}
.x140_c00192{left:455.100000px;}
.xaa_c00192{left:463.950000px;}
.xc7_c00192{left:465.450000px;}
.xd7_c00192{left:469.800000px;}
.x104_c00192{left:471.000000px;}
.x133_c00192{left:472.050000px;}
.x13b_c00192{left:473.250000px;}
.xb4_c00192{left:478.800000px;}
.xf1_c00192{left:484.650000px;}
.xec_c00192{left:488.850000px;}
.xdd_c00192{left:490.050000px;}
.xab_c00192{left:493.050000px;}
.x11d_c00192{left:497.850000px;}
.xb5_c00192{left:501.150000px;}
.x11c_c00192{left:504.300000px;}
.xde_c00192{left:506.250000px;}
.xac_c00192{left:507.450000px;}
.xa1_c00192{left:509.100000px;}
.xd8_c00192{left:510.450000px;}
.x113_c00192{left:512.550000px;}
.x13c_c00192{left:514.500000px;}
.x108_c00192{left:517.350000px;}
.xcf_c00192{left:519.450000px;}
.xb6_c00192{left:520.650000px;}
.x116_c00192{left:521.700000px;}
.xfa_c00192{left:522.900000px;}
.xfc_c00192{left:526.350000px;}
.x130_c00192{left:527.850000px;}
.xf2_c00192{left:530.100000px;}
.x114_c00192{left:532.050000px;}
.xd0_c00192{left:534.150000px;}
.xb7_c00192{left:535.800000px;}
.xe7_c00192{left:537.300000px;}
.xd9_c00192{left:540.750000px;}
.xbd_c00192{left:541.800000px;}
.xd4_c00192{left:543.600000px;}
.xcb_c00192{left:544.950000px;}
.x12a_c00192{left:546.750000px;}
.xed_c00192{left:547.800000px;}
.xfd_c00192{left:549.450000px;}
.x10e_c00192{left:551.850000px;}
.xf3_c00192{left:553.200000px;}
.x12b_c00192{left:555.450000px;}
.xad_c00192{left:558.450000px;}
.xe3_c00192{left:560.850000px;}
.xdf_c00192{left:562.050000px;}
.xcc_c00192{left:564.750000px;}
.x11f_c00192{left:565.950000px;}
.xb8_c00192{left:569.250000px;}
.x117_c00192{left:571.800000px;}
.xa2_c00192{left:573.150000px;}
.x13d_c00192{left:574.200000px;}
.xda_c00192{left:575.250000px;}
.x100_c00192{left:576.750000px;}
.xd1_c00192{left:580.950000px;}
.x10f_c00192{left:584.250000px;}
.x118_c00192{left:586.950000px;}
.x131_c00192{left:588.000000px;}
.x120_c00192{left:589.050000px;}
.x137_c00192{left:591.600000px;}
.xa3_c00192{left:593.700000px;}
.xfb_c00192{left:595.650000px;}
.x12c_c00192{left:597.150000px;}
.xdb_c00192{left:598.350000px;}
.x109_c00192{left:599.700000px;}
.x12f_c00192{left:600.900000px;}
.x128_c00192{left:602.100000px;}
.xc8_c00192{left:603.300000px;}
.x105_c00192{left:604.950000px;}
.xae_c00192{left:606.300000px;}
.x139_c00192{left:607.650000px;}
.xbe_c00192{left:609.450000px;}
.x138_c00192{left:610.800000px;}
.xb9_c00192{left:612.150000px;}
.xf6_c00192{left:614.400000px;}
.xc6_c00192{left:616.200000px;}
.x12d_c00192{left:617.250000px;}
.x122_c00192{left:621.900000px;}
.xbf_c00192{left:623.550000px;}
.xf4_c00192{left:625.500000px;}
.xd6_c00192{left:626.850000px;}
.x132_c00192{left:628.350000px;}
.xaf_c00192{left:630.450000px;}
.xa4_c00192{left:631.500000px;}
.x11e_c00192{left:633.300000px;}
.xba_c00192{left:634.800000px;}
.xe0_c00192{left:636.150000px;}
.xc0_c00192{left:638.250000px;}
.x101_c00192{left:640.500000px;}
.x106_c00192{left:641.550000px;}
.x134_c00192{left:643.500000px;}
.xd2_c00192{left:646.350000px;}
.xc9_c00192{left:648.600000px;}
.x10a_c00192{left:651.600000px;}
.xb0_c00192{left:653.100000px;}
.x126_c00192{left:654.750000px;}
.xee_c00192{left:656.250000px;}
.xbb_c00192{left:659.250000px;}
.xdc_c00192{left:661.350000px;}
.xf7_c00192{left:662.700000px;}
.xca_c00192{left:664.050000px;}
.x110_c00192{left:665.850000px;}
.xc1_c00192{left:667.050000px;}
.x115_c00192{left:669.000000px;}
.xa5_c00192{left:670.800000px;}
.xcd_c00192{left:672.750000px;}
.xc2_c00192{left:674.250000px;}
.x12e_c00192{left:675.900000px;}
.x123_c00192{left:676.950000px;}
.xbc_c00192{left:678.000000px;}
.xa6_c00192{left:679.500000px;}
.xc3_c00192{left:681.450000px;}
.x111_c00192{left:682.800000px;}
.x141_c00192{left:685.200000px;}
.xfe_c00192{left:686.400000px;}
.xc4_c00192{left:688.650000px;}
.x11a_c00192{left:689.700000px;}
.xe4_c00192{left:690.750000px;}
.x10b_c00192{left:693.000000px;}
.xe8_c00192{left:696.000000px;}
.xf8_c00192{left:697.200000px;}
.x112_c00192{left:698.250000px;}
.xef_c00192{left:700.200000px;}
.xe5_c00192{left:703.350000px;}
.x121_c00192{left:705.000000px;}
.xa7_c00192{left:706.200000px;}
.x102_c00192{left:708.900000px;}
.x11b_c00192{left:711.300000px;}
.x142_c00192{left:712.500000px;}
.xc5_c00192{left:715.350000px;}
.xb1_c00192{left:717.150000px;}
.xf0_c00192{left:718.950000px;}
.xf5_c00192{left:721.950000px;}
.xe9_c00192{left:724.050000px;}
.xe1_c00192{left:726.450000px;}
.x103_c00192{left:729.450000px;}
.xff_c00192{left:732.150000px;}
.x13e_c00192{left:733.350000px;}
.x135_c00192{left:734.550000px;}
.xa8_c00192{left:736.800000px;}
.x129_c00192{left:738.750000px;}
.x10c_c00192{left:739.800000px;}
.x127_c00192{left:740.850000px;}
.xea_c00192{left:743.100000px;}
.xb2_c00192{left:744.900000px;}
.xe2_c00192{left:746.250000px;}
.x119_c00192{left:752.100000px;}
.x136_c00192{left:754.650000px;}
.x13a_c00192{left:756.150000px;}
.xe6_c00192{left:757.350000px;}
.x2_c00192{left:758.850000px;}
.x124_c00192{left:760.800000px;}
.xf9_c00192{left:764.850000px;}
.xd3_c00192{left:767.250000px;}
.x13f_c00192{left:769.200000px;}
.xa9_c00192{left:770.250000px;}
.xb3_c00192{left:772.650000px;}
.xce_c00192{left:774.750000px;}
.x10d_c00192{left:777.900000px;}
.xeb_c00192{left:783.750000px;}
.x107_c00192{left:784.800000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls1_c00192{letter-spacing:0.000000pt;}
.ls0_c00192{letter-spacing:80.000000pt;}
.wsa_c00192{word-spacing:-106.666667pt;}
.ws3_c00192{word-spacing:-7.371274pt;}
.wsf_c00192{word-spacing:-7.199691pt;}
.wse_c00192{word-spacing:-6.361266pt;}
.ws6_c00192{word-spacing:-5.847953pt;}
.ws1_c00192{word-spacing:-1.111111pt;}
.ws0_c00192{word-spacing:-0.129895pt;}
.ws10_c00192{word-spacing:0.000000pt;}
.ws2_c00192{word-spacing:4.747533pt;}
.wsc_c00192{word-spacing:5.811550pt;}
.ws5_c00192{word-spacing:9.941520pt;}
.ws7_c00192{word-spacing:22.857143pt;}
.ws4_c00192{word-spacing:24.444444pt;}
.wsd_c00192{word-spacing:31.851852pt;}
.ws8_c00192{word-spacing:35.555556pt;}
.ws9_c00192{word-spacing:53.333333pt;}
.wsb_c00192{word-spacing:65.185185pt;}
._0_c00192{margin-left:-80.000000pt;}
._1_c00192{width:62.222222pt;}
.fs6_c00192{font-size:21.333333pt;}
.fs5_c00192{font-size:26.666667pt;}
.fs1_c00192{font-size:42.666667pt;}
.fs7_c00192{font-size:48.000000pt;}
.fs3_c00192{font-size:53.333333pt;}
.fs2_c00192{font-size:58.666667pt;}
.fs4_c00192{font-size:64.000000pt;}
.fs0_c00192{font-size:69.333333pt;}
.y0_c00192{bottom:0.000000pt;}
.y3_c00192{bottom:57.333333pt;}
.y6b_c00192{bottom:147.466667pt;}
.y34_c00192{bottom:161.600000pt;}
.y6a_c00192{bottom:163.866667pt;}
.y33_c00192{bottom:177.333333pt;}
.y69_c00192{bottom:182.266667pt;}
.y32_c00192{bottom:188.800000pt;}
.y31_c00192{bottom:193.866667pt;}
.y68_c00192{bottom:199.600000pt;}
.y67_c00192{bottom:214.933333pt;}
.y30_c00192{bottom:216.133333pt;}
.y66_c00192{bottom:230.933333pt;}
.y2f_c00192{bottom:233.066667pt;}
.y65_c00192{bottom:246.666667pt;}
.y2e_c00192{bottom:248.800000pt;}
.y64_c00192{bottom:262.666667pt;}
.y2d_c00192{bottom:264.533333pt;}
.y63_c00192{bottom:278.400000pt;}
.y2c_c00192{bottom:280.266667pt;}
.y62_c00192{bottom:294.133333pt;}
.y2b_c00192{bottom:304.000000pt;}
.y61_c00192{bottom:310.400000pt;}
.y60_c00192{bottom:328.266667pt;}
.y29_c00192{bottom:334.266667pt;}
.y5f_c00192{bottom:342.000000pt;}
.y28_c00192{bottom:351.600000pt;}
.y5e_c00192{bottom:358.000000pt;}
.y27_c00192{bottom:367.600000pt;}
.y5d_c00192{bottom:373.733333pt;}
.y26_c00192{bottom:383.333333pt;}
.y5c_c00192{bottom:389.733333pt;}
.y25_c00192{bottom:399.333333pt;}
.y5b_c00192{bottom:405.066667pt;}
.y2a_c00192{bottom:410.933333pt;}
.y24_c00192{bottom:415.333333pt;}
.y5a_c00192{bottom:423.333333pt;}
.y23_c00192{bottom:431.333333pt;}
.y59_c00192{bottom:440.266667pt;}
.y22_c00192{bottom:447.333333pt;}
.y58_c00192{bottom:456.266667pt;}
.y57_c00192{bottom:472.000000pt;}
.y21_c00192{bottom:476.400000pt;}
.y56_c00192{bottom:488.000000pt;}
.y20_c00192{bottom:493.066667pt;}
.y55_c00192{bottom:503.733333pt;}
.y1f_c00192{bottom:509.066667pt;}
.y54_c00192{bottom:519.466667pt;}
.y1e_c00192{bottom:525.333333pt;}
.y53_c00192{bottom:535.466667pt;}
.y1d_c00192{bottom:541.066667pt;}
.y52_c00192{bottom:553.066667pt;}
.y1c_c00192{bottom:563.733333pt;}
.y51_c00192{bottom:567.200000pt;}
.y1b_c00192{bottom:580.666667pt;}
.y50_c00192{bottom:582.933333pt;}
.y1a_c00192{bottom:596.400000pt;}
.y4f_c00192{bottom:598.666667pt;}
.y19_c00192{bottom:612.400000pt;}
.y4e_c00192{bottom:614.666667pt;}
.y18_c00192{bottom:628.133333pt;}
.y4d_c00192{bottom:630.400000pt;}
.y17_c00192{bottom:644.133333pt;}
.y4c_c00192{bottom:646.133333pt;}
.y4b_c00192{bottom:662.133333pt;}
.y16_c00192{bottom:666.533333pt;}
.y4a_c00192{bottom:677.866667pt;}
.y15_c00192{bottom:685.733333pt;}
.y49_c00192{bottom:693.600000pt;}
.y14_c00192{bottom:705.600000pt;}
.y48_c00192{bottom:709.333333pt;}
.y13_c00192{bottom:722.533333pt;}
.y47_c00192{bottom:725.333333pt;}
.y12_c00192{bottom:741.066667pt;}
.y46_c00192{bottom:756.800000pt;}
.y11_c00192{bottom:757.333333pt;}
.y45_c00192{bottom:772.800000pt;}
.y10_c00192{bottom:773.333333pt;}
.y44_c00192{bottom:788.533333pt;}
.yf_c00192{bottom:789.066667pt;}
.y43_c00192{bottom:804.533333pt;}
.ye_c00192{bottom:807.733333pt;}
.y42_c00192{bottom:823.333333pt;}
.yd_c00192{bottom:823.733333pt;}
.y41_c00192{bottom:834.800000pt;}
.yc_c00192{bottom:840.000000pt;}
.y40_c00192{bottom:848.533333pt;}
.yb_c00192{bottom:858.533333pt;}
.y3f_c00192{bottom:860.400000pt;}
.y3e_c00192{bottom:874.133333pt;}
.ya_c00192{bottom:878.666667pt;}
.y3d_c00192{bottom:885.600000pt;}
.y9_c00192{bottom:898.266667pt;}
.y3c_c00192{bottom:899.733333pt;}
.y3b_c00192{bottom:911.200000pt;}
.y8_c00192{bottom:914.933333pt;}
.y3a_c00192{bottom:925.600000pt;}
.y7_c00192{bottom:934.400000pt;}
.y39_c00192{bottom:938.133333pt;}
.y6_c00192{bottom:950.133333pt;}
.y38_c00192{bottom:950.666667pt;}
.y37_c00192{bottom:962.533333pt;}
.y5_c00192{bottom:969.333333pt;}
.y36_c00192{bottom:976.666667pt;}
.y4_c00192{bottom:985.600000pt;}
.y35_c00192{bottom:990.133333pt;}
.y1_c00192{bottom:1009.866667pt;}
.y2_c00192{bottom:1127.333333pt;}
.h8_c00192{height:21.333333pt;}
.h7_c00192{height:26.666667pt;}
.h3_c00192{height:42.666667pt;}
.h9_c00192{height:48.000000pt;}
.h5_c00192{height:53.333333pt;}
.h4_c00192{height:58.666667pt;}
.h6_c00192{height:64.000000pt;}
.h2_c00192{height:69.333333pt;}
.h0_c00192{height:1127.680013pt;}
.h1_c00192{height:1128.000000pt;}
.w1_c00192{width:856.000000pt;}
.w0_c00192{width:856.319987pt;}
.x0_c00192{left:0.000000pt;}
.x3_c00192{left:2.533333pt;}
.x85_c00192{left:58.533333pt;}
.x86_c00192{left:82.533333pt;}
.x46_c00192{left:85.066667pt;}
.x62_c00192{left:86.400000pt;}
.x87_c00192{left:88.933333pt;}
.x4_c00192{left:98.266667pt;}
.x23_c00192{left:100.000000pt;}
.x37_c00192{left:101.733333pt;}
.x65_c00192{left:102.933333pt;}
.x71_c00192{left:103.866667pt;}
.x92_c00192{left:105.333333pt;}
.x88_c00192{left:106.800000pt;}
.x6f_c00192{left:111.733333pt;}
.x9b_c00192{left:113.066667pt;}
.xf_c00192{left:115.866667pt;}
.x1b_c00192{left:116.800000pt;}
.x2e_c00192{left:118.266667pt;}
.x4b_c00192{left:120.400000pt;}
.x8d_c00192{left:121.600000pt;}
.x7d_c00192{left:122.800000pt;}
.x51_c00192{left:124.133333pt;}
.x89_c00192{left:126.666667pt;}
.x99_c00192{left:127.733333pt;}
.x45_c00192{left:128.933333pt;}
.x2b_c00192{left:130.133333pt;}
.x60_c00192{left:131.466667pt;}
.x3b_c00192{left:133.466667pt;}
.x9d_c00192{left:134.533333pt;}
.x14_c00192{left:135.733333pt;}
.x96_c00192{left:136.933333pt;}
.x52_c00192{left:139.466667pt;}
.x47_c00192{left:141.066667pt;}
.x93_c00192{left:142.133333pt;}
.x72_c00192{left:143.200000pt;}
.x56_c00192{left:144.533333pt;}
.x1c_c00192{left:145.866667pt;}
.x79_c00192{left:147.066667pt;}
.x80_c00192{left:148.400000pt;}
.x3f_c00192{left:151.333333pt;}
.xa_c00192{left:152.666667pt;}
.x15_c00192{left:154.266667pt;}
.x41_c00192{left:155.466667pt;}
.x30_c00192{left:156.533333pt;}
.x2f_c00192{left:158.266667pt;}
.x8a_c00192{left:160.533333pt;}
.x28_c00192{left:162.000000pt;}
.x24_c00192{left:164.266667pt;}
.x57_c00192{left:167.866667pt;}
.x63_c00192{left:170.800000pt;}
.x9c_c00192{left:172.266667pt;}
.x6a_c00192{left:173.866667pt;}
.x31_c00192{left:175.733333pt;}
.x29_c00192{left:177.733333pt;}
.x5_c00192{left:179.866667pt;}
.xb_c00192{left:181.200000pt;}
.x1d_c00192{left:182.400000pt;}
.x2c_c00192{left:183.866667pt;}
.x38_c00192{left:185.600000pt;}
.x5b_c00192{left:187.733333pt;}
.x58_c00192{left:188.933333pt;}
.x16_c00192{left:192.000000pt;}
.x66_c00192{left:193.866667pt;}
.x61_c00192{left:195.200000pt;}
.x7a_c00192{left:197.333333pt;}
.xc_c00192{left:200.400000pt;}
.x6_c00192{left:201.333333pt;}
.x8e_c00192{left:202.666667pt;}
.x7e_c00192{left:204.400000pt;}
.x3c_c00192{left:205.466667pt;}
.x5c_c00192{left:206.666667pt;}
.x10_c00192{left:208.400000pt;}
.x81_c00192{left:209.466667pt;}
.x40_c00192{left:210.800000pt;}
.x25_c00192{left:213.200000pt;}
.x94_c00192{left:214.800000pt;}
.x73_c00192{left:216.133333pt;}
.x8b_c00192{left:217.466667pt;}
.x9f_c00192{left:218.533333pt;}
.x32_c00192{left:219.600000pt;}
.x42_c00192{left:221.733333pt;}
.x11_c00192{left:222.800000pt;}
.x1e_c00192{left:225.333333pt;}
.x9e_c00192{left:227.066667pt;}
.x8f_c00192{left:229.200000pt;}
.xd_c00192{left:230.533333pt;}
.x1f_c00192{left:233.333333pt;}
.x17_c00192{left:237.733333pt;}
.x5d_c00192{left:238.933333pt;}
.x95_c00192{left:240.666667pt;}
.x6b_c00192{left:242.933333pt;}
.x67_c00192{left:246.266667pt;}
.x5e_c00192{left:247.200000pt;}
.x82_c00192{left:248.800000pt;}
.x53_c00192{left:249.733333pt;}
.x4c_c00192{left:250.933333pt;}
.x90_c00192{left:254.800000pt;}
.x7_c00192{left:255.733333pt;}
.x26_c00192{left:258.266667pt;}
.x12_c00192{left:259.600000pt;}
.x3d_c00192{left:261.466667pt;}
.x2d_c00192{left:262.933333pt;}
.x6c_c00192{left:266.666667pt;}
.xe_c00192{left:268.666667pt;}
.x4d_c00192{left:270.400000pt;}
.x27_c00192{left:272.933333pt;}
.x59_c00192{left:274.400000pt;}
.x48_c00192{left:276.400000pt;}
.x74_c00192{left:279.866667pt;}
.x20_c00192{left:281.333333pt;}
.x43_c00192{left:282.533333pt;}
.x33_c00192{left:283.866667pt;}
.x3e_c00192{left:286.133333pt;}
.x76_c00192{left:287.866667pt;}
.x54_c00192{left:289.466667pt;}
.x18_c00192{left:290.533333pt;}
.x68_c00192{left:292.666667pt;}
.x70_c00192{left:294.533333pt;}
.x1_c00192{left:296.666667pt;}
.x55_c00192{left:298.133333pt;}
.x97_c00192{left:299.200000pt;}
.x49_c00192{left:300.400000pt;}
.x84_c00192{left:304.266667pt;}
.x6d_c00192{left:309.200000pt;}
.x19_c00192{left:310.666667pt;}
.x34_c00192{left:312.933333pt;}
.x8_c00192{left:314.666667pt;}
.x4e_c00192{left:316.800000pt;}
.x8c_c00192{left:320.266667pt;}
.x6e_c00192{left:322.933333pt;}
.x21_c00192{left:324.266667pt;}
.x5f_c00192{left:326.666667pt;}
.x9_c00192{left:327.733333pt;}
.x1a_c00192{left:329.200000pt;}
.x98_c00192{left:331.200000pt;}
.x91_c00192{left:332.266667pt;}
.x35_c00192{left:333.733333pt;}
.x13_c00192{left:338.266667pt;}
.x7b_c00192{left:339.733333pt;}
.x22_c00192{left:341.866667pt;}
.x64_c00192{left:343.866667pt;}
.x39_c00192{left:345.866667pt;}
.x4f_c00192{left:347.866667pt;}
.x83_c00192{left:348.933333pt;}
.x77_c00192{left:350.266667pt;}
.x5a_c00192{left:353.866667pt;}
.x7f_c00192{left:356.400000pt;}
.x44_c00192{left:357.733333pt;}
.x9a_c00192{left:358.800000pt;}
.x4a_c00192{left:361.466667pt;}
.x75_c00192{left:362.800000pt;}
.x3a_c00192{left:364.133333pt;}
.x2a_c00192{left:366.266667pt;}
.x50_c00192{left:368.400000pt;}
.x36_c00192{left:373.066667pt;}
.x7c_c00192{left:376.533333pt;}
.x69_c00192{left:379.333333pt;}
.x78_c00192{left:380.933333pt;}
.xa0_c00192{left:399.066667pt;}
.xd5_c00192{left:401.600000pt;}
.x125_c00192{left:403.466667pt;}
.x140_c00192{left:404.533333pt;}
.xaa_c00192{left:412.400000pt;}
.xc7_c00192{left:413.733333pt;}
.xd7_c00192{left:417.600000pt;}
.x104_c00192{left:418.666667pt;}
.x133_c00192{left:419.600000pt;}
.x13b_c00192{left:420.666667pt;}
.xb4_c00192{left:425.600000pt;}
.xf1_c00192{left:430.800000pt;}
.xec_c00192{left:434.533333pt;}
.xdd_c00192{left:435.600000pt;}
.xab_c00192{left:438.266667pt;}
.x11d_c00192{left:442.533333pt;}
.xb5_c00192{left:445.466667pt;}
.x11c_c00192{left:448.266667pt;}
.xde_c00192{left:450.000000pt;}
.xac_c00192{left:451.066667pt;}
.xa1_c00192{left:452.533333pt;}
.xd8_c00192{left:453.733333pt;}
.x113_c00192{left:455.600000pt;}
.x13c_c00192{left:457.333333pt;}
.x108_c00192{left:459.866667pt;}
.xcf_c00192{left:461.733333pt;}
.xb6_c00192{left:462.800000pt;}
.x116_c00192{left:463.733333pt;}
.xfa_c00192{left:464.800000pt;}
.xfc_c00192{left:467.866667pt;}
.x130_c00192{left:469.200000pt;}
.xf2_c00192{left:471.200000pt;}
.x114_c00192{left:472.933333pt;}
.xd0_c00192{left:474.800000pt;}
.xb7_c00192{left:476.266667pt;}
.xe7_c00192{left:477.600000pt;}
.xd9_c00192{left:480.666667pt;}
.xbd_c00192{left:481.600000pt;}
.xd4_c00192{left:483.200000pt;}
.xcb_c00192{left:484.400000pt;}
.x12a_c00192{left:486.000000pt;}
.xed_c00192{left:486.933333pt;}
.xfd_c00192{left:488.400000pt;}
.x10e_c00192{left:490.533333pt;}
.xf3_c00192{left:491.733333pt;}
.x12b_c00192{left:493.733333pt;}
.xad_c00192{left:496.400000pt;}
.xe3_c00192{left:498.533333pt;}
.xdf_c00192{left:499.600000pt;}
.xcc_c00192{left:502.000000pt;}
.x11f_c00192{left:503.066667pt;}
.xb8_c00192{left:506.000000pt;}
.x117_c00192{left:508.266667pt;}
.xa2_c00192{left:509.466667pt;}
.x13d_c00192{left:510.400000pt;}
.xda_c00192{left:511.333333pt;}
.x100_c00192{left:512.666667pt;}
.xd1_c00192{left:516.400000pt;}
.x10f_c00192{left:519.333333pt;}
.x118_c00192{left:521.733333pt;}
.x131_c00192{left:522.666667pt;}
.x120_c00192{left:523.600000pt;}
.x137_c00192{left:525.866667pt;}
.xa3_c00192{left:527.733333pt;}
.xfb_c00192{left:529.466667pt;}
.x12c_c00192{left:530.800000pt;}
.xdb_c00192{left:531.866667pt;}
.x109_c00192{left:533.066667pt;}
.x12f_c00192{left:534.133333pt;}
.x128_c00192{left:535.200000pt;}
.xc8_c00192{left:536.266667pt;}
.x105_c00192{left:537.733333pt;}
.xae_c00192{left:538.933333pt;}
.x139_c00192{left:540.133333pt;}
.xbe_c00192{left:541.733333pt;}
.x138_c00192{left:542.933333pt;}
.xb9_c00192{left:544.133333pt;}
.xf6_c00192{left:546.133333pt;}
.xc6_c00192{left:547.733333pt;}
.x12d_c00192{left:548.666667pt;}
.x122_c00192{left:552.800000pt;}
.xbf_c00192{left:554.266667pt;}
.xf4_c00192{left:556.000000pt;}
.xd6_c00192{left:557.200000pt;}
.x132_c00192{left:558.533333pt;}
.xaf_c00192{left:560.400000pt;}
.xa4_c00192{left:561.333333pt;}
.x11e_c00192{left:562.933333pt;}
.xba_c00192{left:564.266667pt;}
.xe0_c00192{left:565.466667pt;}
.xc0_c00192{left:567.333333pt;}
.x101_c00192{left:569.333333pt;}
.x106_c00192{left:570.266667pt;}
.x134_c00192{left:572.000000pt;}
.xd2_c00192{left:574.533333pt;}
.xc9_c00192{left:576.533333pt;}
.x10a_c00192{left:579.200000pt;}
.xb0_c00192{left:580.533333pt;}
.x126_c00192{left:582.000000pt;}
.xee_c00192{left:583.333333pt;}
.xbb_c00192{left:586.000000pt;}
.xdc_c00192{left:587.866667pt;}
.xf7_c00192{left:589.066667pt;}
.xca_c00192{left:590.266667pt;}
.x110_c00192{left:591.866667pt;}
.xc1_c00192{left:592.933333pt;}
.x115_c00192{left:594.666667pt;}
.xa5_c00192{left:596.266667pt;}
.xcd_c00192{left:598.000000pt;}
.xc2_c00192{left:599.333333pt;}
.x12e_c00192{left:600.800000pt;}
.x123_c00192{left:601.733333pt;}
.xbc_c00192{left:602.666667pt;}
.xa6_c00192{left:604.000000pt;}
.xc3_c00192{left:605.733333pt;}
.x111_c00192{left:606.933333pt;}
.x141_c00192{left:609.066667pt;}
.xfe_c00192{left:610.133333pt;}
.xc4_c00192{left:612.133333pt;}
.x11a_c00192{left:613.066667pt;}
.xe4_c00192{left:614.000000pt;}
.x10b_c00192{left:616.000000pt;}
.xe8_c00192{left:618.666667pt;}
.xf8_c00192{left:619.733333pt;}
.x112_c00192{left:620.666667pt;}
.xef_c00192{left:622.400000pt;}
.xe5_c00192{left:625.200000pt;}
.x121_c00192{left:626.666667pt;}
.xa7_c00192{left:627.733333pt;}
.x102_c00192{left:630.133333pt;}
.x11b_c00192{left:632.266667pt;}
.x142_c00192{left:633.333333pt;}
.xc5_c00192{left:635.866667pt;}
.xb1_c00192{left:637.466667pt;}
.xf0_c00192{left:639.066667pt;}
.xf5_c00192{left:641.733333pt;}
.xe9_c00192{left:643.600000pt;}
.xe1_c00192{left:645.733333pt;}
.x103_c00192{left:648.400000pt;}
.xff_c00192{left:650.800000pt;}
.x13e_c00192{left:651.866667pt;}
.x135_c00192{left:652.933333pt;}
.xa8_c00192{left:654.933333pt;}
.x129_c00192{left:656.666667pt;}
.x10c_c00192{left:657.600000pt;}
.x127_c00192{left:658.533333pt;}
.xea_c00192{left:660.533333pt;}
.xb2_c00192{left:662.133333pt;}
.xe2_c00192{left:663.333333pt;}
.x119_c00192{left:668.533333pt;}
.x136_c00192{left:670.800000pt;}
.x13a_c00192{left:672.133333pt;}
.xe6_c00192{left:673.200000pt;}
.x2_c00192{left:674.533333pt;}
.x124_c00192{left:676.266667pt;}
.xf9_c00192{left:679.866667pt;}
.xd3_c00192{left:682.000000pt;}
.x13f_c00192{left:683.733333pt;}
.xa9_c00192{left:684.666667pt;}
.xb3_c00192{left:686.800000pt;}
.xce_c00192{left:688.666667pt;}
.x10d_c00192{left:691.466667pt;}
.xeb_c00192{left:696.666667pt;}
.x107_c00192{left:697.600000pt;}
}





/* 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_c00193 {
    display:none;
  }
  .loading-indicator_c00193.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00193 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_c00193 { 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_c00193" -> "#page-container .classname_c00193")
 */
.pf_c00193 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00193 { /* 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_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00193 { /* 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_c00193 { /* 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_c00193 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00193 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00193 {overflow:visible;}
  }
}
.c_c00193 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00193 { /* 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_c00193:after { /* webkit #35443 */
  content: '';
}
.t_c00193:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00193 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 */
}
.__c00193 { /* 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_c00193 { /* info for Javascript */
  display:none;
}
.l_c00193 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00193 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00193 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00193: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_c00193 {
    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_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00193.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_c00193 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00193;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.000000;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;}
.m59_c00193{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m110_c00193{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00193{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m94_c00193{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00193{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00193{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m104_c00193{transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);}
.m21_c00193{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00193{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00193{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00193{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mce_c00193{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00193{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00193{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00193{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m85_c00193{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00193{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00193{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00193{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m103_c00193{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m111_c00193{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00193{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00193{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m19_c00193{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00193{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mac_c00193{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m93_c00193{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m38_c00193{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00193{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00193{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m92_c00193{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m20_c00193{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m124_c00193{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m108_c00193{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mda_c00193{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m46_c00193{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m112_c00193{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m69_c00193{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00193{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00193{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me1_c00193{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00193{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m87_c00193{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me0_c00193{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m4_c00193{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m109_c00193{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00193{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m62_c00193{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00193{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m8_c00193{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00193{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me9_c00193{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00193{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00193{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10_c00193{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m3_c00193{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m13_c00193{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00193{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m5_c00193{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00193{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00193{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md6_c00193{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m75_c00193{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00193{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00193{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mb_c00193{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m57_c00193{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00193{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m49_c00193{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00193{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m119_c00193{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7_c00193{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m12_c00193{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma_c00193{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m81_c00193{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.maf_c00193{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m83_c00193{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00193{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me2_c00193{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m130_c00193{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m31_c00193{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m88_c00193{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m24_c00193{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m36_c00193{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00193{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00193{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m42_c00193{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00193{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m74_c00193{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me8_c00193{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mab_c00193{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00193{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m18_c00193{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc_c00193{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m70_c00193{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00193{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00193{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00193{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m33_c00193{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00193{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m23_c00193{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00193{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00193{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00193{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m64_c00193{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me_c00193{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md2_c00193{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00193{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf_c00193{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00193{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md0_c00193{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me6_c00193{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m16_c00193{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m35_c00193{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00193{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00193{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m60_c00193{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m129_c00193{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00193{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00193{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00193{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00193{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00193{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00193{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me4_c00193{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00193{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00193{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m66_c00193{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md_c00193{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00193{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m51_c00193{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m34_c00193{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00193{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mff_c00193{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m55_c00193{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m73_c00193{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00193{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mca_c00193{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m30_c00193{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m25_c00193{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m97_c00193{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00193{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m32_c00193{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m118_c00193{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m14_c00193{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00193{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m72_c00193{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m79_c00193{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m102_c00193{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m29_c00193{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m105_c00193{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00193{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00193{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00193{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m56_c00193{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m27_c00193{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m48_c00193{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m84_c00193{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00193{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m80_c00193{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m50_c00193{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00193{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m22_c00193{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00193{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00193{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m86_c00193{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me5_c00193{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6_c00193{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m37_c00193{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00193{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mee_c00193{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00193{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.md1_c00193{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9_c00193{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00193{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00193{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mba_c00193{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m43_c00193{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00193{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00193{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.md7_c00193{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m17_c00193{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00193{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00193{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00193{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me3_c00193{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00193{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m26_c00193{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00193{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m116_c00193{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00193{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00193{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m65_c00193{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m40_c00193{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00193{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m47_c00193{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m61_c00193{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m71_c00193{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11_c00193{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00193{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00193{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m63_c00193{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m128_c00193{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m114_c00193{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md3_c00193{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md9_c00193{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m52_c00193{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00193{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00193{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m67_c00193{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m90_c00193{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00193{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00193{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.maa_c00193{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00193{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m77_c00193{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00193{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m76_c00193{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00193{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m44_c00193{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m15_c00193{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m39_c00193{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.meb_c00193{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00193{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00193{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00193{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00193{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00193{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me7_c00193{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m68_c00193{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m107_c00193{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m82_c00193{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m113_c00193{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m54_c00193{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m91_c00193{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00193{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m58_c00193{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m78_c00193{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00193{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m41_c00193{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00193{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00193{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00193{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m99_c00193{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00193{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md5_c00193{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00193{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m126_c00193{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00193{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00193{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00193{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00193{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00193{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00193{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m106_c00193{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.med_c00193{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m100_c00193{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m53_c00193{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00193{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m89_c00193{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00193{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00193{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m121_c00193{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.mec_c00193{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00193{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m120_c00193{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m28_c00193{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m122_c00193{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m125_c00193{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00193{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mef_c00193{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.md8_c00193{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mae_c00193{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00193{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m96_c00193{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m95_c00193{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m127_c00193{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00193{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00193{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m117_c00193{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00193{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00193{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00193{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00193{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m115_c00193{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00193{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.m98_c00193{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00193{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m45_c00193{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00193{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.mea_c00193{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.md4_c00193{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.mad_c00193{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.mde_c00193{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m123_c00193{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00193{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00193{transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00193{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00193{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m101_c00193{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00193{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00193{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.v1_c00193{vertical-align:4.200000px;}
.ls3_c00193{letter-spacing:0.000000px;}
.ls2_c00193{letter-spacing:65.833333px;}
.ls1_c00193{letter-spacing:70.000000px;}
.ls0_c00193{letter-spacing:2177.142857px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{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__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00193{word-spacing:-100.000000px;}
.wsf_c00193{word-spacing:-95.833333px;}
.ws2_c00193{word-spacing:-5.986900px;}
.ws16_c00193{word-spacing:-1.566879px;}
.ws1c_c00193{word-spacing:0.000000px;}
.ws1b_c00193{word-spacing:2.254777px;}
.ws12_c00193{word-spacing:6.669481px;}
.ws5_c00193{word-spacing:8.234201px;}
.ws0_c00193{word-spacing:14.363636px;}
.ws10_c00193{word-spacing:16.785714px;}
.ws18_c00193{word-spacing:20.571429px;}
.ws11_c00193{word-spacing:22.142857px;}
.wsb_c00193{word-spacing:25.714286px;}
.ws13_c00193{word-spacing:28.426230px;}
.ws19_c00193{word-spacing:28.666667px;}
.wsc_c00193{word-spacing:29.285714px;}
.ws7_c00193{word-spacing:29.583333px;}
.ws17_c00193{word-spacing:32.000000px;}
.wsa_c00193{word-spacing:35.833333px;}
.wse_c00193{word-spacing:40.000000px;}
.ws15_c00193{word-spacing:43.923664px;}
.ws8_c00193{word-spacing:55.000000px;}
.ws9_c00193{word-spacing:60.000000px;}
.wsd_c00193{word-spacing:165.263158px;}
.ws14_c00193{word-spacing:286.428571px;}
.ws4_c00193{word-spacing:515.000000px;}
.ws3_c00193{word-spacing:698.000000px;}
.ws1a_c00193{word-spacing:919.321101px;}
.ws1_c00193{word-spacing:7085.724138px;}
._1_c00193{margin-left:-70.000000px;}
._7_c00193{margin-left:-65.833333px;}
._8_c00193{width:55.714286px;}
._9_c00193{width:59.285714px;}
._a_c00193{width:64.642857px;}
._4_c00193{width:70.000000px;}
._6_c00193{width:74.166667px;}
._2_c00193{width:80.416667px;}
._3_c00193{width:95.000000px;}
._c_c00193{width:139.333333px;}
._5_c00193{width:141.428571px;}
._b_c00193{width:337.857143px;}
._0_c00193{width:1505.416667px;}
.fc0_c00193{color:transparent;}
.fs4_c00193{font-size:24.000000px;}
.fs6_c00193{font-size:48.000000px;}
.fs5_c00193{font-size:54.000000px;}
.fs3_c00193{font-size:60.000000px;}
.fs2_c00193{font-size:66.000000px;}
.fs1_c00193{font-size:72.000000px;}
.fs0_c00193{font-size:126.000000px;}
.y0_c00193{bottom:0.000000px;}
.y4d_c00193{bottom:190.350000px;}
.y4c_c00193{bottom:206.250000px;}
.y4b_c00193{bottom:223.950000px;}
.y4a_c00193{bottom:237.300000px;}
.y49_c00193{bottom:241.650000px;}
.y48_c00193{bottom:255.300000px;}
.y47_c00193{bottom:259.500000px;}
.y46_c00193{bottom:277.200000px;}
.y45_c00193{bottom:294.900000px;}
.y44_c00193{bottom:312.900000px;}
.y43_c00193{bottom:333.000000px;}
.y42_c00193{bottom:348.450000px;}
.y41_c00193{bottom:366.450000px;}
.y40_c00193{bottom:375.150000px;}
.y3f_c00193{bottom:389.250000px;}
.y3e_c00193{bottom:404.700000px;}
.y3d_c00193{bottom:419.400000px;}
.y3c_c00193{bottom:432.750000px;}
.y3b_c00193{bottom:447.150000px;}
.y3a_c00193{bottom:463.650000px;}
.y39_c00193{bottom:495.000000px;}
.y2c_c00193{bottom:496.050000px;}
.y2b_c00193{bottom:514.050000px;}
.y38_c00193{bottom:517.200000px;}
.y37_c00193{bottom:534.900000px;}
.y2a_c00193{bottom:536.400000px;}
.y36_c00193{bottom:552.900000px;}
.y29_c00193{bottom:554.400000px;}
.y35_c00193{bottom:570.600000px;}
.y28_c00193{bottom:572.100000px;}
.y27_c00193{bottom:590.100000px;}
.y34_c00193{bottom:592.500000px;}
.y26_c00193{bottom:607.650000px;}
.y25_c00193{bottom:625.350000px;}
.y24_c00193{bottom:643.200000px;}
.y23_c00193{bottom:661.200000px;}
.y22_c00193{bottom:678.900000px;}
.y21_c00193{bottom:694.800000px;}
.y33_c00193{bottom:705.150000px;}
.y20_c00193{bottom:712.800000px;}
.y32_c00193{bottom:723.150000px;}
.y1f_c00193{bottom:734.400000px;}
.y31_c00193{bottom:740.850000px;}
.y1e_c00193{bottom:752.400000px;}
.y30_c00193{bottom:758.550000px;}
.y1d_c00193{bottom:770.400000px;}
.y1c_c00193{bottom:788.100000px;}
.y1b_c00193{bottom:788.400000px;}
.y1a_c00193{bottom:806.100000px;}
.y19_c00193{bottom:806.700000px;}
.y18_c00193{bottom:813.300000px;}
.y17_c00193{bottom:823.350000px;}
.y16_c00193{bottom:824.700000px;}
.y15_c00193{bottom:841.950000px;}
.y14_c00193{bottom:859.200000px;}
.y13_c00193{bottom:866.700000px;}
.y10_c00193{bottom:868.650000px;}
.y11_c00193{bottom:868.950000px;}
.y12_c00193{bottom:870.000000px;}
.yf_c00193{bottom:879.450000px;}
.ye_c00193{bottom:893.550000px;}
.yd_c00193{bottom:912.600000px;}
.yc_c00193{bottom:931.650000px;}
.yb_c00193{bottom:949.650000px;}
.ya_c00193{bottom:970.200000px;}
.y9_c00193{bottom:990.000000px;}
.y8_c00193{bottom:1007.250000px;}
.y7_c00193{bottom:1025.250000px;}
.y6_c00193{bottom:1042.500000px;}
.y5_c00193{bottom:1056.900000px;}
.y2f_c00193{bottom:1064.850000px;}
.y4_c00193{bottom:1074.600000px;}
.y2e_c00193{bottom:1091.850000px;}
.y3_c00193{bottom:1092.600000px;}
.y2d_c00193{bottom:1109.550000px;}
.y2_c00193{bottom:1110.300000px;}
.y1_c00193{bottom:1136.850000px;}
.h7_c00193{height:24.000000px;}
.h9_c00193{height:48.000000px;}
.h8_c00193{height:54.000000px;}
.h5_c00193{height:60.000000px;}
.h6_c00193{height:64.200000px;}
.h4_c00193{height:66.000000px;}
.h3_c00193{height:72.000000px;}
.h2_c00193{height:126.000000px;}
.h1_c00193{height:1269.750000px;}
.h0_c00193{height:1270.080048px;}
.w1_c00193{width:963.000000px;}
.w0_c00193{width:963.359985px;}
.x0_c00193{left:0.000000px;}
.x159_c00193{left:173.850000px;}
.xd2_c00193{left:175.650000px;}
.x65_c00193{left:177.900000px;}
.x1_c00193{left:179.700000px;}
.x117_c00193{left:189.750000px;}
.x8b_c00193{left:192.000000px;}
.xd8_c00193{left:193.350000px;}
.x39_c00193{left:195.150000px;}
.xf8_c00193{left:196.950000px;}
.x10e_c00193{left:200.550000px;}
.x135_c00193{left:203.850000px;}
.x12e_c00193{left:205.650000px;}
.x152_c00193{left:208.050000px;}
.x121_c00193{left:209.400000px;}
.xcb_c00193{left:210.900000px;}
.x104_c00193{left:212.700000px;}
.x28_c00193{left:214.950000px;}
.x5b_c00193{left:218.550000px;}
.x66_c00193{left:220.050000px;}
.x118_c00193{left:222.900000px;}
.x72_c00193{left:224.250000px;}
.xc4_c00193{left:226.050000px;}
.x14b_c00193{left:227.100000px;}
.x3a_c00193{left:229.650000px;}
.x4e_c00193{left:231.900000px;}
.x14e_c00193{left:232.950000px;}
.x10f_c00193{left:235.800000px;}
.x156_c00193{left:237.450000px;}
.x7e_c00193{left:238.650000px;}
.xac_c00193{left:241.500000px;}
.x7c_c00193{left:242.700000px;}
.xa1_c00193{left:243.900000px;}
.xe5_c00193{left:245.850000px;}
.x73_c00193{left:247.950000px;}
.xf9_c00193{left:249.150000px;}
.xaf_c00193{left:252.000000px;}
.x5c_c00193{left:253.050000px;}
.xdf_c00193{left:254.400000px;}
.x4f_c00193{left:255.600000px;}
.x29_c00193{left:257.850000px;}
.x7f_c00193{left:259.500000px;}
.x98_c00193{left:262.050000px;}
.x46_c00193{left:264.600000px;}
.xa2_c00193{left:265.800000px;}
.x74_c00193{left:267.450000px;}
.x8c_c00193{left:269.100000px;}
.x10a_c00193{left:270.900000px;}
.xc5_c00193{left:272.100000px;}
.xd1_c00193{left:276.000000px;}
.x50_c00193{left:277.200000px;}
.x3b_c00193{left:280.800000px;}
.x94_c00193{left:283.650000px;}
.x14c_c00193{left:285.000000px;}
.x67_c00193{left:286.350000px;}
.xfa_c00193{left:287.700000px;}
.x146_c00193{left:288.750000px;}
.x1a_c00193{left:290.400000px;}
.x12f_c00193{left:295.650000px;}
.xa3_c00193{left:297.900000px;}
.xcc_c00193{left:299.100000px;}
.x47_c00193{left:301.350000px;}
.x99_c00193{left:303.450000px;}
.xd3_c00193{left:305.250000px;}
.xb9_c00193{left:307.050000px;}
.xdd_c00193{left:308.250000px;}
.xfc_c00193{left:310.800000px;}
.xa4_c00193{left:313.800000px;}
.x75_c00193{left:315.750000px;}
.xce_c00193{left:317.400000px;}
.x110_c00193{left:319.050000px;}
.xfd_c00193{left:320.550000px;}
.x8d_c00193{left:321.600000px;}
.x105_c00193{left:324.000000px;}
.x130_c00193{left:326.400000px;}
.x13f_c00193{left:327.600000px;}
.x48_c00193{left:329.100000px;}
.x13b_c00193{left:330.600000px;}
.x2a_c00193{left:331.950000px;}
.x137_c00193{left:333.000000px;}
.x68_c00193{left:334.650000px;}
.x1b_c00193{left:336.450000px;}
.x10d_c00193{left:337.950000px;}
.x51_c00193{left:339.450000px;}
.x2b_c00193{left:340.650000px;}
.x140_c00193{left:341.700000px;}
.xc2_c00193{left:342.900000px;}
.x3c_c00193{left:344.850000px;}
.x1c_c00193{left:346.950000px;}
.x131_c00193{left:348.000000px;}
.x10b_c00193{left:349.800000px;}
.x106_c00193{left:352.500000px;}
.x80_c00193{left:354.150000px;}
.xc6_c00193{left:355.950000px;}
.xa5_c00193{left:357.750000px;}
.x10c_c00193{left:359.850000px;}
.x9a_c00193{left:361.800000px;}
.x141_c00193{left:363.000000px;}
.x122_c00193{left:364.050000px;}
.x69_c00193{left:366.000000px;}
.x5d_c00193{left:367.200000px;}
.x3d_c00193{left:369.000000px;}
.x138_c00193{left:370.050000px;}
.x81_c00193{left:371.850000px;}
.x14d_c00193{left:373.200000px;}
.xba_c00193{left:375.150000px;}
.xd4_c00193{left:376.200000px;}
.x107_c00193{left:378.000000px;}
.x119_c00193{left:379.800000px;}
.x1d_c00193{left:380.850000px;}
.x15a_c00193{left:381.900000px;}
.x95_c00193{left:383.700000px;}
.xa6_c00193{left:385.500000px;}
.xfe_c00193{left:387.450000px;}
.x49_c00193{left:389.550000px;}
.x52_c00193{left:390.600000px;}
.x109_c00193{left:392.550000px;}
.xcf_c00193{left:394.050000px;}
.x76_c00193{left:395.250000px;}
.x147_c00193{left:397.800000px;}
.x11a_c00193{left:398.850000px;}
.xd5_c00193{left:401.100000px;}
.x1e_c00193{left:402.750000px;}
.x3e_c00193{left:406.050000px;}
.xe0_c00193{left:407.850000px;}
.x96_c00193{left:411.450000px;}
.x4a_c00193{left:412.950000px;}
.x123_c00193{left:414.150000px;}
.xb0_c00193{left:416.100000px;}
.xc7_c00193{left:417.150000px;}
.x2c_c00193{left:419.100000px;}
.x8e_c00193{left:420.600000px;}
.x2_c00193{left:421.650000px;}
.xcd_c00193{left:424.050000px;}
.xc3_c00193{left:426.450000px;}
.x157_c00193{left:428.700000px;}
.xd9_c00193{left:429.900000px;}
.x3f_c00193{left:431.550000px;}
.x9b_c00193{left:434.250000px;}
.xd6_c00193{left:435.300000px;}
.x153_c00193{left:436.350000px;}
.xfb_c00193{left:437.550000px;}
.xff_c00193{left:440.400000px;}
.x1f_c00193{left:443.100000px;}
.x77_c00193{left:445.350000px;}
.x2d_c00193{left:447.900000px;}
.x82_c00193{left:451.500000px;}
.x4b_c00193{left:454.350000px;}
.xa7_c00193{left:455.700000px;}
.x2e_c00193{left:459.450000px;}
.xb1_c00193{left:462.150000px;}
.x150_c00193{left:463.200000px;}
.x53_c00193{left:464.400000px;}
.x108_c00193{left:466.200000px;}
.x20_c00193{left:468.000000px;}
.x132_c00193{left:469.650000px;}
.x124_c00193{left:470.700000px;}
.x83_c00193{left:472.350000px;}
.xb2_c00193{left:474.000000px;}
.xc8_c00193{left:476.100000px;}
.x2f_c00193{left:477.750000px;}
.xa8_c00193{left:480.150000px;}
.xbb_c00193{left:482.400000px;}
.xd0_c00193{left:484.800000px;}
.xda_c00193{left:486.450000px;}
.x21_c00193{left:489.600000px;}
.xd7_c00193{left:493.200000px;}
.x4c_c00193{left:494.250000px;}
.x111_c00193{left:496.500000px;}
.x9c_c00193{left:497.550000px;}
.x125_c00193{left:498.750000px;}
.xdb_c00193{left:501.150000px;}
.xbc_c00193{left:503.250000px;}
.xde_c00193{left:506.100000px;}
.xb3_c00193{left:507.150000px;}
.x6a_c00193{left:523.350000px;}
.x5e_c00193{left:532.500000px;}
.x84_c00193{left:533.550000px;}
.x11b_c00193{left:546.150000px;}
.x154_c00193{left:548.250000px;}
.xe6_c00193{left:549.300000px;}
.x30_c00193{left:550.500000px;}
.x3_c00193{left:551.550000px;}
.x142_c00193{left:558.300000px;}
.x11c_c00193{left:560.850000px;}
.xe1_c00193{left:562.650000px;}
.x54_c00193{left:568.500000px;}
.x4_c00193{left:571.350000px;}
.x155_c00193{left:572.400000px;}
.xa9_c00193{left:573.750000px;}
.x97_c00193{left:575.250000px;}
.xbd_c00193{left:577.050000px;}
.x31_c00193{left:579.300000px;}
.xf1_c00193{left:581.550000px;}
.x22_c00193{left:583.800000px;}
.x78_c00193{left:586.350000px;}
.x5f_c00193{left:588.600000px;}
.x112_c00193{left:591.150000px;}
.xaa_c00193{left:593.550000px;}
.x85_c00193{left:595.050000px;}
.xe7_c00193{left:597.150000px;}
.x6b_c00193{left:598.200000px;}
.x126_c00193{left:599.850000px;}
.x32_c00193{left:600.900000px;}
.xb7_c00193{left:601.950000px;}
.xf5_c00193{left:603.450000px;}
.xeb_c00193{left:604.800000px;}
.x13c_c00193{left:606.000000px;}
.x5_c00193{left:607.050000px;}
.x40_c00193{left:608.400000px;}
.x60_c00193{left:609.450000px;}
.x9d_c00193{left:610.650000px;}
.xe8_c00193{left:612.600000px;}
.x127_c00193{left:613.950000px;}
.xe_c00193{left:615.900000px;}
.x4d_c00193{left:617.400000px;}
.xb8_c00193{left:619.650000px;}
.x6_c00193{left:621.150000px;}
.x86_c00193{left:622.800000px;}
.x8f_c00193{left:624.000000px;}
.x11d_c00193{left:625.050000px;}
.x55_c00193{left:628.950000px;}
.xc9_c00193{left:630.600000px;}
.xad_c00193{left:631.650000px;}
.x12_c00193{left:633.900000px;}
.x6c_c00193{left:634.950000px;}
.x79_c00193{left:636.000000px;}
.x7_c00193{left:638.400000px;}
.x33_c00193{left:640.200000px;}
.xec_c00193{left:642.600000px;}
.x23_c00193{left:644.250000px;}
.x128_c00193{left:646.350000px;}
.x13_c00193{left:647.550000px;}
.xf_c00193{left:648.600000px;}
.x56_c00193{left:650.250000px;}
.xb4_c00193{left:652.800000px;}
.x13d_c00193{left:653.850000px;}
.x6d_c00193{left:655.050000px;}
.xe2_c00193{left:656.550000px;}
.x11e_c00193{left:660.750000px;}
.xf6_c00193{left:662.100000px;}
.x14_c00193{left:664.050000px;}
.x158_c00193{left:666.000000px;}
.xed_c00193{left:667.050000px;}
.x8_c00193{left:669.000000px;}
.x13e_c00193{left:670.050000px;}
.xea_c00193{left:671.250000px;}
.x87_c00193{left:672.450000px;}
.x14f_c00193{left:673.650000px;}
.x129_c00193{left:674.850000px;}
.x34_c00193{left:675.900000px;}
.x57_c00193{left:678.300000px;}
.xdc_c00193{left:681.450000px;}
.x7d_c00193{left:683.700000px;}
.x61_c00193{left:685.650000px;}
.x151_c00193{left:687.000000px;}
.x9e_c00193{left:688.500000px;}
.x24_c00193{left:690.000000px;}
.x113_c00193{left:691.650000px;}
.xca_c00193{left:692.850000px;}
.x41_c00193{left:694.050000px;}
.x139_c00193{left:695.100000px;}
.x11f_c00193{left:696.450000px;}
.x25_c00193{left:698.700000px;}
.x6e_c00193{left:701.550000px;}
.x143_c00193{left:703.350000px;}
.x10_c00193{left:704.400000px;}
.xe9_c00193{left:706.350000px;}
.x62_c00193{left:707.550000px;}
.x58_c00193{left:708.900000px;}
.x35_c00193{left:710.400000px;}
.xe3_c00193{left:712.350000px;}
.x42_c00193{left:714.900000px;}
.x9_c00193{left:716.100000px;}
.x15_c00193{left:718.050000px;}
.x14a_c00193{left:720.150000px;}
.x148_c00193{left:721.800000px;}
.x6f_c00193{left:722.850000px;}
.x26_c00193{left:723.900000px;}
.x7a_c00193{left:725.850000px;}
.x12a_c00193{left:732.450000px;}
.x36_c00193{left:733.800000px;}
.x90_c00193{left:734.850000px;}
.x100_c00193{left:736.350000px;}
.x120_c00193{left:739.650000px;}
.x16_c00193{left:741.450000px;}
.x63_c00193{left:743.250000px;}
.xbe_c00193{left:745.200000px;}
.x12b_c00193{left:746.850000px;}
.x114_c00193{left:748.500000px;}
.xf2_c00193{left:751.050000px;}
.x149_c00193{left:752.400000px;}
.xa_c00193{left:754.200000px;}
.x59_c00193{left:755.700000px;}
.x91_c00193{left:756.750000px;}
.xae_c00193{left:758.700000px;}
.xf4_c00193{left:761.100000px;}
.xbf_c00193{left:764.250000px;}
.x115_c00193{left:766.200000px;}
.x133_c00193{left:767.850000px;}
.x43_c00193{left:769.200000px;}
.x27_c00193{left:770.700000px;}
.xb_c00193{left:772.500000px;}
.x88_c00193{left:774.750000px;}
.x37_c00193{left:778.050000px;}
.x7b_c00193{left:779.550000px;}
.x17_c00193{left:780.750000px;}
.xe4_c00193{left:783.300000px;}
.x5a_c00193{left:784.500000px;}
.x89_c00193{left:786.300000px;}
.x102_c00193{left:787.650000px;}
.xee_c00193{left:789.150000px;}
.xc_c00193{left:790.800000px;}
.x70_c00193{left:792.750000px;}
.x64_c00193{left:793.950000px;}
.x12c_c00193{left:795.000000px;}
.xb5_c00193{left:797.250000px;}
.x92_c00193{left:800.250000px;}
.x44_c00193{left:804.900000px;}
.x144_c00193{left:808.950000px;}
.xf0_c00193{left:810.900000px;}
.x9f_c00193{left:813.000000px;}
.xf7_c00193{left:814.350000px;}
.xb6_c00193{left:816.300000px;}
.x18_c00193{left:817.800000px;}
.xef_c00193{left:819.000000px;}
.xc0_c00193{left:822.150000px;}
.x12d_c00193{left:824.550000px;}
.x8a_c00193{left:825.600000px;}
.xa0_c00193{left:829.200000px;}
.x38_c00193{left:830.550000px;}
.xf3_c00193{left:832.800000px;}
.x11_c00193{left:834.450000px;}
.x136_c00193{left:837.150000px;}
.x145_c00193{left:838.800000px;}
.x13a_c00193{left:841.350000px;}
.x71_c00193{left:842.400000px;}
.xd_c00193{left:843.750000px;}
.x93_c00193{left:847.050000px;}
.xab_c00193{left:849.450000px;}
.x116_c00193{left:851.100000px;}
.x134_c00193{left:852.150000px;}
.x45_c00193{left:853.200000px;}
.xc1_c00193{left:856.950000px;}
.x103_c00193{left:859.950000px;}
.x101_c00193{left:861.900000px;}
.x19_c00193{left:866.400000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.v1_c00193{vertical-align:3.733333pt;}
.ls3_c00193{letter-spacing:0.000000pt;}
.ls2_c00193{letter-spacing:58.518519pt;}
.ls1_c00193{letter-spacing:62.222222pt;}
.ls0_c00193{letter-spacing:1935.238095pt;}
.ws6_c00193{word-spacing:-88.888889pt;}
.wsf_c00193{word-spacing:-85.185185pt;}
.ws2_c00193{word-spacing:-5.321689pt;}
.ws16_c00193{word-spacing:-1.392781pt;}
.ws1c_c00193{word-spacing:0.000000pt;}
.ws1b_c00193{word-spacing:2.004246pt;}
.ws12_c00193{word-spacing:5.928428pt;}
.ws5_c00193{word-spacing:7.319290pt;}
.ws0_c00193{word-spacing:12.767677pt;}
.ws10_c00193{word-spacing:14.920635pt;}
.ws18_c00193{word-spacing:18.285714pt;}
.ws11_c00193{word-spacing:19.682540pt;}
.wsb_c00193{word-spacing:22.857143pt;}
.ws13_c00193{word-spacing:25.267760pt;}
.ws19_c00193{word-spacing:25.481481pt;}
.wsc_c00193{word-spacing:26.031746pt;}
.ws7_c00193{word-spacing:26.296296pt;}
.ws17_c00193{word-spacing:28.444444pt;}
.wsa_c00193{word-spacing:31.851852pt;}
.wse_c00193{word-spacing:35.555556pt;}
.ws15_c00193{word-spacing:39.043257pt;}
.ws8_c00193{word-spacing:48.888889pt;}
.ws9_c00193{word-spacing:53.333333pt;}
.wsd_c00193{word-spacing:146.900585pt;}
.ws14_c00193{word-spacing:254.603175pt;}
.ws4_c00193{word-spacing:457.777778pt;}
.ws3_c00193{word-spacing:620.444444pt;}
.ws1a_c00193{word-spacing:817.174312pt;}
.ws1_c00193{word-spacing:6298.421456pt;}
._1_c00193{margin-left:-62.222222pt;}
._7_c00193{margin-left:-58.518519pt;}
._8_c00193{width:49.523810pt;}
._9_c00193{width:52.698413pt;}
._a_c00193{width:57.460317pt;}
._4_c00193{width:62.222222pt;}
._6_c00193{width:65.925926pt;}
._2_c00193{width:71.481481pt;}
._3_c00193{width:84.444444pt;}
._c_c00193{width:123.851852pt;}
._5_c00193{width:125.714286pt;}
._b_c00193{width:300.317460pt;}
._0_c00193{width:1338.148148pt;}
.fs4_c00193{font-size:21.333333pt;}
.fs6_c00193{font-size:42.666667pt;}
.fs5_c00193{font-size:48.000000pt;}
.fs3_c00193{font-size:53.333333pt;}
.fs2_c00193{font-size:58.666667pt;}
.fs1_c00193{font-size:64.000000pt;}
.fs0_c00193{font-size:112.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y4d_c00193{bottom:169.200000pt;}
.y4c_c00193{bottom:183.333333pt;}
.y4b_c00193{bottom:199.066667pt;}
.y4a_c00193{bottom:210.933333pt;}
.y49_c00193{bottom:214.800000pt;}
.y48_c00193{bottom:226.933333pt;}
.y47_c00193{bottom:230.666667pt;}
.y46_c00193{bottom:246.400000pt;}
.y45_c00193{bottom:262.133333pt;}
.y44_c00193{bottom:278.133333pt;}
.y43_c00193{bottom:296.000000pt;}
.y42_c00193{bottom:309.733333pt;}
.y41_c00193{bottom:325.733333pt;}
.y40_c00193{bottom:333.466667pt;}
.y3f_c00193{bottom:346.000000pt;}
.y3e_c00193{bottom:359.733333pt;}
.y3d_c00193{bottom:372.800000pt;}
.y3c_c00193{bottom:384.666667pt;}
.y3b_c00193{bottom:397.466667pt;}
.y3a_c00193{bottom:412.133333pt;}
.y39_c00193{bottom:440.000000pt;}
.y2c_c00193{bottom:440.933333pt;}
.y2b_c00193{bottom:456.933333pt;}
.y38_c00193{bottom:459.733333pt;}
.y37_c00193{bottom:475.466667pt;}
.y2a_c00193{bottom:476.800000pt;}
.y36_c00193{bottom:491.466667pt;}
.y29_c00193{bottom:492.800000pt;}
.y35_c00193{bottom:507.200000pt;}
.y28_c00193{bottom:508.533333pt;}
.y27_c00193{bottom:524.533333pt;}
.y34_c00193{bottom:526.666667pt;}
.y26_c00193{bottom:540.133333pt;}
.y25_c00193{bottom:555.866667pt;}
.y24_c00193{bottom:571.733333pt;}
.y23_c00193{bottom:587.733333pt;}
.y22_c00193{bottom:603.466667pt;}
.y21_c00193{bottom:617.600000pt;}
.y33_c00193{bottom:626.800000pt;}
.y20_c00193{bottom:633.600000pt;}
.y32_c00193{bottom:642.800000pt;}
.y1f_c00193{bottom:652.800000pt;}
.y31_c00193{bottom:658.533333pt;}
.y1e_c00193{bottom:668.800000pt;}
.y30_c00193{bottom:674.266667pt;}
.y1d_c00193{bottom:684.800000pt;}
.y1c_c00193{bottom:700.533333pt;}
.y1b_c00193{bottom:700.800000pt;}
.y1a_c00193{bottom:716.533333pt;}
.y19_c00193{bottom:717.066667pt;}
.y18_c00193{bottom:722.933333pt;}
.y17_c00193{bottom:731.866667pt;}
.y16_c00193{bottom:733.066667pt;}
.y15_c00193{bottom:748.400000pt;}
.y14_c00193{bottom:763.733333pt;}
.y13_c00193{bottom:770.400000pt;}
.y10_c00193{bottom:772.133333pt;}
.y11_c00193{bottom:772.400000pt;}
.y12_c00193{bottom:773.333333pt;}
.yf_c00193{bottom:781.733333pt;}
.ye_c00193{bottom:794.266667pt;}
.yd_c00193{bottom:811.200000pt;}
.yc_c00193{bottom:828.133333pt;}
.yb_c00193{bottom:844.133333pt;}
.ya_c00193{bottom:862.400000pt;}
.y9_c00193{bottom:880.000000pt;}
.y8_c00193{bottom:895.333333pt;}
.y7_c00193{bottom:911.333333pt;}
.y6_c00193{bottom:926.666667pt;}
.y5_c00193{bottom:939.466667pt;}
.y2f_c00193{bottom:946.533333pt;}
.y4_c00193{bottom:955.200000pt;}
.y2e_c00193{bottom:970.533333pt;}
.y3_c00193{bottom:971.200000pt;}
.y2d_c00193{bottom:986.266667pt;}
.y2_c00193{bottom:986.933333pt;}
.y1_c00193{bottom:1010.533333pt;}
.h7_c00193{height:21.333333pt;}
.h9_c00193{height:42.666667pt;}
.h8_c00193{height:48.000000pt;}
.h5_c00193{height:53.333333pt;}
.h6_c00193{height:57.066667pt;}
.h4_c00193{height:58.666667pt;}
.h3_c00193{height:64.000000pt;}
.h2_c00193{height:112.000000pt;}
.h1_c00193{height:1128.666667pt;}
.h0_c00193{height:1128.960043pt;}
.w1_c00193{width:856.000000pt;}
.w0_c00193{width:856.319987pt;}
.x0_c00193{left:0.000000pt;}
.x159_c00193{left:154.533333pt;}
.xd2_c00193{left:156.133333pt;}
.x65_c00193{left:158.133333pt;}
.x1_c00193{left:159.733333pt;}
.x117_c00193{left:168.666667pt;}
.x8b_c00193{left:170.666667pt;}
.xd8_c00193{left:171.866667pt;}
.x39_c00193{left:173.466667pt;}
.xf8_c00193{left:175.066667pt;}
.x10e_c00193{left:178.266667pt;}
.x135_c00193{left:181.200000pt;}
.x12e_c00193{left:182.800000pt;}
.x152_c00193{left:184.933333pt;}
.x121_c00193{left:186.133333pt;}
.xcb_c00193{left:187.466667pt;}
.x104_c00193{left:189.066667pt;}
.x28_c00193{left:191.066667pt;}
.x5b_c00193{left:194.266667pt;}
.x66_c00193{left:195.600000pt;}
.x118_c00193{left:198.133333pt;}
.x72_c00193{left:199.333333pt;}
.xc4_c00193{left:200.933333pt;}
.x14b_c00193{left:201.866667pt;}
.x3a_c00193{left:204.133333pt;}
.x4e_c00193{left:206.133333pt;}
.x14e_c00193{left:207.066667pt;}
.x10f_c00193{left:209.600000pt;}
.x156_c00193{left:211.066667pt;}
.x7e_c00193{left:212.133333pt;}
.xac_c00193{left:214.666667pt;}
.x7c_c00193{left:215.733333pt;}
.xa1_c00193{left:216.800000pt;}
.xe5_c00193{left:218.533333pt;}
.x73_c00193{left:220.400000pt;}
.xf9_c00193{left:221.466667pt;}
.xaf_c00193{left:224.000000pt;}
.x5c_c00193{left:224.933333pt;}
.xdf_c00193{left:226.133333pt;}
.x4f_c00193{left:227.200000pt;}
.x29_c00193{left:229.200000pt;}
.x7f_c00193{left:230.666667pt;}
.x98_c00193{left:232.933333pt;}
.x46_c00193{left:235.200000pt;}
.xa2_c00193{left:236.266667pt;}
.x74_c00193{left:237.733333pt;}
.x8c_c00193{left:239.200000pt;}
.x10a_c00193{left:240.800000pt;}
.xc5_c00193{left:241.866667pt;}
.xd1_c00193{left:245.333333pt;}
.x50_c00193{left:246.400000pt;}
.x3b_c00193{left:249.600000pt;}
.x94_c00193{left:252.133333pt;}
.x14c_c00193{left:253.333333pt;}
.x67_c00193{left:254.533333pt;}
.xfa_c00193{left:255.733333pt;}
.x146_c00193{left:256.666667pt;}
.x1a_c00193{left:258.133333pt;}
.x12f_c00193{left:262.800000pt;}
.xa3_c00193{left:264.800000pt;}
.xcc_c00193{left:265.866667pt;}
.x47_c00193{left:267.866667pt;}
.x99_c00193{left:269.733333pt;}
.xd3_c00193{left:271.333333pt;}
.xb9_c00193{left:272.933333pt;}
.xdd_c00193{left:274.000000pt;}
.xfc_c00193{left:276.266667pt;}
.xa4_c00193{left:278.933333pt;}
.x75_c00193{left:280.666667pt;}
.xce_c00193{left:282.133333pt;}
.x110_c00193{left:283.600000pt;}
.xfd_c00193{left:284.933333pt;}
.x8d_c00193{left:285.866667pt;}
.x105_c00193{left:288.000000pt;}
.x130_c00193{left:290.133333pt;}
.x13f_c00193{left:291.200000pt;}
.x48_c00193{left:292.533333pt;}
.x13b_c00193{left:293.866667pt;}
.x2a_c00193{left:295.066667pt;}
.x137_c00193{left:296.000000pt;}
.x68_c00193{left:297.466667pt;}
.x1b_c00193{left:299.066667pt;}
.x10d_c00193{left:300.400000pt;}
.x51_c00193{left:301.733333pt;}
.x2b_c00193{left:302.800000pt;}
.x140_c00193{left:303.733333pt;}
.xc2_c00193{left:304.800000pt;}
.x3c_c00193{left:306.533333pt;}
.x1c_c00193{left:308.400000pt;}
.x131_c00193{left:309.333333pt;}
.x10b_c00193{left:310.933333pt;}
.x106_c00193{left:313.333333pt;}
.x80_c00193{left:314.800000pt;}
.xc6_c00193{left:316.400000pt;}
.xa5_c00193{left:318.000000pt;}
.x10c_c00193{left:319.866667pt;}
.x9a_c00193{left:321.600000pt;}
.x141_c00193{left:322.666667pt;}
.x122_c00193{left:323.600000pt;}
.x69_c00193{left:325.333333pt;}
.x5d_c00193{left:326.400000pt;}
.x3d_c00193{left:328.000000pt;}
.x138_c00193{left:328.933333pt;}
.x81_c00193{left:330.533333pt;}
.x14d_c00193{left:331.733333pt;}
.xba_c00193{left:333.466667pt;}
.xd4_c00193{left:334.400000pt;}
.x107_c00193{left:336.000000pt;}
.x119_c00193{left:337.600000pt;}
.x1d_c00193{left:338.533333pt;}
.x15a_c00193{left:339.466667pt;}
.x95_c00193{left:341.066667pt;}
.xa6_c00193{left:342.666667pt;}
.xfe_c00193{left:344.400000pt;}
.x49_c00193{left:346.266667pt;}
.x52_c00193{left:347.200000pt;}
.x109_c00193{left:348.933333pt;}
.xcf_c00193{left:350.266667pt;}
.x76_c00193{left:351.333333pt;}
.x147_c00193{left:353.600000pt;}
.x11a_c00193{left:354.533333pt;}
.xd5_c00193{left:356.533333pt;}
.x1e_c00193{left:358.000000pt;}
.x3e_c00193{left:360.933333pt;}
.xe0_c00193{left:362.533333pt;}
.x96_c00193{left:365.733333pt;}
.x4a_c00193{left:367.066667pt;}
.x123_c00193{left:368.133333pt;}
.xb0_c00193{left:369.866667pt;}
.xc7_c00193{left:370.800000pt;}
.x2c_c00193{left:372.533333pt;}
.x8e_c00193{left:373.866667pt;}
.x2_c00193{left:374.800000pt;}
.xcd_c00193{left:376.933333pt;}
.xc3_c00193{left:379.066667pt;}
.x157_c00193{left:381.066667pt;}
.xd9_c00193{left:382.133333pt;}
.x3f_c00193{left:383.600000pt;}
.x9b_c00193{left:386.000000pt;}
.xd6_c00193{left:386.933333pt;}
.x153_c00193{left:387.866667pt;}
.xfb_c00193{left:388.933333pt;}
.xff_c00193{left:391.466667pt;}
.x1f_c00193{left:393.866667pt;}
.x77_c00193{left:395.866667pt;}
.x2d_c00193{left:398.133333pt;}
.x82_c00193{left:401.333333pt;}
.x4b_c00193{left:403.866667pt;}
.xa7_c00193{left:405.066667pt;}
.x2e_c00193{left:408.400000pt;}
.xb1_c00193{left:410.800000pt;}
.x150_c00193{left:411.733333pt;}
.x53_c00193{left:412.800000pt;}
.x108_c00193{left:414.400000pt;}
.x20_c00193{left:416.000000pt;}
.x132_c00193{left:417.466667pt;}
.x124_c00193{left:418.400000pt;}
.x83_c00193{left:419.866667pt;}
.xb2_c00193{left:421.333333pt;}
.xc8_c00193{left:423.200000pt;}
.x2f_c00193{left:424.666667pt;}
.xa8_c00193{left:426.800000pt;}
.xbb_c00193{left:428.800000pt;}
.xd0_c00193{left:430.933333pt;}
.xda_c00193{left:432.400000pt;}
.x21_c00193{left:435.200000pt;}
.xd7_c00193{left:438.400000pt;}
.x4c_c00193{left:439.333333pt;}
.x111_c00193{left:441.333333pt;}
.x9c_c00193{left:442.266667pt;}
.x125_c00193{left:443.333333pt;}
.xdb_c00193{left:445.466667pt;}
.xbc_c00193{left:447.333333pt;}
.xde_c00193{left:449.866667pt;}
.xb3_c00193{left:450.800000pt;}
.x6a_c00193{left:465.200000pt;}
.x5e_c00193{left:473.333333pt;}
.x84_c00193{left:474.266667pt;}
.x11b_c00193{left:485.466667pt;}
.x154_c00193{left:487.333333pt;}
.xe6_c00193{left:488.266667pt;}
.x30_c00193{left:489.333333pt;}
.x3_c00193{left:490.266667pt;}
.x142_c00193{left:496.266667pt;}
.x11c_c00193{left:498.533333pt;}
.xe1_c00193{left:500.133333pt;}
.x54_c00193{left:505.333333pt;}
.x4_c00193{left:507.866667pt;}
.x155_c00193{left:508.800000pt;}
.xa9_c00193{left:510.000000pt;}
.x97_c00193{left:511.333333pt;}
.xbd_c00193{left:512.933333pt;}
.x31_c00193{left:514.933333pt;}
.xf1_c00193{left:516.933333pt;}
.x22_c00193{left:518.933333pt;}
.x78_c00193{left:521.200000pt;}
.x5f_c00193{left:523.200000pt;}
.x112_c00193{left:525.466667pt;}
.xaa_c00193{left:527.600000pt;}
.x85_c00193{left:528.933333pt;}
.xe7_c00193{left:530.800000pt;}
.x6b_c00193{left:531.733333pt;}
.x126_c00193{left:533.200000pt;}
.x32_c00193{left:534.133333pt;}
.xb7_c00193{left:535.066667pt;}
.xf5_c00193{left:536.400000pt;}
.xeb_c00193{left:537.600000pt;}
.x13c_c00193{left:538.666667pt;}
.x5_c00193{left:539.600000pt;}
.x40_c00193{left:540.800000pt;}
.x60_c00193{left:541.733333pt;}
.x9d_c00193{left:542.800000pt;}
.xe8_c00193{left:544.533333pt;}
.x127_c00193{left:545.733333pt;}
.xe_c00193{left:547.466667pt;}
.x4d_c00193{left:548.800000pt;}
.xb8_c00193{left:550.800000pt;}
.x6_c00193{left:552.133333pt;}
.x86_c00193{left:553.600000pt;}
.x8f_c00193{left:554.666667pt;}
.x11d_c00193{left:555.600000pt;}
.x55_c00193{left:559.066667pt;}
.xc9_c00193{left:560.533333pt;}
.xad_c00193{left:561.466667pt;}
.x12_c00193{left:563.466667pt;}
.x6c_c00193{left:564.400000pt;}
.x79_c00193{left:565.333333pt;}
.x7_c00193{left:567.466667pt;}
.x33_c00193{left:569.066667pt;}
.xec_c00193{left:571.200000pt;}
.x23_c00193{left:572.666667pt;}
.x128_c00193{left:574.533333pt;}
.x13_c00193{left:575.600000pt;}
.xf_c00193{left:576.533333pt;}
.x56_c00193{left:578.000000pt;}
.xb4_c00193{left:580.266667pt;}
.x13d_c00193{left:581.200000pt;}
.x6d_c00193{left:582.266667pt;}
.xe2_c00193{left:583.600000pt;}
.x11e_c00193{left:587.333333pt;}
.xf6_c00193{left:588.533333pt;}
.x14_c00193{left:590.266667pt;}
.x158_c00193{left:592.000000pt;}
.xed_c00193{left:592.933333pt;}
.x8_c00193{left:594.666667pt;}
.x13e_c00193{left:595.600000pt;}
.xea_c00193{left:596.666667pt;}
.x87_c00193{left:597.733333pt;}
.x14f_c00193{left:598.800000pt;}
.x129_c00193{left:599.866667pt;}
.x34_c00193{left:600.800000pt;}
.x57_c00193{left:602.933333pt;}
.xdc_c00193{left:605.733333pt;}
.x7d_c00193{left:607.733333pt;}
.x61_c00193{left:609.466667pt;}
.x151_c00193{left:610.666667pt;}
.x9e_c00193{left:612.000000pt;}
.x24_c00193{left:613.333333pt;}
.x113_c00193{left:614.800000pt;}
.xca_c00193{left:615.866667pt;}
.x41_c00193{left:616.933333pt;}
.x139_c00193{left:617.866667pt;}
.x11f_c00193{left:619.066667pt;}
.x25_c00193{left:621.066667pt;}
.x6e_c00193{left:623.600000pt;}
.x143_c00193{left:625.200000pt;}
.x10_c00193{left:626.133333pt;}
.xe9_c00193{left:627.866667pt;}
.x62_c00193{left:628.933333pt;}
.x58_c00193{left:630.133333pt;}
.x35_c00193{left:631.466667pt;}
.xe3_c00193{left:633.200000pt;}
.x42_c00193{left:635.466667pt;}
.x9_c00193{left:636.533333pt;}
.x15_c00193{left:638.266667pt;}
.x14a_c00193{left:640.133333pt;}
.x148_c00193{left:641.600000pt;}
.x6f_c00193{left:642.533333pt;}
.x26_c00193{left:643.466667pt;}
.x7a_c00193{left:645.200000pt;}
.x12a_c00193{left:651.066667pt;}
.x36_c00193{left:652.266667pt;}
.x90_c00193{left:653.200000pt;}
.x100_c00193{left:654.533333pt;}
.x120_c00193{left:657.466667pt;}
.x16_c00193{left:659.066667pt;}
.x63_c00193{left:660.666667pt;}
.xbe_c00193{left:662.400000pt;}
.x12b_c00193{left:663.866667pt;}
.x114_c00193{left:665.333333pt;}
.xf2_c00193{left:667.600000pt;}
.x149_c00193{left:668.800000pt;}
.xa_c00193{left:670.400000pt;}
.x59_c00193{left:671.733333pt;}
.x91_c00193{left:672.666667pt;}
.xae_c00193{left:674.400000pt;}
.xf4_c00193{left:676.533333pt;}
.xbf_c00193{left:679.333333pt;}
.x115_c00193{left:681.066667pt;}
.x133_c00193{left:682.533333pt;}
.x43_c00193{left:683.733333pt;}
.x27_c00193{left:685.066667pt;}
.xb_c00193{left:686.666667pt;}
.x88_c00193{left:688.666667pt;}
.x37_c00193{left:691.600000pt;}
.x7b_c00193{left:692.933333pt;}
.x17_c00193{left:694.000000pt;}
.xe4_c00193{left:696.266667pt;}
.x5a_c00193{left:697.333333pt;}
.x89_c00193{left:698.933333pt;}
.x102_c00193{left:700.133333pt;}
.xee_c00193{left:701.466667pt;}
.xc_c00193{left:702.933333pt;}
.x70_c00193{left:704.666667pt;}
.x64_c00193{left:705.733333pt;}
.x12c_c00193{left:706.666667pt;}
.xb5_c00193{left:708.666667pt;}
.x92_c00193{left:711.333333pt;}
.x44_c00193{left:715.466667pt;}
.x144_c00193{left:719.066667pt;}
.xf0_c00193{left:720.800000pt;}
.x9f_c00193{left:722.666667pt;}
.xf7_c00193{left:723.866667pt;}
.xb6_c00193{left:725.600000pt;}
.x18_c00193{left:726.933333pt;}
.xef_c00193{left:728.000000pt;}
.xc0_c00193{left:730.800000pt;}
.x12d_c00193{left:732.933333pt;}
.x8a_c00193{left:733.866667pt;}
.xa0_c00193{left:737.066667pt;}
.x38_c00193{left:738.266667pt;}
.xf3_c00193{left:740.266667pt;}
.x11_c00193{left:741.733333pt;}
.x136_c00193{left:744.133333pt;}
.x145_c00193{left:745.600000pt;}
.x13a_c00193{left:747.866667pt;}
.x71_c00193{left:748.800000pt;}
.xd_c00193{left:750.000000pt;}
.x93_c00193{left:752.933333pt;}
.xab_c00193{left:755.066667pt;}
.x116_c00193{left:756.533333pt;}
.x134_c00193{left:757.466667pt;}
.x45_c00193{left:758.400000pt;}
.xc1_c00193{left:761.733333pt;}
.x103_c00193{left:764.400000pt;}
.x101_c00193{left:766.133333pt;}
.x19_c00193{left:770.133333pt;}
}





/* 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_c00194 {
    display:none;
  }
  .loading-indicator_c00194.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00194 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_c00194 { 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_c00194" -> "#page-container .classname_c00194")
 */
.pf_c00194 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00194 { /* 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_c00194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00194 { /* 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_c00194 { /* 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_c00194 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00194 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00194 {overflow:visible;}
  }
}
.c_c00194 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00194 { /* 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_c00194:after { /* webkit #35443 */
  content: '';
}
.t_c00194:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00194 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 */
}
.__c00194 { /* 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_c00194 { /* info for Javascript */
  display:none;
}
.l_c00194 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00194 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00194 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00194: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_c00194 {
    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_c00194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00194.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_c00194 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00194;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.000000;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;}
.m10f_c00194{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.me2_c00194{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00194{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.m100_c00194{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.maf_c00194{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00194{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mae_c00194{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m85_c00194{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00194{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00194{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00194{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m58_c00194{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00194{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m16_c00194{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00194{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m43_c00194{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m114_c00194{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00194{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.md7_c00194{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00194{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00194{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mf_c00194{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00194{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00194{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m87_c00194{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m111_c00194{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mac_c00194{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00194{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00194{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m90_c00194{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m31_c00194{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00194{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me6_c00194{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00194{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m103_c00194{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m86_c00194{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m65_c00194{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma_c00194{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m41_c00194{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md2_c00194{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00194{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m50_c00194{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00194{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m80_c00194{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m59_c00194{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mee_c00194{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00194{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00194{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00194{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00194{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mff_c00194{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m25_c00194{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m57_c00194{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00194{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00194{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00194{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m13_c00194{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00194{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md1_c00194{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m3_c00194{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00194{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mef_c00194{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00194{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m69_c00194{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00194{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m107_c00194{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m51_c00194{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00194{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m23_c00194{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m64_c00194{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.md6_c00194{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00194{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m77_c00194{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m61_c00194{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m7_c00194{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00194{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m46_c00194{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00194{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m62_c00194{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m5_c00194{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00194{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00194{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00194{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m66_c00194{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00194{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m40_c00194{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00194{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m12_c00194{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m82_c00194{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m36_c00194{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m78_c00194{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00194{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00194{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00194{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00194{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00194{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m21_c00194{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mca_c00194{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00194{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m76_c00194{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m38_c00194{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00194{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00194{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m67_c00194{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me5_c00194{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc_c00194{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00194{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00194{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md_c00194{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4_c00194{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00194{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00194{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00194{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m28_c00194{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m34_c00194{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00194{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m48_c00194{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m45_c00194{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.me9_c00194{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m39_c00194{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m33_c00194{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00194{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00194{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.me_c00194{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m20_c00194{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m52_c00194{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00194{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00194{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00194{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m35_c00194{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00194{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md5_c00194{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8_c00194{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m17_c00194{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00194{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m15_c00194{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00194{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m95_c00194{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00194{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00194{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00194{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m75_c00194{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mde_c00194{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00194{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00194{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00194{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00194{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m37_c00194{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00194{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mce_c00194{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m60_c00194{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m27_c00194{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m44_c00194{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m88_c00194{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00194{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00194{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m14_c00194{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00194{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00194{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mab_c00194{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00194{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m2_c00194{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m53_c00194{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00194{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me8_c00194{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00194{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m26_c00194{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m68_c00194{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m108_c00194{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m29_c00194{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00194{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00194{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m30_c00194{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m18_c00194{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m22_c00194{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00194{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m49_c00194{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00194{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mad_c00194{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m47_c00194{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00194{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m92_c00194{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00194{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m84_c00194{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00194{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m70_c00194{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m63_c00194{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m19_c00194{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00194{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00194{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00194{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m42_c00194{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00194{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00194{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md0_c00194{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m24_c00194{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md9_c00194{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00194{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00194{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00194{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00194{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00194{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m32_c00194{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md3_c00194{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.med_c00194{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m71_c00194{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00194{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00194{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.me3_c00194{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m89_c00194{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m74_c00194{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m96_c00194{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m109_c00194{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me0_c00194{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m73_c00194{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00194{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11_c00194{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md4_c00194{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m97_c00194{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);}
.m56_c00194{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00194{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00194{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00194{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb_c00194{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00194{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me1_c00194{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m72_c00194{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m91_c00194{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m99_c00194{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00194{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00194{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00194{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00194{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me4_c00194{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00194{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00194{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00194{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mda_c00194{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mec_c00194{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m94_c00194{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m102_c00194{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m81_c00194{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mea_c00194{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00194{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00194{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.meb_c00194{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m9_c00194{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m112_c00194{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00194{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00194{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m105_c00194{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m106_c00194{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m10_c00194{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m79_c00194{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m98_c00194{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m110_c00194{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00194{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m83_c00194{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00194{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m115_c00194{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m93_c00194{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m54_c00194{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00194{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.md8_c00194{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m101_c00194{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.me7_c00194{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m55_c00194{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m104_c00194{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.m113_c00194{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.maa_c00194{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m0_c00194{transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00194{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00194{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00194{transform:matrix(0.556750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00194{transform:matrix(0.561000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561000,0.000000,0.000000,0.250000,0,0);}
.mba_c00194{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls0_c00194{letter-spacing:0.000000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{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__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00194{word-spacing:-9.722222px;}
.wse_c00194{word-spacing:-9.439490px;}
.ws2_c00194{word-spacing:-9.396226px;}
.ws0_c00194{word-spacing:-6.926417px;}
.ws6_c00194{word-spacing:-5.121019px;}
.ws4_c00194{word-spacing:-3.324841px;}
.ws5_c00194{word-spacing:-1.401747px;}
.ws12_c00194{word-spacing:0.000000px;}
.wsd_c00194{word-spacing:0.970260px;}
.ws10_c00194{word-spacing:3.206273px;}
.ws3_c00194{word-spacing:3.859599px;}
.ws11_c00194{word-spacing:10.937500px;}
.wsf_c00194{word-spacing:12.398355px;}
.ws8_c00194{word-spacing:19.994638px;}
.ws1_c00194{word-spacing:20.606061px;}
.wsa_c00194{word-spacing:22.142857px;}
.wsc_c00194{word-spacing:26.428954px;}
.ws9_c00194{word-spacing:32.250000px;}
.wsb_c00194{word-spacing:36.000000px;}
._0_c00194{width:39.681223px;}
._1_c00194{width:50.211796px;}
._2_c00194{width:53.428954px;}
._4_c00194{width:64.642857px;}
._3_c00194{width:66.750000px;}
.fc0_c00194{color:transparent;}
.fs5_c00194{font-size:24.000000px;}
.fs6_c00194{font-size:30.000000px;}
.fs7_c00194{font-size:36.000000px;}
.fs4_c00194{font-size:54.000000px;}
.fs2_c00194{font-size:60.000000px;}
.fs1_c00194{font-size:66.000000px;}
.fs3_c00194{font-size:72.000000px;}
.fs0_c00194{font-size:78.000000px;}
.y0_c00194{bottom:0.000000px;}
.y73_c00194{bottom:9.300000px;}
.y75_c00194{bottom:173.100000px;}
.y40_c00194{bottom:190.200000px;}
.y72_c00194{bottom:192.900000px;}
.y71_c00194{bottom:207.300000px;}
.y3f_c00194{bottom:208.500000px;}
.y70_c00194{bottom:222.450000px;}
.y35_c00194{bottom:230.400000px;}
.y6f_c00194{bottom:239.700000px;}
.y34_c00194{bottom:248.400000px;}
.y6e_c00194{bottom:258.900000px;}
.y3e_c00194{bottom:264.600000px;}
.y33_c00194{bottom:266.100000px;}
.y3d_c00194{bottom:275.700000px;}
.y6d_c00194{bottom:276.900000px;}
.y32_c00194{bottom:280.050000px;}
.y3c_c00194{bottom:289.350000px;}
.y31_c00194{bottom:294.150000px;}
.y6c_c00194{bottom:295.200000px;}
.y3b_c00194{bottom:303.750000px;}
.y30_c00194{bottom:306.750000px;}
.y37_c00194{bottom:307.800000px;}
.y6b_c00194{bottom:315.000000px;}
.y2f_c00194{bottom:321.150000px;}
.y3a_c00194{bottom:321.450000px;}
.y36_c00194{bottom:322.200000px;}
.y38_c00194{bottom:324.750000px;}
.y6a_c00194{bottom:334.050000px;}
.y39_c00194{bottom:335.850000px;}
.y2e_c00194{bottom:337.350000px;}
.y2d_c00194{bottom:350.700000px;}
.y69_c00194{bottom:352.050000px;}
.y2c_c00194{bottom:366.900000px;}
.y68_c00194{bottom:367.200000px;}
.y2b_c00194{bottom:384.150000px;}
.y67_c00194{bottom:387.750000px;}
.y2a_c00194{bottom:403.200000px;}
.y66_c00194{bottom:414.000000px;}
.y29_c00194{bottom:425.250000px;}
.y65_c00194{bottom:431.700000px;}
.y28_c00194{bottom:443.550000px;}
.y64_c00194{bottom:449.700000px;}
.y27_c00194{bottom:461.250000px;}
.y63_c00194{bottom:466.950000px;}
.y26_c00194{bottom:479.250000px;}
.y62_c00194{bottom:487.200000px;}
.y25_c00194{bottom:496.500000px;}
.y61_c00194{bottom:505.500000px;}
.y24_c00194{bottom:518.250000px;}
.y60_c00194{bottom:523.500000px;}
.y23_c00194{bottom:537.000000px;}
.y5f_c00194{bottom:541.200000px;}
.y22_c00194{bottom:554.700000px;}
.y5e_c00194{bottom:558.900000px;}
.y21_c00194{bottom:576.000000px;}
.y5d_c00194{bottom:576.900000px;}
.y5c_c00194{bottom:594.600000px;}
.y20_c00194{bottom:594.750000px;}
.y5b_c00194{bottom:612.300000px;}
.y1f_c00194{bottom:612.450000px;}
.y5a_c00194{bottom:630.000000px;}
.y1e_c00194{bottom:630.150000px;}
.y59_c00194{bottom:647.700000px;}
.y1d_c00194{bottom:647.850000px;}
.y1c_c00194{bottom:665.550000px;}
.y58_c00194{bottom:669.300000px;}
.y1b_c00194{bottom:683.550000px;}
.y57_c00194{bottom:687.000000px;}
.y1a_c00194{bottom:701.250000px;}
.y56_c00194{bottom:704.700000px;}
.y19_c00194{bottom:718.950000px;}
.y55_c00194{bottom:722.700000px;}
.y54_c00194{bottom:740.400000px;}
.y18_c00194{bottom:740.700000px;}
.y53_c00194{bottom:758.400000px;}
.y17_c00194{bottom:758.700000px;}
.y52_c00194{bottom:776.100000px;}
.y16_c00194{bottom:776.700000px;}
.y51_c00194{bottom:794.100000px;}
.y15_c00194{bottom:794.400000px;}
.y50_c00194{bottom:811.800000px;}
.y14_c00194{bottom:812.400000px;}
.y4f_c00194{bottom:829.050000px;}
.y13_c00194{bottom:830.100000px;}
.y12_c00194{bottom:847.050000px;}
.y11_c00194{bottom:865.050000px;}
.y4e_c00194{bottom:882.750000px;}
.y10_c00194{bottom:883.050000px;}
.y4d_c00194{bottom:900.450000px;}
.yf_c00194{bottom:900.750000px;}
.y4c_c00194{bottom:918.150000px;}
.ye_c00194{bottom:918.450000px;}
.y4b_c00194{bottom:935.850000px;}
.yd_c00194{bottom:936.150000px;}
.y4a_c00194{bottom:953.550000px;}
.yc_c00194{bottom:953.850000px;}
.y74_c00194{bottom:970.950000px;}
.y49_c00194{bottom:971.250000px;}
.yb_c00194{bottom:971.850000px;}
.y48_c00194{bottom:989.250000px;}
.ya_c00194{bottom:989.550000px;}
.y47_c00194{bottom:1006.500000px;}
.y9_c00194{bottom:1007.250000px;}
.y46_c00194{bottom:1024.500000px;}
.y8_c00194{bottom:1025.250000px;}
.y45_c00194{bottom:1042.200000px;}
.y7_c00194{bottom:1042.950000px;}
.y44_c00194{bottom:1059.900000px;}
.y6_c00194{bottom:1060.650000px;}
.y43_c00194{bottom:1078.200000px;}
.y5_c00194{bottom:1078.650000px;}
.y42_c00194{bottom:1095.450000px;}
.y4_c00194{bottom:1095.900000px;}
.y41_c00194{bottom:1113.150000px;}
.y3_c00194{bottom:1113.900000px;}
.y2_c00194{bottom:1139.100000px;}
.y1_c00194{bottom:1140.150000px;}
.h7_c00194{height:24.000000px;}
.h8_c00194{height:30.000000px;}
.h9_c00194{height:36.000000px;}
.h6_c00194{height:54.000000px;}
.h4_c00194{height:60.000000px;}
.h3_c00194{height:66.000000px;}
.h5_c00194{height:72.000000px;}
.h2_c00194{height:78.000000px;}
.h1_c00194{height:1268.250000px;}
.h0_c00194{height:1268.279937px;}
.w1_c00194{width:963.000000px;}
.w0_c00194{width:963.359985px;}
.x0_c00194{left:0.000000px;}
.x6a_c00194{left:104.100000px;}
.x83_c00194{left:105.150000px;}
.x8f_c00194{left:120.750000px;}
.x23_c00194{left:123.300000px;}
.xa_c00194{left:124.650000px;}
.x93_c00194{left:134.700000px;}
.x96_c00194{left:136.500000px;}
.x48_c00194{left:142.800000px;}
.x3_c00194{left:144.750000px;}
.x87_c00194{left:145.950000px;}
.xb_c00194{left:147.300000px;}
.x84_c00194{left:148.350000px;}
.x6d_c00194{left:151.950000px;}
.x74_c00194{left:154.350000px;}
.x94_c00194{left:156.600000px;}
.x97_c00194{left:158.100000px;}
.x59_c00194{left:162.150000px;}
.xc_c00194{left:163.200000px;}
.x8d_c00194{left:164.550000px;}
.x1c_c00194{left:166.350000px;}
.x3c_c00194{left:168.600000px;}
.x2d_c00194{left:169.800000px;}
.x89_c00194{left:171.900000px;}
.x69_c00194{left:173.850000px;}
.x7d_c00194{left:174.900000px;}
.x82_c00194{left:176.100000px;}
.x14_c00194{left:177.300000px;}
.x29_c00194{left:180.450000px;}
.x7e_c00194{left:181.650000px;}
.x24_c00194{left:183.000000px;}
.x75_c00194{left:184.350000px;}
.x7b_c00194{left:186.750000px;}
.x1d_c00194{left:187.950000px;}
.x49_c00194{left:191.100000px;}
.x33_c00194{left:192.300000px;}
.x15_c00194{left:194.250000px;}
.x4_c00194{left:195.900000px;}
.x4e_c00194{left:200.550000px;}
.x43_c00194{left:202.500000px;}
.x5e_c00194{left:203.550000px;}
.x70_c00194{left:207.000000px;}
.x5a_c00194{left:208.200000px;}
.x4a_c00194{left:210.150000px;}
.x1e_c00194{left:211.350000px;}
.x6e_c00194{left:213.150000px;}
.x90_c00194{left:214.950000px;}
.xd_c00194{left:216.150000px;}
.x7f_c00194{left:217.350000px;}
.x55_c00194{left:218.400000px;}
.x37_c00194{left:220.500000px;}
.x16_c00194{left:221.550000px;}
.x3d_c00194{left:224.400000px;}
.x6b_c00194{left:225.450000px;}
.x5b_c00194{left:227.250000px;}
.x66_c00194{left:228.300000px;}
.x2e_c00194{left:230.700000px;}
.xe_c00194{left:234.450000px;}
.x9b_c00194{left:236.550000px;}
.x17_c00194{left:237.750000px;}
.x80_c00194{left:240.450000px;}
.x95_c00194{left:241.500000px;}
.x7c_c00194{left:242.550000px;}
.x25_c00194{left:244.500000px;}
.x85_c00194{left:245.550000px;}
.x63_c00194{left:247.500000px;}
.x5_c00194{left:251.700000px;}
.x2f_c00194{left:254.100000px;}
.x34_c00194{left:255.300000px;}
.x76_c00194{left:256.350000px;}
.x3e_c00194{left:257.850000px;}
.xf_c00194{left:259.950000px;}
.x98_c00194{left:261.000000px;}
.x1f_c00194{left:262.800000px;}
.x4f_c00194{left:265.050000px;}
.x64_c00194{left:266.550000px;}
.x8a_c00194{left:267.600000px;}
.x91_c00194{left:270.300000px;}
.x38_c00194{left:271.950000px;}
.x2a_c00194{left:273.750000px;}
.x56_c00194{left:277.350000px;}
.x5f_c00194{left:278.700000px;}
.x77_c00194{left:280.050000px;}
.x8e_c00194{left:281.250000px;}
.x6_c00194{left:284.100000px;}
.x71_c00194{left:285.150000px;}
.x3f_c00194{left:289.500000px;}
.x4b_c00194{left:291.450000px;}
.x50_c00194{left:294.600000px;}
.x81_c00194{left:295.950000px;}
.x44_c00194{left:297.900000px;}
.x57_c00194{left:298.950000px;}
.x72_c00194{left:300.300000px;}
.x26_c00194{left:302.400000px;}
.x5c_c00194{left:303.600000px;}
.x4c_c00194{left:305.100000px;}
.x30_c00194{left:307.350000px;}
.x7_c00194{left:308.550000px;}
.x20_c00194{left:311.100000px;}
.x6f_c00194{left:312.600000px;}
.x67_c00194{left:314.400000px;}
.x35_c00194{left:315.750000px;}
.x60_c00194{left:317.550000px;}
.x2b_c00194{left:318.750000px;}
.x18_c00194{left:320.850000px;}
.x10_c00194{left:322.950000px;}
.x8_c00194{left:324.750000px;}
.x5d_c00194{left:328.500000px;}
.x39_c00194{left:330.600000px;}
.x19_c00194{left:333.450000px;}
.x51_c00194{left:334.500000px;}
.x27_c00194{left:336.600000px;}
.x9a_c00194{left:337.950000px;}
.x31_c00194{left:340.050000px;}
.x8b_c00194{left:343.200000px;}
.x1_c00194{left:345.900000px;}
.x11_c00194{left:347.400000px;}
.x92_c00194{left:349.350000px;}
.x3a_c00194{left:351.150000px;}
.x78_c00194{left:353.550000px;}
.x1a_c00194{left:359.700000px;}
.x8c_c00194{left:361.200000px;}
.x9_c00194{left:362.250000px;}
.x40_c00194{left:366.600000px;}
.x45_c00194{left:367.800000px;}
.x12_c00194{left:369.750000px;}
.x68_c00194{left:372.600000px;}
.x9c_c00194{left:374.100000px;}
.x21_c00194{left:375.600000px;}
.x46_c00194{left:376.800000px;}
.x86_c00194{left:378.150000px;}
.x1b_c00194{left:380.250000px;}
.x79_c00194{left:382.350000px;}
.x73_c00194{left:384.600000px;}
.x65_c00194{left:387.150000px;}
.x2c_c00194{left:388.950000px;}
.x4d_c00194{left:390.000000px;}
.x61_c00194{left:393.150000px;}
.x36_c00194{left:396.000000px;}
.x99_c00194{left:398.100000px;}
.x54_c00194{left:399.150000px;}
.x41_c00194{left:401.100000px;}
.x52_c00194{left:406.500000px;}
.x22_c00194{left:407.700000px;}
.x58_c00194{left:410.550000px;}
.x47_c00194{left:412.800000px;}
.x62_c00194{left:414.450000px;}
.x53_c00194{left:417.600000px;}
.x32_c00194{left:418.650000px;}
.x42_c00194{left:421.650000px;}
.x7a_c00194{left:424.050000px;}
.x3b_c00194{left:426.000000px;}
.x13_c00194{left:427.650000px;}
.x6c_c00194{left:428.850000px;}
.x28_c00194{left:429.900000px;}
.x88_c00194{left:431.100000px;}
.xd6_c00194{left:461.400000px;}
.xf4_c00194{left:468.900000px;}
.x13f_c00194{left:475.200000px;}
.x139_c00194{left:477.300000px;}
.x10f_c00194{left:478.800000px;}
.x9d_c00194{left:479.850000px;}
.xee_c00194{left:480.900000px;}
.x140_c00194{left:489.300000px;}
.xfe_c00194{left:495.150000px;}
.xbc_c00194{left:497.850000px;}
.x12e_c00194{left:498.900000px;}
.xc9_c00194{left:500.250000px;}
.xa6_c00194{left:501.300000px;}
.x138_c00194{left:502.500000px;}
.xe3_c00194{left:505.950000px;}
.x133_c00194{left:507.000000px;}
.xe7_c00194{left:508.050000px;}
.x12b_c00194{left:511.950000px;}
.x115_c00194{left:513.600000px;}
.xd7_c00194{left:515.100000px;}
.x137_c00194{left:516.300000px;}
.xce_c00194{left:518.100000px;}
.x113_c00194{left:520.950000px;}
.x9e_c00194{left:522.750000px;}
.xc2_c00194{left:524.100000px;}
.xfb_c00194{left:525.450000px;}
.x105_c00194{left:527.400000px;}
.xad_c00194{left:528.600000px;}
.xef_c00194{left:530.250000px;}
.xcf_c00194{left:531.450000px;}
.x131_c00194{left:533.100000px;}
.xec_c00194{left:534.150000px;}
.xd8_c00194{left:535.650000px;}
.xd1_c00194{left:537.600000px;}
.x9f_c00194{left:540.450000px;}
.xc3_c00194{left:543.900000px;}
.x10b_c00194{left:545.250000px;}
.x132_c00194{left:550.050000px;}
.xf6_c00194{left:552.600000px;}
.x12f_c00194{left:553.950000px;}
.xca_c00194{left:555.000000px;}
.xa7_c00194{left:559.950000px;}
.xb2_c00194{left:561.150000px;}
.xf7_c00194{left:564.450000px;}
.xff_c00194{left:565.650000px;}
.x11a_c00194{left:567.000000px;}
.x11d_c00194{left:568.650000px;}
.xfc_c00194{left:570.450000px;}
.xe8_c00194{left:571.500000px;}
.x135_c00194{left:573.000000px;}
.xbd_c00194{left:574.500000px;}
.x100_c00194{left:576.750000px;}
.x13a_c00194{left:577.950000px;}
.x114_c00194{left:580.350000px;}
.xd9_c00194{left:581.700000px;}
.xd0_c00194{left:582.900000px;}
.xa8_c00194{left:584.100000px;}
.x116_c00194{left:586.350000px;}
.xf1_c00194{left:587.850000px;}
.xf8_c00194{left:588.900000px;}
.xe4_c00194{left:592.650000px;}
.x106_c00194{left:595.200000px;}
.x122_c00194{left:597.450000px;}
.xb6_c00194{left:598.950000px;}
.xe9_c00194{left:600.300000px;}
.xbe_c00194{left:601.500000px;}
.xda_c00194{left:604.800000px;}
.xf0_c00194{left:606.150000px;}
.xae_c00194{left:607.500000px;}
.x12c_c00194{left:609.150000px;}
.xa0_c00194{left:610.950000px;}
.x13b_c00194{left:612.150000px;}
.xc4_c00194{left:614.100000px;}
.xd2_c00194{left:615.300000px;}
.x11e_c00194{left:618.300000px;}
.xcb_c00194{left:620.550000px;}
.x13c_c00194{left:623.550000px;}
.x117_c00194{left:624.900000px;}
.xa9_c00194{left:626.550000px;}
.x118_c00194{left:628.800000px;}
.x10c_c00194{left:630.450000px;}
.x110_c00194{left:632.250000px;}
.xc5_c00194{left:634.200000px;}
.xa1_c00194{left:636.900000px;}
.xaa_c00194{left:639.150000px;}
.xf2_c00194{left:640.350000px;}
.xaf_c00194{left:642.750000px;}
.x136_c00194{left:645.000000px;}
.xdb_c00194{left:646.500000px;}
.xfd_c00194{left:648.600000px;}
.xb7_c00194{left:651.150000px;}
.x10d_c00194{left:652.350000px;}
.xbf_c00194{left:653.400000px;}
.xf9_c00194{left:654.750000px;}
.xb3_c00194{left:656.550000px;}
.x125_c00194{left:658.650000px;}
.x107_c00194{left:662.850000px;}
.x123_c00194{left:664.800000px;}
.xb0_c00194{left:665.850000px;}
.x13e_c00194{left:667.350000px;}
.xb8_c00194{left:668.850000px;}
.xf3_c00194{left:670.200000px;}
.xc0_c00194{left:673.500000px;}
.x101_c00194{left:675.300000px;}
.xab_c00194{left:677.250000px;}
.x11f_c00194{left:679.200000px;}
.x108_c00194{left:680.550000px;}
.xe5_c00194{left:681.900000px;}
.x126_c00194{left:685.950000px;}
.xa2_c00194{left:687.600000px;}
.xd3_c00194{left:688.800000px;}
.x111_c00194{left:691.650000px;}
.x141_c00194{left:692.700000px;}
.xc6_c00194{left:694.350000px;}
.x120_c00194{left:695.700000px;}
.x11b_c00194{left:696.900000px;}
.x12d_c00194{left:698.700000px;}
.xf5_c00194{left:700.650000px;}
.xe6_c00194{left:702.450000px;}
.xdc_c00194{left:705.600000px;}
.xa3_c00194{left:707.400000px;}
.xd4_c00194{left:709.350000px;}
.xb9_c00194{left:710.550000px;}
.xc7_c00194{left:711.600000px;}
.x128_c00194{left:713.700000px;}
.xcc_c00194{left:715.350000px;}
.x12a_c00194{left:716.400000px;}
.x109_c00194{left:718.350000px;}
.xba_c00194{left:719.550000px;}
.x102_c00194{left:722.700000px;}
.x119_c00194{left:723.900000px;}
.x11c_c00194{left:725.400000px;}
.xdd_c00194{left:726.450000px;}
.xe1_c00194{left:730.500000px;}
.xb1_c00194{left:732.150000px;}
.xb4_c00194{left:733.200000px;}
.xde_c00194{left:736.200000px;}
.x10e_c00194{left:738.000000px;}
.x121_c00194{left:741.000000px;}
.x103_c00194{left:742.200000px;}
.xd5_c00194{left:743.250000px;}
.xea_c00194{left:744.300000px;}
.x10a_c00194{left:746.400000px;}
.xfa_c00194{left:747.600000px;}
.xc8_c00194{left:749.400000px;}
.xdf_c00194{left:750.600000px;}
.xbb_c00194{left:751.650000px;}
.x124_c00194{left:753.000000px;}
.xa4_c00194{left:755.700000px;}
.x129_c00194{left:757.200000px;}
.x104_c00194{left:759.150000px;}
.xcd_c00194{left:761.850000px;}
.xa5_c00194{left:763.650000px;}
.xc1_c00194{left:765.300000px;}
.x127_c00194{left:766.950000px;}
.xed_c00194{left:768.150000px;}
.x2_c00194{left:771.000000px;}
.xb5_c00194{left:774.150000px;}
.x112_c00194{left:775.200000px;}
.x130_c00194{left:777.000000px;}
.xeb_c00194{left:779.550000px;}
.x13d_c00194{left:781.350000px;}
.xac_c00194{left:782.400000px;}
.xe2_c00194{left:786.300000px;}
.x134_c00194{left:790.350000px;}
.xe0_c00194{left:794.550000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws7_c00194{word-spacing:-8.641975pt;}
.wse_c00194{word-spacing:-8.390658pt;}
.ws2_c00194{word-spacing:-8.352201pt;}
.ws0_c00194{word-spacing:-6.156815pt;}
.ws6_c00194{word-spacing:-4.552017pt;}
.ws4_c00194{word-spacing:-2.955414pt;}
.ws5_c00194{word-spacing:-1.245997pt;}
.ws12_c00194{word-spacing:0.000000pt;}
.wsd_c00194{word-spacing:0.862454pt;}
.ws10_c00194{word-spacing:2.850020pt;}
.ws3_c00194{word-spacing:3.430755pt;}
.ws11_c00194{word-spacing:9.722222pt;}
.wsf_c00194{word-spacing:11.020760pt;}
.ws8_c00194{word-spacing:17.773012pt;}
.ws1_c00194{word-spacing:18.316498pt;}
.wsa_c00194{word-spacing:19.682540pt;}
.wsc_c00194{word-spacing:23.492404pt;}
.ws9_c00194{word-spacing:28.666667pt;}
.wsb_c00194{word-spacing:32.000000pt;}
._0_c00194{width:35.272198pt;}
._1_c00194{width:44.632708pt;}
._2_c00194{width:47.492404pt;}
._4_c00194{width:57.460317pt;}
._3_c00194{width:59.333333pt;}
.fs5_c00194{font-size:21.333333pt;}
.fs6_c00194{font-size:26.666667pt;}
.fs7_c00194{font-size:32.000000pt;}
.fs4_c00194{font-size:48.000000pt;}
.fs2_c00194{font-size:53.333333pt;}
.fs1_c00194{font-size:58.666667pt;}
.fs3_c00194{font-size:64.000000pt;}
.fs0_c00194{font-size:69.333333pt;}
.y0_c00194{bottom:0.000000pt;}
.y73_c00194{bottom:8.266667pt;}
.y75_c00194{bottom:153.866667pt;}
.y40_c00194{bottom:169.066667pt;}
.y72_c00194{bottom:171.466667pt;}
.y71_c00194{bottom:184.266667pt;}
.y3f_c00194{bottom:185.333333pt;}
.y70_c00194{bottom:197.733333pt;}
.y35_c00194{bottom:204.800000pt;}
.y6f_c00194{bottom:213.066667pt;}
.y34_c00194{bottom:220.800000pt;}
.y6e_c00194{bottom:230.133333pt;}
.y3e_c00194{bottom:235.200000pt;}
.y33_c00194{bottom:236.533333pt;}
.y3d_c00194{bottom:245.066667pt;}
.y6d_c00194{bottom:246.133333pt;}
.y32_c00194{bottom:248.933333pt;}
.y3c_c00194{bottom:257.200000pt;}
.y31_c00194{bottom:261.466667pt;}
.y6c_c00194{bottom:262.400000pt;}
.y3b_c00194{bottom:270.000000pt;}
.y30_c00194{bottom:272.666667pt;}
.y37_c00194{bottom:273.600000pt;}
.y6b_c00194{bottom:280.000000pt;}
.y2f_c00194{bottom:285.466667pt;}
.y3a_c00194{bottom:285.733333pt;}
.y36_c00194{bottom:286.400000pt;}
.y38_c00194{bottom:288.666667pt;}
.y6a_c00194{bottom:296.933333pt;}
.y39_c00194{bottom:298.533333pt;}
.y2e_c00194{bottom:299.866667pt;}
.y2d_c00194{bottom:311.733333pt;}
.y69_c00194{bottom:312.933333pt;}
.y2c_c00194{bottom:326.133333pt;}
.y68_c00194{bottom:326.400000pt;}
.y2b_c00194{bottom:341.466667pt;}
.y67_c00194{bottom:344.666667pt;}
.y2a_c00194{bottom:358.400000pt;}
.y66_c00194{bottom:368.000000pt;}
.y29_c00194{bottom:378.000000pt;}
.y65_c00194{bottom:383.733333pt;}
.y28_c00194{bottom:394.266667pt;}
.y64_c00194{bottom:399.733333pt;}
.y27_c00194{bottom:410.000000pt;}
.y63_c00194{bottom:415.066667pt;}
.y26_c00194{bottom:426.000000pt;}
.y62_c00194{bottom:433.066667pt;}
.y25_c00194{bottom:441.333333pt;}
.y61_c00194{bottom:449.333333pt;}
.y24_c00194{bottom:460.666667pt;}
.y60_c00194{bottom:465.333333pt;}
.y23_c00194{bottom:477.333333pt;}
.y5f_c00194{bottom:481.066667pt;}
.y22_c00194{bottom:493.066667pt;}
.y5e_c00194{bottom:496.800000pt;}
.y21_c00194{bottom:512.000000pt;}
.y5d_c00194{bottom:512.800000pt;}
.y5c_c00194{bottom:528.533333pt;}
.y20_c00194{bottom:528.666667pt;}
.y5b_c00194{bottom:544.266667pt;}
.y1f_c00194{bottom:544.400000pt;}
.y5a_c00194{bottom:560.000000pt;}
.y1e_c00194{bottom:560.133333pt;}
.y59_c00194{bottom:575.733333pt;}
.y1d_c00194{bottom:575.866667pt;}
.y1c_c00194{bottom:591.600000pt;}
.y58_c00194{bottom:594.933333pt;}
.y1b_c00194{bottom:607.600000pt;}
.y57_c00194{bottom:610.666667pt;}
.y1a_c00194{bottom:623.333333pt;}
.y56_c00194{bottom:626.400000pt;}
.y19_c00194{bottom:639.066667pt;}
.y55_c00194{bottom:642.400000pt;}
.y54_c00194{bottom:658.133333pt;}
.y18_c00194{bottom:658.400000pt;}
.y53_c00194{bottom:674.133333pt;}
.y17_c00194{bottom:674.400000pt;}
.y52_c00194{bottom:689.866667pt;}
.y16_c00194{bottom:690.400000pt;}
.y51_c00194{bottom:705.866667pt;}
.y15_c00194{bottom:706.133333pt;}
.y50_c00194{bottom:721.600000pt;}
.y14_c00194{bottom:722.133333pt;}
.y4f_c00194{bottom:736.933333pt;}
.y13_c00194{bottom:737.866667pt;}
.y12_c00194{bottom:752.933333pt;}
.y11_c00194{bottom:768.933333pt;}
.y4e_c00194{bottom:784.666667pt;}
.y10_c00194{bottom:784.933333pt;}
.y4d_c00194{bottom:800.400000pt;}
.yf_c00194{bottom:800.666667pt;}
.y4c_c00194{bottom:816.133333pt;}
.ye_c00194{bottom:816.400000pt;}
.y4b_c00194{bottom:831.866667pt;}
.yd_c00194{bottom:832.133333pt;}
.y4a_c00194{bottom:847.600000pt;}
.yc_c00194{bottom:847.866667pt;}
.y74_c00194{bottom:863.066667pt;}
.y49_c00194{bottom:863.333333pt;}
.yb_c00194{bottom:863.866667pt;}
.y48_c00194{bottom:879.333333pt;}
.ya_c00194{bottom:879.600000pt;}
.y47_c00194{bottom:894.666667pt;}
.y9_c00194{bottom:895.333333pt;}
.y46_c00194{bottom:910.666667pt;}
.y8_c00194{bottom:911.333333pt;}
.y45_c00194{bottom:926.400000pt;}
.y7_c00194{bottom:927.066667pt;}
.y44_c00194{bottom:942.133333pt;}
.y6_c00194{bottom:942.800000pt;}
.y43_c00194{bottom:958.400000pt;}
.y5_c00194{bottom:958.800000pt;}
.y42_c00194{bottom:973.733333pt;}
.y4_c00194{bottom:974.133333pt;}
.y41_c00194{bottom:989.466667pt;}
.y3_c00194{bottom:990.133333pt;}
.y2_c00194{bottom:1012.533333pt;}
.y1_c00194{bottom:1013.466667pt;}
.h7_c00194{height:21.333333pt;}
.h8_c00194{height:26.666667pt;}
.h9_c00194{height:32.000000pt;}
.h6_c00194{height:48.000000pt;}
.h4_c00194{height:53.333333pt;}
.h3_c00194{height:58.666667pt;}
.h5_c00194{height:64.000000pt;}
.h2_c00194{height:69.333333pt;}
.h1_c00194{height:1127.333333pt;}
.h0_c00194{height:1127.359944pt;}
.w1_c00194{width:856.000000pt;}
.w0_c00194{width:856.319987pt;}
.x0_c00194{left:0.000000pt;}
.x6a_c00194{left:92.533333pt;}
.x83_c00194{left:93.466667pt;}
.x8f_c00194{left:107.333333pt;}
.x23_c00194{left:109.600000pt;}
.xa_c00194{left:110.800000pt;}
.x93_c00194{left:119.733333pt;}
.x96_c00194{left:121.333333pt;}
.x48_c00194{left:126.933333pt;}
.x3_c00194{left:128.666667pt;}
.x87_c00194{left:129.733333pt;}
.xb_c00194{left:130.933333pt;}
.x84_c00194{left:131.866667pt;}
.x6d_c00194{left:135.066667pt;}
.x74_c00194{left:137.200000pt;}
.x94_c00194{left:139.200000pt;}
.x97_c00194{left:140.533333pt;}
.x59_c00194{left:144.133333pt;}
.xc_c00194{left:145.066667pt;}
.x8d_c00194{left:146.266667pt;}
.x1c_c00194{left:147.866667pt;}
.x3c_c00194{left:149.866667pt;}
.x2d_c00194{left:150.933333pt;}
.x89_c00194{left:152.800000pt;}
.x69_c00194{left:154.533333pt;}
.x7d_c00194{left:155.466667pt;}
.x82_c00194{left:156.533333pt;}
.x14_c00194{left:157.600000pt;}
.x29_c00194{left:160.400000pt;}
.x7e_c00194{left:161.466667pt;}
.x24_c00194{left:162.666667pt;}
.x75_c00194{left:163.866667pt;}
.x7b_c00194{left:166.000000pt;}
.x1d_c00194{left:167.066667pt;}
.x49_c00194{left:169.866667pt;}
.x33_c00194{left:170.933333pt;}
.x15_c00194{left:172.666667pt;}
.x4_c00194{left:174.133333pt;}
.x4e_c00194{left:178.266667pt;}
.x43_c00194{left:180.000000pt;}
.x5e_c00194{left:180.933333pt;}
.x70_c00194{left:184.000000pt;}
.x5a_c00194{left:185.066667pt;}
.x4a_c00194{left:186.800000pt;}
.x1e_c00194{left:187.866667pt;}
.x6e_c00194{left:189.466667pt;}
.x90_c00194{left:191.066667pt;}
.xd_c00194{left:192.133333pt;}
.x7f_c00194{left:193.200000pt;}
.x55_c00194{left:194.133333pt;}
.x37_c00194{left:196.000000pt;}
.x16_c00194{left:196.933333pt;}
.x3d_c00194{left:199.466667pt;}
.x6b_c00194{left:200.400000pt;}
.x5b_c00194{left:202.000000pt;}
.x66_c00194{left:202.933333pt;}
.x2e_c00194{left:205.066667pt;}
.xe_c00194{left:208.400000pt;}
.x9b_c00194{left:210.266667pt;}
.x17_c00194{left:211.333333pt;}
.x80_c00194{left:213.733333pt;}
.x95_c00194{left:214.666667pt;}
.x7c_c00194{left:215.600000pt;}
.x25_c00194{left:217.333333pt;}
.x85_c00194{left:218.266667pt;}
.x63_c00194{left:220.000000pt;}
.x5_c00194{left:223.733333pt;}
.x2f_c00194{left:225.866667pt;}
.x34_c00194{left:226.933333pt;}
.x76_c00194{left:227.866667pt;}
.x3e_c00194{left:229.200000pt;}
.xf_c00194{left:231.066667pt;}
.x98_c00194{left:232.000000pt;}
.x1f_c00194{left:233.600000pt;}
.x4f_c00194{left:235.600000pt;}
.x64_c00194{left:236.933333pt;}
.x8a_c00194{left:237.866667pt;}
.x91_c00194{left:240.266667pt;}
.x38_c00194{left:241.733333pt;}
.x2a_c00194{left:243.333333pt;}
.x56_c00194{left:246.533333pt;}
.x5f_c00194{left:247.733333pt;}
.x77_c00194{left:248.933333pt;}
.x8e_c00194{left:250.000000pt;}
.x6_c00194{left:252.533333pt;}
.x71_c00194{left:253.466667pt;}
.x3f_c00194{left:257.333333pt;}
.x4b_c00194{left:259.066667pt;}
.x50_c00194{left:261.866667pt;}
.x81_c00194{left:263.066667pt;}
.x44_c00194{left:264.800000pt;}
.x57_c00194{left:265.733333pt;}
.x72_c00194{left:266.933333pt;}
.x26_c00194{left:268.800000pt;}
.x5c_c00194{left:269.866667pt;}
.x4c_c00194{left:271.200000pt;}
.x30_c00194{left:273.200000pt;}
.x7_c00194{left:274.266667pt;}
.x20_c00194{left:276.533333pt;}
.x6f_c00194{left:277.866667pt;}
.x67_c00194{left:279.466667pt;}
.x35_c00194{left:280.666667pt;}
.x60_c00194{left:282.266667pt;}
.x2b_c00194{left:283.333333pt;}
.x18_c00194{left:285.200000pt;}
.x10_c00194{left:287.066667pt;}
.x8_c00194{left:288.666667pt;}
.x5d_c00194{left:292.000000pt;}
.x39_c00194{left:293.866667pt;}
.x19_c00194{left:296.400000pt;}
.x51_c00194{left:297.333333pt;}
.x27_c00194{left:299.200000pt;}
.x9a_c00194{left:300.400000pt;}
.x31_c00194{left:302.266667pt;}
.x8b_c00194{left:305.066667pt;}
.x1_c00194{left:307.466667pt;}
.x11_c00194{left:308.800000pt;}
.x92_c00194{left:310.533333pt;}
.x3a_c00194{left:312.133333pt;}
.x78_c00194{left:314.266667pt;}
.x1a_c00194{left:319.733333pt;}
.x8c_c00194{left:321.066667pt;}
.x9_c00194{left:322.000000pt;}
.x40_c00194{left:325.866667pt;}
.x45_c00194{left:326.933333pt;}
.x12_c00194{left:328.666667pt;}
.x68_c00194{left:331.200000pt;}
.x9c_c00194{left:332.533333pt;}
.x21_c00194{left:333.866667pt;}
.x46_c00194{left:334.933333pt;}
.x86_c00194{left:336.133333pt;}
.x1b_c00194{left:338.000000pt;}
.x79_c00194{left:339.866667pt;}
.x73_c00194{left:341.866667pt;}
.x65_c00194{left:344.133333pt;}
.x2c_c00194{left:345.733333pt;}
.x4d_c00194{left:346.666667pt;}
.x61_c00194{left:349.466667pt;}
.x36_c00194{left:352.000000pt;}
.x99_c00194{left:353.866667pt;}
.x54_c00194{left:354.800000pt;}
.x41_c00194{left:356.533333pt;}
.x52_c00194{left:361.333333pt;}
.x22_c00194{left:362.400000pt;}
.x58_c00194{left:364.933333pt;}
.x47_c00194{left:366.933333pt;}
.x62_c00194{left:368.400000pt;}
.x53_c00194{left:371.200000pt;}
.x32_c00194{left:372.133333pt;}
.x42_c00194{left:374.800000pt;}
.x7a_c00194{left:376.933333pt;}
.x3b_c00194{left:378.666667pt;}
.x13_c00194{left:380.133333pt;}
.x6c_c00194{left:381.200000pt;}
.x28_c00194{left:382.133333pt;}
.x88_c00194{left:383.200000pt;}
.xd6_c00194{left:410.133333pt;}
.xf4_c00194{left:416.800000pt;}
.x13f_c00194{left:422.400000pt;}
.x139_c00194{left:424.266667pt;}
.x10f_c00194{left:425.600000pt;}
.x9d_c00194{left:426.533333pt;}
.xee_c00194{left:427.466667pt;}
.x140_c00194{left:434.933333pt;}
.xfe_c00194{left:440.133333pt;}
.xbc_c00194{left:442.533333pt;}
.x12e_c00194{left:443.466667pt;}
.xc9_c00194{left:444.666667pt;}
.xa6_c00194{left:445.600000pt;}
.x138_c00194{left:446.666667pt;}
.xe3_c00194{left:449.733333pt;}
.x133_c00194{left:450.666667pt;}
.xe7_c00194{left:451.600000pt;}
.x12b_c00194{left:455.066667pt;}
.x115_c00194{left:456.533333pt;}
.xd7_c00194{left:457.866667pt;}
.x137_c00194{left:458.933333pt;}
.xce_c00194{left:460.533333pt;}
.x113_c00194{left:463.066667pt;}
.x9e_c00194{left:464.666667pt;}
.xc2_c00194{left:465.866667pt;}
.xfb_c00194{left:467.066667pt;}
.x105_c00194{left:468.800000pt;}
.xad_c00194{left:469.866667pt;}
.xef_c00194{left:471.333333pt;}
.xcf_c00194{left:472.400000pt;}
.x131_c00194{left:473.866667pt;}
.xec_c00194{left:474.800000pt;}
.xd8_c00194{left:476.133333pt;}
.xd1_c00194{left:477.866667pt;}
.x9f_c00194{left:480.400000pt;}
.xc3_c00194{left:483.466667pt;}
.x10b_c00194{left:484.666667pt;}
.x132_c00194{left:488.933333pt;}
.xf6_c00194{left:491.200000pt;}
.x12f_c00194{left:492.400000pt;}
.xca_c00194{left:493.333333pt;}
.xa7_c00194{left:497.733333pt;}
.xb2_c00194{left:498.800000pt;}
.xf7_c00194{left:501.733333pt;}
.xff_c00194{left:502.800000pt;}
.x11a_c00194{left:504.000000pt;}
.x11d_c00194{left:505.466667pt;}
.xfc_c00194{left:507.066667pt;}
.xe8_c00194{left:508.000000pt;}
.x135_c00194{left:509.333333pt;}
.xbd_c00194{left:510.666667pt;}
.x100_c00194{left:512.666667pt;}
.x13a_c00194{left:513.733333pt;}
.x114_c00194{left:515.866667pt;}
.xd9_c00194{left:517.066667pt;}
.xd0_c00194{left:518.133333pt;}
.xa8_c00194{left:519.200000pt;}
.x116_c00194{left:521.200000pt;}
.xf1_c00194{left:522.533333pt;}
.xf8_c00194{left:523.466667pt;}
.xe4_c00194{left:526.800000pt;}
.x106_c00194{left:529.066667pt;}
.x122_c00194{left:531.066667pt;}
.xb6_c00194{left:532.400000pt;}
.xe9_c00194{left:533.600000pt;}
.xbe_c00194{left:534.666667pt;}
.xda_c00194{left:537.600000pt;}
.xf0_c00194{left:538.800000pt;}
.xae_c00194{left:540.000000pt;}
.x12c_c00194{left:541.466667pt;}
.xa0_c00194{left:543.066667pt;}
.x13b_c00194{left:544.133333pt;}
.xc4_c00194{left:545.866667pt;}
.xd2_c00194{left:546.933333pt;}
.x11e_c00194{left:549.600000pt;}
.xcb_c00194{left:551.600000pt;}
.x13c_c00194{left:554.266667pt;}
.x117_c00194{left:555.466667pt;}
.xa9_c00194{left:556.933333pt;}
.x118_c00194{left:558.933333pt;}
.x10c_c00194{left:560.400000pt;}
.x110_c00194{left:562.000000pt;}
.xc5_c00194{left:563.733333pt;}
.xa1_c00194{left:566.133333pt;}
.xaa_c00194{left:568.133333pt;}
.xf2_c00194{left:569.200000pt;}
.xaf_c00194{left:571.333333pt;}
.x136_c00194{left:573.333333pt;}
.xdb_c00194{left:574.666667pt;}
.xfd_c00194{left:576.533333pt;}
.xb7_c00194{left:578.800000pt;}
.x10d_c00194{left:579.866667pt;}
.xbf_c00194{left:580.800000pt;}
.xf9_c00194{left:582.000000pt;}
.xb3_c00194{left:583.600000pt;}
.x125_c00194{left:585.466667pt;}
.x107_c00194{left:589.200000pt;}
.x123_c00194{left:590.933333pt;}
.xb0_c00194{left:591.866667pt;}
.x13e_c00194{left:593.200000pt;}
.xb8_c00194{left:594.533333pt;}
.xf3_c00194{left:595.733333pt;}
.xc0_c00194{left:598.666667pt;}
.x101_c00194{left:600.266667pt;}
.xab_c00194{left:602.000000pt;}
.x11f_c00194{left:603.733333pt;}
.x108_c00194{left:604.933333pt;}
.xe5_c00194{left:606.133333pt;}
.x126_c00194{left:609.733333pt;}
.xa2_c00194{left:611.200000pt;}
.xd3_c00194{left:612.266667pt;}
.x111_c00194{left:614.800000pt;}
.x141_c00194{left:615.733333pt;}
.xc6_c00194{left:617.200000pt;}
.x120_c00194{left:618.400000pt;}
.x11b_c00194{left:619.466667pt;}
.x12d_c00194{left:621.066667pt;}
.xf5_c00194{left:622.800000pt;}
.xe6_c00194{left:624.400000pt;}
.xdc_c00194{left:627.200000pt;}
.xa3_c00194{left:628.800000pt;}
.xd4_c00194{left:630.533333pt;}
.xb9_c00194{left:631.600000pt;}
.xc7_c00194{left:632.533333pt;}
.x128_c00194{left:634.400000pt;}
.xcc_c00194{left:635.866667pt;}
.x12a_c00194{left:636.800000pt;}
.x109_c00194{left:638.533333pt;}
.xba_c00194{left:639.600000pt;}
.x102_c00194{left:642.400000pt;}
.x119_c00194{left:643.466667pt;}
.x11c_c00194{left:644.800000pt;}
.xdd_c00194{left:645.733333pt;}
.xe1_c00194{left:649.333333pt;}
.xb1_c00194{left:650.800000pt;}
.xb4_c00194{left:651.733333pt;}
.xde_c00194{left:654.400000pt;}
.x10e_c00194{left:656.000000pt;}
.x121_c00194{left:658.666667pt;}
.x103_c00194{left:659.733333pt;}
.xd5_c00194{left:660.666667pt;}
.xea_c00194{left:661.600000pt;}
.x10a_c00194{left:663.466667pt;}
.xfa_c00194{left:664.533333pt;}
.xc8_c00194{left:666.133333pt;}
.xdf_c00194{left:667.200000pt;}
.xbb_c00194{left:668.133333pt;}
.x124_c00194{left:669.333333pt;}
.xa4_c00194{left:671.733333pt;}
.x129_c00194{left:673.066667pt;}
.x104_c00194{left:674.800000pt;}
.xcd_c00194{left:677.200000pt;}
.xa5_c00194{left:678.800000pt;}
.xc1_c00194{left:680.266667pt;}
.x127_c00194{left:681.733333pt;}
.xed_c00194{left:682.800000pt;}
.x2_c00194{left:685.333333pt;}
.xb5_c00194{left:688.133333pt;}
.x112_c00194{left:689.066667pt;}
.x130_c00194{left:690.666667pt;}
.xeb_c00194{left:692.933333pt;}
.x13d_c00194{left:694.533333pt;}
.xac_c00194{left:695.466667pt;}
.xe2_c00194{left:698.933333pt;}
.x134_c00194{left:702.533333pt;}
.xe0_c00194{left:706.266667pt;}
}





/* 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_c00195 {
    display:none;
  }
  .loading-indicator_c00195.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00195 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_c00195 { 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_c00195" -> "#page-container .classname_c00195")
 */
.pf_c00195 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00195 { /* 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_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00195 { /* 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_c00195 { /* 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_c00195 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00195 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00195 {overflow:visible;}
  }
}
.c_c00195 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00195 { /* 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_c00195:after { /* webkit #35443 */
  content: '';
}
.t_c00195:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00195 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 */
}
.__c00195 { /* 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_c00195 { /* info for Javascript */
  display:none;
}
.l_c00195 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00195 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00195 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00195: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_c00195 {
    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_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00195.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_c00195 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00195;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.000000;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;}
.mf4_c00195{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.me3_c00195{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m57_c00195{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mac_c00195{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m113_c00195{transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00195{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m75_c00195{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m104_c00195{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00195{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00195{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00195{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00195{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00195{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00195{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m0_c00195{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00195{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m33_c00195{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m13_c00195{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m80_c00195{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00195{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00195{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00195{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00195{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00195{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00195{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00195{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m67_c00195{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m96_c00195{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m88_c00195{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m66_c00195{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.med_c00195{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m109_c00195{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00195{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00195{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma_c00195{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me9_c00195{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00195{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m65_c00195{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m21_c00195{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.maa_c00195{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00195{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m11_c00195{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m117_c00195{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00195{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00195{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m99_c00195{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mee_c00195{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m69_c00195{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00195{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mec_c00195{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me0_c00195{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.md_c00195{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mde_c00195{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00195{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00195{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00195{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m39_c00195{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m12_c00195{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00195{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00195{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mce_c00195{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00195{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00195{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00195{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m68_c00195{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m51_c00195{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00195{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m28_c00195{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00195{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m83_c00195{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mae_c00195{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m52_c00195{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m50_c00195{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m45_c00195{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00195{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00195{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00195{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mca_c00195{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m46_c00195{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m71_c00195{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00195{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00195{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m70_c00195{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00195{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m100_c00195{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m15_c00195{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m97_c00195{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m43_c00195{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m94_c00195{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m58_c00195{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00195{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me8_c00195{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m25_c00195{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00195{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb_c00195{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mf_c00195{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m23_c00195{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00195{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m95_c00195{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mea_c00195{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00195{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00195{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00195{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m110_c00195{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m103_c00195{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m32_c00195{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m30_c00195{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me7_c00195{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00195{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m98_c00195{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m63_c00195{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00195{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00195{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00195{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me2_c00195{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m24_c00195{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md4_c00195{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m111_c00195{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.maf_c00195{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m74_c00195{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m55_c00195{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00195{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00195{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3_c00195{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m27_c00195{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m54_c00195{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00195{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00195{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00195{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00195{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m48_c00195{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m17_c00195{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m53_c00195{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00195{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m14_c00195{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m115_c00195{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00195{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m40_c00195{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00195{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00195{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md3_c00195{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00195{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m8_c00195{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m26_c00195{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00195{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m78_c00195{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00195{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m20_c00195{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00195{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4_c00195{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m18_c00195{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m64_c00195{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00195{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m42_c00195{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m60_c00195{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00195{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m102_c00195{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00195{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00195{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00195{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00195{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m31_c00195{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00195{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m114_c00195{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00195{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me1_c00195{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m105_c00195{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m10_c00195{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m35_c00195{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00195{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m77_c00195{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m6_c00195{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m79_c00195{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00195{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m106_c00195{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.me_c00195{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00195{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00195{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md0_c00195{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m41_c00195{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00195{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00195{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m16_c00195{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00195{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m19_c00195{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00195{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m92_c00195{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m36_c00195{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00195{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00195{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00195{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00195{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00195{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mda_c00195{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00195{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m49_c00195{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mab_c00195{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00195{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m112_c00195{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m101_c00195{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m22_c00195{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m34_c00195{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m44_c00195{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00195{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00195{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md1_c00195{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m47_c00195{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00195{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m89_c00195{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me5_c00195{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00195{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9_c00195{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00195{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m108_c00195{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m87_c00195{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00195{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5_c00195{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md8_c00195{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md5_c00195{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00195{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m116_c00195{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m56_c00195{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.meb_c00195{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m73_c00195{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2_c00195{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00195{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md6_c00195{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00195{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00195{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00195{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md9_c00195{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00195{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00195{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md7_c00195{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m37_c00195{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7_c00195{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me6_c00195{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{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);}
.m7a_c00195{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00195{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00195{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00195{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md2_c00195{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00195{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m81_c00195{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00195{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00195{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m38_c00195{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00195{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m91_c00195{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00195{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00195{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m82_c00195{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m90_c00195{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m84_c00195{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mba_c00195{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00195{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m72_c00195{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00195{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m86_c00195{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m76_c00195{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m93_c00195{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00195{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m107_c00195{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.me4_c00195{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00195{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m62_c00195{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m59_c00195{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m85_c00195{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00195{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00195{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mef_c00195{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m29_c00195{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00195{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00195{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m61_c00195{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00195{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.mad_c00195{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mff_c00195{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00195{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls2_c00195{letter-spacing:0.000000px;}
.ls1_c00195{letter-spacing:50.211796px;}
.ls0_c00195{letter-spacing:80.865169px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{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__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00195{word-spacing:-107.865169px;}
.ws7_c00195{word-spacing:-77.211796px;}
.wse_c00195{word-spacing:-7.500000px;}
.ws1_c00195{word-spacing:-7.333333px;}
.wsa_c00195{word-spacing:-6.279070px;}
.ws0_c00195{word-spacing:-5.758929px;}
.wsd_c00195{word-spacing:-1.250000px;}
.wsf_c00195{word-spacing:0.000000px;}
.wsb_c00195{word-spacing:0.155609px;}
.ws5_c00195{word-spacing:7.252715px;}
.wsc_c00195{word-spacing:14.656160px;}
.ws9_c00195{word-spacing:22.142857px;}
.ws8_c00195{word-spacing:25.714286px;}
.ws4_c00195{word-spacing:26.428954px;}
.ws6_c00195{word-spacing:36.000000px;}
.ws3_c00195{word-spacing:39.750000px;}
._0_c00195{margin-left:-80.865169px;}
._2_c00195{margin-left:-50.211796px;}
._1_c00195{width:63.000000px;}
.fc0_c00195{color:transparent;}
.fs4_c00195{font-size:54.000000px;}
.fs3_c00195{font-size:60.000000px;}
.fs2_c00195{font-size:66.000000px;}
.fs0_c00195{font-size:72.000000px;}
.fs1_c00195{font-size:78.000000px;}
.y0_c00195{bottom:0.000000px;}
.y6c_c00195{bottom:186.450000px;}
.y39_c00195{bottom:194.850000px;}
.y6b_c00195{bottom:204.450000px;}
.y38_c00195{bottom:212.850000px;}
.y6a_c00195{bottom:226.650000px;}
.y37_c00195{bottom:230.100000px;}
.y69_c00195{bottom:244.350000px;}
.y36_c00195{bottom:248.100000px;}
.y68_c00195{bottom:262.050000px;}
.y35_c00195{bottom:265.800000px;}
.y67_c00195{bottom:280.050000px;}
.y34_c00195{bottom:283.050000px;}
.y66_c00195{bottom:298.050000px;}
.y33_c00195{bottom:300.300000px;}
.y32_c00195{bottom:300.900000px;}
.y65_c00195{bottom:315.750000px;}
.y31_c00195{bottom:320.700000px;}
.y64_c00195{bottom:334.050000px;}
.y30_c00195{bottom:335.100000px;}
.y2f_c00195{bottom:349.200000px;}
.y63_c00195{bottom:351.750000px;}
.y2e_c00195{bottom:362.850000px;}
.y62_c00195{bottom:372.000000px;}
.y2d_c00195{bottom:377.250000px;}
.y61_c00195{bottom:386.700000px;}
.y2c_c00195{bottom:391.350000px;}
.y60_c00195{bottom:401.400000px;}
.y2b_c00195{bottom:406.050000px;}
.y2a_c00195{bottom:420.150000px;}
.y5f_c00195{bottom:421.200000px;}
.y29_c00195{bottom:434.850000px;}
.y5e_c00195{bottom:439.200000px;}
.y28_c00195{bottom:448.950000px;}
.y5d_c00195{bottom:456.900000px;}
.y27_c00195{bottom:463.350000px;}
.y26_c00195{bottom:477.750000px;}
.y5c_c00195{bottom:478.800000px;}
.y25_c00195{bottom:491.850000px;}
.y5b_c00195{bottom:496.500000px;}
.y24_c00195{bottom:506.550000px;}
.y5a_c00195{bottom:514.500000px;}
.y23_c00195{bottom:520.950000px;}
.y59_c00195{bottom:532.800000px;}
.y22_c00195{bottom:535.350000px;}
.y58_c00195{bottom:550.050000px;}
.y21_c00195{bottom:555.000000px;}
.y57_c00195{bottom:572.400000px;}
.y20_c00195{bottom:572.700000px;}
.y1f_c00195{bottom:590.400000px;}
.y56_c00195{bottom:598.950000px;}
.y1e_c00195{bottom:616.350000px;}
.y55_c00195{bottom:616.950000px;}
.y1d_c00195{bottom:633.900000px;}
.y54_c00195{bottom:634.650000px;}
.y1c_c00195{bottom:651.600000px;}
.y53_c00195{bottom:652.650000px;}
.y1b_c00195{bottom:669.450000px;}
.y52_c00195{bottom:670.350000px;}
.y1a_c00195{bottom:687.150000px;}
.y51_c00195{bottom:692.550000px;}
.y19_c00195{bottom:705.150000px;}
.y50_c00195{bottom:710.850000px;}
.y18_c00195{bottom:722.850000px;}
.y4f_c00195{bottom:728.550000px;}
.y17_c00195{bottom:740.550000px;}
.y4e_c00195{bottom:746.250000px;}
.y16_c00195{bottom:762.450000px;}
.y4d_c00195{bottom:764.250000px;}
.y4c_c00195{bottom:781.950000px;}
.y15_c00195{bottom:789.150000px;}
.y4b_c00195{bottom:803.850000px;}
.y14_c00195{bottom:807.150000px;}
.y4a_c00195{bottom:821.850000px;}
.y13_c00195{bottom:824.700000px;}
.y49_c00195{bottom:839.850000px;}
.y12_c00195{bottom:842.400000px;}
.y48_c00195{bottom:857.550000px;}
.y11_c00195{bottom:864.300000px;}
.y47_c00195{bottom:875.550000px;}
.y10_c00195{bottom:886.350000px;}
.y46_c00195{bottom:897.000000px;}
.yf_c00195{bottom:904.350000px;}
.y45_c00195{bottom:915.000000px;}
.ye_c00195{bottom:922.350000px;}
.y44_c00195{bottom:933.000000px;}
.yd_c00195{bottom:940.050000px;}
.y43_c00195{bottom:951.000000px;}
.yc_c00195{bottom:957.750000px;}
.y42_c00195{bottom:969.000000px;}
.yb_c00195{bottom:975.750000px;}
.y41_c00195{bottom:986.700000px;}
.ya_c00195{bottom:993.450000px;}
.y40_c00195{bottom:1008.600000px;}
.y9_c00195{bottom:1011.150000px;}
.y3f_c00195{bottom:1026.900000px;}
.y8_c00195{bottom:1029.150000px;}
.y3e_c00195{bottom:1044.600000px;}
.y7_c00195{bottom:1046.850000px;}
.y3d_c00195{bottom:1062.300000px;}
.y6_c00195{bottom:1064.850000px;}
.y5_c00195{bottom:1082.550000px;}
.y3c_c00195{bottom:1083.600000px;}
.y4_c00195{bottom:1100.550000px;}
.y3b_c00195{bottom:1102.650000px;}
.y3_c00195{bottom:1118.550000px;}
.y3a_c00195{bottom:1120.650000px;}
.y1_c00195{bottom:1143.300000px;}
.y2_c00195{bottom:1146.150000px;}
.h6_c00195{height:54.000000px;}
.h5_c00195{height:60.000000px;}
.h4_c00195{height:66.000000px;}
.h2_c00195{height:72.000000px;}
.h3_c00195{height:78.000000px;}
.h1_c00195{height:1272.000000px;}
.h0_c00195{height:1272.239960px;}
.w1_c00195{width:963.000000px;}
.w0_c00195{width:963.359985px;}
.x0_c00195{left:0.000000px;}
.x58_c00195{left:120.900000px;}
.x1_c00195{left:155.550000px;}
.x4d_c00195{left:180.300000px;}
.x2_c00195{left:182.550000px;}
.x9e_c00195{left:183.750000px;}
.x87_c00195{left:196.350000px;}
.x40_c00195{left:198.300000px;}
.xe_c00195{left:199.350000px;}
.x18_c00195{left:200.700000px;}
.x95_c00195{left:204.600000px;}
.x9b_c00195{left:208.800000px;}
.x74_c00195{left:210.600000px;}
.x9d_c00195{left:211.800000px;}
.x7e_c00195{left:216.750000px;}
.x5d_c00195{left:217.800000px;}
.x3c_c00195{left:220.500000px;}
.x22_c00195{left:222.000000px;}
.x61_c00195{left:223.200000px;}
.x7c_c00195{left:224.700000px;}
.x41_c00195{left:229.650000px;}
.x9f_c00195{left:230.700000px;}
.x6a_c00195{left:232.650000px;}
.x6d_c00195{left:234.450000px;}
.x3d_c00195{left:236.400000px;}
.x80_c00195{left:239.400000px;}
.x4e_c00195{left:242.550000px;}
.x77_c00195{left:243.600000px;}
.x33_c00195{left:244.800000px;}
.x59_c00195{left:246.900000px;}
.x2e_c00195{left:249.750000px;}
.x1e_c00195{left:250.800000px;}
.x6e_c00195{left:252.450000px;}
.x37_c00195{left:255.150000px;}
.xf_c00195{left:256.650000px;}
.x62_c00195{left:258.450000px;}
.x49_c00195{left:259.950000px;}
.xa0_c00195{left:261.300000px;}
.x42_c00195{left:263.100000px;}
.x8c_c00195{left:265.050000px;}
.x5a_c00195{left:266.700000px;}
.x55_c00195{left:268.200000px;}
.x8_c00195{left:269.250000px;}
.x6b_c00195{left:270.750000px;}
.x1f_c00195{left:272.400000px;}
.x97_c00195{left:273.450000px;}
.xa8_c00195{left:274.800000px;}
.x68_c00195{left:276.600000px;}
.x93_c00195{left:277.650000px;}
.x78_c00195{left:280.350000px;}
.x65_c00195{left:282.300000px;}
.x9c_c00195{left:283.650000px;}
.x99_c00195{left:286.500000px;}
.x28_c00195{left:288.150000px;}
.x38_c00195{left:290.100000px;}
.x4a_c00195{left:292.350000px;}
.x81_c00195{left:294.450000px;}
.x91_c00195{left:296.700000px;}
.xa1_c00195{left:298.050000px;}
.x10_c00195{left:299.850000px;}
.x8d_c00195{left:301.650000px;}
.x44_c00195{left:303.150000px;}
.x83_c00195{left:304.800000px;}
.x5e_c00195{left:306.600000px;}
.x19_c00195{left:310.500000px;}
.x98_c00195{left:312.750000px;}
.x75_c00195{left:313.950000px;}
.x45_c00195{left:315.750000px;}
.x20_c00195{left:317.100000px;}
.x11_c00195{left:319.650000px;}
.x4f_c00195{left:321.000000px;}
.x88_c00195{left:322.800000px;}
.x7f_c00195{left:325.200000px;}
.x5f_c00195{left:326.700000px;}
.x2f_c00195{left:328.500000px;}
.x34_c00195{left:329.700000px;}
.x39_c00195{left:330.750000px;}
.x71_c00195{left:331.800000px;}
.x23_c00195{left:332.850000px;}
.x66_c00195{left:334.200000px;}
.x12_c00195{left:336.150000px;}
.x29_c00195{left:338.550000px;}
.x7d_c00195{left:340.200000px;}
.x8e_c00195{left:342.000000px;}
.x82_c00195{left:343.350000px;}
.x50_c00195{left:345.450000px;}
.x94_c00195{left:346.800000px;}
.x6f_c00195{left:350.100000px;}
.x2a_c00195{left:354.000000px;}
.x46_c00195{left:355.050000px;}
.x1a_c00195{left:356.250000px;}
.x9_c00195{left:358.500000px;}
.x60_c00195{left:360.900000px;}
.x13_c00195{left:363.150000px;}
.x89_c00195{left:367.050000px;}
.x9a_c00195{left:368.550000px;}
.x3a_c00195{left:369.600000px;}
.x14_c00195{left:371.400000px;}
.x51_c00195{left:375.000000px;}
.x24_c00195{left:376.050000px;}
.x92_c00195{left:377.700000px;}
.x35_c00195{left:379.050000px;}
.xa_c00195{left:380.400000px;}
.x30_c00195{left:382.800000px;}
.x67_c00195{left:384.300000px;}
.xa2_c00195{left:385.800000px;}
.x8a_c00195{left:390.000000px;}
.x15_c00195{left:391.200000px;}
.x63_c00195{left:393.450000px;}
.x52_c00195{left:395.550000px;}
.xb_c00195{left:396.900000px;}
.x25_c00195{left:397.950000px;}
.x21_c00195{left:399.900000px;}
.x64_c00195{left:403.200000px;}
.x8b_c00195{left:404.400000px;}
.x31_c00195{left:406.200000px;}
.x2b_c00195{left:407.700000px;}
.x79_c00195{left:409.050000px;}
.x84_c00195{left:411.750000px;}
.x8f_c00195{left:412.950000px;}
.x47_c00195{left:414.150000px;}
.x26_c00195{left:416.250000px;}
.x3_c00195{left:419.100000px;}
.xa3_c00195{left:420.300000px;}
.x3e_c00195{left:422.250000px;}
.xa5_c00195{left:423.600000px;}
.x7a_c00195{left:424.950000px;}
.x1b_c00195{left:427.500000px;}
.x76_c00195{left:429.300000px;}
.x53_c00195{left:431.250000px;}
.x2c_c00195{left:433.650000px;}
.x16_c00195{left:435.450000px;}
.x72_c00195{left:437.250000px;}
.x85_c00195{left:440.550000px;}
.x56_c00195{left:441.750000px;}
.x36_c00195{left:444.900000px;}
.x32_c00195{left:446.100000px;}
.xa6_c00195{left:448.800000px;}
.x3b_c00195{left:449.850000px;}
.xa9_c00195{left:451.200000px;}
.xc_c00195{left:455.250000px;}
.x1c_c00195{left:457.350000px;}
.x48_c00195{left:461.700000px;}
.x4b_c00195{left:464.700000px;}
.x4_c00195{left:466.650000px;}
.x86_c00195{left:467.850000px;}
.x3f_c00195{left:469.050000px;}
.x70_c00195{left:472.500000px;}
.x6c_c00195{left:473.850000px;}
.x90_c00195{left:475.200000px;}
.x57_c00195{left:476.250000px;}
.xa4_c00195{left:477.300000px;}
.x5b_c00195{left:478.800000px;}
.xa7_c00195{left:481.500000px;}
.x27_c00195{left:483.600000px;}
.x73_c00195{left:485.100000px;}
.x69_c00195{left:487.500000px;}
.x43_c00195{left:489.300000px;}
.x5_c00195{left:491.550000px;}
.x2d_c00195{left:493.050000px;}
.xaa_c00195{left:495.450000px;}
.x17_c00195{left:497.700000px;}
.xd_c00195{left:499.950000px;}
.x1d_c00195{left:502.050000px;}
.x54_c00195{left:503.250000px;}
.x96_c00195{left:504.900000px;}
.x4c_c00195{left:506.850000px;}
.x7b_c00195{left:511.050000px;}
.x5c_c00195{left:514.050000px;}
.x6_c00195{left:517.500000px;}
.x110_c00195{left:527.400000px;}
.x149_c00195{left:536.400000px;}
.xff_c00195{left:537.900000px;}
.x11f_c00195{left:538.950000px;}
.x136_c00195{left:551.100000px;}
.xab_c00195{left:554.100000px;}
.xbb_c00195{left:555.150000px;}
.xfc_c00195{left:556.350000px;}
.x137_c00195{left:565.050000px;}
.xbd_c00195{left:573.450000px;}
.x11d_c00195{left:574.500000px;}
.x14d_c00195{left:576.000000px;}
.x119_c00195{left:578.250000px;}
.x120_c00195{left:580.050000px;}
.x7_c00195{left:581.550000px;}
.xef_c00195{left:584.250000px;}
.xe4_c00195{left:587.100000px;}
.xe9_c00195{left:589.050000px;}
.xd1_c00195{left:591.750000px;}
.xbc_c00195{left:592.950000px;}
.xc2_c00195{left:594.300000px;}
.x10e_c00195{left:596.250000px;}
.xb4_c00195{left:597.300000px;}
.x132_c00195{left:598.350000px;}
.x100_c00195{left:599.400000px;}
.xac_c00195{left:601.200000px;}
.x11e_c00195{left:603.300000px;}
.xfa_c00195{left:604.500000px;}
.x13e_c00195{left:606.150000px;}
.xdd_c00195{left:607.800000px;}
.xec_c00195{left:609.900000px;}
.x140_c00195{left:611.100000px;}
.xd6_c00195{left:614.400000px;}
.x10f_c00195{left:616.050000px;}
.xde_c00195{left:617.100000px;}
.xd2_c00195{left:619.200000px;}
.xf0_c00195{left:623.850000px;}
.x139_c00195{left:624.900000px;}
.xfd_c00195{left:626.250000px;}
.x104_c00195{left:628.200000px;}
.xda_c00195{left:630.900000px;}
.x123_c00195{left:634.200000px;}
.xbe_c00195{left:636.450000px;}
.xb5_c00195{left:637.650000px;}
.xf6_c00195{left:639.000000px;}
.xea_c00195{left:640.500000px;}
.x14a_c00195{left:641.550000px;}
.xd3_c00195{left:643.650000px;}
.x12d_c00195{left:644.700000px;}
.xdf_c00195{left:646.650000px;}
.x115_c00195{left:648.000000px;}
.xad_c00195{left:649.800000px;}
.x146_c00195{left:651.600000px;}
.x12a_c00195{left:652.650000px;}
.xc8_c00195{left:654.300000px;}
.x124_c00195{left:655.500000px;}
.xd7_c00195{left:658.200000px;}
.x133_c00195{left:659.850000px;}
.xeb_c00195{left:661.350000px;}
.x12c_c00195{left:663.000000px;}
.xe5_c00195{left:664.200000px;}
.x12f_c00195{left:666.450000px;}
.x127_c00195{left:668.250000px;}
.xc9_c00195{left:670.200000px;}
.xfe_c00195{left:671.550000px;}
.x11a_c00195{left:672.900000px;}
.x13a_c00195{left:675.300000px;}
.xe0_c00195{left:677.250000px;}
.x134_c00195{left:678.600000px;}
.x109_c00195{left:679.950000px;}
.xae_c00195{left:682.500000px;}
.xb6_c00195{left:686.550000px;}
.x117_c00195{left:688.800000px;}
.x126_c00195{left:689.850000px;}
.x11b_c00195{left:690.900000px;}
.x10a_c00195{left:692.850000px;}
.x105_c00195{left:696.900000px;}
.xf1_c00195{left:698.700000px;}
.x13b_c00195{left:700.500000px;}
.xbf_c00195{left:704.100000px;}
.xd4_c00195{left:705.600000px;}
.x14b_c00195{left:707.850000px;}
.xaf_c00195{left:710.250000px;}
.xca_c00195{left:713.700000px;}
.xc3_c00195{left:714.900000px;}
.xf2_c00195{left:717.000000px;}
.x101_c00195{left:719.250000px;}
.x106_c00195{left:721.050000px;}
.x121_c00195{left:722.550000px;}
.x12e_c00195{left:723.600000px;}
.xb0_c00195{left:726.450000px;}
.x125_c00195{left:729.300000px;}
.xd8_c00195{left:730.500000px;}
.x122_c00195{left:731.850000px;}
.xcb_c00195{left:733.800000px;}
.xf7_c00195{left:736.950000px;}
.x13c_c00195{left:738.600000px;}
.x13f_c00195{left:739.650000px;}
.xe6_c00195{left:742.050000px;}
.x111_c00195{left:745.800000px;}
.x142_c00195{left:747.000000px;}
.xc4_c00195{left:749.400000px;}
.xf3_c00195{left:751.200000px;}
.x130_c00195{left:753.150000px;}
.xb7_c00195{left:754.200000px;}
.x144_c00195{left:755.400000px;}
.xc0_c00195{left:756.600000px;}
.x147_c00195{left:757.650000px;}
.x13d_c00195{left:758.700000px;}
.xed_c00195{left:759.900000px;}
.xb1_c00195{left:762.150000px;}
.x128_c00195{left:764.700000px;}
.xcc_c00195{left:766.500000px;}
.x112_c00195{left:768.150000px;}
.x10b_c00195{left:769.200000px;}
.xc5_c00195{left:770.250000px;}
.x11c_c00195{left:771.450000px;}
.xe1_c00195{left:773.850000px;}
.x148_c00195{left:775.350000px;}
.xdb_c00195{left:777.000000px;}
.x102_c00195{left:779.700000px;}
.xf4_c00195{left:780.750000px;}
.xb8_c00195{left:783.000000px;}
.xcd_c00195{left:786.000000px;}
.xb2_c00195{left:787.350000px;}
.x118_c00195{left:788.850000px;}
.xe7_c00195{left:791.400000px;}
.xe2_c00195{left:794.400000px;}
.x103_c00195{left:795.600000px;}
.x113_c00195{left:796.650000px;}
.x14e_c00195{left:798.600000px;}
.xce_c00195{left:801.450000px;}
.x107_c00195{left:803.550000px;}
.x108_c00195{left:806.400000px;}
.xb9_c00195{left:808.950000px;}
.xc6_c00195{left:810.600000px;}
.x145_c00195{left:812.250000px;}
.xd9_c00195{left:813.900000px;}
.x12b_c00195{left:814.950000px;}
.x143_c00195{left:816.150000px;}
.xfb_c00195{left:818.100000px;}
.x10c_c00195{left:819.600000px;}
.x129_c00195{left:822.300000px;}
.x14c_c00195{left:823.650000px;}
.xe3_c00195{left:825.300000px;}
.xd5_c00195{left:826.800000px;}
.xdc_c00195{left:829.200000px;}
.x138_c00195{left:830.400000px;}
.x116_c00195{left:832.350000px;}
.xf8_c00195{left:835.350000px;}
.x141_c00195{left:837.300000px;}
.xc1_c00195{left:838.350000px;}
.x131_c00195{left:840.600000px;}
.xee_c00195{left:841.650000px;}
.xcf_c00195{left:843.150000px;}
.xb3_c00195{left:845.250000px;}
.x114_c00195{left:849.150000px;}
.xe8_c00195{left:851.100000px;}
.xd0_c00195{left:852.450000px;}
.x10d_c00195{left:853.800000px;}
.xf9_c00195{left:856.200000px;}
.x135_c00195{left:857.400000px;}
.xba_c00195{left:858.600000px;}
.xc7_c00195{left:862.050000px;}
.xf5_c00195{left:871.200000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls2_c00195{letter-spacing:0.000000pt;}
.ls1_c00195{letter-spacing:44.632708pt;}
.ls0_c00195{letter-spacing:71.880150pt;}
.ws2_c00195{word-spacing:-95.880150pt;}
.ws7_c00195{word-spacing:-68.632708pt;}
.wse_c00195{word-spacing:-6.666667pt;}
.ws1_c00195{word-spacing:-6.518519pt;}
.wsa_c00195{word-spacing:-5.581395pt;}
.ws0_c00195{word-spacing:-5.119048pt;}
.wsd_c00195{word-spacing:-1.111111pt;}
.wsf_c00195{word-spacing:0.000000pt;}
.wsb_c00195{word-spacing:0.138319pt;}
.ws5_c00195{word-spacing:6.446858pt;}
.wsc_c00195{word-spacing:13.027698pt;}
.ws9_c00195{word-spacing:19.682540pt;}
.ws8_c00195{word-spacing:22.857143pt;}
.ws4_c00195{word-spacing:23.492404pt;}
.ws6_c00195{word-spacing:32.000000pt;}
.ws3_c00195{word-spacing:35.333333pt;}
._0_c00195{margin-left:-71.880150pt;}
._2_c00195{margin-left:-44.632708pt;}
._1_c00195{width:56.000000pt;}
.fs4_c00195{font-size:48.000000pt;}
.fs3_c00195{font-size:53.333333pt;}
.fs2_c00195{font-size:58.666667pt;}
.fs0_c00195{font-size:64.000000pt;}
.fs1_c00195{font-size:69.333333pt;}
.y0_c00195{bottom:0.000000pt;}
.y6c_c00195{bottom:165.733333pt;}
.y39_c00195{bottom:173.200000pt;}
.y6b_c00195{bottom:181.733333pt;}
.y38_c00195{bottom:189.200000pt;}
.y6a_c00195{bottom:201.466667pt;}
.y37_c00195{bottom:204.533333pt;}
.y69_c00195{bottom:217.200000pt;}
.y36_c00195{bottom:220.533333pt;}
.y68_c00195{bottom:232.933333pt;}
.y35_c00195{bottom:236.266667pt;}
.y67_c00195{bottom:248.933333pt;}
.y34_c00195{bottom:251.600000pt;}
.y66_c00195{bottom:264.933333pt;}
.y33_c00195{bottom:266.933333pt;}
.y32_c00195{bottom:267.466667pt;}
.y65_c00195{bottom:280.666667pt;}
.y31_c00195{bottom:285.066667pt;}
.y64_c00195{bottom:296.933333pt;}
.y30_c00195{bottom:297.866667pt;}
.y2f_c00195{bottom:310.400000pt;}
.y63_c00195{bottom:312.666667pt;}
.y2e_c00195{bottom:322.533333pt;}
.y62_c00195{bottom:330.666667pt;}
.y2d_c00195{bottom:335.333333pt;}
.y61_c00195{bottom:343.733333pt;}
.y2c_c00195{bottom:347.866667pt;}
.y60_c00195{bottom:356.800000pt;}
.y2b_c00195{bottom:360.933333pt;}
.y2a_c00195{bottom:373.466667pt;}
.y5f_c00195{bottom:374.400000pt;}
.y29_c00195{bottom:386.533333pt;}
.y5e_c00195{bottom:390.400000pt;}
.y28_c00195{bottom:399.066667pt;}
.y5d_c00195{bottom:406.133333pt;}
.y27_c00195{bottom:411.866667pt;}
.y26_c00195{bottom:424.666667pt;}
.y5c_c00195{bottom:425.600000pt;}
.y25_c00195{bottom:437.200000pt;}
.y5b_c00195{bottom:441.333333pt;}
.y24_c00195{bottom:450.266667pt;}
.y5a_c00195{bottom:457.333333pt;}
.y23_c00195{bottom:463.066667pt;}
.y59_c00195{bottom:473.600000pt;}
.y22_c00195{bottom:475.866667pt;}
.y58_c00195{bottom:488.933333pt;}
.y21_c00195{bottom:493.333333pt;}
.y57_c00195{bottom:508.800000pt;}
.y20_c00195{bottom:509.066667pt;}
.y1f_c00195{bottom:524.800000pt;}
.y56_c00195{bottom:532.400000pt;}
.y1e_c00195{bottom:547.866667pt;}
.y55_c00195{bottom:548.400000pt;}
.y1d_c00195{bottom:563.466667pt;}
.y54_c00195{bottom:564.133333pt;}
.y1c_c00195{bottom:579.200000pt;}
.y53_c00195{bottom:580.133333pt;}
.y1b_c00195{bottom:595.066667pt;}
.y52_c00195{bottom:595.866667pt;}
.y1a_c00195{bottom:610.800000pt;}
.y51_c00195{bottom:615.600000pt;}
.y19_c00195{bottom:626.800000pt;}
.y50_c00195{bottom:631.866667pt;}
.y18_c00195{bottom:642.533333pt;}
.y4f_c00195{bottom:647.600000pt;}
.y17_c00195{bottom:658.266667pt;}
.y4e_c00195{bottom:663.333333pt;}
.y16_c00195{bottom:677.733333pt;}
.y4d_c00195{bottom:679.333333pt;}
.y4c_c00195{bottom:695.066667pt;}
.y15_c00195{bottom:701.466667pt;}
.y4b_c00195{bottom:714.533333pt;}
.y14_c00195{bottom:717.466667pt;}
.y4a_c00195{bottom:730.533333pt;}
.y13_c00195{bottom:733.066667pt;}
.y49_c00195{bottom:746.533333pt;}
.y12_c00195{bottom:748.800000pt;}
.y48_c00195{bottom:762.266667pt;}
.y11_c00195{bottom:768.266667pt;}
.y47_c00195{bottom:778.266667pt;}
.y10_c00195{bottom:787.866667pt;}
.y46_c00195{bottom:797.333333pt;}
.yf_c00195{bottom:803.866667pt;}
.y45_c00195{bottom:813.333333pt;}
.ye_c00195{bottom:819.866667pt;}
.y44_c00195{bottom:829.333333pt;}
.yd_c00195{bottom:835.600000pt;}
.y43_c00195{bottom:845.333333pt;}
.yc_c00195{bottom:851.333333pt;}
.y42_c00195{bottom:861.333333pt;}
.yb_c00195{bottom:867.333333pt;}
.y41_c00195{bottom:877.066667pt;}
.ya_c00195{bottom:883.066667pt;}
.y40_c00195{bottom:896.533333pt;}
.y9_c00195{bottom:898.800000pt;}
.y3f_c00195{bottom:912.800000pt;}
.y8_c00195{bottom:914.800000pt;}
.y3e_c00195{bottom:928.533333pt;}
.y7_c00195{bottom:930.533333pt;}
.y3d_c00195{bottom:944.266667pt;}
.y6_c00195{bottom:946.533333pt;}
.y5_c00195{bottom:962.266667pt;}
.y3c_c00195{bottom:963.200000pt;}
.y4_c00195{bottom:978.266667pt;}
.y3b_c00195{bottom:980.133333pt;}
.y3_c00195{bottom:994.266667pt;}
.y3a_c00195{bottom:996.133333pt;}
.y1_c00195{bottom:1016.266667pt;}
.y2_c00195{bottom:1018.800000pt;}
.h6_c00195{height:48.000000pt;}
.h5_c00195{height:53.333333pt;}
.h4_c00195{height:58.666667pt;}
.h2_c00195{height:64.000000pt;}
.h3_c00195{height:69.333333pt;}
.h1_c00195{height:1130.666667pt;}
.h0_c00195{height:1130.879964pt;}
.w1_c00195{width:856.000000pt;}
.w0_c00195{width:856.319987pt;}
.x0_c00195{left:0.000000pt;}
.x58_c00195{left:107.466667pt;}
.x1_c00195{left:138.266667pt;}
.x4d_c00195{left:160.266667pt;}
.x2_c00195{left:162.266667pt;}
.x9e_c00195{left:163.333333pt;}
.x87_c00195{left:174.533333pt;}
.x40_c00195{left:176.266667pt;}
.xe_c00195{left:177.200000pt;}
.x18_c00195{left:178.400000pt;}
.x95_c00195{left:181.866667pt;}
.x9b_c00195{left:185.600000pt;}
.x74_c00195{left:187.200000pt;}
.x9d_c00195{left:188.266667pt;}
.x7e_c00195{left:192.666667pt;}
.x5d_c00195{left:193.600000pt;}
.x3c_c00195{left:196.000000pt;}
.x22_c00195{left:197.333333pt;}
.x61_c00195{left:198.400000pt;}
.x7c_c00195{left:199.733333pt;}
.x41_c00195{left:204.133333pt;}
.x9f_c00195{left:205.066667pt;}
.x6a_c00195{left:206.800000pt;}
.x6d_c00195{left:208.400000pt;}
.x3d_c00195{left:210.133333pt;}
.x80_c00195{left:212.800000pt;}
.x4e_c00195{left:215.600000pt;}
.x77_c00195{left:216.533333pt;}
.x33_c00195{left:217.600000pt;}
.x59_c00195{left:219.466667pt;}
.x2e_c00195{left:222.000000pt;}
.x1e_c00195{left:222.933333pt;}
.x6e_c00195{left:224.400000pt;}
.x37_c00195{left:226.800000pt;}
.xf_c00195{left:228.133333pt;}
.x62_c00195{left:229.733333pt;}
.x49_c00195{left:231.066667pt;}
.xa0_c00195{left:232.266667pt;}
.x42_c00195{left:233.866667pt;}
.x8c_c00195{left:235.600000pt;}
.x5a_c00195{left:237.066667pt;}
.x55_c00195{left:238.400000pt;}
.x8_c00195{left:239.333333pt;}
.x6b_c00195{left:240.666667pt;}
.x1f_c00195{left:242.133333pt;}
.x97_c00195{left:243.066667pt;}
.xa8_c00195{left:244.266667pt;}
.x68_c00195{left:245.866667pt;}
.x93_c00195{left:246.800000pt;}
.x78_c00195{left:249.200000pt;}
.x65_c00195{left:250.933333pt;}
.x9c_c00195{left:252.133333pt;}
.x99_c00195{left:254.666667pt;}
.x28_c00195{left:256.133333pt;}
.x38_c00195{left:257.866667pt;}
.x4a_c00195{left:259.866667pt;}
.x81_c00195{left:261.733333pt;}
.x91_c00195{left:263.733333pt;}
.xa1_c00195{left:264.933333pt;}
.x10_c00195{left:266.533333pt;}
.x8d_c00195{left:268.133333pt;}
.x44_c00195{left:269.466667pt;}
.x83_c00195{left:270.933333pt;}
.x5e_c00195{left:272.533333pt;}
.x19_c00195{left:276.000000pt;}
.x98_c00195{left:278.000000pt;}
.x75_c00195{left:279.066667pt;}
.x45_c00195{left:280.666667pt;}
.x20_c00195{left:281.866667pt;}
.x11_c00195{left:284.133333pt;}
.x4f_c00195{left:285.333333pt;}
.x88_c00195{left:286.933333pt;}
.x7f_c00195{left:289.066667pt;}
.x5f_c00195{left:290.400000pt;}
.x2f_c00195{left:292.000000pt;}
.x34_c00195{left:293.066667pt;}
.x39_c00195{left:294.000000pt;}
.x71_c00195{left:294.933333pt;}
.x23_c00195{left:295.866667pt;}
.x66_c00195{left:297.066667pt;}
.x12_c00195{left:298.800000pt;}
.x29_c00195{left:300.933333pt;}
.x7d_c00195{left:302.400000pt;}
.x8e_c00195{left:304.000000pt;}
.x82_c00195{left:305.200000pt;}
.x50_c00195{left:307.066667pt;}
.x94_c00195{left:308.266667pt;}
.x6f_c00195{left:311.200000pt;}
.x2a_c00195{left:314.666667pt;}
.x46_c00195{left:315.600000pt;}
.x1a_c00195{left:316.666667pt;}
.x9_c00195{left:318.666667pt;}
.x60_c00195{left:320.800000pt;}
.x13_c00195{left:322.800000pt;}
.x89_c00195{left:326.266667pt;}
.x9a_c00195{left:327.600000pt;}
.x3a_c00195{left:328.533333pt;}
.x14_c00195{left:330.133333pt;}
.x51_c00195{left:333.333333pt;}
.x24_c00195{left:334.266667pt;}
.x92_c00195{left:335.733333pt;}
.x35_c00195{left:336.933333pt;}
.xa_c00195{left:338.133333pt;}
.x30_c00195{left:340.266667pt;}
.x67_c00195{left:341.600000pt;}
.xa2_c00195{left:342.933333pt;}
.x8a_c00195{left:346.666667pt;}
.x15_c00195{left:347.733333pt;}
.x63_c00195{left:349.733333pt;}
.x52_c00195{left:351.600000pt;}
.xb_c00195{left:352.800000pt;}
.x25_c00195{left:353.733333pt;}
.x21_c00195{left:355.466667pt;}
.x64_c00195{left:358.400000pt;}
.x8b_c00195{left:359.466667pt;}
.x31_c00195{left:361.066667pt;}
.x2b_c00195{left:362.400000pt;}
.x79_c00195{left:363.600000pt;}
.x84_c00195{left:366.000000pt;}
.x8f_c00195{left:367.066667pt;}
.x47_c00195{left:368.133333pt;}
.x26_c00195{left:370.000000pt;}
.x3_c00195{left:372.533333pt;}
.xa3_c00195{left:373.600000pt;}
.x3e_c00195{left:375.333333pt;}
.xa5_c00195{left:376.533333pt;}
.x7a_c00195{left:377.733333pt;}
.x1b_c00195{left:380.000000pt;}
.x76_c00195{left:381.600000pt;}
.x53_c00195{left:383.333333pt;}
.x2c_c00195{left:385.466667pt;}
.x16_c00195{left:387.066667pt;}
.x72_c00195{left:388.666667pt;}
.x85_c00195{left:391.600000pt;}
.x56_c00195{left:392.666667pt;}
.x36_c00195{left:395.466667pt;}
.x32_c00195{left:396.533333pt;}
.xa6_c00195{left:398.933333pt;}
.x3b_c00195{left:399.866667pt;}
.xa9_c00195{left:401.066667pt;}
.xc_c00195{left:404.666667pt;}
.x1c_c00195{left:406.533333pt;}
.x48_c00195{left:410.400000pt;}
.x4b_c00195{left:413.066667pt;}
.x4_c00195{left:414.800000pt;}
.x86_c00195{left:415.866667pt;}
.x3f_c00195{left:416.933333pt;}
.x70_c00195{left:420.000000pt;}
.x6c_c00195{left:421.200000pt;}
.x90_c00195{left:422.400000pt;}
.x57_c00195{left:423.333333pt;}
.xa4_c00195{left:424.266667pt;}
.x5b_c00195{left:425.600000pt;}
.xa7_c00195{left:428.000000pt;}
.x27_c00195{left:429.866667pt;}
.x73_c00195{left:431.200000pt;}
.x69_c00195{left:433.333333pt;}
.x43_c00195{left:434.933333pt;}
.x5_c00195{left:436.933333pt;}
.x2d_c00195{left:438.266667pt;}
.xaa_c00195{left:440.400000pt;}
.x17_c00195{left:442.400000pt;}
.xd_c00195{left:444.400000pt;}
.x1d_c00195{left:446.266667pt;}
.x54_c00195{left:447.333333pt;}
.x96_c00195{left:448.800000pt;}
.x4c_c00195{left:450.533333pt;}
.x7b_c00195{left:454.266667pt;}
.x5c_c00195{left:456.933333pt;}
.x6_c00195{left:460.000000pt;}
.x110_c00195{left:468.800000pt;}
.x149_c00195{left:476.800000pt;}
.xff_c00195{left:478.133333pt;}
.x11f_c00195{left:479.066667pt;}
.x136_c00195{left:489.866667pt;}
.xab_c00195{left:492.533333pt;}
.xbb_c00195{left:493.466667pt;}
.xfc_c00195{left:494.533333pt;}
.x137_c00195{left:502.266667pt;}
.xbd_c00195{left:509.733333pt;}
.x11d_c00195{left:510.666667pt;}
.x14d_c00195{left:512.000000pt;}
.x119_c00195{left:514.000000pt;}
.x120_c00195{left:515.600000pt;}
.x7_c00195{left:516.933333pt;}
.xef_c00195{left:519.333333pt;}
.xe4_c00195{left:521.866667pt;}
.xe9_c00195{left:523.600000pt;}
.xd1_c00195{left:526.000000pt;}
.xbc_c00195{left:527.066667pt;}
.xc2_c00195{left:528.266667pt;}
.x10e_c00195{left:530.000000pt;}
.xb4_c00195{left:530.933333pt;}
.x132_c00195{left:531.866667pt;}
.x100_c00195{left:532.800000pt;}
.xac_c00195{left:534.400000pt;}
.x11e_c00195{left:536.266667pt;}
.xfa_c00195{left:537.333333pt;}
.x13e_c00195{left:538.800000pt;}
.xdd_c00195{left:540.266667pt;}
.xec_c00195{left:542.133333pt;}
.x140_c00195{left:543.200000pt;}
.xd6_c00195{left:546.133333pt;}
.x10f_c00195{left:547.600000pt;}
.xde_c00195{left:548.533333pt;}
.xd2_c00195{left:550.400000pt;}
.xf0_c00195{left:554.533333pt;}
.x139_c00195{left:555.466667pt;}
.xfd_c00195{left:556.666667pt;}
.x104_c00195{left:558.400000pt;}
.xda_c00195{left:560.800000pt;}
.x123_c00195{left:563.733333pt;}
.xbe_c00195{left:565.733333pt;}
.xb5_c00195{left:566.800000pt;}
.xf6_c00195{left:568.000000pt;}
.xea_c00195{left:569.333333pt;}
.x14a_c00195{left:570.266667pt;}
.xd3_c00195{left:572.133333pt;}
.x12d_c00195{left:573.066667pt;}
.xdf_c00195{left:574.800000pt;}
.x115_c00195{left:576.000000pt;}
.xad_c00195{left:577.600000pt;}
.x146_c00195{left:579.200000pt;}
.x12a_c00195{left:580.133333pt;}
.xc8_c00195{left:581.600000pt;}
.x124_c00195{left:582.666667pt;}
.xd7_c00195{left:585.066667pt;}
.x133_c00195{left:586.533333pt;}
.xeb_c00195{left:587.866667pt;}
.x12c_c00195{left:589.333333pt;}
.xe5_c00195{left:590.400000pt;}
.x12f_c00195{left:592.400000pt;}
.x127_c00195{left:594.000000pt;}
.xc9_c00195{left:595.733333pt;}
.xfe_c00195{left:596.933333pt;}
.x11a_c00195{left:598.133333pt;}
.x13a_c00195{left:600.266667pt;}
.xe0_c00195{left:602.000000pt;}
.x134_c00195{left:603.200000pt;}
.x109_c00195{left:604.400000pt;}
.xae_c00195{left:606.666667pt;}
.xb6_c00195{left:610.266667pt;}
.x117_c00195{left:612.266667pt;}
.x126_c00195{left:613.200000pt;}
.x11b_c00195{left:614.133333pt;}
.x10a_c00195{left:615.866667pt;}
.x105_c00195{left:619.466667pt;}
.xf1_c00195{left:621.066667pt;}
.x13b_c00195{left:622.666667pt;}
.xbf_c00195{left:625.866667pt;}
.xd4_c00195{left:627.200000pt;}
.x14b_c00195{left:629.200000pt;}
.xaf_c00195{left:631.333333pt;}
.xca_c00195{left:634.400000pt;}
.xc3_c00195{left:635.466667pt;}
.xf2_c00195{left:637.333333pt;}
.x101_c00195{left:639.333333pt;}
.x106_c00195{left:640.933333pt;}
.x121_c00195{left:642.266667pt;}
.x12e_c00195{left:643.200000pt;}
.xb0_c00195{left:645.733333pt;}
.x125_c00195{left:648.266667pt;}
.xd8_c00195{left:649.333333pt;}
.x122_c00195{left:650.533333pt;}
.xcb_c00195{left:652.266667pt;}
.xf7_c00195{left:655.066667pt;}
.x13c_c00195{left:656.533333pt;}
.x13f_c00195{left:657.466667pt;}
.xe6_c00195{left:659.600000pt;}
.x111_c00195{left:662.933333pt;}
.x142_c00195{left:664.000000pt;}
.xc4_c00195{left:666.133333pt;}
.xf3_c00195{left:667.733333pt;}
.x130_c00195{left:669.466667pt;}
.xb7_c00195{left:670.400000pt;}
.x144_c00195{left:671.466667pt;}
.xc0_c00195{left:672.533333pt;}
.x147_c00195{left:673.466667pt;}
.x13d_c00195{left:674.400000pt;}
.xed_c00195{left:675.466667pt;}
.xb1_c00195{left:677.466667pt;}
.x128_c00195{left:679.733333pt;}
.xcc_c00195{left:681.333333pt;}
.x112_c00195{left:682.800000pt;}
.x10b_c00195{left:683.733333pt;}
.xc5_c00195{left:684.666667pt;}
.x11c_c00195{left:685.733333pt;}
.xe1_c00195{left:687.866667pt;}
.x148_c00195{left:689.200000pt;}
.xdb_c00195{left:690.666667pt;}
.x102_c00195{left:693.066667pt;}
.xf4_c00195{left:694.000000pt;}
.xb8_c00195{left:696.000000pt;}
.xcd_c00195{left:698.666667pt;}
.xb2_c00195{left:699.866667pt;}
.x118_c00195{left:701.200000pt;}
.xe7_c00195{left:703.466667pt;}
.xe2_c00195{left:706.133333pt;}
.x103_c00195{left:707.200000pt;}
.x113_c00195{left:708.133333pt;}
.x14e_c00195{left:709.866667pt;}
.xce_c00195{left:712.400000pt;}
.x107_c00195{left:714.266667pt;}
.x108_c00195{left:716.800000pt;}
.xb9_c00195{left:719.066667pt;}
.xc6_c00195{left:720.533333pt;}
.x145_c00195{left:722.000000pt;}
.xd9_c00195{left:723.466667pt;}
.x12b_c00195{left:724.400000pt;}
.x143_c00195{left:725.466667pt;}
.xfb_c00195{left:727.200000pt;}
.x10c_c00195{left:728.533333pt;}
.x129_c00195{left:730.933333pt;}
.x14c_c00195{left:732.133333pt;}
.xe3_c00195{left:733.600000pt;}
.xd5_c00195{left:734.933333pt;}
.xdc_c00195{left:737.066667pt;}
.x138_c00195{left:738.133333pt;}
.x116_c00195{left:739.866667pt;}
.xf8_c00195{left:742.533333pt;}
.x141_c00195{left:744.266667pt;}
.xc1_c00195{left:745.200000pt;}
.x131_c00195{left:747.200000pt;}
.xee_c00195{left:748.133333pt;}
.xcf_c00195{left:749.466667pt;}
.xb3_c00195{left:751.333333pt;}
.x114_c00195{left:754.800000pt;}
.xe8_c00195{left:756.533333pt;}
.xd0_c00195{left:757.733333pt;}
.x10d_c00195{left:758.933333pt;}
.xf9_c00195{left:761.066667pt;}
.x135_c00195{left:762.133333pt;}
.xba_c00195{left:763.200000pt;}
.xc7_c00195{left:766.266667pt;}
.xf5_c00195{left:774.400000pt;}
}





/* 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_c00196 {
    display:none;
  }
  .loading-indicator_c00196.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00196 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_c00196 { 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_c00196" -> "#page-container .classname_c00196")
 */
.pf_c00196 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00196 { /* 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_c00196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00196 { /* 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_c00196 { /* 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_c00196 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00196 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00196 {overflow:visible;}
  }
}
.c_c00196 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00196 { /* 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_c00196:after { /* webkit #35443 */
  content: '';
}
.t_c00196:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00196 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 */
}
.__c00196 { /* 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_c00196 { /* info for Javascript */
  display:none;
}
.l_c00196 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00196 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00196 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00196: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_c00196 {
    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_c00196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00196.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_c00196 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00196;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.000000;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;}
.mc1_c00196{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00196{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00196{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00196{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00196{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m48_c00196{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.me1_c00196{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00196{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m68_c00196{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00196{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00196{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00196{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00196{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m56_c00196{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00196{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00196{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m85_c00196{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00196{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m33_c00196{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m116_c00196{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m28_c00196{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00196{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00196{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m107_c00196{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00196{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m1_c00196{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m69_c00196{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00196{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00196{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m8_c00196{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m66_c00196{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00196{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m53_c00196{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m73_c00196{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m58_c00196{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m62_c00196{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m90_c00196{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m52_c00196{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m4_c00196{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00196{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00196{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m5_c00196{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md8_c00196{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m97_c00196{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m72_c00196{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m37_c00196{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00196{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m51_c00196{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00196{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.md_c00196{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00196{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mb_c00196{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00196{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00196{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00196{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m42_c00196{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m19_c00196{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m27_c00196{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00196{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m74_c00196{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m23_c00196{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m63_c00196{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m86_c00196{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mba_c00196{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7_c00196{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00196{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m109_c00196{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00196{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m98_c00196{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00196{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00196{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m13_c00196{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00196{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m113_c00196{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m78_c00196{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00196{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m43_c00196{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00196{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00196{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00196{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m50_c00196{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.me_c00196{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m44_c00196{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m6_c00196{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00196{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00196{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m47_c00196{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00196{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m82_c00196{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00196{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00196{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md6_c00196{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00196{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00196{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m14_c00196{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00196{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m16_c00196{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md7_c00196{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m40_c00196{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m93_c00196{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00196{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00196{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00196{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00196{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9_c00196{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00196{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m102_c00196{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m21_c00196{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m77_c00196{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m24_c00196{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00196{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m92_c00196{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00196{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00196{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00196{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3_c00196{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00196{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00196{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00196{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m89_c00196{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m60_c00196{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma_c00196{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00196{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m31_c00196{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.meb_c00196{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m20_c00196{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m59_c00196{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00196{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m49_c00196{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00196{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00196{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mad_c00196{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00196{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m57_c00196{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00196{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m34_c00196{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m25_c00196{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00196{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.maa_c00196{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m15_c00196{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00196{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m81_c00196{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m26_c00196{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m18_c00196{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m114_c00196{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00196{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc_c00196{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m88_c00196{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m71_c00196{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m11_c00196{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00196{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m117_c00196{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m67_c00196{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m103_c00196{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me2_c00196{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m94_c00196{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00196{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m41_c00196{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md2_c00196{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00196{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me6_c00196{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m64_c00196{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mab_c00196{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mac_c00196{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00196{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m35_c00196{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m105_c00196{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00196{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m84_c00196{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m87_c00196{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m30_c00196{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m32_c00196{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00196{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m99_c00196{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m79_c00196{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m91_c00196{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m110_c00196{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m39_c00196{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m112_c00196{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md4_c00196{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00196{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00196{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.md0_c00196{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m12_c00196{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md1_c00196{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m65_c00196{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00196{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00196{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00196{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m29_c00196{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m75_c00196{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00196{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mec_c00196{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m36_c00196{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00196{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m115_c00196{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m104_c00196{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m83_c00196{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m108_c00196{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2_c00196{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00196{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00196{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.maf_c00196{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00196{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00196{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m45_c00196{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00196{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me3_c00196{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00196{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00196{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mce_c00196{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00196{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me8_c00196{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m17_c00196{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m80_c00196{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m106_c00196{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m76_c00196{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00196{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mca_c00196{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.me7_c00196{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00196{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m61_c00196{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mda_c00196{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00196{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00196{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00196{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00196{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00196{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m22_c00196{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00196{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);}
.m46_c00196{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md9_c00196{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00196{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00196{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00196{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me0_c00196{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m100_c00196{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00196{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m96_c00196{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00196{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf_c00196{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00196{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m70_c00196{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00196{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m111_c00196{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00196{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mea_c00196{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00196{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mef_c00196{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m55_c00196{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.med_c00196{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m95_c00196{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00196{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00196{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00196{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.md3_c00196{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mde_c00196{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00196{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m38_c00196{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mae_c00196{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m10_c00196{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00196{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.md5_c00196{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00196{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00196{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m54_c00196{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00196{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00196{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.me5_c00196{transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00196{transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);}
.me4_c00196{transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);}
.mee_c00196{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00196{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00196{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00196{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.m101_c00196{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.me9_c00196{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.mff_c00196{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m0_c00196{transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00196{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls1_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:76.923664px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{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__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00196{word-spacing:-109.923664px;}
.ws0_c00196{word-spacing:-11.857143px;}
.ws3_c00196{word-spacing:-7.559719px;}
.ws1_c00196{word-spacing:-7.050955px;}
.ws2_c00196{word-spacing:-6.934708px;}
.ws5_c00196{word-spacing:-4.407821px;}
.ws6_c00196{word-spacing:-1.385982px;}
.wsb_c00196{word-spacing:0.000000px;}
.ws4_c00196{word-spacing:3.125000px;}
.ws9_c00196{word-spacing:3.421053px;}
.wsa_c00196{word-spacing:13.214286px;}
.ws8_c00196{word-spacing:66.315789px;}
._2_c00196{margin-left:-76.923664px;}
._0_c00196{width:30.936306px;}
._1_c00196{width:32.961783px;}
._3_c00196{width:68.214286px;}
.fc0_c00196{color:transparent;}
.fs6_c00196{font-size:24.000000px;}
.fs4_c00196{font-size:30.000000px;}
.fs7_c00196{font-size:42.000000px;}
.fs5_c00196{font-size:54.000000px;}
.fs3_c00196{font-size:60.000000px;}
.fs2_c00196{font-size:66.000000px;}
.fs1_c00196{font-size:72.000000px;}
.fs0_c00196{font-size:78.000000px;}
.y0_c00196{bottom:0.000000px;}
.y6e_c00196{bottom:179.700000px;}
.y36_c00196{bottom:182.850000px;}
.y6d_c00196{bottom:198.000000px;}
.y35_c00196{bottom:201.600000px;}
.y6c_c00196{bottom:216.000000px;}
.y34_c00196{bottom:218.850000px;}
.y6b_c00196{bottom:234.000000px;}
.y33_c00196{bottom:236.400000px;}
.y6a_c00196{bottom:252.000000px;}
.y32_c00196{bottom:254.100000px;}
.y69_c00196{bottom:269.700000px;}
.y31_c00196{bottom:271.800000px;}
.y68_c00196{bottom:287.700000px;}
.y30_c00196{bottom:290.100000px;}
.y67_c00196{bottom:305.700000px;}
.y2f_c00196{bottom:307.800000px;}
.y66_c00196{bottom:323.400000px;}
.y2e_c00196{bottom:325.500000px;}
.y65_c00196{bottom:341.100000px;}
.y2d_c00196{bottom:343.500000px;}
.y64_c00196{bottom:358.800000px;}
.y2c_c00196{bottom:361.200000px;}
.y63_c00196{bottom:376.500000px;}
.y2b_c00196{bottom:379.200000px;}
.y62_c00196{bottom:394.500000px;}
.y2a_c00196{bottom:396.900000px;}
.y61_c00196{bottom:414.750000px;}
.y29_c00196{bottom:414.900000px;}
.y60_c00196{bottom:429.150000px;}
.y28_c00196{bottom:432.900000px;}
.y5f_c00196{bottom:443.850000px;}
.y27_c00196{bottom:450.600000px;}
.y5e_c00196{bottom:457.500000px;}
.y26_c00196{bottom:468.600000px;}
.y5d_c00196{bottom:472.650000px;}
.y25_c00196{bottom:486.600000px;}
.y5b_c00196{bottom:486.750000px;}
.y5a_c00196{bottom:501.150000px;}
.y24_c00196{bottom:504.300000px;}
.y59_c00196{bottom:515.250000px;}
.y23_c00196{bottom:522.300000px;}
.y58_c00196{bottom:529.650000px;}
.y5c_c00196{bottom:530.700000px;}
.y22_c00196{bottom:540.300000px;}
.y57_c00196{bottom:544.050000px;}
.y21_c00196{bottom:558.000000px;}
.y56_c00196{bottom:558.450000px;}
.y55_c00196{bottom:572.850000px;}
.y20_c00196{bottom:575.700000px;}
.y54_c00196{bottom:587.550000px;}
.y1f_c00196{bottom:596.850000px;}
.y53_c00196{bottom:601.650000px;}
.y1e_c00196{bottom:610.650000px;}
.y37_c00196{bottom:610.950000px;}
.y52_c00196{bottom:616.350000px;}
.y1d_c00196{bottom:625.350000px;}
.y51_c00196{bottom:636.000000px;}
.y1c_c00196{bottom:641.850000px;}
.y50_c00196{bottom:653.700000px;}
.y1b_c00196{bottom:660.300000px;}
.y4f_c00196{bottom:666.000000px;}
.y4e_c00196{bottom:675.750000px;}
.y1a_c00196{bottom:678.300000px;}
.y4d_c00196{bottom:693.750000px;}
.y19_c00196{bottom:700.200000px;}
.y4c_c00196{bottom:711.300000px;}
.y18_c00196{bottom:718.200000px;}
.y4b_c00196{bottom:729.000000px;}
.y17_c00196{bottom:736.200000px;}
.y4a_c00196{bottom:747.000000px;}
.y16_c00196{bottom:754.200000px;}
.y15_c00196{bottom:772.200000px;}
.y49_c00196{bottom:778.350000px;}
.y14_c00196{bottom:794.100000px;}
.y48_c00196{bottom:796.200000px;}
.y47_c00196{bottom:813.900000px;}
.y13_c00196{bottom:819.600000px;}
.y46_c00196{bottom:831.600000px;}
.y12_c00196{bottom:838.650000px;}
.y45_c00196{bottom:853.800000px;}
.y11_c00196{bottom:856.650000px;}
.y44_c00196{bottom:871.500000px;}
.y10_c00196{bottom:874.350000px;}
.y43_c00196{bottom:889.200000px;}
.yf_c00196{bottom:892.050000px;}
.y42_c00196{bottom:907.200000px;}
.ye_c00196{bottom:914.100000px;}
.y41_c00196{bottom:928.800000px;}
.yd_c00196{bottom:932.100000px;}
.y40_c00196{bottom:946.800000px;}
.yc_c00196{bottom:949.800000px;}
.yb_c00196{bottom:967.500000px;}
.y3f_c00196{bottom:972.000000px;}
.ya_c00196{bottom:985.200000px;}
.y3e_c00196{bottom:989.700000px;}
.y9_c00196{bottom:1003.200000px;}
.y3d_c00196{bottom:1007.700000px;}
.y8_c00196{bottom:1021.200000px;}
.y3c_c00196{bottom:1025.250000px;}
.y7_c00196{bottom:1038.900000px;}
.y3b_c00196{bottom:1042.950000px;}
.y6_c00196{bottom:1056.600000px;}
.y3a_c00196{bottom:1061.250000px;}
.y5_c00196{bottom:1074.900000px;}
.y39_c00196{bottom:1078.500000px;}
.y4_c00196{bottom:1096.500000px;}
.y38_c00196{bottom:1114.200000px;}
.y3_c00196{bottom:1114.500000px;}
.y2_c00196{bottom:1138.650000px;}
.y1_c00196{bottom:1141.200000px;}
.h8_c00196{height:24.000000px;}
.h6_c00196{height:30.000000px;}
.h9_c00196{height:42.000000px;}
.h7_c00196{height:54.000000px;}
.h5_c00196{height:60.000000px;}
.h4_c00196{height:66.000000px;}
.h3_c00196{height:72.000000px;}
.h2_c00196{height:78.000000px;}
.h0_c00196{height:1269.720063px;}
.h1_c00196{height:1269.750000px;}
.w1_c00196{width:963.000000px;}
.w0_c00196{width:963.359985px;}
.x0_c00196{left:0.000000px;}
.x73_c00196{left:93.600000px;}
.x48_c00196{left:95.700000px;}
.x10_c00196{left:97.950000px;}
.x7a_c00196{left:108.600000px;}
.x58_c00196{left:110.550000px;}
.x5c_c00196{left:112.350000px;}
.x46_c00196{left:113.850000px;}
.x4_c00196{left:114.900000px;}
.xc_c00196{left:116.100000px;}
.x7e_c00196{left:123.450000px;}
.x49_c00196{left:126.600000px;}
.x38_c00196{left:127.800000px;}
.x69_c00196{left:129.300000px;}
.x5b_c00196{left:131.850000px;}
.x61_c00196{left:133.500000px;}
.x40_c00196{left:135.300000px;}
.x81_c00196{left:136.800000px;}
.x31_c00196{left:138.150000px;}
.x87_c00196{left:140.550000px;}
.x7b_c00196{left:142.050000px;}
.x5_c00196{left:144.000000px;}
.xd_c00196{left:145.200000px;}
.x4c_c00196{left:147.450000px;}
.x8c_c00196{left:148.500000px;}
.x93_c00196{left:149.700000px;}
.x16_c00196{left:151.500000px;}
.x5d_c00196{left:155.250000px;}
.x26_c00196{left:157.200000px;}
.x76_c00196{left:159.150000px;}
.x9a_c00196{left:160.200000px;}
.x4d_c00196{left:161.550000px;}
.x1d_c00196{left:162.600000px;}
.x96_c00196{left:163.650000px;}
.xa1_c00196{left:165.600000px;}
.x11_c00196{left:167.400000px;}
.x91_c00196{left:169.200000px;}
.x85_c00196{left:170.250000px;}
.x62_c00196{left:172.350000px;}
.x9f_c00196{left:173.850000px;}
.x59_c00196{left:174.900000px;}
.x94_c00196{left:176.400000px;}
.x27_c00196{left:178.050000px;}
.x1e_c00196{left:181.350000px;}
.x23_c00196{left:182.850000px;}
.x17_c00196{left:187.800000px;}
.x47_c00196{left:189.450000px;}
.x2c_c00196{left:190.950000px;}
.x82_c00196{left:192.900000px;}
.x28_c00196{left:194.550000px;}
.x95_c00196{left:195.900000px;}
.x6_c00196{left:196.950000px;}
.x5e_c00196{left:200.550000px;}
.x4a_c00196{left:204.300000px;}
.x2d_c00196{left:208.650000px;}
.x63_c00196{left:209.850000px;}
.x7c_c00196{left:211.800000px;}
.xe_c00196{left:213.600000px;}
.x4e_c00196{left:214.800000px;}
.x1f_c00196{left:215.850000px;}
.x7_c00196{left:218.250000px;}
.x18_c00196{left:219.900000px;}
.x39_c00196{left:221.100000px;}
.x70_c00196{left:223.950000px;}
.x32_c00196{left:225.300000px;}
.x41_c00196{left:226.350000px;}
.x6a_c00196{left:229.350000px;}
.x7f_c00196{left:230.400000px;}
.x74_c00196{left:234.750000px;}
.xf_c00196{left:236.700000px;}
.x33_c00196{left:237.900000px;}
.x97_c00196{left:240.000000px;}
.x54_c00196{left:241.650000px;}
.x9b_c00196{left:243.900000px;}
.x12_c00196{left:245.550000px;}
.x8_c00196{left:247.050000px;}
.x3a_c00196{left:250.650000px;}
.x52_c00196{left:252.150000px;}
.x77_c00196{left:253.500000px;}
.x71_c00196{left:254.850000px;}
.x64_c00196{left:258.450000px;}
.x86_c00196{left:261.300000px;}
.x29_c00196{left:263.700000px;}
.x13_c00196{left:265.650000px;}
.x3b_c00196{left:267.150000px;}
.x88_c00196{left:268.350000px;}
.x83_c00196{left:269.700000px;}
.x72_c00196{left:273.600000px;}
.x19_c00196{left:274.650000px;}
.x20_c00196{left:276.750000px;}
.x6b_c00196{left:278.550000px;}
.x2e_c00196{left:279.900000px;}
.x24_c00196{left:282.150000px;}
.x55_c00196{left:287.700000px;}
.x34_c00196{left:289.050000px;}
.x2a_c00196{left:291.450000px;}
.x98_c00196{left:292.950000px;}
.x4f_c00196{left:294.000000px;}
.x1a_c00196{left:295.500000px;}
.x42_c00196{left:296.550000px;}
.xa0_c00196{left:299.850000px;}
.x5f_c00196{left:301.650000px;}
.x3c_c00196{left:302.850000px;}
.x5a_c00196{left:304.950000px;}
.x6c_c00196{left:308.850000px;}
.x78_c00196{left:313.350000px;}
.x7d_c00196{left:314.400000px;}
.x43_c00196{left:316.350000px;}
.x89_c00196{left:317.700000px;}
.x9_c00196{left:318.750000px;}
.x65_c00196{left:320.700000px;}
.x3d_c00196{left:322.950000px;}
.x90_c00196{left:324.000000px;}
.x50_c00196{left:325.350000px;}
.x53_c00196{left:330.300000px;}
.x21_c00196{left:331.500000px;}
.x2f_c00196{left:333.600000px;}
.xa_c00196{left:338.250000px;}
.x1_c00196{left:340.200000px;}
.x9d_c00196{left:341.550000px;}
.xa2_c00196{left:343.950000px;}
.x44_c00196{left:345.450000px;}
.x1b_c00196{left:348.000000px;}
.x22_c00196{left:351.000000px;}
.x9c_c00196{left:353.250000px;}
.x6d_c00196{left:354.600000px;}
.x8a_c00196{left:356.250000px;}
.x8e_c00196{left:357.450000px;}
.x14_c00196{left:358.650000px;}
.xb_c00196{left:360.900000px;}
.x92_c00196{left:361.950000px;}
.x25_c00196{left:363.450000px;}
.x66_c00196{left:366.450000px;}
.x3e_c00196{left:368.250000px;}
.x1c_c00196{left:369.300000px;}
.x6e_c00196{left:371.100000px;}
.x56_c00196{left:373.350000px;}
.x35_c00196{left:376.950000px;}
.x15_c00196{left:378.750000px;}
.x79_c00196{left:381.150000px;}
.x4b_c00196{left:383.250000px;}
.x45_c00196{left:384.600000px;}
.x67_c00196{left:385.950000px;}
.x30_c00196{left:387.600000px;}
.x60_c00196{left:389.850000px;}
.x6f_c00196{left:392.400000px;}
.x51_c00196{left:394.800000px;}
.x99_c00196{left:396.300000px;}
.x80_c00196{left:397.800000px;}
.x8b_c00196{left:401.550000px;}
.x8d_c00196{left:404.700000px;}
.xa3_c00196{left:406.650000px;}
.x8f_c00196{left:407.850000px;}
.x84_c00196{left:410.700000px;}
.x36_c00196{left:412.200000px;}
.x3f_c00196{left:414.000000px;}
.x9e_c00196{left:415.050000px;}
.x68_c00196{left:416.250000px;}
.x75_c00196{left:418.350000px;}
.x2b_c00196{left:421.050000px;}
.x57_c00196{left:425.250000px;}
.x37_c00196{left:426.300000px;}
.x133_c00196{left:450.300000px;}
.x114_c00196{left:451.500000px;}
.x104_c00196{left:452.550000px;}
.xdd_c00196{left:453.600000px;}
.xc5_c00196{left:463.350000px;}
.x12b_c00196{left:464.400000px;}
.x11f_c00196{left:465.450000px;}
.x139_c00196{left:467.400000px;}
.x113_c00196{left:468.450000px;}
.xf4_c00196{left:469.500000px;}
.xa4_c00196{left:470.850000px;}
.xb3_c00196{left:472.050000px;}
.x127_c00196{left:478.200000px;}
.x125_c00196{left:479.400000px;}
.x122_c00196{left:485.100000px;}
.x105_c00196{left:487.800000px;}
.xbd_c00196{left:489.900000px;}
.xf2_c00196{left:491.700000px;}
.xb4_c00196{left:493.350000px;}
.xfe_c00196{left:496.200000px;}
.xab_c00196{left:497.250000px;}
.x128_c00196{left:500.850000px;}
.xce_c00196{left:502.200000px;}
.x119_c00196{left:503.700000px;}
.xda_c00196{left:506.550000px;}
.xd2_c00196{left:509.400000px;}
.xa5_c00196{left:510.750000px;}
.x10a_c00196{left:512.100000px;}
.x13a_c00196{left:515.250000px;}
.x145_c00196{left:517.950000px;}
.xc6_c00196{left:519.600000px;}
.x12c_c00196{left:520.800000px;}
.x10e_c00196{left:522.000000px;}
.xbb_c00196{left:523.200000px;}
.xd3_c00196{left:524.850000px;}
.x129_c00196{left:525.900000px;}
.xa6_c00196{left:530.850000px;}
.x12a_c00196{left:532.800000px;}
.xdb_c00196{left:533.850000px;}
.xac_c00196{left:535.050000px;}
.xbe_c00196{left:536.700000px;}
.xe8_c00196{left:538.200000px;}
.xeb_c00196{left:541.500000px;}
.xef_c00196{left:543.300000px;}
.xe4_c00196{left:545.550000px;}
.xde_c00196{left:547.500000px;}
.xf5_c00196{left:550.800000px;}
.xb5_c00196{left:553.500000px;}
.xad_c00196{left:554.850000px;}
.xcf_c00196{left:557.250000px;}
.x12d_c00196{left:558.600000px;}
.x115_c00196{left:560.250000px;}
.xff_c00196{left:561.750000px;}
.xbf_c00196{left:564.450000px;}
.xc7_c00196{left:565.650000px;}
.x136_c00196{left:567.000000px;}
.x10b_c00196{left:568.200000px;}
.xe9_c00196{left:569.550000px;}
.xf0_c00196{left:571.350000px;}
.xf8_c00196{left:573.600000px;}
.x11a_c00196{left:574.800000px;}
.xb6_c00196{left:576.600000px;}
.x100_c00196{left:580.800000px;}
.x106_c00196{left:582.900000px;}
.x130_c00196{left:584.850000px;}
.xdc_c00196{left:587.550000px;}
.xc8_c00196{left:589.050000px;}
.xf9_c00196{left:592.350000px;}
.xd4_c00196{left:593.550000px;}
.x11b_c00196{left:594.900000px;}
.x120_c00196{left:596.400000px;}
.x13e_c00196{left:598.800000px;}
.x12e_c00196{left:601.500000px;}
.xae_c00196{left:603.750000px;}
.xa7_c00196{left:605.700000px;}
.x101_c00196{left:609.900000px;}
.x116_c00196{left:611.400000px;}
.x107_c00196{left:613.500000px;}
.xd0_c00196{left:614.850000px;}
.x12f_c00196{left:616.950000px;}
.xdf_c00196{left:619.800000px;}
.xb7_c00196{left:620.850000px;}
.x11c_c00196{left:622.650000px;}
.x123_c00196{left:624.150000px;}
.xc0_c00196{left:625.650000px;}
.xa8_c00196{left:629.400000px;}
.x11d_c00196{left:631.650000px;}
.xaf_c00196{left:633.300000px;}
.x141_c00196{left:637.350000px;}
.x10f_c00196{left:639.000000px;}
.xec_c00196{left:640.800000px;}
.xfa_c00196{left:642.150000px;}
.xc9_c00196{left:643.350000px;}
.xe0_c00196{left:645.000000px;}
.x108_c00196{left:646.200000px;}
.xe5_c00196{left:647.250000px;}
.xf6_c00196{left:648.300000px;}
.xc1_c00196{left:649.800000px;}
.xd5_c00196{left:650.850000px;}
.x102_c00196{left:654.150000px;}
.x121_c00196{left:655.800000px;}
.xfb_c00196{left:660.150000px;}
.x147_c00196{left:662.400000px;}
.xca_c00196{left:664.200000px;}
.x103_c00196{left:666.450000px;}
.x144_c00196{left:667.650000px;}
.xc2_c00196{left:668.850000px;}
.xf1_c00196{left:672.450000px;}
.x13b_c00196{left:673.650000px;}
.xd6_c00196{left:675.000000px;}
.x109_c00196{left:676.500000px;}
.x110_c00196{left:678.300000px;}
.xe6_c00196{left:680.700000px;}
.xa9_c00196{left:682.350000px;}
.x142_c00196{left:684.450000px;}
.xcb_c00196{left:686.100000px;}
.x10c_c00196{left:688.500000px;}
.x117_c00196{left:689.550000px;}
.xe1_c00196{left:691.800000px;}
.x131_c00196{left:695.400000px;}
.x111_c00196{left:697.350000px;}
.xb0_c00196{left:698.850000px;}
.xe2_c00196{left:700.800000px;}
.xe7_c00196{left:702.600000px;}
.x146_c00196{left:706.650000px;}
.x11e_c00196{left:707.700000px;}
.xb8_c00196{left:710.850000px;}
.xfc_c00196{left:712.650000px;}
.x126_c00196{left:715.200000px;}
.xd1_c00196{left:716.700000px;}
.x124_c00196{left:718.050000px;}
.xcc_c00196{left:719.550000px;}
.x13f_c00196{left:721.200000px;}
.xf7_c00196{left:723.150000px;}
.xed_c00196{left:726.150000px;}
.xd7_c00196{left:727.200000px;}
.x137_c00196{left:729.450000px;}
.xb1_c00196{left:732.750000px;}
.xb9_c00196{left:734.250000px;}
.x13c_c00196{left:735.600000px;}
.xf3_c00196{left:736.950000px;}
.x132_c00196{left:738.000000px;}
.xc3_c00196{left:739.050000px;}
.xea_c00196{left:741.300000px;}
.x112_c00196{left:744.600000px;}
.xfd_c00196{left:746.550000px;}
.x134_c00196{left:748.200000px;}
.xaa_c00196{left:749.700000px;}
.xe3_c00196{left:751.200000px;}
.x118_c00196{left:753.600000px;}
.x13d_c00196{left:756.150000px;}
.xb2_c00196{left:757.950000px;}
.xc4_c00196{left:759.900000px;}
.xd8_c00196{left:761.100000px;}
.x143_c00196{left:762.900000px;}
.x2_c00196{left:764.250000px;}
.xcd_c00196{left:766.650000px;}
.xbc_c00196{left:767.700000px;}
.xba_c00196{left:770.550000px;}
.x10d_c00196{left:771.750000px;}
.x3_c00196{left:773.550000px;}
.x138_c00196{left:775.500000px;}
.xee_c00196{left:778.050000px;}
.xd9_c00196{left:779.850000px;}
.x140_c00196{left:782.100000px;}
.x135_c00196{left:783.150000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls1_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:68.376590pt;}
.ws7_c00196{word-spacing:-97.709924pt;}
.ws0_c00196{word-spacing:-10.539683pt;}
.ws3_c00196{word-spacing:-6.719750pt;}
.ws1_c00196{word-spacing:-6.267516pt;}
.ws2_c00196{word-spacing:-6.164185pt;}
.ws5_c00196{word-spacing:-3.918063pt;}
.ws6_c00196{word-spacing:-1.231984pt;}
.wsb_c00196{word-spacing:0.000000pt;}
.ws4_c00196{word-spacing:2.777778pt;}
.ws9_c00196{word-spacing:3.040936pt;}
.wsa_c00196{word-spacing:11.746032pt;}
.ws8_c00196{word-spacing:58.947368pt;}
._2_c00196{margin-left:-68.376590pt;}
._0_c00196{width:27.498938pt;}
._1_c00196{width:29.299363pt;}
._3_c00196{width:60.634921pt;}
.fs6_c00196{font-size:21.333333pt;}
.fs4_c00196{font-size:26.666667pt;}
.fs7_c00196{font-size:37.333333pt;}
.fs5_c00196{font-size:48.000000pt;}
.fs3_c00196{font-size:53.333333pt;}
.fs2_c00196{font-size:58.666667pt;}
.fs1_c00196{font-size:64.000000pt;}
.fs0_c00196{font-size:69.333333pt;}
.y0_c00196{bottom:0.000000pt;}
.y6e_c00196{bottom:159.733333pt;}
.y36_c00196{bottom:162.533333pt;}
.y6d_c00196{bottom:176.000000pt;}
.y35_c00196{bottom:179.200000pt;}
.y6c_c00196{bottom:192.000000pt;}
.y34_c00196{bottom:194.533333pt;}
.y6b_c00196{bottom:208.000000pt;}
.y33_c00196{bottom:210.133333pt;}
.y6a_c00196{bottom:224.000000pt;}
.y32_c00196{bottom:225.866667pt;}
.y69_c00196{bottom:239.733333pt;}
.y31_c00196{bottom:241.600000pt;}
.y68_c00196{bottom:255.733333pt;}
.y30_c00196{bottom:257.866667pt;}
.y67_c00196{bottom:271.733333pt;}
.y2f_c00196{bottom:273.600000pt;}
.y66_c00196{bottom:287.466667pt;}
.y2e_c00196{bottom:289.333333pt;}
.y65_c00196{bottom:303.200000pt;}
.y2d_c00196{bottom:305.333333pt;}
.y64_c00196{bottom:318.933333pt;}
.y2c_c00196{bottom:321.066667pt;}
.y63_c00196{bottom:334.666667pt;}
.y2b_c00196{bottom:337.066667pt;}
.y62_c00196{bottom:350.666667pt;}
.y2a_c00196{bottom:352.800000pt;}
.y61_c00196{bottom:368.666667pt;}
.y29_c00196{bottom:368.800000pt;}
.y60_c00196{bottom:381.466667pt;}
.y28_c00196{bottom:384.800000pt;}
.y5f_c00196{bottom:394.533333pt;}
.y27_c00196{bottom:400.533333pt;}
.y5e_c00196{bottom:406.666667pt;}
.y26_c00196{bottom:416.533333pt;}
.y5d_c00196{bottom:420.133333pt;}
.y25_c00196{bottom:432.533333pt;}
.y5b_c00196{bottom:432.666667pt;}
.y5a_c00196{bottom:445.466667pt;}
.y24_c00196{bottom:448.266667pt;}
.y59_c00196{bottom:458.000000pt;}
.y23_c00196{bottom:464.266667pt;}
.y58_c00196{bottom:470.800000pt;}
.y5c_c00196{bottom:471.733333pt;}
.y22_c00196{bottom:480.266667pt;}
.y57_c00196{bottom:483.600000pt;}
.y21_c00196{bottom:496.000000pt;}
.y56_c00196{bottom:496.400000pt;}
.y55_c00196{bottom:509.200000pt;}
.y20_c00196{bottom:511.733333pt;}
.y54_c00196{bottom:522.266667pt;}
.y1f_c00196{bottom:530.533333pt;}
.y53_c00196{bottom:534.800000pt;}
.y1e_c00196{bottom:542.800000pt;}
.y37_c00196{bottom:543.066667pt;}
.y52_c00196{bottom:547.866667pt;}
.y1d_c00196{bottom:555.866667pt;}
.y51_c00196{bottom:565.333333pt;}
.y1c_c00196{bottom:570.533333pt;}
.y50_c00196{bottom:581.066667pt;}
.y1b_c00196{bottom:586.933333pt;}
.y4f_c00196{bottom:592.000000pt;}
.y4e_c00196{bottom:600.666667pt;}
.y1a_c00196{bottom:602.933333pt;}
.y4d_c00196{bottom:616.666667pt;}
.y19_c00196{bottom:622.400000pt;}
.y4c_c00196{bottom:632.266667pt;}
.y18_c00196{bottom:638.400000pt;}
.y4b_c00196{bottom:648.000000pt;}
.y17_c00196{bottom:654.400000pt;}
.y4a_c00196{bottom:664.000000pt;}
.y16_c00196{bottom:670.400000pt;}
.y15_c00196{bottom:686.400000pt;}
.y49_c00196{bottom:691.866667pt;}
.y14_c00196{bottom:705.866667pt;}
.y48_c00196{bottom:707.733333pt;}
.y47_c00196{bottom:723.466667pt;}
.y13_c00196{bottom:728.533333pt;}
.y46_c00196{bottom:739.200000pt;}
.y12_c00196{bottom:745.466667pt;}
.y45_c00196{bottom:758.933333pt;}
.y11_c00196{bottom:761.466667pt;}
.y44_c00196{bottom:774.666667pt;}
.y10_c00196{bottom:777.200000pt;}
.y43_c00196{bottom:790.400000pt;}
.yf_c00196{bottom:792.933333pt;}
.y42_c00196{bottom:806.400000pt;}
.ye_c00196{bottom:812.533333pt;}
.y41_c00196{bottom:825.600000pt;}
.yd_c00196{bottom:828.533333pt;}
.y40_c00196{bottom:841.600000pt;}
.yc_c00196{bottom:844.266667pt;}
.yb_c00196{bottom:860.000000pt;}
.y3f_c00196{bottom:864.000000pt;}
.ya_c00196{bottom:875.733333pt;}
.y3e_c00196{bottom:879.733333pt;}
.y9_c00196{bottom:891.733333pt;}
.y3d_c00196{bottom:895.733333pt;}
.y8_c00196{bottom:907.733333pt;}
.y3c_c00196{bottom:911.333333pt;}
.y7_c00196{bottom:923.466667pt;}
.y3b_c00196{bottom:927.066667pt;}
.y6_c00196{bottom:939.200000pt;}
.y3a_c00196{bottom:943.333333pt;}
.y5_c00196{bottom:955.466667pt;}
.y39_c00196{bottom:958.666667pt;}
.y4_c00196{bottom:974.666667pt;}
.y38_c00196{bottom:990.400000pt;}
.y3_c00196{bottom:990.666667pt;}
.y2_c00196{bottom:1012.133333pt;}
.y1_c00196{bottom:1014.400000pt;}
.h8_c00196{height:21.333333pt;}
.h6_c00196{height:26.666667pt;}
.h9_c00196{height:37.333333pt;}
.h7_c00196{height:48.000000pt;}
.h5_c00196{height:53.333333pt;}
.h4_c00196{height:58.666667pt;}
.h3_c00196{height:64.000000pt;}
.h2_c00196{height:69.333333pt;}
.h0_c00196{height:1128.640056pt;}
.h1_c00196{height:1128.666667pt;}
.w1_c00196{width:856.000000pt;}
.w0_c00196{width:856.319987pt;}
.x0_c00196{left:0.000000pt;}
.x73_c00196{left:83.200000pt;}
.x48_c00196{left:85.066667pt;}
.x10_c00196{left:87.066667pt;}
.x7a_c00196{left:96.533333pt;}
.x58_c00196{left:98.266667pt;}
.x5c_c00196{left:99.866667pt;}
.x46_c00196{left:101.200000pt;}
.x4_c00196{left:102.133333pt;}
.xc_c00196{left:103.200000pt;}
.x7e_c00196{left:109.733333pt;}
.x49_c00196{left:112.533333pt;}
.x38_c00196{left:113.600000pt;}
.x69_c00196{left:114.933333pt;}
.x5b_c00196{left:117.200000pt;}
.x61_c00196{left:118.666667pt;}
.x40_c00196{left:120.266667pt;}
.x81_c00196{left:121.600000pt;}
.x31_c00196{left:122.800000pt;}
.x87_c00196{left:124.933333pt;}
.x7b_c00196{left:126.266667pt;}
.x5_c00196{left:128.000000pt;}
.xd_c00196{left:129.066667pt;}
.x4c_c00196{left:131.066667pt;}
.x8c_c00196{left:132.000000pt;}
.x93_c00196{left:133.066667pt;}
.x16_c00196{left:134.666667pt;}
.x5d_c00196{left:138.000000pt;}
.x26_c00196{left:139.733333pt;}
.x76_c00196{left:141.466667pt;}
.x9a_c00196{left:142.400000pt;}
.x4d_c00196{left:143.600000pt;}
.x1d_c00196{left:144.533333pt;}
.x96_c00196{left:145.466667pt;}
.xa1_c00196{left:147.200000pt;}
.x11_c00196{left:148.800000pt;}
.x91_c00196{left:150.400000pt;}
.x85_c00196{left:151.333333pt;}
.x62_c00196{left:153.200000pt;}
.x9f_c00196{left:154.533333pt;}
.x59_c00196{left:155.466667pt;}
.x94_c00196{left:156.800000pt;}
.x27_c00196{left:158.266667pt;}
.x1e_c00196{left:161.200000pt;}
.x23_c00196{left:162.533333pt;}
.x17_c00196{left:166.933333pt;}
.x47_c00196{left:168.400000pt;}
.x2c_c00196{left:169.733333pt;}
.x82_c00196{left:171.466667pt;}
.x28_c00196{left:172.933333pt;}
.x95_c00196{left:174.133333pt;}
.x6_c00196{left:175.066667pt;}
.x5e_c00196{left:178.266667pt;}
.x4a_c00196{left:181.600000pt;}
.x2d_c00196{left:185.466667pt;}
.x63_c00196{left:186.533333pt;}
.x7c_c00196{left:188.266667pt;}
.xe_c00196{left:189.866667pt;}
.x4e_c00196{left:190.933333pt;}
.x1f_c00196{left:191.866667pt;}
.x7_c00196{left:194.000000pt;}
.x18_c00196{left:195.466667pt;}
.x39_c00196{left:196.533333pt;}
.x70_c00196{left:199.066667pt;}
.x32_c00196{left:200.266667pt;}
.x41_c00196{left:201.200000pt;}
.x6a_c00196{left:203.866667pt;}
.x7f_c00196{left:204.800000pt;}
.x74_c00196{left:208.666667pt;}
.xf_c00196{left:210.400000pt;}
.x33_c00196{left:211.466667pt;}
.x97_c00196{left:213.333333pt;}
.x54_c00196{left:214.800000pt;}
.x9b_c00196{left:216.800000pt;}
.x12_c00196{left:218.266667pt;}
.x8_c00196{left:219.600000pt;}
.x3a_c00196{left:222.800000pt;}
.x52_c00196{left:224.133333pt;}
.x77_c00196{left:225.333333pt;}
.x71_c00196{left:226.533333pt;}
.x64_c00196{left:229.733333pt;}
.x86_c00196{left:232.266667pt;}
.x29_c00196{left:234.400000pt;}
.x13_c00196{left:236.133333pt;}
.x3b_c00196{left:237.466667pt;}
.x88_c00196{left:238.533333pt;}
.x83_c00196{left:239.733333pt;}
.x72_c00196{left:243.200000pt;}
.x19_c00196{left:244.133333pt;}
.x20_c00196{left:246.000000pt;}
.x6b_c00196{left:247.600000pt;}
.x2e_c00196{left:248.800000pt;}
.x24_c00196{left:250.800000pt;}
.x55_c00196{left:255.733333pt;}
.x34_c00196{left:256.933333pt;}
.x2a_c00196{left:259.066667pt;}
.x98_c00196{left:260.400000pt;}
.x4f_c00196{left:261.333333pt;}
.x1a_c00196{left:262.666667pt;}
.x42_c00196{left:263.600000pt;}
.xa0_c00196{left:266.533333pt;}
.x5f_c00196{left:268.133333pt;}
.x3c_c00196{left:269.200000pt;}
.x5a_c00196{left:271.066667pt;}
.x6c_c00196{left:274.533333pt;}
.x78_c00196{left:278.533333pt;}
.x7d_c00196{left:279.466667pt;}
.x43_c00196{left:281.200000pt;}
.x89_c00196{left:282.400000pt;}
.x9_c00196{left:283.333333pt;}
.x65_c00196{left:285.066667pt;}
.x3d_c00196{left:287.066667pt;}
.x90_c00196{left:288.000000pt;}
.x50_c00196{left:289.200000pt;}
.x53_c00196{left:293.600000pt;}
.x21_c00196{left:294.666667pt;}
.x2f_c00196{left:296.533333pt;}
.xa_c00196{left:300.666667pt;}
.x1_c00196{left:302.400000pt;}
.x9d_c00196{left:303.600000pt;}
.xa2_c00196{left:305.733333pt;}
.x44_c00196{left:307.066667pt;}
.x1b_c00196{left:309.333333pt;}
.x22_c00196{left:312.000000pt;}
.x9c_c00196{left:314.000000pt;}
.x6d_c00196{left:315.200000pt;}
.x8a_c00196{left:316.666667pt;}
.x8e_c00196{left:317.733333pt;}
.x14_c00196{left:318.800000pt;}
.xb_c00196{left:320.800000pt;}
.x92_c00196{left:321.733333pt;}
.x25_c00196{left:323.066667pt;}
.x66_c00196{left:325.733333pt;}
.x3e_c00196{left:327.333333pt;}
.x1c_c00196{left:328.266667pt;}
.x6e_c00196{left:329.866667pt;}
.x56_c00196{left:331.866667pt;}
.x35_c00196{left:335.066667pt;}
.x15_c00196{left:336.666667pt;}
.x79_c00196{left:338.800000pt;}
.x4b_c00196{left:340.666667pt;}
.x45_c00196{left:341.866667pt;}
.x67_c00196{left:343.066667pt;}
.x30_c00196{left:344.533333pt;}
.x60_c00196{left:346.533333pt;}
.x6f_c00196{left:348.800000pt;}
.x51_c00196{left:350.933333pt;}
.x99_c00196{left:352.266667pt;}
.x80_c00196{left:353.600000pt;}
.x8b_c00196{left:356.933333pt;}
.x8d_c00196{left:359.733333pt;}
.xa3_c00196{left:361.466667pt;}
.x8f_c00196{left:362.533333pt;}
.x84_c00196{left:365.066667pt;}
.x36_c00196{left:366.400000pt;}
.x3f_c00196{left:368.000000pt;}
.x9e_c00196{left:368.933333pt;}
.x68_c00196{left:370.000000pt;}
.x75_c00196{left:371.866667pt;}
.x2b_c00196{left:374.266667pt;}
.x57_c00196{left:378.000000pt;}
.x37_c00196{left:378.933333pt;}
.x133_c00196{left:400.266667pt;}
.x114_c00196{left:401.333333pt;}
.x104_c00196{left:402.266667pt;}
.xdd_c00196{left:403.200000pt;}
.xc5_c00196{left:411.866667pt;}
.x12b_c00196{left:412.800000pt;}
.x11f_c00196{left:413.733333pt;}
.x139_c00196{left:415.466667pt;}
.x113_c00196{left:416.400000pt;}
.xf4_c00196{left:417.333333pt;}
.xa4_c00196{left:418.533333pt;}
.xb3_c00196{left:419.600000pt;}
.x127_c00196{left:425.066667pt;}
.x125_c00196{left:426.133333pt;}
.x122_c00196{left:431.200000pt;}
.x105_c00196{left:433.600000pt;}
.xbd_c00196{left:435.466667pt;}
.xf2_c00196{left:437.066667pt;}
.xb4_c00196{left:438.533333pt;}
.xfe_c00196{left:441.066667pt;}
.xab_c00196{left:442.000000pt;}
.x128_c00196{left:445.200000pt;}
.xce_c00196{left:446.400000pt;}
.x119_c00196{left:447.733333pt;}
.xda_c00196{left:450.266667pt;}
.xd2_c00196{left:452.800000pt;}
.xa5_c00196{left:454.000000pt;}
.x10a_c00196{left:455.200000pt;}
.x13a_c00196{left:458.000000pt;}
.x145_c00196{left:460.400000pt;}
.xc6_c00196{left:461.866667pt;}
.x12c_c00196{left:462.933333pt;}
.x10e_c00196{left:464.000000pt;}
.xbb_c00196{left:465.066667pt;}
.xd3_c00196{left:466.533333pt;}
.x129_c00196{left:467.466667pt;}
.xa6_c00196{left:471.866667pt;}
.x12a_c00196{left:473.600000pt;}
.xdb_c00196{left:474.533333pt;}
.xac_c00196{left:475.600000pt;}
.xbe_c00196{left:477.066667pt;}
.xe8_c00196{left:478.400000pt;}
.xeb_c00196{left:481.333333pt;}
.xef_c00196{left:482.933333pt;}
.xe4_c00196{left:484.933333pt;}
.xde_c00196{left:486.666667pt;}
.xf5_c00196{left:489.600000pt;}
.xb5_c00196{left:492.000000pt;}
.xad_c00196{left:493.200000pt;}
.xcf_c00196{left:495.333333pt;}
.x12d_c00196{left:496.533333pt;}
.x115_c00196{left:498.000000pt;}
.xff_c00196{left:499.333333pt;}
.xbf_c00196{left:501.733333pt;}
.xc7_c00196{left:502.800000pt;}
.x136_c00196{left:504.000000pt;}
.x10b_c00196{left:505.066667pt;}
.xe9_c00196{left:506.266667pt;}
.xf0_c00196{left:507.866667pt;}
.xf8_c00196{left:509.866667pt;}
.x11a_c00196{left:510.933333pt;}
.xb6_c00196{left:512.533333pt;}
.x100_c00196{left:516.266667pt;}
.x106_c00196{left:518.133333pt;}
.x130_c00196{left:519.866667pt;}
.xdc_c00196{left:522.266667pt;}
.xc8_c00196{left:523.600000pt;}
.xf9_c00196{left:526.533333pt;}
.xd4_c00196{left:527.600000pt;}
.x11b_c00196{left:528.800000pt;}
.x120_c00196{left:530.133333pt;}
.x13e_c00196{left:532.266667pt;}
.x12e_c00196{left:534.666667pt;}
.xae_c00196{left:536.666667pt;}
.xa7_c00196{left:538.400000pt;}
.x101_c00196{left:542.133333pt;}
.x116_c00196{left:543.466667pt;}
.x107_c00196{left:545.333333pt;}
.xd0_c00196{left:546.533333pt;}
.x12f_c00196{left:548.400000pt;}
.xdf_c00196{left:550.933333pt;}
.xb7_c00196{left:551.866667pt;}
.x11c_c00196{left:553.466667pt;}
.x123_c00196{left:554.800000pt;}
.xc0_c00196{left:556.133333pt;}
.xa8_c00196{left:559.466667pt;}
.x11d_c00196{left:561.466667pt;}
.xaf_c00196{left:562.933333pt;}
.x141_c00196{left:566.533333pt;}
.x10f_c00196{left:568.000000pt;}
.xec_c00196{left:569.600000pt;}
.xfa_c00196{left:570.800000pt;}
.xc9_c00196{left:571.866667pt;}
.xe0_c00196{left:573.333333pt;}
.x108_c00196{left:574.400000pt;}
.xe5_c00196{left:575.333333pt;}
.xf6_c00196{left:576.266667pt;}
.xc1_c00196{left:577.600000pt;}
.xd5_c00196{left:578.533333pt;}
.x102_c00196{left:581.466667pt;}
.x121_c00196{left:582.933333pt;}
.xfb_c00196{left:586.800000pt;}
.x147_c00196{left:588.800000pt;}
.xca_c00196{left:590.400000pt;}
.x103_c00196{left:592.400000pt;}
.x144_c00196{left:593.466667pt;}
.xc2_c00196{left:594.533333pt;}
.xf1_c00196{left:597.733333pt;}
.x13b_c00196{left:598.800000pt;}
.xd6_c00196{left:600.000000pt;}
.x109_c00196{left:601.333333pt;}
.x110_c00196{left:602.933333pt;}
.xe6_c00196{left:605.066667pt;}
.xa9_c00196{left:606.533333pt;}
.x142_c00196{left:608.400000pt;}
.xcb_c00196{left:609.866667pt;}
.x10c_c00196{left:612.000000pt;}
.x117_c00196{left:612.933333pt;}
.xe1_c00196{left:614.933333pt;}
.x131_c00196{left:618.133333pt;}
.x111_c00196{left:619.866667pt;}
.xb0_c00196{left:621.200000pt;}
.xe2_c00196{left:622.933333pt;}
.xe7_c00196{left:624.533333pt;}
.x146_c00196{left:628.133333pt;}
.x11e_c00196{left:629.066667pt;}
.xb8_c00196{left:631.866667pt;}
.xfc_c00196{left:633.466667pt;}
.x126_c00196{left:635.733333pt;}
.xd1_c00196{left:637.066667pt;}
.x124_c00196{left:638.266667pt;}
.xcc_c00196{left:639.600000pt;}
.x13f_c00196{left:641.066667pt;}
.xf7_c00196{left:642.800000pt;}
.xed_c00196{left:645.466667pt;}
.xd7_c00196{left:646.400000pt;}
.x137_c00196{left:648.400000pt;}
.xb1_c00196{left:651.333333pt;}
.xb9_c00196{left:652.666667pt;}
.x13c_c00196{left:653.866667pt;}
.xf3_c00196{left:655.066667pt;}
.x132_c00196{left:656.000000pt;}
.xc3_c00196{left:656.933333pt;}
.xea_c00196{left:658.933333pt;}
.x112_c00196{left:661.866667pt;}
.xfd_c00196{left:663.600000pt;}
.x134_c00196{left:665.066667pt;}
.xaa_c00196{left:666.400000pt;}
.xe3_c00196{left:667.733333pt;}
.x118_c00196{left:669.866667pt;}
.x13d_c00196{left:672.133333pt;}
.xb2_c00196{left:673.733333pt;}
.xc4_c00196{left:675.466667pt;}
.xd8_c00196{left:676.533333pt;}
.x143_c00196{left:678.133333pt;}
.x2_c00196{left:679.333333pt;}
.xcd_c00196{left:681.466667pt;}
.xbc_c00196{left:682.400000pt;}
.xba_c00196{left:684.933333pt;}
.x10d_c00196{left:686.000000pt;}
.x3_c00196{left:687.600000pt;}
.x138_c00196{left:689.333333pt;}
.xee_c00196{left:691.600000pt;}
.xd9_c00196{left:693.200000pt;}
.x140_c00196{left:695.200000pt;}
.x135_c00196{left:696.133333pt;}
}





/* 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_c00197 {
    display:none;
  }
  .loading-indicator_c00197.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00197 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_c00197 { 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_c00197" -> "#page-container .classname_c00197")
 */
.pf_c00197 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00197 { /* 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_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00197 { /* 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_c00197 { /* 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_c00197 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00197 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00197 {overflow:visible;}
  }
}
.c_c00197 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00197 { /* 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_c00197:after { /* webkit #35443 */
  content: '';
}
.t_c00197:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00197 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 */
}
.__c00197 { /* 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_c00197 { /* info for Javascript */
  display:none;
}
.l_c00197 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00197 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00197 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00197: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_c00197 {
    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_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00197.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_c00197 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00197;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.000000;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;}
.m103_c00197{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00197{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.me7_c00197{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00197{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m86_c00197{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00197{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m87_c00197{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m89_c00197{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m88_c00197{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00197{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m94_c00197{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m26_c00197{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00197{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m96_c00197{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00197{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m29_c00197{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00197{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mda_c00197{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00197{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md7_c00197{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.meb_c00197{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00197{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me6_c00197{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00197{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m85_c00197{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00197{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.med_c00197{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m54_c00197{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mba_c00197{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m102_c00197{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m66_c00197{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00197{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me9_c00197{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m91_c00197{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00197{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m32_c00197{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m17_c00197{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m35_c00197{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mec_c00197{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00197{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m13_c00197{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md4_c00197{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m64_c00197{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md2_c00197{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m38_c00197{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md5_c00197{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m34_c00197{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00197{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md9_c00197{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m43_c00197{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00197{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mff_c00197{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m106_c00197{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00197{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mde_c00197{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m79_c00197{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m49_c00197{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00197{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md_c00197{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00197{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00197{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m19_c00197{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m59_c00197{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2_c00197{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00197{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m39_c00197{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m67_c00197{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mac_c00197{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00197{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m27_c00197{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00197{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00197{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00197{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00197{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00197{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m14_c00197{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00197{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m7_c00197{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00197{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m53_c00197{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00197{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m18_c00197{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00197{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00197{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md8_c00197{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00197{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00197{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m95_c00197{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00197{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00197{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m58_c00197{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00197{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m21_c00197{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9_c00197{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m16_c00197{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00197{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m23_c00197{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00197{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m25_c00197{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m105_c00197{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc_c00197{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m15_c00197{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me_c00197{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00197{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00197{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m104_c00197{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00197{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00197{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md1_c00197{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m56_c00197{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m97_c00197{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00197{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m84_c00197{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00197{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00197{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00197{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10_c00197{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00197{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00197{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00197{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00197{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m47_c00197{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00197{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m28_c00197{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00197{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md6_c00197{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4_c00197{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00197{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mca_c00197{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf_c00197{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m20_c00197{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mee_c00197{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m48_c00197{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00197{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m37_c00197{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mad_c00197{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00197{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5_c00197{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00197{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m72_c00197{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m93_c00197{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me8_c00197{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m46_c00197{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00197{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00197{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m24_c00197{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m65_c00197{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m77_c00197{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m31_c00197{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00197{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00197{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3_c00197{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00197{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m12_c00197{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m69_c00197{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00197{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00197{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00197{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00197{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00197{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m90_c00197{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m45_c00197{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.maf_c00197{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m40_c00197{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00197{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00197{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m8_c00197{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00197{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me1_c00197{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00197{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mae_c00197{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00197{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00197{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00197{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m30_c00197{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m57_c00197{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m70_c00197{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md3_c00197{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m6_c00197{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m33_c00197{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m42_c00197{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00197{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m71_c00197{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m68_c00197{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00197{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00197{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00197{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00197{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m36_c00197{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m76_c00197{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00197{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00197{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00197{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00197{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m98_c00197{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m52_c00197{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00197{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00197{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mce_c00197{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00197{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00197{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00197{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m92_c00197{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m100_c00197{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m51_c00197{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me5_c00197{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00197{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m99_c00197{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00197{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00197{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00197{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m55_c00197{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00197{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m101_c00197{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mef_c00197{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m44_c00197{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m22_c00197{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.maa_c00197{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mab_c00197{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11_c00197{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb_c00197{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mea_c00197{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m50_c00197{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me3_c00197{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00197{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00197{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00197{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00197{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00197{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m75_c00197{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00197{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00197{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00197{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m74_c00197{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.ma_c00197{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m41_c00197{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00197{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m78_c00197{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md0_c00197{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00197{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m63_c00197{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00197{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.me0_c00197{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00197{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m73_c00197{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00197{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00197{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00197{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.me2_c00197{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.me4_c00197{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00197{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00197{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m62_c00197{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.m60_c00197{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m61_c00197{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m82_c00197{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m80_c00197{transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);}
.m81_c00197{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00197{transform:matrix(0.445500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445500,0.000000,0.000000,0.250000,0,0);}
.m83_c00197{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m107_c00197{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00197{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls0_c00197{letter-spacing:0.000000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{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__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00197{word-spacing:-15.655022px;}
.ws2_c00197{word-spacing:-9.694158px;}
.ws3_c00197{word-spacing:-7.142857px;}
.wsf_c00197{word-spacing:-3.487973px;}
.ws10_c00197{word-spacing:-3.366812px;}
.wsa_c00197{word-spacing:-0.288462px;}
.ws14_c00197{word-spacing:0.000000px;}
.wsd_c00197{word-spacing:3.589744px;}
.ws13_c00197{word-spacing:4.151862px;}
.ws12_c00197{word-spacing:5.871060px;}
.ws0_c00197{word-spacing:7.333333px;}
.ws6_c00197{word-spacing:13.083095px;}
.wse_c00197{word-spacing:13.214286px;}
.ws5_c00197{word-spacing:15.428571px;}
.ws9_c00197{word-spacing:22.142857px;}
.ws7_c00197{word-spacing:25.714286px;}
.ws4_c00197{word-spacing:26.500000px;}
.wsb_c00197{word-spacing:29.285714px;}
.wsc_c00197{word-spacing:35.833333px;}
.ws8_c00197{word-spacing:40.000000px;}
.ws11_c00197{word-spacing:66.315789px;}
._4_c00197{width:46.785714px;}
._5_c00197{width:52.142857px;}
._2_c00197{width:55.714286px;}
._0_c00197{width:58.117479px;}
._3_c00197{width:59.285714px;}
._1_c00197{width:64.642857px;}
._6_c00197{width:316.428571px;}
.fc0_c00197{color:transparent;}
.fs4_c00197{font-size:36.000000px;}
.fs5_c00197{font-size:54.000000px;}
.fs2_c00197{font-size:60.000000px;}
.fs0_c00197{font-size:66.000000px;}
.fs3_c00197{font-size:72.000000px;}
.fs1_c00197{font-size:78.000000px;}
.y0_c00197{bottom:0.000000px;}
.y69_c00197{bottom:193.050000px;}
.y37_c00197{bottom:193.200000px;}
.y68_c00197{bottom:211.050000px;}
.y36_c00197{bottom:211.200000px;}
.y35_c00197{bottom:228.900000px;}
.y67_c00197{bottom:229.050000px;}
.y34_c00197{bottom:246.600000px;}
.y66_c00197{bottom:246.750000px;}
.y65_c00197{bottom:264.450000px;}
.y33_c00197{bottom:264.600000px;}
.y32_c00197{bottom:282.300000px;}
.y64_c00197{bottom:282.450000px;}
.y31_c00197{bottom:300.000000px;}
.y63_c00197{bottom:300.150000px;}
.y62_c00197{bottom:318.150000px;}
.y30_c00197{bottom:319.800000px;}
.y2f_c00197{bottom:335.700000px;}
.y61_c00197{bottom:336.150000px;}
.y2e_c00197{bottom:353.400000px;}
.y60_c00197{bottom:353.850000px;}
.y2d_c00197{bottom:371.400000px;}
.y5f_c00197{bottom:381.000000px;}
.y2c_c00197{bottom:389.100000px;}
.y5e_c00197{bottom:399.000000px;}
.y2b_c00197{bottom:407.100000px;}
.y5d_c00197{bottom:416.250000px;}
.y2a_c00197{bottom:424.800000px;}
.y5c_c00197{bottom:434.250000px;}
.y29_c00197{bottom:450.300000px;}
.y5b_c00197{bottom:452.250000px;}
.y28_c00197{bottom:465.000000px;}
.y5a_c00197{bottom:469.500000px;}
.y27_c00197{bottom:479.100000px;}
.y59_c00197{bottom:490.650000px;}
.y26_c00197{bottom:492.450000px;}
.y58_c00197{bottom:504.300000px;}
.y25_c00197{bottom:508.350000px;}
.y57_c00197{bottom:520.500000px;}
.y24_c00197{bottom:521.700000px;}
.y23_c00197{bottom:536.400000px;}
.y56_c00197{bottom:539.550000px;}
.y22_c00197{bottom:549.900000px;}
.y55_c00197{bottom:557.250000px;}
.y21_c00197{bottom:565.050000px;}
.y54_c00197{bottom:574.950000px;}
.y20_c00197{bottom:579.450000px;}
.y1f_c00197{bottom:593.550000px;}
.y53_c00197{bottom:597.150000px;}
.y1e_c00197{bottom:606.900000px;}
.y52_c00197{bottom:615.150000px;}
.y1d_c00197{bottom:621.750000px;}
.y51_c00197{bottom:632.850000px;}
.y1c_c00197{bottom:637.950000px;}
.y50_c00197{bottom:650.550000px;}
.y1b_c00197{bottom:660.900000px;}
.y4f_c00197{bottom:668.550000px;}
.y1a_c00197{bottom:678.900000px;}
.y4e_c00197{bottom:688.350000px;}
.y19_c00197{bottom:700.950000px;}
.y4d_c00197{bottom:708.750000px;}
.y18_c00197{bottom:719.250000px;}
.y4c_c00197{bottom:726.450000px;}
.y17_c00197{bottom:736.950000px;}
.y4b_c00197{bottom:753.150000px;}
.y16_c00197{bottom:758.550000px;}
.y4a_c00197{bottom:771.450000px;}
.y15_c00197{bottom:789.900000px;}
.y49_c00197{bottom:792.750000px;}
.y14_c00197{bottom:807.750000px;}
.y48_c00197{bottom:810.450000px;}
.y13_c00197{bottom:825.450000px;}
.y47_c00197{bottom:828.150000px;}
.y12_c00197{bottom:843.450000px;}
.y46_c00197{bottom:846.150000px;}
.y11_c00197{bottom:861.150000px;}
.y45_c00197{bottom:863.850000px;}
.y44_c00197{bottom:881.550000px;}
.y10_c00197{bottom:886.950000px;}
.y43_c00197{bottom:899.550000px;}
.yf_c00197{bottom:904.950000px;}
.y42_c00197{bottom:917.250000px;}
.ye_c00197{bottom:922.650000px;}
.y41_c00197{bottom:935.250000px;}
.yd_c00197{bottom:940.650000px;}
.y40_c00197{bottom:953.250000px;}
.yc_c00197{bottom:958.350000px;}
.yb_c00197{bottom:976.350000px;}
.y3f_c00197{bottom:979.350000px;}
.ya_c00197{bottom:994.050000px;}
.y3e_c00197{bottom:997.350000px;}
.y9_c00197{bottom:1011.750000px;}
.y3d_c00197{bottom:1015.050000px;}
.y8_c00197{bottom:1029.750000px;}
.y3c_c00197{bottom:1033.050000px;}
.y7_c00197{bottom:1047.450000px;}
.y3b_c00197{bottom:1050.750000px;}
.y6_c00197{bottom:1065.150000px;}
.y3a_c00197{bottom:1068.450000px;}
.y5_c00197{bottom:1082.850000px;}
.y39_c00197{bottom:1086.150000px;}
.y38_c00197{bottom:1104.150000px;}
.y4_c00197{bottom:1105.200000px;}
.y3_c00197{bottom:1123.200000px;}
.y1_c00197{bottom:1148.100000px;}
.y2_c00197{bottom:1149.600000px;}
.h6_c00197{height:36.000000px;}
.h7_c00197{height:54.000000px;}
.h4_c00197{height:60.000000px;}
.h2_c00197{height:66.000000px;}
.h5_c00197{height:72.000000px;}
.h3_c00197{height:78.000000px;}
.h0_c00197{height:1268.640015px;}
.h1_c00197{height:1269.000000px;}
.w1_c00197{width:963.000000px;}
.w0_c00197{width:963.359985px;}
.x0_c00197{left:0.000000px;}
.x68_c00197{left:183.600000px;}
.xa_c00197{left:186.150000px;}
.x1_c00197{left:187.950000px;}
.x72_c00197{left:200.250000px;}
.x66_c00197{left:201.900000px;}
.x50_c00197{left:203.250000px;}
.x3_c00197{left:204.450000px;}
.x74_c00197{left:215.250000px;}
.x48_c00197{left:221.700000px;}
.x3b_c00197{left:223.650000px;}
.x90_c00197{left:225.300000px;}
.x9_c00197{left:226.800000px;}
.x15_c00197{left:229.500000px;}
.x69_c00197{left:231.900000px;}
.x8d_c00197{left:235.050000px;}
.xa0_c00197{left:236.100000px;}
.x76_c00197{left:237.150000px;}
.x98_c00197{left:238.200000px;}
.x51_c00197{left:240.300000px;}
.x6f_c00197{left:247.050000px;}
.xb_c00197{left:249.150000px;}
.x27_c00197{left:251.400000px;}
.x2f_c00197{left:252.900000px;}
.x82_c00197{left:254.850000px;}
.x4_c00197{left:255.900000px;}
.x1e_c00197{left:257.550000px;}
.x54_c00197{left:258.900000px;}
.x16_c00197{left:262.650000px;}
.x37_c00197{left:267.450000px;}
.x55_c00197{left:270.450000px;}
.x94_c00197{left:271.800000px;}
.x7f_c00197{left:272.850000px;}
.x5_c00197{left:275.400000px;}
.x30_c00197{left:277.050000px;}
.x8e_c00197{left:278.700000px;}
.x6d_c00197{left:279.900000px;}
.x11_c00197{left:283.200000px;}
.x91_c00197{left:285.450000px;}
.x89_c00197{left:286.650000px;}
.x3c_c00197{left:288.450000px;}
.xc_c00197{left:290.550000px;}
.x5f_c00197{left:292.050000px;}
.x28_c00197{left:293.850000px;}
.x9c_c00197{left:294.900000px;}
.x4a_c00197{left:296.550000px;}
.x33_c00197{left:298.650000px;}
.x97_c00197{left:299.700000px;}
.x2d_c00197{left:300.750000px;}
.x64_c00197{left:302.400000px;}
.x29_c00197{left:304.650000px;}
.x77_c00197{left:307.050000px;}
.x75_c00197{left:308.100000px;}
.x80_c00197{left:309.600000px;}
.x56_c00197{left:310.800000px;}
.x4b_c00197{left:314.550000px;}
.x83_c00197{left:316.350000px;}
.x41_c00197{left:317.700000px;}
.x60_c00197{left:319.350000px;}
.x38_c00197{left:321.450000px;}
.x17_c00197{left:323.100000px;}
.x78_c00197{left:325.350000px;}
.x6_c00197{left:326.550000px;}
.x67_c00197{left:328.800000px;}
.x81_c00197{left:330.150000px;}
.x1f_c00197{left:331.650000px;}
.x99_c00197{left:332.850000px;}
.x31_c00197{left:333.900000px;}
.x8a_c00197{left:336.000000px;}
.x42_c00197{left:337.800000px;}
.x9d_c00197{left:339.150000px;}
.x34_c00197{left:340.800000px;}
.x18_c00197{left:341.850000px;}
.xd_c00197{left:343.050000px;}
.x6e_c00197{left:344.250000px;}
.x57_c00197{left:346.050000px;}
.x95_c00197{left:348.900000px;}
.x6a_c00197{left:350.250000px;}
.x3d_c00197{left:351.750000px;}
.x39_c00197{left:354.150000px;}
.x20_c00197{left:356.100000px;}
.x7c_c00197{left:359.400000px;}
.x35_c00197{left:360.600000px;}
.x9a_c00197{left:364.800000px;}
.x19_c00197{left:366.300000px;}
.x52_c00197{left:368.400000px;}
.x2a_c00197{left:369.450000px;}
.x58_c00197{left:371.250000px;}
.x12_c00197{left:372.450000px;}
.x4c_c00197{left:373.650000px;}
.x21_c00197{left:376.950000px;}
.x43_c00197{left:378.150000px;}
.x49_c00197{left:379.800000px;}
.x4f_c00197{left:381.150000px;}
.x59_c00197{left:383.550000px;}
.x9e_c00197{left:385.050000px;}
.x79_c00197{left:388.650000px;}
.x85_c00197{left:389.850000px;}
.x13_c00197{left:391.500000px;}
.x3e_c00197{left:393.150000px;}
.x6b_c00197{left:394.200000px;}
.x7a_c00197{left:395.550000px;}
.x7d_c00197{left:396.900000px;}
.x96_c00197{left:398.250000px;}
.x1a_c00197{left:399.450000px;}
.x5e_c00197{left:400.950000px;}
.x53_c00197{left:402.900000px;}
.x86_c00197{left:403.950000px;}
.xe_c00197{left:407.100000px;}
.x7_c00197{left:408.600000px;}
.x7e_c00197{left:411.000000px;}
.x87_c00197{left:412.200000px;}
.x70_c00197{left:413.700000px;}
.x61_c00197{left:416.850000px;}
.x32_c00197{left:418.200000px;}
.x22_c00197{left:419.850000px;}
.x1b_c00197{left:421.800000px;}
.x5a_c00197{left:422.850000px;}
.x7b_c00197{left:424.800000px;}
.x84_c00197{left:426.300000px;}
.x6c_c00197{left:427.650000px;}
.x44_c00197{left:429.000000px;}
.x23_c00197{left:430.650000px;}
.x2_c00197{left:432.750000px;}
.x3f_c00197{left:433.800000px;}
.x92_c00197{left:434.850000px;}
.x8f_c00197{left:436.650000px;}
.xf_c00197{left:438.450000px;}
.x24_c00197{left:442.950000px;}
.x4d_c00197{left:444.900000px;}
.x3a_c00197{left:446.700000px;}
.x1c_c00197{left:451.650000px;}
.x2b_c00197{left:452.700000px;}
.x65_c00197{left:454.650000px;}
.x93_c00197{left:456.150000px;}
.x8b_c00197{left:459.000000px;}
.x40_c00197{left:460.500000px;}
.x14_c00197{left:463.200000px;}
.x45_c00197{left:466.500000px;}
.x2e_c00197{left:471.450000px;}
.x36_c00197{left:472.950000px;}
.x5b_c00197{left:474.750000px;}
.x46_c00197{left:477.000000px;}
.x62_c00197{left:479.100000px;}
.x5d_c00197{left:480.900000px;}
.x88_c00197{left:482.550000px;}
.x25_c00197{left:484.350000px;}
.x8_c00197{left:487.500000px;}
.x9b_c00197{left:491.100000px;}
.x8c_c00197{left:493.800000px;}
.x1d_c00197{left:495.900000px;}
.x47_c00197{left:497.100000px;}
.x9f_c00197{left:498.150000px;}
.x2c_c00197{left:500.550000px;}
.x10_c00197{left:503.250000px;}
.x26_c00197{left:505.950000px;}
.x71_c00197{left:508.350000px;}
.x73_c00197{left:509.400000px;}
.x5c_c00197{left:511.050000px;}
.x63_c00197{left:518.700000px;}
.x4e_c00197{left:520.200000px;}
.x120_c00197{left:542.850000px;}
.xd6_c00197{left:543.900000px;}
.x109_c00197{left:545.400000px;}
.xb1_c00197{left:549.750000px;}
.x123_c00197{left:556.950000px;}
.x12e_c00197{left:560.250000px;}
.xca_c00197{left:561.300000px;}
.xa1_c00197{left:562.350000px;}
.x125_c00197{left:571.200000px;}
.x11d_c00197{left:579.000000px;}
.x10c_c00197{left:580.650000px;}
.xbc_c00197{left:581.700000px;}
.xeb_c00197{left:583.800000px;}
.x11a_c00197{left:585.450000px;}
.xc4_c00197{left:586.650000px;}
.x131_c00197{left:588.000000px;}
.x10a_c00197{left:589.350000px;}
.xa2_c00197{left:594.450000px;}
.xf2_c00197{left:595.800000px;}
.x12a_c00197{left:597.150000px;}
.xee_c00197{left:601.050000px;}
.xe2_c00197{left:603.750000px;}
.xd7_c00197{left:605.400000px;}
.xbd_c00197{left:608.400000px;}
.xfa_c00197{left:610.500000px;}
.x116_c00197{left:611.700000px;}
.xb2_c00197{left:614.850000px;}
.x11e_c00197{left:616.050000px;}
.x135_c00197{left:617.850000px;}
.xb8_c00197{left:619.500000px;}
.x132_c00197{left:620.700000px;}
.xbe_c00197{left:623.100000px;}
.x12f_c00197{left:627.000000px;}
.xd8_c00197{left:629.550000px;}
.xf3_c00197{left:631.050000px;}
.xfb_c00197{left:633.600000px;}
.xa3_c00197{left:636.150000px;}
.xe3_c00197{left:639.750000px;}
.xb3_c00197{left:640.800000px;}
.xaa_c00197{left:642.900000px;}
.x10d_c00197{left:644.700000px;}
.xbf_c00197{left:645.750000px;}
.xe8_c00197{left:647.400000px;}
.x13b_c00197{left:649.350000px;}
.x12b_c00197{left:650.400000px;}
.x11b_c00197{left:652.350000px;}
.xf4_c00197{left:654.750000px;}
.x10f_c00197{left:657.300000px;}
.xfd_c00197{left:660.000000px;}
.xa4_c00197{left:661.650000px;}
.xcb_c00197{left:663.900000px;}
.xd9_c00197{left:666.300000px;}
.x113_c00197{left:667.650000px;}
.xb4_c00197{left:669.600000px;}
.x106_c00197{left:671.100000px;}
.xab_c00197{left:672.750000px;}
.xc5_c00197{left:675.900000px;}
.x128_c00197{left:679.800000px;}
.xec_c00197{left:682.800000px;}
.xfe_c00197{left:686.250000px;}
.xb9_c00197{left:687.600000px;}
.x13c_c00197{left:688.650000px;}
.xda_c00197{left:689.700000px;}
.xf5_c00197{left:692.550000px;}
.xde_c00197{left:695.850000px;}
.x114_c00197{left:697.500000px;}
.xd1_c00197{left:699.600000px;}
.xc0_c00197{left:701.550000px;}
.xef_c00197{left:702.900000px;}
.xf6_c00197{left:708.000000px;}
.x11f_c00197{left:709.350000px;}
.xa5_c00197{left:712.050000px;}
.xac_c00197{left:713.100000px;}
.xcc_c00197{left:715.350000px;}
.xe4_c00197{left:717.450000px;}
.xc6_c00197{left:718.650000px;}
.x127_c00197{left:720.600000px;}
.x12c_c00197{left:723.000000px;}
.xfc_c00197{left:724.050000px;}
.xf0_c00197{left:725.550000px;}
.x100_c00197{left:727.500000px;}
.xff_c00197{left:729.900000px;}
.xe9_c00197{left:731.250000px;}
.xb5_c00197{left:735.150000px;}
.xdf_c00197{left:738.000000px;}
.xe5_c00197{left:740.850000px;}
.xf7_c00197{left:742.950000px;}
.xd2_c00197{left:744.600000px;}
.xa6_c00197{left:746.250000px;}
.x101_c00197{left:747.600000px;}
.xcd_c00197{left:749.250000px;}
.xb6_c00197{left:752.400000px;}
.xc7_c00197{left:753.600000px;}
.xa7_c00197{left:755.550000px;}
.x10e_c00197{left:757.350000px;}
.x129_c00197{left:760.200000px;}
.x102_c00197{left:761.700000px;}
.x107_c00197{left:762.900000px;}
.xd3_c00197{left:765.150000px;}
.xdb_c00197{left:767.100000px;}
.xad_c00197{left:768.600000px;}
.xba_c00197{left:770.400000px;}
.x13d_c00197{left:772.200000px;}
.x133_c00197{left:775.350000px;}
.x130_c00197{left:779.400000px;}
.x121_c00197{left:781.500000px;}
.xe0_c00197{left:784.500000px;}
.x108_c00197{left:785.550000px;}
.xbb_c00197{left:787.650000px;}
.xc1_c00197{left:789.300000px;}
.xdc_c00197{left:791.250000px;}
.xae_c00197{left:792.300000px;}
.xf8_c00197{left:796.650000px;}
.xce_c00197{left:798.600000px;}
.xa8_c00197{left:801.300000px;}
.x13e_c00197{left:802.800000px;}
.x103_c00197{left:803.850000px;}
.xc2_c00197{left:805.500000px;}
.xd4_c00197{left:807.300000px;}
.xaf_c00197{left:809.550000px;}
.x124_c00197{left:810.600000px;}
.x115_c00197{left:812.700000px;}
.x138_c00197{left:813.750000px;}
.x119_c00197{left:816.900000px;}
.xb7_c00197{left:819.000000px;}
.x104_c00197{left:820.350000px;}
.x136_c00197{left:821.550000px;}
.x12d_c00197{left:823.050000px;}
.xd5_c00197{left:824.250000px;}
.x140_c00197{left:825.600000px;}
.xc8_c00197{left:827.700000px;}
.x139_c00197{left:829.200000px;}
.x105_c00197{left:830.550000px;}
.x11c_c00197{left:831.600000px;}
.xe6_c00197{left:832.950000px;}
.xcf_c00197{left:834.600000px;}
.x111_c00197{left:836.100000px;}
.x134_c00197{left:837.300000px;}
.xed_c00197{left:838.650000px;}
.xea_c00197{left:839.850000px;}
.x117_c00197{left:842.100000px;}
.xdd_c00197{left:846.000000px;}
.xe7_c00197{left:847.650000px;}
.x137_c00197{left:851.100000px;}
.xf9_c00197{left:852.450000px;}
.xf1_c00197{left:853.800000px;}
.xc9_c00197{left:855.450000px;}
.xa9_c00197{left:858.150000px;}
.xb0_c00197{left:861.000000px;}
.x110_c00197{left:862.050000px;}
.xe1_c00197{left:864.750000px;}
.x122_c00197{left:865.800000px;}
.x126_c00197{left:867.150000px;}
.x13f_c00197{left:868.800000px;}
.xc3_c00197{left:870.000000px;}
.x112_c00197{left:871.050000px;}
.xd0_c00197{left:877.500000px;}
.x10b_c00197{left:883.050000px;}
.x13a_c00197{left:888.300000px;}
.x118_c00197{left:889.350000px;}
.x141_c00197{left:905.400000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws1_c00197{word-spacing:-13.915575pt;}
.ws2_c00197{word-spacing:-8.617029pt;}
.ws3_c00197{word-spacing:-6.349206pt;}
.wsf_c00197{word-spacing:-3.100420pt;}
.ws10_c00197{word-spacing:-2.992722pt;}
.wsa_c00197{word-spacing:-0.256410pt;}
.ws14_c00197{word-spacing:0.000000pt;}
.wsd_c00197{word-spacing:3.190883pt;}
.ws13_c00197{word-spacing:3.690544pt;}
.ws12_c00197{word-spacing:5.218720pt;}
.ws0_c00197{word-spacing:6.518519pt;}
.ws6_c00197{word-spacing:11.629417pt;}
.wse_c00197{word-spacing:11.746032pt;}
.ws5_c00197{word-spacing:13.714286pt;}
.ws9_c00197{word-spacing:19.682540pt;}
.ws7_c00197{word-spacing:22.857143pt;}
.ws4_c00197{word-spacing:23.555556pt;}
.wsb_c00197{word-spacing:26.031746pt;}
.wsc_c00197{word-spacing:31.851852pt;}
.ws8_c00197{word-spacing:35.555556pt;}
.ws11_c00197{word-spacing:58.947368pt;}
._4_c00197{width:41.587302pt;}
._5_c00197{width:46.349206pt;}
._2_c00197{width:49.523810pt;}
._0_c00197{width:51.659981pt;}
._3_c00197{width:52.698413pt;}
._1_c00197{width:57.460317pt;}
._6_c00197{width:281.269841pt;}
.fs4_c00197{font-size:32.000000pt;}
.fs5_c00197{font-size:48.000000pt;}
.fs2_c00197{font-size:53.333333pt;}
.fs0_c00197{font-size:58.666667pt;}
.fs3_c00197{font-size:64.000000pt;}
.fs1_c00197{font-size:69.333333pt;}
.y0_c00197{bottom:0.000000pt;}
.y69_c00197{bottom:171.600000pt;}
.y37_c00197{bottom:171.733333pt;}
.y68_c00197{bottom:187.600000pt;}
.y36_c00197{bottom:187.733333pt;}
.y35_c00197{bottom:203.466667pt;}
.y67_c00197{bottom:203.600000pt;}
.y34_c00197{bottom:219.200000pt;}
.y66_c00197{bottom:219.333333pt;}
.y65_c00197{bottom:235.066667pt;}
.y33_c00197{bottom:235.200000pt;}
.y32_c00197{bottom:250.933333pt;}
.y64_c00197{bottom:251.066667pt;}
.y31_c00197{bottom:266.666667pt;}
.y63_c00197{bottom:266.800000pt;}
.y62_c00197{bottom:282.800000pt;}
.y30_c00197{bottom:284.266667pt;}
.y2f_c00197{bottom:298.400000pt;}
.y61_c00197{bottom:298.800000pt;}
.y2e_c00197{bottom:314.133333pt;}
.y60_c00197{bottom:314.533333pt;}
.y2d_c00197{bottom:330.133333pt;}
.y5f_c00197{bottom:338.666667pt;}
.y2c_c00197{bottom:345.866667pt;}
.y5e_c00197{bottom:354.666667pt;}
.y2b_c00197{bottom:361.866667pt;}
.y5d_c00197{bottom:370.000000pt;}
.y2a_c00197{bottom:377.600000pt;}
.y5c_c00197{bottom:386.000000pt;}
.y29_c00197{bottom:400.266667pt;}
.y5b_c00197{bottom:402.000000pt;}
.y28_c00197{bottom:413.333333pt;}
.y5a_c00197{bottom:417.333333pt;}
.y27_c00197{bottom:425.866667pt;}
.y59_c00197{bottom:436.133333pt;}
.y26_c00197{bottom:437.733333pt;}
.y58_c00197{bottom:448.266667pt;}
.y25_c00197{bottom:451.866667pt;}
.y57_c00197{bottom:462.666667pt;}
.y24_c00197{bottom:463.733333pt;}
.y23_c00197{bottom:476.800000pt;}
.y56_c00197{bottom:479.600000pt;}
.y22_c00197{bottom:488.800000pt;}
.y55_c00197{bottom:495.333333pt;}
.y21_c00197{bottom:502.266667pt;}
.y54_c00197{bottom:511.066667pt;}
.y20_c00197{bottom:515.066667pt;}
.y1f_c00197{bottom:527.600000pt;}
.y53_c00197{bottom:530.800000pt;}
.y1e_c00197{bottom:539.466667pt;}
.y52_c00197{bottom:546.800000pt;}
.y1d_c00197{bottom:552.666667pt;}
.y51_c00197{bottom:562.533333pt;}
.y1c_c00197{bottom:567.066667pt;}
.y50_c00197{bottom:578.266667pt;}
.y1b_c00197{bottom:587.466667pt;}
.y4f_c00197{bottom:594.266667pt;}
.y1a_c00197{bottom:603.466667pt;}
.y4e_c00197{bottom:611.866667pt;}
.y19_c00197{bottom:623.066667pt;}
.y4d_c00197{bottom:630.000000pt;}
.y18_c00197{bottom:639.333333pt;}
.y4c_c00197{bottom:645.733333pt;}
.y17_c00197{bottom:655.066667pt;}
.y4b_c00197{bottom:669.466667pt;}
.y16_c00197{bottom:674.266667pt;}
.y4a_c00197{bottom:685.733333pt;}
.y15_c00197{bottom:702.133333pt;}
.y49_c00197{bottom:704.666667pt;}
.y14_c00197{bottom:718.000000pt;}
.y48_c00197{bottom:720.400000pt;}
.y13_c00197{bottom:733.733333pt;}
.y47_c00197{bottom:736.133333pt;}
.y12_c00197{bottom:749.733333pt;}
.y46_c00197{bottom:752.133333pt;}
.y11_c00197{bottom:765.466667pt;}
.y45_c00197{bottom:767.866667pt;}
.y44_c00197{bottom:783.600000pt;}
.y10_c00197{bottom:788.400000pt;}
.y43_c00197{bottom:799.600000pt;}
.yf_c00197{bottom:804.400000pt;}
.y42_c00197{bottom:815.333333pt;}
.ye_c00197{bottom:820.133333pt;}
.y41_c00197{bottom:831.333333pt;}
.yd_c00197{bottom:836.133333pt;}
.y40_c00197{bottom:847.333333pt;}
.yc_c00197{bottom:851.866667pt;}
.yb_c00197{bottom:867.866667pt;}
.y3f_c00197{bottom:870.533333pt;}
.ya_c00197{bottom:883.600000pt;}
.y3e_c00197{bottom:886.533333pt;}
.y9_c00197{bottom:899.333333pt;}
.y3d_c00197{bottom:902.266667pt;}
.y8_c00197{bottom:915.333333pt;}
.y3c_c00197{bottom:918.266667pt;}
.y7_c00197{bottom:931.066667pt;}
.y3b_c00197{bottom:934.000000pt;}
.y6_c00197{bottom:946.800000pt;}
.y3a_c00197{bottom:949.733333pt;}
.y5_c00197{bottom:962.533333pt;}
.y39_c00197{bottom:965.466667pt;}
.y38_c00197{bottom:981.466667pt;}
.y4_c00197{bottom:982.400000pt;}
.y3_c00197{bottom:998.400000pt;}
.y1_c00197{bottom:1020.533333pt;}
.y2_c00197{bottom:1021.866667pt;}
.h6_c00197{height:32.000000pt;}
.h7_c00197{height:48.000000pt;}
.h4_c00197{height:53.333333pt;}
.h2_c00197{height:58.666667pt;}
.h5_c00197{height:64.000000pt;}
.h3_c00197{height:69.333333pt;}
.h0_c00197{height:1127.680013pt;}
.h1_c00197{height:1128.000000pt;}
.w1_c00197{width:856.000000pt;}
.w0_c00197{width:856.319987pt;}
.x0_c00197{left:0.000000pt;}
.x68_c00197{left:163.200000pt;}
.xa_c00197{left:165.466667pt;}
.x1_c00197{left:167.066667pt;}
.x72_c00197{left:178.000000pt;}
.x66_c00197{left:179.466667pt;}
.x50_c00197{left:180.666667pt;}
.x3_c00197{left:181.733333pt;}
.x74_c00197{left:191.333333pt;}
.x48_c00197{left:197.066667pt;}
.x3b_c00197{left:198.800000pt;}
.x90_c00197{left:200.266667pt;}
.x9_c00197{left:201.600000pt;}
.x15_c00197{left:204.000000pt;}
.x69_c00197{left:206.133333pt;}
.x8d_c00197{left:208.933333pt;}
.xa0_c00197{left:209.866667pt;}
.x76_c00197{left:210.800000pt;}
.x98_c00197{left:211.733333pt;}
.x51_c00197{left:213.600000pt;}
.x6f_c00197{left:219.600000pt;}
.xb_c00197{left:221.466667pt;}
.x27_c00197{left:223.466667pt;}
.x2f_c00197{left:224.800000pt;}
.x82_c00197{left:226.533333pt;}
.x4_c00197{left:227.466667pt;}
.x1e_c00197{left:228.933333pt;}
.x54_c00197{left:230.133333pt;}
.x16_c00197{left:233.466667pt;}
.x37_c00197{left:237.733333pt;}
.x55_c00197{left:240.400000pt;}
.x94_c00197{left:241.600000pt;}
.x7f_c00197{left:242.533333pt;}
.x5_c00197{left:244.800000pt;}
.x30_c00197{left:246.266667pt;}
.x8e_c00197{left:247.733333pt;}
.x6d_c00197{left:248.800000pt;}
.x11_c00197{left:251.733333pt;}
.x91_c00197{left:253.733333pt;}
.x89_c00197{left:254.800000pt;}
.x3c_c00197{left:256.400000pt;}
.xc_c00197{left:258.266667pt;}
.x5f_c00197{left:259.600000pt;}
.x28_c00197{left:261.200000pt;}
.x9c_c00197{left:262.133333pt;}
.x4a_c00197{left:263.600000pt;}
.x33_c00197{left:265.466667pt;}
.x97_c00197{left:266.400000pt;}
.x2d_c00197{left:267.333333pt;}
.x64_c00197{left:268.800000pt;}
.x29_c00197{left:270.800000pt;}
.x77_c00197{left:272.933333pt;}
.x75_c00197{left:273.866667pt;}
.x80_c00197{left:275.200000pt;}
.x56_c00197{left:276.266667pt;}
.x4b_c00197{left:279.600000pt;}
.x83_c00197{left:281.200000pt;}
.x41_c00197{left:282.400000pt;}
.x60_c00197{left:283.866667pt;}
.x38_c00197{left:285.733333pt;}
.x17_c00197{left:287.200000pt;}
.x78_c00197{left:289.200000pt;}
.x6_c00197{left:290.266667pt;}
.x67_c00197{left:292.266667pt;}
.x81_c00197{left:293.466667pt;}
.x1f_c00197{left:294.800000pt;}
.x99_c00197{left:295.866667pt;}
.x31_c00197{left:296.800000pt;}
.x8a_c00197{left:298.666667pt;}
.x42_c00197{left:300.266667pt;}
.x9d_c00197{left:301.466667pt;}
.x34_c00197{left:302.933333pt;}
.x18_c00197{left:303.866667pt;}
.xd_c00197{left:304.933333pt;}
.x6e_c00197{left:306.000000pt;}
.x57_c00197{left:307.600000pt;}
.x95_c00197{left:310.133333pt;}
.x6a_c00197{left:311.333333pt;}
.x3d_c00197{left:312.666667pt;}
.x39_c00197{left:314.800000pt;}
.x20_c00197{left:316.533333pt;}
.x7c_c00197{left:319.466667pt;}
.x35_c00197{left:320.533333pt;}
.x9a_c00197{left:324.266667pt;}
.x19_c00197{left:325.600000pt;}
.x52_c00197{left:327.466667pt;}
.x2a_c00197{left:328.400000pt;}
.x58_c00197{left:330.000000pt;}
.x12_c00197{left:331.066667pt;}
.x4c_c00197{left:332.133333pt;}
.x21_c00197{left:335.066667pt;}
.x43_c00197{left:336.133333pt;}
.x49_c00197{left:337.600000pt;}
.x4f_c00197{left:338.800000pt;}
.x59_c00197{left:340.933333pt;}
.x9e_c00197{left:342.266667pt;}
.x79_c00197{left:345.466667pt;}
.x85_c00197{left:346.533333pt;}
.x13_c00197{left:348.000000pt;}
.x3e_c00197{left:349.466667pt;}
.x6b_c00197{left:350.400000pt;}
.x7a_c00197{left:351.600000pt;}
.x7d_c00197{left:352.800000pt;}
.x96_c00197{left:354.000000pt;}
.x1a_c00197{left:355.066667pt;}
.x5e_c00197{left:356.400000pt;}
.x53_c00197{left:358.133333pt;}
.x86_c00197{left:359.066667pt;}
.xe_c00197{left:361.866667pt;}
.x7_c00197{left:363.200000pt;}
.x7e_c00197{left:365.333333pt;}
.x87_c00197{left:366.400000pt;}
.x70_c00197{left:367.733333pt;}
.x61_c00197{left:370.533333pt;}
.x32_c00197{left:371.733333pt;}
.x22_c00197{left:373.200000pt;}
.x1b_c00197{left:374.933333pt;}
.x5a_c00197{left:375.866667pt;}
.x7b_c00197{left:377.600000pt;}
.x84_c00197{left:378.933333pt;}
.x6c_c00197{left:380.133333pt;}
.x44_c00197{left:381.333333pt;}
.x23_c00197{left:382.800000pt;}
.x2_c00197{left:384.666667pt;}
.x3f_c00197{left:385.600000pt;}
.x92_c00197{left:386.533333pt;}
.x8f_c00197{left:388.133333pt;}
.xf_c00197{left:389.733333pt;}
.x24_c00197{left:393.733333pt;}
.x4d_c00197{left:395.466667pt;}
.x3a_c00197{left:397.066667pt;}
.x1c_c00197{left:401.466667pt;}
.x2b_c00197{left:402.400000pt;}
.x65_c00197{left:404.133333pt;}
.x93_c00197{left:405.466667pt;}
.x8b_c00197{left:408.000000pt;}
.x40_c00197{left:409.333333pt;}
.x14_c00197{left:411.733333pt;}
.x45_c00197{left:414.666667pt;}
.x2e_c00197{left:419.066667pt;}
.x36_c00197{left:420.400000pt;}
.x5b_c00197{left:422.000000pt;}
.x46_c00197{left:424.000000pt;}
.x62_c00197{left:425.866667pt;}
.x5d_c00197{left:427.466667pt;}
.x88_c00197{left:428.933333pt;}
.x25_c00197{left:430.533333pt;}
.x8_c00197{left:433.333333pt;}
.x9b_c00197{left:436.533333pt;}
.x8c_c00197{left:438.933333pt;}
.x1d_c00197{left:440.800000pt;}
.x47_c00197{left:441.866667pt;}
.x9f_c00197{left:442.800000pt;}
.x2c_c00197{left:444.933333pt;}
.x10_c00197{left:447.333333pt;}
.x26_c00197{left:449.733333pt;}
.x71_c00197{left:451.866667pt;}
.x73_c00197{left:452.800000pt;}
.x5c_c00197{left:454.266667pt;}
.x63_c00197{left:461.066667pt;}
.x4e_c00197{left:462.400000pt;}
.x120_c00197{left:482.533333pt;}
.xd6_c00197{left:483.466667pt;}
.x109_c00197{left:484.800000pt;}
.xb1_c00197{left:488.666667pt;}
.x123_c00197{left:495.066667pt;}
.x12e_c00197{left:498.000000pt;}
.xca_c00197{left:498.933333pt;}
.xa1_c00197{left:499.866667pt;}
.x125_c00197{left:507.733333pt;}
.x11d_c00197{left:514.666667pt;}
.x10c_c00197{left:516.133333pt;}
.xbc_c00197{left:517.066667pt;}
.xeb_c00197{left:518.933333pt;}
.x11a_c00197{left:520.400000pt;}
.xc4_c00197{left:521.466667pt;}
.x131_c00197{left:522.666667pt;}
.x10a_c00197{left:523.866667pt;}
.xa2_c00197{left:528.400000pt;}
.xf2_c00197{left:529.600000pt;}
.x12a_c00197{left:530.800000pt;}
.xee_c00197{left:534.266667pt;}
.xe2_c00197{left:536.666667pt;}
.xd7_c00197{left:538.133333pt;}
.xbd_c00197{left:540.800000pt;}
.xfa_c00197{left:542.666667pt;}
.x116_c00197{left:543.733333pt;}
.xb2_c00197{left:546.533333pt;}
.x11e_c00197{left:547.600000pt;}
.x135_c00197{left:549.200000pt;}
.xb8_c00197{left:550.666667pt;}
.x132_c00197{left:551.733333pt;}
.xbe_c00197{left:553.866667pt;}
.x12f_c00197{left:557.333333pt;}
.xd8_c00197{left:559.600000pt;}
.xf3_c00197{left:560.933333pt;}
.xfb_c00197{left:563.200000pt;}
.xa3_c00197{left:565.466667pt;}
.xe3_c00197{left:568.666667pt;}
.xb3_c00197{left:569.600000pt;}
.xaa_c00197{left:571.466667pt;}
.x10d_c00197{left:573.066667pt;}
.xbf_c00197{left:574.000000pt;}
.xe8_c00197{left:575.466667pt;}
.x13b_c00197{left:577.200000pt;}
.x12b_c00197{left:578.133333pt;}
.x11b_c00197{left:579.866667pt;}
.xf4_c00197{left:582.000000pt;}
.x10f_c00197{left:584.266667pt;}
.xfd_c00197{left:586.666667pt;}
.xa4_c00197{left:588.133333pt;}
.xcb_c00197{left:590.133333pt;}
.xd9_c00197{left:592.266667pt;}
.x113_c00197{left:593.466667pt;}
.xb4_c00197{left:595.200000pt;}
.x106_c00197{left:596.533333pt;}
.xab_c00197{left:598.000000pt;}
.xc5_c00197{left:600.800000pt;}
.x128_c00197{left:604.266667pt;}
.xec_c00197{left:606.933333pt;}
.xfe_c00197{left:610.000000pt;}
.xb9_c00197{left:611.200000pt;}
.x13c_c00197{left:612.133333pt;}
.xda_c00197{left:613.066667pt;}
.xf5_c00197{left:615.600000pt;}
.xde_c00197{left:618.533333pt;}
.x114_c00197{left:620.000000pt;}
.xd1_c00197{left:621.866667pt;}
.xc0_c00197{left:623.600000pt;}
.xef_c00197{left:624.800000pt;}
.xf6_c00197{left:629.333333pt;}
.x11f_c00197{left:630.533333pt;}
.xa5_c00197{left:632.933333pt;}
.xac_c00197{left:633.866667pt;}
.xcc_c00197{left:635.866667pt;}
.xe4_c00197{left:637.733333pt;}
.xc6_c00197{left:638.800000pt;}
.x127_c00197{left:640.533333pt;}
.x12c_c00197{left:642.666667pt;}
.xfc_c00197{left:643.600000pt;}
.xf0_c00197{left:644.933333pt;}
.x100_c00197{left:646.666667pt;}
.xff_c00197{left:648.800000pt;}
.xe9_c00197{left:650.000000pt;}
.xb5_c00197{left:653.466667pt;}
.xdf_c00197{left:656.000000pt;}
.xe5_c00197{left:658.533333pt;}
.xf7_c00197{left:660.400000pt;}
.xd2_c00197{left:661.866667pt;}
.xa6_c00197{left:663.333333pt;}
.x101_c00197{left:664.533333pt;}
.xcd_c00197{left:666.000000pt;}
.xb6_c00197{left:668.800000pt;}
.xc7_c00197{left:669.866667pt;}
.xa7_c00197{left:671.600000pt;}
.x10e_c00197{left:673.200000pt;}
.x129_c00197{left:675.733333pt;}
.x102_c00197{left:677.066667pt;}
.x107_c00197{left:678.133333pt;}
.xd3_c00197{left:680.133333pt;}
.xdb_c00197{left:681.866667pt;}
.xad_c00197{left:683.200000pt;}
.xba_c00197{left:684.800000pt;}
.x13d_c00197{left:686.400000pt;}
.x133_c00197{left:689.200000pt;}
.x130_c00197{left:692.800000pt;}
.x121_c00197{left:694.666667pt;}
.xe0_c00197{left:697.333333pt;}
.x108_c00197{left:698.266667pt;}
.xbb_c00197{left:700.133333pt;}
.xc1_c00197{left:701.600000pt;}
.xdc_c00197{left:703.333333pt;}
.xae_c00197{left:704.266667pt;}
.xf8_c00197{left:708.133333pt;}
.xce_c00197{left:709.866667pt;}
.xa8_c00197{left:712.266667pt;}
.x13e_c00197{left:713.600000pt;}
.x103_c00197{left:714.533333pt;}
.xc2_c00197{left:716.000000pt;}
.xd4_c00197{left:717.600000pt;}
.xaf_c00197{left:719.600000pt;}
.x124_c00197{left:720.533333pt;}
.x115_c00197{left:722.400000pt;}
.x138_c00197{left:723.333333pt;}
.x119_c00197{left:726.133333pt;}
.xb7_c00197{left:728.000000pt;}
.x104_c00197{left:729.200000pt;}
.x136_c00197{left:730.266667pt;}
.x12d_c00197{left:731.600000pt;}
.xd5_c00197{left:732.666667pt;}
.x140_c00197{left:733.866667pt;}
.xc8_c00197{left:735.733333pt;}
.x139_c00197{left:737.066667pt;}
.x105_c00197{left:738.266667pt;}
.x11c_c00197{left:739.200000pt;}
.xe6_c00197{left:740.400000pt;}
.xcf_c00197{left:741.866667pt;}
.x111_c00197{left:743.200000pt;}
.x134_c00197{left:744.266667pt;}
.xed_c00197{left:745.466667pt;}
.xea_c00197{left:746.533333pt;}
.x117_c00197{left:748.533333pt;}
.xdd_c00197{left:752.000000pt;}
.xe7_c00197{left:753.466667pt;}
.x137_c00197{left:756.533333pt;}
.xf9_c00197{left:757.733333pt;}
.xf1_c00197{left:758.933333pt;}
.xc9_c00197{left:760.400000pt;}
.xa9_c00197{left:762.800000pt;}
.xb0_c00197{left:765.333333pt;}
.x110_c00197{left:766.266667pt;}
.xe1_c00197{left:768.666667pt;}
.x122_c00197{left:769.600000pt;}
.x126_c00197{left:770.800000pt;}
.x13f_c00197{left:772.266667pt;}
.xc3_c00197{left:773.333333pt;}
.x112_c00197{left:774.266667pt;}
.xd0_c00197{left:780.000000pt;}
.x10b_c00197{left:784.933333pt;}
.x13a_c00197{left:789.600000pt;}
.x118_c00197{left:790.533333pt;}
.x141_c00197{left:804.800000pt;}
}





/* 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_c00198 {
    display:none;
  }
  .loading-indicator_c00198.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00198 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_c00198 { 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_c00198" -> "#page-container .classname_c00198")
 */
.pf_c00198 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00198 { /* 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_c00198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00198 { /* 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_c00198 { /* 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_c00198 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00198 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00198 {overflow:visible;}
  }
}
.c_c00198 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00198 { /* 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_c00198:after { /* webkit #35443 */
  content: '';
}
.t_c00198:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00198 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 */
}
.__c00198 { /* 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_c00198 { /* info for Javascript */
  display:none;
}
.l_c00198 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00198 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00198 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00198: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_c00198 {
    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_c00198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00198.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_c00198 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00198;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.000000;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;}
.mfe_c00198{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me1_c00198{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me0_c00198{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00198{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00198{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb_c00198{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00198{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00198{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m49_c00198{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m83_c00198{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me5_c00198{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00198{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00198{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00198{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m54_c00198{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.me2_c00198{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00198{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m65_c00198{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m48_c00198{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00198{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m64_c00198{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00198{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00198{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mde_c00198{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m23_c00198{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m16_c00198{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m79_c00198{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m37_c00198{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mad_c00198{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00198{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00198{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m28_c00198{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m29_c00198{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m7_c00198{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00198{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00198{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.md1_c00198{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.maa_c00198{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m80_c00198{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00198{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00198{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00198{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m46_c00198{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00198{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m89_c00198{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m27_c00198{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00198{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00198{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m30_c00198{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m95_c00198{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00198{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.med_c00198{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m31_c00198{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mce_c00198{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m47_c00198{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00198{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00198{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00198{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m38_c00198{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m34_c00198{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m87_c00198{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m25_c00198{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m74_c00198{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00198{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00198{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00198{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mea_c00198{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00198{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00198{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me9_c00198{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8_c00198{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m59_c00198{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.ma_c00198{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00198{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00198{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m94_c00198{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m72_c00198{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m63_c00198{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc_c00198{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m91_c00198{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00198{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m84_c00198{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00198{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m75_c00198{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00198{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00198{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00198{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00198{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3_c00198{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00198{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00198{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00198{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11_c00198{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00198{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00198{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00198{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m82_c00198{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m36_c00198{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m18_c00198{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me_c00198{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m55_c00198{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00198{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mab_c00198{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00198{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m97_c00198{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00198{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m90_c00198{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m17_c00198{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m39_c00198{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me8_c00198{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m45_c00198{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m96_c00198{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m73_c00198{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mee_c00198{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m67_c00198{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m62_c00198{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00198{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00198{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00198{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m26_c00198{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m50_c00198{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00198{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00198{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m58_c00198{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00198{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf_c00198{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00198{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00198{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mba_c00198{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00198{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00198{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6_c00198{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00198{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00198{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00198{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m85_c00198{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m33_c00198{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m69_c00198{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m42_c00198{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00198{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m32_c00198{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m88_c00198{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00198{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m60_c00198{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00198{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m5_c00198{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00198{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00198{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00198{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m12_c00198{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m35_c00198{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00198{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mae_c00198{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m40_c00198{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m92_c00198{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m57_c00198{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00198{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00198{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m76_c00198{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00198{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md_c00198{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mac_c00198{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m93_c00198{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m66_c00198{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00198{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m20_c00198{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00198{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4_c00198{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00198{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m98_c00198{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00198{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00198{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00198{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00198{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00198{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00198{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00198{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m22_c00198{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.maf_c00198{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00198{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m10_c00198{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mca_c00198{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00198{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00198{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00198{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m19_c00198{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m41_c00198{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m78_c00198{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m21_c00198{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00198{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me4_c00198{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.meb_c00198{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mff_c00198{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me7_c00198{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m52_c00198{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00198{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m14_c00198{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m56_c00198{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00198{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m43_c00198{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00198{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m77_c00198{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00198{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m15_c00198{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md3_c00198{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00198{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00198{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00198{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00198{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m53_c00198{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00198{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m71_c00198{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00198{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00198{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mda_c00198{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m44_c00198{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00198{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m86_c00198{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00198{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me6_c00198{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00198{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mef_c00198{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m81_c00198{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.md6_c00198{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m24_c00198{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m61_c00198{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m51_c00198{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m68_c00198{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00198{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00198{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00198{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m13_c00198{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md9_c00198{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00198{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.md2_c00198{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md0_c00198{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00198{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m99_c00198{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00198{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00198{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9_c00198{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.md5_c00198{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00198{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00198{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md8_c00198{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mec_c00198{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m70_c00198{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.md4_c00198{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00198{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00198{transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);}
.m100_c00198{transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00198{transform:matrix(0.374250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374250,0.000000,0.000000,0.250000,0,0);}
.me3_c00198{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md7_c00198{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls0_c00198{letter-spacing:0.000000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{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__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:-1.997587px;}
.ws7_c00198{word-spacing:0.000000px;}
.ws1_c00198{word-spacing:6.388889px;}
.ws3_c00198{word-spacing:8.449857px;}
.ws2_c00198{word-spacing:9.892193px;}
.ws6_c00198{word-spacing:16.198590px;}
.ws4_c00198{word-spacing:25.714286px;}
.ws5_c00198{word-spacing:40.000000px;}
._1_c00198{width:52.142857px;}
._0_c00198{width:59.285714px;}
.fc0_c00198{color:transparent;}
.fs5_c00198{font-size:36.000000px;}
.fs7_c00198{font-size:48.000000px;}
.fs6_c00198{font-size:54.000000px;}
.fs3_c00198{font-size:60.000000px;}
.fs2_c00198{font-size:66.000000px;}
.fs4_c00198{font-size:72.000000px;}
.fs1_c00198{font-size:78.000000px;}
.fs0_c00198{font-size:108.000000px;}
.y0_c00198{bottom:0.000000px;}
.y65_c00198{bottom:179.250000px;}
.y35_c00198{bottom:181.350000px;}
.y34_c00198{bottom:196.500000px;}
.y33_c00198{bottom:210.150000px;}
.y64_c00198{bottom:212.100000px;}
.y32_c00198{bottom:224.550000px;}
.y63_c00198{bottom:234.600000px;}
.y31_c00198{bottom:238.650000px;}
.y62_c00198{bottom:252.300000px;}
.y30_c00198{bottom:253.050000px;}
.y2f_c00198{bottom:267.150000px;}
.y61_c00198{bottom:274.350000px;}
.y2e_c00198{bottom:281.100000px;}
.y60_c00198{bottom:292.350000px;}
.y2d_c00198{bottom:295.500000px;}
.y5f_c00198{bottom:310.050000px;}
.y2c_c00198{bottom:310.200000px;}
.y2b_c00198{bottom:324.600000px;}
.y5e_c00198{bottom:327.750000px;}
.y2a_c00198{bottom:338.700000px;}
.y5d_c00198{bottom:345.450000px;}
.y5c_c00198{bottom:363.150000px;}
.y5b_c00198{bottom:380.850000px;}
.y29_c00198{bottom:384.900000px;}
.y5a_c00198{bottom:398.850000px;}
.y28_c00198{bottom:402.900000px;}
.y59_c00198{bottom:416.850000px;}
.y27_c00198{bottom:420.150000px;}
.y58_c00198{bottom:433.950000px;}
.y26_c00198{bottom:442.200000px;}
.y57_c00198{bottom:451.950000px;}
.y25_c00198{bottom:459.900000px;}
.y56_c00198{bottom:469.650000px;}
.y24_c00198{bottom:477.900000px;}
.y55_c00198{bottom:487.650000px;}
.y23_c00198{bottom:495.600000px;}
.y54_c00198{bottom:505.350000px;}
.y22_c00198{bottom:513.600000px;}
.y53_c00198{bottom:523.350000px;}
.y21_c00198{bottom:531.300000px;}
.y52_c00198{bottom:541.050000px;}
.y20_c00198{bottom:549.000000px;}
.y51_c00198{bottom:559.050000px;}
.y1f_c00198{bottom:569.550000px;}
.y50_c00198{bottom:576.750000px;}
.y1e_c00198{bottom:583.950000px;}
.y4f_c00198{bottom:594.750000px;}
.y1d_c00198{bottom:604.350000px;}
.y4e_c00198{bottom:615.000000px;}
.y1c_c00198{bottom:622.050000px;}
.y4d_c00198{bottom:629.700000px;}
.y1b_c00198{bottom:639.750000px;}
.y4c_c00198{bottom:642.300000px;}
.y4b_c00198{bottom:661.800000px;}
.y1a_c00198{bottom:661.950000px;}
.y4a_c00198{bottom:679.500000px;}
.y19_c00198{bottom:679.650000px;}
.y49_c00198{bottom:697.200000px;}
.y18_c00198{bottom:697.650000px;}
.y48_c00198{bottom:714.900000px;}
.y17_c00198{bottom:715.350000px;}
.y16_c00198{bottom:736.950000px;}
.y47_c00198{bottom:741.150000px;}
.y46_c00198{bottom:759.150000px;}
.y15_c00198{bottom:767.550000px;}
.y45_c00198{bottom:776.850000px;}
.y14_c00198{bottom:784.950000px;}
.y44_c00198{bottom:794.550000px;}
.y13_c00198{bottom:805.500000px;}
.y43_c00198{bottom:816.900000px;}
.y12_c00198{bottom:820.650000px;}
.y11_c00198{bottom:838.350000px;}
.y42_c00198{bottom:852.150000px;}
.y10_c00198{bottom:856.350000px;}
.yf_c00198{bottom:874.050000px;}
.ye_c00198{bottom:891.750000px;}
.yd_c00198{bottom:909.300000px;}
.y41_c00198{bottom:909.750000px;}
.yc_c00198{bottom:927.150000px;}
.y40_c00198{bottom:927.450000px;}
.yb_c00198{bottom:944.850000px;}
.y3f_c00198{bottom:945.150000px;}
.ya_c00198{bottom:962.550000px;}
.y3e_c00198{bottom:962.850000px;}
.y9_c00198{bottom:980.250000px;}
.y3d_c00198{bottom:980.550000px;}
.y3c_c00198{bottom:998.250000px;}
.y8_c00198{bottom:1002.000000px;}
.y7_c00198{bottom:1019.700000px;}
.y3b_c00198{bottom:1020.600000px;}
.y6_c00198{bottom:1037.400000px;}
.y3a_c00198{bottom:1038.600000px;}
.y5_c00198{bottom:1055.400000px;}
.y39_c00198{bottom:1055.850000px;}
.y4_c00198{bottom:1073.100000px;}
.y38_c00198{bottom:1073.850000px;}
.y3_c00198{bottom:1090.800000px;}
.y37_c00198{bottom:1091.550000px;}
.y2_c00198{bottom:1108.800000px;}
.y36_c00198{bottom:1109.550000px;}
.y1_c00198{bottom:1135.800000px;}
.h7_c00198{height:36.000000px;}
.h9_c00198{height:48.000000px;}
.h8_c00198{height:54.000000px;}
.h5_c00198{height:60.000000px;}
.h4_c00198{height:66.000000px;}
.h6_c00198{height:72.000000px;}
.h3_c00198{height:78.000000px;}
.h2_c00198{height:108.000000px;}
.h1_c00198{height:1272.750000px;}
.h0_c00198{height:1272.960022px;}
.w1_c00198{width:963.000000px;}
.w0_c00198{width:963.359985px;}
.x0_c00198{left:0.000000px;}
.x2c_c00198{left:81.000000px;}
.x6d_c00198{left:82.500000px;}
.x7d_c00198{left:83.850000px;}
.x7c_c00198{left:95.550000px;}
.x3c_c00198{left:98.700000px;}
.x3_c00198{left:99.750000px;}
.x8c_c00198{left:100.800000px;}
.xa1_c00198{left:105.000000px;}
.xab_c00198{left:109.500000px;}
.x74_c00198{left:114.600000px;}
.xaf_c00198{left:115.800000px;}
.x90_c00198{left:117.300000px;}
.x4_c00198{left:118.500000px;}
.xa5_c00198{left:120.600000px;}
.x97_c00198{left:121.650000px;}
.x61_c00198{left:123.450000px;}
.xa_c00198{left:125.700000px;}
.x6e_c00198{left:126.750000px;}
.xa7_c00198{left:127.800000px;}
.x87_c00198{left:131.250000px;}
.x5c_c00198{left:132.900000px;}
.x27_c00198{left:133.950000px;}
.x92_c00198{left:135.000000px;}
.x12_c00198{left:136.050000px;}
.x22_c00198{left:138.150000px;}
.x33_c00198{left:140.700000px;}
.xa4_c00198{left:142.800000px;}
.x5_c00198{left:144.450000px;}
.x3d_c00198{left:145.500000px;}
.x98_c00198{left:146.550000px;}
.xb_c00198{left:148.050000px;}
.xac_c00198{left:149.700000px;}
.x18_c00198{left:151.500000px;}
.x88_c00198{left:152.550000px;}
.x3e_c00198{left:154.200000px;}
.x5d_c00198{left:156.000000px;}
.xc_c00198{left:157.350000px;}
.x23_c00198{left:159.750000px;}
.x28_c00198{left:162.000000px;}
.x36_c00198{left:163.800000px;}
.x91_c00198{left:165.900000px;}
.x8d_c00198{left:166.950000px;}
.x3f_c00198{left:170.400000px;}
.x7e_c00198{left:172.050000px;}
.x19_c00198{left:174.900000px;}
.x24_c00198{left:175.950000px;}
.xa6_c00198{left:177.450000px;}
.x63_c00198{left:179.250000px;}
.x93_c00198{left:180.300000px;}
.x29_c00198{left:182.850000px;}
.xd_c00198{left:184.650000px;}
.x37_c00198{left:187.200000px;}
.x52_c00198{left:188.550000px;}
.x5e_c00198{left:190.200000px;}
.x94_c00198{left:191.400000px;}
.x48_c00198{left:192.450000px;}
.x69_c00198{left:195.150000px;}
.x9b_c00198{left:196.200000px;}
.x2d_c00198{left:197.250000px;}
.x40_c00198{left:199.200000px;}
.x5a_c00198{left:200.400000px;}
.x1d_c00198{left:201.600000px;}
.x82_c00198{left:203.400000px;}
.x13_c00198{left:204.450000px;}
.x75_c00198{left:206.400000px;}
.x5f_c00198{left:208.950000px;}
.x8e_c00198{left:210.150000px;}
.x4f_c00198{left:212.250000px;}
.x9c_c00198{left:213.450000px;}
.x78_c00198{left:214.800000px;}
.x6_c00198{left:216.750000px;}
.x65_c00198{left:218.250000px;}
.x43_c00198{left:219.900000px;}
.xe_c00198{left:220.950000px;}
.x99_c00198{left:222.150000px;}
.x1a_c00198{left:224.250000px;}
.x49_c00198{left:226.350000px;}
.x2a_c00198{left:227.850000px;}
.x53_c00198{left:229.200000px;}
.x50_c00198{left:230.250000px;}
.x9d_c00198{left:233.550000px;}
.xad_c00198{left:235.050000px;}
.x60_c00198{left:236.700000px;}
.x71_c00198{left:239.550000px;}
.x38_c00198{left:241.200000px;}
.x83_c00198{left:242.250000px;}
.x6f_c00198{left:243.750000px;}
.xa8_c00198{left:244.800000px;}
.x41_c00198{left:246.300000px;}
.xf_c00198{left:247.950000px;}
.x4a_c00198{left:249.750000px;}
.x44_c00198{left:251.250000px;}
.x84_c00198{left:254.550000px;}
.x7f_c00198{left:256.350000px;}
.x89_c00198{left:257.700000px;}
.x14_c00198{left:259.500000px;}
.x2b_c00198{left:262.050000px;}
.x6a_c00198{left:263.550000px;}
.x55_c00198{left:267.300000px;}
.x8a_c00198{left:268.800000px;}
.x6b_c00198{left:271.500000px;}
.x66_c00198{left:273.750000px;}
.x85_c00198{left:275.100000px;}
.x70_c00198{left:276.450000px;}
.xae_c00198{left:278.250000px;}
.x51_c00198{left:279.600000px;}
.x7_c00198{left:280.800000px;}
.x9a_c00198{left:282.300000px;}
.x62_c00198{left:283.650000px;}
.x25_c00198{left:285.750000px;}
.x9e_c00198{left:287.550000px;}
.x1b_c00198{left:289.050000px;}
.x2e_c00198{left:292.350000px;}
.x1e_c00198{left:293.700000px;}
.x45_c00198{left:295.200000px;}
.x15_c00198{left:297.000000px;}
.x34_c00198{left:298.500000px;}
.x2f_c00198{left:301.350000px;}
.x67_c00198{left:303.600000px;}
.x72_c00198{left:305.100000px;}
.x56_c00198{left:306.900000px;}
.x54_c00198{left:308.700000px;}
.x6c_c00198{left:311.400000px;}
.x8f_c00198{left:312.450000px;}
.x30_c00198{left:316.050000px;}
.x1c_c00198{left:317.550000px;}
.x46_c00198{left:318.600000px;}
.x10_c00198{left:319.950000px;}
.x1_c00198{left:321.150000px;}
.x16_c00198{left:322.200000px;}
.x80_c00198{left:323.400000px;}
.x79_c00198{left:324.900000px;}
.x4b_c00198{left:327.450000px;}
.x86_c00198{left:328.800000px;}
.x35_c00198{left:330.900000px;}
.x76_c00198{left:332.400000px;}
.x39_c00198{left:334.200000px;}
.x57_c00198{left:335.400000px;}
.x64_c00198{left:337.050000px;}
.x42_c00198{left:338.100000px;}
.x26_c00198{left:339.750000px;}
.xa2_c00198{left:341.250000px;}
.x96_c00198{left:343.500000px;}
.x9f_c00198{left:345.150000px;}
.x7a_c00198{left:346.800000px;}
.x4c_c00198{left:348.300000px;}
.xa9_c00198{left:349.950000px;}
.x58_c00198{left:351.900000px;}
.x1f_c00198{left:355.950000px;}
.x8_c00198{left:357.150000px;}
.x3a_c00198{left:359.700000px;}
.x95_c00198{left:364.650000px;}
.x77_c00198{left:366.300000px;}
.x7b_c00198{left:368.400000px;}
.x81_c00198{left:369.450000px;}
.x73_c00198{left:370.650000px;}
.x8b_c00198{left:371.850000px;}
.x9_c00198{left:373.350000px;}
.x20_c00198{left:376.500000px;}
.x11_c00198{left:381.900000px;}
.x31_c00198{left:382.950000px;}
.xaa_c00198{left:384.150000px;}
.x5b_c00198{left:385.200000px;}
.x17_c00198{left:387.300000px;}
.x59_c00198{left:388.950000px;}
.x3b_c00198{left:392.400000px;}
.x4d_c00198{left:395.850000px;}
.x32_c00198{left:398.100000px;}
.xa3_c00198{left:399.450000px;}
.x47_c00198{left:401.400000px;}
.x21_c00198{left:402.450000px;}
.xa0_c00198{left:404.550000px;}
.x4e_c00198{left:406.350000px;}
.x68_c00198{left:412.650000px;}
.xd9_c00198{left:438.150000px;}
.x102_c00198{left:439.200000px;}
.x152_c00198{left:440.250000px;}
.xb0_c00198{left:455.400000px;}
.xf5_c00198{left:456.450000px;}
.x134_c00198{left:457.500000px;}
.x141_c00198{left:462.450000px;}
.x13b_c00198{left:465.900000px;}
.x126_c00198{left:467.400000px;}
.x12f_c00198{left:472.050000px;}
.x107_c00198{left:474.900000px;}
.xd0_c00198{left:476.850000px;}
.xfa_c00198{left:478.200000px;}
.x103_c00198{left:480.600000px;}
.x137_c00198{left:481.950000px;}
.x13a_c00198{left:483.000000px;}
.xc6_c00198{left:484.350000px;}
.x13c_c00198{left:486.750000px;}
.x127_c00198{left:489.300000px;}
.xd1_c00198{left:493.050000px;}
.xbf_c00198{left:494.100000px;}
.x10c_c00198{left:495.150000px;}
.xea_c00198{left:497.100000px;}
.xef_c00198{left:498.750000px;}
.xb8_c00198{left:500.100000px;}
.xb1_c00198{left:502.500000px;}
.xcb_c00198{left:503.700000px;}
.x147_c00198{left:505.500000px;}
.xf0_c00198{left:507.450000px;}
.x121_c00198{left:508.650000px;}
.xfe_c00198{left:509.850000px;}
.xe6_c00198{left:510.900000px;}
.xc0_c00198{left:512.400000px;}
.x104_c00198{left:515.850000px;}
.x118_c00198{left:517.050000px;}
.x12d_c00198{left:518.550000px;}
.xdf_c00198{left:520.650000px;}
.xb9_c00198{left:523.200000px;}
.xb2_c00198{left:525.900000px;}
.xda_c00198{left:529.200000px;}
.x100_c00198{left:531.750000px;}
.xe7_c00198{left:533.550000px;}
.xc7_c00198{left:534.750000px;}
.x12e_c00198{left:536.550000px;}
.x108_c00198{left:541.500000px;}
.xd2_c00198{left:543.450000px;}
.x149_c00198{left:544.800000px;}
.x14c_c00198{left:546.900000px;}
.xba_c00198{left:548.700000px;}
.xb3_c00198{left:550.350000px;}
.x142_c00198{left:552.300000px;}
.xff_c00198{left:553.350000px;}
.xdb_c00198{left:554.400000px;}
.xcc_c00198{left:556.200000px;}
.x111_c00198{left:557.250000px;}
.x122_c00198{left:559.050000px;}
.xd3_c00198{left:560.400000px;}
.x14a_c00198{left:563.850000px;}
.x14d_c00198{left:564.900000px;}
.x119_c00198{left:566.400000px;}
.x109_c00198{left:567.450000px;}
.x10d_c00198{left:568.650000px;}
.xdc_c00198{left:572.400000px;}
.xe0_c00198{left:574.950000px;}
.x110_c00198{left:576.000000px;}
.x105_c00198{left:577.050000px;}
.xeb_c00198{left:579.900000px;}
.x135_c00198{left:580.950000px;}
.x10e_c00198{left:584.100000px;}
.x148_c00198{left:586.050000px;}
.xc1_c00198{left:587.700000px;}
.x130_c00198{left:589.800000px;}
.xbb_c00198{left:591.150000px;}
.xd4_c00198{left:594.900000px;}
.x101_c00198{left:596.250000px;}
.x10a_c00198{left:598.050000px;}
.x112_c00198{left:601.500000px;}
.xfb_c00198{left:603.750000px;}
.x10f_c00198{left:606.000000px;}
.xe8_c00198{left:607.350000px;}
.xcd_c00198{left:610.500000px;}
.xdd_c00198{left:611.700000px;}
.xec_c00198{left:615.150000px;}
.xc8_c00198{left:616.800000px;}
.x123_c00198{left:618.450000px;}
.xf1_c00198{left:620.550000px;}
.x128_c00198{left:621.750000px;}
.x12c_c00198{left:623.250000px;}
.x115_c00198{left:625.050000px;}
.x14e_c00198{left:626.100000px;}
.xe1_c00198{left:627.150000px;}
.xd5_c00198{left:628.800000px;}
.x11a_c00198{left:629.850000px;}
.xc2_c00198{left:630.900000px;}
.xb4_c00198{left:633.450000px;}
.xf6_c00198{left:635.100000px;}
.x13d_c00198{left:636.300000px;}
.x132_c00198{left:637.950000px;}
.xc3_c00198{left:640.950000px;}
.x129_c00198{left:642.300000px;}
.xf2_c00198{left:643.650000px;}
.x13e_c00198{left:645.000000px;}
.xe2_c00198{left:646.950000px;}
.x143_c00198{left:648.150000px;}
.xd6_c00198{left:649.650000px;}
.xb5_c00198{left:651.450000px;}
.x11b_c00198{left:653.250000px;}
.x113_c00198{left:654.450000px;}
.x11e_c00198{left:656.100000px;}
.x138_c00198{left:657.600000px;}
.xc4_c00198{left:659.250000px;}
.xbc_c00198{left:661.050000px;}
.x153_c00198{left:664.650000px;}
.xd7_c00198{left:665.850000px;}
.x11c_c00198{left:667.350000px;}
.x136_c00198{left:668.400000px;}
.xce_c00198{left:670.950000px;}
.x131_c00198{left:674.550000px;}
.xfc_c00198{left:676.050000px;}
.xde_c00198{left:678.600000px;}
.xb6_c00198{left:679.950000px;}
.xf7_c00198{left:681.600000px;}
.x14b_c00198{left:682.950000px;}
.xc9_c00198{left:685.200000px;}
.x10b_c00198{left:687.000000px;}
.xe9_c00198{left:688.350000px;}
.x116_c00198{left:690.600000px;}
.xe3_c00198{left:691.950000px;}
.xf3_c00198{left:693.000000px;}
.x106_c00198{left:694.500000px;}
.x12a_c00198{left:696.300000px;}
.x144_c00198{left:697.500000px;}
.xbd_c00198{left:698.550000px;}
.xfd_c00198{left:702.750000px;}
.xd8_c00198{left:703.950000px;}
.xc5_c00198{left:707.100000px;}
.xf8_c00198{left:708.600000px;}
.x11f_c00198{left:713.400000px;}
.xe4_c00198{left:715.050000px;}
.x114_c00198{left:718.200000px;}
.x13f_c00198{left:719.550000px;}
.xf9_c00198{left:721.200000px;}
.xed_c00198{left:724.950000px;}
.xcf_c00198{left:726.000000px;}
.x14f_c00198{left:728.250000px;}
.x145_c00198{left:729.300000px;}
.x12b_c00198{left:730.800000px;}
.x124_c00198{left:732.300000px;}
.x117_c00198{left:734.850000px;}
.xb7_c00198{left:739.050000px;}
.x139_c00198{left:740.700000px;}
.x120_c00198{left:741.900000px;}
.xbe_c00198{left:743.550000px;}
.xf4_c00198{left:745.950000px;}
.x2_c00198{left:747.000000px;}
.xca_c00198{left:749.250000px;}
.xe5_c00198{left:754.650000px;}
.x133_c00198{left:756.600000px;}
.xee_c00198{left:759.450000px;}
.x125_c00198{left:760.800000px;}
.x150_c00198{left:762.750000px;}
.x11d_c00198{left:765.000000px;}
.x151_c00198{left:768.450000px;}
.x140_c00198{left:769.950000px;}
.x146_c00198{left:771.450000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws0_c00198{word-spacing:-1.775633pt;}
.ws7_c00198{word-spacing:0.000000pt;}
.ws1_c00198{word-spacing:5.679012pt;}
.ws3_c00198{word-spacing:7.510984pt;}
.ws2_c00198{word-spacing:8.793061pt;}
.ws6_c00198{word-spacing:14.398747pt;}
.ws4_c00198{word-spacing:22.857143pt;}
.ws5_c00198{word-spacing:35.555556pt;}
._1_c00198{width:46.349206pt;}
._0_c00198{width:52.698413pt;}
.fs5_c00198{font-size:32.000000pt;}
.fs7_c00198{font-size:42.666667pt;}
.fs6_c00198{font-size:48.000000pt;}
.fs3_c00198{font-size:53.333333pt;}
.fs2_c00198{font-size:58.666667pt;}
.fs4_c00198{font-size:64.000000pt;}
.fs1_c00198{font-size:69.333333pt;}
.fs0_c00198{font-size:96.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y65_c00198{bottom:159.333333pt;}
.y35_c00198{bottom:161.200000pt;}
.y34_c00198{bottom:174.666667pt;}
.y33_c00198{bottom:186.800000pt;}
.y64_c00198{bottom:188.533333pt;}
.y32_c00198{bottom:199.600000pt;}
.y63_c00198{bottom:208.533333pt;}
.y31_c00198{bottom:212.133333pt;}
.y62_c00198{bottom:224.266667pt;}
.y30_c00198{bottom:224.933333pt;}
.y2f_c00198{bottom:237.466667pt;}
.y61_c00198{bottom:243.866667pt;}
.y2e_c00198{bottom:249.866667pt;}
.y60_c00198{bottom:259.866667pt;}
.y2d_c00198{bottom:262.666667pt;}
.y5f_c00198{bottom:275.600000pt;}
.y2c_c00198{bottom:275.733333pt;}
.y2b_c00198{bottom:288.533333pt;}
.y5e_c00198{bottom:291.333333pt;}
.y2a_c00198{bottom:301.066667pt;}
.y5d_c00198{bottom:307.066667pt;}
.y5c_c00198{bottom:322.800000pt;}
.y5b_c00198{bottom:338.533333pt;}
.y29_c00198{bottom:342.133333pt;}
.y5a_c00198{bottom:354.533333pt;}
.y28_c00198{bottom:358.133333pt;}
.y59_c00198{bottom:370.533333pt;}
.y27_c00198{bottom:373.466667pt;}
.y58_c00198{bottom:385.733333pt;}
.y26_c00198{bottom:393.066667pt;}
.y57_c00198{bottom:401.733333pt;}
.y25_c00198{bottom:408.800000pt;}
.y56_c00198{bottom:417.466667pt;}
.y24_c00198{bottom:424.800000pt;}
.y55_c00198{bottom:433.466667pt;}
.y23_c00198{bottom:440.533333pt;}
.y54_c00198{bottom:449.200000pt;}
.y22_c00198{bottom:456.533333pt;}
.y53_c00198{bottom:465.200000pt;}
.y21_c00198{bottom:472.266667pt;}
.y52_c00198{bottom:480.933333pt;}
.y20_c00198{bottom:488.000000pt;}
.y51_c00198{bottom:496.933333pt;}
.y1f_c00198{bottom:506.266667pt;}
.y50_c00198{bottom:512.666667pt;}
.y1e_c00198{bottom:519.066667pt;}
.y4f_c00198{bottom:528.666667pt;}
.y1d_c00198{bottom:537.200000pt;}
.y4e_c00198{bottom:546.666667pt;}
.y1c_c00198{bottom:552.933333pt;}
.y4d_c00198{bottom:559.733333pt;}
.y1b_c00198{bottom:568.666667pt;}
.y4c_c00198{bottom:570.933333pt;}
.y4b_c00198{bottom:588.266667pt;}
.y1a_c00198{bottom:588.400000pt;}
.y4a_c00198{bottom:604.000000pt;}
.y19_c00198{bottom:604.133333pt;}
.y49_c00198{bottom:619.733333pt;}
.y18_c00198{bottom:620.133333pt;}
.y48_c00198{bottom:635.466667pt;}
.y17_c00198{bottom:635.866667pt;}
.y16_c00198{bottom:655.066667pt;}
.y47_c00198{bottom:658.800000pt;}
.y46_c00198{bottom:674.800000pt;}
.y15_c00198{bottom:682.266667pt;}
.y45_c00198{bottom:690.533333pt;}
.y14_c00198{bottom:697.733333pt;}
.y44_c00198{bottom:706.266667pt;}
.y13_c00198{bottom:716.000000pt;}
.y43_c00198{bottom:726.133333pt;}
.y12_c00198{bottom:729.466667pt;}
.y11_c00198{bottom:745.200000pt;}
.y42_c00198{bottom:757.466667pt;}
.y10_c00198{bottom:761.200000pt;}
.yf_c00198{bottom:776.933333pt;}
.ye_c00198{bottom:792.666667pt;}
.yd_c00198{bottom:808.266667pt;}
.y41_c00198{bottom:808.666667pt;}
.yc_c00198{bottom:824.133333pt;}
.y40_c00198{bottom:824.400000pt;}
.yb_c00198{bottom:839.866667pt;}
.y3f_c00198{bottom:840.133333pt;}
.ya_c00198{bottom:855.600000pt;}
.y3e_c00198{bottom:855.866667pt;}
.y9_c00198{bottom:871.333333pt;}
.y3d_c00198{bottom:871.600000pt;}
.y3c_c00198{bottom:887.333333pt;}
.y8_c00198{bottom:890.666667pt;}
.y7_c00198{bottom:906.400000pt;}
.y3b_c00198{bottom:907.200000pt;}
.y6_c00198{bottom:922.133333pt;}
.y3a_c00198{bottom:923.200000pt;}
.y5_c00198{bottom:938.133333pt;}
.y39_c00198{bottom:938.533333pt;}
.y4_c00198{bottom:953.866667pt;}
.y38_c00198{bottom:954.533333pt;}
.y3_c00198{bottom:969.600000pt;}
.y37_c00198{bottom:970.266667pt;}
.y2_c00198{bottom:985.600000pt;}
.y36_c00198{bottom:986.266667pt;}
.y1_c00198{bottom:1009.600000pt;}
.h7_c00198{height:32.000000pt;}
.h9_c00198{height:42.666667pt;}
.h8_c00198{height:48.000000pt;}
.h5_c00198{height:53.333333pt;}
.h4_c00198{height:58.666667pt;}
.h6_c00198{height:64.000000pt;}
.h3_c00198{height:69.333333pt;}
.h2_c00198{height:96.000000pt;}
.h1_c00198{height:1131.333333pt;}
.h0_c00198{height:1131.520020pt;}
.w1_c00198{width:856.000000pt;}
.w0_c00198{width:856.319987pt;}
.x0_c00198{left:0.000000pt;}
.x2c_c00198{left:72.000000pt;}
.x6d_c00198{left:73.333333pt;}
.x7d_c00198{left:74.533333pt;}
.x7c_c00198{left:84.933333pt;}
.x3c_c00198{left:87.733333pt;}
.x3_c00198{left:88.666667pt;}
.x8c_c00198{left:89.600000pt;}
.xa1_c00198{left:93.333333pt;}
.xab_c00198{left:97.333333pt;}
.x74_c00198{left:101.866667pt;}
.xaf_c00198{left:102.933333pt;}
.x90_c00198{left:104.266667pt;}
.x4_c00198{left:105.333333pt;}
.xa5_c00198{left:107.200000pt;}
.x97_c00198{left:108.133333pt;}
.x61_c00198{left:109.733333pt;}
.xa_c00198{left:111.733333pt;}
.x6e_c00198{left:112.666667pt;}
.xa7_c00198{left:113.600000pt;}
.x87_c00198{left:116.666667pt;}
.x5c_c00198{left:118.133333pt;}
.x27_c00198{left:119.066667pt;}
.x92_c00198{left:120.000000pt;}
.x12_c00198{left:120.933333pt;}
.x22_c00198{left:122.800000pt;}
.x33_c00198{left:125.066667pt;}
.xa4_c00198{left:126.933333pt;}
.x5_c00198{left:128.400000pt;}
.x3d_c00198{left:129.333333pt;}
.x98_c00198{left:130.266667pt;}
.xb_c00198{left:131.600000pt;}
.xac_c00198{left:133.066667pt;}
.x18_c00198{left:134.666667pt;}
.x88_c00198{left:135.600000pt;}
.x3e_c00198{left:137.066667pt;}
.x5d_c00198{left:138.666667pt;}
.xc_c00198{left:139.866667pt;}
.x23_c00198{left:142.000000pt;}
.x28_c00198{left:144.000000pt;}
.x36_c00198{left:145.600000pt;}
.x91_c00198{left:147.466667pt;}
.x8d_c00198{left:148.400000pt;}
.x3f_c00198{left:151.466667pt;}
.x7e_c00198{left:152.933333pt;}
.x19_c00198{left:155.466667pt;}
.x24_c00198{left:156.400000pt;}
.xa6_c00198{left:157.733333pt;}
.x63_c00198{left:159.333333pt;}
.x93_c00198{left:160.266667pt;}
.x29_c00198{left:162.533333pt;}
.xd_c00198{left:164.133333pt;}
.x37_c00198{left:166.400000pt;}
.x52_c00198{left:167.600000pt;}
.x5e_c00198{left:169.066667pt;}
.x94_c00198{left:170.133333pt;}
.x48_c00198{left:171.066667pt;}
.x69_c00198{left:173.466667pt;}
.x9b_c00198{left:174.400000pt;}
.x2d_c00198{left:175.333333pt;}
.x40_c00198{left:177.066667pt;}
.x5a_c00198{left:178.133333pt;}
.x1d_c00198{left:179.200000pt;}
.x82_c00198{left:180.800000pt;}
.x13_c00198{left:181.733333pt;}
.x75_c00198{left:183.466667pt;}
.x5f_c00198{left:185.733333pt;}
.x8e_c00198{left:186.800000pt;}
.x4f_c00198{left:188.666667pt;}
.x9c_c00198{left:189.733333pt;}
.x78_c00198{left:190.933333pt;}
.x6_c00198{left:192.666667pt;}
.x65_c00198{left:194.000000pt;}
.x43_c00198{left:195.466667pt;}
.xe_c00198{left:196.400000pt;}
.x99_c00198{left:197.466667pt;}
.x1a_c00198{left:199.333333pt;}
.x49_c00198{left:201.200000pt;}
.x2a_c00198{left:202.533333pt;}
.x53_c00198{left:203.733333pt;}
.x50_c00198{left:204.666667pt;}
.x9d_c00198{left:207.600000pt;}
.xad_c00198{left:208.933333pt;}
.x60_c00198{left:210.400000pt;}
.x71_c00198{left:212.933333pt;}
.x38_c00198{left:214.400000pt;}
.x83_c00198{left:215.333333pt;}
.x6f_c00198{left:216.666667pt;}
.xa8_c00198{left:217.600000pt;}
.x41_c00198{left:218.933333pt;}
.xf_c00198{left:220.400000pt;}
.x4a_c00198{left:222.000000pt;}
.x44_c00198{left:223.333333pt;}
.x84_c00198{left:226.266667pt;}
.x7f_c00198{left:227.866667pt;}
.x89_c00198{left:229.066667pt;}
.x14_c00198{left:230.666667pt;}
.x2b_c00198{left:232.933333pt;}
.x6a_c00198{left:234.266667pt;}
.x55_c00198{left:237.600000pt;}
.x8a_c00198{left:238.933333pt;}
.x6b_c00198{left:241.333333pt;}
.x66_c00198{left:243.333333pt;}
.x85_c00198{left:244.533333pt;}
.x70_c00198{left:245.733333pt;}
.xae_c00198{left:247.333333pt;}
.x51_c00198{left:248.533333pt;}
.x7_c00198{left:249.600000pt;}
.x9a_c00198{left:250.933333pt;}
.x62_c00198{left:252.133333pt;}
.x25_c00198{left:254.000000pt;}
.x9e_c00198{left:255.600000pt;}
.x1b_c00198{left:256.933333pt;}
.x2e_c00198{left:259.866667pt;}
.x1e_c00198{left:261.066667pt;}
.x45_c00198{left:262.400000pt;}
.x15_c00198{left:264.000000pt;}
.x34_c00198{left:265.333333pt;}
.x2f_c00198{left:267.866667pt;}
.x67_c00198{left:269.866667pt;}
.x72_c00198{left:271.200000pt;}
.x56_c00198{left:272.800000pt;}
.x54_c00198{left:274.400000pt;}
.x6c_c00198{left:276.800000pt;}
.x8f_c00198{left:277.733333pt;}
.x30_c00198{left:280.933333pt;}
.x1c_c00198{left:282.266667pt;}
.x46_c00198{left:283.200000pt;}
.x10_c00198{left:284.400000pt;}
.x1_c00198{left:285.466667pt;}
.x16_c00198{left:286.400000pt;}
.x80_c00198{left:287.466667pt;}
.x79_c00198{left:288.800000pt;}
.x4b_c00198{left:291.066667pt;}
.x86_c00198{left:292.266667pt;}
.x35_c00198{left:294.133333pt;}
.x76_c00198{left:295.466667pt;}
.x39_c00198{left:297.066667pt;}
.x57_c00198{left:298.133333pt;}
.x64_c00198{left:299.600000pt;}
.x42_c00198{left:300.533333pt;}
.x26_c00198{left:302.000000pt;}
.xa2_c00198{left:303.333333pt;}
.x96_c00198{left:305.333333pt;}
.x9f_c00198{left:306.800000pt;}
.x7a_c00198{left:308.266667pt;}
.x4c_c00198{left:309.600000pt;}
.xa9_c00198{left:311.066667pt;}
.x58_c00198{left:312.800000pt;}
.x1f_c00198{left:316.400000pt;}
.x8_c00198{left:317.466667pt;}
.x3a_c00198{left:319.733333pt;}
.x95_c00198{left:324.133333pt;}
.x77_c00198{left:325.600000pt;}
.x7b_c00198{left:327.466667pt;}
.x81_c00198{left:328.400000pt;}
.x73_c00198{left:329.466667pt;}
.x8b_c00198{left:330.533333pt;}
.x9_c00198{left:331.866667pt;}
.x20_c00198{left:334.666667pt;}
.x11_c00198{left:339.466667pt;}
.x31_c00198{left:340.400000pt;}
.xaa_c00198{left:341.466667pt;}
.x5b_c00198{left:342.400000pt;}
.x17_c00198{left:344.266667pt;}
.x59_c00198{left:345.733333pt;}
.x3b_c00198{left:348.800000pt;}
.x4d_c00198{left:351.866667pt;}
.x32_c00198{left:353.866667pt;}
.xa3_c00198{left:355.066667pt;}
.x47_c00198{left:356.800000pt;}
.x21_c00198{left:357.733333pt;}
.xa0_c00198{left:359.600000pt;}
.x4e_c00198{left:361.200000pt;}
.x68_c00198{left:366.800000pt;}
.xd9_c00198{left:389.466667pt;}
.x102_c00198{left:390.400000pt;}
.x152_c00198{left:391.333333pt;}
.xb0_c00198{left:404.800000pt;}
.xf5_c00198{left:405.733333pt;}
.x134_c00198{left:406.666667pt;}
.x141_c00198{left:411.066667pt;}
.x13b_c00198{left:414.133333pt;}
.x126_c00198{left:415.466667pt;}
.x12f_c00198{left:419.600000pt;}
.x107_c00198{left:422.133333pt;}
.xd0_c00198{left:423.866667pt;}
.xfa_c00198{left:425.066667pt;}
.x103_c00198{left:427.200000pt;}
.x137_c00198{left:428.400000pt;}
.x13a_c00198{left:429.333333pt;}
.xc6_c00198{left:430.533333pt;}
.x13c_c00198{left:432.666667pt;}
.x127_c00198{left:434.933333pt;}
.xd1_c00198{left:438.266667pt;}
.xbf_c00198{left:439.200000pt;}
.x10c_c00198{left:440.133333pt;}
.xea_c00198{left:441.866667pt;}
.xef_c00198{left:443.333333pt;}
.xb8_c00198{left:444.533333pt;}
.xb1_c00198{left:446.666667pt;}
.xcb_c00198{left:447.733333pt;}
.x147_c00198{left:449.333333pt;}
.xf0_c00198{left:451.066667pt;}
.x121_c00198{left:452.133333pt;}
.xfe_c00198{left:453.200000pt;}
.xe6_c00198{left:454.133333pt;}
.xc0_c00198{left:455.466667pt;}
.x104_c00198{left:458.533333pt;}
.x118_c00198{left:459.600000pt;}
.x12d_c00198{left:460.933333pt;}
.xdf_c00198{left:462.800000pt;}
.xb9_c00198{left:465.066667pt;}
.xb2_c00198{left:467.466667pt;}
.xda_c00198{left:470.400000pt;}
.x100_c00198{left:472.666667pt;}
.xe7_c00198{left:474.266667pt;}
.xc7_c00198{left:475.333333pt;}
.x12e_c00198{left:476.933333pt;}
.x108_c00198{left:481.333333pt;}
.xd2_c00198{left:483.066667pt;}
.x149_c00198{left:484.266667pt;}
.x14c_c00198{left:486.133333pt;}
.xba_c00198{left:487.733333pt;}
.xb3_c00198{left:489.200000pt;}
.x142_c00198{left:490.933333pt;}
.xff_c00198{left:491.866667pt;}
.xdb_c00198{left:492.800000pt;}
.xcc_c00198{left:494.400000pt;}
.x111_c00198{left:495.333333pt;}
.x122_c00198{left:496.933333pt;}
.xd3_c00198{left:498.133333pt;}
.x14a_c00198{left:501.200000pt;}
.x14d_c00198{left:502.133333pt;}
.x119_c00198{left:503.466667pt;}
.x109_c00198{left:504.400000pt;}
.x10d_c00198{left:505.466667pt;}
.xdc_c00198{left:508.800000pt;}
.xe0_c00198{left:511.066667pt;}
.x110_c00198{left:512.000000pt;}
.x105_c00198{left:512.933333pt;}
.xeb_c00198{left:515.466667pt;}
.x135_c00198{left:516.400000pt;}
.x10e_c00198{left:519.200000pt;}
.x148_c00198{left:520.933333pt;}
.xc1_c00198{left:522.400000pt;}
.x130_c00198{left:524.266667pt;}
.xbb_c00198{left:525.466667pt;}
.xd4_c00198{left:528.800000pt;}
.x101_c00198{left:530.000000pt;}
.x10a_c00198{left:531.600000pt;}
.x112_c00198{left:534.666667pt;}
.xfb_c00198{left:536.666667pt;}
.x10f_c00198{left:538.666667pt;}
.xe8_c00198{left:539.866667pt;}
.xcd_c00198{left:542.666667pt;}
.xdd_c00198{left:543.733333pt;}
.xec_c00198{left:546.800000pt;}
.xc8_c00198{left:548.266667pt;}
.x123_c00198{left:549.733333pt;}
.xf1_c00198{left:551.600000pt;}
.x128_c00198{left:552.666667pt;}
.x12c_c00198{left:554.000000pt;}
.x115_c00198{left:555.600000pt;}
.x14e_c00198{left:556.533333pt;}
.xe1_c00198{left:557.466667pt;}
.xd5_c00198{left:558.933333pt;}
.x11a_c00198{left:559.866667pt;}
.xc2_c00198{left:560.800000pt;}
.xb4_c00198{left:563.066667pt;}
.xf6_c00198{left:564.533333pt;}
.x13d_c00198{left:565.600000pt;}
.x132_c00198{left:567.066667pt;}
.xc3_c00198{left:569.733333pt;}
.x129_c00198{left:570.933333pt;}
.xf2_c00198{left:572.133333pt;}
.x13e_c00198{left:573.333333pt;}
.xe2_c00198{left:575.066667pt;}
.x143_c00198{left:576.133333pt;}
.xd6_c00198{left:577.466667pt;}
.xb5_c00198{left:579.066667pt;}
.x11b_c00198{left:580.666667pt;}
.x113_c00198{left:581.733333pt;}
.x11e_c00198{left:583.200000pt;}
.x138_c00198{left:584.533333pt;}
.xc4_c00198{left:586.000000pt;}
.xbc_c00198{left:587.600000pt;}
.x153_c00198{left:590.800000pt;}
.xd7_c00198{left:591.866667pt;}
.x11c_c00198{left:593.200000pt;}
.x136_c00198{left:594.133333pt;}
.xce_c00198{left:596.400000pt;}
.x131_c00198{left:599.600000pt;}
.xfc_c00198{left:600.933333pt;}
.xde_c00198{left:603.200000pt;}
.xb6_c00198{left:604.400000pt;}
.xf7_c00198{left:605.866667pt;}
.x14b_c00198{left:607.066667pt;}
.xc9_c00198{left:609.066667pt;}
.x10b_c00198{left:610.666667pt;}
.xe9_c00198{left:611.866667pt;}
.x116_c00198{left:613.866667pt;}
.xe3_c00198{left:615.066667pt;}
.xf3_c00198{left:616.000000pt;}
.x106_c00198{left:617.333333pt;}
.x12a_c00198{left:618.933333pt;}
.x144_c00198{left:620.000000pt;}
.xbd_c00198{left:620.933333pt;}
.xfd_c00198{left:624.666667pt;}
.xd8_c00198{left:625.733333pt;}
.xc5_c00198{left:628.533333pt;}
.xf8_c00198{left:629.866667pt;}
.x11f_c00198{left:634.133333pt;}
.xe4_c00198{left:635.600000pt;}
.x114_c00198{left:638.400000pt;}
.x13f_c00198{left:639.600000pt;}
.xf9_c00198{left:641.066667pt;}
.xed_c00198{left:644.400000pt;}
.xcf_c00198{left:645.333333pt;}
.x14f_c00198{left:647.333333pt;}
.x145_c00198{left:648.266667pt;}
.x12b_c00198{left:649.600000pt;}
.x124_c00198{left:650.933333pt;}
.x117_c00198{left:653.200000pt;}
.xb7_c00198{left:656.933333pt;}
.x139_c00198{left:658.400000pt;}
.x120_c00198{left:659.466667pt;}
.xbe_c00198{left:660.933333pt;}
.xf4_c00198{left:663.066667pt;}
.x2_c00198{left:664.000000pt;}
.xca_c00198{left:666.000000pt;}
.xe5_c00198{left:670.800000pt;}
.x133_c00198{left:672.533333pt;}
.xee_c00198{left:675.066667pt;}
.x125_c00198{left:676.266667pt;}
.x150_c00198{left:678.000000pt;}
.x11d_c00198{left:680.000000pt;}
.x151_c00198{left:683.066667pt;}
.x140_c00198{left:684.400000pt;}
.x146_c00198{left:685.733333pt;}
}





/* 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_c00199 {
    display:none;
  }
  .loading-indicator_c00199.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00199 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_c00199 { 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_c00199" -> "#page-container .classname_c00199")
 */
.pf_c00199 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00199 { /* 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_c00199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00199 { /* 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_c00199 { /* 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_c00199 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00199 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00199 {overflow:visible;}
  }
}
.c_c00199 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00199 { /* 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_c00199:after { /* webkit #35443 */
  content: '';
}
.t_c00199:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00199 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 */
}
.__c00199 { /* 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_c00199 { /* info for Javascript */
  display:none;
}
.l_c00199 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00199 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00199 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00199: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_c00199 {
    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_c00199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00199.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_c00199 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00199;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.000000;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;}
.m7e_c00199{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m70_c00199{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m71_c00199{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m73_c00199{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00199{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3_c00199{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.m23_c00199{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00199{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00199{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m111_c00199{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00199{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m67_c00199{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m74_c00199{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00199{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m112_c00199{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m59_c00199{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00199{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00199{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m88_c00199{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m104_c00199{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m33_c00199{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00199{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m72_c00199{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00199{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m101_c00199{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mad_c00199{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00199{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00199{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m108_c00199{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m119_c00199{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00199{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m86_c00199{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m36_c00199{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00199{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m61_c00199{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m44_c00199{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.me6_c00199{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00199{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00199{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00199{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m134_c00199{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00199{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00199{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00199{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m41_c00199{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m21_c00199{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00199{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m75_c00199{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m118_c00199{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00199{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00199{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00199{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m100_c00199{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m80_c00199{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00199{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m87_c00199{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mec_c00199{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00199{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00199{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m117_c00199{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00199{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m32_c00199{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mf_c00199{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9_c00199{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m96_c00199{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11_c00199{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00199{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m123_c00199{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m82_c00199{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00199{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m62_c00199{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md_c00199{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m68_c00199{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00199{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m78_c00199{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00199{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mff_c00199{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me7_c00199{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m42_c00199{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00199{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00199{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00199{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m50_c00199{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00199{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00199{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m107_c00199{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00199{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00199{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m85_c00199{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m51_c00199{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00199{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00199{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00199{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00199{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00199{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m54_c00199{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m116_c00199{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00199{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m17_c00199{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m53_c00199{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.md9_c00199{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me4_c00199{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md7_c00199{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00199{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m113_c00199{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00199{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00199{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m49_c00199{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mca_c00199{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m15_c00199{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me9_c00199{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m79_c00199{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m34_c00199{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00199{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m18_c00199{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00199{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m16_c00199{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m31_c00199{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00199{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m46_c00199{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00199{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m19_c00199{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m97_c00199{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m83_c00199{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m60_c00199{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m13_c00199{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m35_c00199{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m114_c00199{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m131_c00199{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5_c00199{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00199{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m56_c00199{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00199{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mef_c00199{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mba_c00199{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00199{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.meb_c00199{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m81_c00199{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00199{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m139_c00199{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00199{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m77_c00199{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mee_c00199{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m57_c00199{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m52_c00199{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00199{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00199{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00199{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00199{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00199{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00199{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m95_c00199{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m13d_c00199{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mda_c00199{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00199{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m48_c00199{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00199{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m137_c00199{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m47_c00199{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00199{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m37_c00199{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m29_c00199{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00199{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m94_c00199{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00199{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m109_c00199{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m129_c00199{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mde_c00199{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00199{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.me_c00199{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m25_c00199{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m13a_c00199{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00199{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m138_c00199{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00199{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md8_c00199{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m39_c00199{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00199{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00199{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m58_c00199{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me5_c00199{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m127_c00199{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00199{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m24_c00199{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00199{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00199{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00199{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00199{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m22_c00199{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00199{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mae_c00199{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00199{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m14_c00199{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00199{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00199{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00199{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m28_c00199{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m27_c00199{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00199{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00199{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.ma_c00199{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00199{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00199{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00199{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00199{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m135_c00199{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00199{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00199{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00199{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m76_c00199{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00199{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m38_c00199{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00199{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m45_c00199{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00199{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m43_c00199{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me2_c00199{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00199{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md3_c00199{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m91_c00199{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00199{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m93_c00199{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00199{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m84_c00199{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md2_c00199{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00199{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00199{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m121_c00199{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m124_c00199{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.maf_c00199{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m92_c00199{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m26_c00199{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m30_c00199{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.med_c00199{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m13c_c00199{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m20_c00199{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00199{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00199{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00199{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m89_c00199{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00199{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00199{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m40_c00199{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00199{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m98_c00199{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00199{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00199{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m12_c00199{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me1_c00199{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00199{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.maa_c00199{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00199{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);}
.md6_c00199{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00199{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m55_c00199{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00199{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me8_c00199{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m13f_c00199{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m106_c00199{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00199{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mce_c00199{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00199{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00199{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mea_c00199{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m64_c00199{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me3_c00199{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00199{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00199{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m125_c00199{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m115_c00199{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m128_c00199{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m142_c00199{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m90_c00199{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00199{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m99_c00199{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00199{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00199{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m63_c00199{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mac_c00199{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m141_c00199{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.md5_c00199{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00199{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00199{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m133_c00199{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00199{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m122_c00199{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00199{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.md4_c00199{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m103_c00199{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00199{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m69_c00199{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m126_c00199{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.me0_c00199{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m140_c00199{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00199{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00199{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00199{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m66_c00199{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00199{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00199{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00199{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m105_c00199{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m110_c00199{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m130_c00199{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mab_c00199{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m10_c00199{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.md0_c00199{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m65_c00199{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m132_c00199{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.m102_c00199{transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00199{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m143_c00199{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.md1_c00199{transform:matrix(0.396750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396750,0.000000,0.000000,0.250000,0,0);}
.m136_c00199{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m2_c00199{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m120_c00199{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls0_c00199{letter-spacing:0.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{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__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00199{word-spacing:-8.165680px;}
.ws6_c00199{word-spacing:-5.249089px;}
.ws2_c00199{word-spacing:-4.987730px;}
.ws0_c00199{word-spacing:-3.783784px;}
.ws4_c00199{word-spacing:-3.125000px;}
.wsa_c00199{word-spacing:0.000000px;}
.ws9_c00199{word-spacing:5.138335px;}
.ws8_c00199{word-spacing:10.158568px;}
.ws5_c00199{word-spacing:14.843750px;}
.ws7_c00199{word-spacing:24.627706px;}
.ws1_c00199{word-spacing:729.583333px;}
.fc0_c00199{color:transparent;}
.fs5_c00199{font-size:48.000000px;}
.fs4_c00199{font-size:54.000000px;}
.fs3_c00199{font-size:60.000000px;}
.fs2_c00199{font-size:66.000000px;}
.fs1_c00199{font-size:72.000000px;}
.fs0_c00199{font-size:84.000000px;}
.y0_c00199{bottom:0.000000px;}
.y77_c00199{bottom:138.300000px;}
.y76_c00199{bottom:169.200000px;}
.y37_c00199{bottom:185.850000px;}
.y75_c00199{bottom:186.300000px;}
.y36_c00199{bottom:200.550000px;}
.y74_c00199{bottom:200.700000px;}
.y35_c00199{bottom:214.500000px;}
.y73_c00199{bottom:214.800000px;}
.y34_c00199{bottom:228.900000px;}
.y72_c00199{bottom:229.200000px;}
.y33_c00199{bottom:243.300000px;}
.y71_c00199{bottom:243.600000px;}
.y70_c00199{bottom:258.000000px;}
.y6f_c00199{bottom:272.100000px;}
.y32_c00199{bottom:280.800000px;}
.y6e_c00199{bottom:286.800000px;}
.y31_c00199{bottom:298.500000px;}
.y6d_c00199{bottom:301.200000px;}
.y6c_c00199{bottom:315.600000px;}
.y30_c00199{bottom:316.500000px;}
.y6b_c00199{bottom:330.300000px;}
.y2f_c00199{bottom:334.200000px;}
.y6a_c00199{bottom:344.700000px;}
.y2e_c00199{bottom:352.500000px;}
.y69_c00199{bottom:359.100000px;}
.y68_c00199{bottom:373.500000px;}
.y2d_c00199{bottom:373.800000px;}
.y67_c00199{bottom:388.200000px;}
.y2c_c00199{bottom:392.100000px;}
.y66_c00199{bottom:402.600000px;}
.y2b_c00199{bottom:410.100000px;}
.y65_c00199{bottom:417.300000px;}
.y2a_c00199{bottom:432.450000px;}
.y64_c00199{bottom:435.600000px;}
.y63_c00199{bottom:450.300000px;}
.y29_c00199{bottom:450.450000px;}
.y62_c00199{bottom:464.700000px;}
.y28_c00199{bottom:464.850000px;}
.y27_c00199{bottom:468.450000px;}
.y61_c00199{bottom:479.100000px;}
.y26_c00199{bottom:486.450000px;}
.y60_c00199{bottom:493.200000px;}
.y25_c00199{bottom:504.450000px;}
.y5f_c00199{bottom:507.900000px;}
.y5e_c00199{bottom:522.300000px;}
.y24_c00199{bottom:522.450000px;}
.y5d_c00199{bottom:536.700000px;}
.y23_c00199{bottom:542.250000px;}
.y5c_c00199{bottom:551.100000px;}
.y22_c00199{bottom:556.950000px;}
.y5b_c00199{bottom:565.500000px;}
.y21_c00199{bottom:573.450000px;}
.y5a_c00199{bottom:579.900000px;}
.y20_c00199{bottom:591.900000px;}
.y59_c00199{bottom:594.000000px;}
.y58_c00199{bottom:608.700000px;}
.y1f_c00199{bottom:610.200000px;}
.y57_c00199{bottom:627.600000px;}
.y1e_c00199{bottom:631.950000px;}
.y56_c00199{bottom:642.300000px;}
.y1d_c00199{bottom:645.300000px;}
.y1c_c00199{bottom:650.400000px;}
.y55_c00199{bottom:656.700000px;}
.y1b_c00199{bottom:668.100000px;}
.y54_c00199{bottom:671.100000px;}
.y53_c00199{bottom:685.800000px;}
.y1a_c00199{bottom:689.700000px;}
.y52_c00199{bottom:700.200000px;}
.y19_c00199{bottom:711.300000px;}
.y51_c00199{bottom:714.600000px;}
.y50_c00199{bottom:728.700000px;}
.y18_c00199{bottom:733.800000px;}
.y4f_c00199{bottom:743.400000px;}
.y17_c00199{bottom:751.800000px;}
.y4e_c00199{bottom:757.800000px;}
.y16_c00199{bottom:769.800000px;}
.y4d_c00199{bottom:771.900000px;}
.y4c_c00199{bottom:786.600000px;}
.y15_c00199{bottom:787.800000px;}
.y4b_c00199{bottom:804.750000px;}
.y14_c00199{bottom:805.500000px;}
.y4a_c00199{bottom:819.450000px;}
.y13_c00199{bottom:823.200000px;}
.y49_c00199{bottom:834.150000px;}
.y12_c00199{bottom:841.500000px;}
.y48_c00199{bottom:848.550000px;}
.y11_c00199{bottom:859.200000px;}
.y47_c00199{bottom:862.950000px;}
.y10_c00199{bottom:876.900000px;}
.y46_c00199{bottom:877.350000px;}
.y45_c00199{bottom:891.450000px;}
.yf_c00199{bottom:894.900000px;}
.y44_c00199{bottom:906.150000px;}
.ye_c00199{bottom:912.600000px;}
.y43_c00199{bottom:920.550000px;}
.yd_c00199{bottom:930.600000px;}
.y42_c00199{bottom:934.650000px;}
.yc_c00199{bottom:948.600000px;}
.y41_c00199{bottom:949.350000px;}
.y40_c00199{bottom:963.750000px;}
.yb_c00199{bottom:966.300000px;}
.y3f_c00199{bottom:978.150000px;}
.ya_c00199{bottom:985.650000px;}
.y3e_c00199{bottom:992.550000px;}
.y9_c00199{bottom:1000.800000px;}
.y3d_c00199{bottom:1007.250000px;}
.y8_c00199{bottom:1020.000000px;}
.y3c_c00199{bottom:1020.900000px;}
.y3b_c00199{bottom:1035.300000px;}
.y7_c00199{bottom:1039.500000px;}
.y6_c00199{bottom:1057.200000px;}
.y3a_c00199{bottom:1068.450000px;}
.y5_c00199{bottom:1074.900000px;}
.y39_c00199{bottom:1091.100000px;}
.y4_c00199{bottom:1096.950000px;}
.y3_c00199{bottom:1115.250000px;}
.y38_c00199{bottom:1116.750000px;}
.y1_c00199{bottom:1135.800000px;}
.y2_c00199{bottom:1143.000000px;}
.h7_c00199{height:48.000000px;}
.h6_c00199{height:54.000000px;}
.h5_c00199{height:60.000000px;}
.h4_c00199{height:66.000000px;}
.h3_c00199{height:72.000000px;}
.h2_c00199{height:84.000000px;}
.h1_c00199{height:1275.750000px;}
.h0_c00199{height:1275.839997px;}
.w1_c00199{width:963.000000px;}
.w0_c00199{width:963.359985px;}
.x0_c00199{left:0.000000px;}
.x11_c00199{left:180.750000px;}
.x1_c00199{left:181.800000px;}
.x2f_c00199{left:182.850000px;}
.x68_c00199{left:183.900000px;}
.x79_c00199{left:185.100000px;}
.x93_c00199{left:186.150000px;}
.xa1_c00199{left:187.350000px;}
.x7b_c00199{left:188.400000px;}
.xa6_c00199{left:194.400000px;}
.x2e_c00199{left:196.050000px;}
.xb_c00199{left:199.050000px;}
.x33_c00199{left:200.700000px;}
.x5a_c00199{left:202.650000px;}
.x2_c00199{left:204.450000px;}
.x89_c00199{left:212.400000px;}
.x27_c00199{left:213.600000px;}
.x73_c00199{left:214.800000px;}
.x5_c00199{left:217.050000px;}
.x18_c00199{left:219.000000px;}
.xc_c00199{left:220.650000px;}
.x6c_c00199{left:221.700000px;}
.x12_c00199{left:222.900000px;}
.x48_c00199{left:225.300000px;}
.x97_c00199{left:226.950000px;}
.x74_c00199{left:229.200000px;}
.x38_c00199{left:230.250000px;}
.x28_c00199{left:232.350000px;}
.x84_c00199{left:233.700000px;}
.x1f_c00199{left:237.150000px;}
.x4e_c00199{left:239.100000px;}
.x29_c00199{left:240.450000px;}
.xa0_c00199{left:242.550000px;}
.x69_c00199{left:244.350000px;}
.x94_c00199{left:245.550000px;}
.x49_c00199{left:246.900000px;}
.x3e_c00199{left:248.400000px;}
.x86_c00199{left:250.200000px;}
.x5e_c00199{left:252.300000px;}
.xa2_c00199{left:254.700000px;}
.x20_c00199{left:256.200000px;}
.x6_c00199{left:258.450000px;}
.x7c_c00199{left:261.150000px;}
.x19_c00199{left:263.250000px;}
.x4a_c00199{left:268.200000px;}
.xd_c00199{left:269.550000px;}
.x30_c00199{left:271.350000px;}
.x5b_c00199{left:273.150000px;}
.x9a_c00199{left:274.950000px;}
.x8c_c00199{left:276.150000px;}
.xa7_c00199{left:278.700000px;}
.x39_c00199{left:280.950000px;}
.x52_c00199{left:283.350000px;}
.x13_c00199{left:286.200000px;}
.x8a_c00199{left:288.750000px;}
.x75_c00199{left:290.100000px;}
.x45_c00199{left:291.300000px;}
.x55_c00199{left:292.500000px;}
.x7a_c00199{left:294.600000px;}
.x4f_c00199{left:295.950000px;}
.x87_c00199{left:298.800000px;}
.x5f_c00199{left:299.850000px;}
.x92_c00199{left:301.950000px;}
.x1a_c00199{left:303.150000px;}
.x53_c00199{left:304.200000px;}
.x7e_c00199{left:305.700000px;}
.x8b_c00199{left:308.250000px;}
.x56_c00199{left:309.750000px;}
.x77_c00199{left:311.250000px;}
.x46_c00199{left:313.650000px;}
.xe_c00199{left:314.850000px;}
.x31_c00199{left:316.050000px;}
.x7_c00199{left:317.100000px;}
.x6d_c00199{left:319.950000px;}
.x2a_c00199{left:321.750000px;}
.x3f_c00199{left:324.750000px;}
.x62_c00199{left:326.250000px;}
.x88_c00199{left:327.600000px;}
.x50_c00199{left:329.400000px;}
.x9e_c00199{left:330.750000px;}
.x14_c00199{left:333.300000px;}
.x64_c00199{left:335.100000px;}
.xa3_c00199{left:338.100000px;}
.x5c_c00199{left:340.050000px;}
.x4b_c00199{left:341.250000px;}
.x21_c00199{left:343.350000px;}
.xf_c00199{left:344.400000px;}
.x8d_c00199{left:345.600000px;}
.x40_c00199{left:347.100000px;}
.x34_c00199{left:351.600000px;}
.x57_c00199{left:353.250000px;}
.x66_c00199{left:354.600000px;}
.x6e_c00199{left:357.450000px;}
.x22_c00199{left:358.500000px;}
.x8_c00199{left:360.300000px;}
.x8e_c00199{left:361.500000px;}
.x95_c00199{left:363.000000px;}
.x10_c00199{left:365.250000px;}
.x15_c00199{left:366.450000px;}
.x76_c00199{left:367.500000px;}
.x78_c00199{left:371.100000px;}
.x23_c00199{left:375.750000px;}
.x4c_c00199{left:378.000000px;}
.x60_c00199{left:381.600000px;}
.x1b_c00199{left:382.650000px;}
.x82_c00199{left:384.300000px;}
.x41_c00199{left:385.950000px;}
.x58_c00199{left:389.550000px;}
.x9b_c00199{left:390.900000px;}
.x8f_c00199{left:392.400000px;}
.x7d_c00199{left:394.350000px;}
.x2b_c00199{left:395.550000px;}
.x54_c00199{left:397.500000px;}
.x6a_c00199{left:398.700000px;}
.x83_c00199{left:400.500000px;}
.x35_c00199{left:402.300000px;}
.x7f_c00199{left:408.750000px;}
.x2c_c00199{left:409.950000px;}
.x3a_c00199{left:413.700000px;}
.x9d_c00199{left:415.800000px;}
.x90_c00199{left:417.600000px;}
.x9_c00199{left:420.000000px;}
.x4d_c00199{left:421.950000px;}
.x67_c00199{left:423.750000px;}
.x59_c00199{left:424.800000px;}
.x42_c00199{left:427.350000px;}
.x3_c00199{left:428.700000px;}
.x98_c00199{left:429.900000px;}
.x6f_c00199{left:431.250000px;}
.x24_c00199{left:433.350000px;}
.xa4_c00199{left:434.850000px;}
.x2d_c00199{left:436.200000px;}
.x96_c00199{left:438.900000px;}
.x1c_c00199{left:441.300000px;}
.x43_c00199{left:443.250000px;}
.x3b_c00199{left:444.300000px;}
.x85_c00199{left:445.350000px;}
.x25_c00199{left:446.700000px;}
.x5d_c00199{left:448.800000px;}
.x6b_c00199{left:451.950000px;}
.x16_c00199{left:453.150000px;}
.x71_c00199{left:454.950000px;}
.x1d_c00199{left:459.600000px;}
.x61_c00199{left:462.900000px;}
.x63_c00199{left:463.950000px;}
.xa_c00199{left:465.750000px;}
.x36_c00199{left:470.400000px;}
.x65_c00199{left:471.750000px;}
.x80_c00199{left:472.800000px;}
.xa8_c00199{left:474.000000px;}
.x3c_c00199{left:477.000000px;}
.x70_c00199{left:479.850000px;}
.x44_c00199{left:481.350000px;}
.x9c_c00199{left:482.400000px;}
.x17_c00199{left:484.050000px;}
.x26_c00199{left:486.000000px;}
.x9f_c00199{left:490.950000px;}
.x37_c00199{left:492.000000px;}
.x47_c00199{left:493.500000px;}
.x72_c00199{left:494.550000px;}
.x1e_c00199{left:496.350000px;}
.x99_c00199{left:501.450000px;}
.x3d_c00199{left:503.250000px;}
.x51_c00199{left:504.300000px;}
.x81_c00199{left:506.700000px;}
.x32_c00199{left:508.800000px;}
.xa5_c00199{left:513.300000px;}
.x91_c00199{left:518.700000px;}
.xef_c00199{left:535.950000px;}
.xab_c00199{left:538.950000px;}
.xf5_c00199{left:540.450000px;}
.x117_c00199{left:541.500000px;}
.x14b_c00199{left:542.550000px;}
.xe1_c00199{left:547.950000px;}
.xfa_c00199{left:555.150000px;}
.x112_c00199{left:556.950000px;}
.x148_c00199{left:558.000000px;}
.x147_c00199{left:559.500000px;}
.x153_c00199{left:560.700000px;}
.xbc_c00199{left:562.200000px;}
.x158_c00199{left:564.150000px;}
.x13b_c00199{left:565.500000px;}
.xe8_c00199{left:567.600000px;}
.xfb_c00199{left:569.250000px;}
.x125_c00199{left:570.600000px;}
.x134_c00199{left:571.800000px;}
.xc6_c00199{left:573.000000px;}
.x113_c00199{left:574.650000px;}
.xb0_c00199{left:576.300000px;}
.x15b_c00199{left:577.650000px;}
.xd8_c00199{left:579.150000px;}
.x109_c00199{left:581.250000px;}
.xf6_c00199{left:582.600000px;}
.x12a_c00199{left:584.100000px;}
.xcf_c00199{left:586.650000px;}
.x11f_c00199{left:587.700000px;}
.x138_c00199{left:589.650000px;}
.x13a_c00199{left:590.850000px;}
.x161_c00199{left:592.350000px;}
.x12c_c00199{left:593.550000px;}
.xb4_c00199{left:595.050000px;}
.x114_c00199{left:597.000000px;}
.xbd_c00199{left:598.950000px;}
.x141_c00199{left:600.450000px;}
.xd9_c00199{left:602.250000px;}
.x118_c00199{left:603.750000px;}
.xd0_c00199{left:605.400000px;}
.xbe_c00199{left:607.200000px;}
.x13c_c00199{left:608.400000px;}
.x15f_c00199{left:610.050000px;}
.x14c_c00199{left:611.250000px;}
.xe9_c00199{left:612.300000px;}
.xb5_c00199{left:614.550000px;}
.xc7_c00199{left:617.700000px;}
.x14f_c00199{left:621.900000px;}
.x11d_c00199{left:623.250000px;}
.xe2_c00199{left:624.300000px;}
.x159_c00199{left:625.500000px;}
.x135_c00199{left:626.850000px;}
.x156_c00199{left:628.050000px;}
.xd1_c00199{left:629.100000px;}
.xbf_c00199{left:633.900000px;}
.x100_c00199{left:635.400000px;}
.x14d_c00199{left:636.750000px;}
.x120_c00199{left:638.100000px;}
.xb1_c00199{left:639.600000px;}
.x149_c00199{left:641.550000px;}
.xea_c00199{left:642.900000px;}
.xda_c00199{left:645.450000px;}
.xa9_c00199{left:646.500000px;}
.xac_c00199{left:649.050000px;}
.xb6_c00199{left:651.300000px;}
.xc0_c00199{left:652.650000px;}
.x101_c00199{left:653.700000px;}
.xf7_c00199{left:655.350000px;}
.x13d_c00199{left:656.550000px;}
.x144_c00199{left:657.750000px;}
.xad_c00199{left:659.850000px;}
.xfc_c00199{left:661.350000px;}
.xec_c00199{left:665.400000px;}
.x110_c00199{left:667.650000px;}
.xc8_c00199{left:669.900000px;}
.x139_c00199{left:672.450000px;}
.x119_c00199{left:674.250000px;}
.x13e_c00199{left:675.600000px;}
.x11e_c00199{left:677.550000px;}
.xdb_c00199{left:679.950000px;}
.xb2_c00199{left:682.050000px;}
.x4_c00199{left:684.300000px;}
.xd2_c00199{left:685.950000px;}
.x15d_c00199{left:687.450000px;}
.x142_c00199{left:688.950000px;}
.x154_c00199{left:690.750000px;}
.x10a_c00199{left:691.800000px;}
.xc1_c00199{left:693.750000px;}
.xe3_c00199{left:696.600000px;}
.xdc_c00199{left:697.950000px;}
.xf0_c00199{left:699.900000px;}
.xd3_c00199{left:701.850000px;}
.xc9_c00199{left:703.350000px;}
.x131_c00199{left:704.550000px;}
.xaa_c00199{left:706.650000px;}
.x126_c00199{left:708.450000px;}
.xb7_c00199{left:710.400000px;}
.xc2_c00199{left:711.750000px;}
.xf1_c00199{left:714.000000px;}
.x136_c00199{left:715.050000px;}
.xe4_c00199{left:716.700000px;}
.x107_c00199{left:717.900000px;}
.x12e_c00199{left:720.300000px;}
.xca_c00199{left:721.650000px;}
.x13f_c00199{left:722.700000px;}
.x10b_c00199{left:726.300000px;}
.x12d_c00199{left:727.350000px;}
.xae_c00199{left:728.550000px;}
.xb3_c00199{left:729.600000px;}
.xed_c00199{left:730.950000px;}
.x111_c00199{left:732.750000px;}
.x102_c00199{left:734.700000px;}
.xb8_c00199{left:737.400000px;}
.x14e_c00199{left:739.050000px;}
.x10c_c00199{left:741.750000px;}
.x15e_c00199{left:743.250000px;}
.xf2_c00199{left:744.900000px;}
.x121_c00199{left:747.150000px;}
.x115_c00199{left:748.950000px;}
.xdd_c00199{left:750.150000px;}
.x137_c00199{left:752.100000px;}
.xe5_c00199{left:753.450000px;}
.x14a_c00199{left:754.650000px;}
.xc3_c00199{left:756.000000px;}
.x143_c00199{left:757.200000px;}
.xd4_c00199{left:760.500000px;}
.x127_c00199{left:762.750000px;}
.x103_c00199{left:764.250000px;}
.xaf_c00199{left:767.100000px;}
.xb9_c00199{left:770.550000px;}
.xfd_c00199{left:772.650000px;}
.x146_c00199{left:775.050000px;}
.x122_c00199{left:776.250000px;}
.xde_c00199{left:777.900000px;}
.x104_c00199{left:780.150000px;}
.xcb_c00199{left:782.100000px;}
.xc4_c00199{left:784.800000px;}
.xf8_c00199{left:786.600000px;}
.x116_c00199{left:788.250000px;}
.x145_c00199{left:789.600000px;}
.x140_c00199{left:793.200000px;}
.x128_c00199{left:795.150000px;}
.x132_c00199{left:797.850000px;}
.x10d_c00199{left:799.350000px;}
.xfe_c00199{left:800.400000px;}
.xe6_c00199{left:802.350000px;}
.x123_c00199{left:803.550000px;}
.xcc_c00199{left:806.250000px;}
.xd5_c00199{left:807.300000px;}
.x10e_c00199{left:809.850000px;}
.x124_c00199{left:812.550000px;}
.xc5_c00199{left:813.600000px;}
.xdf_c00199{left:815.400000px;}
.xeb_c00199{left:816.750000px;}
.x155_c00199{left:819.600000px;}
.xba_c00199{left:820.650000px;}
.x11a_c00199{left:823.050000px;}
.xe7_c00199{left:824.250000px;}
.xcd_c00199{left:826.050000px;}
.x152_c00199{left:827.100000px;}
.x12f_c00199{left:828.300000px;}
.xd6_c00199{left:830.400000px;}
.xf3_c00199{left:833.100000px;}
.x105_c00199{left:836.250000px;}
.x15a_c00199{left:838.350000px;}
.x129_c00199{left:840.450000px;}
.x11b_c00199{left:841.800000px;}
.x157_c00199{left:842.850000px;}
.xee_c00199{left:844.050000px;}
.x130_c00199{left:845.250000px;}
.x151_c00199{left:846.300000px;}
.xd7_c00199{left:847.650000px;}
.x15c_c00199{left:849.600000px;}
.xf4_c00199{left:850.800000px;}
.xff_c00199{left:851.850000px;}
.x133_c00199{left:852.900000px;}
.x108_c00199{left:854.550000px;}
.x12b_c00199{left:855.750000px;}
.xe0_c00199{left:858.300000px;}
.x106_c00199{left:859.350000px;}
.x150_c00199{left:860.400000px;}
.xf9_c00199{left:862.950000px;}
.x10f_c00199{left:864.300000px;}
.x160_c00199{left:865.950000px;}
.xce_c00199{left:867.450000px;}
.xbb_c00199{left:871.800000px;}
.x11c_c00199{left:876.000000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws3_c00199{word-spacing:-7.258383pt;}
.ws6_c00199{word-spacing:-4.665857pt;}
.ws2_c00199{word-spacing:-4.433538pt;}
.ws0_c00199{word-spacing:-3.363363pt;}
.ws4_c00199{word-spacing:-2.777778pt;}
.wsa_c00199{word-spacing:0.000000pt;}
.ws9_c00199{word-spacing:4.567409pt;}
.ws8_c00199{word-spacing:9.029838pt;}
.ws5_c00199{word-spacing:13.194444pt;}
.ws7_c00199{word-spacing:21.891294pt;}
.ws1_c00199{word-spacing:648.518519pt;}
.fs5_c00199{font-size:42.666667pt;}
.fs4_c00199{font-size:48.000000pt;}
.fs3_c00199{font-size:53.333333pt;}
.fs2_c00199{font-size:58.666667pt;}
.fs1_c00199{font-size:64.000000pt;}
.fs0_c00199{font-size:74.666667pt;}
.y0_c00199{bottom:0.000000pt;}
.y77_c00199{bottom:122.933333pt;}
.y76_c00199{bottom:150.400000pt;}
.y37_c00199{bottom:165.200000pt;}
.y75_c00199{bottom:165.600000pt;}
.y36_c00199{bottom:178.266667pt;}
.y74_c00199{bottom:178.400000pt;}
.y35_c00199{bottom:190.666667pt;}
.y73_c00199{bottom:190.933333pt;}
.y34_c00199{bottom:203.466667pt;}
.y72_c00199{bottom:203.733333pt;}
.y33_c00199{bottom:216.266667pt;}
.y71_c00199{bottom:216.533333pt;}
.y70_c00199{bottom:229.333333pt;}
.y6f_c00199{bottom:241.866667pt;}
.y32_c00199{bottom:249.600000pt;}
.y6e_c00199{bottom:254.933333pt;}
.y31_c00199{bottom:265.333333pt;}
.y6d_c00199{bottom:267.733333pt;}
.y6c_c00199{bottom:280.533333pt;}
.y30_c00199{bottom:281.333333pt;}
.y6b_c00199{bottom:293.600000pt;}
.y2f_c00199{bottom:297.066667pt;}
.y6a_c00199{bottom:306.400000pt;}
.y2e_c00199{bottom:313.333333pt;}
.y69_c00199{bottom:319.200000pt;}
.y68_c00199{bottom:332.000000pt;}
.y2d_c00199{bottom:332.266667pt;}
.y67_c00199{bottom:345.066667pt;}
.y2c_c00199{bottom:348.533333pt;}
.y66_c00199{bottom:357.866667pt;}
.y2b_c00199{bottom:364.533333pt;}
.y65_c00199{bottom:370.933333pt;}
.y2a_c00199{bottom:384.400000pt;}
.y64_c00199{bottom:387.200000pt;}
.y63_c00199{bottom:400.266667pt;}
.y29_c00199{bottom:400.400000pt;}
.y62_c00199{bottom:413.066667pt;}
.y28_c00199{bottom:413.200000pt;}
.y27_c00199{bottom:416.400000pt;}
.y61_c00199{bottom:425.866667pt;}
.y26_c00199{bottom:432.400000pt;}
.y60_c00199{bottom:438.400000pt;}
.y25_c00199{bottom:448.400000pt;}
.y5f_c00199{bottom:451.466667pt;}
.y5e_c00199{bottom:464.266667pt;}
.y24_c00199{bottom:464.400000pt;}
.y5d_c00199{bottom:477.066667pt;}
.y23_c00199{bottom:482.000000pt;}
.y5c_c00199{bottom:489.866667pt;}
.y22_c00199{bottom:495.066667pt;}
.y5b_c00199{bottom:502.666667pt;}
.y21_c00199{bottom:509.733333pt;}
.y5a_c00199{bottom:515.466667pt;}
.y20_c00199{bottom:526.133333pt;}
.y59_c00199{bottom:528.000000pt;}
.y58_c00199{bottom:541.066667pt;}
.y1f_c00199{bottom:542.400000pt;}
.y57_c00199{bottom:557.866667pt;}
.y1e_c00199{bottom:561.733333pt;}
.y56_c00199{bottom:570.933333pt;}
.y1d_c00199{bottom:573.600000pt;}
.y1c_c00199{bottom:578.133333pt;}
.y55_c00199{bottom:583.733333pt;}
.y1b_c00199{bottom:593.866667pt;}
.y54_c00199{bottom:596.533333pt;}
.y53_c00199{bottom:609.600000pt;}
.y1a_c00199{bottom:613.066667pt;}
.y52_c00199{bottom:622.400000pt;}
.y19_c00199{bottom:632.266667pt;}
.y51_c00199{bottom:635.200000pt;}
.y50_c00199{bottom:647.733333pt;}
.y18_c00199{bottom:652.266667pt;}
.y4f_c00199{bottom:660.800000pt;}
.y17_c00199{bottom:668.266667pt;}
.y4e_c00199{bottom:673.600000pt;}
.y16_c00199{bottom:684.266667pt;}
.y4d_c00199{bottom:686.133333pt;}
.y4c_c00199{bottom:699.200000pt;}
.y15_c00199{bottom:700.266667pt;}
.y4b_c00199{bottom:715.333333pt;}
.y14_c00199{bottom:716.000000pt;}
.y4a_c00199{bottom:728.400000pt;}
.y13_c00199{bottom:731.733333pt;}
.y49_c00199{bottom:741.466667pt;}
.y12_c00199{bottom:748.000000pt;}
.y48_c00199{bottom:754.266667pt;}
.y11_c00199{bottom:763.733333pt;}
.y47_c00199{bottom:767.066667pt;}
.y10_c00199{bottom:779.466667pt;}
.y46_c00199{bottom:779.866667pt;}
.y45_c00199{bottom:792.400000pt;}
.yf_c00199{bottom:795.466667pt;}
.y44_c00199{bottom:805.466667pt;}
.ye_c00199{bottom:811.200000pt;}
.y43_c00199{bottom:818.266667pt;}
.yd_c00199{bottom:827.200000pt;}
.y42_c00199{bottom:830.800000pt;}
.yc_c00199{bottom:843.200000pt;}
.y41_c00199{bottom:843.866667pt;}
.y40_c00199{bottom:856.666667pt;}
.yb_c00199{bottom:858.933333pt;}
.y3f_c00199{bottom:869.466667pt;}
.ya_c00199{bottom:876.133333pt;}
.y3e_c00199{bottom:882.266667pt;}
.y9_c00199{bottom:889.600000pt;}
.y3d_c00199{bottom:895.333333pt;}
.y8_c00199{bottom:906.666667pt;}
.y3c_c00199{bottom:907.466667pt;}
.y3b_c00199{bottom:920.266667pt;}
.y7_c00199{bottom:924.000000pt;}
.y6_c00199{bottom:939.733333pt;}
.y3a_c00199{bottom:949.733333pt;}
.y5_c00199{bottom:955.466667pt;}
.y39_c00199{bottom:969.866667pt;}
.y4_c00199{bottom:975.066667pt;}
.y3_c00199{bottom:991.333333pt;}
.y38_c00199{bottom:992.666667pt;}
.y1_c00199{bottom:1009.600000pt;}
.y2_c00199{bottom:1016.000000pt;}
.h7_c00199{height:42.666667pt;}
.h6_c00199{height:48.000000pt;}
.h5_c00199{height:53.333333pt;}
.h4_c00199{height:58.666667pt;}
.h3_c00199{height:64.000000pt;}
.h2_c00199{height:74.666667pt;}
.h1_c00199{height:1134.000000pt;}
.h0_c00199{height:1134.079997pt;}
.w1_c00199{width:856.000000pt;}
.w0_c00199{width:856.319987pt;}
.x0_c00199{left:0.000000pt;}
.x11_c00199{left:160.666667pt;}
.x1_c00199{left:161.600000pt;}
.x2f_c00199{left:162.533333pt;}
.x68_c00199{left:163.466667pt;}
.x79_c00199{left:164.533333pt;}
.x93_c00199{left:165.466667pt;}
.xa1_c00199{left:166.533333pt;}
.x7b_c00199{left:167.466667pt;}
.xa6_c00199{left:172.800000pt;}
.x2e_c00199{left:174.266667pt;}
.xb_c00199{left:176.933333pt;}
.x33_c00199{left:178.400000pt;}
.x5a_c00199{left:180.133333pt;}
.x2_c00199{left:181.733333pt;}
.x89_c00199{left:188.800000pt;}
.x27_c00199{left:189.866667pt;}
.x73_c00199{left:190.933333pt;}
.x5_c00199{left:192.933333pt;}
.x18_c00199{left:194.666667pt;}
.xc_c00199{left:196.133333pt;}
.x6c_c00199{left:197.066667pt;}
.x12_c00199{left:198.133333pt;}
.x48_c00199{left:200.266667pt;}
.x97_c00199{left:201.733333pt;}
.x74_c00199{left:203.733333pt;}
.x38_c00199{left:204.666667pt;}
.x28_c00199{left:206.533333pt;}
.x84_c00199{left:207.733333pt;}
.x1f_c00199{left:210.800000pt;}
.x4e_c00199{left:212.533333pt;}
.x29_c00199{left:213.733333pt;}
.xa0_c00199{left:215.600000pt;}
.x69_c00199{left:217.200000pt;}
.x94_c00199{left:218.266667pt;}
.x49_c00199{left:219.466667pt;}
.x3e_c00199{left:220.800000pt;}
.x86_c00199{left:222.400000pt;}
.x5e_c00199{left:224.266667pt;}
.xa2_c00199{left:226.400000pt;}
.x20_c00199{left:227.733333pt;}
.x6_c00199{left:229.733333pt;}
.x7c_c00199{left:232.133333pt;}
.x19_c00199{left:234.000000pt;}
.x4a_c00199{left:238.400000pt;}
.xd_c00199{left:239.600000pt;}
.x30_c00199{left:241.200000pt;}
.x5b_c00199{left:242.800000pt;}
.x9a_c00199{left:244.400000pt;}
.x8c_c00199{left:245.466667pt;}
.xa7_c00199{left:247.733333pt;}
.x39_c00199{left:249.733333pt;}
.x52_c00199{left:251.866667pt;}
.x13_c00199{left:254.400000pt;}
.x8a_c00199{left:256.666667pt;}
.x75_c00199{left:257.866667pt;}
.x45_c00199{left:258.933333pt;}
.x55_c00199{left:260.000000pt;}
.x7a_c00199{left:261.866667pt;}
.x4f_c00199{left:263.066667pt;}
.x87_c00199{left:265.600000pt;}
.x5f_c00199{left:266.533333pt;}
.x92_c00199{left:268.400000pt;}
.x1a_c00199{left:269.466667pt;}
.x53_c00199{left:270.400000pt;}
.x7e_c00199{left:271.733333pt;}
.x8b_c00199{left:274.000000pt;}
.x56_c00199{left:275.333333pt;}
.x77_c00199{left:276.666667pt;}
.x46_c00199{left:278.800000pt;}
.xe_c00199{left:279.866667pt;}
.x31_c00199{left:280.933333pt;}
.x7_c00199{left:281.866667pt;}
.x6d_c00199{left:284.400000pt;}
.x2a_c00199{left:286.000000pt;}
.x3f_c00199{left:288.666667pt;}
.x62_c00199{left:290.000000pt;}
.x88_c00199{left:291.200000pt;}
.x50_c00199{left:292.800000pt;}
.x9e_c00199{left:294.000000pt;}
.x14_c00199{left:296.266667pt;}
.x64_c00199{left:297.866667pt;}
.xa3_c00199{left:300.533333pt;}
.x5c_c00199{left:302.266667pt;}
.x4b_c00199{left:303.333333pt;}
.x21_c00199{left:305.200000pt;}
.xf_c00199{left:306.133333pt;}
.x8d_c00199{left:307.200000pt;}
.x40_c00199{left:308.533333pt;}
.x34_c00199{left:312.533333pt;}
.x57_c00199{left:314.000000pt;}
.x66_c00199{left:315.200000pt;}
.x6e_c00199{left:317.733333pt;}
.x22_c00199{left:318.666667pt;}
.x8_c00199{left:320.266667pt;}
.x8e_c00199{left:321.333333pt;}
.x95_c00199{left:322.666667pt;}
.x10_c00199{left:324.666667pt;}
.x15_c00199{left:325.733333pt;}
.x76_c00199{left:326.666667pt;}
.x78_c00199{left:329.866667pt;}
.x23_c00199{left:334.000000pt;}
.x4c_c00199{left:336.000000pt;}
.x60_c00199{left:339.200000pt;}
.x1b_c00199{left:340.133333pt;}
.x82_c00199{left:341.600000pt;}
.x41_c00199{left:343.066667pt;}
.x58_c00199{left:346.266667pt;}
.x9b_c00199{left:347.466667pt;}
.x8f_c00199{left:348.800000pt;}
.x7d_c00199{left:350.533333pt;}
.x2b_c00199{left:351.600000pt;}
.x54_c00199{left:353.333333pt;}
.x6a_c00199{left:354.400000pt;}
.x83_c00199{left:356.000000pt;}
.x35_c00199{left:357.600000pt;}
.x7f_c00199{left:363.333333pt;}
.x2c_c00199{left:364.400000pt;}
.x3a_c00199{left:367.733333pt;}
.x9d_c00199{left:369.600000pt;}
.x90_c00199{left:371.200000pt;}
.x9_c00199{left:373.333333pt;}
.x4d_c00199{left:375.066667pt;}
.x67_c00199{left:376.666667pt;}
.x59_c00199{left:377.600000pt;}
.x42_c00199{left:379.866667pt;}
.x3_c00199{left:381.066667pt;}
.x98_c00199{left:382.133333pt;}
.x6f_c00199{left:383.333333pt;}
.x24_c00199{left:385.200000pt;}
.xa4_c00199{left:386.533333pt;}
.x2d_c00199{left:387.733333pt;}
.x96_c00199{left:390.133333pt;}
.x1c_c00199{left:392.266667pt;}
.x43_c00199{left:394.000000pt;}
.x3b_c00199{left:394.933333pt;}
.x85_c00199{left:395.866667pt;}
.x25_c00199{left:397.066667pt;}
.x5d_c00199{left:398.933333pt;}
.x6b_c00199{left:401.733333pt;}
.x16_c00199{left:402.800000pt;}
.x71_c00199{left:404.400000pt;}
.x1d_c00199{left:408.533333pt;}
.x61_c00199{left:411.466667pt;}
.x63_c00199{left:412.400000pt;}
.xa_c00199{left:414.000000pt;}
.x36_c00199{left:418.133333pt;}
.x65_c00199{left:419.333333pt;}
.x80_c00199{left:420.266667pt;}
.xa8_c00199{left:421.333333pt;}
.x3c_c00199{left:424.000000pt;}
.x70_c00199{left:426.533333pt;}
.x44_c00199{left:427.866667pt;}
.x9c_c00199{left:428.800000pt;}
.x17_c00199{left:430.266667pt;}
.x26_c00199{left:432.000000pt;}
.x9f_c00199{left:436.400000pt;}
.x37_c00199{left:437.333333pt;}
.x47_c00199{left:438.666667pt;}
.x72_c00199{left:439.600000pt;}
.x1e_c00199{left:441.200000pt;}
.x99_c00199{left:445.733333pt;}
.x3d_c00199{left:447.333333pt;}
.x51_c00199{left:448.266667pt;}
.x81_c00199{left:450.400000pt;}
.x32_c00199{left:452.266667pt;}
.xa5_c00199{left:456.266667pt;}
.x91_c00199{left:461.066667pt;}
.xef_c00199{left:476.400000pt;}
.xab_c00199{left:479.066667pt;}
.xf5_c00199{left:480.400000pt;}
.x117_c00199{left:481.333333pt;}
.x14b_c00199{left:482.266667pt;}
.xe1_c00199{left:487.066667pt;}
.xfa_c00199{left:493.466667pt;}
.x112_c00199{left:495.066667pt;}
.x148_c00199{left:496.000000pt;}
.x147_c00199{left:497.333333pt;}
.x153_c00199{left:498.400000pt;}
.xbc_c00199{left:499.733333pt;}
.x158_c00199{left:501.466667pt;}
.x13b_c00199{left:502.666667pt;}
.xe8_c00199{left:504.533333pt;}
.xfb_c00199{left:506.000000pt;}
.x125_c00199{left:507.200000pt;}
.x134_c00199{left:508.266667pt;}
.xc6_c00199{left:509.333333pt;}
.x113_c00199{left:510.800000pt;}
.xb0_c00199{left:512.266667pt;}
.x15b_c00199{left:513.466667pt;}
.xd8_c00199{left:514.800000pt;}
.x109_c00199{left:516.666667pt;}
.xf6_c00199{left:517.866667pt;}
.x12a_c00199{left:519.200000pt;}
.xcf_c00199{left:521.466667pt;}
.x11f_c00199{left:522.400000pt;}
.x138_c00199{left:524.133333pt;}
.x13a_c00199{left:525.200000pt;}
.x161_c00199{left:526.533333pt;}
.x12c_c00199{left:527.600000pt;}
.xb4_c00199{left:528.933333pt;}
.x114_c00199{left:530.666667pt;}
.xbd_c00199{left:532.400000pt;}
.x141_c00199{left:533.733333pt;}
.xd9_c00199{left:535.333333pt;}
.x118_c00199{left:536.666667pt;}
.xd0_c00199{left:538.133333pt;}
.xbe_c00199{left:539.733333pt;}
.x13c_c00199{left:540.800000pt;}
.x15f_c00199{left:542.266667pt;}
.x14c_c00199{left:543.333333pt;}
.xe9_c00199{left:544.266667pt;}
.xb5_c00199{left:546.266667pt;}
.xc7_c00199{left:549.066667pt;}
.x14f_c00199{left:552.800000pt;}
.x11d_c00199{left:554.000000pt;}
.xe2_c00199{left:554.933333pt;}
.x159_c00199{left:556.000000pt;}
.x135_c00199{left:557.200000pt;}
.x156_c00199{left:558.266667pt;}
.xd1_c00199{left:559.200000pt;}
.xbf_c00199{left:563.466667pt;}
.x100_c00199{left:564.800000pt;}
.x14d_c00199{left:566.000000pt;}
.x120_c00199{left:567.200000pt;}
.xb1_c00199{left:568.533333pt;}
.x149_c00199{left:570.266667pt;}
.xea_c00199{left:571.466667pt;}
.xda_c00199{left:573.733333pt;}
.xa9_c00199{left:574.666667pt;}
.xac_c00199{left:576.933333pt;}
.xb6_c00199{left:578.933333pt;}
.xc0_c00199{left:580.133333pt;}
.x101_c00199{left:581.066667pt;}
.xf7_c00199{left:582.533333pt;}
.x13d_c00199{left:583.600000pt;}
.x144_c00199{left:584.666667pt;}
.xad_c00199{left:586.533333pt;}
.xfc_c00199{left:587.866667pt;}
.xec_c00199{left:591.466667pt;}
.x110_c00199{left:593.466667pt;}
.xc8_c00199{left:595.466667pt;}
.x139_c00199{left:597.733333pt;}
.x119_c00199{left:599.333333pt;}
.x13e_c00199{left:600.533333pt;}
.x11e_c00199{left:602.266667pt;}
.xdb_c00199{left:604.400000pt;}
.xb2_c00199{left:606.266667pt;}
.x4_c00199{left:608.266667pt;}
.xd2_c00199{left:609.733333pt;}
.x15d_c00199{left:611.066667pt;}
.x142_c00199{left:612.400000pt;}
.x154_c00199{left:614.000000pt;}
.x10a_c00199{left:614.933333pt;}
.xc1_c00199{left:616.666667pt;}
.xe3_c00199{left:619.200000pt;}
.xdc_c00199{left:620.400000pt;}
.xf0_c00199{left:622.133333pt;}
.xd3_c00199{left:623.866667pt;}
.xc9_c00199{left:625.200000pt;}
.x131_c00199{left:626.266667pt;}
.xaa_c00199{left:628.133333pt;}
.x126_c00199{left:629.733333pt;}
.xb7_c00199{left:631.466667pt;}
.xc2_c00199{left:632.666667pt;}
.xf1_c00199{left:634.666667pt;}
.x136_c00199{left:635.600000pt;}
.xe4_c00199{left:637.066667pt;}
.x107_c00199{left:638.133333pt;}
.x12e_c00199{left:640.266667pt;}
.xca_c00199{left:641.466667pt;}
.x13f_c00199{left:642.400000pt;}
.x10b_c00199{left:645.600000pt;}
.x12d_c00199{left:646.533333pt;}
.xae_c00199{left:647.600000pt;}
.xb3_c00199{left:648.533333pt;}
.xed_c00199{left:649.733333pt;}
.x111_c00199{left:651.333333pt;}
.x102_c00199{left:653.066667pt;}
.xb8_c00199{left:655.466667pt;}
.x14e_c00199{left:656.933333pt;}
.x10c_c00199{left:659.333333pt;}
.x15e_c00199{left:660.666667pt;}
.xf2_c00199{left:662.133333pt;}
.x121_c00199{left:664.133333pt;}
.x115_c00199{left:665.733333pt;}
.xdd_c00199{left:666.800000pt;}
.x137_c00199{left:668.533333pt;}
.xe5_c00199{left:669.733333pt;}
.x14a_c00199{left:670.800000pt;}
.xc3_c00199{left:672.000000pt;}
.x143_c00199{left:673.066667pt;}
.xd4_c00199{left:676.000000pt;}
.x127_c00199{left:678.000000pt;}
.x103_c00199{left:679.333333pt;}
.xaf_c00199{left:681.866667pt;}
.xb9_c00199{left:684.933333pt;}
.xfd_c00199{left:686.800000pt;}
.x146_c00199{left:688.933333pt;}
.x122_c00199{left:690.000000pt;}
.xde_c00199{left:691.466667pt;}
.x104_c00199{left:693.466667pt;}
.xcb_c00199{left:695.200000pt;}
.xc4_c00199{left:697.600000pt;}
.xf8_c00199{left:699.200000pt;}
.x116_c00199{left:700.666667pt;}
.x145_c00199{left:701.866667pt;}
.x140_c00199{left:705.066667pt;}
.x128_c00199{left:706.800000pt;}
.x132_c00199{left:709.200000pt;}
.x10d_c00199{left:710.533333pt;}
.xfe_c00199{left:711.466667pt;}
.xe6_c00199{left:713.200000pt;}
.x123_c00199{left:714.266667pt;}
.xcc_c00199{left:716.666667pt;}
.xd5_c00199{left:717.600000pt;}
.x10e_c00199{left:719.866667pt;}
.x124_c00199{left:722.266667pt;}
.xc5_c00199{left:723.200000pt;}
.xdf_c00199{left:724.800000pt;}
.xeb_c00199{left:726.000000pt;}
.x155_c00199{left:728.533333pt;}
.xba_c00199{left:729.466667pt;}
.x11a_c00199{left:731.600000pt;}
.xe7_c00199{left:732.666667pt;}
.xcd_c00199{left:734.266667pt;}
.x152_c00199{left:735.200000pt;}
.x12f_c00199{left:736.266667pt;}
.xd6_c00199{left:738.133333pt;}
.xf3_c00199{left:740.533333pt;}
.x105_c00199{left:743.333333pt;}
.x15a_c00199{left:745.200000pt;}
.x129_c00199{left:747.066667pt;}
.x11b_c00199{left:748.266667pt;}
.x157_c00199{left:749.200000pt;}
.xee_c00199{left:750.266667pt;}
.x130_c00199{left:751.333333pt;}
.x151_c00199{left:752.266667pt;}
.xd7_c00199{left:753.466667pt;}
.x15c_c00199{left:755.200000pt;}
.xf4_c00199{left:756.266667pt;}
.xff_c00199{left:757.200000pt;}
.x133_c00199{left:758.133333pt;}
.x108_c00199{left:759.600000pt;}
.x12b_c00199{left:760.666667pt;}
.xe0_c00199{left:762.933333pt;}
.x106_c00199{left:763.866667pt;}
.x150_c00199{left:764.800000pt;}
.xf9_c00199{left:767.066667pt;}
.x10f_c00199{left:768.266667pt;}
.x160_c00199{left:769.733333pt;}
.xce_c00199{left:771.066667pt;}
.xbb_c00199{left:774.933333pt;}
.x11c_c00199{left:778.666667pt;}
}





/* 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_c00200 {
    display:none;
  }
  .loading-indicator_c00200.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00200 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_c00200 { 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_c00200" -> "#page-container .classname_c00200")
 */
.pf_c00200 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00200 { /* 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_c00200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00200 { /* 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_c00200 { /* 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_c00200 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00200 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00200 {overflow:visible;}
  }
}
.c_c00200 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00200 { /* 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_c00200:after { /* webkit #35443 */
  content: '';
}
.t_c00200:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00200 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 */
}
.__c00200 { /* 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_c00200 { /* info for Javascript */
  display:none;
}
.l_c00200 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00200 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00200 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00200: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_c00200 {
    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_c00200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00200.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_c00200 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00200;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.000000;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;}
.m140_c00200{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00200{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mec_c00200{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m109_c00200{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m106_c00200{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m12_c00200{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m131_c00200{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00200{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6_c00200{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m99_c00200{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma_c00200{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m138_c00200{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00200{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00200{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m84_c00200{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m134_c00200{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00200{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m45_c00200{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00200{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.mac_c00200{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m103_c00200{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m125_c00200{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00200{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00200{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.md8_c00200{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00200{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00200{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m33_c00200{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00200{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.me4_c00200{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m104_c00200{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00200{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m135_c00200{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m78_c00200{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m24_c00200{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00200{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m85_c00200{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m94_c00200{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00200{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m32_c00200{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00200{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00200{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m102_c00200{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m40_c00200{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00200{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m90_c00200{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00200{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m7_c00200{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m53_c00200{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00200{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00200{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m57_c00200{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m71_c00200{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00200{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m88_c00200{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m111_c00200{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00200{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00200{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00200{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m66_c00200{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00200{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m133_c00200{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00200{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m77_c00200{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m75_c00200{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m47_c00200{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mef_c00200{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m72_c00200{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00200{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mff_c00200{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m31_c00200{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00200{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m46_c00200{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m50_c00200{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m51_c00200{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00200{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00200{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00200{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00200{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m132_c00200{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m22_c00200{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00200{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md0_c00200{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00200{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00200{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m70_c00200{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m13b_c00200{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.md7_c00200{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m89_c00200{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m28_c00200{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m11_c00200{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00200{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00200{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m73_c00200{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m86_c00200{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m105_c00200{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00200{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m130_c00200{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m49_c00200{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m36_c00200{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.med_c00200{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00200{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00200{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m110_c00200{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mda_c00200{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m108_c00200{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9_c00200{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m65_c00200{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00200{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00200{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00200{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m23_c00200{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m27_c00200{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00200{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00200{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00200{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m18_c00200{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00200{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.md_c00200{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m20_c00200{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5_c00200{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc_c00200{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m98_c00200{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m87_c00200{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mba_c00200{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m42_c00200{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00200{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00200{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m14_c00200{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00200{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m55_c00200{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00200{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mad_c00200{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m100_c00200{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00200{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m30_c00200{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00200{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00200{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00200{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00200{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m62_c00200{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00200{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00200{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m96_c00200{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m107_c00200{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00200{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mee_c00200{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me9_c00200{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m48_c00200{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00200{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m76_c00200{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m93_c00200{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00200{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m16_c00200{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m63_c00200{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00200{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb_c00200{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md1_c00200{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00200{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00200{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mf_c00200{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m43_c00200{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m74_c00200{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00200{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00200{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m26_c00200{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00200{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00200{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00200{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00200{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m60_c00200{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m83_c00200{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m136_c00200{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m13e_c00200{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m82_c00200{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m13d_c00200{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m44_c00200{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00200{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m54_c00200{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00200{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m92_c00200{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00200{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00200{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00200{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00200{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m118_c00200{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mea_c00200{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00200{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m137_c00200{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m119_c00200{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00200{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00200{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m10_c00200{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00200{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00200{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m122_c00200{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00200{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m97_c00200{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00200{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00200{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m59_c00200{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00200{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m120_c00200{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00200{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m69_c00200{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m129_c00200{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m19_c00200{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00200{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00200{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00200{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.me6_c00200{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m126_c00200{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00200{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m38_c00200{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00200{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00200{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m101_c00200{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m80_c00200{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m35_c00200{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.meb_c00200{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m34_c00200{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me1_c00200{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00200{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00200{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00200{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00200{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00200{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m114_c00200{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.me7_c00200{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00200{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m64_c00200{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8_c00200{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00200{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00200{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4_c00200{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md4_c00200{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00200{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me5_c00200{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00200{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m123_c00200{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m58_c00200{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00200{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00200{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00200{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me0_c00200{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md5_c00200{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m29_c00200{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00200{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m56_c00200{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00200{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m52_c00200{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m116_c00200{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m67_c00200{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00200{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.md6_c00200{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00200{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m81_c00200{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mce_c00200{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m68_c00200{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.me3_c00200{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mde_c00200{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m61_c00200{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m115_c00200{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m113_c00200{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m41_c00200{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m124_c00200{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m13_c00200{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md9_c00200{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m37_c00200{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00200{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00200{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00200{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00200{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m127_c00200{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m121_c00200{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m91_c00200{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m39_c00200{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m112_c00200{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00200{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00200{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m25_c00200{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.md2_c00200{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me8_c00200{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00200{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m3_c00200{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m21_c00200{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00200{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00200{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00200{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00200{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m117_c00200{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00200{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m128_c00200{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00200{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00200{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.maa_c00200{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mae_c00200{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m79_c00200{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00200{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.md3_c00200{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00200{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.mca_c00200{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m13a_c00200{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00200{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.me2_c00200{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00200{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00200{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00200{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m17_c00200{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mab_c00200{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00200{transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);}
.maf_c00200{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m139_c00200{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m15_c00200{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00200{transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00200{transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);}
.m95_c00200{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00200{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.792000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls0_c00200{letter-spacing:0.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{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__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00200{word-spacing:-11.357143px;}
.ws9_c00200{word-spacing:-5.833333px;}
.ws4_c00200{word-spacing:-4.928571px;}
.ws0_c00200{word-spacing:-4.250000px;}
.ws8_c00200{word-spacing:-2.031250px;}
.wsb_c00200{word-spacing:0.000000px;}
.ws6_c00200{word-spacing:1.333333px;}
.wsa_c00200{word-spacing:5.804665px;}
.ws2_c00200{word-spacing:6.388889px;}
.ws7_c00200{word-spacing:10.896226px;}
.ws1_c00200{word-spacing:14.318182px;}
.ws3_c00200{word-spacing:14.659091px;}
.fc0_c00200{color:transparent;}
.fs1_c00200{font-size:30.000000px;}
.fs6_c00200{font-size:42.000000px;}
.fs7_c00200{font-size:48.000000px;}
.fs5_c00200{font-size:54.000000px;}
.fs3_c00200{font-size:60.000000px;}
.fs2_c00200{font-size:66.000000px;}
.fs4_c00200{font-size:72.000000px;}
.fs0_c00200{font-size:78.000000px;}
.y0_c00200{bottom:0.000000px;}
.y74_c00200{bottom:160.500000px;}
.y3b_c00200{bottom:207.300000px;}
.y73_c00200{bottom:208.650000px;}
.y3a_c00200{bottom:221.700000px;}
.y72_c00200{bottom:224.100000px;}
.y71_c00200{bottom:235.650000px;}
.y39_c00200{bottom:239.400000px;}
.y70_c00200{bottom:246.750000px;}
.y38_c00200{bottom:254.550000px;}
.y6f_c00200{bottom:257.850000px;}
.y37_c00200{bottom:268.200000px;}
.y6e_c00200{bottom:269.700000px;}
.y6d_c00200{bottom:280.800000px;}
.y36_c00200{bottom:282.600000px;}
.y6c_c00200{bottom:292.350000px;}
.y35_c00200{bottom:297.300000px;}
.y6b_c00200{bottom:304.200000px;}
.y34_c00200{bottom:311.400000px;}
.y6a_c00200{bottom:316.050000px;}
.y33_c00200{bottom:325.500000px;}
.y69_c00200{bottom:327.900000px;}
.y68_c00200{bottom:339.750000px;}
.y32_c00200{bottom:339.900000px;}
.y67_c00200{bottom:352.050000px;}
.y31_c00200{bottom:354.300000px;}
.y66_c00200{bottom:363.900000px;}
.y30_c00200{bottom:369.000000px;}
.y65_c00200{bottom:376.200000px;}
.y2f_c00200{bottom:382.350000px;}
.y64_c00200{bottom:388.800000px;}
.y2e_c00200{bottom:396.750000px;}
.y63_c00200{bottom:400.650000px;}
.y2d_c00200{bottom:411.450000px;}
.y62_c00200{bottom:412.500000px;}
.y2c_c00200{bottom:425.550000px;}
.y61_c00200{bottom:434.100000px;}
.y2b_c00200{bottom:443.400000px;}
.y60_c00200{bottom:448.500000px;}
.y2a_c00200{bottom:458.100000px;}
.y5f_c00200{bottom:462.600000px;}
.y29_c00200{bottom:472.200000px;}
.y5e_c00200{bottom:476.550000px;}
.y28_c00200{bottom:487.350000px;}
.y5d_c00200{bottom:490.650000px;}
.y27_c00200{bottom:501.450000px;}
.y5c_c00200{bottom:505.350000px;}
.y5b_c00200{bottom:520.050000px;}
.y5a_c00200{bottom:533.700000px;}
.y22_c00200{bottom:535.650000px;}
.y59_c00200{bottom:548.100000px;}
.y21_c00200{bottom:555.900000px;}
.y58_c00200{bottom:562.500000px;}
.y20_c00200{bottom:573.900000px;}
.y57_c00200{bottom:577.650000px;}
.y56_c00200{bottom:591.300000px;}
.y1f_c00200{bottom:591.450000px;}
.y55_c00200{bottom:605.700000px;}
.y1e_c00200{bottom:606.300000px;}
.y1d_c00200{bottom:617.400000px;}
.y54_c00200{bottom:620.100000px;}
.y53_c00200{bottom:634.800000px;}
.y1c_c00200{bottom:635.400000px;}
.y52_c00200{bottom:648.450000px;}
.y1b_c00200{bottom:653.400000px;}
.y51_c00200{bottom:662.850000px;}
.y1a_c00200{bottom:675.000000px;}
.y50_c00200{bottom:677.250000px;}
.y4f_c00200{bottom:690.900000px;}
.y19_c00200{bottom:696.900000px;}
.y4e_c00200{bottom:705.300000px;}
.y18_c00200{bottom:714.900000px;}
.y4d_c00200{bottom:719.550000px;}
.y4c_c00200{bottom:733.950000px;}
.y17_c00200{bottom:737.250000px;}
.y4b_c00200{bottom:748.050000px;}
.y16_c00200{bottom:759.000000px;}
.y4a_c00200{bottom:762.450000px;}
.y49_c00200{bottom:776.850000px;}
.y15_c00200{bottom:777.000000px;}
.y48_c00200{bottom:791.250000px;}
.y14_c00200{bottom:795.300000px;}
.y47_c00200{bottom:805.650000px;}
.y13_c00200{bottom:812.550000px;}
.y46_c00200{bottom:819.750000px;}
.y12_c00200{bottom:830.100000px;}
.y45_c00200{bottom:834.450000px;}
.y44_c00200{bottom:848.550000px;}
.y11_c00200{bottom:851.400000px;}
.y43_c00200{bottom:862.950000px;}
.y10_c00200{bottom:873.750000px;}
.y42_c00200{bottom:877.350000px;}
.y41_c00200{bottom:891.000000px;}
.yf_c00200{bottom:895.200000px;}
.y40_c00200{bottom:905.550000px;}
.ye_c00200{bottom:913.950000px;}
.y3f_c00200{bottom:919.650000px;}
.yd_c00200{bottom:931.950000px;}
.y3e_c00200{bottom:933.750000px;}
.y3d_c00200{bottom:947.850000px;}
.yc_c00200{bottom:949.650000px;}
.yb_c00200{bottom:970.650000px;}
.ya_c00200{bottom:988.950000px;}
.y3c_c00200{bottom:1000.050000px;}
.y9_c00200{bottom:1010.850000px;}
.y26_c00200{bottom:1022.400000px;}
.y8_c00200{bottom:1032.000000px;}
.y25_c00200{bottom:1040.100000px;}
.y7_c00200{bottom:1050.750000px;}
.y24_c00200{bottom:1057.650000px;}
.y6_c00200{bottom:1068.450000px;}
.y23_c00200{bottom:1075.350000px;}
.y5_c00200{bottom:1095.150000px;}
.y4_c00200{bottom:1115.250000px;}
.y3_c00200{bottom:1136.850000px;}
.y2_c00200{bottom:1150.950000px;}
.y1_c00200{bottom:1155.300000px;}
.h3_c00200{height:30.000000px;}
.h8_c00200{height:42.000000px;}
.h9_c00200{height:48.000000px;}
.h7_c00200{height:54.000000px;}
.h5_c00200{height:60.000000px;}
.h4_c00200{height:66.000000px;}
.h6_c00200{height:72.000000px;}
.h2_c00200{height:78.000000px;}
.h1_c00200{height:1285.500000px;}
.h0_c00200{height:1285.560058px;}
.w1_c00200{width:963.000000px;}
.w0_c00200{width:963.359985px;}
.x0_c00200{left:0.000000px;}
.x4_c00200{left:102.900000px;}
.x7d_c00200{left:104.100000px;}
.xb5_c00200{left:105.450000px;}
.xc3_c00200{left:106.950000px;}
.x1e_c00200{left:120.150000px;}
.x47_c00200{left:121.950000px;}
.x64_c00200{left:123.150000px;}
.xb9_c00200{left:124.650000px;}
.xbb_c00200{left:126.600000px;}
.x162_c00200{left:131.100000px;}
.x8a_c00200{left:134.250000px;}
.xc6_c00200{left:135.600000px;}
.x29_c00200{left:136.800000px;}
.x3f_c00200{left:138.300000px;}
.x38_c00200{left:140.400000px;}
.x6e_c00200{left:141.450000px;}
.x30_c00200{left:142.650000px;}
.xc0_c00200{left:144.000000px;}
.x48_c00200{left:145.350000px;}
.xa1_c00200{left:146.550000px;}
.xba_c00200{left:148.350000px;}
.xbc_c00200{left:150.600000px;}
.xaa_c00200{left:152.850000px;}
.x15_c00200{left:153.900000px;}
.xc5_c00200{left:156.900000px;}
.x54_c00200{left:161.550000px;}
.xaf_c00200{left:163.200000px;}
.x7e_c00200{left:165.600000px;}
.x61_c00200{left:166.950000px;}
.xab_c00200{left:169.350000px;}
.x55_c00200{left:171.750000px;}
.x5_c00200{left:172.800000px;}
.xbd_c00200{left:174.750000px;}
.x72_c00200{left:177.150000px;}
.xc8_c00200{left:179.400000px;}
.x16_c00200{left:180.600000px;}
.x31_c00200{left:182.550000px;}
.x5b_c00200{left:183.900000px;}
.x4a_c00200{left:185.700000px;}
.xc7_c00200{left:187.500000px;}
.xac_c00200{left:189.150000px;}
.x5a_c00200{left:191.250000px;}
.x2a_c00200{left:192.300000px;}
.xbe_c00200{left:194.550000px;}
.xcb_c00200{left:196.050000px;}
.x39_c00200{left:198.300000px;}
.x7a_c00200{left:199.350000px;}
.x32_c00200{left:200.850000px;}
.xa5_c00200{left:202.650000px;}
.x6f_c00200{left:204.450000px;}
.x74_c00200{left:208.050000px;}
.x1f_c00200{left:209.400000px;}
.xa6_c00200{left:211.650000px;}
.xb3_c00200{left:213.450000px;}
.x7b_c00200{left:215.250000px;}
.xc1_c00200{left:216.300000px;}
.x6c_c00200{left:218.100000px;}
.x3_c00200{left:219.600000px;}
.x9e_c00200{left:221.400000px;}
.x33_c00200{left:222.450000px;}
.xb6_c00200{left:224.250000px;}
.x68_c00200{left:225.450000px;}
.x56_c00200{left:226.500000px;}
.x75_c00200{left:228.600000px;}
.x49_c00200{left:229.950000px;}
.x40_c00200{left:231.450000px;}
.x7f_c00200{left:232.950000px;}
.x6_c00200{left:234.300000px;}
.x3a_c00200{left:236.100000px;}
.x20_c00200{left:238.500000px;}
.xa7_c00200{left:240.750000px;}
.x2b_c00200{left:245.550000px;}
.x65_c00200{left:246.900000px;}
.x69_c00200{left:248.100000px;}
.x34_c00200{left:251.550000px;}
.x82_c00200{left:253.200000px;}
.x50_c00200{left:257.550000px;}
.x73_c00200{left:259.650000px;}
.xb7_c00200{left:261.000000px;}
.x70_c00200{left:265.650000px;}
.xb0_c00200{left:267.600000px;}
.x9f_c00200{left:268.950000px;}
.x4b_c00200{left:272.400000px;}
.x5c_c00200{left:276.000000px;}
.x3b_c00200{left:278.550000px;}
.x85_c00200{left:280.200000px;}
.x57_c00200{left:281.550000px;}
.xa2_c00200{left:282.600000px;}
.xb1_c00200{left:285.600000px;}
.x5d_c00200{left:287.850000px;}
.x41_c00200{left:289.050000px;}
.xad_c00200{left:291.000000px;}
.x7_c00200{left:292.650000px;}
.x66_c00200{left:294.450000px;}
.x3c_c00200{left:295.500000px;}
.x8_c00200{left:301.650000px;}
.x77_c00200{left:303.600000px;}
.x6a_c00200{left:306.450000px;}
.x2c_c00200{left:307.500000px;}
.x42_c00200{left:309.900000px;}
.x67_c00200{left:312.450000px;}
.x3d_c00200{left:316.800000px;}
.x80_c00200{left:317.850000px;}
.xc4_c00200{left:319.200000px;}
.xa0_c00200{left:320.400000px;}
.x5e_c00200{left:322.050000px;}
.x78_c00200{left:323.700000px;}
.x4e_c00200{left:325.350000px;}
.x2d_c00200{left:328.050000px;}
.xae_c00200{left:331.650000px;}
.xa3_c00200{left:333.000000px;}
.x62_c00200{left:334.350000px;}
.x35_c00200{left:337.200000px;}
.x9_c00200{left:338.400000px;}
.x17_c00200{left:340.500000px;}
.x58_c00200{left:342.000000px;}
.x1_c00200{left:343.800000px;}
.x43_c00200{left:344.850000px;}
.x6d_c00200{left:346.200000px;}
.x86_c00200{left:347.850000px;}
.x4c_c00200{left:350.550000px;}
.x5f_c00200{left:351.600000px;}
.x71_c00200{left:354.600000px;}
.x87_c00200{left:355.800000px;}
.xc9_c00200{left:357.150000px;}
.xa_c00200{left:359.250000px;}
.x3e_c00200{left:361.500000px;}
.x44_c00200{left:363.600000px;}
.xc2_c00200{left:365.700000px;}
.x51_c00200{left:366.750000px;}
.x83_c00200{left:369.000000px;}
.x76_c00200{left:370.200000px;}
.x88_c00200{left:374.850000px;}
.x2e_c00200{left:378.450000px;}
.xb2_c00200{left:379.950000px;}
.xb8_c00200{left:383.850000px;}
.xa4_c00200{left:385.200000px;}
.xca_c00200{left:386.250000px;}
.x52_c00200{left:387.600000px;}
.x79_c00200{left:389.550000px;}
.x84_c00200{left:393.150000px;}
.x59_c00200{left:394.200000px;}
.x45_c00200{left:398.850000px;}
.xa8_c00200{left:400.950000px;}
.x63_c00200{left:402.450000px;}
.xb_c00200{left:404.250000px;}
.x7c_c00200{left:405.300000px;}
.x36_c00200{left:406.350000px;}
.x81_c00200{left:407.550000px;}
.x4f_c00200{left:409.200000px;}
.x2f_c00200{left:410.850000px;}
.x6b_c00200{left:412.350000px;}
.x89_c00200{left:414.450000px;}
.x60_c00200{left:416.850000px;}
.x46_c00200{left:418.950000px;}
.x53_c00200{left:421.800000px;}
.xb4_c00200{left:425.850000px;}
.x37_c00200{left:427.200000px;}
.xa9_c00200{left:431.850000px;}
.xc_c00200{left:434.100000px;}
.x4d_c00200{left:436.200000px;}
.xbf_c00200{left:437.550000px;}
.x112_c00200{left:454.650000px;}
.xcc_c00200{left:459.000000px;}
.xd7_c00200{left:460.050000px;}
.xf7_c00200{left:461.250000px;}
.x159_c00200{left:462.750000px;}
.xce_c00200{left:474.150000px;}
.x8b_c00200{left:475.200000px;}
.xd_c00200{left:476.250000px;}
.x157_c00200{left:480.000000px;}
.x116_c00200{left:482.100000px;}
.x141_c00200{left:483.750000px;}
.x15a_c00200{left:485.850000px;}
.xfd_c00200{left:487.200000px;}
.x155_c00200{left:490.950000px;}
.x13d_c00200{left:492.000000px;}
.x12c_c00200{left:493.650000px;}
.x161_c00200{left:494.850000px;}
.x105_c00200{left:496.050000px;}
.xcf_c00200{left:498.600000px;}
.x13b_c00200{left:500.100000px;}
.xe3_c00200{left:501.600000px;}
.xee_c00200{left:502.950000px;}
.xe0_c00200{left:504.900000px;}
.x158_c00200{left:505.950000px;}
.x90_c00200{left:507.000000px;}
.x9d_c00200{left:509.400000px;}
.x119_c00200{left:510.750000px;}
.x8c_c00200{left:511.950000px;}
.x136_c00200{left:513.300000px;}
.x18_c00200{left:515.100000px;}
.x127_c00200{left:516.300000px;}
.x10f_c00200{left:518.850000px;}
.x11a_c00200{left:520.500000px;}
.xd0_c00200{left:522.000000px;}
.x108_c00200{left:523.350000px;}
.x21_c00200{left:524.700000px;}
.x124_c00200{left:525.900000px;}
.xcd_c00200{left:528.150000px;}
.x96_c00200{left:529.200000px;}
.xd8_c00200{left:531.000000px;}
.x12d_c00200{left:535.500000px;}
.x128_c00200{left:537.900000px;}
.x110_c00200{left:539.700000px;}
.x12f_c00200{left:542.250000px;}
.xfe_c00200{left:543.300000px;}
.xe_c00200{left:544.950000px;}
.xe1_c00200{left:546.600000px;}
.x13a_c00200{left:548.100000px;}
.x113_c00200{left:549.900000px;}
.x22_c00200{left:550.950000px;}
.x109_c00200{left:552.450000px;}
.xd1_c00200{left:554.700000px;}
.xd9_c00200{left:556.200000px;}
.x15b_c00200{left:558.150000px;}
.x117_c00200{left:560.250000px;}
.x151_c00200{left:562.800000px;}
.x120_c00200{left:563.850000px;}
.x100_c00200{left:565.200000px;}
.x97_c00200{left:566.250000px;}
.x11e_c00200{left:568.050000px;}
.x137_c00200{left:569.100000px;}
.x145_c00200{left:571.800000px;}
.x142_c00200{left:574.800000px;}
.x14d_c00200{left:576.150000px;}
.xe4_c00200{left:577.500000px;}
.xef_c00200{left:578.850000px;}
.x11b_c00200{left:580.350000px;}
.x146_c00200{left:581.550000px;}
.x106_c00200{left:583.200000px;}
.x130_c00200{left:584.400000px;}
.xfc_c00200{left:587.100000px;}
.x122_c00200{left:589.350000px;}
.x143_c00200{left:591.300000px;}
.xe2_c00200{left:592.350000px;}
.x131_c00200{left:593.700000px;}
.x114_c00200{left:595.200000px;}
.x8d_c00200{left:596.550000px;}
.xe9_c00200{left:599.700000px;}
.xd2_c00200{left:601.500000px;}
.x19_c00200{left:603.000000px;}
.x121_c00200{left:604.500000px;}
.x118_c00200{left:606.300000px;}
.xf0_c00200{left:607.650000px;}
.xda_c00200{left:609.150000px;}
.x23_c00200{left:610.350000px;}
.xff_c00200{left:612.750000px;}
.xf_c00200{left:616.650000px;}
.x24_c00200{left:618.600000px;}
.x98_c00200{left:622.050000px;}
.x132_c00200{left:624.000000px;}
.xf3_c00200{left:625.050000px;}
.xe5_c00200{left:626.100000px;}
.x140_c00200{left:627.450000px;}
.x91_c00200{left:628.650000px;}
.x144_c00200{left:631.200000px;}
.xdb_c00200{left:632.250000px;}
.x25_c00200{left:635.850000px;}
.x10a_c00200{left:637.800000px;}
.x15c_c00200{left:638.850000px;}
.x138_c00200{left:640.050000px;}
.x160_c00200{left:641.400000px;}
.xea_c00200{left:642.900000px;}
.x13e_c00200{left:643.950000px;}
.x101_c00200{left:645.900000px;}
.x8e_c00200{left:646.950000px;}
.x26_c00200{left:648.150000px;}
.xf4_c00200{left:649.500000px;}
.x11c_c00200{left:651.300000px;}
.xdc_c00200{left:653.550000px;}
.x152_c00200{left:654.600000px;}
.xe6_c00200{left:655.950000px;}
.x1a_c00200{left:658.800000px;}
.x15d_c00200{left:660.150000px;}
.x10b_c00200{left:662.250000px;}
.x111_c00200{left:663.600000px;}
.xd3_c00200{left:664.800000px;}
.x10_c00200{left:668.550000px;}
.x14b_c00200{left:669.900000px;}
.x13c_c00200{left:671.250000px;}
.x107_c00200{left:672.750000px;}
.x92_c00200{left:673.950000px;}
.x126_c00200{left:675.000000px;}
.x99_c00200{left:676.350000px;}
.x148_c00200{left:678.450000px;}
.x133_c00200{left:679.800000px;}
.x15e_c00200{left:681.450000px;}
.xe7_c00200{left:683.250000px;}
.x12e_c00200{left:684.900000px;}
.xf8_c00200{left:687.450000px;}
.x11_c00200{left:688.650000px;}
.x149_c00200{left:690.000000px;}
.x153_c00200{left:691.350000px;}
.x93_c00200{left:692.700000px;}
.x129_c00200{left:694.500000px;}
.x9a_c00200{left:695.850000px;}
.xdd_c00200{left:698.250000px;}
.x134_c00200{left:699.300000px;}
.x1b_c00200{left:700.500000px;}
.xe8_c00200{left:702.300000px;}
.xf9_c00200{left:705.150000px;}
.xd4_c00200{left:706.200000px;}
.xf1_c00200{left:707.850000px;}
.x13f_c00200{left:709.050000px;}
.x102_c00200{left:710.400000px;}
.x11f_c00200{left:711.900000px;}
.x8f_c00200{left:713.250000px;}
.x10e_c00200{left:714.450000px;}
.xf5_c00200{left:717.900000px;}
.x115_c00200{left:720.150000px;}
.x12_c00200{left:721.350000px;}
.x27_c00200{left:722.700000px;}
.x10c_c00200{left:725.550000px;}
.xde_c00200{left:727.050000px;}
.x13_c00200{left:729.600000px;}
.x103_c00200{left:730.950000px;}
.xeb_c00200{left:732.150000px;}
.x147_c00200{left:733.800000px;}
.x1c_c00200{left:735.000000px;}
.x9b_c00200{left:736.950000px;}
.x14c_c00200{left:740.100000px;}
.x12a_c00200{left:742.350000px;}
.x94_c00200{left:743.850000px;}
.x14e_c00200{left:745.350000px;}
.xfa_c00200{left:746.550000px;}
.x11d_c00200{left:749.550000px;}
.x15f_c00200{left:750.600000px;}
.xec_c00200{left:751.650000px;}
.xd5_c00200{left:753.750000px;}
.x154_c00200{left:755.850000px;}
.xf2_c00200{left:757.200000px;}
.x14_c00200{left:758.700000px;}
.x1d_c00200{left:759.900000px;}
.x12b_c00200{left:761.400000px;}
.x14a_c00200{left:764.550000px;}
.x125_c00200{left:766.050000px;}
.x139_c00200{left:767.400000px;}
.x14f_c00200{left:768.450000px;}
.x104_c00200{left:769.500000px;}
.x2_c00200{left:771.450000px;}
.x156_c00200{left:773.100000px;}
.x28_c00200{left:774.150000px;}
.x95_c00200{left:775.200000px;}
.x10d_c00200{left:777.450000px;}
.xed_c00200{left:778.650000px;}
.x150_c00200{left:780.300000px;}
.xfb_c00200{left:782.550000px;}
.xf6_c00200{left:783.750000px;}
.xd6_c00200{left:785.850000px;}
.x9c_c00200{left:788.850000px;}
.xdf_c00200{left:790.350000px;}
.x135_c00200{left:792.600000px;}
.x123_c00200{left:793.800000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws5_c00200{word-spacing:-10.095238pt;}
.ws9_c00200{word-spacing:-5.185185pt;}
.ws4_c00200{word-spacing:-4.380952pt;}
.ws0_c00200{word-spacing:-3.777778pt;}
.ws8_c00200{word-spacing:-1.805556pt;}
.wsb_c00200{word-spacing:0.000000pt;}
.ws6_c00200{word-spacing:1.185185pt;}
.wsa_c00200{word-spacing:5.159702pt;}
.ws2_c00200{word-spacing:5.679012pt;}
.ws7_c00200{word-spacing:9.685535pt;}
.ws1_c00200{word-spacing:12.727273pt;}
.ws3_c00200{word-spacing:13.030303pt;}
.fs1_c00200{font-size:26.666667pt;}
.fs6_c00200{font-size:37.333333pt;}
.fs7_c00200{font-size:42.666667pt;}
.fs5_c00200{font-size:48.000000pt;}
.fs3_c00200{font-size:53.333333pt;}
.fs2_c00200{font-size:58.666667pt;}
.fs4_c00200{font-size:64.000000pt;}
.fs0_c00200{font-size:69.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.y74_c00200{bottom:142.666667pt;}
.y3b_c00200{bottom:184.266667pt;}
.y73_c00200{bottom:185.466667pt;}
.y3a_c00200{bottom:197.066667pt;}
.y72_c00200{bottom:199.200000pt;}
.y71_c00200{bottom:209.466667pt;}
.y39_c00200{bottom:212.800000pt;}
.y70_c00200{bottom:219.333333pt;}
.y38_c00200{bottom:226.266667pt;}
.y6f_c00200{bottom:229.200000pt;}
.y37_c00200{bottom:238.400000pt;}
.y6e_c00200{bottom:239.733333pt;}
.y6d_c00200{bottom:249.600000pt;}
.y36_c00200{bottom:251.200000pt;}
.y6c_c00200{bottom:259.866667pt;}
.y35_c00200{bottom:264.266667pt;}
.y6b_c00200{bottom:270.400000pt;}
.y34_c00200{bottom:276.800000pt;}
.y6a_c00200{bottom:280.933333pt;}
.y33_c00200{bottom:289.333333pt;}
.y69_c00200{bottom:291.466667pt;}
.y68_c00200{bottom:302.000000pt;}
.y32_c00200{bottom:302.133333pt;}
.y67_c00200{bottom:312.933333pt;}
.y31_c00200{bottom:314.933333pt;}
.y66_c00200{bottom:323.466667pt;}
.y30_c00200{bottom:328.000000pt;}
.y65_c00200{bottom:334.400000pt;}
.y2f_c00200{bottom:339.866667pt;}
.y64_c00200{bottom:345.600000pt;}
.y2e_c00200{bottom:352.666667pt;}
.y63_c00200{bottom:356.133333pt;}
.y2d_c00200{bottom:365.733333pt;}
.y62_c00200{bottom:366.666667pt;}
.y2c_c00200{bottom:378.266667pt;}
.y61_c00200{bottom:385.866667pt;}
.y2b_c00200{bottom:394.133333pt;}
.y60_c00200{bottom:398.666667pt;}
.y2a_c00200{bottom:407.200000pt;}
.y5f_c00200{bottom:411.200000pt;}
.y29_c00200{bottom:419.733333pt;}
.y5e_c00200{bottom:423.600000pt;}
.y28_c00200{bottom:433.200000pt;}
.y5d_c00200{bottom:436.133333pt;}
.y27_c00200{bottom:445.733333pt;}
.y5c_c00200{bottom:449.200000pt;}
.y5b_c00200{bottom:462.266667pt;}
.y5a_c00200{bottom:474.400000pt;}
.y22_c00200{bottom:476.133333pt;}
.y59_c00200{bottom:487.200000pt;}
.y21_c00200{bottom:494.133333pt;}
.y58_c00200{bottom:500.000000pt;}
.y20_c00200{bottom:510.133333pt;}
.y57_c00200{bottom:513.466667pt;}
.y56_c00200{bottom:525.600000pt;}
.y1f_c00200{bottom:525.733333pt;}
.y55_c00200{bottom:538.400000pt;}
.y1e_c00200{bottom:538.933333pt;}
.y1d_c00200{bottom:548.800000pt;}
.y54_c00200{bottom:551.200000pt;}
.y53_c00200{bottom:564.266667pt;}
.y1c_c00200{bottom:564.800000pt;}
.y52_c00200{bottom:576.400000pt;}
.y1b_c00200{bottom:580.800000pt;}
.y51_c00200{bottom:589.200000pt;}
.y1a_c00200{bottom:600.000000pt;}
.y50_c00200{bottom:602.000000pt;}
.y4f_c00200{bottom:614.133333pt;}
.y19_c00200{bottom:619.466667pt;}
.y4e_c00200{bottom:626.933333pt;}
.y18_c00200{bottom:635.466667pt;}
.y4d_c00200{bottom:639.600000pt;}
.y4c_c00200{bottom:652.400000pt;}
.y17_c00200{bottom:655.333333pt;}
.y4b_c00200{bottom:664.933333pt;}
.y16_c00200{bottom:674.666667pt;}
.y4a_c00200{bottom:677.733333pt;}
.y49_c00200{bottom:690.533333pt;}
.y15_c00200{bottom:690.666667pt;}
.y48_c00200{bottom:703.333333pt;}
.y14_c00200{bottom:706.933333pt;}
.y47_c00200{bottom:716.133333pt;}
.y13_c00200{bottom:722.266667pt;}
.y46_c00200{bottom:728.666667pt;}
.y12_c00200{bottom:737.866667pt;}
.y45_c00200{bottom:741.733333pt;}
.y44_c00200{bottom:754.266667pt;}
.y11_c00200{bottom:756.800000pt;}
.y43_c00200{bottom:767.066667pt;}
.y10_c00200{bottom:776.666667pt;}
.y42_c00200{bottom:779.866667pt;}
.y41_c00200{bottom:792.000000pt;}
.yf_c00200{bottom:795.733333pt;}
.y40_c00200{bottom:804.933333pt;}
.ye_c00200{bottom:812.400000pt;}
.y3f_c00200{bottom:817.466667pt;}
.yd_c00200{bottom:828.400000pt;}
.y3e_c00200{bottom:830.000000pt;}
.y3d_c00200{bottom:842.533333pt;}
.yc_c00200{bottom:844.133333pt;}
.yb_c00200{bottom:862.800000pt;}
.ya_c00200{bottom:879.066667pt;}
.y3c_c00200{bottom:888.933333pt;}
.y9_c00200{bottom:898.533333pt;}
.y26_c00200{bottom:908.800000pt;}
.y8_c00200{bottom:917.333333pt;}
.y25_c00200{bottom:924.533333pt;}
.y7_c00200{bottom:934.000000pt;}
.y24_c00200{bottom:940.133333pt;}
.y6_c00200{bottom:949.733333pt;}
.y23_c00200{bottom:955.866667pt;}
.y5_c00200{bottom:973.466667pt;}
.y4_c00200{bottom:991.333333pt;}
.y3_c00200{bottom:1010.533333pt;}
.y2_c00200{bottom:1023.066667pt;}
.y1_c00200{bottom:1026.933333pt;}
.h3_c00200{height:26.666667pt;}
.h8_c00200{height:37.333333pt;}
.h9_c00200{height:42.666667pt;}
.h7_c00200{height:48.000000pt;}
.h5_c00200{height:53.333333pt;}
.h4_c00200{height:58.666667pt;}
.h6_c00200{height:64.000000pt;}
.h2_c00200{height:69.333333pt;}
.h1_c00200{height:1142.666667pt;}
.h0_c00200{height:1142.720052pt;}
.w1_c00200{width:856.000000pt;}
.w0_c00200{width:856.319987pt;}
.x0_c00200{left:0.000000pt;}
.x4_c00200{left:91.466667pt;}
.x7d_c00200{left:92.533333pt;}
.xb5_c00200{left:93.733333pt;}
.xc3_c00200{left:95.066667pt;}
.x1e_c00200{left:106.800000pt;}
.x47_c00200{left:108.400000pt;}
.x64_c00200{left:109.466667pt;}
.xb9_c00200{left:110.800000pt;}
.xbb_c00200{left:112.533333pt;}
.x162_c00200{left:116.533333pt;}
.x8a_c00200{left:119.333333pt;}
.xc6_c00200{left:120.533333pt;}
.x29_c00200{left:121.600000pt;}
.x3f_c00200{left:122.933333pt;}
.x38_c00200{left:124.800000pt;}
.x6e_c00200{left:125.733333pt;}
.x30_c00200{left:126.800000pt;}
.xc0_c00200{left:128.000000pt;}
.x48_c00200{left:129.200000pt;}
.xa1_c00200{left:130.266667pt;}
.xba_c00200{left:131.866667pt;}
.xbc_c00200{left:133.866667pt;}
.xaa_c00200{left:135.866667pt;}
.x15_c00200{left:136.800000pt;}
.xc5_c00200{left:139.466667pt;}
.x54_c00200{left:143.600000pt;}
.xaf_c00200{left:145.066667pt;}
.x7e_c00200{left:147.200000pt;}
.x61_c00200{left:148.400000pt;}
.xab_c00200{left:150.533333pt;}
.x55_c00200{left:152.666667pt;}
.x5_c00200{left:153.600000pt;}
.xbd_c00200{left:155.333333pt;}
.x72_c00200{left:157.466667pt;}
.xc8_c00200{left:159.466667pt;}
.x16_c00200{left:160.533333pt;}
.x31_c00200{left:162.266667pt;}
.x5b_c00200{left:163.466667pt;}
.x4a_c00200{left:165.066667pt;}
.xc7_c00200{left:166.666667pt;}
.xac_c00200{left:168.133333pt;}
.x5a_c00200{left:170.000000pt;}
.x2a_c00200{left:170.933333pt;}
.xbe_c00200{left:172.933333pt;}
.xcb_c00200{left:174.266667pt;}
.x39_c00200{left:176.266667pt;}
.x7a_c00200{left:177.200000pt;}
.x32_c00200{left:178.533333pt;}
.xa5_c00200{left:180.133333pt;}
.x6f_c00200{left:181.733333pt;}
.x74_c00200{left:184.933333pt;}
.x1f_c00200{left:186.133333pt;}
.xa6_c00200{left:188.133333pt;}
.xb3_c00200{left:189.733333pt;}
.x7b_c00200{left:191.333333pt;}
.xc1_c00200{left:192.266667pt;}
.x6c_c00200{left:193.866667pt;}
.x3_c00200{left:195.200000pt;}
.x9e_c00200{left:196.800000pt;}
.x33_c00200{left:197.733333pt;}
.xb6_c00200{left:199.333333pt;}
.x68_c00200{left:200.400000pt;}
.x56_c00200{left:201.333333pt;}
.x75_c00200{left:203.200000pt;}
.x49_c00200{left:204.400000pt;}
.x40_c00200{left:205.733333pt;}
.x7f_c00200{left:207.066667pt;}
.x6_c00200{left:208.266667pt;}
.x3a_c00200{left:209.866667pt;}
.x20_c00200{left:212.000000pt;}
.xa7_c00200{left:214.000000pt;}
.x2b_c00200{left:218.266667pt;}
.x65_c00200{left:219.466667pt;}
.x69_c00200{left:220.533333pt;}
.x34_c00200{left:223.600000pt;}
.x82_c00200{left:225.066667pt;}
.x50_c00200{left:228.933333pt;}
.x73_c00200{left:230.800000pt;}
.xb7_c00200{left:232.000000pt;}
.x70_c00200{left:236.133333pt;}
.xb0_c00200{left:237.866667pt;}
.x9f_c00200{left:239.066667pt;}
.x4b_c00200{left:242.133333pt;}
.x5c_c00200{left:245.333333pt;}
.x3b_c00200{left:247.600000pt;}
.x85_c00200{left:249.066667pt;}
.x57_c00200{left:250.266667pt;}
.xa2_c00200{left:251.200000pt;}
.xb1_c00200{left:253.866667pt;}
.x5d_c00200{left:255.866667pt;}
.x41_c00200{left:256.933333pt;}
.xad_c00200{left:258.666667pt;}
.x7_c00200{left:260.133333pt;}
.x66_c00200{left:261.733333pt;}
.x3c_c00200{left:262.666667pt;}
.x8_c00200{left:268.133333pt;}
.x77_c00200{left:269.866667pt;}
.x6a_c00200{left:272.400000pt;}
.x2c_c00200{left:273.333333pt;}
.x42_c00200{left:275.466667pt;}
.x67_c00200{left:277.733333pt;}
.x3d_c00200{left:281.600000pt;}
.x80_c00200{left:282.533333pt;}
.xc4_c00200{left:283.733333pt;}
.xa0_c00200{left:284.800000pt;}
.x5e_c00200{left:286.266667pt;}
.x78_c00200{left:287.733333pt;}
.x4e_c00200{left:289.200000pt;}
.x2d_c00200{left:291.600000pt;}
.xae_c00200{left:294.800000pt;}
.xa3_c00200{left:296.000000pt;}
.x62_c00200{left:297.200000pt;}
.x35_c00200{left:299.733333pt;}
.x9_c00200{left:300.800000pt;}
.x17_c00200{left:302.666667pt;}
.x58_c00200{left:304.000000pt;}
.x1_c00200{left:305.600000pt;}
.x43_c00200{left:306.533333pt;}
.x6d_c00200{left:307.733333pt;}
.x86_c00200{left:309.200000pt;}
.x4c_c00200{left:311.600000pt;}
.x5f_c00200{left:312.533333pt;}
.x71_c00200{left:315.200000pt;}
.x87_c00200{left:316.266667pt;}
.xc9_c00200{left:317.466667pt;}
.xa_c00200{left:319.333333pt;}
.x3e_c00200{left:321.333333pt;}
.x44_c00200{left:323.200000pt;}
.xc2_c00200{left:325.066667pt;}
.x51_c00200{left:326.000000pt;}
.x83_c00200{left:328.000000pt;}
.x76_c00200{left:329.066667pt;}
.x88_c00200{left:333.200000pt;}
.x2e_c00200{left:336.400000pt;}
.xb2_c00200{left:337.733333pt;}
.xb8_c00200{left:341.200000pt;}
.xa4_c00200{left:342.400000pt;}
.xca_c00200{left:343.333333pt;}
.x52_c00200{left:344.533333pt;}
.x79_c00200{left:346.266667pt;}
.x84_c00200{left:349.466667pt;}
.x59_c00200{left:350.400000pt;}
.x45_c00200{left:354.533333pt;}
.xa8_c00200{left:356.400000pt;}
.x63_c00200{left:357.733333pt;}
.xb_c00200{left:359.333333pt;}
.x7c_c00200{left:360.266667pt;}
.x36_c00200{left:361.200000pt;}
.x81_c00200{left:362.266667pt;}
.x4f_c00200{left:363.733333pt;}
.x2f_c00200{left:365.200000pt;}
.x6b_c00200{left:366.533333pt;}
.x89_c00200{left:368.400000pt;}
.x60_c00200{left:370.533333pt;}
.x46_c00200{left:372.400000pt;}
.x53_c00200{left:374.933333pt;}
.xb4_c00200{left:378.533333pt;}
.x37_c00200{left:379.733333pt;}
.xa9_c00200{left:383.866667pt;}
.xc_c00200{left:385.866667pt;}
.x4d_c00200{left:387.733333pt;}
.xbf_c00200{left:388.933333pt;}
.x112_c00200{left:404.133333pt;}
.xcc_c00200{left:408.000000pt;}
.xd7_c00200{left:408.933333pt;}
.xf7_c00200{left:410.000000pt;}
.x159_c00200{left:411.333333pt;}
.xce_c00200{left:421.466667pt;}
.x8b_c00200{left:422.400000pt;}
.xd_c00200{left:423.333333pt;}
.x157_c00200{left:426.666667pt;}
.x116_c00200{left:428.533333pt;}
.x141_c00200{left:430.000000pt;}
.x15a_c00200{left:431.866667pt;}
.xfd_c00200{left:433.066667pt;}
.x155_c00200{left:436.400000pt;}
.x13d_c00200{left:437.333333pt;}
.x12c_c00200{left:438.800000pt;}
.x161_c00200{left:439.866667pt;}
.x105_c00200{left:440.933333pt;}
.xcf_c00200{left:443.200000pt;}
.x13b_c00200{left:444.533333pt;}
.xe3_c00200{left:445.866667pt;}
.xee_c00200{left:447.066667pt;}
.xe0_c00200{left:448.800000pt;}
.x158_c00200{left:449.733333pt;}
.x90_c00200{left:450.666667pt;}
.x9d_c00200{left:452.800000pt;}
.x119_c00200{left:454.000000pt;}
.x8c_c00200{left:455.066667pt;}
.x136_c00200{left:456.266667pt;}
.x18_c00200{left:457.866667pt;}
.x127_c00200{left:458.933333pt;}
.x10f_c00200{left:461.200000pt;}
.x11a_c00200{left:462.666667pt;}
.xd0_c00200{left:464.000000pt;}
.x108_c00200{left:465.200000pt;}
.x21_c00200{left:466.400000pt;}
.x124_c00200{left:467.466667pt;}
.xcd_c00200{left:469.466667pt;}
.x96_c00200{left:470.400000pt;}
.xd8_c00200{left:472.000000pt;}
.x12d_c00200{left:476.000000pt;}
.x128_c00200{left:478.133333pt;}
.x110_c00200{left:479.733333pt;}
.x12f_c00200{left:482.000000pt;}
.xfe_c00200{left:482.933333pt;}
.xe_c00200{left:484.400000pt;}
.xe1_c00200{left:485.866667pt;}
.x13a_c00200{left:487.200000pt;}
.x113_c00200{left:488.800000pt;}
.x22_c00200{left:489.733333pt;}
.x109_c00200{left:491.066667pt;}
.xd1_c00200{left:493.066667pt;}
.xd9_c00200{left:494.400000pt;}
.x15b_c00200{left:496.133333pt;}
.x117_c00200{left:498.000000pt;}
.x151_c00200{left:500.266667pt;}
.x120_c00200{left:501.200000pt;}
.x100_c00200{left:502.400000pt;}
.x97_c00200{left:503.333333pt;}
.x11e_c00200{left:504.933333pt;}
.x137_c00200{left:505.866667pt;}
.x145_c00200{left:508.266667pt;}
.x142_c00200{left:510.933333pt;}
.x14d_c00200{left:512.133333pt;}
.xe4_c00200{left:513.333333pt;}
.xef_c00200{left:514.533333pt;}
.x11b_c00200{left:515.866667pt;}
.x146_c00200{left:516.933333pt;}
.x106_c00200{left:518.400000pt;}
.x130_c00200{left:519.466667pt;}
.xfc_c00200{left:521.866667pt;}
.x122_c00200{left:523.866667pt;}
.x143_c00200{left:525.600000pt;}
.xe2_c00200{left:526.533333pt;}
.x131_c00200{left:527.733333pt;}
.x114_c00200{left:529.066667pt;}
.x8d_c00200{left:530.266667pt;}
.xe9_c00200{left:533.066667pt;}
.xd2_c00200{left:534.666667pt;}
.x19_c00200{left:536.000000pt;}
.x121_c00200{left:537.333333pt;}
.x118_c00200{left:538.933333pt;}
.xf0_c00200{left:540.133333pt;}
.xda_c00200{left:541.466667pt;}
.x23_c00200{left:542.533333pt;}
.xff_c00200{left:544.666667pt;}
.xf_c00200{left:548.133333pt;}
.x24_c00200{left:549.866667pt;}
.x98_c00200{left:552.933333pt;}
.x132_c00200{left:554.666667pt;}
.xf3_c00200{left:555.600000pt;}
.xe5_c00200{left:556.533333pt;}
.x140_c00200{left:557.733333pt;}
.x91_c00200{left:558.800000pt;}
.x144_c00200{left:561.066667pt;}
.xdb_c00200{left:562.000000pt;}
.x25_c00200{left:565.200000pt;}
.x10a_c00200{left:566.933333pt;}
.x15c_c00200{left:567.866667pt;}
.x138_c00200{left:568.933333pt;}
.x160_c00200{left:570.133333pt;}
.xea_c00200{left:571.466667pt;}
.x13e_c00200{left:572.400000pt;}
.x101_c00200{left:574.133333pt;}
.x8e_c00200{left:575.066667pt;}
.x26_c00200{left:576.133333pt;}
.xf4_c00200{left:577.333333pt;}
.x11c_c00200{left:578.933333pt;}
.xdc_c00200{left:580.933333pt;}
.x152_c00200{left:581.866667pt;}
.xe6_c00200{left:583.066667pt;}
.x1a_c00200{left:585.600000pt;}
.x15d_c00200{left:586.800000pt;}
.x10b_c00200{left:588.666667pt;}
.x111_c00200{left:589.866667pt;}
.xd3_c00200{left:590.933333pt;}
.x10_c00200{left:594.266667pt;}
.x14b_c00200{left:595.466667pt;}
.x13c_c00200{left:596.666667pt;}
.x107_c00200{left:598.000000pt;}
.x92_c00200{left:599.066667pt;}
.x126_c00200{left:600.000000pt;}
.x99_c00200{left:601.200000pt;}
.x148_c00200{left:603.066667pt;}
.x133_c00200{left:604.266667pt;}
.x15e_c00200{left:605.733333pt;}
.xe7_c00200{left:607.333333pt;}
.x12e_c00200{left:608.800000pt;}
.xf8_c00200{left:611.066667pt;}
.x11_c00200{left:612.133333pt;}
.x149_c00200{left:613.333333pt;}
.x153_c00200{left:614.533333pt;}
.x93_c00200{left:615.733333pt;}
.x129_c00200{left:617.333333pt;}
.x9a_c00200{left:618.533333pt;}
.xdd_c00200{left:620.666667pt;}
.x134_c00200{left:621.600000pt;}
.x1b_c00200{left:622.666667pt;}
.xe8_c00200{left:624.266667pt;}
.xf9_c00200{left:626.800000pt;}
.xd4_c00200{left:627.733333pt;}
.xf1_c00200{left:629.200000pt;}
.x13f_c00200{left:630.266667pt;}
.x102_c00200{left:631.466667pt;}
.x11f_c00200{left:632.800000pt;}
.x8f_c00200{left:634.000000pt;}
.x10e_c00200{left:635.066667pt;}
.xf5_c00200{left:638.133333pt;}
.x115_c00200{left:640.133333pt;}
.x12_c00200{left:641.200000pt;}
.x27_c00200{left:642.400000pt;}
.x10c_c00200{left:644.933333pt;}
.xde_c00200{left:646.266667pt;}
.x13_c00200{left:648.533333pt;}
.x103_c00200{left:649.733333pt;}
.xeb_c00200{left:650.800000pt;}
.x147_c00200{left:652.266667pt;}
.x1c_c00200{left:653.333333pt;}
.x9b_c00200{left:655.066667pt;}
.x14c_c00200{left:657.866667pt;}
.x12a_c00200{left:659.866667pt;}
.x94_c00200{left:661.200000pt;}
.x14e_c00200{left:662.533333pt;}
.xfa_c00200{left:663.600000pt;}
.x11d_c00200{left:666.266667pt;}
.x15f_c00200{left:667.200000pt;}
.xec_c00200{left:668.133333pt;}
.xd5_c00200{left:670.000000pt;}
.x154_c00200{left:671.866667pt;}
.xf2_c00200{left:673.066667pt;}
.x14_c00200{left:674.400000pt;}
.x1d_c00200{left:675.466667pt;}
.x12b_c00200{left:676.800000pt;}
.x14a_c00200{left:679.600000pt;}
.x125_c00200{left:680.933333pt;}
.x139_c00200{left:682.133333pt;}
.x14f_c00200{left:683.066667pt;}
.x104_c00200{left:684.000000pt;}
.x2_c00200{left:685.733333pt;}
.x156_c00200{left:687.200000pt;}
.x28_c00200{left:688.133333pt;}
.x95_c00200{left:689.066667pt;}
.x10d_c00200{left:691.066667pt;}
.xed_c00200{left:692.133333pt;}
.x150_c00200{left:693.600000pt;}
.xfb_c00200{left:695.600000pt;}
.xf6_c00200{left:696.666667pt;}
.xd6_c00200{left:698.533333pt;}
.x9c_c00200{left:701.200000pt;}
.xdf_c00200{left:702.533333pt;}
.x135_c00200{left:704.533333pt;}
.x123_c00200{left:705.600000pt;}
}





/* 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_c00201 {
    display:none;
  }
  .loading-indicator_c00201.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00201 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_c00201 { 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_c00201" -> "#page-container .classname_c00201")
 */
.pf_c00201 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00201 { /* 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_c00201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00201 { /* 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_c00201 { /* 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_c00201 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00201 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00201 {overflow:visible;}
  }
}
.c_c00201 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00201 { /* 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_c00201:after { /* webkit #35443 */
  content: '';
}
.t_c00201:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00201 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 */
}
.__c00201 { /* 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_c00201 { /* info for Javascript */
  display:none;
}
.l_c00201 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00201 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00201 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00201: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_c00201 {
    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_c00201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00201.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_c00201 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00201;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.000000;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;}
.m108_c00201{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00201{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00201{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m85_c00201{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m113_c00201{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m95_c00201{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m6_c00201{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me0_c00201{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m72_c00201{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.me_c00201{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00201{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00201{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md8_c00201{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.md6_c00201{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mb_c00201{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mec_c00201{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00201{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mda_c00201{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00201{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m65_c00201{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00201{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00201{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00201{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8_c00201{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00201{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.md7_c00201{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.mc_c00201{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m47_c00201{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00201{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m48_c00201{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00201{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.med_c00201{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00201{transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);}
.m46_c00201{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m106_c00201{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00201{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00201{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m54_c00201{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00201{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00201{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.mf_c00201{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m59_c00201{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00201{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00201{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mee_c00201{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mac_c00201{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me2_c00201{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mea_c00201{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m96_c00201{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00201{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00201{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00201{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m105_c00201{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m80_c00201{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m104_c00201{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m55_c00201{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m62_c00201{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00201{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00201{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00201{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00201{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m84_c00201{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md9_c00201{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m53_c00201{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00201{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00201{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m19_c00201{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.maa_c00201{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m112_c00201{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m42_c00201{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m13_c00201{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m115_c00201{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m103_c00201{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00201{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00201{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m91_c00201{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00201{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00201{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me1_c00201{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m31_c00201{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00201{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00201{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m101_c00201{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00201{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00201{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m34_c00201{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00201{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m81_c00201{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m23_c00201{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00201{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00201{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m44_c00201{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00201{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m25_c00201{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m32_c00201{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me4_c00201{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mef_c00201{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me5_c00201{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00201{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m86_c00201{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00201{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00201{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00201{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m70_c00201{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00201{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mad_c00201{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me3_c00201{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00201{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00201{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00201{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m97_c00201{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00201{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00201{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00201{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00201{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00201{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m116_c00201{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m22_c00201{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00201{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md0_c00201{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m117_c00201{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.ma_c00201{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00201{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00201{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m14_c00201{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m107_c00201{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m29_c00201{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m15_c00201{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00201{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m63_c00201{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m16_c00201{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9_c00201{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m82_c00201{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00201{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m77_c00201{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00201{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m40_c00201{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m27_c00201{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m118_c00201{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md_c00201{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m28_c00201{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00201{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m110_c00201{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m45_c00201{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mae_c00201{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m56_c00201{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m58_c00201{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00201{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5_c00201{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m88_c00201{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2_c00201{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m119_c00201{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m43_c00201{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m36_c00201{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m66_c00201{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00201{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00201{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m93_c00201{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mff_c00201{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00201{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.maf_c00201{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10_c00201{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m64_c00201{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m41_c00201{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00201{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00201{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m73_c00201{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m37_c00201{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m102_c00201{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m20_c00201{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m87_c00201{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00201{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m100_c00201{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00201{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m24_c00201{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00201{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m94_c00201{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00201{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m50_c00201{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m11_c00201{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00201{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00201{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m89_c00201{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00201{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m76_c00201{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00201{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00201{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00201{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00201{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00201{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00201{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m99_c00201{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m26_c00201{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m114_c00201{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00201{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mce_c00201{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m61_c00201{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m90_c00201{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m18_c00201{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mab_c00201{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m74_c00201{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m21_c00201{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m92_c00201{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00201{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00201{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m51_c00201{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00201{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00201{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m39_c00201{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m83_c00201{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00201{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m38_c00201{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00201{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mde_c00201{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m67_c00201{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m98_c00201{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m52_c00201{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m69_c00201{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mca_c00201{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00201{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00201{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me6_c00201{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00201{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md4_c00201{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m60_c00201{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m12_c00201{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00201{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00201{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00201{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00201{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m49_c00201{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.me9_c00201{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m30_c00201{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00201{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00201{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00201{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00201{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m78_c00201{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00201{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00201{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me8_c00201{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00201{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m111_c00201{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md3_c00201{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md5_c00201{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m79_c00201{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7_c00201{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00201{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00201{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m0_c00201{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00201{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00201{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00201{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00201{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00201{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m33_c00201{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00201{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.meb_c00201{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00201{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00201{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m75_c00201{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m68_c00201{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m57_c00201{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00201{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00201{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m109_c00201{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00201{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00201{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00201{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mba_c00201{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00201{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00201{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m71_c00201{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00201{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m35_c00201{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md2_c00201{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00201{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me7_c00201{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00201{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m3_c00201{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.md1_c00201{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{transform:matrix(0.459250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459250,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls0_c00201{letter-spacing:0.000000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{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__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:-13.847162px;}
.ws3_c00201{word-spacing:-1.534091px;}
.ws5_c00201{word-spacing:0.000000px;}
.ws2_c00201{word-spacing:2.750000px;}
.ws1_c00201{word-spacing:3.343643px;}
.ws4_c00201{word-spacing:7.674419px;}
.fc0_c00201{color:transparent;}
.fs3_c00201{font-size:54.000000px;}
.fs4_c00201{font-size:60.000000px;}
.fs2_c00201{font-size:66.000000px;}
.fs0_c00201{font-size:72.000000px;}
.fs1_c00201{font-size:78.000000px;}
.y0_c00201{bottom:0.000000px;}
.y38_c00201{bottom:190.200000px;}
.y6c_c00201{bottom:192.600000px;}
.y37_c00201{bottom:204.900000px;}
.y6b_c00201{bottom:210.300000px;}
.y36_c00201{bottom:219.300000px;}
.y6a_c00201{bottom:228.300000px;}
.y35_c00201{bottom:232.950000px;}
.y69_c00201{bottom:246.000000px;}
.y34_c00201{bottom:247.350000px;}
.y33_c00201{bottom:261.750000px;}
.y68_c00201{bottom:264.000000px;}
.y32_c00201{bottom:276.150000px;}
.y67_c00201{bottom:281.700000px;}
.y31_c00201{bottom:290.250000px;}
.y66_c00201{bottom:299.700000px;}
.y30_c00201{bottom:304.650000px;}
.y65_c00201{bottom:317.700000px;}
.y2f_c00201{bottom:319.350000px;}
.y2e_c00201{bottom:333.750000px;}
.y64_c00201{bottom:335.400000px;}
.y2d_c00201{bottom:347.850000px;}
.y63_c00201{bottom:353.400000px;}
.y2c_c00201{bottom:362.250000px;}
.y62_c00201{bottom:371.100000px;}
.y2b_c00201{bottom:376.650000px;}
.y2a_c00201{bottom:389.250000px;}
.y61_c00201{bottom:389.850000px;}
.y29_c00201{bottom:405.150000px;}
.y60_c00201{bottom:406.950000px;}
.y28_c00201{bottom:422.100000px;}
.y5f_c00201{bottom:424.650000px;}
.y27_c00201{bottom:434.400000px;}
.y5e_c00201{bottom:442.350000px;}
.y26_c00201{bottom:448.500000px;}
.y5d_c00201{bottom:460.050000px;}
.y5c_c00201{bottom:478.050000px;}
.y25_c00201{bottom:486.450000px;}
.y5b_c00201{bottom:495.900000px;}
.y24_c00201{bottom:504.150000px;}
.y5a_c00201{bottom:513.600000px;}
.y23_c00201{bottom:521.850000px;}
.y59_c00201{bottom:531.600000px;}
.y22_c00201{bottom:539.850000px;}
.y58_c00201{bottom:549.600000px;}
.y21_c00201{bottom:557.550000px;}
.y57_c00201{bottom:567.300000px;}
.y20_c00201{bottom:575.250000px;}
.y56_c00201{bottom:585.000000px;}
.y1f_c00201{bottom:593.250000px;}
.y55_c00201{bottom:603.000000px;}
.y1e_c00201{bottom:610.500000px;}
.y54_c00201{bottom:620.250000px;}
.y1d_c00201{bottom:628.500000px;}
.y53_c00201{bottom:638.250000px;}
.y1c_c00201{bottom:646.500000px;}
.y52_c00201{bottom:656.250000px;}
.y1b_c00201{bottom:664.200000px;}
.y51_c00201{bottom:674.250000px;}
.y1a_c00201{bottom:681.150000px;}
.y50_c00201{bottom:691.950000px;}
.y19_c00201{bottom:699.450000px;}
.y4f_c00201{bottom:709.650000px;}
.y18_c00201{bottom:717.450000px;}
.y4e_c00201{bottom:727.650000px;}
.y17_c00201{bottom:739.050000px;}
.y4d_c00201{bottom:745.650000px;}
.y16_c00201{bottom:756.750000px;}
.y4c_c00201{bottom:763.950000px;}
.y15_c00201{bottom:778.650000px;}
.y4b_c00201{bottom:781.200000px;}
.y14_c00201{bottom:796.950000px;}
.y4a_c00201{bottom:798.450000px;}
.y13_c00201{bottom:814.650000px;}
.y49_c00201{bottom:816.450000px;}
.y12_c00201{bottom:831.900000px;}
.y48_c00201{bottom:834.150000px;}
.y11_c00201{bottom:849.900000px;}
.y47_c00201{bottom:851.850000px;}
.y10_c00201{bottom:867.600000px;}
.y46_c00201{bottom:869.550000px;}
.yf_c00201{bottom:885.300000px;}
.y45_c00201{bottom:887.550000px;}
.ye_c00201{bottom:903.600000px;}
.y44_c00201{bottom:905.250000px;}
.yd_c00201{bottom:920.850000px;}
.y43_c00201{bottom:923.250000px;}
.y42_c00201{bottom:940.950000px;}
.yc_c00201{bottom:942.450000px;}
.y41_c00201{bottom:958.650000px;}
.yb_c00201{bottom:963.000000px;}
.y40_c00201{bottom:976.650000px;}
.ya_c00201{bottom:983.100000px;}
.y9_c00201{bottom:1000.800000px;}
.y3f_c00201{bottom:1002.600000px;}
.y8_c00201{bottom:1018.800000px;}
.y3e_c00201{bottom:1020.600000px;}
.y3d_c00201{bottom:1038.300000px;}
.y7_c00201{bottom:1040.400000px;}
.y6_c00201{bottom:1058.400000px;}
.y3c_c00201{bottom:1060.500000px;}
.y5_c00201{bottom:1076.100000px;}
.y3b_c00201{bottom:1078.500000px;}
.y3a_c00201{bottom:1096.200000px;}
.y4_c00201{bottom:1097.700000px;}
.y39_c00201{bottom:1113.900000px;}
.y3_c00201{bottom:1115.700000px;}
.y1_c00201{bottom:1141.200000px;}
.y2_c00201{bottom:1141.500000px;}
.h4_c00201{height:54.000000px;}
.h5_c00201{height:60.000000px;}
.h3_c00201{height:66.000000px;}
.h1_c00201{height:72.000000px;}
.h2_c00201{height:78.000000px;}
.h0_c00201{height:1269.000000px;}
.w1_c00201{width:963.000000px;}
.w0_c00201{width:963.359985px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:175.350000px;}
.x1d_c00201{left:176.400000px;}
.x36_c00201{left:177.900000px;}
.x8f_c00201{left:179.400000px;}
.x7_c00201{left:192.450000px;}
.x13_c00201{left:194.100000px;}
.x3c_c00201{left:196.050000px;}
.x7f_c00201{left:197.100000px;}
.xa9_c00201{left:198.750000px;}
.xa6_c00201{left:200.100000px;}
.x94_c00201{left:201.150000px;}
.xa5_c00201{left:203.100000px;}
.x9f_c00201{left:207.000000px;}
.x51_c00201{left:209.700000px;}
.x8_c00201{left:212.700000px;}
.x37_c00201{left:213.900000px;}
.x9a_c00201{left:215.100000px;}
.x1e_c00201{left:218.100000px;}
.x98_c00201{left:219.450000px;}
.x66_c00201{left:220.500000px;}
.xa7_c00201{left:222.300000px;}
.x89_c00201{left:223.500000px;}
.x70_c00201{left:227.250000px;}
.x52_c00201{left:228.450000px;}
.x6d_c00201{left:230.400000px;}
.x75_c00201{left:232.800000px;}
.x29_c00201{left:234.750000px;}
.x9b_c00201{left:236.700000px;}
.x61_c00201{left:238.350000px;}
.x38_c00201{left:240.600000px;}
.x6b_c00201{left:243.000000px;}
.x3d_c00201{left:246.450000px;}
.x57_c00201{left:248.250000px;}
.x8d_c00201{left:250.500000px;}
.x24_c00201{left:253.050000px;}
.x3_c00201{left:254.850000px;}
.x4d_c00201{left:256.800000px;}
.x3e_c00201{left:258.000000px;}
.x33_c00201{left:259.950000px;}
.x82_c00201{left:261.900000px;}
.x5f_c00201{left:264.900000px;}
.x14_c00201{left:266.400000px;}
.x1a_c00201{left:267.900000px;}
.x88_c00201{left:270.450000px;}
.x83_c00201{left:271.650000px;}
.x9_c00201{left:273.900000px;}
.x92_c00201{left:275.100000px;}
.x76_c00201{left:277.050000px;}
.x71_c00201{left:278.400000px;}
.x1b_c00201{left:280.800000px;}
.xaa_c00201{left:282.300000px;}
.x6c_c00201{left:283.650000px;}
.x34_c00201{left:285.150000px;}
.x5b_c00201{left:286.200000px;}
.x2a_c00201{left:289.050000px;}
.x8a_c00201{left:290.850000px;}
.x2f_c00201{left:293.550000px;}
.x95_c00201{left:294.750000px;}
.xa_c00201{left:297.300000px;}
.x7c_c00201{left:300.000000px;}
.x67_c00201{left:301.350000px;}
.x42_c00201{left:302.400000px;}
.x58_c00201{left:305.100000px;}
.x2b_c00201{left:306.750000px;}
.x15_c00201{left:308.100000px;}
.x9e_c00201{left:310.500000px;}
.x39_c00201{left:312.300000px;}
.x72_c00201{left:313.350000px;}
.x30_c00201{left:314.400000px;}
.x7a_c00201{left:315.450000px;}
.x53_c00201{left:316.950000px;}
.x3f_c00201{left:321.000000px;}
.xb_c00201{left:322.800000px;}
.xa0_c00201{left:325.500000px;}
.x1f_c00201{left:326.700000px;}
.x31_c00201{left:328.800000px;}
.x1c_c00201{left:332.250000px;}
.x97_c00201{left:333.300000px;}
.x47_c00201{left:335.550000px;}
.x16_c00201{left:336.900000px;}
.x5c_c00201{left:338.700000px;}
.x35_c00201{left:340.200000px;}
.x7d_c00201{left:342.150000px;}
.x2c_c00201{left:344.250000px;}
.x25_c00201{left:345.600000px;}
.x73_c00201{left:346.800000px;}
.x60_c00201{left:349.500000px;}
.x4_c00201{left:350.550000px;}
.x9c_c00201{left:351.600000px;}
.x4e_c00201{left:353.250000px;}
.x43_c00201{left:355.350000px;}
.x48_c00201{left:358.650000px;}
.xc_c00201{left:360.600000px;}
.x20_c00201{left:361.950000px;}
.x77_c00201{left:364.200000px;}
.x68_c00201{left:366.150000px;}
.x62_c00201{left:368.250000px;}
.x26_c00201{left:369.300000px;}
.xd_c00201{left:370.350000px;}
.x84_c00201{left:371.700000px;}
.xa1_c00201{left:373.050000px;}
.x44_c00201{left:376.200000px;}
.x32_c00201{left:380.250000px;}
.x5d_c00201{left:382.200000px;}
.x85_c00201{left:383.250000px;}
.xa8_c00201{left:384.750000px;}
.x3a_c00201{left:385.800000px;}
.x27_c00201{left:387.000000px;}
.xe_c00201{left:389.100000px;}
.x7b_c00201{left:391.500000px;}
.x59_c00201{left:393.000000px;}
.x54_c00201{left:394.800000px;}
.x17_c00201{left:396.000000px;}
.x6e_c00201{left:398.250000px;}
.x8b_c00201{left:399.600000px;}
.x40_c00201{left:401.550000px;}
.xa2_c00201{left:402.600000px;}
.x64_c00201{left:403.800000px;}
.x21_c00201{left:405.150000px;}
.x8c_c00201{left:408.300000px;}
.x2d_c00201{left:409.800000px;}
.x2_c00201{left:413.250000px;}
.x4f_c00201{left:415.200000px;}
.x99_c00201{left:416.850000px;}
.x49_c00201{left:418.050000px;}
.x18_c00201{left:420.900000px;}
.x28_c00201{left:422.250000px;}
.x74_c00201{left:423.900000px;}
.x2e_c00201{left:424.950000px;}
.x8e_c00201{left:428.550000px;}
.x69_c00201{left:430.200000px;}
.x45_c00201{left:431.250000px;}
.x90_c00201{left:432.600000px;}
.x50_c00201{left:433.950000px;}
.x41_c00201{left:435.750000px;}
.x4a_c00201{left:439.650000px;}
.x6a_c00201{left:442.050000px;}
.x55_c00201{left:443.400000px;}
.x9d_c00201{left:445.200000px;}
.x96_c00201{left:448.500000px;}
.x93_c00201{left:450.000000px;}
.xf_c00201{left:451.350000px;}
.x22_c00201{left:453.750000px;}
.x46_c00201{left:455.400000px;}
.x80_c00201{left:457.350000px;}
.x78_c00201{left:461.850000px;}
.x5_c00201{left:462.900000px;}
.x65_c00201{left:464.250000px;}
.x4b_c00201{left:465.600000px;}
.x3b_c00201{left:466.800000px;}
.x63_c00201{left:468.300000px;}
.x23_c00201{left:470.250000px;}
.x19_c00201{left:472.050000px;}
.x91_c00201{left:473.250000px;}
.x6f_c00201{left:474.600000px;}
.x10_c00201{left:478.050000px;}
.xab_c00201{left:481.500000px;}
.x86_c00201{left:482.550000px;}
.x5a_c00201{left:483.600000px;}
.x81_c00201{left:485.400000px;}
.xa4_c00201{left:488.100000px;}
.x11_c00201{left:489.600000px;}
.x4c_c00201{left:491.550000px;}
.x56_c00201{left:492.600000px;}
.x7e_c00201{left:494.850000px;}
.x5e_c00201{left:496.350000px;}
.x12_c00201{left:500.400000px;}
.x79_c00201{left:501.450000px;}
.x87_c00201{left:503.100000px;}
.xa3_c00201{left:509.850000px;}
.x6_c00201{left:519.750000px;}
.xd4_c00201{left:533.550000px;}
.x131_c00201{left:534.600000px;}
.xac_c00201{left:549.000000px;}
.xd9_c00201{left:550.050000px;}
.x10c_c00201{left:552.000000px;}
.xc5_c00201{left:568.050000px;}
.xb5_c00201{left:569.100000px;}
.xcc_c00201{left:570.900000px;}
.xda_c00201{left:573.450000px;}
.xf2_c00201{left:574.500000px;}
.x102_c00201{left:577.350000px;}
.x13f_c00201{left:580.650000px;}
.x121_c00201{left:582.750000px;}
.x105_c00201{left:584.400000px;}
.xbd_c00201{left:585.450000px;}
.x132_c00201{left:587.850000px;}
.xd5_c00201{left:589.650000px;}
.xe4_c00201{left:590.850000px;}
.x106_c00201{left:591.900000px;}
.xc6_c00201{left:593.250000px;}
.x127_c00201{left:595.500000px;}
.xfb_c00201{left:598.650000px;}
.xea_c00201{left:600.750000px;}
.xde_c00201{left:602.850000px;}
.xad_c00201{left:606.300000px;}
.x11a_c00201{left:607.650000px;}
.x117_c00201{left:610.350000px;}
.x12e_c00201{left:611.700000px;}
.xb6_c00201{left:614.100000px;}
.xf8_c00201{left:615.900000px;}
.xfc_c00201{left:618.750000px;}
.x135_c00201{left:620.850000px;}
.xc2_c00201{left:622.050000px;}
.xe5_c00201{left:623.250000px;}
.x10d_c00201{left:625.050000px;}
.x146_c00201{left:626.700000px;}
.x10e_c00201{left:628.950000px;}
.x145_c00201{left:632.700000px;}
.x118_c00201{left:633.750000px;}
.xf3_c00201{left:636.000000px;}
.x123_c00201{left:637.500000px;}
.xae_c00201{left:639.000000px;}
.xb7_c00201{left:641.400000px;}
.xcd_c00201{left:644.400000px;}
.xeb_c00201{left:647.850000px;}
.x110_c00201{left:649.800000px;}
.xc3_c00201{left:652.350000px;}
.xaf_c00201{left:654.450000px;}
.xe6_c00201{left:656.700000px;}
.xfd_c00201{left:659.100000px;}
.x107_c00201{left:660.600000px;}
.xce_c00201{left:663.150000px;}
.x13d_c00201{left:666.600000px;}
.xec_c00201{left:669.150000px;}
.x142_c00201{left:670.500000px;}
.xd6_c00201{left:673.800000px;}
.xdb_c00201{left:675.750000px;}
.x13a_c00201{left:676.800000px;}
.xfe_c00201{left:677.850000px;}
.xbe_c00201{left:679.800000px;}
.xf4_c00201{left:681.750000px;}
.xef_c00201{left:683.700000px;}
.xcf_c00201{left:685.800000px;}
.x136_c00201{left:687.150000px;}
.xc7_c00201{left:689.700000px;}
.x10f_c00201{left:690.900000px;}
.x128_c00201{left:691.950000px;}
.x12f_c00201{left:693.000000px;}
.x111_c00201{left:694.050000px;}
.xc4_c00201{left:695.250000px;}
.xb0_c00201{left:697.650000px;}
.x148_c00201{left:699.000000px;}
.xb8_c00201{left:701.850000px;}
.x11b_c00201{left:704.100000px;}
.xf9_c00201{left:708.000000px;}
.xc8_c00201{left:709.200000px;}
.xed_c00201{left:712.350000px;}
.x113_c00201{left:713.700000px;}
.x108_c00201{left:716.400000px;}
.xb1_c00201{left:717.450000px;}
.x149_c00201{left:718.500000px;}
.xdf_c00201{left:721.200000px;}
.x143_c00201{left:723.750000px;}
.x129_c00201{left:725.400000px;}
.xee_c00201{left:726.450000px;}
.x103_c00201{left:727.950000px;}
.xe0_c00201{left:729.150000px;}
.x124_c00201{left:730.350000px;}
.x115_c00201{left:732.750000px;}
.xb9_c00201{left:735.750000px;}
.x109_c00201{left:737.250000px;}
.xff_c00201{left:738.300000px;}
.x11c_c00201{left:740.100000px;}
.xe7_c00201{left:741.600000px;}
.x134_c00201{left:742.800000px;}
.xdc_c00201{left:745.650000px;}
.x12a_c00201{left:746.700000px;}
.xb2_c00201{left:748.050000px;}
.x14b_c00201{left:749.850000px;}
.x13e_c00201{left:751.500000px;}
.xe1_c00201{left:752.550000px;}
.xd0_c00201{left:754.950000px;}
.xbf_c00201{left:756.750000px;}
.x11f_c00201{left:758.550000px;}
.x119_c00201{left:762.150000px;}
.xc9_c00201{left:763.500000px;}
.x125_c00201{left:764.550000px;}
.xd7_c00201{left:766.200000px;}
.x133_c00201{left:768.000000px;}
.x104_c00201{left:769.350000px;}
.xf5_c00201{left:770.400000px;}
.xb3_c00201{left:772.500000px;}
.x137_c00201{left:773.850000px;}
.xd8_c00201{left:775.200000px;}
.xd1_c00201{left:777.600000px;}
.x11d_c00201{left:778.650000px;}
.x14c_c00201{left:779.700000px;}
.xe2_c00201{left:781.050000px;}
.x144_c00201{left:783.150000px;}
.xe8_c00201{left:785.100000px;}
.xca_c00201{left:786.900000px;}
.xf0_c00201{left:788.700000px;}
.xba_c00201{left:791.550000px;}
.x14a_c00201{left:793.050000px;}
.x12b_c00201{left:794.250000px;}
.x116_c00201{left:795.450000px;}
.x126_c00201{left:796.800000px;}
.x12d_c00201{left:800.400000px;}
.xe9_c00201{left:801.600000px;}
.xe3_c00201{left:802.950000px;}
.x138_c00201{left:804.300000px;}
.x147_c00201{left:805.650000px;}
.x12c_c00201{left:807.600000px;}
.xc0_c00201{left:809.700000px;}
.x100_c00201{left:811.050000px;}
.x140_c00201{left:813.300000px;}
.x10a_c00201{left:815.100000px;}
.x114_c00201{left:818.400000px;}
.xbb_c00201{left:821.400000px;}
.x13b_c00201{left:822.900000px;}
.xf6_c00201{left:826.500000px;}
.x11e_c00201{left:828.750000px;}
.xc1_c00201{left:830.250000px;}
.x101_c00201{left:832.950000px;}
.xcb_c00201{left:834.000000px;}
.x141_c00201{left:836.400000px;}
.x112_c00201{left:837.750000px;}
.xb4_c00201{left:838.800000px;}
.xfa_c00201{left:840.450000px;}
.xd2_c00201{left:842.400000px;}
.xf7_c00201{left:843.450000px;}
.x120_c00201{left:846.300000px;}
.xdd_c00201{left:847.650000px;}
.xf1_c00201{left:849.150000px;}
.x122_c00201{left:853.800000px;}
.xbc_c00201{left:855.900000px;}
.xd3_c00201{left:857.100000px;}
.x139_c00201{left:858.300000px;}
.x10b_c00201{left:864.450000px;}
.x130_c00201{left:868.650000px;}
.x13c_c00201{left:878.700000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws0_c00201{word-spacing:-12.308588pt;}
.ws3_c00201{word-spacing:-1.363636pt;}
.ws5_c00201{word-spacing:0.000000pt;}
.ws2_c00201{word-spacing:2.444444pt;}
.ws1_c00201{word-spacing:2.972127pt;}
.ws4_c00201{word-spacing:6.821705pt;}
.fs3_c00201{font-size:48.000000pt;}
.fs4_c00201{font-size:53.333333pt;}
.fs2_c00201{font-size:58.666667pt;}
.fs0_c00201{font-size:64.000000pt;}
.fs1_c00201{font-size:69.333333pt;}
.y0_c00201{bottom:0.000000pt;}
.y38_c00201{bottom:169.066667pt;}
.y6c_c00201{bottom:171.200000pt;}
.y37_c00201{bottom:182.133333pt;}
.y6b_c00201{bottom:186.933333pt;}
.y36_c00201{bottom:194.933333pt;}
.y6a_c00201{bottom:202.933333pt;}
.y35_c00201{bottom:207.066667pt;}
.y69_c00201{bottom:218.666667pt;}
.y34_c00201{bottom:219.866667pt;}
.y33_c00201{bottom:232.666667pt;}
.y68_c00201{bottom:234.666667pt;}
.y32_c00201{bottom:245.466667pt;}
.y67_c00201{bottom:250.400000pt;}
.y31_c00201{bottom:258.000000pt;}
.y66_c00201{bottom:266.400000pt;}
.y30_c00201{bottom:270.800000pt;}
.y65_c00201{bottom:282.400000pt;}
.y2f_c00201{bottom:283.866667pt;}
.y2e_c00201{bottom:296.666667pt;}
.y64_c00201{bottom:298.133333pt;}
.y2d_c00201{bottom:309.200000pt;}
.y63_c00201{bottom:314.133333pt;}
.y2c_c00201{bottom:322.000000pt;}
.y62_c00201{bottom:329.866667pt;}
.y2b_c00201{bottom:334.800000pt;}
.y2a_c00201{bottom:346.000000pt;}
.y61_c00201{bottom:346.533333pt;}
.y29_c00201{bottom:360.133333pt;}
.y60_c00201{bottom:361.733333pt;}
.y28_c00201{bottom:375.200000pt;}
.y5f_c00201{bottom:377.466667pt;}
.y27_c00201{bottom:386.133333pt;}
.y5e_c00201{bottom:393.200000pt;}
.y26_c00201{bottom:398.666667pt;}
.y5d_c00201{bottom:408.933333pt;}
.y5c_c00201{bottom:424.933333pt;}
.y25_c00201{bottom:432.400000pt;}
.y5b_c00201{bottom:440.800000pt;}
.y24_c00201{bottom:448.133333pt;}
.y5a_c00201{bottom:456.533333pt;}
.y23_c00201{bottom:463.866667pt;}
.y59_c00201{bottom:472.533333pt;}
.y22_c00201{bottom:479.866667pt;}
.y58_c00201{bottom:488.533333pt;}
.y21_c00201{bottom:495.600000pt;}
.y57_c00201{bottom:504.266667pt;}
.y20_c00201{bottom:511.333333pt;}
.y56_c00201{bottom:520.000000pt;}
.y1f_c00201{bottom:527.333333pt;}
.y55_c00201{bottom:536.000000pt;}
.y1e_c00201{bottom:542.666667pt;}
.y54_c00201{bottom:551.333333pt;}
.y1d_c00201{bottom:558.666667pt;}
.y53_c00201{bottom:567.333333pt;}
.y1c_c00201{bottom:574.666667pt;}
.y52_c00201{bottom:583.333333pt;}
.y1b_c00201{bottom:590.400000pt;}
.y51_c00201{bottom:599.333333pt;}
.y1a_c00201{bottom:605.466667pt;}
.y50_c00201{bottom:615.066667pt;}
.y19_c00201{bottom:621.733333pt;}
.y4f_c00201{bottom:630.800000pt;}
.y18_c00201{bottom:637.733333pt;}
.y4e_c00201{bottom:646.800000pt;}
.y17_c00201{bottom:656.933333pt;}
.y4d_c00201{bottom:662.800000pt;}
.y16_c00201{bottom:672.666667pt;}
.y4c_c00201{bottom:679.066667pt;}
.y15_c00201{bottom:692.133333pt;}
.y4b_c00201{bottom:694.400000pt;}
.y14_c00201{bottom:708.400000pt;}
.y4a_c00201{bottom:709.733333pt;}
.y13_c00201{bottom:724.133333pt;}
.y49_c00201{bottom:725.733333pt;}
.y12_c00201{bottom:739.466667pt;}
.y48_c00201{bottom:741.466667pt;}
.y11_c00201{bottom:755.466667pt;}
.y47_c00201{bottom:757.200000pt;}
.y10_c00201{bottom:771.200000pt;}
.y46_c00201{bottom:772.933333pt;}
.yf_c00201{bottom:786.933333pt;}
.y45_c00201{bottom:788.933333pt;}
.ye_c00201{bottom:803.200000pt;}
.y44_c00201{bottom:804.666667pt;}
.yd_c00201{bottom:818.533333pt;}
.y43_c00201{bottom:820.666667pt;}
.y42_c00201{bottom:836.400000pt;}
.yc_c00201{bottom:837.733333pt;}
.y41_c00201{bottom:852.133333pt;}
.yb_c00201{bottom:856.000000pt;}
.y40_c00201{bottom:868.133333pt;}
.ya_c00201{bottom:873.866667pt;}
.y9_c00201{bottom:889.600000pt;}
.y3f_c00201{bottom:891.200000pt;}
.y8_c00201{bottom:905.600000pt;}
.y3e_c00201{bottom:907.200000pt;}
.y3d_c00201{bottom:922.933333pt;}
.y7_c00201{bottom:924.800000pt;}
.y6_c00201{bottom:940.800000pt;}
.y3c_c00201{bottom:942.666667pt;}
.y5_c00201{bottom:956.533333pt;}
.y3b_c00201{bottom:958.666667pt;}
.y3a_c00201{bottom:974.400000pt;}
.y4_c00201{bottom:975.733333pt;}
.y39_c00201{bottom:990.133333pt;}
.y3_c00201{bottom:991.733333pt;}
.y1_c00201{bottom:1014.400000pt;}
.y2_c00201{bottom:1014.666667pt;}
.h4_c00201{height:48.000000pt;}
.h5_c00201{height:53.333333pt;}
.h3_c00201{height:58.666667pt;}
.h1_c00201{height:64.000000pt;}
.h2_c00201{height:69.333333pt;}
.h0_c00201{height:1128.000000pt;}
.w1_c00201{width:856.000000pt;}
.w0_c00201{width:856.319987pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:155.866667pt;}
.x1d_c00201{left:156.800000pt;}
.x36_c00201{left:158.133333pt;}
.x8f_c00201{left:159.466667pt;}
.x7_c00201{left:171.066667pt;}
.x13_c00201{left:172.533333pt;}
.x3c_c00201{left:174.266667pt;}
.x7f_c00201{left:175.200000pt;}
.xa9_c00201{left:176.666667pt;}
.xa6_c00201{left:177.866667pt;}
.x94_c00201{left:178.800000pt;}
.xa5_c00201{left:180.533333pt;}
.x9f_c00201{left:184.000000pt;}
.x51_c00201{left:186.400000pt;}
.x8_c00201{left:189.066667pt;}
.x37_c00201{left:190.133333pt;}
.x9a_c00201{left:191.200000pt;}
.x1e_c00201{left:193.866667pt;}
.x98_c00201{left:195.066667pt;}
.x66_c00201{left:196.000000pt;}
.xa7_c00201{left:197.600000pt;}
.x89_c00201{left:198.666667pt;}
.x70_c00201{left:202.000000pt;}
.x52_c00201{left:203.066667pt;}
.x6d_c00201{left:204.800000pt;}
.x75_c00201{left:206.933333pt;}
.x29_c00201{left:208.666667pt;}
.x9b_c00201{left:210.400000pt;}
.x61_c00201{left:211.866667pt;}
.x38_c00201{left:213.866667pt;}
.x6b_c00201{left:216.000000pt;}
.x3d_c00201{left:219.066667pt;}
.x57_c00201{left:220.666667pt;}
.x8d_c00201{left:222.666667pt;}
.x24_c00201{left:224.933333pt;}
.x3_c00201{left:226.533333pt;}
.x4d_c00201{left:228.266667pt;}
.x3e_c00201{left:229.333333pt;}
.x33_c00201{left:231.066667pt;}
.x82_c00201{left:232.800000pt;}
.x5f_c00201{left:235.466667pt;}
.x14_c00201{left:236.800000pt;}
.x1a_c00201{left:238.133333pt;}
.x88_c00201{left:240.400000pt;}
.x83_c00201{left:241.466667pt;}
.x9_c00201{left:243.466667pt;}
.x92_c00201{left:244.533333pt;}
.x76_c00201{left:246.266667pt;}
.x71_c00201{left:247.466667pt;}
.x1b_c00201{left:249.600000pt;}
.xaa_c00201{left:250.933333pt;}
.x6c_c00201{left:252.133333pt;}
.x34_c00201{left:253.466667pt;}
.x5b_c00201{left:254.400000pt;}
.x2a_c00201{left:256.933333pt;}
.x8a_c00201{left:258.533333pt;}
.x2f_c00201{left:260.933333pt;}
.x95_c00201{left:262.000000pt;}
.xa_c00201{left:264.266667pt;}
.x7c_c00201{left:266.666667pt;}
.x67_c00201{left:267.866667pt;}
.x42_c00201{left:268.800000pt;}
.x58_c00201{left:271.200000pt;}
.x2b_c00201{left:272.666667pt;}
.x15_c00201{left:273.866667pt;}
.x9e_c00201{left:276.000000pt;}
.x39_c00201{left:277.600000pt;}
.x72_c00201{left:278.533333pt;}
.x30_c00201{left:279.466667pt;}
.x7a_c00201{left:280.400000pt;}
.x53_c00201{left:281.733333pt;}
.x3f_c00201{left:285.333333pt;}
.xb_c00201{left:286.933333pt;}
.xa0_c00201{left:289.333333pt;}
.x1f_c00201{left:290.400000pt;}
.x31_c00201{left:292.266667pt;}
.x1c_c00201{left:295.333333pt;}
.x97_c00201{left:296.266667pt;}
.x47_c00201{left:298.266667pt;}
.x16_c00201{left:299.466667pt;}
.x5c_c00201{left:301.066667pt;}
.x35_c00201{left:302.400000pt;}
.x7d_c00201{left:304.133333pt;}
.x2c_c00201{left:306.000000pt;}
.x25_c00201{left:307.200000pt;}
.x73_c00201{left:308.266667pt;}
.x60_c00201{left:310.666667pt;}
.x4_c00201{left:311.600000pt;}
.x9c_c00201{left:312.533333pt;}
.x4e_c00201{left:314.000000pt;}
.x43_c00201{left:315.866667pt;}
.x48_c00201{left:318.800000pt;}
.xc_c00201{left:320.533333pt;}
.x20_c00201{left:321.733333pt;}
.x77_c00201{left:323.733333pt;}
.x68_c00201{left:325.466667pt;}
.x62_c00201{left:327.333333pt;}
.x26_c00201{left:328.266667pt;}
.xd_c00201{left:329.200000pt;}
.x84_c00201{left:330.400000pt;}
.xa1_c00201{left:331.600000pt;}
.x44_c00201{left:334.400000pt;}
.x32_c00201{left:338.000000pt;}
.x5d_c00201{left:339.733333pt;}
.x85_c00201{left:340.666667pt;}
.xa8_c00201{left:342.000000pt;}
.x3a_c00201{left:342.933333pt;}
.x27_c00201{left:344.000000pt;}
.xe_c00201{left:345.866667pt;}
.x7b_c00201{left:348.000000pt;}
.x59_c00201{left:349.333333pt;}
.x54_c00201{left:350.933333pt;}
.x17_c00201{left:352.000000pt;}
.x6e_c00201{left:354.000000pt;}
.x8b_c00201{left:355.200000pt;}
.x40_c00201{left:356.933333pt;}
.xa2_c00201{left:357.866667pt;}
.x64_c00201{left:358.933333pt;}
.x21_c00201{left:360.133333pt;}
.x8c_c00201{left:362.933333pt;}
.x2d_c00201{left:364.266667pt;}
.x2_c00201{left:367.333333pt;}
.x4f_c00201{left:369.066667pt;}
.x99_c00201{left:370.533333pt;}
.x49_c00201{left:371.600000pt;}
.x18_c00201{left:374.133333pt;}
.x28_c00201{left:375.333333pt;}
.x74_c00201{left:376.800000pt;}
.x2e_c00201{left:377.733333pt;}
.x8e_c00201{left:380.933333pt;}
.x69_c00201{left:382.400000pt;}
.x45_c00201{left:383.333333pt;}
.x90_c00201{left:384.533333pt;}
.x50_c00201{left:385.733333pt;}
.x41_c00201{left:387.333333pt;}
.x4a_c00201{left:390.800000pt;}
.x6a_c00201{left:392.933333pt;}
.x55_c00201{left:394.133333pt;}
.x9d_c00201{left:395.733333pt;}
.x96_c00201{left:398.666667pt;}
.x93_c00201{left:400.000000pt;}
.xf_c00201{left:401.200000pt;}
.x22_c00201{left:403.333333pt;}
.x46_c00201{left:404.800000pt;}
.x80_c00201{left:406.533333pt;}
.x78_c00201{left:410.533333pt;}
.x5_c00201{left:411.466667pt;}
.x65_c00201{left:412.666667pt;}
.x4b_c00201{left:413.866667pt;}
.x3b_c00201{left:414.933333pt;}
.x63_c00201{left:416.266667pt;}
.x23_c00201{left:418.000000pt;}
.x19_c00201{left:419.600000pt;}
.x91_c00201{left:420.666667pt;}
.x6f_c00201{left:421.866667pt;}
.x10_c00201{left:424.933333pt;}
.xab_c00201{left:428.000000pt;}
.x86_c00201{left:428.933333pt;}
.x5a_c00201{left:429.866667pt;}
.x81_c00201{left:431.466667pt;}
.xa4_c00201{left:433.866667pt;}
.x11_c00201{left:435.200000pt;}
.x4c_c00201{left:436.933333pt;}
.x56_c00201{left:437.866667pt;}
.x7e_c00201{left:439.866667pt;}
.x5e_c00201{left:441.200000pt;}
.x12_c00201{left:444.800000pt;}
.x79_c00201{left:445.733333pt;}
.x87_c00201{left:447.200000pt;}
.xa3_c00201{left:453.200000pt;}
.x6_c00201{left:462.000000pt;}
.xd4_c00201{left:474.266667pt;}
.x131_c00201{left:475.200000pt;}
.xac_c00201{left:488.000000pt;}
.xd9_c00201{left:488.933333pt;}
.x10c_c00201{left:490.666667pt;}
.xc5_c00201{left:504.933333pt;}
.xb5_c00201{left:505.866667pt;}
.xcc_c00201{left:507.466667pt;}
.xda_c00201{left:509.733333pt;}
.xf2_c00201{left:510.666667pt;}
.x102_c00201{left:513.200000pt;}
.x13f_c00201{left:516.133333pt;}
.x121_c00201{left:518.000000pt;}
.x105_c00201{left:519.466667pt;}
.xbd_c00201{left:520.400000pt;}
.x132_c00201{left:522.533333pt;}
.xd5_c00201{left:524.133333pt;}
.xe4_c00201{left:525.200000pt;}
.x106_c00201{left:526.133333pt;}
.xc6_c00201{left:527.333333pt;}
.x127_c00201{left:529.333333pt;}
.xfb_c00201{left:532.133333pt;}
.xea_c00201{left:534.000000pt;}
.xde_c00201{left:535.866667pt;}
.xad_c00201{left:538.933333pt;}
.x11a_c00201{left:540.133333pt;}
.x117_c00201{left:542.533333pt;}
.x12e_c00201{left:543.733333pt;}
.xb6_c00201{left:545.866667pt;}
.xf8_c00201{left:547.466667pt;}
.xfc_c00201{left:550.000000pt;}
.x135_c00201{left:551.866667pt;}
.xc2_c00201{left:552.933333pt;}
.xe5_c00201{left:554.000000pt;}
.x10d_c00201{left:555.600000pt;}
.x146_c00201{left:557.066667pt;}
.x10e_c00201{left:559.066667pt;}
.x145_c00201{left:562.400000pt;}
.x118_c00201{left:563.333333pt;}
.xf3_c00201{left:565.333333pt;}
.x123_c00201{left:566.666667pt;}
.xae_c00201{left:568.000000pt;}
.xb7_c00201{left:570.133333pt;}
.xcd_c00201{left:572.800000pt;}
.xeb_c00201{left:575.866667pt;}
.x110_c00201{left:577.600000pt;}
.xc3_c00201{left:579.866667pt;}
.xaf_c00201{left:581.733333pt;}
.xe6_c00201{left:583.733333pt;}
.xfd_c00201{left:585.866667pt;}
.x107_c00201{left:587.200000pt;}
.xce_c00201{left:589.466667pt;}
.x13d_c00201{left:592.533333pt;}
.xec_c00201{left:594.800000pt;}
.x142_c00201{left:596.000000pt;}
.xd6_c00201{left:598.933333pt;}
.xdb_c00201{left:600.666667pt;}
.x13a_c00201{left:601.600000pt;}
.xfe_c00201{left:602.533333pt;}
.xbe_c00201{left:604.266667pt;}
.xf4_c00201{left:606.000000pt;}
.xef_c00201{left:607.733333pt;}
.xcf_c00201{left:609.600000pt;}
.x136_c00201{left:610.800000pt;}
.xc7_c00201{left:613.066667pt;}
.x10f_c00201{left:614.133333pt;}
.x128_c00201{left:615.066667pt;}
.x12f_c00201{left:616.000000pt;}
.x111_c00201{left:616.933333pt;}
.xc4_c00201{left:618.000000pt;}
.xb0_c00201{left:620.133333pt;}
.x148_c00201{left:621.333333pt;}
.xb8_c00201{left:623.866667pt;}
.x11b_c00201{left:625.866667pt;}
.xf9_c00201{left:629.333333pt;}
.xc8_c00201{left:630.400000pt;}
.xed_c00201{left:633.200000pt;}
.x113_c00201{left:634.400000pt;}
.x108_c00201{left:636.800000pt;}
.xb1_c00201{left:637.733333pt;}
.x149_c00201{left:638.666667pt;}
.xdf_c00201{left:641.066667pt;}
.x143_c00201{left:643.333333pt;}
.x129_c00201{left:644.800000pt;}
.xee_c00201{left:645.733333pt;}
.x103_c00201{left:647.066667pt;}
.xe0_c00201{left:648.133333pt;}
.x124_c00201{left:649.200000pt;}
.x115_c00201{left:651.333333pt;}
.xb9_c00201{left:654.000000pt;}
.x109_c00201{left:655.333333pt;}
.xff_c00201{left:656.266667pt;}
.x11c_c00201{left:657.866667pt;}
.xe7_c00201{left:659.200000pt;}
.x134_c00201{left:660.266667pt;}
.xdc_c00201{left:662.800000pt;}
.x12a_c00201{left:663.733333pt;}
.xb2_c00201{left:664.933333pt;}
.x14b_c00201{left:666.533333pt;}
.x13e_c00201{left:668.000000pt;}
.xe1_c00201{left:668.933333pt;}
.xd0_c00201{left:671.066667pt;}
.xbf_c00201{left:672.666667pt;}
.x11f_c00201{left:674.266667pt;}
.x119_c00201{left:677.466667pt;}
.xc9_c00201{left:678.666667pt;}
.x125_c00201{left:679.600000pt;}
.xd7_c00201{left:681.066667pt;}
.x133_c00201{left:682.666667pt;}
.x104_c00201{left:683.866667pt;}
.xf5_c00201{left:684.800000pt;}
.xb3_c00201{left:686.666667pt;}
.x137_c00201{left:687.866667pt;}
.xd8_c00201{left:689.066667pt;}
.xd1_c00201{left:691.200000pt;}
.x11d_c00201{left:692.133333pt;}
.x14c_c00201{left:693.066667pt;}
.xe2_c00201{left:694.266667pt;}
.x144_c00201{left:696.133333pt;}
.xe8_c00201{left:697.866667pt;}
.xca_c00201{left:699.466667pt;}
.xf0_c00201{left:701.066667pt;}
.xba_c00201{left:703.600000pt;}
.x14a_c00201{left:704.933333pt;}
.x12b_c00201{left:706.000000pt;}
.x116_c00201{left:707.066667pt;}
.x126_c00201{left:708.266667pt;}
.x12d_c00201{left:711.466667pt;}
.xe9_c00201{left:712.533333pt;}
.xe3_c00201{left:713.733333pt;}
.x138_c00201{left:714.933333pt;}
.x147_c00201{left:716.133333pt;}
.x12c_c00201{left:717.866667pt;}
.xc0_c00201{left:719.733333pt;}
.x100_c00201{left:720.933333pt;}
.x140_c00201{left:722.933333pt;}
.x10a_c00201{left:724.533333pt;}
.x114_c00201{left:727.466667pt;}
.xbb_c00201{left:730.133333pt;}
.x13b_c00201{left:731.466667pt;}
.xf6_c00201{left:734.666667pt;}
.x11e_c00201{left:736.666667pt;}
.xc1_c00201{left:738.000000pt;}
.x101_c00201{left:740.400000pt;}
.xcb_c00201{left:741.333333pt;}
.x141_c00201{left:743.466667pt;}
.x112_c00201{left:744.666667pt;}
.xb4_c00201{left:745.600000pt;}
.xfa_c00201{left:747.066667pt;}
.xd2_c00201{left:748.800000pt;}
.xf7_c00201{left:749.733333pt;}
.x120_c00201{left:752.266667pt;}
.xdd_c00201{left:753.466667pt;}
.xf1_c00201{left:754.800000pt;}
.x122_c00201{left:758.933333pt;}
.xbc_c00201{left:760.800000pt;}
.xd3_c00201{left:761.866667pt;}
.x139_c00201{left:762.933333pt;}
.x10b_c00201{left:768.400000pt;}
.x130_c00201{left:772.133333pt;}
.x13c_c00201{left:781.066667pt;}
}





/* 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_c00202 {
    display:none;
  }
  .loading-indicator_c00202.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00202 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_c00202 { 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_c00202" -> "#page-container .classname_c00202")
 */
.pf_c00202 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00202 { /* 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_c00202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00202 { /* 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_c00202 { /* 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_c00202 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00202 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00202 {overflow:visible;}
  }
}
.c_c00202 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00202 { /* 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_c00202:after { /* webkit #35443 */
  content: '';
}
.t_c00202:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00202 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 */
}
.__c00202 { /* 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_c00202 { /* info for Javascript */
  display:none;
}
.l_c00202 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00202 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00202 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00202: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_c00202 {
    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_c00202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00202.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_c00202 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00202;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.000000;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;}
.m19_c00202{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.me2_c00202{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00202{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00202{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me6_c00202{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00202{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00202{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00202{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00202{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m82_c00202{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md2_c00202{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m88_c00202{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m49_c00202{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m25_c00202{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m68_c00202{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00202{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00202{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m5_c00202{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m59_c00202{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m90_c00202{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md_c00202{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m54_c00202{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00202{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md4_c00202{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m40_c00202{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m34_c00202{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma_c00202{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m85_c00202{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m24_c00202{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m13_c00202{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me8_c00202{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m23_c00202{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m77_c00202{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00202{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00202{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m47_c00202{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00202{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m21_c00202{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m97_c00202{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me7_c00202{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00202{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mae_c00202{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00202{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00202{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me0_c00202{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7_c00202{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00202{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m81_c00202{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00202{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m91_c00202{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00202{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc_c00202{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00202{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m92_c00202{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00202{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00202{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00202{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m80_c00202{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00202{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m36_c00202{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m11_c00202{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00202{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m75_c00202{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m22_c00202{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00202{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m79_c00202{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m93_c00202{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00202{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00202{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00202{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m55_c00202{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00202{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.med_c00202{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00202{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mee_c00202{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m94_c00202{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00202{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00202{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00202{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00202{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m3_c00202{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00202{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00202{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00202{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m16_c00202{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00202{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m61_c00202{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m69_c00202{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m95_c00202{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me9_c00202{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00202{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m83_c00202{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md5_c00202{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m31_c00202{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md3_c00202{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00202{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00202{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m74_c00202{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m35_c00202{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m84_c00202{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00202{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m73_c00202{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00202{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m29_c00202{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m39_c00202{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00202{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6_c00202{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00202{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00202{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m52_c00202{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m78_c00202{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m42_c00202{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m37_c00202{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m2_c00202{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00202{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00202{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00202{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m4_c00202{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00202{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mec_c00202{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m58_c00202{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00202{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me1_c00202{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb_c00202{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00202{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m43_c00202{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m26_c00202{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00202{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m62_c00202{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m89_c00202{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m20_c00202{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00202{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00202{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m14_c00202{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m98_c00202{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00202{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00202{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mac_c00202{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00202{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mba_c00202{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00202{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me5_c00202{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00202{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m56_c00202{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00202{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00202{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00202{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00202{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m86_c00202{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00202{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00202{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8_c00202{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m18_c00202{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m60_c00202{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00202{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m99_c00202{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m17_c00202{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m76_c00202{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m44_c00202{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00202{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00202{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00202{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md0_c00202{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00202{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m15_c00202{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00202{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf_c00202{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me_c00202{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00202{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.maf_c00202{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m32_c00202{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m33_c00202{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mab_c00202{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mda_c00202{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00202{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m27_c00202{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mde_c00202{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m10_c00202{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m48_c00202{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.md6_c00202{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00202{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00202{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00202{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m51_c00202{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mef_c00202{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m87_c00202{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m46_c00202{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00202{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m30_c00202{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m38_c00202{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m66_c00202{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00202{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00202{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00202{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00202{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m70_c00202{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md9_c00202{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00202{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00202{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00202{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m71_c00202{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.meb_c00202{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00202{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mca_c00202{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m67_c00202{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00202{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00202{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m65_c00202{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00202{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m53_c00202{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00202{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mad_c00202{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00202{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m50_c00202{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00202{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00202{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00202{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.md8_c00202{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m45_c00202{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m64_c00202{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00202{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00202{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00202{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00202{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.maa_c00202{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md7_c00202{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00202{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00202{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00202{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00202{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m57_c00202{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m96_c00202{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00202{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00202{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m41_c00202{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00202{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00202{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m72_c00202{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m28_c00202{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00202{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mce_c00202{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.mea_c00202{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00202{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m12_c00202{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00202{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m63_c00202{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.md1_c00202{transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00202{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.me4_c00202{transform:matrix(0.443750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443750,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{transform:matrix(0.447750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00202{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.me3_c00202{transform:matrix(0.535500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535500,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls0_c00202{letter-spacing:0.000000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{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__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00202{word-spacing:-12.285714px;}
.ws5_c00202{word-spacing:-7.951965px;}
.ws1_c00202{word-spacing:-5.829384px;}
.ws7_c00202{word-spacing:0.000000px;}
.ws2_c00202{word-spacing:3.224367px;}
.ws3_c00202{word-spacing:10.000000px;}
.ws0_c00202{word-spacing:11.818182px;}
.ws4_c00202{word-spacing:84.886700px;}
.fc0_c00202{color:transparent;}
.fs4_c00202{font-size:30.000000px;}
.fs3_c00202{font-size:36.000000px;}
.fs6_c00202{font-size:54.000000px;}
.fs5_c00202{font-size:60.000000px;}
.fs2_c00202{font-size:66.000000px;}
.fs1_c00202{font-size:72.000000px;}
.fs7_c00202{font-size:78.000000px;}
.fs0_c00202{font-size:84.000000px;}
.y0_c00202{bottom:0.000000px;}
.y68_c00202{bottom:182.850000px;}
.y37_c00202{bottom:196.500000px;}
.y67_c00202{bottom:200.400000px;}
.y36_c00202{bottom:214.800000px;}
.y66_c00202{bottom:217.650000px;}
.y35_c00202{bottom:232.800000px;}
.y65_c00202{bottom:235.650000px;}
.y34_c00202{bottom:250.500000px;}
.y64_c00202{bottom:253.350000px;}
.y33_c00202{bottom:268.800000px;}
.y63_c00202{bottom:271.050000px;}
.y32_c00202{bottom:286.500000px;}
.y62_c00202{bottom:292.800000px;}
.y31_c00202{bottom:304.200000px;}
.y61_c00202{bottom:310.800000px;}
.y30_c00202{bottom:321.450000px;}
.y60_c00202{bottom:328.500000px;}
.y2f_c00202{bottom:343.050000px;}
.y5f_c00202{bottom:346.200000px;}
.y2e_c00202{bottom:361.050000px;}
.y5e_c00202{bottom:364.200000px;}
.y2d_c00202{bottom:379.050000px;}
.y5d_c00202{bottom:381.900000px;}
.y2c_c00202{bottom:396.750000px;}
.y5c_c00202{bottom:399.600000px;}
.y2b_c00202{bottom:414.750000px;}
.y5b_c00202{bottom:417.300000px;}
.y2a_c00202{bottom:432.000000px;}
.y5a_c00202{bottom:438.900000px;}
.y29_c00202{bottom:449.700000px;}
.y59_c00202{bottom:461.250000px;}
.y28_c00202{bottom:468.000000px;}
.y58_c00202{bottom:478.500000px;}
.y27_c00202{bottom:485.700000px;}
.y57_c00202{bottom:496.500000px;}
.y26_c00202{bottom:503.400000px;}
.y25_c00202{bottom:521.100000px;}
.y56_c00202{bottom:528.000000px;}
.y55_c00202{bottom:535.950000px;}
.y24_c00202{bottom:539.100000px;}
.y54_c00202{bottom:555.450000px;}
.y23_c00202{bottom:557.100000px;}
.y53_c00202{bottom:563.400000px;}
.y22_c00202{bottom:574.800000px;}
.y52_c00202{bottom:585.750000px;}
.y21_c00202{bottom:592.800000px;}
.y51_c00202{bottom:607.650000px;}
.y20_c00202{bottom:610.500000px;}
.y50_c00202{bottom:625.650000px;}
.y1f_c00202{bottom:628.200000px;}
.y1e_c00202{bottom:646.200000px;}
.y4f_c00202{bottom:660.300000px;}
.y1d_c00202{bottom:663.450000px;}
.y1c_c00202{bottom:685.500000px;}
.y4e_c00202{bottom:699.450000px;}
.y1b_c00202{bottom:703.050000px;}
.y4d_c00202{bottom:717.450000px;}
.y1a_c00202{bottom:720.750000px;}
.y18_c00202{bottom:731.250000px;}
.y19_c00202{bottom:735.600000px;}
.y17_c00202{bottom:738.750000px;}
.y4c_c00202{bottom:743.100000px;}
.y16_c00202{bottom:760.650000px;}
.y4b_c00202{bottom:769.050000px;}
.y15_c00202{bottom:778.350000px;}
.y4a_c00202{bottom:787.350000px;}
.y14_c00202{bottom:796.350000px;}
.y49_c00202{bottom:804.750000px;}
.y13_c00202{bottom:817.800000px;}
.y48_c00202{bottom:822.450000px;}
.y12_c00202{bottom:835.800000px;}
.y47_c00202{bottom:840.150000px;}
.y11_c00202{bottom:853.500000px;}
.y46_c00202{bottom:858.150000px;}
.y10_c00202{bottom:871.200000px;}
.y45_c00202{bottom:875.850000px;}
.yf_c00202{bottom:893.400000px;}
.y44_c00202{bottom:893.550000px;}
.ye_c00202{bottom:911.100000px;}
.y43_c00202{bottom:911.550000px;}
.yd_c00202{bottom:928.800000px;}
.y42_c00202{bottom:929.550000px;}
.yc_c00202{bottom:946.500000px;}
.y41_c00202{bottom:946.800000px;}
.yb_c00202{bottom:964.500000px;}
.y40_c00202{bottom:967.650000px;}
.y3f_c00202{bottom:981.750000px;}
.ya_c00202{bottom:985.950000px;}
.y3e_c00202{bottom:997.950000px;}
.y9_c00202{bottom:1003.650000px;}
.y3d_c00202{bottom:1016.250000px;}
.y8_c00202{bottom:1021.350000px;}
.y3c_c00202{bottom:1033.950000px;}
.y7_c00202{bottom:1039.350000px;}
.y3b_c00202{bottom:1055.850000px;}
.y6_c00202{bottom:1061.400000px;}
.y3a_c00202{bottom:1073.550000px;}
.y5_c00202{bottom:1079.400000px;}
.y39_c00202{bottom:1095.900000px;}
.y4_c00202{bottom:1097.700000px;}
.y38_c00202{bottom:1113.150000px;}
.y3_c00202{bottom:1114.950000px;}
.y2_c00202{bottom:1139.100000px;}
.y1_c00202{bottom:1141.950000px;}
.h6_c00202{height:30.000000px;}
.h5_c00202{height:36.000000px;}
.h8_c00202{height:54.000000px;}
.h7_c00202{height:60.000000px;}
.h4_c00202{height:66.000000px;}
.h3_c00202{height:72.000000px;}
.h9_c00202{height:78.000000px;}
.h2_c00202{height:84.000000px;}
.h1_c00202{height:1270.500000px;}
.h0_c00202{height:1270.799927px;}
.w1_c00202{width:963.000000px;}
.w0_c00202{width:963.359985px;}
.x0_c00202{left:0.000000px;}
.x45_c00202{left:111.300000px;}
.x1c_c00202{left:112.350000px;}
.x3_c00202{left:126.300000px;}
.x1a_c00202{left:127.650000px;}
.xa_c00202{left:129.000000px;}
.x43_c00202{left:130.650000px;}
.x8b_c00202{left:137.100000px;}
.xb_c00202{left:144.450000px;}
.x46_c00202{left:146.250000px;}
.x2e_c00202{left:147.300000px;}
.x55_c00202{left:148.500000px;}
.x34_c00202{left:151.950000px;}
.x1d_c00202{left:154.050000px;}
.x39_c00202{left:157.500000px;}
.x61_c00202{left:164.550000px;}
.x5a_c00202{left:166.950000px;}
.x3f_c00202{left:168.000000px;}
.x6d_c00202{left:169.500000px;}
.x44_c00202{left:170.550000px;}
.x2f_c00202{left:172.800000px;}
.x77_c00202{left:174.900000px;}
.x8c_c00202{left:176.400000px;}
.x13_c00202{left:177.450000px;}
.x6b_c00202{left:178.650000px;}
.x81_c00202{left:180.300000px;}
.x1e_c00202{left:181.350000px;}
.x7b_c00202{left:183.150000px;}
.x2a_c00202{left:184.200000px;}
.x82_c00202{left:188.250000px;}
.x68_c00202{left:189.600000px;}
.xc_c00202{left:191.550000px;}
.x4a_c00202{left:192.600000px;}
.x22_c00202{left:194.550000px;}
.x73_c00202{left:196.500000px;}
.x5b_c00202{left:198.600000px;}
.x51_c00202{left:201.300000px;}
.x71_c00202{left:203.700000px;}
.x14_c00202{left:204.750000px;}
.x66_c00202{left:206.550000px;}
.x6c_c00202{left:207.750000px;}
.x40_c00202{left:209.100000px;}
.x4b_c00202{left:211.350000px;}
.x4_c00202{left:212.700000px;}
.x56_c00202{left:214.350000px;}
.x94_c00202{left:215.850000px;}
.xd_c00202{left:217.050000px;}
.x15_c00202{left:220.650000px;}
.x3a_c00202{left:222.000000px;}
.x2b_c00202{left:223.050000px;}
.x74_c00202{left:225.000000px;}
.x78_c00202{left:226.800000px;}
.x84_c00202{left:229.500000px;}
.x62_c00202{left:230.850000px;}
.x23_c00202{left:232.350000px;}
.x86_c00202{left:234.750000px;}
.x6e_c00202{left:236.100000px;}
.x30_c00202{left:237.600000px;}
.x5c_c00202{left:238.950000px;}
.x35_c00202{left:241.950000px;}
.x9f_c00202{left:245.850000px;}
.x8e_c00202{left:246.900000px;}
.x88_c00202{left:249.450000px;}
.x2c_c00202{left:251.100000px;}
.x1f_c00202{left:253.050000px;}
.x95_c00202{left:254.400000px;}
.x69_c00202{left:255.450000px;}
.x57_c00202{left:256.500000px;}
.x63_c00202{left:258.150000px;}
.x8d_c00202{left:259.200000px;}
.x52_c00202{left:261.450000px;}
.x27_c00202{left:263.850000px;}
.x47_c00202{left:265.050000px;}
.x16_c00202{left:267.750000px;}
.x9a_c00202{left:268.950000px;}
.x5d_c00202{left:270.600000px;}
.x9b_c00202{left:271.800000px;}
.x8f_c00202{left:272.850000px;}
.x5_c00202{left:274.200000px;}
.x9d_c00202{left:275.250000px;}
.x85_c00202{left:276.300000px;}
.x96_c00202{left:277.800000px;}
.x36_c00202{left:279.000000px;}
.x48_c00202{left:281.550000px;}
.x59_c00202{left:283.200000px;}
.x1b_c00202{left:284.550000px;}
.xe_c00202{left:286.500000px;}
.x24_c00202{left:288.900000px;}
.x6f_c00202{left:291.450000px;}
.x58_c00202{left:294.600000px;}
.x6_c00202{left:295.800000px;}
.x53_c00202{left:297.450000px;}
.x31_c00202{left:299.550000px;}
.x67_c00202{left:301.950000px;}
.x17_c00202{left:303.000000px;}
.x89_c00202{left:305.250000px;}
.xf_c00202{left:307.050000px;}
.x93_c00202{left:308.850000px;}
.x65_c00202{left:310.500000px;}
.x7_c00202{left:312.300000px;}
.x7c_c00202{left:313.500000px;}
.x7f_c00202{left:315.600000px;}
.x2d_c00202{left:317.700000px;}
.x75_c00202{left:319.650000px;}
.x10_c00202{left:323.550000px;}
.x49_c00202{left:325.500000px;}
.x4c_c00202{left:326.550000px;}
.x37_c00202{left:329.100000px;}
.x20_c00202{left:331.050000px;}
.x18_c00202{left:333.900000px;}
.x9c_c00202{left:336.150000px;}
.x1_c00202{left:340.200000px;}
.x97_c00202{left:342.600000px;}
.x64_c00202{left:343.800000px;}
.x41_c00202{left:344.850000px;}
.x90_c00202{left:346.650000px;}
.x7d_c00202{left:347.700000px;}
.x5e_c00202{left:348.750000px;}
.x80_c00202{left:349.800000px;}
.x3b_c00202{left:352.050000px;}
.x19_c00202{left:355.500000px;}
.x54_c00202{left:357.600000px;}
.x7a_c00202{left:359.850000px;}
.x98_c00202{left:362.100000px;}
.x6a_c00202{left:363.750000px;}
.x28_c00202{left:365.850000px;}
.x8_c00202{left:368.400000px;}
.x25_c00202{left:369.750000px;}
.x3c_c00202{left:371.550000px;}
.x38_c00202{left:373.800000px;}
.x91_c00202{left:376.200000px;}
.x4d_c00202{left:377.550000px;}
.x32_c00202{left:378.750000px;}
.x99_c00202{left:379.800000px;}
.x9e_c00202{left:381.450000px;}
.x83_c00202{left:385.050000px;}
.x26_c00202{left:387.000000px;}
.x11_c00202{left:389.100000px;}
.x21_c00202{left:390.450000px;}
.x87_c00202{left:391.950000px;}
.x5f_c00202{left:393.000000px;}
.x72_c00202{left:396.300000px;}
.x4e_c00202{left:399.450000px;}
.x42_c00202{left:402.450000px;}
.x76_c00202{left:406.050000px;}
.x70_c00202{left:407.400000px;}
.x60_c00202{left:410.700000px;}
.x3d_c00202{left:414.000000px;}
.x79_c00202{left:415.350000px;}
.x4f_c00202{left:417.750000px;}
.x9_c00202{left:419.850000px;}
.x8a_c00202{left:420.900000px;}
.x33_c00202{left:423.450000px;}
.x92_c00202{left:428.700000px;}
.x7e_c00202{left:430.800000px;}
.x12_c00202{left:432.000000px;}
.x3e_c00202{left:433.050000px;}
.x29_c00202{left:435.000000px;}
.x50_c00202{left:437.850000px;}
.x109_c00202{left:465.900000px;}
.x102_c00202{left:466.950000px;}
.xb1_c00202{left:468.000000px;}
.xa0_c00202{left:469.500000px;}
.xc2_c00202{left:480.900000px;}
.xb7_c00202{left:483.150000px;}
.xfe_c00202{left:484.350000px;}
.xa7_c00202{left:485.850000px;}
.xca_c00202{left:495.900000px;}
.x10c_c00202{left:500.100000px;}
.x116_c00202{left:501.150000px;}
.xf9_c00202{left:502.500000px;}
.xa9_c00202{left:505.050000px;}
.x11c_c00202{left:508.200000px;}
.x105_c00202{left:509.700000px;}
.xa1_c00202{left:511.950000px;}
.xde_c00202{left:516.450000px;}
.x127_c00202{left:517.500000px;}
.xb8_c00202{left:519.150000px;}
.xad_c00202{left:522.150000px;}
.xd8_c00202{left:523.950000px;}
.xdf_c00202{left:525.450000px;}
.xb9_c00202{left:526.950000px;}
.xfa_c00202{left:528.750000px;}
.xe3_c00202{left:532.200000px;}
.xd3_c00202{left:533.400000px;}
.x106_c00202{left:534.600000px;}
.xf5_c00202{left:535.950000px;}
.xeb_c00202{left:537.450000px;}
.x10d_c00202{left:540.450000px;}
.x111_c00202{left:543.300000px;}
.xae_c00202{left:544.500000px;}
.xaa_c00202{left:547.950000px;}
.xa2_c00202{left:549.000000px;}
.xcc_c00202{left:550.200000px;}
.xe4_c00202{left:555.600000px;}
.xff_c00202{left:557.850000px;}
.xc3_c00202{left:559.800000px;}
.x117_c00202{left:561.300000px;}
.x120_c00202{left:562.800000px;}
.x108_c00202{left:564.900000px;}
.xef_c00202{left:566.250000px;}
.xc4_c00202{left:567.750000px;}
.xa8_c00202{left:568.950000px;}
.x121_c00202{left:570.750000px;}
.xe5_c00202{left:573.600000px;}
.xc5_c00202{left:574.650000px;}
.xd9_c00202{left:579.000000px;}
.xc6_c00202{left:582.150000px;}
.xb2_c00202{left:585.000000px;}
.xfb_c00202{left:587.850000px;}
.x12b_c00202{left:589.050000px;}
.xba_c00202{left:590.700000px;}
.x113_c00202{left:592.050000px;}
.x130_c00202{left:593.400000px;}
.x100_c00202{left:594.900000px;}
.x103_c00202{left:596.100000px;}
.xcd_c00202{left:598.500000px;}
.xf1_c00202{left:600.000000px;}
.xaf_c00202{left:601.050000px;}
.xe0_c00202{left:603.600000px;}
.xda_c00202{left:604.950000px;}
.x128_c00202{left:606.750000px;}
.x10e_c00202{left:607.800000px;}
.xd4_c00202{left:609.300000px;}
.xab_c00202{left:610.950000px;}
.xe6_c00202{left:612.900000px;}
.x118_c00202{left:614.250000px;}
.x132_c00202{left:615.300000px;}
.xf6_c00202{left:618.000000px;}
.x107_c00202{left:620.700000px;}
.x112_c00202{left:622.800000px;}
.x11d_c00202{left:624.900000px;}
.x124_c00202{left:626.400000px;}
.xbb_c00202{left:628.800000px;}
.xb0_c00202{left:630.900000px;}
.xb3_c00202{left:633.900000px;}
.x104_c00202{left:639.600000px;}
.xa3_c00202{left:642.900000px;}
.x11e_c00202{left:645.300000px;}
.xfc_c00202{left:647.550000px;}
.xbc_c00202{left:649.650000px;}
.x114_c00202{left:652.050000px;}
.xec_c00202{left:653.400000px;}
.x11b_c00202{left:655.500000px;}
.xf2_c00202{left:656.850000px;}
.x12d_c00202{left:657.900000px;}
.x11f_c00202{left:660.000000px;}
.xdb_c00202{left:662.850000px;}
.xce_c00202{left:665.550000px;}
.x10f_c00202{left:667.950000px;}
.xa4_c00202{left:669.900000px;}
.xe7_c00202{left:673.050000px;}
.x10a_c00202{left:674.250000px;}
.xd5_c00202{left:676.200000px;}
.xf0_c00202{left:678.300000px;}
.x129_c00202{left:682.350000px;}
.xdc_c00202{left:683.700000px;}
.xf7_c00202{left:685.350000px;}
.xbd_c00202{left:687.150000px;}
.x122_c00202{left:689.100000px;}
.xf3_c00202{left:691.350000px;}
.xe8_c00202{left:694.350000px;}
.x115_c00202{left:696.000000px;}
.xbe_c00202{left:703.050000px;}
.xcf_c00202{left:704.100000px;}
.xed_c00202{left:705.900000px;}
.x133_c00202{left:708.450000px;}
.xb4_c00202{left:711.300000px;}
.xd0_c00202{left:712.350000px;}
.xd6_c00202{left:713.700000px;}
.x12e_c00202{left:714.750000px;}
.xe1_c00202{left:718.500000px;}
.x125_c00202{left:720.000000px;}
.xf8_c00202{left:721.050000px;}
.xbf_c00202{left:723.150000px;}
.xa5_c00202{left:724.200000px;}
.x12c_c00202{left:725.250000px;}
.xe9_c00202{left:728.850000px;}
.xdd_c00202{left:730.200000px;}
.xb5_c00202{left:732.150000px;}
.xc7_c00202{left:733.350000px;}
.x101_c00202{left:734.550000px;}
.x126_c00202{left:738.450000px;}
.xf4_c00202{left:741.450000px;}
.x119_c00202{left:747.000000px;}
.xea_c00202{left:748.350000px;}
.xac_c00202{left:751.800000px;}
.xc0_c00202{left:753.750000px;}
.xfd_c00202{left:754.800000px;}
.x12a_c00202{left:757.950000px;}
.xc8_c00202{left:760.050000px;}
.xcb_c00202{left:762.000000px;}
.xd1_c00202{left:763.050000px;}
.xd7_c00202{left:768.000000px;}
.x10b_c00202{left:770.100000px;}
.x12f_c00202{left:772.050000px;}
.x123_c00202{left:774.450000px;}
.xe2_c00202{left:775.800000px;}
.x2_c00202{left:776.850000px;}
.x131_c00202{left:780.150000px;}
.xa6_c00202{left:783.600000px;}
.x11a_c00202{left:785.250000px;}
.xd2_c00202{left:786.450000px;}
.xc1_c00202{left:787.650000px;}
.xc9_c00202{left:789.600000px;}
.xb6_c00202{left:791.250000px;}
.xee_c00202{left:792.300000px;}
.x110_c00202{left:795.750000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws6_c00202{word-spacing:-10.920635pt;}
.ws5_c00202{word-spacing:-7.068413pt;}
.ws1_c00202{word-spacing:-5.181675pt;}
.ws7_c00202{word-spacing:0.000000pt;}
.ws2_c00202{word-spacing:2.866104pt;}
.ws3_c00202{word-spacing:8.888889pt;}
.ws0_c00202{word-spacing:10.505051pt;}
.ws4_c00202{word-spacing:75.454844pt;}
.fs4_c00202{font-size:26.666667pt;}
.fs3_c00202{font-size:32.000000pt;}
.fs6_c00202{font-size:48.000000pt;}
.fs5_c00202{font-size:53.333333pt;}
.fs2_c00202{font-size:58.666667pt;}
.fs1_c00202{font-size:64.000000pt;}
.fs7_c00202{font-size:69.333333pt;}
.fs0_c00202{font-size:74.666667pt;}
.y0_c00202{bottom:0.000000pt;}
.y68_c00202{bottom:162.533333pt;}
.y37_c00202{bottom:174.666667pt;}
.y67_c00202{bottom:178.133333pt;}
.y36_c00202{bottom:190.933333pt;}
.y66_c00202{bottom:193.466667pt;}
.y35_c00202{bottom:206.933333pt;}
.y65_c00202{bottom:209.466667pt;}
.y34_c00202{bottom:222.666667pt;}
.y64_c00202{bottom:225.200000pt;}
.y33_c00202{bottom:238.933333pt;}
.y63_c00202{bottom:240.933333pt;}
.y32_c00202{bottom:254.666667pt;}
.y62_c00202{bottom:260.266667pt;}
.y31_c00202{bottom:270.400000pt;}
.y61_c00202{bottom:276.266667pt;}
.y30_c00202{bottom:285.733333pt;}
.y60_c00202{bottom:292.000000pt;}
.y2f_c00202{bottom:304.933333pt;}
.y5f_c00202{bottom:307.733333pt;}
.y2e_c00202{bottom:320.933333pt;}
.y5e_c00202{bottom:323.733333pt;}
.y2d_c00202{bottom:336.933333pt;}
.y5d_c00202{bottom:339.466667pt;}
.y2c_c00202{bottom:352.666667pt;}
.y5c_c00202{bottom:355.200000pt;}
.y2b_c00202{bottom:368.666667pt;}
.y5b_c00202{bottom:370.933333pt;}
.y2a_c00202{bottom:384.000000pt;}
.y5a_c00202{bottom:390.133333pt;}
.y29_c00202{bottom:399.733333pt;}
.y59_c00202{bottom:410.000000pt;}
.y28_c00202{bottom:416.000000pt;}
.y58_c00202{bottom:425.333333pt;}
.y27_c00202{bottom:431.733333pt;}
.y57_c00202{bottom:441.333333pt;}
.y26_c00202{bottom:447.466667pt;}
.y25_c00202{bottom:463.200000pt;}
.y56_c00202{bottom:469.333333pt;}
.y55_c00202{bottom:476.400000pt;}
.y24_c00202{bottom:479.200000pt;}
.y54_c00202{bottom:493.733333pt;}
.y23_c00202{bottom:495.200000pt;}
.y53_c00202{bottom:500.800000pt;}
.y22_c00202{bottom:510.933333pt;}
.y52_c00202{bottom:520.666667pt;}
.y21_c00202{bottom:526.933333pt;}
.y51_c00202{bottom:540.133333pt;}
.y20_c00202{bottom:542.666667pt;}
.y50_c00202{bottom:556.133333pt;}
.y1f_c00202{bottom:558.400000pt;}
.y1e_c00202{bottom:574.400000pt;}
.y4f_c00202{bottom:586.933333pt;}
.y1d_c00202{bottom:589.733333pt;}
.y1c_c00202{bottom:609.333333pt;}
.y4e_c00202{bottom:621.733333pt;}
.y1b_c00202{bottom:624.933333pt;}
.y4d_c00202{bottom:637.733333pt;}
.y1a_c00202{bottom:640.666667pt;}
.y18_c00202{bottom:650.000000pt;}
.y19_c00202{bottom:653.866667pt;}
.y17_c00202{bottom:656.666667pt;}
.y4c_c00202{bottom:660.533333pt;}
.y16_c00202{bottom:676.133333pt;}
.y4b_c00202{bottom:683.600000pt;}
.y15_c00202{bottom:691.866667pt;}
.y4a_c00202{bottom:699.866667pt;}
.y14_c00202{bottom:707.866667pt;}
.y49_c00202{bottom:715.333333pt;}
.y13_c00202{bottom:726.933333pt;}
.y48_c00202{bottom:731.066667pt;}
.y12_c00202{bottom:742.933333pt;}
.y47_c00202{bottom:746.800000pt;}
.y11_c00202{bottom:758.666667pt;}
.y46_c00202{bottom:762.800000pt;}
.y10_c00202{bottom:774.400000pt;}
.y45_c00202{bottom:778.533333pt;}
.yf_c00202{bottom:794.133333pt;}
.y44_c00202{bottom:794.266667pt;}
.ye_c00202{bottom:809.866667pt;}
.y43_c00202{bottom:810.266667pt;}
.yd_c00202{bottom:825.600000pt;}
.y42_c00202{bottom:826.266667pt;}
.yc_c00202{bottom:841.333333pt;}
.y41_c00202{bottom:841.600000pt;}
.yb_c00202{bottom:857.333333pt;}
.y40_c00202{bottom:860.133333pt;}
.y3f_c00202{bottom:872.666667pt;}
.ya_c00202{bottom:876.400000pt;}
.y3e_c00202{bottom:887.066667pt;}
.y9_c00202{bottom:892.133333pt;}
.y3d_c00202{bottom:903.333333pt;}
.y8_c00202{bottom:907.866667pt;}
.y3c_c00202{bottom:919.066667pt;}
.y7_c00202{bottom:923.866667pt;}
.y3b_c00202{bottom:938.533333pt;}
.y6_c00202{bottom:943.466667pt;}
.y3a_c00202{bottom:954.266667pt;}
.y5_c00202{bottom:959.466667pt;}
.y39_c00202{bottom:974.133333pt;}
.y4_c00202{bottom:975.733333pt;}
.y38_c00202{bottom:989.466667pt;}
.y3_c00202{bottom:991.066667pt;}
.y2_c00202{bottom:1012.533333pt;}
.y1_c00202{bottom:1015.066667pt;}
.h6_c00202{height:26.666667pt;}
.h5_c00202{height:32.000000pt;}
.h8_c00202{height:48.000000pt;}
.h7_c00202{height:53.333333pt;}
.h4_c00202{height:58.666667pt;}
.h3_c00202{height:64.000000pt;}
.h9_c00202{height:69.333333pt;}
.h2_c00202{height:74.666667pt;}
.h1_c00202{height:1129.333333pt;}
.h0_c00202{height:1129.599935pt;}
.w1_c00202{width:856.000000pt;}
.w0_c00202{width:856.319987pt;}
.x0_c00202{left:0.000000pt;}
.x45_c00202{left:98.933333pt;}
.x1c_c00202{left:99.866667pt;}
.x3_c00202{left:112.266667pt;}
.x1a_c00202{left:113.466667pt;}
.xa_c00202{left:114.666667pt;}
.x43_c00202{left:116.133333pt;}
.x8b_c00202{left:121.866667pt;}
.xb_c00202{left:128.400000pt;}
.x46_c00202{left:130.000000pt;}
.x2e_c00202{left:130.933333pt;}
.x55_c00202{left:132.000000pt;}
.x34_c00202{left:135.066667pt;}
.x1d_c00202{left:136.933333pt;}
.x39_c00202{left:140.000000pt;}
.x61_c00202{left:146.266667pt;}
.x5a_c00202{left:148.400000pt;}
.x3f_c00202{left:149.333333pt;}
.x6d_c00202{left:150.666667pt;}
.x44_c00202{left:151.600000pt;}
.x2f_c00202{left:153.600000pt;}
.x77_c00202{left:155.466667pt;}
.x8c_c00202{left:156.800000pt;}
.x13_c00202{left:157.733333pt;}
.x6b_c00202{left:158.800000pt;}
.x81_c00202{left:160.266667pt;}
.x1e_c00202{left:161.200000pt;}
.x7b_c00202{left:162.800000pt;}
.x2a_c00202{left:163.733333pt;}
.x82_c00202{left:167.333333pt;}
.x68_c00202{left:168.533333pt;}
.xc_c00202{left:170.266667pt;}
.x4a_c00202{left:171.200000pt;}
.x22_c00202{left:172.933333pt;}
.x73_c00202{left:174.666667pt;}
.x5b_c00202{left:176.533333pt;}
.x51_c00202{left:178.933333pt;}
.x71_c00202{left:181.066667pt;}
.x14_c00202{left:182.000000pt;}
.x66_c00202{left:183.600000pt;}
.x6c_c00202{left:184.666667pt;}
.x40_c00202{left:185.866667pt;}
.x4b_c00202{left:187.866667pt;}
.x4_c00202{left:189.066667pt;}
.x56_c00202{left:190.533333pt;}
.x94_c00202{left:191.866667pt;}
.xd_c00202{left:192.933333pt;}
.x15_c00202{left:196.133333pt;}
.x3a_c00202{left:197.333333pt;}
.x2b_c00202{left:198.266667pt;}
.x74_c00202{left:200.000000pt;}
.x78_c00202{left:201.600000pt;}
.x84_c00202{left:204.000000pt;}
.x62_c00202{left:205.200000pt;}
.x23_c00202{left:206.533333pt;}
.x86_c00202{left:208.666667pt;}
.x6e_c00202{left:209.866667pt;}
.x30_c00202{left:211.200000pt;}
.x5c_c00202{left:212.400000pt;}
.x35_c00202{left:215.066667pt;}
.x9f_c00202{left:218.533333pt;}
.x8e_c00202{left:219.466667pt;}
.x88_c00202{left:221.733333pt;}
.x2c_c00202{left:223.200000pt;}
.x1f_c00202{left:224.933333pt;}
.x95_c00202{left:226.133333pt;}
.x69_c00202{left:227.066667pt;}
.x57_c00202{left:228.000000pt;}
.x63_c00202{left:229.466667pt;}
.x8d_c00202{left:230.400000pt;}
.x52_c00202{left:232.400000pt;}
.x27_c00202{left:234.533333pt;}
.x47_c00202{left:235.600000pt;}
.x16_c00202{left:238.000000pt;}
.x9a_c00202{left:239.066667pt;}
.x5d_c00202{left:240.533333pt;}
.x9b_c00202{left:241.600000pt;}
.x8f_c00202{left:242.533333pt;}
.x5_c00202{left:243.733333pt;}
.x9d_c00202{left:244.666667pt;}
.x85_c00202{left:245.600000pt;}
.x96_c00202{left:246.933333pt;}
.x36_c00202{left:248.000000pt;}
.x48_c00202{left:250.266667pt;}
.x59_c00202{left:251.733333pt;}
.x1b_c00202{left:252.933333pt;}
.xe_c00202{left:254.666667pt;}
.x24_c00202{left:256.800000pt;}
.x6f_c00202{left:259.066667pt;}
.x58_c00202{left:261.866667pt;}
.x6_c00202{left:262.933333pt;}
.x53_c00202{left:264.400000pt;}
.x31_c00202{left:266.266667pt;}
.x67_c00202{left:268.400000pt;}
.x17_c00202{left:269.333333pt;}
.x89_c00202{left:271.333333pt;}
.xf_c00202{left:272.933333pt;}
.x93_c00202{left:274.533333pt;}
.x65_c00202{left:276.000000pt;}
.x7_c00202{left:277.600000pt;}
.x7c_c00202{left:278.666667pt;}
.x7f_c00202{left:280.533333pt;}
.x2d_c00202{left:282.400000pt;}
.x75_c00202{left:284.133333pt;}
.x10_c00202{left:287.600000pt;}
.x49_c00202{left:289.333333pt;}
.x4c_c00202{left:290.266667pt;}
.x37_c00202{left:292.533333pt;}
.x20_c00202{left:294.266667pt;}
.x18_c00202{left:296.800000pt;}
.x9c_c00202{left:298.800000pt;}
.x1_c00202{left:302.400000pt;}
.x97_c00202{left:304.533333pt;}
.x64_c00202{left:305.600000pt;}
.x41_c00202{left:306.533333pt;}
.x90_c00202{left:308.133333pt;}
.x7d_c00202{left:309.066667pt;}
.x5e_c00202{left:310.000000pt;}
.x80_c00202{left:310.933333pt;}
.x3b_c00202{left:312.933333pt;}
.x19_c00202{left:316.000000pt;}
.x54_c00202{left:317.866667pt;}
.x7a_c00202{left:319.866667pt;}
.x98_c00202{left:321.866667pt;}
.x6a_c00202{left:323.333333pt;}
.x28_c00202{left:325.200000pt;}
.x8_c00202{left:327.466667pt;}
.x25_c00202{left:328.666667pt;}
.x3c_c00202{left:330.266667pt;}
.x38_c00202{left:332.266667pt;}
.x91_c00202{left:334.400000pt;}
.x4d_c00202{left:335.600000pt;}
.x32_c00202{left:336.666667pt;}
.x99_c00202{left:337.600000pt;}
.x9e_c00202{left:339.066667pt;}
.x83_c00202{left:342.266667pt;}
.x26_c00202{left:344.000000pt;}
.x11_c00202{left:345.866667pt;}
.x21_c00202{left:347.066667pt;}
.x87_c00202{left:348.400000pt;}
.x5f_c00202{left:349.333333pt;}
.x72_c00202{left:352.266667pt;}
.x4e_c00202{left:355.066667pt;}
.x42_c00202{left:357.733333pt;}
.x76_c00202{left:360.933333pt;}
.x70_c00202{left:362.133333pt;}
.x60_c00202{left:365.066667pt;}
.x3d_c00202{left:368.000000pt;}
.x79_c00202{left:369.200000pt;}
.x4f_c00202{left:371.333333pt;}
.x9_c00202{left:373.200000pt;}
.x8a_c00202{left:374.133333pt;}
.x33_c00202{left:376.400000pt;}
.x92_c00202{left:381.066667pt;}
.x7e_c00202{left:382.933333pt;}
.x12_c00202{left:384.000000pt;}
.x3e_c00202{left:384.933333pt;}
.x29_c00202{left:386.666667pt;}
.x50_c00202{left:389.200000pt;}
.x109_c00202{left:414.133333pt;}
.x102_c00202{left:415.066667pt;}
.xb1_c00202{left:416.000000pt;}
.xa0_c00202{left:417.333333pt;}
.xc2_c00202{left:427.466667pt;}
.xb7_c00202{left:429.466667pt;}
.xfe_c00202{left:430.533333pt;}
.xa7_c00202{left:431.866667pt;}
.xca_c00202{left:440.800000pt;}
.x10c_c00202{left:444.533333pt;}
.x116_c00202{left:445.466667pt;}
.xf9_c00202{left:446.666667pt;}
.xa9_c00202{left:448.933333pt;}
.x11c_c00202{left:451.733333pt;}
.x105_c00202{left:453.066667pt;}
.xa1_c00202{left:455.066667pt;}
.xde_c00202{left:459.066667pt;}
.x127_c00202{left:460.000000pt;}
.xb8_c00202{left:461.466667pt;}
.xad_c00202{left:464.133333pt;}
.xd8_c00202{left:465.733333pt;}
.xdf_c00202{left:467.066667pt;}
.xb9_c00202{left:468.400000pt;}
.xfa_c00202{left:470.000000pt;}
.xe3_c00202{left:473.066667pt;}
.xd3_c00202{left:474.133333pt;}
.x106_c00202{left:475.200000pt;}
.xf5_c00202{left:476.400000pt;}
.xeb_c00202{left:477.733333pt;}
.x10d_c00202{left:480.400000pt;}
.x111_c00202{left:482.933333pt;}
.xae_c00202{left:484.000000pt;}
.xaa_c00202{left:487.066667pt;}
.xa2_c00202{left:488.000000pt;}
.xcc_c00202{left:489.066667pt;}
.xe4_c00202{left:493.866667pt;}
.xff_c00202{left:495.866667pt;}
.xc3_c00202{left:497.600000pt;}
.x117_c00202{left:498.933333pt;}
.x120_c00202{left:500.266667pt;}
.x108_c00202{left:502.133333pt;}
.xef_c00202{left:503.333333pt;}
.xc4_c00202{left:504.666667pt;}
.xa8_c00202{left:505.733333pt;}
.x121_c00202{left:507.333333pt;}
.xe5_c00202{left:509.866667pt;}
.xc5_c00202{left:510.800000pt;}
.xd9_c00202{left:514.666667pt;}
.xc6_c00202{left:517.466667pt;}
.xb2_c00202{left:520.000000pt;}
.xfb_c00202{left:522.533333pt;}
.x12b_c00202{left:523.600000pt;}
.xba_c00202{left:525.066667pt;}
.x113_c00202{left:526.266667pt;}
.x130_c00202{left:527.466667pt;}
.x100_c00202{left:528.800000pt;}
.x103_c00202{left:529.866667pt;}
.xcd_c00202{left:532.000000pt;}
.xf1_c00202{left:533.333333pt;}
.xaf_c00202{left:534.266667pt;}
.xe0_c00202{left:536.533333pt;}
.xda_c00202{left:537.733333pt;}
.x128_c00202{left:539.333333pt;}
.x10e_c00202{left:540.266667pt;}
.xd4_c00202{left:541.600000pt;}
.xab_c00202{left:543.066667pt;}
.xe6_c00202{left:544.800000pt;}
.x118_c00202{left:546.000000pt;}
.x132_c00202{left:546.933333pt;}
.xf6_c00202{left:549.333333pt;}
.x107_c00202{left:551.733333pt;}
.x112_c00202{left:553.600000pt;}
.x11d_c00202{left:555.466667pt;}
.x124_c00202{left:556.800000pt;}
.xbb_c00202{left:558.933333pt;}
.xb0_c00202{left:560.800000pt;}
.xb3_c00202{left:563.466667pt;}
.x104_c00202{left:568.533333pt;}
.xa3_c00202{left:571.466667pt;}
.x11e_c00202{left:573.600000pt;}
.xfc_c00202{left:575.600000pt;}
.xbc_c00202{left:577.466667pt;}
.x114_c00202{left:579.600000pt;}
.xec_c00202{left:580.800000pt;}
.x11b_c00202{left:582.666667pt;}
.xf2_c00202{left:583.866667pt;}
.x12d_c00202{left:584.800000pt;}
.x11f_c00202{left:586.666667pt;}
.xdb_c00202{left:589.200000pt;}
.xce_c00202{left:591.600000pt;}
.x10f_c00202{left:593.733333pt;}
.xa4_c00202{left:595.466667pt;}
.xe7_c00202{left:598.266667pt;}
.x10a_c00202{left:599.333333pt;}
.xd5_c00202{left:601.066667pt;}
.xf0_c00202{left:602.933333pt;}
.x129_c00202{left:606.533333pt;}
.xdc_c00202{left:607.733333pt;}
.xf7_c00202{left:609.200000pt;}
.xbd_c00202{left:610.800000pt;}
.x122_c00202{left:612.533333pt;}
.xf3_c00202{left:614.533333pt;}
.xe8_c00202{left:617.200000pt;}
.x115_c00202{left:618.666667pt;}
.xbe_c00202{left:624.933333pt;}
.xcf_c00202{left:625.866667pt;}
.xed_c00202{left:627.466667pt;}
.x133_c00202{left:629.733333pt;}
.xb4_c00202{left:632.266667pt;}
.xd0_c00202{left:633.200000pt;}
.xd6_c00202{left:634.400000pt;}
.x12e_c00202{left:635.333333pt;}
.xe1_c00202{left:638.666667pt;}
.x125_c00202{left:640.000000pt;}
.xf8_c00202{left:640.933333pt;}
.xbf_c00202{left:642.800000pt;}
.xa5_c00202{left:643.733333pt;}
.x12c_c00202{left:644.666667pt;}
.xe9_c00202{left:647.866667pt;}
.xdd_c00202{left:649.066667pt;}
.xb5_c00202{left:650.800000pt;}
.xc7_c00202{left:651.866667pt;}
.x101_c00202{left:652.933333pt;}
.x126_c00202{left:656.400000pt;}
.xf4_c00202{left:659.066667pt;}
.x119_c00202{left:664.000000pt;}
.xea_c00202{left:665.200000pt;}
.xac_c00202{left:668.266667pt;}
.xc0_c00202{left:670.000000pt;}
.xfd_c00202{left:670.933333pt;}
.x12a_c00202{left:673.733333pt;}
.xc8_c00202{left:675.600000pt;}
.xcb_c00202{left:677.333333pt;}
.xd1_c00202{left:678.266667pt;}
.xd7_c00202{left:682.666667pt;}
.x10b_c00202{left:684.533333pt;}
.x12f_c00202{left:686.266667pt;}
.x123_c00202{left:688.400000pt;}
.xe2_c00202{left:689.600000pt;}
.x2_c00202{left:690.533333pt;}
.x131_c00202{left:693.466667pt;}
.xa6_c00202{left:696.533333pt;}
.x11a_c00202{left:698.000000pt;}
.xd2_c00202{left:699.066667pt;}
.xc1_c00202{left:700.133333pt;}
.xc9_c00202{left:701.866667pt;}
.xb6_c00202{left:703.333333pt;}
.xee_c00202{left:704.266667pt;}
.x110_c00202{left:707.333333pt;}
}





/* 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_c00203 {
    display:none;
  }
  .loading-indicator_c00203.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00203 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_c00203 { 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_c00203" -> "#page-container .classname_c00203")
 */
.pf_c00203 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00203 { /* 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_c00203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00203 { /* 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_c00203 { /* 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_c00203 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00203 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00203 {overflow:visible;}
  }
}
.c_c00203 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00203 { /* 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_c00203:after { /* webkit #35443 */
  content: '';
}
.t_c00203:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00203 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 */
}
.__c00203 { /* 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_c00203 { /* info for Javascript */
  display:none;
}
.l_c00203 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00203 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00203 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00203: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_c00203 {
    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_c00203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00203.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_c00203 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00203;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.000000;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;}
.mb3_c00203{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m90_c00203{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m93_c00203{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00203{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m94_c00203{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00203{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00203{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00203{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m29_c00203{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m84_c00203{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00203{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.mba_c00203{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m86_c00203{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m88_c00203{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m77_c00203{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.me4_c00203{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00203{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m91_c00203{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00203{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00203{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m100_c00203{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m66_c00203{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mca_c00203{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.me9_c00203{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m73_c00203{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00203{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.me8_c00203{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00203{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00203{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m59_c00203{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m64_c00203{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mee_c00203{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m51_c00203{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00203{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m107_c00203{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00203{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m13_c00203{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00203{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m22_c00203{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00203{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m52_c00203{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.me_c00203{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00203{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m21_c00203{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00203{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00203{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00203{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me1_c00203{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00203{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10_c00203{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m54_c00203{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.maf_c00203{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mea_c00203{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m3_c00203{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m39_c00203{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m12_c00203{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md6_c00203{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mec_c00203{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m20_c00203{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md0_c00203{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m5_c00203{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mef_c00203{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m32_c00203{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00203{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00203{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00203{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mda_c00203{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00203{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00203{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4_c00203{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00203{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mab_c00203{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00203{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m23_c00203{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m101_c00203{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m45_c00203{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me5_c00203{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m11_c00203{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.meb_c00203{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00203{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00203{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m8_c00203{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m55_c00203{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m47_c00203{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00203{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00203{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m63_c00203{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00203{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00203{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00203{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.maa_c00203{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m89_c00203{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00203{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m40_c00203{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00203{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00203{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me2_c00203{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00203{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m48_c00203{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00203{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00203{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m16_c00203{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00203{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00203{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00203{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m99_c00203{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m65_c00203{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m109_c00203{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf_c00203{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb_c00203{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00203{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m28_c00203{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m34_c00203{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m18_c00203{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m58_c00203{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m104_c00203{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md_c00203{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00203{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m43_c00203{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9_c00203{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00203{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m2_c00203{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me0_c00203{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00203{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mae_c00203{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m46_c00203{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m15_c00203{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00203{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m110_c00203{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m53_c00203{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00203{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00203{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m42_c00203{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00203{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md8_c00203{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m96_c00203{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m19_c00203{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mff_c00203{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m80_c00203{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00203{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00203{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m56_c00203{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00203{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00203{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00203{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00203{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00203{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00203{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00203{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m95_c00203{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m72_c00203{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m44_c00203{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00203{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m60_c00203{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00203{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m83_c00203{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m30_c00203{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m31_c00203{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00203{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00203{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma_c00203{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mac_c00203{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m36_c00203{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00203{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m76_c00203{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00203{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m62_c00203{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00203{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc_c00203{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m26_c00203{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me6_c00203{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m108_c00203{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00203{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.med_c00203{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00203{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m92_c00203{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00203{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m38_c00203{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00203{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00203{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m69_c00203{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00203{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7_c00203{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00203{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m14_c00203{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00203{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00203{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00203{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00203{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00203{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mde_c00203{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00203{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00203{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mce_c00203{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00203{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00203{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00203{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00203{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m6_c00203{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m71_c00203{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.md4_c00203{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.me7_c00203{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m74_c00203{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md7_c00203{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m78_c00203{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m17_c00203{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md5_c00203{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00203{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m106_c00203{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m27_c00203{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m24_c00203{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m81_c00203{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00203{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00203{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00203{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00203{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m25_c00203{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md1_c00203{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m35_c00203{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00203{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00203{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.me3_c00203{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m75_c00203{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00203{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00203{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md9_c00203{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m85_c00203{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m68_c00203{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mad_c00203{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md3_c00203{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m70_c00203{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m103_c00203{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m105_c00203{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md2_c00203{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m50_c00203{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00203{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00203{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m61_c00203{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m37_c00203{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00203{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00203{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00203{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m87_c00203{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m49_c00203{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00203{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00203{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00203{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00203{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00203{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m102_c00203{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m97_c00203{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00203{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m79_c00203{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00203{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m67_c00203{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00203{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m98_c00203{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00203{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00203{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00203{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m33_c00203{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00203{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m82_c00203{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m57_c00203{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00203{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00203{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m41_c00203{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00203{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00203{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00203{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00203{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls0_c00203{letter-spacing:0.000000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{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__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00203{word-spacing:-11.666667px;}
.ws2_c00203{word-spacing:-7.773208px;}
.wse_c00203{word-spacing:-2.803493px;}
.ws7_c00203{word-spacing:-1.676218px;}
.ws1_c00203{word-spacing:-1.250000px;}
.wsf_c00203{word-spacing:0.000000px;}
.ws0_c00203{word-spacing:0.189112px;}
.ws3_c00203{word-spacing:1.044143px;}
.ws8_c00203{word-spacing:1.896261px;}
.ws4_c00203{word-spacing:8.648649px;}
.ws5_c00203{word-spacing:24.491803px;}
.wsd_c00203{word-spacing:29.285714px;}
.wsa_c00203{word-spacing:32.360656px;}
.ws6_c00203{word-spacing:35.833333px;}
.wsb_c00203{word-spacing:38.262295px;}
.wsc_c00203{word-spacing:41.150985px;}
._0_c00203{width:74.166667px;}
.fc0_c00203{color:transparent;}
.fs5_c00203{font-size:42.000000px;}
.fs4_c00203{font-size:54.000000px;}
.fs3_c00203{font-size:60.000000px;}
.fs2_c00203{font-size:66.000000px;}
.fs0_c00203{font-size:72.000000px;}
.fs1_c00203{font-size:78.000000px;}
.y0_c00203{bottom:0.000000px;}
.y6b_c00203{bottom:192.300000px;}
.y37_c00203{bottom:194.700000px;}
.y6a_c00203{bottom:210.300000px;}
.y36_c00203{bottom:212.400000px;}
.y69_c00203{bottom:227.850000px;}
.y35_c00203{bottom:230.100000px;}
.y68_c00203{bottom:243.900000px;}
.y34_c00203{bottom:248.400000px;}
.y67_c00203{bottom:258.000000px;}
.y33_c00203{bottom:265.350000px;}
.y66_c00203{bottom:272.400000px;}
.y32_c00203{bottom:282.900000px;}
.y65_c00203{bottom:286.500000px;}
.y31_c00203{bottom:300.900000px;}
.y64_c00203{bottom:316.800000px;}
.y30_c00203{bottom:318.600000px;}
.y63_c00203{bottom:331.500000px;}
.y2f_c00203{bottom:336.300000px;}
.y62_c00203{bottom:349.500000px;}
.y2e_c00203{bottom:352.500000px;}
.y2d_c00203{bottom:366.600000px;}
.y61_c00203{bottom:367.200000px;}
.y2c_c00203{bottom:381.300000px;}
.y60_c00203{bottom:384.450000px;}
.y2b_c00203{bottom:394.950000px;}
.y5f_c00203{bottom:402.750000px;}
.y2a_c00203{bottom:410.100000px;}
.y5e_c00203{bottom:420.450000px;}
.y29_c00203{bottom:424.200000px;}
.y5d_c00203{bottom:438.150000px;}
.y28_c00203{bottom:438.900000px;}
.y27_c00203{bottom:452.700000px;}
.y5c_c00203{bottom:456.150000px;}
.y26_c00203{bottom:466.800000px;}
.y5b_c00203{bottom:473.700000px;}
.y25_c00203{bottom:481.950000px;}
.y5a_c00203{bottom:491.400000px;}
.y24_c00203{bottom:496.050000px;}
.y23_c00203{bottom:510.000000px;}
.y59_c00203{bottom:522.300000px;}
.y22_c00203{bottom:524.100000px;}
.y21_c00203{bottom:538.200000px;}
.y58_c00203{bottom:540.300000px;}
.y20_c00203{bottom:554.100000px;}
.y57_c00203{bottom:558.300000px;}
.y1f_c00203{bottom:568.500000px;}
.y56_c00203{bottom:575.700000px;}
.y1e_c00203{bottom:586.050000px;}
.y55_c00203{bottom:597.300000px;}
.y1d_c00203{bottom:607.800000px;}
.y54_c00203{bottom:615.300000px;}
.y1c_c00203{bottom:625.500000px;}
.y53_c00203{bottom:633.300000px;}
.y1b_c00203{bottom:643.200000px;}
.y52_c00203{bottom:651.000000px;}
.y1a_c00203{bottom:661.200000px;}
.y51_c00203{bottom:668.700000px;}
.y19_c00203{bottom:678.900000px;}
.y50_c00203{bottom:686.400000px;}
.y18_c00203{bottom:701.250000px;}
.y4f_c00203{bottom:704.100000px;}
.y4e_c00203{bottom:722.100000px;}
.y17_c00203{bottom:727.500000px;}
.y4d_c00203{bottom:740.100000px;}
.y16_c00203{bottom:745.500000px;}
.y4c_c00203{bottom:757.500000px;}
.y15_c00203{bottom:763.950000px;}
.y4b_c00203{bottom:775.500000px;}
.y14_c00203{bottom:781.200000px;}
.y4a_c00203{bottom:792.600000px;}
.y13_c00203{bottom:798.900000px;}
.y49_c00203{bottom:810.900000px;}
.y12_c00203{bottom:816.450000px;}
.y48_c00203{bottom:828.900000px;}
.y11_c00203{bottom:834.150000px;}
.y47_c00203{bottom:846.600000px;}
.y10_c00203{bottom:855.750000px;}
.y46_c00203{bottom:864.300000px;}
.yf_c00203{bottom:873.750000px;}
.y45_c00203{bottom:882.300000px;}
.ye_c00203{bottom:895.200000px;}
.y44_c00203{bottom:903.900000px;}
.yd_c00203{bottom:913.200000px;}
.y43_c00203{bottom:921.900000px;}
.yc_c00203{bottom:930.900000px;}
.y42_c00203{bottom:939.600000px;}
.yb_c00203{bottom:952.650000px;}
.y41_c00203{bottom:957.600000px;}
.ya_c00203{bottom:970.950000px;}
.y40_c00203{bottom:990.750000px;}
.y9_c00203{bottom:992.550000px;}
.y3f_c00203{bottom:992.850000px;}
.y3e_c00203{bottom:1010.700000px;}
.y8_c00203{bottom:1011.300000px;}
.y3d_c00203{bottom:1028.400000px;}
.y7_c00203{bottom:1029.600000px;}
.y3c_c00203{bottom:1046.100000px;}
.y6_c00203{bottom:1050.450000px;}
.y3b_c00203{bottom:1064.100000px;}
.y5_c00203{bottom:1072.050000px;}
.y3a_c00203{bottom:1081.800000px;}
.y4_c00203{bottom:1094.400000px;}
.y39_c00203{bottom:1099.800000px;}
.y3_c00203{bottom:1115.700000px;}
.y38_c00203{bottom:1117.800000px;}
.y1_c00203{bottom:1141.500000px;}
.y2_c00203{bottom:1143.300000px;}
.h7_c00203{height:42.000000px;}
.h6_c00203{height:54.000000px;}
.h5_c00203{height:60.000000px;}
.h4_c00203{height:66.000000px;}
.h2_c00203{height:72.000000px;}
.h3_c00203{height:78.000000px;}
.h0_c00203{height:1269.720063px;}
.h1_c00203{height:1269.750000px;}
.w1_c00203{width:963.000000px;}
.w0_c00203{width:963.359985px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:180.750000px;}
.x7c_c00203{left:182.100000px;}
.x74_c00203{left:194.100000px;}
.x6b_c00203{left:195.900000px;}
.x33_c00203{left:199.050000px;}
.x16_c00203{left:200.700000px;}
.x73_c00203{left:209.400000px;}
.x6f_c00203{left:210.450000px;}
.x1c_c00203{left:211.650000px;}
.x10_c00203{left:217.500000px;}
.x3_c00203{left:218.550000px;}
.x1e_c00203{left:219.900000px;}
.x53_c00203{left:223.200000px;}
.x6c_c00203{left:226.200000px;}
.x47_c00203{left:227.400000px;}
.x60_c00203{left:229.050000px;}
.x70_c00203{left:232.350000px;}
.x3f_c00203{left:234.000000px;}
.x48_c00203{left:236.700000px;}
.x34_c00203{left:238.650000px;}
.x63_c00203{left:240.450000px;}
.x3c_c00203{left:241.500000px;}
.x69_c00203{left:243.300000px;}
.x2e_c00203{left:244.500000px;}
.x75_c00203{left:249.150000px;}
.x38_c00203{left:250.200000px;}
.x4e_c00203{left:251.700000px;}
.x4_c00203{left:253.050000px;}
.x80_c00203{left:254.100000px;}
.x49_c00203{left:256.500000px;}
.x42_c00203{left:259.950000px;}
.xc_c00203{left:261.600000px;}
.x27_c00203{left:264.300000px;}
.x11_c00203{left:266.850000px;}
.x82_c00203{left:268.800000px;}
.x7_c00203{left:270.300000px;}
.x9_c00203{left:274.950000px;}
.x55_c00203{left:276.150000px;}
.x17_c00203{left:278.100000px;}
.x1d_c00203{left:282.300000px;}
.x3b_c00203{left:283.350000px;}
.x64_c00203{left:288.000000px;}
.x5d_c00203{left:289.200000px;}
.x5_c00203{left:292.650000px;}
.x26_c00203{left:295.200000px;}
.x18_c00203{left:297.150000px;}
.x39_c00203{left:299.100000px;}
.x89_c00203{left:304.350000px;}
.x6a_c00203{left:306.600000px;}
.x5b_c00203{left:310.500000px;}
.x6_c00203{left:312.150000px;}
.x1f_c00203{left:314.250000px;}
.x4a_c00203{left:315.900000px;}
.x87_c00203{left:317.550000px;}
.x84_c00203{left:319.200000px;}
.x28_c00203{left:320.850000px;}
.x56_c00203{left:321.900000px;}
.x43_c00203{left:324.750000px;}
.xd_c00203{left:327.750000px;}
.xa_c00203{left:328.950000px;}
.x12_c00203{left:330.600000px;}
.x7a_c00203{left:332.100000px;}
.x61_c00203{left:333.150000px;}
.x65_c00203{left:338.400000px;}
.x19_c00203{left:341.400000px;}
.x2f_c00203{left:343.200000px;}
.x29_c00203{left:345.300000px;}
.x57_c00203{left:346.800000px;}
.xb_c00203{left:348.750000px;}
.x8_c00203{left:350.250000px;}
.x3a_c00203{left:351.300000px;}
.x78_c00203{left:352.500000px;}
.x71_c00203{left:355.050000px;}
.x85_c00203{left:357.000000px;}
.x7d_c00203{left:361.500000px;}
.x5c_c00203{left:363.300000px;}
.x20_c00203{left:365.700000px;}
.x1a_c00203{left:368.100000px;}
.x58_c00203{left:369.900000px;}
.x35_c00203{left:371.100000px;}
.xe_c00203{left:374.250000px;}
.x4b_c00203{left:376.500000px;}
.x40_c00203{left:379.500000px;}
.x7b_c00203{left:380.700000px;}
.x2a_c00203{left:382.050000px;}
.x30_c00203{left:383.850000px;}
.x86_c00203{left:385.800000px;}
.x4f_c00203{left:388.050000px;}
.x66_c00203{left:390.000000px;}
.x5e_c00203{left:391.050000px;}
.x44_c00203{left:394.200000px;}
.x21_c00203{left:397.050000px;}
.xf_c00203{left:399.750000px;}
.x7f_c00203{left:402.150000px;}
.x76_c00203{left:403.950000px;}
.x2b_c00203{left:406.200000px;}
.x59_c00203{left:407.700000px;}
.x79_c00203{left:409.350000px;}
.x50_c00203{left:410.700000px;}
.x6d_c00203{left:415.350000px;}
.x22_c00203{left:416.850000px;}
.x54_c00203{left:418.650000px;}
.x2_c00203{left:422.250000px;}
.x4c_c00203{left:425.400000px;}
.x31_c00203{left:428.100000px;}
.x13_c00203{left:431.850000px;}
.x67_c00203{left:436.500000px;}
.x36_c00203{left:437.700000px;}
.x88_c00203{left:439.650000px;}
.x62_c00203{left:443.250000px;}
.x5f_c00203{left:444.300000px;}
.x32_c00203{left:445.350000px;}
.x2c_c00203{left:446.850000px;}
.x4d_c00203{left:450.900000px;}
.x68_c00203{left:451.950000px;}
.x81_c00203{left:453.150000px;}
.x23_c00203{left:454.650000px;}
.x8a_c00203{left:459.150000px;}
.x3d_c00203{left:462.150000px;}
.x51_c00203{left:463.950000px;}
.x24_c00203{left:466.200000px;}
.x5a_c00203{left:468.150000px;}
.x37_c00203{left:470.100000px;}
.x72_c00203{left:473.700000px;}
.x1b_c00203{left:474.750000px;}
.x45_c00203{left:476.550000px;}
.x14_c00203{left:483.300000px;}
.x52_c00203{left:485.850000px;}
.x7e_c00203{left:491.400000px;}
.x15_c00203{left:492.600000px;}
.x41_c00203{left:493.650000px;}
.x8b_c00203{left:496.200000px;}
.x3e_c00203{left:497.400000px;}
.x46_c00203{left:498.450000px;}
.x2d_c00203{left:501.150000px;}
.x6e_c00203{left:502.350000px;}
.x77_c00203{left:504.000000px;}
.x25_c00203{left:505.500000px;}
.x83_c00203{left:508.950000px;}
.x118_c00203{left:534.900000px;}
.xd9_c00203{left:536.100000px;}
.x10c_c00203{left:537.450000px;}
.x8c_c00203{left:543.600000px;}
.x126_c00203{left:552.600000px;}
.xdc_c00203{left:554.100000px;}
.x8d_c00203{left:555.150000px;}
.x11b_c00203{left:556.950000px;}
.xba_c00203{left:563.100000px;}
.x120_c00203{left:564.150000px;}
.xda_c00203{left:570.300000px;}
.x10f_c00203{left:573.450000px;}
.x93_c00203{left:574.500000px;}
.xca_c00203{left:576.300000px;}
.xff_c00203{left:577.950000px;}
.x103_c00203{left:579.150000px;}
.x110_c00203{left:580.650000px;}
.xe4_c00203{left:582.000000px;}
.xc1_c00203{left:583.800000px;}
.xb4_c00203{left:586.350000px;}
.xbb_c00203{left:590.100000px;}
.xae_c00203{left:591.750000px;}
.x119_c00203{left:594.000000px;}
.xa1_c00203{left:595.050000px;}
.x9a_c00203{left:597.600000px;}
.x8e_c00203{left:601.950000px;}
.x94_c00203{left:603.300000px;}
.xe8_c00203{left:605.100000px;}
.xfc_c00203{left:606.450000px;}
.xa7_c00203{left:608.250000px;}
.xbc_c00203{left:610.650000px;}
.xe5_c00203{left:615.900000px;}
.xf7_c00203{left:617.250000px;}
.xa2_c00203{left:618.750000px;}
.xf0_c00203{left:619.950000px;}
.x123_c00203{left:621.750000px;}
.xf4_c00203{left:622.950000px;}
.xfd_c00203{left:624.750000px;}
.xa8_c00203{left:630.150000px;}
.xea_c00203{left:631.650000px;}
.xd4_c00203{left:633.300000px;}
.x11d_c00203{left:634.650000px;}
.xbd_c00203{left:636.600000px;}
.x111_c00203{left:637.950000px;}
.xa3_c00203{left:639.300000px;}
.xdb_c00203{left:640.800000px;}
.x116_c00203{left:642.000000px;}
.xf1_c00203{left:643.350000px;}
.xaf_c00203{left:645.000000px;}
.xc2_c00203{left:646.800000px;}
.x109_c00203{left:650.100000px;}
.xeb_c00203{left:651.450000px;}
.x101_c00203{left:654.150000px;}
.xe6_c00203{left:655.200000px;}
.xdf_c00203{left:656.700000px;}
.xb5_c00203{left:659.400000px;}
.x124_c00203{left:661.350000px;}
.xd5_c00203{left:662.850000px;}
.x127_c00203{left:665.250000px;}
.xd0_c00203{left:666.600000px;}
.xa4_c00203{left:667.800000px;}
.x11c_c00203{left:670.050000px;}
.xcb_c00203{left:671.700000px;}
.x95_c00203{left:673.500000px;}
.x121_c00203{left:675.000000px;}
.xb0_c00203{left:676.350000px;}
.x113_c00203{left:677.700000px;}
.x8f_c00203{left:679.050000px;}
.x9b_c00203{left:680.700000px;}
.x107_c00203{left:684.300000px;}
.xbe_c00203{left:685.950000px;}
.xe0_c00203{left:689.100000px;}
.xa9_c00203{left:691.050000px;}
.xcc_c00203{left:692.250000px;}
.x122_c00203{left:694.500000px;}
.xd6_c00203{left:697.350000px;}
.xf5_c00203{left:699.300000px;}
.x10a_c00203{left:702.600000px;}
.xc3_c00203{left:704.400000px;}
.x12a_c00203{left:705.600000px;}
.x102_c00203{left:706.650000px;}
.xcd_c00203{left:707.700000px;}
.x104_c00203{left:710.250000px;}
.xf2_c00203{left:711.450000px;}
.x9c_c00203{left:713.400000px;}
.xf8_c00203{left:715.050000px;}
.xdd_c00203{left:716.850000px;}
.x96_c00203{left:718.800000px;}
.xc8_c00203{left:722.100000px;}
.xfe_c00203{left:723.750000px;}
.xaa_c00203{left:726.750000px;}
.x9d_c00203{left:729.300000px;}
.xe1_c00203{left:730.950000px;}
.xfb_c00203{left:732.450000px;}
.x97_c00203{left:734.700000px;}
.x105_c00203{left:736.950000px;}
.xb6_c00203{left:739.650000px;}
.xc4_c00203{left:741.150000px;}
.xb1_c00203{left:742.950000px;}
.x128_c00203{left:745.650000px;}
.xec_c00203{left:747.150000px;}
.xa5_c00203{left:749.100000px;}
.xbf_c00203{left:750.750000px;}
.x114_c00203{left:753.600000px;}
.x112_c00203{left:756.300000px;}
.xe7_c00203{left:758.850000px;}
.xd7_c00203{left:760.650000px;}
.x9e_c00203{left:763.200000px;}
.x11a_c00203{left:764.250000px;}
.xd1_c00203{left:765.300000px;}
.xb2_c00203{left:766.350000px;}
.xed_c00203{left:770.250000px;}
.xe2_c00203{left:777.450000px;}
.xb7_c00203{left:778.950000px;}
.xd8_c00203{left:781.200000px;}
.x9f_c00203{left:783.300000px;}
.x90_c00203{left:786.300000px;}
.xc5_c00203{left:789.450000px;}
.x106_c00203{left:790.650000px;}
.x100_c00203{left:792.000000px;}
.xab_c00203{left:793.050000px;}
.x10d_c00203{left:795.150000px;}
.xf9_c00203{left:796.800000px;}
.x11e_c00203{left:799.200000px;}
.xd2_c00203{left:801.300000px;}
.x98_c00203{left:803.100000px;}
.xc0_c00203{left:804.450000px;}
.xc6_c00203{left:805.650000px;}
.xb8_c00203{left:807.750000px;}
.x91_c00203{left:809.700000px;}
.xa0_c00203{left:812.100000px;}
.xde_c00203{left:816.150000px;}
.x129_c00203{left:817.350000px;}
.xce_c00203{left:819.000000px;}
.xd3_c00203{left:820.800000px;}
.xb3_c00203{left:822.150000px;}
.x99_c00203{left:823.650000px;}
.xc7_c00203{left:824.700000px;}
.xa6_c00203{left:826.800000px;}
.x92_c00203{left:828.000000px;}
.xb9_c00203{left:829.050000px;}
.xc9_c00203{left:831.900000px;}
.x10e_c00203{left:833.250000px;}
.xf6_c00203{left:835.050000px;}
.x117_c00203{left:837.150000px;}
.xac_c00203{left:839.100000px;}
.xe3_c00203{left:840.450000px;}
.xf3_c00203{left:842.100000px;}
.x125_c00203{left:845.250000px;}
.xe9_c00203{left:846.450000px;}
.xad_c00203{left:848.400000px;}
.xfa_c00203{left:849.750000px;}
.x108_c00203{left:851.400000px;}
.xef_c00203{left:855.450000px;}
.x11f_c00203{left:857.250000px;}
.x115_c00203{left:858.600000px;}
.xcf_c00203{left:859.650000px;}
.x10b_c00203{left:864.750000px;}
.xee_c00203{left:865.950000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls0_c00203{letter-spacing:0.000000pt;}
.ws9_c00203{word-spacing:-10.370370pt;}
.ws2_c00203{word-spacing:-6.909518pt;}
.wse_c00203{word-spacing:-2.491994pt;}
.ws7_c00203{word-spacing:-1.489971pt;}
.ws1_c00203{word-spacing:-1.111111pt;}
.wsf_c00203{word-spacing:0.000000pt;}
.ws0_c00203{word-spacing:0.168099pt;}
.ws3_c00203{word-spacing:0.928127pt;}
.ws8_c00203{word-spacing:1.685565pt;}
.ws4_c00203{word-spacing:7.687688pt;}
.ws5_c00203{word-spacing:21.770492pt;}
.wsd_c00203{word-spacing:26.031746pt;}
.wsa_c00203{word-spacing:28.765027pt;}
.ws6_c00203{word-spacing:31.851852pt;}
.wsb_c00203{word-spacing:34.010929pt;}
.wsc_c00203{word-spacing:36.578653pt;}
._0_c00203{width:65.925926pt;}
.fs5_c00203{font-size:37.333333pt;}
.fs4_c00203{font-size:48.000000pt;}
.fs3_c00203{font-size:53.333333pt;}
.fs2_c00203{font-size:58.666667pt;}
.fs0_c00203{font-size:64.000000pt;}
.fs1_c00203{font-size:69.333333pt;}
.y0_c00203{bottom:0.000000pt;}
.y6b_c00203{bottom:170.933333pt;}
.y37_c00203{bottom:173.066667pt;}
.y6a_c00203{bottom:186.933333pt;}
.y36_c00203{bottom:188.800000pt;}
.y69_c00203{bottom:202.533333pt;}
.y35_c00203{bottom:204.533333pt;}
.y68_c00203{bottom:216.800000pt;}
.y34_c00203{bottom:220.800000pt;}
.y67_c00203{bottom:229.333333pt;}
.y33_c00203{bottom:235.866667pt;}
.y66_c00203{bottom:242.133333pt;}
.y32_c00203{bottom:251.466667pt;}
.y65_c00203{bottom:254.666667pt;}
.y31_c00203{bottom:267.466667pt;}
.y64_c00203{bottom:281.600000pt;}
.y30_c00203{bottom:283.200000pt;}
.y63_c00203{bottom:294.666667pt;}
.y2f_c00203{bottom:298.933333pt;}
.y62_c00203{bottom:310.666667pt;}
.y2e_c00203{bottom:313.333333pt;}
.y2d_c00203{bottom:325.866667pt;}
.y61_c00203{bottom:326.400000pt;}
.y2c_c00203{bottom:338.933333pt;}
.y60_c00203{bottom:341.733333pt;}
.y2b_c00203{bottom:351.066667pt;}
.y5f_c00203{bottom:358.000000pt;}
.y2a_c00203{bottom:364.533333pt;}
.y5e_c00203{bottom:373.733333pt;}
.y29_c00203{bottom:377.066667pt;}
.y5d_c00203{bottom:389.466667pt;}
.y28_c00203{bottom:390.133333pt;}
.y27_c00203{bottom:402.400000pt;}
.y5c_c00203{bottom:405.466667pt;}
.y26_c00203{bottom:414.933333pt;}
.y5b_c00203{bottom:421.066667pt;}
.y25_c00203{bottom:428.400000pt;}
.y5a_c00203{bottom:436.800000pt;}
.y24_c00203{bottom:440.933333pt;}
.y23_c00203{bottom:453.333333pt;}
.y59_c00203{bottom:464.266667pt;}
.y22_c00203{bottom:465.866667pt;}
.y21_c00203{bottom:478.400000pt;}
.y58_c00203{bottom:480.266667pt;}
.y20_c00203{bottom:492.533333pt;}
.y57_c00203{bottom:496.266667pt;}
.y1f_c00203{bottom:505.333333pt;}
.y56_c00203{bottom:511.733333pt;}
.y1e_c00203{bottom:520.933333pt;}
.y55_c00203{bottom:530.933333pt;}
.y1d_c00203{bottom:540.266667pt;}
.y54_c00203{bottom:546.933333pt;}
.y1c_c00203{bottom:556.000000pt;}
.y53_c00203{bottom:562.933333pt;}
.y1b_c00203{bottom:571.733333pt;}
.y52_c00203{bottom:578.666667pt;}
.y1a_c00203{bottom:587.733333pt;}
.y51_c00203{bottom:594.400000pt;}
.y19_c00203{bottom:603.466667pt;}
.y50_c00203{bottom:610.133333pt;}
.y18_c00203{bottom:623.333333pt;}
.y4f_c00203{bottom:625.866667pt;}
.y4e_c00203{bottom:641.866667pt;}
.y17_c00203{bottom:646.666667pt;}
.y4d_c00203{bottom:657.866667pt;}
.y16_c00203{bottom:662.666667pt;}
.y4c_c00203{bottom:673.333333pt;}
.y15_c00203{bottom:679.066667pt;}
.y4b_c00203{bottom:689.333333pt;}
.y14_c00203{bottom:694.400000pt;}
.y4a_c00203{bottom:704.533333pt;}
.y13_c00203{bottom:710.133333pt;}
.y49_c00203{bottom:720.800000pt;}
.y12_c00203{bottom:725.733333pt;}
.y48_c00203{bottom:736.800000pt;}
.y11_c00203{bottom:741.466667pt;}
.y47_c00203{bottom:752.533333pt;}
.y10_c00203{bottom:760.666667pt;}
.y46_c00203{bottom:768.266667pt;}
.yf_c00203{bottom:776.666667pt;}
.y45_c00203{bottom:784.266667pt;}
.ye_c00203{bottom:795.733333pt;}
.y44_c00203{bottom:803.466667pt;}
.yd_c00203{bottom:811.733333pt;}
.y43_c00203{bottom:819.466667pt;}
.yc_c00203{bottom:827.466667pt;}
.y42_c00203{bottom:835.200000pt;}
.yb_c00203{bottom:846.800000pt;}
.y41_c00203{bottom:851.200000pt;}
.ya_c00203{bottom:863.066667pt;}
.y40_c00203{bottom:880.666667pt;}
.y9_c00203{bottom:882.266667pt;}
.y3f_c00203{bottom:882.533333pt;}
.y3e_c00203{bottom:898.400000pt;}
.y8_c00203{bottom:898.933333pt;}
.y3d_c00203{bottom:914.133333pt;}
.y7_c00203{bottom:915.200000pt;}
.y3c_c00203{bottom:929.866667pt;}
.y6_c00203{bottom:933.733333pt;}
.y3b_c00203{bottom:945.866667pt;}
.y5_c00203{bottom:952.933333pt;}
.y3a_c00203{bottom:961.600000pt;}
.y4_c00203{bottom:972.800000pt;}
.y39_c00203{bottom:977.600000pt;}
.y3_c00203{bottom:991.733333pt;}
.y38_c00203{bottom:993.600000pt;}
.y1_c00203{bottom:1014.666667pt;}
.y2_c00203{bottom:1016.266667pt;}
.h7_c00203{height:37.333333pt;}
.h6_c00203{height:48.000000pt;}
.h5_c00203{height:53.333333pt;}
.h4_c00203{height:58.666667pt;}
.h2_c00203{height:64.000000pt;}
.h3_c00203{height:69.333333pt;}
.h0_c00203{height:1128.640056pt;}
.h1_c00203{height:1128.666667pt;}
.w1_c00203{width:856.000000pt;}
.w0_c00203{width:856.319987pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:160.666667pt;}
.x7c_c00203{left:161.866667pt;}
.x74_c00203{left:172.533333pt;}
.x6b_c00203{left:174.133333pt;}
.x33_c00203{left:176.933333pt;}
.x16_c00203{left:178.400000pt;}
.x73_c00203{left:186.133333pt;}
.x6f_c00203{left:187.066667pt;}
.x1c_c00203{left:188.133333pt;}
.x10_c00203{left:193.333333pt;}
.x3_c00203{left:194.266667pt;}
.x1e_c00203{left:195.466667pt;}
.x53_c00203{left:198.400000pt;}
.x6c_c00203{left:201.066667pt;}
.x47_c00203{left:202.133333pt;}
.x60_c00203{left:203.600000pt;}
.x70_c00203{left:206.533333pt;}
.x3f_c00203{left:208.000000pt;}
.x48_c00203{left:210.400000pt;}
.x34_c00203{left:212.133333pt;}
.x63_c00203{left:213.733333pt;}
.x3c_c00203{left:214.666667pt;}
.x69_c00203{left:216.266667pt;}
.x2e_c00203{left:217.333333pt;}
.x75_c00203{left:221.466667pt;}
.x38_c00203{left:222.400000pt;}
.x4e_c00203{left:223.733333pt;}
.x4_c00203{left:224.933333pt;}
.x80_c00203{left:225.866667pt;}
.x49_c00203{left:228.000000pt;}
.x42_c00203{left:231.066667pt;}
.xc_c00203{left:232.533333pt;}
.x27_c00203{left:234.933333pt;}
.x11_c00203{left:237.200000pt;}
.x82_c00203{left:238.933333pt;}
.x7_c00203{left:240.266667pt;}
.x9_c00203{left:244.400000pt;}
.x55_c00203{left:245.466667pt;}
.x17_c00203{left:247.200000pt;}
.x1d_c00203{left:250.933333pt;}
.x3b_c00203{left:251.866667pt;}
.x64_c00203{left:256.000000pt;}
.x5d_c00203{left:257.066667pt;}
.x5_c00203{left:260.133333pt;}
.x26_c00203{left:262.400000pt;}
.x18_c00203{left:264.133333pt;}
.x39_c00203{left:265.866667pt;}
.x89_c00203{left:270.533333pt;}
.x6a_c00203{left:272.533333pt;}
.x5b_c00203{left:276.000000pt;}
.x6_c00203{left:277.466667pt;}
.x1f_c00203{left:279.333333pt;}
.x4a_c00203{left:280.800000pt;}
.x87_c00203{left:282.266667pt;}
.x84_c00203{left:283.733333pt;}
.x28_c00203{left:285.200000pt;}
.x56_c00203{left:286.133333pt;}
.x43_c00203{left:288.666667pt;}
.xd_c00203{left:291.333333pt;}
.xa_c00203{left:292.400000pt;}
.x12_c00203{left:293.866667pt;}
.x7a_c00203{left:295.200000pt;}
.x61_c00203{left:296.133333pt;}
.x65_c00203{left:300.800000pt;}
.x19_c00203{left:303.466667pt;}
.x2f_c00203{left:305.066667pt;}
.x29_c00203{left:306.933333pt;}
.x57_c00203{left:308.266667pt;}
.xb_c00203{left:310.000000pt;}
.x8_c00203{left:311.333333pt;}
.x3a_c00203{left:312.266667pt;}
.x78_c00203{left:313.333333pt;}
.x71_c00203{left:315.600000pt;}
.x85_c00203{left:317.333333pt;}
.x7d_c00203{left:321.333333pt;}
.x5c_c00203{left:322.933333pt;}
.x20_c00203{left:325.066667pt;}
.x1a_c00203{left:327.200000pt;}
.x58_c00203{left:328.800000pt;}
.x35_c00203{left:329.866667pt;}
.xe_c00203{left:332.666667pt;}
.x4b_c00203{left:334.666667pt;}
.x40_c00203{left:337.333333pt;}
.x7b_c00203{left:338.400000pt;}
.x2a_c00203{left:339.600000pt;}
.x30_c00203{left:341.200000pt;}
.x86_c00203{left:342.933333pt;}
.x4f_c00203{left:344.933333pt;}
.x66_c00203{left:346.666667pt;}
.x5e_c00203{left:347.600000pt;}
.x44_c00203{left:350.400000pt;}
.x21_c00203{left:352.933333pt;}
.xf_c00203{left:355.333333pt;}
.x7f_c00203{left:357.466667pt;}
.x76_c00203{left:359.066667pt;}
.x2b_c00203{left:361.066667pt;}
.x59_c00203{left:362.400000pt;}
.x79_c00203{left:363.866667pt;}
.x50_c00203{left:365.066667pt;}
.x6d_c00203{left:369.200000pt;}
.x22_c00203{left:370.533333pt;}
.x54_c00203{left:372.133333pt;}
.x2_c00203{left:375.333333pt;}
.x4c_c00203{left:378.133333pt;}
.x31_c00203{left:380.533333pt;}
.x13_c00203{left:383.866667pt;}
.x67_c00203{left:388.000000pt;}
.x36_c00203{left:389.066667pt;}
.x88_c00203{left:390.800000pt;}
.x62_c00203{left:394.000000pt;}
.x5f_c00203{left:394.933333pt;}
.x32_c00203{left:395.866667pt;}
.x2c_c00203{left:397.200000pt;}
.x4d_c00203{left:400.800000pt;}
.x68_c00203{left:401.733333pt;}
.x81_c00203{left:402.800000pt;}
.x23_c00203{left:404.133333pt;}
.x8a_c00203{left:408.133333pt;}
.x3d_c00203{left:410.800000pt;}
.x51_c00203{left:412.400000pt;}
.x24_c00203{left:414.400000pt;}
.x5a_c00203{left:416.133333pt;}
.x37_c00203{left:417.866667pt;}
.x72_c00203{left:421.066667pt;}
.x1b_c00203{left:422.000000pt;}
.x45_c00203{left:423.600000pt;}
.x14_c00203{left:429.600000pt;}
.x52_c00203{left:431.866667pt;}
.x7e_c00203{left:436.800000pt;}
.x15_c00203{left:437.866667pt;}
.x41_c00203{left:438.800000pt;}
.x8b_c00203{left:441.066667pt;}
.x3e_c00203{left:442.133333pt;}
.x46_c00203{left:443.066667pt;}
.x2d_c00203{left:445.466667pt;}
.x6e_c00203{left:446.533333pt;}
.x77_c00203{left:448.000000pt;}
.x25_c00203{left:449.333333pt;}
.x83_c00203{left:452.400000pt;}
.x118_c00203{left:475.466667pt;}
.xd9_c00203{left:476.533333pt;}
.x10c_c00203{left:477.733333pt;}
.x8c_c00203{left:483.200000pt;}
.x126_c00203{left:491.200000pt;}
.xdc_c00203{left:492.533333pt;}
.x8d_c00203{left:493.466667pt;}
.x11b_c00203{left:495.066667pt;}
.xba_c00203{left:500.533333pt;}
.x120_c00203{left:501.466667pt;}
.xda_c00203{left:506.933333pt;}
.x10f_c00203{left:509.733333pt;}
.x93_c00203{left:510.666667pt;}
.xca_c00203{left:512.266667pt;}
.xff_c00203{left:513.733333pt;}
.x103_c00203{left:514.800000pt;}
.x110_c00203{left:516.133333pt;}
.xe4_c00203{left:517.333333pt;}
.xc1_c00203{left:518.933333pt;}
.xb4_c00203{left:521.200000pt;}
.xbb_c00203{left:524.533333pt;}
.xae_c00203{left:526.000000pt;}
.x119_c00203{left:528.000000pt;}
.xa1_c00203{left:528.933333pt;}
.x9a_c00203{left:531.200000pt;}
.x8e_c00203{left:535.066667pt;}
.x94_c00203{left:536.266667pt;}
.xe8_c00203{left:537.866667pt;}
.xfc_c00203{left:539.066667pt;}
.xa7_c00203{left:540.666667pt;}
.xbc_c00203{left:542.800000pt;}
.xe5_c00203{left:547.466667pt;}
.xf7_c00203{left:548.666667pt;}
.xa2_c00203{left:550.000000pt;}
.xf0_c00203{left:551.066667pt;}
.x123_c00203{left:552.666667pt;}
.xf4_c00203{left:553.733333pt;}
.xfd_c00203{left:555.333333pt;}
.xa8_c00203{left:560.133333pt;}
.xea_c00203{left:561.466667pt;}
.xd4_c00203{left:562.933333pt;}
.x11d_c00203{left:564.133333pt;}
.xbd_c00203{left:565.866667pt;}
.x111_c00203{left:567.066667pt;}
.xa3_c00203{left:568.266667pt;}
.xdb_c00203{left:569.600000pt;}
.x116_c00203{left:570.666667pt;}
.xf1_c00203{left:571.866667pt;}
.xaf_c00203{left:573.333333pt;}
.xc2_c00203{left:574.933333pt;}
.x109_c00203{left:577.866667pt;}
.xeb_c00203{left:579.066667pt;}
.x101_c00203{left:581.466667pt;}
.xe6_c00203{left:582.400000pt;}
.xdf_c00203{left:583.733333pt;}
.xb5_c00203{left:586.133333pt;}
.x124_c00203{left:587.866667pt;}
.xd5_c00203{left:589.200000pt;}
.x127_c00203{left:591.333333pt;}
.xd0_c00203{left:592.533333pt;}
.xa4_c00203{left:593.600000pt;}
.x11c_c00203{left:595.600000pt;}
.xcb_c00203{left:597.066667pt;}
.x95_c00203{left:598.666667pt;}
.x121_c00203{left:600.000000pt;}
.xb0_c00203{left:601.200000pt;}
.x113_c00203{left:602.400000pt;}
.x8f_c00203{left:603.600000pt;}
.x9b_c00203{left:605.066667pt;}
.x107_c00203{left:608.266667pt;}
.xbe_c00203{left:609.733333pt;}
.xe0_c00203{left:612.533333pt;}
.xa9_c00203{left:614.266667pt;}
.xcc_c00203{left:615.333333pt;}
.x122_c00203{left:617.333333pt;}
.xd6_c00203{left:619.866667pt;}
.xf5_c00203{left:621.600000pt;}
.x10a_c00203{left:624.533333pt;}
.xc3_c00203{left:626.133333pt;}
.x12a_c00203{left:627.200000pt;}
.x102_c00203{left:628.133333pt;}
.xcd_c00203{left:629.066667pt;}
.x104_c00203{left:631.333333pt;}
.xf2_c00203{left:632.400000pt;}
.x9c_c00203{left:634.133333pt;}
.xf8_c00203{left:635.600000pt;}
.xdd_c00203{left:637.200000pt;}
.x96_c00203{left:638.933333pt;}
.xc8_c00203{left:641.866667pt;}
.xfe_c00203{left:643.333333pt;}
.xaa_c00203{left:646.000000pt;}
.x9d_c00203{left:648.266667pt;}
.xe1_c00203{left:649.733333pt;}
.xfb_c00203{left:651.066667pt;}
.x97_c00203{left:653.066667pt;}
.x105_c00203{left:655.066667pt;}
.xb6_c00203{left:657.466667pt;}
.xc4_c00203{left:658.800000pt;}
.xb1_c00203{left:660.400000pt;}
.x128_c00203{left:662.800000pt;}
.xec_c00203{left:664.133333pt;}
.xa5_c00203{left:665.866667pt;}
.xbf_c00203{left:667.333333pt;}
.x114_c00203{left:669.866667pt;}
.x112_c00203{left:672.266667pt;}
.xe7_c00203{left:674.533333pt;}
.xd7_c00203{left:676.133333pt;}
.x9e_c00203{left:678.400000pt;}
.x11a_c00203{left:679.333333pt;}
.xd1_c00203{left:680.266667pt;}
.xb2_c00203{left:681.200000pt;}
.xed_c00203{left:684.666667pt;}
.xe2_c00203{left:691.066667pt;}
.xb7_c00203{left:692.400000pt;}
.xd8_c00203{left:694.400000pt;}
.x9f_c00203{left:696.266667pt;}
.x90_c00203{left:698.933333pt;}
.xc5_c00203{left:701.733333pt;}
.x106_c00203{left:702.800000pt;}
.x100_c00203{left:704.000000pt;}
.xab_c00203{left:704.933333pt;}
.x10d_c00203{left:706.800000pt;}
.xf9_c00203{left:708.266667pt;}
.x11e_c00203{left:710.400000pt;}
.xd2_c00203{left:712.266667pt;}
.x98_c00203{left:713.866667pt;}
.xc0_c00203{left:715.066667pt;}
.xc6_c00203{left:716.133333pt;}
.xb8_c00203{left:718.000000pt;}
.x91_c00203{left:719.733333pt;}
.xa0_c00203{left:721.866667pt;}
.xde_c00203{left:725.466667pt;}
.x129_c00203{left:726.533333pt;}
.xce_c00203{left:728.000000pt;}
.xd3_c00203{left:729.600000pt;}
.xb3_c00203{left:730.800000pt;}
.x99_c00203{left:732.133333pt;}
.xc7_c00203{left:733.066667pt;}
.xa6_c00203{left:734.933333pt;}
.x92_c00203{left:736.000000pt;}
.xb9_c00203{left:736.933333pt;}
.xc9_c00203{left:739.466667pt;}
.x10e_c00203{left:740.666667pt;}
.xf6_c00203{left:742.266667pt;}
.x117_c00203{left:744.133333pt;}
.xac_c00203{left:745.866667pt;}
.xe3_c00203{left:747.066667pt;}
.xf3_c00203{left:748.533333pt;}
.x125_c00203{left:751.333333pt;}
.xe9_c00203{left:752.400000pt;}
.xad_c00203{left:754.133333pt;}
.xfa_c00203{left:755.333333pt;}
.x108_c00203{left:756.800000pt;}
.xef_c00203{left:760.400000pt;}
.x11f_c00203{left:762.000000pt;}
.x115_c00203{left:763.200000pt;}
.xcf_c00203{left:764.133333pt;}
.x10b_c00203{left:768.666667pt;}
.xee_c00203{left:769.733333pt;}
}





/* 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_c00204 {
    display:none;
  }
  .loading-indicator_c00204.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00204 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_c00204 { 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_c00204" -> "#page-container .classname_c00204")
 */
.pf_c00204 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00204 { /* 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_c00204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00204 { /* 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_c00204 { /* 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_c00204 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00204 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00204 {overflow:visible;}
  }
}
.c_c00204 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00204 { /* 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_c00204:after { /* webkit #35443 */
  content: '';
}
.t_c00204:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00204 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 */
}
.__c00204 { /* 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_c00204 { /* info for Javascript */
  display:none;
}
.l_c00204 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00204 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00204 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00204: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_c00204 {
    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_c00204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00204.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_c00204 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00204;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.000000;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;}
.mcb_c00204{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00204{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m94_c00204{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00204{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00204{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m93_c00204{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m71_c00204{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m17_c00204{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m97_c00204{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mee_c00204{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00204{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00204{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m61_c00204{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m60_c00204{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00204{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00204{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.mda_c00204{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m109_c00204{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00204{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00204{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00204{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m74_c00204{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m87_c00204{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m95_c00204{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.med_c00204{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m15_c00204{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00204{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00204{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m86_c00204{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00204{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00204{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00204{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m106_c00204{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00204{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m67_c00204{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m10_c00204{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00204{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00204{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m72_c00204{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma_c00204{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00204{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m22_c00204{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mea_c00204{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m89_c00204{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m49_c00204{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m73_c00204{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00204{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m13_c00204{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m104_c00204{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00204{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00204{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m77_c00204{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m25_c00204{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00204{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00204{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m19_c00204{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m1_c00204{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m21_c00204{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m35_c00204{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00204{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00204{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m47_c00204{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00204{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00204{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00204{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00204{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m81_c00204{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md8_c00204{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m68_c00204{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00204{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mff_c00204{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m5_c00204{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.maf_c00204{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.me8_c00204{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00204{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m43_c00204{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mce_c00204{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mef_c00204{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.meb_c00204{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00204{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00204{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m37_c00204{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00204{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00204{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m80_c00204{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00204{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00204{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00204{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m33_c00204{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m64_c00204{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me7_c00204{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m41_c00204{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00204{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9_c00204{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me1_c00204{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2_c00204{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00204{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00204{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00204{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m50_c00204{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m85_c00204{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.md3_c00204{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00204{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00204{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.md9_c00204{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m20_c00204{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mec_c00204{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m16_c00204{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00204{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00204{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00204{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00204{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m76_c00204{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00204{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00204{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m62_c00204{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6_c00204{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mba_c00204{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m63_c00204{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00204{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00204{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m75_c00204{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00204{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m92_c00204{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00204{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00204{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00204{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m26_c00204{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf_c00204{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m30_c00204{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00204{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m54_c00204{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mca_c00204{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md_c00204{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m24_c00204{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00204{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m53_c00204{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00204{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00204{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m51_c00204{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00204{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m29_c00204{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00204{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4_c00204{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md2_c00204{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00204{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00204{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m100_c00204{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mc_c00204{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00204{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md0_c00204{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00204{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m18_c00204{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00204{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00204{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m27_c00204{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00204{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00204{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00204{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m58_c00204{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m66_c00204{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me0_c00204{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m45_c00204{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00204{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7_c00204{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00204{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m14_c00204{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00204{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00204{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m42_c00204{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m98_c00204{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00204{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.me9_c00204{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00204{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00204{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00204{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00204{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00204{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00204{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m12_c00204{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m38_c00204{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m101_c00204{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m52_c00204{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m32_c00204{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00204{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00204{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00204{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m36_c00204{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00204{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m82_c00204{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00204{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m34_c00204{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00204{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m108_c00204{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m83_c00204{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8_c00204{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00204{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb_c00204{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.md1_c00204{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m57_c00204{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m84_c00204{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mae_c00204{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md7_c00204{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00204{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00204{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m46_c00204{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m23_c00204{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mde_c00204{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00204{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00204{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md6_c00204{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00204{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m90_c00204{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m88_c00204{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.md5_c00204{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00204{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00204{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3_c00204{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00204{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m28_c00204{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00204{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m79_c00204{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00204{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me4_c00204{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00204{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m107_c00204{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m48_c00204{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mad_c00204{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.me_c00204{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me2_c00204{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m40_c00204{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m91_c00204{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00204{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m105_c00204{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00204{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m39_c00204{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m59_c00204{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m99_c00204{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00204{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00204{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.maa_c00204{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md4_c00204{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mab_c00204{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m70_c00204{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m31_c00204{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m44_c00204{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00204{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m56_c00204{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me6_c00204{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m55_c00204{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00204{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m65_c00204{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00204{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mac_c00204{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00204{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00204{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me3_c00204{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00204{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me5_c00204{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m102_c00204{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00204{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00204{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m96_c00204{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00204{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m103_c00204{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00204{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m78_c00204{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.m0_c00204{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls0_c00204{letter-spacing:0.000000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{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__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00204{word-spacing:-8.265306px;}
.ws6_c00204{word-spacing:-6.924399px;}
.wsa_c00204{word-spacing:0.000000px;}
.ws5_c00204{word-spacing:4.736842px;}
.ws9_c00204{word-spacing:6.055215px;}
.ws8_c00204{word-spacing:7.111554px;}
.ws0_c00204{word-spacing:8.194444px;}
.ws3_c00204{word-spacing:15.000000px;}
.ws2_c00204{word-spacing:16.785714px;}
.ws1_c00204{word-spacing:18.125000px;}
.ws4_c00204{word-spacing:34.642857px;}
._0_c00204{width:64.642857px;}
.fc0_c00204{color:transparent;}
.fs6_c00204{font-size:30.000000px;}
.fs5_c00204{font-size:54.000000px;}
.fs4_c00204{font-size:60.000000px;}
.fs2_c00204{font-size:66.000000px;}
.fs3_c00204{font-size:72.000000px;}
.fs0_c00204{font-size:78.000000px;}
.fs1_c00204{font-size:108.000000px;}
.y0_c00204{bottom:0.000000px;}
.y6b_c00204{bottom:190.200000px;}
.y39_c00204{bottom:191.250000px;}
.y38_c00204{bottom:203.100000px;}
.y6a_c00204{bottom:208.500000px;}
.y37_c00204{bottom:217.800000px;}
.y69_c00204{bottom:226.800000px;}
.y36_c00204{bottom:231.450000px;}
.y68_c00204{bottom:244.500000px;}
.y35_c00204{bottom:245.850000px;}
.y34_c00204{bottom:260.250000px;}
.y67_c00204{bottom:262.500000px;}
.y33_c00204{bottom:278.250000px;}
.y66_c00204{bottom:280.800000px;}
.y32_c00204{bottom:292.950000px;}
.y65_c00204{bottom:298.050000px;}
.y31_c00204{bottom:307.350000px;}
.y64_c00204{bottom:316.050000px;}
.y30_c00204{bottom:321.750000px;}
.y63_c00204{bottom:334.050000px;}
.y2f_c00204{bottom:335.850000px;}
.y2e_c00204{bottom:350.250000px;}
.y62_c00204{bottom:365.100000px;}
.y61_c00204{bottom:382.800000px;}
.y2d_c00204{bottom:384.900000px;}
.y60_c00204{bottom:400.800000px;}
.y2c_c00204{bottom:402.600000px;}
.y5f_c00204{bottom:418.500000px;}
.y2b_c00204{bottom:420.600000px;}
.y5e_c00204{bottom:436.200000px;}
.y2a_c00204{bottom:438.300000px;}
.y5d_c00204{bottom:454.200000px;}
.y29_c00204{bottom:456.000000px;}
.y5c_c00204{bottom:471.900000px;}
.y28_c00204{bottom:473.700000px;}
.y5b_c00204{bottom:489.900000px;}
.y27_c00204{bottom:491.700000px;}
.y5a_c00204{bottom:507.900000px;}
.y26_c00204{bottom:509.400000px;}
.y25_c00204{bottom:527.100000px;}
.y59_c00204{bottom:538.200000px;}
.y24_c00204{bottom:543.600000px;}
.y58_c00204{bottom:556.500000px;}
.y23_c00204{bottom:558.300000px;}
.y22_c00204{bottom:573.150000px;}
.y57_c00204{bottom:574.500000px;}
.y21_c00204{bottom:586.500000px;}
.y56_c00204{bottom:592.500000px;}
.y20_c00204{bottom:602.700000px;}
.y55_c00204{bottom:610.800000px;}
.y1f_c00204{bottom:616.650000px;}
.y54_c00204{bottom:628.500000px;}
.y1e_c00204{bottom:634.350000px;}
.y1d_c00204{bottom:652.350000px;}
.y53_c00204{bottom:654.150000px;}
.y52_c00204{bottom:672.150000px;}
.y1c_c00204{bottom:673.950000px;}
.y51_c00204{bottom:689.850000px;}
.y1b_c00204{bottom:691.650000px;}
.y50_c00204{bottom:707.550000px;}
.y1a_c00204{bottom:709.350000px;}
.y4f_c00204{bottom:725.550000px;}
.y19_c00204{bottom:727.050000px;}
.y4e_c00204{bottom:743.250000px;}
.y18_c00204{bottom:745.050000px;}
.y4d_c00204{bottom:761.250000px;}
.y17_c00204{bottom:762.750000px;}
.y4c_c00204{bottom:778.950000px;}
.y16_c00204{bottom:780.450000px;}
.y4b_c00204{bottom:796.650000px;}
.y15_c00204{bottom:805.650000px;}
.y14_c00204{bottom:806.400000px;}
.y4a_c00204{bottom:823.050000px;}
.y13_c00204{bottom:824.400000px;}
.y49_c00204{bottom:841.350000px;}
.y12_c00204{bottom:845.850000px;}
.y11_c00204{bottom:863.850000px;}
.y48_c00204{bottom:866.850000px;}
.y10_c00204{bottom:881.550000px;}
.y47_c00204{bottom:885.150000px;}
.yf_c00204{bottom:899.550000px;}
.y46_c00204{bottom:903.150000px;}
.ye_c00204{bottom:917.250000px;}
.y45_c00204{bottom:920.850000px;}
.yd_c00204{bottom:934.950000px;}
.y44_c00204{bottom:938.550000px;}
.y43_c00204{bottom:956.250000px;}
.yc_c00204{bottom:956.850000px;}
.y42_c00204{bottom:973.950000px;}
.yb_c00204{bottom:975.150000px;}
.y41_c00204{bottom:991.950000px;}
.ya_c00204{bottom:992.850000px;}
.y40_c00204{bottom:1009.950000px;}
.y9_c00204{bottom:1010.850000px;}
.y3f_c00204{bottom:1027.650000px;}
.y8_c00204{bottom:1028.550000px;}
.y7_c00204{bottom:1045.050000px;}
.y3e_c00204{bottom:1045.350000px;}
.y3d_c00204{bottom:1063.350000px;}
.y6_c00204{bottom:1063.800000px;}
.y3c_c00204{bottom:1081.050000px;}
.y5_c00204{bottom:1081.500000px;}
.y3b_c00204{bottom:1099.050000px;}
.y4_c00204{bottom:1099.500000px;}
.y3a_c00204{bottom:1116.750000px;}
.y3_c00204{bottom:1117.800000px;}
.y2_c00204{bottom:1137.600000px;}
.y1_c00204{bottom:1143.750000px;}
.h8_c00204{height:30.000000px;}
.h7_c00204{height:54.000000px;}
.h6_c00204{height:60.000000px;}
.h4_c00204{height:66.000000px;}
.h5_c00204{height:72.000000px;}
.h2_c00204{height:78.000000px;}
.h3_c00204{height:108.000000px;}
.h1_c00204{height:1272.750000px;}
.h0_c00204{height:1272.960022px;}
.w1_c00204{width:963.000000px;}
.w0_c00204{width:963.359985px;}
.x0_c00204{left:0.000000px;}
.x43_c00204{left:94.350000px;}
.x66_c00204{left:95.700000px;}
.x83_c00204{left:108.900000px;}
.x1d_c00204{left:111.300000px;}
.x14_c00204{left:112.350000px;}
.x3_c00204{left:113.700000px;}
.x60_c00204{left:122.100000px;}
.x8c_c00204{left:123.150000px;}
.x84_c00204{left:124.350000px;}
.x9e_c00204{left:125.850000px;}
.x9c_c00204{left:127.950000px;}
.x27_c00204{left:129.600000px;}
.x3f_c00204{left:131.100000px;}
.x8f_c00204{left:134.250000px;}
.x25_c00204{left:135.450000px;}
.x67_c00204{left:137.400000px;}
.x1e_c00204{left:140.850000px;}
.x15_c00204{left:142.650000px;}
.x94_c00204{left:144.000000px;}
.x79_c00204{left:146.250000px;}
.x2d_c00204{left:148.800000px;}
.x85_c00204{left:150.300000px;}
.x3a_c00204{left:151.800000px;}
.x7f_c00204{left:153.000000px;}
.xa5_c00204{left:154.050000px;}
.xa6_c00204{left:155.550000px;}
.x4_c00204{left:156.900000px;}
.x54_c00204{left:158.700000px;}
.x5b_c00204{left:159.750000px;}
.x1f_c00204{left:160.950000px;}
.x8d_c00204{left:165.300000px;}
.x7a_c00204{left:166.800000px;}
.x4c_c00204{left:168.150000px;}
.x16_c00204{left:171.450000px;}
.x2e_c00204{left:173.250000px;}
.x26_c00204{left:175.050000px;}
.x61_c00204{left:176.100000px;}
.x28_c00204{left:177.150000px;}
.x75_c00204{left:180.000000px;}
.x50_c00204{left:184.650000px;}
.x40_c00204{left:185.700000px;}
.x17_c00204{left:187.350000px;}
.xa2_c00204{left:189.900000px;}
.x6a_c00204{left:192.000000px;}
.x7c_c00204{left:193.350000px;}
.x58_c00204{left:195.000000px;}
.xc_c00204{left:196.050000px;}
.x62_c00204{left:197.700000px;}
.x5_c00204{left:201.150000px;}
.x20_c00204{left:204.450000px;}
.x41_c00204{left:207.000000px;}
.x59_c00204{left:210.450000px;}
.xd_c00204{left:212.250000px;}
.x18_c00204{left:213.300000px;}
.x3b_c00204{left:214.800000px;}
.x95_c00204{left:217.050000px;}
.x71_c00204{left:218.100000px;}
.x87_c00204{left:219.450000px;}
.x4d_c00204{left:220.650000px;}
.x2f_c00204{left:221.850000px;}
.x19_c00204{left:223.050000px;}
.x9a_c00204{left:225.450000px;}
.x6c_c00204{left:226.950000px;}
.x37_c00204{left:229.650000px;}
.x30_c00204{left:230.850000px;}
.x48_c00204{left:231.900000px;}
.x5c_c00204{left:234.000000px;}
.x9f_c00204{left:235.650000px;}
.x6b_c00204{left:237.000000px;}
.x7d_c00204{left:238.050000px;}
.x21_c00204{left:239.400000px;}
.x72_c00204{left:240.450000px;}
.x31_c00204{left:241.950000px;}
.x44_c00204{left:243.450000px;}
.x70_c00204{left:246.900000px;}
.x4e_c00204{left:248.700000px;}
.x38_c00204{left:250.500000px;}
.x80_c00204{left:252.450000px;}
.x5a_c00204{left:255.150000px;}
.x86_c00204{left:256.200000px;}
.x63_c00204{left:257.850000px;}
.x88_c00204{left:259.800000px;}
.x6_c00204{left:260.850000px;}
.x42_c00204{left:262.050000px;}
.xe_c00204{left:264.150000px;}
.x6d_c00204{left:266.850000px;}
.x91_c00204{left:268.800000px;}
.x32_c00204{left:271.500000px;}
.x45_c00204{left:274.350000px;}
.xa7_c00204{left:275.850000px;}
.x7_c00204{left:278.850000px;}
.x22_c00204{left:280.800000px;}
.x29_c00204{left:281.850000px;}
.xa4_c00204{left:283.200000px;}
.xf_c00204{left:284.250000px;}
.x96_c00204{left:287.550000px;}
.x1a_c00204{left:288.900000px;}
.x65_c00204{left:291.150000px;}
.x76_c00204{left:294.150000px;}
.x55_c00204{left:298.050000px;}
.x64_c00204{left:299.550000px;}
.x33_c00204{left:301.800000px;}
.x2a_c00204{left:304.500000px;}
.x98_c00204{left:306.900000px;}
.x90_c00204{left:308.550000px;}
.x81_c00204{left:310.350000px;}
.x68_c00204{left:314.100000px;}
.x5d_c00204{left:316.500000px;}
.x49_c00204{left:317.550000px;}
.x23_c00204{left:320.100000px;}
.x10_c00204{left:322.350000px;}
.x97_c00204{left:324.300000px;}
.x3c_c00204{left:325.650000px;}
.x51_c00204{left:327.150000px;}
.x8_c00204{left:329.250000px;}
.x34_c00204{left:330.600000px;}
.x89_c00204{left:331.650000px;}
.x4f_c00204{left:334.050000px;}
.x77_c00204{left:335.250000px;}
.x1_c00204{left:336.300000px;}
.x92_c00204{left:340.050000px;}
.x4a_c00204{left:341.250000px;}
.x11_c00204{left:342.450000px;}
.xa0_c00204{left:344.250000px;}
.x3d_c00204{left:345.450000px;}
.x35_c00204{left:347.100000px;}
.x69_c00204{left:348.600000px;}
.x9_c00204{left:350.850000px;}
.x2b_c00204{left:352.050000px;}
.x73_c00204{left:354.900000px;}
.x7e_c00204{left:356.850000px;}
.x12_c00204{left:357.900000px;}
.x8a_c00204{left:359.100000px;}
.x39_c00204{left:361.350000px;}
.x1b_c00204{left:363.000000px;}
.x46_c00204{left:364.350000px;}
.xa1_c00204{left:365.850000px;}
.x9d_c00204{left:369.600000px;}
.x56_c00204{left:370.800000px;}
.x8e_c00204{left:372.300000px;}
.x78_c00204{left:373.800000px;}
.x52_c00204{left:375.450000px;}
.x5e_c00204{left:378.750000px;}
.x6e_c00204{left:380.250000px;}
.x3e_c00204{left:381.750000px;}
.x7b_c00204{left:383.850000px;}
.x9b_c00204{left:385.350000px;}
.xa_c00204{left:387.150000px;}
.xa3_c00204{left:388.500000px;}
.x47_c00204{left:390.600000px;}
.x4b_c00204{left:392.700000px;}
.x93_c00204{left:394.650000px;}
.x5f_c00204{left:396.750000px;}
.x36_c00204{left:398.250000px;}
.x24_c00204{left:400.050000px;}
.x13_c00204{left:402.900000px;}
.x74_c00204{left:404.700000px;}
.x99_c00204{left:406.650000px;}
.x53_c00204{left:410.400000px;}
.x82_c00204{left:413.400000px;}
.x1c_c00204{left:414.450000px;}
.x8b_c00204{left:415.950000px;}
.x57_c00204{left:417.900000px;}
.xb_c00204{left:419.250000px;}
.x2c_c00204{left:423.750000px;}
.x6f_c00204{left:425.550000px;}
.xf9_c00204{left:450.000000px;}
.x11a_c00204{left:457.200000px;}
.xe9_c00204{left:467.100000px;}
.xa8_c00204{left:468.300000px;}
.xf1_c00204{left:484.950000px;}
.x143_c00204{left:487.500000px;}
.xd2_c00204{left:488.700000px;}
.xb0_c00204{left:491.100000px;}
.xea_c00204{left:492.300000px;}
.xff_c00204{left:495.750000px;}
.x11b_c00204{left:500.700000px;}
.x113_c00204{left:501.750000px;}
.xe2_c00204{left:505.050000px;}
.xfa_c00204{left:507.300000px;}
.xb6_c00204{left:508.800000px;}
.x12b_c00204{left:509.850000px;}
.xdc_c00204{left:511.800000px;}
.xeb_c00204{left:513.150000px;}
.xc3_c00204{left:514.200000px;}
.x13c_c00204{left:515.250000px;}
.xa9_c00204{left:517.950000px;}
.xc7_c00204{left:519.300000px;}
.x110_c00204{left:520.800000px;}
.xcd_c00204{left:522.000000px;}
.x12e_c00204{left:524.550000px;}
.xbc_c00204{left:525.750000px;}
.xb1_c00204{left:526.800000px;}
.x10b_c00204{left:530.100000px;}
.xd7_c00204{left:531.600000px;}
.xfb_c00204{left:532.800000px;}
.xc8_c00204{left:536.550000px;}
.xf7_c00204{left:537.900000px;}
.x13d_c00204{left:538.950000px;}
.xd3_c00204{left:541.650000px;}
.xdd_c00204{left:544.200000px;}
.xf2_c00204{left:545.400000px;}
.x141_c00204{left:546.450000px;}
.x100_c00204{left:547.650000px;}
.x12f_c00204{left:551.850000px;}
.xec_c00204{left:553.800000px;}
.x10c_c00204{left:555.000000px;}
.x13a_c00204{left:556.350000px;}
.xaa_c00204{left:557.850000px;}
.xf8_c00204{left:559.800000px;}
.x144_c00204{left:560.850000px;}
.x107_c00204{left:563.250000px;}
.x11c_c00204{left:564.750000px;}
.xe3_c00204{left:567.300000px;}
.x111_c00204{left:569.400000px;}
.x130_c00204{left:570.900000px;}
.x10d_c00204{left:574.800000px;}
.x109_c00204{left:576.000000px;}
.xf3_c00204{left:578.550000px;}
.xfc_c00204{left:581.400000px;}
.xc9_c00204{left:582.600000px;}
.xce_c00204{left:584.700000px;}
.xb7_c00204{left:585.900000px;}
.x13b_c00204{left:587.700000px;}
.xb2_c00204{left:588.750000px;}
.x114_c00204{left:591.000000px;}
.xbd_c00204{left:592.350000px;}
.x127_c00204{left:593.700000px;}
.x120_c00204{left:595.200000px;}
.xcf_c00204{left:597.000000px;}
.x11d_c00204{left:600.000000px;}
.xef_c00204{left:602.550000px;}
.xd4_c00204{left:604.950000px;}
.xb8_c00204{left:606.750000px;}
.xed_c00204{left:608.550000px;}
.xab_c00204{left:609.750000px;}
.xc4_c00204{left:611.400000px;}
.x128_c00204{left:613.200000px;}
.x101_c00204{left:616.500000px;}
.x12a_c00204{left:618.450000px;}
.x13e_c00204{left:619.950000px;}
.xbe_c00204{left:621.150000px;}
.x134_c00204{left:623.100000px;}
.x142_c00204{left:624.150000px;}
.x115_c00204{left:626.250000px;}
.xd0_c00204{left:627.300000px;}
.xf4_c00204{left:628.650000px;}
.xac_c00204{left:631.050000px;}
.xfd_c00204{left:634.350000px;}
.xe4_c00204{left:636.000000px;}
.x102_c00204{left:637.050000px;}
.xd8_c00204{left:638.850000px;}
.x13f_c00204{left:641.850000px;}
.x123_c00204{left:642.900000px;}
.x10e_c00204{left:645.000000px;}
.x137_c00204{left:646.350000px;}
.xb3_c00204{left:647.400000px;}
.xca_c00204{left:650.250000px;}
.xde_c00204{left:651.450000px;}
.x108_c00204{left:653.250000px;}
.x131_c00204{left:655.050000px;}
.xd9_c00204{left:656.550000px;}
.xf5_c00204{left:658.500000px;}
.x116_c00204{left:660.150000px;}
.x103_c00204{left:661.950000px;}
.xd5_c00204{left:663.600000px;}
.x11e_c00204{left:665.550000px;}
.x147_c00204{left:666.750000px;}
.x138_c00204{left:667.950000px;}
.xe6_c00204{left:670.200000px;}
.xc5_c00204{left:673.350000px;}
.x10a_c00204{left:674.400000px;}
.x135_c00204{left:676.350000px;}
.xbf_c00204{left:678.000000px;}
.xfe_c00204{left:680.850000px;}
.xd6_c00204{left:682.350000px;}
.xad_c00204{left:684.000000px;}
.x129_c00204{left:686.100000px;}
.x125_c00204{left:689.400000px;}
.x104_c00204{left:691.500000px;}
.x133_c00204{left:692.700000px;}
.x12c_c00204{left:695.400000px;}
.xb9_c00204{left:697.050000px;}
.x117_c00204{left:698.700000px;}
.xc0_c00204{left:699.900000px;}
.x121_c00204{left:701.400000px;}
.xe7_c00204{left:702.900000px;}
.x145_c00204{left:705.150000px;}
.xda_c00204{left:706.650000px;}
.x140_c00204{left:708.150000px;}
.xe8_c00204{left:710.100000px;}
.xb4_c00204{left:711.150000px;}
.x112_c00204{left:713.400000px;}
.xee_c00204{left:715.500000px;}
.xd1_c00204{left:717.300000px;}
.x105_c00204{left:719.550000px;}
.xae_c00204{left:723.600000px;}
.xb5_c00204{left:727.050000px;}
.x124_c00204{left:728.850000px;}
.xc1_c00204{left:730.200000px;}
.xe5_c00204{left:732.000000px;}
.xcb_c00204{left:734.100000px;}
.x12d_c00204{left:735.750000px;}
.x118_c00204{left:738.300000px;}
.xdf_c00204{left:739.350000px;}
.x106_c00204{left:741.150000px;}
.xaf_c00204{left:743.100000px;}
.x122_c00204{left:746.850000px;}
.xba_c00204{left:748.200000px;}
.xf6_c00204{left:749.250000px;}
.x132_c00204{left:751.200000px;}
.xe0_c00204{left:753.000000px;}
.xc6_c00204{left:755.100000px;}
.xf0_c00204{left:756.300000px;}
.x2_c00204{left:758.250000px;}
.x119_c00204{left:759.600000px;}
.xc2_c00204{left:761.100000px;}
.x139_c00204{left:762.750000px;}
.x11f_c00204{left:763.800000px;}
.x10f_c00204{left:765.900000px;}
.xbb_c00204{left:768.750000px;}
.xdb_c00204{left:769.950000px;}
.xe1_c00204{left:771.000000px;}
.x146_c00204{left:773.550000px;}
.x136_c00204{left:776.100000px;}
.x126_c00204{left:779.400000px;}
.xcc_c00204{left:780.900000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ws7_c00204{word-spacing:-7.346939pt;}
.ws6_c00204{word-spacing:-6.155021pt;}
.wsa_c00204{word-spacing:0.000000pt;}
.ws5_c00204{word-spacing:4.210526pt;}
.ws9_c00204{word-spacing:5.382413pt;}
.ws8_c00204{word-spacing:6.321381pt;}
.ws0_c00204{word-spacing:7.283951pt;}
.ws3_c00204{word-spacing:13.333333pt;}
.ws2_c00204{word-spacing:14.920635pt;}
.ws1_c00204{word-spacing:16.111111pt;}
.ws4_c00204{word-spacing:30.793651pt;}
._0_c00204{width:57.460317pt;}
.fs6_c00204{font-size:26.666667pt;}
.fs5_c00204{font-size:48.000000pt;}
.fs4_c00204{font-size:53.333333pt;}
.fs2_c00204{font-size:58.666667pt;}
.fs3_c00204{font-size:64.000000pt;}
.fs0_c00204{font-size:69.333333pt;}
.fs1_c00204{font-size:96.000000pt;}
.y0_c00204{bottom:0.000000pt;}
.y6b_c00204{bottom:169.066667pt;}
.y39_c00204{bottom:170.000000pt;}
.y38_c00204{bottom:180.533333pt;}
.y6a_c00204{bottom:185.333333pt;}
.y37_c00204{bottom:193.600000pt;}
.y69_c00204{bottom:201.600000pt;}
.y36_c00204{bottom:205.733333pt;}
.y68_c00204{bottom:217.333333pt;}
.y35_c00204{bottom:218.533333pt;}
.y34_c00204{bottom:231.333333pt;}
.y67_c00204{bottom:233.333333pt;}
.y33_c00204{bottom:247.333333pt;}
.y66_c00204{bottom:249.600000pt;}
.y32_c00204{bottom:260.400000pt;}
.y65_c00204{bottom:264.933333pt;}
.y31_c00204{bottom:273.200000pt;}
.y64_c00204{bottom:280.933333pt;}
.y30_c00204{bottom:286.000000pt;}
.y63_c00204{bottom:296.933333pt;}
.y2f_c00204{bottom:298.533333pt;}
.y2e_c00204{bottom:311.333333pt;}
.y62_c00204{bottom:324.533333pt;}
.y61_c00204{bottom:340.266667pt;}
.y2d_c00204{bottom:342.133333pt;}
.y60_c00204{bottom:356.266667pt;}
.y2c_c00204{bottom:357.866667pt;}
.y5f_c00204{bottom:372.000000pt;}
.y2b_c00204{bottom:373.866667pt;}
.y5e_c00204{bottom:387.733333pt;}
.y2a_c00204{bottom:389.600000pt;}
.y5d_c00204{bottom:403.733333pt;}
.y29_c00204{bottom:405.333333pt;}
.y5c_c00204{bottom:419.466667pt;}
.y28_c00204{bottom:421.066667pt;}
.y5b_c00204{bottom:435.466667pt;}
.y27_c00204{bottom:437.066667pt;}
.y5a_c00204{bottom:451.466667pt;}
.y26_c00204{bottom:452.800000pt;}
.y25_c00204{bottom:468.533333pt;}
.y59_c00204{bottom:478.400000pt;}
.y24_c00204{bottom:483.200000pt;}
.y58_c00204{bottom:494.666667pt;}
.y23_c00204{bottom:496.266667pt;}
.y22_c00204{bottom:509.466667pt;}
.y57_c00204{bottom:510.666667pt;}
.y21_c00204{bottom:521.333333pt;}
.y56_c00204{bottom:526.666667pt;}
.y20_c00204{bottom:535.733333pt;}
.y55_c00204{bottom:542.933333pt;}
.y1f_c00204{bottom:548.133333pt;}
.y54_c00204{bottom:558.666667pt;}
.y1e_c00204{bottom:563.866667pt;}
.y1d_c00204{bottom:579.866667pt;}
.y53_c00204{bottom:581.466667pt;}
.y52_c00204{bottom:597.466667pt;}
.y1c_c00204{bottom:599.066667pt;}
.y51_c00204{bottom:613.200000pt;}
.y1b_c00204{bottom:614.800000pt;}
.y50_c00204{bottom:628.933333pt;}
.y1a_c00204{bottom:630.533333pt;}
.y4f_c00204{bottom:644.933333pt;}
.y19_c00204{bottom:646.266667pt;}
.y4e_c00204{bottom:660.666667pt;}
.y18_c00204{bottom:662.266667pt;}
.y4d_c00204{bottom:676.666667pt;}
.y17_c00204{bottom:678.000000pt;}
.y4c_c00204{bottom:692.400000pt;}
.y16_c00204{bottom:693.733333pt;}
.y4b_c00204{bottom:708.133333pt;}
.y15_c00204{bottom:716.133333pt;}
.y14_c00204{bottom:716.800000pt;}
.y4a_c00204{bottom:731.600000pt;}
.y13_c00204{bottom:732.800000pt;}
.y49_c00204{bottom:747.866667pt;}
.y12_c00204{bottom:751.866667pt;}
.y11_c00204{bottom:767.866667pt;}
.y48_c00204{bottom:770.533333pt;}
.y10_c00204{bottom:783.600000pt;}
.y47_c00204{bottom:786.800000pt;}
.yf_c00204{bottom:799.600000pt;}
.y46_c00204{bottom:802.800000pt;}
.ye_c00204{bottom:815.333333pt;}
.y45_c00204{bottom:818.533333pt;}
.yd_c00204{bottom:831.066667pt;}
.y44_c00204{bottom:834.266667pt;}
.y43_c00204{bottom:850.000000pt;}
.yc_c00204{bottom:850.533333pt;}
.y42_c00204{bottom:865.733333pt;}
.yb_c00204{bottom:866.800000pt;}
.y41_c00204{bottom:881.733333pt;}
.ya_c00204{bottom:882.533333pt;}
.y40_c00204{bottom:897.733333pt;}
.y9_c00204{bottom:898.533333pt;}
.y3f_c00204{bottom:913.466667pt;}
.y8_c00204{bottom:914.266667pt;}
.y7_c00204{bottom:928.933333pt;}
.y3e_c00204{bottom:929.200000pt;}
.y3d_c00204{bottom:945.200000pt;}
.y6_c00204{bottom:945.600000pt;}
.y3c_c00204{bottom:960.933333pt;}
.y5_c00204{bottom:961.333333pt;}
.y3b_c00204{bottom:976.933333pt;}
.y4_c00204{bottom:977.333333pt;}
.y3a_c00204{bottom:992.666667pt;}
.y3_c00204{bottom:993.600000pt;}
.y2_c00204{bottom:1011.200000pt;}
.y1_c00204{bottom:1016.666667pt;}
.h8_c00204{height:26.666667pt;}
.h7_c00204{height:48.000000pt;}
.h6_c00204{height:53.333333pt;}
.h4_c00204{height:58.666667pt;}
.h5_c00204{height:64.000000pt;}
.h2_c00204{height:69.333333pt;}
.h3_c00204{height:96.000000pt;}
.h1_c00204{height:1131.333333pt;}
.h0_c00204{height:1131.520020pt;}
.w1_c00204{width:856.000000pt;}
.w0_c00204{width:856.319987pt;}
.x0_c00204{left:0.000000pt;}
.x43_c00204{left:83.866667pt;}
.x66_c00204{left:85.066667pt;}
.x83_c00204{left:96.800000pt;}
.x1d_c00204{left:98.933333pt;}
.x14_c00204{left:99.866667pt;}
.x3_c00204{left:101.066667pt;}
.x60_c00204{left:108.533333pt;}
.x8c_c00204{left:109.466667pt;}
.x84_c00204{left:110.533333pt;}
.x9e_c00204{left:111.866667pt;}
.x9c_c00204{left:113.733333pt;}
.x27_c00204{left:115.200000pt;}
.x3f_c00204{left:116.533333pt;}
.x8f_c00204{left:119.333333pt;}
.x25_c00204{left:120.400000pt;}
.x67_c00204{left:122.133333pt;}
.x1e_c00204{left:125.200000pt;}
.x15_c00204{left:126.800000pt;}
.x94_c00204{left:128.000000pt;}
.x79_c00204{left:130.000000pt;}
.x2d_c00204{left:132.266667pt;}
.x85_c00204{left:133.600000pt;}
.x3a_c00204{left:134.933333pt;}
.x7f_c00204{left:136.000000pt;}
.xa5_c00204{left:136.933333pt;}
.xa6_c00204{left:138.266667pt;}
.x4_c00204{left:139.466667pt;}
.x54_c00204{left:141.066667pt;}
.x5b_c00204{left:142.000000pt;}
.x1f_c00204{left:143.066667pt;}
.x8d_c00204{left:146.933333pt;}
.x7a_c00204{left:148.266667pt;}
.x4c_c00204{left:149.466667pt;}
.x16_c00204{left:152.400000pt;}
.x2e_c00204{left:154.000000pt;}
.x26_c00204{left:155.600000pt;}
.x61_c00204{left:156.533333pt;}
.x28_c00204{left:157.466667pt;}
.x75_c00204{left:160.000000pt;}
.x50_c00204{left:164.133333pt;}
.x40_c00204{left:165.066667pt;}
.x17_c00204{left:166.533333pt;}
.xa2_c00204{left:168.800000pt;}
.x6a_c00204{left:170.666667pt;}
.x7c_c00204{left:171.866667pt;}
.x58_c00204{left:173.333333pt;}
.xc_c00204{left:174.266667pt;}
.x62_c00204{left:175.733333pt;}
.x5_c00204{left:178.800000pt;}
.x20_c00204{left:181.733333pt;}
.x41_c00204{left:184.000000pt;}
.x59_c00204{left:187.066667pt;}
.xd_c00204{left:188.666667pt;}
.x18_c00204{left:189.600000pt;}
.x3b_c00204{left:190.933333pt;}
.x95_c00204{left:192.933333pt;}
.x71_c00204{left:193.866667pt;}
.x87_c00204{left:195.066667pt;}
.x4d_c00204{left:196.133333pt;}
.x2f_c00204{left:197.200000pt;}
.x19_c00204{left:198.266667pt;}
.x9a_c00204{left:200.400000pt;}
.x6c_c00204{left:201.733333pt;}
.x37_c00204{left:204.133333pt;}
.x30_c00204{left:205.200000pt;}
.x48_c00204{left:206.133333pt;}
.x5c_c00204{left:208.000000pt;}
.x9f_c00204{left:209.466667pt;}
.x6b_c00204{left:210.666667pt;}
.x7d_c00204{left:211.600000pt;}
.x21_c00204{left:212.800000pt;}
.x72_c00204{left:213.733333pt;}
.x31_c00204{left:215.066667pt;}
.x44_c00204{left:216.400000pt;}
.x70_c00204{left:219.466667pt;}
.x4e_c00204{left:221.066667pt;}
.x38_c00204{left:222.666667pt;}
.x80_c00204{left:224.400000pt;}
.x5a_c00204{left:226.800000pt;}
.x86_c00204{left:227.733333pt;}
.x63_c00204{left:229.200000pt;}
.x88_c00204{left:230.933333pt;}
.x6_c00204{left:231.866667pt;}
.x42_c00204{left:232.933333pt;}
.xe_c00204{left:234.800000pt;}
.x6d_c00204{left:237.200000pt;}
.x91_c00204{left:238.933333pt;}
.x32_c00204{left:241.333333pt;}
.x45_c00204{left:243.866667pt;}
.xa7_c00204{left:245.200000pt;}
.x7_c00204{left:247.866667pt;}
.x22_c00204{left:249.600000pt;}
.x29_c00204{left:250.533333pt;}
.xa4_c00204{left:251.733333pt;}
.xf_c00204{left:252.666667pt;}
.x96_c00204{left:255.600000pt;}
.x1a_c00204{left:256.800000pt;}
.x65_c00204{left:258.800000pt;}
.x76_c00204{left:261.466667pt;}
.x55_c00204{left:264.933333pt;}
.x64_c00204{left:266.266667pt;}
.x33_c00204{left:268.266667pt;}
.x2a_c00204{left:270.666667pt;}
.x98_c00204{left:272.800000pt;}
.x90_c00204{left:274.266667pt;}
.x81_c00204{left:275.866667pt;}
.x68_c00204{left:279.200000pt;}
.x5d_c00204{left:281.333333pt;}
.x49_c00204{left:282.266667pt;}
.x23_c00204{left:284.533333pt;}
.x10_c00204{left:286.533333pt;}
.x97_c00204{left:288.266667pt;}
.x3c_c00204{left:289.466667pt;}
.x51_c00204{left:290.800000pt;}
.x8_c00204{left:292.666667pt;}
.x34_c00204{left:293.866667pt;}
.x89_c00204{left:294.800000pt;}
.x4f_c00204{left:296.933333pt;}
.x77_c00204{left:298.000000pt;}
.x1_c00204{left:298.933333pt;}
.x92_c00204{left:302.266667pt;}
.x4a_c00204{left:303.333333pt;}
.x11_c00204{left:304.400000pt;}
.xa0_c00204{left:306.000000pt;}
.x3d_c00204{left:307.066667pt;}
.x35_c00204{left:308.533333pt;}
.x69_c00204{left:309.866667pt;}
.x9_c00204{left:311.866667pt;}
.x2b_c00204{left:312.933333pt;}
.x73_c00204{left:315.466667pt;}
.x7e_c00204{left:317.200000pt;}
.x12_c00204{left:318.133333pt;}
.x8a_c00204{left:319.200000pt;}
.x39_c00204{left:321.200000pt;}
.x1b_c00204{left:322.666667pt;}
.x46_c00204{left:323.866667pt;}
.xa1_c00204{left:325.200000pt;}
.x9d_c00204{left:328.533333pt;}
.x56_c00204{left:329.600000pt;}
.x8e_c00204{left:330.933333pt;}
.x78_c00204{left:332.266667pt;}
.x52_c00204{left:333.733333pt;}
.x5e_c00204{left:336.666667pt;}
.x6e_c00204{left:338.000000pt;}
.x3e_c00204{left:339.333333pt;}
.x7b_c00204{left:341.200000pt;}
.x9b_c00204{left:342.533333pt;}
.xa_c00204{left:344.133333pt;}
.xa3_c00204{left:345.333333pt;}
.x47_c00204{left:347.200000pt;}
.x4b_c00204{left:349.066667pt;}
.x93_c00204{left:350.800000pt;}
.x5f_c00204{left:352.666667pt;}
.x36_c00204{left:354.000000pt;}
.x24_c00204{left:355.600000pt;}
.x13_c00204{left:358.133333pt;}
.x74_c00204{left:359.733333pt;}
.x99_c00204{left:361.466667pt;}
.x53_c00204{left:364.800000pt;}
.x82_c00204{left:367.466667pt;}
.x1c_c00204{left:368.400000pt;}
.x8b_c00204{left:369.733333pt;}
.x57_c00204{left:371.466667pt;}
.xb_c00204{left:372.666667pt;}
.x2c_c00204{left:376.666667pt;}
.x6f_c00204{left:378.266667pt;}
.xf9_c00204{left:400.000000pt;}
.x11a_c00204{left:406.400000pt;}
.xe9_c00204{left:415.200000pt;}
.xa8_c00204{left:416.266667pt;}
.xf1_c00204{left:431.066667pt;}
.x143_c00204{left:433.333333pt;}
.xd2_c00204{left:434.400000pt;}
.xb0_c00204{left:436.533333pt;}
.xea_c00204{left:437.600000pt;}
.xff_c00204{left:440.666667pt;}
.x11b_c00204{left:445.066667pt;}
.x113_c00204{left:446.000000pt;}
.xe2_c00204{left:448.933333pt;}
.xfa_c00204{left:450.933333pt;}
.xb6_c00204{left:452.266667pt;}
.x12b_c00204{left:453.200000pt;}
.xdc_c00204{left:454.933333pt;}
.xeb_c00204{left:456.133333pt;}
.xc3_c00204{left:457.066667pt;}
.x13c_c00204{left:458.000000pt;}
.xa9_c00204{left:460.400000pt;}
.xc7_c00204{left:461.600000pt;}
.x110_c00204{left:462.933333pt;}
.xcd_c00204{left:464.000000pt;}
.x12e_c00204{left:466.266667pt;}
.xbc_c00204{left:467.333333pt;}
.xb1_c00204{left:468.266667pt;}
.x10b_c00204{left:471.200000pt;}
.xd7_c00204{left:472.533333pt;}
.xfb_c00204{left:473.600000pt;}
.xc8_c00204{left:476.933333pt;}
.xf7_c00204{left:478.133333pt;}
.x13d_c00204{left:479.066667pt;}
.xd3_c00204{left:481.466667pt;}
.xdd_c00204{left:483.733333pt;}
.xf2_c00204{left:484.800000pt;}
.x141_c00204{left:485.733333pt;}
.x100_c00204{left:486.800000pt;}
.x12f_c00204{left:490.533333pt;}
.xec_c00204{left:492.266667pt;}
.x10c_c00204{left:493.333333pt;}
.x13a_c00204{left:494.533333pt;}
.xaa_c00204{left:495.866667pt;}
.xf8_c00204{left:497.600000pt;}
.x144_c00204{left:498.533333pt;}
.x107_c00204{left:500.666667pt;}
.x11c_c00204{left:502.000000pt;}
.xe3_c00204{left:504.266667pt;}
.x111_c00204{left:506.133333pt;}
.x130_c00204{left:507.466667pt;}
.x10d_c00204{left:510.933333pt;}
.x109_c00204{left:512.000000pt;}
.xf3_c00204{left:514.266667pt;}
.xfc_c00204{left:516.800000pt;}
.xc9_c00204{left:517.866667pt;}
.xce_c00204{left:519.733333pt;}
.xb7_c00204{left:520.800000pt;}
.x13b_c00204{left:522.400000pt;}
.xb2_c00204{left:523.333333pt;}
.x114_c00204{left:525.333333pt;}
.xbd_c00204{left:526.533333pt;}
.x127_c00204{left:527.733333pt;}
.x120_c00204{left:529.066667pt;}
.xcf_c00204{left:530.666667pt;}
.x11d_c00204{left:533.333333pt;}
.xef_c00204{left:535.600000pt;}
.xd4_c00204{left:537.733333pt;}
.xb8_c00204{left:539.333333pt;}
.xed_c00204{left:540.933333pt;}
.xab_c00204{left:542.000000pt;}
.xc4_c00204{left:543.466667pt;}
.x128_c00204{left:545.066667pt;}
.x101_c00204{left:548.000000pt;}
.x12a_c00204{left:549.733333pt;}
.x13e_c00204{left:551.066667pt;}
.xbe_c00204{left:552.133333pt;}
.x134_c00204{left:553.866667pt;}
.x142_c00204{left:554.800000pt;}
.x115_c00204{left:556.666667pt;}
.xd0_c00204{left:557.600000pt;}
.xf4_c00204{left:558.800000pt;}
.xac_c00204{left:560.933333pt;}
.xfd_c00204{left:563.866667pt;}
.xe4_c00204{left:565.333333pt;}
.x102_c00204{left:566.266667pt;}
.xd8_c00204{left:567.866667pt;}
.x13f_c00204{left:570.533333pt;}
.x123_c00204{left:571.466667pt;}
.x10e_c00204{left:573.333333pt;}
.x137_c00204{left:574.533333pt;}
.xb3_c00204{left:575.466667pt;}
.xca_c00204{left:578.000000pt;}
.xde_c00204{left:579.066667pt;}
.x108_c00204{left:580.666667pt;}
.x131_c00204{left:582.266667pt;}
.xd9_c00204{left:583.600000pt;}
.xf5_c00204{left:585.333333pt;}
.x116_c00204{left:586.800000pt;}
.x103_c00204{left:588.400000pt;}
.xd5_c00204{left:589.866667pt;}
.x11e_c00204{left:591.600000pt;}
.x147_c00204{left:592.666667pt;}
.x138_c00204{left:593.733333pt;}
.xe6_c00204{left:595.733333pt;}
.xc5_c00204{left:598.533333pt;}
.x10a_c00204{left:599.466667pt;}
.x135_c00204{left:601.200000pt;}
.xbf_c00204{left:602.666667pt;}
.xfe_c00204{left:605.200000pt;}
.xd6_c00204{left:606.533333pt;}
.xad_c00204{left:608.000000pt;}
.x129_c00204{left:609.866667pt;}
.x125_c00204{left:612.800000pt;}
.x104_c00204{left:614.666667pt;}
.x133_c00204{left:615.733333pt;}
.x12c_c00204{left:618.133333pt;}
.xb9_c00204{left:619.600000pt;}
.x117_c00204{left:621.066667pt;}
.xc0_c00204{left:622.133333pt;}
.x121_c00204{left:623.466667pt;}
.xe7_c00204{left:624.800000pt;}
.x145_c00204{left:626.800000pt;}
.xda_c00204{left:628.133333pt;}
.x140_c00204{left:629.466667pt;}
.xe8_c00204{left:631.200000pt;}
.xb4_c00204{left:632.133333pt;}
.x112_c00204{left:634.133333pt;}
.xee_c00204{left:636.000000pt;}
.xd1_c00204{left:637.600000pt;}
.x105_c00204{left:639.600000pt;}
.xae_c00204{left:643.200000pt;}
.xb5_c00204{left:646.266667pt;}
.x124_c00204{left:647.866667pt;}
.xc1_c00204{left:649.066667pt;}
.xe5_c00204{left:650.666667pt;}
.xcb_c00204{left:652.533333pt;}
.x12d_c00204{left:654.000000pt;}
.x118_c00204{left:656.266667pt;}
.xdf_c00204{left:657.200000pt;}
.x106_c00204{left:658.800000pt;}
.xaf_c00204{left:660.533333pt;}
.x122_c00204{left:663.866667pt;}
.xba_c00204{left:665.066667pt;}
.xf6_c00204{left:666.000000pt;}
.x132_c00204{left:667.733333pt;}
.xe0_c00204{left:669.333333pt;}
.xc6_c00204{left:671.200000pt;}
.xf0_c00204{left:672.266667pt;}
.x2_c00204{left:674.000000pt;}
.x119_c00204{left:675.200000pt;}
.xc2_c00204{left:676.533333pt;}
.x139_c00204{left:678.000000pt;}
.x11f_c00204{left:678.933333pt;}
.x10f_c00204{left:680.800000pt;}
.xbb_c00204{left:683.333333pt;}
.xdb_c00204{left:684.400000pt;}
.xe1_c00204{left:685.333333pt;}
.x146_c00204{left:687.600000pt;}
.x136_c00204{left:689.866667pt;}
.x126_c00204{left:692.800000pt;}
.xcc_c00204{left:694.133333pt;}
}





/* 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_c00205 {
    display:none;
  }
  .loading-indicator_c00205.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00205 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_c00205 { 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_c00205" -> "#page-container .classname_c00205")
 */
.pf_c00205 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00205 { /* 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_c00205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00205 { /* 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_c00205 { /* 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_c00205 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00205 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00205 {overflow:visible;}
  }
}
.c_c00205 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00205 { /* 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_c00205:after { /* webkit #35443 */
  content: '';
}
.t_c00205:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00205 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 */
}
.__c00205 { /* 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_c00205 { /* info for Javascript */
  display:none;
}
.l_c00205 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00205 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00205 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00205: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_c00205 {
    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_c00205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00205.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_c00205 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00205;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.000000;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;}
.m21_c00205{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m36_c00205{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m100_c00205{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m30_c00205{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m35_c00205{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m109_c00205{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00205{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00205{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m58_c00205{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m25_c00205{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m105_c00205{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m77_c00205{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00205{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00205{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00205{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m91_c00205{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00205{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00205{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mab_c00205{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00205{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m31_c00205{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00205{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m16_c00205{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m51_c00205{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00205{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me6_c00205{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00205{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00205{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m71_c00205{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00205{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00205{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md7_c00205{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00205{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.med_c00205{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.md4_c00205{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m72_c00205{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m43_c00205{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mec_c00205{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mf_c00205{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00205{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m95_c00205{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m62_c00205{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m99_c00205{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00205{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00205{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00205{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00205{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md8_c00205{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00205{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md6_c00205{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m101_c00205{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m20_c00205{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00205{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00205{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00205{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00205{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m82_c00205{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00205{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m56_c00205{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m17_c00205{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me4_c00205{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m33_c00205{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00205{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.maa_c00205{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mee_c00205{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m10_c00205{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00205{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.ma_c00205{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m54_c00205{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00205{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md0_c00205{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00205{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me0_c00205{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m8_c00205{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mef_c00205{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00205{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00205{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m115_c00205{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00205{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m14_c00205{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m68_c00205{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00205{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00205{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m9_c00205{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m103_c00205{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00205{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.meb_c00205{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m113_c00205{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00205{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00205{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m26_c00205{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m96_c00205{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00205{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m13_c00205{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m5_c00205{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00205{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m15_c00205{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m19_c00205{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00205{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m59_c00205{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m75_c00205{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00205{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7_c00205{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00205{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00205{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00205{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00205{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.md2_c00205{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00205{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m53_c00205{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00205{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00205{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00205{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m42_c00205{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m119_c00205{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00205{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00205{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m73_c00205{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m49_c00205{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me_c00205{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00205{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me1_c00205{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m76_c00205{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mde_c00205{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00205{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m45_c00205{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m74_c00205{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00205{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m64_c00205{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00205{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00205{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00205{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00205{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00205{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.md9_c00205{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m108_c00205{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00205{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m86_c00205{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md5_c00205{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00205{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m70_c00205{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m32_c00205{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00205{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00205{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m107_c00205{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.maf_c00205{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00205{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m29_c00205{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mff_c00205{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m81_c00205{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me8_c00205{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m67_c00205{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00205{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb_c00205{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m61_c00205{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00205{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00205{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3_c00205{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m52_c00205{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m93_c00205{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00205{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md3_c00205{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00205{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00205{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m80_c00205{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00205{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md1_c00205{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m48_c00205{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mce_c00205{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00205{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00205{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mac_c00205{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00205{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00205{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00205{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00205{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m65_c00205{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m27_c00205{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m60_c00205{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00205{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m47_c00205{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00205{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00205{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00205{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m63_c00205{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m98_c00205{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m57_c00205{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00205{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00205{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mba_c00205{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4_c00205{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00205{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m110_c00205{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m28_c00205{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00205{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00205{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00205{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.md_c00205{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m38_c00205{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m97_c00205{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m44_c00205{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00205{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00205{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m89_c00205{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m114_c00205{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m40_c00205{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m90_c00205{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m79_c00205{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00205{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mc_c00205{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me9_c00205{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m111_c00205{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00205{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m50_c00205{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.me2_c00205{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me7_c00205{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me3_c00205{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m106_c00205{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00205{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m102_c00205{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00205{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00205{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m34_c00205{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00205{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00205{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00205{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00205{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00205{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m46_c00205{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m92_c00205{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m112_c00205{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m85_c00205{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00205{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00205{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m69_c00205{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00205{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m11_c00205{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m116_c00205{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);}
.m78_c00205{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00205{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00205{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m94_c00205{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00205{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00205{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00205{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mad_c00205{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00205{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00205{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00205{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00205{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00205{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00205{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m104_c00205{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m117_c00205{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00205{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00205{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m37_c00205{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m88_c00205{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mca_c00205{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m118_c00205{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mea_c00205{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m55_c00205{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00205{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m12_c00205{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00205{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mae_c00205{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m84_c00205{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00205{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.me5_c00205{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m83_c00205{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00205{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m87_c00205{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00205{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00205{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mda_c00205{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m66_c00205{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m41_c00205{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00205{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m22_c00205{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m24_c00205{transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00205{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m23_c00205{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m39_c00205{transform:matrix(0.924000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.924000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.924000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls0_c00205{letter-spacing:0.000000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{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__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:-6.853448px;}
.ws1_c00205{word-spacing:-3.281139px;}
.ws3_c00205{word-spacing:-1.875000px;}
.ws5_c00205{word-spacing:0.000000px;}
.ws2_c00205{word-spacing:1.843666px;}
.ws4_c00205{word-spacing:8.676471px;}
.fc0_c00205{color:transparent;}
.fs2_c00205{font-size:48.000000px;}
.fs6_c00205{font-size:54.000000px;}
.fs5_c00205{font-size:60.000000px;}
.fs4_c00205{font-size:66.000000px;}
.fs3_c00205{font-size:72.000000px;}
.fs1_c00205{font-size:84.000000px;}
.fs0_c00205{font-size:90.000000px;}
.y0_c00205{bottom:0.000000px;}
.y34_c00205{bottom:191.100000px;}
.y67_c00205{bottom:191.400000px;}
.y66_c00205{bottom:205.800000px;}
.y33_c00205{bottom:206.250000px;}
.y65_c00205{bottom:219.900000px;}
.y32_c00205{bottom:220.650000px;}
.y64_c00205{bottom:234.000000px;}
.y31_c00205{bottom:235.050000px;}
.y63_c00205{bottom:248.400000px;}
.y30_c00205{bottom:248.700000px;}
.y62_c00205{bottom:262.800000px;}
.y2f_c00205{bottom:263.100000px;}
.y61_c00205{bottom:276.900000px;}
.y2e_c00205{bottom:277.200000px;}
.y2d_c00205{bottom:291.600000px;}
.y60_c00205{bottom:292.050000px;}
.y5f_c00205{bottom:305.400000px;}
.y2c_c00205{bottom:306.000000px;}
.y5e_c00205{bottom:320.100000px;}
.y2b_c00205{bottom:320.400000px;}
.y5d_c00205{bottom:334.500000px;}
.y2a_c00205{bottom:335.550000px;}
.y5c_c00205{bottom:348.900000px;}
.y5b_c00205{bottom:362.550000px;}
.y29_c00205{bottom:374.100000px;}
.y5a_c00205{bottom:377.250000px;}
.y59_c00205{bottom:391.350000px;}
.y28_c00205{bottom:393.900000px;}
.y58_c00205{bottom:405.750000px;}
.y27_c00205{bottom:415.800000px;}
.y26_c00205{bottom:433.800000px;}
.y57_c00205{bottom:451.950000px;}
.y25_c00205{bottom:455.400000px;}
.y56_c00205{bottom:469.650000px;}
.y24_c00205{bottom:478.050000px;}
.y55_c00205{bottom:487.650000px;}
.y23_c00205{bottom:496.800000px;}
.y54_c00205{bottom:505.350000px;}
.y22_c00205{bottom:514.500000px;}
.y53_c00205{bottom:523.350000px;}
.y21_c00205{bottom:535.200000px;}
.y52_c00205{bottom:541.050000px;}
.y20_c00205{bottom:553.950000px;}
.y51_c00205{bottom:567.750000px;}
.y1f_c00205{bottom:570.900000px;}
.y50_c00205{bottom:585.750000px;}
.y1e_c00205{bottom:593.700000px;}
.y4f_c00205{bottom:603.750000px;}
.y1d_c00205{bottom:611.700000px;}
.y4e_c00205{bottom:621.000000px;}
.y1c_c00205{bottom:633.600000px;}
.y4d_c00205{bottom:643.350000px;}
.y1b_c00205{bottom:651.600000px;}
.y4c_c00205{bottom:660.600000px;}
.y1a_c00205{bottom:673.800000px;}
.y19_c00205{bottom:691.500000px;}
.y4b_c00205{bottom:700.950000px;}
.y18_c00205{bottom:709.500000px;}
.y17_c00205{bottom:731.250000px;}
.y4a_c00205{bottom:731.400000px;}
.y49_c00205{bottom:749.100000px;}
.y16_c00205{bottom:749.550000px;}
.y48_c00205{bottom:766.800000px;}
.y15_c00205{bottom:767.700000px;}
.y14_c00205{bottom:785.400000px;}
.y47_c00205{bottom:793.200000px;}
.y13_c00205{bottom:803.100000px;}
.y46_c00205{bottom:810.900000px;}
.y12_c00205{bottom:825.450000px;}
.y45_c00205{bottom:828.600000px;}
.y44_c00205{bottom:846.600000px;}
.y11_c00205{bottom:847.500000px;}
.y43_c00205{bottom:864.600000px;}
.y10_c00205{bottom:865.500000px;}
.yf_c00205{bottom:880.800000px;}
.y42_c00205{bottom:882.600000px;}
.ye_c00205{bottom:890.550000px;}
.yd_c00205{bottom:899.250000px;}
.y41_c00205{bottom:900.300000px;}
.y40_c00205{bottom:918.000000px;}
.yc_c00205{bottom:920.100000px;}
.y3f_c00205{bottom:936.000000px;}
.yb_c00205{bottom:941.700000px;}
.y3e_c00205{bottom:953.700000px;}
.ya_c00205{bottom:959.400000px;}
.y3d_c00205{bottom:971.400000px;}
.y3c_c00205{bottom:989.400000px;}
.y9_c00205{bottom:990.000000px;}
.y3b_c00205{bottom:1007.100000px;}
.y3a_c00205{bottom:1024.800000px;}
.y8_c00205{bottom:1025.550000px;}
.y39_c00205{bottom:1042.800000px;}
.y7_c00205{bottom:1043.250000px;}
.y38_c00205{bottom:1060.500000px;}
.y6_c00205{bottom:1061.250000px;}
.y37_c00205{bottom:1078.500000px;}
.y5_c00205{bottom:1095.900000px;}
.y36_c00205{bottom:1096.200000px;}
.y35_c00205{bottom:1113.900000px;}
.y4_c00205{bottom:1114.200000px;}
.y1_c00205{bottom:1139.700000px;}
.y2_c00205{bottom:1140.000000px;}
.y3_c00205{bottom:1163.850000px;}
.h4_c00205{height:48.000000px;}
.h8_c00205{height:54.000000px;}
.h7_c00205{height:60.000000px;}
.h6_c00205{height:66.000000px;}
.h5_c00205{height:72.000000px;}
.h3_c00205{height:84.000000px;}
.h2_c00205{height:90.000000px;}
.h0_c00205{height:1269.720063px;}
.h1_c00205{height:1269.750000px;}
.w1_c00205{width:963.000000px;}
.w0_c00205{width:963.359985px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:175.650000px;}
.xf_c00205{left:179.700000px;}
.x21_c00205{left:181.050000px;}
.x7b_c00205{left:186.900000px;}
.x81_c00205{left:188.550000px;}
.x9c_c00205{left:190.050000px;}
.x97_c00205{left:191.250000px;}
.x4_c00205{left:196.200000px;}
.x27_c00205{left:198.000000px;}
.x31_c00205{left:199.050000px;}
.x49_c00205{left:200.100000px;}
.x50_c00205{left:201.450000px;}
.x6a_c00205{left:204.150000px;}
.x10_c00205{left:205.950000px;}
.x7c_c00205{left:207.000000px;}
.x1c_c00205{left:210.900000px;}
.x93_c00205{left:212.550000px;}
.x4e_c00205{left:214.350000px;}
.x34_c00205{left:218.100000px;}
.x55_c00205{left:219.600000px;}
.x60_c00205{left:220.650000px;}
.x4a_c00205{left:223.200000px;}
.x2a_c00205{left:225.600000px;}
.x73_c00205{left:227.550000px;}
.x1d_c00205{left:230.700000px;}
.xd_c00205{left:231.900000px;}
.x5_c00205{left:233.250000px;}
.x8a_c00205{left:234.750000px;}
.x83_c00205{left:236.100000px;}
.x28_c00205{left:237.300000px;}
.x5f_c00205{left:239.400000px;}
.x94_c00205{left:241.350000px;}
.x99_c00205{left:243.150000px;}
.x22_c00205{left:245.850000px;}
.x16_c00205{left:250.800000px;}
.xe_c00205{left:253.200000px;}
.x23_c00205{left:255.600000px;}
.x6_c00205{left:256.950000px;}
.x30_c00205{left:260.250000px;}
.x66_c00205{left:261.750000px;}
.x71_c00205{left:265.350000px;}
.x52_c00205{left:267.300000px;}
.x70_c00205{left:269.250000px;}
.x17_c00205{left:270.600000px;}
.x61_c00205{left:272.550000px;}
.x3c_c00205{left:273.600000px;}
.x5c_c00205{left:275.400000px;}
.x62_c00205{left:277.200000px;}
.x8b_c00205{left:278.250000px;}
.x4f_c00205{left:279.450000px;}
.x35_c00205{left:280.800000px;}
.x59_c00205{left:282.900000px;}
.x87_c00205{left:284.100000px;}
.x29_c00205{left:285.150000px;}
.x6f_c00205{left:286.200000px;}
.x56_c00205{left:290.100000px;}
.x6b_c00205{left:292.050000px;}
.x11_c00205{left:293.100000px;}
.x2b_c00205{left:294.750000px;}
.x32_c00205{left:295.950000px;}
.x7_c00205{left:298.650000px;}
.x77_c00205{left:300.000000px;}
.x95_c00205{left:301.800000px;}
.x6c_c00205{left:304.350000px;}
.x1e_c00205{left:308.100000px;}
.x8c_c00205{left:310.350000px;}
.x3a_c00205{left:311.400000px;}
.x8f_c00205{left:313.800000px;}
.x8_c00205{left:315.900000px;}
.x9a_c00205{left:317.700000px;}
.x84_c00205{left:320.700000px;}
.x7d_c00205{left:323.250000px;}
.x33_c00205{left:324.450000px;}
.x53_c00205{left:327.450000px;}
.x5d_c00205{left:330.150000px;}
.x36_c00205{left:332.700000px;}
.x3d_c00205{left:334.500000px;}
.x5a_c00205{left:335.850000px;}
.x12_c00205{left:338.400000px;}
.x24_c00205{left:340.200000px;}
.x3e_c00205{left:343.800000px;}
.x18_c00205{left:345.900000px;}
.x45_c00205{left:349.800000px;}
.x74_c00205{left:351.750000px;}
.x20_c00205{left:353.550000px;}
.x2c_c00205{left:355.650000px;}
.x5b_c00205{left:356.700000px;}
.x37_c00205{left:358.950000px;}
.x6d_c00205{left:361.650000px;}
.x41_c00205{left:363.450000px;}
.x3b_c00205{left:364.650000px;}
.x2d_c00205{left:368.250000px;}
.x98_c00205{left:370.650000px;}
.x4c_c00205{left:371.850000px;}
.x9_c00205{left:373.200000px;}
.x51_c00205{left:375.600000px;}
.x13_c00205{left:378.300000px;}
.x75_c00205{left:379.800000px;}
.x25_c00205{left:380.850000px;}
.x8d_c00205{left:382.350000px;}
.x85_c00205{left:385.200000px;}
.x46_c00205{left:386.550000px;}
.x3f_c00205{left:388.800000px;}
.x38_c00205{left:390.300000px;}
.x82_c00205{left:393.450000px;}
.x78_c00205{left:397.500000px;}
.x4d_c00205{left:399.900000px;}
.x63_c00205{left:401.100000px;}
.x88_c00205{left:402.300000px;}
.x57_c00205{left:403.950000px;}
.x40_c00205{left:405.750000px;}
.x7e_c00205{left:407.850000px;}
.x3_c00205{left:410.400000px;}
.x19_c00205{left:412.200000px;}
.x67_c00205{left:413.700000px;}
.x2_c00205{left:416.550000px;}
.x54_c00205{left:417.750000px;}
.x4b_c00205{left:419.250000px;}
.x64_c00205{left:420.900000px;}
.x26_c00205{left:424.050000px;}
.x1a_c00205{left:425.100000px;}
.x1f_c00205{left:426.600000px;}
.x68_c00205{left:428.100000px;}
.x2e_c00205{left:431.250000px;}
.x90_c00205{left:432.600000px;}
.x72_c00205{left:435.300000px;}
.x47_c00205{left:436.650000px;}
.xa_c00205{left:438.000000px;}
.x69_c00205{left:446.850000px;}
.x42_c00205{left:450.450000px;}
.x1b_c00205{left:453.150000px;}
.x79_c00205{left:454.800000px;}
.x8e_c00205{left:455.850000px;}
.x9b_c00205{left:457.650000px;}
.x76_c00205{left:461.850000px;}
.xb_c00205{left:465.000000px;}
.x14_c00205{left:467.550000px;}
.x96_c00205{left:471.300000px;}
.x43_c00205{left:475.650000px;}
.xc_c00205{left:477.300000px;}
.x48_c00205{left:478.800000px;}
.x39_c00205{left:483.150000px;}
.x91_c00205{left:484.200000px;}
.x65_c00205{left:485.700000px;}
.x6e_c00205{left:489.300000px;}
.x7f_c00205{left:493.500000px;}
.x58_c00205{left:495.000000px;}
.x5e_c00205{left:496.500000px;}
.x89_c00205{left:501.150000px;}
.x44_c00205{left:502.950000px;}
.x7a_c00205{left:505.800000px;}
.x86_c00205{left:507.000000px;}
.x2f_c00205{left:508.950000px;}
.x15_c00205{left:510.750000px;}
.x80_c00205{left:513.300000px;}
.x92_c00205{left:519.900000px;}
.x9d_c00205{left:536.400000px;}
.xfd_c00205{left:537.450000px;}
.x10d_c00205{left:539.700000px;}
.x127_c00205{left:540.750000px;}
.x132_c00205{left:542.250000px;}
.x10a_c00205{left:549.300000px;}
.xa2_c00205{left:553.650000px;}
.xde_c00205{left:554.850000px;}
.x101_c00205{left:556.350000px;}
.x112_c00205{left:557.700000px;}
.x111_c00205{left:559.050000px;}
.x128_c00205{left:561.600000px;}
.x136_c00205{left:563.850000px;}
.x138_c00205{left:566.400000px;}
.x130_c00205{left:568.800000px;}
.x12d_c00205{left:572.700000px;}
.xbe_c00205{left:574.950000px;}
.xdf_c00205{left:576.450000px;}
.x134_c00205{left:577.500000px;}
.xc4_c00205{left:578.550000px;}
.x129_c00205{left:579.900000px;}
.xaa_c00205{left:580.950000px;}
.xfb_c00205{left:583.050000px;}
.xd2_c00205{left:584.100000px;}
.xec_c00205{left:587.100000px;}
.x11a_c00205{left:588.150000px;}
.xab_c00205{left:589.950000px;}
.x12b_c00205{left:591.000000px;}
.xf2_c00205{left:592.050000px;}
.x106_c00205{left:593.550000px;}
.xca_c00205{left:594.900000px;}
.x124_c00205{left:596.250000px;}
.x9e_c00205{left:597.900000px;}
.x139_c00205{left:599.550000px;}
.x131_c00205{left:601.200000px;}
.xb8_c00205{left:602.400000px;}
.xfe_c00205{left:606.600000px;}
.xac_c00205{left:608.250000px;}
.xe7_c00205{left:610.500000px;}
.xe4_c00205{left:611.850000px;}
.xf3_c00205{left:613.650000px;}
.x113_c00205{left:616.800000px;}
.x13c_c00205{left:621.000000px;}
.xb2_c00205{left:624.300000px;}
.xbf_c00205{left:625.650000px;}
.xd3_c00205{left:628.050000px;}
.x13f_c00205{left:629.100000px;}
.xa3_c00205{left:631.050000px;}
.xc5_c00205{left:632.250000px;}
.xb9_c00205{left:633.300000px;}
.xd8_c00205{left:635.400000px;}
.x148_c00205{left:637.650000px;}
.x13a_c00205{left:638.850000px;}
.x107_c00205{left:640.350000px;}
.xe8_c00205{left:642.900000px;}
.x102_c00205{left:644.850000px;}
.xc0_c00205{left:647.250000px;}
.xfc_c00205{left:648.900000px;}
.xa4_c00205{left:650.850000px;}
.x141_c00205{left:652.500000px;}
.x12e_c00205{left:653.550000px;}
.x103_c00205{left:654.600000px;}
.x135_c00205{left:656.400000px;}
.xba_c00205{left:657.750000px;}
.xd9_c00205{left:659.850000px;}
.xcb_c00205{left:661.950000px;}
.x9f_c00205{left:663.750000px;}
.xe5_c00205{left:665.550000px;}
.x104_c00205{left:666.900000px;}
.x146_c00205{left:668.250000px;}
.xad_c00205{left:671.250000px;}
.xf4_c00205{left:672.300000px;}
.x108_c00205{left:673.500000px;}
.xed_c00205{left:674.850000px;}
.x137_c00205{left:676.200000px;}
.x142_c00205{left:677.700000px;}
.xcc_c00205{left:679.200000px;}
.x120_c00205{left:680.550000px;}
.xee_c00205{left:683.850000px;}
.xdc_c00205{left:685.650000px;}
.xa5_c00205{left:688.650000px;}
.x125_c00205{left:689.850000px;}
.x114_c00205{left:690.900000px;}
.xc6_c00205{left:693.150000px;}
.xb3_c00205{left:694.800000px;}
.x116_c00205{left:696.750000px;}
.x121_c00205{left:698.250000px;}
.x147_c00205{left:699.600000px;}
.x10b_c00205{left:700.950000px;}
.xe6_c00205{left:702.300000px;}
.xef_c00205{left:704.400000px;}
.xc1_c00205{left:705.600000px;}
.xd4_c00205{left:708.750000px;}
.xbb_c00205{left:711.000000px;}
.xcd_c00205{left:714.900000px;}
.x109_c00205{left:719.250000px;}
.xe0_c00205{left:721.200000px;}
.x10c_c00205{left:724.650000px;}
.x11b_c00205{left:727.050000px;}
.xc7_c00205{left:729.900000px;}
.x133_c00205{left:731.250000px;}
.xb4_c00205{left:732.300000px;}
.x143_c00205{left:733.500000px;}
.xce_c00205{left:735.000000px;}
.xd5_c00205{left:737.250000px;}
.xa6_c00205{left:739.050000px;}
.x117_c00205{left:740.700000px;}
.x105_c00205{left:742.200000px;}
.xf5_c00205{left:743.550000px;}
.xa0_c00205{left:745.500000px;}
.xc8_c00205{left:750.000000px;}
.x11e_c00205{left:751.200000px;}
.xae_c00205{left:752.550000px;}
.x144_c00205{left:754.800000px;}
.xd6_c00205{left:756.000000px;}
.xa7_c00205{left:759.900000px;}
.xff_c00205{left:761.550000px;}
.xe1_c00205{left:763.650000px;}
.xf0_c00205{left:765.300000px;}
.xaf_c00205{left:767.250000px;}
.x145_c00205{left:768.450000px;}
.xe9_c00205{left:769.650000px;}
.xe2_c00205{left:774.450000px;}
.x118_c00205{left:775.950000px;}
.xf8_c00205{left:779.700000px;}
.xa8_c00205{left:781.500000px;}
.xbc_c00205{left:783.750000px;}
.xb5_c00205{left:784.950000px;}
.x13b_c00205{left:786.000000px;}
.xcf_c00205{left:787.200000px;}
.x126_c00205{left:788.550000px;}
.xe3_c00205{left:790.350000px;}
.xc2_c00205{left:792.300000px;}
.xb0_c00205{left:793.500000px;}
.x10e_c00205{left:796.050000px;}
.x11c_c00205{left:798.000000px;}
.x140_c00205{left:799.350000px;}
.x122_c00205{left:800.550000px;}
.x10f_c00205{left:803.100000px;}
.xf6_c00205{left:804.150000px;}
.xbd_c00205{left:806.400000px;}
.xd0_c00205{left:809.550000px;}
.xc3_c00205{left:812.850000px;}
.xf9_c00205{left:814.950000px;}
.x12a_c00205{left:817.800000px;}
.xa9_c00205{left:819.000000px;}
.x100_c00205{left:820.200000px;}
.xea_c00205{left:821.850000px;}
.xdd_c00205{left:823.050000px;}
.x123_c00205{left:824.250000px;}
.xda_c00205{left:826.950000px;}
.xb6_c00205{left:828.450000px;}
.x13d_c00205{left:831.150000px;}
.xd7_c00205{left:833.400000px;}
.xf7_c00205{left:835.500000px;}
.xfa_c00205{left:837.600000px;}
.xeb_c00205{left:839.100000px;}
.xd1_c00205{left:840.150000px;}
.xf1_c00205{left:841.200000px;}
.x110_c00205{left:842.400000px;}
.x12f_c00205{left:844.200000px;}
.x11d_c00205{left:846.600000px;}
.x119_c00205{left:847.950000px;}
.x115_c00205{left:849.750000px;}
.xb1_c00205{left:850.800000px;}
.xb7_c00205{left:853.950000px;}
.xdb_c00205{left:855.750000px;}
.xa1_c00205{left:857.850000px;}
.xc9_c00205{left:859.500000px;}
.x13e_c00205{left:861.000000px;}
.x12c_c00205{left:865.800000px;}
.x11f_c00205{left:867.750000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:-6.091954pt;}
.ws1_c00205{word-spacing:-2.916568pt;}
.ws3_c00205{word-spacing:-1.666667pt;}
.ws5_c00205{word-spacing:0.000000pt;}
.ws2_c00205{word-spacing:1.638814pt;}
.ws4_c00205{word-spacing:7.712418pt;}
.fs2_c00205{font-size:42.666667pt;}
.fs6_c00205{font-size:48.000000pt;}
.fs5_c00205{font-size:53.333333pt;}
.fs4_c00205{font-size:58.666667pt;}
.fs3_c00205{font-size:64.000000pt;}
.fs1_c00205{font-size:74.666667pt;}
.fs0_c00205{font-size:80.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y34_c00205{bottom:169.866667pt;}
.y67_c00205{bottom:170.133333pt;}
.y66_c00205{bottom:182.933333pt;}
.y33_c00205{bottom:183.333333pt;}
.y65_c00205{bottom:195.466667pt;}
.y32_c00205{bottom:196.133333pt;}
.y64_c00205{bottom:208.000000pt;}
.y31_c00205{bottom:208.933333pt;}
.y63_c00205{bottom:220.800000pt;}
.y30_c00205{bottom:221.066667pt;}
.y62_c00205{bottom:233.600000pt;}
.y2f_c00205{bottom:233.866667pt;}
.y61_c00205{bottom:246.133333pt;}
.y2e_c00205{bottom:246.400000pt;}
.y2d_c00205{bottom:259.200000pt;}
.y60_c00205{bottom:259.600000pt;}
.y5f_c00205{bottom:271.466667pt;}
.y2c_c00205{bottom:272.000000pt;}
.y5e_c00205{bottom:284.533333pt;}
.y2b_c00205{bottom:284.800000pt;}
.y5d_c00205{bottom:297.333333pt;}
.y2a_c00205{bottom:298.266667pt;}
.y5c_c00205{bottom:310.133333pt;}
.y5b_c00205{bottom:322.266667pt;}
.y29_c00205{bottom:332.533333pt;}
.y5a_c00205{bottom:335.333333pt;}
.y59_c00205{bottom:347.866667pt;}
.y28_c00205{bottom:350.133333pt;}
.y58_c00205{bottom:360.666667pt;}
.y27_c00205{bottom:369.600000pt;}
.y26_c00205{bottom:385.600000pt;}
.y57_c00205{bottom:401.733333pt;}
.y25_c00205{bottom:404.800000pt;}
.y56_c00205{bottom:417.466667pt;}
.y24_c00205{bottom:424.933333pt;}
.y55_c00205{bottom:433.466667pt;}
.y23_c00205{bottom:441.600000pt;}
.y54_c00205{bottom:449.200000pt;}
.y22_c00205{bottom:457.333333pt;}
.y53_c00205{bottom:465.200000pt;}
.y21_c00205{bottom:475.733333pt;}
.y52_c00205{bottom:480.933333pt;}
.y20_c00205{bottom:492.400000pt;}
.y51_c00205{bottom:504.666667pt;}
.y1f_c00205{bottom:507.466667pt;}
.y50_c00205{bottom:520.666667pt;}
.y1e_c00205{bottom:527.733333pt;}
.y4f_c00205{bottom:536.666667pt;}
.y1d_c00205{bottom:543.733333pt;}
.y4e_c00205{bottom:552.000000pt;}
.y1c_c00205{bottom:563.200000pt;}
.y4d_c00205{bottom:571.866667pt;}
.y1b_c00205{bottom:579.200000pt;}
.y4c_c00205{bottom:587.200000pt;}
.y1a_c00205{bottom:598.933333pt;}
.y19_c00205{bottom:614.666667pt;}
.y4b_c00205{bottom:623.066667pt;}
.y18_c00205{bottom:630.666667pt;}
.y17_c00205{bottom:650.000000pt;}
.y4a_c00205{bottom:650.133333pt;}
.y49_c00205{bottom:665.866667pt;}
.y16_c00205{bottom:666.266667pt;}
.y48_c00205{bottom:681.600000pt;}
.y15_c00205{bottom:682.400000pt;}
.y14_c00205{bottom:698.133333pt;}
.y47_c00205{bottom:705.066667pt;}
.y13_c00205{bottom:713.866667pt;}
.y46_c00205{bottom:720.800000pt;}
.y12_c00205{bottom:733.733333pt;}
.y45_c00205{bottom:736.533333pt;}
.y44_c00205{bottom:752.533333pt;}
.y11_c00205{bottom:753.333333pt;}
.y43_c00205{bottom:768.533333pt;}
.y10_c00205{bottom:769.333333pt;}
.yf_c00205{bottom:782.933333pt;}
.y42_c00205{bottom:784.533333pt;}
.ye_c00205{bottom:791.600000pt;}
.yd_c00205{bottom:799.333333pt;}
.y41_c00205{bottom:800.266667pt;}
.y40_c00205{bottom:816.000000pt;}
.yc_c00205{bottom:817.866667pt;}
.y3f_c00205{bottom:832.000000pt;}
.yb_c00205{bottom:837.066667pt;}
.y3e_c00205{bottom:847.733333pt;}
.ya_c00205{bottom:852.800000pt;}
.y3d_c00205{bottom:863.466667pt;}
.y3c_c00205{bottom:879.466667pt;}
.y9_c00205{bottom:880.000000pt;}
.y3b_c00205{bottom:895.200000pt;}
.y3a_c00205{bottom:910.933333pt;}
.y8_c00205{bottom:911.600000pt;}
.y39_c00205{bottom:926.933333pt;}
.y7_c00205{bottom:927.333333pt;}
.y38_c00205{bottom:942.666667pt;}
.y6_c00205{bottom:943.333333pt;}
.y37_c00205{bottom:958.666667pt;}
.y5_c00205{bottom:974.133333pt;}
.y36_c00205{bottom:974.400000pt;}
.y35_c00205{bottom:990.133333pt;}
.y4_c00205{bottom:990.400000pt;}
.y1_c00205{bottom:1013.066667pt;}
.y2_c00205{bottom:1013.333333pt;}
.y3_c00205{bottom:1034.533333pt;}
.h4_c00205{height:42.666667pt;}
.h8_c00205{height:48.000000pt;}
.h7_c00205{height:53.333333pt;}
.h6_c00205{height:58.666667pt;}
.h5_c00205{height:64.000000pt;}
.h3_c00205{height:74.666667pt;}
.h2_c00205{height:80.000000pt;}
.h0_c00205{height:1128.640056pt;}
.h1_c00205{height:1128.666667pt;}
.w1_c00205{width:856.000000pt;}
.w0_c00205{width:856.319987pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:156.133333pt;}
.xf_c00205{left:159.733333pt;}
.x21_c00205{left:160.933333pt;}
.x7b_c00205{left:166.133333pt;}
.x81_c00205{left:167.600000pt;}
.x9c_c00205{left:168.933333pt;}
.x97_c00205{left:170.000000pt;}
.x4_c00205{left:174.400000pt;}
.x27_c00205{left:176.000000pt;}
.x31_c00205{left:176.933333pt;}
.x49_c00205{left:177.866667pt;}
.x50_c00205{left:179.066667pt;}
.x6a_c00205{left:181.466667pt;}
.x10_c00205{left:183.066667pt;}
.x7c_c00205{left:184.000000pt;}
.x1c_c00205{left:187.466667pt;}
.x93_c00205{left:188.933333pt;}
.x4e_c00205{left:190.533333pt;}
.x34_c00205{left:193.866667pt;}
.x55_c00205{left:195.200000pt;}
.x60_c00205{left:196.133333pt;}
.x4a_c00205{left:198.400000pt;}
.x2a_c00205{left:200.533333pt;}
.x73_c00205{left:202.266667pt;}
.x1d_c00205{left:205.066667pt;}
.xd_c00205{left:206.133333pt;}
.x5_c00205{left:207.333333pt;}
.x8a_c00205{left:208.666667pt;}
.x83_c00205{left:209.866667pt;}
.x28_c00205{left:210.933333pt;}
.x5f_c00205{left:212.800000pt;}
.x94_c00205{left:214.533333pt;}
.x99_c00205{left:216.133333pt;}
.x22_c00205{left:218.533333pt;}
.x16_c00205{left:222.933333pt;}
.xe_c00205{left:225.066667pt;}
.x23_c00205{left:227.200000pt;}
.x6_c00205{left:228.400000pt;}
.x30_c00205{left:231.333333pt;}
.x66_c00205{left:232.666667pt;}
.x71_c00205{left:235.866667pt;}
.x52_c00205{left:237.600000pt;}
.x70_c00205{left:239.333333pt;}
.x17_c00205{left:240.533333pt;}
.x61_c00205{left:242.266667pt;}
.x3c_c00205{left:243.200000pt;}
.x5c_c00205{left:244.800000pt;}
.x62_c00205{left:246.400000pt;}
.x8b_c00205{left:247.333333pt;}
.x4f_c00205{left:248.400000pt;}
.x35_c00205{left:249.600000pt;}
.x59_c00205{left:251.466667pt;}
.x87_c00205{left:252.533333pt;}
.x29_c00205{left:253.466667pt;}
.x6f_c00205{left:254.400000pt;}
.x56_c00205{left:257.866667pt;}
.x6b_c00205{left:259.600000pt;}
.x11_c00205{left:260.533333pt;}
.x2b_c00205{left:262.000000pt;}
.x32_c00205{left:263.066667pt;}
.x7_c00205{left:265.466667pt;}
.x77_c00205{left:266.666667pt;}
.x95_c00205{left:268.266667pt;}
.x6c_c00205{left:270.533333pt;}
.x1e_c00205{left:273.866667pt;}
.x8c_c00205{left:275.866667pt;}
.x3a_c00205{left:276.800000pt;}
.x8f_c00205{left:278.933333pt;}
.x8_c00205{left:280.800000pt;}
.x9a_c00205{left:282.400000pt;}
.x84_c00205{left:285.066667pt;}
.x7d_c00205{left:287.333333pt;}
.x33_c00205{left:288.400000pt;}
.x53_c00205{left:291.066667pt;}
.x5d_c00205{left:293.466667pt;}
.x36_c00205{left:295.733333pt;}
.x3d_c00205{left:297.333333pt;}
.x5a_c00205{left:298.533333pt;}
.x12_c00205{left:300.800000pt;}
.x24_c00205{left:302.400000pt;}
.x3e_c00205{left:305.600000pt;}
.x18_c00205{left:307.466667pt;}
.x45_c00205{left:310.933333pt;}
.x74_c00205{left:312.666667pt;}
.x20_c00205{left:314.266667pt;}
.x2c_c00205{left:316.133333pt;}
.x5b_c00205{left:317.066667pt;}
.x37_c00205{left:319.066667pt;}
.x6d_c00205{left:321.466667pt;}
.x41_c00205{left:323.066667pt;}
.x3b_c00205{left:324.133333pt;}
.x2d_c00205{left:327.333333pt;}
.x98_c00205{left:329.466667pt;}
.x4c_c00205{left:330.533333pt;}
.x9_c00205{left:331.733333pt;}
.x51_c00205{left:333.866667pt;}
.x13_c00205{left:336.266667pt;}
.x75_c00205{left:337.600000pt;}
.x25_c00205{left:338.533333pt;}
.x8d_c00205{left:339.866667pt;}
.x85_c00205{left:342.400000pt;}
.x46_c00205{left:343.600000pt;}
.x3f_c00205{left:345.600000pt;}
.x38_c00205{left:346.933333pt;}
.x82_c00205{left:349.733333pt;}
.x78_c00205{left:353.333333pt;}
.x4d_c00205{left:355.466667pt;}
.x63_c00205{left:356.533333pt;}
.x88_c00205{left:357.600000pt;}
.x57_c00205{left:359.066667pt;}
.x40_c00205{left:360.666667pt;}
.x7e_c00205{left:362.533333pt;}
.x3_c00205{left:364.800000pt;}
.x19_c00205{left:366.400000pt;}
.x67_c00205{left:367.733333pt;}
.x2_c00205{left:370.266667pt;}
.x54_c00205{left:371.333333pt;}
.x4b_c00205{left:372.666667pt;}
.x64_c00205{left:374.133333pt;}
.x26_c00205{left:376.933333pt;}
.x1a_c00205{left:377.866667pt;}
.x1f_c00205{left:379.200000pt;}
.x68_c00205{left:380.533333pt;}
.x2e_c00205{left:383.333333pt;}
.x90_c00205{left:384.533333pt;}
.x72_c00205{left:386.933333pt;}
.x47_c00205{left:388.133333pt;}
.xa_c00205{left:389.333333pt;}
.x69_c00205{left:397.200000pt;}
.x42_c00205{left:400.400000pt;}
.x1b_c00205{left:402.800000pt;}
.x79_c00205{left:404.266667pt;}
.x8e_c00205{left:405.200000pt;}
.x9b_c00205{left:406.800000pt;}
.x76_c00205{left:410.533333pt;}
.xb_c00205{left:413.333333pt;}
.x14_c00205{left:415.600000pt;}
.x96_c00205{left:418.933333pt;}
.x43_c00205{left:422.800000pt;}
.xc_c00205{left:424.266667pt;}
.x48_c00205{left:425.600000pt;}
.x39_c00205{left:429.466667pt;}
.x91_c00205{left:430.400000pt;}
.x65_c00205{left:431.733333pt;}
.x6e_c00205{left:434.933333pt;}
.x7f_c00205{left:438.666667pt;}
.x58_c00205{left:440.000000pt;}
.x5e_c00205{left:441.333333pt;}
.x89_c00205{left:445.466667pt;}
.x44_c00205{left:447.066667pt;}
.x7a_c00205{left:449.600000pt;}
.x86_c00205{left:450.666667pt;}
.x2f_c00205{left:452.400000pt;}
.x15_c00205{left:454.000000pt;}
.x80_c00205{left:456.266667pt;}
.x92_c00205{left:462.133333pt;}
.x9d_c00205{left:476.800000pt;}
.xfd_c00205{left:477.733333pt;}
.x10d_c00205{left:479.733333pt;}
.x127_c00205{left:480.666667pt;}
.x132_c00205{left:482.000000pt;}
.x10a_c00205{left:488.266667pt;}
.xa2_c00205{left:492.133333pt;}
.xde_c00205{left:493.200000pt;}
.x101_c00205{left:494.533333pt;}
.x112_c00205{left:495.733333pt;}
.x111_c00205{left:496.933333pt;}
.x128_c00205{left:499.200000pt;}
.x136_c00205{left:501.200000pt;}
.x138_c00205{left:503.466667pt;}
.x130_c00205{left:505.600000pt;}
.x12d_c00205{left:509.066667pt;}
.xbe_c00205{left:511.066667pt;}
.xdf_c00205{left:512.400000pt;}
.x134_c00205{left:513.333333pt;}
.xc4_c00205{left:514.266667pt;}
.x129_c00205{left:515.466667pt;}
.xaa_c00205{left:516.400000pt;}
.xfb_c00205{left:518.266667pt;}
.xd2_c00205{left:519.200000pt;}
.xec_c00205{left:521.866667pt;}
.x11a_c00205{left:522.800000pt;}
.xab_c00205{left:524.400000pt;}
.x12b_c00205{left:525.333333pt;}
.xf2_c00205{left:526.266667pt;}
.x106_c00205{left:527.600000pt;}
.xca_c00205{left:528.800000pt;}
.x124_c00205{left:530.000000pt;}
.x9e_c00205{left:531.466667pt;}
.x139_c00205{left:532.933333pt;}
.x131_c00205{left:534.400000pt;}
.xb8_c00205{left:535.466667pt;}
.xfe_c00205{left:539.200000pt;}
.xac_c00205{left:540.666667pt;}
.xe7_c00205{left:542.666667pt;}
.xe4_c00205{left:543.866667pt;}
.xf3_c00205{left:545.466667pt;}
.x113_c00205{left:548.266667pt;}
.x13c_c00205{left:552.000000pt;}
.xb2_c00205{left:554.933333pt;}
.xbf_c00205{left:556.133333pt;}
.xd3_c00205{left:558.266667pt;}
.x13f_c00205{left:559.200000pt;}
.xa3_c00205{left:560.933333pt;}
.xc5_c00205{left:562.000000pt;}
.xb9_c00205{left:562.933333pt;}
.xd8_c00205{left:564.800000pt;}
.x148_c00205{left:566.800000pt;}
.x13a_c00205{left:567.866667pt;}
.x107_c00205{left:569.200000pt;}
.xe8_c00205{left:571.466667pt;}
.x102_c00205{left:573.200000pt;}
.xc0_c00205{left:575.333333pt;}
.xfc_c00205{left:576.800000pt;}
.xa4_c00205{left:578.533333pt;}
.x141_c00205{left:580.000000pt;}
.x12e_c00205{left:580.933333pt;}
.x103_c00205{left:581.866667pt;}
.x135_c00205{left:583.466667pt;}
.xba_c00205{left:584.666667pt;}
.xd9_c00205{left:586.533333pt;}
.xcb_c00205{left:588.400000pt;}
.x9f_c00205{left:590.000000pt;}
.xe5_c00205{left:591.600000pt;}
.x104_c00205{left:592.800000pt;}
.x146_c00205{left:594.000000pt;}
.xad_c00205{left:596.666667pt;}
.xf4_c00205{left:597.600000pt;}
.x108_c00205{left:598.666667pt;}
.xed_c00205{left:599.866667pt;}
.x137_c00205{left:601.066667pt;}
.x142_c00205{left:602.400000pt;}
.xcc_c00205{left:603.733333pt;}
.x120_c00205{left:604.933333pt;}
.xee_c00205{left:607.866667pt;}
.xdc_c00205{left:609.466667pt;}
.xa5_c00205{left:612.133333pt;}
.x125_c00205{left:613.200000pt;}
.x114_c00205{left:614.133333pt;}
.xc6_c00205{left:616.133333pt;}
.xb3_c00205{left:617.600000pt;}
.x116_c00205{left:619.333333pt;}
.x121_c00205{left:620.666667pt;}
.x147_c00205{left:621.866667pt;}
.x10b_c00205{left:623.066667pt;}
.xe6_c00205{left:624.266667pt;}
.xef_c00205{left:626.133333pt;}
.xc1_c00205{left:627.200000pt;}
.xd4_c00205{left:630.000000pt;}
.xbb_c00205{left:632.000000pt;}
.xcd_c00205{left:635.466667pt;}
.x109_c00205{left:639.333333pt;}
.xe0_c00205{left:641.066667pt;}
.x10c_c00205{left:644.133333pt;}
.x11b_c00205{left:646.266667pt;}
.xc7_c00205{left:648.800000pt;}
.x133_c00205{left:650.000000pt;}
.xb4_c00205{left:650.933333pt;}
.x143_c00205{left:652.000000pt;}
.xce_c00205{left:653.333333pt;}
.xd5_c00205{left:655.333333pt;}
.xa6_c00205{left:656.933333pt;}
.x117_c00205{left:658.400000pt;}
.x105_c00205{left:659.733333pt;}
.xf5_c00205{left:660.933333pt;}
.xa0_c00205{left:662.666667pt;}
.xc8_c00205{left:666.666667pt;}
.x11e_c00205{left:667.733333pt;}
.xae_c00205{left:668.933333pt;}
.x144_c00205{left:670.933333pt;}
.xd6_c00205{left:672.000000pt;}
.xa7_c00205{left:675.466667pt;}
.xff_c00205{left:676.933333pt;}
.xe1_c00205{left:678.800000pt;}
.xf0_c00205{left:680.266667pt;}
.xaf_c00205{left:682.000000pt;}
.x145_c00205{left:683.066667pt;}
.xe9_c00205{left:684.133333pt;}
.xe2_c00205{left:688.400000pt;}
.x118_c00205{left:689.733333pt;}
.xf8_c00205{left:693.066667pt;}
.xa8_c00205{left:694.666667pt;}
.xbc_c00205{left:696.666667pt;}
.xb5_c00205{left:697.733333pt;}
.x13b_c00205{left:698.666667pt;}
.xcf_c00205{left:699.733333pt;}
.x126_c00205{left:700.933333pt;}
.xe3_c00205{left:702.533333pt;}
.xc2_c00205{left:704.266667pt;}
.xb0_c00205{left:705.333333pt;}
.x10e_c00205{left:707.600000pt;}
.x11c_c00205{left:709.333333pt;}
.x140_c00205{left:710.533333pt;}
.x122_c00205{left:711.600000pt;}
.x10f_c00205{left:713.866667pt;}
.xf6_c00205{left:714.800000pt;}
.xbd_c00205{left:716.800000pt;}
.xd0_c00205{left:719.600000pt;}
.xc3_c00205{left:722.533333pt;}
.xf9_c00205{left:724.400000pt;}
.x12a_c00205{left:726.933333pt;}
.xa9_c00205{left:728.000000pt;}
.x100_c00205{left:729.066667pt;}
.xea_c00205{left:730.533333pt;}
.xdd_c00205{left:731.600000pt;}
.x123_c00205{left:732.666667pt;}
.xda_c00205{left:735.066667pt;}
.xb6_c00205{left:736.400000pt;}
.x13d_c00205{left:738.800000pt;}
.xd7_c00205{left:740.800000pt;}
.xf7_c00205{left:742.666667pt;}
.xfa_c00205{left:744.533333pt;}
.xeb_c00205{left:745.866667pt;}
.xd1_c00205{left:746.800000pt;}
.xf1_c00205{left:747.733333pt;}
.x110_c00205{left:748.800000pt;}
.x12f_c00205{left:750.400000pt;}
.x11d_c00205{left:752.533333pt;}
.x119_c00205{left:753.733333pt;}
.x115_c00205{left:755.333333pt;}
.xb1_c00205{left:756.266667pt;}
.xb7_c00205{left:759.066667pt;}
.xdb_c00205{left:760.666667pt;}
.xa1_c00205{left:762.533333pt;}
.xc9_c00205{left:764.000000pt;}
.x13e_c00205{left:765.333333pt;}
.x12c_c00205{left:769.600000pt;}
.x11f_c00205{left:771.333333pt;}
}





/* 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_c00206 {
    display:none;
  }
  .loading-indicator_c00206.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00206 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_c00206 { 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_c00206" -> "#page-container .classname_c00206")
 */
.pf_c00206 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00206 { /* 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_c00206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00206 { /* 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_c00206 { /* 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_c00206 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00206 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00206 {overflow:visible;}
  }
}
.c_c00206 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00206 { /* 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_c00206:after { /* webkit #35443 */
  content: '';
}
.t_c00206:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00206 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 */
}
.__c00206 { /* 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_c00206 { /* info for Javascript */
  display:none;
}
.l_c00206 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00206 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00206 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00206: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_c00206 {
    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_c00206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00206.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_c00206 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00206;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.000000;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;}
.m6e_c00206{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00206{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00206{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m70_c00206{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00206{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m32_c00206{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mda_c00206{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.meb_c00206{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00206{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00206{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00206{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00206{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m73_c00206{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma_c00206{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m34_c00206{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00206{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00206{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me4_c00206{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00206{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00206{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00206{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.md0_c00206{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m111_c00206{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00206{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m88_c00206{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00206{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00206{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mef_c00206{transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00206{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00206{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.maa_c00206{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00206{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m112_c00206{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m21_c00206{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00206{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m35_c00206{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m25_c00206{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00206{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00206{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m100_c00206{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00206{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m113_c00206{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00206{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00206{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00206{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00206{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00206{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00206{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00206{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00206{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m115_c00206{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m46_c00206{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m30_c00206{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m41_c00206{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me0_c00206{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00206{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m55_c00206{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m75_c00206{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m14_c00206{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m98_c00206{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00206{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m117_c00206{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m93_c00206{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m15_c00206{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00206{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.me8_c00206{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m20_c00206{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00206{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m33_c00206{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m47_c00206{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00206{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mae_c00206{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m6_c00206{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00206{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md1_c00206{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mde_c00206{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00206{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m48_c00206{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m94_c00206{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m85_c00206{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m53_c00206{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00206{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m74_c00206{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m77_c00206{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m89_c00206{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00206{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00206{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00206{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m17_c00206{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00206{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00206{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00206{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00206{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00206{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m44_c00206{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md9_c00206{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m82_c00206{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00206{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00206{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m52_c00206{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m99_c00206{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md8_c00206{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00206{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00206{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00206{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00206{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00206{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m60_c00206{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m102_c00206{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m105_c00206{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md5_c00206{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m91_c00206{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00206{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m110_c00206{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.md2_c00206{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00206{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m49_c00206{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00206{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00206{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m16_c00206{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m97_c00206{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m95_c00206{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m86_c00206{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00206{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00206{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m51_c00206{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00206{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00206{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m7_c00206{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00206{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m38_c00206{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00206{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m101_c00206{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc_c00206{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m27_c00206{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00206{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00206{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m90_c00206{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00206{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m72_c00206{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me2_c00206{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m92_c00206{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m56_c00206{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m79_c00206{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00206{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00206{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m80_c00206{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m39_c00206{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m62_c00206{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m28_c00206{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mab_c00206{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m61_c00206{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00206{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00206{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m109_c00206{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mac_c00206{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m36_c00206{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m104_c00206{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m71_c00206{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m78_c00206{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m50_c00206{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m96_c00206{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m19_c00206{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00206{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m40_c00206{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00206{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00206{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.med_c00206{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00206{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mf_c00206{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m83_c00206{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m37_c00206{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m67_c00206{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me7_c00206{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00206{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m106_c00206{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00206{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00206{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00206{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me5_c00206{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00206{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb_c00206{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00206{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m31_c00206{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00206{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m45_c00206{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m43_c00206{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00206{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m29_c00206{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m24_c00206{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m65_c00206{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m57_c00206{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00206{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m26_c00206{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m87_c00206{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00206{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m69_c00206{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00206{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00206{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00206{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00206{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00206{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m22_c00206{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md7_c00206{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00206{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00206{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m76_c00206{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00206{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00206{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m54_c00206{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m68_c00206{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m42_c00206{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m64_c00206{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00206{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00206{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mad_c00206{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m12_c00206{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md4_c00206{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me3_c00206{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.md_c00206{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00206{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00206{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.me6_c00206{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mea_c00206{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md6_c00206{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m119_c00206{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m23_c00206{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00206{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me9_c00206{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m116_c00206{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m81_c00206{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mec_c00206{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m10_c00206{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m108_c00206{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m103_c00206{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00206{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00206{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m118_c00206{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00206{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m84_c00206{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00206{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mce_c00206{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00206{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m59_c00206{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00206{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m66_c00206{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mff_c00206{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.maf_c00206{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m114_c00206{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00206{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md3_c00206{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00206{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m58_c00206{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mba_c00206{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.me_c00206{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00206{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00206{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00206{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00206{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m11_c00206{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00206{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00206{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mca_c00206{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00206{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m107_c00206{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00206{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m63_c00206{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00206{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00206{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mee_c00206{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00206{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.me1_c00206{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m13_c00206{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00206{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00206{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00206{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{transform:matrix(0.552750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552750,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls0_c00206{letter-spacing:0.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{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__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00206{word-spacing:-12.535032px;}
.ws5_c00206{word-spacing:-8.529554px;}
.ws8_c00206{word-spacing:-3.125000px;}
.ws9_c00206{word-spacing:-2.803493px;}
.ws4_c00206{word-spacing:-2.307692px;}
.ws7_c00206{word-spacing:-1.250000px;}
.ws1_c00206{word-spacing:-0.146132px;}
.wsa_c00206{word-spacing:0.000000px;}
.ws3_c00206{word-spacing:0.786780px;}
.ws0_c00206{word-spacing:16.375358px;}
.ws6_c00206{word-spacing:16.388889px;}
.fc0_c00206{color:transparent;}
.fs4_c00206{font-size:48.000000px;}
.fs1_c00206{font-size:54.000000px;}
.fs3_c00206{font-size:60.000000px;}
.fs2_c00206{font-size:66.000000px;}
.fs0_c00206{font-size:72.000000px;}
.y0_c00206{bottom:0.000000px;}
.y36_c00206{bottom:196.950000px;}
.y69_c00206{bottom:197.250000px;}
.y35_c00206{bottom:211.650000px;}
.y68_c00206{bottom:215.550000px;}
.y34_c00206{bottom:225.450000px;}
.y67_c00206{bottom:232.800000px;}
.y33_c00206{bottom:240.150000px;}
.y66_c00206{bottom:250.800000px;}
.y32_c00206{bottom:255.300000px;}
.y65_c00206{bottom:268.800000px;}
.y31_c00206{bottom:268.950000px;}
.y30_c00206{bottom:283.950000px;}
.y64_c00206{bottom:286.500000px;}
.y2f_c00206{bottom:297.600000px;}
.y63_c00206{bottom:304.500000px;}
.y2e_c00206{bottom:312.000000px;}
.y62_c00206{bottom:322.500000px;}
.y2d_c00206{bottom:326.100000px;}
.y61_c00206{bottom:340.200000px;}
.y60_c00206{bottom:357.900000px;}
.y2c_c00206{bottom:363.300000px;}
.y5f_c00206{bottom:375.900000px;}
.y2b_c00206{bottom:381.000000px;}
.y5e_c00206{bottom:393.900000px;}
.y2a_c00206{bottom:399.000000px;}
.y5d_c00206{bottom:411.150000px;}
.y29_c00206{bottom:416.700000px;}
.y5c_c00206{bottom:429.150000px;}
.y28_c00206{bottom:434.700000px;}
.y5b_c00206{bottom:446.700000px;}
.y27_c00206{bottom:452.400000px;}
.y26_c00206{bottom:470.100000px;}
.y5a_c00206{bottom:473.400000px;}
.y25_c00206{bottom:488.100000px;}
.y59_c00206{bottom:491.400000px;}
.y24_c00206{bottom:506.100000px;}
.y58_c00206{bottom:509.400000px;}
.y23_c00206{bottom:523.800000px;}
.y57_c00206{bottom:531.300000px;}
.y22_c00206{bottom:541.800000px;}
.y56_c00206{bottom:549.000000px;}
.y21_c00206{bottom:559.500000px;}
.y55_c00206{bottom:567.000000px;}
.y20_c00206{bottom:577.500000px;}
.y54_c00206{bottom:584.250000px;}
.y1f_c00206{bottom:595.500000px;}
.y53_c00206{bottom:602.250000px;}
.y1e_c00206{bottom:613.500000px;}
.y52_c00206{bottom:619.950000px;}
.y1d_c00206{bottom:634.350000px;}
.y51_c00206{bottom:637.950000px;}
.y1c_c00206{bottom:653.100000px;}
.y50_c00206{bottom:655.650000px;}
.y4f_c00206{bottom:673.350000px;}
.y1b_c00206{bottom:678.600000px;}
.y4e_c00206{bottom:691.050000px;}
.y1a_c00206{bottom:696.600000px;}
.y4d_c00206{bottom:709.050000px;}
.y19_c00206{bottom:714.600000px;}
.y4c_c00206{bottom:726.750000px;}
.y18_c00206{bottom:727.200000px;}
.y17_c00206{bottom:732.300000px;}
.y4b_c00206{bottom:744.450000px;}
.y16_c00206{bottom:750.300000px;}
.y4a_c00206{bottom:762.000000px;}
.y15_c00206{bottom:768.300000px;}
.y49_c00206{bottom:788.700000px;}
.y14_c00206{bottom:792.900000px;}
.y13_c00206{bottom:811.950000px;}
.y48_c00206{bottom:815.100000px;}
.y12_c00206{bottom:829.650000px;}
.y47_c00206{bottom:833.100000px;}
.y11_c00206{bottom:847.950000px;}
.y46_c00206{bottom:850.650000px;}
.y10_c00206{bottom:865.650000px;}
.y45_c00206{bottom:868.650000px;}
.yf_c00206{bottom:883.350000px;}
.y44_c00206{bottom:886.350000px;}
.ye_c00206{bottom:901.350000px;}
.y43_c00206{bottom:904.050000px;}
.yd_c00206{bottom:919.050000px;}
.y42_c00206{bottom:922.050000px;}
.yc_c00206{bottom:936.750000px;}
.y41_c00206{bottom:941.100000px;}
.yb_c00206{bottom:954.750000px;}
.y40_c00206{bottom:957.300000px;}
.ya_c00206{bottom:972.450000px;}
.y3f_c00206{bottom:975.300000px;}
.y9_c00206{bottom:990.450000px;}
.y3e_c00206{bottom:992.850000px;}
.y8_c00206{bottom:1007.700000px;}
.y3d_c00206{bottom:1015.200000px;}
.y7_c00206{bottom:1026.000000px;}
.y3c_c00206{bottom:1033.200000px;}
.y6_c00206{bottom:1043.250000px;}
.y3b_c00206{bottom:1051.200000px;}
.y5_c00206{bottom:1065.600000px;}
.y3a_c00206{bottom:1068.450000px;}
.y4_c00206{bottom:1083.600000px;}
.y39_c00206{bottom:1086.450000px;}
.y3_c00206{bottom:1100.850000px;}
.y38_c00206{bottom:1104.450000px;}
.y2_c00206{bottom:1118.550000px;}
.y37_c00206{bottom:1121.700000px;}
.y1_c00206{bottom:1148.400000px;}
.h6_c00206{height:48.000000px;}
.h3_c00206{height:54.000000px;}
.h5_c00206{height:60.000000px;}
.h4_c00206{height:66.000000px;}
.h2_c00206{height:72.000000px;}
.h0_c00206{height:1275.480010px;}
.h1_c00206{height:1275.750000px;}
.w1_c00206{width:963.000000px;}
.w0_c00206{width:963.359985px;}
.x0_c00206{left:0.000000px;}
.x3_c00206{left:84.900000px;}
.x20_c00206{left:86.700000px;}
.x67_c00206{left:88.500000px;}
.x7d_c00206{left:90.300000px;}
.x98_c00206{left:92.550000px;}
.xa4_c00206{left:93.750000px;}
.xa7_c00206{left:94.800000px;}
.x4_c00206{left:98.550000px;}
.xd_c00206{left:101.850000px;}
.x28_c00206{left:103.350000px;}
.x39_c00206{left:104.400000px;}
.x41_c00206{left:105.450000px;}
.x6a_c00206{left:106.800000px;}
.x74_c00206{left:107.850000px;}
.x85_c00206{left:109.500000px;}
.x90_c00206{left:110.700000px;}
.x99_c00206{left:112.050000px;}
.xa8_c00206{left:121.050000px;}
.x75_c00206{left:124.050000px;}
.x19_c00206{left:125.850000px;}
.x5_c00206{left:127.050000px;}
.x6e_c00206{left:129.900000px;}
.x94_c00206{left:131.100000px;}
.x66_c00206{left:132.300000px;}
.x9a_c00206{left:135.450000px;}
.x14_c00206{left:136.800000px;}
.x21_c00206{left:138.900000px;}
.x2f_c00206{left:140.400000px;}
.x1a_c00206{left:142.050000px;}
.x63_c00206{left:143.100000px;}
.x97_c00206{left:145.650000px;}
.x30_c00206{left:149.400000px;}
.x5f_c00206{left:151.200000px;}
.x5b_c00206{left:153.000000px;}
.xe_c00206{left:154.050000px;}
.x7a_c00206{left:155.550000px;}
.x31_c00206{left:158.400000px;}
.x22_c00206{left:159.750000px;}
.x3a_c00206{left:161.250000px;}
.x56_c00206{left:164.850000px;}
.x6b_c00206{left:165.900000px;}
.xa5_c00206{left:166.950000px;}
.x5c_c00206{left:169.950000px;}
.x53_c00206{left:171.900000px;}
.x79_c00206{left:173.250000px;}
.x4b_c00206{left:175.950000px;}
.x42_c00206{left:177.150000px;}
.x3b_c00206{left:179.550000px;}
.x1b_c00206{left:180.900000px;}
.x29_c00206{left:183.300000px;}
.x86_c00206{left:186.900000px;}
.x47_c00206{left:189.000000px;}
.x8d_c00206{left:190.200000px;}
.x95_c00206{left:191.250000px;}
.x9b_c00206{left:192.750000px;}
.x32_c00206{left:194.700000px;}
.x57_c00206{left:196.200000px;}
.x2a_c00206{left:197.400000px;}
.x87_c00206{left:202.350000px;}
.x6_c00206{left:203.700000px;}
.x23_c00206{left:205.800000px;}
.xf_c00206{left:208.050000px;}
.x76_c00206{left:209.400000px;}
.x33_c00206{left:212.400000px;}
.x1c_c00206{left:213.600000px;}
.x84_c00206{left:214.950000px;}
.x64_c00206{left:216.900000px;}
.x3c_c00206{left:218.400000px;}
.x82_c00206{left:219.900000px;}
.x10_c00206{left:222.450000px;}
.x7f_c00206{left:223.950000px;}
.x24_c00206{left:226.350000px;}
.x70_c00206{left:228.600000px;}
.x4c_c00206{left:229.950000px;}
.x48_c00206{left:232.200000px;}
.x34_c00206{left:233.250000px;}
.x7_c00206{left:235.050000px;}
.xab_c00206{left:236.700000px;}
.x1d_c00206{left:237.750000px;}
.x11_c00206{left:239.700000px;}
.x89_c00206{left:240.900000px;}
.x25_c00206{left:242.250000px;}
.x58_c00206{left:243.300000px;}
.x5d_c00206{left:246.300000px;}
.x80_c00206{left:249.150000px;}
.x54_c00206{left:252.900000px;}
.xa9_c00206{left:254.850000px;}
.x1e_c00206{left:256.500000px;}
.x77_c00206{left:258.000000px;}
.x35_c00206{left:261.300000px;}
.x83_c00206{left:262.350000px;}
.x8a_c00206{left:263.850000px;}
.x9e_c00206{left:265.500000px;}
.x15_c00206{left:266.850000px;}
.x8_c00206{left:268.950000px;}
.x49_c00206{left:270.750000px;}
.x43_c00206{left:273.150000px;}
.x4d_c00206{left:281.400000px;}
.x81_c00206{left:284.400000px;}
.x16_c00206{left:285.600000px;}
.x6c_c00206{left:286.800000px;}
.x78_c00206{left:289.050000px;}
.x9_c00206{left:290.550000px;}
.x68_c00206{left:292.350000px;}
.x3d_c00206{left:294.000000px;}
.x36_c00206{left:295.500000px;}
.xa2_c00206{left:297.450000px;}
.x2b_c00206{left:298.800000px;}
.x17_c00206{left:301.500000px;}
.x50_c00206{left:303.150000px;}
.x71_c00206{left:305.100000px;}
.x44_c00206{left:307.050000px;}
.x4e_c00206{left:309.450000px;}
.x69_c00206{left:310.650000px;}
.x7b_c00206{left:312.900000px;}
.x7e_c00206{left:314.250000px;}
.x9c_c00206{left:315.900000px;}
.x8e_c00206{left:317.250000px;}
.x59_c00206{left:318.600000px;}
.x1_c00206{left:320.400000px;}
.x60_c00206{left:321.750000px;}
.x7c_c00206{left:323.700000px;}
.x91_c00206{left:325.350000px;}
.x45_c00206{left:328.350000px;}
.x72_c00206{left:330.300000px;}
.x37_c00206{left:333.300000px;}
.xa_c00206{left:334.800000px;}
.x5e_c00206{left:336.000000px;}
.x51_c00206{left:338.100000px;}
.x2c_c00206{left:339.150000px;}
.x65_c00206{left:341.100000px;}
.x9f_c00206{left:343.050000px;}
.x92_c00206{left:344.550000px;}
.x3e_c00206{left:346.950000px;}
.x1f_c00206{left:348.300000px;}
.x2d_c00206{left:349.950000px;}
.x73_c00206{left:351.900000px;}
.x8f_c00206{left:352.950000px;}
.x12_c00206{left:355.350000px;}
.x62_c00206{left:357.000000px;}
.x4f_c00206{left:359.850000px;}
.x3f_c00206{left:361.350000px;}
.x18_c00206{left:363.450000px;}
.x4a_c00206{left:365.400000px;}
.x8b_c00206{left:368.250000px;}
.xa3_c00206{left:370.500000px;}
.x6d_c00206{left:371.700000px;}
.x38_c00206{left:378.000000px;}
.xa0_c00206{left:379.350000px;}
.x46_c00206{left:380.850000px;}
.x88_c00206{left:383.100000px;}
.xb_c00206{left:385.200000px;}
.x26_c00206{left:387.750000px;}
.x2e_c00206{left:389.550000px;}
.xa6_c00206{left:391.050000px;}
.x93_c00206{left:392.850000px;}
.x13_c00206{left:394.200000px;}
.xc_c00206{left:397.050000px;}
.x8c_c00206{left:398.550000px;}
.x40_c00206{left:400.950000px;}
.x5a_c00206{left:402.150000px;}
.xa1_c00206{left:404.850000px;}
.x27_c00206{left:406.500000px;}
.x52_c00206{left:407.550000px;}
.x6f_c00206{left:409.500000px;}
.x55_c00206{left:410.700000px;}
.x61_c00206{left:412.050000px;}
.xaa_c00206{left:414.600000px;}
.x96_c00206{left:417.450000px;}
.x9d_c00206{left:418.800000px;}
.xd8_c00206{left:441.750000px;}
.x104_c00206{left:444.300000px;}
.x105_c00206{left:445.650000px;}
.x13c_c00206{left:448.500000px;}
.xac_c00206{left:457.950000px;}
.xc1_c00206{left:459.900000px;}
.xf2_c00206{left:461.100000px;}
.x112_c00206{left:462.600000px;}
.x10a_c00206{left:463.650000px;}
.x13a_c00206{left:464.700000px;}
.x142_c00206{left:465.750000px;}
.x14a_c00206{left:466.800000px;}
.x153_c00206{left:468.000000px;}
.xd3_c00206{left:472.050000px;}
.xc2_c00206{left:474.600000px;}
.xcb_c00206{left:478.650000px;}
.x106_c00206{left:482.400000px;}
.x113_c00206{left:483.900000px;}
.x124_c00206{left:485.100000px;}
.x12a_c00206{left:486.600000px;}
.x13d_c00206{left:489.600000px;}
.xe7_c00206{left:492.000000px;}
.x117_c00206{left:495.450000px;}
.xb4_c00206{left:497.250000px;}
.xba_c00206{left:498.750000px;}
.x151_c00206{left:500.700000px;}
.xfb_c00206{left:502.050000px;}
.xd9_c00206{left:504.000000px;}
.x137_c00206{left:505.800000px;}
.xd4_c00206{left:508.350000px;}
.xb5_c00206{left:510.150000px;}
.xcc_c00206{left:512.100000px;}
.xe5_c00206{left:514.200000px;}
.x103_c00206{left:515.550000px;}
.x13f_c00206{left:516.900000px;}
.xc7_c00206{left:517.950000px;}
.x118_c00206{left:519.600000px;}
.x130_c00206{left:522.450000px;}
.xad_c00206{left:523.500000px;}
.xc3_c00206{left:526.050000px;}
.x148_c00206{left:527.550000px;}
.xd5_c00206{left:529.200000px;}
.xcd_c00206{left:531.150000px;}
.xbb_c00206{left:532.650000px;}
.x114_c00206{left:535.050000px;}
.xe8_c00206{left:536.700000px;}
.xae_c00206{left:538.650000px;}
.xda_c00206{left:540.300000px;}
.xff_c00206{left:541.350000px;}
.xc4_c00206{left:542.550000px;}
.x11a_c00206{left:543.900000px;}
.xf6_c00206{left:546.000000px;}
.xf3_c00206{left:547.800000px;}
.x136_c00206{left:550.050000px;}
.xc8_c00206{left:552.450000px;}
.xec_c00206{left:554.700000px;}
.x10f_c00206{left:556.200000px;}
.xb6_c00206{left:559.050000px;}
.x102_c00206{left:560.400000px;}
.x11f_c00206{left:562.500000px;}
.x152_c00206{left:564.750000px;}
.x10b_c00206{left:569.850000px;}
.xb7_c00206{left:571.950000px;}
.xaf_c00206{left:574.650000px;}
.xe0_c00206{left:577.800000px;}
.xc9_c00206{left:579.450000px;}
.x138_c00206{left:580.650000px;}
.x115_c00206{left:582.600000px;}
.x143_c00206{left:583.800000px;}
.x11b_c00206{left:585.300000px;}
.xb0_c00206{left:587.250000px;}
.x125_c00206{left:588.450000px;}
.x12d_c00206{left:590.400000px;}
.x131_c00206{left:592.350000px;}
.xd6_c00206{left:594.000000px;}
.x12b_c00206{left:596.400000px;}
.x100_c00206{left:597.450000px;}
.xce_c00206{left:599.250000px;}
.x127_c00206{left:600.750000px;}
.xf7_c00206{left:602.550000px;}
.x132_c00206{left:604.650000px;}
.xd7_c00206{left:605.850000px;}
.xe6_c00206{left:607.650000px;}
.xed_c00206{left:608.700000px;}
.xbc_c00206{left:611.100000px;}
.x12e_c00206{left:613.500000px;}
.x14f_c00206{left:615.450000px;}
.xe9_c00206{left:616.500000px;}
.xe1_c00206{left:618.150000px;}
.xee_c00206{left:620.550000px;}
.xfc_c00206{left:622.050000px;}
.xbd_c00206{left:624.000000px;}
.x14b_c00206{left:625.950000px;}
.x13b_c00206{left:630.750000px;}
.xcf_c00206{left:632.700000px;}
.xb1_c00206{left:634.800000px;}
.xdb_c00206{left:636.000000px;}
.xef_c00206{left:637.800000px;}
.x144_c00206{left:639.300000px;}
.x110_c00206{left:642.300000px;}
.x14c_c00206{left:643.950000px;}
.xfd_c00206{left:645.750000px;}
.x12c_c00206{left:646.800000px;}
.xb2_c00206{left:648.150000px;}
.xdc_c00206{left:649.350000px;}
.xd0_c00206{left:652.800000px;}
.xe2_c00206{left:656.250000px;}
.x123_c00206{left:658.200000px;}
.x107_c00206{left:659.250000px;}
.x11c_c00206{left:662.250000px;}
.x140_c00206{left:663.300000px;}
.x128_c00206{left:664.800000px;}
.x150_c00206{left:666.000000px;}
.xdd_c00206{left:668.100000px;}
.x10c_c00206{left:670.350000px;}
.x14d_c00206{left:671.700000px;}
.xf4_c00206{left:673.050000px;}
.xbe_c00206{left:674.100000px;}
.x12f_c00206{left:675.300000px;}
.xc5_c00206{left:678.900000px;}
.xf0_c00206{left:680.250000px;}
.x119_c00206{left:682.200000px;}
.xb8_c00206{left:683.850000px;}
.xf8_c00206{left:686.100000px;}
.x147_c00206{left:687.300000px;}
.x14e_c00206{left:688.650000px;}
.x141_c00206{left:690.000000px;}
.xde_c00206{left:693.300000px;}
.xbf_c00206{left:694.650000px;}
.x10d_c00206{left:695.850000px;}
.x101_c00206{left:698.250000px;}
.xb9_c00206{left:699.300000px;}
.xd1_c00206{left:703.500000px;}
.x11d_c00206{left:704.700000px;}
.xf1_c00206{left:706.950000px;}
.x149_c00206{left:710.100000px;}
.xf9_c00206{left:712.350000px;}
.x139_c00206{left:713.550000px;}
.xc0_c00206{left:714.750000px;}
.x133_c00206{left:716.550000px;}
.xd2_c00206{left:717.600000px;}
.x126_c00206{left:719.550000px;}
.x120_c00206{left:721.200000px;}
.xca_c00206{left:722.400000px;}
.x111_c00206{left:723.600000px;}
.x108_c00206{left:725.100000px;}
.xdf_c00206{left:727.200000px;}
.xb3_c00206{left:728.400000px;}
.xe3_c00206{left:729.750000px;}
.x116_c00206{left:732.300000px;}
.x129_c00206{left:735.000000px;}
.xea_c00206{left:736.050000px;}
.x134_c00206{left:738.150000px;}
.x11e_c00206{left:739.950000px;}
.xf5_c00206{left:743.250000px;}
.xc6_c00206{left:744.450000px;}
.x13e_c00206{left:746.100000px;}
.xe4_c00206{left:748.800000px;}
.x135_c00206{left:751.050000px;}
.x2_c00206{left:752.100000px;}
.xeb_c00206{left:754.350000px;}
.x145_c00206{left:759.450000px;}
.x121_c00206{left:760.800000px;}
.x109_c00206{left:764.700000px;}
.x10e_c00206{left:766.050000px;}
.xfa_c00206{left:769.200000px;}
.x122_c00206{left:774.450000px;}
.xfe_c00206{left:776.550000px;}
.x146_c00206{left:779.100000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws2_c00206{word-spacing:-11.142251pt;}
.ws5_c00206{word-spacing:-7.581825pt;}
.ws8_c00206{word-spacing:-2.777778pt;}
.ws9_c00206{word-spacing:-2.491994pt;}
.ws4_c00206{word-spacing:-2.051282pt;}
.ws7_c00206{word-spacing:-1.111111pt;}
.ws1_c00206{word-spacing:-0.129895pt;}
.wsa_c00206{word-spacing:0.000000pt;}
.ws3_c00206{word-spacing:0.699360pt;}
.ws0_c00206{word-spacing:14.555874pt;}
.ws6_c00206{word-spacing:14.567901pt;}
.fs4_c00206{font-size:42.666667pt;}
.fs1_c00206{font-size:48.000000pt;}
.fs3_c00206{font-size:53.333333pt;}
.fs2_c00206{font-size:58.666667pt;}
.fs0_c00206{font-size:64.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y36_c00206{bottom:175.066667pt;}
.y69_c00206{bottom:175.333333pt;}
.y35_c00206{bottom:188.133333pt;}
.y68_c00206{bottom:191.600000pt;}
.y34_c00206{bottom:200.400000pt;}
.y67_c00206{bottom:206.933333pt;}
.y33_c00206{bottom:213.466667pt;}
.y66_c00206{bottom:222.933333pt;}
.y32_c00206{bottom:226.933333pt;}
.y65_c00206{bottom:238.933333pt;}
.y31_c00206{bottom:239.066667pt;}
.y30_c00206{bottom:252.400000pt;}
.y64_c00206{bottom:254.666667pt;}
.y2f_c00206{bottom:264.533333pt;}
.y63_c00206{bottom:270.666667pt;}
.y2e_c00206{bottom:277.333333pt;}
.y62_c00206{bottom:286.666667pt;}
.y2d_c00206{bottom:289.866667pt;}
.y61_c00206{bottom:302.400000pt;}
.y60_c00206{bottom:318.133333pt;}
.y2c_c00206{bottom:322.933333pt;}
.y5f_c00206{bottom:334.133333pt;}
.y2b_c00206{bottom:338.666667pt;}
.y5e_c00206{bottom:350.133333pt;}
.y2a_c00206{bottom:354.666667pt;}
.y5d_c00206{bottom:365.466667pt;}
.y29_c00206{bottom:370.400000pt;}
.y5c_c00206{bottom:381.466667pt;}
.y28_c00206{bottom:386.400000pt;}
.y5b_c00206{bottom:397.066667pt;}
.y27_c00206{bottom:402.133333pt;}
.y26_c00206{bottom:417.866667pt;}
.y5a_c00206{bottom:420.800000pt;}
.y25_c00206{bottom:433.866667pt;}
.y59_c00206{bottom:436.800000pt;}
.y24_c00206{bottom:449.866667pt;}
.y58_c00206{bottom:452.800000pt;}
.y23_c00206{bottom:465.600000pt;}
.y57_c00206{bottom:472.266667pt;}
.y22_c00206{bottom:481.600000pt;}
.y56_c00206{bottom:488.000000pt;}
.y21_c00206{bottom:497.333333pt;}
.y55_c00206{bottom:504.000000pt;}
.y20_c00206{bottom:513.333333pt;}
.y54_c00206{bottom:519.333333pt;}
.y1f_c00206{bottom:529.333333pt;}
.y53_c00206{bottom:535.333333pt;}
.y1e_c00206{bottom:545.333333pt;}
.y52_c00206{bottom:551.066667pt;}
.y1d_c00206{bottom:563.866667pt;}
.y51_c00206{bottom:567.066667pt;}
.y1c_c00206{bottom:580.533333pt;}
.y50_c00206{bottom:582.800000pt;}
.y4f_c00206{bottom:598.533333pt;}
.y1b_c00206{bottom:603.200000pt;}
.y4e_c00206{bottom:614.266667pt;}
.y1a_c00206{bottom:619.200000pt;}
.y4d_c00206{bottom:630.266667pt;}
.y19_c00206{bottom:635.200000pt;}
.y4c_c00206{bottom:646.000000pt;}
.y18_c00206{bottom:646.400000pt;}
.y17_c00206{bottom:650.933333pt;}
.y4b_c00206{bottom:661.733333pt;}
.y16_c00206{bottom:666.933333pt;}
.y4a_c00206{bottom:677.333333pt;}
.y15_c00206{bottom:682.933333pt;}
.y49_c00206{bottom:701.066667pt;}
.y14_c00206{bottom:704.800000pt;}
.y13_c00206{bottom:721.733333pt;}
.y48_c00206{bottom:724.533333pt;}
.y12_c00206{bottom:737.466667pt;}
.y47_c00206{bottom:740.533333pt;}
.y11_c00206{bottom:753.733333pt;}
.y46_c00206{bottom:756.133333pt;}
.y10_c00206{bottom:769.466667pt;}
.y45_c00206{bottom:772.133333pt;}
.yf_c00206{bottom:785.200000pt;}
.y44_c00206{bottom:787.866667pt;}
.ye_c00206{bottom:801.200000pt;}
.y43_c00206{bottom:803.600000pt;}
.yd_c00206{bottom:816.933333pt;}
.y42_c00206{bottom:819.600000pt;}
.yc_c00206{bottom:832.666667pt;}
.y41_c00206{bottom:836.533333pt;}
.yb_c00206{bottom:848.666667pt;}
.y40_c00206{bottom:850.933333pt;}
.ya_c00206{bottom:864.400000pt;}
.y3f_c00206{bottom:866.933333pt;}
.y9_c00206{bottom:880.400000pt;}
.y3e_c00206{bottom:882.533333pt;}
.y8_c00206{bottom:895.733333pt;}
.y3d_c00206{bottom:902.400000pt;}
.y7_c00206{bottom:912.000000pt;}
.y3c_c00206{bottom:918.400000pt;}
.y6_c00206{bottom:927.333333pt;}
.y3b_c00206{bottom:934.400000pt;}
.y5_c00206{bottom:947.200000pt;}
.y3a_c00206{bottom:949.733333pt;}
.y4_c00206{bottom:963.200000pt;}
.y39_c00206{bottom:965.733333pt;}
.y3_c00206{bottom:978.533333pt;}
.y38_c00206{bottom:981.733333pt;}
.y2_c00206{bottom:994.266667pt;}
.y37_c00206{bottom:997.066667pt;}
.y1_c00206{bottom:1020.800000pt;}
.h6_c00206{height:42.666667pt;}
.h3_c00206{height:48.000000pt;}
.h5_c00206{height:53.333333pt;}
.h4_c00206{height:58.666667pt;}
.h2_c00206{height:64.000000pt;}
.h0_c00206{height:1133.760009pt;}
.h1_c00206{height:1134.000000pt;}
.w1_c00206{width:856.000000pt;}
.w0_c00206{width:856.319987pt;}
.x0_c00206{left:0.000000pt;}
.x3_c00206{left:75.466667pt;}
.x20_c00206{left:77.066667pt;}
.x67_c00206{left:78.666667pt;}
.x7d_c00206{left:80.266667pt;}
.x98_c00206{left:82.266667pt;}
.xa4_c00206{left:83.333333pt;}
.xa7_c00206{left:84.266667pt;}
.x4_c00206{left:87.600000pt;}
.xd_c00206{left:90.533333pt;}
.x28_c00206{left:91.866667pt;}
.x39_c00206{left:92.800000pt;}
.x41_c00206{left:93.733333pt;}
.x6a_c00206{left:94.933333pt;}
.x74_c00206{left:95.866667pt;}
.x85_c00206{left:97.333333pt;}
.x90_c00206{left:98.400000pt;}
.x99_c00206{left:99.600000pt;}
.xa8_c00206{left:107.600000pt;}
.x75_c00206{left:110.266667pt;}
.x19_c00206{left:111.866667pt;}
.x5_c00206{left:112.933333pt;}
.x6e_c00206{left:115.466667pt;}
.x94_c00206{left:116.533333pt;}
.x66_c00206{left:117.600000pt;}
.x9a_c00206{left:120.400000pt;}
.x14_c00206{left:121.600000pt;}
.x21_c00206{left:123.466667pt;}
.x2f_c00206{left:124.800000pt;}
.x1a_c00206{left:126.266667pt;}
.x63_c00206{left:127.200000pt;}
.x97_c00206{left:129.466667pt;}
.x30_c00206{left:132.800000pt;}
.x5f_c00206{left:134.400000pt;}
.x5b_c00206{left:136.000000pt;}
.xe_c00206{left:136.933333pt;}
.x7a_c00206{left:138.266667pt;}
.x31_c00206{left:140.800000pt;}
.x22_c00206{left:142.000000pt;}
.x3a_c00206{left:143.333333pt;}
.x56_c00206{left:146.533333pt;}
.x6b_c00206{left:147.466667pt;}
.xa5_c00206{left:148.400000pt;}
.x5c_c00206{left:151.066667pt;}
.x53_c00206{left:152.800000pt;}
.x79_c00206{left:154.000000pt;}
.x4b_c00206{left:156.400000pt;}
.x42_c00206{left:157.466667pt;}
.x3b_c00206{left:159.600000pt;}
.x1b_c00206{left:160.800000pt;}
.x29_c00206{left:162.933333pt;}
.x86_c00206{left:166.133333pt;}
.x47_c00206{left:168.000000pt;}
.x8d_c00206{left:169.066667pt;}
.x95_c00206{left:170.000000pt;}
.x9b_c00206{left:171.333333pt;}
.x32_c00206{left:173.066667pt;}
.x57_c00206{left:174.400000pt;}
.x2a_c00206{left:175.466667pt;}
.x87_c00206{left:179.866667pt;}
.x6_c00206{left:181.066667pt;}
.x23_c00206{left:182.933333pt;}
.xf_c00206{left:184.933333pt;}
.x76_c00206{left:186.133333pt;}
.x33_c00206{left:188.800000pt;}
.x1c_c00206{left:189.866667pt;}
.x84_c00206{left:191.066667pt;}
.x64_c00206{left:192.800000pt;}
.x3c_c00206{left:194.133333pt;}
.x82_c00206{left:195.466667pt;}
.x10_c00206{left:197.733333pt;}
.x7f_c00206{left:199.066667pt;}
.x24_c00206{left:201.200000pt;}
.x70_c00206{left:203.200000pt;}
.x4c_c00206{left:204.400000pt;}
.x48_c00206{left:206.400000pt;}
.x34_c00206{left:207.333333pt;}
.x7_c00206{left:208.933333pt;}
.xab_c00206{left:210.400000pt;}
.x1d_c00206{left:211.333333pt;}
.x11_c00206{left:213.066667pt;}
.x89_c00206{left:214.133333pt;}
.x25_c00206{left:215.333333pt;}
.x58_c00206{left:216.266667pt;}
.x5d_c00206{left:218.933333pt;}
.x80_c00206{left:221.466667pt;}
.x54_c00206{left:224.800000pt;}
.xa9_c00206{left:226.533333pt;}
.x1e_c00206{left:228.000000pt;}
.x77_c00206{left:229.333333pt;}
.x35_c00206{left:232.266667pt;}
.x83_c00206{left:233.200000pt;}
.x8a_c00206{left:234.533333pt;}
.x9e_c00206{left:236.000000pt;}
.x15_c00206{left:237.200000pt;}
.x8_c00206{left:239.066667pt;}
.x49_c00206{left:240.666667pt;}
.x43_c00206{left:242.800000pt;}
.x4d_c00206{left:250.133333pt;}
.x81_c00206{left:252.800000pt;}
.x16_c00206{left:253.866667pt;}
.x6c_c00206{left:254.933333pt;}
.x78_c00206{left:256.933333pt;}
.x9_c00206{left:258.266667pt;}
.x68_c00206{left:259.866667pt;}
.x3d_c00206{left:261.333333pt;}
.x36_c00206{left:262.666667pt;}
.xa2_c00206{left:264.400000pt;}
.x2b_c00206{left:265.600000pt;}
.x17_c00206{left:268.000000pt;}
.x50_c00206{left:269.466667pt;}
.x71_c00206{left:271.200000pt;}
.x44_c00206{left:272.933333pt;}
.x4e_c00206{left:275.066667pt;}
.x69_c00206{left:276.133333pt;}
.x7b_c00206{left:278.133333pt;}
.x7e_c00206{left:279.333333pt;}
.x9c_c00206{left:280.800000pt;}
.x8e_c00206{left:282.000000pt;}
.x59_c00206{left:283.200000pt;}
.x1_c00206{left:284.800000pt;}
.x60_c00206{left:286.000000pt;}
.x7c_c00206{left:287.733333pt;}
.x91_c00206{left:289.200000pt;}
.x45_c00206{left:291.866667pt;}
.x72_c00206{left:293.600000pt;}
.x37_c00206{left:296.266667pt;}
.xa_c00206{left:297.600000pt;}
.x5e_c00206{left:298.666667pt;}
.x51_c00206{left:300.533333pt;}
.x2c_c00206{left:301.466667pt;}
.x65_c00206{left:303.200000pt;}
.x9f_c00206{left:304.933333pt;}
.x92_c00206{left:306.266667pt;}
.x3e_c00206{left:308.400000pt;}
.x1f_c00206{left:309.600000pt;}
.x2d_c00206{left:311.066667pt;}
.x73_c00206{left:312.800000pt;}
.x8f_c00206{left:313.733333pt;}
.x12_c00206{left:315.866667pt;}
.x62_c00206{left:317.333333pt;}
.x4f_c00206{left:319.866667pt;}
.x3f_c00206{left:321.200000pt;}
.x18_c00206{left:323.066667pt;}
.x4a_c00206{left:324.800000pt;}
.x8b_c00206{left:327.333333pt;}
.xa3_c00206{left:329.333333pt;}
.x6d_c00206{left:330.400000pt;}
.x38_c00206{left:336.000000pt;}
.xa0_c00206{left:337.200000pt;}
.x46_c00206{left:338.533333pt;}
.x88_c00206{left:340.533333pt;}
.xb_c00206{left:342.400000pt;}
.x26_c00206{left:344.666667pt;}
.x2e_c00206{left:346.266667pt;}
.xa6_c00206{left:347.600000pt;}
.x93_c00206{left:349.200000pt;}
.x13_c00206{left:350.400000pt;}
.xc_c00206{left:352.933333pt;}
.x8c_c00206{left:354.266667pt;}
.x40_c00206{left:356.400000pt;}
.x5a_c00206{left:357.466667pt;}
.xa1_c00206{left:359.866667pt;}
.x27_c00206{left:361.333333pt;}
.x52_c00206{left:362.266667pt;}
.x6f_c00206{left:364.000000pt;}
.x55_c00206{left:365.066667pt;}
.x61_c00206{left:366.266667pt;}
.xaa_c00206{left:368.533333pt;}
.x96_c00206{left:371.066667pt;}
.x9d_c00206{left:372.266667pt;}
.xd8_c00206{left:392.666667pt;}
.x104_c00206{left:394.933333pt;}
.x105_c00206{left:396.133333pt;}
.x13c_c00206{left:398.666667pt;}
.xac_c00206{left:407.066667pt;}
.xc1_c00206{left:408.800000pt;}
.xf2_c00206{left:409.866667pt;}
.x112_c00206{left:411.200000pt;}
.x10a_c00206{left:412.133333pt;}
.x13a_c00206{left:413.066667pt;}
.x142_c00206{left:414.000000pt;}
.x14a_c00206{left:414.933333pt;}
.x153_c00206{left:416.000000pt;}
.xd3_c00206{left:419.600000pt;}
.xc2_c00206{left:421.866667pt;}
.xcb_c00206{left:425.466667pt;}
.x106_c00206{left:428.800000pt;}
.x113_c00206{left:430.133333pt;}
.x124_c00206{left:431.200000pt;}
.x12a_c00206{left:432.533333pt;}
.x13d_c00206{left:435.200000pt;}
.xe7_c00206{left:437.333333pt;}
.x117_c00206{left:440.400000pt;}
.xb4_c00206{left:442.000000pt;}
.xba_c00206{left:443.333333pt;}
.x151_c00206{left:445.066667pt;}
.xfb_c00206{left:446.266667pt;}
.xd9_c00206{left:448.000000pt;}
.x137_c00206{left:449.600000pt;}
.xd4_c00206{left:451.866667pt;}
.xb5_c00206{left:453.466667pt;}
.xcc_c00206{left:455.200000pt;}
.xe5_c00206{left:457.066667pt;}
.x103_c00206{left:458.266667pt;}
.x13f_c00206{left:459.466667pt;}
.xc7_c00206{left:460.400000pt;}
.x118_c00206{left:461.866667pt;}
.x130_c00206{left:464.400000pt;}
.xad_c00206{left:465.333333pt;}
.xc3_c00206{left:467.600000pt;}
.x148_c00206{left:468.933333pt;}
.xd5_c00206{left:470.400000pt;}
.xcd_c00206{left:472.133333pt;}
.xbb_c00206{left:473.466667pt;}
.x114_c00206{left:475.600000pt;}
.xe8_c00206{left:477.066667pt;}
.xae_c00206{left:478.800000pt;}
.xda_c00206{left:480.266667pt;}
.xff_c00206{left:481.200000pt;}
.xc4_c00206{left:482.266667pt;}
.x11a_c00206{left:483.466667pt;}
.xf6_c00206{left:485.333333pt;}
.xf3_c00206{left:486.933333pt;}
.x136_c00206{left:488.933333pt;}
.xc8_c00206{left:491.066667pt;}
.xec_c00206{left:493.066667pt;}
.x10f_c00206{left:494.400000pt;}
.xb6_c00206{left:496.933333pt;}
.x102_c00206{left:498.133333pt;}
.x11f_c00206{left:500.000000pt;}
.x152_c00206{left:502.000000pt;}
.x10b_c00206{left:506.533333pt;}
.xb7_c00206{left:508.400000pt;}
.xaf_c00206{left:510.800000pt;}
.xe0_c00206{left:513.600000pt;}
.xc9_c00206{left:515.066667pt;}
.x138_c00206{left:516.133333pt;}
.x115_c00206{left:517.866667pt;}
.x143_c00206{left:518.933333pt;}
.x11b_c00206{left:520.266667pt;}
.xb0_c00206{left:522.000000pt;}
.x125_c00206{left:523.066667pt;}
.x12d_c00206{left:524.800000pt;}
.x131_c00206{left:526.533333pt;}
.xd6_c00206{left:528.000000pt;}
.x12b_c00206{left:530.133333pt;}
.x100_c00206{left:531.066667pt;}
.xce_c00206{left:532.666667pt;}
.x127_c00206{left:534.000000pt;}
.xf7_c00206{left:535.600000pt;}
.x132_c00206{left:537.466667pt;}
.xd7_c00206{left:538.533333pt;}
.xe6_c00206{left:540.133333pt;}
.xed_c00206{left:541.066667pt;}
.xbc_c00206{left:543.200000pt;}
.x12e_c00206{left:545.333333pt;}
.x14f_c00206{left:547.066667pt;}
.xe9_c00206{left:548.000000pt;}
.xe1_c00206{left:549.466667pt;}
.xee_c00206{left:551.600000pt;}
.xfc_c00206{left:552.933333pt;}
.xbd_c00206{left:554.666667pt;}
.x14b_c00206{left:556.400000pt;}
.x13b_c00206{left:560.666667pt;}
.xcf_c00206{left:562.400000pt;}
.xb1_c00206{left:564.266667pt;}
.xdb_c00206{left:565.333333pt;}
.xef_c00206{left:566.933333pt;}
.x144_c00206{left:568.266667pt;}
.x110_c00206{left:570.933333pt;}
.x14c_c00206{left:572.400000pt;}
.xfd_c00206{left:574.000000pt;}
.x12c_c00206{left:574.933333pt;}
.xb2_c00206{left:576.133333pt;}
.xdc_c00206{left:577.200000pt;}
.xd0_c00206{left:580.266667pt;}
.xe2_c00206{left:583.333333pt;}
.x123_c00206{left:585.066667pt;}
.x107_c00206{left:586.000000pt;}
.x11c_c00206{left:588.666667pt;}
.x140_c00206{left:589.600000pt;}
.x128_c00206{left:590.933333pt;}
.x150_c00206{left:592.000000pt;}
.xdd_c00206{left:593.866667pt;}
.x10c_c00206{left:595.866667pt;}
.x14d_c00206{left:597.066667pt;}
.xf4_c00206{left:598.266667pt;}
.xbe_c00206{left:599.200000pt;}
.x12f_c00206{left:600.266667pt;}
.xc5_c00206{left:603.466667pt;}
.xf0_c00206{left:604.666667pt;}
.x119_c00206{left:606.400000pt;}
.xb8_c00206{left:607.866667pt;}
.xf8_c00206{left:609.866667pt;}
.x147_c00206{left:610.933333pt;}
.x14e_c00206{left:612.133333pt;}
.x141_c00206{left:613.333333pt;}
.xde_c00206{left:616.266667pt;}
.xbf_c00206{left:617.466667pt;}
.x10d_c00206{left:618.533333pt;}
.x101_c00206{left:620.666667pt;}
.xb9_c00206{left:621.600000pt;}
.xd1_c00206{left:625.333333pt;}
.x11d_c00206{left:626.400000pt;}
.xf1_c00206{left:628.400000pt;}
.x149_c00206{left:631.200000pt;}
.xf9_c00206{left:633.200000pt;}
.x139_c00206{left:634.266667pt;}
.xc0_c00206{left:635.333333pt;}
.x133_c00206{left:636.933333pt;}
.xd2_c00206{left:637.866667pt;}
.x126_c00206{left:639.600000pt;}
.x120_c00206{left:641.066667pt;}
.xca_c00206{left:642.133333pt;}
.x111_c00206{left:643.200000pt;}
.x108_c00206{left:644.533333pt;}
.xdf_c00206{left:646.400000pt;}
.xb3_c00206{left:647.466667pt;}
.xe3_c00206{left:648.666667pt;}
.x116_c00206{left:650.933333pt;}
.x129_c00206{left:653.333333pt;}
.xea_c00206{left:654.266667pt;}
.x134_c00206{left:656.133333pt;}
.x11e_c00206{left:657.733333pt;}
.xf5_c00206{left:660.666667pt;}
.xc6_c00206{left:661.733333pt;}
.x13e_c00206{left:663.200000pt;}
.xe4_c00206{left:665.600000pt;}
.x135_c00206{left:667.600000pt;}
.x2_c00206{left:668.533333pt;}
.xeb_c00206{left:670.533333pt;}
.x145_c00206{left:675.066667pt;}
.x121_c00206{left:676.266667pt;}
.x109_c00206{left:679.733333pt;}
.x10e_c00206{left:680.933333pt;}
.xfa_c00206{left:683.733333pt;}
.x122_c00206{left:688.400000pt;}
.xfe_c00206{left:690.266667pt;}
.x146_c00206{left:692.533333pt;}
}





/* 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_c00207 {
    display:none;
  }
  .loading-indicator_c00207.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00207 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_c00207 { 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_c00207" -> "#page-container .classname_c00207")
 */
.pf_c00207 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00207 { /* 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_c00207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00207 { /* 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_c00207 { /* 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_c00207 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00207 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00207 {overflow:visible;}
  }
}
.c_c00207 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00207 { /* 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_c00207:after { /* webkit #35443 */
  content: '';
}
.t_c00207:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00207 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 */
}
.__c00207 { /* 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_c00207 { /* info for Javascript */
  display:none;
}
.l_c00207 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00207 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00207 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00207: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_c00207 {
    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_c00207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00207.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_c00207 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00207;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.000000;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;}
.m97_c00207{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m50_c00207{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00207{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m58_c00207{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00207{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me_c00207{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00207{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00207{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md9_c00207{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m15_c00207{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m53_c00207{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.m41_c00207{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00207{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m38_c00207{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00207{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00207{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00207{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m8_c00207{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mae_c00207{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m3_c00207{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00207{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00207{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00207{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m70_c00207{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m48_c00207{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md2_c00207{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc_c00207{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m72_c00207{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me6_c00207{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m31_c00207{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00207{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.md4_c00207{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m73_c00207{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m96_c00207{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00207{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m35_c00207{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mad_c00207{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00207{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md1_c00207{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m23_c00207{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md8_c00207{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m86_c00207{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m82_c00207{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m45_c00207{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m71_c00207{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m56_c00207{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mde_c00207{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00207{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m88_c00207{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00207{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m62_c00207{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00207{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7_c00207{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m93_c00207{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mce_c00207{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m89_c00207{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m68_c00207{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00207{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00207{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00207{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.ma_c00207{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m85_c00207{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m59_c00207{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m61_c00207{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m64_c00207{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00207{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m52_c00207{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m57_c00207{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00207{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mac_c00207{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00207{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00207{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m80_c00207{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m18_c00207{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m37_c00207{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m94_c00207{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m47_c00207{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00207{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00207{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m83_c00207{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m51_c00207{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md0_c00207{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00207{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00207{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00207{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00207{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00207{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m66_c00207{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.me4_c00207{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m77_c00207{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00207{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00207{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m65_c00207{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00207{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00207{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m39_c00207{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m67_c00207{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m13_c00207{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00207{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m87_c00207{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m22_c00207{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m10_c00207{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00207{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m14_c00207{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m90_c00207{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00207{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00207{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m36_c00207{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m55_c00207{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00207{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00207{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m16_c00207{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00207{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m24_c00207{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m4_c00207{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m75_c00207{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6_c00207{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00207{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00207{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00207{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00207{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00207{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00207{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m84_c00207{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m69_c00207{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00207{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m19_c00207{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00207{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00207{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00207{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m42_c00207{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m63_c00207{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00207{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m40_c00207{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00207{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00207{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00207{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5_c00207{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00207{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.maf_c00207{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00207{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m28_c00207{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.me3_c00207{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m25_c00207{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m30_c00207{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9_c00207{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00207{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me8_c00207{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00207{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m32_c00207{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mba_c00207{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m78_c00207{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m79_c00207{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00207{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me1_c00207{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00207{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m81_c00207{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00207{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m12_c00207{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00207{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m33_c00207{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md5_c00207{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m76_c00207{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m49_c00207{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00207{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m34_c00207{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m29_c00207{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m43_c00207{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00207{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.meb_c00207{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00207{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me2_c00207{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.md_c00207{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00207{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m27_c00207{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00207{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m46_c00207{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00207{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00207{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mca_c00207{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m17_c00207{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf_c00207{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00207{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m44_c00207{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00207{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.med_c00207{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00207{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mea_c00207{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00207{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mee_c00207{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb_c00207{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mef_c00207{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m92_c00207{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.maa_c00207{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m20_c00207{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m11_c00207{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00207{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00207{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00207{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00207{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00207{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.md7_c00207{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00207{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00207{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00207{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00207{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mda_c00207{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me9_c00207{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00207{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m26_c00207{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mab_c00207{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00207{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);}
.mb1_c00207{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00207{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m21_c00207{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00207{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00207{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m99_c00207{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m60_c00207{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m98_c00207{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00207{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me5_c00207{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00207{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00207{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00207{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m95_c00207{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00207{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00207{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00207{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m54_c00207{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me7_c00207{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00207{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00207{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md3_c00207{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00207{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m91_c00207{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m74_c00207{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md6_c00207{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00207{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00207{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.me0_c00207{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mec_c00207{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00207{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m2_c00207{transform:matrix(0.508500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508500,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls0_c00207{letter-spacing:0.000000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{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__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00207{word-spacing:-12.750000px;}
.ws2_c00207{word-spacing:-10.104294px;}
.ws5_c00207{word-spacing:-9.652921px;}
.ws8_c00207{word-spacing:0.000000px;}
.ws1_c00207{word-spacing:3.374570px;}
.ws3_c00207{word-spacing:5.363636px;}
.ws7_c00207{word-spacing:7.297297px;}
.ws0_c00207{word-spacing:14.838710px;}
.ws6_c00207{word-spacing:15.157895px;}
.fc0_c00207{color:transparent;}
.fs5_c00207{font-size:54.000000px;}
.fs4_c00207{font-size:60.000000px;}
.fs3_c00207{font-size:66.000000px;}
.fs2_c00207{font-size:72.000000px;}
.fs1_c00207{font-size:78.000000px;}
.fs0_c00207{font-size:90.000000px;}
.y0_c00207{bottom:0.000000px;}
.y67_c00207{bottom:181.050000px;}
.y65_c00207{bottom:199.950000px;}
.y66_c00207{bottom:202.650000px;}
.y64_c00207{bottom:217.950000px;}
.y32_c00207{bottom:229.650000px;}
.y63_c00207{bottom:235.650000px;}
.y31_c00207{bottom:247.650000px;}
.y62_c00207{bottom:253.350000px;}
.y30_c00207{bottom:264.900000px;}
.y61_c00207{bottom:271.050000px;}
.y2f_c00207{bottom:282.900000px;}
.y60_c00207{bottom:289.050000px;}
.y2e_c00207{bottom:300.600000px;}
.y5f_c00207{bottom:310.800000px;}
.y5e_c00207{bottom:328.500000px;}
.y2d_c00207{bottom:331.500000px;}
.y5d_c00207{bottom:346.800000px;}
.y2c_c00207{bottom:349.200000px;}
.y5c_c00207{bottom:364.050000px;}
.y2b_c00207{bottom:366.900000px;}
.y5b_c00207{bottom:382.050000px;}
.y2a_c00207{bottom:384.900000px;}
.y5a_c00207{bottom:400.050000px;}
.y29_c00207{bottom:411.000000px;}
.y59_c00207{bottom:418.050000px;}
.y28_c00207{bottom:429.000000px;}
.y58_c00207{bottom:435.750000px;}
.y27_c00207{bottom:447.000000px;}
.y57_c00207{bottom:453.450000px;}
.y26_c00207{bottom:465.000000px;}
.y56_c00207{bottom:471.150000px;}
.y25_c00207{bottom:482.700000px;}
.y55_c00207{bottom:488.850000px;}
.y24_c00207{bottom:500.400000px;}
.y54_c00207{bottom:510.750000px;}
.y23_c00207{bottom:518.400000px;}
.y53_c00207{bottom:528.750000px;}
.y22_c00207{bottom:536.400000px;}
.y52_c00207{bottom:546.450000px;}
.y21_c00207{bottom:554.100000px;}
.y51_c00207{bottom:564.150000px;}
.y20_c00207{bottom:580.500000px;}
.y50_c00207{bottom:582.150000px;}
.y1f_c00207{bottom:598.200000px;}
.y4f_c00207{bottom:604.050000px;}
.y1e_c00207{bottom:616.200000px;}
.y4e_c00207{bottom:622.050000px;}
.y1d_c00207{bottom:633.900000px;}
.y4d_c00207{bottom:639.600000px;}
.y1c_c00207{bottom:656.100000px;}
.y4c_c00207{bottom:657.600000px;}
.y1b_c00207{bottom:674.100000px;}
.y4b_c00207{bottom:675.300000px;}
.y1a_c00207{bottom:691.800000px;}
.y4a_c00207{bottom:693.300000px;}
.y19_c00207{bottom:709.800000px;}
.y49_c00207{bottom:715.500000px;}
.y18_c00207{bottom:727.500000px;}
.y48_c00207{bottom:733.200000px;}
.y17_c00207{bottom:745.500000px;}
.y47_c00207{bottom:751.200000px;}
.y16_c00207{bottom:763.500000px;}
.y46_c00207{bottom:768.900000px;}
.y15_c00207{bottom:781.200000px;}
.y45_c00207{bottom:786.600000px;}
.y14_c00207{bottom:799.200000px;}
.y44_c00207{bottom:804.300000px;}
.y13_c00207{bottom:816.900000px;}
.y43_c00207{bottom:822.300000px;}
.y12_c00207{bottom:834.900000px;}
.y42_c00207{bottom:844.500000px;}
.y11_c00207{bottom:856.800000px;}
.y41_c00207{bottom:862.500000px;}
.y10_c00207{bottom:874.800000px;}
.y40_c00207{bottom:880.200000px;}
.yf_c00207{bottom:892.500000px;}
.y3f_c00207{bottom:898.200000px;}
.ye_c00207{bottom:910.500000px;}
.y3e_c00207{bottom:915.900000px;}
.yd_c00207{bottom:932.550000px;}
.y3d_c00207{bottom:942.150000px;}
.yc_c00207{bottom:950.550000px;}
.y3c_c00207{bottom:959.850000px;}
.yb_c00207{bottom:968.850000px;}
.y3b_c00207{bottom:977.550000px;}
.ya_c00207{bottom:986.100000px;}
.y3a_c00207{bottom:995.550000px;}
.y9_c00207{bottom:1004.100000px;}
.y39_c00207{bottom:1012.800000px;}
.y8_c00207{bottom:1026.000000px;}
.y38_c00207{bottom:1030.800000px;}
.y7_c00207{bottom:1044.000000px;}
.y37_c00207{bottom:1048.500000px;}
.y6_c00207{bottom:1062.000000px;}
.y36_c00207{bottom:1066.200000px;}
.y5_c00207{bottom:1083.900000px;}
.y35_c00207{bottom:1084.950000px;}
.y34_c00207{bottom:1101.900000px;}
.y4_c00207{bottom:1102.200000px;}
.y33_c00207{bottom:1119.600000px;}
.y3_c00207{bottom:1119.900000px;}
.y2_c00207{bottom:1146.150000px;}
.y1_c00207{bottom:1146.900000px;}
.h7_c00207{height:54.000000px;}
.h6_c00207{height:60.000000px;}
.h5_c00207{height:66.000000px;}
.h4_c00207{height:72.000000px;}
.h3_c00207{height:78.000000px;}
.h2_c00207{height:90.000000px;}
.h1_c00207{height:1276.500000px;}
.h0_c00207{height:1276.559967px;}
.w1_c00207{width:963.000000px;}
.w0_c00207{width:963.359985px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:190.800000px;}
.x79_c00207{left:192.300000px;}
.x2_c00207{left:203.100000px;}
.x7d_c00207{left:209.550000px;}
.x4_c00207{left:210.900000px;}
.x15_c00207{left:211.950000px;}
.x94_c00207{left:218.550000px;}
.x16_c00207{left:224.850000px;}
.xd_c00207{left:226.800000px;}
.x5_c00207{left:228.150000px;}
.x84_c00207{left:232.800000px;}
.x92_c00207{left:235.800000px;}
.x82_c00207{left:237.150000px;}
.x8b_c00207{left:239.400000px;}
.x35_c00207{left:245.100000px;}
.x18_c00207{left:246.900000px;}
.x95_c00207{left:248.100000px;}
.x3d_c00207{left:250.950000px;}
.x80_c00207{left:252.300000px;}
.x7a_c00207{left:254.250000px;}
.x5e_c00207{left:255.450000px;}
.x23_c00207{left:260.250000px;}
.x8f_c00207{left:261.300000px;}
.x39_c00207{left:262.650000px;}
.x6_c00207{left:263.850000px;}
.x63_c00207{left:265.200000px;}
.x90_c00207{left:266.400000px;}
.x51_c00207{left:267.750000px;}
.x29_c00207{left:270.000000px;}
.x8e_c00207{left:271.500000px;}
.x68_c00207{left:272.550000px;}
.x1d_c00207{left:274.950000px;}
.x17_c00207{left:276.000000px;}
.xe_c00207{left:279.300000px;}
.x30_c00207{left:281.250000px;}
.x6b_c00207{left:282.450000px;}
.x7e_c00207{left:283.950000px;}
.x7_c00207{left:285.450000px;}
.x52_c00207{left:287.250000px;}
.x3e_c00207{left:289.050000px;}
.xf_c00207{left:290.100000px;}
.x61_c00207{left:292.200000px;}
.x75_c00207{left:293.700000px;}
.x69_c00207{left:296.250000px;}
.x6c_c00207{left:298.350000px;}
.x3a_c00207{left:300.450000px;}
.x2c_c00207{left:304.650000px;}
.x57_c00207{left:306.300000px;}
.x6a_c00207{left:308.100000px;}
.x31_c00207{left:309.750000px;}
.x9c_c00207{left:311.100000px;}
.x8_c00207{left:312.150000px;}
.x71_c00207{left:313.650000px;}
.x26_c00207{left:315.000000px;}
.x24_c00207{left:317.550000px;}
.x64_c00207{left:318.900000px;}
.x4c_c00207{left:320.100000px;}
.x53_c00207{left:321.150000px;}
.x10_c00207{left:323.550000px;}
.x58_c00207{left:327.600000px;}
.x1e_c00207{left:329.700000px;}
.x3f_c00207{left:330.750000px;}
.x44_c00207{left:332.100000px;}
.x19_c00207{left:334.350000px;}
.x11_c00207{left:336.150000px;}
.x27_c00207{left:337.650000px;}
.x25_c00207{left:339.450000px;}
.x9a_c00207{left:340.650000px;}
.x5b_c00207{left:344.250000px;}
.x98_c00207{left:346.650000px;}
.x40_c00207{left:349.050000px;}
.x62_c00207{left:355.500000px;}
.x32_c00207{left:356.550000px;}
.x83_c00207{left:358.350000px;}
.x54_c00207{left:360.000000px;}
.x74_c00207{left:361.350000px;}
.x9_c00207{left:362.850000px;}
.x3b_c00207{left:364.650000px;}
.x87_c00207{left:366.450000px;}
.x8c_c00207{left:368.700000px;}
.x4d_c00207{left:369.750000px;}
.x2d_c00207{left:370.950000px;}
.x2a_c00207{left:372.300000px;}
.x6d_c00207{left:373.650000px;}
.x5c_c00207{left:374.850000px;}
.x1f_c00207{left:377.250000px;}
.xa_c00207{left:379.050000px;}
.x65_c00207{left:381.600000px;}
.x47_c00207{left:383.250000px;}
.x8d_c00207{left:384.900000px;}
.x72_c00207{left:385.950000px;}
.x12_c00207{left:387.600000px;}
.x6e_c00207{left:389.100000px;}
.x28_c00207{left:390.600000px;}
.x36_c00207{left:392.100000px;}
.x2b_c00207{left:395.400000px;}
.x5f_c00207{left:397.200000px;}
.x7b_c00207{left:398.550000px;}
.x81_c00207{left:400.200000px;}
.x1a_c00207{left:404.550000px;}
.x66_c00207{left:407.850000px;}
.x6f_c00207{left:410.700000px;}
.x33_c00207{left:412.650000px;}
.x78_c00207{left:414.150000px;}
.x20_c00207{left:415.350000px;}
.x76_c00207{left:418.800000px;}
.x55_c00207{left:420.000000px;}
.x2e_c00207{left:422.100000px;}
.x48_c00207{left:424.350000px;}
.x7c_c00207{left:427.350000px;}
.x91_c00207{left:428.700000px;}
.xb_c00207{left:431.250000px;}
.x88_c00207{left:432.750000px;}
.x3_c00207{left:433.800000px;}
.x7f_c00207{left:435.150000px;}
.x4e_c00207{left:436.650000px;}
.x21_c00207{left:437.700000px;}
.xc_c00207{left:444.150000px;}
.x9b_c00207{left:445.350000px;}
.x41_c00207{left:446.550000px;}
.x13_c00207{left:447.750000px;}
.x2f_c00207{left:451.650000px;}
.x60_c00207{left:453.450000px;}
.x59_c00207{left:455.400000px;}
.x49_c00207{left:456.450000px;}
.x42_c00207{left:458.100000px;}
.x85_c00207{left:459.750000px;}
.x45_c00207{left:462.450000px;}
.x77_c00207{left:464.100000px;}
.x37_c00207{left:470.850000px;}
.x96_c00207{left:471.900000px;}
.x1b_c00207{left:473.700000px;}
.x14_c00207{left:474.750000px;}
.x4a_c00207{left:475.950000px;}
.x70_c00207{left:477.300000px;}
.x67_c00207{left:478.800000px;}
.x3c_c00207{left:480.300000px;}
.x46_c00207{left:482.550000px;}
.x4f_c00207{left:487.050000px;}
.x136_c00207{left:489.900000px;}
.x89_c00207{left:491.400000px;}
.x56_c00207{left:493.050000px;}
.x34_c00207{left:495.750000px;}
.x50_c00207{left:497.850000px;}
.x22_c00207{left:500.400000px;}
.x73_c00207{left:502.350000px;}
.x5a_c00207{left:503.700000px;}
.x99_c00207{left:505.500000px;}
.x5d_c00207{left:507.450000px;}
.x43_c00207{left:508.800000px;}
.x8a_c00207{left:512.700000px;}
.x38_c00207{left:514.350000px;}
.x1c_c00207{left:517.200000px;}
.x86_c00207{left:520.950000px;}
.x97_c00207{left:523.050000px;}
.x4b_c00207{left:524.250000px;}
.x93_c00207{left:534.900000px;}
.xb0_c00207{left:565.500000px;}
.x9d_c00207{left:566.700000px;}
.xec_c00207{left:581.550000px;}
.x112_c00207{left:582.900000px;}
.xdd_c00207{left:583.950000px;}
.xfd_c00207{left:585.600000px;}
.xe4_c00207{left:595.350000px;}
.xb6_c00207{left:598.650000px;}
.xa4_c00207{left:600.150000px;}
.x106_c00207{left:602.250000px;}
.xda_c00207{left:603.300000px;}
.xc6_c00207{left:604.950000px;}
.xde_c00207{left:607.350000px;}
.xb1_c00207{left:609.450000px;}
.xf0_c00207{left:611.550000px;}
.x10e_c00207{left:613.800000px;}
.x9e_c00207{left:615.600000px;}
.xd3_c00207{left:616.950000px;}
.xa5_c00207{left:618.900000px;}
.xdb_c00207{left:620.250000px;}
.xbf_c00207{left:621.600000px;}
.xf1_c00207{left:622.650000px;}
.xe7_c00207{left:623.850000px;}
.x116_c00207{left:625.650000px;}
.xab_c00207{left:627.150000px;}
.x109_c00207{left:628.350000px;}
.xc7_c00207{left:629.400000px;}
.x113_c00207{left:633.600000px;}
.x10f_c00207{left:634.650000px;}
.xf2_c00207{left:636.000000px;}
.xed_c00207{left:637.350000px;}
.x11a_c00207{left:640.050000px;}
.xfb_c00207{left:643.500000px;}
.x11e_c00207{left:646.050000px;}
.xc0_c00207{left:647.850000px;}
.xb7_c00207{left:649.350000px;}
.xc8_c00207{left:652.050000px;}
.x12c_c00207{left:654.600000px;}
.xa6_c00207{left:655.950000px;}
.xac_c00207{left:657.750000px;}
.x122_c00207{left:658.800000px;}
.x123_c00207{left:661.650000px;}
.x11c_c00207{left:662.700000px;}
.x100_c00207{left:664.650000px;}
.x12f_c00207{left:666.750000px;}
.x117_c00207{left:667.800000px;}
.xd8_c00207{left:668.850000px;}
.xdc_c00207{left:670.650000px;}
.x107_c00207{left:672.750000px;}
.x9f_c00207{left:674.250000px;}
.xe5_c00207{left:676.650000px;}
.x10a_c00207{left:678.450000px;}
.xb2_c00207{left:679.650000px;}
.xf3_c00207{left:682.500000px;}
.x118_c00207{left:684.750000px;}
.x130_c00207{left:686.400000px;}
.xcd_c00207{left:689.700000px;}
.xf4_c00207{left:691.800000px;}
.xc1_c00207{left:692.850000px;}
.xc9_c00207{left:695.550000px;}
.x101_c00207{left:700.350000px;}
.xce_c00207{left:702.300000px;}
.x11f_c00207{left:704.850000px;}
.xf7_c00207{left:705.900000px;}
.xb8_c00207{left:707.700000px;}
.xdf_c00207{left:709.650000px;}
.xe8_c00207{left:710.700000px;}
.x124_c00207{left:712.800000px;}
.xa7_c00207{left:714.600000px;}
.x12a_c00207{left:716.550000px;}
.xa0_c00207{left:717.750000px;}
.x102_c00207{left:721.200000px;}
.xe0_c00207{left:722.550000px;}
.x114_c00207{left:723.900000px;}
.xb3_c00207{left:726.450000px;}
.x110_c00207{left:727.500000px;}
.xb9_c00207{left:729.300000px;}
.xd4_c00207{left:731.400000px;}
.x127_c00207{left:732.600000px;}
.xa1_c00207{left:734.700000px;}
.x134_c00207{left:736.500000px;}
.xcf_c00207{left:738.600000px;}
.xad_c00207{left:740.100000px;}
.x11b_c00207{left:741.600000px;}
.xca_c00207{left:743.100000px;}
.x119_c00207{left:744.750000px;}
.xf8_c00207{left:747.600000px;}
.xc2_c00207{left:750.750000px;}
.xa8_c00207{left:753.150000px;}
.x11d_c00207{left:754.350000px;}
.x105_c00207{left:755.700000px;}
.xd5_c00207{left:757.350000px;}
.x12b_c00207{left:759.000000px;}
.xf5_c00207{left:762.000000px;}
.x10b_c00207{left:763.800000px;}
.xcb_c00207{left:765.000000px;}
.x131_c00207{left:767.850000px;}
.xd0_c00207{left:769.200000px;}
.x129_c00207{left:770.400000px;}
.x108_c00207{left:772.050000px;}
.xc3_c00207{left:774.900000px;}
.xba_c00207{left:776.100000px;}
.x103_c00207{left:778.050000px;}
.x12d_c00207{left:779.100000px;}
.xe1_c00207{left:780.450000px;}
.xfe_c00207{left:781.800000px;}
.x10c_c00207{left:783.300000px;}
.x120_c00207{left:785.550000px;}
.xbb_c00207{left:786.900000px;}
.xe6_c00207{left:788.700000px;}
.x128_c00207{left:789.900000px;}
.xa9_c00207{left:791.250000px;}
.xe9_c00207{left:795.750000px;}
.x135_c00207{left:797.850000px;}
.xb4_c00207{left:799.950000px;}
.x12e_c00207{left:801.750000px;}
.xf9_c00207{left:803.700000px;}
.x132_c00207{left:805.950000px;}
.x10d_c00207{left:807.750000px;}
.xbc_c00207{left:810.600000px;}
.xa2_c00207{left:813.900000px;}
.xd1_c00207{left:816.000000px;}
.xd6_c00207{left:817.800000px;}
.xe2_c00207{left:819.000000px;}
.xd9_c00207{left:821.700000px;}
.xfc_c00207{left:823.800000px;}
.xae_c00207{left:825.750000px;}
.xbd_c00207{left:826.800000px;}
.xf6_c00207{left:827.850000px;}
.xb5_c00207{left:829.050000px;}
.xfa_c00207{left:832.200000px;}
.xee_c00207{left:834.000000px;}
.xff_c00207{left:836.850000px;}
.xea_c00207{left:838.950000px;}
.xc4_c00207{left:841.050000px;}
.x125_c00207{left:842.400000px;}
.xaa_c00207{left:843.750000px;}
.x115_c00207{left:845.250000px;}
.xaf_c00207{left:847.050000px;}
.x111_c00207{left:848.100000px;}
.xd7_c00207{left:850.200000px;}
.xeb_c00207{left:851.550000px;}
.x121_c00207{left:853.050000px;}
.x126_c00207{left:854.250000px;}
.xef_c00207{left:856.350000px;}
.xbe_c00207{left:857.400000px;}
.xc5_c00207{left:858.750000px;}
.x133_c00207{left:859.950000px;}
.xcc_c00207{left:861.000000px;}
.x104_c00207{left:863.250000px;}
.xa3_c00207{left:865.800000px;}
.xd2_c00207{left:867.900000px;}
.xe3_c00207{left:873.000000px;}
.x137_c00207{left:880.800000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws4_c00207{word-spacing:-11.333333pt;}
.ws2_c00207{word-spacing:-8.981595pt;}
.ws5_c00207{word-spacing:-8.580374pt;}
.ws8_c00207{word-spacing:0.000000pt;}
.ws1_c00207{word-spacing:2.999618pt;}
.ws3_c00207{word-spacing:4.767677pt;}
.ws7_c00207{word-spacing:6.486486pt;}
.ws0_c00207{word-spacing:13.189964pt;}
.ws6_c00207{word-spacing:13.473684pt;}
.fs5_c00207{font-size:48.000000pt;}
.fs4_c00207{font-size:53.333333pt;}
.fs3_c00207{font-size:58.666667pt;}
.fs2_c00207{font-size:64.000000pt;}
.fs1_c00207{font-size:69.333333pt;}
.fs0_c00207{font-size:80.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y67_c00207{bottom:160.933333pt;}
.y65_c00207{bottom:177.733333pt;}
.y66_c00207{bottom:180.133333pt;}
.y64_c00207{bottom:193.733333pt;}
.y32_c00207{bottom:204.133333pt;}
.y63_c00207{bottom:209.466667pt;}
.y31_c00207{bottom:220.133333pt;}
.y62_c00207{bottom:225.200000pt;}
.y30_c00207{bottom:235.466667pt;}
.y61_c00207{bottom:240.933333pt;}
.y2f_c00207{bottom:251.466667pt;}
.y60_c00207{bottom:256.933333pt;}
.y2e_c00207{bottom:267.200000pt;}
.y5f_c00207{bottom:276.266667pt;}
.y5e_c00207{bottom:292.000000pt;}
.y2d_c00207{bottom:294.666667pt;}
.y5d_c00207{bottom:308.266667pt;}
.y2c_c00207{bottom:310.400000pt;}
.y5c_c00207{bottom:323.600000pt;}
.y2b_c00207{bottom:326.133333pt;}
.y5b_c00207{bottom:339.600000pt;}
.y2a_c00207{bottom:342.133333pt;}
.y5a_c00207{bottom:355.600000pt;}
.y29_c00207{bottom:365.333333pt;}
.y59_c00207{bottom:371.600000pt;}
.y28_c00207{bottom:381.333333pt;}
.y58_c00207{bottom:387.333333pt;}
.y27_c00207{bottom:397.333333pt;}
.y57_c00207{bottom:403.066667pt;}
.y26_c00207{bottom:413.333333pt;}
.y56_c00207{bottom:418.800000pt;}
.y25_c00207{bottom:429.066667pt;}
.y55_c00207{bottom:434.533333pt;}
.y24_c00207{bottom:444.800000pt;}
.y54_c00207{bottom:454.000000pt;}
.y23_c00207{bottom:460.800000pt;}
.y53_c00207{bottom:470.000000pt;}
.y22_c00207{bottom:476.800000pt;}
.y52_c00207{bottom:485.733333pt;}
.y21_c00207{bottom:492.533333pt;}
.y51_c00207{bottom:501.466667pt;}
.y20_c00207{bottom:516.000000pt;}
.y50_c00207{bottom:517.466667pt;}
.y1f_c00207{bottom:531.733333pt;}
.y4f_c00207{bottom:536.933333pt;}
.y1e_c00207{bottom:547.733333pt;}
.y4e_c00207{bottom:552.933333pt;}
.y1d_c00207{bottom:563.466667pt;}
.y4d_c00207{bottom:568.533333pt;}
.y1c_c00207{bottom:583.200000pt;}
.y4c_c00207{bottom:584.533333pt;}
.y1b_c00207{bottom:599.200000pt;}
.y4b_c00207{bottom:600.266667pt;}
.y1a_c00207{bottom:614.933333pt;}
.y4a_c00207{bottom:616.266667pt;}
.y19_c00207{bottom:630.933333pt;}
.y49_c00207{bottom:636.000000pt;}
.y18_c00207{bottom:646.666667pt;}
.y48_c00207{bottom:651.733333pt;}
.y17_c00207{bottom:662.666667pt;}
.y47_c00207{bottom:667.733333pt;}
.y16_c00207{bottom:678.666667pt;}
.y46_c00207{bottom:683.466667pt;}
.y15_c00207{bottom:694.400000pt;}
.y45_c00207{bottom:699.200000pt;}
.y14_c00207{bottom:710.400000pt;}
.y44_c00207{bottom:714.933333pt;}
.y13_c00207{bottom:726.133333pt;}
.y43_c00207{bottom:730.933333pt;}
.y12_c00207{bottom:742.133333pt;}
.y42_c00207{bottom:750.666667pt;}
.y11_c00207{bottom:761.600000pt;}
.y41_c00207{bottom:766.666667pt;}
.y10_c00207{bottom:777.600000pt;}
.y40_c00207{bottom:782.400000pt;}
.yf_c00207{bottom:793.333333pt;}
.y3f_c00207{bottom:798.400000pt;}
.ye_c00207{bottom:809.333333pt;}
.y3e_c00207{bottom:814.133333pt;}
.yd_c00207{bottom:828.933333pt;}
.y3d_c00207{bottom:837.466667pt;}
.yc_c00207{bottom:844.933333pt;}
.y3c_c00207{bottom:853.200000pt;}
.yb_c00207{bottom:861.200000pt;}
.y3b_c00207{bottom:868.933333pt;}
.ya_c00207{bottom:876.533333pt;}
.y3a_c00207{bottom:884.933333pt;}
.y9_c00207{bottom:892.533333pt;}
.y39_c00207{bottom:900.266667pt;}
.y8_c00207{bottom:912.000000pt;}
.y38_c00207{bottom:916.266667pt;}
.y7_c00207{bottom:928.000000pt;}
.y37_c00207{bottom:932.000000pt;}
.y6_c00207{bottom:944.000000pt;}
.y36_c00207{bottom:947.733333pt;}
.y5_c00207{bottom:963.466667pt;}
.y35_c00207{bottom:964.400000pt;}
.y34_c00207{bottom:979.466667pt;}
.y4_c00207{bottom:979.733333pt;}
.y33_c00207{bottom:995.200000pt;}
.y3_c00207{bottom:995.466667pt;}
.y2_c00207{bottom:1018.800000pt;}
.y1_c00207{bottom:1019.466667pt;}
.h7_c00207{height:48.000000pt;}
.h6_c00207{height:53.333333pt;}
.h5_c00207{height:58.666667pt;}
.h4_c00207{height:64.000000pt;}
.h3_c00207{height:69.333333pt;}
.h2_c00207{height:80.000000pt;}
.h1_c00207{height:1134.666667pt;}
.h0_c00207{height:1134.719971pt;}
.w1_c00207{width:856.000000pt;}
.w0_c00207{width:856.319987pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:169.600000pt;}
.x79_c00207{left:170.933333pt;}
.x2_c00207{left:180.533333pt;}
.x7d_c00207{left:186.266667pt;}
.x4_c00207{left:187.466667pt;}
.x15_c00207{left:188.400000pt;}
.x94_c00207{left:194.266667pt;}
.x16_c00207{left:199.866667pt;}
.xd_c00207{left:201.600000pt;}
.x5_c00207{left:202.800000pt;}
.x84_c00207{left:206.933333pt;}
.x92_c00207{left:209.600000pt;}
.x82_c00207{left:210.800000pt;}
.x8b_c00207{left:212.800000pt;}
.x35_c00207{left:217.866667pt;}
.x18_c00207{left:219.466667pt;}
.x95_c00207{left:220.533333pt;}
.x3d_c00207{left:223.066667pt;}
.x80_c00207{left:224.266667pt;}
.x7a_c00207{left:226.000000pt;}
.x5e_c00207{left:227.066667pt;}
.x23_c00207{left:231.333333pt;}
.x8f_c00207{left:232.266667pt;}
.x39_c00207{left:233.466667pt;}
.x6_c00207{left:234.533333pt;}
.x63_c00207{left:235.733333pt;}
.x90_c00207{left:236.800000pt;}
.x51_c00207{left:238.000000pt;}
.x29_c00207{left:240.000000pt;}
.x8e_c00207{left:241.333333pt;}
.x68_c00207{left:242.266667pt;}
.x1d_c00207{left:244.400000pt;}
.x17_c00207{left:245.333333pt;}
.xe_c00207{left:248.266667pt;}
.x30_c00207{left:250.000000pt;}
.x6b_c00207{left:251.066667pt;}
.x7e_c00207{left:252.400000pt;}
.x7_c00207{left:253.733333pt;}
.x52_c00207{left:255.333333pt;}
.x3e_c00207{left:256.933333pt;}
.xf_c00207{left:257.866667pt;}
.x61_c00207{left:259.733333pt;}
.x75_c00207{left:261.066667pt;}
.x69_c00207{left:263.333333pt;}
.x6c_c00207{left:265.200000pt;}
.x3a_c00207{left:267.066667pt;}
.x2c_c00207{left:270.800000pt;}
.x57_c00207{left:272.266667pt;}
.x6a_c00207{left:273.866667pt;}
.x31_c00207{left:275.333333pt;}
.x9c_c00207{left:276.533333pt;}
.x8_c00207{left:277.466667pt;}
.x71_c00207{left:278.800000pt;}
.x26_c00207{left:280.000000pt;}
.x24_c00207{left:282.266667pt;}
.x64_c00207{left:283.466667pt;}
.x4c_c00207{left:284.533333pt;}
.x53_c00207{left:285.466667pt;}
.x10_c00207{left:287.600000pt;}
.x58_c00207{left:291.200000pt;}
.x1e_c00207{left:293.066667pt;}
.x3f_c00207{left:294.000000pt;}
.x44_c00207{left:295.200000pt;}
.x19_c00207{left:297.200000pt;}
.x11_c00207{left:298.800000pt;}
.x27_c00207{left:300.133333pt;}
.x25_c00207{left:301.733333pt;}
.x9a_c00207{left:302.800000pt;}
.x5b_c00207{left:306.000000pt;}
.x98_c00207{left:308.133333pt;}
.x40_c00207{left:310.266667pt;}
.x62_c00207{left:316.000000pt;}
.x32_c00207{left:316.933333pt;}
.x83_c00207{left:318.533333pt;}
.x54_c00207{left:320.000000pt;}
.x74_c00207{left:321.200000pt;}
.x9_c00207{left:322.533333pt;}
.x3b_c00207{left:324.133333pt;}
.x87_c00207{left:325.733333pt;}
.x8c_c00207{left:327.733333pt;}
.x4d_c00207{left:328.666667pt;}
.x2d_c00207{left:329.733333pt;}
.x2a_c00207{left:330.933333pt;}
.x6d_c00207{left:332.133333pt;}
.x5c_c00207{left:333.200000pt;}
.x1f_c00207{left:335.333333pt;}
.xa_c00207{left:336.933333pt;}
.x65_c00207{left:339.200000pt;}
.x47_c00207{left:340.666667pt;}
.x8d_c00207{left:342.133333pt;}
.x72_c00207{left:343.066667pt;}
.x12_c00207{left:344.533333pt;}
.x6e_c00207{left:345.866667pt;}
.x28_c00207{left:347.200000pt;}
.x36_c00207{left:348.533333pt;}
.x2b_c00207{left:351.466667pt;}
.x5f_c00207{left:353.066667pt;}
.x7b_c00207{left:354.266667pt;}
.x81_c00207{left:355.733333pt;}
.x1a_c00207{left:359.600000pt;}
.x66_c00207{left:362.533333pt;}
.x6f_c00207{left:365.066667pt;}
.x33_c00207{left:366.800000pt;}
.x78_c00207{left:368.133333pt;}
.x20_c00207{left:369.200000pt;}
.x76_c00207{left:372.266667pt;}
.x55_c00207{left:373.333333pt;}
.x2e_c00207{left:375.200000pt;}
.x48_c00207{left:377.200000pt;}
.x7c_c00207{left:379.866667pt;}
.x91_c00207{left:381.066667pt;}
.xb_c00207{left:383.333333pt;}
.x88_c00207{left:384.666667pt;}
.x3_c00207{left:385.600000pt;}
.x7f_c00207{left:386.800000pt;}
.x4e_c00207{left:388.133333pt;}
.x21_c00207{left:389.066667pt;}
.xc_c00207{left:394.800000pt;}
.x9b_c00207{left:395.866667pt;}
.x41_c00207{left:396.933333pt;}
.x13_c00207{left:398.000000pt;}
.x2f_c00207{left:401.466667pt;}
.x60_c00207{left:403.066667pt;}
.x59_c00207{left:404.800000pt;}
.x49_c00207{left:405.733333pt;}
.x42_c00207{left:407.200000pt;}
.x85_c00207{left:408.666667pt;}
.x45_c00207{left:411.066667pt;}
.x77_c00207{left:412.533333pt;}
.x37_c00207{left:418.533333pt;}
.x96_c00207{left:419.466667pt;}
.x1b_c00207{left:421.066667pt;}
.x14_c00207{left:422.000000pt;}
.x4a_c00207{left:423.066667pt;}
.x70_c00207{left:424.266667pt;}
.x67_c00207{left:425.600000pt;}
.x3c_c00207{left:426.933333pt;}
.x46_c00207{left:428.933333pt;}
.x4f_c00207{left:432.933333pt;}
.x136_c00207{left:435.466667pt;}
.x89_c00207{left:436.800000pt;}
.x56_c00207{left:438.266667pt;}
.x34_c00207{left:440.666667pt;}
.x50_c00207{left:442.533333pt;}
.x22_c00207{left:444.800000pt;}
.x73_c00207{left:446.533333pt;}
.x5a_c00207{left:447.733333pt;}
.x99_c00207{left:449.333333pt;}
.x5d_c00207{left:451.066667pt;}
.x43_c00207{left:452.266667pt;}
.x8a_c00207{left:455.733333pt;}
.x38_c00207{left:457.200000pt;}
.x1c_c00207{left:459.733333pt;}
.x86_c00207{left:463.066667pt;}
.x97_c00207{left:464.933333pt;}
.x4b_c00207{left:466.000000pt;}
.x93_c00207{left:475.466667pt;}
.xb0_c00207{left:502.666667pt;}
.x9d_c00207{left:503.733333pt;}
.xec_c00207{left:516.933333pt;}
.x112_c00207{left:518.133333pt;}
.xdd_c00207{left:519.066667pt;}
.xfd_c00207{left:520.533333pt;}
.xe4_c00207{left:529.200000pt;}
.xb6_c00207{left:532.133333pt;}
.xa4_c00207{left:533.466667pt;}
.x106_c00207{left:535.333333pt;}
.xda_c00207{left:536.266667pt;}
.xc6_c00207{left:537.733333pt;}
.xde_c00207{left:539.866667pt;}
.xb1_c00207{left:541.733333pt;}
.xf0_c00207{left:543.600000pt;}
.x10e_c00207{left:545.600000pt;}
.x9e_c00207{left:547.200000pt;}
.xd3_c00207{left:548.400000pt;}
.xa5_c00207{left:550.133333pt;}
.xdb_c00207{left:551.333333pt;}
.xbf_c00207{left:552.533333pt;}
.xf1_c00207{left:553.466667pt;}
.xe7_c00207{left:554.533333pt;}
.x116_c00207{left:556.133333pt;}
.xab_c00207{left:557.466667pt;}
.x109_c00207{left:558.533333pt;}
.xc7_c00207{left:559.466667pt;}
.x113_c00207{left:563.200000pt;}
.x10f_c00207{left:564.133333pt;}
.xf2_c00207{left:565.333333pt;}
.xed_c00207{left:566.533333pt;}
.x11a_c00207{left:568.933333pt;}
.xfb_c00207{left:572.000000pt;}
.x11e_c00207{left:574.266667pt;}
.xc0_c00207{left:575.866667pt;}
.xb7_c00207{left:577.200000pt;}
.xc8_c00207{left:579.600000pt;}
.x12c_c00207{left:581.866667pt;}
.xa6_c00207{left:583.066667pt;}
.xac_c00207{left:584.666667pt;}
.x122_c00207{left:585.600000pt;}
.x123_c00207{left:588.133333pt;}
.x11c_c00207{left:589.066667pt;}
.x100_c00207{left:590.800000pt;}
.x12f_c00207{left:592.666667pt;}
.x117_c00207{left:593.600000pt;}
.xd8_c00207{left:594.533333pt;}
.xdc_c00207{left:596.133333pt;}
.x107_c00207{left:598.000000pt;}
.x9f_c00207{left:599.333333pt;}
.xe5_c00207{left:601.466667pt;}
.x10a_c00207{left:603.066667pt;}
.xb2_c00207{left:604.133333pt;}
.xf3_c00207{left:606.666667pt;}
.x118_c00207{left:608.666667pt;}
.x130_c00207{left:610.133333pt;}
.xcd_c00207{left:613.066667pt;}
.xf4_c00207{left:614.933333pt;}
.xc1_c00207{left:615.866667pt;}
.xc9_c00207{left:618.266667pt;}
.x101_c00207{left:622.533333pt;}
.xce_c00207{left:624.266667pt;}
.x11f_c00207{left:626.533333pt;}
.xf7_c00207{left:627.466667pt;}
.xb8_c00207{left:629.066667pt;}
.xdf_c00207{left:630.800000pt;}
.xe8_c00207{left:631.733333pt;}
.x124_c00207{left:633.600000pt;}
.xa7_c00207{left:635.200000pt;}
.x12a_c00207{left:636.933333pt;}
.xa0_c00207{left:638.000000pt;}
.x102_c00207{left:641.066667pt;}
.xe0_c00207{left:642.266667pt;}
.x114_c00207{left:643.466667pt;}
.xb3_c00207{left:645.733333pt;}
.x110_c00207{left:646.666667pt;}
.xb9_c00207{left:648.266667pt;}
.xd4_c00207{left:650.133333pt;}
.x127_c00207{left:651.200000pt;}
.xa1_c00207{left:653.066667pt;}
.x134_c00207{left:654.666667pt;}
.xcf_c00207{left:656.533333pt;}
.xad_c00207{left:657.866667pt;}
.x11b_c00207{left:659.200000pt;}
.xca_c00207{left:660.533333pt;}
.x119_c00207{left:662.000000pt;}
.xf8_c00207{left:664.533333pt;}
.xc2_c00207{left:667.333333pt;}
.xa8_c00207{left:669.466667pt;}
.x11d_c00207{left:670.533333pt;}
.x105_c00207{left:671.733333pt;}
.xd5_c00207{left:673.200000pt;}
.x12b_c00207{left:674.666667pt;}
.xf5_c00207{left:677.333333pt;}
.x10b_c00207{left:678.933333pt;}
.xcb_c00207{left:680.000000pt;}
.x131_c00207{left:682.533333pt;}
.xd0_c00207{left:683.733333pt;}
.x129_c00207{left:684.800000pt;}
.x108_c00207{left:686.266667pt;}
.xc3_c00207{left:688.800000pt;}
.xba_c00207{left:689.866667pt;}
.x103_c00207{left:691.600000pt;}
.x12d_c00207{left:692.533333pt;}
.xe1_c00207{left:693.733333pt;}
.xfe_c00207{left:694.933333pt;}
.x10c_c00207{left:696.266667pt;}
.x120_c00207{left:698.266667pt;}
.xbb_c00207{left:699.466667pt;}
.xe6_c00207{left:701.066667pt;}
.x128_c00207{left:702.133333pt;}
.xa9_c00207{left:703.333333pt;}
.xe9_c00207{left:707.333333pt;}
.x135_c00207{left:709.200000pt;}
.xb4_c00207{left:711.066667pt;}
.x12e_c00207{left:712.666667pt;}
.xf9_c00207{left:714.400000pt;}
.x132_c00207{left:716.400000pt;}
.x10d_c00207{left:718.000000pt;}
.xbc_c00207{left:720.533333pt;}
.xa2_c00207{left:723.466667pt;}
.xd1_c00207{left:725.333333pt;}
.xd6_c00207{left:726.933333pt;}
.xe2_c00207{left:728.000000pt;}
.xd9_c00207{left:730.400000pt;}
.xfc_c00207{left:732.266667pt;}
.xae_c00207{left:734.000000pt;}
.xbd_c00207{left:734.933333pt;}
.xf6_c00207{left:735.866667pt;}
.xb5_c00207{left:736.933333pt;}
.xfa_c00207{left:739.733333pt;}
.xee_c00207{left:741.333333pt;}
.xff_c00207{left:743.866667pt;}
.xea_c00207{left:745.733333pt;}
.xc4_c00207{left:747.600000pt;}
.x125_c00207{left:748.800000pt;}
.xaa_c00207{left:750.000000pt;}
.x115_c00207{left:751.333333pt;}
.xaf_c00207{left:752.933333pt;}
.x111_c00207{left:753.866667pt;}
.xd7_c00207{left:755.733333pt;}
.xeb_c00207{left:756.933333pt;}
.x121_c00207{left:758.266667pt;}
.x126_c00207{left:759.333333pt;}
.xef_c00207{left:761.200000pt;}
.xbe_c00207{left:762.133333pt;}
.xc5_c00207{left:763.333333pt;}
.x133_c00207{left:764.400000pt;}
.xcc_c00207{left:765.333333pt;}
.x104_c00207{left:767.333333pt;}
.xa3_c00207{left:769.600000pt;}
.xd2_c00207{left:771.466667pt;}
.xe3_c00207{left:776.000000pt;}
.x137_c00207{left:782.933333pt;}
}





/* 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_c00208 {
    display:none;
  }
  .loading-indicator_c00208.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00208 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_c00208 { 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_c00208" -> "#page-container .classname_c00208")
 */
.pf_c00208 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00208 { /* 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_c00208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00208 { /* 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_c00208 { /* 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_c00208 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00208 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00208 {overflow:visible;}
  }
}
.c_c00208 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00208 { /* 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_c00208:after { /* webkit #35443 */
  content: '';
}
.t_c00208:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00208 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 */
}
.__c00208 { /* 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_c00208 { /* info for Javascript */
  display:none;
}
.l_c00208 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00208 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00208 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00208: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_c00208 {
    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_c00208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00208.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_c00208 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00208;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.000000;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;}
.m2a_c00208{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00208{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00208{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00208{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m13_c00208{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m72_c00208{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00208{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mde_c00208{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00208{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m117_c00208{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m112_c00208{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7_c00208{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.maa_c00208{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mad_c00208{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00208{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m57_c00208{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00208{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00208{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m36_c00208{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m101_c00208{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m58_c00208{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00208{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00208{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mab_c00208{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00208{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00208{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00208{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.me2_c00208{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00208{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mac_c00208{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00208{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00208{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00208{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mce_c00208{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00208{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mca_c00208{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m73_c00208{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m102_c00208{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00208{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m29_c00208{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.me5_c00208{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m85_c00208{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m9_c00208{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00208{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00208{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00208{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m93_c00208{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me6_c00208{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m12_c00208{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m103_c00208{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00208{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m90_c00208{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me1_c00208{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00208{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00208{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.me_c00208{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00208{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00208{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00208{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00208{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me7_c00208{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m81_c00208{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.me3_c00208{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00208{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00208{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00208{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00208{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00208{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00208{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m98_c00208{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m47_c00208{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m84_c00208{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me0_c00208{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00208{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mec_c00208{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00208{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m94_c00208{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mb_c00208{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m111_c00208{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.maf_c00208{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.meb_c00208{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m55_c00208{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.md2_c00208{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1_c00208{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mff_c00208{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00208{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m8_c00208{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00208{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00208{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m11_c00208{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mba_c00208{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00208{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m76_c00208{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m22_c00208{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m40_c00208{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00208{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m77_c00208{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00208{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m48_c00208{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m99_c00208{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m45_c00208{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00208{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00208{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00208{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m78_c00208{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00208{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00208{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00208{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00208{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma_c00208{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m53_c00208{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00208{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m17_c00208{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00208{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m61_c00208{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m75_c00208{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m37_c00208{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md5_c00208{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00208{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m62_c00208{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00208{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00208{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00208{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m80_c00208{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m35_c00208{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m86_c00208{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.md6_c00208{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m49_c00208{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m27_c00208{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00208{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00208{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m115_c00208{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00208{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m105_c00208{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00208{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m19_c00208{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00208{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m24_c00208{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00208{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m32_c00208{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc_c00208{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m28_c00208{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00208{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m113_c00208{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m25_c00208{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00208{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00208{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00208{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m68_c00208{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m54_c00208{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md3_c00208{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m34_c00208{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m83_c00208{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m43_c00208{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00208{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m87_c00208{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00208{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00208{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00208{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m96_c00208{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00208{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00208{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m89_c00208{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6_c00208{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m88_c00208{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00208{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00208{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00208{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m52_c00208{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00208{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00208{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m50_c00208{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m44_c00208{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m46_c00208{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00208{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m23_c00208{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m74_c00208{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00208{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m10_c00208{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m33_c00208{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md8_c00208{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m42_c00208{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00208{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00208{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m92_c00208{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00208{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00208{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m82_c00208{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00208{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00208{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00208{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md_c00208{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00208{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00208{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me8_c00208{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m30_c00208{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00208{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00208{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m79_c00208{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m15_c00208{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m66_c00208{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00208{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00208{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m39_c00208{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00208{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m108_c00208{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m110_c00208{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m31_c00208{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00208{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m26_c00208{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m67_c00208{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m69_c00208{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00208{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m114_c00208{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00208{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.me9_c00208{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m51_c00208{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m91_c00208{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m100_c00208{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00208{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m97_c00208{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m116_c00208{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00208{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m38_c00208{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00208{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00208{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00208{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00208{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00208{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m104_c00208{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m70_c00208{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.md4_c00208{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md9_c00208{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);}
.m106_c00208{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00208{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m16_c00208{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00208{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00208{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00208{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m21_c00208{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me4_c00208{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m60_c00208{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m18_c00208{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m71_c00208{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m95_c00208{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m65_c00208{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00208{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00208{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m63_c00208{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.md7_c00208{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mef_c00208{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00208{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mae_c00208{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00208{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m59_c00208{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00208{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00208{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00208{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m14_c00208{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m107_c00208{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m64_c00208{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.md0_c00208{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00208{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m56_c00208{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m41_c00208{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md1_c00208{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mea_c00208{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m109_c00208{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.med_c00208{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00208{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m20_c00208{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mda_c00208{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00208{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mee_c00208{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls0_c00208{letter-spacing:0.000000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{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__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00208{word-spacing:-3.437500px;}
.ws0_c00208{word-spacing:-2.837838px;}
.ws6_c00208{word-spacing:0.000000px;}
.ws4_c00208{word-spacing:0.314410px;}
.ws3_c00208{word-spacing:1.428571px;}
.ws1_c00208{word-spacing:6.888889px;}
.ws5_c00208{word-spacing:27.745223px;}
.fc0_c00208{color:transparent;}
.fs5_c00208{font-size:42.000000px;}
.fs4_c00208{font-size:54.000000px;}
.fs2_c00208{font-size:60.000000px;}
.fs1_c00208{font-size:66.000000px;}
.fs3_c00208{font-size:72.000000px;}
.fs0_c00208{font-size:102.000000px;}
.y0_c00208{bottom:0.000000px;}
.y6a_c00208{bottom:173.550000px;}
.y35_c00208{bottom:183.600000px;}
.y69_c00208{bottom:191.550000px;}
.y34_c00208{bottom:192.600000px;}
.y68_c00208{bottom:209.550000px;}
.y33_c00208{bottom:213.150000px;}
.y67_c00208{bottom:228.600000px;}
.y32_c00208{bottom:231.150000px;}
.y66_c00208{bottom:245.100000px;}
.y31_c00208{bottom:249.150000px;}
.y65_c00208{bottom:262.800000px;}
.y30_c00208{bottom:266.850000px;}
.y64_c00208{bottom:280.500000px;}
.y2f_c00208{bottom:284.550000px;}
.y63_c00208{bottom:298.500000px;}
.y2e_c00208{bottom:302.250000px;}
.y62_c00208{bottom:316.200000px;}
.y2d_c00208{bottom:319.950000px;}
.y61_c00208{bottom:333.900000px;}
.y2c_c00208{bottom:337.950000px;}
.y60_c00208{bottom:352.200000px;}
.y2b_c00208{bottom:355.650000px;}
.y5f_c00208{bottom:369.450000px;}
.y2a_c00208{bottom:373.650000px;}
.y5e_c00208{bottom:386.700000px;}
.y29_c00208{bottom:394.200000px;}
.y5d_c00208{bottom:404.700000px;}
.y28_c00208{bottom:411.900000px;}
.y5c_c00208{bottom:422.250000px;}
.y27_c00208{bottom:429.900000px;}
.y5b_c00208{bottom:443.550000px;}
.y26_c00208{bottom:447.600000px;}
.y25_c00208{bottom:465.300000px;}
.y5a_c00208{bottom:466.200000px;}
.y24_c00208{bottom:483.000000px;}
.y59_c00208{bottom:483.900000px;}
.y23_c00208{bottom:500.700000px;}
.y58_c00208{bottom:501.900000px;}
.y22_c00208{bottom:518.700000px;}
.y57_c00208{bottom:524.100000px;}
.y21_c00208{bottom:536.400000px;}
.y56_c00208{bottom:542.100000px;}
.y20_c00208{bottom:554.400000px;}
.y55_c00208{bottom:559.800000px;}
.y1f_c00208{bottom:572.100000px;}
.y54_c00208{bottom:577.500000px;}
.y1e_c00208{bottom:589.800000px;}
.y53_c00208{bottom:595.200000px;}
.y1d_c00208{bottom:607.500000px;}
.y52_c00208{bottom:613.200000px;}
.y1c_c00208{bottom:625.500000px;}
.y51_c00208{bottom:630.900000px;}
.y1b_c00208{bottom:643.200000px;}
.y50_c00208{bottom:647.850000px;}
.y1a_c00208{bottom:660.900000px;}
.y4f_c00208{bottom:665.850000px;}
.y19_c00208{bottom:678.600000px;}
.y4e_c00208{bottom:683.550000px;}
.y18_c00208{bottom:696.600000px;}
.y4d_c00208{bottom:700.800000px;}
.y4c_c00208{bottom:718.500000px;}
.y17_c00208{bottom:722.850000px;}
.y4b_c00208{bottom:736.200000px;}
.y16_c00208{bottom:740.550000px;}
.y4a_c00208{bottom:754.200000px;}
.y15_c00208{bottom:762.900000px;}
.y49_c00208{bottom:771.450000px;}
.y14_c00208{bottom:780.150000px;}
.y48_c00208{bottom:789.450000px;}
.y13_c00208{bottom:798.150000px;}
.y47_c00208{bottom:807.150000px;}
.y12_c00208{bottom:815.700000px;}
.y46_c00208{bottom:824.700000px;}
.y11_c00208{bottom:833.400000px;}
.y45_c00208{bottom:846.300000px;}
.y10_c00208{bottom:850.650000px;}
.y44_c00208{bottom:864.300000px;}
.yf_c00208{bottom:868.650000px;}
.y43_c00208{bottom:881.550000px;}
.ye_c00208{bottom:886.350000px;}
.y42_c00208{bottom:899.250000px;}
.yd_c00208{bottom:904.350000px;}
.y41_c00208{bottom:917.250000px;}
.yc_c00208{bottom:921.600000px;}
.y40_c00208{bottom:934.500000px;}
.yb_c00208{bottom:939.600000px;}
.y3f_c00208{bottom:952.200000px;}
.ya_c00208{bottom:965.850000px;}
.y3e_c00208{bottom:970.500000px;}
.y9_c00208{bottom:983.850000px;}
.y3d_c00208{bottom:987.600000px;}
.y8_c00208{bottom:1001.550000px;}
.y3c_c00208{bottom:1005.300000px;}
.y3b_c00208{bottom:1023.000000px;}
.y7_c00208{bottom:1023.600000px;}
.y3a_c00208{bottom:1040.700000px;}
.y6_c00208{bottom:1041.900000px;}
.y39_c00208{bottom:1058.700000px;}
.y5_c00208{bottom:1059.150000px;}
.y38_c00208{bottom:1076.400000px;}
.y4_c00208{bottom:1076.850000px;}
.y37_c00208{bottom:1093.650000px;}
.y3_c00208{bottom:1094.850000px;}
.y36_c00208{bottom:1111.650000px;}
.y2_c00208{bottom:1112.100000px;}
.y1_c00208{bottom:1137.900000px;}
.h7_c00208{height:42.000000px;}
.h6_c00208{height:54.000000px;}
.h4_c00208{height:60.000000px;}
.h3_c00208{height:66.000000px;}
.h5_c00208{height:72.000000px;}
.h2_c00208{height:102.000000px;}
.h0_c00208{height:1272.600036px;}
.h1_c00208{height:1272.750000px;}
.w1_c00208{width:963.000000px;}
.w0_c00208{width:963.359985px;}
.x0_c00208{left:0.000000px;}
.x40_c00208{left:96.450000px;}
.x65_c00208{left:99.300000px;}
.x99_c00208{left:108.300000px;}
.x45_c00208{left:114.150000px;}
.x66_c00208{left:115.200000px;}
.x69_c00208{left:116.250000px;}
.x82_c00208{left:117.300000px;}
.x89_c00208{left:119.550000px;}
.x17_c00208{left:122.850000px;}
.x3_c00208{left:130.350000px;}
.x2c_c00208{left:131.550000px;}
.x9a_c00208{left:133.200000px;}
.x46_c00208{left:135.000000px;}
.x5f_c00208{left:138.150000px;}
.xa4_c00208{left:139.500000px;}
.x31_c00208{left:149.100000px;}
.x6e_c00208{left:151.500000px;}
.x41_c00208{left:154.800000px;}
.x7c_c00208{left:155.850000px;}
.xa8_c00208{left:156.900000px;}
.x4_c00208{left:158.400000px;}
.x95_c00208{left:159.600000px;}
.x1e_c00208{left:161.250000px;}
.x50_c00208{left:162.600000px;}
.x3b_c00208{left:165.000000px;}
.x5_c00208{left:167.100000px;}
.x8a_c00208{left:168.150000px;}
.x77_c00208{left:169.500000px;}
.x92_c00208{left:171.300000px;}
.x4b_c00208{left:172.500000px;}
.x5a_c00208{left:173.550000px;}
.x67_c00208{left:174.600000px;}
.xa2_c00208{left:176.700000px;}
.x96_c00208{left:178.350000px;}
.x8b_c00208{left:180.750000px;}
.xf_c00208{left:182.100000px;}
.x35_c00208{left:183.900000px;}
.x73_c00208{left:186.750000px;}
.x27_c00208{left:187.950000px;}
.x6_c00208{left:189.750000px;}
.x8d_c00208{left:191.100000px;}
.x7d_c00208{left:192.150000px;}
.x1f_c00208{left:194.400000px;}
.x68_c00208{left:195.450000px;}
.xa5_c00208{left:197.400000px;}
.x10_c00208{left:200.100000px;}
.x36_c00208{left:202.200000px;}
.xa0_c00208{left:204.300000px;}
.x7_c00208{left:205.650000px;}
.x85_c00208{left:207.600000px;}
.x2d_c00208{left:208.650000px;}
.x7e_c00208{left:210.900000px;}
.x18_c00208{left:212.400000px;}
.x78_c00208{left:213.450000px;}
.x20_c00208{left:217.500000px;}
.x42_c00208{left:218.850000px;}
.x2e_c00208{left:221.550000px;}
.x47_c00208{left:223.200000px;}
.x11_c00208{left:224.250000px;}
.x28_c00208{left:228.300000px;}
.x4c_c00208{left:229.650000px;}
.x8_c00208{left:230.850000px;}
.x93_c00208{left:232.800000px;}
.x6a_c00208{left:234.300000px;}
.x60_c00208{left:235.950000px;}
.x48_c00208{left:237.300000px;}
.x9_c00208{left:239.850000px;}
.x80_c00208{left:241.650000px;}
.x70_c00208{left:243.000000px;}
.x61_c00208{left:245.250000px;}
.x6f_c00208{left:246.900000px;}
.x4d_c00208{left:249.450000px;}
.x51_c00208{left:250.500000px;}
.x2f_c00208{left:252.900000px;}
.x43_c00208{left:256.950000px;}
.x83_c00208{left:259.200000px;}
.x21_c00208{left:260.400000px;}
.x62_c00208{left:261.450000px;}
.xa_c00208{left:263.550000px;}
.x19_c00208{left:266.700000px;}
.x8c_c00208{left:269.700000px;}
.x9d_c00208{left:271.500000px;}
.x5b_c00208{left:272.550000px;}
.x12_c00208{left:275.700000px;}
.x3c_c00208{left:277.950000px;}
.x37_c00208{left:279.600000px;}
.x52_c00208{left:281.850000px;}
.xb_c00208{left:284.400000px;}
.x22_c00208{left:285.900000px;}
.x3d_c00208{left:286.950000px;}
.x55_c00208{left:288.750000px;}
.x74_c00208{left:290.850000px;}
.x8e_c00208{left:293.700000px;}
.x1a_c00208{left:295.200000px;}
.x13_c00208{left:298.800000px;}
.x29_c00208{left:300.600000px;}
.x23_c00208{left:302.100000px;}
.x87_c00208{left:303.150000px;}
.xa6_c00208{left:304.800000px;}
.x4e_c00208{left:306.300000px;}
.x32_c00208{left:307.350000px;}
.x38_c00208{left:309.450000px;}
.x5c_c00208{left:311.400000px;}
.xa3_c00208{left:313.500000px;}
.x9b_c00208{left:315.150000px;}
.x14_c00208{left:316.500000px;}
.x86_c00208{left:317.850000px;}
.x7f_c00208{left:319.200000px;}
.x2a_c00208{left:321.900000px;}
.x9c_c00208{left:325.200000px;}
.x81_c00208{left:326.850000px;}
.x7a_c00208{left:328.950000px;}
.x33_c00208{left:330.450000px;}
.x84_c00208{left:333.000000px;}
.x63_c00208{left:334.050000px;}
.x1_c00208{left:335.550000px;}
.x88_c00208{left:337.800000px;}
.x4f_c00208{left:339.000000px;}
.x75_c00208{left:341.550000px;}
.xc_c00208{left:344.100000px;}
.x71_c00208{left:345.600000px;}
.x3e_c00208{left:346.650000px;}
.x79_c00208{left:347.850000px;}
.x24_c00208{left:349.200000px;}
.x9e_c00208{left:350.700000px;}
.x53_c00208{left:352.050000px;}
.x1b_c00208{left:353.850000px;}
.x2b_c00208{left:355.050000px;}
.x56_c00208{left:356.400000px;}
.x49_c00208{left:359.400000px;}
.x3f_c00208{left:361.350000px;}
.x90_c00208{left:364.800000px;}
.xd_c00208{left:366.750000px;}
.x15_c00208{left:367.950000px;}
.x6b_c00208{left:369.300000px;}
.x58_c00208{left:370.350000px;}
.x1c_c00208{left:374.700000px;}
.xa7_c00208{left:376.050000px;}
.x5d_c00208{left:377.250000px;}
.x25_c00208{left:378.300000px;}
.x39_c00208{left:380.400000px;}
.x72_c00208{left:381.450000px;}
.x57_c00208{left:383.700000px;}
.x91_c00208{left:384.900000px;}
.x97_c00208{left:385.950000px;}
.xe_c00208{left:387.600000px;}
.x54_c00208{left:389.400000px;}
.x30_c00208{left:390.450000px;}
.x34_c00208{left:392.400000px;}
.x59_c00208{left:395.250000px;}
.xa1_c00208{left:396.450000px;}
.x64_c00208{left:398.100000px;}
.x6c_c00208{left:399.600000px;}
.x5e_c00208{left:400.650000px;}
.x4a_c00208{left:404.400000px;}
.x6d_c00208{left:405.900000px;}
.x3a_c00208{left:407.700000px;}
.x1d_c00208{left:411.450000px;}
.x94_c00208{left:412.800000px;}
.x26_c00208{left:414.300000px;}
.x9f_c00208{left:415.950000px;}
.x16_c00208{left:418.350000px;}
.x8f_c00208{left:419.550000px;}
.x76_c00208{left:422.250000px;}
.x44_c00208{left:426.750000px;}
.x7b_c00208{left:429.750000px;}
.x98_c00208{left:431.250000px;}
.xd5_c00208{left:450.750000px;}
.xf9_c00208{left:453.600000px;}
.x13a_c00208{left:454.650000px;}
.x13b_c00208{left:456.450000px;}
.xdd_c00208{left:468.750000px;}
.xf6_c00208{left:469.800000px;}
.x100_c00208{left:471.300000px;}
.x126_c00208{left:472.350000px;}
.x12d_c00208{left:473.850000px;}
.x151_c00208{left:475.050000px;}
.x131_c00208{left:483.300000px;}
.xd2_c00208{left:485.100000px;}
.xa9_c00208{left:486.300000px;}
.xfa_c00208{left:487.500000px;}
.x13c_c00208{left:492.750000px;}
.x120_c00208{left:494.250000px;}
.xec_c00208{left:496.800000px;}
.x152_c00208{left:499.500000px;}
.x143_c00208{left:501.450000px;}
.x107_c00208{left:503.550000px;}
.x141_c00208{left:506.850000px;}
.xc0_c00208{left:508.500000px;}
.xd6_c00208{left:509.850000px;}
.x121_c00208{left:512.250000px;}
.x149_c00208{left:514.950000px;}
.x128_c00208{left:518.400000px;}
.xaa_c00208{left:520.200000px;}
.xb0_c00208{left:521.700000px;}
.xcc_c00208{left:523.650000px;}
.xd3_c00208{left:525.750000px;}
.x105_c00208{left:527.100000px;}
.xf1_c00208{left:529.200000px;}
.x132_c00208{left:530.400000px;}
.xf7_c00208{left:532.050000px;}
.xd7_c00208{left:533.250000px;}
.x101_c00208{left:534.600000px;}
.xb4_c00208{left:535.800000px;}
.x14a_c00208{left:536.850000px;}
.xe6_c00208{left:538.050000px;}
.x11a_c00208{left:541.050000px;}
.x139_c00208{left:542.850000px;}
.xc1_c00208{left:544.500000px;}
.x14d_c00208{left:545.850000px;}
.xd4_c00208{left:547.050000px;}
.xf8_c00208{left:548.250000px;}
.x14b_c00208{left:549.450000px;}
.xed_c00208{left:550.500000px;}
.xe3_c00208{left:552.150000px;}
.xfb_c00208{left:553.800000px;}
.xeb_c00208{left:555.450000px;}
.x102_c00208{left:556.950000px;}
.xc2_c00208{left:561.750000px;}
.x145_c00208{left:563.100000px;}
.x13d_c00208{left:565.800000px;}
.xde_c00208{left:568.050000px;}
.xb5_c00208{left:570.000000px;}
.x136_c00208{left:571.200000px;}
.xe4_c00208{left:572.250000px;}
.xab_c00208{left:573.450000px;}
.x108_c00208{left:574.500000px;}
.xe7_c00208{left:575.550000px;}
.xc8_c00208{left:576.750000px;}
.x10e_c00208{left:577.950000px;}
.xd8_c00208{left:579.300000px;}
.xc3_c00208{left:583.350000px;}
.x11b_c00208{left:584.550000px;}
.xf2_c00208{left:588.600000px;}
.x140_c00208{left:589.950000px;}
.xc9_c00208{left:593.250000px;}
.x10f_c00208{left:594.900000px;}
.xac_c00208{left:596.550000px;}
.x10c_c00208{left:598.200000px;}
.xcd_c00208{left:599.550000px;}
.xd9_c00208{left:600.600000px;}
.x119_c00208{left:602.700000px;}
.xdf_c00208{left:604.350000px;}
.x11c_c00208{left:605.850000px;}
.xba_c00208{left:608.250000px;}
.xfc_c00208{left:610.650000px;}
.x14f_c00208{left:612.600000px;}
.x116_c00208{left:614.700000px;}
.xb6_c00208{left:615.750000px;}
.xbb_c00208{left:617.250000px;}
.x144_c00208{left:618.450000px;}
.x127_c00208{left:619.650000px;}
.xda_c00208{left:620.700000px;}
.xe0_c00208{left:622.350000px;}
.xad_c00208{left:625.050000px;}
.xf3_c00208{left:626.700000px;}
.xfd_c00208{left:629.400000px;}
.xee_c00208{left:631.800000px;}
.x109_c00208{left:633.150000px;}
.x122_c00208{left:634.500000px;}
.xc4_c00208{left:635.550000px;}
.xb7_c00208{left:637.050000px;}
.x137_c00208{left:638.550000px;}
.xca_c00208{left:639.750000px;}
.x124_c00208{left:641.250000px;}
.x11d_c00208{left:643.350000px;}
.x112_c00208{left:644.550000px;}
.xfe_c00208{left:646.650000px;}
.x117_c00208{left:649.200000px;}
.xbc_c00208{left:650.700000px;}
.xe1_c00208{left:653.700000px;}
.x146_c00208{left:655.500000px;}
.xb1_c00208{left:657.750000px;}
.x129_c00208{left:658.950000px;}
.x12e_c00208{left:660.450000px;}
.xe8_c00208{left:661.650000px;}
.x153_c00208{left:664.050000px;}
.xce_c00208{left:665.100000px;}
.x110_c00208{left:666.600000px;}
.x10a_c00208{left:668.100000px;}
.x133_c00208{left:669.300000px;}
.x142_c00208{left:670.650000px;}
.x13e_c00208{left:671.700000px;}
.xdb_c00208{left:673.950000px;}
.xbd_c00208{left:676.200000px;}
.xcb_c00208{left:677.850000px;}
.xf4_c00208{left:681.000000px;}
.x12a_c00208{left:683.850000px;}
.x12f_c00208{left:684.900000px;}
.xb2_c00208{left:686.250000px;}
.xc5_c00208{left:689.550000px;}
.x103_c00208{left:691.650000px;}
.xcf_c00208{left:692.850000px;}
.xe9_c00208{left:695.550000px;}
.x134_c00208{left:697.350000px;}
.x14c_c00208{left:698.850000px;}
.x155_c00208{left:700.350000px;}
.xef_c00208{left:702.000000px;}
.x111_c00208{left:704.700000px;}
.xae_c00208{left:705.750000px;}
.x11e_c00208{left:707.100000px;}
.x113_c00208{left:708.900000px;}
.x147_c00208{left:710.550000px;}
.xea_c00208{left:712.050000px;}
.x10d_c00208{left:714.450000px;}
.xb8_c00208{left:715.500000px;}
.x118_c00208{left:717.000000px;}
.xf5_c00208{left:718.800000px;}
.xbe_c00208{left:720.900000px;}
.x138_c00208{left:723.600000px;}
.x12b_c00208{left:728.100000px;}
.xc6_c00208{left:729.150000px;}
.x150_c00208{left:731.250000px;}
.x125_c00208{left:732.750000px;}
.x123_c00208{left:734.550000px;}
.x12c_c00208{left:736.050000px;}
.xb3_c00208{left:737.700000px;}
.x114_c00208{left:739.500000px;}
.xbf_c00208{left:741.450000px;}
.x10b_c00208{left:742.650000px;}
.xaf_c00208{left:743.850000px;}
.xff_c00208{left:745.650000px;}
.xd0_c00208{left:746.850000px;}
.xe2_c00208{left:749.100000px;}
.xc7_c00208{left:751.050000px;}
.xf0_c00208{left:753.150000px;}
.x13f_c00208{left:754.200000px;}
.xdc_c00208{left:755.250000px;}
.x104_c00208{left:756.450000px;}
.x2_c00208{left:758.250000px;}
.x106_c00208{left:760.650000px;}
.x130_c00208{left:762.300000px;}
.xe5_c00208{left:763.500000px;}
.x148_c00208{left:765.900000px;}
.xb9_c00208{left:766.950000px;}
.xd1_c00208{left:769.500000px;}
.x11f_c00208{left:771.450000px;}
.x115_c00208{left:773.400000px;}
.x14e_c00208{left:774.900000px;}
.x154_c00208{left:776.100000px;}
.x135_c00208{left:779.400000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws2_c00208{word-spacing:-3.055556pt;}
.ws0_c00208{word-spacing:-2.522523pt;}
.ws6_c00208{word-spacing:0.000000pt;}
.ws4_c00208{word-spacing:0.279476pt;}
.ws3_c00208{word-spacing:1.269841pt;}
.ws1_c00208{word-spacing:6.123457pt;}
.ws5_c00208{word-spacing:24.662420pt;}
.fs5_c00208{font-size:37.333333pt;}
.fs4_c00208{font-size:48.000000pt;}
.fs2_c00208{font-size:53.333333pt;}
.fs1_c00208{font-size:58.666667pt;}
.fs3_c00208{font-size:64.000000pt;}
.fs0_c00208{font-size:90.666667pt;}
.y0_c00208{bottom:0.000000pt;}
.y6a_c00208{bottom:154.266667pt;}
.y35_c00208{bottom:163.200000pt;}
.y69_c00208{bottom:170.266667pt;}
.y34_c00208{bottom:171.200000pt;}
.y68_c00208{bottom:186.266667pt;}
.y33_c00208{bottom:189.466667pt;}
.y67_c00208{bottom:203.200000pt;}
.y32_c00208{bottom:205.466667pt;}
.y66_c00208{bottom:217.866667pt;}
.y31_c00208{bottom:221.466667pt;}
.y65_c00208{bottom:233.600000pt;}
.y30_c00208{bottom:237.200000pt;}
.y64_c00208{bottom:249.333333pt;}
.y2f_c00208{bottom:252.933333pt;}
.y63_c00208{bottom:265.333333pt;}
.y2e_c00208{bottom:268.666667pt;}
.y62_c00208{bottom:281.066667pt;}
.y2d_c00208{bottom:284.400000pt;}
.y61_c00208{bottom:296.800000pt;}
.y2c_c00208{bottom:300.400000pt;}
.y60_c00208{bottom:313.066667pt;}
.y2b_c00208{bottom:316.133333pt;}
.y5f_c00208{bottom:328.400000pt;}
.y2a_c00208{bottom:332.133333pt;}
.y5e_c00208{bottom:343.733333pt;}
.y29_c00208{bottom:350.400000pt;}
.y5d_c00208{bottom:359.733333pt;}
.y28_c00208{bottom:366.133333pt;}
.y5c_c00208{bottom:375.333333pt;}
.y27_c00208{bottom:382.133333pt;}
.y5b_c00208{bottom:394.266667pt;}
.y26_c00208{bottom:397.866667pt;}
.y25_c00208{bottom:413.600000pt;}
.y5a_c00208{bottom:414.400000pt;}
.y24_c00208{bottom:429.333333pt;}
.y59_c00208{bottom:430.133333pt;}
.y23_c00208{bottom:445.066667pt;}
.y58_c00208{bottom:446.133333pt;}
.y22_c00208{bottom:461.066667pt;}
.y57_c00208{bottom:465.866667pt;}
.y21_c00208{bottom:476.800000pt;}
.y56_c00208{bottom:481.866667pt;}
.y20_c00208{bottom:492.800000pt;}
.y55_c00208{bottom:497.600000pt;}
.y1f_c00208{bottom:508.533333pt;}
.y54_c00208{bottom:513.333333pt;}
.y1e_c00208{bottom:524.266667pt;}
.y53_c00208{bottom:529.066667pt;}
.y1d_c00208{bottom:540.000000pt;}
.y52_c00208{bottom:545.066667pt;}
.y1c_c00208{bottom:556.000000pt;}
.y51_c00208{bottom:560.800000pt;}
.y1b_c00208{bottom:571.733333pt;}
.y50_c00208{bottom:575.866667pt;}
.y1a_c00208{bottom:587.466667pt;}
.y4f_c00208{bottom:591.866667pt;}
.y19_c00208{bottom:603.200000pt;}
.y4e_c00208{bottom:607.600000pt;}
.y18_c00208{bottom:619.200000pt;}
.y4d_c00208{bottom:622.933333pt;}
.y4c_c00208{bottom:638.666667pt;}
.y17_c00208{bottom:642.533333pt;}
.y4b_c00208{bottom:654.400000pt;}
.y16_c00208{bottom:658.266667pt;}
.y4a_c00208{bottom:670.400000pt;}
.y15_c00208{bottom:678.133333pt;}
.y49_c00208{bottom:685.733333pt;}
.y14_c00208{bottom:693.466667pt;}
.y48_c00208{bottom:701.733333pt;}
.y13_c00208{bottom:709.466667pt;}
.y47_c00208{bottom:717.466667pt;}
.y12_c00208{bottom:725.066667pt;}
.y46_c00208{bottom:733.066667pt;}
.y11_c00208{bottom:740.800000pt;}
.y45_c00208{bottom:752.266667pt;}
.y10_c00208{bottom:756.133333pt;}
.y44_c00208{bottom:768.266667pt;}
.yf_c00208{bottom:772.133333pt;}
.y43_c00208{bottom:783.600000pt;}
.ye_c00208{bottom:787.866667pt;}
.y42_c00208{bottom:799.333333pt;}
.yd_c00208{bottom:803.866667pt;}
.y41_c00208{bottom:815.333333pt;}
.yc_c00208{bottom:819.200000pt;}
.y40_c00208{bottom:830.666667pt;}
.yb_c00208{bottom:835.200000pt;}
.y3f_c00208{bottom:846.400000pt;}
.ya_c00208{bottom:858.533333pt;}
.y3e_c00208{bottom:862.666667pt;}
.y9_c00208{bottom:874.533333pt;}
.y3d_c00208{bottom:877.866667pt;}
.y8_c00208{bottom:890.266667pt;}
.y3c_c00208{bottom:893.600000pt;}
.y3b_c00208{bottom:909.333333pt;}
.y7_c00208{bottom:909.866667pt;}
.y3a_c00208{bottom:925.066667pt;}
.y6_c00208{bottom:926.133333pt;}
.y39_c00208{bottom:941.066667pt;}
.y5_c00208{bottom:941.466667pt;}
.y38_c00208{bottom:956.800000pt;}
.y4_c00208{bottom:957.200000pt;}
.y37_c00208{bottom:972.133333pt;}
.y3_c00208{bottom:973.200000pt;}
.y36_c00208{bottom:988.133333pt;}
.y2_c00208{bottom:988.533333pt;}
.y1_c00208{bottom:1011.466667pt;}
.h7_c00208{height:37.333333pt;}
.h6_c00208{height:48.000000pt;}
.h4_c00208{height:53.333333pt;}
.h3_c00208{height:58.666667pt;}
.h5_c00208{height:64.000000pt;}
.h2_c00208{height:90.666667pt;}
.h0_c00208{height:1131.200032pt;}
.h1_c00208{height:1131.333333pt;}
.w1_c00208{width:856.000000pt;}
.w0_c00208{width:856.319987pt;}
.x0_c00208{left:0.000000pt;}
.x40_c00208{left:85.733333pt;}
.x65_c00208{left:88.266667pt;}
.x99_c00208{left:96.266667pt;}
.x45_c00208{left:101.466667pt;}
.x66_c00208{left:102.400000pt;}
.x69_c00208{left:103.333333pt;}
.x82_c00208{left:104.266667pt;}
.x89_c00208{left:106.266667pt;}
.x17_c00208{left:109.200000pt;}
.x3_c00208{left:115.866667pt;}
.x2c_c00208{left:116.933333pt;}
.x9a_c00208{left:118.400000pt;}
.x46_c00208{left:120.000000pt;}
.x5f_c00208{left:122.800000pt;}
.xa4_c00208{left:124.000000pt;}
.x31_c00208{left:132.533333pt;}
.x6e_c00208{left:134.666667pt;}
.x41_c00208{left:137.600000pt;}
.x7c_c00208{left:138.533333pt;}
.xa8_c00208{left:139.466667pt;}
.x4_c00208{left:140.800000pt;}
.x95_c00208{left:141.866667pt;}
.x1e_c00208{left:143.333333pt;}
.x50_c00208{left:144.533333pt;}
.x3b_c00208{left:146.666667pt;}
.x5_c00208{left:148.533333pt;}
.x8a_c00208{left:149.466667pt;}
.x77_c00208{left:150.666667pt;}
.x92_c00208{left:152.266667pt;}
.x4b_c00208{left:153.333333pt;}
.x5a_c00208{left:154.266667pt;}
.x67_c00208{left:155.200000pt;}
.xa2_c00208{left:157.066667pt;}
.x96_c00208{left:158.533333pt;}
.x8b_c00208{left:160.666667pt;}
.xf_c00208{left:161.866667pt;}
.x35_c00208{left:163.466667pt;}
.x73_c00208{left:166.000000pt;}
.x27_c00208{left:167.066667pt;}
.x6_c00208{left:168.666667pt;}
.x8d_c00208{left:169.866667pt;}
.x7d_c00208{left:170.800000pt;}
.x1f_c00208{left:172.800000pt;}
.x68_c00208{left:173.733333pt;}
.xa5_c00208{left:175.466667pt;}
.x10_c00208{left:177.866667pt;}
.x36_c00208{left:179.733333pt;}
.xa0_c00208{left:181.600000pt;}
.x7_c00208{left:182.800000pt;}
.x85_c00208{left:184.533333pt;}
.x2d_c00208{left:185.466667pt;}
.x7e_c00208{left:187.466667pt;}
.x18_c00208{left:188.800000pt;}
.x78_c00208{left:189.733333pt;}
.x20_c00208{left:193.333333pt;}
.x42_c00208{left:194.533333pt;}
.x2e_c00208{left:196.933333pt;}
.x47_c00208{left:198.400000pt;}
.x11_c00208{left:199.333333pt;}
.x28_c00208{left:202.933333pt;}
.x4c_c00208{left:204.133333pt;}
.x8_c00208{left:205.200000pt;}
.x93_c00208{left:206.933333pt;}
.x6a_c00208{left:208.266667pt;}
.x60_c00208{left:209.733333pt;}
.x48_c00208{left:210.933333pt;}
.x9_c00208{left:213.200000pt;}
.x80_c00208{left:214.800000pt;}
.x70_c00208{left:216.000000pt;}
.x61_c00208{left:218.000000pt;}
.x6f_c00208{left:219.466667pt;}
.x4d_c00208{left:221.733333pt;}
.x51_c00208{left:222.666667pt;}
.x2f_c00208{left:224.800000pt;}
.x43_c00208{left:228.400000pt;}
.x83_c00208{left:230.400000pt;}
.x21_c00208{left:231.466667pt;}
.x62_c00208{left:232.400000pt;}
.xa_c00208{left:234.266667pt;}
.x19_c00208{left:237.066667pt;}
.x8c_c00208{left:239.733333pt;}
.x9d_c00208{left:241.333333pt;}
.x5b_c00208{left:242.266667pt;}
.x12_c00208{left:245.066667pt;}
.x3c_c00208{left:247.066667pt;}
.x37_c00208{left:248.533333pt;}
.x52_c00208{left:250.533333pt;}
.xb_c00208{left:252.800000pt;}
.x22_c00208{left:254.133333pt;}
.x3d_c00208{left:255.066667pt;}
.x55_c00208{left:256.666667pt;}
.x74_c00208{left:258.533333pt;}
.x8e_c00208{left:261.066667pt;}
.x1a_c00208{left:262.400000pt;}
.x13_c00208{left:265.600000pt;}
.x29_c00208{left:267.200000pt;}
.x23_c00208{left:268.533333pt;}
.x87_c00208{left:269.466667pt;}
.xa6_c00208{left:270.933333pt;}
.x4e_c00208{left:272.266667pt;}
.x32_c00208{left:273.200000pt;}
.x38_c00208{left:275.066667pt;}
.x5c_c00208{left:276.800000pt;}
.xa3_c00208{left:278.666667pt;}
.x9b_c00208{left:280.133333pt;}
.x14_c00208{left:281.333333pt;}
.x86_c00208{left:282.533333pt;}
.x7f_c00208{left:283.733333pt;}
.x2a_c00208{left:286.133333pt;}
.x9c_c00208{left:289.066667pt;}
.x81_c00208{left:290.533333pt;}
.x7a_c00208{left:292.400000pt;}
.x33_c00208{left:293.733333pt;}
.x84_c00208{left:296.000000pt;}
.x63_c00208{left:296.933333pt;}
.x1_c00208{left:298.266667pt;}
.x88_c00208{left:300.266667pt;}
.x4f_c00208{left:301.333333pt;}
.x75_c00208{left:303.600000pt;}
.xc_c00208{left:305.866667pt;}
.x71_c00208{left:307.200000pt;}
.x3e_c00208{left:308.133333pt;}
.x79_c00208{left:309.200000pt;}
.x24_c00208{left:310.400000pt;}
.x9e_c00208{left:311.733333pt;}
.x53_c00208{left:312.933333pt;}
.x1b_c00208{left:314.533333pt;}
.x2b_c00208{left:315.600000pt;}
.x56_c00208{left:316.800000pt;}
.x49_c00208{left:319.466667pt;}
.x3f_c00208{left:321.200000pt;}
.x90_c00208{left:324.266667pt;}
.xd_c00208{left:326.000000pt;}
.x15_c00208{left:327.066667pt;}
.x6b_c00208{left:328.266667pt;}
.x58_c00208{left:329.200000pt;}
.x1c_c00208{left:333.066667pt;}
.xa7_c00208{left:334.266667pt;}
.x5d_c00208{left:335.333333pt;}
.x25_c00208{left:336.266667pt;}
.x39_c00208{left:338.133333pt;}
.x72_c00208{left:339.066667pt;}
.x57_c00208{left:341.066667pt;}
.x91_c00208{left:342.133333pt;}
.x97_c00208{left:343.066667pt;}
.xe_c00208{left:344.533333pt;}
.x54_c00208{left:346.133333pt;}
.x30_c00208{left:347.066667pt;}
.x34_c00208{left:348.800000pt;}
.x59_c00208{left:351.333333pt;}
.xa1_c00208{left:352.400000pt;}
.x64_c00208{left:353.866667pt;}
.x6c_c00208{left:355.200000pt;}
.x5e_c00208{left:356.133333pt;}
.x4a_c00208{left:359.466667pt;}
.x6d_c00208{left:360.800000pt;}
.x3a_c00208{left:362.400000pt;}
.x1d_c00208{left:365.733333pt;}
.x94_c00208{left:366.933333pt;}
.x26_c00208{left:368.266667pt;}
.x9f_c00208{left:369.733333pt;}
.x16_c00208{left:371.866667pt;}
.x8f_c00208{left:372.933333pt;}
.x76_c00208{left:375.333333pt;}
.x44_c00208{left:379.333333pt;}
.x7b_c00208{left:382.000000pt;}
.x98_c00208{left:383.333333pt;}
.xd5_c00208{left:400.666667pt;}
.xf9_c00208{left:403.200000pt;}
.x13a_c00208{left:404.133333pt;}
.x13b_c00208{left:405.733333pt;}
.xdd_c00208{left:416.666667pt;}
.xf6_c00208{left:417.600000pt;}
.x100_c00208{left:418.933333pt;}
.x126_c00208{left:419.866667pt;}
.x12d_c00208{left:421.200000pt;}
.x151_c00208{left:422.266667pt;}
.x131_c00208{left:429.600000pt;}
.xd2_c00208{left:431.200000pt;}
.xa9_c00208{left:432.266667pt;}
.xfa_c00208{left:433.333333pt;}
.x13c_c00208{left:438.000000pt;}
.x120_c00208{left:439.333333pt;}
.xec_c00208{left:441.600000pt;}
.x152_c00208{left:444.000000pt;}
.x143_c00208{left:445.733333pt;}
.x107_c00208{left:447.600000pt;}
.x141_c00208{left:450.533333pt;}
.xc0_c00208{left:452.000000pt;}
.xd6_c00208{left:453.200000pt;}
.x121_c00208{left:455.333333pt;}
.x149_c00208{left:457.733333pt;}
.x128_c00208{left:460.800000pt;}
.xaa_c00208{left:462.400000pt;}
.xb0_c00208{left:463.733333pt;}
.xcc_c00208{left:465.466667pt;}
.xd3_c00208{left:467.333333pt;}
.x105_c00208{left:468.533333pt;}
.xf1_c00208{left:470.400000pt;}
.x132_c00208{left:471.466667pt;}
.xf7_c00208{left:472.933333pt;}
.xd7_c00208{left:474.000000pt;}
.x101_c00208{left:475.200000pt;}
.xb4_c00208{left:476.266667pt;}
.x14a_c00208{left:477.200000pt;}
.xe6_c00208{left:478.266667pt;}
.x11a_c00208{left:480.933333pt;}
.x139_c00208{left:482.533333pt;}
.xc1_c00208{left:484.000000pt;}
.x14d_c00208{left:485.200000pt;}
.xd4_c00208{left:486.266667pt;}
.xf8_c00208{left:487.333333pt;}
.x14b_c00208{left:488.400000pt;}
.xed_c00208{left:489.333333pt;}
.xe3_c00208{left:490.800000pt;}
.xfb_c00208{left:492.266667pt;}
.xeb_c00208{left:493.733333pt;}
.x102_c00208{left:495.066667pt;}
.xc2_c00208{left:499.333333pt;}
.x145_c00208{left:500.533333pt;}
.x13d_c00208{left:502.933333pt;}
.xde_c00208{left:504.933333pt;}
.xb5_c00208{left:506.666667pt;}
.x136_c00208{left:507.733333pt;}
.xe4_c00208{left:508.666667pt;}
.xab_c00208{left:509.733333pt;}
.x108_c00208{left:510.666667pt;}
.xe7_c00208{left:511.600000pt;}
.xc8_c00208{left:512.666667pt;}
.x10e_c00208{left:513.733333pt;}
.xd8_c00208{left:514.933333pt;}
.xc3_c00208{left:518.533333pt;}
.x11b_c00208{left:519.600000pt;}
.xf2_c00208{left:523.200000pt;}
.x140_c00208{left:524.400000pt;}
.xc9_c00208{left:527.333333pt;}
.x10f_c00208{left:528.800000pt;}
.xac_c00208{left:530.266667pt;}
.x10c_c00208{left:531.733333pt;}
.xcd_c00208{left:532.933333pt;}
.xd9_c00208{left:533.866667pt;}
.x119_c00208{left:535.733333pt;}
.xdf_c00208{left:537.200000pt;}
.x11c_c00208{left:538.533333pt;}
.xba_c00208{left:540.666667pt;}
.xfc_c00208{left:542.800000pt;}
.x14f_c00208{left:544.533333pt;}
.x116_c00208{left:546.400000pt;}
.xb6_c00208{left:547.333333pt;}
.xbb_c00208{left:548.666667pt;}
.x144_c00208{left:549.733333pt;}
.x127_c00208{left:550.800000pt;}
.xda_c00208{left:551.733333pt;}
.xe0_c00208{left:553.200000pt;}
.xad_c00208{left:555.600000pt;}
.xf3_c00208{left:557.066667pt;}
.xfd_c00208{left:559.466667pt;}
.xee_c00208{left:561.600000pt;}
.x109_c00208{left:562.800000pt;}
.x122_c00208{left:564.000000pt;}
.xc4_c00208{left:564.933333pt;}
.xb7_c00208{left:566.266667pt;}
.x137_c00208{left:567.600000pt;}
.xca_c00208{left:568.666667pt;}
.x124_c00208{left:570.000000pt;}
.x11d_c00208{left:571.866667pt;}
.x112_c00208{left:572.933333pt;}
.xfe_c00208{left:574.800000pt;}
.x117_c00208{left:577.066667pt;}
.xbc_c00208{left:578.400000pt;}
.xe1_c00208{left:581.066667pt;}
.x146_c00208{left:582.666667pt;}
.xb1_c00208{left:584.666667pt;}
.x129_c00208{left:585.733333pt;}
.x12e_c00208{left:587.066667pt;}
.xe8_c00208{left:588.133333pt;}
.x153_c00208{left:590.266667pt;}
.xce_c00208{left:591.200000pt;}
.x110_c00208{left:592.533333pt;}
.x10a_c00208{left:593.866667pt;}
.x133_c00208{left:594.933333pt;}
.x142_c00208{left:596.133333pt;}
.x13e_c00208{left:597.066667pt;}
.xdb_c00208{left:599.066667pt;}
.xbd_c00208{left:601.066667pt;}
.xcb_c00208{left:602.533333pt;}
.xf4_c00208{left:605.333333pt;}
.x12a_c00208{left:607.866667pt;}
.x12f_c00208{left:608.800000pt;}
.xb2_c00208{left:610.000000pt;}
.xc5_c00208{left:612.933333pt;}
.x103_c00208{left:614.800000pt;}
.xcf_c00208{left:615.866667pt;}
.xe9_c00208{left:618.266667pt;}
.x134_c00208{left:619.866667pt;}
.x14c_c00208{left:621.200000pt;}
.x155_c00208{left:622.533333pt;}
.xef_c00208{left:624.000000pt;}
.x111_c00208{left:626.400000pt;}
.xae_c00208{left:627.333333pt;}
.x11e_c00208{left:628.533333pt;}
.x113_c00208{left:630.133333pt;}
.x147_c00208{left:631.600000pt;}
.xea_c00208{left:632.933333pt;}
.x10d_c00208{left:635.066667pt;}
.xb8_c00208{left:636.000000pt;}
.x118_c00208{left:637.333333pt;}
.xf5_c00208{left:638.933333pt;}
.xbe_c00208{left:640.800000pt;}
.x138_c00208{left:643.200000pt;}
.x12b_c00208{left:647.200000pt;}
.xc6_c00208{left:648.133333pt;}
.x150_c00208{left:650.000000pt;}
.x125_c00208{left:651.333333pt;}
.x123_c00208{left:652.933333pt;}
.x12c_c00208{left:654.266667pt;}
.xb3_c00208{left:655.733333pt;}
.x114_c00208{left:657.333333pt;}
.xbf_c00208{left:659.066667pt;}
.x10b_c00208{left:660.133333pt;}
.xaf_c00208{left:661.200000pt;}
.xff_c00208{left:662.800000pt;}
.xd0_c00208{left:663.866667pt;}
.xe2_c00208{left:665.866667pt;}
.xc7_c00208{left:667.600000pt;}
.xf0_c00208{left:669.466667pt;}
.x13f_c00208{left:670.400000pt;}
.xdc_c00208{left:671.333333pt;}
.x104_c00208{left:672.400000pt;}
.x2_c00208{left:674.000000pt;}
.x106_c00208{left:676.133333pt;}
.x130_c00208{left:677.600000pt;}
.xe5_c00208{left:678.666667pt;}
.x148_c00208{left:680.800000pt;}
.xb9_c00208{left:681.733333pt;}
.xd1_c00208{left:684.000000pt;}
.x11f_c00208{left:685.733333pt;}
.x115_c00208{left:687.466667pt;}
.x14e_c00208{left:688.800000pt;}
.x154_c00208{left:689.866667pt;}
.x135_c00208{left:692.800000pt;}
}





/* 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_c00209 {
    display:none;
  }
  .loading-indicator_c00209.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00209 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_c00209 { 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_c00209" -> "#page-container .classname_c00209")
 */
.pf_c00209 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00209 { /* 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_c00209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00209 { /* 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_c00209 { /* 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_c00209 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00209 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00209 {overflow:visible;}
  }
}
.c_c00209 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00209 { /* 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_c00209:after { /* webkit #35443 */
  content: '';
}
.t_c00209:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00209 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 */
}
.__c00209 { /* 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_c00209 { /* info for Javascript */
  display:none;
}
.l_c00209 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00209 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00209 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00209: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_c00209 {
    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_c00209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00209.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_c00209 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00209;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.000000;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;}
.m62_c00209{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.me5_c00209{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m60_c00209{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m16_c00209{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00209{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.md3_c00209{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00209{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md6_c00209{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00209{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mab_c00209{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m75_c00209{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00209{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00209{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m79_c00209{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m64_c00209{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m82_c00209{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00209{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m33_c00209{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m68_c00209{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m12_c00209{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00209{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me7_c00209{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m41_c00209{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00209{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m61_c00209{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00209{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m5_c00209{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m88_c00209{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00209{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m35_c00209{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m43_c00209{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00209{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m40_c00209{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.me3_c00209{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mb_c00209{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00209{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m3_c00209{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00209{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00209{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m42_c00209{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m45_c00209{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m23_c00209{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m26_c00209{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m70_c00209{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00209{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m93_c00209{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00209{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00209{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m112_c00209{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00209{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00209{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00209{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00209{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00209{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m80_c00209{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00209{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00209{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00209{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00209{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00209{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m52_c00209{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m114_c00209{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m113_c00209{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m99_c00209{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md9_c00209{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m76_c00209{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m117_c00209{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m72_c00209{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m66_c00209{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m21_c00209{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m25_c00209{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m46_c00209{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m78_c00209{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m49_c00209{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.maf_c00209{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m105_c00209{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m102_c00209{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m90_c00209{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma_c00209{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md1_c00209{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md4_c00209{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m69_c00209{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00209{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00209{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mee_c00209{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00209{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00209{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00209{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m110_c00209{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m11_c00209{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mde_c00209{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m111_c00209{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m84_c00209{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00209{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf_c00209{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m74_c00209{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m100_c00209{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00209{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m38_c00209{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00209{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00209{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m39_c00209{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mce_c00209{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00209{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m86_c00209{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00209{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m91_c00209{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m15_c00209{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me4_c00209{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m6_c00209{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00209{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00209{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00209{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00209{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m63_c00209{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mec_c00209{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mca_c00209{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me_c00209{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00209{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00209{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m13_c00209{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me9_c00209{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00209{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.med_c00209{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m36_c00209{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md0_c00209{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00209{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md_c00209{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00209{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00209{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m96_c00209{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00209{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00209{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00209{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00209{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mac_c00209{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mae_c00209{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m92_c00209{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00209{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00209{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m2_c00209{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m22_c00209{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00209{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m71_c00209{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m37_c00209{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00209{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00209{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00209{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m85_c00209{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00209{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m73_c00209{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00209{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00209{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00209{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m27_c00209{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m81_c00209{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00209{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.md2_c00209{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00209{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00209{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m10_c00209{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.meb_c00209{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m44_c00209{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00209{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00209{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00209{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m94_c00209{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me0_c00209{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m87_c00209{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00209{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00209{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00209{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m47_c00209{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00209{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md7_c00209{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m20_c00209{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00209{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mba_c00209{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00209{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00209{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m32_c00209{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.md5_c00209{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00209{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m19_c00209{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me1_c00209{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m56_c00209{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m14_c00209{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00209{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00209{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00209{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m98_c00209{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00209{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mad_c00209{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mea_c00209{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00209{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m83_c00209{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m95_c00209{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00209{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00209{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00209{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00209{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00209{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m48_c00209{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00209{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m101_c00209{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00209{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m57_c00209{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md8_c00209{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00209{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00209{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m29_c00209{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00209{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00209{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00209{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m89_c00209{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mff_c00209{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m67_c00209{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m107_c00209{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m104_c00209{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00209{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m53_c00209{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00209{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00209{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m51_c00209{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m77_c00209{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00209{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mef_c00209{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m103_c00209{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m24_c00209{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00209{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m31_c00209{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me6_c00209{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m30_c00209{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m108_c00209{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m28_c00209{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00209{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00209{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m34_c00209{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m50_c00209{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m59_c00209{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m116_c00209{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m97_c00209{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00209{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00209{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m115_c00209{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00209{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m17_c00209{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00209{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.me8_c00209{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00209{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.maa_c00209{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00209{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mda_c00209{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00209{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00209{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00209{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m65_c00209{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00209{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00209{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m58_c00209{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00209{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m106_c00209{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00209{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me2_c00209{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m55_c00209{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00209{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00209{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m54_c00209{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m18_c00209{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00209{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m109_c00209{transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00209{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00209{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls0_c00209{letter-spacing:0.000000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{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__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00209{word-spacing:-9.262009px;}
.ws7_c00209{word-spacing:-6.924399px;}
.ws2_c00209{word-spacing:-3.458599px;}
.ws5_c00209{word-spacing:-1.796178px;}
.ws1_c00209{word-spacing:-0.846774px;}
.wsc_c00209{word-spacing:0.000000px;}
.ws0_c00209{word-spacing:2.630350px;}
.ws6_c00209{word-spacing:3.883929px;}
.ws9_c00209{word-spacing:6.925754px;}
.ws4_c00209{word-spacing:8.181818px;}
.wsb_c00209{word-spacing:8.932961px;}
.wsa_c00209{word-spacing:26.944444px;}
.ws3_c00209{word-spacing:30.936306px;}
.fc0_c00209{color:transparent;}
.fs4_c00209{font-size:54.000000px;}
.fs3_c00209{font-size:60.000000px;}
.fs2_c00209{font-size:66.000000px;}
.fs1_c00209{font-size:72.000000px;}
.fs0_c00209{font-size:78.000000px;}
.y0_c00209{bottom:0.000000px;}
.y5d_c00209{bottom:196.200000px;}
.y37_c00209{bottom:196.800000px;}
.y5c_c00209{bottom:214.200000px;}
.y36_c00209{bottom:216.900000px;}
.y5b_c00209{bottom:231.900000px;}
.y35_c00209{bottom:232.350000px;}
.y5a_c00209{bottom:249.900000px;}
.y34_c00209{bottom:250.350000px;}
.y59_c00209{bottom:267.600000px;}
.y33_c00209{bottom:268.050000px;}
.y58_c00209{bottom:285.600000px;}
.y32_c00209{bottom:285.750000px;}
.y31_c00209{bottom:303.750000px;}
.y57_c00209{bottom:303.900000px;}
.y56_c00209{bottom:320.850000px;}
.y30_c00209{bottom:321.450000px;}
.y55_c00209{bottom:338.850000px;}
.y2f_c00209{bottom:339.150000px;}
.y54_c00209{bottom:356.850000px;}
.y2e_c00209{bottom:357.150000px;}
.y53_c00209{bottom:374.550000px;}
.y2d_c00209{bottom:375.150000px;}
.y52_c00209{bottom:392.250000px;}
.y2c_c00209{bottom:394.650000px;}
.y51_c00209{bottom:410.250000px;}
.y2b_c00209{bottom:414.750000px;}
.y50_c00209{bottom:427.950000px;}
.y2a_c00209{bottom:436.650000px;}
.y4f_c00209{bottom:445.950000px;}
.y29_c00209{bottom:454.650000px;}
.y4e_c00209{bottom:463.650000px;}
.y28_c00209{bottom:472.350000px;}
.y4d_c00209{bottom:481.350000px;}
.y27_c00209{bottom:489.900000px;}
.y4c_c00209{bottom:503.700000px;}
.y26_c00209{bottom:512.250000px;}
.y4b_c00209{bottom:525.150000px;}
.y25_c00209{bottom:530.250000px;}
.y4a_c00209{bottom:543.450000px;}
.y24_c00209{bottom:547.500000px;}
.y49_c00209{bottom:561.750000px;}
.y23_c00209{bottom:565.500000px;}
.y48_c00209{bottom:579.450000px;}
.y22_c00209{bottom:587.550000px;}
.y47_c00209{bottom:597.150000px;}
.y21_c00209{bottom:605.550000px;}
.y46_c00209{bottom:614.850000px;}
.y20_c00209{bottom:622.800000px;}
.y45_c00209{bottom:632.550000px;}
.y1f_c00209{bottom:640.500000px;}
.y44_c00209{bottom:650.550000px;}
.y1e_c00209{bottom:658.500000px;}
.y43_c00209{bottom:672.450000px;}
.y1d_c00209{bottom:676.500000px;}
.y42_c00209{bottom:690.150000px;}
.y1c_c00209{bottom:698.250000px;}
.y41_c00209{bottom:708.150000px;}
.y1b_c00209{bottom:715.950000px;}
.y40_c00209{bottom:730.050000px;}
.y1a_c00209{bottom:733.650000px;}
.y3f_c00209{bottom:748.050000px;}
.y19_c00209{bottom:751.350000px;}
.y3e_c00209{bottom:766.050000px;}
.y18_c00209{bottom:769.650000px;}
.y3d_c00209{bottom:783.300000px;}
.y17_c00209{bottom:786.900000px;}
.y3c_c00209{bottom:801.300000px;}
.y16_c00209{bottom:804.900000px;}
.y3b_c00209{bottom:819.000000px;}
.y15_c00209{bottom:822.150000px;}
.y3a_c00209{bottom:837.000000px;}
.y14_c00209{bottom:840.150000px;}
.y39_c00209{bottom:854.700000px;}
.y13_c00209{bottom:857.850000px;}
.y38_c00209{bottom:872.700000px;}
.y12_c00209{bottom:875.850000px;}
.y11_c00209{bottom:890.250000px;}
.yf_c00209{bottom:893.850000px;}
.ye_c00209{bottom:916.500000px;}
.yd_c00209{bottom:937.800000px;}
.yc_c00209{bottom:956.850000px;}
.yb_c00209{bottom:974.850000px;}
.ya_c00209{bottom:995.700000px;}
.y9_c00209{bottom:1014.450000px;}
.y8_c00209{bottom:1032.450000px;}
.y7_c00209{bottom:1050.150000px;}
.y6_c00209{bottom:1068.000000px;}
.y5_c00209{bottom:1085.700000px;}
.y4_c00209{bottom:1099.800000px;}
.y3_c00209{bottom:1103.700000px;}
.y10_c00209{bottom:1119.600000px;}
.y2_c00209{bottom:1121.400000px;}
.y1_c00209{bottom:1146.600000px;}
.h6_c00209{height:54.000000px;}
.h5_c00209{height:60.000000px;}
.h4_c00209{height:66.000000px;}
.h3_c00209{height:72.000000px;}
.h2_c00209{height:78.000000px;}
.h0_c00209{height:1271.160094px;}
.h1_c00209{height:1271.250000px;}
.w1_c00209{width:963.000000px;}
.w0_c00209{width:963.359985px;}
.x0_c00209{left:0.000000px;}
.xe0_c00209{left:176.100000px;}
.xd6_c00209{left:177.450000px;}
.x59_c00209{left:181.500000px;}
.xe8_c00209{left:193.350000px;}
.xd8_c00209{left:194.400000px;}
.xea_c00209{left:195.900000px;}
.xb7_c00209{left:197.250000px;}
.x7c_c00209{left:198.600000px;}
.x65_c00209{left:200.100000px;}
.x13_c00209{left:201.300000px;}
.x14_c00209{left:211.350000px;}
.xcd_c00209{left:213.300000px;}
.x82_c00209{left:214.950000px;}
.x40_c00209{left:217.050000px;}
.x25_c00209{left:218.400000px;}
.xc0_c00209{left:225.000000px;}
.x9d_c00209{left:226.350000px;}
.xae_c00209{left:227.850000px;}
.xe4_c00209{left:229.050000px;}
.xed_c00209{left:231.150000px;}
.x83_c00209{left:232.650000px;}
.xdf_c00209{left:234.300000px;}
.x18_c00209{left:235.800000px;}
.xe5_c00209{left:237.000000px;}
.xa5_c00209{left:238.350000px;}
.xc5_c00209{left:240.150000px;}
.xeb_c00209{left:241.200000px;}
.x15_c00209{left:243.750000px;}
.xe1_c00209{left:244.800000px;}
.x9e_c00209{left:245.850000px;}
.x41_c00209{left:247.950000px;}
.x92_c00209{left:249.900000px;}
.x6f_c00209{left:251.100000px;}
.x7d_c00209{left:252.300000px;}
.x26_c00209{left:253.650000px;}
.x16_c00209{left:254.850000px;}
.x32_c00209{left:256.350000px;}
.x8c_c00209{left:259.800000px;}
.x5a_c00209{left:261.450000px;}
.x93_c00209{left:262.800000px;}
.x4d_c00209{left:264.000000px;}
.xca_c00209{left:265.050000px;}
.xf4_c00209{left:266.550000px;}
.xc8_c00209{left:268.500000px;}
.x27_c00209{left:269.850000px;}
.xd1_c00209{left:274.050000px;}
.x5b_c00209{left:275.100000px;}
.x33_c00209{left:277.200000px;}
.x7e_c00209{left:279.600000px;}
.x8d_c00209{left:282.150000px;}
.x9f_c00209{left:285.750000px;}
.xb0_c00209{left:288.150000px;}
.x28_c00209{left:289.950000px;}
.xd9_c00209{left:291.600000px;}
.x66_c00209{left:293.400000px;}
.x42_c00209{left:296.850000px;}
.xa6_c00209{left:298.500000px;}
.xdd_c00209{left:299.550000px;}
.xb8_c00209{left:301.200000px;}
.xd4_c00209{left:302.700000px;}
.x19_c00209{left:304.200000px;}
.xb4_c00209{left:307.050000px;}
.xb2_c00209{left:308.250000px;}
.x4e_c00209{left:309.300000px;}
.x34_c00209{left:310.650000px;}
.x29_c00209{left:313.350000px;}
.x8e_c00209{left:315.300000px;}
.xf2_c00209{left:318.750000px;}
.x5c_c00209{left:320.100000px;}
.x84_c00209{left:321.300000px;}
.x1a_c00209{left:325.050000px;}
.x4f_c00209{left:327.000000px;}
.x7f_c00209{left:328.950000px;}
.xab_c00209{left:330.450000px;}
.x85_c00209{left:333.150000px;}
.x43_c00209{left:334.950000px;}
.x80_c00209{left:337.950000px;}
.xf3_c00209{left:339.300000px;}
.x8f_c00209{left:340.500000px;}
.x5d_c00209{left:341.700000px;}
.x70_c00209{left:345.900000px;}
.xc6_c00209{left:348.600000px;}
.xa7_c00209{left:350.400000px;}
.xcb_c00209{left:352.200000px;}
.x99_c00209{left:353.400000px;}
.xa0_c00209{left:357.450000px;}
.xbd_c00209{left:359.250000px;}
.xda_c00209{left:360.750000px;}
.x90_c00209{left:362.100000px;}
.xb1_c00209{left:364.500000px;}
.x81_c00209{left:365.700000px;}
.x67_c00209{left:368.250000px;}
.x35_c00209{left:369.600000px;}
.x86_c00209{left:370.650000px;}
.x50_c00209{left:372.000000px;}
.xb5_c00209{left:373.650000px;}
.xac_c00209{left:375.150000px;}
.xd5_c00209{left:376.200000px;}
.x1b_c00209{left:377.250000px;}
.xc1_c00209{left:378.750000px;}
.xcf_c00209{left:380.700000px;}
.xdb_c00209{left:382.350000px;}
.xde_c00209{left:383.400000px;}
.xd7_c00209{left:384.450000px;}
.xce_c00209{left:385.800000px;}
.x44_c00209{left:387.150000px;}
.xc2_c00209{left:389.850000px;}
.xb3_c00209{left:391.050000px;}
.xe6_c00209{left:393.000000px;}
.x71_c00209{left:394.500000px;}
.x51_c00209{left:395.700000px;}
.x1c_c00209{left:397.800000px;}
.x5e_c00209{left:401.100000px;}
.x2a_c00209{left:402.300000px;}
.xaf_c00209{left:403.500000px;}
.xdc_c00209{left:404.700000px;}
.xa1_c00209{left:406.800000px;}
.x91_c00209{left:409.650000px;}
.xbe_c00209{left:412.200000px;}
.xcc_c00209{left:415.200000px;}
.x52_c00209{left:416.550000px;}
.xa8_c00209{left:418.050000px;}
.x5f_c00209{left:419.100000px;}
.x1_c00209{left:420.900000px;}
.xb9_c00209{left:421.950000px;}
.xc3_c00209{left:424.800000px;}
.xd0_c00209{left:426.750000px;}
.xa2_c00209{left:428.100000px;}
.x72_c00209{left:430.800000px;}
.xec_c00209{left:433.500000px;}
.x87_c00209{left:435.150000px;}
.xe3_c00209{left:436.800000px;}
.xc4_c00209{left:438.150000px;}
.x94_c00209{left:440.250000px;}
.x36_c00209{left:441.600000px;}
.xf0_c00209{left:443.250000px;}
.xba_c00209{left:446.400000px;}
.x73_c00209{left:448.050000px;}
.xc7_c00209{left:450.750000px;}
.x53_c00209{left:451.800000px;}
.xee_c00209{left:452.850000px;}
.x9a_c00209{left:454.200000px;}
.x45_c00209{left:455.550000px;}
.x60_c00209{left:459.750000px;}
.x68_c00209{left:461.550000px;}
.xd3_c00209{left:463.950000px;}
.x1d_c00209{left:466.500000px;}
.xbb_c00209{left:468.300000px;}
.x2b_c00209{left:469.650000px;}
.x9b_c00209{left:472.500000px;}
.xef_c00209{left:474.450000px;}
.x46_c00209{left:475.650000px;}
.xe2_c00209{left:477.600000px;}
.xa3_c00209{left:479.550000px;}
.xd2_c00209{left:480.600000px;}
.xad_c00209{left:482.400000px;}
.xbc_c00209{left:484.200000px;}
.xa9_c00209{left:486.750000px;}
.xbf_c00209{left:487.800000px;}
.xe7_c00209{left:489.300000px;}
.xf1_c00209{left:492.900000px;}
.xaa_c00209{left:494.700000px;}
.x74_c00209{left:495.900000px;}
.x9c_c00209{left:497.700000px;}
.xb6_c00209{left:499.650000px;}
.xa4_c00209{left:501.900000px;}
.xe9_c00209{left:503.700000px;}
.xc9_c00209{left:509.550000px;}
.xf5_c00209{left:521.850000px;}
.x131_c00209{left:534.300000px;}
.x133_c00209{left:535.350000px;}
.x111_c00209{left:536.400000px;}
.x69_c00209{left:537.450000px;}
.x114_c00209{left:545.700000px;}
.x14b_c00209{left:550.050000px;}
.x12d_c00209{left:551.250000px;}
.x11f_c00209{left:552.450000px;}
.x110_c00209{left:553.500000px;}
.xf6_c00209{left:554.700000px;}
.x2_c00209{left:555.900000px;}
.x54_c00209{left:556.950000px;}
.x75_c00209{left:567.300000px;}
.x55_c00209{left:569.550000px;}
.x47_c00209{left:571.050000px;}
.x61_c00209{left:572.100000px;}
.x134_c00209{left:573.150000px;}
.x95_c00209{left:575.700000px;}
.x10c_c00209{left:578.550000px;}
.x13d_c00209{left:580.200000px;}
.xc_c00209{left:582.450000px;}
.x120_c00209{left:585.600000px;}
.x14c_c00209{left:589.650000px;}
.x105_c00209{left:593.250000px;}
.x37_c00209{left:595.350000px;}
.x6a_c00209{left:597.150000px;}
.xd_c00209{left:598.950000px;}
.x135_c00209{left:600.150000px;}
.x96_c00209{left:601.650000px;}
.xff_c00209{left:603.300000px;}
.xf7_c00209{left:605.400000px;}
.x88_c00209{left:606.450000px;}
.x38_c00209{left:607.950000px;}
.x6b_c00209{left:610.500000px;}
.x3_c00209{left:612.750000px;}
.xfb_c00209{left:615.900000px;}
.x13e_c00209{left:617.400000px;}
.x1e_c00209{left:618.450000px;}
.x48_c00209{left:619.650000px;}
.x106_c00209{left:621.000000px;}
.x2c_c00209{left:623.400000px;}
.x146_c00209{left:624.600000px;}
.x14d_c00209{left:625.650000px;}
.x132_c00209{left:627.900000px;}
.x4_c00209{left:634.050000px;}
.x62_c00209{left:635.400000px;}
.x76_c00209{left:637.200000px;}
.x1f_c00209{left:639.000000px;}
.x13c_c00209{left:641.850000px;}
.x49_c00209{left:643.800000px;}
.x119_c00209{left:645.150000px;}
.x129_c00209{left:646.200000px;}
.x107_c00209{left:647.250000px;}
.x125_c00209{left:649.050000px;}
.x77_c00209{left:650.100000px;}
.x136_c00209{left:652.050000px;}
.xe_c00209{left:654.450000px;}
.x144_c00209{left:657.000000px;}
.x39_c00209{left:658.050000px;}
.x137_c00209{left:659.850000px;}
.x11b_c00209{left:661.950000px;}
.x142_c00209{left:663.600000px;}
.x5_c00209{left:664.650000px;}
.x78_c00209{left:666.000000px;}
.x13f_c00209{left:667.500000px;}
.x20_c00209{left:668.550000px;}
.x63_c00209{left:670.350000px;}
.x112_c00209{left:672.150000px;}
.x10a_c00209{left:673.350000px;}
.x139_c00209{left:674.700000px;}
.x89_c00209{left:676.950000px;}
.x2d_c00209{left:679.500000px;}
.x103_c00209{left:680.550000px;}
.x4a_c00209{left:681.900000px;}
.x113_c00209{left:683.250000px;}
.x17_c00209{left:685.050000px;}
.x100_c00209{left:687.150000px;}
.x11c_c00209{left:688.200000px;}
.x6_c00209{left:689.850000px;}
.xf8_c00209{left:691.050000px;}
.x140_c00209{left:692.700000px;}
.x10d_c00209{left:694.500000px;}
.x14a_c00209{left:695.700000px;}
.x3a_c00209{left:699.450000px;}
.x147_c00209{left:702.750000px;}
.x104_c00209{left:703.950000px;}
.x7_c00209{left:705.750000px;}
.x21_c00209{left:707.100000px;}
.x56_c00209{left:708.150000px;}
.x141_c00209{left:711.750000px;}
.x6c_c00209{left:713.400000px;}
.x121_c00209{left:714.900000px;}
.x3b_c00209{left:715.950000px;}
.x148_c00209{left:718.200000px;}
.x64_c00209{left:719.250000px;}
.x12a_c00209{left:720.750000px;}
.x126_c00209{left:721.800000px;}
.x79_c00209{left:723.900000px;}
.x2e_c00209{left:725.550000px;}
.x10b_c00209{left:726.900000px;}
.x22_c00209{left:731.250000px;}
.x12e_c00209{left:734.400000px;}
.xf_c00209{left:735.450000px;}
.x11d_c00209{left:736.500000px;}
.x11a_c00209{left:739.500000px;}
.x10e_c00209{left:742.050000px;}
.x138_c00209{left:743.400000px;}
.x8a_c00209{left:744.600000px;}
.xfc_c00209{left:746.250000px;}
.x97_c00209{left:747.450000px;}
.x12b_c00209{left:748.500000px;}
.x122_c00209{left:749.850000px;}
.x7a_c00209{left:752.250000px;}
.x3c_c00209{left:754.050000px;}
.x8_c00209{left:757.200000px;}
.x108_c00209{left:758.850000px;}
.x115_c00209{left:760.650000px;}
.x8b_c00209{left:762.300000px;}
.x10_c00209{left:763.950000px;}
.x3d_c00209{left:765.900000px;}
.x4b_c00209{left:768.300000px;}
.x149_c00209{left:770.400000px;}
.x23_c00209{left:772.350000px;}
.x57_c00209{left:773.700000px;}
.xf9_c00209{left:775.050000px;}
.x14e_c00209{left:776.850000px;}
.x6d_c00209{left:779.250000px;}
.x4c_c00209{left:781.650000px;}
.x9_c00209{left:782.700000px;}
.x58_c00209{left:784.200000px;}
.x127_c00209{left:786.900000px;}
.x12c_c00209{left:788.850000px;}
.xfd_c00209{left:792.300000px;}
.x116_c00209{left:795.600000px;}
.x12f_c00209{left:796.650000px;}
.x2f_c00209{left:799.050000px;}
.xfa_c00209{left:801.000000px;}
.xa_c00209{left:802.800000px;}
.x145_c00209{left:803.850000px;}
.x10f_c00209{left:806.850000px;}
.x11_c00209{left:808.200000px;}
.x123_c00209{left:810.000000px;}
.x117_c00209{left:811.800000px;}
.x6e_c00209{left:813.150000px;}
.x3e_c00209{left:816.000000px;}
.x30_c00209{left:818.850000px;}
.x130_c00209{left:820.050000px;}
.xfe_c00209{left:821.400000px;}
.x143_c00209{left:822.750000px;}
.x109_c00209{left:823.950000px;}
.x128_c00209{left:825.450000px;}
.x101_c00209{left:826.800000px;}
.x12_c00209{left:829.500000px;}
.x3f_c00209{left:831.450000px;}
.x102_c00209{left:834.450000px;}
.x98_c00209{left:838.500000px;}
.x7b_c00209{left:840.150000px;}
.x13a_c00209{left:844.650000px;}
.x124_c00209{left:846.750000px;}
.x13b_c00209{left:848.250000px;}
.x118_c00209{left:852.450000px;}
.x11e_c00209{left:854.850000px;}
.x24_c00209{left:857.700000px;}
.xb_c00209{left:861.450000px;}
.x31_c00209{left:866.400000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws8_c00209{word-spacing:-8.232897pt;}
.ws7_c00209{word-spacing:-6.155021pt;}
.ws2_c00209{word-spacing:-3.074310pt;}
.ws5_c00209{word-spacing:-1.596603pt;}
.ws1_c00209{word-spacing:-0.752688pt;}
.wsc_c00209{word-spacing:0.000000pt;}
.ws0_c00209{word-spacing:2.338089pt;}
.ws6_c00209{word-spacing:3.452381pt;}
.ws9_c00209{word-spacing:6.156226pt;}
.ws4_c00209{word-spacing:7.272727pt;}
.wsb_c00209{word-spacing:7.940410pt;}
.wsa_c00209{word-spacing:23.950617pt;}
.ws3_c00209{word-spacing:27.498938pt;}
.fs4_c00209{font-size:48.000000pt;}
.fs3_c00209{font-size:53.333333pt;}
.fs2_c00209{font-size:58.666667pt;}
.fs1_c00209{font-size:64.000000pt;}
.fs0_c00209{font-size:69.333333pt;}
.y0_c00209{bottom:0.000000pt;}
.y5d_c00209{bottom:174.400000pt;}
.y37_c00209{bottom:174.933333pt;}
.y5c_c00209{bottom:190.400000pt;}
.y36_c00209{bottom:192.800000pt;}
.y5b_c00209{bottom:206.133333pt;}
.y35_c00209{bottom:206.533333pt;}
.y5a_c00209{bottom:222.133333pt;}
.y34_c00209{bottom:222.533333pt;}
.y59_c00209{bottom:237.866667pt;}
.y33_c00209{bottom:238.266667pt;}
.y58_c00209{bottom:253.866667pt;}
.y32_c00209{bottom:254.000000pt;}
.y31_c00209{bottom:270.000000pt;}
.y57_c00209{bottom:270.133333pt;}
.y56_c00209{bottom:285.200000pt;}
.y30_c00209{bottom:285.733333pt;}
.y55_c00209{bottom:301.200000pt;}
.y2f_c00209{bottom:301.466667pt;}
.y54_c00209{bottom:317.200000pt;}
.y2e_c00209{bottom:317.466667pt;}
.y53_c00209{bottom:332.933333pt;}
.y2d_c00209{bottom:333.466667pt;}
.y52_c00209{bottom:348.666667pt;}
.y2c_c00209{bottom:350.800000pt;}
.y51_c00209{bottom:364.666667pt;}
.y2b_c00209{bottom:368.666667pt;}
.y50_c00209{bottom:380.400000pt;}
.y2a_c00209{bottom:388.133333pt;}
.y4f_c00209{bottom:396.400000pt;}
.y29_c00209{bottom:404.133333pt;}
.y4e_c00209{bottom:412.133333pt;}
.y28_c00209{bottom:419.866667pt;}
.y4d_c00209{bottom:427.866667pt;}
.y27_c00209{bottom:435.466667pt;}
.y4c_c00209{bottom:447.733333pt;}
.y26_c00209{bottom:455.333333pt;}
.y4b_c00209{bottom:466.800000pt;}
.y25_c00209{bottom:471.333333pt;}
.y4a_c00209{bottom:483.066667pt;}
.y24_c00209{bottom:486.666667pt;}
.y49_c00209{bottom:499.333333pt;}
.y23_c00209{bottom:502.666667pt;}
.y48_c00209{bottom:515.066667pt;}
.y22_c00209{bottom:522.266667pt;}
.y47_c00209{bottom:530.800000pt;}
.y21_c00209{bottom:538.266667pt;}
.y46_c00209{bottom:546.533333pt;}
.y20_c00209{bottom:553.600000pt;}
.y45_c00209{bottom:562.266667pt;}
.y1f_c00209{bottom:569.333333pt;}
.y44_c00209{bottom:578.266667pt;}
.y1e_c00209{bottom:585.333333pt;}
.y43_c00209{bottom:597.733333pt;}
.y1d_c00209{bottom:601.333333pt;}
.y42_c00209{bottom:613.466667pt;}
.y1c_c00209{bottom:620.666667pt;}
.y41_c00209{bottom:629.466667pt;}
.y1b_c00209{bottom:636.400000pt;}
.y40_c00209{bottom:648.933333pt;}
.y1a_c00209{bottom:652.133333pt;}
.y3f_c00209{bottom:664.933333pt;}
.y19_c00209{bottom:667.866667pt;}
.y3e_c00209{bottom:680.933333pt;}
.y18_c00209{bottom:684.133333pt;}
.y3d_c00209{bottom:696.266667pt;}
.y17_c00209{bottom:699.466667pt;}
.y3c_c00209{bottom:712.266667pt;}
.y16_c00209{bottom:715.466667pt;}
.y3b_c00209{bottom:728.000000pt;}
.y15_c00209{bottom:730.800000pt;}
.y3a_c00209{bottom:744.000000pt;}
.y14_c00209{bottom:746.800000pt;}
.y39_c00209{bottom:759.733333pt;}
.y13_c00209{bottom:762.533333pt;}
.y38_c00209{bottom:775.733333pt;}
.y12_c00209{bottom:778.533333pt;}
.y11_c00209{bottom:791.333333pt;}
.yf_c00209{bottom:794.533333pt;}
.ye_c00209{bottom:814.666667pt;}
.yd_c00209{bottom:833.600000pt;}
.yc_c00209{bottom:850.533333pt;}
.yb_c00209{bottom:866.533333pt;}
.ya_c00209{bottom:885.066667pt;}
.y9_c00209{bottom:901.733333pt;}
.y8_c00209{bottom:917.733333pt;}
.y7_c00209{bottom:933.466667pt;}
.y6_c00209{bottom:949.333333pt;}
.y5_c00209{bottom:965.066667pt;}
.y4_c00209{bottom:977.600000pt;}
.y3_c00209{bottom:981.066667pt;}
.y10_c00209{bottom:995.200000pt;}
.y2_c00209{bottom:996.800000pt;}
.y1_c00209{bottom:1019.200000pt;}
.h6_c00209{height:48.000000pt;}
.h5_c00209{height:53.333333pt;}
.h4_c00209{height:58.666667pt;}
.h3_c00209{height:64.000000pt;}
.h2_c00209{height:69.333333pt;}
.h0_c00209{height:1129.920084pt;}
.h1_c00209{height:1130.000000pt;}
.w1_c00209{width:856.000000pt;}
.w0_c00209{width:856.319987pt;}
.x0_c00209{left:0.000000pt;}
.xe0_c00209{left:156.533333pt;}
.xd6_c00209{left:157.733333pt;}
.x59_c00209{left:161.333333pt;}
.xe8_c00209{left:171.866667pt;}
.xd8_c00209{left:172.800000pt;}
.xea_c00209{left:174.133333pt;}
.xb7_c00209{left:175.333333pt;}
.x7c_c00209{left:176.533333pt;}
.x65_c00209{left:177.866667pt;}
.x13_c00209{left:178.933333pt;}
.x14_c00209{left:187.866667pt;}
.xcd_c00209{left:189.600000pt;}
.x82_c00209{left:191.066667pt;}
.x40_c00209{left:192.933333pt;}
.x25_c00209{left:194.133333pt;}
.xc0_c00209{left:200.000000pt;}
.x9d_c00209{left:201.200000pt;}
.xae_c00209{left:202.533333pt;}
.xe4_c00209{left:203.600000pt;}
.xed_c00209{left:205.466667pt;}
.x83_c00209{left:206.800000pt;}
.xdf_c00209{left:208.266667pt;}
.x18_c00209{left:209.600000pt;}
.xe5_c00209{left:210.666667pt;}
.xa5_c00209{left:211.866667pt;}
.xc5_c00209{left:213.466667pt;}
.xeb_c00209{left:214.400000pt;}
.x15_c00209{left:216.666667pt;}
.xe1_c00209{left:217.600000pt;}
.x9e_c00209{left:218.533333pt;}
.x41_c00209{left:220.400000pt;}
.x92_c00209{left:222.133333pt;}
.x6f_c00209{left:223.200000pt;}
.x7d_c00209{left:224.266667pt;}
.x26_c00209{left:225.466667pt;}
.x16_c00209{left:226.533333pt;}
.x32_c00209{left:227.866667pt;}
.x8c_c00209{left:230.933333pt;}
.x5a_c00209{left:232.400000pt;}
.x93_c00209{left:233.600000pt;}
.x4d_c00209{left:234.666667pt;}
.xca_c00209{left:235.600000pt;}
.xf4_c00209{left:236.933333pt;}
.xc8_c00209{left:238.666667pt;}
.x27_c00209{left:239.866667pt;}
.xd1_c00209{left:243.600000pt;}
.x5b_c00209{left:244.533333pt;}
.x33_c00209{left:246.400000pt;}
.x7e_c00209{left:248.533333pt;}
.x8d_c00209{left:250.800000pt;}
.x9f_c00209{left:254.000000pt;}
.xb0_c00209{left:256.133333pt;}
.x28_c00209{left:257.733333pt;}
.xd9_c00209{left:259.200000pt;}
.x66_c00209{left:260.800000pt;}
.x42_c00209{left:263.866667pt;}
.xa6_c00209{left:265.333333pt;}
.xdd_c00209{left:266.266667pt;}
.xb8_c00209{left:267.733333pt;}
.xd4_c00209{left:269.066667pt;}
.x19_c00209{left:270.400000pt;}
.xb4_c00209{left:272.933333pt;}
.xb2_c00209{left:274.000000pt;}
.x4e_c00209{left:274.933333pt;}
.x34_c00209{left:276.133333pt;}
.x29_c00209{left:278.533333pt;}
.x8e_c00209{left:280.266667pt;}
.xf2_c00209{left:283.333333pt;}
.x5c_c00209{left:284.533333pt;}
.x84_c00209{left:285.600000pt;}
.x1a_c00209{left:288.933333pt;}
.x4f_c00209{left:290.666667pt;}
.x7f_c00209{left:292.400000pt;}
.xab_c00209{left:293.733333pt;}
.x85_c00209{left:296.133333pt;}
.x43_c00209{left:297.733333pt;}
.x80_c00209{left:300.400000pt;}
.xf3_c00209{left:301.600000pt;}
.x8f_c00209{left:302.666667pt;}
.x5d_c00209{left:303.733333pt;}
.x70_c00209{left:307.466667pt;}
.xc6_c00209{left:309.866667pt;}
.xa7_c00209{left:311.466667pt;}
.xcb_c00209{left:313.066667pt;}
.x99_c00209{left:314.133333pt;}
.xa0_c00209{left:317.733333pt;}
.xbd_c00209{left:319.333333pt;}
.xda_c00209{left:320.666667pt;}
.x90_c00209{left:321.866667pt;}
.xb1_c00209{left:324.000000pt;}
.x81_c00209{left:325.066667pt;}
.x67_c00209{left:327.333333pt;}
.x35_c00209{left:328.533333pt;}
.x86_c00209{left:329.466667pt;}
.x50_c00209{left:330.666667pt;}
.xb5_c00209{left:332.133333pt;}
.xac_c00209{left:333.466667pt;}
.xd5_c00209{left:334.400000pt;}
.x1b_c00209{left:335.333333pt;}
.xc1_c00209{left:336.666667pt;}
.xcf_c00209{left:338.400000pt;}
.xdb_c00209{left:339.866667pt;}
.xde_c00209{left:340.800000pt;}
.xd7_c00209{left:341.733333pt;}
.xce_c00209{left:342.933333pt;}
.x44_c00209{left:344.133333pt;}
.xc2_c00209{left:346.533333pt;}
.xb3_c00209{left:347.600000pt;}
.xe6_c00209{left:349.333333pt;}
.x71_c00209{left:350.666667pt;}
.x51_c00209{left:351.733333pt;}
.x1c_c00209{left:353.600000pt;}
.x5e_c00209{left:356.533333pt;}
.x2a_c00209{left:357.600000pt;}
.xaf_c00209{left:358.666667pt;}
.xdc_c00209{left:359.733333pt;}
.xa1_c00209{left:361.600000pt;}
.x91_c00209{left:364.133333pt;}
.xbe_c00209{left:366.400000pt;}
.xcc_c00209{left:369.066667pt;}
.x52_c00209{left:370.266667pt;}
.xa8_c00209{left:371.600000pt;}
.x5f_c00209{left:372.533333pt;}
.x1_c00209{left:374.133333pt;}
.xb9_c00209{left:375.066667pt;}
.xc3_c00209{left:377.600000pt;}
.xd0_c00209{left:379.333333pt;}
.xa2_c00209{left:380.533333pt;}
.x72_c00209{left:382.933333pt;}
.xec_c00209{left:385.333333pt;}
.x87_c00209{left:386.800000pt;}
.xe3_c00209{left:388.266667pt;}
.xc4_c00209{left:389.466667pt;}
.x94_c00209{left:391.333333pt;}
.x36_c00209{left:392.533333pt;}
.xf0_c00209{left:394.000000pt;}
.xba_c00209{left:396.800000pt;}
.x73_c00209{left:398.266667pt;}
.xc7_c00209{left:400.666667pt;}
.x53_c00209{left:401.600000pt;}
.xee_c00209{left:402.533333pt;}
.x9a_c00209{left:403.733333pt;}
.x45_c00209{left:404.933333pt;}
.x60_c00209{left:408.666667pt;}
.x68_c00209{left:410.266667pt;}
.xd3_c00209{left:412.400000pt;}
.x1d_c00209{left:414.666667pt;}
.xbb_c00209{left:416.266667pt;}
.x2b_c00209{left:417.466667pt;}
.x9b_c00209{left:420.000000pt;}
.xef_c00209{left:421.733333pt;}
.x46_c00209{left:422.800000pt;}
.xe2_c00209{left:424.533333pt;}
.xa3_c00209{left:426.266667pt;}
.xd2_c00209{left:427.200000pt;}
.xad_c00209{left:428.800000pt;}
.xbc_c00209{left:430.400000pt;}
.xa9_c00209{left:432.666667pt;}
.xbf_c00209{left:433.600000pt;}
.xe7_c00209{left:434.933333pt;}
.xf1_c00209{left:438.133333pt;}
.xaa_c00209{left:439.733333pt;}
.x74_c00209{left:440.800000pt;}
.x9c_c00209{left:442.400000pt;}
.xb6_c00209{left:444.133333pt;}
.xa4_c00209{left:446.133333pt;}
.xe9_c00209{left:447.733333pt;}
.xc9_c00209{left:452.933333pt;}
.xf5_c00209{left:463.866667pt;}
.x131_c00209{left:474.933333pt;}
.x133_c00209{left:475.866667pt;}
.x111_c00209{left:476.800000pt;}
.x69_c00209{left:477.733333pt;}
.x114_c00209{left:485.066667pt;}
.x14b_c00209{left:488.933333pt;}
.x12d_c00209{left:490.000000pt;}
.x11f_c00209{left:491.066667pt;}
.x110_c00209{left:492.000000pt;}
.xf6_c00209{left:493.066667pt;}
.x2_c00209{left:494.133333pt;}
.x54_c00209{left:495.066667pt;}
.x75_c00209{left:504.266667pt;}
.x55_c00209{left:506.266667pt;}
.x47_c00209{left:507.600000pt;}
.x61_c00209{left:508.533333pt;}
.x134_c00209{left:509.466667pt;}
.x95_c00209{left:511.733333pt;}
.x10c_c00209{left:514.266667pt;}
.x13d_c00209{left:515.733333pt;}
.xc_c00209{left:517.733333pt;}
.x120_c00209{left:520.533333pt;}
.x14c_c00209{left:524.133333pt;}
.x105_c00209{left:527.333333pt;}
.x37_c00209{left:529.200000pt;}
.x6a_c00209{left:530.800000pt;}
.xd_c00209{left:532.400000pt;}
.x135_c00209{left:533.466667pt;}
.x96_c00209{left:534.800000pt;}
.xff_c00209{left:536.266667pt;}
.xf7_c00209{left:538.133333pt;}
.x88_c00209{left:539.066667pt;}
.x38_c00209{left:540.400000pt;}
.x6b_c00209{left:542.666667pt;}
.x3_c00209{left:544.666667pt;}
.xfb_c00209{left:547.466667pt;}
.x13e_c00209{left:548.800000pt;}
.x1e_c00209{left:549.733333pt;}
.x48_c00209{left:550.800000pt;}
.x106_c00209{left:552.000000pt;}
.x2c_c00209{left:554.133333pt;}
.x146_c00209{left:555.200000pt;}
.x14d_c00209{left:556.133333pt;}
.x132_c00209{left:558.133333pt;}
.x4_c00209{left:563.600000pt;}
.x62_c00209{left:564.800000pt;}
.x76_c00209{left:566.400000pt;}
.x1f_c00209{left:568.000000pt;}
.x13c_c00209{left:570.533333pt;}
.x49_c00209{left:572.266667pt;}
.x119_c00209{left:573.466667pt;}
.x129_c00209{left:574.400000pt;}
.x107_c00209{left:575.333333pt;}
.x125_c00209{left:576.933333pt;}
.x77_c00209{left:577.866667pt;}
.x136_c00209{left:579.600000pt;}
.xe_c00209{left:581.733333pt;}
.x144_c00209{left:584.000000pt;}
.x39_c00209{left:584.933333pt;}
.x137_c00209{left:586.533333pt;}
.x11b_c00209{left:588.400000pt;}
.x142_c00209{left:589.866667pt;}
.x5_c00209{left:590.800000pt;}
.x78_c00209{left:592.000000pt;}
.x13f_c00209{left:593.333333pt;}
.x20_c00209{left:594.266667pt;}
.x63_c00209{left:595.866667pt;}
.x112_c00209{left:597.466667pt;}
.x10a_c00209{left:598.533333pt;}
.x139_c00209{left:599.733333pt;}
.x89_c00209{left:601.733333pt;}
.x2d_c00209{left:604.000000pt;}
.x103_c00209{left:604.933333pt;}
.x4a_c00209{left:606.133333pt;}
.x113_c00209{left:607.333333pt;}
.x17_c00209{left:608.933333pt;}
.x100_c00209{left:610.800000pt;}
.x11c_c00209{left:611.733333pt;}
.x6_c00209{left:613.200000pt;}
.xf8_c00209{left:614.266667pt;}
.x140_c00209{left:615.733333pt;}
.x10d_c00209{left:617.333333pt;}
.x14a_c00209{left:618.400000pt;}
.x3a_c00209{left:621.733333pt;}
.x147_c00209{left:624.666667pt;}
.x104_c00209{left:625.733333pt;}
.x7_c00209{left:627.333333pt;}
.x21_c00209{left:628.533333pt;}
.x56_c00209{left:629.466667pt;}
.x141_c00209{left:632.666667pt;}
.x6c_c00209{left:634.133333pt;}
.x121_c00209{left:635.466667pt;}
.x3b_c00209{left:636.400000pt;}
.x148_c00209{left:638.400000pt;}
.x64_c00209{left:639.333333pt;}
.x12a_c00209{left:640.666667pt;}
.x126_c00209{left:641.600000pt;}
.x79_c00209{left:643.466667pt;}
.x2e_c00209{left:644.933333pt;}
.x10b_c00209{left:646.133333pt;}
.x22_c00209{left:650.000000pt;}
.x12e_c00209{left:652.800000pt;}
.xf_c00209{left:653.733333pt;}
.x11d_c00209{left:654.666667pt;}
.x11a_c00209{left:657.333333pt;}
.x10e_c00209{left:659.600000pt;}
.x138_c00209{left:660.800000pt;}
.x8a_c00209{left:661.866667pt;}
.xfc_c00209{left:663.333333pt;}
.x97_c00209{left:664.400000pt;}
.x12b_c00209{left:665.333333pt;}
.x122_c00209{left:666.533333pt;}
.x7a_c00209{left:668.666667pt;}
.x3c_c00209{left:670.266667pt;}
.x8_c00209{left:673.066667pt;}
.x108_c00209{left:674.533333pt;}
.x115_c00209{left:676.133333pt;}
.x8b_c00209{left:677.600000pt;}
.x10_c00209{left:679.066667pt;}
.x3d_c00209{left:680.800000pt;}
.x4b_c00209{left:682.933333pt;}
.x149_c00209{left:684.800000pt;}
.x23_c00209{left:686.533333pt;}
.x57_c00209{left:687.733333pt;}
.xf9_c00209{left:688.933333pt;}
.x14e_c00209{left:690.533333pt;}
.x6d_c00209{left:692.666667pt;}
.x4c_c00209{left:694.800000pt;}
.x9_c00209{left:695.733333pt;}
.x58_c00209{left:697.066667pt;}
.x127_c00209{left:699.466667pt;}
.x12c_c00209{left:701.200000pt;}
.xfd_c00209{left:704.266667pt;}
.x116_c00209{left:707.200000pt;}
.x12f_c00209{left:708.133333pt;}
.x2f_c00209{left:710.266667pt;}
.xfa_c00209{left:712.000000pt;}
.xa_c00209{left:713.600000pt;}
.x145_c00209{left:714.533333pt;}
.x10f_c00209{left:717.200000pt;}
.x11_c00209{left:718.400000pt;}
.x123_c00209{left:720.000000pt;}
.x117_c00209{left:721.600000pt;}
.x6e_c00209{left:722.800000pt;}
.x3e_c00209{left:725.333333pt;}
.x30_c00209{left:727.866667pt;}
.x130_c00209{left:728.933333pt;}
.xfe_c00209{left:730.133333pt;}
.x143_c00209{left:731.333333pt;}
.x109_c00209{left:732.400000pt;}
.x128_c00209{left:733.733333pt;}
.x101_c00209{left:734.933333pt;}
.x12_c00209{left:737.333333pt;}
.x3f_c00209{left:739.066667pt;}
.x102_c00209{left:741.733333pt;}
.x98_c00209{left:745.333333pt;}
.x7b_c00209{left:746.800000pt;}
.x13a_c00209{left:750.800000pt;}
.x124_c00209{left:752.666667pt;}
.x13b_c00209{left:754.000000pt;}
.x118_c00209{left:757.733333pt;}
.x11e_c00209{left:759.866667pt;}
.x24_c00209{left:762.400000pt;}
.xb_c00209{left:765.733333pt;}
.x31_c00209{left:770.133333pt;}
}





/* 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_c00210 {
    display:none;
  }
  .loading-indicator_c00210.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00210 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_c00210 { 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_c00210" -> "#page-container .classname_c00210")
 */
.pf_c00210 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00210 { /* 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_c00210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00210 { /* 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_c00210 { /* 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_c00210 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00210 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00210 {overflow:visible;}
  }
}
.c_c00210 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00210 { /* 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_c00210:after { /* webkit #35443 */
  content: '';
}
.t_c00210:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00210 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 */
}
.__c00210 { /* 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_c00210 { /* info for Javascript */
  display:none;
}
.l_c00210 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00210 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00210 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00210: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_c00210 {
    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_c00210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00210.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_c00210 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00210;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.000000;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;}
.mb8_c00210{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00210{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00210{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00210{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me2_c00210{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00210{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.med_c00210{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00210{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00210{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m101_c00210{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m32_c00210{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00210{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00210{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m30_c00210{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m100_c00210{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00210{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00210{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m76_c00210{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mca_c00210{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00210{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00210{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00210{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00210{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m46_c00210{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00210{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m58_c00210{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m89_c00210{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mac_c00210{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00210{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m26_c00210{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9_c00210{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00210{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m95_c00210{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m69_c00210{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m55_c00210{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m68_c00210{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m84_c00210{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m17_c00210{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m75_c00210{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00210{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md1_c00210{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00210{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m74_c00210{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00210{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m15_c00210{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m33_c00210{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00210{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m71_c00210{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00210{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00210{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m97_c00210{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00210{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m57_c00210{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00210{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m24_c00210{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00210{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.md3_c00210{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00210{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00210{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00210{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m35_c00210{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00210{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me0_c00210{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m99_c00210{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m66_c00210{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00210{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m96_c00210{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00210{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00210{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00210{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m94_c00210{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m16_c00210{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me4_c00210{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m87_c00210{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m31_c00210{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00210{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00210{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00210{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me8_c00210{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00210{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m67_c00210{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m73_c00210{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00210{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.me1_c00210{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8_c00210{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00210{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m92_c00210{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m91_c00210{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00210{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me9_c00210{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m83_c00210{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m36_c00210{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mec_c00210{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m53_c00210{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m72_c00210{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m49_c00210{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m40_c00210{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00210{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00210{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m11_c00210{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00210{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m70_c00210{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mde_c00210{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00210{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m65_c00210{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md8_c00210{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00210{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m90_c00210{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00210{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m19_c00210{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m81_c00210{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m82_c00210{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m80_c00210{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00210{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6_c00210{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00210{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md0_c00210{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00210{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m85_c00210{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mae_c00210{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00210{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00210{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00210{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00210{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m63_c00210{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m88_c00210{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00210{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00210{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00210{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m42_c00210{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00210{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m56_c00210{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00210{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00210{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m25_c00210{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m29_c00210{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.me3_c00210{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00210{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00210{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md7_c00210{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00210{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m18_c00210{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m64_c00210{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00210{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mce_c00210{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mab_c00210{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.ma_c00210{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m23_c00210{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m93_c00210{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00210{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m79_c00210{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00210{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00210{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00210{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00210{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00210{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m37_c00210{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00210{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00210{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00210{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m54_c00210{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m51_c00210{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m98_c00210{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00210{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00210{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me5_c00210{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00210{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00210{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mad_c00210{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m48_c00210{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb_c00210{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m12_c00210{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00210{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m22_c00210{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m38_c00210{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md5_c00210{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00210{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m43_c00210{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me_c00210{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.meb_c00210{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md6_c00210{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00210{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10_c00210{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00210{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m45_c00210{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mee_c00210{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m86_c00210{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00210{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00210{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00210{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00210{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf_c00210{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00210{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md4_c00210{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m59_c00210{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m39_c00210{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00210{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m102_c00210{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.maa_c00210{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m44_c00210{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m28_c00210{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00210{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00210{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m50_c00210{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00210{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m13_c00210{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me6_c00210{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1_c00210{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00210{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00210{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m5_c00210{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mba_c00210{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m14_c00210{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00210{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc_c00210{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00210{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00210{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m52_c00210{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m77_c00210{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00210{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mea_c00210{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md_c00210{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00210{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m78_c00210{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.me7_c00210{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00210{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md9_c00210{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00210{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m62_c00210{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00210{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m27_c00210{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m20_c00210{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00210{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m61_c00210{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m21_c00210{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00210{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mda_c00210{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00210{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00210{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mff_c00210{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00210{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m41_c00210{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00210{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m3_c00210{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7_c00210{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m47_c00210{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00210{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00210{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00210{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mef_c00210{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m60_c00210{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00210{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m34_c00210{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m103_c00210{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.maf_c00210{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00210{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);}
.md2_c00210{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls0_c00210{letter-spacing:0.000000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{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__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00210{word-spacing:-3.477663px;}
.ws1_c00210{word-spacing:-1.865330px;}
.ws3_c00210{word-spacing:-1.433121px;}
.ws2_c00210{word-spacing:-0.137615px;}
.ws4_c00210{word-spacing:0.000000px;}
.fc0_c00210{color:transparent;}
.fs1_c00210{font-size:60.000000px;}
.fs2_c00210{font-size:66.000000px;}
.fs3_c00210{font-size:72.000000px;}
.fs0_c00210{font-size:78.000000px;}
.y0_c00210{bottom:0.000000px;}
.y66_c00210{bottom:171.300000px;}
.y34_c00210{bottom:187.200000px;}
.y65_c00210{bottom:189.600000px;}
.y64_c00210{bottom:207.300000px;}
.y33_c00210{bottom:209.400000px;}
.y63_c00210{bottom:225.000000px;}
.y32_c00210{bottom:227.100000px;}
.y62_c00210{bottom:242.700000px;}
.y31_c00210{bottom:245.100000px;}
.y30_c00210{bottom:262.800000px;}
.y61_c00210{bottom:263.850000px;}
.y2f_c00210{bottom:280.500000px;}
.y60_c00210{bottom:282.600000px;}
.y2e_c00210{bottom:298.200000px;}
.y5f_c00210{bottom:303.000000px;}
.y2d_c00210{bottom:316.200000px;}
.y5e_c00210{bottom:322.050000px;}
.y2c_c00210{bottom:333.900000px;}
.y5d_c00210{bottom:340.050000px;}
.y2b_c00210{bottom:351.900000px;}
.y5c_c00210{bottom:357.750000px;}
.y2a_c00210{bottom:369.600000px;}
.y5b_c00210{bottom:375.750000px;}
.y29_c00210{bottom:387.300000px;}
.y5a_c00210{bottom:393.000000px;}
.y28_c00210{bottom:405.300000px;}
.y59_c00210{bottom:410.700000px;}
.y27_c00210{bottom:422.550000px;}
.y58_c00210{bottom:428.400000px;}
.y26_c00210{bottom:440.550000px;}
.y57_c00210{bottom:446.700000px;}
.y25_c00210{bottom:458.250000px;}
.y56_c00210{bottom:463.650000px;}
.y24_c00210{bottom:475.950000px;}
.y55_c00210{bottom:481.350000px;}
.y23_c00210{bottom:494.250000px;}
.y54_c00210{bottom:506.700000px;}
.y22_c00210{bottom:511.500000px;}
.y53_c00210{bottom:524.700000px;}
.y21_c00210{bottom:529.500000px;}
.y52_c00210{bottom:542.400000px;}
.y20_c00210{bottom:547.200000px;}
.y51_c00210{bottom:560.400000px;}
.y1f_c00210{bottom:573.900000px;}
.y50_c00210{bottom:578.100000px;}
.y1e_c00210{bottom:591.900000px;}
.y4f_c00210{bottom:595.800000px;}
.y1d_c00210{bottom:609.150000px;}
.y4e_c00210{bottom:613.500000px;}
.y1c_c00210{bottom:627.150000px;}
.y4d_c00210{bottom:631.500000px;}
.y4c_c00210{bottom:649.050000px;}
.y1b_c00210{bottom:657.450000px;}
.y4b_c00210{bottom:670.050000px;}
.y1a_c00210{bottom:675.150000px;}
.y4a_c00210{bottom:688.050000px;}
.y19_c00210{bottom:693.150000px;}
.y49_c00210{bottom:705.750000px;}
.y18_c00210{bottom:710.850000px;}
.y48_c00210{bottom:723.450000px;}
.y17_c00210{bottom:728.550000px;}
.y47_c00210{bottom:741.150000px;}
.y16_c00210{bottom:746.250000px;}
.y46_c00210{bottom:758.850000px;}
.y15_c00210{bottom:763.950000px;}
.y45_c00210{bottom:776.550000px;}
.y14_c00210{bottom:785.850000px;}
.y44_c00210{bottom:794.250000px;}
.y13_c00210{bottom:803.550000px;}
.y43_c00210{bottom:812.250000px;}
.y12_c00210{bottom:821.250000px;}
.y42_c00210{bottom:829.950000px;}
.y11_c00210{bottom:838.500000px;}
.y41_c00210{bottom:847.950000px;}
.y10_c00210{bottom:856.500000px;}
.y40_c00210{bottom:865.650000px;}
.yf_c00210{bottom:874.050000px;}
.y3f_c00210{bottom:883.350000px;}
.ye_c00210{bottom:900.300000px;}
.y3e_c00210{bottom:900.600000px;}
.yd_c00210{bottom:918.300000px;}
.y3d_c00210{bottom:918.600000px;}
.yc_c00210{bottom:936.000000px;}
.y3c_c00210{bottom:936.300000px;}
.y3b_c00210{bottom:954.000000px;}
.yb_c00210{bottom:957.900000px;}
.ya_c00210{bottom:975.900000px;}
.y3a_c00210{bottom:992.550000px;}
.y9_c00210{bottom:993.900000px;}
.y39_c00210{bottom:998.250000px;}
.y8_c00210{bottom:1011.300000px;}
.y38_c00210{bottom:1015.950000px;}
.y37_c00210{bottom:1033.950000px;}
.y7_c00210{bottom:1037.700000px;}
.y36_c00210{bottom:1051.200000px;}
.y6_c00210{bottom:1055.400000px;}
.y35_c00210{bottom:1069.500000px;}
.y5_c00210{bottom:1073.100000px;}
.y4_c00210{bottom:1091.100000px;}
.y3_c00210{bottom:1108.800000px;}
.y2_c00210{bottom:1133.700000px;}
.y1_c00210{bottom:1135.800000px;}
.h3_c00210{height:60.000000px;}
.h4_c00210{height:66.000000px;}
.h5_c00210{height:72.000000px;}
.h2_c00210{height:78.000000px;}
.h1_c00210{height:1274.250000px;}
.h0_c00210{height:1274.400056px;}
.w1_c00210{width:963.000000px;}
.w0_c00210{width:963.359985px;}
.x0_c00210{left:0.000000px;}
.x20_c00210{left:96.450000px;}
.x45_c00210{left:97.500000px;}
.x3_c00210{left:98.700000px;}
.x7b_c00210{left:108.750000px;}
.x36_c00210{left:112.500000px;}
.x4a_c00210{left:114.150000px;}
.xb_c00210{left:115.200000px;}
.xaa_c00210{left:116.250000px;}
.x7c_c00210{left:121.050000px;}
.x78_c00210{left:127.650000px;}
.xab_c00210{left:129.900000px;}
.x3b_c00210{left:131.400000px;}
.x5f_c00210{left:132.450000px;}
.x46_c00210{left:136.350000px;}
.x63_c00210{left:137.550000px;}
.x55_c00210{left:139.050000px;}
.x58_c00210{left:141.300000px;}
.x79_c00210{left:142.800000px;}
.x8a_c00210{left:145.050000px;}
.xa1_c00210{left:146.550000px;}
.x5b_c00210{left:148.650000px;}
.x1e_c00210{left:150.000000px;}
.x86_c00210{left:151.800000px;}
.x18_c00210{left:153.150000px;}
.x41_c00210{left:154.950000px;}
.xc_c00210{left:156.900000px;}
.x4e_c00210{left:157.950000px;}
.x8d_c00210{left:159.000000px;}
.x4_c00210{left:160.200000px;}
.x31_c00210{left:162.900000px;}
.x12_c00210{left:164.700000px;}
.x85_c00210{left:165.900000px;}
.x21_c00210{left:166.950000px;}
.x37_c00210{left:170.100000px;}
.x80_c00210{left:172.200000px;}
.x47_c00210{left:174.600000px;}
.x9e_c00210{left:175.650000px;}
.x8e_c00210{left:176.700000px;}
.x3c_c00210{left:177.900000px;}
.x6c_c00210{left:178.950000px;}
.x1f_c00210{left:180.600000px;}
.x69_c00210{left:181.800000px;}
.xa7_c00210{left:183.600000px;}
.x13_c00210{left:185.550000px;}
.x42_c00210{left:187.650000px;}
.x28_c00210{left:189.300000px;}
.x4f_c00210{left:191.850000px;}
.x22_c00210{left:192.900000px;}
.x19_c00210{left:196.650000px;}
.x56_c00210{left:199.500000px;}
.x38_c00210{left:201.450000px;}
.x32_c00210{left:205.650000px;}
.x14_c00210{left:207.150000px;}
.x64_c00210{left:208.800000px;}
.xa2_c00210{left:209.850000px;}
.x81_c00210{left:211.650000px;}
.x5c_c00210{left:213.450000px;}
.x50_c00210{left:214.950000px;}
.x92_c00210{left:216.300000px;}
.x82_c00210{left:217.950000px;}
.x5_c00210{left:219.600000px;}
.xa8_c00210{left:221.100000px;}
.xd_c00210{left:222.750000px;}
.x29_c00210{left:224.550000px;}
.x9f_c00210{left:227.550000px;}
.x65_c00210{left:228.600000px;}
.x23_c00210{left:231.000000px;}
.x57_c00210{left:232.650000px;}
.x59_c00210{left:234.450000px;}
.x7f_c00210{left:240.000000px;}
.x60_c00210{left:243.450000px;}
.x7a_c00210{left:244.650000px;}
.x2a_c00210{left:245.850000px;}
.x3d_c00210{left:247.050000px;}
.x5d_c00210{left:249.150000px;}
.x24_c00210{left:254.400000px;}
.x9a_c00210{left:256.350000px;}
.x87_c00210{left:257.850000px;}
.x70_c00210{left:259.350000px;}
.x6_c00210{left:260.700000px;}
.x4b_c00210{left:262.500000px;}
.x2b_c00210{left:264.150000px;}
.xe_c00210{left:265.200000px;}
.x93_c00210{left:266.250000px;}
.x48_c00210{left:267.900000px;}
.x74_c00210{left:270.600000px;}
.x5e_c00210{left:271.800000px;}
.x83_c00210{left:275.850000px;}
.x15_c00210{left:277.050000px;}
.x4c_c00210{left:279.750000px;}
.x6a_c00210{left:281.250000px;}
.x51_c00210{left:283.050000px;}
.x7d_c00210{left:285.150000px;}
.x6d_c00210{left:286.350000px;}
.x1a_c00210{left:287.400000px;}
.x75_c00210{left:288.900000px;}
.x39_c00210{left:290.100000px;}
.xa3_c00210{left:292.050000px;}
.xf_c00210{left:293.250000px;}
.x2c_c00210{left:295.500000px;}
.x66_c00210{left:298.050000px;}
.x8f_c00210{left:299.400000px;}
.x71_c00210{left:302.250000px;}
.x25_c00210{left:303.300000px;}
.x3e_c00210{left:306.150000px;}
.x6e_c00210{left:307.950000px;}
.x94_c00210{left:309.000000px;}
.x6b_c00210{left:310.050000px;}
.x8b_c00210{left:312.900000px;}
.x7_c00210{left:314.400000px;}
.x2d_c00210{left:316.050000px;}
.x76_c00210{left:317.400000px;}
.x84_c00210{left:318.750000px;}
.x16_c00210{left:320.550000px;}
.x26_c00210{left:322.350000px;}
.x3a_c00210{left:324.300000px;}
.x52_c00210{left:327.750000px;}
.x8_c00210{left:328.800000px;}
.x8c_c00210{left:330.600000px;}
.x33_c00210{left:332.100000px;}
.x98_c00210{left:333.600000px;}
.x72_c00210{left:334.650000px;}
.x1_c00210{left:337.650000px;}
.x90_c00210{left:339.000000px;}
.x3f_c00210{left:341.100000px;}
.xa4_c00210{left:343.500000px;}
.x67_c00210{left:344.850000px;}
.x1b_c00210{left:349.350000px;}
.x4d_c00210{left:351.000000px;}
.x77_c00210{left:353.100000px;}
.x88_c00210{left:354.300000px;}
.x34_c00210{left:356.250000px;}
.x61_c00210{left:357.900000px;}
.x2e_c00210{left:359.550000px;}
.x5a_c00210{left:360.750000px;}
.xa9_c00210{left:361.800000px;}
.x53_c00210{left:363.750000px;}
.x40_c00210{left:365.250000px;}
.x73_c00210{left:367.050000px;}
.x9d_c00210{left:368.250000px;}
.x2f_c00210{left:372.450000px;}
.x7e_c00210{left:375.300000px;}
.x10_c00210{left:377.850000px;}
.x1c_c00210{left:379.200000px;}
.x9b_c00210{left:380.850000px;}
.x99_c00210{left:383.100000px;}
.x43_c00210{left:384.900000px;}
.x96_c00210{left:387.600000px;}
.x68_c00210{left:388.800000px;}
.x54_c00210{left:391.050000px;}
.x30_c00210{left:393.000000px;}
.x62_c00210{left:394.950000px;}
.x49_c00210{left:396.000000px;}
.x9_c00210{left:397.500000px;}
.x89_c00210{left:399.300000px;}
.x44_c00210{left:400.350000px;}
.xa5_c00210{left:401.850000px;}
.x17_c00210{left:403.050000px;}
.x1d_c00210{left:404.400000px;}
.xa0_c00210{left:405.450000px;}
.x6f_c00210{left:408.450000px;}
.x91_c00210{left:411.000000px;}
.x11_c00210{left:412.050000px;}
.x9c_c00210{left:413.550000px;}
.x27_c00210{left:416.250000px;}
.xa_c00210{left:418.350000px;}
.x97_c00210{left:419.700000px;}
.xa6_c00210{left:421.950000px;}
.x95_c00210{left:427.200000px;}
.x35_c00210{left:428.550000px;}
.xd6_c00210{left:444.600000px;}
.x117_c00210{left:451.500000px;}
.xd7_c00210{left:453.300000px;}
.xb5_c00210{left:455.100000px;}
.x130_c00210{left:460.800000px;}
.xbc_c00210{left:467.250000px;}
.xe0_c00210{left:469.500000px;}
.xc5_c00210{left:471.450000px;}
.xcf_c00210{left:476.400000px;}
.x11e_c00210{left:487.200000px;}
.x12d_c00210{left:490.050000px;}
.xac_c00210{left:491.400000px;}
.x13f_c00210{left:492.600000px;}
.x109_c00210{left:494.100000px;}
.x10c_c00210{left:496.050000px;}
.xd0_c00210{left:497.250000px;}
.x103_c00210{left:499.500000px;}
.x10f_c00210{left:501.000000px;}
.x113_c00210{left:505.650000px;}
.xc6_c00210{left:506.700000px;}
.xe9_c00210{left:508.950000px;}
.x13b_c00210{left:510.750000px;}
.x118_c00210{left:512.700000px;}
.x144_c00210{left:516.600000px;}
.xb6_c00210{left:518.850000px;}
.xd8_c00210{left:519.900000px;}
.xee_c00210{left:521.550000px;}
.x12c_c00210{left:523.050000px;}
.xc7_c00210{left:524.700000px;}
.xb1_c00210{left:526.050000px;}
.xf8_c00210{left:527.400000px;}
.x12f_c00210{left:528.600000px;}
.xfc_c00210{left:530.100000px;}
.x10d_c00210{left:531.750000px;}
.x126_c00210{left:532.800000px;}
.x133_c00210{left:535.050000px;}
.x13c_c00210{left:536.700000px;}
.x124_c00210{left:538.200000px;}
.x100_c00210{left:541.950000px;}
.xef_c00210{left:543.150000px;}
.x11a_c00210{left:544.650000px;}
.x141_c00210{left:546.450000px;}
.x110_c00210{left:547.500000px;}
.xf4_c00210{left:550.350000px;}
.x135_c00210{left:551.400000px;}
.x114_c00210{left:552.450000px;}
.xb7_c00210{left:554.550000px;}
.x122_c00210{left:556.500000px;}
.x11f_c00210{left:558.450000px;}
.xd1_c00210{left:560.550000px;}
.xad_c00210{left:562.350000px;}
.x131_c00210{left:563.550000px;}
.xc8_c00210{left:567.150000px;}
.xbd_c00210{left:569.100000px;}
.xf5_c00210{left:570.450000px;}
.x11c_c00210{left:571.800000px;}
.x145_c00210{left:574.200000px;}
.x129_c00210{left:576.000000px;}
.xb2_c00210{left:578.550000px;}
.xf9_c00210{left:579.900000px;}
.xe1_c00210{left:583.650000px;}
.xbe_c00210{left:585.300000px;}
.xf0_c00210{left:587.850000px;}
.x136_c00210{left:590.700000px;}
.xc9_c00210{left:593.100000px;}
.x104_c00210{left:594.150000px;}
.x13d_c00210{left:596.100000px;}
.x142_c00210{left:597.450000px;}
.xfd_c00210{left:598.800000px;}
.xae_c00210{left:599.850000px;}
.xf1_c00210{left:602.250000px;}
.xea_c00210{left:605.850000px;}
.xe2_c00210{left:607.350000px;}
.x123_c00210{left:611.250000px;}
.x127_c00210{left:613.050000px;}
.xed_c00210{left:614.100000px;}
.xfa_c00210{left:615.150000px;}
.xda_c00210{left:616.950000px;}
.xf2_c00210{left:618.750000px;}
.xb3_c00210{left:623.550000px;}
.xeb_c00210{left:624.600000px;}
.x120_c00210{left:626.100000px;}
.x115_c00210{left:629.100000px;}
.xbf_c00210{left:635.400000px;}
.x10e_c00210{left:636.600000px;}
.x10a_c00210{left:637.800000px;}
.xb8_c00210{left:639.450000px;}
.xfb_c00210{left:640.650000px;}
.xdb_c00210{left:642.900000px;}
.x137_c00210{left:643.950000px;}
.xe3_c00210{left:645.150000px;}
.xc0_c00210{left:646.200000px;}
.xd2_c00210{left:647.250000px;}
.x146_c00210{left:648.300000px;}
.xb4_c00210{left:649.800000px;}
.x11d_c00210{left:652.800000px;}
.x111_c00210{left:654.450000px;}
.xca_c00210{left:658.200000px;}
.x128_c00210{left:660.600000px;}
.xe7_c00210{left:662.100000px;}
.xb9_c00210{left:664.950000px;}
.x147_c00210{left:666.000000px;}
.x119_c00210{left:667.800000px;}
.xe4_c00210{left:671.100000px;}
.xc1_c00210{left:672.450000px;}
.x105_c00210{left:673.650000px;}
.xcb_c00210{left:678.000000px;}
.xf6_c00210{left:679.050000px;}
.x107_c00210{left:681.300000px;}
.xdc_c00210{left:683.250000px;}
.xd9_c00210{left:684.450000px;}
.xf3_c00210{left:687.150000px;}
.xd3_c00210{left:688.950000px;}
.x12a_c00210{left:690.450000px;}
.x138_c00210{left:693.900000px;}
.xfe_c00210{left:696.000000px;}
.x11b_c00210{left:698.850000px;}
.xcc_c00210{left:700.350000px;}
.xaf_c00210{left:703.500000px;}
.x121_c00210{left:704.850000px;}
.x10b_c00210{left:707.700000px;}
.xd4_c00210{left:709.050000px;}
.x108_c00210{left:711.600000px;}
.xe8_c00210{left:714.600000px;}
.x139_c00210{left:715.800000px;}
.xcd_c00210{left:717.300000px;}
.x116_c00210{left:719.850000px;}
.x134_c00210{left:721.650000px;}
.xc2_c00210{left:723.150000px;}
.xdd_c00210{left:725.700000px;}
.x132_c00210{left:727.200000px;}
.x12b_c00210{left:728.250000px;}
.x125_c00210{left:731.550000px;}
.x106_c00210{left:733.050000px;}
.xec_c00210{left:736.500000px;}
.xd5_c00210{left:738.150000px;}
.x13e_c00210{left:739.500000px;}
.xe5_c00210{left:740.550000px;}
.xb0_c00210{left:744.600000px;}
.xde_c00210{left:746.250000px;}
.xc3_c00210{left:748.650000px;}
.x12e_c00210{left:749.850000px;}
.x101_c00210{left:751.800000px;}
.xba_c00210{left:753.450000px;}
.xff_c00210{left:755.100000px;}
.x143_c00210{left:758.100000px;}
.xce_c00210{left:760.800000px;}
.xf7_c00210{left:763.200000px;}
.x2_c00210{left:764.550000px;}
.xdf_c00210{left:766.800000px;}
.xc4_c00210{left:768.750000px;}
.x13a_c00210{left:771.300000px;}
.xbb_c00210{left:773.250000px;}
.x102_c00210{left:776.250000px;}
.xe6_c00210{left:777.300000px;}
.x112_c00210{left:780.000000px;}
.x140_c00210{left:782.250000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:-3.091256pt;}
.ws1_c00210{word-spacing:-1.658071pt;}
.ws3_c00210{word-spacing:-1.273885pt;}
.ws2_c00210{word-spacing:-0.122324pt;}
.ws4_c00210{word-spacing:0.000000pt;}
.fs1_c00210{font-size:53.333333pt;}
.fs2_c00210{font-size:58.666667pt;}
.fs3_c00210{font-size:64.000000pt;}
.fs0_c00210{font-size:69.333333pt;}
.y0_c00210{bottom:0.000000pt;}
.y66_c00210{bottom:152.266667pt;}
.y34_c00210{bottom:166.400000pt;}
.y65_c00210{bottom:168.533333pt;}
.y64_c00210{bottom:184.266667pt;}
.y33_c00210{bottom:186.133333pt;}
.y63_c00210{bottom:200.000000pt;}
.y32_c00210{bottom:201.866667pt;}
.y62_c00210{bottom:215.733333pt;}
.y31_c00210{bottom:217.866667pt;}
.y30_c00210{bottom:233.600000pt;}
.y61_c00210{bottom:234.533333pt;}
.y2f_c00210{bottom:249.333333pt;}
.y60_c00210{bottom:251.200000pt;}
.y2e_c00210{bottom:265.066667pt;}
.y5f_c00210{bottom:269.333333pt;}
.y2d_c00210{bottom:281.066667pt;}
.y5e_c00210{bottom:286.266667pt;}
.y2c_c00210{bottom:296.800000pt;}
.y5d_c00210{bottom:302.266667pt;}
.y2b_c00210{bottom:312.800000pt;}
.y5c_c00210{bottom:318.000000pt;}
.y2a_c00210{bottom:328.533333pt;}
.y5b_c00210{bottom:334.000000pt;}
.y29_c00210{bottom:344.266667pt;}
.y5a_c00210{bottom:349.333333pt;}
.y28_c00210{bottom:360.266667pt;}
.y59_c00210{bottom:365.066667pt;}
.y27_c00210{bottom:375.600000pt;}
.y58_c00210{bottom:380.800000pt;}
.y26_c00210{bottom:391.600000pt;}
.y57_c00210{bottom:397.066667pt;}
.y25_c00210{bottom:407.333333pt;}
.y56_c00210{bottom:412.133333pt;}
.y24_c00210{bottom:423.066667pt;}
.y55_c00210{bottom:427.866667pt;}
.y23_c00210{bottom:439.333333pt;}
.y54_c00210{bottom:450.400000pt;}
.y22_c00210{bottom:454.666667pt;}
.y53_c00210{bottom:466.400000pt;}
.y21_c00210{bottom:470.666667pt;}
.y52_c00210{bottom:482.133333pt;}
.y20_c00210{bottom:486.400000pt;}
.y51_c00210{bottom:498.133333pt;}
.y1f_c00210{bottom:510.133333pt;}
.y50_c00210{bottom:513.866667pt;}
.y1e_c00210{bottom:526.133333pt;}
.y4f_c00210{bottom:529.600000pt;}
.y1d_c00210{bottom:541.466667pt;}
.y4e_c00210{bottom:545.333333pt;}
.y1c_c00210{bottom:557.466667pt;}
.y4d_c00210{bottom:561.333333pt;}
.y4c_c00210{bottom:576.933333pt;}
.y1b_c00210{bottom:584.400000pt;}
.y4b_c00210{bottom:595.600000pt;}
.y1a_c00210{bottom:600.133333pt;}
.y4a_c00210{bottom:611.600000pt;}
.y19_c00210{bottom:616.133333pt;}
.y49_c00210{bottom:627.333333pt;}
.y18_c00210{bottom:631.866667pt;}
.y48_c00210{bottom:643.066667pt;}
.y17_c00210{bottom:647.600000pt;}
.y47_c00210{bottom:658.800000pt;}
.y16_c00210{bottom:663.333333pt;}
.y46_c00210{bottom:674.533333pt;}
.y15_c00210{bottom:679.066667pt;}
.y45_c00210{bottom:690.266667pt;}
.y14_c00210{bottom:698.533333pt;}
.y44_c00210{bottom:706.000000pt;}
.y13_c00210{bottom:714.266667pt;}
.y43_c00210{bottom:722.000000pt;}
.y12_c00210{bottom:730.000000pt;}
.y42_c00210{bottom:737.733333pt;}
.y11_c00210{bottom:745.333333pt;}
.y41_c00210{bottom:753.733333pt;}
.y10_c00210{bottom:761.333333pt;}
.y40_c00210{bottom:769.466667pt;}
.yf_c00210{bottom:776.933333pt;}
.y3f_c00210{bottom:785.200000pt;}
.ye_c00210{bottom:800.266667pt;}
.y3e_c00210{bottom:800.533333pt;}
.yd_c00210{bottom:816.266667pt;}
.y3d_c00210{bottom:816.533333pt;}
.yc_c00210{bottom:832.000000pt;}
.y3c_c00210{bottom:832.266667pt;}
.y3b_c00210{bottom:848.000000pt;}
.yb_c00210{bottom:851.466667pt;}
.ya_c00210{bottom:867.466667pt;}
.y3a_c00210{bottom:882.266667pt;}
.y9_c00210{bottom:883.466667pt;}
.y39_c00210{bottom:887.333333pt;}
.y8_c00210{bottom:898.933333pt;}
.y38_c00210{bottom:903.066667pt;}
.y37_c00210{bottom:919.066667pt;}
.y7_c00210{bottom:922.400000pt;}
.y36_c00210{bottom:934.400000pt;}
.y6_c00210{bottom:938.133333pt;}
.y35_c00210{bottom:950.666667pt;}
.y5_c00210{bottom:953.866667pt;}
.y4_c00210{bottom:969.866667pt;}
.y3_c00210{bottom:985.600000pt;}
.y2_c00210{bottom:1007.733333pt;}
.y1_c00210{bottom:1009.600000pt;}
.h3_c00210{height:53.333333pt;}
.h4_c00210{height:58.666667pt;}
.h5_c00210{height:64.000000pt;}
.h2_c00210{height:69.333333pt;}
.h1_c00210{height:1132.666667pt;}
.h0_c00210{height:1132.800049pt;}
.w1_c00210{width:856.000000pt;}
.w0_c00210{width:856.319987pt;}
.x0_c00210{left:0.000000pt;}
.x20_c00210{left:85.733333pt;}
.x45_c00210{left:86.666667pt;}
.x3_c00210{left:87.733333pt;}
.x7b_c00210{left:96.666667pt;}
.x36_c00210{left:100.000000pt;}
.x4a_c00210{left:101.466667pt;}
.xb_c00210{left:102.400000pt;}
.xaa_c00210{left:103.333333pt;}
.x7c_c00210{left:107.600000pt;}
.x78_c00210{left:113.466667pt;}
.xab_c00210{left:115.466667pt;}
.x3b_c00210{left:116.800000pt;}
.x5f_c00210{left:117.733333pt;}
.x46_c00210{left:121.200000pt;}
.x63_c00210{left:122.266667pt;}
.x55_c00210{left:123.600000pt;}
.x58_c00210{left:125.600000pt;}
.x79_c00210{left:126.933333pt;}
.x8a_c00210{left:128.933333pt;}
.xa1_c00210{left:130.266667pt;}
.x5b_c00210{left:132.133333pt;}
.x1e_c00210{left:133.333333pt;}
.x86_c00210{left:134.933333pt;}
.x18_c00210{left:136.133333pt;}
.x41_c00210{left:137.733333pt;}
.xc_c00210{left:139.466667pt;}
.x4e_c00210{left:140.400000pt;}
.x8d_c00210{left:141.333333pt;}
.x4_c00210{left:142.400000pt;}
.x31_c00210{left:144.800000pt;}
.x12_c00210{left:146.400000pt;}
.x85_c00210{left:147.466667pt;}
.x21_c00210{left:148.400000pt;}
.x37_c00210{left:151.200000pt;}
.x80_c00210{left:153.066667pt;}
.x47_c00210{left:155.200000pt;}
.x9e_c00210{left:156.133333pt;}
.x8e_c00210{left:157.066667pt;}
.x3c_c00210{left:158.133333pt;}
.x6c_c00210{left:159.066667pt;}
.x1f_c00210{left:160.533333pt;}
.x69_c00210{left:161.600000pt;}
.xa7_c00210{left:163.200000pt;}
.x13_c00210{left:164.933333pt;}
.x42_c00210{left:166.800000pt;}
.x28_c00210{left:168.266667pt;}
.x4f_c00210{left:170.533333pt;}
.x22_c00210{left:171.466667pt;}
.x19_c00210{left:174.800000pt;}
.x56_c00210{left:177.333333pt;}
.x38_c00210{left:179.066667pt;}
.x32_c00210{left:182.800000pt;}
.x14_c00210{left:184.133333pt;}
.x64_c00210{left:185.600000pt;}
.xa2_c00210{left:186.533333pt;}
.x81_c00210{left:188.133333pt;}
.x5c_c00210{left:189.733333pt;}
.x50_c00210{left:191.066667pt;}
.x92_c00210{left:192.266667pt;}
.x82_c00210{left:193.733333pt;}
.x5_c00210{left:195.200000pt;}
.xa8_c00210{left:196.533333pt;}
.xd_c00210{left:198.000000pt;}
.x29_c00210{left:199.600000pt;}
.x9f_c00210{left:202.266667pt;}
.x65_c00210{left:203.200000pt;}
.x23_c00210{left:205.333333pt;}
.x57_c00210{left:206.800000pt;}
.x59_c00210{left:208.400000pt;}
.x7f_c00210{left:213.333333pt;}
.x60_c00210{left:216.400000pt;}
.x7a_c00210{left:217.466667pt;}
.x2a_c00210{left:218.533333pt;}
.x3d_c00210{left:219.600000pt;}
.x5d_c00210{left:221.466667pt;}
.x24_c00210{left:226.133333pt;}
.x9a_c00210{left:227.866667pt;}
.x87_c00210{left:229.200000pt;}
.x70_c00210{left:230.533333pt;}
.x6_c00210{left:231.733333pt;}
.x4b_c00210{left:233.333333pt;}
.x2b_c00210{left:234.800000pt;}
.xe_c00210{left:235.733333pt;}
.x93_c00210{left:236.666667pt;}
.x48_c00210{left:238.133333pt;}
.x74_c00210{left:240.533333pt;}
.x5e_c00210{left:241.600000pt;}
.x83_c00210{left:245.200000pt;}
.x15_c00210{left:246.266667pt;}
.x4c_c00210{left:248.666667pt;}
.x6a_c00210{left:250.000000pt;}
.x51_c00210{left:251.600000pt;}
.x7d_c00210{left:253.466667pt;}
.x6d_c00210{left:254.533333pt;}
.x1a_c00210{left:255.466667pt;}
.x75_c00210{left:256.800000pt;}
.x39_c00210{left:257.866667pt;}
.xa3_c00210{left:259.600000pt;}
.xf_c00210{left:260.666667pt;}
.x2c_c00210{left:262.666667pt;}
.x66_c00210{left:264.933333pt;}
.x8f_c00210{left:266.133333pt;}
.x71_c00210{left:268.666667pt;}
.x25_c00210{left:269.600000pt;}
.x3e_c00210{left:272.133333pt;}
.x6e_c00210{left:273.733333pt;}
.x94_c00210{left:274.666667pt;}
.x6b_c00210{left:275.600000pt;}
.x8b_c00210{left:278.133333pt;}
.x7_c00210{left:279.466667pt;}
.x2d_c00210{left:280.933333pt;}
.x76_c00210{left:282.133333pt;}
.x84_c00210{left:283.333333pt;}
.x16_c00210{left:284.933333pt;}
.x26_c00210{left:286.533333pt;}
.x3a_c00210{left:288.266667pt;}
.x52_c00210{left:291.333333pt;}
.x8_c00210{left:292.266667pt;}
.x8c_c00210{left:293.866667pt;}
.x33_c00210{left:295.200000pt;}
.x98_c00210{left:296.533333pt;}
.x72_c00210{left:297.466667pt;}
.x1_c00210{left:300.133333pt;}
.x90_c00210{left:301.333333pt;}
.x3f_c00210{left:303.200000pt;}
.xa4_c00210{left:305.333333pt;}
.x67_c00210{left:306.533333pt;}
.x1b_c00210{left:310.533333pt;}
.x4d_c00210{left:312.000000pt;}
.x77_c00210{left:313.866667pt;}
.x88_c00210{left:314.933333pt;}
.x34_c00210{left:316.666667pt;}
.x61_c00210{left:318.133333pt;}
.x2e_c00210{left:319.600000pt;}
.x5a_c00210{left:320.666667pt;}
.xa9_c00210{left:321.600000pt;}
.x53_c00210{left:323.333333pt;}
.x40_c00210{left:324.666667pt;}
.x73_c00210{left:326.266667pt;}
.x9d_c00210{left:327.333333pt;}
.x2f_c00210{left:331.066667pt;}
.x7e_c00210{left:333.600000pt;}
.x10_c00210{left:335.866667pt;}
.x1c_c00210{left:337.066667pt;}
.x9b_c00210{left:338.533333pt;}
.x99_c00210{left:340.533333pt;}
.x43_c00210{left:342.133333pt;}
.x96_c00210{left:344.533333pt;}
.x68_c00210{left:345.600000pt;}
.x54_c00210{left:347.600000pt;}
.x30_c00210{left:349.333333pt;}
.x62_c00210{left:351.066667pt;}
.x49_c00210{left:352.000000pt;}
.x9_c00210{left:353.333333pt;}
.x89_c00210{left:354.933333pt;}
.x44_c00210{left:355.866667pt;}
.xa5_c00210{left:357.200000pt;}
.x17_c00210{left:358.266667pt;}
.x1d_c00210{left:359.466667pt;}
.xa0_c00210{left:360.400000pt;}
.x6f_c00210{left:363.066667pt;}
.x91_c00210{left:365.333333pt;}
.x11_c00210{left:366.266667pt;}
.x9c_c00210{left:367.600000pt;}
.x27_c00210{left:370.000000pt;}
.xa_c00210{left:371.866667pt;}
.x97_c00210{left:373.066667pt;}
.xa6_c00210{left:375.066667pt;}
.x95_c00210{left:379.733333pt;}
.x35_c00210{left:380.933333pt;}
.xd6_c00210{left:395.200000pt;}
.x117_c00210{left:401.333333pt;}
.xd7_c00210{left:402.933333pt;}
.xb5_c00210{left:404.533333pt;}
.x130_c00210{left:409.600000pt;}
.xbc_c00210{left:415.333333pt;}
.xe0_c00210{left:417.333333pt;}
.xc5_c00210{left:419.066667pt;}
.xcf_c00210{left:423.466667pt;}
.x11e_c00210{left:433.066667pt;}
.x12d_c00210{left:435.600000pt;}
.xac_c00210{left:436.800000pt;}
.x13f_c00210{left:437.866667pt;}
.x109_c00210{left:439.200000pt;}
.x10c_c00210{left:440.933333pt;}
.xd0_c00210{left:442.000000pt;}
.x103_c00210{left:444.000000pt;}
.x10f_c00210{left:445.333333pt;}
.x113_c00210{left:449.466667pt;}
.xc6_c00210{left:450.400000pt;}
.xe9_c00210{left:452.400000pt;}
.x13b_c00210{left:454.000000pt;}
.x118_c00210{left:455.733333pt;}
.x144_c00210{left:459.200000pt;}
.xb6_c00210{left:461.200000pt;}
.xd8_c00210{left:462.133333pt;}
.xee_c00210{left:463.600000pt;}
.x12c_c00210{left:464.933333pt;}
.xc7_c00210{left:466.400000pt;}
.xb1_c00210{left:467.600000pt;}
.xf8_c00210{left:468.800000pt;}
.x12f_c00210{left:469.866667pt;}
.xfc_c00210{left:471.200000pt;}
.x10d_c00210{left:472.666667pt;}
.x126_c00210{left:473.600000pt;}
.x133_c00210{left:475.600000pt;}
.x13c_c00210{left:477.066667pt;}
.x124_c00210{left:478.400000pt;}
.x100_c00210{left:481.733333pt;}
.xef_c00210{left:482.800000pt;}
.x11a_c00210{left:484.133333pt;}
.x141_c00210{left:485.733333pt;}
.x110_c00210{left:486.666667pt;}
.xf4_c00210{left:489.200000pt;}
.x135_c00210{left:490.133333pt;}
.x114_c00210{left:491.066667pt;}
.xb7_c00210{left:492.933333pt;}
.x122_c00210{left:494.666667pt;}
.x11f_c00210{left:496.400000pt;}
.xd1_c00210{left:498.266667pt;}
.xad_c00210{left:499.866667pt;}
.x131_c00210{left:500.933333pt;}
.xc8_c00210{left:504.133333pt;}
.xbd_c00210{left:505.866667pt;}
.xf5_c00210{left:507.066667pt;}
.x11c_c00210{left:508.266667pt;}
.x145_c00210{left:510.400000pt;}
.x129_c00210{left:512.000000pt;}
.xb2_c00210{left:514.266667pt;}
.xf9_c00210{left:515.466667pt;}
.xe1_c00210{left:518.800000pt;}
.xbe_c00210{left:520.266667pt;}
.xf0_c00210{left:522.533333pt;}
.x136_c00210{left:525.066667pt;}
.xc9_c00210{left:527.200000pt;}
.x104_c00210{left:528.133333pt;}
.x13d_c00210{left:529.866667pt;}
.x142_c00210{left:531.066667pt;}
.xfd_c00210{left:532.266667pt;}
.xae_c00210{left:533.200000pt;}
.xf1_c00210{left:535.333333pt;}
.xea_c00210{left:538.533333pt;}
.xe2_c00210{left:539.866667pt;}
.x123_c00210{left:543.333333pt;}
.x127_c00210{left:544.933333pt;}
.xed_c00210{left:545.866667pt;}
.xfa_c00210{left:546.800000pt;}
.xda_c00210{left:548.400000pt;}
.xf2_c00210{left:550.000000pt;}
.xb3_c00210{left:554.266667pt;}
.xeb_c00210{left:555.200000pt;}
.x120_c00210{left:556.533333pt;}
.x115_c00210{left:559.200000pt;}
.xbf_c00210{left:564.800000pt;}
.x10e_c00210{left:565.866667pt;}
.x10a_c00210{left:566.933333pt;}
.xb8_c00210{left:568.400000pt;}
.xfb_c00210{left:569.466667pt;}
.xdb_c00210{left:571.466667pt;}
.x137_c00210{left:572.400000pt;}
.xe3_c00210{left:573.466667pt;}
.xc0_c00210{left:574.400000pt;}
.xd2_c00210{left:575.333333pt;}
.x146_c00210{left:576.266667pt;}
.xb4_c00210{left:577.600000pt;}
.x11d_c00210{left:580.266667pt;}
.x111_c00210{left:581.733333pt;}
.xca_c00210{left:585.066667pt;}
.x128_c00210{left:587.200000pt;}
.xe7_c00210{left:588.533333pt;}
.xb9_c00210{left:591.066667pt;}
.x147_c00210{left:592.000000pt;}
.x119_c00210{left:593.600000pt;}
.xe4_c00210{left:596.533333pt;}
.xc1_c00210{left:597.733333pt;}
.x105_c00210{left:598.800000pt;}
.xcb_c00210{left:602.666667pt;}
.xf6_c00210{left:603.600000pt;}
.x107_c00210{left:605.600000pt;}
.xdc_c00210{left:607.333333pt;}
.xd9_c00210{left:608.400000pt;}
.xf3_c00210{left:610.800000pt;}
.xd3_c00210{left:612.400000pt;}
.x12a_c00210{left:613.733333pt;}
.x138_c00210{left:616.800000pt;}
.xfe_c00210{left:618.666667pt;}
.x11b_c00210{left:621.200000pt;}
.xcc_c00210{left:622.533333pt;}
.xaf_c00210{left:625.333333pt;}
.x121_c00210{left:626.533333pt;}
.x10b_c00210{left:629.066667pt;}
.xd4_c00210{left:630.266667pt;}
.x108_c00210{left:632.533333pt;}
.xe8_c00210{left:635.200000pt;}
.x139_c00210{left:636.266667pt;}
.xcd_c00210{left:637.600000pt;}
.x116_c00210{left:639.866667pt;}
.x134_c00210{left:641.466667pt;}
.xc2_c00210{left:642.800000pt;}
.xdd_c00210{left:645.066667pt;}
.x132_c00210{left:646.400000pt;}
.x12b_c00210{left:647.333333pt;}
.x125_c00210{left:650.266667pt;}
.x106_c00210{left:651.600000pt;}
.xec_c00210{left:654.666667pt;}
.xd5_c00210{left:656.133333pt;}
.x13e_c00210{left:657.333333pt;}
.xe5_c00210{left:658.266667pt;}
.xb0_c00210{left:661.866667pt;}
.xde_c00210{left:663.333333pt;}
.xc3_c00210{left:665.466667pt;}
.x12e_c00210{left:666.533333pt;}
.x101_c00210{left:668.266667pt;}
.xba_c00210{left:669.733333pt;}
.xff_c00210{left:671.200000pt;}
.x143_c00210{left:673.866667pt;}
.xce_c00210{left:676.266667pt;}
.xf7_c00210{left:678.400000pt;}
.x2_c00210{left:679.600000pt;}
.xdf_c00210{left:681.600000pt;}
.xc4_c00210{left:683.333333pt;}
.x13a_c00210{left:685.600000pt;}
.xbb_c00210{left:687.333333pt;}
.x102_c00210{left:690.000000pt;}
.xe6_c00210{left:690.933333pt;}
.x112_c00210{left:693.333333pt;}
.x140_c00210{left:695.333333pt;}
}





/* 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_c00211 {
    display:none;
  }
  .loading-indicator_c00211.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00211 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_c00211 { 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_c00211" -> "#page-container .classname_c00211")
 */
.pf_c00211 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00211 { /* 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_c00211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00211 { /* 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_c00211 { /* 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_c00211 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00211 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00211 {overflow:visible;}
  }
}
.c_c00211 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00211 { /* 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_c00211:after { /* webkit #35443 */
  content: '';
}
.t_c00211:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00211 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 */
}
.__c00211 { /* 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_c00211 { /* info for Javascript */
  display:none;
}
.l_c00211 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00211 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00211 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00211: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_c00211 {
    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_c00211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00211.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_c00211 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00211;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.000000;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;}
.m12_c00211{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.md_c00211{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mf_c00211{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.me_c00211{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m124_c00211{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m75_c00211{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m121_c00211{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m55_c00211{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00211{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m44_c00211{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m11_c00211{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00211{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00211{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mef_c00211{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00211{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mea_c00211{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m30_c00211{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00211{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m56_c00211{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00211{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m77_c00211{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00211{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m76_c00211{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00211{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m119_c00211{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m70_c00211{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m53_c00211{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00211{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m14_c00211{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m18_c00211{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00211{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00211{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00211{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00211{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00211{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m125_c00211{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m34_c00211{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m128_c00211{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m110_c00211{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.meb_c00211{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m72_c00211{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m98_c00211{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00211{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4_c00211{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m99_c00211{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00211{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md9_c00211{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00211{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00211{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m21_c00211{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m107_c00211{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m108_c00211{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m83_c00211{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m48_c00211{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m123_c00211{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m35_c00211{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m120_c00211{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00211{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00211{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m19_c00211{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00211{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00211{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00211{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00211{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m106_c00211{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m115_c00211{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m17_c00211{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m71_c00211{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00211{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00211{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m126_c00211{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m40_c00211{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00211{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m109_c00211{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00211{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me0_c00211{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m97_c00211{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3_c00211{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00211{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00211{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m51_c00211{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m68_c00211{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m62_c00211{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00211{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00211{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.md3_c00211{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m20_c00211{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00211{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00211{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00211{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00211{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m74_c00211{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00211{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m58_c00211{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m88_c00211{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m73_c00211{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mb_c00211{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m79_c00211{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.maf_c00211{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m69_c00211{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mde_c00211{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00211{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00211{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m43_c00211{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m54_c00211{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00211{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m39_c00211{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m52_c00211{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m46_c00211{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00211{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m122_c00211{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m10_c00211{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00211{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00211{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00211{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m66_c00211{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md8_c00211{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00211{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00211{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mad_c00211{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me5_c00211{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mac_c00211{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mff_c00211{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00211{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mce_c00211{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00211{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00211{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00211{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00211{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00211{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m50_c00211{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me6_c00211{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mab_c00211{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00211{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00211{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00211{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m49_c00211{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m100_c00211{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m113_c00211{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00211{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00211{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00211{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m16_c00211{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m78_c00211{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6_c00211{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00211{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00211{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m82_c00211{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00211{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00211{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00211{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00211{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m93_c00211{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00211{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m105_c00211{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m13_c00211{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00211{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00211{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma_c00211{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00211{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00211{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mba_c00211{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m32_c00211{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m15_c00211{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md6_c00211{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m114_c00211{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m127_c00211{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00211{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m85_c00211{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m36_c00211{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00211{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m87_c00211{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mae_c00211{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00211{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me3_c00211{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00211{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00211{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00211{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m42_c00211{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00211{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me4_c00211{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00211{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00211{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00211{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m89_c00211{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m31_c00211{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md5_c00211{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md1_c00211{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m59_c00211{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00211{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m118_c00211{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00211{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00211{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m60_c00211{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m45_c00211{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m117_c00211{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m5_c00211{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00211{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00211{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00211{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m63_c00211{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m92_c00211{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.maa_c00211{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00211{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m22_c00211{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m57_c00211{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00211{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00211{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00211{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m81_c00211{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00211{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m84_c00211{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m61_c00211{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00211{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00211{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00211{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00211{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00211{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00211{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me1_c00211{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00211{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m26_c00211{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc_c00211{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00211{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m47_c00211{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00211{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00211{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m94_c00211{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00211{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.med_c00211{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.md2_c00211{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m101_c00211{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00211{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m67_c00211{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9_c00211{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m86_c00211{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me9_c00211{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m91_c00211{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00211{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00211{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m33_c00211{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00211{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00211{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m104_c00211{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00211{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m80_c00211{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00211{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mda_c00211{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m64_c00211{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.me2_c00211{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m95_c00211{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m103_c00211{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8_c00211{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00211{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m24_c00211{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m102_c00211{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me8_c00211{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mee_c00211{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.md4_c00211{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00211{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m65_c00211{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mca_c00211{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m90_c00211{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m28_c00211{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00211{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00211{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mec_c00211{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00211{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00211{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me7_c00211{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00211{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m111_c00211{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00211{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m29_c00211{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.md7_c00211{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m38_c00211{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00211{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m129_c00211{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00211{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00211{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00211{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m96_c00211{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m7_c00211{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m41_c00211{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m112_c00211{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00211{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m23_c00211{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00211{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.md0_c00211{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00211{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);}
.m25_c00211{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m37_c00211{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m116_c00211{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00211{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m27_c00211{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00211{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls0_c00211{letter-spacing:0.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{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__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00211{word-spacing:-18.125000px;}
.ws1_c00211{word-spacing:-17.236842px;}
.ws7_c00211{word-spacing:-10.250000px;}
.wsb_c00211{word-spacing:-5.161290px;}
.ws6_c00211{word-spacing:-3.166667px;}
.wsa_c00211{word-spacing:-2.142857px;}
.ws0_c00211{word-spacing:-1.666667px;}
.wsc_c00211{word-spacing:0.000000px;}
.ws4_c00211{word-spacing:17.525935px;}
.ws5_c00211{word-spacing:31.076336px;}
.ws3_c00211{word-spacing:32.526316px;}
.ws2_c00211{word-spacing:39.963303px;}
.ws9_c00211{word-spacing:60.862069px;}
._0_c00211{width:81.315789px;}
.fc0_c00211{color:transparent;}
.fs3_c00211{font-size:18.000000px;}
.fs6_c00211{font-size:30.000000px;}
.fs7_c00211{font-size:48.000000px;}
.fs5_c00211{font-size:54.000000px;}
.fs2_c00211{font-size:60.000000px;}
.fs1_c00211{font-size:66.000000px;}
.fs4_c00211{font-size:72.000000px;}
.fs0_c00211{font-size:114.000000px;}
.y0_c00211{bottom:0.000000px;}
.y65_c00211{bottom:189.750000px;}
.y64_c00211{bottom:195.300000px;}
.y52_c00211{bottom:202.650000px;}
.y63_c00211{bottom:210.000000px;}
.y51_c00211{bottom:220.350000px;}
.y62_c00211{bottom:224.700000px;}
.y50_c00211{bottom:227.550000px;}
.y4f_c00211{bottom:238.050000px;}
.y61_c00211{bottom:239.100000px;}
.y60_c00211{bottom:253.200000px;}
.y4e_c00211{bottom:255.300000px;}
.y5f_c00211{bottom:267.900000px;}
.y4d_c00211{bottom:272.850000px;}
.y5e_c00211{bottom:281.550000px;}
.y4c_c00211{bottom:290.550000px;}
.y5d_c00211{bottom:295.200000px;}
.y4b_c00211{bottom:307.800000px;}
.y5c_c00211{bottom:310.350000px;}
.y5b_c00211{bottom:324.750000px;}
.y4a_c00211{bottom:325.500000px;}
.y5a_c00211{bottom:339.150000px;}
.y49_c00211{bottom:346.800000px;}
.y59_c00211{bottom:352.500000px;}
.y48_c00211{bottom:364.500000px;}
.y58_c00211{bottom:366.900000px;}
.y57_c00211{bottom:381.150000px;}
.y47_c00211{bottom:381.750000px;}
.y56_c00211{bottom:395.550000px;}
.y46_c00211{bottom:399.450000px;}
.y55_c00211{bottom:409.950000px;}
.y45_c00211{bottom:417.150000px;}
.y54_c00211{bottom:424.050000px;}
.y44_c00211{bottom:435.150000px;}
.y53_c00211{bottom:438.150000px;}
.y43_c00211{bottom:452.850000px;}
.y42_c00211{bottom:470.550000px;}
.y3e_c00211{bottom:486.900000px;}
.y41_c00211{bottom:489.600000px;}
.y40_c00211{bottom:492.450000px;}
.y3d_c00211{bottom:505.650000px;}
.y3f_c00211{bottom:510.150000px;}
.y3c_c00211{bottom:522.600000px;}
.y37_c00211{bottom:532.050000px;}
.y3b_c00211{bottom:540.300000px;}
.y36_c00211{bottom:550.050000px;}
.y3a_c00211{bottom:558.000000px;}
.y35_c00211{bottom:567.750000px;}
.y39_c00211{bottom:580.650000px;}
.y34_c00211{bottom:585.000000px;}
.y38_c00211{bottom:598.350000px;}
.y33_c00211{bottom:602.700000px;}
.y26_c00211{bottom:620.100000px;}
.y32_c00211{bottom:637.800000px;}
.y25_c00211{bottom:638.100000px;}
.y31_c00211{bottom:655.500000px;}
.y24_c00211{bottom:655.800000px;}
.y30_c00211{bottom:673.200000px;}
.y23_c00211{bottom:673.500000px;}
.y22_c00211{bottom:691.200000px;}
.y2f_c00211{bottom:695.100000px;}
.y21_c00211{bottom:713.100000px;}
.y2e_c00211{bottom:730.350000px;}
.y20_c00211{bottom:731.100000px;}
.y2d_c00211{bottom:748.350000px;}
.y1f_c00211{bottom:748.800000px;}
.y2c_c00211{bottom:766.050000px;}
.y1e_c00211{bottom:766.500000px;}
.y2b_c00211{bottom:784.050000px;}
.y1d_c00211{bottom:788.700000px;}
.y2a_c00211{bottom:805.500000px;}
.y1c_c00211{bottom:805.950000px;}
.y29_c00211{bottom:823.500000px;}
.y1b_c00211{bottom:823.650000px;}
.y28_c00211{bottom:841.200000px;}
.y1a_c00211{bottom:841.500000px;}
.y19_c00211{bottom:859.200000px;}
.y18_c00211{bottom:876.900000px;}
.y17_c00211{bottom:894.600000px;}
.y16_c00211{bottom:912.300000px;}
.y27_c00211{bottom:912.600000px;}
.ye_c00211{bottom:930.300000px;}
.yd_c00211{bottom:947.550000px;}
.y15_c00211{bottom:948.150000px;}
.y14_c00211{bottom:965.850000px;}
.yc_c00211{bottom:969.450000px;}
.y13_c00211{bottom:983.850000px;}
.yb_c00211{bottom:988.200000px;}
.ya_c00211{bottom:1005.150000px;}
.y12_c00211{bottom:1005.450000px;}
.y9_c00211{bottom:1015.200000px;}
.y8_c00211{bottom:1023.150000px;}
.y11_c00211{bottom:1023.450000px;}
.y10_c00211{bottom:1041.450000px;}
.y7_c00211{bottom:1044.450000px;}
.yf_c00211{bottom:1059.450000px;}
.y6_c00211{bottom:1062.750000px;}
.y5_c00211{bottom:1080.300000px;}
.y4_c00211{bottom:1098.450000px;}
.y3_c00211{bottom:1110.300000px;}
.y2_c00211{bottom:1116.750000px;}
.y1_c00211{bottom:1142.700000px;}
.h5_c00211{height:18.000000px;}
.h8_c00211{height:30.000000px;}
.h9_c00211{height:48.000000px;}
.h7_c00211{height:54.000000px;}
.h4_c00211{height:60.000000px;}
.h3_c00211{height:66.000000px;}
.h6_c00211{height:72.000000px;}
.h2_c00211{height:114.000000px;}
.h0_c00211{height:1269.720063px;}
.h1_c00211{height:1269.750000px;}
.w1_c00211{width:963.000000px;}
.w0_c00211{width:963.359985px;}
.x0_c00211{left:0.000000px;}
.x129_c00211{left:180.150000px;}
.x110_c00211{left:182.100000px;}
.x1_c00211{left:183.300000px;}
.x4f_c00211{left:184.650000px;}
.x113_c00211{left:195.900000px;}
.x117_c00211{left:196.950000px;}
.xf9_c00211{left:198.600000px;}
.xf_c00211{left:199.800000px;}
.x17_c00211{left:201.150000px;}
.xa7_c00211{left:202.200000px;}
.x36_c00211{left:203.400000px;}
.x3_c00211{left:208.500000px;}
.x8c_c00211{left:210.900000px;}
.x37_c00211{left:214.950000px;}
.x3a_c00211{left:217.350000px;}
.x95_c00211{left:219.900000px;}
.xaa_c00211{left:222.150000px;}
.x12a_c00211{left:225.000000px;}
.xee_c00211{left:228.450000px;}
.x11c_c00211{left:230.100000px;}
.xa8_c00211{left:231.300000px;}
.xa3_c00211{left:232.800000px;}
.x18_c00211{left:235.350000px;}
.x50_c00211{left:237.150000px;}
.x89_c00211{left:238.350000px;}
.x9a_c00211{left:239.700000px;}
.xa0_c00211{left:241.950000px;}
.x10f_c00211{left:243.000000px;}
.xf0_c00211{left:244.350000px;}
.x4_c00211{left:246.600000px;}
.x44_c00211{left:247.650000px;}
.x11d_c00211{left:249.150000px;}
.x38_c00211{left:250.200000px;}
.x19_c00211{left:251.850000px;}
.x11f_c00211{left:255.900000px;}
.xb4_c00211{left:256.950000px;}
.x118_c00211{left:258.450000px;}
.x4e_c00211{left:259.500000px;}
.x21_c00211{left:261.300000px;}
.x39_c00211{left:263.100000px;}
.x96_c00211{left:264.600000px;}
.x109_c00211{left:265.650000px;}
.x2f_c00211{left:270.300000px;}
.x10_c00211{left:272.850000px;}
.x124_c00211{left:273.900000px;}
.x40_c00211{left:275.850000px;}
.x90_c00211{left:277.050000px;}
.x10c_c00211{left:279.600000px;}
.x51_c00211{left:281.850000px;}
.xb1_c00211{left:283.950000px;}
.x22_c00211{left:285.750000px;}
.x1a_c00211{left:286.800000px;}
.x9b_c00211{left:289.050000px;}
.x45_c00211{left:290.850000px;}
.x30_c00211{left:292.200000px;}
.x123_c00211{left:294.300000px;}
.x41_c00211{left:295.950000px;}
.x5_c00211{left:298.050000px;}
.x9f_c00211{left:300.900000px;}
.xb2_c00211{left:303.450000px;}
.x11a_c00211{left:305.550000px;}
.x86_c00211{left:307.050000px;}
.x9c_c00211{left:309.600000px;}
.x114_c00211{left:311.100000px;}
.x55_c00211{left:312.750000px;}
.x46_c00211{left:314.550000px;}
.x52_c00211{left:315.750000px;}
.x122_c00211{left:316.800000px;}
.x6_c00211{left:318.150000px;}
.x10a_c00211{left:319.650000px;}
.xa1_c00211{left:320.850000px;}
.x8d_c00211{left:322.050000px;}
.x49_c00211{left:323.250000px;}
.x10d_c00211{left:326.400000px;}
.x31_c00211{left:328.950000px;}
.x127_c00211{left:330.750000px;}
.x94_c00211{left:332.100000px;}
.xac_c00211{left:333.450000px;}
.x56_c00211{left:335.850000px;}
.x3b_c00211{left:338.250000px;}
.xec_c00211{left:339.750000px;}
.x115_c00211{left:341.250000px;}
.x11_c00211{left:342.300000px;}
.x10e_c00211{left:344.100000px;}
.x1b_c00211{left:345.150000px;}
.xf1_c00211{left:346.200000px;}
.xae_c00211{left:347.250000px;}
.x7_c00211{left:350.250000px;}
.x32_c00211{left:352.050000px;}
.x8a_c00211{left:353.850000px;}
.x12b_c00211{left:354.900000px;}
.x87_c00211{left:357.150000px;}
.x11b_c00211{left:358.950000px;}
.x23_c00211{left:360.150000px;}
.x12_c00211{left:361.800000px;}
.x4a_c00211{left:365.100000px;}
.x91_c00211{left:367.500000px;}
.x57_c00211{left:370.050000px;}
.x3c_c00211{left:371.700000px;}
.x9d_c00211{left:374.700000px;}
.x11e_c00211{left:376.200000px;}
.x1c_c00211{left:377.250000px;}
.xf4_c00211{left:378.750000px;}
.x13_c00211{left:381.900000px;}
.xb5_c00211{left:382.950000px;}
.x33_c00211{left:385.950000px;}
.x8b_c00211{left:387.300000px;}
.x4b_c00211{left:388.500000px;}
.x10b_c00211{left:390.150000px;}
.xb3_c00211{left:392.700000px;}
.xa9_c00211{left:393.750000px;}
.x8_c00211{left:396.000000px;}
.x92_c00211{left:397.350000px;}
.x34_c00211{left:399.300000px;}
.xf2_c00211{left:402.300000px;}
.x126_c00211{left:403.350000px;}
.xa4_c00211{left:405.600000px;}
.x53_c00211{left:406.800000px;}
.x1d_c00211{left:409.650000px;}
.xab_c00211{left:411.150000px;}
.x24_c00211{left:413.100000px;}
.x88_c00211{left:414.750000px;}
.x42_c00211{left:418.350000px;}
.xa2_c00211{left:419.550000px;}
.x47_c00211{left:421.500000px;}
.x8e_c00211{left:422.850000px;}
.x97_c00211{left:425.100000px;}
.x2_c00211{left:426.600000px;}
.x3d_c00211{left:427.800000px;}
.x1e_c00211{left:429.450000px;}
.xfa_c00211{left:431.550000px;}
.x25_c00211{left:432.600000px;}
.xb6_c00211{left:433.650000px;}
.x111_c00211{left:434.850000px;}
.x128_c00211{left:437.550000px;}
.xaf_c00211{left:440.100000px;}
.xa5_c00211{left:443.400000px;}
.x125_c00211{left:445.650000px;}
.x120_c00211{left:446.700000px;}
.x98_c00211{left:448.200000px;}
.xb0_c00211{left:449.850000px;}
.x3e_c00211{left:451.200000px;}
.x93_c00211{left:453.450000px;}
.x35_c00211{left:455.100000px;}
.x14_c00211{left:456.750000px;}
.x26_c00211{left:459.300000px;}
.xf3_c00211{left:462.450000px;}
.x8f_c00211{left:464.550000px;}
.xed_c00211{left:466.050000px;}
.x9_c00211{left:469.050000px;}
.xfb_c00211{left:470.100000px;}
.x1f_c00211{left:471.600000px;}
.x121_c00211{left:472.650000px;}
.x3f_c00211{left:473.850000px;}
.x27_c00211{left:475.500000px;}
.x4c_c00211{left:477.750000px;}
.x48_c00211{left:479.550000px;}
.x54_c00211{left:481.650000px;}
.xf5_c00211{left:483.000000px;}
.xef_c00211{left:484.200000px;}
.xad_c00211{left:485.400000px;}
.x116_c00211{left:487.500000px;}
.x9e_c00211{left:489.150000px;}
.x119_c00211{left:492.300000px;}
.xa6_c00211{left:497.700000px;}
.xf6_c00211{left:499.200000px;}
.x112_c00211{left:501.150000px;}
.x99_c00211{left:502.500000px;}
.x43_c00211{left:506.250000px;}
.x4d_c00211{left:507.300000px;}
.xf7_c00211{left:510.750000px;}
.xf8_c00211{left:529.050000px;}
.x159_c00211{left:532.050000px;}
.x14d_c00211{left:533.100000px;}
.x141_c00211{left:534.750000px;}
.x132_c00211{left:535.950000px;}
.xa_c00211{left:537.150000px;}
.x28_c00211{left:538.800000px;}
.x154_c00211{left:547.800000px;}
.x147_c00211{left:549.000000px;}
.x12c_c00211{left:550.800000px;}
.x15a_c00211{left:552.600000px;}
.x20_c00211{left:554.400000px;}
.x58_c00211{left:555.900000px;}
.x7a_c00211{left:557.100000px;}
.x14e_c00211{left:560.850000px;}
.x158_c00211{left:561.900000px;}
.x137_c00211{left:563.850000px;}
.x13c_c00211{left:565.950000px;}
.x149_c00211{left:569.850000px;}
.x133_c00211{left:571.200000px;}
.x29_c00211{left:573.300000px;}
.x15_c00211{left:574.800000px;}
.x14f_c00211{left:576.300000px;}
.x71_c00211{left:577.800000px;}
.x13a_c00211{left:579.900000px;}
.x145_c00211{left:586.350000px;}
.x101_c00211{left:588.000000px;}
.xcf_c00211{left:590.400000px;}
.x62_c00211{left:591.600000px;}
.x59_c00211{left:592.950000px;}
.xeb_c00211{left:594.300000px;}
.xd2_c00211{left:595.350000px;}
.x2a_c00211{left:596.400000px;}
.xbd_c00211{left:598.650000px;}
.x12e_c00211{left:600.450000px;}
.xc5_c00211{left:601.950000px;}
.xcd_c00211{left:603.000000px;}
.x105_c00211{left:604.050000px;}
.xdd_c00211{left:605.250000px;}
.xb_c00211{left:606.300000px;}
.x73_c00211{left:607.800000px;}
.xb7_c00211{left:609.750000px;}
.x80_c00211{left:612.000000px;}
.x69_c00211{left:613.500000px;}
.x142_c00211{left:615.750000px;}
.xbe_c00211{left:617.700000px;}
.xcb_c00211{left:619.200000px;}
.xe7_c00211{left:620.250000px;}
.xd3_c00211{left:622.650000px;}
.xe5_c00211{left:625.350000px;}
.xce_c00211{left:626.700000px;}
.x150_c00211{left:628.800000px;}
.x13d_c00211{left:630.600000px;}
.x5a_c00211{left:631.800000px;}
.x139_c00211{left:634.500000px;}
.xfc_c00211{left:635.700000px;}
.x102_c00211{left:636.900000px;}
.x7b_c00211{left:639.150000px;}
.x63_c00211{left:640.200000px;}
.x14a_c00211{left:641.850000px;}
.x2b_c00211{left:643.200000px;}
.x138_c00211{left:644.550000px;}
.x6a_c00211{left:646.650000px;}
.x7c_c00211{left:647.850000px;}
.xc1_c00211{left:649.200000px;}
.x103_c00211{left:650.550000px;}
.x13e_c00211{left:652.200000px;}
.x72_c00211{left:657.300000px;}
.xd7_c00211{left:658.500000px;}
.x5b_c00211{left:661.650000px;}
.xe9_c00211{left:663.750000px;}
.x148_c00211{left:666.000000px;}
.x7d_c00211{left:668.700000px;}
.xd4_c00211{left:669.750000px;}
.xdb_c00211{left:670.950000px;}
.x74_c00211{left:672.900000px;}
.x6b_c00211{left:675.150000px;}
.x64_c00211{left:676.950000px;}
.x81_c00211{left:678.600000px;}
.xde_c00211{left:679.800000px;}
.x6e_c00211{left:681.300000px;}
.xc2_c00211{left:683.700000px;}
.x14b_c00211{left:685.800000px;}
.x151_c00211{left:687.900000px;}
.xc_c00211{left:693.450000px;}
.x65_c00211{left:696.000000px;}
.x75_c00211{left:698.100000px;}
.x5c_c00211{left:699.150000px;}
.x134_c00211{left:700.200000px;}
.xdf_c00211{left:701.700000px;}
.xc3_c00211{left:703.500000px;}
.x146_c00211{left:704.850000px;}
.xd5_c00211{left:706.050000px;}
.xbf_c00211{left:708.300000px;}
.x152_c00211{left:710.550000px;}
.xc6_c00211{left:711.750000px;}
.x5d_c00211{left:714.600000px;}
.x82_c00211{left:716.100000px;}
.x7e_c00211{left:719.850000px;}
.x2c_c00211{left:720.900000px;}
.x12f_c00211{left:724.350000px;}
.xb8_c00211{left:726.150000px;}
.xfd_c00211{left:730.050000px;}
.xcc_c00211{left:733.650000px;}
.x76_c00211{left:734.850000px;}
.xc8_c00211{left:736.500000px;}
.x155_c00211{left:739.050000px;}
.x6f_c00211{left:741.000000px;}
.xe6_c00211{left:743.100000px;}
.xe0_c00211{left:744.600000px;}
.xfe_c00211{left:745.950000px;}
.x5e_c00211{left:747.000000px;}
.xd0_c00211{left:748.800000px;}
.x130_c00211{left:751.050000px;}
.xd8_c00211{left:752.550000px;}
.x153_c00211{left:754.050000px;}
.xc0_c00211{left:755.100000px;}
.x5f_c00211{left:757.050000px;}
.x15b_c00211{left:758.850000px;}
.x2d_c00211{left:760.500000px;}
.x66_c00211{left:761.850000px;}
.x77_c00211{left:763.650000px;}
.x60_c00211{left:765.300000px;}
.xd6_c00211{left:769.050000px;}
.x6c_c00211{left:770.850000px;}
.x12d_c00211{left:772.650000px;}
.xb9_c00211{left:775.050000px;}
.xff_c00211{left:777.000000px;}
.xe1_c00211{left:778.050000px;}
.x13f_c00211{left:780.450000px;}
.x61_c00211{left:781.800000px;}
.x16_c00211{left:785.400000px;}
.xba_c00211{left:786.900000px;}
.xc9_c00211{left:788.400000px;}
.x135_c00211{left:790.950000px;}
.x83_c00211{left:792.750000px;}
.x78_c00211{left:794.250000px;}
.xe2_c00211{left:795.750000px;}
.x107_c00211{left:798.750000px;}
.xd_c00211{left:801.750000px;}
.xbb_c00211{left:802.800000px;}
.xd9_c00211{left:805.500000px;}
.xca_c00211{left:807.900000px;}
.x136_c00211{left:810.000000px;}
.x84_c00211{left:811.050000px;}
.x13b_c00211{left:813.300000px;}
.xe3_c00211{left:816.600000px;}
.x67_c00211{left:818.400000px;}
.x70_c00211{left:820.500000px;}
.xd1_c00211{left:821.550000px;}
.x143_c00211{left:822.600000px;}
.x108_c00211{left:824.550000px;}
.xc4_c00211{left:826.950000px;}
.xea_c00211{left:828.300000px;}
.x14c_c00211{left:829.350000px;}
.x140_c00211{left:830.400000px;}
.x7f_c00211{left:832.200000px;}
.x156_c00211{left:833.700000px;}
.x106_c00211{left:836.100000px;}
.x2e_c00211{left:837.150000px;}
.x79_c00211{left:838.950000px;}
.xbc_c00211{left:841.650000px;}
.xc7_c00211{left:842.850000px;}
.x6d_c00211{left:844.350000px;}
.x157_c00211{left:846.300000px;}
.x104_c00211{left:848.100000px;}
.xdc_c00211{left:849.300000px;}
.xe_c00211{left:850.350000px;}
.x131_c00211{left:853.050000px;}
.xe4_c00211{left:854.100000px;}
.x144_c00211{left:855.300000px;}
.x68_c00211{left:856.500000px;}
.xe8_c00211{left:858.150000px;}
.x100_c00211{left:859.800000px;}
.xda_c00211{left:861.600000px;}
.x85_c00211{left:868.650000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws8_c00211{word-spacing:-16.111111pt;}
.ws1_c00211{word-spacing:-15.321637pt;}
.ws7_c00211{word-spacing:-9.111111pt;}
.wsb_c00211{word-spacing:-4.587814pt;}
.ws6_c00211{word-spacing:-2.814815pt;}
.wsa_c00211{word-spacing:-1.904762pt;}
.ws0_c00211{word-spacing:-1.481481pt;}
.wsc_c00211{word-spacing:0.000000pt;}
.ws4_c00211{word-spacing:15.578609pt;}
.ws5_c00211{word-spacing:27.623410pt;}
.ws3_c00211{word-spacing:28.912281pt;}
.ws2_c00211{word-spacing:35.522936pt;}
.ws9_c00211{word-spacing:54.099617pt;}
._0_c00211{width:72.280702pt;}
.fs3_c00211{font-size:16.000000pt;}
.fs6_c00211{font-size:26.666667pt;}
.fs7_c00211{font-size:42.666667pt;}
.fs5_c00211{font-size:48.000000pt;}
.fs2_c00211{font-size:53.333333pt;}
.fs1_c00211{font-size:58.666667pt;}
.fs4_c00211{font-size:64.000000pt;}
.fs0_c00211{font-size:101.333333pt;}
.y0_c00211{bottom:0.000000pt;}
.y65_c00211{bottom:168.666667pt;}
.y64_c00211{bottom:173.600000pt;}
.y52_c00211{bottom:180.133333pt;}
.y63_c00211{bottom:186.666667pt;}
.y51_c00211{bottom:195.866667pt;}
.y62_c00211{bottom:199.733333pt;}
.y50_c00211{bottom:202.266667pt;}
.y4f_c00211{bottom:211.600000pt;}
.y61_c00211{bottom:212.533333pt;}
.y60_c00211{bottom:225.066667pt;}
.y4e_c00211{bottom:226.933333pt;}
.y5f_c00211{bottom:238.133333pt;}
.y4d_c00211{bottom:242.533333pt;}
.y5e_c00211{bottom:250.266667pt;}
.y4c_c00211{bottom:258.266667pt;}
.y5d_c00211{bottom:262.400000pt;}
.y4b_c00211{bottom:273.600000pt;}
.y5c_c00211{bottom:275.866667pt;}
.y5b_c00211{bottom:288.666667pt;}
.y4a_c00211{bottom:289.333333pt;}
.y5a_c00211{bottom:301.466667pt;}
.y49_c00211{bottom:308.266667pt;}
.y59_c00211{bottom:313.333333pt;}
.y48_c00211{bottom:324.000000pt;}
.y58_c00211{bottom:326.133333pt;}
.y57_c00211{bottom:338.800000pt;}
.y47_c00211{bottom:339.333333pt;}
.y56_c00211{bottom:351.600000pt;}
.y46_c00211{bottom:355.066667pt;}
.y55_c00211{bottom:364.400000pt;}
.y45_c00211{bottom:370.800000pt;}
.y54_c00211{bottom:376.933333pt;}
.y44_c00211{bottom:386.800000pt;}
.y53_c00211{bottom:389.466667pt;}
.y43_c00211{bottom:402.533333pt;}
.y42_c00211{bottom:418.266667pt;}
.y3e_c00211{bottom:432.800000pt;}
.y41_c00211{bottom:435.200000pt;}
.y40_c00211{bottom:437.733333pt;}
.y3d_c00211{bottom:449.466667pt;}
.y3f_c00211{bottom:453.466667pt;}
.y3c_c00211{bottom:464.533333pt;}
.y37_c00211{bottom:472.933333pt;}
.y3b_c00211{bottom:480.266667pt;}
.y36_c00211{bottom:488.933333pt;}
.y3a_c00211{bottom:496.000000pt;}
.y35_c00211{bottom:504.666667pt;}
.y39_c00211{bottom:516.133333pt;}
.y34_c00211{bottom:520.000000pt;}
.y38_c00211{bottom:531.866667pt;}
.y33_c00211{bottom:535.733333pt;}
.y26_c00211{bottom:551.200000pt;}
.y32_c00211{bottom:566.933333pt;}
.y25_c00211{bottom:567.200000pt;}
.y31_c00211{bottom:582.666667pt;}
.y24_c00211{bottom:582.933333pt;}
.y30_c00211{bottom:598.400000pt;}
.y23_c00211{bottom:598.666667pt;}
.y22_c00211{bottom:614.400000pt;}
.y2f_c00211{bottom:617.866667pt;}
.y21_c00211{bottom:633.866667pt;}
.y2e_c00211{bottom:649.200000pt;}
.y20_c00211{bottom:649.866667pt;}
.y2d_c00211{bottom:665.200000pt;}
.y1f_c00211{bottom:665.600000pt;}
.y2c_c00211{bottom:680.933333pt;}
.y1e_c00211{bottom:681.333333pt;}
.y2b_c00211{bottom:696.933333pt;}
.y1d_c00211{bottom:701.066667pt;}
.y2a_c00211{bottom:716.000000pt;}
.y1c_c00211{bottom:716.400000pt;}
.y29_c00211{bottom:732.000000pt;}
.y1b_c00211{bottom:732.133333pt;}
.y28_c00211{bottom:747.733333pt;}
.y1a_c00211{bottom:748.000000pt;}
.y19_c00211{bottom:763.733333pt;}
.y18_c00211{bottom:779.466667pt;}
.y17_c00211{bottom:795.200000pt;}
.y16_c00211{bottom:810.933333pt;}
.y27_c00211{bottom:811.200000pt;}
.ye_c00211{bottom:826.933333pt;}
.yd_c00211{bottom:842.266667pt;}
.y15_c00211{bottom:842.800000pt;}
.y14_c00211{bottom:858.533333pt;}
.yc_c00211{bottom:861.733333pt;}
.y13_c00211{bottom:874.533333pt;}
.yb_c00211{bottom:878.400000pt;}
.ya_c00211{bottom:893.466667pt;}
.y12_c00211{bottom:893.733333pt;}
.y9_c00211{bottom:902.400000pt;}
.y8_c00211{bottom:909.466667pt;}
.y11_c00211{bottom:909.733333pt;}
.y10_c00211{bottom:925.733333pt;}
.y7_c00211{bottom:928.400000pt;}
.yf_c00211{bottom:941.733333pt;}
.y6_c00211{bottom:944.666667pt;}
.y5_c00211{bottom:960.266667pt;}
.y4_c00211{bottom:976.400000pt;}
.y3_c00211{bottom:986.933333pt;}
.y2_c00211{bottom:992.666667pt;}
.y1_c00211{bottom:1015.733333pt;}
.h5_c00211{height:16.000000pt;}
.h8_c00211{height:26.666667pt;}
.h9_c00211{height:42.666667pt;}
.h7_c00211{height:48.000000pt;}
.h4_c00211{height:53.333333pt;}
.h3_c00211{height:58.666667pt;}
.h6_c00211{height:64.000000pt;}
.h2_c00211{height:101.333333pt;}
.h0_c00211{height:1128.640056pt;}
.h1_c00211{height:1128.666667pt;}
.w1_c00211{width:856.000000pt;}
.w0_c00211{width:856.319987pt;}
.x0_c00211{left:0.000000pt;}
.x129_c00211{left:160.133333pt;}
.x110_c00211{left:161.866667pt;}
.x1_c00211{left:162.933333pt;}
.x4f_c00211{left:164.133333pt;}
.x113_c00211{left:174.133333pt;}
.x117_c00211{left:175.066667pt;}
.xf9_c00211{left:176.533333pt;}
.xf_c00211{left:177.600000pt;}
.x17_c00211{left:178.800000pt;}
.xa7_c00211{left:179.733333pt;}
.x36_c00211{left:180.800000pt;}
.x3_c00211{left:185.333333pt;}
.x8c_c00211{left:187.466667pt;}
.x37_c00211{left:191.066667pt;}
.x3a_c00211{left:193.200000pt;}
.x95_c00211{left:195.466667pt;}
.xaa_c00211{left:197.466667pt;}
.x12a_c00211{left:200.000000pt;}
.xee_c00211{left:203.066667pt;}
.x11c_c00211{left:204.533333pt;}
.xa8_c00211{left:205.600000pt;}
.xa3_c00211{left:206.933333pt;}
.x18_c00211{left:209.200000pt;}
.x50_c00211{left:210.800000pt;}
.x89_c00211{left:211.866667pt;}
.x9a_c00211{left:213.066667pt;}
.xa0_c00211{left:215.066667pt;}
.x10f_c00211{left:216.000000pt;}
.xf0_c00211{left:217.200000pt;}
.x4_c00211{left:219.200000pt;}
.x44_c00211{left:220.133333pt;}
.x11d_c00211{left:221.466667pt;}
.x38_c00211{left:222.400000pt;}
.x19_c00211{left:223.866667pt;}
.x11f_c00211{left:227.466667pt;}
.xb4_c00211{left:228.400000pt;}
.x118_c00211{left:229.733333pt;}
.x4e_c00211{left:230.666667pt;}
.x21_c00211{left:232.266667pt;}
.x39_c00211{left:233.866667pt;}
.x96_c00211{left:235.200000pt;}
.x109_c00211{left:236.133333pt;}
.x2f_c00211{left:240.266667pt;}
.x10_c00211{left:242.533333pt;}
.x124_c00211{left:243.466667pt;}
.x40_c00211{left:245.200000pt;}
.x90_c00211{left:246.266667pt;}
.x10c_c00211{left:248.533333pt;}
.x51_c00211{left:250.533333pt;}
.xb1_c00211{left:252.400000pt;}
.x22_c00211{left:254.000000pt;}
.x1a_c00211{left:254.933333pt;}
.x9b_c00211{left:256.933333pt;}
.x45_c00211{left:258.533333pt;}
.x30_c00211{left:259.733333pt;}
.x123_c00211{left:261.600000pt;}
.x41_c00211{left:263.066667pt;}
.x5_c00211{left:264.933333pt;}
.x9f_c00211{left:267.466667pt;}
.xb2_c00211{left:269.733333pt;}
.x11a_c00211{left:271.600000pt;}
.x86_c00211{left:272.933333pt;}
.x9c_c00211{left:275.200000pt;}
.x114_c00211{left:276.533333pt;}
.x55_c00211{left:278.000000pt;}
.x46_c00211{left:279.600000pt;}
.x52_c00211{left:280.666667pt;}
.x122_c00211{left:281.600000pt;}
.x6_c00211{left:282.800000pt;}
.x10a_c00211{left:284.133333pt;}
.xa1_c00211{left:285.200000pt;}
.x8d_c00211{left:286.266667pt;}
.x49_c00211{left:287.333333pt;}
.x10d_c00211{left:290.133333pt;}
.x31_c00211{left:292.400000pt;}
.x127_c00211{left:294.000000pt;}
.x94_c00211{left:295.200000pt;}
.xac_c00211{left:296.400000pt;}
.x56_c00211{left:298.533333pt;}
.x3b_c00211{left:300.666667pt;}
.xec_c00211{left:302.000000pt;}
.x115_c00211{left:303.333333pt;}
.x11_c00211{left:304.266667pt;}
.x10e_c00211{left:305.866667pt;}
.x1b_c00211{left:306.800000pt;}
.xf1_c00211{left:307.733333pt;}
.xae_c00211{left:308.666667pt;}
.x7_c00211{left:311.333333pt;}
.x32_c00211{left:312.933333pt;}
.x8a_c00211{left:314.533333pt;}
.x12b_c00211{left:315.466667pt;}
.x87_c00211{left:317.466667pt;}
.x11b_c00211{left:319.066667pt;}
.x23_c00211{left:320.133333pt;}
.x12_c00211{left:321.600000pt;}
.x4a_c00211{left:324.533333pt;}
.x91_c00211{left:326.666667pt;}
.x57_c00211{left:328.933333pt;}
.x3c_c00211{left:330.400000pt;}
.x9d_c00211{left:333.066667pt;}
.x11e_c00211{left:334.400000pt;}
.x1c_c00211{left:335.333333pt;}
.xf4_c00211{left:336.666667pt;}
.x13_c00211{left:339.466667pt;}
.xb5_c00211{left:340.400000pt;}
.x33_c00211{left:343.066667pt;}
.x8b_c00211{left:344.266667pt;}
.x4b_c00211{left:345.333333pt;}
.x10b_c00211{left:346.800000pt;}
.xb3_c00211{left:349.066667pt;}
.xa9_c00211{left:350.000000pt;}
.x8_c00211{left:352.000000pt;}
.x92_c00211{left:353.200000pt;}
.x34_c00211{left:354.933333pt;}
.xf2_c00211{left:357.600000pt;}
.x126_c00211{left:358.533333pt;}
.xa4_c00211{left:360.533333pt;}
.x53_c00211{left:361.600000pt;}
.x1d_c00211{left:364.133333pt;}
.xab_c00211{left:365.466667pt;}
.x24_c00211{left:367.200000pt;}
.x88_c00211{left:368.666667pt;}
.x42_c00211{left:371.866667pt;}
.xa2_c00211{left:372.933333pt;}
.x47_c00211{left:374.666667pt;}
.x8e_c00211{left:375.866667pt;}
.x97_c00211{left:377.866667pt;}
.x2_c00211{left:379.200000pt;}
.x3d_c00211{left:380.266667pt;}
.x1e_c00211{left:381.733333pt;}
.xfa_c00211{left:383.600000pt;}
.x25_c00211{left:384.533333pt;}
.xb6_c00211{left:385.466667pt;}
.x111_c00211{left:386.533333pt;}
.x128_c00211{left:388.933333pt;}
.xaf_c00211{left:391.200000pt;}
.xa5_c00211{left:394.133333pt;}
.x125_c00211{left:396.133333pt;}
.x120_c00211{left:397.066667pt;}
.x98_c00211{left:398.400000pt;}
.xb0_c00211{left:399.866667pt;}
.x3e_c00211{left:401.066667pt;}
.x93_c00211{left:403.066667pt;}
.x35_c00211{left:404.533333pt;}
.x14_c00211{left:406.000000pt;}
.x26_c00211{left:408.266667pt;}
.xf3_c00211{left:411.066667pt;}
.x8f_c00211{left:412.933333pt;}
.xed_c00211{left:414.266667pt;}
.x9_c00211{left:416.933333pt;}
.xfb_c00211{left:417.866667pt;}
.x1f_c00211{left:419.200000pt;}
.x121_c00211{left:420.133333pt;}
.x3f_c00211{left:421.200000pt;}
.x27_c00211{left:422.666667pt;}
.x4c_c00211{left:424.666667pt;}
.x48_c00211{left:426.266667pt;}
.x54_c00211{left:428.133333pt;}
.xf5_c00211{left:429.333333pt;}
.xef_c00211{left:430.400000pt;}
.xad_c00211{left:431.466667pt;}
.x116_c00211{left:433.333333pt;}
.x9e_c00211{left:434.800000pt;}
.x119_c00211{left:437.600000pt;}
.xa6_c00211{left:442.400000pt;}
.xf6_c00211{left:443.733333pt;}
.x112_c00211{left:445.466667pt;}
.x99_c00211{left:446.666667pt;}
.x43_c00211{left:450.000000pt;}
.x4d_c00211{left:450.933333pt;}
.xf7_c00211{left:454.000000pt;}
.xf8_c00211{left:470.266667pt;}
.x159_c00211{left:472.933333pt;}
.x14d_c00211{left:473.866667pt;}
.x141_c00211{left:475.333333pt;}
.x132_c00211{left:476.400000pt;}
.xa_c00211{left:477.466667pt;}
.x28_c00211{left:478.933333pt;}
.x154_c00211{left:486.933333pt;}
.x147_c00211{left:488.000000pt;}
.x12c_c00211{left:489.600000pt;}
.x15a_c00211{left:491.200000pt;}
.x20_c00211{left:492.800000pt;}
.x58_c00211{left:494.133333pt;}
.x7a_c00211{left:495.200000pt;}
.x14e_c00211{left:498.533333pt;}
.x158_c00211{left:499.466667pt;}
.x137_c00211{left:501.200000pt;}
.x13c_c00211{left:503.066667pt;}
.x149_c00211{left:506.533333pt;}
.x133_c00211{left:507.733333pt;}
.x29_c00211{left:509.600000pt;}
.x15_c00211{left:510.933333pt;}
.x14f_c00211{left:512.266667pt;}
.x71_c00211{left:513.600000pt;}
.x13a_c00211{left:515.466667pt;}
.x145_c00211{left:521.200000pt;}
.x101_c00211{left:522.666667pt;}
.xcf_c00211{left:524.800000pt;}
.x62_c00211{left:525.866667pt;}
.x59_c00211{left:527.066667pt;}
.xeb_c00211{left:528.266667pt;}
.xd2_c00211{left:529.200000pt;}
.x2a_c00211{left:530.133333pt;}
.xbd_c00211{left:532.133333pt;}
.x12e_c00211{left:533.733333pt;}
.xc5_c00211{left:535.066667pt;}
.xcd_c00211{left:536.000000pt;}
.x105_c00211{left:536.933333pt;}
.xdd_c00211{left:538.000000pt;}
.xb_c00211{left:538.933333pt;}
.x73_c00211{left:540.266667pt;}
.xb7_c00211{left:542.000000pt;}
.x80_c00211{left:544.000000pt;}
.x69_c00211{left:545.333333pt;}
.x142_c00211{left:547.333333pt;}
.xbe_c00211{left:549.066667pt;}
.xcb_c00211{left:550.400000pt;}
.xe7_c00211{left:551.333333pt;}
.xd3_c00211{left:553.466667pt;}
.xe5_c00211{left:555.866667pt;}
.xce_c00211{left:557.066667pt;}
.x150_c00211{left:558.933333pt;}
.x13d_c00211{left:560.533333pt;}
.x5a_c00211{left:561.600000pt;}
.x139_c00211{left:564.000000pt;}
.xfc_c00211{left:565.066667pt;}
.x102_c00211{left:566.133333pt;}
.x7b_c00211{left:568.133333pt;}
.x63_c00211{left:569.066667pt;}
.x14a_c00211{left:570.533333pt;}
.x2b_c00211{left:571.733333pt;}
.x138_c00211{left:572.933333pt;}
.x6a_c00211{left:574.800000pt;}
.x7c_c00211{left:575.866667pt;}
.xc1_c00211{left:577.066667pt;}
.x103_c00211{left:578.266667pt;}
.x13e_c00211{left:579.733333pt;}
.x72_c00211{left:584.266667pt;}
.xd7_c00211{left:585.333333pt;}
.x5b_c00211{left:588.133333pt;}
.xe9_c00211{left:590.000000pt;}
.x148_c00211{left:592.000000pt;}
.x7d_c00211{left:594.400000pt;}
.xd4_c00211{left:595.333333pt;}
.xdb_c00211{left:596.400000pt;}
.x74_c00211{left:598.133333pt;}
.x6b_c00211{left:600.133333pt;}
.x64_c00211{left:601.733333pt;}
.x81_c00211{left:603.200000pt;}
.xde_c00211{left:604.266667pt;}
.x6e_c00211{left:605.600000pt;}
.xc2_c00211{left:607.733333pt;}
.x14b_c00211{left:609.600000pt;}
.x151_c00211{left:611.466667pt;}
.xc_c00211{left:616.400000pt;}
.x65_c00211{left:618.666667pt;}
.x75_c00211{left:620.533333pt;}
.x5c_c00211{left:621.466667pt;}
.x134_c00211{left:622.400000pt;}
.xdf_c00211{left:623.733333pt;}
.xc3_c00211{left:625.333333pt;}
.x146_c00211{left:626.533333pt;}
.xd5_c00211{left:627.600000pt;}
.xbf_c00211{left:629.600000pt;}
.x152_c00211{left:631.600000pt;}
.xc6_c00211{left:632.666667pt;}
.x5d_c00211{left:635.200000pt;}
.x82_c00211{left:636.533333pt;}
.x7e_c00211{left:639.866667pt;}
.x2c_c00211{left:640.800000pt;}
.x12f_c00211{left:643.866667pt;}
.xb8_c00211{left:645.466667pt;}
.xfd_c00211{left:648.933333pt;}
.xcc_c00211{left:652.133333pt;}
.x76_c00211{left:653.200000pt;}
.xc8_c00211{left:654.666667pt;}
.x155_c00211{left:656.933333pt;}
.x6f_c00211{left:658.666667pt;}
.xe6_c00211{left:660.533333pt;}
.xe0_c00211{left:661.866667pt;}
.xfe_c00211{left:663.066667pt;}
.x5e_c00211{left:664.000000pt;}
.xd0_c00211{left:665.600000pt;}
.x130_c00211{left:667.600000pt;}
.xd8_c00211{left:668.933333pt;}
.x153_c00211{left:670.266667pt;}
.xc0_c00211{left:671.200000pt;}
.x5f_c00211{left:672.933333pt;}
.x15b_c00211{left:674.533333pt;}
.x2d_c00211{left:676.000000pt;}
.x66_c00211{left:677.200000pt;}
.x77_c00211{left:678.800000pt;}
.x60_c00211{left:680.266667pt;}
.xd6_c00211{left:683.600000pt;}
.x6c_c00211{left:685.200000pt;}
.x12d_c00211{left:686.800000pt;}
.xb9_c00211{left:688.933333pt;}
.xff_c00211{left:690.666667pt;}
.xe1_c00211{left:691.600000pt;}
.x13f_c00211{left:693.733333pt;}
.x61_c00211{left:694.933333pt;}
.x16_c00211{left:698.133333pt;}
.xba_c00211{left:699.466667pt;}
.xc9_c00211{left:700.800000pt;}
.x135_c00211{left:703.066667pt;}
.x83_c00211{left:704.666667pt;}
.x78_c00211{left:706.000000pt;}
.xe2_c00211{left:707.333333pt;}
.x107_c00211{left:710.000000pt;}
.xd_c00211{left:712.666667pt;}
.xbb_c00211{left:713.600000pt;}
.xd9_c00211{left:716.000000pt;}
.xca_c00211{left:718.133333pt;}
.x136_c00211{left:720.000000pt;}
.x84_c00211{left:720.933333pt;}
.x13b_c00211{left:722.933333pt;}
.xe3_c00211{left:725.866667pt;}
.x67_c00211{left:727.466667pt;}
.x70_c00211{left:729.333333pt;}
.xd1_c00211{left:730.266667pt;}
.x143_c00211{left:731.200000pt;}
.x108_c00211{left:732.933333pt;}
.xc4_c00211{left:735.066667pt;}
.xea_c00211{left:736.266667pt;}
.x14c_c00211{left:737.200000pt;}
.x140_c00211{left:738.133333pt;}
.x7f_c00211{left:739.733333pt;}
.x156_c00211{left:741.066667pt;}
.x106_c00211{left:743.200000pt;}
.x2e_c00211{left:744.133333pt;}
.x79_c00211{left:745.733333pt;}
.xbc_c00211{left:748.133333pt;}
.xc7_c00211{left:749.200000pt;}
.x6d_c00211{left:750.533333pt;}
.x157_c00211{left:752.266667pt;}
.x104_c00211{left:753.866667pt;}
.xdc_c00211{left:754.933333pt;}
.xe_c00211{left:755.866667pt;}
.x131_c00211{left:758.266667pt;}
.xe4_c00211{left:759.200000pt;}
.x144_c00211{left:760.266667pt;}
.x68_c00211{left:761.333333pt;}
.xe8_c00211{left:762.800000pt;}
.x100_c00211{left:764.266667pt;}
.xda_c00211{left:765.866667pt;}
.x85_c00211{left:772.133333pt;}
}





/* 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_c00212 {
    display:none;
  }
  .loading-indicator_c00212.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00212 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_c00212 { 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_c00212" -> "#page-container .classname_c00212")
 */
.pf_c00212 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00212 { /* 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_c00212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00212 { /* 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_c00212 { /* 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_c00212 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00212 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00212 {overflow:visible;}
  }
}
.c_c00212 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00212 { /* 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_c00212:after { /* webkit #35443 */
  content: '';
}
.t_c00212:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00212 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 */
}
.__c00212 { /* 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_c00212 { /* info for Javascript */
  display:none;
}
.l_c00212 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00212 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00212 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00212: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_c00212 {
    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_c00212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00212.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_c00212 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00212;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.000000;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;}
.mba_c00212{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m30_c00212{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m78_c00212{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m109_c00212{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.maf_c00212{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00212{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00212{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m94_c00212{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m28_c00212{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m45_c00212{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mee_c00212{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m104_c00212{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00212{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00212{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00212{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m77_c00212{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m98_c00212{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00212{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m72_c00212{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m92_c00212{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md7_c00212{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m73_c00212{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m76_c00212{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc_c00212{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m100_c00212{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00212{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m62_c00212{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m18_c00212{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m105_c00212{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m59_c00212{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00212{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00212{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m7_c00212{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mec_c00212{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00212{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m15_c00212{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m106_c00212{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00212{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m12_c00212{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00212{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00212{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m107_c00212{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00212{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00212{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00212{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.md6_c00212{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00212{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.me6_c00212{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00212{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00212{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m50_c00212{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m63_c00212{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma_c00212{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mad_c00212{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.md2_c00212{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m51_c00212{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me4_c00212{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00212{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m75_c00212{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00212{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00212{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4_c00212{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m74_c00212{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m41_c00212{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m43_c00212{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m46_c00212{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me7_c00212{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.me2_c00212{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.meb_c00212{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00212{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00212{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00212{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me3_c00212{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00212{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.md8_c00212{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00212{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mff_c00212{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m40_c00212{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00212{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00212{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00212{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m44_c00212{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me1_c00212{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6_c00212{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md5_c00212{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00212{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00212{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00212{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00212{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00212{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00212{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00212{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m67_c00212{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00212{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m86_c00212{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m14_c00212{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00212{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00212{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me5_c00212{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m19_c00212{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00212{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m21_c00212{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m56_c00212{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf_c00212{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m85_c00212{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00212{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00212{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00212{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m52_c00212{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00212{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00212{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00212{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00212{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00212{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m20_c00212{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mea_c00212{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb_c00212{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m29_c00212{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m36_c00212{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m42_c00212{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00212{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.maa_c00212{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00212{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00212{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00212{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m87_c00212{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m58_c00212{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5_c00212{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00212{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00212{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00212{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md_c00212{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00212{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m27_c00212{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m16_c00212{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00212{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00212{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.md9_c00212{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00212{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m39_c00212{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3_c00212{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md3_c00212{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00212{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9_c00212{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00212{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m55_c00212{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00212{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00212{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00212{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m33_c00212{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me9_c00212{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00212{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mce_c00212{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00212{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m26_c00212{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m60_c00212{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m90_c00212{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00212{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00212{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me8_c00212{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m102_c00212{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00212{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8_c00212{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m37_c00212{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m49_c00212{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m32_c00212{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00212{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00212{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00212{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m89_c00212{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mae_c00212{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00212{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m68_c00212{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00212{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00212{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m80_c00212{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mab_c00212{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m82_c00212{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00212{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m101_c00212{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mef_c00212{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00212{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m11_c00212{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00212{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mda_c00212{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00212{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00212{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00212{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.med_c00212{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m61_c00212{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10_c00212{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00212{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m24_c00212{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m53_c00212{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00212{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m65_c00212{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00212{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00212{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m31_c00212{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00212{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m13_c00212{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m64_c00212{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.md0_c00212{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mca_c00212{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00212{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00212{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00212{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00212{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00212{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00212{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00212{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m22_c00212{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m25_c00212{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00212{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00212{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mac_c00212{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m47_c00212{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00212{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m91_c00212{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m88_c00212{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);}
.m84_c00212{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00212{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m34_c00212{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m97_c00212{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m96_c00212{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00212{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m69_c00212{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m38_c00212{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m35_c00212{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m23_c00212{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m66_c00212{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00212{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m57_c00212{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00212{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00212{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00212{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00212{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00212{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md1_c00212{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.md4_c00212{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00212{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00212{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00212{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m79_c00212{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m81_c00212{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00212{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m83_c00212{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00212{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00212{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mde_c00212{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m54_c00212{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00212{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m48_c00212{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m103_c00212{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00212{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m70_c00212{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m71_c00212{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m108_c00212{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me0_c00212{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m93_c00212{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00212{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m99_c00212{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);}
.m95_c00212{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls0_c00212{letter-spacing:0.000000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{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__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00212{word-spacing:-9.353712px;}
.ws5_c00212{word-spacing:-7.500000px;}
.ws6_c00212{word-spacing:-6.578947px;}
.ws4_c00212{word-spacing:-4.166667px;}
.ws8_c00212{word-spacing:-1.405498px;}
.wsa_c00212{word-spacing:0.000000px;}
.ws0_c00212{word-spacing:3.091703px;}
.ws2_c00212{word-spacing:5.312102px;}
.ws3_c00212{word-spacing:5.515078px;}
.ws1_c00212{word-spacing:7.203822px;}
.ws7_c00212{word-spacing:9.333333px;}
.fc0_c00212{color:transparent;}
.fs5_c00212{font-size:48.000000px;}
.fs4_c00212{font-size:54.000000px;}
.fs3_c00212{font-size:60.000000px;}
.fs2_c00212{font-size:66.000000px;}
.fs6_c00212{font-size:72.000000px;}
.fs0_c00212{font-size:78.000000px;}
.fs1_c00212{font-size:84.000000px;}
.y0_c00212{bottom:0.000000px;}
.y6c_c00212{bottom:177.450000px;}
.y6b_c00212{bottom:193.350000px;}
.y38_c00212{bottom:196.200000px;}
.y6a_c00212{bottom:211.050000px;}
.y37_c00212{bottom:214.200000px;}
.y69_c00212{bottom:229.050000px;}
.y36_c00212{bottom:234.450000px;}
.y68_c00212{bottom:246.750000px;}
.y35_c00212{bottom:249.150000px;}
.y34_c00212{bottom:263.550000px;}
.y67_c00212{bottom:264.750000px;}
.y33_c00212{bottom:277.200000px;}
.y66_c00212{bottom:282.450000px;}
.y32_c00212{bottom:292.350000px;}
.y65_c00212{bottom:300.450000px;}
.y31_c00212{bottom:306.300000px;}
.y64_c00212{bottom:317.700000px;}
.y30_c00212{bottom:320.700000px;}
.y2f_c00212{bottom:334.800000px;}
.y63_c00212{bottom:335.400000px;}
.y2e_c00212{bottom:349.200000px;}
.y62_c00212{bottom:353.700000px;}
.y2d_c00212{bottom:363.150000px;}
.y61_c00212{bottom:370.650000px;}
.y2c_c00212{bottom:377.550000px;}
.y60_c00212{bottom:388.650000px;}
.y2b_c00212{bottom:391.650000px;}
.y2a_c00212{bottom:406.050000px;}
.y5f_c00212{bottom:406.650000px;}
.y29_c00212{bottom:420.150000px;}
.y5e_c00212{bottom:424.350000px;}
.y28_c00212{bottom:434.550000px;}
.y5d_c00212{bottom:442.050000px;}
.y27_c00212{bottom:450.000000px;}
.y5c_c00212{bottom:459.750000px;}
.y26_c00212{bottom:469.050000px;}
.y5b_c00212{bottom:477.750000px;}
.y25_c00212{bottom:487.050000px;}
.y5a_c00212{bottom:495.450000px;}
.y24_c00212{bottom:504.300000px;}
.y59_c00212{bottom:513.150000px;}
.y23_c00212{bottom:525.900000px;}
.y58_c00212{bottom:530.850000px;}
.y22_c00212{bottom:543.900000px;}
.y57_c00212{bottom:548.850000px;}
.y21_c00212{bottom:561.600000px;}
.y56_c00212{bottom:566.550000px;}
.y20_c00212{bottom:579.600000px;}
.y55_c00212{bottom:584.250000px;}
.y1f_c00212{bottom:597.300000px;}
.y54_c00212{bottom:601.950000px;}
.y1e_c00212{bottom:614.850000px;}
.y1d_c00212{bottom:632.850000px;}
.y53_c00212{bottom:633.900000px;}
.y52_c00212{bottom:641.850000px;}
.y51_c00212{bottom:659.850000px;}
.y1c_c00212{bottom:663.750000px;}
.y50_c00212{bottom:677.550000px;}
.y1b_c00212{bottom:681.450000px;}
.y4f_c00212{bottom:699.450000px;}
.y1a_c00212{bottom:703.650000px;}
.y4e_c00212{bottom:717.450000px;}
.y19_c00212{bottom:721.350000px;}
.y18_c00212{bottom:739.050000px;}
.y4d_c00212{bottom:739.200000px;}
.y17_c00212{bottom:756.750000px;}
.y4c_c00212{bottom:756.900000px;}
.y16_c00212{bottom:774.450000px;}
.y4b_c00212{bottom:774.600000px;}
.y15_c00212{bottom:792.150000px;}
.y4a_c00212{bottom:792.300000px;}
.y14_c00212{bottom:809.850000px;}
.y49_c00212{bottom:810.000000px;}
.y13_c00212{bottom:827.550000px;}
.y48_c00212{bottom:828.000000px;}
.y12_c00212{bottom:844.800000px;}
.y47_c00212{bottom:845.250000px;}
.y11_c00212{bottom:862.800000px;}
.y46_c00212{bottom:862.950000px;}
.y10_c00212{bottom:880.500000px;}
.y45_c00212{bottom:880.650000px;}
.yf_c00212{bottom:898.200000px;}
.y44_c00212{bottom:898.350000px;}
.y43_c00212{bottom:916.050000px;}
.ye_c00212{bottom:916.500000px;}
.y42_c00212{bottom:934.050000px;}
.yd_c00212{bottom:934.200000px;}
.y41_c00212{bottom:951.750000px;}
.yc_c00212{bottom:951.900000px;}
.y40_c00212{bottom:969.450000px;}
.yb_c00212{bottom:969.900000px;}
.ya_c00212{bottom:986.850000px;}
.y3f_c00212{bottom:987.450000px;}
.y3e_c00212{bottom:1004.700000px;}
.y9_c00212{bottom:1004.850000px;}
.y8_c00212{bottom:1022.550000px;}
.y3d_c00212{bottom:1022.700000px;}
.y7_c00212{bottom:1040.250000px;}
.y3c_c00212{bottom:1040.400000px;}
.y6_c00212{bottom:1057.950000px;}
.y3b_c00212{bottom:1058.100000px;}
.y5_c00212{bottom:1075.650000px;}
.y3a_c00212{bottom:1093.200000px;}
.y4_c00212{bottom:1093.350000px;}
.y39_c00212{bottom:1110.900000px;}
.y3_c00212{bottom:1111.650000px;}
.y2_c00212{bottom:1134.750000px;}
.y1_c00212{bottom:1139.100000px;}
.h7_c00212{height:48.000000px;}
.h6_c00212{height:54.000000px;}
.h5_c00212{height:60.000000px;}
.h4_c00212{height:66.000000px;}
.h8_c00212{height:72.000000px;}
.h2_c00212{height:78.000000px;}
.h3_c00212{height:84.000000px;}
.h1_c00212{height:1271.250000px;}
.h0_c00212{height:1271.519990px;}
.w1_c00212{width:963.000000px;}
.w0_c00212{width:963.359985px;}
.x0_c00212{left:0.000000px;}
.x8f_c00212{left:79.500000px;}
.x9b_c00212{left:80.700000px;}
.x75_c00212{left:81.750000px;}
.x66_c00212{left:82.800000px;}
.x35_c00212{left:88.200000px;}
.x90_c00212{left:94.950000px;}
.x48_c00212{left:99.750000px;}
.x3_c00212{left:100.800000px;}
.x95_c00212{left:108.900000px;}
.x93_c00212{left:110.400000px;}
.x2f_c00212{left:111.750000px;}
.x7b_c00212{left:116.250000px;}
.x7f_c00212{left:118.050000px;}
.x11_c00212{left:120.600000px;}
.x88_c00212{left:121.650000px;}
.x61_c00212{left:123.150000px;}
.x6c_c00212{left:126.600000px;}
.x9d_c00212{left:129.450000px;}
.x94_c00212{left:131.250000px;}
.x8b_c00212{left:132.600000px;}
.x59_c00212{left:134.250000px;}
.x6d_c00212{left:135.600000px;}
.x49_c00212{left:139.650000px;}
.x5d_c00212{left:140.850000px;}
.x91_c00212{left:144.600000px;}
.x12_c00212{left:145.800000px;}
.x42_c00212{left:147.150000px;}
.x30_c00212{left:149.550000px;}
.x36_c00212{left:151.200000px;}
.x6e_c00212{left:153.300000px;}
.x79_c00212{left:155.250000px;}
.xa_c00212{left:156.300000px;}
.x2a_c00212{left:159.150000px;}
.x3b_c00212{left:160.350000px;}
.x19_c00212{left:164.250000px;}
.x13_c00212{left:165.900000px;}
.x9c_c00212{left:168.600000px;}
.x4_c00212{left:169.950000px;}
.xb_c00212{left:174.300000px;}
.x1e_c00212{left:175.350000px;}
.x54_c00212{left:176.550000px;}
.x69_c00212{left:178.350000px;}
.x4e_c00212{left:180.150000px;}
.x9a_c00212{left:182.550000px;}
.x71_c00212{left:184.350000px;}
.x25_c00212{left:185.850000px;}
.x31_c00212{left:187.050000px;}
.x50_c00212{left:188.550000px;}
.x83_c00212{left:191.700000px;}
.x8e_c00212{left:194.850000px;}
.x3c_c00212{left:196.350000px;}
.x37_c00212{left:198.750000px;}
.x96_c00212{left:199.800000px;}
.x5a_c00212{left:201.150000px;}
.xc_c00212{left:202.350000px;}
.x3e_c00212{left:203.400000px;}
.x4a_c00212{left:204.750000px;}
.x89_c00212{left:207.750000px;}
.x14_c00212{left:209.100000px;}
.x9e_c00212{left:211.050000px;}
.x80_c00212{left:214.200000px;}
.x55_c00212{left:215.850000px;}
.x72_c00212{left:218.850000px;}
.x7c_c00212{left:219.900000px;}
.x4f_c00212{left:221.550000px;}
.xd_c00212{left:225.750000px;}
.x86_c00212{left:227.550000px;}
.x26_c00212{left:229.050000px;}
.x8c_c00212{left:231.300000px;}
.x5_c00212{left:233.250000px;}
.x1a_c00212{left:234.750000px;}
.x1f_c00212{left:235.800000px;}
.x97_c00212{left:238.350000px;}
.x73_c00212{left:240.750000px;}
.x81_c00212{left:241.950000px;}
.x67_c00212{left:244.650000px;}
.x99_c00212{left:246.150000px;}
.x62_c00212{left:247.950000px;}
.x38_c00212{left:251.700000px;}
.x82_c00212{left:252.750000px;}
.x15_c00212{left:254.400000px;}
.x4b_c00212{left:256.200000px;}
.x1b_c00212{left:258.150000px;}
.x2b_c00212{left:259.650000px;}
.x6a_c00212{left:264.300000px;}
.x51_c00212{left:268.200000px;}
.x43_c00212{left:270.300000px;}
.xe_c00212{left:275.100000px;}
.x98_c00212{left:276.750000px;}
.x5b_c00212{left:277.800000px;}
.x20_c00212{left:280.350000px;}
.x32_c00212{left:281.400000px;}
.x6_c00212{left:282.600000px;}
.x63_c00212{left:283.950000px;}
.x5e_c00212{left:285.900000px;}
.x52_c00212{left:287.700000px;}
.x21_c00212{left:289.350000px;}
.x44_c00212{left:291.150000px;}
.xf_c00212{left:293.400000px;}
.x3d_c00212{left:294.600000px;}
.x6f_c00212{left:295.950000px;}
.x5f_c00212{left:297.450000px;}
.x16_c00212{left:298.650000px;}
.x4c_c00212{left:299.700000px;}
.x92_c00212{left:300.900000px;}
.x87_c00212{left:301.950000px;}
.x3f_c00212{left:303.300000px;}
.x33_c00212{left:308.100000px;}
.x74_c00212{left:309.150000px;}
.x7_c00212{left:310.350000px;}
.x60_c00212{left:312.900000px;}
.x27_c00212{left:317.550000px;}
.x1_c00212{left:320.700000px;}
.x76_c00212{left:322.500000px;}
.x7a_c00212{left:326.550000px;}
.x22_c00212{left:329.700000px;}
.x2c_c00212{left:330.900000px;}
.x6b_c00212{left:332.100000px;}
.x4d_c00212{left:334.200000px;}
.x64_c00212{left:335.850000px;}
.x28_c00212{left:337.650000px;}
.x56_c00212{left:340.050000px;}
.x45_c00212{left:341.250000px;}
.x8a_c00212{left:343.500000px;}
.x1c_c00212{left:344.550000px;}
.x77_c00212{left:345.600000px;}
.x10_c00212{left:347.700000px;}
.x70_c00212{left:349.650000px;}
.x7d_c00212{left:351.000000px;}
.x84_c00212{left:353.100000px;}
.x34_c00212{left:355.200000px;}
.x40_c00212{left:357.000000px;}
.x23_c00212{left:358.500000px;}
.x46_c00212{left:362.850000px;}
.x1d_c00212{left:365.100000px;}
.x8_c00212{left:366.450000px;}
.x65_c00212{left:367.500000px;}
.x29_c00212{left:369.300000px;}
.x5c_c00212{left:370.950000px;}
.x17_c00212{left:373.050000px;}
.x85_c00212{left:374.700000px;}
.x58_c00212{left:377.250000px;}
.x78_c00212{left:379.500000px;}
.x39_c00212{left:383.250000px;}
.x2d_c00212{left:384.300000px;}
.x9_c00212{left:387.750000px;}
.x53_c00212{left:390.300000px;}
.x18_c00212{left:391.800000px;}
.x47_c00212{left:393.150000px;}
.x24_c00212{left:394.500000px;}
.x68_c00212{left:397.200000px;}
.x8d_c00212{left:398.550000px;}
.x3a_c00212{left:401.250000px;}
.x57_c00212{left:402.600000px;}
.x9f_c00212{left:405.450000px;}
.x41_c00212{left:406.650000px;}
.x7e_c00212{left:410.400000px;}
.x2e_c00212{left:413.100000px;}
.xae_c00212{left:429.900000px;}
.x10c_c00212{left:435.600000px;}
.xaf_c00212{left:438.150000px;}
.x13c_c00212{left:453.300000px;}
.x102_c00212{left:454.350000px;}
.xa0_c00212{left:455.400000px;}
.x149_c00212{left:457.950000px;}
.x111_c00212{left:471.600000px;}
.xed_c00212{left:474.750000px;}
.xc8_c00212{left:476.400000px;}
.xf9_c00212{left:477.750000px;}
.xe6_c00212{left:479.100000px;}
.xe1_c00212{left:480.900000px;}
.x128_c00212{left:483.150000px;}
.x125_c00212{left:485.100000px;}
.xb9_c00212{left:486.750000px;}
.x103_c00212{left:488.250000px;}
.xd0_c00212{left:489.750000px;}
.x10d_c00212{left:491.700000px;}
.xa1_c00212{left:493.200000px;}
.xe9_c00212{left:495.750000px;}
.xf3_c00212{left:497.100000px;}
.xb0_c00212{left:500.850000px;}
.xc1_c00212{left:501.900000px;}
.xde_c00212{left:503.850000px;}
.x142_c00212{left:505.350000px;}
.xd5_c00212{left:506.550000px;}
.x137_c00212{left:508.800000px;}
.xc9_c00212{left:509.850000px;}
.x114_c00212{left:511.950000px;}
.xa2_c00212{left:513.000000px;}
.xe2_c00212{left:514.800000px;}
.xc2_c00212{left:518.400000px;}
.xb1_c00212{left:520.350000px;}
.xfa_c00212{left:522.450000px;}
.x134_c00212{left:524.400000px;}
.x12e_c00212{left:527.700000px;}
.xdb_c00212{left:529.500000px;}
.x10a_c00212{left:531.750000px;}
.x132_c00212{left:533.250000px;}
.xa3_c00212{left:535.350000px;}
.x12a_c00212{left:536.400000px;}
.xd6_c00212{left:537.450000px;}
.xca_c00212{left:538.950000px;}
.x13e_c00212{left:540.150000px;}
.xba_c00212{left:544.050000px;}
.xf7_c00212{left:545.850000px;}
.x100_c00212{left:547.650000px;}
.x104_c00212{left:550.650000px;}
.x107_c00212{left:551.700000px;}
.xee_c00212{left:553.650000px;}
.x139_c00212{left:555.300000px;}
.xe3_c00212{left:556.950000px;}
.xbb_c00212{left:559.950000px;}
.xb2_c00212{left:563.250000px;}
.xd1_c00212{left:565.350000px;}
.x126_c00212{left:566.850000px;}
.xf4_c00212{left:568.050000px;}
.x140_c00212{left:569.100000px;}
.xaa_c00212{left:570.600000px;}
.x12f_c00212{left:574.500000px;}
.xfd_c00212{left:575.550000px;}
.x108_c00212{left:577.200000px;}
.xcb_c00212{left:578.250000px;}
.x129_c00212{left:580.500000px;}
.x138_c00212{left:581.550000px;}
.x121_c00212{left:582.900000px;}
.xa4_c00212{left:585.000000px;}
.x12b_c00212{left:586.050000px;}
.xb3_c00212{left:587.400000px;}
.x115_c00212{left:588.750000px;}
.xd2_c00212{left:590.550000px;}
.xcc_c00212{left:594.150000px;}
.xab_c00212{left:595.500000px;}
.x117_c00212{left:597.450000px;}
.x10e_c00212{left:598.650000px;}
.xbc_c00212{left:599.850000px;}
.xfe_c00212{left:602.250000px;}
.x116_c00212{left:603.750000px;}
.xa5_c00212{left:607.650000px;}
.xd7_c00212{left:608.700000px;}
.x101_c00212{left:610.650000px;}
.x13a_c00212{left:612.150000px;}
.x11d_c00212{left:613.650000px;}
.xb4_c00212{left:616.950000px;}
.xdf_c00212{left:619.500000px;}
.xfb_c00212{left:621.450000px;}
.xc3_c00212{left:623.550000px;}
.x146_c00212{left:627.150000px;}
.x148_c00212{left:629.550000px;}
.xbd_c00212{left:630.750000px;}
.x105_c00212{left:631.950000px;}
.x13b_c00212{left:633.000000px;}
.x136_c00212{left:634.050000px;}
.x11e_c00212{left:635.550000px;}
.x118_c00212{left:637.800000px;}
.xef_c00212{left:640.050000px;}
.x130_c00212{left:641.100000px;}
.x122_c00212{left:643.500000px;}
.xe4_c00212{left:645.150000px;}
.xac_c00212{left:646.200000px;}
.xb5_c00212{left:648.600000px;}
.xea_c00212{left:650.850000px;}
.x11c_c00212{left:652.200000px;}
.xa6_c00212{left:654.150000px;}
.xc4_c00212{left:655.950000px;}
.x10f_c00212{left:657.300000px;}
.xe5_c00212{left:660.600000px;}
.x135_c00212{left:663.750000px;}
.xd8_c00212{left:665.550000px;}
.x133_c00212{left:667.350000px;}
.xeb_c00212{left:668.550000px;}
.x13f_c00212{left:671.550000px;}
.xfc_c00212{left:673.650000px;}
.x141_c00212{left:675.000000px;}
.xa7_c00212{left:676.050000px;}
.xbe_c00212{left:677.250000px;}
.x123_c00212{left:678.450000px;}
.xcd_c00212{left:680.550000px;}
.x12c_c00212{left:681.750000px;}
.xe0_c00212{left:683.250000px;}
.xb6_c00212{left:684.900000px;}
.x119_c00212{left:685.950000px;}
.x112_c00212{left:688.050000px;}
.xd3_c00212{left:690.000000px;}
.x144_c00212{left:691.050000px;}
.x143_c00212{left:692.550000px;}
.xc5_c00212{left:693.750000px;}
.xbf_c00212{left:695.550000px;}
.xf0_c00212{left:696.600000px;}
.x124_c00212{left:697.950000px;}
.xf5_c00212{left:699.450000px;}
.x131_c00212{left:701.550000px;}
.x11f_c00212{left:704.250000px;}
.xb7_c00212{left:705.450000px;}
.xec_c00212{left:706.650000px;}
.xce_c00212{left:708.300000px;}
.xc6_c00212{left:709.950000px;}
.xe7_c00212{left:712.050000px;}
.x120_c00212{left:713.550000px;}
.x147_c00212{left:714.600000px;}
.xdc_c00212{left:716.250000px;}
.x11a_c00212{left:717.300000px;}
.xf6_c00212{left:719.550000px;}
.xa8_c00212{left:720.750000px;}
.xf8_c00212{left:721.950000px;}
.xd9_c00212{left:724.200000px;}
.xb8_c00212{left:726.750000px;}
.xcf_c00212{left:728.100000px;}
.x10b_c00212{left:729.150000px;}
.x145_c00212{left:730.950000px;}
.x106_c00212{left:732.450000px;}
.xc0_c00212{left:734.100000px;}
.xdd_c00212{left:735.300000px;}
.xc7_c00212{left:739.500000px;}
.xf1_c00212{left:740.850000px;}
.xff_c00212{left:742.350000px;}
.xad_c00212{left:743.400000px;}
.x110_c00212{left:744.750000px;}
.x2_c00212{left:745.800000px;}
.x113_c00212{left:747.150000px;}
.x109_c00212{left:748.500000px;}
.x13d_c00212{left:749.700000px;}
.x12d_c00212{left:751.200000px;}
.x11b_c00212{left:752.250000px;}
.xa9_c00212{left:753.450000px;}
.x127_c00212{left:755.400000px;}
.xd4_c00212{left:757.200000px;}
.xe8_c00212{left:760.350000px;}
.xf2_c00212{left:761.400000px;}
.x14a_c00212{left:766.050000px;}
.xda_c00212{left:768.450000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws9_c00212{word-spacing:-8.314410pt;}
.ws5_c00212{word-spacing:-6.666667pt;}
.ws6_c00212{word-spacing:-5.847953pt;}
.ws4_c00212{word-spacing:-3.703704pt;}
.ws8_c00212{word-spacing:-1.249332pt;}
.wsa_c00212{word-spacing:0.000000pt;}
.ws0_c00212{word-spacing:2.748180pt;}
.ws2_c00212{word-spacing:4.721868pt;}
.ws3_c00212{word-spacing:4.902292pt;}
.ws1_c00212{word-spacing:6.403397pt;}
.ws7_c00212{word-spacing:8.296296pt;}
.fs5_c00212{font-size:42.666667pt;}
.fs4_c00212{font-size:48.000000pt;}
.fs3_c00212{font-size:53.333333pt;}
.fs2_c00212{font-size:58.666667pt;}
.fs6_c00212{font-size:64.000000pt;}
.fs0_c00212{font-size:69.333333pt;}
.fs1_c00212{font-size:74.666667pt;}
.y0_c00212{bottom:0.000000pt;}
.y6c_c00212{bottom:157.733333pt;}
.y6b_c00212{bottom:171.866667pt;}
.y38_c00212{bottom:174.400000pt;}
.y6a_c00212{bottom:187.600000pt;}
.y37_c00212{bottom:190.400000pt;}
.y69_c00212{bottom:203.600000pt;}
.y36_c00212{bottom:208.400000pt;}
.y68_c00212{bottom:219.333333pt;}
.y35_c00212{bottom:221.466667pt;}
.y34_c00212{bottom:234.266667pt;}
.y67_c00212{bottom:235.333333pt;}
.y33_c00212{bottom:246.400000pt;}
.y66_c00212{bottom:251.066667pt;}
.y32_c00212{bottom:259.866667pt;}
.y65_c00212{bottom:267.066667pt;}
.y31_c00212{bottom:272.266667pt;}
.y64_c00212{bottom:282.400000pt;}
.y30_c00212{bottom:285.066667pt;}
.y2f_c00212{bottom:297.600000pt;}
.y63_c00212{bottom:298.133333pt;}
.y2e_c00212{bottom:310.400000pt;}
.y62_c00212{bottom:314.400000pt;}
.y2d_c00212{bottom:322.800000pt;}
.y61_c00212{bottom:329.466667pt;}
.y2c_c00212{bottom:335.600000pt;}
.y60_c00212{bottom:345.466667pt;}
.y2b_c00212{bottom:348.133333pt;}
.y2a_c00212{bottom:360.933333pt;}
.y5f_c00212{bottom:361.466667pt;}
.y29_c00212{bottom:373.466667pt;}
.y5e_c00212{bottom:377.200000pt;}
.y28_c00212{bottom:386.266667pt;}
.y5d_c00212{bottom:392.933333pt;}
.y27_c00212{bottom:400.000000pt;}
.y5c_c00212{bottom:408.666667pt;}
.y26_c00212{bottom:416.933333pt;}
.y5b_c00212{bottom:424.666667pt;}
.y25_c00212{bottom:432.933333pt;}
.y5a_c00212{bottom:440.400000pt;}
.y24_c00212{bottom:448.266667pt;}
.y59_c00212{bottom:456.133333pt;}
.y23_c00212{bottom:467.466667pt;}
.y58_c00212{bottom:471.866667pt;}
.y22_c00212{bottom:483.466667pt;}
.y57_c00212{bottom:487.866667pt;}
.y21_c00212{bottom:499.200000pt;}
.y56_c00212{bottom:503.600000pt;}
.y20_c00212{bottom:515.200000pt;}
.y55_c00212{bottom:519.333333pt;}
.y1f_c00212{bottom:530.933333pt;}
.y54_c00212{bottom:535.066667pt;}
.y1e_c00212{bottom:546.533333pt;}
.y1d_c00212{bottom:562.533333pt;}
.y53_c00212{bottom:563.466667pt;}
.y52_c00212{bottom:570.533333pt;}
.y51_c00212{bottom:586.533333pt;}
.y1c_c00212{bottom:590.000000pt;}
.y50_c00212{bottom:602.266667pt;}
.y1b_c00212{bottom:605.733333pt;}
.y4f_c00212{bottom:621.733333pt;}
.y1a_c00212{bottom:625.466667pt;}
.y4e_c00212{bottom:637.733333pt;}
.y19_c00212{bottom:641.200000pt;}
.y18_c00212{bottom:656.933333pt;}
.y4d_c00212{bottom:657.066667pt;}
.y17_c00212{bottom:672.666667pt;}
.y4c_c00212{bottom:672.800000pt;}
.y16_c00212{bottom:688.400000pt;}
.y4b_c00212{bottom:688.533333pt;}
.y15_c00212{bottom:704.133333pt;}
.y4a_c00212{bottom:704.266667pt;}
.y14_c00212{bottom:719.866667pt;}
.y49_c00212{bottom:720.000000pt;}
.y13_c00212{bottom:735.600000pt;}
.y48_c00212{bottom:736.000000pt;}
.y12_c00212{bottom:750.933333pt;}
.y47_c00212{bottom:751.333333pt;}
.y11_c00212{bottom:766.933333pt;}
.y46_c00212{bottom:767.066667pt;}
.y10_c00212{bottom:782.666667pt;}
.y45_c00212{bottom:782.800000pt;}
.yf_c00212{bottom:798.400000pt;}
.y44_c00212{bottom:798.533333pt;}
.y43_c00212{bottom:814.266667pt;}
.ye_c00212{bottom:814.666667pt;}
.y42_c00212{bottom:830.266667pt;}
.yd_c00212{bottom:830.400000pt;}
.y41_c00212{bottom:846.000000pt;}
.yc_c00212{bottom:846.133333pt;}
.y40_c00212{bottom:861.733333pt;}
.yb_c00212{bottom:862.133333pt;}
.ya_c00212{bottom:877.200000pt;}
.y3f_c00212{bottom:877.733333pt;}
.y3e_c00212{bottom:893.066667pt;}
.y9_c00212{bottom:893.200000pt;}
.y8_c00212{bottom:908.933333pt;}
.y3d_c00212{bottom:909.066667pt;}
.y7_c00212{bottom:924.666667pt;}
.y3c_c00212{bottom:924.800000pt;}
.y6_c00212{bottom:940.400000pt;}
.y3b_c00212{bottom:940.533333pt;}
.y5_c00212{bottom:956.133333pt;}
.y3a_c00212{bottom:971.733333pt;}
.y4_c00212{bottom:971.866667pt;}
.y39_c00212{bottom:987.466667pt;}
.y3_c00212{bottom:988.133333pt;}
.y2_c00212{bottom:1008.666667pt;}
.y1_c00212{bottom:1012.533333pt;}
.h7_c00212{height:42.666667pt;}
.h6_c00212{height:48.000000pt;}
.h5_c00212{height:53.333333pt;}
.h4_c00212{height:58.666667pt;}
.h8_c00212{height:64.000000pt;}
.h2_c00212{height:69.333333pt;}
.h3_c00212{height:74.666667pt;}
.h1_c00212{height:1130.000000pt;}
.h0_c00212{height:1130.239991pt;}
.w1_c00212{width:856.000000pt;}
.w0_c00212{width:856.319987pt;}
.x0_c00212{left:0.000000pt;}
.x8f_c00212{left:70.666667pt;}
.x9b_c00212{left:71.733333pt;}
.x75_c00212{left:72.666667pt;}
.x66_c00212{left:73.600000pt;}
.x35_c00212{left:78.400000pt;}
.x90_c00212{left:84.400000pt;}
.x48_c00212{left:88.666667pt;}
.x3_c00212{left:89.600000pt;}
.x95_c00212{left:96.800000pt;}
.x93_c00212{left:98.133333pt;}
.x2f_c00212{left:99.333333pt;}
.x7b_c00212{left:103.333333pt;}
.x7f_c00212{left:104.933333pt;}
.x11_c00212{left:107.200000pt;}
.x88_c00212{left:108.133333pt;}
.x61_c00212{left:109.466667pt;}
.x6c_c00212{left:112.533333pt;}
.x9d_c00212{left:115.066667pt;}
.x94_c00212{left:116.666667pt;}
.x8b_c00212{left:117.866667pt;}
.x59_c00212{left:119.333333pt;}
.x6d_c00212{left:120.533333pt;}
.x49_c00212{left:124.133333pt;}
.x5d_c00212{left:125.200000pt;}
.x91_c00212{left:128.533333pt;}
.x12_c00212{left:129.600000pt;}
.x42_c00212{left:130.800000pt;}
.x30_c00212{left:132.933333pt;}
.x36_c00212{left:134.400000pt;}
.x6e_c00212{left:136.266667pt;}
.x79_c00212{left:138.000000pt;}
.xa_c00212{left:138.933333pt;}
.x2a_c00212{left:141.466667pt;}
.x3b_c00212{left:142.533333pt;}
.x19_c00212{left:146.000000pt;}
.x13_c00212{left:147.466667pt;}
.x9c_c00212{left:149.866667pt;}
.x4_c00212{left:151.066667pt;}
.xb_c00212{left:154.933333pt;}
.x1e_c00212{left:155.866667pt;}
.x54_c00212{left:156.933333pt;}
.x69_c00212{left:158.533333pt;}
.x4e_c00212{left:160.133333pt;}
.x9a_c00212{left:162.266667pt;}
.x71_c00212{left:163.866667pt;}
.x25_c00212{left:165.200000pt;}
.x31_c00212{left:166.266667pt;}
.x50_c00212{left:167.600000pt;}
.x83_c00212{left:170.400000pt;}
.x8e_c00212{left:173.200000pt;}
.x3c_c00212{left:174.533333pt;}
.x37_c00212{left:176.666667pt;}
.x96_c00212{left:177.600000pt;}
.x5a_c00212{left:178.800000pt;}
.xc_c00212{left:179.866667pt;}
.x3e_c00212{left:180.800000pt;}
.x4a_c00212{left:182.000000pt;}
.x89_c00212{left:184.666667pt;}
.x14_c00212{left:185.866667pt;}
.x9e_c00212{left:187.600000pt;}
.x80_c00212{left:190.400000pt;}
.x55_c00212{left:191.866667pt;}
.x72_c00212{left:194.533333pt;}
.x7c_c00212{left:195.466667pt;}
.x4f_c00212{left:196.933333pt;}
.xd_c00212{left:200.666667pt;}
.x86_c00212{left:202.266667pt;}
.x26_c00212{left:203.600000pt;}
.x8c_c00212{left:205.600000pt;}
.x5_c00212{left:207.333333pt;}
.x1a_c00212{left:208.666667pt;}
.x1f_c00212{left:209.600000pt;}
.x97_c00212{left:211.866667pt;}
.x73_c00212{left:214.000000pt;}
.x81_c00212{left:215.066667pt;}
.x67_c00212{left:217.466667pt;}
.x99_c00212{left:218.800000pt;}
.x62_c00212{left:220.400000pt;}
.x38_c00212{left:223.733333pt;}
.x82_c00212{left:224.666667pt;}
.x15_c00212{left:226.133333pt;}
.x4b_c00212{left:227.733333pt;}
.x1b_c00212{left:229.466667pt;}
.x2b_c00212{left:230.800000pt;}
.x6a_c00212{left:234.933333pt;}
.x51_c00212{left:238.400000pt;}
.x43_c00212{left:240.266667pt;}
.xe_c00212{left:244.533333pt;}
.x98_c00212{left:246.000000pt;}
.x5b_c00212{left:246.933333pt;}
.x20_c00212{left:249.200000pt;}
.x32_c00212{left:250.133333pt;}
.x6_c00212{left:251.200000pt;}
.x63_c00212{left:252.400000pt;}
.x5e_c00212{left:254.133333pt;}
.x52_c00212{left:255.733333pt;}
.x21_c00212{left:257.200000pt;}
.x44_c00212{left:258.800000pt;}
.xf_c00212{left:260.800000pt;}
.x3d_c00212{left:261.866667pt;}
.x6f_c00212{left:263.066667pt;}
.x5f_c00212{left:264.400000pt;}
.x16_c00212{left:265.466667pt;}
.x4c_c00212{left:266.400000pt;}
.x92_c00212{left:267.466667pt;}
.x87_c00212{left:268.400000pt;}
.x3f_c00212{left:269.600000pt;}
.x33_c00212{left:273.866667pt;}
.x74_c00212{left:274.800000pt;}
.x7_c00212{left:275.866667pt;}
.x60_c00212{left:278.133333pt;}
.x27_c00212{left:282.266667pt;}
.x1_c00212{left:285.066667pt;}
.x76_c00212{left:286.666667pt;}
.x7a_c00212{left:290.266667pt;}
.x22_c00212{left:293.066667pt;}
.x2c_c00212{left:294.133333pt;}
.x6b_c00212{left:295.200000pt;}
.x4d_c00212{left:297.066667pt;}
.x64_c00212{left:298.533333pt;}
.x28_c00212{left:300.133333pt;}
.x56_c00212{left:302.266667pt;}
.x45_c00212{left:303.333333pt;}
.x8a_c00212{left:305.333333pt;}
.x1c_c00212{left:306.266667pt;}
.x77_c00212{left:307.200000pt;}
.x10_c00212{left:309.066667pt;}
.x70_c00212{left:310.800000pt;}
.x7d_c00212{left:312.000000pt;}
.x84_c00212{left:313.866667pt;}
.x34_c00212{left:315.733333pt;}
.x40_c00212{left:317.333333pt;}
.x23_c00212{left:318.666667pt;}
.x46_c00212{left:322.533333pt;}
.x1d_c00212{left:324.533333pt;}
.x8_c00212{left:325.733333pt;}
.x65_c00212{left:326.666667pt;}
.x29_c00212{left:328.266667pt;}
.x5c_c00212{left:329.733333pt;}
.x17_c00212{left:331.600000pt;}
.x85_c00212{left:333.066667pt;}
.x58_c00212{left:335.333333pt;}
.x78_c00212{left:337.333333pt;}
.x39_c00212{left:340.666667pt;}
.x2d_c00212{left:341.600000pt;}
.x9_c00212{left:344.666667pt;}
.x53_c00212{left:346.933333pt;}
.x18_c00212{left:348.266667pt;}
.x47_c00212{left:349.466667pt;}
.x24_c00212{left:350.666667pt;}
.x68_c00212{left:353.066667pt;}
.x8d_c00212{left:354.266667pt;}
.x3a_c00212{left:356.666667pt;}
.x57_c00212{left:357.866667pt;}
.x9f_c00212{left:360.400000pt;}
.x41_c00212{left:361.466667pt;}
.x7e_c00212{left:364.800000pt;}
.x2e_c00212{left:367.200000pt;}
.xae_c00212{left:382.133333pt;}
.x10c_c00212{left:387.200000pt;}
.xaf_c00212{left:389.466667pt;}
.x13c_c00212{left:402.933333pt;}
.x102_c00212{left:403.866667pt;}
.xa0_c00212{left:404.800000pt;}
.x149_c00212{left:407.066667pt;}
.x111_c00212{left:419.200000pt;}
.xed_c00212{left:422.000000pt;}
.xc8_c00212{left:423.466667pt;}
.xf9_c00212{left:424.666667pt;}
.xe6_c00212{left:425.866667pt;}
.xe1_c00212{left:427.466667pt;}
.x128_c00212{left:429.466667pt;}
.x125_c00212{left:431.200000pt;}
.xb9_c00212{left:432.666667pt;}
.x103_c00212{left:434.000000pt;}
.xd0_c00212{left:435.333333pt;}
.x10d_c00212{left:437.066667pt;}
.xa1_c00212{left:438.400000pt;}
.xe9_c00212{left:440.666667pt;}
.xf3_c00212{left:441.866667pt;}
.xb0_c00212{left:445.200000pt;}
.xc1_c00212{left:446.133333pt;}
.xde_c00212{left:447.866667pt;}
.x142_c00212{left:449.200000pt;}
.xd5_c00212{left:450.266667pt;}
.x137_c00212{left:452.266667pt;}
.xc9_c00212{left:453.200000pt;}
.x114_c00212{left:455.066667pt;}
.xa2_c00212{left:456.000000pt;}
.xe2_c00212{left:457.600000pt;}
.xc2_c00212{left:460.800000pt;}
.xb1_c00212{left:462.533333pt;}
.xfa_c00212{left:464.400000pt;}
.x134_c00212{left:466.133333pt;}
.x12e_c00212{left:469.066667pt;}
.xdb_c00212{left:470.666667pt;}
.x10a_c00212{left:472.666667pt;}
.x132_c00212{left:474.000000pt;}
.xa3_c00212{left:475.866667pt;}
.x12a_c00212{left:476.800000pt;}
.xd6_c00212{left:477.733333pt;}
.xca_c00212{left:479.066667pt;}
.x13e_c00212{left:480.133333pt;}
.xba_c00212{left:483.600000pt;}
.xf7_c00212{left:485.200000pt;}
.x100_c00212{left:486.800000pt;}
.x104_c00212{left:489.466667pt;}
.x107_c00212{left:490.400000pt;}
.xee_c00212{left:492.133333pt;}
.x139_c00212{left:493.600000pt;}
.xe3_c00212{left:495.066667pt;}
.xbb_c00212{left:497.733333pt;}
.xb2_c00212{left:500.666667pt;}
.xd1_c00212{left:502.533333pt;}
.x126_c00212{left:503.866667pt;}
.xf4_c00212{left:504.933333pt;}
.x140_c00212{left:505.866667pt;}
.xaa_c00212{left:507.200000pt;}
.x12f_c00212{left:510.666667pt;}
.xfd_c00212{left:511.600000pt;}
.x108_c00212{left:513.066667pt;}
.xcb_c00212{left:514.000000pt;}
.x129_c00212{left:516.000000pt;}
.x138_c00212{left:516.933333pt;}
.x121_c00212{left:518.133333pt;}
.xa4_c00212{left:520.000000pt;}
.x12b_c00212{left:520.933333pt;}
.xb3_c00212{left:522.133333pt;}
.x115_c00212{left:523.333333pt;}
.xd2_c00212{left:524.933333pt;}
.xcc_c00212{left:528.133333pt;}
.xab_c00212{left:529.333333pt;}
.x117_c00212{left:531.066667pt;}
.x10e_c00212{left:532.133333pt;}
.xbc_c00212{left:533.200000pt;}
.xfe_c00212{left:535.333333pt;}
.x116_c00212{left:536.666667pt;}
.xa5_c00212{left:540.133333pt;}
.xd7_c00212{left:541.066667pt;}
.x101_c00212{left:542.800000pt;}
.x13a_c00212{left:544.133333pt;}
.x11d_c00212{left:545.466667pt;}
.xb4_c00212{left:548.400000pt;}
.xdf_c00212{left:550.666667pt;}
.xfb_c00212{left:552.400000pt;}
.xc3_c00212{left:554.266667pt;}
.x146_c00212{left:557.466667pt;}
.x148_c00212{left:559.600000pt;}
.xbd_c00212{left:560.666667pt;}
.x105_c00212{left:561.733333pt;}
.x13b_c00212{left:562.666667pt;}
.x136_c00212{left:563.600000pt;}
.x11e_c00212{left:564.933333pt;}
.x118_c00212{left:566.933333pt;}
.xef_c00212{left:568.933333pt;}
.x130_c00212{left:569.866667pt;}
.x122_c00212{left:572.000000pt;}
.xe4_c00212{left:573.466667pt;}
.xac_c00212{left:574.400000pt;}
.xb5_c00212{left:576.533333pt;}
.xea_c00212{left:578.533333pt;}
.x11c_c00212{left:579.733333pt;}
.xa6_c00212{left:581.466667pt;}
.xc4_c00212{left:583.066667pt;}
.x10f_c00212{left:584.266667pt;}
.xe5_c00212{left:587.200000pt;}
.x135_c00212{left:590.000000pt;}
.xd8_c00212{left:591.600000pt;}
.x133_c00212{left:593.200000pt;}
.xeb_c00212{left:594.266667pt;}
.x13f_c00212{left:596.933333pt;}
.xfc_c00212{left:598.800000pt;}
.x141_c00212{left:600.000000pt;}
.xa7_c00212{left:600.933333pt;}
.xbe_c00212{left:602.000000pt;}
.x123_c00212{left:603.066667pt;}
.xcd_c00212{left:604.933333pt;}
.x12c_c00212{left:606.000000pt;}
.xe0_c00212{left:607.333333pt;}
.xb6_c00212{left:608.800000pt;}
.x119_c00212{left:609.733333pt;}
.x112_c00212{left:611.600000pt;}
.xd3_c00212{left:613.333333pt;}
.x144_c00212{left:614.266667pt;}
.x143_c00212{left:615.600000pt;}
.xc5_c00212{left:616.666667pt;}
.xbf_c00212{left:618.266667pt;}
.xf0_c00212{left:619.200000pt;}
.x124_c00212{left:620.400000pt;}
.xf5_c00212{left:621.733333pt;}
.x131_c00212{left:623.600000pt;}
.x11f_c00212{left:626.000000pt;}
.xb7_c00212{left:627.066667pt;}
.xec_c00212{left:628.133333pt;}
.xce_c00212{left:629.600000pt;}
.xc6_c00212{left:631.066667pt;}
.xe7_c00212{left:632.933333pt;}
.x120_c00212{left:634.266667pt;}
.x147_c00212{left:635.200000pt;}
.xdc_c00212{left:636.666667pt;}
.x11a_c00212{left:637.600000pt;}
.xf6_c00212{left:639.600000pt;}
.xa8_c00212{left:640.666667pt;}
.xf8_c00212{left:641.733333pt;}
.xd9_c00212{left:643.733333pt;}
.xb8_c00212{left:646.000000pt;}
.xcf_c00212{left:647.200000pt;}
.x10b_c00212{left:648.133333pt;}
.x145_c00212{left:649.733333pt;}
.x106_c00212{left:651.066667pt;}
.xc0_c00212{left:652.533333pt;}
.xdd_c00212{left:653.600000pt;}
.xc7_c00212{left:657.333333pt;}
.xf1_c00212{left:658.533333pt;}
.xff_c00212{left:659.866667pt;}
.xad_c00212{left:660.800000pt;}
.x110_c00212{left:662.000000pt;}
.x2_c00212{left:662.933333pt;}
.x113_c00212{left:664.133333pt;}
.x109_c00212{left:665.333333pt;}
.x13d_c00212{left:666.400000pt;}
.x12d_c00212{left:667.733333pt;}
.x11b_c00212{left:668.666667pt;}
.xa9_c00212{left:669.733333pt;}
.x127_c00212{left:671.466667pt;}
.xd4_c00212{left:673.066667pt;}
.xe8_c00212{left:675.866667pt;}
.xf2_c00212{left:676.800000pt;}
.x14a_c00212{left:680.933333pt;}
.xda_c00212{left:683.066667pt;}
}





/* 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_c00213 {
    display:none;
  }
  .loading-indicator_c00213.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00213 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_c00213 { 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_c00213" -> "#page-container .classname_c00213")
 */
.pf_c00213 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00213 { /* 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_c00213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00213 { /* 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_c00213 { /* 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_c00213 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00213 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00213 {overflow:visible;}
  }
}
.c_c00213 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00213 { /* 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_c00213:after { /* webkit #35443 */
  content: '';
}
.t_c00213:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00213 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 */
}
.__c00213 { /* 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_c00213 { /* info for Javascript */
  display:none;
}
.l_c00213 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00213 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00213 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00213: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_c00213 {
    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_c00213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00213.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_c00213 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00213;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.000000;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;}
.ma3_c00213{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00213{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00213{transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00213{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00213{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00213{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m104_c00213{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00213{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m19_c00213{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6_c00213{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md5_c00213{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mf_c00213{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00213{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md2_c00213{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00213{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00213{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m41_c00213{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00213{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.me4_c00213{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00213{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m90_c00213{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00213{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00213{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00213{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00213{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m97_c00213{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00213{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00213{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00213{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00213{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00213{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m48_c00213{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m16_c00213{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00213{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00213{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m21_c00213{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00213{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m7_c00213{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00213{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mee_c00213{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00213{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m69_c00213{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00213{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00213{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mff_c00213{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m25_c00213{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m54_c00213{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mda_c00213{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.md3_c00213{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00213{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m116_c00213{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m84_c00213{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m61_c00213{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m45_c00213{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md4_c00213{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m65_c00213{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00213{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m37_c00213{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me6_c00213{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m13_c00213{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00213{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00213{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00213{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00213{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m96_c00213{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00213{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00213{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00213{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00213{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00213{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m8_c00213{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00213{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00213{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me2_c00213{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00213{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mae_c00213{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m95_c00213{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma_c00213{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.md_c00213{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00213{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m100_c00213{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00213{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m62_c00213{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00213{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m5_c00213{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00213{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m40_c00213{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m56_c00213{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00213{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00213{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m99_c00213{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00213{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m35_c00213{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m103_c00213{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00213{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00213{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00213{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m31_c00213{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m89_c00213{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m98_c00213{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00213{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m119_c00213{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m14_c00213{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00213{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m47_c00213{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.med_c00213{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00213{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m32_c00213{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9_c00213{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00213{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me0_c00213{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00213{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m27_c00213{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m71_c00213{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m93_c00213{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00213{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m117_c00213{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m29_c00213{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m50_c00213{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00213{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m101_c00213{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m22_c00213{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00213{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m82_c00213{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m66_c00213{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m38_c00213{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00213{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m94_c00213{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me1_c00213{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00213{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md7_c00213{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m77_c00213{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00213{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00213{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00213{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mab_c00213{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.md0_c00213{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00213{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00213{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m17_c00213{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00213{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m57_c00213{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00213{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00213{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m64_c00213{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.me_c00213{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m118_c00213{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m59_c00213{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00213{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m39_c00213{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m92_c00213{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m3_c00213{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m34_c00213{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00213{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00213{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m105_c00213{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00213{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00213{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00213{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m55_c00213{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m110_c00213{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m67_c00213{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00213{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m28_c00213{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00213{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00213{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m52_c00213{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m11_c00213{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00213{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m102_c00213{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00213{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.meb_c00213{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00213{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m24_c00213{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m60_c00213{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00213{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m76_c00213{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m33_c00213{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00213{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m30_c00213{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m70_c00213{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00213{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.maa_c00213{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m80_c00213{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00213{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m73_c00213{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m58_c00213{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md8_c00213{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00213{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m44_c00213{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m12_c00213{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb_c00213{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md1_c00213{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m10_c00213{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00213{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m85_c00213{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m42_c00213{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00213{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md9_c00213{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m81_c00213{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00213{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m107_c00213{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m36_c00213{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00213{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m68_c00213{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m20_c00213{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m108_c00213{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m15_c00213{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00213{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00213{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m109_c00213{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00213{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m46_c00213{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m63_c00213{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mba_c00213{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00213{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00213{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00213{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m83_c00213{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me5_c00213{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00213{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.me3_c00213{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mea_c00213{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me9_c00213{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mef_c00213{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m106_c00213{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m18_c00213{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00213{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m23_c00213{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m72_c00213{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00213{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mde_c00213{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mec_c00213{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m91_c00213{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m53_c00213{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);}
.m79_c00213{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00213{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.me7_c00213{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m78_c00213{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mca_c00213{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00213{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m87_c00213{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00213{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00213{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m43_c00213{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00213{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m111_c00213{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00213{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.me8_c00213{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.maf_c00213{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00213{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00213{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mce_c00213{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00213{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m75_c00213{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00213{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m113_c00213{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00213{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m112_c00213{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00213{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00213{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00213{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m86_c00213{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00213{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m115_c00213{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m74_c00213{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m51_c00213{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m88_c00213{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00213{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00213{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00213{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00213{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m114_c00213{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md6_c00213{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00213{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mac_c00213{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00213{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m49_c00213{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00213{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00213{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mad_c00213{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00213{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.m26_c00213{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00213{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls1_c00213{letter-spacing:0.000000px;}
.ls0_c00213{letter-spacing:70.000000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{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__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00213{word-spacing:-100.000000px;}
.ws7_c00213{word-spacing:-0.250000px;}
.ws9_c00213{word-spacing:0.000000px;}
.ws8_c00213{word-spacing:0.156250px;}
.ws5_c00213{word-spacing:3.235294px;}
.ws6_c00213{word-spacing:3.848485px;}
.ws4_c00213{word-spacing:4.493450px;}
.ws0_c00213{word-spacing:15.000000px;}
.ws1_c00213{word-spacing:25.714286px;}
.ws2_c00213{word-spacing:65.000000px;}
._1_c00213{margin-left:-70.000000px;}
._0_c00213{width:48.125000px;}
._2_c00213{width:54.062500px;}
.fc0_c00213{color:transparent;}
.fs5_c00213{font-size:48.000000px;}
.fs4_c00213{font-size:54.000000px;}
.fs3_c00213{font-size:60.000000px;}
.fs0_c00213{font-size:66.000000px;}
.fs2_c00213{font-size:72.000000px;}
.fs1_c00213{font-size:78.000000px;}
.y0_c00213{bottom:0.000000px;}
.y67_c00213{bottom:194.700000px;}
.y68_c00213{bottom:196.500000px;}
.y66_c00213{bottom:209.250000px;}
.y4a_c00213{bottom:214.650000px;}
.y65_c00213{bottom:223.650000px;}
.y49_c00213{bottom:232.350000px;}
.y64_c00213{bottom:238.050000px;}
.y48_c00213{bottom:250.350000px;}
.y63_c00213{bottom:259.950000px;}
.y62_c00213{bottom:265.350000px;}
.y47_c00213{bottom:268.050000px;}
.y61_c00213{bottom:280.350000px;}
.y46_c00213{bottom:286.050000px;}
.y60_c00213{bottom:294.750000px;}
.y45_c00213{bottom:303.750000px;}
.y5f_c00213{bottom:308.850000px;}
.y44_c00213{bottom:321.750000px;}
.y5e_c00213{bottom:323.550000px;}
.y5d_c00213{bottom:337.950000px;}
.y43_c00213{bottom:339.450000px;}
.y5c_c00213{bottom:352.050000px;}
.y42_c00213{bottom:358.500000px;}
.y5b_c00213{bottom:366.450000px;}
.y41_c00213{bottom:375.450000px;}
.y5a_c00213{bottom:381.000000px;}
.y40_c00213{bottom:395.250000px;}
.y59_c00213{bottom:395.700000px;}
.y58_c00213{bottom:409.800000px;}
.y3f_c00213{bottom:409.950000px;}
.y3e_c00213{bottom:424.050000px;}
.y57_c00213{bottom:424.200000px;}
.y3d_c00213{bottom:438.750000px;}
.y56_c00213{bottom:438.900000px;}
.y3c_c00213{bottom:452.850000px;}
.y55_c00213{bottom:453.300000px;}
.y3b_c00213{bottom:466.500000px;}
.y54_c00213{bottom:467.700000px;}
.y3a_c00213{bottom:480.900000px;}
.y53_c00213{bottom:482.400000px;}
.y39_c00213{bottom:495.450000px;}
.y38_c00213{bottom:509.850000px;}
.y37_c00213{bottom:522.750000px;}
.y52_c00213{bottom:534.600000px;}
.y36_c00213{bottom:546.150000px;}
.y51_c00213{bottom:552.450000px;}
.y35_c00213{bottom:564.150000px;}
.y50_c00213{bottom:570.450000px;}
.y34_c00213{bottom:586.350000px;}
.y4f_c00213{bottom:588.150000px;}
.y33_c00213{bottom:604.050000px;}
.y4e_c00213{bottom:605.850000px;}
.y32_c00213{bottom:621.750000px;}
.y4d_c00213{bottom:623.550000px;}
.y31_c00213{bottom:639.750000px;}
.y4c_c00213{bottom:641.550000px;}
.y30_c00213{bottom:657.750000px;}
.y4b_c00213{bottom:659.550000px;}
.y2f_c00213{bottom:679.650000px;}
.y18_c00213{bottom:685.050000px;}
.y17_c00213{bottom:703.350000px;}
.y2e_c00213{bottom:706.350000px;}
.y16_c00213{bottom:721.050000px;}
.y2d_c00213{bottom:728.250000px;}
.y15_c00213{bottom:738.750000px;}
.y2c_c00213{bottom:750.600000px;}
.y14_c00213{bottom:756.750000px;}
.y2b_c00213{bottom:768.600000px;}
.y13_c00213{bottom:781.950000px;}
.y2a_c00213{bottom:790.500000px;}
.y12_c00213{bottom:796.350000px;}
.y29_c00213{bottom:808.500000px;}
.y11_c00213{bottom:820.350000px;}
.y28_c00213{bottom:826.200000px;}
.y10_c00213{bottom:838.050000px;}
.y27_c00213{bottom:843.900000px;}
.y26_c00213{bottom:864.300000px;}
.yf_c00213{bottom:864.600000px;}
.ye_c00213{bottom:882.300000px;}
.y25_c00213{bottom:884.400000px;}
.yd_c00213{bottom:900.000000px;}
.y24_c00213{bottom:902.400000px;}
.y23_c00213{bottom:920.100000px;}
.yc_c00213{bottom:922.350000px;}
.y22_c00213{bottom:942.450000px;}
.yb_c00213{bottom:952.350000px;}
.y21_c00213{bottom:960.150000px;}
.ya_c00213{bottom:970.350000px;}
.y20_c00213{bottom:982.500000px;}
.y9_c00213{bottom:988.050000px;}
.y8_c00213{bottom:1005.750000px;}
.y1f_c00213{bottom:1008.600000px;}
.y7_c00213{bottom:1023.450000px;}
.y1e_c00213{bottom:1026.300000px;}
.y6_c00213{bottom:1041.150000px;}
.y1d_c00213{bottom:1044.000000px;}
.y1c_c00213{bottom:1062.000000px;}
.y5_c00213{bottom:1068.000000px;}
.y1b_c00213{bottom:1084.350000px;}
.y4_c00213{bottom:1085.700000px;}
.y1a_c00213{bottom:1101.600000px;}
.y3_c00213{bottom:1103.400000px;}
.y19_c00213{bottom:1119.300000px;}
.y2_c00213{bottom:1121.100000px;}
.y1_c00213{bottom:1146.900000px;}
.h7_c00213{height:48.000000px;}
.h6_c00213{height:54.000000px;}
.h5_c00213{height:60.000000px;}
.h2_c00213{height:66.000000px;}
.h4_c00213{height:72.000000px;}
.h3_c00213{height:78.000000px;}
.h0_c00213{height:1275.480010px;}
.h1_c00213{height:1275.750000px;}
.w1_c00213{width:963.000000px;}
.w0_c00213{width:963.359985px;}
.x0_c00213{left:0.000000px;}
.x4b_c00213{left:187.200000px;}
.x1_c00213{left:188.250000px;}
.x12e_c00213{left:192.600000px;}
.x3_c00213{left:194.100000px;}
.x129_c00213{left:195.900000px;}
.x53_c00213{left:202.200000px;}
.x122_c00213{left:203.250000px;}
.xd_c00213{left:204.900000px;}
.x15_c00213{left:205.950000px;}
.x118_c00213{left:208.650000px;}
.x135_c00213{left:209.850000px;}
.x116_c00213{left:213.450000px;}
.x28_c00213{left:217.350000px;}
.x133_c00213{left:218.700000px;}
.x11c_c00213{left:219.750000px;}
.x12f_c00213{left:221.700000px;}
.x3d_c00213{left:224.850000px;}
.x10c_c00213{left:226.050000px;}
.x5e_c00213{left:228.000000px;}
.x16_c00213{left:229.350000px;}
.x139_c00213{left:231.750000px;}
.x1d_c00213{left:233.400000px;}
.x62_c00213{left:235.500000px;}
.x11e_c00213{left:236.550000px;}
.x4_c00213{left:239.850000px;}
.x10f_c00213{left:241.200000px;}
.x39_c00213{left:243.000000px;}
.x37_c00213{left:245.400000px;}
.x13f_c00213{left:247.500000px;}
.x29_c00213{left:249.000000px;}
.x110_c00213{left:250.500000px;}
.x5b_c00213{left:253.050000px;}
.x44_c00213{left:255.300000px;}
.x24_c00213{left:257.700000px;}
.x130_c00213{left:258.750000px;}
.x4f_c00213{left:262.050000px;}
.x1e_c00213{left:265.050000px;}
.x3a_c00213{left:266.700000px;}
.x5_c00213{left:268.950000px;}
.xff_c00213{left:270.750000px;}
.x54_c00213{left:272.550000px;}
.x5c_c00213{left:274.950000px;}
.x5f_c00213{left:277.650000px;}
.xe_c00213{left:282.300000px;}
.x11f_c00213{left:283.350000px;}
.x17_c00213{left:284.850000px;}
.x1f_c00213{left:286.950000px;}
.x6_c00213{left:289.500000px;}
.x3b_c00213{left:291.900000px;}
.x119_c00213{left:294.300000px;}
.x30_c00213{left:295.350000px;}
.x4c_c00213{left:296.400000px;}
.x12a_c00213{left:297.450000px;}
.x55_c00213{left:299.550000px;}
.x127_c00213{left:300.900000px;}
.x5d_c00213{left:302.250000px;}
.x10b_c00213{left:304.500000px;}
.x18_c00213{left:305.700000px;}
.x2a_c00213{left:307.650000px;}
.x13e_c00213{left:309.300000px;}
.xf_c00213{left:310.800000px;}
.x123_c00213{left:312.450000px;}
.x47_c00213{left:313.650000px;}
.x3e_c00213{left:315.450000px;}
.x63_c00213{left:320.850000px;}
.x111_c00213{left:322.500000px;}
.x59_c00213{left:324.300000px;}
.x109_c00213{left:325.950000px;}
.x105_c00213{left:327.150000px;}
.x7_c00213{left:328.350000px;}
.x31_c00213{left:329.850000px;}
.x56_c00213{left:331.200000px;}
.x41_c00213{left:332.700000px;}
.x25_c00213{left:334.800000px;}
.x8_c00213{left:336.300000px;}
.x120_c00213{left:338.100000px;}
.x42_c00213{left:341.700000px;}
.x20_c00213{left:342.750000px;}
.x32_c00213{left:345.750000px;}
.x5a_c00213{left:347.700000px;}
.x112_c00213{left:348.750000px;}
.x48_c00213{left:349.950000px;}
.x9_c00213{left:352.200000px;}
.x117_c00213{left:353.550000px;}
.x19_c00213{left:355.050000px;}
.x2b_c00213{left:357.000000px;}
.x12b_c00213{left:358.650000px;}
.x13a_c00213{left:360.150000px;}
.x38_c00213{left:362.100000px;}
.x60_c00213{left:364.050000px;}
.x128_c00213{left:365.100000px;}
.x10_c00213{left:366.300000px;}
.x3f_c00213{left:367.350000px;}
.x49_c00213{left:368.700000px;}
.x21_c00213{left:371.250000px;}
.x11_c00213{left:374.550000px;}
.x131_c00213{left:375.750000px;}
.xa_c00213{left:378.450000px;}
.x100_c00213{left:380.100000px;}
.x22_c00213{left:382.350000px;}
.x45_c00213{left:384.900000px;}
.x2c_c00213{left:386.850000px;}
.x11a_c00213{left:389.700000px;}
.x4a_c00213{left:391.050000px;}
.x113_c00213{left:392.250000px;}
.x107_c00213{left:399.450000px;}
.x23_c00213{left:401.400000px;}
.x12_c00213{left:403.650000px;}
.x2d_c00213{left:404.850000px;}
.x40_c00213{left:405.900000px;}
.x134_c00213{left:407.850000px;}
.x26_c00213{left:409.050000px;}
.x124_c00213{left:410.700000px;}
.x13b_c00213{left:414.150000px;}
.x33_c00213{left:416.700000px;}
.x50_c00213{left:418.650000px;}
.x61_c00213{left:420.600000px;}
.x102_c00213{left:421.800000px;}
.x57_c00213{left:424.050000px;}
.x132_c00213{left:425.100000px;}
.x1a_c00213{left:428.100000px;}
.x3c_c00213{left:430.050000px;}
.x2_c00213{left:431.550000px;}
.x12c_c00213{left:435.300000px;}
.x114_c00213{left:436.500000px;}
.x34_c00213{left:437.550000px;}
.x13_c00213{left:438.900000px;}
.x10d_c00213{left:440.700000px;}
.x103_c00213{left:442.650000px;}
.x137_c00213{left:444.000000px;}
.xb_c00213{left:448.650000px;}
.x106_c00213{left:450.450000px;}
.x2e_c00213{left:451.950000px;}
.x138_c00213{left:453.150000px;}
.x35_c00213{left:454.500000px;}
.x13c_c00213{left:456.300000px;}
.x58_c00213{left:458.250000px;}
.x4d_c00213{left:460.200000px;}
.x14_c00213{left:464.400000px;}
.x108_c00213{left:468.600000px;}
.x125_c00213{left:469.800000px;}
.x51_c00213{left:471.900000px;}
.x115_c00213{left:473.250000px;}
.x10a_c00213{left:476.400000px;}
.x101_c00213{left:477.900000px;}
.x12d_c00213{left:480.600000px;}
.x121_c00213{left:482.250000px;}
.x11d_c00213{left:486.300000px;}
.x43_c00213{left:488.550000px;}
.x126_c00213{left:489.900000px;}
.x13d_c00213{left:491.550000px;}
.x1b_c00213{left:492.600000px;}
.x46_c00213{left:493.950000px;}
.x4e_c00213{left:496.500000px;}
.x2f_c00213{left:498.750000px;}
.x36_c00213{left:500.250000px;}
.x104_c00213{left:502.800000px;}
.x136_c00213{left:505.950000px;}
.xc_c00213{left:507.300000px;}
.x10e_c00213{left:508.800000px;}
.x11b_c00213{left:513.450000px;}
.x52_c00213{left:514.650000px;}
.x27_c00213{left:516.450000px;}
.x1c_c00213{left:520.350000px;}
.x76_c00213{left:545.400000px;}
.xe6_c00213{left:558.000000px;}
.xca_c00213{left:562.050000px;}
.x6c_c00213{left:563.100000px;}
.x8a_c00213{left:565.200000px;}
.xe3_c00213{left:572.400000px;}
.xe0_c00213{left:573.450000px;}
.xcd_c00213{left:578.700000px;}
.x64_c00213{left:580.350000px;}
.x8f_c00213{left:581.400000px;}
.xc5_c00213{left:584.400000px;}
.xd3_c00213{left:586.500000px;}
.x8b_c00213{left:587.550000px;}
.x140_c00213{left:589.050000px;}
.xf1_c00213{left:590.250000px;}
.x87_c00213{left:592.050000px;}
.xa6_c00213{left:593.550000px;}
.xe1_c00213{left:595.050000px;}
.xc1_c00213{left:599.250000px;}
.xa2_c00213{left:600.300000px;}
.x6d_c00213{left:601.650000px;}
.x80_c00213{left:603.000000px;}
.xd9_c00213{left:604.800000px;}
.xd4_c00213{left:606.150000px;}
.x72_c00213{left:607.500000px;}
.xb4_c00213{left:610.050000px;}
.xe9_c00213{left:611.700000px;}
.xae_c00213{left:613.200000px;}
.x77_c00213{left:614.550000px;}
.xee_c00213{left:615.750000px;}
.xa7_c00213{left:618.450000px;}
.xe4_c00213{left:621.000000px;}
.xfa_c00213{left:622.050000px;}
.x8c_c00213{left:623.250000px;}
.xaf_c00213{left:625.050000px;}
.x88_c00213{left:626.250000px;}
.x94_c00213{left:628.500000px;}
.x90_c00213{left:630.750000px;}
.xab_c00213{left:632.850000px;}
.x7c_c00213{left:635.100000px;}
.xfd_c00213{left:636.450000px;}
.x9d_c00213{left:637.650000px;}
.x65_c00213{left:640.800000px;}
.xf4_c00213{left:642.750000px;}
.xbb_c00213{left:644.700000px;}
.x78_c00213{left:645.900000px;}
.xf2_c00213{left:647.100000px;}
.x89_c00213{left:648.150000px;}
.xb0_c00213{left:649.950000px;}
.x9e_c00213{left:651.750000px;}
.x99_c00213{left:653.400000px;}
.xa9_c00213{left:655.050000px;}
.x73_c00213{left:656.400000px;}
.x66_c00213{left:660.600000px;}
.x141_c00213{left:664.350000px;}
.xc2_c00213{left:665.550000px;}
.xda_c00213{left:667.500000px;}
.xbc_c00213{left:668.850000px;}
.x81_c00213{left:670.350000px;}
.xef_c00213{left:672.300000px;}
.xea_c00213{left:673.650000px;}
.x74_c00213{left:677.250000px;}
.xb6_c00213{left:678.450000px;}
.x9f_c00213{left:682.050000px;}
.x95_c00213{left:685.800000px;}
.xfe_c00213{left:688.050000px;}
.x6e_c00213{left:689.850000px;}
.xf5_c00213{left:691.050000px;}
.x82_c00213{left:692.250000px;}
.xeb_c00213{left:693.750000px;}
.xac_c00213{left:696.450000px;}
.x9a_c00213{left:700.500000px;}
.xc3_c00213{left:706.200000px;}
.x79_c00213{left:707.400000px;}
.xb1_c00213{left:709.050000px;}
.xbd_c00213{left:712.050000px;}
.xa3_c00213{left:713.250000px;}
.xe7_c00213{left:714.600000px;}
.xce_c00213{left:717.600000px;}
.x142_c00213{left:720.450000px;}
.xd5_c00213{left:721.950000px;}
.xdb_c00213{left:724.800000px;}
.xcb_c00213{left:726.300000px;}
.xfb_c00213{left:728.250000px;}
.x67_c00213{left:729.750000px;}
.xbe_c00213{left:731.100000px;}
.x83_c00213{left:732.150000px;}
.x7d_c00213{left:734.100000px;}
.xb7_c00213{left:735.750000px;}
.xc6_c00213{left:737.400000px;}
.xdc_c00213{left:739.200000px;}
.xd6_c00213{left:741.450000px;}
.x8d_c00213{left:742.800000px;}
.xb5_c00213{left:744.600000px;}
.xf0_c00213{left:745.650000px;}
.xb8_c00213{left:748.050000px;}
.x6f_c00213{left:749.250000px;}
.xa0_c00213{left:751.500000px;}
.xdd_c00213{left:753.900000px;}
.x91_c00213{left:755.700000px;}
.xbf_c00213{left:757.350000px;}
.x75_c00213{left:758.550000px;}
.x7a_c00213{left:759.600000px;}
.x68_c00213{left:760.650000px;}
.xcf_c00213{left:763.050000px;}
.x96_c00213{left:765.600000px;}
.xcc_c00213{left:768.750000px;}
.xf8_c00213{left:772.650000px;}
.x70_c00213{left:774.150000px;}
.xde_c00213{left:775.800000px;}
.xc7_c00213{left:777.000000px;}
.x84_c00213{left:778.200000px;}
.xc4_c00213{left:779.550000px;}
.xe5_c00213{left:781.500000px;}
.xe8_c00213{left:782.700000px;}
.x7b_c00213{left:783.750000px;}
.xb9_c00213{left:786.600000px;}
.xfc_c00213{left:787.950000px;}
.x92_c00213{left:790.200000px;}
.xb2_c00213{left:791.850000px;}
.xa1_c00213{left:793.950000px;}
.xc8_c00213{left:796.050000px;}
.xf7_c00213{left:797.550000px;}
.xd7_c00213{left:799.950000px;}
.xaa_c00213{left:801.600000px;}
.xf6_c00213{left:803.250000px;}
.x85_c00213{left:806.250000px;}
.x71_c00213{left:807.600000px;}
.xdf_c00213{left:809.550000px;}
.xe2_c00213{left:811.050000px;}
.xa4_c00213{left:812.850000px;}
.x9b_c00213{left:814.650000px;}
.x97_c00213{left:816.450000px;}
.x7e_c00213{left:820.800000px;}
.x69_c00213{left:822.600000px;}
.xd0_c00213{left:824.250000px;}
.x98_c00213{left:826.950000px;}
.xc9_c00213{left:830.250000px;}
.xec_c00213{left:832.350000px;}
.x7f_c00213{left:833.400000px;}
.xa5_c00213{left:835.500000px;}
.x6a_c00213{left:836.700000px;}
.x9c_c00213{left:838.800000px;}
.xd1_c00213{left:840.750000px;}
.xc0_c00213{left:843.300000px;}
.xba_c00213{left:846.300000px;}
.x8e_c00213{left:847.500000px;}
.x93_c00213{left:850.650000px;}
.xad_c00213{left:852.750000px;}
.xb3_c00213{left:859.200000px;}
.xa8_c00213{left:860.250000px;}
.xd2_c00213{left:861.600000px;}
.x86_c00213{left:863.100000px;}
.xd8_c00213{left:864.750000px;}
.xed_c00213{left:866.550000px;}
.x6b_c00213{left:867.600000px;}
.xf9_c00213{left:868.650000px;}
.xf3_c00213{left:875.700000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls1_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:62.222222pt;}
.ws3_c00213{word-spacing:-88.888889pt;}
.ws7_c00213{word-spacing:-0.222222pt;}
.ws9_c00213{word-spacing:0.000000pt;}
.ws8_c00213{word-spacing:0.138889pt;}
.ws5_c00213{word-spacing:2.875817pt;}
.ws6_c00213{word-spacing:3.420875pt;}
.ws4_c00213{word-spacing:3.994178pt;}
.ws0_c00213{word-spacing:13.333333pt;}
.ws1_c00213{word-spacing:22.857143pt;}
.ws2_c00213{word-spacing:57.777778pt;}
._1_c00213{margin-left:-62.222222pt;}
._0_c00213{width:42.777778pt;}
._2_c00213{width:48.055556pt;}
.fs5_c00213{font-size:42.666667pt;}
.fs4_c00213{font-size:48.000000pt;}
.fs3_c00213{font-size:53.333333pt;}
.fs0_c00213{font-size:58.666667pt;}
.fs2_c00213{font-size:64.000000pt;}
.fs1_c00213{font-size:69.333333pt;}
.y0_c00213{bottom:0.000000pt;}
.y67_c00213{bottom:173.066667pt;}
.y68_c00213{bottom:174.666667pt;}
.y66_c00213{bottom:186.000000pt;}
.y4a_c00213{bottom:190.800000pt;}
.y65_c00213{bottom:198.800000pt;}
.y49_c00213{bottom:206.533333pt;}
.y64_c00213{bottom:211.600000pt;}
.y48_c00213{bottom:222.533333pt;}
.y63_c00213{bottom:231.066667pt;}
.y62_c00213{bottom:235.866667pt;}
.y47_c00213{bottom:238.266667pt;}
.y61_c00213{bottom:249.200000pt;}
.y46_c00213{bottom:254.266667pt;}
.y60_c00213{bottom:262.000000pt;}
.y45_c00213{bottom:270.000000pt;}
.y5f_c00213{bottom:274.533333pt;}
.y44_c00213{bottom:286.000000pt;}
.y5e_c00213{bottom:287.600000pt;}
.y5d_c00213{bottom:300.400000pt;}
.y43_c00213{bottom:301.733333pt;}
.y5c_c00213{bottom:312.933333pt;}
.y42_c00213{bottom:318.666667pt;}
.y5b_c00213{bottom:325.733333pt;}
.y41_c00213{bottom:333.733333pt;}
.y5a_c00213{bottom:338.666667pt;}
.y40_c00213{bottom:351.333333pt;}
.y59_c00213{bottom:351.733333pt;}
.y58_c00213{bottom:364.266667pt;}
.y3f_c00213{bottom:364.400000pt;}
.y3e_c00213{bottom:376.933333pt;}
.y57_c00213{bottom:377.066667pt;}
.y3d_c00213{bottom:390.000000pt;}
.y56_c00213{bottom:390.133333pt;}
.y3c_c00213{bottom:402.533333pt;}
.y55_c00213{bottom:402.933333pt;}
.y3b_c00213{bottom:414.666667pt;}
.y54_c00213{bottom:415.733333pt;}
.y3a_c00213{bottom:427.466667pt;}
.y53_c00213{bottom:428.800000pt;}
.y39_c00213{bottom:440.400000pt;}
.y38_c00213{bottom:453.200000pt;}
.y37_c00213{bottom:464.666667pt;}
.y52_c00213{bottom:475.200000pt;}
.y36_c00213{bottom:485.466667pt;}
.y51_c00213{bottom:491.066667pt;}
.y35_c00213{bottom:501.466667pt;}
.y50_c00213{bottom:507.066667pt;}
.y34_c00213{bottom:521.200000pt;}
.y4f_c00213{bottom:522.800000pt;}
.y33_c00213{bottom:536.933333pt;}
.y4e_c00213{bottom:538.533333pt;}
.y32_c00213{bottom:552.666667pt;}
.y4d_c00213{bottom:554.266667pt;}
.y31_c00213{bottom:568.666667pt;}
.y4c_c00213{bottom:570.266667pt;}
.y30_c00213{bottom:584.666667pt;}
.y4b_c00213{bottom:586.266667pt;}
.y2f_c00213{bottom:604.133333pt;}
.y18_c00213{bottom:608.933333pt;}
.y17_c00213{bottom:625.200000pt;}
.y2e_c00213{bottom:627.866667pt;}
.y16_c00213{bottom:640.933333pt;}
.y2d_c00213{bottom:647.333333pt;}
.y15_c00213{bottom:656.666667pt;}
.y2c_c00213{bottom:667.200000pt;}
.y14_c00213{bottom:672.666667pt;}
.y2b_c00213{bottom:683.200000pt;}
.y13_c00213{bottom:695.066667pt;}
.y2a_c00213{bottom:702.666667pt;}
.y12_c00213{bottom:707.866667pt;}
.y29_c00213{bottom:718.666667pt;}
.y11_c00213{bottom:729.200000pt;}
.y28_c00213{bottom:734.400000pt;}
.y10_c00213{bottom:744.933333pt;}
.y27_c00213{bottom:750.133333pt;}
.y26_c00213{bottom:768.266667pt;}
.yf_c00213{bottom:768.533333pt;}
.ye_c00213{bottom:784.266667pt;}
.y25_c00213{bottom:786.133333pt;}
.yd_c00213{bottom:800.000000pt;}
.y24_c00213{bottom:802.133333pt;}
.y23_c00213{bottom:817.866667pt;}
.yc_c00213{bottom:819.866667pt;}
.y22_c00213{bottom:837.733333pt;}
.yb_c00213{bottom:846.533333pt;}
.y21_c00213{bottom:853.466667pt;}
.ya_c00213{bottom:862.533333pt;}
.y20_c00213{bottom:873.333333pt;}
.y9_c00213{bottom:878.266667pt;}
.y8_c00213{bottom:894.000000pt;}
.y1f_c00213{bottom:896.533333pt;}
.y7_c00213{bottom:909.733333pt;}
.y1e_c00213{bottom:912.266667pt;}
.y6_c00213{bottom:925.466667pt;}
.y1d_c00213{bottom:928.000000pt;}
.y1c_c00213{bottom:944.000000pt;}
.y5_c00213{bottom:949.333333pt;}
.y1b_c00213{bottom:963.866667pt;}
.y4_c00213{bottom:965.066667pt;}
.y1a_c00213{bottom:979.200000pt;}
.y3_c00213{bottom:980.800000pt;}
.y19_c00213{bottom:994.933333pt;}
.y2_c00213{bottom:996.533333pt;}
.y1_c00213{bottom:1019.466667pt;}
.h7_c00213{height:42.666667pt;}
.h6_c00213{height:48.000000pt;}
.h5_c00213{height:53.333333pt;}
.h2_c00213{height:58.666667pt;}
.h4_c00213{height:64.000000pt;}
.h3_c00213{height:69.333333pt;}
.h0_c00213{height:1133.760009pt;}
.h1_c00213{height:1134.000000pt;}
.w1_c00213{width:856.000000pt;}
.w0_c00213{width:856.319987pt;}
.x0_c00213{left:0.000000pt;}
.x4b_c00213{left:166.400000pt;}
.x1_c00213{left:167.333333pt;}
.x12e_c00213{left:171.200000pt;}
.x3_c00213{left:172.533333pt;}
.x129_c00213{left:174.133333pt;}
.x53_c00213{left:179.733333pt;}
.x122_c00213{left:180.666667pt;}
.xd_c00213{left:182.133333pt;}
.x15_c00213{left:183.066667pt;}
.x118_c00213{left:185.466667pt;}
.x135_c00213{left:186.533333pt;}
.x116_c00213{left:189.733333pt;}
.x28_c00213{left:193.200000pt;}
.x133_c00213{left:194.400000pt;}
.x11c_c00213{left:195.333333pt;}
.x12f_c00213{left:197.066667pt;}
.x3d_c00213{left:199.866667pt;}
.x10c_c00213{left:200.933333pt;}
.x5e_c00213{left:202.666667pt;}
.x16_c00213{left:203.866667pt;}
.x139_c00213{left:206.000000pt;}
.x1d_c00213{left:207.466667pt;}
.x62_c00213{left:209.333333pt;}
.x11e_c00213{left:210.266667pt;}
.x4_c00213{left:213.200000pt;}
.x10f_c00213{left:214.400000pt;}
.x39_c00213{left:216.000000pt;}
.x37_c00213{left:218.133333pt;}
.x13f_c00213{left:220.000000pt;}
.x29_c00213{left:221.333333pt;}
.x110_c00213{left:222.666667pt;}
.x5b_c00213{left:224.933333pt;}
.x44_c00213{left:226.933333pt;}
.x24_c00213{left:229.066667pt;}
.x130_c00213{left:230.000000pt;}
.x4f_c00213{left:232.933333pt;}
.x1e_c00213{left:235.600000pt;}
.x3a_c00213{left:237.066667pt;}
.x5_c00213{left:239.066667pt;}
.xff_c00213{left:240.666667pt;}
.x54_c00213{left:242.266667pt;}
.x5c_c00213{left:244.400000pt;}
.x5f_c00213{left:246.800000pt;}
.xe_c00213{left:250.933333pt;}
.x11f_c00213{left:251.866667pt;}
.x17_c00213{left:253.200000pt;}
.x1f_c00213{left:255.066667pt;}
.x6_c00213{left:257.333333pt;}
.x3b_c00213{left:259.466667pt;}
.x119_c00213{left:261.600000pt;}
.x30_c00213{left:262.533333pt;}
.x4c_c00213{left:263.466667pt;}
.x12a_c00213{left:264.400000pt;}
.x55_c00213{left:266.266667pt;}
.x127_c00213{left:267.466667pt;}
.x5d_c00213{left:268.666667pt;}
.x10b_c00213{left:270.666667pt;}
.x18_c00213{left:271.733333pt;}
.x2a_c00213{left:273.466667pt;}
.x13e_c00213{left:274.933333pt;}
.xf_c00213{left:276.266667pt;}
.x123_c00213{left:277.733333pt;}
.x47_c00213{left:278.800000pt;}
.x3e_c00213{left:280.400000pt;}
.x63_c00213{left:285.200000pt;}
.x111_c00213{left:286.666667pt;}
.x59_c00213{left:288.266667pt;}
.x109_c00213{left:289.733333pt;}
.x105_c00213{left:290.800000pt;}
.x7_c00213{left:291.866667pt;}
.x31_c00213{left:293.200000pt;}
.x56_c00213{left:294.400000pt;}
.x41_c00213{left:295.733333pt;}
.x25_c00213{left:297.600000pt;}
.x8_c00213{left:298.933333pt;}
.x120_c00213{left:300.533333pt;}
.x42_c00213{left:303.733333pt;}
.x20_c00213{left:304.666667pt;}
.x32_c00213{left:307.333333pt;}
.x5a_c00213{left:309.066667pt;}
.x112_c00213{left:310.000000pt;}
.x48_c00213{left:311.066667pt;}
.x9_c00213{left:313.066667pt;}
.x117_c00213{left:314.266667pt;}
.x19_c00213{left:315.600000pt;}
.x2b_c00213{left:317.333333pt;}
.x12b_c00213{left:318.800000pt;}
.x13a_c00213{left:320.133333pt;}
.x38_c00213{left:321.866667pt;}
.x60_c00213{left:323.600000pt;}
.x128_c00213{left:324.533333pt;}
.x10_c00213{left:325.600000pt;}
.x3f_c00213{left:326.533333pt;}
.x49_c00213{left:327.733333pt;}
.x21_c00213{left:330.000000pt;}
.x11_c00213{left:332.933333pt;}
.x131_c00213{left:334.000000pt;}
.xa_c00213{left:336.400000pt;}
.x100_c00213{left:337.866667pt;}
.x22_c00213{left:339.866667pt;}
.x45_c00213{left:342.133333pt;}
.x2c_c00213{left:343.866667pt;}
.x11a_c00213{left:346.400000pt;}
.x4a_c00213{left:347.600000pt;}
.x113_c00213{left:348.666667pt;}
.x107_c00213{left:355.066667pt;}
.x23_c00213{left:356.800000pt;}
.x12_c00213{left:358.800000pt;}
.x2d_c00213{left:359.866667pt;}
.x40_c00213{left:360.800000pt;}
.x134_c00213{left:362.533333pt;}
.x26_c00213{left:363.600000pt;}
.x124_c00213{left:365.066667pt;}
.x13b_c00213{left:368.133333pt;}
.x33_c00213{left:370.400000pt;}
.x50_c00213{left:372.133333pt;}
.x61_c00213{left:373.866667pt;}
.x102_c00213{left:374.933333pt;}
.x57_c00213{left:376.933333pt;}
.x132_c00213{left:377.866667pt;}
.x1a_c00213{left:380.533333pt;}
.x3c_c00213{left:382.266667pt;}
.x2_c00213{left:383.600000pt;}
.x12c_c00213{left:386.933333pt;}
.x114_c00213{left:388.000000pt;}
.x34_c00213{left:388.933333pt;}
.x13_c00213{left:390.133333pt;}
.x10d_c00213{left:391.733333pt;}
.x103_c00213{left:393.466667pt;}
.x137_c00213{left:394.666667pt;}
.xb_c00213{left:398.800000pt;}
.x106_c00213{left:400.400000pt;}
.x2e_c00213{left:401.733333pt;}
.x138_c00213{left:402.800000pt;}
.x35_c00213{left:404.000000pt;}
.x13c_c00213{left:405.600000pt;}
.x58_c00213{left:407.333333pt;}
.x4d_c00213{left:409.066667pt;}
.x14_c00213{left:412.800000pt;}
.x108_c00213{left:416.533333pt;}
.x125_c00213{left:417.600000pt;}
.x51_c00213{left:419.466667pt;}
.x115_c00213{left:420.666667pt;}
.x10a_c00213{left:423.466667pt;}
.x101_c00213{left:424.800000pt;}
.x12d_c00213{left:427.200000pt;}
.x121_c00213{left:428.666667pt;}
.x11d_c00213{left:432.266667pt;}
.x43_c00213{left:434.266667pt;}
.x126_c00213{left:435.466667pt;}
.x13d_c00213{left:436.933333pt;}
.x1b_c00213{left:437.866667pt;}
.x46_c00213{left:439.066667pt;}
.x4e_c00213{left:441.333333pt;}
.x2f_c00213{left:443.333333pt;}
.x36_c00213{left:444.666667pt;}
.x104_c00213{left:446.933333pt;}
.x136_c00213{left:449.733333pt;}
.xc_c00213{left:450.933333pt;}
.x10e_c00213{left:452.266667pt;}
.x11b_c00213{left:456.400000pt;}
.x52_c00213{left:457.466667pt;}
.x27_c00213{left:459.066667pt;}
.x1c_c00213{left:462.533333pt;}
.x76_c00213{left:484.800000pt;}
.xe6_c00213{left:496.000000pt;}
.xca_c00213{left:499.600000pt;}
.x6c_c00213{left:500.533333pt;}
.x8a_c00213{left:502.400000pt;}
.xe3_c00213{left:508.800000pt;}
.xe0_c00213{left:509.733333pt;}
.xcd_c00213{left:514.400000pt;}
.x64_c00213{left:515.866667pt;}
.x8f_c00213{left:516.800000pt;}
.xc5_c00213{left:519.466667pt;}
.xd3_c00213{left:521.333333pt;}
.x8b_c00213{left:522.266667pt;}
.x140_c00213{left:523.600000pt;}
.xf1_c00213{left:524.666667pt;}
.x87_c00213{left:526.266667pt;}
.xa6_c00213{left:527.600000pt;}
.xe1_c00213{left:528.933333pt;}
.xc1_c00213{left:532.666667pt;}
.xa2_c00213{left:533.600000pt;}
.x6d_c00213{left:534.800000pt;}
.x80_c00213{left:536.000000pt;}
.xd9_c00213{left:537.600000pt;}
.xd4_c00213{left:538.800000pt;}
.x72_c00213{left:540.000000pt;}
.xb4_c00213{left:542.266667pt;}
.xe9_c00213{left:543.733333pt;}
.xae_c00213{left:545.066667pt;}
.x77_c00213{left:546.266667pt;}
.xee_c00213{left:547.333333pt;}
.xa7_c00213{left:549.733333pt;}
.xe4_c00213{left:552.000000pt;}
.xfa_c00213{left:552.933333pt;}
.x8c_c00213{left:554.000000pt;}
.xaf_c00213{left:555.600000pt;}
.x88_c00213{left:556.666667pt;}
.x94_c00213{left:558.666667pt;}
.x90_c00213{left:560.666667pt;}
.xab_c00213{left:562.533333pt;}
.x7c_c00213{left:564.533333pt;}
.xfd_c00213{left:565.733333pt;}
.x9d_c00213{left:566.800000pt;}
.x65_c00213{left:569.600000pt;}
.xf4_c00213{left:571.333333pt;}
.xbb_c00213{left:573.066667pt;}
.x78_c00213{left:574.133333pt;}
.xf2_c00213{left:575.200000pt;}
.x89_c00213{left:576.133333pt;}
.xb0_c00213{left:577.733333pt;}
.x9e_c00213{left:579.333333pt;}
.x99_c00213{left:580.800000pt;}
.xa9_c00213{left:582.266667pt;}
.x73_c00213{left:583.466667pt;}
.x66_c00213{left:587.200000pt;}
.x141_c00213{left:590.533333pt;}
.xc2_c00213{left:591.600000pt;}
.xda_c00213{left:593.333333pt;}
.xbc_c00213{left:594.533333pt;}
.x81_c00213{left:595.866667pt;}
.xef_c00213{left:597.600000pt;}
.xea_c00213{left:598.800000pt;}
.x74_c00213{left:602.000000pt;}
.xb6_c00213{left:603.066667pt;}
.x9f_c00213{left:606.266667pt;}
.x95_c00213{left:609.600000pt;}
.xfe_c00213{left:611.600000pt;}
.x6e_c00213{left:613.200000pt;}
.xf5_c00213{left:614.266667pt;}
.x82_c00213{left:615.333333pt;}
.xeb_c00213{left:616.666667pt;}
.xac_c00213{left:619.066667pt;}
.x9a_c00213{left:622.666667pt;}
.xc3_c00213{left:627.733333pt;}
.x79_c00213{left:628.800000pt;}
.xb1_c00213{left:630.266667pt;}
.xbd_c00213{left:632.933333pt;}
.xa3_c00213{left:634.000000pt;}
.xe7_c00213{left:635.200000pt;}
.xce_c00213{left:637.866667pt;}
.x142_c00213{left:640.400000pt;}
.xd5_c00213{left:641.733333pt;}
.xdb_c00213{left:644.266667pt;}
.xcb_c00213{left:645.600000pt;}
.xfb_c00213{left:647.333333pt;}
.x67_c00213{left:648.666667pt;}
.xbe_c00213{left:649.866667pt;}
.x83_c00213{left:650.800000pt;}
.x7d_c00213{left:652.533333pt;}
.xb7_c00213{left:654.000000pt;}
.xc6_c00213{left:655.466667pt;}
.xdc_c00213{left:657.066667pt;}
.xd6_c00213{left:659.066667pt;}
.x8d_c00213{left:660.266667pt;}
.xb5_c00213{left:661.866667pt;}
.xf0_c00213{left:662.800000pt;}
.xb8_c00213{left:664.933333pt;}
.x6f_c00213{left:666.000000pt;}
.xa0_c00213{left:668.000000pt;}
.xdd_c00213{left:670.133333pt;}
.x91_c00213{left:671.733333pt;}
.xbf_c00213{left:673.200000pt;}
.x75_c00213{left:674.266667pt;}
.x7a_c00213{left:675.200000pt;}
.x68_c00213{left:676.133333pt;}
.xcf_c00213{left:678.266667pt;}
.x96_c00213{left:680.533333pt;}
.xcc_c00213{left:683.333333pt;}
.xf8_c00213{left:686.800000pt;}
.x70_c00213{left:688.133333pt;}
.xde_c00213{left:689.600000pt;}
.xc7_c00213{left:690.666667pt;}
.x84_c00213{left:691.733333pt;}
.xc4_c00213{left:692.933333pt;}
.xe5_c00213{left:694.666667pt;}
.xe8_c00213{left:695.733333pt;}
.x7b_c00213{left:696.666667pt;}
.xb9_c00213{left:699.200000pt;}
.xfc_c00213{left:700.400000pt;}
.x92_c00213{left:702.400000pt;}
.xb2_c00213{left:703.866667pt;}
.xa1_c00213{left:705.733333pt;}
.xc8_c00213{left:707.600000pt;}
.xf7_c00213{left:708.933333pt;}
.xd7_c00213{left:711.066667pt;}
.xaa_c00213{left:712.533333pt;}
.xf6_c00213{left:714.000000pt;}
.x85_c00213{left:716.666667pt;}
.x71_c00213{left:717.866667pt;}
.xdf_c00213{left:719.600000pt;}
.xe2_c00213{left:720.933333pt;}
.xa4_c00213{left:722.533333pt;}
.x9b_c00213{left:724.133333pt;}
.x97_c00213{left:725.733333pt;}
.x7e_c00213{left:729.600000pt;}
.x69_c00213{left:731.200000pt;}
.xd0_c00213{left:732.666667pt;}
.x98_c00213{left:735.066667pt;}
.xc9_c00213{left:738.000000pt;}
.xec_c00213{left:739.866667pt;}
.x7f_c00213{left:740.800000pt;}
.xa5_c00213{left:742.666667pt;}
.x6a_c00213{left:743.733333pt;}
.x9c_c00213{left:745.600000pt;}
.xd1_c00213{left:747.333333pt;}
.xc0_c00213{left:749.600000pt;}
.xba_c00213{left:752.266667pt;}
.x8e_c00213{left:753.333333pt;}
.x93_c00213{left:756.133333pt;}
.xad_c00213{left:758.000000pt;}
.xb3_c00213{left:763.733333pt;}
.xa8_c00213{left:764.666667pt;}
.xd2_c00213{left:765.866667pt;}
.x86_c00213{left:767.200000pt;}
.xd8_c00213{left:768.666667pt;}
.xed_c00213{left:770.266667pt;}
.x6b_c00213{left:771.200000pt;}
.xf9_c00213{left:772.133333pt;}
.xf3_c00213{left:778.400000pt;}
}





/* 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_c00214 {
    display:none;
  }
  .loading-indicator_c00214.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00214 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_c00214 { 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_c00214" -> "#page-container .classname_c00214")
 */
.pf_c00214 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00214 { /* 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_c00214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00214 { /* 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_c00214 { /* 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_c00214 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00214 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00214 {overflow:visible;}
  }
}
.c_c00214 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00214 { /* 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_c00214:after { /* webkit #35443 */
  content: '';
}
.t_c00214:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00214 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 */
}
.__c00214 { /* 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_c00214 { /* info for Javascript */
  display:none;
}
.l_c00214 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00214 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00214 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00214: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_c00214 {
    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_c00214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00214.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_c00214 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00214;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.000000;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;}
.mf0_c00214{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mff_c00214{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00214{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00214{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00214{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00214{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00214{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00214{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00214{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00214{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m78_c00214{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00214{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m50_c00214{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m107_c00214{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m10_c00214{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m102_c00214{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m110_c00214{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00214{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m105_c00214{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mae_c00214{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00214{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mad_c00214{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.maa_c00214{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00214{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.md2_c00214{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md4_c00214{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m93_c00214{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me0_c00214{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m72_c00214{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m89_c00214{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m109_c00214{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00214{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00214{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m100_c00214{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00214{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m43_c00214{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00214{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m44_c00214{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.md3_c00214{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m56_c00214{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00214{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00214{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me8_c00214{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m19_c00214{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m40_c00214{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00214{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m64_c00214{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m20_c00214{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me1_c00214{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00214{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00214{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00214{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00214{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00214{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m42_c00214{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.med_c00214{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m24_c00214{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00214{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m35_c00214{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00214{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m82_c00214{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m80_c00214{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m22_c00214{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00214{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m90_c00214{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00214{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00214{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mab_c00214{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00214{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00214{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m83_c00214{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m13_c00214{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m65_c00214{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m29_c00214{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00214{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00214{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m36_c00214{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m53_c00214{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00214{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m97_c00214{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00214{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m96_c00214{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00214{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m86_c00214{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00214{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mac_c00214{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m58_c00214{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me4_c00214{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00214{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb_c00214{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00214{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m91_c00214{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00214{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00214{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m68_c00214{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00214{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00214{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m92_c00214{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m47_c00214{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00214{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00214{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00214{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00214{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m41_c00214{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00214{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00214{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m75_c00214{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11_c00214{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00214{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m73_c00214{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m63_c00214{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00214{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00214{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m54_c00214{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m98_c00214{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m17_c00214{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m52_c00214{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m99_c00214{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m87_c00214{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m88_c00214{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m104_c00214{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00214{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.me_c00214{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00214{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m84_c00214{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00214{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.md6_c00214{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00214{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00214{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mba_c00214{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00214{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md1_c00214{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m76_c00214{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00214{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00214{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00214{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00214{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00214{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00214{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00214{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m18_c00214{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00214{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m38_c00214{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m55_c00214{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m59_c00214{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m32_c00214{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00214{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00214{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m95_c00214{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m81_c00214{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m85_c00214{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00214{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m79_c00214{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mef_c00214{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf_c00214{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00214{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00214{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00214{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00214{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00214{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m23_c00214{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m27_c00214{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00214{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00214{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m74_c00214{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00214{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mce_c00214{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m77_c00214{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00214{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00214{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00214{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mde_c00214{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00214{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00214{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6_c00214{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m21_c00214{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m34_c00214{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m26_c00214{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m62_c00214{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00214{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00214{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m28_c00214{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m30_c00214{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m69_c00214{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md5_c00214{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m37_c00214{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m45_c00214{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m46_c00214{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md9_c00214{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00214{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00214{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00214{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00214{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m25_c00214{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me7_c00214{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m48_c00214{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00214{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me9_c00214{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m60_c00214{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00214{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00214{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m12_c00214{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m61_c00214{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00214{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m15_c00214{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m101_c00214{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mec_c00214{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me6_c00214{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00214{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00214{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma_c00214{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md7_c00214{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.me5_c00214{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m49_c00214{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00214{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md_c00214{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00214{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00214{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00214{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16_c00214{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m70_c00214{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00214{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00214{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00214{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00214{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00214{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00214{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00214{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.meb_c00214{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m33_c00214{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md8_c00214{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m57_c00214{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m14_c00214{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mc_c00214{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00214{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9_c00214{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mca_c00214{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m103_c00214{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00214{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00214{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md0_c00214{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00214{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00214{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m7_c00214{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00214{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00214{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m67_c00214{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mee_c00214{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m31_c00214{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mea_c00214{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m51_c00214{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00214{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m71_c00214{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me3_c00214{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mda_c00214{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me2_c00214{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m66_c00214{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00214{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00214{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00214{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00214{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m8_c00214{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m108_c00214{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00214{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m106_c00214{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.maf_c00214{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00214{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls0_c00214{letter-spacing:0.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{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__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00214{word-spacing:-8.333333px;}
.ws0_c00214{word-spacing:-5.116279px;}
.ws9_c00214{word-spacing:-4.861111px;}
.ws6_c00214{word-spacing:-0.714286px;}
.wsd_c00214{word-spacing:0.000000px;}
.ws1_c00214{word-spacing:0.042980px;}
.wsc_c00214{word-spacing:3.421053px;}
.ws5_c00214{word-spacing:3.554140px;}
.ws2_c00214{word-spacing:9.861111px;}
.ws8_c00214{word-spacing:13.472222px;}
.ws3_c00214{word-spacing:16.785714px;}
.wsa_c00214{word-spacing:22.142857px;}
.ws4_c00214{word-spacing:25.714286px;}
.wsb_c00214{word-spacing:66.000000px;}
._2_c00214{width:55.714286px;}
._1_c00214{width:59.285714px;}
._0_c00214{width:64.642857px;}
.fc0_c00214{color:transparent;}
.fs4_c00214{font-size:24.000000px;}
.fs6_c00214{font-size:48.000000px;}
.fs5_c00214{font-size:54.000000px;}
.fs1_c00214{font-size:60.000000px;}
.fs3_c00214{font-size:66.000000px;}
.fs2_c00214{font-size:72.000000px;}
.fs0_c00214{font-size:78.000000px;}
.y0_c00214{bottom:0.000000px;}
.y35_c00214{bottom:192.600000px;}
.y68_c00214{bottom:193.350000px;}
.y34_c00214{bottom:210.600000px;}
.y67_c00214{bottom:211.500000px;}
.y33_c00214{bottom:228.600000px;}
.y66_c00214{bottom:229.500000px;}
.y65_c00214{bottom:247.200000px;}
.y32_c00214{bottom:249.150000px;}
.y64_c00214{bottom:265.200000px;}
.y31_c00214{bottom:267.900000px;}
.y63_c00214{bottom:282.900000px;}
.y30_c00214{bottom:283.050000px;}
.y2f_c00214{bottom:294.150000px;}
.y62_c00214{bottom:304.200000px;}
.y2e_c00214{bottom:312.450000px;}
.y61_c00214{bottom:318.900000px;}
.y60_c00214{bottom:333.300000px;}
.y2d_c00214{bottom:333.750000px;}
.y5f_c00214{bottom:347.400000px;}
.y2c_c00214{bottom:352.050000px;}
.y5e_c00214{bottom:364.650000px;}
.y2b_c00214{bottom:370.350000px;}
.y5d_c00214{bottom:382.950000px;}
.y2a_c00214{bottom:388.050000px;}
.y5c_c00214{bottom:400.650000px;}
.y29_c00214{bottom:405.750000px;}
.y5b_c00214{bottom:419.400000px;}
.y28_c00214{bottom:423.750000px;}
.y5a_c00214{bottom:436.350000px;}
.y27_c00214{bottom:441.450000px;}
.y59_c00214{bottom:458.550000px;}
.y26_c00214{bottom:459.450000px;}
.y58_c00214{bottom:476.250000px;}
.y25_c00214{bottom:476.700000px;}
.y57_c00214{bottom:493.950000px;}
.y24_c00214{bottom:494.700000px;}
.y23_c00214{bottom:512.400000px;}
.y56_c00214{bottom:515.850000px;}
.y22_c00214{bottom:530.100000px;}
.y55_c00214{bottom:547.200000px;}
.y21_c00214{bottom:548.100000px;}
.y20_c00214{bottom:565.800000px;}
.y54_c00214{bottom:569.550000px;}
.y1f_c00214{bottom:583.500000px;}
.y53_c00214{bottom:587.550000px;}
.y1e_c00214{bottom:601.500000px;}
.y52_c00214{bottom:605.850000px;}
.y1d_c00214{bottom:619.200000px;}
.y51_c00214{bottom:622.800000px;}
.y1c_c00214{bottom:636.900000px;}
.y50_c00214{bottom:644.850000px;}
.y1b_c00214{bottom:654.450000px;}
.y4f_c00214{bottom:662.550000px;}
.y1a_c00214{bottom:676.350000px;}
.y4e_c00214{bottom:680.250000px;}
.y19_c00214{bottom:694.350000px;}
.y4d_c00214{bottom:698.250000px;}
.y18_c00214{bottom:712.050000px;}
.y4c_c00214{bottom:715.950000px;}
.y17_c00214{bottom:733.500000px;}
.y4b_c00214{bottom:733.650000px;}
.y16_c00214{bottom:751.500000px;}
.y4a_c00214{bottom:751.650000px;}
.y15_c00214{bottom:769.200000px;}
.y49_c00214{bottom:769.650000px;}
.y14_c00214{bottom:786.900000px;}
.y48_c00214{bottom:791.700000px;}
.y13_c00214{bottom:804.600000px;}
.y47_c00214{bottom:809.400000px;}
.y12_c00214{bottom:826.200000px;}
.y46_c00214{bottom:827.400000px;}
.y11_c00214{bottom:844.200000px;}
.y45_c00214{bottom:845.100000px;}
.y44_c00214{bottom:862.800000px;}
.y10_c00214{bottom:870.450000px;}
.y43_c00214{bottom:880.800000px;}
.yf_c00214{bottom:892.200000px;}
.y42_c00214{bottom:898.800000px;}
.ye_c00214{bottom:910.500000px;}
.y41_c00214{bottom:916.500000px;}
.yd_c00214{bottom:928.500000px;}
.y40_c00214{bottom:934.200000px;}
.yc_c00214{bottom:946.200000px;}
.y3f_c00214{bottom:952.200000px;}
.yb_c00214{bottom:963.900000px;}
.y3e_c00214{bottom:969.900000px;}
.ya_c00214{bottom:981.600000px;}
.y3d_c00214{bottom:989.700000px;}
.y9_c00214{bottom:999.600000px;}
.y3c_c00214{bottom:1002.600000px;}
.y8_c00214{bottom:1017.300000px;}
.y3b_c00214{bottom:1021.950000px;}
.y7_c00214{bottom:1035.000000px;}
.y3a_c00214{bottom:1039.950000px;}
.y6_c00214{bottom:1056.900000px;}
.y39_c00214{bottom:1057.650000px;}
.y5_c00214{bottom:1074.900000px;}
.y38_c00214{bottom:1079.400000px;}
.y4_c00214{bottom:1095.900000px;}
.y37_c00214{bottom:1097.400000px;}
.y3_c00214{bottom:1114.950000px;}
.y36_c00214{bottom:1126.500000px;}
.y2_c00214{bottom:1135.500000px;}
.y1_c00214{bottom:1141.950000px;}
.h6_c00214{height:24.000000px;}
.h8_c00214{height:48.000000px;}
.h7_c00214{height:54.000000px;}
.h3_c00214{height:60.000000px;}
.h5_c00214{height:66.000000px;}
.h4_c00214{height:72.000000px;}
.h2_c00214{height:78.000000px;}
.h1_c00214{height:1273.500000px;}
.h0_c00214{height:1273.679993px;}
.w1_c00214{width:963.000000px;}
.w0_c00214{width:963.359985px;}
.x0_c00214{left:0.000000px;}
.x60_c00214{left:79.950000px;}
.x18_c00214{left:81.000000px;}
.x65_c00214{left:95.550000px;}
.x68_c00214{left:96.900000px;}
.x4b_c00214{left:98.250000px;}
.x3_c00214{left:99.300000px;}
.x72_c00214{left:101.850000px;}
.x99_c00214{left:111.600000px;}
.x90_c00214{left:114.450000px;}
.xc_c00214{left:116.250000px;}
.x24_c00214{left:117.450000px;}
.x3f_c00214{left:119.850000px;}
.x61_c00214{left:121.350000px;}
.x14_c00214{left:123.300000px;}
.x7c_c00214{left:124.350000px;}
.x97_c00214{left:125.850000px;}
.x94_c00214{left:133.800000px;}
.x4_c00214{left:135.000000px;}
.x7f_c00214{left:138.600000px;}
.x19_c00214{left:140.100000px;}
.x5f_c00214{left:141.600000px;}
.x38_c00214{left:142.800000px;}
.x4c_c00214{left:145.050000px;}
.x80_c00214{left:146.550000px;}
.x4f_c00214{left:150.000000px;}
.x39_c00214{left:151.500000px;}
.x85_c00214{left:152.700000px;}
.x7a_c00214{left:154.650000px;}
.x51_c00214{left:156.000000px;}
.x25_c00214{left:158.100000px;}
.x1a_c00214{left:160.650000px;}
.x30_c00214{left:162.150000px;}
.x7d_c00214{left:163.950000px;}
.x4d_c00214{left:165.150000px;}
.x2a_c00214{left:168.300000px;}
.x52_c00214{left:172.200000px;}
.x50_c00214{left:173.400000px;}
.x40_c00214{left:175.950000px;}
.x91_c00214{left:177.450000px;}
.xd_c00214{left:180.300000px;}
.x9a_c00214{left:182.550000px;}
.x62_c00214{left:184.650000px;}
.x8b_c00214{left:186.000000px;}
.x2b_c00214{left:187.350000px;}
.x3a_c00214{left:189.000000px;}
.x15_c00214{left:190.650000px;}
.x5_c00214{left:192.600000px;}
.x4e_c00214{left:193.950000px;}
.x26_c00214{left:195.150000px;}
.x81_c00214{left:196.200000px;}
.x1b_c00214{left:197.700000px;}
.x57_c00214{left:201.000000px;}
.xe_c00214{left:202.650000px;}
.x69_c00214{left:205.200000px;}
.x7b_c00214{left:207.150000px;}
.x46_c00214{left:208.650000px;}
.x41_c00214{left:211.200000px;}
.x16_c00214{left:212.550000px;}
.x31_c00214{left:216.150000px;}
.x53_c00214{left:221.550000px;}
.x8c_c00214{left:223.800000px;}
.x76_c00214{left:225.000000px;}
.x8e_c00214{left:227.850000px;}
.x47_c00214{left:229.500000px;}
.x63_c00214{left:231.150000px;}
.x6_c00214{left:232.200000px;}
.x42_c00214{left:233.550000px;}
.x89_c00214{left:237.750000px;}
.x20_c00214{left:244.050000px;}
.x2c_c00214{left:246.000000px;}
.x32_c00214{left:247.050000px;}
.x9b_c00214{left:248.100000px;}
.x54_c00214{left:249.300000px;}
.x3b_c00214{left:250.500000px;}
.x6a_c00214{left:252.000000px;}
.x1c_c00214{left:253.200000px;}
.x7_c00214{left:256.350000px;}
.x6c_c00214{left:258.150000px;}
.x5c_c00214{left:259.800000px;}
.x82_c00214{left:261.000000px;}
.x66_c00214{left:262.200000px;}
.x17_c00214{left:263.250000px;}
.x2d_c00214{left:264.300000px;}
.xf_c00214{left:265.350000px;}
.x43_c00214{left:266.700000px;}
.x6f_c00214{left:268.950000px;}
.x59_c00214{left:270.300000px;}
.x33_c00214{left:271.950000px;}
.x5d_c00214{left:273.900000px;}
.x27_c00214{left:275.850000px;}
.x64_c00214{left:277.950000px;}
.x77_c00214{left:281.250000px;}
.x21_c00214{left:282.300000px;}
.x6d_c00214{left:284.400000px;}
.x73_c00214{left:286.650000px;}
.x92_c00214{left:288.300000px;}
.x1d_c00214{left:290.250000px;}
.x7e_c00214{left:291.300000px;}
.x10_c00214{left:292.350000px;}
.x28_c00214{left:293.550000px;}
.x34_c00214{left:294.600000px;}
.x8_c00214{left:296.700000px;}
.x78_c00214{left:298.200000px;}
.x2e_c00214{left:301.050000px;}
.x8f_c00214{left:303.750000px;}
.x86_c00214{left:306.900000px;}
.x8a_c00214{left:310.050000px;}
.x29_c00214{left:311.550000px;}
.x95_c00214{left:313.200000px;}
.x1e_c00214{left:315.750000px;}
.x3c_c00214{left:317.100000px;}
.x48_c00214{left:318.300000px;}
.x1_c00214{left:320.400000px;}
.x9_c00214{left:321.900000px;}
.x87_c00214{left:324.600000px;}
.x55_c00214{left:327.450000px;}
.x67_c00214{left:329.100000px;}
.x70_c00214{left:331.950000px;}
.x1f_c00214{left:333.000000px;}
.x35_c00214{left:335.250000px;}
.x22_c00214{left:336.300000px;}
.x83_c00214{left:338.100000px;}
.x56_c00214{left:339.750000px;}
.x44_c00214{left:340.800000px;}
.x3d_c00214{left:342.000000px;}
.x2f_c00214{left:345.750000px;}
.x96_c00214{left:348.750000px;}
.x11_c00214{left:350.250000px;}
.x49_c00214{left:351.300000px;}
.x98_c00214{left:352.950000px;}
.x74_c00214{left:355.800000px;}
.x5a_c00214{left:357.000000px;}
.x6b_c00214{left:361.350000px;}
.x12_c00214{left:362.550000px;}
.x23_c00214{left:365.100000px;}
.x8d_c00214{left:366.300000px;}
.x36_c00214{left:367.950000px;}
.x75_c00214{left:369.450000px;}
.xa_c00214{left:370.500000px;}
.x9c_c00214{left:373.650000px;}
.x9e_c00214{left:375.150000px;}
.x71_c00214{left:376.200000px;}
.x45_c00214{left:377.550000px;}
.x13_c00214{left:381.300000px;}
.x5b_c00214{left:382.950000px;}
.x79_c00214{left:384.000000px;}
.x37_c00214{left:386.250000px;}
.x6e_c00214{left:387.450000px;}
.x5e_c00214{left:388.800000px;}
.x93_c00214{left:390.150000px;}
.x3e_c00214{left:391.650000px;}
.xb_c00214{left:394.650000px;}
.x9d_c00214{left:396.000000px;}
.x4a_c00214{left:397.050000px;}
.x84_c00214{left:400.350000px;}
.x88_c00214{left:404.850000px;}
.x9f_c00214{left:406.050000px;}
.x58_c00214{left:411.600000px;}
.x128_c00214{left:434.550000px;}
.x10e_c00214{left:435.600000px;}
.xb4_c00214{left:437.100000px;}
.x11c_c00214{left:441.000000px;}
.x125_c00214{left:449.400000px;}
.xb2_c00214{left:452.850000px;}
.xa0_c00214{left:453.900000px;}
.xd0_c00214{left:454.950000px;}
.x12c_c00214{left:463.650000px;}
.x11a_c00214{left:471.300000px;}
.xf7_c00214{left:472.350000px;}
.x120_c00214{left:475.500000px;}
.xf5_c00214{left:476.550000px;}
.xbb_c00214{left:478.500000px;}
.xb5_c00214{left:480.600000px;}
.xaa_c00214{left:484.500000px;}
.x102_c00214{left:485.550000px;}
.xf2_c00214{left:486.600000px;}
.x131_c00214{left:488.850000px;}
.xa1_c00214{left:490.950000px;}
.xe8_c00214{left:494.100000px;}
.x126_c00214{left:495.150000px;}
.xc4_c00214{left:496.950000px;}
.xdf_c00214{left:500.250000px;}
.xd6_c00214{left:503.400000px;}
.xd1_c00214{left:505.050000px;}
.xa2_c00214{left:508.200000px;}
.xb3_c00214{left:513.000000px;}
.x118_c00214{left:514.800000px;}
.xfc_c00214{left:515.850000px;}
.x113_c00214{left:517.950000px;}
.xd2_c00214{left:519.450000px;}
.xbc_c00214{left:523.800000px;}
.x115_c00214{left:524.850000px;}
.x100_c00214{left:526.350000px;}
.xe3_c00214{left:530.850000px;}
.xe0_c00214{left:532.350000px;}
.x116_c00214{left:535.050000px;}
.xf8_c00214{left:536.850000px;}
.x11d_c00214{left:541.050000px;}
.xa3_c00214{left:542.100000px;}
.x122_c00214{left:545.400000px;}
.x108_c00214{left:546.600000px;}
.x127_c00214{left:549.150000px;}
.xa4_c00214{left:551.100000px;}
.xd7_c00214{left:553.200000px;}
.xf3_c00214{left:555.300000px;}
.xab_c00214{left:556.800000px;}
.xc5_c00214{left:558.900000px;}
.xa5_c00214{left:560.100000px;}
.xbd_c00214{left:564.450000px;}
.xf9_c00214{left:565.950000px;}
.xac_c00214{left:568.650000px;}
.xef_c00214{left:569.850000px;}
.xe4_c00214{left:572.250000px;}
.xa6_c00214{left:574.800000px;}
.xdc_c00214{left:576.900000px;}
.xc6_c00214{left:577.950000px;}
.x133_c00214{left:579.300000px;}
.x10b_c00214{left:580.800000px;}
.xcb_c00214{left:582.450000px;}
.x10f_c00214{left:583.500000px;}
.xf6_c00214{left:585.900000px;}
.x101_c00214{left:587.550000px;}
.xd3_c00214{left:588.600000px;}
.xed_c00214{left:590.850000px;}
.xe5_c00214{left:593.100000px;}
.xfa_c00214{left:596.250000px;}
.xa7_c00214{left:598.200000px;}
.xcc_c00214{left:599.700000px;}
.xe9_c00214{left:600.900000px;}
.xb6_c00214{left:601.950000px;}
.xad_c00214{left:603.150000px;}
.x121_c00214{left:604.500000px;}
.x110_c00214{left:605.850000px;}
.x134_c00214{left:610.650000px;}
.xfd_c00214{left:612.300000px;}
.xe6_c00214{left:613.950000px;}
.xc7_c00214{left:615.750000px;}
.x123_c00214{left:616.950000px;}
.xfb_c00214{left:619.950000px;}
.x129_c00214{left:621.000000px;}
.xea_c00214{left:624.300000px;}
.xae_c00214{left:627.600000px;}
.xee_c00214{left:628.950000px;}
.x103_c00214{left:631.350000px;}
.x12a_c00214{left:635.850000px;}
.xd8_c00214{left:637.500000px;}
.xdd_c00214{left:639.150000px;}
.x117_c00214{left:640.200000px;}
.x11e_c00214{left:643.500000px;}
.xc8_c00214{left:644.850000px;}
.x119_c00214{left:648.000000px;}
.xaf_c00214{left:650.700000px;}
.xc9_c00214{left:651.750000px;}
.xfe_c00214{left:653.700000px;}
.xe1_c00214{left:654.750000px;}
.xde_c00214{left:656.400000px;}
.x111_c00214{left:659.100000px;}
.x12e_c00214{left:661.200000px;}
.xb7_c00214{left:662.850000px;}
.x10c_c00214{left:664.350000px;}
.xf4_c00214{left:665.550000px;}
.x109_c00214{left:667.200000px;}
.xbe_c00214{left:669.900000px;}
.xeb_c00214{left:671.850000px;}
.xd4_c00214{left:674.250000px;}
.x11f_c00214{left:675.900000px;}
.xb8_c00214{left:677.550000px;}
.x11b_c00214{left:679.350000px;}
.xcd_c00214{left:680.700000px;}
.xbf_c00214{left:682.200000px;}
.xf0_c00214{left:685.350000px;}
.x130_c00214{left:686.850000px;}
.x106_c00214{left:689.100000px;}
.xec_c00214{left:690.900000px;}
.xc1_c00214{left:693.750000px;}
.xa8_c00214{left:695.100000px;}
.x124_c00214{left:696.750000px;}
.x12d_c00214{left:698.100000px;}
.xc0_c00214{left:699.150000px;}
.x132_c00214{left:700.650000px;}
.xca_c00214{left:701.700000px;}
.xce_c00214{left:703.350000px;}
.xff_c00214{left:704.850000px;}
.xd9_c00214{left:708.750000px;}
.xb0_c00214{left:710.850000px;}
.x104_c00214{left:714.450000px;}
.x107_c00214{left:715.800000px;}
.xf1_c00214{left:717.750000px;}
.xb9_c00214{left:719.700000px;}
.xda_c00214{left:721.650000px;}
.xe2_c00214{left:722.700000px;}
.xc2_c00214{left:724.350000px;}
.x12b_c00214{left:726.900000px;}
.x10d_c00214{left:728.100000px;}
.x10a_c00214{left:729.450000px;}
.x12f_c00214{left:733.200000px;}
.xe7_c00214{left:738.150000px;}
.x112_c00214{left:740.850000px;}
.xcf_c00214{left:742.950000px;}
.x2_c00214{left:744.900000px;}
.x105_c00214{left:747.150000px;}
.xb1_c00214{left:748.350000px;}
.xa9_c00214{left:750.150000px;}
.xd5_c00214{left:751.200000px;}
.x114_c00214{left:754.950000px;}
.xdb_c00214{left:756.150000px;}
.x135_c00214{left:757.200000px;}
.xc3_c00214{left:758.250000px;}
.xba_c00214{left:765.450000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws7_c00214{word-spacing:-7.407407pt;}
.ws0_c00214{word-spacing:-4.547804pt;}
.ws9_c00214{word-spacing:-4.320988pt;}
.ws6_c00214{word-spacing:-0.634921pt;}
.wsd_c00214{word-spacing:0.000000pt;}
.ws1_c00214{word-spacing:0.038204pt;}
.wsc_c00214{word-spacing:3.040936pt;}
.ws5_c00214{word-spacing:3.159236pt;}
.ws2_c00214{word-spacing:8.765432pt;}
.ws8_c00214{word-spacing:11.975309pt;}
.ws3_c00214{word-spacing:14.920635pt;}
.wsa_c00214{word-spacing:19.682540pt;}
.ws4_c00214{word-spacing:22.857143pt;}
.wsb_c00214{word-spacing:58.666667pt;}
._2_c00214{width:49.523810pt;}
._1_c00214{width:52.698413pt;}
._0_c00214{width:57.460317pt;}
.fs4_c00214{font-size:21.333333pt;}
.fs6_c00214{font-size:42.666667pt;}
.fs5_c00214{font-size:48.000000pt;}
.fs1_c00214{font-size:53.333333pt;}
.fs3_c00214{font-size:58.666667pt;}
.fs2_c00214{font-size:64.000000pt;}
.fs0_c00214{font-size:69.333333pt;}
.y0_c00214{bottom:0.000000pt;}
.y35_c00214{bottom:171.200000pt;}
.y68_c00214{bottom:171.866667pt;}
.y34_c00214{bottom:187.200000pt;}
.y67_c00214{bottom:188.000000pt;}
.y33_c00214{bottom:203.200000pt;}
.y66_c00214{bottom:204.000000pt;}
.y65_c00214{bottom:219.733333pt;}
.y32_c00214{bottom:221.466667pt;}
.y64_c00214{bottom:235.733333pt;}
.y31_c00214{bottom:238.133333pt;}
.y63_c00214{bottom:251.466667pt;}
.y30_c00214{bottom:251.600000pt;}
.y2f_c00214{bottom:261.466667pt;}
.y62_c00214{bottom:270.400000pt;}
.y2e_c00214{bottom:277.733333pt;}
.y61_c00214{bottom:283.466667pt;}
.y60_c00214{bottom:296.266667pt;}
.y2d_c00214{bottom:296.666667pt;}
.y5f_c00214{bottom:308.800000pt;}
.y2c_c00214{bottom:312.933333pt;}
.y5e_c00214{bottom:324.133333pt;}
.y2b_c00214{bottom:329.200000pt;}
.y5d_c00214{bottom:340.400000pt;}
.y2a_c00214{bottom:344.933333pt;}
.y5c_c00214{bottom:356.133333pt;}
.y29_c00214{bottom:360.666667pt;}
.y5b_c00214{bottom:372.800000pt;}
.y28_c00214{bottom:376.666667pt;}
.y5a_c00214{bottom:387.866667pt;}
.y27_c00214{bottom:392.400000pt;}
.y59_c00214{bottom:407.600000pt;}
.y26_c00214{bottom:408.400000pt;}
.y58_c00214{bottom:423.333333pt;}
.y25_c00214{bottom:423.733333pt;}
.y57_c00214{bottom:439.066667pt;}
.y24_c00214{bottom:439.733333pt;}
.y23_c00214{bottom:455.466667pt;}
.y56_c00214{bottom:458.533333pt;}
.y22_c00214{bottom:471.200000pt;}
.y55_c00214{bottom:486.400000pt;}
.y21_c00214{bottom:487.200000pt;}
.y20_c00214{bottom:502.933333pt;}
.y54_c00214{bottom:506.266667pt;}
.y1f_c00214{bottom:518.666667pt;}
.y53_c00214{bottom:522.266667pt;}
.y1e_c00214{bottom:534.666667pt;}
.y52_c00214{bottom:538.533333pt;}
.y1d_c00214{bottom:550.400000pt;}
.y51_c00214{bottom:553.600000pt;}
.y1c_c00214{bottom:566.133333pt;}
.y50_c00214{bottom:573.200000pt;}
.y1b_c00214{bottom:581.733333pt;}
.y4f_c00214{bottom:588.933333pt;}
.y1a_c00214{bottom:601.200000pt;}
.y4e_c00214{bottom:604.666667pt;}
.y19_c00214{bottom:617.200000pt;}
.y4d_c00214{bottom:620.666667pt;}
.y18_c00214{bottom:632.933333pt;}
.y4c_c00214{bottom:636.400000pt;}
.y17_c00214{bottom:652.000000pt;}
.y4b_c00214{bottom:652.133333pt;}
.y16_c00214{bottom:668.000000pt;}
.y4a_c00214{bottom:668.133333pt;}
.y15_c00214{bottom:683.733333pt;}
.y49_c00214{bottom:684.133333pt;}
.y14_c00214{bottom:699.466667pt;}
.y48_c00214{bottom:703.733333pt;}
.y13_c00214{bottom:715.200000pt;}
.y47_c00214{bottom:719.466667pt;}
.y12_c00214{bottom:734.400000pt;}
.y46_c00214{bottom:735.466667pt;}
.y11_c00214{bottom:750.400000pt;}
.y45_c00214{bottom:751.200000pt;}
.y44_c00214{bottom:766.933333pt;}
.y10_c00214{bottom:773.733333pt;}
.y43_c00214{bottom:782.933333pt;}
.yf_c00214{bottom:793.066667pt;}
.y42_c00214{bottom:798.933333pt;}
.ye_c00214{bottom:809.333333pt;}
.y41_c00214{bottom:814.666667pt;}
.yd_c00214{bottom:825.333333pt;}
.y40_c00214{bottom:830.400000pt;}
.yc_c00214{bottom:841.066667pt;}
.y3f_c00214{bottom:846.400000pt;}
.yb_c00214{bottom:856.800000pt;}
.y3e_c00214{bottom:862.133333pt;}
.ya_c00214{bottom:872.533333pt;}
.y3d_c00214{bottom:879.733333pt;}
.y9_c00214{bottom:888.533333pt;}
.y3c_c00214{bottom:891.200000pt;}
.y8_c00214{bottom:904.266667pt;}
.y3b_c00214{bottom:908.400000pt;}
.y7_c00214{bottom:920.000000pt;}
.y3a_c00214{bottom:924.400000pt;}
.y6_c00214{bottom:939.466667pt;}
.y39_c00214{bottom:940.133333pt;}
.y5_c00214{bottom:955.466667pt;}
.y38_c00214{bottom:959.466667pt;}
.y4_c00214{bottom:974.133333pt;}
.y37_c00214{bottom:975.466667pt;}
.y3_c00214{bottom:991.066667pt;}
.y36_c00214{bottom:1001.333333pt;}
.y2_c00214{bottom:1009.333333pt;}
.y1_c00214{bottom:1015.066667pt;}
.h6_c00214{height:21.333333pt;}
.h8_c00214{height:42.666667pt;}
.h7_c00214{height:48.000000pt;}
.h3_c00214{height:53.333333pt;}
.h5_c00214{height:58.666667pt;}
.h4_c00214{height:64.000000pt;}
.h2_c00214{height:69.333333pt;}
.h1_c00214{height:1132.000000pt;}
.h0_c00214{height:1132.159993pt;}
.w1_c00214{width:856.000000pt;}
.w0_c00214{width:856.319987pt;}
.x0_c00214{left:0.000000pt;}
.x60_c00214{left:71.066667pt;}
.x18_c00214{left:72.000000pt;}
.x65_c00214{left:84.933333pt;}
.x68_c00214{left:86.133333pt;}
.x4b_c00214{left:87.333333pt;}
.x3_c00214{left:88.266667pt;}
.x72_c00214{left:90.533333pt;}
.x99_c00214{left:99.200000pt;}
.x90_c00214{left:101.733333pt;}
.xc_c00214{left:103.333333pt;}
.x24_c00214{left:104.400000pt;}
.x3f_c00214{left:106.533333pt;}
.x61_c00214{left:107.866667pt;}
.x14_c00214{left:109.600000pt;}
.x7c_c00214{left:110.533333pt;}
.x97_c00214{left:111.866667pt;}
.x94_c00214{left:118.933333pt;}
.x4_c00214{left:120.000000pt;}
.x7f_c00214{left:123.200000pt;}
.x19_c00214{left:124.533333pt;}
.x5f_c00214{left:125.866667pt;}
.x38_c00214{left:126.933333pt;}
.x4c_c00214{left:128.933333pt;}
.x80_c00214{left:130.266667pt;}
.x4f_c00214{left:133.333333pt;}
.x39_c00214{left:134.666667pt;}
.x85_c00214{left:135.733333pt;}
.x7a_c00214{left:137.466667pt;}
.x51_c00214{left:138.666667pt;}
.x25_c00214{left:140.533333pt;}
.x1a_c00214{left:142.800000pt;}
.x30_c00214{left:144.133333pt;}
.x7d_c00214{left:145.733333pt;}
.x4d_c00214{left:146.800000pt;}
.x2a_c00214{left:149.600000pt;}
.x52_c00214{left:153.066667pt;}
.x50_c00214{left:154.133333pt;}
.x40_c00214{left:156.400000pt;}
.x91_c00214{left:157.733333pt;}
.xd_c00214{left:160.266667pt;}
.x9a_c00214{left:162.266667pt;}
.x62_c00214{left:164.133333pt;}
.x8b_c00214{left:165.333333pt;}
.x2b_c00214{left:166.533333pt;}
.x3a_c00214{left:168.000000pt;}
.x15_c00214{left:169.466667pt;}
.x5_c00214{left:171.200000pt;}
.x4e_c00214{left:172.400000pt;}
.x26_c00214{left:173.466667pt;}
.x81_c00214{left:174.400000pt;}
.x1b_c00214{left:175.733333pt;}
.x57_c00214{left:178.666667pt;}
.xe_c00214{left:180.133333pt;}
.x69_c00214{left:182.400000pt;}
.x7b_c00214{left:184.133333pt;}
.x46_c00214{left:185.466667pt;}
.x41_c00214{left:187.733333pt;}
.x16_c00214{left:188.933333pt;}
.x31_c00214{left:192.133333pt;}
.x53_c00214{left:196.933333pt;}
.x8c_c00214{left:198.933333pt;}
.x76_c00214{left:200.000000pt;}
.x8e_c00214{left:202.533333pt;}
.x47_c00214{left:204.000000pt;}
.x63_c00214{left:205.466667pt;}
.x6_c00214{left:206.400000pt;}
.x42_c00214{left:207.600000pt;}
.x89_c00214{left:211.333333pt;}
.x20_c00214{left:216.933333pt;}
.x2c_c00214{left:218.666667pt;}
.x32_c00214{left:219.600000pt;}
.x9b_c00214{left:220.533333pt;}
.x54_c00214{left:221.600000pt;}
.x3b_c00214{left:222.666667pt;}
.x6a_c00214{left:224.000000pt;}
.x1c_c00214{left:225.066667pt;}
.x7_c00214{left:227.866667pt;}
.x6c_c00214{left:229.466667pt;}
.x5c_c00214{left:230.933333pt;}
.x82_c00214{left:232.000000pt;}
.x66_c00214{left:233.066667pt;}
.x17_c00214{left:234.000000pt;}
.x2d_c00214{left:234.933333pt;}
.xf_c00214{left:235.866667pt;}
.x43_c00214{left:237.066667pt;}
.x6f_c00214{left:239.066667pt;}
.x59_c00214{left:240.266667pt;}
.x33_c00214{left:241.733333pt;}
.x5d_c00214{left:243.466667pt;}
.x27_c00214{left:245.200000pt;}
.x64_c00214{left:247.066667pt;}
.x77_c00214{left:250.000000pt;}
.x21_c00214{left:250.933333pt;}
.x6d_c00214{left:252.800000pt;}
.x73_c00214{left:254.800000pt;}
.x92_c00214{left:256.266667pt;}
.x1d_c00214{left:258.000000pt;}
.x7e_c00214{left:258.933333pt;}
.x10_c00214{left:259.866667pt;}
.x28_c00214{left:260.933333pt;}
.x34_c00214{left:261.866667pt;}
.x8_c00214{left:263.733333pt;}
.x78_c00214{left:265.066667pt;}
.x2e_c00214{left:267.600000pt;}
.x8f_c00214{left:270.000000pt;}
.x86_c00214{left:272.800000pt;}
.x8a_c00214{left:275.600000pt;}
.x29_c00214{left:276.933333pt;}
.x95_c00214{left:278.400000pt;}
.x1e_c00214{left:280.666667pt;}
.x3c_c00214{left:281.866667pt;}
.x48_c00214{left:282.933333pt;}
.x1_c00214{left:284.800000pt;}
.x9_c00214{left:286.133333pt;}
.x87_c00214{left:288.533333pt;}
.x55_c00214{left:291.066667pt;}
.x67_c00214{left:292.533333pt;}
.x70_c00214{left:295.066667pt;}
.x1f_c00214{left:296.000000pt;}
.x35_c00214{left:298.000000pt;}
.x22_c00214{left:298.933333pt;}
.x83_c00214{left:300.533333pt;}
.x56_c00214{left:302.000000pt;}
.x44_c00214{left:302.933333pt;}
.x3d_c00214{left:304.000000pt;}
.x2f_c00214{left:307.333333pt;}
.x96_c00214{left:310.000000pt;}
.x11_c00214{left:311.333333pt;}
.x49_c00214{left:312.266667pt;}
.x98_c00214{left:313.733333pt;}
.x74_c00214{left:316.266667pt;}
.x5a_c00214{left:317.333333pt;}
.x6b_c00214{left:321.200000pt;}
.x12_c00214{left:322.266667pt;}
.x23_c00214{left:324.533333pt;}
.x8d_c00214{left:325.600000pt;}
.x36_c00214{left:327.066667pt;}
.x75_c00214{left:328.400000pt;}
.xa_c00214{left:329.333333pt;}
.x9c_c00214{left:332.133333pt;}
.x9e_c00214{left:333.466667pt;}
.x71_c00214{left:334.400000pt;}
.x45_c00214{left:335.600000pt;}
.x13_c00214{left:338.933333pt;}
.x5b_c00214{left:340.400000pt;}
.x79_c00214{left:341.333333pt;}
.x37_c00214{left:343.333333pt;}
.x6e_c00214{left:344.400000pt;}
.x5e_c00214{left:345.600000pt;}
.x93_c00214{left:346.800000pt;}
.x3e_c00214{left:348.133333pt;}
.xb_c00214{left:350.800000pt;}
.x9d_c00214{left:352.000000pt;}
.x4a_c00214{left:352.933333pt;}
.x84_c00214{left:355.866667pt;}
.x88_c00214{left:359.866667pt;}
.x9f_c00214{left:360.933333pt;}
.x58_c00214{left:365.866667pt;}
.x128_c00214{left:386.266667pt;}
.x10e_c00214{left:387.200000pt;}
.xb4_c00214{left:388.533333pt;}
.x11c_c00214{left:392.000000pt;}
.x125_c00214{left:399.466667pt;}
.xb2_c00214{left:402.533333pt;}
.xa0_c00214{left:403.466667pt;}
.xd0_c00214{left:404.400000pt;}
.x12c_c00214{left:412.133333pt;}
.x11a_c00214{left:418.933333pt;}
.xf7_c00214{left:419.866667pt;}
.x120_c00214{left:422.666667pt;}
.xf5_c00214{left:423.600000pt;}
.xbb_c00214{left:425.333333pt;}
.xb5_c00214{left:427.200000pt;}
.xaa_c00214{left:430.666667pt;}
.x102_c00214{left:431.600000pt;}
.xf2_c00214{left:432.533333pt;}
.x131_c00214{left:434.533333pt;}
.xa1_c00214{left:436.400000pt;}
.xe8_c00214{left:439.200000pt;}
.x126_c00214{left:440.133333pt;}
.xc4_c00214{left:441.733333pt;}
.xdf_c00214{left:444.666667pt;}
.xd6_c00214{left:447.466667pt;}
.xd1_c00214{left:448.933333pt;}
.xa2_c00214{left:451.733333pt;}
.xb3_c00214{left:456.000000pt;}
.x118_c00214{left:457.600000pt;}
.xfc_c00214{left:458.533333pt;}
.x113_c00214{left:460.400000pt;}
.xd2_c00214{left:461.733333pt;}
.xbc_c00214{left:465.600000pt;}
.x115_c00214{left:466.533333pt;}
.x100_c00214{left:467.866667pt;}
.xe3_c00214{left:471.866667pt;}
.xe0_c00214{left:473.200000pt;}
.x116_c00214{left:475.600000pt;}
.xf8_c00214{left:477.200000pt;}
.x11d_c00214{left:480.933333pt;}
.xa3_c00214{left:481.866667pt;}
.x122_c00214{left:484.800000pt;}
.x108_c00214{left:485.866667pt;}
.x127_c00214{left:488.133333pt;}
.xa4_c00214{left:489.866667pt;}
.xd7_c00214{left:491.733333pt;}
.xf3_c00214{left:493.600000pt;}
.xab_c00214{left:494.933333pt;}
.xc5_c00214{left:496.800000pt;}
.xa5_c00214{left:497.866667pt;}
.xbd_c00214{left:501.733333pt;}
.xf9_c00214{left:503.066667pt;}
.xac_c00214{left:505.466667pt;}
.xef_c00214{left:506.533333pt;}
.xe4_c00214{left:508.666667pt;}
.xa6_c00214{left:510.933333pt;}
.xdc_c00214{left:512.800000pt;}
.xc6_c00214{left:513.733333pt;}
.x133_c00214{left:514.933333pt;}
.x10b_c00214{left:516.266667pt;}
.xcb_c00214{left:517.733333pt;}
.x10f_c00214{left:518.666667pt;}
.xf6_c00214{left:520.800000pt;}
.x101_c00214{left:522.266667pt;}
.xd3_c00214{left:523.200000pt;}
.xed_c00214{left:525.200000pt;}
.xe5_c00214{left:527.200000pt;}
.xfa_c00214{left:530.000000pt;}
.xa7_c00214{left:531.733333pt;}
.xcc_c00214{left:533.066667pt;}
.xe9_c00214{left:534.133333pt;}
.xb6_c00214{left:535.066667pt;}
.xad_c00214{left:536.133333pt;}
.x121_c00214{left:537.333333pt;}
.x110_c00214{left:538.533333pt;}
.x134_c00214{left:542.800000pt;}
.xfd_c00214{left:544.266667pt;}
.xe6_c00214{left:545.733333pt;}
.xc7_c00214{left:547.333333pt;}
.x123_c00214{left:548.400000pt;}
.xfb_c00214{left:551.066667pt;}
.x129_c00214{left:552.000000pt;}
.xea_c00214{left:554.933333pt;}
.xae_c00214{left:557.866667pt;}
.xee_c00214{left:559.066667pt;}
.x103_c00214{left:561.200000pt;}
.x12a_c00214{left:565.200000pt;}
.xd8_c00214{left:566.666667pt;}
.xdd_c00214{left:568.133333pt;}
.x117_c00214{left:569.066667pt;}
.x11e_c00214{left:572.000000pt;}
.xc8_c00214{left:573.200000pt;}
.x119_c00214{left:576.000000pt;}
.xaf_c00214{left:578.400000pt;}
.xc9_c00214{left:579.333333pt;}
.xfe_c00214{left:581.066667pt;}
.xe1_c00214{left:582.000000pt;}
.xde_c00214{left:583.466667pt;}
.x111_c00214{left:585.866667pt;}
.x12e_c00214{left:587.733333pt;}
.xb7_c00214{left:589.200000pt;}
.x10c_c00214{left:590.533333pt;}
.xf4_c00214{left:591.600000pt;}
.x109_c00214{left:593.066667pt;}
.xbe_c00214{left:595.466667pt;}
.xeb_c00214{left:597.200000pt;}
.xd4_c00214{left:599.333333pt;}
.x11f_c00214{left:600.800000pt;}
.xb8_c00214{left:602.266667pt;}
.x11b_c00214{left:603.866667pt;}
.xcd_c00214{left:605.066667pt;}
.xbf_c00214{left:606.400000pt;}
.xf0_c00214{left:609.200000pt;}
.x130_c00214{left:610.533333pt;}
.x106_c00214{left:612.533333pt;}
.xec_c00214{left:614.133333pt;}
.xc1_c00214{left:616.666667pt;}
.xa8_c00214{left:617.866667pt;}
.x124_c00214{left:619.333333pt;}
.x12d_c00214{left:620.533333pt;}
.xc0_c00214{left:621.466667pt;}
.x132_c00214{left:622.800000pt;}
.xca_c00214{left:623.733333pt;}
.xce_c00214{left:625.200000pt;}
.xff_c00214{left:626.533333pt;}
.xd9_c00214{left:630.000000pt;}
.xb0_c00214{left:631.866667pt;}
.x104_c00214{left:635.066667pt;}
.x107_c00214{left:636.266667pt;}
.xf1_c00214{left:638.000000pt;}
.xb9_c00214{left:639.733333pt;}
.xda_c00214{left:641.466667pt;}
.xe2_c00214{left:642.400000pt;}
.xc2_c00214{left:643.866667pt;}
.x12b_c00214{left:646.133333pt;}
.x10d_c00214{left:647.200000pt;}
.x10a_c00214{left:648.400000pt;}
.x12f_c00214{left:651.733333pt;}
.xe7_c00214{left:656.133333pt;}
.x112_c00214{left:658.533333pt;}
.xcf_c00214{left:660.400000pt;}
.x2_c00214{left:662.133333pt;}
.x105_c00214{left:664.133333pt;}
.xb1_c00214{left:665.200000pt;}
.xa9_c00214{left:666.800000pt;}
.xd5_c00214{left:667.733333pt;}
.x114_c00214{left:671.066667pt;}
.xdb_c00214{left:672.133333pt;}
.x135_c00214{left:673.066667pt;}
.xc3_c00214{left:674.000000pt;}
.xba_c00214{left:680.400000pt;}
}





/* 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_c00215 {
    display:none;
  }
  .loading-indicator_c00215.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00215 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_c00215 { 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_c00215" -> "#page-container .classname_c00215")
 */
.pf_c00215 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00215 { /* 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_c00215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00215 { /* 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_c00215 { /* 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_c00215 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00215 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00215 {overflow:visible;}
  }
}
.c_c00215 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00215 { /* 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_c00215:after { /* webkit #35443 */
  content: '';
}
.t_c00215:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00215 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 */
}
.__c00215 { /* 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_c00215 { /* info for Javascript */
  display:none;
}
.l_c00215 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00215 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00215 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00215: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_c00215 {
    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_c00215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00215.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_c00215 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00215;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.000000;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;}
.mc1_c00215{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00215{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00215{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m45_c00215{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m56_c00215{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00215{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00215{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00215{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00215{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00215{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m58_c00215{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.med_c00215{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00215{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00215{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.md0_c00215{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00215{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00215{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m12_c00215{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m90_c00215{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00215{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m91_c00215{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00215{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m97_c00215{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m59_c00215{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m99_c00215{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m84_c00215{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me2_c00215{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m118_c00215{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m71_c00215{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m121_c00215{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m17_c00215{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md2_c00215{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00215{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00215{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m10_c00215{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m122_c00215{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00215{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m95_c00215{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me1_c00215{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.ma_c00215{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md3_c00215{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00215{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m119_c00215{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m61_c00215{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mad_c00215{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m35_c00215{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00215{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m13_c00215{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00215{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00215{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m78_c00215{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.md1_c00215{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mac_c00215{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00215{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mde_c00215{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m22_c00215{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m39_c00215{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m120_c00215{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.md_c00215{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00215{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m29_c00215{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m129_c00215{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m4_c00215{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00215{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m44_c00215{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m15_c00215{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00215{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me3_c00215{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m65_c00215{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00215{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m28_c00215{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00215{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00215{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00215{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m113_c00215{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mae_c00215{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mf_c00215{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00215{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m116_c00215{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m100_c00215{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00215{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m102_c00215{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m16_c00215{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00215{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00215{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m55_c00215{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00215{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mca_c00215{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m8_c00215{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00215{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m20_c00215{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m18_c00215{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00215{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.maf_c00215{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m48_c00215{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m88_c00215{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb_c00215{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00215{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00215{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m89_c00215{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md4_c00215{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m110_c00215{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7_c00215{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00215{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m24_c00215{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00215{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m25_c00215{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mce_c00215{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me_c00215{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6_c00215{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00215{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00215{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00215{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md6_c00215{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00215{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m51_c00215{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00215{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m47_c00215{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00215{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mba_c00215{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00215{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00215{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mab_c00215{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mc_c00215{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m40_c00215{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m60_c00215{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m101_c00215{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00215{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9_c00215{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00215{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00215{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m54_c00215{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m111_c00215{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00215{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00215{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.md7_c00215{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m87_c00215{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00215{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00215{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m66_c00215{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00215{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00215{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00215{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00215{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m36_c00215{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m70_c00215{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00215{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m57_c00215{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00215{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00215{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00215{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m53_c00215{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00215{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m128_c00215{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.me0_c00215{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00215{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00215{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00215{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m109_c00215{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00215{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00215{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m11_c00215{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m31_c00215{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me4_c00215{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m27_c00215{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00215{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00215{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00215{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.md8_c00215{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00215{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md9_c00215{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00215{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00215{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00215{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00215{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.meb_c00215{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mef_c00215{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m14_c00215{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00215{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m124_c00215{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00215{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00215{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00215{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00215{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00215{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mec_c00215{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00215{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m77_c00215{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m46_c00215{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m38_c00215{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m19_c00215{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m126_c00215{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m26_c00215{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00215{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00215{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m115_c00215{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m30_c00215{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m104_c00215{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00215{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00215{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m33_c00215{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00215{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m75_c00215{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00215{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m74_c00215{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00215{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00215{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m94_c00215{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00215{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00215{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00215{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me6_c00215{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m37_c00215{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00215{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m76_c00215{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m114_c00215{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m80_c00215{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.maa_c00215{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m23_c00215{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00215{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00215{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m41_c00215{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m117_c00215{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.me9_c00215{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m69_c00215{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00215{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m43_c00215{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00215{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mda_c00215{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me8_c00215{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00215{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m34_c00215{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m127_c00215{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00215{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m103_c00215{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m81_c00215{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m106_c00215{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m83_c00215{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m107_c00215{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mff_c00215{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m49_c00215{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00215{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m82_c00215{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m42_c00215{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00215{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m52_c00215{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00215{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00215{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00215{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00215{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m32_c00215{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m64_c00215{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mea_c00215{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m105_c00215{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00215{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m21_c00215{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m108_c00215{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00215{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00215{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m63_c00215{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00215{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m62_c00215{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m93_c00215{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m72_c00215{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00215{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mee_c00215{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00215{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m123_c00215{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m112_c00215{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m85_c00215{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md5_c00215{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00215{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00215{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00215{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m50_c00215{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00215{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00215{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m68_c00215{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m92_c00215{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m96_c00215{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m98_c00215{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.me7_c00215{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m67_c00215{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00215{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m125_c00215{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00215{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m86_c00215{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m73_c00215{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00215{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m79_c00215{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me5_c00215{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00215{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00215{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00215{transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00215{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00215{transform:matrix(0.705250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00215{transform:matrix(0.717000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{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__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00215{word-spacing:-15.370440px;}
.ws7_c00215{word-spacing:-1.657682px;}
.ws8_c00215{word-spacing:0.000000px;}
.ws0_c00215{word-spacing:1.562500px;}
.ws2_c00215{word-spacing:19.994638px;}
.ws5_c00215{word-spacing:25.714286px;}
.ws4_c00215{word-spacing:34.642857px;}
.ws6_c00215{word-spacing:43.166667px;}
.ws3_c00215{word-spacing:49.370787px;}
.fc0_c00215{color:transparent;}
.fs4_c00215{font-size:18.000000px;}
.fs9_c00215{font-size:24.000000px;}
.fs8_c00215{font-size:30.000000px;}
.fs6_c00215{font-size:36.000000px;}
.fs5_c00215{font-size:48.000000px;}
.fs0_c00215{font-size:54.000000px;}
.fs3_c00215{font-size:60.000000px;}
.fs2_c00215{font-size:66.000000px;}
.fs7_c00215{font-size:72.000000px;}
.fs1_c00215{font-size:78.000000px;}
.y0_c00215{bottom:0.000000px;}
.y72_c00215{bottom:173.100000px;}
.y71_c00215{bottom:190.350000px;}
.y6a_c00215{bottom:191.100000px;}
.y70_c00215{bottom:204.750000px;}
.y69_c00215{bottom:205.500000px;}
.y6f_c00215{bottom:216.300000px;}
.y6e_c00215{bottom:219.150000px;}
.y68_c00215{bottom:219.900000px;}
.y6d_c00215{bottom:233.550000px;}
.y67_c00215{bottom:234.000000px;}
.y6c_c00215{bottom:247.650000px;}
.y66_c00215{bottom:248.400000px;}
.y6b_c00215{bottom:262.050000px;}
.y65_c00215{bottom:262.500000px;}
.y60_c00215{bottom:280.350000px;}
.y5f_c00215{bottom:285.450000px;}
.y64_c00215{bottom:299.100000px;}
.y5e_c00215{bottom:311.550000px;}
.y63_c00215{bottom:316.800000px;}
.y5d_c00215{bottom:329.550000px;}
.y62_c00215{bottom:334.500000px;}
.y5c_c00215{bottom:347.250000px;}
.y61_c00215{bottom:352.500000px;}
.y5b_c00215{bottom:365.250000px;}
.y30_c00215{bottom:370.050000px;}
.y5a_c00215{bottom:383.250000px;}
.y2f_c00215{bottom:388.050000px;}
.y59_c00215{bottom:400.950000px;}
.y2e_c00215{bottom:406.050000px;}
.y58_c00215{bottom:418.950000px;}
.y2d_c00215{bottom:424.050000px;}
.y57_c00215{bottom:436.200000px;}
.y2c_c00215{bottom:439.950000px;}
.y2b_c00215{bottom:453.600000px;}
.y56_c00215{bottom:454.200000px;}
.y31_c00215{bottom:455.400000px;}
.y2a_c00215{bottom:468.300000px;}
.y55_c00215{bottom:472.200000px;}
.y29_c00215{bottom:482.700000px;}
.y54_c00215{bottom:489.900000px;}
.y28_c00215{bottom:497.850000px;}
.y27_c00215{bottom:511.500000px;}
.y53_c00215{bottom:514.200000px;}
.y26_c00215{bottom:526.650000px;}
.y52_c00215{bottom:528.900000px;}
.y25_c00215{bottom:540.000000px;}
.y51_c00215{bottom:542.550000px;}
.y24_c00215{bottom:555.150000px;}
.y50_c00215{bottom:556.950000px;}
.y23_c00215{bottom:569.550000px;}
.y4f_c00215{bottom:571.650000px;}
.y22_c00215{bottom:582.150000px;}
.y4e_c00215{bottom:584.250000px;}
.y21_c00215{bottom:596.250000px;}
.y4d_c00215{bottom:603.600000px;}
.y1f_c00215{bottom:603.750000px;}
.y20_c00215{bottom:605.550000px;}
.y1e_c00215{bottom:613.800000px;}
.y4c_c00215{bottom:621.300000px;}
.y1d_c00215{bottom:631.800000px;}
.y4b_c00215{bottom:639.300000px;}
.y1c_c00215{bottom:654.000000px;}
.y4a_c00215{bottom:657.000000px;}
.y1b_c00215{bottom:672.000000px;}
.y49_c00215{bottom:683.550000px;}
.y1a_c00215{bottom:689.700000px;}
.y48_c00215{bottom:701.550000px;}
.y19_c00215{bottom:707.400000px;}
.y47_c00215{bottom:719.550000px;}
.y18_c00215{bottom:725.400000px;}
.y46_c00215{bottom:737.250000px;}
.y17_c00215{bottom:747.000000px;}
.y45_c00215{bottom:754.950000px;}
.y16_c00215{bottom:769.350000px;}
.y44_c00215{bottom:773.250000px;}
.y43_c00215{bottom:776.850000px;}
.y15_c00215{bottom:791.550000px;}
.y42_c00215{bottom:803.850000px;}
.y14_c00215{bottom:809.250000px;}
.y41_c00215{bottom:822.150000px;}
.y13_c00215{bottom:826.950000px;}
.y40_c00215{bottom:839.400000px;}
.y12_c00215{bottom:841.350000px;}
.y11_c00215{bottom:844.500000px;}
.y3f_c00215{bottom:857.100000px;}
.y10_c00215{bottom:866.400000px;}
.y3e_c00215{bottom:879.450000px;}
.yf_c00215{bottom:884.100000px;}
.y3d_c00215{bottom:897.300000px;}
.ye_c00215{bottom:902.400000px;}
.y3c_c00215{bottom:915.000000px;}
.yd_c00215{bottom:919.650000px;}
.y3b_c00215{bottom:932.700000px;}
.yc_c00215{bottom:937.350000px;}
.y3a_c00215{bottom:950.700000px;}
.yb_c00215{bottom:955.350000px;}
.y39_c00215{bottom:968.400000px;}
.ya_c00215{bottom:973.050000px;}
.y38_c00215{bottom:986.400000px;}
.y9_c00215{bottom:990.750000px;}
.y37_c00215{bottom:1008.300000px;}
.y8_c00215{bottom:1008.450000px;}
.y36_c00215{bottom:1026.300000px;}
.y7_c00215{bottom:1026.450000px;}
.y6_c00215{bottom:1044.150000px;}
.y35_c00215{bottom:1044.600000px;}
.y5_c00215{bottom:1061.850000px;}
.y34_c00215{bottom:1062.300000px;}
.y4_c00215{bottom:1079.550000px;}
.y33_c00215{bottom:1079.850000px;}
.y3_c00215{bottom:1097.250000px;}
.y32_c00215{bottom:1097.550000px;}
.y2_c00215{bottom:1115.250000px;}
.y1_c00215{bottom:1142.250000px;}
.h6_c00215{height:18.000000px;}
.hb_c00215{height:24.000000px;}
.ha_c00215{height:30.000000px;}
.h8_c00215{height:36.000000px;}
.h7_c00215{height:48.000000px;}
.h2_c00215{height:54.000000px;}
.h5_c00215{height:60.000000px;}
.h4_c00215{height:66.000000px;}
.h9_c00215{height:72.000000px;}
.h3_c00215{height:78.000000px;}
.h1_c00215{height:1271.250000px;}
.h0_c00215{height:1271.519990px;}
.w1_c00215{width:963.000000px;}
.w0_c00215{width:963.359985px;}
.x0_c00215{left:0.000000px;}
.x1_c00215{left:187.950000px;}
.x66_c00215{left:189.300000px;}
.x67_c00215{left:190.800000px;}
.x13e_c00215{left:191.850000px;}
.x94_c00215{left:204.450000px;}
.x3_c00215{left:205.500000px;}
.xa_c00215{left:207.300000px;}
.x60_c00215{left:208.350000px;}
.x80_c00215{left:210.300000px;}
.x79_c00215{left:214.500000px;}
.x86_c00215{left:218.850000px;}
.x8b_c00215{left:219.900000px;}
.xb_c00215{left:224.550000px;}
.x6a_c00215{left:226.800000px;}
.x59_c00215{left:228.900000px;}
.x13c_c00215{left:229.950000px;}
.x11_c00215{left:231.150000px;}
.x68_c00215{left:232.950000px;}
.x1a_c00215{left:234.600000px;}
.x3d_c00215{left:238.950000px;}
.x65_c00215{left:240.450000px;}
.x61_c00215{left:242.250000px;}
.x2c_c00215{left:244.050000px;}
.x4_c00215{left:245.100000px;}
.x12_c00215{left:247.050000px;}
.x95_c00215{left:248.100000px;}
.x51_c00215{left:249.750000px;}
.x37_c00215{left:251.250000px;}
.x6f_c00215{left:252.450000px;}
.x72_c00215{left:253.800000px;}
.x8e_c00215{left:256.350000px;}
.x1b_c00215{left:259.500000px;}
.x25_c00215{left:260.550000px;}
.x92_c00215{left:262.350000px;}
.x4b_c00215{left:263.550000px;}
.x75_c00215{left:265.350000px;}
.x32_c00215{left:266.700000px;}
.x13f_c00215{left:268.950000px;}
.x5_c00215{left:270.000000px;}
.x13_c00215{left:273.000000px;}
.x8f_c00215{left:274.350000px;}
.x4f_c00215{left:276.900000px;}
.xc_c00215{left:280.050000px;}
.x7d_c00215{left:281.250000px;}
.x14_c00215{left:282.750000px;}
.x97_c00215{left:284.550000px;}
.x3e_c00215{left:286.200000px;}
.x54_c00215{left:287.400000px;}
.x76_c00215{left:289.800000px;}
.x43_c00215{left:292.500000px;}
.x47_c00215{left:295.050000px;}
.x5d_c00215{left:297.600000px;}
.x15_c00215{left:299.250000px;}
.x70_c00215{left:302.100000px;}
.x6_c00215{left:304.500000px;}
.x33_c00215{left:305.550000px;}
.x20_c00215{left:308.850000px;}
.x2d_c00215{left:310.650000px;}
.x55_c00215{left:312.600000px;}
.x73_c00215{left:313.950000px;}
.x139_c00215{left:315.300000px;}
.x93_c00215{left:316.350000px;}
.x4c_c00215{left:317.550000px;}
.x8c_c00215{left:318.600000px;}
.x44_c00215{left:320.250000px;}
.x2e_c00215{left:321.450000px;}
.x5a_c00215{left:323.550000px;}
.xd_c00215{left:324.750000px;}
.x6b_c00215{left:325.800000px;}
.x1c_c00215{left:326.850000px;}
.x140_c00215{left:329.400000px;}
.x48_c00215{left:331.800000px;}
.x3f_c00215{left:333.000000px;}
.x7_c00215{left:336.600000px;}
.x52_c00215{left:338.250000px;}
.x21_c00215{left:339.750000px;}
.x56_c00215{left:341.100000px;}
.x26_c00215{left:342.300000px;}
.x7a_c00215{left:346.650000px;}
.x38_c00215{left:347.700000px;}
.x9b_c00215{left:349.050000px;}
.x82_c00215{left:350.100000px;}
.x50_c00215{left:351.300000px;}
.xe_c00215{left:353.250000px;}
.x87_c00215{left:354.900000px;}
.x71_c00215{left:356.100000px;}
.x22_c00215{left:357.750000px;}
.x62_c00215{left:360.000000px;}
.x13d_c00215{left:361.050000px;}
.x83_c00215{left:362.700000px;}
.x16_c00215{left:364.350000px;}
.x39_c00215{left:366.000000px;}
.x98_c00215{left:367.350000px;}
.x45_c00215{left:369.300000px;}
.x88_c00215{left:370.800000px;}
.x27_c00215{left:373.650000px;}
.x1d_c00215{left:375.150000px;}
.x7b_c00215{left:376.200000px;}
.x2f_c00215{left:377.250000px;}
.x57_c00215{left:381.450000px;}
.x49_c00215{left:382.650000px;}
.x40_c00215{left:385.650000px;}
.x4d_c00215{left:388.500000px;}
.x133_c00215{left:391.800000px;}
.x90_c00215{left:393.000000px;}
.x34_c00215{left:395.250000px;}
.x6c_c00215{left:396.750000px;}
.x1e_c00215{left:398.550000px;}
.x69_c00215{left:400.350000px;}
.x89_c00215{left:402.900000px;}
.x99_c00215{left:404.100000px;}
.xf_c00215{left:407.550000px;}
.x30_c00215{left:408.900000px;}
.x84_c00215{left:411.000000px;}
.x134_c00215{left:412.650000px;}
.x3a_c00215{left:413.850000px;}
.x28_c00215{left:415.800000px;}
.x17_c00215{left:418.050000px;}
.x46_c00215{left:420.000000px;}
.x77_c00215{left:421.500000px;}
.x53_c00215{left:423.300000px;}
.x142_c00215{left:425.250000px;}
.x8d_c00215{left:427.350000px;}
.x81_c00215{left:428.550000px;}
.x4e_c00215{left:430.650000px;}
.x7e_c00215{left:431.700000px;}
.x2_c00215{left:432.750000px;}
.x23_c00215{left:436.200000px;}
.x3b_c00215{left:438.000000px;}
.x135_c00215{left:439.050000px;}
.x35_c00215{left:442.350000px;}
.x8_c00215{left:443.850000px;}
.x5e_c00215{left:445.200000px;}
.x29_c00215{left:446.700000px;}
.x18_c00215{left:448.350000px;}
.x74_c00215{left:449.400000px;}
.x41_c00215{left:451.500000px;}
.x96_c00215{left:453.150000px;}
.x5b_c00215{left:454.650000px;}
.x8a_c00215{left:456.150000px;}
.x136_c00215{left:459.450000px;}
.x141_c00215{left:461.400000px;}
.x58_c00215{left:462.450000px;}
.x19_c00215{left:464.550000px;}
.x2a_c00215{left:467.250000px;}
.x13a_c00215{left:470.700000px;}
.x9_c00215{left:473.400000px;}
.x5f_c00215{left:474.750000px;}
.x6d_c00215{left:476.700000px;}
.x91_c00215{left:479.400000px;}
.x10_c00215{left:480.600000px;}
.x7c_c00215{left:482.100000px;}
.x1f_c00215{left:483.900000px;}
.x63_c00215{left:486.000000px;}
.x5c_c00215{left:488.550000px;}
.x2b_c00215{left:489.900000px;}
.x9a_c00215{left:491.550000px;}
.x4a_c00215{left:492.900000px;}
.x78_c00215{left:494.550000px;}
.x3c_c00215{left:495.900000px;}
.x31_c00215{left:498.900000px;}
.x137_c00215{left:500.550000px;}
.x24_c00215{left:502.050000px;}
.x42_c00215{left:509.400000px;}
.x64_c00215{left:511.200000px;}
.x85_c00215{left:512.250000px;}
.x36_c00215{left:513.300000px;}
.x7f_c00215{left:514.500000px;}
.x138_c00215{left:517.050000px;}
.x6e_c00215{left:520.650000px;}
.x13b_c00215{left:523.950000px;}
.xc4_c00215{left:543.900000px;}
.xe0_c00215{left:545.100000px;}
.x102_c00215{left:546.900000px;}
.xf3_c00215{left:547.950000px;}
.x131_c00215{left:549.300000px;}
.xb1_c00215{left:550.800000px;}
.xed_c00215{left:555.900000px;}
.x9c_c00215{left:560.100000px;}
.xbc_c00215{left:561.300000px;}
.xdf_c00215{left:562.350000px;}
.xe7_c00215{left:564.450000px;}
.x12e_c00215{left:565.500000px;}
.x14e_c00215{left:567.600000px;}
.x148_c00215{left:572.100000px;}
.x145_c00215{left:574.050000px;}
.xbd_c00215{left:576.000000px;}
.x124_c00215{left:581.250000px;}
.xda_c00215{left:582.750000px;}
.x10a_c00215{left:585.150000px;}
.x11b_c00215{left:586.650000px;}
.xee_c00215{left:588.300000px;}
.x9d_c00215{left:589.950000px;}
.x103_c00215{left:591.900000px;}
.x149_c00215{left:594.750000px;}
.xd5_c00215{left:598.950000px;}
.x101_c00215{left:601.650000px;}
.xc3_c00215{left:603.900000px;}
.xc8_c00215{left:604.950000px;}
.xbe_c00215{left:606.600000px;}
.xb6_c00215{left:608.100000px;}
.x9e_c00215{left:609.450000px;}
.x117_c00215{left:611.250000px;}
.x127_c00215{left:612.450000px;}
.xef_c00215{left:613.500000px;}
.xe1_c00215{left:617.100000px;}
.xb2_c00215{left:618.150000px;}
.xab_c00215{left:619.800000px;}
.xeb_c00215{left:621.300000px;}
.x125_c00215{left:622.950000px;}
.xc5_c00215{left:624.900000px;}
.xb7_c00215{left:627.150000px;}
.xfb_c00215{left:628.800000px;}
.xc9_c00215{left:629.850000px;}
.x12b_c00215{left:631.050000px;}
.xd6_c00215{left:632.100000px;}
.x9f_c00215{left:633.600000px;}
.xdb_c00215{left:636.000000px;}
.x115_c00215{left:637.800000px;}
.xd2_c00215{left:638.850000px;}
.x11e_c00215{left:640.950000px;}
.xf5_c00215{left:645.450000px;}
.x121_c00215{left:647.100000px;}
.xe2_c00215{left:648.450000px;}
.xa4_c00215{left:650.550000px;}
.x107_c00215{left:652.200000px;}
.x143_c00215{left:654.600000px;}
.xac_c00215{left:655.800000px;}
.xec_c00215{left:658.800000px;}
.x104_c00215{left:660.000000px;}
.x105_c00215{left:661.350000px;}
.x10c_c00215{left:662.700000px;}
.x10f_c00215{left:665.250000px;}
.xdc_c00215{left:668.400000px;}
.x14a_c00215{left:672.150000px;}
.xf6_c00215{left:673.200000px;}
.x116_c00215{left:676.050000px;}
.xa5_c00215{left:680.100000px;}
.xf0_c00215{left:681.900000px;}
.x12f_c00215{left:683.550000px;}
.xb8_c00215{left:687.300000px;}
.xbf_c00215{left:688.350000px;}
.xa0_c00215{left:690.150000px;}
.xf8_c00215{left:691.800000px;}
.xd7_c00215{left:693.000000px;}
.x106_c00215{left:697.050000px;}
.xe3_c00215{left:698.550000px;}
.xa6_c00215{left:700.650000px;}
.x128_c00215{left:703.500000px;}
.xe6_c00215{left:705.450000px;}
.xd3_c00215{left:710.850000px;}
.x14b_c00215{left:712.050000px;}
.x118_c00215{left:713.100000px;}
.xca_c00215{left:714.150000px;}
.x12c_c00215{left:717.450000px;}
.xc6_c00215{left:718.800000px;}
.xb3_c00215{left:720.750000px;}
.x129_c00215{left:722.550000px;}
.xa1_c00215{left:724.050000px;}
.x146_c00215{left:726.150000px;}
.x11c_c00215{left:727.350000px;}
.xb9_c00215{left:732.600000px;}
.x108_c00215{left:733.950000px;}
.xcb_c00215{left:736.050000px;}
.xcd_c00215{left:737.400000px;}
.xf4_c00215{left:740.250000px;}
.xa7_c00215{left:742.050000px;}
.xad_c00215{left:743.700000px;}
.xce_c00215{left:746.100000px;}
.xd8_c00215{left:749.550000px;}
.xf1_c00215{left:751.050000px;}
.xc0_c00215{left:754.650000px;}
.xba_c00215{left:758.100000px;}
.x126_c00215{left:760.500000px;}
.xd4_c00215{left:763.050000px;}
.xa8_c00215{left:765.150000px;}
.x130_c00215{left:766.350000px;}
.xe8_c00215{left:767.400000px;}
.xd9_c00215{left:768.600000px;}
.xff_c00215{left:771.150000px;}
.x132_c00215{left:772.500000px;}
.xae_c00215{left:773.550000px;}
.xc7_c00215{left:774.600000px;}
.xf9_c00215{left:775.650000px;}
.x144_c00215{left:778.050000px;}
.xa2_c00215{left:779.850000px;}
.x11f_c00215{left:781.800000px;}
.xe4_c00215{left:783.150000px;}
.xdd_c00215{left:788.250000px;}
.xfc_c00215{left:789.600000px;}
.xf2_c00215{left:790.650000px;}
.x14c_c00215{left:793.350000px;}
.x109_c00215{left:795.900000px;}
.x119_c00215{left:799.500000px;}
.x11d_c00215{left:801.150000px;}
.xc1_c00215{left:803.250000px;}
.xcf_c00215{left:804.750000px;}
.x122_c00215{left:807.000000px;}
.xa3_c00215{left:808.350000px;}
.xde_c00215{left:809.850000px;}
.x111_c00215{left:811.200000px;}
.x113_c00215{left:812.400000px;}
.xa9_c00215{left:813.750000px;}
.xbb_c00215{left:815.400000px;}
.xfd_c00215{left:816.900000px;}
.x100_c00215{left:819.000000px;}
.xd0_c00215{left:821.250000px;}
.xe9_c00215{left:823.200000px;}
.x10b_c00215{left:824.850000px;}
.xf7_c00215{left:826.650000px;}
.xaf_c00215{left:828.600000px;}
.xb4_c00215{left:830.550000px;}
.x11a_c00215{left:832.200000px;}
.x10d_c00215{left:833.700000px;}
.x114_c00215{left:835.800000px;}
.x14d_c00215{left:836.850000px;}
.x110_c00215{left:840.000000px;}
.xfa_c00215{left:841.500000px;}
.xe5_c00215{left:842.550000px;}
.x12a_c00215{left:843.750000px;}
.x12d_c00215{left:845.250000px;}
.xfe_c00215{left:846.450000px;}
.xb5_c00215{left:849.300000px;}
.xc2_c00215{left:851.550000px;}
.x123_c00215{left:853.050000px;}
.x120_c00215{left:855.600000px;}
.xcc_c00215{left:858.750000px;}
.xd1_c00215{left:859.800000px;}
.x147_c00215{left:861.150000px;}
.xb0_c00215{left:863.100000px;}
.x10e_c00215{left:867.150000px;}
.xaa_c00215{left:868.500000px;}
.x112_c00215{left:870.300000px;}
.xea_c00215{left:871.500000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws1_c00215{word-spacing:-13.662613pt;}
.ws7_c00215{word-spacing:-1.473495pt;}
.ws8_c00215{word-spacing:0.000000pt;}
.ws0_c00215{word-spacing:1.388889pt;}
.ws2_c00215{word-spacing:17.773012pt;}
.ws5_c00215{word-spacing:22.857143pt;}
.ws4_c00215{word-spacing:30.793651pt;}
.ws6_c00215{word-spacing:38.370370pt;}
.ws3_c00215{word-spacing:43.885144pt;}
.fs4_c00215{font-size:16.000000pt;}
.fs9_c00215{font-size:21.333333pt;}
.fs8_c00215{font-size:26.666667pt;}
.fs6_c00215{font-size:32.000000pt;}
.fs5_c00215{font-size:42.666667pt;}
.fs0_c00215{font-size:48.000000pt;}
.fs3_c00215{font-size:53.333333pt;}
.fs2_c00215{font-size:58.666667pt;}
.fs7_c00215{font-size:64.000000pt;}
.fs1_c00215{font-size:69.333333pt;}
.y0_c00215{bottom:0.000000pt;}
.y72_c00215{bottom:153.866667pt;}
.y71_c00215{bottom:169.200000pt;}
.y6a_c00215{bottom:169.866667pt;}
.y70_c00215{bottom:182.000000pt;}
.y69_c00215{bottom:182.666667pt;}
.y6f_c00215{bottom:192.266667pt;}
.y6e_c00215{bottom:194.800000pt;}
.y68_c00215{bottom:195.466667pt;}
.y6d_c00215{bottom:207.600000pt;}
.y67_c00215{bottom:208.000000pt;}
.y6c_c00215{bottom:220.133333pt;}
.y66_c00215{bottom:220.800000pt;}
.y6b_c00215{bottom:232.933333pt;}
.y65_c00215{bottom:233.333333pt;}
.y60_c00215{bottom:249.200000pt;}
.y5f_c00215{bottom:253.733333pt;}
.y64_c00215{bottom:265.866667pt;}
.y5e_c00215{bottom:276.933333pt;}
.y63_c00215{bottom:281.600000pt;}
.y5d_c00215{bottom:292.933333pt;}
.y62_c00215{bottom:297.333333pt;}
.y5c_c00215{bottom:308.666667pt;}
.y61_c00215{bottom:313.333333pt;}
.y5b_c00215{bottom:324.666667pt;}
.y30_c00215{bottom:328.933333pt;}
.y5a_c00215{bottom:340.666667pt;}
.y2f_c00215{bottom:344.933333pt;}
.y59_c00215{bottom:356.400000pt;}
.y2e_c00215{bottom:360.933333pt;}
.y58_c00215{bottom:372.400000pt;}
.y2d_c00215{bottom:376.933333pt;}
.y57_c00215{bottom:387.733333pt;}
.y2c_c00215{bottom:391.066667pt;}
.y2b_c00215{bottom:403.200000pt;}
.y56_c00215{bottom:403.733333pt;}
.y31_c00215{bottom:404.800000pt;}
.y2a_c00215{bottom:416.266667pt;}
.y55_c00215{bottom:419.733333pt;}
.y29_c00215{bottom:429.066667pt;}
.y54_c00215{bottom:435.466667pt;}
.y28_c00215{bottom:442.533333pt;}
.y27_c00215{bottom:454.666667pt;}
.y53_c00215{bottom:457.066667pt;}
.y26_c00215{bottom:468.133333pt;}
.y52_c00215{bottom:470.133333pt;}
.y25_c00215{bottom:480.000000pt;}
.y51_c00215{bottom:482.266667pt;}
.y24_c00215{bottom:493.466667pt;}
.y50_c00215{bottom:495.066667pt;}
.y23_c00215{bottom:506.266667pt;}
.y4f_c00215{bottom:508.133333pt;}
.y22_c00215{bottom:517.466667pt;}
.y4e_c00215{bottom:519.333333pt;}
.y21_c00215{bottom:530.000000pt;}
.y4d_c00215{bottom:536.533333pt;}
.y1f_c00215{bottom:536.666667pt;}
.y20_c00215{bottom:538.266667pt;}
.y1e_c00215{bottom:545.600000pt;}
.y4c_c00215{bottom:552.266667pt;}
.y1d_c00215{bottom:561.600000pt;}
.y4b_c00215{bottom:568.266667pt;}
.y1c_c00215{bottom:581.333333pt;}
.y4a_c00215{bottom:584.000000pt;}
.y1b_c00215{bottom:597.333333pt;}
.y49_c00215{bottom:607.600000pt;}
.y1a_c00215{bottom:613.066667pt;}
.y48_c00215{bottom:623.600000pt;}
.y19_c00215{bottom:628.800000pt;}
.y47_c00215{bottom:639.600000pt;}
.y18_c00215{bottom:644.800000pt;}
.y46_c00215{bottom:655.333333pt;}
.y17_c00215{bottom:664.000000pt;}
.y45_c00215{bottom:671.066667pt;}
.y16_c00215{bottom:683.866667pt;}
.y44_c00215{bottom:687.333333pt;}
.y43_c00215{bottom:690.533333pt;}
.y15_c00215{bottom:703.600000pt;}
.y42_c00215{bottom:714.533333pt;}
.y14_c00215{bottom:719.333333pt;}
.y41_c00215{bottom:730.800000pt;}
.y13_c00215{bottom:735.066667pt;}
.y40_c00215{bottom:746.133333pt;}
.y12_c00215{bottom:747.866667pt;}
.y11_c00215{bottom:750.666667pt;}
.y3f_c00215{bottom:761.866667pt;}
.y10_c00215{bottom:770.133333pt;}
.y3e_c00215{bottom:781.733333pt;}
.yf_c00215{bottom:785.866667pt;}
.y3d_c00215{bottom:797.600000pt;}
.ye_c00215{bottom:802.133333pt;}
.y3c_c00215{bottom:813.333333pt;}
.yd_c00215{bottom:817.466667pt;}
.y3b_c00215{bottom:829.066667pt;}
.yc_c00215{bottom:833.200000pt;}
.y3a_c00215{bottom:845.066667pt;}
.yb_c00215{bottom:849.200000pt;}
.y39_c00215{bottom:860.800000pt;}
.ya_c00215{bottom:864.933333pt;}
.y38_c00215{bottom:876.800000pt;}
.y9_c00215{bottom:880.666667pt;}
.y37_c00215{bottom:896.266667pt;}
.y8_c00215{bottom:896.400000pt;}
.y36_c00215{bottom:912.266667pt;}
.y7_c00215{bottom:912.400000pt;}
.y6_c00215{bottom:928.133333pt;}
.y35_c00215{bottom:928.533333pt;}
.y5_c00215{bottom:943.866667pt;}
.y34_c00215{bottom:944.266667pt;}
.y4_c00215{bottom:959.600000pt;}
.y33_c00215{bottom:959.866667pt;}
.y3_c00215{bottom:975.333333pt;}
.y32_c00215{bottom:975.600000pt;}
.y2_c00215{bottom:991.333333pt;}
.y1_c00215{bottom:1015.333333pt;}
.h6_c00215{height:16.000000pt;}
.hb_c00215{height:21.333333pt;}
.ha_c00215{height:26.666667pt;}
.h8_c00215{height:32.000000pt;}
.h7_c00215{height:42.666667pt;}
.h2_c00215{height:48.000000pt;}
.h5_c00215{height:53.333333pt;}
.h4_c00215{height:58.666667pt;}
.h9_c00215{height:64.000000pt;}
.h3_c00215{height:69.333333pt;}
.h1_c00215{height:1130.000000pt;}
.h0_c00215{height:1130.239991pt;}
.w1_c00215{width:856.000000pt;}
.w0_c00215{width:856.319987pt;}
.x0_c00215{left:0.000000pt;}
.x1_c00215{left:167.066667pt;}
.x66_c00215{left:168.266667pt;}
.x67_c00215{left:169.600000pt;}
.x13e_c00215{left:170.533333pt;}
.x94_c00215{left:181.733333pt;}
.x3_c00215{left:182.666667pt;}
.xa_c00215{left:184.266667pt;}
.x60_c00215{left:185.200000pt;}
.x80_c00215{left:186.933333pt;}
.x79_c00215{left:190.666667pt;}
.x86_c00215{left:194.533333pt;}
.x8b_c00215{left:195.466667pt;}
.xb_c00215{left:199.600000pt;}
.x6a_c00215{left:201.600000pt;}
.x59_c00215{left:203.466667pt;}
.x13c_c00215{left:204.400000pt;}
.x11_c00215{left:205.466667pt;}
.x68_c00215{left:207.066667pt;}
.x1a_c00215{left:208.533333pt;}
.x3d_c00215{left:212.400000pt;}
.x65_c00215{left:213.733333pt;}
.x61_c00215{left:215.333333pt;}
.x2c_c00215{left:216.933333pt;}
.x4_c00215{left:217.866667pt;}
.x12_c00215{left:219.600000pt;}
.x95_c00215{left:220.533333pt;}
.x51_c00215{left:222.000000pt;}
.x37_c00215{left:223.333333pt;}
.x6f_c00215{left:224.400000pt;}
.x72_c00215{left:225.600000pt;}
.x8e_c00215{left:227.866667pt;}
.x1b_c00215{left:230.666667pt;}
.x25_c00215{left:231.600000pt;}
.x92_c00215{left:233.200000pt;}
.x4b_c00215{left:234.266667pt;}
.x75_c00215{left:235.866667pt;}
.x32_c00215{left:237.066667pt;}
.x13f_c00215{left:239.066667pt;}
.x5_c00215{left:240.000000pt;}
.x13_c00215{left:242.666667pt;}
.x8f_c00215{left:243.866667pt;}
.x4f_c00215{left:246.133333pt;}
.xc_c00215{left:248.933333pt;}
.x7d_c00215{left:250.000000pt;}
.x14_c00215{left:251.333333pt;}
.x97_c00215{left:252.933333pt;}
.x3e_c00215{left:254.400000pt;}
.x54_c00215{left:255.466667pt;}
.x76_c00215{left:257.600000pt;}
.x43_c00215{left:260.000000pt;}
.x47_c00215{left:262.266667pt;}
.x5d_c00215{left:264.533333pt;}
.x15_c00215{left:266.000000pt;}
.x70_c00215{left:268.533333pt;}
.x6_c00215{left:270.666667pt;}
.x33_c00215{left:271.600000pt;}
.x20_c00215{left:274.533333pt;}
.x2d_c00215{left:276.133333pt;}
.x55_c00215{left:277.866667pt;}
.x73_c00215{left:279.066667pt;}
.x139_c00215{left:280.266667pt;}
.x93_c00215{left:281.200000pt;}
.x4c_c00215{left:282.266667pt;}
.x8c_c00215{left:283.200000pt;}
.x44_c00215{left:284.666667pt;}
.x2e_c00215{left:285.733333pt;}
.x5a_c00215{left:287.600000pt;}
.xd_c00215{left:288.666667pt;}
.x6b_c00215{left:289.600000pt;}
.x1c_c00215{left:290.533333pt;}
.x140_c00215{left:292.800000pt;}
.x48_c00215{left:294.933333pt;}
.x3f_c00215{left:296.000000pt;}
.x7_c00215{left:299.200000pt;}
.x52_c00215{left:300.666667pt;}
.x21_c00215{left:302.000000pt;}
.x56_c00215{left:303.200000pt;}
.x26_c00215{left:304.266667pt;}
.x7a_c00215{left:308.133333pt;}
.x38_c00215{left:309.066667pt;}
.x9b_c00215{left:310.266667pt;}
.x82_c00215{left:311.200000pt;}
.x50_c00215{left:312.266667pt;}
.xe_c00215{left:314.000000pt;}
.x87_c00215{left:315.466667pt;}
.x71_c00215{left:316.533333pt;}
.x22_c00215{left:318.000000pt;}
.x62_c00215{left:320.000000pt;}
.x13d_c00215{left:320.933333pt;}
.x83_c00215{left:322.400000pt;}
.x16_c00215{left:323.866667pt;}
.x39_c00215{left:325.333333pt;}
.x98_c00215{left:326.533333pt;}
.x45_c00215{left:328.266667pt;}
.x88_c00215{left:329.600000pt;}
.x27_c00215{left:332.133333pt;}
.x1d_c00215{left:333.466667pt;}
.x7b_c00215{left:334.400000pt;}
.x2f_c00215{left:335.333333pt;}
.x57_c00215{left:339.066667pt;}
.x49_c00215{left:340.133333pt;}
.x40_c00215{left:342.800000pt;}
.x4d_c00215{left:345.333333pt;}
.x133_c00215{left:348.266667pt;}
.x90_c00215{left:349.333333pt;}
.x34_c00215{left:351.333333pt;}
.x6c_c00215{left:352.666667pt;}
.x1e_c00215{left:354.266667pt;}
.x69_c00215{left:355.866667pt;}
.x89_c00215{left:358.133333pt;}
.x99_c00215{left:359.200000pt;}
.xf_c00215{left:362.266667pt;}
.x30_c00215{left:363.466667pt;}
.x84_c00215{left:365.333333pt;}
.x134_c00215{left:366.800000pt;}
.x3a_c00215{left:367.866667pt;}
.x28_c00215{left:369.600000pt;}
.x17_c00215{left:371.600000pt;}
.x46_c00215{left:373.333333pt;}
.x77_c00215{left:374.666667pt;}
.x53_c00215{left:376.266667pt;}
.x142_c00215{left:378.000000pt;}
.x8d_c00215{left:379.866667pt;}
.x81_c00215{left:380.933333pt;}
.x4e_c00215{left:382.800000pt;}
.x7e_c00215{left:383.733333pt;}
.x2_c00215{left:384.666667pt;}
.x23_c00215{left:387.733333pt;}
.x3b_c00215{left:389.333333pt;}
.x135_c00215{left:390.266667pt;}
.x35_c00215{left:393.200000pt;}
.x8_c00215{left:394.533333pt;}
.x5e_c00215{left:395.733333pt;}
.x29_c00215{left:397.066667pt;}
.x18_c00215{left:398.533333pt;}
.x74_c00215{left:399.466667pt;}
.x41_c00215{left:401.333333pt;}
.x96_c00215{left:402.800000pt;}
.x5b_c00215{left:404.133333pt;}
.x8a_c00215{left:405.466667pt;}
.x136_c00215{left:408.400000pt;}
.x141_c00215{left:410.133333pt;}
.x58_c00215{left:411.066667pt;}
.x19_c00215{left:412.933333pt;}
.x2a_c00215{left:415.333333pt;}
.x13a_c00215{left:418.400000pt;}
.x9_c00215{left:420.800000pt;}
.x5f_c00215{left:422.000000pt;}
.x6d_c00215{left:423.733333pt;}
.x91_c00215{left:426.133333pt;}
.x10_c00215{left:427.200000pt;}
.x7c_c00215{left:428.533333pt;}
.x1f_c00215{left:430.133333pt;}
.x63_c00215{left:432.000000pt;}
.x5c_c00215{left:434.266667pt;}
.x2b_c00215{left:435.466667pt;}
.x9a_c00215{left:436.933333pt;}
.x4a_c00215{left:438.133333pt;}
.x78_c00215{left:439.600000pt;}
.x3c_c00215{left:440.800000pt;}
.x31_c00215{left:443.466667pt;}
.x137_c00215{left:444.933333pt;}
.x24_c00215{left:446.266667pt;}
.x42_c00215{left:452.800000pt;}
.x64_c00215{left:454.400000pt;}
.x85_c00215{left:455.333333pt;}
.x36_c00215{left:456.266667pt;}
.x7f_c00215{left:457.333333pt;}
.x138_c00215{left:459.600000pt;}
.x6e_c00215{left:462.800000pt;}
.x13b_c00215{left:465.733333pt;}
.xc4_c00215{left:483.466667pt;}
.xe0_c00215{left:484.533333pt;}
.x102_c00215{left:486.133333pt;}
.xf3_c00215{left:487.066667pt;}
.x131_c00215{left:488.266667pt;}
.xb1_c00215{left:489.600000pt;}
.xed_c00215{left:494.133333pt;}
.x9c_c00215{left:497.866667pt;}
.xbc_c00215{left:498.933333pt;}
.xdf_c00215{left:499.866667pt;}
.xe7_c00215{left:501.733333pt;}
.x12e_c00215{left:502.666667pt;}
.x14e_c00215{left:504.533333pt;}
.x148_c00215{left:508.533333pt;}
.x145_c00215{left:510.266667pt;}
.xbd_c00215{left:512.000000pt;}
.x124_c00215{left:516.666667pt;}
.xda_c00215{left:518.000000pt;}
.x10a_c00215{left:520.133333pt;}
.x11b_c00215{left:521.466667pt;}
.xee_c00215{left:522.933333pt;}
.x9d_c00215{left:524.400000pt;}
.x103_c00215{left:526.133333pt;}
.x149_c00215{left:528.666667pt;}
.xd5_c00215{left:532.400000pt;}
.x101_c00215{left:534.800000pt;}
.xc3_c00215{left:536.800000pt;}
.xc8_c00215{left:537.733333pt;}
.xbe_c00215{left:539.200000pt;}
.xb6_c00215{left:540.533333pt;}
.x9e_c00215{left:541.733333pt;}
.x117_c00215{left:543.333333pt;}
.x127_c00215{left:544.400000pt;}
.xef_c00215{left:545.333333pt;}
.xe1_c00215{left:548.533333pt;}
.xb2_c00215{left:549.466667pt;}
.xab_c00215{left:550.933333pt;}
.xeb_c00215{left:552.266667pt;}
.x125_c00215{left:553.733333pt;}
.xc5_c00215{left:555.466667pt;}
.xb7_c00215{left:557.466667pt;}
.xfb_c00215{left:558.933333pt;}
.xc9_c00215{left:559.866667pt;}
.x12b_c00215{left:560.933333pt;}
.xd6_c00215{left:561.866667pt;}
.x9f_c00215{left:563.200000pt;}
.xdb_c00215{left:565.333333pt;}
.x115_c00215{left:566.933333pt;}
.xd2_c00215{left:567.866667pt;}
.x11e_c00215{left:569.733333pt;}
.xf5_c00215{left:573.733333pt;}
.x121_c00215{left:575.200000pt;}
.xe2_c00215{left:576.400000pt;}
.xa4_c00215{left:578.266667pt;}
.x107_c00215{left:579.733333pt;}
.x143_c00215{left:581.866667pt;}
.xac_c00215{left:582.933333pt;}
.xec_c00215{left:585.600000pt;}
.x104_c00215{left:586.666667pt;}
.x105_c00215{left:587.866667pt;}
.x10c_c00215{left:589.066667pt;}
.x10f_c00215{left:591.333333pt;}
.xdc_c00215{left:594.133333pt;}
.x14a_c00215{left:597.466667pt;}
.xf6_c00215{left:598.400000pt;}
.x116_c00215{left:600.933333pt;}
.xa5_c00215{left:604.533333pt;}
.xf0_c00215{left:606.133333pt;}
.x12f_c00215{left:607.600000pt;}
.xb8_c00215{left:610.933333pt;}
.xbf_c00215{left:611.866667pt;}
.xa0_c00215{left:613.466667pt;}
.xf8_c00215{left:614.933333pt;}
.xd7_c00215{left:616.000000pt;}
.x106_c00215{left:619.600000pt;}
.xe3_c00215{left:620.933333pt;}
.xa6_c00215{left:622.800000pt;}
.x128_c00215{left:625.333333pt;}
.xe6_c00215{left:627.066667pt;}
.xd3_c00215{left:631.866667pt;}
.x14b_c00215{left:632.933333pt;}
.x118_c00215{left:633.866667pt;}
.xca_c00215{left:634.800000pt;}
.x12c_c00215{left:637.733333pt;}
.xc6_c00215{left:638.933333pt;}
.xb3_c00215{left:640.666667pt;}
.x129_c00215{left:642.266667pt;}
.xa1_c00215{left:643.600000pt;}
.x146_c00215{left:645.466667pt;}
.x11c_c00215{left:646.533333pt;}
.xb9_c00215{left:651.200000pt;}
.x108_c00215{left:652.400000pt;}
.xcb_c00215{left:654.266667pt;}
.xcd_c00215{left:655.466667pt;}
.xf4_c00215{left:658.000000pt;}
.xa7_c00215{left:659.600000pt;}
.xad_c00215{left:661.066667pt;}
.xce_c00215{left:663.200000pt;}
.xd8_c00215{left:666.266667pt;}
.xf1_c00215{left:667.600000pt;}
.xc0_c00215{left:670.800000pt;}
.xba_c00215{left:673.866667pt;}
.x126_c00215{left:676.000000pt;}
.xd4_c00215{left:678.266667pt;}
.xa8_c00215{left:680.133333pt;}
.x130_c00215{left:681.200000pt;}
.xe8_c00215{left:682.133333pt;}
.xd9_c00215{left:683.200000pt;}
.xff_c00215{left:685.466667pt;}
.x132_c00215{left:686.666667pt;}
.xae_c00215{left:687.600000pt;}
.xc7_c00215{left:688.533333pt;}
.xf9_c00215{left:689.466667pt;}
.x144_c00215{left:691.600000pt;}
.xa2_c00215{left:693.200000pt;}
.x11f_c00215{left:694.933333pt;}
.xe4_c00215{left:696.133333pt;}
.xdd_c00215{left:700.666667pt;}
.xfc_c00215{left:701.866667pt;}
.xf2_c00215{left:702.800000pt;}
.x14c_c00215{left:705.200000pt;}
.x109_c00215{left:707.466667pt;}
.x119_c00215{left:710.666667pt;}
.x11d_c00215{left:712.133333pt;}
.xc1_c00215{left:714.000000pt;}
.xcf_c00215{left:715.333333pt;}
.x122_c00215{left:717.333333pt;}
.xa3_c00215{left:718.533333pt;}
.xde_c00215{left:719.866667pt;}
.x111_c00215{left:721.066667pt;}
.x113_c00215{left:722.133333pt;}
.xa9_c00215{left:723.333333pt;}
.xbb_c00215{left:724.800000pt;}
.xfd_c00215{left:726.133333pt;}
.x100_c00215{left:728.000000pt;}
.xd0_c00215{left:730.000000pt;}
.xe9_c00215{left:731.733333pt;}
.x10b_c00215{left:733.200000pt;}
.xf7_c00215{left:734.800000pt;}
.xaf_c00215{left:736.533333pt;}
.xb4_c00215{left:738.266667pt;}
.x11a_c00215{left:739.733333pt;}
.x10d_c00215{left:741.066667pt;}
.x114_c00215{left:742.933333pt;}
.x14d_c00215{left:743.866667pt;}
.x110_c00215{left:746.666667pt;}
.xfa_c00215{left:748.000000pt;}
.xe5_c00215{left:748.933333pt;}
.x12a_c00215{left:750.000000pt;}
.x12d_c00215{left:751.333333pt;}
.xfe_c00215{left:752.400000pt;}
.xb5_c00215{left:754.933333pt;}
.xc2_c00215{left:756.933333pt;}
.x123_c00215{left:758.266667pt;}
.x120_c00215{left:760.533333pt;}
.xcc_c00215{left:763.333333pt;}
.xd1_c00215{left:764.266667pt;}
.x147_c00215{left:765.466667pt;}
.xb0_c00215{left:767.200000pt;}
.x10e_c00215{left:770.800000pt;}
.xaa_c00215{left:772.000000pt;}
.x112_c00215{left:773.600000pt;}
.xea_c00215{left:774.666667pt;}
}





/* 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_c00216 {
    display:none;
  }
  .loading-indicator_c00216.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00216 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_c00216 { 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_c00216" -> "#page-container .classname_c00216")
 */
.pf_c00216 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00216 { /* 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_c00216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00216 { /* 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_c00216 { /* 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_c00216 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00216 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00216 {overflow:visible;}
  }
}
.c_c00216 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00216 { /* 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_c00216:after { /* webkit #35443 */
  content: '';
}
.t_c00216:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00216 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 */
}
.__c00216 { /* 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_c00216 { /* info for Javascript */
  display:none;
}
.l_c00216 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00216 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00216 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00216: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_c00216 {
    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_c00216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00216.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_c00216 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00216;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.000000;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;}
.m114_c00216{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m55_c00216{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m107_c00216{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00216{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00216{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m106_c00216{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00216{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m103_c00216{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00216{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mef_c00216{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00216{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00216{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00216{transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00216{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00216{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me4_c00216{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00216{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m113_c00216{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m62_c00216{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00216{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m8_c00216{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00216{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m85_c00216{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00216{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m39_c00216{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m51_c00216{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m24_c00216{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00216{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00216{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00216{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00216{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00216{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mda_c00216{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2_c00216{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m58_c00216{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00216{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00216{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m32_c00216{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m101_c00216{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m16_c00216{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00216{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00216{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m88_c00216{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m4_c00216{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md2_c00216{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m30_c00216{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m81_c00216{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00216{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m7_c00216{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m15_c00216{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00216{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00216{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00216{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m63_c00216{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mba_c00216{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m53_c00216{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m18_c00216{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00216{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m50_c00216{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00216{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00216{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9_c00216{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m48_c00216{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m28_c00216{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00216{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6_c00216{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00216{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m84_c00216{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m12_c00216{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00216{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00216{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00216{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m82_c00216{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00216{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00216{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md6_c00216{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma_c00216{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00216{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00216{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00216{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m86_c00216{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m38_c00216{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m66_c00216{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md7_c00216{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m72_c00216{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mde_c00216{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me3_c00216{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.me6_c00216{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m36_c00216{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m13_c00216{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m64_c00216{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.meb_c00216{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00216{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00216{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m61_c00216{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00216{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m80_c00216{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m76_c00216{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m89_c00216{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00216{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc_c00216{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00216{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00216{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00216{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m10_c00216{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mf_c00216{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mab_c00216{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00216{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00216{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md8_c00216{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m79_c00216{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m27_c00216{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m57_c00216{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00216{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m54_c00216{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m25_c00216{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00216{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m75_c00216{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5_c00216{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00216{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3_c00216{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m102_c00216{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.md9_c00216{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00216{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m96_c00216{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00216{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.maf_c00216{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00216{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00216{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me8_c00216{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00216{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m23_c00216{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m45_c00216{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m93_c00216{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m83_c00216{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m59_c00216{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m46_c00216{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00216{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m71_c00216{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00216{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m33_c00216{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mac_c00216{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m41_c00216{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m91_c00216{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m26_c00216{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m19_c00216{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m52_c00216{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m60_c00216{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00216{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m67_c00216{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb_c00216{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00216{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00216{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00216{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00216{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m44_c00216{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me1_c00216{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00216{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00216{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m70_c00216{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md0_c00216{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00216{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00216{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00216{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00216{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m69_c00216{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mad_c00216{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me5_c00216{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00216{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00216{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00216{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m73_c00216{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md4_c00216{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00216{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m87_c00216{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m77_c00216{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m92_c00216{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00216{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00216{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m78_c00216{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00216{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m20_c00216{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00216{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m31_c00216{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00216{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00216{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me0_c00216{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m11_c00216{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00216{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00216{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.maa_c00216{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m42_c00216{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md1_c00216{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m104_c00216{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00216{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00216{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00216{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m109_c00216{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mec_c00216{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m68_c00216{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00216{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00216{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00216{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00216{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00216{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00216{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m37_c00216{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m56_c00216{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mca_c00216{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m14_c00216{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m90_c00216{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00216{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00216{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me9_c00216{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md5_c00216{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m95_c00216{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00216{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m47_c00216{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00216{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m100_c00216{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00216{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00216{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m74_c00216{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m22_c00216{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mce_c00216{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00216{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m21_c00216{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md3_c00216{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mea_c00216{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00216{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00216{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m65_c00216{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mff_c00216{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00216{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m40_c00216{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m105_c00216{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md_c00216{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me2_c00216{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00216{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m49_c00216{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00216{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00216{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00216{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00216{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00216{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00216{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00216{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m29_c00216{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m99_c00216{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00216{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mee_c00216{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m35_c00216{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00216{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m94_c00216{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00216{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m97_c00216{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m98_c00216{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m34_c00216{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.me_c00216{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00216{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mae_c00216{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.med_c00216{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m108_c00216{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00216{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00216{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.m112_c00216{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00216{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.me7_c00216{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00216{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00216{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00216{transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);}
.m43_c00216{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.m0_c00216{transform:matrix(0.512000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00216{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m110_c00216{transform:matrix(0.753250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.753250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.753250,0.000000,0.000000,0.250000,0,0);}
.m111_c00216{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls0_c00216{letter-spacing:0.000000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{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__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00216{word-spacing:-13.079038px;}
.ws2_c00216{word-spacing:-10.508380px;}
.ws3_c00216{word-spacing:-4.285714px;}
.ws6_c00216{word-spacing:-2.157593px;}
.ws0_c00216{word-spacing:-1.929936px;}
.ws9_c00216{word-spacing:0.000000px;}
.ws1_c00216{word-spacing:8.801792px;}
.ws7_c00216{word-spacing:22.142857px;}
.ws8_c00216{word-spacing:26.428954px;}
.ws4_c00216{word-spacing:26.634146px;}
.fc0_c00216{color:transparent;}
.fs8_c00216{font-size:18.000000px;}
.fs6_c00216{font-size:30.000000px;}
.fs7_c00216{font-size:42.000000px;}
.fs1_c00216{font-size:48.000000px;}
.fs5_c00216{font-size:54.000000px;}
.fs4_c00216{font-size:60.000000px;}
.fs3_c00216{font-size:66.000000px;}
.fs2_c00216{font-size:72.000000px;}
.fs0_c00216{font-size:78.000000px;}
.y0_c00216{bottom:0.000000px;}
.y68_c00216{bottom:172.800000px;}
.y6b_c00216{bottom:189.000000px;}
.y67_c00216{bottom:189.450000px;}
.y33_c00216{bottom:190.200000px;}
.y69_c00216{bottom:203.700000px;}
.y66_c00216{bottom:204.150000px;}
.y32_c00216{bottom:204.900000px;}
.y6c_c00216{bottom:217.500000px;}
.y65_c00216{bottom:218.550000px;}
.y31_c00216{bottom:219.150000px;}
.y6a_c00216{bottom:231.900000px;}
.y64_c00216{bottom:232.650000px;}
.y30_c00216{bottom:233.250000px;}
.y63_c00216{bottom:247.050000px;}
.y2f_c00216{bottom:247.650000px;}
.y2e_c00216{bottom:261.750000px;}
.y62_c00216{bottom:263.550000px;}
.y2d_c00216{bottom:276.450000px;}
.y61_c00216{bottom:285.600000px;}
.y60_c00216{bottom:303.900000px;}
.y5f_c00216{bottom:322.200000px;}
.y2c_c00216{bottom:322.500000px;}
.y5e_c00216{bottom:339.900000px;}
.y2b_c00216{bottom:340.500000px;}
.y2a_c00216{bottom:358.200000px;}
.y5d_c00216{bottom:361.800000px;}
.y29_c00216{bottom:380.550000px;}
.y5c_c00216{bottom:392.400000px;}
.y28_c00216{bottom:402.450000px;}
.y5b_c00216{bottom:413.700000px;}
.y27_c00216{bottom:424.800000px;}
.y5a_c00216{bottom:439.200000px;}
.y26_c00216{bottom:446.550000px;}
.y59_c00216{bottom:461.100000px;}
.y25_c00216{bottom:464.250000px;}
.y58_c00216{bottom:479.850000px;}
.y24_c00216{bottom:482.250000px;}
.y57_c00216{bottom:497.550000px;}
.y23_c00216{bottom:499.950000px;}
.y56_c00216{bottom:515.550000px;}
.y22_c00216{bottom:517.950000px;}
.y55_c00216{bottom:532.800000px;}
.y21_c00216{bottom:535.650000px;}
.y54_c00216{bottom:550.800000px;}
.y20_c00216{bottom:553.650000px;}
.y1f_c00216{bottom:571.050000px;}
.y53_c00216{bottom:577.200000px;}
.y1e_c00216{bottom:588.750000px;}
.y52_c00216{bottom:594.900000px;}
.y1d_c00216{bottom:606.750000px;}
.y51_c00216{bottom:612.600000px;}
.y1c_c00216{bottom:624.450000px;}
.y50_c00216{bottom:630.300000px;}
.y1b_c00216{bottom:642.450000px;}
.y4f_c00216{bottom:648.000000px;}
.y1a_c00216{bottom:660.150000px;}
.y4e_c00216{bottom:666.000000px;}
.y19_c00216{bottom:677.850000px;}
.y4d_c00216{bottom:684.000000px;}
.y18_c00216{bottom:695.550000px;}
.y4c_c00216{bottom:701.250000px;}
.y17_c00216{bottom:713.550000px;}
.y4b_c00216{bottom:718.950000px;}
.y16_c00216{bottom:733.650000px;}
.y4a_c00216{bottom:736.950000px;}
.y15_c00216{bottom:748.050000px;}
.y49_c00216{bottom:754.200000px;}
.y48_c00216{bottom:772.200000px;}
.y14_c00216{bottom:772.350000px;}
.y47_c00216{bottom:789.300000px;}
.y13_c00216{bottom:790.050000px;}
.y46_c00216{bottom:807.300000px;}
.y12_c00216{bottom:808.050000px;}
.y45_c00216{bottom:825.000000px;}
.y11_c00216{bottom:825.750000px;}
.y44_c00216{bottom:842.700000px;}
.y10_c00216{bottom:843.450000px;}
.y43_c00216{bottom:860.700000px;}
.yf_c00216{bottom:865.500000px;}
.y42_c00216{bottom:877.950000px;}
.ye_c00216{bottom:883.200000px;}
.y41_c00216{bottom:895.950000px;}
.yd_c00216{bottom:901.500000px;}
.y40_c00216{bottom:913.950000px;}
.yc_c00216{bottom:922.650000px;}
.y3f_c00216{bottom:931.650000px;}
.yb_c00216{bottom:940.650000px;}
.y3e_c00216{bottom:955.800000px;}
.ya_c00216{bottom:966.900000px;}
.y3d_c00216{bottom:972.000000px;}
.y9_c00216{bottom:985.050000px;}
.y3c_c00216{bottom:985.650000px;}
.y3b_c00216{bottom:999.000000px;}
.y8_c00216{bottom:1002.300000px;}
.y3a_c00216{bottom:1014.150000px;}
.y7_c00216{bottom:1024.500000px;}
.y39_c00216{bottom:1028.850000px;}
.y6_c00216{bottom:1042.200000px;}
.y38_c00216{bottom:1047.150000px;}
.y5_c00216{bottom:1059.900000px;}
.y37_c00216{bottom:1065.150000px;}
.y4_c00216{bottom:1077.900000px;}
.y36_c00216{bottom:1082.850000px;}
.y3_c00216{bottom:1099.800000px;}
.y35_c00216{bottom:1100.550000px;}
.y2_c00216{bottom:1117.500000px;}
.y34_c00216{bottom:1118.550000px;}
.y1_c00216{bottom:1144.800000px;}
.h9_c00216{height:18.000000px;}
.h7_c00216{height:30.000000px;}
.h8_c00216{height:42.000000px;}
.h2_c00216{height:48.000000px;}
.h6_c00216{height:54.000000px;}
.h5_c00216{height:60.000000px;}
.h4_c00216{height:66.000000px;}
.h3_c00216{height:72.000000px;}
.h1_c00216{height:78.000000px;}
.h0_c00216{height:1269.000000px;}
.w1_c00216{width:963.000000px;}
.w0_c00216{width:963.359985px;}
.x0_c00216{left:0.000000px;}
.xe_c00216{left:87.150000px;}
.x43_c00216{left:88.950000px;}
.x33_c00216{left:90.300000px;}
.x8e_c00216{left:91.500000px;}
.x92_c00216{left:92.700000px;}
.xa5_c00216{left:93.750000px;}
.x4c_c00216{left:103.500000px;}
.x3_c00216{left:105.450000px;}
.x52_c00216{left:107.100000px;}
.x65_c00216{left:108.300000px;}
.x80_c00216{left:109.350000px;}
.x96_c00216{left:112.200000px;}
.x5b_c00216{left:118.500000px;}
.x1c_c00216{left:123.600000px;}
.x9d_c00216{left:125.250000px;}
.x8a_c00216{left:127.650000px;}
.x3b_c00216{left:129.450000px;}
.x9b_c00216{left:130.500000px;}
.x44_c00216{left:131.850000px;}
.xa2_c00216{left:133.500000px;}
.x7f_c00216{left:135.300000px;}
.x8b_c00216{left:136.950000px;}
.x66_c00216{left:138.900000px;}
.x5c_c00216{left:140.400000px;}
.x46_c00216{left:142.800000px;}
.xf_c00216{left:144.750000px;}
.x2b_c00216{left:146.550000px;}
.x3c_c00216{left:149.250000px;}
.x53_c00216{left:151.050000px;}
.x97_c00216{left:152.700000px;}
.xb_c00216{left:153.750000px;}
.x72_c00216{left:154.950000px;}
.x57_c00216{left:156.750000px;}
.x5d_c00216{left:158.100000px;}
.x25_c00216{left:159.150000px;}
.x90_c00216{left:160.350000px;}
.x15_c00216{left:161.400000px;}
.x1d_c00216{left:163.500000px;}
.x78_c00216{left:164.550000px;}
.x4d_c00216{left:166.500000px;}
.x4_c00216{left:168.150000px;}
.x10_c00216{left:171.000000px;}
.x5e_c00216{left:172.500000px;}
.x34_c00216{left:174.150000px;}
.x62_c00216{left:175.650000px;}
.x47_c00216{left:177.000000px;}
.x8d_c00216{left:179.250000px;}
.x3d_c00216{left:180.900000px;}
.x9e_c00216{left:182.100000px;}
.x91_c00216{left:183.750000px;}
.x16_c00216{left:184.800000px;}
.x73_c00216{left:185.850000px;}
.x26_c00216{left:191.250000px;}
.x5_c00216{left:193.050000px;}
.x81_c00216{left:194.250000px;}
.x11_c00216{left:196.200000px;}
.x1e_c00216{left:199.800000px;}
.x54_c00216{left:204.300000px;}
.x3f_c00216{left:208.650000px;}
.x58_c00216{left:210.000000px;}
.x59_c00216{left:213.900000px;}
.x21_c00216{left:216.600000px;}
.x2c_c00216{left:219.000000px;}
.x6_c00216{left:221.100000px;}
.x67_c00216{left:224.550000px;}
.x63_c00216{left:225.750000px;}
.xc_c00216{left:227.550000px;}
.x4e_c00216{left:229.800000px;}
.x45_c00216{left:233.400000px;}
.x35_c00216{left:234.600000px;}
.x6b_c00216{left:237.000000px;}
.x87_c00216{left:240.750000px;}
.x27_c00216{left:242.700000px;}
.x79_c00216{left:244.800000px;}
.x17_c00216{left:248.550000px;}
.x12_c00216{left:250.200000px;}
.x7e_c00216{left:251.550000px;}
.x5a_c00216{left:252.750000px;}
.x1f_c00216{left:255.600000px;}
.x5f_c00216{left:256.800000px;}
.x2d_c00216{left:257.850000px;}
.x48_c00216{left:260.100000px;}
.x74_c00216{left:261.450000px;}
.xd_c00216{left:262.500000px;}
.x6a_c00216{left:264.000000px;}
.x22_c00216{left:265.200000px;}
.x18_c00216{left:266.850000px;}
.x2e_c00216{left:267.900000px;}
.x7a_c00216{left:269.250000px;}
.x84_c00216{left:273.750000px;}
.x49_c00216{left:274.800000px;}
.x9c_c00216{left:279.150000px;}
.x6c_c00216{left:280.500000px;}
.x7_c00216{left:281.550000px;}
.x60_c00216{left:283.800000px;}
.x37_c00216{left:286.050000px;}
.x68_c00216{left:287.550000px;}
.x82_c00216{left:288.600000px;}
.x6d_c00216{left:289.800000px;}
.xa3_c00216{left:292.950000px;}
.x23_c00216{left:294.000000px;}
.x28_c00216{left:296.700000px;}
.x61_c00216{left:300.750000px;}
.x4f_c00216{left:302.250000px;}
.x55_c00216{left:305.100000px;}
.x8_c00216{left:307.050000px;}
.x75_c00216{left:308.850000px;}
.x4a_c00216{left:310.800000px;}
.x69_c00216{left:312.750000px;}
.x8f_c00216{left:314.100000px;}
.x56_c00216{left:315.900000px;}
.x38_c00216{left:316.950000px;}
.x40_c00216{left:318.600000px;}
.x2f_c00216{left:320.100000px;}
.x29_c00216{left:321.900000px;}
.x19_c00216{left:324.750000px;}
.x3e_c00216{left:326.400000px;}
.x1_c00216{left:329.100000px;}
.x98_c00216{left:330.600000px;}
.x93_c00216{left:332.700000px;}
.x24_c00216{left:335.100000px;}
.x30_c00216{left:337.050000px;}
.x7c_c00216{left:339.000000px;}
.x50_c00216{left:340.650000px;}
.x13_c00216{left:342.000000px;}
.x6e_c00216{left:343.350000px;}
.x76_c00216{left:345.600000px;}
.x20_c00216{left:347.700000px;}
.xa0_c00216{left:349.500000px;}
.x8c_c00216{left:351.300000px;}
.xa4_c00216{left:352.350000px;}
.x70_c00216{left:355.050000px;}
.x31_c00216{left:358.350000px;}
.x9_c00216{left:360.000000px;}
.x14_c00216{left:361.500000px;}
.x7b_c00216{left:362.850000px;}
.x88_c00216{left:364.650000px;}
.x77_c00216{left:366.450000px;}
.x1a_c00216{left:367.650000px;}
.x83_c00216{left:369.150000px;}
.x99_c00216{left:370.950000px;}
.x41_c00216{left:372.600000px;}
.x39_c00216{left:374.250000px;}
.x51_c00216{left:376.350000px;}
.x7d_c00216{left:377.550000px;}
.x95_c00216{left:378.900000px;}
.xa1_c00216{left:380.400000px;}
.x64_c00216{left:381.600000px;}
.x94_c00216{left:383.850000px;}
.x36_c00216{left:385.500000px;}
.x2a_c00216{left:387.450000px;}
.x86_c00216{left:389.400000px;}
.x85_c00216{left:390.600000px;}
.x1b_c00216{left:392.550000px;}
.x9f_c00216{left:394.500000px;}
.x6f_c00216{left:396.300000px;}
.x3a_c00216{left:398.700000px;}
.x89_c00216{left:400.200000px;}
.x71_c00216{left:402.150000px;}
.x42_c00216{left:404.250000px;}
.xa_c00216{left:407.550000px;}
.x32_c00216{left:408.750000px;}
.x4b_c00216{left:414.150000px;}
.x9a_c00216{left:417.750000px;}
.xc1_c00216{left:443.550000px;}
.xa6_c00216{left:444.600000px;}
.x132_c00216{left:446.400000px;}
.x101_c00216{left:447.900000px;}
.x135_c00216{left:448.950000px;}
.xc8_c00216{left:457.050000px;}
.xbd_c00216{left:459.150000px;}
.xad_c00216{left:460.950000px;}
.xf5_c00216{left:462.000000px;}
.x116_c00216{left:463.350000px;}
.x104_c00216{left:464.700000px;}
.xce_c00216{left:471.600000px;}
.x133_c00216{left:474.150000px;}
.x144_c00216{left:477.750000px;}
.xfc_c00216{left:479.700000px;}
.x105_c00216{left:482.700000px;}
.x138_c00216{left:483.900000px;}
.x11e_c00216{left:485.850000px;}
.xb7_c00216{left:487.050000px;}
.x136_c00216{left:489.300000px;}
.xa7_c00216{left:490.350000px;}
.xcf_c00216{left:493.950000px;}
.x13f_c00216{left:495.300000px;}
.xbe_c00216{left:496.650000px;}
.xf1_c00216{left:499.050000px;}
.xe6_c00216{left:500.250000px;}
.x11c_c00216{left:501.600000px;}
.xae_c00216{left:503.100000px;}
.xc2_c00216{left:505.800000px;}
.x128_c00216{left:507.300000px;}
.x141_c00216{left:508.350000px;}
.xd0_c00216{left:511.950000px;}
.xe0_c00216{left:513.300000px;}
.x145_c00216{left:515.850000px;}
.x10d_c00216{left:516.900000px;}
.x12d_c00216{left:520.050000px;}
.xb8_c00216{left:522.000000px;}
.xe7_c00216{left:524.400000px;}
.xd1_c00216{left:527.100000px;}
.xda_c00216{left:529.200000px;}
.xfd_c00216{left:530.550000px;}
.xbf_c00216{left:532.950000px;}
.x113_c00216{left:534.300000px;}
.x129_c00216{left:535.800000px;}
.xf2_c00216{left:538.350000px;}
.x131_c00216{left:540.150000px;}
.x12e_c00216{left:541.650000px;}
.xd7_c00216{left:543.600000px;}
.x13a_c00216{left:545.400000px;}
.x124_c00216{left:546.600000px;}
.x10e_c00216{left:550.800000px;}
.xc9_c00216{left:553.500000px;}
.xea_c00216{left:555.150000px;}
.xe1_c00216{left:556.800000px;}
.xa8_c00216{left:558.000000px;}
.xf6_c00216{left:559.800000px;}
.xd2_c00216{left:562.050000px;}
.xc0_c00216{left:564.000000px;}
.xf9_c00216{left:565.350000px;}
.xaf_c00216{left:567.900000px;}
.x123_c00216{left:570.000000px;}
.x108_c00216{left:572.250000px;}
.x118_c00216{left:574.650000px;}
.xef_c00216{left:576.300000px;}
.x114_c00216{left:577.800000px;}
.x142_c00216{left:580.350000px;}
.x12a_c00216{left:581.550000px;}
.xfe_c00216{left:583.800000px;}
.xb0_c00216{left:585.900000px;}
.x102_c00216{left:588.600000px;}
.xdb_c00216{left:590.100000px;}
.x13c_c00216{left:592.200000px;}
.xfa_c00216{left:593.850000px;}
.x143_c00216{left:595.800000px;}
.xd8_c00216{left:597.150000px;}
.x137_c00216{left:598.350000px;}
.xf3_c00216{left:599.850000px;}
.x11f_c00216{left:601.050000px;}
.xe8_c00216{left:603.900000px;}
.x109_c00216{left:605.700000px;}
.xa9_c00216{left:608.400000px;}
.xff_c00216{left:610.800000px;}
.xe2_c00216{left:614.400000px;}
.x12f_c00216{left:616.350000px;}
.x106_c00216{left:617.700000px;}
.x134_c00216{left:619.200000px;}
.x119_c00216{left:620.400000px;}
.xd3_c00216{left:622.950000px;}
.xb1_c00216{left:628.050000px;}
.xeb_c00216{left:630.300000px;}
.xe3_c00216{left:631.650000px;}
.x100_c00216{left:634.500000px;}
.x10a_c00216{left:635.550000px;}
.xc3_c00216{left:636.750000px;}
.x10f_c00216{left:637.950000px;}
.xb2_c00216{left:640.350000px;}
.x126_c00216{left:641.850000px;}
.x107_c00216{left:642.900000px;}
.xb9_c00216{left:645.600000px;}
.xaa_c00216{left:648.300000px;}
.xb4_c00216{left:650.850000px;}
.x140_c00216{left:653.550000px;}
.xd9_c00216{left:654.750000px;}
.x110_c00216{left:656.250000px;}
.xba_c00216{left:658.950000px;}
.xec_c00216{left:660.900000px;}
.xdc_c00216{left:662.100000px;}
.x125_c00216{left:664.350000px;}
.x12b_c00216{left:665.850000px;}
.x11a_c00216{left:667.950000px;}
.xf7_c00216{left:669.600000px;}
.xd4_c00216{left:671.550000px;}
.xf4_c00216{left:673.350000px;}
.x10b_c00216{left:676.650000px;}
.xbb_c00216{left:679.800000px;}
.xed_c00216{left:681.450000px;}
.xc4_c00216{left:682.800000px;}
.x139_c00216{left:685.050000px;}
.xb5_c00216{left:688.350000px;}
.xca_c00216{left:690.450000px;}
.x120_c00216{left:691.650000px;}
.xe4_c00216{left:693.600000px;}
.xdd_c00216{left:694.800000px;}
.x12c_c00216{left:697.500000px;}
.xc5_c00216{left:699.300000px;}
.xb6_c00216{left:700.950000px;}
.x127_c00216{left:702.000000px;}
.x13d_c00216{left:703.350000px;}
.x111_c00216{left:705.150000px;}
.xab_c00216{left:708.000000px;}
.xd5_c00216{left:709.200000px;}
.xb3_c00216{left:710.250000px;}
.xcb_c00216{left:711.300000px;}
.xbc_c00216{left:712.950000px;}
.x13b_c00216{left:714.300000px;}
.x103_c00216{left:715.650000px;}
.x10c_c00216{left:717.300000px;}
.xf8_c00216{left:722.100000px;}
.x112_c00216{left:723.900000px;}
.x115_c00216{left:724.950000px;}
.xac_c00216{left:728.850000px;}
.xc6_c00216{left:730.650000px;}
.xd6_c00216{left:732.300000px;}
.xe9_c00216{left:734.850000px;}
.x130_c00216{left:736.050000px;}
.xcc_c00216{left:738.300000px;}
.xde_c00216{left:740.100000px;}
.x11d_c00216{left:741.750000px;}
.x11b_c00216{left:743.250000px;}
.x121_c00216{left:746.400000px;}
.xe5_c00216{left:748.650000px;}
.xee_c00216{left:751.650000px;}
.x2_c00216{left:753.600000px;}
.xfb_c00216{left:760.950000px;}
.xf0_c00216{left:762.450000px;}
.xc7_c00216{left:764.550000px;}
.xcd_c00216{left:766.350000px;}
.x13e_c00216{left:767.400000px;}
.xdf_c00216{left:769.650000px;}
.x122_c00216{left:770.850000px;}
.x117_c00216{left:777.300000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws5_c00216{word-spacing:-11.625811pt;}
.ws2_c00216{word-spacing:-9.340782pt;}
.ws3_c00216{word-spacing:-3.809524pt;}
.ws6_c00216{word-spacing:-1.917861pt;}
.ws0_c00216{word-spacing:-1.715499pt;}
.ws9_c00216{word-spacing:0.000000pt;}
.ws1_c00216{word-spacing:7.823815pt;}
.ws7_c00216{word-spacing:19.682540pt;}
.ws8_c00216{word-spacing:23.492404pt;}
.ws4_c00216{word-spacing:23.674797pt;}
.fs8_c00216{font-size:16.000000pt;}
.fs6_c00216{font-size:26.666667pt;}
.fs7_c00216{font-size:37.333333pt;}
.fs1_c00216{font-size:42.666667pt;}
.fs5_c00216{font-size:48.000000pt;}
.fs4_c00216{font-size:53.333333pt;}
.fs3_c00216{font-size:58.666667pt;}
.fs2_c00216{font-size:64.000000pt;}
.fs0_c00216{font-size:69.333333pt;}
.y0_c00216{bottom:0.000000pt;}
.y68_c00216{bottom:153.600000pt;}
.y6b_c00216{bottom:168.000000pt;}
.y67_c00216{bottom:168.400000pt;}
.y33_c00216{bottom:169.066667pt;}
.y69_c00216{bottom:181.066667pt;}
.y66_c00216{bottom:181.466667pt;}
.y32_c00216{bottom:182.133333pt;}
.y6c_c00216{bottom:193.333333pt;}
.y65_c00216{bottom:194.266667pt;}
.y31_c00216{bottom:194.800000pt;}
.y6a_c00216{bottom:206.133333pt;}
.y64_c00216{bottom:206.800000pt;}
.y30_c00216{bottom:207.333333pt;}
.y63_c00216{bottom:219.600000pt;}
.y2f_c00216{bottom:220.133333pt;}
.y2e_c00216{bottom:232.666667pt;}
.y62_c00216{bottom:234.266667pt;}
.y2d_c00216{bottom:245.733333pt;}
.y61_c00216{bottom:253.866667pt;}
.y60_c00216{bottom:270.133333pt;}
.y5f_c00216{bottom:286.400000pt;}
.y2c_c00216{bottom:286.666667pt;}
.y5e_c00216{bottom:302.133333pt;}
.y2b_c00216{bottom:302.666667pt;}
.y2a_c00216{bottom:318.400000pt;}
.y5d_c00216{bottom:321.600000pt;}
.y29_c00216{bottom:338.266667pt;}
.y5c_c00216{bottom:348.800000pt;}
.y28_c00216{bottom:357.733333pt;}
.y5b_c00216{bottom:367.733333pt;}
.y27_c00216{bottom:377.600000pt;}
.y5a_c00216{bottom:390.400000pt;}
.y26_c00216{bottom:396.933333pt;}
.y59_c00216{bottom:409.866667pt;}
.y25_c00216{bottom:412.666667pt;}
.y58_c00216{bottom:426.533333pt;}
.y24_c00216{bottom:428.666667pt;}
.y57_c00216{bottom:442.266667pt;}
.y23_c00216{bottom:444.400000pt;}
.y56_c00216{bottom:458.266667pt;}
.y22_c00216{bottom:460.400000pt;}
.y55_c00216{bottom:473.600000pt;}
.y21_c00216{bottom:476.133333pt;}
.y54_c00216{bottom:489.600000pt;}
.y20_c00216{bottom:492.133333pt;}
.y1f_c00216{bottom:507.600000pt;}
.y53_c00216{bottom:513.066667pt;}
.y1e_c00216{bottom:523.333333pt;}
.y52_c00216{bottom:528.800000pt;}
.y1d_c00216{bottom:539.333333pt;}
.y51_c00216{bottom:544.533333pt;}
.y1c_c00216{bottom:555.066667pt;}
.y50_c00216{bottom:560.266667pt;}
.y1b_c00216{bottom:571.066667pt;}
.y4f_c00216{bottom:576.000000pt;}
.y1a_c00216{bottom:586.800000pt;}
.y4e_c00216{bottom:592.000000pt;}
.y19_c00216{bottom:602.533333pt;}
.y4d_c00216{bottom:608.000000pt;}
.y18_c00216{bottom:618.266667pt;}
.y4c_c00216{bottom:623.333333pt;}
.y17_c00216{bottom:634.266667pt;}
.y4b_c00216{bottom:639.066667pt;}
.y16_c00216{bottom:652.133333pt;}
.y4a_c00216{bottom:655.066667pt;}
.y15_c00216{bottom:664.933333pt;}
.y49_c00216{bottom:670.400000pt;}
.y48_c00216{bottom:686.400000pt;}
.y14_c00216{bottom:686.533333pt;}
.y47_c00216{bottom:701.600000pt;}
.y13_c00216{bottom:702.266667pt;}
.y46_c00216{bottom:717.600000pt;}
.y12_c00216{bottom:718.266667pt;}
.y45_c00216{bottom:733.333333pt;}
.y11_c00216{bottom:734.000000pt;}
.y44_c00216{bottom:749.066667pt;}
.y10_c00216{bottom:749.733333pt;}
.y43_c00216{bottom:765.066667pt;}
.yf_c00216{bottom:769.333333pt;}
.y42_c00216{bottom:780.400000pt;}
.ye_c00216{bottom:785.066667pt;}
.y41_c00216{bottom:796.400000pt;}
.yd_c00216{bottom:801.333333pt;}
.y40_c00216{bottom:812.400000pt;}
.yc_c00216{bottom:820.133333pt;}
.y3f_c00216{bottom:828.133333pt;}
.yb_c00216{bottom:836.133333pt;}
.y3e_c00216{bottom:849.600000pt;}
.ya_c00216{bottom:859.466667pt;}
.y3d_c00216{bottom:864.000000pt;}
.y9_c00216{bottom:875.600000pt;}
.y3c_c00216{bottom:876.133333pt;}
.y3b_c00216{bottom:888.000000pt;}
.y8_c00216{bottom:890.933333pt;}
.y3a_c00216{bottom:901.466667pt;}
.y7_c00216{bottom:910.666667pt;}
.y39_c00216{bottom:914.533333pt;}
.y6_c00216{bottom:926.400000pt;}
.y38_c00216{bottom:930.800000pt;}
.y5_c00216{bottom:942.133333pt;}
.y37_c00216{bottom:946.800000pt;}
.y4_c00216{bottom:958.133333pt;}
.y36_c00216{bottom:962.533333pt;}
.y3_c00216{bottom:977.600000pt;}
.y35_c00216{bottom:978.266667pt;}
.y2_c00216{bottom:993.333333pt;}
.y34_c00216{bottom:994.266667pt;}
.y1_c00216{bottom:1017.600000pt;}
.h9_c00216{height:16.000000pt;}
.h7_c00216{height:26.666667pt;}
.h8_c00216{height:37.333333pt;}
.h2_c00216{height:42.666667pt;}
.h6_c00216{height:48.000000pt;}
.h5_c00216{height:53.333333pt;}
.h4_c00216{height:58.666667pt;}
.h3_c00216{height:64.000000pt;}
.h1_c00216{height:69.333333pt;}
.h0_c00216{height:1128.000000pt;}
.w1_c00216{width:856.000000pt;}
.w0_c00216{width:856.319987pt;}
.x0_c00216{left:0.000000pt;}
.xe_c00216{left:77.466667pt;}
.x43_c00216{left:79.066667pt;}
.x33_c00216{left:80.266667pt;}
.x8e_c00216{left:81.333333pt;}
.x92_c00216{left:82.400000pt;}
.xa5_c00216{left:83.333333pt;}
.x4c_c00216{left:92.000000pt;}
.x3_c00216{left:93.733333pt;}
.x52_c00216{left:95.200000pt;}
.x65_c00216{left:96.266667pt;}
.x80_c00216{left:97.200000pt;}
.x96_c00216{left:99.733333pt;}
.x5b_c00216{left:105.333333pt;}
.x1c_c00216{left:109.866667pt;}
.x9d_c00216{left:111.333333pt;}
.x8a_c00216{left:113.466667pt;}
.x3b_c00216{left:115.066667pt;}
.x9b_c00216{left:116.000000pt;}
.x44_c00216{left:117.200000pt;}
.xa2_c00216{left:118.666667pt;}
.x7f_c00216{left:120.266667pt;}
.x8b_c00216{left:121.733333pt;}
.x66_c00216{left:123.466667pt;}
.x5c_c00216{left:124.800000pt;}
.x46_c00216{left:126.933333pt;}
.xf_c00216{left:128.666667pt;}
.x2b_c00216{left:130.266667pt;}
.x3c_c00216{left:132.666667pt;}
.x53_c00216{left:134.266667pt;}
.x97_c00216{left:135.733333pt;}
.xb_c00216{left:136.666667pt;}
.x72_c00216{left:137.733333pt;}
.x57_c00216{left:139.333333pt;}
.x5d_c00216{left:140.533333pt;}
.x25_c00216{left:141.466667pt;}
.x90_c00216{left:142.533333pt;}
.x15_c00216{left:143.466667pt;}
.x1d_c00216{left:145.333333pt;}
.x78_c00216{left:146.266667pt;}
.x4d_c00216{left:148.000000pt;}
.x4_c00216{left:149.466667pt;}
.x10_c00216{left:152.000000pt;}
.x5e_c00216{left:153.333333pt;}
.x34_c00216{left:154.800000pt;}
.x62_c00216{left:156.133333pt;}
.x47_c00216{left:157.333333pt;}
.x8d_c00216{left:159.333333pt;}
.x3d_c00216{left:160.800000pt;}
.x9e_c00216{left:161.866667pt;}
.x91_c00216{left:163.333333pt;}
.x16_c00216{left:164.266667pt;}
.x73_c00216{left:165.200000pt;}
.x26_c00216{left:170.000000pt;}
.x5_c00216{left:171.600000pt;}
.x81_c00216{left:172.666667pt;}
.x11_c00216{left:174.400000pt;}
.x1e_c00216{left:177.600000pt;}
.x54_c00216{left:181.600000pt;}
.x3f_c00216{left:185.466667pt;}
.x58_c00216{left:186.666667pt;}
.x59_c00216{left:190.133333pt;}
.x21_c00216{left:192.533333pt;}
.x2c_c00216{left:194.666667pt;}
.x6_c00216{left:196.533333pt;}
.x67_c00216{left:199.600000pt;}
.x63_c00216{left:200.666667pt;}
.xc_c00216{left:202.266667pt;}
.x4e_c00216{left:204.266667pt;}
.x45_c00216{left:207.466667pt;}
.x35_c00216{left:208.533333pt;}
.x6b_c00216{left:210.666667pt;}
.x87_c00216{left:214.000000pt;}
.x27_c00216{left:215.733333pt;}
.x79_c00216{left:217.600000pt;}
.x17_c00216{left:220.933333pt;}
.x12_c00216{left:222.400000pt;}
.x7e_c00216{left:223.600000pt;}
.x5a_c00216{left:224.666667pt;}
.x1f_c00216{left:227.200000pt;}
.x5f_c00216{left:228.266667pt;}
.x2d_c00216{left:229.200000pt;}
.x48_c00216{left:231.200000pt;}
.x74_c00216{left:232.400000pt;}
.xd_c00216{left:233.333333pt;}
.x6a_c00216{left:234.666667pt;}
.x22_c00216{left:235.733333pt;}
.x18_c00216{left:237.200000pt;}
.x2e_c00216{left:238.133333pt;}
.x7a_c00216{left:239.333333pt;}
.x84_c00216{left:243.333333pt;}
.x49_c00216{left:244.266667pt;}
.x9c_c00216{left:248.133333pt;}
.x6c_c00216{left:249.333333pt;}
.x7_c00216{left:250.266667pt;}
.x60_c00216{left:252.266667pt;}
.x37_c00216{left:254.266667pt;}
.x68_c00216{left:255.600000pt;}
.x82_c00216{left:256.533333pt;}
.x6d_c00216{left:257.600000pt;}
.xa3_c00216{left:260.400000pt;}
.x23_c00216{left:261.333333pt;}
.x28_c00216{left:263.733333pt;}
.x61_c00216{left:267.333333pt;}
.x4f_c00216{left:268.666667pt;}
.x55_c00216{left:271.200000pt;}
.x8_c00216{left:272.933333pt;}
.x75_c00216{left:274.533333pt;}
.x4a_c00216{left:276.266667pt;}
.x69_c00216{left:278.000000pt;}
.x8f_c00216{left:279.200000pt;}
.x56_c00216{left:280.800000pt;}
.x38_c00216{left:281.733333pt;}
.x40_c00216{left:283.200000pt;}
.x2f_c00216{left:284.533333pt;}
.x29_c00216{left:286.133333pt;}
.x19_c00216{left:288.666667pt;}
.x3e_c00216{left:290.133333pt;}
.x1_c00216{left:292.533333pt;}
.x98_c00216{left:293.866667pt;}
.x93_c00216{left:295.733333pt;}
.x24_c00216{left:297.866667pt;}
.x30_c00216{left:299.600000pt;}
.x7c_c00216{left:301.333333pt;}
.x50_c00216{left:302.800000pt;}
.x13_c00216{left:304.000000pt;}
.x6e_c00216{left:305.200000pt;}
.x76_c00216{left:307.200000pt;}
.x20_c00216{left:309.066667pt;}
.xa0_c00216{left:310.666667pt;}
.x8c_c00216{left:312.266667pt;}
.xa4_c00216{left:313.200000pt;}
.x70_c00216{left:315.600000pt;}
.x31_c00216{left:318.533333pt;}
.x9_c00216{left:320.000000pt;}
.x14_c00216{left:321.333333pt;}
.x7b_c00216{left:322.533333pt;}
.x88_c00216{left:324.133333pt;}
.x77_c00216{left:325.733333pt;}
.x1a_c00216{left:326.800000pt;}
.x83_c00216{left:328.133333pt;}
.x99_c00216{left:329.733333pt;}
.x41_c00216{left:331.200000pt;}
.x39_c00216{left:332.666667pt;}
.x51_c00216{left:334.533333pt;}
.x7d_c00216{left:335.600000pt;}
.x95_c00216{left:336.800000pt;}
.xa1_c00216{left:338.133333pt;}
.x64_c00216{left:339.200000pt;}
.x94_c00216{left:341.200000pt;}
.x36_c00216{left:342.666667pt;}
.x2a_c00216{left:344.400000pt;}
.x86_c00216{left:346.133333pt;}
.x85_c00216{left:347.200000pt;}
.x1b_c00216{left:348.933333pt;}
.x9f_c00216{left:350.666667pt;}
.x6f_c00216{left:352.266667pt;}
.x3a_c00216{left:354.400000pt;}
.x89_c00216{left:355.733333pt;}
.x71_c00216{left:357.466667pt;}
.x42_c00216{left:359.333333pt;}
.xa_c00216{left:362.266667pt;}
.x32_c00216{left:363.333333pt;}
.x4b_c00216{left:368.133333pt;}
.x9a_c00216{left:371.333333pt;}
.xc1_c00216{left:394.266667pt;}
.xa6_c00216{left:395.200000pt;}
.x132_c00216{left:396.800000pt;}
.x101_c00216{left:398.133333pt;}
.x135_c00216{left:399.066667pt;}
.xc8_c00216{left:406.266667pt;}
.xbd_c00216{left:408.133333pt;}
.xad_c00216{left:409.733333pt;}
.xf5_c00216{left:410.666667pt;}
.x116_c00216{left:411.866667pt;}
.x104_c00216{left:413.066667pt;}
.xce_c00216{left:419.200000pt;}
.x133_c00216{left:421.466667pt;}
.x144_c00216{left:424.666667pt;}
.xfc_c00216{left:426.400000pt;}
.x105_c00216{left:429.066667pt;}
.x138_c00216{left:430.133333pt;}
.x11e_c00216{left:431.866667pt;}
.xb7_c00216{left:432.933333pt;}
.x136_c00216{left:434.933333pt;}
.xa7_c00216{left:435.866667pt;}
.xcf_c00216{left:439.066667pt;}
.x13f_c00216{left:440.266667pt;}
.xbe_c00216{left:441.466667pt;}
.xf1_c00216{left:443.600000pt;}
.xe6_c00216{left:444.666667pt;}
.x11c_c00216{left:445.866667pt;}
.xae_c00216{left:447.200000pt;}
.xc2_c00216{left:449.600000pt;}
.x128_c00216{left:450.933333pt;}
.x141_c00216{left:451.866667pt;}
.xd0_c00216{left:455.066667pt;}
.xe0_c00216{left:456.266667pt;}
.x145_c00216{left:458.533333pt;}
.x10d_c00216{left:459.466667pt;}
.x12d_c00216{left:462.266667pt;}
.xb8_c00216{left:464.000000pt;}
.xe7_c00216{left:466.133333pt;}
.xd1_c00216{left:468.533333pt;}
.xda_c00216{left:470.400000pt;}
.xfd_c00216{left:471.600000pt;}
.xbf_c00216{left:473.733333pt;}
.x113_c00216{left:474.933333pt;}
.x129_c00216{left:476.266667pt;}
.xf2_c00216{left:478.533333pt;}
.x131_c00216{left:480.133333pt;}
.x12e_c00216{left:481.466667pt;}
.xd7_c00216{left:483.200000pt;}
.x13a_c00216{left:484.800000pt;}
.x124_c00216{left:485.866667pt;}
.x10e_c00216{left:489.600000pt;}
.xc9_c00216{left:492.000000pt;}
.xea_c00216{left:493.466667pt;}
.xe1_c00216{left:494.933333pt;}
.xa8_c00216{left:496.000000pt;}
.xf6_c00216{left:497.600000pt;}
.xd2_c00216{left:499.600000pt;}
.xc0_c00216{left:501.333333pt;}
.xf9_c00216{left:502.533333pt;}
.xaf_c00216{left:504.800000pt;}
.x123_c00216{left:506.666667pt;}
.x108_c00216{left:508.666667pt;}
.x118_c00216{left:510.800000pt;}
.xef_c00216{left:512.266667pt;}
.x114_c00216{left:513.600000pt;}
.x142_c00216{left:515.866667pt;}
.x12a_c00216{left:516.933333pt;}
.xfe_c00216{left:518.933333pt;}
.xb0_c00216{left:520.800000pt;}
.x102_c00216{left:523.200000pt;}
.xdb_c00216{left:524.533333pt;}
.x13c_c00216{left:526.400000pt;}
.xfa_c00216{left:527.866667pt;}
.x143_c00216{left:529.600000pt;}
.xd8_c00216{left:530.800000pt;}
.x137_c00216{left:531.866667pt;}
.xf3_c00216{left:533.200000pt;}
.x11f_c00216{left:534.266667pt;}
.xe8_c00216{left:536.800000pt;}
.x109_c00216{left:538.400000pt;}
.xa9_c00216{left:540.800000pt;}
.xff_c00216{left:542.933333pt;}
.xe2_c00216{left:546.133333pt;}
.x12f_c00216{left:547.866667pt;}
.x106_c00216{left:549.066667pt;}
.x134_c00216{left:550.400000pt;}
.x119_c00216{left:551.466667pt;}
.xd3_c00216{left:553.733333pt;}
.xb1_c00216{left:558.266667pt;}
.xeb_c00216{left:560.266667pt;}
.xe3_c00216{left:561.466667pt;}
.x100_c00216{left:564.000000pt;}
.x10a_c00216{left:564.933333pt;}
.xc3_c00216{left:566.000000pt;}
.x10f_c00216{left:567.066667pt;}
.xb2_c00216{left:569.200000pt;}
.x126_c00216{left:570.533333pt;}
.x107_c00216{left:571.466667pt;}
.xb9_c00216{left:573.866667pt;}
.xaa_c00216{left:576.266667pt;}
.xb4_c00216{left:578.533333pt;}
.x140_c00216{left:580.933333pt;}
.xd9_c00216{left:582.000000pt;}
.x110_c00216{left:583.333333pt;}
.xba_c00216{left:585.733333pt;}
.xec_c00216{left:587.466667pt;}
.xdc_c00216{left:588.533333pt;}
.x125_c00216{left:590.533333pt;}
.x12b_c00216{left:591.866667pt;}
.x11a_c00216{left:593.733333pt;}
.xf7_c00216{left:595.200000pt;}
.xd4_c00216{left:596.933333pt;}
.xf4_c00216{left:598.533333pt;}
.x10b_c00216{left:601.466667pt;}
.xbb_c00216{left:604.266667pt;}
.xed_c00216{left:605.733333pt;}
.xc4_c00216{left:606.933333pt;}
.x139_c00216{left:608.933333pt;}
.xb5_c00216{left:611.866667pt;}
.xca_c00216{left:613.733333pt;}
.x120_c00216{left:614.800000pt;}
.xe4_c00216{left:616.533333pt;}
.xdd_c00216{left:617.600000pt;}
.x12c_c00216{left:620.000000pt;}
.xc5_c00216{left:621.600000pt;}
.xb6_c00216{left:623.066667pt;}
.x127_c00216{left:624.000000pt;}
.x13d_c00216{left:625.200000pt;}
.x111_c00216{left:626.800000pt;}
.xab_c00216{left:629.333333pt;}
.xd5_c00216{left:630.400000pt;}
.xb3_c00216{left:631.333333pt;}
.xcb_c00216{left:632.266667pt;}
.xbc_c00216{left:633.733333pt;}
.x13b_c00216{left:634.933333pt;}
.x103_c00216{left:636.133333pt;}
.x10c_c00216{left:637.600000pt;}
.xf8_c00216{left:641.866667pt;}
.x112_c00216{left:643.466667pt;}
.x115_c00216{left:644.400000pt;}
.xac_c00216{left:647.866667pt;}
.xc6_c00216{left:649.466667pt;}
.xd6_c00216{left:650.933333pt;}
.xe9_c00216{left:653.200000pt;}
.x130_c00216{left:654.266667pt;}
.xcc_c00216{left:656.266667pt;}
.xde_c00216{left:657.866667pt;}
.x11d_c00216{left:659.333333pt;}
.x11b_c00216{left:660.666667pt;}
.x121_c00216{left:663.466667pt;}
.xe5_c00216{left:665.466667pt;}
.xee_c00216{left:668.133333pt;}
.x2_c00216{left:669.866667pt;}
.xfb_c00216{left:676.400000pt;}
.xf0_c00216{left:677.733333pt;}
.xc7_c00216{left:679.600000pt;}
.xcd_c00216{left:681.200000pt;}
.x13e_c00216{left:682.133333pt;}
.xdf_c00216{left:684.133333pt;}
.x122_c00216{left:685.200000pt;}
.x117_c00216{left:690.933333pt;}
}





/* 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_c00217 {
    display:none;
  }
  .loading-indicator_c00217.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00217 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_c00217 { 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_c00217" -> "#page-container .classname_c00217")
 */
.pf_c00217 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00217 { /* 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_c00217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00217 { /* 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_c00217 { /* 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_c00217 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00217 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00217 {overflow:visible;}
  }
}
.c_c00217 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00217 { /* 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_c00217:after { /* webkit #35443 */
  content: '';
}
.t_c00217:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00217 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 */
}
.__c00217 { /* 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_c00217 { /* info for Javascript */
  display:none;
}
.l_c00217 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00217 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00217 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00217: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_c00217 {
    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_c00217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00217.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_c00217 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00217;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.000000;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;}
.m9f_c00217{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00217{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00217{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00217{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m12_c00217{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m22_c00217{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m11_c00217{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00217{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m13_c00217{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m74_c00217{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00217{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m97_c00217{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m30_c00217{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00217{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m96_c00217{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m52_c00217{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00217{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00217{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.maf_c00217{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m23_c00217{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m81_c00217{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m49_c00217{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00217{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m80_c00217{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m128_c00217{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00217{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00217{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m93_c00217{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m106_c00217{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00217{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mba_c00217{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00217{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m27_c00217{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7_c00217{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me6_c00217{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00217{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m53_c00217{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m25_c00217{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9_c00217{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00217{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m82_c00217{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m76_c00217{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me2_c00217{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00217{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00217{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m35_c00217{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00217{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc_c00217{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me4_c00217{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m109_c00217{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md0_c00217{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00217{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00217{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mef_c00217{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m41_c00217{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m36_c00217{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00217{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m59_c00217{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m46_c00217{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00217{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.md4_c00217{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mac_c00217{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m29_c00217{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00217{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m108_c00217{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m120_c00217{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00217{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m60_c00217{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00217{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m113_c00217{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00217{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m117_c00217{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.mf_c00217{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00217{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00217{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb_c00217{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.me0_c00217{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m65_c00217{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m122_c00217{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m67_c00217{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m112_c00217{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00217{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m83_c00217{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.med_c00217{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00217{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00217{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00217{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00217{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md8_c00217{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m58_c00217{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m32_c00217{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00217{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00217{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00217{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m95_c00217{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00217{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00217{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.md5_c00217{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m56_c00217{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00217{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00217{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m115_c00217{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m15_c00217{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00217{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m73_c00217{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00217{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m62_c00217{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m90_c00217{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00217{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00217{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00217{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00217{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m57_c00217{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00217{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00217{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00217{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.me_c00217{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m102_c00217{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00217{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00217{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m21_c00217{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00217{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m18_c00217{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m92_c00217{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m77_c00217{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m20_c00217{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m114_c00217{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.maa_c00217{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00217{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.md6_c00217{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me8_c00217{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m10_c00217{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00217{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m72_c00217{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md1_c00217{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m14_c00217{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m118_c00217{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00217{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00217{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00217{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m37_c00217{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00217{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m26_c00217{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m17_c00217{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m63_c00217{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00217{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m123_c00217{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m68_c00217{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00217{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m54_c00217{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m121_c00217{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m33_c00217{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m107_c00217{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00217{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00217{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me9_c00217{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00217{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m66_c00217{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.meb_c00217{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00217{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00217{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00217{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00217{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00217{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m104_c00217{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m100_c00217{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m48_c00217{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00217{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00217{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00217{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00217{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m116_c00217{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m38_c00217{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00217{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00217{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mea_c00217{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m40_c00217{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m78_c00217{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00217{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m47_c00217{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m85_c00217{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00217{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md9_c00217{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m19_c00217{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00217{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00217{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m50_c00217{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md_c00217{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00217{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m89_c00217{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma_c00217{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00217{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m84_c00217{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me3_c00217{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mae_c00217{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00217{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00217{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m24_c00217{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m91_c00217{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00217{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m45_c00217{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00217{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28_c00217{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00217{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00217{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00217{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m101_c00217{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00217{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md7_c00217{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.me7_c00217{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00217{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m16_c00217{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00217{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00217{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00217{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00217{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m119_c00217{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m0_c00217{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md3_c00217{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m34_c00217{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m99_c00217{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00217{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00217{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00217{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mec_c00217{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00217{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00217{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mda_c00217{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m61_c00217{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00217{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00217{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m64_c00217{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mca_c00217{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mee_c00217{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mce_c00217{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m71_c00217{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00217{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m124_c00217{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m88_c00217{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m31_c00217{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m86_c00217{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m94_c00217{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m125_c00217{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mff_c00217{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m103_c00217{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00217{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00217{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me5_c00217{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00217{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m55_c00217{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m44_c00217{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00217{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00217{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md2_c00217{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m42_c00217{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00217{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00217{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m110_c00217{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00217{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me1_c00217{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00217{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00217{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m87_c00217{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00217{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00217{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m75_c00217{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00217{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mab_c00217{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m105_c00217{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m79_c00217{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00217{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m111_c00217{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00217{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00217{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m70_c00217{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00217{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00217{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mad_c00217{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m98_c00217{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m51_c00217{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m69_c00217{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00217{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00217{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mde_c00217{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00217{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00217{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m43_c00217{transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00217{transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);}
.m39_c00217{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00217{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m127_c00217{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.455500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455500,0.000000,0.000000,0.250000,0,0);}
.m126_c00217{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m129_c00217{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls1_c00217{letter-spacing:0.000000px;}
.ls0_c00217{letter-spacing:101.944444px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{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__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00217{word-spacing:-131.944444px;}
.ws4_c00217{word-spacing:-10.138889px;}
.ws11_c00217{word-spacing:-9.104803px;}
.ws7_c00217{word-spacing:-9.076433px;}
.wsc_c00217{word-spacing:-5.714286px;}
.wsd_c00217{word-spacing:-2.837838px;}
.ws12_c00217{word-spacing:-2.187500px;}
.ws13_c00217{word-spacing:0.000000px;}
.ws5_c00217{word-spacing:4.736842px;}
.wsa_c00217{word-spacing:6.750000px;}
.wse_c00217{word-spacing:7.405405px;}
.ws0_c00217{word-spacing:9.019640px;}
.wsf_c00217{word-spacing:9.284024px;}
.ws10_c00217{word-spacing:19.714286px;}
.ws1_c00217{word-spacing:28.426230px;}
.ws3_c00217{word-spacing:32.360656px;}
.ws2_c00217{word-spacing:43.923664px;}
.wsb_c00217{word-spacing:879.801527px;}
.ws9_c00217{word-spacing:1235.833333px;}
.ws8_c00217{word-spacing:1320.357143px;}
._0_c00217{margin-left:-101.944444px;}
.fc0_c00217{color:transparent;}
.fs5_c00217{font-size:30.000000px;}
.fs6_c00217{font-size:36.000000px;}
.fs3_c00217{font-size:54.000000px;}
.fs2_c00217{font-size:60.000000px;}
.fs1_c00217{font-size:66.000000px;}
.fs4_c00217{font-size:72.000000px;}
.fs0_c00217{font-size:78.000000px;}
.y0_c00217{bottom:0.000000px;}
.y53_c00217{bottom:21.300000px;}
.y52_c00217{bottom:124.650000px;}
.y51_c00217{bottom:193.050000px;}
.y50_c00217{bottom:211.050000px;}
.y4f_c00217{bottom:228.750000px;}
.y4e_c00217{bottom:246.450000px;}
.y4d_c00217{bottom:264.150000px;}
.y4c_c00217{bottom:282.150000px;}
.y4b_c00217{bottom:299.850000px;}
.y4a_c00217{bottom:318.150000px;}
.y49_c00217{bottom:335.850000px;}
.y48_c00217{bottom:353.850000px;}
.y47_c00217{bottom:371.100000px;}
.y44_c00217{bottom:380.400000px;}
.y46_c00217{bottom:389.100000px;}
.y43_c00217{bottom:398.400000px;}
.y45_c00217{bottom:407.100000px;}
.y42_c00217{bottom:416.100000px;}
.y41_c00217{bottom:433.800000px;}
.y40_c00217{bottom:452.100000px;}
.y3f_c00217{bottom:470.100000px;}
.y3e_c00217{bottom:487.800000px;}
.y3d_c00217{bottom:505.800000px;}
.y3c_c00217{bottom:523.800000px;}
.y3b_c00217{bottom:541.500000px;}
.y3a_c00217{bottom:559.050000px;}
.y31_c00217{bottom:563.250000px;}
.y39_c00217{bottom:576.750000px;}
.y30_c00217{bottom:581.550000px;}
.y38_c00217{bottom:594.750000px;}
.y2f_c00217{bottom:599.250000px;}
.y37_c00217{bottom:612.000000px;}
.y2e_c00217{bottom:616.950000px;}
.y36_c00217{bottom:630.000000px;}
.y2d_c00217{bottom:634.950000px;}
.y35_c00217{bottom:647.850000px;}
.y2c_c00217{bottom:652.650000px;}
.y34_c00217{bottom:665.550000px;}
.y2b_c00217{bottom:673.500000px;}
.y33_c00217{bottom:683.250000px;}
.y2a_c00217{bottom:687.600000px;}
.y32_c00217{bottom:701.250000px;}
.y29_c00217{bottom:702.000000px;}
.y22_c00217{bottom:719.250000px;}
.y21_c00217{bottom:722.850000px;}
.y20_c00217{bottom:740.550000px;}
.y1f_c00217{bottom:754.950000px;}
.y1e_c00217{bottom:758.100000px;}
.y1d_c00217{bottom:772.500000px;}
.y1c_c00217{bottom:781.200000px;}
.y1b_c00217{bottom:798.150000px;}
.y1a_c00217{bottom:811.800000px;}
.y19_c00217{bottom:816.000000px;}
.y18_c00217{bottom:830.100000px;}
.y17_c00217{bottom:833.850000px;}
.y16_c00217{bottom:855.750000px;}
.y15_c00217{bottom:865.500000px;}
.y14_c00217{bottom:886.500000px;}
.y13_c00217{bottom:900.900000px;}
.y28_c00217{bottom:904.650000px;}
.y12_c00217{bottom:918.600000px;}
.y27_c00217{bottom:922.650000px;}
.y11_c00217{bottom:936.600000px;}
.y26_c00217{bottom:940.350000px;}
.y10_c00217{bottom:954.300000px;}
.y25_c00217{bottom:962.250000px;}
.yf_c00217{bottom:972.300000px;}
.y24_c00217{bottom:980.250000px;}
.ye_c00217{bottom:990.000000px;}
.y23_c00217{bottom:997.950000px;}
.yd_c00217{bottom:1010.100000px;}
.yc_c00217{bottom:1015.950000px;}
.yb_c00217{bottom:1024.200000px;}
.ya_c00217{bottom:1038.300000px;}
.y9_c00217{bottom:1052.700000px;}
.y6_c00217{bottom:1067.400000px;}
.y8_c00217{bottom:1069.500000px;}
.y5_c00217{bottom:1081.500000px;}
.y7_c00217{bottom:1087.200000px;}
.y4_c00217{bottom:1097.700000px;}
.y3_c00217{bottom:1110.000000px;}
.y2_c00217{bottom:1126.500000px;}
.y1_c00217{bottom:1152.750000px;}
.h7_c00217{height:30.000000px;}
.h8_c00217{height:36.000000px;}
.h5_c00217{height:54.000000px;}
.h4_c00217{height:60.000000px;}
.h3_c00217{height:66.000000px;}
.h6_c00217{height:72.000000px;}
.h2_c00217{height:78.000000px;}
.h1_c00217{height:1276.500000px;}
.h0_c00217{height:1276.559967px;}
.w1_c00217{width:963.000000px;}
.w0_c00217{width:963.359985px;}
.x0_c00217{left:0.000000px;}
.xf8_c00217{left:176.400000px;}
.x97_c00217{left:178.650000px;}
.x1_c00217{left:181.050000px;}
.x14d_c00217{left:191.700000px;}
.x10d_c00217{left:193.500000px;}
.x31_c00217{left:194.850000px;}
.xf_c00217{left:196.800000px;}
.x68_c00217{left:198.150000px;}
.x65_c00217{left:199.800000px;}
.x152_c00217{left:202.650000px;}
.x3f_c00217{left:209.100000px;}
.x4_c00217{left:210.300000px;}
.x109_c00217{left:212.400000px;}
.xef_c00217{left:213.450000px;}
.x73_c00217{left:214.650000px;}
.x10e_c00217{left:217.950000px;}
.x13e_c00217{left:219.450000px;}
.x6f_c00217{left:220.650000px;}
.x14f_c00217{left:223.350000px;}
.xf7_c00217{left:225.150000px;}
.x81_c00217{left:227.250000px;}
.xb1_c00217{left:228.600000px;}
.x40_c00217{left:231.000000px;}
.x26_c00217{left:232.500000px;}
.x125_c00217{left:233.700000px;}
.x12b_c00217{left:234.750000px;}
.x79_c00217{left:235.800000px;}
.x69_c00217{left:237.450000px;}
.x10_c00217{left:239.250000px;}
.x90_c00217{left:241.200000px;}
.x118_c00217{left:242.550000px;}
.x7a_c00217{left:244.500000px;}
.x5c_c00217{left:247.650000px;}
.xee_c00217{left:248.700000px;}
.x2b_c00217{left:250.500000px;}
.xfb_c00217{left:251.850000px;}
.x27_c00217{left:253.800000px;}
.xf4_c00217{left:255.300000px;}
.xfe_c00217{left:256.950000px;}
.x12e_c00217{left:258.000000px;}
.x138_c00217{left:261.750000px;}
.x2c_c00217{left:263.400000px;}
.x57_c00217{left:265.650000px;}
.x13f_c00217{left:267.300000px;}
.x82_c00217{left:269.400000px;}
.x41_c00217{left:272.700000px;}
.x74_c00217{left:274.800000px;}
.x11_c00217{left:276.300000px;}
.xff_c00217{left:279.600000px;}
.x95_c00217{left:281.250000px;}
.x49_c00217{left:282.600000px;}
.x128_c00217{left:284.100000px;}
.xb4_c00217{left:285.300000px;}
.x139_c00217{left:286.950000px;}
.x42_c00217{left:288.150000px;}
.x6a_c00217{left:289.650000px;}
.x12_c00217{left:292.800000px;}
.x144_c00217{left:294.600000px;}
.x98_c00217{left:295.650000px;}
.x7b_c00217{left:296.700000px;}
.x60_c00217{left:298.800000px;}
.x150_c00217{left:301.500000px;}
.x5d_c00217{left:304.200000px;}
.x12c_c00217{left:306.450000px;}
.x119_c00217{left:308.100000px;}
.xb2_c00217{left:309.300000px;}
.xbe_c00217{left:310.950000px;}
.x2d_c00217{left:312.000000px;}
.x135_c00217{left:315.600000px;}
.x14b_c00217{left:316.650000px;}
.x96_c00217{left:318.300000px;}
.x4a_c00217{left:320.400000px;}
.x28_c00217{left:322.200000px;}
.xf0_c00217{left:324.600000px;}
.x12f_c00217{left:326.400000px;}
.x70_c00217{left:327.600000px;}
.xf3_c00217{left:328.800000px;}
.x153_c00217{left:330.450000px;}
.xf9_c00217{left:331.500000px;}
.xf1_c00217{left:333.150000px;}
.x6b_c00217{left:334.200000px;}
.x10f_c00217{left:336.450000px;}
.x4b_c00217{left:338.400000px;}
.x145_c00217{left:339.600000px;}
.x75_c00217{left:341.100000px;}
.xf2_c00217{left:342.150000px;}
.x66_c00217{left:344.250000px;}
.x13_c00217{left:347.100000px;}
.x61_c00217{left:348.150000px;}
.xbf_c00217{left:350.550000px;}
.x2e_c00217{left:353.700000px;}
.x29_c00217{left:354.900000px;}
.x115_c00217{left:356.550000px;}
.x7c_c00217{left:357.600000px;}
.x110_c00217{left:358.800000px;}
.x14_c00217{left:361.500000px;}
.x71_c00217{left:363.900000px;}
.x58_c00217{left:366.000000px;}
.x11a_c00217{left:367.800000px;}
.x2f_c00217{left:369.150000px;}
.x4c_c00217{left:370.800000px;}
.x101_c00217{left:371.850000px;}
.xfc_c00217{left:373.500000px;}
.x6c_c00217{left:374.550000px;}
.x15_c00217{left:375.900000px;}
.x2a_c00217{left:378.300000px;}
.x5_c00217{left:381.000000px;}
.x126_c00217{left:382.200000px;}
.x7d_c00217{left:383.550000px;}
.x99_c00217{left:385.350000px;}
.x4d_c00217{left:388.800000px;}
.x16_c00217{left:390.300000px;}
.x129_c00217{left:392.100000px;}
.x59_c00217{left:394.500000px;}
.x12d_c00217{left:395.850000px;}
.x17_c00217{left:397.500000px;}
.xb3_c00217{left:398.850000px;}
.x105_c00217{left:400.350000px;}
.xaa_c00217{left:401.550000px;}
.x18_c00217{left:404.400000px;}
.x6d_c00217{left:405.450000px;}
.x76_c00217{left:407.700000px;}
.x30_c00217{left:408.750000px;}
.x100_c00217{left:412.050000px;}
.xf5_c00217{left:413.400000px;}
.x12a_c00217{left:415.200000px;}
.x2_c00217{left:416.850000px;}
.x19_c00217{left:418.500000px;}
.x127_c00217{left:420.000000px;}
.xc0_c00217{left:422.250000px;}
.x6_c00217{left:423.900000px;}
.x1a_c00217{left:426.000000px;}
.x5a_c00217{left:429.750000px;}
.x11b_c00217{left:431.550000px;}
.x5e_c00217{left:432.750000px;}
.x102_c00217{left:435.900000px;}
.x7e_c00217{left:437.100000px;}
.x83_c00217{left:440.250000px;}
.x140_c00217{left:441.750000px;}
.x48_c00217{left:443.850000px;}
.x1b_c00217{left:445.500000px;}
.xb5_c00217{left:448.050000px;}
.x62_c00217{left:449.250000px;}
.x11c_c00217{left:452.100000px;}
.x141_c00217{left:454.650000px;}
.x130_c00217{left:456.750000px;}
.x10a_c00217{left:457.800000px;}
.x67_c00217{left:459.450000px;}
.x116_c00217{left:461.250000px;}
.x13a_c00217{left:463.350000px;}
.x77_c00217{left:464.550000px;}
.xfd_c00217{left:466.350000px;}
.x7_c00217{left:467.400000px;}
.x5f_c00217{left:468.750000px;}
.x13c_c00217{left:469.950000px;}
.x4e_c00217{left:472.650000px;}
.x1c_c00217{left:474.300000px;}
.xc1_c00217{left:475.950000px;}
.x9a_c00217{left:477.900000px;}
.x5b_c00217{left:481.950000px;}
.x63_c00217{left:483.450000px;}
.x78_c00217{left:485.400000px;}
.x111_c00217{left:487.500000px;}
.xb6_c00217{left:488.700000px;}
.x7f_c00217{left:490.050000px;}
.xf6_c00217{left:491.100000px;}
.x64_c00217{left:493.950000px;}
.x72_c00217{left:499.650000px;}
.x8_c00217{left:500.850000px;}
.x1d_c00217{left:503.100000px;}
.x10b_c00217{left:508.200000px;}
.x6e_c00217{left:511.050000px;}
.xfa_c00217{left:521.850000px;}
.xab_c00217{left:523.650000px;}
.x131_c00217{left:530.550000px;}
.xd9_c00217{left:532.650000px;}
.xac_c00217{left:534.150000px;}
.x84_c00217{left:535.650000px;}
.x154_c00217{left:538.800000px;}
.x142_c00217{left:546.750000px;}
.xb7_c00217{left:548.100000px;}
.xe5_c00217{left:549.450000px;}
.xdc_c00217{left:550.650000px;}
.xa2_c00217{left:551.700000px;}
.x9_c00217{left:553.050000px;}
.x91_c00217{left:554.700000px;}
.x80_c00217{left:561.300000px;}
.x85_c00217{left:567.750000px;}
.x9b_c00217{left:568.950000px;}
.x4f_c00217{left:570.300000px;}
.xe1_c00217{left:574.050000px;}
.x1e_c00217{left:575.400000px;}
.x86_c00217{left:576.450000px;}
.xe6_c00217{left:579.000000px;}
.x52_c00217{left:581.700000px;}
.x14e_c00217{left:583.650000px;}
.xc2_c00217{left:585.000000px;}
.x136_c00217{left:587.850000px;}
.xc9_c00217{left:589.350000px;}
.x32_c00217{left:591.150000px;}
.x132_c00217{left:592.800000px;}
.x13d_c00217{left:594.150000px;}
.xc6_c00217{left:597.600000px;}
.xec_c00217{left:599.850000px;}
.x3a_c00217{left:601.350000px;}
.xc7_c00217{left:603.750000px;}
.xa3_c00217{left:604.950000px;}
.x53_c00217{left:607.200000px;}
.x43_c00217{left:610.050000px;}
.xd3_c00217{left:613.800000px;}
.x87_c00217{left:615.300000px;}
.xda_c00217{left:616.950000px;}
.x33_c00217{left:618.900000px;}
.x149_c00217{left:620.250000px;}
.x155_c00217{left:621.900000px;}
.x9c_c00217{left:623.250000px;}
.xe7_c00217{left:626.100000px;}
.xbd_c00217{left:628.800000px;}
.x112_c00217{left:630.150000px;}
.x1f_c00217{left:631.200000px;}
.xa_c00217{left:633.000000px;}
.xde_c00217{left:636.600000px;}
.x54_c00217{left:637.800000px;}
.xb8_c00217{left:639.600000px;}
.xa4_c00217{left:640.650000px;}
.x103_c00217{left:642.750000px;}
.x34_c00217{left:644.100000px;}
.xe8_c00217{left:645.900000px;}
.x3b_c00217{left:647.100000px;}
.xdd_c00217{left:648.150000px;}
.x9d_c00217{left:649.200000px;}
.xce_c00217{left:652.650000px;}
.xdb_c00217{left:654.450000px;}
.x8a_c00217{left:655.950000px;}
.xb_c00217{left:657.150000px;}
.x106_c00217{left:660.300000px;}
.x92_c00217{left:662.400000px;}
.xd4_c00217{left:664.950000px;}
.x137_c00217{left:666.000000px;}
.x3c_c00217{left:667.950000px;}
.xcf_c00217{left:669.150000px;}
.x20_c00217{left:670.800000px;}
.x107_c00217{left:673.200000px;}
.x151_c00217{left:676.050000px;}
.x55_c00217{left:677.100000px;}
.xa5_c00217{left:678.150000px;}
.xe9_c00217{left:679.350000px;}
.xdf_c00217{left:681.300000px;}
.xe2_c00217{left:682.350000px;}
.xd5_c00217{left:684.000000px;}
.x88_c00217{left:685.800000px;}
.x143_c00217{left:687.150000px;}
.x8b_c00217{left:688.350000px;}
.x156_c00217{left:689.550000px;}
.xad_c00217{left:691.500000px;}
.x10c_c00217{left:693.600000px;}
.x21_c00217{left:695.250000px;}
.xed_c00217{left:698.850000px;}
.x124_c00217{left:699.900000px;}
.x3d_c00217{left:701.100000px;}
.x122_c00217{left:702.300000px;}
.x13b_c00217{left:704.100000px;}
.xcb_c00217{left:705.300000px;}
.x44_c00217{left:707.550000px;}
.x146_c00217{left:709.350000px;}
.x93_c00217{left:710.700000px;}
.xc5_c00217{left:712.800000px;}
.x50_c00217{left:714.000000px;}
.xea_c00217{left:715.050000px;}
.x35_c00217{left:716.850000px;}
.xc3_c00217{left:720.300000px;}
.x22_c00217{left:721.500000px;}
.xe3_c00217{left:722.700000px;}
.xd2_c00217{left:724.350000px;}
.x9e_c00217{left:725.850000px;}
.x36_c00217{left:726.900000px;}
.x8c_c00217{left:730.050000px;}
.x147_c00217{left:731.250000px;}
.x11d_c00217{left:734.400000px;}
.xd6_c00217{left:735.750000px;}
.x14a_c00217{left:738.000000px;}
.xb9_c00217{left:739.200000px;}
.xc_c00217{left:741.750000px;}
.x23_c00217{left:742.800000px;}
.xca_c00217{left:744.900000px;}
.xa6_c00217{left:747.600000px;}
.x8d_c00217{left:749.100000px;}
.x11f_c00217{left:750.150000px;}
.xba_c00217{left:751.800000px;}
.x117_c00217{left:753.000000px;}
.xd7_c00217{left:754.800000px;}
.xcc_c00217{left:758.250000px;}
.x3_c00217{left:759.600000px;}
.x133_c00217{left:763.500000px;}
.x45_c00217{left:764.850000px;}
.x120_c00217{left:766.350000px;}
.xd_c00217{left:767.700000px;}
.xae_c00217{left:770.700000px;}
.xe4_c00217{left:772.350000px;}
.xbb_c00217{left:773.400000px;}
.x11e_c00217{left:774.900000px;}
.x46_c00217{left:776.400000px;}
.xeb_c00217{left:778.050000px;}
.x89_c00217{left:783.000000px;}
.xa7_c00217{left:784.650000px;}
.xd8_c00217{left:785.700000px;}
.x134_c00217{left:788.700000px;}
.x24_c00217{left:789.900000px;}
.x148_c00217{left:792.150000px;}
.xa8_c00217{left:793.350000px;}
.x9f_c00217{left:796.200000px;}
.x113_c00217{left:797.850000px;}
.xc8_c00217{left:799.950000px;}
.x8e_c00217{left:807.000000px;}
.xa9_c00217{left:809.250000px;}
.xaf_c00217{left:812.100000px;}
.xd0_c00217{left:813.450000px;}
.xa0_c00217{left:814.950000px;}
.xc4_c00217{left:816.150000px;}
.x123_c00217{left:818.100000px;}
.x121_c00217{left:820.350000px;}
.x3e_c00217{left:822.450000px;}
.x56_c00217{left:823.950000px;}
.xd1_c00217{left:825.300000px;}
.x94_c00217{left:828.600000px;}
.xb0_c00217{left:830.100000px;}
.x47_c00217{left:831.150000px;}
.x37_c00217{left:832.800000px;}
.x8f_c00217{left:834.750000px;}
.x14c_c00217{left:836.100000px;}
.xe0_c00217{left:838.650000px;}
.xa1_c00217{left:841.500000px;}
.xbc_c00217{left:843.600000px;}
.x104_c00217{left:844.800000px;}
.x108_c00217{left:848.250000px;}
.x25_c00217{left:849.600000px;}
.xe_c00217{left:851.250000px;}
.x38_c00217{left:853.650000px;}
.x51_c00217{left:855.150000px;}
.xcd_c00217{left:856.200000px;}
.x39_c00217{left:861.600000px;}
.x114_c00217{left:863.100000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls1_c00217{letter-spacing:0.000000pt;}
.ls0_c00217{letter-spacing:90.617284pt;}
.ws6_c00217{word-spacing:-117.283951pt;}
.ws4_c00217{word-spacing:-9.012346pt;}
.ws11_c00217{word-spacing:-8.093159pt;}
.ws7_c00217{word-spacing:-8.067941pt;}
.wsc_c00217{word-spacing:-5.079365pt;}
.wsd_c00217{word-spacing:-2.522523pt;}
.ws12_c00217{word-spacing:-1.944444pt;}
.ws13_c00217{word-spacing:0.000000pt;}
.ws5_c00217{word-spacing:4.210526pt;}
.wsa_c00217{word-spacing:6.000000pt;}
.wse_c00217{word-spacing:6.582583pt;}
.ws0_c00217{word-spacing:8.017458pt;}
.wsf_c00217{word-spacing:8.252465pt;}
.ws10_c00217{word-spacing:17.523810pt;}
.ws1_c00217{word-spacing:25.267760pt;}
.ws3_c00217{word-spacing:28.765027pt;}
.ws2_c00217{word-spacing:39.043257pt;}
.wsb_c00217{word-spacing:782.045802pt;}
.ws9_c00217{word-spacing:1098.518519pt;}
.ws8_c00217{word-spacing:1173.650794pt;}
._0_c00217{margin-left:-90.617284pt;}
.fs5_c00217{font-size:26.666667pt;}
.fs6_c00217{font-size:32.000000pt;}
.fs3_c00217{font-size:48.000000pt;}
.fs2_c00217{font-size:53.333333pt;}
.fs1_c00217{font-size:58.666667pt;}
.fs4_c00217{font-size:64.000000pt;}
.fs0_c00217{font-size:69.333333pt;}
.y0_c00217{bottom:0.000000pt;}
.y53_c00217{bottom:18.933333pt;}
.y52_c00217{bottom:110.800000pt;}
.y51_c00217{bottom:171.600000pt;}
.y50_c00217{bottom:187.600000pt;}
.y4f_c00217{bottom:203.333333pt;}
.y4e_c00217{bottom:219.066667pt;}
.y4d_c00217{bottom:234.800000pt;}
.y4c_c00217{bottom:250.800000pt;}
.y4b_c00217{bottom:266.533333pt;}
.y4a_c00217{bottom:282.800000pt;}
.y49_c00217{bottom:298.533333pt;}
.y48_c00217{bottom:314.533333pt;}
.y47_c00217{bottom:329.866667pt;}
.y44_c00217{bottom:338.133333pt;}
.y46_c00217{bottom:345.866667pt;}
.y43_c00217{bottom:354.133333pt;}
.y45_c00217{bottom:361.866667pt;}
.y42_c00217{bottom:369.866667pt;}
.y41_c00217{bottom:385.600000pt;}
.y40_c00217{bottom:401.866667pt;}
.y3f_c00217{bottom:417.866667pt;}
.y3e_c00217{bottom:433.600000pt;}
.y3d_c00217{bottom:449.600000pt;}
.y3c_c00217{bottom:465.600000pt;}
.y3b_c00217{bottom:481.333333pt;}
.y3a_c00217{bottom:496.933333pt;}
.y31_c00217{bottom:500.666667pt;}
.y39_c00217{bottom:512.666667pt;}
.y30_c00217{bottom:516.933333pt;}
.y38_c00217{bottom:528.666667pt;}
.y2f_c00217{bottom:532.666667pt;}
.y37_c00217{bottom:544.000000pt;}
.y2e_c00217{bottom:548.400000pt;}
.y36_c00217{bottom:560.000000pt;}
.y2d_c00217{bottom:564.400000pt;}
.y35_c00217{bottom:575.866667pt;}
.y2c_c00217{bottom:580.133333pt;}
.y34_c00217{bottom:591.600000pt;}
.y2b_c00217{bottom:598.666667pt;}
.y33_c00217{bottom:607.333333pt;}
.y2a_c00217{bottom:611.200000pt;}
.y32_c00217{bottom:623.333333pt;}
.y29_c00217{bottom:624.000000pt;}
.y22_c00217{bottom:639.333333pt;}
.y21_c00217{bottom:642.533333pt;}
.y20_c00217{bottom:658.266667pt;}
.y1f_c00217{bottom:671.066667pt;}
.y1e_c00217{bottom:673.866667pt;}
.y1d_c00217{bottom:686.666667pt;}
.y1c_c00217{bottom:694.400000pt;}
.y1b_c00217{bottom:709.466667pt;}
.y1a_c00217{bottom:721.600000pt;}
.y19_c00217{bottom:725.333333pt;}
.y18_c00217{bottom:737.866667pt;}
.y17_c00217{bottom:741.200000pt;}
.y16_c00217{bottom:760.666667pt;}
.y15_c00217{bottom:769.333333pt;}
.y14_c00217{bottom:788.000000pt;}
.y13_c00217{bottom:800.800000pt;}
.y28_c00217{bottom:804.133333pt;}
.y12_c00217{bottom:816.533333pt;}
.y27_c00217{bottom:820.133333pt;}
.y11_c00217{bottom:832.533333pt;}
.y26_c00217{bottom:835.866667pt;}
.y10_c00217{bottom:848.266667pt;}
.y25_c00217{bottom:855.333333pt;}
.yf_c00217{bottom:864.266667pt;}
.y24_c00217{bottom:871.333333pt;}
.ye_c00217{bottom:880.000000pt;}
.y23_c00217{bottom:887.066667pt;}
.yd_c00217{bottom:897.866667pt;}
.yc_c00217{bottom:903.066667pt;}
.yb_c00217{bottom:910.400000pt;}
.ya_c00217{bottom:922.933333pt;}
.y9_c00217{bottom:935.733333pt;}
.y6_c00217{bottom:948.800000pt;}
.y8_c00217{bottom:950.666667pt;}
.y5_c00217{bottom:961.333333pt;}
.y7_c00217{bottom:966.400000pt;}
.y4_c00217{bottom:975.733333pt;}
.y3_c00217{bottom:986.666667pt;}
.y2_c00217{bottom:1001.333333pt;}
.y1_c00217{bottom:1024.666667pt;}
.h7_c00217{height:26.666667pt;}
.h8_c00217{height:32.000000pt;}
.h5_c00217{height:48.000000pt;}
.h4_c00217{height:53.333333pt;}
.h3_c00217{height:58.666667pt;}
.h6_c00217{height:64.000000pt;}
.h2_c00217{height:69.333333pt;}
.h1_c00217{height:1134.666667pt;}
.h0_c00217{height:1134.719971pt;}
.w1_c00217{width:856.000000pt;}
.w0_c00217{width:856.319987pt;}
.x0_c00217{left:0.000000pt;}
.xf8_c00217{left:156.800000pt;}
.x97_c00217{left:158.800000pt;}
.x1_c00217{left:160.933333pt;}
.x14d_c00217{left:170.400000pt;}
.x10d_c00217{left:172.000000pt;}
.x31_c00217{left:173.200000pt;}
.xf_c00217{left:174.933333pt;}
.x68_c00217{left:176.133333pt;}
.x65_c00217{left:177.600000pt;}
.x152_c00217{left:180.133333pt;}
.x3f_c00217{left:185.866667pt;}
.x4_c00217{left:186.933333pt;}
.x109_c00217{left:188.800000pt;}
.xef_c00217{left:189.733333pt;}
.x73_c00217{left:190.800000pt;}
.x10e_c00217{left:193.733333pt;}
.x13e_c00217{left:195.066667pt;}
.x6f_c00217{left:196.133333pt;}
.x14f_c00217{left:198.533333pt;}
.xf7_c00217{left:200.133333pt;}
.x81_c00217{left:202.000000pt;}
.xb1_c00217{left:203.200000pt;}
.x40_c00217{left:205.333333pt;}
.x26_c00217{left:206.666667pt;}
.x125_c00217{left:207.733333pt;}
.x12b_c00217{left:208.666667pt;}
.x79_c00217{left:209.600000pt;}
.x69_c00217{left:211.066667pt;}
.x10_c00217{left:212.666667pt;}
.x90_c00217{left:214.400000pt;}
.x118_c00217{left:215.600000pt;}
.x7a_c00217{left:217.333333pt;}
.x5c_c00217{left:220.133333pt;}
.xee_c00217{left:221.066667pt;}
.x2b_c00217{left:222.666667pt;}
.xfb_c00217{left:223.866667pt;}
.x27_c00217{left:225.600000pt;}
.xf4_c00217{left:226.933333pt;}
.xfe_c00217{left:228.400000pt;}
.x12e_c00217{left:229.333333pt;}
.x138_c00217{left:232.666667pt;}
.x2c_c00217{left:234.133333pt;}
.x57_c00217{left:236.133333pt;}
.x13f_c00217{left:237.600000pt;}
.x82_c00217{left:239.466667pt;}
.x41_c00217{left:242.400000pt;}
.x74_c00217{left:244.266667pt;}
.x11_c00217{left:245.600000pt;}
.xff_c00217{left:248.533333pt;}
.x95_c00217{left:250.000000pt;}
.x49_c00217{left:251.200000pt;}
.x128_c00217{left:252.533333pt;}
.xb4_c00217{left:253.600000pt;}
.x139_c00217{left:255.066667pt;}
.x42_c00217{left:256.133333pt;}
.x6a_c00217{left:257.466667pt;}
.x12_c00217{left:260.266667pt;}
.x144_c00217{left:261.866667pt;}
.x98_c00217{left:262.800000pt;}
.x7b_c00217{left:263.733333pt;}
.x60_c00217{left:265.600000pt;}
.x150_c00217{left:268.000000pt;}
.x5d_c00217{left:270.400000pt;}
.x12c_c00217{left:272.400000pt;}
.x119_c00217{left:273.866667pt;}
.xb2_c00217{left:274.933333pt;}
.xbe_c00217{left:276.400000pt;}
.x2d_c00217{left:277.333333pt;}
.x135_c00217{left:280.533333pt;}
.x14b_c00217{left:281.466667pt;}
.x96_c00217{left:282.933333pt;}
.x4a_c00217{left:284.800000pt;}
.x28_c00217{left:286.400000pt;}
.xf0_c00217{left:288.533333pt;}
.x12f_c00217{left:290.133333pt;}
.x70_c00217{left:291.200000pt;}
.xf3_c00217{left:292.266667pt;}
.x153_c00217{left:293.733333pt;}
.xf9_c00217{left:294.666667pt;}
.xf1_c00217{left:296.133333pt;}
.x6b_c00217{left:297.066667pt;}
.x10f_c00217{left:299.066667pt;}
.x4b_c00217{left:300.800000pt;}
.x145_c00217{left:301.866667pt;}
.x75_c00217{left:303.200000pt;}
.xf2_c00217{left:304.133333pt;}
.x66_c00217{left:306.000000pt;}
.x13_c00217{left:308.533333pt;}
.x61_c00217{left:309.466667pt;}
.xbf_c00217{left:311.600000pt;}
.x2e_c00217{left:314.400000pt;}
.x29_c00217{left:315.466667pt;}
.x115_c00217{left:316.933333pt;}
.x7c_c00217{left:317.866667pt;}
.x110_c00217{left:318.933333pt;}
.x14_c00217{left:321.333333pt;}
.x71_c00217{left:323.466667pt;}
.x58_c00217{left:325.333333pt;}
.x11a_c00217{left:326.933333pt;}
.x2f_c00217{left:328.133333pt;}
.x4c_c00217{left:329.600000pt;}
.x101_c00217{left:330.533333pt;}
.xfc_c00217{left:332.000000pt;}
.x6c_c00217{left:332.933333pt;}
.x15_c00217{left:334.133333pt;}
.x2a_c00217{left:336.266667pt;}
.x5_c00217{left:338.666667pt;}
.x126_c00217{left:339.733333pt;}
.x7d_c00217{left:340.933333pt;}
.x99_c00217{left:342.533333pt;}
.x4d_c00217{left:345.600000pt;}
.x16_c00217{left:346.933333pt;}
.x129_c00217{left:348.533333pt;}
.x59_c00217{left:350.666667pt;}
.x12d_c00217{left:351.866667pt;}
.x17_c00217{left:353.333333pt;}
.xb3_c00217{left:354.533333pt;}
.x105_c00217{left:355.866667pt;}
.xaa_c00217{left:356.933333pt;}
.x18_c00217{left:359.466667pt;}
.x6d_c00217{left:360.400000pt;}
.x76_c00217{left:362.400000pt;}
.x30_c00217{left:363.333333pt;}
.x100_c00217{left:366.266667pt;}
.xf5_c00217{left:367.466667pt;}
.x12a_c00217{left:369.066667pt;}
.x2_c00217{left:370.533333pt;}
.x19_c00217{left:372.000000pt;}
.x127_c00217{left:373.333333pt;}
.xc0_c00217{left:375.333333pt;}
.x6_c00217{left:376.800000pt;}
.x1a_c00217{left:378.666667pt;}
.x5a_c00217{left:382.000000pt;}
.x11b_c00217{left:383.600000pt;}
.x5e_c00217{left:384.666667pt;}
.x102_c00217{left:387.466667pt;}
.x7e_c00217{left:388.533333pt;}
.x83_c00217{left:391.333333pt;}
.x140_c00217{left:392.666667pt;}
.x48_c00217{left:394.533333pt;}
.x1b_c00217{left:396.000000pt;}
.xb5_c00217{left:398.266667pt;}
.x62_c00217{left:399.333333pt;}
.x11c_c00217{left:401.866667pt;}
.x141_c00217{left:404.133333pt;}
.x130_c00217{left:406.000000pt;}
.x10a_c00217{left:406.933333pt;}
.x67_c00217{left:408.400000pt;}
.x116_c00217{left:410.000000pt;}
.x13a_c00217{left:411.866667pt;}
.x77_c00217{left:412.933333pt;}
.xfd_c00217{left:414.533333pt;}
.x7_c00217{left:415.466667pt;}
.x5f_c00217{left:416.666667pt;}
.x13c_c00217{left:417.733333pt;}
.x4e_c00217{left:420.133333pt;}
.x1c_c00217{left:421.600000pt;}
.xc1_c00217{left:423.066667pt;}
.x9a_c00217{left:424.800000pt;}
.x5b_c00217{left:428.400000pt;}
.x63_c00217{left:429.733333pt;}
.x78_c00217{left:431.466667pt;}
.x111_c00217{left:433.333333pt;}
.xb6_c00217{left:434.400000pt;}
.x7f_c00217{left:435.600000pt;}
.xf6_c00217{left:436.533333pt;}
.x64_c00217{left:439.066667pt;}
.x72_c00217{left:444.133333pt;}
.x8_c00217{left:445.200000pt;}
.x1d_c00217{left:447.200000pt;}
.x10b_c00217{left:451.733333pt;}
.x6e_c00217{left:454.266667pt;}
.xfa_c00217{left:463.866667pt;}
.xab_c00217{left:465.466667pt;}
.x131_c00217{left:471.600000pt;}
.xd9_c00217{left:473.466667pt;}
.xac_c00217{left:474.800000pt;}
.x84_c00217{left:476.133333pt;}
.x154_c00217{left:478.933333pt;}
.x142_c00217{left:486.000000pt;}
.xb7_c00217{left:487.200000pt;}
.xe5_c00217{left:488.400000pt;}
.xdc_c00217{left:489.466667pt;}
.xa2_c00217{left:490.400000pt;}
.x9_c00217{left:491.600000pt;}
.x91_c00217{left:493.066667pt;}
.x80_c00217{left:498.933333pt;}
.x85_c00217{left:504.666667pt;}
.x9b_c00217{left:505.733333pt;}
.x4f_c00217{left:506.933333pt;}
.xe1_c00217{left:510.266667pt;}
.x1e_c00217{left:511.466667pt;}
.x86_c00217{left:512.400000pt;}
.xe6_c00217{left:514.666667pt;}
.x52_c00217{left:517.066667pt;}
.x14e_c00217{left:518.800000pt;}
.xc2_c00217{left:520.000000pt;}
.x136_c00217{left:522.533333pt;}
.xc9_c00217{left:523.866667pt;}
.x32_c00217{left:525.466667pt;}
.x132_c00217{left:526.933333pt;}
.x13d_c00217{left:528.133333pt;}
.xc6_c00217{left:531.200000pt;}
.xec_c00217{left:533.200000pt;}
.x3a_c00217{left:534.533333pt;}
.xc7_c00217{left:536.666667pt;}
.xa3_c00217{left:537.733333pt;}
.x53_c00217{left:539.733333pt;}
.x43_c00217{left:542.266667pt;}
.xd3_c00217{left:545.600000pt;}
.x87_c00217{left:546.933333pt;}
.xda_c00217{left:548.400000pt;}
.x33_c00217{left:550.133333pt;}
.x149_c00217{left:551.333333pt;}
.x155_c00217{left:552.800000pt;}
.x9c_c00217{left:554.000000pt;}
.xe7_c00217{left:556.533333pt;}
.xbd_c00217{left:558.933333pt;}
.x112_c00217{left:560.133333pt;}
.x1f_c00217{left:561.066667pt;}
.xa_c00217{left:562.666667pt;}
.xde_c00217{left:565.866667pt;}
.x54_c00217{left:566.933333pt;}
.xb8_c00217{left:568.533333pt;}
.xa4_c00217{left:569.466667pt;}
.x103_c00217{left:571.333333pt;}
.x34_c00217{left:572.533333pt;}
.xe8_c00217{left:574.133333pt;}
.x3b_c00217{left:575.200000pt;}
.xdd_c00217{left:576.133333pt;}
.x9d_c00217{left:577.066667pt;}
.xce_c00217{left:580.133333pt;}
.xdb_c00217{left:581.733333pt;}
.x8a_c00217{left:583.066667pt;}
.xb_c00217{left:584.133333pt;}
.x106_c00217{left:586.933333pt;}
.x92_c00217{left:588.800000pt;}
.xd4_c00217{left:591.066667pt;}
.x137_c00217{left:592.000000pt;}
.x3c_c00217{left:593.733333pt;}
.xcf_c00217{left:594.800000pt;}
.x20_c00217{left:596.266667pt;}
.x107_c00217{left:598.400000pt;}
.x151_c00217{left:600.933333pt;}
.x55_c00217{left:601.866667pt;}
.xa5_c00217{left:602.800000pt;}
.xe9_c00217{left:603.866667pt;}
.xdf_c00217{left:605.600000pt;}
.xe2_c00217{left:606.533333pt;}
.xd5_c00217{left:608.000000pt;}
.x88_c00217{left:609.600000pt;}
.x143_c00217{left:610.800000pt;}
.x8b_c00217{left:611.866667pt;}
.x156_c00217{left:612.933333pt;}
.xad_c00217{left:614.666667pt;}
.x10c_c00217{left:616.533333pt;}
.x21_c00217{left:618.000000pt;}
.xed_c00217{left:621.200000pt;}
.x124_c00217{left:622.133333pt;}
.x3d_c00217{left:623.200000pt;}
.x122_c00217{left:624.266667pt;}
.x13b_c00217{left:625.866667pt;}
.xcb_c00217{left:626.933333pt;}
.x44_c00217{left:628.933333pt;}
.x146_c00217{left:630.533333pt;}
.x93_c00217{left:631.733333pt;}
.xc5_c00217{left:633.600000pt;}
.x50_c00217{left:634.666667pt;}
.xea_c00217{left:635.600000pt;}
.x35_c00217{left:637.200000pt;}
.xc3_c00217{left:640.266667pt;}
.x22_c00217{left:641.333333pt;}
.xe3_c00217{left:642.400000pt;}
.xd2_c00217{left:643.866667pt;}
.x9e_c00217{left:645.200000pt;}
.x36_c00217{left:646.133333pt;}
.x8c_c00217{left:648.933333pt;}
.x147_c00217{left:650.000000pt;}
.x11d_c00217{left:652.800000pt;}
.xd6_c00217{left:654.000000pt;}
.x14a_c00217{left:656.000000pt;}
.xb9_c00217{left:657.066667pt;}
.xc_c00217{left:659.333333pt;}
.x23_c00217{left:660.266667pt;}
.xca_c00217{left:662.133333pt;}
.xa6_c00217{left:664.533333pt;}
.x8d_c00217{left:665.866667pt;}
.x11f_c00217{left:666.800000pt;}
.xba_c00217{left:668.266667pt;}
.x117_c00217{left:669.333333pt;}
.xd7_c00217{left:670.933333pt;}
.xcc_c00217{left:674.000000pt;}
.x3_c00217{left:675.200000pt;}
.x133_c00217{left:678.666667pt;}
.x45_c00217{left:679.866667pt;}
.x120_c00217{left:681.200000pt;}
.xd_c00217{left:682.400000pt;}
.xae_c00217{left:685.066667pt;}
.xe4_c00217{left:686.533333pt;}
.xbb_c00217{left:687.466667pt;}
.x11e_c00217{left:688.800000pt;}
.x46_c00217{left:690.133333pt;}
.xeb_c00217{left:691.600000pt;}
.x89_c00217{left:696.000000pt;}
.xa7_c00217{left:697.466667pt;}
.xd8_c00217{left:698.400000pt;}
.x134_c00217{left:701.066667pt;}
.x24_c00217{left:702.133333pt;}
.x148_c00217{left:704.133333pt;}
.xa8_c00217{left:705.200000pt;}
.x9f_c00217{left:707.733333pt;}
.x113_c00217{left:709.200000pt;}
.xc8_c00217{left:711.066667pt;}
.x8e_c00217{left:717.333333pt;}
.xa9_c00217{left:719.333333pt;}
.xaf_c00217{left:721.866667pt;}
.xd0_c00217{left:723.066667pt;}
.xa0_c00217{left:724.400000pt;}
.xc4_c00217{left:725.466667pt;}
.x123_c00217{left:727.200000pt;}
.x121_c00217{left:729.200000pt;}
.x3e_c00217{left:731.066667pt;}
.x56_c00217{left:732.400000pt;}
.xd1_c00217{left:733.600000pt;}
.x94_c00217{left:736.533333pt;}
.xb0_c00217{left:737.866667pt;}
.x47_c00217{left:738.800000pt;}
.x37_c00217{left:740.266667pt;}
.x8f_c00217{left:742.000000pt;}
.x14c_c00217{left:743.200000pt;}
.xe0_c00217{left:745.466667pt;}
.xa1_c00217{left:748.000000pt;}
.xbc_c00217{left:749.866667pt;}
.x104_c00217{left:750.933333pt;}
.x108_c00217{left:754.000000pt;}
.x25_c00217{left:755.200000pt;}
.xe_c00217{left:756.666667pt;}
.x38_c00217{left:758.800000pt;}
.x51_c00217{left:760.133333pt;}
.xcd_c00217{left:761.066667pt;}
.x39_c00217{left:765.866667pt;}
.x114_c00217{left:767.200000pt;}
}





/* 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_c00218 {
    display:none;
  }
  .loading-indicator_c00218.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00218 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_c00218 { 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_c00218" -> "#page-container .classname_c00218")
 */
.pf_c00218 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00218 { /* 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_c00218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00218 { /* 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_c00218 { /* 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_c00218 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00218 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00218 {overflow:visible;}
  }
}
.c_c00218 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00218 { /* 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_c00218:after { /* webkit #35443 */
  content: '';
}
.t_c00218:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00218 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 */
}
.__c00218 { /* 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_c00218 { /* info for Javascript */
  display:none;
}
.l_c00218 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00218 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00218 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00218: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_c00218 {
    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_c00218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00218.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_c00218 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00218;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.000000;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;}
.mcd_c00218{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00218{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00218{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m78_c00218{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00218{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00218{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00218{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m120_c00218{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00218{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mea_c00218{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00218{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc_c00218{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m71_c00218{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m124_c00218{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00218{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m85_c00218{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m65_c00218{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.me5_c00218{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m56_c00218{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m61_c00218{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00218{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00218{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00218{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00218{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m116_c00218{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m60_c00218{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00218{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.med_c00218{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m98_c00218{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m49_c00218{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m75_c00218{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00218{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00218{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m80_c00218{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md1_c00218{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00218{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7_c00218{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00218{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00218{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00218{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m119_c00218{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00218{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m88_c00218{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00218{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m125_c00218{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m42_c00218{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mec_c00218{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mef_c00218{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m39_c00218{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00218{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m16_c00218{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m36_c00218{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00218{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00218{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md7_c00218{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m79_c00218{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m108_c00218{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m86_c00218{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m126_c00218{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00218{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m47_c00218{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m118_c00218{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00218{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m115_c00218{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m81_c00218{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mff_c00218{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m127_c00218{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00218{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m128_c00218{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m35_c00218{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00218{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m18_c00218{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.maa_c00218{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m44_c00218{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00218{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m106_c00218{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m45_c00218{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00218{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m20_c00218{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00218{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m77_c00218{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m94_c00218{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00218{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00218{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00218{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m87_c00218{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00218{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5_c00218{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m123_c00218{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m82_c00218{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m26_c00218{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00218{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00218{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mad_c00218{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00218{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m43_c00218{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00218{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00218{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00218{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m117_c00218{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m23_c00218{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m63_c00218{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00218{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00218{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md9_c00218{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m46_c00218{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m91_c00218{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md5_c00218{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md6_c00218{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mab_c00218{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m9_c00218{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m100_c00218{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m14_c00218{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00218{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m84_c00218{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m113_c00218{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00218{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m34_c00218{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mca_c00218{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00218{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m70_c00218{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00218{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m112_c00218{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.maf_c00218{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00218{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00218{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00218{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00218{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00218{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m104_c00218{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00218{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00218{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m129_c00218{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m69_c00218{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mda_c00218{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m17_c00218{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m52_c00218{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m83_c00218{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00218{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m13_c00218{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00218{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md4_c00218{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00218{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m22_c00218{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00218{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00218{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m68_c00218{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00218{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00218{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m31_c00218{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m97_c00218{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00218{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00218{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00218{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m38_c00218{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m90_c00218{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m64_c00218{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m28_c00218{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m12_c00218{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00218{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m95_c00218{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m72_c00218{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.md8_c00218{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00218{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mee_c00218{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me4_c00218{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m74_c00218{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md0_c00218{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m73_c00218{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m48_c00218{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m15_c00218{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00218{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m107_c00218{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00218{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6_c00218{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00218{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00218{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00218{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00218{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00218{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m27_c00218{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00218{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m41_c00218{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00218{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00218{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m25_c00218{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m114_c00218{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00218{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb_c00218{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me2_c00218{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00218{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00218{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00218{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00218{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00218{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00218{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00218{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m53_c00218{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m10_c00218{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.md_c00218{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m109_c00218{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m24_c00218{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00218{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.me3_c00218{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m19_c00218{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me0_c00218{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mce_c00218{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00218{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me7_c00218{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00218{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00218{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00218{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m96_c00218{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m55_c00218{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m110_c00218{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00218{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m32_c00218{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m105_c00218{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m89_c00218{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md3_c00218{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m76_c00218{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00218{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00218{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00218{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m29_c00218{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m37_c00218{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00218{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md2_c00218{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00218{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00218{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00218{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00218{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00218{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);}
.m8_c00218{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00218{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m50_c00218{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11_c00218{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m103_c00218{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m67_c00218{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00218{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00218{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00218{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m30_c00218{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2_c00218{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m40_c00218{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma_c00218{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m102_c00218{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00218{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m51_c00218{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m101_c00218{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m62_c00218{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00218{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00218{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00218{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m92_c00218{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00218{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00218{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m66_c00218{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00218{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mf_c00218{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.me1_c00218{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me9_c00218{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m54_c00218{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00218{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00218{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00218{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mae_c00218{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.me8_c00218{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00218{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m58_c00218{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00218{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00218{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00218{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mba_c00218{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.me6_c00218{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m21_c00218{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m121_c00218{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m93_c00218{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00218{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00218{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00218{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mde_c00218{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.meb_c00218{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00218{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mac_c00218{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m99_c00218{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00218{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m111_c00218{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m33_c00218{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00218{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m57_c00218{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m59_c00218{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00218{transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);}
.m122_c00218{transform:matrix(0.575750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575750,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls0_c00218{letter-spacing:0.000000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{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__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00218{word-spacing:-16.719745px;}
.wsd_c00218{word-spacing:-12.500000px;}
.ws7_c00218{word-spacing:-11.190476px;}
.wsc_c00218{word-spacing:-6.903780px;}
.ws8_c00218{word-spacing:-2.462322px;}
.wsf_c00218{word-spacing:0.000000px;}
.wsa_c00218{word-spacing:0.586592px;}
.ws2_c00218{word-spacing:5.475814px;}
.ws9_c00218{word-spacing:13.267658px;}
.ws5_c00218{word-spacing:15.168901px;}
.wsb_c00218{word-spacing:18.038778px;}
.ws3_c00218{word-spacing:19.994638px;}
.ws6_c00218{word-spacing:26.428954px;}
.ws1_c00218{word-spacing:36.000000px;}
.wse_c00218{word-spacing:56.799314px;}
.ws4_c00218{word-spacing:66.000000px;}
._0_c00218{width:53.428954px;}
.fc0_c00218{color:transparent;}
.fs7_c00218{font-size:24.000000px;}
.fs6_c00218{font-size:42.000000px;}
.fs5_c00218{font-size:48.000000px;}
.fs4_c00218{font-size:54.000000px;}
.fs3_c00218{font-size:60.000000px;}
.fs2_c00218{font-size:66.000000px;}
.fs1_c00218{font-size:72.000000px;}
.fs0_c00218{font-size:78.000000px;}
.y0_c00218{bottom:0.000000px;}
.y69_c00218{bottom:165.300000px;}
.y68_c00218{bottom:183.900000px;}
.y35_c00218{bottom:186.000000px;}
.y67_c00218{bottom:201.900000px;}
.y34_c00218{bottom:204.000000px;}
.y66_c00218{bottom:219.900000px;}
.y33_c00218{bottom:221.700000px;}
.y65_c00218{bottom:237.600000px;}
.y32_c00218{bottom:239.400000px;}
.y31_c00218{bottom:260.250000px;}
.y63_c00218{bottom:260.700000px;}
.y64_c00218{bottom:262.050000px;}
.y62_c00218{bottom:262.500000px;}
.y61_c00218{bottom:276.900000px;}
.y30_c00218{bottom:280.350000px;}
.y60_c00218{bottom:292.350000px;}
.y2f_c00218{bottom:298.350000px;}
.y2e_c00218{bottom:316.050000px;}
.y5f_c00218{bottom:319.200000px;}
.y2d_c00218{bottom:333.750000px;}
.y5e_c00218{bottom:337.200000px;}
.y5d_c00218{bottom:355.200000px;}
.y2c_c00218{bottom:360.000000px;}
.y5c_c00218{bottom:372.900000px;}
.y2b_c00218{bottom:377.700000px;}
.y5b_c00218{bottom:390.600000px;}
.y2a_c00218{bottom:399.600000px;}
.y5a_c00218{bottom:412.500000px;}
.y59_c00218{bottom:430.500000px;}
.y29_c00218{bottom:430.800000px;}
.y58_c00218{bottom:447.750000px;}
.y28_c00218{bottom:448.800000px;}
.y27_c00218{bottom:466.800000px;}
.y57_c00218{bottom:470.100000px;}
.y26_c00218{bottom:484.500000px;}
.y56_c00218{bottom:497.100000px;}
.y25_c00218{bottom:506.400000px;}
.y55_c00218{bottom:519.450000px;}
.y24_c00218{bottom:524.400000px;}
.y54_c00218{bottom:537.150000px;}
.y23_c00218{bottom:542.100000px;}
.y53_c00218{bottom:554.850000px;}
.y22_c00218{bottom:559.800000px;}
.y52_c00218{bottom:572.850000px;}
.y21_c00218{bottom:577.800000px;}
.y51_c00218{bottom:590.550000px;}
.y20_c00218{bottom:599.550000px;}
.y50_c00218{bottom:608.550000px;}
.y1f_c00218{bottom:617.850000px;}
.y4f_c00218{bottom:626.250000px;}
.y1e_c00218{bottom:635.100000px;}
.y4e_c00218{bottom:643.950000px;}
.y1d_c00218{bottom:653.100000px;}
.y4d_c00218{bottom:661.650000px;}
.y1c_c00218{bottom:671.100000px;}
.y4c_c00218{bottom:679.650000px;}
.y1b_c00218{bottom:689.100000px;}
.y4b_c00218{bottom:697.350000px;}
.y1a_c00218{bottom:706.800000px;}
.y4a_c00218{bottom:719.550000px;}
.y19_c00218{bottom:724.800000px;}
.y49_c00218{bottom:737.250000px;}
.y18_c00218{bottom:742.500000px;}
.y48_c00218{bottom:759.600000px;}
.y17_c00218{bottom:760.200000px;}
.y16_c00218{bottom:777.900000px;}
.y47_c00218{bottom:781.950000px;}
.y15_c00218{bottom:798.150000px;}
.y46_c00218{bottom:799.800000px;}
.y14_c00218{bottom:812.850000px;}
.y45_c00218{bottom:817.500000px;}
.y13_c00218{bottom:827.550000px;}
.y44_c00218{bottom:835.200000px;}
.y12_c00218{bottom:841.650000px;}
.y11_c00218{bottom:855.450000px;}
.y43_c00218{bottom:863.700000px;}
.y10_c00218{bottom:870.150000px;}
.y42_c00218{bottom:883.500000px;}
.yf_c00218{bottom:884.550000px;}
.ye_c00218{bottom:900.750000px;}
.y41_c00218{bottom:906.150000px;}
.yd_c00218{bottom:919.350000px;}
.y40_c00218{bottom:928.050000px;}
.yc_c00218{bottom:937.050000px;}
.y3f_c00218{bottom:946.050000px;}
.yb_c00218{bottom:959.700000px;}
.y3e_c00218{bottom:963.300000px;}
.ya_c00218{bottom:976.950000px;}
.y3d_c00218{bottom:981.300000px;}
.y9_c00218{bottom:994.950000px;}
.y3c_c00218{bottom:1003.500000px;}
.y8_c00218{bottom:1012.650000px;}
.y3b_c00218{bottom:1021.200000px;}
.y7_c00218{bottom:1035.000000px;}
.y3a_c00218{bottom:1038.900000px;}
.y39_c00218{bottom:1056.600000px;}
.y6_c00218{bottom:1057.200000px;}
.y38_c00218{bottom:1074.300000px;}
.y5_c00218{bottom:1074.900000px;}
.y37_c00218{bottom:1092.300000px;}
.y4_c00218{bottom:1092.900000px;}
.y36_c00218{bottom:1110.300000px;}
.y3_c00218{bottom:1110.600000px;}
.y2_c00218{bottom:1135.500000px;}
.y1_c00218{bottom:1136.550000px;}
.h9_c00218{height:24.000000px;}
.h8_c00218{height:42.000000px;}
.h7_c00218{height:48.000000px;}
.h6_c00218{height:54.000000px;}
.h5_c00218{height:60.000000px;}
.h4_c00218{height:66.000000px;}
.h3_c00218{height:72.000000px;}
.h2_c00218{height:78.000000px;}
.h0_c00218{height:1268.640015px;}
.h1_c00218{height:1269.000000px;}
.w1_c00218{width:963.000000px;}
.w0_c00218{width:963.359985px;}
.x0_c00218{left:0.000000px;}
.x95_c00218{left:86.100000px;}
.x89_c00218{left:87.450000px;}
.x85_c00218{left:88.500000px;}
.x3d_c00218{left:89.700000px;}
.x3_c00218{left:91.500000px;}
.x9d_c00218{left:102.450000px;}
.x9b_c00218{left:103.500000px;}
.x43_c00218{left:105.150000px;}
.x83_c00218{left:106.500000px;}
.x6b_c00218{left:107.850000px;}
.x26_c00218{left:109.200000px;}
.xb_c00218{left:110.250000px;}
.x51_c00218{left:119.550000px;}
.x59_c00218{left:120.600000px;}
.x55_c00218{left:123.000000px;}
.x91_c00218{left:124.050000px;}
.x1f_c00218{left:128.550000px;}
.x8f_c00218{left:129.900000px;}
.xc_c00218{left:131.550000px;}
.x19_c00218{left:133.500000px;}
.x7e_c00218{left:137.100000px;}
.x44_c00218{left:139.650000px;}
.x17_c00218{left:141.450000px;}
.x46_c00218{left:143.250000px;}
.x88_c00218{left:147.150000px;}
.x47_c00218{left:149.400000px;}
.x7a_c00218{left:150.450000px;}
.x11_c00218{left:152.100000px;}
.x94_c00218{left:153.300000px;}
.x27_c00218{left:155.250000px;}
.x4_c00218{left:158.850000px;}
.x2a_c00218{left:160.650000px;}
.x81_c00218{left:161.700000px;}
.x18_c00218{left:163.050000px;}
.x71_c00218{left:165.600000px;}
.x1a_c00218{left:166.650000px;}
.x30_c00218{left:168.150000px;}
.x7b_c00218{left:170.250000px;}
.x48_c00218{left:171.750000px;}
.x20_c00218{left:174.300000px;}
.x12_c00218{left:176.250000px;}
.x49_c00218{left:177.900000px;}
.x66_c00218{left:180.450000px;}
.x5a_c00218{left:181.800000px;}
.x9f_c00218{left:183.000000px;}
.xd_c00218{left:184.050000px;}
.x4a_c00218{left:185.400000px;}
.x5_c00218{left:186.900000px;}
.x62_c00218{left:190.200000px;}
.x5b_c00218{left:191.850000px;}
.xe_c00218{left:193.050000px;}
.x84_c00218{left:194.400000px;}
.x35_c00218{left:197.700000px;}
.x45_c00218{left:199.350000px;}
.x96_c00218{left:201.300000px;}
.x6c_c00218{left:203.700000px;}
.x52_c00218{left:205.200000px;}
.x74_c00218{left:206.700000px;}
.x2b_c00218{left:208.200000px;}
.x63_c00218{left:209.250000px;}
.x31_c00218{left:211.350000px;}
.x28_c00218{left:213.150000px;}
.x4b_c00218{left:214.500000px;}
.x21_c00218{left:217.200000px;}
.x92_c00218{left:218.700000px;}
.x4c_c00218{left:221.400000px;}
.x5c_c00218{left:223.500000px;}
.xa2_c00218{left:224.550000px;}
.x8a_c00218{left:226.950000px;}
.xf_c00218{left:228.300000px;}
.x72_c00218{left:230.400000px;}
.x98_c00218{left:231.750000px;}
.x3e_c00218{left:232.950000px;}
.x1b_c00218{left:234.750000px;}
.x4d_c00218{left:236.100000px;}
.x9e_c00218{left:237.750000px;}
.x39_c00218{left:238.950000px;}
.x5d_c00218{left:241.200000px;}
.x7c_c00218{left:242.550000px;}
.x86_c00218{left:244.500000px;}
.x6_c00218{left:245.550000px;}
.x13_c00218{left:247.200000px;}
.x6d_c00218{left:248.400000px;}
.x2c_c00218{left:249.900000px;}
.x22_c00218{left:252.450000px;}
.x3a_c00218{left:256.650000px;}
.xa0_c00218{left:257.700000px;}
.x29_c00218{left:258.900000px;}
.x7f_c00218{left:261.600000px;}
.x64_c00218{left:263.250000px;}
.x67_c00218{left:265.050000px;}
.x6e_c00218{left:266.100000px;}
.x93_c00218{left:269.400000px;}
.x53_c00218{left:270.750000px;}
.x3b_c00218{left:272.850000px;}
.x3f_c00218{left:275.400000px;}
.x73_c00218{left:278.250000px;}
.x75_c00218{left:280.800000px;}
.x5e_c00218{left:285.150000px;}
.x2d_c00218{left:286.950000px;}
.x54_c00218{left:289.500000px;}
.x36_c00218{left:291.600000px;}
.x56_c00218{left:292.650000px;}
.x8d_c00218{left:294.150000px;}
.x6f_c00218{left:295.650000px;}
.x65_c00218{left:298.500000px;}
.x5f_c00218{left:299.850000px;}
.x7_c00218{left:301.050000px;}
.x2e_c00218{left:302.850000px;}
.x60_c00218{left:306.750000px;}
.x14_c00218{left:308.100000px;}
.x1c_c00218{left:309.300000px;}
.x32_c00218{left:310.350000px;}
.x3c_c00218{left:311.400000px;}
.x61_c00218{left:313.650000px;}
.x1d_c00218{left:316.800000px;}
.x8_c00218{left:321.150000px;}
.x40_c00218{left:322.500000px;}
.x23_c00218{left:326.250000px;}
.x37_c00218{left:327.600000px;}
.x57_c00218{left:328.650000px;}
.x10_c00218{left:330.750000px;}
.xa1_c00218{left:332.250000px;}
.x1_c00218{left:333.750000px;}
.x2f_c00218{left:335.250000px;}
.x8b_c00218{left:336.750000px;}
.x9_c00218{left:338.100000px;}
.x99_c00218{left:341.850000px;}
.x76_c00218{left:344.100000px;}
.x90_c00218{left:345.450000px;}
.x41_c00218{left:347.700000px;}
.x97_c00218{left:349.500000px;}
.x1e_c00218{left:353.100000px;}
.x7d_c00218{left:354.150000px;}
.x58_c00218{left:355.650000px;}
.x4e_c00218{left:357.750000px;}
.x78_c00218{left:360.600000px;}
.x69_c00218{left:363.450000px;}
.x8e_c00218{left:365.700000px;}
.x33_c00218{left:367.650000px;}
.xa_c00218{left:368.700000px;}
.x80_c00218{left:370.200000px;}
.x87_c00218{left:371.850000px;}
.x68_c00218{left:373.350000px;}
.x15_c00218{left:376.200000px;}
.x42_c00218{left:378.000000px;}
.x24_c00218{left:380.250000px;}
.x70_c00218{left:381.300000px;}
.x8c_c00218{left:383.100000px;}
.x4f_c00218{left:385.500000px;}
.x6a_c00218{left:386.850000px;}
.x82_c00218{left:389.850000px;}
.x34_c00218{left:391.800000px;}
.x16_c00218{left:394.200000px;}
.x38_c00218{left:395.250000px;}
.x79_c00218{left:400.200000px;}
.xa3_c00218{left:402.750000px;}
.x9a_c00218{left:406.950000px;}
.x25_c00218{left:412.350000px;}
.x50_c00218{left:414.000000px;}
.x9c_c00218{left:431.850000px;}
.x77_c00218{left:434.850000px;}
.x13a_c00218{left:442.500000px;}
.x123_c00218{left:444.600000px;}
.xfe_c00218{left:445.650000px;}
.xe8_c00218{left:447.150000px;}
.xeb_c00218{left:448.500000px;}
.x122_c00218{left:451.800000px;}
.x13d_c00218{left:457.050000px;}
.x128_c00218{left:460.050000px;}
.x119_c00218{left:461.850000px;}
.x10a_c00218{left:463.050000px;}
.xf4_c00218{left:464.250000px;}
.xc2_c00218{left:465.450000px;}
.xa4_c00218{left:466.950000px;}
.xff_c00218{left:470.100000px;}
.x107_c00218{left:480.300000px;}
.xd6_c00218{left:482.100000px;}
.xef_c00218{left:483.300000px;}
.xfb_c00218{left:484.500000px;}
.x125_c00218{left:485.700000px;}
.xae_c00218{left:487.500000px;}
.xec_c00218{left:489.900000px;}
.xe5_c00218{left:497.550000px;}
.xc3_c00218{left:498.600000px;}
.xcc_c00218{left:499.950000px;}
.xd1_c00218{left:501.150000px;}
.x11c_c00218{left:502.200000px;}
.x120_c00218{left:504.150000px;}
.xde_c00218{left:506.850000px;}
.xe9_c00218{left:508.650000px;}
.xbc_c00218{left:510.900000px;}
.xaf_c00218{left:511.950000px;}
.x124_c00218{left:513.300000px;}
.xdb_c00218{left:514.350000px;}
.x130_c00218{left:515.550000px;}
.xea_c00218{left:516.600000px;}
.xa5_c00218{left:518.100000px;}
.xe6_c00218{left:519.450000px;}
.xd2_c00218{left:521.250000px;}
.xcd_c00218{left:522.300000px;}
.xdf_c00218{left:525.150000px;}
.x108_c00218{left:527.400000px;}
.xa6_c00218{left:528.900000px;}
.xf5_c00218{left:532.350000px;}
.xc4_c00218{left:533.550000px;}
.xd3_c00218{left:537.150000px;}
.xe0_c00218{left:539.250000px;}
.x113_c00218{left:546.150000px;}
.x11a_c00218{left:547.200000px;}
.x12e_c00218{left:549.000000px;}
.xa7_c00218{left:550.200000px;}
.xdc_c00218{left:552.750000px;}
.x11d_c00218{left:553.950000px;}
.xb6_c00218{left:556.200000px;}
.x129_c00218{left:557.250000px;}
.xd7_c00218{left:558.450000px;}
.xe1_c00218{left:561.150000px;}
.xbd_c00218{left:562.350000px;}
.xce_c00218{left:563.400000px;}
.x13e_c00218{left:565.500000px;}
.x133_c00218{left:567.450000px;}
.xe7_c00218{left:569.550000px;}
.x109_c00218{left:570.600000px;}
.x114_c00218{left:573.150000px;}
.x10f_c00218{left:574.200000px;}
.x140_c00218{left:575.250000px;}
.xf6_c00218{left:576.300000px;}
.x12a_c00218{left:577.800000px;}
.x13f_c00218{left:578.850000px;}
.xd4_c00218{left:580.050000px;}
.xc5_c00218{left:583.200000px;}
.x143_c00218{left:587.700000px;}
.xbe_c00218{left:589.050000px;}
.xb7_c00218{left:590.100000px;}
.x12f_c00218{left:592.950000px;}
.x100_c00218{left:594.300000px;}
.xa8_c00218{left:596.250000px;}
.xf0_c00218{left:597.450000px;}
.x131_c00218{left:599.850000px;}
.x103_c00218{left:602.250000px;}
.xb0_c00218{left:604.800000px;}
.x127_c00218{left:606.000000px;}
.xfc_c00218{left:607.650000px;}
.xed_c00218{left:609.300000px;}
.xf7_c00218{left:611.250000px;}
.x134_c00218{left:612.750000px;}
.xd5_c00218{left:615.000000px;}
.x104_c00218{left:617.700000px;}
.x145_c00218{left:618.750000px;}
.x10b_c00218{left:620.700000px;}
.xc6_c00218{left:622.050000px;}
.xd8_c00218{left:623.550000px;}
.x139_c00218{left:628.200000px;}
.xe2_c00218{left:629.550000px;}
.x11e_c00218{left:631.650000px;}
.xc7_c00218{left:633.600000px;}
.xf8_c00218{left:634.950000px;}
.x13b_c00218{left:637.650000px;}
.xb1_c00218{left:638.700000px;}
.xbf_c00218{left:640.950000px;}
.xb8_c00218{left:642.000000px;}
.x135_c00218{left:645.450000px;}
.xa9_c00218{left:646.650000px;}
.x12b_c00218{left:649.050000px;}
.xc8_c00218{left:650.850000px;}
.xf9_c00218{left:654.450000px;}
.x126_c00218{left:655.500000px;}
.x110_c00218{left:657.300000px;}
.xb2_c00218{left:658.500000px;}
.x10c_c00218{left:659.550000px;}
.x12c_c00218{left:661.050000px;}
.xaa_c00218{left:662.100000px;}
.x11b_c00218{left:663.450000px;}
.xf1_c00218{left:664.800000px;}
.x115_c00218{left:666.450000px;}
.x101_c00218{left:669.900000px;}
.x132_c00218{left:671.850000px;}
.x144_c00218{left:673.650000px;}
.x141_c00218{left:675.300000px;}
.xcf_c00218{left:676.500000px;}
.xd9_c00218{left:678.600000px;}
.x105_c00218{left:679.950000px;}
.xe3_c00218{left:684.300000px;}
.x10d_c00218{left:688.050000px;}
.xc9_c00218{left:691.500000px;}
.xf2_c00218{left:693.900000px;}
.xee_c00218{left:695.700000px;}
.x116_c00218{left:697.800000px;}
.xb9_c00218{left:701.100000px;}
.xfd_c00218{left:705.600000px;}
.xe4_c00218{left:706.650000px;}
.x142_c00218{left:708.750000px;}
.x136_c00218{left:711.750000px;}
.xab_c00218{left:713.550000px;}
.x117_c00218{left:715.500000px;}
.x121_c00218{left:717.150000px;}
.xb3_c00218{left:718.200000px;}
.xc0_c00218{left:722.400000px;}
.xba_c00218{left:724.500000px;}
.x12d_c00218{left:727.200000px;}
.x13c_c00218{left:728.400000px;}
.xfa_c00218{left:730.350000px;}
.xca_c00218{left:732.150000px;}
.x137_c00218{left:734.100000px;}
.xac_c00218{left:735.900000px;}
.x106_c00218{left:737.850000px;}
.x118_c00218{left:739.800000px;}
.xdd_c00218{left:742.200000px;}
.xd0_c00218{left:744.900000px;}
.xf3_c00218{left:748.650000px;}
.xcb_c00218{left:750.450000px;}
.xb4_c00218{left:752.100000px;}
.xbb_c00218{left:753.600000px;}
.x111_c00218{left:755.550000px;}
.x2_c00218{left:757.050000px;}
.xc1_c00218{left:758.100000px;}
.x11f_c00218{left:760.800000px;}
.x138_c00218{left:762.900000px;}
.x10e_c00218{left:764.700000px;}
.x102_c00218{left:765.900000px;}
.x112_c00218{left:768.900000px;}
.xda_c00218{left:769.950000px;}
.xb5_c00218{left:774.000000px;}
.xad_c00218{left:781.200000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws0_c00218{word-spacing:-14.861996pt;}
.wsd_c00218{word-spacing:-11.111111pt;}
.ws7_c00218{word-spacing:-9.947090pt;}
.wsc_c00218{word-spacing:-6.136693pt;}
.ws8_c00218{word-spacing:-2.188730pt;}
.wsf_c00218{word-spacing:0.000000pt;}
.wsa_c00218{word-spacing:0.521415pt;}
.ws2_c00218{word-spacing:4.867391pt;}
.ws9_c00218{word-spacing:11.793474pt;}
.ws5_c00218{word-spacing:13.483467pt;}
.wsb_c00218{word-spacing:16.034469pt;}
.ws3_c00218{word-spacing:17.773012pt;}
.ws6_c00218{word-spacing:23.492404pt;}
.ws1_c00218{word-spacing:32.000000pt;}
.wse_c00218{word-spacing:50.488279pt;}
.ws4_c00218{word-spacing:58.666667pt;}
._0_c00218{width:47.492404pt;}
.fs7_c00218{font-size:21.333333pt;}
.fs6_c00218{font-size:37.333333pt;}
.fs5_c00218{font-size:42.666667pt;}
.fs4_c00218{font-size:48.000000pt;}
.fs3_c00218{font-size:53.333333pt;}
.fs2_c00218{font-size:58.666667pt;}
.fs1_c00218{font-size:64.000000pt;}
.fs0_c00218{font-size:69.333333pt;}
.y0_c00218{bottom:0.000000pt;}
.y69_c00218{bottom:146.933333pt;}
.y68_c00218{bottom:163.466667pt;}
.y35_c00218{bottom:165.333333pt;}
.y67_c00218{bottom:179.466667pt;}
.y34_c00218{bottom:181.333333pt;}
.y66_c00218{bottom:195.466667pt;}
.y33_c00218{bottom:197.066667pt;}
.y65_c00218{bottom:211.200000pt;}
.y32_c00218{bottom:212.800000pt;}
.y31_c00218{bottom:231.333333pt;}
.y63_c00218{bottom:231.733333pt;}
.y64_c00218{bottom:232.933333pt;}
.y62_c00218{bottom:233.333333pt;}
.y61_c00218{bottom:246.133333pt;}
.y30_c00218{bottom:249.200000pt;}
.y60_c00218{bottom:259.866667pt;}
.y2f_c00218{bottom:265.200000pt;}
.y2e_c00218{bottom:280.933333pt;}
.y5f_c00218{bottom:283.733333pt;}
.y2d_c00218{bottom:296.666667pt;}
.y5e_c00218{bottom:299.733333pt;}
.y5d_c00218{bottom:315.733333pt;}
.y2c_c00218{bottom:320.000000pt;}
.y5c_c00218{bottom:331.466667pt;}
.y2b_c00218{bottom:335.733333pt;}
.y5b_c00218{bottom:347.200000pt;}
.y2a_c00218{bottom:355.200000pt;}
.y5a_c00218{bottom:366.666667pt;}
.y59_c00218{bottom:382.666667pt;}
.y29_c00218{bottom:382.933333pt;}
.y58_c00218{bottom:398.000000pt;}
.y28_c00218{bottom:398.933333pt;}
.y27_c00218{bottom:414.933333pt;}
.y57_c00218{bottom:417.866667pt;}
.y26_c00218{bottom:430.666667pt;}
.y56_c00218{bottom:441.866667pt;}
.y25_c00218{bottom:450.133333pt;}
.y55_c00218{bottom:461.733333pt;}
.y24_c00218{bottom:466.133333pt;}
.y54_c00218{bottom:477.466667pt;}
.y23_c00218{bottom:481.866667pt;}
.y53_c00218{bottom:493.200000pt;}
.y22_c00218{bottom:497.600000pt;}
.y52_c00218{bottom:509.200000pt;}
.y21_c00218{bottom:513.600000pt;}
.y51_c00218{bottom:524.933333pt;}
.y20_c00218{bottom:532.933333pt;}
.y50_c00218{bottom:540.933333pt;}
.y1f_c00218{bottom:549.200000pt;}
.y4f_c00218{bottom:556.666667pt;}
.y1e_c00218{bottom:564.533333pt;}
.y4e_c00218{bottom:572.400000pt;}
.y1d_c00218{bottom:580.533333pt;}
.y4d_c00218{bottom:588.133333pt;}
.y1c_c00218{bottom:596.533333pt;}
.y4c_c00218{bottom:604.133333pt;}
.y1b_c00218{bottom:612.533333pt;}
.y4b_c00218{bottom:619.866667pt;}
.y1a_c00218{bottom:628.266667pt;}
.y4a_c00218{bottom:639.600000pt;}
.y19_c00218{bottom:644.266667pt;}
.y49_c00218{bottom:655.333333pt;}
.y18_c00218{bottom:660.000000pt;}
.y48_c00218{bottom:675.200000pt;}
.y17_c00218{bottom:675.733333pt;}
.y16_c00218{bottom:691.466667pt;}
.y47_c00218{bottom:695.066667pt;}
.y15_c00218{bottom:709.466667pt;}
.y46_c00218{bottom:710.933333pt;}
.y14_c00218{bottom:722.533333pt;}
.y45_c00218{bottom:726.666667pt;}
.y13_c00218{bottom:735.600000pt;}
.y44_c00218{bottom:742.400000pt;}
.y12_c00218{bottom:748.133333pt;}
.y11_c00218{bottom:760.400000pt;}
.y43_c00218{bottom:767.733333pt;}
.y10_c00218{bottom:773.466667pt;}
.y42_c00218{bottom:785.333333pt;}
.yf_c00218{bottom:786.266667pt;}
.ye_c00218{bottom:800.666667pt;}
.y41_c00218{bottom:805.466667pt;}
.yd_c00218{bottom:817.200000pt;}
.y40_c00218{bottom:824.933333pt;}
.yc_c00218{bottom:832.933333pt;}
.y3f_c00218{bottom:840.933333pt;}
.yb_c00218{bottom:853.066667pt;}
.y3e_c00218{bottom:856.266667pt;}
.ya_c00218{bottom:868.400000pt;}
.y3d_c00218{bottom:872.266667pt;}
.y9_c00218{bottom:884.400000pt;}
.y3c_c00218{bottom:892.000000pt;}
.y8_c00218{bottom:900.133333pt;}
.y3b_c00218{bottom:907.733333pt;}
.y7_c00218{bottom:920.000000pt;}
.y3a_c00218{bottom:923.466667pt;}
.y39_c00218{bottom:939.200000pt;}
.y6_c00218{bottom:939.733333pt;}
.y38_c00218{bottom:954.933333pt;}
.y5_c00218{bottom:955.466667pt;}
.y37_c00218{bottom:970.933333pt;}
.y4_c00218{bottom:971.466667pt;}
.y36_c00218{bottom:986.933333pt;}
.y3_c00218{bottom:987.200000pt;}
.y2_c00218{bottom:1009.333333pt;}
.y1_c00218{bottom:1010.266667pt;}
.h9_c00218{height:21.333333pt;}
.h8_c00218{height:37.333333pt;}
.h7_c00218{height:42.666667pt;}
.h6_c00218{height:48.000000pt;}
.h5_c00218{height:53.333333pt;}
.h4_c00218{height:58.666667pt;}
.h3_c00218{height:64.000000pt;}
.h2_c00218{height:69.333333pt;}
.h0_c00218{height:1127.680013pt;}
.h1_c00218{height:1128.000000pt;}
.w1_c00218{width:856.000000pt;}
.w0_c00218{width:856.319987pt;}
.x0_c00218{left:0.000000pt;}
.x95_c00218{left:76.533333pt;}
.x89_c00218{left:77.733333pt;}
.x85_c00218{left:78.666667pt;}
.x3d_c00218{left:79.733333pt;}
.x3_c00218{left:81.333333pt;}
.x9d_c00218{left:91.066667pt;}
.x9b_c00218{left:92.000000pt;}
.x43_c00218{left:93.466667pt;}
.x83_c00218{left:94.666667pt;}
.x6b_c00218{left:95.866667pt;}
.x26_c00218{left:97.066667pt;}
.xb_c00218{left:98.000000pt;}
.x51_c00218{left:106.266667pt;}
.x59_c00218{left:107.200000pt;}
.x55_c00218{left:109.333333pt;}
.x91_c00218{left:110.266667pt;}
.x1f_c00218{left:114.266667pt;}
.x8f_c00218{left:115.466667pt;}
.xc_c00218{left:116.933333pt;}
.x19_c00218{left:118.666667pt;}
.x7e_c00218{left:121.866667pt;}
.x44_c00218{left:124.133333pt;}
.x17_c00218{left:125.733333pt;}
.x46_c00218{left:127.333333pt;}
.x88_c00218{left:130.800000pt;}
.x47_c00218{left:132.800000pt;}
.x7a_c00218{left:133.733333pt;}
.x11_c00218{left:135.200000pt;}
.x94_c00218{left:136.266667pt;}
.x27_c00218{left:138.000000pt;}
.x4_c00218{left:141.200000pt;}
.x2a_c00218{left:142.800000pt;}
.x81_c00218{left:143.733333pt;}
.x18_c00218{left:144.933333pt;}
.x71_c00218{left:147.200000pt;}
.x1a_c00218{left:148.133333pt;}
.x30_c00218{left:149.466667pt;}
.x7b_c00218{left:151.333333pt;}
.x48_c00218{left:152.666667pt;}
.x20_c00218{left:154.933333pt;}
.x12_c00218{left:156.666667pt;}
.x49_c00218{left:158.133333pt;}
.x66_c00218{left:160.400000pt;}
.x5a_c00218{left:161.600000pt;}
.x9f_c00218{left:162.666667pt;}
.xd_c00218{left:163.600000pt;}
.x4a_c00218{left:164.800000pt;}
.x5_c00218{left:166.133333pt;}
.x62_c00218{left:169.066667pt;}
.x5b_c00218{left:170.533333pt;}
.xe_c00218{left:171.600000pt;}
.x84_c00218{left:172.800000pt;}
.x35_c00218{left:175.733333pt;}
.x45_c00218{left:177.200000pt;}
.x96_c00218{left:178.933333pt;}
.x6c_c00218{left:181.066667pt;}
.x52_c00218{left:182.400000pt;}
.x74_c00218{left:183.733333pt;}
.x2b_c00218{left:185.066667pt;}
.x63_c00218{left:186.000000pt;}
.x31_c00218{left:187.866667pt;}
.x28_c00218{left:189.466667pt;}
.x4b_c00218{left:190.666667pt;}
.x21_c00218{left:193.066667pt;}
.x92_c00218{left:194.400000pt;}
.x4c_c00218{left:196.800000pt;}
.x5c_c00218{left:198.666667pt;}
.xa2_c00218{left:199.600000pt;}
.x8a_c00218{left:201.733333pt;}
.xf_c00218{left:202.933333pt;}
.x72_c00218{left:204.800000pt;}
.x98_c00218{left:206.000000pt;}
.x3e_c00218{left:207.066667pt;}
.x1b_c00218{left:208.666667pt;}
.x4d_c00218{left:209.866667pt;}
.x9e_c00218{left:211.333333pt;}
.x39_c00218{left:212.400000pt;}
.x5d_c00218{left:214.400000pt;}
.x7c_c00218{left:215.600000pt;}
.x86_c00218{left:217.333333pt;}
.x6_c00218{left:218.266667pt;}
.x13_c00218{left:219.733333pt;}
.x6d_c00218{left:220.800000pt;}
.x2c_c00218{left:222.133333pt;}
.x22_c00218{left:224.400000pt;}
.x3a_c00218{left:228.133333pt;}
.xa0_c00218{left:229.066667pt;}
.x29_c00218{left:230.133333pt;}
.x7f_c00218{left:232.533333pt;}
.x64_c00218{left:234.000000pt;}
.x67_c00218{left:235.600000pt;}
.x6e_c00218{left:236.533333pt;}
.x93_c00218{left:239.466667pt;}
.x53_c00218{left:240.666667pt;}
.x3b_c00218{left:242.533333pt;}
.x3f_c00218{left:244.800000pt;}
.x73_c00218{left:247.333333pt;}
.x75_c00218{left:249.600000pt;}
.x5e_c00218{left:253.466667pt;}
.x2d_c00218{left:255.066667pt;}
.x54_c00218{left:257.333333pt;}
.x36_c00218{left:259.200000pt;}
.x56_c00218{left:260.133333pt;}
.x8d_c00218{left:261.466667pt;}
.x6f_c00218{left:262.800000pt;}
.x65_c00218{left:265.333333pt;}
.x5f_c00218{left:266.533333pt;}
.x7_c00218{left:267.600000pt;}
.x2e_c00218{left:269.200000pt;}
.x60_c00218{left:272.666667pt;}
.x14_c00218{left:273.866667pt;}
.x1c_c00218{left:274.933333pt;}
.x32_c00218{left:275.866667pt;}
.x3c_c00218{left:276.800000pt;}
.x61_c00218{left:278.800000pt;}
.x1d_c00218{left:281.600000pt;}
.x8_c00218{left:285.466667pt;}
.x40_c00218{left:286.666667pt;}
.x23_c00218{left:290.000000pt;}
.x37_c00218{left:291.200000pt;}
.x57_c00218{left:292.133333pt;}
.x10_c00218{left:294.000000pt;}
.xa1_c00218{left:295.333333pt;}
.x1_c00218{left:296.666667pt;}
.x2f_c00218{left:298.000000pt;}
.x8b_c00218{left:299.333333pt;}
.x9_c00218{left:300.533333pt;}
.x99_c00218{left:303.866667pt;}
.x76_c00218{left:305.866667pt;}
.x90_c00218{left:307.066667pt;}
.x41_c00218{left:309.066667pt;}
.x97_c00218{left:310.666667pt;}
.x1e_c00218{left:313.866667pt;}
.x7d_c00218{left:314.800000pt;}
.x58_c00218{left:316.133333pt;}
.x4e_c00218{left:318.000000pt;}
.x78_c00218{left:320.533333pt;}
.x69_c00218{left:323.066667pt;}
.x8e_c00218{left:325.066667pt;}
.x33_c00218{left:326.800000pt;}
.xa_c00218{left:327.733333pt;}
.x80_c00218{left:329.066667pt;}
.x87_c00218{left:330.533333pt;}
.x68_c00218{left:331.866667pt;}
.x15_c00218{left:334.400000pt;}
.x42_c00218{left:336.000000pt;}
.x24_c00218{left:338.000000pt;}
.x70_c00218{left:338.933333pt;}
.x8c_c00218{left:340.533333pt;}
.x4f_c00218{left:342.666667pt;}
.x6a_c00218{left:343.866667pt;}
.x82_c00218{left:346.533333pt;}
.x34_c00218{left:348.266667pt;}
.x16_c00218{left:350.400000pt;}
.x38_c00218{left:351.333333pt;}
.x79_c00218{left:355.733333pt;}
.xa3_c00218{left:358.000000pt;}
.x9a_c00218{left:361.733333pt;}
.x25_c00218{left:366.533333pt;}
.x50_c00218{left:368.000000pt;}
.x9c_c00218{left:383.866667pt;}
.x77_c00218{left:386.533333pt;}
.x13a_c00218{left:393.333333pt;}
.x123_c00218{left:395.200000pt;}
.xfe_c00218{left:396.133333pt;}
.xe8_c00218{left:397.466667pt;}
.xeb_c00218{left:398.666667pt;}
.x122_c00218{left:401.600000pt;}
.x13d_c00218{left:406.266667pt;}
.x128_c00218{left:408.933333pt;}
.x119_c00218{left:410.533333pt;}
.x10a_c00218{left:411.600000pt;}
.xf4_c00218{left:412.666667pt;}
.xc2_c00218{left:413.733333pt;}
.xa4_c00218{left:415.066667pt;}
.xff_c00218{left:417.866667pt;}
.x107_c00218{left:426.933333pt;}
.xd6_c00218{left:428.533333pt;}
.xef_c00218{left:429.600000pt;}
.xfb_c00218{left:430.666667pt;}
.x125_c00218{left:431.733333pt;}
.xae_c00218{left:433.333333pt;}
.xec_c00218{left:435.466667pt;}
.xe5_c00218{left:442.266667pt;}
.xc3_c00218{left:443.200000pt;}
.xcc_c00218{left:444.400000pt;}
.xd1_c00218{left:445.466667pt;}
.x11c_c00218{left:446.400000pt;}
.x120_c00218{left:448.133333pt;}
.xde_c00218{left:450.533333pt;}
.xe9_c00218{left:452.133333pt;}
.xbc_c00218{left:454.133333pt;}
.xaf_c00218{left:455.066667pt;}
.x124_c00218{left:456.266667pt;}
.xdb_c00218{left:457.200000pt;}
.x130_c00218{left:458.266667pt;}
.xea_c00218{left:459.200000pt;}
.xa5_c00218{left:460.533333pt;}
.xe6_c00218{left:461.733333pt;}
.xd2_c00218{left:463.333333pt;}
.xcd_c00218{left:464.266667pt;}
.xdf_c00218{left:466.800000pt;}
.x108_c00218{left:468.800000pt;}
.xa6_c00218{left:470.133333pt;}
.xf5_c00218{left:473.200000pt;}
.xc4_c00218{left:474.266667pt;}
.xd3_c00218{left:477.466667pt;}
.xe0_c00218{left:479.333333pt;}
.x113_c00218{left:485.466667pt;}
.x11a_c00218{left:486.400000pt;}
.x12e_c00218{left:488.000000pt;}
.xa7_c00218{left:489.066667pt;}
.xdc_c00218{left:491.333333pt;}
.x11d_c00218{left:492.400000pt;}
.xb6_c00218{left:494.400000pt;}
.x129_c00218{left:495.333333pt;}
.xd7_c00218{left:496.400000pt;}
.xe1_c00218{left:498.800000pt;}
.xbd_c00218{left:499.866667pt;}
.xce_c00218{left:500.800000pt;}
.x13e_c00218{left:502.666667pt;}
.x133_c00218{left:504.400000pt;}
.xe7_c00218{left:506.266667pt;}
.x109_c00218{left:507.200000pt;}
.x114_c00218{left:509.466667pt;}
.x10f_c00218{left:510.400000pt;}
.x140_c00218{left:511.333333pt;}
.xf6_c00218{left:512.266667pt;}
.x12a_c00218{left:513.600000pt;}
.x13f_c00218{left:514.533333pt;}
.xd4_c00218{left:515.600000pt;}
.xc5_c00218{left:518.400000pt;}
.x143_c00218{left:522.400000pt;}
.xbe_c00218{left:523.600000pt;}
.xb7_c00218{left:524.533333pt;}
.x12f_c00218{left:527.066667pt;}
.x100_c00218{left:528.266667pt;}
.xa8_c00218{left:530.000000pt;}
.xf0_c00218{left:531.066667pt;}
.x131_c00218{left:533.200000pt;}
.x103_c00218{left:535.333333pt;}
.xb0_c00218{left:537.600000pt;}
.x127_c00218{left:538.666667pt;}
.xfc_c00218{left:540.133333pt;}
.xed_c00218{left:541.600000pt;}
.xf7_c00218{left:543.333333pt;}
.x134_c00218{left:544.666667pt;}
.xd5_c00218{left:546.666667pt;}
.x104_c00218{left:549.066667pt;}
.x145_c00218{left:550.000000pt;}
.x10b_c00218{left:551.733333pt;}
.xc6_c00218{left:552.933333pt;}
.xd8_c00218{left:554.266667pt;}
.x139_c00218{left:558.400000pt;}
.xe2_c00218{left:559.600000pt;}
.x11e_c00218{left:561.466667pt;}
.xc7_c00218{left:563.200000pt;}
.xf8_c00218{left:564.400000pt;}
.x13b_c00218{left:566.800000pt;}
.xb1_c00218{left:567.733333pt;}
.xbf_c00218{left:569.733333pt;}
.xb8_c00218{left:570.666667pt;}
.x135_c00218{left:573.733333pt;}
.xa9_c00218{left:574.800000pt;}
.x12b_c00218{left:576.933333pt;}
.xc8_c00218{left:578.533333pt;}
.xf9_c00218{left:581.733333pt;}
.x126_c00218{left:582.666667pt;}
.x110_c00218{left:584.266667pt;}
.xb2_c00218{left:585.333333pt;}
.x10c_c00218{left:586.266667pt;}
.x12c_c00218{left:587.600000pt;}
.xaa_c00218{left:588.533333pt;}
.x11b_c00218{left:589.733333pt;}
.xf1_c00218{left:590.933333pt;}
.x115_c00218{left:592.400000pt;}
.x101_c00218{left:595.466667pt;}
.x132_c00218{left:597.200000pt;}
.x144_c00218{left:598.800000pt;}
.x141_c00218{left:600.266667pt;}
.xcf_c00218{left:601.333333pt;}
.xd9_c00218{left:603.200000pt;}
.x105_c00218{left:604.400000pt;}
.xe3_c00218{left:608.266667pt;}
.x10d_c00218{left:611.600000pt;}
.xc9_c00218{left:614.666667pt;}
.xf2_c00218{left:616.800000pt;}
.xee_c00218{left:618.400000pt;}
.x116_c00218{left:620.266667pt;}
.xb9_c00218{left:623.200000pt;}
.xfd_c00218{left:627.200000pt;}
.xe4_c00218{left:628.133333pt;}
.x142_c00218{left:630.000000pt;}
.x136_c00218{left:632.666667pt;}
.xab_c00218{left:634.266667pt;}
.x117_c00218{left:636.000000pt;}
.x121_c00218{left:637.466667pt;}
.xb3_c00218{left:638.400000pt;}
.xc0_c00218{left:642.133333pt;}
.xba_c00218{left:644.000000pt;}
.x12d_c00218{left:646.400000pt;}
.x13c_c00218{left:647.466667pt;}
.xfa_c00218{left:649.200000pt;}
.xca_c00218{left:650.800000pt;}
.x137_c00218{left:652.533333pt;}
.xac_c00218{left:654.133333pt;}
.x106_c00218{left:655.866667pt;}
.x118_c00218{left:657.600000pt;}
.xdd_c00218{left:659.733333pt;}
.xd0_c00218{left:662.133333pt;}
.xf3_c00218{left:665.466667pt;}
.xcb_c00218{left:667.066667pt;}
.xb4_c00218{left:668.533333pt;}
.xbb_c00218{left:669.866667pt;}
.x111_c00218{left:671.600000pt;}
.x2_c00218{left:672.933333pt;}
.xc1_c00218{left:673.866667pt;}
.x11f_c00218{left:676.266667pt;}
.x138_c00218{left:678.133333pt;}
.x10e_c00218{left:679.733333pt;}
.x102_c00218{left:680.800000pt;}
.x112_c00218{left:683.466667pt;}
.xda_c00218{left:684.400000pt;}
.xb5_c00218{left:688.000000pt;}
.xad_c00218{left:694.400000pt;}
}





/* 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_c00219 {
    display:none;
  }
  .loading-indicator_c00219.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00219 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_c00219 { 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_c00219" -> "#page-container .classname_c00219")
 */
.pf_c00219 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00219 { /* 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_c00219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00219 { /* 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_c00219 { /* 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_c00219 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00219 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00219 {overflow:visible;}
  }
}
.c_c00219 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00219 { /* 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_c00219:after { /* webkit #35443 */
  content: '';
}
.t_c00219:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00219 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 */
}
.__c00219 { /* 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_c00219 { /* info for Javascript */
  display:none;
}
.l_c00219 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00219 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00219 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00219: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_c00219 {
    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_c00219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00219.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_c00219 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00219;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.000000;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;}
.m1_c00219{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.meb_c00219{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.md6_c00219{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00219{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m88_c00219{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.maf_c00219{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9_c00219{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m91_c00219{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.mac_c00219{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m56_c00219{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00219{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00219{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m49_c00219{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00219{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00219{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00219{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m52_c00219{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00219{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00219{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me1_c00219{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m67_c00219{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00219{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me6_c00219{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mc_c00219{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.med_c00219{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m97_c00219{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md9_c00219{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m69_c00219{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m77_c00219{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00219{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00219{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m64_c00219{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m87_c00219{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00219{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m73_c00219{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5_c00219{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00219{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m79_c00219{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00219{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00219{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m94_c00219{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md3_c00219{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m60_c00219{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m98_c00219{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m50_c00219{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m23_c00219{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00219{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00219{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mef_c00219{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00219{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00219{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00219{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.me5_c00219{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md_c00219{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00219{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m39_c00219{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m66_c00219{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00219{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m71_c00219{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00219{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00219{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00219{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00219{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00219{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m25_c00219{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00219{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m33_c00219{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m68_c00219{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00219{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m93_c00219{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m46_c00219{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m21_c00219{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m16_c00219{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m45_c00219{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00219{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m75_c00219{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00219{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m74_c00219{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mee_c00219{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m27_c00219{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m47_c00219{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00219{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00219{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m26_c00219{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00219{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6_c00219{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00219{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m85_c00219{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00219{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m34_c00219{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma_c00219{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m53_c00219{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00219{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00219{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00219{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00219{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m43_c00219{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m51_c00219{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00219{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf_c00219{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md8_c00219{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00219{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00219{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m86_c00219{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md0_c00219{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m0_c00219{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m19_c00219{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00219{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m42_c00219{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m38_c00219{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m30_c00219{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3_c00219{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m81_c00219{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m41_c00219{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m18_c00219{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m80_c00219{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mea_c00219{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00219{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00219{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m35_c00219{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00219{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mce_c00219{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00219{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mca_c00219{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m22_c00219{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md4_c00219{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00219{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m13_c00219{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00219{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00219{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00219{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00219{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m32_c00219{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m90_c00219{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4_c00219{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m14_c00219{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m78_c00219{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00219{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00219{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00219{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00219{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m44_c00219{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m83_c00219{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m20_c00219{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m61_c00219{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00219{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md7_c00219{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00219{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00219{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00219{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m24_c00219{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m72_c00219{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m12_c00219{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00219{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00219{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m96_c00219{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m40_c00219{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mba_c00219{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m15_c00219{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m62_c00219{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00219{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m28_c00219{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11_c00219{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00219{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00219{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m31_c00219{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m63_c00219{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m48_c00219{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00219{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m54_c00219{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m10_c00219{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00219{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m17_c00219{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00219{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00219{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m59_c00219{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00219{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00219{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m76_c00219{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m37_c00219{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00219{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00219{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8_c00219{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m29_c00219{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb_c00219{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00219{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00219{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00219{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m58_c00219{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m57_c00219{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me0_c00219{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00219{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.me_c00219{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.md2_c00219{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mae_c00219{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m55_c00219{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md5_c00219{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.md1_c00219{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.me4_c00219{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00219{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00219{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mab_c00219{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00219{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m70_c00219{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00219{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00219{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me9_c00219{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00219{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00219{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00219{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00219{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);}
.m36_c00219{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.maa_c00219{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00219{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m95_c00219{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mec_c00219{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00219{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00219{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00219{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00219{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7_c00219{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00219{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m92_c00219{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mda_c00219{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m84_c00219{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00219{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00219{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m82_c00219{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00219{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mde_c00219{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m99_c00219{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me8_c00219{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.me7_c00219{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00219{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me3_c00219{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00219{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00219{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00219{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00219{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00219{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m65_c00219{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m89_c00219{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me2_c00219{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00219{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m2_c00219{transform:matrix(0.398750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398750,0.000000,0.000000,0.250000,0,0);}
.mad_c00219{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls0_c00219{letter-spacing:0.000000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{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__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00219{word-spacing:-18.772926px;}
.wsa_c00219{word-spacing:-10.126582px;}
.ws8_c00219{word-spacing:-9.427562px;}
.ws9_c00219{word-spacing:-8.373945px;}
.ws1_c00219{word-spacing:-7.547771px;}
.ws6_c00219{word-spacing:-7.500000px;}
.ws3_c00219{word-spacing:-6.434263px;}
.ws5_c00219{word-spacing:-1.700637px;}
.wsb_c00219{word-spacing:0.000000px;}
.ws2_c00219{word-spacing:2.786317px;}
.ws0_c00219{word-spacing:2.857143px;}
.ws4_c00219{word-spacing:5.581006px;}
.fc0_c00219{color:transparent;}
.fs4_c00219{font-size:54.000000px;}
.fs2_c00219{font-size:60.000000px;}
.fs1_c00219{font-size:66.000000px;}
.fs3_c00219{font-size:72.000000px;}
.fs0_c00219{font-size:96.000000px;}
.y0_c00219{bottom:0.000000px;}
.y67_c00219{bottom:178.500000px;}
.y35_c00219{bottom:179.700000px;}
.y34_c00219{bottom:193.800000px;}
.y66_c00219{bottom:196.500000px;}
.y33_c00219{bottom:208.500000px;}
.y65_c00219{bottom:214.500000px;}
.y32_c00219{bottom:225.750000px;}
.y64_c00219{bottom:232.200000px;}
.y31_c00219{bottom:241.800000px;}
.y63_c00219{bottom:250.200000px;}
.y30_c00219{bottom:260.850000px;}
.y62_c00219{bottom:267.900000px;}
.y2f_c00219{bottom:278.850000px;}
.y61_c00219{bottom:288.900000px;}
.y2e_c00219{bottom:296.550000px;}
.y60_c00219{bottom:307.650000px;}
.y2d_c00219{bottom:314.250000px;}
.y5f_c00219{bottom:326.400000px;}
.y2c_c00219{bottom:336.900000px;}
.y5e_c00219{bottom:344.100000px;}
.y2b_c00219{bottom:354.600000px;}
.y5d_c00219{bottom:370.800000px;}
.y2a_c00219{bottom:371.550000px;}
.y5c_c00219{bottom:388.800000px;}
.y29_c00219{bottom:390.600000px;}
.y28_c00219{bottom:408.300000px;}
.y5b_c00219{bottom:410.400000px;}
.y27_c00219{bottom:428.100000px;}
.y5a_c00219{bottom:441.000000px;}
.y26_c00219{bottom:447.900000px;}
.y59_c00219{bottom:463.200000px;}
.y25_c00219{bottom:472.650000px;}
.y58_c00219{bottom:485.550000px;}
.y24_c00219{bottom:492.450000px;}
.y57_c00219{bottom:503.550000px;}
.y23_c00219{bottom:512.700000px;}
.y56_c00219{bottom:521.250000px;}
.y22_c00219{bottom:534.900000px;}
.y55_c00219{bottom:539.250000px;}
.y21_c00219{bottom:553.650000px;}
.y54_c00219{bottom:557.250000px;}
.y20_c00219{bottom:571.650000px;}
.y53_c00219{bottom:574.950000px;}
.y1f_c00219{bottom:589.350000px;}
.y52_c00219{bottom:592.950000px;}
.y1e_c00219{bottom:607.350000px;}
.y51_c00219{bottom:610.500000px;}
.y1d_c00219{bottom:625.050000px;}
.y50_c00219{bottom:628.500000px;}
.y1c_c00219{bottom:643.050000px;}
.y4f_c00219{bottom:645.450000px;}
.y1b_c00219{bottom:660.750000px;}
.y4e_c00219{bottom:663.450000px;}
.y1a_c00219{bottom:678.750000px;}
.y4d_c00219{bottom:681.150000px;}
.y19_c00219{bottom:696.450000px;}
.y4c_c00219{bottom:698.850000px;}
.y18_c00219{bottom:714.150000px;}
.y4b_c00219{bottom:716.850000px;}
.y17_c00219{bottom:732.150000px;}
.y4a_c00219{bottom:734.550000px;}
.y16_c00219{bottom:749.850000px;}
.y49_c00219{bottom:752.550000px;}
.y15_c00219{bottom:767.850000px;}
.y48_c00219{bottom:770.250000px;}
.y14_c00219{bottom:785.550000px;}
.y47_c00219{bottom:788.250000px;}
.y46_c00219{bottom:805.950000px;}
.y13_c00219{bottom:806.400000px;}
.y45_c00219{bottom:824.250000px;}
.y12_c00219{bottom:824.400000px;}
.y44_c00219{bottom:841.500000px;}
.y11_c00219{bottom:842.400000px;}
.y43_c00219{bottom:859.500000px;}
.y10_c00219{bottom:860.400000px;}
.y42_c00219{bottom:877.200000px;}
.yf_c00219{bottom:878.100000px;}
.y41_c00219{bottom:895.200000px;}
.ye_c00219{bottom:895.800000px;}
.y40_c00219{bottom:912.900000px;}
.yd_c00219{bottom:913.500000px;}
.y3f_c00219{bottom:930.600000px;}
.yc_c00219{bottom:931.500000px;}
.y3e_c00219{bottom:948.600000px;}
.yb_c00219{bottom:949.500000px;}
.y3d_c00219{bottom:966.300000px;}
.ya_c00219{bottom:966.750000px;}
.y3c_c00219{bottom:984.000000px;}
.y9_c00219{bottom:984.750000px;}
.y3b_c00219{bottom:1002.000000px;}
.y8_c00219{bottom:1002.450000px;}
.y3a_c00219{bottom:1019.700000px;}
.y7_c00219{bottom:1020.450000px;}
.y39_c00219{bottom:1037.400000px;}
.y6_c00219{bottom:1038.150000px;}
.y38_c00219{bottom:1055.100000px;}
.y5_c00219{bottom:1055.850000px;}
.y37_c00219{bottom:1073.100000px;}
.y4_c00219{bottom:1073.850000px;}
.y36_c00219{bottom:1090.800000px;}
.y3_c00219{bottom:1091.550000px;}
.y2_c00219{bottom:1109.100000px;}
.y1_c00219{bottom:1135.800000px;}
.h6_c00219{height:54.000000px;}
.h4_c00219{height:60.000000px;}
.h3_c00219{height:66.000000px;}
.h5_c00219{height:72.000000px;}
.h2_c00219{height:96.000000px;}
.h1_c00219{height:1269.000000px;}
.h0_c00219{height:1269.359985px;}
.w1_c00219{width:963.000000px;}
.w0_c00219{width:963.359985px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:176.400000px;}
.x84_c00219{left:178.500000px;}
.x82_c00219{left:179.700000px;}
.xa0_c00219{left:193.350000px;}
.x4_c00219{left:195.150000px;}
.x22_c00219{left:196.200000px;}
.x3f_c00219{left:197.400000px;}
.xa1_c00219{left:207.300000px;}
.x85_c00219{left:210.900000px;}
.x11_c00219{left:214.500000px;}
.x8e_c00219{left:216.000000px;}
.x89_c00219{left:217.350000px;}
.x23_c00219{left:219.300000px;}
.x95_c00219{left:221.400000px;}
.x8b_c00219{left:222.900000px;}
.x1a_c00219{left:226.350000px;}
.x9e_c00219{left:227.400000px;}
.x61_c00219{left:231.450000px;}
.x6e_c00219{left:232.650000px;}
.x2a_c00219{left:234.000000px;}
.x71_c00219{left:235.800000px;}
.x51_c00219{left:236.850000px;}
.x9a_c00219{left:238.650000px;}
.x4c_c00219{left:240.300000px;}
.x59_c00219{left:241.800000px;}
.x83_c00219{left:243.000000px;}
.x12_c00219{left:244.350000px;}
.x48_c00219{left:247.050000px;}
.x2b_c00219{left:248.100000px;}
.x4d_c00219{left:251.100000px;}
.x55_c00219{left:252.600000px;}
.x81_c00219{left:254.100000px;}
.x6f_c00219{left:256.800000px;}
.x24_c00219{left:257.850000px;}
.x2_c00219{left:259.200000px;}
.x8c_c00219{left:261.000000px;}
.x93_c00219{left:263.550000px;}
.x1b_c00219{left:265.650000px;}
.x33_c00219{left:267.450000px;}
.x7c_c00219{left:268.500000px;}
.x39_c00219{left:270.300000px;}
.x40_c00219{left:272.250000px;}
.x44_c00219{left:274.950000px;}
.x64_c00219{left:276.450000px;}
.x70_c00219{left:278.400000px;}
.x2c_c00219{left:280.200000px;}
.x56_c00219{left:283.200000px;}
.x99_c00219{left:286.200000px;}
.x1c_c00219{left:287.550000px;}
.x52_c00219{left:290.550000px;}
.x65_c00219{left:291.900000px;}
.x91_c00219{left:293.700000px;}
.x13_c00219{left:295.050000px;}
.x79_c00219{left:298.650000px;}
.x34_c00219{left:299.850000px;}
.x25_c00219{left:301.350000px;}
.x62_c00219{left:303.450000px;}
.x8f_c00219{left:306.000000px;}
.x5f_c00219{left:308.400000px;}
.x14_c00219{left:310.500000px;}
.x76_c00219{left:313.350000px;}
.x2d_c00219{left:315.150000px;}
.x45_c00219{left:316.350000px;}
.x49_c00219{left:318.450000px;}
.x35_c00219{left:320.400000px;}
.x96_c00219{left:322.500000px;}
.x7b_c00219{left:326.700000px;}
.x66_c00219{left:328.950000px;}
.x5a_c00219{left:330.300000px;}
.x8d_c00219{left:331.500000px;}
.x74_c00219{left:332.700000px;}
.x2e_c00219{left:334.650000px;}
.x26_c00219{left:335.850000px;}
.x3a_c00219{left:336.900000px;}
.x1d_c00219{left:337.950000px;}
.x97_c00219{left:339.750000px;}
.x69_c00219{left:342.600000px;}
.x7e_c00219{left:345.900000px;}
.x36_c00219{left:347.400000px;}
.x2f_c00219{left:349.050000px;}
.x4e_c00219{left:350.850000px;}
.x86_c00219{left:352.050000px;}
.x46_c00219{left:354.450000px;}
.x41_c00219{left:357.600000px;}
.x15_c00219{left:359.850000px;}
.x6a_c00219{left:361.650000px;}
.x5b_c00219{left:367.050000px;}
.x72_c00219{left:368.700000px;}
.x94_c00219{left:370.500000px;}
.x63_c00219{left:371.550000px;}
.x4f_c00219{left:372.750000px;}
.x3d_c00219{left:374.550000px;}
.x9b_c00219{left:375.750000px;}
.x16_c00219{left:377.850000px;}
.x1e_c00219{left:379.050000px;}
.x6c_c00219{left:380.250000px;}
.x30_c00219{left:381.750000px;}
.x5_c00219{left:383.400000px;}
.x9f_c00219{left:385.500000px;}
.x77_c00219{left:387.900000px;}
.x37_c00219{left:390.600000px;}
.x75_c00219{left:392.100000px;}
.x98_c00219{left:394.200000px;}
.x53_c00219{left:396.000000px;}
.x92_c00219{left:398.850000px;}
.x6d_c00219{left:403.650000px;}
.x67_c00219{left:405.300000px;}
.x1f_c00219{left:411.450000px;}
.x3e_c00219{left:413.400000px;}
.x7f_c00219{left:414.750000px;}
.x27_c00219{left:417.900000px;}
.x9c_c00219{left:418.950000px;}
.x3_c00219{left:421.500000px;}
.x60_c00219{left:423.900000px;}
.x17_c00219{left:425.700000px;}
.x57_c00219{left:430.800000px;}
.x50_c00219{left:432.750000px;}
.x20_c00219{left:434.550000px;}
.x8a_c00219{left:436.950000px;}
.x38_c00219{left:440.700000px;}
.x47_c00219{left:442.950000px;}
.x87_c00219{left:444.150000px;}
.x5c_c00219{left:447.300000px;}
.x4a_c00219{left:449.850000px;}
.x28_c00219{left:451.800000px;}
.x5e_c00219{left:453.450000px;}
.x42_c00219{left:455.550000px;}
.x18_c00219{left:457.800000px;}
.x6b_c00219{left:458.850000px;}
.x31_c00219{left:461.250000px;}
.x6_c00219{left:465.150000px;}
.x3b_c00219{left:467.100000px;}
.x54_c00219{left:470.100000px;}
.x9d_c00219{left:472.950000px;}
.x68_c00219{left:474.450000px;}
.x5d_c00219{left:476.850000px;}
.x88_c00219{left:478.650000px;}
.x7_c00219{left:480.600000px;}
.x21_c00219{left:483.450000px;}
.x7d_c00219{left:486.600000px;}
.x43_c00219{left:487.950000px;}
.x19_c00219{left:490.200000px;}
.x80_c00219{left:491.400000px;}
.x73_c00219{left:492.900000px;}
.x78_c00219{left:494.250000px;}
.x3c_c00219{left:496.200000px;}
.x32_c00219{left:498.750000px;}
.x4b_c00219{left:500.250000px;}
.x29_c00219{left:501.900000px;}
.x58_c00219{left:503.550000px;}
.x90_c00219{left:505.050000px;}
.x7a_c00219{left:508.800000px;}
.x8_c00219{left:533.550000px;}
.x122_c00219{left:534.900000px;}
.x125_c00219{left:536.400000px;}
.x12d_c00219{left:543.750000px;}
.x12e_c00219{left:549.150000px;}
.xa2_c00219{left:550.800000px;}
.xbd_c00219{left:552.450000px;}
.xdf_c00219{left:553.800000px;}
.xf8_c00219{left:555.000000px;}
.x131_c00219{left:569.250000px;}
.x127_c00219{left:571.650000px;}
.x119_c00219{left:574.350000px;}
.x107_c00219{left:576.900000px;}
.xf2_c00219{left:580.200000px;}
.xd3_c00219{left:583.350000px;}
.x104_c00219{left:584.400000px;}
.xbe_c00219{left:585.900000px;}
.xa3_c00219{left:587.100000px;}
.xe1_c00219{left:589.350000px;}
.x116_c00219{left:591.450000px;}
.x110_c00219{left:592.500000px;}
.xcf_c00219{left:594.150000px;}
.xdb_c00219{left:595.350000px;}
.xaf_c00219{left:598.050000px;}
.xea_c00219{left:599.700000px;}
.xed_c00219{left:600.900000px;}
.xf3_c00219{left:602.550000px;}
.x10b_c00219{left:604.500000px;}
.xbf_c00219{left:606.450000px;}
.xca_c00219{left:608.700000px;}
.xe2_c00219{left:610.200000px;}
.xc4_c00219{left:612.450000px;}
.x109_c00219{left:613.950000px;}
.x112_c00219{left:615.300000px;}
.xb5_c00219{left:616.800000px;}
.xa4_c00219{left:619.200000px;}
.x9_c00219{left:621.000000px;}
.xb0_c00219{left:623.250000px;}
.x10c_c00219{left:626.400000px;}
.xfa_c00219{left:630.000000px;}
.x11e_c00219{left:631.650000px;}
.x12c_c00219{left:632.850000px;}
.xaa_c00219{left:634.650000px;}
.xe3_c00219{left:637.500000px;}
.xb1_c00219{left:640.500000px;}
.xe5_c00219{left:642.750000px;}
.xeb_c00219{left:645.000000px;}
.x100_c00219{left:646.650000px;}
.xc5_c00219{left:649.500000px;}
.xb6_c00219{left:651.000000px;}
.x11f_c00219{left:652.200000px;}
.x105_c00219{left:654.600000px;}
.x12a_c00219{left:657.300000px;}
.xa5_c00219{left:658.500000px;}
.xe6_c00219{left:661.500000px;}
.xa_c00219{left:664.500000px;}
.xf7_c00219{left:667.050000px;}
.xd4_c00219{left:668.700000px;}
.xb7_c00219{left:670.500000px;}
.x101_c00219{left:671.550000px;}
.xdd_c00219{left:672.600000px;}
.x128_c00219{left:673.950000px;}
.xb_c00219{left:675.600000px;}
.xc6_c00219{left:677.550000px;}
.x12b_c00219{left:678.900000px;}
.xab_c00219{left:680.400000px;}
.xa6_c00219{left:681.900000px;}
.xd5_c00219{left:683.100000px;}
.xf4_c00219{left:686.700000px;}
.x10d_c00219{left:688.200000px;}
.xcb_c00219{left:689.400000px;}
.xee_c00219{left:692.400000px;}
.xde_c00219{left:695.250000px;}
.x108_c00219{left:697.200000px;}
.xb2_c00219{left:700.650000px;}
.xb8_c00219{left:702.900000px;}
.xd0_c00219{left:704.250000px;}
.x132_c00219{left:705.300000px;}
.xac_c00219{left:706.650000px;}
.xdc_c00219{left:712.050000px;}
.xfb_c00219{left:714.600000px;}
.x120_c00219{left:717.300000px;}
.xb3_c00219{left:718.950000px;}
.xc7_c00219{left:721.500000px;}
.xc_c00219{left:723.150000px;}
.xd6_c00219{left:724.500000px;}
.xc0_c00219{left:726.300000px;}
.x11c_c00219{left:728.400000px;}
.xb9_c00219{left:729.900000px;}
.xa7_c00219{left:731.550000px;}
.xec_c00219{left:733.500000px;}
.xe7_c00219{left:735.300000px;}
.xad_c00219{left:737.250000px;}
.x130_c00219{left:738.600000px;}
.x113_c00219{left:739.650000px;}
.x11a_c00219{left:741.450000px;}
.xef_c00219{left:744.600000px;}
.x10e_c00219{left:745.800000px;}
.xd_c00219{left:746.850000px;}
.xcc_c00219{left:749.550000px;}
.xc1_c00219{left:752.550000px;}
.x102_c00219{left:753.600000px;}
.x133_c00219{left:754.650000px;}
.xf9_c00219{left:756.150000px;}
.xd1_c00219{left:757.500000px;}
.x114_c00219{left:759.450000px;}
.xf5_c00219{left:763.050000px;}
.xc2_c00219{left:764.100000px;}
.xe_c00219{left:765.150000px;}
.x11d_c00219{left:766.350000px;}
.xd7_c00219{left:771.300000px;}
.xfe_c00219{left:772.650000px;}
.x129_c00219{left:773.700000px;}
.xcd_c00219{left:775.500000px;}
.xae_c00219{left:776.550000px;}
.xd2_c00219{left:778.050000px;}
.x118_c00219{left:779.850000px;}
.x10f_c00219{left:783.900000px;}
.x121_c00219{left:786.000000px;}
.xba_c00219{left:791.100000px;}
.x123_c00219{left:792.900000px;}
.xf_c00219{left:795.750000px;}
.x12f_c00219{left:797.250000px;}
.xd8_c00219{left:799.350000px;}
.x11b_c00219{left:801.600000px;}
.xb4_c00219{left:803.550000px;}
.xfc_c00219{left:805.050000px;}
.x124_c00219{left:807.000000px;}
.x103_c00219{left:809.100000px;}
.xa8_c00219{left:811.050000px;}
.xe0_c00219{left:813.300000px;}
.x126_c00219{left:814.350000px;}
.x10_c00219{left:815.550000px;}
.xe8_c00219{left:818.400000px;}
.xc8_c00219{left:819.750000px;}
.xfd_c00219{left:821.550000px;}
.x134_c00219{left:822.750000px;}
.xd9_c00219{left:824.250000px;}
.x106_c00219{left:825.300000px;}
.xf0_c00219{left:826.350000px;}
.xce_c00219{left:827.400000px;}
.xbb_c00219{left:829.650000px;}
.xe4_c00219{left:832.800000px;}
.x117_c00219{left:834.450000px;}
.xda_c00219{left:835.800000px;}
.xff_c00219{left:838.200000px;}
.xa9_c00219{left:839.850000px;}
.xc9_c00219{left:841.650000px;}
.x111_c00219{left:844.050000px;}
.xf1_c00219{left:846.150000px;}
.xf6_c00219{left:847.350000px;}
.xc3_c00219{left:848.700000px;}
.xe9_c00219{left:855.900000px;}
.xbc_c00219{left:859.500000px;}
.x10a_c00219{left:860.850000px;}
.x115_c00219{left:881.850000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws7_c00219{word-spacing:-16.687045pt;}
.wsa_c00219{word-spacing:-9.001406pt;}
.ws8_c00219{word-spacing:-8.380055pt;}
.ws9_c00219{word-spacing:-7.443506pt;}
.ws1_c00219{word-spacing:-6.709130pt;}
.ws6_c00219{word-spacing:-6.666667pt;}
.ws3_c00219{word-spacing:-5.719345pt;}
.ws5_c00219{word-spacing:-1.511677pt;}
.wsb_c00219{word-spacing:0.000000pt;}
.ws2_c00219{word-spacing:2.476726pt;}
.ws0_c00219{word-spacing:2.539683pt;}
.ws4_c00219{word-spacing:4.960894pt;}
.fs4_c00219{font-size:48.000000pt;}
.fs2_c00219{font-size:53.333333pt;}
.fs1_c00219{font-size:58.666667pt;}
.fs3_c00219{font-size:64.000000pt;}
.fs0_c00219{font-size:85.333333pt;}
.y0_c00219{bottom:0.000000pt;}
.y67_c00219{bottom:158.666667pt;}
.y35_c00219{bottom:159.733333pt;}
.y34_c00219{bottom:172.266667pt;}
.y66_c00219{bottom:174.666667pt;}
.y33_c00219{bottom:185.333333pt;}
.y65_c00219{bottom:190.666667pt;}
.y32_c00219{bottom:200.666667pt;}
.y64_c00219{bottom:206.400000pt;}
.y31_c00219{bottom:214.933333pt;}
.y63_c00219{bottom:222.400000pt;}
.y30_c00219{bottom:231.866667pt;}
.y62_c00219{bottom:238.133333pt;}
.y2f_c00219{bottom:247.866667pt;}
.y61_c00219{bottom:256.800000pt;}
.y2e_c00219{bottom:263.600000pt;}
.y60_c00219{bottom:273.466667pt;}
.y2d_c00219{bottom:279.333333pt;}
.y5f_c00219{bottom:290.133333pt;}
.y2c_c00219{bottom:299.466667pt;}
.y5e_c00219{bottom:305.866667pt;}
.y2b_c00219{bottom:315.200000pt;}
.y5d_c00219{bottom:329.600000pt;}
.y2a_c00219{bottom:330.266667pt;}
.y5c_c00219{bottom:345.600000pt;}
.y29_c00219{bottom:347.200000pt;}
.y28_c00219{bottom:362.933333pt;}
.y5b_c00219{bottom:364.800000pt;}
.y27_c00219{bottom:380.533333pt;}
.y5a_c00219{bottom:392.000000pt;}
.y26_c00219{bottom:398.133333pt;}
.y59_c00219{bottom:411.733333pt;}
.y25_c00219{bottom:420.133333pt;}
.y58_c00219{bottom:431.600000pt;}
.y24_c00219{bottom:437.733333pt;}
.y57_c00219{bottom:447.600000pt;}
.y23_c00219{bottom:455.733333pt;}
.y56_c00219{bottom:463.333333pt;}
.y22_c00219{bottom:475.466667pt;}
.y55_c00219{bottom:479.333333pt;}
.y21_c00219{bottom:492.133333pt;}
.y54_c00219{bottom:495.333333pt;}
.y20_c00219{bottom:508.133333pt;}
.y53_c00219{bottom:511.066667pt;}
.y1f_c00219{bottom:523.866667pt;}
.y52_c00219{bottom:527.066667pt;}
.y1e_c00219{bottom:539.866667pt;}
.y51_c00219{bottom:542.666667pt;}
.y1d_c00219{bottom:555.600000pt;}
.y50_c00219{bottom:558.666667pt;}
.y1c_c00219{bottom:571.600000pt;}
.y4f_c00219{bottom:573.733333pt;}
.y1b_c00219{bottom:587.333333pt;}
.y4e_c00219{bottom:589.733333pt;}
.y1a_c00219{bottom:603.333333pt;}
.y4d_c00219{bottom:605.466667pt;}
.y19_c00219{bottom:619.066667pt;}
.y4c_c00219{bottom:621.200000pt;}
.y18_c00219{bottom:634.800000pt;}
.y4b_c00219{bottom:637.200000pt;}
.y17_c00219{bottom:650.800000pt;}
.y4a_c00219{bottom:652.933333pt;}
.y16_c00219{bottom:666.533333pt;}
.y49_c00219{bottom:668.933333pt;}
.y15_c00219{bottom:682.533333pt;}
.y48_c00219{bottom:684.666667pt;}
.y14_c00219{bottom:698.266667pt;}
.y47_c00219{bottom:700.666667pt;}
.y46_c00219{bottom:716.400000pt;}
.y13_c00219{bottom:716.800000pt;}
.y45_c00219{bottom:732.666667pt;}
.y12_c00219{bottom:732.800000pt;}
.y44_c00219{bottom:748.000000pt;}
.y11_c00219{bottom:748.800000pt;}
.y43_c00219{bottom:764.000000pt;}
.y10_c00219{bottom:764.800000pt;}
.y42_c00219{bottom:779.733333pt;}
.yf_c00219{bottom:780.533333pt;}
.y41_c00219{bottom:795.733333pt;}
.ye_c00219{bottom:796.266667pt;}
.y40_c00219{bottom:811.466667pt;}
.yd_c00219{bottom:812.000000pt;}
.y3f_c00219{bottom:827.200000pt;}
.yc_c00219{bottom:828.000000pt;}
.y3e_c00219{bottom:843.200000pt;}
.yb_c00219{bottom:844.000000pt;}
.y3d_c00219{bottom:858.933333pt;}
.ya_c00219{bottom:859.333333pt;}
.y3c_c00219{bottom:874.666667pt;}
.y9_c00219{bottom:875.333333pt;}
.y3b_c00219{bottom:890.666667pt;}
.y8_c00219{bottom:891.066667pt;}
.y3a_c00219{bottom:906.400000pt;}
.y7_c00219{bottom:907.066667pt;}
.y39_c00219{bottom:922.133333pt;}
.y6_c00219{bottom:922.800000pt;}
.y38_c00219{bottom:937.866667pt;}
.y5_c00219{bottom:938.533333pt;}
.y37_c00219{bottom:953.866667pt;}
.y4_c00219{bottom:954.533333pt;}
.y36_c00219{bottom:969.600000pt;}
.y3_c00219{bottom:970.266667pt;}
.y2_c00219{bottom:985.866667pt;}
.y1_c00219{bottom:1009.600000pt;}
.h6_c00219{height:48.000000pt;}
.h4_c00219{height:53.333333pt;}
.h3_c00219{height:58.666667pt;}
.h5_c00219{height:64.000000pt;}
.h2_c00219{height:85.333333pt;}
.h1_c00219{height:1128.000000pt;}
.h0_c00219{height:1128.319987pt;}
.w1_c00219{width:856.000000pt;}
.w0_c00219{width:856.319987pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:156.800000pt;}
.x84_c00219{left:158.666667pt;}
.x82_c00219{left:159.733333pt;}
.xa0_c00219{left:171.866667pt;}
.x4_c00219{left:173.466667pt;}
.x22_c00219{left:174.400000pt;}
.x3f_c00219{left:175.466667pt;}
.xa1_c00219{left:184.266667pt;}
.x85_c00219{left:187.466667pt;}
.x11_c00219{left:190.666667pt;}
.x8e_c00219{left:192.000000pt;}
.x89_c00219{left:193.200000pt;}
.x23_c00219{left:194.933333pt;}
.x95_c00219{left:196.800000pt;}
.x8b_c00219{left:198.133333pt;}
.x1a_c00219{left:201.200000pt;}
.x9e_c00219{left:202.133333pt;}
.x61_c00219{left:205.733333pt;}
.x6e_c00219{left:206.800000pt;}
.x2a_c00219{left:208.000000pt;}
.x71_c00219{left:209.600000pt;}
.x51_c00219{left:210.533333pt;}
.x9a_c00219{left:212.133333pt;}
.x4c_c00219{left:213.600000pt;}
.x59_c00219{left:214.933333pt;}
.x83_c00219{left:216.000000pt;}
.x12_c00219{left:217.200000pt;}
.x48_c00219{left:219.600000pt;}
.x2b_c00219{left:220.533333pt;}
.x4d_c00219{left:223.200000pt;}
.x55_c00219{left:224.533333pt;}
.x81_c00219{left:225.866667pt;}
.x6f_c00219{left:228.266667pt;}
.x24_c00219{left:229.200000pt;}
.x2_c00219{left:230.400000pt;}
.x8c_c00219{left:232.000000pt;}
.x93_c00219{left:234.266667pt;}
.x1b_c00219{left:236.133333pt;}
.x33_c00219{left:237.733333pt;}
.x7c_c00219{left:238.666667pt;}
.x39_c00219{left:240.266667pt;}
.x40_c00219{left:242.000000pt;}
.x44_c00219{left:244.400000pt;}
.x64_c00219{left:245.733333pt;}
.x70_c00219{left:247.466667pt;}
.x2c_c00219{left:249.066667pt;}
.x56_c00219{left:251.733333pt;}
.x99_c00219{left:254.400000pt;}
.x1c_c00219{left:255.600000pt;}
.x52_c00219{left:258.266667pt;}
.x65_c00219{left:259.466667pt;}
.x91_c00219{left:261.066667pt;}
.x13_c00219{left:262.266667pt;}
.x79_c00219{left:265.466667pt;}
.x34_c00219{left:266.533333pt;}
.x25_c00219{left:267.866667pt;}
.x62_c00219{left:269.733333pt;}
.x8f_c00219{left:272.000000pt;}
.x5f_c00219{left:274.133333pt;}
.x14_c00219{left:276.000000pt;}
.x76_c00219{left:278.533333pt;}
.x2d_c00219{left:280.133333pt;}
.x45_c00219{left:281.200000pt;}
.x49_c00219{left:283.066667pt;}
.x35_c00219{left:284.800000pt;}
.x96_c00219{left:286.666667pt;}
.x7b_c00219{left:290.400000pt;}
.x66_c00219{left:292.400000pt;}
.x5a_c00219{left:293.600000pt;}
.x8d_c00219{left:294.666667pt;}
.x74_c00219{left:295.733333pt;}
.x2e_c00219{left:297.466667pt;}
.x26_c00219{left:298.533333pt;}
.x3a_c00219{left:299.466667pt;}
.x1d_c00219{left:300.400000pt;}
.x97_c00219{left:302.000000pt;}
.x69_c00219{left:304.533333pt;}
.x7e_c00219{left:307.466667pt;}
.x36_c00219{left:308.800000pt;}
.x2f_c00219{left:310.266667pt;}
.x4e_c00219{left:311.866667pt;}
.x86_c00219{left:312.933333pt;}
.x46_c00219{left:315.066667pt;}
.x41_c00219{left:317.866667pt;}
.x15_c00219{left:319.866667pt;}
.x6a_c00219{left:321.466667pt;}
.x5b_c00219{left:326.266667pt;}
.x72_c00219{left:327.733333pt;}
.x94_c00219{left:329.333333pt;}
.x63_c00219{left:330.266667pt;}
.x4f_c00219{left:331.333333pt;}
.x3d_c00219{left:332.933333pt;}
.x9b_c00219{left:334.000000pt;}
.x16_c00219{left:335.866667pt;}
.x1e_c00219{left:336.933333pt;}
.x6c_c00219{left:338.000000pt;}
.x30_c00219{left:339.333333pt;}
.x5_c00219{left:340.800000pt;}
.x9f_c00219{left:342.666667pt;}
.x77_c00219{left:344.800000pt;}
.x37_c00219{left:347.200000pt;}
.x75_c00219{left:348.533333pt;}
.x98_c00219{left:350.400000pt;}
.x53_c00219{left:352.000000pt;}
.x92_c00219{left:354.533333pt;}
.x6d_c00219{left:358.800000pt;}
.x67_c00219{left:360.266667pt;}
.x1f_c00219{left:365.733333pt;}
.x3e_c00219{left:367.466667pt;}
.x7f_c00219{left:368.666667pt;}
.x27_c00219{left:371.466667pt;}
.x9c_c00219{left:372.400000pt;}
.x3_c00219{left:374.666667pt;}
.x60_c00219{left:376.800000pt;}
.x17_c00219{left:378.400000pt;}
.x57_c00219{left:382.933333pt;}
.x50_c00219{left:384.666667pt;}
.x20_c00219{left:386.266667pt;}
.x8a_c00219{left:388.400000pt;}
.x38_c00219{left:391.733333pt;}
.x47_c00219{left:393.733333pt;}
.x87_c00219{left:394.800000pt;}
.x5c_c00219{left:397.600000pt;}
.x4a_c00219{left:399.866667pt;}
.x28_c00219{left:401.600000pt;}
.x5e_c00219{left:403.066667pt;}
.x42_c00219{left:404.933333pt;}
.x18_c00219{left:406.933333pt;}
.x6b_c00219{left:407.866667pt;}
.x31_c00219{left:410.000000pt;}
.x6_c00219{left:413.466667pt;}
.x3b_c00219{left:415.200000pt;}
.x54_c00219{left:417.866667pt;}
.x9d_c00219{left:420.400000pt;}
.x68_c00219{left:421.733333pt;}
.x5d_c00219{left:423.866667pt;}
.x88_c00219{left:425.466667pt;}
.x7_c00219{left:427.200000pt;}
.x21_c00219{left:429.733333pt;}
.x7d_c00219{left:432.533333pt;}
.x43_c00219{left:433.733333pt;}
.x19_c00219{left:435.733333pt;}
.x80_c00219{left:436.800000pt;}
.x73_c00219{left:438.133333pt;}
.x78_c00219{left:439.333333pt;}
.x3c_c00219{left:441.066667pt;}
.x32_c00219{left:443.333333pt;}
.x4b_c00219{left:444.666667pt;}
.x29_c00219{left:446.133333pt;}
.x58_c00219{left:447.600000pt;}
.x90_c00219{left:448.933333pt;}
.x7a_c00219{left:452.266667pt;}
.x8_c00219{left:474.266667pt;}
.x122_c00219{left:475.466667pt;}
.x125_c00219{left:476.800000pt;}
.x12d_c00219{left:483.333333pt;}
.x12e_c00219{left:488.133333pt;}
.xa2_c00219{left:489.600000pt;}
.xbd_c00219{left:491.066667pt;}
.xdf_c00219{left:492.266667pt;}
.xf8_c00219{left:493.333333pt;}
.x131_c00219{left:506.000000pt;}
.x127_c00219{left:508.133333pt;}
.x119_c00219{left:510.533333pt;}
.x107_c00219{left:512.800000pt;}
.xf2_c00219{left:515.733333pt;}
.xd3_c00219{left:518.533333pt;}
.x104_c00219{left:519.466667pt;}
.xbe_c00219{left:520.800000pt;}
.xa3_c00219{left:521.866667pt;}
.xe1_c00219{left:523.866667pt;}
.x116_c00219{left:525.733333pt;}
.x110_c00219{left:526.666667pt;}
.xcf_c00219{left:528.133333pt;}
.xdb_c00219{left:529.200000pt;}
.xaf_c00219{left:531.600000pt;}
.xea_c00219{left:533.066667pt;}
.xed_c00219{left:534.133333pt;}
.xf3_c00219{left:535.600000pt;}
.x10b_c00219{left:537.333333pt;}
.xbf_c00219{left:539.066667pt;}
.xca_c00219{left:541.066667pt;}
.xe2_c00219{left:542.400000pt;}
.xc4_c00219{left:544.400000pt;}
.x109_c00219{left:545.733333pt;}
.x112_c00219{left:546.933333pt;}
.xb5_c00219{left:548.266667pt;}
.xa4_c00219{left:550.400000pt;}
.x9_c00219{left:552.000000pt;}
.xb0_c00219{left:554.000000pt;}
.x10c_c00219{left:556.800000pt;}
.xfa_c00219{left:560.000000pt;}
.x11e_c00219{left:561.466667pt;}
.x12c_c00219{left:562.533333pt;}
.xaa_c00219{left:564.133333pt;}
.xe3_c00219{left:566.666667pt;}
.xb1_c00219{left:569.333333pt;}
.xe5_c00219{left:571.333333pt;}
.xeb_c00219{left:573.333333pt;}
.x100_c00219{left:574.800000pt;}
.xc5_c00219{left:577.333333pt;}
.xb6_c00219{left:578.666667pt;}
.x11f_c00219{left:579.733333pt;}
.x105_c00219{left:581.866667pt;}
.x12a_c00219{left:584.266667pt;}
.xa5_c00219{left:585.333333pt;}
.xe6_c00219{left:588.000000pt;}
.xa_c00219{left:590.666667pt;}
.xf7_c00219{left:592.933333pt;}
.xd4_c00219{left:594.400000pt;}
.xb7_c00219{left:596.000000pt;}
.x101_c00219{left:596.933333pt;}
.xdd_c00219{left:597.866667pt;}
.x128_c00219{left:599.066667pt;}
.xb_c00219{left:600.533333pt;}
.xc6_c00219{left:602.266667pt;}
.x12b_c00219{left:603.466667pt;}
.xab_c00219{left:604.800000pt;}
.xa6_c00219{left:606.133333pt;}
.xd5_c00219{left:607.200000pt;}
.xf4_c00219{left:610.400000pt;}
.x10d_c00219{left:611.733333pt;}
.xcb_c00219{left:612.800000pt;}
.xee_c00219{left:615.466667pt;}
.xde_c00219{left:618.000000pt;}
.x108_c00219{left:619.733333pt;}
.xb2_c00219{left:622.800000pt;}
.xb8_c00219{left:624.800000pt;}
.xd0_c00219{left:626.000000pt;}
.x132_c00219{left:626.933333pt;}
.xac_c00219{left:628.133333pt;}
.xdc_c00219{left:632.933333pt;}
.xfb_c00219{left:635.200000pt;}
.x120_c00219{left:637.600000pt;}
.xb3_c00219{left:639.066667pt;}
.xc7_c00219{left:641.333333pt;}
.xc_c00219{left:642.800000pt;}
.xd6_c00219{left:644.000000pt;}
.xc0_c00219{left:645.600000pt;}
.x11c_c00219{left:647.466667pt;}
.xb9_c00219{left:648.800000pt;}
.xa7_c00219{left:650.266667pt;}
.xec_c00219{left:652.000000pt;}
.xe7_c00219{left:653.600000pt;}
.xad_c00219{left:655.333333pt;}
.x130_c00219{left:656.533333pt;}
.x113_c00219{left:657.466667pt;}
.x11a_c00219{left:659.066667pt;}
.xef_c00219{left:661.866667pt;}
.x10e_c00219{left:662.933333pt;}
.xd_c00219{left:663.866667pt;}
.xcc_c00219{left:666.266667pt;}
.xc1_c00219{left:668.933333pt;}
.x102_c00219{left:669.866667pt;}
.x133_c00219{left:670.800000pt;}
.xf9_c00219{left:672.133333pt;}
.xd1_c00219{left:673.333333pt;}
.x114_c00219{left:675.066667pt;}
.xf5_c00219{left:678.266667pt;}
.xc2_c00219{left:679.200000pt;}
.xe_c00219{left:680.133333pt;}
.x11d_c00219{left:681.200000pt;}
.xd7_c00219{left:685.600000pt;}
.xfe_c00219{left:686.800000pt;}
.x129_c00219{left:687.733333pt;}
.xcd_c00219{left:689.333333pt;}
.xae_c00219{left:690.266667pt;}
.xd2_c00219{left:691.600000pt;}
.x118_c00219{left:693.200000pt;}
.x10f_c00219{left:696.800000pt;}
.x121_c00219{left:698.666667pt;}
.xba_c00219{left:703.200000pt;}
.x123_c00219{left:704.800000pt;}
.xf_c00219{left:707.333333pt;}
.x12f_c00219{left:708.666667pt;}
.xd8_c00219{left:710.533333pt;}
.x11b_c00219{left:712.533333pt;}
.xb4_c00219{left:714.266667pt;}
.xfc_c00219{left:715.600000pt;}
.x124_c00219{left:717.333333pt;}
.x103_c00219{left:719.200000pt;}
.xa8_c00219{left:720.933333pt;}
.xe0_c00219{left:722.933333pt;}
.x126_c00219{left:723.866667pt;}
.x10_c00219{left:724.933333pt;}
.xe8_c00219{left:727.466667pt;}
.xc8_c00219{left:728.666667pt;}
.xfd_c00219{left:730.266667pt;}
.x134_c00219{left:731.333333pt;}
.xd9_c00219{left:732.666667pt;}
.x106_c00219{left:733.600000pt;}
.xf0_c00219{left:734.533333pt;}
.xce_c00219{left:735.466667pt;}
.xbb_c00219{left:737.466667pt;}
.xe4_c00219{left:740.266667pt;}
.x117_c00219{left:741.733333pt;}
.xda_c00219{left:742.933333pt;}
.xff_c00219{left:745.066667pt;}
.xa9_c00219{left:746.533333pt;}
.xc9_c00219{left:748.133333pt;}
.x111_c00219{left:750.266667pt;}
.xf1_c00219{left:752.133333pt;}
.xf6_c00219{left:753.200000pt;}
.xc3_c00219{left:754.400000pt;}
.xe9_c00219{left:760.800000pt;}
.xbc_c00219{left:764.000000pt;}
.x10a_c00219{left:765.200000pt;}
.x115_c00219{left:783.866667pt;}
}





/* 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_c00220 {
    display:none;
  }
  .loading-indicator_c00220.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00220 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_c00220 { 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_c00220" -> "#page-container .classname_c00220")
 */
.pf_c00220 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00220 { /* 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_c00220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00220 { /* 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_c00220 { /* 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_c00220 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00220 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00220 {overflow:visible;}
  }
}
.c_c00220 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00220 { /* 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_c00220:after { /* webkit #35443 */
  content: '';
}
.t_c00220:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00220 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 */
}
.__c00220 { /* 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_c00220 { /* info for Javascript */
  display:none;
}
.l_c00220 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00220 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00220 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00220: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_c00220 {
    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_c00220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00220.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_c00220 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00220;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.000000;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;}
.m7e_c00220{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m17_c00220{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00220{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m77_c00220{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m100_c00220{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00220{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.md7_c00220{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00220{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m98_c00220{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00220{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00220{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00220{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00220{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00220{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00220{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00220{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m61_c00220{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m7_c00220{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00220{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m27_c00220{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m16_c00220{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.me2_c00220{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.md8_c00220{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mef_c00220{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md4_c00220{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m50_c00220{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00220{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00220{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me6_c00220{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00220{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m4_c00220{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00220{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m82_c00220{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00220{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m108_c00220{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m6_c00220{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00220{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00220{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m49_c00220{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00220{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00220{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00220{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m33_c00220{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m24_c00220{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mf_c00220{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00220{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00220{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m8_c00220{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m111_c00220{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m25_c00220{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00220{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00220{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00220{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00220{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m91_c00220{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00220{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m67_c00220{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.me0_c00220{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m66_c00220{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00220{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00220{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00220{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mca_c00220{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00220{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m47_c00220{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00220{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m5_c00220{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb_c00220{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m94_c00220{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m51_c00220{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00220{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00220{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00220{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00220{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00220{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me7_c00220{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mee_c00220{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m35_c00220{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mde_c00220{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m28_c00220{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00220{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00220{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m90_c00220{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00220{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m55_c00220{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00220{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m22_c00220{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m68_c00220{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m110_c00220{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m79_c00220{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.me1_c00220{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m58_c00220{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m10_c00220{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00220{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00220{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3_c00220{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m39_c00220{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md6_c00220{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m99_c00220{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00220{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00220{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m97_c00220{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2_c00220{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m43_c00220{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m13_c00220{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00220{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00220{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m92_c00220{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00220{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00220{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00220{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00220{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00220{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m26_c00220{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00220{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mab_c00220{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mff_c00220{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.me4_c00220{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00220{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00220{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00220{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m85_c00220{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00220{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m112_c00220{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m48_c00220{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.md_c00220{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m11_c00220{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m81_c00220{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m45_c00220{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00220{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m37_c00220{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00220{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9_c00220{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md2_c00220{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00220{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m116_c00220{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m62_c00220{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00220{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m65_c00220{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00220{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00220{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mc_c00220{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m38_c00220{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m32_c00220{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00220{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00220{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m80_c00220{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00220{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00220{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00220{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.med_c00220{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m88_c00220{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m23_c00220{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m109_c00220{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00220{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.md0_c00220{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m29_c00220{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m15_c00220{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m46_c00220{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00220{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m53_c00220{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m114_c00220{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00220{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m64_c00220{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m105_c00220{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00220{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me9_c00220{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00220{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m75_c00220{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m104_c00220{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m86_c00220{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m56_c00220{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me8_c00220{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00220{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m107_c00220{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m52_c00220{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m57_c00220{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00220{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00220{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m73_c00220{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.me_c00220{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00220{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.ma_c00220{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mda_c00220{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00220{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m87_c00220{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00220{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00220{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m95_c00220{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00220{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00220{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m40_c00220{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m69_c00220{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mad_c00220{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.md3_c00220{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m18_c00220{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00220{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m84_c00220{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m44_c00220{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m78_c00220{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m14_c00220{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mba_c00220{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m41_c00220{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00220{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.me3_c00220{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m36_c00220{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m93_c00220{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00220{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00220{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m113_c00220{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m74_c00220{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m96_c00220{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00220{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00220{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00220{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m106_c00220{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00220{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m34_c00220{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00220{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00220{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.meb_c00220{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00220{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md1_c00220{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mae_c00220{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mac_c00220{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);}
.mec_c00220{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00220{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m76_c00220{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12_c00220{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00220{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00220{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m31_c00220{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me5_c00220{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m42_c00220{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.maf_c00220{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00220{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00220{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00220{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m101_c00220{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00220{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00220{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00220{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mea_c00220{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00220{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00220{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00220{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m71_c00220{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m59_c00220{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00220{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m83_c00220{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00220{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m72_c00220{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m102_c00220{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m19_c00220{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00220{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00220{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00220{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.maa_c00220{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m119_c00220{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00220{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00220{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m118_c00220{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m70_c00220{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m103_c00220{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m60_c00220{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md5_c00220{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00220{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m63_c00220{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m115_c00220{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m54_c00220{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00220{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m89_c00220{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00220{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m117_c00220{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m30_c00220{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00220{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m21_c00220{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00220{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.m20_c00220{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00220{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mce_c00220{transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);}
.md9_c00220{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00220{transform:matrix(0.672000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls0_c00220{letter-spacing:0.000000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{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__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00220{word-spacing:-6.447368px;}
.ws1_c00220{word-spacing:-5.147059px;}
.ws5_c00220{word-spacing:-0.171975px;}
.ws6_c00220{word-spacing:0.000000px;}
.ws4_c00220{word-spacing:14.264706px;}
.ws2_c00220{word-spacing:15.303030px;}
.ws0_c00220{word-spacing:20.000000px;}
.fc0_c00220{color:transparent;}
.fs6_c00220{font-size:42.000000px;}
.fs3_c00220{font-size:48.000000px;}
.fs5_c00220{font-size:54.000000px;}
.fs4_c00220{font-size:60.000000px;}
.fs1_c00220{font-size:66.000000px;}
.fs2_c00220{font-size:72.000000px;}
.fs0_c00220{font-size:78.000000px;}
.y0_c00220{bottom:0.000000px;}
.y40_c00220{bottom:180.150000px;}
.y6c_c00220{bottom:181.950000px;}
.y3f_c00220{bottom:196.650000px;}
.y3e_c00220{bottom:211.350000px;}
.y6b_c00220{bottom:213.150000px;}
.y3d_c00220{bottom:227.550000px;}
.y3c_c00220{bottom:239.400000px;}
.y3b_c00220{bottom:254.100000px;}
.y6a_c00220{bottom:261.300000px;}
.y3a_c00220{bottom:270.000000px;}
.y39_c00220{bottom:285.150000px;}
.y69_c00220{bottom:292.200000px;}
.y38_c00220{bottom:297.000000px;}
.y68_c00220{bottom:309.900000px;}
.y37_c00220{bottom:311.400000px;}
.y67_c00220{bottom:327.600000px;}
.y36_c00220{bottom:328.350000px;}
.y35_c00220{bottom:344.250000px;}
.y66_c00220{bottom:345.300000px;}
.y34_c00220{bottom:358.950000px;}
.y65_c00220{bottom:362.850000px;}
.y33_c00220{bottom:372.000000px;}
.y32_c00220{bottom:386.700000px;}
.y64_c00220{bottom:393.450000px;}
.y31_c00220{bottom:401.400000px;}
.y63_c00220{bottom:411.450000px;}
.y30_c00220{bottom:416.100000px;}
.y2f_c00220{bottom:429.600000px;}
.y62_c00220{bottom:436.950000px;}
.y2e_c00220{bottom:444.000000px;}
.y2d_c00220{bottom:458.700000px;}
.y61_c00220{bottom:459.300000px;}
.y2c_c00220{bottom:473.100000px;}
.y60_c00220{bottom:481.650000px;}
.y2b_c00220{bottom:487.500000px;}
.y2a_c00220{bottom:500.400000px;}
.y5f_c00220{bottom:503.700000px;}
.y29_c00220{bottom:515.550000px;}
.y5e_c00220{bottom:521.700000px;}
.y28_c00220{bottom:529.950000px;}
.y5d_c00220{bottom:543.900000px;}
.y27_c00220{bottom:544.650000px;}
.y26_c00220{bottom:558.750000px;}
.y5c_c00220{bottom:565.800000px;}
.y25_c00220{bottom:573.150000px;}
.y5b_c00220{bottom:583.500000px;}
.y24_c00220{bottom:587.100000px;}
.y23_c00220{bottom:601.200000px;}
.y22_c00220{bottom:615.600000px;}
.y5a_c00220{bottom:618.900000px;}
.y21_c00220{bottom:633.600000px;}
.y59_c00220{bottom:642.600000px;}
.y20_c00220{bottom:648.300000px;}
.y58_c00220{bottom:659.100000px;}
.y1f_c00220{bottom:662.700000px;}
.y1e_c00220{bottom:676.500000px;}
.y57_c00220{bottom:680.400000px;}
.y1d_c00220{bottom:691.200000px;}
.y56_c00220{bottom:702.750000px;}
.y1c_c00220{bottom:705.600000px;}
.y1b_c00220{bottom:720.000000px;}
.y55_c00220{bottom:724.650000px;}
.y1a_c00220{bottom:734.400000px;}
.y54_c00220{bottom:747.000000px;}
.y19_c00220{bottom:748.500000px;}
.y18_c00220{bottom:762.450000px;}
.y53_c00220{bottom:764.700000px;}
.y17_c00220{bottom:776.850000px;}
.y52_c00220{bottom:786.600000px;}
.y16_c00220{bottom:791.250000px;}
.y15_c00220{bottom:805.350000px;}
.y51_c00220{bottom:809.250000px;}
.y14_c00220{bottom:819.600000px;}
.y50_c00220{bottom:827.250000px;}
.y13_c00220{bottom:833.700000px;}
.y4f_c00220{bottom:844.500000px;}
.y12_c00220{bottom:848.100000px;}
.y11_c00220{bottom:862.500000px;}
.y10_c00220{bottom:876.600000px;}
.y4e_c00220{bottom:880.200000px;}
.yf_c00220{bottom:891.000000px;}
.y4d_c00220{bottom:897.900000px;}
.ye_c00220{bottom:904.800000px;}
.y4c_c00220{bottom:915.900000px;}
.yd_c00220{bottom:918.900000px;}
.yc_c00220{bottom:933.300000px;}
.y4b_c00220{bottom:937.650000px;}
.yb_c00220{bottom:947.400000px;}
.y4a_c00220{bottom:960.000000px;}
.ya_c00220{bottom:961.500000px;}
.y9_c00220{bottom:975.900000px;}
.y49_c00220{bottom:977.700000px;}
.y8_c00220{bottom:990.000000px;}
.y48_c00220{bottom:1004.400000px;}
.y47_c00220{bottom:1009.050000px;}
.y45_c00220{bottom:1028.550000px;}
.y7_c00220{bottom:1031.850000px;}
.y44_c00220{bottom:1036.500000px;}
.y46_c00220{bottom:1043.700000px;}
.y6_c00220{bottom:1053.750000px;}
.y43_c00220{bottom:1058.100000px;}
.y5_c00220{bottom:1075.950000px;}
.y42_c00220{bottom:1076.100000px;}
.y4_c00220{bottom:1093.650000px;}
.y41_c00220{bottom:1110.300000px;}
.y3_c00220{bottom:1111.650000px;}
.y2_c00220{bottom:1138.050000px;}
.y1_c00220{bottom:1138.350000px;}
.h8_c00220{height:42.000000px;}
.h5_c00220{height:48.000000px;}
.h7_c00220{height:54.000000px;}
.h6_c00220{height:60.000000px;}
.h3_c00220{height:66.000000px;}
.h4_c00220{height:72.000000px;}
.h2_c00220{height:78.000000px;}
.h0_c00220{height:1268.640015px;}
.h1_c00220{height:1269.000000px;}
.w1_c00220{width:963.000000px;}
.w0_c00220{width:963.359985px;}
.x0_c00220{left:0.000000px;}
.x11_c00220{left:89.250000px;}
.x45_c00220{left:90.450000px;}
.x65_c00220{left:91.500000px;}
.x8f_c00220{left:92.550000px;}
.xa1_c00220{left:93.600000px;}
.xb3_c00220{left:94.650000px;}
.x16_c00220{left:104.700000px;}
.x3_c00220{left:106.950000px;}
.x93_c00220{left:109.050000px;}
.x81_c00220{left:110.850000px;}
.x5c_c00220{left:112.050000px;}
.x66_c00220{left:113.400000px;}
.x6b_c00220{left:114.900000px;}
.xb4_c00220{left:116.550000px;}
.xbd_c00220{left:119.100000px;}
.x46_c00220{left:120.750000px;}
.x87_c00220{left:123.450000px;}
.x3d_c00220{left:124.500000px;}
.x6c_c00220{left:126.000000px;}
.x39_c00220{left:127.200000px;}
.x17_c00220{left:128.400000px;}
.x35_c00220{left:129.450000px;}
.x94_c00220{left:130.950000px;}
.x90_c00220{left:133.200000px;}
.x72_c00220{left:135.000000px;}
.x58_c00220{left:136.500000px;}
.x9b_c00220{left:138.450000px;}
.x2f_c00220{left:139.650000px;}
.x36_c00220{left:141.000000px;}
.xbb_c00220{left:142.500000px;}
.x73_c00220{left:144.300000px;}
.xb_c00220{left:145.650000px;}
.xb5_c00220{left:146.850000px;}
.xa2_c00220{left:147.900000px;}
.xa5_c00220{left:149.700000px;}
.x12_c00220{left:151.200000px;}
.x18_c00220{left:152.550000px;}
.x91_c00220{left:153.750000px;}
.x4e_c00220{left:156.450000px;}
.x13_c00220{left:158.700000px;}
.x61_c00220{left:160.800000px;}
.x29_c00220{left:163.050000px;}
.x47_c00220{left:164.250000px;}
.x67_c00220{left:165.900000px;}
.x52_c00220{left:167.250000px;}
.x89_c00220{left:169.950000px;}
.x92_c00220{left:171.000000px;}
.x4_c00220{left:172.050000px;}
.x7b_c00220{left:173.100000px;}
.xa3_c00220{left:174.600000px;}
.x3a_c00220{left:175.800000px;}
.x48_c00220{left:177.150000px;}
.x6d_c00220{left:181.800000px;}
.x68_c00220{left:182.850000px;}
.x82_c00220{left:183.900000px;}
.xb1_c00220{left:186.150000px;}
.xc_c00220{left:188.100000px;}
.xbf_c00220{left:189.150000px;}
.x88_c00220{left:190.500000px;}
.x74_c00220{left:191.850000px;}
.x9f_c00220{left:193.050000px;}
.x30_c00220{left:194.400000px;}
.x19_c00220{left:197.250000px;}
.x59_c00220{left:198.450000px;}
.x9c_c00220{left:199.650000px;}
.x25_c00220{left:201.300000px;}
.x3b_c00220{left:202.800000px;}
.x37_c00220{left:204.300000px;}
.xc0_c00220{left:205.350000px;}
.x5d_c00220{left:207.450000px;}
.xa7_c00220{left:208.950000px;}
.xb8_c00220{left:210.150000px;}
.x75_c00220{left:211.950000px;}
.x2a_c00220{left:213.450000px;}
.x3e_c00220{left:214.500000px;}
.x53_c00220{left:216.150000px;}
.x85_c00220{left:217.950000px;}
.x9d_c00220{left:219.450000px;}
.xd_c00220{left:221.250000px;}
.x49_c00220{left:222.450000px;}
.x78_c00220{left:224.250000px;}
.x62_c00220{left:225.300000px;}
.x3f_c00220{left:227.100000px;}
.x6e_c00220{left:228.600000px;}
.x14_c00220{left:229.650000px;}
.xaa_c00220{left:230.850000px;}
.xa4_c00220{left:232.500000px;}
.x95_c00220{left:234.000000px;}
.x5_c00220{left:236.550000px;}
.x7c_c00220{left:239.400000px;}
.x4f_c00220{left:241.350000px;}
.xac_c00220{left:242.700000px;}
.x54_c00220{left:244.950000px;}
.x5e_c00220{left:247.050000px;}
.x2b_c00220{left:248.700000px;}
.x69_c00220{left:250.200000px;}
.x6a_c00220{left:251.550000px;}
.x4a_c00220{left:253.050000px;}
.x96_c00220{left:256.650000px;}
.x1a_c00220{left:258.450000px;}
.x6f_c00220{left:259.500000px;}
.xe_c00220{left:261.150000px;}
.xb9_c00220{left:262.350000px;}
.xb2_c00220{left:263.550000px;}
.x80_c00220{left:264.900000px;}
.xae_c00220{left:266.250000px;}
.x1b_c00220{left:267.750000px;}
.x50_c00220{left:270.450000px;}
.xb6_c00220{left:271.650000px;}
.x6_c00220{left:272.850000px;}
.x38_c00220{left:274.500000px;}
.xaf_c00220{left:276.150000px;}
.x55_c00220{left:278.100000px;}
.xad_c00220{left:279.450000px;}
.x20_c00220{left:280.500000px;}
.x40_c00220{left:282.150000px;}
.xbc_c00220{left:284.400000px;}
.x98_c00220{left:285.600000px;}
.x83_c00220{left:288.600000px;}
.x8c_c00220{left:290.550000px;}
.x1c_c00220{left:292.650000px;}
.x21_c00220{left:294.150000px;}
.x9a_c00220{left:295.500000px;}
.x2c_c00220{left:297.300000px;}
.x63_c00220{left:298.500000px;}
.x8a_c00220{left:300.600000px;}
.x5f_c00220{left:302.700000px;}
.xba_c00220{left:304.500000px;}
.x31_c00220{left:308.250000px;}
.x99_c00220{left:309.750000px;}
.x79_c00220{left:311.700000px;}
.x41_c00220{left:312.750000px;}
.x97_c00220{left:314.550000px;}
.x70_c00220{left:317.400000px;}
.x76_c00220{left:319.200000px;}
.x7_c00220{left:320.700000px;}
.x5a_c00220{left:322.200000px;}
.x2d_c00220{left:324.300000px;}
.x84_c00220{left:325.950000px;}
.x26_c00220{left:328.350000px;}
.x86_c00220{left:330.150000px;}
.x1_c00220{left:331.200000px;}
.xf_c00220{left:334.200000px;}
.xb0_c00220{left:336.300000px;}
.x51_c00220{left:338.550000px;}
.x4b_c00220{left:341.250000px;}
.x42_c00220{left:342.600000px;}
.x7d_c00220{left:344.400000px;}
.x8_c00220{left:347.700000px;}
.x27_c00220{left:351.000000px;}
.x5b_c00220{left:352.500000px;}
.x22_c00220{left:355.350000px;}
.x64_c00220{left:357.900000px;}
.x2e_c00220{left:359.250000px;}
.x8d_c00220{left:361.050000px;}
.x1d_c00220{left:362.550000px;}
.x4c_c00220{left:365.400000px;}
.x23_c00220{left:366.900000px;}
.x71_c00220{left:369.000000px;}
.x9_c00220{left:370.800000px;}
.x32_c00220{left:373.050000px;}
.x43_c00220{left:374.250000px;}
.x4d_c00220{left:375.900000px;}
.xa6_c00220{left:376.950000px;}
.x7e_c00220{left:378.300000px;}
.x3c_c00220{left:380.550000px;}
.x1e_c00220{left:381.600000px;}
.x9e_c00220{left:384.300000px;}
.x10_c00220{left:386.700000px;}
.x7a_c00220{left:388.050000px;}
.x33_c00220{left:389.250000px;}
.x8b_c00220{left:390.900000px;}
.x28_c00220{left:392.700000px;}
.x56_c00220{left:393.900000px;}
.x8e_c00220{left:395.700000px;}
.xab_c00220{left:396.900000px;}
.x44_c00220{left:399.750000px;}
.x7f_c00220{left:400.950000px;}
.x1f_c00220{left:402.900000px;}
.x34_c00220{left:405.150000px;}
.x15_c00220{left:407.850000px;}
.x24_c00220{left:409.350000px;}
.xa_c00220{left:410.700000px;}
.xbe_c00220{left:412.800000px;}
.x60_c00220{left:413.850000px;}
.xb7_c00220{left:415.650000px;}
.x77_c00220{left:416.850000px;}
.xa8_c00220{left:418.200000px;}
.xa9_c00220{left:419.550000px;}
.x57_c00220{left:421.650000px;}
.xa0_c00220{left:424.800000px;}
.xc1_c00220{left:446.700000px;}
.x129_c00220{left:447.900000px;}
.x144_c00220{left:449.550000px;}
.x13d_c00220{left:450.750000px;}
.xc9_c00220{left:464.700000px;}
.x117_c00220{left:465.750000px;}
.x12f_c00220{left:467.100000px;}
.x12c_c00220{left:475.500000px;}
.xdf_c00220{left:481.350000px;}
.xda_c00220{left:483.150000px;}
.xee_c00220{left:484.200000px;}
.x11e_c00220{left:486.000000px;}
.x109_c00220{left:487.050000px;}
.x12e_c00220{left:490.950000px;}
.xca_c00220{left:501.750000px;}
.xff_c00220{left:505.350000px;}
.xe7_c00220{left:506.400000px;}
.x130_c00220{left:508.800000px;}
.x12a_c00220{left:509.850000px;}
.x120_c00220{left:511.650000px;}
.x11c_c00220{left:513.600000px;}
.xf9_c00220{left:515.550000px;}
.x103_c00220{left:517.650000px;}
.xcc_c00220{left:519.900000px;}
.xf2_c00220{left:522.600000px;}
.x124_c00220{left:524.850000px;}
.xd5_c00220{left:525.900000px;}
.x118_c00220{left:527.250000px;}
.xe8_c00220{left:529.050000px;}
.x121_c00220{left:530.250000px;}
.x134_c00220{left:531.750000px;}
.x110_c00220{left:533.400000px;}
.xe0_c00220{left:537.900000px;}
.xc4_c00220{left:539.250000px;}
.x113_c00220{left:540.600000px;}
.x135_c00220{left:542.250000px;}
.x10d_c00220{left:543.600000px;}
.xc2_c00220{left:544.950000px;}
.x125_c00220{left:546.150000px;}
.xcb_c00220{left:548.850000px;}
.xe2_c00220{left:550.050000px;}
.x100_c00220{left:551.850000px;}
.x12d_c00220{left:558.000000px;}
.xd6_c00220{left:559.350000px;}
.xe9_c00220{left:561.150000px;}
.xcd_c00220{left:568.500000px;}
.x13a_c00220{left:569.850000px;}
.xf3_c00220{left:572.250000px;}
.x104_c00220{left:574.200000px;}
.xfa_c00220{left:575.700000px;}
.xe1_c00220{left:577.500000px;}
.xef_c00220{left:580.650000px;}
.x126_c00220{left:582.150000px;}
.x12b_c00220{left:583.350000px;}
.xd8_c00220{left:585.600000px;}
.xf7_c00220{left:586.800000px;}
.xfb_c00220{left:588.600000px;}
.x101_c00220{left:590.400000px;}
.xc5_c00220{left:593.250000px;}
.xd7_c00220{left:594.600000px;}
.x131_c00220{left:596.550000px;}
.x13e_c00220{left:598.350000px;}
.x105_c00220{left:601.500000px;}
.xd9_c00220{left:603.600000px;}
.xc3_c00220{left:606.150000px;}
.x13b_c00220{left:608.700000px;}
.xce_c00220{left:609.900000px;}
.xf0_c00220{left:611.550000px;}
.xea_c00220{left:613.050000px;}
.x111_c00220{left:615.450000px;}
.x123_c00220{left:617.100000px;}
.xfc_c00220{left:618.450000px;}
.xcf_c00220{left:620.700000px;}
.x114_c00220{left:621.900000px;}
.xdb_c00220{left:623.550000px;}
.x106_c00220{left:625.200000px;}
.xe3_c00220{left:627.750000px;}
.xf4_c00220{left:630.600000px;}
.x127_c00220{left:632.550000px;}
.xc6_c00220{left:634.650000px;}
.x136_c00220{left:635.850000px;}
.x11d_c00220{left:638.550000px;}
.x10e_c00220{left:640.350000px;}
.x119_c00220{left:643.200000px;}
.x142_c00220{left:645.450000px;}
.x122_c00220{left:647.100000px;}
.x128_c00220{left:652.350000px;}
.x10f_c00220{left:660.150000px;}
.xd4_c00220{left:662.400000px;}
.xf8_c00220{left:663.900000px;}
.x107_c00220{left:665.850000px;}
.x10a_c00220{left:667.500000px;}
.x112_c00220{left:669.150000px;}
.x116_c00220{left:670.950000px;}
.x137_c00220{left:672.900000px;}
.xeb_c00220{left:674.250000px;}
.xd0_c00220{left:675.450000px;}
.x102_c00220{left:676.500000px;}
.xdc_c00220{left:678.600000px;}
.xc7_c00220{left:687.150000px;}
.xf1_c00220{left:688.950000px;}
.xd1_c00220{left:690.600000px;}
.x10b_c00220{left:693.000000px;}
.xec_c00220{left:695.850000px;}
.xe4_c00220{left:697.650000px;}
.x13f_c00220{left:702.300000px;}
.x108_c00220{left:703.350000px;}
.x11f_c00220{left:704.550000px;}
.xf5_c00220{left:705.900000px;}
.x138_c00220{left:707.100000px;}
.xdd_c00220{left:708.450000px;}
.xe5_c00220{left:711.300000px;}
.x13c_c00220{left:714.600000px;}
.x10c_c00220{left:715.650000px;}
.x139_c00220{left:722.550000px;}
.x132_c00220{left:724.050000px;}
.xed_c00220{left:725.700000px;}
.x11a_c00220{left:728.550000px;}
.xfd_c00220{left:732.150000px;}
.xc8_c00220{left:733.650000px;}
.xe6_c00220{left:737.250000px;}
.x11b_c00220{left:738.600000px;}
.x140_c00220{left:740.850000px;}
.xde_c00220{left:742.350000px;}
.xfe_c00220{left:744.450000px;}
.xd2_c00220{left:747.900000px;}
.xd3_c00220{left:749.550000px;}
.x2_c00220{left:753.450000px;}
.xf6_c00220{left:763.500000px;}
.x143_c00220{left:766.050000px;}
.x115_c00220{left:767.250000px;}
.x133_c00220{left:770.100000px;}
.x141_c00220{left:774.000000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws3_c00220{word-spacing:-5.730994pt;}
.ws1_c00220{word-spacing:-4.575163pt;}
.ws5_c00220{word-spacing:-0.152866pt;}
.ws6_c00220{word-spacing:0.000000pt;}
.ws4_c00220{word-spacing:12.679739pt;}
.ws2_c00220{word-spacing:13.602694pt;}
.ws0_c00220{word-spacing:17.777778pt;}
.fs6_c00220{font-size:37.333333pt;}
.fs3_c00220{font-size:42.666667pt;}
.fs5_c00220{font-size:48.000000pt;}
.fs4_c00220{font-size:53.333333pt;}
.fs1_c00220{font-size:58.666667pt;}
.fs2_c00220{font-size:64.000000pt;}
.fs0_c00220{font-size:69.333333pt;}
.y0_c00220{bottom:0.000000pt;}
.y40_c00220{bottom:160.133333pt;}
.y6c_c00220{bottom:161.733333pt;}
.y3f_c00220{bottom:174.800000pt;}
.y3e_c00220{bottom:187.866667pt;}
.y6b_c00220{bottom:189.466667pt;}
.y3d_c00220{bottom:202.266667pt;}
.y3c_c00220{bottom:212.800000pt;}
.y3b_c00220{bottom:225.866667pt;}
.y6a_c00220{bottom:232.266667pt;}
.y3a_c00220{bottom:240.000000pt;}
.y39_c00220{bottom:253.466667pt;}
.y69_c00220{bottom:259.733333pt;}
.y38_c00220{bottom:264.000000pt;}
.y68_c00220{bottom:275.466667pt;}
.y37_c00220{bottom:276.800000pt;}
.y67_c00220{bottom:291.200000pt;}
.y36_c00220{bottom:291.866667pt;}
.y35_c00220{bottom:306.000000pt;}
.y66_c00220{bottom:306.933333pt;}
.y34_c00220{bottom:319.066667pt;}
.y65_c00220{bottom:322.533333pt;}
.y33_c00220{bottom:330.666667pt;}
.y32_c00220{bottom:343.733333pt;}
.y64_c00220{bottom:349.733333pt;}
.y31_c00220{bottom:356.800000pt;}
.y63_c00220{bottom:365.733333pt;}
.y30_c00220{bottom:369.866667pt;}
.y2f_c00220{bottom:381.866667pt;}
.y62_c00220{bottom:388.400000pt;}
.y2e_c00220{bottom:394.666667pt;}
.y2d_c00220{bottom:407.733333pt;}
.y61_c00220{bottom:408.266667pt;}
.y2c_c00220{bottom:420.533333pt;}
.y60_c00220{bottom:428.133333pt;}
.y2b_c00220{bottom:433.333333pt;}
.y2a_c00220{bottom:444.800000pt;}
.y5f_c00220{bottom:447.733333pt;}
.y29_c00220{bottom:458.266667pt;}
.y5e_c00220{bottom:463.733333pt;}
.y28_c00220{bottom:471.066667pt;}
.y5d_c00220{bottom:483.466667pt;}
.y27_c00220{bottom:484.133333pt;}
.y26_c00220{bottom:496.666667pt;}
.y5c_c00220{bottom:502.933333pt;}
.y25_c00220{bottom:509.466667pt;}
.y5b_c00220{bottom:518.666667pt;}
.y24_c00220{bottom:521.866667pt;}
.y23_c00220{bottom:534.400000pt;}
.y22_c00220{bottom:547.200000pt;}
.y5a_c00220{bottom:550.133333pt;}
.y21_c00220{bottom:563.200000pt;}
.y59_c00220{bottom:571.200000pt;}
.y20_c00220{bottom:576.266667pt;}
.y58_c00220{bottom:585.866667pt;}
.y1f_c00220{bottom:589.066667pt;}
.y1e_c00220{bottom:601.333333pt;}
.y57_c00220{bottom:604.800000pt;}
.y1d_c00220{bottom:614.400000pt;}
.y56_c00220{bottom:624.666667pt;}
.y1c_c00220{bottom:627.200000pt;}
.y1b_c00220{bottom:640.000000pt;}
.y55_c00220{bottom:644.133333pt;}
.y1a_c00220{bottom:652.800000pt;}
.y54_c00220{bottom:664.000000pt;}
.y19_c00220{bottom:665.333333pt;}
.y18_c00220{bottom:677.733333pt;}
.y53_c00220{bottom:679.733333pt;}
.y17_c00220{bottom:690.533333pt;}
.y52_c00220{bottom:699.200000pt;}
.y16_c00220{bottom:703.333333pt;}
.y15_c00220{bottom:715.866667pt;}
.y51_c00220{bottom:719.333333pt;}
.y14_c00220{bottom:728.533333pt;}
.y50_c00220{bottom:735.333333pt;}
.y13_c00220{bottom:741.066667pt;}
.y4f_c00220{bottom:750.666667pt;}
.y12_c00220{bottom:753.866667pt;}
.y11_c00220{bottom:766.666667pt;}
.y10_c00220{bottom:779.200000pt;}
.y4e_c00220{bottom:782.400000pt;}
.yf_c00220{bottom:792.000000pt;}
.y4d_c00220{bottom:798.133333pt;}
.ye_c00220{bottom:804.266667pt;}
.y4c_c00220{bottom:814.133333pt;}
.yd_c00220{bottom:816.800000pt;}
.yc_c00220{bottom:829.600000pt;}
.y4b_c00220{bottom:833.466667pt;}
.yb_c00220{bottom:842.133333pt;}
.y4a_c00220{bottom:853.333333pt;}
.ya_c00220{bottom:854.666667pt;}
.y9_c00220{bottom:867.466667pt;}
.y49_c00220{bottom:869.066667pt;}
.y8_c00220{bottom:880.000000pt;}
.y48_c00220{bottom:892.800000pt;}
.y47_c00220{bottom:896.933333pt;}
.y45_c00220{bottom:914.266667pt;}
.y7_c00220{bottom:917.200000pt;}
.y44_c00220{bottom:921.333333pt;}
.y46_c00220{bottom:927.733333pt;}
.y6_c00220{bottom:936.666667pt;}
.y43_c00220{bottom:940.533333pt;}
.y5_c00220{bottom:956.400000pt;}
.y42_c00220{bottom:956.533333pt;}
.y4_c00220{bottom:972.133333pt;}
.y41_c00220{bottom:986.933333pt;}
.y3_c00220{bottom:988.133333pt;}
.y2_c00220{bottom:1011.600000pt;}
.y1_c00220{bottom:1011.866667pt;}
.h8_c00220{height:37.333333pt;}
.h5_c00220{height:42.666667pt;}
.h7_c00220{height:48.000000pt;}
.h6_c00220{height:53.333333pt;}
.h3_c00220{height:58.666667pt;}
.h4_c00220{height:64.000000pt;}
.h2_c00220{height:69.333333pt;}
.h0_c00220{height:1127.680013pt;}
.h1_c00220{height:1128.000000pt;}
.w1_c00220{width:856.000000pt;}
.w0_c00220{width:856.319987pt;}
.x0_c00220{left:0.000000pt;}
.x11_c00220{left:79.333333pt;}
.x45_c00220{left:80.400000pt;}
.x65_c00220{left:81.333333pt;}
.x8f_c00220{left:82.266667pt;}
.xa1_c00220{left:83.200000pt;}
.xb3_c00220{left:84.133333pt;}
.x16_c00220{left:93.066667pt;}
.x3_c00220{left:95.066667pt;}
.x93_c00220{left:96.933333pt;}
.x81_c00220{left:98.533333pt;}
.x5c_c00220{left:99.600000pt;}
.x66_c00220{left:100.800000pt;}
.x6b_c00220{left:102.133333pt;}
.xb4_c00220{left:103.600000pt;}
.xbd_c00220{left:105.866667pt;}
.x46_c00220{left:107.333333pt;}
.x87_c00220{left:109.733333pt;}
.x3d_c00220{left:110.666667pt;}
.x6c_c00220{left:112.000000pt;}
.x39_c00220{left:113.066667pt;}
.x17_c00220{left:114.133333pt;}
.x35_c00220{left:115.066667pt;}
.x94_c00220{left:116.400000pt;}
.x90_c00220{left:118.400000pt;}
.x72_c00220{left:120.000000pt;}
.x58_c00220{left:121.333333pt;}
.x9b_c00220{left:123.066667pt;}
.x2f_c00220{left:124.133333pt;}
.x36_c00220{left:125.333333pt;}
.xbb_c00220{left:126.666667pt;}
.x73_c00220{left:128.266667pt;}
.xb_c00220{left:129.466667pt;}
.xb5_c00220{left:130.533333pt;}
.xa2_c00220{left:131.466667pt;}
.xa5_c00220{left:133.066667pt;}
.x12_c00220{left:134.400000pt;}
.x18_c00220{left:135.600000pt;}
.x91_c00220{left:136.666667pt;}
.x4e_c00220{left:139.066667pt;}
.x13_c00220{left:141.066667pt;}
.x61_c00220{left:142.933333pt;}
.x29_c00220{left:144.933333pt;}
.x47_c00220{left:146.000000pt;}
.x67_c00220{left:147.466667pt;}
.x52_c00220{left:148.666667pt;}
.x89_c00220{left:151.066667pt;}
.x92_c00220{left:152.000000pt;}
.x4_c00220{left:152.933333pt;}
.x7b_c00220{left:153.866667pt;}
.xa3_c00220{left:155.200000pt;}
.x3a_c00220{left:156.266667pt;}
.x48_c00220{left:157.466667pt;}
.x6d_c00220{left:161.600000pt;}
.x68_c00220{left:162.533333pt;}
.x82_c00220{left:163.466667pt;}
.xb1_c00220{left:165.466667pt;}
.xc_c00220{left:167.200000pt;}
.xbf_c00220{left:168.133333pt;}
.x88_c00220{left:169.333333pt;}
.x74_c00220{left:170.533333pt;}
.x9f_c00220{left:171.600000pt;}
.x30_c00220{left:172.800000pt;}
.x19_c00220{left:175.333333pt;}
.x59_c00220{left:176.400000pt;}
.x9c_c00220{left:177.466667pt;}
.x25_c00220{left:178.933333pt;}
.x3b_c00220{left:180.266667pt;}
.x37_c00220{left:181.600000pt;}
.xc0_c00220{left:182.533333pt;}
.x5d_c00220{left:184.400000pt;}
.xa7_c00220{left:185.733333pt;}
.xb8_c00220{left:186.800000pt;}
.x75_c00220{left:188.400000pt;}
.x2a_c00220{left:189.733333pt;}
.x3e_c00220{left:190.666667pt;}
.x53_c00220{left:192.133333pt;}
.x85_c00220{left:193.733333pt;}
.x9d_c00220{left:195.066667pt;}
.xd_c00220{left:196.666667pt;}
.x49_c00220{left:197.733333pt;}
.x78_c00220{left:199.333333pt;}
.x62_c00220{left:200.266667pt;}
.x3f_c00220{left:201.866667pt;}
.x6e_c00220{left:203.200000pt;}
.x14_c00220{left:204.133333pt;}
.xaa_c00220{left:205.200000pt;}
.xa4_c00220{left:206.666667pt;}
.x95_c00220{left:208.000000pt;}
.x5_c00220{left:210.266667pt;}
.x7c_c00220{left:212.800000pt;}
.x4f_c00220{left:214.533333pt;}
.xac_c00220{left:215.733333pt;}
.x54_c00220{left:217.733333pt;}
.x5e_c00220{left:219.600000pt;}
.x2b_c00220{left:221.066667pt;}
.x69_c00220{left:222.400000pt;}
.x6a_c00220{left:223.600000pt;}
.x4a_c00220{left:224.933333pt;}
.x96_c00220{left:228.133333pt;}
.x1a_c00220{left:229.733333pt;}
.x6f_c00220{left:230.666667pt;}
.xe_c00220{left:232.133333pt;}
.xb9_c00220{left:233.200000pt;}
.xb2_c00220{left:234.266667pt;}
.x80_c00220{left:235.466667pt;}
.xae_c00220{left:236.666667pt;}
.x1b_c00220{left:238.000000pt;}
.x50_c00220{left:240.400000pt;}
.xb6_c00220{left:241.466667pt;}
.x6_c00220{left:242.533333pt;}
.x38_c00220{left:244.000000pt;}
.xaf_c00220{left:245.466667pt;}
.x55_c00220{left:247.200000pt;}
.xad_c00220{left:248.400000pt;}
.x20_c00220{left:249.333333pt;}
.x40_c00220{left:250.800000pt;}
.xbc_c00220{left:252.800000pt;}
.x98_c00220{left:253.866667pt;}
.x83_c00220{left:256.533333pt;}
.x8c_c00220{left:258.266667pt;}
.x1c_c00220{left:260.133333pt;}
.x21_c00220{left:261.466667pt;}
.x9a_c00220{left:262.666667pt;}
.x2c_c00220{left:264.266667pt;}
.x63_c00220{left:265.333333pt;}
.x8a_c00220{left:267.200000pt;}
.x5f_c00220{left:269.066667pt;}
.xba_c00220{left:270.666667pt;}
.x31_c00220{left:274.000000pt;}
.x99_c00220{left:275.333333pt;}
.x79_c00220{left:277.066667pt;}
.x41_c00220{left:278.000000pt;}
.x97_c00220{left:279.600000pt;}
.x70_c00220{left:282.133333pt;}
.x76_c00220{left:283.733333pt;}
.x7_c00220{left:285.066667pt;}
.x5a_c00220{left:286.400000pt;}
.x2d_c00220{left:288.266667pt;}
.x84_c00220{left:289.733333pt;}
.x26_c00220{left:291.866667pt;}
.x86_c00220{left:293.466667pt;}
.x1_c00220{left:294.400000pt;}
.xf_c00220{left:297.066667pt;}
.xb0_c00220{left:298.933333pt;}
.x51_c00220{left:300.933333pt;}
.x4b_c00220{left:303.333333pt;}
.x42_c00220{left:304.533333pt;}
.x7d_c00220{left:306.133333pt;}
.x8_c00220{left:309.066667pt;}
.x27_c00220{left:312.000000pt;}
.x5b_c00220{left:313.333333pt;}
.x22_c00220{left:315.866667pt;}
.x64_c00220{left:318.133333pt;}
.x2e_c00220{left:319.333333pt;}
.x8d_c00220{left:320.933333pt;}
.x1d_c00220{left:322.266667pt;}
.x4c_c00220{left:324.800000pt;}
.x23_c00220{left:326.133333pt;}
.x71_c00220{left:328.000000pt;}
.x9_c00220{left:329.600000pt;}
.x32_c00220{left:331.600000pt;}
.x43_c00220{left:332.666667pt;}
.x4d_c00220{left:334.133333pt;}
.xa6_c00220{left:335.066667pt;}
.x7e_c00220{left:336.266667pt;}
.x3c_c00220{left:338.266667pt;}
.x1e_c00220{left:339.200000pt;}
.x9e_c00220{left:341.600000pt;}
.x10_c00220{left:343.733333pt;}
.x7a_c00220{left:344.933333pt;}
.x33_c00220{left:346.000000pt;}
.x8b_c00220{left:347.466667pt;}
.x28_c00220{left:349.066667pt;}
.x56_c00220{left:350.133333pt;}
.x8e_c00220{left:351.733333pt;}
.xab_c00220{left:352.800000pt;}
.x44_c00220{left:355.333333pt;}
.x7f_c00220{left:356.400000pt;}
.x1f_c00220{left:358.133333pt;}
.x34_c00220{left:360.133333pt;}
.x15_c00220{left:362.533333pt;}
.x24_c00220{left:363.866667pt;}
.xa_c00220{left:365.066667pt;}
.xbe_c00220{left:366.933333pt;}
.x60_c00220{left:367.866667pt;}
.xb7_c00220{left:369.466667pt;}
.x77_c00220{left:370.533333pt;}
.xa8_c00220{left:371.733333pt;}
.xa9_c00220{left:372.933333pt;}
.x57_c00220{left:374.800000pt;}
.xa0_c00220{left:377.600000pt;}
.xc1_c00220{left:397.066667pt;}
.x129_c00220{left:398.133333pt;}
.x144_c00220{left:399.600000pt;}
.x13d_c00220{left:400.666667pt;}
.xc9_c00220{left:413.066667pt;}
.x117_c00220{left:414.000000pt;}
.x12f_c00220{left:415.200000pt;}
.x12c_c00220{left:422.666667pt;}
.xdf_c00220{left:427.866667pt;}
.xda_c00220{left:429.466667pt;}
.xee_c00220{left:430.400000pt;}
.x11e_c00220{left:432.000000pt;}
.x109_c00220{left:432.933333pt;}
.x12e_c00220{left:436.400000pt;}
.xca_c00220{left:446.000000pt;}
.xff_c00220{left:449.200000pt;}
.xe7_c00220{left:450.133333pt;}
.x130_c00220{left:452.266667pt;}
.x12a_c00220{left:453.200000pt;}
.x120_c00220{left:454.800000pt;}
.x11c_c00220{left:456.533333pt;}
.xf9_c00220{left:458.266667pt;}
.x103_c00220{left:460.133333pt;}
.xcc_c00220{left:462.133333pt;}
.xf2_c00220{left:464.533333pt;}
.x124_c00220{left:466.533333pt;}
.xd5_c00220{left:467.466667pt;}
.x118_c00220{left:468.666667pt;}
.xe8_c00220{left:470.266667pt;}
.x121_c00220{left:471.333333pt;}
.x134_c00220{left:472.666667pt;}
.x110_c00220{left:474.133333pt;}
.xe0_c00220{left:478.133333pt;}
.xc4_c00220{left:479.333333pt;}
.x113_c00220{left:480.533333pt;}
.x135_c00220{left:482.000000pt;}
.x10d_c00220{left:483.200000pt;}
.xc2_c00220{left:484.400000pt;}
.x125_c00220{left:485.466667pt;}
.xcb_c00220{left:487.866667pt;}
.xe2_c00220{left:488.933333pt;}
.x100_c00220{left:490.533333pt;}
.x12d_c00220{left:496.000000pt;}
.xd6_c00220{left:497.200000pt;}
.xe9_c00220{left:498.800000pt;}
.xcd_c00220{left:505.333333pt;}
.x13a_c00220{left:506.533333pt;}
.xf3_c00220{left:508.666667pt;}
.x104_c00220{left:510.400000pt;}
.xfa_c00220{left:511.733333pt;}
.xe1_c00220{left:513.333333pt;}
.xef_c00220{left:516.133333pt;}
.x126_c00220{left:517.466667pt;}
.x12b_c00220{left:518.533333pt;}
.xd8_c00220{left:520.533333pt;}
.xf7_c00220{left:521.600000pt;}
.xfb_c00220{left:523.200000pt;}
.x101_c00220{left:524.800000pt;}
.xc5_c00220{left:527.333333pt;}
.xd7_c00220{left:528.533333pt;}
.x131_c00220{left:530.266667pt;}
.x13e_c00220{left:531.866667pt;}
.x105_c00220{left:534.666667pt;}
.xd9_c00220{left:536.533333pt;}
.xc3_c00220{left:538.800000pt;}
.x13b_c00220{left:541.066667pt;}
.xce_c00220{left:542.133333pt;}
.xf0_c00220{left:543.600000pt;}
.xea_c00220{left:544.933333pt;}
.x111_c00220{left:547.066667pt;}
.x123_c00220{left:548.533333pt;}
.xfc_c00220{left:549.733333pt;}
.xcf_c00220{left:551.733333pt;}
.x114_c00220{left:552.800000pt;}
.xdb_c00220{left:554.266667pt;}
.x106_c00220{left:555.733333pt;}
.xe3_c00220{left:558.000000pt;}
.xf4_c00220{left:560.533333pt;}
.x127_c00220{left:562.266667pt;}
.xc6_c00220{left:564.133333pt;}
.x136_c00220{left:565.200000pt;}
.x11d_c00220{left:567.600000pt;}
.x10e_c00220{left:569.200000pt;}
.x119_c00220{left:571.733333pt;}
.x142_c00220{left:573.733333pt;}
.x122_c00220{left:575.200000pt;}
.x128_c00220{left:579.866667pt;}
.x10f_c00220{left:586.800000pt;}
.xd4_c00220{left:588.800000pt;}
.xf8_c00220{left:590.133333pt;}
.x107_c00220{left:591.866667pt;}
.x10a_c00220{left:593.333333pt;}
.x112_c00220{left:594.800000pt;}
.x116_c00220{left:596.400000pt;}
.x137_c00220{left:598.133333pt;}
.xeb_c00220{left:599.333333pt;}
.xd0_c00220{left:600.400000pt;}
.x102_c00220{left:601.333333pt;}
.xdc_c00220{left:603.200000pt;}
.xc7_c00220{left:610.800000pt;}
.xf1_c00220{left:612.400000pt;}
.xd1_c00220{left:613.866667pt;}
.x10b_c00220{left:616.000000pt;}
.xec_c00220{left:618.533333pt;}
.xe4_c00220{left:620.133333pt;}
.x13f_c00220{left:624.266667pt;}
.x108_c00220{left:625.200000pt;}
.x11f_c00220{left:626.266667pt;}
.xf5_c00220{left:627.466667pt;}
.x138_c00220{left:628.533333pt;}
.xdd_c00220{left:629.733333pt;}
.xe5_c00220{left:632.266667pt;}
.x13c_c00220{left:635.200000pt;}
.x10c_c00220{left:636.133333pt;}
.x139_c00220{left:642.266667pt;}
.x132_c00220{left:643.600000pt;}
.xed_c00220{left:645.066667pt;}
.x11a_c00220{left:647.600000pt;}
.xfd_c00220{left:650.800000pt;}
.xc8_c00220{left:652.133333pt;}
.xe6_c00220{left:655.333333pt;}
.x11b_c00220{left:656.533333pt;}
.x140_c00220{left:658.533333pt;}
.xde_c00220{left:659.866667pt;}
.xfe_c00220{left:661.733333pt;}
.xd2_c00220{left:664.800000pt;}
.xd3_c00220{left:666.266667pt;}
.x2_c00220{left:669.733333pt;}
.xf6_c00220{left:678.666667pt;}
.x143_c00220{left:680.933333pt;}
.x115_c00220{left:682.000000pt;}
.x133_c00220{left:684.533333pt;}
.x141_c00220{left:688.000000pt;}
}





/* 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_c00221 {
    display:none;
  }
  .loading-indicator_c00221.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00221 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_c00221 { 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_c00221" -> "#page-container .classname_c00221")
 */
.pf_c00221 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00221 { /* 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_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00221 { /* 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_c00221 { /* 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_c00221 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00221 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00221 {overflow:visible;}
  }
}
.c_c00221 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00221 { /* 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_c00221:after { /* webkit #35443 */
  content: '';
}
.t_c00221:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00221 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 */
}
.__c00221 { /* 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_c00221 { /* info for Javascript */
  display:none;
}
.l_c00221 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00221 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00221 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00221: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_c00221 {
    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_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00221.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_c00221 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00221;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.000000;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;}
.mc6_c00221{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m55_c00221{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00221{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00221{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00221{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m32_c00221{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00221{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00221{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mce_c00221{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00221{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.me5_c00221{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00221{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m50_c00221{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m120_c00221{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mba_c00221{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m60_c00221{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00221{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00221{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m74_c00221{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00221{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m59_c00221{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00221{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00221{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00221{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00221{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m43_c00221{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m7_c00221{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m107_c00221{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00221{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m106_c00221{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m22_c00221{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00221{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m13_c00221{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m56_c00221{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00221{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m127_c00221{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00221{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf_c00221{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00221{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00221{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m36_c00221{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00221{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m12_c00221{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00221{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m25_c00221{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00221{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00221{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m47_c00221{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00221{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m93_c00221{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m101_c00221{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m21_c00221{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me8_c00221{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md8_c00221{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00221{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m38_c00221{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m6_c00221{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00221{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m81_c00221{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00221{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00221{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m73_c00221{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00221{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m92_c00221{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00221{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00221{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md_c00221{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m124_c00221{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.me3_c00221{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m86_c00221{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00221{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m126_c00221{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00221{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m28_c00221{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00221{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00221{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00221{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m26_c00221{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m125_c00221{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m54_c00221{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00221{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00221{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m44_c00221{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m19_c00221{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m95_c00221{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00221{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.me9_c00221{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m27_c00221{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00221{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m85_c00221{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.md1_c00221{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00221{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m96_c00221{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m34_c00221{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00221{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00221{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md3_c00221{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m75_c00221{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mde_c00221{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9_c00221{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00221{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m90_c00221{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m45_c00221{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00221{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00221{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4_c00221{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00221{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m53_c00221{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m10_c00221{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00221{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m42_c00221{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mac_c00221{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00221{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m35_c00221{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00221{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00221{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m104_c00221{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m82_c00221{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m119_c00221{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m80_c00221{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00221{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00221{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00221{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m68_c00221{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m79_c00221{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00221{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00221{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00221{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m94_c00221{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m31_c00221{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mad_c00221{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00221{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m57_c00221{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m20_c00221{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m108_c00221{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.maf_c00221{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00221{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md5_c00221{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m116_c00221{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mb_c00221{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md9_c00221{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m46_c00221{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m91_c00221{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mae_c00221{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00221{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m63_c00221{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mab_c00221{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m52_c00221{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m87_c00221{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00221{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m83_c00221{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00221{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.meb_c00221{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00221{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00221{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00221{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00221{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md2_c00221{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00221{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00221{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m117_c00221{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00221{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00221{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00221{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma_c00221{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m98_c00221{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m88_c00221{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00221{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m48_c00221{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md4_c00221{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mea_c00221{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00221{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00221{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00221{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00221{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.maa_c00221{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00221{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00221{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00221{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m109_c00221{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m11_c00221{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m33_c00221{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m97_c00221{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00221{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me6_c00221{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc_c00221{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00221{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.md7_c00221{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00221{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00221{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m89_c00221{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m37_c00221{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m62_c00221{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00221{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00221{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m69_c00221{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m64_c00221{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m72_c00221{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m112_c00221{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me7_c00221{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00221{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.med_c00221{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00221{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m49_c00221{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m15_c00221{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00221{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m115_c00221{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00221{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00221{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00221{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mef_c00221{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m118_c00221{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m61_c00221{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m110_c00221{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md0_c00221{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m40_c00221{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m30_c00221{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mff_c00221{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00221{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mca_c00221{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00221{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00221{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mee_c00221{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.me2_c00221{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00221{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00221{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m99_c00221{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00221{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m121_c00221{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00221{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00221{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00221{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00221{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m58_c00221{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m78_c00221{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00221{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00221{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m39_c00221{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00221{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m23_c00221{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00221{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m17_c00221{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00221{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m77_c00221{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m67_c00221{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m65_c00221{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00221{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m100_c00221{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m29_c00221{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me1_c00221{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00221{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m66_c00221{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m18_c00221{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m102_c00221{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00221{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m84_c00221{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00221{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00221{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00221{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m16_c00221{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m41_c00221{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.me4_c00221{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00221{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.md6_c00221{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00221{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00221{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00221{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00221{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m123_c00221{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m76_c00221{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00221{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.me0_c00221{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mec_c00221{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m51_c00221{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m14_c00221{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00221{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00221{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m105_c00221{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m70_c00221{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m103_c00221{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m24_c00221{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mda_c00221{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m71_c00221{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00221{transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);}
.m3_c00221{transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);}
.m2_c00221{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.m114_c00221{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m111_c00221{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m113_c00221{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.m122_c00221{transform:matrix(0.458500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00221{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00221{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(0.532250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532250,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls1_c00221{letter-spacing:0.000000px;}
.ls0_c00221{letter-spacing:90.000000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{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__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00221{word-spacing:-120.000000px;}
.ws1_c00221{word-spacing:-14.473684px;}
.ws9_c00221{word-spacing:-12.537118px;}
.wsa_c00221{word-spacing:-8.168443px;}
.ws7_c00221{word-spacing:-6.250000px;}
.ws0_c00221{word-spacing:-5.142857px;}
.ws8_c00221{word-spacing:-4.841924px;}
.wsb_c00221{word-spacing:-3.194444px;}
.ws10_c00221{word-spacing:0.000000px;}
.ws2_c00221{word-spacing:15.000000px;}
.wsd_c00221{word-spacing:22.142857px;}
.wsc_c00221{word-spacing:29.285714px;}
.ws5_c00221{word-spacing:40.000000px;}
.wse_c00221{word-spacing:59.721619px;}
.ws6_c00221{word-spacing:71.944444px;}
.wsf_c00221{word-spacing:186.250000px;}
.ws4_c00221{word-spacing:192.352941px;}
._0_c00221{margin-left:-90.000000px;}
.fc0_c00221{color:transparent;}
.fs7_c00221{font-size:24.000000px;}
.fs8_c00221{font-size:30.000000px;}
.fs5_c00221{font-size:42.000000px;}
.fs6_c00221{font-size:48.000000px;}
.fs4_c00221{font-size:54.000000px;}
.fs3_c00221{font-size:60.000000px;}
.fs0_c00221{font-size:66.000000px;}
.fs2_c00221{font-size:72.000000px;}
.fs1_c00221{font-size:78.000000px;}
.y0_c00221{bottom:0.000000px;}
.y74_c00221{bottom:185.850000px;}
.y39_c00221{bottom:193.650000px;}
.y73_c00221{bottom:203.850000px;}
.y38_c00221{bottom:211.350000px;}
.y72_c00221{bottom:222.150000px;}
.y37_c00221{bottom:232.950000px;}
.y71_c00221{bottom:240.150000px;}
.y36_c00221{bottom:250.200000px;}
.y70_c00221{bottom:257.700000px;}
.y35_c00221{bottom:267.000000px;}
.y6e_c00221{bottom:277.950000px;}
.y34_c00221{bottom:284.250000px;}
.y6d_c00221{bottom:292.350000px;}
.y33_c00221{bottom:301.950000px;}
.y6f_c00221{bottom:304.950000px;}
.y6c_c00221{bottom:307.500000px;}
.y32_c00221{bottom:319.200000px;}
.y6b_c00221{bottom:321.150000px;}
.y6a_c00221{bottom:335.550000px;}
.y31_c00221{bottom:336.900000px;}
.y69_c00221{bottom:349.950000px;}
.y30_c00221{bottom:354.150000px;}
.y68_c00221{bottom:363.600000px;}
.y67_c00221{bottom:364.650000px;}
.y2f_c00221{bottom:371.100000px;}
.y66_c00221{bottom:378.300000px;}
.y61_c00221{bottom:387.750000px;}
.y2e_c00221{bottom:388.350000px;}
.y65_c00221{bottom:393.450000px;}
.y2d_c00221{bottom:405.600000px;}
.y64_c00221{bottom:407.550000px;}
.y60_c00221{bottom:421.950000px;}
.y2c_c00221{bottom:423.600000px;}
.y63_c00221{bottom:435.600000px;}
.y5f_c00221{bottom:436.650000px;}
.y2b_c00221{bottom:441.300000px;}
.y5e_c00221{bottom:450.750000px;}
.y2a_c00221{bottom:459.000000px;}
.y62_c00221{bottom:464.700000px;}
.y5d_c00221{bottom:465.450000px;}
.y29_c00221{bottom:476.250000px;}
.y5c_c00221{bottom:479.550000px;}
.y28_c00221{bottom:493.950000px;}
.y5b_c00221{bottom:495.000000px;}
.y27_c00221{bottom:511.650000px;}
.y5a_c00221{bottom:514.800000px;}
.y26_c00221{bottom:529.350000px;}
.y59_c00221{bottom:532.500000px;}
.y25_c00221{bottom:547.050000px;}
.y58_c00221{bottom:550.800000px;}
.y24_c00221{bottom:564.300000px;}
.y57_c00221{bottom:568.800000px;}
.y23_c00221{bottom:582.000000px;}
.y56_c00221{bottom:586.500000px;}
.y22_c00221{bottom:599.250000px;}
.y55_c00221{bottom:609.600000px;}
.y21_c00221{bottom:617.250000px;}
.y54_c00221{bottom:627.600000px;}
.y20_c00221{bottom:634.950000px;}
.y53_c00221{bottom:644.850000px;}
.y1f_c00221{bottom:652.650000px;}
.y52_c00221{bottom:663.150000px;}
.y1e_c00221{bottom:670.650000px;}
.y51_c00221{bottom:680.400000px;}
.y1d_c00221{bottom:696.600000px;}
.y50_c00221{bottom:703.800000px;}
.y1c_c00221{bottom:711.000000px;}
.y1b_c00221{bottom:725.100000px;}
.y4f_c00221{bottom:729.750000px;}
.y1a_c00221{bottom:738.300000px;}
.y4e_c00221{bottom:748.050000px;}
.y19_c00221{bottom:752.400000px;}
.y4d_c00221{bottom:766.050000px;}
.y18_c00221{bottom:766.800000px;}
.y17_c00221{bottom:782.250000px;}
.y4c_c00221{bottom:787.350000px;}
.y16_c00221{bottom:795.150000px;}
.y4b_c00221{bottom:807.900000px;}
.y15_c00221{bottom:811.050000px;}
.y14_c00221{bottom:823.950000px;}
.y4a_c00221{bottom:825.150000px;}
.y13_c00221{bottom:838.050000px;}
.y49_c00221{bottom:843.150000px;}
.y12_c00221{bottom:852.450000px;}
.y48_c00221{bottom:860.400000px;}
.y11_c00221{bottom:868.350000px;}
.y47_c00221{bottom:879.150000px;}
.y10_c00221{bottom:880.950000px;}
.yf_c00221{bottom:895.350000px;}
.y46_c00221{bottom:897.150000px;}
.ye_c00221{bottom:909.750000px;}
.y45_c00221{bottom:915.150000px;}
.yd_c00221{bottom:926.700000px;}
.y44_c00221{bottom:932.700000px;}
.yc_c00221{bottom:947.700000px;}
.y43_c00221{bottom:954.300000px;}
.yb_c00221{bottom:967.200000px;}
.y42_c00221{bottom:973.050000px;}
.ya_c00221{bottom:984.900000px;}
.y41_c00221{bottom:991.050000px;}
.y9_c00221{bottom:1003.350000px;}
.y40_c00221{bottom:1009.350000px;}
.y8_c00221{bottom:1023.150000px;}
.y3f_c00221{bottom:1027.050000px;}
.y7_c00221{bottom:1042.200000px;}
.y3e_c00221{bottom:1044.750000px;}
.y6_c00221{bottom:1060.200000px;}
.y3d_c00221{bottom:1062.750000px;}
.y5_c00221{bottom:1077.750000px;}
.y3c_c00221{bottom:1080.750000px;}
.y4_c00221{bottom:1095.450000px;}
.y3b_c00221{bottom:1098.750000px;}
.y3_c00221{bottom:1113.150000px;}
.y3a_c00221{bottom:1116.750000px;}
.y1_c00221{bottom:1137.600000px;}
.y2_c00221{bottom:1140.150000px;}
.h9_c00221{height:24.000000px;}
.ha_c00221{height:30.000000px;}
.h7_c00221{height:42.000000px;}
.h8_c00221{height:48.000000px;}
.h6_c00221{height:54.000000px;}
.h5_c00221{height:60.000000px;}
.h2_c00221{height:66.000000px;}
.h4_c00221{height:72.000000px;}
.h3_c00221{height:78.000000px;}
.h0_c00221{height:1268.640015px;}
.h1_c00221{height:1269.000000px;}
.w1_c00221{width:963.000000px;}
.w0_c00221{width:963.359985px;}
.x0_c00221{left:0.000000px;}
.x2a_c00221{left:184.650000px;}
.x1_c00221{left:186.900000px;}
.x5e_c00221{left:199.050000px;}
.x47_c00221{left:200.550000px;}
.x41_c00221{left:201.600000px;}
.x8f_c00221{left:203.400000px;}
.xb_c00221{left:204.600000px;}
.x80_c00221{left:205.650000px;}
.x50_c00221{left:214.650000px;}
.x9e_c00221{left:216.750000px;}
.x99_c00221{left:221.550000px;}
.x5_c00221{left:223.200000px;}
.x79_c00221{left:224.250000px;}
.x88_c00221{left:225.600000px;}
.x70_c00221{left:227.100000px;}
.x2b_c00221{left:228.600000px;}
.x57_c00221{left:229.650000px;}
.x42_c00221{left:230.700000px;}
.xa0_c00221{left:232.650000px;}
.x5a_c00221{left:235.500000px;}
.x51_c00221{left:236.550000px;}
.x7d_c00221{left:238.650000px;}
.x28_c00221{left:240.450000px;}
.xa1_c00221{left:242.400000px;}
.x3c_c00221{left:244.350000px;}
.x1f_c00221{left:246.300000px;}
.xc_c00221{left:248.100000px;}
.x48_c00221{left:249.150000px;}
.x85_c00221{left:251.100000px;}
.x81_c00221{left:252.750000px;}
.x31_c00221{left:253.800000px;}
.x5c_c00221{left:255.450000px;}
.x8a_c00221{left:256.800000px;}
.x18_c00221{left:258.150000px;}
.x75_c00221{left:259.500000px;}
.x10_c00221{left:261.300000px;}
.x84_c00221{left:266.250000px;}
.x9c_c00221{left:267.450000px;}
.x52_c00221{left:268.950000px;}
.x6d_c00221{left:271.500000px;}
.x29_c00221{left:272.850000px;}
.x58_c00221{left:274.950000px;}
.x19_c00221{left:277.200000px;}
.x63_c00221{left:278.700000px;}
.x43_c00221{left:282.450000px;}
.x20_c00221{left:283.800000px;}
.x36_c00221{left:285.450000px;}
.x9d_c00221{left:286.500000px;}
.x66_c00221{left:287.700000px;}
.x7e_c00221{left:288.750000px;}
.x77_c00221{left:290.100000px;}
.x2c_c00221{left:293.100000px;}
.x49_c00221{left:294.150000px;}
.x53_c00221{left:296.250000px;}
.x11_c00221{left:298.050000px;}
.x21_c00221{left:301.050000px;}
.xd_c00221{left:302.400000px;}
.x6_c00221{left:303.900000px;}
.x3d_c00221{left:305.250000px;}
.x65_c00221{left:308.550000px;}
.x7f_c00221{left:309.600000px;}
.x90_c00221{left:312.150000px;}
.x1a_c00221{left:313.950000px;}
.x61_c00221{left:316.350000px;}
.x9b_c00221{left:317.700000px;}
.x67_c00221{left:319.350000px;}
.x22_c00221{left:320.550000px;}
.x37_c00221{left:321.750000px;}
.x71_c00221{left:323.250000px;}
.x78_c00221{left:324.600000px;}
.x3e_c00221{left:325.800000px;}
.x89_c00221{left:327.450000px;}
.x44_c00221{left:328.950000px;}
.x91_c00221{left:331.950000px;}
.x93_c00221{left:335.250000px;}
.x12_c00221{left:336.600000px;}
.x68_c00221{left:338.850000px;}
.x2d_c00221{left:341.400000px;}
.x82_c00221{left:343.800000px;}
.x5b_c00221{left:345.600000px;}
.x54_c00221{left:346.650000px;}
.x5d_c00221{left:348.000000px;}
.x76_c00221{left:349.200000px;}
.x5f_c00221{left:351.600000px;}
.x23_c00221{left:353.700000px;}
.x97_c00221{left:355.050000px;}
.x7_c00221{left:356.850000px;}
.x1b_c00221{left:357.900000px;}
.x55_c00221{left:362.100000px;}
.x59_c00221{left:363.900000px;}
.x13_c00221{left:365.100000px;}
.x8b_c00221{left:366.450000px;}
.x45_c00221{left:372.450000px;}
.x6b_c00221{left:373.500000px;}
.x95_c00221{left:375.000000px;}
.x9a_c00221{left:377.550000px;}
.x2e_c00221{left:379.500000px;}
.x6c_c00221{left:381.000000px;}
.x86_c00221{left:382.500000px;}
.x24_c00221{left:383.550000px;}
.x8_c00221{left:384.600000px;}
.x4a_c00221{left:385.950000px;}
.x46_c00221{left:387.600000px;}
.x72_c00221{left:390.450000px;}
.x4b_c00221{left:393.450000px;}
.x32_c00221{left:394.500000px;}
.x92_c00221{left:396.150000px;}
.x7a_c00221{left:397.350000px;}
.x4c_c00221{left:400.350000px;}
.x14_c00221{left:401.400000px;}
.x8c_c00221{left:403.500000px;}
.x8e_c00221{left:407.100000px;}
.x38_c00221{left:408.150000px;}
.x25_c00221{left:410.250000px;}
.x56_c00221{left:411.300000px;}
.x9_c00221{left:414.450000px;}
.x64_c00221{left:416.100000px;}
.x6e_c00221{left:417.300000px;}
.x15_c00221{left:418.350000px;}
.xe_c00221{left:419.700000px;}
.x4d_c00221{left:421.950000px;}
.x69_c00221{left:423.000000px;}
.x33_c00221{left:424.800000px;}
.x7b_c00221{left:426.150000px;}
.x2_c00221{left:428.100000px;}
.x2f_c00221{left:430.650000px;}
.x94_c00221{left:431.850000px;}
.x39_c00221{left:433.650000px;}
.x26_c00221{left:435.750000px;}
.x83_c00221{left:436.800000px;}
.x3f_c00221{left:439.800000px;}
.x16_c00221{left:441.750000px;}
.x3a_c00221{left:448.050000px;}
.x4e_c00221{left:449.250000px;}
.xf_c00221{left:450.300000px;}
.x73_c00221{left:453.450000px;}
.x9f_c00221{left:456.750000px;}
.x1c_c00221{left:462.000000px;}
.x6f_c00221{left:463.350000px;}
.x8d_c00221{left:465.000000px;}
.x62_c00221{left:468.000000px;}
.x60_c00221{left:469.050000px;}
.xa_c00221{left:470.250000px;}
.x6a_c00221{left:472.350000px;}
.x74_c00221{left:474.000000px;}
.x34_c00221{left:478.800000px;}
.x87_c00221{left:482.700000px;}
.x98_c00221{left:486.600000px;}
.x17_c00221{left:488.250000px;}
.x3b_c00221{left:490.500000px;}
.x27_c00221{left:491.550000px;}
.x96_c00221{left:493.800000px;}
.x1d_c00221{left:500.100000px;}
.x3_c00221{left:501.150000px;}
.x7c_c00221{left:503.250000px;}
.x40_c00221{left:504.600000px;}
.x4f_c00221{left:506.550000px;}
.x30_c00221{left:507.600000px;}
.x35_c00221{left:510.450000px;}
.x1e_c00221{left:524.250000px;}
.xd5_c00221{left:540.300000px;}
.x100_c00221{left:542.100000px;}
.x101_c00221{left:552.150000px;}
.x127_c00221{left:553.950000px;}
.x11a_c00221{left:555.900000px;}
.xa2_c00221{left:558.300000px;}
.x116_c00221{left:560.700000px;}
.x128_c00221{left:569.100000px;}
.x105_c00221{left:576.750000px;}
.xe7_c00221{left:577.800000px;}
.xbe_c00221{left:579.450000px;}
.xf0_c00221{left:582.300000px;}
.x102_c00221{left:584.250000px;}
.x117_c00221{left:587.700000px;}
.x4_c00221{left:590.100000px;}
.x134_c00221{left:591.150000px;}
.xf6_c00221{left:593.850000px;}
.x138_c00221{left:594.900000px;}
.xfd_c00221{left:596.400000px;}
.xca_c00221{left:598.200000px;}
.x109_c00221{left:599.850000px;}
.xf8_c00221{left:601.200000px;}
.xa3_c00221{left:602.250000px;}
.xb9_c00221{left:603.300000px;}
.xec_c00221{left:607.500000px;}
.xab_c00221{left:608.700000px;}
.xcf_c00221{left:610.500000px;}
.x121_c00221{left:612.450000px;}
.x120_c00221{left:613.800000px;}
.xdd_c00221{left:615.600000px;}
.x139_c00221{left:617.100000px;}
.x11e_c00221{left:618.900000px;}
.xc3_c00221{left:620.250000px;}
.xc8_c00221{left:623.400000px;}
.x129_c00221{left:624.450000px;}
.xb2_c00221{left:626.400000px;}
.x126_c00221{left:627.750000px;}
.xac_c00221{left:631.800000px;}
.xd6_c00221{left:633.900000px;}
.xa4_c00221{left:635.700000px;}
.x130_c00221{left:638.700000px;}
.xbf_c00221{left:640.350000px;}
.xed_c00221{left:642.450000px;}
.xc4_c00221{left:643.950000px;}
.x106_c00221{left:645.150000px;}
.x10a_c00221{left:646.650000px;}
.x131_c00221{left:648.450000px;}
.x12a_c00221{left:651.450000px;}
.x113_c00221{left:653.250000px;}
.xf9_c00221{left:654.450000px;}
.x11b_c00221{left:655.650000px;}
.xa5_c00221{left:657.300000px;}
.xf1_c00221{left:660.000000px;}
.x123_c00221{left:662.100000px;}
.xde_c00221{left:663.450000px;}
.xe8_c00221{left:665.550000px;}
.xba_c00221{left:667.350000px;}
.x10b_c00221{left:668.550000px;}
.x132_c00221{left:669.900000px;}
.x107_c00221{left:671.400000px;}
.xeb_c00221{left:674.100000px;}
.xd3_c00221{left:676.200000px;}
.xad_c00221{left:677.550000px;}
.xd0_c00221{left:681.750000px;}
.x122_c00221{left:683.100000px;}
.xfa_c00221{left:684.300000px;}
.xf7_c00221{left:686.850000px;}
.x110_c00221{left:689.550000px;}
.xb3_c00221{left:690.900000px;}
.xa6_c00221{left:692.550000px;}
.xe4_c00221{left:693.750000px;}
.x136_c00221{left:695.100000px;}
.xee_c00221{left:696.450000px;}
.x103_c00221{left:698.700000px;}
.xcb_c00221{left:700.050000px;}
.xfe_c00221{left:702.600000px;}
.xd7_c00221{left:704.550000px;}
.xc5_c00221{left:705.900000px;}
.xd9_c00221{left:709.650000px;}
.xf2_c00221{left:711.450000px;}
.xd1_c00221{left:713.400000px;}
.xe5_c00221{left:714.600000px;}
.xb4_c00221{left:717.600000px;}
.xff_c00221{left:719.550000px;}
.xe9_c00221{left:721.050000px;}
.xae_c00221{left:727.200000px;}
.x114_c00221{left:730.350000px;}
.xc6_c00221{left:732.600000px;}
.x108_c00221{left:734.100000px;}
.xdf_c00221{left:735.450000px;}
.xa7_c00221{left:737.550000px;}
.x135_c00221{left:738.900000px;}
.x12f_c00221{left:739.950000px;}
.xb5_c00221{left:742.500000px;}
.xf3_c00221{left:743.850000px;}
.xbb_c00221{left:745.500000px;}
.x111_c00221{left:747.450000px;}
.xd4_c00221{left:749.250000px;}
.x12d_c00221{left:750.750000px;}
.x12b_c00221{left:751.800000px;}
.xa8_c00221{left:754.800000px;}
.x104_c00221{left:757.800000px;}
.x10c_c00221{left:759.300000px;}
.x124_c00221{left:761.700000px;}
.xf4_c00221{left:763.350000px;}
.xb6_c00221{left:765.150000px;}
.x11c_c00221{left:767.550000px;}
.xe0_c00221{left:768.900000px;}
.xfb_c00221{left:769.950000px;}
.x133_c00221{left:773.850000px;}
.xea_c00221{left:777.150000px;}
.xcc_c00221{left:779.550000px;}
.x12e_c00221{left:780.600000px;}
.xc0_c00221{left:782.550000px;}
.xef_c00221{left:783.600000px;}
.xc7_c00221{left:786.900000px;}
.xfc_c00221{left:789.000000px;}
.xe1_c00221{left:790.500000px;}
.x10d_c00221{left:791.700000px;}
.xda_c00221{left:794.550000px;}
.xaf_c00221{left:795.600000px;}
.xbc_c00221{left:796.650000px;}
.x11f_c00221{left:797.850000px;}
.xd2_c00221{left:802.200000px;}
.xb0_c00221{left:807.150000px;}
.xd8_c00221{left:809.400000px;}
.xcd_c00221{left:811.650000px;}
.x10e_c00221{left:814.050000px;}
.xc1_c00221{left:815.700000px;}
.x115_c00221{left:817.800000px;}
.x118_c00221{left:820.500000px;}
.xb7_c00221{left:822.450000px;}
.xc9_c00221{left:823.500000px;}
.xa9_c00221{left:824.700000px;}
.xbd_c00221{left:829.350000px;}
.xe6_c00221{left:832.350000px;}
.xdb_c00221{left:833.700000px;}
.x11d_c00221{left:834.900000px;}
.xf5_c00221{left:836.400000px;}
.x112_c00221{left:838.200000px;}
.xaa_c00221{left:845.250000px;}
.x13a_c00221{left:846.750000px;}
.xb1_c00221{left:847.800000px;}
.xdc_c00221{left:850.650000px;}
.x119_c00221{left:854.400000px;}
.xe2_c00221{left:856.350000px;}
.xce_c00221{left:857.700000px;}
.xb8_c00221{left:859.200000px;}
.x137_c00221{left:860.550000px;}
.xc2_c00221{left:861.750000px;}
.x125_c00221{left:862.800000px;}
.x12c_c00221{left:864.450000px;}
.xe3_c00221{left:866.100000px;}
.x10f_c00221{left:869.100000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls1_c00221{letter-spacing:0.000000pt;}
.ls0_c00221{letter-spacing:80.000000pt;}
.ws3_c00221{word-spacing:-106.666667pt;}
.ws1_c00221{word-spacing:-12.865497pt;}
.ws9_c00221{word-spacing:-11.144105pt;}
.wsa_c00221{word-spacing:-7.260839pt;}
.ws7_c00221{word-spacing:-5.555556pt;}
.ws0_c00221{word-spacing:-4.571429pt;}
.ws8_c00221{word-spacing:-4.303933pt;}
.wsb_c00221{word-spacing:-2.839506pt;}
.ws10_c00221{word-spacing:0.000000pt;}
.ws2_c00221{word-spacing:13.333333pt;}
.wsd_c00221{word-spacing:19.682540pt;}
.wsc_c00221{word-spacing:26.031746pt;}
.ws5_c00221{word-spacing:35.555556pt;}
.wse_c00221{word-spacing:53.085884pt;}
.ws6_c00221{word-spacing:63.950617pt;}
.wsf_c00221{word-spacing:165.555556pt;}
.ws4_c00221{word-spacing:170.980392pt;}
._0_c00221{margin-left:-80.000000pt;}
.fs7_c00221{font-size:21.333333pt;}
.fs8_c00221{font-size:26.666667pt;}
.fs5_c00221{font-size:37.333333pt;}
.fs6_c00221{font-size:42.666667pt;}
.fs4_c00221{font-size:48.000000pt;}
.fs3_c00221{font-size:53.333333pt;}
.fs0_c00221{font-size:58.666667pt;}
.fs2_c00221{font-size:64.000000pt;}
.fs1_c00221{font-size:69.333333pt;}
.y0_c00221{bottom:0.000000pt;}
.y74_c00221{bottom:165.200000pt;}
.y39_c00221{bottom:172.133333pt;}
.y73_c00221{bottom:181.200000pt;}
.y38_c00221{bottom:187.866667pt;}
.y72_c00221{bottom:197.466667pt;}
.y37_c00221{bottom:207.066667pt;}
.y71_c00221{bottom:213.466667pt;}
.y36_c00221{bottom:222.400000pt;}
.y70_c00221{bottom:229.066667pt;}
.y35_c00221{bottom:237.333333pt;}
.y6e_c00221{bottom:247.066667pt;}
.y34_c00221{bottom:252.666667pt;}
.y6d_c00221{bottom:259.866667pt;}
.y33_c00221{bottom:268.400000pt;}
.y6f_c00221{bottom:271.066667pt;}
.y6c_c00221{bottom:273.333333pt;}
.y32_c00221{bottom:283.733333pt;}
.y6b_c00221{bottom:285.466667pt;}
.y6a_c00221{bottom:298.266667pt;}
.y31_c00221{bottom:299.466667pt;}
.y69_c00221{bottom:311.066667pt;}
.y30_c00221{bottom:314.800000pt;}
.y68_c00221{bottom:323.200000pt;}
.y67_c00221{bottom:324.133333pt;}
.y2f_c00221{bottom:329.866667pt;}
.y66_c00221{bottom:336.266667pt;}
.y61_c00221{bottom:344.666667pt;}
.y2e_c00221{bottom:345.200000pt;}
.y65_c00221{bottom:349.733333pt;}
.y2d_c00221{bottom:360.533333pt;}
.y64_c00221{bottom:362.266667pt;}
.y60_c00221{bottom:375.066667pt;}
.y2c_c00221{bottom:376.533333pt;}
.y63_c00221{bottom:387.200000pt;}
.y5f_c00221{bottom:388.133333pt;}
.y2b_c00221{bottom:392.266667pt;}
.y5e_c00221{bottom:400.666667pt;}
.y2a_c00221{bottom:408.000000pt;}
.y62_c00221{bottom:413.066667pt;}
.y5d_c00221{bottom:413.733333pt;}
.y29_c00221{bottom:423.333333pt;}
.y5c_c00221{bottom:426.266667pt;}
.y28_c00221{bottom:439.066667pt;}
.y5b_c00221{bottom:440.000000pt;}
.y27_c00221{bottom:454.800000pt;}
.y5a_c00221{bottom:457.600000pt;}
.y26_c00221{bottom:470.533333pt;}
.y59_c00221{bottom:473.333333pt;}
.y25_c00221{bottom:486.266667pt;}
.y58_c00221{bottom:489.600000pt;}
.y24_c00221{bottom:501.600000pt;}
.y57_c00221{bottom:505.600000pt;}
.y23_c00221{bottom:517.333333pt;}
.y56_c00221{bottom:521.333333pt;}
.y22_c00221{bottom:532.666667pt;}
.y55_c00221{bottom:541.866667pt;}
.y21_c00221{bottom:548.666667pt;}
.y54_c00221{bottom:557.866667pt;}
.y20_c00221{bottom:564.400000pt;}
.y53_c00221{bottom:573.200000pt;}
.y1f_c00221{bottom:580.133333pt;}
.y52_c00221{bottom:589.466667pt;}
.y1e_c00221{bottom:596.133333pt;}
.y51_c00221{bottom:604.800000pt;}
.y1d_c00221{bottom:619.200000pt;}
.y50_c00221{bottom:625.600000pt;}
.y1c_c00221{bottom:632.000000pt;}
.y1b_c00221{bottom:644.533333pt;}
.y4f_c00221{bottom:648.666667pt;}
.y1a_c00221{bottom:656.266667pt;}
.y4e_c00221{bottom:664.933333pt;}
.y19_c00221{bottom:668.800000pt;}
.y4d_c00221{bottom:680.933333pt;}
.y18_c00221{bottom:681.600000pt;}
.y17_c00221{bottom:695.333333pt;}
.y4c_c00221{bottom:699.866667pt;}
.y16_c00221{bottom:706.800000pt;}
.y4b_c00221{bottom:718.133333pt;}
.y15_c00221{bottom:720.933333pt;}
.y14_c00221{bottom:732.400000pt;}
.y4a_c00221{bottom:733.466667pt;}
.y13_c00221{bottom:744.933333pt;}
.y49_c00221{bottom:749.466667pt;}
.y12_c00221{bottom:757.733333pt;}
.y48_c00221{bottom:764.800000pt;}
.y11_c00221{bottom:771.866667pt;}
.y47_c00221{bottom:781.466667pt;}
.y10_c00221{bottom:783.066667pt;}
.yf_c00221{bottom:795.866667pt;}
.y46_c00221{bottom:797.466667pt;}
.ye_c00221{bottom:808.666667pt;}
.y45_c00221{bottom:813.466667pt;}
.yd_c00221{bottom:823.733333pt;}
.y44_c00221{bottom:829.066667pt;}
.yc_c00221{bottom:842.400000pt;}
.y43_c00221{bottom:848.266667pt;}
.yb_c00221{bottom:859.733333pt;}
.y42_c00221{bottom:864.933333pt;}
.ya_c00221{bottom:875.466667pt;}
.y41_c00221{bottom:880.933333pt;}
.y9_c00221{bottom:891.866667pt;}
.y40_c00221{bottom:897.200000pt;}
.y8_c00221{bottom:909.466667pt;}
.y3f_c00221{bottom:912.933333pt;}
.y7_c00221{bottom:926.400000pt;}
.y3e_c00221{bottom:928.666667pt;}
.y6_c00221{bottom:942.400000pt;}
.y3d_c00221{bottom:944.666667pt;}
.y5_c00221{bottom:958.000000pt;}
.y3c_c00221{bottom:960.666667pt;}
.y4_c00221{bottom:973.733333pt;}
.y3b_c00221{bottom:976.666667pt;}
.y3_c00221{bottom:989.466667pt;}
.y3a_c00221{bottom:992.666667pt;}
.y1_c00221{bottom:1011.200000pt;}
.y2_c00221{bottom:1013.466667pt;}
.h9_c00221{height:21.333333pt;}
.ha_c00221{height:26.666667pt;}
.h7_c00221{height:37.333333pt;}
.h8_c00221{height:42.666667pt;}
.h6_c00221{height:48.000000pt;}
.h5_c00221{height:53.333333pt;}
.h2_c00221{height:58.666667pt;}
.h4_c00221{height:64.000000pt;}
.h3_c00221{height:69.333333pt;}
.h0_c00221{height:1127.680013pt;}
.h1_c00221{height:1128.000000pt;}
.w1_c00221{width:856.000000pt;}
.w0_c00221{width:856.319987pt;}
.x0_c00221{left:0.000000pt;}
.x2a_c00221{left:164.133333pt;}
.x1_c00221{left:166.133333pt;}
.x5e_c00221{left:176.933333pt;}
.x47_c00221{left:178.266667pt;}
.x41_c00221{left:179.200000pt;}
.x8f_c00221{left:180.800000pt;}
.xb_c00221{left:181.866667pt;}
.x80_c00221{left:182.800000pt;}
.x50_c00221{left:190.800000pt;}
.x9e_c00221{left:192.666667pt;}
.x99_c00221{left:196.933333pt;}
.x5_c00221{left:198.400000pt;}
.x79_c00221{left:199.333333pt;}
.x88_c00221{left:200.533333pt;}
.x70_c00221{left:201.866667pt;}
.x2b_c00221{left:203.200000pt;}
.x57_c00221{left:204.133333pt;}
.x42_c00221{left:205.066667pt;}
.xa0_c00221{left:206.800000pt;}
.x5a_c00221{left:209.333333pt;}
.x51_c00221{left:210.266667pt;}
.x7d_c00221{left:212.133333pt;}
.x28_c00221{left:213.733333pt;}
.xa1_c00221{left:215.466667pt;}
.x3c_c00221{left:217.200000pt;}
.x1f_c00221{left:218.933333pt;}
.xc_c00221{left:220.533333pt;}
.x48_c00221{left:221.466667pt;}
.x85_c00221{left:223.200000pt;}
.x81_c00221{left:224.666667pt;}
.x31_c00221{left:225.600000pt;}
.x5c_c00221{left:227.066667pt;}
.x8a_c00221{left:228.266667pt;}
.x18_c00221{left:229.466667pt;}
.x75_c00221{left:230.666667pt;}
.x10_c00221{left:232.266667pt;}
.x84_c00221{left:236.666667pt;}
.x9c_c00221{left:237.733333pt;}
.x52_c00221{left:239.066667pt;}
.x6d_c00221{left:241.333333pt;}
.x29_c00221{left:242.533333pt;}
.x58_c00221{left:244.400000pt;}
.x19_c00221{left:246.400000pt;}
.x63_c00221{left:247.733333pt;}
.x43_c00221{left:251.066667pt;}
.x20_c00221{left:252.266667pt;}
.x36_c00221{left:253.733333pt;}
.x9d_c00221{left:254.666667pt;}
.x66_c00221{left:255.733333pt;}
.x7e_c00221{left:256.666667pt;}
.x77_c00221{left:257.866667pt;}
.x2c_c00221{left:260.533333pt;}
.x49_c00221{left:261.466667pt;}
.x53_c00221{left:263.333333pt;}
.x11_c00221{left:264.933333pt;}
.x21_c00221{left:267.600000pt;}
.xd_c00221{left:268.800000pt;}
.x6_c00221{left:270.133333pt;}
.x3d_c00221{left:271.333333pt;}
.x65_c00221{left:274.266667pt;}
.x7f_c00221{left:275.200000pt;}
.x90_c00221{left:277.466667pt;}
.x1a_c00221{left:279.066667pt;}
.x61_c00221{left:281.200000pt;}
.x9b_c00221{left:282.400000pt;}
.x67_c00221{left:283.866667pt;}
.x22_c00221{left:284.933333pt;}
.x37_c00221{left:286.000000pt;}
.x71_c00221{left:287.333333pt;}
.x78_c00221{left:288.533333pt;}
.x3e_c00221{left:289.600000pt;}
.x89_c00221{left:291.066667pt;}
.x44_c00221{left:292.400000pt;}
.x91_c00221{left:295.066667pt;}
.x93_c00221{left:298.000000pt;}
.x12_c00221{left:299.200000pt;}
.x68_c00221{left:301.200000pt;}
.x2d_c00221{left:303.466667pt;}
.x82_c00221{left:305.600000pt;}
.x5b_c00221{left:307.200000pt;}
.x54_c00221{left:308.133333pt;}
.x5d_c00221{left:309.333333pt;}
.x76_c00221{left:310.400000pt;}
.x5f_c00221{left:312.533333pt;}
.x23_c00221{left:314.400000pt;}
.x97_c00221{left:315.600000pt;}
.x7_c00221{left:317.200000pt;}
.x1b_c00221{left:318.133333pt;}
.x55_c00221{left:321.866667pt;}
.x59_c00221{left:323.466667pt;}
.x13_c00221{left:324.533333pt;}
.x8b_c00221{left:325.733333pt;}
.x45_c00221{left:331.066667pt;}
.x6b_c00221{left:332.000000pt;}
.x95_c00221{left:333.333333pt;}
.x9a_c00221{left:335.600000pt;}
.x2e_c00221{left:337.333333pt;}
.x6c_c00221{left:338.666667pt;}
.x86_c00221{left:340.000000pt;}
.x24_c00221{left:340.933333pt;}
.x8_c00221{left:341.866667pt;}
.x4a_c00221{left:343.066667pt;}
.x46_c00221{left:344.533333pt;}
.x72_c00221{left:347.066667pt;}
.x4b_c00221{left:349.733333pt;}
.x32_c00221{left:350.666667pt;}
.x92_c00221{left:352.133333pt;}
.x7a_c00221{left:353.200000pt;}
.x4c_c00221{left:355.866667pt;}
.x14_c00221{left:356.800000pt;}
.x8c_c00221{left:358.666667pt;}
.x8e_c00221{left:361.866667pt;}
.x38_c00221{left:362.800000pt;}
.x25_c00221{left:364.666667pt;}
.x56_c00221{left:365.600000pt;}
.x9_c00221{left:368.400000pt;}
.x64_c00221{left:369.866667pt;}
.x6e_c00221{left:370.933333pt;}
.x15_c00221{left:371.866667pt;}
.xe_c00221{left:373.066667pt;}
.x4d_c00221{left:375.066667pt;}
.x69_c00221{left:376.000000pt;}
.x33_c00221{left:377.600000pt;}
.x7b_c00221{left:378.800000pt;}
.x2_c00221{left:380.533333pt;}
.x2f_c00221{left:382.800000pt;}
.x94_c00221{left:383.866667pt;}
.x39_c00221{left:385.466667pt;}
.x26_c00221{left:387.333333pt;}
.x83_c00221{left:388.266667pt;}
.x3f_c00221{left:390.933333pt;}
.x16_c00221{left:392.666667pt;}
.x3a_c00221{left:398.266667pt;}
.x4e_c00221{left:399.333333pt;}
.xf_c00221{left:400.266667pt;}
.x73_c00221{left:403.066667pt;}
.x9f_c00221{left:406.000000pt;}
.x1c_c00221{left:410.666667pt;}
.x6f_c00221{left:411.866667pt;}
.x8d_c00221{left:413.333333pt;}
.x62_c00221{left:416.000000pt;}
.x60_c00221{left:416.933333pt;}
.xa_c00221{left:418.000000pt;}
.x6a_c00221{left:419.866667pt;}
.x74_c00221{left:421.333333pt;}
.x34_c00221{left:425.600000pt;}
.x87_c00221{left:429.066667pt;}
.x98_c00221{left:432.533333pt;}
.x17_c00221{left:434.000000pt;}
.x3b_c00221{left:436.000000pt;}
.x27_c00221{left:436.933333pt;}
.x96_c00221{left:438.933333pt;}
.x1d_c00221{left:444.533333pt;}
.x3_c00221{left:445.466667pt;}
.x7c_c00221{left:447.333333pt;}
.x40_c00221{left:448.533333pt;}
.x4f_c00221{left:450.266667pt;}
.x30_c00221{left:451.200000pt;}
.x35_c00221{left:453.733333pt;}
.x1e_c00221{left:466.000000pt;}
.xd5_c00221{left:480.266667pt;}
.x100_c00221{left:481.866667pt;}
.x101_c00221{left:490.800000pt;}
.x127_c00221{left:492.400000pt;}
.x11a_c00221{left:494.133333pt;}
.xa2_c00221{left:496.266667pt;}
.x116_c00221{left:498.400000pt;}
.x128_c00221{left:505.866667pt;}
.x105_c00221{left:512.666667pt;}
.xe7_c00221{left:513.600000pt;}
.xbe_c00221{left:515.066667pt;}
.xf0_c00221{left:517.600000pt;}
.x102_c00221{left:519.333333pt;}
.x117_c00221{left:522.400000pt;}
.x4_c00221{left:524.533333pt;}
.x134_c00221{left:525.466667pt;}
.xf6_c00221{left:527.866667pt;}
.x138_c00221{left:528.800000pt;}
.xfd_c00221{left:530.133333pt;}
.xca_c00221{left:531.733333pt;}
.x109_c00221{left:533.200000pt;}
.xf8_c00221{left:534.400000pt;}
.xa3_c00221{left:535.333333pt;}
.xb9_c00221{left:536.266667pt;}
.xec_c00221{left:540.000000pt;}
.xab_c00221{left:541.066667pt;}
.xcf_c00221{left:542.666667pt;}
.x121_c00221{left:544.400000pt;}
.x120_c00221{left:545.600000pt;}
.xdd_c00221{left:547.200000pt;}
.x139_c00221{left:548.533333pt;}
.x11e_c00221{left:550.133333pt;}
.xc3_c00221{left:551.333333pt;}
.xc8_c00221{left:554.133333pt;}
.x129_c00221{left:555.066667pt;}
.xb2_c00221{left:556.800000pt;}
.x126_c00221{left:558.000000pt;}
.xac_c00221{left:561.600000pt;}
.xd6_c00221{left:563.466667pt;}
.xa4_c00221{left:565.066667pt;}
.x130_c00221{left:567.733333pt;}
.xbf_c00221{left:569.200000pt;}
.xed_c00221{left:571.066667pt;}
.xc4_c00221{left:572.400000pt;}
.x106_c00221{left:573.466667pt;}
.x10a_c00221{left:574.800000pt;}
.x131_c00221{left:576.400000pt;}
.x12a_c00221{left:579.066667pt;}
.x113_c00221{left:580.666667pt;}
.xf9_c00221{left:581.733333pt;}
.x11b_c00221{left:582.800000pt;}
.xa5_c00221{left:584.266667pt;}
.xf1_c00221{left:586.666667pt;}
.x123_c00221{left:588.533333pt;}
.xde_c00221{left:589.733333pt;}
.xe8_c00221{left:591.600000pt;}
.xba_c00221{left:593.200000pt;}
.x10b_c00221{left:594.266667pt;}
.x132_c00221{left:595.466667pt;}
.x107_c00221{left:596.800000pt;}
.xeb_c00221{left:599.200000pt;}
.xd3_c00221{left:601.066667pt;}
.xad_c00221{left:602.266667pt;}
.xd0_c00221{left:606.000000pt;}
.x122_c00221{left:607.200000pt;}
.xfa_c00221{left:608.266667pt;}
.xf7_c00221{left:610.533333pt;}
.x110_c00221{left:612.933333pt;}
.xb3_c00221{left:614.133333pt;}
.xa6_c00221{left:615.600000pt;}
.xe4_c00221{left:616.666667pt;}
.x136_c00221{left:617.866667pt;}
.xee_c00221{left:619.066667pt;}
.x103_c00221{left:621.066667pt;}
.xcb_c00221{left:622.266667pt;}
.xfe_c00221{left:624.533333pt;}
.xd7_c00221{left:626.266667pt;}
.xc5_c00221{left:627.466667pt;}
.xd9_c00221{left:630.800000pt;}
.xf2_c00221{left:632.400000pt;}
.xd1_c00221{left:634.133333pt;}
.xe5_c00221{left:635.200000pt;}
.xb4_c00221{left:637.866667pt;}
.xff_c00221{left:639.600000pt;}
.xe9_c00221{left:640.933333pt;}
.xae_c00221{left:646.400000pt;}
.x114_c00221{left:649.200000pt;}
.xc6_c00221{left:651.200000pt;}
.x108_c00221{left:652.533333pt;}
.xdf_c00221{left:653.733333pt;}
.xa7_c00221{left:655.600000pt;}
.x135_c00221{left:656.800000pt;}
.x12f_c00221{left:657.733333pt;}
.xb5_c00221{left:660.000000pt;}
.xf3_c00221{left:661.200000pt;}
.xbb_c00221{left:662.666667pt;}
.x111_c00221{left:664.400000pt;}
.xd4_c00221{left:666.000000pt;}
.x12d_c00221{left:667.333333pt;}
.x12b_c00221{left:668.266667pt;}
.xa8_c00221{left:670.933333pt;}
.x104_c00221{left:673.600000pt;}
.x10c_c00221{left:674.933333pt;}
.x124_c00221{left:677.066667pt;}
.xf4_c00221{left:678.533333pt;}
.xb6_c00221{left:680.133333pt;}
.x11c_c00221{left:682.266667pt;}
.xe0_c00221{left:683.466667pt;}
.xfb_c00221{left:684.400000pt;}
.x133_c00221{left:687.866667pt;}
.xea_c00221{left:690.800000pt;}
.xcc_c00221{left:692.933333pt;}
.x12e_c00221{left:693.866667pt;}
.xc0_c00221{left:695.600000pt;}
.xef_c00221{left:696.533333pt;}
.xc7_c00221{left:699.466667pt;}
.xfc_c00221{left:701.333333pt;}
.xe1_c00221{left:702.666667pt;}
.x10d_c00221{left:703.733333pt;}
.xda_c00221{left:706.266667pt;}
.xaf_c00221{left:707.200000pt;}
.xbc_c00221{left:708.133333pt;}
.x11f_c00221{left:709.200000pt;}
.xd2_c00221{left:713.066667pt;}
.xb0_c00221{left:717.466667pt;}
.xd8_c00221{left:719.466667pt;}
.xcd_c00221{left:721.466667pt;}
.x10e_c00221{left:723.600000pt;}
.xc1_c00221{left:725.066667pt;}
.x115_c00221{left:726.933333pt;}
.x118_c00221{left:729.333333pt;}
.xb7_c00221{left:731.066667pt;}
.xc9_c00221{left:732.000000pt;}
.xa9_c00221{left:733.066667pt;}
.xbd_c00221{left:737.200000pt;}
.xe6_c00221{left:739.866667pt;}
.xdb_c00221{left:741.066667pt;}
.x11d_c00221{left:742.133333pt;}
.xf5_c00221{left:743.466667pt;}
.x112_c00221{left:745.066667pt;}
.xaa_c00221{left:751.333333pt;}
.x13a_c00221{left:752.666667pt;}
.xb1_c00221{left:753.600000pt;}
.xdc_c00221{left:756.133333pt;}
.x119_c00221{left:759.466667pt;}
.xe2_c00221{left:761.200000pt;}
.xce_c00221{left:762.400000pt;}
.xb8_c00221{left:763.733333pt;}
.x137_c00221{left:764.933333pt;}
.xc2_c00221{left:766.000000pt;}
.x125_c00221{left:766.933333pt;}
.x12c_c00221{left:768.400000pt;}
.xe3_c00221{left:769.866667pt;}
.x10f_c00221{left:772.533333pt;}
}





/* 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_c00222 {
    display:none;
  }
  .loading-indicator_c00222.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00222 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_c00222 { 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_c00222" -> "#page-container .classname_c00222")
 */
.pf_c00222 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00222 { /* 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_c00222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00222 { /* 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_c00222 { /* 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_c00222 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00222 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00222 {overflow:visible;}
  }
}
.c_c00222 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00222 { /* 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_c00222:after { /* webkit #35443 */
  content: '';
}
.t_c00222:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00222 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 */
}
.__c00222 { /* 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_c00222 { /* info for Javascript */
  display:none;
}
.l_c00222 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00222 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00222 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00222: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_c00222 {
    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_c00222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00222.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_c00222 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00222;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.000000;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;}
.m98_c00222{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.md6_c00222{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00222{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00222{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.md8_c00222{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00222{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.me9_c00222{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.md7_c00222{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me7_c00222{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m95_c00222{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m67_c00222{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00222{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.me8_c00222{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00222{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00222{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md4_c00222{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.maf_c00222{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m40_c00222{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m81_c00222{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00222{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.md9_c00222{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00222{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mde_c00222{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00222{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m121_c00222{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mab_c00222{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00222{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00222{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mce_c00222{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00222{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00222{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m61_c00222{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mda_c00222{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.maa_c00222{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5_c00222{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m28_c00222{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m36_c00222{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me4_c00222{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m11_c00222{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m112_c00222{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m9_c00222{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00222{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m43_c00222{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m77_c00222{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m22_c00222{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m34_c00222{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00222{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m17_c00222{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m64_c00222{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m103_c00222{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00222{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m55_c00222{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m14_c00222{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m96_c00222{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m124_c00222{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00222{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00222{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m21_c00222{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m126_c00222{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m104_c00222{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00222{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00222{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m101_c00222{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me_c00222{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00222{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m50_c00222{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m53_c00222{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00222{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00222{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m114_c00222{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00222{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00222{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00222{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m105_c00222{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00222{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00222{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00222{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00222{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00222{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m115_c00222{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m78_c00222{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m32_c00222{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m12_c00222{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00222{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00222{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00222{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md_c00222{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4_c00222{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m46_c00222{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb_c00222{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m60_c00222{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00222{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00222{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m47_c00222{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mee_c00222{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00222{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00222{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m106_c00222{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mec_c00222{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00222{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m13_c00222{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00222{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00222{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me5_c00222{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00222{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00222{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m51_c00222{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m54_c00222{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00222{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m23_c00222{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00222{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m41_c00222{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m39_c00222{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mf_c00222{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m45_c00222{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m90_c00222{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mba_c00222{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m72_c00222{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m62_c00222{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m82_c00222{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00222{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00222{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00222{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m35_c00222{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m37_c00222{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m118_c00222{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m38_c00222{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m26_c00222{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00222{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m24_c00222{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7_c00222{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00222{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m52_c00222{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me3_c00222{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3_c00222{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m70_c00222{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m27_c00222{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8_c00222{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m89_c00222{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m79_c00222{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00222{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00222{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00222{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00222{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma_c00222{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m109_c00222{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00222{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m15_c00222{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00222{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00222{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m59_c00222{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m123_c00222{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00222{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m20_c00222{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00222{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00222{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m44_c00222{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00222{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m100_c00222{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.med_c00222{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00222{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m31_c00222{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m49_c00222{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00222{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00222{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00222{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00222{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6_c00222{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00222{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m107_c00222{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00222{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m76_c00222{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00222{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m83_c00222{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mad_c00222{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2_c00222{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00222{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00222{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m71_c00222{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m120_c00222{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m58_c00222{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m97_c00222{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00222{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m10_c00222{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00222{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00222{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00222{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m113_c00222{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00222{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00222{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mc_c00222{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00222{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00222{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m69_c00222{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m127_c00222{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00222{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m75_c00222{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m16_c00222{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00222{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00222{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m65_c00222{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m88_c00222{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00222{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00222{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00222{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m92_c00222{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00222{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md0_c00222{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m25_c00222{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00222{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m29_c00222{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00222{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mca_c00222{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m125_c00222{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m30_c00222{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mff_c00222{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00222{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m73_c00222{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00222{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m85_c00222{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00222{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m33_c00222{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m48_c00222{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mac_c00222{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mef_c00222{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00222{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00222{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md3_c00222{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m102_c00222{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.md2_c00222{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m66_c00222{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00222{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m57_c00222{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m80_c00222{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md1_c00222{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m68_c00222{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me6_c00222{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00222{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m117_c00222{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00222{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00222{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00222{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.meb_c00222{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00222{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00222{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00222{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00222{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m63_c00222{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m42_c00222{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m74_c00222{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00222{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00222{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m87_c00222{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mae_c00222{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m91_c00222{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.me2_c00222{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00222{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m122_c00222{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00222{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mea_c00222{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m119_c00222{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00222{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m99_c00222{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.me0_c00222{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m18_c00222{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m56_c00222{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00222{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00222{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00222{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m128_c00222{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m111_c00222{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00222{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00222{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00222{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m110_c00222{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m86_c00222{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00222{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00222{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00222{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00222{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00222{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m94_c00222{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00222{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m84_c00222{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00222{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m116_c00222{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m108_c00222{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00222{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00222{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m129_c00222{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00222{transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);}
.m93_c00222{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m0_c00222{transform:matrix(0.429250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00222{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.md5_c00222{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.me1_c00222{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00222{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00222{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls0_c00222{letter-spacing:0.000000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{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__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00222{word-spacing:-7.471698px;}
.ws8_c00222{word-spacing:-3.125000px;}
.ws7_c00222{word-spacing:-2.894737px;}
.ws9_c00222{word-spacing:-2.187500px;}
.wsa_c00222{word-spacing:0.000000px;}
.ws6_c00222{word-spacing:7.925764px;}
.ws0_c00222{word-spacing:9.333333px;}
.ws4_c00222{word-spacing:26.428954px;}
.ws2_c00222{word-spacing:40.000000px;}
.ws5_c00222{word-spacing:42.250000px;}
.ws3_c00222{word-spacing:44.166667px;}
._0_c00222{width:35.000000px;}
.fc0_c00222{color:transparent;}
.fs4_c00222{font-size:24.000000px;}
.fs6_c00222{font-size:42.000000px;}
.fs5_c00222{font-size:54.000000px;}
.fs3_c00222{font-size:60.000000px;}
.fs2_c00222{font-size:66.000000px;}
.fs1_c00222{font-size:72.000000px;}
.fs0_c00222{font-size:84.000000px;}
.y0_c00222{bottom:0.000000px;}
.y34_c00222{bottom:187.800000px;}
.y73_c00222{bottom:188.700000px;}
.y72_c00222{bottom:203.100000px;}
.y33_c00222{bottom:205.800000px;}
.y71_c00222{bottom:217.500000px;}
.y32_c00222{bottom:223.500000px;}
.y70_c00222{bottom:231.900000px;}
.y31_c00222{bottom:241.500000px;}
.y6f_c00222{bottom:246.300000px;}
.y30_c00222{bottom:259.500000px;}
.y6e_c00222{bottom:260.700000px;}
.y6d_c00222{bottom:275.400000px;}
.y2f_c00222{bottom:277.200000px;}
.y6c_c00222{bottom:289.200000px;}
.y2e_c00222{bottom:294.900000px;}
.y6b_c00222{bottom:303.600000px;}
.y2d_c00222{bottom:316.800000px;}
.y6a_c00222{bottom:318.000000px;}
.y69_c00222{bottom:332.400000px;}
.y68_c00222{bottom:346.800000px;}
.y2c_c00222{bottom:351.000000px;}
.y67_c00222{bottom:361.200000px;}
.y2b_c00222{bottom:368.700000px;}
.y66_c00222{bottom:375.300000px;}
.y65_c00222{bottom:389.400000px;}
.y2a_c00222{bottom:403.200000px;}
.y64_c00222{bottom:403.800000px;}
.y63_c00222{bottom:417.900000px;}
.y29_c00222{bottom:420.900000px;}
.y28_c00222{bottom:440.250000px;}
.y27_c00222{bottom:456.900000px;}
.y62_c00222{bottom:469.350000px;}
.y26_c00222{bottom:483.150000px;}
.y61_c00222{bottom:487.350000px;}
.y60_c00222{bottom:505.050000px;}
.y25_c00222{bottom:508.950000px;}
.y5f_c00222{bottom:522.750000px;}
.y24_c00222{bottom:526.950000px;}
.y5e_c00222{bottom:540.750000px;}
.y23_c00222{bottom:544.650000px;}
.y5d_c00222{bottom:558.750000px;}
.y22_c00222{bottom:562.650000px;}
.y5c_c00222{bottom:576.450000px;}
.y21_c00222{bottom:580.650000px;}
.y5b_c00222{bottom:594.450000px;}
.y20_c00222{bottom:598.350000px;}
.y5a_c00222{bottom:612.150000px;}
.y1f_c00222{bottom:616.050000px;}
.y59_c00222{bottom:630.450000px;}
.y1e_c00222{bottom:633.750000px;}
.y58_c00222{bottom:647.700000px;}
.y1d_c00222{bottom:651.750000px;}
.y1c_c00222{bottom:669.450000px;}
.y56_c00222{bottom:672.150000px;}
.y52_c00222{bottom:673.950000px;}
.y55_c00222{bottom:683.250000px;}
.y1b_c00222{bottom:687.450000px;}
.y51_c00222{bottom:687.900000px;}
.y50_c00222{bottom:701.250000px;}
.y54_c00222{bottom:702.000000px;}
.y1a_c00222{bottom:705.150000px;}
.y57_c00222{bottom:715.350000px;}
.y53_c00222{bottom:716.100000px;}
.y4f_c00222{bottom:716.700000px;}
.y19_c00222{bottom:722.850000px;}
.y4e_c00222{bottom:730.050000px;}
.y18_c00222{bottom:740.850000px;}
.y4d_c00222{bottom:745.200000px;}
.y17_c00222{bottom:758.550000px;}
.y4c_c00222{bottom:759.300000px;}
.y4b_c00222{bottom:773.700000px;}
.y16_c00222{bottom:776.250000px;}
.y4a_c00222{bottom:788.100000px;}
.y15_c00222{bottom:794.250000px;}
.y49_c00222{bottom:802.800000px;}
.y14_c00222{bottom:811.950000px;}
.y48_c00222{bottom:817.200000px;}
.y13_c00222{bottom:829.650000px;}
.y47_c00222{bottom:830.550000px;}
.y46_c00222{bottom:844.950000px;}
.y12_c00222{bottom:847.350000px;}
.y45_c00222{bottom:860.100000px;}
.y11_c00222{bottom:865.350000px;}
.y44_c00222{bottom:873.450000px;}
.y10_c00222{bottom:883.050000px;}
.y43_c00222{bottom:888.150000px;}
.yf_c00222{bottom:901.050000px;}
.y42_c00222{bottom:903.300000px;}
.y41_c00222{bottom:917.400000px;}
.ye_c00222{bottom:918.750000px;}
.y40_c00222{bottom:932.100000px;}
.yd_c00222{bottom:936.450000px;}
.y3f_c00222{bottom:945.300000px;}
.yc_c00222{bottom:954.150000px;}
.y3e_c00222{bottom:959.400000px;}
.yb_c00222{bottom:972.150000px;}
.y3d_c00222{bottom:974.850000px;}
.ya_c00222{bottom:989.850000px;}
.y3c_c00222{bottom:998.250000px;}
.y9_c00222{bottom:1007.850000px;}
.y3b_c00222{bottom:1017.000000px;}
.y8_c00222{bottom:1025.550000px;}
.y3a_c00222{bottom:1033.950000px;}
.y7_c00222{bottom:1043.250000px;}
.y39_c00222{bottom:1060.500000px;}
.y6_c00222{bottom:1060.950000px;}
.y38_c00222{bottom:1078.200000px;}
.y5_c00222{bottom:1078.650000px;}
.y37_c00222{bottom:1096.200000px;}
.y4_c00222{bottom:1096.950000px;}
.y36_c00222{bottom:1105.650000px;}
.y35_c00222{bottom:1113.900000px;}
.y3_c00222{bottom:1114.200000px;}
.y2_c00222{bottom:1139.100000px;}
.y1_c00222{bottom:1140.900000px;}
.h6_c00222{height:24.000000px;}
.h8_c00222{height:42.000000px;}
.h7_c00222{height:54.000000px;}
.h5_c00222{height:60.000000px;}
.h4_c00222{height:66.000000px;}
.h3_c00222{height:72.000000px;}
.h2_c00222{height:84.000000px;}
.h1_c00222{height:1272.750000px;}
.h0_c00222{height:1272.960022px;}
.w1_c00222{width:963.000000px;}
.w0_c00222{width:963.359985px;}
.x0_c00222{left:0.000000px;}
.x90_c00222{left:79.950000px;}
.x87_c00222{left:81.000000px;}
.x9c_c00222{left:85.050000px;}
.x8a_c00222{left:88.200000px;}
.x9a_c00222{left:95.400000px;}
.x9f_c00222{left:97.200000px;}
.x8b_c00222{left:98.250000px;}
.x26_c00222{left:101.250000px;}
.x58_c00222{left:103.650000px;}
.x49_c00222{left:104.700000px;}
.x3_c00222{left:105.900000px;}
.x91_c00222{left:108.750000px;}
.x97_c00222{left:117.450000px;}
.x8c_c00222{left:119.550000px;}
.x95_c00222{left:120.600000px;}
.x40_c00222{left:122.250000px;}
.x65_c00222{left:123.300000px;}
.x2b_c00222{left:128.250000px;}
.x4_c00222{left:130.050000px;}
.x27_c00222{left:134.400000px;}
.x86_c00222{left:135.900000px;}
.x4a_c00222{left:137.100000px;}
.xa0_c00222{left:138.150000px;}
.x5d_c00222{left:139.650000px;}
.x41_c00222{left:143.100000px;}
.x66_c00222{left:145.200000px;}
.x3b_c00222{left:147.900000px;}
.x59_c00222{left:148.950000px;}
.x43_c00222{left:151.050000px;}
.x33_c00222{left:153.000000px;}
.x52_c00222{left:155.100000px;}
.x5_c00222{left:157.800000px;}
.x20_c00222{left:159.600000px;}
.x2c_c00222{left:162.450000px;}
.x93_c00222{left:164.250000px;}
.x73_c00222{left:165.300000px;}
.x81_c00222{left:167.100000px;}
.x19_c00222{left:169.050000px;}
.x6e_c00222{left:171.750000px;}
.xd_c00222{left:172.950000px;}
.x34_c00222{left:174.600000px;}
.x3c_c00222{left:176.700000px;}
.x70_c00222{left:177.750000px;}
.x2d_c00222{left:178.950000px;}
.x28_c00222{left:180.450000px;}
.x79_c00222{left:181.950000px;}
.x5a_c00222{left:184.650000px;}
.x38_c00222{left:185.850000px;}
.x74_c00222{left:186.900000px;}
.x60_c00222{left:188.550000px;}
.x35_c00222{left:191.550000px;}
.x6_c00222{left:193.050000px;}
.x13_c00222{left:196.500000px;}
.x69_c00222{left:197.850000px;}
.x53_c00222{left:199.350000px;}
.x6a_c00222{left:200.400000px;}
.x21_c00222{left:203.100000px;}
.x75_c00222{left:204.150000px;}
.x77_c00222{left:206.400000px;}
.x44_c00222{left:209.400000px;}
.x71_c00222{left:211.200000px;}
.x2e_c00222{left:213.150000px;}
.x82_c00222{left:215.400000px;}
.x9d_c00222{left:216.450000px;}
.x63_c00222{left:219.000000px;}
.x78_c00222{left:221.100000px;}
.x7_c00222{left:222.900000px;}
.x8f_c00222{left:224.850000px;}
.x1a_c00222{left:227.400000px;}
.x96_c00222{left:228.600000px;}
.x39_c00222{left:229.800000px;}
.x4b_c00222{left:231.000000px;}
.x94_c00222{left:232.050000px;}
.x50_c00222{left:234.300000px;}
.x2f_c00222{left:235.500000px;}
.x45_c00222{left:237.450000px;}
.x92_c00222{left:239.400000px;}
.x67_c00222{left:241.200000px;}
.xe_c00222{left:243.150000px;}
.x29_c00222{left:244.500000px;}
.x7c_c00222{left:245.850000px;}
.x14_c00222{left:247.200000px;}
.x3d_c00222{left:249.000000px;}
.x54_c00222{left:251.550000px;}
.x98_c00222{left:253.500000px;}
.x56_c00222{left:254.550000px;}
.xa1_c00222{left:255.900000px;}
.x61_c00222{left:258.000000px;}
.x8_c00222{left:261.750000px;}
.x7d_c00222{left:263.100000px;}
.x4c_c00222{left:264.150000px;}
.x83_c00222{left:265.500000px;}
.x1b_c00222{left:267.450000px;}
.x88_c00222{left:269.550000px;}
.x80_c00222{left:272.550000px;}
.x42_c00222{left:275.700000px;}
.xa2_c00222{left:277.500000px;}
.x30_c00222{left:279.450000px;}
.x36_c00222{left:281.250000px;}
.x9_c00222{left:282.600000px;}
.x15_c00222{left:284.250000px;}
.x4d_c00222{left:286.800000px;}
.xf_c00222{left:289.650000px;}
.x6b_c00222{left:291.900000px;}
.x68_c00222{left:293.100000px;}
.x1c_c00222{left:297.750000px;}
.x31_c00222{left:299.250000px;}
.x51_c00222{left:300.600000px;}
.x7e_c00222{left:301.950000px;}
.x16_c00222{left:304.800000px;}
.x4e_c00222{left:306.600000px;}
.x46_c00222{left:309.150000px;}
.x6f_c00222{left:310.500000px;}
.x10_c00222{left:312.750000px;}
.x1d_c00222{left:314.700000px;}
.x22_c00222{left:317.550000px;}
.xa_c00222{left:319.350000px;}
.x1_c00222{left:324.000000px;}
.xa3_c00222{left:325.800000px;}
.x7a_c00222{left:328.050000px;}
.x11_c00222{left:329.250000px;}
.x5e_c00222{left:330.450000px;}
.x7f_c00222{left:332.250000px;}
.x84_c00222{left:334.350000px;}
.xb_c00222{left:338.850000px;}
.x3a_c00222{left:340.800000px;}
.x3e_c00222{left:341.850000px;}
.x17_c00222{left:343.350000px;}
.x89_c00222{left:344.700000px;}
.x8d_c00222{left:347.850000px;}
.x47_c00222{left:349.500000px;}
.x5b_c00222{left:351.300000px;}
.x23_c00222{left:352.800000px;}
.x85_c00222{left:354.900000px;}
.x62_c00222{left:356.250000px;}
.x12_c00222{left:359.850000px;}
.xc_c00222{left:361.200000px;}
.x2a_c00222{left:364.350000px;}
.x4f_c00222{left:366.000000px;}
.x18_c00222{left:367.050000px;}
.x5f_c00222{left:368.550000px;}
.x24_c00222{left:369.750000px;}
.x32_c00222{left:371.550000px;}
.x76_c00222{left:373.950000px;}
.x6c_c00222{left:375.750000px;}
.x55_c00222{left:376.800000px;}
.x3f_c00222{left:378.600000px;}
.x99_c00222{left:381.300000px;}
.x1e_c00222{left:382.350000px;}
.x9e_c00222{left:383.400000px;}
.x64_c00222{left:385.350000px;}
.x25_c00222{left:390.300000px;}
.x57_c00222{left:391.650000px;}
.x6d_c00222{left:393.450000px;}
.x5c_c00222{left:394.800000px;}
.x48_c00222{left:398.100000px;}
.x37_c00222{left:400.050000px;}
.x7b_c00222{left:401.700000px;}
.x8e_c00222{left:402.900000px;}
.x9b_c00222{left:404.700000px;}
.x1f_c00222{left:409.050000px;}
.x72_c00222{left:410.400000px;}
.x14a_c00222{left:436.200000px;}
.x130_c00222{left:437.400000px;}
.x111_c00222{left:439.950000px;}
.xbf_c00222{left:443.850000px;}
.x145_c00222{left:451.050000px;}
.x11f_c00222{left:452.400000px;}
.x131_c00222{left:453.600000px;}
.xef_c00222{left:455.700000px;}
.xd2_c00222{left:457.050000px;}
.xa4_c00222{left:462.300000px;}
.x141_c00222{left:464.550000px;}
.x13c_c00222{left:466.500000px;}
.x100_c00222{left:469.050000px;}
.xdf_c00222{left:470.550000px;}
.x132_c00222{left:472.350000px;}
.x115_c00222{left:474.600000px;}
.xd3_c00222{left:476.850000px;}
.x14c_c00222{left:478.800000px;}
.xb4_c00222{left:481.350000px;}
.x116_c00222{left:483.600000px;}
.x137_c00222{left:485.100000px;}
.xc0_c00222{left:487.800000px;}
.xad_c00222{left:489.000000px;}
.xc7_c00222{left:491.700000px;}
.xfc_c00222{left:493.650000px;}
.x11d_c00222{left:497.100000px;}
.xa5_c00222{left:498.600000px;}
.xd8_c00222{left:499.650000px;}
.x11c_c00222{left:501.000000px;}
.x104_c00222{left:502.050000px;}
.xb9_c00222{left:504.600000px;}
.x133_c00222{left:505.800000px;}
.xf8_c00222{left:507.300000px;}
.xe7_c00222{left:510.600000px;}
.x12b_c00222{left:511.650000px;}
.xd4_c00222{left:513.150000px;}
.xd9_c00222{left:515.100000px;}
.xb5_c00222{left:516.300000px;}
.x119_c00222{left:519.000000px;}
.x14d_c00222{left:521.700000px;}
.x105_c00222{left:522.750000px;}
.xcb_c00222{left:524.100000px;}
.xba_c00222{left:525.150000px;}
.x148_c00222{left:526.350000px;}
.x138_c00222{left:527.850000px;}
.x101_c00222{left:529.200000px;}
.x140_c00222{left:531.900000px;}
.xf3_c00222{left:534.600000px;}
.xec_c00222{left:538.200000px;}
.x106_c00222{left:539.250000px;}
.xf0_c00222{left:540.600000px;}
.xf7_c00222{left:541.800000px;}
.xa6_c00222{left:542.850000px;}
.xaf_c00222{left:544.350000px;}
.x120_c00222{left:546.000000px;}
.xda_c00222{left:548.550000px;}
.xce_c00222{left:551.400000px;}
.xa7_c00222{left:553.650000px;}
.xc1_c00222{left:555.900000px;}
.xed_c00222{left:556.950000px;}
.xd5_c00222{left:558.150000px;}
.x12e_c00222{left:559.500000px;}
.xe8_c00222{left:561.300000px;}
.xbb_c00222{left:562.650000px;}
.xb6_c00222{left:564.600000px;}
.xf9_c00222{left:565.650000px;}
.x144_c00222{left:567.000000px;}
.xf1_c00222{left:569.700000px;}
.xdb_c00222{left:570.900000px;}
.x11a_c00222{left:572.700000px;}
.x12c_c00222{left:574.650000px;}
.xf2_c00222{left:576.900000px;}
.xe0_c00222{left:578.550000px;}
.xe9_c00222{left:580.050000px;}
.xb0_c00222{left:581.100000px;}
.x124_c00222{left:584.100000px;}
.xe1_c00222{left:585.750000px;}
.x14f_c00222{left:588.450000px;}
.x107_c00222{left:591.150000px;}
.xa8_c00222{left:593.550000px;}
.xb1_c00222{left:595.200000px;}
.xdc_c00222{left:596.400000px;}
.x13b_c00222{left:598.500000px;}
.xe2_c00222{left:600.150000px;}
.xfd_c00222{left:601.950000px;}
.x125_c00222{left:603.150000px;}
.xc2_c00222{left:604.800000px;}
.xd6_c00222{left:606.450000px;}
.xee_c00222{left:608.400000px;}
.x146_c00222{left:609.450000px;}
.xfa_c00222{left:612.450000px;}
.xcc_c00222{left:615.450000px;}
.x102_c00222{left:617.400000px;}
.xae_c00222{left:620.700000px;}
.xe3_c00222{left:622.500000px;}
.xb7_c00222{left:624.750000px;}
.x117_c00222{left:629.100000px;}
.x14e_c00222{left:630.300000px;}
.x112_c00222{left:631.500000px;}
.xcd_c00222{left:633.750000px;}
.xe4_c00222{left:636.600000px;}
.xfb_c00222{left:637.650000px;}
.xa9_c00222{left:638.850000px;}
.x108_c00222{left:640.050000px;}
.xbc_c00222{left:642.150000px;}
.xc3_c00222{left:643.650000px;}
.x149_c00222{left:644.850000px;}
.x109_c00222{left:647.550000px;}
.xfe_c00222{left:648.750000px;}
.xc8_c00222{left:650.550000px;}
.x12f_c00222{left:651.600000px;}
.x139_c00222{left:653.250000px;}
.x10a_c00222{left:654.450000px;}
.xd7_c00222{left:656.550000px;}
.x126_c00222{left:658.200000px;}
.xaa_c00222{left:659.700000px;}
.x12d_c00222{left:661.050000px;}
.x11b_c00222{left:662.700000px;}
.xb2_c00222{left:665.100000px;}
.x147_c00222{left:666.750000px;}
.x128_c00222{left:667.950000px;}
.x10b_c00222{left:669.600000px;}
.x103_c00222{left:670.650000px;}
.xf4_c00222{left:672.150000px;}
.x13d_c00222{left:673.650000px;}
.x10c_c00222{left:676.500000px;}
.xbd_c00222{left:677.850000px;}
.xf6_c00222{left:679.350000px;}
.xb3_c00222{left:681.600000px;}
.x10d_c00222{left:683.700000px;}
.xc9_c00222{left:686.250000px;}
.x113_c00222{left:688.800000px;}
.x13a_c00222{left:691.050000px;}
.x121_c00222{left:694.350000px;}
.xc4_c00222{left:695.550000px;}
.xcf_c00222{left:698.700000px;}
.x134_c00222{left:700.350000px;}
.x142_c00222{left:701.550000px;}
.x10e_c00222{left:703.800000px;}
.xea_c00222{left:705.750000px;}
.xe5_c00222{left:706.800000px;}
.xdd_c00222{left:708.750000px;}
.xab_c00222{left:711.150000px;}
.xc5_c00222{left:713.850000px;}
.x11e_c00222{left:715.950000px;}
.x129_c00222{left:717.600000px;}
.x135_c00222{left:719.400000px;}
.x123_c00222{left:721.200000px;}
.x13e_c00222{left:723.750000px;}
.x14b_c00222{left:726.000000px;}
.xac_c00222{left:727.650000px;}
.xd0_c00222{left:729.600000px;}
.x110_c00222{left:732.600000px;}
.xeb_c00222{left:735.600000px;}
.xbe_c00222{left:737.550000px;}
.x136_c00222{left:739.200000px;}
.x114_c00222{left:741.000000px;}
.x13f_c00222{left:742.050000px;}
.xca_c00222{left:743.250000px;}
.x127_c00222{left:744.600000px;}
.x122_c00222{left:746.850000px;}
.xb8_c00222{left:748.650000px;}
.x118_c00222{left:750.450000px;}
.x2_c00222{left:752.100000px;}
.x12a_c00222{left:753.300000px;}
.x143_c00222{left:755.250000px;}
.x10f_c00222{left:756.300000px;}
.xf5_c00222{left:758.400000px;}
.xc6_c00222{left:760.650000px;}
.xff_c00222{left:763.050000px;}
.xd1_c00222{left:764.100000px;}
.xde_c00222{left:765.750000px;}
.xe6_c00222{left:767.700000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws1_c00222{word-spacing:-6.641509pt;}
.ws8_c00222{word-spacing:-2.777778pt;}
.ws7_c00222{word-spacing:-2.573099pt;}
.ws9_c00222{word-spacing:-1.944444pt;}
.wsa_c00222{word-spacing:0.000000pt;}
.ws6_c00222{word-spacing:7.045124pt;}
.ws0_c00222{word-spacing:8.296296pt;}
.ws4_c00222{word-spacing:23.492404pt;}
.ws2_c00222{word-spacing:35.555556pt;}
.ws5_c00222{word-spacing:37.555556pt;}
.ws3_c00222{word-spacing:39.259259pt;}
._0_c00222{width:31.111111pt;}
.fs4_c00222{font-size:21.333333pt;}
.fs6_c00222{font-size:37.333333pt;}
.fs5_c00222{font-size:48.000000pt;}
.fs3_c00222{font-size:53.333333pt;}
.fs2_c00222{font-size:58.666667pt;}
.fs1_c00222{font-size:64.000000pt;}
.fs0_c00222{font-size:74.666667pt;}
.y0_c00222{bottom:0.000000pt;}
.y34_c00222{bottom:166.933333pt;}
.y73_c00222{bottom:167.733333pt;}
.y72_c00222{bottom:180.533333pt;}
.y33_c00222{bottom:182.933333pt;}
.y71_c00222{bottom:193.333333pt;}
.y32_c00222{bottom:198.666667pt;}
.y70_c00222{bottom:206.133333pt;}
.y31_c00222{bottom:214.666667pt;}
.y6f_c00222{bottom:218.933333pt;}
.y30_c00222{bottom:230.666667pt;}
.y6e_c00222{bottom:231.733333pt;}
.y6d_c00222{bottom:244.800000pt;}
.y2f_c00222{bottom:246.400000pt;}
.y6c_c00222{bottom:257.066667pt;}
.y2e_c00222{bottom:262.133333pt;}
.y6b_c00222{bottom:269.866667pt;}
.y2d_c00222{bottom:281.600000pt;}
.y6a_c00222{bottom:282.666667pt;}
.y69_c00222{bottom:295.466667pt;}
.y68_c00222{bottom:308.266667pt;}
.y2c_c00222{bottom:312.000000pt;}
.y67_c00222{bottom:321.066667pt;}
.y2b_c00222{bottom:327.733333pt;}
.y66_c00222{bottom:333.600000pt;}
.y65_c00222{bottom:346.133333pt;}
.y2a_c00222{bottom:358.400000pt;}
.y64_c00222{bottom:358.933333pt;}
.y63_c00222{bottom:371.466667pt;}
.y29_c00222{bottom:374.133333pt;}
.y28_c00222{bottom:391.333333pt;}
.y27_c00222{bottom:406.133333pt;}
.y62_c00222{bottom:417.200000pt;}
.y26_c00222{bottom:429.466667pt;}
.y61_c00222{bottom:433.200000pt;}
.y60_c00222{bottom:448.933333pt;}
.y25_c00222{bottom:452.400000pt;}
.y5f_c00222{bottom:464.666667pt;}
.y24_c00222{bottom:468.400000pt;}
.y5e_c00222{bottom:480.666667pt;}
.y23_c00222{bottom:484.133333pt;}
.y5d_c00222{bottom:496.666667pt;}
.y22_c00222{bottom:500.133333pt;}
.y5c_c00222{bottom:512.400000pt;}
.y21_c00222{bottom:516.133333pt;}
.y5b_c00222{bottom:528.400000pt;}
.y20_c00222{bottom:531.866667pt;}
.y5a_c00222{bottom:544.133333pt;}
.y1f_c00222{bottom:547.600000pt;}
.y59_c00222{bottom:560.400000pt;}
.y1e_c00222{bottom:563.333333pt;}
.y58_c00222{bottom:575.733333pt;}
.y1d_c00222{bottom:579.333333pt;}
.y1c_c00222{bottom:595.066667pt;}
.y56_c00222{bottom:597.466667pt;}
.y52_c00222{bottom:599.066667pt;}
.y55_c00222{bottom:607.333333pt;}
.y1b_c00222{bottom:611.066667pt;}
.y51_c00222{bottom:611.466667pt;}
.y50_c00222{bottom:623.333333pt;}
.y54_c00222{bottom:624.000000pt;}
.y1a_c00222{bottom:626.800000pt;}
.y57_c00222{bottom:635.866667pt;}
.y53_c00222{bottom:636.533333pt;}
.y4f_c00222{bottom:637.066667pt;}
.y19_c00222{bottom:642.533333pt;}
.y4e_c00222{bottom:648.933333pt;}
.y18_c00222{bottom:658.533333pt;}
.y4d_c00222{bottom:662.400000pt;}
.y17_c00222{bottom:674.266667pt;}
.y4c_c00222{bottom:674.933333pt;}
.y4b_c00222{bottom:687.733333pt;}
.y16_c00222{bottom:690.000000pt;}
.y4a_c00222{bottom:700.533333pt;}
.y15_c00222{bottom:706.000000pt;}
.y49_c00222{bottom:713.600000pt;}
.y14_c00222{bottom:721.733333pt;}
.y48_c00222{bottom:726.400000pt;}
.y13_c00222{bottom:737.466667pt;}
.y47_c00222{bottom:738.266667pt;}
.y46_c00222{bottom:751.066667pt;}
.y12_c00222{bottom:753.200000pt;}
.y45_c00222{bottom:764.533333pt;}
.y11_c00222{bottom:769.200000pt;}
.y44_c00222{bottom:776.400000pt;}
.y10_c00222{bottom:784.933333pt;}
.y43_c00222{bottom:789.466667pt;}
.yf_c00222{bottom:800.933333pt;}
.y42_c00222{bottom:802.933333pt;}
.y41_c00222{bottom:815.466667pt;}
.ye_c00222{bottom:816.666667pt;}
.y40_c00222{bottom:828.533333pt;}
.yd_c00222{bottom:832.400000pt;}
.y3f_c00222{bottom:840.266667pt;}
.yc_c00222{bottom:848.133333pt;}
.y3e_c00222{bottom:852.800000pt;}
.yb_c00222{bottom:864.133333pt;}
.y3d_c00222{bottom:866.533333pt;}
.ya_c00222{bottom:879.866667pt;}
.y3c_c00222{bottom:887.333333pt;}
.y9_c00222{bottom:895.866667pt;}
.y3b_c00222{bottom:904.000000pt;}
.y8_c00222{bottom:911.600000pt;}
.y3a_c00222{bottom:919.066667pt;}
.y7_c00222{bottom:927.333333pt;}
.y39_c00222{bottom:942.666667pt;}
.y6_c00222{bottom:943.066667pt;}
.y38_c00222{bottom:958.400000pt;}
.y5_c00222{bottom:958.800000pt;}
.y37_c00222{bottom:974.400000pt;}
.y4_c00222{bottom:975.066667pt;}
.y36_c00222{bottom:982.800000pt;}
.y35_c00222{bottom:990.133333pt;}
.y3_c00222{bottom:990.400000pt;}
.y2_c00222{bottom:1012.533333pt;}
.y1_c00222{bottom:1014.133333pt;}
.h6_c00222{height:21.333333pt;}
.h8_c00222{height:37.333333pt;}
.h7_c00222{height:48.000000pt;}
.h5_c00222{height:53.333333pt;}
.h4_c00222{height:58.666667pt;}
.h3_c00222{height:64.000000pt;}
.h2_c00222{height:74.666667pt;}
.h1_c00222{height:1131.333333pt;}
.h0_c00222{height:1131.520020pt;}
.w1_c00222{width:856.000000pt;}
.w0_c00222{width:856.319987pt;}
.x0_c00222{left:0.000000pt;}
.x90_c00222{left:71.066667pt;}
.x87_c00222{left:72.000000pt;}
.x9c_c00222{left:75.600000pt;}
.x8a_c00222{left:78.400000pt;}
.x9a_c00222{left:84.800000pt;}
.x9f_c00222{left:86.400000pt;}
.x8b_c00222{left:87.333333pt;}
.x26_c00222{left:90.000000pt;}
.x58_c00222{left:92.133333pt;}
.x49_c00222{left:93.066667pt;}
.x3_c00222{left:94.133333pt;}
.x91_c00222{left:96.666667pt;}
.x97_c00222{left:104.400000pt;}
.x8c_c00222{left:106.266667pt;}
.x95_c00222{left:107.200000pt;}
.x40_c00222{left:108.666667pt;}
.x65_c00222{left:109.600000pt;}
.x2b_c00222{left:114.000000pt;}
.x4_c00222{left:115.600000pt;}
.x27_c00222{left:119.466667pt;}
.x86_c00222{left:120.800000pt;}
.x4a_c00222{left:121.866667pt;}
.xa0_c00222{left:122.800000pt;}
.x5d_c00222{left:124.133333pt;}
.x41_c00222{left:127.200000pt;}
.x66_c00222{left:129.066667pt;}
.x3b_c00222{left:131.466667pt;}
.x59_c00222{left:132.400000pt;}
.x43_c00222{left:134.266667pt;}
.x33_c00222{left:136.000000pt;}
.x52_c00222{left:137.866667pt;}
.x5_c00222{left:140.266667pt;}
.x20_c00222{left:141.866667pt;}
.x2c_c00222{left:144.400000pt;}
.x93_c00222{left:146.000000pt;}
.x73_c00222{left:146.933333pt;}
.x81_c00222{left:148.533333pt;}
.x19_c00222{left:150.266667pt;}
.x6e_c00222{left:152.666667pt;}
.xd_c00222{left:153.733333pt;}
.x34_c00222{left:155.200000pt;}
.x3c_c00222{left:157.066667pt;}
.x70_c00222{left:158.000000pt;}
.x2d_c00222{left:159.066667pt;}
.x28_c00222{left:160.400000pt;}
.x79_c00222{left:161.733333pt;}
.x5a_c00222{left:164.133333pt;}
.x38_c00222{left:165.200000pt;}
.x74_c00222{left:166.133333pt;}
.x60_c00222{left:167.600000pt;}
.x35_c00222{left:170.266667pt;}
.x6_c00222{left:171.600000pt;}
.x13_c00222{left:174.666667pt;}
.x69_c00222{left:175.866667pt;}
.x53_c00222{left:177.200000pt;}
.x6a_c00222{left:178.133333pt;}
.x21_c00222{left:180.533333pt;}
.x75_c00222{left:181.466667pt;}
.x77_c00222{left:183.466667pt;}
.x44_c00222{left:186.133333pt;}
.x71_c00222{left:187.733333pt;}
.x2e_c00222{left:189.466667pt;}
.x82_c00222{left:191.466667pt;}
.x9d_c00222{left:192.400000pt;}
.x63_c00222{left:194.666667pt;}
.x78_c00222{left:196.533333pt;}
.x7_c00222{left:198.133333pt;}
.x8f_c00222{left:199.866667pt;}
.x1a_c00222{left:202.133333pt;}
.x96_c00222{left:203.200000pt;}
.x39_c00222{left:204.266667pt;}
.x4b_c00222{left:205.333333pt;}
.x94_c00222{left:206.266667pt;}
.x50_c00222{left:208.266667pt;}
.x2f_c00222{left:209.333333pt;}
.x45_c00222{left:211.066667pt;}
.x92_c00222{left:212.800000pt;}
.x67_c00222{left:214.400000pt;}
.xe_c00222{left:216.133333pt;}
.x29_c00222{left:217.333333pt;}
.x7c_c00222{left:218.533333pt;}
.x14_c00222{left:219.733333pt;}
.x3d_c00222{left:221.333333pt;}
.x54_c00222{left:223.600000pt;}
.x98_c00222{left:225.333333pt;}
.x56_c00222{left:226.266667pt;}
.xa1_c00222{left:227.466667pt;}
.x61_c00222{left:229.333333pt;}
.x8_c00222{left:232.666667pt;}
.x7d_c00222{left:233.866667pt;}
.x4c_c00222{left:234.800000pt;}
.x83_c00222{left:236.000000pt;}
.x1b_c00222{left:237.733333pt;}
.x88_c00222{left:239.600000pt;}
.x80_c00222{left:242.266667pt;}
.x42_c00222{left:245.066667pt;}
.xa2_c00222{left:246.666667pt;}
.x30_c00222{left:248.400000pt;}
.x36_c00222{left:250.000000pt;}
.x9_c00222{left:251.200000pt;}
.x15_c00222{left:252.666667pt;}
.x4d_c00222{left:254.933333pt;}
.xf_c00222{left:257.466667pt;}
.x6b_c00222{left:259.466667pt;}
.x68_c00222{left:260.533333pt;}
.x1c_c00222{left:264.666667pt;}
.x31_c00222{left:266.000000pt;}
.x51_c00222{left:267.200000pt;}
.x7e_c00222{left:268.400000pt;}
.x16_c00222{left:270.933333pt;}
.x4e_c00222{left:272.533333pt;}
.x46_c00222{left:274.800000pt;}
.x6f_c00222{left:276.000000pt;}
.x10_c00222{left:278.000000pt;}
.x1d_c00222{left:279.733333pt;}
.x22_c00222{left:282.266667pt;}
.xa_c00222{left:283.866667pt;}
.x1_c00222{left:288.000000pt;}
.xa3_c00222{left:289.600000pt;}
.x7a_c00222{left:291.600000pt;}
.x11_c00222{left:292.666667pt;}
.x5e_c00222{left:293.733333pt;}
.x7f_c00222{left:295.333333pt;}
.x84_c00222{left:297.200000pt;}
.xb_c00222{left:301.200000pt;}
.x3a_c00222{left:302.933333pt;}
.x3e_c00222{left:303.866667pt;}
.x17_c00222{left:305.200000pt;}
.x89_c00222{left:306.400000pt;}
.x8d_c00222{left:309.200000pt;}
.x47_c00222{left:310.666667pt;}
.x5b_c00222{left:312.266667pt;}
.x23_c00222{left:313.600000pt;}
.x85_c00222{left:315.466667pt;}
.x62_c00222{left:316.666667pt;}
.x12_c00222{left:319.866667pt;}
.xc_c00222{left:321.066667pt;}
.x2a_c00222{left:323.866667pt;}
.x4f_c00222{left:325.333333pt;}
.x18_c00222{left:326.266667pt;}
.x5f_c00222{left:327.600000pt;}
.x24_c00222{left:328.666667pt;}
.x32_c00222{left:330.266667pt;}
.x76_c00222{left:332.400000pt;}
.x6c_c00222{left:334.000000pt;}
.x55_c00222{left:334.933333pt;}
.x3f_c00222{left:336.533333pt;}
.x99_c00222{left:338.933333pt;}
.x1e_c00222{left:339.866667pt;}
.x9e_c00222{left:340.800000pt;}
.x64_c00222{left:342.533333pt;}
.x25_c00222{left:346.933333pt;}
.x57_c00222{left:348.133333pt;}
.x6d_c00222{left:349.733333pt;}
.x5c_c00222{left:350.933333pt;}
.x48_c00222{left:353.866667pt;}
.x37_c00222{left:355.600000pt;}
.x7b_c00222{left:357.066667pt;}
.x8e_c00222{left:358.133333pt;}
.x9b_c00222{left:359.733333pt;}
.x1f_c00222{left:363.600000pt;}
.x72_c00222{left:364.800000pt;}
.x14a_c00222{left:387.733333pt;}
.x130_c00222{left:388.800000pt;}
.x111_c00222{left:391.066667pt;}
.xbf_c00222{left:394.533333pt;}
.x145_c00222{left:400.933333pt;}
.x11f_c00222{left:402.133333pt;}
.x131_c00222{left:403.200000pt;}
.xef_c00222{left:405.066667pt;}
.xd2_c00222{left:406.266667pt;}
.xa4_c00222{left:410.933333pt;}
.x141_c00222{left:412.933333pt;}
.x13c_c00222{left:414.666667pt;}
.x100_c00222{left:416.933333pt;}
.xdf_c00222{left:418.266667pt;}
.x132_c00222{left:419.866667pt;}
.x115_c00222{left:421.866667pt;}
.xd3_c00222{left:423.866667pt;}
.x14c_c00222{left:425.600000pt;}
.xb4_c00222{left:427.866667pt;}
.x116_c00222{left:429.866667pt;}
.x137_c00222{left:431.200000pt;}
.xc0_c00222{left:433.600000pt;}
.xad_c00222{left:434.666667pt;}
.xc7_c00222{left:437.066667pt;}
.xfc_c00222{left:438.800000pt;}
.x11d_c00222{left:441.866667pt;}
.xa5_c00222{left:443.200000pt;}
.xd8_c00222{left:444.133333pt;}
.x11c_c00222{left:445.333333pt;}
.x104_c00222{left:446.266667pt;}
.xb9_c00222{left:448.533333pt;}
.x133_c00222{left:449.600000pt;}
.xf8_c00222{left:450.933333pt;}
.xe7_c00222{left:453.866667pt;}
.x12b_c00222{left:454.800000pt;}
.xd4_c00222{left:456.133333pt;}
.xd9_c00222{left:457.866667pt;}
.xb5_c00222{left:458.933333pt;}
.x119_c00222{left:461.333333pt;}
.x14d_c00222{left:463.733333pt;}
.x105_c00222{left:464.666667pt;}
.xcb_c00222{left:465.866667pt;}
.xba_c00222{left:466.800000pt;}
.x148_c00222{left:467.866667pt;}
.x138_c00222{left:469.200000pt;}
.x101_c00222{left:470.400000pt;}
.x140_c00222{left:472.800000pt;}
.xf3_c00222{left:475.200000pt;}
.xec_c00222{left:478.400000pt;}
.x106_c00222{left:479.333333pt;}
.xf0_c00222{left:480.533333pt;}
.xf7_c00222{left:481.600000pt;}
.xa6_c00222{left:482.533333pt;}
.xaf_c00222{left:483.866667pt;}
.x120_c00222{left:485.333333pt;}
.xda_c00222{left:487.600000pt;}
.xce_c00222{left:490.133333pt;}
.xa7_c00222{left:492.133333pt;}
.xc1_c00222{left:494.133333pt;}
.xed_c00222{left:495.066667pt;}
.xd5_c00222{left:496.133333pt;}
.x12e_c00222{left:497.333333pt;}
.xe8_c00222{left:498.933333pt;}
.xbb_c00222{left:500.133333pt;}
.xb6_c00222{left:501.866667pt;}
.xf9_c00222{left:502.800000pt;}
.x144_c00222{left:504.000000pt;}
.xf1_c00222{left:506.400000pt;}
.xdb_c00222{left:507.466667pt;}
.x11a_c00222{left:509.066667pt;}
.x12c_c00222{left:510.800000pt;}
.xf2_c00222{left:512.800000pt;}
.xe0_c00222{left:514.266667pt;}
.xe9_c00222{left:515.600000pt;}
.xb0_c00222{left:516.533333pt;}
.x124_c00222{left:519.200000pt;}
.xe1_c00222{left:520.666667pt;}
.x14f_c00222{left:523.066667pt;}
.x107_c00222{left:525.466667pt;}
.xa8_c00222{left:527.600000pt;}
.xb1_c00222{left:529.066667pt;}
.xdc_c00222{left:530.133333pt;}
.x13b_c00222{left:532.000000pt;}
.xe2_c00222{left:533.466667pt;}
.xfd_c00222{left:535.066667pt;}
.x125_c00222{left:536.133333pt;}
.xc2_c00222{left:537.600000pt;}
.xd6_c00222{left:539.066667pt;}
.xee_c00222{left:540.800000pt;}
.x146_c00222{left:541.733333pt;}
.xfa_c00222{left:544.400000pt;}
.xcc_c00222{left:547.066667pt;}
.x102_c00222{left:548.800000pt;}
.xae_c00222{left:551.733333pt;}
.xe3_c00222{left:553.333333pt;}
.xb7_c00222{left:555.333333pt;}
.x117_c00222{left:559.200000pt;}
.x14e_c00222{left:560.266667pt;}
.x112_c00222{left:561.333333pt;}
.xcd_c00222{left:563.333333pt;}
.xe4_c00222{left:565.866667pt;}
.xfb_c00222{left:566.800000pt;}
.xa9_c00222{left:567.866667pt;}
.x108_c00222{left:568.933333pt;}
.xbc_c00222{left:570.800000pt;}
.xc3_c00222{left:572.133333pt;}
.x149_c00222{left:573.200000pt;}
.x109_c00222{left:575.600000pt;}
.xfe_c00222{left:576.666667pt;}
.xc8_c00222{left:578.266667pt;}
.x12f_c00222{left:579.200000pt;}
.x139_c00222{left:580.666667pt;}
.x10a_c00222{left:581.733333pt;}
.xd7_c00222{left:583.600000pt;}
.x126_c00222{left:585.066667pt;}
.xaa_c00222{left:586.400000pt;}
.x12d_c00222{left:587.600000pt;}
.x11b_c00222{left:589.066667pt;}
.xb2_c00222{left:591.200000pt;}
.x147_c00222{left:592.666667pt;}
.x128_c00222{left:593.733333pt;}
.x10b_c00222{left:595.200000pt;}
.x103_c00222{left:596.133333pt;}
.xf4_c00222{left:597.466667pt;}
.x13d_c00222{left:598.800000pt;}
.x10c_c00222{left:601.333333pt;}
.xbd_c00222{left:602.533333pt;}
.xf6_c00222{left:603.866667pt;}
.xb3_c00222{left:605.866667pt;}
.x10d_c00222{left:607.733333pt;}
.xc9_c00222{left:610.000000pt;}
.x113_c00222{left:612.266667pt;}
.x13a_c00222{left:614.266667pt;}
.x121_c00222{left:617.200000pt;}
.xc4_c00222{left:618.266667pt;}
.xcf_c00222{left:621.066667pt;}
.x134_c00222{left:622.533333pt;}
.x142_c00222{left:623.600000pt;}
.x10e_c00222{left:625.600000pt;}
.xea_c00222{left:627.333333pt;}
.xe5_c00222{left:628.266667pt;}
.xdd_c00222{left:630.000000pt;}
.xab_c00222{left:632.133333pt;}
.xc5_c00222{left:634.533333pt;}
.x11e_c00222{left:636.400000pt;}
.x129_c00222{left:637.866667pt;}
.x135_c00222{left:639.466667pt;}
.x123_c00222{left:641.066667pt;}
.x13e_c00222{left:643.333333pt;}
.x14b_c00222{left:645.333333pt;}
.xac_c00222{left:646.800000pt;}
.xd0_c00222{left:648.533333pt;}
.x110_c00222{left:651.200000pt;}
.xeb_c00222{left:653.866667pt;}
.xbe_c00222{left:655.600000pt;}
.x136_c00222{left:657.066667pt;}
.x114_c00222{left:658.666667pt;}
.x13f_c00222{left:659.600000pt;}
.xca_c00222{left:660.666667pt;}
.x127_c00222{left:661.866667pt;}
.x122_c00222{left:663.866667pt;}
.xb8_c00222{left:665.466667pt;}
.x118_c00222{left:667.066667pt;}
.x2_c00222{left:668.533333pt;}
.x12a_c00222{left:669.600000pt;}
.x143_c00222{left:671.333333pt;}
.x10f_c00222{left:672.266667pt;}
.xf5_c00222{left:674.133333pt;}
.xc6_c00222{left:676.133333pt;}
.xff_c00222{left:678.266667pt;}
.xd1_c00222{left:679.200000pt;}
.xde_c00222{left:680.666667pt;}
.xe6_c00222{left:682.400000pt;}
}





/* 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_c00223 {
    display:none;
  }
  .loading-indicator_c00223.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00223 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_c00223 { 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_c00223" -> "#page-container .classname_c00223")
 */
.pf_c00223 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00223 { /* 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_c00223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00223 { /* 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_c00223 { /* 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_c00223 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00223 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00223 {overflow:visible;}
  }
}
.c_c00223 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00223 { /* 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_c00223:after { /* webkit #35443 */
  content: '';
}
.t_c00223:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00223 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 */
}
.__c00223 { /* 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_c00223 { /* info for Javascript */
  display:none;
}
.l_c00223 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00223 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00223 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00223: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_c00223 {
    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_c00223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00223.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_c00223 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00223;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.000000;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;}
.m104_c00223{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m60_c00223{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m45_c00223{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m100_c00223{transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);}
.me5_c00223{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.me3_c00223{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m95_c00223{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m77_c00223{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00223{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m31_c00223{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m16_c00223{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00223{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m48_c00223{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00223{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m4_c00223{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mee_c00223{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00223{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00223{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00223{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00223{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.me7_c00223{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md2_c00223{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m50_c00223{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00223{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m98_c00223{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00223{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m41_c00223{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.me8_c00223{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m99_c00223{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00223{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.ma_c00223{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m58_c00223{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00223{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.me9_c00223{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m28_c00223{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9_c00223{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00223{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mae_c00223{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00223{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.maa_c00223{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00223{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00223{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00223{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m42_c00223{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00223{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8_c00223{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00223{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m12_c00223{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mad_c00223{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00223{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m25_c00223{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00223{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m6_c00223{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf_c00223{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00223{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00223{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00223{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00223{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m80_c00223{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00223{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m59_c00223{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00223{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc_c00223{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m64_c00223{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m57_c00223{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00223{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00223{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m88_c00223{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00223{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00223{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00223{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00223{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md8_c00223{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00223{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00223{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m85_c00223{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m19_c00223{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m44_c00223{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m11_c00223{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00223{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m27_c00223{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00223{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m13_c00223{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00223{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00223{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m35_c00223{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m49_c00223{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00223{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00223{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mff_c00223{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00223{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00223{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3_c00223{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m69_c00223{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m51_c00223{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00223{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00223{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m52_c00223{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m78_c00223{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00223{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00223{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00223{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m43_c00223{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m46_c00223{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m54_c00223{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00223{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m74_c00223{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00223{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00223{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m70_c00223{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00223{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00223{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m14_c00223{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m24_c00223{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m56_c00223{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00223{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00223{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00223{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00223{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me4_c00223{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m34_c00223{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mba_c00223{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mac_c00223{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00223{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m53_c00223{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m37_c00223{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00223{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m68_c00223{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m86_c00223{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5_c00223{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me1_c00223{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m84_c00223{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m82_c00223{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00223{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m75_c00223{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7_c00223{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m36_c00223{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m15_c00223{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00223{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m20_c00223{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m55_c00223{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m91_c00223{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00223{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00223{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10_c00223{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00223{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00223{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m61_c00223{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m81_c00223{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb_c00223{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00223{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00223{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00223{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00223{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m21_c00223{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00223{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m93_c00223{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00223{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00223{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00223{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m22_c00223{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00223{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m66_c00223{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00223{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m29_c00223{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.me_c00223{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m33_c00223{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m102_c00223{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m17_c00223{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mab_c00223{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00223{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me2_c00223{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00223{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m38_c00223{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m96_c00223{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00223{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m101_c00223{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00223{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m23_c00223{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m18_c00223{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00223{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00223{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00223{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m103_c00223{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m39_c00223{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md1_c00223{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maf_c00223{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00223{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me6_c00223{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mde_c00223{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m40_c00223{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m65_c00223{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00223{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00223{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.md_c00223{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m73_c00223{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m92_c00223{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00223{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md0_c00223{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00223{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00223{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m79_c00223{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00223{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00223{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00223{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m72_c00223{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m47_c00223{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00223{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00223{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m26_c00223{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m63_c00223{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00223{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00223{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m32_c00223{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00223{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00223{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00223{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00223{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);}
.mb2_c00223{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00223{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00223{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00223{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00223{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m90_c00223{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m94_c00223{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00223{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00223{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.md7_c00223{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00223{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mca_c00223{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m76_c00223{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00223{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.md9_c00223{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00223{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m62_c00223{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00223{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00223{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mda_c00223{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00223{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m89_c00223{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.md3_c00223{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.md6_c00223{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m30_c00223{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.med_c00223{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m87_c00223{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m97_c00223{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m83_c00223{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.md5_c00223{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00223{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mec_c00223{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.md4_c00223{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me0_c00223{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.mef_c00223{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00223{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00223{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mce_c00223{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m71_c00223{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m67_c00223{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m1_c00223{transform:matrix(0.532250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532250,0.000000,0.000000,0.250000,0,0);}
.meb_c00223{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.mea_c00223{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls0_c00223{letter-spacing:0.000000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{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__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00223{word-spacing:-10.625000px;}
.ws1_c00223{word-spacing:-7.162162px;}
.ws6_c00223{word-spacing:0.000000px;}
.ws3_c00223{word-spacing:1.908309px;}
.ws4_c00223{word-spacing:5.075653px;}
.ws0_c00223{word-spacing:6.944444px;}
.ws2_c00223{word-spacing:7.108280px;}
.fc0_c00223{color:transparent;}
.fs5_c00223{font-size:24.000000px;}
.fs6_c00223{font-size:48.000000px;}
.fs4_c00223{font-size:54.000000px;}
.fs2_c00223{font-size:60.000000px;}
.fs1_c00223{font-size:66.000000px;}
.fs3_c00223{font-size:72.000000px;}
.fs0_c00223{font-size:78.000000px;}
.y0_c00223{bottom:0.000000px;}
.y69_c00223{bottom:13.650000px;}
.y68_c00223{bottom:176.400000px;}
.y67_c00223{bottom:196.200000px;}
.y33_c00223{bottom:198.150000px;}
.y66_c00223{bottom:214.500000px;}
.y32_c00223{bottom:215.850000px;}
.y65_c00223{bottom:231.750000px;}
.y31_c00223{bottom:233.550000px;}
.y64_c00223{bottom:249.750000px;}
.y30_c00223{bottom:251.250000px;}
.y63_c00223{bottom:267.450000px;}
.y2f_c00223{bottom:268.950000px;}
.y62_c00223{bottom:285.450000px;}
.y2e_c00223{bottom:286.650000px;}
.y61_c00223{bottom:303.150000px;}
.y2d_c00223{bottom:304.350000px;}
.y60_c00223{bottom:321.150000px;}
.y2c_c00223{bottom:322.050000px;}
.y5f_c00223{bottom:339.450000px;}
.y2b_c00223{bottom:339.750000px;}
.y5e_c00223{bottom:356.700000px;}
.y2a_c00223{bottom:357.450000px;}
.y5d_c00223{bottom:374.700000px;}
.y29_c00223{bottom:375.450000px;}
.y5c_c00223{bottom:392.400000px;}
.y28_c00223{bottom:401.100000px;}
.y5b_c00223{bottom:412.500000px;}
.y27_c00223{bottom:420.150000px;}
.y5a_c00223{bottom:426.600000px;}
.y26_c00223{bottom:438.900000px;}
.y59_c00223{bottom:440.250000px;}
.y58_c00223{bottom:441.450000px;}
.y57_c00223{bottom:456.150000px;}
.y25_c00223{bottom:456.900000px;}
.y24_c00223{bottom:474.600000px;}
.y56_c00223{bottom:480.150000px;}
.y23_c00223{bottom:492.900000px;}
.y55_c00223{bottom:498.150000px;}
.y54_c00223{bottom:515.850000px;}
.y22_c00223{bottom:518.700000px;}
.y53_c00223{bottom:533.550000px;}
.y21_c00223{bottom:536.400000px;}
.y20_c00223{bottom:554.400000px;}
.y52_c00223{bottom:555.900000px;}
.y1f_c00223{bottom:576.000000px;}
.y51_c00223{bottom:589.350000px;}
.y1e_c00223{bottom:593.700000px;}
.y50_c00223{bottom:595.050000px;}
.y4f_c00223{bottom:613.050000px;}
.y1d_c00223{bottom:624.300000px;}
.y1c_c00223{bottom:642.300000px;}
.y4e_c00223{bottom:644.100000px;}
.y1b_c00223{bottom:660.300000px;}
.y4d_c00223{bottom:670.650000px;}
.y1a_c00223{bottom:682.200000px;}
.y4c_c00223{bottom:688.350000px;}
.y19_c00223{bottom:700.200000px;}
.y4b_c00223{bottom:706.050000px;}
.y18_c00223{bottom:718.500000px;}
.y4a_c00223{bottom:724.350000px;}
.y17_c00223{bottom:735.750000px;}
.y49_c00223{bottom:750.150000px;}
.y16_c00223{bottom:753.750000px;}
.y48_c00223{bottom:767.850000px;}
.y15_c00223{bottom:771.450000px;}
.y47_c00223{bottom:785.850000px;}
.y14_c00223{bottom:797.700000px;}
.y46_c00223{bottom:803.550000px;}
.y13_c00223{bottom:815.700000px;}
.y45_c00223{bottom:820.800000px;}
.y12_c00223{bottom:833.400000px;}
.y44_c00223{bottom:839.100000px;}
.y11_c00223{bottom:854.550000px;}
.y43_c00223{bottom:856.800000px;}
.y10_c00223{bottom:872.850000px;}
.y42_c00223{bottom:874.500000px;}
.yf_c00223{bottom:890.850000px;}
.y41_c00223{bottom:892.200000px;}
.ye_c00223{bottom:908.550000px;}
.y40_c00223{bottom:910.200000px;}
.yd_c00223{bottom:926.550000px;}
.y3f_c00223{bottom:930.000000px;}
.yc_c00223{bottom:944.250000px;}
.y3e_c00223{bottom:945.450000px;}
.yb_c00223{bottom:961.950000px;}
.y3d_c00223{bottom:963.150000px;}
.ya_c00223{bottom:979.950000px;}
.y3c_c00223{bottom:980.850000px;}
.y9_c00223{bottom:997.650000px;}
.y3b_c00223{bottom:998.850000px;}
.y8_c00223{bottom:1015.350000px;}
.y3a_c00223{bottom:1016.550000px;}
.y7_c00223{bottom:1033.050000px;}
.y39_c00223{bottom:1034.250000px;}
.y6_c00223{bottom:1050.750000px;}
.y38_c00223{bottom:1052.250000px;}
.y5_c00223{bottom:1068.750000px;}
.y37_c00223{bottom:1069.500000px;}
.y4_c00223{bottom:1086.450000px;}
.y36_c00223{bottom:1087.500000px;}
.y3_c00223{bottom:1104.150000px;}
.y35_c00223{bottom:1105.200000px;}
.y2_c00223{bottom:1122.150000px;}
.y34_c00223{bottom:1122.900000px;}
.y1_c00223{bottom:1149.150000px;}
.h6_c00223{height:24.000000px;}
.h7_c00223{height:48.000000px;}
.h5_c00223{height:54.000000px;}
.h3_c00223{height:60.000000px;}
.h2_c00223{height:66.000000px;}
.h4_c00223{height:72.000000px;}
.h1_c00223{height:78.000000px;}
.h0_c00223{height:1269.000000px;}
.w1_c00223{width:963.000000px;}
.w0_c00223{width:963.359985px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:176.400000px;}
.x75_c00223{left:177.900000px;}
.x7c_c00223{left:179.250000px;}
.x90_c00223{left:181.500000px;}
.x8e_c00223{left:185.100000px;}
.x44_c00223{left:187.950000px;}
.x58_c00223{left:189.450000px;}
.x4_c00223{left:194.100000px;}
.x45_c00223{left:195.150000px;}
.x6f_c00223{left:196.350000px;}
.x8a_c00223{left:198.000000px;}
.x92_c00223{left:199.200000px;}
.x96_c00223{left:200.250000px;}
.x9e_c00223{left:201.900000px;}
.x88_c00223{left:204.900000px;}
.x4c_c00223{left:212.550000px;}
.xa2_c00223{left:213.600000px;}
.x2e_c00223{left:215.250000px;}
.xf_c00223{left:217.050000px;}
.x1c_c00223{left:220.200000px;}
.x15_c00223{left:221.250000px;}
.x36_c00223{left:222.300000px;}
.x3e_c00223{left:223.500000px;}
.x93_c00223{left:226.200000px;}
.x5_c00223{left:230.400000px;}
.x4d_c00223{left:232.650000px;}
.x6c_c00223{left:233.850000px;}
.x38_c00223{left:236.100000px;}
.x64_c00223{left:237.150000px;}
.x10_c00223{left:238.650000px;}
.x6_c00223{left:240.150000px;}
.x8f_c00223{left:241.200000px;}
.x46_c00223{left:242.700000px;}
.x3c_c00223{left:244.800000px;}
.x8b_c00223{left:246.150000px;}
.x76_c00223{left:248.400000px;}
.x51_c00223{left:249.600000px;}
.x22_c00223{left:251.400000px;}
.x16_c00223{left:252.600000px;}
.x29_c00223{left:253.950000px;}
.x7b_c00223{left:256.050000px;}
.x59_c00223{left:259.200000px;}
.x80_c00223{left:260.550000px;}
.x47_c00223{left:262.500000px;}
.x65_c00223{left:264.450000px;}
.x7_c00223{left:266.400000px;}
.x2f_c00223{left:270.300000px;}
.x60_c00223{left:271.950000px;}
.x2a_c00223{left:273.000000px;}
.x11_c00223{left:274.950000px;}
.x5a_c00223{left:276.150000px;}
.x23_c00223{left:278.400000px;}
.x56_c00223{left:279.600000px;}
.x37_c00223{left:281.400000px;}
.x3f_c00223{left:284.400000px;}
.x1d_c00223{left:285.750000px;}
.x98_c00223{left:287.850000px;}
.x39_c00223{left:289.800000px;}
.x8c_c00223{left:291.900000px;}
.x30_c00223{left:294.750000px;}
.x5e_c00223{left:296.700000px;}
.x72_c00223{left:298.950000px;}
.x40_c00223{left:300.300000px;}
.xa3_c00223{left:302.250000px;}
.x9b_c00223{left:304.200000px;}
.x17_c00223{left:305.850000px;}
.x5c_c00223{left:309.900000px;}
.x8_c00223{left:312.900000px;}
.x18_c00223{left:314.100000px;}
.x24_c00223{left:315.150000px;}
.x31_c00223{left:316.350000px;}
.x79_c00223{left:318.000000px;}
.x52_c00223{left:320.100000px;}
.x66_c00223{left:321.300000px;}
.x48_c00223{left:325.200000px;}
.x57_c00223{left:327.000000px;}
.x1e_c00223{left:329.250000px;}
.x9_c00223{left:332.700000px;}
.x7d_c00223{left:334.650000px;}
.x99_c00223{left:335.700000px;}
.x61_c00223{left:337.500000px;}
.x4e_c00223{left:339.150000px;}
.x69_c00223{left:345.900000px;}
.x41_c00223{left:348.900000px;}
.x77_c00223{left:350.700000px;}
.x97_c00223{left:352.650000px;}
.x82_c00223{left:353.700000px;}
.x73_c00223{left:354.750000px;}
.x6d_c00223{left:356.250000px;}
.x62_c00223{left:357.300000px;}
.x12_c00223{left:359.850000px;}
.xa4_c00223{left:361.950000px;}
.xa_c00223{left:365.850000px;}
.x2b_c00223{left:368.100000px;}
.x94_c00223{left:370.050000px;}
.x19_c00223{left:371.700000px;}
.x42_c00223{left:374.400000px;}
.x91_c00223{left:375.600000px;}
.x32_c00223{left:381.150000px;}
.x9f_c00223{left:383.700000px;}
.x9c_c00223{left:386.250000px;}
.x74_c00223{left:388.200000px;}
.x33_c00223{left:389.850000px;}
.x1f_c00223{left:392.250000px;}
.xb_c00223{left:393.900000px;}
.x70_c00223{left:395.400000px;}
.x53_c00223{left:397.200000px;}
.x25_c00223{left:399.000000px;}
.x6a_c00223{left:401.700000px;}
.x5f_c00223{left:403.650000px;}
.xa0_c00223{left:406.050000px;}
.x49_c00223{left:408.750000px;}
.x84_c00223{left:409.950000px;}
.x7a_c00223{left:411.300000px;}
.x20_c00223{left:413.100000px;}
.x71_c00223{left:415.500000px;}
.x26_c00223{left:417.300000px;}
.x4f_c00223{left:419.400000px;}
.x2_c00223{left:420.900000px;}
.x43_c00223{left:424.500000px;}
.xc_c00223{left:426.600000px;}
.x3a_c00223{left:427.650000px;}
.x13_c00223{left:429.000000px;}
.x1a_c00223{left:430.650000px;}
.x2c_c00223{left:433.650000px;}
.x54_c00223{left:436.050000px;}
.x7e_c00223{left:439.800000px;}
.x4a_c00223{left:441.150000px;}
.xd_c00223{left:443.100000px;}
.x6e_c00223{left:444.750000px;}
.x85_c00223{left:446.100000px;}
.x27_c00223{left:447.600000px;}
.x5b_c00223{left:448.650000px;}
.x34_c00223{left:449.850000px;}
.x14_c00223{left:451.650000px;}
.x81_c00223{left:452.700000px;}
.xa5_c00223{left:454.950000px;}
.x21_c00223{left:456.300000px;}
.x2d_c00223{left:457.800000px;}
.x6b_c00223{left:458.850000px;}
.x67_c00223{left:461.700000px;}
.x4b_c00223{left:464.250000px;}
.x83_c00223{left:465.600000px;}
.x28_c00223{left:467.100000px;}
.x86_c00223{left:469.200000px;}
.x9d_c00223{left:470.400000px;}
.x3d_c00223{left:471.600000px;}
.x1b_c00223{left:473.550000px;}
.x8d_c00223{left:475.200000px;}
.x5d_c00223{left:476.550000px;}
.xe_c00223{left:478.350000px;}
.x9a_c00223{left:480.750000px;}
.x3b_c00223{left:482.400000px;}
.x89_c00223{left:486.000000px;}
.x7f_c00223{left:488.700000px;}
.x95_c00223{left:490.350000px;}
.x55_c00223{left:491.550000px;}
.x3_c00223{left:493.950000px;}
.x35_c00223{left:495.900000px;}
.x50_c00223{left:497.250000px;}
.x68_c00223{left:499.200000px;}
.x78_c00223{left:504.300000px;}
.x63_c00223{left:507.150000px;}
.x87_c00223{left:511.650000px;}
.xa1_c00223{left:514.950000px;}
.x10d_c00223{left:533.550000px;}
.x113_c00223{left:535.350000px;}
.x115_c00223{left:536.700000px;}
.x13c_c00223{left:543.900000px;}
.xa6_c00223{left:548.250000px;}
.xcd_c00223{left:549.450000px;}
.xf9_c00223{left:550.800000px;}
.x10b_c00223{left:552.000000px;}
.x118_c00223{left:553.050000px;}
.x128_c00223{left:555.000000px;}
.x12d_c00223{left:556.050000px;}
.xb2_c00223{left:565.050000px;}
.xe0_c00223{left:567.600000px;}
.xf5_c00223{left:568.650000px;}
.x119_c00223{left:572.400000px;}
.xd9_c00223{left:575.400000px;}
.xb9_c00223{left:579.750000px;}
.x116_c00223{left:581.700000px;}
.xc7_c00223{left:583.050000px;}
.xfa_c00223{left:585.750000px;}
.x11e_c00223{left:587.100000px;}
.xce_c00223{left:589.350000px;}
.xc1_c00223{left:595.200000px;}
.x12e_c00223{left:596.400000px;}
.xe8_c00223{left:599.100000px;}
.xba_c00223{left:601.050000px;}
.x12b_c00223{left:602.550000px;}
.xad_c00223{left:603.600000px;}
.xf2_c00223{left:605.400000px;}
.x105_c00223{left:607.350000px;}
.xcf_c00223{left:608.400000px;}
.x137_c00223{left:609.450000px;}
.xb3_c00223{left:611.550000px;}
.x100_c00223{left:612.900000px;}
.xec_c00223{left:614.700000px;}
.x12a_c00223{left:615.900000px;}
.x12f_c00223{left:617.250000px;}
.xae_c00223{left:618.300000px;}
.x112_c00223{left:620.850000px;}
.xa7_c00223{left:622.800000px;}
.x117_c00223{left:624.600000px;}
.xbb_c00223{left:627.000000px;}
.x114_c00223{left:630.000000px;}
.xd0_c00223{left:632.100000px;}
.x11f_c00223{left:633.150000px;}
.x10f_c00223{left:634.950000px;}
.xf6_c00223{left:636.300000px;}
.xc2_c00223{left:637.350000px;}
.x122_c00223{left:639.300000px;}
.xda_c00223{left:640.500000px;}
.x138_c00223{left:641.850000px;}
.xef_c00223{left:646.950000px;}
.x101_c00223{left:648.150000px;}
.xd1_c00223{left:650.850000px;}
.xe1_c00223{left:653.700000px;}
.x132_c00223{left:654.900000px;}
.xaf_c00223{left:656.100000px;}
.x124_c00223{left:657.300000px;}
.x106_c00223{left:659.250000px;}
.xed_c00223{left:660.450000px;}
.x10c_c00223{left:661.800000px;}
.x102_c00223{left:663.300000px;}
.x109_c00223{left:664.650000px;}
.x11a_c00223{left:670.200000px;}
.xe9_c00223{left:672.750000px;}
.xb0_c00223{left:675.600000px;}
.xe2_c00223{left:677.850000px;}
.xc3_c00223{left:679.050000px;}
.x123_c00223{left:680.700000px;}
.xc8_c00223{left:684.600000px;}
.x110_c00223{left:687.900000px;}
.xfb_c00223{left:689.100000px;}
.x13b_c00223{left:690.450000px;}
.xf0_c00223{left:691.950000px;}
.xe3_c00223{left:693.300000px;}
.xf7_c00223{left:697.200000px;}
.xa8_c00223{left:698.700000px;}
.xbc_c00223{left:701.250000px;}
.xd6_c00223{left:702.450000px;}
.xea_c00223{left:705.150000px;}
.xd2_c00223{left:706.650000px;}
.xb4_c00223{left:708.750000px;}
.xfe_c00223{left:710.700000px;}
.x125_c00223{left:712.050000px;}
.xf1_c00223{left:713.250000px;}
.x111_c00223{left:718.200000px;}
.x133_c00223{left:720.450000px;}
.xc9_c00223{left:726.300000px;}
.xf3_c00223{left:727.350000px;}
.xdb_c00223{left:729.450000px;}
.xbd_c00223{left:732.600000px;}
.xc4_c00223{left:736.650000px;}
.x121_c00223{left:738.450000px;}
.xfc_c00223{left:739.800000px;}
.xa9_c00223{left:740.850000px;}
.xb5_c00223{left:742.650000px;}
.x126_c00223{left:746.700000px;}
.xd7_c00223{left:748.500000px;}
.xf8_c00223{left:754.500000px;}
.xd3_c00223{left:756.750000px;}
.xca_c00223{left:757.950000px;}
.xe4_c00223{left:760.200000px;}
.xaa_c00223{left:761.400000px;}
.xeb_c00223{left:764.850000px;}
.x107_c00223{left:766.950000px;}
.xe5_c00223{left:769.500000px;}
.xfd_c00223{left:772.200000px;}
.xdc_c00223{left:774.150000px;}
.xf4_c00223{left:775.200000px;}
.x134_c00223{left:776.250000px;}
.xbe_c00223{left:780.900000px;}
.xb6_c00223{left:783.000000px;}
.x139_c00223{left:785.400000px;}
.x120_c00223{left:787.050000px;}
.x130_c00223{left:789.900000px;}
.xe6_c00223{left:791.100000px;}
.xd4_c00223{left:793.050000px;}
.xdd_c00223{left:794.700000px;}
.xc5_c00223{left:797.550000px;}
.x12c_c00223{left:799.050000px;}
.x11b_c00223{left:801.900000px;}
.xd8_c00223{left:803.250000px;}
.xab_c00223{left:804.900000px;}
.x108_c00223{left:806.850000px;}
.xcb_c00223{left:809.100000px;}
.xb1_c00223{left:813.900000px;}
.x135_c00223{left:816.150000px;}
.x10e_c00223{left:819.300000px;}
.xd5_c00223{left:821.100000px;}
.xbf_c00223{left:823.050000px;}
.xc6_c00223{left:825.600000px;}
.xff_c00223{left:828.600000px;}
.x127_c00223{left:829.650000px;}
.xee_c00223{left:831.000000px;}
.xb7_c00223{left:833.400000px;}
.x103_c00223{left:834.900000px;}
.x10a_c00223{left:837.900000px;}
.x131_c00223{left:839.250000px;}
.xac_c00223{left:840.600000px;}
.xe7_c00223{left:842.100000px;}
.x129_c00223{left:843.450000px;}
.xde_c00223{left:846.600000px;}
.x11d_c00223{left:847.650000px;}
.x104_c00223{left:850.350000px;}
.xc0_c00223{left:851.850000px;}
.xcc_c00223{left:853.350000px;}
.xb8_c00223{left:856.500000px;}
.xdf_c00223{left:858.150000px;}
.x11c_c00223{left:859.500000px;}
.x13a_c00223{left:867.600000px;}
.x136_c00223{left:870.450000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws5_c00223{word-spacing:-9.444444pt;}
.ws1_c00223{word-spacing:-6.366366pt;}
.ws6_c00223{word-spacing:0.000000pt;}
.ws3_c00223{word-spacing:1.696275pt;}
.ws4_c00223{word-spacing:4.511692pt;}
.ws0_c00223{word-spacing:6.172840pt;}
.ws2_c00223{word-spacing:6.318471pt;}
.fs5_c00223{font-size:21.333333pt;}
.fs6_c00223{font-size:42.666667pt;}
.fs4_c00223{font-size:48.000000pt;}
.fs2_c00223{font-size:53.333333pt;}
.fs1_c00223{font-size:58.666667pt;}
.fs3_c00223{font-size:64.000000pt;}
.fs0_c00223{font-size:69.333333pt;}
.y0_c00223{bottom:0.000000pt;}
.y69_c00223{bottom:12.133333pt;}
.y68_c00223{bottom:156.800000pt;}
.y67_c00223{bottom:174.400000pt;}
.y33_c00223{bottom:176.133333pt;}
.y66_c00223{bottom:190.666667pt;}
.y32_c00223{bottom:191.866667pt;}
.y65_c00223{bottom:206.000000pt;}
.y31_c00223{bottom:207.600000pt;}
.y64_c00223{bottom:222.000000pt;}
.y30_c00223{bottom:223.333333pt;}
.y63_c00223{bottom:237.733333pt;}
.y2f_c00223{bottom:239.066667pt;}
.y62_c00223{bottom:253.733333pt;}
.y2e_c00223{bottom:254.800000pt;}
.y61_c00223{bottom:269.466667pt;}
.y2d_c00223{bottom:270.533333pt;}
.y60_c00223{bottom:285.466667pt;}
.y2c_c00223{bottom:286.266667pt;}
.y5f_c00223{bottom:301.733333pt;}
.y2b_c00223{bottom:302.000000pt;}
.y5e_c00223{bottom:317.066667pt;}
.y2a_c00223{bottom:317.733333pt;}
.y5d_c00223{bottom:333.066667pt;}
.y29_c00223{bottom:333.733333pt;}
.y5c_c00223{bottom:348.800000pt;}
.y28_c00223{bottom:356.533333pt;}
.y5b_c00223{bottom:366.666667pt;}
.y27_c00223{bottom:373.466667pt;}
.y5a_c00223{bottom:379.200000pt;}
.y26_c00223{bottom:390.133333pt;}
.y59_c00223{bottom:391.333333pt;}
.y58_c00223{bottom:392.400000pt;}
.y57_c00223{bottom:405.466667pt;}
.y25_c00223{bottom:406.133333pt;}
.y24_c00223{bottom:421.866667pt;}
.y56_c00223{bottom:426.800000pt;}
.y23_c00223{bottom:438.133333pt;}
.y55_c00223{bottom:442.800000pt;}
.y54_c00223{bottom:458.533333pt;}
.y22_c00223{bottom:461.066667pt;}
.y53_c00223{bottom:474.266667pt;}
.y21_c00223{bottom:476.800000pt;}
.y20_c00223{bottom:492.800000pt;}
.y52_c00223{bottom:494.133333pt;}
.y1f_c00223{bottom:512.000000pt;}
.y51_c00223{bottom:523.866667pt;}
.y1e_c00223{bottom:527.733333pt;}
.y50_c00223{bottom:528.933333pt;}
.y4f_c00223{bottom:544.933333pt;}
.y1d_c00223{bottom:554.933333pt;}
.y1c_c00223{bottom:570.933333pt;}
.y4e_c00223{bottom:572.533333pt;}
.y1b_c00223{bottom:586.933333pt;}
.y4d_c00223{bottom:596.133333pt;}
.y1a_c00223{bottom:606.400000pt;}
.y4c_c00223{bottom:611.866667pt;}
.y19_c00223{bottom:622.400000pt;}
.y4b_c00223{bottom:627.600000pt;}
.y18_c00223{bottom:638.666667pt;}
.y4a_c00223{bottom:643.866667pt;}
.y17_c00223{bottom:654.000000pt;}
.y49_c00223{bottom:666.800000pt;}
.y16_c00223{bottom:670.000000pt;}
.y48_c00223{bottom:682.533333pt;}
.y15_c00223{bottom:685.733333pt;}
.y47_c00223{bottom:698.533333pt;}
.y14_c00223{bottom:709.066667pt;}
.y46_c00223{bottom:714.266667pt;}
.y13_c00223{bottom:725.066667pt;}
.y45_c00223{bottom:729.600000pt;}
.y12_c00223{bottom:740.800000pt;}
.y44_c00223{bottom:745.866667pt;}
.y11_c00223{bottom:759.600000pt;}
.y43_c00223{bottom:761.600000pt;}
.y10_c00223{bottom:775.866667pt;}
.y42_c00223{bottom:777.333333pt;}
.yf_c00223{bottom:791.866667pt;}
.y41_c00223{bottom:793.066667pt;}
.ye_c00223{bottom:807.600000pt;}
.y40_c00223{bottom:809.066667pt;}
.yd_c00223{bottom:823.600000pt;}
.y3f_c00223{bottom:826.666667pt;}
.yc_c00223{bottom:839.333333pt;}
.y3e_c00223{bottom:840.400000pt;}
.yb_c00223{bottom:855.066667pt;}
.y3d_c00223{bottom:856.133333pt;}
.ya_c00223{bottom:871.066667pt;}
.y3c_c00223{bottom:871.866667pt;}
.y9_c00223{bottom:886.800000pt;}
.y3b_c00223{bottom:887.866667pt;}
.y8_c00223{bottom:902.533333pt;}
.y3a_c00223{bottom:903.600000pt;}
.y7_c00223{bottom:918.266667pt;}
.y39_c00223{bottom:919.333333pt;}
.y6_c00223{bottom:934.000000pt;}
.y38_c00223{bottom:935.333333pt;}
.y5_c00223{bottom:950.000000pt;}
.y37_c00223{bottom:950.666667pt;}
.y4_c00223{bottom:965.733333pt;}
.y36_c00223{bottom:966.666667pt;}
.y3_c00223{bottom:981.466667pt;}
.y35_c00223{bottom:982.400000pt;}
.y2_c00223{bottom:997.466667pt;}
.y34_c00223{bottom:998.133333pt;}
.y1_c00223{bottom:1021.466667pt;}
.h6_c00223{height:21.333333pt;}
.h7_c00223{height:42.666667pt;}
.h5_c00223{height:48.000000pt;}
.h3_c00223{height:53.333333pt;}
.h2_c00223{height:58.666667pt;}
.h4_c00223{height:64.000000pt;}
.h1_c00223{height:69.333333pt;}
.h0_c00223{height:1128.000000pt;}
.w1_c00223{width:856.000000pt;}
.w0_c00223{width:856.319987pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:156.800000pt;}
.x75_c00223{left:158.133333pt;}
.x7c_c00223{left:159.333333pt;}
.x90_c00223{left:161.333333pt;}
.x8e_c00223{left:164.533333pt;}
.x44_c00223{left:167.066667pt;}
.x58_c00223{left:168.400000pt;}
.x4_c00223{left:172.533333pt;}
.x45_c00223{left:173.466667pt;}
.x6f_c00223{left:174.533333pt;}
.x8a_c00223{left:176.000000pt;}
.x92_c00223{left:177.066667pt;}
.x96_c00223{left:178.000000pt;}
.x9e_c00223{left:179.466667pt;}
.x88_c00223{left:182.133333pt;}
.x4c_c00223{left:188.933333pt;}
.xa2_c00223{left:189.866667pt;}
.x2e_c00223{left:191.333333pt;}
.xf_c00223{left:192.933333pt;}
.x1c_c00223{left:195.733333pt;}
.x15_c00223{left:196.666667pt;}
.x36_c00223{left:197.600000pt;}
.x3e_c00223{left:198.666667pt;}
.x93_c00223{left:201.066667pt;}
.x5_c00223{left:204.800000pt;}
.x4d_c00223{left:206.800000pt;}
.x6c_c00223{left:207.866667pt;}
.x38_c00223{left:209.866667pt;}
.x64_c00223{left:210.800000pt;}
.x10_c00223{left:212.133333pt;}
.x6_c00223{left:213.466667pt;}
.x8f_c00223{left:214.400000pt;}
.x46_c00223{left:215.733333pt;}
.x3c_c00223{left:217.600000pt;}
.x8b_c00223{left:218.800000pt;}
.x76_c00223{left:220.800000pt;}
.x51_c00223{left:221.866667pt;}
.x22_c00223{left:223.466667pt;}
.x16_c00223{left:224.533333pt;}
.x29_c00223{left:225.733333pt;}
.x7b_c00223{left:227.600000pt;}
.x59_c00223{left:230.400000pt;}
.x80_c00223{left:231.600000pt;}
.x47_c00223{left:233.333333pt;}
.x65_c00223{left:235.066667pt;}
.x7_c00223{left:236.800000pt;}
.x2f_c00223{left:240.266667pt;}
.x60_c00223{left:241.733333pt;}
.x2a_c00223{left:242.666667pt;}
.x11_c00223{left:244.400000pt;}
.x5a_c00223{left:245.466667pt;}
.x23_c00223{left:247.466667pt;}
.x56_c00223{left:248.533333pt;}
.x37_c00223{left:250.133333pt;}
.x3f_c00223{left:252.800000pt;}
.x1d_c00223{left:254.000000pt;}
.x98_c00223{left:255.866667pt;}
.x39_c00223{left:257.600000pt;}
.x8c_c00223{left:259.466667pt;}
.x30_c00223{left:262.000000pt;}
.x5e_c00223{left:263.733333pt;}
.x72_c00223{left:265.733333pt;}
.x40_c00223{left:266.933333pt;}
.xa3_c00223{left:268.666667pt;}
.x9b_c00223{left:270.400000pt;}
.x17_c00223{left:271.866667pt;}
.x5c_c00223{left:275.466667pt;}
.x8_c00223{left:278.133333pt;}
.x18_c00223{left:279.200000pt;}
.x24_c00223{left:280.133333pt;}
.x31_c00223{left:281.200000pt;}
.x79_c00223{left:282.666667pt;}
.x52_c00223{left:284.533333pt;}
.x66_c00223{left:285.600000pt;}
.x48_c00223{left:289.066667pt;}
.x57_c00223{left:290.666667pt;}
.x1e_c00223{left:292.666667pt;}
.x9_c00223{left:295.733333pt;}
.x7d_c00223{left:297.466667pt;}
.x99_c00223{left:298.400000pt;}
.x61_c00223{left:300.000000pt;}
.x4e_c00223{left:301.466667pt;}
.x69_c00223{left:307.466667pt;}
.x41_c00223{left:310.133333pt;}
.x77_c00223{left:311.733333pt;}
.x97_c00223{left:313.466667pt;}
.x82_c00223{left:314.400000pt;}
.x73_c00223{left:315.333333pt;}
.x6d_c00223{left:316.666667pt;}
.x62_c00223{left:317.600000pt;}
.x12_c00223{left:319.866667pt;}
.xa4_c00223{left:321.733333pt;}
.xa_c00223{left:325.200000pt;}
.x2b_c00223{left:327.200000pt;}
.x94_c00223{left:328.933333pt;}
.x19_c00223{left:330.400000pt;}
.x42_c00223{left:332.800000pt;}
.x91_c00223{left:333.866667pt;}
.x32_c00223{left:338.800000pt;}
.x9f_c00223{left:341.066667pt;}
.x9c_c00223{left:343.333333pt;}
.x74_c00223{left:345.066667pt;}
.x33_c00223{left:346.533333pt;}
.x1f_c00223{left:348.666667pt;}
.xb_c00223{left:350.133333pt;}
.x70_c00223{left:351.466667pt;}
.x53_c00223{left:353.066667pt;}
.x25_c00223{left:354.666667pt;}
.x6a_c00223{left:357.066667pt;}
.x5f_c00223{left:358.800000pt;}
.xa0_c00223{left:360.933333pt;}
.x49_c00223{left:363.333333pt;}
.x84_c00223{left:364.400000pt;}
.x7a_c00223{left:365.600000pt;}
.x20_c00223{left:367.200000pt;}
.x71_c00223{left:369.333333pt;}
.x26_c00223{left:370.933333pt;}
.x4f_c00223{left:372.800000pt;}
.x2_c00223{left:374.133333pt;}
.x43_c00223{left:377.333333pt;}
.xc_c00223{left:379.200000pt;}
.x3a_c00223{left:380.133333pt;}
.x13_c00223{left:381.333333pt;}
.x1a_c00223{left:382.800000pt;}
.x2c_c00223{left:385.466667pt;}
.x54_c00223{left:387.600000pt;}
.x7e_c00223{left:390.933333pt;}
.x4a_c00223{left:392.133333pt;}
.xd_c00223{left:393.866667pt;}
.x6e_c00223{left:395.333333pt;}
.x85_c00223{left:396.533333pt;}
.x27_c00223{left:397.866667pt;}
.x5b_c00223{left:398.800000pt;}
.x34_c00223{left:399.866667pt;}
.x14_c00223{left:401.466667pt;}
.x81_c00223{left:402.400000pt;}
.xa5_c00223{left:404.400000pt;}
.x21_c00223{left:405.600000pt;}
.x2d_c00223{left:406.933333pt;}
.x6b_c00223{left:407.866667pt;}
.x67_c00223{left:410.400000pt;}
.x4b_c00223{left:412.666667pt;}
.x83_c00223{left:413.866667pt;}
.x28_c00223{left:415.200000pt;}
.x86_c00223{left:417.066667pt;}
.x9d_c00223{left:418.133333pt;}
.x3d_c00223{left:419.200000pt;}
.x1b_c00223{left:420.933333pt;}
.x8d_c00223{left:422.400000pt;}
.x5d_c00223{left:423.600000pt;}
.xe_c00223{left:425.200000pt;}
.x9a_c00223{left:427.333333pt;}
.x3b_c00223{left:428.800000pt;}
.x89_c00223{left:432.000000pt;}
.x7f_c00223{left:434.400000pt;}
.x95_c00223{left:435.866667pt;}
.x55_c00223{left:436.933333pt;}
.x3_c00223{left:439.066667pt;}
.x35_c00223{left:440.800000pt;}
.x50_c00223{left:442.000000pt;}
.x68_c00223{left:443.733333pt;}
.x78_c00223{left:448.266667pt;}
.x63_c00223{left:450.800000pt;}
.x87_c00223{left:454.800000pt;}
.xa1_c00223{left:457.733333pt;}
.x10d_c00223{left:474.266667pt;}
.x113_c00223{left:475.866667pt;}
.x115_c00223{left:477.066667pt;}
.x13c_c00223{left:483.466667pt;}
.xa6_c00223{left:487.333333pt;}
.xcd_c00223{left:488.400000pt;}
.xf9_c00223{left:489.600000pt;}
.x10b_c00223{left:490.666667pt;}
.x118_c00223{left:491.600000pt;}
.x128_c00223{left:493.333333pt;}
.x12d_c00223{left:494.266667pt;}
.xb2_c00223{left:502.266667pt;}
.xe0_c00223{left:504.533333pt;}
.xf5_c00223{left:505.466667pt;}
.x119_c00223{left:508.800000pt;}
.xd9_c00223{left:511.466667pt;}
.xb9_c00223{left:515.333333pt;}
.x116_c00223{left:517.066667pt;}
.xc7_c00223{left:518.266667pt;}
.xfa_c00223{left:520.666667pt;}
.x11e_c00223{left:521.866667pt;}
.xce_c00223{left:523.866667pt;}
.xc1_c00223{left:529.066667pt;}
.x12e_c00223{left:530.133333pt;}
.xe8_c00223{left:532.533333pt;}
.xba_c00223{left:534.266667pt;}
.x12b_c00223{left:535.600000pt;}
.xad_c00223{left:536.533333pt;}
.xf2_c00223{left:538.133333pt;}
.x105_c00223{left:539.866667pt;}
.xcf_c00223{left:540.800000pt;}
.x137_c00223{left:541.733333pt;}
.xb3_c00223{left:543.600000pt;}
.x100_c00223{left:544.800000pt;}
.xec_c00223{left:546.400000pt;}
.x12a_c00223{left:547.466667pt;}
.x12f_c00223{left:548.666667pt;}
.xae_c00223{left:549.600000pt;}
.x112_c00223{left:551.866667pt;}
.xa7_c00223{left:553.600000pt;}
.x117_c00223{left:555.200000pt;}
.xbb_c00223{left:557.333333pt;}
.x114_c00223{left:560.000000pt;}
.xd0_c00223{left:561.866667pt;}
.x11f_c00223{left:562.800000pt;}
.x10f_c00223{left:564.400000pt;}
.xf6_c00223{left:565.600000pt;}
.xc2_c00223{left:566.533333pt;}
.x122_c00223{left:568.266667pt;}
.xda_c00223{left:569.333333pt;}
.x138_c00223{left:570.533333pt;}
.xef_c00223{left:575.066667pt;}
.x101_c00223{left:576.133333pt;}
.xd1_c00223{left:578.533333pt;}
.xe1_c00223{left:581.066667pt;}
.x132_c00223{left:582.133333pt;}
.xaf_c00223{left:583.200000pt;}
.x124_c00223{left:584.266667pt;}
.x106_c00223{left:586.000000pt;}
.xed_c00223{left:587.066667pt;}
.x10c_c00223{left:588.266667pt;}
.x102_c00223{left:589.600000pt;}
.x109_c00223{left:590.800000pt;}
.x11a_c00223{left:595.733333pt;}
.xe9_c00223{left:598.000000pt;}
.xb0_c00223{left:600.533333pt;}
.xe2_c00223{left:602.533333pt;}
.xc3_c00223{left:603.600000pt;}
.x123_c00223{left:605.066667pt;}
.xc8_c00223{left:608.533333pt;}
.x110_c00223{left:611.466667pt;}
.xfb_c00223{left:612.533333pt;}
.x13b_c00223{left:613.733333pt;}
.xf0_c00223{left:615.066667pt;}
.xe3_c00223{left:616.266667pt;}
.xf7_c00223{left:619.733333pt;}
.xa8_c00223{left:621.066667pt;}
.xbc_c00223{left:623.333333pt;}
.xd6_c00223{left:624.400000pt;}
.xea_c00223{left:626.800000pt;}
.xd2_c00223{left:628.133333pt;}
.xb4_c00223{left:630.000000pt;}
.xfe_c00223{left:631.733333pt;}
.x125_c00223{left:632.933333pt;}
.xf1_c00223{left:634.000000pt;}
.x111_c00223{left:638.400000pt;}
.x133_c00223{left:640.400000pt;}
.xc9_c00223{left:645.600000pt;}
.xf3_c00223{left:646.533333pt;}
.xdb_c00223{left:648.400000pt;}
.xbd_c00223{left:651.200000pt;}
.xc4_c00223{left:654.800000pt;}
.x121_c00223{left:656.400000pt;}
.xfc_c00223{left:657.600000pt;}
.xa9_c00223{left:658.533333pt;}
.xb5_c00223{left:660.133333pt;}
.x126_c00223{left:663.733333pt;}
.xd7_c00223{left:665.333333pt;}
.xf8_c00223{left:670.666667pt;}
.xd3_c00223{left:672.666667pt;}
.xca_c00223{left:673.733333pt;}
.xe4_c00223{left:675.733333pt;}
.xaa_c00223{left:676.800000pt;}
.xeb_c00223{left:679.866667pt;}
.x107_c00223{left:681.733333pt;}
.xe5_c00223{left:684.000000pt;}
.xfd_c00223{left:686.400000pt;}
.xdc_c00223{left:688.133333pt;}
.xf4_c00223{left:689.066667pt;}
.x134_c00223{left:690.000000pt;}
.xbe_c00223{left:694.133333pt;}
.xb6_c00223{left:696.000000pt;}
.x139_c00223{left:698.133333pt;}
.x120_c00223{left:699.600000pt;}
.x130_c00223{left:702.133333pt;}
.xe6_c00223{left:703.200000pt;}
.xd4_c00223{left:704.933333pt;}
.xdd_c00223{left:706.400000pt;}
.xc5_c00223{left:708.933333pt;}
.x12c_c00223{left:710.266667pt;}
.x11b_c00223{left:712.800000pt;}
.xd8_c00223{left:714.000000pt;}
.xab_c00223{left:715.466667pt;}
.x108_c00223{left:717.200000pt;}
.xcb_c00223{left:719.200000pt;}
.xb1_c00223{left:723.466667pt;}
.x135_c00223{left:725.466667pt;}
.x10e_c00223{left:728.266667pt;}
.xd5_c00223{left:729.866667pt;}
.xbf_c00223{left:731.600000pt;}
.xc6_c00223{left:733.866667pt;}
.xff_c00223{left:736.533333pt;}
.x127_c00223{left:737.466667pt;}
.xee_c00223{left:738.666667pt;}
.xb7_c00223{left:740.800000pt;}
.x103_c00223{left:742.133333pt;}
.x10a_c00223{left:744.800000pt;}
.x131_c00223{left:746.000000pt;}
.xac_c00223{left:747.200000pt;}
.xe7_c00223{left:748.533333pt;}
.x129_c00223{left:749.733333pt;}
.xde_c00223{left:752.533333pt;}
.x11d_c00223{left:753.466667pt;}
.x104_c00223{left:755.866667pt;}
.xc0_c00223{left:757.200000pt;}
.xcc_c00223{left:758.533333pt;}
.xb8_c00223{left:761.333333pt;}
.xdf_c00223{left:762.800000pt;}
.x11c_c00223{left:764.000000pt;}
.x13a_c00223{left:771.200000pt;}
.x136_c00223{left:773.733333pt;}
}





/* 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_c00224 {
    display:none;
  }
  .loading-indicator_c00224.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00224 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_c00224 { 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_c00224" -> "#page-container .classname_c00224")
 */
.pf_c00224 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00224 { /* 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_c00224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00224 { /* 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_c00224 { /* 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_c00224 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00224 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00224 {overflow:visible;}
  }
}
.c_c00224 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00224 { /* 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_c00224:after { /* webkit #35443 */
  content: '';
}
.t_c00224:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00224 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 */
}
.__c00224 { /* 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_c00224 { /* info for Javascript */
  display:none;
}
.l_c00224 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00224 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00224 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00224: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_c00224 {
    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_c00224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00224.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_c00224 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00224;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.000000;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;}
.m89_c00224{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mec_c00224{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00224{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00224{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m74_c00224{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.me3_c00224{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00224{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m111_c00224{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00224{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00224{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00224{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m109_c00224{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m36_c00224{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m15_c00224{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00224{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00224{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00224{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00224{transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00224{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00224{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.m88_c00224{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00224{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m97_c00224{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00224{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00224{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00224{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m101_c00224{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00224{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m112_c00224{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m69_c00224{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00224{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mce_c00224{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md4_c00224{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m12_c00224{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00224{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m46_c00224{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m29_c00224{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00224{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m114_c00224{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m76_c00224{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00224{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00224{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00224{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00224{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00224{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m56_c00224{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf_c00224{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00224{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00224{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m66_c00224{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.md5_c00224{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m85_c00224{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00224{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00224{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00224{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.meb_c00224{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mef_c00224{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mea_c00224{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m113_c00224{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m62_c00224{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m67_c00224{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m83_c00224{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m68_c00224{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00224{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m116_c00224{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m7_c00224{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m84_c00224{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m11_c00224{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m10_c00224{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md0_c00224{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m54_c00224{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00224{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m28_c00224{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00224{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00224{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m92_c00224{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00224{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mb_c00224{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00224{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m72_c00224{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m20_c00224{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m91_c00224{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00224{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m18_c00224{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m104_c00224{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00224{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m8_c00224{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m34_c00224{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m81_c00224{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00224{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m13_c00224{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00224{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me1_c00224{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m49_c00224{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m41_c00224{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md3_c00224{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00224{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00224{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m19_c00224{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00224{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00224{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m33_c00224{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m31_c00224{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00224{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m98_c00224{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00224{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00224{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m61_c00224{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me8_c00224{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m80_c00224{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m90_c00224{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma_c00224{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m93_c00224{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m60_c00224{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m100_c00224{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00224{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m17_c00224{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m30_c00224{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00224{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m51_c00224{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00224{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m108_c00224{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00224{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m75_c00224{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00224{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00224{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00224{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00224{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m14_c00224{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md8_c00224{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00224{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m39_c00224{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m87_c00224{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00224{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m57_c00224{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9_c00224{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md_c00224{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m99_c00224{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mc_c00224{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md6_c00224{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00224{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m44_c00224{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00224{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m3_c00224{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00224{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m32_c00224{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00224{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m96_c00224{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m16_c00224{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00224{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m55_c00224{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00224{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00224{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00224{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me2_c00224{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5_c00224{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00224{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00224{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00224{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m42_c00224{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00224{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00224{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00224{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00224{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m24_c00224{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m53_c00224{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mda_c00224{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00224{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00224{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m117_c00224{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m86_c00224{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00224{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00224{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00224{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00224{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m64_c00224{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me5_c00224{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m102_c00224{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6_c00224{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00224{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00224{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.maa_c00224{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00224{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m71_c00224{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m118_c00224{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md7_c00224{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00224{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m78_c00224{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me_c00224{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00224{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00224{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m73_c00224{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m47_c00224{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00224{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00224{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00224{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m38_c00224{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00224{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m45_c00224{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00224{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00224{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00224{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00224{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00224{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m23_c00224{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m43_c00224{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m25_c00224{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00224{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m107_c00224{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00224{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m59_c00224{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m106_c00224{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.me6_c00224{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m21_c00224{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00224{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m48_c00224{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mae_c00224{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m40_c00224{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m35_c00224{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md1_c00224{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m22_c00224{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mee_c00224{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mde_c00224{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00224{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m4_c00224{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mba_c00224{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00224{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00224{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mca_c00224{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00224{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m27_c00224{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m79_c00224{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m50_c00224{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me0_c00224{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00224{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.md9_c00224{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m37_c00224{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00224{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00224{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m110_c00224{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m95_c00224{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00224{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m115_c00224{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);}
.m8e_c00224{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m105_c00224{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00224{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00224{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md2_c00224{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00224{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m119_c00224{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m103_c00224{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00224{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m26_c00224{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mad_c00224{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00224{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.maf_c00224{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00224{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.me9_c00224{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mac_c00224{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m94_c00224{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m70_c00224{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00224{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m77_c00224{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00224{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.med_c00224{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m82_c00224{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00224{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00224{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00224{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00224{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mff_c00224{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m65_c00224{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.me7_c00224{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mab_c00224{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m58_c00224{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m52_c00224{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me4_c00224{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m63_c00224{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00224{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00224{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00224{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00224{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.m2_c00224{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m0_c00224{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls0_c00224{letter-spacing:0.000000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{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__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00224{word-spacing:-6.161725px;}
.ws2_c00224{word-spacing:-5.658049px;}
.ws4_c00224{word-spacing:-2.962963px;}
.ws5_c00224{word-spacing:0.000000px;}
.ws3_c00224{word-spacing:1.621230px;}
.ws0_c00224{word-spacing:2.294118px;}
.fc0_c00224{color:transparent;}
.fs1_c00224{font-size:48.000000px;}
.fs6_c00224{font-size:54.000000px;}
.fs3_c00224{font-size:60.000000px;}
.fs2_c00224{font-size:66.000000px;}
.fs4_c00224{font-size:72.000000px;}
.fs5_c00224{font-size:78.000000px;}
.fs0_c00224{font-size:84.000000px;}
.y0_c00224{bottom:0.000000px;}
.y69_c00224{bottom:166.950000px;}
.y68_c00224{bottom:184.650000px;}
.y36_c00224{bottom:187.950000px;}
.y35_c00224{bottom:203.700000px;}
.y67_c00224{bottom:212.100000px;}
.y34_c00224{bottom:221.400000px;}
.y66_c00224{bottom:230.100000px;}
.y33_c00224{bottom:239.400000px;}
.y65_c00224{bottom:252.300000px;}
.y32_c00224{bottom:257.400000px;}
.y64_c00224{bottom:270.300000px;}
.y31_c00224{bottom:275.400000px;}
.y63_c00224{bottom:288.000000px;}
.y30_c00224{bottom:299.850000px;}
.y62_c00224{bottom:306.300000px;}
.y2f_c00224{bottom:314.250000px;}
.y61_c00224{bottom:324.000000px;}
.y2e_c00224{bottom:330.450000px;}
.y2d_c00224{bottom:344.550000px;}
.y60_c00224{bottom:346.200000px;}
.y2c_c00224{bottom:362.550000px;}
.y5f_c00224{bottom:364.200000px;}
.y2b_c00224{bottom:380.400000px;}
.y5e_c00224{bottom:381.900000px;}
.y2a_c00224{bottom:398.100000px;}
.y5d_c00224{bottom:399.600000px;}
.y29_c00224{bottom:416.100000px;}
.y5c_c00224{bottom:417.300000px;}
.y5b_c00224{bottom:435.300000px;}
.y28_c00224{bottom:437.850000px;}
.y5a_c00224{bottom:453.000000px;}
.y27_c00224{bottom:456.150000px;}
.y59_c00224{bottom:471.000000px;}
.y26_c00224{bottom:474.150000px;}
.y58_c00224{bottom:489.300000px;}
.y25_c00224{bottom:492.450000px;}
.y57_c00224{bottom:513.750000px;}
.y24_c00224{bottom:514.500000px;}
.y23_c00224{bottom:532.500000px;}
.y56_c00224{bottom:534.450000px;}
.y22_c00224{bottom:550.500000px;}
.y55_c00224{bottom:552.150000px;}
.y21_c00224{bottom:568.200000px;}
.y54_c00224{bottom:570.150000px;}
.y20_c00224{bottom:586.200000px;}
.y53_c00224{bottom:587.850000px;}
.y1f_c00224{bottom:603.900000px;}
.y52_c00224{bottom:609.900000px;}
.y1e_c00224{bottom:621.900000px;}
.y51_c00224{bottom:627.900000px;}
.y1d_c00224{bottom:639.900000px;}
.y50_c00224{bottom:645.450000px;}
.y1c_c00224{bottom:657.600000px;}
.y4f_c00224{bottom:663.150000px;}
.y1b_c00224{bottom:675.300000px;}
.y4e_c00224{bottom:685.500000px;}
.y1a_c00224{bottom:693.000000px;}
.y4d_c00224{bottom:703.800000px;}
.y19_c00224{bottom:711.300000px;}
.y18_c00224{bottom:729.000000px;}
.y4c_c00224{bottom:731.100000px;}
.y17_c00224{bottom:747.000000px;}
.y4b_c00224{bottom:749.100000px;}
.y16_c00224{bottom:764.700000px;}
.y4a_c00224{bottom:771.450000px;}
.y15_c00224{bottom:786.600000px;}
.y49_c00224{bottom:789.450000px;}
.y14_c00224{bottom:804.600000px;}
.y48_c00224{bottom:807.450000px;}
.y13_c00224{bottom:822.300000px;}
.y47_c00224{bottom:825.150000px;}
.y12_c00224{bottom:840.300000px;}
.y46_c00224{bottom:847.500000px;}
.y11_c00224{bottom:862.350000px;}
.y45_c00224{bottom:865.350000px;}
.y10_c00224{bottom:880.350000px;}
.y44_c00224{bottom:883.350000px;}
.yf_c00224{bottom:898.350000px;}
.y43_c00224{bottom:900.600000px;}
.ye_c00224{bottom:916.350000px;}
.y42_c00224{bottom:918.600000px;}
.yd_c00224{bottom:934.050000px;}
.y41_c00224{bottom:936.600000px;}
.yc_c00224{bottom:951.750000px;}
.y40_c00224{bottom:954.300000px;}
.yb_c00224{bottom:970.050000px;}
.y3f_c00224{bottom:972.300000px;}
.ya_c00224{bottom:987.750000px;}
.y3e_c00224{bottom:990.600000px;}
.y9_c00224{bottom:1005.750000px;}
.y3d_c00224{bottom:1008.300000px;}
.y8_c00224{bottom:1023.450000px;}
.y3c_c00224{bottom:1026.300000px;}
.y7_c00224{bottom:1041.450000px;}
.y3b_c00224{bottom:1044.300000px;}
.y6_c00224{bottom:1059.150000px;}
.y3a_c00224{bottom:1061.550000px;}
.y5_c00224{bottom:1077.150000px;}
.y39_c00224{bottom:1079.550000px;}
.y38_c00224{bottom:1097.250000px;}
.y4_c00224{bottom:1099.050000px;}
.y37_c00224{bottom:1114.950000px;}
.y3_c00224{bottom:1117.050000px;}
.y2_c00224{bottom:1140.150000px;}
.y1_c00224{bottom:1143.000000px;}
.h3_c00224{height:48.000000px;}
.h8_c00224{height:54.000000px;}
.h5_c00224{height:60.000000px;}
.h4_c00224{height:66.000000px;}
.h6_c00224{height:72.000000px;}
.h7_c00224{height:78.000000px;}
.h2_c00224{height:84.000000px;}
.h1_c00224{height:1269.750000px;}
.h0_c00224{height:1270.080048px;}
.w1_c00224{width:963.000000px;}
.w0_c00224{width:963.359985px;}
.x0_c00224{left:0.000000px;}
.x53_c00224{left:88.500000px;}
.x5c_c00224{left:89.700000px;}
.x99_c00224{left:91.050000px;}
.x90_c00224{left:92.550000px;}
.x9f_c00224{left:93.900000px;}
.x82_c00224{left:96.900000px;}
.xac_c00224{left:101.100000px;}
.x4_c00224{left:105.150000px;}
.x34_c00224{left:106.650000px;}
.x4c_c00224{left:108.000000px;}
.x8b_c00224{left:109.200000px;}
.x96_c00224{left:110.400000px;}
.xaa_c00224{left:111.450000px;}
.x83_c00224{left:117.000000px;}
.x71_c00224{left:121.350000px;}
.xd_c00224{left:123.150000px;}
.x66_c00224{left:126.000000px;}
.x3e_c00224{left:128.100000px;}
.x91_c00224{left:134.700000px;}
.x1c_c00224{left:135.750000px;}
.x60_c00224{left:137.550000px;}
.x50_c00224{left:141.450000px;}
.x15_c00224{left:143.100000px;}
.xad_c00224{left:147.150000px;}
.x35_c00224{left:148.350000px;}
.xab_c00224{left:149.550000px;}
.x2f_c00224{left:151.200000px;}
.x1d_c00224{left:153.450000px;}
.x5_c00224{left:154.500000px;}
.x47_c00224{left:157.050000px;}
.x62_c00224{left:158.250000px;}
.x24_c00224{left:161.100000px;}
.x36_c00224{left:164.250000px;}
.x77_c00224{left:165.450000px;}
.x7e_c00224{left:166.500000px;}
.x51_c00224{left:167.700000px;}
.x45_c00224{left:169.500000px;}
.x16_c00224{left:171.900000px;}
.xe_c00224{left:173.250000px;}
.x29_c00224{left:175.350000px;}
.x6_c00224{left:177.150000px;}
.xa0_c00224{left:178.950000px;}
.x37_c00224{left:180.150000px;}
.x6e_c00224{left:181.200000px;}
.x57_c00224{left:182.700000px;}
.x89_c00224{left:185.100000px;}
.xa9_c00224{left:186.900000px;}
.x1e_c00224{left:188.400000px;}
.x78_c00224{left:193.500000px;}
.x92_c00224{left:194.700000px;}
.x6a_c00224{left:197.250000px;}
.x46_c00224{left:199.350000px;}
.x9a_c00224{left:200.550000px;}
.x63_c00224{left:202.200000px;}
.x38_c00224{left:204.600000px;}
.x2a_c00224{left:206.250000px;}
.x17_c00224{left:208.650000px;}
.x52_c00224{left:210.600000px;}
.x7_c00224{left:212.100000px;}
.xa1_c00224{left:213.450000px;}
.x3f_c00224{left:216.300000px;}
.x18_c00224{left:217.350000px;}
.xf_c00224{left:219.300000px;}
.x94_c00224{left:221.100000px;}
.x1f_c00224{left:222.300000px;}
.x25_c00224{left:223.800000px;}
.x54_c00224{left:226.650000px;}
.x84_c00224{left:228.000000px;}
.x6f_c00224{left:229.050000px;}
.x87_c00224{left:230.100000px;}
.x58_c00224{left:231.600000px;}
.x5d_c00224{left:233.700000px;}
.x8_c00224{left:234.750000px;}
.x10_c00224{left:240.150000px;}
.x4d_c00224{left:242.550000px;}
.x65_c00224{left:244.350000px;}
.x79_c00224{left:246.750000px;}
.x30_c00224{left:248.100000px;}
.x19_c00224{left:250.800000px;}
.x67_c00224{left:252.450000px;}
.x55_c00224{left:253.650000px;}
.x48_c00224{left:256.050000px;}
.x88_c00224{left:257.850000px;}
.x97_c00224{left:259.800000px;}
.xa3_c00224{left:262.050000px;}
.x85_c00224{left:264.000000px;}
.xa4_c00224{left:265.500000px;}
.x2b_c00224{left:267.150000px;}
.x39_c00224{left:268.350000px;}
.x98_c00224{left:269.550000px;}
.x4e_c00224{left:271.050000px;}
.x42_c00224{left:272.850000px;}
.x11_c00224{left:275.850000px;}
.x6b_c00224{left:277.050000px;}
.x5a_c00224{left:278.700000px;}
.x7a_c00224{left:281.700000px;}
.x26_c00224{left:282.900000px;}
.x86_c00224{left:284.850000px;}
.x7f_c00224{left:287.700000px;}
.x9d_c00224{left:288.750000px;}
.x40_c00224{left:291.150000px;}
.x5e_c00224{left:293.400000px;}
.x9_c00224{left:295.200000px;}
.x12_c00224{left:296.400000px;}
.x56_c00224{left:299.400000px;}
.x20_c00224{left:301.800000px;}
.x8c_c00224{left:303.300000px;}
.x31_c00224{left:304.650000px;}
.x72_c00224{left:307.350000px;}
.x27_c00224{left:309.600000px;}
.x59_c00224{left:311.400000px;}
.x3a_c00224{left:312.600000px;}
.x5f_c00224{left:313.950000px;}
.xa_c00224{left:315.000000px;}
.x4f_c00224{left:317.100000px;}
.x2c_c00224{left:319.650000px;}
.x9b_c00224{left:320.850000px;}
.x61_c00224{left:323.550000px;}
.x70_c00224{left:325.200000px;}
.x1a_c00224{left:328.200000px;}
.x1_c00224{left:329.400000px;}
.x49_c00224{left:330.900000px;}
.x8d_c00224{left:332.850000px;}
.x13_c00224{left:333.900000px;}
.x2d_c00224{left:335.100000px;}
.x21_c00224{left:338.550000px;}
.x7b_c00224{left:340.050000px;}
.xae_c00224{left:341.700000px;}
.x73_c00224{left:344.700000px;}
.x95_c00224{left:345.750000px;}
.x43_c00224{left:347.400000px;}
.xa2_c00224{left:348.450000px;}
.xa7_c00224{left:349.650000px;}
.x9e_c00224{left:350.700000px;}
.x3b_c00224{left:351.900000px;}
.x22_c00224{left:353.700000px;}
.x41_c00224{left:355.950000px;}
.x2_c00224{left:357.900000px;}
.xb_c00224{left:358.950000px;}
.x74_c00224{left:361.200000px;}
.x7c_c00224{left:363.450000px;}
.x4a_c00224{left:364.800000px;}
.x64_c00224{left:366.450000px;}
.x2e_c00224{left:368.550000px;}
.x6c_c00224{left:370.650000px;}
.x81_c00224{left:372.000000px;}
.x68_c00224{left:375.300000px;}
.x28_c00224{left:378.300000px;}
.x8e_c00224{left:379.350000px;}
.x4b_c00224{left:383.100000px;}
.x14_c00224{left:384.300000px;}
.x32_c00224{left:386.400000px;}
.x3c_c00224{left:387.600000px;}
.x9c_c00224{left:390.600000px;}
.x8f_c00224{left:391.650000px;}
.x75_c00224{left:393.900000px;}
.x93_c00224{left:395.850000px;}
.x8a_c00224{left:396.900000px;}
.x6d_c00224{left:398.700000px;}
.x1b_c00224{left:399.900000px;}
.x23_c00224{left:402.300000px;}
.x76_c00224{left:405.450000px;}
.x44_c00224{left:407.100000px;}
.x33_c00224{left:408.750000px;}
.x5b_c00224{left:410.550000px;}
.xc_c00224{left:412.950000px;}
.x7d_c00224{left:414.150000px;}
.xa5_c00224{left:415.350000px;}
.xa6_c00224{left:417.900000px;}
.x3d_c00224{left:422.100000px;}
.x80_c00224{left:423.450000px;}
.xa8_c00224{left:425.700000px;}
.x69_c00224{left:432.600000px;}
.x102_c00224{left:446.700000px;}
.x111_c00224{left:448.200000px;}
.x14e_c00224{left:450.000000px;}
.xfe_c00224{left:454.350000px;}
.xe7_c00224{left:460.500000px;}
.xc3_c00224{left:461.550000px;}
.xaf_c00224{left:462.900000px;}
.xff_c00224{left:464.850000px;}
.x118_c00224{left:465.900000px;}
.x136_c00224{left:467.100000px;}
.xbe_c00224{left:478.650000px;}
.xf5_c00224{left:481.800000px;}
.x110_c00224{left:484.200000px;}
.x142_c00224{left:485.700000px;}
.xd9_c00224{left:488.550000px;}
.x112_c00224{left:491.100000px;}
.x138_c00224{left:492.450000px;}
.x12c_c00224{left:495.000000px;}
.x130_c00224{left:497.700000px;}
.xb6_c00224{left:499.200000px;}
.xd2_c00224{left:503.550000px;}
.xf6_c00224{left:505.500000px;}
.xe8_c00224{left:507.300000px;}
.xb0_c00224{left:508.950000px;}
.xda_c00224{left:510.450000px;}
.x123_c00224{left:511.950000px;}
.x129_c00224{left:514.950000px;}
.xc4_c00224{left:516.300000px;}
.x106_c00224{left:519.300000px;}
.xe9_c00224{left:520.650000px;}
.xfa_c00224{left:522.750000px;}
.xcc_c00224{left:524.550000px;}
.x131_c00224{left:526.500000px;}
.x14f_c00224{left:528.900000px;}
.x113_c00224{left:529.950000px;}
.xb1_c00224{left:531.600000px;}
.xc5_c00224{left:535.050000px;}
.x103_c00224{left:536.400000px;}
.xf1_c00224{left:537.600000px;}
.xe3_c00224{left:540.600000px;}
.x12d_c00224{left:542.100000px;}
.x100_c00224{left:543.300000px;}
.x149_c00224{left:545.100000px;}
.xcd_c00224{left:546.150000px;}
.xb7_c00224{left:548.550000px;}
.x141_c00224{left:551.550000px;}
.xbf_c00224{left:553.200000px;}
.x107_c00224{left:554.250000px;}
.x117_c00224{left:556.500000px;}
.x119_c00224{left:558.450000px;}
.x14c_c00224{left:560.550000px;}
.x139_c00224{left:564.750000px;}
.x143_c00224{left:567.450000px;}
.xb8_c00224{left:569.100000px;}
.x126_c00224{left:570.300000px;}
.xdb_c00224{left:571.650000px;}
.x13d_c00224{left:573.300000px;}
.xce_c00224{left:576.000000px;}
.xb2_c00224{left:577.350000px;}
.xd3_c00224{left:579.150000px;}
.xea_c00224{left:580.350000px;}
.x144_c00224{left:582.300000px;}
.x132_c00224{left:583.500000px;}
.xe0_c00224{left:585.450000px;}
.xf7_c00224{left:586.500000px;}
.x147_c00224{left:587.700000px;}
.xc6_c00224{left:589.050000px;}
.x10a_c00224{left:590.400000px;}
.x14a_c00224{left:594.450000px;}
.x11a_c00224{left:596.550000px;}
.xdc_c00224{left:597.600000px;}
.xb9_c00224{left:598.950000px;}
.xc0_c00224{left:601.350000px;}
.xd4_c00224{left:603.300000px;}
.x120_c00224{left:604.800000px;}
.x114_c00224{left:605.850000px;}
.x10d_c00224{left:608.250000px;}
.x13a_c00224{left:612.000000px;}
.xf8_c00224{left:615.000000px;}
.xdd_c00224{left:616.350000px;}
.x137_c00224{left:617.550000px;}
.xc7_c00224{left:618.600000px;}
.xef_c00224{left:620.550000px;}
.x12a_c00224{left:622.200000px;}
.xeb_c00224{left:624.300000px;}
.x108_c00224{left:625.500000px;}
.x145_c00224{left:626.550000px;}
.xb3_c00224{left:628.050000px;}
.xcf_c00224{left:630.300000px;}
.x13b_c00224{left:632.100000px;}
.x10e_c00224{left:634.050000px;}
.x14d_c00224{left:635.400000px;}
.x121_c00224{left:637.500000px;}
.xd5_c00224{left:638.550000px;}
.xc1_c00224{left:640.200000px;}
.x11b_c00224{left:642.300000px;}
.xe4_c00224{left:643.650000px;}
.xfb_c00224{left:645.150000px;}
.x124_c00224{left:647.700000px;}
.xde_c00224{left:649.500000px;}
.xfc_c00224{left:652.650000px;}
.x127_c00224{left:654.600000px;}
.xe1_c00224{left:655.650000px;}
.x101_c00224{left:656.700000px;}
.xd6_c00224{left:658.050000px;}
.xba_c00224{left:661.200000px;}
.xc8_c00224{left:667.500000px;}
.x11c_c00224{left:671.850000px;}
.x133_c00224{left:672.900000px;}
.xf2_c00224{left:675.450000px;}
.x146_c00224{left:676.950000px;}
.xec_c00224{left:678.600000px;}
.xb4_c00224{left:680.550000px;}
.xc9_c00224{left:682.650000px;}
.x10b_c00224{left:683.700000px;}
.x13f_c00224{left:685.350000px;}
.xd7_c00224{left:687.900000px;}
.x115_c00224{left:690.300000px;}
.x109_c00224{left:693.450000px;}
.xf3_c00224{left:696.300000px;}
.xe5_c00224{left:697.650000px;}
.x13e_c00224{left:700.050000px;}
.xf0_c00224{left:701.250000px;}
.xc2_c00224{left:703.800000px;}
.x11d_c00224{left:706.350000px;}
.x12e_c00224{left:708.600000px;}
.xbb_c00224{left:709.800000px;}
.xfd_c00224{left:712.050000px;}
.xca_c00224{left:714.300000px;}
.x12b_c00224{left:717.900000px;}
.xf9_c00224{left:719.100000px;}
.x14b_c00224{left:720.750000px;}
.x11e_c00224{left:722.550000px;}
.x10f_c00224{left:724.650000px;}
.x134_c00224{left:725.850000px;}
.x140_c00224{left:727.800000px;}
.xd8_c00224{left:729.300000px;}
.xdf_c00224{left:730.500000px;}
.xbc_c00224{left:732.450000px;}
.xed_c00224{left:733.650000px;}
.xe2_c00224{left:735.150000px;}
.xb5_c00224{left:737.850000px;}
.x116_c00224{left:739.200000px;}
.xd0_c00224{left:741.900000px;}
.x128_c00224{left:745.350000px;}
.xcb_c00224{left:747.750000px;}
.xe6_c00224{left:749.850000px;}
.x104_c00224{left:751.350000px;}
.x3_c00224{left:753.150000px;}
.x11f_c00224{left:755.250000px;}
.x13c_c00224{left:756.450000px;}
.xf4_c00224{left:758.550000px;}
.x148_c00224{left:759.750000px;}
.x10c_c00224{left:762.300000px;}
.xee_c00224{left:765.000000px;}
.xbd_c00224{left:766.350000px;}
.x12f_c00224{left:767.700000px;}
.xd1_c00224{left:769.650000px;}
.x122_c00224{left:771.150000px;}
.x105_c00224{left:772.650000px;}
.x125_c00224{left:778.800000px;}
.x135_c00224{left:780.600000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls0_c00224{letter-spacing:0.000000pt;}
.ws1_c00224{word-spacing:-5.477089pt;}
.ws2_c00224{word-spacing:-5.029377pt;}
.ws4_c00224{word-spacing:-2.633745pt;}
.ws5_c00224{word-spacing:0.000000pt;}
.ws3_c00224{word-spacing:1.441094pt;}
.ws0_c00224{word-spacing:2.039216pt;}
.fs1_c00224{font-size:42.666667pt;}
.fs6_c00224{font-size:48.000000pt;}
.fs3_c00224{font-size:53.333333pt;}
.fs2_c00224{font-size:58.666667pt;}
.fs4_c00224{font-size:64.000000pt;}
.fs5_c00224{font-size:69.333333pt;}
.fs0_c00224{font-size:74.666667pt;}
.y0_c00224{bottom:0.000000pt;}
.y69_c00224{bottom:148.400000pt;}
.y68_c00224{bottom:164.133333pt;}
.y36_c00224{bottom:167.066667pt;}
.y35_c00224{bottom:181.066667pt;}
.y67_c00224{bottom:188.533333pt;}
.y34_c00224{bottom:196.800000pt;}
.y66_c00224{bottom:204.533333pt;}
.y33_c00224{bottom:212.800000pt;}
.y65_c00224{bottom:224.266667pt;}
.y32_c00224{bottom:228.800000pt;}
.y64_c00224{bottom:240.266667pt;}
.y31_c00224{bottom:244.800000pt;}
.y63_c00224{bottom:256.000000pt;}
.y30_c00224{bottom:266.533333pt;}
.y62_c00224{bottom:272.266667pt;}
.y2f_c00224{bottom:279.333333pt;}
.y61_c00224{bottom:288.000000pt;}
.y2e_c00224{bottom:293.733333pt;}
.y2d_c00224{bottom:306.266667pt;}
.y60_c00224{bottom:307.733333pt;}
.y2c_c00224{bottom:322.266667pt;}
.y5f_c00224{bottom:323.733333pt;}
.y2b_c00224{bottom:338.133333pt;}
.y5e_c00224{bottom:339.466667pt;}
.y2a_c00224{bottom:353.866667pt;}
.y5d_c00224{bottom:355.200000pt;}
.y29_c00224{bottom:369.866667pt;}
.y5c_c00224{bottom:370.933333pt;}
.y5b_c00224{bottom:386.933333pt;}
.y28_c00224{bottom:389.200000pt;}
.y5a_c00224{bottom:402.666667pt;}
.y27_c00224{bottom:405.466667pt;}
.y59_c00224{bottom:418.666667pt;}
.y26_c00224{bottom:421.466667pt;}
.y58_c00224{bottom:434.933333pt;}
.y25_c00224{bottom:437.733333pt;}
.y57_c00224{bottom:456.666667pt;}
.y24_c00224{bottom:457.333333pt;}
.y23_c00224{bottom:473.333333pt;}
.y56_c00224{bottom:475.066667pt;}
.y22_c00224{bottom:489.333333pt;}
.y55_c00224{bottom:490.800000pt;}
.y21_c00224{bottom:505.066667pt;}
.y54_c00224{bottom:506.800000pt;}
.y20_c00224{bottom:521.066667pt;}
.y53_c00224{bottom:522.533333pt;}
.y1f_c00224{bottom:536.800000pt;}
.y52_c00224{bottom:542.133333pt;}
.y1e_c00224{bottom:552.800000pt;}
.y51_c00224{bottom:558.133333pt;}
.y1d_c00224{bottom:568.800000pt;}
.y50_c00224{bottom:573.733333pt;}
.y1c_c00224{bottom:584.533333pt;}
.y4f_c00224{bottom:589.466667pt;}
.y1b_c00224{bottom:600.266667pt;}
.y4e_c00224{bottom:609.333333pt;}
.y1a_c00224{bottom:616.000000pt;}
.y4d_c00224{bottom:625.600000pt;}
.y19_c00224{bottom:632.266667pt;}
.y18_c00224{bottom:648.000000pt;}
.y4c_c00224{bottom:649.866667pt;}
.y17_c00224{bottom:664.000000pt;}
.y4b_c00224{bottom:665.866667pt;}
.y16_c00224{bottom:679.733333pt;}
.y4a_c00224{bottom:685.733333pt;}
.y15_c00224{bottom:699.200000pt;}
.y49_c00224{bottom:701.733333pt;}
.y14_c00224{bottom:715.200000pt;}
.y48_c00224{bottom:717.733333pt;}
.y13_c00224{bottom:730.933333pt;}
.y47_c00224{bottom:733.466667pt;}
.y12_c00224{bottom:746.933333pt;}
.y46_c00224{bottom:753.333333pt;}
.y11_c00224{bottom:766.533333pt;}
.y45_c00224{bottom:769.200000pt;}
.y10_c00224{bottom:782.533333pt;}
.y44_c00224{bottom:785.200000pt;}
.yf_c00224{bottom:798.533333pt;}
.y43_c00224{bottom:800.533333pt;}
.ye_c00224{bottom:814.533333pt;}
.y42_c00224{bottom:816.533333pt;}
.yd_c00224{bottom:830.266667pt;}
.y41_c00224{bottom:832.533333pt;}
.yc_c00224{bottom:846.000000pt;}
.y40_c00224{bottom:848.266667pt;}
.yb_c00224{bottom:862.266667pt;}
.y3f_c00224{bottom:864.266667pt;}
.ya_c00224{bottom:878.000000pt;}
.y3e_c00224{bottom:880.533333pt;}
.y9_c00224{bottom:894.000000pt;}
.y3d_c00224{bottom:896.266667pt;}
.y8_c00224{bottom:909.733333pt;}
.y3c_c00224{bottom:912.266667pt;}
.y7_c00224{bottom:925.733333pt;}
.y3b_c00224{bottom:928.266667pt;}
.y6_c00224{bottom:941.466667pt;}
.y3a_c00224{bottom:943.600000pt;}
.y5_c00224{bottom:957.466667pt;}
.y39_c00224{bottom:959.600000pt;}
.y38_c00224{bottom:975.333333pt;}
.y4_c00224{bottom:976.933333pt;}
.y37_c00224{bottom:991.066667pt;}
.y3_c00224{bottom:992.933333pt;}
.y2_c00224{bottom:1013.466667pt;}
.y1_c00224{bottom:1016.000000pt;}
.h3_c00224{height:42.666667pt;}
.h8_c00224{height:48.000000pt;}
.h5_c00224{height:53.333333pt;}
.h4_c00224{height:58.666667pt;}
.h6_c00224{height:64.000000pt;}
.h7_c00224{height:69.333333pt;}
.h2_c00224{height:74.666667pt;}
.h1_c00224{height:1128.666667pt;}
.h0_c00224{height:1128.960043pt;}
.w1_c00224{width:856.000000pt;}
.w0_c00224{width:856.319987pt;}
.x0_c00224{left:0.000000pt;}
.x53_c00224{left:78.666667pt;}
.x5c_c00224{left:79.733333pt;}
.x99_c00224{left:80.933333pt;}
.x90_c00224{left:82.266667pt;}
.x9f_c00224{left:83.466667pt;}
.x82_c00224{left:86.133333pt;}
.xac_c00224{left:89.866667pt;}
.x4_c00224{left:93.466667pt;}
.x34_c00224{left:94.800000pt;}
.x4c_c00224{left:96.000000pt;}
.x8b_c00224{left:97.066667pt;}
.x96_c00224{left:98.133333pt;}
.xaa_c00224{left:99.066667pt;}
.x83_c00224{left:104.000000pt;}
.x71_c00224{left:107.866667pt;}
.xd_c00224{left:109.466667pt;}
.x66_c00224{left:112.000000pt;}
.x3e_c00224{left:113.866667pt;}
.x91_c00224{left:119.733333pt;}
.x1c_c00224{left:120.666667pt;}
.x60_c00224{left:122.266667pt;}
.x50_c00224{left:125.733333pt;}
.x15_c00224{left:127.200000pt;}
.xad_c00224{left:130.800000pt;}
.x35_c00224{left:131.866667pt;}
.xab_c00224{left:132.933333pt;}
.x2f_c00224{left:134.400000pt;}
.x1d_c00224{left:136.400000pt;}
.x5_c00224{left:137.333333pt;}
.x47_c00224{left:139.600000pt;}
.x62_c00224{left:140.666667pt;}
.x24_c00224{left:143.200000pt;}
.x36_c00224{left:146.000000pt;}
.x77_c00224{left:147.066667pt;}
.x7e_c00224{left:148.000000pt;}
.x51_c00224{left:149.066667pt;}
.x45_c00224{left:150.666667pt;}
.x16_c00224{left:152.800000pt;}
.xe_c00224{left:154.000000pt;}
.x29_c00224{left:155.866667pt;}
.x6_c00224{left:157.466667pt;}
.xa0_c00224{left:159.066667pt;}
.x37_c00224{left:160.133333pt;}
.x6e_c00224{left:161.066667pt;}
.x57_c00224{left:162.400000pt;}
.x89_c00224{left:164.533333pt;}
.xa9_c00224{left:166.133333pt;}
.x1e_c00224{left:167.466667pt;}
.x78_c00224{left:172.000000pt;}
.x92_c00224{left:173.066667pt;}
.x6a_c00224{left:175.333333pt;}
.x46_c00224{left:177.200000pt;}
.x9a_c00224{left:178.266667pt;}
.x63_c00224{left:179.733333pt;}
.x38_c00224{left:181.866667pt;}
.x2a_c00224{left:183.333333pt;}
.x17_c00224{left:185.466667pt;}
.x52_c00224{left:187.200000pt;}
.x7_c00224{left:188.533333pt;}
.xa1_c00224{left:189.733333pt;}
.x3f_c00224{left:192.266667pt;}
.x18_c00224{left:193.200000pt;}
.xf_c00224{left:194.933333pt;}
.x94_c00224{left:196.533333pt;}
.x1f_c00224{left:197.600000pt;}
.x25_c00224{left:198.933333pt;}
.x54_c00224{left:201.466667pt;}
.x84_c00224{left:202.666667pt;}
.x6f_c00224{left:203.600000pt;}
.x87_c00224{left:204.533333pt;}
.x58_c00224{left:205.866667pt;}
.x5d_c00224{left:207.733333pt;}
.x8_c00224{left:208.666667pt;}
.x10_c00224{left:213.466667pt;}
.x4d_c00224{left:215.600000pt;}
.x65_c00224{left:217.200000pt;}
.x79_c00224{left:219.333333pt;}
.x30_c00224{left:220.533333pt;}
.x19_c00224{left:222.933333pt;}
.x67_c00224{left:224.400000pt;}
.x55_c00224{left:225.466667pt;}
.x48_c00224{left:227.600000pt;}
.x88_c00224{left:229.200000pt;}
.x97_c00224{left:230.933333pt;}
.xa3_c00224{left:232.933333pt;}
.x85_c00224{left:234.666667pt;}
.xa4_c00224{left:236.000000pt;}
.x2b_c00224{left:237.466667pt;}
.x39_c00224{left:238.533333pt;}
.x98_c00224{left:239.600000pt;}
.x4e_c00224{left:240.933333pt;}
.x42_c00224{left:242.533333pt;}
.x11_c00224{left:245.200000pt;}
.x6b_c00224{left:246.266667pt;}
.x5a_c00224{left:247.733333pt;}
.x7a_c00224{left:250.400000pt;}
.x26_c00224{left:251.466667pt;}
.x86_c00224{left:253.200000pt;}
.x7f_c00224{left:255.733333pt;}
.x9d_c00224{left:256.666667pt;}
.x40_c00224{left:258.800000pt;}
.x5e_c00224{left:260.800000pt;}
.x9_c00224{left:262.400000pt;}
.x12_c00224{left:263.466667pt;}
.x56_c00224{left:266.133333pt;}
.x20_c00224{left:268.266667pt;}
.x8c_c00224{left:269.600000pt;}
.x31_c00224{left:270.800000pt;}
.x72_c00224{left:273.200000pt;}
.x27_c00224{left:275.200000pt;}
.x59_c00224{left:276.800000pt;}
.x3a_c00224{left:277.866667pt;}
.x5f_c00224{left:279.066667pt;}
.xa_c00224{left:280.000000pt;}
.x4f_c00224{left:281.866667pt;}
.x2c_c00224{left:284.133333pt;}
.x9b_c00224{left:285.200000pt;}
.x61_c00224{left:287.600000pt;}
.x70_c00224{left:289.066667pt;}
.x1a_c00224{left:291.733333pt;}
.x1_c00224{left:292.800000pt;}
.x49_c00224{left:294.133333pt;}
.x8d_c00224{left:295.866667pt;}
.x13_c00224{left:296.800000pt;}
.x2d_c00224{left:297.866667pt;}
.x21_c00224{left:300.933333pt;}
.x7b_c00224{left:302.266667pt;}
.xae_c00224{left:303.733333pt;}
.x73_c00224{left:306.400000pt;}
.x95_c00224{left:307.333333pt;}
.x43_c00224{left:308.800000pt;}
.xa2_c00224{left:309.733333pt;}
.xa7_c00224{left:310.800000pt;}
.x9e_c00224{left:311.733333pt;}
.x3b_c00224{left:312.800000pt;}
.x22_c00224{left:314.400000pt;}
.x41_c00224{left:316.400000pt;}
.x2_c00224{left:318.133333pt;}
.xb_c00224{left:319.066667pt;}
.x74_c00224{left:321.066667pt;}
.x7c_c00224{left:323.066667pt;}
.x4a_c00224{left:324.266667pt;}
.x64_c00224{left:325.733333pt;}
.x2e_c00224{left:327.600000pt;}
.x6c_c00224{left:329.466667pt;}
.x81_c00224{left:330.666667pt;}
.x68_c00224{left:333.600000pt;}
.x28_c00224{left:336.266667pt;}
.x8e_c00224{left:337.200000pt;}
.x4b_c00224{left:340.533333pt;}
.x14_c00224{left:341.600000pt;}
.x32_c00224{left:343.466667pt;}
.x3c_c00224{left:344.533333pt;}
.x9c_c00224{left:347.200000pt;}
.x8f_c00224{left:348.133333pt;}
.x75_c00224{left:350.133333pt;}
.x93_c00224{left:351.866667pt;}
.x8a_c00224{left:352.800000pt;}
.x6d_c00224{left:354.400000pt;}
.x1b_c00224{left:355.466667pt;}
.x23_c00224{left:357.600000pt;}
.x76_c00224{left:360.400000pt;}
.x44_c00224{left:361.866667pt;}
.x33_c00224{left:363.333333pt;}
.x5b_c00224{left:364.933333pt;}
.xc_c00224{left:367.066667pt;}
.x7d_c00224{left:368.133333pt;}
.xa5_c00224{left:369.200000pt;}
.xa6_c00224{left:371.466667pt;}
.x3d_c00224{left:375.200000pt;}
.x80_c00224{left:376.400000pt;}
.xa8_c00224{left:378.400000pt;}
.x69_c00224{left:384.533333pt;}
.x102_c00224{left:397.066667pt;}
.x111_c00224{left:398.400000pt;}
.x14e_c00224{left:400.000000pt;}
.xfe_c00224{left:403.866667pt;}
.xe7_c00224{left:409.333333pt;}
.xc3_c00224{left:410.266667pt;}
.xaf_c00224{left:411.466667pt;}
.xff_c00224{left:413.200000pt;}
.x118_c00224{left:414.133333pt;}
.x136_c00224{left:415.200000pt;}
.xbe_c00224{left:425.466667pt;}
.xf5_c00224{left:428.266667pt;}
.x110_c00224{left:430.400000pt;}
.x142_c00224{left:431.733333pt;}
.xd9_c00224{left:434.266667pt;}
.x112_c00224{left:436.533333pt;}
.x138_c00224{left:437.733333pt;}
.x12c_c00224{left:440.000000pt;}
.x130_c00224{left:442.400000pt;}
.xb6_c00224{left:443.733333pt;}
.xd2_c00224{left:447.600000pt;}
.xf6_c00224{left:449.333333pt;}
.xe8_c00224{left:450.933333pt;}
.xb0_c00224{left:452.400000pt;}
.xda_c00224{left:453.733333pt;}
.x123_c00224{left:455.066667pt;}
.x129_c00224{left:457.733333pt;}
.xc4_c00224{left:458.933333pt;}
.x106_c00224{left:461.600000pt;}
.xe9_c00224{left:462.800000pt;}
.xfa_c00224{left:464.666667pt;}
.xcc_c00224{left:466.266667pt;}
.x131_c00224{left:468.000000pt;}
.x14f_c00224{left:470.133333pt;}
.x113_c00224{left:471.066667pt;}
.xb1_c00224{left:472.533333pt;}
.xc5_c00224{left:475.600000pt;}
.x103_c00224{left:476.800000pt;}
.xf1_c00224{left:477.866667pt;}
.xe3_c00224{left:480.533333pt;}
.x12d_c00224{left:481.866667pt;}
.x100_c00224{left:482.933333pt;}
.x149_c00224{left:484.533333pt;}
.xcd_c00224{left:485.466667pt;}
.xb7_c00224{left:487.600000pt;}
.x141_c00224{left:490.266667pt;}
.xbf_c00224{left:491.733333pt;}
.x107_c00224{left:492.666667pt;}
.x117_c00224{left:494.666667pt;}
.x119_c00224{left:496.400000pt;}
.x14c_c00224{left:498.266667pt;}
.x139_c00224{left:502.000000pt;}
.x143_c00224{left:504.400000pt;}
.xb8_c00224{left:505.866667pt;}
.x126_c00224{left:506.933333pt;}
.xdb_c00224{left:508.133333pt;}
.x13d_c00224{left:509.600000pt;}
.xce_c00224{left:512.000000pt;}
.xb2_c00224{left:513.200000pt;}
.xd3_c00224{left:514.800000pt;}
.xea_c00224{left:515.866667pt;}
.x144_c00224{left:517.600000pt;}
.x132_c00224{left:518.666667pt;}
.xe0_c00224{left:520.400000pt;}
.xf7_c00224{left:521.333333pt;}
.x147_c00224{left:522.400000pt;}
.xc6_c00224{left:523.600000pt;}
.x10a_c00224{left:524.800000pt;}
.x14a_c00224{left:528.400000pt;}
.x11a_c00224{left:530.266667pt;}
.xdc_c00224{left:531.200000pt;}
.xb9_c00224{left:532.400000pt;}
.xc0_c00224{left:534.533333pt;}
.xd4_c00224{left:536.266667pt;}
.x120_c00224{left:537.600000pt;}
.x114_c00224{left:538.533333pt;}
.x10d_c00224{left:540.666667pt;}
.x13a_c00224{left:544.000000pt;}
.xf8_c00224{left:546.666667pt;}
.xdd_c00224{left:547.866667pt;}
.x137_c00224{left:548.933333pt;}
.xc7_c00224{left:549.866667pt;}
.xef_c00224{left:551.600000pt;}
.x12a_c00224{left:553.066667pt;}
.xeb_c00224{left:554.933333pt;}
.x108_c00224{left:556.000000pt;}
.x145_c00224{left:556.933333pt;}
.xb3_c00224{left:558.266667pt;}
.xcf_c00224{left:560.266667pt;}
.x13b_c00224{left:561.866667pt;}
.x10e_c00224{left:563.600000pt;}
.x14d_c00224{left:564.800000pt;}
.x121_c00224{left:566.666667pt;}
.xd5_c00224{left:567.600000pt;}
.xc1_c00224{left:569.066667pt;}
.x11b_c00224{left:570.933333pt;}
.xe4_c00224{left:572.133333pt;}
.xfb_c00224{left:573.466667pt;}
.x124_c00224{left:575.733333pt;}
.xde_c00224{left:577.333333pt;}
.xfc_c00224{left:580.133333pt;}
.x127_c00224{left:581.866667pt;}
.xe1_c00224{left:582.800000pt;}
.x101_c00224{left:583.733333pt;}
.xd6_c00224{left:584.933333pt;}
.xba_c00224{left:587.733333pt;}
.xc8_c00224{left:593.333333pt;}
.x11c_c00224{left:597.200000pt;}
.x133_c00224{left:598.133333pt;}
.xf2_c00224{left:600.400000pt;}
.x146_c00224{left:601.733333pt;}
.xec_c00224{left:603.200000pt;}
.xb4_c00224{left:604.933333pt;}
.xc9_c00224{left:606.800000pt;}
.x10b_c00224{left:607.733333pt;}
.x13f_c00224{left:609.200000pt;}
.xd7_c00224{left:611.466667pt;}
.x115_c00224{left:613.600000pt;}
.x109_c00224{left:616.400000pt;}
.xf3_c00224{left:618.933333pt;}
.xe5_c00224{left:620.133333pt;}
.x13e_c00224{left:622.266667pt;}
.xf0_c00224{left:623.333333pt;}
.xc2_c00224{left:625.600000pt;}
.x11d_c00224{left:627.866667pt;}
.x12e_c00224{left:629.866667pt;}
.xbb_c00224{left:630.933333pt;}
.xfd_c00224{left:632.933333pt;}
.xca_c00224{left:634.933333pt;}
.x12b_c00224{left:638.133333pt;}
.xf9_c00224{left:639.200000pt;}
.x14b_c00224{left:640.666667pt;}
.x11e_c00224{left:642.266667pt;}
.x10f_c00224{left:644.133333pt;}
.x134_c00224{left:645.200000pt;}
.x140_c00224{left:646.933333pt;}
.xd8_c00224{left:648.266667pt;}
.xdf_c00224{left:649.333333pt;}
.xbc_c00224{left:651.066667pt;}
.xed_c00224{left:652.133333pt;}
.xe2_c00224{left:653.466667pt;}
.xb5_c00224{left:655.866667pt;}
.x116_c00224{left:657.066667pt;}
.xd0_c00224{left:659.466667pt;}
.x128_c00224{left:662.533333pt;}
.xcb_c00224{left:664.666667pt;}
.xe6_c00224{left:666.533333pt;}
.x104_c00224{left:667.866667pt;}
.x3_c00224{left:669.466667pt;}
.x11f_c00224{left:671.333333pt;}
.x13c_c00224{left:672.400000pt;}
.xf4_c00224{left:674.266667pt;}
.x148_c00224{left:675.333333pt;}
.x10c_c00224{left:677.600000pt;}
.xee_c00224{left:680.000000pt;}
.xbd_c00224{left:681.200000pt;}
.x12f_c00224{left:682.400000pt;}
.xd1_c00224{left:684.133333pt;}
.x122_c00224{left:685.466667pt;}
.x105_c00224{left:686.800000pt;}
.x125_c00224{left:692.266667pt;}
.x135_c00224{left:693.866667pt;}
}





/* 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_c00225 {
    display:none;
  }
  .loading-indicator_c00225.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00225 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_c00225 { 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_c00225" -> "#page-container .classname_c00225")
 */
.pf_c00225 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00225 { /* 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_c00225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00225 { /* 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_c00225 { /* 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_c00225 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00225 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00225 {overflow:visible;}
  }
}
.c_c00225 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00225 { /* 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_c00225:after { /* webkit #35443 */
  content: '';
}
.t_c00225:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00225 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 */
}
.__c00225 { /* 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_c00225 { /* info for Javascript */
  display:none;
}
.l_c00225 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00225 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00225 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00225: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_c00225 {
    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_c00225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00225.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_c00225 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00225;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.000000;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;}
.ma4_c00225{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00225{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00225{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00225{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m59_c00225{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m67_c00225{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00225{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00225{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00225{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m105_c00225{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.me6_c00225{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m47_c00225{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m98_c00225{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m25_c00225{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00225{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00225{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m103_c00225{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md8_c00225{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me3_c00225{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00225{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mf_c00225{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me9_c00225{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00225{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m33_c00225{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00225{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00225{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m77_c00225{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md9_c00225{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m111_c00225{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m40_c00225{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m112_c00225{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m8_c00225{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md6_c00225{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.me2_c00225{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00225{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mec_c00225{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m31_c00225{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md2_c00225{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00225{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m19_c00225{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00225{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.md5_c00225{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m117_c00225{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m88_c00225{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m113_c00225{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mea_c00225{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m7_c00225{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00225{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00225{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00225{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m72_c00225{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00225{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00225{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00225{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me5_c00225{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.me1_c00225{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m79_c00225{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me8_c00225{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00225{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00225{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md3_c00225{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00225{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00225{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m84_c00225{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m102_c00225{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00225{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m51_c00225{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00225{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m82_c00225{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00225{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m107_c00225{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mc_c00225{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m74_c00225{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m66_c00225{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m15_c00225{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00225{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00225{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00225{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00225{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.med_c00225{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00225{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m56_c00225{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.me_c00225{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00225{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.meb_c00225{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m83_c00225{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m43_c00225{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00225{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00225{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m38_c00225{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00225{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00225{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m10_c00225{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00225{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m104_c00225{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mac_c00225{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m3_c00225{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m65_c00225{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00225{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.md_c00225{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00225{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m109_c00225{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00225{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00225{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00225{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00225{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m58_c00225{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00225{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m37_c00225{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mba_c00225{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mca_c00225{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00225{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m91_c00225{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m118_c00225{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m68_c00225{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00225{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00225{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m39_c00225{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00225{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m54_c00225{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00225{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m96_c00225{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00225{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md7_c00225{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00225{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m81_c00225{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00225{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m115_c00225{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m60_c00225{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mb_c00225{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00225{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m45_c00225{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m93_c00225{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00225{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m80_c00225{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m89_c00225{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00225{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00225{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.me7_c00225{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m76_c00225{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m106_c00225{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00225{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.me4_c00225{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m108_c00225{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m52_c00225{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00225{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m57_c00225{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00225{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m34_c00225{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m41_c00225{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00225{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00225{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00225{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m13_c00225{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m50_c00225{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00225{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m86_c00225{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mce_c00225{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00225{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m18_c00225{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m71_c00225{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00225{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m24_c00225{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m70_c00225{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00225{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00225{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md4_c00225{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9_c00225{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m44_c00225{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m23_c00225{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.maf_c00225{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m78_c00225{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m27_c00225{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m48_c00225{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m12_c00225{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00225{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00225{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m26_c00225{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mff_c00225{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m53_c00225{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00225{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00225{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mae_c00225{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md1_c00225{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m30_c00225{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00225{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mab_c00225{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mef_c00225{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m101_c00225{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00225{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m11_c00225{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00225{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m29_c00225{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m55_c00225{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m114_c00225{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00225{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00225{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00225{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me0_c00225{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m32_c00225{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m42_c00225{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m95_c00225{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m36_c00225{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m22_c00225{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00225{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m64_c00225{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6_c00225{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00225{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00225{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mde_c00225{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00225{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00225{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m61_c00225{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m46_c00225{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m100_c00225{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m16_c00225{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00225{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m94_c00225{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00225{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00225{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00225{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.maa_c00225{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m119_c00225{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00225{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m49_c00225{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00225{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m14_c00225{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00225{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m63_c00225{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00225{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00225{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m28_c00225{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00225{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00225{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.md0_c00225{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mad_c00225{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00225{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mda_c00225{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m87_c00225{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m35_c00225{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00225{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mee_c00225{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00225{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m85_c00225{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m4_c00225{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m17_c00225{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m97_c00225{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m5_c00225{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00225{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00225{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m92_c00225{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m99_c00225{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00225{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00225{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m90_c00225{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00225{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00225{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m116_c00225{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00225{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma_c00225{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00225{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m69_c00225{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00225{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00225{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00225{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m20_c00225{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00225{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m73_c00225{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m75_c00225{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m110_c00225{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00225{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00225{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00225{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00225{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00225{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00225{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m62_c00225{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00225{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00225{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls0_c00225{letter-spacing:0.000000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{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__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00225{word-spacing:-8.972112px;}
.ws6_c00225{word-spacing:-5.970112px;}
.ws1_c00225{word-spacing:-3.487973px;}
.wsb_c00225{word-spacing:-3.055556px;}
.ws4_c00225{word-spacing:-0.051546px;}
.wsc_c00225{word-spacing:0.000000px;}
.ws2_c00225{word-spacing:0.888268px;}
.ws9_c00225{word-spacing:1.666667px;}
.ws5_c00225{word-spacing:3.501348px;}
.ws0_c00225{word-spacing:5.166667px;}
.ws8_c00225{word-spacing:9.375000px;}
.ws3_c00225{word-spacing:11.012658px;}
.wsa_c00225{word-spacing:12.631579px;}
.fc0_c00225{color:transparent;}
.fs5_c00225{font-size:48.000000px;}
.fs0_c00225{font-size:54.000000px;}
.fs4_c00225{font-size:60.000000px;}
.fs3_c00225{font-size:66.000000px;}
.fs2_c00225{font-size:72.000000px;}
.fs1_c00225{font-size:114.000000px;}
.y0_c00225{bottom:0.000000px;}
.y67_c00225{bottom:185.400000px;}
.y33_c00225{bottom:189.000000px;}
.y66_c00225{bottom:199.500000px;}
.y32_c00225{bottom:207.000000px;}
.y65_c00225{bottom:214.950000px;}
.y31_c00225{bottom:225.300000px;}
.y64_c00225{bottom:228.600000px;}
.y63_c00225{bottom:242.250000px;}
.y30_c00225{bottom:243.000000px;}
.y62_c00225{bottom:256.800000px;}
.y2f_c00225{bottom:260.550000px;}
.y61_c00225{bottom:271.500000px;}
.y2e_c00225{bottom:278.250000px;}
.y60_c00225{bottom:285.900000px;}
.y2d_c00225{bottom:298.800000px;}
.y5f_c00225{bottom:300.300000px;}
.y5e_c00225{bottom:314.700000px;}
.y2c_c00225{bottom:321.150000px;}
.y5d_c00225{bottom:328.800000px;}
.y2b_c00225{bottom:336.900000px;}
.y5c_c00225{bottom:343.200000px;}
.y5b_c00225{bottom:357.900000px;}
.y2a_c00225{bottom:358.200000px;}
.y5a_c00225{bottom:372.300000px;}
.y29_c00225{bottom:375.900000px;}
.y59_c00225{bottom:386.700000px;}
.y28_c00225{bottom:394.200000px;}
.y58_c00225{bottom:401.400000px;}
.y27_c00225{bottom:412.200000px;}
.y57_c00225{bottom:415.800000px;}
.y56_c00225{bottom:429.900000px;}
.y26_c00225{bottom:430.200000px;}
.y55_c00225{bottom:444.600000px;}
.y25_c00225{bottom:447.900000px;}
.y24_c00225{bottom:469.050000px;}
.y23_c00225{bottom:493.200000px;}
.y54_c00225{bottom:500.100000px;}
.y22_c00225{bottom:518.400000px;}
.y53_c00225{bottom:522.300000px;}
.y21_c00225{bottom:536.850000px;}
.y52_c00225{bottom:544.650000px;}
.y20_c00225{bottom:558.750000px;}
.y51_c00225{bottom:562.950000px;}
.y1f_c00225{bottom:580.650000px;}
.y50_c00225{bottom:580.950000px;}
.y1e_c00225{bottom:598.800000px;}
.y4f_c00225{bottom:598.950000px;}
.y4e_c00225{bottom:616.650000px;}
.y1d_c00225{bottom:616.800000px;}
.y1c_c00225{bottom:634.500000px;}
.y4d_c00225{bottom:634.650000px;}
.y4c_c00225{bottom:652.350000px;}
.y1b_c00225{bottom:652.500000px;}
.y1a_c00225{bottom:670.500000px;}
.y4b_c00225{bottom:670.650000px;}
.y19_c00225{bottom:688.200000px;}
.y4a_c00225{bottom:688.650000px;}
.y18_c00225{bottom:705.900000px;}
.y49_c00225{bottom:706.350000px;}
.y17_c00225{bottom:724.050000px;}
.y48_c00225{bottom:724.350000px;}
.y16_c00225{bottom:742.350000px;}
.y47_c00225{bottom:742.650000px;}
.y46_c00225{bottom:759.900000px;}
.y15_c00225{bottom:763.500000px;}
.y45_c00225{bottom:777.900000px;}
.y14_c00225{bottom:781.800000px;}
.y44_c00225{bottom:795.600000px;}
.y13_c00225{bottom:799.800000px;}
.y43_c00225{bottom:813.600000px;}
.y12_c00225{bottom:817.800000px;}
.y11_c00225{bottom:835.500000px;}
.y42_c00225{bottom:840.300000px;}
.y10_c00225{bottom:853.500000px;}
.y41_c00225{bottom:858.300000px;}
.yf_c00225{bottom:871.200000px;}
.y40_c00225{bottom:876.600000px;}
.ye_c00225{bottom:889.200000px;}
.y3f_c00225{bottom:898.950000px;}
.yd_c00225{bottom:907.200000px;}
.y3e_c00225{bottom:912.600000px;}
.yc_c00225{bottom:924.900000px;}
.y3d_c00225{bottom:930.300000px;}
.yb_c00225{bottom:942.900000px;}
.y3c_c00225{bottom:951.900000px;}
.ya_c00225{bottom:963.300000px;}
.y3b_c00225{bottom:970.200000px;}
.y9_c00225{bottom:983.400000px;}
.y3a_c00225{bottom:988.200000px;}
.y8_c00225{bottom:1001.100000px;}
.y39_c00225{bottom:1006.200000px;}
.y7_c00225{bottom:1022.700000px;}
.y38_c00225{bottom:1028.550000px;}
.y6_c00225{bottom:1041.000000px;}
.y37_c00225{bottom:1054.050000px;}
.y5_c00225{bottom:1059.000000px;}
.y36_c00225{bottom:1076.400000px;}
.y4_c00225{bottom:1076.700000px;}
.y3_c00225{bottom:1098.300000px;}
.y35_c00225{bottom:1098.750000px;}
.y2_c00225{bottom:1116.750000px;}
.y34_c00225{bottom:1117.800000px;}
.y1_c00225{bottom:1143.750000px;}
.h7_c00225{height:48.000000px;}
.h2_c00225{height:54.000000px;}
.h6_c00225{height:60.000000px;}
.h5_c00225{height:66.000000px;}
.h4_c00225{height:72.000000px;}
.h3_c00225{height:114.000000px;}
.h1_c00225{height:1269.750000px;}
.h0_c00225{height:1270.080048px;}
.w1_c00225{width:963.000000px;}
.w0_c00225{width:963.359985px;}
.x0_c00225{left:0.000000px;}
.x8d_c00225{left:164.100000px;}
.x7b_c00225{left:169.500000px;}
.x3_c00225{left:170.700000px;}
.x5a_c00225{left:174.300000px;}
.x1_c00225{left:175.650000px;}
.x93_c00225{left:180.000000px;}
.x97_c00225{left:186.300000px;}
.x7d_c00225{left:187.650000px;}
.x7a_c00225{left:188.700000px;}
.x5b_c00225{left:189.750000px;}
.x57_c00225{left:190.800000px;}
.x42_c00225{left:192.000000px;}
.x20_c00225{left:193.050000px;}
.xa_c00225{left:194.100000px;}
.x7e_c00225{left:207.300000px;}
.x53_c00225{left:209.250000px;}
.x76_c00225{left:210.600000px;}
.xb_c00225{left:213.450000px;}
.x60_c00225{left:214.650000px;}
.x43_c00225{left:216.450000px;}
.x21_c00225{left:217.500000px;}
.x86_c00225{left:218.550000px;}
.x73_c00225{left:219.900000px;}
.x22_c00225{left:221.100000px;}
.x4_c00225{left:222.150000px;}
.x27_c00225{left:224.400000px;}
.x90_c00225{left:227.100000px;}
.x8b_c00225{left:230.550000px;}
.x37_c00225{left:232.500000px;}
.x77_c00225{left:233.550000px;}
.x48_c00225{left:235.200000px;}
.x2c_c00225{left:236.550000px;}
.x13_c00225{left:237.600000px;}
.x74_c00225{left:241.500000px;}
.x19_c00225{left:246.000000px;}
.x6c_c00225{left:247.350000px;}
.x98_c00225{left:248.550000px;}
.x61_c00225{left:250.650000px;}
.x7f_c00225{left:252.300000px;}
.x65_c00225{left:253.950000px;}
.x6a_c00225{left:256.500000px;}
.x49_c00225{left:257.850000px;}
.x2d_c00225{left:258.900000px;}
.xc_c00225{left:260.550000px;}
.x87_c00225{left:261.750000px;}
.x5_c00225{left:263.250000px;}
.x38_c00225{left:265.200000px;}
.x5c_c00225{left:267.450000px;}
.x71_c00225{left:270.900000px;}
.x28_c00225{left:272.250000px;}
.x3e_c00225{left:274.650000px;}
.x8e_c00225{left:276.450000px;}
.x88_c00225{left:279.750000px;}
.x14_c00225{left:284.400000px;}
.x8c_c00225{left:285.600000px;}
.x83_c00225{left:287.550000px;}
.x23_c00225{left:288.750000px;}
.x1a_c00225{left:290.700000px;}
.x4a_c00225{left:293.850000px;}
.x3b_c00225{left:296.250000px;}
.x72_c00225{left:298.650000px;}
.x91_c00225{left:300.600000px;}
.x80_c00225{left:301.650000px;}
.x34_c00225{left:303.900000px;}
.x6d_c00225{left:305.250000px;}
.x3f_c00225{left:307.350000px;}
.x44_c00225{left:309.750000px;}
.x66_c00225{left:311.550000px;}
.x8a_c00225{left:314.100000px;}
.x54_c00225{left:318.750000px;}
.x4d_c00225{left:320.550000px;}
.x8f_c00225{left:323.250000px;}
.xd_c00225{left:324.600000px;}
.x6e_c00225{left:328.350000px;}
.x1b_c00225{left:330.300000px;}
.x2e_c00225{left:331.350000px;}
.x51_c00225{left:332.850000px;}
.x45_c00225{left:333.900000px;}
.x81_c00225{left:336.150000px;}
.x6_c00225{left:340.950000px;}
.x15_c00225{left:343.800000px;}
.x4b_c00225{left:345.600000px;}
.x2f_c00225{left:350.100000px;}
.x92_c00225{left:352.500000px;}
.x62_c00225{left:353.550000px;}
.x84_c00225{left:355.200000px;}
.x56_c00225{left:358.050000px;}
.x40_c00225{left:361.650000px;}
.x30_c00225{left:364.200000px;}
.x29_c00225{left:366.150000px;}
.x16_c00225{left:367.500000px;}
.x75_c00225{left:368.700000px;}
.x7_c00225{left:371.550000px;}
.xe_c00225{left:373.200000px;}
.x24_c00225{left:375.900000px;}
.x94_c00225{left:376.950000px;}
.x1c_c00225{left:378.900000px;}
.x3c_c00225{left:381.600000px;}
.x5d_c00225{left:383.400000px;}
.x35_c00225{left:387.000000px;}
.x78_c00225{left:388.050000px;}
.x39_c00225{left:389.100000px;}
.xf_c00225{left:391.500000px;}
.x58_c00225{left:393.000000px;}
.x96_c00225{left:402.300000px;}
.x41_c00225{left:403.350000px;}
.x6f_c00225{left:404.400000px;}
.x17_c00225{left:406.350000px;}
.x31_c00225{left:408.450000px;}
.x1d_c00225{left:409.800000px;}
.x2a_c00225{left:414.450000px;}
.x2_c00225{left:416.550000px;}
.x4e_c00225{left:419.250000px;}
.x89_c00225{left:420.450000px;}
.x63_c00225{left:422.700000px;}
.x2b_c00225{left:425.250000px;}
.x67_c00225{left:427.200000px;}
.x32_c00225{left:429.000000px;}
.x10_c00225{left:431.850000px;}
.x46_c00225{left:433.950000px;}
.x4f_c00225{left:439.050000px;}
.x8_c00225{left:440.700000px;}
.x64_c00225{left:441.750000px;}
.x68_c00225{left:443.100000px;}
.x11_c00225{left:444.750000px;}
.x1e_c00225{left:445.800000px;}
.x6b_c00225{left:446.850000px;}
.x82_c00225{left:448.800000px;}
.x18_c00225{left:453.450000px;}
.x50_c00225{left:454.500000px;}
.x7c_c00225{left:456.300000px;}
.x33_c00225{left:459.600000px;}
.x52_c00225{left:460.800000px;}
.x69_c00225{left:463.200000px;}
.x36_c00225{left:465.000000px;}
.x70_c00225{left:469.500000px;}
.x95_c00225{left:470.850000px;}
.x25_c00225{left:472.800000px;}
.x85_c00225{left:474.750000px;}
.x55_c00225{left:477.900000px;}
.x4c_c00225{left:479.550000px;}
.x5e_c00225{left:480.600000px;}
.x3d_c00225{left:481.650000px;}
.x1f_c00225{left:483.600000px;}
.x26_c00225{left:485.700000px;}
.x79_c00225{left:487.800000px;}
.x3a_c00225{left:490.200000px;}
.x5f_c00225{left:491.400000px;}
.x9_c00225{left:493.950000px;}
.x12_c00225{left:495.450000px;}
.x59_c00225{left:498.450000px;}
.x47_c00225{left:504.150000px;}
.x146_c00225{left:524.100000px;}
.x13d_c00225{left:525.600000px;}
.x12c_c00225{left:526.650000px;}
.x11c_c00225{left:527.700000px;}
.xda_c00225{left:529.200000px;}
.xbf_c00225{left:531.000000px;}
.xa3_c00225{left:532.500000px;}
.xa9_c00225{left:533.550000px;}
.x13f_c00225{left:539.700000px;}
.x135_c00225{left:540.750000px;}
.x11d_c00225{left:542.100000px;}
.x112_c00225{left:545.400000px;}
.xc7_c00225{left:546.450000px;}
.xd2_c00225{left:547.800000px;}
.xbb_c00225{left:549.450000px;}
.x99_c00225{left:550.500000px;}
.x147_c00225{left:559.800000px;}
.x116_c00225{left:563.400000px;}
.x122_c00225{left:564.750000px;}
.x11e_c00225{left:567.000000px;}
.xb0_c00225{left:568.050000px;}
.x11a_c00225{left:569.400000px;}
.x139_c00225{left:570.750000px;}
.x10b_c00225{left:571.950000px;}
.xaa_c00225{left:574.650000px;}
.xc0_c00225{left:577.800000px;}
.xb5_c00225{left:579.300000px;}
.xf1_c00225{left:580.500000px;}
.x128_c00225{left:581.850000px;}
.x140_c00225{left:583.200000px;}
.xca_c00225{left:584.400000px;}
.xe8_c00225{left:589.200000px;}
.xfd_c00225{left:590.400000px;}
.xdb_c00225{left:591.900000px;}
.xbe_c00225{left:593.250000px;}
.xa4_c00225{left:594.750000px;}
.x13a_c00225{left:595.950000px;}
.xcb_c00225{left:597.000000px;}
.xec_c00225{left:598.650000px;}
.xa5_c00225{left:601.500000px;}
.xb6_c00225{left:603.750000px;}
.x10e_c00225{left:604.800000px;}
.xd8_c00225{left:605.850000px;}
.xf9_c00225{left:607.950000px;}
.x13e_c00225{left:609.150000px;}
.x9a_c00225{left:610.950000px;}
.xab_c00225{left:612.450000px;}
.x108_c00225{left:616.650000px;}
.xe2_c00225{left:617.700000px;}
.xc8_c00225{left:620.250000px;}
.x11b_c00225{left:621.600000px;}
.xd3_c00225{left:622.650000px;}
.x131_c00225{left:623.850000px;}
.x103_c00225{left:624.900000px;}
.xa6_c00225{left:626.400000px;}
.x12d_c00225{left:628.050000px;}
.x9b_c00225{left:630.750000px;}
.xcc_c00225{left:632.250000px;}
.xbc_c00225{left:633.750000px;}
.x105_c00225{left:636.300000px;}
.x117_c00225{left:637.500000px;}
.x12a_c00225{left:639.300000px;}
.x10f_c00225{left:640.500000px;}
.x113_c00225{left:642.150000px;}
.x123_c00225{left:643.200000px;}
.x12e_c00225{left:647.850000px;}
.xc1_c00225{left:649.050000px;}
.xed_c00225{left:650.550000px;}
.x10c_c00225{left:651.600000px;}
.x11f_c00225{left:652.650000px;}
.xdc_c00225{left:653.850000px;}
.xe3_c00225{left:655.800000px;}
.x118_c00225{left:657.300000px;}
.xa7_c00225{left:658.500000px;}
.xcd_c00225{left:660.750000px;}
.xfe_c00225{left:663.900000px;}
.x9c_c00225{left:666.450000px;}
.xd9_c00225{left:667.500000px;}
.xee_c00225{left:669.300000px;}
.xe9_c00225{left:673.800000px;}
.x9d_c00225{left:675.450000px;}
.xa8_c00225{left:679.800000px;}
.xdd_c00225{left:681.150000px;}
.xf2_c00225{left:682.650000px;}
.xff_c00225{left:684.000000px;}
.xac_c00225{left:687.000000px;}
.xb7_c00225{left:689.100000px;}
.xfb_c00225{left:690.900000px;}
.xc2_c00225{left:692.250000px;}
.x136_c00225{left:693.750000px;}
.x124_c00225{left:695.700000px;}
.xce_c00225{left:697.500000px;}
.x132_c00225{left:700.500000px;}
.xb1_c00225{left:703.500000px;}
.xf3_c00225{left:704.550000px;}
.x106_c00225{left:705.750000px;}
.x120_c00225{left:707.400000px;}
.xfa_c00225{left:708.750000px;}
.x143_c00225{left:709.800000px;}
.xc3_c00225{left:715.350000px;}
.xef_c00225{left:717.600000px;}
.xde_c00225{left:718.950000px;}
.xd4_c00225{left:720.150000px;}
.x125_c00225{left:721.200000px;}
.x144_c00225{left:723.150000px;}
.xbd_c00225{left:724.500000px;}
.x13b_c00225{left:725.550000px;}
.x9e_c00225{left:726.900000px;}
.x119_c00225{left:729.600000px;}
.xea_c00225{left:730.650000px;}
.x141_c00225{left:731.850000px;}
.x126_c00225{left:733.800000px;}
.x109_c00225{left:735.750000px;}
.x110_c00225{left:736.950000px;}
.x13c_c00225{left:738.750000px;}
.xf4_c00225{left:742.350000px;}
.xb8_c00225{left:743.400000px;}
.xcf_c00225{left:746.400000px;}
.x9f_c00225{left:747.450000px;}
.x137_c00225{left:748.500000px;}
.xad_c00225{left:751.500000px;}
.x121_c00225{left:752.700000px;}
.x114_c00225{left:754.200000px;}
.x100_c00225{left:758.400000px;}
.xdf_c00225{left:759.750000px;}
.xae_c00225{left:762.300000px;}
.xc4_c00225{left:763.950000px;}
.xb2_c00225{left:766.200000px;}
.x129_c00225{left:767.250000px;}
.x104_c00225{left:768.900000px;}
.x115_c00225{left:771.900000px;}
.xe4_c00225{left:773.250000px;}
.x101_c00225{left:774.300000px;}
.xb9_c00225{left:779.100000px;}
.xb3_c00225{left:783.450000px;}
.x133_c00225{left:784.800000px;}
.xf5_c00225{left:786.600000px;}
.xa0_c00225{left:792.750000px;}
.xd5_c00225{left:794.700000px;}
.xd0_c00225{left:796.800000px;}
.xe0_c00225{left:797.850000px;}
.xf6_c00225{left:799.950000px;}
.xa1_c00225{left:802.050000px;}
.x12f_c00225{left:804.900000px;}
.x134_c00225{left:806.400000px;}
.xe5_c00225{left:808.200000px;}
.x102_c00225{left:809.550000px;}
.x142_c00225{left:810.750000px;}
.xaf_c00225{left:811.950000px;}
.x111_c00225{left:813.600000px;}
.xfc_c00225{left:815.400000px;}
.x10d_c00225{left:816.900000px;}
.xc5_c00225{left:819.000000px;}
.xeb_c00225{left:820.350000px;}
.xc9_c00225{left:823.050000px;}
.x107_c00225{left:826.050000px;}
.xe6_c00225{left:830.100000px;}
.xba_c00225{left:831.300000px;}
.xf7_c00225{left:832.650000px;}
.xa2_c00225{left:835.200000px;}
.xd6_c00225{left:836.850000px;}
.xf0_c00225{left:838.500000px;}
.x138_c00225{left:839.700000px;}
.x127_c00225{left:844.500000px;}
.xd1_c00225{left:846.900000px;}
.xb4_c00225{left:848.250000px;}
.xe7_c00225{left:849.600000px;}
.x145_c00225{left:850.650000px;}
.x10a_c00225{left:852.750000px;}
.x12b_c00225{left:853.950000px;}
.xc6_c00225{left:855.750000px;}
.xd7_c00225{left:857.400000px;}
.x130_c00225{left:859.350000px;}
.xf8_c00225{left:860.700000px;}
.xe1_c00225{left:868.350000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws7_c00225{word-spacing:-7.975210pt;}
.ws6_c00225{word-spacing:-5.306766pt;}
.ws1_c00225{word-spacing:-3.100420pt;}
.wsb_c00225{word-spacing:-2.716049pt;}
.ws4_c00225{word-spacing:-0.045819pt;}
.wsc_c00225{word-spacing:0.000000pt;}
.ws2_c00225{word-spacing:0.789572pt;}
.ws9_c00225{word-spacing:1.481481pt;}
.ws5_c00225{word-spacing:3.112309pt;}
.ws0_c00225{word-spacing:4.592593pt;}
.ws8_c00225{word-spacing:8.333333pt;}
.ws3_c00225{word-spacing:9.789030pt;}
.wsa_c00225{word-spacing:11.228070pt;}
.fs5_c00225{font-size:42.666667pt;}
.fs0_c00225{font-size:48.000000pt;}
.fs4_c00225{font-size:53.333333pt;}
.fs3_c00225{font-size:58.666667pt;}
.fs2_c00225{font-size:64.000000pt;}
.fs1_c00225{font-size:101.333333pt;}
.y0_c00225{bottom:0.000000pt;}
.y67_c00225{bottom:164.800000pt;}
.y33_c00225{bottom:168.000000pt;}
.y66_c00225{bottom:177.333333pt;}
.y32_c00225{bottom:184.000000pt;}
.y65_c00225{bottom:191.066667pt;}
.y31_c00225{bottom:200.266667pt;}
.y64_c00225{bottom:203.200000pt;}
.y63_c00225{bottom:215.333333pt;}
.y30_c00225{bottom:216.000000pt;}
.y62_c00225{bottom:228.266667pt;}
.y2f_c00225{bottom:231.600000pt;}
.y61_c00225{bottom:241.333333pt;}
.y2e_c00225{bottom:247.333333pt;}
.y60_c00225{bottom:254.133333pt;}
.y2d_c00225{bottom:265.600000pt;}
.y5f_c00225{bottom:266.933333pt;}
.y5e_c00225{bottom:279.733333pt;}
.y2c_c00225{bottom:285.466667pt;}
.y5d_c00225{bottom:292.266667pt;}
.y2b_c00225{bottom:299.466667pt;}
.y5c_c00225{bottom:305.066667pt;}
.y5b_c00225{bottom:318.133333pt;}
.y2a_c00225{bottom:318.400000pt;}
.y5a_c00225{bottom:330.933333pt;}
.y29_c00225{bottom:334.133333pt;}
.y59_c00225{bottom:343.733333pt;}
.y28_c00225{bottom:350.400000pt;}
.y58_c00225{bottom:356.800000pt;}
.y27_c00225{bottom:366.400000pt;}
.y57_c00225{bottom:369.600000pt;}
.y56_c00225{bottom:382.133333pt;}
.y26_c00225{bottom:382.400000pt;}
.y55_c00225{bottom:395.200000pt;}
.y25_c00225{bottom:398.133333pt;}
.y24_c00225{bottom:416.933333pt;}
.y23_c00225{bottom:438.400000pt;}
.y54_c00225{bottom:444.533333pt;}
.y22_c00225{bottom:460.800000pt;}
.y53_c00225{bottom:464.266667pt;}
.y21_c00225{bottom:477.200000pt;}
.y52_c00225{bottom:484.133333pt;}
.y20_c00225{bottom:496.666667pt;}
.y51_c00225{bottom:500.400000pt;}
.y1f_c00225{bottom:516.133333pt;}
.y50_c00225{bottom:516.400000pt;}
.y1e_c00225{bottom:532.266667pt;}
.y4f_c00225{bottom:532.400000pt;}
.y4e_c00225{bottom:548.133333pt;}
.y1d_c00225{bottom:548.266667pt;}
.y1c_c00225{bottom:564.000000pt;}
.y4d_c00225{bottom:564.133333pt;}
.y4c_c00225{bottom:579.866667pt;}
.y1b_c00225{bottom:580.000000pt;}
.y1a_c00225{bottom:596.000000pt;}
.y4b_c00225{bottom:596.133333pt;}
.y19_c00225{bottom:611.733333pt;}
.y4a_c00225{bottom:612.133333pt;}
.y18_c00225{bottom:627.466667pt;}
.y49_c00225{bottom:627.866667pt;}
.y17_c00225{bottom:643.600000pt;}
.y48_c00225{bottom:643.866667pt;}
.y16_c00225{bottom:659.866667pt;}
.y47_c00225{bottom:660.133333pt;}
.y46_c00225{bottom:675.466667pt;}
.y15_c00225{bottom:678.666667pt;}
.y45_c00225{bottom:691.466667pt;}
.y14_c00225{bottom:694.933333pt;}
.y44_c00225{bottom:707.200000pt;}
.y13_c00225{bottom:710.933333pt;}
.y43_c00225{bottom:723.200000pt;}
.y12_c00225{bottom:726.933333pt;}
.y11_c00225{bottom:742.666667pt;}
.y42_c00225{bottom:746.933333pt;}
.y10_c00225{bottom:758.666667pt;}
.y41_c00225{bottom:762.933333pt;}
.yf_c00225{bottom:774.400000pt;}
.y40_c00225{bottom:779.200000pt;}
.ye_c00225{bottom:790.400000pt;}
.y3f_c00225{bottom:799.066667pt;}
.yd_c00225{bottom:806.400000pt;}
.y3e_c00225{bottom:811.200000pt;}
.yc_c00225{bottom:822.133333pt;}
.y3d_c00225{bottom:826.933333pt;}
.yb_c00225{bottom:838.133333pt;}
.y3c_c00225{bottom:846.133333pt;}
.ya_c00225{bottom:856.266667pt;}
.y3b_c00225{bottom:862.400000pt;}
.y9_c00225{bottom:874.133333pt;}
.y3a_c00225{bottom:878.400000pt;}
.y8_c00225{bottom:889.866667pt;}
.y39_c00225{bottom:894.400000pt;}
.y7_c00225{bottom:909.066667pt;}
.y38_c00225{bottom:914.266667pt;}
.y6_c00225{bottom:925.333333pt;}
.y37_c00225{bottom:936.933333pt;}
.y5_c00225{bottom:941.333333pt;}
.y36_c00225{bottom:956.800000pt;}
.y4_c00225{bottom:957.066667pt;}
.y3_c00225{bottom:976.266667pt;}
.y35_c00225{bottom:976.666667pt;}
.y2_c00225{bottom:992.666667pt;}
.y34_c00225{bottom:993.600000pt;}
.y1_c00225{bottom:1016.666667pt;}
.h7_c00225{height:42.666667pt;}
.h2_c00225{height:48.000000pt;}
.h6_c00225{height:53.333333pt;}
.h5_c00225{height:58.666667pt;}
.h4_c00225{height:64.000000pt;}
.h3_c00225{height:101.333333pt;}
.h1_c00225{height:1128.666667pt;}
.h0_c00225{height:1128.960043pt;}
.w1_c00225{width:856.000000pt;}
.w0_c00225{width:856.319987pt;}
.x0_c00225{left:0.000000pt;}
.x8d_c00225{left:145.866667pt;}
.x7b_c00225{left:150.666667pt;}
.x3_c00225{left:151.733333pt;}
.x5a_c00225{left:154.933333pt;}
.x1_c00225{left:156.133333pt;}
.x93_c00225{left:160.000000pt;}
.x97_c00225{left:165.600000pt;}
.x7d_c00225{left:166.800000pt;}
.x7a_c00225{left:167.733333pt;}
.x5b_c00225{left:168.666667pt;}
.x57_c00225{left:169.600000pt;}
.x42_c00225{left:170.666667pt;}
.x20_c00225{left:171.600000pt;}
.xa_c00225{left:172.533333pt;}
.x7e_c00225{left:184.266667pt;}
.x53_c00225{left:186.000000pt;}
.x76_c00225{left:187.200000pt;}
.xb_c00225{left:189.733333pt;}
.x60_c00225{left:190.800000pt;}
.x43_c00225{left:192.400000pt;}
.x21_c00225{left:193.333333pt;}
.x86_c00225{left:194.266667pt;}
.x73_c00225{left:195.466667pt;}
.x22_c00225{left:196.533333pt;}
.x4_c00225{left:197.466667pt;}
.x27_c00225{left:199.466667pt;}
.x90_c00225{left:201.866667pt;}
.x8b_c00225{left:204.933333pt;}
.x37_c00225{left:206.666667pt;}
.x77_c00225{left:207.600000pt;}
.x48_c00225{left:209.066667pt;}
.x2c_c00225{left:210.266667pt;}
.x13_c00225{left:211.200000pt;}
.x74_c00225{left:214.666667pt;}
.x19_c00225{left:218.666667pt;}
.x6c_c00225{left:219.866667pt;}
.x98_c00225{left:220.933333pt;}
.x61_c00225{left:222.800000pt;}
.x7f_c00225{left:224.266667pt;}
.x65_c00225{left:225.733333pt;}
.x6a_c00225{left:228.000000pt;}
.x49_c00225{left:229.200000pt;}
.x2d_c00225{left:230.133333pt;}
.xc_c00225{left:231.600000pt;}
.x87_c00225{left:232.666667pt;}
.x5_c00225{left:234.000000pt;}
.x38_c00225{left:235.733333pt;}
.x5c_c00225{left:237.733333pt;}
.x71_c00225{left:240.800000pt;}
.x28_c00225{left:242.000000pt;}
.x3e_c00225{left:244.133333pt;}
.x8e_c00225{left:245.733333pt;}
.x88_c00225{left:248.666667pt;}
.x14_c00225{left:252.800000pt;}
.x8c_c00225{left:253.866667pt;}
.x83_c00225{left:255.600000pt;}
.x23_c00225{left:256.666667pt;}
.x1a_c00225{left:258.400000pt;}
.x4a_c00225{left:261.200000pt;}
.x3b_c00225{left:263.333333pt;}
.x72_c00225{left:265.466667pt;}
.x91_c00225{left:267.200000pt;}
.x80_c00225{left:268.133333pt;}
.x34_c00225{left:270.133333pt;}
.x6d_c00225{left:271.333333pt;}
.x3f_c00225{left:273.200000pt;}
.x44_c00225{left:275.333333pt;}
.x66_c00225{left:276.933333pt;}
.x8a_c00225{left:279.200000pt;}
.x54_c00225{left:283.333333pt;}
.x4d_c00225{left:284.933333pt;}
.x8f_c00225{left:287.333333pt;}
.xd_c00225{left:288.533333pt;}
.x6e_c00225{left:291.866667pt;}
.x1b_c00225{left:293.600000pt;}
.x2e_c00225{left:294.533333pt;}
.x51_c00225{left:295.866667pt;}
.x45_c00225{left:296.800000pt;}
.x81_c00225{left:298.800000pt;}
.x6_c00225{left:303.066667pt;}
.x15_c00225{left:305.600000pt;}
.x4b_c00225{left:307.200000pt;}
.x2f_c00225{left:311.200000pt;}
.x92_c00225{left:313.333333pt;}
.x62_c00225{left:314.266667pt;}
.x84_c00225{left:315.733333pt;}
.x56_c00225{left:318.266667pt;}
.x40_c00225{left:321.466667pt;}
.x30_c00225{left:323.733333pt;}
.x29_c00225{left:325.466667pt;}
.x16_c00225{left:326.666667pt;}
.x75_c00225{left:327.733333pt;}
.x7_c00225{left:330.266667pt;}
.xe_c00225{left:331.733333pt;}
.x24_c00225{left:334.133333pt;}
.x94_c00225{left:335.066667pt;}
.x1c_c00225{left:336.800000pt;}
.x3c_c00225{left:339.200000pt;}
.x5d_c00225{left:340.800000pt;}
.x35_c00225{left:344.000000pt;}
.x78_c00225{left:344.933333pt;}
.x39_c00225{left:345.866667pt;}
.xf_c00225{left:348.000000pt;}
.x58_c00225{left:349.333333pt;}
.x96_c00225{left:357.600000pt;}
.x41_c00225{left:358.533333pt;}
.x6f_c00225{left:359.466667pt;}
.x17_c00225{left:361.200000pt;}
.x31_c00225{left:363.066667pt;}
.x1d_c00225{left:364.266667pt;}
.x2a_c00225{left:368.400000pt;}
.x2_c00225{left:370.266667pt;}
.x4e_c00225{left:372.666667pt;}
.x89_c00225{left:373.733333pt;}
.x63_c00225{left:375.733333pt;}
.x2b_c00225{left:378.000000pt;}
.x67_c00225{left:379.733333pt;}
.x32_c00225{left:381.333333pt;}
.x10_c00225{left:383.866667pt;}
.x46_c00225{left:385.733333pt;}
.x4f_c00225{left:390.266667pt;}
.x8_c00225{left:391.733333pt;}
.x64_c00225{left:392.666667pt;}
.x68_c00225{left:393.866667pt;}
.x11_c00225{left:395.333333pt;}
.x1e_c00225{left:396.266667pt;}
.x6b_c00225{left:397.200000pt;}
.x82_c00225{left:398.933333pt;}
.x18_c00225{left:403.066667pt;}
.x50_c00225{left:404.000000pt;}
.x7c_c00225{left:405.600000pt;}
.x33_c00225{left:408.533333pt;}
.x52_c00225{left:409.600000pt;}
.x69_c00225{left:411.733333pt;}
.x36_c00225{left:413.333333pt;}
.x70_c00225{left:417.333333pt;}
.x95_c00225{left:418.533333pt;}
.x25_c00225{left:420.266667pt;}
.x85_c00225{left:422.000000pt;}
.x55_c00225{left:424.800000pt;}
.x4c_c00225{left:426.266667pt;}
.x5e_c00225{left:427.200000pt;}
.x3d_c00225{left:428.133333pt;}
.x1f_c00225{left:429.866667pt;}
.x26_c00225{left:431.733333pt;}
.x79_c00225{left:433.600000pt;}
.x3a_c00225{left:435.733333pt;}
.x5f_c00225{left:436.800000pt;}
.x9_c00225{left:439.066667pt;}
.x12_c00225{left:440.400000pt;}
.x59_c00225{left:443.066667pt;}
.x47_c00225{left:448.133333pt;}
.x146_c00225{left:465.866667pt;}
.x13d_c00225{left:467.200000pt;}
.x12c_c00225{left:468.133333pt;}
.x11c_c00225{left:469.066667pt;}
.xda_c00225{left:470.400000pt;}
.xbf_c00225{left:472.000000pt;}
.xa3_c00225{left:473.333333pt;}
.xa9_c00225{left:474.266667pt;}
.x13f_c00225{left:479.733333pt;}
.x135_c00225{left:480.666667pt;}
.x11d_c00225{left:481.866667pt;}
.x112_c00225{left:484.800000pt;}
.xc7_c00225{left:485.733333pt;}
.xd2_c00225{left:486.933333pt;}
.xbb_c00225{left:488.400000pt;}
.x99_c00225{left:489.333333pt;}
.x147_c00225{left:497.600000pt;}
.x116_c00225{left:500.800000pt;}
.x122_c00225{left:502.000000pt;}
.x11e_c00225{left:504.000000pt;}
.xb0_c00225{left:504.933333pt;}
.x11a_c00225{left:506.133333pt;}
.x139_c00225{left:507.333333pt;}
.x10b_c00225{left:508.400000pt;}
.xaa_c00225{left:510.800000pt;}
.xc0_c00225{left:513.600000pt;}
.xb5_c00225{left:514.933333pt;}
.xf1_c00225{left:516.000000pt;}
.x128_c00225{left:517.200000pt;}
.x140_c00225{left:518.400000pt;}
.xca_c00225{left:519.466667pt;}
.xe8_c00225{left:523.733333pt;}
.xfd_c00225{left:524.800000pt;}
.xdb_c00225{left:526.133333pt;}
.xbe_c00225{left:527.333333pt;}
.xa4_c00225{left:528.666667pt;}
.x13a_c00225{left:529.733333pt;}
.xcb_c00225{left:530.666667pt;}
.xec_c00225{left:532.133333pt;}
.xa5_c00225{left:534.666667pt;}
.xb6_c00225{left:536.666667pt;}
.x10e_c00225{left:537.600000pt;}
.xd8_c00225{left:538.533333pt;}
.xf9_c00225{left:540.400000pt;}
.x13e_c00225{left:541.466667pt;}
.x9a_c00225{left:543.066667pt;}
.xab_c00225{left:544.400000pt;}
.x108_c00225{left:548.133333pt;}
.xe2_c00225{left:549.066667pt;}
.xc8_c00225{left:551.333333pt;}
.x11b_c00225{left:552.533333pt;}
.xd3_c00225{left:553.466667pt;}
.x131_c00225{left:554.533333pt;}
.x103_c00225{left:555.466667pt;}
.xa6_c00225{left:556.800000pt;}
.x12d_c00225{left:558.266667pt;}
.x9b_c00225{left:560.666667pt;}
.xcc_c00225{left:562.000000pt;}
.xbc_c00225{left:563.333333pt;}
.x105_c00225{left:565.600000pt;}
.x117_c00225{left:566.666667pt;}
.x12a_c00225{left:568.266667pt;}
.x10f_c00225{left:569.333333pt;}
.x113_c00225{left:570.800000pt;}
.x123_c00225{left:571.733333pt;}
.x12e_c00225{left:575.866667pt;}
.xc1_c00225{left:576.933333pt;}
.xed_c00225{left:578.266667pt;}
.x10c_c00225{left:579.200000pt;}
.x11f_c00225{left:580.133333pt;}
.xdc_c00225{left:581.200000pt;}
.xe3_c00225{left:582.933333pt;}
.x118_c00225{left:584.266667pt;}
.xa7_c00225{left:585.333333pt;}
.xcd_c00225{left:587.333333pt;}
.xfe_c00225{left:590.133333pt;}
.x9c_c00225{left:592.400000pt;}
.xd9_c00225{left:593.333333pt;}
.xee_c00225{left:594.933333pt;}
.xe9_c00225{left:598.933333pt;}
.x9d_c00225{left:600.400000pt;}
.xa8_c00225{left:604.266667pt;}
.xdd_c00225{left:605.466667pt;}
.xf2_c00225{left:606.800000pt;}
.xff_c00225{left:608.000000pt;}
.xac_c00225{left:610.666667pt;}
.xb7_c00225{left:612.533333pt;}
.xfb_c00225{left:614.133333pt;}
.xc2_c00225{left:615.333333pt;}
.x136_c00225{left:616.666667pt;}
.x124_c00225{left:618.400000pt;}
.xce_c00225{left:620.000000pt;}
.x132_c00225{left:622.666667pt;}
.xb1_c00225{left:625.333333pt;}
.xf3_c00225{left:626.266667pt;}
.x106_c00225{left:627.333333pt;}
.x120_c00225{left:628.800000pt;}
.xfa_c00225{left:630.000000pt;}
.x143_c00225{left:630.933333pt;}
.xc3_c00225{left:635.866667pt;}
.xef_c00225{left:637.866667pt;}
.xde_c00225{left:639.066667pt;}
.xd4_c00225{left:640.133333pt;}
.x125_c00225{left:641.066667pt;}
.x144_c00225{left:642.800000pt;}
.xbd_c00225{left:644.000000pt;}
.x13b_c00225{left:644.933333pt;}
.x9e_c00225{left:646.133333pt;}
.x119_c00225{left:648.533333pt;}
.xea_c00225{left:649.466667pt;}
.x141_c00225{left:650.533333pt;}
.x126_c00225{left:652.266667pt;}
.x109_c00225{left:654.000000pt;}
.x110_c00225{left:655.066667pt;}
.x13c_c00225{left:656.666667pt;}
.xf4_c00225{left:659.866667pt;}
.xb8_c00225{left:660.800000pt;}
.xcf_c00225{left:663.466667pt;}
.x9f_c00225{left:664.400000pt;}
.x137_c00225{left:665.333333pt;}
.xad_c00225{left:668.000000pt;}
.x121_c00225{left:669.066667pt;}
.x114_c00225{left:670.400000pt;}
.x100_c00225{left:674.133333pt;}
.xdf_c00225{left:675.333333pt;}
.xae_c00225{left:677.600000pt;}
.xc4_c00225{left:679.066667pt;}
.xb2_c00225{left:681.066667pt;}
.x129_c00225{left:682.000000pt;}
.x104_c00225{left:683.466667pt;}
.x115_c00225{left:686.133333pt;}
.xe4_c00225{left:687.333333pt;}
.x101_c00225{left:688.266667pt;}
.xb9_c00225{left:692.533333pt;}
.xb3_c00225{left:696.400000pt;}
.x133_c00225{left:697.600000pt;}
.xf5_c00225{left:699.200000pt;}
.xa0_c00225{left:704.666667pt;}
.xd5_c00225{left:706.400000pt;}
.xd0_c00225{left:708.266667pt;}
.xe0_c00225{left:709.200000pt;}
.xf6_c00225{left:711.066667pt;}
.xa1_c00225{left:712.933333pt;}
.x12f_c00225{left:715.466667pt;}
.x134_c00225{left:716.800000pt;}
.xe5_c00225{left:718.400000pt;}
.x102_c00225{left:719.600000pt;}
.x142_c00225{left:720.666667pt;}
.xaf_c00225{left:721.733333pt;}
.x111_c00225{left:723.200000pt;}
.xfc_c00225{left:724.800000pt;}
.x10d_c00225{left:726.133333pt;}
.xc5_c00225{left:728.000000pt;}
.xeb_c00225{left:729.200000pt;}
.xc9_c00225{left:731.600000pt;}
.x107_c00225{left:734.266667pt;}
.xe6_c00225{left:737.866667pt;}
.xba_c00225{left:738.933333pt;}
.xf7_c00225{left:740.133333pt;}
.xa2_c00225{left:742.400000pt;}
.xd6_c00225{left:743.866667pt;}
.xf0_c00225{left:745.333333pt;}
.x138_c00225{left:746.400000pt;}
.x127_c00225{left:750.666667pt;}
.xd1_c00225{left:752.800000pt;}
.xb4_c00225{left:754.000000pt;}
.xe7_c00225{left:755.200000pt;}
.x145_c00225{left:756.133333pt;}
.x10a_c00225{left:758.000000pt;}
.x12b_c00225{left:759.066667pt;}
.xc6_c00225{left:760.666667pt;}
.xd7_c00225{left:762.133333pt;}
.x130_c00225{left:763.866667pt;}
.xf8_c00225{left:765.066667pt;}
.xe1_c00225{left:771.866667pt;}
}





/* 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_c00226 {
    display:none;
  }
  .loading-indicator_c00226.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00226 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_c00226 { 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_c00226" -> "#page-container .classname_c00226")
 */
.pf_c00226 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00226 { /* 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_c00226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00226 { /* 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_c00226 { /* 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_c00226 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00226 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00226 {overflow:visible;}
  }
}
.c_c00226 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00226 { /* 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_c00226:after { /* webkit #35443 */
  content: '';
}
.t_c00226:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00226 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 */
}
.__c00226 { /* 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_c00226 { /* info for Javascript */
  display:none;
}
.l_c00226 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00226 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00226 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00226: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_c00226 {
    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_c00226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00226.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_c00226 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00226;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.000000;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;}
.mfa_c00226{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m78_c00226{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.me9_c00226{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00226{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00226{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m72_c00226{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mec_c00226{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m71_c00226{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00226{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m20_c00226{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m32_c00226{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m89_c00226{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m5_c00226{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00226{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00226{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00226{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00226{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00226{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00226{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.maf_c00226{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m95_c00226{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00226{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m58_c00226{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m99_c00226{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00226{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00226{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m51_c00226{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00226{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mac_c00226{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00226{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.mc_c00226{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m31_c00226{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me3_c00226{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00226{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m13_c00226{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md0_c00226{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00226{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m90_c00226{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me_c00226{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m83_c00226{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m57_c00226{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mba_c00226{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m33_c00226{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m91_c00226{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.md2_c00226{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m59_c00226{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00226{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.md3_c00226{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m37_c00226{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00226{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m6_c00226{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m42_c00226{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00226{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00226{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md6_c00226{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m39_c00226{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00226{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me7_c00226{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00226{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00226{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00226{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m97_c00226{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00226{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m94_c00226{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00226{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m76_c00226{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m54_c00226{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00226{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.med_c00226{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m61_c00226{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00226{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb_c00226{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00226{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00226{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m17_c00226{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m46_c00226{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m35_c00226{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00226{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00226{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00226{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me6_c00226{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me5_c00226{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00226{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00226{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m38_c00226{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00226{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00226{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m81_c00226{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00226{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m82_c00226{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00226{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00226{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m62_c00226{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m92_c00226{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m30_c00226{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m36_c00226{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m60_c00226{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00226{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00226{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me8_c00226{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m55_c00226{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m64_c00226{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m84_c00226{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m50_c00226{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md1_c00226{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m56_c00226{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00226{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m69_c00226{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m28_c00226{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00226{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00226{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00226{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mca_c00226{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m80_c00226{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00226{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00226{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m24_c00226{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md4_c00226{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m45_c00226{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00226{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m53_c00226{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m44_c00226{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00226{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m26_c00226{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00226{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m29_c00226{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00226{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00226{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m16_c00226{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m98_c00226{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m74_c00226{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m43_c00226{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00226{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md5_c00226{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m34_c00226{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00226{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00226{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00226{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m41_c00226{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00226{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00226{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00226{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.meb_c00226{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00226{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md9_c00226{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m65_c00226{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m14_c00226{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m79_c00226{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00226{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mae_c00226{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md7_c00226{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00226{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mda_c00226{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m52_c00226{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00226{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4_c00226{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m18_c00226{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00226{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00226{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m11_c00226{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00226{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m49_c00226{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00226{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00226{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00226{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.md_c00226{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m22_c00226{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00226{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00226{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m23_c00226{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m12_c00226{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mab_c00226{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00226{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m40_c00226{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m70_c00226{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00226{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00226{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m88_c00226{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m21_c00226{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m77_c00226{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m68_c00226{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00226{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mee_c00226{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10_c00226{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00226{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00226{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00226{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.me4_c00226{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m27_c00226{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00226{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00226{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m87_c00226{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00226{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m47_c00226{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m63_c00226{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m25_c00226{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00226{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m48_c00226{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00226{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mad_c00226{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m96_c00226{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00226{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mce_c00226{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me1_c00226{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mea_c00226{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m66_c00226{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m85_c00226{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00226{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.me0_c00226{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00226{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00226{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00226{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00226{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.me2_c00226{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00226{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00226{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00226{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00226{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m75_c00226{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m93_c00226{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.md8_c00226{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m73_c00226{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.maa_c00226{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00226{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00226{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00226{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00226{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mf_c00226{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mde_c00226{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m67_c00226{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m8_c00226{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m86_c00226{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00226{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00226{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00226{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00226{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00226{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m2_c00226{transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00226{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m9_c00226{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.mef_c00226{transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00226{transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00226{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.ma_c00226{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00226{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.m0_c00226{transform:matrix(0.473000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473000,0.000000,0.000000,0.250000,0,0);}
.m15_c00226{transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00226{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m19_c00226{transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00226{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.v2_c00226{vertical-align:-1.200000px;}
.v0_c00226{vertical-align:0.000000px;}
.v1_c00226{vertical-align:7.200000px;}
.ls2_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:708.639344px;}
.ls1_c00226{letter-spacing:775.396947px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{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__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00226{word-spacing:-8.750000px;}
.ws5_c00226{word-spacing:-0.722679px;}
.ws8_c00226{word-spacing:-0.666667px;}
.wsb_c00226{word-spacing:0.000000px;}
.ws4_c00226{word-spacing:4.285714px;}
.ws9_c00226{word-spacing:5.333333px;}
.ws7_c00226{word-spacing:11.417062px;}
.ws1_c00226{word-spacing:11.515152px;}
.ws6_c00226{word-spacing:13.324022px;}
.ws0_c00226{word-spacing:15.630728px;}
.ws2_c00226{word-spacing:20.166667px;}
.wsa_c00226{word-spacing:2772.000000px;}
.fc0_c00226{color:transparent;}
.fs3_c00226{font-size:30.000000px;}
.fs4_c00226{font-size:42.000000px;}
.fs1_c00226{font-size:60.000000px;}
.fs2_c00226{font-size:66.000000px;}
.fs5_c00226{font-size:72.000000px;}
.fs0_c00226{font-size:84.000000px;}
.fs6_c00226{font-size:96.000000px;}
.y0_c00226{bottom:0.000000px;}
.y66_c00226{bottom:121.650000px;}
.y65_c00226{bottom:173.850000px;}
.y64_c00226{bottom:201.900000px;}
.y63_c00226{bottom:204.450000px;}
.y62_c00226{bottom:219.000000px;}
.y61_c00226{bottom:233.700000px;}
.y60_c00226{bottom:263.550000px;}
.y31_c00226{bottom:279.750000px;}
.y5f_c00226{bottom:285.450000px;}
.y30_c00226{bottom:297.750000px;}
.y5e_c00226{bottom:303.450000px;}
.y2f_c00226{bottom:315.300000px;}
.y5d_c00226{bottom:321.750000px;}
.y2e_c00226{bottom:337.650000px;}
.y5c_c00226{bottom:339.450000px;}
.y2d_c00226{bottom:355.650000px;}
.y5b_c00226{bottom:357.150000px;}
.y2c_c00226{bottom:373.650000px;}
.y5a_c00226{bottom:378.450000px;}
.y2b_c00226{bottom:395.550000px;}
.y59_c00226{bottom:396.750000px;}
.y2a_c00226{bottom:413.550000px;}
.y58_c00226{bottom:414.750000px;}
.y29_c00226{bottom:431.250000px;}
.y57_c00226{bottom:432.450000px;}
.y56_c00226{bottom:450.150000px;}
.y28_c00226{bottom:453.150000px;}
.y55_c00226{bottom:468.150000px;}
.y27_c00226{bottom:475.500000px;}
.y25_c00226{bottom:483.750000px;}
.y26_c00226{bottom:484.800000px;}
.y54_c00226{bottom:485.850000px;}
.y24_c00226{bottom:493.500000px;}
.y53_c00226{bottom:503.550000px;}
.y23_c00226{bottom:515.100000px;}
.y52_c00226{bottom:521.550000px;}
.y22_c00226{bottom:533.100000px;}
.y51_c00226{bottom:539.550000px;}
.y21_c00226{bottom:555.150000px;}
.y50_c00226{bottom:557.550000px;}
.y4f_c00226{bottom:575.250000px;}
.y20_c00226{bottom:577.200000px;}
.y4e_c00226{bottom:593.250000px;}
.y1f_c00226{bottom:595.500000px;}
.y4d_c00226{bottom:613.800000px;}
.y1e_c00226{bottom:617.400000px;}
.y4c_c00226{bottom:628.800000px;}
.y1d_c00226{bottom:639.750000px;}
.y4b_c00226{bottom:646.500000px;}
.y1c_c00226{bottom:662.100000px;}
.y4a_c00226{bottom:664.500000px;}
.y1b_c00226{bottom:680.100000px;}
.y49_c00226{bottom:681.900000px;}
.y1a_c00226{bottom:697.500000px;}
.y48_c00226{bottom:702.450000px;}
.y19_c00226{bottom:715.500000px;}
.y47_c00226{bottom:717.150000px;}
.y46_c00226{bottom:731.100000px;}
.y18_c00226{bottom:733.500000px;}
.y17_c00226{bottom:751.200000px;}
.y45_c00226{bottom:751.650000px;}
.y16_c00226{bottom:769.200000px;}
.y44_c00226{bottom:769.350000px;}
.y15_c00226{bottom:786.900000px;}
.y43_c00226{bottom:787.350000px;}
.y14_c00226{bottom:804.600000px;}
.y42_c00226{bottom:805.350000px;}
.y13_c00226{bottom:822.300000px;}
.y41_c00226{bottom:827.250000px;}
.y12_c00226{bottom:840.300000px;}
.y40_c00226{bottom:844.950000px;}
.y11_c00226{bottom:858.300000px;}
.y3f_c00226{bottom:863.250000px;}
.y10_c00226{bottom:879.750000px;}
.y3e_c00226{bottom:880.500000px;}
.y3d_c00226{bottom:899.550000px;}
.yf_c00226{bottom:902.100000px;}
.y3c_c00226{bottom:916.500000px;}
.ye_c00226{bottom:919.950000px;}
.y3b_c00226{bottom:938.100000px;}
.yd_c00226{bottom:942.600000px;}
.yc_c00226{bottom:951.600000px;}
.y3a_c00226{bottom:956.100000px;}
.yb_c00226{bottom:964.500000px;}
.ya_c00226{bottom:973.050000px;}
.y2_c00226{bottom:975.300000px;}
.y9_c00226{bottom:982.050000px;}
.y39_c00226{bottom:986.100000px;}
.y8_c00226{bottom:997.500000px;}
.y38_c00226{bottom:1004.400000px;}
.y7_c00226{bottom:1019.850000px;}
.y37_c00226{bottom:1022.100000px;}
.y36_c00226{bottom:1044.000000px;}
.y6_c00226{bottom:1049.400000px;}
.y5_c00226{bottom:1059.150000px;}
.y35_c00226{bottom:1062.000000px;}
.y34_c00226{bottom:1079.550000px;}
.y4_c00226{bottom:1080.750000px;}
.y33_c00226{bottom:1097.550000px;}
.y3_c00226{bottom:1114.950000px;}
.y32_c00226{bottom:1115.250000px;}
.y1_c00226{bottom:1143.300000px;}
.h5_c00226{height:30.000000px;}
.h6_c00226{height:42.000000px;}
.h3_c00226{height:60.000000px;}
.h4_c00226{height:66.000000px;}
.h7_c00226{height:72.000000px;}
.h8_c00226{height:73.200000px;}
.h2_c00226{height:84.000000px;}
.h9_c00226{height:96.000000px;}
.h1_c00226{height:1269.750000px;}
.h0_c00226{height:1270.080048px;}
.w1_c00226{width:963.000000px;}
.w0_c00226{width:963.359985px;}
.x0_c00226{left:0.000000px;}
.xb_c00226{left:98.700000px;}
.x3_c00226{left:99.750000px;}
.x75_c00226{left:101.550000px;}
.x116_c00226{left:102.900000px;}
.x1c_c00226{left:117.150000px;}
.x30_c00226{left:118.650000px;}
.x3d_c00226{left:120.600000px;}
.x10e_c00226{left:122.700000px;}
.x63_c00226{left:128.700000px;}
.x58_c00226{left:132.450000px;}
.x14_c00226{left:133.950000px;}
.x10_c00226{left:135.000000px;}
.xe_c00226{left:136.050000px;}
.x67_c00226{left:138.000000px;}
.x41_c00226{left:139.050000px;}
.x23_c00226{left:140.100000px;}
.x11a_c00226{left:142.200000px;}
.x117_c00226{left:147.900000px;}
.x1a_c00226{left:150.900000px;}
.x54_c00226{left:154.650000px;}
.x11b_c00226{left:156.300000px;}
.x36_c00226{left:157.950000px;}
.x47_c00226{left:161.700000px;}
.x3b_c00226{left:163.950000px;}
.x10f_c00226{left:166.950000px;}
.x24_c00226{left:168.900000px;}
.x3e_c00226{left:171.300000px;}
.x4_c00226{left:173.550000px;}
.x68_c00226{left:174.750000px;}
.x1b_c00226{left:177.600000px;}
.x31_c00226{left:179.100000px;}
.x4b_c00226{left:181.350000px;}
.x65_c00226{left:185.100000px;}
.xf_c00226{left:186.150000px;}
.x118_c00226{left:187.500000px;}
.x5a_c00226{left:188.700000px;}
.x11_c00226{left:190.500000px;}
.x25_c00226{left:192.300000px;}
.x59_c00226{left:193.350000px;}
.x32_c00226{left:195.300000px;}
.x4f_c00226{left:196.950000px;}
.x1e_c00226{left:198.750000px;}
.x127_c00226{left:199.800000px;}
.x12_c00226{left:201.000000px;}
.x16_c00226{left:208.200000px;}
.x76_c00226{left:209.250000px;}
.x9_c00226{left:210.300000px;}
.x15_c00226{left:212.100000px;}
.x42_c00226{left:214.050000px;}
.x13_c00226{left:215.700000px;}
.x71_c00226{left:216.750000px;}
.x2a_c00226{left:218.550000px;}
.x69_c00226{left:220.050000px;}
.x17_c00226{left:221.850000px;}
.x57_c00226{left:223.350000px;}
.x60_c00226{left:225.000000px;}
.xc_c00226{left:230.850000px;}
.x6b_c00226{left:232.950000px;}
.x5b_c00226{left:234.750000px;}
.x5_c00226{left:235.800000px;}
.x110_c00226{left:236.850000px;}
.x33_c00226{left:238.950000px;}
.x3f_c00226{left:241.200000px;}
.x26_c00226{left:243.000000px;}
.x55_c00226{left:244.350000px;}
.x48_c00226{left:245.550000px;}
.x37_c00226{left:247.650000px;}
.x4c_c00226{left:250.050000px;}
.x44_c00226{left:251.700000px;}
.x1f_c00226{left:254.550000px;}
.x6c_c00226{left:256.050000px;}
.xa_c00226{left:258.900000px;}
.x50_c00226{left:262.500000px;}
.x56_c00226{left:264.300000px;}
.x49_c00226{left:265.350000px;}
.x120_c00226{left:270.150000px;}
.x34_c00226{left:272.850000px;}
.x64_c00226{left:274.350000px;}
.x2b_c00226{left:276.150000px;}
.x27_c00226{left:279.300000px;}
.x121_c00226{left:281.250000px;}
.x1d_c00226{left:285.900000px;}
.x40_c00226{left:288.750000px;}
.x38_c00226{left:290.550000px;}
.x72_c00226{left:292.350000px;}
.x6_c00226{left:295.500000px;}
.x2c_c00226{left:299.250000px;}
.xd_c00226{left:300.750000px;}
.x7_c00226{left:304.200000px;}
.x4d_c00226{left:305.850000px;}
.x5c_c00226{left:307.800000px;}
.x43_c00226{left:309.150000px;}
.x6a_c00226{left:310.800000px;}
.x11c_c00226{left:313.650000px;}
.x111_c00226{left:315.300000px;}
.x45_c00226{left:318.600000px;}
.x79_c00226{left:320.100000px;}
.x112_c00226{left:322.500000px;}
.x20_c00226{left:324.750000px;}
.x39_c00226{left:326.250000px;}
.x28_c00226{left:330.000000px;}
.x6d_c00226{left:331.650000px;}
.x2d_c00226{left:333.150000px;}
.x7b_c00226{left:334.950000px;}
.x1_c00226{left:336.900000px;}
.x8_c00226{left:343.500000px;}
.x66_c00226{left:344.700000px;}
.x29_c00226{left:347.700000px;}
.x21_c00226{left:348.900000px;}
.x4a_c00226{left:352.050000px;}
.x52_c00226{left:353.850000px;}
.x3c_c00226{left:357.900000px;}
.x5d_c00226{left:361.050000px;}
.x51_c00226{left:363.150000px;}
.x6f_c00226{left:364.350000px;}
.x19_c00226{left:368.250000px;}
.x35_c00226{left:370.350000px;}
.x5e_c00226{left:372.600000px;}
.x61_c00226{left:373.950000px;}
.x7c_c00226{left:376.650000px;}
.x77_c00226{left:378.150000px;}
.x73_c00226{left:379.200000px;}
.x11d_c00226{left:382.050000px;}
.x3a_c00226{left:383.850000px;}
.x2e_c00226{left:386.100000px;}
.x6e_c00226{left:388.200000px;}
.x4e_c00226{left:390.000000px;}
.x62_c00226{left:399.750000px;}
.x74_c00226{left:400.800000px;}
.x122_c00226{left:401.850000px;}
.x22_c00226{left:402.900000px;}
.x18_c00226{left:405.000000px;}
.x7a_c00226{left:406.950000px;}
.x46_c00226{left:410.400000px;}
.x53_c00226{left:415.350000px;}
.x78_c00226{left:418.800000px;}
.x70_c00226{left:420.150000px;}
.x2f_c00226{left:421.350000px;}
.x5f_c00226{left:427.350000px;}
.x119_c00226{left:435.150000px;}
.x123_c00226{left:448.650000px;}
.x9e_c00226{left:456.450000px;}
.xde_c00226{left:457.950000px;}
.xab_c00226{left:459.000000px;}
.x113_c00226{left:460.800000px;}
.xee_c00226{left:466.500000px;}
.x7d_c00226{left:474.150000px;}
.xb5_c00226{left:475.350000px;}
.xeb_c00226{left:476.400000px;}
.xf8_c00226{left:477.450000px;}
.x114_c00226{left:479.100000px;}
.xd7_c00226{left:486.000000px;}
.x124_c00226{left:488.550000px;}
.xaf_c00226{left:494.700000px;}
.xe2_c00226{left:496.650000px;}
.x7e_c00226{left:498.600000px;}
.xcb_c00226{left:499.650000px;}
.xc6_c00226{left:501.450000px;}
.x89_c00226{left:505.800000px;}
.x90_c00226{left:507.750000px;}
.x103_c00226{left:509.400000px;}
.xf5_c00226{left:512.400000px;}
.xc4_c00226{left:514.050000px;}
.x99_c00226{left:515.850000px;}
.xb6_c00226{left:518.250000px;}
.xa2_c00226{left:520.200000px;}
.x7f_c00226{left:524.100000px;}
.x9f_c00226{left:525.600000px;}
.xbf_c00226{left:527.550000px;}
.xe3_c00226{left:528.750000px;}
.x91_c00226{left:530.100000px;}
.x80_c00226{left:532.800000px;}
.xef_c00226{left:533.850000px;}
.x10a_c00226{left:535.950000px;}
.xac_c00226{left:537.150000px;}
.xe4_c00226{left:538.500000px;}
.xdb_c00226{left:540.300000px;}
.x9a_c00226{left:541.350000px;}
.x8a_c00226{left:542.550000px;}
.xba_c00226{left:545.250000px;}
.xc0_c00226{left:547.050000px;}
.xfc_c00226{left:550.200000px;}
.xfd_c00226{left:553.200000px;}
.x81_c00226{left:554.700000px;}
.xe5_c00226{left:556.500000px;}
.xa6_c00226{left:557.850000px;}
.xa3_c00226{left:561.900000px;}
.x8b_c00226{left:565.950000px;}
.xd8_c00226{left:568.050000px;}
.xc7_c00226{left:569.100000px;}
.xbb_c00226{left:571.950000px;}
.x11e_c00226{left:574.350000px;}
.xa7_c00226{left:575.850000px;}
.xcd_c00226{left:577.350000px;}
.xfe_c00226{left:579.150000px;}
.x92_c00226{left:581.250000px;}
.x109_c00226{left:583.950000px;}
.xfa_c00226{left:585.300000px;}
.xb0_c00226{left:588.000000px;}
.xf0_c00226{left:590.400000px;}
.xdc_c00226{left:591.450000px;}
.x125_c00226{left:592.950000px;}
.xcc_c00226{left:594.000000px;}
.xa4_c00226{left:595.350000px;}
.xc5_c00226{left:598.650000px;}
.xd3_c00226{left:599.850000px;}
.xdd_c00226{left:604.350000px;}
.xc2_c00226{left:605.550000px;}
.xce_c00226{left:607.650000px;}
.x104_c00226{left:612.000000px;}
.x108_c00226{left:614.250000px;}
.x82_c00226{left:615.600000px;}
.xe6_c00226{left:617.400000px;}
.xb1_c00226{left:619.350000px;}
.xa8_c00226{left:622.200000px;}
.x10c_c00226{left:623.400000px;}
.x93_c00226{left:627.750000px;}
.xcf_c00226{left:629.550000px;}
.xf2_c00226{left:631.200000px;}
.xc1_c00226{left:632.700000px;}
.x11f_c00226{left:634.800000px;}
.xd4_c00226{left:636.150000px;}
.xf1_c00226{left:639.000000px;}
.x83_c00226{left:642.300000px;}
.x8c_c00226{left:645.450000px;}
.x100_c00226{left:646.650000px;}
.xe1_c00226{left:649.350000px;}
.x84_c00226{left:651.000000px;}
.xc3_c00226{left:652.050000px;}
.xe7_c00226{left:653.400000px;}
.xb7_c00226{left:655.350000px;}
.x94_c00226{left:657.600000px;}
.xa9_c00226{left:659.550000px;}
.xd9_c00226{left:661.350000px;}
.xdf_c00226{left:664.950000px;}
.xad_c00226{left:667.800000px;}
.x85_c00226{left:669.300000px;}
.xf6_c00226{left:671.100000px;}
.xc8_c00226{left:672.150000px;}
.x8d_c00226{left:673.950000px;}
.xd0_c00226{left:676.050000px;}
.xb2_c00226{left:678.000000px;}
.x95_c00226{left:679.500000px;}
.xda_c00226{left:681.900000px;}
.xe8_c00226{left:683.700000px;}
.x86_c00226{left:687.000000px;}
.xf3_c00226{left:688.500000px;}
.xaa_c00226{left:690.450000px;}
.xbc_c00226{left:691.800000px;}
.xec_c00226{left:694.800000px;}
.xa0_c00226{left:696.900000px;}
.x105_c00226{left:698.700000px;}
.xd5_c00226{left:701.250000px;}
.x101_c00226{left:704.550000px;}
.x9b_c00226{left:706.350000px;}
.xf9_c00226{left:710.700000px;}
.xbd_c00226{left:711.900000px;}
.x10d_c00226{left:714.150000px;}
.xc9_c00226{left:715.350000px;}
.xf4_c00226{left:718.650000px;}
.x10b_c00226{left:720.600000px;}
.xf7_c00226{left:722.250000px;}
.xb8_c00226{left:723.750000px;}
.xa5_c00226{left:725.250000px;}
.x9c_c00226{left:727.200000px;}
.xe9_c00226{left:729.450000px;}
.xd1_c00226{left:730.800000px;}
.x96_c00226{left:732.000000px;}
.x87_c00226{left:735.900000px;}
.xb3_c00226{left:737.100000px;}
.xae_c00226{left:738.750000px;}
.xd6_c00226{left:740.100000px;}
.xca_c00226{left:742.050000px;}
.x8e_c00226{left:743.100000px;}
.xff_c00226{left:746.850000px;}
.x97_c00226{left:748.950000px;}
.x115_c00226{left:750.600000px;}
.xd2_c00226{left:752.100000px;}
.xa1_c00226{left:754.800000px;}
.x102_c00226{left:756.750000px;}
.xe0_c00226{left:758.850000px;}
.x88_c00226{left:761.850000px;}
.xea_c00226{left:763.350000px;}
.x8f_c00226{left:764.700000px;}
.x2_c00226{left:766.350000px;}
.x107_c00226{left:767.550000px;}
.xed_c00226{left:768.600000px;}
.x126_c00226{left:770.100000px;}
.x98_c00226{left:771.300000px;}
.xbe_c00226{left:775.200000px;}
.x9d_c00226{left:777.300000px;}
.xfb_c00226{left:779.550000px;}
.x106_c00226{left:781.500000px;}
.xb4_c00226{left:788.550000px;}
.xb9_c00226{left:793.650000px;}
@media print{
.v2_c00226{vertical-align:-1.066667pt;}
.v0_c00226{vertical-align:0.000000pt;}
.v1_c00226{vertical-align:6.400000pt;}
.ls2_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:629.901639pt;}
.ls1_c00226{letter-spacing:689.241730pt;}
.ws3_c00226{word-spacing:-7.777778pt;}
.ws5_c00226{word-spacing:-0.642382pt;}
.ws8_c00226{word-spacing:-0.592593pt;}
.wsb_c00226{word-spacing:0.000000pt;}
.ws4_c00226{word-spacing:3.809524pt;}
.ws9_c00226{word-spacing:4.740741pt;}
.ws7_c00226{word-spacing:10.148499pt;}
.ws1_c00226{word-spacing:10.235690pt;}
.ws6_c00226{word-spacing:11.843575pt;}
.ws0_c00226{word-spacing:13.893980pt;}
.ws2_c00226{word-spacing:17.925926pt;}
.wsa_c00226{word-spacing:2464.000000pt;}
.fs3_c00226{font-size:26.666667pt;}
.fs4_c00226{font-size:37.333333pt;}
.fs1_c00226{font-size:53.333333pt;}
.fs2_c00226{font-size:58.666667pt;}
.fs5_c00226{font-size:64.000000pt;}
.fs0_c00226{font-size:74.666667pt;}
.fs6_c00226{font-size:85.333333pt;}
.y0_c00226{bottom:0.000000pt;}
.y66_c00226{bottom:108.133333pt;}
.y65_c00226{bottom:154.533333pt;}
.y64_c00226{bottom:179.466667pt;}
.y63_c00226{bottom:181.733333pt;}
.y62_c00226{bottom:194.666667pt;}
.y61_c00226{bottom:207.733333pt;}
.y60_c00226{bottom:234.266667pt;}
.y31_c00226{bottom:248.666667pt;}
.y5f_c00226{bottom:253.733333pt;}
.y30_c00226{bottom:264.666667pt;}
.y5e_c00226{bottom:269.733333pt;}
.y2f_c00226{bottom:280.266667pt;}
.y5d_c00226{bottom:286.000000pt;}
.y2e_c00226{bottom:300.133333pt;}
.y5c_c00226{bottom:301.733333pt;}
.y2d_c00226{bottom:316.133333pt;}
.y5b_c00226{bottom:317.466667pt;}
.y2c_c00226{bottom:332.133333pt;}
.y5a_c00226{bottom:336.400000pt;}
.y2b_c00226{bottom:351.600000pt;}
.y59_c00226{bottom:352.666667pt;}
.y2a_c00226{bottom:367.600000pt;}
.y58_c00226{bottom:368.666667pt;}
.y29_c00226{bottom:383.333333pt;}
.y57_c00226{bottom:384.400000pt;}
.y56_c00226{bottom:400.133333pt;}
.y28_c00226{bottom:402.800000pt;}
.y55_c00226{bottom:416.133333pt;}
.y27_c00226{bottom:422.666667pt;}
.y25_c00226{bottom:430.000000pt;}
.y26_c00226{bottom:430.933333pt;}
.y54_c00226{bottom:431.866667pt;}
.y24_c00226{bottom:438.666667pt;}
.y53_c00226{bottom:447.600000pt;}
.y23_c00226{bottom:457.866667pt;}
.y52_c00226{bottom:463.600000pt;}
.y22_c00226{bottom:473.866667pt;}
.y51_c00226{bottom:479.600000pt;}
.y21_c00226{bottom:493.466667pt;}
.y50_c00226{bottom:495.600000pt;}
.y4f_c00226{bottom:511.333333pt;}
.y20_c00226{bottom:513.066667pt;}
.y4e_c00226{bottom:527.333333pt;}
.y1f_c00226{bottom:529.333333pt;}
.y4d_c00226{bottom:545.600000pt;}
.y1e_c00226{bottom:548.800000pt;}
.y4c_c00226{bottom:558.933333pt;}
.y1d_c00226{bottom:568.666667pt;}
.y4b_c00226{bottom:574.666667pt;}
.y1c_c00226{bottom:588.533333pt;}
.y4a_c00226{bottom:590.666667pt;}
.y1b_c00226{bottom:604.533333pt;}
.y49_c00226{bottom:606.133333pt;}
.y1a_c00226{bottom:620.000000pt;}
.y48_c00226{bottom:624.400000pt;}
.y19_c00226{bottom:636.000000pt;}
.y47_c00226{bottom:637.466667pt;}
.y46_c00226{bottom:649.866667pt;}
.y18_c00226{bottom:652.000000pt;}
.y17_c00226{bottom:667.733333pt;}
.y45_c00226{bottom:668.133333pt;}
.y16_c00226{bottom:683.733333pt;}
.y44_c00226{bottom:683.866667pt;}
.y15_c00226{bottom:699.466667pt;}
.y43_c00226{bottom:699.866667pt;}
.y14_c00226{bottom:715.200000pt;}
.y42_c00226{bottom:715.866667pt;}
.y13_c00226{bottom:730.933333pt;}
.y41_c00226{bottom:735.333333pt;}
.y12_c00226{bottom:746.933333pt;}
.y40_c00226{bottom:751.066667pt;}
.y11_c00226{bottom:762.933333pt;}
.y3f_c00226{bottom:767.333333pt;}
.y10_c00226{bottom:782.000000pt;}
.y3e_c00226{bottom:782.666667pt;}
.y3d_c00226{bottom:799.600000pt;}
.yf_c00226{bottom:801.866667pt;}
.y3c_c00226{bottom:814.666667pt;}
.ye_c00226{bottom:817.733333pt;}
.y3b_c00226{bottom:833.866667pt;}
.yd_c00226{bottom:837.866667pt;}
.yc_c00226{bottom:845.866667pt;}
.y3a_c00226{bottom:849.866667pt;}
.yb_c00226{bottom:857.333333pt;}
.ya_c00226{bottom:864.933333pt;}
.y2_c00226{bottom:866.933333pt;}
.y9_c00226{bottom:872.933333pt;}
.y39_c00226{bottom:876.533333pt;}
.y8_c00226{bottom:886.666667pt;}
.y38_c00226{bottom:892.800000pt;}
.y7_c00226{bottom:906.533333pt;}
.y37_c00226{bottom:908.533333pt;}
.y36_c00226{bottom:928.000000pt;}
.y6_c00226{bottom:932.800000pt;}
.y5_c00226{bottom:941.466667pt;}
.y35_c00226{bottom:944.000000pt;}
.y34_c00226{bottom:959.600000pt;}
.y4_c00226{bottom:960.666667pt;}
.y33_c00226{bottom:975.600000pt;}
.y3_c00226{bottom:991.066667pt;}
.y32_c00226{bottom:991.333333pt;}
.y1_c00226{bottom:1016.266667pt;}
.h5_c00226{height:26.666667pt;}
.h6_c00226{height:37.333333pt;}
.h3_c00226{height:53.333333pt;}
.h4_c00226{height:58.666667pt;}
.h7_c00226{height:64.000000pt;}
.h8_c00226{height:65.066667pt;}
.h2_c00226{height:74.666667pt;}
.h9_c00226{height:85.333333pt;}
.h1_c00226{height:1128.666667pt;}
.h0_c00226{height:1128.960043pt;}
.w1_c00226{width:856.000000pt;}
.w0_c00226{width:856.319987pt;}
.x0_c00226{left:0.000000pt;}
.xb_c00226{left:87.733333pt;}
.x3_c00226{left:88.666667pt;}
.x75_c00226{left:90.266667pt;}
.x116_c00226{left:91.466667pt;}
.x1c_c00226{left:104.133333pt;}
.x30_c00226{left:105.466667pt;}
.x3d_c00226{left:107.200000pt;}
.x10e_c00226{left:109.066667pt;}
.x63_c00226{left:114.400000pt;}
.x58_c00226{left:117.733333pt;}
.x14_c00226{left:119.066667pt;}
.x10_c00226{left:120.000000pt;}
.xe_c00226{left:120.933333pt;}
.x67_c00226{left:122.666667pt;}
.x41_c00226{left:123.600000pt;}
.x23_c00226{left:124.533333pt;}
.x11a_c00226{left:126.400000pt;}
.x117_c00226{left:131.466667pt;}
.x1a_c00226{left:134.133333pt;}
.x54_c00226{left:137.466667pt;}
.x11b_c00226{left:138.933333pt;}
.x36_c00226{left:140.400000pt;}
.x47_c00226{left:143.733333pt;}
.x3b_c00226{left:145.733333pt;}
.x10f_c00226{left:148.400000pt;}
.x24_c00226{left:150.133333pt;}
.x3e_c00226{left:152.266667pt;}
.x4_c00226{left:154.266667pt;}
.x68_c00226{left:155.333333pt;}
.x1b_c00226{left:157.866667pt;}
.x31_c00226{left:159.200000pt;}
.x4b_c00226{left:161.200000pt;}
.x65_c00226{left:164.533333pt;}
.xf_c00226{left:165.466667pt;}
.x118_c00226{left:166.666667pt;}
.x5a_c00226{left:167.733333pt;}
.x11_c00226{left:169.333333pt;}
.x25_c00226{left:170.933333pt;}
.x59_c00226{left:171.866667pt;}
.x32_c00226{left:173.600000pt;}
.x4f_c00226{left:175.066667pt;}
.x1e_c00226{left:176.666667pt;}
.x127_c00226{left:177.600000pt;}
.x12_c00226{left:178.666667pt;}
.x16_c00226{left:185.066667pt;}
.x76_c00226{left:186.000000pt;}
.x9_c00226{left:186.933333pt;}
.x15_c00226{left:188.533333pt;}
.x42_c00226{left:190.266667pt;}
.x13_c00226{left:191.733333pt;}
.x71_c00226{left:192.666667pt;}
.x2a_c00226{left:194.266667pt;}
.x69_c00226{left:195.600000pt;}
.x17_c00226{left:197.200000pt;}
.x57_c00226{left:198.533333pt;}
.x60_c00226{left:200.000000pt;}
.xc_c00226{left:205.200000pt;}
.x6b_c00226{left:207.066667pt;}
.x5b_c00226{left:208.666667pt;}
.x5_c00226{left:209.600000pt;}
.x110_c00226{left:210.533333pt;}
.x33_c00226{left:212.400000pt;}
.x3f_c00226{left:214.400000pt;}
.x26_c00226{left:216.000000pt;}
.x55_c00226{left:217.200000pt;}
.x48_c00226{left:218.266667pt;}
.x37_c00226{left:220.133333pt;}
.x4c_c00226{left:222.266667pt;}
.x44_c00226{left:223.733333pt;}
.x1f_c00226{left:226.266667pt;}
.x6c_c00226{left:227.600000pt;}
.xa_c00226{left:230.133333pt;}
.x50_c00226{left:233.333333pt;}
.x56_c00226{left:234.933333pt;}
.x49_c00226{left:235.866667pt;}
.x120_c00226{left:240.133333pt;}
.x34_c00226{left:242.533333pt;}
.x64_c00226{left:243.866667pt;}
.x2b_c00226{left:245.466667pt;}
.x27_c00226{left:248.266667pt;}
.x121_c00226{left:250.000000pt;}
.x1d_c00226{left:254.133333pt;}
.x40_c00226{left:256.666667pt;}
.x38_c00226{left:258.266667pt;}
.x72_c00226{left:259.866667pt;}
.x6_c00226{left:262.666667pt;}
.x2c_c00226{left:266.000000pt;}
.xd_c00226{left:267.333333pt;}
.x7_c00226{left:270.400000pt;}
.x4d_c00226{left:271.866667pt;}
.x5c_c00226{left:273.600000pt;}
.x43_c00226{left:274.800000pt;}
.x6a_c00226{left:276.266667pt;}
.x11c_c00226{left:278.800000pt;}
.x111_c00226{left:280.266667pt;}
.x45_c00226{left:283.200000pt;}
.x79_c00226{left:284.533333pt;}
.x112_c00226{left:286.666667pt;}
.x20_c00226{left:288.666667pt;}
.x39_c00226{left:290.000000pt;}
.x28_c00226{left:293.333333pt;}
.x6d_c00226{left:294.800000pt;}
.x2d_c00226{left:296.133333pt;}
.x7b_c00226{left:297.733333pt;}
.x1_c00226{left:299.466667pt;}
.x8_c00226{left:305.333333pt;}
.x66_c00226{left:306.400000pt;}
.x29_c00226{left:309.066667pt;}
.x21_c00226{left:310.133333pt;}
.x4a_c00226{left:312.933333pt;}
.x52_c00226{left:314.533333pt;}
.x3c_c00226{left:318.133333pt;}
.x5d_c00226{left:320.933333pt;}
.x51_c00226{left:322.800000pt;}
.x6f_c00226{left:323.866667pt;}
.x19_c00226{left:327.333333pt;}
.x35_c00226{left:329.200000pt;}
.x5e_c00226{left:331.200000pt;}
.x61_c00226{left:332.400000pt;}
.x7c_c00226{left:334.800000pt;}
.x77_c00226{left:336.133333pt;}
.x73_c00226{left:337.066667pt;}
.x11d_c00226{left:339.600000pt;}
.x3a_c00226{left:341.200000pt;}
.x2e_c00226{left:343.200000pt;}
.x6e_c00226{left:345.066667pt;}
.x4e_c00226{left:346.666667pt;}
.x62_c00226{left:355.333333pt;}
.x74_c00226{left:356.266667pt;}
.x122_c00226{left:357.200000pt;}
.x22_c00226{left:358.133333pt;}
.x18_c00226{left:360.000000pt;}
.x7a_c00226{left:361.733333pt;}
.x46_c00226{left:364.800000pt;}
.x53_c00226{left:369.200000pt;}
.x78_c00226{left:372.266667pt;}
.x70_c00226{left:373.466667pt;}
.x2f_c00226{left:374.533333pt;}
.x5f_c00226{left:379.866667pt;}
.x119_c00226{left:386.800000pt;}
.x123_c00226{left:398.800000pt;}
.x9e_c00226{left:405.733333pt;}
.xde_c00226{left:407.066667pt;}
.xab_c00226{left:408.000000pt;}
.x113_c00226{left:409.600000pt;}
.xee_c00226{left:414.666667pt;}
.x7d_c00226{left:421.466667pt;}
.xb5_c00226{left:422.533333pt;}
.xeb_c00226{left:423.466667pt;}
.xf8_c00226{left:424.400000pt;}
.x114_c00226{left:425.866667pt;}
.xd7_c00226{left:432.000000pt;}
.x124_c00226{left:434.266667pt;}
.xaf_c00226{left:439.733333pt;}
.xe2_c00226{left:441.466667pt;}
.x7e_c00226{left:443.200000pt;}
.xcb_c00226{left:444.133333pt;}
.xc6_c00226{left:445.733333pt;}
.x89_c00226{left:449.600000pt;}
.x90_c00226{left:451.333333pt;}
.x103_c00226{left:452.800000pt;}
.xf5_c00226{left:455.466667pt;}
.xc4_c00226{left:456.933333pt;}
.x99_c00226{left:458.533333pt;}
.xb6_c00226{left:460.666667pt;}
.xa2_c00226{left:462.400000pt;}
.x7f_c00226{left:465.866667pt;}
.x9f_c00226{left:467.200000pt;}
.xbf_c00226{left:468.933333pt;}
.xe3_c00226{left:470.000000pt;}
.x91_c00226{left:471.200000pt;}
.x80_c00226{left:473.600000pt;}
.xef_c00226{left:474.533333pt;}
.x10a_c00226{left:476.400000pt;}
.xac_c00226{left:477.466667pt;}
.xe4_c00226{left:478.666667pt;}
.xdb_c00226{left:480.266667pt;}
.x9a_c00226{left:481.200000pt;}
.x8a_c00226{left:482.266667pt;}
.xba_c00226{left:484.666667pt;}
.xc0_c00226{left:486.266667pt;}
.xfc_c00226{left:489.066667pt;}
.xfd_c00226{left:491.733333pt;}
.x81_c00226{left:493.066667pt;}
.xe5_c00226{left:494.666667pt;}
.xa6_c00226{left:495.866667pt;}
.xa3_c00226{left:499.466667pt;}
.x8b_c00226{left:503.066667pt;}
.xd8_c00226{left:504.933333pt;}
.xc7_c00226{left:505.866667pt;}
.xbb_c00226{left:508.400000pt;}
.x11e_c00226{left:510.533333pt;}
.xa7_c00226{left:511.866667pt;}
.xcd_c00226{left:513.200000pt;}
.xfe_c00226{left:514.800000pt;}
.x92_c00226{left:516.666667pt;}
.x109_c00226{left:519.066667pt;}
.xfa_c00226{left:520.266667pt;}
.xb0_c00226{left:522.666667pt;}
.xf0_c00226{left:524.800000pt;}
.xdc_c00226{left:525.733333pt;}
.x125_c00226{left:527.066667pt;}
.xcc_c00226{left:528.000000pt;}
.xa4_c00226{left:529.200000pt;}
.xc5_c00226{left:532.133333pt;}
.xd3_c00226{left:533.200000pt;}
.xdd_c00226{left:537.200000pt;}
.xc2_c00226{left:538.266667pt;}
.xce_c00226{left:540.133333pt;}
.x104_c00226{left:544.000000pt;}
.x108_c00226{left:546.000000pt;}
.x82_c00226{left:547.200000pt;}
.xe6_c00226{left:548.800000pt;}
.xb1_c00226{left:550.533333pt;}
.xa8_c00226{left:553.066667pt;}
.x10c_c00226{left:554.133333pt;}
.x93_c00226{left:558.000000pt;}
.xcf_c00226{left:559.600000pt;}
.xf2_c00226{left:561.066667pt;}
.xc1_c00226{left:562.400000pt;}
.x11f_c00226{left:564.266667pt;}
.xd4_c00226{left:565.466667pt;}
.xf1_c00226{left:568.000000pt;}
.x83_c00226{left:570.933333pt;}
.x8c_c00226{left:573.733333pt;}
.x100_c00226{left:574.800000pt;}
.xe1_c00226{left:577.200000pt;}
.x84_c00226{left:578.666667pt;}
.xc3_c00226{left:579.600000pt;}
.xe7_c00226{left:580.800000pt;}
.xb7_c00226{left:582.533333pt;}
.x94_c00226{left:584.533333pt;}
.xa9_c00226{left:586.266667pt;}
.xd9_c00226{left:587.866667pt;}
.xdf_c00226{left:591.066667pt;}
.xad_c00226{left:593.600000pt;}
.x85_c00226{left:594.933333pt;}
.xf6_c00226{left:596.533333pt;}
.xc8_c00226{left:597.466667pt;}
.x8d_c00226{left:599.066667pt;}
.xd0_c00226{left:600.933333pt;}
.xb2_c00226{left:602.666667pt;}
.x95_c00226{left:604.000000pt;}
.xda_c00226{left:606.133333pt;}
.xe8_c00226{left:607.733333pt;}
.x86_c00226{left:610.666667pt;}
.xf3_c00226{left:612.000000pt;}
.xaa_c00226{left:613.733333pt;}
.xbc_c00226{left:614.933333pt;}
.xec_c00226{left:617.600000pt;}
.xa0_c00226{left:619.466667pt;}
.x105_c00226{left:621.066667pt;}
.xd5_c00226{left:623.333333pt;}
.x101_c00226{left:626.266667pt;}
.x9b_c00226{left:627.866667pt;}
.xf9_c00226{left:631.733333pt;}
.xbd_c00226{left:632.800000pt;}
.x10d_c00226{left:634.800000pt;}
.xc9_c00226{left:635.866667pt;}
.xf4_c00226{left:638.800000pt;}
.x10b_c00226{left:640.533333pt;}
.xf7_c00226{left:642.000000pt;}
.xb8_c00226{left:643.333333pt;}
.xa5_c00226{left:644.666667pt;}
.x9c_c00226{left:646.400000pt;}
.xe9_c00226{left:648.400000pt;}
.xd1_c00226{left:649.600000pt;}
.x96_c00226{left:650.666667pt;}
.x87_c00226{left:654.133333pt;}
.xb3_c00226{left:655.200000pt;}
.xae_c00226{left:656.666667pt;}
.xd6_c00226{left:657.866667pt;}
.xca_c00226{left:659.600000pt;}
.x8e_c00226{left:660.533333pt;}
.xff_c00226{left:663.866667pt;}
.x97_c00226{left:665.733333pt;}
.x115_c00226{left:667.200000pt;}
.xd2_c00226{left:668.533333pt;}
.xa1_c00226{left:670.933333pt;}
.x102_c00226{left:672.666667pt;}
.xe0_c00226{left:674.533333pt;}
.x88_c00226{left:677.200000pt;}
.xea_c00226{left:678.533333pt;}
.x8f_c00226{left:679.733333pt;}
.x2_c00226{left:681.200000pt;}
.x107_c00226{left:682.266667pt;}
.xed_c00226{left:683.200000pt;}
.x126_c00226{left:684.533333pt;}
.x98_c00226{left:685.600000pt;}
.xbe_c00226{left:689.066667pt;}
.x9d_c00226{left:690.933333pt;}
.xfb_c00226{left:692.933333pt;}
.x106_c00226{left:694.666667pt;}
.xb4_c00226{left:700.933333pt;}
.xb9_c00226{left:705.466667pt;}
}





/* 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_c00227 {
    display:none;
  }
  .loading-indicator_c00227.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00227 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_c00227 { 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_c00227" -> "#page-container .classname_c00227")
 */
.pf_c00227 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00227 { /* 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_c00227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00227 { /* 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_c00227 { /* 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_c00227 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00227 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00227 {overflow:visible;}
  }
}
.c_c00227 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00227 { /* 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_c00227:after { /* webkit #35443 */
  content: '';
}
.t_c00227:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00227 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 */
}
.__c00227 { /* 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_c00227 { /* info for Javascript */
  display:none;
}
.l_c00227 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00227 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00227 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00227: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_c00227 {
    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_c00227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00227.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_c00227 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00227;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.000000;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;}
.mba_c00227{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m115_c00227{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00227{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m39_c00227{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00227{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00227{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00227{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.me0_c00227{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m79_c00227{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m84_c00227{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m42_c00227{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00227{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m85_c00227{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00227{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m57_c00227{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00227{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00227{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m70_c00227{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00227{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md2_c00227{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00227{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m5_c00227{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m80_c00227{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m19_c00227{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me1_c00227{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00227{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00227{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m114_c00227{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00227{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00227{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m87_c00227{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m101_c00227{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m54_c00227{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m102_c00227{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00227{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md7_c00227{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00227{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00227{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00227{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mb_c00227{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00227{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8_c00227{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.mca_c00227{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m86_c00227{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m59_c00227{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m27_c00227{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m99_c00227{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m56_c00227{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m13_c00227{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00227{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00227{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00227{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00227{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m26_c00227{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m43_c00227{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.maa_c00227{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00227{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.me_c00227{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m83_c00227{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m108_c00227{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m82_c00227{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m36_c00227{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4_c00227{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m16_c00227{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00227{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m89_c00227{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00227{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00227{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mad_c00227{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m10_c00227{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00227{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00227{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m111_c00227{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00227{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m32_c00227{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m113_c00227{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00227{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00227{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m34_c00227{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mac_c00227{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m69_c00227{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m64_c00227{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00227{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md0_c00227{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.md4_c00227{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00227{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m98_c00227{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00227{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00227{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m49_c00227{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m58_c00227{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00227{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md5_c00227{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m62_c00227{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00227{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00227{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m66_c00227{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m103_c00227{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m75_c00227{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m65_c00227{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00227{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00227{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m100_c00227{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00227{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00227{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m68_c00227{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m93_c00227{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00227{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m38_c00227{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc_c00227{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m40_c00227{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00227{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md1_c00227{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m44_c00227{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me5_c00227{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00227{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mde_c00227{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00227{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m117_c00227{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m22_c00227{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9_c00227{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.med_c00227{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m24_c00227{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00227{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3_c00227{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00227{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00227{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00227{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00227{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00227{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00227{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m29_c00227{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me3_c00227{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m104_c00227{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00227{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m67_c00227{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00227{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.maf_c00227{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00227{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m106_c00227{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m95_c00227{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.me6_c00227{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m60_c00227{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m55_c00227{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00227{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00227{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m35_c00227{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m52_c00227{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00227{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md3_c00227{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.md_c00227{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00227{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m11_c00227{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00227{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mae_c00227{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00227{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m15_c00227{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00227{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mab_c00227{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00227{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00227{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00227{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00227{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me4_c00227{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m73_c00227{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m25_c00227{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m90_c00227{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00227{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mff_c00227{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m118_c00227{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m72_c00227{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00227{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00227{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m119_c00227{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00227{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mea_c00227{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00227{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m96_c00227{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m14_c00227{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m105_c00227{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mee_c00227{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me9_c00227{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m63_c00227{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m61_c00227{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00227{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00227{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m17_c00227{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m107_c00227{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.meb_c00227{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00227{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2_c00227{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma_c00227{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mef_c00227{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mda_c00227{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00227{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mec_c00227{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m37_c00227{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00227{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00227{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00227{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00227{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00227{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00227{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00227{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00227{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m20_c00227{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m116_c00227{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m51_c00227{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00227{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00227{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m28_c00227{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00227{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md8_c00227{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m31_c00227{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m74_c00227{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m71_c00227{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m97_c00227{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m81_c00227{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m78_c00227{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m47_c00227{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00227{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m21_c00227{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m18_c00227{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6_c00227{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00227{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m109_c00227{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m46_c00227{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m33_c00227{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00227{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00227{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00227{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00227{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00227{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00227{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m76_c00227{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00227{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00227{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00227{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);}
.ma1_c00227{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00227{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00227{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00227{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00227{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m91_c00227{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m92_c00227{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m110_c00227{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00227{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m94_c00227{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m30_c00227{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00227{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00227{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.me7_c00227{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md9_c00227{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00227{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m48_c00227{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m23_c00227{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00227{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m88_c00227{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00227{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00227{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mce_c00227{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00227{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m112_c00227{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00227{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m41_c00227{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m7_c00227{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00227{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00227{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00227{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m12_c00227{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00227{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00227{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m53_c00227{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m45_c00227{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.md6_c00227{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00227{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00227{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m77_c00227{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m0_c00227{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.mf_c00227{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.me8_c00227{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me2_c00227{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m50_c00227{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls1_c00227{letter-spacing:0.000000px;}
.ls0_c00227{letter-spacing:98.958763px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{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__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00227{word-spacing:-131.958763px;}
.wsb_c00227{word-spacing:-16.515464px;}
.ws1_c00227{word-spacing:-16.375000px;}
.wsa_c00227{word-spacing:-14.923567px;}
.wse_c00227{word-spacing:-10.682750px;}
.wsd_c00227{word-spacing:-8.055556px;}
.ws9_c00227{word-spacing:-7.200000px;}
.ws2_c00227{word-spacing:-7.050955px;}
.ws7_c00227{word-spacing:-2.389685px;}
.ws10_c00227{word-spacing:0.000000px;}
.ws8_c00227{word-spacing:2.463035px;}
.wsf_c00227{word-spacing:3.541779px;}
.ws6_c00227{word-spacing:4.488550px;}
.ws5_c00227{word-spacing:18.125000px;}
.ws3_c00227{word-spacing:23.211796px;}
.ws0_c00227{word-spacing:149.375000px;}
.ws4_c00227{word-spacing:159.883677px;}
._0_c00227{margin-left:-98.958763px;}
.fc0_c00227{color:transparent;}
.fs5_c00227{font-size:48.000000px;}
.fs0_c00227{font-size:54.000000px;}
.fs3_c00227{font-size:60.000000px;}
.fs2_c00227{font-size:66.000000px;}
.fs4_c00227{font-size:72.000000px;}
.fs1_c00227{font-size:78.000000px;}
.y0_c00227{bottom:0.000000px;}
.y67_c00227{bottom:187.200000px;}
.y34_c00227{bottom:189.300000px;}
.y66_c00227{bottom:201.300000px;}
.y33_c00227{bottom:207.000000px;}
.y65_c00227{bottom:213.900000px;}
.y64_c00227{bottom:227.850000px;}
.y32_c00227{bottom:238.350000px;}
.y63_c00227{bottom:246.150000px;}
.y31_c00227{bottom:256.350000px;}
.y62_c00227{bottom:264.150000px;}
.y30_c00227{bottom:278.700000px;}
.y61_c00227{bottom:281.850000px;}
.y2f_c00227{bottom:300.600000px;}
.y60_c00227{bottom:303.900000px;}
.y2e_c00227{bottom:318.600000px;}
.y5f_c00227{bottom:322.200000px;}
.y2d_c00227{bottom:336.450000px;}
.y5e_c00227{bottom:340.200000px;}
.y2c_c00227{bottom:354.450000px;}
.y5d_c00227{bottom:362.550000px;}
.y2b_c00227{bottom:371.700000px;}
.y5c_c00227{bottom:380.850000px;}
.y2a_c00227{bottom:389.700000px;}
.y5b_c00227{bottom:403.200000px;}
.y29_c00227{bottom:408.000000px;}
.y5a_c00227{bottom:421.200000px;}
.y28_c00227{bottom:425.700000px;}
.y59_c00227{bottom:438.900000px;}
.y27_c00227{bottom:444.450000px;}
.y58_c00227{bottom:461.250000px;}
.y26_c00227{bottom:462.150000px;}
.y57_c00227{bottom:479.550000px;}
.y25_c00227{bottom:479.850000px;}
.y24_c00227{bottom:497.850000px;}
.y56_c00227{bottom:501.300000px;}
.y23_c00227{bottom:516.900000px;}
.y55_c00227{bottom:519.300000px;}
.y22_c00227{bottom:533.400000px;}
.y54_c00227{bottom:537.300000px;}
.y21_c00227{bottom:551.400000px;}
.y53_c00227{bottom:555.000000px;}
.y20_c00227{bottom:569.100000px;}
.y52_c00227{bottom:573.000000px;}
.y1f_c00227{bottom:586.800000px;}
.y51_c00227{bottom:590.700000px;}
.y50_c00227{bottom:608.700000px;}
.y1e_c00227{bottom:610.500000px;}
.y1d_c00227{bottom:627.000000px;}
.y4f_c00227{bottom:630.450000px;}
.y1c_c00227{bottom:639.600000px;}
.y4e_c00227{bottom:649.200000px;}
.y1b_c00227{bottom:654.000000px;}
.y4d_c00227{bottom:667.200000px;}
.y1a_c00227{bottom:668.100000px;}
.y19_c00227{bottom:684.000000px;}
.y4c_c00227{bottom:685.200000px;}
.y18_c00227{bottom:702.600000px;}
.y4b_c00227{bottom:703.500000px;}
.y17_c00227{bottom:720.600000px;}
.y4a_c00227{bottom:720.750000px;}
.y16_c00227{bottom:738.600000px;}
.y49_c00227{bottom:738.750000px;}
.y15_c00227{bottom:756.300000px;}
.y48_c00227{bottom:756.750000px;}
.y47_c00227{bottom:774.450000px;}
.y14_c00227{bottom:778.500000px;}
.y46_c00227{bottom:792.750000px;}
.y13_c00227{bottom:796.200000px;}
.y45_c00227{bottom:810.450000px;}
.y12_c00227{bottom:814.200000px;}
.y44_c00227{bottom:828.750000px;}
.y11_c00227{bottom:831.900000px;}
.y43_c00227{bottom:846.000000px;}
.y10_c00227{bottom:849.600000px;}
.y42_c00227{bottom:864.000000px;}
.yf_c00227{bottom:871.500000px;}
.y41_c00227{bottom:884.250000px;}
.ye_c00227{bottom:889.500000px;}
.y40_c00227{bottom:899.700000px;}
.y3f_c00227{bottom:919.500000px;}
.yd_c00227{bottom:920.100000px;}
.y3e_c00227{bottom:934.200000px;}
.yc_c00227{bottom:942.150000px;}
.y3d_c00227{bottom:946.800000px;}
.yb_c00227{bottom:960.450000px;}
.y3c_c00227{bottom:963.000000px;}
.ya_c00227{bottom:978.750000px;}
.y3b_c00227{bottom:986.400000px;}
.y9_c00227{bottom:996.450000px;}
.y3a_c00227{bottom:1003.650000px;}
.y8_c00227{bottom:1014.150000px;}
.y39_c00227{bottom:1021.650000px;}
.y7_c00227{bottom:1038.900000px;}
.y38_c00227{bottom:1044.000000px;}
.y6_c00227{bottom:1058.400000px;}
.y37_c00227{bottom:1062.000000px;}
.y5_c00227{bottom:1076.400000px;}
.y36_c00227{bottom:1080.000000px;}
.y4_c00227{bottom:1097.700000px;}
.y3_c00227{bottom:1115.700000px;}
.y35_c00227{bottom:1117.800000px;}
.y1_c00227{bottom:1139.700000px;}
.y2_c00227{bottom:1141.800000px;}
.h7_c00227{height:48.000000px;}
.h2_c00227{height:54.000000px;}
.h5_c00227{height:60.000000px;}
.h4_c00227{height:66.000000px;}
.h6_c00227{height:72.000000px;}
.h3_c00227{height:78.000000px;}
.h1_c00227{height:1265.250000px;}
.h0_c00227{height:1265.399964px;}
.w1_c00227{width:963.000000px;}
.w0_c00227{width:963.359985px;}
.x0_c00227{left:0.000000px;}
.xa6_c00227{left:166.350000px;}
.x1_c00227{left:170.250000px;}
.x11_c00227{left:171.750000px;}
.xa7_c00227{left:176.100000px;}
.x1b_c00227{left:178.650000px;}
.x6e_c00227{left:184.800000px;}
.x1c_c00227{left:186.150000px;}
.x24_c00227{left:187.800000px;}
.x3_c00227{left:189.300000px;}
.x82_c00227{left:190.650000px;}
.x8f_c00227{left:192.000000px;}
.x9e_c00227{left:193.050000px;}
.xa2_c00227{left:194.400000px;}
.x12_c00227{left:196.200000px;}
.x74_c00227{left:198.750000px;}
.x75_c00227{left:199.800000px;}
.x6f_c00227{left:202.800000px;}
.x45_c00227{left:207.000000px;}
.x51_c00227{left:210.900000px;}
.x13_c00227{left:216.000000px;}
.x71_c00227{left:217.050000px;}
.x92_c00227{left:218.550000px;}
.x64_c00227{left:219.750000px;}
.x2a_c00227{left:221.250000px;}
.x7e_c00227{left:223.650000px;}
.xa9_c00227{left:225.750000px;}
.x49_c00227{left:226.800000px;}
.x65_c00227{left:228.000000px;}
.x1d_c00227{left:229.050000px;}
.x4f_c00227{left:230.100000px;}
.x37_c00227{left:231.450000px;}
.xa5_c00227{left:234.150000px;}
.x69_c00227{left:235.350000px;}
.x3d_c00227{left:237.600000px;}
.x8d_c00227{left:239.400000px;}
.x4_c00227{left:240.450000px;}
.x5c_c00227{left:241.950000px;}
.x2b_c00227{left:244.950000px;}
.x32_c00227{left:250.350000px;}
.x40_c00227{left:253.350000px;}
.x88_c00227{left:254.850000px;}
.x46_c00227{left:256.650000px;}
.x25_c00227{left:258.450000px;}
.x2c_c00227{left:259.650000px;}
.xa_c00227{left:262.500000px;}
.x52_c00227{left:265.650000px;}
.x3e_c00227{left:268.200000px;}
.x89_c00227{left:270.750000px;}
.x76_c00227{left:273.600000px;}
.x38_c00227{left:275.400000px;}
.x4a_c00227{left:277.200000px;}
.x90_c00227{left:279.150000px;}
.x1e_c00227{left:280.500000px;}
.x14_c00227{left:283.650000px;}
.x5_c00227{left:285.450000px;}
.x33_c00227{left:289.650000px;}
.x66_c00227{left:291.000000px;}
.x98_c00227{left:293.700000px;}
.x2d_c00227{left:295.350000px;}
.x60_c00227{left:296.700000px;}
.x1f_c00227{left:299.550000px;}
.xb_c00227{left:301.050000px;}
.x93_c00227{left:304.650000px;}
.x77_c00227{left:306.000000px;}
.xa3_c00227{left:307.050000px;}
.x7c_c00227{left:308.550000px;}
.x3f_c00227{left:309.600000px;}
.x41_c00227{left:312.150000px;}
.x6_c00227{left:313.500000px;}
.x15_c00227{left:316.050000px;}
.x4b_c00227{left:317.550000px;}
.x83_c00227{left:319.050000px;}
.x61_c00227{left:320.400000px;}
.x7_c00227{left:321.450000px;}
.x6a_c00227{left:324.150000px;}
.x42_c00227{left:326.550000px;}
.x26_c00227{left:328.200000px;}
.xc_c00227{left:329.850000px;}
.x16_c00227{left:331.200000px;}
.x78_c00227{left:332.250000px;}
.x4c_c00227{left:335.250000px;}
.x94_c00227{left:336.300000px;}
.x53_c00227{left:337.950000px;}
.x72_c00227{left:339.750000px;}
.x8a_c00227{left:342.000000px;}
.x47_c00227{left:346.350000px;}
.x87_c00227{left:348.150000px;}
.x43_c00227{left:349.200000px;}
.x70_c00227{left:350.250000px;}
.x6b_c00227{left:351.450000px;}
.x39_c00227{left:353.550000px;}
.x20_c00227{left:356.100000px;}
.x7f_c00227{left:357.600000px;}
.x67_c00227{left:358.650000px;}
.xa0_c00227{left:360.000000px;}
.x4d_c00227{left:361.200000px;}
.x2e_c00227{left:364.800000px;}
.xd_c00227{left:366.600000px;}
.x17_c00227{left:369.750000px;}
.x50_c00227{left:371.550000px;}
.xaa_c00227{left:372.600000px;}
.x79_c00227{left:373.650000px;}
.x8b_c00227{left:376.200000px;}
.x54_c00227{left:377.550000px;}
.x3a_c00227{left:379.050000px;}
.x7a_c00227{left:380.850000px;}
.xe_c00227{left:383.100000px;}
.x44_c00227{left:384.450000px;}
.x9b_c00227{left:386.100000px;}
.x84_c00227{left:388.200000px;}
.x27_c00227{left:391.950000px;}
.x21_c00227{left:395.400000px;}
.x3b_c00227{left:396.750000px;}
.x2f_c00227{left:398.250000px;}
.x62_c00227{left:400.350000px;}
.x73_c00227{left:402.750000px;}
.x34_c00227{left:404.850000px;}
.x8_c00227{left:406.350000px;}
.x55_c00227{left:407.400000px;}
.x2_c00227{left:408.600000px;}
.x5d_c00227{left:410.550000px;}
.x68_c00227{left:411.600000px;}
.xf_c00227{left:416.550000px;}
.x99_c00227{left:418.650000px;}
.x18_c00227{left:419.850000px;}
.x85_c00227{left:421.650000px;}
.x59_c00227{left:423.150000px;}
.x95_c00227{left:424.800000px;}
.x63_c00227{left:425.850000px;}
.x6c_c00227{left:427.050000px;}
.x35_c00227{left:429.000000px;}
.x5e_c00227{left:430.650000px;}
.x80_c00227{left:432.150000px;}
.xa4_c00227{left:433.500000px;}
.x5a_c00227{left:435.000000px;}
.x7b_c00227{left:436.050000px;}
.x19_c00227{left:437.550000px;}
.x30_c00227{left:438.600000px;}
.xab_c00227{left:441.000000px;}
.x56_c00227{left:444.450000px;}
.x9c_c00227{left:445.500000px;}
.x86_c00227{left:448.650000px;}
.x10_c00227{left:450.000000px;}
.x28_c00227{left:451.650000px;}
.x96_c00227{left:453.300000px;}
.xa8_c00227{left:455.100000px;}
.x8e_c00227{left:456.150000px;}
.x22_c00227{left:457.350000px;}
.x6d_c00227{left:458.400000px;}
.x57_c00227{left:460.650000px;}
.x4e_c00227{left:464.550000px;}
.x31_c00227{left:466.350000px;}
.x9_c00227{left:468.300000px;}
.x36_c00227{left:469.350000px;}
.x97_c00227{left:470.550000px;}
.x81_c00227{left:472.200000px;}
.x23_c00227{left:473.250000px;}
.x5f_c00227{left:474.900000px;}
.x8c_c00227{left:477.000000px;}
.x58_c00227{left:479.400000px;}
.x9a_c00227{left:480.900000px;}
.xa1_c00227{left:482.100000px;}
.x91_c00227{left:483.150000px;}
.x7d_c00227{left:485.700000px;}
.x9d_c00227{left:487.200000px;}
.x29_c00227{left:489.450000px;}
.x3c_c00227{left:490.800000px;}
.x1a_c00227{left:491.850000px;}
.x5b_c00227{left:494.700000px;}
.x9f_c00227{left:496.050000px;}
.x48_c00227{left:501.900000px;}
.xcc_c00227{left:527.400000px;}
.x13a_c00227{left:529.950000px;}
.x140_c00227{left:532.050000px;}
.xe0_c00227{left:541.500000px;}
.xb2_c00227{left:544.200000px;}
.xff_c00227{left:545.400000px;}
.x12a_c00227{left:547.050000px;}
.x137_c00227{left:548.100000px;}
.x14a_c00227{left:549.450000px;}
.xeb_c00227{left:555.900000px;}
.x11b_c00227{left:558.450000px;}
.x100_c00227{left:561.600000px;}
.xac_c00227{left:562.650000px;}
.x12b_c00227{left:565.350000px;}
.x12d_c00227{left:566.700000px;}
.xcd_c00227{left:570.600000px;}
.x114_c00227{left:571.650000px;}
.xd2_c00227{left:573.750000px;}
.x10c_c00227{left:575.850000px;}
.xec_c00227{left:577.800000px;}
.xc7_c00227{left:579.750000px;}
.x14b_c00227{left:581.850000px;}
.xb3_c00227{left:585.300000px;}
.xda_c00227{left:586.950000px;}
.x13b_c00227{left:588.600000px;}
.xf6_c00227{left:590.250000px;}
.xe1_c00227{left:591.600000px;}
.x108_c00227{left:592.650000px;}
.x10d_c00227{left:596.400000px;}
.xed_c00227{left:597.600000px;}
.xbe_c00227{left:599.250000px;}
.xef_c00227{left:600.450000px;}
.xc8_c00227{left:602.400000px;}
.x101_c00227{left:608.700000px;}
.xf7_c00227{left:610.200000px;}
.xd7_c00227{left:611.400000px;}
.xfc_c00227{left:613.200000px;}
.xb4_c00227{left:616.950000px;}
.x11c_c00227{left:618.150000px;}
.x13c_c00227{left:619.200000px;}
.xf0_c00227{left:624.150000px;}
.xe2_c00227{left:626.100000px;}
.xf8_c00227{left:627.450000px;}
.x103_c00227{left:630.450000px;}
.x127_c00227{left:632.250000px;}
.x10e_c00227{left:633.450000px;}
.x138_c00227{left:636.300000px;}
.xce_c00227{left:637.950000px;}
.x115_c00227{left:641.850000px;}
.x146_c00227{left:643.050000px;}
.xd8_c00227{left:645.900000px;}
.x147_c00227{left:646.950000px;}
.xdb_c00227{left:648.150000px;}
.xe3_c00227{left:649.800000px;}
.xad_c00227{left:650.850000px;}
.x122_c00227{left:652.350000px;}
.xf9_c00227{left:653.700000px;}
.xb5_c00227{left:654.750000px;}
.xc9_c00227{left:656.100000px;}
.x12e_c00227{left:657.450000px;}
.x132_c00227{left:660.150000px;}
.x116_c00227{left:661.950000px;}
.xbf_c00227{left:663.300000px;}
.xdc_c00227{left:667.200000px;}
.x13f_c00227{left:668.700000px;}
.xe6_c00227{left:670.350000px;}
.x128_c00227{left:672.300000px;}
.xc0_c00227{left:673.350000px;}
.x119_c00227{left:674.400000px;}
.x104_c00227{left:676.200000px;}
.xe7_c00227{left:677.850000px;}
.xae_c00227{left:678.900000px;}
.x13d_c00227{left:680.700000px;}
.xb6_c00227{left:683.250000px;}
.xba_c00227{left:685.650000px;}
.xd3_c00227{left:692.100000px;}
.xca_c00227{left:693.900000px;}
.x10f_c00227{left:694.950000px;}
.x124_c00227{left:696.750000px;}
.xe4_c00227{left:698.100000px;}
.xfd_c00227{left:699.150000px;}
.x109_c00227{left:700.650000px;}
.x143_c00227{left:701.850000px;}
.xdd_c00227{left:702.900000px;}
.xd9_c00227{left:705.000000px;}
.xaf_c00227{left:706.200000px;}
.xb7_c00227{left:708.750000px;}
.x105_c00227{left:710.100000px;}
.xde_c00227{left:711.150000px;}
.xc1_c00227{left:713.700000px;}
.x133_c00227{left:716.700000px;}
.x102_c00227{left:717.900000px;}
.x11a_c00227{left:719.100000px;}
.xcb_c00227{left:720.150000px;}
.xf1_c00227{left:722.700000px;}
.x117_c00227{left:725.250000px;}
.x125_c00227{left:727.350000px;}
.xd4_c00227{left:729.600000px;}
.x110_c00227{left:732.000000px;}
.x11d_c00227{left:733.950000px;}
.xb8_c00227{left:735.000000px;}
.xb0_c00227{left:736.050000px;}
.x134_c00227{left:737.550000px;}
.x144_c00227{left:740.400000px;}
.xf2_c00227{left:741.450000px;}
.xc2_c00227{left:744.300000px;}
.xfe_c00227{left:745.650000px;}
.xe5_c00227{left:746.700000px;}
.xbb_c00227{left:747.900000px;}
.xcf_c00227{left:750.150000px;}
.xf3_c00227{left:752.250000px;}
.x141_c00227{left:753.450000px;}
.xfa_c00227{left:756.150000px;}
.xdf_c00227{left:758.250000px;}
.x148_c00227{left:759.300000px;}
.xd5_c00227{left:760.950000px;}
.x12f_c00227{left:762.450000px;}
.x123_c00227{left:766.200000px;}
.x145_c00227{left:769.950000px;}
.x135_c00227{left:771.750000px;}
.x11e_c00227{left:772.800000px;}
.x142_c00227{left:774.000000px;}
.xfb_c00227{left:776.250000px;}
.x118_c00227{left:777.450000px;}
.x10a_c00227{left:779.850000px;}
.x12c_c00227{left:781.950000px;}
.xc3_c00227{left:783.900000px;}
.x13e_c00227{left:785.850000px;}
.xd0_c00227{left:786.900000px;}
.x14c_c00227{left:789.900000px;}
.xee_c00227{left:792.300000px;}
.xe8_c00227{left:793.800000px;}
.x112_c00227{left:794.850000px;}
.xbc_c00227{left:798.300000px;}
.x139_c00227{left:800.100000px;}
.xc4_c00227{left:802.950000px;}
.xb1_c00227{left:805.200000px;}
.x106_c00227{left:808.350000px;}
.x11f_c00227{left:810.600000px;}
.xf4_c00227{left:813.450000px;}
.xb9_c00227{left:814.950000px;}
.x129_c00227{left:816.000000px;}
.x120_c00227{left:820.650000px;}
.x131_c00227{left:822.150000px;}
.xe9_c00227{left:823.350000px;}
.xd6_c00227{left:826.050000px;}
.x113_c00227{left:827.250000px;}
.x10b_c00227{left:829.200000px;}
.xd1_c00227{left:830.850000px;}
.x111_c00227{left:832.350000px;}
.x126_c00227{left:834.000000px;}
.xc5_c00227{left:835.050000px;}
.x136_c00227{left:837.900000px;}
.x107_c00227{left:839.250000px;}
.x130_c00227{left:840.900000px;}
.xc6_c00227{left:844.050000px;}
.xf5_c00227{left:846.150000px;}
.xbd_c00227{left:848.400000px;}
.xea_c00227{left:850.350000px;}
.x14d_c00227{left:853.950000px;}
.x149_c00227{left:858.750000px;}
.x121_c00227{left:860.550000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls1_c00227{letter-spacing:0.000000pt;}
.ls0_c00227{letter-spacing:87.963345pt;}
.wsc_c00227{word-spacing:-117.296678pt;}
.wsb_c00227{word-spacing:-14.680412pt;}
.ws1_c00227{word-spacing:-14.555556pt;}
.wsa_c00227{word-spacing:-13.265393pt;}
.wse_c00227{word-spacing:-9.495778pt;}
.wsd_c00227{word-spacing:-7.160494pt;}
.ws9_c00227{word-spacing:-6.400000pt;}
.ws2_c00227{word-spacing:-6.267516pt;}
.ws7_c00227{word-spacing:-2.124164pt;}
.ws10_c00227{word-spacing:0.000000pt;}
.ws8_c00227{word-spacing:2.189364pt;}
.wsf_c00227{word-spacing:3.148248pt;}
.ws6_c00227{word-spacing:3.989822pt;}
.ws5_c00227{word-spacing:16.111111pt;}
.ws3_c00227{word-spacing:20.632708pt;}
.ws0_c00227{word-spacing:132.777778pt;}
.ws4_c00227{word-spacing:142.118824pt;}
._0_c00227{margin-left:-87.963345pt;}
.fs5_c00227{font-size:42.666667pt;}
.fs0_c00227{font-size:48.000000pt;}
.fs3_c00227{font-size:53.333333pt;}
.fs2_c00227{font-size:58.666667pt;}
.fs4_c00227{font-size:64.000000pt;}
.fs1_c00227{font-size:69.333333pt;}
.y0_c00227{bottom:0.000000pt;}
.y67_c00227{bottom:166.400000pt;}
.y34_c00227{bottom:168.266667pt;}
.y66_c00227{bottom:178.933333pt;}
.y33_c00227{bottom:184.000000pt;}
.y65_c00227{bottom:190.133333pt;}
.y64_c00227{bottom:202.533333pt;}
.y32_c00227{bottom:211.866667pt;}
.y63_c00227{bottom:218.800000pt;}
.y31_c00227{bottom:227.866667pt;}
.y62_c00227{bottom:234.800000pt;}
.y30_c00227{bottom:247.733333pt;}
.y61_c00227{bottom:250.533333pt;}
.y2f_c00227{bottom:267.200000pt;}
.y60_c00227{bottom:270.133333pt;}
.y2e_c00227{bottom:283.200000pt;}
.y5f_c00227{bottom:286.400000pt;}
.y2d_c00227{bottom:299.066667pt;}
.y5e_c00227{bottom:302.400000pt;}
.y2c_c00227{bottom:315.066667pt;}
.y5d_c00227{bottom:322.266667pt;}
.y2b_c00227{bottom:330.400000pt;}
.y5c_c00227{bottom:338.533333pt;}
.y2a_c00227{bottom:346.400000pt;}
.y5b_c00227{bottom:358.400000pt;}
.y29_c00227{bottom:362.666667pt;}
.y5a_c00227{bottom:374.400000pt;}
.y28_c00227{bottom:378.400000pt;}
.y59_c00227{bottom:390.133333pt;}
.y27_c00227{bottom:395.066667pt;}
.y58_c00227{bottom:410.000000pt;}
.y26_c00227{bottom:410.800000pt;}
.y57_c00227{bottom:426.266667pt;}
.y25_c00227{bottom:426.533333pt;}
.y24_c00227{bottom:442.533333pt;}
.y56_c00227{bottom:445.600000pt;}
.y23_c00227{bottom:459.466667pt;}
.y55_c00227{bottom:461.600000pt;}
.y22_c00227{bottom:474.133333pt;}
.y54_c00227{bottom:477.600000pt;}
.y21_c00227{bottom:490.133333pt;}
.y53_c00227{bottom:493.333333pt;}
.y20_c00227{bottom:505.866667pt;}
.y52_c00227{bottom:509.333333pt;}
.y1f_c00227{bottom:521.600000pt;}
.y51_c00227{bottom:525.066667pt;}
.y50_c00227{bottom:541.066667pt;}
.y1e_c00227{bottom:542.666667pt;}
.y1d_c00227{bottom:557.333333pt;}
.y4f_c00227{bottom:560.400000pt;}
.y1c_c00227{bottom:568.533333pt;}
.y4e_c00227{bottom:577.066667pt;}
.y1b_c00227{bottom:581.333333pt;}
.y4d_c00227{bottom:593.066667pt;}
.y1a_c00227{bottom:593.866667pt;}
.y19_c00227{bottom:608.000000pt;}
.y4c_c00227{bottom:609.066667pt;}
.y18_c00227{bottom:624.533333pt;}
.y4b_c00227{bottom:625.333333pt;}
.y17_c00227{bottom:640.533333pt;}
.y4a_c00227{bottom:640.666667pt;}
.y16_c00227{bottom:656.533333pt;}
.y49_c00227{bottom:656.666667pt;}
.y15_c00227{bottom:672.266667pt;}
.y48_c00227{bottom:672.666667pt;}
.y47_c00227{bottom:688.400000pt;}
.y14_c00227{bottom:692.000000pt;}
.y46_c00227{bottom:704.666667pt;}
.y13_c00227{bottom:707.733333pt;}
.y45_c00227{bottom:720.400000pt;}
.y12_c00227{bottom:723.733333pt;}
.y44_c00227{bottom:736.666667pt;}
.y11_c00227{bottom:739.466667pt;}
.y43_c00227{bottom:752.000000pt;}
.y10_c00227{bottom:755.200000pt;}
.y42_c00227{bottom:768.000000pt;}
.yf_c00227{bottom:774.666667pt;}
.y41_c00227{bottom:786.000000pt;}
.ye_c00227{bottom:790.666667pt;}
.y40_c00227{bottom:799.733333pt;}
.y3f_c00227{bottom:817.333333pt;}
.yd_c00227{bottom:817.866667pt;}
.y3e_c00227{bottom:830.400000pt;}
.yc_c00227{bottom:837.466667pt;}
.y3d_c00227{bottom:841.600000pt;}
.yb_c00227{bottom:853.733333pt;}
.y3c_c00227{bottom:856.000000pt;}
.ya_c00227{bottom:870.000000pt;}
.y3b_c00227{bottom:876.800000pt;}
.y9_c00227{bottom:885.733333pt;}
.y3a_c00227{bottom:892.133333pt;}
.y8_c00227{bottom:901.466667pt;}
.y39_c00227{bottom:908.133333pt;}
.y7_c00227{bottom:923.466667pt;}
.y38_c00227{bottom:928.000000pt;}
.y6_c00227{bottom:940.800000pt;}
.y37_c00227{bottom:944.000000pt;}
.y5_c00227{bottom:956.800000pt;}
.y36_c00227{bottom:960.000000pt;}
.y4_c00227{bottom:975.733333pt;}
.y3_c00227{bottom:991.733333pt;}
.y35_c00227{bottom:993.600000pt;}
.y1_c00227{bottom:1013.066667pt;}
.y2_c00227{bottom:1014.933333pt;}
.h7_c00227{height:42.666667pt;}
.h2_c00227{height:48.000000pt;}
.h5_c00227{height:53.333333pt;}
.h4_c00227{height:58.666667pt;}
.h6_c00227{height:64.000000pt;}
.h3_c00227{height:69.333333pt;}
.h1_c00227{height:1124.666667pt;}
.h0_c00227{height:1124.799968pt;}
.w1_c00227{width:856.000000pt;}
.w0_c00227{width:856.319987pt;}
.x0_c00227{left:0.000000pt;}
.xa6_c00227{left:147.866667pt;}
.x1_c00227{left:151.333333pt;}
.x11_c00227{left:152.666667pt;}
.xa7_c00227{left:156.533333pt;}
.x1b_c00227{left:158.800000pt;}
.x6e_c00227{left:164.266667pt;}
.x1c_c00227{left:165.466667pt;}
.x24_c00227{left:166.933333pt;}
.x3_c00227{left:168.266667pt;}
.x82_c00227{left:169.466667pt;}
.x8f_c00227{left:170.666667pt;}
.x9e_c00227{left:171.600000pt;}
.xa2_c00227{left:172.800000pt;}
.x12_c00227{left:174.400000pt;}
.x74_c00227{left:176.666667pt;}
.x75_c00227{left:177.600000pt;}
.x6f_c00227{left:180.266667pt;}
.x45_c00227{left:184.000000pt;}
.x51_c00227{left:187.466667pt;}
.x13_c00227{left:192.000000pt;}
.x71_c00227{left:192.933333pt;}
.x92_c00227{left:194.266667pt;}
.x64_c00227{left:195.333333pt;}
.x2a_c00227{left:196.666667pt;}
.x7e_c00227{left:198.800000pt;}
.xa9_c00227{left:200.666667pt;}
.x49_c00227{left:201.600000pt;}
.x65_c00227{left:202.666667pt;}
.x1d_c00227{left:203.600000pt;}
.x4f_c00227{left:204.533333pt;}
.x37_c00227{left:205.733333pt;}
.xa5_c00227{left:208.133333pt;}
.x69_c00227{left:209.200000pt;}
.x3d_c00227{left:211.200000pt;}
.x8d_c00227{left:212.800000pt;}
.x4_c00227{left:213.733333pt;}
.x5c_c00227{left:215.066667pt;}
.x2b_c00227{left:217.733333pt;}
.x32_c00227{left:222.533333pt;}
.x40_c00227{left:225.200000pt;}
.x88_c00227{left:226.533333pt;}
.x46_c00227{left:228.133333pt;}
.x25_c00227{left:229.733333pt;}
.x2c_c00227{left:230.800000pt;}
.xa_c00227{left:233.333333pt;}
.x52_c00227{left:236.133333pt;}
.x3e_c00227{left:238.400000pt;}
.x89_c00227{left:240.666667pt;}
.x76_c00227{left:243.200000pt;}
.x38_c00227{left:244.800000pt;}
.x4a_c00227{left:246.400000pt;}
.x90_c00227{left:248.133333pt;}
.x1e_c00227{left:249.333333pt;}
.x14_c00227{left:252.133333pt;}
.x5_c00227{left:253.733333pt;}
.x33_c00227{left:257.466667pt;}
.x66_c00227{left:258.666667pt;}
.x98_c00227{left:261.066667pt;}
.x2d_c00227{left:262.533333pt;}
.x60_c00227{left:263.733333pt;}
.x1f_c00227{left:266.266667pt;}
.xb_c00227{left:267.600000pt;}
.x93_c00227{left:270.800000pt;}
.x77_c00227{left:272.000000pt;}
.xa3_c00227{left:272.933333pt;}
.x7c_c00227{left:274.266667pt;}
.x3f_c00227{left:275.200000pt;}
.x41_c00227{left:277.466667pt;}
.x6_c00227{left:278.666667pt;}
.x15_c00227{left:280.933333pt;}
.x4b_c00227{left:282.266667pt;}
.x83_c00227{left:283.600000pt;}
.x61_c00227{left:284.800000pt;}
.x7_c00227{left:285.733333pt;}
.x6a_c00227{left:288.133333pt;}
.x42_c00227{left:290.266667pt;}
.x26_c00227{left:291.733333pt;}
.xc_c00227{left:293.200000pt;}
.x16_c00227{left:294.400000pt;}
.x78_c00227{left:295.333333pt;}
.x4c_c00227{left:298.000000pt;}
.x94_c00227{left:298.933333pt;}
.x53_c00227{left:300.400000pt;}
.x72_c00227{left:302.000000pt;}
.x8a_c00227{left:304.000000pt;}
.x47_c00227{left:307.866667pt;}
.x87_c00227{left:309.466667pt;}
.x43_c00227{left:310.400000pt;}
.x70_c00227{left:311.333333pt;}
.x6b_c00227{left:312.400000pt;}
.x39_c00227{left:314.266667pt;}
.x20_c00227{left:316.533333pt;}
.x7f_c00227{left:317.866667pt;}
.x67_c00227{left:318.800000pt;}
.xa0_c00227{left:320.000000pt;}
.x4d_c00227{left:321.066667pt;}
.x2e_c00227{left:324.266667pt;}
.xd_c00227{left:325.866667pt;}
.x17_c00227{left:328.666667pt;}
.x50_c00227{left:330.266667pt;}
.xaa_c00227{left:331.200000pt;}
.x79_c00227{left:332.133333pt;}
.x8b_c00227{left:334.400000pt;}
.x54_c00227{left:335.600000pt;}
.x3a_c00227{left:336.933333pt;}
.x7a_c00227{left:338.533333pt;}
.xe_c00227{left:340.533333pt;}
.x44_c00227{left:341.733333pt;}
.x9b_c00227{left:343.200000pt;}
.x84_c00227{left:345.066667pt;}
.x27_c00227{left:348.400000pt;}
.x21_c00227{left:351.466667pt;}
.x3b_c00227{left:352.666667pt;}
.x2f_c00227{left:354.000000pt;}
.x62_c00227{left:355.866667pt;}
.x73_c00227{left:358.000000pt;}
.x34_c00227{left:359.866667pt;}
.x8_c00227{left:361.200000pt;}
.x55_c00227{left:362.133333pt;}
.x2_c00227{left:363.200000pt;}
.x5d_c00227{left:364.933333pt;}
.x68_c00227{left:365.866667pt;}
.xf_c00227{left:370.266667pt;}
.x99_c00227{left:372.133333pt;}
.x18_c00227{left:373.200000pt;}
.x85_c00227{left:374.800000pt;}
.x59_c00227{left:376.133333pt;}
.x95_c00227{left:377.600000pt;}
.x63_c00227{left:378.533333pt;}
.x6c_c00227{left:379.600000pt;}
.x35_c00227{left:381.333333pt;}
.x5e_c00227{left:382.800000pt;}
.x80_c00227{left:384.133333pt;}
.xa4_c00227{left:385.333333pt;}
.x5a_c00227{left:386.666667pt;}
.x7b_c00227{left:387.600000pt;}
.x19_c00227{left:388.933333pt;}
.x30_c00227{left:389.866667pt;}
.xab_c00227{left:392.000000pt;}
.x56_c00227{left:395.066667pt;}
.x9c_c00227{left:396.000000pt;}
.x86_c00227{left:398.800000pt;}
.x10_c00227{left:400.000000pt;}
.x28_c00227{left:401.466667pt;}
.x96_c00227{left:402.933333pt;}
.xa8_c00227{left:404.533333pt;}
.x8e_c00227{left:405.466667pt;}
.x22_c00227{left:406.533333pt;}
.x6d_c00227{left:407.466667pt;}
.x57_c00227{left:409.466667pt;}
.x4e_c00227{left:412.933333pt;}
.x31_c00227{left:414.533333pt;}
.x9_c00227{left:416.266667pt;}
.x36_c00227{left:417.200000pt;}
.x97_c00227{left:418.266667pt;}
.x81_c00227{left:419.733333pt;}
.x23_c00227{left:420.666667pt;}
.x5f_c00227{left:422.133333pt;}
.x8c_c00227{left:424.000000pt;}
.x58_c00227{left:426.133333pt;}
.x9a_c00227{left:427.466667pt;}
.xa1_c00227{left:428.533333pt;}
.x91_c00227{left:429.466667pt;}
.x7d_c00227{left:431.733333pt;}
.x9d_c00227{left:433.066667pt;}
.x29_c00227{left:435.066667pt;}
.x3c_c00227{left:436.266667pt;}
.x1a_c00227{left:437.200000pt;}
.x5b_c00227{left:439.733333pt;}
.x9f_c00227{left:440.933333pt;}
.x48_c00227{left:446.133333pt;}
.xcc_c00227{left:468.800000pt;}
.x13a_c00227{left:471.066667pt;}
.x140_c00227{left:472.933333pt;}
.xe0_c00227{left:481.333333pt;}
.xb2_c00227{left:483.733333pt;}
.xff_c00227{left:484.800000pt;}
.x12a_c00227{left:486.266667pt;}
.x137_c00227{left:487.200000pt;}
.x14a_c00227{left:488.400000pt;}
.xeb_c00227{left:494.133333pt;}
.x11b_c00227{left:496.400000pt;}
.x100_c00227{left:499.200000pt;}
.xac_c00227{left:500.133333pt;}
.x12b_c00227{left:502.533333pt;}
.x12d_c00227{left:503.733333pt;}
.xcd_c00227{left:507.200000pt;}
.x114_c00227{left:508.133333pt;}
.xd2_c00227{left:510.000000pt;}
.x10c_c00227{left:511.866667pt;}
.xec_c00227{left:513.600000pt;}
.xc7_c00227{left:515.333333pt;}
.x14b_c00227{left:517.200000pt;}
.xb3_c00227{left:520.266667pt;}
.xda_c00227{left:521.733333pt;}
.x13b_c00227{left:523.200000pt;}
.xf6_c00227{left:524.666667pt;}
.xe1_c00227{left:525.866667pt;}
.x108_c00227{left:526.800000pt;}
.x10d_c00227{left:530.133333pt;}
.xed_c00227{left:531.200000pt;}
.xbe_c00227{left:532.666667pt;}
.xef_c00227{left:533.733333pt;}
.xc8_c00227{left:535.466667pt;}
.x101_c00227{left:541.066667pt;}
.xf7_c00227{left:542.400000pt;}
.xd7_c00227{left:543.466667pt;}
.xfc_c00227{left:545.066667pt;}
.xb4_c00227{left:548.400000pt;}
.x11c_c00227{left:549.466667pt;}
.x13c_c00227{left:550.400000pt;}
.xf0_c00227{left:554.800000pt;}
.xe2_c00227{left:556.533333pt;}
.xf8_c00227{left:557.733333pt;}
.x103_c00227{left:560.400000pt;}
.x127_c00227{left:562.000000pt;}
.x10e_c00227{left:563.066667pt;}
.x138_c00227{left:565.600000pt;}
.xce_c00227{left:567.066667pt;}
.x115_c00227{left:570.533333pt;}
.x146_c00227{left:571.600000pt;}
.xd8_c00227{left:574.133333pt;}
.x147_c00227{left:575.066667pt;}
.xdb_c00227{left:576.133333pt;}
.xe3_c00227{left:577.600000pt;}
.xad_c00227{left:578.533333pt;}
.x122_c00227{left:579.866667pt;}
.xf9_c00227{left:581.066667pt;}
.xb5_c00227{left:582.000000pt;}
.xc9_c00227{left:583.200000pt;}
.x12e_c00227{left:584.400000pt;}
.x132_c00227{left:586.800000pt;}
.x116_c00227{left:588.400000pt;}
.xbf_c00227{left:589.600000pt;}
.xdc_c00227{left:593.066667pt;}
.x13f_c00227{left:594.400000pt;}
.xe6_c00227{left:595.866667pt;}
.x128_c00227{left:597.600000pt;}
.xc0_c00227{left:598.533333pt;}
.x119_c00227{left:599.466667pt;}
.x104_c00227{left:601.066667pt;}
.xe7_c00227{left:602.533333pt;}
.xae_c00227{left:603.466667pt;}
.x13d_c00227{left:605.066667pt;}
.xb6_c00227{left:607.333333pt;}
.xba_c00227{left:609.466667pt;}
.xd3_c00227{left:615.200000pt;}
.xca_c00227{left:616.800000pt;}
.x10f_c00227{left:617.733333pt;}
.x124_c00227{left:619.333333pt;}
.xe4_c00227{left:620.533333pt;}
.xfd_c00227{left:621.466667pt;}
.x109_c00227{left:622.800000pt;}
.x143_c00227{left:623.866667pt;}
.xdd_c00227{left:624.800000pt;}
.xd9_c00227{left:626.666667pt;}
.xaf_c00227{left:627.733333pt;}
.xb7_c00227{left:630.000000pt;}
.x105_c00227{left:631.200000pt;}
.xde_c00227{left:632.133333pt;}
.xc1_c00227{left:634.400000pt;}
.x133_c00227{left:637.066667pt;}
.x102_c00227{left:638.133333pt;}
.x11a_c00227{left:639.200000pt;}
.xcb_c00227{left:640.133333pt;}
.xf1_c00227{left:642.400000pt;}
.x117_c00227{left:644.666667pt;}
.x125_c00227{left:646.533333pt;}
.xd4_c00227{left:648.533333pt;}
.x110_c00227{left:650.666667pt;}
.x11d_c00227{left:652.400000pt;}
.xb8_c00227{left:653.333333pt;}
.xb0_c00227{left:654.266667pt;}
.x134_c00227{left:655.600000pt;}
.x144_c00227{left:658.133333pt;}
.xf2_c00227{left:659.066667pt;}
.xc2_c00227{left:661.600000pt;}
.xfe_c00227{left:662.800000pt;}
.xe5_c00227{left:663.733333pt;}
.xbb_c00227{left:664.800000pt;}
.xcf_c00227{left:666.800000pt;}
.xf3_c00227{left:668.666667pt;}
.x141_c00227{left:669.733333pt;}
.xfa_c00227{left:672.133333pt;}
.xdf_c00227{left:674.000000pt;}
.x148_c00227{left:674.933333pt;}
.xd5_c00227{left:676.400000pt;}
.x12f_c00227{left:677.733333pt;}
.x123_c00227{left:681.066667pt;}
.x145_c00227{left:684.400000pt;}
.x135_c00227{left:686.000000pt;}
.x11e_c00227{left:686.933333pt;}
.x142_c00227{left:688.000000pt;}
.xfb_c00227{left:690.000000pt;}
.x118_c00227{left:691.066667pt;}
.x10a_c00227{left:693.200000pt;}
.x12c_c00227{left:695.066667pt;}
.xc3_c00227{left:696.800000pt;}
.x13e_c00227{left:698.533333pt;}
.xd0_c00227{left:699.466667pt;}
.x14c_c00227{left:702.133333pt;}
.xee_c00227{left:704.266667pt;}
.xe8_c00227{left:705.600000pt;}
.x112_c00227{left:706.533333pt;}
.xbc_c00227{left:709.600000pt;}
.x139_c00227{left:711.200000pt;}
.xc4_c00227{left:713.733333pt;}
.xb1_c00227{left:715.733333pt;}
.x106_c00227{left:718.533333pt;}
.x11f_c00227{left:720.533333pt;}
.xf4_c00227{left:723.066667pt;}
.xb9_c00227{left:724.400000pt;}
.x129_c00227{left:725.333333pt;}
.x120_c00227{left:729.466667pt;}
.x131_c00227{left:730.800000pt;}
.xe9_c00227{left:731.866667pt;}
.xd6_c00227{left:734.266667pt;}
.x113_c00227{left:735.333333pt;}
.x10b_c00227{left:737.066667pt;}
.xd1_c00227{left:738.533333pt;}
.x111_c00227{left:739.866667pt;}
.x126_c00227{left:741.333333pt;}
.xc5_c00227{left:742.266667pt;}
.x136_c00227{left:744.800000pt;}
.x107_c00227{left:746.000000pt;}
.x130_c00227{left:747.466667pt;}
.xc6_c00227{left:750.266667pt;}
.xf5_c00227{left:752.133333pt;}
.xbd_c00227{left:754.133333pt;}
.xea_c00227{left:755.866667pt;}
.x14d_c00227{left:759.066667pt;}
.x149_c00227{left:763.333333pt;}
.x121_c00227{left:764.933333pt;}
}





/* 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_c00228 {
    display:none;
  }
  .loading-indicator_c00228.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00228 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_c00228 { 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_c00228" -> "#page-container .classname_c00228")
 */
.pf_c00228 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00228 { /* 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_c00228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00228 { /* 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_c00228 { /* 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_c00228 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00228 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00228 {overflow:visible;}
  }
}
.c_c00228 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00228 { /* 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_c00228:after { /* webkit #35443 */
  content: '';
}
.t_c00228:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00228 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 */
}
.__c00228 { /* 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_c00228 { /* info for Javascript */
  display:none;
}
.l_c00228 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00228 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00228 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00228: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_c00228 {
    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_c00228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00228.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_c00228 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00228;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.000000;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;}
.m3_c00228{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m54_c00228{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mef_c00228{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00228{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m109_c00228{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00228{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00228{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00228{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m92_c00228{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00228{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m18_c00228{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00228{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00228{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m91_c00228{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m62_c00228{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00228{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md4_c00228{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00228{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m84_c00228{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00228{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me0_c00228{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m93_c00228{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00228{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m46_c00228{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m89_c00228{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m70_c00228{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.me2_c00228{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00228{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00228{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mad_c00228{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m43_c00228{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00228{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00228{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m115_c00228{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.me9_c00228{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00228{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m63_c00228{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m71_c00228{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m38_c00228{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m69_c00228{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m61_c00228{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m41_c00228{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m72_c00228{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m31_c00228{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m68_c00228{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00228{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.md7_c00228{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00228{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.maf_c00228{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00228{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00228{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m11_c00228{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md0_c00228{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m67_c00228{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m82_c00228{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m78_c00228{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00228{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00228{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00228{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00228{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00228{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00228{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00228{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma_c00228{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m52_c00228{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00228{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m39_c00228{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00228{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m47_c00228{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00228{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m60_c00228{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m57_c00228{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m114_c00228{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m36_c00228{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00228{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m64_c00228{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mab_c00228{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00228{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00228{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00228{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00228{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00228{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m94_c00228{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m35_c00228{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00228{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00228{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m105_c00228{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00228{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m17_c00228{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m50_c00228{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.maa_c00228{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00228{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me4_c00228{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m37_c00228{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00228{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m5_c00228{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00228{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.med_c00228{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00228{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m99_c00228{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00228{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00228{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m29_c00228{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m65_c00228{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00228{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00228{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m26_c00228{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00228{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m48_c00228{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00228{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00228{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00228{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00228{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00228{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m14_c00228{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m73_c00228{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00228{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00228{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m107_c00228{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m53_c00228{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m80_c00228{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m88_c00228{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00228{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00228{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mba_c00228{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m76_c00228{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00228{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m27_c00228{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m25_c00228{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m98_c00228{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m66_c00228{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00228{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m49_c00228{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00228{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00228{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00228{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.me_c00228{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m19_c00228{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00228{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m12_c00228{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00228{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00228{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf_c00228{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00228{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m34_c00228{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mde_c00228{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m15_c00228{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m104_c00228{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00228{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00228{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m40_c00228{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00228{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mae_c00228{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00228{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me6_c00228{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m42_c00228{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mec_c00228{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m55_c00228{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00228{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb_c00228{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00228{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00228{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00228{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.md_c00228{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00228{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00228{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc_c00228{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m33_c00228{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mda_c00228{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mee_c00228{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m58_c00228{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00228{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m59_c00228{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00228{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00228{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00228{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m20_c00228{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m45_c00228{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00228{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md1_c00228{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m85_c00228{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m77_c00228{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m16_c00228{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m83_c00228{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00228{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m28_c00228{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m101_c00228{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m32_c00228{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00228{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m21_c00228{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m90_c00228{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md8_c00228{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m30_c00228{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10_c00228{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md9_c00228{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00228{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m23_c00228{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me5_c00228{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m44_c00228{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00228{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m103_c00228{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00228{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00228{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m86_c00228{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00228{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00228{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me3_c00228{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00228{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md6_c00228{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7_c00228{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m51_c00228{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00228{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m102_c00228{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00228{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m9_c00228{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00228{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00228{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00228{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00228{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00228{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00228{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md5_c00228{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me7_c00228{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);}
.mdc_c00228{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m22_c00228{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m87_c00228{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m95_c00228{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m106_c00228{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00228{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00228{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.meb_c00228{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mac_c00228{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mea_c00228{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me1_c00228{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m97_c00228{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m24_c00228{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00228{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00228{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m74_c00228{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00228{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00228{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mca_c00228{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md2_c00228{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00228{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m56_c00228{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00228{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m75_c00228{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00228{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me8_c00228{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00228{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mce_c00228{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m6_c00228{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00228{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00228{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m4_c00228{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00228{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00228{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00228{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00228{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m81_c00228{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m2_c00228{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m100_c00228{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m108_c00228{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00228{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mff_c00228{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m79_c00228{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00228{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00228{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md3_c00228{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m113_c00228{transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);}
.m96_c00228{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m110_c00228{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m111_c00228{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00228{transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00228{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m112_c00228{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m0_c00228{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls0_c00228{letter-spacing:0.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{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__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00228{word-spacing:-5.185766px;}
.ws4_c00228{word-spacing:-2.837838px;}
.ws1_c00228{word-spacing:-2.779141px;}
.ws3_c00228{word-spacing:-2.608696px;}
.ws6_c00228{word-spacing:-1.964960px;}
.ws0_c00228{word-spacing:-1.426117px;}
.wsa_c00228{word-spacing:0.000000px;}
.ws8_c00228{word-spacing:7.500000px;}
.ws5_c00228{word-spacing:9.166667px;}
.ws9_c00228{word-spacing:20.657371px;}
.ws7_c00228{word-spacing:25.714286px;}
._0_c00228{width:64.642857px;}
.fc0_c00228{color:transparent;}
.fs6_c00228{font-size:36.000000px;}
.fs1_c00228{font-size:48.000000px;}
.fs5_c00228{font-size:54.000000px;}
.fs2_c00228{font-size:60.000000px;}
.fs3_c00228{font-size:66.000000px;}
.fs4_c00228{font-size:72.000000px;}
.fs0_c00228{font-size:78.000000px;}
.y0_c00228{bottom:0.000000px;}
.y36_c00228{bottom:187.200000px;}
.y6b_c00228{bottom:188.250000px;}
.y35_c00228{bottom:201.600000px;}
.y6a_c00228{bottom:206.250000px;}
.y34_c00228{bottom:215.700000px;}
.y68_c00228{bottom:230.100000px;}
.y66_c00228{bottom:231.450000px;}
.y69_c00228{bottom:244.050000px;}
.y67_c00228{bottom:244.500000px;}
.y65_c00228{bottom:245.850000px;}
.y64_c00228{bottom:260.250000px;}
.y33_c00228{bottom:265.800000px;}
.y63_c00228{bottom:276.150000px;}
.y32_c00228{bottom:283.800000px;}
.y62_c00228{bottom:295.350000px;}
.y31_c00228{bottom:301.500000px;}
.y61_c00228{bottom:313.650000px;}
.y30_c00228{bottom:319.500000px;}
.y60_c00228{bottom:331.650000px;}
.y2f_c00228{bottom:337.200000px;}
.y5f_c00228{bottom:349.650000px;}
.y2e_c00228{bottom:355.200000px;}
.y5e_c00228{bottom:367.650000px;}
.y2d_c00228{bottom:372.900000px;}
.y5d_c00228{bottom:384.900000px;}
.y2c_c00228{bottom:390.900000px;}
.y5c_c00228{bottom:405.000000px;}
.y2b_c00228{bottom:408.900000px;}
.y5b_c00228{bottom:424.500000px;}
.y2a_c00228{bottom:426.600000px;}
.y5a_c00228{bottom:442.500000px;}
.y29_c00228{bottom:444.600000px;}
.y59_c00228{bottom:460.200000px;}
.y28_c00228{bottom:462.600000px;}
.y58_c00228{bottom:478.950000px;}
.y27_c00228{bottom:480.300000px;}
.y57_c00228{bottom:496.650000px;}
.y26_c00228{bottom:506.400000px;}
.y56_c00228{bottom:514.650000px;}
.y25_c00228{bottom:520.500000px;}
.y55_c00228{bottom:532.350000px;}
.y24_c00228{bottom:533.850000px;}
.y54_c00228{bottom:550.650000px;}
.y23_c00228{bottom:552.300000px;}
.y53_c00228{bottom:568.350000px;}
.y22_c00228{bottom:570.300000px;}
.y21_c00228{bottom:592.500000px;}
.y52_c00228{bottom:601.500000px;}
.y51_c00228{bottom:608.400000px;}
.y20_c00228{bottom:610.500000px;}
.y1f_c00228{bottom:628.500000px;}
.y50_c00228{bottom:644.100000px;}
.y1e_c00228{bottom:649.800000px;}
.y4f_c00228{bottom:666.300000px;}
.y1d_c00228{bottom:668.100000px;}
.y4e_c00228{bottom:674.250000px;}
.y1c_c00228{bottom:694.800000px;}
.y4d_c00228{bottom:696.150000px;}
.y4c_c00228{bottom:701.850000px;}
.y1b_c00228{bottom:712.800000px;}
.y4b_c00228{bottom:719.550000px;}
.y1a_c00228{bottom:730.800000px;}
.y4a_c00228{bottom:737.550000px;}
.y19_c00228{bottom:752.250000px;}
.y49_c00228{bottom:755.250000px;}
.y18_c00228{bottom:769.950000px;}
.y48_c00228{bottom:773.250000px;}
.y17_c00228{bottom:787.950000px;}
.y47_c00228{bottom:791.250000px;}
.y16_c00228{bottom:805.950000px;}
.y46_c00228{bottom:809.250000px;}
.y15_c00228{bottom:823.650000px;}
.y45_c00228{bottom:829.500000px;}
.y44_c00228{bottom:843.900000px;}
.y14_c00228{bottom:845.700000px;}
.y43_c00228{bottom:856.800000px;}
.y13_c00228{bottom:863.700000px;}
.y42_c00228{bottom:875.850000px;}
.y12_c00228{bottom:885.300000px;}
.y41_c00228{bottom:893.850000px;}
.y11_c00228{bottom:904.050000px;}
.y40_c00228{bottom:911.850000px;}
.y10_c00228{bottom:922.050000px;}
.y3f_c00228{bottom:929.550000px;}
.yf_c00228{bottom:939.750000px;}
.y3e_c00228{bottom:951.450000px;}
.ye_c00228{bottom:957.750000px;}
.y3d_c00228{bottom:969.450000px;}
.yd_c00228{bottom:975.750000px;}
.y3c_c00228{bottom:987.150000px;}
.yc_c00228{bottom:993.450000px;}
.y3b_c00228{bottom:1005.150000px;}
.yb_c00228{bottom:1011.150000px;}
.y3a_c00228{bottom:1027.350000px;}
.ya_c00228{bottom:1029.150000px;}
.y39_c00228{bottom:1045.050000px;}
.y9_c00228{bottom:1046.850000px;}
.y8_c00228{bottom:1064.850000px;}
.y38_c00228{bottom:1081.500000px;}
.y7_c00228{bottom:1082.550000px;}
.y37_c00228{bottom:1099.500000px;}
.y6_c00228{bottom:1100.550000px;}
.y4_c00228{bottom:1117.050000px;}
.y5_c00228{bottom:1118.550000px;}
.y3_c00228{bottom:1143.750000px;}
.y1_c00228{bottom:1144.800000px;}
.y2_c00228{bottom:1153.800000px;}
.h8_c00228{height:36.000000px;}
.h3_c00228{height:48.000000px;}
.h7_c00228{height:54.000000px;}
.h4_c00228{height:60.000000px;}
.h5_c00228{height:66.000000px;}
.h6_c00228{height:72.000000px;}
.h2_c00228{height:78.000000px;}
.h1_c00228{height:1274.250000px;}
.h0_c00228{height:1274.400056px;}
.w1_c00228{width:963.000000px;}
.w0_c00228{width:963.359985px;}
.x0_c00228{left:0.000000px;}
.x80_c00228{left:81.750000px;}
.xa8_c00228{left:82.800000px;}
.x8c_c00228{left:83.850000px;}
.x55_c00228{left:84.900000px;}
.xc_c00228{left:86.400000px;}
.xa6_c00228{left:99.000000px;}
.x6f_c00228{left:102.000000px;}
.x12_c00228{left:103.050000px;}
.x30_c00228{left:104.550000px;}
.x81_c00228{left:108.450000px;}
.xa9_c00228{left:111.300000px;}
.x8a_c00228{left:112.500000px;}
.x13_c00228{left:120.000000px;}
.x5a_c00228{left:122.400000px;}
.x63_c00228{left:124.200000px;}
.x1a_c00228{left:127.500000px;}
.x37_c00228{left:129.000000px;}
.x23_c00228{left:130.350000px;}
.x7e_c00228{left:133.500000px;}
.x75_c00228{left:135.300000px;}
.x67_c00228{left:137.550000px;}
.x88_c00228{left:141.000000px;}
.x73_c00228{left:142.350000px;}
.x97_c00228{left:143.400000px;}
.x56_c00228{left:144.600000px;}
.x1b_c00228{left:145.800000px;}
.x94_c00228{left:147.000000px;}
.x3d_c00228{left:150.900000px;}
.x48_c00228{left:153.000000px;}
.x6a_c00228{left:155.100000px;}
.x84_c00228{left:156.600000px;}
.x31_c00228{left:158.550000px;}
.x57_c00228{left:161.850000px;}
.x9b_c00228{left:163.200000px;}
.x74_c00228{left:166.050000px;}
.x85_c00228{left:167.100000px;}
.x27_c00228{left:168.450000px;}
.x70_c00228{left:169.650000px;}
.x14_c00228{left:172.200000px;}
.xd_c00228{left:174.300000px;}
.x5c_c00228{left:176.100000px;}
.xaa_c00228{left:177.450000px;}
.x4f_c00228{left:178.950000px;}
.x32_c00228{left:180.450000px;}
.x76_c00228{left:182.100000px;}
.x1c_c00228{left:185.700000px;}
.x7f_c00228{left:187.500000px;}
.x6b_c00228{left:189.600000px;}
.x15_c00228{left:191.700000px;}
.x24_c00228{left:193.050000px;}
.x28_c00228{left:196.500000px;}
.x33_c00228{left:197.700000px;}
.x3e_c00228{left:200.250000px;}
.x38_c00228{left:202.050000px;}
.x1d_c00228{left:203.700000px;}
.x2d_c00228{left:204.750000px;}
.x49_c00228{left:208.050000px;}
.x9d_c00228{left:209.250000px;}
.x7a_c00228{left:211.200000px;}
.x50_c00228{left:212.850000px;}
.x68_c00228{left:216.450000px;}
.x2e_c00228{left:218.850000px;}
.x64_c00228{left:220.650000px;}
.x89_c00228{left:222.300000px;}
.xe_c00228{left:223.650000px;}
.x1e_c00228{left:226.800000px;}
.x60_c00228{left:231.900000px;}
.x92_c00228{left:235.050000px;}
.xa2_c00228{left:236.550000px;}
.xa7_c00228{left:237.900000px;}
.x9a_c00228{left:240.600000px;}
.x34_c00228{left:241.650000px;}
.xf_c00228{left:243.450000px;}
.x82_c00228{left:245.250000px;}
.xa3_c00228{left:247.200000px;}
.x39_c00228{left:248.550000px;}
.x8f_c00228{left:250.500000px;}
.x3f_c00228{left:252.450000px;}
.x16_c00228{left:254.700000px;}
.x2f_c00228{left:256.650000px;}
.x69_c00228{left:257.850000px;}
.x9c_c00228{left:260.850000px;}
.x7c_c00228{left:263.400000px;}
.x40_c00228{left:265.800000px;}
.x29_c00228{left:268.200000px;}
.x46_c00228{left:270.600000px;}
.x7d_c00228{left:272.100000px;}
.x1f_c00228{left:276.150000px;}
.x3a_c00228{left:277.350000px;}
.x61_c00228{left:279.300000px;}
.x83_c00228{left:280.500000px;}
.x8d_c00228{left:282.300000px;}
.x6c_c00228{left:284.250000px;}
.x41_c00228{left:285.300000px;}
.x54_c00228{left:287.700000px;}
.x98_c00228{left:288.750000px;}
.x86_c00228{left:289.800000px;}
.x77_c00228{left:291.150000px;}
.x5d_c00228{left:292.350000px;}
.x95_c00228{left:293.850000px;}
.x17_c00228{left:295.350000px;}
.x10_c00228{left:297.450000px;}
.x58_c00228{left:298.650000px;}
.x65_c00228{left:299.850000px;}
.x51_c00228{left:301.050000px;}
.x8e_c00228{left:303.600000px;}
.x25_c00228{left:306.750000px;}
.x3b_c00228{left:308.250000px;}
.x9e_c00228{left:309.300000px;}
.xa5_c00228{left:310.350000px;}
.x5b_c00228{left:312.000000px;}
.x4c_c00228{left:315.750000px;}
.x35_c00228{left:316.950000px;}
.x42_c00228{left:321.000000px;}
.x2a_c00228{left:322.500000px;}
.x66_c00228{left:323.550000px;}
.x20_c00228{left:324.750000px;}
.x4a_c00228{left:325.800000px;}
.x1_c00228{left:329.400000px;}
.x11_c00228{left:330.600000px;}
.x90_c00228{left:334.050000px;}
.x96_c00228{left:337.800000px;}
.x71_c00228{left:338.850000px;}
.x87_c00228{left:340.500000px;}
.x7b_c00228{left:345.450000px;}
.x21_c00228{left:347.100000px;}
.x6d_c00228{left:348.300000px;}
.x78_c00228{left:349.800000px;}
.x43_c00228{left:351.600000px;}
.x18_c00228{left:352.950000px;}
.x52_c00228{left:356.100000px;}
.x5e_c00228{left:357.150000px;}
.x36_c00228{left:360.150000px;}
.x9f_c00228{left:361.350000px;}
.x2b_c00228{left:363.150000px;}
.x59_c00228{left:364.950000px;}
.x79_c00228{left:366.750000px;}
.x72_c00228{left:369.150000px;}
.x4d_c00228{left:371.250000px;}
.x8b_c00228{left:372.750000px;}
.x4b_c00228{left:375.450000px;}
.x99_c00228{left:378.450000px;}
.x3c_c00228{left:379.800000px;}
.x91_c00228{left:381.150000px;}
.x93_c00228{left:386.700000px;}
.x44_c00228{left:389.100000px;}
.x47_c00228{left:390.150000px;}
.x53_c00228{left:392.100000px;}
.x2c_c00228{left:393.750000px;}
.x62_c00228{left:398.850000px;}
.x4e_c00228{left:400.800000px;}
.x22_c00228{left:402.900000px;}
.xa1_c00228{left:404.850000px;}
.x5f_c00228{left:406.500000px;}
.x6e_c00228{left:407.700000px;}
.x26_c00228{left:410.400000px;}
.x45_c00228{left:411.750000px;}
.xa4_c00228{left:413.400000px;}
.xa0_c00228{left:416.400000px;}
.x19_c00228{left:419.250000px;}
.x4_c00228{left:434.100000px;}
.x116_c00228{left:441.300000px;}
.xce_c00228{left:442.800000px;}
.x5_c00228{left:444.600000px;}
.x102_c00228{left:451.050000px;}
.x12c_c00228{left:455.100000px;}
.x124_c00228{left:457.350000px;}
.xc2_c00228{left:459.000000px;}
.xab_c00228{left:461.100000px;}
.xfd_c00228{left:465.450000px;}
.xe4_c00228{left:471.450000px;}
.x120_c00228{left:476.850000px;}
.x103_c00228{left:478.050000px;}
.xb5_c00228{left:479.100000px;}
.x117_c00228{left:484.950000px;}
.xcf_c00228{left:486.300000px;}
.x12d_c00228{left:487.800000px;}
.x100_c00228{left:488.850000px;}
.xf8_c00228{left:490.050000px;}
.x130_c00228{left:491.850000px;}
.xb1_c00228{left:493.500000px;}
.xe9_c00228{left:495.600000px;}
.x115_c00228{left:499.500000px;}
.xd8_c00228{left:501.000000px;}
.xfe_c00228{left:502.950000px;}
.x6_c00228{left:505.800000px;}
.xac_c00228{left:507.900000px;}
.xf6_c00228{left:510.150000px;}
.xd5_c00228{left:512.100000px;}
.xe6_c00228{left:514.500000px;}
.xea_c00228{left:515.700000px;}
.x12f_c00228{left:517.650000px;}
.xed_c00228{left:520.800000px;}
.xf9_c00228{left:522.150000px;}
.x134_c00228{left:523.500000px;}
.x7_c00228{left:525.600000px;}
.xb6_c00228{left:527.700000px;}
.x122_c00228{left:529.350000px;}
.xad_c00228{left:532.800000px;}
.xb2_c00228{left:534.600000px;}
.xe7_c00228{left:536.100000px;}
.xf2_c00228{left:537.750000px;}
.xbb_c00228{left:540.000000px;}
.xd9_c00228{left:541.350000px;}
.xfa_c00228{left:542.700000px;}
.x11b_c00228{left:545.100000px;}
.x104_c00228{left:546.450000px;}
.x109_c00228{left:549.750000px;}
.x10c_c00228{left:551.250000px;}
.x118_c00228{left:552.300000px;}
.xae_c00228{left:553.350000px;}
.xd0_c00228{left:554.400000px;}
.xc3_c00228{left:556.500000px;}
.x128_c00228{left:561.300000px;}
.x11c_c00228{left:562.350000px;}
.x12e_c00228{left:564.150000px;}
.xe0_c00228{left:565.200000px;}
.x10f_c00228{left:566.850000px;}
.x105_c00228{left:569.100000px;}
.xc7_c00228{left:570.600000px;}
.x10d_c00228{left:572.550000px;}
.xbc_c00228{left:577.050000px;}
.xb7_c00228{left:579.900000px;}
.x129_c00228{left:581.850000px;}
.xda_c00228{left:583.800000px;}
.xd6_c00228{left:585.450000px;}
.x11d_c00228{left:586.500000px;}
.x119_c00228{left:590.400000px;}
.xff_c00228{left:592.200000px;}
.x112_c00228{left:594.300000px;}
.x8_c00228{left:595.500000px;}
.xf7_c00228{left:598.050000px;}
.x113_c00228{left:599.250000px;}
.xc8_c00228{left:600.900000px;}
.x106_c00228{left:602.550000px;}
.xd1_c00228{left:604.500000px;}
.xf3_c00228{left:605.550000px;}
.x131_c00228{left:606.600000px;}
.xc4_c00228{left:608.700000px;}
.xb3_c00228{left:610.200000px;}
.xee_c00228{left:611.850000px;}
.x10e_c00228{left:613.650000px;}
.xbd_c00228{left:615.600000px;}
.x11e_c00228{left:617.400000px;}
.xeb_c00228{left:619.050000px;}
.xb8_c00228{left:621.000000px;}
.xe1_c00228{left:622.500000px;}
.x12a_c00228{left:626.550000px;}
.xaf_c00228{left:628.650000px;}
.x101_c00228{left:631.050000px;}
.x126_c00228{left:632.400000px;}
.x110_c00228{left:634.500000px;}
.x107_c00228{left:635.700000px;}
.xc9_c00228{left:638.400000px;}
.x135_c00228{left:640.650000px;}
.xbe_c00228{left:644.100000px;}
.x125_c00228{left:648.150000px;}
.x136_c00228{left:649.950000px;}
.x10b_c00228{left:652.200000px;}
.xb0_c00228{left:653.550000px;}
.xca_c00228{left:655.650000px;}
.xc5_c00228{left:657.300000px;}
.x10a_c00228{left:661.800000px;}
.xef_c00228{left:664.800000px;}
.x137_c00228{left:666.450000px;}
.xd2_c00228{left:667.500000px;}
.x108_c00228{left:668.850000px;}
.xd7_c00228{left:671.850000px;}
.x12b_c00228{left:673.650000px;}
.x9_c00228{left:676.200000px;}
.x121_c00228{left:678.000000px;}
.x127_c00228{left:679.200000px;}
.xe2_c00228{left:680.850000px;}
.xdb_c00228{left:683.250000px;}
.xbf_c00228{left:686.250000px;}
.xcb_c00228{left:688.350000px;}
.xec_c00228{left:690.000000px;}
.xfb_c00228{left:691.200000px;}
.xde_c00228{left:695.550000px;}
.xcc_c00228{left:697.050000px;}
.x11f_c00228{left:698.700000px;}
.x132_c00228{left:702.750000px;}
.x11a_c00228{left:704.850000px;}
.xf4_c00228{left:706.050000px;}
.xa_c00228{left:707.100000px;}
.xdc_c00228{left:708.150000px;}
.xe3_c00228{left:709.350000px;}
.xb9_c00228{left:711.750000px;}
.x138_c00228{left:717.150000px;}
.xf0_c00228{left:720.600000px;}
.xcd_c00228{left:721.950000px;}
.xc0_c00228{left:723.300000px;}
.xb4_c00228{left:724.800000px;}
.xdf_c00228{left:726.450000px;}
.xd3_c00228{left:728.400000px;}
.xc6_c00228{left:731.400000px;}
.x133_c00228{left:732.600000px;}
.x123_c00228{left:733.800000px;}
.xba_c00228{left:736.950000px;}
.xc1_c00228{left:738.000000px;}
.xf5_c00228{left:742.350000px;}
.xfc_c00228{left:744.450000px;}
.x139_c00228{left:746.700000px;}
.xd4_c00228{left:748.200000px;}
.x3_c00228{left:751.650000px;}
.xe8_c00228{left:753.450000px;}
.xb_c00228{left:759.000000px;}
.x114_c00228{left:762.000000px;}
.xe5_c00228{left:764.100000px;}
.xdd_c00228{left:766.050000px;}
.xf1_c00228{left:767.400000px;}
.x2_c00228{left:771.150000px;}
.x111_c00228{left:773.400000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws2_c00228{word-spacing:-4.609570pt;}
.ws4_c00228{word-spacing:-2.522523pt;}
.ws1_c00228{word-spacing:-2.470348pt;}
.ws3_c00228{word-spacing:-2.318841pt;}
.ws6_c00228{word-spacing:-1.746631pt;}
.ws0_c00228{word-spacing:-1.267659pt;}
.wsa_c00228{word-spacing:0.000000pt;}
.ws8_c00228{word-spacing:6.666667pt;}
.ws5_c00228{word-spacing:8.148148pt;}
.ws9_c00228{word-spacing:18.362107pt;}
.ws7_c00228{word-spacing:22.857143pt;}
._0_c00228{width:57.460317pt;}
.fs6_c00228{font-size:32.000000pt;}
.fs1_c00228{font-size:42.666667pt;}
.fs5_c00228{font-size:48.000000pt;}
.fs2_c00228{font-size:53.333333pt;}
.fs3_c00228{font-size:58.666667pt;}
.fs4_c00228{font-size:64.000000pt;}
.fs0_c00228{font-size:69.333333pt;}
.y0_c00228{bottom:0.000000pt;}
.y36_c00228{bottom:166.400000pt;}
.y6b_c00228{bottom:167.333333pt;}
.y35_c00228{bottom:179.200000pt;}
.y6a_c00228{bottom:183.333333pt;}
.y34_c00228{bottom:191.733333pt;}
.y68_c00228{bottom:204.533333pt;}
.y66_c00228{bottom:205.733333pt;}
.y69_c00228{bottom:216.933333pt;}
.y67_c00228{bottom:217.333333pt;}
.y65_c00228{bottom:218.533333pt;}
.y64_c00228{bottom:231.333333pt;}
.y33_c00228{bottom:236.266667pt;}
.y63_c00228{bottom:245.466667pt;}
.y32_c00228{bottom:252.266667pt;}
.y62_c00228{bottom:262.533333pt;}
.y31_c00228{bottom:268.000000pt;}
.y61_c00228{bottom:278.800000pt;}
.y30_c00228{bottom:284.000000pt;}
.y60_c00228{bottom:294.800000pt;}
.y2f_c00228{bottom:299.733333pt;}
.y5f_c00228{bottom:310.800000pt;}
.y2e_c00228{bottom:315.733333pt;}
.y5e_c00228{bottom:326.800000pt;}
.y2d_c00228{bottom:331.466667pt;}
.y5d_c00228{bottom:342.133333pt;}
.y2c_c00228{bottom:347.466667pt;}
.y5c_c00228{bottom:360.000000pt;}
.y2b_c00228{bottom:363.466667pt;}
.y5b_c00228{bottom:377.333333pt;}
.y2a_c00228{bottom:379.200000pt;}
.y5a_c00228{bottom:393.333333pt;}
.y29_c00228{bottom:395.200000pt;}
.y59_c00228{bottom:409.066667pt;}
.y28_c00228{bottom:411.200000pt;}
.y58_c00228{bottom:425.733333pt;}
.y27_c00228{bottom:426.933333pt;}
.y57_c00228{bottom:441.466667pt;}
.y26_c00228{bottom:450.133333pt;}
.y56_c00228{bottom:457.466667pt;}
.y25_c00228{bottom:462.666667pt;}
.y55_c00228{bottom:473.200000pt;}
.y24_c00228{bottom:474.533333pt;}
.y54_c00228{bottom:489.466667pt;}
.y23_c00228{bottom:490.933333pt;}
.y53_c00228{bottom:505.200000pt;}
.y22_c00228{bottom:506.933333pt;}
.y21_c00228{bottom:526.666667pt;}
.y52_c00228{bottom:534.666667pt;}
.y51_c00228{bottom:540.800000pt;}
.y20_c00228{bottom:542.666667pt;}
.y1f_c00228{bottom:558.666667pt;}
.y50_c00228{bottom:572.533333pt;}
.y1e_c00228{bottom:577.600000pt;}
.y4f_c00228{bottom:592.266667pt;}
.y1d_c00228{bottom:593.866667pt;}
.y4e_c00228{bottom:599.333333pt;}
.y1c_c00228{bottom:617.600000pt;}
.y4d_c00228{bottom:618.800000pt;}
.y4c_c00228{bottom:623.866667pt;}
.y1b_c00228{bottom:633.600000pt;}
.y4b_c00228{bottom:639.600000pt;}
.y1a_c00228{bottom:649.600000pt;}
.y4a_c00228{bottom:655.600000pt;}
.y19_c00228{bottom:668.666667pt;}
.y49_c00228{bottom:671.333333pt;}
.y18_c00228{bottom:684.400000pt;}
.y48_c00228{bottom:687.333333pt;}
.y17_c00228{bottom:700.400000pt;}
.y47_c00228{bottom:703.333333pt;}
.y16_c00228{bottom:716.400000pt;}
.y46_c00228{bottom:719.333333pt;}
.y15_c00228{bottom:732.133333pt;}
.y45_c00228{bottom:737.333333pt;}
.y44_c00228{bottom:750.133333pt;}
.y14_c00228{bottom:751.733333pt;}
.y43_c00228{bottom:761.600000pt;}
.y13_c00228{bottom:767.733333pt;}
.y42_c00228{bottom:778.533333pt;}
.y12_c00228{bottom:786.933333pt;}
.y41_c00228{bottom:794.533333pt;}
.y11_c00228{bottom:803.600000pt;}
.y40_c00228{bottom:810.533333pt;}
.y10_c00228{bottom:819.600000pt;}
.y3f_c00228{bottom:826.266667pt;}
.yf_c00228{bottom:835.333333pt;}
.y3e_c00228{bottom:845.733333pt;}
.ye_c00228{bottom:851.333333pt;}
.y3d_c00228{bottom:861.733333pt;}
.yd_c00228{bottom:867.333333pt;}
.y3c_c00228{bottom:877.466667pt;}
.yc_c00228{bottom:883.066667pt;}
.y3b_c00228{bottom:893.466667pt;}
.yb_c00228{bottom:898.800000pt;}
.y3a_c00228{bottom:913.200000pt;}
.ya_c00228{bottom:914.800000pt;}
.y39_c00228{bottom:928.933333pt;}
.y9_c00228{bottom:930.533333pt;}
.y8_c00228{bottom:946.533333pt;}
.y38_c00228{bottom:961.333333pt;}
.y7_c00228{bottom:962.266667pt;}
.y37_c00228{bottom:977.333333pt;}
.y6_c00228{bottom:978.266667pt;}
.y4_c00228{bottom:992.933333pt;}
.y5_c00228{bottom:994.266667pt;}
.y3_c00228{bottom:1016.666667pt;}
.y1_c00228{bottom:1017.600000pt;}
.y2_c00228{bottom:1025.600000pt;}
.h8_c00228{height:32.000000pt;}
.h3_c00228{height:42.666667pt;}
.h7_c00228{height:48.000000pt;}
.h4_c00228{height:53.333333pt;}
.h5_c00228{height:58.666667pt;}
.h6_c00228{height:64.000000pt;}
.h2_c00228{height:69.333333pt;}
.h1_c00228{height:1132.666667pt;}
.h0_c00228{height:1132.800049pt;}
.w1_c00228{width:856.000000pt;}
.w0_c00228{width:856.319987pt;}
.x0_c00228{left:0.000000pt;}
.x80_c00228{left:72.666667pt;}
.xa8_c00228{left:73.600000pt;}
.x8c_c00228{left:74.533333pt;}
.x55_c00228{left:75.466667pt;}
.xc_c00228{left:76.800000pt;}
.xa6_c00228{left:88.000000pt;}
.x6f_c00228{left:90.666667pt;}
.x12_c00228{left:91.600000pt;}
.x30_c00228{left:92.933333pt;}
.x81_c00228{left:96.400000pt;}
.xa9_c00228{left:98.933333pt;}
.x8a_c00228{left:100.000000pt;}
.x13_c00228{left:106.666667pt;}
.x5a_c00228{left:108.800000pt;}
.x63_c00228{left:110.400000pt;}
.x1a_c00228{left:113.333333pt;}
.x37_c00228{left:114.666667pt;}
.x23_c00228{left:115.866667pt;}
.x7e_c00228{left:118.666667pt;}
.x75_c00228{left:120.266667pt;}
.x67_c00228{left:122.266667pt;}
.x88_c00228{left:125.333333pt;}
.x73_c00228{left:126.533333pt;}
.x97_c00228{left:127.466667pt;}
.x56_c00228{left:128.533333pt;}
.x1b_c00228{left:129.600000pt;}
.x94_c00228{left:130.666667pt;}
.x3d_c00228{left:134.133333pt;}
.x48_c00228{left:136.000000pt;}
.x6a_c00228{left:137.866667pt;}
.x84_c00228{left:139.200000pt;}
.x31_c00228{left:140.933333pt;}
.x57_c00228{left:143.866667pt;}
.x9b_c00228{left:145.066667pt;}
.x74_c00228{left:147.600000pt;}
.x85_c00228{left:148.533333pt;}
.x27_c00228{left:149.733333pt;}
.x70_c00228{left:150.800000pt;}
.x14_c00228{left:153.066667pt;}
.xd_c00228{left:154.933333pt;}
.x5c_c00228{left:156.533333pt;}
.xaa_c00228{left:157.733333pt;}
.x4f_c00228{left:159.066667pt;}
.x32_c00228{left:160.400000pt;}
.x76_c00228{left:161.866667pt;}
.x1c_c00228{left:165.066667pt;}
.x7f_c00228{left:166.666667pt;}
.x6b_c00228{left:168.533333pt;}
.x15_c00228{left:170.400000pt;}
.x24_c00228{left:171.600000pt;}
.x28_c00228{left:174.666667pt;}
.x33_c00228{left:175.733333pt;}
.x3e_c00228{left:178.000000pt;}
.x38_c00228{left:179.600000pt;}
.x1d_c00228{left:181.066667pt;}
.x2d_c00228{left:182.000000pt;}
.x49_c00228{left:184.933333pt;}
.x9d_c00228{left:186.000000pt;}
.x7a_c00228{left:187.733333pt;}
.x50_c00228{left:189.200000pt;}
.x68_c00228{left:192.400000pt;}
.x2e_c00228{left:194.533333pt;}
.x64_c00228{left:196.133333pt;}
.x89_c00228{left:197.600000pt;}
.xe_c00228{left:198.800000pt;}
.x1e_c00228{left:201.600000pt;}
.x60_c00228{left:206.133333pt;}
.x92_c00228{left:208.933333pt;}
.xa2_c00228{left:210.266667pt;}
.xa7_c00228{left:211.466667pt;}
.x9a_c00228{left:213.866667pt;}
.x34_c00228{left:214.800000pt;}
.xf_c00228{left:216.400000pt;}
.x82_c00228{left:218.000000pt;}
.xa3_c00228{left:219.733333pt;}
.x39_c00228{left:220.933333pt;}
.x8f_c00228{left:222.666667pt;}
.x3f_c00228{left:224.400000pt;}
.x16_c00228{left:226.400000pt;}
.x2f_c00228{left:228.133333pt;}
.x69_c00228{left:229.200000pt;}
.x9c_c00228{left:231.866667pt;}
.x7c_c00228{left:234.133333pt;}
.x40_c00228{left:236.266667pt;}
.x29_c00228{left:238.400000pt;}
.x46_c00228{left:240.533333pt;}
.x7d_c00228{left:241.866667pt;}
.x1f_c00228{left:245.466667pt;}
.x3a_c00228{left:246.533333pt;}
.x61_c00228{left:248.266667pt;}
.x83_c00228{left:249.333333pt;}
.x8d_c00228{left:250.933333pt;}
.x6c_c00228{left:252.666667pt;}
.x41_c00228{left:253.600000pt;}
.x54_c00228{left:255.733333pt;}
.x98_c00228{left:256.666667pt;}
.x86_c00228{left:257.600000pt;}
.x77_c00228{left:258.800000pt;}
.x5d_c00228{left:259.866667pt;}
.x95_c00228{left:261.200000pt;}
.x17_c00228{left:262.533333pt;}
.x10_c00228{left:264.400000pt;}
.x58_c00228{left:265.466667pt;}
.x65_c00228{left:266.533333pt;}
.x51_c00228{left:267.600000pt;}
.x8e_c00228{left:269.866667pt;}
.x25_c00228{left:272.666667pt;}
.x3b_c00228{left:274.000000pt;}
.x9e_c00228{left:274.933333pt;}
.xa5_c00228{left:275.866667pt;}
.x5b_c00228{left:277.333333pt;}
.x4c_c00228{left:280.666667pt;}
.x35_c00228{left:281.733333pt;}
.x42_c00228{left:285.333333pt;}
.x2a_c00228{left:286.666667pt;}
.x66_c00228{left:287.600000pt;}
.x20_c00228{left:288.666667pt;}
.x4a_c00228{left:289.600000pt;}
.x1_c00228{left:292.800000pt;}
.x11_c00228{left:293.866667pt;}
.x90_c00228{left:296.933333pt;}
.x96_c00228{left:300.266667pt;}
.x71_c00228{left:301.200000pt;}
.x87_c00228{left:302.666667pt;}
.x7b_c00228{left:307.066667pt;}
.x21_c00228{left:308.533333pt;}
.x6d_c00228{left:309.600000pt;}
.x78_c00228{left:310.933333pt;}
.x43_c00228{left:312.533333pt;}
.x18_c00228{left:313.733333pt;}
.x52_c00228{left:316.533333pt;}
.x5e_c00228{left:317.466667pt;}
.x36_c00228{left:320.133333pt;}
.x9f_c00228{left:321.200000pt;}
.x2b_c00228{left:322.800000pt;}
.x59_c00228{left:324.400000pt;}
.x79_c00228{left:326.000000pt;}
.x72_c00228{left:328.133333pt;}
.x4d_c00228{left:330.000000pt;}
.x8b_c00228{left:331.333333pt;}
.x4b_c00228{left:333.733333pt;}
.x99_c00228{left:336.400000pt;}
.x3c_c00228{left:337.600000pt;}
.x91_c00228{left:338.800000pt;}
.x93_c00228{left:343.733333pt;}
.x44_c00228{left:345.866667pt;}
.x47_c00228{left:346.800000pt;}
.x53_c00228{left:348.533333pt;}
.x2c_c00228{left:350.000000pt;}
.x62_c00228{left:354.533333pt;}
.x4e_c00228{left:356.266667pt;}
.x22_c00228{left:358.133333pt;}
.xa1_c00228{left:359.866667pt;}
.x5f_c00228{left:361.333333pt;}
.x6e_c00228{left:362.400000pt;}
.x26_c00228{left:364.800000pt;}
.x45_c00228{left:366.000000pt;}
.xa4_c00228{left:367.466667pt;}
.xa0_c00228{left:370.133333pt;}
.x19_c00228{left:372.666667pt;}
.x4_c00228{left:385.866667pt;}
.x116_c00228{left:392.266667pt;}
.xce_c00228{left:393.600000pt;}
.x5_c00228{left:395.200000pt;}
.x102_c00228{left:400.933333pt;}
.x12c_c00228{left:404.533333pt;}
.x124_c00228{left:406.533333pt;}
.xc2_c00228{left:408.000000pt;}
.xab_c00228{left:409.866667pt;}
.xfd_c00228{left:413.733333pt;}
.xe4_c00228{left:419.066667pt;}
.x120_c00228{left:423.866667pt;}
.x103_c00228{left:424.933333pt;}
.xb5_c00228{left:425.866667pt;}
.x117_c00228{left:431.066667pt;}
.xcf_c00228{left:432.266667pt;}
.x12d_c00228{left:433.600000pt;}
.x100_c00228{left:434.533333pt;}
.xf8_c00228{left:435.600000pt;}
.x130_c00228{left:437.200000pt;}
.xb1_c00228{left:438.666667pt;}
.xe9_c00228{left:440.533333pt;}
.x115_c00228{left:444.000000pt;}
.xd8_c00228{left:445.333333pt;}
.xfe_c00228{left:447.066667pt;}
.x6_c00228{left:449.600000pt;}
.xac_c00228{left:451.466667pt;}
.xf6_c00228{left:453.466667pt;}
.xd5_c00228{left:455.200000pt;}
.xe6_c00228{left:457.333333pt;}
.xea_c00228{left:458.400000pt;}
.x12f_c00228{left:460.133333pt;}
.xed_c00228{left:462.933333pt;}
.xf9_c00228{left:464.133333pt;}
.x134_c00228{left:465.333333pt;}
.x7_c00228{left:467.200000pt;}
.xb6_c00228{left:469.066667pt;}
.x122_c00228{left:470.533333pt;}
.xad_c00228{left:473.600000pt;}
.xb2_c00228{left:475.200000pt;}
.xe7_c00228{left:476.533333pt;}
.xf2_c00228{left:478.000000pt;}
.xbb_c00228{left:480.000000pt;}
.xd9_c00228{left:481.200000pt;}
.xfa_c00228{left:482.400000pt;}
.x11b_c00228{left:484.533333pt;}
.x104_c00228{left:485.733333pt;}
.x109_c00228{left:488.666667pt;}
.x10c_c00228{left:490.000000pt;}
.x118_c00228{left:490.933333pt;}
.xae_c00228{left:491.866667pt;}
.xd0_c00228{left:492.800000pt;}
.xc3_c00228{left:494.666667pt;}
.x128_c00228{left:498.933333pt;}
.x11c_c00228{left:499.866667pt;}
.x12e_c00228{left:501.466667pt;}
.xe0_c00228{left:502.400000pt;}
.x10f_c00228{left:503.866667pt;}
.x105_c00228{left:505.866667pt;}
.xc7_c00228{left:507.200000pt;}
.x10d_c00228{left:508.933333pt;}
.xbc_c00228{left:512.933333pt;}
.xb7_c00228{left:515.466667pt;}
.x129_c00228{left:517.200000pt;}
.xda_c00228{left:518.933333pt;}
.xd6_c00228{left:520.400000pt;}
.x11d_c00228{left:521.333333pt;}
.x119_c00228{left:524.800000pt;}
.xff_c00228{left:526.400000pt;}
.x112_c00228{left:528.266667pt;}
.x8_c00228{left:529.333333pt;}
.xf7_c00228{left:531.600000pt;}
.x113_c00228{left:532.666667pt;}
.xc8_c00228{left:534.133333pt;}
.x106_c00228{left:535.600000pt;}
.xd1_c00228{left:537.333333pt;}
.xf3_c00228{left:538.266667pt;}
.x131_c00228{left:539.200000pt;}
.xc4_c00228{left:541.066667pt;}
.xb3_c00228{left:542.400000pt;}
.xee_c00228{left:543.866667pt;}
.x10e_c00228{left:545.466667pt;}
.xbd_c00228{left:547.200000pt;}
.x11e_c00228{left:548.800000pt;}
.xeb_c00228{left:550.266667pt;}
.xb8_c00228{left:552.000000pt;}
.xe1_c00228{left:553.333333pt;}
.x12a_c00228{left:556.933333pt;}
.xaf_c00228{left:558.800000pt;}
.x101_c00228{left:560.933333pt;}
.x126_c00228{left:562.133333pt;}
.x110_c00228{left:564.000000pt;}
.x107_c00228{left:565.066667pt;}
.xc9_c00228{left:567.466667pt;}
.x135_c00228{left:569.466667pt;}
.xbe_c00228{left:572.533333pt;}
.x125_c00228{left:576.133333pt;}
.x136_c00228{left:577.733333pt;}
.x10b_c00228{left:579.733333pt;}
.xb0_c00228{left:580.933333pt;}
.xca_c00228{left:582.800000pt;}
.xc5_c00228{left:584.266667pt;}
.x10a_c00228{left:588.266667pt;}
.xef_c00228{left:590.933333pt;}
.x137_c00228{left:592.400000pt;}
.xd2_c00228{left:593.333333pt;}
.x108_c00228{left:594.533333pt;}
.xd7_c00228{left:597.200000pt;}
.x12b_c00228{left:598.800000pt;}
.x9_c00228{left:601.066667pt;}
.x121_c00228{left:602.666667pt;}
.x127_c00228{left:603.733333pt;}
.xe2_c00228{left:605.200000pt;}
.xdb_c00228{left:607.333333pt;}
.xbf_c00228{left:610.000000pt;}
.xcb_c00228{left:611.866667pt;}
.xec_c00228{left:613.333333pt;}
.xfb_c00228{left:614.400000pt;}
.xde_c00228{left:618.266667pt;}
.xcc_c00228{left:619.600000pt;}
.x11f_c00228{left:621.066667pt;}
.x132_c00228{left:624.666667pt;}
.x11a_c00228{left:626.533333pt;}
.xf4_c00228{left:627.600000pt;}
.xa_c00228{left:628.533333pt;}
.xdc_c00228{left:629.466667pt;}
.xe3_c00228{left:630.533333pt;}
.xb9_c00228{left:632.666667pt;}
.x138_c00228{left:637.466667pt;}
.xf0_c00228{left:640.533333pt;}
.xcd_c00228{left:641.733333pt;}
.xc0_c00228{left:642.933333pt;}
.xb4_c00228{left:644.266667pt;}
.xdf_c00228{left:645.733333pt;}
.xd3_c00228{left:647.466667pt;}
.xc6_c00228{left:650.133333pt;}
.x133_c00228{left:651.200000pt;}
.x123_c00228{left:652.266667pt;}
.xba_c00228{left:655.066667pt;}
.xc1_c00228{left:656.000000pt;}
.xf5_c00228{left:659.866667pt;}
.xfc_c00228{left:661.733333pt;}
.x139_c00228{left:663.733333pt;}
.xd4_c00228{left:665.066667pt;}
.x3_c00228{left:668.133333pt;}
.xe8_c00228{left:669.733333pt;}
.xb_c00228{left:674.666667pt;}
.x114_c00228{left:677.333333pt;}
.xe5_c00228{left:679.200000pt;}
.xdd_c00228{left:680.933333pt;}
.xf1_c00228{left:682.133333pt;}
.x2_c00228{left:685.466667pt;}
.x111_c00228{left:687.466667pt;}
}





/* 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_c00229 {
    display:none;
  }
  .loading-indicator_c00229.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00229 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_c00229 { 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_c00229" -> "#page-container .classname_c00229")
 */
.pf_c00229 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00229 { /* 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_c00229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00229 { /* 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_c00229 { /* 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_c00229 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00229 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00229 {overflow:visible;}
  }
}
.c_c00229 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00229 { /* 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_c00229:after { /* webkit #35443 */
  content: '';
}
.t_c00229:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00229 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 */
}
.__c00229 { /* 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_c00229 { /* info for Javascript */
  display:none;
}
.l_c00229 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00229 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00229 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00229: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_c00229 {
    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_c00229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00229.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_c00229 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00229;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.000000;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;}
.m5f_c00229{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m109_c00229{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00229{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m94_c00229{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m100_c00229{transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);}
.m93_c00229{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m9_c00229{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00229{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m38_c00229{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00229{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00229{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m27_c00229{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m44_c00229{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00229{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00229{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00229{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00229{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00229{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.meb_c00229{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00229{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.md3_c00229{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00229{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00229{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m24_c00229{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m6_c00229{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00229{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00229{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00229{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00229{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m42_c00229{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md6_c00229{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m10_c00229{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00229{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md8_c00229{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me_c00229{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00229{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m37_c00229{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m90_c00229{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m32_c00229{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00229{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00229{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m28_c00229{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00229{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mae_c00229{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m78_c00229{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00229{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m52_c00229{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00229{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mab_c00229{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mb_c00229{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m73_c00229{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.maf_c00229{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m15_c00229{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00229{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.md7_c00229{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m34_c00229{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m57_c00229{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00229{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m55_c00229{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00229{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m11_c00229{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.me2_c00229{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00229{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00229{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m41_c00229{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00229{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m30_c00229{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md9_c00229{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00229{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00229{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m4_c00229{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m50_c00229{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m58_c00229{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00229{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00229{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m29_c00229{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m95_c00229{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00229{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mad_c00229{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00229{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m68_c00229{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00229{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m12_c00229{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00229{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m53_c00229{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m43_c00229{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me7_c00229{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00229{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m54_c00229{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m45_c00229{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m14_c00229{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00229{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00229{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m70_c00229{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00229{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma_c00229{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00229{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m101_c00229{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md5_c00229{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m47_c00229{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m85_c00229{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m39_c00229{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00229{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00229{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00229{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m77_c00229{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00229{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m49_c00229{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00229{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00229{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00229{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00229{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf_c00229{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.md_c00229{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00229{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m26_c00229{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00229{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m67_c00229{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00229{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m80_c00229{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m13_c00229{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m61_c00229{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.me6_c00229{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00229{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00229{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00229{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m7_c00229{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m23_c00229{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00229{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m33_c00229{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m84_c00229{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m46_c00229{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00229{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5_c00229{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00229{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m8_c00229{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00229{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2_c00229{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m36_c00229{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m74_c00229{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00229{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m48_c00229{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00229{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m106_c00229{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me4_c00229{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me5_c00229{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m22_c00229{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00229{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m66_c00229{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00229{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m40_c00229{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00229{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m20_c00229{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.maa_c00229{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m76_c00229{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00229{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m104_c00229{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m16_c00229{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md2_c00229{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m60_c00229{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mee_c00229{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00229{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mc_c00229{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00229{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00229{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m71_c00229{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.me8_c00229{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mca_c00229{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md0_c00229{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m82_c00229{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00229{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m65_c00229{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00229{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m75_c00229{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m19_c00229{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00229{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00229{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00229{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mff_c00229{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me9_c00229{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00229{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00229{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m88_c00229{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m18_c00229{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m25_c00229{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m86_c00229{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00229{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00229{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00229{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m17_c00229{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m79_c00229{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00229{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m108_c00229{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md4_c00229{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00229{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mef_c00229{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00229{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.me1_c00229{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00229{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00229{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00229{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00229{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md1_c00229{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m105_c00229{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00229{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00229{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00229{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m83_c00229{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00229{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00229{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m31_c00229{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mda_c00229{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m64_c00229{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m59_c00229{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m35_c00229{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m89_c00229{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00229{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m63_c00229{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m51_c00229{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00229{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me3_c00229{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mec_c00229{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00229{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m107_c00229{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);}
.m7b_c00229{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00229{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00229{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00229{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mac_c00229{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00229{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mea_c00229{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m69_c00229{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00229{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.med_c00229{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00229{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me0_c00229{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mde_c00229{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00229{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m81_c00229{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m21_c00229{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m0_c00229{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m87_c00229{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00229{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00229{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00229{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m98_c00229{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00229{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m103_c00229{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00229{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00229{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mba_c00229{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00229{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m72_c00229{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00229{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00229{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m56_c00229{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m62_c00229{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mce_c00229{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m102_c00229{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00229{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m97_c00229{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m92_c00229{transform:matrix(0.386250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386250,0.000000,0.000000,0.250000,0,0);}
.m91_c00229{transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(0.473000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473000,0.000000,0.000000,0.250000,0,0);}
.m99_c00229{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m96_c00229{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls0_c00229{letter-spacing:0.000000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{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__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00229{word-spacing:-17.361702px;}
.ws3_c00229{word-spacing:-12.898089px;}
.ws1_c00229{word-spacing:-9.818182px;}
.ws7_c00229{word-spacing:-7.406569px;}
.ws4_c00229{word-spacing:-7.333333px;}
.ws9_c00229{word-spacing:0.000000px;}
.ws8_c00229{word-spacing:3.026316px;}
.ws6_c00229{word-spacing:3.902439px;}
.ws2_c00229{word-spacing:15.503817px;}
.ws5_c00229{word-spacing:23.333333px;}
.fc0_c00229{color:transparent;}
.fs6_c00229{font-size:36.000000px;}
.fs5_c00229{font-size:48.000000px;}
.fs4_c00229{font-size:60.000000px;}
.fs3_c00229{font-size:66.000000px;}
.fs0_c00229{font-size:72.000000px;}
.fs1_c00229{font-size:84.000000px;}
.fs2_c00229{font-size:96.000000px;}
.y0_c00229{bottom:0.000000px;}
.y5e_c00229{bottom:200.850000px;}
.y62_c00229{bottom:208.050000px;}
.y61_c00229{bottom:216.750000px;}
.y5d_c00229{bottom:223.950000px;}
.y60_c00229{bottom:243.300000px;}
.y5c_c00229{bottom:245.550000px;}
.y5f_c00229{bottom:261.300000px;}
.y5b_c00229{bottom:267.450000px;}
.y5a_c00229{bottom:285.150000px;}
.y2c_c00229{bottom:303.000000px;}
.y59_c00229{bottom:305.700000px;}
.y2b_c00229{bottom:320.700000px;}
.y58_c00229{bottom:323.700000px;}
.y2a_c00229{bottom:338.400000px;}
.y57_c00229{bottom:341.700000px;}
.y29_c00229{bottom:356.700000px;}
.y56_c00229{bottom:359.700000px;}
.y55_c00229{bottom:377.700000px;}
.y28_c00229{bottom:378.300000px;}
.y54_c00229{bottom:395.700000px;}
.y27_c00229{bottom:400.650000px;}
.y53_c00229{bottom:413.400000px;}
.y26_c00229{bottom:418.650000px;}
.y52_c00229{bottom:431.400000px;}
.y51_c00229{bottom:449.400000px;}
.y24_c00229{bottom:451.800000px;}
.y25_c00229{bottom:452.100000px;}
.y50_c00229{bottom:467.100000px;}
.y23_c00229{bottom:471.300000px;}
.y22_c00229{bottom:481.650000px;}
.y4f_c00229{bottom:484.800000px;}
.y4e_c00229{bottom:502.800000px;}
.y21_c00229{bottom:507.600000px;}
.y4d_c00229{bottom:520.800000px;}
.y20_c00229{bottom:530.700000px;}
.y4c_c00229{bottom:538.800000px;}
.y4b_c00229{bottom:556.800000px;}
.y3_c00229{bottom:560.550000px;}
.y4a_c00229{bottom:574.800000px;}
.y49_c00229{bottom:592.800000px;}
.y1f_c00229{bottom:604.500000px;}
.y48_c00229{bottom:610.800000px;}
.y47_c00229{bottom:628.500000px;}
.y1e_c00229{bottom:644.100000px;}
.y46_c00229{bottom:646.500000px;}
.y1d_c00229{bottom:662.100000px;}
.y45_c00229{bottom:664.500000px;}
.y1c_c00229{bottom:680.100000px;}
.y44_c00229{bottom:682.200000px;}
.y1b_c00229{bottom:698.100000px;}
.y43_c00229{bottom:700.200000px;}
.y1a_c00229{bottom:716.100000px;}
.y42_c00229{bottom:725.400000px;}
.y19_c00229{bottom:734.100000px;}
.y41_c00229{bottom:740.100000px;}
.y18_c00229{bottom:752.100000px;}
.y40_c00229{bottom:754.200000px;}
.y3f_c00229{bottom:768.900000px;}
.y17_c00229{bottom:770.100000px;}
.y3e_c00229{bottom:783.000000px;}
.y16_c00229{bottom:788.100000px;}
.y3d_c00229{bottom:803.100000px;}
.y15_c00229{bottom:806.100000px;}
.y3c_c00229{bottom:820.800000px;}
.y14_c00229{bottom:823.350000px;}
.y3b_c00229{bottom:843.300000px;}
.y13_c00229{bottom:850.200000px;}
.y3a_c00229{bottom:861.300000px;}
.y12_c00229{bottom:868.200000px;}
.y39_c00229{bottom:879.000000px;}
.y11_c00229{bottom:886.200000px;}
.y38_c00229{bottom:897.300000px;}
.y10_c00229{bottom:904.200000px;}
.y37_c00229{bottom:915.000000px;}
.yf_c00229{bottom:921.900000px;}
.y36_c00229{bottom:932.700000px;}
.ye_c00229{bottom:939.900000px;}
.y35_c00229{bottom:954.750000px;}
.yd_c00229{bottom:957.600000px;}
.y34_c00229{bottom:972.750000px;}
.yc_c00229{bottom:975.600000px;}
.yb_c00229{bottom:1002.300000px;}
.y33_c00229{bottom:1004.100000px;}
.ya_c00229{bottom:1020.300000px;}
.y32_c00229{bottom:1022.400000px;}
.y9_c00229{bottom:1038.000000px;}
.y31_c00229{bottom:1044.000000px;}
.y8_c00229{bottom:1055.700000px;}
.y30_c00229{bottom:1066.950000px;}
.y7_c00229{bottom:1073.700000px;}
.y2f_c00229{bottom:1084.650000px;}
.y6_c00229{bottom:1091.400000px;}
.y2e_c00229{bottom:1106.700000px;}
.y5_c00229{bottom:1109.100000px;}
.y2d_c00229{bottom:1125.000000px;}
.y4_c00229{bottom:1127.100000px;}
.y2_c00229{bottom:1152.000000px;}
.y1_c00229{bottom:1154.100000px;}
.h8_c00229{height:36.000000px;}
.h7_c00229{height:48.000000px;}
.h6_c00229{height:60.000000px;}
.h5_c00229{height:66.000000px;}
.h2_c00229{height:72.000000px;}
.h3_c00229{height:84.000000px;}
.h4_c00229{height:96.000000px;}
.h1_c00229{height:1272.000000px;}
.h0_c00229{height:1272.239960px;}
.w1_c00229{width:963.000000px;}
.w0_c00229{width:963.359985px;}
.x0_c00229{left:0.000000px;}
.x1_c00229{left:188.250000px;}
.x34_c00229{left:190.500000px;}
.x80_c00229{left:191.550000px;}
.x5_c00229{left:207.300000px;}
.x15_c00229{left:208.350000px;}
.xe_c00229{left:209.400000px;}
.x8f_c00229{left:210.450000px;}
.x126_c00229{left:223.950000px;}
.x16_c00229{left:226.050000px;}
.x85_c00229{left:227.550000px;}
.x6_c00229{left:228.600000px;}
.x87_c00229{left:229.650000px;}
.x84_c00229{left:231.450000px;}
.x2b_c00229{left:235.800000px;}
.x4e_c00229{left:237.750000px;}
.x86_c00229{left:239.100000px;}
.xf_c00229{left:240.750000px;}
.x75_c00229{left:242.850000px;}
.x7_c00229{left:244.500000px;}
.x17_c00229{left:247.650000px;}
.x8a_c00229{left:248.850000px;}
.x2c_c00229{left:251.250000px;}
.x32_c00229{left:252.750000px;}
.x41_c00229{left:255.900000px;}
.x59_c00229{left:258.600000px;}
.x1b_c00229{left:260.850000px;}
.x24_c00229{left:263.850000px;}
.x5d_c00229{left:265.050000px;}
.x21_c00229{left:267.150000px;}
.x8d_c00229{left:268.650000px;}
.x4a_c00229{left:270.300000px;}
.x25_c00229{left:272.550000px;}
.x42_c00229{left:273.600000px;}
.x76_c00229{left:276.000000px;}
.x61_c00229{left:277.200000px;}
.x53_c00229{left:278.550000px;}
.x7e_c00229{left:279.750000px;}
.x8b_c00229{left:281.550000px;}
.x6c_c00229{left:283.500000px;}
.x5a_c00229{left:284.850000px;}
.x128_c00229{left:286.200000px;}
.x33_c00229{left:288.450000px;}
.x7f_c00229{left:291.600000px;}
.x2d_c00229{left:292.650000px;}
.x8_c00229{left:294.900000px;}
.x7d_c00229{left:296.250000px;}
.x35_c00229{left:298.500000px;}
.x3a_c00229{left:299.700000px;}
.x7c_c00229{left:301.350000px;}
.x54_c00229{left:303.000000px;}
.x6d_c00229{left:304.800000px;}
.x81_c00229{left:306.450000px;}
.x1c_c00229{left:309.750000px;}
.x26_c00229{left:311.850000px;}
.x10_c00229{left:313.050000px;}
.x4f_c00229{left:314.850000px;}
.x65_c00229{left:316.950000px;}
.x36_c00229{left:318.000000px;}
.x68_c00229{left:319.950000px;}
.x4b_c00229{left:321.750000px;}
.x88_c00229{left:322.950000px;}
.x3b_c00229{left:324.600000px;}
.x62_c00229{left:326.250000px;}
.x1d_c00229{left:329.850000px;}
.x43_c00229{left:330.900000px;}
.x4c_c00229{left:333.600000px;}
.x3c_c00229{left:334.650000px;}
.x6f_c00229{left:336.000000px;}
.x5b_c00229{left:337.950000px;}
.x69_c00229{left:341.550000px;}
.x50_c00229{left:343.650000px;}
.x55_c00229{left:344.700000px;}
.x18_c00229{left:346.350000px;}
.x3d_c00229{left:348.300000px;}
.x3_c00229{left:351.000000px;}
.x2e_c00229{left:352.050000px;}
.x6e_c00229{left:353.100000px;}
.x8e_c00229{left:355.500000px;}
.x47_c00229{left:356.700000px;}
.x27_c00229{left:360.450000px;}
.x71_c00229{left:361.650000px;}
.x4_c00229{left:363.900000px;}
.x9_c00229{left:367.200000px;}
.x56_c00229{left:369.600000px;}
.x11_c00229{left:372.150000px;}
.x5e_c00229{left:374.100000px;}
.xa_c00229{left:376.500000px;}
.x127_c00229{left:379.050000px;}
.x77_c00229{left:380.100000px;}
.x82_c00229{left:381.300000px;}
.x121_c00229{left:384.600000px;}
.x2f_c00229{left:387.000000px;}
.x28_c00229{left:388.200000px;}
.x48_c00229{left:390.900000px;}
.x1e_c00229{left:392.550000px;}
.x5f_c00229{left:394.200000px;}
.x8c_c00229{left:396.000000px;}
.x78_c00229{left:397.050000px;}
.x51_c00229{left:398.700000px;}
.x57_c00229{left:400.500000px;}
.x22_c00229{left:403.950000px;}
.x3e_c00229{left:405.600000px;}
.x44_c00229{left:406.950000px;}
.xb_c00229{left:410.400000px;}
.x12_c00229{left:412.800000px;}
.x63_c00229{left:414.900000px;}
.x19_c00229{left:416.850000px;}
.x1f_c00229{left:418.050000px;}
.x83_c00229{left:419.100000px;}
.x90_c00229{left:421.350000px;}
.x37_c00229{left:423.150000px;}
.x30_c00229{left:424.800000px;}
.x2_c00229{left:426.150000px;}
.x3f_c00229{left:429.000000px;}
.x5c_c00229{left:430.800000px;}
.x38_c00229{left:431.850000px;}
.x66_c00229{left:433.950000px;}
.x4d_c00229{left:435.450000px;}
.x72_c00229{left:436.500000px;}
.x6b_c00229{left:438.600000px;}
.x79_c00229{left:440.550000px;}
.x45_c00229{left:445.800000px;}
.x70_c00229{left:446.850000px;}
.x52_c00229{left:449.100000px;}
.x31_c00229{left:453.300000px;}
.x7a_c00229{left:456.000000px;}
.x1a_c00229{left:458.550000px;}
.x67_c00229{left:459.900000px;}
.x73_c00229{left:460.950000px;}
.x23_c00229{left:462.150000px;}
.x91_c00229{left:465.150000px;}
.xc_c00229{left:466.200000px;}
.x13_c00229{left:468.600000px;}
.x60_c00229{left:477.750000px;}
.x39_c00229{left:479.400000px;}
.x20_c00229{left:481.350000px;}
.x29_c00229{left:483.600000px;}
.x74_c00229{left:485.850000px;}
.x64_c00229{left:486.900000px;}
.xd_c00229{left:488.100000px;}
.x14_c00229{left:489.900000px;}
.x46_c00229{left:498.000000px;}
.x40_c00229{left:501.000000px;}
.x7b_c00229{left:502.500000px;}
.x49_c00229{left:506.850000px;}
.x58_c00229{left:508.200000px;}
.x89_c00229{left:509.850000px;}
.x6a_c00229{left:512.100000px;}
.x2a_c00229{left:519.900000px;}
.xaf_c00229{left:546.150000px;}
.x122_c00229{left:549.150000px;}
.xe7_c00229{left:559.500000px;}
.x99_c00229{left:561.600000px;}
.xae_c00229{left:563.400000px;}
.xd5_c00229{left:564.750000px;}
.x129_c00229{left:567.000000px;}
.xf7_c00229{left:573.300000px;}
.xee_c00229{left:574.500000px;}
.x92_c00229{left:579.900000px;}
.xfc_c00229{left:580.950000px;}
.xa6_c00229{left:582.450000px;}
.xca_c00229{left:584.550000px;}
.xb0_c00229{left:588.300000px;}
.xd9_c00229{left:591.900000px;}
.xe8_c00229{left:592.950000px;}
.xce_c00229{left:595.050000px;}
.x110_c00229{left:599.100000px;}
.x113_c00229{left:600.750000px;}
.xcf_c00229{left:604.350000px;}
.x9a_c00229{left:606.300000px;}
.x119_c00229{left:608.850000px;}
.xbc_c00229{left:610.050000px;}
.x123_c00229{left:611.400000px;}
.xc2_c00229{left:613.350000px;}
.x11d_c00229{left:614.400000px;}
.xfd_c00229{left:617.700000px;}
.x93_c00229{left:620.250000px;}
.xb1_c00229{left:622.200000px;}
.xa3_c00229{left:624.450000px;}
.xd0_c00229{left:627.000000px;}
.xa7_c00229{left:628.200000px;}
.xf8_c00229{left:631.200000px;}
.xbd_c00229{left:632.700000px;}
.x105_c00229{left:633.900000px;}
.x120_c00229{left:635.100000px;}
.xe0_c00229{left:637.650000px;}
.xf2_c00229{left:638.850000px;}
.xcb_c00229{left:641.400000px;}
.xb6_c00229{left:643.650000px;}
.xe9_c00229{left:646.200000px;}
.x115_c00229{left:647.850000px;}
.x12e_c00229{left:649.050000px;}
.xc3_c00229{left:650.100000px;}
.x102_c00229{left:653.850000px;}
.xa4_c00229{left:655.050000px;}
.xd6_c00229{left:656.550000px;}
.xf3_c00229{left:658.350000px;}
.xda_c00229{left:660.000000px;}
.x11b_c00229{left:661.050000px;}
.xb7_c00229{left:664.500000px;}
.x9b_c00229{left:665.700000px;}
.xbe_c00229{left:667.650000px;}
.x9e_c00229{left:669.150000px;}
.xf4_c00229{left:674.550000px;}
.xa5_c00229{left:676.950000px;}
.x11c_c00229{left:678.000000px;}
.x108_c00229{left:679.200000px;}
.x10c_c00229{left:680.850000px;}
.xfe_c00229{left:683.850000px;}
.xe1_c00229{left:686.100000px;}
.xc4_c00229{left:687.900000px;}
.x94_c00229{left:689.400000px;}
.xb8_c00229{left:690.450000px;}
.x11e_c00229{left:691.800000px;}
.xea_c00229{left:694.800000px;}
.xf9_c00229{left:697.050000px;}
.x100_c00229{left:700.350000px;}
.xb2_c00229{left:701.700000px;}
.x103_c00229{left:703.500000px;}
.x117_c00229{left:704.550000px;}
.x12c_c00229{left:705.600000px;}
.x95_c00229{left:706.650000px;}
.xd1_c00229{left:707.700000px;}
.xaa_c00229{left:709.200000px;}
.xfa_c00229{left:710.700000px;}
.x9c_c00229{left:712.500000px;}
.xa8_c00229{left:715.950000px;}
.xc5_c00229{left:717.450000px;}
.x10d_c00229{left:718.950000px;}
.x116_c00229{left:720.150000px;}
.xe2_c00229{left:722.400000px;}
.xf5_c00229{left:723.450000px;}
.xbf_c00229{left:724.950000px;}
.xb3_c00229{left:726.600000px;}
.x10e_c00229{left:728.700000px;}
.x9d_c00229{left:729.750000px;}
.xcc_c00229{left:731.400000px;}
.xa9_c00229{left:734.250000px;}
.xb9_c00229{left:735.900000px;}
.x12d_c00229{left:736.950000px;}
.x11f_c00229{left:738.600000px;}
.xdb_c00229{left:741.750000px;}
.xab_c00229{left:743.700000px;}
.xeb_c00229{left:746.250000px;}
.x9f_c00229{left:747.300000px;}
.xf0_c00229{left:749.100000px;}
.xc0_c00229{left:752.700000px;}
.x109_c00229{left:757.350000px;}
.xdc_c00229{left:760.050000px;}
.x106_c00229{left:762.450000px;}
.x11a_c00229{left:764.550000px;}
.xa0_c00229{left:766.350000px;}
.xb4_c00229{left:768.300000px;}
.x12f_c00229{left:770.400000px;}
.xd2_c00229{left:771.450000px;}
.xcd_c00229{left:772.500000px;}
.x112_c00229{left:774.150000px;}
.xf6_c00229{left:776.400000px;}
.x10a_c00229{left:777.450000px;}
.xe3_c00229{left:778.500000px;}
.xd3_c00229{left:780.450000px;}
.xba_c00229{left:783.450000px;}
.x124_c00229{left:784.500000px;}
.x96_c00229{left:786.600000px;}
.xc1_c00229{left:787.650000px;}
.xc6_c00229{left:789.450000px;}
.xd7_c00229{left:790.500000px;}
.xff_c00229{left:792.150000px;}
.xac_c00229{left:795.900000px;}
.x97_c00229{left:797.400000px;}
.xe4_c00229{left:802.200000px;}
.xdd_c00229{left:803.250000px;}
.x10b_c00229{left:807.000000px;}
.xef_c00229{left:810.300000px;}
.xa1_c00229{left:811.350000px;}
.xec_c00229{left:812.850000px;}
.xad_c00229{left:813.900000px;}
.x118_c00229{left:816.150000px;}
.xd4_c00229{left:818.550000px;}
.x12a_c00229{left:819.750000px;}
.x125_c00229{left:821.250000px;}
.xde_c00229{left:823.050000px;}
.xb5_c00229{left:824.400000px;}
.xbb_c00229{left:825.600000px;}
.x114_c00229{left:826.950000px;}
.xe5_c00229{left:832.800000px;}
.xc7_c00229{left:834.150000px;}
.x107_c00229{left:835.200000px;}
.x104_c00229{left:838.800000px;}
.xed_c00229{left:839.850000px;}
.xd8_c00229{left:840.900000px;}
.x98_c00229{left:842.400000px;}
.xfb_c00229{left:844.500000px;}
.xa2_c00229{left:846.600000px;}
.xc8_c00229{left:849.600000px;}
.x111_c00229{left:853.800000px;}
.xdf_c00229{left:859.050000px;}
.xf1_c00229{left:862.500000px;}
.x130_c00229{left:864.750000px;}
.xe6_c00229{left:867.000000px;}
.xc9_c00229{left:869.400000px;}
.x10f_c00229{left:870.900000px;}
.x12b_c00229{left:873.750000px;}
.x101_c00229{left:878.550000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws0_c00229{word-spacing:-15.432624pt;}
.ws3_c00229{word-spacing:-11.464968pt;}
.ws1_c00229{word-spacing:-8.727273pt;}
.ws7_c00229{word-spacing:-6.583616pt;}
.ws4_c00229{word-spacing:-6.518519pt;}
.ws9_c00229{word-spacing:0.000000pt;}
.ws8_c00229{word-spacing:2.690058pt;}
.ws6_c00229{word-spacing:3.468835pt;}
.ws2_c00229{word-spacing:13.781170pt;}
.ws5_c00229{word-spacing:20.740741pt;}
.fs6_c00229{font-size:32.000000pt;}
.fs5_c00229{font-size:42.666667pt;}
.fs4_c00229{font-size:53.333333pt;}
.fs3_c00229{font-size:58.666667pt;}
.fs0_c00229{font-size:64.000000pt;}
.fs1_c00229{font-size:74.666667pt;}
.fs2_c00229{font-size:85.333333pt;}
.y0_c00229{bottom:0.000000pt;}
.y5e_c00229{bottom:178.533333pt;}
.y62_c00229{bottom:184.933333pt;}
.y61_c00229{bottom:192.666667pt;}
.y5d_c00229{bottom:199.066667pt;}
.y60_c00229{bottom:216.266667pt;}
.y5c_c00229{bottom:218.266667pt;}
.y5f_c00229{bottom:232.266667pt;}
.y5b_c00229{bottom:237.733333pt;}
.y5a_c00229{bottom:253.466667pt;}
.y2c_c00229{bottom:269.333333pt;}
.y59_c00229{bottom:271.733333pt;}
.y2b_c00229{bottom:285.066667pt;}
.y58_c00229{bottom:287.733333pt;}
.y2a_c00229{bottom:300.800000pt;}
.y57_c00229{bottom:303.733333pt;}
.y29_c00229{bottom:317.066667pt;}
.y56_c00229{bottom:319.733333pt;}
.y55_c00229{bottom:335.733333pt;}
.y28_c00229{bottom:336.266667pt;}
.y54_c00229{bottom:351.733333pt;}
.y27_c00229{bottom:356.133333pt;}
.y53_c00229{bottom:367.466667pt;}
.y26_c00229{bottom:372.133333pt;}
.y52_c00229{bottom:383.466667pt;}
.y51_c00229{bottom:399.466667pt;}
.y24_c00229{bottom:401.600000pt;}
.y25_c00229{bottom:401.866667pt;}
.y50_c00229{bottom:415.200000pt;}
.y23_c00229{bottom:418.933333pt;}
.y22_c00229{bottom:428.133333pt;}
.y4f_c00229{bottom:430.933333pt;}
.y4e_c00229{bottom:446.933333pt;}
.y21_c00229{bottom:451.200000pt;}
.y4d_c00229{bottom:462.933333pt;}
.y20_c00229{bottom:471.733333pt;}
.y4c_c00229{bottom:478.933333pt;}
.y4b_c00229{bottom:494.933333pt;}
.y3_c00229{bottom:498.266667pt;}
.y4a_c00229{bottom:510.933333pt;}
.y49_c00229{bottom:526.933333pt;}
.y1f_c00229{bottom:537.333333pt;}
.y48_c00229{bottom:542.933333pt;}
.y47_c00229{bottom:558.666667pt;}
.y1e_c00229{bottom:572.533333pt;}
.y46_c00229{bottom:574.666667pt;}
.y1d_c00229{bottom:588.533333pt;}
.y45_c00229{bottom:590.666667pt;}
.y1c_c00229{bottom:604.533333pt;}
.y44_c00229{bottom:606.400000pt;}
.y1b_c00229{bottom:620.533333pt;}
.y43_c00229{bottom:622.400000pt;}
.y1a_c00229{bottom:636.533333pt;}
.y42_c00229{bottom:644.800000pt;}
.y19_c00229{bottom:652.533333pt;}
.y41_c00229{bottom:657.866667pt;}
.y18_c00229{bottom:668.533333pt;}
.y40_c00229{bottom:670.400000pt;}
.y3f_c00229{bottom:683.466667pt;}
.y17_c00229{bottom:684.533333pt;}
.y3e_c00229{bottom:696.000000pt;}
.y16_c00229{bottom:700.533333pt;}
.y3d_c00229{bottom:713.866667pt;}
.y15_c00229{bottom:716.533333pt;}
.y3c_c00229{bottom:729.600000pt;}
.y14_c00229{bottom:731.866667pt;}
.y3b_c00229{bottom:749.600000pt;}
.y13_c00229{bottom:755.733333pt;}
.y3a_c00229{bottom:765.600000pt;}
.y12_c00229{bottom:771.733333pt;}
.y39_c00229{bottom:781.333333pt;}
.y11_c00229{bottom:787.733333pt;}
.y38_c00229{bottom:797.600000pt;}
.y10_c00229{bottom:803.733333pt;}
.y37_c00229{bottom:813.333333pt;}
.yf_c00229{bottom:819.466667pt;}
.y36_c00229{bottom:829.066667pt;}
.ye_c00229{bottom:835.466667pt;}
.y35_c00229{bottom:848.666667pt;}
.yd_c00229{bottom:851.200000pt;}
.y34_c00229{bottom:864.666667pt;}
.yc_c00229{bottom:867.200000pt;}
.yb_c00229{bottom:890.933333pt;}
.y33_c00229{bottom:892.533333pt;}
.ya_c00229{bottom:906.933333pt;}
.y32_c00229{bottom:908.800000pt;}
.y9_c00229{bottom:922.666667pt;}
.y31_c00229{bottom:928.000000pt;}
.y8_c00229{bottom:938.400000pt;}
.y30_c00229{bottom:948.400000pt;}
.y7_c00229{bottom:954.400000pt;}
.y2f_c00229{bottom:964.133333pt;}
.y6_c00229{bottom:970.133333pt;}
.y2e_c00229{bottom:983.733333pt;}
.y5_c00229{bottom:985.866667pt;}
.y2d_c00229{bottom:1000.000000pt;}
.y4_c00229{bottom:1001.866667pt;}
.y2_c00229{bottom:1024.000000pt;}
.y1_c00229{bottom:1025.866667pt;}
.h8_c00229{height:32.000000pt;}
.h7_c00229{height:42.666667pt;}
.h6_c00229{height:53.333333pt;}
.h5_c00229{height:58.666667pt;}
.h2_c00229{height:64.000000pt;}
.h3_c00229{height:74.666667pt;}
.h4_c00229{height:85.333333pt;}
.h1_c00229{height:1130.666667pt;}
.h0_c00229{height:1130.879964pt;}
.w1_c00229{width:856.000000pt;}
.w0_c00229{width:856.319987pt;}
.x0_c00229{left:0.000000pt;}
.x1_c00229{left:167.333333pt;}
.x34_c00229{left:169.333333pt;}
.x80_c00229{left:170.266667pt;}
.x5_c00229{left:184.266667pt;}
.x15_c00229{left:185.200000pt;}
.xe_c00229{left:186.133333pt;}
.x8f_c00229{left:187.066667pt;}
.x126_c00229{left:199.066667pt;}
.x16_c00229{left:200.933333pt;}
.x85_c00229{left:202.266667pt;}
.x6_c00229{left:203.200000pt;}
.x87_c00229{left:204.133333pt;}
.x84_c00229{left:205.733333pt;}
.x2b_c00229{left:209.600000pt;}
.x4e_c00229{left:211.333333pt;}
.x86_c00229{left:212.533333pt;}
.xf_c00229{left:214.000000pt;}
.x75_c00229{left:215.866667pt;}
.x7_c00229{left:217.333333pt;}
.x17_c00229{left:220.133333pt;}
.x8a_c00229{left:221.200000pt;}
.x2c_c00229{left:223.333333pt;}
.x32_c00229{left:224.666667pt;}
.x41_c00229{left:227.466667pt;}
.x59_c00229{left:229.866667pt;}
.x1b_c00229{left:231.866667pt;}
.x24_c00229{left:234.533333pt;}
.x5d_c00229{left:235.600000pt;}
.x21_c00229{left:237.466667pt;}
.x8d_c00229{left:238.800000pt;}
.x4a_c00229{left:240.266667pt;}
.x25_c00229{left:242.266667pt;}
.x42_c00229{left:243.200000pt;}
.x76_c00229{left:245.333333pt;}
.x61_c00229{left:246.400000pt;}
.x53_c00229{left:247.600000pt;}
.x7e_c00229{left:248.666667pt;}
.x8b_c00229{left:250.266667pt;}
.x6c_c00229{left:252.000000pt;}
.x5a_c00229{left:253.200000pt;}
.x128_c00229{left:254.400000pt;}
.x33_c00229{left:256.400000pt;}
.x7f_c00229{left:259.200000pt;}
.x2d_c00229{left:260.133333pt;}
.x8_c00229{left:262.133333pt;}
.x7d_c00229{left:263.333333pt;}
.x35_c00229{left:265.333333pt;}
.x3a_c00229{left:266.400000pt;}
.x7c_c00229{left:267.866667pt;}
.x54_c00229{left:269.333333pt;}
.x6d_c00229{left:270.933333pt;}
.x81_c00229{left:272.400000pt;}
.x1c_c00229{left:275.333333pt;}
.x26_c00229{left:277.200000pt;}
.x10_c00229{left:278.266667pt;}
.x4f_c00229{left:279.866667pt;}
.x65_c00229{left:281.733333pt;}
.x36_c00229{left:282.666667pt;}
.x68_c00229{left:284.400000pt;}
.x4b_c00229{left:286.000000pt;}
.x88_c00229{left:287.066667pt;}
.x3b_c00229{left:288.533333pt;}
.x62_c00229{left:290.000000pt;}
.x1d_c00229{left:293.200000pt;}
.x43_c00229{left:294.133333pt;}
.x4c_c00229{left:296.533333pt;}
.x3c_c00229{left:297.466667pt;}
.x6f_c00229{left:298.666667pt;}
.x5b_c00229{left:300.400000pt;}
.x69_c00229{left:303.600000pt;}
.x50_c00229{left:305.466667pt;}
.x55_c00229{left:306.400000pt;}
.x18_c00229{left:307.866667pt;}
.x3d_c00229{left:309.600000pt;}
.x3_c00229{left:312.000000pt;}
.x2e_c00229{left:312.933333pt;}
.x6e_c00229{left:313.866667pt;}
.x8e_c00229{left:316.000000pt;}
.x47_c00229{left:317.066667pt;}
.x27_c00229{left:320.400000pt;}
.x71_c00229{left:321.466667pt;}
.x4_c00229{left:323.466667pt;}
.x9_c00229{left:326.400000pt;}
.x56_c00229{left:328.533333pt;}
.x11_c00229{left:330.800000pt;}
.x5e_c00229{left:332.533333pt;}
.xa_c00229{left:334.666667pt;}
.x127_c00229{left:336.933333pt;}
.x77_c00229{left:337.866667pt;}
.x82_c00229{left:338.933333pt;}
.x121_c00229{left:341.866667pt;}
.x2f_c00229{left:344.000000pt;}
.x28_c00229{left:345.066667pt;}
.x48_c00229{left:347.466667pt;}
.x1e_c00229{left:348.933333pt;}
.x5f_c00229{left:350.400000pt;}
.x8c_c00229{left:352.000000pt;}
.x78_c00229{left:352.933333pt;}
.x51_c00229{left:354.400000pt;}
.x57_c00229{left:356.000000pt;}
.x22_c00229{left:359.066667pt;}
.x3e_c00229{left:360.533333pt;}
.x44_c00229{left:361.733333pt;}
.xb_c00229{left:364.800000pt;}
.x12_c00229{left:366.933333pt;}
.x63_c00229{left:368.800000pt;}
.x19_c00229{left:370.533333pt;}
.x1f_c00229{left:371.600000pt;}
.x83_c00229{left:372.533333pt;}
.x90_c00229{left:374.533333pt;}
.x37_c00229{left:376.133333pt;}
.x30_c00229{left:377.600000pt;}
.x2_c00229{left:378.800000pt;}
.x3f_c00229{left:381.333333pt;}
.x5c_c00229{left:382.933333pt;}
.x38_c00229{left:383.866667pt;}
.x66_c00229{left:385.733333pt;}
.x4d_c00229{left:387.066667pt;}
.x72_c00229{left:388.000000pt;}
.x6b_c00229{left:389.866667pt;}
.x79_c00229{left:391.600000pt;}
.x45_c00229{left:396.266667pt;}
.x70_c00229{left:397.200000pt;}
.x52_c00229{left:399.200000pt;}
.x31_c00229{left:402.933333pt;}
.x7a_c00229{left:405.333333pt;}
.x1a_c00229{left:407.600000pt;}
.x67_c00229{left:408.800000pt;}
.x73_c00229{left:409.733333pt;}
.x23_c00229{left:410.800000pt;}
.x91_c00229{left:413.466667pt;}
.xc_c00229{left:414.400000pt;}
.x13_c00229{left:416.533333pt;}
.x60_c00229{left:424.666667pt;}
.x39_c00229{left:426.133333pt;}
.x20_c00229{left:427.866667pt;}
.x29_c00229{left:429.866667pt;}
.x74_c00229{left:431.866667pt;}
.x64_c00229{left:432.800000pt;}
.xd_c00229{left:433.866667pt;}
.x14_c00229{left:435.466667pt;}
.x46_c00229{left:442.666667pt;}
.x40_c00229{left:445.333333pt;}
.x7b_c00229{left:446.666667pt;}
.x49_c00229{left:450.533333pt;}
.x58_c00229{left:451.733333pt;}
.x89_c00229{left:453.200000pt;}
.x6a_c00229{left:455.200000pt;}
.x2a_c00229{left:462.133333pt;}
.xaf_c00229{left:485.466667pt;}
.x122_c00229{left:488.133333pt;}
.xe7_c00229{left:497.333333pt;}
.x99_c00229{left:499.200000pt;}
.xae_c00229{left:500.800000pt;}
.xd5_c00229{left:502.000000pt;}
.x129_c00229{left:504.000000pt;}
.xf7_c00229{left:509.600000pt;}
.xee_c00229{left:510.666667pt;}
.x92_c00229{left:515.466667pt;}
.xfc_c00229{left:516.400000pt;}
.xa6_c00229{left:517.733333pt;}
.xca_c00229{left:519.600000pt;}
.xb0_c00229{left:522.933333pt;}
.xd9_c00229{left:526.133333pt;}
.xe8_c00229{left:527.066667pt;}
.xce_c00229{left:528.933333pt;}
.x110_c00229{left:532.533333pt;}
.x113_c00229{left:534.000000pt;}
.xcf_c00229{left:537.200000pt;}
.x9a_c00229{left:538.933333pt;}
.x119_c00229{left:541.200000pt;}
.xbc_c00229{left:542.266667pt;}
.x123_c00229{left:543.466667pt;}
.xc2_c00229{left:545.200000pt;}
.x11d_c00229{left:546.133333pt;}
.xfd_c00229{left:549.066667pt;}
.x93_c00229{left:551.333333pt;}
.xb1_c00229{left:553.066667pt;}
.xa3_c00229{left:555.066667pt;}
.xd0_c00229{left:557.333333pt;}
.xa7_c00229{left:558.400000pt;}
.xf8_c00229{left:561.066667pt;}
.xbd_c00229{left:562.400000pt;}
.x105_c00229{left:563.466667pt;}
.x120_c00229{left:564.533333pt;}
.xe0_c00229{left:566.800000pt;}
.xf2_c00229{left:567.866667pt;}
.xcb_c00229{left:570.133333pt;}
.xb6_c00229{left:572.133333pt;}
.xe9_c00229{left:574.400000pt;}
.x115_c00229{left:575.866667pt;}
.x12e_c00229{left:576.933333pt;}
.xc3_c00229{left:577.866667pt;}
.x102_c00229{left:581.200000pt;}
.xa4_c00229{left:582.266667pt;}
.xd6_c00229{left:583.600000pt;}
.xf3_c00229{left:585.200000pt;}
.xda_c00229{left:586.666667pt;}
.x11b_c00229{left:587.600000pt;}
.xb7_c00229{left:590.666667pt;}
.x9b_c00229{left:591.733333pt;}
.xbe_c00229{left:593.466667pt;}
.x9e_c00229{left:594.800000pt;}
.xf4_c00229{left:599.600000pt;}
.xa5_c00229{left:601.733333pt;}
.x11c_c00229{left:602.666667pt;}
.x108_c00229{left:603.733333pt;}
.x10c_c00229{left:605.200000pt;}
.xfe_c00229{left:607.866667pt;}
.xe1_c00229{left:609.866667pt;}
.xc4_c00229{left:611.466667pt;}
.x94_c00229{left:612.800000pt;}
.xb8_c00229{left:613.733333pt;}
.x11e_c00229{left:614.933333pt;}
.xea_c00229{left:617.600000pt;}
.xf9_c00229{left:619.600000pt;}
.x100_c00229{left:622.533333pt;}
.xb2_c00229{left:623.733333pt;}
.x103_c00229{left:625.333333pt;}
.x117_c00229{left:626.266667pt;}
.x12c_c00229{left:627.200000pt;}
.x95_c00229{left:628.133333pt;}
.xd1_c00229{left:629.066667pt;}
.xaa_c00229{left:630.400000pt;}
.xfa_c00229{left:631.733333pt;}
.x9c_c00229{left:633.333333pt;}
.xa8_c00229{left:636.400000pt;}
.xc5_c00229{left:637.733333pt;}
.x10d_c00229{left:639.066667pt;}
.x116_c00229{left:640.133333pt;}
.xe2_c00229{left:642.133333pt;}
.xf5_c00229{left:643.066667pt;}
.xbf_c00229{left:644.400000pt;}
.xb3_c00229{left:645.866667pt;}
.x10e_c00229{left:647.733333pt;}
.x9d_c00229{left:648.666667pt;}
.xcc_c00229{left:650.133333pt;}
.xa9_c00229{left:652.666667pt;}
.xb9_c00229{left:654.133333pt;}
.x12d_c00229{left:655.066667pt;}
.x11f_c00229{left:656.533333pt;}
.xdb_c00229{left:659.333333pt;}
.xab_c00229{left:661.066667pt;}
.xeb_c00229{left:663.333333pt;}
.x9f_c00229{left:664.266667pt;}
.xf0_c00229{left:665.866667pt;}
.xc0_c00229{left:669.066667pt;}
.x109_c00229{left:673.200000pt;}
.xdc_c00229{left:675.600000pt;}
.x106_c00229{left:677.733333pt;}
.x11a_c00229{left:679.600000pt;}
.xa0_c00229{left:681.200000pt;}
.xb4_c00229{left:682.933333pt;}
.x12f_c00229{left:684.800000pt;}
.xd2_c00229{left:685.733333pt;}
.xcd_c00229{left:686.666667pt;}
.x112_c00229{left:688.133333pt;}
.xf6_c00229{left:690.133333pt;}
.x10a_c00229{left:691.066667pt;}
.xe3_c00229{left:692.000000pt;}
.xd3_c00229{left:693.733333pt;}
.xba_c00229{left:696.400000pt;}
.x124_c00229{left:697.333333pt;}
.x96_c00229{left:699.200000pt;}
.xc1_c00229{left:700.133333pt;}
.xc6_c00229{left:701.733333pt;}
.xd7_c00229{left:702.666667pt;}
.xff_c00229{left:704.133333pt;}
.xac_c00229{left:707.466667pt;}
.x97_c00229{left:708.800000pt;}
.xe4_c00229{left:713.066667pt;}
.xdd_c00229{left:714.000000pt;}
.x10b_c00229{left:717.333333pt;}
.xef_c00229{left:720.266667pt;}
.xa1_c00229{left:721.200000pt;}
.xec_c00229{left:722.533333pt;}
.xad_c00229{left:723.466667pt;}
.x118_c00229{left:725.466667pt;}
.xd4_c00229{left:727.600000pt;}
.x12a_c00229{left:728.666667pt;}
.x125_c00229{left:730.000000pt;}
.xde_c00229{left:731.600000pt;}
.xb5_c00229{left:732.800000pt;}
.xbb_c00229{left:733.866667pt;}
.x114_c00229{left:735.066667pt;}
.xe5_c00229{left:740.266667pt;}
.xc7_c00229{left:741.466667pt;}
.x107_c00229{left:742.400000pt;}
.x104_c00229{left:745.600000pt;}
.xed_c00229{left:746.533333pt;}
.xd8_c00229{left:747.466667pt;}
.x98_c00229{left:748.800000pt;}
.xfb_c00229{left:750.666667pt;}
.xa2_c00229{left:752.533333pt;}
.xc8_c00229{left:755.200000pt;}
.x111_c00229{left:758.933333pt;}
.xdf_c00229{left:763.600000pt;}
.xf1_c00229{left:766.666667pt;}
.x130_c00229{left:768.666667pt;}
.xe6_c00229{left:770.666667pt;}
.xc9_c00229{left:772.800000pt;}
.x10f_c00229{left:774.133333pt;}
.x12b_c00229{left:776.666667pt;}
.x101_c00229{left:780.933333pt;}
}





/* 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_c00230 {
    display:none;
  }
  .loading-indicator_c00230.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00230 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_c00230 { 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_c00230" -> "#page-container .classname_c00230")
 */
.pf_c00230 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00230 { /* 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_c00230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00230 { /* 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_c00230 { /* 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_c00230 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00230 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00230 {overflow:visible;}
  }
}
.c_c00230 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00230 { /* 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_c00230:after { /* webkit #35443 */
  content: '';
}
.t_c00230:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00230 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 */
}
.__c00230 { /* 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_c00230 { /* info for Javascript */
  display:none;
}
.l_c00230 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00230 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00230 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00230: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_c00230 {
    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_c00230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00230.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_c00230 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00230;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.000000;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;}
.md2_c00230{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m40_c00230{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.md6_c00230{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m25_c00230{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.md7_c00230{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m89_c00230{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m113_c00230{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m17_c00230{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00230{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00230{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m115_c00230{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00230{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00230{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m27_c00230{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m53_c00230{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00230{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m119_c00230{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00230{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00230{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00230{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m57_c00230{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00230{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00230{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m100_c00230{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00230{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00230{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00230{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mad_c00230{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00230{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m108_c00230{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.me7_c00230{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00230{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m30_c00230{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m35_c00230{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mff_c00230{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00230{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.md1_c00230{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m85_c00230{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m91_c00230{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00230{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m26_c00230{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00230{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00230{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00230{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m82_c00230{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mce_c00230{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m33_c00230{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00230{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m76_c00230{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00230{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00230{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m101_c00230{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md3_c00230{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00230{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00230{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00230{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00230{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m31_c00230{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00230{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00230{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00230{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m19_c00230{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mef_c00230{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m59_c00230{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m43_c00230{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m60_c00230{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00230{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00230{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00230{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m77_c00230{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me9_c00230{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mea_c00230{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me0_c00230{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00230{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00230{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m116_c00230{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00230{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m68_c00230{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m62_c00230{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00230{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mee_c00230{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00230{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m63_c00230{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00230{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00230{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00230{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00230{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m6_c00230{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m46_c00230{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00230{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m47_c00230{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m44_c00230{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00230{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m28_c00230{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md5_c00230{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00230{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m81_c00230{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00230{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m83_c00230{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00230{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00230{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m97_c00230{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00230{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m110_c00230{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m75_c00230{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m98_c00230{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m58_c00230{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md0_c00230{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00230{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00230{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00230{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m34_c00230{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m24_c00230{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m50_c00230{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m86_c00230{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mc_c00230{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m66_c00230{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mae_c00230{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00230{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00230{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m79_c00230{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me5_c00230{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00230{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00230{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00230{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m32_c00230{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00230{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9_c00230{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00230{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00230{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m69_c00230{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m78_c00230{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m72_c00230{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me8_c00230{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00230{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m36_c00230{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m114_c00230{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00230{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m48_c00230{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00230{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00230{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00230{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m99_c00230{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2_c00230{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00230{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00230{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00230{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00230{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m88_c00230{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00230{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma_c00230{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m65_c00230{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00230{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m7_c00230{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m54_c00230{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me1_c00230{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00230{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00230{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m41_c00230{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m39_c00230{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me2_c00230{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00230{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00230{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me3_c00230{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m90_c00230{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m80_c00230{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m74_c00230{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m111_c00230{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00230{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00230{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00230{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00230{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m73_c00230{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00230{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me_c00230{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00230{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00230{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00230{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5_c00230{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mac_c00230{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m61_c00230{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00230{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00230{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m71_c00230{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m67_c00230{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00230{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00230{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m45_c00230{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m42_c00230{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m87_c00230{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m13_c00230{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m94_c00230{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.meb_c00230{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00230{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m117_c00230{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m105_c00230{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m56_c00230{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m118_c00230{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00230{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m112_c00230{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00230{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m18_c00230{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mba_c00230{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me4_c00230{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mec_c00230{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m109_c00230{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00230{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m20_c00230{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8_c00230{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00230{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00230{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00230{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m102_c00230{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m84_c00230{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m96_c00230{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00230{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00230{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00230{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb_c00230{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00230{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m49_c00230{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00230{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00230{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m29_c00230{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m51_c00230{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00230{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00230{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m93_c00230{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.med_c00230{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00230{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00230{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00230{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4_c00230{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m107_c00230{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m23_c00230{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mf_c00230{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.maf_c00230{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10_c00230{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m70_c00230{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m64_c00230{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m95_c00230{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mab_c00230{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00230{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00230{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m38_c00230{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mca_c00230{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m104_c00230{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mde_c00230{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00230{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me6_c00230{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m52_c00230{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m21_c00230{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00230{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00230{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00230{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00230{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00230{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00230{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m11_c00230{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00230{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.maa_c00230{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00230{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m103_c00230{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m55_c00230{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m22_c00230{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m37_c00230{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m12_c00230{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00230{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m106_c00230{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m14_c00230{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00230{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00230{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00230{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m92_c00230{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m15_c00230{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.mda_c00230{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.md9_c00230{transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);}
.md_c00230{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m16_c00230{transform:matrix(0.401500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00230{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md4_c00230{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.md8_c00230{transform:matrix(0.463250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463250,0.000000,0.000000,0.250000,0,0);}
.m0_c00230{transform:matrix(0.541750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00230{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00230{transform:matrix(10.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.178250,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls1_c00230{letter-spacing:0.000000px;}
.ls0_c00230{letter-spacing:59.285714px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{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__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00230{word-spacing:-89.285714px;}
.ws9_c00230{word-spacing:-8.055556px;}
.ws7_c00230{word-spacing:-6.413043px;}
.ws1_c00230{word-spacing:-3.166667px;}
.wsa_c00230{word-spacing:0.000000px;}
.ws8_c00230{word-spacing:3.497817px;}
.ws2_c00230{word-spacing:4.375000px;}
.ws0_c00230{word-spacing:4.500000px;}
.ws4_c00230{word-spacing:25.714286px;}
.ws3_c00230{word-spacing:40.000000px;}
.ws6_c00230{word-spacing:41.763158px;}
._1_c00230{margin-left:-59.285714px;}
._0_c00230{width:471.000000px;}
.fc0_c00230{color:transparent;}
.fs2_c00230{font-size:18.000000px;}
.fs5_c00230{font-size:36.000000px;}
.fs3_c00230{font-size:54.000000px;}
.fs1_c00230{font-size:60.000000px;}
.fs0_c00230{font-size:66.000000px;}
.fs4_c00230{font-size:72.000000px;}
.y0_c00230{bottom:0.000000px;}
.y6a_c00230{bottom:186.300000px;}
.y31_c00230{bottom:189.600000px;}
.y69_c00230{bottom:201.000000px;}
.y30_c00230{bottom:207.600000px;}
.y68_c00230{bottom:215.700000px;}
.y2f_c00230{bottom:225.300000px;}
.y67_c00230{bottom:234.750000px;}
.y2e_c00230{bottom:243.300000px;}
.y66_c00230{bottom:249.150000px;}
.y2d_c00230{bottom:261.300000px;}
.y65_c00230{bottom:263.400000px;}
.y64_c00230{bottom:277.800000px;}
.y2c_c00230{bottom:282.150000px;}
.y63_c00230{bottom:292.500000px;}
.y2b_c00230{bottom:300.900000px;}
.y62_c00230{bottom:306.600000px;}
.y61_c00230{bottom:321.000000px;}
.y2a_c00230{bottom:327.600000px;}
.y60_c00230{bottom:335.100000px;}
.y5f_c00230{bottom:349.200000px;}
.y29_c00230{bottom:350.250000px;}
.y5e_c00230{bottom:363.600000px;}
.y28_c00230{bottom:372.150000px;}
.y5d_c00230{bottom:378.000000px;}
.y27_c00230{bottom:389.850000px;}
.y5c_c00230{bottom:392.400000px;}
.y5b_c00230{bottom:406.800000px;}
.y26_c00230{bottom:412.200000px;}
.y5a_c00230{bottom:421.500000px;}
.y25_c00230{bottom:434.550000px;}
.y59_c00230{bottom:435.600000px;}
.y58_c00230{bottom:450.300000px;}
.y24_c00230{bottom:456.450000px;}
.y57_c00230{bottom:464.700000px;}
.y23_c00230{bottom:478.350000px;}
.y56_c00230{bottom:487.050000px;}
.y22_c00230{bottom:496.350000px;}
.y21_c00230{bottom:514.350000px;}
.y55_c00230{bottom:517.650000px;}
.y20_c00230{bottom:532.350000px;}
.y54_c00230{bottom:535.650000px;}
.y53_c00230{bottom:544.350000px;}
.y1f_c00230{bottom:550.050000px;}
.y52_c00230{bottom:552.900000px;}
.y51_c00230{bottom:570.900000px;}
.y1e_c00230{bottom:571.950000px;}
.y50_c00230{bottom:588.900000px;}
.y1d_c00230{bottom:590.700000px;}
.y4f_c00230{bottom:606.900000px;}
.y1c_c00230{bottom:613.200000px;}
.y4e_c00230{bottom:624.600000px;}
.y1b_c00230{bottom:631.500000px;}
.y4d_c00230{bottom:642.600000px;}
.y1a_c00230{bottom:653.100000px;}
.y4c_c00230{bottom:660.300000px;}
.y19_c00230{bottom:675.300000px;}
.y4b_c00230{bottom:678.300000px;}
.y18_c00230{bottom:693.300000px;}
.y4a_c00230{bottom:696.000000px;}
.y17_c00230{bottom:711.300000px;}
.y49_c00230{bottom:713.700000px;}
.y16_c00230{bottom:729.300000px;}
.y48_c00230{bottom:731.700000px;}
.y47_c00230{bottom:749.700000px;}
.y15_c00230{bottom:751.200000px;}
.y46_c00230{bottom:767.400000px;}
.y14_c00230{bottom:769.200000px;}
.y45_c00230{bottom:785.100000px;}
.y13_c00230{bottom:787.200000px;}
.y44_c00230{bottom:803.100000px;}
.y12_c00230{bottom:805.500000px;}
.y43_c00230{bottom:821.100000px;}
.y11_c00230{bottom:822.450000px;}
.y42_c00230{bottom:838.800000px;}
.y10_c00230{bottom:840.150000px;}
.y41_c00230{bottom:856.500000px;}
.yf_c00230{bottom:857.850000px;}
.ye_c00230{bottom:875.850000px;}
.y40_c00230{bottom:878.100000px;}
.yd_c00230{bottom:893.550000px;}
.y3f_c00230{bottom:896.100000px;}
.y3e_c00230{bottom:909.750000px;}
.yc_c00230{bottom:915.900000px;}
.y3d_c00230{bottom:924.450000px;}
.y3c_c00230{bottom:938.100000px;}
.yb_c00230{bottom:938.550000px;}
.y3b_c00230{bottom:952.500000px;}
.ya_c00230{bottom:966.600000px;}
.y3a_c00230{bottom:967.350000px;}
.y39_c00230{bottom:981.750000px;}
.y9_c00230{bottom:994.650000px;}
.y38_c00230{bottom:1001.850000px;}
.y37_c00230{bottom:1019.550000px;}
.y8_c00230{bottom:1021.350000px;}
.y36_c00230{bottom:1037.550000px;}
.y7_c00230{bottom:1044.000000px;}
.y35_c00230{bottom:1059.600000px;}
.y6_c00230{bottom:1069.200000px;}
.y34_c00230{bottom:1077.600000px;}
.y33_c00230{bottom:1095.900000px;}
.y5_c00230{bottom:1096.950000px;}
.y4_c00230{bottom:1104.450000px;}
.y32_c00230{bottom:1113.150000px;}
.y3_c00230{bottom:1114.950000px;}
.y2_c00230{bottom:1136.850000px;}
.y1_c00230{bottom:1140.150000px;}
.h4_c00230{height:18.000000px;}
.h7_c00230{height:36.000000px;}
.h5_c00230{height:54.000000px;}
.h3_c00230{height:60.000000px;}
.h2_c00230{height:66.000000px;}
.h6_c00230{height:72.000000px;}
.h1_c00230{height:1269.750000px;}
.h0_c00230{height:1270.080048px;}
.w1_c00230{width:963.000000px;}
.w0_c00230{width:963.359985px;}
.x0_c00230{left:0.000000px;}
.x87_c00230{left:81.300000px;}
.x8a_c00230{left:83.550000px;}
.x19_c00230{left:87.150000px;}
.x3_c00230{left:88.200000px;}
.x3c_c00230{left:91.050000px;}
.x66_c00230{left:98.550000px;}
.x38_c00230{left:100.500000px;}
.x79_c00230{left:101.550000px;}
.x4f_c00230{left:102.600000px;}
.x42_c00230{left:103.650000px;}
.x2b_c00230{left:104.850000px;}
.x10_c00230{left:106.200000px;}
.xc_c00230{left:113.400000px;}
.x7f_c00230{left:116.850000px;}
.x72_c00230{left:118.050000px;}
.x2f_c00230{left:119.850000px;}
.x70_c00230{left:121.350000px;}
.x33_c00230{left:122.400000px;}
.x20_c00230{left:124.500000px;}
.x4_c00230{left:129.600000px;}
.x5e_c00230{left:133.800000px;}
.x11_c00230{left:138.300000px;}
.x54_c00230{left:141.000000px;}
.x67_c00230{left:142.050000px;}
.x4b_c00230{left:144.150000px;}
.x5f_c00230{left:146.100000px;}
.x3d_c00230{left:151.200000px;}
.x12_c00230{left:153.750000px;}
.x1a_c00230{left:157.350000px;}
.x23_c00230{left:158.850000px;}
.x3e_c00230{left:160.200000px;}
.x6c_c00230{left:161.400000px;}
.x50_c00230{left:163.500000px;}
.x2c_c00230{left:165.300000px;}
.x1b_c00230{left:166.650000px;}
.x59_c00230{left:172.050000px;}
.x46_c00230{left:173.250000px;}
.x21_c00230{left:175.200000px;}
.x75_c00230{left:177.150000px;}
.x32_c00230{left:181.200000px;}
.x6d_c00230{left:182.700000px;}
.x30_c00230{left:183.900000px;}
.x76_c00230{left:186.450000px;}
.x34_c00230{left:188.250000px;}
.x17_c00230{left:189.300000px;}
.x5a_c00230{left:190.800000px;}
.x82_c00230{left:192.150000px;}
.x2d_c00230{left:194.400000px;}
.x39_c00230{left:199.500000px;}
.x13_c00230{left:200.550000px;}
.x4c_c00230{left:202.200000px;}
.x43_c00230{left:203.400000px;}
.x80_c00230{left:206.400000px;}
.x7a_c00230{left:208.800000px;}
.x47_c00230{left:210.750000px;}
.x5_c00230{left:212.700000px;}
.x5b_c00230{left:214.500000px;}
.x89_c00230{left:215.550000px;}
.x68_c00230{left:216.750000px;}
.x3f_c00230{left:217.800000px;}
.x1c_c00230{left:218.850000px;}
.x24_c00230{left:220.800000px;}
.x2e_c00230{left:223.500000px;}
.x55_c00230{left:230.400000px;}
.x6e_c00230{left:233.100000px;}
.x73_c00230{left:236.550000px;}
.x69_c00230{left:237.600000px;}
.x8b_c00230{left:239.850000px;}
.x92_c00230{left:241.650000px;}
.x4d_c00230{left:245.100000px;}
.x51_c00230{left:246.600000px;}
.x48_c00230{left:248.850000px;}
.x3a_c00230{left:252.000000px;}
.x14_c00230{left:253.050000px;}
.x6_c00230{left:255.900000px;}
.x77_c00230{left:258.150000px;}
.x18_c00230{left:259.800000px;}
.x8e_c00230{left:261.900000px;}
.x40_c00230{left:263.100000px;}
.x35_c00230{left:264.600000px;}
.x22_c00230{left:267.000000px;}
.x7b_c00230{left:269.250000px;}
.x74_c00230{left:271.500000px;}
.x7_c00230{left:274.200000px;}
.x7c_c00230{left:276.450000px;}
.x83_c00230{left:278.100000px;}
.x25_c00230{left:279.150000px;}
.x56_c00230{left:281.550000px;}
.x52_c00230{left:284.400000px;}
.x36_c00230{left:286.950000px;}
.x26_c00230{left:288.150000px;}
.x88_c00230{left:289.500000px;}
.x6a_c00230{left:292.350000px;}
.x63_c00230{left:294.000000px;}
.x6b_c00230{left:297.150000px;}
.x84_c00230{left:298.650000px;}
.x6f_c00230{left:300.000000px;}
.x1d_c00230{left:301.650000px;}
.x60_c00230{left:306.000000px;}
.x31_c00230{left:308.250000px;}
.x8d_c00230{left:309.300000px;}
.x5c_c00230{left:310.500000px;}
.x8_c00230{left:314.550000px;}
.x49_c00230{left:316.950000px;}
.x8f_c00230{left:318.750000px;}
.x41_c00230{left:319.950000px;}
.x61_c00230{left:321.900000px;}
.xd_c00230{left:324.000000px;}
.x27_c00230{left:325.200000px;}
.x1_c00230{left:326.850000px;}
.xe_c00230{left:329.400000px;}
.x81_c00230{left:330.900000px;}
.x85_c00230{left:333.900000px;}
.x5d_c00230{left:335.400000px;}
.x1e_c00230{left:337.950000px;}
.x3b_c00230{left:339.450000px;}
.x90_c00230{left:341.100000px;}
.x64_c00230{left:342.900000px;}
.x28_c00230{left:346.350000px;}
.x9_c00230{left:348.450000px;}
.x44_c00230{left:349.950000px;}
.xf_c00230{left:357.450000px;}
.x8c_c00230{left:358.950000px;}
.x57_c00230{left:360.000000px;}
.x15_c00230{left:361.650000px;}
.x86_c00230{left:365.250000px;}
.x53_c00230{left:367.800000px;}
.xa_c00230{left:370.800000px;}
.x45_c00230{left:373.050000px;}
.x7e_c00230{left:378.900000px;}
.x16_c00230{left:379.950000px;}
.x1f_c00230{left:383.700000px;}
.x91_c00230{left:386.850000px;}
.x4a_c00230{left:388.950000px;}
.x29_c00230{left:390.600000px;}
.x71_c00230{left:392.250000px;}
.x62_c00230{left:396.750000px;}
.x65_c00230{left:398.400000px;}
.x58_c00230{left:399.600000px;}
.xb_c00230{left:401.700000px;}
.x4e_c00230{left:403.500000px;}
.x7d_c00230{left:405.450000px;}
.x37_c00230{left:407.550000px;}
.x78_c00230{left:416.550000px;}
.x2a_c00230{left:420.150000px;}
.x141_c00230{left:437.550000px;}
.x137_c00230{left:438.900000px;}
.x11a_c00230{left:439.950000px;}
.xd8_c00230{left:443.850000px;}
.xaa_c00230{left:445.350000px;}
.x13f_c00230{left:452.550000px;}
.x13b_c00230{left:453.900000px;}
.x11b_c00230{left:455.400000px;}
.xbd_c00230{left:458.700000px;}
.xb6_c00230{left:460.650000px;}
.x93_c00230{left:462.900000px;}
.x128_c00230{left:464.100000px;}
.x132_c00230{left:465.600000px;}
.x114_c00230{left:468.000000px;}
.x12f_c00230{left:472.200000px;}
.xc6_c00230{left:473.250000px;}
.x122_c00230{left:477.450000px;}
.x11c_c00230{left:479.550000px;}
.x12b_c00230{left:480.900000px;}
.xdf_c00230{left:481.950000px;}
.xa9_c00230{left:483.300000px;}
.x133_c00230{left:484.350000px;}
.x11e_c00230{left:486.600000px;}
.xc2_c00230{left:489.000000px;}
.xab_c00230{left:490.350000px;}
.x13c_c00230{left:492.750000px;}
.x104_c00230{left:493.800000px;}
.xc7_c00230{left:495.150000px;}
.x138_c00230{left:496.950000px;}
.x101_c00230{left:499.500000px;}
.xa3_c00230{left:500.850000px;}
.x110_c00230{left:502.950000px;}
.xb7_c00230{left:504.900000px;}
.xbe_c00230{left:507.300000px;}
.xfa_c00230{left:509.250000px;}
.xed_c00230{left:511.200000px;}
.x9c_c00230{left:512.400000px;}
.x105_c00230{left:513.900000px;}
.x94_c00230{left:516.600000px;}
.xe7_c00230{left:518.100000px;}
.x134_c00230{left:519.900000px;}
.x13d_c00230{left:522.450000px;}
.xe3_c00230{left:525.000000px;}
.xd9_c00230{left:526.350000px;}
.xee_c00230{left:528.150000px;}
.x95_c00230{left:529.950000px;}
.x11d_c00230{left:531.000000px;}
.xe0_c00230{left:532.650000px;}
.x9d_c00230{left:534.750000px;}
.xa4_c00230{left:535.800000px;}
.x139_c00230{left:537.600000px;}
.xf0_c00230{left:541.500000px;}
.xbf_c00230{left:542.550000px;}
.xfe_c00230{left:543.600000px;}
.x135_c00230{left:544.650000px;}
.xd4_c00230{left:546.150000px;}
.xe4_c00230{left:548.100000px;}
.x102_c00230{left:549.600000px;}
.x123_c00230{left:551.250000px;}
.xcc_c00230{left:552.900000px;}
.x142_c00230{left:554.100000px;}
.x125_c00230{left:556.200000px;}
.xa5_c00230{left:559.950000px;}
.x106_c00230{left:561.750000px;}
.xc0_c00230{left:563.400000px;}
.x117_c00230{left:564.450000px;}
.xb8_c00230{left:566.400000px;}
.xe8_c00230{left:568.200000px;}
.xef_c00230{left:569.550000px;}
.xf1_c00230{left:571.800000px;}
.x96_c00230{left:573.150000px;}
.xb0_c00230{left:575.700000px;}
.xd5_c00230{left:577.050000px;}
.xc8_c00230{left:579.750000px;}
.x107_c00230{left:581.550000px;}
.x9e_c00230{left:582.600000px;}
.x97_c00230{left:584.700000px;}
.x126_c00230{left:586.500000px;}
.x11f_c00230{left:589.050000px;}
.xf5_c00230{left:591.000000px;}
.x12c_c00230{left:593.850000px;}
.xd6_c00230{left:595.350000px;}
.xb1_c00230{left:597.000000px;}
.xfd_c00230{left:599.550000px;}
.x108_c00230{left:601.350000px;}
.x109_c00230{left:602.550000px;}
.x10c_c00230{left:604.050000px;}
.xe5_c00230{left:606.450000px;}
.x13a_c00230{left:608.550000px;}
.xf6_c00230{left:609.750000px;}
.xcd_c00230{left:610.800000px;}
.xac_c00230{left:613.050000px;}
.xc1_c00230{left:614.550000px;}
.x136_c00230{left:615.600000px;}
.xff_c00230{left:618.150000px;}
.xb9_c00230{left:620.850000px;}
.x111_c00230{left:622.500000px;}
.xfb_c00230{left:623.700000px;}
.xce_c00230{left:624.900000px;}
.xc9_c00230{left:626.250000px;}
.x10a_c00230{left:628.500000px;}
.xba_c00230{left:629.850000px;}
.xb2_c00230{left:631.200000px;}
.x143_c00230{left:632.250000px;}
.xda_c00230{left:633.600000px;}
.xd7_c00230{left:636.750000px;}
.x9f_c00230{left:638.700000px;}
.x98_c00230{left:640.500000px;}
.xfc_c00230{left:643.500000px;}
.xca_c00230{left:644.550000px;}
.xcf_c00230{left:646.500000px;}
.xad_c00230{left:648.000000px;}
.x120_c00230{left:649.950000px;}
.xdb_c00230{left:651.900000px;}
.x12d_c00230{left:653.550000px;}
.x10d_c00230{left:655.500000px;}
.xb3_c00230{left:657.150000px;}
.xa6_c00230{left:660.000000px;}
.xa0_c00230{left:662.850000px;}
.xe9_c00230{left:665.850000px;}
.x112_c00230{left:668.550000px;}
.x130_c00230{left:669.750000px;}
.xf7_c00230{left:670.950000px;}
.xd0_c00230{left:675.300000px;}
.xbb_c00230{left:677.400000px;}
.xcb_c00230{left:679.800000px;}
.x99_c00230{left:681.900000px;}
.xae_c00230{left:683.700000px;}
.xdc_c00230{left:685.350000px;}
.xea_c00230{left:687.150000px;}
.xb4_c00230{left:689.250000px;}
.x10e_c00230{left:690.750000px;}
.x124_c00230{left:692.100000px;}
.x131_c00230{left:693.150000px;}
.x118_c00230{left:694.800000px;}
.xe1_c00230{left:697.050000px;}
.x9a_c00230{left:698.850000px;}
.xbc_c00230{left:700.800000px;}
.xa7_c00230{left:702.450000px;}
.x100_c00230{left:704.550000px;}
.x13e_c00230{left:707.100000px;}
.xd3_c00230{left:708.150000px;}
.xc3_c00230{left:709.650000px;}
.xe6_c00230{left:711.150000px;}
.xf2_c00230{left:715.050000px;}
.x115_c00230{left:716.700000px;}
.x113_c00230{left:717.900000px;}
.x10f_c00230{left:720.300000px;}
.xeb_c00230{left:722.100000px;}
.xb5_c00230{left:723.450000px;}
.xdd_c00230{left:725.700000px;}
.x103_c00230{left:730.650000px;}
.xa1_c00230{left:732.300000px;}
.x9b_c00230{left:733.800000px;}
.xf3_c00230{left:735.000000px;}
.x129_c00230{left:736.500000px;}
.x10b_c00230{left:737.550000px;}
.xd1_c00230{left:738.600000px;}
.xc4_c00230{left:739.950000px;}
.xaf_c00230{left:741.300000px;}
.xf9_c00230{left:743.250000px;}
.xde_c00230{left:744.750000px;}
.x12e_c00230{left:746.850000px;}
.x119_c00230{left:748.800000px;}
.xe2_c00230{left:750.300000px;}
.x121_c00230{left:752.250000px;}
.x2_c00230{left:754.500000px;}
.x12a_c00230{left:756.000000px;}
.x116_c00230{left:757.350000px;}
.xf8_c00230{left:758.400000px;}
.x140_c00230{left:760.050000px;}
.xd2_c00230{left:762.000000px;}
.xa8_c00230{left:765.450000px;}
.xc5_c00230{left:766.950000px;}
.xec_c00230{left:768.150000px;}
.x127_c00230{left:770.400000px;}
.xa2_c00230{left:771.900000px;}
.xf4_c00230{left:774.900000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls1_c00230{letter-spacing:0.000000pt;}
.ls0_c00230{letter-spacing:52.698413pt;}
.ws5_c00230{word-spacing:-79.365079pt;}
.ws9_c00230{word-spacing:-7.160494pt;}
.ws7_c00230{word-spacing:-5.700483pt;}
.ws1_c00230{word-spacing:-2.814815pt;}
.wsa_c00230{word-spacing:0.000000pt;}
.ws8_c00230{word-spacing:3.109170pt;}
.ws2_c00230{word-spacing:3.888889pt;}
.ws0_c00230{word-spacing:4.000000pt;}
.ws4_c00230{word-spacing:22.857143pt;}
.ws3_c00230{word-spacing:35.555556pt;}
.ws6_c00230{word-spacing:37.122807pt;}
._1_c00230{margin-left:-52.698413pt;}
._0_c00230{width:418.666667pt;}
.fs2_c00230{font-size:16.000000pt;}
.fs5_c00230{font-size:32.000000pt;}
.fs3_c00230{font-size:48.000000pt;}
.fs1_c00230{font-size:53.333333pt;}
.fs0_c00230{font-size:58.666667pt;}
.fs4_c00230{font-size:64.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y6a_c00230{bottom:165.600000pt;}
.y31_c00230{bottom:168.533333pt;}
.y69_c00230{bottom:178.666667pt;}
.y30_c00230{bottom:184.533333pt;}
.y68_c00230{bottom:191.733333pt;}
.y2f_c00230{bottom:200.266667pt;}
.y67_c00230{bottom:208.666667pt;}
.y2e_c00230{bottom:216.266667pt;}
.y66_c00230{bottom:221.466667pt;}
.y2d_c00230{bottom:232.266667pt;}
.y65_c00230{bottom:234.133333pt;}
.y64_c00230{bottom:246.933333pt;}
.y2c_c00230{bottom:250.800000pt;}
.y63_c00230{bottom:260.000000pt;}
.y2b_c00230{bottom:267.466667pt;}
.y62_c00230{bottom:272.533333pt;}
.y61_c00230{bottom:285.333333pt;}
.y2a_c00230{bottom:291.200000pt;}
.y60_c00230{bottom:297.866667pt;}
.y5f_c00230{bottom:310.400000pt;}
.y29_c00230{bottom:311.333333pt;}
.y5e_c00230{bottom:323.200000pt;}
.y28_c00230{bottom:330.800000pt;}
.y5d_c00230{bottom:336.000000pt;}
.y27_c00230{bottom:346.533333pt;}
.y5c_c00230{bottom:348.800000pt;}
.y5b_c00230{bottom:361.600000pt;}
.y26_c00230{bottom:366.400000pt;}
.y5a_c00230{bottom:374.666667pt;}
.y25_c00230{bottom:386.266667pt;}
.y59_c00230{bottom:387.200000pt;}
.y58_c00230{bottom:400.266667pt;}
.y24_c00230{bottom:405.733333pt;}
.y57_c00230{bottom:413.066667pt;}
.y23_c00230{bottom:425.200000pt;}
.y56_c00230{bottom:432.933333pt;}
.y22_c00230{bottom:441.200000pt;}
.y21_c00230{bottom:457.200000pt;}
.y55_c00230{bottom:460.133333pt;}
.y20_c00230{bottom:473.200000pt;}
.y54_c00230{bottom:476.133333pt;}
.y53_c00230{bottom:483.866667pt;}
.y1f_c00230{bottom:488.933333pt;}
.y52_c00230{bottom:491.466667pt;}
.y51_c00230{bottom:507.466667pt;}
.y1e_c00230{bottom:508.400000pt;}
.y50_c00230{bottom:523.466667pt;}
.y1d_c00230{bottom:525.066667pt;}
.y4f_c00230{bottom:539.466667pt;}
.y1c_c00230{bottom:545.066667pt;}
.y4e_c00230{bottom:555.200000pt;}
.y1b_c00230{bottom:561.333333pt;}
.y4d_c00230{bottom:571.200000pt;}
.y1a_c00230{bottom:580.533333pt;}
.y4c_c00230{bottom:586.933333pt;}
.y19_c00230{bottom:600.266667pt;}
.y4b_c00230{bottom:602.933333pt;}
.y18_c00230{bottom:616.266667pt;}
.y4a_c00230{bottom:618.666667pt;}
.y17_c00230{bottom:632.266667pt;}
.y49_c00230{bottom:634.400000pt;}
.y16_c00230{bottom:648.266667pt;}
.y48_c00230{bottom:650.400000pt;}
.y47_c00230{bottom:666.400000pt;}
.y15_c00230{bottom:667.733333pt;}
.y46_c00230{bottom:682.133333pt;}
.y14_c00230{bottom:683.733333pt;}
.y45_c00230{bottom:697.866667pt;}
.y13_c00230{bottom:699.733333pt;}
.y44_c00230{bottom:713.866667pt;}
.y12_c00230{bottom:716.000000pt;}
.y43_c00230{bottom:729.866667pt;}
.y11_c00230{bottom:731.066667pt;}
.y42_c00230{bottom:745.600000pt;}
.y10_c00230{bottom:746.800000pt;}
.y41_c00230{bottom:761.333333pt;}
.yf_c00230{bottom:762.533333pt;}
.ye_c00230{bottom:778.533333pt;}
.y40_c00230{bottom:780.533333pt;}
.yd_c00230{bottom:794.266667pt;}
.y3f_c00230{bottom:796.533333pt;}
.y3e_c00230{bottom:808.666667pt;}
.yc_c00230{bottom:814.133333pt;}
.y3d_c00230{bottom:821.733333pt;}
.y3c_c00230{bottom:833.866667pt;}
.yb_c00230{bottom:834.266667pt;}
.y3b_c00230{bottom:846.666667pt;}
.ya_c00230{bottom:859.200000pt;}
.y3a_c00230{bottom:859.866667pt;}
.y39_c00230{bottom:872.666667pt;}
.y9_c00230{bottom:884.133333pt;}
.y38_c00230{bottom:890.533333pt;}
.y37_c00230{bottom:906.266667pt;}
.y8_c00230{bottom:907.866667pt;}
.y36_c00230{bottom:922.266667pt;}
.y7_c00230{bottom:928.000000pt;}
.y35_c00230{bottom:941.866667pt;}
.y6_c00230{bottom:950.400000pt;}
.y34_c00230{bottom:957.866667pt;}
.y33_c00230{bottom:974.133333pt;}
.y5_c00230{bottom:975.066667pt;}
.y4_c00230{bottom:981.733333pt;}
.y32_c00230{bottom:989.466667pt;}
.y3_c00230{bottom:991.066667pt;}
.y2_c00230{bottom:1010.533333pt;}
.y1_c00230{bottom:1013.466667pt;}
.h4_c00230{height:16.000000pt;}
.h7_c00230{height:32.000000pt;}
.h5_c00230{height:48.000000pt;}
.h3_c00230{height:53.333333pt;}
.h2_c00230{height:58.666667pt;}
.h6_c00230{height:64.000000pt;}
.h1_c00230{height:1128.666667pt;}
.h0_c00230{height:1128.960043pt;}
.w1_c00230{width:856.000000pt;}
.w0_c00230{width:856.319987pt;}
.x0_c00230{left:0.000000pt;}
.x87_c00230{left:72.266667pt;}
.x8a_c00230{left:74.266667pt;}
.x19_c00230{left:77.466667pt;}
.x3_c00230{left:78.400000pt;}
.x3c_c00230{left:80.933333pt;}
.x66_c00230{left:87.600000pt;}
.x38_c00230{left:89.333333pt;}
.x79_c00230{left:90.266667pt;}
.x4f_c00230{left:91.200000pt;}
.x42_c00230{left:92.133333pt;}
.x2b_c00230{left:93.200000pt;}
.x10_c00230{left:94.400000pt;}
.xc_c00230{left:100.800000pt;}
.x7f_c00230{left:103.866667pt;}
.x72_c00230{left:104.933333pt;}
.x2f_c00230{left:106.533333pt;}
.x70_c00230{left:107.866667pt;}
.x33_c00230{left:108.800000pt;}
.x20_c00230{left:110.666667pt;}
.x4_c00230{left:115.200000pt;}
.x5e_c00230{left:118.933333pt;}
.x11_c00230{left:122.933333pt;}
.x54_c00230{left:125.333333pt;}
.x67_c00230{left:126.266667pt;}
.x4b_c00230{left:128.133333pt;}
.x5f_c00230{left:129.866667pt;}
.x3d_c00230{left:134.400000pt;}
.x12_c00230{left:136.666667pt;}
.x1a_c00230{left:139.866667pt;}
.x23_c00230{left:141.200000pt;}
.x3e_c00230{left:142.400000pt;}
.x6c_c00230{left:143.466667pt;}
.x50_c00230{left:145.333333pt;}
.x2c_c00230{left:146.933333pt;}
.x1b_c00230{left:148.133333pt;}
.x59_c00230{left:152.933333pt;}
.x46_c00230{left:154.000000pt;}
.x21_c00230{left:155.733333pt;}
.x75_c00230{left:157.466667pt;}
.x32_c00230{left:161.066667pt;}
.x6d_c00230{left:162.400000pt;}
.x30_c00230{left:163.466667pt;}
.x76_c00230{left:165.733333pt;}
.x34_c00230{left:167.333333pt;}
.x17_c00230{left:168.266667pt;}
.x5a_c00230{left:169.600000pt;}
.x82_c00230{left:170.800000pt;}
.x2d_c00230{left:172.800000pt;}
.x39_c00230{left:177.333333pt;}
.x13_c00230{left:178.266667pt;}
.x4c_c00230{left:179.733333pt;}
.x43_c00230{left:180.800000pt;}
.x80_c00230{left:183.466667pt;}
.x7a_c00230{left:185.600000pt;}
.x47_c00230{left:187.333333pt;}
.x5_c00230{left:189.066667pt;}
.x5b_c00230{left:190.666667pt;}
.x89_c00230{left:191.600000pt;}
.x68_c00230{left:192.666667pt;}
.x3f_c00230{left:193.600000pt;}
.x1c_c00230{left:194.533333pt;}
.x24_c00230{left:196.266667pt;}
.x2e_c00230{left:198.666667pt;}
.x55_c00230{left:204.800000pt;}
.x6e_c00230{left:207.200000pt;}
.x73_c00230{left:210.266667pt;}
.x69_c00230{left:211.200000pt;}
.x8b_c00230{left:213.200000pt;}
.x92_c00230{left:214.800000pt;}
.x4d_c00230{left:217.866667pt;}
.x51_c00230{left:219.200000pt;}
.x48_c00230{left:221.200000pt;}
.x3a_c00230{left:224.000000pt;}
.x14_c00230{left:224.933333pt;}
.x6_c00230{left:227.466667pt;}
.x77_c00230{left:229.466667pt;}
.x18_c00230{left:230.933333pt;}
.x8e_c00230{left:232.800000pt;}
.x40_c00230{left:233.866667pt;}
.x35_c00230{left:235.200000pt;}
.x22_c00230{left:237.333333pt;}
.x7b_c00230{left:239.333333pt;}
.x74_c00230{left:241.333333pt;}
.x7_c00230{left:243.733333pt;}
.x7c_c00230{left:245.733333pt;}
.x83_c00230{left:247.200000pt;}
.x25_c00230{left:248.133333pt;}
.x56_c00230{left:250.266667pt;}
.x52_c00230{left:252.800000pt;}
.x36_c00230{left:255.066667pt;}
.x26_c00230{left:256.133333pt;}
.x88_c00230{left:257.333333pt;}
.x6a_c00230{left:259.866667pt;}
.x63_c00230{left:261.333333pt;}
.x6b_c00230{left:264.133333pt;}
.x84_c00230{left:265.466667pt;}
.x6f_c00230{left:266.666667pt;}
.x1d_c00230{left:268.133333pt;}
.x60_c00230{left:272.000000pt;}
.x31_c00230{left:274.000000pt;}
.x8d_c00230{left:274.933333pt;}
.x5c_c00230{left:276.000000pt;}
.x8_c00230{left:279.600000pt;}
.x49_c00230{left:281.733333pt;}
.x8f_c00230{left:283.333333pt;}
.x41_c00230{left:284.400000pt;}
.x61_c00230{left:286.133333pt;}
.xd_c00230{left:288.000000pt;}
.x27_c00230{left:289.066667pt;}
.x1_c00230{left:290.533333pt;}
.xe_c00230{left:292.800000pt;}
.x81_c00230{left:294.133333pt;}
.x85_c00230{left:296.800000pt;}
.x5d_c00230{left:298.133333pt;}
.x1e_c00230{left:300.400000pt;}
.x3b_c00230{left:301.733333pt;}
.x90_c00230{left:303.200000pt;}
.x64_c00230{left:304.800000pt;}
.x28_c00230{left:307.866667pt;}
.x9_c00230{left:309.733333pt;}
.x44_c00230{left:311.066667pt;}
.xf_c00230{left:317.733333pt;}
.x8c_c00230{left:319.066667pt;}
.x57_c00230{left:320.000000pt;}
.x15_c00230{left:321.466667pt;}
.x86_c00230{left:324.666667pt;}
.x53_c00230{left:326.933333pt;}
.xa_c00230{left:329.600000pt;}
.x45_c00230{left:331.600000pt;}
.x7e_c00230{left:336.800000pt;}
.x16_c00230{left:337.733333pt;}
.x1f_c00230{left:341.066667pt;}
.x91_c00230{left:343.866667pt;}
.x4a_c00230{left:345.733333pt;}
.x29_c00230{left:347.200000pt;}
.x71_c00230{left:348.666667pt;}
.x62_c00230{left:352.666667pt;}
.x65_c00230{left:354.133333pt;}
.x58_c00230{left:355.200000pt;}
.xb_c00230{left:357.066667pt;}
.x4e_c00230{left:358.666667pt;}
.x7d_c00230{left:360.400000pt;}
.x37_c00230{left:362.266667pt;}
.x78_c00230{left:370.266667pt;}
.x2a_c00230{left:373.466667pt;}
.x141_c00230{left:388.933333pt;}
.x137_c00230{left:390.133333pt;}
.x11a_c00230{left:391.066667pt;}
.xd8_c00230{left:394.533333pt;}
.xaa_c00230{left:395.866667pt;}
.x13f_c00230{left:402.266667pt;}
.x13b_c00230{left:403.466667pt;}
.x11b_c00230{left:404.800000pt;}
.xbd_c00230{left:407.733333pt;}
.xb6_c00230{left:409.466667pt;}
.x93_c00230{left:411.466667pt;}
.x128_c00230{left:412.533333pt;}
.x132_c00230{left:413.866667pt;}
.x114_c00230{left:416.000000pt;}
.x12f_c00230{left:419.733333pt;}
.xc6_c00230{left:420.666667pt;}
.x122_c00230{left:424.400000pt;}
.x11c_c00230{left:426.266667pt;}
.x12b_c00230{left:427.466667pt;}
.xdf_c00230{left:428.400000pt;}
.xa9_c00230{left:429.600000pt;}
.x133_c00230{left:430.533333pt;}
.x11e_c00230{left:432.533333pt;}
.xc2_c00230{left:434.666667pt;}
.xab_c00230{left:435.866667pt;}
.x13c_c00230{left:438.000000pt;}
.x104_c00230{left:438.933333pt;}
.xc7_c00230{left:440.133333pt;}
.x138_c00230{left:441.733333pt;}
.x101_c00230{left:444.000000pt;}
.xa3_c00230{left:445.200000pt;}
.x110_c00230{left:447.066667pt;}
.xb7_c00230{left:448.800000pt;}
.xbe_c00230{left:450.933333pt;}
.xfa_c00230{left:452.666667pt;}
.xed_c00230{left:454.400000pt;}
.x9c_c00230{left:455.466667pt;}
.x105_c00230{left:456.800000pt;}
.x94_c00230{left:459.200000pt;}
.xe7_c00230{left:460.533333pt;}
.x134_c00230{left:462.133333pt;}
.x13d_c00230{left:464.400000pt;}
.xe3_c00230{left:466.666667pt;}
.xd9_c00230{left:467.866667pt;}
.xee_c00230{left:469.466667pt;}
.x95_c00230{left:471.066667pt;}
.x11d_c00230{left:472.000000pt;}
.xe0_c00230{left:473.466667pt;}
.x9d_c00230{left:475.333333pt;}
.xa4_c00230{left:476.266667pt;}
.x139_c00230{left:477.866667pt;}
.xf0_c00230{left:481.333333pt;}
.xbf_c00230{left:482.266667pt;}
.xfe_c00230{left:483.200000pt;}
.x135_c00230{left:484.133333pt;}
.xd4_c00230{left:485.466667pt;}
.xe4_c00230{left:487.200000pt;}
.x102_c00230{left:488.533333pt;}
.x123_c00230{left:490.000000pt;}
.xcc_c00230{left:491.466667pt;}
.x142_c00230{left:492.533333pt;}
.x125_c00230{left:494.400000pt;}
.xa5_c00230{left:497.733333pt;}
.x106_c00230{left:499.333333pt;}
.xc0_c00230{left:500.800000pt;}
.x117_c00230{left:501.733333pt;}
.xb8_c00230{left:503.466667pt;}
.xe8_c00230{left:505.066667pt;}
.xef_c00230{left:506.266667pt;}
.xf1_c00230{left:508.266667pt;}
.x96_c00230{left:509.466667pt;}
.xb0_c00230{left:511.733333pt;}
.xd5_c00230{left:512.933333pt;}
.xc8_c00230{left:515.333333pt;}
.x107_c00230{left:516.933333pt;}
.x9e_c00230{left:517.866667pt;}
.x97_c00230{left:519.733333pt;}
.x126_c00230{left:521.333333pt;}
.x11f_c00230{left:523.600000pt;}
.xf5_c00230{left:525.333333pt;}
.x12c_c00230{left:527.866667pt;}
.xd6_c00230{left:529.200000pt;}
.xb1_c00230{left:530.666667pt;}
.xfd_c00230{left:532.933333pt;}
.x108_c00230{left:534.533333pt;}
.x109_c00230{left:535.600000pt;}
.x10c_c00230{left:536.933333pt;}
.xe5_c00230{left:539.066667pt;}
.x13a_c00230{left:540.933333pt;}
.xf6_c00230{left:542.000000pt;}
.xcd_c00230{left:542.933333pt;}
.xac_c00230{left:544.933333pt;}
.xc1_c00230{left:546.266667pt;}
.x136_c00230{left:547.200000pt;}
.xff_c00230{left:549.466667pt;}
.xb9_c00230{left:551.866667pt;}
.x111_c00230{left:553.333333pt;}
.xfb_c00230{left:554.400000pt;}
.xce_c00230{left:555.466667pt;}
.xc9_c00230{left:556.666667pt;}
.x10a_c00230{left:558.666667pt;}
.xba_c00230{left:559.866667pt;}
.xb2_c00230{left:561.066667pt;}
.x143_c00230{left:562.000000pt;}
.xda_c00230{left:563.200000pt;}
.xd7_c00230{left:566.000000pt;}
.x9f_c00230{left:567.733333pt;}
.x98_c00230{left:569.333333pt;}
.xfc_c00230{left:572.000000pt;}
.xca_c00230{left:572.933333pt;}
.xcf_c00230{left:574.666667pt;}
.xad_c00230{left:576.000000pt;}
.x120_c00230{left:577.733333pt;}
.xdb_c00230{left:579.466667pt;}
.x12d_c00230{left:580.933333pt;}
.x10d_c00230{left:582.666667pt;}
.xb3_c00230{left:584.133333pt;}
.xa6_c00230{left:586.666667pt;}
.xa0_c00230{left:589.200000pt;}
.xe9_c00230{left:591.866667pt;}
.x112_c00230{left:594.266667pt;}
.x130_c00230{left:595.333333pt;}
.xf7_c00230{left:596.400000pt;}
.xd0_c00230{left:600.266667pt;}
.xbb_c00230{left:602.133333pt;}
.xcb_c00230{left:604.266667pt;}
.x99_c00230{left:606.133333pt;}
.xae_c00230{left:607.733333pt;}
.xdc_c00230{left:609.200000pt;}
.xea_c00230{left:610.800000pt;}
.xb4_c00230{left:612.666667pt;}
.x10e_c00230{left:614.000000pt;}
.x124_c00230{left:615.200000pt;}
.x131_c00230{left:616.133333pt;}
.x118_c00230{left:617.600000pt;}
.xe1_c00230{left:619.600000pt;}
.x9a_c00230{left:621.200000pt;}
.xbc_c00230{left:622.933333pt;}
.xa7_c00230{left:624.400000pt;}
.x100_c00230{left:626.266667pt;}
.x13e_c00230{left:628.533333pt;}
.xd3_c00230{left:629.466667pt;}
.xc3_c00230{left:630.800000pt;}
.xe6_c00230{left:632.133333pt;}
.xf2_c00230{left:635.600000pt;}
.x115_c00230{left:637.066667pt;}
.x113_c00230{left:638.133333pt;}
.x10f_c00230{left:640.266667pt;}
.xeb_c00230{left:641.866667pt;}
.xb5_c00230{left:643.066667pt;}
.xdd_c00230{left:645.066667pt;}
.x103_c00230{left:649.466667pt;}
.xa1_c00230{left:650.933333pt;}
.x9b_c00230{left:652.266667pt;}
.xf3_c00230{left:653.333333pt;}
.x129_c00230{left:654.666667pt;}
.x10b_c00230{left:655.600000pt;}
.xd1_c00230{left:656.533333pt;}
.xc4_c00230{left:657.733333pt;}
.xaf_c00230{left:658.933333pt;}
.xf9_c00230{left:660.666667pt;}
.xde_c00230{left:662.000000pt;}
.x12e_c00230{left:663.866667pt;}
.x119_c00230{left:665.600000pt;}
.xe2_c00230{left:666.933333pt;}
.x121_c00230{left:668.666667pt;}
.x2_c00230{left:670.666667pt;}
.x12a_c00230{left:672.000000pt;}
.x116_c00230{left:673.200000pt;}
.xf8_c00230{left:674.133333pt;}
.x140_c00230{left:675.600000pt;}
.xd2_c00230{left:677.333333pt;}
.xa8_c00230{left:680.400000pt;}
.xc5_c00230{left:681.733333pt;}
.xec_c00230{left:682.800000pt;}
.x127_c00230{left:684.800000pt;}
.xa2_c00230{left:686.133333pt;}
.xf4_c00230{left:688.800000pt;}
}





/* 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_c00231 {
    display:none;
  }
  .loading-indicator_c00231.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00231 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_c00231 { 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_c00231" -> "#page-container .classname_c00231")
 */
.pf_c00231 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00231 { /* 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_c00231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00231 { /* 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_c00231 { /* 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_c00231 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00231 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00231 {overflow:visible;}
  }
}
.c_c00231 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00231 { /* 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_c00231:after { /* webkit #35443 */
  content: '';
}
.t_c00231:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00231 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 */
}
.__c00231 { /* 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_c00231 { /* info for Javascript */
  display:none;
}
.l_c00231 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00231 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00231 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00231: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_c00231 {
    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_c00231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00231.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_c00231 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00231;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.000000;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;}
.m94_c00231{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00231{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mac_c00231{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.me8_c00231{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00231{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.mea_c00231{transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);}
.m51_c00231{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m104_c00231{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m26_c00231{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m102_c00231{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00231{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00231{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mba_c00231{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md4_c00231{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00231{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00231{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00231{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m54_c00231{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m78_c00231{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.md5_c00231{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m65_c00231{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00231{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m63_c00231{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00231{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00231{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00231{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00231{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00231{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m41_c00231{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m80_c00231{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m76_c00231{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00231{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00231{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00231{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m32_c00231{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me5_c00231{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m82_c00231{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00231{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00231{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m89_c00231{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me1_c00231{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.me_c00231{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m74_c00231{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mee_c00231{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m10_c00231{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.maa_c00231{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m97_c00231{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00231{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00231{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m64_c00231{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00231{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m75_c00231{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md_c00231{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md8_c00231{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00231{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m24_c00231{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00231{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m98_c00231{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md6_c00231{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m46_c00231{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00231{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m99_c00231{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m15_c00231{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00231{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m92_c00231{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00231{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m30_c00231{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m48_c00231{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00231{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00231{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00231{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.me9_c00231{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m88_c00231{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m28_c00231{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md0_c00231{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m101_c00231{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m66_c00231{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00231{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.maf_c00231{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m33_c00231{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m106_c00231{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m22_c00231{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00231{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00231{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00231{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00231{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m44_c00231{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m110_c00231{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m20_c00231{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me7_c00231{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00231{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m62_c00231{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00231{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m12_c00231{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m19_c00231{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00231{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m73_c00231{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m49_c00231{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m42_c00231{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m36_c00231{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00231{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.md2_c00231{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m11_c00231{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m87_c00231{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00231{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m40_c00231{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m93_c00231{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m52_c00231{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m38_c00231{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m107_c00231{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00231{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m111_c00231{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00231{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00231{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00231{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.me6_c00231{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00231{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00231{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m67_c00231{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00231{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00231{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00231{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m23_c00231{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m95_c00231{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m31_c00231{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m72_c00231{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00231{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m39_c00231{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m58_c00231{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00231{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m34_c00231{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m68_c00231{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m56_c00231{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00231{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m13_c00231{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m35_c00231{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m18_c00231{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00231{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.meb_c00231{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00231{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m57_c00231{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mef_c00231{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m47_c00231{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00231{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m17_c00231{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00231{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00231{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00231{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m50_c00231{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m16_c00231{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m84_c00231{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md7_c00231{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00231{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00231{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m60_c00231{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m25_c00231{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00231{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00231{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m91_c00231{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00231{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m77_c00231{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m29_c00231{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00231{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc_c00231{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00231{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00231{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mab_c00231{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00231{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md1_c00231{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m27_c00231{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mf_c00231{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00231{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m21_c00231{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00231{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00231{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m86_c00231{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m90_c00231{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9_c00231{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m14_c00231{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mce_c00231{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m100_c00231{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00231{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.me0_c00231{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00231{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00231{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00231{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00231{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m69_c00231{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m115_c00231{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00231{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00231{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m96_c00231{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00231{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m37_c00231{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00231{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m113_c00231{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00231{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m59_c00231{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00231{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m108_c00231{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00231{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00231{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.med_c00231{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mda_c00231{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m45_c00231{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00231{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m79_c00231{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m43_c00231{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mde_c00231{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m103_c00231{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00231{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m71_c00231{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00231{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mca_c00231{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00231{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00231{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00231{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00231{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m70_c00231{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00231{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00231{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00231{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00231{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb_c00231{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00231{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00231{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me4_c00231{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mec_c00231{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m85_c00231{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00231{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md3_c00231{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me2_c00231{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00231{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m55_c00231{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00231{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00231{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00231{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma_c00231{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m116_c00231{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00231{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mff_c00231{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m61_c00231{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m114_c00231{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00231{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00231{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00231{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6_c00231{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.me3_c00231{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00231{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00231{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m109_c00231{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00231{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00231{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.md9_c00231{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5_c00231{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mad_c00231{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00231{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m53_c00231{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00231{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00231{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00231{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mae_c00231{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m105_c00231{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m112_c00231{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m81_c00231{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00231{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00231{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00231{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m8_c00231{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m7_c00231{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00231{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m83_c00231{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);}
.m4_c00231{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00231{transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00231{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{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__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00231{word-spacing:-7.656250px;}
.ws1_c00231{word-spacing:-3.467354px;}
.ws2_c00231{word-spacing:-1.997587px;}
.ws4_c00231{word-spacing:-0.972973px;}
.ws7_c00231{word-spacing:0.000000px;}
.ws0_c00231{word-spacing:2.191375px;}
.ws3_c00231{word-spacing:56.477064px;}
.ws5_c00231{word-spacing:78.272727px;}
.fc0_c00231{color:transparent;}
.fs4_c00231{font-size:54.000000px;}
.fs2_c00231{font-size:60.000000px;}
.fs0_c00231{font-size:66.000000px;}
.fs3_c00231{font-size:72.000000px;}
.fs1_c00231{font-size:84.000000px;}
.y0_c00231{bottom:0.000000px;}
.y63_c00231{bottom:176.100000px;}
.y62_c00231{bottom:193.050000px;}
.y34_c00231{bottom:194.400000px;}
.y61_c00231{bottom:207.750000px;}
.y33_c00231{bottom:212.700000px;}
.y60_c00231{bottom:222.150000px;}
.y32_c00231{bottom:233.700000px;}
.y5f_c00231{bottom:235.800000px;}
.y5e_c00231{bottom:250.950000px;}
.y31_c00231{bottom:252.750000px;}
.y5d_c00231{bottom:265.650000px;}
.y30_c00231{bottom:277.200000px;}
.y5c_c00231{bottom:279.750000px;}
.y5b_c00231{bottom:295.200000px;}
.y2f_c00231{bottom:299.850000px;}
.y2e_c00231{bottom:314.550000px;}
.y2d_c00231{bottom:332.850000px;}
.y2c_c00231{bottom:350.850000px;}
.y5a_c00231{bottom:351.000000px;}
.y2b_c00231{bottom:368.850000px;}
.y59_c00231{bottom:373.350000px;}
.y2a_c00231{bottom:386.550000px;}
.y58_c00231{bottom:391.350000px;}
.y29_c00231{bottom:404.250000px;}
.y57_c00231{bottom:419.100000px;}
.y28_c00231{bottom:422.250000px;}
.y56_c00231{bottom:427.050000px;}
.y27_c00231{bottom:439.950000px;}
.y55_c00231{bottom:447.150000px;}
.y26_c00231{bottom:458.250000px;}
.y54_c00231{bottom:473.700000px;}
.y25_c00231{bottom:475.950000px;}
.y53_c00231{bottom:491.700000px;}
.y24_c00231{bottom:499.050000px;}
.y23_c00231{bottom:515.550000px;}
.y22_c00231{bottom:530.250000px;}
.y52_c00231{bottom:531.300000px;}
.y21_c00231{bottom:550.050000px;}
.y20_c00231{bottom:568.050000px;}
.y51_c00231{bottom:576.750000px;}
.y1f_c00231{bottom:594.000000px;}
.y50_c00231{bottom:594.300000px;}
.y4f_c00231{bottom:612.750000px;}
.y1e_c00231{bottom:613.050000px;}
.y4e_c00231{bottom:630.300000px;}
.y1d_c00231{bottom:630.750000px;}
.y4d_c00231{bottom:648.300000px;}
.y1c_c00231{bottom:648.600000px;}
.y4c_c00231{bottom:665.700000px;}
.y1b_c00231{bottom:666.300000px;}
.y4b_c00231{bottom:683.700000px;}
.y1a_c00231{bottom:684.300000px;}
.y4a_c00231{bottom:701.700000px;}
.y19_c00231{bottom:702.300000px;}
.y49_c00231{bottom:719.700000px;}
.y18_c00231{bottom:720.000000px;}
.y17_c00231{bottom:739.050000px;}
.y48_c00231{bottom:745.650000px;}
.y16_c00231{bottom:760.350000px;}
.y47_c00231{bottom:763.950000px;}
.y46_c00231{bottom:782.250000px;}
.y15_c00231{bottom:788.850000px;}
.y45_c00231{bottom:799.950000px;}
.y14_c00231{bottom:808.950000px;}
.y44_c00231{bottom:817.950000px;}
.y13_c00231{bottom:832.950000px;}
.y43_c00231{bottom:840.150000px;}
.y12_c00231{bottom:853.500000px;}
.y42_c00231{bottom:857.850000px;}
.y11_c00231{bottom:871.800000px;}
.y41_c00231{bottom:880.200000px;}
.y10_c00231{bottom:889.800000px;}
.yf_c00231{bottom:907.500000px;}
.y40_c00231{bottom:910.050000px;}
.ye_c00231{bottom:925.500000px;}
.y3f_c00231{bottom:933.000000px;}
.yd_c00231{bottom:943.200000px;}
.y3e_c00231{bottom:951.000000px;}
.yc_c00231{bottom:961.200000px;}
.y3d_c00231{bottom:968.700000px;}
.yb_c00231{bottom:978.600000px;}
.y3c_c00231{bottom:986.700000px;}
.ya_c00231{bottom:996.300000px;}
.y3b_c00231{bottom:1004.700000px;}
.y9_c00231{bottom:1014.300000px;}
.y3a_c00231{bottom:1023.450000px;}
.y8_c00231{bottom:1032.300000px;}
.y39_c00231{bottom:1040.400000px;}
.y7_c00231{bottom:1050.300000px;}
.y38_c00231{bottom:1062.750000px;}
.y6_c00231{bottom:1068.000000px;}
.y37_c00231{bottom:1084.350000px;}
.y5_c00231{bottom:1086.000000px;}
.y36_c00231{bottom:1103.100000px;}
.y4_c00231{bottom:1103.700000px;}
.y3_c00231{bottom:1121.400000px;}
.y35_c00231{bottom:1125.000000px;}
.y1_c00231{bottom:1145.100000px;}
.y2_c00231{bottom:1149.450000px;}
.h6_c00231{height:54.000000px;}
.h4_c00231{height:60.000000px;}
.h2_c00231{height:66.000000px;}
.h5_c00231{height:72.000000px;}
.h3_c00231{height:84.000000px;}
.h0_c00231{height:1276.920044px;}
.h1_c00231{height:1277.250000px;}
.w1_c00231{width:963.000000px;}
.w0_c00231{width:963.359985px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:179.700000px;}
.xb_c00231{left:181.800000px;}
.x60_c00231{left:183.300000px;}
.x64_c00231{left:185.100000px;}
.x7b_c00231{left:186.450000px;}
.x86_c00231{left:187.500000px;}
.x3e_c00231{left:189.300000px;}
.xa1_c00231{left:190.500000px;}
.x85_c00231{left:191.850000px;}
.x19_c00231{left:199.200000px;}
.x13_c00231{left:200.550000px;}
.x48_c00231{left:201.600000px;}
.x68_c00231{left:202.950000px;}
.x65_c00231{left:204.600000px;}
.x91_c00231{left:206.400000px;}
.xa0_c00231{left:209.250000px;}
.x75_c00231{left:211.650000px;}
.x81_c00231{left:216.750000px;}
.x14_c00231{left:219.600000px;}
.x69_c00231{left:220.650000px;}
.x51_c00231{left:222.600000px;}
.x2d_c00231{left:223.800000px;}
.x26_c00231{left:225.900000px;}
.x38_c00231{left:226.950000px;}
.x7c_c00231{left:229.350000px;}
.x6d_c00231{left:230.700000px;}
.x8f_c00231{left:232.200000px;}
.x20_c00231{left:234.900000px;}
.x32_c00231{left:237.000000px;}
.x9c_c00231{left:242.100000px;}
.xc_c00231{left:243.300000px;}
.x95_c00231{left:244.650000px;}
.x6b_c00231{left:245.700000px;}
.x5f_c00231{left:247.650000px;}
.x80_c00231{left:249.300000px;}
.x44_c00231{left:251.400000px;}
.x61_c00231{left:252.750000px;}
.x27_c00231{left:254.400000px;}
.x96_c00231{left:255.450000px;}
.x74_c00231{left:256.800000px;}
.x33_c00231{left:257.850000px;}
.x39_c00231{left:260.250000px;}
.x6e_c00231{left:262.800000px;}
.x3f_c00231{left:264.450000px;}
.x76_c00231{left:267.150000px;}
.x4d_c00231{left:269.250000px;}
.x1a_c00231{left:272.700000px;}
.x93_c00231{left:275.850000px;}
.x3a_c00231{left:278.250000px;}
.x5b_c00231{left:279.600000px;}
.x6a_c00231{left:281.850000px;}
.x92_c00231{left:284.250000px;}
.xa2_c00231{left:286.950000px;}
.x6f_c00231{left:288.300000px;}
.x28_c00231{left:289.650000px;}
.x21_c00231{left:291.750000px;}
.x15_c00231{left:293.700000px;}
.x5c_c00231{left:296.550000px;}
.xd_c00231{left:298.050000px;}
.x7a_c00231{left:301.050000px;}
.x4e_c00231{left:303.450000px;}
.x89_c00231{left:304.500000px;}
.x49_c00231{left:305.550000px;}
.x29_c00231{left:309.450000px;}
.x45_c00231{left:311.850000px;}
.x55_c00231{left:315.450000px;}
.x9d_c00231{left:316.650000px;}
.x22_c00231{left:317.700000px;}
.x1b_c00231{left:318.750000px;}
.x63_c00231{left:320.850000px;}
.x82_c00231{left:322.350000px;}
.x66_c00231{left:323.850000px;}
.x52_c00231{left:325.200000px;}
.x34_c00231{left:326.550000px;}
.x56_c00231{left:328.800000px;}
.x72_c00231{left:334.350000px;}
.xe_c00231{left:335.550000px;}
.x16_c00231{left:336.900000px;}
.x83_c00231{left:338.850000px;}
.x2e_c00231{left:341.400000px;}
.x3b_c00231{left:344.850000px;}
.xa3_c00231{left:346.800000px;}
.x40_c00231{left:348.000000px;}
.x46_c00231{left:349.950000px;}
.x23_c00231{left:352.650000px;}
.x77_c00231{left:354.300000px;}
.x2a_c00231{left:358.800000px;}
.x4a_c00231{left:360.300000px;}
.x90_c00231{left:362.550000px;}
.x8b_c00231{left:363.900000px;}
.x53_c00231{left:365.550000px;}
.x17_c00231{left:367.200000px;}
.x24_c00231{left:372.450000px;}
.x78_c00231{left:374.850000px;}
.x5d_c00231{left:378.300000px;}
.x97_c00231{left:379.650000px;}
.x1c_c00231{left:380.700000px;}
.x35_c00231{left:382.050000px;}
.x8c_c00231{left:383.400000px;}
.xf_c00231{left:387.450000px;}
.x7f_c00231{left:389.700000px;}
.x9e_c00231{left:391.050000px;}
.x57_c00231{left:392.550000px;}
.x6c_c00231{left:394.350000px;}
.x79_c00231{left:396.450000px;}
.x54_c00231{left:400.050000px;}
.x87_c00231{left:401.700000px;}
.x2f_c00231{left:404.700000px;}
.x4b_c00231{left:406.050000px;}
.x2b_c00231{left:408.450000px;}
.x10_c00231{left:411.600000px;}
.x58_c00231{left:413.100000px;}
.x4f_c00231{left:416.550000px;}
.x36_c00231{left:418.800000px;}
.x8a_c00231{left:420.750000px;}
.x2_c00231{left:422.400000px;}
.x7d_c00231{left:427.050000px;}
.x25_c00231{left:428.550000px;}
.x41_c00231{left:430.200000px;}
.x99_c00231{left:431.400000px;}
.x70_c00231{left:432.600000px;}
.x1d_c00231{left:433.650000px;}
.x37_c00231{left:436.500000px;}
.x5e_c00231{left:437.700000px;}
.x11_c00231{left:441.450000px;}
.x50_c00231{left:442.500000px;}
.x59_c00231{left:444.450000px;}
.x1e_c00231{left:445.500000px;}
.x3_c00231{left:446.550000px;}
.x9a_c00231{left:447.600000px;}
.x42_c00231{left:450.000000px;}
.x8d_c00231{left:451.050000px;}
.x2c_c00231{left:452.400000px;}
.x84_c00231{left:455.400000px;}
.x88_c00231{left:456.450000px;}
.x71_c00231{left:457.500000px;}
.x5a_c00231{left:460.350000px;}
.x98_c00231{left:462.000000px;}
.x67_c00231{left:463.950000px;}
.x30_c00231{left:465.150000px;}
.x4_c00231{left:468.450000px;}
.x12_c00231{left:471.300000px;}
.x7e_c00231{left:472.800000px;}
.x9b_c00231{left:476.100000px;}
.x9f_c00231{left:477.750000px;}
.x3c_c00231{left:482.400000px;}
.x31_c00231{left:484.950000px;}
.x1f_c00231{left:488.400000px;}
.x4c_c00231{left:489.900000px;}
.x5_c00231{left:492.900000px;}
.x73_c00231{left:494.100000px;}
.x43_c00231{left:498.300000px;}
.x3d_c00231{left:503.700000px;}
.x18_c00231{left:505.500000px;}
.x47_c00231{left:507.300000px;}
.x94_c00231{left:508.650000px;}
.x62_c00231{left:509.700000px;}
.xa4_c00231{left:511.650000px;}
.x6_c00231{left:518.100000px;}
.x8e_c00231{left:520.200000px;}
.xa5_c00231{left:525.300000px;}
.x7_c00231{left:537.900000px;}
.xe5_c00231{left:539.250000px;}
.xe8_c00231{left:541.800000px;}
.x125_c00231{left:545.100000px;}
.x13a_c00231{left:546.750000px;}
.x13c_c00231{left:547.800000px;}
.xb3_c00231{left:553.950000px;}
.xc1_c00231{left:555.450000px;}
.x8_c00231{left:556.650000px;}
.xee_c00231{left:559.650000px;}
.x111_c00231{left:560.850000px;}
.x127_c00231{left:562.350000px;}
.x141_c00231{left:570.900000px;}
.xac_c00231{left:572.700000px;}
.x135_c00231{left:574.950000px;}
.xde_c00231{left:576.600000px;}
.x9_c00231{left:579.000000px;}
.xd7_c00231{left:580.200000px;}
.xe9_c00231{left:583.200000px;}
.xf3_c00231{left:585.000000px;}
.x13b_c00231{left:586.200000px;}
.x136_c00231{left:587.250000px;}
.x132_c00231{left:590.700000px;}
.xd1_c00231{left:591.750000px;}
.x105_c00231{left:593.100000px;}
.x12b_c00231{left:595.800000px;}
.xe2_c00231{left:597.150000px;}
.xb4_c00231{left:600.750000px;}
.xa_c00231{left:602.100000px;}
.x103_c00231{left:603.150000px;}
.x10a_c00231{left:605.850000px;}
.xef_c00231{left:609.300000px;}
.xd8_c00231{left:610.500000px;}
.xa6_c00231{left:612.450000px;}
.xad_c00231{left:614.100000px;}
.xe6_c00231{left:615.150000px;}
.xcb_c00231{left:616.800000px;}
.x128_c00231{left:619.200000px;}
.xc2_c00231{left:620.550000px;}
.xeb_c00231{left:622.200000px;}
.x112_c00231{left:624.150000px;}
.x106_c00231{left:625.500000px;}
.xa7_c00231{left:627.150000px;}
.xbc_c00231{left:630.450000px;}
.xfd_c00231{left:631.650000px;}
.x13d_c00231{left:633.750000px;}
.xcc_c00231{left:636.600000px;}
.x124_c00231{left:641.850000px;}
.x120_c00231{left:642.900000px;}
.xdf_c00231{left:644.700000px;}
.xf8_c00231{left:646.350000px;}
.xb7_c00231{left:647.700000px;}
.xd2_c00231{left:651.900000px;}
.x142_c00231{left:652.950000px;}
.xd9_c00231{left:656.550000px;}
.x137_c00231{left:659.700000px;}
.x10d_c00231{left:663.300000px;}
.xb5_c00231{left:667.050000px;}
.xc3_c00231{left:669.150000px;}
.x107_c00231{left:670.200000px;}
.xe3_c00231{left:671.400000px;}
.x12c_c00231{left:673.200000px;}
.xd3_c00231{left:674.250000px;}
.xae_c00231{left:676.050000px;}
.xfe_c00231{left:677.400000px;}
.xf0_c00231{left:679.200000px;}
.xcd_c00231{left:680.550000px;}
.xbd_c00231{left:683.400000px;}
.xe7_c00231{left:685.350000px;}
.xff_c00231{left:686.700000px;}
.x121_c00231{left:688.200000px;}
.x113_c00231{left:689.400000px;}
.xa8_c00231{left:690.900000px;}
.xf4_c00231{left:692.250000px;}
.x119_c00231{left:694.050000px;}
.xb8_c00231{left:695.550000px;}
.xe0_c00231{left:697.950000px;}
.xc4_c00231{left:701.550000px;}
.x11a_c00231{left:704.850000px;}
.x143_c00231{left:706.200000px;}
.xf9_c00231{left:707.550000px;}
.x13e_c00231{left:710.100000px;}
.xd4_c00231{left:711.300000px;}
.xbe_c00231{left:714.000000px;}
.xe4_c00231{left:716.400000px;}
.xb6_c00231{left:717.450000px;}
.xec_c00231{left:718.950000px;}
.xaf_c00231{left:720.000000px;}
.x100_c00231{left:723.000000px;}
.xda_c00231{left:724.200000px;}
.xf5_c00231{left:726.150000px;}
.xc5_c00231{left:728.850000px;}
.x13f_c00231{left:729.900000px;}
.x10e_c00231{left:733.200000px;}
.xce_c00231{left:734.250000px;}
.xb9_c00231{left:736.650000px;}
.x11e_c00231{left:738.750000px;}
.x11b_c00231{left:740.850000px;}
.x10b_c00231{left:742.350000px;}
.x104_c00231{left:743.700000px;}
.x122_c00231{left:745.200000px;}
.x116_c00231{left:747.450000px;}
.xa9_c00231{left:749.250000px;}
.x108_c00231{left:753.000000px;}
.x12d_c00231{left:754.500000px;}
.xc6_c00231{left:756.150000px;}
.xaa_c00231{left:760.350000px;}
.xb0_c00231{left:761.400000px;}
.x12f_c00231{left:762.600000px;}
.x133_c00231{left:763.650000px;}
.xed_c00231{left:766.050000px;}
.xbf_c00231{left:769.500000px;}
.xb1_c00231{left:770.700000px;}
.x109_c00231{left:772.050000px;}
.x117_c00231{left:773.400000px;}
.x12e_c00231{left:776.100000px;}
.x131_c00231{left:777.600000px;}
.xf6_c00231{left:779.100000px;}
.xf1_c00231{left:780.450000px;}
.xba_c00231{left:784.500000px;}
.xcf_c00231{left:785.700000px;}
.xd5_c00231{left:786.900000px;}
.x11c_c00231{left:788.100000px;}
.x138_c00231{left:790.200000px;}
.xfa_c00231{left:791.700000px;}
.xdb_c00231{left:793.650000px;}
.x129_c00231{left:794.850000px;}
.xc7_c00231{left:796.050000px;}
.x134_c00231{left:798.600000px;}
.xea_c00231{left:800.250000px;}
.xbb_c00231{left:803.250000px;}
.xab_c00231{left:805.350000px;}
.xb2_c00231{left:807.000000px;}
.xc8_c00231{left:808.650000px;}
.xf7_c00231{left:810.450000px;}
.x123_c00231{left:814.350000px;}
.xdc_c00231{left:816.300000px;}
.x10c_c00231{left:820.050000px;}
.xc9_c00231{left:822.000000px;}
.xfb_c00231{left:823.800000px;}
.x11f_c00231{left:826.200000px;}
.x140_c00231{left:827.550000px;}
.x101_c00231{left:829.200000px;}
.x10f_c00231{left:830.850000px;}
.xf2_c00231{left:831.900000px;}
.x144_c00231{left:840.600000px;}
.x126_c00231{left:842.100000px;}
.xc0_c00231{left:843.600000px;}
.xd0_c00231{left:845.550000px;}
.x12a_c00231{left:847.050000px;}
.x110_c00231{left:848.550000px;}
.xd6_c00231{left:849.900000px;}
.x118_c00231{left:851.850000px;}
.xe1_c00231{left:853.800000px;}
.xca_c00231{left:857.700000px;}
.xfc_c00231{left:859.500000px;}
.x114_c00231{left:861.900000px;}
.x102_c00231{left:863.700000px;}
.x130_c00231{left:867.600000px;}
.x139_c00231{left:870.450000px;}
.xdd_c00231{left:872.100000px;}
.x11d_c00231{left:873.750000px;}
.x115_c00231{left:876.000000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws6_c00231{word-spacing:-6.805556pt;}
.ws1_c00231{word-spacing:-3.082092pt;}
.ws2_c00231{word-spacing:-1.775633pt;}
.ws4_c00231{word-spacing:-0.864865pt;}
.ws7_c00231{word-spacing:0.000000pt;}
.ws0_c00231{word-spacing:1.947889pt;}
.ws3_c00231{word-spacing:50.201835pt;}
.ws5_c00231{word-spacing:69.575758pt;}
.fs4_c00231{font-size:48.000000pt;}
.fs2_c00231{font-size:53.333333pt;}
.fs0_c00231{font-size:58.666667pt;}
.fs3_c00231{font-size:64.000000pt;}
.fs1_c00231{font-size:74.666667pt;}
.y0_c00231{bottom:0.000000pt;}
.y63_c00231{bottom:156.533333pt;}
.y62_c00231{bottom:171.600000pt;}
.y34_c00231{bottom:172.800000pt;}
.y61_c00231{bottom:184.666667pt;}
.y33_c00231{bottom:189.066667pt;}
.y60_c00231{bottom:197.466667pt;}
.y32_c00231{bottom:207.733333pt;}
.y5f_c00231{bottom:209.600000pt;}
.y5e_c00231{bottom:223.066667pt;}
.y31_c00231{bottom:224.666667pt;}
.y5d_c00231{bottom:236.133333pt;}
.y30_c00231{bottom:246.400000pt;}
.y5c_c00231{bottom:248.666667pt;}
.y5b_c00231{bottom:262.400000pt;}
.y2f_c00231{bottom:266.533333pt;}
.y2e_c00231{bottom:279.600000pt;}
.y2d_c00231{bottom:295.866667pt;}
.y2c_c00231{bottom:311.866667pt;}
.y5a_c00231{bottom:312.000000pt;}
.y2b_c00231{bottom:327.866667pt;}
.y59_c00231{bottom:331.866667pt;}
.y2a_c00231{bottom:343.600000pt;}
.y58_c00231{bottom:347.866667pt;}
.y29_c00231{bottom:359.333333pt;}
.y57_c00231{bottom:372.533333pt;}
.y28_c00231{bottom:375.333333pt;}
.y56_c00231{bottom:379.600000pt;}
.y27_c00231{bottom:391.066667pt;}
.y55_c00231{bottom:397.466667pt;}
.y26_c00231{bottom:407.333333pt;}
.y54_c00231{bottom:421.066667pt;}
.y25_c00231{bottom:423.066667pt;}
.y53_c00231{bottom:437.066667pt;}
.y24_c00231{bottom:443.600000pt;}
.y23_c00231{bottom:458.266667pt;}
.y22_c00231{bottom:471.333333pt;}
.y52_c00231{bottom:472.266667pt;}
.y21_c00231{bottom:488.933333pt;}
.y20_c00231{bottom:504.933333pt;}
.y51_c00231{bottom:512.666667pt;}
.y1f_c00231{bottom:528.000000pt;}
.y50_c00231{bottom:528.266667pt;}
.y4f_c00231{bottom:544.666667pt;}
.y1e_c00231{bottom:544.933333pt;}
.y4e_c00231{bottom:560.266667pt;}
.y1d_c00231{bottom:560.666667pt;}
.y4d_c00231{bottom:576.266667pt;}
.y1c_c00231{bottom:576.533333pt;}
.y4c_c00231{bottom:591.733333pt;}
.y1b_c00231{bottom:592.266667pt;}
.y4b_c00231{bottom:607.733333pt;}
.y1a_c00231{bottom:608.266667pt;}
.y4a_c00231{bottom:623.733333pt;}
.y19_c00231{bottom:624.266667pt;}
.y49_c00231{bottom:639.733333pt;}
.y18_c00231{bottom:640.000000pt;}
.y17_c00231{bottom:656.933333pt;}
.y48_c00231{bottom:662.800000pt;}
.y16_c00231{bottom:675.866667pt;}
.y47_c00231{bottom:679.066667pt;}
.y46_c00231{bottom:695.333333pt;}
.y15_c00231{bottom:701.200000pt;}
.y45_c00231{bottom:711.066667pt;}
.y14_c00231{bottom:719.066667pt;}
.y44_c00231{bottom:727.066667pt;}
.y13_c00231{bottom:740.400000pt;}
.y43_c00231{bottom:746.800000pt;}
.y12_c00231{bottom:758.666667pt;}
.y42_c00231{bottom:762.533333pt;}
.y11_c00231{bottom:774.933333pt;}
.y41_c00231{bottom:782.400000pt;}
.y10_c00231{bottom:790.933333pt;}
.yf_c00231{bottom:806.666667pt;}
.y40_c00231{bottom:808.933333pt;}
.ye_c00231{bottom:822.666667pt;}
.y3f_c00231{bottom:829.333333pt;}
.yd_c00231{bottom:838.400000pt;}
.y3e_c00231{bottom:845.333333pt;}
.yc_c00231{bottom:854.400000pt;}
.y3d_c00231{bottom:861.066667pt;}
.yb_c00231{bottom:869.866667pt;}
.y3c_c00231{bottom:877.066667pt;}
.ya_c00231{bottom:885.600000pt;}
.y3b_c00231{bottom:893.066667pt;}
.y9_c00231{bottom:901.600000pt;}
.y3a_c00231{bottom:909.733333pt;}
.y8_c00231{bottom:917.600000pt;}
.y39_c00231{bottom:924.800000pt;}
.y7_c00231{bottom:933.600000pt;}
.y38_c00231{bottom:944.666667pt;}
.y6_c00231{bottom:949.333333pt;}
.y37_c00231{bottom:963.866667pt;}
.y5_c00231{bottom:965.333333pt;}
.y36_c00231{bottom:980.533333pt;}
.y4_c00231{bottom:981.066667pt;}
.y3_c00231{bottom:996.800000pt;}
.y35_c00231{bottom:1000.000000pt;}
.y1_c00231{bottom:1017.866667pt;}
.y2_c00231{bottom:1021.733333pt;}
.h6_c00231{height:48.000000pt;}
.h4_c00231{height:53.333333pt;}
.h2_c00231{height:58.666667pt;}
.h5_c00231{height:64.000000pt;}
.h3_c00231{height:74.666667pt;}
.h0_c00231{height:1135.040039pt;}
.h1_c00231{height:1135.333333pt;}
.w1_c00231{width:856.000000pt;}
.w0_c00231{width:856.319987pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:159.733333pt;}
.xb_c00231{left:161.600000pt;}
.x60_c00231{left:162.933333pt;}
.x64_c00231{left:164.533333pt;}
.x7b_c00231{left:165.733333pt;}
.x86_c00231{left:166.666667pt;}
.x3e_c00231{left:168.266667pt;}
.xa1_c00231{left:169.333333pt;}
.x85_c00231{left:170.533333pt;}
.x19_c00231{left:177.066667pt;}
.x13_c00231{left:178.266667pt;}
.x48_c00231{left:179.200000pt;}
.x68_c00231{left:180.400000pt;}
.x65_c00231{left:181.866667pt;}
.x91_c00231{left:183.466667pt;}
.xa0_c00231{left:186.000000pt;}
.x75_c00231{left:188.133333pt;}
.x81_c00231{left:192.666667pt;}
.x14_c00231{left:195.200000pt;}
.x69_c00231{left:196.133333pt;}
.x51_c00231{left:197.866667pt;}
.x2d_c00231{left:198.933333pt;}
.x26_c00231{left:200.800000pt;}
.x38_c00231{left:201.733333pt;}
.x7c_c00231{left:203.866667pt;}
.x6d_c00231{left:205.066667pt;}
.x8f_c00231{left:206.400000pt;}
.x20_c00231{left:208.800000pt;}
.x32_c00231{left:210.666667pt;}
.x9c_c00231{left:215.200000pt;}
.xc_c00231{left:216.266667pt;}
.x95_c00231{left:217.466667pt;}
.x6b_c00231{left:218.400000pt;}
.x5f_c00231{left:220.133333pt;}
.x80_c00231{left:221.600000pt;}
.x44_c00231{left:223.466667pt;}
.x61_c00231{left:224.666667pt;}
.x27_c00231{left:226.133333pt;}
.x96_c00231{left:227.066667pt;}
.x74_c00231{left:228.266667pt;}
.x33_c00231{left:229.200000pt;}
.x39_c00231{left:231.333333pt;}
.x6e_c00231{left:233.600000pt;}
.x3f_c00231{left:235.066667pt;}
.x76_c00231{left:237.466667pt;}
.x4d_c00231{left:239.333333pt;}
.x1a_c00231{left:242.400000pt;}
.x93_c00231{left:245.200000pt;}
.x3a_c00231{left:247.333333pt;}
.x5b_c00231{left:248.533333pt;}
.x6a_c00231{left:250.533333pt;}
.x92_c00231{left:252.666667pt;}
.xa2_c00231{left:255.066667pt;}
.x6f_c00231{left:256.266667pt;}
.x28_c00231{left:257.466667pt;}
.x21_c00231{left:259.333333pt;}
.x15_c00231{left:261.066667pt;}
.x5c_c00231{left:263.600000pt;}
.xd_c00231{left:264.933333pt;}
.x7a_c00231{left:267.600000pt;}
.x4e_c00231{left:269.733333pt;}
.x89_c00231{left:270.666667pt;}
.x49_c00231{left:271.600000pt;}
.x29_c00231{left:275.066667pt;}
.x45_c00231{left:277.200000pt;}
.x55_c00231{left:280.400000pt;}
.x9d_c00231{left:281.466667pt;}
.x22_c00231{left:282.400000pt;}
.x1b_c00231{left:283.333333pt;}
.x63_c00231{left:285.200000pt;}
.x82_c00231{left:286.533333pt;}
.x66_c00231{left:287.866667pt;}
.x52_c00231{left:289.066667pt;}
.x34_c00231{left:290.266667pt;}
.x56_c00231{left:292.266667pt;}
.x72_c00231{left:297.200000pt;}
.xe_c00231{left:298.266667pt;}
.x16_c00231{left:299.466667pt;}
.x83_c00231{left:301.200000pt;}
.x2e_c00231{left:303.466667pt;}
.x3b_c00231{left:306.533333pt;}
.xa3_c00231{left:308.266667pt;}
.x40_c00231{left:309.333333pt;}
.x46_c00231{left:311.066667pt;}
.x23_c00231{left:313.466667pt;}
.x77_c00231{left:314.933333pt;}
.x2a_c00231{left:318.933333pt;}
.x4a_c00231{left:320.266667pt;}
.x90_c00231{left:322.266667pt;}
.x8b_c00231{left:323.466667pt;}
.x53_c00231{left:324.933333pt;}
.x17_c00231{left:326.400000pt;}
.x24_c00231{left:331.066667pt;}
.x78_c00231{left:333.200000pt;}
.x5d_c00231{left:336.266667pt;}
.x97_c00231{left:337.466667pt;}
.x1c_c00231{left:338.400000pt;}
.x35_c00231{left:339.600000pt;}
.x8c_c00231{left:340.800000pt;}
.xf_c00231{left:344.400000pt;}
.x7f_c00231{left:346.400000pt;}
.x9e_c00231{left:347.600000pt;}
.x57_c00231{left:348.933333pt;}
.x6c_c00231{left:350.533333pt;}
.x79_c00231{left:352.400000pt;}
.x54_c00231{left:355.600000pt;}
.x87_c00231{left:357.066667pt;}
.x2f_c00231{left:359.733333pt;}
.x4b_c00231{left:360.933333pt;}
.x2b_c00231{left:363.066667pt;}
.x10_c00231{left:365.866667pt;}
.x58_c00231{left:367.200000pt;}
.x4f_c00231{left:370.266667pt;}
.x36_c00231{left:372.266667pt;}
.x8a_c00231{left:374.000000pt;}
.x2_c00231{left:375.466667pt;}
.x7d_c00231{left:379.600000pt;}
.x25_c00231{left:380.933333pt;}
.x41_c00231{left:382.400000pt;}
.x99_c00231{left:383.466667pt;}
.x70_c00231{left:384.533333pt;}
.x1d_c00231{left:385.466667pt;}
.x37_c00231{left:388.000000pt;}
.x5e_c00231{left:389.066667pt;}
.x11_c00231{left:392.400000pt;}
.x50_c00231{left:393.333333pt;}
.x59_c00231{left:395.066667pt;}
.x1e_c00231{left:396.000000pt;}
.x3_c00231{left:396.933333pt;}
.x9a_c00231{left:397.866667pt;}
.x42_c00231{left:400.000000pt;}
.x8d_c00231{left:400.933333pt;}
.x2c_c00231{left:402.133333pt;}
.x84_c00231{left:404.800000pt;}
.x88_c00231{left:405.733333pt;}
.x71_c00231{left:406.666667pt;}
.x5a_c00231{left:409.200000pt;}
.x98_c00231{left:410.666667pt;}
.x67_c00231{left:412.400000pt;}
.x30_c00231{left:413.466667pt;}
.x4_c00231{left:416.400000pt;}
.x12_c00231{left:418.933333pt;}
.x7e_c00231{left:420.266667pt;}
.x9b_c00231{left:423.200000pt;}
.x9f_c00231{left:424.666667pt;}
.x3c_c00231{left:428.800000pt;}
.x31_c00231{left:431.066667pt;}
.x1f_c00231{left:434.133333pt;}
.x4c_c00231{left:435.466667pt;}
.x5_c00231{left:438.133333pt;}
.x73_c00231{left:439.200000pt;}
.x43_c00231{left:442.933333pt;}
.x3d_c00231{left:447.733333pt;}
.x18_c00231{left:449.333333pt;}
.x47_c00231{left:450.933333pt;}
.x94_c00231{left:452.133333pt;}
.x62_c00231{left:453.066667pt;}
.xa4_c00231{left:454.800000pt;}
.x6_c00231{left:460.533333pt;}
.x8e_c00231{left:462.400000pt;}
.xa5_c00231{left:466.933333pt;}
.x7_c00231{left:478.133333pt;}
.xe5_c00231{left:479.333333pt;}
.xe8_c00231{left:481.600000pt;}
.x125_c00231{left:484.533333pt;}
.x13a_c00231{left:486.000000pt;}
.x13c_c00231{left:486.933333pt;}
.xb3_c00231{left:492.400000pt;}
.xc1_c00231{left:493.733333pt;}
.x8_c00231{left:494.800000pt;}
.xee_c00231{left:497.466667pt;}
.x111_c00231{left:498.533333pt;}
.x127_c00231{left:499.866667pt;}
.x141_c00231{left:507.466667pt;}
.xac_c00231{left:509.066667pt;}
.x135_c00231{left:511.066667pt;}
.xde_c00231{left:512.533333pt;}
.x9_c00231{left:514.666667pt;}
.xd7_c00231{left:515.733333pt;}
.xe9_c00231{left:518.400000pt;}
.xf3_c00231{left:520.000000pt;}
.x13b_c00231{left:521.066667pt;}
.x136_c00231{left:522.000000pt;}
.x132_c00231{left:525.066667pt;}
.xd1_c00231{left:526.000000pt;}
.x105_c00231{left:527.200000pt;}
.x12b_c00231{left:529.600000pt;}
.xe2_c00231{left:530.800000pt;}
.xb4_c00231{left:534.000000pt;}
.xa_c00231{left:535.200000pt;}
.x103_c00231{left:536.133333pt;}
.x10a_c00231{left:538.533333pt;}
.xef_c00231{left:541.600000pt;}
.xd8_c00231{left:542.666667pt;}
.xa6_c00231{left:544.400000pt;}
.xad_c00231{left:545.866667pt;}
.xe6_c00231{left:546.800000pt;}
.xcb_c00231{left:548.266667pt;}
.x128_c00231{left:550.400000pt;}
.xc2_c00231{left:551.600000pt;}
.xeb_c00231{left:553.066667pt;}
.x112_c00231{left:554.800000pt;}
.x106_c00231{left:556.000000pt;}
.xa7_c00231{left:557.466667pt;}
.xbc_c00231{left:560.400000pt;}
.xfd_c00231{left:561.466667pt;}
.x13d_c00231{left:563.333333pt;}
.xcc_c00231{left:565.866667pt;}
.x124_c00231{left:570.533333pt;}
.x120_c00231{left:571.466667pt;}
.xdf_c00231{left:573.066667pt;}
.xf8_c00231{left:574.533333pt;}
.xb7_c00231{left:575.733333pt;}
.xd2_c00231{left:579.466667pt;}
.x142_c00231{left:580.400000pt;}
.xd9_c00231{left:583.600000pt;}
.x137_c00231{left:586.400000pt;}
.x10d_c00231{left:589.600000pt;}
.xb5_c00231{left:592.933333pt;}
.xc3_c00231{left:594.800000pt;}
.x107_c00231{left:595.733333pt;}
.xe3_c00231{left:596.800000pt;}
.x12c_c00231{left:598.400000pt;}
.xd3_c00231{left:599.333333pt;}
.xae_c00231{left:600.933333pt;}
.xfe_c00231{left:602.133333pt;}
.xf0_c00231{left:603.733333pt;}
.xcd_c00231{left:604.933333pt;}
.xbd_c00231{left:607.466667pt;}
.xe7_c00231{left:609.200000pt;}
.xff_c00231{left:610.400000pt;}
.x121_c00231{left:611.733333pt;}
.x113_c00231{left:612.800000pt;}
.xa8_c00231{left:614.133333pt;}
.xf4_c00231{left:615.333333pt;}
.x119_c00231{left:616.933333pt;}
.xb8_c00231{left:618.266667pt;}
.xe0_c00231{left:620.400000pt;}
.xc4_c00231{left:623.600000pt;}
.x11a_c00231{left:626.533333pt;}
.x143_c00231{left:627.733333pt;}
.xf9_c00231{left:628.933333pt;}
.x13e_c00231{left:631.200000pt;}
.xd4_c00231{left:632.266667pt;}
.xbe_c00231{left:634.666667pt;}
.xe4_c00231{left:636.800000pt;}
.xb6_c00231{left:637.733333pt;}
.xec_c00231{left:639.066667pt;}
.xaf_c00231{left:640.000000pt;}
.x100_c00231{left:642.666667pt;}
.xda_c00231{left:643.733333pt;}
.xf5_c00231{left:645.466667pt;}
.xc5_c00231{left:647.866667pt;}
.x13f_c00231{left:648.800000pt;}
.x10e_c00231{left:651.733333pt;}
.xce_c00231{left:652.666667pt;}
.xb9_c00231{left:654.800000pt;}
.x11e_c00231{left:656.666667pt;}
.x11b_c00231{left:658.533333pt;}
.x10b_c00231{left:659.866667pt;}
.x104_c00231{left:661.066667pt;}
.x122_c00231{left:662.400000pt;}
.x116_c00231{left:664.400000pt;}
.xa9_c00231{left:666.000000pt;}
.x108_c00231{left:669.333333pt;}
.x12d_c00231{left:670.666667pt;}
.xc6_c00231{left:672.133333pt;}
.xaa_c00231{left:675.866667pt;}
.xb0_c00231{left:676.800000pt;}
.x12f_c00231{left:677.866667pt;}
.x133_c00231{left:678.800000pt;}
.xed_c00231{left:680.933333pt;}
.xbf_c00231{left:684.000000pt;}
.xb1_c00231{left:685.066667pt;}
.x109_c00231{left:686.266667pt;}
.x117_c00231{left:687.466667pt;}
.x12e_c00231{left:689.866667pt;}
.x131_c00231{left:691.200000pt;}
.xf6_c00231{left:692.533333pt;}
.xf1_c00231{left:693.733333pt;}
.xba_c00231{left:697.333333pt;}
.xcf_c00231{left:698.400000pt;}
.xd5_c00231{left:699.466667pt;}
.x11c_c00231{left:700.533333pt;}
.x138_c00231{left:702.400000pt;}
.xfa_c00231{left:703.733333pt;}
.xdb_c00231{left:705.466667pt;}
.x129_c00231{left:706.533333pt;}
.xc7_c00231{left:707.600000pt;}
.x134_c00231{left:709.866667pt;}
.xea_c00231{left:711.333333pt;}
.xbb_c00231{left:714.000000pt;}
.xab_c00231{left:715.866667pt;}
.xb2_c00231{left:717.333333pt;}
.xc8_c00231{left:718.800000pt;}
.xf7_c00231{left:720.400000pt;}
.x123_c00231{left:723.866667pt;}
.xdc_c00231{left:725.600000pt;}
.x10c_c00231{left:728.933333pt;}
.xc9_c00231{left:730.666667pt;}
.xfb_c00231{left:732.266667pt;}
.x11f_c00231{left:734.400000pt;}
.x140_c00231{left:735.600000pt;}
.x101_c00231{left:737.066667pt;}
.x10f_c00231{left:738.533333pt;}
.xf2_c00231{left:739.466667pt;}
.x144_c00231{left:747.200000pt;}
.x126_c00231{left:748.533333pt;}
.xc0_c00231{left:749.866667pt;}
.xd0_c00231{left:751.600000pt;}
.x12a_c00231{left:752.933333pt;}
.x110_c00231{left:754.266667pt;}
.xd6_c00231{left:755.466667pt;}
.x118_c00231{left:757.200000pt;}
.xe1_c00231{left:758.933333pt;}
.xca_c00231{left:762.400000pt;}
.xfc_c00231{left:764.000000pt;}
.x114_c00231{left:766.133333pt;}
.x102_c00231{left:767.733333pt;}
.x130_c00231{left:771.200000pt;}
.x139_c00231{left:773.733333pt;}
.xdd_c00231{left:775.200000pt;}
.x11d_c00231{left:776.666667pt;}
.x115_c00231{left:778.666667pt;}
}





/* 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_c00232 {
    display:none;
  }
  .loading-indicator_c00232.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00232 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_c00232 { 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_c00232" -> "#page-container .classname_c00232")
 */
.pf_c00232 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00232 { /* 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_c00232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00232 { /* 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_c00232 { /* 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_c00232 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00232 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00232 {overflow:visible;}
  }
}
.c_c00232 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00232 { /* 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_c00232:after { /* webkit #35443 */
  content: '';
}
.t_c00232:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00232 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 */
}
.__c00232 { /* 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_c00232 { /* info for Javascript */
  display:none;
}
.l_c00232 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00232 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00232 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00232: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_c00232 {
    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_c00232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00232.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_c00232 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00232;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.000000;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;}
.mb_c00232{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00232{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m33_c00232{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00232{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00232{transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00232{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mca_c00232{transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00232{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00232{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md8_c00232{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00232{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma_c00232{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00232{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00232{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m44_c00232{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.me_c00232{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00232{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00232{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mac_c00232{transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00232{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00232{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m101_c00232{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m84_c00232{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m37_c00232{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m88_c00232{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00232{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00232{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mff_c00232{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00232{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m90_c00232{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mde_c00232{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.maf_c00232{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00232{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m75_c00232{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mae_c00232{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00232{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00232{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m22_c00232{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m89_c00232{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00232{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00232{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m93_c00232{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m11_c00232{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m104_c00232{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m14_c00232{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m72_c00232{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m68_c00232{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00232{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m111_c00232{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00232{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m57_c00232{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00232{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m102_c00232{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00232{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m73_c00232{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m39_c00232{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00232{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m87_c00232{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00232{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m48_c00232{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m16_c00232{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00232{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m24_c00232{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md4_c00232{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md6_c00232{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6_c00232{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m103_c00232{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md2_c00232{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mee_c00232{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m43_c00232{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md1_c00232{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00232{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00232{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m13_c00232{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m59_c00232{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00232{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.md_c00232{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00232{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.meb_c00232{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00232{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00232{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00232{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mda_c00232{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m23_c00232{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m82_c00232{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m92_c00232{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00232{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m18_c00232{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00232{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mea_c00232{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m107_c00232{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00232{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10_c00232{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m83_c00232{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mc_c00232{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m106_c00232{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.md5_c00232{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m49_c00232{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m46_c00232{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mab_c00232{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m28_c00232{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m38_c00232{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00232{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m29_c00232{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00232{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00232{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00232{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me0_c00232{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m40_c00232{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m94_c00232{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m109_c00232{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m91_c00232{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00232{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m76_c00232{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00232{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m74_c00232{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m71_c00232{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4_c00232{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mec_c00232{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m108_c00232{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m21_c00232{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00232{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00232{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00232{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m41_c00232{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m15_c00232{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00232{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md3_c00232{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00232{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00232{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00232{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m42_c00232{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00232{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m36_c00232{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00232{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m105_c00232{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m32_c00232{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m25_c00232{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00232{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00232{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00232{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00232{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m55_c00232{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3_c00232{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7_c00232{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m78_c00232{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m9_c00232{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m35_c00232{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00232{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m45_c00232{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00232{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8_c00232{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00232{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m47_c00232{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m67_c00232{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md7_c00232{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00232{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m70_c00232{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00232{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m52_c00232{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00232{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m77_c00232{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00232{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00232{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00232{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me4_c00232{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m12_c00232{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me6_c00232{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00232{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m51_c00232{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00232{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md9_c00232{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00232{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00232{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m31_c00232{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00232{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.maa_c00232{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m20_c00232{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00232{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m58_c00232{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00232{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00232{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00232{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m34_c00232{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m95_c00232{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5_c00232{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00232{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me5_c00232{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m61_c00232{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf_c00232{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m66_c00232{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00232{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00232{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00232{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m100_c00232{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m97_c00232{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m26_c00232{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00232{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m63_c00232{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00232{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00232{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00232{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m65_c00232{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m19_c00232{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m56_c00232{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00232{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00232{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00232{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00232{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2_c00232{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00232{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m50_c00232{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00232{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m79_c00232{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.me2_c00232{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me1_c00232{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00232{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00232{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00232{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mef_c00232{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00232{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m53_c00232{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00232{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m62_c00232{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00232{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m27_c00232{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00232{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00232{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00232{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m64_c00232{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00232{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me9_c00232{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me3_c00232{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00232{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m80_c00232{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00232{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m85_c00232{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00232{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md0_c00232{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mce_c00232{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m60_c00232{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00232{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me8_c00232{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00232{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00232{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m86_c00232{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m54_c00232{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00232{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00232{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m99_c00232{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me7_c00232{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m69_c00232{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00232{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00232{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m96_c00232{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00232{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m98_c00232{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00232{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00232{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00232{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m30_c00232{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mba_c00232{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m110_c00232{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00232{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.med_c00232{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mad_c00232{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.m81_c00232{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m112_c00232{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00232{transform:matrix(0.344750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344750,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00232{transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00232{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00232{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00232{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls0_c00232{letter-spacing:0.000000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{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__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00232{word-spacing:-10.508380px;}
.ws2_c00232{word-spacing:-10.000000px;}
.ws1_c00232{word-spacing:-8.822678px;}
.ws0_c00232{word-spacing:-8.292683px;}
.wsa_c00232{word-spacing:-8.126685px;}
.ws3_c00232{word-spacing:-8.112554px;}
.ws6_c00232{word-spacing:-5.128205px;}
.ws4_c00232{word-spacing:-2.875000px;}
.ws8_c00232{word-spacing:-1.429433px;}
.wsc_c00232{word-spacing:0.000000px;}
.ws5_c00232{word-spacing:5.384615px;}
.wsb_c00232{word-spacing:6.805556px;}
.ws7_c00232{word-spacing:35.833333px;}
._0_c00232{width:25.780458px;}
.fc0_c00232{color:transparent;}
.fs6_c00232{font-size:24.000000px;}
.fs7_c00232{font-size:30.000000px;}
.fs1_c00232{font-size:48.000000px;}
.fs5_c00232{font-size:54.000000px;}
.fs3_c00232{font-size:60.000000px;}
.fs2_c00232{font-size:66.000000px;}
.fs4_c00232{font-size:72.000000px;}
.fs0_c00232{font-size:78.000000px;}
.y0_c00232{bottom:0.000000px;}
.y6d_c00232{bottom:161.250000px;}
.y6c_c00232{bottom:177.900000px;}
.y33_c00232{bottom:179.700000px;}
.y6b_c00232{bottom:192.600000px;}
.y32_c00232{bottom:194.400000px;}
.y6a_c00232{bottom:207.000000px;}
.y31_c00232{bottom:208.050000px;}
.y30_c00232{bottom:221.700000px;}
.y69_c00232{bottom:255.750000px;}
.y2f_c00232{bottom:268.200000px;}
.y68_c00232{bottom:274.050000px;}
.y2e_c00232{bottom:285.750000px;}
.y67_c00232{bottom:291.750000px;}
.y2d_c00232{bottom:303.750000px;}
.y66_c00232{bottom:309.750000px;}
.y2c_c00232{bottom:321.450000px;}
.y65_c00232{bottom:327.750000px;}
.y2b_c00232{bottom:339.450000px;}
.y64_c00232{bottom:345.000000px;}
.y2a_c00232{bottom:361.500000px;}
.y63_c00232{bottom:363.000000px;}
.y62_c00232{bottom:381.000000px;}
.y29_c00232{bottom:388.050000px;}
.y61_c00232{bottom:399.000000px;}
.y28_c00232{bottom:414.750000px;}
.y60_c00232{bottom:416.700000px;}
.y27_c00232{bottom:432.750000px;}
.y5f_c00232{bottom:434.400000px;}
.y26_c00232{bottom:454.950000px;}
.y5e_c00232{bottom:457.800000px;}
.y5d_c00232{bottom:470.100000px;}
.y25_c00232{bottom:472.950000px;}
.y5c_c00232{bottom:488.100000px;}
.y24_c00232{bottom:490.950000px;}
.y5b_c00232{bottom:506.100000px;}
.y23_c00232{bottom:508.950000px;}
.y5a_c00232{bottom:524.100000px;}
.y22_c00232{bottom:526.950000px;}
.y59_c00232{bottom:542.100000px;}
.y21_c00232{bottom:544.650000px;}
.y58_c00232{bottom:559.800000px;}
.y20_c00232{bottom:563.400000px;}
.y57_c00232{bottom:578.100000px;}
.y1f_c00232{bottom:584.700000px;}
.y56_c00232{bottom:595.800000px;}
.y1e_c00232{bottom:603.750000px;}
.y55_c00232{bottom:613.800000px;}
.y1d_c00232{bottom:625.350000px;}
.y54_c00232{bottom:631.500000px;}
.y1c_c00232{bottom:644.400000px;}
.y53_c00232{bottom:649.350000px;}
.y1b_c00232{bottom:660.150000px;}
.y1a_c00232{bottom:665.250000px;}
.y52_c00232{bottom:667.050000px;}
.y51_c00232{bottom:685.050000px;}
.y19_c00232{bottom:687.600000px;}
.y50_c00232{bottom:702.750000px;}
.y18_c00232{bottom:705.600000px;}
.y4f_c00232{bottom:721.050000px;}
.y17_c00232{bottom:723.600000px;}
.y4e_c00232{bottom:738.300000px;}
.y16_c00232{bottom:745.500000px;}
.y4d_c00232{bottom:756.300000px;}
.y15_c00232{bottom:763.500000px;}
.y4c_c00232{bottom:774.300000px;}
.y14_c00232{bottom:781.200000px;}
.y4b_c00232{bottom:792.300000px;}
.y13_c00232{bottom:803.550000px;}
.y4a_c00232{bottom:810.300000px;}
.y12_c00232{bottom:821.550000px;}
.y49_c00232{bottom:828.300000px;}
.y11_c00232{bottom:843.900000px;}
.y48_c00232{bottom:846.000000px;}
.y47_c00232{bottom:864.000000px;}
.y10_c00232{bottom:865.800000px;}
.y46_c00232{bottom:881.700000px;}
.yf_c00232{bottom:883.800000px;}
.y45_c00232{bottom:900.000000px;}
.ye_c00232{bottom:905.400000px;}
.yd_c00232{bottom:923.400000px;}
.y44_c00232{bottom:923.700000px;}
.y3e_c00232{bottom:924.750000px;}
.y43_c00232{bottom:925.200000px;}
.y3d_c00232{bottom:938.100000px;}
.yc_c00232{bottom:945.300000px;}
.y3c_c00232{bottom:952.500000px;}
.y40_c00232{bottom:954.000000px;}
.yb_c00232{bottom:963.600000px;}
.y41_c00232{bottom:966.600000px;}
.y3b_c00232{bottom:966.900000px;}
.y42_c00232{bottom:967.350000px;}
.y3f_c00232{bottom:968.400000px;}
.ya_c00232{bottom:981.300000px;}
.y3a_c00232{bottom:995.400000px;}
.y9_c00232{bottom:1002.900000px;}
.y39_c00232{bottom:1010.100000px;}
.y8_c00232{bottom:1021.950000px;}
.y38_c00232{bottom:1026.300000px;}
.y7_c00232{bottom:1039.200000px;}
.y37_c00232{bottom:1049.700000px;}
.y6_c00232{bottom:1056.900000px;}
.y36_c00232{bottom:1067.700000px;}
.y5_c00232{bottom:1074.900000px;}
.y4_c00232{bottom:1092.600000px;}
.y35_c00232{bottom:1094.100000px;}
.y3_c00232{bottom:1110.600000px;}
.y34_c00232{bottom:1112.400000px;}
.y1_c00232{bottom:1138.350000px;}
.y2_c00232{bottom:1140.150000px;}
.h8_c00232{height:24.000000px;}
.h9_c00232{height:30.000000px;}
.h3_c00232{height:48.000000px;}
.h7_c00232{height:54.000000px;}
.h5_c00232{height:60.000000px;}
.h4_c00232{height:66.000000px;}
.h6_c00232{height:72.000000px;}
.h2_c00232{height:78.000000px;}
.h0_c00232{height:1272.600036px;}
.h1_c00232{height:1272.750000px;}
.w1_c00232{width:963.000000px;}
.w0_c00232{width:963.359985px;}
.x0_c00232{left:0.000000px;}
.x68_c00232{left:97.200000px;}
.x85_c00232{left:99.300000px;}
.x3_c00232{left:110.100000px;}
.x22_c00232{left:111.300000px;}
.xa_c00232{left:112.500000px;}
.x54_c00232{left:113.550000px;}
.x67_c00232{left:115.200000px;}
.x91_c00232{left:116.400000px;}
.x9a_c00232{left:125.550000px;}
.x82_c00232{left:127.500000px;}
.x2b_c00232{left:131.400000px;}
.x33_c00232{left:132.900000px;}
.x64_c00232{left:133.950000px;}
.x86_c00232{left:135.000000px;}
.x57_c00232{left:137.400000px;}
.x63_c00232{left:139.050000px;}
.x4d_c00232{left:142.350000px;}
.x5f_c00232{left:146.550000px;}
.x18_c00232{left:147.900000px;}
.x26_c00232{left:149.850000px;}
.x4e_c00232{left:151.650000px;}
.x94_c00232{left:156.600000px;}
.x3a_c00232{left:158.100000px;}
.xb_c00232{left:159.600000px;}
.x3d_c00232{left:162.000000px;}
.x8f_c00232{left:163.200000px;}
.x44_c00232{left:164.550000px;}
.x4_c00232{left:165.600000px;}
.x32_c00232{left:166.800000px;}
.xc_c00232{left:168.300000px;}
.x1d_c00232{left:170.250000px;}
.x70_c00232{left:171.750000px;}
.xd_c00232{left:174.450000px;}
.x5e_c00232{left:176.100000px;}
.x59_c00232{left:178.800000px;}
.x13_c00232{left:181.050000px;}
.x55_c00232{left:182.400000px;}
.x34_c00232{left:185.400000px;}
.x19_c00232{left:187.800000px;}
.x98_c00232{left:191.100000px;}
.x61_c00232{left:194.400000px;}
.x4f_c00232{left:196.650000px;}
.x87_c00232{left:198.750000px;}
.x77_c00232{left:200.250000px;}
.x83_c00232{left:201.600000px;}
.x1e_c00232{left:203.700000px;}
.x6d_c00232{left:205.650000px;}
.x5_c00232{left:207.300000px;}
.x49_c00232{left:209.250000px;}
.x27_c00232{left:211.350000px;}
.x9c_c00232{left:213.150000px;}
.x14_c00232{left:214.500000px;}
.x45_c00232{left:216.450000px;}
.xe_c00232{left:218.400000px;}
.x1a_c00232{left:219.900000px;}
.x28_c00232{left:221.100000px;}
.x88_c00232{left:222.900000px;}
.x47_c00232{left:224.400000px;}
.x80_c00232{left:227.250000px;}
.x50_c00232{left:228.300000px;}
.x5a_c00232{left:230.250000px;}
.x3b_c00232{left:231.600000px;}
.x2c_c00232{left:236.550000px;}
.x23_c00232{left:237.750000px;}
.x29_c00232{left:238.800000px;}
.x78_c00232{left:241.350000px;}
.x3e_c00232{left:243.450000px;}
.x7c_c00232{left:245.550000px;}
.x35_c00232{left:247.350000px;}
.x89_c00232{left:250.950000px;}
.x3c_c00232{left:252.150000px;}
.x65_c00232{left:256.050000px;}
.x6a_c00232{left:259.500000px;}
.x6_c00232{left:260.550000px;}
.x74_c00232{left:262.500000px;}
.x3f_c00232{left:264.750000px;}
.x5b_c00232{left:265.950000px;}
.x1f_c00232{left:268.200000px;}
.x36_c00232{left:269.700000px;}
.x56_c00232{left:271.050000px;}
.xf_c00232{left:273.900000px;}
.x15_c00232{left:278.250000px;}
.x97_c00232{left:280.950000px;}
.x48_c00232{left:282.300000px;}
.x71_c00232{left:283.800000px;}
.x46_c00232{left:284.850000px;}
.x8c_c00232{left:285.900000px;}
.x10_c00232{left:289.800000px;}
.x4a_c00232{left:292.050000px;}
.x81_c00232{left:296.400000px;}
.x79_c00232{left:297.450000px;}
.x7_c00232{left:298.650000px;}
.x2d_c00232{left:300.300000px;}
.x7d_c00232{left:301.350000px;}
.x90_c00232{left:303.600000px;}
.x40_c00232{left:305.400000px;}
.x60_c00232{left:306.750000px;}
.x16_c00232{left:308.100000px;}
.x72_c00232{left:310.050000px;}
.x66_c00232{left:312.150000px;}
.x30_c00232{left:314.700000px;}
.x6b_c00232{left:316.050000px;}
.x9b_c00232{left:317.250000px;}
.x9d_c00232{left:318.300000px;}
.x24_c00232{left:321.600000px;}
.x11_c00232{left:322.950000px;}
.x5c_c00232{left:324.300000px;}
.x37_c00232{left:325.500000px;}
.x92_c00232{left:327.000000px;}
.x1b_c00232{left:330.750000px;}
.x7e_c00232{left:332.400000px;}
.x7a_c00232{left:333.750000px;}
.x20_c00232{left:334.800000px;}
.x84_c00232{left:336.150000px;}
.x1_c00232{left:337.650000px;}
.x2e_c00232{left:339.600000px;}
.x41_c00232{left:341.700000px;}
.x2a_c00232{left:343.650000px;}
.x6c_c00232{left:348.150000px;}
.x8_c00232{left:349.800000px;}
.x62_c00232{left:350.850000px;}
.x17_c00232{left:352.350000px;}
.x99_c00232{left:355.950000px;}
.x2f_c00232{left:358.650000px;}
.x4b_c00232{left:360.750000px;}
.x8d_c00232{left:362.550000px;}
.x69_c00232{left:364.650000px;}
.x7f_c00232{left:367.650000px;}
.x73_c00232{left:368.700000px;}
.x51_c00232{left:372.750000px;}
.x8a_c00232{left:377.250000px;}
.x1c_c00232{left:378.300000px;}
.x21_c00232{left:379.500000px;}
.x93_c00232{left:381.000000px;}
.x25_c00232{left:382.050000px;}
.x42_c00232{left:383.850000px;}
.x38_c00232{left:385.650000px;}
.x52_c00232{left:387.150000px;}
.x75_c00232{left:392.850000px;}
.x7b_c00232{left:394.200000px;}
.x4c_c00232{left:398.250000px;}
.x5d_c00232{left:401.400000px;}
.x12_c00232{left:402.900000px;}
.x8b_c00232{left:403.950000px;}
.x53_c00232{left:406.200000px;}
.x76_c00232{left:407.550000px;}
.x31_c00232{left:409.050000px;}
.x6e_c00232{left:410.100000px;}
.x9_c00232{left:413.100000px;}
.x58_c00232{left:414.900000px;}
.x43_c00232{left:417.000000px;}
.x8e_c00232{left:419.400000px;}
.x95_c00232{left:420.450000px;}
.x39_c00232{left:422.400000px;}
.x6f_c00232{left:423.750000px;}
.x96_c00232{left:442.050000px;}
.x13c_c00232{left:445.350000px;}
.xab_c00232{left:452.550000px;}
.x13d_c00232{left:454.650000px;}
.x140_c00232{left:455.700000px;}
.xc3_c00232{left:465.900000px;}
.xbc_c00232{left:467.100000px;}
.x9e_c00232{left:470.550000px;}
.xec_c00232{left:471.600000px;}
.x12e_c00232{left:473.100000px;}
.xc6_c00232{left:480.900000px;}
.x123_c00232{left:484.800000px;}
.xa5_c00232{left:487.650000px;}
.xe4_c00232{left:489.300000px;}
.x116_c00232{left:490.650000px;}
.xcd_c00232{left:491.700000px;}
.x13b_c00232{left:493.500000px;}
.x119_c00232{left:494.550000px;}
.xac_c00232{left:495.750000px;}
.xbd_c00232{left:498.450000px;}
.xff_c00232{left:501.300000px;}
.xd2_c00232{left:503.400000px;}
.x141_c00232{left:505.050000px;}
.x11d_c00232{left:507.150000px;}
.xf2_c00232{left:510.000000px;}
.xda_c00232{left:513.450000px;}
.x135_c00232{left:514.800000px;}
.xa6_c00232{left:516.750000px;}
.xf7_c00232{left:518.250000px;}
.x100_c00232{left:519.600000px;}
.xde_c00232{left:521.850000px;}
.x107_c00232{left:524.250000px;}
.x136_c00232{left:526.350000px;}
.xfb_c00232{left:528.000000px;}
.xc7_c00232{left:530.850000px;}
.x12f_c00232{left:532.050000px;}
.x109_c00232{left:533.700000px;}
.xa7_c00232{left:534.750000px;}
.x9f_c00232{left:537.450000px;}
.xce_c00232{left:539.250000px;}
.xb7_c00232{left:541.050000px;}
.xbe_c00232{left:543.450000px;}
.x127_c00232{left:545.100000px;}
.xb1_c00232{left:547.200000px;}
.xf3_c00232{left:549.300000px;}
.x128_c00232{left:550.350000px;}
.xd5_c00232{left:551.550000px;}
.xd3_c00232{left:553.050000px;}
.x101_c00232{left:555.300000px;}
.x104_c00232{left:556.800000px;}
.x130_c00232{left:559.350000px;}
.xbf_c00232{left:560.400000px;}
.xad_c00232{left:561.600000px;}
.x13e_c00232{left:562.650000px;}
.xe5_c00232{left:563.850000px;}
.xc8_c00232{left:565.800000px;}
.x11a_c00232{left:568.350000px;}
.xb2_c00232{left:570.600000px;}
.x124_c00232{left:571.800000px;}
.x129_c00232{left:575.250000px;}
.xef_c00232{left:576.450000px;}
.x13a_c00232{left:578.100000px;}
.xa0_c00232{left:579.900000px;}
.xd4_c00232{left:584.700000px;}
.x105_c00232{left:588.150000px;}
.xdf_c00232{left:590.550000px;}
.x120_c00232{left:592.050000px;}
.xc0_c00232{left:593.100000px;}
.x102_c00232{left:594.600000px;}
.xdb_c00232{left:595.950000px;}
.xfc_c00232{left:597.000000px;}
.x137_c00232{left:598.350000px;}
.xd8_c00232{left:600.150000px;}
.xe6_c00232{left:602.400000px;}
.xa8_c00232{left:605.250000px;}
.xae_c00232{left:606.900000px;}
.xf8_c00232{left:608.250000px;}
.xb3_c00232{left:611.250000px;}
.xc1_c00232{left:612.900000px;}
.x114_c00232{left:615.450000px;}
.x142_c00232{left:617.400000px;}
.x110_c00232{left:619.050000px;}
.xc9_c00232{left:620.100000px;}
.xa1_c00232{left:625.200000px;}
.xf4_c00232{left:626.700000px;}
.xed_c00232{left:629.100000px;}
.xb8_c00232{left:630.450000px;}
.x10c_c00232{left:632.100000px;}
.x121_c00232{left:634.500000px;}
.xe0_c00232{left:636.600000px;}
.x11e_c00232{left:639.300000px;}
.xe7_c00232{left:641.250000px;}
.x111_c00232{left:643.950000px;}
.x122_c00232{left:645.300000px;}
.xcf_c00232{left:646.650000px;}
.xf5_c00232{left:648.300000px;}
.x132_c00232{left:650.100000px;}
.xe8_c00232{left:652.350000px;}
.x11b_c00232{left:653.700000px;}
.xb4_c00232{left:655.200000px;}
.xa9_c00232{left:656.400000px;}
.x117_c00232{left:658.050000px;}
.xaf_c00232{left:659.100000px;}
.x11f_c00232{left:660.150000px;}
.xc2_c00232{left:661.800000px;}
.xca_c00232{left:663.000000px;}
.x115_c00232{left:664.800000px;}
.xaa_c00232{left:666.150000px;}
.xf0_c00232{left:667.350000px;}
.xd7_c00232{left:669.600000px;}
.x10d_c00232{left:671.100000px;}
.x106_c00232{left:674.400000px;}
.xd0_c00232{left:676.200000px;}
.xcb_c00232{left:677.400000px;}
.xb9_c00232{left:678.750000px;}
.xee_c00232{left:680.250000px;}
.x133_c00232{left:682.500000px;}
.xd1_c00232{left:683.700000px;}
.x125_c00232{left:684.750000px;}
.x138_c00232{left:686.100000px;}
.xa2_c00232{left:687.150000px;}
.x12a_c00232{left:688.350000px;}
.x13f_c00232{left:690.450000px;}
.xe1_c00232{left:695.250000px;}
.xb5_c00232{left:697.350000px;}
.x103_c00232{left:698.400000px;}
.x108_c00232{left:701.700000px;}
.x10e_c00232{left:703.500000px;}
.xfd_c00232{left:704.700000px;}
.x12b_c00232{left:707.100000px;}
.xba_c00232{left:708.600000px;}
.xdc_c00232{left:712.650000px;}
.x10a_c00232{left:714.600000px;}
.xe2_c00232{left:715.800000px;}
.xc4_c00232{left:718.950000px;}
.x139_c00232{left:720.150000px;}
.x126_c00232{left:722.100000px;}
.xe9_c00232{left:723.600000px;}
.xf9_c00232{left:724.950000px;}
.x112_c00232{left:726.750000px;}
.x118_c00232{left:728.250000px;}
.xd9_c00232{left:729.750000px;}
.xdd_c00232{left:732.150000px;}
.x10f_c00232{left:734.100000px;}
.xa3_c00232{left:736.050000px;}
.x11c_c00232{left:738.300000px;}
.xb6_c00232{left:739.800000px;}
.xcc_c00232{left:742.500000px;}
.x12c_c00232{left:744.150000px;}
.xea_c00232{left:745.200000px;}
.xc5_c00232{left:747.450000px;}
.x131_c00232{left:748.800000px;}
.xe3_c00232{left:751.050000px;}
.xfe_c00232{left:755.100000px;}
.x113_c00232{left:756.600000px;}
.xf6_c00232{left:758.850000px;}
.x2_c00232{left:762.450000px;}
.x12d_c00232{left:763.950000px;}
.xeb_c00232{left:765.300000px;}
.xfa_c00232{left:767.850000px;}
.x10b_c00232{left:770.400000px;}
.xa4_c00232{left:772.050000px;}
.xbb_c00232{left:773.400000px;}
.xb0_c00232{left:775.050000px;}
.xd6_c00232{left:776.100000px;}
.xf1_c00232{left:777.450000px;}
.x134_c00232{left:779.700000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws9_c00232{word-spacing:-9.340782pt;}
.ws2_c00232{word-spacing:-8.888889pt;}
.ws1_c00232{word-spacing:-7.842380pt;}
.ws0_c00232{word-spacing:-7.371274pt;}
.wsa_c00232{word-spacing:-7.223720pt;}
.ws3_c00232{word-spacing:-7.211159pt;}
.ws6_c00232{word-spacing:-4.558405pt;}
.ws4_c00232{word-spacing:-2.555556pt;}
.ws8_c00232{word-spacing:-1.270607pt;}
.wsc_c00232{word-spacing:0.000000pt;}
.ws5_c00232{word-spacing:4.786325pt;}
.wsb_c00232{word-spacing:6.049383pt;}
.ws7_c00232{word-spacing:31.851852pt;}
._0_c00232{width:22.915963pt;}
.fs6_c00232{font-size:21.333333pt;}
.fs7_c00232{font-size:26.666667pt;}
.fs1_c00232{font-size:42.666667pt;}
.fs5_c00232{font-size:48.000000pt;}
.fs3_c00232{font-size:53.333333pt;}
.fs2_c00232{font-size:58.666667pt;}
.fs4_c00232{font-size:64.000000pt;}
.fs0_c00232{font-size:69.333333pt;}
.y0_c00232{bottom:0.000000pt;}
.y6d_c00232{bottom:143.333333pt;}
.y6c_c00232{bottom:158.133333pt;}
.y33_c00232{bottom:159.733333pt;}
.y6b_c00232{bottom:171.200000pt;}
.y32_c00232{bottom:172.800000pt;}
.y6a_c00232{bottom:184.000000pt;}
.y31_c00232{bottom:184.933333pt;}
.y30_c00232{bottom:197.066667pt;}
.y69_c00232{bottom:227.333333pt;}
.y2f_c00232{bottom:238.400000pt;}
.y68_c00232{bottom:243.600000pt;}
.y2e_c00232{bottom:254.000000pt;}
.y67_c00232{bottom:259.333333pt;}
.y2d_c00232{bottom:270.000000pt;}
.y66_c00232{bottom:275.333333pt;}
.y2c_c00232{bottom:285.733333pt;}
.y65_c00232{bottom:291.333333pt;}
.y2b_c00232{bottom:301.733333pt;}
.y64_c00232{bottom:306.666667pt;}
.y2a_c00232{bottom:321.333333pt;}
.y63_c00232{bottom:322.666667pt;}
.y62_c00232{bottom:338.666667pt;}
.y29_c00232{bottom:344.933333pt;}
.y61_c00232{bottom:354.666667pt;}
.y28_c00232{bottom:368.666667pt;}
.y60_c00232{bottom:370.400000pt;}
.y27_c00232{bottom:384.666667pt;}
.y5f_c00232{bottom:386.133333pt;}
.y26_c00232{bottom:404.400000pt;}
.y5e_c00232{bottom:406.933333pt;}
.y5d_c00232{bottom:417.866667pt;}
.y25_c00232{bottom:420.400000pt;}
.y5c_c00232{bottom:433.866667pt;}
.y24_c00232{bottom:436.400000pt;}
.y5b_c00232{bottom:449.866667pt;}
.y23_c00232{bottom:452.400000pt;}
.y5a_c00232{bottom:465.866667pt;}
.y22_c00232{bottom:468.400000pt;}
.y59_c00232{bottom:481.866667pt;}
.y21_c00232{bottom:484.133333pt;}
.y58_c00232{bottom:497.600000pt;}
.y20_c00232{bottom:500.800000pt;}
.y57_c00232{bottom:513.866667pt;}
.y1f_c00232{bottom:519.733333pt;}
.y56_c00232{bottom:529.600000pt;}
.y1e_c00232{bottom:536.666667pt;}
.y55_c00232{bottom:545.600000pt;}
.y1d_c00232{bottom:555.866667pt;}
.y54_c00232{bottom:561.333333pt;}
.y1c_c00232{bottom:572.800000pt;}
.y53_c00232{bottom:577.200000pt;}
.y1b_c00232{bottom:586.800000pt;}
.y1a_c00232{bottom:591.333333pt;}
.y52_c00232{bottom:592.933333pt;}
.y51_c00232{bottom:608.933333pt;}
.y19_c00232{bottom:611.200000pt;}
.y50_c00232{bottom:624.666667pt;}
.y18_c00232{bottom:627.200000pt;}
.y4f_c00232{bottom:640.933333pt;}
.y17_c00232{bottom:643.200000pt;}
.y4e_c00232{bottom:656.266667pt;}
.y16_c00232{bottom:662.666667pt;}
.y4d_c00232{bottom:672.266667pt;}
.y15_c00232{bottom:678.666667pt;}
.y4c_c00232{bottom:688.266667pt;}
.y14_c00232{bottom:694.400000pt;}
.y4b_c00232{bottom:704.266667pt;}
.y13_c00232{bottom:714.266667pt;}
.y4a_c00232{bottom:720.266667pt;}
.y12_c00232{bottom:730.266667pt;}
.y49_c00232{bottom:736.266667pt;}
.y11_c00232{bottom:750.133333pt;}
.y48_c00232{bottom:752.000000pt;}
.y47_c00232{bottom:768.000000pt;}
.y10_c00232{bottom:769.600000pt;}
.y46_c00232{bottom:783.733333pt;}
.yf_c00232{bottom:785.600000pt;}
.y45_c00232{bottom:800.000000pt;}
.ye_c00232{bottom:804.800000pt;}
.yd_c00232{bottom:820.800000pt;}
.y44_c00232{bottom:821.066667pt;}
.y3e_c00232{bottom:822.000000pt;}
.y43_c00232{bottom:822.400000pt;}
.y3d_c00232{bottom:833.866667pt;}
.yc_c00232{bottom:840.266667pt;}
.y3c_c00232{bottom:846.666667pt;}
.y40_c00232{bottom:848.000000pt;}
.yb_c00232{bottom:856.533333pt;}
.y41_c00232{bottom:859.200000pt;}
.y3b_c00232{bottom:859.466667pt;}
.y42_c00232{bottom:859.866667pt;}
.y3f_c00232{bottom:860.800000pt;}
.ya_c00232{bottom:872.266667pt;}
.y3a_c00232{bottom:884.800000pt;}
.y9_c00232{bottom:891.466667pt;}
.y39_c00232{bottom:897.866667pt;}
.y8_c00232{bottom:908.400000pt;}
.y38_c00232{bottom:912.266667pt;}
.y7_c00232{bottom:923.733333pt;}
.y37_c00232{bottom:933.066667pt;}
.y6_c00232{bottom:939.466667pt;}
.y36_c00232{bottom:949.066667pt;}
.y5_c00232{bottom:955.466667pt;}
.y4_c00232{bottom:971.200000pt;}
.y35_c00232{bottom:972.533333pt;}
.y3_c00232{bottom:987.200000pt;}
.y34_c00232{bottom:988.800000pt;}
.y1_c00232{bottom:1011.866667pt;}
.y2_c00232{bottom:1013.466667pt;}
.h8_c00232{height:21.333333pt;}
.h9_c00232{height:26.666667pt;}
.h3_c00232{height:42.666667pt;}
.h7_c00232{height:48.000000pt;}
.h5_c00232{height:53.333333pt;}
.h4_c00232{height:58.666667pt;}
.h6_c00232{height:64.000000pt;}
.h2_c00232{height:69.333333pt;}
.h0_c00232{height:1131.200032pt;}
.h1_c00232{height:1131.333333pt;}
.w1_c00232{width:856.000000pt;}
.w0_c00232{width:856.319987pt;}
.x0_c00232{left:0.000000pt;}
.x68_c00232{left:86.400000pt;}
.x85_c00232{left:88.266667pt;}
.x3_c00232{left:97.866667pt;}
.x22_c00232{left:98.933333pt;}
.xa_c00232{left:100.000000pt;}
.x54_c00232{left:100.933333pt;}
.x67_c00232{left:102.400000pt;}
.x91_c00232{left:103.466667pt;}
.x9a_c00232{left:111.600000pt;}
.x82_c00232{left:113.333333pt;}
.x2b_c00232{left:116.800000pt;}
.x33_c00232{left:118.133333pt;}
.x64_c00232{left:119.066667pt;}
.x86_c00232{left:120.000000pt;}
.x57_c00232{left:122.133333pt;}
.x63_c00232{left:123.600000pt;}
.x4d_c00232{left:126.533333pt;}
.x5f_c00232{left:130.266667pt;}
.x18_c00232{left:131.466667pt;}
.x26_c00232{left:133.200000pt;}
.x4e_c00232{left:134.800000pt;}
.x94_c00232{left:139.200000pt;}
.x3a_c00232{left:140.533333pt;}
.xb_c00232{left:141.866667pt;}
.x3d_c00232{left:144.000000pt;}
.x8f_c00232{left:145.066667pt;}
.x44_c00232{left:146.266667pt;}
.x4_c00232{left:147.200000pt;}
.x32_c00232{left:148.266667pt;}
.xc_c00232{left:149.600000pt;}
.x1d_c00232{left:151.333333pt;}
.x70_c00232{left:152.666667pt;}
.xd_c00232{left:155.066667pt;}
.x5e_c00232{left:156.533333pt;}
.x59_c00232{left:158.933333pt;}
.x13_c00232{left:160.933333pt;}
.x55_c00232{left:162.133333pt;}
.x34_c00232{left:164.800000pt;}
.x19_c00232{left:166.933333pt;}
.x98_c00232{left:169.866667pt;}
.x61_c00232{left:172.800000pt;}
.x4f_c00232{left:174.800000pt;}
.x87_c00232{left:176.666667pt;}
.x77_c00232{left:178.000000pt;}
.x83_c00232{left:179.200000pt;}
.x1e_c00232{left:181.066667pt;}
.x6d_c00232{left:182.800000pt;}
.x5_c00232{left:184.266667pt;}
.x49_c00232{left:186.000000pt;}
.x27_c00232{left:187.866667pt;}
.x9c_c00232{left:189.466667pt;}
.x14_c00232{left:190.666667pt;}
.x45_c00232{left:192.400000pt;}
.xe_c00232{left:194.133333pt;}
.x1a_c00232{left:195.466667pt;}
.x28_c00232{left:196.533333pt;}
.x88_c00232{left:198.133333pt;}
.x47_c00232{left:199.466667pt;}
.x80_c00232{left:202.000000pt;}
.x50_c00232{left:202.933333pt;}
.x5a_c00232{left:204.666667pt;}
.x3b_c00232{left:205.866667pt;}
.x2c_c00232{left:210.266667pt;}
.x23_c00232{left:211.333333pt;}
.x29_c00232{left:212.266667pt;}
.x78_c00232{left:214.533333pt;}
.x3e_c00232{left:216.400000pt;}
.x7c_c00232{left:218.266667pt;}
.x35_c00232{left:219.866667pt;}
.x89_c00232{left:223.066667pt;}
.x3c_c00232{left:224.133333pt;}
.x65_c00232{left:227.600000pt;}
.x6a_c00232{left:230.666667pt;}
.x6_c00232{left:231.600000pt;}
.x74_c00232{left:233.333333pt;}
.x3f_c00232{left:235.333333pt;}
.x5b_c00232{left:236.400000pt;}
.x1f_c00232{left:238.400000pt;}
.x36_c00232{left:239.733333pt;}
.x56_c00232{left:240.933333pt;}
.xf_c00232{left:243.466667pt;}
.x15_c00232{left:247.333333pt;}
.x97_c00232{left:249.733333pt;}
.x48_c00232{left:250.933333pt;}
.x71_c00232{left:252.266667pt;}
.x46_c00232{left:253.200000pt;}
.x8c_c00232{left:254.133333pt;}
.x10_c00232{left:257.600000pt;}
.x4a_c00232{left:259.600000pt;}
.x81_c00232{left:263.466667pt;}
.x79_c00232{left:264.400000pt;}
.x7_c00232{left:265.466667pt;}
.x2d_c00232{left:266.933333pt;}
.x7d_c00232{left:267.866667pt;}
.x90_c00232{left:269.866667pt;}
.x40_c00232{left:271.466667pt;}
.x60_c00232{left:272.666667pt;}
.x16_c00232{left:273.866667pt;}
.x72_c00232{left:275.600000pt;}
.x66_c00232{left:277.466667pt;}
.x30_c00232{left:279.733333pt;}
.x6b_c00232{left:280.933333pt;}
.x9b_c00232{left:282.000000pt;}
.x9d_c00232{left:282.933333pt;}
.x24_c00232{left:285.866667pt;}
.x11_c00232{left:287.066667pt;}
.x5c_c00232{left:288.266667pt;}
.x37_c00232{left:289.333333pt;}
.x92_c00232{left:290.666667pt;}
.x1b_c00232{left:294.000000pt;}
.x7e_c00232{left:295.466667pt;}
.x7a_c00232{left:296.666667pt;}
.x20_c00232{left:297.600000pt;}
.x84_c00232{left:298.800000pt;}
.x1_c00232{left:300.133333pt;}
.x2e_c00232{left:301.866667pt;}
.x41_c00232{left:303.733333pt;}
.x2a_c00232{left:305.466667pt;}
.x6c_c00232{left:309.466667pt;}
.x8_c00232{left:310.933333pt;}
.x62_c00232{left:311.866667pt;}
.x17_c00232{left:313.200000pt;}
.x99_c00232{left:316.400000pt;}
.x2f_c00232{left:318.800000pt;}
.x4b_c00232{left:320.666667pt;}
.x8d_c00232{left:322.266667pt;}
.x69_c00232{left:324.133333pt;}
.x7f_c00232{left:326.800000pt;}
.x73_c00232{left:327.733333pt;}
.x51_c00232{left:331.333333pt;}
.x8a_c00232{left:335.333333pt;}
.x1c_c00232{left:336.266667pt;}
.x21_c00232{left:337.333333pt;}
.x93_c00232{left:338.666667pt;}
.x25_c00232{left:339.600000pt;}
.x42_c00232{left:341.200000pt;}
.x38_c00232{left:342.800000pt;}
.x52_c00232{left:344.133333pt;}
.x75_c00232{left:349.200000pt;}
.x7b_c00232{left:350.400000pt;}
.x4c_c00232{left:354.000000pt;}
.x5d_c00232{left:356.800000pt;}
.x12_c00232{left:358.133333pt;}
.x8b_c00232{left:359.066667pt;}
.x53_c00232{left:361.066667pt;}
.x76_c00232{left:362.266667pt;}
.x31_c00232{left:363.600000pt;}
.x6e_c00232{left:364.533333pt;}
.x9_c00232{left:367.200000pt;}
.x58_c00232{left:368.800000pt;}
.x43_c00232{left:370.666667pt;}
.x8e_c00232{left:372.800000pt;}
.x95_c00232{left:373.733333pt;}
.x39_c00232{left:375.466667pt;}
.x6f_c00232{left:376.666667pt;}
.x96_c00232{left:392.933333pt;}
.x13c_c00232{left:395.866667pt;}
.xab_c00232{left:402.266667pt;}
.x13d_c00232{left:404.133333pt;}
.x140_c00232{left:405.066667pt;}
.xc3_c00232{left:414.133333pt;}
.xbc_c00232{left:415.200000pt;}
.x9e_c00232{left:418.266667pt;}
.xec_c00232{left:419.200000pt;}
.x12e_c00232{left:420.533333pt;}
.xc6_c00232{left:427.466667pt;}
.x123_c00232{left:430.933333pt;}
.xa5_c00232{left:433.466667pt;}
.xe4_c00232{left:434.933333pt;}
.x116_c00232{left:436.133333pt;}
.xcd_c00232{left:437.066667pt;}
.x13b_c00232{left:438.666667pt;}
.x119_c00232{left:439.600000pt;}
.xac_c00232{left:440.666667pt;}
.xbd_c00232{left:443.066667pt;}
.xff_c00232{left:445.600000pt;}
.xd2_c00232{left:447.466667pt;}
.x141_c00232{left:448.933333pt;}
.x11d_c00232{left:450.800000pt;}
.xf2_c00232{left:453.333333pt;}
.xda_c00232{left:456.400000pt;}
.x135_c00232{left:457.600000pt;}
.xa6_c00232{left:459.333333pt;}
.xf7_c00232{left:460.666667pt;}
.x100_c00232{left:461.866667pt;}
.xde_c00232{left:463.866667pt;}
.x107_c00232{left:466.000000pt;}
.x136_c00232{left:467.866667pt;}
.xfb_c00232{left:469.333333pt;}
.xc7_c00232{left:471.866667pt;}
.x12f_c00232{left:472.933333pt;}
.x109_c00232{left:474.400000pt;}
.xa7_c00232{left:475.333333pt;}
.x9f_c00232{left:477.733333pt;}
.xce_c00232{left:479.333333pt;}
.xb7_c00232{left:480.933333pt;}
.xbe_c00232{left:483.066667pt;}
.x127_c00232{left:484.533333pt;}
.xb1_c00232{left:486.400000pt;}
.xf3_c00232{left:488.266667pt;}
.x128_c00232{left:489.200000pt;}
.xd5_c00232{left:490.266667pt;}
.xd3_c00232{left:491.600000pt;}
.x101_c00232{left:493.600000pt;}
.x104_c00232{left:494.933333pt;}
.x130_c00232{left:497.200000pt;}
.xbf_c00232{left:498.133333pt;}
.xad_c00232{left:499.200000pt;}
.x13e_c00232{left:500.133333pt;}
.xe5_c00232{left:501.200000pt;}
.xc8_c00232{left:502.933333pt;}
.x11a_c00232{left:505.200000pt;}
.xb2_c00232{left:507.200000pt;}
.x124_c00232{left:508.266667pt;}
.x129_c00232{left:511.333333pt;}
.xef_c00232{left:512.400000pt;}
.x13a_c00232{left:513.866667pt;}
.xa0_c00232{left:515.466667pt;}
.xd4_c00232{left:519.733333pt;}
.x105_c00232{left:522.800000pt;}
.xdf_c00232{left:524.933333pt;}
.x120_c00232{left:526.266667pt;}
.xc0_c00232{left:527.200000pt;}
.x102_c00232{left:528.533333pt;}
.xdb_c00232{left:529.733333pt;}
.xfc_c00232{left:530.666667pt;}
.x137_c00232{left:531.866667pt;}
.xd8_c00232{left:533.466667pt;}
.xe6_c00232{left:535.466667pt;}
.xa8_c00232{left:538.000000pt;}
.xae_c00232{left:539.466667pt;}
.xf8_c00232{left:540.666667pt;}
.xb3_c00232{left:543.333333pt;}
.xc1_c00232{left:544.800000pt;}
.x114_c00232{left:547.066667pt;}
.x142_c00232{left:548.800000pt;}
.x110_c00232{left:550.266667pt;}
.xc9_c00232{left:551.200000pt;}
.xa1_c00232{left:555.733333pt;}
.xf4_c00232{left:557.066667pt;}
.xed_c00232{left:559.200000pt;}
.xb8_c00232{left:560.400000pt;}
.x10c_c00232{left:561.866667pt;}
.x121_c00232{left:564.000000pt;}
.xe0_c00232{left:565.866667pt;}
.x11e_c00232{left:568.266667pt;}
.xe7_c00232{left:570.000000pt;}
.x111_c00232{left:572.400000pt;}
.x122_c00232{left:573.600000pt;}
.xcf_c00232{left:574.800000pt;}
.xf5_c00232{left:576.266667pt;}
.x132_c00232{left:577.866667pt;}
.xe8_c00232{left:579.866667pt;}
.x11b_c00232{left:581.066667pt;}
.xb4_c00232{left:582.400000pt;}
.xa9_c00232{left:583.466667pt;}
.x117_c00232{left:584.933333pt;}
.xaf_c00232{left:585.866667pt;}
.x11f_c00232{left:586.800000pt;}
.xc2_c00232{left:588.266667pt;}
.xca_c00232{left:589.333333pt;}
.x115_c00232{left:590.933333pt;}
.xaa_c00232{left:592.133333pt;}
.xf0_c00232{left:593.200000pt;}
.xd7_c00232{left:595.200000pt;}
.x10d_c00232{left:596.533333pt;}
.x106_c00232{left:599.466667pt;}
.xd0_c00232{left:601.066667pt;}
.xcb_c00232{left:602.133333pt;}
.xb9_c00232{left:603.333333pt;}
.xee_c00232{left:604.666667pt;}
.x133_c00232{left:606.666667pt;}
.xd1_c00232{left:607.733333pt;}
.x125_c00232{left:608.666667pt;}
.x138_c00232{left:609.866667pt;}
.xa2_c00232{left:610.800000pt;}
.x12a_c00232{left:611.866667pt;}
.x13f_c00232{left:613.733333pt;}
.xe1_c00232{left:618.000000pt;}
.xb5_c00232{left:619.866667pt;}
.x103_c00232{left:620.800000pt;}
.x108_c00232{left:623.733333pt;}
.x10e_c00232{left:625.333333pt;}
.xfd_c00232{left:626.400000pt;}
.x12b_c00232{left:628.533333pt;}
.xba_c00232{left:629.866667pt;}
.xdc_c00232{left:633.466667pt;}
.x10a_c00232{left:635.200000pt;}
.xe2_c00232{left:636.266667pt;}
.xc4_c00232{left:639.066667pt;}
.x139_c00232{left:640.133333pt;}
.x126_c00232{left:641.866667pt;}
.xe9_c00232{left:643.200000pt;}
.xf9_c00232{left:644.400000pt;}
.x112_c00232{left:646.000000pt;}
.x118_c00232{left:647.333333pt;}
.xd9_c00232{left:648.666667pt;}
.xdd_c00232{left:650.800000pt;}
.x10f_c00232{left:652.533333pt;}
.xa3_c00232{left:654.266667pt;}
.x11c_c00232{left:656.266667pt;}
.xb6_c00232{left:657.600000pt;}
.xcc_c00232{left:660.000000pt;}
.x12c_c00232{left:661.466667pt;}
.xea_c00232{left:662.400000pt;}
.xc5_c00232{left:664.400000pt;}
.x131_c00232{left:665.600000pt;}
.xe3_c00232{left:667.600000pt;}
.xfe_c00232{left:671.200000pt;}
.x113_c00232{left:672.533333pt;}
.xf6_c00232{left:674.533333pt;}
.x2_c00232{left:677.733333pt;}
.x12d_c00232{left:679.066667pt;}
.xeb_c00232{left:680.266667pt;}
.xfa_c00232{left:682.533333pt;}
.x10b_c00232{left:684.800000pt;}
.xa4_c00232{left:686.266667pt;}
.xbb_c00232{left:687.466667pt;}
.xb0_c00232{left:688.933333pt;}
.xd6_c00232{left:689.866667pt;}
.xf1_c00232{left:691.066667pt;}
.x134_c00232{left:693.066667pt;}
}





/* 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_c00233 {
    display:none;
  }
  .loading-indicator_c00233.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00233 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_c00233 { 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_c00233" -> "#page-container .classname_c00233")
 */
.pf_c00233 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00233 { /* 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_c00233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00233 { /* 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_c00233 { /* 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_c00233 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00233 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00233 {overflow:visible;}
  }
}
.c_c00233 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00233 { /* 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_c00233:after { /* webkit #35443 */
  content: '';
}
.t_c00233:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00233 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 */
}
.__c00233 { /* 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_c00233 { /* info for Javascript */
  display:none;
}
.l_c00233 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00233 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00233 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00233: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_c00233 {
    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_c00233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00233.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_c00233 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00233;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.000000;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;}
.m37_c00233{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m102_c00233{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00233{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m68_c00233{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00233{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00233{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00233{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mac_c00233{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md1_c00233{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m74_c00233{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00233{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m45_c00233{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00233{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00233{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m109_c00233{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00233{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mb_c00233{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mad_c00233{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m100_c00233{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m2_c00233{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00233{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00233{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00233{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m27_c00233{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00233{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00233{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m92_c00233{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m78_c00233{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m49_c00233{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m85_c00233{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m75_c00233{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00233{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00233{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m28_c00233{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00233{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m77_c00233{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00233{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00233{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00233{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m6_c00233{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m82_c00233{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00233{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00233{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m43_c00233{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9_c00233{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00233{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00233{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md5_c00233{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00233{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m53_c00233{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00233{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00233{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m15_c00233{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.meb_c00233{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00233{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00233{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.maa_c00233{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me0_c00233{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m47_c00233{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00233{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.md0_c00233{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7_c00233{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m31_c00233{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md4_c00233{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m86_c00233{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00233{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10_c00233{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00233{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m84_c00233{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mf_c00233{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m12_c00233{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m3_c00233{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m13_c00233{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m81_c00233{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00233{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00233{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00233{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mba_c00233{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m18_c00233{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mda_c00233{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m14_c00233{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mef_c00233{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me1_c00233{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m62_c00233{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m30_c00233{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m83_c00233{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m66_c00233{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mc_c00233{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m17_c00233{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m11_c00233{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00233{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00233{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me2_c00233{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md7_c00233{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m73_c00233{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00233{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00233{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00233{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mee_c00233{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mec_c00233{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00233{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md2_c00233{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m87_c00233{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m89_c00233{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m50_c00233{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00233{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00233{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me4_c00233{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8_c00233{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00233{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00233{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md9_c00233{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m98_c00233{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00233{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00233{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m57_c00233{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00233{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00233{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.me_c00233{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00233{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m79_c00233{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00233{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00233{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00233{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m54_c00233{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m33_c00233{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00233{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m46_c00233{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00233{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m44_c00233{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mca_c00233{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me8_c00233{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00233{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma_c00233{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00233{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00233{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mde_c00233{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m36_c00233{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00233{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00233{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00233{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m88_c00233{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m70_c00233{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00233{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m58_c00233{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00233{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m97_c00233{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m21_c00233{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m22_c00233{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00233{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00233{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00233{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00233{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m39_c00233{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m20_c00233{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m34_c00233{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m63_c00233{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md6_c00233{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m72_c00233{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m76_c00233{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00233{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.md3_c00233{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me7_c00233{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4_c00233{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m101_c00233{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.me9_c00233{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mce_c00233{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m59_c00233{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m29_c00233{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m24_c00233{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m80_c00233{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00233{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00233{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00233{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m107_c00233{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m65_c00233{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00233{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00233{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00233{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m16_c00233{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mab_c00233{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00233{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md8_c00233{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.md_c00233{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m103_c00233{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00233{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m96_c00233{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.me3_c00233{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00233{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m71_c00233{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00233{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00233{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m23_c00233{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00233{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00233{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mae_c00233{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00233{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m60_c00233{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m41_c00233{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m52_c00233{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00233{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00233{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00233{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m51_c00233{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m99_c00233{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00233{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m61_c00233{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m91_c00233{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m32_c00233{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m19_c00233{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m56_c00233{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00233{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00233{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00233{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m40_c00233{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00233{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00233{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00233{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m25_c00233{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mea_c00233{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.maf_c00233{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00233{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00233{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m35_c00233{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mff_c00233{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00233{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00233{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00233{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00233{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me5_c00233{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00233{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m64_c00233{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m42_c00233{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m106_c00233{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00233{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00233{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);}
.m5e_c00233{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00233{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m69_c00233{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00233{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5_c00233{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00233{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00233{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00233{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m108_c00233{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m94_c00233{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00233{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c00233{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00233{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m104_c00233{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m48_c00233{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00233{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m105_c00233{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m55_c00233{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m93_c00233{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00233{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00233{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m95_c00233{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00233{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00233{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.med_c00233{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m90_c00233{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me6_c00233{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m67_c00233{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00233{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m26_c00233{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00233{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00233{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00233{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls0_c00233{letter-spacing:0.000000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{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__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00233{word-spacing:-10.142857px;}
.ws5_c00233{word-spacing:-1.676218px;}
.ws1_c00233{word-spacing:-1.657682px;}
.ws7_c00233{word-spacing:-1.500000px;}
.ws4_c00233{word-spacing:-1.429433px;}
.ws9_c00233{word-spacing:0.000000px;}
.ws3_c00233{word-spacing:1.250000px;}
.ws2_c00233{word-spacing:4.002695px;}
.ws0_c00233{word-spacing:9.570447px;}
.ws8_c00233{word-spacing:9.968411px;}
.fc0_c00233{color:transparent;}
.fs2_c00233{font-size:30.000000px;}
.fs5_c00233{font-size:54.000000px;}
.fs4_c00233{font-size:60.000000px;}
.fs3_c00233{font-size:66.000000px;}
.fs0_c00233{font-size:72.000000px;}
.fs1_c00233{font-size:78.000000px;}
.y0_c00233{bottom:0.000000px;}
.y6d_c00233{bottom:180.000000px;}
.y38_c00233{bottom:183.300000px;}
.y6c_c00233{bottom:194.400000px;}
.y37_c00233{bottom:199.050000px;}
.y6b_c00233{bottom:208.650000px;}
.y36_c00233{bottom:214.200000px;}
.y6a_c00233{bottom:223.350000px;}
.y35_c00233{bottom:228.900000px;}
.y69_c00233{bottom:237.450000px;}
.y34_c00233{bottom:242.700000px;}
.y68_c00233{bottom:251.550000px;}
.y33_c00233{bottom:257.400000px;}
.y67_c00233{bottom:266.700000px;}
.y32_c00233{bottom:270.750000px;}
.y66_c00233{bottom:280.500000px;}
.y31_c00233{bottom:285.150000px;}
.y65_c00233{bottom:295.200000px;}
.y30_c00233{bottom:299.250000px;}
.y64_c00233{bottom:309.300000px;}
.y2f_c00233{bottom:313.950000px;}
.y63_c00233{bottom:324.000000px;}
.y2e_c00233{bottom:328.650000px;}
.y62_c00233{bottom:338.100000px;}
.y2d_c00233{bottom:342.000000px;}
.y61_c00233{bottom:352.500000px;}
.y2c_c00233{bottom:357.150000px;}
.y60_c00233{bottom:366.900000px;}
.y2b_c00233{bottom:370.500000px;}
.y5f_c00233{bottom:381.300000px;}
.y2a_c00233{bottom:386.700000px;}
.y5e_c00233{bottom:396.450000px;}
.y29_c00233{bottom:405.000000px;}
.y5d_c00233{bottom:410.100000px;}
.y28_c00233{bottom:423.300000px;}
.y5c_c00233{bottom:424.800000px;}
.y27_c00233{bottom:445.950000px;}
.y26_c00233{bottom:463.650000px;}
.y5b_c00233{bottom:465.750000px;}
.y25_c00233{bottom:481.650000px;}
.y5a_c00233{bottom:483.450000px;}
.y24_c00233{bottom:499.350000px;}
.y59_c00233{bottom:501.450000px;}
.y23_c00233{bottom:517.350000px;}
.y58_c00233{bottom:519.300000px;}
.y22_c00233{bottom:535.350000px;}
.y57_c00233{bottom:537.300000px;}
.y21_c00233{bottom:553.350000px;}
.y56_c00233{bottom:555.000000px;}
.y20_c00233{bottom:570.600000px;}
.y55_c00233{bottom:572.700000px;}
.y1f_c00233{bottom:588.300000px;}
.y54_c00233{bottom:590.700000px;}
.y1e_c00233{bottom:606.300000px;}
.y53_c00233{bottom:608.100000px;}
.y1d_c00233{bottom:623.550000px;}
.y52_c00233{bottom:626.100000px;}
.y51_c00233{bottom:644.100000px;}
.y1c_c00233{bottom:646.200000px;}
.y50_c00233{bottom:662.100000px;}
.y1b_c00233{bottom:664.200000px;}
.y4f_c00233{bottom:680.400000px;}
.y1a_c00233{bottom:682.200000px;}
.y4e_c00233{bottom:697.650000px;}
.y19_c00233{bottom:700.200000px;}
.y4d_c00233{bottom:716.400000px;}
.y18_c00233{bottom:722.550000px;}
.y4c_c00233{bottom:734.100000px;}
.y17_c00233{bottom:740.250000px;}
.y4b_c00233{bottom:751.800000px;}
.y16_c00233{bottom:758.250000px;}
.y4a_c00233{bottom:769.800000px;}
.y15_c00233{bottom:776.250000px;}
.y49_c00233{bottom:787.800000px;}
.y14_c00233{bottom:804.300000px;}
.y48_c00233{bottom:805.800000px;}
.y13_c00233{bottom:811.800000px;}
.y47_c00233{bottom:823.500000px;}
.y12_c00233{bottom:829.500000px;}
.y46_c00233{bottom:841.800000px;}
.y11_c00233{bottom:847.500000px;}
.y45_c00233{bottom:859.500000px;}
.y10_c00233{bottom:865.500000px;}
.y2_c00233{bottom:873.000000px;}
.y44_c00233{bottom:877.500000px;}
.yf_c00233{bottom:887.700000px;}
.y43_c00233{bottom:895.500000px;}
.ye_c00233{bottom:905.700000px;}
.y42_c00233{bottom:915.600000px;}
.yd_c00233{bottom:923.400000px;}
.y41_c00233{bottom:931.500000px;}
.yc_c00233{bottom:941.100000px;}
.y40_c00233{bottom:949.500000px;}
.yb_c00233{bottom:959.100000px;}
.y3f_c00233{bottom:967.200000px;}
.ya_c00233{bottom:981.300000px;}
.y3e_c00233{bottom:984.900000px;}
.y9_c00233{bottom:999.000000px;}
.y3d_c00233{bottom:1003.200000px;}
.y8_c00233{bottom:1017.000000px;}
.y3c_c00233{bottom:1020.900000px;}
.y7_c00233{bottom:1034.700000px;}
.y3b_c00233{bottom:1039.200000px;}
.y6_c00233{bottom:1056.600000px;}
.y3a_c00233{bottom:1056.900000px;}
.y39_c00233{bottom:1074.600000px;}
.y5_c00233{bottom:1074.900000px;}
.y4_c00233{bottom:1092.600000px;}
.y3_c00233{bottom:1110.300000px;}
.y1_c00233{bottom:1137.300000px;}
.h4_c00233{height:30.000000px;}
.h7_c00233{height:54.000000px;}
.h6_c00233{height:60.000000px;}
.h5_c00233{height:66.000000px;}
.h2_c00233{height:72.000000px;}
.h3_c00233{height:78.000000px;}
.h0_c00233{height:1268.640015px;}
.h1_c00233{height:1269.000000px;}
.w1_c00233{width:963.000000px;}
.w0_c00233{width:963.359985px;}
.x0_c00233{left:0.000000px;}
.x3_c00233{left:157.650000px;}
.x1_c00233{left:193.650000px;}
.x37_c00233{left:195.150000px;}
.x78_c00233{left:197.250000px;}
.x6c_c00233{left:201.600000px;}
.x91_c00233{left:210.900000px;}
.x4_c00233{left:212.100000px;}
.xd_c00233{left:213.300000px;}
.x71_c00233{left:214.500000px;}
.x81_c00233{left:215.550000px;}
.x59_c00233{left:221.400000px;}
.x99_c00233{left:224.550000px;}
.x94_c00233{left:225.600000px;}
.xe_c00233{left:229.800000px;}
.x55_c00233{left:231.450000px;}
.x6d_c00233{left:235.350000px;}
.x79_c00233{left:240.150000px;}
.x89_c00233{left:241.800000px;}
.x3d_c00233{left:244.500000px;}
.x64_c00233{left:247.050000px;}
.x14_c00233{left:248.400000px;}
.x1d_c00233{left:250.800000px;}
.x5a_c00233{left:252.000000px;}
.x38_c00233{left:253.500000px;}
.x2d_c00233{left:255.300000px;}
.x4e_c00233{left:256.650000px;}
.x24_c00233{left:258.000000px;}
.x15_c00233{left:260.250000px;}
.x8d_c00233{left:261.600000px;}
.x5_c00233{left:266.100000px;}
.x27_c00233{left:268.050000px;}
.x32_c00233{left:269.850000px;}
.x72_c00233{left:271.050000px;}
.x50_c00233{left:272.850000px;}
.x2e_c00233{left:276.900000px;}
.xf_c00233{left:279.150000px;}
.x4b_c00233{left:283.800000px;}
.x6_c00233{left:285.900000px;}
.x39_c00233{left:287.700000px;}
.x9c_c00233{left:290.100000px;}
.x28_c00233{left:291.150000px;}
.x73_c00233{left:292.350000px;}
.x8b_c00233{left:293.550000px;}
.x7b_c00233{left:296.400000px;}
.x1e_c00233{left:300.150000px;}
.x16_c00233{left:305.250000px;}
.x51_c00233{left:308.100000px;}
.x56_c00233{left:309.900000px;}
.x1f_c00233{left:311.250000px;}
.x40_c00233{left:312.300000px;}
.x33_c00233{left:313.800000px;}
.x46_c00233{left:315.450000px;}
.x85_c00233{left:317.100000px;}
.x25_c00233{left:318.450000px;}
.x7c_c00233{left:320.100000px;}
.x20_c00233{left:322.800000px;}
.x17_c00233{left:325.350000px;}
.x5f_c00233{left:326.550000px;}
.x8f_c00233{left:327.750000px;}
.x5b_c00233{left:328.800000px;}
.x57_c00233{left:330.000000px;}
.x52_c00233{left:331.200000px;}
.x76_c00233{left:333.900000px;}
.x4c_c00233{left:336.000000px;}
.x9d_c00233{left:340.050000px;}
.x29_c00233{left:341.550000px;}
.x10_c00233{left:343.650000px;}
.x7d_c00233{left:345.600000px;}
.x18_c00233{left:346.950000px;}
.x74_c00233{left:348.150000px;}
.x41_c00233{left:350.850000px;}
.x8e_c00233{left:354.900000px;}
.x65_c00233{left:356.100000px;}
.x21_c00233{left:357.300000px;}
.x60_c00233{left:359.700000px;}
.x92_c00233{left:362.100000px;}
.x34_c00233{left:365.250000px;}
.x9a_c00233{left:367.050000px;}
.x6a_c00233{left:368.700000px;}
.x2f_c00233{left:370.950000px;}
.x77_c00233{left:372.000000px;}
.x11_c00233{left:375.000000px;}
.x7_c00233{left:376.650000px;}
.x22_c00233{left:377.850000px;}
.x93_c00233{left:380.850000px;}
.x9b_c00233{left:382.500000px;}
.x35_c00233{left:384.300000px;}
.x47_c00233{left:385.950000px;}
.x8_c00233{left:387.450000px;}
.x80_c00233{left:388.500000px;}
.x2a_c00233{left:390.150000px;}
.x97_c00233{left:393.750000px;}
.x86_c00233{left:395.850000px;}
.x4d_c00233{left:397.200000px;}
.x75_c00233{left:399.300000px;}
.x69_c00233{left:400.350000px;}
.x30_c00233{left:403.050000px;}
.x5c_c00233{left:404.400000px;}
.x12_c00233{left:405.600000px;}
.x66_c00233{left:406.800000px;}
.x3e_c00233{left:409.050000px;}
.x23_c00233{left:411.300000px;}
.x53_c00233{left:413.250000px;}
.x6e_c00233{left:415.050000px;}
.x19_c00233{left:417.450000px;}
.x48_c00233{left:419.850000px;}
.x42_c00233{left:423.600000px;}
.x9e_c00233{left:424.800000px;}
.x61_c00233{left:427.050000px;}
.x36_c00233{left:429.300000px;}
.x2b_c00233{left:431.250000px;}
.x95_c00233{left:432.300000px;}
.x9_c00233{left:433.500000px;}
.x7e_c00233{left:434.850000px;}
.x62_c00233{left:436.350000px;}
.x2_c00233{left:437.700000px;}
.x8a_c00233{left:439.350000px;}
.x67_c00233{left:441.750000px;}
.x13_c00233{left:446.700000px;}
.x7a_c00233{left:448.950000px;}
.x1a_c00233{left:450.600000px;}
.x43_c00233{left:453.900000px;}
.x3a_c00233{left:455.850000px;}
.x31_c00233{left:457.350000px;}
.x87_c00233{left:461.100000px;}
.x5d_c00233{left:462.300000px;}
.x8c_c00233{left:465.750000px;}
.xa_c00233{left:467.400000px;}
.x44_c00233{left:472.200000px;}
.x54_c00233{left:473.400000px;}
.x2c_c00233{left:474.450000px;}
.x26_c00233{left:475.650000px;}
.x3f_c00233{left:480.450000px;}
.x6f_c00233{left:481.950000px;}
.x1b_c00233{left:483.000000px;}
.x6b_c00233{left:484.650000px;}
.x98_c00233{left:486.000000px;}
.x49_c00233{left:488.250000px;}
.x3b_c00233{left:490.350000px;}
.x96_c00233{left:491.700000px;}
.x4f_c00233{left:493.200000px;}
.x5e_c00233{left:495.000000px;}
.x82_c00233{left:497.550000px;}
.xb_c00233{left:500.550000px;}
.x45_c00233{left:502.800000px;}
.x7f_c00233{left:504.000000px;}
.x70_c00233{left:505.050000px;}
.x58_c00233{left:508.350000px;}
.x88_c00233{left:509.400000px;}
.x63_c00233{left:511.200000px;}
.x4a_c00233{left:512.400000px;}
.x83_c00233{left:514.050000px;}
.x68_c00233{left:515.550000px;}
.x90_c00233{left:517.650000px;}
.x1c_c00233{left:519.000000px;}
.x84_c00233{left:523.050000px;}
.xc_c00233{left:525.000000px;}
.x3c_c00233{left:536.850000px;}
.x142_c00233{left:551.850000px;}
.x12a_c00233{left:552.900000px;}
.x134_c00233{left:553.950000px;}
.x9f_c00233{left:555.450000px;}
.xa0_c00233{left:566.250000px;}
.xa8_c00233{left:567.300000px;}
.xd8_c00233{left:568.350000px;}
.x108_c00233{left:569.400000px;}
.x124_c00233{left:570.600000px;}
.x12d_c00233{left:572.550000px;}
.x135_c00233{left:574.800000px;}
.x14a_c00233{left:576.150000px;}
.x138_c00233{left:578.850000px;}
.x14c_c00233{left:580.500000px;}
.x13a_c00233{left:583.650000px;}
.x140_c00233{left:585.450000px;}
.x131_c00233{left:586.800000px;}
.xfa_c00233{left:588.600000px;}
.x115_c00233{left:590.100000px;}
.x128_c00233{left:591.600000px;}
.xa1_c00233{left:594.000000px;}
.x14d_c00233{left:595.200000px;}
.xe5_c00233{left:596.400000px;}
.xd0_c00233{left:599.550000px;}
.x14e_c00233{left:601.950000px;}
.xc7_c00233{left:604.650000px;}
.xe6_c00233{left:605.700000px;}
.x11d_c00233{left:607.800000px;}
.x109_c00233{left:609.300000px;}
.x103_c00233{left:611.400000px;}
.xd9_c00233{left:612.600000px;}
.xa9_c00233{left:615.600000px;}
.xd1_c00233{left:616.800000px;}
.x12e_c00233{left:619.050000px;}
.xb9_c00233{left:620.400000px;}
.xc1_c00233{left:621.600000px;}
.x110_c00233{left:624.450000px;}
.xf6_c00233{left:626.850000px;}
.xb2_c00233{left:628.500000px;}
.x118_c00233{left:629.700000px;}
.xc8_c00233{left:631.650000px;}
.x146_c00233{left:633.600000px;}
.xef_c00233{left:634.800000px;}
.xec_c00233{left:637.800000px;}
.xfd_c00233{left:639.750000px;}
.xba_c00233{left:641.700000px;}
.x14f_c00233{left:643.650000px;}
.xa2_c00233{left:644.700000px;}
.x104_c00233{left:646.350000px;}
.x13b_c00233{left:647.850000px;}
.xc2_c00233{left:648.900000px;}
.x148_c00233{left:650.700000px;}
.xaa_c00233{left:651.900000px;}
.x100_c00233{left:653.100000px;}
.xb3_c00233{left:654.750000px;}
.x10c_c00233{left:656.850000px;}
.x11e_c00233{left:658.200000px;}
.x150_c00233{left:660.150000px;}
.x116_c00233{left:663.600000px;}
.xd2_c00233{left:665.400000px;}
.xb4_c00233{left:667.050000px;}
.xbb_c00233{left:669.750000px;}
.xab_c00233{left:671.700000px;}
.x144_c00233{left:673.050000px;}
.xa3_c00233{left:675.300000px;}
.xcc_c00233{left:676.950000px;}
.xde_c00233{left:678.150000px;}
.xe7_c00233{left:679.950000px;}
.x13f_c00233{left:681.300000px;}
.xc9_c00233{left:682.350000px;}
.x12b_c00233{left:683.700000px;}
.x125_c00233{left:685.800000px;}
.xac_c00233{left:687.600000px;}
.xfe_c00233{left:690.150000px;}
.xda_c00233{left:692.850000px;}
.xd3_c00233{left:694.500000px;}
.xc3_c00233{left:697.200000px;}
.x141_c00233{left:698.400000px;}
.xcd_c00233{left:700.350000px;}
.x105_c00233{left:702.450000px;}
.xf1_c00233{left:703.500000px;}
.xdf_c00233{left:708.000000px;}
.xfb_c00233{left:711.450000px;}
.x121_c00233{left:713.100000px;}
.x10a_c00233{left:715.500000px;}
.xad_c00233{left:716.700000px;}
.x147_c00233{left:717.750000px;}
.xb5_c00233{left:718.950000px;}
.xf0_c00233{left:720.150000px;}
.xce_c00233{left:721.950000px;}
.x101_c00233{left:723.300000px;}
.x13c_c00233{left:724.800000px;}
.x111_c00233{left:726.300000px;}
.x11f_c00233{left:728.400000px;}
.xb6_c00233{left:729.450000px;}
.xd4_c00233{left:732.300000px;}
.xae_c00233{left:733.950000px;}
.x10d_c00233{left:735.450000px;}
.xa4_c00233{left:736.500000px;}
.xe8_c00233{left:737.550000px;}
.x12c_c00233{left:740.250000px;}
.xe0_c00233{left:741.900000px;}
.xd5_c00233{left:744.150000px;}
.xbc_c00233{left:746.400000px;}
.x119_c00233{left:748.200000px;}
.x106_c00233{left:749.700000px;}
.x13d_c00233{left:751.500000px;}
.xe1_c00233{left:753.000000px;}
.x114_c00233{left:754.050000px;}
.xc4_c00233{left:756.300000px;}
.xed_c00233{left:758.700000px;}
.x117_c00233{left:761.100000px;}
.x145_c00233{left:764.550000px;}
.xdb_c00233{left:765.900000px;}
.xd6_c00233{left:767.850000px;}
.xf2_c00233{left:769.050000px;}
.xcf_c00233{left:770.550000px;}
.x139_c00233{left:771.900000px;}
.xe9_c00233{left:774.300000px;}
.x11a_c00233{left:776.550000px;}
.x112_c00233{left:779.550000px;}
.x14b_c00233{left:781.500000px;}
.x122_c00233{left:782.850000px;}
.xbd_c00233{left:784.200000px;}
.xa5_c00233{left:785.850000px;}
.xf4_c00233{left:787.200000px;}
.xb7_c00233{left:788.550000px;}
.x136_c00233{left:791.100000px;}
.xaf_c00233{left:792.600000px;}
.xea_c00233{left:793.800000px;}
.xff_c00233{left:795.600000px;}
.x143_c00233{left:796.950000px;}
.xc5_c00233{left:798.000000px;}
.xf7_c00233{left:799.650000px;}
.xdc_c00233{left:800.850000px;}
.xca_c00233{left:802.950000px;}
.xbe_c00233{left:805.050000px;}
.x102_c00233{left:806.100000px;}
.x113_c00233{left:807.300000px;}
.xf8_c00233{left:808.950000px;}
.xe2_c00233{left:810.600000px;}
.x137_c00233{left:812.700000px;}
.xd7_c00233{left:814.950000px;}
.xf3_c00233{left:817.950000px;}
.x10e_c00233{left:819.300000px;}
.x123_c00233{left:821.400000px;}
.x107_c00233{left:823.800000px;}
.xee_c00233{left:825.300000px;}
.xfc_c00233{left:826.650000px;}
.x11b_c00233{left:828.000000px;}
.xcb_c00233{left:829.650000px;}
.x13e_c00233{left:832.500000px;}
.x11c_c00233{left:833.850000px;}
.x12f_c00233{left:835.050000px;}
.xb0_c00233{left:836.850000px;}
.xa6_c00233{left:838.800000px;}
.xeb_c00233{left:840.000000px;}
.xb8_c00233{left:841.500000px;}
.xbf_c00233{left:844.350000px;}
.x132_c00233{left:845.850000px;}
.xdd_c00233{left:849.150000px;}
.x10b_c00233{left:850.200000px;}
.xc6_c00233{left:852.750000px;}
.xe3_c00233{left:854.850000px;}
.xb1_c00233{left:857.400000px;}
.xf9_c00233{left:858.600000px;}
.xa7_c00233{left:859.650000px;}
.xc0_c00233{left:861.300000px;}
.x10f_c00233{left:862.800000px;}
.x151_c00233{left:865.050000px;}
.x126_c00233{left:867.750000px;}
.xf5_c00233{left:869.250000px;}
.x129_c00233{left:872.400000px;}
.x120_c00233{left:875.250000px;}
.xe4_c00233{left:877.200000px;}
.x127_c00233{left:879.600000px;}
.x130_c00233{left:880.800000px;}
.x133_c00233{left:881.850000px;}
.x149_c00233{left:899.250000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws6_c00233{word-spacing:-9.015873pt;}
.ws5_c00233{word-spacing:-1.489971pt;}
.ws1_c00233{word-spacing:-1.473495pt;}
.ws7_c00233{word-spacing:-1.333333pt;}
.ws4_c00233{word-spacing:-1.270607pt;}
.ws9_c00233{word-spacing:0.000000pt;}
.ws3_c00233{word-spacing:1.111111pt;}
.ws2_c00233{word-spacing:3.557951pt;}
.ws0_c00233{word-spacing:8.507064pt;}
.ws8_c00233{word-spacing:8.860809pt;}
.fs2_c00233{font-size:26.666667pt;}
.fs5_c00233{font-size:48.000000pt;}
.fs4_c00233{font-size:53.333333pt;}
.fs3_c00233{font-size:58.666667pt;}
.fs0_c00233{font-size:64.000000pt;}
.fs1_c00233{font-size:69.333333pt;}
.y0_c00233{bottom:0.000000pt;}
.y6d_c00233{bottom:160.000000pt;}
.y38_c00233{bottom:162.933333pt;}
.y6c_c00233{bottom:172.800000pt;}
.y37_c00233{bottom:176.933333pt;}
.y6b_c00233{bottom:185.466667pt;}
.y36_c00233{bottom:190.400000pt;}
.y6a_c00233{bottom:198.533333pt;}
.y35_c00233{bottom:203.466667pt;}
.y69_c00233{bottom:211.066667pt;}
.y34_c00233{bottom:215.733333pt;}
.y68_c00233{bottom:223.600000pt;}
.y33_c00233{bottom:228.800000pt;}
.y67_c00233{bottom:237.066667pt;}
.y32_c00233{bottom:240.666667pt;}
.y66_c00233{bottom:249.333333pt;}
.y31_c00233{bottom:253.466667pt;}
.y65_c00233{bottom:262.400000pt;}
.y30_c00233{bottom:266.000000pt;}
.y64_c00233{bottom:274.933333pt;}
.y2f_c00233{bottom:279.066667pt;}
.y63_c00233{bottom:288.000000pt;}
.y2e_c00233{bottom:292.133333pt;}
.y62_c00233{bottom:300.533333pt;}
.y2d_c00233{bottom:304.000000pt;}
.y61_c00233{bottom:313.333333pt;}
.y2c_c00233{bottom:317.466667pt;}
.y60_c00233{bottom:326.133333pt;}
.y2b_c00233{bottom:329.333333pt;}
.y5f_c00233{bottom:338.933333pt;}
.y2a_c00233{bottom:343.733333pt;}
.y5e_c00233{bottom:352.400000pt;}
.y29_c00233{bottom:360.000000pt;}
.y5d_c00233{bottom:364.533333pt;}
.y28_c00233{bottom:376.266667pt;}
.y5c_c00233{bottom:377.600000pt;}
.y27_c00233{bottom:396.400000pt;}
.y26_c00233{bottom:412.133333pt;}
.y5b_c00233{bottom:414.000000pt;}
.y25_c00233{bottom:428.133333pt;}
.y5a_c00233{bottom:429.733333pt;}
.y24_c00233{bottom:443.866667pt;}
.y59_c00233{bottom:445.733333pt;}
.y23_c00233{bottom:459.866667pt;}
.y58_c00233{bottom:461.600000pt;}
.y22_c00233{bottom:475.866667pt;}
.y57_c00233{bottom:477.600000pt;}
.y21_c00233{bottom:491.866667pt;}
.y56_c00233{bottom:493.333333pt;}
.y20_c00233{bottom:507.200000pt;}
.y55_c00233{bottom:509.066667pt;}
.y1f_c00233{bottom:522.933333pt;}
.y54_c00233{bottom:525.066667pt;}
.y1e_c00233{bottom:538.933333pt;}
.y53_c00233{bottom:540.533333pt;}
.y1d_c00233{bottom:554.266667pt;}
.y52_c00233{bottom:556.533333pt;}
.y51_c00233{bottom:572.533333pt;}
.y1c_c00233{bottom:574.400000pt;}
.y50_c00233{bottom:588.533333pt;}
.y1b_c00233{bottom:590.400000pt;}
.y4f_c00233{bottom:604.800000pt;}
.y1a_c00233{bottom:606.400000pt;}
.y4e_c00233{bottom:620.133333pt;}
.y19_c00233{bottom:622.400000pt;}
.y4d_c00233{bottom:636.800000pt;}
.y18_c00233{bottom:642.266667pt;}
.y4c_c00233{bottom:652.533333pt;}
.y17_c00233{bottom:658.000000pt;}
.y4b_c00233{bottom:668.266667pt;}
.y16_c00233{bottom:674.000000pt;}
.y4a_c00233{bottom:684.266667pt;}
.y15_c00233{bottom:690.000000pt;}
.y49_c00233{bottom:700.266667pt;}
.y14_c00233{bottom:714.933333pt;}
.y48_c00233{bottom:716.266667pt;}
.y13_c00233{bottom:721.600000pt;}
.y47_c00233{bottom:732.000000pt;}
.y12_c00233{bottom:737.333333pt;}
.y46_c00233{bottom:748.266667pt;}
.y11_c00233{bottom:753.333333pt;}
.y45_c00233{bottom:764.000000pt;}
.y10_c00233{bottom:769.333333pt;}
.y2_c00233{bottom:776.000000pt;}
.y44_c00233{bottom:780.000000pt;}
.yf_c00233{bottom:789.066667pt;}
.y43_c00233{bottom:796.000000pt;}
.ye_c00233{bottom:805.066667pt;}
.y42_c00233{bottom:813.866667pt;}
.yd_c00233{bottom:820.800000pt;}
.y41_c00233{bottom:828.000000pt;}
.yc_c00233{bottom:836.533333pt;}
.y40_c00233{bottom:844.000000pt;}
.yb_c00233{bottom:852.533333pt;}
.y3f_c00233{bottom:859.733333pt;}
.ya_c00233{bottom:872.266667pt;}
.y3e_c00233{bottom:875.466667pt;}
.y9_c00233{bottom:888.000000pt;}
.y3d_c00233{bottom:891.733333pt;}
.y8_c00233{bottom:904.000000pt;}
.y3c_c00233{bottom:907.466667pt;}
.y7_c00233{bottom:919.733333pt;}
.y3b_c00233{bottom:923.733333pt;}
.y6_c00233{bottom:939.200000pt;}
.y3a_c00233{bottom:939.466667pt;}
.y39_c00233{bottom:955.200000pt;}
.y5_c00233{bottom:955.466667pt;}
.y4_c00233{bottom:971.200000pt;}
.y3_c00233{bottom:986.933333pt;}
.y1_c00233{bottom:1010.933333pt;}
.h4_c00233{height:26.666667pt;}
.h7_c00233{height:48.000000pt;}
.h6_c00233{height:53.333333pt;}
.h5_c00233{height:58.666667pt;}
.h2_c00233{height:64.000000pt;}
.h3_c00233{height:69.333333pt;}
.h0_c00233{height:1127.680013pt;}
.h1_c00233{height:1128.000000pt;}
.w1_c00233{width:856.000000pt;}
.w0_c00233{width:856.319987pt;}
.x0_c00233{left:0.000000pt;}
.x3_c00233{left:140.133333pt;}
.x1_c00233{left:172.133333pt;}
.x37_c00233{left:173.466667pt;}
.x78_c00233{left:175.333333pt;}
.x6c_c00233{left:179.200000pt;}
.x91_c00233{left:187.466667pt;}
.x4_c00233{left:188.533333pt;}
.xd_c00233{left:189.600000pt;}
.x71_c00233{left:190.666667pt;}
.x81_c00233{left:191.600000pt;}
.x59_c00233{left:196.800000pt;}
.x99_c00233{left:199.600000pt;}
.x94_c00233{left:200.533333pt;}
.xe_c00233{left:204.266667pt;}
.x55_c00233{left:205.733333pt;}
.x6d_c00233{left:209.200000pt;}
.x79_c00233{left:213.466667pt;}
.x89_c00233{left:214.933333pt;}
.x3d_c00233{left:217.333333pt;}
.x64_c00233{left:219.600000pt;}
.x14_c00233{left:220.800000pt;}
.x1d_c00233{left:222.933333pt;}
.x5a_c00233{left:224.000000pt;}
.x38_c00233{left:225.333333pt;}
.x2d_c00233{left:226.933333pt;}
.x4e_c00233{left:228.133333pt;}
.x24_c00233{left:229.333333pt;}
.x15_c00233{left:231.333333pt;}
.x8d_c00233{left:232.533333pt;}
.x5_c00233{left:236.533333pt;}
.x27_c00233{left:238.266667pt;}
.x32_c00233{left:239.866667pt;}
.x72_c00233{left:240.933333pt;}
.x50_c00233{left:242.533333pt;}
.x2e_c00233{left:246.133333pt;}
.xf_c00233{left:248.133333pt;}
.x4b_c00233{left:252.266667pt;}
.x6_c00233{left:254.133333pt;}
.x39_c00233{left:255.733333pt;}
.x9c_c00233{left:257.866667pt;}
.x28_c00233{left:258.800000pt;}
.x73_c00233{left:259.866667pt;}
.x8b_c00233{left:260.933333pt;}
.x7b_c00233{left:263.466667pt;}
.x1e_c00233{left:266.800000pt;}
.x16_c00233{left:271.333333pt;}
.x51_c00233{left:273.866667pt;}
.x56_c00233{left:275.466667pt;}
.x1f_c00233{left:276.666667pt;}
.x40_c00233{left:277.600000pt;}
.x33_c00233{left:278.933333pt;}
.x46_c00233{left:280.400000pt;}
.x85_c00233{left:281.866667pt;}
.x25_c00233{left:283.066667pt;}
.x7c_c00233{left:284.533333pt;}
.x20_c00233{left:286.933333pt;}
.x17_c00233{left:289.200000pt;}
.x5f_c00233{left:290.266667pt;}
.x8f_c00233{left:291.333333pt;}
.x5b_c00233{left:292.266667pt;}
.x57_c00233{left:293.333333pt;}
.x52_c00233{left:294.400000pt;}
.x76_c00233{left:296.800000pt;}
.x4c_c00233{left:298.666667pt;}
.x9d_c00233{left:302.266667pt;}
.x29_c00233{left:303.600000pt;}
.x10_c00233{left:305.466667pt;}
.x7d_c00233{left:307.200000pt;}
.x18_c00233{left:308.400000pt;}
.x74_c00233{left:309.466667pt;}
.x41_c00233{left:311.866667pt;}
.x8e_c00233{left:315.466667pt;}
.x65_c00233{left:316.533333pt;}
.x21_c00233{left:317.600000pt;}
.x60_c00233{left:319.733333pt;}
.x92_c00233{left:321.866667pt;}
.x34_c00233{left:324.666667pt;}
.x9a_c00233{left:326.266667pt;}
.x6a_c00233{left:327.733333pt;}
.x2f_c00233{left:329.733333pt;}
.x77_c00233{left:330.666667pt;}
.x11_c00233{left:333.333333pt;}
.x7_c00233{left:334.800000pt;}
.x22_c00233{left:335.866667pt;}
.x93_c00233{left:338.533333pt;}
.x9b_c00233{left:340.000000pt;}
.x35_c00233{left:341.600000pt;}
.x47_c00233{left:343.066667pt;}
.x8_c00233{left:344.400000pt;}
.x80_c00233{left:345.333333pt;}
.x2a_c00233{left:346.800000pt;}
.x97_c00233{left:350.000000pt;}
.x86_c00233{left:351.866667pt;}
.x4d_c00233{left:353.066667pt;}
.x75_c00233{left:354.933333pt;}
.x69_c00233{left:355.866667pt;}
.x30_c00233{left:358.266667pt;}
.x5c_c00233{left:359.466667pt;}
.x12_c00233{left:360.533333pt;}
.x66_c00233{left:361.600000pt;}
.x3e_c00233{left:363.600000pt;}
.x23_c00233{left:365.600000pt;}
.x53_c00233{left:367.333333pt;}
.x6e_c00233{left:368.933333pt;}
.x19_c00233{left:371.066667pt;}
.x48_c00233{left:373.200000pt;}
.x42_c00233{left:376.533333pt;}
.x9e_c00233{left:377.600000pt;}
.x61_c00233{left:379.600000pt;}
.x36_c00233{left:381.600000pt;}
.x2b_c00233{left:383.333333pt;}
.x95_c00233{left:384.266667pt;}
.x9_c00233{left:385.333333pt;}
.x7e_c00233{left:386.533333pt;}
.x62_c00233{left:387.866667pt;}
.x2_c00233{left:389.066667pt;}
.x8a_c00233{left:390.533333pt;}
.x67_c00233{left:392.666667pt;}
.x13_c00233{left:397.066667pt;}
.x7a_c00233{left:399.066667pt;}
.x1a_c00233{left:400.533333pt;}
.x43_c00233{left:403.466667pt;}
.x3a_c00233{left:405.200000pt;}
.x31_c00233{left:406.533333pt;}
.x87_c00233{left:409.866667pt;}
.x5d_c00233{left:410.933333pt;}
.x8c_c00233{left:414.000000pt;}
.xa_c00233{left:415.466667pt;}
.x44_c00233{left:419.733333pt;}
.x54_c00233{left:420.800000pt;}
.x2c_c00233{left:421.733333pt;}
.x26_c00233{left:422.800000pt;}
.x3f_c00233{left:427.066667pt;}
.x6f_c00233{left:428.400000pt;}
.x1b_c00233{left:429.333333pt;}
.x6b_c00233{left:430.800000pt;}
.x98_c00233{left:432.000000pt;}
.x49_c00233{left:434.000000pt;}
.x3b_c00233{left:435.866667pt;}
.x96_c00233{left:437.066667pt;}
.x4f_c00233{left:438.400000pt;}
.x5e_c00233{left:440.000000pt;}
.x82_c00233{left:442.266667pt;}
.xb_c00233{left:444.933333pt;}
.x45_c00233{left:446.933333pt;}
.x7f_c00233{left:448.000000pt;}
.x70_c00233{left:448.933333pt;}
.x58_c00233{left:451.866667pt;}
.x88_c00233{left:452.800000pt;}
.x63_c00233{left:454.400000pt;}
.x4a_c00233{left:455.466667pt;}
.x83_c00233{left:456.933333pt;}
.x68_c00233{left:458.266667pt;}
.x90_c00233{left:460.133333pt;}
.x1c_c00233{left:461.333333pt;}
.x84_c00233{left:464.933333pt;}
.xc_c00233{left:466.666667pt;}
.x3c_c00233{left:477.200000pt;}
.x142_c00233{left:490.533333pt;}
.x12a_c00233{left:491.466667pt;}
.x134_c00233{left:492.400000pt;}
.x9f_c00233{left:493.733333pt;}
.xa0_c00233{left:503.333333pt;}
.xa8_c00233{left:504.266667pt;}
.xd8_c00233{left:505.200000pt;}
.x108_c00233{left:506.133333pt;}
.x124_c00233{left:507.200000pt;}
.x12d_c00233{left:508.933333pt;}
.x135_c00233{left:510.933333pt;}
.x14a_c00233{left:512.133333pt;}
.x138_c00233{left:514.533333pt;}
.x14c_c00233{left:516.000000pt;}
.x13a_c00233{left:518.800000pt;}
.x140_c00233{left:520.400000pt;}
.x131_c00233{left:521.600000pt;}
.xfa_c00233{left:523.200000pt;}
.x115_c00233{left:524.533333pt;}
.x128_c00233{left:525.866667pt;}
.xa1_c00233{left:528.000000pt;}
.x14d_c00233{left:529.066667pt;}
.xe5_c00233{left:530.133333pt;}
.xd0_c00233{left:532.933333pt;}
.x14e_c00233{left:535.066667pt;}
.xc7_c00233{left:537.466667pt;}
.xe6_c00233{left:538.400000pt;}
.x11d_c00233{left:540.266667pt;}
.x109_c00233{left:541.600000pt;}
.x103_c00233{left:543.466667pt;}
.xd9_c00233{left:544.533333pt;}
.xa9_c00233{left:547.200000pt;}
.xd1_c00233{left:548.266667pt;}
.x12e_c00233{left:550.266667pt;}
.xb9_c00233{left:551.466667pt;}
.xc1_c00233{left:552.533333pt;}
.x110_c00233{left:555.066667pt;}
.xf6_c00233{left:557.200000pt;}
.xb2_c00233{left:558.666667pt;}
.x118_c00233{left:559.733333pt;}
.xc8_c00233{left:561.466667pt;}
.x146_c00233{left:563.200000pt;}
.xef_c00233{left:564.266667pt;}
.xec_c00233{left:566.933333pt;}
.xfd_c00233{left:568.666667pt;}
.xba_c00233{left:570.400000pt;}
.x14f_c00233{left:572.133333pt;}
.xa2_c00233{left:573.066667pt;}
.x104_c00233{left:574.533333pt;}
.x13b_c00233{left:575.866667pt;}
.xc2_c00233{left:576.800000pt;}
.x148_c00233{left:578.400000pt;}
.xaa_c00233{left:579.466667pt;}
.x100_c00233{left:580.533333pt;}
.xb3_c00233{left:582.000000pt;}
.x10c_c00233{left:583.866667pt;}
.x11e_c00233{left:585.066667pt;}
.x150_c00233{left:586.800000pt;}
.x116_c00233{left:589.866667pt;}
.xd2_c00233{left:591.466667pt;}
.xb4_c00233{left:592.933333pt;}
.xbb_c00233{left:595.333333pt;}
.xab_c00233{left:597.066667pt;}
.x144_c00233{left:598.266667pt;}
.xa3_c00233{left:600.266667pt;}
.xcc_c00233{left:601.733333pt;}
.xde_c00233{left:602.800000pt;}
.xe7_c00233{left:604.400000pt;}
.x13f_c00233{left:605.600000pt;}
.xc9_c00233{left:606.533333pt;}
.x12b_c00233{left:607.733333pt;}
.x125_c00233{left:609.600000pt;}
.xac_c00233{left:611.200000pt;}
.xfe_c00233{left:613.466667pt;}
.xda_c00233{left:615.866667pt;}
.xd3_c00233{left:617.333333pt;}
.xc3_c00233{left:619.733333pt;}
.x141_c00233{left:620.800000pt;}
.xcd_c00233{left:622.533333pt;}
.x105_c00233{left:624.400000pt;}
.xf1_c00233{left:625.333333pt;}
.xdf_c00233{left:629.333333pt;}
.xfb_c00233{left:632.400000pt;}
.x121_c00233{left:633.866667pt;}
.x10a_c00233{left:636.000000pt;}
.xad_c00233{left:637.066667pt;}
.x147_c00233{left:638.000000pt;}
.xb5_c00233{left:639.066667pt;}
.xf0_c00233{left:640.133333pt;}
.xce_c00233{left:641.733333pt;}
.x101_c00233{left:642.933333pt;}
.x13c_c00233{left:644.266667pt;}
.x111_c00233{left:645.600000pt;}
.x11f_c00233{left:647.466667pt;}
.xb6_c00233{left:648.400000pt;}
.xd4_c00233{left:650.933333pt;}
.xae_c00233{left:652.400000pt;}
.x10d_c00233{left:653.733333pt;}
.xa4_c00233{left:654.666667pt;}
.xe8_c00233{left:655.600000pt;}
.x12c_c00233{left:658.000000pt;}
.xe0_c00233{left:659.466667pt;}
.xd5_c00233{left:661.466667pt;}
.xbc_c00233{left:663.466667pt;}
.x119_c00233{left:665.066667pt;}
.x106_c00233{left:666.400000pt;}
.x13d_c00233{left:668.000000pt;}
.xe1_c00233{left:669.333333pt;}
.x114_c00233{left:670.266667pt;}
.xc4_c00233{left:672.266667pt;}
.xed_c00233{left:674.400000pt;}
.x117_c00233{left:676.533333pt;}
.x145_c00233{left:679.600000pt;}
.xdb_c00233{left:680.800000pt;}
.xd6_c00233{left:682.533333pt;}
.xf2_c00233{left:683.600000pt;}
.xcf_c00233{left:684.933333pt;}
.x139_c00233{left:686.133333pt;}
.xe9_c00233{left:688.266667pt;}
.x11a_c00233{left:690.266667pt;}
.x112_c00233{left:692.933333pt;}
.x14b_c00233{left:694.666667pt;}
.x122_c00233{left:695.866667pt;}
.xbd_c00233{left:697.066667pt;}
.xa5_c00233{left:698.533333pt;}
.xf4_c00233{left:699.733333pt;}
.xb7_c00233{left:700.933333pt;}
.x136_c00233{left:703.200000pt;}
.xaf_c00233{left:704.533333pt;}
.xea_c00233{left:705.600000pt;}
.xff_c00233{left:707.200000pt;}
.x143_c00233{left:708.400000pt;}
.xc5_c00233{left:709.333333pt;}
.xf7_c00233{left:710.800000pt;}
.xdc_c00233{left:711.866667pt;}
.xca_c00233{left:713.733333pt;}
.xbe_c00233{left:715.600000pt;}
.x102_c00233{left:716.533333pt;}
.x113_c00233{left:717.600000pt;}
.xf8_c00233{left:719.066667pt;}
.xe2_c00233{left:720.533333pt;}
.x137_c00233{left:722.400000pt;}
.xd7_c00233{left:724.400000pt;}
.xf3_c00233{left:727.066667pt;}
.x10e_c00233{left:728.266667pt;}
.x123_c00233{left:730.133333pt;}
.x107_c00233{left:732.266667pt;}
.xee_c00233{left:733.600000pt;}
.xfc_c00233{left:734.800000pt;}
.x11b_c00233{left:736.000000pt;}
.xcb_c00233{left:737.466667pt;}
.x13e_c00233{left:740.000000pt;}
.x11c_c00233{left:741.200000pt;}
.x12f_c00233{left:742.266667pt;}
.xb0_c00233{left:743.866667pt;}
.xa6_c00233{left:745.600000pt;}
.xeb_c00233{left:746.666667pt;}
.xb8_c00233{left:748.000000pt;}
.xbf_c00233{left:750.533333pt;}
.x132_c00233{left:751.866667pt;}
.xdd_c00233{left:754.800000pt;}
.x10b_c00233{left:755.733333pt;}
.xc6_c00233{left:758.000000pt;}
.xe3_c00233{left:759.866667pt;}
.xb1_c00233{left:762.133333pt;}
.xf9_c00233{left:763.200000pt;}
.xa7_c00233{left:764.133333pt;}
.xc0_c00233{left:765.600000pt;}
.x10f_c00233{left:766.933333pt;}
.x151_c00233{left:768.933333pt;}
.x126_c00233{left:771.333333pt;}
.xf5_c00233{left:772.666667pt;}
.x129_c00233{left:775.466667pt;}
.x120_c00233{left:778.000000pt;}
.xe4_c00233{left:779.733333pt;}
.x127_c00233{left:781.866667pt;}
.x130_c00233{left:782.933333pt;}
.x133_c00233{left:783.866667pt;}
.x149_c00233{left:799.333333pt;}
}





/* 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_c00234 {
    display:none;
  }
  .loading-indicator_c00234.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00234 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_c00234 { 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_c00234" -> "#page-container .classname_c00234")
 */
.pf_c00234 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00234 { /* 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_c00234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00234 { /* 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_c00234 { /* 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_c00234 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00234 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00234 {overflow:visible;}
  }
}
.c_c00234 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00234 { /* 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_c00234:after { /* webkit #35443 */
  content: '';
}
.t_c00234:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00234 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 */
}
.__c00234 { /* 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_c00234 { /* info for Javascript */
  display:none;
}
.l_c00234 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00234 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00234 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00234: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_c00234 {
    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_c00234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00234.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_c00234 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00234;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.000000;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;}
.m110_c00234{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m73_c00234{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m16_c00234{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m4_c00234{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m51_c00234{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.meb_c00234{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m91_c00234{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m27_c00234{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00234{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00234{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00234{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md0_c00234{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m15_c00234{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m125_c00234{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00234{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.md6_c00234{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00234{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m126_c00234{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m83_c00234{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00234{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00234{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.me_c00234{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00234{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.mee_c00234{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m54_c00234{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00234{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m52_c00234{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m101_c00234{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m65_c00234{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m55_c00234{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00234{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00234{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.me0_c00234{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mce_c00234{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mef_c00234{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m44_c00234{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md_c00234{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00234{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00234{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00234{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m25_c00234{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m66_c00234{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m56_c00234{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m109_c00234{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m79_c00234{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mba_c00234{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00234{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00234{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m88_c00234{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m39_c00234{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m12_c00234{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00234{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.maf_c00234{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00234{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00234{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m11_c00234{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m77_c00234{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00234{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00234{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m21_c00234{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m100_c00234{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me8_c00234{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00234{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00234{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md3_c00234{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00234{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m72_c00234{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m82_c00234{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mae_c00234{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00234{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md7_c00234{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m113_c00234{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00234{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00234{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00234{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00234{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mca_c00234{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m121_c00234{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.med_c00234{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m18_c00234{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m13_c00234{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mab_c00234{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m74_c00234{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me5_c00234{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00234{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00234{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00234{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me4_c00234{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00234{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m120_c00234{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00234{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00234{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00234{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00234{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md9_c00234{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00234{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00234{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00234{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m32_c00234{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00234{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00234{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00234{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m36_c00234{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00234{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m53_c00234{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mda_c00234{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10_c00234{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma_c00234{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m38_c00234{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00234{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m97_c00234{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00234{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mf_c00234{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m30_c00234{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m71_c00234{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00234{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00234{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00234{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mc_c00234{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00234{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mac_c00234{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00234{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00234{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00234{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00234{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m106_c00234{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00234{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m87_c00234{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m48_c00234{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00234{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m28_c00234{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00234{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m84_c00234{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00234{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m119_c00234{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00234{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m50_c00234{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m47_c00234{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00234{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00234{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.me6_c00234{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb_c00234{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00234{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m58_c00234{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me2_c00234{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m107_c00234{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mea_c00234{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m102_c00234{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m103_c00234{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m40_c00234{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00234{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9_c00234{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00234{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mff_c00234{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m59_c00234{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m37_c00234{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m111_c00234{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m60_c00234{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00234{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00234{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00234{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mec_c00234{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md8_c00234{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m112_c00234{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00234{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m95_c00234{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m49_c00234{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00234{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00234{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00234{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m78_c00234{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m26_c00234{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00234{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m35_c00234{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m68_c00234{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00234{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m34_c00234{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00234{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00234{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00234{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m76_c00234{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m62_c00234{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m46_c00234{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m104_c00234{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6_c00234{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m19_c00234{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00234{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m75_c00234{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m57_c00234{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00234{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00234{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m41_c00234{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00234{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00234{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m127_c00234{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mad_c00234{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m64_c00234{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00234{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.maa_c00234{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00234{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00234{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m23_c00234{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m92_c00234{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m70_c00234{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00234{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m20_c00234{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00234{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00234{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m86_c00234{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8_c00234{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00234{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00234{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m22_c00234{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m24_c00234{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m63_c00234{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m96_c00234{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00234{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m122_c00234{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00234{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m85_c00234{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m81_c00234{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m99_c00234{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me7_c00234{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7_c00234{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me3_c00234{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00234{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m33_c00234{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00234{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00234{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m90_c00234{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00234{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00234{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m124_c00234{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md2_c00234{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00234{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md4_c00234{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00234{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me9_c00234{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00234{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);}
.m45_c00234{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00234{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00234{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m117_c00234{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md5_c00234{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00234{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00234{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m29_c00234{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00234{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00234{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m123_c00234{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00234{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m42_c00234{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m118_c00234{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00234{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00234{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00234{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m61_c00234{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m89_c00234{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00234{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00234{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00234{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m98_c00234{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m116_c00234{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00234{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00234{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m93_c00234{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m43_c00234{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m114_c00234{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00234{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00234{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00234{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00234{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00234{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m80_c00234{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m17_c00234{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.me1_c00234{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m31_c00234{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m69_c00234{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.md1_c00234{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00234{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m108_c00234{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m94_c00234{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m105_c00234{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m14_c00234{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00234{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00234{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.m3_c00234{transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);}
.m128_c00234{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m5_c00234{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00234{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m2_c00234{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m115_c00234{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m67_c00234{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.mde_c00234{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00234{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls0_c00234{letter-spacing:0.000000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{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__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00234{word-spacing:-6.175303px;}
.ws2_c00234{word-spacing:-3.658537px;}
.ws6_c00234{word-spacing:0.000000px;}
.ws3_c00234{word-spacing:2.115385px;}
.ws4_c00234{word-spacing:3.938547px;}
.ws1_c00234{word-spacing:16.012270px;}
.ws5_c00234{word-spacing:91.562500px;}
.fc0_c00234{color:transparent;}
.fs5_c00234{font-size:30.000000px;}
.fs2_c00234{font-size:36.000000px;}
.fs9_c00234{font-size:48.000000px;}
.fs7_c00234{font-size:54.000000px;}
.fs6_c00234{font-size:60.000000px;}
.fs3_c00234{font-size:66.000000px;}
.fs4_c00234{font-size:72.000000px;}
.fs0_c00234{font-size:78.000000px;}
.fs1_c00234{font-size:84.000000px;}
.fs8_c00234{font-size:120.000000px;}
.y0_c00234{bottom:0.000000px;}
.y6c_c00234{bottom:165.300000px;}
.y6b_c00234{bottom:181.800000px;}
.y57_c00234{bottom:189.000000px;}
.y6a_c00234{bottom:196.650000px;}
.y56_c00234{bottom:207.000000px;}
.y69_c00234{bottom:211.350000px;}
.y55_c00234{bottom:224.250000px;}
.y68_c00234{bottom:225.750000px;}
.y58_c00234{bottom:230.700000px;}
.y54_c00234{bottom:242.100000px;}
.y53_c00234{bottom:260.100000px;}
.y67_c00234{bottom:263.550000px;}
.y52_c00234{bottom:278.100000px;}
.y66_c00234{bottom:281.850000px;}
.y51_c00234{bottom:295.800000px;}
.y65_c00234{bottom:299.550000px;}
.y50_c00234{bottom:313.500000px;}
.y64_c00234{bottom:317.550000px;}
.y4f_c00234{bottom:331.500000px;}
.y63_c00234{bottom:334.800000px;}
.y4e_c00234{bottom:349.200000px;}
.y62_c00234{bottom:352.800000px;}
.y4d_c00234{bottom:367.200000px;}
.y61_c00234{bottom:370.500000px;}
.y4c_c00234{bottom:385.200000px;}
.y60_c00234{bottom:390.600000px;}
.y4b_c00234{bottom:402.900000px;}
.y5f_c00234{bottom:405.300000px;}
.y4a_c00234{bottom:420.900000px;}
.y5e_c00234{bottom:423.750000px;}
.y5d_c00234{bottom:438.150000px;}
.y49_c00234{bottom:439.200000px;}
.y5c_c00234{bottom:452.550000px;}
.y48_c00234{bottom:456.450000px;}
.y5b_c00234{bottom:466.950000px;}
.y47_c00234{bottom:474.450000px;}
.y5a_c00234{bottom:481.350000px;}
.y46_c00234{bottom:492.450000px;}
.y59_c00234{bottom:495.750000px;}
.y45_c00234{bottom:510.150000px;}
.y44_c00234{bottom:528.150000px;}
.y43_c00234{bottom:545.250000px;}
.y25_c00234{bottom:546.000000px;}
.y42_c00234{bottom:562.950000px;}
.y24_c00234{bottom:563.700000px;}
.y41_c00234{bottom:580.650000px;}
.y23_c00234{bottom:584.700000px;}
.y40_c00234{bottom:598.650000px;}
.y22_c00234{bottom:599.100000px;}
.y21_c00234{bottom:613.200000px;}
.y3f_c00234{bottom:620.850000px;}
.y20_c00234{bottom:627.900000px;}
.y3e_c00234{bottom:638.850000px;}
.y1f_c00234{bottom:642.300000px;}
.y3d_c00234{bottom:656.550000px;}
.y1e_c00234{bottom:656.700000px;}
.y1d_c00234{bottom:671.100000px;}
.y3c_c00234{bottom:674.550000px;}
.y1c_c00234{bottom:691.950000px;}
.y3b_c00234{bottom:692.550000px;}
.y3a_c00234{bottom:709.500000px;}
.y1b_c00234{bottom:709.650000px;}
.y1a_c00234{bottom:726.900000px;}
.y39_c00234{bottom:727.800000px;}
.y38_c00234{bottom:745.500000px;}
.y19_c00234{bottom:749.100000px;}
.y37_c00234{bottom:763.200000px;}
.y18_c00234{bottom:766.800000px;}
.y17_c00234{bottom:784.650000px;}
.y36_c00234{bottom:785.550000px;}
.y16_c00234{bottom:802.350000px;}
.y35_c00234{bottom:811.800000px;}
.y15_c00234{bottom:820.050000px;}
.y34_c00234{bottom:830.100000px;}
.y14_c00234{bottom:837.750000px;}
.y33_c00234{bottom:857.100000px;}
.y13_c00234{bottom:858.900000px;}
.y32_c00234{bottom:874.800000px;}
.y12_c00234{bottom:884.850000px;}
.y31_c00234{bottom:892.800000px;}
.y11_c00234{bottom:903.600000px;}
.y30_c00234{bottom:910.500000px;}
.y2f_c00234{bottom:928.500000px;}
.y10_c00234{bottom:934.950000px;}
.y2e_c00234{bottom:950.250000px;}
.yf_c00234{bottom:953.250000px;}
.y2d_c00234{bottom:967.950000px;}
.ye_c00234{bottom:975.150000px;}
.y2c_c00234{bottom:986.250000px;}
.yd_c00234{bottom:992.850000px;}
.y2b_c00234{bottom:1003.500000px;}
.yc_c00234{bottom:1010.850000px;}
.y2a_c00234{bottom:1021.500000px;}
.yb_c00234{bottom:1028.850000px;}
.y29_c00234{bottom:1039.200000px;}
.ya_c00234{bottom:1046.850000px;}
.y28_c00234{bottom:1057.200000px;}
.y9_c00234{bottom:1064.550000px;}
.y27_c00234{bottom:1074.900000px;}
.y8_c00234{bottom:1082.550000px;}
.y26_c00234{bottom:1092.900000px;}
.y7_c00234{bottom:1100.100000px;}
.y5_c00234{bottom:1114.950000px;}
.y4_c00234{bottom:1118.100000px;}
.y2_c00234{bottom:1139.400000px;}
.y1_c00234{bottom:1142.700000px;}
.y3_c00234{bottom:1262.850000px;}
.y6_c00234{bottom:1265.400000px;}
.h7_c00234{height:30.000000px;}
.h4_c00234{height:36.000000px;}
.hb_c00234{height:48.000000px;}
.h9_c00234{height:54.000000px;}
.h8_c00234{height:60.000000px;}
.h5_c00234{height:66.000000px;}
.h6_c00234{height:72.000000px;}
.h2_c00234{height:78.000000px;}
.h3_c00234{height:84.000000px;}
.ha_c00234{height:120.000000px;}
.h0_c00234{height:1273.320007px;}
.h1_c00234{height:1273.500000px;}
.w1_c00234{width:963.000000px;}
.w0_c00234{width:963.359985px;}
.x0_c00234{left:0.000000px;}
.x81_c00234{left:89.700000px;}
.x74_c00234{left:90.750000px;}
.x53_c00234{left:91.800000px;}
.x4b_c00234{left:93.600000px;}
.x58_c00234{left:102.900000px;}
.x8b_c00234{left:104.100000px;}
.x85_c00234{left:105.150000px;}
.x118_c00234{left:106.350000px;}
.x72_c00234{left:107.550000px;}
.x61_c00234{left:109.350000px;}
.x36_c00234{left:110.550000px;}
.x2c_c00234{left:111.900000px;}
.x7_c00234{left:113.100000px;}
.x8f_c00234{left:117.300000px;}
.x8c_c00234{left:118.800000px;}
.x10f_c00234{left:120.600000px;}
.x127_c00234{left:122.250000px;}
.x54_c00234{left:123.450000px;}
.x115_c00234{left:126.000000px;}
.x2d_c00234{left:128.400000px;}
.x78_c00234{left:130.200000px;}
.x88_c00234{left:132.900000px;}
.x59_c00234{left:135.000000px;}
.x97_c00234{left:137.550000px;}
.x1e_c00234{left:138.900000px;}
.x122_c00234{left:140.400000px;}
.x73_c00234{left:142.800000px;}
.x3e_c00234{left:143.850000px;}
.x11f_c00234{left:145.500000px;}
.x7f_c00234{left:147.150000px;}
.x2e_c00234{left:148.200000px;}
.x89_c00234{left:150.150000px;}
.x62_c00234{left:152.850000px;}
.x8_c00234{left:154.200000px;}
.x123_c00234{left:156.600000px;}
.x90_c00234{left:157.650000px;}
.x18_c00234{left:158.700000px;}
.x12f_c00234{left:160.950000px;}
.x4c_c00234{left:163.500000px;}
.x6a_c00234{left:168.900000px;}
.x37_c00234{left:171.000000px;}
.x5a_c00234{left:173.550000px;}
.x25_c00234{left:175.350000px;}
.x3f_c00234{left:177.750000px;}
.x93_c00234{left:178.950000px;}
.x79_c00234{left:180.300000px;}
.x9_c00234{left:181.500000px;}
.x19_c00234{left:187.200000px;}
.x49_c00234{left:188.850000px;}
.x44_c00234{left:190.200000px;}
.x6b_c00234{left:191.550000px;}
.x7a_c00234{left:192.600000px;}
.x11b_c00234{left:193.800000px;}
.x110_c00234{left:195.900000px;}
.x50_c00234{left:196.950000px;}
.x91_c00234{left:198.750000px;}
.x2f_c00234{left:200.400000px;}
.x38_c00234{left:201.900000px;}
.x1f_c00234{left:203.400000px;}
.x12d_c00234{left:206.850000px;}
.x63_c00234{left:208.350000px;}
.x5d_c00234{left:209.550000px;}
.x7b_c00234{left:210.900000px;}
.x4a_c00234{left:214.800000px;}
.x86_c00234{left:216.300000px;}
.x30_c00234{left:217.650000px;}
.x128_c00234{left:219.900000px;}
.x111_c00234{left:221.100000px;}
.x5b_c00234{left:222.900000px;}
.x119_c00234{left:225.450000px;}
.x20_c00234{left:226.800000px;}
.x94_c00234{left:227.850000px;}
.x129_c00234{left:229.200000px;}
.x64_c00234{left:230.250000px;}
.x26_c00234{left:231.900000px;}
.x12b_c00234{left:233.850000px;}
.x40_c00234{left:235.650000px;}
.x6f_c00234{left:236.850000px;}
.x12c_c00234{left:238.650000px;}
.x39_c00234{left:242.550000px;}
.x57_c00234{left:243.750000px;}
.x45_c00234{left:244.950000px;}
.x1a_c00234{left:248.100000px;}
.x131_c00234{left:250.800000px;}
.x27_c00234{left:252.000000px;}
.x41_c00234{left:256.200000px;}
.x51_c00234{left:257.400000px;}
.x80_c00234{left:259.350000px;}
.x120_c00234{left:261.300000px;}
.x4d_c00234{left:265.050000px;}
.x31_c00234{left:266.250000px;}
.x7c_c00234{left:267.750000px;}
.x5e_c00234{left:270.000000px;}
.x28_c00234{left:271.800000px;}
.x11c_c00234{left:273.000000px;}
.x3a_c00234{left:274.200000px;}
.x46_c00234{left:275.550000px;}
.x1b_c00234{left:277.650000px;}
.x125_c00234{left:279.000000px;}
.x5c_c00234{left:281.850000px;}
.x4e_c00234{left:283.350000px;}
.x12a_c00234{left:285.000000px;}
.x55_c00234{left:286.500000px;}
.x82_c00234{left:288.450000px;}
.x52_c00234{left:290.100000px;}
.x75_c00234{left:292.350000px;}
.xa_c00234{left:294.600000px;}
.x21_c00234{left:297.000000px;}
.x47_c00234{left:298.200000px;}
.x32_c00234{left:301.200000px;}
.x66_c00234{left:303.750000px;}
.x95_c00234{left:304.950000px;}
.x6c_c00234{left:306.450000px;}
.x70_c00234{left:308.850000px;}
.x126_c00234{left:310.200000px;}
.x3b_c00234{left:311.250000px;}
.x8a_c00234{left:313.650000px;}
.x12e_c00234{left:315.300000px;}
.x42_c00234{left:316.350000px;}
.x7d_c00234{left:319.200000px;}
.x29_c00234{left:320.400000px;}
.x67_c00234{left:321.450000px;}
.x87_c00234{left:323.250000px;}
.x76_c00234{left:325.050000px;}
.x92_c00234{left:327.600000px;}
.x2a_c00234{left:330.150000px;}
.x6d_c00234{left:331.950000px;}
.x3c_c00234{left:334.650000px;}
.x22_c00234{left:335.850000px;}
.x71_c00234{left:337.650000px;}
.x116_c00234{left:339.900000px;}
.x1_c00234{left:340.950000px;}
.x68_c00234{left:343.050000px;}
.x33_c00234{left:345.000000px;}
.x11d_c00234{left:346.350000px;}
.x83_c00234{left:347.850000px;}
.x11a_c00234{left:348.900000px;}
.x4f_c00234{left:350.700000px;}
.x1c_c00234{left:352.950000px;}
.x5f_c00234{left:355.650000px;}
.x8d_c00234{left:357.450000px;}
.x117_c00234{left:359.400000px;}
.x69_c00234{left:363.150000px;}
.x56_c00234{left:364.650000px;}
.xb_c00234{left:366.600000px;}
.x11e_c00234{left:368.400000px;}
.x65_c00234{left:370.350000px;}
.x96_c00234{left:372.900000px;}
.x2b_c00234{left:374.400000px;}
.x1d_c00234{left:378.900000px;}
.x48_c00234{left:380.700000px;}
.x130_c00234{left:382.200000px;}
.x124_c00234{left:384.150000px;}
.x34_c00234{left:385.650000px;}
.x23_c00234{left:388.050000px;}
.x7e_c00234{left:390.150000px;}
.x60_c00234{left:391.950000px;}
.x35_c00234{left:394.650000px;}
.x77_c00234{left:396.600000px;}
.x6e_c00234{left:398.550000px;}
.x98_c00234{left:402.900000px;}
.x3d_c00234{left:405.150000px;}
.x132_c00234{left:406.800000px;}
.x121_c00234{left:408.600000px;}
.x84_c00234{left:413.250000px;}
.x8e_c00234{left:414.750000px;}
.x24_c00234{left:415.800000px;}
.x43_c00234{left:421.050000px;}
.x133_c00234{left:431.250000px;}
.x13f_c00234{left:442.800000px;}
.x112_c00234{left:445.950000px;}
.x108_c00234{left:447.450000px;}
.xe3_c00234{left:450.750000px;}
.xcb_c00234{left:452.100000px;}
.x99_c00234{left:454.650000px;}
.x13d_c00234{left:457.950000px;}
.x13a_c00234{left:459.000000px;}
.x134_c00234{left:460.050000px;}
.x141_c00234{left:461.100000px;}
.x10c_c00234{left:462.300000px;}
.x105_c00234{left:464.850000px;}
.xf3_c00234{left:466.050000px;}
.xec_c00234{left:467.250000px;}
.xd1_c00234{left:469.050000px;}
.xb2_c00234{left:470.850000px;}
.xa2_c00234{left:472.050000px;}
.xc_c00234{left:474.450000px;}
.x14a_c00234{left:484.050000px;}
.xe6_c00234{left:486.300000px;}
.x13e_c00234{left:487.500000px;}
.xf0_c00234{left:489.450000px;}
.xd2_c00234{left:490.950000px;}
.xb7_c00234{left:493.050000px;}
.xd_c00234{left:494.250000px;}
.xca_c00234{left:496.200000px;}
.x135_c00234{left:497.850000px;}
.xa3_c00234{left:499.800000px;}
.x14b_c00234{left:502.800000px;}
.x147_c00234{left:504.000000px;}
.xdd_c00234{left:505.800000px;}
.xd9_c00234{left:507.000000px;}
.xf7_c00234{left:509.100000px;}
.x10e_c00234{left:512.400000px;}
.x102_c00234{left:514.950000px;}
.x9a_c00234{left:517.650000px;}
.xcc_c00234{left:521.550000px;}
.xbc_c00234{left:523.350000px;}
.xfb_c00234{left:524.550000px;}
.x138_c00234{left:526.500000px;}
.x109_c00234{left:527.850000px;}
.xde_c00234{left:529.500000px;}
.xf4_c00234{left:532.200000px;}
.x136_c00234{left:533.850000px;}
.x9b_c00234{left:535.650000px;}
.xb3_c00234{left:538.950000px;}
.xe_c00234{left:542.100000px;}
.x10d_c00234{left:543.600000px;}
.xcd_c00234{left:545.250000px;}
.xac_c00234{left:546.750000px;}
.xff_c00234{left:548.250000px;}
.x113_c00234{left:550.050000px;}
.xb8_c00234{left:552.150000px;}
.xd3_c00234{left:554.250000px;}
.x9c_c00234{left:556.950000px;}
.xfc_c00234{left:558.750000px;}
.xf_c00234{left:559.800000px;}
.xda_c00234{left:563.550000px;}
.xd4_c00234{left:565.050000px;}
.x106_c00234{left:567.450000px;}
.xad_c00234{left:568.650000px;}
.xf5_c00234{left:570.300000px;}
.xed_c00234{left:571.950000px;}
.x14f_c00234{left:573.450000px;}
.xa4_c00234{left:574.650000px;}
.x148_c00234{left:576.300000px;}
.x10_c00234{left:577.800000px;}
.xd5_c00234{left:582.750000px;}
.xa5_c00234{left:584.400000px;}
.xe4_c00234{left:585.750000px;}
.xc2_c00234{left:588.750000px;}
.xe2_c00234{left:589.950000px;}
.xb9_c00234{left:592.500000px;}
.x9d_c00234{left:594.450000px;}
.xf8_c00234{left:595.950000px;}
.xa6_c00234{left:602.100000px;}
.xf9_c00234{left:604.950000px;}
.x100_c00234{left:607.200000px;}
.xe7_c00234{left:610.950000px;}
.xbd_c00234{left:612.000000px;}
.x107_c00234{left:613.200000px;}
.x139_c00234{left:614.700000px;}
.x9e_c00234{left:616.050000px;}
.xc3_c00234{left:617.850000px;}
.x11_c00234{left:619.500000px;}
.xd7_c00234{left:625.350000px;}
.xce_c00234{left:628.050000px;}
.x3_c00234{left:630.000000px;}
.xae_c00234{left:631.350000px;}
.xa7_c00234{left:633.750000px;}
.xbe_c00234{left:636.450000px;}
.xd6_c00234{left:637.800000px;}
.xf1_c00234{left:639.600000px;}
.xb4_c00234{left:640.800000px;}
.x150_c00234{left:642.150000px;}
.xdb_c00234{left:643.500000px;}
.xc7_c00234{left:646.200000px;}
.xdf_c00234{left:647.400000px;}
.xaf_c00234{left:649.050000px;}
.x142_c00234{left:651.150000px;}
.xfa_c00234{left:652.500000px;}
.x10a_c00234{left:653.850000px;}
.xe8_c00234{left:655.500000px;}
.xe5_c00234{left:657.750000px;}
.x153_c00234{left:658.950000px;}
.xdc_c00234{left:660.750000px;}
.x12_c00234{left:661.950000px;}
.xa8_c00234{left:664.350000px;}
.xba_c00234{left:665.550000px;}
.xfd_c00234{left:667.200000px;}
.x103_c00234{left:669.150000px;}
.xb0_c00234{left:670.950000px;}
.x101_c00234{left:672.000000px;}
.x14d_c00234{left:673.950000px;}
.x4_c00234{left:675.000000px;}
.xc4_c00234{left:678.000000px;}
.xbf_c00234{left:681.150000px;}
.x143_c00234{left:682.500000px;}
.xf6_c00234{left:686.550000px;}
.xe9_c00234{left:687.600000px;}
.xa9_c00234{left:689.850000px;}
.x9f_c00234{left:690.900000px;}
.xe0_c00234{left:693.900000px;}
.xc8_c00234{left:696.300000px;}
.xf2_c00234{left:697.500000px;}
.x10b_c00234{left:699.900000px;}
.xc0_c00234{left:702.000000px;}
.xea_c00234{left:704.100000px;}
.x146_c00234{left:705.600000px;}
.x13_c00234{left:706.950000px;}
.xcf_c00234{left:711.600000px;}
.x137_c00234{left:713.100000px;}
.xb5_c00234{left:714.900000px;}
.x144_c00234{left:715.950000px;}
.x151_c00234{left:718.800000px;}
.xc9_c00234{left:720.450000px;}
.x104_c00234{left:721.800000px;}
.x145_c00234{left:726.450000px;}
.xa0_c00234{left:728.400000px;}
.xbb_c00234{left:730.050000px;}
.x152_c00234{left:731.100000px;}
.xee_c00234{left:732.450000px;}
.x114_c00234{left:734.250000px;}
.xc5_c00234{left:735.600000px;}
.x5_c00234{left:736.950000px;}
.xeb_c00234{left:739.050000px;}
.x14_c00234{left:740.850000px;}
.x14c_c00234{left:742.500000px;}
.xaa_c00234{left:743.850000px;}
.x149_c00234{left:745.500000px;}
.xb6_c00234{left:747.600000px;}
.xe1_c00234{left:749.400000px;}
.xa1_c00234{left:750.750000px;}
.xfe_c00234{left:752.100000px;}
.xc6_c00234{left:753.900000px;}
.x6_c00234{left:756.450000px;}
.xd0_c00234{left:758.100000px;}
.xab_c00234{left:759.750000px;}
.x13c_c00234{left:761.400000px;}
.xc1_c00234{left:762.450000px;}
.x140_c00234{left:764.550000px;}
.x2_c00234{left:766.050000px;}
.xef_c00234{left:767.400000px;}
.x13b_c00234{left:768.600000px;}
.xb1_c00234{left:770.400000px;}
.xd8_c00234{left:771.600000px;}
.x14e_c00234{left:775.800000px;}
.x15_c00234{left:789.900000px;}
.x16_c00234{left:840.600000px;}
.x17_c00234{left:845.700000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls0_c00234{letter-spacing:0.000000pt;}
.ws0_c00234{word-spacing:-5.489158pt;}
.ws2_c00234{word-spacing:-3.252033pt;}
.ws6_c00234{word-spacing:0.000000pt;}
.ws3_c00234{word-spacing:1.880342pt;}
.ws4_c00234{word-spacing:3.500931pt;}
.ws1_c00234{word-spacing:14.233129pt;}
.ws5_c00234{word-spacing:81.388889pt;}
.fs5_c00234{font-size:26.666667pt;}
.fs2_c00234{font-size:32.000000pt;}
.fs9_c00234{font-size:42.666667pt;}
.fs7_c00234{font-size:48.000000pt;}
.fs6_c00234{font-size:53.333333pt;}
.fs3_c00234{font-size:58.666667pt;}
.fs4_c00234{font-size:64.000000pt;}
.fs0_c00234{font-size:69.333333pt;}
.fs1_c00234{font-size:74.666667pt;}
.fs8_c00234{font-size:106.666667pt;}
.y0_c00234{bottom:0.000000pt;}
.y6c_c00234{bottom:146.933333pt;}
.y6b_c00234{bottom:161.600000pt;}
.y57_c00234{bottom:168.000000pt;}
.y6a_c00234{bottom:174.800000pt;}
.y56_c00234{bottom:184.000000pt;}
.y69_c00234{bottom:187.866667pt;}
.y55_c00234{bottom:199.333333pt;}
.y68_c00234{bottom:200.666667pt;}
.y58_c00234{bottom:205.066667pt;}
.y54_c00234{bottom:215.200000pt;}
.y53_c00234{bottom:231.200000pt;}
.y67_c00234{bottom:234.266667pt;}
.y52_c00234{bottom:247.200000pt;}
.y66_c00234{bottom:250.533333pt;}
.y51_c00234{bottom:262.933333pt;}
.y65_c00234{bottom:266.266667pt;}
.y50_c00234{bottom:278.666667pt;}
.y64_c00234{bottom:282.266667pt;}
.y4f_c00234{bottom:294.666667pt;}
.y63_c00234{bottom:297.600000pt;}
.y4e_c00234{bottom:310.400000pt;}
.y62_c00234{bottom:313.600000pt;}
.y4d_c00234{bottom:326.400000pt;}
.y61_c00234{bottom:329.333333pt;}
.y4c_c00234{bottom:342.400000pt;}
.y60_c00234{bottom:347.200000pt;}
.y4b_c00234{bottom:358.133333pt;}
.y5f_c00234{bottom:360.266667pt;}
.y4a_c00234{bottom:374.133333pt;}
.y5e_c00234{bottom:376.666667pt;}
.y5d_c00234{bottom:389.466667pt;}
.y49_c00234{bottom:390.400000pt;}
.y5c_c00234{bottom:402.266667pt;}
.y48_c00234{bottom:405.733333pt;}
.y5b_c00234{bottom:415.066667pt;}
.y47_c00234{bottom:421.733333pt;}
.y5a_c00234{bottom:427.866667pt;}
.y46_c00234{bottom:437.733333pt;}
.y59_c00234{bottom:440.666667pt;}
.y45_c00234{bottom:453.466667pt;}
.y44_c00234{bottom:469.466667pt;}
.y43_c00234{bottom:484.666667pt;}
.y25_c00234{bottom:485.333333pt;}
.y42_c00234{bottom:500.400000pt;}
.y24_c00234{bottom:501.066667pt;}
.y41_c00234{bottom:516.133333pt;}
.y23_c00234{bottom:519.733333pt;}
.y40_c00234{bottom:532.133333pt;}
.y22_c00234{bottom:532.533333pt;}
.y21_c00234{bottom:545.066667pt;}
.y3f_c00234{bottom:551.866667pt;}
.y20_c00234{bottom:558.133333pt;}
.y3e_c00234{bottom:567.866667pt;}
.y1f_c00234{bottom:570.933333pt;}
.y3d_c00234{bottom:583.600000pt;}
.y1e_c00234{bottom:583.733333pt;}
.y1d_c00234{bottom:596.533333pt;}
.y3c_c00234{bottom:599.600000pt;}
.y1c_c00234{bottom:615.066667pt;}
.y3b_c00234{bottom:615.600000pt;}
.y3a_c00234{bottom:630.666667pt;}
.y1b_c00234{bottom:630.800000pt;}
.y1a_c00234{bottom:646.133333pt;}
.y39_c00234{bottom:646.933333pt;}
.y38_c00234{bottom:662.666667pt;}
.y19_c00234{bottom:665.866667pt;}
.y37_c00234{bottom:678.400000pt;}
.y18_c00234{bottom:681.600000pt;}
.y17_c00234{bottom:697.466667pt;}
.y36_c00234{bottom:698.266667pt;}
.y16_c00234{bottom:713.200000pt;}
.y35_c00234{bottom:721.600000pt;}
.y15_c00234{bottom:728.933333pt;}
.y34_c00234{bottom:737.866667pt;}
.y14_c00234{bottom:744.666667pt;}
.y33_c00234{bottom:761.866667pt;}
.y13_c00234{bottom:763.466667pt;}
.y32_c00234{bottom:777.600000pt;}
.y12_c00234{bottom:786.533333pt;}
.y31_c00234{bottom:793.600000pt;}
.y11_c00234{bottom:803.200000pt;}
.y30_c00234{bottom:809.333333pt;}
.y2f_c00234{bottom:825.333333pt;}
.y10_c00234{bottom:831.066667pt;}
.y2e_c00234{bottom:844.666667pt;}
.yf_c00234{bottom:847.333333pt;}
.y2d_c00234{bottom:860.400000pt;}
.ye_c00234{bottom:866.800000pt;}
.y2c_c00234{bottom:876.666667pt;}
.yd_c00234{bottom:882.533333pt;}
.y2b_c00234{bottom:892.000000pt;}
.yc_c00234{bottom:898.533333pt;}
.y2a_c00234{bottom:908.000000pt;}
.yb_c00234{bottom:914.533333pt;}
.y29_c00234{bottom:923.733333pt;}
.ya_c00234{bottom:930.533333pt;}
.y28_c00234{bottom:939.733333pt;}
.y9_c00234{bottom:946.266667pt;}
.y27_c00234{bottom:955.466667pt;}
.y8_c00234{bottom:962.266667pt;}
.y26_c00234{bottom:971.466667pt;}
.y7_c00234{bottom:977.866667pt;}
.y5_c00234{bottom:991.066667pt;}
.y4_c00234{bottom:993.866667pt;}
.y2_c00234{bottom:1012.800000pt;}
.y1_c00234{bottom:1015.733333pt;}
.y3_c00234{bottom:1122.533333pt;}
.y6_c00234{bottom:1124.800000pt;}
.h7_c00234{height:26.666667pt;}
.h4_c00234{height:32.000000pt;}
.hb_c00234{height:42.666667pt;}
.h9_c00234{height:48.000000pt;}
.h8_c00234{height:53.333333pt;}
.h5_c00234{height:58.666667pt;}
.h6_c00234{height:64.000000pt;}
.h2_c00234{height:69.333333pt;}
.h3_c00234{height:74.666667pt;}
.ha_c00234{height:106.666667pt;}
.h0_c00234{height:1131.840007pt;}
.h1_c00234{height:1132.000000pt;}
.w1_c00234{width:856.000000pt;}
.w0_c00234{width:856.319987pt;}
.x0_c00234{left:0.000000pt;}
.x81_c00234{left:79.733333pt;}
.x74_c00234{left:80.666667pt;}
.x53_c00234{left:81.600000pt;}
.x4b_c00234{left:83.200000pt;}
.x58_c00234{left:91.466667pt;}
.x8b_c00234{left:92.533333pt;}
.x85_c00234{left:93.466667pt;}
.x118_c00234{left:94.533333pt;}
.x72_c00234{left:95.600000pt;}
.x61_c00234{left:97.200000pt;}
.x36_c00234{left:98.266667pt;}
.x2c_c00234{left:99.466667pt;}
.x7_c00234{left:100.533333pt;}
.x8f_c00234{left:104.266667pt;}
.x8c_c00234{left:105.600000pt;}
.x10f_c00234{left:107.200000pt;}
.x127_c00234{left:108.666667pt;}
.x54_c00234{left:109.733333pt;}
.x115_c00234{left:112.000000pt;}
.x2d_c00234{left:114.133333pt;}
.x78_c00234{left:115.733333pt;}
.x88_c00234{left:118.133333pt;}
.x59_c00234{left:120.000000pt;}
.x97_c00234{left:122.266667pt;}
.x1e_c00234{left:123.466667pt;}
.x122_c00234{left:124.800000pt;}
.x73_c00234{left:126.933333pt;}
.x3e_c00234{left:127.866667pt;}
.x11f_c00234{left:129.333333pt;}
.x7f_c00234{left:130.800000pt;}
.x2e_c00234{left:131.733333pt;}
.x89_c00234{left:133.466667pt;}
.x62_c00234{left:135.866667pt;}
.x8_c00234{left:137.066667pt;}
.x123_c00234{left:139.200000pt;}
.x90_c00234{left:140.133333pt;}
.x18_c00234{left:141.066667pt;}
.x12f_c00234{left:143.066667pt;}
.x4c_c00234{left:145.333333pt;}
.x6a_c00234{left:150.133333pt;}
.x37_c00234{left:152.000000pt;}
.x5a_c00234{left:154.266667pt;}
.x25_c00234{left:155.866667pt;}
.x3f_c00234{left:158.000000pt;}
.x93_c00234{left:159.066667pt;}
.x79_c00234{left:160.266667pt;}
.x9_c00234{left:161.333333pt;}
.x19_c00234{left:166.400000pt;}
.x49_c00234{left:167.866667pt;}
.x44_c00234{left:169.066667pt;}
.x6b_c00234{left:170.266667pt;}
.x7a_c00234{left:171.200000pt;}
.x11b_c00234{left:172.266667pt;}
.x110_c00234{left:174.133333pt;}
.x50_c00234{left:175.066667pt;}
.x91_c00234{left:176.666667pt;}
.x2f_c00234{left:178.133333pt;}
.x38_c00234{left:179.466667pt;}
.x1f_c00234{left:180.800000pt;}
.x12d_c00234{left:183.866667pt;}
.x63_c00234{left:185.200000pt;}
.x5d_c00234{left:186.266667pt;}
.x7b_c00234{left:187.466667pt;}
.x4a_c00234{left:190.933333pt;}
.x86_c00234{left:192.266667pt;}
.x30_c00234{left:193.466667pt;}
.x128_c00234{left:195.466667pt;}
.x111_c00234{left:196.533333pt;}
.x5b_c00234{left:198.133333pt;}
.x119_c00234{left:200.400000pt;}
.x20_c00234{left:201.600000pt;}
.x94_c00234{left:202.533333pt;}
.x129_c00234{left:203.733333pt;}
.x64_c00234{left:204.666667pt;}
.x26_c00234{left:206.133333pt;}
.x12b_c00234{left:207.866667pt;}
.x40_c00234{left:209.466667pt;}
.x6f_c00234{left:210.533333pt;}
.x12c_c00234{left:212.133333pt;}
.x39_c00234{left:215.600000pt;}
.x57_c00234{left:216.666667pt;}
.x45_c00234{left:217.733333pt;}
.x1a_c00234{left:220.533333pt;}
.x131_c00234{left:222.933333pt;}
.x27_c00234{left:224.000000pt;}
.x41_c00234{left:227.733333pt;}
.x51_c00234{left:228.800000pt;}
.x80_c00234{left:230.533333pt;}
.x120_c00234{left:232.266667pt;}
.x4d_c00234{left:235.600000pt;}
.x31_c00234{left:236.666667pt;}
.x7c_c00234{left:238.000000pt;}
.x5e_c00234{left:240.000000pt;}
.x28_c00234{left:241.600000pt;}
.x11c_c00234{left:242.666667pt;}
.x3a_c00234{left:243.733333pt;}
.x46_c00234{left:244.933333pt;}
.x1b_c00234{left:246.800000pt;}
.x125_c00234{left:248.000000pt;}
.x5c_c00234{left:250.533333pt;}
.x4e_c00234{left:251.866667pt;}
.x12a_c00234{left:253.333333pt;}
.x55_c00234{left:254.666667pt;}
.x82_c00234{left:256.400000pt;}
.x52_c00234{left:257.866667pt;}
.x75_c00234{left:259.866667pt;}
.xa_c00234{left:261.866667pt;}
.x21_c00234{left:264.000000pt;}
.x47_c00234{left:265.066667pt;}
.x32_c00234{left:267.733333pt;}
.x66_c00234{left:270.000000pt;}
.x95_c00234{left:271.066667pt;}
.x6c_c00234{left:272.400000pt;}
.x70_c00234{left:274.533333pt;}
.x126_c00234{left:275.733333pt;}
.x3b_c00234{left:276.666667pt;}
.x8a_c00234{left:278.800000pt;}
.x12e_c00234{left:280.266667pt;}
.x42_c00234{left:281.200000pt;}
.x7d_c00234{left:283.733333pt;}
.x29_c00234{left:284.800000pt;}
.x67_c00234{left:285.733333pt;}
.x87_c00234{left:287.333333pt;}
.x76_c00234{left:288.933333pt;}
.x92_c00234{left:291.200000pt;}
.x2a_c00234{left:293.466667pt;}
.x6d_c00234{left:295.066667pt;}
.x3c_c00234{left:297.466667pt;}
.x22_c00234{left:298.533333pt;}
.x71_c00234{left:300.133333pt;}
.x116_c00234{left:302.133333pt;}
.x1_c00234{left:303.066667pt;}
.x68_c00234{left:304.933333pt;}
.x33_c00234{left:306.666667pt;}
.x11d_c00234{left:307.866667pt;}
.x83_c00234{left:309.200000pt;}
.x11a_c00234{left:310.133333pt;}
.x4f_c00234{left:311.733333pt;}
.x1c_c00234{left:313.733333pt;}
.x5f_c00234{left:316.133333pt;}
.x8d_c00234{left:317.733333pt;}
.x117_c00234{left:319.466667pt;}
.x69_c00234{left:322.800000pt;}
.x56_c00234{left:324.133333pt;}
.xb_c00234{left:325.866667pt;}
.x11e_c00234{left:327.466667pt;}
.x65_c00234{left:329.200000pt;}
.x96_c00234{left:331.466667pt;}
.x2b_c00234{left:332.800000pt;}
.x1d_c00234{left:336.800000pt;}
.x48_c00234{left:338.400000pt;}
.x130_c00234{left:339.733333pt;}
.x124_c00234{left:341.466667pt;}
.x34_c00234{left:342.800000pt;}
.x23_c00234{left:344.933333pt;}
.x7e_c00234{left:346.800000pt;}
.x60_c00234{left:348.400000pt;}
.x35_c00234{left:350.800000pt;}
.x77_c00234{left:352.533333pt;}
.x6e_c00234{left:354.266667pt;}
.x98_c00234{left:358.133333pt;}
.x3d_c00234{left:360.133333pt;}
.x132_c00234{left:361.600000pt;}
.x121_c00234{left:363.200000pt;}
.x84_c00234{left:367.333333pt;}
.x8e_c00234{left:368.666667pt;}
.x24_c00234{left:369.600000pt;}
.x43_c00234{left:374.266667pt;}
.x133_c00234{left:383.333333pt;}
.x13f_c00234{left:393.600000pt;}
.x112_c00234{left:396.400000pt;}
.x108_c00234{left:397.733333pt;}
.xe3_c00234{left:400.666667pt;}
.xcb_c00234{left:401.866667pt;}
.x99_c00234{left:404.133333pt;}
.x13d_c00234{left:407.066667pt;}
.x13a_c00234{left:408.000000pt;}
.x134_c00234{left:408.933333pt;}
.x141_c00234{left:409.866667pt;}
.x10c_c00234{left:410.933333pt;}
.x105_c00234{left:413.200000pt;}
.xf3_c00234{left:414.266667pt;}
.xec_c00234{left:415.333333pt;}
.xd1_c00234{left:416.933333pt;}
.xb2_c00234{left:418.533333pt;}
.xa2_c00234{left:419.600000pt;}
.xc_c00234{left:421.733333pt;}
.x14a_c00234{left:430.266667pt;}
.xe6_c00234{left:432.266667pt;}
.x13e_c00234{left:433.333333pt;}
.xf0_c00234{left:435.066667pt;}
.xd2_c00234{left:436.400000pt;}
.xb7_c00234{left:438.266667pt;}
.xd_c00234{left:439.333333pt;}
.xca_c00234{left:441.066667pt;}
.x135_c00234{left:442.533333pt;}
.xa3_c00234{left:444.266667pt;}
.x14b_c00234{left:446.933333pt;}
.x147_c00234{left:448.000000pt;}
.xdd_c00234{left:449.600000pt;}
.xd9_c00234{left:450.666667pt;}
.xf7_c00234{left:452.533333pt;}
.x10e_c00234{left:455.466667pt;}
.x102_c00234{left:457.733333pt;}
.x9a_c00234{left:460.133333pt;}
.xcc_c00234{left:463.600000pt;}
.xbc_c00234{left:465.200000pt;}
.xfb_c00234{left:466.266667pt;}
.x138_c00234{left:468.000000pt;}
.x109_c00234{left:469.200000pt;}
.xde_c00234{left:470.666667pt;}
.xf4_c00234{left:473.066667pt;}
.x136_c00234{left:474.533333pt;}
.x9b_c00234{left:476.133333pt;}
.xb3_c00234{left:479.066667pt;}
.xe_c00234{left:481.866667pt;}
.x10d_c00234{left:483.200000pt;}
.xcd_c00234{left:484.666667pt;}
.xac_c00234{left:486.000000pt;}
.xff_c00234{left:487.333333pt;}
.x113_c00234{left:488.933333pt;}
.xb8_c00234{left:490.800000pt;}
.xd3_c00234{left:492.666667pt;}
.x9c_c00234{left:495.066667pt;}
.xfc_c00234{left:496.666667pt;}
.xf_c00234{left:497.600000pt;}
.xda_c00234{left:500.933333pt;}
.xd4_c00234{left:502.266667pt;}
.x106_c00234{left:504.400000pt;}
.xad_c00234{left:505.466667pt;}
.xf5_c00234{left:506.933333pt;}
.xed_c00234{left:508.400000pt;}
.x14f_c00234{left:509.733333pt;}
.xa4_c00234{left:510.800000pt;}
.x148_c00234{left:512.266667pt;}
.x10_c00234{left:513.600000pt;}
.xd5_c00234{left:518.000000pt;}
.xa5_c00234{left:519.466667pt;}
.xe4_c00234{left:520.666667pt;}
.xc2_c00234{left:523.333333pt;}
.xe2_c00234{left:524.400000pt;}
.xb9_c00234{left:526.666667pt;}
.x9d_c00234{left:528.400000pt;}
.xf8_c00234{left:529.733333pt;}
.xa6_c00234{left:535.200000pt;}
.xf9_c00234{left:537.733333pt;}
.x100_c00234{left:539.733333pt;}
.xe7_c00234{left:543.066667pt;}
.xbd_c00234{left:544.000000pt;}
.x107_c00234{left:545.066667pt;}
.x139_c00234{left:546.400000pt;}
.x9e_c00234{left:547.600000pt;}
.xc3_c00234{left:549.200000pt;}
.x11_c00234{left:550.666667pt;}
.xd7_c00234{left:555.866667pt;}
.xce_c00234{left:558.266667pt;}
.x3_c00234{left:560.000000pt;}
.xae_c00234{left:561.200000pt;}
.xa7_c00234{left:563.333333pt;}
.xbe_c00234{left:565.733333pt;}
.xd6_c00234{left:566.933333pt;}
.xf1_c00234{left:568.533333pt;}
.xb4_c00234{left:569.600000pt;}
.x150_c00234{left:570.800000pt;}
.xdb_c00234{left:572.000000pt;}
.xc7_c00234{left:574.400000pt;}
.xdf_c00234{left:575.466667pt;}
.xaf_c00234{left:576.933333pt;}
.x142_c00234{left:578.800000pt;}
.xfa_c00234{left:580.000000pt;}
.x10a_c00234{left:581.200000pt;}
.xe8_c00234{left:582.666667pt;}
.xe5_c00234{left:584.666667pt;}
.x153_c00234{left:585.733333pt;}
.xdc_c00234{left:587.333333pt;}
.x12_c00234{left:588.400000pt;}
.xa8_c00234{left:590.533333pt;}
.xba_c00234{left:591.600000pt;}
.xfd_c00234{left:593.066667pt;}
.x103_c00234{left:594.800000pt;}
.xb0_c00234{left:596.400000pt;}
.x101_c00234{left:597.333333pt;}
.x14d_c00234{left:599.066667pt;}
.x4_c00234{left:600.000000pt;}
.xc4_c00234{left:602.666667pt;}
.xbf_c00234{left:605.466667pt;}
.x143_c00234{left:606.666667pt;}
.xf6_c00234{left:610.266667pt;}
.xe9_c00234{left:611.200000pt;}
.xa9_c00234{left:613.200000pt;}
.x9f_c00234{left:614.133333pt;}
.xe0_c00234{left:616.800000pt;}
.xc8_c00234{left:618.933333pt;}
.xf2_c00234{left:620.000000pt;}
.x10b_c00234{left:622.133333pt;}
.xc0_c00234{left:624.000000pt;}
.xea_c00234{left:625.866667pt;}
.x146_c00234{left:627.200000pt;}
.x13_c00234{left:628.400000pt;}
.xcf_c00234{left:632.533333pt;}
.x137_c00234{left:633.866667pt;}
.xb5_c00234{left:635.466667pt;}
.x144_c00234{left:636.400000pt;}
.x151_c00234{left:638.933333pt;}
.xc9_c00234{left:640.400000pt;}
.x104_c00234{left:641.600000pt;}
.x145_c00234{left:645.733333pt;}
.xa0_c00234{left:647.466667pt;}
.xbb_c00234{left:648.933333pt;}
.x152_c00234{left:649.866667pt;}
.xee_c00234{left:651.066667pt;}
.x114_c00234{left:652.666667pt;}
.xc5_c00234{left:653.866667pt;}
.x5_c00234{left:655.066667pt;}
.xeb_c00234{left:656.933333pt;}
.x14_c00234{left:658.533333pt;}
.x14c_c00234{left:660.000000pt;}
.xaa_c00234{left:661.200000pt;}
.x149_c00234{left:662.666667pt;}
.xb6_c00234{left:664.533333pt;}
.xe1_c00234{left:666.133333pt;}
.xa1_c00234{left:667.333333pt;}
.xfe_c00234{left:668.533333pt;}
.xc6_c00234{left:670.133333pt;}
.x6_c00234{left:672.400000pt;}
.xd0_c00234{left:673.866667pt;}
.xab_c00234{left:675.333333pt;}
.x13c_c00234{left:676.800000pt;}
.xc1_c00234{left:677.733333pt;}
.x140_c00234{left:679.600000pt;}
.x2_c00234{left:680.933333pt;}
.xef_c00234{left:682.133333pt;}
.x13b_c00234{left:683.200000pt;}
.xb1_c00234{left:684.800000pt;}
.xd8_c00234{left:685.866667pt;}
.x14e_c00234{left:689.600000pt;}
.x15_c00234{left:702.133333pt;}
.x16_c00234{left:747.200000pt;}
.x17_c00234{left:751.733333pt;}
}





/* 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_c00235 {
    display:none;
  }
  .loading-indicator_c00235.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00235 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_c00235 { 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_c00235" -> "#page-container .classname_c00235")
 */
.pf_c00235 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00235 { /* 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_c00235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00235 { /* 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_c00235 { /* 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_c00235 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00235 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00235 {overflow:visible;}
  }
}
.c_c00235 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00235 { /* 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_c00235:after { /* webkit #35443 */
  content: '';
}
.t_c00235:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00235 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 */
}
.__c00235 { /* 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_c00235 { /* info for Javascript */
  display:none;
}
.l_c00235 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00235 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00235 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00235: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_c00235 {
    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_c00235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00235.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_c00235 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00235;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.000000;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;}
.m87_c00235{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00235{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m45_c00235{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m109_c00235{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00235{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00235{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.md2_c00235{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m7_c00235{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me6_c00235{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m58_c00235{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00235{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m90_c00235{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00235{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m36_c00235{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me7_c00235{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00235{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m2_c00235{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md5_c00235{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00235{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00235{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00235{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00235{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m78_c00235{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mac_c00235{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m105_c00235{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00235{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00235{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m106_c00235{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m67_c00235{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00235{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mae_c00235{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m9_c00235{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5_c00235{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md4_c00235{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00235{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00235{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m33_c00235{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me8_c00235{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m69_c00235{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00235{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00235{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mad_c00235{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00235{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m57_c00235{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m12_c00235{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m98_c00235{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m61_c00235{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m40_c00235{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00235{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00235{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00235{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m10_c00235{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m93_c00235{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m97_c00235{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00235{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mb_c00235{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m92_c00235{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00235{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00235{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m104_c00235{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mec_c00235{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m46_c00235{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m91_c00235{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m4_c00235{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me5_c00235{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m3_c00235{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m13_c00235{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00235{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.me_c00235{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.med_c00235{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00235{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.me2_c00235{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m64_c00235{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mab_c00235{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m32_c00235{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00235{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00235{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00235{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00235{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.meb_c00235{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m43_c00235{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00235{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00235{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m8_c00235{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m77_c00235{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf_c00235{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00235{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m94_c00235{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m47_c00235{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m15_c00235{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m74_c00235{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.maf_c00235{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc_c00235{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00235{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md8_c00235{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m51_c00235{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m19_c00235{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mea_c00235{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00235{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m44_c00235{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m59_c00235{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mee_c00235{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md_c00235{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00235{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00235{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mce_c00235{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m37_c00235{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00235{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00235{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m81_c00235{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m71_c00235{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00235{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00235{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m30_c00235{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00235{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00235{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m55_c00235{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m35_c00235{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00235{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m72_c00235{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m63_c00235{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00235{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00235{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00235{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00235{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m99_c00235{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m49_c00235{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00235{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m16_c00235{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m79_c00235{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00235{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00235{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00235{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m101_c00235{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m22_c00235{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m27_c00235{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00235{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00235{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m38_c00235{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m62_c00235{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me3_c00235{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00235{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00235{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m0_c00235{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m25_c00235{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m17_c00235{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00235{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m28_c00235{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m86_c00235{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m73_c00235{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m39_c00235{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00235{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00235{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00235{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00235{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00235{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m18_c00235{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00235{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me4_c00235{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00235{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00235{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m89_c00235{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m65_c00235{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m52_c00235{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m11_c00235{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m54_c00235{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m95_c00235{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m56_c00235{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00235{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md0_c00235{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me0_c00235{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m68_c00235{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m102_c00235{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00235{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00235{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m26_c00235{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m85_c00235{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00235{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00235{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00235{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mde_c00235{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00235{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me1_c00235{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m107_c00235{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.me9_c00235{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m50_c00235{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00235{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma_c00235{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md3_c00235{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m34_c00235{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00235{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m88_c00235{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00235{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m48_c00235{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m60_c00235{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00235{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m29_c00235{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00235{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m14_c00235{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m76_c00235{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00235{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00235{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00235{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00235{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00235{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00235{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m70_c00235{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00235{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00235{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m31_c00235{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00235{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00235{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m80_c00235{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m108_c00235{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00235{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00235{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m53_c00235{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m96_c00235{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md1_c00235{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00235{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mef_c00235{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00235{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.maa_c00235{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00235{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00235{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m42_c00235{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m20_c00235{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00235{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00235{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00235{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00235{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m21_c00235{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m103_c00235{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00235{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00235{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00235{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mba_c00235{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m23_c00235{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00235{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m41_c00235{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00235{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m75_c00235{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00235{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m66_c00235{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00235{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m24_c00235{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mca_c00235{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00235{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00235{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00235{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00235{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mda_c00235{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00235{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00235{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m82_c00235{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m83_c00235{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00235{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m84_c00235{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.mff_c00235{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m100_c00235{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00235{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00235{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md9_c00235{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.md6_c00235{transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);}
.md7_c00235{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls0_c00235{letter-spacing:0.000000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{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__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00235{word-spacing:-8.980892px;}
.ws6_c00235{word-spacing:-5.476190px;}
.ws5_c00235{word-spacing:-0.041237px;}
.ws7_c00235{word-spacing:0.000000px;}
.ws2_c00235{word-spacing:6.578947px;}
.ws1_c00235{word-spacing:8.216495px;}
.ws3_c00235{word-spacing:9.315789px;}
.ws4_c00235{word-spacing:20.106870px;}
.fc0_c00235{color:transparent;}
.fs7_c00235{font-size:24.000000px;}
.fs2_c00235{font-size:30.000000px;}
.fs6_c00235{font-size:36.000000px;}
.fs0_c00235{font-size:54.000000px;}
.fs4_c00235{font-size:60.000000px;}
.fs3_c00235{font-size:66.000000px;}
.fs5_c00235{font-size:72.000000px;}
.fs1_c00235{font-size:84.000000px;}
.y0_c00235{bottom:0.000000px;}
.y6a_c00235{bottom:190.800000px;}
.y36_c00235{bottom:208.500000px;}
.y69_c00235{bottom:209.250000px;}
.y35_c00235{bottom:226.200000px;}
.y68_c00235{bottom:227.550000px;}
.y34_c00235{bottom:243.900000px;}
.y67_c00235{bottom:245.400000px;}
.y33_c00235{bottom:261.150000px;}
.y66_c00235{bottom:263.400000px;}
.y32_c00235{bottom:278.850000px;}
.y65_c00235{bottom:281.100000px;}
.y31_c00235{bottom:296.550000px;}
.y64_c00235{bottom:299.100000px;}
.y30_c00235{bottom:314.250000px;}
.y63_c00235{bottom:321.900000px;}
.y2f_c00235{bottom:331.950000px;}
.y62_c00235{bottom:339.900000px;}
.y2e_c00235{bottom:349.200000px;}
.y61_c00235{bottom:357.900000px;}
.y60_c00235{bottom:365.700000px;}
.y2d_c00235{bottom:375.750000px;}
.y5f_c00235{bottom:376.200000px;}
.y2c_c00235{bottom:393.750000px;}
.y5e_c00235{bottom:394.200000px;}
.y2b_c00235{bottom:411.450000px;}
.y5d_c00235{bottom:411.900000px;}
.y2a_c00235{bottom:429.450000px;}
.y5c_c00235{bottom:429.600000px;}
.y29_c00235{bottom:447.150000px;}
.y5b_c00235{bottom:447.300000px;}
.y28_c00235{bottom:465.150000px;}
.y5a_c00235{bottom:465.600000px;}
.y59_c00235{bottom:483.300000px;}
.y27_c00235{bottom:487.650000px;}
.y58_c00235{bottom:501.600000px;}
.y26_c00235{bottom:505.350000px;}
.y57_c00235{bottom:519.600000px;}
.y25_c00235{bottom:523.050000px;}
.y56_c00235{bottom:537.600000px;}
.y24_c00235{bottom:541.050000px;}
.y55_c00235{bottom:555.300000px;}
.y23_c00235{bottom:559.050000px;}
.y54_c00235{bottom:573.300000px;}
.y22_c00235{bottom:576.750000px;}
.y53_c00235{bottom:591.300000px;}
.y21_c00235{bottom:594.300000px;}
.y52_c00235{bottom:609.000000px;}
.y20_c00235{bottom:621.000000px;}
.y51_c00235{bottom:627.000000px;}
.y1f_c00235{bottom:639.000000px;}
.y50_c00235{bottom:645.000000px;}
.y1e_c00235{bottom:656.700000px;}
.y4f_c00235{bottom:663.000000px;}
.y1d_c00235{bottom:675.000000px;}
.y4e_c00235{bottom:681.000000px;}
.y1c_c00235{bottom:686.550000px;}
.y1b_c00235{bottom:693.000000px;}
.y4d_c00235{bottom:699.000000px;}
.y4c_c00235{bottom:717.000000px;}
.y1a_c00235{bottom:718.350000px;}
.y4b_c00235{bottom:735.000000px;}
.y19_c00235{bottom:737.100000px;}
.y4a_c00235{bottom:752.700000px;}
.y18_c00235{bottom:755.100000px;}
.y49_c00235{bottom:770.400000px;}
.y17_c00235{bottom:773.100000px;}
.y16_c00235{bottom:790.800000px;}
.y48_c00235{bottom:795.300000px;}
.y15_c00235{bottom:808.500000px;}
.y47_c00235{bottom:810.000000px;}
.y46_c00235{bottom:824.100000px;}
.y14_c00235{bottom:826.500000px;}
.y45_c00235{bottom:838.800000px;}
.y13_c00235{bottom:844.200000px;}
.y44_c00235{bottom:854.700000px;}
.y12_c00235{bottom:862.200000px;}
.y43_c00235{bottom:873.750000px;}
.y11_c00235{bottom:879.900000px;}
.y42_c00235{bottom:891.750000px;}
.y10_c00235{bottom:898.200000px;}
.y41_c00235{bottom:910.050000px;}
.yf_c00235{bottom:915.900000px;}
.y40_c00235{bottom:927.750000px;}
.ye_c00235{bottom:933.900000px;}
.yd_c00235{bottom:951.600000px;}
.y3f_c00235{bottom:953.700000px;}
.yc_c00235{bottom:969.600000px;}
.y3e_c00235{bottom:972.000000px;}
.yb_c00235{bottom:987.600000px;}
.y3d_c00235{bottom:990.300000px;}
.ya_c00235{bottom:1005.600000px;}
.y3c_c00235{bottom:1008.300000px;}
.y9_c00235{bottom:1023.600000px;}
.y3b_c00235{bottom:1029.900000px;}
.y8_c00235{bottom:1041.300000px;}
.y3a_c00235{bottom:1056.600000px;}
.y7_c00235{bottom:1059.000000px;}
.y39_c00235{bottom:1074.600000px;}
.y6_c00235{bottom:1077.000000px;}
.y5_c00235{bottom:1094.700000px;}
.y38_c00235{bottom:1096.500000px;}
.y4_c00235{bottom:1112.700000px;}
.y37_c00235{bottom:1114.500000px;}
.y3_c00235{bottom:1132.200000px;}
.y1_c00235{bottom:1136.550000px;}
.y2_c00235{bottom:1140.450000px;}
.h9_c00235{height:24.000000px;}
.h4_c00235{height:30.000000px;}
.h8_c00235{height:36.000000px;}
.h2_c00235{height:54.000000px;}
.h6_c00235{height:60.000000px;}
.h5_c00235{height:66.000000px;}
.h7_c00235{height:72.000000px;}
.h3_c00235{height:84.000000px;}
.h0_c00235{height:1270.440033px;}
.h1_c00235{height:1270.500000px;}
.w1_c00235{width:963.000000px;}
.w0_c00235{width:963.359985px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:187.200000px;}
.x74_c00235{left:192.600000px;}
.x46_c00235{left:196.200000px;}
.x99_c00235{left:197.250000px;}
.x4_c00235{left:205.200000px;}
.x17_c00235{left:206.250000px;}
.x2d_c00235{left:207.900000px;}
.x55_c00235{left:208.950000px;}
.x79_c00235{left:210.450000px;}
.x87_c00235{left:211.950000px;}
.x95_c00235{left:213.900000px;}
.x9b_c00235{left:214.950000px;}
.x82_c00235{left:220.650000px;}
.x1d_c00235{left:227.550000px;}
.x65_c00235{left:228.750000px;}
.xf_c00235{left:229.950000px;}
.x8c_c00235{left:231.150000px;}
.x34_c00235{left:233.850000px;}
.x50_c00235{left:237.600000px;}
.x5_c00235{left:239.700000px;}
.x56_c00235{left:241.650000px;}
.x77_c00235{left:243.450000px;}
.x1e_c00235{left:245.250000px;}
.x3b_c00235{left:246.900000px;}
.x85_c00235{left:248.700000px;}
.x18_c00235{left:249.750000px;}
.x3_c00235{left:252.000000px;}
.x51_c00235{left:254.100000px;}
.x2e_c00235{left:256.200000px;}
.x72_c00235{left:257.700000px;}
.x4b_c00235{left:259.200000px;}
.x3c_c00235{left:260.550000px;}
.x6_c00235{left:262.800000px;}
.x8f_c00235{left:264.300000px;}
.x6a_c00235{left:265.500000px;}
.x5d_c00235{left:266.850000px;}
.x35_c00235{left:268.050000px;}
.x75_c00235{left:269.400000px;}
.x86_c00235{left:270.600000px;}
.x6f_c00235{left:271.800000px;}
.x80_c00235{left:273.900000px;}
.x1f_c00235{left:275.850000px;}
.x57_c00235{left:277.350000px;}
.x47_c00235{left:278.550000px;}
.x10_c00235{left:280.350000px;}
.x3d_c00235{left:282.150000px;}
.xa3_c00235{left:284.400000px;}
.x7_c00235{left:286.200000px;}
.x5e_c00235{left:287.400000px;}
.x43_c00235{left:290.250000px;}
.x70_c00235{left:291.900000px;}
.x73_c00235{left:294.000000px;}
.x20_c00235{left:295.350000px;}
.x27_c00235{left:296.850000px;}
.x8b_c00235{left:298.200000px;}
.x96_c00235{left:300.300000px;}
.x93_c00235{left:301.350000px;}
.x19_c00235{left:302.700000px;}
.x9c_c00235{left:306.000000px;}
.x88_c00235{left:307.050000px;}
.x81_c00235{left:315.600000px;}
.x66_c00235{left:319.050000px;}
.x4c_c00235{left:320.100000px;}
.x21_c00235{left:322.050000px;}
.x9d_c00235{left:329.400000px;}
.x6d_c00235{left:330.900000px;}
.x90_c00235{left:332.400000px;}
.x2f_c00235{left:333.600000px;}
.x94_c00235{left:335.250000px;}
.x58_c00235{left:336.450000px;}
.x24_c00235{left:339.300000px;}
.x5f_c00235{left:340.650000px;}
.x36_c00235{left:342.150000px;}
.x6b_c00235{left:343.500000px;}
.x22_c00235{left:345.450000px;}
.x9e_c00235{left:348.150000px;}
.x8_c00235{left:349.500000px;}
.x3e_c00235{left:351.300000px;}
.x83_c00235{left:353.100000px;}
.x11_c00235{left:354.150000px;}
.x61_c00235{left:357.150000px;}
.x9_c00235{left:358.800000px;}
.x71_c00235{left:360.600000px;}
.x1a_c00235{left:361.800000px;}
.x30_c00235{left:363.450000px;}
.x98_c00235{left:366.450000px;}
.x28_c00235{left:368.100000px;}
.x9f_c00235{left:370.500000px;}
.x25_c00235{left:373.200000px;}
.x12_c00235{left:374.250000px;}
.x91_c00235{left:375.900000px;}
.x59_c00235{left:377.850000px;}
.x7f_c00235{left:379.200000px;}
.x7a_c00235{left:380.250000px;}
.x48_c00235{left:381.750000px;}
.xa_c00235{left:383.250000px;}
.x89_c00235{left:384.750000px;}
.x5a_c00235{left:386.100000px;}
.x67_c00235{left:387.900000px;}
.x23_c00235{left:388.950000px;}
.x3f_c00235{left:390.600000px;}
.xa6_c00235{left:391.650000px;}
.x62_c00235{left:394.200000px;}
.x37_c00235{left:395.550000px;}
.x44_c00235{left:396.900000px;}
.xb_c00235{left:398.400000px;}
.x52_c00235{left:400.800000px;}
.x29_c00235{left:403.800000px;}
.x8d_c00235{left:405.600000px;}
.x40_c00235{left:406.800000px;}
.x68_c00235{left:410.550000px;}
.x31_c00235{left:412.350000px;}
.x84_c00235{left:414.300000px;}
.x38_c00235{left:420.450000px;}
.x13_c00235{left:422.100000px;}
.xa1_c00235{left:423.450000px;}
.x49_c00235{left:424.950000px;}
.x7d_c00235{left:426.000000px;}
.x2_c00235{left:427.650000px;}
.x53_c00235{left:431.400000px;}
.x9a_c00235{left:433.050000px;}
.x7b_c00235{left:435.450000px;}
.x41_c00235{left:436.650000px;}
.xa4_c00235{left:439.050000px;}
.xc_c00235{left:441.600000px;}
.x32_c00235{left:443.250000px;}
.x8a_c00235{left:444.600000px;}
.x76_c00235{left:446.100000px;}
.x2a_c00235{left:447.300000px;}
.x92_c00235{left:448.950000px;}
.x4d_c00235{left:450.750000px;}
.x6c_c00235{left:452.550000px;}
.x64_c00235{left:454.800000px;}
.xd_c00235{left:458.100000px;}
.x45_c00235{left:459.600000px;}
.x8e_c00235{left:462.450000px;}
.x14_c00235{left:463.500000px;}
.x4a_c00235{left:464.850000px;}
.x5b_c00235{left:466.050000px;}
.x2b_c00235{left:468.900000px;}
.x54_c00235{left:472.800000px;}
.x39_c00235{left:474.450000px;}
.x33_c00235{left:476.400000px;}
.x69_c00235{left:477.450000px;}
.x42_c00235{left:479.850000px;}
.xe_c00235{left:482.250000px;}
.x26_c00235{left:483.750000px;}
.x15_c00235{left:484.800000px;}
.x1b_c00235{left:486.000000px;}
.x78_c00235{left:489.750000px;}
.x4e_c00235{left:491.100000px;}
.x2c_c00235{left:494.400000px;}
.x63_c00235{left:495.750000px;}
.x7c_c00235{left:498.450000px;}
.x60_c00235{left:500.400000px;}
.x1c_c00235{left:501.900000px;}
.x16_c00235{left:503.550000px;}
.xa7_c00235{left:504.750000px;}
.x14c_c00235{left:506.250000px;}
.xa5_c00235{left:508.500000px;}
.x3a_c00235{left:509.700000px;}
.x7e_c00235{left:512.100000px;}
.x4f_c00235{left:514.200000px;}
.xa0_c00235{left:515.250000px;}
.x6e_c00235{left:516.300000px;}
.x97_c00235{left:519.450000px;}
.x5c_c00235{left:521.100000px;}
.xa2_c00235{left:524.550000px;}
.x14d_c00235{left:539.400000px;}
.xb6_c00235{left:543.300000px;}
.xc6_c00235{left:546.150000px;}
.x100_c00235{left:547.500000px;}
.x14e_c00235{left:550.950000px;}
.xf7_c00235{left:559.800000px;}
.xa8_c00235{left:560.850000px;}
.xbf_c00235{left:561.900000px;}
.xd6_c00235{left:562.950000px;}
.x105_c00235{left:565.500000px;}
.x117_c00235{left:566.700000px;}
.x12b_c00235{left:568.200000px;}
.x13b_c00235{left:569.400000px;}
.xfe_c00235{left:574.650000px;}
.xcb_c00235{left:582.150000px;}
.x106_c00235{left:584.250000px;}
.xc7_c00235{left:587.550000px;}
.xf8_c00235{left:589.350000px;}
.x111_c00235{left:591.150000px;}
.xe9_c00235{left:592.200000px;}
.xae_c00235{left:593.550000px;}
.xa9_c00235{left:595.350000px;}
.x10c_c00235{left:597.600000px;}
.x113_c00235{left:598.800000px;}
.xd9_c00235{left:601.050000px;}
.xf1_c00235{left:603.300000px;}
.xee_c00235{left:606.600000px;}
.xf9_c00235{left:608.100000px;}
.x118_c00235{left:610.650000px;}
.xb7_c00235{left:613.500000px;}
.x12c_c00235{left:617.100000px;}
.x140_c00235{left:618.150000px;}
.xe2_c00235{left:619.800000px;}
.xaf_c00235{left:623.400000px;}
.x11b_c00235{left:624.450000px;}
.xc0_c00235{left:625.950000px;}
.x130_c00235{left:627.900000px;}
.x107_c00235{left:630.000000px;}
.x147_c00235{left:631.500000px;}
.x149_c00235{left:634.050000px;}
.x101_c00235{left:635.400000px;}
.xb8_c00235{left:637.650000px;}
.xda_c00235{left:639.150000px;}
.xaa_c00235{left:640.350000px;}
.x146_c00235{left:641.550000px;}
.xc1_c00235{left:642.900000px;}
.xea_c00235{left:644.400000px;}
.x114_c00235{left:647.400000px;}
.x108_c00235{left:649.800000px;}
.x11c_c00235{left:651.150000px;}
.x10d_c00235{left:653.100000px;}
.x125_c00235{left:654.300000px;}
.xdc_c00235{left:655.500000px;}
.xd2_c00235{left:656.550000px;}
.xef_c00235{left:658.050000px;}
.xab_c00235{left:660.150000px;}
.xfa_c00235{left:661.800000px;}
.x142_c00235{left:663.000000px;}
.xcc_c00235{left:664.650000px;}
.xf2_c00235{left:667.350000px;}
.xe3_c00235{left:669.150000px;}
.x145_c00235{left:670.350000px;}
.xc8_c00235{left:674.250000px;}
.xc2_c00235{left:675.600000px;}
.x102_c00235{left:678.300000px;}
.x133_c00235{left:679.350000px;}
.x10e_c00235{left:680.400000px;}
.xdb_c00235{left:681.900000px;}
.xf0_c00235{left:682.950000px;}
.xb0_c00235{left:684.300000px;}
.xf3_c00235{left:687.150000px;}
.x115_c00235{left:688.800000px;}
.xb9_c00235{left:689.850000px;}
.x12d_c00235{left:691.650000px;}
.x143_c00235{left:692.850000px;}
.x120_c00235{left:694.650000px;}
.x131_c00235{left:696.600000px;}
.xcd_c00235{left:697.800000px;}
.x14a_c00235{left:699.150000px;}
.xc3_c00235{left:701.100000px;}
.xd3_c00235{left:703.050000px;}
.xba_c00235{left:705.300000px;}
.xdd_c00235{left:706.650000px;}
.xb1_c00235{left:709.800000px;}
.x11d_c00235{left:710.850000px;}
.x122_c00235{left:712.350000px;}
.xd4_c00235{left:715.350000px;}
.x134_c00235{left:717.450000px;}
.x136_c00235{left:719.850000px;}
.x123_c00235{left:721.650000px;}
.xf4_c00235{left:723.450000px;}
.x128_c00235{left:726.600000px;}
.xe4_c00235{left:728.250000px;}
.x148_c00235{left:729.450000px;}
.xb2_c00235{left:731.400000px;}
.x126_c00235{left:733.800000px;}
.x109_c00235{left:735.900000px;}
.x116_c00235{left:736.950000px;}
.x12e_c00235{left:738.750000px;}
.xde_c00235{left:740.100000px;}
.x13c_c00235{left:741.600000px;}
.x11e_c00235{left:744.300000px;}
.xeb_c00235{left:747.750000px;}
.x119_c00235{left:749.700000px;}
.xac_c00235{left:751.650000px;}
.x10f_c00235{left:753.900000px;}
.xd7_c00235{left:755.850000px;}
.xc9_c00235{left:758.100000px;}
.xce_c00235{left:760.050000px;}
.x13a_c00235{left:761.850000px;}
.x121_c00235{left:763.500000px;}
.xfb_c00235{left:765.750000px;}
.xca_c00235{left:766.800000px;}
.xcf_c00235{left:769.350000px;}
.xb3_c00235{left:770.700000px;}
.xe5_c00235{left:772.500000px;}
.x110_c00235{left:773.700000px;}
.x14f_c00235{left:775.050000px;}
.xbb_c00235{left:777.300000px;}
.x13d_c00235{left:778.350000px;}
.xdf_c00235{left:782.550000px;}
.xc4_c00235{left:783.600000px;}
.xfc_c00235{left:787.650000px;}
.xe6_c00235{left:790.500000px;}
.x127_c00235{left:791.700000px;}
.xbc_c00235{left:792.750000px;}
.x124_c00235{left:793.950000px;}
.xec_c00235{left:797.400000px;}
.x129_c00235{left:798.600000px;}
.xc5_c00235{left:799.800000px;}
.xf5_c00235{left:802.650000px;}
.xb4_c00235{left:804.900000px;}
.x14b_c00235{left:808.200000px;}
.xad_c00235{left:810.000000px;}
.x12f_c00235{left:811.800000px;}
.xd5_c00235{left:812.850000px;}
.xff_c00235{left:814.050000px;}
.xb5_c00235{left:815.400000px;}
.xe0_c00235{left:816.450000px;}
.xed_c00235{left:818.700000px;}
.x11a_c00235{left:822.150000px;}
.x144_c00235{left:823.500000px;}
.xe7_c00235{left:826.500000px;}
.xd0_c00235{left:829.800000px;}
.x103_c00235{left:831.150000px;}
.xe8_c00235{left:834.750000px;}
.xe1_c00235{left:836.550000px;}
.x150_c00235{left:837.750000px;}
.x112_c00235{left:839.250000px;}
.xfd_c00235{left:842.250000px;}
.xd8_c00235{left:844.050000px;}
.x132_c00235{left:846.750000px;}
.x11f_c00235{left:848.100000px;}
.x12a_c00235{left:849.300000px;}
.x10a_c00235{left:851.100000px;}
.x137_c00235{left:853.050000px;}
.x135_c00235{left:854.550000px;}
.xd1_c00235{left:856.050000px;}
.x13f_c00235{left:857.850000px;}
.xbd_c00235{left:861.450000px;}
.x13e_c00235{left:865.800000px;}
.x104_c00235{left:867.450000px;}
.xf6_c00235{left:868.950000px;}
.xbe_c00235{left:871.200000px;}
.x139_c00235{left:872.850000px;}
.x10b_c00235{left:875.550000px;}
.x138_c00235{left:877.050000px;}
.x141_c00235{left:897.450000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws0_c00235{word-spacing:-7.983015pt;}
.ws6_c00235{word-spacing:-4.867725pt;}
.ws5_c00235{word-spacing:-0.036655pt;}
.ws7_c00235{word-spacing:0.000000pt;}
.ws2_c00235{word-spacing:5.847953pt;}
.ws1_c00235{word-spacing:7.303551pt;}
.ws3_c00235{word-spacing:8.280702pt;}
.ws4_c00235{word-spacing:17.872774pt;}
.fs7_c00235{font-size:21.333333pt;}
.fs2_c00235{font-size:26.666667pt;}
.fs6_c00235{font-size:32.000000pt;}
.fs0_c00235{font-size:48.000000pt;}
.fs4_c00235{font-size:53.333333pt;}
.fs3_c00235{font-size:58.666667pt;}
.fs5_c00235{font-size:64.000000pt;}
.fs1_c00235{font-size:74.666667pt;}
.y0_c00235{bottom:0.000000pt;}
.y6a_c00235{bottom:169.600000pt;}
.y36_c00235{bottom:185.333333pt;}
.y69_c00235{bottom:186.000000pt;}
.y35_c00235{bottom:201.066667pt;}
.y68_c00235{bottom:202.266667pt;}
.y34_c00235{bottom:216.800000pt;}
.y67_c00235{bottom:218.133333pt;}
.y33_c00235{bottom:232.133333pt;}
.y66_c00235{bottom:234.133333pt;}
.y32_c00235{bottom:247.866667pt;}
.y65_c00235{bottom:249.866667pt;}
.y31_c00235{bottom:263.600000pt;}
.y64_c00235{bottom:265.866667pt;}
.y30_c00235{bottom:279.333333pt;}
.y63_c00235{bottom:286.133333pt;}
.y2f_c00235{bottom:295.066667pt;}
.y62_c00235{bottom:302.133333pt;}
.y2e_c00235{bottom:310.400000pt;}
.y61_c00235{bottom:318.133333pt;}
.y60_c00235{bottom:325.066667pt;}
.y2d_c00235{bottom:334.000000pt;}
.y5f_c00235{bottom:334.400000pt;}
.y2c_c00235{bottom:350.000000pt;}
.y5e_c00235{bottom:350.400000pt;}
.y2b_c00235{bottom:365.733333pt;}
.y5d_c00235{bottom:366.133333pt;}
.y2a_c00235{bottom:381.733333pt;}
.y5c_c00235{bottom:381.866667pt;}
.y29_c00235{bottom:397.466667pt;}
.y5b_c00235{bottom:397.600000pt;}
.y28_c00235{bottom:413.466667pt;}
.y5a_c00235{bottom:413.866667pt;}
.y59_c00235{bottom:429.600000pt;}
.y27_c00235{bottom:433.466667pt;}
.y58_c00235{bottom:445.866667pt;}
.y26_c00235{bottom:449.200000pt;}
.y57_c00235{bottom:461.866667pt;}
.y25_c00235{bottom:464.933333pt;}
.y56_c00235{bottom:477.866667pt;}
.y24_c00235{bottom:480.933333pt;}
.y55_c00235{bottom:493.600000pt;}
.y23_c00235{bottom:496.933333pt;}
.y54_c00235{bottom:509.600000pt;}
.y22_c00235{bottom:512.666667pt;}
.y53_c00235{bottom:525.600000pt;}
.y21_c00235{bottom:528.266667pt;}
.y52_c00235{bottom:541.333333pt;}
.y20_c00235{bottom:552.000000pt;}
.y51_c00235{bottom:557.333333pt;}
.y1f_c00235{bottom:568.000000pt;}
.y50_c00235{bottom:573.333333pt;}
.y1e_c00235{bottom:583.733333pt;}
.y4f_c00235{bottom:589.333333pt;}
.y1d_c00235{bottom:600.000000pt;}
.y4e_c00235{bottom:605.333333pt;}
.y1c_c00235{bottom:610.266667pt;}
.y1b_c00235{bottom:616.000000pt;}
.y4d_c00235{bottom:621.333333pt;}
.y4c_c00235{bottom:637.333333pt;}
.y1a_c00235{bottom:638.533333pt;}
.y4b_c00235{bottom:653.333333pt;}
.y19_c00235{bottom:655.200000pt;}
.y4a_c00235{bottom:669.066667pt;}
.y18_c00235{bottom:671.200000pt;}
.y49_c00235{bottom:684.800000pt;}
.y17_c00235{bottom:687.200000pt;}
.y16_c00235{bottom:702.933333pt;}
.y48_c00235{bottom:706.933333pt;}
.y15_c00235{bottom:718.666667pt;}
.y47_c00235{bottom:720.000000pt;}
.y46_c00235{bottom:732.533333pt;}
.y14_c00235{bottom:734.666667pt;}
.y45_c00235{bottom:745.600000pt;}
.y13_c00235{bottom:750.400000pt;}
.y44_c00235{bottom:759.733333pt;}
.y12_c00235{bottom:766.400000pt;}
.y43_c00235{bottom:776.666667pt;}
.y11_c00235{bottom:782.133333pt;}
.y42_c00235{bottom:792.666667pt;}
.y10_c00235{bottom:798.400000pt;}
.y41_c00235{bottom:808.933333pt;}
.yf_c00235{bottom:814.133333pt;}
.y40_c00235{bottom:824.666667pt;}
.ye_c00235{bottom:830.133333pt;}
.yd_c00235{bottom:845.866667pt;}
.y3f_c00235{bottom:847.733333pt;}
.yc_c00235{bottom:861.866667pt;}
.y3e_c00235{bottom:864.000000pt;}
.yb_c00235{bottom:877.866667pt;}
.y3d_c00235{bottom:880.266667pt;}
.ya_c00235{bottom:893.866667pt;}
.y3c_c00235{bottom:896.266667pt;}
.y9_c00235{bottom:909.866667pt;}
.y3b_c00235{bottom:915.466667pt;}
.y8_c00235{bottom:925.600000pt;}
.y3a_c00235{bottom:939.200000pt;}
.y7_c00235{bottom:941.333333pt;}
.y39_c00235{bottom:955.200000pt;}
.y6_c00235{bottom:957.333333pt;}
.y5_c00235{bottom:973.066667pt;}
.y38_c00235{bottom:974.666667pt;}
.y4_c00235{bottom:989.066667pt;}
.y37_c00235{bottom:990.666667pt;}
.y3_c00235{bottom:1006.400000pt;}
.y1_c00235{bottom:1010.266667pt;}
.y2_c00235{bottom:1013.733333pt;}
.h9_c00235{height:21.333333pt;}
.h4_c00235{height:26.666667pt;}
.h8_c00235{height:32.000000pt;}
.h2_c00235{height:48.000000pt;}
.h6_c00235{height:53.333333pt;}
.h5_c00235{height:58.666667pt;}
.h7_c00235{height:64.000000pt;}
.h3_c00235{height:74.666667pt;}
.h0_c00235{height:1129.280029pt;}
.h1_c00235{height:1129.333333pt;}
.w1_c00235{width:856.000000pt;}
.w0_c00235{width:856.319987pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:166.400000pt;}
.x74_c00235{left:171.200000pt;}
.x46_c00235{left:174.400000pt;}
.x99_c00235{left:175.333333pt;}
.x4_c00235{left:182.400000pt;}
.x17_c00235{left:183.333333pt;}
.x2d_c00235{left:184.800000pt;}
.x55_c00235{left:185.733333pt;}
.x79_c00235{left:187.066667pt;}
.x87_c00235{left:188.400000pt;}
.x95_c00235{left:190.133333pt;}
.x9b_c00235{left:191.066667pt;}
.x82_c00235{left:196.133333pt;}
.x1d_c00235{left:202.266667pt;}
.x65_c00235{left:203.333333pt;}
.xf_c00235{left:204.400000pt;}
.x8c_c00235{left:205.466667pt;}
.x34_c00235{left:207.866667pt;}
.x50_c00235{left:211.200000pt;}
.x5_c00235{left:213.066667pt;}
.x56_c00235{left:214.800000pt;}
.x77_c00235{left:216.400000pt;}
.x1e_c00235{left:218.000000pt;}
.x3b_c00235{left:219.466667pt;}
.x85_c00235{left:221.066667pt;}
.x18_c00235{left:222.000000pt;}
.x3_c00235{left:224.000000pt;}
.x51_c00235{left:225.866667pt;}
.x2e_c00235{left:227.733333pt;}
.x72_c00235{left:229.066667pt;}
.x4b_c00235{left:230.400000pt;}
.x3c_c00235{left:231.600000pt;}
.x6_c00235{left:233.600000pt;}
.x8f_c00235{left:234.933333pt;}
.x6a_c00235{left:236.000000pt;}
.x5d_c00235{left:237.200000pt;}
.x35_c00235{left:238.266667pt;}
.x75_c00235{left:239.466667pt;}
.x86_c00235{left:240.533333pt;}
.x6f_c00235{left:241.600000pt;}
.x80_c00235{left:243.466667pt;}
.x1f_c00235{left:245.200000pt;}
.x57_c00235{left:246.533333pt;}
.x47_c00235{left:247.600000pt;}
.x10_c00235{left:249.200000pt;}
.x3d_c00235{left:250.800000pt;}
.xa3_c00235{left:252.800000pt;}
.x7_c00235{left:254.400000pt;}
.x5e_c00235{left:255.466667pt;}
.x43_c00235{left:258.000000pt;}
.x70_c00235{left:259.466667pt;}
.x73_c00235{left:261.333333pt;}
.x20_c00235{left:262.533333pt;}
.x27_c00235{left:263.866667pt;}
.x8b_c00235{left:265.066667pt;}
.x96_c00235{left:266.933333pt;}
.x93_c00235{left:267.866667pt;}
.x19_c00235{left:269.066667pt;}
.x9c_c00235{left:272.000000pt;}
.x88_c00235{left:272.933333pt;}
.x81_c00235{left:280.533333pt;}
.x66_c00235{left:283.600000pt;}
.x4c_c00235{left:284.533333pt;}
.x21_c00235{left:286.266667pt;}
.x9d_c00235{left:292.800000pt;}
.x6d_c00235{left:294.133333pt;}
.x90_c00235{left:295.466667pt;}
.x2f_c00235{left:296.533333pt;}
.x94_c00235{left:298.000000pt;}
.x58_c00235{left:299.066667pt;}
.x24_c00235{left:301.600000pt;}
.x5f_c00235{left:302.800000pt;}
.x36_c00235{left:304.133333pt;}
.x6b_c00235{left:305.333333pt;}
.x22_c00235{left:307.066667pt;}
.x9e_c00235{left:309.466667pt;}
.x8_c00235{left:310.666667pt;}
.x3e_c00235{left:312.266667pt;}
.x83_c00235{left:313.866667pt;}
.x11_c00235{left:314.800000pt;}
.x61_c00235{left:317.466667pt;}
.x9_c00235{left:318.933333pt;}
.x71_c00235{left:320.533333pt;}
.x1a_c00235{left:321.600000pt;}
.x30_c00235{left:323.066667pt;}
.x98_c00235{left:325.733333pt;}
.x28_c00235{left:327.200000pt;}
.x9f_c00235{left:329.333333pt;}
.x25_c00235{left:331.733333pt;}
.x12_c00235{left:332.666667pt;}
.x91_c00235{left:334.133333pt;}
.x59_c00235{left:335.866667pt;}
.x7f_c00235{left:337.066667pt;}
.x7a_c00235{left:338.000000pt;}
.x48_c00235{left:339.333333pt;}
.xa_c00235{left:340.666667pt;}
.x89_c00235{left:342.000000pt;}
.x5a_c00235{left:343.200000pt;}
.x67_c00235{left:344.800000pt;}
.x23_c00235{left:345.733333pt;}
.x3f_c00235{left:347.200000pt;}
.xa6_c00235{left:348.133333pt;}
.x62_c00235{left:350.400000pt;}
.x37_c00235{left:351.600000pt;}
.x44_c00235{left:352.800000pt;}
.xb_c00235{left:354.133333pt;}
.x52_c00235{left:356.266667pt;}
.x29_c00235{left:358.933333pt;}
.x8d_c00235{left:360.533333pt;}
.x40_c00235{left:361.600000pt;}
.x68_c00235{left:364.933333pt;}
.x31_c00235{left:366.533333pt;}
.x84_c00235{left:368.266667pt;}
.x38_c00235{left:373.733333pt;}
.x13_c00235{left:375.200000pt;}
.xa1_c00235{left:376.400000pt;}
.x49_c00235{left:377.733333pt;}
.x7d_c00235{left:378.666667pt;}
.x2_c00235{left:380.133333pt;}
.x53_c00235{left:383.466667pt;}
.x9a_c00235{left:384.933333pt;}
.x7b_c00235{left:387.066667pt;}
.x41_c00235{left:388.133333pt;}
.xa4_c00235{left:390.266667pt;}
.xc_c00235{left:392.533333pt;}
.x32_c00235{left:394.000000pt;}
.x8a_c00235{left:395.200000pt;}
.x76_c00235{left:396.533333pt;}
.x2a_c00235{left:397.600000pt;}
.x92_c00235{left:399.066667pt;}
.x4d_c00235{left:400.666667pt;}
.x6c_c00235{left:402.266667pt;}
.x64_c00235{left:404.266667pt;}
.xd_c00235{left:407.200000pt;}
.x45_c00235{left:408.533333pt;}
.x8e_c00235{left:411.066667pt;}
.x14_c00235{left:412.000000pt;}
.x4a_c00235{left:413.200000pt;}
.x5b_c00235{left:414.266667pt;}
.x2b_c00235{left:416.800000pt;}
.x54_c00235{left:420.266667pt;}
.x39_c00235{left:421.733333pt;}
.x33_c00235{left:423.466667pt;}
.x69_c00235{left:424.400000pt;}
.x42_c00235{left:426.533333pt;}
.xe_c00235{left:428.666667pt;}
.x26_c00235{left:430.000000pt;}
.x15_c00235{left:430.933333pt;}
.x1b_c00235{left:432.000000pt;}
.x78_c00235{left:435.333333pt;}
.x4e_c00235{left:436.533333pt;}
.x2c_c00235{left:439.466667pt;}
.x63_c00235{left:440.666667pt;}
.x7c_c00235{left:443.066667pt;}
.x60_c00235{left:444.800000pt;}
.x1c_c00235{left:446.133333pt;}
.x16_c00235{left:447.600000pt;}
.xa7_c00235{left:448.666667pt;}
.x14c_c00235{left:450.000000pt;}
.xa5_c00235{left:452.000000pt;}
.x3a_c00235{left:453.066667pt;}
.x7e_c00235{left:455.200000pt;}
.x4f_c00235{left:457.066667pt;}
.xa0_c00235{left:458.000000pt;}
.x6e_c00235{left:458.933333pt;}
.x97_c00235{left:461.733333pt;}
.x5c_c00235{left:463.200000pt;}
.xa2_c00235{left:466.266667pt;}
.x14d_c00235{left:479.466667pt;}
.xb6_c00235{left:482.933333pt;}
.xc6_c00235{left:485.466667pt;}
.x100_c00235{left:486.666667pt;}
.x14e_c00235{left:489.733333pt;}
.xf7_c00235{left:497.600000pt;}
.xa8_c00235{left:498.533333pt;}
.xbf_c00235{left:499.466667pt;}
.xd6_c00235{left:500.400000pt;}
.x105_c00235{left:502.666667pt;}
.x117_c00235{left:503.733333pt;}
.x12b_c00235{left:505.066667pt;}
.x13b_c00235{left:506.133333pt;}
.xfe_c00235{left:510.800000pt;}
.xcb_c00235{left:517.466667pt;}
.x106_c00235{left:519.333333pt;}
.xc7_c00235{left:522.266667pt;}
.xf8_c00235{left:523.866667pt;}
.x111_c00235{left:525.466667pt;}
.xe9_c00235{left:526.400000pt;}
.xae_c00235{left:527.600000pt;}
.xa9_c00235{left:529.200000pt;}
.x10c_c00235{left:531.200000pt;}
.x113_c00235{left:532.266667pt;}
.xd9_c00235{left:534.266667pt;}
.xf1_c00235{left:536.266667pt;}
.xee_c00235{left:539.200000pt;}
.xf9_c00235{left:540.533333pt;}
.x118_c00235{left:542.800000pt;}
.xb7_c00235{left:545.333333pt;}
.x12c_c00235{left:548.533333pt;}
.x140_c00235{left:549.466667pt;}
.xe2_c00235{left:550.933333pt;}
.xaf_c00235{left:554.133333pt;}
.x11b_c00235{left:555.066667pt;}
.xc0_c00235{left:556.400000pt;}
.x130_c00235{left:558.133333pt;}
.x107_c00235{left:560.000000pt;}
.x147_c00235{left:561.333333pt;}
.x149_c00235{left:563.600000pt;}
.x101_c00235{left:564.800000pt;}
.xb8_c00235{left:566.800000pt;}
.xda_c00235{left:568.133333pt;}
.xaa_c00235{left:569.200000pt;}
.x146_c00235{left:570.266667pt;}
.xc1_c00235{left:571.466667pt;}
.xea_c00235{left:572.800000pt;}
.x114_c00235{left:575.466667pt;}
.x108_c00235{left:577.600000pt;}
.x11c_c00235{left:578.800000pt;}
.x10d_c00235{left:580.533333pt;}
.x125_c00235{left:581.600000pt;}
.xdc_c00235{left:582.666667pt;}
.xd2_c00235{left:583.600000pt;}
.xef_c00235{left:584.933333pt;}
.xab_c00235{left:586.800000pt;}
.xfa_c00235{left:588.266667pt;}
.x142_c00235{left:589.333333pt;}
.xcc_c00235{left:590.800000pt;}
.xf2_c00235{left:593.200000pt;}
.xe3_c00235{left:594.800000pt;}
.x145_c00235{left:595.866667pt;}
.xc8_c00235{left:599.333333pt;}
.xc2_c00235{left:600.533333pt;}
.x102_c00235{left:602.933333pt;}
.x133_c00235{left:603.866667pt;}
.x10e_c00235{left:604.800000pt;}
.xdb_c00235{left:606.133333pt;}
.xf0_c00235{left:607.066667pt;}
.xb0_c00235{left:608.266667pt;}
.xf3_c00235{left:610.800000pt;}
.x115_c00235{left:612.266667pt;}
.xb9_c00235{left:613.200000pt;}
.x12d_c00235{left:614.800000pt;}
.x143_c00235{left:615.866667pt;}
.x120_c00235{left:617.466667pt;}
.x131_c00235{left:619.200000pt;}
.xcd_c00235{left:620.266667pt;}
.x14a_c00235{left:621.466667pt;}
.xc3_c00235{left:623.200000pt;}
.xd3_c00235{left:624.933333pt;}
.xba_c00235{left:626.933333pt;}
.xdd_c00235{left:628.133333pt;}
.xb1_c00235{left:630.933333pt;}
.x11d_c00235{left:631.866667pt;}
.x122_c00235{left:633.200000pt;}
.xd4_c00235{left:635.866667pt;}
.x134_c00235{left:637.733333pt;}
.x136_c00235{left:639.866667pt;}
.x123_c00235{left:641.466667pt;}
.xf4_c00235{left:643.066667pt;}
.x128_c00235{left:645.866667pt;}
.xe4_c00235{left:647.333333pt;}
.x148_c00235{left:648.400000pt;}
.xb2_c00235{left:650.133333pt;}
.x126_c00235{left:652.266667pt;}
.x109_c00235{left:654.133333pt;}
.x116_c00235{left:655.066667pt;}
.x12e_c00235{left:656.666667pt;}
.xde_c00235{left:657.866667pt;}
.x13c_c00235{left:659.200000pt;}
.x11e_c00235{left:661.600000pt;}
.xeb_c00235{left:664.666667pt;}
.x119_c00235{left:666.400000pt;}
.xac_c00235{left:668.133333pt;}
.x10f_c00235{left:670.133333pt;}
.xd7_c00235{left:671.866667pt;}
.xc9_c00235{left:673.866667pt;}
.xce_c00235{left:675.600000pt;}
.x13a_c00235{left:677.200000pt;}
.x121_c00235{left:678.666667pt;}
.xfb_c00235{left:680.666667pt;}
.xca_c00235{left:681.600000pt;}
.xcf_c00235{left:683.866667pt;}
.xb3_c00235{left:685.066667pt;}
.xe5_c00235{left:686.666667pt;}
.x110_c00235{left:687.733333pt;}
.x14f_c00235{left:688.933333pt;}
.xbb_c00235{left:690.933333pt;}
.x13d_c00235{left:691.866667pt;}
.xdf_c00235{left:695.600000pt;}
.xc4_c00235{left:696.533333pt;}
.xfc_c00235{left:700.133333pt;}
.xe6_c00235{left:702.666667pt;}
.x127_c00235{left:703.733333pt;}
.xbc_c00235{left:704.666667pt;}
.x124_c00235{left:705.733333pt;}
.xec_c00235{left:708.800000pt;}
.x129_c00235{left:709.866667pt;}
.xc5_c00235{left:710.933333pt;}
.xf5_c00235{left:713.466667pt;}
.xb4_c00235{left:715.466667pt;}
.x14b_c00235{left:718.400000pt;}
.xad_c00235{left:720.000000pt;}
.x12f_c00235{left:721.600000pt;}
.xd5_c00235{left:722.533333pt;}
.xff_c00235{left:723.600000pt;}
.xb5_c00235{left:724.800000pt;}
.xe0_c00235{left:725.733333pt;}
.xed_c00235{left:727.733333pt;}
.x11a_c00235{left:730.800000pt;}
.x144_c00235{left:732.000000pt;}
.xe7_c00235{left:734.666667pt;}
.xd0_c00235{left:737.600000pt;}
.x103_c00235{left:738.800000pt;}
.xe8_c00235{left:742.000000pt;}
.xe1_c00235{left:743.600000pt;}
.x150_c00235{left:744.666667pt;}
.x112_c00235{left:746.000000pt;}
.xfd_c00235{left:748.666667pt;}
.xd8_c00235{left:750.266667pt;}
.x132_c00235{left:752.666667pt;}
.x11f_c00235{left:753.866667pt;}
.x12a_c00235{left:754.933333pt;}
.x10a_c00235{left:756.533333pt;}
.x137_c00235{left:758.266667pt;}
.x135_c00235{left:759.600000pt;}
.xd1_c00235{left:760.933333pt;}
.x13f_c00235{left:762.533333pt;}
.xbd_c00235{left:765.733333pt;}
.x13e_c00235{left:769.600000pt;}
.x104_c00235{left:771.066667pt;}
.xf6_c00235{left:772.400000pt;}
.xbe_c00235{left:774.400000pt;}
.x139_c00235{left:775.866667pt;}
.x10b_c00235{left:778.266667pt;}
.x138_c00235{left:779.600000pt;}
.x141_c00235{left:797.733333pt;}
}





/* 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_c00236 {
    display:none;
  }
  .loading-indicator_c00236.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00236 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_c00236 { 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_c00236" -> "#page-container .classname_c00236")
 */
.pf_c00236 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00236 { /* 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_c00236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00236 { /* 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_c00236 { /* 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_c00236 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00236 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00236 {overflow:visible;}
  }
}
.c_c00236 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00236 { /* 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_c00236:after { /* webkit #35443 */
  content: '';
}
.t_c00236:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00236 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 */
}
.__c00236 { /* 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_c00236 { /* info for Javascript */
  display:none;
}
.l_c00236 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00236 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00236 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00236: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_c00236 {
    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_c00236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00236.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_c00236 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00236;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.000000;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;}
.me4_c00236{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.me6_c00236{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m114_c00236{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m115_c00236{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m110_c00236{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m105_c00236{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m111_c00236{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00236{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m20_c00236{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00236{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m112_c00236{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m106_c00236{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00236{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00236{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m108_c00236{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m45_c00236{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00236{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00236{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me1_c00236{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.maf_c00236{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00236{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.mba_c00236{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.me7_c00236{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m102_c00236{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00236{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00236{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m4_c00236{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00236{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m42_c00236{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00236{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m65_c00236{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00236{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00236{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9_c00236{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m8_c00236{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m103_c00236{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m41_c00236{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00236{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m21_c00236{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00236{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mab_c00236{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me3_c00236{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m51_c00236{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2_c00236{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m99_c00236{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00236{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00236{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00236{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00236{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00236{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m23_c00236{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00236{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m38_c00236{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00236{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m28_c00236{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m22_c00236{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00236{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00236{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00236{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00236{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00236{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00236{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00236{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m96_c00236{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me9_c00236{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m11_c00236{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mce_c00236{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00236{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m49_c00236{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00236{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00236{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m64_c00236{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00236{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6_c00236{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00236{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m89_c00236{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mff_c00236{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00236{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00236{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m33_c00236{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m44_c00236{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00236{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mee_c00236{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00236{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m116_c00236{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m80_c00236{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.me_c00236{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mca_c00236{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00236{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00236{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m58_c00236{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m91_c00236{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m14_c00236{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00236{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m95_c00236{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00236{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma_c00236{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00236{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00236{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00236{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md1_c00236{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m104_c00236{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m66_c00236{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m56_c00236{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m117_c00236{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00236{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m39_c00236{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00236{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md4_c00236{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m118_c00236{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00236{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00236{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mda_c00236{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00236{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00236{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.meb_c00236{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00236{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00236{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7_c00236{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md3_c00236{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mad_c00236{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m71_c00236{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m57_c00236{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00236{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m73_c00236{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mc_c00236{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00236{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00236{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m72_c00236{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00236{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00236{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m31_c00236{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00236{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m32_c00236{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00236{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00236{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m76_c00236{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5_c00236{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md6_c00236{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m75_c00236{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me2_c00236{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00236{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00236{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mec_c00236{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00236{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m40_c00236{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00236{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m81_c00236{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m55_c00236{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mae_c00236{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m84_c00236{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m74_c00236{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00236{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00236{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m54_c00236{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mef_c00236{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m94_c00236{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00236{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00236{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m26_c00236{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m27_c00236{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00236{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m82_c00236{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00236{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00236{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00236{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m70_c00236{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m37_c00236{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00236{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00236{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00236{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m69_c00236{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00236{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m24_c00236{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m18_c00236{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md9_c00236{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m92_c00236{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00236{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mea_c00236{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m25_c00236{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m50_c00236{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.maa_c00236{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00236{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md0_c00236{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mb_c00236{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00236{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m43_c00236{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m16_c00236{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m10_c00236{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m34_c00236{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00236{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m17_c00236{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m85_c00236{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me8_c00236{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.md5_c00236{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m36_c00236{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md2_c00236{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00236{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00236{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md8_c00236{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m46_c00236{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m60_c00236{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m47_c00236{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m19_c00236{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m83_c00236{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m86_c00236{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf_c00236{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00236{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m87_c00236{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m98_c00236{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m77_c00236{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m61_c00236{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.me0_c00236{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m101_c00236{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00236{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m13_c00236{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m78_c00236{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00236{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00236{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m62_c00236{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m88_c00236{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00236{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00236{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m53_c00236{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00236{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);}
.m67_c00236{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00236{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m59_c00236{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00236{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m63_c00236{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m79_c00236{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mac_c00236{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.med_c00236{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00236{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m93_c00236{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00236{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m30_c00236{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00236{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00236{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00236{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00236{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m12_c00236{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00236{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m97_c00236{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.md_c00236{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00236{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00236{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00236{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m52_c00236{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00236{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m100_c00236{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.md7_c00236{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me5_c00236{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m109_c00236{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00236{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00236{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00236{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m35_c00236{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00236{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mde_c00236{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00236{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m68_c00236{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00236{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m90_c00236{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m48_c00236{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m107_c00236{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00236{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00236{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m15_c00236{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m29_c00236{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m113_c00236{transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00236{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00236{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00236{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00236{transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00236{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00236{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c00236{transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00236{transform:matrix(0.773250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773250,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls1_c00236{letter-spacing:0.000000px;}
.ls0_c00236{letter-spacing:70.000000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{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__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00236{word-spacing:-100.000000px;}
.ws3_c00236{word-spacing:-8.804584px;}
.ws1_c00236{word-spacing:-7.500000px;}
.ws8_c00236{word-spacing:-7.280255px;}
.ws12_c00236{word-spacing:0.000000px;}
.ws5_c00236{word-spacing:0.458599px;}
.ws4_c00236{word-spacing:2.121019px;}
.ws0_c00236{word-spacing:2.844828px;}
.ws7_c00236{word-spacing:5.871060px;}
.ws6_c00236{word-spacing:7.055646px;}
.ws2_c00236{word-spacing:13.285714px;}
.ws11_c00236{word-spacing:22.142857px;}
.wsc_c00236{word-spacing:25.714286px;}
.wsd_c00236{word-spacing:32.250000px;}
.wsb_c00236{word-spacing:35.833333px;}
.wse_c00236{word-spacing:39.750000px;}
.ws10_c00236{word-spacing:40.000000px;}
.wsf_c00236{word-spacing:45.375000px;}
.ws9_c00236{word-spacing:149.375000px;}
._1_c00236{margin-left:-70.000000px;}
._0_c00236{width:33.428571px;}
._3_c00236{width:63.000000px;}
._2_c00236{width:80.416667px;}
._4_c00236{width:336.750000px;}
._5_c00236{width:380.416667px;}
.fc0_c00236{color:transparent;}
.fs6_c00236{font-size:24.000000px;}
.fs5_c00236{font-size:36.000000px;}
.fs4_c00236{font-size:54.000000px;}
.fs1_c00236{font-size:60.000000px;}
.fs3_c00236{font-size:66.000000px;}
.fs2_c00236{font-size:72.000000px;}
.fs0_c00236{font-size:78.000000px;}
.y0_c00236{bottom:0.000000px;}
.y68_c00236{bottom:180.000000px;}
.y33_c00236{bottom:181.950000px;}
.y32_c00236{bottom:196.650000px;}
.y67_c00236{bottom:198.000000px;}
.y31_c00236{bottom:212.100000px;}
.y66_c00236{bottom:216.000000px;}
.y30_c00236{bottom:236.100000px;}
.y65_c00236{bottom:241.950000px;}
.y2f_c00236{bottom:254.100000px;}
.y64_c00236{bottom:256.350000px;}
.y63_c00236{bottom:270.750000px;}
.y2e_c00236{bottom:272.400000px;}
.y62_c00236{bottom:285.450000px;}
.y2d_c00236{bottom:290.100000px;}
.y61_c00236{bottom:300.600000px;}
.y2c_c00236{bottom:313.500000px;}
.y5d_c00236{bottom:314.700000px;}
.y2b_c00236{bottom:330.900000px;}
.y60_c00236{bottom:339.150000px;}
.y5c_c00236{bottom:343.500000px;}
.y2a_c00236{bottom:349.200000px;}
.y5f_c00236{bottom:352.500000px;}
.y5e_c00236{bottom:353.100000px;}
.y5b_c00236{bottom:357.150000px;}
.y29_c00236{bottom:366.900000px;}
.y5a_c00236{bottom:371.850000px;}
.y28_c00236{bottom:385.200000px;}
.y59_c00236{bottom:386.550000px;}
.y58_c00236{bottom:400.650000px;}
.y27_c00236{bottom:406.800000px;}
.y57_c00236{bottom:425.550000px;}
.y26_c00236{bottom:438.450000px;}
.y56_c00236{bottom:443.550000px;}
.y25_c00236{bottom:456.450000px;}
.y55_c00236{bottom:461.850000px;}
.y24_c00236{bottom:478.800000px;}
.y54_c00236{bottom:479.850000px;}
.y23_c00236{bottom:496.800000px;}
.y53_c00236{bottom:497.850000px;}
.y52_c00236{bottom:515.550000px;}
.y22_c00236{bottom:523.800000px;}
.y21_c00236{bottom:541.500000px;}
.y51_c00236{bottom:541.650000px;}
.y20_c00236{bottom:559.650000px;}
.y50_c00236{bottom:560.400000px;}
.y1f_c00236{bottom:577.650000px;}
.y4f_c00236{bottom:578.400000px;}
.y1e_c00236{bottom:595.350000px;}
.y4e_c00236{bottom:596.400000px;}
.y1d_c00236{bottom:613.050000px;}
.y4d_c00236{bottom:614.100000px;}
.y4c_c00236{bottom:632.400000px;}
.y1c_c00236{bottom:635.400000px;}
.y4b_c00236{bottom:650.100000px;}
.y1b_c00236{bottom:653.400000px;}
.y4a_c00236{bottom:667.800000px;}
.y1a_c00236{bottom:671.400000px;}
.y49_c00236{bottom:685.800000px;}
.y19_c00236{bottom:689.400000px;}
.y48_c00236{bottom:703.050000px;}
.y18_c00236{bottom:707.400000px;}
.y17_c00236{bottom:727.950000px;}
.y47_c00236{bottom:729.300000px;}
.y16_c00236{bottom:742.350000px;}
.y46_c00236{bottom:759.900000px;}
.y15_c00236{bottom:762.450000px;}
.y45_c00236{bottom:778.650000px;}
.y14_c00236{bottom:780.150000px;}
.y13_c00236{bottom:798.150000px;}
.y44_c00236{bottom:810.300000px;}
.y12_c00236{bottom:820.050000px;}
.y43_c00236{bottom:837.000000px;}
.y11_c00236{bottom:838.050000px;}
.y42_c00236{bottom:855.000000px;}
.y10_c00236{bottom:856.050000px;}
.y41_c00236{bottom:873.000000px;}
.yf_c00236{bottom:873.750000px;}
.y40_c00236{bottom:898.200000px;}
.ye_c00236{bottom:900.300000px;}
.y3f_c00236{bottom:915.900000px;}
.yd_c00236{bottom:929.850000px;}
.y3e_c00236{bottom:933.750000px;}
.yc_c00236{bottom:947.850000px;}
.y3d_c00236{bottom:951.000000px;}
.yb_c00236{bottom:965.850000px;}
.y3c_c00236{bottom:969.000000px;}
.ya_c00236{bottom:983.550000px;}
.y3b_c00236{bottom:987.000000px;}
.y3a_c00236{bottom:1004.700000px;}
.y9_c00236{bottom:1005.900000px;}
.y39_c00236{bottom:1022.700000px;}
.y8_c00236{bottom:1023.900000px;}
.y38_c00236{bottom:1040.400000px;}
.y7_c00236{bottom:1041.450000px;}
.y37_c00236{bottom:1058.400000px;}
.y6_c00236{bottom:1059.150000px;}
.y36_c00236{bottom:1076.400000px;}
.y5_c00236{bottom:1077.150000px;}
.y35_c00236{bottom:1094.400000px;}
.y4_c00236{bottom:1095.150000px;}
.y34_c00236{bottom:1112.100000px;}
.y3_c00236{bottom:1113.150000px;}
.y2_c00236{bottom:1136.100000px;}
.y1_c00236{bottom:1139.400000px;}
.h8_c00236{height:24.000000px;}
.h7_c00236{height:36.000000px;}
.h6_c00236{height:54.000000px;}
.h3_c00236{height:60.000000px;}
.h5_c00236{height:66.000000px;}
.h4_c00236{height:72.000000px;}
.h2_c00236{height:78.000000px;}
.h1_c00236{height:1268.250000px;}
.h0_c00236{height:1268.279937px;}
.w1_c00236{width:963.000000px;}
.w0_c00236{width:963.359985px;}
.x0_c00236{left:0.000000px;}
.x9c_c00236{left:87.450000px;}
.x53_c00236{left:88.500000px;}
.x2c_c00236{left:89.700000px;}
.x9e_c00236{left:96.750000px;}
.x63_c00236{left:103.800000px;}
.x3_c00236{left:105.450000px;}
.x1d_c00236{left:106.500000px;}
.x49_c00236{left:107.850000px;}
.xa2_c00236{left:117.900000px;}
.x88_c00236{left:119.100000px;}
.x4_c00236{left:126.000000px;}
.x36_c00236{left:128.550000px;}
.x1e_c00236{left:130.950000px;}
.x8c_c00236{left:132.150000px;}
.xc_c00236{left:133.650000px;}
.x98_c00236{left:135.000000px;}
.x91_c00236{left:136.500000px;}
.x13_c00236{left:137.700000px;}
.x1f_c00236{left:140.250000px;}
.x50_c00236{left:142.050000px;}
.x42_c00236{left:144.150000px;}
.x4a_c00236{left:145.650000px;}
.x26_c00236{left:146.850000px;}
.x5d_c00236{left:149.400000px;}
.x85_c00236{left:152.250000px;}
.x68_c00236{left:153.600000px;}
.x73_c00236{left:155.400000px;}
.x81_c00236{left:158.400000px;}
.x2d_c00236{left:159.600000px;}
.x20_c00236{left:161.100000px;}
.x8f_c00236{left:162.150000px;}
.x43_c00236{left:163.200000px;}
.x4b_c00236{left:166.200000px;}
.x74_c00236{left:168.000000px;}
.x27_c00236{left:169.500000px;}
.xd_c00236{left:171.150000px;}
.x79_c00236{left:172.350000px;}
.x5e_c00236{left:173.850000px;}
.x64_c00236{left:176.550000px;}
.x77_c00236{left:177.900000px;}
.x89_c00236{left:179.100000px;}
.x5a_c00236{left:180.300000px;}
.x99_c00236{left:182.850000px;}
.x44_c00236{left:186.600000px;}
.x7b_c00236{left:188.400000px;}
.x3c_c00236{left:189.750000px;}
.x8a_c00236{left:191.100000px;}
.x32_c00236{left:194.400000px;}
.x5_c00236{left:195.900000px;}
.x2e_c00236{left:197.700000px;}
.x5b_c00236{left:199.050000px;}
.x5f_c00236{left:200.550000px;}
.x54_c00236{left:201.900000px;}
.x14_c00236{left:205.800000px;}
.x4c_c00236{left:208.350000px;}
.x69_c00236{left:211.200000px;}
.x6_c00236{left:213.600000px;}
.x3d_c00236{left:216.450000px;}
.x45_c00236{left:219.000000px;}
.x3a_c00236{left:220.350000px;}
.x78_c00236{left:222.600000px;}
.x18_c00236{left:224.400000px;}
.x57_c00236{left:228.150000px;}
.x95_c00236{left:229.800000px;}
.xe_c00236{left:231.600000px;}
.x21_c00236{left:233.550000px;}
.x9f_c00236{left:235.500000px;}
.x2f_c00236{left:239.850000px;}
.x65_c00236{left:241.050000px;}
.x96_c00236{left:244.500000px;}
.x3e_c00236{left:246.000000px;}
.x6a_c00236{left:247.950000px;}
.x7_c00236{left:249.600000px;}
.x19_c00236{left:251.100000px;}
.x75_c00236{left:252.900000px;}
.x66_c00236{left:254.100000px;}
.xf_c00236{left:255.300000px;}
.x46_c00236{left:256.800000px;}
.x5c_c00236{left:259.200000px;}
.x60_c00236{left:261.150000px;}
.x37_c00236{left:263.250000px;}
.x7c_c00236{left:266.850000px;}
.x6b_c00236{left:268.800000px;}
.x7a_c00236{left:270.150000px;}
.x4d_c00236{left:273.450000px;}
.x6f_c00236{left:274.650000px;}
.x8_c00236{left:276.900000px;}
.x58_c00236{left:279.300000px;}
.x80_c00236{left:280.800000px;}
.x33_c00236{left:281.850000px;}
.x7d_c00236{left:284.550000px;}
.x10_c00236{left:285.600000px;}
.x51_c00236{left:287.550000px;}
.x86_c00236{left:289.650000px;}
.x70_c00236{left:291.150000px;}
.x1a_c00236{left:293.250000px;}
.x28_c00236{left:295.350000px;}
.x94_c00236{left:296.550000px;}
.x15_c00236{left:297.900000px;}
.x22_c00236{left:299.100000px;}
.x59_c00236{left:300.600000px;}
.x61_c00236{left:302.550000px;}
.x3f_c00236{left:303.600000px;}
.x23_c00236{left:306.000000px;}
.x7e_c00236{left:307.200000px;}
.x90_c00236{left:309.000000px;}
.x4e_c00236{left:311.250000px;}
.x93_c00236{left:314.250000px;}
.x55_c00236{left:315.300000px;}
.x71_c00236{left:317.850000px;}
.x16_c00236{left:319.800000px;}
.x87_c00236{left:321.750000px;}
.x6c_c00236{left:323.550000px;}
.x29_c00236{left:325.200000px;}
.x9_c00236{left:327.300000px;}
.x1_c00236{left:328.350000px;}
.x52_c00236{left:329.400000px;}
.x8d_c00236{left:330.600000px;}
.x4f_c00236{left:331.800000px;}
.x3b_c00236{left:334.500000px;}
.x24_c00236{left:335.550000px;}
.x82_c00236{left:337.350000px;}
.x92_c00236{left:339.450000px;}
.x30_c00236{left:342.750000px;}
.x11_c00236{left:345.000000px;}
.xa_c00236{left:346.050000px;}
.x8b_c00236{left:347.250000px;}
.x47_c00236{left:349.050000px;}
.x67_c00236{left:351.300000px;}
.x9a_c00236{left:353.100000px;}
.x12_c00236{left:356.550000px;}
.xa0_c00236{left:357.600000px;}
.x2a_c00236{left:360.150000px;}
.x38_c00236{left:362.250000px;}
.x31_c00236{left:363.300000px;}
.x34_c00236{left:365.400000px;}
.x83_c00236{left:368.250000px;}
.xb_c00236{left:369.750000px;}
.x17_c00236{left:370.950000px;}
.x40_c00236{left:373.500000px;}
.x9d_c00236{left:375.750000px;}
.x1b_c00236{left:376.800000px;}
.x9b_c00236{left:380.850000px;}
.x6d_c00236{left:382.200000px;}
.xa1_c00236{left:385.350000px;}
.x2b_c00236{left:387.150000px;}
.x8e_c00236{left:390.300000px;}
.x84_c00236{left:392.550000px;}
.x62_c00236{left:395.400000px;}
.x39_c00236{left:396.750000px;}
.x76_c00236{left:399.300000px;}
.x1c_c00236{left:400.950000px;}
.x72_c00236{left:404.550000px;}
.x48_c00236{left:406.650000px;}
.x7f_c00236{left:408.900000px;}
.x6e_c00236{left:409.950000px;}
.x25_c00236{left:411.450000px;}
.x56_c00236{left:412.800000px;}
.x35_c00236{left:414.750000px;}
.x97_c00236{left:416.550000px;}
.x41_c00236{left:422.400000px;}
.xa3_c00236{left:446.100000px;}
.x103_c00236{left:447.900000px;}
.x132_c00236{left:460.500000px;}
.x13c_c00236{left:461.550000px;}
.x118_c00236{left:462.600000px;}
.xab_c00236{left:464.250000px;}
.x14b_c00236{left:465.300000px;}
.x106_c00236{left:471.900000px;}
.x138_c00236{left:474.900000px;}
.x148_c00236{left:476.100000px;}
.x133_c00236{left:478.200000px;}
.x140_c00236{left:479.850000px;}
.x107_c00236{left:482.700000px;}
.x125_c00236{left:486.000000px;}
.xb1_c00236{left:487.050000px;}
.x104_c00236{left:489.600000px;}
.x11d_c00236{left:491.250000px;}
.x14e_c00236{left:492.300000px;}
.xe3_c00236{left:493.950000px;}
.xff_c00236{left:499.350000px;}
.x12f_c00236{left:500.850000px;}
.xda_c00236{left:502.050000px;}
.xdf_c00236{left:503.250000px;}
.xe8_c00236{left:504.450000px;}
.xd5_c00236{left:505.650000px;}
.xc8_c00236{left:506.700000px;}
.xed_c00236{left:508.950000px;}
.xf4_c00236{left:510.300000px;}
.xb2_c00236{left:514.350000px;}
.xd6_c00236{left:515.400000px;}
.x14c_c00236{left:516.450000px;}
.x11a_c00236{left:518.400000px;}
.x119_c00236{left:519.900000px;}
.xc2_c00236{left:524.100000px;}
.xac_c00236{left:526.200000px;}
.xe4_c00236{left:528.900000px;}
.x141_c00236{left:531.000000px;}
.xa4_c00236{left:533.250000px;}
.xe9_c00236{left:534.300000px;}
.x10c_c00236{left:536.400000px;}
.x135_c00236{left:537.600000px;}
.x145_c00236{left:539.550000px;}
.x100_c00236{left:541.050000px;}
.x142_c00236{left:542.550000px;}
.xfd_c00236{left:543.900000px;}
.xb3_c00236{left:546.450000px;}
.xee_c00236{left:547.800000px;}
.xad_c00236{left:549.300000px;}
.xfb_c00236{left:550.800000px;}
.xc3_c00236{left:552.150000px;}
.x112_c00236{left:553.500000px;}
.x126_c00236{left:555.000000px;}
.xdb_c00236{left:556.800000px;}
.xef_c00236{left:558.600000px;}
.xce_c00236{left:560.100000px;}
.x102_c00236{left:563.100000px;}
.xe0_c00236{left:564.750000px;}
.x110_c00236{left:566.550000px;}
.x121_c00236{left:567.750000px;}
.xea_c00236{left:568.800000px;}
.xa5_c00236{left:570.000000px;}
.x115_c00236{left:572.400000px;}
.x108_c00236{left:573.450000px;}
.xc9_c00236{left:574.650000px;}
.x147_c00236{left:575.850000px;}
.x105_c00236{left:577.200000px;}
.xf5_c00236{left:578.400000px;}
.xcf_c00236{left:579.900000px;}
.xe1_c00236{left:581.700000px;}
.x12b_c00236{left:583.650000px;}
.xe5_c00236{left:584.700000px;}
.x11e_c00236{left:586.200000px;}
.x136_c00236{left:587.700000px;}
.x113_c00236{left:589.050000px;}
.xeb_c00236{left:590.100000px;}
.xba_c00236{left:591.300000px;}
.xc4_c00236{left:592.800000px;}
.xf0_c00236{left:594.600000px;}
.x127_c00236{left:595.650000px;}
.x139_c00236{left:597.000000px;}
.xbf_c00236{left:598.950000px;}
.x13d_c00236{left:600.000000px;}
.xc5_c00236{left:601.500000px;}
.xfc_c00236{left:602.700000px;}
.x116_c00236{left:603.750000px;}
.x146_c00236{left:605.700000px;}
.xf6_c00236{left:607.500000px;}
.xa6_c00236{left:608.850000px;}
.x109_c00236{left:610.950000px;}
.x10d_c00236{left:612.450000px;}
.x128_c00236{left:614.850000px;}
.x143_c00236{left:615.900000px;}
.xbb_c00236{left:619.050000px;}
.xb4_c00236{left:621.750000px;}
.xd0_c00236{left:622.800000px;}
.xec_c00236{left:626.400000px;}
.xa7_c00236{left:631.200000px;}
.xe2_c00236{left:633.900000px;}
.xdc_c00236{left:635.250000px;}
.x13e_c00236{left:637.500000px;}
.xca_c00236{left:639.150000px;}
.x13a_c00236{left:641.100000px;}
.xd1_c00236{left:642.900000px;}
.xae_c00236{left:644.400000px;}
.x10e_c00236{left:645.600000px;}
.xf7_c00236{left:647.400000px;}
.xe6_c00236{left:648.450000px;}
.x149_c00236{left:652.950000px;}
.x134_c00236{left:654.600000px;}
.xb5_c00236{left:655.650000px;}
.xd7_c00236{left:658.350000px;}
.xcb_c00236{left:660.000000px;}
.xc6_c00236{left:663.000000px;}
.xaf_c00236{left:664.500000px;}
.x11f_c00236{left:666.450000px;}
.xd2_c00236{left:669.150000px;}
.xf1_c00236{left:670.950000px;}
.x14a_c00236{left:672.000000px;}
.xa8_c00236{left:673.350000px;}
.xb6_c00236{left:674.400000px;}
.xf8_c00236{left:677.250000px;}
.x122_c00236{left:678.600000px;}
.xd8_c00236{left:679.950000px;}
.xfe_c00236{left:681.000000px;}
.x117_c00236{left:682.650000px;}
.x12e_c00236{left:684.900000px;}
.x10a_c00236{left:688.350000px;}
.xc0_c00236{left:689.700000px;}
.x114_c00236{left:693.150000px;}
.xcc_c00236{left:694.500000px;}
.xbc_c00236{left:696.150000px;}
.x11b_c00236{left:698.400000px;}
.xd3_c00236{left:699.450000px;}
.xf2_c00236{left:700.800000px;}
.x130_c00236{left:702.450000px;}
.xc7_c00236{left:703.650000px;}
.xa9_c00236{left:705.000000px;}
.xf9_c00236{left:711.150000px;}
.x120_c00236{left:712.200000px;}
.x13b_c00236{left:713.700000px;}
.xcd_c00236{left:715.350000px;}
.x123_c00236{left:717.900000px;}
.x129_c00236{left:721.050000px;}
.xb7_c00236{left:722.700000px;}
.xaa_c00236{left:724.500000px;}
.xbd_c00236{left:726.450000px;}
.x12c_c00236{left:728.100000px;}
.x14d_c00236{left:730.650000px;}
.x12d_c00236{left:731.850000px;}
.x12a_c00236{left:733.650000px;}
.x101_c00236{left:735.600000px;}
.xd4_c00236{left:738.000000px;}
.x144_c00236{left:740.100000px;}
.xb8_c00236{left:741.450000px;}
.x13f_c00236{left:742.650000px;}
.xd9_c00236{left:744.000000px;}
.xdd_c00236{left:746.550000px;}
.xbe_c00236{left:747.750000px;}
.xb0_c00236{left:749.850000px;}
.x2_c00236{left:752.100000px;}
.x124_c00236{left:753.150000px;}
.xe7_c00236{left:757.500000px;}
.xf3_c00236{left:760.950000px;}
.x111_c00236{left:762.600000px;}
.xde_c00236{left:763.800000px;}
.xb9_c00236{left:765.900000px;}
.x131_c00236{left:767.550000px;}
.x137_c00236{left:769.350000px;}
.xc1_c00236{left:770.700000px;}
.xfa_c00236{left:772.050000px;}
.x11c_c00236{left:773.250000px;}
.x10f_c00236{left:778.200000px;}
.x10b_c00236{left:792.750000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls1_c00236{letter-spacing:0.000000pt;}
.ls0_c00236{letter-spacing:62.222222pt;}
.wsa_c00236{word-spacing:-88.888889pt;}
.ws3_c00236{word-spacing:-7.826297pt;}
.ws1_c00236{word-spacing:-6.666667pt;}
.ws8_c00236{word-spacing:-6.471338pt;}
.ws12_c00236{word-spacing:0.000000pt;}
.ws5_c00236{word-spacing:0.407643pt;}
.ws4_c00236{word-spacing:1.885350pt;}
.ws0_c00236{word-spacing:2.528736pt;}
.ws7_c00236{word-spacing:5.218720pt;}
.ws6_c00236{word-spacing:6.271686pt;}
.ws2_c00236{word-spacing:11.809524pt;}
.ws11_c00236{word-spacing:19.682540pt;}
.wsc_c00236{word-spacing:22.857143pt;}
.wsd_c00236{word-spacing:28.666667pt;}
.wsb_c00236{word-spacing:31.851852pt;}
.wse_c00236{word-spacing:35.333333pt;}
.ws10_c00236{word-spacing:35.555556pt;}
.wsf_c00236{word-spacing:40.333333pt;}
.ws9_c00236{word-spacing:132.777778pt;}
._1_c00236{margin-left:-62.222222pt;}
._0_c00236{width:29.714286pt;}
._3_c00236{width:56.000000pt;}
._2_c00236{width:71.481481pt;}
._4_c00236{width:299.333333pt;}
._5_c00236{width:338.148148pt;}
.fs6_c00236{font-size:21.333333pt;}
.fs5_c00236{font-size:32.000000pt;}
.fs4_c00236{font-size:48.000000pt;}
.fs1_c00236{font-size:53.333333pt;}
.fs3_c00236{font-size:58.666667pt;}
.fs2_c00236{font-size:64.000000pt;}
.fs0_c00236{font-size:69.333333pt;}
.y0_c00236{bottom:0.000000pt;}
.y68_c00236{bottom:160.000000pt;}
.y33_c00236{bottom:161.733333pt;}
.y32_c00236{bottom:174.800000pt;}
.y67_c00236{bottom:176.000000pt;}
.y31_c00236{bottom:188.533333pt;}
.y66_c00236{bottom:192.000000pt;}
.y30_c00236{bottom:209.866667pt;}
.y65_c00236{bottom:215.066667pt;}
.y2f_c00236{bottom:225.866667pt;}
.y64_c00236{bottom:227.866667pt;}
.y63_c00236{bottom:240.666667pt;}
.y2e_c00236{bottom:242.133333pt;}
.y62_c00236{bottom:253.733333pt;}
.y2d_c00236{bottom:257.866667pt;}
.y61_c00236{bottom:267.200000pt;}
.y2c_c00236{bottom:278.666667pt;}
.y5d_c00236{bottom:279.733333pt;}
.y2b_c00236{bottom:294.133333pt;}
.y60_c00236{bottom:301.466667pt;}
.y5c_c00236{bottom:305.333333pt;}
.y2a_c00236{bottom:310.400000pt;}
.y5f_c00236{bottom:313.333333pt;}
.y5e_c00236{bottom:313.866667pt;}
.y5b_c00236{bottom:317.466667pt;}
.y29_c00236{bottom:326.133333pt;}
.y5a_c00236{bottom:330.533333pt;}
.y28_c00236{bottom:342.400000pt;}
.y59_c00236{bottom:343.600000pt;}
.y58_c00236{bottom:356.133333pt;}
.y27_c00236{bottom:361.600000pt;}
.y57_c00236{bottom:378.266667pt;}
.y26_c00236{bottom:389.733333pt;}
.y56_c00236{bottom:394.266667pt;}
.y25_c00236{bottom:405.733333pt;}
.y55_c00236{bottom:410.533333pt;}
.y24_c00236{bottom:425.600000pt;}
.y54_c00236{bottom:426.533333pt;}
.y23_c00236{bottom:441.600000pt;}
.y53_c00236{bottom:442.533333pt;}
.y52_c00236{bottom:458.266667pt;}
.y22_c00236{bottom:465.600000pt;}
.y21_c00236{bottom:481.333333pt;}
.y51_c00236{bottom:481.466667pt;}
.y20_c00236{bottom:497.466667pt;}
.y50_c00236{bottom:498.133333pt;}
.y1f_c00236{bottom:513.466667pt;}
.y4f_c00236{bottom:514.133333pt;}
.y1e_c00236{bottom:529.200000pt;}
.y4e_c00236{bottom:530.133333pt;}
.y1d_c00236{bottom:544.933333pt;}
.y4d_c00236{bottom:545.866667pt;}
.y4c_c00236{bottom:562.133333pt;}
.y1c_c00236{bottom:564.800000pt;}
.y4b_c00236{bottom:577.866667pt;}
.y1b_c00236{bottom:580.800000pt;}
.y4a_c00236{bottom:593.600000pt;}
.y1a_c00236{bottom:596.800000pt;}
.y49_c00236{bottom:609.600000pt;}
.y19_c00236{bottom:612.800000pt;}
.y48_c00236{bottom:624.933333pt;}
.y18_c00236{bottom:628.800000pt;}
.y17_c00236{bottom:647.066667pt;}
.y47_c00236{bottom:648.266667pt;}
.y16_c00236{bottom:659.866667pt;}
.y46_c00236{bottom:675.466667pt;}
.y15_c00236{bottom:677.733333pt;}
.y45_c00236{bottom:692.133333pt;}
.y14_c00236{bottom:693.466667pt;}
.y13_c00236{bottom:709.466667pt;}
.y44_c00236{bottom:720.266667pt;}
.y12_c00236{bottom:728.933333pt;}
.y43_c00236{bottom:744.000000pt;}
.y11_c00236{bottom:744.933333pt;}
.y42_c00236{bottom:760.000000pt;}
.y10_c00236{bottom:760.933333pt;}
.y41_c00236{bottom:776.000000pt;}
.yf_c00236{bottom:776.666667pt;}
.y40_c00236{bottom:798.400000pt;}
.ye_c00236{bottom:800.266667pt;}
.y3f_c00236{bottom:814.133333pt;}
.yd_c00236{bottom:826.533333pt;}
.y3e_c00236{bottom:830.000000pt;}
.yc_c00236{bottom:842.533333pt;}
.y3d_c00236{bottom:845.333333pt;}
.yb_c00236{bottom:858.533333pt;}
.y3c_c00236{bottom:861.333333pt;}
.ya_c00236{bottom:874.266667pt;}
.y3b_c00236{bottom:877.333333pt;}
.y3a_c00236{bottom:893.066667pt;}
.y9_c00236{bottom:894.133333pt;}
.y39_c00236{bottom:909.066667pt;}
.y8_c00236{bottom:910.133333pt;}
.y38_c00236{bottom:924.800000pt;}
.y7_c00236{bottom:925.733333pt;}
.y37_c00236{bottom:940.800000pt;}
.y6_c00236{bottom:941.466667pt;}
.y36_c00236{bottom:956.800000pt;}
.y5_c00236{bottom:957.466667pt;}
.y35_c00236{bottom:972.800000pt;}
.y4_c00236{bottom:973.466667pt;}
.y34_c00236{bottom:988.533333pt;}
.y3_c00236{bottom:989.466667pt;}
.y2_c00236{bottom:1009.866667pt;}
.y1_c00236{bottom:1012.800000pt;}
.h8_c00236{height:21.333333pt;}
.h7_c00236{height:32.000000pt;}
.h6_c00236{height:48.000000pt;}
.h3_c00236{height:53.333333pt;}
.h5_c00236{height:58.666667pt;}
.h4_c00236{height:64.000000pt;}
.h2_c00236{height:69.333333pt;}
.h1_c00236{height:1127.333333pt;}
.h0_c00236{height:1127.359944pt;}
.w1_c00236{width:856.000000pt;}
.w0_c00236{width:856.319987pt;}
.x0_c00236{left:0.000000pt;}
.x9c_c00236{left:77.733333pt;}
.x53_c00236{left:78.666667pt;}
.x2c_c00236{left:79.733333pt;}
.x9e_c00236{left:86.000000pt;}
.x63_c00236{left:92.266667pt;}
.x3_c00236{left:93.733333pt;}
.x1d_c00236{left:94.666667pt;}
.x49_c00236{left:95.866667pt;}
.xa2_c00236{left:104.800000pt;}
.x88_c00236{left:105.866667pt;}
.x4_c00236{left:112.000000pt;}
.x36_c00236{left:114.266667pt;}
.x1e_c00236{left:116.400000pt;}
.x8c_c00236{left:117.466667pt;}
.xc_c00236{left:118.800000pt;}
.x98_c00236{left:120.000000pt;}
.x91_c00236{left:121.333333pt;}
.x13_c00236{left:122.400000pt;}
.x1f_c00236{left:124.666667pt;}
.x50_c00236{left:126.266667pt;}
.x42_c00236{left:128.133333pt;}
.x4a_c00236{left:129.466667pt;}
.x26_c00236{left:130.533333pt;}
.x5d_c00236{left:132.800000pt;}
.x85_c00236{left:135.333333pt;}
.x68_c00236{left:136.533333pt;}
.x73_c00236{left:138.133333pt;}
.x81_c00236{left:140.800000pt;}
.x2d_c00236{left:141.866667pt;}
.x20_c00236{left:143.200000pt;}
.x8f_c00236{left:144.133333pt;}
.x43_c00236{left:145.066667pt;}
.x4b_c00236{left:147.733333pt;}
.x74_c00236{left:149.333333pt;}
.x27_c00236{left:150.666667pt;}
.xd_c00236{left:152.133333pt;}
.x79_c00236{left:153.200000pt;}
.x5e_c00236{left:154.533333pt;}
.x64_c00236{left:156.933333pt;}
.x77_c00236{left:158.133333pt;}
.x89_c00236{left:159.200000pt;}
.x5a_c00236{left:160.266667pt;}
.x99_c00236{left:162.533333pt;}
.x44_c00236{left:165.866667pt;}
.x7b_c00236{left:167.466667pt;}
.x3c_c00236{left:168.666667pt;}
.x8a_c00236{left:169.866667pt;}
.x32_c00236{left:172.800000pt;}
.x5_c00236{left:174.133333pt;}
.x2e_c00236{left:175.733333pt;}
.x5b_c00236{left:176.933333pt;}
.x5f_c00236{left:178.266667pt;}
.x54_c00236{left:179.466667pt;}
.x14_c00236{left:182.933333pt;}
.x4c_c00236{left:185.200000pt;}
.x69_c00236{left:187.733333pt;}
.x6_c00236{left:189.866667pt;}
.x3d_c00236{left:192.400000pt;}
.x45_c00236{left:194.666667pt;}
.x3a_c00236{left:195.866667pt;}
.x78_c00236{left:197.866667pt;}
.x18_c00236{left:199.466667pt;}
.x57_c00236{left:202.800000pt;}
.x95_c00236{left:204.266667pt;}
.xe_c00236{left:205.866667pt;}
.x21_c00236{left:207.600000pt;}
.x9f_c00236{left:209.333333pt;}
.x2f_c00236{left:213.200000pt;}
.x65_c00236{left:214.266667pt;}
.x96_c00236{left:217.333333pt;}
.x3e_c00236{left:218.666667pt;}
.x6a_c00236{left:220.400000pt;}
.x7_c00236{left:221.866667pt;}
.x19_c00236{left:223.200000pt;}
.x75_c00236{left:224.800000pt;}
.x66_c00236{left:225.866667pt;}
.xf_c00236{left:226.933333pt;}
.x46_c00236{left:228.266667pt;}
.x5c_c00236{left:230.400000pt;}
.x60_c00236{left:232.133333pt;}
.x37_c00236{left:234.000000pt;}
.x7c_c00236{left:237.200000pt;}
.x6b_c00236{left:238.933333pt;}
.x7a_c00236{left:240.133333pt;}
.x4d_c00236{left:243.066667pt;}
.x6f_c00236{left:244.133333pt;}
.x8_c00236{left:246.133333pt;}
.x58_c00236{left:248.266667pt;}
.x80_c00236{left:249.600000pt;}
.x33_c00236{left:250.533333pt;}
.x7d_c00236{left:252.933333pt;}
.x10_c00236{left:253.866667pt;}
.x51_c00236{left:255.600000pt;}
.x86_c00236{left:257.466667pt;}
.x70_c00236{left:258.800000pt;}
.x1a_c00236{left:260.666667pt;}
.x28_c00236{left:262.533333pt;}
.x94_c00236{left:263.600000pt;}
.x15_c00236{left:264.800000pt;}
.x22_c00236{left:265.866667pt;}
.x59_c00236{left:267.200000pt;}
.x61_c00236{left:268.933333pt;}
.x3f_c00236{left:269.866667pt;}
.x23_c00236{left:272.000000pt;}
.x7e_c00236{left:273.066667pt;}
.x90_c00236{left:274.666667pt;}
.x4e_c00236{left:276.666667pt;}
.x93_c00236{left:279.333333pt;}
.x55_c00236{left:280.266667pt;}
.x71_c00236{left:282.533333pt;}
.x16_c00236{left:284.266667pt;}
.x87_c00236{left:286.000000pt;}
.x6c_c00236{left:287.600000pt;}
.x29_c00236{left:289.066667pt;}
.x9_c00236{left:290.933333pt;}
.x1_c00236{left:291.866667pt;}
.x52_c00236{left:292.800000pt;}
.x8d_c00236{left:293.866667pt;}
.x4f_c00236{left:294.933333pt;}
.x3b_c00236{left:297.333333pt;}
.x24_c00236{left:298.266667pt;}
.x82_c00236{left:299.866667pt;}
.x92_c00236{left:301.733333pt;}
.x30_c00236{left:304.666667pt;}
.x11_c00236{left:306.666667pt;}
.xa_c00236{left:307.600000pt;}
.x8b_c00236{left:308.666667pt;}
.x47_c00236{left:310.266667pt;}
.x67_c00236{left:312.266667pt;}
.x9a_c00236{left:313.866667pt;}
.x12_c00236{left:316.933333pt;}
.xa0_c00236{left:317.866667pt;}
.x2a_c00236{left:320.133333pt;}
.x38_c00236{left:322.000000pt;}
.x31_c00236{left:322.933333pt;}
.x34_c00236{left:324.800000pt;}
.x83_c00236{left:327.333333pt;}
.xb_c00236{left:328.666667pt;}
.x17_c00236{left:329.733333pt;}
.x40_c00236{left:332.000000pt;}
.x9d_c00236{left:334.000000pt;}
.x1b_c00236{left:334.933333pt;}
.x9b_c00236{left:338.533333pt;}
.x6d_c00236{left:339.733333pt;}
.xa1_c00236{left:342.533333pt;}
.x2b_c00236{left:344.133333pt;}
.x8e_c00236{left:346.933333pt;}
.x84_c00236{left:348.933333pt;}
.x62_c00236{left:351.466667pt;}
.x39_c00236{left:352.666667pt;}
.x76_c00236{left:354.933333pt;}
.x1c_c00236{left:356.400000pt;}
.x72_c00236{left:359.600000pt;}
.x48_c00236{left:361.466667pt;}
.x7f_c00236{left:363.466667pt;}
.x6e_c00236{left:364.400000pt;}
.x25_c00236{left:365.733333pt;}
.x56_c00236{left:366.933333pt;}
.x35_c00236{left:368.666667pt;}
.x97_c00236{left:370.266667pt;}
.x41_c00236{left:375.466667pt;}
.xa3_c00236{left:396.533333pt;}
.x103_c00236{left:398.133333pt;}
.x132_c00236{left:409.333333pt;}
.x13c_c00236{left:410.266667pt;}
.x118_c00236{left:411.200000pt;}
.xab_c00236{left:412.666667pt;}
.x14b_c00236{left:413.600000pt;}
.x106_c00236{left:419.466667pt;}
.x138_c00236{left:422.133333pt;}
.x148_c00236{left:423.200000pt;}
.x133_c00236{left:425.066667pt;}
.x140_c00236{left:426.533333pt;}
.x107_c00236{left:429.066667pt;}
.x125_c00236{left:432.000000pt;}
.xb1_c00236{left:432.933333pt;}
.x104_c00236{left:435.200000pt;}
.x11d_c00236{left:436.666667pt;}
.x14e_c00236{left:437.600000pt;}
.xe3_c00236{left:439.066667pt;}
.xff_c00236{left:443.866667pt;}
.x12f_c00236{left:445.200000pt;}
.xda_c00236{left:446.266667pt;}
.xdf_c00236{left:447.333333pt;}
.xe8_c00236{left:448.400000pt;}
.xd5_c00236{left:449.466667pt;}
.xc8_c00236{left:450.400000pt;}
.xed_c00236{left:452.400000pt;}
.xf4_c00236{left:453.600000pt;}
.xb2_c00236{left:457.200000pt;}
.xd6_c00236{left:458.133333pt;}
.x14c_c00236{left:459.066667pt;}
.x11a_c00236{left:460.800000pt;}
.x119_c00236{left:462.133333pt;}
.xc2_c00236{left:465.866667pt;}
.xac_c00236{left:467.733333pt;}
.xe4_c00236{left:470.133333pt;}
.x141_c00236{left:472.000000pt;}
.xa4_c00236{left:474.000000pt;}
.xe9_c00236{left:474.933333pt;}
.x10c_c00236{left:476.800000pt;}
.x135_c00236{left:477.866667pt;}
.x145_c00236{left:479.600000pt;}
.x100_c00236{left:480.933333pt;}
.x142_c00236{left:482.266667pt;}
.xfd_c00236{left:483.466667pt;}
.xb3_c00236{left:485.733333pt;}
.xee_c00236{left:486.933333pt;}
.xad_c00236{left:488.266667pt;}
.xfb_c00236{left:489.600000pt;}
.xc3_c00236{left:490.800000pt;}
.x112_c00236{left:492.000000pt;}
.x126_c00236{left:493.333333pt;}
.xdb_c00236{left:494.933333pt;}
.xef_c00236{left:496.533333pt;}
.xce_c00236{left:497.866667pt;}
.x102_c00236{left:500.533333pt;}
.xe0_c00236{left:502.000000pt;}
.x110_c00236{left:503.600000pt;}
.x121_c00236{left:504.666667pt;}
.xea_c00236{left:505.600000pt;}
.xa5_c00236{left:506.666667pt;}
.x115_c00236{left:508.800000pt;}
.x108_c00236{left:509.733333pt;}
.xc9_c00236{left:510.800000pt;}
.x147_c00236{left:511.866667pt;}
.x105_c00236{left:513.066667pt;}
.xf5_c00236{left:514.133333pt;}
.xcf_c00236{left:515.466667pt;}
.xe1_c00236{left:517.066667pt;}
.x12b_c00236{left:518.800000pt;}
.xe5_c00236{left:519.733333pt;}
.x11e_c00236{left:521.066667pt;}
.x136_c00236{left:522.400000pt;}
.x113_c00236{left:523.600000pt;}
.xeb_c00236{left:524.533333pt;}
.xba_c00236{left:525.600000pt;}
.xc4_c00236{left:526.933333pt;}
.xf0_c00236{left:528.533333pt;}
.x127_c00236{left:529.466667pt;}
.x139_c00236{left:530.666667pt;}
.xbf_c00236{left:532.400000pt;}
.x13d_c00236{left:533.333333pt;}
.xc5_c00236{left:534.666667pt;}
.xfc_c00236{left:535.733333pt;}
.x116_c00236{left:536.666667pt;}
.x146_c00236{left:538.400000pt;}
.xf6_c00236{left:540.000000pt;}
.xa6_c00236{left:541.200000pt;}
.x109_c00236{left:543.066667pt;}
.x10d_c00236{left:544.400000pt;}
.x128_c00236{left:546.533333pt;}
.x143_c00236{left:547.466667pt;}
.xbb_c00236{left:550.266667pt;}
.xb4_c00236{left:552.666667pt;}
.xd0_c00236{left:553.600000pt;}
.xec_c00236{left:556.800000pt;}
.xa7_c00236{left:561.066667pt;}
.xe2_c00236{left:563.466667pt;}
.xdc_c00236{left:564.666667pt;}
.x13e_c00236{left:566.666667pt;}
.xca_c00236{left:568.133333pt;}
.x13a_c00236{left:569.866667pt;}
.xd1_c00236{left:571.466667pt;}
.xae_c00236{left:572.800000pt;}
.x10e_c00236{left:573.866667pt;}
.xf7_c00236{left:575.466667pt;}
.xe6_c00236{left:576.400000pt;}
.x149_c00236{left:580.400000pt;}
.x134_c00236{left:581.866667pt;}
.xb5_c00236{left:582.800000pt;}
.xd7_c00236{left:585.200000pt;}
.xcb_c00236{left:586.666667pt;}
.xc6_c00236{left:589.333333pt;}
.xaf_c00236{left:590.666667pt;}
.x11f_c00236{left:592.400000pt;}
.xd2_c00236{left:594.800000pt;}
.xf1_c00236{left:596.400000pt;}
.x14a_c00236{left:597.333333pt;}
.xa8_c00236{left:598.533333pt;}
.xb6_c00236{left:599.466667pt;}
.xf8_c00236{left:602.000000pt;}
.x122_c00236{left:603.200000pt;}
.xd8_c00236{left:604.400000pt;}
.xfe_c00236{left:605.333333pt;}
.x117_c00236{left:606.800000pt;}
.x12e_c00236{left:608.800000pt;}
.x10a_c00236{left:611.866667pt;}
.xc0_c00236{left:613.066667pt;}
.x114_c00236{left:616.133333pt;}
.xcc_c00236{left:617.333333pt;}
.xbc_c00236{left:618.800000pt;}
.x11b_c00236{left:620.800000pt;}
.xd3_c00236{left:621.733333pt;}
.xf2_c00236{left:622.933333pt;}
.x130_c00236{left:624.400000pt;}
.xc7_c00236{left:625.466667pt;}
.xa9_c00236{left:626.666667pt;}
.xf9_c00236{left:632.133333pt;}
.x120_c00236{left:633.066667pt;}
.x13b_c00236{left:634.400000pt;}
.xcd_c00236{left:635.866667pt;}
.x123_c00236{left:638.133333pt;}
.x129_c00236{left:640.933333pt;}
.xb7_c00236{left:642.400000pt;}
.xaa_c00236{left:644.000000pt;}
.xbd_c00236{left:645.733333pt;}
.x12c_c00236{left:647.200000pt;}
.x14d_c00236{left:649.466667pt;}
.x12d_c00236{left:650.533333pt;}
.x12a_c00236{left:652.133333pt;}
.x101_c00236{left:653.866667pt;}
.xd4_c00236{left:656.000000pt;}
.x144_c00236{left:657.866667pt;}
.xb8_c00236{left:659.066667pt;}
.x13f_c00236{left:660.133333pt;}
.xd9_c00236{left:661.333333pt;}
.xdd_c00236{left:663.600000pt;}
.xbe_c00236{left:664.666667pt;}
.xb0_c00236{left:666.533333pt;}
.x2_c00236{left:668.533333pt;}
.x124_c00236{left:669.466667pt;}
.xe7_c00236{left:673.333333pt;}
.xf3_c00236{left:676.400000pt;}
.x111_c00236{left:677.866667pt;}
.xde_c00236{left:678.933333pt;}
.xb9_c00236{left:680.800000pt;}
.x131_c00236{left:682.266667pt;}
.x137_c00236{left:683.866667pt;}
.xc1_c00236{left:685.066667pt;}
.xfa_c00236{left:686.266667pt;}
.x11c_c00236{left:687.333333pt;}
.x10f_c00236{left:691.733333pt;}
.x10b_c00236{left:704.666667pt;}
}





/* 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_c00237 {
    display:none;
  }
  .loading-indicator_c00237.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00237 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_c00237 { 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_c00237" -> "#page-container .classname_c00237")
 */
.pf_c00237 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00237 { /* 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_c00237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00237 { /* 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_c00237 { /* 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_c00237 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00237 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00237 {overflow:visible;}
  }
}
.c_c00237 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00237 { /* 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_c00237:after { /* webkit #35443 */
  content: '';
}
.t_c00237:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00237 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 */
}
.__c00237 { /* 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_c00237 { /* info for Javascript */
  display:none;
}
.l_c00237 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00237 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00237 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00237: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_c00237 {
    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_c00237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00237.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_c00237 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00237;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.000000;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;}
.m9f_c00237{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.mba_c00237{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m56_c00237{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00237{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mff_c00237{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mad_c00237{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m9_c00237{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00237{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00237{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md2_c00237{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00237{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m106_c00237{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m71_c00237{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00237{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00237{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m55_c00237{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00237{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.me7_c00237{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m74_c00237{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.me6_c00237{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m59_c00237{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m92_c00237{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00237{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00237{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m62_c00237{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00237{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me0_c00237{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00237{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m51_c00237{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00237{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m46_c00237{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mab_c00237{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00237{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m34_c00237{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md4_c00237{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.md3_c00237{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00237{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m73_c00237{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m54_c00237{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00237{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m17_c00237{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00237{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mca_c00237{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00237{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00237{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m94_c00237{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00237{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md1_c00237{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00237{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m65_c00237{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00237{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m43_c00237{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00237{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m75_c00237{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m10_c00237{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m91_c00237{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00237{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00237{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00237{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00237{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m49_c00237{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.md_c00237{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00237{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4_c00237{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00237{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mec_c00237{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00237{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00237{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m32_c00237{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m90_c00237{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.maf_c00237{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00237{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m82_c00237{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00237{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m45_c00237{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md0_c00237{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00237{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m12_c00237{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00237{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00237{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00237{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00237{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00237{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00237{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00237{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3_c00237{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m61_c00237{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m33_c00237{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mf_c00237{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00237{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00237{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me9_c00237{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00237{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m35_c00237{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m105_c00237{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m80_c00237{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m16_c00237{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00237{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m93_c00237{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00237{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00237{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00237{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m30_c00237{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m64_c00237{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m96_c00237{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m18_c00237{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m84_c00237{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m26_c00237{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m48_c00237{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m40_c00237{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00237{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m19_c00237{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00237{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00237{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00237{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00237{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m76_c00237{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m97_c00237{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m57_c00237{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m36_c00237{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00237{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00237{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m39_c00237{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00237{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00237{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m41_c00237{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00237{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00237{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00237{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me1_c00237{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00237{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00237{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m11_c00237{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00237{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m63_c00237{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00237{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc_c00237{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mee_c00237{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m50_c00237{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m99_c00237{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7_c00237{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00237{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m42_c00237{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.med_c00237{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m89_c00237{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m37_c00237{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00237{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md5_c00237{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00237{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m31_c00237{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md8_c00237{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00237{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mda_c00237{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00237{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m79_c00237{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m88_c00237{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00237{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m20_c00237{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00237{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00237{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m66_c00237{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m72_c00237{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m95_c00237{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m21_c00237{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m24_c00237{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.maa_c00237{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m98_c00237{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00237{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00237{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00237{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m87_c00237{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00237{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00237{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00237{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m15_c00237{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5_c00237{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mef_c00237{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00237{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me2_c00237{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m27_c00237{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00237{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00237{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m52_c00237{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m58_c00237{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m44_c00237{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m22_c00237{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m108_c00237{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m38_c00237{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00237{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28_c00237{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00237{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md6_c00237{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m14_c00237{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m29_c00237{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00237{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m77_c00237{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m25_c00237{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m53_c00237{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me3_c00237{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mac_c00237{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.me_c00237{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00237{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m70_c00237{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00237{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00237{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00237{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00237{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00237{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00237{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m83_c00237{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mb_c00237{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00237{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mce_c00237{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00237{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m85_c00237{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00237{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m107_c00237{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00237{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m23_c00237{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00237{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m104_c00237{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00237{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mea_c00237{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m81_c00237{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);}
.m60_c00237{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m13_c00237{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00237{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m109_c00237{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.meb_c00237{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00237{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00237{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00237{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00237{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00237{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m68_c00237{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m78_c00237{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m86_c00237{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m47_c00237{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00237{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00237{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m101_c00237{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00237{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me4_c00237{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00237{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.me8_c00237{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00237{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00237{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m69_c00237{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00237{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00237{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mae_c00237{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mde_c00237{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.md7_c00237{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m103_c00237{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00237{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.md9_c00237{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m102_c00237{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m67_c00237{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00237{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00237{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00237{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m100_c00237{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00237{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00237{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me5_c00237{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls0_c00237{letter-spacing:0.000000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{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__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00237{word-spacing:-12.750000px;}
.ws5_c00237{word-spacing:-11.849162px;}
.ws0_c00237{word-spacing:-10.735294px;}
.ws9_c00237{word-spacing:-7.778976px;}
.ws6_c00237{word-spacing:-7.500000px;}
.ws8_c00237{word-spacing:-5.684211px;}
.ws1_c00237{word-spacing:-4.833333px;}
.ws7_c00237{word-spacing:-3.142012px;}
.wsd_c00237{word-spacing:0.000000px;}
.wsc_c00237{word-spacing:1.617647px;}
.ws3_c00237{word-spacing:4.633508px;}
.wsa_c00237{word-spacing:4.992366px;}
.ws2_c00237{word-spacing:8.837209px;}
.wsb_c00237{word-spacing:14.980892px;}
.fc0_c00237{color:transparent;}
.fs5_c00237{font-size:30.000000px;}
.fs6_c00237{font-size:48.000000px;}
.fs0_c00237{font-size:54.000000px;}
.fs3_c00237{font-size:60.000000px;}
.fs2_c00237{font-size:66.000000px;}
.fs4_c00237{font-size:72.000000px;}
.fs1_c00237{font-size:108.000000px;}
.y0_c00237{bottom:0.000000px;}
.y68_c00237{bottom:190.050000px;}
.y67_c00237{bottom:204.150000px;}
.y36_c00237{bottom:207.900000px;}
.y66_c00237{bottom:218.550000px;}
.y35_c00237{bottom:225.600000px;}
.y65_c00237{bottom:233.250000px;}
.y34_c00237{bottom:243.600000px;}
.y64_c00237{bottom:247.650000px;}
.y33_c00237{bottom:261.300000px;}
.y32_c00237{bottom:279.000000px;}
.y63_c00237{bottom:302.700000px;}
.y31_c00237{bottom:313.500000px;}
.y62_c00237{bottom:321.000000px;}
.y30_c00237{bottom:332.400000px;}
.y61_c00237{bottom:339.000000px;}
.y2f_c00237{bottom:350.700000px;}
.y60_c00237{bottom:357.000000px;}
.y2e_c00237{bottom:358.500000px;}
.y2d_c00237{bottom:368.700000px;}
.y5f_c00237{bottom:374.700000px;}
.y2c_c00237{bottom:386.100000px;}
.y5e_c00237{bottom:393.000000px;}
.y2b_c00237{bottom:404.100000px;}
.y5d_c00237{bottom:410.700000px;}
.y2a_c00237{bottom:422.100000px;}
.y5c_c00237{bottom:435.600000px;}
.y29_c00237{bottom:440.100000px;}
.y5b_c00237{bottom:450.000000px;}
.y28_c00237{bottom:458.100000px;}
.y5a_c00237{bottom:464.700000px;}
.y27_c00237{bottom:476.100000px;}
.y59_c00237{bottom:484.950000px;}
.y26_c00237{bottom:494.400000px;}
.y58_c00237{bottom:502.950000px;}
.y25_c00237{bottom:512.100000px;}
.y57_c00237{bottom:520.950000px;}
.y24_c00237{bottom:530.100000px;}
.y56_c00237{bottom:538.950000px;}
.y23_c00237{bottom:548.100000px;}
.y55_c00237{bottom:561.150000px;}
.y22_c00237{bottom:566.100000px;}
.y54_c00237{bottom:578.850000px;}
.y21_c00237{bottom:583.800000px;}
.y53_c00237{bottom:596.850000px;}
.y20_c00237{bottom:601.800000px;}
.y52_c00237{bottom:614.850000px;}
.y1f_c00237{bottom:619.500000px;}
.y1e_c00237{bottom:637.800000px;}
.y51_c00237{bottom:641.550000px;}
.y1d_c00237{bottom:657.300000px;}
.y50_c00237{bottom:672.900000px;}
.y1c_c00237{bottom:673.500000px;}
.y1b_c00237{bottom:691.500000px;}
.y4f_c00237{bottom:695.700000px;}
.y1a_c00237{bottom:709.500000px;}
.y4e_c00237{bottom:713.400000px;}
.y19_c00237{bottom:728.250000px;}
.y4d_c00237{bottom:731.400000px;}
.y18_c00237{bottom:745.500000px;}
.y4c_c00237{bottom:749.400000px;}
.y17_c00237{bottom:763.500000px;}
.y4b_c00237{bottom:767.100000px;}
.y16_c00237{bottom:781.200000px;}
.y4a_c00237{bottom:784.800000px;}
.y15_c00237{bottom:799.200000px;}
.y49_c00237{bottom:807.450000px;}
.y14_c00237{bottom:817.200000px;}
.y48_c00237{bottom:825.450000px;}
.y13_c00237{bottom:834.900000px;}
.y47_c00237{bottom:843.150000px;}
.y12_c00237{bottom:852.600000px;}
.y46_c00237{bottom:861.150000px;}
.y11_c00237{bottom:870.600000px;}
.y45_c00237{bottom:879.150000px;}
.y10_c00237{bottom:890.100000px;}
.y44_c00237{bottom:897.300000px;}
.yf_c00237{bottom:906.600000px;}
.y43_c00237{bottom:915.000000px;}
.ye_c00237{bottom:923.850000px;}
.y42_c00237{bottom:932.700000px;}
.yd_c00237{bottom:941.850000px;}
.y41_c00237{bottom:950.700000px;}
.yc_c00237{bottom:959.550000px;}
.y40_c00237{bottom:972.300000px;}
.yb_c00237{bottom:977.550000px;}
.y3f_c00237{bottom:990.600000px;}
.ya_c00237{bottom:995.250000px;}
.y3e_c00237{bottom:1008.300000px;}
.y9_c00237{bottom:1013.250000px;}
.y3d_c00237{bottom:1026.600000px;}
.y8_c00237{bottom:1031.250000px;}
.y3c_c00237{bottom:1044.300000px;}
.y7_c00237{bottom:1048.950000px;}
.y3b_c00237{bottom:1062.300000px;}
.y6_c00237{bottom:1066.650000px;}
.y3a_c00237{bottom:1084.350000px;}
.y5_c00237{bottom:1084.650000px;}
.y39_c00237{bottom:1102.050000px;}
.y4_c00237{bottom:1102.650000px;}
.y38_c00237{bottom:1120.350000px;}
.y3_c00237{bottom:1120.650000px;}
.y37_c00237{bottom:1133.700000px;}
.y1_c00237{bottom:1146.600000px;}
.y2_c00237{bottom:1147.350000px;}
.h7_c00237{height:30.000000px;}
.h8_c00237{height:48.000000px;}
.h2_c00237{height:54.000000px;}
.h5_c00237{height:60.000000px;}
.h4_c00237{height:66.000000px;}
.h6_c00237{height:72.000000px;}
.h3_c00237{height:108.000000px;}
.h0_c00237{height:1271.879975px;}
.h1_c00237{height:1272.000000px;}
.w1_c00237{width:963.000000px;}
.w0_c00237{width:963.359985px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:177.900000px;}
.x8f_c00237{left:185.100000px;}
.x57_c00237{left:192.300000px;}
.x4d_c00237{left:194.250000px;}
.x33_c00237{left:195.300000px;}
.x3_c00237{left:197.250000px;}
.x58_c00237{left:199.800000px;}
.x96_c00237{left:210.600000px;}
.x5d_c00237{left:213.300000px;}
.x65_c00237{left:215.100000px;}
.x75_c00237{left:217.200000px;}
.x9c_c00237{left:219.000000px;}
.x37_c00237{left:221.400000px;}
.x49_c00237{left:222.600000px;}
.x89_c00237{left:224.550000px;}
.x41_c00237{left:227.100000px;}
.x45_c00237{left:228.900000px;}
.x21_c00237{left:231.000000px;}
.x84_c00237{left:232.950000px;}
.x7e_c00237{left:235.350000px;}
.x80_c00237{left:237.450000px;}
.x19_c00237{left:238.800000px;}
.x9d_c00237{left:239.850000px;}
.x4e_c00237{left:241.050000px;}
.x61_c00237{left:242.850000px;}
.x8a_c00237{left:244.350000px;}
.x78_c00237{left:245.400000px;}
.x34_c00237{left:246.750000px;}
.x95_c00237{left:248.400000px;}
.x22_c00237{left:251.550000px;}
.x8c_c00237{left:252.600000px;}
.x97_c00237{left:254.100000px;}
.x5e_c00237{left:255.750000px;}
.x149_c00237{left:258.900000px;}
.x4_c00237{left:260.550000px;}
.x1a_c00237{left:262.500000px;}
.x66_c00237{left:263.700000px;}
.x6d_c00237{left:266.850000px;}
.x38_c00237{left:268.950000px;}
.x2d_c00237{left:270.300000px;}
.x35_c00237{left:272.700000px;}
.xc_c00237{left:274.800000px;}
.x98_c00237{left:276.450000px;}
.x85_c00237{left:277.950000px;}
.x27_c00237{left:279.000000px;}
.x62_c00237{left:280.950000px;}
.x67_c00237{left:283.800000px;}
.x39_c00237{left:284.850000px;}
.x15_c00237{left:287.400000px;}
.x5_c00237{left:290.400000px;}
.x8d_c00237{left:294.600000px;}
.x2e_c00237{left:296.250000px;}
.xd_c00237{left:298.500000px;}
.x42_c00237{left:300.600000px;}
.x7b_c00237{left:302.400000px;}
.x81_c00237{left:304.350000px;}
.x4f_c00237{left:306.150000px;}
.x3a_c00237{left:309.000000px;}
.x1b_c00237{left:310.800000px;}
.x3d_c00237{left:312.450000px;}
.x9e_c00237{left:313.650000px;}
.x4a_c00237{left:314.850000px;}
.xe_c00237{left:316.200000px;}
.x72_c00237{left:318.300000px;}
.x5f_c00237{left:320.550000px;}
.x3e_c00237{left:322.500000px;}
.x23_c00237{left:325.350000px;}
.x50_c00237{left:327.450000px;}
.x6e_c00237{left:328.500000px;}
.x6_c00237{left:331.050000px;}
.x63_c00237{left:332.400000px;}
.x16_c00237{left:336.000000px;}
.x69_c00237{left:339.000000px;}
.x2f_c00237{left:340.500000px;}
.x9a_c00237{left:341.700000px;}
.xf_c00237{left:343.200000px;}
.x51_c00237{left:344.700000px;}
.x28_c00237{left:346.650000px;}
.x9b_c00237{left:348.900000px;}
.x5a_c00237{left:350.250000px;}
.x7_c00237{left:351.900000px;}
.x14a_c00237{left:354.300000px;}
.x17_c00237{left:355.500000px;}
.x87_c00237{left:357.000000px;}
.x6a_c00237{left:358.050000px;}
.x10_c00237{left:360.450000px;}
.x1c_c00237{left:362.700000px;}
.x4b_c00237{left:363.750000px;}
.x60_c00237{left:366.300000px;}
.x3b_c00237{left:367.350000px;}
.x55_c00237{left:369.450000px;}
.x48_c00237{left:370.650000px;}
.x3f_c00237{left:373.650000px;}
.x1d_c00237{left:375.000000px;}
.x6f_c00237{left:378.600000px;}
.x52_c00237{left:379.650000px;}
.x11_c00237{left:381.750000px;}
.x29_c00237{left:384.750000px;}
.x73_c00237{left:388.950000px;}
.x8_c00237{left:391.200000px;}
.x93_c00237{left:392.400000px;}
.x3c_c00237{left:394.050000px;}
.x43_c00237{left:397.800000px;}
.x79_c00237{left:399.300000px;}
.x70_c00237{left:400.500000px;}
.x30_c00237{left:402.000000px;}
.x5b_c00237{left:403.200000px;}
.x24_c00237{left:404.850000px;}
.x88_c00237{left:407.400000px;}
.x8e_c00237{left:408.750000px;}
.x44_c00237{left:411.450000px;}
.x59_c00237{left:414.450000px;}
.x1e_c00237{left:416.400000px;}
.x77_c00237{left:419.700000px;}
.x18_c00237{left:421.350000px;}
.x36_c00237{left:423.000000px;}
.x9f_c00237{left:424.500000px;}
.x2_c00237{left:426.000000px;}
.x2a_c00237{left:427.950000px;}
.x4c_c00237{left:429.300000px;}
.x9_c00237{left:430.800000px;}
.x56_c00237{left:431.850000px;}
.x12_c00237{left:433.200000px;}
.x86_c00237{left:435.900000px;}
.x31_c00237{left:438.300000px;}
.x91_c00237{left:439.500000px;}
.x25_c00237{left:440.550000px;}
.x1f_c00237{left:443.700000px;}
.x71_c00237{left:444.750000px;}
.x5c_c00237{left:446.100000px;}
.x68_c00237{left:447.300000px;}
.x53_c00237{left:448.500000px;}
.x6b_c00237{left:450.150000px;}
.x40_c00237{left:451.500000px;}
.x7c_c00237{left:452.850000px;}
.x90_c00237{left:454.650000px;}
.x2b_c00237{left:456.000000px;}
.x74_c00237{left:460.200000px;}
.x64_c00237{left:461.700000px;}
.x99_c00237{left:462.900000px;}
.x32_c00237{left:465.300000px;}
.x46_c00237{left:469.800000px;}
.x82_c00237{left:471.300000px;}
.x13_c00237{left:472.800000px;}
.x92_c00237{left:474.750000px;}
.xa_c00237{left:476.100000px;}
.x2c_c00237{left:477.300000px;}
.x76_c00237{left:478.650000px;}
.x7d_c00237{left:480.150000px;}
.x26_c00237{left:481.950000px;}
.xb_c00237{left:483.600000px;}
.x94_c00237{left:485.250000px;}
.x20_c00237{left:487.650000px;}
.x8b_c00237{left:489.750000px;}
.x7f_c00237{left:490.800000px;}
.x14_c00237{left:493.350000px;}
.x6c_c00237{left:496.650000px;}
.x47_c00237{left:497.850000px;}
.x7a_c00237{left:499.350000px;}
.x83_c00237{left:506.550000px;}
.x54_c00237{left:509.400000px;}
.x14b_c00237{left:518.700000px;}
.x14c_c00237{left:530.250000px;}
.x115_c00237{left:531.300000px;}
.x117_c00237{left:532.500000px;}
.xd6_c00237{left:533.850000px;}
.x13f_c00237{left:541.500000px;}
.x132_c00237{left:544.800000px;}
.x12b_c00237{left:547.200000px;}
.x111_c00237{left:548.550000px;}
.xfb_c00237{left:550.050000px;}
.xc1_c00237{left:551.550000px;}
.xa3_c00237{left:552.600000px;}
.x110_c00237{left:560.850000px;}
.x145_c00237{left:562.950000px;}
.x107_c00237{left:565.950000px;}
.x11a_c00237{left:567.300000px;}
.x105_c00237{left:568.500000px;}
.xb6_c00237{left:570.300000px;}
.xc2_c00237{left:571.350000px;}
.x12e_c00237{left:573.300000px;}
.xcb_c00237{left:575.250000px;}
.x127_c00237{left:576.750000px;}
.x138_c00237{left:579.600000px;}
.x10b_c00237{left:580.800000px;}
.xdd_c00237{left:581.850000px;}
.xcc_c00237{left:583.200000px;}
.xa4_c00237{left:585.000000px;}
.xd5_c00237{left:587.700000px;}
.xa9_c00237{left:590.550000px;}
.x130_c00237{left:592.650000px;}
.xc3_c00237{left:594.000000px;}
.x112_c00237{left:595.350000px;}
.xb2_c00237{left:596.400000px;}
.x14d_c00237{left:597.600000px;}
.xf3_c00237{left:598.650000px;}
.xcd_c00237{left:599.700000px;}
.xe7_c00237{left:601.200000px;}
.x142_c00237{left:602.400000px;}
.xed_c00237{left:603.750000px;}
.x120_c00237{left:608.100000px;}
.x125_c00237{left:610.050000px;}
.xe2_c00237{left:612.450000px;}
.xe8_c00237{left:614.550000px;}
.xce_c00237{left:616.200000px;}
.xf4_c00237{left:617.700000px;}
.x113_c00237{left:618.750000px;}
.x101_c00237{left:620.250000px;}
.xaa_c00237{left:621.900000px;}
.xd7_c00237{left:623.100000px;}
.xb3_c00237{left:624.900000px;}
.x13a_c00237{left:626.400000px;}
.x131_c00237{left:627.600000px;}
.xbd_c00237{left:628.650000px;}
.xe3_c00237{left:629.700000px;}
.xde_c00237{left:631.200000px;}
.x13d_c00237{left:635.100000px;}
.xf5_c00237{left:636.450000px;}
.x147_c00237{left:637.800000px;}
.xfc_c00237{left:639.300000px;}
.x10c_c00237{left:641.250000px;}
.xc4_c00237{left:642.600000px;}
.x139_c00237{left:643.650000px;}
.x133_c00237{left:644.850000px;}
.x128_c00237{left:646.650000px;}
.xdf_c00237{left:647.700000px;}
.x12c_c00237{left:648.750000px;}
.xa5_c00237{left:650.100000px;}
.xb4_c00237{left:651.150000px;}
.x143_c00237{left:652.500000px;}
.x108_c00237{left:654.150000px;}
.x121_c00237{left:655.200000px;}
.x14e_c00237{left:657.000000px;}
.xb7_c00237{left:660.000000px;}
.x118_c00237{left:663.600000px;}
.x102_c00237{left:666.600000px;}
.xab_c00237{left:667.650000px;}
.x106_c00237{left:669.300000px;}
.xfd_c00237{left:672.450000px;}
.xd8_c00237{left:673.500000px;}
.xc5_c00237{left:676.500000px;}
.x11b_c00237{left:678.150000px;}
.xf6_c00237{left:679.950000px;}
.x122_c00237{left:681.150000px;}
.xbe_c00237{left:683.100000px;}
.xfe_c00237{left:686.850000px;}
.x103_c00237{left:688.950000px;}
.xc6_c00237{left:691.950000px;}
.xb5_c00237{left:695.400000px;}
.xe4_c00237{left:699.150000px;}
.x13b_c00237{left:700.350000px;}
.xe9_c00237{left:701.400000px;}
.xa6_c00237{left:702.600000px;}
.x11c_c00237{left:704.850000px;}
.xd2_c00237{left:708.300000px;}
.xb8_c00237{left:711.450000px;}
.xea_c00237{left:712.500000px;}
.xff_c00237{left:715.950000px;}
.xbf_c00237{left:718.350000px;}
.xd9_c00237{left:719.550000px;}
.x104_c00237{left:721.350000px;}
.x116_c00237{left:723.450000px;}
.xb9_c00237{left:725.550000px;}
.xee_c00237{left:726.900000px;}
.x109_c00237{left:727.950000px;}
.x11d_c00237{left:729.750000px;}
.xf9_c00237{left:733.200000px;}
.xcf_c00237{left:735.000000px;}
.x140_c00237{left:736.350000px;}
.x10d_c00237{left:737.400000px;}
.xc7_c00237{left:739.050000px;}
.xac_c00237{left:743.550000px;}
.x123_c00237{left:745.200000px;}
.x10e_c00237{left:746.700000px;}
.xeb_c00237{left:750.600000px;}
.xef_c00237{left:752.100000px;}
.xda_c00237{left:753.450000px;}
.xad_c00237{left:754.650000px;}
.xd3_c00237{left:757.200000px;}
.xa7_c00237{left:759.150000px;}
.x136_c00237{left:760.650000px;}
.xd0_c00237{left:763.050000px;}
.x11e_c00237{left:765.000000px;}
.x100_c00237{left:766.350000px;}
.x119_c00237{left:767.550000px;}
.x12f_c00237{left:769.500000px;}
.xec_c00237{left:771.150000px;}
.xf7_c00237{left:773.100000px;}
.xae_c00237{left:774.450000px;}
.xd4_c00237{left:776.700000px;}
.xa8_c00237{left:778.200000px;}
.xe0_c00237{left:780.150000px;}
.x10a_c00237{left:781.950000px;}
.xba_c00237{left:784.200000px;}
.xfa_c00237{left:786.150000px;}
.x124_c00237{left:788.100000px;}
.x10f_c00237{left:789.150000px;}
.x137_c00237{left:793.800000px;}
.x114_c00237{left:796.500000px;}
.x129_c00237{left:798.900000px;}
.xc0_c00237{left:801.450000px;}
.xaf_c00237{left:803.250000px;}
.xbb_c00237{left:805.800000px;}
.xa0_c00237{left:807.150000px;}
.xc8_c00237{left:808.200000px;}
.xe5_c00237{left:811.050000px;}
.xa1_c00237{left:812.850000px;}
.x12d_c00237{left:816.750000px;}
.x134_c00237{left:817.800000px;}
.xc9_c00237{left:820.050000px;}
.xa2_c00237{left:821.850000px;}
.xdb_c00237{left:823.350000px;}
.xb0_c00237{left:824.550000px;}
.x135_c00237{left:825.750000px;}
.x141_c00237{left:827.100000px;}
.x11f_c00237{left:831.900000px;}
.x13c_c00237{left:834.000000px;}
.xbc_c00237{left:835.650000px;}
.x144_c00237{left:836.850000px;}
.xf0_c00237{left:838.500000px;}
.xd1_c00237{left:839.700000px;}
.xe1_c00237{left:841.800000px;}
.xb1_c00237{left:845.100000px;}
.xe6_c00237{left:846.750000px;}
.xdc_c00237{left:849.600000px;}
.xf8_c00237{left:852.300000px;}
.x146_c00237{left:853.800000px;}
.x148_c00237{left:855.450000px;}
.x12a_c00237{left:856.500000px;}
.xca_c00237{left:858.150000px;}
.x126_c00237{left:859.800000px;}
.x13e_c00237{left:861.900000px;}
.xf1_c00237{left:878.100000px;}
.xf2_c00237{left:889.650000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws4_c00237{word-spacing:-11.333333pt;}
.ws5_c00237{word-spacing:-10.532588pt;}
.ws0_c00237{word-spacing:-9.542484pt;}
.ws9_c00237{word-spacing:-6.914645pt;}
.ws6_c00237{word-spacing:-6.666667pt;}
.ws8_c00237{word-spacing:-5.052632pt;}
.ws1_c00237{word-spacing:-4.296296pt;}
.ws7_c00237{word-spacing:-2.792899pt;}
.wsd_c00237{word-spacing:0.000000pt;}
.wsc_c00237{word-spacing:1.437908pt;}
.ws3_c00237{word-spacing:4.118674pt;}
.wsa_c00237{word-spacing:4.437659pt;}
.ws2_c00237{word-spacing:7.855297pt;}
.wsb_c00237{word-spacing:13.316348pt;}
.fs5_c00237{font-size:26.666667pt;}
.fs6_c00237{font-size:42.666667pt;}
.fs0_c00237{font-size:48.000000pt;}
.fs3_c00237{font-size:53.333333pt;}
.fs2_c00237{font-size:58.666667pt;}
.fs4_c00237{font-size:64.000000pt;}
.fs1_c00237{font-size:96.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y68_c00237{bottom:168.933333pt;}
.y67_c00237{bottom:181.466667pt;}
.y36_c00237{bottom:184.800000pt;}
.y66_c00237{bottom:194.266667pt;}
.y35_c00237{bottom:200.533333pt;}
.y65_c00237{bottom:207.333333pt;}
.y34_c00237{bottom:216.533333pt;}
.y64_c00237{bottom:220.133333pt;}
.y33_c00237{bottom:232.266667pt;}
.y32_c00237{bottom:248.000000pt;}
.y63_c00237{bottom:269.066667pt;}
.y31_c00237{bottom:278.666667pt;}
.y62_c00237{bottom:285.333333pt;}
.y30_c00237{bottom:295.466667pt;}
.y61_c00237{bottom:301.333333pt;}
.y2f_c00237{bottom:311.733333pt;}
.y60_c00237{bottom:317.333333pt;}
.y2e_c00237{bottom:318.666667pt;}
.y2d_c00237{bottom:327.733333pt;}
.y5f_c00237{bottom:333.066667pt;}
.y2c_c00237{bottom:343.200000pt;}
.y5e_c00237{bottom:349.333333pt;}
.y2b_c00237{bottom:359.200000pt;}
.y5d_c00237{bottom:365.066667pt;}
.y2a_c00237{bottom:375.200000pt;}
.y5c_c00237{bottom:387.200000pt;}
.y29_c00237{bottom:391.200000pt;}
.y5b_c00237{bottom:400.000000pt;}
.y28_c00237{bottom:407.200000pt;}
.y5a_c00237{bottom:413.066667pt;}
.y27_c00237{bottom:423.200000pt;}
.y59_c00237{bottom:431.066667pt;}
.y26_c00237{bottom:439.466667pt;}
.y58_c00237{bottom:447.066667pt;}
.y25_c00237{bottom:455.200000pt;}
.y57_c00237{bottom:463.066667pt;}
.y24_c00237{bottom:471.200000pt;}
.y56_c00237{bottom:479.066667pt;}
.y23_c00237{bottom:487.200000pt;}
.y55_c00237{bottom:498.800000pt;}
.y22_c00237{bottom:503.200000pt;}
.y54_c00237{bottom:514.533333pt;}
.y21_c00237{bottom:518.933333pt;}
.y53_c00237{bottom:530.533333pt;}
.y20_c00237{bottom:534.933333pt;}
.y52_c00237{bottom:546.533333pt;}
.y1f_c00237{bottom:550.666667pt;}
.y1e_c00237{bottom:566.933333pt;}
.y51_c00237{bottom:570.266667pt;}
.y1d_c00237{bottom:584.266667pt;}
.y50_c00237{bottom:598.133333pt;}
.y1c_c00237{bottom:598.666667pt;}
.y1b_c00237{bottom:614.666667pt;}
.y4f_c00237{bottom:618.400000pt;}
.y1a_c00237{bottom:630.666667pt;}
.y4e_c00237{bottom:634.133333pt;}
.y19_c00237{bottom:647.333333pt;}
.y4d_c00237{bottom:650.133333pt;}
.y18_c00237{bottom:662.666667pt;}
.y4c_c00237{bottom:666.133333pt;}
.y17_c00237{bottom:678.666667pt;}
.y4b_c00237{bottom:681.866667pt;}
.y16_c00237{bottom:694.400000pt;}
.y4a_c00237{bottom:697.600000pt;}
.y15_c00237{bottom:710.400000pt;}
.y49_c00237{bottom:717.733333pt;}
.y14_c00237{bottom:726.400000pt;}
.y48_c00237{bottom:733.733333pt;}
.y13_c00237{bottom:742.133333pt;}
.y47_c00237{bottom:749.466667pt;}
.y12_c00237{bottom:757.866667pt;}
.y46_c00237{bottom:765.466667pt;}
.y11_c00237{bottom:773.866667pt;}
.y45_c00237{bottom:781.466667pt;}
.y10_c00237{bottom:791.200000pt;}
.y44_c00237{bottom:797.600000pt;}
.yf_c00237{bottom:805.866667pt;}
.y43_c00237{bottom:813.333333pt;}
.ye_c00237{bottom:821.200000pt;}
.y42_c00237{bottom:829.066667pt;}
.yd_c00237{bottom:837.200000pt;}
.y41_c00237{bottom:845.066667pt;}
.yc_c00237{bottom:852.933333pt;}
.y40_c00237{bottom:864.266667pt;}
.yb_c00237{bottom:868.933333pt;}
.y3f_c00237{bottom:880.533333pt;}
.ya_c00237{bottom:884.666667pt;}
.y3e_c00237{bottom:896.266667pt;}
.y9_c00237{bottom:900.666667pt;}
.y3d_c00237{bottom:912.533333pt;}
.y8_c00237{bottom:916.666667pt;}
.y3c_c00237{bottom:928.266667pt;}
.y7_c00237{bottom:932.400000pt;}
.y3b_c00237{bottom:944.266667pt;}
.y6_c00237{bottom:948.133333pt;}
.y3a_c00237{bottom:963.866667pt;}
.y5_c00237{bottom:964.133333pt;}
.y39_c00237{bottom:979.600000pt;}
.y4_c00237{bottom:980.133333pt;}
.y38_c00237{bottom:995.866667pt;}
.y3_c00237{bottom:996.133333pt;}
.y37_c00237{bottom:1007.733333pt;}
.y1_c00237{bottom:1019.200000pt;}
.y2_c00237{bottom:1019.866667pt;}
.h7_c00237{height:26.666667pt;}
.h8_c00237{height:42.666667pt;}
.h2_c00237{height:48.000000pt;}
.h5_c00237{height:53.333333pt;}
.h4_c00237{height:58.666667pt;}
.h6_c00237{height:64.000000pt;}
.h3_c00237{height:96.000000pt;}
.h0_c00237{height:1130.559977pt;}
.h1_c00237{height:1130.666667pt;}
.w1_c00237{width:856.000000pt;}
.w0_c00237{width:856.319987pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:158.133333pt;}
.x8f_c00237{left:164.533333pt;}
.x57_c00237{left:170.933333pt;}
.x4d_c00237{left:172.666667pt;}
.x33_c00237{left:173.600000pt;}
.x3_c00237{left:175.333333pt;}
.x58_c00237{left:177.600000pt;}
.x96_c00237{left:187.200000pt;}
.x5d_c00237{left:189.600000pt;}
.x65_c00237{left:191.200000pt;}
.x75_c00237{left:193.066667pt;}
.x9c_c00237{left:194.666667pt;}
.x37_c00237{left:196.800000pt;}
.x49_c00237{left:197.866667pt;}
.x89_c00237{left:199.600000pt;}
.x41_c00237{left:201.866667pt;}
.x45_c00237{left:203.466667pt;}
.x21_c00237{left:205.333333pt;}
.x84_c00237{left:207.066667pt;}
.x7e_c00237{left:209.200000pt;}
.x80_c00237{left:211.066667pt;}
.x19_c00237{left:212.266667pt;}
.x9d_c00237{left:213.200000pt;}
.x4e_c00237{left:214.266667pt;}
.x61_c00237{left:215.866667pt;}
.x8a_c00237{left:217.200000pt;}
.x78_c00237{left:218.133333pt;}
.x34_c00237{left:219.333333pt;}
.x95_c00237{left:220.800000pt;}
.x22_c00237{left:223.600000pt;}
.x8c_c00237{left:224.533333pt;}
.x97_c00237{left:225.866667pt;}
.x5e_c00237{left:227.333333pt;}
.x149_c00237{left:230.133333pt;}
.x4_c00237{left:231.600000pt;}
.x1a_c00237{left:233.333333pt;}
.x66_c00237{left:234.400000pt;}
.x6d_c00237{left:237.200000pt;}
.x38_c00237{left:239.066667pt;}
.x2d_c00237{left:240.266667pt;}
.x35_c00237{left:242.400000pt;}
.xc_c00237{left:244.266667pt;}
.x98_c00237{left:245.733333pt;}
.x85_c00237{left:247.066667pt;}
.x27_c00237{left:248.000000pt;}
.x62_c00237{left:249.733333pt;}
.x67_c00237{left:252.266667pt;}
.x39_c00237{left:253.200000pt;}
.x15_c00237{left:255.466667pt;}
.x5_c00237{left:258.133333pt;}
.x8d_c00237{left:261.866667pt;}
.x2e_c00237{left:263.333333pt;}
.xd_c00237{left:265.333333pt;}
.x42_c00237{left:267.200000pt;}
.x7b_c00237{left:268.800000pt;}
.x81_c00237{left:270.533333pt;}
.x4f_c00237{left:272.133333pt;}
.x3a_c00237{left:274.666667pt;}
.x1b_c00237{left:276.266667pt;}
.x3d_c00237{left:277.733333pt;}
.x9e_c00237{left:278.800000pt;}
.x4a_c00237{left:279.866667pt;}
.xe_c00237{left:281.066667pt;}
.x72_c00237{left:282.933333pt;}
.x5f_c00237{left:284.933333pt;}
.x3e_c00237{left:286.666667pt;}
.x23_c00237{left:289.200000pt;}
.x50_c00237{left:291.066667pt;}
.x6e_c00237{left:292.000000pt;}
.x6_c00237{left:294.266667pt;}
.x63_c00237{left:295.466667pt;}
.x16_c00237{left:298.666667pt;}
.x69_c00237{left:301.333333pt;}
.x2f_c00237{left:302.666667pt;}
.x9a_c00237{left:303.733333pt;}
.xf_c00237{left:305.066667pt;}
.x51_c00237{left:306.400000pt;}
.x28_c00237{left:308.133333pt;}
.x9b_c00237{left:310.133333pt;}
.x5a_c00237{left:311.333333pt;}
.x7_c00237{left:312.800000pt;}
.x14a_c00237{left:314.933333pt;}
.x17_c00237{left:316.000000pt;}
.x87_c00237{left:317.333333pt;}
.x6a_c00237{left:318.266667pt;}
.x10_c00237{left:320.400000pt;}
.x1c_c00237{left:322.400000pt;}
.x4b_c00237{left:323.333333pt;}
.x60_c00237{left:325.600000pt;}
.x3b_c00237{left:326.533333pt;}
.x55_c00237{left:328.400000pt;}
.x48_c00237{left:329.466667pt;}
.x3f_c00237{left:332.133333pt;}
.x1d_c00237{left:333.333333pt;}
.x6f_c00237{left:336.533333pt;}
.x52_c00237{left:337.466667pt;}
.x11_c00237{left:339.333333pt;}
.x29_c00237{left:342.000000pt;}
.x73_c00237{left:345.733333pt;}
.x8_c00237{left:347.733333pt;}
.x93_c00237{left:348.800000pt;}
.x3c_c00237{left:350.266667pt;}
.x43_c00237{left:353.600000pt;}
.x79_c00237{left:354.933333pt;}
.x70_c00237{left:356.000000pt;}
.x30_c00237{left:357.333333pt;}
.x5b_c00237{left:358.400000pt;}
.x24_c00237{left:359.866667pt;}
.x88_c00237{left:362.133333pt;}
.x8e_c00237{left:363.333333pt;}
.x44_c00237{left:365.733333pt;}
.x59_c00237{left:368.400000pt;}
.x1e_c00237{left:370.133333pt;}
.x77_c00237{left:373.066667pt;}
.x18_c00237{left:374.533333pt;}
.x36_c00237{left:376.000000pt;}
.x9f_c00237{left:377.333333pt;}
.x2_c00237{left:378.666667pt;}
.x2a_c00237{left:380.400000pt;}
.x4c_c00237{left:381.600000pt;}
.x9_c00237{left:382.933333pt;}
.x56_c00237{left:383.866667pt;}
.x12_c00237{left:385.066667pt;}
.x86_c00237{left:387.466667pt;}
.x31_c00237{left:389.600000pt;}
.x91_c00237{left:390.666667pt;}
.x25_c00237{left:391.600000pt;}
.x1f_c00237{left:394.400000pt;}
.x71_c00237{left:395.333333pt;}
.x5c_c00237{left:396.533333pt;}
.x68_c00237{left:397.600000pt;}
.x53_c00237{left:398.666667pt;}
.x6b_c00237{left:400.133333pt;}
.x40_c00237{left:401.333333pt;}
.x7c_c00237{left:402.533333pt;}
.x90_c00237{left:404.133333pt;}
.x2b_c00237{left:405.333333pt;}
.x74_c00237{left:409.066667pt;}
.x64_c00237{left:410.400000pt;}
.x99_c00237{left:411.466667pt;}
.x32_c00237{left:413.600000pt;}
.x46_c00237{left:417.600000pt;}
.x82_c00237{left:418.933333pt;}
.x13_c00237{left:420.266667pt;}
.x92_c00237{left:422.000000pt;}
.xa_c00237{left:423.200000pt;}
.x2c_c00237{left:424.266667pt;}
.x76_c00237{left:425.466667pt;}
.x7d_c00237{left:426.800000pt;}
.x26_c00237{left:428.400000pt;}
.xb_c00237{left:429.866667pt;}
.x94_c00237{left:431.333333pt;}
.x20_c00237{left:433.466667pt;}
.x8b_c00237{left:435.333333pt;}
.x7f_c00237{left:436.266667pt;}
.x14_c00237{left:438.533333pt;}
.x6c_c00237{left:441.466667pt;}
.x47_c00237{left:442.533333pt;}
.x7a_c00237{left:443.866667pt;}
.x83_c00237{left:450.266667pt;}
.x54_c00237{left:452.800000pt;}
.x14b_c00237{left:461.066667pt;}
.x14c_c00237{left:471.333333pt;}
.x115_c00237{left:472.266667pt;}
.x117_c00237{left:473.333333pt;}
.xd6_c00237{left:474.533333pt;}
.x13f_c00237{left:481.333333pt;}
.x132_c00237{left:484.266667pt;}
.x12b_c00237{left:486.400000pt;}
.x111_c00237{left:487.600000pt;}
.xfb_c00237{left:488.933333pt;}
.xc1_c00237{left:490.266667pt;}
.xa3_c00237{left:491.200000pt;}
.x110_c00237{left:498.533333pt;}
.x145_c00237{left:500.400000pt;}
.x107_c00237{left:503.066667pt;}
.x11a_c00237{left:504.266667pt;}
.x105_c00237{left:505.333333pt;}
.xb6_c00237{left:506.933333pt;}
.xc2_c00237{left:507.866667pt;}
.x12e_c00237{left:509.600000pt;}
.xcb_c00237{left:511.333333pt;}
.x127_c00237{left:512.666667pt;}
.x138_c00237{left:515.200000pt;}
.x10b_c00237{left:516.266667pt;}
.xdd_c00237{left:517.200000pt;}
.xcc_c00237{left:518.400000pt;}
.xa4_c00237{left:520.000000pt;}
.xd5_c00237{left:522.400000pt;}
.xa9_c00237{left:524.933333pt;}
.x130_c00237{left:526.800000pt;}
.xc3_c00237{left:528.000000pt;}
.x112_c00237{left:529.200000pt;}
.xb2_c00237{left:530.133333pt;}
.x14d_c00237{left:531.200000pt;}
.xf3_c00237{left:532.133333pt;}
.xcd_c00237{left:533.066667pt;}
.xe7_c00237{left:534.400000pt;}
.x142_c00237{left:535.466667pt;}
.xed_c00237{left:536.666667pt;}
.x120_c00237{left:540.533333pt;}
.x125_c00237{left:542.266667pt;}
.xe2_c00237{left:544.400000pt;}
.xe8_c00237{left:546.266667pt;}
.xce_c00237{left:547.733333pt;}
.xf4_c00237{left:549.066667pt;}
.x113_c00237{left:550.000000pt;}
.x101_c00237{left:551.333333pt;}
.xaa_c00237{left:552.800000pt;}
.xd7_c00237{left:553.866667pt;}
.xb3_c00237{left:555.466667pt;}
.x13a_c00237{left:556.800000pt;}
.x131_c00237{left:557.866667pt;}
.xbd_c00237{left:558.800000pt;}
.xe3_c00237{left:559.733333pt;}
.xde_c00237{left:561.066667pt;}
.x13d_c00237{left:564.533333pt;}
.xf5_c00237{left:565.733333pt;}
.x147_c00237{left:566.933333pt;}
.xfc_c00237{left:568.266667pt;}
.x10c_c00237{left:570.000000pt;}
.xc4_c00237{left:571.200000pt;}
.x139_c00237{left:572.133333pt;}
.x133_c00237{left:573.200000pt;}
.x128_c00237{left:574.800000pt;}
.xdf_c00237{left:575.733333pt;}
.x12c_c00237{left:576.666667pt;}
.xa5_c00237{left:577.866667pt;}
.xb4_c00237{left:578.800000pt;}
.x143_c00237{left:580.000000pt;}
.x108_c00237{left:581.466667pt;}
.x121_c00237{left:582.400000pt;}
.x14e_c00237{left:584.000000pt;}
.xb7_c00237{left:586.666667pt;}
.x118_c00237{left:589.866667pt;}
.x102_c00237{left:592.533333pt;}
.xab_c00237{left:593.466667pt;}
.x106_c00237{left:594.933333pt;}
.xfd_c00237{left:597.733333pt;}
.xd8_c00237{left:598.666667pt;}
.xc5_c00237{left:601.333333pt;}
.x11b_c00237{left:602.800000pt;}
.xf6_c00237{left:604.400000pt;}
.x122_c00237{left:605.466667pt;}
.xbe_c00237{left:607.200000pt;}
.xfe_c00237{left:610.533333pt;}
.x103_c00237{left:612.400000pt;}
.xc6_c00237{left:615.066667pt;}
.xb5_c00237{left:618.133333pt;}
.xe4_c00237{left:621.466667pt;}
.x13b_c00237{left:622.533333pt;}
.xe9_c00237{left:623.466667pt;}
.xa6_c00237{left:624.533333pt;}
.x11c_c00237{left:626.533333pt;}
.xd2_c00237{left:629.600000pt;}
.xb8_c00237{left:632.400000pt;}
.xea_c00237{left:633.333333pt;}
.xff_c00237{left:636.400000pt;}
.xbf_c00237{left:638.533333pt;}
.xd9_c00237{left:639.600000pt;}
.x104_c00237{left:641.200000pt;}
.x116_c00237{left:643.066667pt;}
.xb9_c00237{left:644.933333pt;}
.xee_c00237{left:646.133333pt;}
.x109_c00237{left:647.066667pt;}
.x11d_c00237{left:648.666667pt;}
.xf9_c00237{left:651.733333pt;}
.xcf_c00237{left:653.333333pt;}
.x140_c00237{left:654.533333pt;}
.x10d_c00237{left:655.466667pt;}
.xc7_c00237{left:656.933333pt;}
.xac_c00237{left:660.933333pt;}
.x123_c00237{left:662.400000pt;}
.x10e_c00237{left:663.733333pt;}
.xeb_c00237{left:667.200000pt;}
.xef_c00237{left:668.533333pt;}
.xda_c00237{left:669.733333pt;}
.xad_c00237{left:670.800000pt;}
.xd3_c00237{left:673.066667pt;}
.xa7_c00237{left:674.800000pt;}
.x136_c00237{left:676.133333pt;}
.xd0_c00237{left:678.266667pt;}
.x11e_c00237{left:680.000000pt;}
.x100_c00237{left:681.200000pt;}
.x119_c00237{left:682.266667pt;}
.x12f_c00237{left:684.000000pt;}
.xec_c00237{left:685.466667pt;}
.xf7_c00237{left:687.200000pt;}
.xae_c00237{left:688.400000pt;}
.xd4_c00237{left:690.400000pt;}
.xa8_c00237{left:691.733333pt;}
.xe0_c00237{left:693.466667pt;}
.x10a_c00237{left:695.066667pt;}
.xba_c00237{left:697.066667pt;}
.xfa_c00237{left:698.800000pt;}
.x124_c00237{left:700.533333pt;}
.x10f_c00237{left:701.466667pt;}
.x137_c00237{left:705.600000pt;}
.x114_c00237{left:708.000000pt;}
.x129_c00237{left:710.133333pt;}
.xc0_c00237{left:712.400000pt;}
.xaf_c00237{left:714.000000pt;}
.xbb_c00237{left:716.266667pt;}
.xa0_c00237{left:717.466667pt;}
.xc8_c00237{left:718.400000pt;}
.xe5_c00237{left:720.933333pt;}
.xa1_c00237{left:722.533333pt;}
.x12d_c00237{left:726.000000pt;}
.x134_c00237{left:726.933333pt;}
.xc9_c00237{left:728.933333pt;}
.xa2_c00237{left:730.533333pt;}
.xdb_c00237{left:731.866667pt;}
.xb0_c00237{left:732.933333pt;}
.x135_c00237{left:734.000000pt;}
.x141_c00237{left:735.200000pt;}
.x11f_c00237{left:739.466667pt;}
.x13c_c00237{left:741.333333pt;}
.xbc_c00237{left:742.800000pt;}
.x144_c00237{left:743.866667pt;}
.xf0_c00237{left:745.333333pt;}
.xd1_c00237{left:746.400000pt;}
.xe1_c00237{left:748.266667pt;}
.xb1_c00237{left:751.200000pt;}
.xe6_c00237{left:752.666667pt;}
.xdc_c00237{left:755.200000pt;}
.xf8_c00237{left:757.600000pt;}
.x146_c00237{left:758.933333pt;}
.x148_c00237{left:760.400000pt;}
.x12a_c00237{left:761.333333pt;}
.xca_c00237{left:762.800000pt;}
.x126_c00237{left:764.266667pt;}
.x13e_c00237{left:766.133333pt;}
.xf1_c00237{left:780.533333pt;}
.xf2_c00237{left:790.800000pt;}
}





/* 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_c00238 {
    display:none;
  }
  .loading-indicator_c00238.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00238 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_c00238 { 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_c00238" -> "#page-container .classname_c00238")
 */
.pf_c00238 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00238 { /* 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_c00238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00238 { /* 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_c00238 { /* 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_c00238 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00238 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00238 {overflow:visible;}
  }
}
.c_c00238 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00238 { /* 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_c00238:after { /* webkit #35443 */
  content: '';
}
.t_c00238:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00238 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 */
}
.__c00238 { /* 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_c00238 { /* info for Javascript */
  display:none;
}
.l_c00238 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00238 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00238 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00238: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_c00238 {
    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_c00238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00238.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_c00238 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00238;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.000000;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;}
.meb_c00238{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00238{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00238{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m116_c00238{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m106_c00238{transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);}
.m120_c00238{transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00238{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m32_c00238{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m52_c00238{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00238{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00238{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00238{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00238{transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00238{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00238{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m29_c00238{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00238{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00238{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m93_c00238{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.me8_c00238{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00238{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.me3_c00238{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m72_c00238{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00238{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m50_c00238{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m94_c00238{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m23_c00238{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00238{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00238{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00238{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00238{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00238{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00238{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00238{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m38_c00238{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m36_c00238{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00238{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.md_c00238{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00238{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00238{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00238{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00238{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m96_c00238{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mef_c00238{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m9_c00238{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5_c00238{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00238{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m125_c00238{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00238{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m28_c00238{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mca_c00238{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m119_c00238{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me7_c00238{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m2_c00238{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.me1_c00238{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md2_c00238{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00238{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m14_c00238{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00238{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00238{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00238{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m8_c00238{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m39_c00238{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md3_c00238{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m117_c00238{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m54_c00238{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m103_c00238{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00238{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11_c00238{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mb_c00238{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me_c00238{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00238{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00238{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m13_c00238{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m102_c00238{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m10_c00238{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m31_c00238{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00238{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m55_c00238{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mea_c00238{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m48_c00238{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4_c00238{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m17_c00238{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m16_c00238{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m37_c00238{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00238{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00238{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00238{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m68_c00238{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m86_c00238{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m112_c00238{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m26_c00238{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00238{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf_c00238{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00238{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc_c00238{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m21_c00238{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00238{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m73_c00238{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m19_c00238{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m25_c00238{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m77_c00238{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00238{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m75_c00238{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m78_c00238{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m61_c00238{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma_c00238{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m56_c00238{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00238{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m76_c00238{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mae_c00238{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m71_c00238{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00238{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m123_c00238{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00238{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00238{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m60_c00238{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m74_c00238{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m7_c00238{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00238{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m84_c00238{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00238{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00238{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m45_c00238{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00238{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m43_c00238{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00238{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00238{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m69_c00238{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m92_c00238{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6_c00238{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m49_c00238{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00238{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m20_c00238{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m67_c00238{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m42_c00238{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m63_c00238{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me6_c00238{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m110_c00238{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00238{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00238{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m121_c00238{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00238{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00238{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m70_c00238{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m12_c00238{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00238{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m124_c00238{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.med_c00238{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00238{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00238{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00238{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m40_c00238{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m58_c00238{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00238{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m57_c00238{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00238{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m44_c00238{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00238{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00238{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m35_c00238{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3_c00238{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.md9_c00238{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m22_c00238{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00238{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m122_c00238{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m33_c00238{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m15_c00238{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00238{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00238{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00238{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00238{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00238{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00238{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m99_c00238{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m34_c00238{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m118_c00238{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00238{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me9_c00238{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00238{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00238{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mee_c00238{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m65_c00238{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00238{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m88_c00238{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m104_c00238{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00238{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00238{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m109_c00238{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00238{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00238{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.maf_c00238{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m27_c00238{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m66_c00238{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.maa_c00238{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mff_c00238{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m107_c00238{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m81_c00238{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00238{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m85_c00238{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m91_c00238{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00238{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00238{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00238{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m59_c00238{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md8_c00238{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m100_c00238{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00238{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m24_c00238{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00238{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me5_c00238{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m51_c00238{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mde_c00238{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m114_c00238{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00238{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m47_c00238{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md5_c00238{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m62_c00238{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00238{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m41_c00238{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m64_c00238{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00238{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00238{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m53_c00238{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00238{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00238{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mac_c00238{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m46_c00238{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00238{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m83_c00238{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00238{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m111_c00238{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00238{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m79_c00238{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m97_c00238{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00238{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00238{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00238{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m89_c00238{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m127_c00238{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md7_c00238{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m30_c00238{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00238{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00238{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00238{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00238{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m82_c00238{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m18_c00238{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m95_c00238{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md4_c00238{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00238{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00238{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00238{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mda_c00238{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00238{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00238{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00238{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m98_c00238{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md1_c00238{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00238{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mad_c00238{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m113_c00238{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md0_c00238{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00238{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00238{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md6_c00238{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m101_c00238{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m108_c00238{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00238{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.me0_c00238{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m128_c00238{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00238{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m115_c00238{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00238{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mec_c00238{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00238{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00238{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00238{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00238{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00238{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mba_c00238{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00238{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me4_c00238{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00238{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00238{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m87_c00238{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m90_c00238{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m126_c00238{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mce_c00238{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.me2_c00238{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m80_c00238{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m105_c00238{transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00238{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00238{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.mab_c00238{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls0_c00238{letter-spacing:0.000000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{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__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00238{word-spacing:-18.248408px;}
.ws8_c00238{word-spacing:-9.683849px;}
.ws2_c00238{word-spacing:-9.652921px;}
.ws3_c00238{word-spacing:-1.426117px;}
.ws1_c00238{word-spacing:-1.122905px;}
.wsa_c00238{word-spacing:0.000000px;}
.ws5_c00238{word-spacing:0.888268px;}
.ws7_c00238{word-spacing:1.240550px;}
.ws9_c00238{word-spacing:1.710526px;}
.ws0_c00238{word-spacing:1.873362px;}
.ws6_c00238{word-spacing:6.705882px;}
._0_c00238{width:25.719745px;}
.fc0_c00238{color:transparent;}
.fs4_c00238{font-size:54.000000px;}
.fs3_c00238{font-size:60.000000px;}
.fs2_c00238{font-size:66.000000px;}
.fs1_c00238{font-size:72.000000px;}
.fs0_c00238{font-size:78.000000px;}
.y0_c00238{bottom:0.000000px;}
.y68_c00238{bottom:178.950000px;}
.y35_c00238{bottom:181.050000px;}
.y67_c00238{bottom:194.100000px;}
.y34_c00238{bottom:198.750000px;}
.y66_c00238{bottom:208.500000px;}
.y65_c00238{bottom:223.500000px;}
.y33_c00238{bottom:225.000000px;}
.y64_c00238{bottom:237.600000px;}
.y32_c00238{bottom:243.300000px;}
.y63_c00238{bottom:252.750000px;}
.y31_c00238{bottom:261.300000px;}
.y62_c00238{bottom:266.400000px;}
.y61_c00238{bottom:280.800000px;}
.y30_c00238{bottom:287.700000px;}
.y60_c00238{bottom:295.200000px;}
.y2f_c00238{bottom:306.000000px;}
.y2e_c00238{bottom:323.700000px;}
.y5f_c00238{bottom:329.700000px;}
.y2d_c00238{bottom:341.700000px;}
.y5e_c00238{bottom:356.250000px;}
.y2c_c00238{bottom:371.850000px;}
.y5d_c00238{bottom:374.550000px;}
.y2b_c00238{bottom:389.850000px;}
.y5c_c00238{bottom:392.250000px;}
.y2a_c00238{bottom:407.850000px;}
.y5b_c00238{bottom:409.950000px;}
.y29_c00238{bottom:425.850000px;}
.y5a_c00238{bottom:431.250000px;}
.y28_c00238{bottom:443.850000px;}
.y59_c00238{bottom:454.350000px;}
.y27_c00238{bottom:461.850000px;}
.y58_c00238{bottom:472.350000px;}
.y26_c00238{bottom:485.550000px;}
.y57_c00238{bottom:490.350000px;}
.y25_c00238{bottom:503.850000px;}
.y56_c00238{bottom:508.350000px;}
.y24_c00238{bottom:521.100000px;}
.y55_c00238{bottom:526.350000px;}
.y23_c00238{bottom:539.100000px;}
.y54_c00238{bottom:544.350000px;}
.y22_c00238{bottom:557.100000px;}
.y53_c00238{bottom:562.650000px;}
.y21_c00238{bottom:575.100000px;}
.y52_c00238{bottom:580.350000px;}
.y20_c00238{bottom:593.100000px;}
.y51_c00238{bottom:600.150000px;}
.y1f_c00238{bottom:611.100000px;}
.y50_c00238{bottom:616.050000px;}
.y1e_c00238{bottom:629.100000px;}
.y4f_c00238{bottom:634.050000px;}
.y1d_c00238{bottom:647.100000px;}
.y4e_c00238{bottom:652.050000px;}
.y1c_c00238{bottom:665.100000px;}
.y4d_c00238{bottom:672.150000px;}
.y1b_c00238{bottom:683.100000px;}
.y4c_c00238{bottom:687.900000px;}
.y1a_c00238{bottom:701.100000px;}
.y4b_c00238{bottom:705.600000px;}
.y19_c00238{bottom:718.800000px;}
.y4a_c00238{bottom:723.300000px;}
.y18_c00238{bottom:736.800000px;}
.y49_c00238{bottom:741.300000px;}
.y17_c00238{bottom:754.800000px;}
.y48_c00238{bottom:759.300000px;}
.y16_c00238{bottom:772.800000px;}
.y47_c00238{bottom:777.300000px;}
.y15_c00238{bottom:790.500000px;}
.y46_c00238{bottom:795.300000px;}
.y14_c00238{bottom:808.500000px;}
.y45_c00238{bottom:813.300000px;}
.y13_c00238{bottom:826.200000px;}
.y44_c00238{bottom:831.600000px;}
.y12_c00238{bottom:844.200000px;}
.y43_c00238{bottom:848.850000px;}
.y11_c00238{bottom:861.900000px;}
.y42_c00238{bottom:866.850000px;}
.y10_c00238{bottom:879.600000px;}
.y41_c00238{bottom:891.750000px;}
.yf_c00238{bottom:897.600000px;}
.y40_c00238{bottom:912.000000px;}
.ye_c00238{bottom:915.600000px;}
.y3f_c00238{bottom:930.000000px;}
.yd_c00238{bottom:933.300000px;}
.y3e_c00238{bottom:948.300000px;}
.yc_c00238{bottom:951.300000px;}
.yb_c00238{bottom:969.300000px;}
.y3d_c00238{bottom:969.600000px;}
.ya_c00238{bottom:987.000000px;}
.y3c_c00238{bottom:987.600000px;}
.y9_c00238{bottom:1005.300000px;}
.y3b_c00238{bottom:1005.900000px;}
.y3a_c00238{bottom:1023.150000px;}
.y8_c00238{bottom:1023.300000px;}
.y7_c00238{bottom:1041.000000px;}
.y39_c00238{bottom:1041.150000px;}
.y6_c00238{bottom:1058.700000px;}
.y38_c00238{bottom:1063.500000px;}
.y5_c00238{bottom:1076.400000px;}
.y37_c00238{bottom:1089.750000px;}
.y4_c00238{bottom:1094.400000px;}
.y36_c00238{bottom:1107.750000px;}
.y3_c00238{bottom:1112.100000px;}
.y2_c00238{bottom:1138.800000px;}
.y1_c00238{bottom:1139.100000px;}
.h6_c00238{height:54.000000px;}
.h5_c00238{height:60.000000px;}
.h4_c00238{height:66.000000px;}
.h3_c00238{height:72.000000px;}
.h2_c00238{height:78.000000px;}
.h0_c00238{height:1271.160094px;}
.h1_c00238{height:1271.250000px;}
.w1_c00238{width:963.000000px;}
.w0_c00238{width:963.359985px;}
.x0_c00238{left:0.000000px;}
.x9b_c00238{left:99.300000px;}
.xa0_c00238{left:100.500000px;}
.x3_c00238{left:110.850000px;}
.x23_c00238{left:112.050000px;}
.x64_c00238{left:113.250000px;}
.x90_c00238{left:115.200000px;}
.x96_c00238{left:116.250000px;}
.xa2_c00238{left:118.800000px;}
.xa_c00238{left:127.650000px;}
.x76_c00238{left:130.650000px;}
.x77_c00238{left:132.000000px;}
.x88_c00238{left:133.050000px;}
.x65_c00238{left:134.550000px;}
.x13_c00238{left:135.900000px;}
.x91_c00238{left:139.350000px;}
.x4_c00238{left:141.450000px;}
.x69_c00238{left:142.500000px;}
.x36_c00238{left:145.500000px;}
.x59_c00238{left:147.300000px;}
.x89_c00238{left:150.300000px;}
.x14_c00238{left:153.600000px;}
.x9c_c00238{left:155.400000px;}
.x2b_c00238{left:156.450000px;}
.x78_c00238{left:157.500000px;}
.x71_c00238{left:159.300000px;}
.x3c_c00238{left:160.650000px;}
.x1b_c00238{left:161.850000px;}
.x7e_c00238{left:163.200000px;}
.xb_c00238{left:164.400000px;}
.x37_c00238{left:167.100000px;}
.x9e_c00238{left:168.300000px;}
.x7c_c00238{left:169.650000px;}
.x9a_c00238{left:171.900000px;}
.x54_c00238{left:173.400000px;}
.x3f_c00238{left:177.150000px;}
.x47_c00238{left:179.400000px;}
.xc_c00238{left:180.900000px;}
.x4a_c00238{left:182.850000px;}
.x5d_c00238{left:186.750000px;}
.x24_c00238{left:188.700000px;}
.x92_c00238{left:192.300000px;}
.x5a_c00238{left:193.350000px;}
.x55_c00238{left:194.700000px;}
.x1c_c00238{left:196.050000px;}
.x7f_c00238{left:197.700000px;}
.x99_c00238{left:201.450000px;}
.x15_c00238{left:202.500000px;}
.xd_c00238{left:204.000000px;}
.x61_c00238{left:207.150000px;}
.x43_c00238{left:209.100000px;}
.x8c_c00238{left:210.150000px;}
.x72_c00238{left:211.800000px;}
.x40_c00238{left:213.450000px;}
.x16_c00238{left:216.900000px;}
.xe_c00238{left:220.200000px;}
.x93_c00238{left:221.700000px;}
.x79_c00238{left:223.500000px;}
.x5e_c00238{left:226.050000px;}
.x25_c00238{left:227.550000px;}
.x1d_c00238{left:229.200000px;}
.x31_c00238{left:230.850000px;}
.xa3_c00238{left:232.200000px;}
.x66_c00238{left:234.900000px;}
.x2c_c00238{left:235.950000px;}
.x4b_c00238{left:237.600000px;}
.x8e_c00238{left:239.100000px;}
.x38_c00238{left:240.150000px;}
.x82_c00238{left:241.950000px;}
.x1e_c00238{left:243.600000px;}
.x6f_c00238{left:245.700000px;}
.x74_c00238{left:247.050000px;}
.x2d_c00238{left:248.550000px;}
.x80_c00238{left:249.900000px;}
.x6a_c00238{left:251.100000px;}
.x32_c00238{left:252.750000px;}
.x5_c00238{left:255.600000px;}
.xf_c00238{left:257.700000px;}
.x48_c00238{left:259.050000px;}
.x95_c00238{left:260.850000px;}
.x9f_c00238{left:261.900000px;}
.x81_c00238{left:265.350000px;}
.x4c_c00238{left:266.400000px;}
.x8d_c00238{left:269.550000px;}
.x5b_c00238{left:270.750000px;}
.x44_c00238{left:272.100000px;}
.x5f_c00238{left:273.150000px;}
.x6b_c00238{left:274.500000px;}
.x1f_c00238{left:277.050000px;}
.x17_c00238{left:279.600000px;}
.x9d_c00238{left:283.350000px;}
.x84_c00238{left:286.200000px;}
.x67_c00238{left:288.150000px;}
.x39_c00238{left:290.850000px;}
.x6_c00238{left:293.700000px;}
.x33_c00238{left:295.650000px;}
.x26_c00238{left:297.450000px;}
.x2e_c00238{left:298.950000px;}
.x20_c00238{left:301.500000px;}
.x94_c00238{left:302.550000px;}
.x18_c00238{left:304.050000px;}
.x6c_c00238{left:305.100000px;}
.x62_c00238{left:306.600000px;}
.x86_c00238{left:309.300000px;}
.x10_c00238{left:312.450000px;}
.x8f_c00238{left:313.650000px;}
.x4d_c00238{left:315.300000px;}
.x7_c00238{left:318.150000px;}
.x27_c00238{left:320.100000px;}
.x3a_c00238{left:321.750000px;}
.x8a_c00238{left:322.800000px;}
.x68_c00238{left:324.000000px;}
.x60_c00238{left:326.400000px;}
.x75_c00238{left:328.200000px;}
.x56_c00238{left:330.150000px;}
.x34_c00238{left:331.650000px;}
.x1_c00238{left:334.500000px;}
.x83_c00238{left:335.550000px;}
.x21_c00238{left:336.750000px;}
.x3b_c00238{left:339.450000px;}
.x6d_c00238{left:340.800000px;}
.x41_c00238{left:342.000000px;}
.x5c_c00238{left:344.250000px;}
.x45_c00238{left:346.200000px;}
.xa1_c00238{left:347.400000px;}
.x4e_c00238{left:351.300000px;}
.x8_c00238{left:354.900000px;}
.x51_c00238{left:357.300000px;}
.x11_c00238{left:359.550000px;}
.x3d_c00238{left:361.800000px;}
.x19_c00238{left:363.150000px;}
.x28_c00238{left:364.800000px;}
.x52_c00238{left:366.300000px;}
.x22_c00238{left:369.450000px;}
.x87_c00238{left:372.450000px;}
.x4f_c00238{left:373.950000px;}
.x63_c00238{left:375.000000px;}
.x29_c00238{left:376.350000px;}
.x42_c00238{left:378.000000px;}
.x97_c00238{left:379.950000px;}
.x73_c00238{left:381.000000px;}
.x53_c00238{left:382.800000px;}
.x6e_c00238{left:385.050000px;}
.x7a_c00238{left:386.250000px;}
.x1a_c00238{left:389.400000px;}
.x57_c00238{left:391.050000px;}
.x2f_c00238{left:393.300000px;}
.x2a_c00238{left:394.350000px;}
.x3e_c00238{left:396.000000px;}
.x35_c00238{left:400.350000px;}
.x49_c00238{left:401.850000px;}
.x7b_c00238{left:403.500000px;}
.x12_c00238{left:404.850000px;}
.x8b_c00238{left:406.200000px;}
.x50_c00238{left:408.150000px;}
.x98_c00238{left:409.500000px;}
.x9_c00238{left:411.000000px;}
.x58_c00238{left:412.950000px;}
.x70_c00238{left:415.350000px;}
.x46_c00238{left:416.400000px;}
.x85_c00238{left:417.750000px;}
.x7d_c00238{left:421.650000px;}
.x30_c00238{left:426.750000px;}
.xa4_c00238{left:450.750000px;}
.xb3_c00238{left:452.100000px;}
.x124_c00238{left:453.900000px;}
.x115_c00238{left:455.700000px;}
.x135_c00238{left:456.900000px;}
.x144_c00238{left:463.350000px;}
.xe2_c00238{left:465.600000px;}
.xe1_c00238{left:467.700000px;}
.xc1_c00238{left:469.050000px;}
.xf4_c00238{left:470.250000px;}
.x118_c00238{left:471.300000px;}
.x130_c00238{left:472.950000px;}
.x145_c00238{left:475.350000px;}
.x138_c00238{left:482.850000px;}
.x12c_c00238{left:486.300000px;}
.xba_c00238{left:487.350000px;}
.xfe_c00238{left:488.550000px;}
.xac_c00238{left:490.650000px;}
.x137_c00238{left:492.450000px;}
.xb4_c00238{left:493.500000px;}
.x129_c00238{left:497.100000px;}
.x127_c00238{left:498.450000px;}
.x141_c00238{left:499.800000px;}
.x120_c00238{left:503.550000px;}
.x10a_c00238{left:505.500000px;}
.xa5_c00238{left:506.850000px;}
.xd2_c00238{left:508.500000px;}
.x10f_c00238{left:510.000000px;}
.x12d_c00238{left:512.700000px;}
.xe3_c00238{left:513.900000px;}
.x13d_c00238{left:514.950000px;}
.x125_c00238{left:516.600000px;}
.xde_c00238{left:518.250000px;}
.xf0_c00238{left:520.200000px;}
.x102_c00238{left:521.250000px;}
.xc2_c00238{left:523.350000px;}
.xf8_c00238{left:524.400000px;}
.x116_c00238{left:525.900000px;}
.xca_c00238{left:527.250000px;}
.xb5_c00238{left:531.600000px;}
.x139_c00238{left:534.000000px;}
.xf1_c00238{left:535.350000px;}
.x10b_c00238{left:537.300000px;}
.xea_c00238{left:539.700000px;}
.xad_c00238{left:541.800000px;}
.x13e_c00238{left:544.050000px;}
.x132_c00238{left:545.100000px;}
.x103_c00238{left:547.200000px;}
.x105_c00238{left:548.250000px;}
.xa6_c00238{left:552.150000px;}
.xbb_c00238{left:553.950000px;}
.xfb_c00238{left:555.750000px;}
.x131_c00238{left:556.800000px;}
.xff_c00238{left:559.800000px;}
.xae_c00238{left:561.300000px;}
.x110_c00238{left:563.250000px;}
.xcb_c00238{left:565.050000px;}
.x13a_c00238{left:568.200000px;}
.xc3_c00238{left:571.650000px;}
.xa7_c00238{left:574.050000px;}
.xfc_c00238{left:577.650000px;}
.xbc_c00238{left:579.450000px;}
.xb6_c00238{left:581.700000px;}
.x111_c00238{left:582.750000px;}
.xe4_c00238{left:583.800000px;}
.x136_c00238{left:585.450000px;}
.x13f_c00238{left:590.100000px;}
.xc4_c00238{left:591.750000px;}
.x133_c00238{left:592.950000px;}
.xd3_c00238{left:594.150000px;}
.xeb_c00238{left:596.250000px;}
.xbd_c00238{left:597.750000px;}
.xcc_c00238{left:600.750000px;}
.xe5_c00238{left:602.850000px;}
.xaf_c00238{left:604.500000px;}
.xc7_c00238{left:606.600000px;}
.xcd_c00238{left:609.750000px;}
.xdb_c00238{left:610.950000px;}
.x106_c00238{left:614.100000px;}
.xe6_c00238{left:616.200000px;}
.x112_c00238{left:619.050000px;}
.x11e_c00238{left:620.100000px;}
.x10c_c00238{left:621.300000px;}
.xce_c00238{left:624.450000px;}
.xf5_c00238{left:626.100000px;}
.xec_c00238{left:627.900000px;}
.x11a_c00238{left:631.200000px;}
.xf2_c00238{left:632.250000px;}
.xb7_c00238{left:633.900000px;}
.x123_c00238{left:636.150000px;}
.xb0_c00238{left:637.950000px;}
.xa8_c00238{left:639.900000px;}
.xdc_c00238{left:641.250000px;}
.xb8_c00238{left:642.900000px;}
.x10d_c00238{left:644.700000px;}
.x13b_c00238{left:646.650000px;}
.x119_c00238{left:648.000000px;}
.xe7_c00238{left:650.400000px;}
.xc5_c00238{left:653.700000px;}
.x12e_c00238{left:655.050000px;}
.xd4_c00238{left:656.400000px;}
.xfd_c00238{left:658.350000px;}
.xcf_c00238{left:659.400000px;}
.xc8_c00238{left:660.900000px;}
.x12a_c00238{left:662.550000px;}
.x107_c00238{left:663.750000px;}
.xbe_c00238{left:665.850000px;}
.xe8_c00238{left:669.150000px;}
.xf9_c00238{left:670.650000px;}
.xed_c00238{left:673.650000px;}
.xd0_c00238{left:674.850000px;}
.xb9_c00238{left:677.100000px;}
.xdf_c00238{left:678.450000px;}
.xb1_c00238{left:680.100000px;}
.xe9_c00238{left:682.050000px;}
.x100_c00238{left:685.650000px;}
.xa9_c00238{left:690.600000px;}
.xd5_c00238{left:692.700000px;}
.xd1_c00238{left:693.900000px;}
.xbf_c00238{left:696.450000px;}
.x11b_c00238{left:699.150000px;}
.xf3_c00238{left:700.350000px;}
.x113_c00238{left:701.400000px;}
.x126_c00238{left:702.450000px;}
.xc6_c00238{left:703.800000px;}
.xaa_c00238{left:705.300000px;}
.xee_c00238{left:706.350000px;}
.x12f_c00238{left:708.300000px;}
.xe0_c00238{left:709.350000px;}
.x108_c00238{left:711.000000px;}
.x13c_c00238{left:714.300000px;}
.x142_c00238{left:715.500000px;}
.x12b_c00238{left:718.050000px;}
.xdd_c00238{left:719.400000px;}
.x143_c00238{left:721.500000px;}
.xb2_c00238{left:724.350000px;}
.x128_c00238{left:725.550000px;}
.x117_c00238{left:726.900000px;}
.xd6_c00238{left:729.000000px;}
.x10e_c00238{left:731.700000px;}
.xf6_c00238{left:732.900000px;}
.x121_c00238{left:735.750000px;}
.xd7_c00238{left:738.300000px;}
.xc9_c00238{left:747.300000px;}
.x11f_c00238{left:748.350000px;}
.xd8_c00238{left:752.400000px;}
.xfa_c00238{left:753.750000px;}
.xab_c00238{left:754.950000px;}
.xc0_c00238{left:757.650000px;}
.x2_c00238{left:759.300000px;}
.x109_c00238{left:760.350000px;}
.x11c_c00238{left:761.400000px;}
.x104_c00238{left:762.450000px;}
.x11d_c00238{left:763.500000px;}
.xf7_c00238{left:764.550000px;}
.xd9_c00238{left:767.850000px;}
.xef_c00238{left:771.150000px;}
.x140_c00238{left:773.700000px;}
.x114_c00238{left:774.750000px;}
.x122_c00238{left:777.150000px;}
.xda_c00238{left:778.350000px;}
.x101_c00238{left:786.750000px;}
.x134_c00238{left:788.100000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws4_c00238{word-spacing:-16.220807pt;}
.ws8_c00238{word-spacing:-8.607866pt;}
.ws2_c00238{word-spacing:-8.580374pt;}
.ws3_c00238{word-spacing:-1.267659pt;}
.ws1_c00238{word-spacing:-0.998138pt;}
.wsa_c00238{word-spacing:0.000000pt;}
.ws5_c00238{word-spacing:0.789572pt;}
.ws7_c00238{word-spacing:1.102711pt;}
.ws9_c00238{word-spacing:1.520468pt;}
.ws0_c00238{word-spacing:1.665211pt;}
.ws6_c00238{word-spacing:5.960784pt;}
._0_c00238{width:22.861996pt;}
.fs4_c00238{font-size:48.000000pt;}
.fs3_c00238{font-size:53.333333pt;}
.fs2_c00238{font-size:58.666667pt;}
.fs1_c00238{font-size:64.000000pt;}
.fs0_c00238{font-size:69.333333pt;}
.y0_c00238{bottom:0.000000pt;}
.y68_c00238{bottom:159.066667pt;}
.y35_c00238{bottom:160.933333pt;}
.y67_c00238{bottom:172.533333pt;}
.y34_c00238{bottom:176.666667pt;}
.y66_c00238{bottom:185.333333pt;}
.y65_c00238{bottom:198.666667pt;}
.y33_c00238{bottom:200.000000pt;}
.y64_c00238{bottom:211.200000pt;}
.y32_c00238{bottom:216.266667pt;}
.y63_c00238{bottom:224.666667pt;}
.y31_c00238{bottom:232.266667pt;}
.y62_c00238{bottom:236.800000pt;}
.y61_c00238{bottom:249.600000pt;}
.y30_c00238{bottom:255.733333pt;}
.y60_c00238{bottom:262.400000pt;}
.y2f_c00238{bottom:272.000000pt;}
.y2e_c00238{bottom:287.733333pt;}
.y5f_c00238{bottom:293.066667pt;}
.y2d_c00238{bottom:303.733333pt;}
.y5e_c00238{bottom:316.666667pt;}
.y2c_c00238{bottom:330.533333pt;}
.y5d_c00238{bottom:332.933333pt;}
.y2b_c00238{bottom:346.533333pt;}
.y5c_c00238{bottom:348.666667pt;}
.y2a_c00238{bottom:362.533333pt;}
.y5b_c00238{bottom:364.400000pt;}
.y29_c00238{bottom:378.533333pt;}
.y5a_c00238{bottom:383.333333pt;}
.y28_c00238{bottom:394.533333pt;}
.y59_c00238{bottom:403.866667pt;}
.y27_c00238{bottom:410.533333pt;}
.y58_c00238{bottom:419.866667pt;}
.y26_c00238{bottom:431.600000pt;}
.y57_c00238{bottom:435.866667pt;}
.y25_c00238{bottom:447.866667pt;}
.y56_c00238{bottom:451.866667pt;}
.y24_c00238{bottom:463.200000pt;}
.y55_c00238{bottom:467.866667pt;}
.y23_c00238{bottom:479.200000pt;}
.y54_c00238{bottom:483.866667pt;}
.y22_c00238{bottom:495.200000pt;}
.y53_c00238{bottom:500.133333pt;}
.y21_c00238{bottom:511.200000pt;}
.y52_c00238{bottom:515.866667pt;}
.y20_c00238{bottom:527.200000pt;}
.y51_c00238{bottom:533.466667pt;}
.y1f_c00238{bottom:543.200000pt;}
.y50_c00238{bottom:547.600000pt;}
.y1e_c00238{bottom:559.200000pt;}
.y4f_c00238{bottom:563.600000pt;}
.y1d_c00238{bottom:575.200000pt;}
.y4e_c00238{bottom:579.600000pt;}
.y1c_c00238{bottom:591.200000pt;}
.y4d_c00238{bottom:597.466667pt;}
.y1b_c00238{bottom:607.200000pt;}
.y4c_c00238{bottom:611.466667pt;}
.y1a_c00238{bottom:623.200000pt;}
.y4b_c00238{bottom:627.200000pt;}
.y19_c00238{bottom:638.933333pt;}
.y4a_c00238{bottom:642.933333pt;}
.y18_c00238{bottom:654.933333pt;}
.y49_c00238{bottom:658.933333pt;}
.y17_c00238{bottom:670.933333pt;}
.y48_c00238{bottom:674.933333pt;}
.y16_c00238{bottom:686.933333pt;}
.y47_c00238{bottom:690.933333pt;}
.y15_c00238{bottom:702.666667pt;}
.y46_c00238{bottom:706.933333pt;}
.y14_c00238{bottom:718.666667pt;}
.y45_c00238{bottom:722.933333pt;}
.y13_c00238{bottom:734.400000pt;}
.y44_c00238{bottom:739.200000pt;}
.y12_c00238{bottom:750.400000pt;}
.y43_c00238{bottom:754.533333pt;}
.y11_c00238{bottom:766.133333pt;}
.y42_c00238{bottom:770.533333pt;}
.y10_c00238{bottom:781.866667pt;}
.y41_c00238{bottom:792.666667pt;}
.yf_c00238{bottom:797.866667pt;}
.y40_c00238{bottom:810.666667pt;}
.ye_c00238{bottom:813.866667pt;}
.y3f_c00238{bottom:826.666667pt;}
.yd_c00238{bottom:829.600000pt;}
.y3e_c00238{bottom:842.933333pt;}
.yc_c00238{bottom:845.600000pt;}
.yb_c00238{bottom:861.600000pt;}
.y3d_c00238{bottom:861.866667pt;}
.ya_c00238{bottom:877.333333pt;}
.y3c_c00238{bottom:877.866667pt;}
.y9_c00238{bottom:893.600000pt;}
.y3b_c00238{bottom:894.133333pt;}
.y3a_c00238{bottom:909.466667pt;}
.y8_c00238{bottom:909.600000pt;}
.y7_c00238{bottom:925.333333pt;}
.y39_c00238{bottom:925.466667pt;}
.y6_c00238{bottom:941.066667pt;}
.y38_c00238{bottom:945.333333pt;}
.y5_c00238{bottom:956.800000pt;}
.y37_c00238{bottom:968.666667pt;}
.y4_c00238{bottom:972.800000pt;}
.y36_c00238{bottom:984.666667pt;}
.y3_c00238{bottom:988.533333pt;}
.y2_c00238{bottom:1012.266667pt;}
.y1_c00238{bottom:1012.533333pt;}
.h6_c00238{height:48.000000pt;}
.h5_c00238{height:53.333333pt;}
.h4_c00238{height:58.666667pt;}
.h3_c00238{height:64.000000pt;}
.h2_c00238{height:69.333333pt;}
.h0_c00238{height:1129.920084pt;}
.h1_c00238{height:1130.000000pt;}
.w1_c00238{width:856.000000pt;}
.w0_c00238{width:856.319987pt;}
.x0_c00238{left:0.000000pt;}
.x9b_c00238{left:88.266667pt;}
.xa0_c00238{left:89.333333pt;}
.x3_c00238{left:98.533333pt;}
.x23_c00238{left:99.600000pt;}
.x64_c00238{left:100.666667pt;}
.x90_c00238{left:102.400000pt;}
.x96_c00238{left:103.333333pt;}
.xa2_c00238{left:105.600000pt;}
.xa_c00238{left:113.466667pt;}
.x76_c00238{left:116.133333pt;}
.x77_c00238{left:117.333333pt;}
.x88_c00238{left:118.266667pt;}
.x65_c00238{left:119.600000pt;}
.x13_c00238{left:120.800000pt;}
.x91_c00238{left:123.866667pt;}
.x4_c00238{left:125.733333pt;}
.x69_c00238{left:126.666667pt;}
.x36_c00238{left:129.333333pt;}
.x59_c00238{left:130.933333pt;}
.x89_c00238{left:133.600000pt;}
.x14_c00238{left:136.533333pt;}
.x9c_c00238{left:138.133333pt;}
.x2b_c00238{left:139.066667pt;}
.x78_c00238{left:140.000000pt;}
.x71_c00238{left:141.600000pt;}
.x3c_c00238{left:142.800000pt;}
.x1b_c00238{left:143.866667pt;}
.x7e_c00238{left:145.066667pt;}
.xb_c00238{left:146.133333pt;}
.x37_c00238{left:148.533333pt;}
.x9e_c00238{left:149.600000pt;}
.x7c_c00238{left:150.800000pt;}
.x9a_c00238{left:152.800000pt;}
.x54_c00238{left:154.133333pt;}
.x3f_c00238{left:157.466667pt;}
.x47_c00238{left:159.466667pt;}
.xc_c00238{left:160.800000pt;}
.x4a_c00238{left:162.533333pt;}
.x5d_c00238{left:166.000000pt;}
.x24_c00238{left:167.733333pt;}
.x92_c00238{left:170.933333pt;}
.x5a_c00238{left:171.866667pt;}
.x55_c00238{left:173.066667pt;}
.x1c_c00238{left:174.266667pt;}
.x7f_c00238{left:175.733333pt;}
.x99_c00238{left:179.066667pt;}
.x15_c00238{left:180.000000pt;}
.xd_c00238{left:181.333333pt;}
.x61_c00238{left:184.133333pt;}
.x43_c00238{left:185.866667pt;}
.x8c_c00238{left:186.800000pt;}
.x72_c00238{left:188.266667pt;}
.x40_c00238{left:189.733333pt;}
.x16_c00238{left:192.800000pt;}
.xe_c00238{left:195.733333pt;}
.x93_c00238{left:197.066667pt;}
.x79_c00238{left:198.666667pt;}
.x5e_c00238{left:200.933333pt;}
.x25_c00238{left:202.266667pt;}
.x1d_c00238{left:203.733333pt;}
.x31_c00238{left:205.200000pt;}
.xa3_c00238{left:206.400000pt;}
.x66_c00238{left:208.800000pt;}
.x2c_c00238{left:209.733333pt;}
.x4b_c00238{left:211.200000pt;}
.x8e_c00238{left:212.533333pt;}
.x38_c00238{left:213.466667pt;}
.x82_c00238{left:215.066667pt;}
.x1e_c00238{left:216.533333pt;}
.x6f_c00238{left:218.400000pt;}
.x74_c00238{left:219.600000pt;}
.x2d_c00238{left:220.933333pt;}
.x80_c00238{left:222.133333pt;}
.x6a_c00238{left:223.200000pt;}
.x32_c00238{left:224.666667pt;}
.x5_c00238{left:227.200000pt;}
.xf_c00238{left:229.066667pt;}
.x48_c00238{left:230.266667pt;}
.x95_c00238{left:231.866667pt;}
.x9f_c00238{left:232.800000pt;}
.x81_c00238{left:235.866667pt;}
.x4c_c00238{left:236.800000pt;}
.x8d_c00238{left:239.600000pt;}
.x5b_c00238{left:240.666667pt;}
.x44_c00238{left:241.866667pt;}
.x5f_c00238{left:242.800000pt;}
.x6b_c00238{left:244.000000pt;}
.x1f_c00238{left:246.266667pt;}
.x17_c00238{left:248.533333pt;}
.x9d_c00238{left:251.866667pt;}
.x84_c00238{left:254.400000pt;}
.x67_c00238{left:256.133333pt;}
.x39_c00238{left:258.533333pt;}
.x6_c00238{left:261.066667pt;}
.x33_c00238{left:262.800000pt;}
.x26_c00238{left:264.400000pt;}
.x2e_c00238{left:265.733333pt;}
.x20_c00238{left:268.000000pt;}
.x94_c00238{left:268.933333pt;}
.x18_c00238{left:270.266667pt;}
.x6c_c00238{left:271.200000pt;}
.x62_c00238{left:272.533333pt;}
.x86_c00238{left:274.933333pt;}
.x10_c00238{left:277.733333pt;}
.x8f_c00238{left:278.800000pt;}
.x4d_c00238{left:280.266667pt;}
.x7_c00238{left:282.800000pt;}
.x27_c00238{left:284.533333pt;}
.x3a_c00238{left:286.000000pt;}
.x8a_c00238{left:286.933333pt;}
.x68_c00238{left:288.000000pt;}
.x60_c00238{left:290.133333pt;}
.x75_c00238{left:291.733333pt;}
.x56_c00238{left:293.466667pt;}
.x34_c00238{left:294.800000pt;}
.x1_c00238{left:297.333333pt;}
.x83_c00238{left:298.266667pt;}
.x21_c00238{left:299.333333pt;}
.x3b_c00238{left:301.733333pt;}
.x6d_c00238{left:302.933333pt;}
.x41_c00238{left:304.000000pt;}
.x5c_c00238{left:306.000000pt;}
.x45_c00238{left:307.733333pt;}
.xa1_c00238{left:308.800000pt;}
.x4e_c00238{left:312.266667pt;}
.x8_c00238{left:315.466667pt;}
.x51_c00238{left:317.600000pt;}
.x11_c00238{left:319.600000pt;}
.x3d_c00238{left:321.600000pt;}
.x19_c00238{left:322.800000pt;}
.x28_c00238{left:324.266667pt;}
.x52_c00238{left:325.600000pt;}
.x22_c00238{left:328.400000pt;}
.x87_c00238{left:331.066667pt;}
.x4f_c00238{left:332.400000pt;}
.x63_c00238{left:333.333333pt;}
.x29_c00238{left:334.533333pt;}
.x42_c00238{left:336.000000pt;}
.x97_c00238{left:337.733333pt;}
.x73_c00238{left:338.666667pt;}
.x53_c00238{left:340.266667pt;}
.x6e_c00238{left:342.266667pt;}
.x7a_c00238{left:343.333333pt;}
.x1a_c00238{left:346.133333pt;}
.x57_c00238{left:347.600000pt;}
.x2f_c00238{left:349.600000pt;}
.x2a_c00238{left:350.533333pt;}
.x3e_c00238{left:352.000000pt;}
.x35_c00238{left:355.866667pt;}
.x49_c00238{left:357.200000pt;}
.x7b_c00238{left:358.666667pt;}
.x12_c00238{left:359.866667pt;}
.x8b_c00238{left:361.066667pt;}
.x50_c00238{left:362.800000pt;}
.x98_c00238{left:364.000000pt;}
.x9_c00238{left:365.333333pt;}
.x58_c00238{left:367.066667pt;}
.x70_c00238{left:369.200000pt;}
.x46_c00238{left:370.133333pt;}
.x85_c00238{left:371.333333pt;}
.x7d_c00238{left:374.800000pt;}
.x30_c00238{left:379.333333pt;}
.xa4_c00238{left:400.666667pt;}
.xb3_c00238{left:401.866667pt;}
.x124_c00238{left:403.466667pt;}
.x115_c00238{left:405.066667pt;}
.x135_c00238{left:406.133333pt;}
.x144_c00238{left:411.866667pt;}
.xe2_c00238{left:413.866667pt;}
.xe1_c00238{left:415.733333pt;}
.xc1_c00238{left:416.933333pt;}
.xf4_c00238{left:418.000000pt;}
.x118_c00238{left:418.933333pt;}
.x130_c00238{left:420.400000pt;}
.x145_c00238{left:422.533333pt;}
.x138_c00238{left:429.200000pt;}
.x12c_c00238{left:432.266667pt;}
.xba_c00238{left:433.200000pt;}
.xfe_c00238{left:434.266667pt;}
.xac_c00238{left:436.133333pt;}
.x137_c00238{left:437.733333pt;}
.xb4_c00238{left:438.666667pt;}
.x129_c00238{left:441.866667pt;}
.x127_c00238{left:443.066667pt;}
.x141_c00238{left:444.266667pt;}
.x120_c00238{left:447.600000pt;}
.x10a_c00238{left:449.333333pt;}
.xa5_c00238{left:450.533333pt;}
.xd2_c00238{left:452.000000pt;}
.x10f_c00238{left:453.333333pt;}
.x12d_c00238{left:455.733333pt;}
.xe3_c00238{left:456.800000pt;}
.x13d_c00238{left:457.733333pt;}
.x125_c00238{left:459.200000pt;}
.xde_c00238{left:460.666667pt;}
.xf0_c00238{left:462.400000pt;}
.x102_c00238{left:463.333333pt;}
.xc2_c00238{left:465.200000pt;}
.xf8_c00238{left:466.133333pt;}
.x116_c00238{left:467.466667pt;}
.xca_c00238{left:468.666667pt;}
.xb5_c00238{left:472.533333pt;}
.x139_c00238{left:474.666667pt;}
.xf1_c00238{left:475.866667pt;}
.x10b_c00238{left:477.600000pt;}
.xea_c00238{left:479.733333pt;}
.xad_c00238{left:481.600000pt;}
.x13e_c00238{left:483.600000pt;}
.x132_c00238{left:484.533333pt;}
.x103_c00238{left:486.400000pt;}
.x105_c00238{left:487.333333pt;}
.xa6_c00238{left:490.800000pt;}
.xbb_c00238{left:492.400000pt;}
.xfb_c00238{left:494.000000pt;}
.x131_c00238{left:494.933333pt;}
.xff_c00238{left:497.600000pt;}
.xae_c00238{left:498.933333pt;}
.x110_c00238{left:500.666667pt;}
.xcb_c00238{left:502.266667pt;}
.x13a_c00238{left:505.066667pt;}
.xc3_c00238{left:508.133333pt;}
.xa7_c00238{left:510.266667pt;}
.xfc_c00238{left:513.466667pt;}
.xbc_c00238{left:515.066667pt;}
.xb6_c00238{left:517.066667pt;}
.x111_c00238{left:518.000000pt;}
.xe4_c00238{left:518.933333pt;}
.x136_c00238{left:520.400000pt;}
.x13f_c00238{left:524.533333pt;}
.xc4_c00238{left:526.000000pt;}
.x133_c00238{left:527.066667pt;}
.xd3_c00238{left:528.133333pt;}
.xeb_c00238{left:530.000000pt;}
.xbd_c00238{left:531.333333pt;}
.xcc_c00238{left:534.000000pt;}
.xe5_c00238{left:535.866667pt;}
.xaf_c00238{left:537.333333pt;}
.xc7_c00238{left:539.200000pt;}
.xcd_c00238{left:542.000000pt;}
.xdb_c00238{left:543.066667pt;}
.x106_c00238{left:545.866667pt;}
.xe6_c00238{left:547.733333pt;}
.x112_c00238{left:550.266667pt;}
.x11e_c00238{left:551.200000pt;}
.x10c_c00238{left:552.266667pt;}
.xce_c00238{left:555.066667pt;}
.xf5_c00238{left:556.533333pt;}
.xec_c00238{left:558.133333pt;}
.x11a_c00238{left:561.066667pt;}
.xf2_c00238{left:562.000000pt;}
.xb7_c00238{left:563.466667pt;}
.x123_c00238{left:565.466667pt;}
.xb0_c00238{left:567.066667pt;}
.xa8_c00238{left:568.800000pt;}
.xdc_c00238{left:570.000000pt;}
.xb8_c00238{left:571.466667pt;}
.x10d_c00238{left:573.066667pt;}
.x13b_c00238{left:574.800000pt;}
.x119_c00238{left:576.000000pt;}
.xe7_c00238{left:578.133333pt;}
.xc5_c00238{left:581.066667pt;}
.x12e_c00238{left:582.266667pt;}
.xd4_c00238{left:583.466667pt;}
.xfd_c00238{left:585.200000pt;}
.xcf_c00238{left:586.133333pt;}
.xc8_c00238{left:587.466667pt;}
.x12a_c00238{left:588.933333pt;}
.x107_c00238{left:590.000000pt;}
.xbe_c00238{left:591.866667pt;}
.xe8_c00238{left:594.800000pt;}
.xf9_c00238{left:596.133333pt;}
.xed_c00238{left:598.800000pt;}
.xd0_c00238{left:599.866667pt;}
.xb9_c00238{left:601.866667pt;}
.xdf_c00238{left:603.066667pt;}
.xb1_c00238{left:604.533333pt;}
.xe9_c00238{left:606.266667pt;}
.x100_c00238{left:609.466667pt;}
.xa9_c00238{left:613.866667pt;}
.xd5_c00238{left:615.733333pt;}
.xd1_c00238{left:616.800000pt;}
.xbf_c00238{left:619.066667pt;}
.x11b_c00238{left:621.466667pt;}
.xf3_c00238{left:622.533333pt;}
.x113_c00238{left:623.466667pt;}
.x126_c00238{left:624.400000pt;}
.xc6_c00238{left:625.600000pt;}
.xaa_c00238{left:626.933333pt;}
.xee_c00238{left:627.866667pt;}
.x12f_c00238{left:629.600000pt;}
.xe0_c00238{left:630.533333pt;}
.x108_c00238{left:632.000000pt;}
.x13c_c00238{left:634.933333pt;}
.x142_c00238{left:636.000000pt;}
.x12b_c00238{left:638.266667pt;}
.xdd_c00238{left:639.466667pt;}
.x143_c00238{left:641.333333pt;}
.xb2_c00238{left:643.866667pt;}
.x128_c00238{left:644.933333pt;}
.x117_c00238{left:646.133333pt;}
.xd6_c00238{left:648.000000pt;}
.x10e_c00238{left:650.400000pt;}
.xf6_c00238{left:651.466667pt;}
.x121_c00238{left:654.000000pt;}
.xd7_c00238{left:656.266667pt;}
.xc9_c00238{left:664.266667pt;}
.x11f_c00238{left:665.200000pt;}
.xd8_c00238{left:668.800000pt;}
.xfa_c00238{left:670.000000pt;}
.xab_c00238{left:671.066667pt;}
.xc0_c00238{left:673.466667pt;}
.x2_c00238{left:674.933333pt;}
.x109_c00238{left:675.866667pt;}
.x11c_c00238{left:676.800000pt;}
.x104_c00238{left:677.733333pt;}
.x11d_c00238{left:678.666667pt;}
.xf7_c00238{left:679.600000pt;}
.xd9_c00238{left:682.533333pt;}
.xef_c00238{left:685.466667pt;}
.x140_c00238{left:687.733333pt;}
.x114_c00238{left:688.666667pt;}
.x122_c00238{left:690.800000pt;}
.xda_c00238{left:691.866667pt;}
.x101_c00238{left:699.333333pt;}
.x134_c00238{left:700.533333pt;}
}





/* 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_c00239 {
    display:none;
  }
  .loading-indicator_c00239.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00239 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_c00239 { 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_c00239" -> "#page-container .classname_c00239")
 */
.pf_c00239 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00239 { /* 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_c00239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00239 { /* 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_c00239 { /* 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_c00239 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00239 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00239 {overflow:visible;}
  }
}
.c_c00239 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00239 { /* 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_c00239:after { /* webkit #35443 */
  content: '';
}
.t_c00239:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00239 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 */
}
.__c00239 { /* 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_c00239 { /* info for Javascript */
  display:none;
}
.l_c00239 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00239 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00239 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00239: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_c00239 {
    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_c00239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00239.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_c00239 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00239;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.000000;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;}
.m40_c00239{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m129_c00239{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00239{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00239{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00239{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00239{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00239{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00239{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00239{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00239{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00239{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m128_c00239{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m10_c00239{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00239{transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00239{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m48_c00239{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00239{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00239{transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00239{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00239{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00239{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m35_c00239{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m103_c00239{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m93_c00239{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m99_c00239{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00239{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.me_c00239{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m51_c00239{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00239{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m131_c00239{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00239{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m70_c00239{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00239{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00239{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00239{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m59_c00239{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mee_c00239{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m83_c00239{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00239{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m82_c00239{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma_c00239{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00239{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m125_c00239{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00239{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me6_c00239{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00239{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m60_c00239{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me5_c00239{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.meb_c00239{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00239{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m68_c00239{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00239{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00239{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00239{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00239{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.maa_c00239{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m8_c00239{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00239{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m132_c00239{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m37_c00239{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m81_c00239{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mea_c00239{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m106_c00239{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00239{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m21_c00239{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m74_c00239{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m23_c00239{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mef_c00239{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00239{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00239{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m56_c00239{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m130_c00239{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m86_c00239{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md9_c00239{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m88_c00239{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00239{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00239{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m76_c00239{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mb_c00239{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md7_c00239{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.me2_c00239{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mda_c00239{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m14_c00239{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m101_c00239{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m31_c00239{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m124_c00239{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m102_c00239{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00239{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.md0_c00239{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00239{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00239{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m63_c00239{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00239{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mc_c00239{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00239{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m105_c00239{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00239{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me7_c00239{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00239{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00239{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00239{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mac_c00239{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m80_c00239{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m92_c00239{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m104_c00239{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00239{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00239{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m26_c00239{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m123_c00239{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m45_c00239{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m95_c00239{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md8_c00239{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00239{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mec_c00239{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m25_c00239{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00239{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00239{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00239{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mca_c00239{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00239{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00239{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00239{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m49_c00239{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m18_c00239{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m24_c00239{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m84_c00239{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m115_c00239{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m30_c00239{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00239{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m108_c00239{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00239{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m0_c00239{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m114_c00239{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m121_c00239{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m61_c00239{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m67_c00239{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m22_c00239{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00239{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me8_c00239{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00239{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m44_c00239{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md3_c00239{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00239{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00239{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7_c00239{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00239{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me0_c00239{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00239{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00239{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m50_c00239{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m29_c00239{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00239{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.med_c00239{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m113_c00239{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00239{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m109_c00239{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9_c00239{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m100_c00239{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00239{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00239{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m87_c00239{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00239{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m20_c00239{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m32_c00239{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md6_c00239{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m116_c00239{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m111_c00239{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00239{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m75_c00239{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md_c00239{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mab_c00239{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m13_c00239{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m118_c00239{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md2_c00239{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00239{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00239{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m28_c00239{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00239{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00239{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00239{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md1_c00239{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m133_c00239{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00239{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00239{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00239{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00239{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00239{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m94_c00239{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m62_c00239{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me4_c00239{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m64_c00239{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m112_c00239{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00239{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5_c00239{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m39_c00239{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m52_c00239{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m46_c00239{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00239{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m38_c00239{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mde_c00239{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf_c00239{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m98_c00239{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00239{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00239{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mba_c00239{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00239{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00239{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m78_c00239{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m19_c00239{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00239{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m27_c00239{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md5_c00239{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m77_c00239{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me1_c00239{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00239{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m57_c00239{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m122_c00239{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00239{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m58_c00239{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00239{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00239{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m43_c00239{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00239{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m79_c00239{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m117_c00239{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00239{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00239{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m119_c00239{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m34_c00239{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00239{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00239{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00239{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m71_c00239{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m12_c00239{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00239{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00239{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00239{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00239{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m85_c00239{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4_c00239{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m127_c00239{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m55_c00239{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00239{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m126_c00239{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m16_c00239{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m47_c00239{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00239{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00239{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00239{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m65_c00239{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me9_c00239{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00239{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00239{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00239{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00239{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00239{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3_c00239{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00239{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m6_c00239{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m42_c00239{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00239{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m11_c00239{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m91_c00239{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00239{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m90_c00239{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00239{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00239{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m33_c00239{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c00239{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m107_c00239{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00239{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mff_c00239{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00239{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.maf_c00239{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.md4_c00239{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m110_c00239{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m66_c00239{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00239{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.mce_c00239{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m41_c00239{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00239{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m89_c00239{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00239{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00239{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00239{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.me3_c00239{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m15_c00239{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00239{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mae_c00239{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00239{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00239{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m54_c00239{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m120_c00239{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m69_c00239{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m96_c00239{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m53_c00239{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00239{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m97_c00239{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m73_c00239{transform:matrix(0.367000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00239{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00239{transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);}
.m135_c00239{transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00239{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m134_c00239{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m138_c00239{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.mad_c00239{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m136_c00239{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m72_c00239{transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00239{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00239{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m137_c00239{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.v1_c00239{vertical-align:13.200000px;}
.ls1_c00239{letter-spacing:0.000000px;}
.ls0_c00239{letter-spacing:48.125000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{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__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13_c00239{word-spacing:-78.125000px;}
.ws0_c00239{word-spacing:-22.038462px;}
.ws18_c00239{word-spacing:-9.761905px;}
.ws10_c00239{word-spacing:-9.439490px;}
.ws16_c00239{word-spacing:-8.283582px;}
.ws1a_c00239{word-spacing:0.000000px;}
.ws12_c00239{word-spacing:7.926829px;}
.ws19_c00239{word-spacing:16.361963px;}
.wse_c00239{word-spacing:17.500000px;}
.ws3_c00239{word-spacing:24.491803px;}
.ws11_c00239{word-spacing:25.714286px;}
.ws9_c00239{word-spacing:28.426230px;}
.wsa_c00239{word-spacing:32.360656px;}
.ws15_c00239{word-spacing:33.627907px;}
.ws5_c00239{word-spacing:39.750000px;}
.ws2_c00239{word-spacing:43.923664px;}
.wsd_c00239{word-spacing:44.166667px;}
.wsc_c00239{word-spacing:50.416667px;}
.ws4_c00239{word-spacing:59.954198px;}
.wsf_c00239{word-spacing:69.343788px;}
.ws6_c00239{word-spacing:71.689085px;}
.ws17_c00239{word-spacing:102.108865px;}
.ws8_c00239{word-spacing:214.333333px;}
.ws7_c00239{word-spacing:264.750000px;}
.ws1_c00239{word-spacing:315.285714px;}
.wsb_c00239{word-spacing:473.170732px;}
.ws14_c00239{word-spacing:995.000000px;}
._5_c00239{margin-left:-48.125000px;}
._4_c00239{width:52.142857px;}
._3_c00239{width:61.426230px;}
._1_c00239{width:63.000000px;}
._0_c00239{width:65.360656px;}
._2_c00239{width:651.750000px;}
._6_c00239{width:2365.000000px;}
.fc0_c00239{color:transparent;}
.fs3_c00239{font-size:24.000000px;}
.fs5_c00239{font-size:36.000000px;}
.fs4_c00239{font-size:48.000000px;}
.fs6_c00239{font-size:54.000000px;}
.fs0_c00239{font-size:60.000000px;}
.fs2_c00239{font-size:66.000000px;}
.fs1_c00239{font-size:72.000000px;}
.fs7_c00239{font-size:78.000000px;}
.fs8_c00239{font-size:96.000000px;}
.y0_c00239{bottom:0.000000px;}
.y69_c00239{bottom:65.250000px;}
.y68_c00239{bottom:226.950000px;}
.y67_c00239{bottom:244.650000px;}
.y64_c00239{bottom:259.500000px;}
.y66_c00239{bottom:262.350000px;}
.y65_c00239{bottom:272.400000px;}
.y63_c00239{bottom:280.350000px;}
.y4d_c00239{bottom:290.550000px;}
.y5c_c00239{bottom:291.450000px;}
.y62_c00239{bottom:300.900000px;}
.y4b_c00239{bottom:305.550000px;}
.y5b_c00239{bottom:308.700000px;}
.y4c_c00239{bottom:315.750000px;}
.y49_c00239{bottom:321.450000px;}
.y5a_c00239{bottom:326.700000px;}
.y4a_c00239{bottom:334.050000px;}
.y59_c00239{bottom:344.400000px;}
.y48_c00239{bottom:352.050000px;}
.y58_c00239{bottom:362.100000px;}
.y47_c00239{bottom:366.450000px;}
.y57_c00239{bottom:380.400000px;}
.y46_c00239{bottom:387.000000px;}
.y56_c00239{bottom:395.100000px;}
.y45_c00239{bottom:405.750000px;}
.y55_c00239{bottom:415.200000px;}
.y44_c00239{bottom:423.750000px;}
.y54_c00239{bottom:432.900000px;}
.y43_c00239{bottom:441.450000px;}
.y53_c00239{bottom:450.900000px;}
.y42_c00239{bottom:452.550000px;}
.y61_c00239{bottom:459.150000px;}
.y52_c00239{bottom:468.600000px;}
.y41_c00239{bottom:468.750000px;}
.y60_c00239{bottom:476.850000px;}
.y40_c00239{bottom:482.400000px;}
.y51_c00239{bottom:486.600000px;}
.y5f_c00239{bottom:494.850000px;}
.y3f_c00239{bottom:499.650000px;}
.y50_c00239{bottom:504.300000px;}
.y5e_c00239{bottom:512.550000px;}
.y3e_c00239{bottom:516.600000px;}
.y4f_c00239{bottom:522.600000px;}
.y5d_c00239{bottom:530.250000px;}
.y3d_c00239{bottom:537.150000px;}
.y4e_c00239{bottom:540.300000px;}
.y3c_c00239{bottom:546.450000px;}
.y3b_c00239{bottom:562.350000px;}
.y3a_c00239{bottom:577.500000px;}
.y39_c00239{bottom:603.000000px;}
.y38_c00239{bottom:621.750000px;}
.y36_c00239{bottom:627.900000px;}
.y37_c00239{bottom:631.500000px;}
.y35_c00239{bottom:646.200000px;}
.y34_c00239{bottom:663.150000px;}
.y2d_c00239{bottom:666.300000px;}
.y33_c00239{bottom:681.450000px;}
.y2c_c00239{bottom:684.000000px;}
.y32_c00239{bottom:699.450000px;}
.y2b_c00239{bottom:702.000000px;}
.y31_c00239{bottom:709.950000px;}
.y2a_c00239{bottom:719.250000px;}
.y29_c00239{bottom:729.750000px;}
.y30_c00239{bottom:734.400000px;}
.y28_c00239{bottom:737.700000px;}
.y27_c00239{bottom:744.900000px;}
.y2f_c00239{bottom:752.400000px;}
.y2e_c00239{bottom:759.900000px;}
.y26_c00239{bottom:768.900000px;}
.y25_c00239{bottom:777.600000px;}
.y24_c00239{bottom:795.600000px;}
.y23_c00239{bottom:796.650000px;}
.y20_c00239{bottom:807.900000px;}
.y21_c00239{bottom:819.450000px;}
.y22_c00239{bottom:835.950000px;}
.y1f_c00239{bottom:855.450000px;}
.y1e_c00239{bottom:861.900000px;}
.yd_c00239{bottom:864.000000px;}
.y1d_c00239{bottom:879.150000px;}
.y1c_c00239{bottom:898.950000px;}
.y1b_c00239{bottom:914.850000px;}
.y1a_c00239{bottom:925.950000px;}
.y18_c00239{bottom:933.450000px;}
.y19_c00239{bottom:934.200000px;}
.y17_c00239{bottom:954.300000px;}
.y14_c00239{bottom:968.400000px;}
.y16_c00239{bottom:974.100000px;}
.y15_c00239{bottom:992.100000px;}
.y13_c00239{bottom:1010.100000px;}
.y12_c00239{bottom:1027.800000px;}
.y11_c00239{bottom:1045.800000px;}
.yf_c00239{bottom:1062.750000px;}
.y10_c00239{bottom:1063.050000px;}
.ye_c00239{bottom:1064.550000px;}
.y9_c00239{bottom:1072.500000px;}
.yc_c00239{bottom:1081.050000px;}
.ya_c00239{bottom:1082.250000px;}
.yb_c00239{bottom:1095.600000px;}
.y7_c00239{bottom:1098.900000px;}
.y8_c00239{bottom:1099.500000px;}
.y6_c00239{bottom:1116.600000px;}
.y5_c00239{bottom:1134.600000px;}
.y4_c00239{bottom:1141.500000px;}
.y2_c00239{bottom:1145.100000px;}
.y3_c00239{bottom:1146.600000px;}
.y1_c00239{bottom:1175.400000px;}
.h5_c00239{height:24.000000px;}
.h7_c00239{height:36.000000px;}
.h6_c00239{height:48.000000px;}
.h8_c00239{height:54.000000px;}
.h2_c00239{height:60.000000px;}
.h4_c00239{height:66.000000px;}
.h3_c00239{height:72.000000px;}
.h9_c00239{height:78.000000px;}
.ha_c00239{height:79.200000px;}
.hb_c00239{height:96.000000px;}
.h1_c00239{height:1333.500000px;}
.h0_c00239{height:1333.800018px;}
.w1_c00239{width:963.000000px;}
.w0_c00239{width:963.359985px;}
.x0_c00239{left:0.000000px;}
.x7_c00239{left:110.550000px;}
.x11_c00239{left:113.400000px;}
.x52_c00239{left:117.300000px;}
.x7c_c00239{left:123.300000px;}
.x12_c00239{left:131.700000px;}
.x35_c00239{left:133.200000px;}
.x3c_c00239{left:135.300000px;}
.x56_c00239{left:137.100000px;}
.x6e_c00239{left:140.700000px;}
.xa4_c00239{left:142.500000px;}
.xcb_c00239{left:147.450000px;}
.x8_c00239{left:149.100000px;}
.xfe_c00239{left:153.900000px;}
.x96_c00239{left:156.450000px;}
.xb3_c00239{left:157.800000px;}
.xc3_c00239{left:159.900000px;}
.xdb_c00239{left:162.450000px;}
.x53_c00239{left:164.100000px;}
.x12b_c00239{left:167.100000px;}
.xfa_c00239{left:168.450000px;}
.x120_c00239{left:169.500000px;}
.x36_c00239{left:172.050000px;}
.xe1_c00239{left:173.250000px;}
.xa5_c00239{left:174.600000px;}
.x162_c00239{left:175.650000px;}
.x6f_c00239{left:177.450000px;}
.x97_c00239{left:179.850000px;}
.x13_c00239{left:181.800000px;}
.xc8_c00239{left:184.050000px;}
.x61_c00239{left:185.700000px;}
.x7d_c00239{left:187.050000px;}
.x173_c00239{left:189.150000px;}
.x175_c00239{left:190.200000px;}
.x57_c00239{left:191.400000px;}
.x121_c00239{left:193.650000px;}
.x126_c00239{left:194.700000px;}
.x70_c00239{left:196.500000px;}
.x182_c00239{left:197.700000px;}
.x98_c00239{left:199.650000px;}
.xcd_c00239{left:205.950000px;}
.xc9_c00239{left:207.750000px;}
.xb4_c00239{left:209.250000px;}
.x37_c00239{left:211.350000px;}
.x16f_c00239{left:213.300000px;}
.x99_c00239{left:215.550000px;}
.x9_c00239{left:216.750000px;}
.x62_c00239{left:219.600000px;}
.x16c_c00239{left:221.700000px;}
.xa6_c00239{left:222.900000px;}
.x88_c00239{left:225.000000px;}
.x104_c00239{left:226.650000px;}
.x13a_c00239{left:228.000000px;}
.x71_c00239{left:230.400000px;}
.xe2_c00239{left:231.600000px;}
.xdc_c00239{left:233.250000px;}
.x54_c00239{left:236.100000px;}
.x127_c00239{left:237.600000px;}
.x12a_c00239{left:239.700000px;}
.xa_c00239{left:242.250000px;}
.x9a_c00239{left:243.600000px;}
.x172_c00239{left:245.100000px;}
.xe3_c00239{left:247.050000px;}
.x93_c00239{left:248.100000px;}
.x72_c00239{left:250.950000px;}
.x7e_c00239{left:252.600000px;}
.xe4_c00239{left:254.250000px;}
.x164_c00239{left:255.600000px;}
.x163_c00239{left:256.950000px;}
.x14_c00239{left:258.900000px;}
.xce_c00239{left:259.950000px;}
.xe5_c00239{left:261.450000px;}
.xb5_c00239{left:262.950000px;}
.xfb_c00239{left:264.900000px;}
.xcf_c00239{left:267.150000px;}
.xe6_c00239{left:269.400000px;}
.x73_c00239{left:270.750000px;}
.xb_c00239{left:272.550000px;}
.xd0_c00239{left:274.650000px;}
.x89_c00239{left:275.700000px;}
.x123_c00239{left:276.750000px;}
.x38_c00239{left:278.700000px;}
.x105_c00239{left:279.900000px;}
.x55_c00239{left:282.600000px;}
.xa7_c00239{left:284.400000px;}
.x58_c00239{left:286.050000px;}
.x129_c00239{left:289.350000px;}
.xa8_c00239{left:291.900000px;}
.xb6_c00239{left:293.250000px;}
.x39_c00239{left:295.200000px;}
.xd1_c00239{left:296.550000px;}
.xa9_c00239{left:299.850000px;}
.x135_c00239{left:301.500000px;}
.xd2_c00239{left:303.750000px;}
.xc_c00239{left:304.950000px;}
.x59_c00239{left:306.150000px;}
.xb7_c00239{left:307.650000px;}
.x9b_c00239{left:309.450000px;}
.xe7_c00239{left:312.600000px;}
.x15_c00239{left:314.700000px;}
.x131_c00239{left:315.750000px;}
.x3a_c00239{left:317.850000px;}
.x8a_c00239{left:318.900000px;}
.xe8_c00239{left:320.100000px;}
.xaa_c00239{left:321.450000px;}
.xc4_c00239{left:324.300000px;}
.xe9_c00239{left:327.300000px;}
.xfc_c00239{left:328.950000px;}
.xb8_c00239{left:330.000000px;}
.x165_c00239{left:331.500000px;}
.xd_c00239{left:332.700000px;}
.x3b_c00239{left:334.800000px;}
.xab_c00239{left:335.850000px;}
.xb9_c00239{left:337.200000px;}
.x1d_c00239{left:338.550000px;}
.xcc_c00239{left:339.750000px;}
.xea_c00239{left:341.700000px;}
.x16_c00239{left:343.800000px;}
.x170_c00239{left:345.150000px;}
.x63_c00239{left:347.400000px;}
.x124_c00239{left:350.550000px;}
.x3d_c00239{left:352.050000px;}
.x136_c00239{left:354.150000px;}
.x7f_c00239{left:355.650000px;}
.xac_c00239{left:357.450000px;}
.xba_c00239{left:358.500000px;}
.x5a_c00239{left:360.900000px;}
.xd3_c00239{left:362.100000px;}
.x122_c00239{left:363.900000px;}
.xad_c00239{left:365.400000px;}
.x8b_c00239{left:366.750000px;}
.xd4_c00239{left:369.300000px;}
.x168_c00239{left:370.350000px;}
.xe_c00239{left:371.550000px;}
.xae_c00239{left:372.600000px;}
.x171_c00239{left:374.700000px;}
.x3e_c00239{left:375.750000px;}
.x106_c00239{left:376.800000px;}
.x64_c00239{left:378.750000px;}
.xaf_c00239{left:380.100000px;}
.x5b_c00239{left:381.750000px;}
.x16a_c00239{left:383.100000px;}
.x107_c00239{left:384.300000px;}
.x132_c00239{left:385.500000px;}
.x43_c00239{left:386.700000px;}
.x125_c00239{left:389.400000px;}
.x3f_c00239{left:390.900000px;}
.x1e_c00239{left:392.850000px;}
.x174_c00239{left:394.650000px;}
.x17_c00239{left:396.300000px;}
.x94_c00239{left:398.250000px;}
.xbb_c00239{left:400.200000px;}
.xc5_c00239{left:401.700000px;}
.xf_c00239{left:403.950000px;}
.xeb_c00239{left:405.150000px;}
.xf4_c00239{left:407.400000px;}
.xff_c00239{left:409.200000px;}
.x108_c00239{left:412.350000px;}
.x10c_c00239{left:413.850000px;}
.x12c_c00239{left:415.800000px;}
.x10_c00239{left:417.300000px;}
.x18_c00239{left:418.950000px;}
.x5c_c00239{left:421.050000px;}
.x166_c00239{left:423.000000px;}
.x40_c00239{left:424.050000px;}
.x16d_c00239{left:425.400000px;}
.x95_c00239{left:427.050000px;}
.x13b_c00239{left:428.850000px;}
.x65_c00239{left:430.650000px;}
.xd5_c00239{left:431.700000px;}
.xec_c00239{left:433.950000px;}
.x12e_c00239{left:435.000000px;}
.x1f_c00239{left:437.100000px;}
.x177_c00239{left:438.150000px;}
.x41_c00239{left:439.200000px;}
.x109_c00239{left:440.850000px;}
.x169_c00239{left:442.650000px;}
.x12f_c00239{left:443.700000px;}
.x176_c00239{left:445.950000px;}
.x13c_c00239{left:447.150000px;}
.x80_c00239{left:450.000000px;}
.x8c_c00239{left:454.650000px;}
.x5d_c00239{left:457.050000px;}
.xbc_c00239{left:458.550000px;}
.xd6_c00239{left:460.500000px;}
.xed_c00239{left:462.750000px;}
.xf5_c00239{left:465.000000px;}
.x100_c00239{left:466.800000px;}
.x10a_c00239{left:468.600000px;}
.x133_c00239{left:470.400000px;}
.x183_c00239{left:472.050000px;}
.x141_c00239{left:474.450000px;}
.x16b_c00239{left:476.250000px;}
.x20_c00239{left:477.750000px;}
.x128_c00239{left:480.750000px;}
.x189_c00239{left:481.950000px;}
.x51_c00239{left:484.500000px;}
.x167_c00239{left:488.550000px;}
.x16e_c00239{left:490.500000px;}
.x19_c00239{left:494.550000px;}
.x21_c00239{left:495.750000px;}
.x44_c00239{left:498.300000px;}
.x5e_c00239{left:500.250000px;}
.x101_c00239{left:502.500000px;}
.x42_c00239{left:503.700000px;}
.x8d_c00239{left:505.350000px;}
.x9c_c00239{left:507.300000px;}
.x186_c00239{left:508.950000px;}
.xbd_c00239{left:510.750000px;}
.x2b_c00239{left:513.450000px;}
.xee_c00239{left:515.250000px;}
.x10b_c00239{left:519.000000px;}
.x74_c00239{left:521.700000px;}
.x113_c00239{left:523.050000px;}
.x8e_c00239{left:524.100000px;}
.x81_c00239{left:525.900000px;}
.x118_c00239{left:528.150000px;}
.x2c_c00239{left:529.950000px;}
.xbe_c00239{left:531.300000px;}
.x45_c00239{left:533.250000px;}
.x5f_c00239{left:534.450000px;}
.x22_c00239{left:535.650000px;}
.x10d_c00239{left:540.150000px;}
.x66_c00239{left:542.250000px;}
.x14d_c00239{left:543.750000px;}
.x1a_c00239{left:545.250000px;}
.x2d_c00239{left:547.650000px;}
.x147_c00239{left:549.000000px;}
.x130_c00239{left:551.100000px;}
.x23_c00239{left:552.600000px;}
.xd7_c00239{left:553.800000px;}
.x46_c00239{left:555.150000px;}
.x15e_c00239{left:556.350000px;}
.x82_c00239{left:557.550000px;}
.x161_c00239{left:558.750000px;}
.x67_c00239{left:559.950000px;}
.x188_c00239{left:562.200000px;}
.x119_c00239{left:563.850000px;}
.x12d_c00239{left:565.200000px;}
.x114_c00239{left:567.750000px;}
.x142_c00239{left:569.400000px;}
.x9d_c00239{left:570.600000px;}
.x24_c00239{left:574.950000px;}
.x1b_c00239{left:578.700000px;}
.x75_c00239{left:580.350000px;}
.x10e_c00239{left:582.600000px;}
.x2e_c00239{left:583.650000px;}
.x11a_c00239{left:585.750000px;}
.xb0_c00239{left:587.850000px;}
.x60_c00239{left:589.500000px;}
.x1c_c00239{left:591.300000px;}
.xbf_c00239{left:593.550000px;}
.x25_c00239{left:594.750000px;}
.x47_c00239{left:596.550000px;}
.x9e_c00239{left:599.100000px;}
.x1_c00239{left:600.450000px;}
.xc0_c00239{left:602.550000px;}
.xca_c00239{left:604.800000px;}
.xb1_c00239{left:607.350000px;}
.xd8_c00239{left:609.300000px;}
.x2f_c00239{left:610.650000px;}
.x184_c00239{left:612.150000px;}
.x76_c00239{left:613.500000px;}
.x68_c00239{left:614.700000px;}
.x2_c00239{left:619.200000px;}
.x4b_c00239{left:620.250000px;}
.xdd_c00239{left:624.150000px;}
.x10f_c00239{left:625.500000px;}
.x83_c00239{left:627.900000px;}
.xd9_c00239{left:629.100000px;}
.x14f_c00239{left:632.100000px;}
.x8f_c00239{left:633.150000px;}
.xf0_c00239{left:635.100000px;}
.x134_c00239{left:636.750000px;}
.x15f_c00239{left:639.150000px;}
.xf6_c00239{left:641.850000px;}
.x9f_c00239{left:643.050000px;}
.xde_c00239{left:644.250000px;}
.x26_c00239{left:645.900000px;}
.x102_c00239{left:648.300000px;}
.x111_c00239{left:649.500000px;}
.x84_c00239{left:651.000000px;}
.x157_c00239{left:657.600000px;}
.x77_c00239{left:658.800000px;}
.x14b_c00239{left:660.450000px;}
.x30_c00239{left:662.100000px;}
.x27_c00239{left:663.150000px;}
.x3_c00239{left:664.950000px;}
.xdf_c00239{left:666.900000px;}
.x69_c00239{left:668.700000px;}
.xf1_c00239{left:670.050000px;}
.x117_c00239{left:671.700000px;}
.x112_c00239{left:672.900000px;}
.x14a_c00239{left:674.250000px;}
.x14c_c00239{left:676.950000px;}
.xf7_c00239{left:678.600000px;}
.x11d_c00239{left:679.650000px;}
.x11b_c00239{left:681.600000px;}
.x31_c00239{left:682.650000px;}
.x48_c00239{left:684.000000px;}
.x90_c00239{left:685.050000px;}
.x159_c00239{left:686.550000px;}
.x4c_c00239{left:689.400000px;}
.x11f_c00239{left:691.650000px;}
.x85_c00239{left:692.700000px;}
.x151_c00239{left:695.550000px;}
.x4d_c00239{left:698.700000px;}
.xa0_c00239{left:699.900000px;}
.x11e_c00239{left:702.000000px;}
.x49_c00239{left:703.500000px;}
.x6a_c00239{left:705.450000px;}
.x13d_c00239{left:708.000000px;}
.x78_c00239{left:709.200000px;}
.x15c_c00239{left:711.750000px;}
.xc1_c00239{left:713.850000px;}
.x14e_c00239{left:716.400000px;}
.x13e_c00239{left:718.500000px;}
.x28_c00239{left:720.450000px;}
.x4e_c00239{left:722.100000px;}
.x137_c00239{left:724.200000px;}
.x4a_c00239{left:725.400000px;}
.x13f_c00239{left:727.200000px;}
.xf8_c00239{left:729.750000px;}
.x79_c00239{left:732.300000px;}
.x32_c00239{left:733.350000px;}
.x4_c00239{left:736.200000px;}
.x143_c00239{left:737.250000px;}
.x86_c00239{left:739.200000px;}
.xf2_c00239{left:740.850000px;}
.xe0_c00239{left:742.050000px;}
.xda_c00239{left:743.100000px;}
.x144_c00239{left:744.750000px;}
.xa1_c00239{left:745.950000px;}
.x29_c00239{left:747.750000px;}
.x179_c00239{left:749.550000px;}
.xc6_c00239{left:751.500000px;}
.x7a_c00239{left:753.600000px;}
.x115_c00239{left:754.650000px;}
.x15a_c00239{left:756.450000px;}
.x5_c00239{left:758.100000px;}
.x6b_c00239{left:759.900000px;}
.xc2_c00239{left:761.400000px;}
.x158_c00239{left:763.050000px;}
.x160_c00239{left:767.550000px;}
.xef_c00239{left:769.050000px;}
.xb2_c00239{left:770.100000px;}
.x4f_c00239{left:771.750000px;}
.x91_c00239{left:773.250000px;}
.x87_c00239{left:774.450000px;}
.x6c_c00239{left:776.850000px;}
.x178_c00239{left:778.650000px;}
.xa2_c00239{left:780.450000px;}
.x17f_c00239{left:781.650000px;}
.x11c_c00239{left:782.700000px;}
.x33_c00239{left:783.750000px;}
.x145_c00239{left:785.850000px;}
.x6_c00239{left:786.900000px;}
.x148_c00239{left:788.100000px;}
.x17d_c00239{left:789.150000px;}
.x2a_c00239{left:790.950000px;}
.x50_c00239{left:792.300000px;}
.x116_c00239{left:794.550000px;}
.xa3_c00239{left:796.650000px;}
.xf3_c00239{left:799.200000px;}
.x34_c00239{left:800.250000px;}
.x103_c00239{left:803.850000px;}
.x138_c00239{left:805.200000px;}
.x17a_c00239{left:806.400000px;}
.x154_c00239{left:808.800000px;}
.x92_c00239{left:810.300000px;}
.xc7_c00239{left:811.950000px;}
.x180_c00239{left:813.300000px;}
.x7b_c00239{left:815.550000px;}
.x6d_c00239{left:818.250000px;}
.x110_c00239{left:820.050000px;}
.x155_c00239{left:822.750000px;}
.xf9_c00239{left:825.150000px;}
.x17b_c00239{left:827.250000px;}
.x15d_c00239{left:828.900000px;}
.x152_c00239{left:830.250000px;}
.x187_c00239{left:832.800000px;}
.xfd_c00239{left:834.300000px;}
.x150_c00239{left:835.800000px;}
.x139_c00239{left:839.700000px;}
.x140_c00239{left:843.900000px;}
.x146_c00239{left:845.250000px;}
.x149_c00239{left:847.200000px;}
.x17e_c00239{left:852.900000px;}
.x15b_c00239{left:853.950000px;}
.x17c_c00239{left:855.000000px;}
.x181_c00239{left:860.400000px;}
.x153_c00239{left:861.600000px;}
.x156_c00239{left:871.050000px;}
.x185_c00239{left:872.400000px;}
.x18a_c00239{left:878.850000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.v1_c00239{vertical-align:11.733333pt;}
.ls1_c00239{letter-spacing:0.000000pt;}
.ls0_c00239{letter-spacing:42.777778pt;}
.ws13_c00239{word-spacing:-69.444444pt;}
.ws0_c00239{word-spacing:-19.589744pt;}
.ws18_c00239{word-spacing:-8.677249pt;}
.ws10_c00239{word-spacing:-8.390658pt;}
.ws16_c00239{word-spacing:-7.363184pt;}
.ws1a_c00239{word-spacing:0.000000pt;}
.ws12_c00239{word-spacing:7.046070pt;}
.ws19_c00239{word-spacing:14.543967pt;}
.wse_c00239{word-spacing:15.555556pt;}
.ws3_c00239{word-spacing:21.770492pt;}
.ws11_c00239{word-spacing:22.857143pt;}
.ws9_c00239{word-spacing:25.267760pt;}
.wsa_c00239{word-spacing:28.765027pt;}
.ws15_c00239{word-spacing:29.891473pt;}
.ws5_c00239{word-spacing:35.333333pt;}
.ws2_c00239{word-spacing:39.043257pt;}
.wsd_c00239{word-spacing:39.259259pt;}
.wsc_c00239{word-spacing:44.814815pt;}
.ws4_c00239{word-spacing:53.292621pt;}
.wsf_c00239{word-spacing:61.638922pt;}
.ws6_c00239{word-spacing:63.723631pt;}
.ws17_c00239{word-spacing:90.763436pt;}
.ws8_c00239{word-spacing:190.518519pt;}
.ws7_c00239{word-spacing:235.333333pt;}
.ws1_c00239{word-spacing:280.253968pt;}
.wsb_c00239{word-spacing:420.596206pt;}
.ws14_c00239{word-spacing:884.444444pt;}
._5_c00239{margin-left:-42.777778pt;}
._4_c00239{width:46.349206pt;}
._3_c00239{width:54.601093pt;}
._1_c00239{width:56.000000pt;}
._0_c00239{width:58.098361pt;}
._2_c00239{width:579.333333pt;}
._6_c00239{width:2102.222222pt;}
.fs3_c00239{font-size:21.333333pt;}
.fs5_c00239{font-size:32.000000pt;}
.fs4_c00239{font-size:42.666667pt;}
.fs6_c00239{font-size:48.000000pt;}
.fs0_c00239{font-size:53.333333pt;}
.fs2_c00239{font-size:58.666667pt;}
.fs1_c00239{font-size:64.000000pt;}
.fs7_c00239{font-size:69.333333pt;}
.fs8_c00239{font-size:85.333333pt;}
.y0_c00239{bottom:0.000000pt;}
.y69_c00239{bottom:58.000000pt;}
.y68_c00239{bottom:201.733333pt;}
.y67_c00239{bottom:217.466667pt;}
.y64_c00239{bottom:230.666667pt;}
.y66_c00239{bottom:233.200000pt;}
.y65_c00239{bottom:242.133333pt;}
.y63_c00239{bottom:249.200000pt;}
.y4d_c00239{bottom:258.266667pt;}
.y5c_c00239{bottom:259.066667pt;}
.y62_c00239{bottom:267.466667pt;}
.y4b_c00239{bottom:271.600000pt;}
.y5b_c00239{bottom:274.400000pt;}
.y4c_c00239{bottom:280.666667pt;}
.y49_c00239{bottom:285.733333pt;}
.y5a_c00239{bottom:290.400000pt;}
.y4a_c00239{bottom:296.933333pt;}
.y59_c00239{bottom:306.133333pt;}
.y48_c00239{bottom:312.933333pt;}
.y58_c00239{bottom:321.866667pt;}
.y47_c00239{bottom:325.733333pt;}
.y57_c00239{bottom:338.133333pt;}
.y46_c00239{bottom:344.000000pt;}
.y56_c00239{bottom:351.200000pt;}
.y45_c00239{bottom:360.666667pt;}
.y55_c00239{bottom:369.066667pt;}
.y44_c00239{bottom:376.666667pt;}
.y54_c00239{bottom:384.800000pt;}
.y43_c00239{bottom:392.400000pt;}
.y53_c00239{bottom:400.800000pt;}
.y42_c00239{bottom:402.266667pt;}
.y61_c00239{bottom:408.133333pt;}
.y52_c00239{bottom:416.533333pt;}
.y41_c00239{bottom:416.666667pt;}
.y60_c00239{bottom:423.866667pt;}
.y40_c00239{bottom:428.800000pt;}
.y51_c00239{bottom:432.533333pt;}
.y5f_c00239{bottom:439.866667pt;}
.y3f_c00239{bottom:444.133333pt;}
.y50_c00239{bottom:448.266667pt;}
.y5e_c00239{bottom:455.600000pt;}
.y3e_c00239{bottom:459.200000pt;}
.y4f_c00239{bottom:464.533333pt;}
.y5d_c00239{bottom:471.333333pt;}
.y3d_c00239{bottom:477.466667pt;}
.y4e_c00239{bottom:480.266667pt;}
.y3c_c00239{bottom:485.733333pt;}
.y3b_c00239{bottom:499.866667pt;}
.y3a_c00239{bottom:513.333333pt;}
.y39_c00239{bottom:536.000000pt;}
.y38_c00239{bottom:552.666667pt;}
.y36_c00239{bottom:558.133333pt;}
.y37_c00239{bottom:561.333333pt;}
.y35_c00239{bottom:574.400000pt;}
.y34_c00239{bottom:589.466667pt;}
.y2d_c00239{bottom:592.266667pt;}
.y33_c00239{bottom:605.733333pt;}
.y2c_c00239{bottom:608.000000pt;}
.y32_c00239{bottom:621.733333pt;}
.y2b_c00239{bottom:624.000000pt;}
.y31_c00239{bottom:631.066667pt;}
.y2a_c00239{bottom:639.333333pt;}
.y29_c00239{bottom:648.666667pt;}
.y30_c00239{bottom:652.800000pt;}
.y28_c00239{bottom:655.733333pt;}
.y27_c00239{bottom:662.133333pt;}
.y2f_c00239{bottom:668.800000pt;}
.y2e_c00239{bottom:675.466667pt;}
.y26_c00239{bottom:683.466667pt;}
.y25_c00239{bottom:691.200000pt;}
.y24_c00239{bottom:707.200000pt;}
.y23_c00239{bottom:708.133333pt;}
.y20_c00239{bottom:718.133333pt;}
.y21_c00239{bottom:728.400000pt;}
.y22_c00239{bottom:743.066667pt;}
.y1f_c00239{bottom:760.400000pt;}
.y1e_c00239{bottom:766.133333pt;}
.yd_c00239{bottom:768.000000pt;}
.y1d_c00239{bottom:781.466667pt;}
.y1c_c00239{bottom:799.066667pt;}
.y1b_c00239{bottom:813.200000pt;}
.y1a_c00239{bottom:823.066667pt;}
.y18_c00239{bottom:829.733333pt;}
.y19_c00239{bottom:830.400000pt;}
.y17_c00239{bottom:848.266667pt;}
.y14_c00239{bottom:860.800000pt;}
.y16_c00239{bottom:865.866667pt;}
.y15_c00239{bottom:881.866667pt;}
.y13_c00239{bottom:897.866667pt;}
.y12_c00239{bottom:913.600000pt;}
.y11_c00239{bottom:929.600000pt;}
.yf_c00239{bottom:944.666667pt;}
.y10_c00239{bottom:944.933333pt;}
.ye_c00239{bottom:946.266667pt;}
.y9_c00239{bottom:953.333333pt;}
.yc_c00239{bottom:960.933333pt;}
.ya_c00239{bottom:962.000000pt;}
.yb_c00239{bottom:973.866667pt;}
.y7_c00239{bottom:976.800000pt;}
.y8_c00239{bottom:977.333333pt;}
.y6_c00239{bottom:992.533333pt;}
.y5_c00239{bottom:1008.533333pt;}
.y4_c00239{bottom:1014.666667pt;}
.y2_c00239{bottom:1017.866667pt;}
.y3_c00239{bottom:1019.200000pt;}
.y1_c00239{bottom:1044.800000pt;}
.h5_c00239{height:21.333333pt;}
.h7_c00239{height:32.000000pt;}
.h6_c00239{height:42.666667pt;}
.h8_c00239{height:48.000000pt;}
.h2_c00239{height:53.333333pt;}
.h4_c00239{height:58.666667pt;}
.h3_c00239{height:64.000000pt;}
.h9_c00239{height:69.333333pt;}
.ha_c00239{height:70.400000pt;}
.hb_c00239{height:85.333333pt;}
.h1_c00239{height:1185.333333pt;}
.h0_c00239{height:1185.600016pt;}
.w1_c00239{width:856.000000pt;}
.w0_c00239{width:856.319987pt;}
.x0_c00239{left:0.000000pt;}
.x7_c00239{left:98.266667pt;}
.x11_c00239{left:100.800000pt;}
.x52_c00239{left:104.266667pt;}
.x7c_c00239{left:109.600000pt;}
.x12_c00239{left:117.066667pt;}
.x35_c00239{left:118.400000pt;}
.x3c_c00239{left:120.266667pt;}
.x56_c00239{left:121.866667pt;}
.x6e_c00239{left:125.066667pt;}
.xa4_c00239{left:126.666667pt;}
.xcb_c00239{left:131.066667pt;}
.x8_c00239{left:132.533333pt;}
.xfe_c00239{left:136.800000pt;}
.x96_c00239{left:139.066667pt;}
.xb3_c00239{left:140.266667pt;}
.xc3_c00239{left:142.133333pt;}
.xdb_c00239{left:144.400000pt;}
.x53_c00239{left:145.866667pt;}
.x12b_c00239{left:148.533333pt;}
.xfa_c00239{left:149.733333pt;}
.x120_c00239{left:150.666667pt;}
.x36_c00239{left:152.933333pt;}
.xe1_c00239{left:154.000000pt;}
.xa5_c00239{left:155.200000pt;}
.x162_c00239{left:156.133333pt;}
.x6f_c00239{left:157.733333pt;}
.x97_c00239{left:159.866667pt;}
.x13_c00239{left:161.600000pt;}
.xc8_c00239{left:163.600000pt;}
.x61_c00239{left:165.066667pt;}
.x7d_c00239{left:166.266667pt;}
.x173_c00239{left:168.133333pt;}
.x175_c00239{left:169.066667pt;}
.x57_c00239{left:170.133333pt;}
.x121_c00239{left:172.133333pt;}
.x126_c00239{left:173.066667pt;}
.x70_c00239{left:174.666667pt;}
.x182_c00239{left:175.733333pt;}
.x98_c00239{left:177.466667pt;}
.xcd_c00239{left:183.066667pt;}
.xc9_c00239{left:184.666667pt;}
.xb4_c00239{left:186.000000pt;}
.x37_c00239{left:187.866667pt;}
.x16f_c00239{left:189.600000pt;}
.x99_c00239{left:191.600000pt;}
.x9_c00239{left:192.666667pt;}
.x62_c00239{left:195.200000pt;}
.x16c_c00239{left:197.066667pt;}
.xa6_c00239{left:198.133333pt;}
.x88_c00239{left:200.000000pt;}
.x104_c00239{left:201.466667pt;}
.x13a_c00239{left:202.666667pt;}
.x71_c00239{left:204.800000pt;}
.xe2_c00239{left:205.866667pt;}
.xdc_c00239{left:207.333333pt;}
.x54_c00239{left:209.866667pt;}
.x127_c00239{left:211.200000pt;}
.x12a_c00239{left:213.066667pt;}
.xa_c00239{left:215.333333pt;}
.x9a_c00239{left:216.533333pt;}
.x172_c00239{left:217.866667pt;}
.xe3_c00239{left:219.600000pt;}
.x93_c00239{left:220.533333pt;}
.x72_c00239{left:223.066667pt;}
.x7e_c00239{left:224.533333pt;}
.xe4_c00239{left:226.000000pt;}
.x164_c00239{left:227.200000pt;}
.x163_c00239{left:228.400000pt;}
.x14_c00239{left:230.133333pt;}
.xce_c00239{left:231.066667pt;}
.xe5_c00239{left:232.400000pt;}
.xb5_c00239{left:233.733333pt;}
.xfb_c00239{left:235.466667pt;}
.xcf_c00239{left:237.466667pt;}
.xe6_c00239{left:239.466667pt;}
.x73_c00239{left:240.666667pt;}
.xb_c00239{left:242.266667pt;}
.xd0_c00239{left:244.133333pt;}
.x89_c00239{left:245.066667pt;}
.x123_c00239{left:246.000000pt;}
.x38_c00239{left:247.733333pt;}
.x105_c00239{left:248.800000pt;}
.x55_c00239{left:251.200000pt;}
.xa7_c00239{left:252.800000pt;}
.x58_c00239{left:254.266667pt;}
.x129_c00239{left:257.200000pt;}
.xa8_c00239{left:259.466667pt;}
.xb6_c00239{left:260.666667pt;}
.x39_c00239{left:262.400000pt;}
.xd1_c00239{left:263.600000pt;}
.xa9_c00239{left:266.533333pt;}
.x135_c00239{left:268.000000pt;}
.xd2_c00239{left:270.000000pt;}
.xc_c00239{left:271.066667pt;}
.x59_c00239{left:272.133333pt;}
.xb7_c00239{left:273.466667pt;}
.x9b_c00239{left:275.066667pt;}
.xe7_c00239{left:277.866667pt;}
.x15_c00239{left:279.733333pt;}
.x131_c00239{left:280.666667pt;}
.x3a_c00239{left:282.533333pt;}
.x8a_c00239{left:283.466667pt;}
.xe8_c00239{left:284.533333pt;}
.xaa_c00239{left:285.733333pt;}
.xc4_c00239{left:288.266667pt;}
.xe9_c00239{left:290.933333pt;}
.xfc_c00239{left:292.400000pt;}
.xb8_c00239{left:293.333333pt;}
.x165_c00239{left:294.666667pt;}
.xd_c00239{left:295.733333pt;}
.x3b_c00239{left:297.600000pt;}
.xab_c00239{left:298.533333pt;}
.xb9_c00239{left:299.733333pt;}
.x1d_c00239{left:300.933333pt;}
.xcc_c00239{left:302.000000pt;}
.xea_c00239{left:303.733333pt;}
.x16_c00239{left:305.600000pt;}
.x170_c00239{left:306.800000pt;}
.x63_c00239{left:308.800000pt;}
.x124_c00239{left:311.600000pt;}
.x3d_c00239{left:312.933333pt;}
.x136_c00239{left:314.800000pt;}
.x7f_c00239{left:316.133333pt;}
.xac_c00239{left:317.733333pt;}
.xba_c00239{left:318.666667pt;}
.x5a_c00239{left:320.800000pt;}
.xd3_c00239{left:321.866667pt;}
.x122_c00239{left:323.466667pt;}
.xad_c00239{left:324.800000pt;}
.x8b_c00239{left:326.000000pt;}
.xd4_c00239{left:328.266667pt;}
.x168_c00239{left:329.200000pt;}
.xe_c00239{left:330.266667pt;}
.xae_c00239{left:331.200000pt;}
.x171_c00239{left:333.066667pt;}
.x3e_c00239{left:334.000000pt;}
.x106_c00239{left:334.933333pt;}
.x64_c00239{left:336.666667pt;}
.xaf_c00239{left:337.866667pt;}
.x5b_c00239{left:339.333333pt;}
.x16a_c00239{left:340.533333pt;}
.x107_c00239{left:341.600000pt;}
.x132_c00239{left:342.666667pt;}
.x43_c00239{left:343.733333pt;}
.x125_c00239{left:346.133333pt;}
.x3f_c00239{left:347.466667pt;}
.x1e_c00239{left:349.200000pt;}
.x174_c00239{left:350.800000pt;}
.x17_c00239{left:352.266667pt;}
.x94_c00239{left:354.000000pt;}
.xbb_c00239{left:355.733333pt;}
.xc5_c00239{left:357.066667pt;}
.xf_c00239{left:359.066667pt;}
.xeb_c00239{left:360.133333pt;}
.xf4_c00239{left:362.133333pt;}
.xff_c00239{left:363.733333pt;}
.x108_c00239{left:366.533333pt;}
.x10c_c00239{left:367.866667pt;}
.x12c_c00239{left:369.600000pt;}
.x10_c00239{left:370.933333pt;}
.x18_c00239{left:372.400000pt;}
.x5c_c00239{left:374.266667pt;}
.x166_c00239{left:376.000000pt;}
.x40_c00239{left:376.933333pt;}
.x16d_c00239{left:378.133333pt;}
.x95_c00239{left:379.600000pt;}
.x13b_c00239{left:381.200000pt;}
.x65_c00239{left:382.800000pt;}
.xd5_c00239{left:383.733333pt;}
.xec_c00239{left:385.733333pt;}
.x12e_c00239{left:386.666667pt;}
.x1f_c00239{left:388.533333pt;}
.x177_c00239{left:389.466667pt;}
.x41_c00239{left:390.400000pt;}
.x109_c00239{left:391.866667pt;}
.x169_c00239{left:393.466667pt;}
.x12f_c00239{left:394.400000pt;}
.x176_c00239{left:396.400000pt;}
.x13c_c00239{left:397.466667pt;}
.x80_c00239{left:400.000000pt;}
.x8c_c00239{left:404.133333pt;}
.x5d_c00239{left:406.266667pt;}
.xbc_c00239{left:407.600000pt;}
.xd6_c00239{left:409.333333pt;}
.xed_c00239{left:411.333333pt;}
.xf5_c00239{left:413.333333pt;}
.x100_c00239{left:414.933333pt;}
.x10a_c00239{left:416.533333pt;}
.x133_c00239{left:418.133333pt;}
.x183_c00239{left:419.600000pt;}
.x141_c00239{left:421.733333pt;}
.x16b_c00239{left:423.333333pt;}
.x20_c00239{left:424.666667pt;}
.x128_c00239{left:427.333333pt;}
.x189_c00239{left:428.400000pt;}
.x51_c00239{left:430.666667pt;}
.x167_c00239{left:434.266667pt;}
.x16e_c00239{left:436.000000pt;}
.x19_c00239{left:439.600000pt;}
.x21_c00239{left:440.666667pt;}
.x44_c00239{left:442.933333pt;}
.x5e_c00239{left:444.666667pt;}
.x101_c00239{left:446.666667pt;}
.x42_c00239{left:447.733333pt;}
.x8d_c00239{left:449.200000pt;}
.x9c_c00239{left:450.933333pt;}
.x186_c00239{left:452.400000pt;}
.xbd_c00239{left:454.000000pt;}
.x2b_c00239{left:456.400000pt;}
.xee_c00239{left:458.000000pt;}
.x10b_c00239{left:461.333333pt;}
.x74_c00239{left:463.733333pt;}
.x113_c00239{left:464.933333pt;}
.x8e_c00239{left:465.866667pt;}
.x81_c00239{left:467.466667pt;}
.x118_c00239{left:469.466667pt;}
.x2c_c00239{left:471.066667pt;}
.xbe_c00239{left:472.266667pt;}
.x45_c00239{left:474.000000pt;}
.x5f_c00239{left:475.066667pt;}
.x22_c00239{left:476.133333pt;}
.x10d_c00239{left:480.133333pt;}
.x66_c00239{left:482.000000pt;}
.x14d_c00239{left:483.333333pt;}
.x1a_c00239{left:484.666667pt;}
.x2d_c00239{left:486.800000pt;}
.x147_c00239{left:488.000000pt;}
.x130_c00239{left:489.866667pt;}
.x23_c00239{left:491.200000pt;}
.xd7_c00239{left:492.266667pt;}
.x46_c00239{left:493.466667pt;}
.x15e_c00239{left:494.533333pt;}
.x82_c00239{left:495.600000pt;}
.x161_c00239{left:496.666667pt;}
.x67_c00239{left:497.733333pt;}
.x188_c00239{left:499.733333pt;}
.x119_c00239{left:501.200000pt;}
.x12d_c00239{left:502.400000pt;}
.x114_c00239{left:504.666667pt;}
.x142_c00239{left:506.133333pt;}
.x9d_c00239{left:507.200000pt;}
.x24_c00239{left:511.066667pt;}
.x1b_c00239{left:514.400000pt;}
.x75_c00239{left:515.866667pt;}
.x10e_c00239{left:517.866667pt;}
.x2e_c00239{left:518.800000pt;}
.x11a_c00239{left:520.666667pt;}
.xb0_c00239{left:522.533333pt;}
.x60_c00239{left:524.000000pt;}
.x1c_c00239{left:525.600000pt;}
.xbf_c00239{left:527.600000pt;}
.x25_c00239{left:528.666667pt;}
.x47_c00239{left:530.266667pt;}
.x9e_c00239{left:532.533333pt;}
.x1_c00239{left:533.733333pt;}
.xc0_c00239{left:535.600000pt;}
.xca_c00239{left:537.600000pt;}
.xb1_c00239{left:539.866667pt;}
.xd8_c00239{left:541.600000pt;}
.x2f_c00239{left:542.800000pt;}
.x184_c00239{left:544.133333pt;}
.x76_c00239{left:545.333333pt;}
.x68_c00239{left:546.400000pt;}
.x2_c00239{left:550.400000pt;}
.x4b_c00239{left:551.333333pt;}
.xdd_c00239{left:554.800000pt;}
.x10f_c00239{left:556.000000pt;}
.x83_c00239{left:558.133333pt;}
.xd9_c00239{left:559.200000pt;}
.x14f_c00239{left:561.866667pt;}
.x8f_c00239{left:562.800000pt;}
.xf0_c00239{left:564.533333pt;}
.x134_c00239{left:566.000000pt;}
.x15f_c00239{left:568.133333pt;}
.xf6_c00239{left:570.533333pt;}
.x9f_c00239{left:571.600000pt;}
.xde_c00239{left:572.666667pt;}
.x26_c00239{left:574.133333pt;}
.x102_c00239{left:576.266667pt;}
.x111_c00239{left:577.333333pt;}
.x84_c00239{left:578.666667pt;}
.x157_c00239{left:584.533333pt;}
.x77_c00239{left:585.600000pt;}
.x14b_c00239{left:587.066667pt;}
.x30_c00239{left:588.533333pt;}
.x27_c00239{left:589.466667pt;}
.x3_c00239{left:591.066667pt;}
.xdf_c00239{left:592.800000pt;}
.x69_c00239{left:594.400000pt;}
.xf1_c00239{left:595.600000pt;}
.x117_c00239{left:597.066667pt;}
.x112_c00239{left:598.133333pt;}
.x14a_c00239{left:599.333333pt;}
.x14c_c00239{left:601.733333pt;}
.xf7_c00239{left:603.200000pt;}
.x11d_c00239{left:604.133333pt;}
.x11b_c00239{left:605.866667pt;}
.x31_c00239{left:606.800000pt;}
.x48_c00239{left:608.000000pt;}
.x90_c00239{left:608.933333pt;}
.x159_c00239{left:610.266667pt;}
.x4c_c00239{left:612.800000pt;}
.x11f_c00239{left:614.800000pt;}
.x85_c00239{left:615.733333pt;}
.x151_c00239{left:618.266667pt;}
.x4d_c00239{left:621.066667pt;}
.xa0_c00239{left:622.133333pt;}
.x11e_c00239{left:624.000000pt;}
.x49_c00239{left:625.333333pt;}
.x6a_c00239{left:627.066667pt;}
.x13d_c00239{left:629.333333pt;}
.x78_c00239{left:630.400000pt;}
.x15c_c00239{left:632.666667pt;}
.xc1_c00239{left:634.533333pt;}
.x14e_c00239{left:636.800000pt;}
.x13e_c00239{left:638.666667pt;}
.x28_c00239{left:640.400000pt;}
.x4e_c00239{left:641.866667pt;}
.x137_c00239{left:643.733333pt;}
.x4a_c00239{left:644.800000pt;}
.x13f_c00239{left:646.400000pt;}
.xf8_c00239{left:648.666667pt;}
.x79_c00239{left:650.933333pt;}
.x32_c00239{left:651.866667pt;}
.x4_c00239{left:654.400000pt;}
.x143_c00239{left:655.333333pt;}
.x86_c00239{left:657.066667pt;}
.xf2_c00239{left:658.533333pt;}
.xe0_c00239{left:659.600000pt;}
.xda_c00239{left:660.533333pt;}
.x144_c00239{left:662.000000pt;}
.xa1_c00239{left:663.066667pt;}
.x29_c00239{left:664.666667pt;}
.x179_c00239{left:666.266667pt;}
.xc6_c00239{left:668.000000pt;}
.x7a_c00239{left:669.866667pt;}
.x115_c00239{left:670.800000pt;}
.x15a_c00239{left:672.400000pt;}
.x5_c00239{left:673.866667pt;}
.x6b_c00239{left:675.466667pt;}
.xc2_c00239{left:676.800000pt;}
.x158_c00239{left:678.266667pt;}
.x160_c00239{left:682.266667pt;}
.xef_c00239{left:683.600000pt;}
.xb2_c00239{left:684.533333pt;}
.x4f_c00239{left:686.000000pt;}
.x91_c00239{left:687.333333pt;}
.x87_c00239{left:688.400000pt;}
.x6c_c00239{left:690.533333pt;}
.x178_c00239{left:692.133333pt;}
.xa2_c00239{left:693.733333pt;}
.x17f_c00239{left:694.800000pt;}
.x11c_c00239{left:695.733333pt;}
.x33_c00239{left:696.666667pt;}
.x145_c00239{left:698.533333pt;}
.x6_c00239{left:699.466667pt;}
.x148_c00239{left:700.533333pt;}
.x17d_c00239{left:701.466667pt;}
.x2a_c00239{left:703.066667pt;}
.x50_c00239{left:704.266667pt;}
.x116_c00239{left:706.266667pt;}
.xa3_c00239{left:708.133333pt;}
.xf3_c00239{left:710.400000pt;}
.x34_c00239{left:711.333333pt;}
.x103_c00239{left:714.533333pt;}
.x138_c00239{left:715.733333pt;}
.x17a_c00239{left:716.800000pt;}
.x154_c00239{left:718.933333pt;}
.x92_c00239{left:720.266667pt;}
.xc7_c00239{left:721.733333pt;}
.x180_c00239{left:722.933333pt;}
.x7b_c00239{left:724.933333pt;}
.x6d_c00239{left:727.333333pt;}
.x110_c00239{left:728.933333pt;}
.x155_c00239{left:731.333333pt;}
.xf9_c00239{left:733.466667pt;}
.x17b_c00239{left:735.333333pt;}
.x15d_c00239{left:736.800000pt;}
.x152_c00239{left:738.000000pt;}
.x187_c00239{left:740.266667pt;}
.xfd_c00239{left:741.600000pt;}
.x150_c00239{left:742.933333pt;}
.x139_c00239{left:746.400000pt;}
.x140_c00239{left:750.133333pt;}
.x146_c00239{left:751.333333pt;}
.x149_c00239{left:753.066667pt;}
.x17e_c00239{left:758.133333pt;}
.x15b_c00239{left:759.066667pt;}
.x17c_c00239{left:760.000000pt;}
.x181_c00239{left:764.800000pt;}
.x153_c00239{left:765.866667pt;}
.x156_c00239{left:774.266667pt;}
.x185_c00239{left:775.466667pt;}
.x18a_c00239{left:781.200000pt;}
}





/* 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_c00240 {
    display:none;
  }
  .loading-indicator_c00240.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00240 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_c00240 { 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_c00240" -> "#page-container .classname_c00240")
 */
.pf_c00240 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00240 { /* 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_c00240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00240 { /* 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_c00240 { /* 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_c00240 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00240 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00240 {overflow:visible;}
  }
}
.c_c00240 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00240 { /* 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_c00240:after { /* webkit #35443 */
  content: '';
}
.t_c00240:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00240 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 */
}
.__c00240 { /* 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_c00240 { /* info for Javascript */
  display:none;
}
.l_c00240 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00240 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00240 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00240: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_c00240 {
    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_c00240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00240.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_c00240 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00240;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.000000;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;}
.m28_c00240{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m38_c00240{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m42_c00240{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.ma_c00240{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m100_c00240{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mee_c00240{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00240{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m5_c00240{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m12_c00240{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.maf_c00240{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00240{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00240{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00240{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00240{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00240{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00240{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md6_c00240{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00240{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m118_c00240{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00240{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m111_c00240{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.mea_c00240{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m77_c00240{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m43_c00240{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00240{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m93_c00240{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00240{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00240{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m75_c00240{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00240{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m34_c00240{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m44_c00240{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m107_c00240{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m40_c00240{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00240{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00240{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00240{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m6_c00240{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me5_c00240{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me8_c00240{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.md_c00240{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m101_c00240{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00240{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00240{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m4_c00240{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m78_c00240{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00240{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m58_c00240{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m113_c00240{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mac_c00240{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m106_c00240{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m69_c00240{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00240{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00240{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.me7_c00240{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00240{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00240{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00240{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m81_c00240{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.meb_c00240{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m50_c00240{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m48_c00240{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00240{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00240{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m57_c00240{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m88_c00240{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00240{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00240{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mad_c00240{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m64_c00240{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m37_c00240{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m7_c00240{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m60_c00240{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00240{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m15_c00240{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m97_c00240{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00240{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00240{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mab_c00240{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m41_c00240{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00240{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00240{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00240{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m63_c00240{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00240{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00240{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m56_c00240{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00240{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mce_c00240{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me6_c00240{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m90_c00240{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00240{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mca_c00240{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m47_c00240{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00240{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00240{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mff_c00240{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00240{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m110_c00240{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m74_c00240{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc_c00240{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00240{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00240{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00240{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mae_c00240{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9_c00240{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m67_c00240{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00240{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mba_c00240{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m17_c00240{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m91_c00240{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m103_c00240{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m61_c00240{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00240{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m36_c00240{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m11_c00240{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00240{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.me4_c00240{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3_c00240{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m55_c00240{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m16_c00240{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m102_c00240{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00240{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00240{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00240{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m14_c00240{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m117_c00240{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m85_c00240{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m53_c00240{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me2_c00240{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00240{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8_c00240{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00240{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00240{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00240{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.med_c00240{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00240{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m52_c00240{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2_c00240{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00240{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m25_c00240{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m62_c00240{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m89_c00240{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00240{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m26_c00240{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00240{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00240{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m116_c00240{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m87_c00240{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m30_c00240{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m112_c00240{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00240{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.maa_c00240{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00240{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m10_c00240{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00240{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00240{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00240{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00240{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00240{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00240{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00240{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00240{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00240{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m51_c00240{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00240{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00240{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m66_c00240{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me0_c00240{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mf_c00240{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m54_c00240{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00240{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00240{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m104_c00240{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.me_c00240{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m19_c00240{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m73_c00240{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m33_c00240{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00240{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md2_c00240{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md7_c00240{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m108_c00240{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m46_c00240{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00240{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m72_c00240{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m76_c00240{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m86_c00240{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00240{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00240{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md4_c00240{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb_c00240{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md3_c00240{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00240{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m49_c00240{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00240{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00240{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m13_c00240{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00240{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00240{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00240{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m68_c00240{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00240{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00240{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m24_c00240{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m80_c00240{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00240{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00240{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.md9_c00240{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mde_c00240{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00240{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m114_c00240{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00240{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m65_c00240{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m96_c00240{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00240{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00240{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md0_c00240{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00240{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m39_c00240{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md1_c00240{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);}
.md5_c00240{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00240{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00240{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m23_c00240{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m105_c00240{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00240{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m21_c00240{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m84_c00240{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00240{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m32_c00240{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00240{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m99_c00240{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00240{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00240{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m59_c00240{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m27_c00240{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m95_c00240{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m115_c00240{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00240{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m98_c00240{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m119_c00240{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00240{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m70_c00240{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m71_c00240{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00240{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00240{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00240{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md8_c00240{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00240{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.me3_c00240{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00240{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00240{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00240{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00240{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m35_c00240{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00240{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m31_c00240{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m83_c00240{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mec_c00240{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00240{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mef_c00240{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00240{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m92_c00240{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00240{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m94_c00240{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00240{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m79_c00240{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00240{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m109_c00240{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m45_c00240{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m82_c00240{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m29_c00240{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m22_c00240{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00240{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00240{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m20_c00240{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00240{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mda_c00240{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.me9_c00240{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.me1_c00240{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00240{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00240{transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00240{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00240{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls0_c00240{letter-spacing:0.000000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{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__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00240{word-spacing:-7.187500px;}
.ws6_c00240{word-spacing:-4.802646px;}
.ws0_c00240{word-spacing:-2.271845px;}
.ws3_c00240{word-spacing:-2.267516px;}
.ws8_c00240{word-spacing:0.000000px;}
.ws4_c00240{word-spacing:4.664921px;}
.ws5_c00240{word-spacing:4.750000px;}
.ws1_c00240{word-spacing:10.900763px;}
.ws2_c00240{word-spacing:11.410256px;}
.fc0_c00240{color:transparent;}
.fs6_c00240{font-size:30.000000px;}
.fs5_c00240{font-size:42.000000px;}
.fs4_c00240{font-size:54.000000px;}
.fs3_c00240{font-size:60.000000px;}
.fs1_c00240{font-size:66.000000px;}
.fs2_c00240{font-size:72.000000px;}
.fs0_c00240{font-size:78.000000px;}
.y0_c00240{bottom:0.000000px;}
.y33_c00240{bottom:193.650000px;}
.y64_c00240{bottom:194.700000px;}
.y63_c00240{bottom:209.400000px;}
.y32_c00240{bottom:213.450000px;}
.y62_c00240{bottom:223.800000px;}
.y61_c00240{bottom:238.200000px;}
.y31_c00240{bottom:243.150000px;}
.y60_c00240{bottom:252.600000px;}
.y30_c00240{bottom:262.200000px;}
.y5f_c00240{bottom:266.700000px;}
.y2f_c00240{bottom:280.200000px;}
.y5e_c00240{bottom:281.100000px;}
.y2e_c00240{bottom:297.900000px;}
.y2d_c00240{bottom:315.600000px;}
.y5d_c00240{bottom:332.850000px;}
.y2c_c00240{bottom:333.300000px;}
.y5c_c00240{bottom:350.550000px;}
.y2b_c00240{bottom:355.200000px;}
.y2a_c00240{bottom:372.900000px;}
.y5b_c00240{bottom:376.500000px;}
.y29_c00240{bottom:390.900000px;}
.y5a_c00240{bottom:394.950000px;}
.y28_c00240{bottom:411.900000px;}
.y59_c00240{bottom:412.950000px;}
.y58_c00240{bottom:430.200000px;}
.y27_c00240{bottom:431.250000px;}
.y26_c00240{bottom:449.550000px;}
.y57_c00240{bottom:452.100000px;}
.y25_c00240{bottom:467.550000px;}
.y56_c00240{bottom:483.150000px;}
.y24_c00240{bottom:485.250000px;}
.y55_c00240{bottom:501.150000px;}
.y23_c00240{bottom:503.250000px;}
.y54_c00240{bottom:519.150000px;}
.y22_c00240{bottom:524.850000px;}
.y53_c00240{bottom:540.000000px;}
.y21_c00240{bottom:542.550000px;}
.y52_c00240{bottom:554.100000px;}
.y20_c00240{bottom:560.550000px;}
.y51_c00240{bottom:573.750000px;}
.y1f_c00240{bottom:582.900000px;}
.y50_c00240{bottom:591.750000px;}
.y4f_c00240{bottom:609.450000px;}
.y1e_c00240{bottom:613.050000px;}
.y1d_c00240{bottom:631.050000px;}
.y4e_c00240{bottom:631.800000px;}
.y4d_c00240{bottom:649.500000px;}
.y1c_c00240{bottom:651.150000px;}
.y1b_c00240{bottom:670.650000px;}
.y4c_c00240{bottom:671.850000px;}
.y4b_c00240{bottom:689.100000px;}
.y1a_c00240{bottom:693.000000px;}
.y19_c00240{bottom:711.000000px;}
.y18_c00240{bottom:718.950000px;}
.y49_c00240{bottom:720.600000px;}
.y17_c00240{bottom:728.400000px;}
.y48_c00240{bottom:738.600000px;}
.y16_c00240{bottom:746.400000px;}
.y47_c00240{bottom:756.300000px;}
.y15_c00240{bottom:764.400000px;}
.y46_c00240{bottom:778.650000px;}
.y14_c00240{bottom:782.100000px;}
.y13_c00240{bottom:799.800000px;}
.y45_c00240{bottom:800.700000px;}
.y4a_c00240{bottom:802.800000px;}
.y12_c00240{bottom:817.500000px;}
.y44_c00240{bottom:818.700000px;}
.y43_c00240{bottom:836.700000px;}
.y11_c00240{bottom:838.500000px;}
.y42_c00240{bottom:854.400000px;}
.y10_c00240{bottom:858.300000px;}
.y41_c00240{bottom:872.100000px;}
.yf_c00240{bottom:876.000000px;}
.y40_c00240{bottom:890.100000px;}
.ye_c00240{bottom:894.300000px;}
.y3f_c00240{bottom:907.800000px;}
.yd_c00240{bottom:918.300000px;}
.y3e_c00240{bottom:925.500000px;}
.yc_c00240{bottom:933.750000px;}
.y3d_c00240{bottom:946.500000px;}
.yb_c00240{bottom:951.750000px;}
.y3c_c00240{bottom:966.300000px;}
.ya_c00240{bottom:969.450000px;}
.y3b_c00240{bottom:984.300000px;}
.y9_c00240{bottom:991.800000px;}
.y3a_c00240{bottom:1002.000000px;}
.y8_c00240{bottom:1018.500000px;}
.y39_c00240{bottom:1020.300000px;}
.y38_c00240{bottom:1038.300000px;}
.y7_c00240{bottom:1040.400000px;}
.y37_c00240{bottom:1059.750000px;}
.y6_c00240{bottom:1062.600000px;}
.y36_c00240{bottom:1077.750000px;}
.y5_c00240{bottom:1080.300000px;}
.y35_c00240{bottom:1095.450000px;}
.y4_c00240{bottom:1098.000000px;}
.y3_c00240{bottom:1115.700000px;}
.y34_c00240{bottom:1120.350000px;}
.y2_c00240{bottom:1137.600000px;}
.y1_c00240{bottom:1141.200000px;}
.h8_c00240{height:30.000000px;}
.h7_c00240{height:42.000000px;}
.h6_c00240{height:54.000000px;}
.h5_c00240{height:60.000000px;}
.h3_c00240{height:66.000000px;}
.h4_c00240{height:72.000000px;}
.h2_c00240{height:78.000000px;}
.h0_c00240{height:1267.200073px;}
.h1_c00240{height:1267.500000px;}
.w1_c00240{width:963.000000px;}
.w0_c00240{width:963.359985px;}
.x0_c00240{left:0.000000px;}
.x1e_c00240{left:84.000000px;}
.x1c_c00240{left:85.350000px;}
.x6b_c00240{left:86.700000px;}
.x26_c00240{left:89.250000px;}
.x43_c00240{left:100.500000px;}
.x3_c00240{left:102.300000px;}
.x15_c00240{left:103.350000px;}
.x6f_c00240{left:119.100000px;}
.x27_c00240{left:120.150000px;}
.x91_c00240{left:123.600000px;}
.x24_c00240{left:126.750000px;}
.x76_c00240{left:127.800000px;}
.x3a_c00240{left:129.600000px;}
.x44_c00240{left:135.750000px;}
.x3e_c00240{left:137.400000px;}
.x5b_c00240{left:138.450000px;}
.x36_c00240{left:140.700000px;}
.x16_c00240{left:142.650000px;}
.xd_c00240{left:144.150000px;}
.x1d_c00240{left:147.300000px;}
.x61_c00240{left:149.850000px;}
.x71_c00240{left:150.900000px;}
.x87_c00240{left:152.250000px;}
.x4_c00240{left:153.750000px;}
.x3f_c00240{left:157.500000px;}
.x6c_c00240{left:159.450000px;}
.x8f_c00240{left:162.150000px;}
.xe_c00240{left:163.950000px;}
.x5e_c00240{left:165.750000px;}
.x78_c00240{left:167.100000px;}
.x28_c00240{left:168.450000px;}
.x4d_c00240{left:169.950000px;}
.x62_c00240{left:171.750000px;}
.x5_c00240{left:173.550000px;}
.x68_c00240{left:178.050000px;}
.x1f_c00240{left:179.400000px;}
.x17_c00240{left:181.500000px;}
.x54_c00240{left:184.800000px;}
.xf_c00240{left:187.050000px;}
.x45_c00240{left:191.550000px;}
.x48_c00240{left:193.800000px;}
.x88_c00240{left:195.450000px;}
.x2e_c00240{left:197.100000px;}
.x3b_c00240{left:198.300000px;}
.x7a_c00240{left:200.250000px;}
.x83_c00240{left:201.900000px;}
.x65_c00240{left:203.700000px;}
.x7c_c00240{left:206.850000px;}
.x4e_c00240{left:208.050000px;}
.x7f_c00240{left:209.250000px;}
.x33_c00240{left:211.200000px;}
.x29_c00240{left:213.450000px;}
.x79_c00240{left:215.700000px;}
.x63_c00240{left:218.850000px;}
.x2f_c00240{left:220.200000px;}
.x49_c00240{left:221.850000px;}
.x74_c00240{left:223.650000px;}
.x8b_c00240{left:225.600000px;}
.x4f_c00240{left:226.800000px;}
.x6_c00240{left:227.850000px;}
.x69_c00240{left:229.200000px;}
.x46_c00240{left:231.900000px;}
.x10_c00240{left:235.650000px;}
.x7_c00240{left:238.950000px;}
.x55_c00240{left:240.900000px;}
.x20_c00240{left:242.100000px;}
.x47_c00240{left:243.450000px;}
.x77_c00240{left:244.500000px;}
.x37_c00240{left:245.850000px;}
.x64_c00240{left:246.900000px;}
.x80_c00240{left:249.000000px;}
.x2a_c00240{left:252.300000px;}
.x4a_c00240{left:253.500000px;}
.x6a_c00240{left:258.750000px;}
.x56_c00240{left:261.450000px;}
.x34_c00240{left:263.100000px;}
.x85_c00240{left:264.600000px;}
.x40_c00240{left:265.950000px;}
.x21_c00240{left:267.000000px;}
.x38_c00240{left:270.750000px;}
.x8c_c00240{left:272.100000px;}
.x18_c00240{left:275.100000px;}
.x6d_c00240{left:276.300000px;}
.x4b_c00240{left:279.750000px;}
.x75_c00240{left:281.550000px;}
.x5c_c00240{left:282.750000px;}
.x66_c00240{left:284.400000px;}
.x50_c00240{left:288.300000px;}
.x84_c00240{left:289.350000px;}
.x19_c00240{left:293.400000px;}
.x4c_c00240{left:295.650000px;}
.x3c_c00240{left:297.300000px;}
.x8_c00240{left:300.150000px;}
.x5f_c00240{left:301.200000px;}
.x22_c00240{left:302.700000px;}
.x67_c00240{left:306.000000px;}
.x57_c00240{left:308.550000px;}
.x72_c00240{left:310.050000px;}
.x11_c00240{left:311.550000px;}
.x86_c00240{left:313.500000px;}
.x6e_c00240{left:316.200000px;}
.x7b_c00240{left:317.250000px;}
.x41_c00240{left:321.450000px;}
.x23_c00240{left:323.550000px;}
.x1_c00240{left:324.750000px;}
.x9_c00240{left:327.150000px;}
.x60_c00240{left:331.050000px;}
.x1a_c00240{left:332.700000px;}
.x5d_c00240{left:334.500000px;}
.x70_c00240{left:337.950000px;}
.x12_c00240{left:340.650000px;}
.x30_c00240{left:342.600000px;}
.x58_c00240{left:344.250000px;}
.x2b_c00240{left:346.200000px;}
.x8d_c00240{left:348.150000px;}
.x81_c00240{left:349.350000px;}
.x7d_c00240{left:351.000000px;}
.x92_c00240{left:352.050000px;}
.x3d_c00240{left:353.400000px;}
.x1b_c00240{left:355.050000px;}
.x39_c00240{left:357.900000px;}
.x51_c00240{left:362.400000px;}
.x89_c00240{left:366.000000px;}
.x73_c00240{left:367.650000px;}
.x52_c00240{left:371.700000px;}
.x31_c00240{left:373.500000px;}
.x25_c00240{left:374.700000px;}
.x59_c00240{left:375.750000px;}
.xa_c00240{left:379.350000px;}
.x13_c00240{left:382.350000px;}
.x90_c00240{left:384.600000px;}
.x2c_c00240{left:385.800000px;}
.x8a_c00240{left:387.900000px;}
.x5a_c00240{left:391.200000px;}
.x14_c00240{left:392.400000px;}
.x8e_c00240{left:393.900000px;}
.x7e_c00240{left:396.000000px;}
.xb_c00240{left:399.450000px;}
.x35_c00240{left:401.250000px;}
.x82_c00240{left:403.950000px;}
.x53_c00240{left:405.150000px;}
.x32_c00240{left:407.400000px;}
.x42_c00240{left:409.350000px;}
.x2d_c00240{left:416.400000px;}
.xc_c00240{left:430.350000px;}
.xe9_c00240{left:434.850000px;}
.x11e_c00240{left:439.950000px;}
.x103_c00240{left:441.000000px;}
.xb0_c00240{left:442.050000px;}
.xf6_c00240{left:443.850000px;}
.x122_c00240{left:452.700000px;}
.x106_c00240{left:454.800000px;}
.xbe_c00240{left:457.500000px;}
.x9b_c00240{left:458.850000px;}
.xc6_c00240{left:460.200000px;}
.x11f_c00240{left:464.400000px;}
.x93_c00240{left:468.750000px;}
.x126_c00240{left:472.200000px;}
.x102_c00240{left:477.150000px;}
.x94_c00240{left:478.500000px;}
.xa9_c00240{left:480.150000px;}
.xe0_c00240{left:482.700000px;}
.x10f_c00240{left:483.750000px;}
.xa2_c00240{left:484.800000px;}
.xdb_c00240{left:487.050000px;}
.x118_c00240{left:491.700000px;}
.xb8_c00240{left:494.850000px;}
.xe4_c00240{left:495.900000px;}
.x12b_c00240{left:499.350000px;}
.xa3_c00240{left:500.700000px;}
.xc7_c00240{left:502.650000px;}
.xea_c00240{left:504.300000px;}
.xbf_c00240{left:505.800000px;}
.xdc_c00240{left:506.850000px;}
.xf4_c00240{left:509.550000px;}
.xeb_c00240{left:511.650000px;}
.x110_c00240{left:515.850000px;}
.xee_c00240{left:517.050000px;}
.xd2_c00240{left:519.750000px;}
.xf7_c00240{left:520.800000px;}
.xa4_c00240{left:522.000000px;}
.xd6_c00240{left:523.350000px;}
.x10e_c00240{left:524.850000px;}
.x9c_c00240{left:526.950000px;}
.x11d_c00240{left:528.450000px;}
.x107_c00240{left:529.500000px;}
.x111_c00240{left:531.000000px;}
.xb4_c00240{left:532.350000px;}
.x12d_c00240{left:533.400000px;}
.xc8_c00240{left:534.750000px;}
.xe8_c00240{left:536.100000px;}
.x95_c00240{left:538.650000px;}
.xe1_c00240{left:542.400000px;}
.xef_c00240{left:544.350000px;}
.xf5_c00240{left:546.600000px;}
.x119_c00240{left:548.250000px;}
.xb1_c00240{left:549.300000px;}
.x127_c00240{left:550.650000px;}
.xff_c00240{left:553.050000px;}
.xdd_c00240{left:555.150000px;}
.x116_c00240{left:557.250000px;}
.x96_c00240{left:558.750000px;}
.xce_c00240{left:560.550000px;}
.x123_c00240{left:562.200000px;}
.xc0_c00240{left:563.400000px;}
.x120_c00240{left:564.750000px;}
.xb9_c00240{left:568.350000px;}
.xd3_c00240{left:569.850000px;}
.x128_c00240{left:571.950000px;}
.xfa_c00240{left:573.150000px;}
.x9d_c00240{left:575.550000px;}
.x10b_c00240{left:576.750000px;}
.x108_c00240{left:578.850000px;}
.x112_c00240{left:580.350000px;}
.xc1_c00240{left:582.150000px;}
.xcf_c00240{left:583.950000px;}
.x97_c00240{left:585.450000px;}
.xf8_c00240{left:586.800000px;}
.x117_c00240{left:587.850000px;}
.xe5_c00240{left:589.050000px;}
.xa5_c00240{left:591.450000px;}
.xb2_c00240{left:592.500000px;}
.x10c_c00240{left:594.750000px;}
.xaa_c00240{left:596.400000px;}
.xd7_c00240{left:597.900000px;}
.xcb_c00240{left:601.950000px;}
.xc9_c00240{left:603.600000px;}
.x100_c00240{left:606.750000px;}
.x129_c00240{left:607.950000px;}
.xd0_c00240{left:610.200000px;}
.x98_c00240{left:611.400000px;}
.x113_c00240{left:613.800000px;}
.xa6_c00240{left:614.850000px;}
.x104_c00240{left:617.100000px;}
.xc2_c00240{left:618.900000px;}
.x114_c00240{left:622.950000px;}
.xd4_c00240{left:624.900000px;}
.xf0_c00240{left:626.850000px;}
.xb5_c00240{left:629.250000px;}
.xab_c00240{left:632.100000px;}
.x9e_c00240{left:638.550000px;}
.x99_c00240{left:639.900000px;}
.xe6_c00240{left:643.500000px;}
.xba_c00240{left:645.750000px;}
.xca_c00240{left:647.550000px;}
.xac_c00240{left:648.600000px;}
.xcc_c00240{left:651.600000px;}
.x124_c00240{left:652.950000px;}
.xec_c00240{left:655.200000px;}
.xd8_c00240{left:656.250000px;}
.xbb_c00240{left:660.150000px;}
.x109_c00240{left:662.100000px;}
.xfd_c00240{left:666.000000px;}
.xc3_c00240{left:667.200000px;}
.x12c_c00240{left:668.550000px;}
.xd5_c00240{left:670.200000px;}
.xad_c00240{left:671.700000px;}
.xd9_c00240{left:677.100000px;}
.x9a_c00240{left:679.200000px;}
.x10a_c00240{left:680.400000px;}
.xae_c00240{left:681.750000px;}
.x115_c00240{left:683.850000px;}
.xe2_c00240{left:686.700000px;}
.xc4_c00240{left:689.850000px;}
.xaf_c00240{left:692.250000px;}
.xde_c00240{left:693.750000px;}
.x9f_c00240{left:695.850000px;}
.xf1_c00240{left:698.550000px;}
.x105_c00240{left:700.350000px;}
.xfb_c00240{left:701.700000px;}
.x121_c00240{left:703.650000px;}
.xd1_c00240{left:705.150000px;}
.x12a_c00240{left:706.950000px;}
.xbc_c00240{left:708.000000px;}
.x101_c00240{left:709.350000px;}
.xda_c00240{left:710.550000px;}
.xb6_c00240{left:713.400000px;}
.xf2_c00240{left:715.050000px;}
.xfc_c00240{left:716.400000px;}
.x11a_c00240{left:718.350000px;}
.xed_c00240{left:719.700000px;}
.xa7_c00240{left:722.850000px;}
.xfe_c00240{left:724.050000px;}
.xbd_c00240{left:726.750000px;}
.x125_c00240{left:729.600000px;}
.xb7_c00240{left:732.450000px;}
.xb3_c00240{left:733.950000px;}
.xa0_c00240{left:739.350000px;}
.xf3_c00240{left:743.100000px;}
.xa8_c00240{left:744.750000px;}
.xc5_c00240{left:746.400000px;}
.x11b_c00240{left:749.250000px;}
.xf9_c00240{left:750.900000px;}
.x2_c00240{left:752.400000px;}
.xcd_c00240{left:754.200000px;}
.xa1_c00240{left:757.050000px;}
.xe7_c00240{left:758.250000px;}
.x10d_c00240{left:760.350000px;}
.x11c_c00240{left:762.900000px;}
.xe3_c00240{left:765.900000px;}
.xdf_c00240{left:770.700000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws7_c00240{word-spacing:-6.388889pt;}
.ws6_c00240{word-spacing:-4.269019pt;}
.ws0_c00240{word-spacing:-2.019417pt;}
.ws3_c00240{word-spacing:-2.015570pt;}
.ws8_c00240{word-spacing:0.000000pt;}
.ws4_c00240{word-spacing:4.146597pt;}
.ws5_c00240{word-spacing:4.222222pt;}
.ws1_c00240{word-spacing:9.689567pt;}
.ws2_c00240{word-spacing:10.142450pt;}
.fs6_c00240{font-size:26.666667pt;}
.fs5_c00240{font-size:37.333333pt;}
.fs4_c00240{font-size:48.000000pt;}
.fs3_c00240{font-size:53.333333pt;}
.fs1_c00240{font-size:58.666667pt;}
.fs2_c00240{font-size:64.000000pt;}
.fs0_c00240{font-size:69.333333pt;}
.y0_c00240{bottom:0.000000pt;}
.y33_c00240{bottom:172.133333pt;}
.y64_c00240{bottom:173.066667pt;}
.y63_c00240{bottom:186.133333pt;}
.y32_c00240{bottom:189.733333pt;}
.y62_c00240{bottom:198.933333pt;}
.y61_c00240{bottom:211.733333pt;}
.y31_c00240{bottom:216.133333pt;}
.y60_c00240{bottom:224.533333pt;}
.y30_c00240{bottom:233.066667pt;}
.y5f_c00240{bottom:237.066667pt;}
.y2f_c00240{bottom:249.066667pt;}
.y5e_c00240{bottom:249.866667pt;}
.y2e_c00240{bottom:264.800000pt;}
.y2d_c00240{bottom:280.533333pt;}
.y5d_c00240{bottom:295.866667pt;}
.y2c_c00240{bottom:296.266667pt;}
.y5c_c00240{bottom:311.600000pt;}
.y2b_c00240{bottom:315.733333pt;}
.y2a_c00240{bottom:331.466667pt;}
.y5b_c00240{bottom:334.666667pt;}
.y29_c00240{bottom:347.466667pt;}
.y5a_c00240{bottom:351.066667pt;}
.y28_c00240{bottom:366.133333pt;}
.y59_c00240{bottom:367.066667pt;}
.y58_c00240{bottom:382.400000pt;}
.y27_c00240{bottom:383.333333pt;}
.y26_c00240{bottom:399.600000pt;}
.y57_c00240{bottom:401.866667pt;}
.y25_c00240{bottom:415.600000pt;}
.y56_c00240{bottom:429.466667pt;}
.y24_c00240{bottom:431.333333pt;}
.y55_c00240{bottom:445.466667pt;}
.y23_c00240{bottom:447.333333pt;}
.y54_c00240{bottom:461.466667pt;}
.y22_c00240{bottom:466.533333pt;}
.y53_c00240{bottom:480.000000pt;}
.y21_c00240{bottom:482.266667pt;}
.y52_c00240{bottom:492.533333pt;}
.y20_c00240{bottom:498.266667pt;}
.y51_c00240{bottom:510.000000pt;}
.y1f_c00240{bottom:518.133333pt;}
.y50_c00240{bottom:526.000000pt;}
.y4f_c00240{bottom:541.733333pt;}
.y1e_c00240{bottom:544.933333pt;}
.y1d_c00240{bottom:560.933333pt;}
.y4e_c00240{bottom:561.600000pt;}
.y4d_c00240{bottom:577.333333pt;}
.y1c_c00240{bottom:578.800000pt;}
.y1b_c00240{bottom:596.133333pt;}
.y4c_c00240{bottom:597.200000pt;}
.y4b_c00240{bottom:612.533333pt;}
.y1a_c00240{bottom:616.000000pt;}
.y19_c00240{bottom:632.000000pt;}
.y18_c00240{bottom:639.066667pt;}
.y49_c00240{bottom:640.533333pt;}
.y17_c00240{bottom:647.466667pt;}
.y48_c00240{bottom:656.533333pt;}
.y16_c00240{bottom:663.466667pt;}
.y47_c00240{bottom:672.266667pt;}
.y15_c00240{bottom:679.466667pt;}
.y46_c00240{bottom:692.133333pt;}
.y14_c00240{bottom:695.200000pt;}
.y13_c00240{bottom:710.933333pt;}
.y45_c00240{bottom:711.733333pt;}
.y4a_c00240{bottom:713.600000pt;}
.y12_c00240{bottom:726.666667pt;}
.y44_c00240{bottom:727.733333pt;}
.y43_c00240{bottom:743.733333pt;}
.y11_c00240{bottom:745.333333pt;}
.y42_c00240{bottom:759.466667pt;}
.y10_c00240{bottom:762.933333pt;}
.y41_c00240{bottom:775.200000pt;}
.yf_c00240{bottom:778.666667pt;}
.y40_c00240{bottom:791.200000pt;}
.ye_c00240{bottom:794.933333pt;}
.y3f_c00240{bottom:806.933333pt;}
.yd_c00240{bottom:816.266667pt;}
.y3e_c00240{bottom:822.666667pt;}
.yc_c00240{bottom:830.000000pt;}
.y3d_c00240{bottom:841.333333pt;}
.yb_c00240{bottom:846.000000pt;}
.y3c_c00240{bottom:858.933333pt;}
.ya_c00240{bottom:861.733333pt;}
.y3b_c00240{bottom:874.933333pt;}
.y9_c00240{bottom:881.600000pt;}
.y3a_c00240{bottom:890.666667pt;}
.y8_c00240{bottom:905.333333pt;}
.y39_c00240{bottom:906.933333pt;}
.y38_c00240{bottom:922.933333pt;}
.y7_c00240{bottom:924.800000pt;}
.y37_c00240{bottom:942.000000pt;}
.y6_c00240{bottom:944.533333pt;}
.y36_c00240{bottom:958.000000pt;}
.y5_c00240{bottom:960.266667pt;}
.y35_c00240{bottom:973.733333pt;}
.y4_c00240{bottom:976.000000pt;}
.y3_c00240{bottom:991.733333pt;}
.y34_c00240{bottom:995.866667pt;}
.y2_c00240{bottom:1011.200000pt;}
.y1_c00240{bottom:1014.400000pt;}
.h8_c00240{height:26.666667pt;}
.h7_c00240{height:37.333333pt;}
.h6_c00240{height:48.000000pt;}
.h5_c00240{height:53.333333pt;}
.h3_c00240{height:58.666667pt;}
.h4_c00240{height:64.000000pt;}
.h2_c00240{height:69.333333pt;}
.h0_c00240{height:1126.400065pt;}
.h1_c00240{height:1126.666667pt;}
.w1_c00240{width:856.000000pt;}
.w0_c00240{width:856.319987pt;}
.x0_c00240{left:0.000000pt;}
.x1e_c00240{left:74.666667pt;}
.x1c_c00240{left:75.866667pt;}
.x6b_c00240{left:77.066667pt;}
.x26_c00240{left:79.333333pt;}
.x43_c00240{left:89.333333pt;}
.x3_c00240{left:90.933333pt;}
.x15_c00240{left:91.866667pt;}
.x6f_c00240{left:105.866667pt;}
.x27_c00240{left:106.800000pt;}
.x91_c00240{left:109.866667pt;}
.x24_c00240{left:112.666667pt;}
.x76_c00240{left:113.600000pt;}
.x3a_c00240{left:115.200000pt;}
.x44_c00240{left:120.666667pt;}
.x3e_c00240{left:122.133333pt;}
.x5b_c00240{left:123.066667pt;}
.x36_c00240{left:125.066667pt;}
.x16_c00240{left:126.800000pt;}
.xd_c00240{left:128.133333pt;}
.x1d_c00240{left:130.933333pt;}
.x61_c00240{left:133.200000pt;}
.x71_c00240{left:134.133333pt;}
.x87_c00240{left:135.333333pt;}
.x4_c00240{left:136.666667pt;}
.x3f_c00240{left:140.000000pt;}
.x6c_c00240{left:141.733333pt;}
.x8f_c00240{left:144.133333pt;}
.xe_c00240{left:145.733333pt;}
.x5e_c00240{left:147.333333pt;}
.x78_c00240{left:148.533333pt;}
.x28_c00240{left:149.733333pt;}
.x4d_c00240{left:151.066667pt;}
.x62_c00240{left:152.666667pt;}
.x5_c00240{left:154.266667pt;}
.x68_c00240{left:158.266667pt;}
.x1f_c00240{left:159.466667pt;}
.x17_c00240{left:161.333333pt;}
.x54_c00240{left:164.266667pt;}
.xf_c00240{left:166.266667pt;}
.x45_c00240{left:170.266667pt;}
.x48_c00240{left:172.266667pt;}
.x88_c00240{left:173.733333pt;}
.x2e_c00240{left:175.200000pt;}
.x3b_c00240{left:176.266667pt;}
.x7a_c00240{left:178.000000pt;}
.x83_c00240{left:179.466667pt;}
.x65_c00240{left:181.066667pt;}
.x7c_c00240{left:183.866667pt;}
.x4e_c00240{left:184.933333pt;}
.x7f_c00240{left:186.000000pt;}
.x33_c00240{left:187.733333pt;}
.x29_c00240{left:189.733333pt;}
.x79_c00240{left:191.733333pt;}
.x63_c00240{left:194.533333pt;}
.x2f_c00240{left:195.733333pt;}
.x49_c00240{left:197.200000pt;}
.x74_c00240{left:198.800000pt;}
.x8b_c00240{left:200.533333pt;}
.x4f_c00240{left:201.600000pt;}
.x6_c00240{left:202.533333pt;}
.x69_c00240{left:203.733333pt;}
.x46_c00240{left:206.133333pt;}
.x10_c00240{left:209.466667pt;}
.x7_c00240{left:212.400000pt;}
.x55_c00240{left:214.133333pt;}
.x20_c00240{left:215.200000pt;}
.x47_c00240{left:216.400000pt;}
.x77_c00240{left:217.333333pt;}
.x37_c00240{left:218.533333pt;}
.x64_c00240{left:219.466667pt;}
.x80_c00240{left:221.333333pt;}
.x2a_c00240{left:224.266667pt;}
.x4a_c00240{left:225.333333pt;}
.x6a_c00240{left:230.000000pt;}
.x56_c00240{left:232.400000pt;}
.x34_c00240{left:233.866667pt;}
.x85_c00240{left:235.200000pt;}
.x40_c00240{left:236.400000pt;}
.x21_c00240{left:237.333333pt;}
.x38_c00240{left:240.666667pt;}
.x8c_c00240{left:241.866667pt;}
.x18_c00240{left:244.533333pt;}
.x6d_c00240{left:245.600000pt;}
.x4b_c00240{left:248.666667pt;}
.x75_c00240{left:250.266667pt;}
.x5c_c00240{left:251.333333pt;}
.x66_c00240{left:252.800000pt;}
.x50_c00240{left:256.266667pt;}
.x84_c00240{left:257.200000pt;}
.x19_c00240{left:260.800000pt;}
.x4c_c00240{left:262.800000pt;}
.x3c_c00240{left:264.266667pt;}
.x8_c00240{left:266.800000pt;}
.x5f_c00240{left:267.733333pt;}
.x22_c00240{left:269.066667pt;}
.x67_c00240{left:272.000000pt;}
.x57_c00240{left:274.266667pt;}
.x72_c00240{left:275.600000pt;}
.x11_c00240{left:276.933333pt;}
.x86_c00240{left:278.666667pt;}
.x6e_c00240{left:281.066667pt;}
.x7b_c00240{left:282.000000pt;}
.x41_c00240{left:285.733333pt;}
.x23_c00240{left:287.600000pt;}
.x1_c00240{left:288.666667pt;}
.x9_c00240{left:290.800000pt;}
.x60_c00240{left:294.266667pt;}
.x1a_c00240{left:295.733333pt;}
.x5d_c00240{left:297.333333pt;}
.x70_c00240{left:300.400000pt;}
.x12_c00240{left:302.800000pt;}
.x30_c00240{left:304.533333pt;}
.x58_c00240{left:306.000000pt;}
.x2b_c00240{left:307.733333pt;}
.x8d_c00240{left:309.466667pt;}
.x81_c00240{left:310.533333pt;}
.x7d_c00240{left:312.000000pt;}
.x92_c00240{left:312.933333pt;}
.x3d_c00240{left:314.133333pt;}
.x1b_c00240{left:315.600000pt;}
.x39_c00240{left:318.133333pt;}
.x51_c00240{left:322.133333pt;}
.x89_c00240{left:325.333333pt;}
.x73_c00240{left:326.800000pt;}
.x52_c00240{left:330.400000pt;}
.x31_c00240{left:332.000000pt;}
.x25_c00240{left:333.066667pt;}
.x59_c00240{left:334.000000pt;}
.xa_c00240{left:337.200000pt;}
.x13_c00240{left:339.866667pt;}
.x90_c00240{left:341.866667pt;}
.x2c_c00240{left:342.933333pt;}
.x8a_c00240{left:344.800000pt;}
.x5a_c00240{left:347.733333pt;}
.x14_c00240{left:348.800000pt;}
.x8e_c00240{left:350.133333pt;}
.x7e_c00240{left:352.000000pt;}
.xb_c00240{left:355.066667pt;}
.x35_c00240{left:356.666667pt;}
.x82_c00240{left:359.066667pt;}
.x53_c00240{left:360.133333pt;}
.x32_c00240{left:362.133333pt;}
.x42_c00240{left:363.866667pt;}
.x2d_c00240{left:370.133333pt;}
.xc_c00240{left:382.533333pt;}
.xe9_c00240{left:386.533333pt;}
.x11e_c00240{left:391.066667pt;}
.x103_c00240{left:392.000000pt;}
.xb0_c00240{left:392.933333pt;}
.xf6_c00240{left:394.533333pt;}
.x122_c00240{left:402.400000pt;}
.x106_c00240{left:404.266667pt;}
.xbe_c00240{left:406.666667pt;}
.x9b_c00240{left:407.866667pt;}
.xc6_c00240{left:409.066667pt;}
.x11f_c00240{left:412.800000pt;}
.x93_c00240{left:416.666667pt;}
.x126_c00240{left:419.733333pt;}
.x102_c00240{left:424.133333pt;}
.x94_c00240{left:425.333333pt;}
.xa9_c00240{left:426.800000pt;}
.xe0_c00240{left:429.066667pt;}
.x10f_c00240{left:430.000000pt;}
.xa2_c00240{left:430.933333pt;}
.xdb_c00240{left:432.933333pt;}
.x118_c00240{left:437.066667pt;}
.xb8_c00240{left:439.866667pt;}
.xe4_c00240{left:440.800000pt;}
.x12b_c00240{left:443.866667pt;}
.xa3_c00240{left:445.066667pt;}
.xc7_c00240{left:446.800000pt;}
.xea_c00240{left:448.266667pt;}
.xbf_c00240{left:449.600000pt;}
.xdc_c00240{left:450.533333pt;}
.xf4_c00240{left:452.933333pt;}
.xeb_c00240{left:454.800000pt;}
.x110_c00240{left:458.533333pt;}
.xee_c00240{left:459.600000pt;}
.xd2_c00240{left:462.000000pt;}
.xf7_c00240{left:462.933333pt;}
.xa4_c00240{left:464.000000pt;}
.xd6_c00240{left:465.200000pt;}
.x10e_c00240{left:466.533333pt;}
.x9c_c00240{left:468.400000pt;}
.x11d_c00240{left:469.733333pt;}
.x107_c00240{left:470.666667pt;}
.x111_c00240{left:472.000000pt;}
.xb4_c00240{left:473.200000pt;}
.x12d_c00240{left:474.133333pt;}
.xc8_c00240{left:475.333333pt;}
.xe8_c00240{left:476.533333pt;}
.x95_c00240{left:478.800000pt;}
.xe1_c00240{left:482.133333pt;}
.xef_c00240{left:483.866667pt;}
.xf5_c00240{left:485.866667pt;}
.x119_c00240{left:487.333333pt;}
.xb1_c00240{left:488.266667pt;}
.x127_c00240{left:489.466667pt;}
.xff_c00240{left:491.600000pt;}
.xdd_c00240{left:493.466667pt;}
.x116_c00240{left:495.333333pt;}
.x96_c00240{left:496.666667pt;}
.xce_c00240{left:498.266667pt;}
.x123_c00240{left:499.733333pt;}
.xc0_c00240{left:500.800000pt;}
.x120_c00240{left:502.000000pt;}
.xb9_c00240{left:505.200000pt;}
.xd3_c00240{left:506.533333pt;}
.x128_c00240{left:508.400000pt;}
.xfa_c00240{left:509.466667pt;}
.x9d_c00240{left:511.600000pt;}
.x10b_c00240{left:512.666667pt;}
.x108_c00240{left:514.533333pt;}
.x112_c00240{left:515.866667pt;}
.xc1_c00240{left:517.466667pt;}
.xcf_c00240{left:519.066667pt;}
.x97_c00240{left:520.400000pt;}
.xf8_c00240{left:521.600000pt;}
.x117_c00240{left:522.533333pt;}
.xe5_c00240{left:523.600000pt;}
.xa5_c00240{left:525.733333pt;}
.xb2_c00240{left:526.666667pt;}
.x10c_c00240{left:528.666667pt;}
.xaa_c00240{left:530.133333pt;}
.xd7_c00240{left:531.466667pt;}
.xcb_c00240{left:535.066667pt;}
.xc9_c00240{left:536.533333pt;}
.x100_c00240{left:539.333333pt;}
.x129_c00240{left:540.400000pt;}
.xd0_c00240{left:542.400000pt;}
.x98_c00240{left:543.466667pt;}
.x113_c00240{left:545.600000pt;}
.xa6_c00240{left:546.533333pt;}
.x104_c00240{left:548.533333pt;}
.xc2_c00240{left:550.133333pt;}
.x114_c00240{left:553.733333pt;}
.xd4_c00240{left:555.466667pt;}
.xf0_c00240{left:557.200000pt;}
.xb5_c00240{left:559.333333pt;}
.xab_c00240{left:561.866667pt;}
.x9e_c00240{left:567.600000pt;}
.x99_c00240{left:568.800000pt;}
.xe6_c00240{left:572.000000pt;}
.xba_c00240{left:574.000000pt;}
.xca_c00240{left:575.600000pt;}
.xac_c00240{left:576.533333pt;}
.xcc_c00240{left:579.200000pt;}
.x124_c00240{left:580.400000pt;}
.xec_c00240{left:582.400000pt;}
.xd8_c00240{left:583.333333pt;}
.xbb_c00240{left:586.800000pt;}
.x109_c00240{left:588.533333pt;}
.xfd_c00240{left:592.000000pt;}
.xc3_c00240{left:593.066667pt;}
.x12c_c00240{left:594.266667pt;}
.xd5_c00240{left:595.733333pt;}
.xad_c00240{left:597.066667pt;}
.xd9_c00240{left:601.866667pt;}
.x9a_c00240{left:603.733333pt;}
.x10a_c00240{left:604.800000pt;}
.xae_c00240{left:606.000000pt;}
.x115_c00240{left:607.866667pt;}
.xe2_c00240{left:610.400000pt;}
.xc4_c00240{left:613.200000pt;}
.xaf_c00240{left:615.333333pt;}
.xde_c00240{left:616.666667pt;}
.x9f_c00240{left:618.533333pt;}
.xf1_c00240{left:620.933333pt;}
.x105_c00240{left:622.533333pt;}
.xfb_c00240{left:623.733333pt;}
.x121_c00240{left:625.466667pt;}
.xd1_c00240{left:626.800000pt;}
.x12a_c00240{left:628.400000pt;}
.xbc_c00240{left:629.333333pt;}
.x101_c00240{left:630.533333pt;}
.xda_c00240{left:631.600000pt;}
.xb6_c00240{left:634.133333pt;}
.xf2_c00240{left:635.600000pt;}
.xfc_c00240{left:636.800000pt;}
.x11a_c00240{left:638.533333pt;}
.xed_c00240{left:639.733333pt;}
.xa7_c00240{left:642.533333pt;}
.xfe_c00240{left:643.600000pt;}
.xbd_c00240{left:646.000000pt;}
.x125_c00240{left:648.533333pt;}
.xb7_c00240{left:651.066667pt;}
.xb3_c00240{left:652.400000pt;}
.xa0_c00240{left:657.200000pt;}
.xf3_c00240{left:660.533333pt;}
.xa8_c00240{left:662.000000pt;}
.xc5_c00240{left:663.466667pt;}
.x11b_c00240{left:666.000000pt;}
.xf9_c00240{left:667.466667pt;}
.x2_c00240{left:668.800000pt;}
.xcd_c00240{left:670.400000pt;}
.xa1_c00240{left:672.933333pt;}
.xe7_c00240{left:674.000000pt;}
.x10d_c00240{left:675.866667pt;}
.x11c_c00240{left:678.133333pt;}
.xe3_c00240{left:680.800000pt;}
.xdf_c00240{left:685.066667pt;}
}





/* 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_c00241 {
    display:none;
  }
  .loading-indicator_c00241.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00241 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_c00241 { 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_c00241" -> "#page-container .classname_c00241")
 */
.pf_c00241 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00241 { /* 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_c00241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00241 { /* 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_c00241 { /* 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_c00241 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00241 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00241 {overflow:visible;}
  }
}
.c_c00241 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00241 { /* 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_c00241:after { /* webkit #35443 */
  content: '';
}
.t_c00241:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00241 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 */
}
.__c00241 { /* 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_c00241 { /* info for Javascript */
  display:none;
}
.l_c00241 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00241 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00241 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00241: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_c00241 {
    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_c00241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00241.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_c00241 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00241;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.000000;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;}
.m103_c00241{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m75_c00241{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m24_c00241{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m68_c00241{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m99_c00241{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00241{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m41_c00241{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00241{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m71_c00241{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m91_c00241{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00241{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00241{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m49_c00241{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m18_c00241{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mca_c00241{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m115_c00241{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00241{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00241{transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00241{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m119_c00241{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.me2_c00241{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m42_c00241{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m109_c00241{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00241{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00241{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00241{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m111_c00241{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9_c00241{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00241{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m82_c00241{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00241{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00241{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m32_c00241{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00241{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.me9_c00241{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00241{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00241{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00241{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m40_c00241{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4_c00241{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m83_c00241{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00241{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m35_c00241{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00241{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00241{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00241{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m110_c00241{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00241{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me1_c00241{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00241{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m108_c00241{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.md7_c00241{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00241{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00241{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m48_c00241{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00241{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00241{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m58_c00241{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m67_c00241{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00241{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m34_c00241{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00241{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m89_c00241{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00241{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00241{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00241{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00241{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00241{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m101_c00241{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00241{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me5_c00241{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mff_c00241{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m80_c00241{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m96_c00241{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m66_c00241{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00241{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00241{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m87_c00241{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m105_c00241{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me0_c00241{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00241{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00241{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3_c00241{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00241{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m12_c00241{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m98_c00241{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00241{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m43_c00241{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00241{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00241{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me6_c00241{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m6_c00241{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00241{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m85_c00241{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m79_c00241{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mae_c00241{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00241{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m2_c00241{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00241{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00241{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m44_c00241{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00241{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mef_c00241{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00241{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00241{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m116_c00241{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me8_c00241{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m97_c00241{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m78_c00241{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.med_c00241{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00241{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00241{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00241{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m30_c00241{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mad_c00241{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m102_c00241{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00241{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00241{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00241{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m72_c00241{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md0_c00241{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00241{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me7_c00241{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m31_c00241{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00241{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00241{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00241{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00241{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00241{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00241{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00241{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7_c00241{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md3_c00241{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00241{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m118_c00241{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m84_c00241{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m77_c00241{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m5_c00241{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb_c00241{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m37_c00241{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m92_c00241{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00241{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m94_c00241{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00241{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00241{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m74_c00241{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m20_c00241{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m27_c00241{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m50_c00241{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00241{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m8_c00241{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m25_c00241{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me3_c00241{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00241{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00241{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00241{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m81_c00241{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m65_c00241{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00241{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m21_c00241{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mac_c00241{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m13_c00241{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00241{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00241{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00241{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m19_c00241{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m22_c00241{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md2_c00241{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00241{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m26_c00241{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00241{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.maa_c00241{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m16_c00241{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m59_c00241{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00241{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mde_c00241{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf_c00241{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m45_c00241{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00241{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me4_c00241{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00241{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m86_c00241{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m17_c00241{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m38_c00241{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.md6_c00241{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m52_c00241{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m39_c00241{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00241{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m14_c00241{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m56_c00241{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00241{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00241{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md1_c00241{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00241{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m33_c00241{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m62_c00241{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m88_c00241{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m93_c00241{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00241{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00241{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me_c00241{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00241{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28_c00241{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma_c00241{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m95_c00241{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mab_c00241{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m100_c00241{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00241{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00241{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00241{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00241{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m36_c00241{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m29_c00241{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00241{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m57_c00241{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m90_c00241{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md9_c00241{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md8_c00241{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m15_c00241{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md4_c00241{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m114_c00241{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00241{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m104_c00241{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mea_c00241{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m76_c00241{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m10_c00241{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00241{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00241{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00241{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m112_c00241{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m69_c00241{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00241{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00241{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00241{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m73_c00241{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m60_c00241{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mee_c00241{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m47_c00241{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md5_c00241{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m64_c00241{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);}
.m23_c00241{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m61_c00241{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mba_c00241{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00241{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00241{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00241{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m46_c00241{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00241{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m55_c00241{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00241{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m11_c00241{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.meb_c00241{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00241{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m113_c00241{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00241{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00241{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00241{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mce_c00241{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00241{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m63_c00241{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m117_c00241{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m70_c00241{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00241{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00241{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00241{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m54_c00241{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00241{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.maf_c00241{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00241{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00241{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00241{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00241{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m106_c00241{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00241{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00241{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mec_c00241{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m0_c00241{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m53_c00241{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m107_c00241{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.md_c00241{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00241{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00241{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mda_c00241{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00241{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m51_c00241{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(0.517750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00241{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00241{transform:matrix(0.776000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.776000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.776000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls0_c00241{letter-spacing:0.000000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{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__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00241{word-spacing:-6.527778px;}
.ws7_c00241{word-spacing:-2.118598px;}
.ws1_c00241{word-spacing:-0.727273px;}
.ws9_c00241{word-spacing:0.000000px;}
.ws5_c00241{word-spacing:0.156250px;}
.ws8_c00241{word-spacing:0.540541px;}
.ws6_c00241{word-spacing:1.539683px;}
.ws4_c00241{word-spacing:3.695418px;}
.ws2_c00241{word-spacing:4.166667px;}
.ws0_c00241{word-spacing:9.535032px;}
.fc0_c00241{color:transparent;}
.fs5_c00241{font-size:30.000000px;}
.fs3_c00241{font-size:54.000000px;}
.fs2_c00241{font-size:60.000000px;}
.fs0_c00241{font-size:66.000000px;}
.fs4_c00241{font-size:72.000000px;}
.fs1_c00241{font-size:78.000000px;}
.y0_c00241{bottom:0.000000px;}
.y39_c00241{bottom:200.100000px;}
.y6c_c00241{bottom:200.850000px;}
.y38_c00241{bottom:214.500000px;}
.y6b_c00241{bottom:218.850000px;}
.y37_c00241{bottom:229.350000px;}
.y6a_c00241{bottom:240.900000px;}
.y36_c00241{bottom:243.300000px;}
.y35_c00241{bottom:258.000000px;}
.y69_c00241{bottom:266.400000px;}
.y34_c00241{bottom:272.100000px;}
.y68_c00241{bottom:276.150000px;}
.y33_c00241{bottom:286.200000px;}
.y67_c00241{bottom:294.150000px;}
.y32_c00241{bottom:300.600000px;}
.y31_c00241{bottom:315.000000px;}
.y66_c00241{bottom:316.350000px;}
.y30_c00241{bottom:329.400000px;}
.y65_c00241{bottom:334.050000px;}
.y2f_c00241{bottom:343.500000px;}
.y64_c00241{bottom:352.050000px;}
.y2e_c00241{bottom:357.900000px;}
.y63_c00241{bottom:370.050000px;}
.y2d_c00241{bottom:372.300000px;}
.y2c_c00241{bottom:386.700000px;}
.y62_c00241{bottom:387.750000px;}
.y2b_c00241{bottom:404.250000px;}
.y61_c00241{bottom:405.750000px;}
.y2a_c00241{bottom:410.400000px;}
.y60_c00241{bottom:423.750000px;}
.y29_c00241{bottom:433.950000px;}
.y5f_c00241{bottom:441.750000px;}
.y28_c00241{bottom:451.650000px;}
.y5e_c00241{bottom:459.750000px;}
.y27_c00241{bottom:469.650000px;}
.y5d_c00241{bottom:477.000000px;}
.y26_c00241{bottom:487.350000px;}
.y5c_c00241{bottom:503.850000px;}
.y25_c00241{bottom:505.350000px;}
.y5b_c00241{bottom:521.850000px;}
.y24_c00241{bottom:523.050000px;}
.y5a_c00241{bottom:539.550000px;}
.y23_c00241{bottom:540.750000px;}
.y59_c00241{bottom:557.250000px;}
.y22_c00241{bottom:558.750000px;}
.y58_c00241{bottom:575.250000px;}
.y21_c00241{bottom:576.450000px;}
.y20_c00241{bottom:594.150000px;}
.y57_c00241{bottom:596.850000px;}
.y1f_c00241{bottom:611.850000px;}
.y56_c00241{bottom:615.150000px;}
.y1e_c00241{bottom:629.550000px;}
.y55_c00241{bottom:632.850000px;}
.y1d_c00241{bottom:647.250000px;}
.y1c_c00241{bottom:665.250000px;}
.y54_c00241{bottom:668.100000px;}
.y53_c00241{bottom:668.400000px;}
.y1b_c00241{bottom:683.250000px;}
.y52_c00241{bottom:686.400000px;}
.y1a_c00241{bottom:703.500000px;}
.y51_c00241{bottom:704.100000px;}
.y19_c00241{bottom:718.200000px;}
.y50_c00241{bottom:722.100000px;}
.y18_c00241{bottom:738.300000px;}
.y4f_c00241{bottom:743.850000px;}
.y17_c00241{bottom:756.000000px;}
.y4e_c00241{bottom:761.850000px;}
.y16_c00241{bottom:774.000000px;}
.y4d_c00241{bottom:779.550000px;}
.y15_c00241{bottom:792.000000px;}
.y4c_c00241{bottom:797.550000px;}
.y14_c00241{bottom:809.700000px;}
.y4b_c00241{bottom:815.250000px;}
.y13_c00241{bottom:826.950000px;}
.y4a_c00241{bottom:833.250000px;}
.y12_c00241{bottom:848.400000px;}
.y49_c00241{bottom:850.950000px;}
.y11_c00241{bottom:866.700000px;}
.y48_c00241{bottom:868.650000px;}
.y10_c00241{bottom:884.400000px;}
.y47_c00241{bottom:886.650000px;}
.yf_c00241{bottom:902.100000px;}
.y46_c00241{bottom:904.650000px;}
.ye_c00241{bottom:919.800000px;}
.y45_c00241{bottom:922.350000px;}
.y44_c00241{bottom:940.350000px;}
.yd_c00241{bottom:942.450000px;}
.y43_c00241{bottom:962.250000px;}
.yc_c00241{bottom:963.750000px;}
.y42_c00241{bottom:980.250000px;}
.yb_c00241{bottom:982.050000px;}
.y41_c00241{bottom:997.950000px;}
.ya_c00241{bottom:1000.050000px;}
.y40_c00241{bottom:1015.950000px;}
.y9_c00241{bottom:1018.050000px;}
.y3f_c00241{bottom:1033.950000px;}
.y8_c00241{bottom:1035.300000px;}
.y7_c00241{bottom:1053.300000px;}
.y3e_c00241{bottom:1055.550000px;}
.y6_c00241{bottom:1072.800000px;}
.y3d_c00241{bottom:1073.550000px;}
.y5_c00241{bottom:1088.250000px;}
.y3c_c00241{bottom:1091.850000px;}
.y4_c00241{bottom:1107.300000px;}
.y3b_c00241{bottom:1108.800000px;}
.y3_c00241{bottom:1126.050000px;}
.y3a_c00241{bottom:1126.800000px;}
.y1_c00241{bottom:1151.700000px;}
.y2_c00241{bottom:1153.200000px;}
.h6_c00241{height:30.000000px;}
.h4_c00241{height:54.000000px;}
.h3_c00241{height:60.000000px;}
.h1_c00241{height:66.000000px;}
.h5_c00241{height:72.000000px;}
.h2_c00241{height:78.000000px;}
.h0_c00241{height:1278.000000px;}
.w1_c00241{width:963.000000px;}
.w0_c00241{width:963.359985px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:176.100000px;}
.xd_c00241{left:177.450000px;}
.x17_c00241{left:178.950000px;}
.x3a_c00241{left:180.000000px;}
.x97_c00241{left:181.500000px;}
.x2c_c00241{left:182.550000px;}
.x22_c00241{left:185.400000px;}
.x60_c00241{left:189.900000px;}
.x3b_c00241{left:191.100000px;}
.x14_c00241{left:193.050000px;}
.x64_c00241{left:194.100000px;}
.x3_c00241{left:195.150000px;}
.x1d_c00241{left:196.800000px;}
.x23_c00241{left:198.000000px;}
.x33_c00241{left:199.200000px;}
.x95_c00241{left:202.050000px;}
.x9e_c00241{left:213.000000px;}
.xa7_c00241{left:214.950000px;}
.x40_c00241{left:216.300000px;}
.xa8_c00241{left:217.350000px;}
.x4a_c00241{left:219.150000px;}
.x91_c00241{left:220.800000px;}
.x3c_c00241{left:223.200000px;}
.x4f_c00241{left:225.750000px;}
.x50_c00241{left:227.850000px;}
.xc_c00241{left:229.950000px;}
.x15_c00241{left:234.450000px;}
.x72_c00241{left:235.500000px;}
.x7d_c00241{left:236.550000px;}
.x4_c00241{left:238.350000px;}
.x24_c00241{left:240.150000px;}
.x6e_c00241{left:241.200000px;}
.x4b_c00241{left:242.250000px;}
.x6a_c00241{left:248.100000px;}
.xa2_c00241{left:249.900000px;}
.x25_c00241{left:251.700000px;}
.x2d_c00241{left:252.750000px;}
.x84_c00241{left:254.550000px;}
.x61_c00241{left:256.800000px;}
.x34_c00241{left:258.900000px;}
.x8a_c00241{left:260.250000px;}
.x18_c00241{left:261.750000px;}
.xe_c00241{left:262.800000px;}
.x66_c00241{left:265.050000px;}
.x9b_c00241{left:269.250000px;}
.x56_c00241{left:270.450000px;}
.x7a_c00241{left:272.250000px;}
.xa3_c00241{left:273.300000px;}
.x5e_c00241{left:274.350000px;}
.x26_c00241{left:276.150000px;}
.x19_c00241{left:278.250000px;}
.x16_c00241{left:279.450000px;}
.x5_c00241{left:280.500000px;}
.x9f_c00241{left:283.650000px;}
.x39_c00241{left:286.200000px;}
.x47_c00241{left:288.000000px;}
.x7e_c00241{left:289.050000px;}
.x1e_c00241{left:290.400000px;}
.x41_c00241{left:293.400000px;}
.x5b_c00241{left:295.050000px;}
.x6_c00241{left:297.750000px;}
.x51_c00241{left:298.800000px;}
.x2e_c00241{left:301.050000px;}
.x6b_c00241{left:304.950000px;}
.x65_c00241{left:306.150000px;}
.xf_c00241{left:308.550000px;}
.x3d_c00241{left:310.350000px;}
.x76_c00241{left:311.550000px;}
.xaa_c00241{left:313.200000px;}
.x42_c00241{left:315.750000px;}
.x57_c00241{left:318.300000px;}
.xa6_c00241{left:321.000000px;}
.xa4_c00241{left:322.500000px;}
.x92_c00241{left:324.000000px;}
.x6f_c00241{left:325.050000px;}
.x35_c00241{left:327.600000px;}
.x6c_c00241{left:330.450000px;}
.x5f_c00241{left:331.950000px;}
.x2f_c00241{left:333.450000px;}
.x73_c00241{left:336.000000px;}
.x10_c00241{left:337.350000px;}
.x7f_c00241{left:340.950000px;}
.x43_c00241{left:342.450000px;}
.x1a_c00241{left:344.550000px;}
.x98_c00241{left:346.200000px;}
.x52_c00241{left:347.400000px;}
.x4c_c00241{left:349.950000px;}
.x27_c00241{left:351.000000px;}
.x54_c00241{left:352.200000px;}
.x58_c00241{left:354.000000px;}
.x93_c00241{left:357.900000px;}
.x62_c00241{left:358.950000px;}
.x4d_c00241{left:360.750000px;}
.x8b_c00241{left:363.600000px;}
.x7_c00241{left:365.400000px;}
.x9c_c00241{left:367.350000px;}
.x44_c00241{left:368.700000px;}
.x8d_c00241{left:370.650000px;}
.x1f_c00241{left:373.500000px;}
.x28_c00241{left:374.700000px;}
.x67_c00241{left:375.900000px;}
.x11_c00241{left:376.950000px;}
.x85_c00241{left:378.450000px;}
.x45_c00241{left:379.800000px;}
.xa9_c00241{left:381.150000px;}
.x5c_c00241{left:382.800000px;}
.x94_c00241{left:383.850000px;}
.x1b_c00241{left:386.250000px;}
.x70_c00241{left:387.300000px;}
.x8f_c00241{left:388.650000px;}
.x99_c00241{left:390.900000px;}
.x3e_c00241{left:392.850000px;}
.x29_c00241{left:396.300000px;}
.x7b_c00241{left:397.800000px;}
.x55_c00241{left:400.500000px;}
.x86_c00241{left:401.550000px;}
.x12_c00241{left:403.200000px;}
.x8_c00241{left:407.100000px;}
.x63_c00241{left:408.300000px;}
.x36_c00241{left:410.100000px;}
.x7c_c00241{left:414.000000px;}
.x4e_c00241{left:415.800000px;}
.x6d_c00241{left:417.300000px;}
.x2_c00241{left:418.800000px;}
.x87_c00241{left:420.300000px;}
.x80_c00241{left:421.950000px;}
.x53_c00241{left:424.050000px;}
.x96_c00241{left:426.150000px;}
.x3f_c00241{left:427.350000px;}
.x68_c00241{left:430.200000px;}
.x77_c00241{left:431.700000px;}
.xa5_c00241{left:432.750000px;}
.x37_c00241{left:434.250000px;}
.xa0_c00241{left:435.600000px;}
.x71_c00241{left:436.650000px;}
.x1c_c00241{left:437.700000px;}
.x9_c00241{left:439.200000px;}
.x59_c00241{left:440.700000px;}
.x30_c00241{left:446.850000px;}
.x13_c00241{left:447.900000px;}
.x74_c00241{left:449.100000px;}
.x78_c00241{left:453.000000px;}
.x81_c00241{left:455.400000px;}
.x2a_c00241{left:457.200000px;}
.x90_c00241{left:459.150000px;}
.x20_c00241{left:460.950000px;}
.x46_c00241{left:464.700000px;}
.x8e_c00241{left:468.900000px;}
.x88_c00241{left:471.450000px;}
.xa1_c00241{left:472.650000px;}
.x2b_c00241{left:473.700000px;}
.x82_c00241{left:475.200000px;}
.x69_c00241{left:477.000000px;}
.xa_c00241{left:479.100000px;}
.x79_c00241{left:481.500000px;}
.x9d_c00241{left:482.550000px;}
.x21_c00241{left:483.600000px;}
.x31_c00241{left:485.700000px;}
.x48_c00241{left:487.650000px;}
.x5d_c00241{left:489.300000px;}
.x83_c00241{left:491.100000px;}
.x9a_c00241{left:494.550000px;}
.x75_c00241{left:495.600000px;}
.x49_c00241{left:496.650000px;}
.x89_c00241{left:499.200000px;}
.x38_c00241{left:501.150000px;}
.x5a_c00241{left:503.400000px;}
.x32_c00241{left:505.200000px;}
.xb_c00241{left:510.450000px;}
.x8c_c00241{left:513.000000px;}
.xde_c00241{left:535.650000px;}
.x139_c00241{left:536.700000px;}
.x14b_c00241{left:539.250000px;}
.xd7_c00241{left:551.700000px;}
.x10f_c00241{left:552.750000px;}
.xab_c00241{left:554.100000px;}
.x140_c00241{left:555.300000px;}
.xdf_c00241{left:568.350000px;}
.x12d_c00241{left:569.550000px;}
.xc4_c00241{left:571.350000px;}
.x104_c00241{left:574.050000px;}
.xc3_c00241{left:576.600000px;}
.x130_c00241{left:579.000000px;}
.xb8_c00241{left:580.200000px;}
.xf9_c00241{left:582.450000px;}
.x11a_c00241{left:587.850000px;}
.xe0_c00241{left:588.900000px;}
.xfe_c00241{left:590.850000px;}
.x14a_c00241{left:593.700000px;}
.x146_c00241{left:594.900000px;}
.xce_c00241{left:596.250000px;}
.xca_c00241{left:597.300000px;}
.x126_c00241{left:598.500000px;}
.xbf_c00241{left:599.550000px;}
.xac_c00241{left:600.600000px;}
.x142_c00241{left:601.800000px;}
.x12b_c00241{left:603.750000px;}
.xb2_c00241{left:604.950000px;}
.xe6_c00241{left:606.900000px;}
.x147_c00241{left:608.400000px;}
.x105_c00241{left:609.750000px;}
.x131_c00241{left:612.750000px;}
.xec_c00241{left:613.800000px;}
.xfa_c00241{left:615.900000px;}
.xc5_c00241{left:617.100000px;}
.xcf_c00241{left:619.350000px;}
.xdb_c00241{left:621.150000px;}
.xf5_c00241{left:623.400000px;}
.xb9_c00241{left:625.500000px;}
.x11b_c00241{left:627.150000px;}
.xb3_c00241{left:630.150000px;}
.x133_c00241{left:631.350000px;}
.xfb_c00241{left:633.600000px;}
.xc0_c00241{left:635.550000px;}
.x143_c00241{left:638.550000px;}
.x13f_c00241{left:639.600000px;}
.x13d_c00241{left:641.250000px;}
.xed_c00241{left:642.600000px;}
.xd8_c00241{left:643.800000px;}
.xc6_c00241{left:645.150000px;}
.x106_c00241{left:647.550000px;}
.x141_c00241{left:648.600000px;}
.xf6_c00241{left:650.400000px;}
.xff_c00241{left:653.100000px;}
.x117_c00241{left:654.150000px;}
.xf1_c00241{left:655.350000px;}
.xba_c00241{left:656.850000px;}
.xd0_c00241{left:658.650000px;}
.xe7_c00241{left:660.600000px;}
.xee_c00241{left:662.100000px;}
.xc1_c00241{left:663.600000px;}
.x132_c00241{left:665.250000px;}
.x110_c00241{left:666.900000px;}
.x127_c00241{left:667.950000px;}
.xbb_c00241{left:671.250000px;}
.x137_c00241{left:672.450000px;}
.x12e_c00241{left:674.700000px;}
.x118_c00241{left:676.800000px;}
.xc7_c00241{left:677.850000px;}
.xad_c00241{left:680.550000px;}
.x10b_c00241{left:682.650000px;}
.x11e_c00241{left:683.850000px;}
.x109_c00241{left:685.200000px;}
.xdc_c00241{left:686.250000px;}
.xb4_c00241{left:688.500000px;}
.x107_c00241{left:693.300000px;}
.x134_c00241{left:695.400000px;}
.xe1_c00241{left:699.450000px;}
.xcb_c00241{left:701.400000px;}
.xf2_c00241{left:702.450000px;}
.x14d_c00241{left:704.550000px;}
.xe8_c00241{left:705.900000px;}
.xdd_c00241{left:707.850000px;}
.x10a_c00241{left:709.650000px;}
.xc2_c00241{left:711.450000px;}
.xd1_c00241{left:713.700000px;}
.x148_c00241{left:715.050000px;}
.x119_c00241{left:717.150000px;}
.xd9_c00241{left:719.400000px;}
.x111_c00241{left:721.200000px;}
.x128_c00241{left:723.000000px;}
.x100_c00241{left:727.350000px;}
.x11c_c00241{left:728.700000px;}
.xe9_c00241{left:730.350000px;}
.xbc_c00241{left:732.450000px;}
.xe2_c00241{left:734.700000px;}
.x112_c00241{left:737.400000px;}
.xc8_c00241{left:738.750000px;}
.xae_c00241{left:740.700000px;}
.x144_c00241{left:742.950000px;}
.x101_c00241{left:746.850000px;}
.x122_c00241{left:747.900000px;}
.xfc_c00241{left:749.550000px;}
.xd2_c00241{left:751.200000px;}
.xf3_c00241{left:753.150000px;}
.x11f_c00241{left:757.350000px;}
.x123_c00241{left:763.800000px;}
.x113_c00241{left:766.500000px;}
.x10c_c00241{left:767.700000px;}
.x149_c00241{left:768.750000px;}
.x11d_c00241{left:769.800000px;}
.xb5_c00241{left:772.800000px;}
.xf4_c00241{left:774.000000px;}
.xe3_c00241{left:775.350000px;}
.xbd_c00241{left:777.450000px;}
.xfd_c00241{left:778.650000px;}
.x135_c00241{left:780.300000px;}
.xef_c00241{left:782.700000px;}
.x13a_c00241{left:783.750000px;}
.xd3_c00241{left:786.450000px;}
.xea_c00241{left:787.650000px;}
.x114_c00241{left:789.150000px;}
.x108_c00241{left:790.800000px;}
.xaf_c00241{left:792.150000px;}
.x129_c00241{left:793.200000px;}
.xc9_c00241{left:795.300000px;}
.xda_c00241{left:799.350000px;}
.xf7_c00241{left:800.400000px;}
.xd4_c00241{left:802.350000px;}
.x102_c00241{left:804.450000px;}
.xb6_c00241{left:806.250000px;}
.x10d_c00241{left:808.050000px;}
.x14c_c00241{left:810.000000px;}
.x120_c00241{left:811.650000px;}
.xb0_c00241{left:813.000000px;}
.x124_c00241{left:814.200000px;}
.xf0_c00241{left:816.600000px;}
.x13b_c00241{left:817.950000px;}
.x145_c00241{left:820.050000px;}
.x115_c00241{left:823.650000px;}
.xcc_c00241{left:825.600000px;}
.xd5_c00241{left:826.800000px;}
.x10e_c00241{left:828.150000px;}
.x103_c00241{left:832.200000px;}
.xb7_c00241{left:834.000000px;}
.xbe_c00241{left:835.800000px;}
.x125_c00241{left:840.450000px;}
.x116_c00241{left:841.650000px;}
.xe4_c00241{left:842.700000px;}
.xb1_c00241{left:845.400000px;}
.x13c_c00241{left:846.450000px;}
.xf8_c00241{left:849.300000px;}
.xcd_c00241{left:850.500000px;}
.xeb_c00241{left:851.700000px;}
.x12a_c00241{left:852.900000px;}
.x136_c00241{left:854.250000px;}
.xd6_c00241{left:857.400000px;}
.x121_c00241{left:858.750000px;}
.xe5_c00241{left:861.450000px;}
.x13e_c00241{left:862.500000px;}
.x12f_c00241{left:863.700000px;}
.x12c_c00241{left:871.050000px;}
.x138_c00241{left:872.550000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws3_c00241{word-spacing:-5.802469pt;}
.ws7_c00241{word-spacing:-1.883199pt;}
.ws1_c00241{word-spacing:-0.646465pt;}
.ws9_c00241{word-spacing:0.000000pt;}
.ws5_c00241{word-spacing:0.138889pt;}
.ws8_c00241{word-spacing:0.480480pt;}
.ws6_c00241{word-spacing:1.368607pt;}
.ws4_c00241{word-spacing:3.284816pt;}
.ws2_c00241{word-spacing:3.703704pt;}
.ws0_c00241{word-spacing:8.475584pt;}
.fs5_c00241{font-size:26.666667pt;}
.fs3_c00241{font-size:48.000000pt;}
.fs2_c00241{font-size:53.333333pt;}
.fs0_c00241{font-size:58.666667pt;}
.fs4_c00241{font-size:64.000000pt;}
.fs1_c00241{font-size:69.333333pt;}
.y0_c00241{bottom:0.000000pt;}
.y39_c00241{bottom:177.866667pt;}
.y6c_c00241{bottom:178.533333pt;}
.y38_c00241{bottom:190.666667pt;}
.y6b_c00241{bottom:194.533333pt;}
.y37_c00241{bottom:203.866667pt;}
.y6a_c00241{bottom:214.133333pt;}
.y36_c00241{bottom:216.266667pt;}
.y35_c00241{bottom:229.333333pt;}
.y69_c00241{bottom:236.800000pt;}
.y34_c00241{bottom:241.866667pt;}
.y68_c00241{bottom:245.466667pt;}
.y33_c00241{bottom:254.400000pt;}
.y67_c00241{bottom:261.466667pt;}
.y32_c00241{bottom:267.200000pt;}
.y31_c00241{bottom:280.000000pt;}
.y66_c00241{bottom:281.200000pt;}
.y30_c00241{bottom:292.800000pt;}
.y65_c00241{bottom:296.933333pt;}
.y2f_c00241{bottom:305.333333pt;}
.y64_c00241{bottom:312.933333pt;}
.y2e_c00241{bottom:318.133333pt;}
.y63_c00241{bottom:328.933333pt;}
.y2d_c00241{bottom:330.933333pt;}
.y2c_c00241{bottom:343.733333pt;}
.y62_c00241{bottom:344.666667pt;}
.y2b_c00241{bottom:359.333333pt;}
.y61_c00241{bottom:360.666667pt;}
.y2a_c00241{bottom:364.800000pt;}
.y60_c00241{bottom:376.666667pt;}
.y29_c00241{bottom:385.733333pt;}
.y5f_c00241{bottom:392.666667pt;}
.y28_c00241{bottom:401.466667pt;}
.y5e_c00241{bottom:408.666667pt;}
.y27_c00241{bottom:417.466667pt;}
.y5d_c00241{bottom:424.000000pt;}
.y26_c00241{bottom:433.200000pt;}
.y5c_c00241{bottom:447.866667pt;}
.y25_c00241{bottom:449.200000pt;}
.y5b_c00241{bottom:463.866667pt;}
.y24_c00241{bottom:464.933333pt;}
.y5a_c00241{bottom:479.600000pt;}
.y23_c00241{bottom:480.666667pt;}
.y59_c00241{bottom:495.333333pt;}
.y22_c00241{bottom:496.666667pt;}
.y58_c00241{bottom:511.333333pt;}
.y21_c00241{bottom:512.400000pt;}
.y20_c00241{bottom:528.133333pt;}
.y57_c00241{bottom:530.533333pt;}
.y1f_c00241{bottom:543.866667pt;}
.y56_c00241{bottom:546.800000pt;}
.y1e_c00241{bottom:559.600000pt;}
.y55_c00241{bottom:562.533333pt;}
.y1d_c00241{bottom:575.333333pt;}
.y1c_c00241{bottom:591.333333pt;}
.y54_c00241{bottom:593.866667pt;}
.y53_c00241{bottom:594.133333pt;}
.y1b_c00241{bottom:607.333333pt;}
.y52_c00241{bottom:610.133333pt;}
.y1a_c00241{bottom:625.333333pt;}
.y51_c00241{bottom:625.866667pt;}
.y19_c00241{bottom:638.400000pt;}
.y50_c00241{bottom:641.866667pt;}
.y18_c00241{bottom:656.266667pt;}
.y4f_c00241{bottom:661.200000pt;}
.y17_c00241{bottom:672.000000pt;}
.y4e_c00241{bottom:677.200000pt;}
.y16_c00241{bottom:688.000000pt;}
.y4d_c00241{bottom:692.933333pt;}
.y15_c00241{bottom:704.000000pt;}
.y4c_c00241{bottom:708.933333pt;}
.y14_c00241{bottom:719.733333pt;}
.y4b_c00241{bottom:724.666667pt;}
.y13_c00241{bottom:735.066667pt;}
.y4a_c00241{bottom:740.666667pt;}
.y12_c00241{bottom:754.133333pt;}
.y49_c00241{bottom:756.400000pt;}
.y11_c00241{bottom:770.400000pt;}
.y48_c00241{bottom:772.133333pt;}
.y10_c00241{bottom:786.133333pt;}
.y47_c00241{bottom:788.133333pt;}
.yf_c00241{bottom:801.866667pt;}
.y46_c00241{bottom:804.133333pt;}
.ye_c00241{bottom:817.600000pt;}
.y45_c00241{bottom:819.866667pt;}
.y44_c00241{bottom:835.866667pt;}
.yd_c00241{bottom:837.733333pt;}
.y43_c00241{bottom:855.333333pt;}
.yc_c00241{bottom:856.666667pt;}
.y42_c00241{bottom:871.333333pt;}
.yb_c00241{bottom:872.933333pt;}
.y41_c00241{bottom:887.066667pt;}
.ya_c00241{bottom:888.933333pt;}
.y40_c00241{bottom:903.066667pt;}
.y9_c00241{bottom:904.933333pt;}
.y3f_c00241{bottom:919.066667pt;}
.y8_c00241{bottom:920.266667pt;}
.y7_c00241{bottom:936.266667pt;}
.y3e_c00241{bottom:938.266667pt;}
.y6_c00241{bottom:953.600000pt;}
.y3d_c00241{bottom:954.266667pt;}
.y5_c00241{bottom:967.333333pt;}
.y3c_c00241{bottom:970.533333pt;}
.y4_c00241{bottom:984.266667pt;}
.y3b_c00241{bottom:985.600000pt;}
.y3_c00241{bottom:1000.933333pt;}
.y3a_c00241{bottom:1001.600000pt;}
.y1_c00241{bottom:1023.733333pt;}
.y2_c00241{bottom:1025.066667pt;}
.h6_c00241{height:26.666667pt;}
.h4_c00241{height:48.000000pt;}
.h3_c00241{height:53.333333pt;}
.h1_c00241{height:58.666667pt;}
.h5_c00241{height:64.000000pt;}
.h2_c00241{height:69.333333pt;}
.h0_c00241{height:1136.000000pt;}
.w1_c00241{width:856.000000pt;}
.w0_c00241{width:856.319987pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:156.533333pt;}
.xd_c00241{left:157.733333pt;}
.x17_c00241{left:159.066667pt;}
.x3a_c00241{left:160.000000pt;}
.x97_c00241{left:161.333333pt;}
.x2c_c00241{left:162.266667pt;}
.x22_c00241{left:164.800000pt;}
.x60_c00241{left:168.800000pt;}
.x3b_c00241{left:169.866667pt;}
.x14_c00241{left:171.600000pt;}
.x64_c00241{left:172.533333pt;}
.x3_c00241{left:173.466667pt;}
.x1d_c00241{left:174.933333pt;}
.x23_c00241{left:176.000000pt;}
.x33_c00241{left:177.066667pt;}
.x95_c00241{left:179.600000pt;}
.x9e_c00241{left:189.333333pt;}
.xa7_c00241{left:191.066667pt;}
.x40_c00241{left:192.266667pt;}
.xa8_c00241{left:193.200000pt;}
.x4a_c00241{left:194.800000pt;}
.x91_c00241{left:196.266667pt;}
.x3c_c00241{left:198.400000pt;}
.x4f_c00241{left:200.666667pt;}
.x50_c00241{left:202.533333pt;}
.xc_c00241{left:204.400000pt;}
.x15_c00241{left:208.400000pt;}
.x72_c00241{left:209.333333pt;}
.x7d_c00241{left:210.266667pt;}
.x4_c00241{left:211.866667pt;}
.x24_c00241{left:213.466667pt;}
.x6e_c00241{left:214.400000pt;}
.x4b_c00241{left:215.333333pt;}
.x6a_c00241{left:220.533333pt;}
.xa2_c00241{left:222.133333pt;}
.x25_c00241{left:223.733333pt;}
.x2d_c00241{left:224.666667pt;}
.x84_c00241{left:226.266667pt;}
.x61_c00241{left:228.266667pt;}
.x34_c00241{left:230.133333pt;}
.x8a_c00241{left:231.333333pt;}
.x18_c00241{left:232.666667pt;}
.xe_c00241{left:233.600000pt;}
.x66_c00241{left:235.600000pt;}
.x9b_c00241{left:239.333333pt;}
.x56_c00241{left:240.400000pt;}
.x7a_c00241{left:242.000000pt;}
.xa3_c00241{left:242.933333pt;}
.x5e_c00241{left:243.866667pt;}
.x26_c00241{left:245.466667pt;}
.x19_c00241{left:247.333333pt;}
.x16_c00241{left:248.400000pt;}
.x5_c00241{left:249.333333pt;}
.x9f_c00241{left:252.133333pt;}
.x39_c00241{left:254.400000pt;}
.x47_c00241{left:256.000000pt;}
.x7e_c00241{left:256.933333pt;}
.x1e_c00241{left:258.133333pt;}
.x41_c00241{left:260.800000pt;}
.x5b_c00241{left:262.266667pt;}
.x6_c00241{left:264.666667pt;}
.x51_c00241{left:265.600000pt;}
.x2e_c00241{left:267.600000pt;}
.x6b_c00241{left:271.066667pt;}
.x65_c00241{left:272.133333pt;}
.xf_c00241{left:274.266667pt;}
.x3d_c00241{left:275.866667pt;}
.x76_c00241{left:276.933333pt;}
.xaa_c00241{left:278.400000pt;}
.x42_c00241{left:280.666667pt;}
.x57_c00241{left:282.933333pt;}
.xa6_c00241{left:285.333333pt;}
.xa4_c00241{left:286.666667pt;}
.x92_c00241{left:288.000000pt;}
.x6f_c00241{left:288.933333pt;}
.x35_c00241{left:291.200000pt;}
.x6c_c00241{left:293.733333pt;}
.x5f_c00241{left:295.066667pt;}
.x2f_c00241{left:296.400000pt;}
.x73_c00241{left:298.666667pt;}
.x10_c00241{left:299.866667pt;}
.x7f_c00241{left:303.066667pt;}
.x43_c00241{left:304.400000pt;}
.x1a_c00241{left:306.266667pt;}
.x98_c00241{left:307.733333pt;}
.x52_c00241{left:308.800000pt;}
.x4c_c00241{left:311.066667pt;}
.x27_c00241{left:312.000000pt;}
.x54_c00241{left:313.066667pt;}
.x58_c00241{left:314.666667pt;}
.x93_c00241{left:318.133333pt;}
.x62_c00241{left:319.066667pt;}
.x4d_c00241{left:320.666667pt;}
.x8b_c00241{left:323.200000pt;}
.x7_c00241{left:324.800000pt;}
.x9c_c00241{left:326.533333pt;}
.x44_c00241{left:327.733333pt;}
.x8d_c00241{left:329.466667pt;}
.x1f_c00241{left:332.000000pt;}
.x28_c00241{left:333.066667pt;}
.x67_c00241{left:334.133333pt;}
.x11_c00241{left:335.066667pt;}
.x85_c00241{left:336.400000pt;}
.x45_c00241{left:337.600000pt;}
.xa9_c00241{left:338.800000pt;}
.x5c_c00241{left:340.266667pt;}
.x94_c00241{left:341.200000pt;}
.x1b_c00241{left:343.333333pt;}
.x70_c00241{left:344.266667pt;}
.x8f_c00241{left:345.466667pt;}
.x99_c00241{left:347.466667pt;}
.x3e_c00241{left:349.200000pt;}
.x29_c00241{left:352.266667pt;}
.x7b_c00241{left:353.600000pt;}
.x55_c00241{left:356.000000pt;}
.x86_c00241{left:356.933333pt;}
.x12_c00241{left:358.400000pt;}
.x8_c00241{left:361.866667pt;}
.x63_c00241{left:362.933333pt;}
.x36_c00241{left:364.533333pt;}
.x7c_c00241{left:368.000000pt;}
.x4e_c00241{left:369.600000pt;}
.x6d_c00241{left:370.933333pt;}
.x2_c00241{left:372.266667pt;}
.x87_c00241{left:373.600000pt;}
.x80_c00241{left:375.066667pt;}
.x53_c00241{left:376.933333pt;}
.x96_c00241{left:378.800000pt;}
.x3f_c00241{left:379.866667pt;}
.x68_c00241{left:382.400000pt;}
.x77_c00241{left:383.733333pt;}
.xa5_c00241{left:384.666667pt;}
.x37_c00241{left:386.000000pt;}
.xa0_c00241{left:387.200000pt;}
.x71_c00241{left:388.133333pt;}
.x1c_c00241{left:389.066667pt;}
.x9_c00241{left:390.400000pt;}
.x59_c00241{left:391.733333pt;}
.x30_c00241{left:397.200000pt;}
.x13_c00241{left:398.133333pt;}
.x74_c00241{left:399.200000pt;}
.x78_c00241{left:402.666667pt;}
.x81_c00241{left:404.800000pt;}
.x2a_c00241{left:406.400000pt;}
.x90_c00241{left:408.133333pt;}
.x20_c00241{left:409.733333pt;}
.x46_c00241{left:413.066667pt;}
.x8e_c00241{left:416.800000pt;}
.x88_c00241{left:419.066667pt;}
.xa1_c00241{left:420.133333pt;}
.x2b_c00241{left:421.066667pt;}
.x82_c00241{left:422.400000pt;}
.x69_c00241{left:424.000000pt;}
.xa_c00241{left:425.866667pt;}
.x79_c00241{left:428.000000pt;}
.x9d_c00241{left:428.933333pt;}
.x21_c00241{left:429.866667pt;}
.x31_c00241{left:431.733333pt;}
.x48_c00241{left:433.466667pt;}
.x5d_c00241{left:434.933333pt;}
.x83_c00241{left:436.533333pt;}
.x9a_c00241{left:439.600000pt;}
.x75_c00241{left:440.533333pt;}
.x49_c00241{left:441.466667pt;}
.x89_c00241{left:443.733333pt;}
.x38_c00241{left:445.466667pt;}
.x5a_c00241{left:447.466667pt;}
.x32_c00241{left:449.066667pt;}
.xb_c00241{left:453.733333pt;}
.x8c_c00241{left:456.000000pt;}
.xde_c00241{left:476.133333pt;}
.x139_c00241{left:477.066667pt;}
.x14b_c00241{left:479.333333pt;}
.xd7_c00241{left:490.400000pt;}
.x10f_c00241{left:491.333333pt;}
.xab_c00241{left:492.533333pt;}
.x140_c00241{left:493.600000pt;}
.xdf_c00241{left:505.200000pt;}
.x12d_c00241{left:506.266667pt;}
.xc4_c00241{left:507.866667pt;}
.x104_c00241{left:510.266667pt;}
.xc3_c00241{left:512.533333pt;}
.x130_c00241{left:514.666667pt;}
.xb8_c00241{left:515.733333pt;}
.xf9_c00241{left:517.733333pt;}
.x11a_c00241{left:522.533333pt;}
.xe0_c00241{left:523.466667pt;}
.xfe_c00241{left:525.200000pt;}
.x14a_c00241{left:527.733333pt;}
.x146_c00241{left:528.800000pt;}
.xce_c00241{left:530.000000pt;}
.xca_c00241{left:530.933333pt;}
.x126_c00241{left:532.000000pt;}
.xbf_c00241{left:532.933333pt;}
.xac_c00241{left:533.866667pt;}
.x142_c00241{left:534.933333pt;}
.x12b_c00241{left:536.666667pt;}
.xb2_c00241{left:537.733333pt;}
.xe6_c00241{left:539.466667pt;}
.x147_c00241{left:540.800000pt;}
.x105_c00241{left:542.000000pt;}
.x131_c00241{left:544.666667pt;}
.xec_c00241{left:545.600000pt;}
.xfa_c00241{left:547.466667pt;}
.xc5_c00241{left:548.533333pt;}
.xcf_c00241{left:550.533333pt;}
.xdb_c00241{left:552.133333pt;}
.xf5_c00241{left:554.133333pt;}
.xb9_c00241{left:556.000000pt;}
.x11b_c00241{left:557.466667pt;}
.xb3_c00241{left:560.133333pt;}
.x133_c00241{left:561.200000pt;}
.xfb_c00241{left:563.200000pt;}
.xc0_c00241{left:564.933333pt;}
.x143_c00241{left:567.600000pt;}
.x13f_c00241{left:568.533333pt;}
.x13d_c00241{left:570.000000pt;}
.xed_c00241{left:571.200000pt;}
.xd8_c00241{left:572.266667pt;}
.xc6_c00241{left:573.466667pt;}
.x106_c00241{left:575.600000pt;}
.x141_c00241{left:576.533333pt;}
.xf6_c00241{left:578.133333pt;}
.xff_c00241{left:580.533333pt;}
.x117_c00241{left:581.466667pt;}
.xf1_c00241{left:582.533333pt;}
.xba_c00241{left:583.866667pt;}
.xd0_c00241{left:585.466667pt;}
.xe7_c00241{left:587.200000pt;}
.xee_c00241{left:588.533333pt;}
.xc1_c00241{left:589.866667pt;}
.x132_c00241{left:591.333333pt;}
.x110_c00241{left:592.800000pt;}
.x127_c00241{left:593.733333pt;}
.xbb_c00241{left:596.666667pt;}
.x137_c00241{left:597.733333pt;}
.x12e_c00241{left:599.733333pt;}
.x118_c00241{left:601.600000pt;}
.xc7_c00241{left:602.533333pt;}
.xad_c00241{left:604.933333pt;}
.x10b_c00241{left:606.800000pt;}
.x11e_c00241{left:607.866667pt;}
.x109_c00241{left:609.066667pt;}
.xdc_c00241{left:610.000000pt;}
.xb4_c00241{left:612.000000pt;}
.x107_c00241{left:616.266667pt;}
.x134_c00241{left:618.133333pt;}
.xe1_c00241{left:621.733333pt;}
.xcb_c00241{left:623.466667pt;}
.xf2_c00241{left:624.400000pt;}
.x14d_c00241{left:626.266667pt;}
.xe8_c00241{left:627.466667pt;}
.xdd_c00241{left:629.200000pt;}
.x10a_c00241{left:630.800000pt;}
.xc2_c00241{left:632.400000pt;}
.xd1_c00241{left:634.400000pt;}
.x148_c00241{left:635.600000pt;}
.x119_c00241{left:637.466667pt;}
.xd9_c00241{left:639.466667pt;}
.x111_c00241{left:641.066667pt;}
.x128_c00241{left:642.666667pt;}
.x100_c00241{left:646.533333pt;}
.x11c_c00241{left:647.733333pt;}
.xe9_c00241{left:649.200000pt;}
.xbc_c00241{left:651.066667pt;}
.xe2_c00241{left:653.066667pt;}
.x112_c00241{left:655.466667pt;}
.xc8_c00241{left:656.666667pt;}
.xae_c00241{left:658.400000pt;}
.x144_c00241{left:660.400000pt;}
.x101_c00241{left:663.866667pt;}
.x122_c00241{left:664.800000pt;}
.xfc_c00241{left:666.266667pt;}
.xd2_c00241{left:667.733333pt;}
.xf3_c00241{left:669.466667pt;}
.x11f_c00241{left:673.200000pt;}
.x123_c00241{left:678.933333pt;}
.x113_c00241{left:681.333333pt;}
.x10c_c00241{left:682.400000pt;}
.x149_c00241{left:683.333333pt;}
.x11d_c00241{left:684.266667pt;}
.xb5_c00241{left:686.933333pt;}
.xf4_c00241{left:688.000000pt;}
.xe3_c00241{left:689.200000pt;}
.xbd_c00241{left:691.066667pt;}
.xfd_c00241{left:692.133333pt;}
.x135_c00241{left:693.600000pt;}
.xef_c00241{left:695.733333pt;}
.x13a_c00241{left:696.666667pt;}
.xd3_c00241{left:699.066667pt;}
.xea_c00241{left:700.133333pt;}
.x114_c00241{left:701.466667pt;}
.x108_c00241{left:702.933333pt;}
.xaf_c00241{left:704.133333pt;}
.x129_c00241{left:705.066667pt;}
.xc9_c00241{left:706.933333pt;}
.xda_c00241{left:710.533333pt;}
.xf7_c00241{left:711.466667pt;}
.xd4_c00241{left:713.200000pt;}
.x102_c00241{left:715.066667pt;}
.xb6_c00241{left:716.666667pt;}
.x10d_c00241{left:718.266667pt;}
.x14c_c00241{left:720.000000pt;}
.x120_c00241{left:721.466667pt;}
.xb0_c00241{left:722.666667pt;}
.x124_c00241{left:723.733333pt;}
.xf0_c00241{left:725.866667pt;}
.x13b_c00241{left:727.066667pt;}
.x145_c00241{left:728.933333pt;}
.x115_c00241{left:732.133333pt;}
.xcc_c00241{left:733.866667pt;}
.xd5_c00241{left:734.933333pt;}
.x10e_c00241{left:736.133333pt;}
.x103_c00241{left:739.733333pt;}
.xb7_c00241{left:741.333333pt;}
.xbe_c00241{left:742.933333pt;}
.x125_c00241{left:747.066667pt;}
.x116_c00241{left:748.133333pt;}
.xe4_c00241{left:749.066667pt;}
.xb1_c00241{left:751.466667pt;}
.x13c_c00241{left:752.400000pt;}
.xf8_c00241{left:754.933333pt;}
.xcd_c00241{left:756.000000pt;}
.xeb_c00241{left:757.066667pt;}
.x12a_c00241{left:758.133333pt;}
.x136_c00241{left:759.333333pt;}
.xd6_c00241{left:762.133333pt;}
.x121_c00241{left:763.333333pt;}
.xe5_c00241{left:765.733333pt;}
.x13e_c00241{left:766.666667pt;}
.x12f_c00241{left:767.733333pt;}
.x12c_c00241{left:774.266667pt;}
.x138_c00241{left:775.600000pt;}
}





/* 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_c00242 {
    display:none;
  }
  .loading-indicator_c00242.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00242 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_c00242 { 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_c00242" -> "#page-container .classname_c00242")
 */
.pf_c00242 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00242 { /* 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_c00242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00242 { /* 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_c00242 { /* 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_c00242 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00242 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00242 {overflow:visible;}
  }
}
.c_c00242 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00242 { /* 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_c00242:after { /* webkit #35443 */
  content: '';
}
.t_c00242:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00242 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 */
}
.__c00242 { /* 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_c00242 { /* info for Javascript */
  display:none;
}
.l_c00242 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00242 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00242 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00242: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_c00242 {
    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_c00242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00242.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_c00242 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00242;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.000000;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;}
.mc2_c00242{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m102_c00242{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m64_c00242{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m92_c00242{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m125_c00242{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m16_c00242{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00242{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.ma_c00242{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00242{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00242{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00242{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m25_c00242{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00242{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m50_c00242{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00242{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m6_c00242{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m99_c00242{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m27_c00242{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00242{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m55_c00242{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m120_c00242{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00242{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00242{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.md_c00242{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m26_c00242{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00242{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m62_c00242{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m73_c00242{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.me9_c00242{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m3_c00242{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m43_c00242{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m101_c00242{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m8_c00242{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m58_c00242{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m15_c00242{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00242{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m14_c00242{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5_c00242{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00242{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m51_c00242{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m126_c00242{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m87_c00242{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md8_c00242{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m53_c00242{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00242{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00242{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00242{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m74_c00242{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md7_c00242{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00242{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m67_c00242{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00242{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m96_c00242{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md9_c00242{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m86_c00242{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m44_c00242{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.maf_c00242{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00242{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00242{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00242{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00242{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md2_c00242{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00242{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00242{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00242{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m54_c00242{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.maa_c00242{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m98_c00242{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m83_c00242{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m47_c00242{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00242{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mee_c00242{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m85_c00242{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m57_c00242{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.meb_c00242{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m123_c00242{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00242{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00242{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m94_c00242{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m122_c00242{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m109_c00242{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00242{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00242{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mf_c00242{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me5_c00242{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00242{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00242{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00242{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00242{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00242{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00242{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me6_c00242{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me_c00242{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m45_c00242{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00242{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00242{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mff_c00242{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m28_c00242{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m7_c00242{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00242{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00242{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m19_c00242{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m38_c00242{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m49_c00242{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mec_c00242{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00242{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00242{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me1_c00242{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00242{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mba_c00242{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00242{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md4_c00242{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00242{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00242{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00242{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me2_c00242{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00242{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00242{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00242{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m24_c00242{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mde_c00242{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00242{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m56_c00242{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mca_c00242{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m70_c00242{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00242{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00242{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00242{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00242{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me8_c00242{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00242{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m35_c00242{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m78_c00242{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m63_c00242{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00242{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m76_c00242{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m4_c00242{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m117_c00242{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00242{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00242{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9_c00242{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m21_c00242{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00242{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m60_c00242{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m90_c00242{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m41_c00242{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00242{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m29_c00242{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00242{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m10_c00242{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m105_c00242{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mc_c00242{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m91_c00242{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00242{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m82_c00242{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me3_c00242{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m30_c00242{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mce_c00242{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m12_c00242{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m65_c00242{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m34_c00242{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00242{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m97_c00242{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00242{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00242{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mda_c00242{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00242{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00242{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00242{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00242{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00242{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m77_c00242{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m121_c00242{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m72_c00242{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00242{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00242{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m80_c00242{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.med_c00242{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m40_c00242{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00242{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m79_c00242{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md1_c00242{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00242{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00242{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00242{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mac_c00242{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00242{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00242{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m22_c00242{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mab_c00242{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mea_c00242{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m42_c00242{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb_c00242{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m46_c00242{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m59_c00242{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00242{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m113_c00242{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00242{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mef_c00242{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m52_c00242{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m71_c00242{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00242{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m61_c00242{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m20_c00242{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md0_c00242{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m84_c00242{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00242{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m95_c00242{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md6_c00242{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m88_c00242{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m13_c00242{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m110_c00242{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00242{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me0_c00242{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00242{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00242{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00242{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m75_c00242{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00242{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00242{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me7_c00242{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00242{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m11_c00242{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m118_c00242{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00242{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m108_c00242{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md5_c00242{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m31_c00242{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m39_c00242{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m32_c00242{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00242{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m89_c00242{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00242{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m106_c00242{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m66_c00242{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00242{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m107_c00242{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m112_c00242{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00242{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2_c00242{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m36_c00242{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00242{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00242{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00242{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m81_c00242{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00242{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00242{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00242{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);}
.mf0_c00242{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m119_c00242{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m23_c00242{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m115_c00242{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m111_c00242{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00242{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00242{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00242{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00242{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m48_c00242{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m33_c00242{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00242{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.md3_c00242{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m104_c00242{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00242{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m68_c00242{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m17_c00242{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00242{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m69_c00242{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m93_c00242{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m37_c00242{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00242{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me4_c00242{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00242{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m103_c00242{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00242{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m100_c00242{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00242{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mad_c00242{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00242{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00242{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00242{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m114_c00242{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00242{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00242{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m116_c00242{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00242{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mae_c00242{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00242{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m18_c00242{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00242{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m124_c00242{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00242{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00242{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00242{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.m127_c00242{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00242{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls0_c00242{letter-spacing:0.000000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{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__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00242{word-spacing:-6.903780px;}
.ws1_c00242{word-spacing:-4.910736px;}
.ws0_c00242{word-spacing:-2.875000px;}
.ws3_c00242{word-spacing:-2.063694px;}
.ws6_c00242{word-spacing:0.000000px;}
.ws5_c00242{word-spacing:7.055646px;}
.ws2_c00242{word-spacing:23.303571px;}
.fc0_c00242{color:transparent;}
.fs4_c00242{font-size:54.000000px;}
.fs3_c00242{font-size:60.000000px;}
.fs2_c00242{font-size:66.000000px;}
.fs1_c00242{font-size:72.000000px;}
.fs0_c00242{font-size:78.000000px;}
.y0_c00242{bottom:0.000000px;}
.y68_c00242{bottom:190.050000px;}
.y67_c00242{bottom:191.550000px;}
.y35_c00242{bottom:191.850000px;}
.y66_c00242{bottom:206.550000px;}
.y34_c00242{bottom:209.850000px;}
.y65_c00242{bottom:221.700000px;}
.y33_c00242{bottom:227.550000px;}
.y64_c00242{bottom:236.100000px;}
.y63_c00242{bottom:249.750000px;}
.y32_c00242{bottom:249.900000px;}
.y62_c00242{bottom:264.150000px;}
.y61_c00242{bottom:278.550000px;}
.y31_c00242{bottom:284.700000px;}
.y60_c00242{bottom:292.650000px;}
.y30_c00242{bottom:302.700000px;}
.y5f_c00242{bottom:307.050000px;}
.y2f_c00242{bottom:320.400000px;}
.y5e_c00242{bottom:321.450000px;}
.y5d_c00242{bottom:335.850000px;}
.y2e_c00242{bottom:346.650000px;}
.y5c_c00242{bottom:350.250000px;}
.y2d_c00242{bottom:364.650000px;}
.y2c_c00242{bottom:382.650000px;}
.y2b_c00242{bottom:400.350000px;}
.y5b_c00242{bottom:403.200000px;}
.y2a_c00242{bottom:418.350000px;}
.y5a_c00242{bottom:421.200000px;}
.y29_c00242{bottom:439.950000px;}
.y59_c00242{bottom:442.800000px;}
.y28_c00242{bottom:457.950000px;}
.y58_c00242{bottom:460.500000px;}
.y27_c00242{bottom:475.950000px;}
.y57_c00242{bottom:478.050000px;}
.y26_c00242{bottom:493.500000px;}
.y56_c00242{bottom:496.050000px;}
.y25_c00242{bottom:511.500000px;}
.y55_c00242{bottom:513.750000px;}
.y24_c00242{bottom:529.200000px;}
.y54_c00242{bottom:536.100000px;}
.y23_c00242{bottom:547.200000px;}
.y53_c00242{bottom:553.650000px;}
.y22_c00242{bottom:568.500000px;}
.y52_c00242{bottom:584.700000px;}
.y21_c00242{bottom:586.500000px;}
.y51_c00242{bottom:602.700000px;}
.y20_c00242{bottom:604.200000px;}
.y50_c00242{bottom:620.550000px;}
.y1f_c00242{bottom:622.200000px;}
.y4f_c00242{bottom:638.250000px;}
.y1e_c00242{bottom:639.900000px;}
.y1d_c00242{bottom:657.900000px;}
.y4e_c00242{bottom:660.000000px;}
.y1c_c00242{bottom:675.150000px;}
.y4d_c00242{bottom:678.000000px;}
.y1b_c00242{bottom:692.850000px;}
.y4c_c00242{bottom:695.250000px;}
.y1a_c00242{bottom:710.850000px;}
.y4b_c00242{bottom:712.950000px;}
.y19_c00242{bottom:728.550000px;}
.y4a_c00242{bottom:730.950000px;}
.y18_c00242{bottom:746.550000px;}
.y49_c00242{bottom:749.250000px;}
.y17_c00242{bottom:764.250000px;}
.y48_c00242{bottom:766.500000px;}
.y16_c00242{bottom:781.950000px;}
.y47_c00242{bottom:784.200000px;}
.y15_c00242{bottom:799.950000px;}
.y46_c00242{bottom:803.700000px;}
.y45_c00242{bottom:820.200000px;}
.y14_c00242{bottom:824.100000px;}
.y44_c00242{bottom:837.450000px;}
.y13_c00242{bottom:838.500000px;}
.y12_c00242{bottom:852.900000px;}
.y43_c00242{bottom:855.450000px;}
.y11_c00242{bottom:867.300000px;}
.y42_c00242{bottom:873.450000px;}
.y10_c00242{bottom:881.250000px;}
.y41_c00242{bottom:890.700000px;}
.yf_c00242{bottom:897.450000px;}
.y40_c00242{bottom:908.700000px;}
.ye_c00242{bottom:910.050000px;}
.yd_c00242{bottom:924.150000px;}
.y3f_c00242{bottom:926.400000px;}
.y3e_c00242{bottom:944.100000px;}
.yc_c00242{bottom:944.700000px;}
.y3d_c00242{bottom:961.800000px;}
.yb_c00242{bottom:962.400000px;}
.y3c_c00242{bottom:979.500000px;}
.ya_c00242{bottom:979.650000px;}
.y9_c00242{bottom:997.950000px;}
.y3b_c00242{bottom:1004.100000px;}
.y8_c00242{bottom:1018.050000px;}
.y3a_c00242{bottom:1024.050000px;}
.y7_c00242{bottom:1041.300000px;}
.y39_c00242{bottom:1041.750000px;}
.y6_c00242{bottom:1059.000000px;}
.y38_c00242{bottom:1059.750000px;}
.y5_c00242{bottom:1077.000000px;}
.y37_c00242{bottom:1077.450000px;}
.y4_c00242{bottom:1095.000000px;}
.y36_c00242{bottom:1095.450000px;}
.y3_c00242{bottom:1112.700000px;}
.y2_c00242{bottom:1138.650000px;}
.y1_c00242{bottom:1139.700000px;}
.h6_c00242{height:54.000000px;}
.h5_c00242{height:60.000000px;}
.h4_c00242{height:66.000000px;}
.h3_c00242{height:72.000000px;}
.h2_c00242{height:78.000000px;}
.h0_c00242{height:1270.440033px;}
.h1_c00242{height:1270.500000px;}
.w1_c00242{width:963.000000px;}
.w0_c00242{width:963.359985px;}
.x0_c00242{left:0.000000px;}
.xa0_c00242{left:91.500000px;}
.x97_c00242{left:92.550000px;}
.x27_c00242{left:95.100000px;}
.x57_c00242{left:97.500000px;}
.xa1_c00242{left:102.300000px;}
.x55_c00242{left:109.050000px;}
.x3c_c00242{left:110.100000px;}
.x81_c00242{left:111.900000px;}
.x4_c00242{left:113.100000px;}
.x89_c00242{left:119.850000px;}
.x50_c00242{left:123.450000px;}
.x46_c00242{left:124.500000px;}
.xa6_c00242{left:127.050000px;}
.x4a_c00242{left:129.600000px;}
.x9e_c00242{left:130.650000px;}
.x8b_c00242{left:134.250000px;}
.x5_c00242{left:137.250000px;}
.x70_c00242{left:139.500000px;}
.x20_c00242{left:145.950000px;}
.x84_c00242{left:148.500000px;}
.x3d_c00242{left:150.450000px;}
.x14_c00242{left:151.800000px;}
.xab_c00242{left:153.000000px;}
.x86_c00242{left:154.050000px;}
.x21_c00242{left:155.700000px;}
.x6_c00242{left:157.800000px;}
.x71_c00242{left:161.100000px;}
.x2b_c00242{left:162.750000px;}
.x22_c00242{left:164.400000px;}
.x75_c00242{left:165.450000px;}
.x96_c00242{left:167.400000px;}
.x7d_c00242{left:170.550000px;}
.x31_c00242{left:172.200000px;}
.x15_c00242{left:173.400000px;}
.x7_c00242{left:175.800000px;}
.x5f_c00242{left:176.850000px;}
.x51_c00242{left:178.500000px;}
.x2c_c00242{left:180.450000px;}
.x23_c00242{left:183.900000px;}
.x8_c00242{left:185.550000px;}
.x47_c00242{left:189.000000px;}
.x16_c00242{left:191.400000px;}
.x7b_c00242{left:193.650000px;}
.x58_c00242{left:195.000000px;}
.x72_c00242{left:196.350000px;}
.x17_c00242{left:197.850000px;}
.x38_c00242{left:200.250000px;}
.x4b_c00242{left:201.600000px;}
.x28_c00242{left:205.650000px;}
.xa2_c00242{left:207.150000px;}
.x8a_c00242{left:208.500000px;}
.x8c_c00242{left:209.550000px;}
.xf_c00242{left:211.350000px;}
.xa8_c00242{left:213.150000px;}
.x52_c00242{left:214.200000px;}
.x3e_c00242{left:216.000000px;}
.x93_c00242{left:217.350000px;}
.x7e_c00242{left:218.400000px;}
.x78_c00242{left:220.500000px;}
.x8d_c00242{left:224.250000px;}
.x68_c00242{left:225.450000px;}
.x5c_c00242{left:227.550000px;}
.x1c_c00242{left:229.050000px;}
.x2d_c00242{left:231.600000px;}
.x24_c00242{left:234.000000px;}
.xa9_c00242{left:236.850000px;}
.x63_c00242{left:238.050000px;}
.x85_c00242{left:239.250000px;}
.x3f_c00242{left:241.500000px;}
.x60_c00242{left:243.450000px;}
.x39_c00242{left:244.800000px;}
.x59_c00242{left:246.750000px;}
.x32_c00242{left:248.250000px;}
.x7f_c00242{left:249.300000px;}
.x1d_c00242{left:250.350000px;}
.x9_c00242{left:252.150000px;}
.x69_c00242{left:253.500000px;}
.x4c_c00242{left:254.850000px;}
.x6b_c00242{left:256.500000px;}
.x9a_c00242{left:258.600000px;}
.x2e_c00242{left:260.400000px;}
.x33_c00242{left:263.400000px;}
.x10_c00242{left:265.650000px;}
.xaa_c00242{left:267.450000px;}
.x5a_c00242{left:269.100000px;}
.x80_c00242{left:271.200000px;}
.x2f_c00242{left:273.300000px;}
.x53_c00242{left:274.950000px;}
.x9b_c00242{left:276.600000px;}
.x25_c00242{left:279.000000px;}
.x5d_c00242{left:280.500000px;}
.x61_c00242{left:281.550000px;}
.x8e_c00242{left:283.650000px;}
.x41_c00242{left:285.450000px;}
.x40_c00242{left:286.500000px;}
.x6e_c00242{left:288.000000px;}
.x3a_c00242{left:289.800000px;}
.x94_c00242{left:290.850000px;}
.x64_c00242{left:293.100000px;}
.xa_c00242{left:297.450000px;}
.xa5_c00242{left:298.500000px;}
.x1e_c00242{left:299.700000px;}
.x66_c00242{left:302.250000px;}
.x8f_c00242{left:304.500000px;}
.x11_c00242{left:305.550000px;}
.x54_c00242{left:306.600000px;}
.x6c_c00242{left:308.700000px;}
.x18_c00242{left:311.250000px;}
.x79_c00242{left:316.350000px;}
.x98_c00242{left:318.900000px;}
.x29_c00242{left:320.100000px;}
.x30_c00242{left:322.200000px;}
.x62_c00242{left:325.050000px;}
.x34_c00242{left:326.700000px;}
.x99_c00242{left:327.900000px;}
.x6d_c00242{left:330.000000px;}
.x9f_c00242{left:331.500000px;}
.x4d_c00242{left:332.550000px;}
.x9d_c00242{left:333.750000px;}
.x1_c00242{left:334.800000px;}
.x82_c00242{left:336.000000px;}
.x1f_c00242{left:337.200000px;}
.xb_c00242{left:338.850000px;}
.x4e_c00242{left:340.050000px;}
.x42_c00242{left:341.700000px;}
.x19_c00242{left:343.950000px;}
.xc_c00242{left:347.100000px;}
.x9c_c00242{left:349.350000px;}
.x35_c00242{left:352.950000px;}
.x73_c00242{left:354.150000px;}
.x26_c00242{left:355.350000px;}
.xa4_c00242{left:356.850000px;}
.x12_c00242{left:358.050000px;}
.x4f_c00242{left:361.650000px;}
.x5e_c00242{left:363.000000px;}
.x43_c00242{left:365.100000px;}
.x65_c00242{left:367.350000px;}
.x76_c00242{left:368.400000px;}
.x91_c00242{left:369.600000px;}
.x36_c00242{left:371.250000px;}
.x6f_c00242{left:372.300000px;}
.x6a_c00242{left:373.350000px;}
.x1a_c00242{left:376.350000px;}
.x13_c00242{left:378.600000px;}
.x87_c00242{left:380.250000px;}
.x92_c00242{left:381.450000px;}
.x48_c00242{left:382.800000px;}
.xd_c00242{left:384.900000px;}
.x7a_c00242{left:386.550000px;}
.x2a_c00242{left:387.750000px;}
.x5b_c00242{left:389.850000px;}
.x56_c00242{left:390.900000px;}
.x77_c00242{left:392.550000px;}
.x74_c00242{left:396.300000px;}
.x95_c00242{left:398.100000px;}
.x44_c00242{left:399.600000px;}
.x90_c00242{left:402.150000px;}
.x37_c00242{left:403.650000px;}
.x1b_c00242{left:405.150000px;}
.x83_c00242{left:406.200000px;}
.x3b_c00242{left:408.150000px;}
.xa3_c00242{left:409.200000px;}
.x67_c00242{left:411.300000px;}
.x88_c00242{left:414.150000px;}
.x7c_c00242{left:415.650000px;}
.x49_c00242{left:417.300000px;}
.x45_c00242{left:418.350000px;}
.xe_c00242{left:421.650000px;}
.xa7_c00242{left:425.850000px;}
.x13d_c00242{left:448.500000px;}
.x139_c00242{left:449.700000px;}
.xd1_c00242{left:451.500000px;}
.xac_c00242{left:453.300000px;}
.x13c_c00242{left:464.100000px;}
.x151_c00242{left:465.150000px;}
.x12b_c00242{left:466.200000px;}
.x130_c00242{left:467.250000px;}
.xb9_c00242{left:468.600000px;}
.xc1_c00242{left:469.650000px;}
.xb3_c00242{left:471.000000px;}
.x152_c00242{left:472.650000px;}
.x14e_c00242{left:475.500000px;}
.xad_c00242{left:477.450000px;}
.x14a_c00242{left:481.650000px;}
.x13e_c00242{left:483.450000px;}
.xc7_c00242{left:485.400000px;}
.x12e_c00242{left:487.500000px;}
.xcc_c00242{left:490.050000px;}
.x105_c00242{left:492.000000px;}
.xae_c00242{left:495.150000px;}
.xfc_c00242{left:496.500000px;}
.x10a_c00242{left:498.150000px;}
.x14f_c00242{left:500.400000px;}
.xf3_c00242{left:501.600000px;}
.x14c_c00242{left:502.650000px;}
.x142_c00242{left:504.600000px;}
.xc2_c00242{left:505.650000px;}
.x128_c00242{left:508.650000px;}
.xd2_c00242{left:509.850000px;}
.x137_c00242{left:512.700000px;}
.x101_c00242{left:514.200000px;}
.x110_c00242{left:517.050000px;}
.x11a_c00242{left:519.450000px;}
.xeb_c00242{left:521.250000px;}
.xc8_c00242{left:522.900000px;}
.xb4_c00242{left:525.000000px;}
.x11f_c00242{left:526.500000px;}
.x12f_c00242{left:531.000000px;}
.x150_c00242{left:532.050000px;}
.xdb_c00242{left:534.900000px;}
.x14d_c00242{left:536.550000px;}
.xcd_c00242{left:537.900000px;}
.xd3_c00242{left:539.700000px;}
.xba_c00242{left:541.350000px;}
.x120_c00242{left:542.700000px;}
.x145_c00242{left:545.400000px;}
.x12c_c00242{left:547.200000px;}
.xfd_c00242{left:549.750000px;}
.x111_c00242{left:552.000000px;}
.x10b_c00242{left:554.700000px;}
.xdc_c00242{left:556.500000px;}
.x10d_c00242{left:558.750000px;}
.xaf_c00242{left:562.500000px;}
.xf6_c00242{left:566.250000px;}
.x153_c00242{left:568.200000px;}
.xe2_c00242{left:569.850000px;}
.xf0_c00242{left:571.800000px;}
.xfe_c00242{left:573.900000px;}
.xec_c00242{left:576.000000px;}
.xce_c00242{left:577.500000px;}
.xc3_c00242{left:579.750000px;}
.x13f_c00242{left:581.850000px;}
.x123_c00242{left:582.900000px;}
.x106_c00242{left:584.400000px;}
.xbb_c00242{left:586.350000px;}
.xc9_c00242{left:588.750000px;}
.xe6_c00242{left:590.550000px;}
.xb5_c00242{left:593.100000px;}
.x135_c00242{left:595.050000px;}
.x121_c00242{left:597.000000px;}
.xd7_c00242{left:598.350000px;}
.x11b_c00242{left:599.700000px;}
.x146_c00242{left:601.200000px;}
.xd4_c00242{left:603.000000px;}
.x10e_c00242{left:604.200000px;}
.xb0_c00242{left:606.450000px;}
.xb6_c00242{left:609.000000px;}
.xdd_c00242{left:611.250000px;}
.xe7_c00242{left:616.050000px;}
.xd5_c00242{left:617.100000px;}
.x14b_c00242{left:619.650000px;}
.x140_c00242{left:621.450000px;}
.x102_c00242{left:624.000000px;}
.x112_c00242{left:625.500000px;}
.x116_c00242{left:626.850000px;}
.xbc_c00242{left:628.050000px;}
.x107_c00242{left:629.100000px;}
.xcf_c00242{left:630.450000px;}
.xf7_c00242{left:632.850000px;}
.xff_c00242{left:634.350000px;}
.xe3_c00242{left:635.700000px;}
.xb7_c00242{left:637.800000px;}
.xf9_c00242{left:640.350000px;}
.xd6_c00242{left:644.850000px;}
.x149_c00242{left:646.650000px;}
.x126_c00242{left:647.850000px;}
.xbd_c00242{left:649.350000px;}
.x11c_c00242{left:651.150000px;}
.xc4_c00242{left:654.300000px;}
.x138_c00242{left:657.900000px;}
.x117_c00242{left:662.850000px;}
.xed_c00242{left:663.900000px;}
.xde_c00242{left:664.950000px;}
.xe8_c00242{left:666.750000px;}
.xd0_c00242{left:667.950000px;}
.xf1_c00242{left:669.750000px;}
.x131_c00242{left:672.150000px;}
.xca_c00242{left:674.400000px;}
.xdf_c00242{left:675.750000px;}
.xb1_c00242{left:676.950000px;}
.x113_c00242{left:678.750000px;}
.x11d_c00242{left:679.950000px;}
.x100_c00242{left:681.150000px;}
.x141_c00242{left:682.350000px;}
.x122_c00242{left:685.650000px;}
.x132_c00242{left:687.600000px;}
.x129_c00242{left:688.950000px;}
.xee_c00242{left:690.900000px;}
.xfa_c00242{left:692.100000px;}
.xbe_c00242{left:693.300000px;}
.x103_c00242{left:695.250000px;}
.xc5_c00242{left:697.500000px;}
.xd8_c00242{left:699.150000px;}
.x143_c00242{left:700.350000px;}
.x12a_c00242{left:701.550000px;}
.x114_c00242{left:702.900000px;}
.xbf_c00242{left:704.400000px;}
.x108_c00242{left:705.750000px;}
.x13a_c00242{left:707.250000px;}
.x118_c00242{left:708.900000px;}
.xfb_c00242{left:710.400000px;}
.xb8_c00242{left:712.350000px;}
.x147_c00242{left:714.150000px;}
.x104_c00242{left:715.800000px;}
.x127_c00242{left:717.300000px;}
.xe0_c00242{left:718.650000px;}
.xe9_c00242{left:719.700000px;}
.x2_c00242{left:721.050000px;}
.x10f_c00242{left:723.150000px;}
.x133_c00242{left:724.350000px;}
.x124_c00242{left:725.550000px;}
.xf8_c00242{left:727.950000px;}
.x13b_c00242{left:733.500000px;}
.xf4_c00242{left:734.850000px;}
.xea_c00242{left:736.200000px;}
.xd9_c00242{left:737.250000px;}
.x11e_c00242{left:741.450000px;}
.xcb_c00242{left:742.800000px;}
.xc0_c00242{left:744.000000px;}
.xb2_c00242{left:745.350000px;}
.xc6_c00242{left:746.850000px;}
.x10c_c00242{left:749.100000px;}
.xe4_c00242{left:753.150000px;}
.x115_c00242{left:754.200000px;}
.xf5_c00242{left:755.700000px;}
.xda_c00242{left:758.550000px;}
.xf2_c00242{left:759.750000px;}
.x119_c00242{left:761.850000px;}
.x3_c00242{left:763.200000px;}
.xef_c00242{left:766.200000px;}
.x136_c00242{left:767.700000px;}
.x144_c00242{left:770.250000px;}
.x125_c00242{left:772.050000px;}
.xe1_c00242{left:773.250000px;}
.x148_c00242{left:775.050000px;}
.x109_c00242{left:776.550000px;}
.xe5_c00242{left:777.600000px;}
.x134_c00242{left:782.400000px;}
.x12d_c00242{left:785.400000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws4_c00242{word-spacing:-6.136693pt;}
.ws1_c00242{word-spacing:-4.365099pt;}
.ws0_c00242{word-spacing:-2.555556pt;}
.ws3_c00242{word-spacing:-1.834395pt;}
.ws6_c00242{word-spacing:0.000000pt;}
.ws5_c00242{word-spacing:6.271686pt;}
.ws2_c00242{word-spacing:20.714286pt;}
.fs4_c00242{font-size:48.000000pt;}
.fs3_c00242{font-size:53.333333pt;}
.fs2_c00242{font-size:58.666667pt;}
.fs1_c00242{font-size:64.000000pt;}
.fs0_c00242{font-size:69.333333pt;}
.y0_c00242{bottom:0.000000pt;}
.y68_c00242{bottom:168.933333pt;}
.y67_c00242{bottom:170.266667pt;}
.y35_c00242{bottom:170.533333pt;}
.y66_c00242{bottom:183.600000pt;}
.y34_c00242{bottom:186.533333pt;}
.y65_c00242{bottom:197.066667pt;}
.y33_c00242{bottom:202.266667pt;}
.y64_c00242{bottom:209.866667pt;}
.y63_c00242{bottom:222.000000pt;}
.y32_c00242{bottom:222.133333pt;}
.y62_c00242{bottom:234.800000pt;}
.y61_c00242{bottom:247.600000pt;}
.y31_c00242{bottom:253.066667pt;}
.y60_c00242{bottom:260.133333pt;}
.y30_c00242{bottom:269.066667pt;}
.y5f_c00242{bottom:272.933333pt;}
.y2f_c00242{bottom:284.800000pt;}
.y5e_c00242{bottom:285.733333pt;}
.y5d_c00242{bottom:298.533333pt;}
.y2e_c00242{bottom:308.133333pt;}
.y5c_c00242{bottom:311.333333pt;}
.y2d_c00242{bottom:324.133333pt;}
.y2c_c00242{bottom:340.133333pt;}
.y2b_c00242{bottom:355.866667pt;}
.y5b_c00242{bottom:358.400000pt;}
.y2a_c00242{bottom:371.866667pt;}
.y5a_c00242{bottom:374.400000pt;}
.y29_c00242{bottom:391.066667pt;}
.y59_c00242{bottom:393.600000pt;}
.y28_c00242{bottom:407.066667pt;}
.y58_c00242{bottom:409.333333pt;}
.y27_c00242{bottom:423.066667pt;}
.y57_c00242{bottom:424.933333pt;}
.y26_c00242{bottom:438.666667pt;}
.y56_c00242{bottom:440.933333pt;}
.y25_c00242{bottom:454.666667pt;}
.y55_c00242{bottom:456.666667pt;}
.y24_c00242{bottom:470.400000pt;}
.y54_c00242{bottom:476.533333pt;}
.y23_c00242{bottom:486.400000pt;}
.y53_c00242{bottom:492.133333pt;}
.y22_c00242{bottom:505.333333pt;}
.y52_c00242{bottom:519.733333pt;}
.y21_c00242{bottom:521.333333pt;}
.y51_c00242{bottom:535.733333pt;}
.y20_c00242{bottom:537.066667pt;}
.y50_c00242{bottom:551.600000pt;}
.y1f_c00242{bottom:553.066667pt;}
.y4f_c00242{bottom:567.333333pt;}
.y1e_c00242{bottom:568.800000pt;}
.y1d_c00242{bottom:584.800000pt;}
.y4e_c00242{bottom:586.666667pt;}
.y1c_c00242{bottom:600.133333pt;}
.y4d_c00242{bottom:602.666667pt;}
.y1b_c00242{bottom:615.866667pt;}
.y4c_c00242{bottom:618.000000pt;}
.y1a_c00242{bottom:631.866667pt;}
.y4b_c00242{bottom:633.733333pt;}
.y19_c00242{bottom:647.600000pt;}
.y4a_c00242{bottom:649.733333pt;}
.y18_c00242{bottom:663.600000pt;}
.y49_c00242{bottom:666.000000pt;}
.y17_c00242{bottom:679.333333pt;}
.y48_c00242{bottom:681.333333pt;}
.y16_c00242{bottom:695.066667pt;}
.y47_c00242{bottom:697.066667pt;}
.y15_c00242{bottom:711.066667pt;}
.y46_c00242{bottom:714.400000pt;}
.y45_c00242{bottom:729.066667pt;}
.y14_c00242{bottom:732.533333pt;}
.y44_c00242{bottom:744.400000pt;}
.y13_c00242{bottom:745.333333pt;}
.y12_c00242{bottom:758.133333pt;}
.y43_c00242{bottom:760.400000pt;}
.y11_c00242{bottom:770.933333pt;}
.y42_c00242{bottom:776.400000pt;}
.y10_c00242{bottom:783.333333pt;}
.y41_c00242{bottom:791.733333pt;}
.yf_c00242{bottom:797.733333pt;}
.y40_c00242{bottom:807.733333pt;}
.ye_c00242{bottom:808.933333pt;}
.yd_c00242{bottom:821.466667pt;}
.y3f_c00242{bottom:823.466667pt;}
.y3e_c00242{bottom:839.200000pt;}
.yc_c00242{bottom:839.733333pt;}
.y3d_c00242{bottom:854.933333pt;}
.yb_c00242{bottom:855.466667pt;}
.y3c_c00242{bottom:870.666667pt;}
.ya_c00242{bottom:870.800000pt;}
.y9_c00242{bottom:887.066667pt;}
.y3b_c00242{bottom:892.533333pt;}
.y8_c00242{bottom:904.933333pt;}
.y3a_c00242{bottom:910.266667pt;}
.y7_c00242{bottom:925.600000pt;}
.y39_c00242{bottom:926.000000pt;}
.y6_c00242{bottom:941.333333pt;}
.y38_c00242{bottom:942.000000pt;}
.y5_c00242{bottom:957.333333pt;}
.y37_c00242{bottom:957.733333pt;}
.y4_c00242{bottom:973.333333pt;}
.y36_c00242{bottom:973.733333pt;}
.y3_c00242{bottom:989.066667pt;}
.y2_c00242{bottom:1012.133333pt;}
.y1_c00242{bottom:1013.066667pt;}
.h6_c00242{height:48.000000pt;}
.h5_c00242{height:53.333333pt;}
.h4_c00242{height:58.666667pt;}
.h3_c00242{height:64.000000pt;}
.h2_c00242{height:69.333333pt;}
.h0_c00242{height:1129.280029pt;}
.h1_c00242{height:1129.333333pt;}
.w1_c00242{width:856.000000pt;}
.w0_c00242{width:856.319987pt;}
.x0_c00242{left:0.000000pt;}
.xa0_c00242{left:81.333333pt;}
.x97_c00242{left:82.266667pt;}
.x27_c00242{left:84.533333pt;}
.x57_c00242{left:86.666667pt;}
.xa1_c00242{left:90.933333pt;}
.x55_c00242{left:96.933333pt;}
.x3c_c00242{left:97.866667pt;}
.x81_c00242{left:99.466667pt;}
.x4_c00242{left:100.533333pt;}
.x89_c00242{left:106.533333pt;}
.x50_c00242{left:109.733333pt;}
.x46_c00242{left:110.666667pt;}
.xa6_c00242{left:112.933333pt;}
.x4a_c00242{left:115.200000pt;}
.x9e_c00242{left:116.133333pt;}
.x8b_c00242{left:119.333333pt;}
.x5_c00242{left:122.000000pt;}
.x70_c00242{left:124.000000pt;}
.x20_c00242{left:129.733333pt;}
.x84_c00242{left:132.000000pt;}
.x3d_c00242{left:133.733333pt;}
.x14_c00242{left:134.933333pt;}
.xab_c00242{left:136.000000pt;}
.x86_c00242{left:136.933333pt;}
.x21_c00242{left:138.400000pt;}
.x6_c00242{left:140.266667pt;}
.x71_c00242{left:143.200000pt;}
.x2b_c00242{left:144.666667pt;}
.x22_c00242{left:146.133333pt;}
.x75_c00242{left:147.066667pt;}
.x96_c00242{left:148.800000pt;}
.x7d_c00242{left:151.600000pt;}
.x31_c00242{left:153.066667pt;}
.x15_c00242{left:154.133333pt;}
.x7_c00242{left:156.266667pt;}
.x5f_c00242{left:157.200000pt;}
.x51_c00242{left:158.666667pt;}
.x2c_c00242{left:160.400000pt;}
.x23_c00242{left:163.466667pt;}
.x8_c00242{left:164.933333pt;}
.x47_c00242{left:168.000000pt;}
.x16_c00242{left:170.133333pt;}
.x7b_c00242{left:172.133333pt;}
.x58_c00242{left:173.333333pt;}
.x72_c00242{left:174.533333pt;}
.x17_c00242{left:175.866667pt;}
.x38_c00242{left:178.000000pt;}
.x4b_c00242{left:179.200000pt;}
.x28_c00242{left:182.800000pt;}
.xa2_c00242{left:184.133333pt;}
.x8a_c00242{left:185.333333pt;}
.x8c_c00242{left:186.266667pt;}
.xf_c00242{left:187.866667pt;}
.xa8_c00242{left:189.466667pt;}
.x52_c00242{left:190.400000pt;}
.x3e_c00242{left:192.000000pt;}
.x93_c00242{left:193.200000pt;}
.x7e_c00242{left:194.133333pt;}
.x78_c00242{left:196.000000pt;}
.x8d_c00242{left:199.333333pt;}
.x68_c00242{left:200.400000pt;}
.x5c_c00242{left:202.266667pt;}
.x1c_c00242{left:203.600000pt;}
.x2d_c00242{left:205.866667pt;}
.x24_c00242{left:208.000000pt;}
.xa9_c00242{left:210.533333pt;}
.x63_c00242{left:211.600000pt;}
.x85_c00242{left:212.666667pt;}
.x3f_c00242{left:214.666667pt;}
.x60_c00242{left:216.400000pt;}
.x39_c00242{left:217.600000pt;}
.x59_c00242{left:219.333333pt;}
.x32_c00242{left:220.666667pt;}
.x7f_c00242{left:221.600000pt;}
.x1d_c00242{left:222.533333pt;}
.x9_c00242{left:224.133333pt;}
.x69_c00242{left:225.333333pt;}
.x4c_c00242{left:226.533333pt;}
.x6b_c00242{left:228.000000pt;}
.x9a_c00242{left:229.866667pt;}
.x2e_c00242{left:231.466667pt;}
.x33_c00242{left:234.133333pt;}
.x10_c00242{left:236.133333pt;}
.xaa_c00242{left:237.733333pt;}
.x5a_c00242{left:239.200000pt;}
.x80_c00242{left:241.066667pt;}
.x2f_c00242{left:242.933333pt;}
.x53_c00242{left:244.400000pt;}
.x9b_c00242{left:245.866667pt;}
.x25_c00242{left:248.000000pt;}
.x5d_c00242{left:249.333333pt;}
.x61_c00242{left:250.266667pt;}
.x8e_c00242{left:252.133333pt;}
.x41_c00242{left:253.733333pt;}
.x40_c00242{left:254.666667pt;}
.x6e_c00242{left:256.000000pt;}
.x3a_c00242{left:257.600000pt;}
.x94_c00242{left:258.533333pt;}
.x64_c00242{left:260.533333pt;}
.xa_c00242{left:264.400000pt;}
.xa5_c00242{left:265.333333pt;}
.x1e_c00242{left:266.400000pt;}
.x66_c00242{left:268.666667pt;}
.x8f_c00242{left:270.666667pt;}
.x11_c00242{left:271.600000pt;}
.x54_c00242{left:272.533333pt;}
.x6c_c00242{left:274.400000pt;}
.x18_c00242{left:276.666667pt;}
.x79_c00242{left:281.200000pt;}
.x98_c00242{left:283.466667pt;}
.x29_c00242{left:284.533333pt;}
.x30_c00242{left:286.400000pt;}
.x62_c00242{left:288.933333pt;}
.x34_c00242{left:290.400000pt;}
.x99_c00242{left:291.466667pt;}
.x6d_c00242{left:293.333333pt;}
.x9f_c00242{left:294.666667pt;}
.x4d_c00242{left:295.600000pt;}
.x9d_c00242{left:296.666667pt;}
.x1_c00242{left:297.600000pt;}
.x82_c00242{left:298.666667pt;}
.x1f_c00242{left:299.733333pt;}
.xb_c00242{left:301.200000pt;}
.x4e_c00242{left:302.266667pt;}
.x42_c00242{left:303.733333pt;}
.x19_c00242{left:305.733333pt;}
.xc_c00242{left:308.533333pt;}
.x9c_c00242{left:310.533333pt;}
.x35_c00242{left:313.733333pt;}
.x73_c00242{left:314.800000pt;}
.x26_c00242{left:315.866667pt;}
.xa4_c00242{left:317.200000pt;}
.x12_c00242{left:318.266667pt;}
.x4f_c00242{left:321.466667pt;}
.x5e_c00242{left:322.666667pt;}
.x43_c00242{left:324.533333pt;}
.x65_c00242{left:326.533333pt;}
.x76_c00242{left:327.466667pt;}
.x91_c00242{left:328.533333pt;}
.x36_c00242{left:330.000000pt;}
.x6f_c00242{left:330.933333pt;}
.x6a_c00242{left:331.866667pt;}
.x1a_c00242{left:334.533333pt;}
.x13_c00242{left:336.533333pt;}
.x87_c00242{left:338.000000pt;}
.x92_c00242{left:339.066667pt;}
.x48_c00242{left:340.266667pt;}
.xd_c00242{left:342.133333pt;}
.x7a_c00242{left:343.600000pt;}
.x2a_c00242{left:344.666667pt;}
.x5b_c00242{left:346.533333pt;}
.x56_c00242{left:347.466667pt;}
.x77_c00242{left:348.933333pt;}
.x74_c00242{left:352.266667pt;}
.x95_c00242{left:353.866667pt;}
.x44_c00242{left:355.200000pt;}
.x90_c00242{left:357.466667pt;}
.x37_c00242{left:358.800000pt;}
.x1b_c00242{left:360.133333pt;}
.x83_c00242{left:361.066667pt;}
.x3b_c00242{left:362.800000pt;}
.xa3_c00242{left:363.733333pt;}
.x67_c00242{left:365.600000pt;}
.x88_c00242{left:368.133333pt;}
.x7c_c00242{left:369.466667pt;}
.x49_c00242{left:370.933333pt;}
.x45_c00242{left:371.866667pt;}
.xe_c00242{left:374.800000pt;}
.xa7_c00242{left:378.533333pt;}
.x13d_c00242{left:398.666667pt;}
.x139_c00242{left:399.733333pt;}
.xd1_c00242{left:401.333333pt;}
.xac_c00242{left:402.933333pt;}
.x13c_c00242{left:412.533333pt;}
.x151_c00242{left:413.466667pt;}
.x12b_c00242{left:414.400000pt;}
.x130_c00242{left:415.333333pt;}
.xb9_c00242{left:416.533333pt;}
.xc1_c00242{left:417.466667pt;}
.xb3_c00242{left:418.666667pt;}
.x152_c00242{left:420.133333pt;}
.x14e_c00242{left:422.666667pt;}
.xad_c00242{left:424.400000pt;}
.x14a_c00242{left:428.133333pt;}
.x13e_c00242{left:429.733333pt;}
.xc7_c00242{left:431.466667pt;}
.x12e_c00242{left:433.333333pt;}
.xcc_c00242{left:435.600000pt;}
.x105_c00242{left:437.333333pt;}
.xae_c00242{left:440.133333pt;}
.xfc_c00242{left:441.333333pt;}
.x10a_c00242{left:442.800000pt;}
.x14f_c00242{left:444.800000pt;}
.xf3_c00242{left:445.866667pt;}
.x14c_c00242{left:446.800000pt;}
.x142_c00242{left:448.533333pt;}
.xc2_c00242{left:449.466667pt;}
.x128_c00242{left:452.133333pt;}
.xd2_c00242{left:453.200000pt;}
.x137_c00242{left:455.733333pt;}
.x101_c00242{left:457.066667pt;}
.x110_c00242{left:459.600000pt;}
.x11a_c00242{left:461.733333pt;}
.xeb_c00242{left:463.333333pt;}
.xc8_c00242{left:464.800000pt;}
.xb4_c00242{left:466.666667pt;}
.x11f_c00242{left:468.000000pt;}
.x12f_c00242{left:472.000000pt;}
.x150_c00242{left:472.933333pt;}
.xdb_c00242{left:475.466667pt;}
.x14d_c00242{left:476.933333pt;}
.xcd_c00242{left:478.133333pt;}
.xd3_c00242{left:479.733333pt;}
.xba_c00242{left:481.200000pt;}
.x120_c00242{left:482.400000pt;}
.x145_c00242{left:484.800000pt;}
.x12c_c00242{left:486.400000pt;}
.xfd_c00242{left:488.666667pt;}
.x111_c00242{left:490.666667pt;}
.x10b_c00242{left:493.066667pt;}
.xdc_c00242{left:494.666667pt;}
.x10d_c00242{left:496.666667pt;}
.xaf_c00242{left:500.000000pt;}
.xf6_c00242{left:503.333333pt;}
.x153_c00242{left:505.066667pt;}
.xe2_c00242{left:506.533333pt;}
.xf0_c00242{left:508.266667pt;}
.xfe_c00242{left:510.133333pt;}
.xec_c00242{left:512.000000pt;}
.xce_c00242{left:513.333333pt;}
.xc3_c00242{left:515.333333pt;}
.x13f_c00242{left:517.200000pt;}
.x123_c00242{left:518.133333pt;}
.x106_c00242{left:519.466667pt;}
.xbb_c00242{left:521.200000pt;}
.xc9_c00242{left:523.333333pt;}
.xe6_c00242{left:524.933333pt;}
.xb5_c00242{left:527.200000pt;}
.x135_c00242{left:528.933333pt;}
.x121_c00242{left:530.666667pt;}
.xd7_c00242{left:531.866667pt;}
.x11b_c00242{left:533.066667pt;}
.x146_c00242{left:534.400000pt;}
.xd4_c00242{left:536.000000pt;}
.x10e_c00242{left:537.066667pt;}
.xb0_c00242{left:539.066667pt;}
.xb6_c00242{left:541.333333pt;}
.xdd_c00242{left:543.333333pt;}
.xe7_c00242{left:547.600000pt;}
.xd5_c00242{left:548.533333pt;}
.x14b_c00242{left:550.800000pt;}
.x140_c00242{left:552.400000pt;}
.x102_c00242{left:554.666667pt;}
.x112_c00242{left:556.000000pt;}
.x116_c00242{left:557.200000pt;}
.xbc_c00242{left:558.266667pt;}
.x107_c00242{left:559.200000pt;}
.xcf_c00242{left:560.400000pt;}
.xf7_c00242{left:562.533333pt;}
.xff_c00242{left:563.866667pt;}
.xe3_c00242{left:565.066667pt;}
.xb7_c00242{left:566.933333pt;}
.xf9_c00242{left:569.200000pt;}
.xd6_c00242{left:573.200000pt;}
.x149_c00242{left:574.800000pt;}
.x126_c00242{left:575.866667pt;}
.xbd_c00242{left:577.200000pt;}
.x11c_c00242{left:578.800000pt;}
.xc4_c00242{left:581.600000pt;}
.x138_c00242{left:584.800000pt;}
.x117_c00242{left:589.200000pt;}
.xed_c00242{left:590.133333pt;}
.xde_c00242{left:591.066667pt;}
.xe8_c00242{left:592.666667pt;}
.xd0_c00242{left:593.733333pt;}
.xf1_c00242{left:595.333333pt;}
.x131_c00242{left:597.466667pt;}
.xca_c00242{left:599.466667pt;}
.xdf_c00242{left:600.666667pt;}
.xb1_c00242{left:601.733333pt;}
.x113_c00242{left:603.333333pt;}
.x11d_c00242{left:604.400000pt;}
.x100_c00242{left:605.466667pt;}
.x141_c00242{left:606.533333pt;}
.x122_c00242{left:609.466667pt;}
.x132_c00242{left:611.200000pt;}
.x129_c00242{left:612.400000pt;}
.xee_c00242{left:614.133333pt;}
.xfa_c00242{left:615.200000pt;}
.xbe_c00242{left:616.266667pt;}
.x103_c00242{left:618.000000pt;}
.xc5_c00242{left:620.000000pt;}
.xd8_c00242{left:621.466667pt;}
.x143_c00242{left:622.533333pt;}
.x12a_c00242{left:623.600000pt;}
.x114_c00242{left:624.800000pt;}
.xbf_c00242{left:626.133333pt;}
.x108_c00242{left:627.333333pt;}
.x13a_c00242{left:628.666667pt;}
.x118_c00242{left:630.133333pt;}
.xfb_c00242{left:631.466667pt;}
.xb8_c00242{left:633.200000pt;}
.x147_c00242{left:634.800000pt;}
.x104_c00242{left:636.266667pt;}
.x127_c00242{left:637.600000pt;}
.xe0_c00242{left:638.800000pt;}
.xe9_c00242{left:639.733333pt;}
.x2_c00242{left:640.933333pt;}
.x10f_c00242{left:642.800000pt;}
.x133_c00242{left:643.866667pt;}
.x124_c00242{left:644.933333pt;}
.xf8_c00242{left:647.066667pt;}
.x13b_c00242{left:652.000000pt;}
.xf4_c00242{left:653.200000pt;}
.xea_c00242{left:654.400000pt;}
.xd9_c00242{left:655.333333pt;}
.x11e_c00242{left:659.066667pt;}
.xcb_c00242{left:660.266667pt;}
.xc0_c00242{left:661.333333pt;}
.xb2_c00242{left:662.533333pt;}
.xc6_c00242{left:663.866667pt;}
.x10c_c00242{left:665.866667pt;}
.xe4_c00242{left:669.466667pt;}
.x115_c00242{left:670.400000pt;}
.xf5_c00242{left:671.733333pt;}
.xda_c00242{left:674.266667pt;}
.xf2_c00242{left:675.333333pt;}
.x119_c00242{left:677.200000pt;}
.x3_c00242{left:678.400000pt;}
.xef_c00242{left:681.066667pt;}
.x136_c00242{left:682.400000pt;}
.x144_c00242{left:684.666667pt;}
.x125_c00242{left:686.266667pt;}
.xe1_c00242{left:687.333333pt;}
.x148_c00242{left:688.933333pt;}
.x109_c00242{left:690.266667pt;}
.xe5_c00242{left:691.200000pt;}
.x134_c00242{left:695.466667pt;}
.x12d_c00242{left:698.133333pt;}
}





/* 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_c00243 {
    display:none;
  }
  .loading-indicator_c00243.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00243 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_c00243 { 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_c00243" -> "#page-container .classname_c00243")
 */
.pf_c00243 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00243 { /* 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_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00243 { /* 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_c00243 { /* 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_c00243 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00243 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00243 {overflow:visible;}
  }
}
.c_c00243 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00243 { /* 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_c00243:after { /* webkit #35443 */
  content: '';
}
.t_c00243:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00243 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 */
}
.__c00243 { /* 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_c00243 { /* info for Javascript */
  display:none;
}
.l_c00243 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00243 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00243 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00243: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_c00243 {
    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_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00243.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_c00243 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00243;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.000000;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;}
.m133_c00243{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00243{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m37_c00243{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m36_c00243{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m33_c00243{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m42_c00243{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00243{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m32_c00243{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00243{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00243{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md8_c00243{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m112_c00243{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m70_c00243{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m109_c00243{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00243{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m49_c00243{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00243{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00243{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m48_c00243{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00243{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m116_c00243{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00243{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m28_c00243{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00243{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m27_c00243{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00243{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00243{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00243{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mde_c00243{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m61_c00243{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00243{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00243{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m114_c00243{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00243{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m110_c00243{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m40_c00243{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m69_c00243{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md3_c00243{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m29_c00243{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00243{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00243{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m56_c00243{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00243{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00243{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m120_c00243{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00243{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00243{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md5_c00243{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m60_c00243{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00243{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.maa_c00243{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m131_c00243{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00243{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m126_c00243{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m26_c00243{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m64_c00243{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.meb_c00243{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mce_c00243{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00243{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mca_c00243{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00243{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m54_c00243{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00243{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m66_c00243{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m88_c00243{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00243{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m58_c00243{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00243{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m122_c00243{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mec_c00243{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m86_c00243{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m8_c00243{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00243{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00243{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00243{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.med_c00243{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m101_c00243{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.maf_c00243{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00243{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me0_c00243{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m74_c00243{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00243{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00243{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mae_c00243{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m63_c00243{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00243{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me5_c00243{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me9_c00243{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m98_c00243{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m132_c00243{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00243{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m21_c00243{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me1_c00243{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00243{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00243{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00243{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m44_c00243{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3_c00243{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00243{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00243{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mac_c00243{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m23_c00243{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00243{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00243{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m20_c00243{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00243{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m68_c00243{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00243{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m46_c00243{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m72_c00243{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m50_c00243{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m65_c00243{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00243{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m22_c00243{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m71_c00243{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00243{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m125_c00243{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00243{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m105_c00243{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m83_c00243{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m90_c00243{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00243{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me3_c00243{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00243{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m55_c00243{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00243{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4_c00243{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00243{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00243{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m92_c00243{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m43_c00243{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00243{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00243{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00243{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m102_c00243{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00243{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m62_c00243{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00243{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m59_c00243{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m57_c00243{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m38_c00243{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m78_c00243{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00243{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m67_c00243{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m14_c00243{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m103_c00243{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00243{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m94_c00243{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m53_c00243{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00243{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m108_c00243{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m76_c00243{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00243{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m79_c00243{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m52_c00243{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00243{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.md7_c00243{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mba_c00243{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m16_c00243{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00243{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m80_c00243{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m15_c00243{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00243{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00243{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00243{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m97_c00243{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mff_c00243{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m130_c00243{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00243{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00243{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00243{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00243{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m13_c00243{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m99_c00243{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00243{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m107_c00243{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me8_c00243{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00243{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m123_c00243{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00243{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00243{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md9_c00243{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00243{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00243{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00243{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00243{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m11_c00243{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m128_c00243{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mab_c00243{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m118_c00243{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m87_c00243{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m51_c00243{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00243{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00243{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m17_c00243{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m84_c00243{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m96_c00243{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m85_c00243{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00243{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00243{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00243{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00243{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00243{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.md_c00243{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m117_c00243{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.me2_c00243{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.md2_c00243{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m12_c00243{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m18_c00243{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m89_c00243{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10_c00243{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00243{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m24_c00243{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mda_c00243{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m19_c00243{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00243{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00243{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m73_c00243{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me7_c00243{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf_c00243{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m127_c00243{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md0_c00243{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00243{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md4_c00243{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m82_c00243{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00243{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00243{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m47_c00243{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00243{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00243{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc_c00243{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m34_c00243{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m77_c00243{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00243{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md6_c00243{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00243{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00243{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00243{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00243{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00243{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.me_c00243{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00243{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mad_c00243{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m91_c00243{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00243{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mee_c00243{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m2_c00243{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m104_c00243{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma_c00243{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00243{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00243{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00243{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00243{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);}
.mbb_c00243{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00243{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mef_c00243{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m111_c00243{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m75_c00243{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00243{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m5_c00243{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m106_c00243{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00243{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00243{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00243{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m25_c00243{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00243{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m45_c00243{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00243{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m81_c00243{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m129_c00243{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m95_c00243{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00243{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m6_c00243{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m119_c00243{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m93_c00243{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m0_c00243{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mb_c00243{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9_c00243{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00243{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.me6_c00243{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m41_c00243{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md1_c00243{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m124_c00243{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00243{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00243{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m31_c00243{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00243{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m121_c00243{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00243{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00243{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00243{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00243{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m115_c00243{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00243{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mea_c00243{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m100_c00243{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.me4_c00243{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m35_c00243{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m113_c00243{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m39_c00243{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00243{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00243{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00243{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m30_c00243{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00243{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00243{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{transform:matrix(0.509250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00243{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls1_c00243{letter-spacing:0.000000px;}
.ls0_c00243{letter-spacing:63.000000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{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__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00243{word-spacing:-90.000000px;}
.wsd_c00243{word-spacing:-6.666667px;}
.ws8_c00243{word-spacing:-6.202156px;}
.wsc_c00243{word-spacing:-2.666667px;}
.wsb_c00243{word-spacing:-1.911765px;}
.wsf_c00243{word-spacing:0.000000px;}
.ws9_c00243{word-spacing:0.292683px;}
.wsa_c00243{word-spacing:1.388889px;}
.wse_c00243{word-spacing:8.387097px;}
.ws0_c00243{word-spacing:21.500000px;}
.ws6_c00243{word-spacing:25.000000px;}
.ws5_c00243{word-spacing:25.714286px;}
.ws3_c00243{word-spacing:35.833333px;}
.ws1_c00243{word-spacing:39.000000px;}
.ws4_c00243{word-spacing:44.166667px;}
.ws7_c00243{word-spacing:60.000000px;}
._2_c00243{margin-left:-63.000000px;}
._1_c00243{width:42.000000px;}
._0_c00243{width:48.250000px;}
._5_c00243{width:65.833333px;}
._4_c00243{width:70.000000px;}
._3_c00243{width:74.166667px;}
.fc0_c00243{color:transparent;}
.fs5_c00243{font-size:36.000000px;}
.fs6_c00243{font-size:48.000000px;}
.fs2_c00243{font-size:54.000000px;}
.fs3_c00243{font-size:60.000000px;}
.fs4_c00243{font-size:66.000000px;}
.fs0_c00243{font-size:72.000000px;}
.fs1_c00243{font-size:78.000000px;}
.y0_c00243{bottom:0.000000px;}
.y6c_c00243{bottom:105.900000px;}
.y6b_c00243{bottom:193.200000px;}
.y38_c00243{bottom:195.750000px;}
.y6a_c00243{bottom:208.350000px;}
.y37_c00243{bottom:213.750000px;}
.y69_c00243{bottom:222.750000px;}
.y36_c00243{bottom:231.000000px;}
.y68_c00243{bottom:236.400000px;}
.y35_c00243{bottom:248.700000px;}
.y67_c00243{bottom:250.800000px;}
.y66_c00243{bottom:265.200000px;}
.y34_c00243{bottom:266.400000px;}
.y65_c00243{bottom:279.300000px;}
.y33_c00243{bottom:283.650000px;}
.y64_c00243{bottom:293.400000px;}
.y32_c00243{bottom:301.650000px;}
.y63_c00243{bottom:307.800000px;}
.y31_c00243{bottom:319.350000px;}
.y62_c00243{bottom:321.900000px;}
.y61_c00243{bottom:336.300000px;}
.y30_c00243{bottom:336.600000px;}
.y2f_c00243{bottom:354.300000px;}
.y2e_c00243{bottom:372.000000px;}
.y60_c00243{bottom:388.050000px;}
.y2d_c00243{bottom:390.000000px;}
.y5f_c00243{bottom:406.050000px;}
.y2c_c00243{bottom:407.700000px;}
.y5e_c00243{bottom:425.100000px;}
.y2b_c00243{bottom:425.700000px;}
.y5d_c00243{bottom:440.250000px;}
.y2a_c00243{bottom:443.400000px;}
.y5c_c00243{bottom:454.650000px;}
.y29_c00243{bottom:462.150000px;}
.y5b_c00243{bottom:469.350000px;}
.y28_c00243{bottom:479.400000px;}
.y5a_c00243{bottom:483.450000px;}
.y27_c00243{bottom:497.400000px;}
.y59_c00243{bottom:497.550000px;}
.y58_c00243{bottom:511.950000px;}
.y26_c00243{bottom:515.100000px;}
.y57_c00243{bottom:531.750000px;}
.y25_c00243{bottom:532.800000px;}
.y56_c00243{bottom:550.050000px;}
.y24_c00243{bottom:550.500000px;}
.y55_c00243{bottom:568.050000px;}
.y23_c00243{bottom:568.200000px;}
.y54_c00243{bottom:585.750000px;}
.y22_c00243{bottom:585.900000px;}
.y53_c00243{bottom:603.000000px;}
.y21_c00243{bottom:603.600000px;}
.y20_c00243{bottom:621.300000px;}
.y52_c00243{bottom:624.900000px;}
.y1f_c00243{bottom:639.300000px;}
.y51_c00243{bottom:642.900000px;}
.y1e_c00243{bottom:657.300000px;}
.y50_c00243{bottom:660.600000px;}
.y1d_c00243{bottom:675.000000px;}
.y4f_c00243{bottom:678.600000px;}
.y1c_c00243{bottom:693.000000px;}
.y4e_c00243{bottom:696.300000px;}
.y1b_c00243{bottom:711.000000px;}
.y4d_c00243{bottom:722.850000px;}
.y1a_c00243{bottom:728.700000px;}
.y19_c00243{bottom:746.700000px;}
.y4c_c00243{bottom:762.450000px;}
.y18_c00243{bottom:764.400000px;}
.y4b_c00243{bottom:780.450000px;}
.y17_c00243{bottom:782.100000px;}
.y4a_c00243{bottom:798.150000px;}
.y16_c00243{bottom:800.100000px;}
.y49_c00243{bottom:815.850000px;}
.y15_c00243{bottom:817.800000px;}
.y48_c00243{bottom:833.850000px;}
.y14_c00243{bottom:835.500000px;}
.y47_c00243{bottom:851.550000px;}
.y13_c00243{bottom:864.600000px;}
.y46_c00243{bottom:869.250000px;}
.y12_c00243{bottom:879.000000px;}
.y45_c00243{bottom:886.950000px;}
.y11_c00243{bottom:893.400000px;}
.y44_c00243{bottom:905.250000px;}
.y10_c00243{bottom:913.950000px;}
.yf_c00243{bottom:922.200000px;}
.y43_c00243{bottom:922.950000px;}
.ye_c00243{bottom:936.600000px;}
.y42_c00243{bottom:940.650000px;}
.yd_c00243{bottom:951.000000px;}
.y41_c00243{bottom:958.650000px;}
.yc_c00243{bottom:965.100000px;}
.yb_c00243{bottom:979.800000px;}
.y40_c00243{bottom:984.600000px;}
.ya_c00243{bottom:993.900000px;}
.y3f_c00243{bottom:1002.600000px;}
.y9_c00243{bottom:1008.300000px;}
.y3e_c00243{bottom:1020.600000px;}
.y8_c00243{bottom:1023.150000px;}
.y3d_c00243{bottom:1047.300000px;}
.y7_c00243{bottom:1049.400000px;}
.y3c_c00243{bottom:1065.300000px;}
.y6_c00243{bottom:1067.100000px;}
.y3b_c00243{bottom:1082.850000px;}
.y5_c00243{bottom:1084.350000px;}
.y3a_c00243{bottom:1100.850000px;}
.y4_c00243{bottom:1102.350000px;}
.y39_c00243{bottom:1118.550000px;}
.y3_c00243{bottom:1119.600000px;}
.y1_c00243{bottom:1145.100000px;}
.y2_c00243{bottom:1145.850000px;}
.y6d_c00243{bottom:1274.400000px;}
.h7_c00243{height:36.000000px;}
.h8_c00243{height:48.000000px;}
.h4_c00243{height:54.000000px;}
.h5_c00243{height:60.000000px;}
.h6_c00243{height:66.000000px;}
.h2_c00243{height:72.000000px;}
.h3_c00243{height:78.000000px;}
.h0_c00243{height:1276.920044px;}
.h1_c00243{height:1277.250000px;}
.w1_c00243{width:963.000000px;}
.w0_c00243{width:963.359985px;}
.x0_c00243{left:0.000000px;}
.x1_c00243{left:175.650000px;}
.x26_c00243{left:176.700000px;}
.x2f_c00243{left:190.800000px;}
.x11_c00243{left:192.000000px;}
.x3_c00243{left:193.650000px;}
.x1f_c00243{left:194.700000px;}
.x8c_c00243{left:195.900000px;}
.x38_c00243{left:204.150000px;}
.x3a_c00243{left:205.200000px;}
.x20_c00243{left:207.000000px;}
.x7e_c00243{left:208.950000px;}
.x4_c00243{left:211.950000px;}
.x81_c00243{left:213.000000px;}
.x71_c00243{left:214.200000px;}
.x18_c00243{left:218.250000px;}
.x59_c00243{left:220.950000px;}
.x74_c00243{left:223.500000px;}
.x51_c00243{left:224.550000px;}
.x96_c00243{left:226.050000px;}
.x3f_c00243{left:227.100000px;}
.x90_c00243{left:228.300000px;}
.x4e_c00243{left:229.800000px;}
.x21_c00243{left:232.500000px;}
.xc_c00243{left:234.300000px;}
.x7d_c00243{left:236.100000px;}
.x70_c00243{left:237.900000px;}
.x27_c00243{left:238.950000px;}
.x5a_c00243{left:241.050000px;}
.x75_c00243{left:243.000000px;}
.x82_c00243{left:244.650000px;}
.x40_c00243{left:245.850000px;}
.x5f_c00243{left:246.900000px;}
.x5_c00243{left:248.250000px;}
.x63_c00243{left:249.450000px;}
.x30_c00243{left:253.800000px;}
.x44_c00243{left:258.450000px;}
.x19_c00243{left:261.150000px;}
.x28_c00243{left:262.350000px;}
.x22_c00243{left:264.150000px;}
.x89_c00243{left:265.500000px;}
.x31_c00243{left:268.200000px;}
.x60_c00243{left:269.550000px;}
.x12_c00243{left:272.550000px;}
.x41_c00243{left:274.950000px;}
.x45_c00243{left:277.950000px;}
.x97_c00243{left:279.000000px;}
.x48_c00243{left:283.500000px;}
.x72_c00243{left:288.000000px;}
.x13_c00243{left:289.800000px;}
.x42_c00243{left:293.700000px;}
.x5b_c00243{left:295.500000px;}
.x6_c00243{left:296.850000px;}
.x52_c00243{left:298.650000px;}
.x64_c00243{left:301.650000px;}
.xd_c00243{left:303.000000px;}
.x5e_c00243{left:305.100000px;}
.x49_c00243{left:306.150000px;}
.x1a_c00243{left:307.650000px;}
.x3d_c00243{left:310.650000px;}
.x5c_c00243{left:315.000000px;}
.x8e_c00243{left:318.900000px;}
.x76_c00243{left:319.950000px;}
.x29_c00243{left:321.450000px;}
.x83_c00243{left:322.500000px;}
.x4a_c00243{left:324.000000px;}
.x23_c00243{left:325.350000px;}
.x8d_c00243{left:326.700000px;}
.x7_c00243{left:328.500000px;}
.x46_c00243{left:331.950000px;}
.x65_c00243{left:333.300000px;}
.x8f_c00243{left:334.500000px;}
.x7f_c00243{left:336.750000px;}
.x14_c00243{left:338.400000px;}
.x1b_c00243{left:339.750000px;}
.x43_c00243{left:342.000000px;}
.x4f_c00243{left:343.200000px;}
.x84_c00243{left:345.150000px;}
.x24_c00243{left:349.050000px;}
.x5d_c00243{left:350.700000px;}
.x91_c00243{left:352.800000px;}
.x32_c00243{left:354.000000px;}
.x86_c00243{left:355.800000px;}
.x7b_c00243{left:357.750000px;}
.x69_c00243{left:359.400000px;}
.x33_c00243{left:361.200000px;}
.x78_c00243{left:364.500000px;}
.x80_c00243{left:366.900000px;}
.x34_c00243{left:368.700000px;}
.x6e_c00243{left:369.750000px;}
.x66_c00243{left:370.800000px;}
.x57_c00243{left:372.600000px;}
.x1c_c00243{left:376.800000px;}
.x4b_c00243{left:378.300000px;}
.xe_c00243{left:380.700000px;}
.x35_c00243{left:382.650000px;}
.x53_c00243{left:384.300000px;}
.x79_c00243{left:385.350000px;}
.x2a_c00243{left:387.300000px;}
.x8_c00243{left:388.650000px;}
.x92_c00243{left:390.900000px;}
.x25_c00243{left:392.550000px;}
.x1d_c00243{left:396.300000px;}
.x9_c00243{left:398.400000px;}
.x85_c00243{left:400.950000px;}
.xf_c00243{left:403.350000px;}
.x8b_c00243{left:404.700000px;}
.x15_c00243{left:406.800000px;}
.x2b_c00243{left:409.200000px;}
.x2_c00243{left:410.400000px;}
.x6f_c00243{left:411.450000px;}
.xa_c00243{left:412.500000px;}
.x93_c00243{left:414.000000px;}
.x50_c00243{left:419.250000px;}
.x54_c00243{left:420.300000px;}
.x6c_c00243{left:422.550000px;}
.x6a_c00243{left:424.500000px;}
.x16_c00243{left:425.550000px;}
.x87_c00243{left:426.750000px;}
.x2c_c00243{left:428.700000px;}
.x7a_c00243{left:431.100000px;}
.x95_c00243{left:432.750000px;}
.x88_c00243{left:435.000000px;}
.x3e_c00243{left:437.400000px;}
.x1e_c00243{left:438.750000px;}
.x36_c00243{left:439.950000px;}
.x47_c00243{left:441.000000px;}
.x67_c00243{left:442.500000px;}
.x6b_c00243{left:446.850000px;}
.x55_c00243{left:448.050000px;}
.x58_c00243{left:449.250000px;}
.x73_c00243{left:450.750000px;}
.x4c_c00243{left:456.000000px;}
.x10_c00243{left:458.400000px;}
.x2d_c00243{left:460.350000px;}
.x77_c00243{left:462.900000px;}
.x37_c00243{left:467.250000px;}
.x3c_c00243{left:469.200000px;}
.x6d_c00243{left:471.900000px;}
.xb_c00243{left:475.500000px;}
.x4d_c00243{left:477.600000px;}
.x62_c00243{left:479.250000px;}
.x17_c00243{left:482.100000px;}
.x94_c00243{left:484.200000px;}
.x68_c00243{left:486.450000px;}
.x7c_c00243{left:488.850000px;}
.x61_c00243{left:490.950000px;}
.x98_c00243{left:492.450000px;}
.x2e_c00243{left:493.800000px;}
.x56_c00243{left:494.850000px;}
.x39_c00243{left:495.900000px;}
.x3b_c00243{left:497.550000px;}
.x8a_c00243{left:499.200000px;}
.x143_c00243{left:527.700000px;}
.x135_c00243{left:528.900000px;}
.xba_c00243{left:529.950000px;}
.xfd_c00243{left:531.750000px;}
.x144_c00243{left:535.650000px;}
.x11f_c00243{left:543.750000px;}
.x99_c00243{left:546.450000px;}
.xbf_c00243{left:547.650000px;}
.xe8_c00243{left:549.750000px;}
.x13b_c00243{left:552.750000px;}
.x129_c00243{left:558.900000px;}
.xed_c00243{left:560.400000px;}
.x124_c00243{left:562.050000px;}
.xfb_c00243{left:565.650000px;}
.x130_c00243{left:567.750000px;}
.x110_c00243{left:570.900000px;}
.xfe_c00243{left:572.850000px;}
.x125_c00243{left:573.900000px;}
.xc5_c00243{left:575.100000px;}
.xb2_c00243{left:578.250000px;}
.x139_c00243{left:580.200000px;}
.x120_c00243{left:581.550000px;}
.xe3_c00243{left:583.800000px;}
.xd7_c00243{left:585.000000px;}
.x9a_c00243{left:587.850000px;}
.xa2_c00243{left:590.100000px;}
.xcb_c00243{left:591.450000px;}
.x13d_c00243{left:592.950000px;}
.x137_c00243{left:595.050000px;}
.xbb_c00243{left:596.850000px;}
.x113_c00243{left:598.200000px;}
.xaa_c00243{left:600.150000px;}
.x131_c00243{left:601.650000px;}
.xe4_c00243{left:603.300000px;}
.xde_c00243{left:605.400000px;}
.x108_c00243{left:607.200000px;}
.x103_c00243{left:610.500000px;}
.xd8_c00243{left:611.700000px;}
.x9b_c00243{left:613.050000px;}
.xcf_c00243{left:614.250000px;}
.xb3_c00243{left:616.350000px;}
.xee_c00243{left:618.750000px;}
.x132_c00243{left:620.400000px;}
.xc0_c00243{left:621.750000px;}
.x13e_c00243{left:622.800000px;}
.x141_c00243{left:625.350000px;}
.x136_c00243{left:628.500000px;}
.xdf_c00243{left:629.550000px;}
.xd9_c00243{left:631.800000px;}
.xd0_c00243{left:635.100000px;}
.xb9_c00243{left:636.450000px;}
.xe9_c00243{left:637.500000px;}
.x121_c00243{left:639.150000px;}
.x114_c00243{left:640.650000px;}
.xe5_c00243{left:641.850000px;}
.x105_c00243{left:644.400000px;}
.x13a_c00243{left:645.900000px;}
.xf6_c00243{left:647.100000px;}
.x9c_c00243{left:649.350000px;}
.x101_c00243{left:653.100000px;}
.x12d_c00243{left:655.650000px;}
.xa3_c00243{left:658.200000px;}
.xfc_c00243{left:659.550000px;}
.xab_c00243{left:660.600000px;}
.x13c_c00243{left:662.100000px;}
.x12a_c00243{left:663.600000px;}
.xe6_c00243{left:665.250000px;}
.xd1_c00243{left:666.450000px;}
.x109_c00243{left:668.700000px;}
.xff_c00243{left:672.900000px;}
.x115_c00243{left:674.550000px;}
.xea_c00243{left:675.600000px;}
.x111_c00243{left:677.550000px;}
.x9d_c00243{left:678.900000px;}
.xac_c00243{left:680.100000px;}
.xf7_c00243{left:682.050000px;}
.xa4_c00243{left:683.400000px;}
.xc1_c00243{left:685.800000px;}
.xda_c00243{left:687.600000px;}
.x127_c00243{left:688.650000px;}
.xb4_c00243{left:690.900000px;}
.x119_c00243{left:692.850000px;}
.xe0_c00243{left:694.050000px;}
.xd2_c00243{left:697.350000px;}
.xdb_c00243{left:698.400000px;}
.x100_c00243{left:700.200000px;}
.x11b_c00243{left:702.900000px;}
.x9e_c00243{left:704.100000px;}
.xa5_c00243{left:706.050000px;}
.xb5_c00243{left:707.100000px;}
.xc6_c00243{left:708.450000px;}
.xef_c00243{left:712.350000px;}
.xbc_c00243{left:713.550000px;}
.xad_c00243{left:715.350000px;}
.xf5_c00243{left:716.550000px;}
.x10d_c00243{left:720.450000px;}
.xf8_c00243{left:721.650000px;}
.xc2_c00243{left:723.600000px;}
.x117_c00243{left:724.800000px;}
.xcc_c00243{left:728.250000px;}
.x126_c00243{left:730.500000px;}
.x10a_c00243{left:731.700000px;}
.xc7_c00243{left:733.950000px;}
.x106_c00243{left:735.750000px;}
.xeb_c00243{left:736.800000px;}
.xd3_c00243{left:739.050000px;}
.x12b_c00243{left:740.250000px;}
.x12e_c00243{left:742.350000px;}
.xdc_c00243{left:743.400000px;}
.xa6_c00243{left:744.900000px;}
.x116_c00243{left:746.850000px;}
.xe7_c00243{left:749.100000px;}
.x104_c00243{left:750.150000px;}
.xf9_c00243{left:755.100000px;}
.x10b_c00243{left:756.150000px;}
.x133_c00243{left:757.200000px;}
.xae_c00243{left:759.600000px;}
.xf3_c00243{left:761.100000px;}
.xd4_c00243{left:762.150000px;}
.x112_c00243{left:763.350000px;}
.x13f_c00243{left:764.550000px;}
.xc3_c00243{left:766.800000px;}
.x118_c00243{left:769.500000px;}
.x10e_c00243{left:772.650000px;}
.xb6_c00243{left:773.700000px;}
.xa7_c00243{left:775.500000px;}
.xaf_c00243{left:776.550000px;}
.x11c_c00243{left:777.750000px;}
.xd5_c00243{left:780.150000px;}
.xf0_c00243{left:781.800000px;}
.xe1_c00243{left:783.300000px;}
.x134_c00243{left:784.500000px;}
.x10c_c00243{left:786.000000px;}
.x138_c00243{left:787.650000px;}
.xc8_c00243{left:788.700000px;}
.xbd_c00243{left:791.700000px;}
.xfa_c00243{left:793.950000px;}
.x122_c00243{left:795.450000px;}
.xcd_c00243{left:797.700000px;}
.x142_c00243{left:799.200000px;}
.xec_c00243{left:800.550000px;}
.x12f_c00243{left:802.050000px;}
.xf1_c00243{left:803.700000px;}
.x102_c00243{left:805.350000px;}
.x107_c00243{left:807.750000px;}
.x9f_c00243{left:810.000000px;}
.x10f_c00243{left:811.200000px;}
.xb7_c00243{left:814.050000px;}
.xc9_c00243{left:815.700000px;}
.xe2_c00243{left:816.750000px;}
.x128_c00243{left:819.000000px;}
.xce_c00243{left:820.050000px;}
.xbe_c00243{left:821.550000px;}
.xf2_c00243{left:823.200000px;}
.xb0_c00243{left:824.400000px;}
.xa8_c00243{left:825.900000px;}
.x12c_c00243{left:828.000000px;}
.x123_c00243{left:829.200000px;}
.xa0_c00243{left:831.300000px;}
.x11d_c00243{left:833.250000px;}
.xd6_c00243{left:834.450000px;}
.xc4_c00243{left:836.550000px;}
.xb8_c00243{left:838.500000px;}
.x140_c00243{left:839.850000px;}
.x11a_c00243{left:842.550000px;}
.xa9_c00243{left:846.000000px;}
.x11e_c00243{left:847.950000px;}
.xf4_c00243{left:849.600000px;}
.xdd_c00243{left:850.650000px;}
.xa1_c00243{left:854.400000px;}
.xca_c00243{left:859.650000px;}
.xb1_c00243{left:874.500000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls1_c00243{letter-spacing:0.000000pt;}
.ls0_c00243{letter-spacing:56.000000pt;}
.ws2_c00243{word-spacing:-80.000000pt;}
.wsd_c00243{word-spacing:-5.925926pt;}
.ws8_c00243{word-spacing:-5.513028pt;}
.wsc_c00243{word-spacing:-2.370370pt;}
.wsb_c00243{word-spacing:-1.699346pt;}
.wsf_c00243{word-spacing:0.000000pt;}
.ws9_c00243{word-spacing:0.260163pt;}
.wsa_c00243{word-spacing:1.234568pt;}
.wse_c00243{word-spacing:7.455197pt;}
.ws0_c00243{word-spacing:19.111111pt;}
.ws6_c00243{word-spacing:22.222222pt;}
.ws5_c00243{word-spacing:22.857143pt;}
.ws3_c00243{word-spacing:31.851852pt;}
.ws1_c00243{word-spacing:34.666667pt;}
.ws4_c00243{word-spacing:39.259259pt;}
.ws7_c00243{word-spacing:53.333333pt;}
._2_c00243{margin-left:-56.000000pt;}
._1_c00243{width:37.333333pt;}
._0_c00243{width:42.888889pt;}
._5_c00243{width:58.518519pt;}
._4_c00243{width:62.222222pt;}
._3_c00243{width:65.925926pt;}
.fs5_c00243{font-size:32.000000pt;}
.fs6_c00243{font-size:42.666667pt;}
.fs2_c00243{font-size:48.000000pt;}
.fs3_c00243{font-size:53.333333pt;}
.fs4_c00243{font-size:58.666667pt;}
.fs0_c00243{font-size:64.000000pt;}
.fs1_c00243{font-size:69.333333pt;}
.y0_c00243{bottom:0.000000pt;}
.y6c_c00243{bottom:94.133333pt;}
.y6b_c00243{bottom:171.733333pt;}
.y38_c00243{bottom:174.000000pt;}
.y6a_c00243{bottom:185.200000pt;}
.y37_c00243{bottom:190.000000pt;}
.y69_c00243{bottom:198.000000pt;}
.y36_c00243{bottom:205.333333pt;}
.y68_c00243{bottom:210.133333pt;}
.y35_c00243{bottom:221.066667pt;}
.y67_c00243{bottom:222.933333pt;}
.y66_c00243{bottom:235.733333pt;}
.y34_c00243{bottom:236.800000pt;}
.y65_c00243{bottom:248.266667pt;}
.y33_c00243{bottom:252.133333pt;}
.y64_c00243{bottom:260.800000pt;}
.y32_c00243{bottom:268.133333pt;}
.y63_c00243{bottom:273.600000pt;}
.y31_c00243{bottom:283.866667pt;}
.y62_c00243{bottom:286.133333pt;}
.y61_c00243{bottom:298.933333pt;}
.y30_c00243{bottom:299.200000pt;}
.y2f_c00243{bottom:314.933333pt;}
.y2e_c00243{bottom:330.666667pt;}
.y60_c00243{bottom:344.933333pt;}
.y2d_c00243{bottom:346.666667pt;}
.y5f_c00243{bottom:360.933333pt;}
.y2c_c00243{bottom:362.400000pt;}
.y5e_c00243{bottom:377.866667pt;}
.y2b_c00243{bottom:378.400000pt;}
.y5d_c00243{bottom:391.333333pt;}
.y2a_c00243{bottom:394.133333pt;}
.y5c_c00243{bottom:404.133333pt;}
.y29_c00243{bottom:410.800000pt;}
.y5b_c00243{bottom:417.200000pt;}
.y28_c00243{bottom:426.133333pt;}
.y5a_c00243{bottom:429.733333pt;}
.y27_c00243{bottom:442.133333pt;}
.y59_c00243{bottom:442.266667pt;}
.y58_c00243{bottom:455.066667pt;}
.y26_c00243{bottom:457.866667pt;}
.y57_c00243{bottom:472.666667pt;}
.y25_c00243{bottom:473.600000pt;}
.y56_c00243{bottom:488.933333pt;}
.y24_c00243{bottom:489.333333pt;}
.y55_c00243{bottom:504.933333pt;}
.y23_c00243{bottom:505.066667pt;}
.y54_c00243{bottom:520.666667pt;}
.y22_c00243{bottom:520.800000pt;}
.y53_c00243{bottom:536.000000pt;}
.y21_c00243{bottom:536.533333pt;}
.y20_c00243{bottom:552.266667pt;}
.y52_c00243{bottom:555.466667pt;}
.y1f_c00243{bottom:568.266667pt;}
.y51_c00243{bottom:571.466667pt;}
.y1e_c00243{bottom:584.266667pt;}
.y50_c00243{bottom:587.200000pt;}
.y1d_c00243{bottom:600.000000pt;}
.y4f_c00243{bottom:603.200000pt;}
.y1c_c00243{bottom:616.000000pt;}
.y4e_c00243{bottom:618.933333pt;}
.y1b_c00243{bottom:632.000000pt;}
.y4d_c00243{bottom:642.533333pt;}
.y1a_c00243{bottom:647.733333pt;}
.y19_c00243{bottom:663.733333pt;}
.y4c_c00243{bottom:677.733333pt;}
.y18_c00243{bottom:679.466667pt;}
.y4b_c00243{bottom:693.733333pt;}
.y17_c00243{bottom:695.200000pt;}
.y4a_c00243{bottom:709.466667pt;}
.y16_c00243{bottom:711.200000pt;}
.y49_c00243{bottom:725.200000pt;}
.y15_c00243{bottom:726.933333pt;}
.y48_c00243{bottom:741.200000pt;}
.y14_c00243{bottom:742.666667pt;}
.y47_c00243{bottom:756.933333pt;}
.y13_c00243{bottom:768.533333pt;}
.y46_c00243{bottom:772.666667pt;}
.y12_c00243{bottom:781.333333pt;}
.y45_c00243{bottom:788.400000pt;}
.y11_c00243{bottom:794.133333pt;}
.y44_c00243{bottom:804.666667pt;}
.y10_c00243{bottom:812.400000pt;}
.yf_c00243{bottom:819.733333pt;}
.y43_c00243{bottom:820.400000pt;}
.ye_c00243{bottom:832.533333pt;}
.y42_c00243{bottom:836.133333pt;}
.yd_c00243{bottom:845.333333pt;}
.y41_c00243{bottom:852.133333pt;}
.yc_c00243{bottom:857.866667pt;}
.yb_c00243{bottom:870.933333pt;}
.y40_c00243{bottom:875.200000pt;}
.ya_c00243{bottom:883.466667pt;}
.y3f_c00243{bottom:891.200000pt;}
.y9_c00243{bottom:896.266667pt;}
.y3e_c00243{bottom:907.200000pt;}
.y8_c00243{bottom:909.466667pt;}
.y3d_c00243{bottom:930.933333pt;}
.y7_c00243{bottom:932.800000pt;}
.y3c_c00243{bottom:946.933333pt;}
.y6_c00243{bottom:948.533333pt;}
.y3b_c00243{bottom:962.533333pt;}
.y5_c00243{bottom:963.866667pt;}
.y3a_c00243{bottom:978.533333pt;}
.y4_c00243{bottom:979.866667pt;}
.y39_c00243{bottom:994.266667pt;}
.y3_c00243{bottom:995.200000pt;}
.y1_c00243{bottom:1017.866667pt;}
.y2_c00243{bottom:1018.533333pt;}
.y6d_c00243{bottom:1132.800000pt;}
.h7_c00243{height:32.000000pt;}
.h8_c00243{height:42.666667pt;}
.h4_c00243{height:48.000000pt;}
.h5_c00243{height:53.333333pt;}
.h6_c00243{height:58.666667pt;}
.h2_c00243{height:64.000000pt;}
.h3_c00243{height:69.333333pt;}
.h0_c00243{height:1135.040039pt;}
.h1_c00243{height:1135.333333pt;}
.w1_c00243{width:856.000000pt;}
.w0_c00243{width:856.319987pt;}
.x0_c00243{left:0.000000pt;}
.x1_c00243{left:156.133333pt;}
.x26_c00243{left:157.066667pt;}
.x2f_c00243{left:169.600000pt;}
.x11_c00243{left:170.666667pt;}
.x3_c00243{left:172.133333pt;}
.x1f_c00243{left:173.066667pt;}
.x8c_c00243{left:174.133333pt;}
.x38_c00243{left:181.466667pt;}
.x3a_c00243{left:182.400000pt;}
.x20_c00243{left:184.000000pt;}
.x7e_c00243{left:185.733333pt;}
.x4_c00243{left:188.400000pt;}
.x81_c00243{left:189.333333pt;}
.x71_c00243{left:190.400000pt;}
.x18_c00243{left:194.000000pt;}
.x59_c00243{left:196.400000pt;}
.x74_c00243{left:198.666667pt;}
.x51_c00243{left:199.600000pt;}
.x96_c00243{left:200.933333pt;}
.x3f_c00243{left:201.866667pt;}
.x90_c00243{left:202.933333pt;}
.x4e_c00243{left:204.266667pt;}
.x21_c00243{left:206.666667pt;}
.xc_c00243{left:208.266667pt;}
.x7d_c00243{left:209.866667pt;}
.x70_c00243{left:211.466667pt;}
.x27_c00243{left:212.400000pt;}
.x5a_c00243{left:214.266667pt;}
.x75_c00243{left:216.000000pt;}
.x82_c00243{left:217.466667pt;}
.x40_c00243{left:218.533333pt;}
.x5f_c00243{left:219.466667pt;}
.x5_c00243{left:220.666667pt;}
.x63_c00243{left:221.733333pt;}
.x30_c00243{left:225.600000pt;}
.x44_c00243{left:229.733333pt;}
.x19_c00243{left:232.133333pt;}
.x28_c00243{left:233.200000pt;}
.x22_c00243{left:234.800000pt;}
.x89_c00243{left:236.000000pt;}
.x31_c00243{left:238.400000pt;}
.x60_c00243{left:239.600000pt;}
.x12_c00243{left:242.266667pt;}
.x41_c00243{left:244.400000pt;}
.x45_c00243{left:247.066667pt;}
.x97_c00243{left:248.000000pt;}
.x48_c00243{left:252.000000pt;}
.x72_c00243{left:256.000000pt;}
.x13_c00243{left:257.600000pt;}
.x42_c00243{left:261.066667pt;}
.x5b_c00243{left:262.666667pt;}
.x6_c00243{left:263.866667pt;}
.x52_c00243{left:265.466667pt;}
.x64_c00243{left:268.133333pt;}
.xd_c00243{left:269.333333pt;}
.x5e_c00243{left:271.200000pt;}
.x49_c00243{left:272.133333pt;}
.x1a_c00243{left:273.466667pt;}
.x3d_c00243{left:276.133333pt;}
.x5c_c00243{left:280.000000pt;}
.x8e_c00243{left:283.466667pt;}
.x76_c00243{left:284.400000pt;}
.x29_c00243{left:285.733333pt;}
.x83_c00243{left:286.666667pt;}
.x4a_c00243{left:288.000000pt;}
.x23_c00243{left:289.200000pt;}
.x8d_c00243{left:290.400000pt;}
.x7_c00243{left:292.000000pt;}
.x46_c00243{left:295.066667pt;}
.x65_c00243{left:296.266667pt;}
.x8f_c00243{left:297.333333pt;}
.x7f_c00243{left:299.333333pt;}
.x14_c00243{left:300.800000pt;}
.x1b_c00243{left:302.000000pt;}
.x43_c00243{left:304.000000pt;}
.x4f_c00243{left:305.066667pt;}
.x84_c00243{left:306.800000pt;}
.x24_c00243{left:310.266667pt;}
.x5d_c00243{left:311.733333pt;}
.x91_c00243{left:313.600000pt;}
.x32_c00243{left:314.666667pt;}
.x86_c00243{left:316.266667pt;}
.x7b_c00243{left:318.000000pt;}
.x69_c00243{left:319.466667pt;}
.x33_c00243{left:321.066667pt;}
.x78_c00243{left:324.000000pt;}
.x80_c00243{left:326.133333pt;}
.x34_c00243{left:327.733333pt;}
.x6e_c00243{left:328.666667pt;}
.x66_c00243{left:329.600000pt;}
.x57_c00243{left:331.200000pt;}
.x1c_c00243{left:334.933333pt;}
.x4b_c00243{left:336.266667pt;}
.xe_c00243{left:338.400000pt;}
.x35_c00243{left:340.133333pt;}
.x53_c00243{left:341.600000pt;}
.x79_c00243{left:342.533333pt;}
.x2a_c00243{left:344.266667pt;}
.x8_c00243{left:345.466667pt;}
.x92_c00243{left:347.466667pt;}
.x25_c00243{left:348.933333pt;}
.x1d_c00243{left:352.266667pt;}
.x9_c00243{left:354.133333pt;}
.x85_c00243{left:356.400000pt;}
.xf_c00243{left:358.533333pt;}
.x8b_c00243{left:359.733333pt;}
.x15_c00243{left:361.600000pt;}
.x2b_c00243{left:363.733333pt;}
.x2_c00243{left:364.800000pt;}
.x6f_c00243{left:365.733333pt;}
.xa_c00243{left:366.666667pt;}
.x93_c00243{left:368.000000pt;}
.x50_c00243{left:372.666667pt;}
.x54_c00243{left:373.600000pt;}
.x6c_c00243{left:375.600000pt;}
.x6a_c00243{left:377.333333pt;}
.x16_c00243{left:378.266667pt;}
.x87_c00243{left:379.333333pt;}
.x2c_c00243{left:381.066667pt;}
.x7a_c00243{left:383.200000pt;}
.x95_c00243{left:384.666667pt;}
.x88_c00243{left:386.666667pt;}
.x3e_c00243{left:388.800000pt;}
.x1e_c00243{left:390.000000pt;}
.x36_c00243{left:391.066667pt;}
.x47_c00243{left:392.000000pt;}
.x67_c00243{left:393.333333pt;}
.x6b_c00243{left:397.200000pt;}
.x55_c00243{left:398.266667pt;}
.x58_c00243{left:399.333333pt;}
.x73_c00243{left:400.666667pt;}
.x4c_c00243{left:405.333333pt;}
.x10_c00243{left:407.466667pt;}
.x2d_c00243{left:409.200000pt;}
.x77_c00243{left:411.466667pt;}
.x37_c00243{left:415.333333pt;}
.x3c_c00243{left:417.066667pt;}
.x6d_c00243{left:419.466667pt;}
.xb_c00243{left:422.666667pt;}
.x4d_c00243{left:424.533333pt;}
.x62_c00243{left:426.000000pt;}
.x17_c00243{left:428.533333pt;}
.x94_c00243{left:430.400000pt;}
.x68_c00243{left:432.400000pt;}
.x7c_c00243{left:434.533333pt;}
.x61_c00243{left:436.400000pt;}
.x98_c00243{left:437.733333pt;}
.x2e_c00243{left:438.933333pt;}
.x56_c00243{left:439.866667pt;}
.x39_c00243{left:440.800000pt;}
.x3b_c00243{left:442.266667pt;}
.x8a_c00243{left:443.733333pt;}
.x143_c00243{left:469.066667pt;}
.x135_c00243{left:470.133333pt;}
.xba_c00243{left:471.066667pt;}
.xfd_c00243{left:472.666667pt;}
.x144_c00243{left:476.133333pt;}
.x11f_c00243{left:483.333333pt;}
.x99_c00243{left:485.733333pt;}
.xbf_c00243{left:486.800000pt;}
.xe8_c00243{left:488.666667pt;}
.x13b_c00243{left:491.333333pt;}
.x129_c00243{left:496.800000pt;}
.xed_c00243{left:498.133333pt;}
.x124_c00243{left:499.600000pt;}
.xfb_c00243{left:502.800000pt;}
.x130_c00243{left:504.666667pt;}
.x110_c00243{left:507.466667pt;}
.xfe_c00243{left:509.200000pt;}
.x125_c00243{left:510.133333pt;}
.xc5_c00243{left:511.200000pt;}
.xb2_c00243{left:514.000000pt;}
.x139_c00243{left:515.733333pt;}
.x120_c00243{left:516.933333pt;}
.xe3_c00243{left:518.933333pt;}
.xd7_c00243{left:520.000000pt;}
.x9a_c00243{left:522.533333pt;}
.xa2_c00243{left:524.533333pt;}
.xcb_c00243{left:525.733333pt;}
.x13d_c00243{left:527.066667pt;}
.x137_c00243{left:528.933333pt;}
.xbb_c00243{left:530.533333pt;}
.x113_c00243{left:531.733333pt;}
.xaa_c00243{left:533.466667pt;}
.x131_c00243{left:534.800000pt;}
.xe4_c00243{left:536.266667pt;}
.xde_c00243{left:538.133333pt;}
.x108_c00243{left:539.733333pt;}
.x103_c00243{left:542.666667pt;}
.xd8_c00243{left:543.733333pt;}
.x9b_c00243{left:544.933333pt;}
.xcf_c00243{left:546.000000pt;}
.xb3_c00243{left:547.866667pt;}
.xee_c00243{left:550.000000pt;}
.x132_c00243{left:551.466667pt;}
.xc0_c00243{left:552.666667pt;}
.x13e_c00243{left:553.600000pt;}
.x141_c00243{left:555.866667pt;}
.x136_c00243{left:558.666667pt;}
.xdf_c00243{left:559.600000pt;}
.xd9_c00243{left:561.600000pt;}
.xd0_c00243{left:564.533333pt;}
.xb9_c00243{left:565.733333pt;}
.xe9_c00243{left:566.666667pt;}
.x121_c00243{left:568.133333pt;}
.x114_c00243{left:569.466667pt;}
.xe5_c00243{left:570.533333pt;}
.x105_c00243{left:572.800000pt;}
.x13a_c00243{left:574.133333pt;}
.xf6_c00243{left:575.200000pt;}
.x9c_c00243{left:577.200000pt;}
.x101_c00243{left:580.533333pt;}
.x12d_c00243{left:582.800000pt;}
.xa3_c00243{left:585.066667pt;}
.xfc_c00243{left:586.266667pt;}
.xab_c00243{left:587.200000pt;}
.x13c_c00243{left:588.533333pt;}
.x12a_c00243{left:589.866667pt;}
.xe6_c00243{left:591.333333pt;}
.xd1_c00243{left:592.400000pt;}
.x109_c00243{left:594.400000pt;}
.xff_c00243{left:598.133333pt;}
.x115_c00243{left:599.600000pt;}
.xea_c00243{left:600.533333pt;}
.x111_c00243{left:602.266667pt;}
.x9d_c00243{left:603.466667pt;}
.xac_c00243{left:604.533333pt;}
.xf7_c00243{left:606.266667pt;}
.xa4_c00243{left:607.466667pt;}
.xc1_c00243{left:609.600000pt;}
.xda_c00243{left:611.200000pt;}
.x127_c00243{left:612.133333pt;}
.xb4_c00243{left:614.133333pt;}
.x119_c00243{left:615.866667pt;}
.xe0_c00243{left:616.933333pt;}
.xd2_c00243{left:619.866667pt;}
.xdb_c00243{left:620.800000pt;}
.x100_c00243{left:622.400000pt;}
.x11b_c00243{left:624.800000pt;}
.x9e_c00243{left:625.866667pt;}
.xa5_c00243{left:627.600000pt;}
.xb5_c00243{left:628.533333pt;}
.xc6_c00243{left:629.733333pt;}
.xef_c00243{left:633.200000pt;}
.xbc_c00243{left:634.266667pt;}
.xad_c00243{left:635.866667pt;}
.xf5_c00243{left:636.933333pt;}
.x10d_c00243{left:640.400000pt;}
.xf8_c00243{left:641.466667pt;}
.xc2_c00243{left:643.200000pt;}
.x117_c00243{left:644.266667pt;}
.xcc_c00243{left:647.333333pt;}
.x126_c00243{left:649.333333pt;}
.x10a_c00243{left:650.400000pt;}
.xc7_c00243{left:652.400000pt;}
.x106_c00243{left:654.000000pt;}
.xeb_c00243{left:654.933333pt;}
.xd3_c00243{left:656.933333pt;}
.x12b_c00243{left:658.000000pt;}
.x12e_c00243{left:659.866667pt;}
.xdc_c00243{left:660.800000pt;}
.xa6_c00243{left:662.133333pt;}
.x116_c00243{left:663.866667pt;}
.xe7_c00243{left:665.866667pt;}
.x104_c00243{left:666.800000pt;}
.xf9_c00243{left:671.200000pt;}
.x10b_c00243{left:672.133333pt;}
.x133_c00243{left:673.066667pt;}
.xae_c00243{left:675.200000pt;}
.xf3_c00243{left:676.533333pt;}
.xd4_c00243{left:677.466667pt;}
.x112_c00243{left:678.533333pt;}
.x13f_c00243{left:679.600000pt;}
.xc3_c00243{left:681.600000pt;}
.x118_c00243{left:684.000000pt;}
.x10e_c00243{left:686.800000pt;}
.xb6_c00243{left:687.733333pt;}
.xa7_c00243{left:689.333333pt;}
.xaf_c00243{left:690.266667pt;}
.x11c_c00243{left:691.333333pt;}
.xd5_c00243{left:693.466667pt;}
.xf0_c00243{left:694.933333pt;}
.xe1_c00243{left:696.266667pt;}
.x134_c00243{left:697.333333pt;}
.x10c_c00243{left:698.666667pt;}
.x138_c00243{left:700.133333pt;}
.xc8_c00243{left:701.066667pt;}
.xbd_c00243{left:703.733333pt;}
.xfa_c00243{left:705.733333pt;}
.x122_c00243{left:707.066667pt;}
.xcd_c00243{left:709.066667pt;}
.x142_c00243{left:710.400000pt;}
.xec_c00243{left:711.600000pt;}
.x12f_c00243{left:712.933333pt;}
.xf1_c00243{left:714.400000pt;}
.x102_c00243{left:715.866667pt;}
.x107_c00243{left:718.000000pt;}
.x9f_c00243{left:720.000000pt;}
.x10f_c00243{left:721.066667pt;}
.xb7_c00243{left:723.600000pt;}
.xc9_c00243{left:725.066667pt;}
.xe2_c00243{left:726.000000pt;}
.x128_c00243{left:728.000000pt;}
.xce_c00243{left:728.933333pt;}
.xbe_c00243{left:730.266667pt;}
.xf2_c00243{left:731.733333pt;}
.xb0_c00243{left:732.800000pt;}
.xa8_c00243{left:734.133333pt;}
.x12c_c00243{left:736.000000pt;}
.x123_c00243{left:737.066667pt;}
.xa0_c00243{left:738.933333pt;}
.x11d_c00243{left:740.666667pt;}
.xd6_c00243{left:741.733333pt;}
.xc4_c00243{left:743.600000pt;}
.xb8_c00243{left:745.333333pt;}
.x140_c00243{left:746.533333pt;}
.x11a_c00243{left:748.933333pt;}
.xa9_c00243{left:752.000000pt;}
.x11e_c00243{left:753.733333pt;}
.xf4_c00243{left:755.200000pt;}
.xdd_c00243{left:756.133333pt;}
.xa1_c00243{left:759.466667pt;}
.xca_c00243{left:764.133333pt;}
.xb1_c00243{left:777.333333pt;}
}





/* 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_c00244 {
    display:none;
  }
  .loading-indicator_c00244.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00244 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_c00244 { 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_c00244" -> "#page-container .classname_c00244")
 */
.pf_c00244 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00244 { /* 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_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00244 { /* 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_c00244 { /* 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_c00244 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00244 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00244 {overflow:visible;}
  }
}
.c_c00244 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00244 { /* 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_c00244:after { /* webkit #35443 */
  content: '';
}
.t_c00244:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00244 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 */
}
.__c00244 { /* 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_c00244 { /* info for Javascript */
  display:none;
}
.l_c00244 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00244 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00244 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00244: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_c00244 {
    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_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00244.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_c00244 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00244;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.000000;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;}
.m122_c00244{transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);}
.m121_c00244{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m120_c00244{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.me3_c00244{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m123_c00244{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00244{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m60_c00244{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00244{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m59_c00244{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00244{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00244{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00244{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00244{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00244{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00244{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m86_c00244{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00244{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00244{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m102_c00244{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00244{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00244{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00244{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mca_c00244{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m28_c00244{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00244{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7_c00244{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m79_c00244{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00244{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m55_c00244{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00244{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00244{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00244{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.me9_c00244{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m43_c00244{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m38_c00244{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00244{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00244{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m65_c00244{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m68_c00244{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m53_c00244{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m25_c00244{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00244{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m110_c00244{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m19_c00244{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m29_c00244{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mea_c00244{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00244{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m17_c00244{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00244{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00244{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00244{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00244{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00244{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m66_c00244{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m61_c00244{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m16_c00244{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00244{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00244{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00244{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m42_c00244{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m44_c00244{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m83_c00244{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mde_c00244{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00244{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m50_c00244{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m100_c00244{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mda_c00244{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m54_c00244{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m10_c00244{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00244{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md5_c00244{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m115_c00244{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m39_c00244{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00244{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00244{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m27_c00244{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00244{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00244{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m63_c00244{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc_c00244{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00244{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m74_c00244{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m118_c00244{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m97_c00244{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00244{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m85_c00244{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m88_c00244{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m87_c00244{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00244{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md7_c00244{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8_c00244{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00244{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md8_c00244{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m95_c00244{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00244{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00244{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mab_c00244{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m64_c00244{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m22_c00244{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00244{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md9_c00244{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md4_c00244{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00244{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00244{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00244{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m81_c00244{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m57_c00244{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m40_c00244{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m114_c00244{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m89_c00244{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mef_c00244{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00244{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00244{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m47_c00244{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00244{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m36_c00244{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00244{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00244{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m56_c00244{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m46_c00244{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md6_c00244{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00244{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md_c00244{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6_c00244{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00244{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m24_c00244{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.maa_c00244{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00244{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m90_c00244{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00244{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me5_c00244{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00244{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00244{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00244{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5_c00244{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00244{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m67_c00244{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m13_c00244{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00244{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m45_c00244{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00244{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m111_c00244{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00244{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00244{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m78_c00244{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m52_c00244{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00244{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m93_c00244{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m98_c00244{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m23_c00244{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m99_c00244{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m84_c00244{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m15_c00244{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb_c00244{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m48_c00244{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00244{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00244{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m116_c00244{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mba_c00244{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m20_c00244{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00244{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m30_c00244{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00244{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m96_c00244{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00244{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00244{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md1_c00244{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m75_c00244{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m101_c00244{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m18_c00244{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00244{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00244{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me2_c00244{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00244{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me1_c00244{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mee_c00244{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00244{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00244{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m94_c00244{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00244{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m62_c00244{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m37_c00244{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00244{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00244{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00244{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m31_c00244{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00244{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m14_c00244{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00244{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md3_c00244{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m73_c00244{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m70_c00244{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md2_c00244{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m80_c00244{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9_c00244{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m33_c00244{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m3_c00244{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m103_c00244{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mec_c00244{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00244{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m12_c00244{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md0_c00244{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m34_c00244{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00244{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m58_c00244{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00244{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00244{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00244{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m76_c00244{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me4_c00244{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00244{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00244{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00244{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m119_c00244{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00244{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00244{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00244{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m91_c00244{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00244{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m71_c00244{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00244{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me_c00244{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m11_c00244{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00244{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m82_c00244{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00244{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00244{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00244{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00244{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00244{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);}
.m113_c00244{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00244{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00244{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m35_c00244{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00244{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m21_c00244{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m51_c00244{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m77_c00244{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me8_c00244{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me6_c00244{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mf_c00244{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m112_c00244{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.me0_c00244{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00244{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00244{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mae_c00244{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mce_c00244{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mff_c00244{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00244{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00244{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m109_c00244{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00244{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00244{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m32_c00244{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00244{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00244{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00244{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mac_c00244{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00244{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m117_c00244{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00244{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00244{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.med_c00244{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m72_c00244{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me7_c00244{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m105_c00244{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m26_c00244{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m4_c00244{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00244{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.meb_c00244{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00244{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.ma_c00244{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00244{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m106_c00244{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m41_c00244{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m107_c00244{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00244{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00244{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00244{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00244{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m92_c00244{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00244{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00244{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00244{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m108_c00244{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mad_c00244{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m104_c00244{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.maf_c00244{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m49_c00244{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502750,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls0_c00244{letter-spacing:0.000000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{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__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00244{word-spacing:-4.672131px;}
.ws3_c00244{word-spacing:-3.776280px;}
.ws0_c00244{word-spacing:-3.750000px;}
.ws4_c00244{word-spacing:-3.611111px;}
.ws6_c00244{word-spacing:-0.779927px;}
.ws1_c00244{word-spacing:-0.146132px;}
.ws9_c00244{word-spacing:0.000000px;}
.ws2_c00244{word-spacing:4.656716px;}
.ws8_c00244{word-spacing:5.441176px;}
.ws5_c00244{word-spacing:26.951482px;}
.fc0_c00244{color:transparent;}
.fs9_c00244{font-size:24.000000px;}
.fsa_c00244{font-size:30.000000px;}
.fs6_c00244{font-size:36.000000px;}
.fs8_c00244{font-size:42.000000px;}
.fs7_c00244{font-size:48.000000px;}
.fs5_c00244{font-size:54.000000px;}
.fs3_c00244{font-size:60.000000px;}
.fs2_c00244{font-size:66.000000px;}
.fs4_c00244{font-size:72.000000px;}
.fs0_c00244{font-size:78.000000px;}
.fs1_c00244{font-size:84.000000px;}
.y0_c00244{bottom:0.000000px;}
.y68_c00244{bottom:192.900000px;}
.y34_c00244{bottom:196.200000px;}
.y67_c00244{bottom:207.300000px;}
.y33_c00244{bottom:218.550000px;}
.y66_c00244{bottom:221.700000px;}
.y65_c00244{bottom:236.700000px;}
.y64_c00244{bottom:250.350000px;}
.y32_c00244{bottom:253.350000px;}
.y63_c00244{bottom:264.750000px;}
.y31_c00244{bottom:271.350000px;}
.y6f_c00244{bottom:273.750000px;}
.y62_c00244{bottom:279.150000px;}
.y6e_c00244{bottom:285.600000px;}
.y30_c00244{bottom:289.050000px;}
.y6d_c00244{bottom:292.050000px;}
.y61_c00244{bottom:293.250000px;}
.y6c_c00244{bottom:300.300000px;}
.y2f_c00244{bottom:307.050000px;}
.y60_c00244{bottom:307.650000px;}
.y6b_c00244{bottom:311.400000px;}
.y6a_c00244{bottom:319.650000px;}
.y5f_c00244{bottom:322.050000px;}
.y69_c00244{bottom:324.000000px;}
.y2e_c00244{bottom:324.750000px;}
.y5e_c00244{bottom:337.200000px;}
.y2d_c00244{bottom:342.300000px;}
.y5d_c00244{bottom:350.550000px;}
.y5c_c00244{bottom:364.650000px;}
.y2c_c00244{bottom:367.950000px;}
.y5b_c00244{bottom:379.050000px;}
.y2b_c00244{bottom:385.950000px;}
.y5a_c00244{bottom:393.150000px;}
.y2a_c00244{bottom:411.900000px;}
.y29_c00244{bottom:429.900000px;}
.y59_c00244{bottom:442.050000px;}
.y28_c00244{bottom:447.600000px;}
.y58_c00244{bottom:462.450000px;}
.y27_c00244{bottom:465.600000px;}
.y57_c00244{bottom:480.450000px;}
.y26_c00244{bottom:483.600000px;}
.y56_c00244{bottom:498.150000px;}
.y25_c00244{bottom:501.300000px;}
.y55_c00244{bottom:516.150000px;}
.y24_c00244{bottom:519.000000px;}
.y54_c00244{bottom:533.850000px;}
.y23_c00244{bottom:536.700000px;}
.y53_c00244{bottom:551.550000px;}
.y22_c00244{bottom:554.700000px;}
.y21_c00244{bottom:576.600000px;}
.y52_c00244{bottom:579.600000px;}
.y20_c00244{bottom:594.600000px;}
.y51_c00244{bottom:596.100000px;}
.y1f_c00244{bottom:612.600000px;}
.y50_c00244{bottom:614.100000px;}
.y1e_c00244{bottom:630.300000px;}
.y4f_c00244{bottom:631.350000px;}
.y1d_c00244{bottom:648.300000px;}
.y4e_c00244{bottom:649.050000px;}
.y1c_c00244{bottom:666.000000px;}
.y4d_c00244{bottom:667.050000px;}
.y1b_c00244{bottom:687.450000px;}
.y4c_c00244{bottom:689.100000px;}
.y1a_c00244{bottom:705.450000px;}
.y19_c00244{bottom:723.150000px;}
.y4b_c00244{bottom:724.350000px;}
.y18_c00244{bottom:740.850000px;}
.y4a_c00244{bottom:742.800000px;}
.y17_c00244{bottom:758.850000px;}
.y49_c00244{bottom:760.050000px;}
.y48_c00244{bottom:771.150000px;}
.y16_c00244{bottom:776.550000px;}
.y47_c00244{bottom:782.250000px;}
.y15_c00244{bottom:794.250000px;}
.y46_c00244{bottom:800.250000px;}
.y14_c00244{bottom:811.950000px;}
.y45_c00244{bottom:822.150000px;}
.y13_c00244{bottom:829.650000px;}
.y44_c00244{bottom:840.150000px;}
.y12_c00244{bottom:847.650000px;}
.y43_c00244{bottom:857.850000px;}
.y11_c00244{bottom:865.350000px;}
.y42_c00244{bottom:875.550000px;}
.y10_c00244{bottom:883.350000px;}
.y41_c00244{bottom:893.550000px;}
.yf_c00244{bottom:901.050000px;}
.y40_c00244{bottom:911.250000px;}
.ye_c00244{bottom:918.750000px;}
.y3f_c00244{bottom:929.250000px;}
.yd_c00244{bottom:936.750000px;}
.y3e_c00244{bottom:947.250000px;}
.yc_c00244{bottom:958.350000px;}
.y3d_c00244{bottom:964.500000px;}
.yb_c00244{bottom:976.050000px;}
.y3c_c00244{bottom:989.250000px;}
.ya_c00244{bottom:994.050000px;}
.y3b_c00244{bottom:1008.300000px;}
.y9_c00244{bottom:1011.750000px;}
.y3a_c00244{bottom:1026.300000px;}
.y8_c00244{bottom:1029.450000px;}
.y39_c00244{bottom:1044.000000px;}
.y7_c00244{bottom:1047.450000px;}
.y38_c00244{bottom:1062.300000px;}
.y6_c00244{bottom:1065.150000px;}
.y37_c00244{bottom:1079.250000px;}
.y5_c00244{bottom:1083.150000px;}
.y4_c00244{bottom:1101.150000px;}
.y36_c00244{bottom:1101.600000px;}
.y3_c00244{bottom:1118.850000px;}
.y35_c00244{bottom:1119.300000px;}
.y2_c00244{bottom:1140.450000px;}
.y1_c00244{bottom:1146.600000px;}
.hb_c00244{height:24.000000px;}
.hc_c00244{height:30.000000px;}
.h8_c00244{height:36.000000px;}
.ha_c00244{height:42.000000px;}
.h9_c00244{height:48.000000px;}
.h7_c00244{height:54.000000px;}
.h5_c00244{height:60.000000px;}
.h4_c00244{height:66.000000px;}
.h6_c00244{height:72.000000px;}
.h2_c00244{height:78.000000px;}
.h3_c00244{height:84.000000px;}
.h1_c00244{height:1273.500000px;}
.h0_c00244{height:1273.679993px;}
.w1_c00244{width:963.000000px;}
.w0_c00244{width:963.359985px;}
.x0_c00244{left:0.000000px;}
.x8e_c00244{left:90.000000px;}
.x95_c00244{left:91.050000px;}
.x8a_c00244{left:106.200000px;}
.x23_c00244{left:108.300000px;}
.x3_c00244{left:109.500000px;}
.x3d_c00244{left:127.050000px;}
.x7b_c00244{left:129.300000px;}
.x8d_c00244{left:130.800000px;}
.x12_c00244{left:132.300000px;}
.x91_c00244{left:134.250000px;}
.x24_c00244{left:135.600000px;}
.x2b_c00244{left:136.650000px;}
.x4b_c00244{left:138.600000px;}
.x6d_c00244{left:140.700000px;}
.x67_c00244{left:142.350000px;}
.x81_c00244{left:143.850000px;}
.x3a_c00244{left:144.900000px;}
.x41_c00244{left:146.100000px;}
.x33_c00244{left:147.750000px;}
.x51_c00244{left:149.400000px;}
.x3e_c00244{left:151.500000px;}
.x46_c00244{left:154.200000px;}
.x8f_c00244{left:155.850000px;}
.x4_c00244{left:158.850000px;}
.xc_c00244{left:160.800000px;}
.x63_c00244{left:163.200000px;}
.x83_c00244{left:164.250000px;}
.x71_c00244{left:166.200000px;}
.x6e_c00244{left:167.250000px;}
.x34_c00244{left:170.100000px;}
.x1a_c00244{left:171.150000px;}
.x57_c00244{left:172.350000px;}
.x13_c00244{left:174.450000px;}
.xd_c00244{left:178.050000px;}
.x5_c00244{left:179.700000px;}
.x5c_c00244{left:180.750000px;}
.x76_c00244{left:181.950000px;}
.x72_c00244{left:186.000000px;}
.x4c_c00244{left:187.200000px;}
.x2c_c00244{left:190.350000px;}
.x30_c00244{left:193.650000px;}
.x5d_c00244{left:194.850000px;}
.x79_c00244{left:196.650000px;}
.x92_c00244{left:198.000000px;}
.x1d_c00244{left:201.150000px;}
.x3b_c00244{left:202.800000px;}
.x35_c00244{left:205.050000px;}
.x25_c00244{left:208.050000px;}
.xe_c00244{left:209.700000px;}
.x2d_c00244{left:211.950000px;}
.x47_c00244{left:213.000000px;}
.x6c_c00244{left:217.500000px;}
.x86_c00244{left:219.900000px;}
.x52_c00244{left:220.950000px;}
.x74_c00244{left:223.050000px;}
.x69_c00244{left:225.450000px;}
.x26_c00244{left:226.800000px;}
.x48_c00244{left:228.900000px;}
.x36_c00244{left:231.300000px;}
.x58_c00244{left:233.250000px;}
.x87_c00244{left:235.800000px;}
.x53_c00244{left:237.450000px;}
.x6_c00244{left:241.650000px;}
.x82_c00244{left:242.850000px;}
.x42_c00244{left:244.500000px;}
.x84_c00244{left:246.450000px;}
.x14_c00244{left:248.550000px;}
.x94_c00244{left:250.200000px;}
.x1e_c00244{left:252.600000px;}
.x59_c00244{left:256.950000px;}
.x60_c00244{left:258.000000px;}
.x2e_c00244{left:261.300000px;}
.x7f_c00244{left:262.650000px;}
.x15_c00244{left:265.500000px;}
.x7_c00244{left:267.150000px;}
.x1b_c00244{left:269.700000px;}
.x73_c00244{left:271.650000px;}
.x3c_c00244{left:273.750000px;}
.x31_c00244{left:275.700000px;}
.x37_c00244{left:277.050000px;}
.x64_c00244{left:278.400000px;}
.x8_c00244{left:279.450000px;}
.x80_c00244{left:280.650000px;}
.x6a_c00244{left:282.750000px;}
.x16_c00244{left:289.950000px;}
.x6b_c00244{left:293.250000px;}
.x61_c00244{left:295.500000px;}
.x85_c00244{left:296.850000px;}
.xf_c00244{left:297.900000px;}
.x1f_c00244{left:299.400000px;}
.x9_c00244{left:300.750000px;}
.x54_c00244{left:302.250000px;}
.x7a_c00244{left:304.050000px;}
.x8b_c00244{left:305.250000px;}
.x1c_c00244{left:307.500000px;}
.x77_c00244{left:309.300000px;}
.x27_c00244{left:312.600000px;}
.x38_c00244{left:315.900000px;}
.x7d_c00244{left:317.700000px;}
.x3f_c00244{left:320.400000px;}
.x88_c00244{left:322.500000px;}
.x20_c00244{left:324.300000px;}
.x5a_c00244{left:325.350000px;}
.x1_c00244{left:327.900000px;}
.x93_c00244{left:330.150000px;}
.x49_c00244{left:331.500000px;}
.x7e_c00244{left:332.850000px;}
.x43_c00244{left:335.550000px;}
.x55_c00244{left:336.900000px;}
.x4d_c00244{left:337.950000px;}
.x10_c00244{left:339.300000px;}
.x5b_c00244{left:341.550000px;}
.x90_c00244{left:343.050000px;}
.xa_c00244{left:345.750000px;}
.x21_c00244{left:348.000000px;}
.x17_c00244{left:351.150000px;}
.x39_c00244{left:352.200000px;}
.x68_c00244{left:353.250000px;}
.x8c_c00244{left:354.300000px;}
.x7c_c00244{left:355.350000px;}
.x62_c00244{left:356.400000px;}
.x5e_c00244{left:358.650000px;}
.x4e_c00244{left:360.300000px;}
.x11_c00244{left:361.650000px;}
.x28_c00244{left:364.500000px;}
.x75_c00244{left:366.450000px;}
.x18_c00244{left:368.850000px;}
.x6f_c00244{left:370.950000px;}
.x40_c00244{left:372.150000px;}
.x5f_c00244{left:375.900000px;}
.x89_c00244{left:378.000000px;}
.x29_c00244{left:380.400000px;}
.x65_c00244{left:382.800000px;}
.x32_c00244{left:388.350000px;}
.xb_c00244{left:389.700000px;}
.x70_c00244{left:391.500000px;}
.x4a_c00244{left:392.700000px;}
.x56_c00244{left:394.200000px;}
.x78_c00244{left:395.700000px;}
.x2f_c00244{left:398.100000px;}
.x66_c00244{left:401.550000px;}
.x4f_c00244{left:405.300000px;}
.x44_c00244{left:406.500000px;}
.x19_c00244{left:411.000000px;}
.x22_c00244{left:414.300000px;}
.x50_c00244{left:418.650000px;}
.x45_c00244{left:419.850000px;}
.x2a_c00244{left:422.850000px;}
.x13f_c00244{left:434.850000px;}
.x124_c00244{left:444.300000px;}
.x113_c00244{left:445.350000px;}
.xa1_c00244{left:446.400000px;}
.xc4_c00244{left:447.450000px;}
.xf3_c00244{left:451.800000px;}
.x131_c00244{left:455.550000px;}
.x119_c00244{left:459.300000px;}
.xa8_c00244{left:460.650000px;}
.x111_c00244{left:462.900000px;}
.x96_c00244{left:464.100000px;}
.xd3_c00244{left:465.150000px;}
.x134_c00244{left:472.950000px;}
.x121_c00244{left:474.600000px;}
.x132_c00244{left:476.850000px;}
.x13b_c00244{left:478.500000px;}
.xd4_c00244{left:480.600000px;}
.xf6_c00244{left:483.150000px;}
.x127_c00244{left:485.250000px;}
.x106_c00244{left:487.200000px;}
.xa2_c00244{left:490.650000px;}
.xfa_c00244{left:492.450000px;}
.x122_c00244{left:494.700000px;}
.x12e_c00244{left:495.750000px;}
.xae_c00244{left:497.250000px;}
.xa0_c00244{left:498.600000px;}
.x105_c00244{left:500.550000px;}
.x97_c00244{left:501.900000px;}
.x11a_c00244{left:503.700000px;}
.xb2_c00244{left:504.750000px;}
.xbf_c00244{left:505.800000px;}
.xca_c00244{left:508.350000px;}
.x100_c00244{left:509.850000px;}
.x10d_c00244{left:510.900000px;}
.xd5_c00244{left:513.300000px;}
.xa9_c00244{left:515.400000px;}
.x98_c00244{left:517.800000px;}
.x114_c00244{left:519.150000px;}
.x123_c00244{left:521.400000px;}
.x11b_c00244{left:522.750000px;}
.xda_c00244{left:524.100000px;}
.xe9_c00244{left:525.900000px;}
.xc0_c00244{left:527.700000px;}
.xf7_c00244{left:528.900000px;}
.xe5_c00244{left:529.950000px;}
.xaf_c00244{left:531.450000px;}
.xb3_c00244{left:532.800000px;}
.x99_c00244{left:534.750000px;}
.x125_c00244{left:536.400000px;}
.xd0_c00244{left:538.650000px;}
.xc1_c00244{left:540.600000px;}
.xe7_c00244{left:542.250000px;}
.xdf_c00244{left:543.900000px;}
.x115_c00244{left:545.850000px;}
.xe4_c00244{left:547.950000px;}
.x112_c00244{left:549.450000px;}
.xb4_c00244{left:552.300000px;}
.xea_c00244{left:554.400000px;}
.x108_c00244{left:556.500000px;}
.xa3_c00244{left:557.550000px;}
.x10a_c00244{left:558.600000px;}
.x11d_c00244{left:559.800000px;}
.x101_c00244{left:561.000000px;}
.xfd_c00244{left:562.650000px;}
.x135_c00244{left:566.400000px;}
.xdb_c00244{left:568.350000px;}
.x9a_c00244{left:570.450000px;}
.xbc_c00244{left:572.100000px;}
.xc2_c00244{left:574.050000px;}
.x102_c00244{left:576.150000px;}
.xe8_c00244{left:578.550000px;}
.x137_c00244{left:579.600000px;}
.xc5_c00244{left:581.100000px;}
.xd1_c00244{left:584.700000px;}
.xf4_c00244{left:585.750000px;}
.xcb_c00244{left:587.550000px;}
.x9b_c00244{left:588.750000px;}
.xeb_c00244{left:590.100000px;}
.xc3_c00244{left:592.350000px;}
.x10e_c00244{left:594.000000px;}
.xef_c00244{left:595.200000px;}
.xbd_c00244{left:596.550000px;}
.xff_c00244{left:597.750000px;}
.xfe_c00244{left:598.950000px;}
.x13d_c00244{left:600.450000px;}
.xf5_c00244{left:603.300000px;}
.xa4_c00244{left:604.650000px;}
.xb5_c00244{left:608.100000px;}
.x116_c00244{left:609.300000px;}
.x136_c00244{left:610.350000px;}
.xec_c00244{left:611.400000px;}
.x10f_c00244{left:614.850000px;}
.xaa_c00244{left:616.650000px;}
.xbe_c00244{left:618.150000px;}
.xe0_c00244{left:619.200000px;}
.x12b_c00244{left:621.600000px;}
.xc6_c00244{left:623.550000px;}
.xf8_c00244{left:628.950000px;}
.xb6_c00244{left:630.750000px;}
.xa5_c00244{left:632.400000px;}
.x138_c00244{left:633.600000px;}
.xab_c00244{left:636.150000px;}
.x12c_c00244{left:637.500000px;}
.x13a_c00244{left:639.300000px;}
.xfb_c00244{left:641.400000px;}
.x117_c00244{left:642.750000px;}
.x109_c00244{left:643.950000px;}
.xcc_c00244{left:645.150000px;}
.xe6_c00244{left:646.200000px;}
.xb7_c00244{left:649.050000px;}
.x11e_c00244{left:651.300000px;}
.xe1_c00244{left:653.400000px;}
.x11c_c00244{left:654.900000px;}
.x12d_c00244{left:659.400000px;}
.x118_c00244{left:660.450000px;}
.xac_c00244{left:661.650000px;}
.x133_c00244{left:663.600000px;}
.x9c_c00244{left:667.650000px;}
.x11f_c00244{left:669.000000px;}
.xc7_c00244{left:671.100000px;}
.x13c_c00244{left:672.750000px;}
.xb8_c00244{left:674.250000px;}
.xdc_c00244{left:676.350000px;}
.xa6_c00244{left:677.700000px;}
.xed_c00244{left:680.100000px;}
.xb9_c00244{left:685.350000px;}
.x128_c00244{left:690.450000px;}
.xdd_c00244{left:691.800000px;}
.x107_c00244{left:693.150000px;}
.xd6_c00244{left:694.350000px;}
.xf0_c00244{left:696.450000px;}
.x10b_c00244{left:697.800000px;}
.xf9_c00244{left:700.200000px;}
.xe2_c00244{left:701.250000px;}
.xba_c00244{left:703.650000px;}
.x9d_c00244{left:704.700000px;}
.xc8_c00244{left:706.050000px;}
.xb0_c00244{left:707.400000px;}
.xd7_c00244{left:708.750000px;}
.xcd_c00244{left:709.950000px;}
.x103_c00244{left:711.600000px;}
.x12f_c00244{left:713.850000px;}
.x120_c00244{left:715.050000px;}
.x10c_c00244{left:716.850000px;}
.xce_c00244{left:718.650000px;}
.xa7_c00244{left:719.850000px;}
.x126_c00244{left:722.550000px;}
.x129_c00244{left:723.900000px;}
.xfc_c00244{left:724.950000px;}
.xd2_c00244{left:730.500000px;}
.xe3_c00244{left:731.850000px;}
.xd8_c00244{left:732.900000px;}
.x9e_c00244{left:734.550000px;}
.xf1_c00244{left:735.900000px;}
.xbb_c00244{left:741.150000px;}
.xb1_c00244{left:743.700000px;}
.x110_c00244{left:745.500000px;}
.xcf_c00244{left:747.750000px;}
.x104_c00244{left:749.700000px;}
.x139_c00244{left:751.350000px;}
.x2_c00244{left:754.200000px;}
.xc9_c00244{left:759.000000px;}
.x13e_c00244{left:760.350000px;}
.xad_c00244{left:762.450000px;}
.xf2_c00244{left:765.750000px;}
.xd9_c00244{left:767.100000px;}
.x12a_c00244{left:768.150000px;}
.xde_c00244{left:769.950000px;}
.x9f_c00244{left:771.600000px;}
.x130_c00244{left:773.850000px;}
.xee_c00244{left:782.400000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws7_c00244{word-spacing:-4.153005pt;}
.ws3_c00244{word-spacing:-3.356694pt;}
.ws0_c00244{word-spacing:-3.333333pt;}
.ws4_c00244{word-spacing:-3.209877pt;}
.ws6_c00244{word-spacing:-0.693269pt;}
.ws1_c00244{word-spacing:-0.129895pt;}
.ws9_c00244{word-spacing:0.000000pt;}
.ws2_c00244{word-spacing:4.139303pt;}
.ws8_c00244{word-spacing:4.836601pt;}
.ws5_c00244{word-spacing:23.956873pt;}
.fs9_c00244{font-size:21.333333pt;}
.fsa_c00244{font-size:26.666667pt;}
.fs6_c00244{font-size:32.000000pt;}
.fs8_c00244{font-size:37.333333pt;}
.fs7_c00244{font-size:42.666667pt;}
.fs5_c00244{font-size:48.000000pt;}
.fs3_c00244{font-size:53.333333pt;}
.fs2_c00244{font-size:58.666667pt;}
.fs4_c00244{font-size:64.000000pt;}
.fs0_c00244{font-size:69.333333pt;}
.fs1_c00244{font-size:74.666667pt;}
.y0_c00244{bottom:0.000000pt;}
.y68_c00244{bottom:171.466667pt;}
.y34_c00244{bottom:174.400000pt;}
.y67_c00244{bottom:184.266667pt;}
.y33_c00244{bottom:194.266667pt;}
.y66_c00244{bottom:197.066667pt;}
.y65_c00244{bottom:210.400000pt;}
.y64_c00244{bottom:222.533333pt;}
.y32_c00244{bottom:225.200000pt;}
.y63_c00244{bottom:235.333333pt;}
.y31_c00244{bottom:241.200000pt;}
.y6f_c00244{bottom:243.333333pt;}
.y62_c00244{bottom:248.133333pt;}
.y6e_c00244{bottom:253.866667pt;}
.y30_c00244{bottom:256.933333pt;}
.y6d_c00244{bottom:259.600000pt;}
.y61_c00244{bottom:260.666667pt;}
.y6c_c00244{bottom:266.933333pt;}
.y2f_c00244{bottom:272.933333pt;}
.y60_c00244{bottom:273.466667pt;}
.y6b_c00244{bottom:276.800000pt;}
.y6a_c00244{bottom:284.133333pt;}
.y5f_c00244{bottom:286.266667pt;}
.y69_c00244{bottom:288.000000pt;}
.y2e_c00244{bottom:288.666667pt;}
.y5e_c00244{bottom:299.733333pt;}
.y2d_c00244{bottom:304.266667pt;}
.y5d_c00244{bottom:311.600000pt;}
.y5c_c00244{bottom:324.133333pt;}
.y2c_c00244{bottom:327.066667pt;}
.y5b_c00244{bottom:336.933333pt;}
.y2b_c00244{bottom:343.066667pt;}
.y5a_c00244{bottom:349.466667pt;}
.y2a_c00244{bottom:366.133333pt;}
.y29_c00244{bottom:382.133333pt;}
.y59_c00244{bottom:392.933333pt;}
.y28_c00244{bottom:397.866667pt;}
.y58_c00244{bottom:411.066667pt;}
.y27_c00244{bottom:413.866667pt;}
.y57_c00244{bottom:427.066667pt;}
.y26_c00244{bottom:429.866667pt;}
.y56_c00244{bottom:442.800000pt;}
.y25_c00244{bottom:445.600000pt;}
.y55_c00244{bottom:458.800000pt;}
.y24_c00244{bottom:461.333333pt;}
.y54_c00244{bottom:474.533333pt;}
.y23_c00244{bottom:477.066667pt;}
.y53_c00244{bottom:490.266667pt;}
.y22_c00244{bottom:493.066667pt;}
.y21_c00244{bottom:512.533333pt;}
.y52_c00244{bottom:515.200000pt;}
.y20_c00244{bottom:528.533333pt;}
.y51_c00244{bottom:529.866667pt;}
.y1f_c00244{bottom:544.533333pt;}
.y50_c00244{bottom:545.866667pt;}
.y1e_c00244{bottom:560.266667pt;}
.y4f_c00244{bottom:561.200000pt;}
.y1d_c00244{bottom:576.266667pt;}
.y4e_c00244{bottom:576.933333pt;}
.y1c_c00244{bottom:592.000000pt;}
.y4d_c00244{bottom:592.933333pt;}
.y1b_c00244{bottom:611.066667pt;}
.y4c_c00244{bottom:612.533333pt;}
.y1a_c00244{bottom:627.066667pt;}
.y19_c00244{bottom:642.800000pt;}
.y4b_c00244{bottom:643.866667pt;}
.y18_c00244{bottom:658.533333pt;}
.y4a_c00244{bottom:660.266667pt;}
.y17_c00244{bottom:674.533333pt;}
.y49_c00244{bottom:675.600000pt;}
.y48_c00244{bottom:685.466667pt;}
.y16_c00244{bottom:690.266667pt;}
.y47_c00244{bottom:695.333333pt;}
.y15_c00244{bottom:706.000000pt;}
.y46_c00244{bottom:711.333333pt;}
.y14_c00244{bottom:721.733333pt;}
.y45_c00244{bottom:730.800000pt;}
.y13_c00244{bottom:737.466667pt;}
.y44_c00244{bottom:746.800000pt;}
.y12_c00244{bottom:753.466667pt;}
.y43_c00244{bottom:762.533333pt;}
.y11_c00244{bottom:769.200000pt;}
.y42_c00244{bottom:778.266667pt;}
.y10_c00244{bottom:785.200000pt;}
.y41_c00244{bottom:794.266667pt;}
.yf_c00244{bottom:800.933333pt;}
.y40_c00244{bottom:810.000000pt;}
.ye_c00244{bottom:816.666667pt;}
.y3f_c00244{bottom:826.000000pt;}
.yd_c00244{bottom:832.666667pt;}
.y3e_c00244{bottom:842.000000pt;}
.yc_c00244{bottom:851.866667pt;}
.y3d_c00244{bottom:857.333333pt;}
.yb_c00244{bottom:867.600000pt;}
.y3c_c00244{bottom:879.333333pt;}
.ya_c00244{bottom:883.600000pt;}
.y3b_c00244{bottom:896.266667pt;}
.y9_c00244{bottom:899.333333pt;}
.y3a_c00244{bottom:912.266667pt;}
.y8_c00244{bottom:915.066667pt;}
.y39_c00244{bottom:928.000000pt;}
.y7_c00244{bottom:931.066667pt;}
.y38_c00244{bottom:944.266667pt;}
.y6_c00244{bottom:946.800000pt;}
.y37_c00244{bottom:959.333333pt;}
.y5_c00244{bottom:962.800000pt;}
.y4_c00244{bottom:978.800000pt;}
.y36_c00244{bottom:979.200000pt;}
.y3_c00244{bottom:994.533333pt;}
.y35_c00244{bottom:994.933333pt;}
.y2_c00244{bottom:1013.733333pt;}
.y1_c00244{bottom:1019.200000pt;}
.hb_c00244{height:21.333333pt;}
.hc_c00244{height:26.666667pt;}
.h8_c00244{height:32.000000pt;}
.ha_c00244{height:37.333333pt;}
.h9_c00244{height:42.666667pt;}
.h7_c00244{height:48.000000pt;}
.h5_c00244{height:53.333333pt;}
.h4_c00244{height:58.666667pt;}
.h6_c00244{height:64.000000pt;}
.h2_c00244{height:69.333333pt;}
.h3_c00244{height:74.666667pt;}
.h1_c00244{height:1132.000000pt;}
.h0_c00244{height:1132.159993pt;}
.w1_c00244{width:856.000000pt;}
.w0_c00244{width:856.319987pt;}
.x0_c00244{left:0.000000pt;}
.x8e_c00244{left:80.000000pt;}
.x95_c00244{left:80.933333pt;}
.x8a_c00244{left:94.400000pt;}
.x23_c00244{left:96.266667pt;}
.x3_c00244{left:97.333333pt;}
.x3d_c00244{left:112.933333pt;}
.x7b_c00244{left:114.933333pt;}
.x8d_c00244{left:116.266667pt;}
.x12_c00244{left:117.600000pt;}
.x91_c00244{left:119.333333pt;}
.x24_c00244{left:120.533333pt;}
.x2b_c00244{left:121.466667pt;}
.x4b_c00244{left:123.200000pt;}
.x6d_c00244{left:125.066667pt;}
.x67_c00244{left:126.533333pt;}
.x81_c00244{left:127.866667pt;}
.x3a_c00244{left:128.800000pt;}
.x41_c00244{left:129.866667pt;}
.x33_c00244{left:131.333333pt;}
.x51_c00244{left:132.800000pt;}
.x3e_c00244{left:134.666667pt;}
.x46_c00244{left:137.066667pt;}
.x8f_c00244{left:138.533333pt;}
.x4_c00244{left:141.200000pt;}
.xc_c00244{left:142.933333pt;}
.x63_c00244{left:145.066667pt;}
.x83_c00244{left:146.000000pt;}
.x71_c00244{left:147.733333pt;}
.x6e_c00244{left:148.666667pt;}
.x34_c00244{left:151.200000pt;}
.x1a_c00244{left:152.133333pt;}
.x57_c00244{left:153.200000pt;}
.x13_c00244{left:155.066667pt;}
.xd_c00244{left:158.266667pt;}
.x5_c00244{left:159.733333pt;}
.x5c_c00244{left:160.666667pt;}
.x76_c00244{left:161.733333pt;}
.x72_c00244{left:165.333333pt;}
.x4c_c00244{left:166.400000pt;}
.x2c_c00244{left:169.200000pt;}
.x30_c00244{left:172.133333pt;}
.x5d_c00244{left:173.200000pt;}
.x79_c00244{left:174.800000pt;}
.x92_c00244{left:176.000000pt;}
.x1d_c00244{left:178.800000pt;}
.x3b_c00244{left:180.266667pt;}
.x35_c00244{left:182.266667pt;}
.x25_c00244{left:184.933333pt;}
.xe_c00244{left:186.400000pt;}
.x2d_c00244{left:188.400000pt;}
.x47_c00244{left:189.333333pt;}
.x6c_c00244{left:193.333333pt;}
.x86_c00244{left:195.466667pt;}
.x52_c00244{left:196.400000pt;}
.x74_c00244{left:198.266667pt;}
.x69_c00244{left:200.400000pt;}
.x26_c00244{left:201.600000pt;}
.x48_c00244{left:203.466667pt;}
.x36_c00244{left:205.600000pt;}
.x58_c00244{left:207.333333pt;}
.x87_c00244{left:209.600000pt;}
.x53_c00244{left:211.066667pt;}
.x6_c00244{left:214.800000pt;}
.x82_c00244{left:215.866667pt;}
.x42_c00244{left:217.333333pt;}
.x84_c00244{left:219.066667pt;}
.x14_c00244{left:220.933333pt;}
.x94_c00244{left:222.400000pt;}
.x1e_c00244{left:224.533333pt;}
.x59_c00244{left:228.400000pt;}
.x60_c00244{left:229.333333pt;}
.x2e_c00244{left:232.266667pt;}
.x7f_c00244{left:233.466667pt;}
.x15_c00244{left:236.000000pt;}
.x7_c00244{left:237.466667pt;}
.x1b_c00244{left:239.733333pt;}
.x73_c00244{left:241.466667pt;}
.x3c_c00244{left:243.333333pt;}
.x31_c00244{left:245.066667pt;}
.x37_c00244{left:246.266667pt;}
.x64_c00244{left:247.466667pt;}
.x8_c00244{left:248.400000pt;}
.x80_c00244{left:249.466667pt;}
.x6a_c00244{left:251.333333pt;}
.x16_c00244{left:257.733333pt;}
.x6b_c00244{left:260.666667pt;}
.x61_c00244{left:262.666667pt;}
.x85_c00244{left:263.866667pt;}
.xf_c00244{left:264.800000pt;}
.x1f_c00244{left:266.133333pt;}
.x9_c00244{left:267.333333pt;}
.x54_c00244{left:268.666667pt;}
.x7a_c00244{left:270.266667pt;}
.x8b_c00244{left:271.333333pt;}
.x1c_c00244{left:273.333333pt;}
.x77_c00244{left:274.933333pt;}
.x27_c00244{left:277.866667pt;}
.x38_c00244{left:280.800000pt;}
.x7d_c00244{left:282.400000pt;}
.x3f_c00244{left:284.800000pt;}
.x88_c00244{left:286.666667pt;}
.x20_c00244{left:288.266667pt;}
.x5a_c00244{left:289.200000pt;}
.x1_c00244{left:291.466667pt;}
.x93_c00244{left:293.466667pt;}
.x49_c00244{left:294.666667pt;}
.x7e_c00244{left:295.866667pt;}
.x43_c00244{left:298.266667pt;}
.x55_c00244{left:299.466667pt;}
.x4d_c00244{left:300.400000pt;}
.x10_c00244{left:301.600000pt;}
.x5b_c00244{left:303.600000pt;}
.x90_c00244{left:304.933333pt;}
.xa_c00244{left:307.333333pt;}
.x21_c00244{left:309.333333pt;}
.x17_c00244{left:312.133333pt;}
.x39_c00244{left:313.066667pt;}
.x68_c00244{left:314.000000pt;}
.x8c_c00244{left:314.933333pt;}
.x7c_c00244{left:315.866667pt;}
.x62_c00244{left:316.800000pt;}
.x5e_c00244{left:318.800000pt;}
.x4e_c00244{left:320.266667pt;}
.x11_c00244{left:321.466667pt;}
.x28_c00244{left:324.000000pt;}
.x75_c00244{left:325.733333pt;}
.x18_c00244{left:327.866667pt;}
.x6f_c00244{left:329.733333pt;}
.x40_c00244{left:330.800000pt;}
.x5f_c00244{left:334.133333pt;}
.x89_c00244{left:336.000000pt;}
.x29_c00244{left:338.133333pt;}
.x65_c00244{left:340.266667pt;}
.x32_c00244{left:345.200000pt;}
.xb_c00244{left:346.400000pt;}
.x70_c00244{left:348.000000pt;}
.x4a_c00244{left:349.066667pt;}
.x56_c00244{left:350.400000pt;}
.x78_c00244{left:351.733333pt;}
.x2f_c00244{left:353.866667pt;}
.x66_c00244{left:356.933333pt;}
.x4f_c00244{left:360.266667pt;}
.x44_c00244{left:361.333333pt;}
.x19_c00244{left:365.333333pt;}
.x22_c00244{left:368.266667pt;}
.x50_c00244{left:372.133333pt;}
.x45_c00244{left:373.200000pt;}
.x2a_c00244{left:375.866667pt;}
.x13f_c00244{left:386.533333pt;}
.x124_c00244{left:394.933333pt;}
.x113_c00244{left:395.866667pt;}
.xa1_c00244{left:396.800000pt;}
.xc4_c00244{left:397.733333pt;}
.xf3_c00244{left:401.600000pt;}
.x131_c00244{left:404.933333pt;}
.x119_c00244{left:408.266667pt;}
.xa8_c00244{left:409.466667pt;}
.x111_c00244{left:411.466667pt;}
.x96_c00244{left:412.533333pt;}
.xd3_c00244{left:413.466667pt;}
.x134_c00244{left:420.400000pt;}
.x121_c00244{left:421.866667pt;}
.x132_c00244{left:423.866667pt;}
.x13b_c00244{left:425.333333pt;}
.xd4_c00244{left:427.200000pt;}
.xf6_c00244{left:429.466667pt;}
.x127_c00244{left:431.333333pt;}
.x106_c00244{left:433.066667pt;}
.xa2_c00244{left:436.133333pt;}
.xfa_c00244{left:437.733333pt;}
.x122_c00244{left:439.733333pt;}
.x12e_c00244{left:440.666667pt;}
.xae_c00244{left:442.000000pt;}
.xa0_c00244{left:443.200000pt;}
.x105_c00244{left:444.933333pt;}
.x97_c00244{left:446.133333pt;}
.x11a_c00244{left:447.733333pt;}
.xb2_c00244{left:448.666667pt;}
.xbf_c00244{left:449.600000pt;}
.xca_c00244{left:451.866667pt;}
.x100_c00244{left:453.200000pt;}
.x10d_c00244{left:454.133333pt;}
.xd5_c00244{left:456.266667pt;}
.xa9_c00244{left:458.133333pt;}
.x98_c00244{left:460.266667pt;}
.x114_c00244{left:461.466667pt;}
.x123_c00244{left:463.466667pt;}
.x11b_c00244{left:464.666667pt;}
.xda_c00244{left:465.866667pt;}
.xe9_c00244{left:467.466667pt;}
.xc0_c00244{left:469.066667pt;}
.xf7_c00244{left:470.133333pt;}
.xe5_c00244{left:471.066667pt;}
.xaf_c00244{left:472.400000pt;}
.xb3_c00244{left:473.600000pt;}
.x99_c00244{left:475.333333pt;}
.x125_c00244{left:476.800000pt;}
.xd0_c00244{left:478.800000pt;}
.xc1_c00244{left:480.533333pt;}
.xe7_c00244{left:482.000000pt;}
.xdf_c00244{left:483.466667pt;}
.x115_c00244{left:485.200000pt;}
.xe4_c00244{left:487.066667pt;}
.x112_c00244{left:488.400000pt;}
.xb4_c00244{left:490.933333pt;}
.xea_c00244{left:492.800000pt;}
.x108_c00244{left:494.666667pt;}
.xa3_c00244{left:495.600000pt;}
.x10a_c00244{left:496.533333pt;}
.x11d_c00244{left:497.600000pt;}
.x101_c00244{left:498.666667pt;}
.xfd_c00244{left:500.133333pt;}
.x135_c00244{left:503.466667pt;}
.xdb_c00244{left:505.200000pt;}
.x9a_c00244{left:507.066667pt;}
.xbc_c00244{left:508.533333pt;}
.xc2_c00244{left:510.266667pt;}
.x102_c00244{left:512.133333pt;}
.xe8_c00244{left:514.266667pt;}
.x137_c00244{left:515.200000pt;}
.xc5_c00244{left:516.533333pt;}
.xd1_c00244{left:519.733333pt;}
.xf4_c00244{left:520.666667pt;}
.xcb_c00244{left:522.266667pt;}
.x9b_c00244{left:523.333333pt;}
.xeb_c00244{left:524.533333pt;}
.xc3_c00244{left:526.533333pt;}
.x10e_c00244{left:528.000000pt;}
.xef_c00244{left:529.066667pt;}
.xbd_c00244{left:530.266667pt;}
.xff_c00244{left:531.333333pt;}
.xfe_c00244{left:532.400000pt;}
.x13d_c00244{left:533.733333pt;}
.xf5_c00244{left:536.266667pt;}
.xa4_c00244{left:537.466667pt;}
.xb5_c00244{left:540.533333pt;}
.x116_c00244{left:541.600000pt;}
.x136_c00244{left:542.533333pt;}
.xec_c00244{left:543.466667pt;}
.x10f_c00244{left:546.533333pt;}
.xaa_c00244{left:548.133333pt;}
.xbe_c00244{left:549.466667pt;}
.xe0_c00244{left:550.400000pt;}
.x12b_c00244{left:552.533333pt;}
.xc6_c00244{left:554.266667pt;}
.xf8_c00244{left:559.066667pt;}
.xb6_c00244{left:560.666667pt;}
.xa5_c00244{left:562.133333pt;}
.x138_c00244{left:563.200000pt;}
.xab_c00244{left:565.466667pt;}
.x12c_c00244{left:566.666667pt;}
.x13a_c00244{left:568.266667pt;}
.xfb_c00244{left:570.133333pt;}
.x117_c00244{left:571.333333pt;}
.x109_c00244{left:572.400000pt;}
.xcc_c00244{left:573.466667pt;}
.xe6_c00244{left:574.400000pt;}
.xb7_c00244{left:576.933333pt;}
.x11e_c00244{left:578.933333pt;}
.xe1_c00244{left:580.800000pt;}
.x11c_c00244{left:582.133333pt;}
.x12d_c00244{left:586.133333pt;}
.x118_c00244{left:587.066667pt;}
.xac_c00244{left:588.133333pt;}
.x133_c00244{left:589.866667pt;}
.x9c_c00244{left:593.466667pt;}
.x11f_c00244{left:594.666667pt;}
.xc7_c00244{left:596.533333pt;}
.x13c_c00244{left:598.000000pt;}
.xb8_c00244{left:599.333333pt;}
.xdc_c00244{left:601.200000pt;}
.xa6_c00244{left:602.400000pt;}
.xed_c00244{left:604.533333pt;}
.xb9_c00244{left:609.200000pt;}
.x128_c00244{left:613.733333pt;}
.xdd_c00244{left:614.933333pt;}
.x107_c00244{left:616.133333pt;}
.xd6_c00244{left:617.200000pt;}
.xf0_c00244{left:619.066667pt;}
.x10b_c00244{left:620.266667pt;}
.xf9_c00244{left:622.400000pt;}
.xe2_c00244{left:623.333333pt;}
.xba_c00244{left:625.466667pt;}
.x9d_c00244{left:626.400000pt;}
.xc8_c00244{left:627.600000pt;}
.xb0_c00244{left:628.800000pt;}
.xd7_c00244{left:630.000000pt;}
.xcd_c00244{left:631.066667pt;}
.x103_c00244{left:632.533333pt;}
.x12f_c00244{left:634.533333pt;}
.x120_c00244{left:635.600000pt;}
.x10c_c00244{left:637.200000pt;}
.xce_c00244{left:638.800000pt;}
.xa7_c00244{left:639.866667pt;}
.x126_c00244{left:642.266667pt;}
.x129_c00244{left:643.466667pt;}
.xfc_c00244{left:644.400000pt;}
.xd2_c00244{left:649.333333pt;}
.xe3_c00244{left:650.533333pt;}
.xd8_c00244{left:651.466667pt;}
.x9e_c00244{left:652.933333pt;}
.xf1_c00244{left:654.133333pt;}
.xbb_c00244{left:658.800000pt;}
.xb1_c00244{left:661.066667pt;}
.x110_c00244{left:662.666667pt;}
.xcf_c00244{left:664.666667pt;}
.x104_c00244{left:666.400000pt;}
.x139_c00244{left:667.866667pt;}
.x2_c00244{left:670.400000pt;}
.xc9_c00244{left:674.666667pt;}
.x13e_c00244{left:675.866667pt;}
.xad_c00244{left:677.733333pt;}
.xf2_c00244{left:680.666667pt;}
.xd9_c00244{left:681.866667pt;}
.x12a_c00244{left:682.800000pt;}
.xde_c00244{left:684.400000pt;}
.x9f_c00244{left:685.866667pt;}
.x130_c00244{left:687.866667pt;}
.xee_c00244{left:695.466667pt;}
}





/* 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_c00245 {
    display:none;
  }
  .loading-indicator_c00245.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00245 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_c00245 { 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_c00245" -> "#page-container .classname_c00245")
 */
.pf_c00245 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00245 { /* 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_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00245 { /* 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_c00245 { /* 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_c00245 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00245 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00245 {overflow:visible;}
  }
}
.c_c00245 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00245 { /* 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_c00245:after { /* webkit #35443 */
  content: '';
}
.t_c00245:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00245 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 */
}
.__c00245 { /* 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_c00245 { /* info for Javascript */
  display:none;
}
.l_c00245 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00245 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00245 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00245: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_c00245 {
    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_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00245.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_c00245 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00245;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.000000;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;}
.mff_c00245{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00245{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00245{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m95_c00245{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mde_c00245{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00245{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00245{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00245{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.md4_c00245{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00245{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md5_c00245{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m91_c00245{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md8_c00245{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.me2_c00245{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00245{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00245{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m40_c00245{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00245{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00245{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m111_c00245{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m60_c00245{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00245{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m122_c00245{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mab_c00245{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.mda_c00245{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m105_c00245{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00245{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00245{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00245{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00245{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00245{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m98_c00245{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3_c00245{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mce_c00245{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00245{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00245{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00245{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m84_c00245{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m16_c00245{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m34_c00245{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9_c00245{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m54_c00245{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m106_c00245{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00245{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mc_c00245{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m24_c00245{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00245{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m97_c00245{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m38_c00245{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.md2_c00245{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me1_c00245{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00245{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m93_c00245{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m78_c00245{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4_c00245{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00245{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00245{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00245{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m70_c00245{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m23_c00245{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00245{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m58_c00245{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m88_c00245{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m29_c00245{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00245{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m87_c00245{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00245{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m119_c00245{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00245{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m71_c00245{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m99_c00245{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00245{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m102_c00245{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m116_c00245{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m81_c00245{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00245{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m22_c00245{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5_c00245{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf_c00245{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m92_c00245{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m101_c00245{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m39_c00245{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00245{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m51_c00245{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00245{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m107_c00245{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m62_c00245{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00245{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m32_c00245{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mba_c00245{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00245{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m53_c00245{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m36_c00245{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m50_c00245{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m19_c00245{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mee_c00245{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m83_c00245{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00245{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00245{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m103_c00245{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m18_c00245{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00245{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m7_c00245{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00245{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00245{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md1_c00245{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m14_c00245{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00245{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m69_c00245{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m108_c00245{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m44_c00245{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m57_c00245{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00245{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mae_c00245{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00245{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m42_c00245{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00245{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m121_c00245{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m115_c00245{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m76_c00245{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00245{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m77_c00245{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m31_c00245{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m117_c00245{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00245{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00245{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10_c00245{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mef_c00245{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00245{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00245{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00245{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00245{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.md_c00245{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m17_c00245{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00245{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00245{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m21_c00245{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00245{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00245{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00245{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8_c00245{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m45_c00245{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m52_c00245{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m63_c00245{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00245{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00245{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6_c00245{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m33_c00245{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m75_c00245{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00245{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00245{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00245{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00245{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m120_c00245{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m86_c00245{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m67_c00245{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00245{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00245{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m20_c00245{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mad_c00245{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00245{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00245{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00245{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00245{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.maa_c00245{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m27_c00245{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00245{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m73_c00245{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m79_c00245{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m37_c00245{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m13_c00245{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00245{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m55_c00245{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md3_c00245{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m15_c00245{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m46_c00245{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.med_c00245{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m64_c00245{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00245{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m25_c00245{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me9_c00245{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m59_c00245{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00245{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00245{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00245{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00245{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00245{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m26_c00245{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00245{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00245{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m66_c00245{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00245{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00245{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m114_c00245{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me0_c00245{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m85_c00245{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00245{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m80_c00245{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m68_c00245{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.me_c00245{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m41_c00245{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00245{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00245{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m35_c00245{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00245{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00245{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00245{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00245{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m110_c00245{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md7_c00245{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma_c00245{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m96_c00245{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m89_c00245{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m28_c00245{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m90_c00245{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md0_c00245{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00245{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m118_c00245{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb_c00245{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m30_c00245{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00245{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m104_c00245{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m12_c00245{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00245{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m113_c00245{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m112_c00245{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mac_c00245{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00245{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00245{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00245{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00245{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00245{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me8_c00245{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.maf_c00245{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);}
.mca_c00245{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00245{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00245{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m49_c00245{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00245{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m48_c00245{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.me6_c00245{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00245{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.me5_c00245{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00245{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00245{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.me7_c00245{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00245{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m56_c00245{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00245{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m72_c00245{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.meb_c00245{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00245{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mec_c00245{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00245{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m94_c00245{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00245{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m74_c00245{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00245{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m109_c00245{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00245{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mea_c00245{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00245{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00245{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00245{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00245{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00245{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m100_c00245{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00245{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00245{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00245{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00245{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me4_c00245{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00245{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00245{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00245{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00245{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m82_c00245{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m65_c00245{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00245{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m61_c00245{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00245{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00245{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m43_c00245{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m47_c00245{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00245{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.me3_c00245{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.md6_c00245{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md9_c00245{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.484250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484250,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls0_c00245{letter-spacing:0.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{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__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00245{word-spacing:-7.352941px;}
.ws2_c00245{word-spacing:-3.756333px;}
.ws0_c00245{word-spacing:-3.307600px;}
.wsf_c00245{word-spacing:0.000000px;}
.wsc_c00245{word-spacing:11.875000px;}
.ws9_c00245{word-spacing:15.000000px;}
.ws1_c00245{word-spacing:16.710602px;}
.wsd_c00245{word-spacing:18.125000px;}
.ws3_c00245{word-spacing:25.714286px;}
.wsb_c00245{word-spacing:29.285714px;}
.ws8_c00245{word-spacing:32.360656px;}
.ws7_c00245{word-spacing:32.473282px;}
.ws4_c00245{word-spacing:38.214286px;}
.ws5_c00245{word-spacing:39.343511px;}
.ws6_c00245{word-spacing:43.923664px;}
.wse_c00245{word-spacing:152.500000px;}
._0_c00245{width:59.285714px;}
._1_c00245{width:88.374046px;}
.fc0_c00245{color:transparent;}
.fs3_c00245{font-size:54.000000px;}
.fs2_c00245{font-size:60.000000px;}
.fs1_c00245{font-size:66.000000px;}
.fs4_c00245{font-size:72.000000px;}
.fs0_c00245{font-size:78.000000px;}
.y0_c00245{bottom:0.000000px;}
.y66_c00245{bottom:193.050000px;}
.y32_c00245{bottom:194.400000px;}
.y65_c00245{bottom:211.350000px;}
.y31_c00245{bottom:212.400000px;}
.y64_c00245{bottom:229.050000px;}
.y30_c00245{bottom:230.100000px;}
.y63_c00245{bottom:247.050000px;}
.y2f_c00245{bottom:248.100000px;}
.y62_c00245{bottom:264.300000px;}
.y2e_c00245{bottom:265.350000px;}
.y61_c00245{bottom:282.300000px;}
.y2d_c00245{bottom:282.600000px;}
.y60_c00245{bottom:304.050000px;}
.y2c_c00245{bottom:308.850000px;}
.y5f_c00245{bottom:322.050000px;}
.y2b_c00245{bottom:330.150000px;}
.y5e_c00245{bottom:340.800000px;}
.y2a_c00245{bottom:354.300000px;}
.y5d_c00245{bottom:358.500000px;}
.y29_c00245{bottom:372.300000px;}
.y5c_c00245{bottom:376.200000px;}
.y28_c00245{bottom:390.600000px;}
.y5b_c00245{bottom:394.200000px;}
.y5a_c00245{bottom:411.900000px;}
.y27_c00245{bottom:412.500000px;}
.y59_c00245{bottom:429.450000px;}
.y26_c00245{bottom:430.500000px;}
.y25_c00245{bottom:452.850000px;}
.y58_c00245{bottom:454.350000px;}
.y57_c00245{bottom:468.750000px;}
.y24_c00245{bottom:475.200000px;}
.y56_c00245{bottom:483.150000px;}
.y23_c00245{bottom:492.900000px;}
.y55_c00245{bottom:497.550000px;}
.y22_c00245{bottom:510.900000px;}
.y54_c00245{bottom:517.650000px;}
.y21_c00245{bottom:532.500000px;}
.y53_c00245{bottom:535.650000px;}
.y20_c00245{bottom:554.850000px;}
.y52_c00245{bottom:557.700000px;}
.y1f_c00245{bottom:572.850000px;}
.y51_c00245{bottom:575.700000px;}
.y1e_c00245{bottom:590.100000px;}
.y50_c00245{bottom:592.950000px;}
.y1d_c00245{bottom:608.100000px;}
.y4f_c00245{bottom:615.300000px;}
.y1c_c00245{bottom:626.100000px;}
.y4e_c00245{bottom:632.850000px;}
.y1b_c00245{bottom:643.350000px;}
.y1a_c00245{bottom:661.350000px;}
.y4d_c00245{bottom:663.750000px;}
.y19_c00245{bottom:679.350000px;}
.y4c_c00245{bottom:681.750000px;}
.y18_c00245{bottom:697.050000px;}
.y4b_c00245{bottom:699.750000px;}
.y17_c00245{bottom:715.350000px;}
.y4a_c00245{bottom:717.750000px;}
.y49_c00245{bottom:735.450000px;}
.y16_c00245{bottom:735.900000px;}
.y48_c00245{bottom:753.150000px;}
.y15_c00245{bottom:756.000000px;}
.y14_c00245{bottom:774.000000px;}
.y47_c00245{bottom:775.500000px;}
.y46_c00245{bottom:793.500000px;}
.y13_c00245{bottom:795.900000px;}
.y45_c00245{bottom:810.900000px;}
.y12_c00245{bottom:813.600000px;}
.y44_c00245{bottom:828.600000px;}
.y11_c00245{bottom:831.600000px;}
.y43_c00245{bottom:846.600000px;}
.y10_c00245{bottom:849.300000px;}
.y42_c00245{bottom:864.600000px;}
.yf_c00245{bottom:871.200000px;}
.y41_c00245{bottom:882.300000px;}
.ye_c00245{bottom:898.200000px;}
.y40_c00245{bottom:900.300000px;}
.yd_c00245{bottom:915.900000px;}
.y3f_c00245{bottom:918.300000px;}
.yc_c00245{bottom:934.200000px;}
.y3e_c00245{bottom:936.000000px;}
.y3d_c00245{bottom:954.000000px;}
.yb_c00245{bottom:955.800000px;}
.y3c_c00245{bottom:971.700000px;}
.ya_c00245{bottom:978.300000px;}
.y3b_c00245{bottom:989.250000px;}
.y9_c00245{bottom:996.300000px;}
.y3a_c00245{bottom:1009.350000px;}
.y8_c00245{bottom:1014.000000px;}
.y39_c00245{bottom:1023.450000px;}
.y7_c00245{bottom:1031.700000px;}
.y38_c00245{bottom:1037.850000px;}
.y6_c00245{bottom:1049.400000px;}
.y37_c00245{bottom:1052.250000px;}
.y36_c00245{bottom:1066.650000px;}
.y5_c00245{bottom:1067.400000px;}
.y35_c00245{bottom:1081.500000px;}
.y4_c00245{bottom:1085.100000px;}
.y34_c00245{bottom:1101.600000px;}
.y3_c00245{bottom:1103.100000px;}
.y33_c00245{bottom:1119.300000px;}
.y2_c00245{bottom:1120.350000px;}
.y1_c00245{bottom:1146.600000px;}
.h4_c00245{height:54.000000px;}
.h3_c00245{height:60.000000px;}
.h2_c00245{height:66.000000px;}
.h5_c00245{height:72.000000px;}
.h1_c00245{height:78.000000px;}
.h0_c00245{height:1269.000000px;}
.w1_c00245{width:963.000000px;}
.w0_c00245{width:963.359985px;}
.x0_c00245{left:0.000000px;}
.xa2_c00245{left:182.550000px;}
.x98_c00245{left:186.150000px;}
.x5e_c00245{left:187.500000px;}
.x52_c00245{left:188.700000px;}
.x35_c00245{left:189.750000px;}
.x1_c00245{left:191.850000px;}
.xa3_c00245{left:193.050000px;}
.x90_c00245{left:194.250000px;}
.x89_c00245{left:204.450000px;}
.x68_c00245{left:205.650000px;}
.x48_c00245{left:206.850000px;}
.x34_c00245{left:208.050000px;}
.xb_c00245{left:209.100000px;}
.x97_c00245{left:222.000000px;}
.xa0_c00245{left:223.200000px;}
.x8d_c00245{left:224.250000px;}
.x44_c00245{left:226.500000px;}
.x9d_c00245{left:227.550000px;}
.x7d_c00245{left:230.400000px;}
.x53_c00245{left:232.200000px;}
.x71_c00245{left:234.600000px;}
.x80_c00245{left:238.950000px;}
.x14_c00245{left:240.750000px;}
.x2d_c00245{left:241.800000px;}
.x99_c00245{left:243.750000px;}
.xc_c00245{left:244.800000px;}
.x5f_c00245{left:246.600000px;}
.x84_c00245{left:249.150000px;}
.x36_c00245{left:251.700000px;}
.x5a_c00245{left:254.400000px;}
.x9b_c00245{left:255.750000px;}
.x69_c00245{left:257.100000px;}
.xa1_c00245{left:258.150000px;}
.xd_c00245{left:259.200000px;}
.x9e_c00245{left:260.700000px;}
.x1b_c00245{left:262.200000px;}
.x94_c00245{left:265.200000px;}
.x8a_c00245{left:266.400000px;}
.x8e_c00245{left:267.900000px;}
.x40_c00245{left:269.550000px;}
.x75_c00245{left:271.200000px;}
.x45_c00245{left:272.250000px;}
.x3b_c00245{left:274.650000px;}
.x15_c00245{left:277.050000px;}
.x3_c00245{left:278.700000px;}
.x24_c00245{left:280.200000px;}
.x60_c00245{left:283.350000px;}
.x66_c00245{left:287.250000px;}
.x4d_c00245{left:288.300000px;}
.x76_c00245{left:290.700000px;}
.xa4_c00245{left:292.350000px;}
.x85_c00245{left:294.900000px;}
.x54_c00245{left:295.950000px;}
.x4_c00245{left:297.750000px;}
.x5b_c00245{left:301.500000px;}
.x1c_c00245{left:304.350000px;}
.x21_c00245{left:306.150000px;}
.x49_c00245{left:308.700000px;}
.x25_c00245{left:311.100000px;}
.x5_c00245{left:312.450000px;}
.x16_c00245{left:314.100000px;}
.x95_c00245{left:316.350000px;}
.x61_c00245{left:317.550000px;}
.x41_c00245{left:319.200000px;}
.x26_c00245{left:320.850000px;}
.x77_c00245{left:322.800000px;}
.x28_c00245{left:324.750000px;}
.x1d_c00245{left:327.450000px;}
.x9a_c00245{left:329.400000px;}
.x9c_c00245{left:332.100000px;}
.x2e_c00245{left:333.600000px;}
.xe_c00245{left:338.700000px;}
.x4a_c00245{left:342.150000px;}
.x3c_c00245{left:343.800000px;}
.xa5_c00245{left:345.300000px;}
.x17_c00245{left:346.800000px;}
.x6_c00245{left:348.750000px;}
.x93_c00245{left:350.250000px;}
.x46_c00245{left:351.900000px;}
.x2f_c00245{left:354.450000px;}
.x1e_c00245{left:356.250000px;}
.xf_c00245{left:357.750000px;}
.x8f_c00245{left:359.700000px;}
.x72_c00245{left:361.350000px;}
.x37_c00245{left:362.550000px;}
.x29_c00245{left:363.600000px;}
.x42_c00245{left:364.950000px;}
.x7_c00245{left:368.550000px;}
.x7e_c00245{left:370.050000px;}
.x6a_c00245{left:371.250000px;}
.x7b_c00245{left:372.600000px;}
.x18_c00245{left:373.800000px;}
.x55_c00245{left:375.600000px;}
.x22_c00245{left:377.100000px;}
.x78_c00245{left:378.300000px;}
.x10_c00245{left:380.100000px;}
.x2a_c00245{left:383.400000px;}
.x4f_c00245{left:384.900000px;}
.x30_c00245{left:386.100000px;}
.x6b_c00245{left:387.150000px;}
.x4e_c00245{left:388.500000px;}
.x81_c00245{left:390.900000px;}
.x63_c00245{left:393.150000px;}
.x86_c00245{left:396.750000px;}
.x27_c00245{left:399.300000px;}
.x4b_c00245{left:400.800000px;}
.x5c_c00245{left:402.000000px;}
.x56_c00245{left:404.100000px;}
.x62_c00245{left:405.750000px;}
.x96_c00245{left:407.100000px;}
.x3d_c00245{left:409.650000px;}
.x43_c00245{left:410.700000px;}
.x7c_c00245{left:412.200000px;}
.x5d_c00245{left:413.850000px;}
.x38_c00245{left:415.500000px;}
.x19_c00245{left:417.750000px;}
.x1f_c00245{left:419.550000px;}
.x6e_c00245{left:422.100000px;}
.x79_c00245{left:423.600000px;}
.x31_c00245{left:424.650000px;}
.x8_c00245{left:426.900000px;}
.x2b_c00245{left:430.500000px;}
.x9f_c00245{left:431.700000px;}
.x2_c00245{left:432.750000px;}
.x91_c00245{left:435.150000px;}
.x20_c00245{left:439.650000px;}
.x3e_c00245{left:441.750000px;}
.x57_c00245{left:443.700000px;}
.x11_c00245{left:445.200000px;}
.x50_c00245{left:448.200000px;}
.x32_c00245{left:449.550000px;}
.x73_c00245{left:450.600000px;}
.x6f_c00245{left:451.950000px;}
.x23_c00245{left:454.200000px;}
.x8b_c00245{left:455.250000px;}
.x39_c00245{left:458.250000px;}
.x9_c00245{left:460.050000px;}
.x7f_c00245{left:462.600000px;}
.x1a_c00245{left:464.550000px;}
.x64_c00245{left:465.900000px;}
.x82_c00245{left:469.050000px;}
.x3f_c00245{left:472.050000px;}
.x8c_c00245{left:474.000000px;}
.x58_c00245{left:475.350000px;}
.xa_c00245{left:477.000000px;}
.x6c_c00245{left:478.200000px;}
.x2c_c00245{left:479.400000px;}
.x70_c00245{left:480.450000px;}
.x87_c00245{left:482.400000px;}
.x92_c00245{left:484.500000px;}
.x12_c00245{left:485.850000px;}
.x33_c00245{left:487.050000px;}
.x67_c00245{left:488.250000px;}
.x51_c00245{left:490.350000px;}
.x4c_c00245{left:491.400000px;}
.x59_c00245{left:493.050000px;}
.x83_c00245{left:494.550000px;}
.x47_c00245{left:496.950000px;}
.x6d_c00245{left:500.100000px;}
.x88_c00245{left:504.300000px;}
.x13_c00245{left:506.700000px;}
.x65_c00245{left:508.050000px;}
.x3a_c00245{left:510.750000px;}
.x74_c00245{left:512.850000px;}
.x7a_c00245{left:513.900000px;}
.x12c_c00245{left:542.550000px;}
.x115_c00245{left:543.600000px;}
.xa6_c00245{left:545.100000px;}
.x135_c00245{left:555.900000px;}
.xb7_c00245{left:558.300000px;}
.x122_c00245{left:559.350000px;}
.xf7_c00245{left:561.000000px;}
.xad_c00245{left:562.350000px;}
.xca_c00245{left:571.200000px;}
.xd4_c00245{left:572.700000px;}
.x12d_c00245{left:575.250000px;}
.x147_c00245{left:577.050000px;}
.x129_c00245{left:578.250000px;}
.x101_c00245{left:581.100000px;}
.x11b_c00245{left:582.150000px;}
.x126_c00245{left:583.800000px;}
.x118_c00245{left:585.300000px;}
.xeb_c00245{left:586.650000px;}
.xa7_c00245{left:589.800000px;}
.x128_c00245{left:591.150000px;}
.xcb_c00245{left:592.800000px;}
.xd5_c00245{left:594.600000px;}
.x111_c00245{left:596.400000px;}
.xbd_c00245{left:597.600000px;}
.x141_c00245{left:598.650000px;}
.x13e_c00245{left:600.300000px;}
.xae_c00245{left:602.250000px;}
.x131_c00245{left:603.300000px;}
.xfc_c00245{left:604.350000px;}
.x106_c00245{left:606.450000px;}
.xaf_c00245{left:607.650000px;}
.x125_c00245{left:609.750000px;}
.xcc_c00245{left:611.850000px;}
.xd6_c00245{left:613.350000px;}
.xec_c00245{left:614.400000px;}
.xbe_c00245{left:616.650000px;}
.xb8_c00245{left:618.450000px;}
.xf8_c00245{left:620.400000px;}
.x11c_c00245{left:621.450000px;}
.x10a_c00245{left:623.250000px;}
.xcd_c00245{left:625.500000px;}
.xe0_c00245{left:627.000000px;}
.xd7_c00245{left:628.050000px;}
.x11d_c00245{left:629.400000px;}
.xbf_c00245{left:632.100000px;}
.xf2_c00245{left:634.800000px;}
.x13f_c00245{left:636.600000px;}
.x12b_c00245{left:641.550000px;}
.xff_c00245{left:642.600000px;}
.xe1_c00245{left:644.250000px;}
.xe7_c00245{left:647.550000px;}
.x10b_c00245{left:649.500000px;}
.x107_c00245{left:650.700000px;}
.xb9_c00245{left:651.900000px;}
.x112_c00245{left:653.700000px;}
.x119_c00245{left:655.200000px;}
.xa8_c00245{left:657.450000px;}
.x102_c00245{left:659.550000px;}
.x13a_c00245{left:660.900000px;}
.x12a_c00245{left:664.200000px;}
.xfd_c00245{left:665.250000px;}
.xce_c00245{left:666.600000px;}
.xf3_c00245{left:669.750000px;}
.x136_c00245{left:671.550000px;}
.xba_c00245{left:673.500000px;}
.xb0_c00245{left:675.000000px;}
.xe2_c00245{left:676.650000px;}
.xe8_c00245{left:679.950000px;}
.xc0_c00245{left:681.450000px;}
.xed_c00245{left:683.850000px;}
.x137_c00245{left:685.950000px;}
.xcf_c00245{left:687.150000px;}
.xfe_c00245{left:688.350000px;}
.x127_c00245{left:689.550000px;}
.x132_c00245{left:691.800000px;}
.xee_c00245{left:692.850000px;}
.x11f_c00245{left:694.050000px;}
.x148_c00245{left:695.100000px;}
.xc1_c00245{left:696.150000px;}
.x142_c00245{left:698.100000px;}
.xb1_c00245{left:699.150000px;}
.x149_c00245{left:700.350000px;}
.xd8_c00245{left:701.550000px;}
.xc2_c00245{left:702.600000px;}
.x144_c00245{left:703.650000px;}
.x104_c00245{left:706.650000px;}
.xa9_c00245{left:708.150000px;}
.x116_c00245{left:710.400000px;}
.x10f_c00245{left:712.800000px;}
.x123_c00245{left:714.450000px;}
.xd9_c00245{left:715.950000px;}
.xc3_c00245{left:717.300000px;}
.x103_c00245{left:718.950000px;}
.x145_c00245{left:720.600000px;}
.xef_c00245{left:721.650000px;}
.xda_c00245{left:723.150000px;}
.xbb_c00245{left:724.950000px;}
.x105_c00245{left:726.750000px;}
.x12e_c00245{left:729.750000px;}
.xc4_c00245{left:731.700000px;}
.xf4_c00245{left:733.800000px;}
.xd0_c00245{left:736.050000px;}
.xdb_c00245{left:737.550000px;}
.xb2_c00245{left:739.500000px;}
.x140_c00245{left:740.550000px;}
.xaa_c00245{left:741.600000px;}
.x113_c00245{left:743.100000px;}
.xe3_c00245{left:744.450000px;}
.xc5_c00245{left:746.100000px;}
.xd1_c00245{left:748.350000px;}
.xb3_c00245{left:751.050000px;}
.xc6_c00245{left:754.050000px;}
.x14d_c00245{left:755.250000px;}
.x10c_c00245{left:756.300000px;}
.x100_c00245{left:757.800000px;}
.xdc_c00245{left:759.150000px;}
.xc7_c00245{left:760.200000px;}
.xf9_c00245{left:762.150000px;}
.xf0_c00245{left:764.850000px;}
.xdd_c00245{left:767.400000px;}
.xe9_c00245{left:769.950000px;}
.x120_c00245{left:771.450000px;}
.xbc_c00245{left:772.500000px;}
.xde_c00245{left:773.850000px;}
.x11e_c00245{left:778.050000px;}
.xe4_c00245{left:780.900000px;}
.xfa_c00245{left:781.950000px;}
.x14b_c00245{left:783.150000px;}
.x108_c00245{left:786.300000px;}
.xdf_c00245{left:788.850000px;}
.xf5_c00245{left:791.100000px;}
.x10d_c00245{left:794.400000px;}
.x13b_c00245{left:796.050000px;}
.x11a_c00245{left:797.850000px;}
.xb4_c00245{left:800.700000px;}
.x143_c00245{left:801.750000px;}
.x138_c00245{left:805.800000px;}
.xd2_c00245{left:808.050000px;}
.x14f_c00245{left:809.850000px;}
.xc8_c00245{left:810.900000px;}
.x117_c00245{left:812.700000px;}
.x12f_c00245{left:815.100000px;}
.xab_c00245{left:816.450000px;}
.xe5_c00245{left:819.600000px;}
.x14a_c00245{left:821.550000px;}
.xf1_c00245{left:823.500000px;}
.x14c_c00245{left:824.850000px;}
.x133_c00245{left:826.050000px;}
.xf6_c00245{left:827.850000px;}
.x121_c00245{left:829.050000px;}
.xb5_c00245{left:831.600000px;}
.x146_c00245{left:834.150000px;}
.x139_c00245{left:835.200000px;}
.x114_c00245{left:837.000000px;}
.xd3_c00245{left:838.650000px;}
.x10e_c00245{left:840.900000px;}
.x13d_c00245{left:845.550000px;}
.xea_c00245{left:848.100000px;}
.x13c_c00245{left:849.300000px;}
.xe6_c00245{left:851.250000px;}
.x14e_c00245{left:854.250000px;}
.x124_c00245{left:855.300000px;}
.x110_c00245{left:856.650000px;}
.xfb_c00245{left:857.850000px;}
.x109_c00245{left:859.800000px;}
.x134_c00245{left:861.300000px;}
.xb6_c00245{left:864.300000px;}
.xc9_c00245{left:866.400000px;}
.xac_c00245{left:868.350000px;}
.x130_c00245{left:872.700000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.wsa_c00245{word-spacing:-6.535948pt;}
.ws2_c00245{word-spacing:-3.338963pt;}
.ws0_c00245{word-spacing:-2.940088pt;}
.wsf_c00245{word-spacing:0.000000pt;}
.wsc_c00245{word-spacing:10.555556pt;}
.ws9_c00245{word-spacing:13.333333pt;}
.ws1_c00245{word-spacing:14.853868pt;}
.wsd_c00245{word-spacing:16.111111pt;}
.ws3_c00245{word-spacing:22.857143pt;}
.wsb_c00245{word-spacing:26.031746pt;}
.ws8_c00245{word-spacing:28.765027pt;}
.ws7_c00245{word-spacing:28.865140pt;}
.ws4_c00245{word-spacing:33.968254pt;}
.ws5_c00245{word-spacing:34.972010pt;}
.ws6_c00245{word-spacing:39.043257pt;}
.wse_c00245{word-spacing:135.555556pt;}
._0_c00245{width:52.698413pt;}
._1_c00245{width:78.554707pt;}
.fs3_c00245{font-size:48.000000pt;}
.fs2_c00245{font-size:53.333333pt;}
.fs1_c00245{font-size:58.666667pt;}
.fs4_c00245{font-size:64.000000pt;}
.fs0_c00245{font-size:69.333333pt;}
.y0_c00245{bottom:0.000000pt;}
.y66_c00245{bottom:171.600000pt;}
.y32_c00245{bottom:172.800000pt;}
.y65_c00245{bottom:187.866667pt;}
.y31_c00245{bottom:188.800000pt;}
.y64_c00245{bottom:203.600000pt;}
.y30_c00245{bottom:204.533333pt;}
.y63_c00245{bottom:219.600000pt;}
.y2f_c00245{bottom:220.533333pt;}
.y62_c00245{bottom:234.933333pt;}
.y2e_c00245{bottom:235.866667pt;}
.y61_c00245{bottom:250.933333pt;}
.y2d_c00245{bottom:251.200000pt;}
.y60_c00245{bottom:270.266667pt;}
.y2c_c00245{bottom:274.533333pt;}
.y5f_c00245{bottom:286.266667pt;}
.y2b_c00245{bottom:293.466667pt;}
.y5e_c00245{bottom:302.933333pt;}
.y2a_c00245{bottom:314.933333pt;}
.y5d_c00245{bottom:318.666667pt;}
.y29_c00245{bottom:330.933333pt;}
.y5c_c00245{bottom:334.400000pt;}
.y28_c00245{bottom:347.200000pt;}
.y5b_c00245{bottom:350.400000pt;}
.y5a_c00245{bottom:366.133333pt;}
.y27_c00245{bottom:366.666667pt;}
.y59_c00245{bottom:381.733333pt;}
.y26_c00245{bottom:382.666667pt;}
.y25_c00245{bottom:402.533333pt;}
.y58_c00245{bottom:403.866667pt;}
.y57_c00245{bottom:416.666667pt;}
.y24_c00245{bottom:422.400000pt;}
.y56_c00245{bottom:429.466667pt;}
.y23_c00245{bottom:438.133333pt;}
.y55_c00245{bottom:442.266667pt;}
.y22_c00245{bottom:454.133333pt;}
.y54_c00245{bottom:460.133333pt;}
.y21_c00245{bottom:473.333333pt;}
.y53_c00245{bottom:476.133333pt;}
.y20_c00245{bottom:493.200000pt;}
.y52_c00245{bottom:495.733333pt;}
.y1f_c00245{bottom:509.200000pt;}
.y51_c00245{bottom:511.733333pt;}
.y1e_c00245{bottom:524.533333pt;}
.y50_c00245{bottom:527.066667pt;}
.y1d_c00245{bottom:540.533333pt;}
.y4f_c00245{bottom:546.933333pt;}
.y1c_c00245{bottom:556.533333pt;}
.y4e_c00245{bottom:562.533333pt;}
.y1b_c00245{bottom:571.866667pt;}
.y1a_c00245{bottom:587.866667pt;}
.y4d_c00245{bottom:590.000000pt;}
.y19_c00245{bottom:603.866667pt;}
.y4c_c00245{bottom:606.000000pt;}
.y18_c00245{bottom:619.600000pt;}
.y4b_c00245{bottom:622.000000pt;}
.y17_c00245{bottom:635.866667pt;}
.y4a_c00245{bottom:638.000000pt;}
.y49_c00245{bottom:653.733333pt;}
.y16_c00245{bottom:654.133333pt;}
.y48_c00245{bottom:669.466667pt;}
.y15_c00245{bottom:672.000000pt;}
.y14_c00245{bottom:688.000000pt;}
.y47_c00245{bottom:689.333333pt;}
.y46_c00245{bottom:705.333333pt;}
.y13_c00245{bottom:707.466667pt;}
.y45_c00245{bottom:720.800000pt;}
.y12_c00245{bottom:723.200000pt;}
.y44_c00245{bottom:736.533333pt;}
.y11_c00245{bottom:739.200000pt;}
.y43_c00245{bottom:752.533333pt;}
.y10_c00245{bottom:754.933333pt;}
.y42_c00245{bottom:768.533333pt;}
.yf_c00245{bottom:774.400000pt;}
.y41_c00245{bottom:784.266667pt;}
.ye_c00245{bottom:798.400000pt;}
.y40_c00245{bottom:800.266667pt;}
.yd_c00245{bottom:814.133333pt;}
.y3f_c00245{bottom:816.266667pt;}
.yc_c00245{bottom:830.400000pt;}
.y3e_c00245{bottom:832.000000pt;}
.y3d_c00245{bottom:848.000000pt;}
.yb_c00245{bottom:849.600000pt;}
.y3c_c00245{bottom:863.733333pt;}
.ya_c00245{bottom:869.600000pt;}
.y3b_c00245{bottom:879.333333pt;}
.y9_c00245{bottom:885.600000pt;}
.y3a_c00245{bottom:897.200000pt;}
.y8_c00245{bottom:901.333333pt;}
.y39_c00245{bottom:909.733333pt;}
.y7_c00245{bottom:917.066667pt;}
.y38_c00245{bottom:922.533333pt;}
.y6_c00245{bottom:932.800000pt;}
.y37_c00245{bottom:935.333333pt;}
.y36_c00245{bottom:948.133333pt;}
.y5_c00245{bottom:948.800000pt;}
.y35_c00245{bottom:961.333333pt;}
.y4_c00245{bottom:964.533333pt;}
.y34_c00245{bottom:979.200000pt;}
.y3_c00245{bottom:980.533333pt;}
.y33_c00245{bottom:994.933333pt;}
.y2_c00245{bottom:995.866667pt;}
.y1_c00245{bottom:1019.200000pt;}
.h4_c00245{height:48.000000pt;}
.h3_c00245{height:53.333333pt;}
.h2_c00245{height:58.666667pt;}
.h5_c00245{height:64.000000pt;}
.h1_c00245{height:69.333333pt;}
.h0_c00245{height:1128.000000pt;}
.w1_c00245{width:856.000000pt;}
.w0_c00245{width:856.319987pt;}
.x0_c00245{left:0.000000pt;}
.xa2_c00245{left:162.266667pt;}
.x98_c00245{left:165.466667pt;}
.x5e_c00245{left:166.666667pt;}
.x52_c00245{left:167.733333pt;}
.x35_c00245{left:168.666667pt;}
.x1_c00245{left:170.533333pt;}
.xa3_c00245{left:171.600000pt;}
.x90_c00245{left:172.666667pt;}
.x89_c00245{left:181.733333pt;}
.x68_c00245{left:182.800000pt;}
.x48_c00245{left:183.866667pt;}
.x34_c00245{left:184.933333pt;}
.xb_c00245{left:185.866667pt;}
.x97_c00245{left:197.333333pt;}
.xa0_c00245{left:198.400000pt;}
.x8d_c00245{left:199.333333pt;}
.x44_c00245{left:201.333333pt;}
.x9d_c00245{left:202.266667pt;}
.x7d_c00245{left:204.800000pt;}
.x53_c00245{left:206.400000pt;}
.x71_c00245{left:208.533333pt;}
.x80_c00245{left:212.400000pt;}
.x14_c00245{left:214.000000pt;}
.x2d_c00245{left:214.933333pt;}
.x99_c00245{left:216.666667pt;}
.xc_c00245{left:217.600000pt;}
.x5f_c00245{left:219.200000pt;}
.x84_c00245{left:221.466667pt;}
.x36_c00245{left:223.733333pt;}
.x5a_c00245{left:226.133333pt;}
.x9b_c00245{left:227.333333pt;}
.x69_c00245{left:228.533333pt;}
.xa1_c00245{left:229.466667pt;}
.xd_c00245{left:230.400000pt;}
.x9e_c00245{left:231.733333pt;}
.x1b_c00245{left:233.066667pt;}
.x94_c00245{left:235.733333pt;}
.x8a_c00245{left:236.800000pt;}
.x8e_c00245{left:238.133333pt;}
.x40_c00245{left:239.600000pt;}
.x75_c00245{left:241.066667pt;}
.x45_c00245{left:242.000000pt;}
.x3b_c00245{left:244.133333pt;}
.x15_c00245{left:246.266667pt;}
.x3_c00245{left:247.733333pt;}
.x24_c00245{left:249.066667pt;}
.x60_c00245{left:251.866667pt;}
.x66_c00245{left:255.333333pt;}
.x4d_c00245{left:256.266667pt;}
.x76_c00245{left:258.400000pt;}
.xa4_c00245{left:259.866667pt;}
.x85_c00245{left:262.133333pt;}
.x54_c00245{left:263.066667pt;}
.x4_c00245{left:264.666667pt;}
.x5b_c00245{left:268.000000pt;}
.x1c_c00245{left:270.533333pt;}
.x21_c00245{left:272.133333pt;}
.x49_c00245{left:274.400000pt;}
.x25_c00245{left:276.533333pt;}
.x5_c00245{left:277.733333pt;}
.x16_c00245{left:279.200000pt;}
.x95_c00245{left:281.200000pt;}
.x61_c00245{left:282.266667pt;}
.x41_c00245{left:283.733333pt;}
.x26_c00245{left:285.200000pt;}
.x77_c00245{left:286.933333pt;}
.x28_c00245{left:288.666667pt;}
.x1d_c00245{left:291.066667pt;}
.x9a_c00245{left:292.800000pt;}
.x9c_c00245{left:295.200000pt;}
.x2e_c00245{left:296.533333pt;}
.xe_c00245{left:301.066667pt;}
.x4a_c00245{left:304.133333pt;}
.x3c_c00245{left:305.600000pt;}
.xa5_c00245{left:306.933333pt;}
.x17_c00245{left:308.266667pt;}
.x6_c00245{left:310.000000pt;}
.x93_c00245{left:311.333333pt;}
.x46_c00245{left:312.800000pt;}
.x2f_c00245{left:315.066667pt;}
.x1e_c00245{left:316.666667pt;}
.xf_c00245{left:318.000000pt;}
.x8f_c00245{left:319.733333pt;}
.x72_c00245{left:321.200000pt;}
.x37_c00245{left:322.266667pt;}
.x29_c00245{left:323.200000pt;}
.x42_c00245{left:324.400000pt;}
.x7_c00245{left:327.600000pt;}
.x7e_c00245{left:328.933333pt;}
.x6a_c00245{left:330.000000pt;}
.x7b_c00245{left:331.200000pt;}
.x18_c00245{left:332.266667pt;}
.x55_c00245{left:333.866667pt;}
.x22_c00245{left:335.200000pt;}
.x78_c00245{left:336.266667pt;}
.x10_c00245{left:337.866667pt;}
.x2a_c00245{left:340.800000pt;}
.x4f_c00245{left:342.133333pt;}
.x30_c00245{left:343.200000pt;}
.x6b_c00245{left:344.133333pt;}
.x4e_c00245{left:345.333333pt;}
.x81_c00245{left:347.466667pt;}
.x63_c00245{left:349.466667pt;}
.x86_c00245{left:352.666667pt;}
.x27_c00245{left:354.933333pt;}
.x4b_c00245{left:356.266667pt;}
.x5c_c00245{left:357.333333pt;}
.x56_c00245{left:359.200000pt;}
.x62_c00245{left:360.666667pt;}
.x96_c00245{left:361.866667pt;}
.x3d_c00245{left:364.133333pt;}
.x43_c00245{left:365.066667pt;}
.x7c_c00245{left:366.400000pt;}
.x5d_c00245{left:367.866667pt;}
.x38_c00245{left:369.333333pt;}
.x19_c00245{left:371.333333pt;}
.x1f_c00245{left:372.933333pt;}
.x6e_c00245{left:375.200000pt;}
.x79_c00245{left:376.533333pt;}
.x31_c00245{left:377.466667pt;}
.x8_c00245{left:379.466667pt;}
.x2b_c00245{left:382.666667pt;}
.x9f_c00245{left:383.733333pt;}
.x2_c00245{left:384.666667pt;}
.x91_c00245{left:386.800000pt;}
.x20_c00245{left:390.800000pt;}
.x3e_c00245{left:392.666667pt;}
.x57_c00245{left:394.400000pt;}
.x11_c00245{left:395.733333pt;}
.x50_c00245{left:398.400000pt;}
.x32_c00245{left:399.600000pt;}
.x73_c00245{left:400.533333pt;}
.x6f_c00245{left:401.733333pt;}
.x23_c00245{left:403.733333pt;}
.x8b_c00245{left:404.666667pt;}
.x39_c00245{left:407.333333pt;}
.x9_c00245{left:408.933333pt;}
.x7f_c00245{left:411.200000pt;}
.x1a_c00245{left:412.933333pt;}
.x64_c00245{left:414.133333pt;}
.x82_c00245{left:416.933333pt;}
.x3f_c00245{left:419.600000pt;}
.x8c_c00245{left:421.333333pt;}
.x58_c00245{left:422.533333pt;}
.xa_c00245{left:424.000000pt;}
.x6c_c00245{left:425.066667pt;}
.x2c_c00245{left:426.133333pt;}
.x70_c00245{left:427.066667pt;}
.x87_c00245{left:428.800000pt;}
.x92_c00245{left:430.666667pt;}
.x12_c00245{left:431.866667pt;}
.x33_c00245{left:432.933333pt;}
.x67_c00245{left:434.000000pt;}
.x51_c00245{left:435.866667pt;}
.x4c_c00245{left:436.800000pt;}
.x59_c00245{left:438.266667pt;}
.x83_c00245{left:439.600000pt;}
.x47_c00245{left:441.733333pt;}
.x6d_c00245{left:444.533333pt;}
.x88_c00245{left:448.266667pt;}
.x13_c00245{left:450.400000pt;}
.x65_c00245{left:451.600000pt;}
.x3a_c00245{left:454.000000pt;}
.x74_c00245{left:455.866667pt;}
.x7a_c00245{left:456.800000pt;}
.x12c_c00245{left:482.266667pt;}
.x115_c00245{left:483.200000pt;}
.xa6_c00245{left:484.533333pt;}
.x135_c00245{left:494.133333pt;}
.xb7_c00245{left:496.266667pt;}
.x122_c00245{left:497.200000pt;}
.xf7_c00245{left:498.666667pt;}
.xad_c00245{left:499.866667pt;}
.xca_c00245{left:507.733333pt;}
.xd4_c00245{left:509.066667pt;}
.x12d_c00245{left:511.333333pt;}
.x147_c00245{left:512.933333pt;}
.x129_c00245{left:514.000000pt;}
.x101_c00245{left:516.533333pt;}
.x11b_c00245{left:517.466667pt;}
.x126_c00245{left:518.933333pt;}
.x118_c00245{left:520.266667pt;}
.xeb_c00245{left:521.466667pt;}
.xa7_c00245{left:524.266667pt;}
.x128_c00245{left:525.466667pt;}
.xcb_c00245{left:526.933333pt;}
.xd5_c00245{left:528.533333pt;}
.x111_c00245{left:530.133333pt;}
.xbd_c00245{left:531.200000pt;}
.x141_c00245{left:532.133333pt;}
.x13e_c00245{left:533.600000pt;}
.xae_c00245{left:535.333333pt;}
.x131_c00245{left:536.266667pt;}
.xfc_c00245{left:537.200000pt;}
.x106_c00245{left:539.066667pt;}
.xaf_c00245{left:540.133333pt;}
.x125_c00245{left:542.000000pt;}
.xcc_c00245{left:543.866667pt;}
.xd6_c00245{left:545.200000pt;}
.xec_c00245{left:546.133333pt;}
.xbe_c00245{left:548.133333pt;}
.xb8_c00245{left:549.733333pt;}
.xf8_c00245{left:551.466667pt;}
.x11c_c00245{left:552.400000pt;}
.x10a_c00245{left:554.000000pt;}
.xcd_c00245{left:556.000000pt;}
.xe0_c00245{left:557.333333pt;}
.xd7_c00245{left:558.266667pt;}
.x11d_c00245{left:559.466667pt;}
.xbf_c00245{left:561.866667pt;}
.xf2_c00245{left:564.266667pt;}
.x13f_c00245{left:565.866667pt;}
.x12b_c00245{left:570.266667pt;}
.xff_c00245{left:571.200000pt;}
.xe1_c00245{left:572.666667pt;}
.xe7_c00245{left:575.600000pt;}
.x10b_c00245{left:577.333333pt;}
.x107_c00245{left:578.400000pt;}
.xb9_c00245{left:579.466667pt;}
.x112_c00245{left:581.066667pt;}
.x119_c00245{left:582.400000pt;}
.xa8_c00245{left:584.400000pt;}
.x102_c00245{left:586.266667pt;}
.x13a_c00245{left:587.466667pt;}
.x12a_c00245{left:590.400000pt;}
.xfd_c00245{left:591.333333pt;}
.xce_c00245{left:592.533333pt;}
.xf3_c00245{left:595.333333pt;}
.x136_c00245{left:596.933333pt;}
.xba_c00245{left:598.666667pt;}
.xb0_c00245{left:600.000000pt;}
.xe2_c00245{left:601.466667pt;}
.xe8_c00245{left:604.400000pt;}
.xc0_c00245{left:605.733333pt;}
.xed_c00245{left:607.866667pt;}
.x137_c00245{left:609.733333pt;}
.xcf_c00245{left:610.800000pt;}
.xfe_c00245{left:611.866667pt;}
.x127_c00245{left:612.933333pt;}
.x132_c00245{left:614.933333pt;}
.xee_c00245{left:615.866667pt;}
.x11f_c00245{left:616.933333pt;}
.x148_c00245{left:617.866667pt;}
.xc1_c00245{left:618.800000pt;}
.x142_c00245{left:620.533333pt;}
.xb1_c00245{left:621.466667pt;}
.x149_c00245{left:622.533333pt;}
.xd8_c00245{left:623.600000pt;}
.xc2_c00245{left:624.533333pt;}
.x144_c00245{left:625.466667pt;}
.x104_c00245{left:628.133333pt;}
.xa9_c00245{left:629.466667pt;}
.x116_c00245{left:631.466667pt;}
.x10f_c00245{left:633.600000pt;}
.x123_c00245{left:635.066667pt;}
.xd9_c00245{left:636.400000pt;}
.xc3_c00245{left:637.600000pt;}
.x103_c00245{left:639.066667pt;}
.x145_c00245{left:640.533333pt;}
.xef_c00245{left:641.466667pt;}
.xda_c00245{left:642.800000pt;}
.xbb_c00245{left:644.400000pt;}
.x105_c00245{left:646.000000pt;}
.x12e_c00245{left:648.666667pt;}
.xc4_c00245{left:650.400000pt;}
.xf4_c00245{left:652.266667pt;}
.xd0_c00245{left:654.266667pt;}
.xdb_c00245{left:655.600000pt;}
.xb2_c00245{left:657.333333pt;}
.x140_c00245{left:658.266667pt;}
.xaa_c00245{left:659.200000pt;}
.x113_c00245{left:660.533333pt;}
.xe3_c00245{left:661.733333pt;}
.xc5_c00245{left:663.200000pt;}
.xd1_c00245{left:665.200000pt;}
.xb3_c00245{left:667.600000pt;}
.xc6_c00245{left:670.266667pt;}
.x14d_c00245{left:671.333333pt;}
.x10c_c00245{left:672.266667pt;}
.x100_c00245{left:673.600000pt;}
.xdc_c00245{left:674.800000pt;}
.xc7_c00245{left:675.733333pt;}
.xf9_c00245{left:677.466667pt;}
.xf0_c00245{left:679.866667pt;}
.xdd_c00245{left:682.133333pt;}
.xe9_c00245{left:684.400000pt;}
.x120_c00245{left:685.733333pt;}
.xbc_c00245{left:686.666667pt;}
.xde_c00245{left:687.866667pt;}
.x11e_c00245{left:691.600000pt;}
.xe4_c00245{left:694.133333pt;}
.xfa_c00245{left:695.066667pt;}
.x14b_c00245{left:696.133333pt;}
.x108_c00245{left:698.933333pt;}
.xdf_c00245{left:701.200000pt;}
.xf5_c00245{left:703.200000pt;}
.x10d_c00245{left:706.133333pt;}
.x13b_c00245{left:707.600000pt;}
.x11a_c00245{left:709.200000pt;}
.xb4_c00245{left:711.733333pt;}
.x143_c00245{left:712.666667pt;}
.x138_c00245{left:716.266667pt;}
.xd2_c00245{left:718.266667pt;}
.x14f_c00245{left:719.866667pt;}
.xc8_c00245{left:720.800000pt;}
.x117_c00245{left:722.400000pt;}
.x12f_c00245{left:724.533333pt;}
.xab_c00245{left:725.733333pt;}
.xe5_c00245{left:728.533333pt;}
.x14a_c00245{left:730.266667pt;}
.xf1_c00245{left:732.000000pt;}
.x14c_c00245{left:733.200000pt;}
.x133_c00245{left:734.266667pt;}
.xf6_c00245{left:735.866667pt;}
.x121_c00245{left:736.933333pt;}
.xb5_c00245{left:739.200000pt;}
.x146_c00245{left:741.466667pt;}
.x139_c00245{left:742.400000pt;}
.x114_c00245{left:744.000000pt;}
.xd3_c00245{left:745.466667pt;}
.x10e_c00245{left:747.466667pt;}
.x13d_c00245{left:751.600000pt;}
.xea_c00245{left:753.866667pt;}
.x13c_c00245{left:754.933333pt;}
.xe6_c00245{left:756.666667pt;}
.x14e_c00245{left:759.333333pt;}
.x124_c00245{left:760.266667pt;}
.x110_c00245{left:761.466667pt;}
.xfb_c00245{left:762.533333pt;}
.x109_c00245{left:764.266667pt;}
.x134_c00245{left:765.600000pt;}
.xb6_c00245{left:768.266667pt;}
.xc9_c00245{left:770.133333pt;}
.xac_c00245{left:771.866667pt;}
.x130_c00245{left:775.733333pt;}
}





/* 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_c00246 {
    display:none;
  }
  .loading-indicator_c00246.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00246 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_c00246 { 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_c00246" -> "#page-container .classname_c00246")
 */
.pf_c00246 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00246 { /* 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_c00246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00246 { /* 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_c00246 { /* 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_c00246 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00246 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00246 {overflow:visible;}
  }
}
.c_c00246 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00246 { /* 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_c00246:after { /* webkit #35443 */
  content: '';
}
.t_c00246:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00246 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 */
}
.__c00246 { /* 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_c00246 { /* info for Javascript */
  display:none;
}
.l_c00246 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00246 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00246 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00246: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_c00246 {
    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_c00246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00246.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_c00246 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00246;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.000000;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;}
.m4c_c00246{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m74_c00246{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00246{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00246{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00246{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00246{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m73_c00246{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m115_c00246{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m48_c00246{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m49_c00246{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md2_c00246{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m87_c00246{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00246{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00246{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m56_c00246{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00246{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00246{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00246{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00246{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m50_c00246{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00246{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m42_c00246{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m88_c00246{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mce_c00246{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m21_c00246{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m85_c00246{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00246{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me5_c00246{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.mb_c00246{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00246{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m53_c00246{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m118_c00246{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m44_c00246{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00246{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m77_c00246{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00246{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00246{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m99_c00246{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00246{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m23_c00246{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.md_c00246{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00246{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00246{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m46_c00246{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m24_c00246{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m34_c00246{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mec_c00246{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mae_c00246{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.md7_c00246{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mea_c00246{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00246{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00246{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00246{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4_c00246{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m71_c00246{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00246{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m113_c00246{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m18_c00246{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m72_c00246{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m90_c00246{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00246{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m22_c00246{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md5_c00246{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m114_c00246{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m45_c00246{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m96_c00246{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m117_c00246{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m20_c00246{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m105_c00246{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m37_c00246{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m54_c00246{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00246{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.md1_c00246{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00246{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m68_c00246{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00246{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m55_c00246{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00246{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00246{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf_c00246{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00246{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00246{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.md0_c00246{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m82_c00246{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m26_c00246{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m111_c00246{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mef_c00246{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00246{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma_c00246{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00246{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00246{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00246{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mab_c00246{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m57_c00246{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00246{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m30_c00246{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m38_c00246{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m29_c00246{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00246{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m11_c00246{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m32_c00246{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00246{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00246{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00246{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00246{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m97_c00246{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m52_c00246{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mad_c00246{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00246{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00246{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m47_c00246{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3_c00246{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00246{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.me4_c00246{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00246{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m98_c00246{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.me2_c00246{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mc_c00246{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m75_c00246{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m33_c00246{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00246{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00246{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m15_c00246{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00246{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00246{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m95_c00246{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00246{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m103_c00246{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.maa_c00246{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m36_c00246{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00246{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00246{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00246{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m35_c00246{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00246{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00246{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m10_c00246{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00246{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m92_c00246{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00246{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8_c00246{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m17_c00246{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00246{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00246{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m58_c00246{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00246{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00246{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00246{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me0_c00246{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00246{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00246{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m91_c00246{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m108_c00246{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mca_c00246{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00246{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00246{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m28_c00246{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md6_c00246{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mff_c00246{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5_c00246{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m76_c00246{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md9_c00246{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m61_c00246{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00246{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.maf_c00246{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m51_c00246{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7_c00246{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6_c00246{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m67_c00246{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me6_c00246{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00246{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m14_c00246{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00246{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00246{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m9_c00246{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m70_c00246{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m25_c00246{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m69_c00246{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m93_c00246{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00246{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m39_c00246{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00246{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.me7_c00246{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00246{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00246{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00246{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00246{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m66_c00246{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m119_c00246{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2_c00246{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00246{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m65_c00246{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.meb_c00246{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m100_c00246{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00246{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me_c00246{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me3_c00246{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00246{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m16_c00246{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m79_c00246{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00246{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mee_c00246{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m19_c00246{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00246{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00246{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00246{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m60_c00246{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00246{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m106_c00246{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m89_c00246{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00246{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m104_c00246{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.med_c00246{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m84_c00246{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m102_c00246{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00246{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m13_c00246{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00246{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00246{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m83_c00246{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00246{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m62_c00246{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me9_c00246{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m12_c00246{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00246{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mba_c00246{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00246{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);}
.m101_c00246{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00246{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md8_c00246{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27_c00246{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m40_c00246{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m86_c00246{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00246{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mde_c00246{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00246{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m81_c00246{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.md3_c00246{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00246{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m64_c00246{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00246{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00246{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00246{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00246{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m107_c00246{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00246{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m80_c00246{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00246{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m43_c00246{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00246{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00246{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mda_c00246{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mac_c00246{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00246{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.me8_c00246{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00246{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m116_c00246{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.md4_c00246{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m63_c00246{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m31_c00246{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m112_c00246{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00246{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.me1_c00246{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00246{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00246{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00246{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m94_c00246{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00246{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00246{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00246{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00246{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00246{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m78_c00246{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m41_c00246{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00246{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m109_c00246{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00246{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m110_c00246{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m0_c00246{transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);}
.m59_c00246{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m1_c00246{transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00246{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls0_c00246{letter-spacing:0.000000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{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__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00246{word-spacing:-9.042802px;}
.ws7_c00246{word-spacing:-8.275862px;}
.ws0_c00246{word-spacing:-2.118598px;}
.ws5_c00246{word-spacing:-1.244541px;}
.ws8_c00246{word-spacing:0.000000px;}
.ws6_c00246{word-spacing:1.617647px;}
.ws3_c00246{word-spacing:140.207836px;}
.ws1_c00246{word-spacing:747.180516px;}
.ws2_c00246{word-spacing:969.166667px;}
.fc0_c00246{color:transparent;}
.fs7_c00246{font-size:24.000000px;}
.fs1_c00246{font-size:30.000000px;}
.fs6_c00246{font-size:48.000000px;}
.fs2_c00246{font-size:54.000000px;}
.fs4_c00246{font-size:60.000000px;}
.fs3_c00246{font-size:66.000000px;}
.fs5_c00246{font-size:72.000000px;}
.fs0_c00246{font-size:78.000000px;}
.y0_c00246{bottom:0.000000px;}
.y43_c00246{bottom:181.500000px;}
.y70_c00246{bottom:190.800000px;}
.y42_c00246{bottom:195.000000px;}
.y6f_c00246{bottom:205.500000px;}
.y41_c00246{bottom:213.000000px;}
.y6e_c00246{bottom:219.900000px;}
.y40_c00246{bottom:230.700000px;}
.y6d_c00246{bottom:240.450000px;}
.y3f_c00246{bottom:248.700000px;}
.y3e_c00246{bottom:266.400000px;}
.y44_c00246{bottom:271.050000px;}
.y3d_c00246{bottom:284.400000px;}
.y6c_c00246{bottom:293.100000px;}
.y3c_c00246{bottom:306.000000px;}
.y6b_c00246{bottom:310.650000px;}
.y3b_c00246{bottom:324.300000px;}
.y6a_c00246{bottom:332.550000px;}
.y3a_c00246{bottom:341.550000px;}
.y69_c00246{bottom:350.250000px;}
.y39_c00246{bottom:359.250000px;}
.y68_c00246{bottom:367.950000px;}
.y38_c00246{bottom:377.250000px;}
.y67_c00246{bottom:390.450000px;}
.y37_c00246{bottom:395.250000px;}
.y66_c00246{bottom:408.450000px;}
.y36_c00246{bottom:412.950000px;}
.y65_c00246{bottom:426.150000px;}
.y35_c00246{bottom:431.250000px;}
.y64_c00246{bottom:444.450000px;}
.y34_c00246{bottom:448.950000px;}
.y63_c00246{bottom:462.150000px;}
.y33_c00246{bottom:466.650000px;}
.y62_c00246{bottom:479.850000px;}
.y32_c00246{bottom:484.650000px;}
.y61_c00246{bottom:497.850000px;}
.y31_c00246{bottom:502.650000px;}
.y60_c00246{bottom:515.850000px;}
.y30_c00246{bottom:520.350000px;}
.y5f_c00246{bottom:533.850000px;}
.y2f_c00246{bottom:538.350000px;}
.y5e_c00246{bottom:551.550000px;}
.y2e_c00246{bottom:556.350000px;}
.y5d_c00246{bottom:569.550000px;}
.y2d_c00246{bottom:574.350000px;}
.y5c_c00246{bottom:587.100000px;}
.y2c_c00246{bottom:592.050000px;}
.y2b_c00246{bottom:609.750000px;}
.y5b_c00246{bottom:611.400000px;}
.y5a_c00246{bottom:626.100000px;}
.y2a_c00246{bottom:627.750000px;}
.y59_c00246{bottom:640.500000px;}
.y29_c00246{bottom:645.750000px;}
.y58_c00246{bottom:654.900000px;}
.y28_c00246{bottom:663.450000px;}
.y57_c00246{bottom:675.000000px;}
.y27_c00246{bottom:681.450000px;}
.y56_c00246{bottom:693.000000px;}
.y26_c00246{bottom:699.150000px;}
.y55_c00246{bottom:711.000000px;}
.y25_c00246{bottom:716.700000px;}
.y54_c00246{bottom:728.700000px;}
.y24_c00246{bottom:737.550000px;}
.y53_c00246{bottom:746.700000px;}
.y23_c00246{bottom:751.950000px;}
.y22_c00246{bottom:766.650000px;}
.y52_c00246{bottom:768.600000px;}
.y21_c00246{bottom:780.750000px;}
.y51_c00246{bottom:786.600000px;}
.y20_c00246{bottom:795.150000px;}
.y50_c00246{bottom:804.300000px;}
.y1f_c00246{bottom:809.550000px;}
.y1e_c00246{bottom:823.650000px;}
.y4f_c00246{bottom:826.200000px;}
.y1d_c00246{bottom:838.050000px;}
.y1c_c00246{bottom:851.100000px;}
.y4e_c00246{bottom:858.000000px;}
.y1b_c00246{bottom:865.800000px;}
.y4d_c00246{bottom:876.300000px;}
.y1a_c00246{bottom:883.800000px;}
.y4c_c00246{bottom:893.400000px;}
.y4b_c00246{bottom:900.300000px;}
.y19_c00246{bottom:901.800000px;}
.y4a_c00246{bottom:916.050000px;}
.y18_c00246{bottom:919.500000px;}
.y49_c00246{bottom:933.750000px;}
.y17_c00246{bottom:941.250000px;}
.y48_c00246{bottom:951.450000px;}
.y16_c00246{bottom:959.250000px;}
.y47_c00246{bottom:969.750000px;}
.y15_c00246{bottom:976.950000px;}
.y46_c00246{bottom:987.450000px;}
.y14_c00246{bottom:994.650000px;}
.y45_c00246{bottom:1005.150000px;}
.y11_c00246{bottom:1013.100000px;}
.y13_c00246{bottom:1013.700000px;}
.y12_c00246{bottom:1015.200000px;}
.y10_c00246{bottom:1015.950000px;}
.yf_c00246{bottom:1016.250000px;}
.ye_c00246{bottom:1022.700000px;}
.y8_c00246{bottom:1044.000000px;}
.yd_c00246{bottom:1045.050000px;}
.yc_c00246{bottom:1062.900000px;}
.y7_c00246{bottom:1065.450000px;}
.yb_c00246{bottom:1080.900000px;}
.y6_c00246{bottom:1083.150000px;}
.ya_c00246{bottom:1098.600000px;}
.y5_c00246{bottom:1101.150000px;}
.y9_c00246{bottom:1116.300000px;}
.y4_c00246{bottom:1118.850000px;}
.y3_c00246{bottom:1140.150000px;}
.y1_c00246{bottom:1144.500000px;}
.y2_c00246{bottom:1150.200000px;}
.h9_c00246{height:24.000000px;}
.h3_c00246{height:30.000000px;}
.h8_c00246{height:48.000000px;}
.h4_c00246{height:54.000000px;}
.h6_c00246{height:60.000000px;}
.h5_c00246{height:66.000000px;}
.h7_c00246{height:72.000000px;}
.h2_c00246{height:78.000000px;}
.h0_c00246{height:1271.879975px;}
.h1_c00246{height:1272.000000px;}
.w1_c00246{width:963.000000px;}
.w0_c00246{width:963.359985px;}
.x0_c00246{left:0.000000px;}
.x1c_c00246{left:90.000000px;}
.x41_c00246{left:91.800000px;}
.x6f_c00246{left:100.050000px;}
.x7e_c00246{left:105.900000px;}
.xc8_c00246{left:107.100000px;}
.x66_c00246{left:108.150000px;}
.x12_c00246{left:109.350000px;}
.x5_c00246{left:110.850000px;}
.x79_c00246{left:119.550000px;}
.x7f_c00246{left:121.350000px;}
.x4a_c00246{left:125.550000px;}
.x50_c00246{left:127.800000px;}
.x70_c00246{left:133.200000px;}
.x42_c00246{left:134.250000px;}
.x57_c00246{left:136.350000px;}
.x5f_c00246{left:137.550000px;}
.x6_c00246{left:139.650000px;}
.x7a_c00246{left:140.850000px;}
.xb0_c00246{left:142.950000px;}
.x8a_c00246{left:145.350000px;}
.xc_c00246{left:148.950000px;}
.x18_c00246{left:150.900000px;}
.x71_c00246{left:154.050000px;}
.x67_c00246{left:155.700000px;}
.x94_c00246{left:157.950000px;}
.x4b_c00246{left:159.750000px;}
.x1d_c00246{left:160.950000px;}
.x5e_c00246{left:164.550000px;}
.x7_c00246{left:166.650000px;}
.xad_c00246{left:168.900000px;}
.x9c_c00246{left:171.600000px;}
.x43_c00246{left:172.800000px;}
.x51_c00246{left:174.900000px;}
.x13_c00246{left:176.250000px;}
.x7b_c00246{left:178.950000px;}
.x19_c00246{left:180.000000px;}
.x88_c00246{left:181.800000px;}
.x1e_c00246{left:185.400000px;}
.xb2_c00246{left:190.050000px;}
.x80_c00246{left:192.600000px;}
.x68_c00246{left:194.250000px;}
.xa2_c00246{left:196.200000px;}
.xa5_c00246{left:197.250000px;}
.xd_c00246{left:200.550000px;}
.x95_c00246{left:201.900000px;}
.xb5_c00246{left:203.400000px;}
.x60_c00246{left:204.450000px;}
.x83_c00246{left:206.700000px;}
.xa8_c00246{left:210.600000px;}
.x69_c00246{left:211.950000px;}
.x58_c00246{left:213.300000px;}
.x1a_c00246{left:214.950000px;}
.x72_c00246{left:217.350000px;}
.xb9_c00246{left:219.300000px;}
.xe_c00246{left:221.100000px;}
.x44_c00246{left:222.900000px;}
.x14_c00246{left:225.150000px;}
.xc1_c00246{left:227.100000px;}
.x9f_c00246{left:228.600000px;}
.x6a_c00246{left:229.650000px;}
.x8d_c00246{left:231.000000px;}
.x89_c00246{left:232.200000px;}
.x77_c00246{left:233.250000px;}
.x52_c00246{left:234.600000px;}
.xf_c00246{left:237.600000px;}
.x64_c00246{left:238.800000px;}
.x59_c00246{left:240.600000px;}
.x61_c00246{left:241.950000px;}
.xc9_c00246{left:244.500000px;}
.x91_c00246{left:245.700000px;}
.xa9_c00246{left:248.400000px;}
.xa6_c00246{left:249.750000px;}
.x8e_c00246{left:251.100000px;}
.x73_c00246{left:253.200000px;}
.x92_c00246{left:255.450000px;}
.xba_c00246{left:256.800000px;}
.xbe_c00246{left:260.850000px;}
.x5c_c00246{left:262.200000px;}
.x84_c00246{left:265.500000px;}
.x7c_c00246{left:267.150000px;}
.x96_c00246{left:269.550000px;}
.x53_c00246{left:271.350000px;}
.xc6_c00246{left:274.950000px;}
.x15_c00246{left:276.300000px;}
.xbc_c00246{left:278.850000px;}
.x8_c00246{left:280.050000px;}
.xa3_c00246{left:282.150000px;}
.x6b_c00246{left:284.400000px;}
.x5a_c00246{left:287.700000px;}
.x4c_c00246{left:289.350000px;}
.x97_c00246{left:290.400000px;}
.xc7_c00246{left:292.200000px;}
.xb6_c00246{left:293.700000px;}
.xc3_c00246{left:294.900000px;}
.x8f_c00246{left:296.400000px;}
.x45_c00246{left:298.500000px;}
.xae_c00246{left:299.550000px;}
.x6c_c00246{left:300.600000px;}
.xb3_c00246{left:303.600000px;}
.x8b_c00246{left:304.800000px;}
.x98_c00246{left:306.600000px;}
.x5b_c00246{left:308.550000px;}
.xbb_c00246{left:309.600000px;}
.x9_c00246{left:310.650000px;}
.xa0_c00246{left:312.750000px;}
.xc2_c00246{left:314.250000px;}
.x85_c00246{left:318.000000px;}
.x54_c00246{left:319.200000px;}
.xaa_c00246{left:321.900000px;}
.x5d_c00246{left:323.700000px;}
.x6d_c00246{left:324.750000px;}
.x9d_c00246{left:327.150000px;}
.x7d_c00246{left:328.350000px;}
.x55_c00246{left:330.000000px;}
.x86_c00246{left:332.100000px;}
.x62_c00246{left:333.450000px;}
.x1_c00246{left:334.500000px;}
.x99_c00246{left:335.700000px;}
.x93_c00246{left:337.800000px;}
.xa7_c00246{left:345.450000px;}
.xb8_c00246{left:346.500000px;}
.xa4_c00246{left:348.000000px;}
.xb1_c00246{left:350.700000px;}
.x74_c00246{left:351.900000px;}
.xc0_c00246{left:354.150000px;}
.x87_c00246{left:355.800000px;}
.x78_c00246{left:357.150000px;}
.xb7_c00246{left:358.800000px;}
.xbf_c00246{left:360.600000px;}
.xa1_c00246{left:362.100000px;}
.x9e_c00246{left:364.650000px;}
.x65_c00246{left:367.050000px;}
.x10_c00246{left:368.250000px;}
.xab_c00246{left:369.450000px;}
.xa_c00246{left:371.100000px;}
.x16_c00246{left:372.750000px;}
.xbd_c00246{left:374.250000px;}
.xc4_c00246{left:375.600000px;}
.x75_c00246{left:378.900000px;}
.x4d_c00246{left:380.850000px;}
.xc5_c00246{left:382.650000px;}
.x6e_c00246{left:383.850000px;}
.x81_c00246{left:386.100000px;}
.xaf_c00246{left:388.500000px;}
.x9a_c00246{left:390.450000px;}
.x17_c00246{left:391.800000px;}
.x90_c00246{left:394.350000px;}
.x56_c00246{left:395.850000px;}
.x11_c00246{left:398.850000px;}
.x9b_c00246{left:400.200000px;}
.x63_c00246{left:401.550000px;}
.xb4_c00246{left:406.050000px;}
.x1b_c00246{left:408.300000px;}
.x8c_c00246{left:411.300000px;}
.x76_c00246{left:412.800000px;}
.xb_c00246{left:414.600000px;}
.x82_c00246{left:415.650000px;}
.xac_c00246{left:420.600000px;}
.xca_c00246{left:444.900000px;}
.x10e_c00246{left:446.100000px;}
.x101_c00246{left:447.900000px;}
.x46_c00246{left:449.250000px;}
.x134_c00246{left:456.600000px;}
.xf3_c00246{left:459.000000px;}
.x112_c00246{left:460.500000px;}
.x11d_c00246{left:462.450000px;}
.x10c_c00246{left:463.950000px;}
.xe3_c00246{left:465.000000px;}
.x1f_c00246{left:467.250000px;}
.x12f_c00246{left:471.150000px;}
.x116_c00246{left:474.750000px;}
.x135_c00246{left:477.900000px;}
.x126_c00246{left:479.400000px;}
.x12b_c00246{left:481.650000px;}
.x131_c00246{left:483.600000px;}
.xf8_c00246{left:484.950000px;}
.x20_c00246{left:487.350000px;}
.xd7_c00246{left:490.050000px;}
.xf4_c00246{left:491.400000px;}
.xce_c00246{left:492.750000px;}
.x10d_c00246{left:493.800000px;}
.x11e_c00246{left:496.950000px;}
.x118_c00246{left:498.600000px;}
.xd8_c00246{left:500.850000px;}
.xdd_c00246{left:502.350000px;}
.xcf_c00246{left:504.300000px;}
.xfc_c00246{left:505.800000px;}
.x3c_c00246{left:506.850000px;}
.xe6_c00246{left:509.700000px;}
.x35_c00246{left:511.650000px;}
.xcb_c00246{left:514.350000px;}
.x4e_c00246{left:517.650000px;}
.xfe_c00246{left:520.650000px;}
.x2e_c00246{left:522.150000px;}
.x125_c00246{left:523.650000px;}
.x11f_c00246{left:524.700000px;}
.xde_c00246{left:525.750000px;}
.x47_c00246{left:527.700000px;}
.xf9_c00246{left:529.950000px;}
.x28_c00246{left:532.800000px;}
.xcc_c00246{left:538.500000px;}
.x127_c00246{left:539.550000px;}
.x21_c00246{left:541.050000px;}
.xd0_c00246{left:542.100000px;}
.xe4_c00246{left:544.200000px;}
.x136_c00246{left:545.550000px;}
.x105_c00246{left:547.800000px;}
.x3d_c00246{left:549.300000px;}
.x36_c00246{left:550.500000px;}
.xd1_c00246{left:553.650000px;}
.xd9_c00246{left:556.350000px;}
.x22_c00246{left:558.750000px;}
.x130_c00246{left:560.100000px;}
.x137_c00246{left:564.300000px;}
.x29_c00246{left:565.500000px;}
.x128_c00246{left:568.050000px;}
.x106_c00246{left:569.100000px;}
.x37_c00246{left:570.600000px;}
.xfa_c00246{left:572.850000px;}
.x2f_c00246{left:576.150000px;}
.xf0_c00246{left:578.550000px;}
.x3e_c00246{left:581.400000px;}
.xda_c00246{left:583.650000px;}
.x12e_c00246{left:585.300000px;}
.xec_c00246{left:586.500000px;}
.x23_c00246{left:590.850000px;}
.xff_c00246{left:592.650000px;}
.x30_c00246{left:595.950000px;}
.x132_c00246{left:597.000000px;}
.xdf_c00246{left:600.300000px;}
.xcd_c00246{left:603.300000px;}
.x38_c00246{left:604.500000px;}
.x2a_c00246{left:607.650000px;}
.xed_c00246{left:609.150000px;}
.x31_c00246{left:610.650000px;}
.x24_c00246{left:612.750000px;}
.x120_c00246{left:615.000000px;}
.x113_c00246{left:616.350000px;}
.x107_c00246{left:617.700000px;}
.x11c_c00246{left:619.500000px;}
.x10f_c00246{left:622.650000px;}
.xd2_c00246{left:624.600000px;}
.x3f_c00246{left:627.450000px;}
.xe7_c00246{left:629.250000px;}
.x25_c00246{left:631.050000px;}
.xf5_c00246{left:632.850000px;}
.x12c_c00246{left:634.050000px;}
.xe0_c00246{left:635.550000px;}
.x2b_c00246{left:639.750000px;}
.xf6_c00246{left:641.550000px;}
.x102_c00246{left:642.600000px;}
.x129_c00246{left:643.950000px;}
.xd3_c00246{left:645.450000px;}
.x138_c00246{left:648.150000px;}
.x108_c00246{left:649.350000px;}
.x39_c00246{left:651.000000px;}
.xe5_c00246{left:653.700000px;}
.x122_c00246{left:656.100000px;}
.xdb_c00246{left:657.150000px;}
.xee_c00246{left:660.150000px;}
.x26_c00246{left:661.650000px;}
.xd4_c00246{left:663.150000px;}
.x100_c00246{left:664.650000px;}
.xdc_c00246{left:669.000000px;}
.x3a_c00246{left:670.500000px;}
.x12a_c00246{left:672.000000px;}
.xf7_c00246{left:674.250000px;}
.x119_c00246{left:676.200000px;}
.x110_c00246{left:678.750000px;}
.x48_c00246{left:682.500000px;}
.x40_c00246{left:686.100000px;}
.xf1_c00246{left:689.400000px;}
.x32_c00246{left:690.900000px;}
.x123_c00246{left:692.100000px;}
.xfd_c00246{left:694.500000px;}
.x2c_c00246{left:696.300000px;}
.x139_c00246{left:698.550000px;}
.x49_c00246{left:699.750000px;}
.x111_c00246{left:702.150000px;}
.xe8_c00246{left:704.550000px;}
.x3b_c00246{left:705.750000px;}
.x109_c00246{left:707.250000px;}
.x117_c00246{left:709.800000px;}
.x114_c00246{left:712.500000px;}
.x12d_c00246{left:713.550000px;}
.x124_c00246{left:714.750000px;}
.x2d_c00246{left:717.600000px;}
.x10b_c00246{left:718.950000px;}
.xe9_c00246{left:722.850000px;}
.x33_c00246{left:724.050000px;}
.xfb_c00246{left:726.900000px;}
.xd5_c00246{left:727.950000px;}
.xeb_c00246{left:730.650000px;}
.x4f_c00246{left:732.900000px;}
.xe1_c00246{left:734.250000px;}
.x103_c00246{left:736.200000px;}
.x115_c00246{left:739.800000px;}
.x11a_c00246{left:741.450000px;}
.xea_c00246{left:743.400000px;}
.x10a_c00246{left:744.750000px;}
.xf2_c00246{left:746.250000px;}
.x34_c00246{left:748.500000px;}
.x121_c00246{left:752.100000px;}
.x11b_c00246{left:753.300000px;}
.xd6_c00246{left:754.650000px;}
.x3_c00246{left:756.900000px;}
.x133_c00246{left:759.750000px;}
.x104_c00246{left:764.250000px;}
.x2_c00246{left:766.200000px;}
.xe2_c00246{left:768.450000px;}
.x27_c00246{left:771.150000px;}
.x4_c00246{left:779.250000px;}
.xef_c00246{left:780.750000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws4_c00246{word-spacing:-8.038046pt;}
.ws7_c00246{word-spacing:-7.356322pt;}
.ws0_c00246{word-spacing:-1.883199pt;}
.ws5_c00246{word-spacing:-1.106259pt;}
.ws8_c00246{word-spacing:0.000000pt;}
.ws6_c00246{word-spacing:1.437908pt;}
.ws3_c00246{word-spacing:124.629188pt;}
.ws1_c00246{word-spacing:664.160458pt;}
.ws2_c00246{word-spacing:861.481481pt;}
.fs7_c00246{font-size:21.333333pt;}
.fs1_c00246{font-size:26.666667pt;}
.fs6_c00246{font-size:42.666667pt;}
.fs2_c00246{font-size:48.000000pt;}
.fs4_c00246{font-size:53.333333pt;}
.fs3_c00246{font-size:58.666667pt;}
.fs5_c00246{font-size:64.000000pt;}
.fs0_c00246{font-size:69.333333pt;}
.y0_c00246{bottom:0.000000pt;}
.y43_c00246{bottom:161.333333pt;}
.y70_c00246{bottom:169.600000pt;}
.y42_c00246{bottom:173.333333pt;}
.y6f_c00246{bottom:182.666667pt;}
.y41_c00246{bottom:189.333333pt;}
.y6e_c00246{bottom:195.466667pt;}
.y40_c00246{bottom:205.066667pt;}
.y6d_c00246{bottom:213.733333pt;}
.y3f_c00246{bottom:221.066667pt;}
.y3e_c00246{bottom:236.800000pt;}
.y44_c00246{bottom:240.933333pt;}
.y3d_c00246{bottom:252.800000pt;}
.y6c_c00246{bottom:260.533333pt;}
.y3c_c00246{bottom:272.000000pt;}
.y6b_c00246{bottom:276.133333pt;}
.y3b_c00246{bottom:288.266667pt;}
.y6a_c00246{bottom:295.600000pt;}
.y3a_c00246{bottom:303.600000pt;}
.y69_c00246{bottom:311.333333pt;}
.y39_c00246{bottom:319.333333pt;}
.y68_c00246{bottom:327.066667pt;}
.y38_c00246{bottom:335.333333pt;}
.y67_c00246{bottom:347.066667pt;}
.y37_c00246{bottom:351.333333pt;}
.y66_c00246{bottom:363.066667pt;}
.y36_c00246{bottom:367.066667pt;}
.y65_c00246{bottom:378.800000pt;}
.y35_c00246{bottom:383.333333pt;}
.y64_c00246{bottom:395.066667pt;}
.y34_c00246{bottom:399.066667pt;}
.y63_c00246{bottom:410.800000pt;}
.y33_c00246{bottom:414.800000pt;}
.y62_c00246{bottom:426.533333pt;}
.y32_c00246{bottom:430.800000pt;}
.y61_c00246{bottom:442.533333pt;}
.y31_c00246{bottom:446.800000pt;}
.y60_c00246{bottom:458.533333pt;}
.y30_c00246{bottom:462.533333pt;}
.y5f_c00246{bottom:474.533333pt;}
.y2f_c00246{bottom:478.533333pt;}
.y5e_c00246{bottom:490.266667pt;}
.y2e_c00246{bottom:494.533333pt;}
.y5d_c00246{bottom:506.266667pt;}
.y2d_c00246{bottom:510.533333pt;}
.y5c_c00246{bottom:521.866667pt;}
.y2c_c00246{bottom:526.266667pt;}
.y2b_c00246{bottom:542.000000pt;}
.y5b_c00246{bottom:543.466667pt;}
.y5a_c00246{bottom:556.533333pt;}
.y2a_c00246{bottom:558.000000pt;}
.y59_c00246{bottom:569.333333pt;}
.y29_c00246{bottom:574.000000pt;}
.y58_c00246{bottom:582.133333pt;}
.y28_c00246{bottom:589.733333pt;}
.y57_c00246{bottom:600.000000pt;}
.y27_c00246{bottom:605.733333pt;}
.y56_c00246{bottom:616.000000pt;}
.y26_c00246{bottom:621.466667pt;}
.y55_c00246{bottom:632.000000pt;}
.y25_c00246{bottom:637.066667pt;}
.y54_c00246{bottom:647.733333pt;}
.y24_c00246{bottom:655.600000pt;}
.y53_c00246{bottom:663.733333pt;}
.y23_c00246{bottom:668.400000pt;}
.y22_c00246{bottom:681.466667pt;}
.y52_c00246{bottom:683.200000pt;}
.y21_c00246{bottom:694.000000pt;}
.y51_c00246{bottom:699.200000pt;}
.y20_c00246{bottom:706.800000pt;}
.y50_c00246{bottom:714.933333pt;}
.y1f_c00246{bottom:719.600000pt;}
.y1e_c00246{bottom:732.133333pt;}
.y4f_c00246{bottom:734.400000pt;}
.y1d_c00246{bottom:744.933333pt;}
.y1c_c00246{bottom:756.533333pt;}
.y4e_c00246{bottom:762.666667pt;}
.y1b_c00246{bottom:769.600000pt;}
.y4d_c00246{bottom:778.933333pt;}
.y1a_c00246{bottom:785.600000pt;}
.y4c_c00246{bottom:794.133333pt;}
.y4b_c00246{bottom:800.266667pt;}
.y19_c00246{bottom:801.600000pt;}
.y4a_c00246{bottom:814.266667pt;}
.y18_c00246{bottom:817.333333pt;}
.y49_c00246{bottom:830.000000pt;}
.y17_c00246{bottom:836.666667pt;}
.y48_c00246{bottom:845.733333pt;}
.y16_c00246{bottom:852.666667pt;}
.y47_c00246{bottom:862.000000pt;}
.y15_c00246{bottom:868.400000pt;}
.y46_c00246{bottom:877.733333pt;}
.y14_c00246{bottom:884.133333pt;}
.y45_c00246{bottom:893.466667pt;}
.y11_c00246{bottom:900.533333pt;}
.y13_c00246{bottom:901.066667pt;}
.y12_c00246{bottom:902.400000pt;}
.y10_c00246{bottom:903.066667pt;}
.yf_c00246{bottom:903.333333pt;}
.ye_c00246{bottom:909.066667pt;}
.y8_c00246{bottom:928.000000pt;}
.yd_c00246{bottom:928.933333pt;}
.yc_c00246{bottom:944.800000pt;}
.y7_c00246{bottom:947.066667pt;}
.yb_c00246{bottom:960.800000pt;}
.y6_c00246{bottom:962.800000pt;}
.ya_c00246{bottom:976.533333pt;}
.y5_c00246{bottom:978.800000pt;}
.y9_c00246{bottom:992.266667pt;}
.y4_c00246{bottom:994.533333pt;}
.y3_c00246{bottom:1013.466667pt;}
.y1_c00246{bottom:1017.333333pt;}
.y2_c00246{bottom:1022.400000pt;}
.h9_c00246{height:21.333333pt;}
.h3_c00246{height:26.666667pt;}
.h8_c00246{height:42.666667pt;}
.h4_c00246{height:48.000000pt;}
.h6_c00246{height:53.333333pt;}
.h5_c00246{height:58.666667pt;}
.h7_c00246{height:64.000000pt;}
.h2_c00246{height:69.333333pt;}
.h0_c00246{height:1130.559977pt;}
.h1_c00246{height:1130.666667pt;}
.w1_c00246{width:856.000000pt;}
.w0_c00246{width:856.319987pt;}
.x0_c00246{left:0.000000pt;}
.x1c_c00246{left:80.000000pt;}
.x41_c00246{left:81.600000pt;}
.x6f_c00246{left:88.933333pt;}
.x7e_c00246{left:94.133333pt;}
.xc8_c00246{left:95.200000pt;}
.x66_c00246{left:96.133333pt;}
.x12_c00246{left:97.200000pt;}
.x5_c00246{left:98.533333pt;}
.x79_c00246{left:106.266667pt;}
.x7f_c00246{left:107.866667pt;}
.x4a_c00246{left:111.600000pt;}
.x50_c00246{left:113.600000pt;}
.x70_c00246{left:118.400000pt;}
.x42_c00246{left:119.333333pt;}
.x57_c00246{left:121.200000pt;}
.x5f_c00246{left:122.266667pt;}
.x6_c00246{left:124.133333pt;}
.x7a_c00246{left:125.200000pt;}
.xb0_c00246{left:127.066667pt;}
.x8a_c00246{left:129.200000pt;}
.xc_c00246{left:132.400000pt;}
.x18_c00246{left:134.133333pt;}
.x71_c00246{left:136.933333pt;}
.x67_c00246{left:138.400000pt;}
.x94_c00246{left:140.400000pt;}
.x4b_c00246{left:142.000000pt;}
.x1d_c00246{left:143.066667pt;}
.x5e_c00246{left:146.266667pt;}
.x7_c00246{left:148.133333pt;}
.xad_c00246{left:150.133333pt;}
.x9c_c00246{left:152.533333pt;}
.x43_c00246{left:153.600000pt;}
.x51_c00246{left:155.466667pt;}
.x13_c00246{left:156.666667pt;}
.x7b_c00246{left:159.066667pt;}
.x19_c00246{left:160.000000pt;}
.x88_c00246{left:161.600000pt;}
.x1e_c00246{left:164.800000pt;}
.xb2_c00246{left:168.933333pt;}
.x80_c00246{left:171.200000pt;}
.x68_c00246{left:172.666667pt;}
.xa2_c00246{left:174.400000pt;}
.xa5_c00246{left:175.333333pt;}
.xd_c00246{left:178.266667pt;}
.x95_c00246{left:179.466667pt;}
.xb5_c00246{left:180.800000pt;}
.x60_c00246{left:181.733333pt;}
.x83_c00246{left:183.733333pt;}
.xa8_c00246{left:187.200000pt;}
.x69_c00246{left:188.400000pt;}
.x58_c00246{left:189.600000pt;}
.x1a_c00246{left:191.066667pt;}
.x72_c00246{left:193.200000pt;}
.xb9_c00246{left:194.933333pt;}
.xe_c00246{left:196.533333pt;}
.x44_c00246{left:198.133333pt;}
.x14_c00246{left:200.133333pt;}
.xc1_c00246{left:201.866667pt;}
.x9f_c00246{left:203.200000pt;}
.x6a_c00246{left:204.133333pt;}
.x8d_c00246{left:205.333333pt;}
.x89_c00246{left:206.400000pt;}
.x77_c00246{left:207.333333pt;}
.x52_c00246{left:208.533333pt;}
.xf_c00246{left:211.200000pt;}
.x64_c00246{left:212.266667pt;}
.x59_c00246{left:213.866667pt;}
.x61_c00246{left:215.066667pt;}
.xc9_c00246{left:217.333333pt;}
.x91_c00246{left:218.400000pt;}
.xa9_c00246{left:220.800000pt;}
.xa6_c00246{left:222.000000pt;}
.x8e_c00246{left:223.200000pt;}
.x73_c00246{left:225.066667pt;}
.x92_c00246{left:227.066667pt;}
.xba_c00246{left:228.266667pt;}
.xbe_c00246{left:231.866667pt;}
.x5c_c00246{left:233.066667pt;}
.x84_c00246{left:236.000000pt;}
.x7c_c00246{left:237.466667pt;}
.x96_c00246{left:239.600000pt;}
.x53_c00246{left:241.200000pt;}
.xc6_c00246{left:244.400000pt;}
.x15_c00246{left:245.600000pt;}
.xbc_c00246{left:247.866667pt;}
.x8_c00246{left:248.933333pt;}
.xa3_c00246{left:250.800000pt;}
.x6b_c00246{left:252.800000pt;}
.x5a_c00246{left:255.733333pt;}
.x4c_c00246{left:257.200000pt;}
.x97_c00246{left:258.133333pt;}
.xc7_c00246{left:259.733333pt;}
.xb6_c00246{left:261.066667pt;}
.xc3_c00246{left:262.133333pt;}
.x8f_c00246{left:263.466667pt;}
.x45_c00246{left:265.333333pt;}
.xae_c00246{left:266.266667pt;}
.x6c_c00246{left:267.200000pt;}
.xb3_c00246{left:269.866667pt;}
.x8b_c00246{left:270.933333pt;}
.x98_c00246{left:272.533333pt;}
.x5b_c00246{left:274.266667pt;}
.xbb_c00246{left:275.200000pt;}
.x9_c00246{left:276.133333pt;}
.xa0_c00246{left:278.000000pt;}
.xc2_c00246{left:279.333333pt;}
.x85_c00246{left:282.666667pt;}
.x54_c00246{left:283.733333pt;}
.xaa_c00246{left:286.133333pt;}
.x5d_c00246{left:287.733333pt;}
.x6d_c00246{left:288.666667pt;}
.x9d_c00246{left:290.800000pt;}
.x7d_c00246{left:291.866667pt;}
.x55_c00246{left:293.333333pt;}
.x86_c00246{left:295.200000pt;}
.x62_c00246{left:296.400000pt;}
.x1_c00246{left:297.333333pt;}
.x99_c00246{left:298.400000pt;}
.x93_c00246{left:300.266667pt;}
.xa7_c00246{left:307.066667pt;}
.xb8_c00246{left:308.000000pt;}
.xa4_c00246{left:309.333333pt;}
.xb1_c00246{left:311.733333pt;}
.x74_c00246{left:312.800000pt;}
.xc0_c00246{left:314.800000pt;}
.x87_c00246{left:316.266667pt;}
.x78_c00246{left:317.466667pt;}
.xb7_c00246{left:318.933333pt;}
.xbf_c00246{left:320.533333pt;}
.xa1_c00246{left:321.866667pt;}
.x9e_c00246{left:324.133333pt;}
.x65_c00246{left:326.266667pt;}
.x10_c00246{left:327.333333pt;}
.xab_c00246{left:328.400000pt;}
.xa_c00246{left:329.866667pt;}
.x16_c00246{left:331.333333pt;}
.xbd_c00246{left:332.666667pt;}
.xc4_c00246{left:333.866667pt;}
.x75_c00246{left:336.800000pt;}
.x4d_c00246{left:338.533333pt;}
.xc5_c00246{left:340.133333pt;}
.x6e_c00246{left:341.200000pt;}
.x81_c00246{left:343.200000pt;}
.xaf_c00246{left:345.333333pt;}
.x9a_c00246{left:347.066667pt;}
.x17_c00246{left:348.266667pt;}
.x90_c00246{left:350.533333pt;}
.x56_c00246{left:351.866667pt;}
.x11_c00246{left:354.533333pt;}
.x9b_c00246{left:355.733333pt;}
.x63_c00246{left:356.933333pt;}
.xb4_c00246{left:360.933333pt;}
.x1b_c00246{left:362.933333pt;}
.x8c_c00246{left:365.600000pt;}
.x76_c00246{left:366.933333pt;}
.xb_c00246{left:368.533333pt;}
.x82_c00246{left:369.466667pt;}
.xac_c00246{left:373.866667pt;}
.xca_c00246{left:395.466667pt;}
.x10e_c00246{left:396.533333pt;}
.x101_c00246{left:398.133333pt;}
.x46_c00246{left:399.333333pt;}
.x134_c00246{left:405.866667pt;}
.xf3_c00246{left:408.000000pt;}
.x112_c00246{left:409.333333pt;}
.x11d_c00246{left:411.066667pt;}
.x10c_c00246{left:412.400000pt;}
.xe3_c00246{left:413.333333pt;}
.x1f_c00246{left:415.333333pt;}
.x12f_c00246{left:418.800000pt;}
.x116_c00246{left:422.000000pt;}
.x135_c00246{left:424.800000pt;}
.x126_c00246{left:426.133333pt;}
.x12b_c00246{left:428.133333pt;}
.x131_c00246{left:429.866667pt;}
.xf8_c00246{left:431.066667pt;}
.x20_c00246{left:433.200000pt;}
.xd7_c00246{left:435.600000pt;}
.xf4_c00246{left:436.800000pt;}
.xce_c00246{left:438.000000pt;}
.x10d_c00246{left:438.933333pt;}
.x11e_c00246{left:441.733333pt;}
.x118_c00246{left:443.200000pt;}
.xd8_c00246{left:445.200000pt;}
.xdd_c00246{left:446.533333pt;}
.xcf_c00246{left:448.266667pt;}
.xfc_c00246{left:449.600000pt;}
.x3c_c00246{left:450.533333pt;}
.xe6_c00246{left:453.066667pt;}
.x35_c00246{left:454.800000pt;}
.xcb_c00246{left:457.200000pt;}
.x4e_c00246{left:460.133333pt;}
.xfe_c00246{left:462.800000pt;}
.x2e_c00246{left:464.133333pt;}
.x125_c00246{left:465.466667pt;}
.x11f_c00246{left:466.400000pt;}
.xde_c00246{left:467.333333pt;}
.x47_c00246{left:469.066667pt;}
.xf9_c00246{left:471.066667pt;}
.x28_c00246{left:473.600000pt;}
.xcc_c00246{left:478.666667pt;}
.x127_c00246{left:479.600000pt;}
.x21_c00246{left:480.933333pt;}
.xd0_c00246{left:481.866667pt;}
.xe4_c00246{left:483.733333pt;}
.x136_c00246{left:484.933333pt;}
.x105_c00246{left:486.933333pt;}
.x3d_c00246{left:488.266667pt;}
.x36_c00246{left:489.333333pt;}
.xd1_c00246{left:492.133333pt;}
.xd9_c00246{left:494.533333pt;}
.x22_c00246{left:496.666667pt;}
.x130_c00246{left:497.866667pt;}
.x137_c00246{left:501.600000pt;}
.x29_c00246{left:502.666667pt;}
.x128_c00246{left:504.933333pt;}
.x106_c00246{left:505.866667pt;}
.x37_c00246{left:507.200000pt;}
.xfa_c00246{left:509.200000pt;}
.x2f_c00246{left:512.133333pt;}
.xf0_c00246{left:514.266667pt;}
.x3e_c00246{left:516.800000pt;}
.xda_c00246{left:518.800000pt;}
.x12e_c00246{left:520.266667pt;}
.xec_c00246{left:521.333333pt;}
.x23_c00246{left:525.200000pt;}
.xff_c00246{left:526.800000pt;}
.x30_c00246{left:529.733333pt;}
.x132_c00246{left:530.666667pt;}
.xdf_c00246{left:533.600000pt;}
.xcd_c00246{left:536.266667pt;}
.x38_c00246{left:537.333333pt;}
.x2a_c00246{left:540.133333pt;}
.xed_c00246{left:541.466667pt;}
.x31_c00246{left:542.800000pt;}
.x24_c00246{left:544.666667pt;}
.x120_c00246{left:546.666667pt;}
.x113_c00246{left:547.866667pt;}
.x107_c00246{left:549.066667pt;}
.x11c_c00246{left:550.666667pt;}
.x10f_c00246{left:553.466667pt;}
.xd2_c00246{left:555.200000pt;}
.x3f_c00246{left:557.733333pt;}
.xe7_c00246{left:559.333333pt;}
.x25_c00246{left:560.933333pt;}
.xf5_c00246{left:562.533333pt;}
.x12c_c00246{left:563.600000pt;}
.xe0_c00246{left:564.933333pt;}
.x2b_c00246{left:568.666667pt;}
.xf6_c00246{left:570.266667pt;}
.x102_c00246{left:571.200000pt;}
.x129_c00246{left:572.400000pt;}
.xd3_c00246{left:573.733333pt;}
.x138_c00246{left:576.133333pt;}
.x108_c00246{left:577.200000pt;}
.x39_c00246{left:578.666667pt;}
.xe5_c00246{left:581.066667pt;}
.x122_c00246{left:583.200000pt;}
.xdb_c00246{left:584.133333pt;}
.xee_c00246{left:586.800000pt;}
.x26_c00246{left:588.133333pt;}
.xd4_c00246{left:589.466667pt;}
.x100_c00246{left:590.800000pt;}
.xdc_c00246{left:594.666667pt;}
.x3a_c00246{left:596.000000pt;}
.x12a_c00246{left:597.333333pt;}
.xf7_c00246{left:599.333333pt;}
.x119_c00246{left:601.066667pt;}
.x110_c00246{left:603.333333pt;}
.x48_c00246{left:606.666667pt;}
.x40_c00246{left:609.866667pt;}
.xf1_c00246{left:612.800000pt;}
.x32_c00246{left:614.133333pt;}
.x123_c00246{left:615.200000pt;}
.xfd_c00246{left:617.333333pt;}
.x2c_c00246{left:618.933333pt;}
.x139_c00246{left:620.933333pt;}
.x49_c00246{left:622.000000pt;}
.x111_c00246{left:624.133333pt;}
.xe8_c00246{left:626.266667pt;}
.x3b_c00246{left:627.333333pt;}
.x109_c00246{left:628.666667pt;}
.x117_c00246{left:630.933333pt;}
.x114_c00246{left:633.333333pt;}
.x12d_c00246{left:634.266667pt;}
.x124_c00246{left:635.333333pt;}
.x2d_c00246{left:637.866667pt;}
.x10b_c00246{left:639.066667pt;}
.xe9_c00246{left:642.533333pt;}
.x33_c00246{left:643.600000pt;}
.xfb_c00246{left:646.133333pt;}
.xd5_c00246{left:647.066667pt;}
.xeb_c00246{left:649.466667pt;}
.x4f_c00246{left:651.466667pt;}
.xe1_c00246{left:652.666667pt;}
.x103_c00246{left:654.400000pt;}
.x115_c00246{left:657.600000pt;}
.x11a_c00246{left:659.066667pt;}
.xea_c00246{left:660.800000pt;}
.x10a_c00246{left:662.000000pt;}
.xf2_c00246{left:663.333333pt;}
.x34_c00246{left:665.333333pt;}
.x121_c00246{left:668.533333pt;}
.x11b_c00246{left:669.600000pt;}
.xd6_c00246{left:670.800000pt;}
.x3_c00246{left:672.800000pt;}
.x133_c00246{left:675.333333pt;}
.x104_c00246{left:679.333333pt;}
.x2_c00246{left:681.066667pt;}
.xe2_c00246{left:683.066667pt;}
.x27_c00246{left:685.466667pt;}
.x4_c00246{left:692.666667pt;}
.xef_c00246{left:694.000000pt;}
}





/* 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_c00247 {
    display:none;
  }
  .loading-indicator_c00247.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00247 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_c00247 { 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_c00247" -> "#page-container .classname_c00247")
 */
.pf_c00247 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00247 { /* 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_c00247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00247 { /* 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_c00247 { /* 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_c00247 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00247 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00247 {overflow:visible;}
  }
}
.c_c00247 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00247 { /* 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_c00247:after { /* webkit #35443 */
  content: '';
}
.t_c00247:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00247 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 */
}
.__c00247 { /* 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_c00247 { /* info for Javascript */
  display:none;
}
.l_c00247 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00247 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00247 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00247: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_c00247 {
    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_c00247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00247.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_c00247 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00247;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.000000;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;}
.mb6_c00247{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00247{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m84_c00247{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.md5_c00247{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.mea_c00247{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m74_c00247{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m115_c00247{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m77_c00247{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.me9_c00247{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m85_c00247{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.me8_c00247{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m76_c00247{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m112_c00247{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00247{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00247{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.meb_c00247{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00247{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.me3_c00247{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00247{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m75_c00247{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00247{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00247{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m101_c00247{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00247{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00247{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00247{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00247{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.me4_c00247{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00247{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m27_c00247{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00247{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m86_c00247{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma_c00247{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc_c00247{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m45_c00247{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00247{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9_c00247{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m17_c00247{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00247{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00247{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m51_c00247{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00247{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m63_c00247{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m40_c00247{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m7_c00247{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m87_c00247{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m62_c00247{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00247{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m106_c00247{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00247{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m8_c00247{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.md1_c00247{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00247{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00247{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m89_c00247{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m68_c00247{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00247{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mad_c00247{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m95_c00247{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00247{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m98_c00247{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me7_c00247{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00247{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00247{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00247{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mac_c00247{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m107_c00247{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00247{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.maf_c00247{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md_c00247{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00247{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m49_c00247{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00247{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m19_c00247{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00247{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m92_c00247{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m102_c00247{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m80_c00247{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m83_c00247{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m64_c00247{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00247{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m34_c00247{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00247{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m109_c00247{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m93_c00247{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00247{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00247{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me_c00247{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mae_c00247{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m61_c00247{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00247{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m100_c00247{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00247{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00247{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00247{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m13_c00247{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb_c00247{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00247{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m35_c00247{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00247{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00247{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mab_c00247{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me1_c00247{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mff_c00247{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m90_c00247{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00247{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00247{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00247{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m18_c00247{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m53_c00247{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m41_c00247{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m30_c00247{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00247{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m103_c00247{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m99_c00247{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00247{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00247{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00247{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00247{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00247{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00247{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00247{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m31_c00247{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00247{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00247{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m79_c00247{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00247{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m91_c00247{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00247{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m60_c00247{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m69_c00247{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00247{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m50_c00247{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00247{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mce_c00247{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00247{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00247{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m117_c00247{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00247{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mde_c00247{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m94_c00247{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m96_c00247{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00247{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m28_c00247{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m110_c00247{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00247{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00247{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00247{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00247{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4_c00247{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00247{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf_c00247{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00247{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00247{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m43_c00247{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m46_c00247{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m65_c00247{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m25_c00247{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m88_c00247{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00247{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00247{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m82_c00247{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me0_c00247{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m29_c00247{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m52_c00247{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md2_c00247{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00247{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m104_c00247{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m23_c00247{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m42_c00247{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00247{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m26_c00247{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00247{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m21_c00247{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00247{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00247{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m111_c00247{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m22_c00247{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m66_c00247{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.med_c00247{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m10_c00247{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00247{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mee_c00247{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m14_c00247{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00247{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00247{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m38_c00247{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m118_c00247{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m97_c00247{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00247{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00247{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00247{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m32_c00247{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00247{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m24_c00247{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m67_c00247{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m70_c00247{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00247{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m105_c00247{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m114_c00247{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mba_c00247{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m48_c00247{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m39_c00247{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00247{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m44_c00247{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m58_c00247{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m59_c00247{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00247{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m54_c00247{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m56_c00247{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00247{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00247{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mec_c00247{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00247{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00247{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m78_c00247{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m36_c00247{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00247{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md3_c00247{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m47_c00247{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m33_c00247{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00247{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md9_c00247{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00247{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00247{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00247{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00247{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00247{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00247{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m37_c00247{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00247{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m11_c00247{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mda_c00247{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me2_c00247{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00247{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m71_c00247{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mef_c00247{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.maa_c00247{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m108_c00247{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m57_c00247{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m116_c00247{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m16_c00247{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m113_c00247{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m81_c00247{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.md0_c00247{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00247{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md7_c00247{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00247{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00247{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00247{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.md8_c00247{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m73_c00247{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00247{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m15_c00247{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00247{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00247{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m12_c00247{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.mca_c00247{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00247{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md6_c00247{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00247{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00247{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m20_c00247{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me5_c00247{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.md4_c00247{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5_c00247{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00247{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00247{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00247{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m72_c00247{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00247{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00247{transform:matrix(0.461500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00247{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00247{transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);}
.me6_c00247{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00247{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2_c00247{transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500250,0.000000,0.000000,0.250000,0,0);}
.m55_c00247{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{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__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00247{word-spacing:-4.444126px;}
.ws0_c00247{word-spacing:-4.054054px;}
.ws6_c00247{word-spacing:-1.650655px;}
.ws9_c00247{word-spacing:0.000000px;}
.ws4_c00247{word-spacing:7.297297px;}
.ws7_c00247{word-spacing:7.471338px;}
.ws2_c00247{word-spacing:9.284024px;}
.ws5_c00247{word-spacing:69.861111px;}
.ws1_c00247{word-spacing:534.000000px;}
.ws3_c00247{word-spacing:543.571429px;}
.fc0_c00247{color:transparent;}
.fs8_c00247{font-size:18.000000px;}
.fs9_c00247{font-size:24.000000px;}
.fs4_c00247{font-size:30.000000px;}
.fs6_c00247{font-size:36.000000px;}
.fs5_c00247{font-size:42.000000px;}
.fsa_c00247{font-size:48.000000px;}
.fs0_c00247{font-size:54.000000px;}
.fs3_c00247{font-size:60.000000px;}
.fs2_c00247{font-size:66.000000px;}
.fs7_c00247{font-size:72.000000px;}
.fs1_c00247{font-size:78.000000px;}
.y0_c00247{bottom:0.000000px;}
.y78_c00247{bottom:173.850000px;}
.y3e_c00247{bottom:189.000000px;}
.y77_c00247{bottom:192.150000px;}
.y3d_c00247{bottom:203.700000px;}
.y76_c00247{bottom:209.400000px;}
.y3c_c00247{bottom:217.800000px;}
.y75_c00247{bottom:227.100000px;}
.y3b_c00247{bottom:232.200000px;}
.y74_c00247{bottom:244.800000px;}
.y73_c00247{bottom:262.800000px;}
.y3a_c00247{bottom:275.100000px;}
.y72_c00247{bottom:280.800000px;}
.y39_c00247{bottom:284.850000px;}
.y71_c00247{bottom:298.500000px;}
.y38_c00247{bottom:303.150000px;}
.y70_c00247{bottom:316.050000px;}
.y37_c00247{bottom:321.450000px;}
.y36_c00247{bottom:339.150000px;}
.y6f_c00247{bottom:342.300000px;}
.y35_c00247{bottom:357.150000px;}
.y6e_c00247{bottom:360.300000px;}
.y34_c00247{bottom:375.150000px;}
.y6d_c00247{bottom:378.300000px;}
.y33_c00247{bottom:396.000000px;}
.y6c_c00247{bottom:396.300000px;}
.y6b_c00247{bottom:414.300000px;}
.y32_c00247{bottom:415.050000px;}
.y6a_c00247{bottom:432.000000px;}
.y31_c00247{bottom:432.750000px;}
.y69_c00247{bottom:449.700000px;}
.y30_c00247{bottom:450.750000px;}
.y68_c00247{bottom:467.700000px;}
.y2f_c00247{bottom:469.050000px;}
.y67_c00247{bottom:485.700000px;}
.y2e_c00247{bottom:487.050000px;}
.y66_c00247{bottom:503.400000px;}
.y2d_c00247{bottom:504.300000px;}
.y65_c00247{bottom:521.400000px;}
.y2c_c00247{bottom:522.300000px;}
.y64_c00247{bottom:539.400000px;}
.y2b_c00247{bottom:540.000000px;}
.y63_c00247{bottom:557.100000px;}
.y2a_c00247{bottom:558.000000px;}
.y62_c00247{bottom:575.100000px;}
.y29_c00247{bottom:575.700000px;}
.y61_c00247{bottom:592.800000px;}
.y28_c00247{bottom:593.700000px;}
.y60_c00247{bottom:610.800000px;}
.y27_c00247{bottom:611.250000px;}
.y5f_c00247{bottom:628.500000px;}
.y26_c00247{bottom:629.100000px;}
.y5e_c00247{bottom:646.800000px;}
.y25_c00247{bottom:647.100000px;}
.y24_c00247{bottom:661.200000px;}
.y5d_c00247{bottom:664.500000px;}
.y23_c00247{bottom:668.400000px;}
.y5c_c00247{bottom:682.500000px;}
.y22_c00247{bottom:682.800000px;}
.y21_c00247{bottom:695.700000px;}
.y20_c00247{bottom:700.800000px;}
.y1f_c00247{bottom:708.300000px;}
.y1e_c00247{bottom:709.350000px;}
.y55_c00247{bottom:713.100000px;}
.y1d_c00247{bottom:719.100000px;}
.y54_c00247{bottom:727.500000px;}
.y5b_c00247{bottom:727.950000px;}
.y1c_c00247{bottom:736.800000px;}
.y53_c00247{bottom:741.900000px;}
.y1b_c00247{bottom:754.500000px;}
.y59_c00247{bottom:768.900000px;}
.y52_c00247{bottom:769.650000px;}
.y5a_c00247{bottom:770.400000px;}
.y1a_c00247{bottom:772.500000px;}
.y51_c00247{bottom:783.300000px;}
.y19_c00247{bottom:790.500000px;}
.y50_c00247{bottom:797.400000px;}
.y58_c00247{bottom:799.200000px;}
.y4f_c00247{bottom:812.100000px;}
.y15_c00247{bottom:819.600000px;}
.y57_c00247{bottom:823.650000px;}
.y4e_c00247{bottom:827.550000px;}
.y14_c00247{bottom:832.950000px;}
.y16_c00247{bottom:833.100000px;}
.y4d_c00247{bottom:840.900000px;}
.y13_c00247{bottom:847.350000px;}
.y4c_c00247{bottom:855.300000px;}
.y17_c00247{bottom:860.400000px;}
.y12_c00247{bottom:861.450000px;}
.y18_c00247{bottom:862.950000px;}
.y4b_c00247{bottom:869.400000px;}
.y11_c00247{bottom:876.300000px;}
.y4a_c00247{bottom:883.500000px;}
.y56_c00247{bottom:884.550000px;}
.y10_c00247{bottom:892.500000px;}
.y49_c00247{bottom:898.950000px;}
.y48_c00247{bottom:915.150000px;}
.yf_c00247{bottom:915.450000px;}
.ye_c00247{bottom:933.450000px;}
.y9_c00247{bottom:934.950000px;}
.y47_c00247{bottom:937.050000px;}
.yd_c00247{bottom:951.150000px;}
.y46_c00247{bottom:955.800000px;}
.yc_c00247{bottom:969.000000px;}
.y45_c00247{bottom:973.800000px;}
.yb_c00247{bottom:986.700000px;}
.y44_c00247{bottom:991.800000px;}
.ya_c00247{bottom:1004.700000px;}
.y43_c00247{bottom:1009.500000px;}
.y8_c00247{bottom:1022.400000px;}
.y42_c00247{bottom:1034.850000px;}
.y7_c00247{bottom:1053.300000px;}
.y41_c00247{bottom:1053.900000px;}
.y6_c00247{bottom:1071.300000px;}
.y40_c00247{bottom:1071.600000px;}
.y5_c00247{bottom:1089.300000px;}
.y4_c00247{bottom:1114.950000px;}
.y3f_c00247{bottom:1120.650000px;}
.y2_c00247{bottom:1140.900000px;}
.y3_c00247{bottom:1141.650000px;}
.y1_c00247{bottom:1152.000000px;}
.ha_c00247{height:18.000000px;}
.hb_c00247{height:24.000000px;}
.h6_c00247{height:30.000000px;}
.h8_c00247{height:36.000000px;}
.h7_c00247{height:42.000000px;}
.hc_c00247{height:48.000000px;}
.h2_c00247{height:54.000000px;}
.h5_c00247{height:60.000000px;}
.h4_c00247{height:66.000000px;}
.h9_c00247{height:72.000000px;}
.h3_c00247{height:78.000000px;}
.h1_c00247{height:1270.500000px;}
.h0_c00247{height:1270.799927px;}
.w1_c00247{width:963.000000px;}
.w0_c00247{width:963.359985px;}
.x0_c00247{left:0.000000px;}
.x47_c00247{left:182.850000px;}
.x2_c00247{left:183.900000px;}
.xa2_c00247{left:185.100000px;}
.x1_c00247{left:187.500000px;}
.x7d_c00247{left:190.500000px;}
.x4a_c00247{left:191.550000px;}
.x28_c00247{left:195.900000px;}
.x4b_c00247{left:197.700000px;}
.x42_c00247{left:199.800000px;}
.x11_c00247{left:201.000000px;}
.x83_c00247{left:202.050000px;}
.x9b_c00247{left:203.250000px;}
.x6e_c00247{left:205.950000px;}
.x64_c00247{left:209.550000px;}
.x50_c00247{left:210.900000px;}
.x53_c00247{left:211.950000px;}
.xa3_c00247{left:216.150000px;}
.x96_c00247{left:218.850000px;}
.x9_c00247{left:220.650000px;}
.x7f_c00247{left:222.450000px;}
.x4_c00247{left:225.000000px;}
.x9f_c00247{left:226.650000px;}
.x4c_c00247{left:228.000000px;}
.x21_c00247{left:229.350000px;}
.x43_c00247{left:230.400000px;}
.x51_c00247{left:233.250000px;}
.xa1_c00247{left:235.650000px;}
.x18_c00247{left:238.350000px;}
.x7b_c00247{left:240.150000px;}
.x34_c00247{left:241.350000px;}
.x2f_c00247{left:242.700000px;}
.x65_c00247{left:244.500000px;}
.x60_c00247{left:246.600000px;}
.x44_c00247{left:248.400000px;}
.xaa_c00247{left:250.350000px;}
.x5c_c00247{left:251.700000px;}
.x3c_c00247{left:253.050000px;}
.x12_c00247{left:255.300000px;}
.xa4_c00247{left:256.500000px;}
.x6a_c00247{left:258.600000px;}
.x7c_c00247{left:260.250000px;}
.x5_c00247{left:262.800000px;}
.x75_c00247{left:266.550000px;}
.x71_c00247{left:267.600000px;}
.x35_c00247{left:269.400000px;}
.x29_c00247{left:271.200000px;}
.x92_c00247{left:273.600000px;}
.x19_c00247{left:276.450000px;}
.x54_c00247{left:277.800000px;}
.x8e_c00247{left:279.750000px;}
.x89_c00247{left:280.950000px;}
.x84_c00247{left:282.300000px;}
.x4d_c00247{left:285.900000px;}
.x6f_c00247{left:286.950000px;}
.x36_c00247{left:288.450000px;}
.x2a_c00247{left:291.000000px;}
.x87_c00247{left:293.400000px;}
.xa_c00247{left:296.550000px;}
.x13_c00247{left:298.500000px;}
.x22_c00247{left:299.550000px;}
.x9c_c00247{left:301.200000px;}
.x8a_c00247{left:302.250000px;}
.xa0_c00247{left:304.350000px;}
.x1a_c00247{left:306.000000px;}
.x30_c00247{left:308.250000px;}
.x99_c00247{left:309.300000px;}
.x80_c00247{left:311.400000px;}
.x6_c00247{left:312.450000px;}
.x58_c00247{left:315.150000px;}
.xb_c00247{left:318.450000px;}
.x88_c00247{left:320.400000px;}
.x3d_c00247{left:321.450000px;}
.x45_c00247{left:322.500000px;}
.x37_c00247{left:324.150000px;}
.x52_c00247{left:326.850000px;}
.x1b_c00247{left:331.500000px;}
.xa5_c00247{left:333.600000px;}
.x98_c00247{left:335.550000px;}
.x23_c00247{left:340.200000px;}
.x79_c00247{left:341.400000px;}
.xc_c00247{left:343.950000px;}
.x48_c00247{left:346.650000px;}
.x66_c00247{left:347.850000px;}
.xab_c00247{left:349.050000px;}
.x8f_c00247{left:350.700000px;}
.x2b_c00247{left:351.900000px;}
.x8b_c00247{left:355.500000px;}
.x9d_c00247{left:357.750000px;}
.x24_c00247{left:361.800000px;}
.x81_c00247{left:363.600000px;}
.x93_c00247{left:365.100000px;}
.x38_c00247{left:366.750000px;}
.x76_c00247{left:368.400000px;}
.x31_c00247{left:369.450000px;}
.xd_c00247{left:370.650000px;}
.x8c_c00247{left:372.450000px;}
.x61_c00247{left:374.400000px;}
.x14_c00247{left:375.600000px;}
.x73_c00247{left:376.650000px;}
.x1c_c00247{left:379.350000px;}
.x6b_c00247{left:382.350000px;}
.x8d_c00247{left:383.550000px;}
.x2c_c00247{left:384.600000px;}
.x7_c00247{left:386.550000px;}
.x32_c00247{left:388.200000px;}
.x67_c00247{left:390.000000px;}
.x91_c00247{left:391.350000px;}
.xe_c00247{left:392.550000px;}
.xa6_c00247{left:394.050000px;}
.x97_c00247{left:399.600000px;}
.x3e_c00247{left:400.650000px;}
.x9a_c00247{left:403.350000px;}
.x77_c00247{left:404.400000px;}
.x94_c00247{left:405.450000px;}
.x15_c00247{left:406.500000px;}
.x25_c00247{left:407.550000px;}
.x2d_c00247{left:410.100000px;}
.x59_c00247{left:412.050000px;}
.x4e_c00247{left:413.550000px;}
.x1d_c00247{left:416.100000px;}
.x39_c00247{left:417.150000px;}
.x8_c00247{left:419.700000px;}
.x3_c00247{left:423.300000px;}
.x1e_c00247{left:424.350000px;}
.x78_c00247{left:425.700000px;}
.xf_c00247{left:427.800000px;}
.xac_c00247{left:428.850000px;}
.x68_c00247{left:430.350000px;}
.x74_c00247{left:431.700000px;}
.x5d_c00247{left:433.200000px;}
.x5a_c00247{left:434.700000px;}
.x85_c00247{left:436.800000px;}
.x3f_c00247{left:438.150000px;}
.x16_c00247{left:440.400000px;}
.x9e_c00247{left:442.350000px;}
.x1f_c00247{left:443.400000px;}
.x55_c00247{left:446.250000px;}
.x4f_c00247{left:448.500000px;}
.x26_c00247{left:450.000000px;}
.x82_c00247{left:451.800000px;}
.x72_c00247{left:453.000000px;}
.x2e_c00247{left:454.050000px;}
.x70_c00247{left:457.950000px;}
.x33_c00247{left:459.450000px;}
.xa7_c00247{left:461.250000px;}
.x17_c00247{left:462.300000px;}
.x7a_c00247{left:463.350000px;}
.x5e_c00247{left:465.600000px;}
.x20_c00247{left:468.300000px;}
.x49_c00247{left:469.800000px;}
.x63_c00247{left:470.850000px;}
.x27_c00247{left:471.900000px;}
.x7e_c00247{left:474.150000px;}
.x56_c00247{left:475.200000px;}
.x3a_c00247{left:476.250000px;}
.x40_c00247{left:477.750000px;}
.xa8_c00247{left:479.400000px;}
.x6c_c00247{left:480.600000px;}
.x10_c00247{left:483.300000px;}
.x5b_c00247{left:484.800000px;}
.x5f_c00247{left:486.450000px;}
.x62_c00247{left:489.600000px;}
.x46_c00247{left:490.950000px;}
.x41_c00247{left:493.200000px;}
.x86_c00247{left:495.000000px;}
.xa9_c00247{left:499.200000px;}
.x6d_c00247{left:502.200000px;}
.x3b_c00247{left:503.550000px;}
.x57_c00247{left:505.050000px;}
.x95_c00247{left:508.350000px;}
.x69_c00247{left:509.850000px;}
.x90_c00247{left:516.300000px;}
.xcf_c00247{left:540.000000px;}
.x13b_c00247{left:541.500000px;}
.xad_c00247{left:542.550000px;}
.xf4_c00247{left:552.000000px;}
.xef_c00247{left:553.350000px;}
.xbe_c00247{left:556.350000px;}
.xc6_c00247{left:557.400000px;}
.x12a_c00247{left:558.450000px;}
.x103_c00247{left:566.550000px;}
.xf7_c00247{left:568.200000px;}
.xb3_c00247{left:575.250000px;}
.x12b_c00247{left:577.500000px;}
.x11b_c00247{left:580.200000px;}
.x13f_c00247{left:582.600000px;}
.xd0_c00247{left:584.700000px;}
.x11e_c00247{left:586.350000px;}
.xae_c00247{left:588.300000px;}
.xe9_c00247{left:589.650000px;}
.x115_c00247{left:591.150000px;}
.x13d_c00247{left:593.250000px;}
.x10c_c00247{left:594.750000px;}
.xf0_c00247{left:595.800000px;}
.xbf_c00247{left:597.750000px;}
.x134_c00247{left:598.800000px;}
.xe1_c00247{left:599.850000px;}
.xd4_c00247{left:601.200000px;}
.x145_c00247{left:603.150000px;}
.xea_c00247{left:605.100000px;}
.xff_c00247{left:607.050000px;}
.x119_c00247{left:608.550000px;}
.xf1_c00247{left:611.250000px;}
.xfa_c00247{left:612.600000px;}
.x12d_c00247{left:614.100000px;}
.xe2_c00247{left:615.300000px;}
.x130_c00247{left:617.250000px;}
.xd9_c00247{left:619.200000px;}
.xc7_c00247{left:622.650000px;}
.xcd_c00247{left:624.450000px;}
.xaf_c00247{left:626.100000px;}
.x135_c00247{left:629.100000px;}
.x107_c00247{left:630.300000px;}
.x137_c00247{left:632.850000px;}
.xc0_c00247{left:634.050000px;}
.xb4_c00247{left:636.150000px;}
.xeb_c00247{left:637.800000px;}
.x116_c00247{left:640.500000px;}
.xda_c00247{left:644.400000px;}
.x108_c00247{left:645.750000px;}
.x125_c00247{left:648.000000px;}
.xc1_c00247{left:651.750000px;}
.x147_c00247{left:653.700000px;}
.xd5_c00247{left:655.950000px;}
.xb5_c00247{left:657.750000px;}
.xdb_c00247{left:659.550000px;}
.xe3_c00247{left:661.050000px;}
.x11f_c00247{left:664.200000px;}
.x10f_c00247{left:666.000000px;}
.xec_c00247{left:667.350000px;}
.x104_c00247{left:668.400000px;}
.x140_c00247{left:674.400000px;}
.xfb_c00247{left:675.600000px;}
.xb0_c00247{left:677.550000px;}
.xfc_c00247{left:682.050000px;}
.xb6_c00247{left:683.700000px;}
.xe4_c00247{left:684.750000px;}
.xdc_c00247{left:685.800000px;}
.x141_c00247{left:688.050000px;}
.x121_c00247{left:689.400000px;}
.x117_c00247{left:690.600000px;}
.xc8_c00247{left:693.600000px;}
.x148_c00247{left:696.900000px;}
.xc2_c00247{left:700.350000px;}
.xdd_c00247{left:702.000000px;}
.x102_c00247{left:703.050000px;}
.xd6_c00247{left:706.650000px;}
.xb7_c00247{left:709.950000px;}
.xc9_c00247{left:711.900000px;}
.xd1_c00247{left:713.250000px;}
.x149_c00247{left:715.950000px;}
.x10e_c00247{left:717.150000px;}
.x126_c00247{left:718.200000px;}
.x110_c00247{left:719.700000px;}
.xe5_c00247{left:722.850000px;}
.x106_c00247{left:724.800000px;}
.xd7_c00247{left:726.750000px;}
.x111_c00247{left:730.200000px;}
.xed_c00247{left:731.400000px;}
.xb1_c00247{left:733.050000px;}
.x100_c00247{left:735.600000px;}
.x109_c00247{left:737.550000px;}
.xfd_c00247{left:739.650000px;}
.x127_c00247{left:741.300000px;}
.xca_c00247{left:742.500000px;}
.x10b_c00247{left:744.450000px;}
.xee_c00247{left:745.800000px;}
.x132_c00247{left:748.200000px;}
.x101_c00247{left:751.050000px;}
.xb8_c00247{left:752.100000px;}
.x13c_c00247{left:753.900000px;}
.x120_c00247{left:757.500000px;}
.xc3_c00247{left:760.050000px;}
.xf2_c00247{left:761.250000px;}
.x138_c00247{left:762.900000px;}
.x105_c00247{left:765.900000px;}
.xb2_c00247{left:768.000000px;}
.x10a_c00247{left:769.200000px;}
.xfe_c00247{left:770.550000px;}
.xb9_c00247{left:771.600000px;}
.x12c_c00247{left:772.950000px;}
.x146_c00247{left:774.000000px;}
.xd8_c00247{left:776.100000px;}
.xe6_c00247{left:777.900000px;}
.xf3_c00247{left:779.550000px;}
.x143_c00247{left:782.100000px;}
.x136_c00247{left:783.450000px;}
.x112_c00247{left:785.250000px;}
.x14a_c00247{left:786.300000px;}
.xde_c00247{left:788.400000px;}
.x11a_c00247{left:791.850000px;}
.x118_c00247{left:793.200000px;}
.xd2_c00247{left:795.000000px;}
.x13a_c00247{left:796.350000px;}
.xba_c00247{left:797.550000px;}
.xf8_c00247{left:802.500000px;}
.xc4_c00247{left:804.300000px;}
.xcb_c00247{left:806.250000px;}
.x122_c00247{left:807.450000px;}
.x128_c00247{left:808.650000px;}
.x12f_c00247{left:810.300000px;}
.xdf_c00247{left:812.550000px;}
.x12e_c00247{left:813.600000px;}
.x124_c00247{left:814.950000px;}
.x113_c00247{left:816.450000px;}
.xce_c00247{left:818.550000px;}
.xe7_c00247{left:820.800000px;}
.xbb_c00247{left:824.550000px;}
.xc5_c00247{left:825.900000px;}
.xe0_c00247{left:828.000000px;}
.x129_c00247{left:830.250000px;}
.xf5_c00247{left:831.300000px;}
.xf9_c00247{left:833.100000px;}
.x139_c00247{left:834.450000px;}
.xbc_c00247{left:836.100000px;}
.x13e_c00247{left:838.050000px;}
.x131_c00247{left:839.700000px;}
.xcc_c00247{left:842.250000px;}
.x142_c00247{left:843.450000px;}
.x11c_c00247{left:845.100000px;}
.x144_c00247{left:846.900000px;}
.x11d_c00247{left:851.250000px;}
.xbd_c00247{left:855.150000px;}
.x114_c00247{left:857.100000px;}
.xf6_c00247{left:859.800000px;}
.xd3_c00247{left:860.850000px;}
.x10d_c00247{left:861.900000px;}
.x133_c00247{left:864.750000px;}
.xe8_c00247{left:869.700000px;}
.x123_c00247{left:872.550000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws8_c00247{word-spacing:-3.950334pt;}
.ws0_c00247{word-spacing:-3.603604pt;}
.ws6_c00247{word-spacing:-1.467249pt;}
.ws9_c00247{word-spacing:0.000000pt;}
.ws4_c00247{word-spacing:6.486486pt;}
.ws7_c00247{word-spacing:6.641189pt;}
.ws2_c00247{word-spacing:8.252465pt;}
.ws5_c00247{word-spacing:62.098765pt;}
.ws1_c00247{word-spacing:474.666667pt;}
.ws3_c00247{word-spacing:483.174603pt;}
.fs8_c00247{font-size:16.000000pt;}
.fs9_c00247{font-size:21.333333pt;}
.fs4_c00247{font-size:26.666667pt;}
.fs6_c00247{font-size:32.000000pt;}
.fs5_c00247{font-size:37.333333pt;}
.fsa_c00247{font-size:42.666667pt;}
.fs0_c00247{font-size:48.000000pt;}
.fs3_c00247{font-size:53.333333pt;}
.fs2_c00247{font-size:58.666667pt;}
.fs7_c00247{font-size:64.000000pt;}
.fs1_c00247{font-size:69.333333pt;}
.y0_c00247{bottom:0.000000pt;}
.y78_c00247{bottom:154.533333pt;}
.y3e_c00247{bottom:168.000000pt;}
.y77_c00247{bottom:170.800000pt;}
.y3d_c00247{bottom:181.066667pt;}
.y76_c00247{bottom:186.133333pt;}
.y3c_c00247{bottom:193.600000pt;}
.y75_c00247{bottom:201.866667pt;}
.y3b_c00247{bottom:206.400000pt;}
.y74_c00247{bottom:217.600000pt;}
.y73_c00247{bottom:233.600000pt;}
.y3a_c00247{bottom:244.533333pt;}
.y72_c00247{bottom:249.600000pt;}
.y39_c00247{bottom:253.200000pt;}
.y71_c00247{bottom:265.333333pt;}
.y38_c00247{bottom:269.466667pt;}
.y70_c00247{bottom:280.933333pt;}
.y37_c00247{bottom:285.733333pt;}
.y36_c00247{bottom:301.466667pt;}
.y6f_c00247{bottom:304.266667pt;}
.y35_c00247{bottom:317.466667pt;}
.y6e_c00247{bottom:320.266667pt;}
.y34_c00247{bottom:333.466667pt;}
.y6d_c00247{bottom:336.266667pt;}
.y33_c00247{bottom:352.000000pt;}
.y6c_c00247{bottom:352.266667pt;}
.y6b_c00247{bottom:368.266667pt;}
.y32_c00247{bottom:368.933333pt;}
.y6a_c00247{bottom:384.000000pt;}
.y31_c00247{bottom:384.666667pt;}
.y69_c00247{bottom:399.733333pt;}
.y30_c00247{bottom:400.666667pt;}
.y68_c00247{bottom:415.733333pt;}
.y2f_c00247{bottom:416.933333pt;}
.y67_c00247{bottom:431.733333pt;}
.y2e_c00247{bottom:432.933333pt;}
.y66_c00247{bottom:447.466667pt;}
.y2d_c00247{bottom:448.266667pt;}
.y65_c00247{bottom:463.466667pt;}
.y2c_c00247{bottom:464.266667pt;}
.y64_c00247{bottom:479.466667pt;}
.y2b_c00247{bottom:480.000000pt;}
.y63_c00247{bottom:495.200000pt;}
.y2a_c00247{bottom:496.000000pt;}
.y62_c00247{bottom:511.200000pt;}
.y29_c00247{bottom:511.733333pt;}
.y61_c00247{bottom:526.933333pt;}
.y28_c00247{bottom:527.733333pt;}
.y60_c00247{bottom:542.933333pt;}
.y27_c00247{bottom:543.333333pt;}
.y5f_c00247{bottom:558.666667pt;}
.y26_c00247{bottom:559.200000pt;}
.y5e_c00247{bottom:574.933333pt;}
.y25_c00247{bottom:575.200000pt;}
.y24_c00247{bottom:587.733333pt;}
.y5d_c00247{bottom:590.666667pt;}
.y23_c00247{bottom:594.133333pt;}
.y5c_c00247{bottom:606.666667pt;}
.y22_c00247{bottom:606.933333pt;}
.y21_c00247{bottom:618.400000pt;}
.y20_c00247{bottom:622.933333pt;}
.y1f_c00247{bottom:629.600000pt;}
.y1e_c00247{bottom:630.533333pt;}
.y55_c00247{bottom:633.866667pt;}
.y1d_c00247{bottom:639.200000pt;}
.y54_c00247{bottom:646.666667pt;}
.y5b_c00247{bottom:647.066667pt;}
.y1c_c00247{bottom:654.933333pt;}
.y53_c00247{bottom:659.466667pt;}
.y1b_c00247{bottom:670.666667pt;}
.y59_c00247{bottom:683.466667pt;}
.y52_c00247{bottom:684.133333pt;}
.y5a_c00247{bottom:684.800000pt;}
.y1a_c00247{bottom:686.666667pt;}
.y51_c00247{bottom:696.266667pt;}
.y19_c00247{bottom:702.666667pt;}
.y50_c00247{bottom:708.800000pt;}
.y58_c00247{bottom:710.400000pt;}
.y4f_c00247{bottom:721.866667pt;}
.y15_c00247{bottom:728.533333pt;}
.y57_c00247{bottom:732.133333pt;}
.y4e_c00247{bottom:735.600000pt;}
.y14_c00247{bottom:740.400000pt;}
.y16_c00247{bottom:740.533333pt;}
.y4d_c00247{bottom:747.466667pt;}
.y13_c00247{bottom:753.200000pt;}
.y4c_c00247{bottom:760.266667pt;}
.y17_c00247{bottom:764.800000pt;}
.y12_c00247{bottom:765.733333pt;}
.y18_c00247{bottom:767.066667pt;}
.y4b_c00247{bottom:772.800000pt;}
.y11_c00247{bottom:778.933333pt;}
.y4a_c00247{bottom:785.333333pt;}
.y56_c00247{bottom:786.266667pt;}
.y10_c00247{bottom:793.333333pt;}
.y49_c00247{bottom:799.066667pt;}
.y48_c00247{bottom:813.466667pt;}
.yf_c00247{bottom:813.733333pt;}
.ye_c00247{bottom:829.733333pt;}
.y9_c00247{bottom:831.066667pt;}
.y47_c00247{bottom:832.933333pt;}
.yd_c00247{bottom:845.466667pt;}
.y46_c00247{bottom:849.600000pt;}
.yc_c00247{bottom:861.333333pt;}
.y45_c00247{bottom:865.600000pt;}
.yb_c00247{bottom:877.066667pt;}
.y44_c00247{bottom:881.600000pt;}
.ya_c00247{bottom:893.066667pt;}
.y43_c00247{bottom:897.333333pt;}
.y8_c00247{bottom:908.800000pt;}
.y42_c00247{bottom:919.866667pt;}
.y7_c00247{bottom:936.266667pt;}
.y41_c00247{bottom:936.800000pt;}
.y6_c00247{bottom:952.266667pt;}
.y40_c00247{bottom:952.533333pt;}
.y5_c00247{bottom:968.266667pt;}
.y4_c00247{bottom:991.066667pt;}
.y3f_c00247{bottom:996.133333pt;}
.y2_c00247{bottom:1014.133333pt;}
.y3_c00247{bottom:1014.800000pt;}
.y1_c00247{bottom:1024.000000pt;}
.ha_c00247{height:16.000000pt;}
.hb_c00247{height:21.333333pt;}
.h6_c00247{height:26.666667pt;}
.h8_c00247{height:32.000000pt;}
.h7_c00247{height:37.333333pt;}
.hc_c00247{height:42.666667pt;}
.h2_c00247{height:48.000000pt;}
.h5_c00247{height:53.333333pt;}
.h4_c00247{height:58.666667pt;}
.h9_c00247{height:64.000000pt;}
.h3_c00247{height:69.333333pt;}
.h1_c00247{height:1129.333333pt;}
.h0_c00247{height:1129.599935pt;}
.w1_c00247{width:856.000000pt;}
.w0_c00247{width:856.319987pt;}
.x0_c00247{left:0.000000pt;}
.x47_c00247{left:162.533333pt;}
.x2_c00247{left:163.466667pt;}
.xa2_c00247{left:164.533333pt;}
.x1_c00247{left:166.666667pt;}
.x7d_c00247{left:169.333333pt;}
.x4a_c00247{left:170.266667pt;}
.x28_c00247{left:174.133333pt;}
.x4b_c00247{left:175.733333pt;}
.x42_c00247{left:177.600000pt;}
.x11_c00247{left:178.666667pt;}
.x83_c00247{left:179.600000pt;}
.x9b_c00247{left:180.666667pt;}
.x6e_c00247{left:183.066667pt;}
.x64_c00247{left:186.266667pt;}
.x50_c00247{left:187.466667pt;}
.x53_c00247{left:188.400000pt;}
.xa3_c00247{left:192.133333pt;}
.x96_c00247{left:194.533333pt;}
.x9_c00247{left:196.133333pt;}
.x7f_c00247{left:197.733333pt;}
.x4_c00247{left:200.000000pt;}
.x9f_c00247{left:201.466667pt;}
.x4c_c00247{left:202.666667pt;}
.x21_c00247{left:203.866667pt;}
.x43_c00247{left:204.800000pt;}
.x51_c00247{left:207.333333pt;}
.xa1_c00247{left:209.466667pt;}
.x18_c00247{left:211.866667pt;}
.x7b_c00247{left:213.466667pt;}
.x34_c00247{left:214.533333pt;}
.x2f_c00247{left:215.733333pt;}
.x65_c00247{left:217.333333pt;}
.x60_c00247{left:219.200000pt;}
.x44_c00247{left:220.800000pt;}
.xaa_c00247{left:222.533333pt;}
.x5c_c00247{left:223.733333pt;}
.x3c_c00247{left:224.933333pt;}
.x12_c00247{left:226.933333pt;}
.xa4_c00247{left:228.000000pt;}
.x6a_c00247{left:229.866667pt;}
.x7c_c00247{left:231.333333pt;}
.x5_c00247{left:233.600000pt;}
.x75_c00247{left:236.933333pt;}
.x71_c00247{left:237.866667pt;}
.x35_c00247{left:239.466667pt;}
.x29_c00247{left:241.066667pt;}
.x92_c00247{left:243.200000pt;}
.x19_c00247{left:245.733333pt;}
.x54_c00247{left:246.933333pt;}
.x8e_c00247{left:248.666667pt;}
.x89_c00247{left:249.733333pt;}
.x84_c00247{left:250.933333pt;}
.x4d_c00247{left:254.133333pt;}
.x6f_c00247{left:255.066667pt;}
.x36_c00247{left:256.400000pt;}
.x2a_c00247{left:258.666667pt;}
.x87_c00247{left:260.800000pt;}
.xa_c00247{left:263.600000pt;}
.x13_c00247{left:265.333333pt;}
.x22_c00247{left:266.266667pt;}
.x9c_c00247{left:267.733333pt;}
.x8a_c00247{left:268.666667pt;}
.xa0_c00247{left:270.533333pt;}
.x1a_c00247{left:272.000000pt;}
.x30_c00247{left:274.000000pt;}
.x99_c00247{left:274.933333pt;}
.x80_c00247{left:276.800000pt;}
.x6_c00247{left:277.733333pt;}
.x58_c00247{left:280.133333pt;}
.xb_c00247{left:283.066667pt;}
.x88_c00247{left:284.800000pt;}
.x3d_c00247{left:285.733333pt;}
.x45_c00247{left:286.666667pt;}
.x37_c00247{left:288.133333pt;}
.x52_c00247{left:290.533333pt;}
.x1b_c00247{left:294.666667pt;}
.xa5_c00247{left:296.533333pt;}
.x98_c00247{left:298.266667pt;}
.x23_c00247{left:302.400000pt;}
.x79_c00247{left:303.466667pt;}
.xc_c00247{left:305.733333pt;}
.x48_c00247{left:308.133333pt;}
.x66_c00247{left:309.200000pt;}
.xab_c00247{left:310.266667pt;}
.x8f_c00247{left:311.733333pt;}
.x2b_c00247{left:312.800000pt;}
.x8b_c00247{left:316.000000pt;}
.x9d_c00247{left:318.000000pt;}
.x24_c00247{left:321.600000pt;}
.x81_c00247{left:323.200000pt;}
.x93_c00247{left:324.533333pt;}
.x38_c00247{left:326.000000pt;}
.x76_c00247{left:327.466667pt;}
.x31_c00247{left:328.400000pt;}
.xd_c00247{left:329.466667pt;}
.x8c_c00247{left:331.066667pt;}
.x61_c00247{left:332.800000pt;}
.x14_c00247{left:333.866667pt;}
.x73_c00247{left:334.800000pt;}
.x1c_c00247{left:337.200000pt;}
.x6b_c00247{left:339.866667pt;}
.x8d_c00247{left:340.933333pt;}
.x2c_c00247{left:341.866667pt;}
.x7_c00247{left:343.600000pt;}
.x32_c00247{left:345.066667pt;}
.x67_c00247{left:346.666667pt;}
.x91_c00247{left:347.866667pt;}
.xe_c00247{left:348.933333pt;}
.xa6_c00247{left:350.266667pt;}
.x97_c00247{left:355.200000pt;}
.x3e_c00247{left:356.133333pt;}
.x9a_c00247{left:358.533333pt;}
.x77_c00247{left:359.466667pt;}
.x94_c00247{left:360.400000pt;}
.x15_c00247{left:361.333333pt;}
.x25_c00247{left:362.266667pt;}
.x2d_c00247{left:364.533333pt;}
.x59_c00247{left:366.266667pt;}
.x4e_c00247{left:367.600000pt;}
.x1d_c00247{left:369.866667pt;}
.x39_c00247{left:370.800000pt;}
.x8_c00247{left:373.066667pt;}
.x3_c00247{left:376.266667pt;}
.x1e_c00247{left:377.200000pt;}
.x78_c00247{left:378.400000pt;}
.xf_c00247{left:380.266667pt;}
.xac_c00247{left:381.200000pt;}
.x68_c00247{left:382.533333pt;}
.x74_c00247{left:383.733333pt;}
.x5d_c00247{left:385.066667pt;}
.x5a_c00247{left:386.400000pt;}
.x85_c00247{left:388.266667pt;}
.x3f_c00247{left:389.466667pt;}
.x16_c00247{left:391.466667pt;}
.x9e_c00247{left:393.200000pt;}
.x1f_c00247{left:394.133333pt;}
.x55_c00247{left:396.666667pt;}
.x4f_c00247{left:398.666667pt;}
.x26_c00247{left:400.000000pt;}
.x82_c00247{left:401.600000pt;}
.x72_c00247{left:402.666667pt;}
.x2e_c00247{left:403.600000pt;}
.x70_c00247{left:407.066667pt;}
.x33_c00247{left:408.400000pt;}
.xa7_c00247{left:410.000000pt;}
.x17_c00247{left:410.933333pt;}
.x7a_c00247{left:411.866667pt;}
.x5e_c00247{left:413.866667pt;}
.x20_c00247{left:416.266667pt;}
.x49_c00247{left:417.600000pt;}
.x63_c00247{left:418.533333pt;}
.x27_c00247{left:419.466667pt;}
.x7e_c00247{left:421.466667pt;}
.x56_c00247{left:422.400000pt;}
.x3a_c00247{left:423.333333pt;}
.x40_c00247{left:424.666667pt;}
.xa8_c00247{left:426.133333pt;}
.x6c_c00247{left:427.200000pt;}
.x10_c00247{left:429.600000pt;}
.x5b_c00247{left:430.933333pt;}
.x5f_c00247{left:432.400000pt;}
.x62_c00247{left:435.200000pt;}
.x46_c00247{left:436.400000pt;}
.x41_c00247{left:438.400000pt;}
.x86_c00247{left:440.000000pt;}
.xa9_c00247{left:443.733333pt;}
.x6d_c00247{left:446.400000pt;}
.x3b_c00247{left:447.600000pt;}
.x57_c00247{left:448.933333pt;}
.x95_c00247{left:451.866667pt;}
.x69_c00247{left:453.200000pt;}
.x90_c00247{left:458.933333pt;}
.xcf_c00247{left:480.000000pt;}
.x13b_c00247{left:481.333333pt;}
.xad_c00247{left:482.266667pt;}
.xf4_c00247{left:490.666667pt;}
.xef_c00247{left:491.866667pt;}
.xbe_c00247{left:494.533333pt;}
.xc6_c00247{left:495.466667pt;}
.x12a_c00247{left:496.400000pt;}
.x103_c00247{left:503.600000pt;}
.xf7_c00247{left:505.066667pt;}
.xb3_c00247{left:511.333333pt;}
.x12b_c00247{left:513.333333pt;}
.x11b_c00247{left:515.733333pt;}
.x13f_c00247{left:517.866667pt;}
.xd0_c00247{left:519.733333pt;}
.x11e_c00247{left:521.200000pt;}
.xae_c00247{left:522.933333pt;}
.xe9_c00247{left:524.133333pt;}
.x115_c00247{left:525.466667pt;}
.x13d_c00247{left:527.333333pt;}
.x10c_c00247{left:528.666667pt;}
.xf0_c00247{left:529.600000pt;}
.xbf_c00247{left:531.333333pt;}
.x134_c00247{left:532.266667pt;}
.xe1_c00247{left:533.200000pt;}
.xd4_c00247{left:534.400000pt;}
.x145_c00247{left:536.133333pt;}
.xea_c00247{left:537.866667pt;}
.xff_c00247{left:539.600000pt;}
.x119_c00247{left:540.933333pt;}
.xf1_c00247{left:543.333333pt;}
.xfa_c00247{left:544.533333pt;}
.x12d_c00247{left:545.866667pt;}
.xe2_c00247{left:546.933333pt;}
.x130_c00247{left:548.666667pt;}
.xd9_c00247{left:550.400000pt;}
.xc7_c00247{left:553.466667pt;}
.xcd_c00247{left:555.066667pt;}
.xaf_c00247{left:556.533333pt;}
.x135_c00247{left:559.200000pt;}
.x107_c00247{left:560.266667pt;}
.x137_c00247{left:562.533333pt;}
.xc0_c00247{left:563.600000pt;}
.xb4_c00247{left:565.466667pt;}
.xeb_c00247{left:566.933333pt;}
.x116_c00247{left:569.333333pt;}
.xda_c00247{left:572.800000pt;}
.x108_c00247{left:574.000000pt;}
.x125_c00247{left:576.000000pt;}
.xc1_c00247{left:579.333333pt;}
.x147_c00247{left:581.066667pt;}
.xd5_c00247{left:583.066667pt;}
.xb5_c00247{left:584.666667pt;}
.xdb_c00247{left:586.266667pt;}
.xe3_c00247{left:587.600000pt;}
.x11f_c00247{left:590.400000pt;}
.x10f_c00247{left:592.000000pt;}
.xec_c00247{left:593.200000pt;}
.x104_c00247{left:594.133333pt;}
.x140_c00247{left:599.466667pt;}
.xfb_c00247{left:600.533333pt;}
.xb0_c00247{left:602.266667pt;}
.xfc_c00247{left:606.266667pt;}
.xb6_c00247{left:607.733333pt;}
.xe4_c00247{left:608.666667pt;}
.xdc_c00247{left:609.600000pt;}
.x141_c00247{left:611.600000pt;}
.x121_c00247{left:612.800000pt;}
.x117_c00247{left:613.866667pt;}
.xc8_c00247{left:616.533333pt;}
.x148_c00247{left:619.466667pt;}
.xc2_c00247{left:622.533333pt;}
.xdd_c00247{left:624.000000pt;}
.x102_c00247{left:624.933333pt;}
.xd6_c00247{left:628.133333pt;}
.xb7_c00247{left:631.066667pt;}
.xc9_c00247{left:632.800000pt;}
.xd1_c00247{left:634.000000pt;}
.x149_c00247{left:636.400000pt;}
.x10e_c00247{left:637.466667pt;}
.x126_c00247{left:638.400000pt;}
.x110_c00247{left:639.733333pt;}
.xe5_c00247{left:642.533333pt;}
.x106_c00247{left:644.266667pt;}
.xd7_c00247{left:646.000000pt;}
.x111_c00247{left:649.066667pt;}
.xed_c00247{left:650.133333pt;}
.xb1_c00247{left:651.600000pt;}
.x100_c00247{left:653.866667pt;}
.x109_c00247{left:655.600000pt;}
.xfd_c00247{left:657.466667pt;}
.x127_c00247{left:658.933333pt;}
.xca_c00247{left:660.000000pt;}
.x10b_c00247{left:661.733333pt;}
.xee_c00247{left:662.933333pt;}
.x132_c00247{left:665.066667pt;}
.x101_c00247{left:667.600000pt;}
.xb8_c00247{left:668.533333pt;}
.x13c_c00247{left:670.133333pt;}
.x120_c00247{left:673.333333pt;}
.xc3_c00247{left:675.600000pt;}
.xf2_c00247{left:676.666667pt;}
.x138_c00247{left:678.133333pt;}
.x105_c00247{left:680.800000pt;}
.xb2_c00247{left:682.666667pt;}
.x10a_c00247{left:683.733333pt;}
.xfe_c00247{left:684.933333pt;}
.xb9_c00247{left:685.866667pt;}
.x12c_c00247{left:687.066667pt;}
.x146_c00247{left:688.000000pt;}
.xd8_c00247{left:689.866667pt;}
.xe6_c00247{left:691.466667pt;}
.xf3_c00247{left:692.933333pt;}
.x143_c00247{left:695.200000pt;}
.x136_c00247{left:696.400000pt;}
.x112_c00247{left:698.000000pt;}
.x14a_c00247{left:698.933333pt;}
.xde_c00247{left:700.800000pt;}
.x11a_c00247{left:703.866667pt;}
.x118_c00247{left:705.066667pt;}
.xd2_c00247{left:706.666667pt;}
.x13a_c00247{left:707.866667pt;}
.xba_c00247{left:708.933333pt;}
.xf8_c00247{left:713.333333pt;}
.xc4_c00247{left:714.933333pt;}
.xcb_c00247{left:716.666667pt;}
.x122_c00247{left:717.733333pt;}
.x128_c00247{left:718.800000pt;}
.x12f_c00247{left:720.266667pt;}
.xdf_c00247{left:722.266667pt;}
.x12e_c00247{left:723.200000pt;}
.x124_c00247{left:724.400000pt;}
.x113_c00247{left:725.733333pt;}
.xce_c00247{left:727.600000pt;}
.xe7_c00247{left:729.600000pt;}
.xbb_c00247{left:732.933333pt;}
.xc5_c00247{left:734.133333pt;}
.xe0_c00247{left:736.000000pt;}
.x129_c00247{left:738.000000pt;}
.xf5_c00247{left:738.933333pt;}
.xf9_c00247{left:740.533333pt;}
.x139_c00247{left:741.733333pt;}
.xbc_c00247{left:743.200000pt;}
.x13e_c00247{left:744.933333pt;}
.x131_c00247{left:746.400000pt;}
.xcc_c00247{left:748.666667pt;}
.x142_c00247{left:749.733333pt;}
.x11c_c00247{left:751.200000pt;}
.x144_c00247{left:752.800000pt;}
.x11d_c00247{left:756.666667pt;}
.xbd_c00247{left:760.133333pt;}
.x114_c00247{left:761.866667pt;}
.xf6_c00247{left:764.266667pt;}
.xd3_c00247{left:765.200000pt;}
.x10d_c00247{left:766.133333pt;}
.x133_c00247{left:768.666667pt;}
.xe8_c00247{left:773.066667pt;}
.x123_c00247{left:775.600000pt;}
}





/* 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_c00248 {
    display:none;
  }
  .loading-indicator_c00248.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00248 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_c00248 { 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_c00248" -> "#page-container .classname_c00248")
 */
.pf_c00248 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00248 { /* 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_c00248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00248 { /* 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_c00248 { /* 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_c00248 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00248 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00248 {overflow:visible;}
  }
}
.c_c00248 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00248 { /* 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_c00248:after { /* webkit #35443 */
  content: '';
}
.t_c00248:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00248 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 */
}
.__c00248 { /* 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_c00248 { /* info for Javascript */
  display:none;
}
.l_c00248 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00248 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00248 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00248: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_c00248 {
    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_c00248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00248.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_c00248 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00248;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.000000;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;}
.m121_c00248{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00248{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m86_c00248{transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);}
.mff_c00248{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00248{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00248{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m110_c00248{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m91_c00248{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00248{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00248{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb_c00248{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00248{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00248{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.maf_c00248{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md3_c00248{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m50_c00248{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m58_c00248{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00248{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mba_c00248{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00248{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m79_c00248{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m37_c00248{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mce_c00248{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00248{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m123_c00248{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m35_c00248{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m10_c00248{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m77_c00248{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m76_c00248{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me7_c00248{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m64_c00248{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.md_c00248{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00248{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m92_c00248{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00248{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00248{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m20_c00248{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00248{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00248{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m21_c00248{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mef_c00248{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m31_c00248{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00248{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m16_c00248{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00248{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m73_c00248{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md6_c00248{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00248{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.me9_c00248{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00248{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00248{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00248{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m12_c00248{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00248{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m112_c00248{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m95_c00248{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m61_c00248{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00248{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00248{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m14_c00248{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00248{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00248{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m19_c00248{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00248{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m101_c00248{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m59_c00248{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00248{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md0_c00248{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.me8_c00248{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc_c00248{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00248{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00248{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m69_c00248{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00248{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m106_c00248{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00248{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md9_c00248{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md5_c00248{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m89_c00248{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00248{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00248{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m47_c00248{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m66_c00248{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00248{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00248{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00248{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m39_c00248{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me0_c00248{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m44_c00248{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m41_c00248{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m53_c00248{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m49_c00248{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00248{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m94_c00248{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me5_c00248{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00248{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m36_c00248{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00248{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00248{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00248{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00248{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00248{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m55_c00248{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m34_c00248{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.med_c00248{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00248{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00248{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m115_c00248{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m74_c00248{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mae_c00248{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00248{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mf_c00248{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m97_c00248{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00248{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m54_c00248{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m48_c00248{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mda_c00248{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me_c00248{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m87_c00248{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00248{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m45_c00248{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00248{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m104_c00248{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m65_c00248{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m114_c00248{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00248{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mad_c00248{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m5_c00248{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mde_c00248{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m46_c00248{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m109_c00248{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m63_c00248{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00248{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m75_c00248{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m33_c00248{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m108_c00248{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00248{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m120_c00248{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00248{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m122_c00248{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m42_c00248{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m84_c00248{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m67_c00248{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00248{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md7_c00248{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00248{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m25_c00248{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1_c00248{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m85_c00248{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m96_c00248{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md8_c00248{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mab_c00248{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mec_c00248{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00248{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m62_c00248{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m38_c00248{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m57_c00248{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00248{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00248{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m24_c00248{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mca_c00248{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9_c00248{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mee_c00248{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00248{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00248{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m40_c00248{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m11_c00248{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00248{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00248{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m51_c00248{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00248{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m88_c00248{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00248{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me2_c00248{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m68_c00248{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mac_c00248{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma_c00248{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m15_c00248{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00248{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00248{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m113_c00248{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4_c00248{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00248{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00248{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00248{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00248{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m32_c00248{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me3_c00248{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m18_c00248{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m90_c00248{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00248{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00248{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00248{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m80_c00248{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00248{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00248{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00248{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m23_c00248{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00248{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m83_c00248{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m30_c00248{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m17_c00248{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md4_c00248{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00248{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00248{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00248{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m52_c00248{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00248{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m27_c00248{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8_c00248{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m28_c00248{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00248{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m56_c00248{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00248{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00248{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mea_c00248{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m72_c00248{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m98_c00248{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00248{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m99_c00248{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00248{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m82_c00248{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00248{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00248{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m100_c00248{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m118_c00248{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m111_c00248{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m13_c00248{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.meb_c00248{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m26_c00248{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00248{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00248{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00248{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00248{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00248{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00248{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md1_c00248{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00248{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00248{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00248{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00248{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00248{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00248{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.maa_c00248{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00248{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00248{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m81_c00248{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m71_c00248{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m103_c00248{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00248{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00248{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00248{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m29_c00248{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00248{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me4_c00248{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m43_c00248{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00248{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md2_c00248{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m78_c00248{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m117_c00248{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m60_c00248{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m93_c00248{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00248{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m116_c00248{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.me1_c00248{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m119_c00248{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00248{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00248{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m102_c00248{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00248{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m70_c00248{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00248{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00248{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00248{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00248{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m105_c00248{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00248{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00248{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m6_c00248{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00248{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00248{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00248{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00248{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.me6_c00248{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00248{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m107_c00248{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491750,0.000000,0.000000,0.250000,0,0);}
.m124_c00248{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00248{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.m22_c00248{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls0_c00248{letter-spacing:0.000000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{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__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00248{word-spacing:-10.375000px;}
.ws9_c00248{word-spacing:-8.529412px;}
.wsa_c00248{word-spacing:-7.812500px;}
.ws2_c00248{word-spacing:-7.500000px;}
.ws1_c00248{word-spacing:-6.575342px;}
.wsb_c00248{word-spacing:-5.777887px;}
.ws4_c00248{word-spacing:-4.062500px;}
.ws3_c00248{word-spacing:-1.860072px;}
.wsd_c00248{word-spacing:0.000000px;}
.ws6_c00248{word-spacing:1.624454px;}
.ws0_c00248{word-spacing:2.802585px;}
.ws8_c00248{word-spacing:4.958435px;}
.ws5_c00248{word-spacing:6.052879px;}
.wsc_c00248{word-spacing:27.000000px;}
.fc0_c00248{color:transparent;}
.fs5_c00248{font-size:24.000000px;}
.fs7_c00248{font-size:36.000000px;}
.fs1_c00248{font-size:42.000000px;}
.fs2_c00248{font-size:54.000000px;}
.fs6_c00248{font-size:60.000000px;}
.fs3_c00248{font-size:66.000000px;}
.fs4_c00248{font-size:72.000000px;}
.fs0_c00248{font-size:78.000000px;}
.y0_c00248{bottom:0.000000px;}
.y70_c00248{bottom:179.700000px;}
.y37_c00248{bottom:182.550000px;}
.y6f_c00248{bottom:195.900000px;}
.y36_c00248{bottom:197.700000px;}
.y6e_c00248{bottom:209.550000px;}
.y35_c00248{bottom:210.300000px;}
.y34_c00248{bottom:225.600000px;}
.y6d_c00248{bottom:227.250000px;}
.y33_c00248{bottom:239.250000px;}
.y6c_c00248{bottom:241.650000px;}
.y32_c00248{bottom:254.400000px;}
.y6b_c00248{bottom:256.350000px;}
.y31_c00248{bottom:268.050000px;}
.y6a_c00248{bottom:271.050000px;}
.y30_c00248{bottom:282.150000px;}
.y69_c00248{bottom:285.300000px;}
.y2f_c00248{bottom:296.250000px;}
.y68_c00248{bottom:299.400000px;}
.y67_c00248{bottom:313.800000px;}
.y66_c00248{bottom:328.500000px;}
.y65_c00248{bottom:342.900000px;}
.y2e_c00248{bottom:347.400000px;}
.y64_c00248{bottom:357.000000px;}
.y2d_c00248{bottom:365.400000px;}
.y63_c00248{bottom:371.700000px;}
.y2c_c00248{bottom:383.700000px;}
.y62_c00248{bottom:385.800000px;}
.y61_c00248{bottom:399.900000px;}
.y2b_c00248{bottom:400.950000px;}
.y60_c00248{bottom:414.300000px;}
.y2a_c00248{bottom:418.650000px;}
.y5f_c00248{bottom:428.400000px;}
.y29_c00248{bottom:436.350000px;}
.y5e_c00248{bottom:442.800000px;}
.y28_c00248{bottom:454.350000px;}
.y5d_c00248{bottom:457.200000px;}
.y5c_c00248{bottom:471.900000px;}
.y27_c00248{bottom:472.350000px;}
.y5b_c00248{bottom:490.050000px;}
.y26_c00248{bottom:495.000000px;}
.y5a_c00248{bottom:504.450000px;}
.y25_c00248{bottom:511.950000px;}
.y59_c00248{bottom:521.400000px;}
.y24_c00248{bottom:530.250000px;}
.y58_c00248{bottom:534.300000px;}
.y23_c00248{bottom:547.200000px;}
.y57_c00248{bottom:551.850000px;}
.y56_c00248{bottom:567.000000px;}
.y22_c00248{bottom:569.700000px;}
.y55_c00248{bottom:583.200000px;}
.y21_c00248{bottom:587.700000px;}
.y54_c00248{bottom:599.700000px;}
.y20_c00248{bottom:605.400000px;}
.y53_c00248{bottom:614.100000px;}
.y1f_c00248{bottom:623.400000px;}
.y52_c00248{bottom:628.500000px;}
.y1e_c00248{bottom:641.400000px;}
.y51_c00248{bottom:642.900000px;}
.y1d_c00248{bottom:659.100000px;}
.y50_c00248{bottom:661.650000px;}
.y4f_c00248{bottom:676.050000px;}
.y1c_c00248{bottom:676.800000px;}
.y4e_c00248{bottom:690.750000px;}
.y1b_c00248{bottom:698.700000px;}
.y4d_c00248{bottom:708.450000px;}
.y1a_c00248{bottom:716.400000px;}
.y4c_c00248{bottom:723.600000px;}
.y19_c00248{bottom:743.700000px;}
.y18_c00248{bottom:752.700000px;}
.y4b_c00248{bottom:765.900000px;}
.y17_c00248{bottom:769.950000px;}
.y4a_c00248{bottom:783.900000px;}
.y16_c00248{bottom:787.950000px;}
.y49_c00248{bottom:801.900000px;}
.y15_c00248{bottom:805.650000px;}
.y48_c00248{bottom:819.600000px;}
.y14_c00248{bottom:823.650000px;}
.y47_c00248{bottom:837.600000px;}
.y13_c00248{bottom:845.550000px;}
.y46_c00248{bottom:855.300000px;}
.y12_c00248{bottom:863.550000px;}
.y45_c00248{bottom:873.000000px;}
.y11_c00248{bottom:881.250000px;}
.y44_c00248{bottom:894.900000px;}
.y10_c00248{bottom:903.150000px;}
.y43_c00248{bottom:913.200000px;}
.yf_c00248{bottom:920.850000px;}
.y42_c00248{bottom:930.900000px;}
.ye_c00248{bottom:938.850000px;}
.y41_c00248{bottom:948.600000px;}
.yd_c00248{bottom:956.850000px;}
.y40_c00248{bottom:966.600000px;}
.yc_c00248{bottom:974.550000px;}
.y3f_c00248{bottom:984.300000px;}
.yb_c00248{bottom:996.450000px;}
.y3e_c00248{bottom:1002.300000px;}
.ya_c00248{bottom:1014.450000px;}
.y3d_c00248{bottom:1020.000000px;}
.y9_c00248{bottom:1024.200000px;}
.y8_c00248{bottom:1036.500000px;}
.y3c_c00248{bottom:1038.300000px;}
.y7_c00248{bottom:1054.500000px;}
.y3b_c00248{bottom:1055.550000px;}
.y6_c00248{bottom:1072.500000px;}
.y3a_c00248{bottom:1073.550000px;}
.y5_c00248{bottom:1094.400000px;}
.y39_c00248{bottom:1095.450000px;}
.y4_c00248{bottom:1112.400000px;}
.y38_c00248{bottom:1113.150000px;}
.y3_c00248{bottom:1139.700000px;}
.y1_c00248{bottom:1140.150000px;}
.y2_c00248{bottom:1151.250000px;}
.y71_c00248{bottom:1263.900000px;}
.h7_c00248{height:24.000000px;}
.h9_c00248{height:36.000000px;}
.h3_c00248{height:42.000000px;}
.h4_c00248{height:54.000000px;}
.h8_c00248{height:60.000000px;}
.h5_c00248{height:66.000000px;}
.h6_c00248{height:72.000000px;}
.h2_c00248{height:78.000000px;}
.h1_c00248{height:1269.000000px;}
.h0_c00248{height:1269.359985px;}
.w1_c00248{width:963.000000px;}
.w0_c00248{width:963.359985px;}
.x0_c00248{left:0.000000px;}
.x9b_c00248{left:93.150000px;}
.xa0_c00248{left:95.400000px;}
.x8e_c00248{left:96.450000px;}
.x2b_c00248{left:98.250000px;}
.xd_c00248{left:108.150000px;}
.x94_c00248{left:111.900000px;}
.x25_c00248{left:114.450000px;}
.x5_c00248{left:115.500000px;}
.x7f_c00248{left:116.700000px;}
.x65_c00248{left:119.700000px;}
.xa1_c00248{left:129.900000px;}
.x52_c00248{left:131.850000px;}
.x46_c00248{left:132.900000px;}
.xe_c00248{left:134.100000px;}
.x26_c00248{left:136.350000px;}
.x9c_c00248{left:137.550000px;}
.x98_c00248{left:138.900000px;}
.x7a_c00248{left:142.650000px;}
.x83_c00248{left:145.200000px;}
.xf_c00248{left:152.100000px;}
.x19_c00248{left:154.200000px;}
.x1e_c00248{left:155.700000px;}
.x30_c00248{left:157.050000px;}
.x2c_c00248{left:158.100000px;}
.x41_c00248{left:160.350000px;}
.x3c_c00248{left:161.550000px;}
.x6d_c00248{left:163.950000px;}
.x6_c00248{left:165.150000px;}
.x84_c00248{left:166.800000px;}
.x36_c00248{left:169.050000px;}
.x1a_c00248{left:171.150000px;}
.x7c_c00248{left:172.800000px;}
.x7d_c00248{left:174.600000px;}
.x47_c00248{left:176.100000px;}
.x56_c00248{left:177.600000px;}
.x42_c00248{left:180.450000px;}
.x95_c00248{left:182.100000px;}
.x14_c00248{left:183.600000px;}
.x1f_c00248{left:185.250000px;}
.x10_c00248{left:186.600000px;}
.x22_c00248{left:187.950000px;}
.x77_c00248{left:189.150000px;}
.x37_c00248{left:190.650000px;}
.x69_c00248{left:192.600000px;}
.x1b_c00248{left:197.850000px;}
.x53_c00248{left:199.200000px;}
.x3d_c00248{left:200.850000px;}
.x27_c00248{left:202.950000px;}
.x5e_c00248{left:204.600000px;}
.x11_c00248{left:206.700000px;}
.x20_c00248{left:208.650000px;}
.x48_c00248{left:210.000000px;}
.x66_c00248{left:211.950000px;}
.x31_c00248{left:213.150000px;}
.x57_c00248{left:214.350000px;}
.x80_c00248{left:216.000000px;}
.x72_c00248{left:219.300000px;}
.x8c_c00248{left:220.350000px;}
.x12_c00248{left:222.600000px;}
.x2d_c00248{left:223.950000px;}
.x43_c00248{left:225.450000px;}
.x75_c00248{left:228.600000px;}
.x7_c00248{left:230.250000px;}
.x67_c00248{left:231.750000px;}
.x4d_c00248{left:233.400000px;}
.x5f_c00248{left:235.500000px;}
.x32_c00248{left:236.550000px;}
.x23_c00248{left:238.050000px;}
.x93_c00248{left:239.100000px;}
.x73_c00248{left:240.900000px;}
.x49_c00248{left:242.400000px;}
.x9a_c00248{left:244.950000px;}
.x85_c00248{left:246.300000px;}
.x9d_c00248{left:248.850000px;}
.x58_c00248{left:251.400000px;}
.x44_c00248{left:252.750000px;}
.x15_c00248{left:254.550000px;}
.x96_c00248{left:256.200000px;}
.x3e_c00248{left:259.500000px;}
.x1c_c00248{left:261.600000px;}
.x28_c00248{left:263.100000px;}
.x33_c00248{left:265.050000px;}
.x13_c00248{left:266.550000px;}
.x8f_c00248{left:268.200000px;}
.x60_c00248{left:271.200000px;}
.x86_c00248{left:273.600000px;}
.x5b_c00248{left:275.550000px;}
.x4e_c00248{left:277.650000px;}
.x54_c00248{left:281.250000px;}
.x8_c00248{left:283.500000px;}
.x16_c00248{left:285.450000px;}
.x6a_c00248{left:286.950000px;}
.x89_c00248{left:288.450000px;}
.x97_c00248{left:290.700000px;}
.x45_c00248{left:292.050000px;}
.x34_c00248{left:293.550000px;}
.x90_c00248{left:294.900000px;}
.x87_c00248{left:296.700000px;}
.x38_c00248{left:297.900000px;}
.x29_c00248{left:300.600000px;}
.x9f_c00248{left:302.100000px;}
.x9e_c00248{left:303.300000px;}
.x2e_c00248{left:304.650000px;}
.x6b_c00248{left:308.250000px;}
.x61_c00248{left:309.300000px;}
.x4f_c00248{left:311.850000px;}
.x21_c00248{left:316.050000px;}
.x39_c00248{left:317.700000px;}
.x59_c00248{left:318.750000px;}
.x4a_c00248{left:320.550000px;}
.x9_c00248{left:323.100000px;}
.x62_c00248{left:324.750000px;}
.x5a_c00248{left:330.300000px;}
.x78_c00248{left:333.900000px;}
.x5c_c00248{left:335.550000px;}
.x2f_c00248{left:337.050000px;}
.x91_c00248{left:339.900000px;}
.x4b_c00248{left:342.150000px;}
.xa_c00248{left:343.650000px;}
.x24_c00248{left:344.850000px;}
.x17_c00248{left:346.350000px;}
.x1_c00248{left:347.400000px;}
.x2a_c00248{left:349.500000px;}
.x8a_c00248{left:351.450000px;}
.x6e_c00248{left:352.650000px;}
.x7e_c00248{left:355.650000px;}
.x5d_c00248{left:357.900000px;}
.x55_c00248{left:358.950000px;}
.x3f_c00248{left:364.200000px;}
.x68_c00248{left:367.500000px;}
.x35_c00248{left:368.850000px;}
.x18_c00248{left:371.550000px;}
.x8d_c00248{left:372.750000px;}
.x79_c00248{left:374.250000px;}
.xb_c00248{left:376.350000px;}
.x3a_c00248{left:378.150000px;}
.x50_c00248{left:379.200000px;}
.x6f_c00248{left:381.150000px;}
.x81_c00248{left:382.800000px;}
.x74_c00248{left:384.450000px;}
.x63_c00248{left:385.650000px;}
.x7b_c00248{left:387.750000px;}
.x40_c00248{left:391.200000px;}
.x3b_c00248{left:395.850000px;}
.x82_c00248{left:399.300000px;}
.x99_c00248{left:402.300000px;}
.x88_c00248{left:403.950000px;}
.x70_c00248{left:405.600000px;}
.x6c_c00248{left:407.250000px;}
.x1d_c00248{left:409.500000px;}
.x92_c00248{left:412.650000px;}
.x51_c00248{left:417.000000px;}
.x64_c00248{left:421.350000px;}
.x4c_c00248{left:423.450000px;}
.x71_c00248{left:427.800000px;}
.x76_c00248{left:429.300000px;}
.xc_c00248{left:430.350000px;}
.x8b_c00248{left:432.300000px;}
.x10e_c00248{left:453.000000px;}
.xb3_c00248{left:454.650000px;}
.x144_c00248{left:463.350000px;}
.x10a_c00248{left:468.000000px;}
.x151_c00248{left:469.050000px;}
.xdd_c00248{left:471.600000px;}
.xa2_c00248{left:472.650000px;}
.x150_c00248{left:473.700000px;}
.x12b_c00248{left:475.050000px;}
.x14c_c00248{left:479.250000px;}
.x13c_c00248{left:481.650000px;}
.x111_c00248{left:482.850000px;}
.x14f_c00248{left:484.200000px;}
.x118_c00248{left:486.300000px;}
.xf8_c00248{left:488.250000px;}
.xf1_c00248{left:489.900000px;}
.x148_c00248{left:492.000000px;}
.x136_c00248{left:494.100000px;}
.xda_c00248{left:496.200000px;}
.xaa_c00248{left:498.150000px;}
.x119_c00248{left:502.800000px;}
.xc1_c00248{left:503.850000px;}
.x10f_c00248{left:506.850000px;}
.x101_c00248{left:508.500000px;}
.x131_c00248{left:510.600000px;}
.xe4_c00248{left:511.800000px;}
.x10b_c00248{left:514.050000px;}
.xb4_c00248{left:515.850000px;}
.xca_c00248{left:519.300000px;}
.x13e_c00248{left:520.650000px;}
.x11a_c00248{left:521.850000px;}
.x105_c00248{left:523.500000px;}
.xeb_c00248{left:525.150000px;}
.x143_c00248{left:526.950000px;}
.xd2_c00248{left:528.000000px;}
.x115_c00248{left:529.200000px;}
.x11c_c00248{left:531.300000px;}
.xfb_c00248{left:532.800000px;}
.xf5_c00248{left:535.200000px;}
.xab_c00248{left:536.250000px;}
.x13f_c00248{left:537.900000px;}
.xc2_c00248{left:539.550000px;}
.xf2_c00248{left:542.100000px;}
.x110_c00248{left:543.450000px;}
.x116_c00248{left:544.650000px;}
.x132_c00248{left:546.150000px;}
.x102_c00248{left:547.350000px;}
.x123_c00248{left:548.400000px;}
.xd3_c00248{left:550.650000px;}
.xcb_c00248{left:552.450000px;}
.x12f_c00248{left:553.500000px;}
.x106_c00248{left:555.600000px;}
.xb5_c00248{left:558.000000px;}
.xa3_c00248{left:559.350000px;}
.x149_c00248{left:561.150000px;}
.x146_c00248{left:562.200000px;}
.x14d_c00248{left:564.300000px;}
.x152_c00248{left:565.950000px;}
.xac_c00248{left:567.600000px;}
.xde_c00248{left:568.800000px;}
.xd4_c00248{left:570.450000px;}
.x107_c00248{left:571.800000px;}
.x133_c00248{left:572.850000px;}
.xcc_c00248{left:574.050000px;}
.xf9_c00248{left:575.250000px;}
.x11d_c00248{left:577.050000px;}
.x137_c00248{left:579.000000px;}
.xdb_c00248{left:581.100000px;}
.xbb_c00248{left:582.300000px;}
.x120_c00248{left:583.350000px;}
.xec_c00248{left:584.850000px;}
.x103_c00248{left:585.900000px;}
.xe5_c00248{left:588.900000px;}
.xc3_c00248{left:590.700000px;}
.xa4_c00248{left:592.500000px;}
.xfa_c00248{left:594.000000px;}
.x11e_c00248{left:596.550000px;}
.x153_c00248{left:598.350000px;}
.x113_c00248{left:600.900000px;}
.x145_c00248{left:601.950000px;}
.xad_c00248{left:603.300000px;}
.x139_c00248{left:605.250000px;}
.x127_c00248{left:606.600000px;}
.xbc_c00248{left:607.800000px;}
.xae_c00248{left:612.300000px;}
.x155_c00248{left:613.800000px;}
.xe6_c00248{left:614.850000px;}
.xd5_c00248{left:616.500000px;}
.x121_c00248{left:619.050000px;}
.xfc_c00248{left:620.250000px;}
.x12c_c00248{left:621.600000px;}
.x128_c00248{left:622.800000px;}
.xc4_c00248{left:624.900000px;}
.xcd_c00248{left:625.950000px;}
.xb6_c00248{left:627.900000px;}
.xe1_c00248{left:629.550000px;}
.xaf_c00248{left:630.600000px;}
.x10c_c00248{left:632.250000px;}
.xa5_c00248{left:633.900000px;}
.x130_c00248{left:635.250000px;}
.xc5_c00248{left:637.200000px;}
.xf3_c00248{left:640.350000px;}
.xb0_c00248{left:642.150000px;}
.xb7_c00248{left:644.850000px;}
.xed_c00248{left:647.100000px;}
.x117_c00248{left:649.350000px;}
.xfe_c00248{left:650.700000px;}
.xbd_c00248{left:652.800000px;}
.x13d_c00248{left:654.150000px;}
.x125_c00248{left:655.800000px;}
.xe7_c00248{left:658.350000px;}
.xa6_c00248{left:660.150000px;}
.xce_c00248{left:661.950000px;}
.xb8_c00248{left:664.950000px;}
.x114_c00248{left:666.000000px;}
.xdc_c00248{left:667.800000px;}
.xdf_c00248{left:668.850000px;}
.x140_c00248{left:670.500000px;}
.xbe_c00248{left:671.850000px;}
.x126_c00248{left:673.500000px;}
.xc6_c00248{left:675.750000px;}
.xb1_c00248{left:677.850000px;}
.x14a_c00248{left:679.950000px;}
.xd6_c00248{left:681.300000px;}
.x13a_c00248{left:684.000000px;}
.x12d_c00248{left:685.650000px;}
.xd7_c00248{left:689.550000px;}
.x108_c00248{left:691.650000px;}
.xee_c00248{left:694.200000px;}
.xcf_c00248{left:695.850000px;}
.xc7_c00248{left:697.050000px;}
.x134_c00248{left:698.400000px;}
.xa7_c00248{left:699.450000px;}
.x138_c00248{left:700.800000px;}
.xb9_c00248{left:702.750000px;}
.x129_c00248{left:704.400000px;}
.x147_c00248{left:705.900000px;}
.xb2_c00248{left:706.950000px;}
.xe2_c00248{left:708.750000px;}
.xd8_c00248{left:710.850000px;}
.xd0_c00248{left:712.350000px;}
.x11b_c00248{left:713.400000px;}
.x141_c00248{left:715.050000px;}
.x154_c00248{left:716.100000px;}
.x135_c00248{left:718.200000px;}
.x112_c00248{left:719.250000px;}
.xef_c00248{left:720.450000px;}
.x122_c00248{left:722.100000px;}
.xbf_c00248{left:724.350000px;}
.xff_c00248{left:726.000000px;}
.xe8_c00248{left:727.500000px;}
.xf4_c00248{left:729.300000px;}
.xa8_c00248{left:730.350000px;}
.x14b_c00248{left:733.950000px;}
.xf6_c00248{left:736.050000px;}
.xd9_c00248{left:737.100000px;}
.xba_c00248{left:739.500000px;}
.xe3_c00248{left:743.250000px;}
.xe9_c00248{left:744.750000px;}
.xd1_c00248{left:747.300000px;}
.x12a_c00248{left:748.650000px;}
.xc0_c00248{left:750.300000px;}
.x124_c00248{left:751.350000px;}
.xf0_c00248{left:752.850000px;}
.x142_c00248{left:753.900000px;}
.xc8_c00248{left:757.950000px;}
.xe0_c00248{left:759.450000px;}
.xf7_c00248{left:761.550000px;}
.x4_c00248{left:763.950000px;}
.x100_c00248{left:765.600000px;}
.xea_c00248{left:766.650000px;}
.x109_c00248{left:767.700000px;}
.x13b_c00248{left:769.650000px;}
.x104_c00248{left:770.850000px;}
.x2_c00248{left:772.950000px;}
.xa9_c00248{left:775.650000px;}
.xfd_c00248{left:777.600000px;}
.xc9_c00248{left:778.800000px;}
.x10d_c00248{left:780.300000px;}
.x12e_c00248{left:783.900000px;}
.x3_c00248{left:785.250000px;}
.x11f_c00248{left:794.850000px;}
.x14e_c00248{left:797.850000px;}
.x156_c00248{left:840.000000px;}
.x157_c00248{left:850.800000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws7_c00248{word-spacing:-9.222222pt;}
.ws9_c00248{word-spacing:-7.581699pt;}
.wsa_c00248{word-spacing:-6.944444pt;}
.ws2_c00248{word-spacing:-6.666667pt;}
.ws1_c00248{word-spacing:-5.844749pt;}
.wsb_c00248{word-spacing:-5.135900pt;}
.ws4_c00248{word-spacing:-3.611111pt;}
.ws3_c00248{word-spacing:-1.653398pt;}
.wsd_c00248{word-spacing:0.000000pt;}
.ws6_c00248{word-spacing:1.443959pt;}
.ws0_c00248{word-spacing:2.491187pt;}
.ws8_c00248{word-spacing:4.407498pt;}
.ws5_c00248{word-spacing:5.380337pt;}
.wsc_c00248{word-spacing:24.000000pt;}
.fs5_c00248{font-size:21.333333pt;}
.fs7_c00248{font-size:32.000000pt;}
.fs1_c00248{font-size:37.333333pt;}
.fs2_c00248{font-size:48.000000pt;}
.fs6_c00248{font-size:53.333333pt;}
.fs3_c00248{font-size:58.666667pt;}
.fs4_c00248{font-size:64.000000pt;}
.fs0_c00248{font-size:69.333333pt;}
.y0_c00248{bottom:0.000000pt;}
.y70_c00248{bottom:159.733333pt;}
.y37_c00248{bottom:162.266667pt;}
.y6f_c00248{bottom:174.133333pt;}
.y36_c00248{bottom:175.733333pt;}
.y6e_c00248{bottom:186.266667pt;}
.y35_c00248{bottom:186.933333pt;}
.y34_c00248{bottom:200.533333pt;}
.y6d_c00248{bottom:202.000000pt;}
.y33_c00248{bottom:212.666667pt;}
.y6c_c00248{bottom:214.800000pt;}
.y32_c00248{bottom:226.133333pt;}
.y6b_c00248{bottom:227.866667pt;}
.y31_c00248{bottom:238.266667pt;}
.y6a_c00248{bottom:240.933333pt;}
.y30_c00248{bottom:250.800000pt;}
.y69_c00248{bottom:253.600000pt;}
.y2f_c00248{bottom:263.333333pt;}
.y68_c00248{bottom:266.133333pt;}
.y67_c00248{bottom:278.933333pt;}
.y66_c00248{bottom:292.000000pt;}
.y65_c00248{bottom:304.800000pt;}
.y2e_c00248{bottom:308.800000pt;}
.y64_c00248{bottom:317.333333pt;}
.y2d_c00248{bottom:324.800000pt;}
.y63_c00248{bottom:330.400000pt;}
.y2c_c00248{bottom:341.066667pt;}
.y62_c00248{bottom:342.933333pt;}
.y61_c00248{bottom:355.466667pt;}
.y2b_c00248{bottom:356.400000pt;}
.y60_c00248{bottom:368.266667pt;}
.y2a_c00248{bottom:372.133333pt;}
.y5f_c00248{bottom:380.800000pt;}
.y29_c00248{bottom:387.866667pt;}
.y5e_c00248{bottom:393.600000pt;}
.y28_c00248{bottom:403.866667pt;}
.y5d_c00248{bottom:406.400000pt;}
.y5c_c00248{bottom:419.466667pt;}
.y27_c00248{bottom:419.866667pt;}
.y5b_c00248{bottom:435.600000pt;}
.y26_c00248{bottom:440.000000pt;}
.y5a_c00248{bottom:448.400000pt;}
.y25_c00248{bottom:455.066667pt;}
.y59_c00248{bottom:463.466667pt;}
.y24_c00248{bottom:471.333333pt;}
.y58_c00248{bottom:474.933333pt;}
.y23_c00248{bottom:486.400000pt;}
.y57_c00248{bottom:490.533333pt;}
.y56_c00248{bottom:504.000000pt;}
.y22_c00248{bottom:506.400000pt;}
.y55_c00248{bottom:518.400000pt;}
.y21_c00248{bottom:522.400000pt;}
.y54_c00248{bottom:533.066667pt;}
.y20_c00248{bottom:538.133333pt;}
.y53_c00248{bottom:545.866667pt;}
.y1f_c00248{bottom:554.133333pt;}
.y52_c00248{bottom:558.666667pt;}
.y1e_c00248{bottom:570.133333pt;}
.y51_c00248{bottom:571.466667pt;}
.y1d_c00248{bottom:585.866667pt;}
.y50_c00248{bottom:588.133333pt;}
.y4f_c00248{bottom:600.933333pt;}
.y1c_c00248{bottom:601.600000pt;}
.y4e_c00248{bottom:614.000000pt;}
.y1b_c00248{bottom:621.066667pt;}
.y4d_c00248{bottom:629.733333pt;}
.y1a_c00248{bottom:636.800000pt;}
.y4c_c00248{bottom:643.200000pt;}
.y19_c00248{bottom:661.066667pt;}
.y18_c00248{bottom:669.066667pt;}
.y4b_c00248{bottom:680.800000pt;}
.y17_c00248{bottom:684.400000pt;}
.y4a_c00248{bottom:696.800000pt;}
.y16_c00248{bottom:700.400000pt;}
.y49_c00248{bottom:712.800000pt;}
.y15_c00248{bottom:716.133333pt;}
.y48_c00248{bottom:728.533333pt;}
.y14_c00248{bottom:732.133333pt;}
.y47_c00248{bottom:744.533333pt;}
.y13_c00248{bottom:751.600000pt;}
.y46_c00248{bottom:760.266667pt;}
.y12_c00248{bottom:767.600000pt;}
.y45_c00248{bottom:776.000000pt;}
.y11_c00248{bottom:783.333333pt;}
.y44_c00248{bottom:795.466667pt;}
.y10_c00248{bottom:802.800000pt;}
.y43_c00248{bottom:811.733333pt;}
.yf_c00248{bottom:818.533333pt;}
.y42_c00248{bottom:827.466667pt;}
.ye_c00248{bottom:834.533333pt;}
.y41_c00248{bottom:843.200000pt;}
.yd_c00248{bottom:850.533333pt;}
.y40_c00248{bottom:859.200000pt;}
.yc_c00248{bottom:866.266667pt;}
.y3f_c00248{bottom:874.933333pt;}
.yb_c00248{bottom:885.733333pt;}
.y3e_c00248{bottom:890.933333pt;}
.ya_c00248{bottom:901.733333pt;}
.y3d_c00248{bottom:906.666667pt;}
.y9_c00248{bottom:910.400000pt;}
.y8_c00248{bottom:921.333333pt;}
.y3c_c00248{bottom:922.933333pt;}
.y7_c00248{bottom:937.333333pt;}
.y3b_c00248{bottom:938.266667pt;}
.y6_c00248{bottom:953.333333pt;}
.y3a_c00248{bottom:954.266667pt;}
.y5_c00248{bottom:972.800000pt;}
.y39_c00248{bottom:973.733333pt;}
.y4_c00248{bottom:988.800000pt;}
.y38_c00248{bottom:989.466667pt;}
.y3_c00248{bottom:1013.066667pt;}
.y1_c00248{bottom:1013.466667pt;}
.y2_c00248{bottom:1023.333333pt;}
.y71_c00248{bottom:1123.466667pt;}
.h7_c00248{height:21.333333pt;}
.h9_c00248{height:32.000000pt;}
.h3_c00248{height:37.333333pt;}
.h4_c00248{height:48.000000pt;}
.h8_c00248{height:53.333333pt;}
.h5_c00248{height:58.666667pt;}
.h6_c00248{height:64.000000pt;}
.h2_c00248{height:69.333333pt;}
.h1_c00248{height:1128.000000pt;}
.h0_c00248{height:1128.319987pt;}
.w1_c00248{width:856.000000pt;}
.w0_c00248{width:856.319987pt;}
.x0_c00248{left:0.000000pt;}
.x9b_c00248{left:82.800000pt;}
.xa0_c00248{left:84.800000pt;}
.x8e_c00248{left:85.733333pt;}
.x2b_c00248{left:87.333333pt;}
.xd_c00248{left:96.133333pt;}
.x94_c00248{left:99.466667pt;}
.x25_c00248{left:101.733333pt;}
.x5_c00248{left:102.666667pt;}
.x7f_c00248{left:103.733333pt;}
.x65_c00248{left:106.400000pt;}
.xa1_c00248{left:115.466667pt;}
.x52_c00248{left:117.200000pt;}
.x46_c00248{left:118.133333pt;}
.xe_c00248{left:119.200000pt;}
.x26_c00248{left:121.200000pt;}
.x9c_c00248{left:122.266667pt;}
.x98_c00248{left:123.466667pt;}
.x7a_c00248{left:126.800000pt;}
.x83_c00248{left:129.066667pt;}
.xf_c00248{left:135.200000pt;}
.x19_c00248{left:137.066667pt;}
.x1e_c00248{left:138.400000pt;}
.x30_c00248{left:139.600000pt;}
.x2c_c00248{left:140.533333pt;}
.x41_c00248{left:142.533333pt;}
.x3c_c00248{left:143.600000pt;}
.x6d_c00248{left:145.733333pt;}
.x6_c00248{left:146.800000pt;}
.x84_c00248{left:148.266667pt;}
.x36_c00248{left:150.266667pt;}
.x1a_c00248{left:152.133333pt;}
.x7c_c00248{left:153.600000pt;}
.x7d_c00248{left:155.200000pt;}
.x47_c00248{left:156.533333pt;}
.x56_c00248{left:157.866667pt;}
.x42_c00248{left:160.400000pt;}
.x95_c00248{left:161.866667pt;}
.x14_c00248{left:163.200000pt;}
.x1f_c00248{left:164.666667pt;}
.x10_c00248{left:165.866667pt;}
.x22_c00248{left:167.066667pt;}
.x77_c00248{left:168.133333pt;}
.x37_c00248{left:169.466667pt;}
.x69_c00248{left:171.200000pt;}
.x1b_c00248{left:175.866667pt;}
.x53_c00248{left:177.066667pt;}
.x3d_c00248{left:178.533333pt;}
.x27_c00248{left:180.400000pt;}
.x5e_c00248{left:181.866667pt;}
.x11_c00248{left:183.733333pt;}
.x20_c00248{left:185.466667pt;}
.x48_c00248{left:186.666667pt;}
.x66_c00248{left:188.400000pt;}
.x31_c00248{left:189.466667pt;}
.x57_c00248{left:190.533333pt;}
.x80_c00248{left:192.000000pt;}
.x72_c00248{left:194.933333pt;}
.x8c_c00248{left:195.866667pt;}
.x12_c00248{left:197.866667pt;}
.x2d_c00248{left:199.066667pt;}
.x43_c00248{left:200.400000pt;}
.x75_c00248{left:203.200000pt;}
.x7_c00248{left:204.666667pt;}
.x67_c00248{left:206.000000pt;}
.x4d_c00248{left:207.466667pt;}
.x5f_c00248{left:209.333333pt;}
.x32_c00248{left:210.266667pt;}
.x23_c00248{left:211.600000pt;}
.x93_c00248{left:212.533333pt;}
.x73_c00248{left:214.133333pt;}
.x49_c00248{left:215.466667pt;}
.x9a_c00248{left:217.733333pt;}
.x85_c00248{left:218.933333pt;}
.x9d_c00248{left:221.200000pt;}
.x58_c00248{left:223.466667pt;}
.x44_c00248{left:224.666667pt;}
.x15_c00248{left:226.266667pt;}
.x96_c00248{left:227.733333pt;}
.x3e_c00248{left:230.666667pt;}
.x1c_c00248{left:232.533333pt;}
.x28_c00248{left:233.866667pt;}
.x33_c00248{left:235.600000pt;}
.x13_c00248{left:236.933333pt;}
.x8f_c00248{left:238.400000pt;}
.x60_c00248{left:241.066667pt;}
.x86_c00248{left:243.200000pt;}
.x5b_c00248{left:244.933333pt;}
.x4e_c00248{left:246.800000pt;}
.x54_c00248{left:250.000000pt;}
.x8_c00248{left:252.000000pt;}
.x16_c00248{left:253.733333pt;}
.x6a_c00248{left:255.066667pt;}
.x89_c00248{left:256.400000pt;}
.x97_c00248{left:258.400000pt;}
.x45_c00248{left:259.600000pt;}
.x34_c00248{left:260.933333pt;}
.x90_c00248{left:262.133333pt;}
.x87_c00248{left:263.733333pt;}
.x38_c00248{left:264.800000pt;}
.x29_c00248{left:267.200000pt;}
.x9f_c00248{left:268.533333pt;}
.x9e_c00248{left:269.600000pt;}
.x2e_c00248{left:270.800000pt;}
.x6b_c00248{left:274.000000pt;}
.x61_c00248{left:274.933333pt;}
.x4f_c00248{left:277.200000pt;}
.x21_c00248{left:280.933333pt;}
.x39_c00248{left:282.400000pt;}
.x59_c00248{left:283.333333pt;}
.x4a_c00248{left:284.933333pt;}
.x9_c00248{left:287.200000pt;}
.x62_c00248{left:288.666667pt;}
.x5a_c00248{left:293.600000pt;}
.x78_c00248{left:296.800000pt;}
.x5c_c00248{left:298.266667pt;}
.x2f_c00248{left:299.600000pt;}
.x91_c00248{left:302.133333pt;}
.x4b_c00248{left:304.133333pt;}
.xa_c00248{left:305.466667pt;}
.x24_c00248{left:306.533333pt;}
.x17_c00248{left:307.866667pt;}
.x1_c00248{left:308.800000pt;}
.x2a_c00248{left:310.666667pt;}
.x8a_c00248{left:312.400000pt;}
.x6e_c00248{left:313.466667pt;}
.x7e_c00248{left:316.133333pt;}
.x5d_c00248{left:318.133333pt;}
.x55_c00248{left:319.066667pt;}
.x3f_c00248{left:323.733333pt;}
.x68_c00248{left:326.666667pt;}
.x35_c00248{left:327.866667pt;}
.x18_c00248{left:330.266667pt;}
.x8d_c00248{left:331.333333pt;}
.x79_c00248{left:332.666667pt;}
.xb_c00248{left:334.533333pt;}
.x3a_c00248{left:336.133333pt;}
.x50_c00248{left:337.066667pt;}
.x6f_c00248{left:338.800000pt;}
.x81_c00248{left:340.266667pt;}
.x74_c00248{left:341.733333pt;}
.x63_c00248{left:342.800000pt;}
.x7b_c00248{left:344.666667pt;}
.x40_c00248{left:347.733333pt;}
.x3b_c00248{left:351.866667pt;}
.x82_c00248{left:354.933333pt;}
.x99_c00248{left:357.600000pt;}
.x88_c00248{left:359.066667pt;}
.x70_c00248{left:360.533333pt;}
.x6c_c00248{left:362.000000pt;}
.x1d_c00248{left:364.000000pt;}
.x92_c00248{left:366.800000pt;}
.x51_c00248{left:370.666667pt;}
.x64_c00248{left:374.533333pt;}
.x4c_c00248{left:376.400000pt;}
.x71_c00248{left:380.266667pt;}
.x76_c00248{left:381.600000pt;}
.xc_c00248{left:382.533333pt;}
.x8b_c00248{left:384.266667pt;}
.x10e_c00248{left:402.666667pt;}
.xb3_c00248{left:404.133333pt;}
.x144_c00248{left:411.866667pt;}
.x10a_c00248{left:416.000000pt;}
.x151_c00248{left:416.933333pt;}
.xdd_c00248{left:419.200000pt;}
.xa2_c00248{left:420.133333pt;}
.x150_c00248{left:421.066667pt;}
.x12b_c00248{left:422.266667pt;}
.x14c_c00248{left:426.000000pt;}
.x13c_c00248{left:428.133333pt;}
.x111_c00248{left:429.200000pt;}
.x14f_c00248{left:430.400000pt;}
.x118_c00248{left:432.266667pt;}
.xf8_c00248{left:434.000000pt;}
.xf1_c00248{left:435.466667pt;}
.x148_c00248{left:437.333333pt;}
.x136_c00248{left:439.200000pt;}
.xda_c00248{left:441.066667pt;}
.xaa_c00248{left:442.800000pt;}
.x119_c00248{left:446.933333pt;}
.xc1_c00248{left:447.866667pt;}
.x10f_c00248{left:450.533333pt;}
.x101_c00248{left:452.000000pt;}
.x131_c00248{left:453.866667pt;}
.xe4_c00248{left:454.933333pt;}
.x10b_c00248{left:456.933333pt;}
.xb4_c00248{left:458.533333pt;}
.xca_c00248{left:461.600000pt;}
.x13e_c00248{left:462.800000pt;}
.x11a_c00248{left:463.866667pt;}
.x105_c00248{left:465.333333pt;}
.xeb_c00248{left:466.800000pt;}
.x143_c00248{left:468.400000pt;}
.xd2_c00248{left:469.333333pt;}
.x115_c00248{left:470.400000pt;}
.x11c_c00248{left:472.266667pt;}
.xfb_c00248{left:473.600000pt;}
.xf5_c00248{left:475.733333pt;}
.xab_c00248{left:476.666667pt;}
.x13f_c00248{left:478.133333pt;}
.xc2_c00248{left:479.600000pt;}
.xf2_c00248{left:481.866667pt;}
.x110_c00248{left:483.066667pt;}
.x116_c00248{left:484.133333pt;}
.x132_c00248{left:485.466667pt;}
.x102_c00248{left:486.533333pt;}
.x123_c00248{left:487.466667pt;}
.xd3_c00248{left:489.466667pt;}
.xcb_c00248{left:491.066667pt;}
.x12f_c00248{left:492.000000pt;}
.x106_c00248{left:493.866667pt;}
.xb5_c00248{left:496.000000pt;}
.xa3_c00248{left:497.200000pt;}
.x149_c00248{left:498.800000pt;}
.x146_c00248{left:499.733333pt;}
.x14d_c00248{left:501.600000pt;}
.x152_c00248{left:503.066667pt;}
.xac_c00248{left:504.533333pt;}
.xde_c00248{left:505.600000pt;}
.xd4_c00248{left:507.066667pt;}
.x107_c00248{left:508.266667pt;}
.x133_c00248{left:509.200000pt;}
.xcc_c00248{left:510.266667pt;}
.xf9_c00248{left:511.333333pt;}
.x11d_c00248{left:512.933333pt;}
.x137_c00248{left:514.666667pt;}
.xdb_c00248{left:516.533333pt;}
.xbb_c00248{left:517.600000pt;}
.x120_c00248{left:518.533333pt;}
.xec_c00248{left:519.866667pt;}
.x103_c00248{left:520.800000pt;}
.xe5_c00248{left:523.466667pt;}
.xc3_c00248{left:525.066667pt;}
.xa4_c00248{left:526.666667pt;}
.xfa_c00248{left:528.000000pt;}
.x11e_c00248{left:530.266667pt;}
.x153_c00248{left:531.866667pt;}
.x113_c00248{left:534.133333pt;}
.x145_c00248{left:535.066667pt;}
.xad_c00248{left:536.266667pt;}
.x139_c00248{left:538.000000pt;}
.x127_c00248{left:539.200000pt;}
.xbc_c00248{left:540.266667pt;}
.xae_c00248{left:544.266667pt;}
.x155_c00248{left:545.600000pt;}
.xe6_c00248{left:546.533333pt;}
.xd5_c00248{left:548.000000pt;}
.x121_c00248{left:550.266667pt;}
.xfc_c00248{left:551.333333pt;}
.x12c_c00248{left:552.533333pt;}
.x128_c00248{left:553.600000pt;}
.xc4_c00248{left:555.466667pt;}
.xcd_c00248{left:556.400000pt;}
.xb6_c00248{left:558.133333pt;}
.xe1_c00248{left:559.600000pt;}
.xaf_c00248{left:560.533333pt;}
.x10c_c00248{left:562.000000pt;}
.xa5_c00248{left:563.466667pt;}
.x130_c00248{left:564.666667pt;}
.xc5_c00248{left:566.400000pt;}
.xf3_c00248{left:569.200000pt;}
.xb0_c00248{left:570.800000pt;}
.xb7_c00248{left:573.200000pt;}
.xed_c00248{left:575.200000pt;}
.x117_c00248{left:577.200000pt;}
.xfe_c00248{left:578.400000pt;}
.xbd_c00248{left:580.266667pt;}
.x13d_c00248{left:581.466667pt;}
.x125_c00248{left:582.933333pt;}
.xe7_c00248{left:585.200000pt;}
.xa6_c00248{left:586.800000pt;}
.xce_c00248{left:588.400000pt;}
.xb8_c00248{left:591.066667pt;}
.x114_c00248{left:592.000000pt;}
.xdc_c00248{left:593.600000pt;}
.xdf_c00248{left:594.533333pt;}
.x140_c00248{left:596.000000pt;}
.xbe_c00248{left:597.200000pt;}
.x126_c00248{left:598.666667pt;}
.xc6_c00248{left:600.666667pt;}
.xb1_c00248{left:602.533333pt;}
.x14a_c00248{left:604.400000pt;}
.xd6_c00248{left:605.600000pt;}
.x13a_c00248{left:608.000000pt;}
.x12d_c00248{left:609.466667pt;}
.xd7_c00248{left:612.933333pt;}
.x108_c00248{left:614.800000pt;}
.xee_c00248{left:617.066667pt;}
.xcf_c00248{left:618.533333pt;}
.xc7_c00248{left:619.600000pt;}
.x134_c00248{left:620.800000pt;}
.xa7_c00248{left:621.733333pt;}
.x138_c00248{left:622.933333pt;}
.xb9_c00248{left:624.666667pt;}
.x129_c00248{left:626.133333pt;}
.x147_c00248{left:627.466667pt;}
.xb2_c00248{left:628.400000pt;}
.xe2_c00248{left:630.000000pt;}
.xd8_c00248{left:631.866667pt;}
.xd0_c00248{left:633.200000pt;}
.x11b_c00248{left:634.133333pt;}
.x141_c00248{left:635.600000pt;}
.x154_c00248{left:636.533333pt;}
.x135_c00248{left:638.400000pt;}
.x112_c00248{left:639.333333pt;}
.xef_c00248{left:640.400000pt;}
.x122_c00248{left:641.866667pt;}
.xbf_c00248{left:643.866667pt;}
.xff_c00248{left:645.333333pt;}
.xe8_c00248{left:646.666667pt;}
.xf4_c00248{left:648.266667pt;}
.xa8_c00248{left:649.200000pt;}
.x14b_c00248{left:652.400000pt;}
.xf6_c00248{left:654.266667pt;}
.xd9_c00248{left:655.200000pt;}
.xba_c00248{left:657.333333pt;}
.xe3_c00248{left:660.666667pt;}
.xe9_c00248{left:662.000000pt;}
.xd1_c00248{left:664.266667pt;}
.x12a_c00248{left:665.466667pt;}
.xc0_c00248{left:666.933333pt;}
.x124_c00248{left:667.866667pt;}
.xf0_c00248{left:669.200000pt;}
.x142_c00248{left:670.133333pt;}
.xc8_c00248{left:673.733333pt;}
.xe0_c00248{left:675.066667pt;}
.xf7_c00248{left:676.933333pt;}
.x4_c00248{left:679.066667pt;}
.x100_c00248{left:680.533333pt;}
.xea_c00248{left:681.466667pt;}
.x109_c00248{left:682.400000pt;}
.x13b_c00248{left:684.133333pt;}
.x104_c00248{left:685.200000pt;}
.x2_c00248{left:687.066667pt;}
.xa9_c00248{left:689.466667pt;}
.xfd_c00248{left:691.200000pt;}
.xc9_c00248{left:692.266667pt;}
.x10d_c00248{left:693.600000pt;}
.x12e_c00248{left:696.800000pt;}
.x3_c00248{left:698.000000pt;}
.x11f_c00248{left:706.533333pt;}
.x14e_c00248{left:709.200000pt;}
.x156_c00248{left:746.666667pt;}
.x157_c00248{left:756.266667pt;}
}





/* 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_c00249 {
    display:none;
  }
  .loading-indicator_c00249.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00249 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_c00249 { 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_c00249" -> "#page-container .classname_c00249")
 */
.pf_c00249 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00249 { /* 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_c00249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00249 { /* 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_c00249 { /* 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_c00249 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00249 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00249 {overflow:visible;}
  }
}
.c_c00249 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00249 { /* 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_c00249:after { /* webkit #35443 */
  content: '';
}
.t_c00249:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00249 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 */
}
.__c00249 { /* 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_c00249 { /* info for Javascript */
  display:none;
}
.l_c00249 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00249 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00249 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00249: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_c00249 {
    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_c00249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00249.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_c00249 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00249;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.000000;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;}
.m134_c00249{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m30_c00249{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m14b_c00249{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00249{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m116_c00249{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m89_c00249{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00249{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m40_c00249{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m91_c00249{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00249{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00249{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00249{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m68_c00249{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mad_c00249{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m71_c00249{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mce_c00249{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00249{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00249{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00249{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00249{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mac_c00249{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00249{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m23_c00249{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00249{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m70_c00249{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00249{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.md1_c00249{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.md7_c00249{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00249{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00249{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00249{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00249{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m110_c00249{transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);}
.m51_c00249{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m69_c00249{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m14d_c00249{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mab_c00249{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m0_c00249{transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00249{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00249{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00249{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00249{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m155_c00249{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00249{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m82_c00249{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m117_c00249{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m50_c00249{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.maa_c00249{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m145_c00249{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m115_c00249{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m34_c00249{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.md5_c00249{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m29_c00249{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00249{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00249{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m86_c00249{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m109_c00249{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m37_c00249{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00249{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m90_c00249{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.med_c00249{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00249{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00249{transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);}
.m19_c00249{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00249{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m58_c00249{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00249{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m88_c00249{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00249{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m52_c00249{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m16_c00249{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m13_c00249{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m80_c00249{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m28_c00249{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00249{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m133_c00249{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m87_c00249{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00249{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00249{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m140_c00249{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m24_c00249{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00249{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00249{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00249{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00249{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00249{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m107_c00249{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me3_c00249{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00249{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m118_c00249{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m53_c00249{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00249{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m106_c00249{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00249{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma_c00249{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc_c00249{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00249{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00249{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00249{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m13a_c00249{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m131_c00249{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m7_c00249{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m74_c00249{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me_c00249{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00249{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m108_c00249{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m10_c00249{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m77_c00249{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m146_c00249{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m81_c00249{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m139_c00249{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m4_c00249{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00249{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00249{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00249{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m22_c00249{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m15_c00249{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m25_c00249{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m38_c00249{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00249{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m12_c00249{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me8_c00249{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m11_c00249{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m26_c00249{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m59_c00249{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00249{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00249{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m149_c00249{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m48_c00249{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3_c00249{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m14f_c00249{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m96_c00249{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m132_c00249{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m42_c00249{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m14_c00249{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00249{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00249{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m57_c00249{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m54_c00249{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00249{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m56_c00249{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00249{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00249{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md0_c00249{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00249{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mee_c00249{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00249{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me7_c00249{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00249{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00249{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m44_c00249{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m156_c00249{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m6_c00249{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m14e_c00249{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00249{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00249{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m39_c00249{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mca_c00249{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m72_c00249{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m104_c00249{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m31_c00249{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m94_c00249{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb_c00249{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00249{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00249{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m49_c00249{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00249{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m35_c00249{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00249{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me4_c00249{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m21_c00249{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m95_c00249{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mba_c00249{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00249{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m141_c00249{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md2_c00249{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00249{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00249{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m55_c00249{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00249{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m73_c00249{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00249{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00249{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m122_c00249{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00249{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m154_c00249{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9_c00249{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00249{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00249{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m114_c00249{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00249{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m17_c00249{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m33_c00249{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m41_c00249{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00249{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m123_c00249{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m112_c00249{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m111_c00249{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00249{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m136_c00249{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m46_c00249{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00249{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00249{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m92_c00249{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m27_c00249{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00249{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m45_c00249{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00249{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00249{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00249{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m43_c00249{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m127_c00249{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m18_c00249{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00249{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m125_c00249{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mff_c00249{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00249{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mea_c00249{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m76_c00249{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m119_c00249{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m75_c00249{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00249{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00249{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00249{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m99_c00249{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m20_c00249{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00249{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md9_c00249{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00249{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m126_c00249{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00249{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00249{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00249{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00249{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m143_c00249{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m152_c00249{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5_c00249{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me0_c00249{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00249{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00249{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m128_c00249{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00249{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.me1_c00249{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m144_c00249{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00249{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00249{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mef_c00249{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m98_c00249{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m78_c00249{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00249{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00249{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m62_c00249{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m135_c00249{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m83_c00249{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00249{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00249{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);}
.m124_c00249{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m13e_c00249{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00249{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m100_c00249{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m47_c00249{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md8_c00249{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mae_c00249{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m147_c00249{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00249{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m36_c00249{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mf_c00249{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m113_c00249{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00249{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.meb_c00249{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m102_c00249{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00249{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mde_c00249{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m153_c00249{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00249{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m121_c00249{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00249{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00249{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00249{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m138_c00249{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00249{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m103_c00249{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.md4_c00249{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m129_c00249{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m32_c00249{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m137_c00249{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00249{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.md6_c00249{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m85_c00249{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m14c_c00249{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00249{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00249{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.me2_c00249{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mda_c00249{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m97_c00249{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m101_c00249{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00249{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m105_c00249{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m14a_c00249{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m130_c00249{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00249{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00249{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00249{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00249{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m79_c00249{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00249{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00249{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00249{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.me9_c00249{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m120_c00249{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00249{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00249{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m150_c00249{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m60_c00249{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.me6_c00249{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00249{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.md3_c00249{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00249{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m61_c00249{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.mec_c00249{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m151_c00249{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00249{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m66_c00249{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m84_c00249{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00249{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00249{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m142_c00249{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.m67_c00249{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m148_c00249{transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);}
.m63_c00249{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m65_c00249{transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);}
.maf_c00249{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m64_c00249{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13d_c00249{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m93_c00249{transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);}
.me5_c00249{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00249{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00249{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00249{transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00249{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls0_c00249{letter-spacing:0.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{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__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00249{word-spacing:-12.820513px;}
.wse_c00249{word-spacing:-8.750000px;}
.ws11_c00249{word-spacing:-5.777887px;}
.wsd_c00249{word-spacing:-2.984436px;}
.wsa_c00249{word-spacing:-2.688679px;}
.ws0_c00249{word-spacing:-0.146132px;}
.ws13_c00249{word-spacing:0.000000px;}
.wsc_c00249{word-spacing:9.375423px;}
.wsf_c00249{word-spacing:14.523732px;}
.ws3_c00249{word-spacing:18.283668px;}
.ws6_c00249{word-spacing:32.724970px;}
.ws10_c00249{word-spacing:47.794118px;}
.ws1_c00249{word-spacing:189.791667px;}
.ws5_c00249{word-spacing:268.351145px;}
.ws4_c00249{word-spacing:285.250000px;}
.ws2_c00249{word-spacing:362.500000px;}
.ws9_c00249{word-spacing:388.696629px;}
.ws12_c00249{word-spacing:426.000000px;}
.ws8_c00249{word-spacing:726.366412px;}
.ws7_c00249{word-spacing:939.343511px;}
._0_c00249{width:529.791667px;}
.fc0_c00249{color:transparent;}
.fs3_c00249{font-size:24.000000px;}
.fs4_c00249{font-size:30.000000px;}
.fs5_c00249{font-size:36.000000px;}
.fs7_c00249{font-size:48.000000px;}
.fs6_c00249{font-size:54.000000px;}
.fs2_c00249{font-size:60.000000px;}
.fs1_c00249{font-size:66.000000px;}
.fs0_c00249{font-size:114.000000px;}
.y0_c00249{bottom:0.000000px;}
.y4d_c00249{bottom:167.100000px;}
.y4e_c00249{bottom:168.150000px;}
.y48_c00249{bottom:179.700000px;}
.y4c_c00249{bottom:187.200000px;}
.y4b_c00249{bottom:194.100000px;}
.y47_c00249{bottom:196.650000px;}
.y4a_c00249{bottom:204.900000px;}
.y46_c00249{bottom:212.850000px;}
.y49_c00249{bottom:222.450000px;}
.y45_c00249{bottom:227.250000px;}
.y44_c00249{bottom:246.300000px;}
.y43_c00249{bottom:262.800000px;}
.y42_c00249{bottom:279.000000px;}
.y41_c00249{bottom:296.250000px;}
.y40_c00249{bottom:303.450000px;}
.y3f_c00249{bottom:319.950000px;}
.y3e_c00249{bottom:332.250000px;}
.y3d_c00249{bottom:348.750000px;}
.y3c_c00249{bottom:366.450000px;}
.y3b_c00249{bottom:379.800000px;}
.y3a_c00249{bottom:393.900000px;}
.y39_c00249{bottom:408.000000px;}
.y38_c00249{bottom:423.900000px;}
.y37_c00249{bottom:441.600000px;}
.y36_c00249{bottom:450.300000px;}
.y35_c00249{bottom:458.250000px;}
.y33_c00249{bottom:465.450000px;}
.y34_c00249{bottom:465.750000px;}
.y32_c00249{bottom:480.300000px;}
.y31_c00249{bottom:491.400000px;}
.y30_c00249{bottom:495.900000px;}
.y2f_c00249{bottom:513.600000px;}
.y2e_c00249{bottom:524.100000px;}
.y2d_c00249{bottom:531.300000px;}
.y2c_c00249{bottom:547.500000px;}
.y2b_c00249{bottom:557.550000px;}
.y2a_c00249{bottom:571.200000px;}
.y29_c00249{bottom:578.100000px;}
.y28_c00249{bottom:585.300000px;}
.y27_c00249{bottom:601.800000px;}
.y26_c00249{bottom:619.500000px;}
.y25_c00249{bottom:628.500000px;}
.y24_c00249{bottom:631.050000px;}
.y23_c00249{bottom:642.600000px;}
.y22_c00249{bottom:657.300000px;}
.y21_c00249{bottom:672.300000px;}
.y20_c00249{bottom:690.000000px;}
.y1f_c00249{bottom:700.500000px;}
.y1e_c00249{bottom:714.600000px;}
.y1d_c00249{bottom:728.700000px;}
.y1c_c00249{bottom:744.150000px;}
.y1b_c00249{bottom:762.150000px;}
.y1a_c00249{bottom:771.900000px;}
.y19_c00249{bottom:786.300000px;}
.y18_c00249{bottom:801.000000px;}
.y17_c00249{bottom:815.100000px;}
.y16_c00249{bottom:832.650000px;}
.y15_c00249{bottom:843.450000px;}
.y14_c00249{bottom:858.900000px;}
.y13_c00249{bottom:876.900000px;}
.y12_c00249{bottom:890.250000px;}
.y11_c00249{bottom:894.900000px;}
.y10_c00249{bottom:912.900000px;}
.yf_c00249{bottom:920.100000px;}
.ye_c00249{bottom:934.200000px;}
.yd_c00249{bottom:948.600000px;}
.yc_c00249{bottom:956.550000px;}
.yb_c00249{bottom:966.300000px;}
.ya_c00249{bottom:974.550000px;}
.y9_c00249{bottom:983.850000px;}
.y8_c00249{bottom:1001.850000px;}
.y7_c00249{bottom:1019.850000px;}
.y6_c00249{bottom:1037.850000px;}
.y5_c00249{bottom:1056.300000px;}
.y4_c00249{bottom:1074.300000px;}
.y3_c00249{bottom:1092.600000px;}
.y2_c00249{bottom:1110.300000px;}
.y1_c00249{bottom:1135.800000px;}
.h5_c00249{height:24.000000px;}
.h6_c00249{height:30.000000px;}
.h7_c00249{height:36.000000px;}
.h9_c00249{height:48.000000px;}
.h8_c00249{height:54.000000px;}
.h4_c00249{height:60.000000px;}
.h3_c00249{height:66.000000px;}
.h2_c00249{height:114.000000px;}
.h0_c00249{height:1271.879975px;}
.h1_c00249{height:1272.000000px;}
.w1_c00249{width:961.500000px;}
.w0_c00249{width:961.560058px;}
.x0_c00249{left:0.000000px;}
.x1_c00249{left:173.550000px;}
.x3_c00249{left:191.550000px;}
.x13_c00249{left:192.900000px;}
.x10b_c00249{left:193.950000px;}
.x128_c00249{left:195.000000px;}
.x144_c00249{left:196.650000px;}
.xdd_c00249{left:198.150000px;}
.x13f_c00249{left:209.400000px;}
.x11d_c00249{left:210.600000px;}
.x65_c00249{left:211.950000px;}
.x4_c00249{left:213.900000px;}
.x2d_c00249{left:215.550000px;}
.x53_c00249{left:219.000000px;}
.x74_c00249{left:220.800000px;}
.x15a_c00249{left:221.850000px;}
.x22_c00249{left:223.500000px;}
.xaa_c00249{left:226.500000px;}
.xc3_c00249{left:228.600000px;}
.x111_c00249{left:231.150000px;}
.x145_c00249{left:233.400000px;}
.xcc_c00249{left:234.450000px;}
.xf5_c00249{left:236.250000px;}
.xa4_c00249{left:237.450000px;}
.x59_c00249{left:239.550000px;}
.x6b_c00249{left:241.050000px;}
.x167_c00249{left:243.000000px;}
.x4d_c00249{left:244.800000px;}
.x162_c00249{left:246.000000px;}
.x54_c00249{left:247.800000px;}
.x2e_c00249{left:250.500000px;}
.xd4_c00249{left:252.000000px;}
.xf6_c00249{left:253.200000px;}
.x112_c00249{left:254.250000px;}
.x106_c00249{left:255.300000px;}
.xde_c00249{left:258.000000px;}
.x2f_c00249{left:259.200000px;}
.xc4_c00249{left:262.050000px;}
.x14_c00249{left:263.850000px;}
.x37_c00249{left:264.900000px;}
.x172_c00249{left:266.100000px;}
.x116_c00249{left:267.150000px;}
.x13c_c00249{left:268.500000px;}
.xd5_c00249{left:269.700000px;}
.x5_c00249{left:271.200000px;}
.x150_c00249{left:273.600000px;}
.x30_c00249{left:275.700000px;}
.x4e_c00249{left:276.900000px;}
.x164_c00249{left:279.300000px;}
.x38_c00249{left:280.350000px;}
.x87_c00249{left:281.550000px;}
.xc5_c00249{left:282.900000px;}
.xdf_c00249{left:284.250000px;}
.x5a_c00249{left:285.600000px;}
.xe9_c00249{left:286.650000px;}
.x23_c00249{left:288.000000px;}
.x146_c00249{left:292.800000px;}
.x117_c00249{left:294.900000px;}
.xab_c00249{left:297.750000px;}
.x31_c00249{left:299.400000px;}
.x12c_c00249{left:300.600000px;}
.x15_c00249{left:301.950000px;}
.x4f_c00249{left:303.600000px;}
.x7c_c00249{left:305.550000px;}
.xd6_c00249{left:307.500000px;}
.x24_c00249{left:309.600000px;}
.x46_c00249{left:311.100000px;}
.x8f_c00249{left:314.550000px;}
.xbb_c00249{left:316.050000px;}
.x39_c00249{left:317.100000px;}
.x5b_c00249{left:318.300000px;}
.xac_c00249{left:319.350000px;}
.x113_c00249{left:321.600000px;}
.x55_c00249{left:322.950000px;}
.xf0_c00249{left:326.850000px;}
.xa5_c00249{left:328.200000px;}
.xd1_c00249{left:330.900000px;}
.x16d_c00249{left:331.950000px;}
.x151_c00249{left:333.300000px;}
.x6c_c00249{left:334.500000px;}
.x6_c00249{left:335.700000px;}
.x149_c00249{left:336.900000px;}
.x88_c00249{left:337.950000px;}
.x9b_c00249{left:339.000000px;}
.x136_c00249{left:340.650000px;}
.x16e_c00249{left:342.750000px;}
.x90_c00249{left:345.150000px;}
.x66_c00249{left:346.200000px;}
.x132_c00249{left:347.850000px;}
.x32_c00249{left:349.800000px;}
.x50_c00249{left:351.900000px;}
.x15c_c00249{left:353.700000px;}
.x89_c00249{left:355.200000px;}
.x9c_c00249{left:356.700000px;}
.x147_c00249{left:358.050000px;}
.x107_c00249{left:359.700000px;}
.xf7_c00249{left:361.500000px;}
.x91_c00249{left:363.150000px;}
.x7_c00249{left:364.500000px;}
.x3a_c00249{left:366.450000px;}
.x129_c00249{left:368.400000px;}
.x92_c00249{left:370.050000px;}
.x16_c00249{left:371.400000px;}
.x47_c00249{left:373.350000px;}
.xc6_c00249{left:374.400000px;}
.xf1_c00249{left:375.750000px;}
.xad_c00249{left:378.450000px;}
.x152_c00249{left:380.400000px;}
.x33_c00249{left:381.900000px;}
.xe0_c00249{left:383.100000px;}
.x48_c00249{left:385.200000px;}
.x56_c00249{left:386.250000px;}
.x93_c00249{left:387.750000px;}
.xff_c00249{left:390.300000px;}
.x7d_c00249{left:391.500000px;}
.x11e_c00249{left:393.150000px;}
.x6d_c00249{left:394.200000px;}
.xf8_c00249{left:395.400000px;}
.x8a_c00249{left:396.900000px;}
.xae_c00249{left:398.250000px;}
.xbc_c00249{left:399.900000px;}
.x156_c00249{left:401.400000px;}
.x9d_c00249{left:403.500000px;}
.x49_c00249{left:404.700000px;}
.x140_c00249{left:405.900000px;}
.xbd_c00249{left:408.900000px;}
.xd7_c00249{left:411.150000px;}
.x94_c00249{left:412.950000px;}
.x25_c00249{left:414.000000px;}
.x51_c00249{left:415.950000px;}
.x2_c00249{left:418.350000px;}
.xea_c00249{left:419.400000px;}
.x137_c00249{left:421.650000px;}
.x17_c00249{left:423.600000px;}
.x57_c00249{left:425.100000px;}
.x8_c00249{left:427.200000px;}
.xbe_c00249{left:429.000000px;}
.xd8_c00249{left:430.950000px;}
.xa6_c00249{left:432.900000px;}
.x9e_c00249{left:434.400000px;}
.x161_c00249{left:436.500000px;}
.x26_c00249{left:437.700000px;}
.x13d_c00249{left:438.900000px;}
.x11f_c00249{left:439.950000px;}
.x4a_c00249{left:441.000000px;}
.xcd_c00249{left:442.200000px;}
.x122_c00249{left:443.700000px;}
.x16c_c00249{left:445.650000px;}
.xaf_c00249{left:447.150000px;}
.x18_c00249{left:448.500000px;}
.xf2_c00249{left:449.850000px;}
.x141_c00249{left:451.950000px;}
.xd9_c00249{left:453.600000px;}
.x34_c00249{left:455.700000px;}
.x95_c00249{left:456.900000px;}
.x9_c00249{left:458.850000px;}
.x67_c00249{left:460.650000px;}
.x13a_c00249{left:461.700000px;}
.x3b_c00249{left:463.350000px;}
.xa7_c00249{left:465.000000px;}
.x120_c00249{left:466.650000px;}
.xf9_c00249{left:468.000000px;}
.x52_c00249{left:469.950000px;}
.x7e_c00249{left:471.750000px;}
.x68_c00249{left:474.750000px;}
.x19_c00249{left:475.800000px;}
.x118_c00249{left:477.000000px;}
.x5c_c00249{left:478.500000px;}
.xeb_c00249{left:479.850000px;}
.x9f_c00249{left:481.500000px;}
.x8b_c00249{left:483.300000px;}
.x14c_c00249{left:484.800000px;}
.xc7_c00249{left:486.750000px;}
.xa_c00249{left:488.400000px;}
.x123_c00249{left:491.100000px;}
.xb0_c00249{left:492.900000px;}
.xb5_c00249{left:494.250000px;}
.xa2_c00249{left:495.300000px;}
.x100_c00249{left:497.550000px;}
.xda_c00249{left:498.600000px;}
.xa0_c00249{left:501.600000px;}
.x160_c00249{left:502.650000px;}
.x58_c00249{left:504.600000px;}
.x108_c00249{left:505.950000px;}
.xa1_c00249{left:517.050000px;}
.x6e_c00249{left:528.900000px;}
.xa3_c00249{left:530.250000px;}
.x142_c00249{left:531.750000px;}
.x153_c00249{left:532.800000px;}
.x15d_c00249{left:534.150000px;}
.x171_c00249{left:537.900000px;}
.x5d_c00249{left:543.300000px;}
.xb_c00249{left:545.250000px;}
.xf3_c00249{left:546.750000px;}
.xce_c00249{left:548.100000px;}
.x7f_c00249{left:549.150000px;}
.x165_c00249{left:550.800000px;}
.x14d_c00249{left:553.800000px;}
.xb6_c00249{left:556.200000px;}
.x8c_c00249{left:557.850000px;}
.x157_c00249{left:560.100000px;}
.xe1_c00249{left:562.800000px;}
.x3c_c00249{left:564.900000px;}
.x27_c00249{left:567.000000px;}
.xc8_c00249{left:568.050000px;}
.x96_c00249{left:569.850000px;}
.x124_c00249{left:571.050000px;}
.x1a_c00249{left:572.550000px;}
.x35_c00249{left:573.750000px;}
.xc9_c00249{left:576.750000px;}
.x119_c00249{left:578.250000px;}
.x114_c00249{left:579.600000px;}
.x8d_c00249{left:580.950000px;}
.x163_c00249{left:582.150000px;}
.x5e_c00249{left:584.700000px;}
.x3d_c00249{left:587.550000px;}
.xb1_c00249{left:589.350000px;}
.x14e_c00249{left:590.550000px;}
.x109_c00249{left:591.600000px;}
.xb7_c00249{left:593.700000px;}
.x101_c00249{left:594.750000px;}
.x28_c00249{left:596.100000px;}
.xc_c00249{left:598.950000px;}
.x158_c00249{left:600.000000px;}
.x97_c00249{left:601.500000px;}
.x5f_c00249{left:602.700000px;}
.x29_c00249{left:604.350000px;}
.x133_c00249{left:605.700000px;}
.x1b_c00249{left:607.050000px;}
.x69_c00249{left:609.000000px;}
.xec_c00249{left:610.500000px;}
.x168_c00249{left:611.550000px;}
.x102_c00249{left:612.750000px;}
.xfa_c00249{left:613.800000px;}
.x80_c00249{left:615.450000px;}
.x75_c00249{left:616.650000px;}
.xe2_c00249{left:619.350000px;}
.xd_c00249{left:621.300000px;}
.xa8_c00249{left:623.250000px;}
.x4b_c00249{left:625.050000px;}
.xb8_c00249{left:626.850000px;}
.x1c_c00249{left:627.900000px;}
.x3e_c00249{left:629.250000px;}
.x8e_c00249{left:631.350000px;}
.x12a_c00249{left:634.350000px;}
.xfb_c00249{left:635.400000px;}
.x6f_c00249{left:636.900000px;}
.x2a_c00249{left:638.100000px;}
.xe3_c00249{left:639.450000px;}
.xed_c00249{left:641.850000px;}
.xf4_c00249{left:643.200000px;}
.x103_c00249{left:644.400000px;}
.x169_c00249{left:646.050000px;}
.x1d_c00249{left:648.750000px;}
.xb2_c00249{left:649.800000px;}
.x115_c00249{left:650.850000px;}
.xe_c00249{left:651.900000px;}
.x60_c00249{left:654.150000px;}
.x70_c00249{left:656.400000px;}
.x10c_c00249{left:658.650000px;}
.xa9_c00249{left:660.300000px;}
.x76_c00249{left:661.950000px;}
.xe4_c00249{left:663.900000px;}
.x12e_c00249{left:666.150000px;}
.xb3_c00249{left:668.550000px;}
.x81_c00249{left:670.950000px;}
.x12d_c00249{left:672.900000px;}
.x138_c00249{left:674.700000px;}
.x14f_c00249{left:675.900000px;}
.xbf_c00249{left:677.700000px;}
.xca_c00249{left:679.800000px;}
.x13b_c00249{left:681.300000px;}
.xb9_c00249{left:682.650000px;}
.x1e_c00249{left:686.250000px;}
.x125_c00249{left:687.750000px;}
.xee_c00249{left:688.950000px;}
.x10a_c00249{left:690.300000px;}
.x139_c00249{left:691.650000px;}
.xf_c00249{left:693.300000px;}
.x16a_c00249{left:694.950000px;}
.x3f_c00249{left:696.150000px;}
.x98_c00249{left:697.650000px;}
.xcb_c00249{left:699.300000px;}
.x134_c00249{left:700.950000px;}
.xd2_c00249{left:702.000000px;}
.x121_c00249{left:704.550000px;}
.x154_c00249{left:705.600000px;}
.x61_c00249{left:708.450000px;}
.xef_c00249{left:709.800000px;}
.x135_c00249{left:712.500000px;}
.x13e_c00249{left:714.750000px;}
.x40_c00249{left:719.550000px;}
.x71_c00249{left:721.500000px;}
.x126_c00249{left:723.750000px;}
.xc0_c00249{left:727.800000px;}
.x10_c00249{left:729.300000px;}
.x99_c00249{left:730.800000px;}
.x15e_c00249{left:731.850000px;}
.x62_c00249{left:732.900000px;}
.x159_c00249{left:735.300000px;}
.x148_c00249{left:736.500000px;}
.x41_c00249{left:737.550000px;}
.x1f_c00249{left:739.200000px;}
.x16b_c00249{left:740.700000px;}
.x77_c00249{left:742.200000px;}
.x82_c00249{left:744.000000px;}
.x12f_c00249{left:745.050000px;}
.x10d_c00249{left:746.850000px;}
.xfc_c00249{left:750.900000px;}
.xe5_c00249{left:752.100000px;}
.xcf_c00249{left:753.300000px;}
.x130_c00249{left:754.350000px;}
.x127_c00249{left:755.850000px;}
.x72_c00249{left:759.600000px;}
.x14a_c00249{left:761.700000px;}
.x42_c00249{left:763.500000px;}
.x11_c00249{left:765.300000px;}
.xe6_c00249{left:766.500000px;}
.x104_c00249{left:768.900000px;}
.x9a_c00249{left:770.700000px;}
.x2b_c00249{left:773.550000px;}
.x78_c00249{left:774.600000px;}
.x83_c00249{left:775.650000px;}
.xd0_c00249{left:776.700000px;}
.x11a_c00249{left:780.600000px;}
.xba_c00249{left:781.950000px;}
.xfd_c00249{left:784.350000px;}
.x84_c00249{left:786.750000px;}
.x43_c00249{left:789.000000px;}
.x20_c00249{left:791.100000px;}
.xdb_c00249{left:792.750000px;}
.x79_c00249{left:794.100000px;}
.x36_c00249{left:795.900000px;}
.x11b_c00249{left:798.300000px;}
.x15b_c00249{left:800.250000px;}
.x166_c00249{left:802.800000px;}
.xd3_c00249{left:804.000000px;}
.xc1_c00249{left:805.950000px;}
.x10e_c00249{left:807.600000px;}
.x63_c00249{left:812.100000px;}
.x21_c00249{left:814.200000px;}
.xfe_c00249{left:816.000000px;}
.xe7_c00249{left:817.650000px;}
.x4c_c00249{left:818.700000px;}
.x73_c00249{left:820.800000px;}
.x12b_c00249{left:822.300000px;}
.x12_c00249{left:823.650000px;}
.x85_c00249{left:825.600000px;}
.x44_c00249{left:827.850000px;}
.x10f_c00249{left:831.000000px;}
.x105_c00249{left:834.150000px;}
.x64_c00249{left:835.500000px;}
.x143_c00249{left:836.700000px;}
.xb4_c00249{left:838.350000px;}
.x7a_c00249{left:839.850000px;}
.x2c_c00249{left:842.250000px;}
.xe8_c00249{left:844.650000px;}
.x86_c00249{left:846.450000px;}
.xdc_c00249{left:847.500000px;}
.x6a_c00249{left:849.000000px;}
.x45_c00249{left:850.500000px;}
.x7b_c00249{left:852.450000px;}
.xc2_c00249{left:853.800000px;}
.x110_c00249{left:856.500000px;}
.x15f_c00249{left:859.050000px;}
.x11c_c00249{left:860.850000px;}
.x155_c00249{left:863.100000px;}
.x131_c00249{left:865.950000px;}
.x14b_c00249{left:868.650000px;}
.x170_c00249{left:874.200000px;}
.x16f_c00249{left:878.550000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.wsb_c00249{word-spacing:-11.396011pt;}
.wse_c00249{word-spacing:-7.777778pt;}
.ws11_c00249{word-spacing:-5.135900pt;}
.wsd_c00249{word-spacing:-2.652832pt;}
.wsa_c00249{word-spacing:-2.389937pt;}
.ws0_c00249{word-spacing:-0.129895pt;}
.ws13_c00249{word-spacing:0.000000pt;}
.wsc_c00249{word-spacing:8.333709pt;}
.wsf_c00249{word-spacing:12.909984pt;}
.ws3_c00249{word-spacing:16.252149pt;}
.ws6_c00249{word-spacing:29.088862pt;}
.ws10_c00249{word-spacing:42.483660pt;}
.ws1_c00249{word-spacing:168.703704pt;}
.ws5_c00249{word-spacing:238.534351pt;}
.ws4_c00249{word-spacing:253.555556pt;}
.ws2_c00249{word-spacing:322.222222pt;}
.ws9_c00249{word-spacing:345.508115pt;}
.ws12_c00249{word-spacing:378.666667pt;}
.ws8_c00249{word-spacing:645.659033pt;}
.ws7_c00249{word-spacing:834.972010pt;}
._0_c00249{width:470.925926pt;}
.fs3_c00249{font-size:21.333333pt;}
.fs4_c00249{font-size:26.666667pt;}
.fs5_c00249{font-size:32.000000pt;}
.fs7_c00249{font-size:42.666667pt;}
.fs6_c00249{font-size:48.000000pt;}
.fs2_c00249{font-size:53.333333pt;}
.fs1_c00249{font-size:58.666667pt;}
.fs0_c00249{font-size:101.333333pt;}
.y0_c00249{bottom:0.000000pt;}
.y4d_c00249{bottom:148.533333pt;}
.y4e_c00249{bottom:149.466667pt;}
.y48_c00249{bottom:159.733333pt;}
.y4c_c00249{bottom:166.400000pt;}
.y4b_c00249{bottom:172.533333pt;}
.y47_c00249{bottom:174.800000pt;}
.y4a_c00249{bottom:182.133333pt;}
.y46_c00249{bottom:189.200000pt;}
.y49_c00249{bottom:197.733333pt;}
.y45_c00249{bottom:202.000000pt;}
.y44_c00249{bottom:218.933333pt;}
.y43_c00249{bottom:233.600000pt;}
.y42_c00249{bottom:248.000000pt;}
.y41_c00249{bottom:263.333333pt;}
.y40_c00249{bottom:269.733333pt;}
.y3f_c00249{bottom:284.400000pt;}
.y3e_c00249{bottom:295.333333pt;}
.y3d_c00249{bottom:310.000000pt;}
.y3c_c00249{bottom:325.733333pt;}
.y3b_c00249{bottom:337.600000pt;}
.y3a_c00249{bottom:350.133333pt;}
.y39_c00249{bottom:362.666667pt;}
.y38_c00249{bottom:376.800000pt;}
.y37_c00249{bottom:392.533333pt;}
.y36_c00249{bottom:400.266667pt;}
.y35_c00249{bottom:407.333333pt;}
.y33_c00249{bottom:413.733333pt;}
.y34_c00249{bottom:414.000000pt;}
.y32_c00249{bottom:426.933333pt;}
.y31_c00249{bottom:436.800000pt;}
.y30_c00249{bottom:440.800000pt;}
.y2f_c00249{bottom:456.533333pt;}
.y2e_c00249{bottom:465.866667pt;}
.y2d_c00249{bottom:472.266667pt;}
.y2c_c00249{bottom:486.666667pt;}
.y2b_c00249{bottom:495.600000pt;}
.y2a_c00249{bottom:507.733333pt;}
.y29_c00249{bottom:513.866667pt;}
.y28_c00249{bottom:520.266667pt;}
.y27_c00249{bottom:534.933333pt;}
.y26_c00249{bottom:550.666667pt;}
.y25_c00249{bottom:558.666667pt;}
.y24_c00249{bottom:560.933333pt;}
.y23_c00249{bottom:571.200000pt;}
.y22_c00249{bottom:584.266667pt;}
.y21_c00249{bottom:597.600000pt;}
.y20_c00249{bottom:613.333333pt;}
.y1f_c00249{bottom:622.666667pt;}
.y1e_c00249{bottom:635.200000pt;}
.y1d_c00249{bottom:647.733333pt;}
.y1c_c00249{bottom:661.466667pt;}
.y1b_c00249{bottom:677.466667pt;}
.y1a_c00249{bottom:686.133333pt;}
.y19_c00249{bottom:698.933333pt;}
.y18_c00249{bottom:712.000000pt;}
.y17_c00249{bottom:724.533333pt;}
.y16_c00249{bottom:740.133333pt;}
.y15_c00249{bottom:749.733333pt;}
.y14_c00249{bottom:763.466667pt;}
.y13_c00249{bottom:779.466667pt;}
.y12_c00249{bottom:791.333333pt;}
.y11_c00249{bottom:795.466667pt;}
.y10_c00249{bottom:811.466667pt;}
.yf_c00249{bottom:817.866667pt;}
.ye_c00249{bottom:830.400000pt;}
.yd_c00249{bottom:843.200000pt;}
.yc_c00249{bottom:850.266667pt;}
.yb_c00249{bottom:858.933333pt;}
.ya_c00249{bottom:866.266667pt;}
.y9_c00249{bottom:874.533333pt;}
.y8_c00249{bottom:890.533333pt;}
.y7_c00249{bottom:906.533333pt;}
.y6_c00249{bottom:922.533333pt;}
.y5_c00249{bottom:938.933333pt;}
.y4_c00249{bottom:954.933333pt;}
.y3_c00249{bottom:971.200000pt;}
.y2_c00249{bottom:986.933333pt;}
.y1_c00249{bottom:1009.600000pt;}
.h5_c00249{height:21.333333pt;}
.h6_c00249{height:26.666667pt;}
.h7_c00249{height:32.000000pt;}
.h9_c00249{height:42.666667pt;}
.h8_c00249{height:48.000000pt;}
.h4_c00249{height:53.333333pt;}
.h3_c00249{height:58.666667pt;}
.h2_c00249{height:101.333333pt;}
.h0_c00249{height:1130.559977pt;}
.h1_c00249{height:1130.666667pt;}
.w1_c00249{width:854.666667pt;}
.w0_c00249{width:854.720052pt;}
.x0_c00249{left:0.000000pt;}
.x1_c00249{left:154.266667pt;}
.x3_c00249{left:170.266667pt;}
.x13_c00249{left:171.466667pt;}
.x10b_c00249{left:172.400000pt;}
.x128_c00249{left:173.333333pt;}
.x144_c00249{left:174.800000pt;}
.xdd_c00249{left:176.133333pt;}
.x13f_c00249{left:186.133333pt;}
.x11d_c00249{left:187.200000pt;}
.x65_c00249{left:188.400000pt;}
.x4_c00249{left:190.133333pt;}
.x2d_c00249{left:191.600000pt;}
.x53_c00249{left:194.666667pt;}
.x74_c00249{left:196.266667pt;}
.x15a_c00249{left:197.200000pt;}
.x22_c00249{left:198.666667pt;}
.xaa_c00249{left:201.333333pt;}
.xc3_c00249{left:203.200000pt;}
.x111_c00249{left:205.466667pt;}
.x145_c00249{left:207.466667pt;}
.xcc_c00249{left:208.400000pt;}
.xf5_c00249{left:210.000000pt;}
.xa4_c00249{left:211.066667pt;}
.x59_c00249{left:212.933333pt;}
.x6b_c00249{left:214.266667pt;}
.x167_c00249{left:216.000000pt;}
.x4d_c00249{left:217.600000pt;}
.x162_c00249{left:218.666667pt;}
.x54_c00249{left:220.266667pt;}
.x2e_c00249{left:222.666667pt;}
.xd4_c00249{left:224.000000pt;}
.xf6_c00249{left:225.066667pt;}
.x112_c00249{left:226.000000pt;}
.x106_c00249{left:226.933333pt;}
.xde_c00249{left:229.333333pt;}
.x2f_c00249{left:230.400000pt;}
.xc4_c00249{left:232.933333pt;}
.x14_c00249{left:234.533333pt;}
.x37_c00249{left:235.466667pt;}
.x172_c00249{left:236.533333pt;}
.x116_c00249{left:237.466667pt;}
.x13c_c00249{left:238.666667pt;}
.xd5_c00249{left:239.733333pt;}
.x5_c00249{left:241.066667pt;}
.x150_c00249{left:243.200000pt;}
.x30_c00249{left:245.066667pt;}
.x4e_c00249{left:246.133333pt;}
.x164_c00249{left:248.266667pt;}
.x38_c00249{left:249.200000pt;}
.x87_c00249{left:250.266667pt;}
.xc5_c00249{left:251.466667pt;}
.xdf_c00249{left:252.666667pt;}
.x5a_c00249{left:253.866667pt;}
.xe9_c00249{left:254.800000pt;}
.x23_c00249{left:256.000000pt;}
.x146_c00249{left:260.266667pt;}
.x117_c00249{left:262.133333pt;}
.xab_c00249{left:264.666667pt;}
.x31_c00249{left:266.133333pt;}
.x12c_c00249{left:267.200000pt;}
.x15_c00249{left:268.400000pt;}
.x4f_c00249{left:269.866667pt;}
.x7c_c00249{left:271.600000pt;}
.xd6_c00249{left:273.333333pt;}
.x24_c00249{left:275.200000pt;}
.x46_c00249{left:276.533333pt;}
.x8f_c00249{left:279.600000pt;}
.xbb_c00249{left:280.933333pt;}
.x39_c00249{left:281.866667pt;}
.x5b_c00249{left:282.933333pt;}
.xac_c00249{left:283.866667pt;}
.x113_c00249{left:285.866667pt;}
.x55_c00249{left:287.066667pt;}
.xf0_c00249{left:290.533333pt;}
.xa5_c00249{left:291.733333pt;}
.xd1_c00249{left:294.133333pt;}
.x16d_c00249{left:295.066667pt;}
.x151_c00249{left:296.266667pt;}
.x6c_c00249{left:297.333333pt;}
.x6_c00249{left:298.400000pt;}
.x149_c00249{left:299.466667pt;}
.x88_c00249{left:300.400000pt;}
.x9b_c00249{left:301.333333pt;}
.x136_c00249{left:302.800000pt;}
.x16e_c00249{left:304.666667pt;}
.x90_c00249{left:306.800000pt;}
.x66_c00249{left:307.733333pt;}
.x132_c00249{left:309.200000pt;}
.x32_c00249{left:310.933333pt;}
.x50_c00249{left:312.800000pt;}
.x15c_c00249{left:314.400000pt;}
.x89_c00249{left:315.733333pt;}
.x9c_c00249{left:317.066667pt;}
.x147_c00249{left:318.266667pt;}
.x107_c00249{left:319.733333pt;}
.xf7_c00249{left:321.333333pt;}
.x91_c00249{left:322.800000pt;}
.x7_c00249{left:324.000000pt;}
.x3a_c00249{left:325.733333pt;}
.x129_c00249{left:327.466667pt;}
.x92_c00249{left:328.933333pt;}
.x16_c00249{left:330.133333pt;}
.x47_c00249{left:331.866667pt;}
.xc6_c00249{left:332.800000pt;}
.xf1_c00249{left:334.000000pt;}
.xad_c00249{left:336.400000pt;}
.x152_c00249{left:338.133333pt;}
.x33_c00249{left:339.466667pt;}
.xe0_c00249{left:340.533333pt;}
.x48_c00249{left:342.400000pt;}
.x56_c00249{left:343.333333pt;}
.x93_c00249{left:344.666667pt;}
.xff_c00249{left:346.933333pt;}
.x7d_c00249{left:348.000000pt;}
.x11e_c00249{left:349.466667pt;}
.x6d_c00249{left:350.400000pt;}
.xf8_c00249{left:351.466667pt;}
.x8a_c00249{left:352.800000pt;}
.xae_c00249{left:354.000000pt;}
.xbc_c00249{left:355.466667pt;}
.x156_c00249{left:356.800000pt;}
.x9d_c00249{left:358.666667pt;}
.x49_c00249{left:359.733333pt;}
.x140_c00249{left:360.800000pt;}
.xbd_c00249{left:363.466667pt;}
.xd7_c00249{left:365.466667pt;}
.x94_c00249{left:367.066667pt;}
.x25_c00249{left:368.000000pt;}
.x51_c00249{left:369.733333pt;}
.x2_c00249{left:371.866667pt;}
.xea_c00249{left:372.800000pt;}
.x137_c00249{left:374.800000pt;}
.x17_c00249{left:376.533333pt;}
.x57_c00249{left:377.866667pt;}
.x8_c00249{left:379.733333pt;}
.xbe_c00249{left:381.333333pt;}
.xd8_c00249{left:383.066667pt;}
.xa6_c00249{left:384.800000pt;}
.x9e_c00249{left:386.133333pt;}
.x161_c00249{left:388.000000pt;}
.x26_c00249{left:389.066667pt;}
.x13d_c00249{left:390.133333pt;}
.x11f_c00249{left:391.066667pt;}
.x4a_c00249{left:392.000000pt;}
.xcd_c00249{left:393.066667pt;}
.x122_c00249{left:394.400000pt;}
.x16c_c00249{left:396.133333pt;}
.xaf_c00249{left:397.466667pt;}
.x18_c00249{left:398.666667pt;}
.xf2_c00249{left:399.866667pt;}
.x141_c00249{left:401.733333pt;}
.xd9_c00249{left:403.200000pt;}
.x34_c00249{left:405.066667pt;}
.x95_c00249{left:406.133333pt;}
.x9_c00249{left:407.866667pt;}
.x67_c00249{left:409.466667pt;}
.x13a_c00249{left:410.400000pt;}
.x3b_c00249{left:411.866667pt;}
.xa7_c00249{left:413.333333pt;}
.x120_c00249{left:414.800000pt;}
.xf9_c00249{left:416.000000pt;}
.x52_c00249{left:417.733333pt;}
.x7e_c00249{left:419.333333pt;}
.x68_c00249{left:422.000000pt;}
.x19_c00249{left:422.933333pt;}
.x118_c00249{left:424.000000pt;}
.x5c_c00249{left:425.333333pt;}
.xeb_c00249{left:426.533333pt;}
.x9f_c00249{left:428.000000pt;}
.x8b_c00249{left:429.600000pt;}
.x14c_c00249{left:430.933333pt;}
.xc7_c00249{left:432.666667pt;}
.xa_c00249{left:434.133333pt;}
.x123_c00249{left:436.533333pt;}
.xb0_c00249{left:438.133333pt;}
.xb5_c00249{left:439.333333pt;}
.xa2_c00249{left:440.266667pt;}
.x100_c00249{left:442.266667pt;}
.xda_c00249{left:443.200000pt;}
.xa0_c00249{left:445.866667pt;}
.x160_c00249{left:446.800000pt;}
.x58_c00249{left:448.533333pt;}
.x108_c00249{left:449.733333pt;}
.xa1_c00249{left:459.600000pt;}
.x6e_c00249{left:470.133333pt;}
.xa3_c00249{left:471.333333pt;}
.x142_c00249{left:472.666667pt;}
.x153_c00249{left:473.600000pt;}
.x15d_c00249{left:474.800000pt;}
.x171_c00249{left:478.133333pt;}
.x5d_c00249{left:482.933333pt;}
.xb_c00249{left:484.666667pt;}
.xf3_c00249{left:486.000000pt;}
.xce_c00249{left:487.200000pt;}
.x7f_c00249{left:488.133333pt;}
.x165_c00249{left:489.600000pt;}
.x14d_c00249{left:492.266667pt;}
.xb6_c00249{left:494.400000pt;}
.x8c_c00249{left:495.866667pt;}
.x157_c00249{left:497.866667pt;}
.xe1_c00249{left:500.266667pt;}
.x3c_c00249{left:502.133333pt;}
.x27_c00249{left:504.000000pt;}
.xc8_c00249{left:504.933333pt;}
.x96_c00249{left:506.533333pt;}
.x124_c00249{left:507.600000pt;}
.x1a_c00249{left:508.933333pt;}
.x35_c00249{left:510.000000pt;}
.xc9_c00249{left:512.666667pt;}
.x119_c00249{left:514.000000pt;}
.x114_c00249{left:515.200000pt;}
.x8d_c00249{left:516.400000pt;}
.x163_c00249{left:517.466667pt;}
.x5e_c00249{left:519.733333pt;}
.x3d_c00249{left:522.266667pt;}
.xb1_c00249{left:523.866667pt;}
.x14e_c00249{left:524.933333pt;}
.x109_c00249{left:525.866667pt;}
.xb7_c00249{left:527.733333pt;}
.x101_c00249{left:528.666667pt;}
.x28_c00249{left:529.866667pt;}
.xc_c00249{left:532.400000pt;}
.x158_c00249{left:533.333333pt;}
.x97_c00249{left:534.666667pt;}
.x5f_c00249{left:535.733333pt;}
.x29_c00249{left:537.200000pt;}
.x133_c00249{left:538.400000pt;}
.x1b_c00249{left:539.600000pt;}
.x69_c00249{left:541.333333pt;}
.xec_c00249{left:542.666667pt;}
.x168_c00249{left:543.600000pt;}
.x102_c00249{left:544.666667pt;}
.xfa_c00249{left:545.600000pt;}
.x80_c00249{left:547.066667pt;}
.x75_c00249{left:548.133333pt;}
.xe2_c00249{left:550.533333pt;}
.xd_c00249{left:552.266667pt;}
.xa8_c00249{left:554.000000pt;}
.x4b_c00249{left:555.600000pt;}
.xb8_c00249{left:557.200000pt;}
.x1c_c00249{left:558.133333pt;}
.x3e_c00249{left:559.333333pt;}
.x8e_c00249{left:561.200000pt;}
.x12a_c00249{left:563.866667pt;}
.xfb_c00249{left:564.800000pt;}
.x6f_c00249{left:566.133333pt;}
.x2a_c00249{left:567.200000pt;}
.xe3_c00249{left:568.400000pt;}
.xed_c00249{left:570.533333pt;}
.xf4_c00249{left:571.733333pt;}
.x103_c00249{left:572.800000pt;}
.x169_c00249{left:574.266667pt;}
.x1d_c00249{left:576.666667pt;}
.xb2_c00249{left:577.600000pt;}
.x115_c00249{left:578.533333pt;}
.xe_c00249{left:579.466667pt;}
.x60_c00249{left:581.466667pt;}
.x70_c00249{left:583.466667pt;}
.x10c_c00249{left:585.466667pt;}
.xa9_c00249{left:586.933333pt;}
.x76_c00249{left:588.400000pt;}
.xe4_c00249{left:590.133333pt;}
.x12e_c00249{left:592.133333pt;}
.xb3_c00249{left:594.266667pt;}
.x81_c00249{left:596.400000pt;}
.x12d_c00249{left:598.133333pt;}
.x138_c00249{left:599.733333pt;}
.x14f_c00249{left:600.800000pt;}
.xbf_c00249{left:602.400000pt;}
.xca_c00249{left:604.266667pt;}
.x13b_c00249{left:605.600000pt;}
.xb9_c00249{left:606.800000pt;}
.x1e_c00249{left:610.000000pt;}
.x125_c00249{left:611.333333pt;}
.xee_c00249{left:612.400000pt;}
.x10a_c00249{left:613.600000pt;}
.x139_c00249{left:614.800000pt;}
.xf_c00249{left:616.266667pt;}
.x16a_c00249{left:617.733333pt;}
.x3f_c00249{left:618.800000pt;}
.x98_c00249{left:620.133333pt;}
.xcb_c00249{left:621.600000pt;}
.x134_c00249{left:623.066667pt;}
.xd2_c00249{left:624.000000pt;}
.x121_c00249{left:626.266667pt;}
.x154_c00249{left:627.200000pt;}
.x61_c00249{left:629.733333pt;}
.xef_c00249{left:630.933333pt;}
.x135_c00249{left:633.333333pt;}
.x13e_c00249{left:635.333333pt;}
.x40_c00249{left:639.600000pt;}
.x71_c00249{left:641.333333pt;}
.x126_c00249{left:643.333333pt;}
.xc0_c00249{left:646.933333pt;}
.x10_c00249{left:648.266667pt;}
.x99_c00249{left:649.600000pt;}
.x15e_c00249{left:650.533333pt;}
.x62_c00249{left:651.466667pt;}
.x159_c00249{left:653.600000pt;}
.x148_c00249{left:654.666667pt;}
.x41_c00249{left:655.600000pt;}
.x1f_c00249{left:657.066667pt;}
.x16b_c00249{left:658.400000pt;}
.x77_c00249{left:659.733333pt;}
.x82_c00249{left:661.333333pt;}
.x12f_c00249{left:662.266667pt;}
.x10d_c00249{left:663.866667pt;}
.xfc_c00249{left:667.466667pt;}
.xe5_c00249{left:668.533333pt;}
.xcf_c00249{left:669.600000pt;}
.x130_c00249{left:670.533333pt;}
.x127_c00249{left:671.866667pt;}
.x72_c00249{left:675.200000pt;}
.x14a_c00249{left:677.066667pt;}
.x42_c00249{left:678.666667pt;}
.x11_c00249{left:680.266667pt;}
.xe6_c00249{left:681.333333pt;}
.x104_c00249{left:683.466667pt;}
.x9a_c00249{left:685.066667pt;}
.x2b_c00249{left:687.600000pt;}
.x78_c00249{left:688.533333pt;}
.x83_c00249{left:689.466667pt;}
.xd0_c00249{left:690.400000pt;}
.x11a_c00249{left:693.866667pt;}
.xba_c00249{left:695.066667pt;}
.xfd_c00249{left:697.200000pt;}
.x84_c00249{left:699.333333pt;}
.x43_c00249{left:701.333333pt;}
.x20_c00249{left:703.200000pt;}
.xdb_c00249{left:704.666667pt;}
.x79_c00249{left:705.866667pt;}
.x36_c00249{left:707.466667pt;}
.x11b_c00249{left:709.600000pt;}
.x15b_c00249{left:711.333333pt;}
.x166_c00249{left:713.600000pt;}
.xd3_c00249{left:714.666667pt;}
.xc1_c00249{left:716.400000pt;}
.x10e_c00249{left:717.866667pt;}
.x63_c00249{left:721.866667pt;}
.x21_c00249{left:723.733333pt;}
.xfe_c00249{left:725.333333pt;}
.xe7_c00249{left:726.800000pt;}
.x4c_c00249{left:727.733333pt;}
.x73_c00249{left:729.600000pt;}
.x12b_c00249{left:730.933333pt;}
.x12_c00249{left:732.133333pt;}
.x85_c00249{left:733.866667pt;}
.x44_c00249{left:735.866667pt;}
.x10f_c00249{left:738.666667pt;}
.x105_c00249{left:741.466667pt;}
.x64_c00249{left:742.666667pt;}
.x143_c00249{left:743.733333pt;}
.xb4_c00249{left:745.200000pt;}
.x7a_c00249{left:746.533333pt;}
.x2c_c00249{left:748.666667pt;}
.xe8_c00249{left:750.800000pt;}
.x86_c00249{left:752.400000pt;}
.xdc_c00249{left:753.333333pt;}
.x6a_c00249{left:754.666667pt;}
.x45_c00249{left:756.000000pt;}
.x7b_c00249{left:757.733333pt;}
.xc2_c00249{left:758.933333pt;}
.x110_c00249{left:761.333333pt;}
.x15f_c00249{left:763.600000pt;}
.x11c_c00249{left:765.200000pt;}
.x155_c00249{left:767.200000pt;}
.x131_c00249{left:769.733333pt;}
.x14b_c00249{left:772.133333pt;}
.x170_c00249{left:777.066667pt;}
.x16f_c00249{left:780.933333pt;}
}





/* 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_c00250 {
    display:none;
  }
  .loading-indicator_c00250.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00250 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_c00250 { 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_c00250" -> "#page-container .classname_c00250")
 */
.pf_c00250 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00250 { /* 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_c00250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00250 { /* 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_c00250 { /* 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_c00250 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00250 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00250 {overflow:visible;}
  }
}
.c_c00250 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00250 { /* 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_c00250:after { /* webkit #35443 */
  content: '';
}
.t_c00250:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00250 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 */
}
.__c00250 { /* 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_c00250 { /* info for Javascript */
  display:none;
}
.l_c00250 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00250 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00250 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00250: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_c00250 {
    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_c00250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00250.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_c00250 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00250;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.000000;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;}
.mef_c00250{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00250{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m125_c00250{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.meb_c00250{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00250{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md1_c00250{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.me2_c00250{transform:matrix(0.078750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00250{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m80_c00250{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00250{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m29_c00250{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m129_c00250{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m39_c00250{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00250{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00250{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md4_c00250{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m53_c00250{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m78_c00250{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00250{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m32_c00250{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00250{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mba_c00250{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m56_c00250{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m103_c00250{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m74_c00250{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m82_c00250{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00250{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00250{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mda_c00250{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00250{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mac_c00250{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00250{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me6_c00250{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00250{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00250{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m98_c00250{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00250{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me1_c00250{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m101_c00250{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m110_c00250{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00250{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00250{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md8_c00250{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m19_c00250{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00250{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m18_c00250{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m136_c00250{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00250{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m66_c00250{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mb_c00250{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m57_c00250{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m121_c00250{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.me5_c00250{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00250{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m65_c00250{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00250{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m28_c00250{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00250{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m86_c00250{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mce_c00250{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.maf_c00250{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me4_c00250{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00250{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m75_c00250{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mab_c00250{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m10_c00250{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m45_c00250{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00250{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00250{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00250{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mee_c00250{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00250{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m12_c00250{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.md_c00250{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00250{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00250{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m124_c00250{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00250{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00250{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m97_c00250{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00250{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.md5_c00250{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m44_c00250{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m5_c00250{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mea_c00250{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00250{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00250{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m94_c00250{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m88_c00250{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00250{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m68_c00250{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m23_c00250{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m87_c00250{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.md9_c00250{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m20_c00250{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00250{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00250{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.maa_c00250{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00250{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00250{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m14_c00250{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma_c00250{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m135_c00250{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m63_c00250{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00250{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00250{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m17_c00250{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m64_c00250{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m84_c00250{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m137_c00250{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00250{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m79_c00250{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7_c00250{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00250{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m89_c00250{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m106_c00250{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m134_c00250{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m67_c00250{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3_c00250{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m42_c00250{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m58_c00250{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00250{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m96_c00250{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m85_c00250{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m102_c00250{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m81_c00250{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m69_c00250{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.md7_c00250{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m52_c00250{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m123_c00250{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m38_c00250{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m24_c00250{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00250{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m15_c00250{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00250{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00250{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00250{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00250{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00250{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00250{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00250{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00250{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m35_c00250{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00250{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6_c00250{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00250{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00250{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00250{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00250{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00250{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00250{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m120_c00250{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00250{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00250{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00250{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00250{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m95_c00250{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00250{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00250{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mf_c00250{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00250{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m70_c00250{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc_c00250{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00250{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00250{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m25_c00250{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m16_c00250{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m61_c00250{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m9_c00250{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m59_c00250{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m73_c00250{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00250{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00250{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00250{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mae_c00250{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.me_c00250{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00250{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m83_c00250{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mff_c00250{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00250{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m117_c00250{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m130_c00250{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m22_c00250{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00250{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00250{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00250{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m50_c00250{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m37_c00250{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m104_c00250{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00250{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m109_c00250{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m11_c00250{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00250{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00250{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8_c00250{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m30_c00250{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m133_c00250{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00250{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mde_c00250{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00250{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00250{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00250{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m118_c00250{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m128_c00250{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m43_c00250{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md3_c00250{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m13_c00250{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m54_c00250{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m112_c00250{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00250{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00250{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00250{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m51_c00250{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00250{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m21_c00250{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m76_c00250{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00250{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m131_c00250{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00250{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00250{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00250{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00250{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m40_c00250{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00250{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00250{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00250{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00250{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m72_c00250{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00250{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m34_c00250{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00250{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00250{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00250{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m107_c00250{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2_c00250{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m48_c00250{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00250{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00250{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00250{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md6_c00250{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m105_c00250{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00250{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00250{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m127_c00250{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m49_c00250{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m122_c00250{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me0_c00250{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00250{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00250{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00250{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);}
.med_c00250{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00250{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m93_c00250{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m119_c00250{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me3_c00250{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00250{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m33_c00250{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m36_c00250{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m60_c00250{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m77_c00250{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00250{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00250{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00250{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00250{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00250{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00250{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m90_c00250{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00250{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m116_c00250{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m138_c00250{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00250{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m41_c00250{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00250{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00250{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00250{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m139_c00250{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00250{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mca_c00250{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m99_c00250{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m46_c00250{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00250{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m114_c00250{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m126_c00250{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m91_c00250{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m31_c00250{transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00250{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m115_c00250{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00250{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m62_c00250{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mad_c00250{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00250{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00250{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00250{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m26_c00250{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00250{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00250{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m47_c00250{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m132_c00250{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m71_c00250{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.md0_c00250{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m55_c00250{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m108_c00250{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00250{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00250{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m27_c00250{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m92_c00250{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.md2_c00250{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.me7_c00250{transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);}
.m13d_c00250{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503500,0.000000,0.000000,0.250000,0,0);}
.m100_c00250{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m111_c00250{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mec_c00250{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m113_c00250{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.me9_c00250{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.me8_c00250{transform:matrix(0.686500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686500,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls0_c00250{letter-spacing:0.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{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__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00250{word-spacing:-14.612069px;}
.ws3_c00250{word-spacing:-7.205882px;}
.ws6_c00250{word-spacing:-6.716418px;}
.ws5_c00250{word-spacing:-5.540541px;}
.ws1_c00250{word-spacing:-5.468750px;}
.ws4_c00250{word-spacing:-1.500000px;}
.wse_c00250{word-spacing:0.000000px;}
.wsb_c00250{word-spacing:0.498920px;}
.wsa_c00250{word-spacing:0.840413px;}
.ws7_c00250{word-spacing:1.666667px;}
.wsd_c00250{word-spacing:5.871060px;}
.ws0_c00250{word-spacing:6.687575px;}
.ws9_c00250{word-spacing:7.636364px;}
.ws2_c00250{word-spacing:14.285714px;}
.wsc_c00250{word-spacing:23.359788px;}
.fc0_c00250{color:transparent;}
.fs2_c00250{font-size:24.000000px;}
.fs9_c00250{font-size:30.000000px;}
.fs8_c00250{font-size:42.000000px;}
.fs7_c00250{font-size:48.000000px;}
.fs6_c00250{font-size:54.000000px;}
.fs5_c00250{font-size:60.000000px;}
.fs1_c00250{font-size:66.000000px;}
.fs4_c00250{font-size:72.000000px;}
.fs0_c00250{font-size:78.000000px;}
.fs3_c00250{font-size:84.000000px;}
.y0_c00250{bottom:0.000000px;}
.y73_c00250{bottom:163.800000px;}
.y3d_c00250{bottom:179.550000px;}
.y72_c00250{bottom:182.250000px;}
.y3c_c00250{bottom:191.850000px;}
.y71_c00250{bottom:200.250000px;}
.y3b_c00250{bottom:204.450000px;}
.y3a_c00250{bottom:216.750000px;}
.y70_c00250{bottom:217.500000px;}
.y39_c00250{bottom:228.600000px;}
.y6f_c00250{bottom:235.500000px;}
.y38_c00250{bottom:240.900000px;}
.y37_c00250{bottom:252.750000px;}
.y6e_c00250{bottom:253.500000px;}
.y6d_c00250{bottom:271.500000px;}
.y36_c00250{bottom:276.000000px;}
.y35_c00250{bottom:288.600000px;}
.y6c_c00250{bottom:292.800000px;}
.y34_c00250{bottom:303.300000px;}
.y6b_c00250{bottom:310.800000px;}
.y33_c00250{bottom:317.400000px;}
.y6a_c00250{bottom:329.100000px;}
.y32_c00250{bottom:331.800000px;}
.y31_c00250{bottom:346.200000px;}
.y69_c00250{bottom:346.800000px;}
.y30_c00250{bottom:360.300000px;}
.y68_c00250{bottom:364.800000px;}
.y2f_c00250{bottom:374.700000px;}
.y67_c00250{bottom:382.800000px;}
.y2e_c00250{bottom:389.100000px;}
.y66_c00250{bottom:400.500000px;}
.y2d_c00250{bottom:403.500000px;}
.y2c_c00250{bottom:417.600000px;}
.y65_c00250{bottom:418.200000px;}
.y2b_c00250{bottom:432.000000px;}
.y64_c00250{bottom:435.900000px;}
.y2a_c00250{bottom:446.400000px;}
.y63_c00250{bottom:453.900000px;}
.y29_c00250{bottom:460.800000px;}
.y62_c00250{bottom:471.600000px;}
.y28_c00250{bottom:475.200000px;}
.y27_c00250{bottom:489.600000px;}
.y61_c00250{bottom:492.750000px;}
.y26_c00250{bottom:504.300000px;}
.y60_c00250{bottom:510.750000px;}
.y25_c00250{bottom:518.400000px;}
.y5f_c00250{bottom:528.750000px;}
.y24_c00250{bottom:533.100000px;}
.y5e_c00250{bottom:546.750000px;}
.y23_c00250{bottom:547.200000px;}
.y22_c00250{bottom:561.300000px;}
.y5d_c00250{bottom:564.750000px;}
.y21_c00250{bottom:576.750000px;}
.y5c_c00250{bottom:582.450000px;}
.y20_c00250{bottom:589.950000px;}
.y5b_c00250{bottom:600.150000px;}
.y1f_c00250{bottom:604.350000px;}
.y1e_c00250{bottom:618.750000px;}
.y5a_c00250{bottom:630.900000px;}
.y1d_c00250{bottom:632.850000px;}
.y1c_c00250{bottom:647.550000px;}
.y59_c00250{bottom:649.200000px;}
.y1b_c00250{bottom:661.950000px;}
.y58_c00250{bottom:666.900000px;}
.y1a_c00250{bottom:676.050000px;}
.y57_c00250{bottom:684.900000px;}
.y19_c00250{bottom:691.200000px;}
.y56_c00250{bottom:702.150000px;}
.y18_c00250{bottom:705.300000px;}
.y17_c00250{bottom:719.400000px;}
.y55_c00250{bottom:720.450000px;}
.y16_c00250{bottom:735.900000px;}
.y54_c00250{bottom:738.150000px;}
.y15_c00250{bottom:747.750000px;}
.y53_c00250{bottom:755.850000px;}
.y14_c00250{bottom:762.150000px;}
.y52_c00250{bottom:773.850000px;}
.y13_c00250{bottom:776.550000px;}
.y12_c00250{bottom:790.500000px;}
.y51_c00250{bottom:791.550000px;}
.y11_c00250{bottom:804.900000px;}
.y50_c00250{bottom:809.550000px;}
.y10_c00250{bottom:819.000000px;}
.y4f_c00250{bottom:827.550000px;}
.yf_c00250{bottom:833.700000px;}
.y4e_c00250{bottom:845.250000px;}
.ye_c00250{bottom:849.300000px;}
.yd_c00250{bottom:862.200000px;}
.y4d_c00250{bottom:870.900000px;}
.y4c_c00250{bottom:889.950000px;}
.yc_c00250{bottom:908.550000px;}
.y4b_c00250{bottom:924.450000px;}
.yb_c00250{bottom:930.900000px;}
.y4a_c00250{bottom:946.050000px;}
.ya_c00250{bottom:952.500000px;}
.y49_c00250{bottom:967.650000px;}
.y48_c00250{bottom:991.350000px;}
.y9_c00250{bottom:992.850000px;}
.y47_c00250{bottom:1009.050000px;}
.y8_c00250{bottom:1022.100000px;}
.y46_c00250{bottom:1030.650000px;}
.y7_c00250{bottom:1039.800000px;}
.y45_c00250{bottom:1052.550000px;}
.y6_c00250{bottom:1054.500000px;}
.y5_c00250{bottom:1057.650000px;}
.y44_c00250{bottom:1072.050000px;}
.y4_c00250{bottom:1076.400000px;}
.y42_c00250{bottom:1080.750000px;}
.y43_c00250{bottom:1082.100000px;}
.y41_c00250{bottom:1082.550000px;}
.y40_c00250{bottom:1087.950000px;}
.y3_c00250{bottom:1093.350000px;}
.y3f_c00250{bottom:1108.500000px;}
.y2_c00250{bottom:1111.350000px;}
.y1_c00250{bottom:1138.650000px;}
.y3e_c00250{bottom:1139.700000px;}
.y74_c00250{bottom:1140.450000px;}
.h4_c00250{height:24.000000px;}
.hb_c00250{height:30.000000px;}
.ha_c00250{height:42.000000px;}
.h9_c00250{height:48.000000px;}
.h8_c00250{height:54.000000px;}
.h7_c00250{height:60.000000px;}
.h3_c00250{height:66.000000px;}
.h6_c00250{height:72.000000px;}
.h2_c00250{height:78.000000px;}
.h5_c00250{height:84.000000px;}
.h1_c00250{height:1265.250000px;}
.h0_c00250{height:1265.399964px;}
.w1_c00250{width:961.500000px;}
.w0_c00250{width:961.560058px;}
.x0_c00250{left:0.000000px;}
.x3_c00250{left:102.900000px;}
.x36_c00250{left:104.700000px;}
.x2f_c00250{left:106.500000px;}
.x5d_c00250{left:108.300000px;}
.x3f_c00250{left:116.400000px;}
.xb1_c00250{left:120.600000px;}
.x30_c00250{left:123.000000px;}
.x9_c00250{left:124.050000px;}
.x21_c00250{left:125.100000px;}
.x8f_c00250{left:126.450000px;}
.x4b_c00250{left:127.800000px;}
.x5e_c00250{left:129.900000px;}
.xa2_c00250{left:131.850000px;}
.x7c_c00250{left:134.850000px;}
.xb6_c00250{left:136.050000px;}
.x92_c00250{left:137.850000px;}
.x40_c00250{left:139.050000px;}
.xb2_c00250{left:140.400000px;}
.x62_c00250{left:142.200000px;}
.x29_c00250{left:143.400000px;}
.x65_c00250{left:145.350000px;}
.x37_c00250{left:146.850000px;}
.x3d_c00250{left:148.050000px;}
.x6d_c00250{left:150.450000px;}
.x63_c00250{left:151.500000px;}
.xa3_c00250{left:153.150000px;}
.x7d_c00250{left:154.950000px;}
.x22_c00250{left:156.000000px;}
.x17_c00250{left:159.450000px;}
.xa_c00250{left:161.100000px;}
.x41_c00250{left:162.750000px;}
.x81_c00250{left:164.700000px;}
.x57_c00250{left:166.650000px;}
.x3e_c00250{left:168.150000px;}
.x42_c00250{left:171.000000px;}
.x46_c00250{left:172.050000px;}
.x12_c00250{left:173.700000px;}
.xae_c00250{left:174.750000px;}
.x31_c00250{left:177.300000px;}
.x9b_c00250{left:179.250000px;}
.x93_c00250{left:181.350000px;}
.xb3_c00250{left:182.850000px;}
.xa4_c00250{left:184.800000px;}
.x64_c00250{left:186.000000px;}
.xa0_c00250{left:187.650000px;}
.x25_c00250{left:188.700000px;}
.x66_c00250{left:190.800000px;}
.x4_c00250{left:196.500000px;}
.x58_c00250{left:197.550000px;}
.x26_c00250{left:198.750000px;}
.x13_c00250{left:202.200000px;}
.x23_c00250{left:203.400000px;}
.x50_c00250{left:205.050000px;}
.xb_c00250{left:206.850000px;}
.x7e_c00250{left:208.200000px;}
.x27_c00250{left:209.550000px;}
.x85_c00250{left:211.200000px;}
.x51_c00250{left:213.000000px;}
.x38_c00250{left:214.800000px;}
.x72_c00250{left:217.800000px;}
.x89_c00250{left:218.850000px;}
.x76_c00250{left:221.850000px;}
.x2a_c00250{left:223.350000px;}
.x5_c00250{left:226.350000px;}
.x7f_c00250{left:228.000000px;}
.xc_c00250{left:230.250000px;}
.xaf_c00250{left:231.300000px;}
.xac_c00250{left:232.350000px;}
.x59_c00250{left:234.300000px;}
.x39_c00250{left:236.100000px;}
.x8a_c00250{left:238.350000px;}
.x14_c00250{left:240.000000px;}
.x80_c00250{left:241.050000px;}
.x8d_c00250{left:243.900000px;}
.xa9_c00250{left:245.400000px;}
.x4d_c00250{left:247.650000px;}
.x1d_c00250{left:249.750000px;}
.x82_c00250{left:251.850000px;}
.x97_c00250{left:254.550000px;}
.x5a_c00250{left:256.200000px;}
.x86_c00250{left:257.700000px;}
.x47_c00250{left:259.200000px;}
.x43_c00250{left:261.750000px;}
.x9f_c00250{left:263.250000px;}
.x8c_c00250{left:265.200000px;}
.x28_c00250{left:266.850000px;}
.x98_c00250{left:268.950000px;}
.x73_c00250{left:270.000000px;}
.x3a_c00250{left:272.100000px;}
.x94_c00250{left:273.150000px;}
.x24_c00250{left:275.100000px;}
.x4c_c00250{left:276.750000px;}
.xa5_c00250{left:279.150000px;}
.x6_c00250{left:281.100000px;}
.x67_c00250{left:282.300000px;}
.xb4_c00250{left:283.800000px;}
.x6e_c00250{left:285.000000px;}
.x1e_c00250{left:286.050000px;}
.xd_c00250{left:287.550000px;}
.x5b_c00250{left:288.600000px;}
.xaa_c00250{left:290.550000px;}
.xa1_c00250{left:292.050000px;}
.x2c_c00250{left:293.250000px;}
.x52_c00250{left:294.750000px;}
.x32_c00250{left:296.850000px;}
.x7_c00250{left:299.400000px;}
.x68_c00250{left:301.800000px;}
.x7a_c00250{left:303.900000px;}
.x2d_c00250{left:305.100000px;}
.x33_c00250{left:306.150000px;}
.x5f_c00250{left:307.800000px;}
.x18_c00250{left:310.200000px;}
.x1f_c00250{left:311.250000px;}
.x4e_c00250{left:313.050000px;}
.x99_c00250{left:314.250000px;}
.xa6_c00250{left:316.200000px;}
.x3b_c00250{left:318.600000px;}
.x15_c00250{left:319.950000px;}
.x77_c00250{left:322.950000px;}
.x9c_c00250{left:324.300000px;}
.x83_c00250{left:325.350000px;}
.xe_c00250{left:328.650000px;}
.x34_c00250{left:332.100000px;}
.x53_c00250{left:335.100000px;}
.x4f_c00250{left:336.750000px;}
.xab_c00250{left:338.400000px;}
.x6f_c00250{left:339.750000px;}
.x9e_c00250{left:341.550000px;}
.x78_c00250{left:342.750000px;}
.x60_c00250{left:344.100000px;}
.x55_c00250{left:345.450000px;}
.x1_c00250{left:346.650000px;}
.xf_c00250{left:348.750000px;}
.x2b_c00250{left:350.100000px;}
.xa7_c00250{left:351.900000px;}
.x2e_c00250{left:354.450000px;}
.x48_c00250{left:356.100000px;}
.x5c_c00250{left:359.250000px;}
.x84_c00250{left:360.600000px;}
.xb7_c00250{left:362.250000px;}
.x1c_c00250{left:363.300000px;}
.x88_c00250{left:364.500000px;}
.x44_c00250{left:367.200000px;}
.x3c_c00250{left:369.750000px;}
.x16_c00250{left:371.850000px;}
.x19_c00250{left:373.950000px;}
.x35_c00250{left:375.000000px;}
.x9a_c00250{left:376.500000px;}
.x56_c00250{left:377.550000px;}
.x8b_c00250{left:379.500000px;}
.x90_c00250{left:380.850000px;}
.x8_c00250{left:382.950000px;}
.xad_c00250{left:384.900000px;}
.x8e_c00250{left:387.150000px;}
.x95_c00250{left:390.000000px;}
.x1a_c00250{left:391.950000px;}
.x74_c00250{left:394.350000px;}
.xb0_c00250{left:395.850000px;}
.x87_c00250{left:397.950000px;}
.x49_c00250{left:399.000000px;}
.x69_c00250{left:400.950000px;}
.x61_c00250{left:405.300000px;}
.x96_c00250{left:406.500000px;}
.x4a_c00250{left:407.700000px;}
.x6a_c00250{left:408.900000px;}
.x10_c00250{left:410.250000px;}
.x70_c00250{left:411.450000px;}
.x20_c00250{left:413.400000px;}
.x1b_c00250{left:415.350000px;}
.x75_c00250{left:417.000000px;}
.xa8_c00250{left:418.200000px;}
.x71_c00250{left:419.400000px;}
.x7b_c00250{left:420.600000px;}
.x79_c00250{left:421.650000px;}
.x9d_c00250{left:423.300000px;}
.x54_c00250{left:424.350000px;}
.x91_c00250{left:426.150000px;}
.x11_c00250{left:427.500000px;}
.x45_c00250{left:430.500000px;}
.x6b_c00250{left:432.300000px;}
.xb5_c00250{left:434.100000px;}
.xb8_c00250{left:438.300000px;}
.x6c_c00250{left:441.000000px;}
.xbb_c00250{left:462.600000px;}
.x11e_c00250{left:464.400000px;}
.xdf_c00250{left:465.450000px;}
.xc5_c00250{left:479.850000px;}
.xd6_c00250{left:481.950000px;}
.x14e_c00250{left:483.600000px;}
.x154_c00250{left:484.650000px;}
.xcb_c00250{left:497.100000px;}
.xcf_c00250{left:499.650000px;}
.x10d_c00250{left:501.900000px;}
.x130_c00250{left:502.950000px;}
.x144_c00250{left:505.050000px;}
.xe0_c00250{left:507.150000px;}
.x148_c00250{left:508.650000px;}
.xbc_c00250{left:509.700000px;}
.xf2_c00250{left:513.900000px;}
.x109_c00250{left:515.100000px;}
.x138_c00250{left:516.750000px;}
.x152_c00250{left:519.300000px;}
.x101_c00250{left:520.650000px;}
.xf3_c00250{left:521.850000px;}
.xfd_c00250{left:522.900000px;}
.x10e_c00250{left:525.000000px;}
.x14a_c00250{left:527.550000px;}
.x11a_c00250{left:529.200000px;}
.xec_c00250{left:530.700000px;}
.x127_c00250{left:533.100000px;}
.x105_c00250{left:534.300000px;}
.xc6_c00250{left:535.650000px;}
.xc9_c00250{left:537.450000px;}
.x14f_c00250{left:538.650000px;}
.xed_c00250{left:539.700000px;}
.xd0_c00250{left:542.100000px;}
.xca_c00250{left:544.650000px;}
.x102_c00250{left:546.150000px;}
.x128_c00250{left:547.200000px;}
.x14b_c00250{left:548.400000px;}
.x13f_c00250{left:549.600000px;}
.x116_c00250{left:551.250000px;}
.xdc_c00250{left:553.350000px;}
.xcc_c00250{left:555.450000px;}
.xcd_c00250{left:556.500000px;}
.x14c_c00250{left:560.250000px;}
.xe7_c00250{left:563.100000px;}
.xdd_c00250{left:564.900000px;}
.xe1_c00250{left:566.250000px;}
.x140_c00250{left:567.600000px;}
.xbd_c00250{left:569.100000px;}
.x11b_c00250{left:572.100000px;}
.xf4_c00250{left:573.600000px;}
.xe6_c00250{left:575.850000px;}
.xfe_c00250{left:579.000000px;}
.xc7_c00250{left:580.350000px;}
.x139_c00250{left:585.900000px;}
.x131_c00250{left:588.300000px;}
.xe8_c00250{left:589.350000px;}
.xf9_c00250{left:590.850000px;}
.x11c_c00250{left:594.450000px;}
.xd1_c00250{left:596.100000px;}
.x153_c00250{left:599.550000px;}
.x123_c00250{left:601.050000px;}
.x10f_c00250{left:602.700000px;}
.x112_c00250{left:605.550000px;}
.xd2_c00250{left:609.000000px;}
.xfa_c00250{left:610.350000px;}
.xd7_c00250{left:611.550000px;}
.x145_c00250{left:614.850000px;}
.x12b_c00250{left:616.500000px;}
.x13c_c00250{left:620.550000px;}
.x150_c00250{left:622.200000px;}
.xff_c00250{left:624.000000px;}
.xe9_c00250{left:625.650000px;}
.xd3_c00250{left:626.700000px;}
.x132_c00250{left:627.900000px;}
.xde_c00250{left:630.450000px;}
.xee_c00250{left:631.950000px;}
.xbe_c00250{left:633.600000px;}
.x149_c00250{left:634.650000px;}
.x13d_c00250{left:635.700000px;}
.x11d_c00250{left:637.350000px;}
.x11f_c00250{left:639.300000px;}
.xe2_c00250{left:640.800000px;}
.x117_c00250{left:642.000000px;}
.xc3_c00250{left:643.950000px;}
.x10a_c00250{left:645.900000px;}
.x135_c00250{left:647.550000px;}
.x103_c00250{left:649.800000px;}
.xc2_c00250{left:650.850000px;}
.x14d_c00250{left:652.050000px;}
.x106_c00250{left:655.200000px;}
.x129_c00250{left:659.100000px;}
.x110_c00250{left:660.600000px;}
.x13a_c00250{left:663.750000px;}
.xf5_c00250{left:665.400000px;}
.x12c_c00250{left:667.200000px;}
.xe3_c00250{left:671.100000px;}
.xd8_c00250{left:674.550000px;}
.xc4_c00250{left:676.050000px;}
.xfb_c00250{left:679.050000px;}
.xea_c00250{left:680.400000px;}
.xbf_c00250{left:683.700000px;}
.x120_c00250{left:686.400000px;}
.xd4_c00250{left:687.900000px;}
.x124_c00250{left:689.700000px;}
.x13e_c00250{left:691.050000px;}
.x104_c00250{left:693.750000px;}
.x10b_c00250{left:696.300000px;}
.x141_c00250{left:699.000000px;}
.x113_c00250{left:700.650000px;}
.xc8_c00250{left:703.200000px;}
.x13b_c00250{left:704.400000px;}
.x12e_c00250{left:705.900000px;}
.x107_c00250{left:706.950000px;}
.xef_c00250{left:709.350000px;}
.xd9_c00250{left:710.850000px;}
.x12d_c00250{left:712.500000px;}
.xce_c00250{left:713.850000px;}
.x121_c00250{left:715.500000px;}
.x151_c00250{left:717.600000px;}
.xfc_c00250{left:718.650000px;}
.x133_c00250{left:721.500000px;}
.xda_c00250{left:723.450000px;}
.xc0_c00250{left:726.150000px;}
.xe4_c00250{left:729.450000px;}
.x125_c00250{left:731.100000px;}
.x111_c00250{left:733.350000px;}
.xf6_c00250{left:734.550000px;}
.xeb_c00250{left:735.900000px;}
.x118_c00250{left:740.550000px;}
.xc1_c00250{left:743.100000px;}
.xe5_c00250{left:746.400000px;}
.x100_c00250{left:750.000000px;}
.x142_c00250{left:751.500000px;}
.xf7_c00250{left:752.550000px;}
.xf0_c00250{left:754.050000px;}
.xdb_c00250{left:755.550000px;}
.x108_c00250{left:757.350000px;}
.x10c_c00250{left:759.000000px;}
.x136_c00250{left:760.200000px;}
.x146_c00250{left:762.750000px;}
.x119_c00250{left:763.950000px;}
.x143_c00250{left:766.050000px;}
.x114_c00250{left:767.250000px;}
.x12f_c00250{left:769.950000px;}
.x2_c00250{left:772.200000px;}
.x122_c00250{left:773.850000px;}
.x137_c00250{left:774.900000px;}
.x147_c00250{left:776.100000px;}
.x12a_c00250{left:777.150000px;}
.xd5_c00250{left:780.450000px;}
.xba_c00250{left:781.950000px;}
.xb9_c00250{left:783.750000px;}
.x134_c00250{left:786.750000px;}
.x115_c00250{left:788.550000px;}
.xf1_c00250{left:790.050000px;}
.x126_c00250{left:794.100000px;}
.xf8_c00250{left:796.050000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws8_c00250{word-spacing:-12.988506pt;}
.ws3_c00250{word-spacing:-6.405229pt;}
.ws6_c00250{word-spacing:-5.970149pt;}
.ws5_c00250{word-spacing:-4.924925pt;}
.ws1_c00250{word-spacing:-4.861111pt;}
.ws4_c00250{word-spacing:-1.333333pt;}
.wse_c00250{word-spacing:0.000000pt;}
.wsb_c00250{word-spacing:0.443485pt;}
.wsa_c00250{word-spacing:0.747034pt;}
.ws7_c00250{word-spacing:1.481481pt;}
.wsd_c00250{word-spacing:5.218720pt;}
.ws0_c00250{word-spacing:5.944511pt;}
.ws9_c00250{word-spacing:6.787879pt;}
.ws2_c00250{word-spacing:12.698413pt;}
.wsc_c00250{word-spacing:20.764256pt;}
.fs2_c00250{font-size:21.333333pt;}
.fs9_c00250{font-size:26.666667pt;}
.fs8_c00250{font-size:37.333333pt;}
.fs7_c00250{font-size:42.666667pt;}
.fs6_c00250{font-size:48.000000pt;}
.fs5_c00250{font-size:53.333333pt;}
.fs1_c00250{font-size:58.666667pt;}
.fs4_c00250{font-size:64.000000pt;}
.fs0_c00250{font-size:69.333333pt;}
.fs3_c00250{font-size:74.666667pt;}
.y0_c00250{bottom:0.000000pt;}
.y73_c00250{bottom:145.600000pt;}
.y3d_c00250{bottom:159.600000pt;}
.y72_c00250{bottom:162.000000pt;}
.y3c_c00250{bottom:170.533333pt;}
.y71_c00250{bottom:178.000000pt;}
.y3b_c00250{bottom:181.733333pt;}
.y3a_c00250{bottom:192.666667pt;}
.y70_c00250{bottom:193.333333pt;}
.y39_c00250{bottom:203.200000pt;}
.y6f_c00250{bottom:209.333333pt;}
.y38_c00250{bottom:214.133333pt;}
.y37_c00250{bottom:224.666667pt;}
.y6e_c00250{bottom:225.333333pt;}
.y6d_c00250{bottom:241.333333pt;}
.y36_c00250{bottom:245.333333pt;}
.y35_c00250{bottom:256.533333pt;}
.y6c_c00250{bottom:260.266667pt;}
.y34_c00250{bottom:269.600000pt;}
.y6b_c00250{bottom:276.266667pt;}
.y33_c00250{bottom:282.133333pt;}
.y6a_c00250{bottom:292.533333pt;}
.y32_c00250{bottom:294.933333pt;}
.y31_c00250{bottom:307.733333pt;}
.y69_c00250{bottom:308.266667pt;}
.y30_c00250{bottom:320.266667pt;}
.y68_c00250{bottom:324.266667pt;}
.y2f_c00250{bottom:333.066667pt;}
.y67_c00250{bottom:340.266667pt;}
.y2e_c00250{bottom:345.866667pt;}
.y66_c00250{bottom:356.000000pt;}
.y2d_c00250{bottom:358.666667pt;}
.y2c_c00250{bottom:371.200000pt;}
.y65_c00250{bottom:371.733333pt;}
.y2b_c00250{bottom:384.000000pt;}
.y64_c00250{bottom:387.466667pt;}
.y2a_c00250{bottom:396.800000pt;}
.y63_c00250{bottom:403.466667pt;}
.y29_c00250{bottom:409.600000pt;}
.y62_c00250{bottom:419.200000pt;}
.y28_c00250{bottom:422.400000pt;}
.y27_c00250{bottom:435.200000pt;}
.y61_c00250{bottom:438.000000pt;}
.y26_c00250{bottom:448.266667pt;}
.y60_c00250{bottom:454.000000pt;}
.y25_c00250{bottom:460.800000pt;}
.y5f_c00250{bottom:470.000000pt;}
.y24_c00250{bottom:473.866667pt;}
.y5e_c00250{bottom:486.000000pt;}
.y23_c00250{bottom:486.400000pt;}
.y22_c00250{bottom:498.933333pt;}
.y5d_c00250{bottom:502.000000pt;}
.y21_c00250{bottom:512.666667pt;}
.y5c_c00250{bottom:517.733333pt;}
.y20_c00250{bottom:524.400000pt;}
.y5b_c00250{bottom:533.466667pt;}
.y1f_c00250{bottom:537.200000pt;}
.y1e_c00250{bottom:550.000000pt;}
.y5a_c00250{bottom:560.800000pt;}
.y1d_c00250{bottom:562.533333pt;}
.y1c_c00250{bottom:575.600000pt;}
.y59_c00250{bottom:577.066667pt;}
.y1b_c00250{bottom:588.400000pt;}
.y58_c00250{bottom:592.800000pt;}
.y1a_c00250{bottom:600.933333pt;}
.y57_c00250{bottom:608.800000pt;}
.y19_c00250{bottom:614.400000pt;}
.y56_c00250{bottom:624.133333pt;}
.y18_c00250{bottom:626.933333pt;}
.y17_c00250{bottom:639.466667pt;}
.y55_c00250{bottom:640.400000pt;}
.y16_c00250{bottom:654.133333pt;}
.y54_c00250{bottom:656.133333pt;}
.y15_c00250{bottom:664.666667pt;}
.y53_c00250{bottom:671.866667pt;}
.y14_c00250{bottom:677.466667pt;}
.y52_c00250{bottom:687.866667pt;}
.y13_c00250{bottom:690.266667pt;}
.y12_c00250{bottom:702.666667pt;}
.y51_c00250{bottom:703.600000pt;}
.y11_c00250{bottom:715.466667pt;}
.y50_c00250{bottom:719.600000pt;}
.y10_c00250{bottom:728.000000pt;}
.y4f_c00250{bottom:735.600000pt;}
.yf_c00250{bottom:741.066667pt;}
.y4e_c00250{bottom:751.333333pt;}
.ye_c00250{bottom:754.933333pt;}
.yd_c00250{bottom:766.400000pt;}
.y4d_c00250{bottom:774.133333pt;}
.y4c_c00250{bottom:791.066667pt;}
.yc_c00250{bottom:807.600000pt;}
.y4b_c00250{bottom:821.733333pt;}
.yb_c00250{bottom:827.466667pt;}
.y4a_c00250{bottom:840.933333pt;}
.ya_c00250{bottom:846.666667pt;}
.y49_c00250{bottom:860.133333pt;}
.y48_c00250{bottom:881.200000pt;}
.y9_c00250{bottom:882.533333pt;}
.y47_c00250{bottom:896.933333pt;}
.y8_c00250{bottom:908.533333pt;}
.y46_c00250{bottom:916.133333pt;}
.y7_c00250{bottom:924.266667pt;}
.y45_c00250{bottom:935.600000pt;}
.y6_c00250{bottom:937.333333pt;}
.y5_c00250{bottom:940.133333pt;}
.y44_c00250{bottom:952.933333pt;}
.y4_c00250{bottom:956.800000pt;}
.y42_c00250{bottom:960.666667pt;}
.y43_c00250{bottom:961.866667pt;}
.y41_c00250{bottom:962.266667pt;}
.y40_c00250{bottom:967.066667pt;}
.y3_c00250{bottom:971.866667pt;}
.y3f_c00250{bottom:985.333333pt;}
.y2_c00250{bottom:987.866667pt;}
.y1_c00250{bottom:1012.133333pt;}
.y3e_c00250{bottom:1013.066667pt;}
.y74_c00250{bottom:1013.733333pt;}
.h4_c00250{height:21.333333pt;}
.hb_c00250{height:26.666667pt;}
.ha_c00250{height:37.333333pt;}
.h9_c00250{height:42.666667pt;}
.h8_c00250{height:48.000000pt;}
.h7_c00250{height:53.333333pt;}
.h3_c00250{height:58.666667pt;}
.h6_c00250{height:64.000000pt;}
.h2_c00250{height:69.333333pt;}
.h5_c00250{height:74.666667pt;}
.h1_c00250{height:1124.666667pt;}
.h0_c00250{height:1124.799968pt;}
.w1_c00250{width:854.666667pt;}
.w0_c00250{width:854.720052pt;}
.x0_c00250{left:0.000000pt;}
.x3_c00250{left:91.466667pt;}
.x36_c00250{left:93.066667pt;}
.x2f_c00250{left:94.666667pt;}
.x5d_c00250{left:96.266667pt;}
.x3f_c00250{left:103.466667pt;}
.xb1_c00250{left:107.200000pt;}
.x30_c00250{left:109.333333pt;}
.x9_c00250{left:110.266667pt;}
.x21_c00250{left:111.200000pt;}
.x8f_c00250{left:112.400000pt;}
.x4b_c00250{left:113.600000pt;}
.x5e_c00250{left:115.466667pt;}
.xa2_c00250{left:117.200000pt;}
.x7c_c00250{left:119.866667pt;}
.xb6_c00250{left:120.933333pt;}
.x92_c00250{left:122.533333pt;}
.x40_c00250{left:123.600000pt;}
.xb2_c00250{left:124.800000pt;}
.x62_c00250{left:126.400000pt;}
.x29_c00250{left:127.466667pt;}
.x65_c00250{left:129.200000pt;}
.x37_c00250{left:130.533333pt;}
.x3d_c00250{left:131.600000pt;}
.x6d_c00250{left:133.733333pt;}
.x63_c00250{left:134.666667pt;}
.xa3_c00250{left:136.133333pt;}
.x7d_c00250{left:137.733333pt;}
.x22_c00250{left:138.666667pt;}
.x17_c00250{left:141.733333pt;}
.xa_c00250{left:143.200000pt;}
.x41_c00250{left:144.666667pt;}
.x81_c00250{left:146.400000pt;}
.x57_c00250{left:148.133333pt;}
.x3e_c00250{left:149.466667pt;}
.x42_c00250{left:152.000000pt;}
.x46_c00250{left:152.933333pt;}
.x12_c00250{left:154.400000pt;}
.xae_c00250{left:155.333333pt;}
.x31_c00250{left:157.600000pt;}
.x9b_c00250{left:159.333333pt;}
.x93_c00250{left:161.200000pt;}
.xb3_c00250{left:162.533333pt;}
.xa4_c00250{left:164.266667pt;}
.x64_c00250{left:165.333333pt;}
.xa0_c00250{left:166.800000pt;}
.x25_c00250{left:167.733333pt;}
.x66_c00250{left:169.600000pt;}
.x4_c00250{left:174.666667pt;}
.x58_c00250{left:175.600000pt;}
.x26_c00250{left:176.666667pt;}
.x13_c00250{left:179.733333pt;}
.x23_c00250{left:180.800000pt;}
.x50_c00250{left:182.266667pt;}
.xb_c00250{left:183.866667pt;}
.x7e_c00250{left:185.066667pt;}
.x27_c00250{left:186.266667pt;}
.x85_c00250{left:187.733333pt;}
.x51_c00250{left:189.333333pt;}
.x38_c00250{left:190.933333pt;}
.x72_c00250{left:193.600000pt;}
.x89_c00250{left:194.533333pt;}
.x76_c00250{left:197.200000pt;}
.x2a_c00250{left:198.533333pt;}
.x5_c00250{left:201.200000pt;}
.x7f_c00250{left:202.666667pt;}
.xc_c00250{left:204.666667pt;}
.xaf_c00250{left:205.600000pt;}
.xac_c00250{left:206.533333pt;}
.x59_c00250{left:208.266667pt;}
.x39_c00250{left:209.866667pt;}
.x8a_c00250{left:211.866667pt;}
.x14_c00250{left:213.333333pt;}
.x80_c00250{left:214.266667pt;}
.x8d_c00250{left:216.800000pt;}
.xa9_c00250{left:218.133333pt;}
.x4d_c00250{left:220.133333pt;}
.x1d_c00250{left:222.000000pt;}
.x82_c00250{left:223.866667pt;}
.x97_c00250{left:226.266667pt;}
.x5a_c00250{left:227.733333pt;}
.x86_c00250{left:229.066667pt;}
.x47_c00250{left:230.400000pt;}
.x43_c00250{left:232.666667pt;}
.x9f_c00250{left:234.000000pt;}
.x8c_c00250{left:235.733333pt;}
.x28_c00250{left:237.200000pt;}
.x98_c00250{left:239.066667pt;}
.x73_c00250{left:240.000000pt;}
.x3a_c00250{left:241.866667pt;}
.x94_c00250{left:242.800000pt;}
.x24_c00250{left:244.533333pt;}
.x4c_c00250{left:246.000000pt;}
.xa5_c00250{left:248.133333pt;}
.x6_c00250{left:249.866667pt;}
.x67_c00250{left:250.933333pt;}
.xb4_c00250{left:252.266667pt;}
.x6e_c00250{left:253.333333pt;}
.x1e_c00250{left:254.266667pt;}
.xd_c00250{left:255.600000pt;}
.x5b_c00250{left:256.533333pt;}
.xaa_c00250{left:258.266667pt;}
.xa1_c00250{left:259.600000pt;}
.x2c_c00250{left:260.666667pt;}
.x52_c00250{left:262.000000pt;}
.x32_c00250{left:263.866667pt;}
.x7_c00250{left:266.133333pt;}
.x68_c00250{left:268.266667pt;}
.x7a_c00250{left:270.133333pt;}
.x2d_c00250{left:271.200000pt;}
.x33_c00250{left:272.133333pt;}
.x5f_c00250{left:273.600000pt;}
.x18_c00250{left:275.733333pt;}
.x1f_c00250{left:276.666667pt;}
.x4e_c00250{left:278.266667pt;}
.x99_c00250{left:279.333333pt;}
.xa6_c00250{left:281.066667pt;}
.x3b_c00250{left:283.200000pt;}
.x15_c00250{left:284.400000pt;}
.x77_c00250{left:287.066667pt;}
.x9c_c00250{left:288.266667pt;}
.x83_c00250{left:289.200000pt;}
.xe_c00250{left:292.133333pt;}
.x34_c00250{left:295.200000pt;}
.x53_c00250{left:297.866667pt;}
.x4f_c00250{left:299.333333pt;}
.xab_c00250{left:300.800000pt;}
.x6f_c00250{left:302.000000pt;}
.x9e_c00250{left:303.600000pt;}
.x78_c00250{left:304.666667pt;}
.x60_c00250{left:305.866667pt;}
.x55_c00250{left:307.066667pt;}
.x1_c00250{left:308.133333pt;}
.xf_c00250{left:310.000000pt;}
.x2b_c00250{left:311.200000pt;}
.xa7_c00250{left:312.800000pt;}
.x2e_c00250{left:315.066667pt;}
.x48_c00250{left:316.533333pt;}
.x5c_c00250{left:319.333333pt;}
.x84_c00250{left:320.533333pt;}
.xb7_c00250{left:322.000000pt;}
.x1c_c00250{left:322.933333pt;}
.x88_c00250{left:324.000000pt;}
.x44_c00250{left:326.400000pt;}
.x3c_c00250{left:328.666667pt;}
.x16_c00250{left:330.533333pt;}
.x19_c00250{left:332.400000pt;}
.x35_c00250{left:333.333333pt;}
.x9a_c00250{left:334.666667pt;}
.x56_c00250{left:335.600000pt;}
.x8b_c00250{left:337.333333pt;}
.x90_c00250{left:338.533333pt;}
.x8_c00250{left:340.400000pt;}
.xad_c00250{left:342.133333pt;}
.x8e_c00250{left:344.133333pt;}
.x95_c00250{left:346.666667pt;}
.x1a_c00250{left:348.400000pt;}
.x74_c00250{left:350.533333pt;}
.xb0_c00250{left:351.866667pt;}
.x87_c00250{left:353.733333pt;}
.x49_c00250{left:354.666667pt;}
.x69_c00250{left:356.400000pt;}
.x61_c00250{left:360.266667pt;}
.x96_c00250{left:361.333333pt;}
.x4a_c00250{left:362.400000pt;}
.x6a_c00250{left:363.466667pt;}
.x10_c00250{left:364.666667pt;}
.x70_c00250{left:365.733333pt;}
.x20_c00250{left:367.466667pt;}
.x1b_c00250{left:369.200000pt;}
.x75_c00250{left:370.666667pt;}
.xa8_c00250{left:371.733333pt;}
.x71_c00250{left:372.800000pt;}
.x7b_c00250{left:373.866667pt;}
.x79_c00250{left:374.800000pt;}
.x9d_c00250{left:376.266667pt;}
.x54_c00250{left:377.200000pt;}
.x91_c00250{left:378.800000pt;}
.x11_c00250{left:380.000000pt;}
.x45_c00250{left:382.666667pt;}
.x6b_c00250{left:384.266667pt;}
.xb5_c00250{left:385.866667pt;}
.xb8_c00250{left:389.600000pt;}
.x6c_c00250{left:392.000000pt;}
.xbb_c00250{left:411.200000pt;}
.x11e_c00250{left:412.800000pt;}
.xdf_c00250{left:413.733333pt;}
.xc5_c00250{left:426.533333pt;}
.xd6_c00250{left:428.400000pt;}
.x14e_c00250{left:429.866667pt;}
.x154_c00250{left:430.800000pt;}
.xcb_c00250{left:441.866667pt;}
.xcf_c00250{left:444.133333pt;}
.x10d_c00250{left:446.133333pt;}
.x130_c00250{left:447.066667pt;}
.x144_c00250{left:448.933333pt;}
.xe0_c00250{left:450.800000pt;}
.x148_c00250{left:452.133333pt;}
.xbc_c00250{left:453.066667pt;}
.xf2_c00250{left:456.800000pt;}
.x109_c00250{left:457.866667pt;}
.x138_c00250{left:459.333333pt;}
.x152_c00250{left:461.600000pt;}
.x101_c00250{left:462.800000pt;}
.xf3_c00250{left:463.866667pt;}
.xfd_c00250{left:464.800000pt;}
.x10e_c00250{left:466.666667pt;}
.x14a_c00250{left:468.933333pt;}
.x11a_c00250{left:470.400000pt;}
.xec_c00250{left:471.733333pt;}
.x127_c00250{left:473.866667pt;}
.x105_c00250{left:474.933333pt;}
.xc6_c00250{left:476.133333pt;}
.xc9_c00250{left:477.733333pt;}
.x14f_c00250{left:478.800000pt;}
.xed_c00250{left:479.733333pt;}
.xd0_c00250{left:481.866667pt;}
.xca_c00250{left:484.133333pt;}
.x102_c00250{left:485.466667pt;}
.x128_c00250{left:486.400000pt;}
.x14b_c00250{left:487.466667pt;}
.x13f_c00250{left:488.533333pt;}
.x116_c00250{left:490.000000pt;}
.xdc_c00250{left:491.866667pt;}
.xcc_c00250{left:493.733333pt;}
.xcd_c00250{left:494.666667pt;}
.x14c_c00250{left:498.000000pt;}
.xe7_c00250{left:500.533333pt;}
.xdd_c00250{left:502.133333pt;}
.xe1_c00250{left:503.333333pt;}
.x140_c00250{left:504.533333pt;}
.xbd_c00250{left:505.866667pt;}
.x11b_c00250{left:508.533333pt;}
.xf4_c00250{left:509.866667pt;}
.xe6_c00250{left:511.866667pt;}
.xfe_c00250{left:514.666667pt;}
.xc7_c00250{left:515.866667pt;}
.x139_c00250{left:520.800000pt;}
.x131_c00250{left:522.933333pt;}
.xe8_c00250{left:523.866667pt;}
.xf9_c00250{left:525.200000pt;}
.x11c_c00250{left:528.400000pt;}
.xd1_c00250{left:529.866667pt;}
.x153_c00250{left:532.933333pt;}
.x123_c00250{left:534.266667pt;}
.x10f_c00250{left:535.733333pt;}
.x112_c00250{left:538.266667pt;}
.xd2_c00250{left:541.333333pt;}
.xfa_c00250{left:542.533333pt;}
.xd7_c00250{left:543.600000pt;}
.x145_c00250{left:546.533333pt;}
.x12b_c00250{left:548.000000pt;}
.x13c_c00250{left:551.600000pt;}
.x150_c00250{left:553.066667pt;}
.xff_c00250{left:554.666667pt;}
.xe9_c00250{left:556.133333pt;}
.xd3_c00250{left:557.066667pt;}
.x132_c00250{left:558.133333pt;}
.xde_c00250{left:560.400000pt;}
.xee_c00250{left:561.733333pt;}
.xbe_c00250{left:563.200000pt;}
.x149_c00250{left:564.133333pt;}
.x13d_c00250{left:565.066667pt;}
.x11d_c00250{left:566.533333pt;}
.x11f_c00250{left:568.266667pt;}
.xe2_c00250{left:569.600000pt;}
.x117_c00250{left:570.666667pt;}
.xc3_c00250{left:572.400000pt;}
.x10a_c00250{left:574.133333pt;}
.x135_c00250{left:575.600000pt;}
.x103_c00250{left:577.600000pt;}
.xc2_c00250{left:578.533333pt;}
.x14d_c00250{left:579.600000pt;}
.x106_c00250{left:582.400000pt;}
.x129_c00250{left:585.866667pt;}
.x110_c00250{left:587.200000pt;}
.x13a_c00250{left:590.000000pt;}
.xf5_c00250{left:591.466667pt;}
.x12c_c00250{left:593.066667pt;}
.xe3_c00250{left:596.533333pt;}
.xd8_c00250{left:599.600000pt;}
.xc4_c00250{left:600.933333pt;}
.xfb_c00250{left:603.600000pt;}
.xea_c00250{left:604.800000pt;}
.xbf_c00250{left:607.733333pt;}
.x120_c00250{left:610.133333pt;}
.xd4_c00250{left:611.466667pt;}
.x124_c00250{left:613.066667pt;}
.x13e_c00250{left:614.266667pt;}
.x104_c00250{left:616.666667pt;}
.x10b_c00250{left:618.933333pt;}
.x141_c00250{left:621.333333pt;}
.x113_c00250{left:622.800000pt;}
.xc8_c00250{left:625.066667pt;}
.x13b_c00250{left:626.133333pt;}
.x12e_c00250{left:627.466667pt;}
.x107_c00250{left:628.400000pt;}
.xef_c00250{left:630.533333pt;}
.xd9_c00250{left:631.866667pt;}
.x12d_c00250{left:633.333333pt;}
.xce_c00250{left:634.533333pt;}
.x121_c00250{left:636.000000pt;}
.x151_c00250{left:637.866667pt;}
.xfc_c00250{left:638.800000pt;}
.x133_c00250{left:641.333333pt;}
.xda_c00250{left:643.066667pt;}
.xc0_c00250{left:645.466667pt;}
.xe4_c00250{left:648.400000pt;}
.x125_c00250{left:649.866667pt;}
.x111_c00250{left:651.866667pt;}
.xf6_c00250{left:652.933333pt;}
.xeb_c00250{left:654.133333pt;}
.x118_c00250{left:658.266667pt;}
.xc1_c00250{left:660.533333pt;}
.xe5_c00250{left:663.466667pt;}
.x100_c00250{left:666.666667pt;}
.x142_c00250{left:668.000000pt;}
.xf7_c00250{left:668.933333pt;}
.xf0_c00250{left:670.266667pt;}
.xdb_c00250{left:671.600000pt;}
.x108_c00250{left:673.200000pt;}
.x10c_c00250{left:674.666667pt;}
.x136_c00250{left:675.733333pt;}
.x146_c00250{left:678.000000pt;}
.x119_c00250{left:679.066667pt;}
.x143_c00250{left:680.933333pt;}
.x114_c00250{left:682.000000pt;}
.x12f_c00250{left:684.400000pt;}
.x2_c00250{left:686.400000pt;}
.x122_c00250{left:687.866667pt;}
.x137_c00250{left:688.800000pt;}
.x147_c00250{left:689.866667pt;}
.x12a_c00250{left:690.800000pt;}
.xd5_c00250{left:693.733333pt;}
.xba_c00250{left:695.066667pt;}
.xb9_c00250{left:696.666667pt;}
.x134_c00250{left:699.333333pt;}
.x115_c00250{left:700.933333pt;}
.xf1_c00250{left:702.266667pt;}
.x126_c00250{left:705.866667pt;}
.xf8_c00250{left:707.600000pt;}
}





/* 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_c00251 {
    display:none;
  }
  .loading-indicator_c00251.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00251 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_c00251 { 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_c00251" -> "#page-container .classname_c00251")
 */
.pf_c00251 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00251 { /* 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_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00251 { /* 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_c00251 { /* 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_c00251 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00251 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00251 {overflow:visible;}
  }
}
.c_c00251 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00251 { /* 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_c00251:after { /* webkit #35443 */
  content: '';
}
.t_c00251:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00251 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 */
}
.__c00251 { /* 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_c00251 { /* info for Javascript */
  display:none;
}
.l_c00251 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00251 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00251 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00251: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_c00251 {
    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_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00251.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_c00251 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00251;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.000000;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;}
.m8f_c00251{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.mc_c00251{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m76_c00251{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m27_c00251{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00251{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.mef_c00251{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.md6_c00251{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mff_c00251{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m78_c00251{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00251{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00251{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00251{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m24_c00251{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m61_c00251{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00251{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00251{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00251{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00251{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m35_c00251{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.maf_c00251{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mf_c00251{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mb_c00251{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m69_c00251{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mee_c00251{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00251{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00251{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00251{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00251{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m62_c00251{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m45_c00251{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00251{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00251{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m56_c00251{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00251{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m28_c00251{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m101_c00251{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00251{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md5_c00251{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m5_c00251{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m105_c00251{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00251{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mce_c00251{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00251{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m64_c00251{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md7_c00251{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m20_c00251{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00251{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00251{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mec_c00251{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md8_c00251{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m89_c00251{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me_c00251{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.me0_c00251{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m16_c00251{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00251{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00251{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00251{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m65_c00251{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m84_c00251{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00251{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m60_c00251{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m57_c00251{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00251{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m55_c00251{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9_c00251{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00251{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m42_c00251{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mad_c00251{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m83_c00251{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00251{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m15_c00251{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m13_c00251{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00251{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m4_c00251{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00251{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m33_c00251{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m98_c00251{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m72_c00251{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m86_c00251{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m2_c00251{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00251{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m70_c00251{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00251{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m3_c00251{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00251{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00251{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.med_c00251{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m67_c00251{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m71_c00251{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00251{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m54_c00251{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00251{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m66_c00251{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m59_c00251{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m63_c00251{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mab_c00251{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m17_c00251{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m11_c00251{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m37_c00251{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00251{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00251{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00251{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m18_c00251{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00251{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m36_c00251{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00251{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m88_c00251{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00251{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m80_c00251{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00251{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m77_c00251{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m14_c00251{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m53_c00251{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m73_c00251{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00251{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m103_c00251{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00251{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00251{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00251{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me6_c00251{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m81_c00251{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00251{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00251{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md4_c00251{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m91_c00251{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mae_c00251{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00251{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00251{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m75_c00251{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md0_c00251{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00251{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00251{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00251{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mda_c00251{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m43_c00251{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m40_c00251{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00251{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00251{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m30_c00251{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00251{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m93_c00251{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m39_c00251{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00251{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma_c00251{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00251{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00251{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m92_c00251{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00251{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mca_c00251{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00251{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00251{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00251{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00251{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md9_c00251{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m12_c00251{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m25_c00251{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m19_c00251{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m79_c00251{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.me2_c00251{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00251{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7_c00251{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m21_c00251{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00251{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00251{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m52_c00251{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me1_c00251{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6_c00251{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mde_c00251{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00251{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00251{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m10_c00251{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m44_c00251{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00251{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00251{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00251{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00251{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00251{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00251{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00251{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00251{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00251{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00251{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m31_c00251{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m29_c00251{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m50_c00251{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me4_c00251{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m104_c00251{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00251{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mac_c00251{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md2_c00251{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m46_c00251{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mea_c00251{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00251{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mba_c00251{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m68_c00251{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.me5_c00251{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m38_c00251{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m85_c00251{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00251{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00251{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m100_c00251{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.maa_c00251{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00251{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00251{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00251{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00251{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00251{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00251{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m22_c00251{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m23_c00251{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m95_c00251{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00251{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00251{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m32_c00251{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00251{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md3_c00251{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m26_c00251{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m96_c00251{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m48_c00251{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00251{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00251{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m34_c00251{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m87_c00251{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m51_c00251{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00251{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00251{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00251{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00251{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m74_c00251{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m94_c00251{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00251{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00251{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m99_c00251{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00251{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00251{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m82_c00251{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.me3_c00251{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00251{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md1_c00251{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00251{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00251{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m102_c00251{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.me8_c00251{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m90_c00251{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m97_c00251{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me7_c00251{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00251{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.meb_c00251{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00251{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m58_c00251{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00251{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00251{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m41_c00251{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00251{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.me9_c00251{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m49_c00251{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00251{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c00251{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00251{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00251{transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00251{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{transform:matrix(0.469250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469250,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls0_c00251{letter-spacing:0.000000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{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__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00251{word-spacing:-13.523522px;}
.ws5_c00251{word-spacing:-4.500000px;}
.ws4_c00251{word-spacing:-1.631787px;}
.ws8_c00251{word-spacing:0.000000px;}
.ws7_c00251{word-spacing:0.138889px;}
.ws0_c00251{word-spacing:1.343643px;}
.ws1_c00251{word-spacing:2.231806px;}
.ws3_c00251{word-spacing:6.831615px;}
.ws2_c00251{word-spacing:14.889571px;}
.fc0_c00251{color:transparent;}
.fs5_c00251{font-size:24.000000px;}
.fs4_c00251{font-size:48.000000px;}
.fs3_c00251{font-size:54.000000px;}
.fs2_c00251{font-size:60.000000px;}
.fs1_c00251{font-size:66.000000px;}
.fs6_c00251{font-size:72.000000px;}
.fs0_c00251{font-size:78.000000px;}
.y0_c00251{bottom:0.000000px;}
.y69_c00251{bottom:184.200000px;}
.y34_c00251{bottom:186.900000px;}
.y33_c00251{bottom:201.600000px;}
.y68_c00251{bottom:202.950000px;}
.y32_c00251{bottom:215.250000px;}
.y67_c00251{bottom:220.950000px;}
.y31_c00251{bottom:229.650000px;}
.y66_c00251{bottom:238.650000px;}
.y30_c00251{bottom:243.750000px;}
.y65_c00251{bottom:256.650000px;}
.y2f_c00251{bottom:258.150000px;}
.y64_c00251{bottom:274.650000px;}
.y63_c00251{bottom:299.850000px;}
.y2e_c00251{bottom:308.850000px;}
.y62_c00251{bottom:318.600000px;}
.y2d_c00251{bottom:326.850000px;}
.y61_c00251{bottom:336.600000px;}
.y2c_c00251{bottom:344.100000px;}
.y60_c00251{bottom:354.300000px;}
.y2b_c00251{bottom:362.100000px;}
.y5f_c00251{bottom:372.000000px;}
.y2a_c00251{bottom:380.100000px;}
.y5e_c00251{bottom:390.000000px;}
.y29_c00251{bottom:397.800000px;}
.y5d_c00251{bottom:408.000000px;}
.y28_c00251{bottom:416.100000px;}
.y5c_c00251{bottom:425.700000px;}
.y27_c00251{bottom:433.800000px;}
.y5b_c00251{bottom:443.700000px;}
.y26_c00251{bottom:452.100000px;}
.y5a_c00251{bottom:461.700000px;}
.y25_c00251{bottom:469.800000px;}
.y59_c00251{bottom:479.700000px;}
.y24_c00251{bottom:488.550000px;}
.y58_c00251{bottom:497.700000px;}
.y23_c00251{bottom:508.500000px;}
.y57_c00251{bottom:515.400000px;}
.y22_c00251{bottom:526.800000px;}
.y56_c00251{bottom:534.150000px;}
.y21_c00251{bottom:544.500000px;}
.y55_c00251{bottom:551.400000px;}
.y20_c00251{bottom:562.200000px;}
.y54_c00251{bottom:570.150000px;}
.y1f_c00251{bottom:580.200000px;}
.y53_c00251{bottom:587.400000px;}
.y1e_c00251{bottom:597.900000px;}
.y52_c00251{bottom:605.400000px;}
.y1d_c00251{bottom:619.350000px;}
.y51_c00251{bottom:623.100000px;}
.y1c_c00251{bottom:637.650000px;}
.y50_c00251{bottom:641.400000px;}
.y1b_c00251{bottom:655.650000px;}
.y4f_c00251{bottom:659.400000px;}
.y1a_c00251{bottom:673.950000px;}
.y4e_c00251{bottom:677.400000px;}
.y19_c00251{bottom:692.100000px;}
.y4d_c00251{bottom:695.100000px;}
.y18_c00251{bottom:709.800000px;}
.y4c_c00251{bottom:713.100000px;}
.y17_c00251{bottom:727.500000px;}
.y4b_c00251{bottom:731.100000px;}
.y4a_c00251{bottom:738.900000px;}
.y16_c00251{bottom:745.200000px;}
.y49_c00251{bottom:757.200000px;}
.y15_c00251{bottom:765.000000px;}
.y48_c00251{bottom:775.500000px;}
.y14_c00251{bottom:780.900000px;}
.y47_c00251{bottom:793.500000px;}
.y13_c00251{bottom:798.900000px;}
.y46_c00251{bottom:811.200000px;}
.y12_c00251{bottom:816.900000px;}
.y45_c00251{bottom:829.200000px;}
.y11_c00251{bottom:834.900000px;}
.y44_c00251{bottom:846.450000px;}
.y10_c00251{bottom:852.900000px;}
.y43_c00251{bottom:865.200000px;}
.yf_c00251{bottom:873.300000px;}
.y42_c00251{bottom:883.200000px;}
.ye_c00251{bottom:893.100000px;}
.y41_c00251{bottom:900.900000px;}
.yd_c00251{bottom:911.100000px;}
.y40_c00251{bottom:918.900000px;}
.yc_c00251{bottom:929.100000px;}
.y3f_c00251{bottom:936.600000px;}
.yb_c00251{bottom:946.800000px;}
.y3e_c00251{bottom:954.600000px;}
.ya_c00251{bottom:964.800000px;}
.y3d_c00251{bottom:972.600000px;}
.y9_c00251{bottom:982.800000px;}
.y3c_c00251{bottom:990.600000px;}
.y8_c00251{bottom:1000.500000px;}
.y3b_c00251{bottom:1008.600000px;}
.y7_c00251{bottom:1018.500000px;}
.y3a_c00251{bottom:1026.600000px;}
.y6_c00251{bottom:1036.050000px;}
.y39_c00251{bottom:1044.300000px;}
.y5_c00251{bottom:1054.050000px;}
.y38_c00251{bottom:1062.000000px;}
.y4_c00251{bottom:1072.050000px;}
.y37_c00251{bottom:1080.000000px;}
.y3_c00251{bottom:1090.800000px;}
.y36_c00251{bottom:1097.250000px;}
.y2_c00251{bottom:1111.650000px;}
.y35_c00251{bottom:1115.250000px;}
.y1_c00251{bottom:1138.650000px;}
.h7_c00251{height:24.000000px;}
.h6_c00251{height:48.000000px;}
.h5_c00251{height:54.000000px;}
.h4_c00251{height:60.000000px;}
.h3_c00251{height:66.000000px;}
.h8_c00251{height:72.000000px;}
.h2_c00251{height:78.000000px;}
.h0_c00251{height:1270.440033px;}
.h1_c00251{height:1270.500000px;}
.w1_c00251{width:961.500000px;}
.w0_c00251{width:961.560058px;}
.x0_c00251{left:0.000000px;}
.x1_c00251{left:167.400000px;}
.xaa_c00251{left:173.850000px;}
.xad_c00251{left:174.900000px;}
.x25_c00251{left:180.300000px;}
.x3_c00251{left:186.450000px;}
.x13_c00251{left:187.650000px;}
.x41_c00251{left:188.850000px;}
.x58_c00251{left:189.900000px;}
.x8a_c00251{left:192.000000px;}
.x99_c00251{left:193.350000px;}
.xd_c00251{left:205.950000px;}
.x52_c00251{left:207.300000px;}
.x83_c00251{left:209.100000px;}
.x90_c00251{left:211.650000px;}
.xa9_c00251{left:213.450000px;}
.x76_c00251{left:215.550000px;}
.x38_c00251{left:217.650000px;}
.x26_c00251{left:220.500000px;}
.x47_c00251{left:223.200000px;}
.x91_c00251{left:225.000000px;}
.x8f_c00251{left:227.400000px;}
.x4a_c00251{left:229.200000px;}
.x9c_c00251{left:230.250000px;}
.x53_c00251{left:231.450000px;}
.x9_c00251{left:232.950000px;}
.x5e_c00251{left:234.150000px;}
.x14_c00251{left:235.200000px;}
.xab_c00251{left:236.550000px;}
.x48_c00251{left:237.900000px;}
.x9f_c00251{left:238.950000px;}
.x1d_c00251{left:240.000000px;}
.x59_c00251{left:242.400000px;}
.x42_c00251{left:243.900000px;}
.x50_c00251{left:244.950000px;}
.x96_c00251{left:247.050000px;}
.x27_c00251{left:248.250000px;}
.xa2_c00251{left:249.750000px;}
.x67_c00251{left:250.800000px;}
.x7a_c00251{left:252.000000px;}
.x84_c00251{left:253.050000px;}
.x86_c00251{left:254.850000px;}
.xe_c00251{left:257.850000px;}
.x15_c00251{left:260.400000px;}
.x7b_c00251{left:262.500000px;}
.x7f_c00251{left:263.700000px;}
.x1e_c00251{left:265.500000px;}
.x73_c00251{left:267.750000px;}
.x2d_c00251{left:269.550000px;}
.x28_c00251{left:270.600000px;}
.x4b_c00251{left:271.650000px;}
.x77_c00251{left:274.650000px;}
.x39_c00251{left:276.300000px;}
.x3d_c00251{left:277.650000px;}
.x7c_c00251{left:278.700000px;}
.xa_c00251{left:280.050000px;}
.x1f_c00251{left:282.450000px;}
.x62_c00251{left:284.100000px;}
.x4_c00251{left:285.750000px;}
.x51_c00251{left:287.400000px;}
.x2e_c00251{left:289.650000px;}
.x74_c00251{left:292.200000px;}
.x29_c00251{left:293.250000px;}
.x8c_c00251{left:295.500000px;}
.x3a_c00251{left:296.850000px;}
.x9a_c00251{left:298.050000px;}
.x5f_c00251{left:302.250000px;}
.xf_c00251{left:306.450000px;}
.x68_c00251{left:308.700000px;}
.x5_c00251{left:309.900000px;}
.x34_c00251{left:310.950000px;}
.x54_c00251{left:312.000000px;}
.x9b_c00251{left:314.250000px;}
.x56_c00251{left:319.050000px;}
.xb_c00251{left:320.700000px;}
.x43_c00251{left:324.450000px;}
.xae_c00251{left:325.800000px;}
.x60_c00251{left:327.150000px;}
.x10_c00251{left:328.800000px;}
.x2f_c00251{left:332.100000px;}
.x5a_c00251{left:333.300000px;}
.x8d_c00251{left:334.350000px;}
.xa3_c00251{left:335.400000px;}
.x6e_c00251{left:337.350000px;}
.x16_c00251{left:338.550000px;}
.x6b_c00251{left:341.100000px;}
.x75_c00251{left:342.600000px;}
.xa5_c00251{left:343.950000px;}
.xac_c00251{left:345.300000px;}
.x69_c00251{left:347.550000px;}
.x20_c00251{left:348.750000px;}
.x4c_c00251{left:349.800000px;}
.x17_c00251{left:350.850000px;}
.x44_c00251{left:352.500000px;}
.xa7_c00251{left:353.550000px;}
.x92_c00251{left:356.400000px;}
.x3b_c00251{left:357.750000px;}
.x6f_c00251{left:360.450000px;}
.x35_c00251{left:363.450000px;}
.x5b_c00251{left:364.950000px;}
.x4d_c00251{left:366.300000px;}
.x21_c00251{left:369.300000px;}
.x87_c00251{left:370.350000px;}
.x6a_c00251{left:371.700000px;}
.x78_c00251{left:373.650000px;}
.xaf_c00251{left:375.150000px;}
.x49_c00251{left:376.500000px;}
.x55_c00251{left:378.300000px;}
.x18_c00251{left:381.150000px;}
.xa8_c00251{left:383.100000px;}
.x36_c00251{left:387.900000px;}
.x6_c00251{left:389.400000px;}
.x80_c00251{left:391.500000px;}
.x57_c00251{left:392.550000px;}
.x9d_c00251{left:393.750000px;}
.x22_c00251{left:394.800000px;}
.x97_c00251{left:397.350000px;}
.x2_c00251{left:398.550000px;}
.x63_c00251{left:400.800000px;}
.x93_c00251{left:402.900000px;}
.x81_c00251{left:405.150000px;}
.x7_c00251{left:406.650000px;}
.x3c_c00251{left:409.650000px;}
.x5c_c00251{left:411.000000px;}
.x2a_c00251{left:412.050000px;}
.x6c_c00251{left:414.300000px;}
.x4e_c00251{left:416.700000px;}
.x64_c00251{left:417.750000px;}
.x70_c00251{left:418.800000px;}
.x8e_c00251{left:421.050000px;}
.x88_c00251{left:423.600000px;}
.x5d_c00251{left:424.650000px;}
.x30_c00251{left:425.700000px;}
.x45_c00251{left:427.650000px;}
.x3e_c00251{left:429.300000px;}
.x11_c00251{left:433.200000px;}
.x31_c00251{left:435.450000px;}
.x6d_c00251{left:436.650000px;}
.xa0_c00251{left:438.300000px;}
.x79_c00251{left:440.250000px;}
.x8_c00251{left:442.350000px;}
.x23_c00251{left:443.400000px;}
.x71_c00251{left:445.500000px;}
.x7d_c00251{left:447.750000px;}
.x89_c00251{left:448.800000px;}
.x32_c00251{left:452.700000px;}
.x19_c00251{left:454.200000px;}
.x3f_c00251{left:455.250000px;}
.x8b_c00251{left:458.550000px;}
.x37_c00251{left:460.650000px;}
.xa6_c00251{left:462.300000px;}
.x1a_c00251{left:463.500000px;}
.x95_c00251{left:464.700000px;}
.x98_c00251{left:466.500000px;}
.x2b_c00251{left:467.550000px;}
.xa4_c00251{left:471.450000px;}
.x12_c00251{left:472.800000px;}
.xc_c00251{left:475.200000px;}
.x82_c00251{left:476.400000px;}
.x40_c00251{left:477.900000px;}
.x24_c00251{left:480.450000px;}
.x1b_c00251{left:482.250000px;}
.x46_c00251{left:484.950000px;}
.x2c_c00251{left:486.300000px;}
.x33_c00251{left:487.650000px;}
.x94_c00251{left:489.300000px;}
.x61_c00251{left:490.500000px;}
.x4f_c00251{left:492.300000px;}
.x1c_c00251{left:495.900000px;}
.x65_c00251{left:499.050000px;}
.x9e_c00251{left:501.000000px;}
.xa1_c00251{left:507.750000px;}
.x66_c00251{left:514.950000px;}
.x72_c00251{left:516.450000px;}
.x85_c00251{left:517.950000px;}
.x7e_c00251{left:522.900000px;}
.xb0_c00251{left:528.900000px;}
.xb1_c00251{left:538.950000px;}
.xd5_c00251{left:540.300000px;}
.xdd_c00251{left:542.550000px;}
.x102_c00251{left:543.750000px;}
.x109_c00251{left:544.800000px;}
.x12f_c00251{left:546.450000px;}
.x13c_c00251{left:547.950000px;}
.x140_c00251{left:549.150000px;}
.x14f_c00251{left:550.350000px;}
.x10f_c00251{left:552.300000px;}
.xf4_c00251{left:559.950000px;}
.xc2_c00251{left:561.900000px;}
.x103_c00251{left:564.300000px;}
.xde_c00251{left:565.950000px;}
.x144_c00251{left:570.150000px;}
.x15a_c00251{left:572.850000px;}
.x10a_c00251{left:576.150000px;}
.x149_c00251{left:577.500000px;}
.xb2_c00251{left:578.850000px;}
.xee_c00251{left:581.850000px;}
.xb8_c00251{left:583.200000px;}
.xc9_c00251{left:584.400000px;}
.x147_c00251{left:585.600000px;}
.x132_c00251{left:588.300000px;}
.x11f_c00251{left:589.650000px;}
.x116_c00251{left:591.600000px;}
.xc3_c00251{left:594.000000px;}
.xdf_c00251{left:595.500000px;}
.xfc_c00251{left:596.850000px;}
.xe7_c00251{left:597.900000px;}
.x14a_c00251{left:599.100000px;}
.x130_c00251{left:600.750000px;}
.xef_c00251{left:601.950000px;}
.x151_c00251{left:603.300000px;}
.xca_c00251{left:604.500000px;}
.x11b_c00251{left:605.550000px;}
.xb9_c00251{left:607.350000px;}
.x13d_c00251{left:610.650000px;}
.x101_c00251{left:611.850000px;}
.x117_c00251{left:613.200000px;}
.x126_c00251{left:615.450000px;}
.xe8_c00251{left:617.700000px;}
.xf5_c00251{left:619.050000px;}
.xd8_c00251{left:620.400000px;}
.x137_c00251{left:623.100000px;}
.x156_c00251{left:624.150000px;}
.xba_c00251{left:625.350000px;}
.x145_c00251{left:627.000000px;}
.xc4_c00251{left:628.500000px;}
.xe0_c00251{left:631.200000px;}
.xcf_c00251{left:632.250000px;}
.x10b_c00251{left:634.500000px;}
.xea_c00251{left:636.000000px;}
.x133_c00251{left:637.350000px;}
.xf8_c00251{left:639.000000px;}
.x11c_c00251{left:641.550000px;}
.xb3_c00251{left:643.950000px;}
.x148_c00251{left:645.000000px;}
.xc5_c00251{left:646.500000px;}
.x10c_c00251{left:648.600000px;}
.x152_c00251{left:650.100000px;}
.xcb_c00251{left:652.050000px;}
.x129_c00251{left:653.250000px;}
.x139_c00251{left:658.050000px;}
.xbb_c00251{left:659.550000px;}
.xe9_c00251{left:660.600000px;}
.x122_c00251{left:662.100000px;}
.x118_c00251{left:663.900000px;}
.x104_c00251{left:665.850000px;}
.x12d_c00251{left:667.350000px;}
.xbc_c00251{left:668.850000px;}
.xcc_c00251{left:671.100000px;}
.xd9_c00251{left:672.900000px;}
.x157_c00251{left:674.250000px;}
.xe1_c00251{left:676.200000px;}
.x110_c00251{left:677.550000px;}
.x12b_c00251{left:680.550000px;}
.xb4_c00251{left:682.800000px;}
.x155_c00251{left:683.850000px;}
.xe2_c00251{left:684.900000px;}
.xbd_c00251{left:687.900000px;}
.x10d_c00251{left:689.250000px;}
.xf0_c00251{left:692.250000px;}
.x13f_c00251{left:693.450000px;}
.x14c_c00251{left:694.950000px;}
.x123_c00251{left:696.300000px;}
.x13e_c00251{left:697.800000px;}
.x127_c00251{left:701.100000px;}
.x138_c00251{left:702.300000px;}
.xc6_c00251{left:703.800000px;}
.xd0_c00251{left:706.800000px;}
.xfd_c00251{left:708.900000px;}
.x12e_c00251{left:710.550000px;}
.xf1_c00251{left:712.800000px;}
.xf9_c00251{left:715.200000px;}
.x131_c00251{left:717.300000px;}
.xb5_c00251{left:718.500000px;}
.xfe_c00251{left:720.150000px;}
.x158_c00251{left:721.350000px;}
.x128_c00251{left:722.400000px;}
.xbe_c00251{left:724.200000px;}
.xeb_c00251{left:726.450000px;}
.x111_c00251{left:728.400000px;}
.xfa_c00251{left:729.600000px;}
.x150_c00251{left:731.550000px;}
.x105_c00251{left:733.650000px;}
.xda_c00251{left:735.450000px;}
.xe3_c00251{left:736.500000px;}
.xc7_c00251{left:737.700000px;}
.xff_c00251{left:740.700000px;}
.xd1_c00251{left:742.500000px;}
.x11d_c00251{left:743.850000px;}
.x120_c00251{left:746.850000px;}
.x124_c00251{left:748.500000px;}
.x112_c00251{left:750.750000px;}
.x10e_c00251{left:752.250000px;}
.x141_c00251{left:753.300000px;}
.xd6_c00251{left:754.650000px;}
.x12a_c00251{left:755.850000px;}
.xcd_c00251{left:756.900000px;}
.xbf_c00251{left:758.100000px;}
.x119_c00251{left:760.350000px;}
.xf2_c00251{left:763.950000px;}
.x134_c00251{left:766.200000px;}
.x113_c00251{left:767.250000px;}
.xfb_c00251{left:768.900000px;}
.x125_c00251{left:773.250000px;}
.x135_c00251{left:774.900000px;}
.xf6_c00251{left:776.250000px;}
.xd2_c00251{left:778.200000px;}
.x100_c00251{left:779.250000px;}
.x121_c00251{left:780.750000px;}
.x106_c00251{left:783.000000px;}
.x14e_c00251{left:785.700000px;}
.x13a_c00251{left:789.450000px;}
.xc0_c00251{left:791.250000px;}
.xe4_c00251{left:794.850000px;}
.xce_c00251{left:796.800000px;}
.xec_c00251{left:798.450000px;}
.xb6_c00251{left:801.000000px;}
.xe5_c00251{left:804.600000px;}
.x12c_c00251{left:807.000000px;}
.x136_c00251{left:808.350000px;}
.xc1_c00251{left:810.000000px;}
.x14d_c00251{left:811.950000px;}
.x107_c00251{left:813.300000px;}
.xdb_c00251{left:814.650000px;}
.xf3_c00251{left:815.850000px;}
.x146_c00251{left:820.350000px;}
.xf7_c00251{left:822.300000px;}
.x114_c00251{left:823.800000px;}
.x154_c00251{left:825.450000px;}
.xe6_c00251{left:826.500000px;}
.xd3_c00251{left:828.300000px;}
.xc8_c00251{left:829.800000px;}
.xdc_c00251{left:830.850000px;}
.x11a_c00251{left:833.100000px;}
.xed_c00251{left:834.150000px;}
.x159_c00251{left:835.200000px;}
.xd7_c00251{left:837.150000px;}
.x143_c00251{left:838.650000px;}
.x142_c00251{left:842.550000px;}
.x115_c00251{left:844.350000px;}
.xb7_c00251{left:846.000000px;}
.x11e_c00251{left:847.500000px;}
.xd4_c00251{left:849.150000px;}
.x13b_c00251{left:850.650000px;}
.x108_c00251{left:851.850000px;}
.x153_c00251{left:853.800000px;}
.x14b_c00251{left:857.250000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.ws6_c00251{word-spacing:-12.020909pt;}
.ws5_c00251{word-spacing:-4.000000pt;}
.ws4_c00251{word-spacing:-1.450477pt;}
.ws8_c00251{word-spacing:0.000000pt;}
.ws7_c00251{word-spacing:0.123457pt;}
.ws0_c00251{word-spacing:1.194349pt;}
.ws1_c00251{word-spacing:1.983827pt;}
.ws3_c00251{word-spacing:6.072547pt;}
.ws2_c00251{word-spacing:13.235174pt;}
.fs5_c00251{font-size:21.333333pt;}
.fs4_c00251{font-size:42.666667pt;}
.fs3_c00251{font-size:48.000000pt;}
.fs2_c00251{font-size:53.333333pt;}
.fs1_c00251{font-size:58.666667pt;}
.fs6_c00251{font-size:64.000000pt;}
.fs0_c00251{font-size:69.333333pt;}
.y0_c00251{bottom:0.000000pt;}
.y69_c00251{bottom:163.733333pt;}
.y34_c00251{bottom:166.133333pt;}
.y33_c00251{bottom:179.200000pt;}
.y68_c00251{bottom:180.400000pt;}
.y32_c00251{bottom:191.333333pt;}
.y67_c00251{bottom:196.400000pt;}
.y31_c00251{bottom:204.133333pt;}
.y66_c00251{bottom:212.133333pt;}
.y30_c00251{bottom:216.666667pt;}
.y65_c00251{bottom:228.133333pt;}
.y2f_c00251{bottom:229.466667pt;}
.y64_c00251{bottom:244.133333pt;}
.y63_c00251{bottom:266.533333pt;}
.y2e_c00251{bottom:274.533333pt;}
.y62_c00251{bottom:283.200000pt;}
.y2d_c00251{bottom:290.533333pt;}
.y61_c00251{bottom:299.200000pt;}
.y2c_c00251{bottom:305.866667pt;}
.y60_c00251{bottom:314.933333pt;}
.y2b_c00251{bottom:321.866667pt;}
.y5f_c00251{bottom:330.666667pt;}
.y2a_c00251{bottom:337.866667pt;}
.y5e_c00251{bottom:346.666667pt;}
.y29_c00251{bottom:353.600000pt;}
.y5d_c00251{bottom:362.666667pt;}
.y28_c00251{bottom:369.866667pt;}
.y5c_c00251{bottom:378.400000pt;}
.y27_c00251{bottom:385.600000pt;}
.y5b_c00251{bottom:394.400000pt;}
.y26_c00251{bottom:401.866667pt;}
.y5a_c00251{bottom:410.400000pt;}
.y25_c00251{bottom:417.600000pt;}
.y59_c00251{bottom:426.400000pt;}
.y24_c00251{bottom:434.266667pt;}
.y58_c00251{bottom:442.400000pt;}
.y23_c00251{bottom:452.000000pt;}
.y57_c00251{bottom:458.133333pt;}
.y22_c00251{bottom:468.266667pt;}
.y56_c00251{bottom:474.800000pt;}
.y21_c00251{bottom:484.000000pt;}
.y55_c00251{bottom:490.133333pt;}
.y20_c00251{bottom:499.733333pt;}
.y54_c00251{bottom:506.800000pt;}
.y1f_c00251{bottom:515.733333pt;}
.y53_c00251{bottom:522.133333pt;}
.y1e_c00251{bottom:531.466667pt;}
.y52_c00251{bottom:538.133333pt;}
.y1d_c00251{bottom:550.533333pt;}
.y51_c00251{bottom:553.866667pt;}
.y1c_c00251{bottom:566.800000pt;}
.y50_c00251{bottom:570.133333pt;}
.y1b_c00251{bottom:582.800000pt;}
.y4f_c00251{bottom:586.133333pt;}
.y1a_c00251{bottom:599.066667pt;}
.y4e_c00251{bottom:602.133333pt;}
.y19_c00251{bottom:615.200000pt;}
.y4d_c00251{bottom:617.866667pt;}
.y18_c00251{bottom:630.933333pt;}
.y4c_c00251{bottom:633.866667pt;}
.y17_c00251{bottom:646.666667pt;}
.y4b_c00251{bottom:649.866667pt;}
.y4a_c00251{bottom:656.800000pt;}
.y16_c00251{bottom:662.400000pt;}
.y49_c00251{bottom:673.066667pt;}
.y15_c00251{bottom:680.000000pt;}
.y48_c00251{bottom:689.333333pt;}
.y14_c00251{bottom:694.133333pt;}
.y47_c00251{bottom:705.333333pt;}
.y13_c00251{bottom:710.133333pt;}
.y46_c00251{bottom:721.066667pt;}
.y12_c00251{bottom:726.133333pt;}
.y45_c00251{bottom:737.066667pt;}
.y11_c00251{bottom:742.133333pt;}
.y44_c00251{bottom:752.400000pt;}
.y10_c00251{bottom:758.133333pt;}
.y43_c00251{bottom:769.066667pt;}
.yf_c00251{bottom:776.266667pt;}
.y42_c00251{bottom:785.066667pt;}
.ye_c00251{bottom:793.866667pt;}
.y41_c00251{bottom:800.800000pt;}
.yd_c00251{bottom:809.866667pt;}
.y40_c00251{bottom:816.800000pt;}
.yc_c00251{bottom:825.866667pt;}
.y3f_c00251{bottom:832.533333pt;}
.yb_c00251{bottom:841.600000pt;}
.y3e_c00251{bottom:848.533333pt;}
.ya_c00251{bottom:857.600000pt;}
.y3d_c00251{bottom:864.533333pt;}
.y9_c00251{bottom:873.600000pt;}
.y3c_c00251{bottom:880.533333pt;}
.y8_c00251{bottom:889.333333pt;}
.y3b_c00251{bottom:896.533333pt;}
.y7_c00251{bottom:905.333333pt;}
.y3a_c00251{bottom:912.533333pt;}
.y6_c00251{bottom:920.933333pt;}
.y39_c00251{bottom:928.266667pt;}
.y5_c00251{bottom:936.933333pt;}
.y38_c00251{bottom:944.000000pt;}
.y4_c00251{bottom:952.933333pt;}
.y37_c00251{bottom:960.000000pt;}
.y3_c00251{bottom:969.600000pt;}
.y36_c00251{bottom:975.333333pt;}
.y2_c00251{bottom:988.133333pt;}
.y35_c00251{bottom:991.333333pt;}
.y1_c00251{bottom:1012.133333pt;}
.h7_c00251{height:21.333333pt;}
.h6_c00251{height:42.666667pt;}
.h5_c00251{height:48.000000pt;}
.h4_c00251{height:53.333333pt;}
.h3_c00251{height:58.666667pt;}
.h8_c00251{height:64.000000pt;}
.h2_c00251{height:69.333333pt;}
.h0_c00251{height:1129.280029pt;}
.h1_c00251{height:1129.333333pt;}
.w1_c00251{width:854.666667pt;}
.w0_c00251{width:854.720052pt;}
.x0_c00251{left:0.000000pt;}
.x1_c00251{left:148.800000pt;}
.xaa_c00251{left:154.533333pt;}
.xad_c00251{left:155.466667pt;}
.x25_c00251{left:160.266667pt;}
.x3_c00251{left:165.733333pt;}
.x13_c00251{left:166.800000pt;}
.x41_c00251{left:167.866667pt;}
.x58_c00251{left:168.800000pt;}
.x8a_c00251{left:170.666667pt;}
.x99_c00251{left:171.866667pt;}
.xd_c00251{left:183.066667pt;}
.x52_c00251{left:184.266667pt;}
.x83_c00251{left:185.866667pt;}
.x90_c00251{left:188.133333pt;}
.xa9_c00251{left:189.733333pt;}
.x76_c00251{left:191.600000pt;}
.x38_c00251{left:193.466667pt;}
.x26_c00251{left:196.000000pt;}
.x47_c00251{left:198.400000pt;}
.x91_c00251{left:200.000000pt;}
.x8f_c00251{left:202.133333pt;}
.x4a_c00251{left:203.733333pt;}
.x9c_c00251{left:204.666667pt;}
.x53_c00251{left:205.733333pt;}
.x9_c00251{left:207.066667pt;}
.x5e_c00251{left:208.133333pt;}
.x14_c00251{left:209.066667pt;}
.xab_c00251{left:210.266667pt;}
.x48_c00251{left:211.466667pt;}
.x9f_c00251{left:212.400000pt;}
.x1d_c00251{left:213.333333pt;}
.x59_c00251{left:215.466667pt;}
.x42_c00251{left:216.800000pt;}
.x50_c00251{left:217.733333pt;}
.x96_c00251{left:219.600000pt;}
.x27_c00251{left:220.666667pt;}
.xa2_c00251{left:222.000000pt;}
.x67_c00251{left:222.933333pt;}
.x7a_c00251{left:224.000000pt;}
.x84_c00251{left:224.933333pt;}
.x86_c00251{left:226.533333pt;}
.xe_c00251{left:229.200000pt;}
.x15_c00251{left:231.466667pt;}
.x7b_c00251{left:233.333333pt;}
.x7f_c00251{left:234.400000pt;}
.x1e_c00251{left:236.000000pt;}
.x73_c00251{left:238.000000pt;}
.x2d_c00251{left:239.600000pt;}
.x28_c00251{left:240.533333pt;}
.x4b_c00251{left:241.466667pt;}
.x77_c00251{left:244.133333pt;}
.x39_c00251{left:245.600000pt;}
.x3d_c00251{left:246.800000pt;}
.x7c_c00251{left:247.733333pt;}
.xa_c00251{left:248.933333pt;}
.x1f_c00251{left:251.066667pt;}
.x62_c00251{left:252.533333pt;}
.x4_c00251{left:254.000000pt;}
.x51_c00251{left:255.466667pt;}
.x2e_c00251{left:257.466667pt;}
.x74_c00251{left:259.733333pt;}
.x29_c00251{left:260.666667pt;}
.x8c_c00251{left:262.666667pt;}
.x3a_c00251{left:263.866667pt;}
.x9a_c00251{left:264.933333pt;}
.x5f_c00251{left:268.666667pt;}
.xf_c00251{left:272.400000pt;}
.x68_c00251{left:274.400000pt;}
.x5_c00251{left:275.466667pt;}
.x34_c00251{left:276.400000pt;}
.x54_c00251{left:277.333333pt;}
.x9b_c00251{left:279.333333pt;}
.x56_c00251{left:283.600000pt;}
.xb_c00251{left:285.066667pt;}
.x43_c00251{left:288.400000pt;}
.xae_c00251{left:289.600000pt;}
.x60_c00251{left:290.800000pt;}
.x10_c00251{left:292.266667pt;}
.x2f_c00251{left:295.200000pt;}
.x5a_c00251{left:296.266667pt;}
.x8d_c00251{left:297.200000pt;}
.xa3_c00251{left:298.133333pt;}
.x6e_c00251{left:299.866667pt;}
.x16_c00251{left:300.933333pt;}
.x6b_c00251{left:303.200000pt;}
.x75_c00251{left:304.533333pt;}
.xa5_c00251{left:305.733333pt;}
.xac_c00251{left:306.933333pt;}
.x69_c00251{left:308.933333pt;}
.x20_c00251{left:310.000000pt;}
.x4c_c00251{left:310.933333pt;}
.x17_c00251{left:311.866667pt;}
.x44_c00251{left:313.333333pt;}
.xa7_c00251{left:314.266667pt;}
.x92_c00251{left:316.800000pt;}
.x3b_c00251{left:318.000000pt;}
.x6f_c00251{left:320.400000pt;}
.x35_c00251{left:323.066667pt;}
.x5b_c00251{left:324.400000pt;}
.x4d_c00251{left:325.600000pt;}
.x21_c00251{left:328.266667pt;}
.x87_c00251{left:329.200000pt;}
.x6a_c00251{left:330.400000pt;}
.x78_c00251{left:332.133333pt;}
.xaf_c00251{left:333.466667pt;}
.x49_c00251{left:334.666667pt;}
.x55_c00251{left:336.266667pt;}
.x18_c00251{left:338.800000pt;}
.xa8_c00251{left:340.533333pt;}
.x36_c00251{left:344.800000pt;}
.x6_c00251{left:346.133333pt;}
.x80_c00251{left:348.000000pt;}
.x57_c00251{left:348.933333pt;}
.x9d_c00251{left:350.000000pt;}
.x22_c00251{left:350.933333pt;}
.x97_c00251{left:353.200000pt;}
.x2_c00251{left:354.266667pt;}
.x63_c00251{left:356.266667pt;}
.x93_c00251{left:358.133333pt;}
.x81_c00251{left:360.133333pt;}
.x7_c00251{left:361.466667pt;}
.x3c_c00251{left:364.133333pt;}
.x5c_c00251{left:365.333333pt;}
.x2a_c00251{left:366.266667pt;}
.x6c_c00251{left:368.266667pt;}
.x4e_c00251{left:370.400000pt;}
.x64_c00251{left:371.333333pt;}
.x70_c00251{left:372.266667pt;}
.x8e_c00251{left:374.266667pt;}
.x88_c00251{left:376.533333pt;}
.x5d_c00251{left:377.466667pt;}
.x30_c00251{left:378.400000pt;}
.x45_c00251{left:380.133333pt;}
.x3e_c00251{left:381.600000pt;}
.x11_c00251{left:385.066667pt;}
.x31_c00251{left:387.066667pt;}
.x6d_c00251{left:388.133333pt;}
.xa0_c00251{left:389.600000pt;}
.x79_c00251{left:391.333333pt;}
.x8_c00251{left:393.200000pt;}
.x23_c00251{left:394.133333pt;}
.x71_c00251{left:396.000000pt;}
.x7d_c00251{left:398.000000pt;}
.x89_c00251{left:398.933333pt;}
.x32_c00251{left:402.400000pt;}
.x19_c00251{left:403.733333pt;}
.x3f_c00251{left:404.666667pt;}
.x8b_c00251{left:407.600000pt;}
.x37_c00251{left:409.466667pt;}
.xa6_c00251{left:410.933333pt;}
.x1a_c00251{left:412.000000pt;}
.x95_c00251{left:413.066667pt;}
.x98_c00251{left:414.666667pt;}
.x2b_c00251{left:415.600000pt;}
.xa4_c00251{left:419.066667pt;}
.x12_c00251{left:420.266667pt;}
.xc_c00251{left:422.400000pt;}
.x82_c00251{left:423.466667pt;}
.x40_c00251{left:424.800000pt;}
.x24_c00251{left:427.066667pt;}
.x1b_c00251{left:428.666667pt;}
.x46_c00251{left:431.066667pt;}
.x2c_c00251{left:432.266667pt;}
.x33_c00251{left:433.466667pt;}
.x94_c00251{left:434.933333pt;}
.x61_c00251{left:436.000000pt;}
.x4f_c00251{left:437.600000pt;}
.x1c_c00251{left:440.800000pt;}
.x65_c00251{left:443.600000pt;}
.x9e_c00251{left:445.333333pt;}
.xa1_c00251{left:451.333333pt;}
.x66_c00251{left:457.733333pt;}
.x72_c00251{left:459.066667pt;}
.x85_c00251{left:460.400000pt;}
.x7e_c00251{left:464.800000pt;}
.xb0_c00251{left:470.133333pt;}
.xb1_c00251{left:479.066667pt;}
.xd5_c00251{left:480.266667pt;}
.xdd_c00251{left:482.266667pt;}
.x102_c00251{left:483.333333pt;}
.x109_c00251{left:484.266667pt;}
.x12f_c00251{left:485.733333pt;}
.x13c_c00251{left:487.066667pt;}
.x140_c00251{left:488.133333pt;}
.x14f_c00251{left:489.200000pt;}
.x10f_c00251{left:490.933333pt;}
.xf4_c00251{left:497.733333pt;}
.xc2_c00251{left:499.466667pt;}
.x103_c00251{left:501.600000pt;}
.xde_c00251{left:503.066667pt;}
.x144_c00251{left:506.800000pt;}
.x15a_c00251{left:509.200000pt;}
.x10a_c00251{left:512.133333pt;}
.x149_c00251{left:513.333333pt;}
.xb2_c00251{left:514.533333pt;}
.xee_c00251{left:517.200000pt;}
.xb8_c00251{left:518.400000pt;}
.xc9_c00251{left:519.466667pt;}
.x147_c00251{left:520.533333pt;}
.x132_c00251{left:522.933333pt;}
.x11f_c00251{left:524.133333pt;}
.x116_c00251{left:525.866667pt;}
.xc3_c00251{left:528.000000pt;}
.xdf_c00251{left:529.333333pt;}
.xfc_c00251{left:530.533333pt;}
.xe7_c00251{left:531.466667pt;}
.x14a_c00251{left:532.533333pt;}
.x130_c00251{left:534.000000pt;}
.xef_c00251{left:535.066667pt;}
.x151_c00251{left:536.266667pt;}
.xca_c00251{left:537.333333pt;}
.x11b_c00251{left:538.266667pt;}
.xb9_c00251{left:539.866667pt;}
.x13d_c00251{left:542.800000pt;}
.x101_c00251{left:543.866667pt;}
.x117_c00251{left:545.066667pt;}
.x126_c00251{left:547.066667pt;}
.xe8_c00251{left:549.066667pt;}
.xf5_c00251{left:550.266667pt;}
.xd8_c00251{left:551.466667pt;}
.x137_c00251{left:553.866667pt;}
.x156_c00251{left:554.800000pt;}
.xba_c00251{left:555.866667pt;}
.x145_c00251{left:557.333333pt;}
.xc4_c00251{left:558.666667pt;}
.xe0_c00251{left:561.066667pt;}
.xcf_c00251{left:562.000000pt;}
.x10b_c00251{left:564.000000pt;}
.xea_c00251{left:565.333333pt;}
.x133_c00251{left:566.533333pt;}
.xf8_c00251{left:568.000000pt;}
.x11c_c00251{left:570.266667pt;}
.xb3_c00251{left:572.400000pt;}
.x148_c00251{left:573.333333pt;}
.xc5_c00251{left:574.666667pt;}
.x10c_c00251{left:576.533333pt;}
.x152_c00251{left:577.866667pt;}
.xcb_c00251{left:579.600000pt;}
.x129_c00251{left:580.666667pt;}
.x139_c00251{left:584.933333pt;}
.xbb_c00251{left:586.266667pt;}
.xe9_c00251{left:587.200000pt;}
.x122_c00251{left:588.533333pt;}
.x118_c00251{left:590.133333pt;}
.x104_c00251{left:591.866667pt;}
.x12d_c00251{left:593.200000pt;}
.xbc_c00251{left:594.533333pt;}
.xcc_c00251{left:596.533333pt;}
.xd9_c00251{left:598.133333pt;}
.x157_c00251{left:599.333333pt;}
.xe1_c00251{left:601.066667pt;}
.x110_c00251{left:602.266667pt;}
.x12b_c00251{left:604.933333pt;}
.xb4_c00251{left:606.933333pt;}
.x155_c00251{left:607.866667pt;}
.xe2_c00251{left:608.800000pt;}
.xbd_c00251{left:611.466667pt;}
.x10d_c00251{left:612.666667pt;}
.xf0_c00251{left:615.333333pt;}
.x13f_c00251{left:616.400000pt;}
.x14c_c00251{left:617.733333pt;}
.x123_c00251{left:618.933333pt;}
.x13e_c00251{left:620.266667pt;}
.x127_c00251{left:623.200000pt;}
.x138_c00251{left:624.266667pt;}
.xc6_c00251{left:625.600000pt;}
.xd0_c00251{left:628.266667pt;}
.xfd_c00251{left:630.133333pt;}
.x12e_c00251{left:631.600000pt;}
.xf1_c00251{left:633.600000pt;}
.xf9_c00251{left:635.733333pt;}
.x131_c00251{left:637.600000pt;}
.xb5_c00251{left:638.666667pt;}
.xfe_c00251{left:640.133333pt;}
.x158_c00251{left:641.200000pt;}
.x128_c00251{left:642.133333pt;}
.xbe_c00251{left:643.733333pt;}
.xeb_c00251{left:645.733333pt;}
.x111_c00251{left:647.466667pt;}
.xfa_c00251{left:648.533333pt;}
.x150_c00251{left:650.266667pt;}
.x105_c00251{left:652.133333pt;}
.xda_c00251{left:653.733333pt;}
.xe3_c00251{left:654.666667pt;}
.xc7_c00251{left:655.733333pt;}
.xff_c00251{left:658.400000pt;}
.xd1_c00251{left:660.000000pt;}
.x11d_c00251{left:661.200000pt;}
.x120_c00251{left:663.866667pt;}
.x124_c00251{left:665.333333pt;}
.x112_c00251{left:667.333333pt;}
.x10e_c00251{left:668.666667pt;}
.x141_c00251{left:669.600000pt;}
.xd6_c00251{left:670.800000pt;}
.x12a_c00251{left:671.866667pt;}
.xcd_c00251{left:672.800000pt;}
.xbf_c00251{left:673.866667pt;}
.x119_c00251{left:675.866667pt;}
.xf2_c00251{left:679.066667pt;}
.x134_c00251{left:681.066667pt;}
.x113_c00251{left:682.000000pt;}
.xfb_c00251{left:683.466667pt;}
.x125_c00251{left:687.333333pt;}
.x135_c00251{left:688.800000pt;}
.xf6_c00251{left:690.000000pt;}
.xd2_c00251{left:691.733333pt;}
.x100_c00251{left:692.666667pt;}
.x121_c00251{left:694.000000pt;}
.x106_c00251{left:696.000000pt;}
.x14e_c00251{left:698.400000pt;}
.x13a_c00251{left:701.733333pt;}
.xc0_c00251{left:703.333333pt;}
.xe4_c00251{left:706.533333pt;}
.xce_c00251{left:708.266667pt;}
.xec_c00251{left:709.733333pt;}
.xb6_c00251{left:712.000000pt;}
.xe5_c00251{left:715.200000pt;}
.x12c_c00251{left:717.333333pt;}
.x136_c00251{left:718.533333pt;}
.xc1_c00251{left:720.000000pt;}
.x14d_c00251{left:721.733333pt;}
.x107_c00251{left:722.933333pt;}
.xdb_c00251{left:724.133333pt;}
.xf3_c00251{left:725.200000pt;}
.x146_c00251{left:729.200000pt;}
.xf7_c00251{left:730.933333pt;}
.x114_c00251{left:732.266667pt;}
.x154_c00251{left:733.733333pt;}
.xe6_c00251{left:734.666667pt;}
.xd3_c00251{left:736.266667pt;}
.xc8_c00251{left:737.600000pt;}
.xdc_c00251{left:738.533333pt;}
.x11a_c00251{left:740.533333pt;}
.xed_c00251{left:741.466667pt;}
.x159_c00251{left:742.400000pt;}
.xd7_c00251{left:744.133333pt;}
.x143_c00251{left:745.466667pt;}
.x142_c00251{left:748.933333pt;}
.x115_c00251{left:750.533333pt;}
.xb7_c00251{left:752.000000pt;}
.x11e_c00251{left:753.333333pt;}
.xd4_c00251{left:754.800000pt;}
.x13b_c00251{left:756.133333pt;}
.x108_c00251{left:757.200000pt;}
.x153_c00251{left:758.933333pt;}
.x14b_c00251{left:762.000000pt;}
}





/* 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_c00252 {
    display:none;
  }
  .loading-indicator_c00252.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00252 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_c00252 { 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_c00252" -> "#page-container .classname_c00252")
 */
.pf_c00252 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00252 { /* 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_c00252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00252 { /* 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_c00252 { /* 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_c00252 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00252 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00252 {overflow:visible;}
  }
}
.c_c00252 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00252 { /* 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_c00252:after { /* webkit #35443 */
  content: '';
}
.t_c00252:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00252 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 */
}
.__c00252 { /* 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_c00252 { /* info for Javascript */
  display:none;
}
.l_c00252 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00252 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00252 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00252: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_c00252 {
    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_c00252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00252.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_c00252 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00252;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.000000;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;}
.mfc_c00252{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00252{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mde_c00252{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00252{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m113_c00252{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m107_c00252{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00252{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00252{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00252{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9_c00252{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00252{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m21_c00252{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m53_c00252{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m101_c00252{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00252{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m28_c00252{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m62_c00252{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00252{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00252{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00252{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00252{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00252{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.maf_c00252{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00252{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00252{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m117_c00252{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m84_c00252{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md4_c00252{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me_c00252{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mad_c00252{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m115_c00252{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00252{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m80_c00252{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00252{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00252{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00252{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00252{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00252{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00252{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me0_c00252{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mae_c00252{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m35_c00252{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00252{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m83_c00252{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00252{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00252{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m60_c00252{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00252{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00252{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00252{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m48_c00252{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m13_c00252{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m116_c00252{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00252{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m73_c00252{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00252{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m66_c00252{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00252{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mab_c00252{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m72_c00252{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me7_c00252{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m38_c00252{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2_c00252{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m99_c00252{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m92_c00252{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00252{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7_c00252{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00252{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00252{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00252{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00252{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m95_c00252{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mce_c00252{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mca_c00252{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m108_c00252{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00252{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00252{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00252{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mac_c00252{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mf_c00252{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.me9_c00252{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00252{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00252{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md_c00252{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00252{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m109_c00252{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m16_c00252{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00252{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00252{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m110_c00252{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.md6_c00252{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8_c00252{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md5_c00252{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00252{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me6_c00252{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mec_c00252{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00252{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc_c00252{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00252{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00252{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m24_c00252{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m39_c00252{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m45_c00252{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m90_c00252{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00252{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m52_c00252{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00252{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00252{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00252{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m11_c00252{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m29_c00252{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.maa_c00252{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m85_c00252{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m94_c00252{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m64_c00252{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00252{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m91_c00252{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00252{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me4_c00252{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00252{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00252{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m58_c00252{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00252{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m63_c00252{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00252{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00252{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m36_c00252{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m89_c00252{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00252{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me5_c00252{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m98_c00252{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00252{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00252{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md2_c00252{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00252{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md1_c00252{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m59_c00252{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m111_c00252{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00252{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00252{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m106_c00252{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m22_c00252{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00252{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00252{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00252{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m20_c00252{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00252{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m81_c00252{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00252{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m104_c00252{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m14_c00252{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m77_c00252{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.med_c00252{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m37_c00252{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m67_c00252{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m32_c00252{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m68_c00252{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m71_c00252{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma_c00252{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00252{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00252{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m114_c00252{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00252{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00252{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m43_c00252{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00252{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m42_c00252{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m76_c00252{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m100_c00252{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md3_c00252{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00252{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m30_c00252{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3_c00252{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m82_c00252{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m23_c00252{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m46_c00252{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb_c00252{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m27_c00252{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m87_c00252{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m93_c00252{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00252{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m69_c00252{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m61_c00252{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me3_c00252{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00252{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m33_c00252{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m19_c00252{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m79_c00252{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m17_c00252{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m78_c00252{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m105_c00252{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00252{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m18_c00252{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m10_c00252{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m12_c00252{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mff_c00252{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m70_c00252{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me8_c00252{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mda_c00252{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00252{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00252{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m47_c00252{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00252{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00252{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m34_c00252{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m112_c00252{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00252{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00252{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m49_c00252{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00252{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.meb_c00252{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00252{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00252{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00252{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m31_c00252{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00252{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00252{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m56_c00252{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m55_c00252{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m65_c00252{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00252{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00252{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00252{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00252{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00252{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00252{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00252{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m25_c00252{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m102_c00252{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mba_c00252{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);}
.m86_c00252{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00252{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m41_c00252{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mee_c00252{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00252{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00252{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00252{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6_c00252{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00252{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m75_c00252{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00252{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m54_c00252{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00252{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m103_c00252{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00252{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00252{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mef_c00252{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m57_c00252{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00252{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m50_c00252{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00252{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m74_c00252{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m44_c00252{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.md0_c00252{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00252{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00252{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00252{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m97_c00252{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00252{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m96_c00252{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00252{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m15_c00252{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m26_c00252{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md9_c00252{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mea_c00252{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00252{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m40_c00252{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m51_c00252{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00252{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m88_c00252{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m0_c00252{transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);}
.md8_c00252{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.md7_c00252{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00252{transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);}
.m5_c00252{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me1_c00252{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.me2_c00252{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00252{transform:matrix(0.744000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls0_c00252{letter-spacing:0.000000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{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__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00252{word-spacing:-8.647059px;}
.ws2_c00252{word-spacing:-2.894737px;}
.ws8_c00252{word-spacing:0.000000px;}
.ws0_c00252{word-spacing:1.757962px;}
.ws3_c00252{word-spacing:1.987730px;}
.ws5_c00252{word-spacing:3.125000px;}
.ws7_c00252{word-spacing:10.277778px;}
.ws1_c00252{word-spacing:12.055944px;}
.ws6_c00252{word-spacing:45.250000px;}
._0_c00252{width:40.235294px;}
._2_c00252{width:144.500000px;}
._1_c00252{width:284.500000px;}
.fc0_c00252{color:transparent;}
.fs8_c00252{font-size:30.000000px;}
.fs3_c00252{font-size:36.000000px;}
.fs2_c00252{font-size:42.000000px;}
.fs1_c00252{font-size:48.000000px;}
.fs6_c00252{font-size:54.000000px;}
.fs5_c00252{font-size:60.000000px;}
.fs4_c00252{font-size:66.000000px;}
.fs7_c00252{font-size:72.000000px;}
.fs0_c00252{font-size:114.000000px;}
.y0_c00252{bottom:0.000000px;}
.y3a_c00252{bottom:175.650000px;}
.y39_c00252{bottom:181.500000px;}
.y67_c00252{bottom:181.800000px;}
.y38_c00252{bottom:199.800000px;}
.y37_c00252{bottom:217.800000px;}
.y36_c00252{bottom:235.500000px;}
.y35_c00252{bottom:253.500000px;}
.y34_c00252{bottom:271.500000px;}
.y66_c00252{bottom:271.800000px;}
.y33_c00252{bottom:289.500000px;}
.y32_c00252{bottom:307.500000px;}
.y65_c00252{bottom:307.800000px;}
.y31_c00252{bottom:325.050000px;}
.y64_c00252{bottom:325.500000px;}
.y63_c00252{bottom:343.500000px;}
.y30_c00252{bottom:347.400000px;}
.y62_c00252{bottom:361.050000px;}
.y2f_c00252{bottom:365.100000px;}
.y61_c00252{bottom:379.050000px;}
.y2e_c00252{bottom:383.100000px;}
.y60_c00252{bottom:396.750000px;}
.y2d_c00252{bottom:401.100000px;}
.y5f_c00252{bottom:415.500000px;}
.y2c_c00252{bottom:418.800000px;}
.y5e_c00252{bottom:432.300000px;}
.y2b_c00252{bottom:437.100000px;}
.y5d_c00252{bottom:453.150000px;}
.y2a_c00252{bottom:455.100000px;}
.y5c_c00252{bottom:468.300000px;}
.y29_c00252{bottom:473.100000px;}
.y5b_c00252{bottom:490.650000px;}
.y28_c00252{bottom:491.100000px;}
.y5a_c00252{bottom:508.650000px;}
.y27_c00252{bottom:512.550000px;}
.y59_c00252{bottom:526.650000px;}
.y26_c00252{bottom:530.850000px;}
.y25_c00252{bottom:548.850000px;}
.y58_c00252{bottom:549.300000px;}
.y24_c00252{bottom:566.850000px;}
.y57_c00252{bottom:567.150000px;}
.y23_c00252{bottom:584.850000px;}
.y56_c00252{bottom:585.150000px;}
.y22_c00252{bottom:602.550000px;}
.y55_c00252{bottom:603.450000px;}
.y21_c00252{bottom:620.550000px;}
.y54_c00252{bottom:621.450000px;}
.y20_c00252{bottom:638.550000px;}
.y53_c00252{bottom:639.750000px;}
.y5_c00252{bottom:650.850000px;}
.y1f_c00252{bottom:656.550000px;}
.y52_c00252{bottom:660.900000px;}
.y1e_c00252{bottom:674.550000px;}
.y51_c00252{bottom:679.200000px;}
.y1d_c00252{bottom:692.250000px;}
.y50_c00252{bottom:696.900000px;}
.y1c_c00252{bottom:710.250000px;}
.y4f_c00252{bottom:714.900000px;}
.y1b_c00252{bottom:728.250000px;}
.y4e_c00252{bottom:736.650000px;}
.y1a_c00252{bottom:746.250000px;}
.y4d_c00252{bottom:754.950000px;}
.y19_c00252{bottom:763.950000px;}
.y4c_c00252{bottom:772.950000px;}
.y18_c00252{bottom:781.950000px;}
.y4b_c00252{bottom:790.950000px;}
.y17_c00252{bottom:799.650000px;}
.y4a_c00252{bottom:812.550000px;}
.y16_c00252{bottom:816.900000px;}
.y15_c00252{bottom:834.900000px;}
.y49_c00252{bottom:836.700000px;}
.y48_c00252{bottom:844.650000px;}
.y14_c00252{bottom:856.950000px;}
.y47_c00252{bottom:865.500000px;}
.y46_c00252{bottom:872.700000px;}
.y13_c00252{bottom:874.650000px;}
.y45_c00252{bottom:887.400000px;}
.y12_c00252{bottom:892.950000px;}
.y44_c00252{bottom:905.100000px;}
.y11_c00252{bottom:910.650000px;}
.y43_c00252{bottom:923.100000px;}
.y10_c00252{bottom:928.650000px;}
.yf_c00252{bottom:946.350000px;}
.y42_c00252{bottom:957.300000px;}
.ye_c00252{bottom:964.050000px;}
.yd_c00252{bottom:982.050000px;}
.y41_c00252{bottom:993.150000px;}
.yc_c00252{bottom:1003.650000px;}
.y40_c00252{bottom:1011.450000px;}
.yb_c00252{bottom:1021.650000px;}
.y3f_c00252{bottom:1029.450000px;}
.ya_c00252{bottom:1039.650000px;}
.y3e_c00252{bottom:1047.150000px;}
.y9_c00252{bottom:1057.350000px;}
.y3d_c00252{bottom:1064.850000px;}
.y8_c00252{bottom:1075.650000px;}
.y3c_c00252{bottom:1083.300000px;}
.y7_c00252{bottom:1092.900000px;}
.y6_c00252{bottom:1110.900000px;}
.y3b_c00252{bottom:1111.350000px;}
.y4_c00252{bottom:1131.150000px;}
.y2_c00252{bottom:1135.800000px;}
.y3_c00252{bottom:1136.550000px;}
.y1_c00252{bottom:1137.300000px;}
.ha_c00252{height:30.000000px;}
.h5_c00252{height:36.000000px;}
.h4_c00252{height:42.000000px;}
.h3_c00252{height:48.000000px;}
.h8_c00252{height:54.000000px;}
.h7_c00252{height:60.000000px;}
.h6_c00252{height:66.000000px;}
.h9_c00252{height:72.000000px;}
.h2_c00252{height:114.000000px;}
.h0_c00252{height:1265.039977px;}
.h1_c00252{height:1265.250000px;}
.w1_c00252{width:961.500000px;}
.w0_c00252{width:961.560058px;}
.x0_c00252{left:0.000000px;}
.x6_c00252{left:62.250000px;}
.x9a_c00252{left:82.800000px;}
.x86_c00252{left:86.400000px;}
.x46_c00252{left:101.100000px;}
.xe_c00252{left:102.150000px;}
.x2e_c00252{left:103.350000px;}
.x7d_c00252{left:104.700000px;}
.x15_c00252{left:114.000000px;}
.x53_c00252{left:118.050000px;}
.x7_c00252{left:119.850000px;}
.x60_c00252{left:124.950000px;}
.x52_c00252{left:126.750000px;}
.x8a_c00252{left:127.800000px;}
.x67_c00252{left:129.150000px;}
.x75_c00252{left:130.500000px;}
.x94_c00252{left:132.450000px;}
.x22_c00252{left:135.000000px;}
.x71_c00252{left:137.550000px;}
.x8c_c00252{left:138.900000px;}
.x68_c00252{left:141.000000px;}
.x9f_c00252{left:142.500000px;}
.x54_c00252{left:145.350000px;}
.x7a_c00252{left:146.550000px;}
.x4e_c00252{left:148.950000px;}
.x95_c00252{left:150.150000px;}
.x2f_c00252{left:153.750000px;}
.x83_c00252{left:157.650000px;}
.x8_c00252{left:160.200000px;}
.x3d_c00252{left:161.550000px;}
.x47_c00252{left:163.050000px;}
.xa3_c00252{left:165.000000px;}
.x4b_c00252{left:166.050000px;}
.x77_c00252{left:167.100000px;}
.x7e_c00252{left:169.050000px;}
.x1b_c00252{left:170.400000px;}
.x38_c00252{left:176.550000px;}
.x5c_c00252{left:177.750000px;}
.x61_c00252{left:181.200000px;}
.x81_c00252{left:184.200000px;}
.x7f_c00252{left:185.250000px;}
.xf_c00252{left:187.050000px;}
.x72_c00252{left:189.000000px;}
.x6e_c00252{left:190.500000px;}
.x7b_c00252{left:191.850000px;}
.x9_c00252{left:194.700000px;}
.x16_c00252{left:196.050000px;}
.x33_c00252{left:197.550000px;}
.x3e_c00252{left:200.100000px;}
.x1c_c00252{left:202.050000px;}
.x5d_c00252{left:204.450000px;}
.x23_c00252{left:205.950000px;}
.x4f_c00252{left:208.050000px;}
.x55_c00252{left:211.200000px;}
.x42_c00252{left:212.700000px;}
.x62_c00252{left:216.150000px;}
.x10_c00252{left:217.350000px;}
.x76_c00252{left:222.600000px;}
.x1d_c00252{left:223.950000px;}
.x4c_c00252{left:227.550000px;}
.x8d_c00252{left:228.900000px;}
.x39_c00252{left:230.250000px;}
.x90_c00252{left:232.500000px;}
.x34_c00252{left:234.600000px;}
.x80_c00252{left:235.950000px;}
.xa5_c00252{left:237.000000px;}
.x11_c00252{left:238.200000px;}
.x56_c00252{left:240.300000px;}
.x5e_c00252{left:241.950000px;}
.x58_c00252{left:244.200000px;}
.x24_c00252{left:245.250000px;}
.x6b_c00252{left:247.500000px;}
.x9b_c00252{left:248.700000px;}
.x73_c00252{left:249.900000px;}
.x97_c00252{left:251.550000px;}
.x17_c00252{left:252.600000px;}
.x87_c00252{left:253.800000px;}
.x8b_c00252{left:255.600000px;}
.xa0_c00252{left:256.650000px;}
.x65_c00252{left:257.700000px;}
.x63_c00252{left:259.050000px;}
.x25_c00252{left:260.400000px;}
.x48_c00252{left:263.100000px;}
.xa_c00252{left:265.200000px;}
.x3a_c00252{left:267.750000px;}
.x30_c00252{left:270.150000px;}
.x5b_c00252{left:273.150000px;}
.x3f_c00252{left:274.200000px;}
.xb_c00252{left:276.750000px;}
.x78_c00252{left:278.400000px;}
.x35_c00252{left:279.600000px;}
.x96_c00252{left:280.800000px;}
.x2a_c00252{left:282.450000px;}
.x9c_c00252{left:283.650000px;}
.x92_c00252{left:286.650000px;}
.x26_c00252{left:288.900000px;}
.x31_c00252{left:291.000000px;}
.x1e_c00252{left:292.650000px;}
.x18_c00252{left:294.000000px;}
.x40_c00252{left:296.550000px;}
.x50_c00252{left:298.800000px;}
.x98_c00252{left:299.850000px;}
.x6f_c00252{left:301.650000px;}
.x88_c00252{left:303.150000px;}
.x12_c00252{left:306.600000px;}
.x2b_c00252{left:308.400000px;}
.xc_c00252{left:310.950000px;}
.x5f_c00252{left:312.450000px;}
.x69_c00252{left:314.400000px;}
.x51_c00252{left:315.750000px;}
.x70_c00252{left:317.100000px;}
.x49_c00252{left:318.300000px;}
.x32_c00252{left:319.800000px;}
.x43_c00252{left:321.750000px;}
.x1_c00252{left:322.950000px;}
.x9d_c00252{left:326.550000px;}
.x84_c00252{left:327.600000px;}
.x27_c00252{left:328.800000px;}
.xa1_c00252{left:331.650000px;}
.x3b_c00252{left:333.300000px;}
.x2c_c00252{left:336.900000px;}
.x9e_c00252{left:338.100000px;}
.x8e_c00252{left:339.450000px;}
.xa4_c00252{left:342.450000px;}
.x36_c00252{left:344.100000px;}
.x19_c00252{left:347.250000px;}
.x57_c00252{left:348.300000px;}
.x59_c00252{left:349.650000px;}
.x93_c00252{left:350.700000px;}
.x28_c00252{left:351.900000px;}
.x1f_c00252{left:353.100000px;}
.xd_c00252{left:354.900000px;}
.x13_c00252{left:356.700000px;}
.x99_c00252{left:358.950000px;}
.x8f_c00252{left:360.300000px;}
.x6c_c00252{left:361.350000px;}
.x37_c00252{left:362.400000px;}
.x74_c00252{left:365.850000px;}
.x1a_c00252{left:367.350000px;}
.x82_c00252{left:369.300000px;}
.x41_c00252{left:370.800000px;}
.x20_c00252{left:372.150000px;}
.x44_c00252{left:374.700000px;}
.x4d_c00252{left:377.550000px;}
.xa2_c00252{left:380.850000px;}
.x14_c00252{left:382.200000px;}
.x5a_c00252{left:384.600000px;}
.xa6_c00252{left:386.250000px;}
.x6d_c00252{left:387.600000px;}
.x64_c00252{left:388.650000px;}
.x91_c00252{left:390.000000px;}
.x3c_c00252{left:391.950000px;}
.x79_c00252{left:393.900000px;}
.x6a_c00252{left:396.900000px;}
.x66_c00252{left:398.100000px;}
.x7c_c00252{left:399.150000px;}
.x21_c00252{left:400.650000px;}
.x2d_c00252{left:403.200000px;}
.x89_c00252{left:404.250000px;}
.x29_c00252{left:405.900000px;}
.x4a_c00252{left:407.250000px;}
.x85_c00252{left:408.300000px;}
.x45_c00252{left:410.400000px;}
.xaa_c00252{left:440.700000px;}
.xd7_c00252{left:441.750000px;}
.xa7_c00252{left:457.950000px;}
.xaf_c00252{left:459.000000px;}
.xf0_c00252{left:460.500000px;}
.xe5_c00252{left:461.850000px;}
.xc4_c00252{left:475.650000px;}
.xb7_c00252{left:477.750000px;}
.xf7_c00252{left:479.550000px;}
.xdb_c00252{left:481.050000px;}
.x13b_c00252{left:483.000000px;}
.xeb_c00252{left:484.950000px;}
.x106_c00252{left:486.600000px;}
.xd8_c00252{left:488.550000px;}
.xfc_c00252{left:490.800000px;}
.xe6_c00252{left:492.150000px;}
.xca_c00252{left:494.400000px;}
.x101_c00252{left:496.800000px;}
.x11c_c00252{left:499.350000px;}
.xbe_c00252{left:500.400000px;}
.xb0_c00252{left:502.500000px;}
.xdf_c00252{left:503.850000px;}
.xdc_c00252{left:505.200000px;}
.xd5_c00252{left:508.650000px;}
.x123_c00252{left:510.750000px;}
.xa8_c00252{left:511.950000px;}
.x136_c00252{left:514.200000px;}
.x117_c00252{left:515.250000px;}
.x119_c00252{left:518.100000px;}
.x12c_c00252{left:519.150000px;}
.xe7_c00252{left:520.650000px;}
.xab_c00252{left:522.750000px;}
.xf5_c00252{left:526.050000px;}
.xdd_c00252{left:527.550000px;}
.x12d_c00252{left:530.250000px;}
.xf8_c00252{left:536.400000px;}
.xd2_c00252{left:537.450000px;}
.x124_c00252{left:538.800000px;}
.xec_c00252{left:540.450000px;}
.xf6_c00252{left:543.000000px;}
.xac_c00252{left:544.050000px;}
.xe0_c00252{left:547.050000px;}
.xcb_c00252{left:548.100000px;}
.x137_c00252{left:550.200000px;}
.xb8_c00252{left:551.550000px;}
.xbf_c00252{left:553.350000px;}
.xfd_c00252{left:554.850000px;}
.xb1_c00252{left:556.800000px;}
.x128_c00252{left:559.800000px;}
.x111_c00252{left:560.850000px;}
.xcc_c00252{left:563.550000px;}
.x130_c00252{left:564.900000px;}
.xe8_c00252{left:566.700000px;}
.xf9_c00252{left:568.500000px;}
.x107_c00252{left:570.150000px;}
.xb9_c00252{left:573.450000px;}
.xfe_c00252{left:574.650000px;}
.x138_c00252{left:578.250000px;}
.xf1_c00252{left:581.100000px;}
.xc0_c00252{left:582.150000px;}
.x125_c00252{left:584.250000px;}
.x102_c00252{left:586.350000px;}
.x129_c00252{left:587.850000px;}
.x109_c00252{left:589.350000px;}
.xed_c00252{left:590.850000px;}
.xfa_c00252{left:592.200000px;}
.xd3_c00252{left:593.550000px;}
.xff_c00252{left:594.750000px;}
.x131_c00252{left:595.800000px;}
.x10b_c00252{left:597.000000px;}
.xe9_c00252{left:599.700000px;}
.xc5_c00252{left:600.900000px;}
.x103_c00252{left:602.850000px;}
.x121_c00252{left:604.050000px;}
.x10c_c00252{left:605.700000px;}
.x12e_c00252{left:607.200000px;}
.xe1_c00252{left:608.550000px;}
.xd0_c00252{left:610.200000px;}
.x13a_c00252{left:611.400000px;}
.x108_c00252{left:613.350000px;}
.x114_c00252{left:614.550000px;}
.xd9_c00252{left:617.400000px;}
.x11d_c00252{left:618.900000px;}
.x11f_c00252{left:620.850000px;}
.xc6_c00252{left:624.000000px;}
.x112_c00252{left:625.350000px;}
.xad_c00252{left:628.350000px;}
.xb2_c00252{left:630.600000px;}
.x115_c00252{left:631.800000px;}
.x10f_c00252{left:636.450000px;}
.xcd_c00252{left:637.650000px;}
.xa9_c00252{left:639.750000px;}
.xc1_c00252{left:641.250000px;}
.xf2_c00252{left:643.050000px;}
.xba_c00252{left:648.750000px;}
.x13c_c00252{left:651.900000px;}
.x11a_c00252{left:652.950000px;}
.x120_c00252{left:654.300000px;}
.xe2_c00252{left:658.950000px;}
.x126_c00252{left:660.900000px;}
.x132_c00252{left:663.150000px;}
.xee_c00252{left:664.950000px;}
.xd1_c00252{left:667.050000px;}
.xc7_c00252{left:669.000000px;}
.xce_c00252{left:671.550000px;}
.x116_c00252{left:672.900000px;}
.x13d_c00252{left:674.250000px;}
.xb3_c00252{left:675.900000px;}
.x135_c00252{left:677.250000px;}
.x122_c00252{left:678.900000px;}
.xea_c00252{left:680.400000px;}
.xc8_c00252{left:683.700000px;}
.xbb_c00252{left:685.500000px;}
.x100_c00252{left:687.000000px;}
.xe3_c00252{left:688.050000px;}
.xcf_c00252{left:690.300000px;}
.x12a_c00252{left:691.500000px;}
.xfb_c00252{left:692.700000px;}
.x10d_c00252{left:693.900000px;}
.x104_c00252{left:694.950000px;}
.xd4_c00252{left:697.650000px;}
.x110_c00252{left:698.700000px;}
.xae_c00252{left:700.650000px;}
.xc2_c00252{left:703.200000px;}
.xbc_c00252{left:704.250000px;}
.x11b_c00252{left:706.650000px;}
.xde_c00252{left:708.000000px;}
.xb4_c00252{left:709.350000px;}
.xf3_c00252{left:710.700000px;}
.x105_c00252{left:712.200000px;}
.xef_c00252{left:714.300000px;}
.xc9_c00252{left:717.600000px;}
.x134_c00252{left:718.950000px;}
.xb5_c00252{left:721.200000px;}
.x139_c00252{left:722.250000px;}
.x11e_c00252{left:724.650000px;}
.xd6_c00252{left:727.200000px;}
.xf4_c00252{left:732.000000px;}
.x12f_c00252{left:733.050000px;}
.xb6_c00252{left:742.050000px;}
.x133_c00252{left:744.450000px;}
.x3_c00252{left:746.250000px;}
.x2_c00252{left:748.800000px;}
.x127_c00252{left:751.650000px;}
.x10a_c00252{left:752.850000px;}
.xc3_c00252{left:754.650000px;}
.x113_c00252{left:756.750000px;}
.x4_c00252{left:758.550000px;}
.xe4_c00252{left:760.800000px;}
.x12b_c00252{left:763.950000px;}
.xbd_c00252{left:765.450000px;}
.x118_c00252{left:766.950000px;}
.x5_c00252{left:769.050000px;}
.xda_c00252{left:776.250000px;}
.x10e_c00252{left:777.750000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws4_c00252{word-spacing:-7.686275pt;}
.ws2_c00252{word-spacing:-2.573099pt;}
.ws8_c00252{word-spacing:0.000000pt;}
.ws0_c00252{word-spacing:1.562633pt;}
.ws3_c00252{word-spacing:1.766871pt;}
.ws5_c00252{word-spacing:2.777778pt;}
.ws7_c00252{word-spacing:9.135802pt;}
.ws1_c00252{word-spacing:10.716395pt;}
.ws6_c00252{word-spacing:40.222222pt;}
._0_c00252{width:35.764706pt;}
._2_c00252{width:128.444444pt;}
._1_c00252{width:252.888889pt;}
.fs8_c00252{font-size:26.666667pt;}
.fs3_c00252{font-size:32.000000pt;}
.fs2_c00252{font-size:37.333333pt;}
.fs1_c00252{font-size:42.666667pt;}
.fs6_c00252{font-size:48.000000pt;}
.fs5_c00252{font-size:53.333333pt;}
.fs4_c00252{font-size:58.666667pt;}
.fs7_c00252{font-size:64.000000pt;}
.fs0_c00252{font-size:101.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y3a_c00252{bottom:156.133333pt;}
.y39_c00252{bottom:161.333333pt;}
.y67_c00252{bottom:161.600000pt;}
.y38_c00252{bottom:177.600000pt;}
.y37_c00252{bottom:193.600000pt;}
.y36_c00252{bottom:209.333333pt;}
.y35_c00252{bottom:225.333333pt;}
.y34_c00252{bottom:241.333333pt;}
.y66_c00252{bottom:241.600000pt;}
.y33_c00252{bottom:257.333333pt;}
.y32_c00252{bottom:273.333333pt;}
.y65_c00252{bottom:273.600000pt;}
.y31_c00252{bottom:288.933333pt;}
.y64_c00252{bottom:289.333333pt;}
.y63_c00252{bottom:305.333333pt;}
.y30_c00252{bottom:308.800000pt;}
.y62_c00252{bottom:320.933333pt;}
.y2f_c00252{bottom:324.533333pt;}
.y61_c00252{bottom:336.933333pt;}
.y2e_c00252{bottom:340.533333pt;}
.y60_c00252{bottom:352.666667pt;}
.y2d_c00252{bottom:356.533333pt;}
.y5f_c00252{bottom:369.333333pt;}
.y2c_c00252{bottom:372.266667pt;}
.y5e_c00252{bottom:384.266667pt;}
.y2b_c00252{bottom:388.533333pt;}
.y5d_c00252{bottom:402.800000pt;}
.y2a_c00252{bottom:404.533333pt;}
.y5c_c00252{bottom:416.266667pt;}
.y29_c00252{bottom:420.533333pt;}
.y5b_c00252{bottom:436.133333pt;}
.y28_c00252{bottom:436.533333pt;}
.y5a_c00252{bottom:452.133333pt;}
.y27_c00252{bottom:455.600000pt;}
.y59_c00252{bottom:468.133333pt;}
.y26_c00252{bottom:471.866667pt;}
.y25_c00252{bottom:487.866667pt;}
.y58_c00252{bottom:488.266667pt;}
.y24_c00252{bottom:503.866667pt;}
.y57_c00252{bottom:504.133333pt;}
.y23_c00252{bottom:519.866667pt;}
.y56_c00252{bottom:520.133333pt;}
.y22_c00252{bottom:535.600000pt;}
.y55_c00252{bottom:536.400000pt;}
.y21_c00252{bottom:551.600000pt;}
.y54_c00252{bottom:552.400000pt;}
.y20_c00252{bottom:567.600000pt;}
.y53_c00252{bottom:568.666667pt;}
.y5_c00252{bottom:578.533333pt;}
.y1f_c00252{bottom:583.600000pt;}
.y52_c00252{bottom:587.466667pt;}
.y1e_c00252{bottom:599.600000pt;}
.y51_c00252{bottom:603.733333pt;}
.y1d_c00252{bottom:615.333333pt;}
.y50_c00252{bottom:619.466667pt;}
.y1c_c00252{bottom:631.333333pt;}
.y4f_c00252{bottom:635.466667pt;}
.y1b_c00252{bottom:647.333333pt;}
.y4e_c00252{bottom:654.800000pt;}
.y1a_c00252{bottom:663.333333pt;}
.y4d_c00252{bottom:671.066667pt;}
.y19_c00252{bottom:679.066667pt;}
.y4c_c00252{bottom:687.066667pt;}
.y18_c00252{bottom:695.066667pt;}
.y4b_c00252{bottom:703.066667pt;}
.y17_c00252{bottom:710.800000pt;}
.y4a_c00252{bottom:722.266667pt;}
.y16_c00252{bottom:726.133333pt;}
.y15_c00252{bottom:742.133333pt;}
.y49_c00252{bottom:743.733333pt;}
.y48_c00252{bottom:750.800000pt;}
.y14_c00252{bottom:761.733333pt;}
.y47_c00252{bottom:769.333333pt;}
.y46_c00252{bottom:775.733333pt;}
.y13_c00252{bottom:777.466667pt;}
.y45_c00252{bottom:788.800000pt;}
.y12_c00252{bottom:793.733333pt;}
.y44_c00252{bottom:804.533333pt;}
.y11_c00252{bottom:809.466667pt;}
.y43_c00252{bottom:820.533333pt;}
.y10_c00252{bottom:825.466667pt;}
.yf_c00252{bottom:841.200000pt;}
.y42_c00252{bottom:850.933333pt;}
.ye_c00252{bottom:856.933333pt;}
.yd_c00252{bottom:872.933333pt;}
.y41_c00252{bottom:882.800000pt;}
.yc_c00252{bottom:892.133333pt;}
.y40_c00252{bottom:899.066667pt;}
.yb_c00252{bottom:908.133333pt;}
.y3f_c00252{bottom:915.066667pt;}
.ya_c00252{bottom:924.133333pt;}
.y3e_c00252{bottom:930.800000pt;}
.y9_c00252{bottom:939.866667pt;}
.y3d_c00252{bottom:946.533333pt;}
.y8_c00252{bottom:956.133333pt;}
.y3c_c00252{bottom:962.933333pt;}
.y7_c00252{bottom:971.466667pt;}
.y6_c00252{bottom:987.466667pt;}
.y3b_c00252{bottom:987.866667pt;}
.y4_c00252{bottom:1005.466667pt;}
.y2_c00252{bottom:1009.600000pt;}
.y3_c00252{bottom:1010.266667pt;}
.y1_c00252{bottom:1010.933333pt;}
.ha_c00252{height:26.666667pt;}
.h5_c00252{height:32.000000pt;}
.h4_c00252{height:37.333333pt;}
.h3_c00252{height:42.666667pt;}
.h8_c00252{height:48.000000pt;}
.h7_c00252{height:53.333333pt;}
.h6_c00252{height:58.666667pt;}
.h9_c00252{height:64.000000pt;}
.h2_c00252{height:101.333333pt;}
.h0_c00252{height:1124.479980pt;}
.h1_c00252{height:1124.666667pt;}
.w1_c00252{width:854.666667pt;}
.w0_c00252{width:854.720052pt;}
.x0_c00252{left:0.000000pt;}
.x6_c00252{left:55.333333pt;}
.x9a_c00252{left:73.600000pt;}
.x86_c00252{left:76.800000pt;}
.x46_c00252{left:89.866667pt;}
.xe_c00252{left:90.800000pt;}
.x2e_c00252{left:91.866667pt;}
.x7d_c00252{left:93.066667pt;}
.x15_c00252{left:101.333333pt;}
.x53_c00252{left:104.933333pt;}
.x7_c00252{left:106.533333pt;}
.x60_c00252{left:111.066667pt;}
.x52_c00252{left:112.666667pt;}
.x8a_c00252{left:113.600000pt;}
.x67_c00252{left:114.800000pt;}
.x75_c00252{left:116.000000pt;}
.x94_c00252{left:117.733333pt;}
.x22_c00252{left:120.000000pt;}
.x71_c00252{left:122.266667pt;}
.x8c_c00252{left:123.466667pt;}
.x68_c00252{left:125.333333pt;}
.x9f_c00252{left:126.666667pt;}
.x54_c00252{left:129.200000pt;}
.x7a_c00252{left:130.266667pt;}
.x4e_c00252{left:132.400000pt;}
.x95_c00252{left:133.466667pt;}
.x2f_c00252{left:136.666667pt;}
.x83_c00252{left:140.133333pt;}
.x8_c00252{left:142.400000pt;}
.x3d_c00252{left:143.600000pt;}
.x47_c00252{left:144.933333pt;}
.xa3_c00252{left:146.666667pt;}
.x4b_c00252{left:147.600000pt;}
.x77_c00252{left:148.533333pt;}
.x7e_c00252{left:150.266667pt;}
.x1b_c00252{left:151.466667pt;}
.x38_c00252{left:156.933333pt;}
.x5c_c00252{left:158.000000pt;}
.x61_c00252{left:161.066667pt;}
.x81_c00252{left:163.733333pt;}
.x7f_c00252{left:164.666667pt;}
.xf_c00252{left:166.266667pt;}
.x72_c00252{left:168.000000pt;}
.x6e_c00252{left:169.333333pt;}
.x7b_c00252{left:170.533333pt;}
.x9_c00252{left:173.066667pt;}
.x16_c00252{left:174.266667pt;}
.x33_c00252{left:175.600000pt;}
.x3e_c00252{left:177.866667pt;}
.x1c_c00252{left:179.600000pt;}
.x5d_c00252{left:181.733333pt;}
.x23_c00252{left:183.066667pt;}
.x4f_c00252{left:184.933333pt;}
.x55_c00252{left:187.733333pt;}
.x42_c00252{left:189.066667pt;}
.x62_c00252{left:192.133333pt;}
.x10_c00252{left:193.200000pt;}
.x76_c00252{left:197.866667pt;}
.x1d_c00252{left:199.066667pt;}
.x4c_c00252{left:202.266667pt;}
.x8d_c00252{left:203.466667pt;}
.x39_c00252{left:204.666667pt;}
.x90_c00252{left:206.666667pt;}
.x34_c00252{left:208.533333pt;}
.x80_c00252{left:209.733333pt;}
.xa5_c00252{left:210.666667pt;}
.x11_c00252{left:211.733333pt;}
.x56_c00252{left:213.600000pt;}
.x5e_c00252{left:215.066667pt;}
.x58_c00252{left:217.066667pt;}
.x24_c00252{left:218.000000pt;}
.x6b_c00252{left:220.000000pt;}
.x9b_c00252{left:221.066667pt;}
.x73_c00252{left:222.133333pt;}
.x97_c00252{left:223.600000pt;}
.x17_c00252{left:224.533333pt;}
.x87_c00252{left:225.600000pt;}
.x8b_c00252{left:227.200000pt;}
.xa0_c00252{left:228.133333pt;}
.x65_c00252{left:229.066667pt;}
.x63_c00252{left:230.266667pt;}
.x25_c00252{left:231.466667pt;}
.x48_c00252{left:233.866667pt;}
.xa_c00252{left:235.733333pt;}
.x3a_c00252{left:238.000000pt;}
.x30_c00252{left:240.133333pt;}
.x5b_c00252{left:242.800000pt;}
.x3f_c00252{left:243.733333pt;}
.xb_c00252{left:246.000000pt;}
.x78_c00252{left:247.466667pt;}
.x35_c00252{left:248.533333pt;}
.x96_c00252{left:249.600000pt;}
.x2a_c00252{left:251.066667pt;}
.x9c_c00252{left:252.133333pt;}
.x92_c00252{left:254.800000pt;}
.x26_c00252{left:256.800000pt;}
.x31_c00252{left:258.666667pt;}
.x1e_c00252{left:260.133333pt;}
.x18_c00252{left:261.333333pt;}
.x40_c00252{left:263.600000pt;}
.x50_c00252{left:265.600000pt;}
.x98_c00252{left:266.533333pt;}
.x6f_c00252{left:268.133333pt;}
.x88_c00252{left:269.466667pt;}
.x12_c00252{left:272.533333pt;}
.x2b_c00252{left:274.133333pt;}
.xc_c00252{left:276.400000pt;}
.x5f_c00252{left:277.733333pt;}
.x69_c00252{left:279.466667pt;}
.x51_c00252{left:280.666667pt;}
.x70_c00252{left:281.866667pt;}
.x49_c00252{left:282.933333pt;}
.x32_c00252{left:284.266667pt;}
.x43_c00252{left:286.000000pt;}
.x1_c00252{left:287.066667pt;}
.x9d_c00252{left:290.266667pt;}
.x84_c00252{left:291.200000pt;}
.x27_c00252{left:292.266667pt;}
.xa1_c00252{left:294.800000pt;}
.x3b_c00252{left:296.266667pt;}
.x2c_c00252{left:299.466667pt;}
.x9e_c00252{left:300.533333pt;}
.x8e_c00252{left:301.733333pt;}
.xa4_c00252{left:304.400000pt;}
.x36_c00252{left:305.866667pt;}
.x19_c00252{left:308.666667pt;}
.x57_c00252{left:309.600000pt;}
.x59_c00252{left:310.800000pt;}
.x93_c00252{left:311.733333pt;}
.x28_c00252{left:312.800000pt;}
.x1f_c00252{left:313.866667pt;}
.xd_c00252{left:315.466667pt;}
.x13_c00252{left:317.066667pt;}
.x99_c00252{left:319.066667pt;}
.x8f_c00252{left:320.266667pt;}
.x6c_c00252{left:321.200000pt;}
.x37_c00252{left:322.133333pt;}
.x74_c00252{left:325.200000pt;}
.x1a_c00252{left:326.533333pt;}
.x82_c00252{left:328.266667pt;}
.x41_c00252{left:329.600000pt;}
.x20_c00252{left:330.800000pt;}
.x44_c00252{left:333.066667pt;}
.x4d_c00252{left:335.600000pt;}
.xa2_c00252{left:338.533333pt;}
.x14_c00252{left:339.733333pt;}
.x5a_c00252{left:341.866667pt;}
.xa6_c00252{left:343.333333pt;}
.x6d_c00252{left:344.533333pt;}
.x64_c00252{left:345.466667pt;}
.x91_c00252{left:346.666667pt;}
.x3c_c00252{left:348.400000pt;}
.x79_c00252{left:350.133333pt;}
.x6a_c00252{left:352.800000pt;}
.x66_c00252{left:353.866667pt;}
.x7c_c00252{left:354.800000pt;}
.x21_c00252{left:356.133333pt;}
.x2d_c00252{left:358.400000pt;}
.x89_c00252{left:359.333333pt;}
.x29_c00252{left:360.800000pt;}
.x4a_c00252{left:362.000000pt;}
.x85_c00252{left:362.933333pt;}
.x45_c00252{left:364.800000pt;}
.xaa_c00252{left:391.733333pt;}
.xd7_c00252{left:392.666667pt;}
.xa7_c00252{left:407.066667pt;}
.xaf_c00252{left:408.000000pt;}
.xf0_c00252{left:409.333333pt;}
.xe5_c00252{left:410.533333pt;}
.xc4_c00252{left:422.800000pt;}
.xb7_c00252{left:424.666667pt;}
.xf7_c00252{left:426.266667pt;}
.xdb_c00252{left:427.600000pt;}
.x13b_c00252{left:429.333333pt;}
.xeb_c00252{left:431.066667pt;}
.x106_c00252{left:432.533333pt;}
.xd8_c00252{left:434.266667pt;}
.xfc_c00252{left:436.266667pt;}
.xe6_c00252{left:437.466667pt;}
.xca_c00252{left:439.466667pt;}
.x101_c00252{left:441.600000pt;}
.x11c_c00252{left:443.866667pt;}
.xbe_c00252{left:444.800000pt;}
.xb0_c00252{left:446.666667pt;}
.xdf_c00252{left:447.866667pt;}
.xdc_c00252{left:449.066667pt;}
.xd5_c00252{left:452.133333pt;}
.x123_c00252{left:454.000000pt;}
.xa8_c00252{left:455.066667pt;}
.x136_c00252{left:457.066667pt;}
.x117_c00252{left:458.000000pt;}
.x119_c00252{left:460.533333pt;}
.x12c_c00252{left:461.466667pt;}
.xe7_c00252{left:462.800000pt;}
.xab_c00252{left:464.666667pt;}
.xf5_c00252{left:467.600000pt;}
.xdd_c00252{left:468.933333pt;}
.x12d_c00252{left:471.333333pt;}
.xf8_c00252{left:476.800000pt;}
.xd2_c00252{left:477.733333pt;}
.x124_c00252{left:478.933333pt;}
.xec_c00252{left:480.400000pt;}
.xf6_c00252{left:482.666667pt;}
.xac_c00252{left:483.600000pt;}
.xe0_c00252{left:486.266667pt;}
.xcb_c00252{left:487.200000pt;}
.x137_c00252{left:489.066667pt;}
.xb8_c00252{left:490.266667pt;}
.xbf_c00252{left:491.866667pt;}
.xfd_c00252{left:493.200000pt;}
.xb1_c00252{left:494.933333pt;}
.x128_c00252{left:497.600000pt;}
.x111_c00252{left:498.533333pt;}
.xcc_c00252{left:500.933333pt;}
.x130_c00252{left:502.133333pt;}
.xe8_c00252{left:503.733333pt;}
.xf9_c00252{left:505.333333pt;}
.x107_c00252{left:506.800000pt;}
.xb9_c00252{left:509.733333pt;}
.xfe_c00252{left:510.800000pt;}
.x138_c00252{left:514.000000pt;}
.xf1_c00252{left:516.533333pt;}
.xc0_c00252{left:517.466667pt;}
.x125_c00252{left:519.333333pt;}
.x102_c00252{left:521.200000pt;}
.x129_c00252{left:522.533333pt;}
.x109_c00252{left:523.866667pt;}
.xed_c00252{left:525.200000pt;}
.xfa_c00252{left:526.400000pt;}
.xd3_c00252{left:527.600000pt;}
.xff_c00252{left:528.666667pt;}
.x131_c00252{left:529.600000pt;}
.x10b_c00252{left:530.666667pt;}
.xe9_c00252{left:533.066667pt;}
.xc5_c00252{left:534.133333pt;}
.x103_c00252{left:535.866667pt;}
.x121_c00252{left:536.933333pt;}
.x10c_c00252{left:538.400000pt;}
.x12e_c00252{left:539.733333pt;}
.xe1_c00252{left:540.933333pt;}
.xd0_c00252{left:542.400000pt;}
.x13a_c00252{left:543.466667pt;}
.x108_c00252{left:545.200000pt;}
.x114_c00252{left:546.266667pt;}
.xd9_c00252{left:548.800000pt;}
.x11d_c00252{left:550.133333pt;}
.x11f_c00252{left:551.866667pt;}
.xc6_c00252{left:554.666667pt;}
.x112_c00252{left:555.866667pt;}
.xad_c00252{left:558.533333pt;}
.xb2_c00252{left:560.533333pt;}
.x115_c00252{left:561.600000pt;}
.x10f_c00252{left:565.733333pt;}
.xcd_c00252{left:566.800000pt;}
.xa9_c00252{left:568.666667pt;}
.xc1_c00252{left:570.000000pt;}
.xf2_c00252{left:571.600000pt;}
.xba_c00252{left:576.666667pt;}
.x13c_c00252{left:579.466667pt;}
.x11a_c00252{left:580.400000pt;}
.x120_c00252{left:581.600000pt;}
.xe2_c00252{left:585.733333pt;}
.x126_c00252{left:587.466667pt;}
.x132_c00252{left:589.466667pt;}
.xee_c00252{left:591.066667pt;}
.xd1_c00252{left:592.933333pt;}
.xc7_c00252{left:594.666667pt;}
.xce_c00252{left:596.933333pt;}
.x116_c00252{left:598.133333pt;}
.x13d_c00252{left:599.333333pt;}
.xb3_c00252{left:600.800000pt;}
.x135_c00252{left:602.000000pt;}
.x122_c00252{left:603.466667pt;}
.xea_c00252{left:604.800000pt;}
.xc8_c00252{left:607.733333pt;}
.xbb_c00252{left:609.333333pt;}
.x100_c00252{left:610.666667pt;}
.xe3_c00252{left:611.600000pt;}
.xcf_c00252{left:613.600000pt;}
.x12a_c00252{left:614.666667pt;}
.xfb_c00252{left:615.733333pt;}
.x10d_c00252{left:616.800000pt;}
.x104_c00252{left:617.733333pt;}
.xd4_c00252{left:620.133333pt;}
.x110_c00252{left:621.066667pt;}
.xae_c00252{left:622.800000pt;}
.xc2_c00252{left:625.066667pt;}
.xbc_c00252{left:626.000000pt;}
.x11b_c00252{left:628.133333pt;}
.xde_c00252{left:629.333333pt;}
.xb4_c00252{left:630.533333pt;}
.xf3_c00252{left:631.733333pt;}
.x105_c00252{left:633.066667pt;}
.xef_c00252{left:634.933333pt;}
.xc9_c00252{left:637.866667pt;}
.x134_c00252{left:639.066667pt;}
.xb5_c00252{left:641.066667pt;}
.x139_c00252{left:642.000000pt;}
.x11e_c00252{left:644.133333pt;}
.xd6_c00252{left:646.400000pt;}
.xf4_c00252{left:650.666667pt;}
.x12f_c00252{left:651.600000pt;}
.xb6_c00252{left:659.600000pt;}
.x133_c00252{left:661.733333pt;}
.x3_c00252{left:663.333333pt;}
.x2_c00252{left:665.600000pt;}
.x127_c00252{left:668.133333pt;}
.x10a_c00252{left:669.200000pt;}
.xc3_c00252{left:670.800000pt;}
.x113_c00252{left:672.666667pt;}
.x4_c00252{left:674.266667pt;}
.xe4_c00252{left:676.266667pt;}
.x12b_c00252{left:679.066667pt;}
.xbd_c00252{left:680.400000pt;}
.x118_c00252{left:681.733333pt;}
.x5_c00252{left:683.600000pt;}
.xda_c00252{left:690.000000pt;}
.x10e_c00252{left:691.333333pt;}
}





/* 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_c00253 {
    display:none;
  }
  .loading-indicator_c00253.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00253 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_c00253 { 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_c00253" -> "#page-container .classname_c00253")
 */
.pf_c00253 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00253 { /* 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_c00253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00253 { /* 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_c00253 { /* 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_c00253 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00253 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00253 {overflow:visible;}
  }
}
.c_c00253 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00253 { /* 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_c00253:after { /* webkit #35443 */
  content: '';
}
.t_c00253:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00253 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 */
}
.__c00253 { /* 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_c00253 { /* info for Javascript */
  display:none;
}
.l_c00253 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00253 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00253 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00253: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_c00253 {
    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_c00253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00253.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_c00253 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00253;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.000000;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;}
.m7a_c00253{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m97_c00253{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.me3_c00253{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.med_c00253{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m86_c00253{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00253{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00253{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m49_c00253{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m13_c00253{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m112_c00253{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00253{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m22_c00253{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00253{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00253{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m76_c00253{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00253{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00253{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m6_c00253{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m52_c00253{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00253{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m99_c00253{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m85_c00253{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00253{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00253{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00253{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00253{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mef_c00253{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md8_c00253{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m38_c00253{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m65_c00253{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m34_c00253{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00253{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m43_c00253{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00253{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m79_c00253{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m95_c00253{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m39_c00253{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m84_c00253{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mba_c00253{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00253{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00253{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m93_c00253{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m92_c00253{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00253{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m107_c00253{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m35_c00253{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00253{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m103_c00253{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me0_c00253{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m50_c00253{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m62_c00253{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m24_c00253{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00253{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m9_c00253{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m36_c00253{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00253{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00253{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00253{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00253{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m70_c00253{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m19_c00253{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mac_c00253{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m94_c00253{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mff_c00253{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m37_c00253{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00253{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00253{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m105_c00253{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00253{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00253{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m111_c00253{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00253{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m104_c00253{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00253{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00253{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00253{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00253{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00253{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m12_c00253{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00253{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m98_c00253{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m61_c00253{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00253{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00253{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me2_c00253{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m89_c00253{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m46_c00253{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.maa_c00253{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.md9_c00253{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00253{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00253{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00253{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00253{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m47_c00253{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m51_c00253{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mf_c00253{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00253{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00253{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00253{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m26_c00253{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00253{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m81_c00253{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m14_c00253{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mee_c00253{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00253{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mae_c00253{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m27_c00253{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m106_c00253{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00253{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.md_c00253{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00253{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m18_c00253{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m57_c00253{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mce_c00253{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00253{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mad_c00253{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00253{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m28_c00253{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00253{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mab_c00253{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m68_c00253{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00253{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mec_c00253{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m66_c00253{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00253{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00253{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m56_c00253{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m17_c00253{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m101_c00253{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00253{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m54_c00253{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m25_c00253{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00253{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m87_c00253{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00253{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00253{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md7_c00253{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m11_c00253{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m44_c00253{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00253{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00253{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m33_c00253{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m55_c00253{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m21_c00253{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m100_c00253{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m80_c00253{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md1_c00253{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me_c00253{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m102_c00253{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00253{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m108_c00253{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m77_c00253{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m48_c00253{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m60_c00253{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m78_c00253{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00253{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mde_c00253{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00253{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00253{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me9_c00253{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00253{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m16_c00253{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m88_c00253{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00253{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m53_c00253{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m83_c00253{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00253{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m96_c00253{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00253{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m82_c00253{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00253{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00253{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00253{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00253{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m58_c00253{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m69_c00253{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00253{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m59_c00253{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00253{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00253{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00253{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m71_c00253{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m40_c00253{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00253{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00253{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00253{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.me5_c00253{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m15_c00253{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m64_c00253{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.maf_c00253{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00253{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00253{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00253{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.md6_c00253{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m45_c00253{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md5_c00253{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m67_c00253{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00253{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me4_c00253{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00253{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00253{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.me1_c00253{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m109_c00253{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m42_c00253{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m10_c00253{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00253{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00253{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m110_c00253{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md4_c00253{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00253{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00253{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.md3_c00253{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00253{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00253{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00253{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc_c00253{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m41_c00253{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m32_c00253{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m29_c00253{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00253{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md0_c00253{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m31_c00253{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00253{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m72_c00253{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md2_c00253{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m113_c00253{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m20_c00253{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m90_c00253{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m91_c00253{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00253{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m75_c00253{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me7_c00253{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00253{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00253{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m30_c00253{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00253{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m23_c00253{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m63_c00253{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00253{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00253{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mb_c00253{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mca_c00253{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.meb_c00253{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me8_c00253{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00253{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00253{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m73_c00253{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00253{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00253{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mea_c00253{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00253{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00253{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00253{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00253{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me6_c00253{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00253{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00253{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00253{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mda_c00253{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00253{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00253{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m74_c00253{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00253{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00253{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00253{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00253{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00253{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(0.408500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408500,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls0_c00253{letter-spacing:0.000000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{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__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:-12.285714px;}
.ws2_c00253{word-spacing:-10.238095px;}
.ws1_c00253{word-spacing:-9.000000px;}
.ws3_c00253{word-spacing:-0.714286px;}
.ws5_c00253{word-spacing:0.000000px;}
.ws4_c00253{word-spacing:0.757576px;}
.fc0_c00253{color:transparent;}
.fs4_c00253{font-size:42.000000px;}
.fs5_c00253{font-size:54.000000px;}
.fs2_c00253{font-size:60.000000px;}
.fs3_c00253{font-size:66.000000px;}
.fs0_c00253{font-size:72.000000px;}
.fs6_c00253{font-size:84.000000px;}
.fs1_c00253{font-size:96.000000px;}
.y0_c00253{bottom:0.000000px;}
.y68_c00253{bottom:180.000000px;}
.y62_c00253{bottom:181.350000px;}
.y67_c00253{bottom:195.150000px;}
.y61_c00253{bottom:196.500000px;}
.y60_c00253{bottom:210.600000px;}
.y66_c00253{bottom:212.100000px;}
.y65_c00253{bottom:223.950000px;}
.y5f_c00253{bottom:225.000000px;}
.y64_c00253{bottom:239.400000px;}
.y5e_c00253{bottom:239.700000px;}
.y63_c00253{bottom:252.750000px;}
.y2d_c00253{bottom:284.400000px;}
.y5d_c00253{bottom:291.600000px;}
.y2c_c00253{bottom:306.300000px;}
.y5c_c00253{bottom:313.800000px;}
.y2b_c00253{bottom:324.300000px;}
.y5b_c00253{bottom:331.800000px;}
.y5a_c00253{bottom:349.500000px;}
.y2a_c00253{bottom:354.900000px;}
.y59_c00253{bottom:367.500000px;}
.y29_c00253{bottom:373.350000px;}
.y58_c00253{bottom:385.500000px;}
.y57_c00253{bottom:403.200000px;}
.y28_c00253{bottom:408.000000px;}
.y56_c00253{bottom:421.200000px;}
.y27_c00253{bottom:426.300000px;}
.y55_c00253{bottom:438.900000px;}
.y26_c00253{bottom:444.300000px;}
.y54_c00253{bottom:461.250000px;}
.y25_c00253{bottom:463.050000px;}
.y53_c00253{bottom:479.250000px;}
.y24_c00253{bottom:480.300000px;}
.y23_c00253{bottom:498.300000px;}
.y52_c00253{bottom:501.150000px;}
.y51_c00253{bottom:509.400000px;}
.y50_c00253{bottom:511.500000px;}
.y4f_c00253{bottom:518.850000px;}
.y22_c00253{bottom:529.200000px;}
.y4e_c00253{bottom:537.150000px;}
.y21_c00253{bottom:547.200000px;}
.y4d_c00253{bottom:554.850000px;}
.y20_c00253{bottom:565.200000px;}
.y4c_c00253{bottom:572.850000px;}
.y1f_c00253{bottom:582.900000px;}
.y4b_c00253{bottom:590.550000px;}
.y1e_c00253{bottom:605.550000px;}
.y4a_c00253{bottom:608.550000px;}
.y1d_c00253{bottom:623.250000px;}
.y49_c00253{bottom:626.550000px;}
.y1c_c00253{bottom:640.950000px;}
.y48_c00253{bottom:644.250000px;}
.y1b_c00253{bottom:658.950000px;}
.y47_c00253{bottom:662.250000px;}
.y1a_c00253{bottom:677.250000px;}
.y46_c00253{bottom:680.250000px;}
.y19_c00253{bottom:694.500000px;}
.y45_c00253{bottom:698.250000px;}
.y18_c00253{bottom:712.800000px;}
.y44_c00253{bottom:715.950000px;}
.y17_c00253{bottom:730.500000px;}
.y43_c00253{bottom:733.950000px;}
.y16_c00253{bottom:748.500000px;}
.y42_c00253{bottom:751.650000px;}
.y41_c00253{bottom:769.950000px;}
.y15_c00253{bottom:770.850000px;}
.y40_c00253{bottom:787.200000px;}
.y14_c00253{bottom:788.550000px;}
.y3f_c00253{bottom:805.200000px;}
.y13_c00253{bottom:806.250000px;}
.y3e_c00253{bottom:822.900000px;}
.y12_c00253{bottom:824.250000px;}
.y3d_c00253{bottom:840.900000px;}
.y11_c00253{bottom:842.250000px;}
.y3c_c00253{bottom:858.600000px;}
.y10_c00253{bottom:859.950000px;}
.y3b_c00253{bottom:876.900000px;}
.yf_c00253{bottom:877.950000px;}
.ye_c00253{bottom:895.950000px;}
.y3a_c00253{bottom:897.150000px;}
.y39_c00253{bottom:911.850000px;}
.yd_c00253{bottom:913.650000px;}
.yc_c00253{bottom:931.350000px;}
.y38_c00253{bottom:931.800000px;}
.y37_c00253{bottom:949.500000px;}
.yb_c00253{bottom:953.550000px;}
.y36_c00253{bottom:967.500000px;}
.ya_c00253{bottom:971.250000px;}
.y35_c00253{bottom:985.200000px;}
.y9_c00253{bottom:989.250000px;}
.y34_c00253{bottom:1003.200000px;}
.y8_c00253{bottom:1010.850000px;}
.y33_c00253{bottom:1020.900000px;}
.y7_c00253{bottom:1032.150000px;}
.y32_c00253{bottom:1038.900000px;}
.y6_c00253{bottom:1050.150000px;}
.y31_c00253{bottom:1060.500000px;}
.y5_c00253{bottom:1072.800000px;}
.y30_c00253{bottom:1078.950000px;}
.y4_c00253{bottom:1094.100000px;}
.y2f_c00253{bottom:1096.200000px;}
.y3_c00253{bottom:1112.400000px;}
.y2e_c00253{bottom:1114.200000px;}
.y1_c00253{bottom:1138.350000px;}
.y2_c00253{bottom:1140.150000px;}
.h6_c00253{height:42.000000px;}
.h7_c00253{height:54.000000px;}
.h4_c00253{height:60.000000px;}
.h5_c00253{height:66.000000px;}
.h2_c00253{height:72.000000px;}
.h8_c00253{height:84.000000px;}
.h3_c00253{height:96.000000px;}
.h1_c00253{height:1261.500000px;}
.h0_c00253{height:1261.800018px;}
.w1_c00253{width:961.500000px;}
.w0_c00253{width:961.560058px;}
.x0_c00253{left:0.000000px;}
.x75_c00253{left:181.050000px;}
.x133_c00253{left:182.550000px;}
.x1_c00253{left:185.400000px;}
.x92_c00253{left:186.900000px;}
.x65_c00253{left:202.350000px;}
.x23_c00253{left:203.400000px;}
.xb_c00253{left:204.750000px;}
.x7f_c00253{left:212.100000px;}
.x137_c00253{left:220.050000px;}
.x1c_c00253{left:222.150000px;}
.xe_c00253{left:223.200000px;}
.x3_c00253{left:225.300000px;}
.x42_c00253{left:229.050000px;}
.x8b_c00253{left:230.400000px;}
.x7c_c00253{left:232.200000px;}
.x2e_c00253{left:233.400000px;}
.x3d_c00253{left:235.200000px;}
.x85_c00253{left:236.250000px;}
.x24_c00253{left:237.300000px;}
.x5c_c00253{left:240.900000px;}
.x79_c00253{left:241.950000px;}
.x53_c00253{left:243.150000px;}
.x3e_c00253{left:244.500000px;}
.x34_c00253{left:245.550000px;}
.x89_c00253{left:246.600000px;}
.x29_c00253{left:248.100000px;}
.x82_c00253{left:249.300000px;}
.x73_c00253{left:251.250000px;}
.x76_c00253{left:253.050000px;}
.x3a_c00253{left:254.550000px;}
.x130_c00253{left:255.600000px;}
.xc_c00253{left:256.950000px;}
.x14_c00253{left:259.500000px;}
.x6a_c00253{left:261.450000px;}
.x4c_c00253{left:262.950000px;}
.x59_c00253{left:264.450000px;}
.x3f_c00253{left:265.800000px;}
.x4_c00253{left:269.250000px;}
.x3b_c00253{left:271.800000px;}
.x134_c00253{left:273.000000px;}
.x8c_c00253{left:275.400000px;}
.x94_c00253{left:276.450000px;}
.xd_c00253{left:278.250000px;}
.x15_c00253{left:281.100000px;}
.x35_c00253{left:282.300000px;}
.x1f_c00253{left:283.650000px;}
.x43_c00253{left:284.850000px;}
.x66_c00253{left:285.900000px;}
.x8f_c00253{left:287.250000px;}
.xf_c00253{left:289.500000px;}
.x4d_c00253{left:292.500000px;}
.x74_c00253{left:294.150000px;}
.x56_c00253{left:296.550000px;}
.x6f_c00253{left:297.900000px;}
.x8a_c00253{left:300.900000px;}
.x8d_c00253{left:302.400000px;}
.x1d_c00253{left:303.450000px;}
.x86_c00253{left:305.700000px;}
.x77_c00253{left:307.350000px;}
.x10_c00253{left:308.550000px;}
.x47_c00253{left:312.750000px;}
.x5_c00253{left:314.550000px;}
.x70_c00253{left:316.200000px;}
.x2a_c00253{left:318.000000px;}
.x5d_c00253{left:319.800000px;}
.x54_c00253{left:321.000000px;}
.x90_c00253{left:324.750000px;}
.x44_c00253{left:327.300000px;}
.x20_c00253{left:329.700000px;}
.x6_c00253{left:331.800000px;}
.x16_c00253{left:334.050000px;}
.x93_c00253{left:337.200000px;}
.x21_c00253{left:338.400000px;}
.x25_c00253{left:340.650000px;}
.x40_c00253{left:342.150000px;}
.x3c_c00253{left:344.550000px;}
.x2f_c00253{left:347.250000px;}
.x67_c00253{left:348.900000px;}
.x4e_c00253{left:351.150000px;}
.x48_c00253{left:353.550000px;}
.x80_c00253{left:355.800000px;}
.x5e_c00253{left:358.350000px;}
.x41_c00253{left:359.400000px;}
.x81_c00253{left:363.300000px;}
.x11_c00253{left:364.650000px;}
.x4f_c00253{left:369.450000px;}
.x30_c00253{left:370.950000px;}
.x7_c00253{left:374.250000px;}
.x78_c00253{left:375.300000px;}
.x91_c00253{left:377.400000px;}
.x5f_c00253{left:378.900000px;}
.x17_c00253{left:380.100000px;}
.x26_c00253{left:382.050000px;}
.x138_c00253{left:383.250000px;}
.x8_c00253{left:385.350000px;}
.x71_c00253{left:387.000000px;}
.x36_c00253{left:390.300000px;}
.x1e_c00253{left:391.650000px;}
.x7d_c00253{left:392.850000px;}
.x62_c00253{left:394.200000px;}
.x49_c00253{left:395.250000px;}
.x83_c00253{left:398.550000px;}
.x135_c00253{left:400.350000px;}
.x57_c00253{left:401.850000px;}
.x2b_c00253{left:402.900000px;}
.x95_c00253{left:404.550000px;}
.x5a_c00253{left:405.900000px;}
.x31_c00253{left:407.700000px;}
.x6b_c00253{left:409.050000px;}
.x63_c00253{left:411.900000px;}
.x27_c00253{left:412.950000px;}
.x84_c00253{left:414.450000px;}
.x131_c00253{left:417.300000px;}
.x18_c00253{left:421.200000px;}
.x60_c00253{left:424.200000px;}
.x2c_c00253{left:425.250000px;}
.x37_c00253{left:426.600000px;}
.x12_c00253{left:428.700000px;}
.x2_c00253{left:430.200000px;}
.x7a_c00253{left:431.250000px;}
.x45_c00253{left:432.900000px;}
.x6c_c00253{left:434.250000px;}
.x13_c00253{left:436.650000px;}
.x19_c00253{left:437.700000px;}
.x55_c00253{left:438.750000px;}
.x72_c00253{left:440.700000px;}
.x68_c00253{left:441.750000px;}
.x38_c00253{left:444.900000px;}
.x61_c00253{left:446.550000px;}
.x58_c00253{left:455.550000px;}
.x7e_c00253{left:457.650000px;}
.x32_c00253{left:458.850000px;}
.x6d_c00253{left:462.750000px;}
.x96_c00253{left:464.400000px;}
.x50_c00253{left:465.600000px;}
.x46_c00253{left:467.100000px;}
.x69_c00253{left:468.450000px;}
.x9_c00253{left:470.700000px;}
.x4a_c00253{left:473.250000px;}
.x87_c00253{left:474.450000px;}
.x39_c00253{left:477.000000px;}
.x2d_c00253{left:478.200000px;}
.x4b_c00253{left:480.750000px;}
.x28_c00253{left:482.100000px;}
.x1a_c00253{left:487.350000px;}
.x5b_c00253{left:489.000000px;}
.xa_c00253{left:492.000000px;}
.x64_c00253{left:493.950000px;}
.x22_c00253{left:495.000000px;}
.x136_c00253{left:496.050000px;}
.x6e_c00253{left:499.500000px;}
.x132_c00253{left:501.900000px;}
.x88_c00253{left:503.550000px;}
.x51_c00253{left:504.900000px;}
.x33_c00253{left:506.100000px;}
.x8e_c00253{left:508.350000px;}
.x1b_c00253{left:511.800000px;}
.x52_c00253{left:516.000000px;}
.x7b_c00253{left:518.700000px;}
.xcf_c00253{left:541.500000px;}
.xad_c00253{left:542.850000px;}
.x115_c00253{left:552.300000px;}
.xd6_c00253{left:555.450000px;}
.x13d_c00253{left:557.400000px;}
.xc7_c00253{left:559.350000px;}
.x97_c00253{left:560.550000px;}
.x13f_c00253{left:564.750000px;}
.x13c_c00253{left:572.700000px;}
.xcb_c00253{left:575.550000px;}
.x113_c00253{left:577.500000px;}
.xa6_c00253{left:578.700000px;}
.x118_c00253{left:580.350000px;}
.x10f_c00253{left:583.050000px;}
.xae_c00253{left:585.000000px;}
.x12a_c00253{left:586.050000px;}
.x114_c00253{left:588.000000px;}
.xeb_c00253{left:592.800000px;}
.xfc_c00253{left:594.450000px;}
.x124_c00253{left:596.550000px;}
.xde_c00253{left:597.600000px;}
.x111_c00253{left:599.550000px;}
.xf7_c00253{left:601.050000px;}
.xd0_c00253{left:602.700000px;}
.x98_c00253{left:604.500000px;}
.xe4_c00253{left:606.150000px;}
.xf4_c00253{left:609.600000px;}
.x119_c00253{left:611.250000px;}
.x105_c00253{left:612.450000px;}
.xcc_c00253{left:614.400000px;}
.x107_c00253{left:615.450000px;}
.x9f_c00253{left:616.950000px;}
.xe1_c00253{left:619.500000px;}
.xbc_c00253{left:621.000000px;}
.x120_c00253{left:622.350000px;}
.xc8_c00253{left:623.850000px;}
.xa7_c00253{left:625.200000px;}
.xb5_c00253{left:626.250000px;}
.xf5_c00253{left:627.600000px;}
.xdb_c00253{left:630.000000px;}
.xf8_c00253{left:633.150000px;}
.xc2_c00253{left:637.800000px;}
.x127_c00253{left:639.150000px;}
.xd7_c00253{left:640.500000px;}
.x116_c00253{left:642.000000px;}
.xd1_c00253{left:644.100000px;}
.x12b_c00253{left:645.450000px;}
.xfd_c00253{left:647.400000px;}
.xa8_c00253{left:648.600000px;}
.x12e_c00253{left:650.550000px;}
.xf9_c00253{left:652.200000px;}
.xaf_c00253{left:653.400000px;}
.x13e_c00253{left:657.150000px;}
.xd2_c00253{left:658.500000px;}
.xcd_c00253{left:660.150000px;}
.xe5_c00253{left:664.050000px;}
.xb6_c00253{left:665.850000px;}
.x10d_c00253{left:666.900000px;}
.x99_c00253{left:668.100000px;}
.xf1_c00253{left:673.350000px;}
.x139_c00253{left:675.150000px;}
.xdc_c00253{left:676.800000px;}
.x128_c00253{left:678.450000px;}
.xec_c00253{left:679.500000px;}
.x112_c00253{left:680.550000px;}
.xb7_c00253{left:682.350000px;}
.xfe_c00253{left:683.700000px;}
.xb0_c00253{left:685.050000px;}
.xd8_c00253{left:687.000000px;}
.x108_c00253{left:689.550000px;}
.xbd_c00253{left:691.500000px;}
.xa0_c00253{left:693.600000px;}
.x11b_c00253{left:696.150000px;}
.xd9_c00253{left:699.900000px;}
.x11a_c00253{left:701.250000px;}
.xbe_c00253{left:703.050000px;}
.x12c_c00253{left:705.300000px;}
.xb1_c00253{left:706.350000px;}
.x125_c00253{left:708.150000px;}
.xea_c00253{left:709.800000px;}
.xc6_c00253{left:712.650000px;}
.x11e_c00253{left:714.750000px;}
.x101_c00253{left:716.400000px;}
.x11c_c00253{left:719.550000px;}
.xe6_c00253{left:721.650000px;}
.xed_c00253{left:723.000000px;}
.xd3_c00253{left:725.100000px;}
.x102_c00253{left:727.500000px;}
.xce_c00253{left:729.150000px;}
.x106_c00253{left:732.000000px;}
.xfa_c00253{left:733.200000px;}
.xbf_c00253{left:735.750000px;}
.x109_c00253{left:737.400000px;}
.xf6_c00253{left:739.650000px;}
.xb2_c00253{left:743.100000px;}
.xf2_c00253{left:744.300000px;}
.x9a_c00253{left:745.800000px;}
.xe7_c00253{left:748.950000px;}
.xda_c00253{left:750.600000px;}
.xb8_c00253{left:752.550000px;}
.x117_c00253{left:754.650000px;}
.xc0_c00253{left:756.600000px;}
.x9b_c00253{left:758.400000px;}
.xa1_c00253{left:761.250000px;}
.xa9_c00253{left:763.050000px;}
.xc3_c00253{left:765.600000px;}
.xc9_c00253{left:767.100000px;}
.xb9_c00253{left:770.550000px;}
.x13a_c00253{left:771.600000px;}
.xff_c00253{left:775.500000px;}
.xf3_c00253{left:778.200000px;}
.x10c_c00253{left:781.350000px;}
.x9c_c00253{left:783.300000px;}
.xd4_c00253{left:785.850000px;}
.xba_c00253{left:787.500000px;}
.xaa_c00253{left:789.000000px;}
.xc1_c00253{left:792.300000px;}
.x121_c00253{left:793.350000px;}
.x126_c00253{left:795.000000px;}
.x103_c00253{left:796.650000px;}
.xa2_c00253{left:799.050000px;}
.xe8_c00253{left:800.850000px;}
.xdf_c00253{left:803.100000px;}
.x9d_c00253{left:804.150000px;}
.x10e_c00253{left:805.200000px;}
.x11d_c00253{left:807.300000px;}
.xa3_c00253{left:808.350000px;}
.x100_c00253{left:810.750000px;}
.x12d_c00253{left:811.800000px;}
.xe2_c00253{left:815.250000px;}
.x10a_c00253{left:817.350000px;}
.x110_c00253{left:820.200000px;}
.x9e_c00253{left:822.150000px;}
.xb3_c00253{left:823.650000px;}
.xee_c00253{left:825.300000px;}
.xa4_c00253{left:826.350000px;}
.xe9_c00253{left:828.600000px;}
.xc4_c00253{left:830.400000px;}
.x129_c00253{left:831.450000px;}
.xef_c00253{left:834.600000px;}
.x11f_c00253{left:838.200000px;}
.xdd_c00253{left:839.550000px;}
.xe3_c00253{left:841.200000px;}
.xbb_c00253{left:843.000000px;}
.x104_c00253{left:845.250000px;}
.xc5_c00253{left:846.600000px;}
.xab_c00253{left:849.150000px;}
.xb4_c00253{left:850.950000px;}
.xfb_c00253{left:852.300000px;}
.x13b_c00253{left:854.700000px;}
.x10b_c00253{left:857.700000px;}
.xa5_c00253{left:860.250000px;}
.xca_c00253{left:861.750000px;}
.x122_c00253{left:864.600000px;}
.x12f_c00253{left:865.650000px;}
.xd5_c00253{left:867.150000px;}
.xac_c00253{left:869.700000px;}
.xf0_c00253{left:874.500000px;}
.xe0_c00253{left:876.900000px;}
.x123_c00253{left:890.850000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws0_c00253{word-spacing:-10.920635pt;}
.ws2_c00253{word-spacing:-9.100529pt;}
.ws1_c00253{word-spacing:-8.000000pt;}
.ws3_c00253{word-spacing:-0.634921pt;}
.ws5_c00253{word-spacing:0.000000pt;}
.ws4_c00253{word-spacing:0.673401pt;}
.fs4_c00253{font-size:37.333333pt;}
.fs5_c00253{font-size:48.000000pt;}
.fs2_c00253{font-size:53.333333pt;}
.fs3_c00253{font-size:58.666667pt;}
.fs0_c00253{font-size:64.000000pt;}
.fs6_c00253{font-size:74.666667pt;}
.fs1_c00253{font-size:85.333333pt;}
.y0_c00253{bottom:0.000000pt;}
.y68_c00253{bottom:160.000000pt;}
.y62_c00253{bottom:161.200000pt;}
.y67_c00253{bottom:173.466667pt;}
.y61_c00253{bottom:174.666667pt;}
.y60_c00253{bottom:187.200000pt;}
.y66_c00253{bottom:188.533333pt;}
.y65_c00253{bottom:199.066667pt;}
.y5f_c00253{bottom:200.000000pt;}
.y64_c00253{bottom:212.800000pt;}
.y5e_c00253{bottom:213.066667pt;}
.y63_c00253{bottom:224.666667pt;}
.y2d_c00253{bottom:252.800000pt;}
.y5d_c00253{bottom:259.200000pt;}
.y2c_c00253{bottom:272.266667pt;}
.y5c_c00253{bottom:278.933333pt;}
.y2b_c00253{bottom:288.266667pt;}
.y5b_c00253{bottom:294.933333pt;}
.y5a_c00253{bottom:310.666667pt;}
.y2a_c00253{bottom:315.466667pt;}
.y59_c00253{bottom:326.666667pt;}
.y29_c00253{bottom:331.866667pt;}
.y58_c00253{bottom:342.666667pt;}
.y57_c00253{bottom:358.400000pt;}
.y28_c00253{bottom:362.666667pt;}
.y56_c00253{bottom:374.400000pt;}
.y27_c00253{bottom:378.933333pt;}
.y55_c00253{bottom:390.133333pt;}
.y26_c00253{bottom:394.933333pt;}
.y54_c00253{bottom:410.000000pt;}
.y25_c00253{bottom:411.600000pt;}
.y53_c00253{bottom:426.000000pt;}
.y24_c00253{bottom:426.933333pt;}
.y23_c00253{bottom:442.933333pt;}
.y52_c00253{bottom:445.466667pt;}
.y51_c00253{bottom:452.800000pt;}
.y50_c00253{bottom:454.666667pt;}
.y4f_c00253{bottom:461.200000pt;}
.y22_c00253{bottom:470.400000pt;}
.y4e_c00253{bottom:477.466667pt;}
.y21_c00253{bottom:486.400000pt;}
.y4d_c00253{bottom:493.200000pt;}
.y20_c00253{bottom:502.400000pt;}
.y4c_c00253{bottom:509.200000pt;}
.y1f_c00253{bottom:518.133333pt;}
.y4b_c00253{bottom:524.933333pt;}
.y1e_c00253{bottom:538.266667pt;}
.y4a_c00253{bottom:540.933333pt;}
.y1d_c00253{bottom:554.000000pt;}
.y49_c00253{bottom:556.933333pt;}
.y1c_c00253{bottom:569.733333pt;}
.y48_c00253{bottom:572.666667pt;}
.y1b_c00253{bottom:585.733333pt;}
.y47_c00253{bottom:588.666667pt;}
.y1a_c00253{bottom:602.000000pt;}
.y46_c00253{bottom:604.666667pt;}
.y19_c00253{bottom:617.333333pt;}
.y45_c00253{bottom:620.666667pt;}
.y18_c00253{bottom:633.600000pt;}
.y44_c00253{bottom:636.400000pt;}
.y17_c00253{bottom:649.333333pt;}
.y43_c00253{bottom:652.400000pt;}
.y16_c00253{bottom:665.333333pt;}
.y42_c00253{bottom:668.133333pt;}
.y41_c00253{bottom:684.400000pt;}
.y15_c00253{bottom:685.200000pt;}
.y40_c00253{bottom:699.733333pt;}
.y14_c00253{bottom:700.933333pt;}
.y3f_c00253{bottom:715.733333pt;}
.y13_c00253{bottom:716.666667pt;}
.y3e_c00253{bottom:731.466667pt;}
.y12_c00253{bottom:732.666667pt;}
.y3d_c00253{bottom:747.466667pt;}
.y11_c00253{bottom:748.666667pt;}
.y3c_c00253{bottom:763.200000pt;}
.y10_c00253{bottom:764.400000pt;}
.y3b_c00253{bottom:779.466667pt;}
.yf_c00253{bottom:780.400000pt;}
.ye_c00253{bottom:796.400000pt;}
.y3a_c00253{bottom:797.466667pt;}
.y39_c00253{bottom:810.533333pt;}
.yd_c00253{bottom:812.133333pt;}
.yc_c00253{bottom:827.866667pt;}
.y38_c00253{bottom:828.266667pt;}
.y37_c00253{bottom:844.000000pt;}
.yb_c00253{bottom:847.600000pt;}
.y36_c00253{bottom:860.000000pt;}
.ya_c00253{bottom:863.333333pt;}
.y35_c00253{bottom:875.733333pt;}
.y9_c00253{bottom:879.333333pt;}
.y34_c00253{bottom:891.733333pt;}
.y8_c00253{bottom:898.533333pt;}
.y33_c00253{bottom:907.466667pt;}
.y7_c00253{bottom:917.466667pt;}
.y32_c00253{bottom:923.466667pt;}
.y6_c00253{bottom:933.466667pt;}
.y31_c00253{bottom:942.666667pt;}
.y5_c00253{bottom:953.600000pt;}
.y30_c00253{bottom:959.066667pt;}
.y4_c00253{bottom:972.533333pt;}
.y2f_c00253{bottom:974.400000pt;}
.y3_c00253{bottom:988.800000pt;}
.y2e_c00253{bottom:990.400000pt;}
.y1_c00253{bottom:1011.866667pt;}
.y2_c00253{bottom:1013.466667pt;}
.h6_c00253{height:37.333333pt;}
.h7_c00253{height:48.000000pt;}
.h4_c00253{height:53.333333pt;}
.h5_c00253{height:58.666667pt;}
.h2_c00253{height:64.000000pt;}
.h8_c00253{height:74.666667pt;}
.h3_c00253{height:85.333333pt;}
.h1_c00253{height:1121.333333pt;}
.h0_c00253{height:1121.600016pt;}
.w1_c00253{width:854.666667pt;}
.w0_c00253{width:854.720052pt;}
.x0_c00253{left:0.000000pt;}
.x75_c00253{left:160.933333pt;}
.x133_c00253{left:162.266667pt;}
.x1_c00253{left:164.800000pt;}
.x92_c00253{left:166.133333pt;}
.x65_c00253{left:179.866667pt;}
.x23_c00253{left:180.800000pt;}
.xb_c00253{left:182.000000pt;}
.x7f_c00253{left:188.533333pt;}
.x137_c00253{left:195.600000pt;}
.x1c_c00253{left:197.466667pt;}
.xe_c00253{left:198.400000pt;}
.x3_c00253{left:200.266667pt;}
.x42_c00253{left:203.600000pt;}
.x8b_c00253{left:204.800000pt;}
.x7c_c00253{left:206.400000pt;}
.x2e_c00253{left:207.466667pt;}
.x3d_c00253{left:209.066667pt;}
.x85_c00253{left:210.000000pt;}
.x24_c00253{left:210.933333pt;}
.x5c_c00253{left:214.133333pt;}
.x79_c00253{left:215.066667pt;}
.x53_c00253{left:216.133333pt;}
.x3e_c00253{left:217.333333pt;}
.x34_c00253{left:218.266667pt;}
.x89_c00253{left:219.200000pt;}
.x29_c00253{left:220.533333pt;}
.x82_c00253{left:221.600000pt;}
.x73_c00253{left:223.333333pt;}
.x76_c00253{left:224.933333pt;}
.x3a_c00253{left:226.266667pt;}
.x130_c00253{left:227.200000pt;}
.xc_c00253{left:228.400000pt;}
.x14_c00253{left:230.666667pt;}
.x6a_c00253{left:232.400000pt;}
.x4c_c00253{left:233.733333pt;}
.x59_c00253{left:235.066667pt;}
.x3f_c00253{left:236.266667pt;}
.x4_c00253{left:239.333333pt;}
.x3b_c00253{left:241.600000pt;}
.x134_c00253{left:242.666667pt;}
.x8c_c00253{left:244.800000pt;}
.x94_c00253{left:245.733333pt;}
.xd_c00253{left:247.333333pt;}
.x15_c00253{left:249.866667pt;}
.x35_c00253{left:250.933333pt;}
.x1f_c00253{left:252.133333pt;}
.x43_c00253{left:253.200000pt;}
.x66_c00253{left:254.133333pt;}
.x8f_c00253{left:255.333333pt;}
.xf_c00253{left:257.333333pt;}
.x4d_c00253{left:260.000000pt;}
.x74_c00253{left:261.466667pt;}
.x56_c00253{left:263.600000pt;}
.x6f_c00253{left:264.800000pt;}
.x8a_c00253{left:267.466667pt;}
.x8d_c00253{left:268.800000pt;}
.x1d_c00253{left:269.733333pt;}
.x86_c00253{left:271.733333pt;}
.x77_c00253{left:273.200000pt;}
.x10_c00253{left:274.266667pt;}
.x47_c00253{left:278.000000pt;}
.x5_c00253{left:279.600000pt;}
.x70_c00253{left:281.066667pt;}
.x2a_c00253{left:282.666667pt;}
.x5d_c00253{left:284.266667pt;}
.x54_c00253{left:285.333333pt;}
.x90_c00253{left:288.666667pt;}
.x44_c00253{left:290.933333pt;}
.x20_c00253{left:293.066667pt;}
.x6_c00253{left:294.933333pt;}
.x16_c00253{left:296.933333pt;}
.x93_c00253{left:299.733333pt;}
.x21_c00253{left:300.800000pt;}
.x25_c00253{left:302.800000pt;}
.x40_c00253{left:304.133333pt;}
.x3c_c00253{left:306.266667pt;}
.x2f_c00253{left:308.666667pt;}
.x67_c00253{left:310.133333pt;}
.x4e_c00253{left:312.133333pt;}
.x48_c00253{left:314.266667pt;}
.x80_c00253{left:316.266667pt;}
.x5e_c00253{left:318.533333pt;}
.x41_c00253{left:319.466667pt;}
.x81_c00253{left:322.933333pt;}
.x11_c00253{left:324.133333pt;}
.x4f_c00253{left:328.400000pt;}
.x30_c00253{left:329.733333pt;}
.x7_c00253{left:332.666667pt;}
.x78_c00253{left:333.600000pt;}
.x91_c00253{left:335.466667pt;}
.x5f_c00253{left:336.800000pt;}
.x17_c00253{left:337.866667pt;}
.x26_c00253{left:339.600000pt;}
.x138_c00253{left:340.666667pt;}
.x8_c00253{left:342.533333pt;}
.x71_c00253{left:344.000000pt;}
.x36_c00253{left:346.933333pt;}
.x1e_c00253{left:348.133333pt;}
.x7d_c00253{left:349.200000pt;}
.x62_c00253{left:350.400000pt;}
.x49_c00253{left:351.333333pt;}
.x83_c00253{left:354.266667pt;}
.x135_c00253{left:355.866667pt;}
.x57_c00253{left:357.200000pt;}
.x2b_c00253{left:358.133333pt;}
.x95_c00253{left:359.600000pt;}
.x5a_c00253{left:360.800000pt;}
.x31_c00253{left:362.400000pt;}
.x6b_c00253{left:363.600000pt;}
.x63_c00253{left:366.133333pt;}
.x27_c00253{left:367.066667pt;}
.x84_c00253{left:368.400000pt;}
.x131_c00253{left:370.933333pt;}
.x18_c00253{left:374.400000pt;}
.x60_c00253{left:377.066667pt;}
.x2c_c00253{left:378.000000pt;}
.x37_c00253{left:379.200000pt;}
.x12_c00253{left:381.066667pt;}
.x2_c00253{left:382.400000pt;}
.x7a_c00253{left:383.333333pt;}
.x45_c00253{left:384.800000pt;}
.x6c_c00253{left:386.000000pt;}
.x13_c00253{left:388.133333pt;}
.x19_c00253{left:389.066667pt;}
.x55_c00253{left:390.000000pt;}
.x72_c00253{left:391.733333pt;}
.x68_c00253{left:392.666667pt;}
.x38_c00253{left:395.466667pt;}
.x61_c00253{left:396.933333pt;}
.x58_c00253{left:404.933333pt;}
.x7e_c00253{left:406.800000pt;}
.x32_c00253{left:407.866667pt;}
.x6d_c00253{left:411.333333pt;}
.x96_c00253{left:412.800000pt;}
.x50_c00253{left:413.866667pt;}
.x46_c00253{left:415.200000pt;}
.x69_c00253{left:416.400000pt;}
.x9_c00253{left:418.400000pt;}
.x4a_c00253{left:420.666667pt;}
.x87_c00253{left:421.733333pt;}
.x39_c00253{left:424.000000pt;}
.x2d_c00253{left:425.066667pt;}
.x4b_c00253{left:427.333333pt;}
.x28_c00253{left:428.533333pt;}
.x1a_c00253{left:433.200000pt;}
.x5b_c00253{left:434.666667pt;}
.xa_c00253{left:437.333333pt;}
.x64_c00253{left:439.066667pt;}
.x22_c00253{left:440.000000pt;}
.x136_c00253{left:440.933333pt;}
.x6e_c00253{left:444.000000pt;}
.x132_c00253{left:446.133333pt;}
.x88_c00253{left:447.600000pt;}
.x51_c00253{left:448.800000pt;}
.x33_c00253{left:449.866667pt;}
.x8e_c00253{left:451.866667pt;}
.x1b_c00253{left:454.933333pt;}
.x52_c00253{left:458.666667pt;}
.x7b_c00253{left:461.066667pt;}
.xcf_c00253{left:481.333333pt;}
.xad_c00253{left:482.533333pt;}
.x115_c00253{left:490.933333pt;}
.xd6_c00253{left:493.733333pt;}
.x13d_c00253{left:495.466667pt;}
.xc7_c00253{left:497.200000pt;}
.x97_c00253{left:498.266667pt;}
.x13f_c00253{left:502.000000pt;}
.x13c_c00253{left:509.066667pt;}
.xcb_c00253{left:511.600000pt;}
.x113_c00253{left:513.333333pt;}
.xa6_c00253{left:514.400000pt;}
.x118_c00253{left:515.866667pt;}
.x10f_c00253{left:518.266667pt;}
.xae_c00253{left:520.000000pt;}
.x12a_c00253{left:520.933333pt;}
.x114_c00253{left:522.666667pt;}
.xeb_c00253{left:526.933333pt;}
.xfc_c00253{left:528.400000pt;}
.x124_c00253{left:530.266667pt;}
.xde_c00253{left:531.200000pt;}
.x111_c00253{left:532.933333pt;}
.xf7_c00253{left:534.266667pt;}
.xd0_c00253{left:535.733333pt;}
.x98_c00253{left:537.333333pt;}
.xe4_c00253{left:538.800000pt;}
.xf4_c00253{left:541.866667pt;}
.x119_c00253{left:543.333333pt;}
.x105_c00253{left:544.400000pt;}
.xcc_c00253{left:546.133333pt;}
.x107_c00253{left:547.066667pt;}
.x9f_c00253{left:548.400000pt;}
.xe1_c00253{left:550.666667pt;}
.xbc_c00253{left:552.000000pt;}
.x120_c00253{left:553.200000pt;}
.xc8_c00253{left:554.533333pt;}
.xa7_c00253{left:555.733333pt;}
.xb5_c00253{left:556.666667pt;}
.xf5_c00253{left:557.866667pt;}
.xdb_c00253{left:560.000000pt;}
.xf8_c00253{left:562.800000pt;}
.xc2_c00253{left:566.933333pt;}
.x127_c00253{left:568.133333pt;}
.xd7_c00253{left:569.333333pt;}
.x116_c00253{left:570.666667pt;}
.xd1_c00253{left:572.533333pt;}
.x12b_c00253{left:573.733333pt;}
.xfd_c00253{left:575.466667pt;}
.xa8_c00253{left:576.533333pt;}
.x12e_c00253{left:578.266667pt;}
.xf9_c00253{left:579.733333pt;}
.xaf_c00253{left:580.800000pt;}
.x13e_c00253{left:584.133333pt;}
.xd2_c00253{left:585.333333pt;}
.xcd_c00253{left:586.800000pt;}
.xe5_c00253{left:590.266667pt;}
.xb6_c00253{left:591.866667pt;}
.x10d_c00253{left:592.800000pt;}
.x99_c00253{left:593.866667pt;}
.xf1_c00253{left:598.533333pt;}
.x139_c00253{left:600.133333pt;}
.xdc_c00253{left:601.600000pt;}
.x128_c00253{left:603.066667pt;}
.xec_c00253{left:604.000000pt;}
.x112_c00253{left:604.933333pt;}
.xb7_c00253{left:606.533333pt;}
.xfe_c00253{left:607.733333pt;}
.xb0_c00253{left:608.933333pt;}
.xd8_c00253{left:610.666667pt;}
.x108_c00253{left:612.933333pt;}
.xbd_c00253{left:614.666667pt;}
.xa0_c00253{left:616.533333pt;}
.x11b_c00253{left:618.800000pt;}
.xd9_c00253{left:622.133333pt;}
.x11a_c00253{left:623.333333pt;}
.xbe_c00253{left:624.933333pt;}
.x12c_c00253{left:626.933333pt;}
.xb1_c00253{left:627.866667pt;}
.x125_c00253{left:629.466667pt;}
.xea_c00253{left:630.933333pt;}
.xc6_c00253{left:633.466667pt;}
.x11e_c00253{left:635.333333pt;}
.x101_c00253{left:636.800000pt;}
.x11c_c00253{left:639.600000pt;}
.xe6_c00253{left:641.466667pt;}
.xed_c00253{left:642.666667pt;}
.xd3_c00253{left:644.533333pt;}
.x102_c00253{left:646.666667pt;}
.xce_c00253{left:648.133333pt;}
.x106_c00253{left:650.666667pt;}
.xfa_c00253{left:651.733333pt;}
.xbf_c00253{left:654.000000pt;}
.x109_c00253{left:655.466667pt;}
.xf6_c00253{left:657.466667pt;}
.xb2_c00253{left:660.533333pt;}
.xf2_c00253{left:661.600000pt;}
.x9a_c00253{left:662.933333pt;}
.xe7_c00253{left:665.733333pt;}
.xda_c00253{left:667.200000pt;}
.xb8_c00253{left:668.933333pt;}
.x117_c00253{left:670.800000pt;}
.xc0_c00253{left:672.533333pt;}
.x9b_c00253{left:674.133333pt;}
.xa1_c00253{left:676.666667pt;}
.xa9_c00253{left:678.266667pt;}
.xc3_c00253{left:680.533333pt;}
.xc9_c00253{left:681.866667pt;}
.xb9_c00253{left:684.933333pt;}
.x13a_c00253{left:685.866667pt;}
.xff_c00253{left:689.333333pt;}
.xf3_c00253{left:691.733333pt;}
.x10c_c00253{left:694.533333pt;}
.x9c_c00253{left:696.266667pt;}
.xd4_c00253{left:698.533333pt;}
.xba_c00253{left:700.000000pt;}
.xaa_c00253{left:701.333333pt;}
.xc1_c00253{left:704.266667pt;}
.x121_c00253{left:705.200000pt;}
.x126_c00253{left:706.666667pt;}
.x103_c00253{left:708.133333pt;}
.xa2_c00253{left:710.266667pt;}
.xe8_c00253{left:711.866667pt;}
.xdf_c00253{left:713.866667pt;}
.x9d_c00253{left:714.800000pt;}
.x10e_c00253{left:715.733333pt;}
.x11d_c00253{left:717.600000pt;}
.xa3_c00253{left:718.533333pt;}
.x100_c00253{left:720.666667pt;}
.x12d_c00253{left:721.600000pt;}
.xe2_c00253{left:724.666667pt;}
.x10a_c00253{left:726.533333pt;}
.x110_c00253{left:729.066667pt;}
.x9e_c00253{left:730.800000pt;}
.xb3_c00253{left:732.133333pt;}
.xee_c00253{left:733.600000pt;}
.xa4_c00253{left:734.533333pt;}
.xe9_c00253{left:736.533333pt;}
.xc4_c00253{left:738.133333pt;}
.x129_c00253{left:739.066667pt;}
.xef_c00253{left:741.866667pt;}
.x11f_c00253{left:745.066667pt;}
.xdd_c00253{left:746.266667pt;}
.xe3_c00253{left:747.733333pt;}
.xbb_c00253{left:749.333333pt;}
.x104_c00253{left:751.333333pt;}
.xc5_c00253{left:752.533333pt;}
.xab_c00253{left:754.800000pt;}
.xb4_c00253{left:756.400000pt;}
.xfb_c00253{left:757.600000pt;}
.x13b_c00253{left:759.733333pt;}
.x10b_c00253{left:762.400000pt;}
.xa5_c00253{left:764.666667pt;}
.xca_c00253{left:766.000000pt;}
.x122_c00253{left:768.533333pt;}
.x12f_c00253{left:769.466667pt;}
.xd5_c00253{left:770.800000pt;}
.xac_c00253{left:773.066667pt;}
.xf0_c00253{left:777.333333pt;}
.xe0_c00253{left:779.466667pt;}
.x123_c00253{left:791.866667pt;}
}





/* 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_c00254 {
    display:none;
  }
  .loading-indicator_c00254.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00254 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_c00254 { 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_c00254" -> "#page-container .classname_c00254")
 */
.pf_c00254 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00254 { /* 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_c00254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00254 { /* 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_c00254 { /* 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_c00254 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00254 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00254 {overflow:visible;}
  }
}
.c_c00254 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00254 { /* 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_c00254:after { /* webkit #35443 */
  content: '';
}
.t_c00254:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00254 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 */
}
.__c00254 { /* 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_c00254 { /* info for Javascript */
  display:none;
}
.l_c00254 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00254 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00254 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00254: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_c00254 {
    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_c00254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00254.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_c00254 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00254;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.000000;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;}
.md7_c00254{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00254{transform:matrix(0.027250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027250,0.000000,0.000000,0.250000,0,0);}
.m119_c00254{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00254{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m3_c00254{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00254{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m45_c00254{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00254{transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);}
.mc_c00254{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m84_c00254{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00254{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00254{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m29_c00254{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m114_c00254{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mef_c00254{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00254{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m13_c00254{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m6_c00254{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00254{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m81_c00254{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m54_c00254{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00254{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.me8_c00254{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m72_c00254{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.ma_c00254{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00254{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m95_c00254{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00254{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m76_c00254{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9_c00254{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m55_c00254{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m22_c00254{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m68_c00254{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00254{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00254{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m77_c00254{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00254{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m33_c00254{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m53_c00254{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00254{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me1_c00254{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00254{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m8_c00254{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m110_c00254{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7_c00254{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00254{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m102_c00254{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m43_c00254{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m38_c00254{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00254{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.me4_c00254{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md_c00254{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00254{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00254{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m103_c00254{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m79_c00254{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mee_c00254{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m116_c00254{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m105_c00254{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m5_c00254{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00254{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mac_c00254{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m58_c00254{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00254{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m12_c00254{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00254{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m117_c00254{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00254{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mba_c00254{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m113_c00254{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m32_c00254{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.maf_c00254{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mad_c00254{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m106_c00254{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m74_c00254{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m101_c00254{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m16_c00254{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m18_c00254{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m75_c00254{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m109_c00254{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m71_c00254{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00254{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m36_c00254{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m59_c00254{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00254{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m63_c00254{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00254{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m27_c00254{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m91_c00254{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m25_c00254{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00254{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m83_c00254{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m93_c00254{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00254{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m35_c00254{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m100_c00254{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00254{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m69_c00254{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00254{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m92_c00254{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m17_c00254{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m118_c00254{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00254{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00254{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m70_c00254{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00254{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00254{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00254{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m37_c00254{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m94_c00254{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m89_c00254{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m80_c00254{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m20_c00254{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00254{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00254{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m26_c00254{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.med_c00254{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00254{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00254{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00254{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00254{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m62_c00254{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00254{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00254{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00254{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m4_c00254{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10_c00254{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m90_c00254{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00254{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00254{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m86_c00254{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m30_c00254{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m28_c00254{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00254{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m23_c00254{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00254{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m34_c00254{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00254{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me9_c00254{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m46_c00254{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb_c00254{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m60_c00254{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m67_c00254{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00254{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md2_c00254{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m14_c00254{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00254{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2_c00254{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00254{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me_c00254{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m98_c00254{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00254{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00254{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m21_c00254{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00254{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00254{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00254{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00254{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m112_c00254{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00254{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m56_c00254{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00254{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mae_c00254{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m73_c00254{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.maa_c00254{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00254{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m64_c00254{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00254{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00254{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00254{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m40_c00254{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m66_c00254{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00254{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00254{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00254{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m107_c00254{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00254{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.md8_c00254{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00254{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m52_c00254{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m47_c00254{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mea_c00254{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00254{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m88_c00254{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me2_c00254{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m24_c00254{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00254{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md9_c00254{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00254{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00254{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m97_c00254{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m31_c00254{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00254{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00254{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00254{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m50_c00254{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00254{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00254{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00254{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m82_c00254{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00254{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m87_c00254{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00254{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m15_c00254{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m42_c00254{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00254{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00254{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00254{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md6_c00254{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m11_c00254{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00254{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00254{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m41_c00254{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m115_c00254{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mab_c00254{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00254{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf_c00254{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m57_c00254{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00254{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.me6_c00254{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00254{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00254{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mca_c00254{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md4_c00254{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m49_c00254{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00254{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.me7_c00254{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00254{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00254{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m65_c00254{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00254{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19_c00254{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m85_c00254{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00254{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00254{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00254{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);}
.m96_c00254{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00254{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m99_c00254{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00254{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mff_c00254{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00254{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mda_c00254{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00254{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m104_c00254{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00254{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mde_c00254{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.md5_c00254{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m44_c00254{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m111_c00254{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00254{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00254{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md1_c00254{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m48_c00254{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me0_c00254{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00254{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m61_c00254{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00254{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md0_c00254{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00254{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00254{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00254{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00254{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00254{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.me5_c00254{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00254{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.md3_c00254{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m108_c00254{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mec_c00254{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m51_c00254{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00254{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.me3_c00254{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00254{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00254{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m78_c00254{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00254{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00254{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00254{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00254{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00254{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00254{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.meb_c00254{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00254{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.mce_c00254{transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00254{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00254{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00254{transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls0_c00254{letter-spacing:0.000000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{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__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00254{word-spacing:-15.165746px;}
.ws6_c00254{word-spacing:-10.441341px;}
.ws9_c00254{word-spacing:-9.529002px;}
.ws8_c00254{word-spacing:-8.278351px;}
.ws0_c00254{word-spacing:-6.250000px;}
.ws4_c00254{word-spacing:-1.470588px;}
.wsa_c00254{word-spacing:0.000000px;}
.ws7_c00254{word-spacing:1.323024px;}
.ws3_c00254{word-spacing:3.125000px;}
.ws5_c00254{word-spacing:3.679245px;}
.ws1_c00254{word-spacing:10.169054px;}
.fc0_c00254{color:transparent;}
.fs5_c00254{font-size:54.000000px;}
.fs1_c00254{font-size:60.000000px;}
.fs4_c00254{font-size:66.000000px;}
.fs3_c00254{font-size:72.000000px;}
.fs0_c00254{font-size:78.000000px;}
.fs2_c00254{font-size:90.000000px;}
.y0_c00254{bottom:0.000000px;}
.y37_c00254{bottom:186.150000px;}
.y69_c00254{bottom:187.500000px;}
.y36_c00254{bottom:204.450000px;}
.y68_c00254{bottom:205.800000px;}
.y35_c00254{bottom:222.150000px;}
.y67_c00254{bottom:223.500000px;}
.y34_c00254{bottom:239.700000px;}
.y66_c00254{bottom:241.200000px;}
.y33_c00254{bottom:261.600000px;}
.y65_c00254{bottom:263.550000px;}
.y32_c00254{bottom:279.600000px;}
.y64_c00254{bottom:281.850000px;}
.y31_c00254{bottom:297.600000px;}
.y63_c00254{bottom:304.050000px;}
.y30_c00254{bottom:315.300000px;}
.y62_c00254{bottom:321.750000px;}
.y2f_c00254{bottom:333.000000px;}
.y61_c00254{bottom:339.750000px;}
.y2e_c00254{bottom:351.000000px;}
.y60_c00254{bottom:357.750000px;}
.y2d_c00254{bottom:368.700000px;}
.y5f_c00254{bottom:375.750000px;}
.y2c_c00254{bottom:386.400000px;}
.y5e_c00254{bottom:393.000000px;}
.y2b_c00254{bottom:407.700000px;}
.y5d_c00254{bottom:410.700000px;}
.y2a_c00254{bottom:422.100000px;}
.y5c_c00254{bottom:428.700000px;}
.y29_c00254{bottom:440.100000px;}
.y5b_c00254{bottom:446.400000px;}
.y28_c00254{bottom:458.100000px;}
.y5a_c00254{bottom:466.950000px;}
.y27_c00254{bottom:475.800000px;}
.y59_c00254{bottom:481.350000px;}
.y26_c00254{bottom:493.800000px;}
.y58_c00254{bottom:501.600000px;}
.y25_c00254{bottom:511.800000px;}
.y57_c00254{bottom:519.600000px;}
.y24_c00254{bottom:529.500000px;}
.y56_c00254{bottom:537.600000px;}
.y23_c00254{bottom:547.800000px;}
.y55_c00254{bottom:555.600000px;}
.y22_c00254{bottom:565.500000px;}
.y54_c00254{bottom:573.300000px;}
.y21_c00254{bottom:583.500000px;}
.y53_c00254{bottom:591.300000px;}
.y20_c00254{bottom:601.200000px;}
.y52_c00254{bottom:609.000000px;}
.y1f_c00254{bottom:619.200000px;}
.y51_c00254{bottom:626.700000px;}
.y1e_c00254{bottom:637.200000px;}
.y50_c00254{bottom:653.400000px;}
.y1d_c00254{bottom:654.900000px;}
.y4f_c00254{bottom:671.400000px;}
.y1c_c00254{bottom:681.300000px;}
.y4e_c00254{bottom:691.200000px;}
.y1b_c00254{bottom:699.300000px;}
.y4d_c00254{bottom:707.100000px;}
.y1a_c00254{bottom:717.300000px;}
.y4c_c00254{bottom:724.800000px;}
.y19_c00254{bottom:735.000000px;}
.y4b_c00254{bottom:742.800000px;}
.y18_c00254{bottom:752.700000px;}
.y4a_c00254{bottom:761.100000px;}
.y17_c00254{bottom:774.000000px;}
.y49_c00254{bottom:778.350000px;}
.y16_c00254{bottom:792.300000px;}
.y48_c00254{bottom:800.250000px;}
.y15_c00254{bottom:810.000000px;}
.y14_c00254{bottom:828.000000px;}
.y47_c00254{bottom:831.600000px;}
.y13_c00254{bottom:845.700000px;}
.y46_c00254{bottom:849.600000px;}
.y12_c00254{bottom:863.400000px;}
.y45_c00254{bottom:867.300000px;}
.y11_c00254{bottom:881.400000px;}
.y44_c00254{bottom:885.300000px;}
.y10_c00254{bottom:899.100000px;}
.y43_c00254{bottom:902.850000px;}
.yf_c00254{bottom:917.100000px;}
.y42_c00254{bottom:925.200000px;}
.ye_c00254{bottom:934.800000px;}
.y41_c00254{bottom:942.450000px;}
.yd_c00254{bottom:952.500000px;}
.y40_c00254{bottom:965.100000px;}
.yc_c00254{bottom:970.800000px;}
.y3f_c00254{bottom:982.800000px;}
.yb_c00254{bottom:988.050000px;}
.y3e_c00254{bottom:1000.800000px;}
.ya_c00254{bottom:1005.750000px;}
.y3d_c00254{bottom:1018.500000px;}
.y9_c00254{bottom:1023.750000px;}
.y3c_c00254{bottom:1036.500000px;}
.y8_c00254{bottom:1041.450000px;}
.y3b_c00254{bottom:1053.750000px;}
.y7_c00254{bottom:1059.450000px;}
.y3a_c00254{bottom:1076.400000px;}
.y6_c00254{bottom:1077.750000px;}
.y39_c00254{bottom:1094.400000px;}
.y5_c00254{bottom:1095.000000px;}
.y38_c00254{bottom:1112.100000px;}
.y4_c00254{bottom:1112.700000px;}
.y3_c00254{bottom:1137.300000px;}
.y1_c00254{bottom:1139.700000px;}
.y2_c00254{bottom:1148.400000px;}
.h7_c00254{height:54.000000px;}
.h3_c00254{height:60.000000px;}
.h6_c00254{height:66.000000px;}
.h5_c00254{height:72.000000px;}
.h2_c00254{height:78.000000px;}
.h4_c00254{height:90.000000px;}
.h0_c00254{height:1268.640015px;}
.h1_c00254{height:1269.000000px;}
.w1_c00254{width:961.500000px;}
.w0_c00254{width:961.560058px;}
.x0_c00254{left:0.000000px;}
.x7a_c00254{left:89.700000px;}
.x4_c00254{left:91.050000px;}
.xa8_c00254{left:93.300000px;}
.xab_c00254{left:100.800000px;}
.x5_c00254{left:101.850000px;}
.x12_c00254{left:103.050000px;}
.x21_c00254{left:104.250000px;}
.x65_c00254{left:106.350000px;}
.x7e_c00254{left:107.550000px;}
.x8e_c00254{left:108.600000px;}
.x98_c00254{left:109.650000px;}
.xa2_c00254{left:111.000000px;}
.x6b_c00254{left:123.450000px;}
.x2e_c00254{left:124.650000px;}
.xa6_c00254{left:127.500000px;}
.x49_c00254{left:131.100000px;}
.x42_c00254{left:133.350000px;}
.x8b_c00254{left:134.400000px;}
.x88_c00254{left:136.500000px;}
.x5d_c00254{left:138.450000px;}
.x4a_c00254{left:140.400000px;}
.x6_c00254{left:141.450000px;}
.xe_c00254{left:142.650000px;}
.x1c_c00254{left:144.600000px;}
.xa1_c00254{left:145.800000px;}
.x81_c00254{left:147.750000px;}
.x26_c00254{left:149.850000px;}
.x99_c00254{left:151.350000px;}
.x70_c00254{left:152.550000px;}
.x39_c00254{left:155.250000px;}
.x53_c00254{left:156.300000px;}
.x35_c00254{left:157.500000px;}
.x45_c00254{left:159.600000px;}
.x4e_c00254{left:160.950000px;}
.xa4_c00254{left:162.900000px;}
.x82_c00254{left:165.450000px;}
.x84_c00254{left:167.400000px;}
.x27_c00254{left:169.950000px;}
.x2f_c00254{left:171.450000px;}
.x59_c00254{left:172.650000px;}
.x9d_c00254{left:174.750000px;}
.x22_c00254{left:176.550000px;}
.x7_c00254{left:179.250000px;}
.x1d_c00254{left:180.300000px;}
.x3a_c00254{left:183.000000px;}
.x62_c00254{left:186.300000px;}
.x54_c00254{left:187.950000px;}
.x13_c00254{left:189.150000px;}
.x4b_c00254{left:190.500000px;}
.x30_c00254{left:192.300000px;}
.x8_c00254{left:193.350000px;}
.x77_c00254{left:195.300000px;}
.x95_c00254{left:197.550000px;}
.x1e_c00254{left:199.350000px;}
.x17_c00254{left:200.400000px;}
.x4f_c00254{left:201.600000px;}
.x66_c00254{left:204.300000px;}
.x90_c00254{left:206.400000px;}
.x9f_c00254{left:208.500000px;}
.x28_c00254{left:209.850000px;}
.x67_c00254{left:211.350000px;}
.x4c_c00254{left:212.400000px;}
.x55_c00254{left:214.650000px;}
.x9e_c00254{left:218.100000px;}
.xf_c00254{left:219.300000px;}
.x9a_c00254{left:220.350000px;}
.x14_c00254{left:221.850000px;}
.x7f_c00254{left:224.100000px;}
.xac_c00254{left:226.800000px;}
.x83_c00254{left:228.150000px;}
.x29_c00254{left:229.950000px;}
.x46_c00254{left:231.000000px;}
.x8f_c00254{left:232.500000px;}
.x9_c00254{left:233.700000px;}
.x71_c00254{left:235.050000px;}
.x3b_c00254{left:237.000000px;}
.x31_c00254{left:238.350000px;}
.x7b_c00254{left:240.600000px;}
.x23_c00254{left:242.100000px;}
.x5a_c00254{left:244.650000px;}
.xad_c00254{left:246.600000px;}
.x18_c00254{left:248.250000px;}
.x15_c00254{left:250.350000px;}
.x56_c00254{left:251.400000px;}
.xa3_c00254{left:253.050000px;}
.xa7_c00254{left:255.300000px;}
.x72_c00254{left:256.350000px;}
.x3c_c00254{left:257.850000px;}
.x36_c00254{left:260.100000px;}
.x7c_c00254{left:261.150000px;}
.x2a_c00254{left:263.400000px;}
.x78_c00254{left:264.450000px;}
.x93_c00254{left:266.250000px;}
.x24_c00254{left:267.750000px;}
.xa5_c00254{left:270.900000px;}
.x3d_c00254{left:273.750000px;}
.x47_c00254{left:274.950000px;}
.x32_c00254{left:277.650000px;}
.x68_c00254{left:279.000000px;}
.x5e_c00254{left:281.250000px;}
.x89_c00254{left:283.350000px;}
.x80_c00254{left:284.550000px;}
.x10_c00254{left:287.400000px;}
.x1f_c00254{left:289.650000px;}
.x43_c00254{left:294.150000px;}
.x63_c00254{left:296.400000px;}
.x5f_c00254{left:298.200000px;}
.x37_c00254{left:299.250000px;}
.x5b_c00254{left:300.750000px;}
.x85_c00254{left:304.200000px;}
.xa_c00254{left:305.400000px;}
.x6c_c00254{left:307.050000px;}
.x19_c00254{left:309.450000px;}
.x2b_c00254{left:311.250000px;}
.xaf_c00254{left:312.450000px;}
.x50_c00254{left:315.750000px;}
.x92_c00254{left:318.000000px;}
.x73_c00254{left:319.350000px;}
.x25_c00254{left:321.300000px;}
.x64_c00254{left:322.650000px;}
.x1_c00254{left:324.300000px;}
.x3e_c00254{left:325.950000px;}
.x60_c00254{left:327.450000px;}
.x57_c00254{left:328.800000px;}
.x79_c00254{left:330.750000px;}
.xb_c00254{left:332.400000px;}
.x11_c00254{left:334.200000px;}
.x3f_c00254{left:335.700000px;}
.x1a_c00254{left:337.500000px;}
.x6d_c00254{left:340.950000px;}
.xc_c00254{left:342.150000px;}
.x75_c00254{left:343.650000px;}
.x7d_c00254{left:345.450000px;}
.xa9_c00254{left:346.650000px;}
.x51_c00254{left:347.850000px;}
.x9b_c00254{left:348.900000px;}
.x33_c00254{left:349.950000px;}
.x8a_c00254{left:351.000000px;}
.x61_c00254{left:352.650000px;}
.x40_c00254{left:354.000000px;}
.x20_c00254{left:357.300000px;}
.xa0_c00254{left:360.000000px;}
.x76_c00254{left:362.700000px;}
.x4d_c00254{left:363.750000px;}
.x16_c00254{left:364.950000px;}
.x96_c00254{left:366.600000px;}
.x8d_c00254{left:367.800000px;}
.x2c_c00254{left:369.150000px;}
.xaa_c00254{left:370.350000px;}
.x94_c00254{left:372.450000px;}
.x5c_c00254{left:374.250000px;}
.x38_c00254{left:375.450000px;}
.x8c_c00254{left:377.700000px;}
.x97_c00254{left:378.900000px;}
.x86_c00254{left:380.250000px;}
.x48_c00254{left:381.750000px;}
.x69_c00254{left:382.950000px;}
.xae_c00254{left:384.000000px;}
.x6e_c00254{left:385.200000px;}
.x74_c00254{left:386.250000px;}
.x1b_c00254{left:389.400000px;}
.x9c_c00254{left:391.800000px;}
.x2d_c00254{left:393.600000px;}
.x58_c00254{left:396.900000px;}
.x91_c00254{left:399.750000px;}
.x87_c00254{left:403.350000px;}
.x41_c00254{left:406.200000px;}
.x52_c00254{left:407.550000px;}
.x6f_c00254{left:408.900000px;}
.x44_c00254{left:410.400000px;}
.x6a_c00254{left:411.450000px;}
.xd_c00254{left:415.950000px;}
.x34_c00254{left:417.900000px;}
.xec_c00254{left:443.100000px;}
.xfc_c00254{left:446.700000px;}
.x149_c00254{left:453.300000px;}
.xb0_c00254{left:457.500000px;}
.xbf_c00254{left:458.850000px;}
.xd4_c00254{left:460.050000px;}
.xef_c00254{left:461.550000px;}
.xfb_c00254{left:463.050000px;}
.x110_c00254{left:464.100000px;}
.x141_c00254{left:465.150000px;}
.x146_c00254{left:466.800000px;}
.x11a_c00254{left:470.550000px;}
.xc2_c00254{left:476.700000px;}
.xe0_c00254{left:478.800000px;}
.xcb_c00254{left:480.900000px;}
.xb8_c00254{left:482.400000px;}
.xdb_c00254{left:484.200000px;}
.xfd_c00254{left:486.300000px;}
.x12e_c00254{left:488.250000px;}
.x11b_c00254{left:489.300000px;}
.xb1_c00254{left:491.700000px;}
.xdc_c00254{left:493.500000px;}
.x108_c00254{left:497.400000px;}
.xc7_c00254{left:498.750000px;}
.xd0_c00254{left:503.250000px;}
.xe8_c00254{left:504.600000px;}
.xc3_c00254{left:506.550000px;}
.xf3_c00254{left:508.200000px;}
.x13e_c00254{left:510.300000px;}
.xed_c00254{left:512.250000px;}
.x129_c00254{left:514.950000px;}
.x117_c00254{left:516.300000px;}
.xd5_c00254{left:517.650000px;}
.xd1_c00254{left:519.750000px;}
.x122_c00254{left:521.400000px;}
.xfe_c00254{left:522.600000px;}
.x137_c00254{left:523.950000px;}
.xcc_c00254{left:525.600000px;}
.xf0_c00254{left:528.150000px;}
.xdd_c00254{left:529.800000px;}
.xb2_c00254{left:531.600000px;}
.x135_c00254{left:533.400000px;}
.x11f_c00254{left:535.200000px;}
.xc0_c00254{left:537.000000px;}
.xb9_c00254{left:539.250000px;}
.xd6_c00254{left:540.750000px;}
.x10d_c00254{left:541.800000px;}
.x14a_c00254{left:544.650000px;}
.xe1_c00254{left:545.850000px;}
.x142_c00254{left:547.950000px;}
.x12b_c00254{left:549.900000px;}
.x144_c00254{left:552.150000px;}
.x118_c00254{left:553.350000px;}
.xc1_c00254{left:555.000000px;}
.x11c_c00254{left:556.650000px;}
.xf5_c00254{left:557.700000px;}
.xba_c00254{left:559.050000px;}
.x124_c00254{left:561.900000px;}
.x103_c00254{left:563.100000px;}
.x111_c00254{left:565.500000px;}
.x143_c00254{left:566.700000px;}
.xc4_c00254{left:567.750000px;}
.x12f_c00254{left:569.250000px;}
.x119_c00254{left:571.350000px;}
.x13a_c00254{left:572.550000px;}
.xd7_c00254{left:574.200000px;}
.x120_c00254{left:576.600000px;}
.xcd_c00254{left:577.800000px;}
.x12c_c00254{left:579.450000px;}
.xe9_c00254{left:580.950000px;}
.xf6_c00254{left:582.600000px;}
.x11d_c00254{left:587.250000px;}
.x104_c00254{left:588.600000px;}
.xff_c00254{left:591.300000px;}
.xea_c00254{left:593.250000px;}
.xd8_c00254{left:595.500000px;}
.x133_c00254{left:597.900000px;}
.xc8_c00254{left:600.300000px;}
.x115_c00254{left:601.500000px;}
.x13f_c00254{left:603.000000px;}
.xf7_c00254{left:605.250000px;}
.xf4_c00254{left:607.200000px;}
.xb3_c00254{left:611.550000px;}
.xe2_c00254{left:613.950000px;}
.x138_c00254{left:617.400000px;}
.x125_c00254{left:622.050000px;}
.xde_c00254{left:623.700000px;}
.x105_c00254{left:625.650000px;}
.xb4_c00254{left:629.250000px;}
.xbb_c00254{left:632.550000px;}
.x139_c00254{left:634.350000px;}
.xe3_c00254{left:637.350000px;}
.xc5_c00254{left:638.700000px;}
.xf8_c00254{left:640.200000px;}
.x109_c00254{left:642.000000px;}
.xd9_c00254{left:643.350000px;}
.x13b_c00254{left:644.550000px;}
.xf1_c00254{left:645.600000px;}
.x126_c00254{left:651.600000px;}
.xe4_c00254{left:654.600000px;}
.xbc_c00254{left:656.250000px;}
.x100_c00254{left:660.750000px;}
.xb5_c00254{left:662.400000px;}
.x134_c00254{left:667.350000px;}
.x12d_c00254{left:668.700000px;}
.x101_c00254{left:670.050000px;}
.x112_c00254{left:671.400000px;}
.x10b_c00254{left:673.200000px;}
.x123_c00254{left:674.400000px;}
.x106_c00254{left:676.050000px;}
.x12a_c00254{left:678.150000px;}
.xe5_c00254{left:680.100000px;}
.x10e_c00254{left:681.150000px;}
.x140_c00254{left:682.950000px;}
.x10c_c00254{left:684.750000px;}
.x147_c00254{left:688.500000px;}
.xb6_c00254{left:689.700000px;}
.xdf_c00254{left:692.100000px;}
.x113_c00254{left:693.750000px;}
.xbd_c00254{left:696.150000px;}
.x136_c00254{left:697.800000px;}
.xf9_c00254{left:698.850000px;}
.xee_c00254{left:700.050000px;}
.xe6_c00254{left:701.400000px;}
.x11e_c00254{left:703.500000px;}
.x127_c00254{left:706.350000px;}
.x130_c00254{left:707.850000px;}
.xc6_c00254{left:708.900000px;}
.x102_c00254{left:713.250000px;}
.xc9_c00254{left:714.450000px;}
.xd2_c00254{left:716.250000px;}
.xce_c00254{left:717.750000px;}
.x145_c00254{left:721.650000px;}
.xe7_c00254{left:725.550000px;}
.x116_c00254{left:726.750000px;}
.xbe_c00254{left:728.850000px;}
.xb7_c00254{left:731.100000px;}
.x13c_c00254{left:733.200000px;}
.x114_c00254{left:735.900000px;}
.xca_c00254{left:737.550000px;}
.xd3_c00254{left:741.150000px;}
.xda_c00254{left:742.350000px;}
.xfa_c00254{left:744.150000px;}
.x10f_c00254{left:745.650000px;}
.xf2_c00254{left:747.450000px;}
.x3_c00254{left:750.600000px;}
.x10a_c00254{left:752.850000px;}
.x13d_c00254{left:755.850000px;}
.x121_c00254{left:757.650000px;}
.x2_c00254{left:759.900000px;}
.x132_c00254{left:761.100000px;}
.xeb_c00254{left:764.250000px;}
.x131_c00254{left:766.200000px;}
.x148_c00254{left:769.500000px;}
.x107_c00254{left:772.050000px;}
.x128_c00254{left:773.400000px;}
.xcf_c00254{left:785.850000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws2_c00254{word-spacing:-13.480663pt;}
.ws6_c00254{word-spacing:-9.281192pt;}
.ws9_c00254{word-spacing:-8.470224pt;}
.ws8_c00254{word-spacing:-7.358534pt;}
.ws0_c00254{word-spacing:-5.555556pt;}
.ws4_c00254{word-spacing:-1.307190pt;}
.wsa_c00254{word-spacing:0.000000pt;}
.ws7_c00254{word-spacing:1.176021pt;}
.ws3_c00254{word-spacing:2.777778pt;}
.ws5_c00254{word-spacing:3.270440pt;}
.ws1_c00254{word-spacing:9.039160pt;}
.fs5_c00254{font-size:48.000000pt;}
.fs1_c00254{font-size:53.333333pt;}
.fs4_c00254{font-size:58.666667pt;}
.fs3_c00254{font-size:64.000000pt;}
.fs0_c00254{font-size:69.333333pt;}
.fs2_c00254{font-size:80.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y37_c00254{bottom:165.466667pt;}
.y69_c00254{bottom:166.666667pt;}
.y36_c00254{bottom:181.733333pt;}
.y68_c00254{bottom:182.933333pt;}
.y35_c00254{bottom:197.466667pt;}
.y67_c00254{bottom:198.666667pt;}
.y34_c00254{bottom:213.066667pt;}
.y66_c00254{bottom:214.400000pt;}
.y33_c00254{bottom:232.533333pt;}
.y65_c00254{bottom:234.266667pt;}
.y32_c00254{bottom:248.533333pt;}
.y64_c00254{bottom:250.533333pt;}
.y31_c00254{bottom:264.533333pt;}
.y63_c00254{bottom:270.266667pt;}
.y30_c00254{bottom:280.266667pt;}
.y62_c00254{bottom:286.000000pt;}
.y2f_c00254{bottom:296.000000pt;}
.y61_c00254{bottom:302.000000pt;}
.y2e_c00254{bottom:312.000000pt;}
.y60_c00254{bottom:318.000000pt;}
.y2d_c00254{bottom:327.733333pt;}
.y5f_c00254{bottom:334.000000pt;}
.y2c_c00254{bottom:343.466667pt;}
.y5e_c00254{bottom:349.333333pt;}
.y2b_c00254{bottom:362.400000pt;}
.y5d_c00254{bottom:365.066667pt;}
.y2a_c00254{bottom:375.200000pt;}
.y5c_c00254{bottom:381.066667pt;}
.y29_c00254{bottom:391.200000pt;}
.y5b_c00254{bottom:396.800000pt;}
.y28_c00254{bottom:407.200000pt;}
.y5a_c00254{bottom:415.066667pt;}
.y27_c00254{bottom:422.933333pt;}
.y59_c00254{bottom:427.866667pt;}
.y26_c00254{bottom:438.933333pt;}
.y58_c00254{bottom:445.866667pt;}
.y25_c00254{bottom:454.933333pt;}
.y57_c00254{bottom:461.866667pt;}
.y24_c00254{bottom:470.666667pt;}
.y56_c00254{bottom:477.866667pt;}
.y23_c00254{bottom:486.933333pt;}
.y55_c00254{bottom:493.866667pt;}
.y22_c00254{bottom:502.666667pt;}
.y54_c00254{bottom:509.600000pt;}
.y21_c00254{bottom:518.666667pt;}
.y53_c00254{bottom:525.600000pt;}
.y20_c00254{bottom:534.400000pt;}
.y52_c00254{bottom:541.333333pt;}
.y1f_c00254{bottom:550.400000pt;}
.y51_c00254{bottom:557.066667pt;}
.y1e_c00254{bottom:566.400000pt;}
.y50_c00254{bottom:580.800000pt;}
.y1d_c00254{bottom:582.133333pt;}
.y4f_c00254{bottom:596.800000pt;}
.y1c_c00254{bottom:605.600000pt;}
.y4e_c00254{bottom:614.400000pt;}
.y1b_c00254{bottom:621.600000pt;}
.y4d_c00254{bottom:628.533333pt;}
.y1a_c00254{bottom:637.600000pt;}
.y4c_c00254{bottom:644.266667pt;}
.y19_c00254{bottom:653.333333pt;}
.y4b_c00254{bottom:660.266667pt;}
.y18_c00254{bottom:669.066667pt;}
.y4a_c00254{bottom:676.533333pt;}
.y17_c00254{bottom:688.000000pt;}
.y49_c00254{bottom:691.866667pt;}
.y16_c00254{bottom:704.266667pt;}
.y48_c00254{bottom:711.333333pt;}
.y15_c00254{bottom:720.000000pt;}
.y14_c00254{bottom:736.000000pt;}
.y47_c00254{bottom:739.200000pt;}
.y13_c00254{bottom:751.733333pt;}
.y46_c00254{bottom:755.200000pt;}
.y12_c00254{bottom:767.466667pt;}
.y45_c00254{bottom:770.933333pt;}
.y11_c00254{bottom:783.466667pt;}
.y44_c00254{bottom:786.933333pt;}
.y10_c00254{bottom:799.200000pt;}
.y43_c00254{bottom:802.533333pt;}
.yf_c00254{bottom:815.200000pt;}
.y42_c00254{bottom:822.400000pt;}
.ye_c00254{bottom:830.933333pt;}
.y41_c00254{bottom:837.733333pt;}
.yd_c00254{bottom:846.666667pt;}
.y40_c00254{bottom:857.866667pt;}
.yc_c00254{bottom:862.933333pt;}
.y3f_c00254{bottom:873.600000pt;}
.yb_c00254{bottom:878.266667pt;}
.y3e_c00254{bottom:889.600000pt;}
.ya_c00254{bottom:894.000000pt;}
.y3d_c00254{bottom:905.333333pt;}
.y9_c00254{bottom:910.000000pt;}
.y3c_c00254{bottom:921.333333pt;}
.y8_c00254{bottom:925.733333pt;}
.y3b_c00254{bottom:936.666667pt;}
.y7_c00254{bottom:941.733333pt;}
.y3a_c00254{bottom:956.800000pt;}
.y6_c00254{bottom:958.000000pt;}
.y39_c00254{bottom:972.800000pt;}
.y5_c00254{bottom:973.333333pt;}
.y38_c00254{bottom:988.533333pt;}
.y4_c00254{bottom:989.066667pt;}
.y3_c00254{bottom:1010.933333pt;}
.y1_c00254{bottom:1013.066667pt;}
.y2_c00254{bottom:1020.800000pt;}
.h7_c00254{height:48.000000pt;}
.h3_c00254{height:53.333333pt;}
.h6_c00254{height:58.666667pt;}
.h5_c00254{height:64.000000pt;}
.h2_c00254{height:69.333333pt;}
.h4_c00254{height:80.000000pt;}
.h0_c00254{height:1127.680013pt;}
.h1_c00254{height:1128.000000pt;}
.w1_c00254{width:854.666667pt;}
.w0_c00254{width:854.720052pt;}
.x0_c00254{left:0.000000pt;}
.x7a_c00254{left:79.733333pt;}
.x4_c00254{left:80.933333pt;}
.xa8_c00254{left:82.933333pt;}
.xab_c00254{left:89.600000pt;}
.x5_c00254{left:90.533333pt;}
.x12_c00254{left:91.600000pt;}
.x21_c00254{left:92.666667pt;}
.x65_c00254{left:94.533333pt;}
.x7e_c00254{left:95.600000pt;}
.x8e_c00254{left:96.533333pt;}
.x98_c00254{left:97.466667pt;}
.xa2_c00254{left:98.666667pt;}
.x6b_c00254{left:109.733333pt;}
.x2e_c00254{left:110.800000pt;}
.xa6_c00254{left:113.333333pt;}
.x49_c00254{left:116.533333pt;}
.x42_c00254{left:118.533333pt;}
.x8b_c00254{left:119.466667pt;}
.x88_c00254{left:121.333333pt;}
.x5d_c00254{left:123.066667pt;}
.x4a_c00254{left:124.800000pt;}
.x6_c00254{left:125.733333pt;}
.xe_c00254{left:126.800000pt;}
.x1c_c00254{left:128.533333pt;}
.xa1_c00254{left:129.600000pt;}
.x81_c00254{left:131.333333pt;}
.x26_c00254{left:133.200000pt;}
.x99_c00254{left:134.533333pt;}
.x70_c00254{left:135.600000pt;}
.x39_c00254{left:138.000000pt;}
.x53_c00254{left:138.933333pt;}
.x35_c00254{left:140.000000pt;}
.x45_c00254{left:141.866667pt;}
.x4e_c00254{left:143.066667pt;}
.xa4_c00254{left:144.800000pt;}
.x82_c00254{left:147.066667pt;}
.x84_c00254{left:148.800000pt;}
.x27_c00254{left:151.066667pt;}
.x2f_c00254{left:152.400000pt;}
.x59_c00254{left:153.466667pt;}
.x9d_c00254{left:155.333333pt;}
.x22_c00254{left:156.933333pt;}
.x7_c00254{left:159.333333pt;}
.x1d_c00254{left:160.266667pt;}
.x3a_c00254{left:162.666667pt;}
.x62_c00254{left:165.600000pt;}
.x54_c00254{left:167.066667pt;}
.x13_c00254{left:168.133333pt;}
.x4b_c00254{left:169.333333pt;}
.x30_c00254{left:170.933333pt;}
.x8_c00254{left:171.866667pt;}
.x77_c00254{left:173.600000pt;}
.x95_c00254{left:175.600000pt;}
.x1e_c00254{left:177.200000pt;}
.x17_c00254{left:178.133333pt;}
.x4f_c00254{left:179.200000pt;}
.x66_c00254{left:181.600000pt;}
.x90_c00254{left:183.466667pt;}
.x9f_c00254{left:185.333333pt;}
.x28_c00254{left:186.533333pt;}
.x67_c00254{left:187.866667pt;}
.x4c_c00254{left:188.800000pt;}
.x55_c00254{left:190.800000pt;}
.x9e_c00254{left:193.866667pt;}
.xf_c00254{left:194.933333pt;}
.x9a_c00254{left:195.866667pt;}
.x14_c00254{left:197.200000pt;}
.x7f_c00254{left:199.200000pt;}
.xac_c00254{left:201.600000pt;}
.x83_c00254{left:202.800000pt;}
.x29_c00254{left:204.400000pt;}
.x46_c00254{left:205.333333pt;}
.x8f_c00254{left:206.666667pt;}
.x9_c00254{left:207.733333pt;}
.x71_c00254{left:208.933333pt;}
.x3b_c00254{left:210.666667pt;}
.x31_c00254{left:211.866667pt;}
.x7b_c00254{left:213.866667pt;}
.x23_c00254{left:215.200000pt;}
.x5a_c00254{left:217.466667pt;}
.xad_c00254{left:219.200000pt;}
.x18_c00254{left:220.666667pt;}
.x15_c00254{left:222.533333pt;}
.x56_c00254{left:223.466667pt;}
.xa3_c00254{left:224.933333pt;}
.xa7_c00254{left:226.933333pt;}
.x72_c00254{left:227.866667pt;}
.x3c_c00254{left:229.200000pt;}
.x36_c00254{left:231.200000pt;}
.x7c_c00254{left:232.133333pt;}
.x2a_c00254{left:234.133333pt;}
.x78_c00254{left:235.066667pt;}
.x93_c00254{left:236.666667pt;}
.x24_c00254{left:238.000000pt;}
.xa5_c00254{left:240.800000pt;}
.x3d_c00254{left:243.333333pt;}
.x47_c00254{left:244.400000pt;}
.x32_c00254{left:246.800000pt;}
.x68_c00254{left:248.000000pt;}
.x5e_c00254{left:250.000000pt;}
.x89_c00254{left:251.866667pt;}
.x80_c00254{left:252.933333pt;}
.x10_c00254{left:255.466667pt;}
.x1f_c00254{left:257.466667pt;}
.x43_c00254{left:261.466667pt;}
.x63_c00254{left:263.466667pt;}
.x5f_c00254{left:265.066667pt;}
.x37_c00254{left:266.000000pt;}
.x5b_c00254{left:267.333333pt;}
.x85_c00254{left:270.400000pt;}
.xa_c00254{left:271.466667pt;}
.x6c_c00254{left:272.933333pt;}
.x19_c00254{left:275.066667pt;}
.x2b_c00254{left:276.666667pt;}
.xaf_c00254{left:277.733333pt;}
.x50_c00254{left:280.666667pt;}
.x92_c00254{left:282.666667pt;}
.x73_c00254{left:283.866667pt;}
.x25_c00254{left:285.600000pt;}
.x64_c00254{left:286.800000pt;}
.x1_c00254{left:288.266667pt;}
.x3e_c00254{left:289.733333pt;}
.x60_c00254{left:291.066667pt;}
.x57_c00254{left:292.266667pt;}
.x79_c00254{left:294.000000pt;}
.xb_c00254{left:295.466667pt;}
.x11_c00254{left:297.066667pt;}
.x3f_c00254{left:298.400000pt;}
.x1a_c00254{left:300.000000pt;}
.x6d_c00254{left:303.066667pt;}
.xc_c00254{left:304.133333pt;}
.x75_c00254{left:305.466667pt;}
.x7d_c00254{left:307.066667pt;}
.xa9_c00254{left:308.133333pt;}
.x51_c00254{left:309.200000pt;}
.x9b_c00254{left:310.133333pt;}
.x33_c00254{left:311.066667pt;}
.x8a_c00254{left:312.000000pt;}
.x61_c00254{left:313.466667pt;}
.x40_c00254{left:314.666667pt;}
.x20_c00254{left:317.600000pt;}
.xa0_c00254{left:320.000000pt;}
.x76_c00254{left:322.400000pt;}
.x4d_c00254{left:323.333333pt;}
.x16_c00254{left:324.400000pt;}
.x96_c00254{left:325.866667pt;}
.x8d_c00254{left:326.933333pt;}
.x2c_c00254{left:328.133333pt;}
.xaa_c00254{left:329.200000pt;}
.x94_c00254{left:331.066667pt;}
.x5c_c00254{left:332.666667pt;}
.x38_c00254{left:333.733333pt;}
.x8c_c00254{left:335.733333pt;}
.x97_c00254{left:336.800000pt;}
.x86_c00254{left:338.000000pt;}
.x48_c00254{left:339.333333pt;}
.x69_c00254{left:340.400000pt;}
.xae_c00254{left:341.333333pt;}
.x6e_c00254{left:342.400000pt;}
.x74_c00254{left:343.333333pt;}
.x1b_c00254{left:346.133333pt;}
.x9c_c00254{left:348.266667pt;}
.x2d_c00254{left:349.866667pt;}
.x58_c00254{left:352.800000pt;}
.x91_c00254{left:355.333333pt;}
.x87_c00254{left:358.533333pt;}
.x41_c00254{left:361.066667pt;}
.x52_c00254{left:362.266667pt;}
.x6f_c00254{left:363.466667pt;}
.x44_c00254{left:364.800000pt;}
.x6a_c00254{left:365.733333pt;}
.xd_c00254{left:369.733333pt;}
.x34_c00254{left:371.466667pt;}
.xec_c00254{left:393.866667pt;}
.xfc_c00254{left:397.066667pt;}
.x149_c00254{left:402.933333pt;}
.xb0_c00254{left:406.666667pt;}
.xbf_c00254{left:407.866667pt;}
.xd4_c00254{left:408.933333pt;}
.xef_c00254{left:410.266667pt;}
.xfb_c00254{left:411.600000pt;}
.x110_c00254{left:412.533333pt;}
.x141_c00254{left:413.466667pt;}
.x146_c00254{left:414.933333pt;}
.x11a_c00254{left:418.266667pt;}
.xc2_c00254{left:423.733333pt;}
.xe0_c00254{left:425.600000pt;}
.xcb_c00254{left:427.466667pt;}
.xb8_c00254{left:428.800000pt;}
.xdb_c00254{left:430.400000pt;}
.xfd_c00254{left:432.266667pt;}
.x12e_c00254{left:434.000000pt;}
.x11b_c00254{left:434.933333pt;}
.xb1_c00254{left:437.066667pt;}
.xdc_c00254{left:438.666667pt;}
.x108_c00254{left:442.133333pt;}
.xc7_c00254{left:443.333333pt;}
.xd0_c00254{left:447.333333pt;}
.xe8_c00254{left:448.533333pt;}
.xc3_c00254{left:450.266667pt;}
.xf3_c00254{left:451.733333pt;}
.x13e_c00254{left:453.600000pt;}
.xed_c00254{left:455.333333pt;}
.x129_c00254{left:457.733333pt;}
.x117_c00254{left:458.933333pt;}
.xd5_c00254{left:460.133333pt;}
.xd1_c00254{left:462.000000pt;}
.x122_c00254{left:463.466667pt;}
.xfe_c00254{left:464.533333pt;}
.x137_c00254{left:465.733333pt;}
.xcc_c00254{left:467.200000pt;}
.xf0_c00254{left:469.466667pt;}
.xdd_c00254{left:470.933333pt;}
.xb2_c00254{left:472.533333pt;}
.x135_c00254{left:474.133333pt;}
.x11f_c00254{left:475.733333pt;}
.xc0_c00254{left:477.333333pt;}
.xb9_c00254{left:479.333333pt;}
.xd6_c00254{left:480.666667pt;}
.x10d_c00254{left:481.600000pt;}
.x14a_c00254{left:484.133333pt;}
.xe1_c00254{left:485.200000pt;}
.x142_c00254{left:487.066667pt;}
.x12b_c00254{left:488.800000pt;}
.x144_c00254{left:490.800000pt;}
.x118_c00254{left:491.866667pt;}
.xc1_c00254{left:493.333333pt;}
.x11c_c00254{left:494.800000pt;}
.xf5_c00254{left:495.733333pt;}
.xba_c00254{left:496.933333pt;}
.x124_c00254{left:499.466667pt;}
.x103_c00254{left:500.533333pt;}
.x111_c00254{left:502.666667pt;}
.x143_c00254{left:503.733333pt;}
.xc4_c00254{left:504.666667pt;}
.x12f_c00254{left:506.000000pt;}
.x119_c00254{left:507.866667pt;}
.x13a_c00254{left:508.933333pt;}
.xd7_c00254{left:510.400000pt;}
.x120_c00254{left:512.533333pt;}
.xcd_c00254{left:513.600000pt;}
.x12c_c00254{left:515.066667pt;}
.xe9_c00254{left:516.400000pt;}
.xf6_c00254{left:517.866667pt;}
.x11d_c00254{left:522.000000pt;}
.x104_c00254{left:523.200000pt;}
.xff_c00254{left:525.600000pt;}
.xea_c00254{left:527.333333pt;}
.xd8_c00254{left:529.333333pt;}
.x133_c00254{left:531.466667pt;}
.xc8_c00254{left:533.600000pt;}
.x115_c00254{left:534.666667pt;}
.x13f_c00254{left:536.000000pt;}
.xf7_c00254{left:538.000000pt;}
.xf4_c00254{left:539.733333pt;}
.xb3_c00254{left:543.600000pt;}
.xe2_c00254{left:545.733333pt;}
.x138_c00254{left:548.800000pt;}
.x125_c00254{left:552.933333pt;}
.xde_c00254{left:554.400000pt;}
.x105_c00254{left:556.133333pt;}
.xb4_c00254{left:559.333333pt;}
.xbb_c00254{left:562.266667pt;}
.x139_c00254{left:563.866667pt;}
.xe3_c00254{left:566.533333pt;}
.xc5_c00254{left:567.733333pt;}
.xf8_c00254{left:569.066667pt;}
.x109_c00254{left:570.666667pt;}
.xd9_c00254{left:571.866667pt;}
.x13b_c00254{left:572.933333pt;}
.xf1_c00254{left:573.866667pt;}
.x126_c00254{left:579.200000pt;}
.xe4_c00254{left:581.866667pt;}
.xbc_c00254{left:583.333333pt;}
.x100_c00254{left:587.333333pt;}
.xb5_c00254{left:588.800000pt;}
.x134_c00254{left:593.200000pt;}
.x12d_c00254{left:594.400000pt;}
.x101_c00254{left:595.600000pt;}
.x112_c00254{left:596.800000pt;}
.x10b_c00254{left:598.400000pt;}
.x123_c00254{left:599.466667pt;}
.x106_c00254{left:600.933333pt;}
.x12a_c00254{left:602.800000pt;}
.xe5_c00254{left:604.533333pt;}
.x10e_c00254{left:605.466667pt;}
.x140_c00254{left:607.066667pt;}
.x10c_c00254{left:608.666667pt;}
.x147_c00254{left:612.000000pt;}
.xb6_c00254{left:613.066667pt;}
.xdf_c00254{left:615.200000pt;}
.x113_c00254{left:616.666667pt;}
.xbd_c00254{left:618.800000pt;}
.x136_c00254{left:620.266667pt;}
.xf9_c00254{left:621.200000pt;}
.xee_c00254{left:622.266667pt;}
.xe6_c00254{left:623.466667pt;}
.x11e_c00254{left:625.333333pt;}
.x127_c00254{left:627.866667pt;}
.x130_c00254{left:629.200000pt;}
.xc6_c00254{left:630.133333pt;}
.x102_c00254{left:634.000000pt;}
.xc9_c00254{left:635.066667pt;}
.xd2_c00254{left:636.666667pt;}
.xce_c00254{left:638.000000pt;}
.x145_c00254{left:641.466667pt;}
.xe7_c00254{left:644.933333pt;}
.x116_c00254{left:646.000000pt;}
.xbe_c00254{left:647.866667pt;}
.xb7_c00254{left:649.866667pt;}
.x13c_c00254{left:651.733333pt;}
.x114_c00254{left:654.133333pt;}
.xca_c00254{left:655.600000pt;}
.xd3_c00254{left:658.800000pt;}
.xda_c00254{left:659.866667pt;}
.xfa_c00254{left:661.466667pt;}
.x10f_c00254{left:662.800000pt;}
.xf2_c00254{left:664.400000pt;}
.x3_c00254{left:667.200000pt;}
.x10a_c00254{left:669.200000pt;}
.x13d_c00254{left:671.866667pt;}
.x121_c00254{left:673.466667pt;}
.x2_c00254{left:675.466667pt;}
.x132_c00254{left:676.533333pt;}
.xeb_c00254{left:679.333333pt;}
.x131_c00254{left:681.066667pt;}
.x148_c00254{left:684.000000pt;}
.x107_c00254{left:686.266667pt;}
.x128_c00254{left:687.466667pt;}
.xcf_c00254{left:698.533333pt;}
}





/* 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_c00255 {
    display:none;
  }
  .loading-indicator_c00255.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00255 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_c00255 { 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_c00255" -> "#page-container .classname_c00255")
 */
.pf_c00255 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00255 { /* 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_c00255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00255 { /* 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_c00255 { /* 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_c00255 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00255 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00255 {overflow:visible;}
  }
}
.c_c00255 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00255 { /* 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_c00255:after { /* webkit #35443 */
  content: '';
}
.t_c00255:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00255 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 */
}
.__c00255 { /* 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_c00255 { /* info for Javascript */
  display:none;
}
.l_c00255 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00255 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00255 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00255: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_c00255 {
    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_c00255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00255.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_c00255 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00255;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.000000;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;}
.m10b_c00255{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00255{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m59_c00255{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00255{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me6_c00255{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00255{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00255{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00255{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00255{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m96_c00255{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m73_c00255{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m17_c00255{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00255{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00255{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.md5_c00255{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me7_c00255{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m80_c00255{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m30_c00255{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00255{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m84_c00255{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m67_c00255{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00255{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00255{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m49_c00255{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me_c00255{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me3_c00255{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00255{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.me0_c00255{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m11_c00255{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00255{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00255{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00255{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m12_c00255{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m100_c00255{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m93_c00255{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00255{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00255{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mee_c00255{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.me1_c00255{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00255{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00255{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m68_c00255{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00255{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m94_c00255{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m21_c00255{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mce_c00255{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mef_c00255{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00255{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m50_c00255{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m69_c00255{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00255{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00255{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mac_c00255{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00255{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m31_c00255{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mad_c00255{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00255{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00255{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00255{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m74_c00255{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00255{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m24_c00255{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m54_c00255{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m19_c00255{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00255{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00255{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00255{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m102_c00255{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m48_c00255{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00255{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00255{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00255{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.md6_c00255{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00255{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m41_c00255{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m22_c00255{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m63_c00255{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m101_c00255{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m15_c00255{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m75_c00255{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m55_c00255{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m53_c00255{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00255{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m89_c00255{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mba_c00255{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00255{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md1_c00255{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00255{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m104_c00255{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.md3_c00255{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m46_c00255{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00255{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m35_c00255{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00255{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m107_c00255{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m64_c00255{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m106_c00255{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m45_c00255{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00255{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00255{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m79_c00255{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mea_c00255{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m111_c00255{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00255{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mab_c00255{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m86_c00255{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00255{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m58_c00255{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00255{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00255{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m37_c00255{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m18_c00255{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m60_c00255{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.me4_c00255{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00255{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m62_c00255{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00255{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m66_c00255{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00255{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m14_c00255{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me8_c00255{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00255{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m13_c00255{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00255{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m92_c00255{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00255{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m16_c00255{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m90_c00255{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf_c00255{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m95_c00255{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00255{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md2_c00255{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m20_c00255{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00255{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m29_c00255{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m108_c00255{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00255{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00255{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00255{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m76_c00255{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md7_c00255{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m28_c00255{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.maa_c00255{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00255{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m10_c00255{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m65_c00255{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00255{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m61_c00255{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m78_c00255{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m47_c00255{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00255{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md8_c00255{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m43_c00255{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me5_c00255{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00255{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00255{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m36_c00255{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00255{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m99_c00255{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00255{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mae_c00255{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md0_c00255{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00255{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m87_c00255{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m33_c00255{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m83_c00255{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m27_c00255{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m71_c00255{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m77_c00255{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00255{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00255{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m39_c00255{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00255{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mff_c00255{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m23_c00255{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mda_c00255{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00255{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m85_c00255{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m51_c00255{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00255{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00255{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00255{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m110_c00255{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00255{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m70_c00255{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m52_c00255{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00255{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m109_c00255{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00255{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4_c00255{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00255{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00255{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00255{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00255{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00255{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00255{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mca_c00255{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00255{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m105_c00255{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00255{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.md9_c00255{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m40_c00255{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00255{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m32_c00255{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m98_c00255{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m34_c00255{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m91_c00255{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00255{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00255{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m81_c00255{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m97_c00255{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00255{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m112_c00255{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00255{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00255{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00255{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m72_c00255{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00255{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m38_c00255{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.maf_c00255{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00255{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m57_c00255{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00255{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00255{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m25_c00255{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00255{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me9_c00255{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00255{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00255{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00255{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m113_c00255{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00255{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m82_c00255{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me2_c00255{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m103_c00255{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m44_c00255{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00255{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00255{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00255{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00255{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00255{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00255{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mde_c00255{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00255{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00255{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mec_c00255{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00255{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m42_c00255{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00255{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m88_c00255{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00255{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m26_c00255{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.med_c00255{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00255{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.meb_c00255{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00255{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m56_c00255{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00255{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00255{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00255{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00255{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00255{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md4_c00255{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls0_c00255{letter-spacing:0.000000px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{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__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00255{word-spacing:-7.458101px;}
.ws6_c00255{word-spacing:-4.246792px;}
.ws4_c00255{word-spacing:-3.981630px;}
.ws5_c00255{word-spacing:-3.582210px;}
.ws0_c00255{word-spacing:-2.651163px;}
.ws3_c00255{word-spacing:-1.069658px;}
.ws7_c00255{word-spacing:0.000000px;}
.ws2_c00255{word-spacing:3.541779px;}
.fc0_c00255{color:transparent;}
.fs4_c00255{font-size:18.000000px;}
.fs7_c00255{font-size:24.000000px;}
.fs5_c00255{font-size:30.000000px;}
.fs6_c00255{font-size:54.000000px;}
.fs3_c00255{font-size:60.000000px;}
.fs2_c00255{font-size:66.000000px;}
.fs0_c00255{font-size:72.000000px;}
.fs1_c00255{font-size:84.000000px;}
.y0_c00255{bottom:0.000000px;}
.y6a_c00255{bottom:166.350000px;}
.y69_c00255{bottom:186.450000px;}
.y36_c00255{bottom:188.100000px;}
.y35_c00255{bottom:201.450000px;}
.y68_c00255{bottom:204.450000px;}
.y34_c00255{bottom:215.850000px;}
.y67_c00255{bottom:222.150000px;}
.y33_c00255{bottom:230.250000px;}
.y66_c00255{bottom:244.800000px;}
.y32_c00255{bottom:245.400000px;}
.y31_c00255{bottom:259.500000px;}
.y65_c00255{bottom:262.650000px;}
.y64_c00255{bottom:280.350000px;}
.y30_c00255{bottom:283.650000px;}
.y63_c00255{bottom:298.650000px;}
.y2f_c00255{bottom:309.150000px;}
.y62_c00255{bottom:316.350000px;}
.y2e_c00255{bottom:327.150000px;}
.y61_c00255{bottom:334.350000px;}
.y2d_c00255{bottom:344.850000px;}
.y60_c00255{bottom:352.350000px;}
.y2c_c00255{bottom:362.850000px;}
.y5f_c00255{bottom:370.350000px;}
.y2b_c00255{bottom:380.550000px;}
.y5e_c00255{bottom:388.650000px;}
.y2a_c00255{bottom:398.550000px;}
.y5d_c00255{bottom:406.350000px;}
.y29_c00255{bottom:416.550000px;}
.y5c_c00255{bottom:424.050000px;}
.y28_c00255{bottom:434.550000px;}
.y5b_c00255{bottom:442.050000px;}
.y27_c00255{bottom:456.750000px;}
.y5a_c00255{bottom:460.050000px;}
.y26_c00255{bottom:475.050000px;}
.y59_c00255{bottom:478.050000px;}
.y25_c00255{bottom:492.750000px;}
.y58_c00255{bottom:505.050000px;}
.y24_c00255{bottom:510.750000px;}
.y57_c00255{bottom:511.200000px;}
.y23_c00255{bottom:520.500000px;}
.y56_c00255{bottom:523.350000px;}
.y22_c00255{bottom:528.450000px;}
.y55_c00255{bottom:541.050000px;}
.y21_c00255{bottom:546.450000px;}
.y54_c00255{bottom:558.300000px;}
.y20_c00255{bottom:564.450000px;}
.y53_c00255{bottom:585.300000px;}
.y1f_c00255{bottom:586.800000px;}
.y52_c00255{bottom:603.000000px;}
.y1e_c00255{bottom:604.500000px;}
.y51_c00255{bottom:621.000000px;}
.y1d_c00255{bottom:622.500000px;}
.y50_c00255{bottom:639.000000px;}
.y1c_c00255{bottom:640.650000px;}
.y4f_c00255{bottom:656.550000px;}
.y1b_c00255{bottom:658.350000px;}
.y1a_c00255{bottom:676.350000px;}
.y4e_c00255{bottom:677.850000px;}
.y19_c00255{bottom:694.350000px;}
.y18_c00255{bottom:712.050000px;}
.y4d_c00255{bottom:712.800000px;}
.y4c_c00255{bottom:731.100000px;}
.y17_c00255{bottom:734.250000px;}
.y4b_c00255{bottom:748.800000px;}
.y16_c00255{bottom:752.250000px;}
.y4a_c00255{bottom:766.800000px;}
.y15_c00255{bottom:770.250000px;}
.y49_c00255{bottom:784.500000px;}
.y14_c00255{bottom:788.250000px;}
.y13_c00255{bottom:806.250000px;}
.y48_c00255{bottom:806.400000px;}
.y12_c00255{bottom:823.500000px;}
.y47_c00255{bottom:824.100000px;}
.y11_c00255{bottom:841.500000px;}
.y46_c00255{bottom:842.400000px;}
.y10_c00255{bottom:859.800000px;}
.y45_c00255{bottom:860.100000px;}
.yf_c00255{bottom:877.500000px;}
.y44_c00255{bottom:878.100000px;}
.ye_c00255{bottom:895.500000px;}
.y43_c00255{bottom:896.400000px;}
.yd_c00255{bottom:913.200000px;}
.y42_c00255{bottom:913.650000px;}
.yc_c00255{bottom:931.200000px;}
.y41_c00255{bottom:931.650000px;}
.yb_c00255{bottom:948.900000px;}
.y40_c00255{bottom:949.650000px;}
.ya_c00255{bottom:966.900000px;}
.y3f_c00255{bottom:971.400000px;}
.y9_c00255{bottom:984.900000px;}
.y3e_c00255{bottom:989.100000px;}
.y8_c00255{bottom:1002.900000px;}
.y3d_c00255{bottom:1007.400000px;}
.y7_c00255{bottom:1020.600000px;}
.y3c_c00255{bottom:1025.100000px;}
.y6_c00255{bottom:1038.300000px;}
.y3b_c00255{bottom:1043.100000px;}
.y5_c00255{bottom:1060.500000px;}
.y3a_c00255{bottom:1060.800000px;}
.y4_c00255{bottom:1078.500000px;}
.y39_c00255{bottom:1079.550000px;}
.y3_c00255{bottom:1096.800000px;}
.y38_c00255{bottom:1097.250000px;}
.y2_c00255{bottom:1114.500000px;}
.y37_c00255{bottom:1114.950000px;}
.y1_c00255{bottom:1141.200000px;}
.h6_c00255{height:18.000000px;}
.h9_c00255{height:24.000000px;}
.h7_c00255{height:30.000000px;}
.h8_c00255{height:54.000000px;}
.h5_c00255{height:60.000000px;}
.h4_c00255{height:66.000000px;}
.h2_c00255{height:72.000000px;}
.h3_c00255{height:84.000000px;}
.h1_c00255{height:1261.500000px;}
.h0_c00255{height:1261.800018px;}
.w1_c00255{width:961.500000px;}
.w0_c00255{width:961.560058px;}
.x0_c00255{left:0.000000px;}
.xa1_c00255{left:180.300000px;}
.x99_c00255{left:181.800000px;}
.x1_c00255{left:184.350000px;}
.x1c_c00255{left:189.300000px;}
.x86_c00255{left:194.400000px;}
.x9a_c00255{left:195.450000px;}
.x6f_c00255{left:197.550000px;}
.x42_c00255{left:198.600000px;}
.xd_c00255{left:199.950000px;}
.x4_c00255{left:201.600000px;}
.xaa_c00255{left:203.100000px;}
.xa6_c00255{left:211.500000px;}
.x71_c00255{left:215.700000px;}
.x63_c00255{left:217.050000px;}
.xa2_c00255{left:218.550000px;}
.x1e_c00255{left:220.650000px;}
.x89_c00255{left:225.600000px;}
.x96_c00255{left:227.550000px;}
.x48_c00255{left:230.850000px;}
.x33_c00255{left:232.050000px;}
.x28_c00255{left:234.150000px;}
.x8f_c00255{left:236.700000px;}
.x3c_c00255{left:238.350000px;}
.x5_c00255{left:239.700000px;}
.x69_c00255{left:241.500000px;}
.x43_c00255{left:242.850000px;}
.xa7_c00255{left:244.950000px;}
.x84_c00255{left:246.600000px;}
.x7b_c00255{left:247.650000px;}
.x59_c00255{left:249.000000px;}
.x2e_c00255{left:250.500000px;}
.x46_c00255{left:253.200000px;}
.xa3_c00255{left:254.250000px;}
.x82_c00255{left:255.600000px;}
.x51_c00255{left:256.800000px;}
.x25_c00255{left:258.600000px;}
.x9f_c00255{left:260.100000px;}
.x17_c00255{left:262.200000px;}
.x38_c00255{left:263.250000px;}
.xa8_c00255{left:265.050000px;}
.x67_c00255{left:266.250000px;}
.x72_c00255{left:268.200000px;}
.x6_c00255{left:269.550000px;}
.xa4_c00255{left:271.500000px;}
.xe_c00255{left:273.750000px;}
.x1f_c00255{left:277.200000px;}
.x1d_c00255{left:279.600000px;}
.x6a_c00255{left:280.800000px;}
.x64_c00255{left:281.850000px;}
.x34_c00255{left:284.250000px;}
.x76_c00255{left:285.750000px;}
.x7e_c00255{left:289.800000px;}
.x4e_c00255{left:291.450000px;}
.x29_c00255{left:293.250000px;}
.x6b_c00255{left:294.900000px;}
.x54_c00255{left:296.100000px;}
.x20_c00255{left:298.050000px;}
.x85_c00255{left:299.550000px;}
.xf_c00255{left:301.050000px;}
.x73_c00255{left:303.900000px;}
.x3d_c00255{left:306.000000px;}
.x47_c00255{left:308.250000px;}
.x90_c00255{left:309.450000px;}
.x49_c00255{left:311.100000px;}
.x2f_c00255{left:314.250000px;}
.x87_c00255{left:317.100000px;}
.x55_c00255{left:318.750000px;}
.x52_c00255{left:320.100000px;}
.xab_c00255{left:322.950000px;}
.xad_c00255{left:325.200000px;}
.x10_c00255{left:326.250000px;}
.x35_c00255{left:327.750000px;}
.x5a_c00255{left:328.950000px;}
.x77_c00255{left:330.000000px;}
.xa9_c00255{left:331.200000px;}
.x18_c00255{left:332.400000px;}
.x7_c00255{left:334.350000px;}
.x3e_c00255{left:336.600000px;}
.x21_c00255{left:337.950000px;}
.x60_c00255{left:339.450000px;}
.x61_c00255{left:340.650000px;}
.x94_c00255{left:343.950000px;}
.x4f_c00255{left:346.200000px;}
.x2a_c00255{left:347.550000px;}
.x8d_c00255{left:348.750000px;}
.x6c_c00255{left:349.950000px;}
.x39_c00255{left:354.300000px;}
.x70_c00255{left:356.250000px;}
.x4a_c00255{left:359.400000px;}
.x22_c00255{left:366.450000px;}
.x93_c00255{left:368.250000px;}
.x26_c00255{left:370.200000px;}
.x83_c00255{left:371.550000px;}
.x3f_c00255{left:372.600000px;}
.x9d_c00255{left:373.800000px;}
.x19_c00255{left:374.850000px;}
.x8e_c00255{left:376.050000px;}
.x80_c00255{left:378.900000px;}
.x44_c00255{left:380.100000px;}
.x95_c00255{left:381.450000px;}
.x91_c00255{left:384.000000px;}
.x5b_c00255{left:385.050000px;}
.x8_c00255{left:388.050000px;}
.x53_c00255{left:389.250000px;}
.x30_c00255{left:390.900000px;}
.xa5_c00255{left:392.100000px;}
.x62_c00255{left:393.600000px;}
.x11_c00255{left:396.450000px;}
.x8a_c00255{left:397.800000px;}
.xac_c00255{left:399.300000px;}
.x74_c00255{left:405.450000px;}
.x5c_c00255{left:406.650000px;}
.x36_c00255{left:408.000000px;}
.x92_c00255{left:409.500000px;}
.x3a_c00255{left:410.850000px;}
.x12_c00255{left:412.950000px;}
.x9_c00255{left:414.300000px;}
.x27_c00255{left:416.250000px;}
.x50_c00255{left:418.200000px;}
.x78_c00255{left:420.300000px;}
.x2b_c00255{left:422.400000px;}
.x56_c00255{left:423.900000px;}
.x4b_c00255{left:425.700000px;}
.x7d_c00255{left:426.900000px;}
.x2_c00255{left:429.150000px;}
.x97_c00255{left:430.350000px;}
.x2c_c00255{left:431.700000px;}
.x13_c00255{left:433.500000px;}
.x1a_c00255{left:434.700000px;}
.x79_c00255{left:436.200000px;}
.x75_c00255{left:437.850000px;}
.x23_c00255{left:439.200000px;}
.x81_c00255{left:440.850000px;}
.xa0_c00255{left:442.650000px;}
.x4c_c00255{left:443.700000px;}
.x14_c00255{left:445.350000px;}
.x98_c00255{left:446.850000px;}
.x40_c00255{left:448.200000px;}
.x8b_c00255{left:449.250000px;}
.xa_c00255{left:450.600000px;}
.x5d_c00255{left:452.400000px;}
.x57_c00255{left:453.750000px;}
.x9b_c00255{left:456.300000px;}
.x7f_c00255{left:457.800000px;}
.xb_c00255{left:458.850000px;}
.x24_c00255{left:461.550000px;}
.x41_c00255{left:462.900000px;}
.x68_c00255{left:464.700000px;}
.x6d_c00255{left:467.250000px;}
.x31_c00255{left:468.300000px;}
.x65_c00255{left:469.650000px;}
.x4d_c00255{left:471.750000px;}
.x15_c00255{left:473.400000px;}
.x2d_c00255{left:474.900000px;}
.x88_c00255{left:476.100000px;}
.x6e_c00255{left:478.350000px;}
.x66_c00255{left:480.450000px;}
.x37_c00255{left:481.800000px;}
.x3b_c00255{left:483.900000px;}
.x5e_c00255{left:485.550000px;}
.xc_c00255{left:486.900000px;}
.x32_c00255{left:488.400000px;}
.x16_c00255{left:491.100000px;}
.x58_c00255{left:492.300000px;}
.x9e_c00255{left:494.700000px;}
.x7a_c00255{left:497.100000px;}
.x8c_c00255{left:501.450000px;}
.x5f_c00255{left:502.500000px;}
.x1b_c00255{left:504.600000px;}
.x7c_c00255{left:506.100000px;}
.x45_c00255{left:507.300000px;}
.x9c_c00255{left:513.450000px;}
.x10a_c00255{left:537.900000px;}
.xeb_c00255{left:538.950000px;}
.x117_c00255{left:554.850000px;}
.xdc_c00255{left:556.200000px;}
.xae_c00255{left:557.700000px;}
.x145_c00255{left:573.150000px;}
.x103_c00255{left:574.650000px;}
.xdd_c00255{left:575.700000px;}
.xfa_c00255{left:579.000000px;}
.x118_c00255{left:580.800000px;}
.x128_c00255{left:582.150000px;}
.x130_c00255{left:583.500000px;}
.xff_c00255{left:584.700000px;}
.xb5_c00255{left:588.150000px;}
.x109_c00255{left:589.800000px;}
.xe4_c00255{left:592.500000px;}
.x11c_c00255{left:595.950000px;}
.x115_c00255{left:598.500000px;}
.xec_c00255{left:601.200000px;}
.xf6_c00255{left:602.400000px;}
.xcb_c00255{left:603.600000px;}
.xbc_c00255{left:605.550000px;}
.x10b_c00255{left:607.350000px;}
.x13e_c00255{left:611.250000px;}
.x11d_c00255{left:617.100000px;}
.xd0_c00255{left:618.750000px;}
.xc4_c00255{left:620.550000px;}
.xe5_c00255{left:621.600000px;}
.xf7_c00255{left:623.250000px;}
.xde_c00255{left:624.300000px;}
.xaf_c00255{left:625.800000px;}
.x100_c00255{left:627.900000px;}
.x12e_c00255{left:629.850000px;}
.xbd_c00255{left:631.500000px;}
.x121_c00255{left:633.450000px;}
.xd5_c00255{left:634.800000px;}
.x10f_c00255{left:637.950000px;}
.xe6_c00255{left:639.900000px;}
.xdf_c00255{left:643.800000px;}
.x119_c00255{left:645.300000px;}
.xfd_c00255{left:647.100000px;}
.x129_c00255{left:649.500000px;}
.x110_c00255{left:653.100000px;}
.x101_c00255{left:654.150000px;}
.xfb_c00255{left:656.700000px;}
.x136_c00255{left:659.100000px;}
.xc5_c00255{left:660.450000px;}
.xb0_c00255{left:662.550000px;}
.xe7_c00255{left:666.150000px;}
.x126_c00255{left:667.350000px;}
.xb6_c00255{left:669.600000px;}
.x12b_c00255{left:671.100000px;}
.xd6_c00255{left:672.900000px;}
.xf1_c00255{left:675.300000px;}
.x141_c00255{left:676.350000px;}
.xe0_c00255{left:677.700000px;}
.x13b_c00255{left:678.750000px;}
.x12a_c00255{left:680.100000px;}
.xbe_c00255{left:681.900000px;}
.x104_c00255{left:683.700000px;}
.x111_c00255{left:685.200000px;}
.x11e_c00255{left:687.000000px;}
.xcc_c00255{left:689.700000px;}
.xed_c00255{left:691.650000px;}
.xf2_c00255{left:694.800000px;}
.xd1_c00255{left:697.200000px;}
.x13f_c00255{left:698.400000px;}
.xb1_c00255{left:699.600000px;}
.xe1_c00255{left:701.100000px;}
.x12c_c00255{left:703.200000px;}
.x102_c00255{left:704.550000px;}
.x135_c00255{left:705.600000px;}
.x112_c00255{left:707.100000px;}
.x148_c00255{left:710.550000px;}
.xc6_c00255{left:711.600000px;}
.xbf_c00255{left:713.250000px;}
.x3_c00255{left:716.100000px;}
.x12d_c00255{left:717.300000px;}
.xd7_c00255{left:720.300000px;}
.x105_c00255{left:722.550000px;}
.xe8_c00255{left:723.750000px;}
.xb2_c00255{left:725.550000px;}
.xd2_c00255{left:726.750000px;}
.x113_c00255{left:727.950000px;}
.xf3_c00255{left:729.000000px;}
.xc7_c00255{left:731.100000px;}
.xf5_c00255{left:733.050000px;}
.xd8_c00255{left:736.200000px;}
.xb7_c00255{left:737.250000px;}
.x11a_c00255{left:740.100000px;}
.xe9_c00255{left:741.750000px;}
.xf8_c00255{left:743.550000px;}
.xb8_c00255{left:747.750000px;}
.x131_c00255{left:749.550000px;}
.x116_c00255{left:752.100000px;}
.xee_c00255{left:753.600000px;}
.xcd_c00255{left:756.600000px;}
.x139_c00255{left:757.650000px;}
.x144_c00255{left:759.450000px;}
.x106_c00255{left:761.100000px;}
.xe2_c00255{left:763.050000px;}
.xd9_c00255{left:764.250000px;}
.xc8_c00255{left:769.200000px;}
.xb3_c00255{left:770.550000px;}
.x10c_c00255{left:772.350000px;}
.x124_c00255{left:773.700000px;}
.xc0_c00255{left:775.200000px;}
.xce_c00255{left:777.150000px;}
.x11f_c00255{left:778.950000px;}
.x149_c00255{left:780.000000px;}
.x142_c00255{left:782.550000px;}
.x122_c00255{left:783.900000px;}
.x13a_c00255{left:784.950000px;}
.x132_c00255{left:786.000000px;}
.xb9_c00255{left:788.400000px;}
.x13d_c00255{left:789.450000px;}
.xfe_c00255{left:791.400000px;}
.x10d_c00255{left:793.650000px;}
.x133_c00255{left:796.050000px;}
.xc1_c00255{left:797.850000px;}
.xd3_c00255{left:799.050000px;}
.x137_c00255{left:800.250000px;}
.xcf_c00255{left:801.300000px;}
.xef_c00255{left:803.700000px;}
.x127_c00255{left:804.750000px;}
.x146_c00255{left:807.900000px;}
.x107_c00255{left:809.400000px;}
.x123_c00255{left:810.600000px;}
.x125_c00255{left:812.400000px;}
.xf4_c00255{left:813.600000px;}
.xea_c00255{left:814.800000px;}
.x114_c00255{left:815.850000px;}
.xda_c00255{left:819.300000px;}
.x120_c00255{left:822.450000px;}
.x10e_c00255{left:823.500000px;}
.xba_c00255{left:824.700000px;}
.xf0_c00255{left:826.800000px;}
.xc2_c00255{left:828.150000px;}
.x12f_c00255{left:829.350000px;}
.xb4_c00255{left:831.450000px;}
.xc9_c00255{left:834.000000px;}
.x140_c00255{left:835.800000px;}
.xf9_c00255{left:837.150000px;}
.x134_c00255{left:841.350000px;}
.x138_c00255{left:845.250000px;}
.x13c_c00255{left:846.300000px;}
.xca_c00255{left:848.400000px;}
.x108_c00255{left:850.050000px;}
.x143_c00255{left:852.750000px;}
.x14a_c00255{left:853.800000px;}
.xdb_c00255{left:855.300000px;}
.xfc_c00255{left:858.000000px;}
.xbb_c00255{left:862.200000px;}
.xd4_c00255{left:863.850000px;}
.xe3_c00255{left:865.650000px;}
.xc3_c00255{left:866.700000px;}
.x147_c00255{left:868.350000px;}
.x11b_c00255{left:872.700000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws1_c00255{word-spacing:-6.629423pt;}
.ws6_c00255{word-spacing:-3.774926pt;}
.ws4_c00255{word-spacing:-3.539227pt;}
.ws5_c00255{word-spacing:-3.184187pt;}
.ws0_c00255{word-spacing:-2.356589pt;}
.ws3_c00255{word-spacing:-0.950807pt;}
.ws7_c00255{word-spacing:0.000000pt;}
.ws2_c00255{word-spacing:3.148248pt;}
.fs4_c00255{font-size:16.000000pt;}
.fs7_c00255{font-size:21.333333pt;}
.fs5_c00255{font-size:26.666667pt;}
.fs6_c00255{font-size:48.000000pt;}
.fs3_c00255{font-size:53.333333pt;}
.fs2_c00255{font-size:58.666667pt;}
.fs0_c00255{font-size:64.000000pt;}
.fs1_c00255{font-size:74.666667pt;}
.y0_c00255{bottom:0.000000pt;}
.y6a_c00255{bottom:147.866667pt;}
.y69_c00255{bottom:165.733333pt;}
.y36_c00255{bottom:167.200000pt;}
.y35_c00255{bottom:179.066667pt;}
.y68_c00255{bottom:181.733333pt;}
.y34_c00255{bottom:191.866667pt;}
.y67_c00255{bottom:197.466667pt;}
.y33_c00255{bottom:204.666667pt;}
.y66_c00255{bottom:217.600000pt;}
.y32_c00255{bottom:218.133333pt;}
.y31_c00255{bottom:230.666667pt;}
.y65_c00255{bottom:233.466667pt;}
.y64_c00255{bottom:249.200000pt;}
.y30_c00255{bottom:252.133333pt;}
.y63_c00255{bottom:265.466667pt;}
.y2f_c00255{bottom:274.800000pt;}
.y62_c00255{bottom:281.200000pt;}
.y2e_c00255{bottom:290.800000pt;}
.y61_c00255{bottom:297.200000pt;}
.y2d_c00255{bottom:306.533333pt;}
.y60_c00255{bottom:313.200000pt;}
.y2c_c00255{bottom:322.533333pt;}
.y5f_c00255{bottom:329.200000pt;}
.y2b_c00255{bottom:338.266667pt;}
.y5e_c00255{bottom:345.466667pt;}
.y2a_c00255{bottom:354.266667pt;}
.y5d_c00255{bottom:361.200000pt;}
.y29_c00255{bottom:370.266667pt;}
.y5c_c00255{bottom:376.933333pt;}
.y28_c00255{bottom:386.266667pt;}
.y5b_c00255{bottom:392.933333pt;}
.y27_c00255{bottom:406.000000pt;}
.y5a_c00255{bottom:408.933333pt;}
.y26_c00255{bottom:422.266667pt;}
.y59_c00255{bottom:424.933333pt;}
.y25_c00255{bottom:438.000000pt;}
.y58_c00255{bottom:448.933333pt;}
.y24_c00255{bottom:454.000000pt;}
.y57_c00255{bottom:454.400000pt;}
.y23_c00255{bottom:462.666667pt;}
.y56_c00255{bottom:465.200000pt;}
.y22_c00255{bottom:469.733333pt;}
.y55_c00255{bottom:480.933333pt;}
.y21_c00255{bottom:485.733333pt;}
.y54_c00255{bottom:496.266667pt;}
.y20_c00255{bottom:501.733333pt;}
.y53_c00255{bottom:520.266667pt;}
.y1f_c00255{bottom:521.600000pt;}
.y52_c00255{bottom:536.000000pt;}
.y1e_c00255{bottom:537.333333pt;}
.y51_c00255{bottom:552.000000pt;}
.y1d_c00255{bottom:553.333333pt;}
.y50_c00255{bottom:568.000000pt;}
.y1c_c00255{bottom:569.466667pt;}
.y4f_c00255{bottom:583.600000pt;}
.y1b_c00255{bottom:585.200000pt;}
.y1a_c00255{bottom:601.200000pt;}
.y4e_c00255{bottom:602.533333pt;}
.y19_c00255{bottom:617.200000pt;}
.y18_c00255{bottom:632.933333pt;}
.y4d_c00255{bottom:633.600000pt;}
.y4c_c00255{bottom:649.866667pt;}
.y17_c00255{bottom:652.666667pt;}
.y4b_c00255{bottom:665.600000pt;}
.y16_c00255{bottom:668.666667pt;}
.y4a_c00255{bottom:681.600000pt;}
.y15_c00255{bottom:684.666667pt;}
.y49_c00255{bottom:697.333333pt;}
.y14_c00255{bottom:700.666667pt;}
.y13_c00255{bottom:716.666667pt;}
.y48_c00255{bottom:716.800000pt;}
.y12_c00255{bottom:732.000000pt;}
.y47_c00255{bottom:732.533333pt;}
.y11_c00255{bottom:748.000000pt;}
.y46_c00255{bottom:748.800000pt;}
.y10_c00255{bottom:764.266667pt;}
.y45_c00255{bottom:764.533333pt;}
.yf_c00255{bottom:780.000000pt;}
.y44_c00255{bottom:780.533333pt;}
.ye_c00255{bottom:796.000000pt;}
.y43_c00255{bottom:796.800000pt;}
.yd_c00255{bottom:811.733333pt;}
.y42_c00255{bottom:812.133333pt;}
.yc_c00255{bottom:827.733333pt;}
.y41_c00255{bottom:828.133333pt;}
.yb_c00255{bottom:843.466667pt;}
.y40_c00255{bottom:844.133333pt;}
.ya_c00255{bottom:859.466667pt;}
.y3f_c00255{bottom:863.466667pt;}
.y9_c00255{bottom:875.466667pt;}
.y3e_c00255{bottom:879.200000pt;}
.y8_c00255{bottom:891.466667pt;}
.y3d_c00255{bottom:895.466667pt;}
.y7_c00255{bottom:907.200000pt;}
.y3c_c00255{bottom:911.200000pt;}
.y6_c00255{bottom:922.933333pt;}
.y3b_c00255{bottom:927.200000pt;}
.y5_c00255{bottom:942.666667pt;}
.y3a_c00255{bottom:942.933333pt;}
.y4_c00255{bottom:958.666667pt;}
.y39_c00255{bottom:959.600000pt;}
.y3_c00255{bottom:974.933333pt;}
.y38_c00255{bottom:975.333333pt;}
.y2_c00255{bottom:990.666667pt;}
.y37_c00255{bottom:991.066667pt;}
.y1_c00255{bottom:1014.400000pt;}
.h6_c00255{height:16.000000pt;}
.h9_c00255{height:21.333333pt;}
.h7_c00255{height:26.666667pt;}
.h8_c00255{height:48.000000pt;}
.h5_c00255{height:53.333333pt;}
.h4_c00255{height:58.666667pt;}
.h2_c00255{height:64.000000pt;}
.h3_c00255{height:74.666667pt;}
.h1_c00255{height:1121.333333pt;}
.h0_c00255{height:1121.600016pt;}
.w1_c00255{width:854.666667pt;}
.w0_c00255{width:854.720052pt;}
.x0_c00255{left:0.000000pt;}
.xa1_c00255{left:160.266667pt;}
.x99_c00255{left:161.600000pt;}
.x1_c00255{left:163.866667pt;}
.x1c_c00255{left:168.266667pt;}
.x86_c00255{left:172.800000pt;}
.x9a_c00255{left:173.733333pt;}
.x6f_c00255{left:175.600000pt;}
.x42_c00255{left:176.533333pt;}
.xd_c00255{left:177.733333pt;}
.x4_c00255{left:179.200000pt;}
.xaa_c00255{left:180.533333pt;}
.xa6_c00255{left:188.000000pt;}
.x71_c00255{left:191.733333pt;}
.x63_c00255{left:192.933333pt;}
.xa2_c00255{left:194.266667pt;}
.x1e_c00255{left:196.133333pt;}
.x89_c00255{left:200.533333pt;}
.x96_c00255{left:202.266667pt;}
.x48_c00255{left:205.200000pt;}
.x33_c00255{left:206.266667pt;}
.x28_c00255{left:208.133333pt;}
.x8f_c00255{left:210.400000pt;}
.x3c_c00255{left:211.866667pt;}
.x5_c00255{left:213.066667pt;}
.x69_c00255{left:214.666667pt;}
.x43_c00255{left:215.866667pt;}
.xa7_c00255{left:217.733333pt;}
.x84_c00255{left:219.200000pt;}
.x7b_c00255{left:220.133333pt;}
.x59_c00255{left:221.333333pt;}
.x2e_c00255{left:222.666667pt;}
.x46_c00255{left:225.066667pt;}
.xa3_c00255{left:226.000000pt;}
.x82_c00255{left:227.200000pt;}
.x51_c00255{left:228.266667pt;}
.x25_c00255{left:229.866667pt;}
.x9f_c00255{left:231.200000pt;}
.x17_c00255{left:233.066667pt;}
.x38_c00255{left:234.000000pt;}
.xa8_c00255{left:235.600000pt;}
.x67_c00255{left:236.666667pt;}
.x72_c00255{left:238.400000pt;}
.x6_c00255{left:239.600000pt;}
.xa4_c00255{left:241.333333pt;}
.xe_c00255{left:243.333333pt;}
.x1f_c00255{left:246.400000pt;}
.x1d_c00255{left:248.533333pt;}
.x6a_c00255{left:249.600000pt;}
.x64_c00255{left:250.533333pt;}
.x34_c00255{left:252.666667pt;}
.x76_c00255{left:254.000000pt;}
.x7e_c00255{left:257.600000pt;}
.x4e_c00255{left:259.066667pt;}
.x29_c00255{left:260.666667pt;}
.x6b_c00255{left:262.133333pt;}
.x54_c00255{left:263.200000pt;}
.x20_c00255{left:264.933333pt;}
.x85_c00255{left:266.266667pt;}
.xf_c00255{left:267.600000pt;}
.x73_c00255{left:270.133333pt;}
.x3d_c00255{left:272.000000pt;}
.x47_c00255{left:274.000000pt;}
.x90_c00255{left:275.066667pt;}
.x49_c00255{left:276.533333pt;}
.x2f_c00255{left:279.333333pt;}
.x87_c00255{left:281.866667pt;}
.x55_c00255{left:283.333333pt;}
.x52_c00255{left:284.533333pt;}
.xab_c00255{left:287.066667pt;}
.xad_c00255{left:289.066667pt;}
.x10_c00255{left:290.000000pt;}
.x35_c00255{left:291.333333pt;}
.x5a_c00255{left:292.400000pt;}
.x77_c00255{left:293.333333pt;}
.xa9_c00255{left:294.400000pt;}
.x18_c00255{left:295.466667pt;}
.x7_c00255{left:297.200000pt;}
.x3e_c00255{left:299.200000pt;}
.x21_c00255{left:300.400000pt;}
.x60_c00255{left:301.733333pt;}
.x61_c00255{left:302.800000pt;}
.x94_c00255{left:305.733333pt;}
.x4f_c00255{left:307.733333pt;}
.x2a_c00255{left:308.933333pt;}
.x8d_c00255{left:310.000000pt;}
.x6c_c00255{left:311.066667pt;}
.x39_c00255{left:314.933333pt;}
.x70_c00255{left:316.666667pt;}
.x4a_c00255{left:319.466667pt;}
.x22_c00255{left:325.733333pt;}
.x93_c00255{left:327.333333pt;}
.x26_c00255{left:329.066667pt;}
.x83_c00255{left:330.266667pt;}
.x3f_c00255{left:331.200000pt;}
.x9d_c00255{left:332.266667pt;}
.x19_c00255{left:333.200000pt;}
.x8e_c00255{left:334.266667pt;}
.x80_c00255{left:336.800000pt;}
.x44_c00255{left:337.866667pt;}
.x95_c00255{left:339.066667pt;}
.x91_c00255{left:341.333333pt;}
.x5b_c00255{left:342.266667pt;}
.x8_c00255{left:344.933333pt;}
.x53_c00255{left:346.000000pt;}
.x30_c00255{left:347.466667pt;}
.xa5_c00255{left:348.533333pt;}
.x62_c00255{left:349.866667pt;}
.x11_c00255{left:352.400000pt;}
.x8a_c00255{left:353.600000pt;}
.xac_c00255{left:354.933333pt;}
.x74_c00255{left:360.400000pt;}
.x5c_c00255{left:361.466667pt;}
.x36_c00255{left:362.666667pt;}
.x92_c00255{left:364.000000pt;}
.x3a_c00255{left:365.200000pt;}
.x12_c00255{left:367.066667pt;}
.x9_c00255{left:368.266667pt;}
.x27_c00255{left:370.000000pt;}
.x50_c00255{left:371.733333pt;}
.x78_c00255{left:373.600000pt;}
.x2b_c00255{left:375.466667pt;}
.x56_c00255{left:376.800000pt;}
.x4b_c00255{left:378.400000pt;}
.x7d_c00255{left:379.466667pt;}
.x2_c00255{left:381.466667pt;}
.x97_c00255{left:382.533333pt;}
.x2c_c00255{left:383.733333pt;}
.x13_c00255{left:385.333333pt;}
.x1a_c00255{left:386.400000pt;}
.x79_c00255{left:387.733333pt;}
.x75_c00255{left:389.200000pt;}
.x23_c00255{left:390.400000pt;}
.x81_c00255{left:391.866667pt;}
.xa0_c00255{left:393.466667pt;}
.x4c_c00255{left:394.400000pt;}
.x14_c00255{left:395.866667pt;}
.x98_c00255{left:397.200000pt;}
.x40_c00255{left:398.400000pt;}
.x8b_c00255{left:399.333333pt;}
.xa_c00255{left:400.533333pt;}
.x5d_c00255{left:402.133333pt;}
.x57_c00255{left:403.333333pt;}
.x9b_c00255{left:405.600000pt;}
.x7f_c00255{left:406.933333pt;}
.xb_c00255{left:407.866667pt;}
.x24_c00255{left:410.266667pt;}
.x41_c00255{left:411.466667pt;}
.x68_c00255{left:413.066667pt;}
.x6d_c00255{left:415.333333pt;}
.x31_c00255{left:416.266667pt;}
.x65_c00255{left:417.466667pt;}
.x4d_c00255{left:419.333333pt;}
.x15_c00255{left:420.800000pt;}
.x2d_c00255{left:422.133333pt;}
.x88_c00255{left:423.200000pt;}
.x6e_c00255{left:425.200000pt;}
.x66_c00255{left:427.066667pt;}
.x37_c00255{left:428.266667pt;}
.x3b_c00255{left:430.133333pt;}
.x5e_c00255{left:431.600000pt;}
.xc_c00255{left:432.800000pt;}
.x32_c00255{left:434.133333pt;}
.x16_c00255{left:436.533333pt;}
.x58_c00255{left:437.600000pt;}
.x9e_c00255{left:439.733333pt;}
.x7a_c00255{left:441.866667pt;}
.x8c_c00255{left:445.733333pt;}
.x5f_c00255{left:446.666667pt;}
.x1b_c00255{left:448.533333pt;}
.x7c_c00255{left:449.866667pt;}
.x45_c00255{left:450.933333pt;}
.x9c_c00255{left:456.400000pt;}
.x10a_c00255{left:478.133333pt;}
.xeb_c00255{left:479.066667pt;}
.x117_c00255{left:493.200000pt;}
.xdc_c00255{left:494.400000pt;}
.xae_c00255{left:495.733333pt;}
.x145_c00255{left:509.466667pt;}
.x103_c00255{left:510.800000pt;}
.xdd_c00255{left:511.733333pt;}
.xfa_c00255{left:514.666667pt;}
.x118_c00255{left:516.266667pt;}
.x128_c00255{left:517.466667pt;}
.x130_c00255{left:518.666667pt;}
.xff_c00255{left:519.733333pt;}
.xb5_c00255{left:522.800000pt;}
.x109_c00255{left:524.266667pt;}
.xe4_c00255{left:526.666667pt;}
.x11c_c00255{left:529.733333pt;}
.x115_c00255{left:532.000000pt;}
.xec_c00255{left:534.400000pt;}
.xf6_c00255{left:535.466667pt;}
.xcb_c00255{left:536.533333pt;}
.xbc_c00255{left:538.266667pt;}
.x10b_c00255{left:539.866667pt;}
.x13e_c00255{left:543.333333pt;}
.x11d_c00255{left:548.533333pt;}
.xd0_c00255{left:550.000000pt;}
.xc4_c00255{left:551.600000pt;}
.xe5_c00255{left:552.533333pt;}
.xf7_c00255{left:554.000000pt;}
.xde_c00255{left:554.933333pt;}
.xaf_c00255{left:556.266667pt;}
.x100_c00255{left:558.133333pt;}
.x12e_c00255{left:559.866667pt;}
.xbd_c00255{left:561.333333pt;}
.x121_c00255{left:563.066667pt;}
.xd5_c00255{left:564.266667pt;}
.x10f_c00255{left:567.066667pt;}
.xe6_c00255{left:568.800000pt;}
.xdf_c00255{left:572.266667pt;}
.x119_c00255{left:573.600000pt;}
.xfd_c00255{left:575.200000pt;}
.x129_c00255{left:577.333333pt;}
.x110_c00255{left:580.533333pt;}
.x101_c00255{left:581.466667pt;}
.xfb_c00255{left:583.733333pt;}
.x136_c00255{left:585.866667pt;}
.xc5_c00255{left:587.066667pt;}
.xb0_c00255{left:588.933333pt;}
.xe7_c00255{left:592.133333pt;}
.x126_c00255{left:593.200000pt;}
.xb6_c00255{left:595.200000pt;}
.x12b_c00255{left:596.533333pt;}
.xd6_c00255{left:598.133333pt;}
.xf1_c00255{left:600.266667pt;}
.x141_c00255{left:601.200000pt;}
.xe0_c00255{left:602.400000pt;}
.x13b_c00255{left:603.333333pt;}
.x12a_c00255{left:604.533333pt;}
.xbe_c00255{left:606.133333pt;}
.x104_c00255{left:607.733333pt;}
.x111_c00255{left:609.066667pt;}
.x11e_c00255{left:610.666667pt;}
.xcc_c00255{left:613.066667pt;}
.xed_c00255{left:614.800000pt;}
.xf2_c00255{left:617.600000pt;}
.xd1_c00255{left:619.733333pt;}
.x13f_c00255{left:620.800000pt;}
.xb1_c00255{left:621.866667pt;}
.xe1_c00255{left:623.200000pt;}
.x12c_c00255{left:625.066667pt;}
.x102_c00255{left:626.266667pt;}
.x135_c00255{left:627.200000pt;}
.x112_c00255{left:628.533333pt;}
.x148_c00255{left:631.600000pt;}
.xc6_c00255{left:632.533333pt;}
.xbf_c00255{left:634.000000pt;}
.x3_c00255{left:636.533333pt;}
.x12d_c00255{left:637.600000pt;}
.xd7_c00255{left:640.266667pt;}
.x105_c00255{left:642.266667pt;}
.xe8_c00255{left:643.333333pt;}
.xb2_c00255{left:644.933333pt;}
.xd2_c00255{left:646.000000pt;}
.x113_c00255{left:647.066667pt;}
.xf3_c00255{left:648.000000pt;}
.xc7_c00255{left:649.866667pt;}
.xf5_c00255{left:651.600000pt;}
.xd8_c00255{left:654.400000pt;}
.xb7_c00255{left:655.333333pt;}
.x11a_c00255{left:657.866667pt;}
.xe9_c00255{left:659.333333pt;}
.xf8_c00255{left:660.933333pt;}
.xb8_c00255{left:664.666667pt;}
.x131_c00255{left:666.266667pt;}
.x116_c00255{left:668.533333pt;}
.xee_c00255{left:669.866667pt;}
.xcd_c00255{left:672.533333pt;}
.x139_c00255{left:673.466667pt;}
.x144_c00255{left:675.066667pt;}
.x106_c00255{left:676.533333pt;}
.xe2_c00255{left:678.266667pt;}
.xd9_c00255{left:679.333333pt;}
.xc8_c00255{left:683.733333pt;}
.xb3_c00255{left:684.933333pt;}
.x10c_c00255{left:686.533333pt;}
.x124_c00255{left:687.733333pt;}
.xc0_c00255{left:689.066667pt;}
.xce_c00255{left:690.800000pt;}
.x11f_c00255{left:692.400000pt;}
.x149_c00255{left:693.333333pt;}
.x142_c00255{left:695.600000pt;}
.x122_c00255{left:696.800000pt;}
.x13a_c00255{left:697.733333pt;}
.x132_c00255{left:698.666667pt;}
.xb9_c00255{left:700.800000pt;}
.x13d_c00255{left:701.733333pt;}
.xfe_c00255{left:703.466667pt;}
.x10d_c00255{left:705.466667pt;}
.x133_c00255{left:707.600000pt;}
.xc1_c00255{left:709.200000pt;}
.xd3_c00255{left:710.266667pt;}
.x137_c00255{left:711.333333pt;}
.xcf_c00255{left:712.266667pt;}
.xef_c00255{left:714.400000pt;}
.x127_c00255{left:715.333333pt;}
.x146_c00255{left:718.133333pt;}
.x107_c00255{left:719.466667pt;}
.x123_c00255{left:720.533333pt;}
.x125_c00255{left:722.133333pt;}
.xf4_c00255{left:723.200000pt;}
.xea_c00255{left:724.266667pt;}
.x114_c00255{left:725.200000pt;}
.xda_c00255{left:728.266667pt;}
.x120_c00255{left:731.066667pt;}
.x10e_c00255{left:732.000000pt;}
.xba_c00255{left:733.066667pt;}
.xf0_c00255{left:734.933333pt;}
.xc2_c00255{left:736.133333pt;}
.x12f_c00255{left:737.200000pt;}
.xb4_c00255{left:739.066667pt;}
.xc9_c00255{left:741.333333pt;}
.x140_c00255{left:742.933333pt;}
.xf9_c00255{left:744.133333pt;}
.x134_c00255{left:747.866667pt;}
.x138_c00255{left:751.333333pt;}
.x13c_c00255{left:752.266667pt;}
.xca_c00255{left:754.133333pt;}
.x108_c00255{left:755.600000pt;}
.x143_c00255{left:758.000000pt;}
.x14a_c00255{left:758.933333pt;}
.xdb_c00255{left:760.266667pt;}
.xfc_c00255{left:762.666667pt;}
.xbb_c00255{left:766.400000pt;}
.xd4_c00255{left:767.866667pt;}
.xe3_c00255{left:769.466667pt;}
.xc3_c00255{left:770.400000pt;}
.x147_c00255{left:771.866667pt;}
.x11b_c00255{left:775.733333pt;}
}





/* 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_c00256 {
    display:none;
  }
  .loading-indicator_c00256.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00256 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_c00256 { 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_c00256" -> "#page-container .classname_c00256")
 */
.pf_c00256 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00256 { /* 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_c00256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00256 { /* 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_c00256 { /* 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_c00256 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00256 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00256 {overflow:visible;}
  }
}
.c_c00256 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00256 { /* 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_c00256:after { /* webkit #35443 */
  content: '';
}
.t_c00256:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00256 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 */
}
.__c00256 { /* 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_c00256 { /* info for Javascript */
  display:none;
}
.l_c00256 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00256 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00256 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00256: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_c00256 {
    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_c00256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00256.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_c00256 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00256;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.000000;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;}
.md7_c00256{transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);}
.m107_c00256{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00256{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.md8_c00256{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.m48_c00256{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m26_c00256{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00256{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m103_c00256{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m15_c00256{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00256{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00256{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m61_c00256{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m14_c00256{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00256{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.maf_c00256{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mab_c00256{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m58_c00256{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m23_c00256{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00256{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m98_c00256{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00256{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00256{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m95_c00256{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00256{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00256{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00256{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.mc_c00256{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00256{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00256{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00256{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m110_c00256{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m13_c00256{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m74_c00256{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m129_c00256{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.maa_c00256{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m47_c00256{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.md6_c00256{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.md1_c00256{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00256{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00256{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m44_c00256{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00256{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00256{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m24_c00256{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00256{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m16_c00256{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m100_c00256{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00256{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00256{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md4_c00256{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m53_c00256{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m40_c00256{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md_c00256{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00256{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00256{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me2_c00256{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00256{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00256{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md2_c00256{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.me8_c00256{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m9_c00256{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m131_c00256{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.me4_c00256{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me6_c00256{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00256{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00256{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md5_c00256{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m64_c00256{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m17_c00256{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00256{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00256{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m130_c00256{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00256{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mf_c00256{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00256{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00256{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mba_c00256{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m75_c00256{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m11_c00256{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00256{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.md3_c00256{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00256{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m78_c00256{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m20_c00256{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m10_c00256{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m72_c00256{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00256{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00256{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00256{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00256{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00256{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.me0_c00256{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma_c00256{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00256{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m99_c00256{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m39_c00256{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m55_c00256{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m101_c00256{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00256{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m85_c00256{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00256{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00256{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mda_c00256{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m96_c00256{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m5_c00256{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m97_c00256{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00256{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00256{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00256{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m83_c00256{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m42_c00256{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00256{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m121_c00256{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me7_c00256{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m89_c00256{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m59_c00256{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m49_c00256{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m29_c00256{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m46_c00256{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00256{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m66_c00256{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m102_c00256{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00256{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00256{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00256{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mce_c00256{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00256{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00256{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mff_c00256{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m86_c00256{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00256{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00256{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00256{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00256{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m82_c00256{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00256{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.meb_c00256{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m71_c00256{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m92_c00256{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m56_c00256{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00256{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00256{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m118_c00256{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00256{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.me_c00256{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00256{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00256{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00256{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00256{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mae_c00256{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m65_c00256{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00256{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m106_c00256{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md9_c00256{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00256{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00256{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00256{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mac_c00256{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mea_c00256{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00256{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m21_c00256{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6_c00256{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.med_c00256{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00256{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m77_c00256{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m73_c00256{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4_c00256{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00256{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00256{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mef_c00256{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00256{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mde_c00256{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00256{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00256{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m123_c00256{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00256{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00256{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m37_c00256{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m93_c00256{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m60_c00256{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mad_c00256{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00256{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m45_c00256{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m87_c00256{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00256{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00256{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00256{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m52_c00256{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md0_c00256{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m31_c00256{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00256{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m127_c00256{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m32_c00256{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m84_c00256{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m80_c00256{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00256{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m124_c00256{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00256{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00256{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00256{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m22_c00256{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7_c00256{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m8_c00256{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m30_c00256{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00256{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00256{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00256{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m88_c00256{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00256{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m12_c00256{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00256{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m57_c00256{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m69_c00256{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00256{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m128_c00256{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m27_c00256{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00256{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m41_c00256{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m35_c00256{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00256{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00256{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00256{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m43_c00256{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00256{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me9_c00256{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m91_c00256{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00256{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m70_c00256{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00256{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00256{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m62_c00256{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m81_c00256{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00256{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00256{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m126_c00256{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m63_c00256{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00256{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00256{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m104_c00256{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb_c00256{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00256{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m94_c00256{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00256{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m113_c00256{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00256{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3_c00256{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00256{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00256{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m112_c00256{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00256{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m116_c00256{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00256{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m76_c00256{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m54_c00256{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m111_c00256{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);}
.mee_c00256{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00256{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m36_c00256{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m68_c00256{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00256{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00256{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m120_c00256{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m108_c00256{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00256{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00256{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m34_c00256{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m19_c00256{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m38_c00256{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00256{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m50_c00256{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00256{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m33_c00256{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m125_c00256{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m115_c00256{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m25_c00256{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m79_c00256{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00256{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00256{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m122_c00256{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00256{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00256{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00256{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m51_c00256{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00256{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m109_c00256{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mca_c00256{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00256{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.me1_c00256{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me3_c00256{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00256{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mec_c00256{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00256{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m114_c00256{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m117_c00256{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m105_c00256{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m28_c00256{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m90_c00256{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00256{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00256{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.me5_c00256{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00256{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m132_c00256{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m0_c00256{transform:matrix(0.473750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473750,0.000000,0.000000,0.250000,0,0);}
.m67_c00256{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m119_c00256{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{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__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00256{word-spacing:-8.283582px;}
.ws0_c00256{word-spacing:-3.125000px;}
.ws3_c00256{word-spacing:0.000000px;}
.ws1_c00256{word-spacing:781.459459px;}
.fc0_c00256{color:transparent;}
.fs4_c00256{font-size:48.000000px;}
.fs5_c00256{font-size:54.000000px;}
.fs3_c00256{font-size:60.000000px;}
.fs2_c00256{font-size:66.000000px;}
.fs1_c00256{font-size:72.000000px;}
.fs6_c00256{font-size:78.000000px;}
.fs0_c00256{font-size:84.000000px;}
.y0_c00256{bottom:0.000000px;}
.y69_c00256{bottom:167.400000px;}
.y68_c00256{bottom:182.400000px;}
.y36_c00256{bottom:182.700000px;}
.y35_c00256{bottom:197.850000px;}
.y67_c00256{bottom:198.300000px;}
.y34_c00256{bottom:212.250000px;}
.y66_c00256{bottom:212.400000px;}
.y65_c00256{bottom:227.100000px;}
.y33_c00256{bottom:228.450000px;}
.y32_c00256{bottom:241.050000px;}
.y64_c00256{bottom:241.200000px;}
.y63_c00256{bottom:255.600000px;}
.y31_c00256{bottom:255.750000px;}
.y30_c00256{bottom:269.400000px;}
.y62_c00256{bottom:270.300000px;}
.y2f_c00256{bottom:284.100000px;}
.y61_c00256{bottom:284.700000px;}
.y2e_c00256{bottom:298.050000px;}
.y2d_c00256{bottom:313.050000px;}
.y2c_c00256{bottom:326.400000px;}
.y60_c00256{bottom:329.250000px;}
.y2b_c00256{bottom:341.550000px;}
.y5f_c00256{bottom:346.950000px;}
.y2a_c00256{bottom:355.950000px;}
.y5e_c00256{bottom:364.650000px;}
.y29_c00256{bottom:370.050000px;}
.y5d_c00256{bottom:382.650000px;}
.y28_c00256{bottom:387.000000px;}
.y5c_c00256{bottom:400.350000px;}
.y5b_c00256{bottom:418.350000px;}
.y5a_c00256{bottom:440.250000px;}
.y27_c00256{bottom:442.500000px;}
.y26_c00256{bottom:460.500000px;}
.y59_c00256{bottom:469.050000px;}
.y25_c00256{bottom:478.200000px;}
.y58_c00256{bottom:487.800000px;}
.y24_c00256{bottom:496.200000px;}
.y23_c00256{bottom:513.900000px;}
.y57_c00256{bottom:517.950000px;}
.y22_c00256{bottom:531.900000px;}
.y56_c00256{bottom:535.650000px;}
.y21_c00256{bottom:549.600000px;}
.y55_c00256{bottom:553.650000px;}
.y20_c00256{bottom:567.600000px;}
.y54_c00256{bottom:571.350000px;}
.y1f_c00256{bottom:585.300000px;}
.y1e_c00256{bottom:603.000000px;}
.y53_c00256{bottom:609.750000px;}
.y52_c00256{bottom:615.450000px;}
.y1d_c00256{bottom:620.700000px;}
.y51_c00256{bottom:633.450000px;}
.y1c_c00256{bottom:645.900000px;}
.y50_c00256{bottom:651.150000px;}
.y4f_c00256{bottom:668.850000px;}
.y1b_c00256{bottom:670.200000px;}
.y4e_c00256{bottom:686.850000px;}
.y1a_c00256{bottom:688.200000px;}
.y4d_c00256{bottom:704.550000px;}
.y19_c00256{bottom:705.900000px;}
.y4c_c00256{bottom:722.250000px;}
.y18_c00256{bottom:723.600000px;}
.y4b_c00256{bottom:740.250000px;}
.y17_c00256{bottom:741.600000px;}
.y4a_c00256{bottom:757.950000px;}
.y16_c00256{bottom:767.550000px;}
.y49_c00256{bottom:775.650000px;}
.y15_c00256{bottom:787.650000px;}
.y48_c00256{bottom:793.650000px;}
.y14_c00256{bottom:803.100000px;}
.y47_c00256{bottom:811.350000px;}
.y13_c00256{bottom:820.800000px;}
.y46_c00256{bottom:829.350000px;}
.y12_c00256{bottom:842.100000px;}
.y45_c00256{bottom:847.050000px;}
.y11_c00256{bottom:860.400000px;}
.y44_c00256{bottom:864.750000px;}
.y43_c00256{bottom:891.300000px;}
.y10_c00256{bottom:900.300000px;}
.y42_c00256{bottom:909.300000px;}
.yf_c00256{bottom:918.000000px;}
.y41_c00256{bottom:926.850000px;}
.ye_c00256{bottom:936.000000px;}
.y40_c00256{bottom:944.550000px;}
.yd_c00256{bottom:953.700000px;}
.y3f_c00256{bottom:962.250000px;}
.yc_c00256{bottom:978.750000px;}
.y3e_c00256{bottom:980.250000px;}
.yb_c00256{bottom:997.050000px;}
.y3d_c00256{bottom:998.250000px;}
.ya_c00256{bottom:1014.750000px;}
.y3c_c00256{bottom:1019.700000px;}
.y9_c00256{bottom:1032.750000px;}
.y3b_c00256{bottom:1037.400000px;}
.y8_c00256{bottom:1050.450000px;}
.y3a_c00256{bottom:1055.400000px;}
.y7_c00256{bottom:1071.300000px;}
.y39_c00256{bottom:1073.100000px;}
.y5_c00256{bottom:1079.700000px;}
.y6_c00256{bottom:1081.800000px;}
.y4_c00256{bottom:1089.750000px;}
.y38_c00256{bottom:1090.800000px;}
.y3_c00256{bottom:1107.750000px;}
.y37_c00256{bottom:1108.500000px;}
.y2_c00256{bottom:1134.300000px;}
.y1_c00256{bottom:1135.050000px;}
.h6_c00256{height:48.000000px;}
.h7_c00256{height:54.000000px;}
.h5_c00256{height:60.000000px;}
.h4_c00256{height:66.000000px;}
.h3_c00256{height:72.000000px;}
.h8_c00256{height:78.000000px;}
.h2_c00256{height:84.000000px;}
.h1_c00256{height:1264.500000px;}
.h0_c00256{height:1264.679993px;}
.w1_c00256{width:961.500000px;}
.w0_c00256{width:961.560058px;}
.x0_c00256{left:0.000000px;}
.x86_c00256{left:85.050000px;}
.x89_c00256{left:86.100000px;}
.x68_c00256{left:88.500000px;}
.x36_c00256{left:89.700000px;}
.x48_c00256{left:90.750000px;}
.x94_c00256{left:93.300000px;}
.x3_c00256{left:95.100000px;}
.xa3_c00256{left:97.950000px;}
.x43_c00256{left:101.400000px;}
.x65_c00256{left:104.400000px;}
.x4e_c00256{left:105.450000px;}
.x4_c00256{left:107.400000px;}
.xc_c00256{left:108.600000px;}
.x17_c00256{left:114.300000px;}
.x19_c00256{left:118.050000px;}
.x8c_c00256{left:123.150000px;}
.x1a_c00256{left:126.000000px;}
.x26_c00256{left:131.250000px;}
.x3f_c00256{left:132.300000px;}
.x18_c00256{left:133.800000px;}
.x5_c00256{left:135.900000px;}
.xd_c00256{left:139.200000px;}
.x2d_c00256{left:144.750000px;}
.x9a_c00256{left:146.250000px;}
.x5b_c00256{left:147.450000px;}
.x4f_c00256{left:148.650000px;}
.x40_c00256{left:150.600000px;}
.x33_c00256{left:153.000000px;}
.x1b_c00256{left:154.800000px;}
.x7a_c00256{left:156.150000px;}
.xe_c00256{left:159.750000px;}
.x20_c00256{left:161.550000px;}
.x27_c00256{left:162.900000px;}
.x5c_c00256{left:164.700000px;}
.x57_c00256{left:165.750000px;}
.x70_c00256{left:167.400000px;}
.x49_c00256{left:169.650000px;}
.x93_c00256{left:172.050000px;}
.x74_c00256{left:173.850000px;}
.x6_c00256{left:175.200000px;}
.xf_c00256{left:176.250000px;}
.x1c_c00256{left:178.200000px;}
.x6d_c00256{left:180.000000px;}
.x69_c00256{left:181.050000px;}
.x75_c00256{left:183.150000px;}
.xa2_c00256{left:184.800000px;}
.x5a_c00256{left:186.000000px;}
.x7_c00256{left:188.550000px;}
.x10_c00256{left:189.900000px;}
.x90_c00256{left:191.400000px;}
.x37_c00256{left:193.650000px;}
.x9d_c00256{left:195.150000px;}
.x66_c00256{left:196.200000px;}
.x50_c00256{left:198.000000px;}
.x28_c00256{left:199.950000px;}
.x3b_c00256{left:201.600000px;}
.x8a_c00256{left:203.850000px;}
.x8d_c00256{left:205.650000px;}
.x51_c00256{left:207.000000px;}
.x61_c00256{left:209.250000px;}
.xa0_c00256{left:211.350000px;}
.x34_c00256{left:212.700000px;}
.x44_c00256{left:214.050000px;}
.x83_c00256{left:215.100000px;}
.x2e_c00256{left:217.050000px;}
.x6a_c00256{left:218.100000px;}
.x87_c00256{left:220.350000px;}
.x11_c00256{left:222.000000px;}
.x9e_c00256{left:223.200000px;}
.x3c_c00256{left:224.250000px;}
.x8e_c00256{left:225.450000px;}
.x95_c00256{left:227.100000px;}
.x6e_c00256{left:229.650000px;}
.x7f_c00256{left:231.150000px;}
.x29_c00256{left:232.350000px;}
.x8_c00256{left:234.600000px;}
.x21_c00256{left:236.850000px;}
.x2f_c00256{left:239.400000px;}
.x67_c00256{left:241.200000px;}
.x45_c00256{left:242.250000px;}
.x38_c00256{left:243.300000px;}
.x9b_c00256{left:247.050000px;}
.x12_c00256{left:249.000000px;}
.x6f_c00256{left:252.000000px;}
.x6b_c00256{left:253.800000px;}
.x30_c00256{left:255.300000px;}
.x22_c00256{left:257.700000px;}
.x46_c00256{left:259.950000px;}
.x7e_c00256{left:264.300000px;}
.x4b_c00256{left:266.100000px;}
.x91_c00256{left:268.200000px;}
.x53_c00256{left:269.700000px;}
.x2a_c00256{left:271.500000px;}
.x35_c00256{left:273.900000px;}
.x7b_c00256{left:275.700000px;}
.x1d_c00256{left:281.100000px;}
.x58_c00256{left:283.050000px;}
.xa1_c00256{left:284.100000px;}
.x13_c00256{left:285.300000px;}
.x52_c00256{left:286.950000px;}
.x54_c00256{left:288.150000px;}
.x80_c00256{left:291.300000px;}
.x92_c00256{left:293.100000px;}
.x62_c00256{left:294.600000px;}
.x7c_c00256{left:295.800000px;}
.x9_c00256{left:298.350000px;}
.x47_c00256{left:299.550000px;}
.x5d_c00256{left:301.050000px;}
.x96_c00256{left:302.850000px;}
.x84_c00256{left:305.400000px;}
.x59_c00256{left:307.200000px;}
.x55_c00256{left:308.250000px;}
.x76_c00256{left:310.800000px;}
.x41_c00256{left:311.850000px;}
.x82_c00256{left:314.700000px;}
.x2b_c00256{left:319.350000px;}
.x8f_c00256{left:321.900000px;}
.x14_c00256{left:323.100000px;}
.x79_c00256{left:326.100000px;}
.x63_c00256{left:328.800000px;}
.x1_c00256{left:330.450000px;}
.x6c_c00256{left:331.650000px;}
.x3d_c00256{left:333.000000px;}
.x81_c00256{left:334.200000px;}
.x7d_c00256{left:335.700000px;}
.x5e_c00256{left:337.800000px;}
.x39_c00256{left:340.500000px;}
.x23_c00256{left:342.000000px;}
.x31_c00256{left:347.400000px;}
.x4a_c00256{left:351.450000px;}
.x64_c00256{left:352.500000px;}
.x5f_c00256{left:355.050000px;}
.x78_c00256{left:358.050000px;}
.x9f_c00256{left:360.000000px;}
.x3a_c00256{left:361.050000px;}
.x71_c00256{left:362.700000px;}
.x42_c00256{left:364.800000px;}
.x72_c00256{left:366.450000px;}
.x8b_c00256{left:368.400000px;}
.x60_c00256{left:371.550000px;}
.x97_c00256{left:373.500000px;}
.xa_c00256{left:374.700000px;}
.x2c_c00256{left:376.950000px;}
.x24_c00256{left:378.750000px;}
.x4c_c00256{left:380.100000px;}
.x15_c00256{left:381.750000px;}
.x1e_c00256{left:384.000000px;}
.x77_c00256{left:385.950000px;}
.x73_c00256{left:388.350000px;}
.x56_c00256{left:390.450000px;}
.x98_c00256{left:391.800000px;}
.x9c_c00256{left:395.250000px;}
.x3e_c00256{left:396.600000px;}
.x25_c00256{left:397.800000px;}
.xb_c00256{left:399.900000px;}
.x32_c00256{left:402.450000px;}
.x85_c00256{left:405.150000px;}
.x1f_c00256{left:411.300000px;}
.x99_c00256{left:413.100000px;}
.x88_c00256{left:414.450000px;}
.x16_c00256{left:418.800000px;}
.x4d_c00256{left:422.250000px;}
.x140_c00256{left:431.250000px;}
.x141_c00256{left:442.800000px;}
.x13f_c00256{left:444.000000px;}
.x128_c00256{left:445.350000px;}
.xef_c00256{left:446.700000px;}
.x112_c00256{left:454.350000px;}
.x121_c00256{left:455.550000px;}
.xf4_c00256{left:457.050000px;}
.x13d_c00256{left:458.250000px;}
.x142_c00256{left:460.800000px;}
.x132_c00256{left:461.850000px;}
.x11e_c00256{left:463.200000px;}
.xaa_c00256{left:464.400000px;}
.xa4_c00256{left:465.450000px;}
.x145_c00256{left:467.100000px;}
.x144_c00256{left:470.100000px;}
.x12d_c00256{left:473.700000px;}
.x12f_c00256{left:481.350000px;}
.xcd_c00256{left:482.700000px;}
.x103_c00256{left:485.100000px;}
.xc1_c00256{left:488.100000px;}
.x119_c00256{left:489.300000px;}
.x14a_c00256{left:491.550000px;}
.xab_c00256{left:494.250000px;}
.x125_c00256{left:495.900000px;}
.xdb_c00256{left:497.250000px;}
.x122_c00256{left:498.750000px;}
.x110_c00256{left:500.100000px;}
.x117_c00256{left:502.650000px;}
.xd3_c00256{left:504.000000px;}
.xb2_c00256{left:505.350000px;}
.xe8_c00256{left:507.450000px;}
.xf0_c00256{left:508.650000px;}
.xce_c00256{left:511.500000px;}
.xc8_c00256{left:512.850000px;}
.x104_c00256{left:514.950000px;}
.x108_c00256{left:516.600000px;}
.xd4_c00256{left:518.100000px;}
.xa5_c00256{left:520.200000px;}
.x13b_c00256{left:521.250000px;}
.xf5_c00256{left:523.350000px;}
.xee_c00256{left:524.850000px;}
.xb3_c00256{left:526.650000px;}
.x11a_c00256{left:527.850000px;}
.xdc_c00256{left:529.350000px;}
.x134_c00256{left:530.700000px;}
.x126_c00256{left:533.700000px;}
.xac_c00256{left:534.900000px;}
.x113_c00256{left:536.100000px;}
.x100_c00256{left:537.900000px;}
.xc9_c00256{left:540.150000px;}
.x10c_c00256{left:542.250000px;}
.x13c_c00256{left:546.150000px;}
.xb9_c00256{left:549.300000px;}
.x109_c00256{left:551.550000px;}
.x143_c00256{left:553.350000px;}
.x133_c00256{left:554.700000px;}
.xe2_c00256{left:556.650000px;}
.x10d_c00256{left:557.700000px;}
.x129_c00256{left:560.250000px;}
.xc2_c00256{left:562.950000px;}
.xea_c00256{left:564.450000px;}
.x118_c00256{left:566.400000px;}
.xdd_c00256{left:568.650000px;}
.xba_c00256{left:570.150000px;}
.xca_c00256{left:574.050000px;}
.xe3_c00256{left:576.150000px;}
.xb4_c00256{left:577.800000px;}
.x10a_c00256{left:579.600000px;}
.xf6_c00256{left:581.250000px;}
.x11b_c00256{left:583.350000px;}
.xad_c00256{left:585.600000px;}
.xeb_c00256{left:586.800000px;}
.xde_c00256{left:588.450000px;}
.xd5_c00256{left:589.800000px;}
.x11f_c00256{left:594.300000px;}
.xae_c00256{left:597.150000px;}
.xf1_c00256{left:598.650000px;}
.xcb_c00256{left:600.000000px;}
.x11c_c00256{left:603.900000px;}
.xc3_c00256{left:605.850000px;}
.x10e_c00256{left:608.850000px;}
.xa6_c00256{left:610.950000px;}
.xfd_c00256{left:612.750000px;}
.xb5_c00256{left:614.550000px;}
.x12a_c00256{left:617.850000px;}
.x105_c00256{left:619.050000px;}
.x137_c00256{left:620.700000px;}
.xd6_c00256{left:621.900000px;}
.x146_c00256{left:623.700000px;}
.xf9_c00256{left:626.100000px;}
.xc4_c00256{left:627.750000px;}
.x127_c00256{left:629.850000px;}
.xbb_c00256{left:631.500000px;}
.xdf_c00256{left:633.450000px;}
.xe9_c00256{left:635.700000px;}
.xfe_c00256{left:637.950000px;}
.xb6_c00256{left:639.750000px;}
.x114_c00256{left:642.300000px;}
.x11d_c00256{left:643.500000px;}
.xcf_c00256{left:644.700000px;}
.xf7_c00256{left:646.800000px;}
.x123_c00256{left:649.350000px;}
.x130_c00256{left:650.850000px;}
.xbc_c00256{left:652.050000px;}
.x13e_c00256{left:653.250000px;}
.xd7_c00256{left:655.350000px;}
.xe4_c00256{left:656.850000px;}
.x111_c00256{left:658.500000px;}
.x12b_c00256{left:661.050000px;}
.xc5_c00256{left:665.850000px;}
.xd0_c00256{left:667.350000px;}
.xff_c00256{left:668.850000px;}
.xa7_c00256{left:671.400000px;}
.xf8_c00256{left:673.500000px;}
.xb7_c00256{left:675.450000px;}
.x148_c00256{left:676.500000px;}
.xfa_c00256{left:678.300000px;}
.xaf_c00256{left:681.000000px;}
.xd8_c00256{left:683.400000px;}
.x120_c00256{left:684.600000px;}
.xbd_c00256{left:685.950000px;}
.xec_c00256{left:688.650000px;}
.xa8_c00256{left:691.200000px;}
.xfb_c00256{left:693.000000px;}
.xe0_c00256{left:695.100000px;}
.xd1_c00256{left:697.350000px;}
.xc6_c00256{left:698.550000px;}
.x138_c00256{left:700.650000px;}
.x12c_c00256{left:702.450000px;}
.xb0_c00256{left:705.450000px;}
.x149_c00256{left:708.150000px;}
.xed_c00256{left:709.500000px;}
.xf2_c00256{left:711.300000px;}
.x106_c00256{left:716.400000px;}
.xe5_c00256{left:718.350000px;}
.xbe_c00256{left:719.850000px;}
.x10b_c00256{left:721.800000px;}
.x131_c00256{left:722.850000px;}
.x12e_c00256{left:724.800000px;}
.x115_c00256{left:725.850000px;}
.xb8_c00256{left:727.650000px;}
.x101_c00256{left:730.650000px;}
.xfc_c00256{left:732.900000px;}
.xd9_c00256{left:734.850000px;}
.x10f_c00256{left:738.000000px;}
.xc7_c00256{left:739.650000px;}
.xbf_c00256{left:741.150000px;}
.x135_c00256{left:742.200000px;}
.xd2_c00256{left:744.150000px;}
.xcc_c00256{left:747.900000px;}
.xe6_c00256{left:750.000000px;}
.xda_c00256{left:754.650000px;}
.xb1_c00256{left:755.850000px;}
.xf3_c00256{left:757.350000px;}
.x2_c00256{left:759.900000px;}
.x107_c00256{left:762.450000px;}
.x116_c00256{left:763.650000px;}
.x124_c00256{left:766.650000px;}
.xe7_c00256{left:767.700000px;}
.x136_c00256{left:768.750000px;}
.x147_c00256{left:769.950000px;}
.x139_c00256{left:771.150000px;}
.xe1_c00256{left:772.200000px;}
.x102_c00256{left:774.900000px;}
.x13a_c00256{left:777.600000px;}
.xa9_c00256{left:780.450000px;}
.xc0_c00256{left:781.800000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws2_c00256{word-spacing:-7.363184pt;}
.ws0_c00256{word-spacing:-2.777778pt;}
.ws3_c00256{word-spacing:0.000000pt;}
.ws1_c00256{word-spacing:694.630631pt;}
.fs4_c00256{font-size:42.666667pt;}
.fs5_c00256{font-size:48.000000pt;}
.fs3_c00256{font-size:53.333333pt;}
.fs2_c00256{font-size:58.666667pt;}
.fs1_c00256{font-size:64.000000pt;}
.fs6_c00256{font-size:69.333333pt;}
.fs0_c00256{font-size:74.666667pt;}
.y0_c00256{bottom:0.000000pt;}
.y69_c00256{bottom:148.800000pt;}
.y68_c00256{bottom:162.133333pt;}
.y36_c00256{bottom:162.400000pt;}
.y35_c00256{bottom:175.866667pt;}
.y67_c00256{bottom:176.266667pt;}
.y34_c00256{bottom:188.666667pt;}
.y66_c00256{bottom:188.800000pt;}
.y65_c00256{bottom:201.866667pt;}
.y33_c00256{bottom:203.066667pt;}
.y32_c00256{bottom:214.266667pt;}
.y64_c00256{bottom:214.400000pt;}
.y63_c00256{bottom:227.200000pt;}
.y31_c00256{bottom:227.333333pt;}
.y30_c00256{bottom:239.466667pt;}
.y62_c00256{bottom:240.266667pt;}
.y2f_c00256{bottom:252.533333pt;}
.y61_c00256{bottom:253.066667pt;}
.y2e_c00256{bottom:264.933333pt;}
.y2d_c00256{bottom:278.266667pt;}
.y2c_c00256{bottom:290.133333pt;}
.y60_c00256{bottom:292.666667pt;}
.y2b_c00256{bottom:303.600000pt;}
.y5f_c00256{bottom:308.400000pt;}
.y2a_c00256{bottom:316.400000pt;}
.y5e_c00256{bottom:324.133333pt;}
.y29_c00256{bottom:328.933333pt;}
.y5d_c00256{bottom:340.133333pt;}
.y28_c00256{bottom:344.000000pt;}
.y5c_c00256{bottom:355.866667pt;}
.y5b_c00256{bottom:371.866667pt;}
.y5a_c00256{bottom:391.333333pt;}
.y27_c00256{bottom:393.333333pt;}
.y26_c00256{bottom:409.333333pt;}
.y59_c00256{bottom:416.933333pt;}
.y25_c00256{bottom:425.066667pt;}
.y58_c00256{bottom:433.600000pt;}
.y24_c00256{bottom:441.066667pt;}
.y23_c00256{bottom:456.800000pt;}
.y57_c00256{bottom:460.400000pt;}
.y22_c00256{bottom:472.800000pt;}
.y56_c00256{bottom:476.133333pt;}
.y21_c00256{bottom:488.533333pt;}
.y55_c00256{bottom:492.133333pt;}
.y20_c00256{bottom:504.533333pt;}
.y54_c00256{bottom:507.866667pt;}
.y1f_c00256{bottom:520.266667pt;}
.y1e_c00256{bottom:536.000000pt;}
.y53_c00256{bottom:542.000000pt;}
.y52_c00256{bottom:547.066667pt;}
.y1d_c00256{bottom:551.733333pt;}
.y51_c00256{bottom:563.066667pt;}
.y1c_c00256{bottom:574.133333pt;}
.y50_c00256{bottom:578.800000pt;}
.y4f_c00256{bottom:594.533333pt;}
.y1b_c00256{bottom:595.733333pt;}
.y4e_c00256{bottom:610.533333pt;}
.y1a_c00256{bottom:611.733333pt;}
.y4d_c00256{bottom:626.266667pt;}
.y19_c00256{bottom:627.466667pt;}
.y4c_c00256{bottom:642.000000pt;}
.y18_c00256{bottom:643.200000pt;}
.y4b_c00256{bottom:658.000000pt;}
.y17_c00256{bottom:659.200000pt;}
.y4a_c00256{bottom:673.733333pt;}
.y16_c00256{bottom:682.266667pt;}
.y49_c00256{bottom:689.466667pt;}
.y15_c00256{bottom:700.133333pt;}
.y48_c00256{bottom:705.466667pt;}
.y14_c00256{bottom:713.866667pt;}
.y47_c00256{bottom:721.200000pt;}
.y13_c00256{bottom:729.600000pt;}
.y46_c00256{bottom:737.200000pt;}
.y12_c00256{bottom:748.533333pt;}
.y45_c00256{bottom:752.933333pt;}
.y11_c00256{bottom:764.800000pt;}
.y44_c00256{bottom:768.666667pt;}
.y43_c00256{bottom:792.266667pt;}
.y10_c00256{bottom:800.266667pt;}
.y42_c00256{bottom:808.266667pt;}
.yf_c00256{bottom:816.000000pt;}
.y41_c00256{bottom:823.866667pt;}
.ye_c00256{bottom:832.000000pt;}
.y40_c00256{bottom:839.600000pt;}
.yd_c00256{bottom:847.733333pt;}
.y3f_c00256{bottom:855.333333pt;}
.yc_c00256{bottom:870.000000pt;}
.y3e_c00256{bottom:871.333333pt;}
.yb_c00256{bottom:886.266667pt;}
.y3d_c00256{bottom:887.333333pt;}
.ya_c00256{bottom:902.000000pt;}
.y3c_c00256{bottom:906.400000pt;}
.y9_c00256{bottom:918.000000pt;}
.y3b_c00256{bottom:922.133333pt;}
.y8_c00256{bottom:933.733333pt;}
.y3a_c00256{bottom:938.133333pt;}
.y7_c00256{bottom:952.266667pt;}
.y39_c00256{bottom:953.866667pt;}
.y5_c00256{bottom:959.733333pt;}
.y6_c00256{bottom:961.600000pt;}
.y4_c00256{bottom:968.666667pt;}
.y38_c00256{bottom:969.600000pt;}
.y3_c00256{bottom:984.666667pt;}
.y37_c00256{bottom:985.333333pt;}
.y2_c00256{bottom:1008.266667pt;}
.y1_c00256{bottom:1008.933333pt;}
.h6_c00256{height:42.666667pt;}
.h7_c00256{height:48.000000pt;}
.h5_c00256{height:53.333333pt;}
.h4_c00256{height:58.666667pt;}
.h3_c00256{height:64.000000pt;}
.h8_c00256{height:69.333333pt;}
.h2_c00256{height:74.666667pt;}
.h1_c00256{height:1124.000000pt;}
.h0_c00256{height:1124.159993pt;}
.w1_c00256{width:854.666667pt;}
.w0_c00256{width:854.720052pt;}
.x0_c00256{left:0.000000pt;}
.x86_c00256{left:75.600000pt;}
.x89_c00256{left:76.533333pt;}
.x68_c00256{left:78.666667pt;}
.x36_c00256{left:79.733333pt;}
.x48_c00256{left:80.666667pt;}
.x94_c00256{left:82.933333pt;}
.x3_c00256{left:84.533333pt;}
.xa3_c00256{left:87.066667pt;}
.x43_c00256{left:90.133333pt;}
.x65_c00256{left:92.800000pt;}
.x4e_c00256{left:93.733333pt;}
.x4_c00256{left:95.466667pt;}
.xc_c00256{left:96.533333pt;}
.x17_c00256{left:101.600000pt;}
.x19_c00256{left:104.933333pt;}
.x8c_c00256{left:109.466667pt;}
.x1a_c00256{left:112.000000pt;}
.x26_c00256{left:116.666667pt;}
.x3f_c00256{left:117.600000pt;}
.x18_c00256{left:118.933333pt;}
.x5_c00256{left:120.800000pt;}
.xd_c00256{left:123.733333pt;}
.x2d_c00256{left:128.666667pt;}
.x9a_c00256{left:130.000000pt;}
.x5b_c00256{left:131.066667pt;}
.x4f_c00256{left:132.133333pt;}
.x40_c00256{left:133.866667pt;}
.x33_c00256{left:136.000000pt;}
.x1b_c00256{left:137.600000pt;}
.x7a_c00256{left:138.800000pt;}
.xe_c00256{left:142.000000pt;}
.x20_c00256{left:143.600000pt;}
.x27_c00256{left:144.800000pt;}
.x5c_c00256{left:146.400000pt;}
.x57_c00256{left:147.333333pt;}
.x70_c00256{left:148.800000pt;}
.x49_c00256{left:150.800000pt;}
.x93_c00256{left:152.933333pt;}
.x74_c00256{left:154.533333pt;}
.x6_c00256{left:155.733333pt;}
.xf_c00256{left:156.666667pt;}
.x1c_c00256{left:158.400000pt;}
.x6d_c00256{left:160.000000pt;}
.x69_c00256{left:160.933333pt;}
.x75_c00256{left:162.800000pt;}
.xa2_c00256{left:164.266667pt;}
.x5a_c00256{left:165.333333pt;}
.x7_c00256{left:167.600000pt;}
.x10_c00256{left:168.800000pt;}
.x90_c00256{left:170.133333pt;}
.x37_c00256{left:172.133333pt;}
.x9d_c00256{left:173.466667pt;}
.x66_c00256{left:174.400000pt;}
.x50_c00256{left:176.000000pt;}
.x28_c00256{left:177.733333pt;}
.x3b_c00256{left:179.200000pt;}
.x8a_c00256{left:181.200000pt;}
.x8d_c00256{left:182.800000pt;}
.x51_c00256{left:184.000000pt;}
.x61_c00256{left:186.000000pt;}
.xa0_c00256{left:187.866667pt;}
.x34_c00256{left:189.066667pt;}
.x44_c00256{left:190.266667pt;}
.x83_c00256{left:191.200000pt;}
.x2e_c00256{left:192.933333pt;}
.x6a_c00256{left:193.866667pt;}
.x87_c00256{left:195.866667pt;}
.x11_c00256{left:197.333333pt;}
.x9e_c00256{left:198.400000pt;}
.x3c_c00256{left:199.333333pt;}
.x8e_c00256{left:200.400000pt;}
.x95_c00256{left:201.866667pt;}
.x6e_c00256{left:204.133333pt;}
.x7f_c00256{left:205.466667pt;}
.x29_c00256{left:206.533333pt;}
.x8_c00256{left:208.533333pt;}
.x21_c00256{left:210.533333pt;}
.x2f_c00256{left:212.800000pt;}
.x67_c00256{left:214.400000pt;}
.x45_c00256{left:215.333333pt;}
.x38_c00256{left:216.266667pt;}
.x9b_c00256{left:219.600000pt;}
.x12_c00256{left:221.333333pt;}
.x6f_c00256{left:224.000000pt;}
.x6b_c00256{left:225.600000pt;}
.x30_c00256{left:226.933333pt;}
.x22_c00256{left:229.066667pt;}
.x46_c00256{left:231.066667pt;}
.x7e_c00256{left:234.933333pt;}
.x4b_c00256{left:236.533333pt;}
.x91_c00256{left:238.400000pt;}
.x53_c00256{left:239.733333pt;}
.x2a_c00256{left:241.333333pt;}
.x35_c00256{left:243.466667pt;}
.x7b_c00256{left:245.066667pt;}
.x1d_c00256{left:249.866667pt;}
.x58_c00256{left:251.600000pt;}
.xa1_c00256{left:252.533333pt;}
.x13_c00256{left:253.600000pt;}
.x52_c00256{left:255.066667pt;}
.x54_c00256{left:256.133333pt;}
.x80_c00256{left:258.933333pt;}
.x92_c00256{left:260.533333pt;}
.x62_c00256{left:261.866667pt;}
.x7c_c00256{left:262.933333pt;}
.x9_c00256{left:265.200000pt;}
.x47_c00256{left:266.266667pt;}
.x5d_c00256{left:267.600000pt;}
.x96_c00256{left:269.200000pt;}
.x84_c00256{left:271.466667pt;}
.x59_c00256{left:273.066667pt;}
.x55_c00256{left:274.000000pt;}
.x76_c00256{left:276.266667pt;}
.x41_c00256{left:277.200000pt;}
.x82_c00256{left:279.733333pt;}
.x2b_c00256{left:283.866667pt;}
.x8f_c00256{left:286.133333pt;}
.x14_c00256{left:287.200000pt;}
.x79_c00256{left:289.866667pt;}
.x63_c00256{left:292.266667pt;}
.x1_c00256{left:293.733333pt;}
.x6c_c00256{left:294.800000pt;}
.x3d_c00256{left:296.000000pt;}
.x81_c00256{left:297.066667pt;}
.x7d_c00256{left:298.400000pt;}
.x5e_c00256{left:300.266667pt;}
.x39_c00256{left:302.666667pt;}
.x23_c00256{left:304.000000pt;}
.x31_c00256{left:308.800000pt;}
.x4a_c00256{left:312.400000pt;}
.x64_c00256{left:313.333333pt;}
.x5f_c00256{left:315.600000pt;}
.x78_c00256{left:318.266667pt;}
.x9f_c00256{left:320.000000pt;}
.x3a_c00256{left:320.933333pt;}
.x71_c00256{left:322.400000pt;}
.x42_c00256{left:324.266667pt;}
.x72_c00256{left:325.733333pt;}
.x8b_c00256{left:327.466667pt;}
.x60_c00256{left:330.266667pt;}
.x97_c00256{left:332.000000pt;}
.xa_c00256{left:333.066667pt;}
.x2c_c00256{left:335.066667pt;}
.x24_c00256{left:336.666667pt;}
.x4c_c00256{left:337.866667pt;}
.x15_c00256{left:339.333333pt;}
.x1e_c00256{left:341.333333pt;}
.x77_c00256{left:343.066667pt;}
.x73_c00256{left:345.200000pt;}
.x56_c00256{left:347.066667pt;}
.x98_c00256{left:348.266667pt;}
.x9c_c00256{left:351.333333pt;}
.x3e_c00256{left:352.533333pt;}
.x25_c00256{left:353.600000pt;}
.xb_c00256{left:355.466667pt;}
.x32_c00256{left:357.733333pt;}
.x85_c00256{left:360.133333pt;}
.x1f_c00256{left:365.600000pt;}
.x99_c00256{left:367.200000pt;}
.x88_c00256{left:368.400000pt;}
.x16_c00256{left:372.266667pt;}
.x4d_c00256{left:375.333333pt;}
.x140_c00256{left:383.333333pt;}
.x141_c00256{left:393.600000pt;}
.x13f_c00256{left:394.666667pt;}
.x128_c00256{left:395.866667pt;}
.xef_c00256{left:397.066667pt;}
.x112_c00256{left:403.866667pt;}
.x121_c00256{left:404.933333pt;}
.xf4_c00256{left:406.266667pt;}
.x13d_c00256{left:407.333333pt;}
.x142_c00256{left:409.600000pt;}
.x132_c00256{left:410.533333pt;}
.x11e_c00256{left:411.733333pt;}
.xaa_c00256{left:412.800000pt;}
.xa4_c00256{left:413.733333pt;}
.x145_c00256{left:415.200000pt;}
.x144_c00256{left:417.866667pt;}
.x12d_c00256{left:421.066667pt;}
.x12f_c00256{left:427.866667pt;}
.xcd_c00256{left:429.066667pt;}
.x103_c00256{left:431.200000pt;}
.xc1_c00256{left:433.866667pt;}
.x119_c00256{left:434.933333pt;}
.x14a_c00256{left:436.933333pt;}
.xab_c00256{left:439.333333pt;}
.x125_c00256{left:440.800000pt;}
.xdb_c00256{left:442.000000pt;}
.x122_c00256{left:443.333333pt;}
.x110_c00256{left:444.533333pt;}
.x117_c00256{left:446.800000pt;}
.xd3_c00256{left:448.000000pt;}
.xb2_c00256{left:449.200000pt;}
.xe8_c00256{left:451.066667pt;}
.xf0_c00256{left:452.133333pt;}
.xce_c00256{left:454.666667pt;}
.xc8_c00256{left:455.866667pt;}
.x104_c00256{left:457.733333pt;}
.x108_c00256{left:459.200000pt;}
.xd4_c00256{left:460.533333pt;}
.xa5_c00256{left:462.400000pt;}
.x13b_c00256{left:463.333333pt;}
.xf5_c00256{left:465.200000pt;}
.xee_c00256{left:466.533333pt;}
.xb3_c00256{left:468.133333pt;}
.x11a_c00256{left:469.200000pt;}
.xdc_c00256{left:470.533333pt;}
.x134_c00256{left:471.733333pt;}
.x126_c00256{left:474.400000pt;}
.xac_c00256{left:475.466667pt;}
.x113_c00256{left:476.533333pt;}
.x100_c00256{left:478.133333pt;}
.xc9_c00256{left:480.133333pt;}
.x10c_c00256{left:482.000000pt;}
.x13c_c00256{left:485.466667pt;}
.xb9_c00256{left:488.266667pt;}
.x109_c00256{left:490.266667pt;}
.x143_c00256{left:491.866667pt;}
.x133_c00256{left:493.066667pt;}
.xe2_c00256{left:494.800000pt;}
.x10d_c00256{left:495.733333pt;}
.x129_c00256{left:498.000000pt;}
.xc2_c00256{left:500.400000pt;}
.xea_c00256{left:501.733333pt;}
.x118_c00256{left:503.466667pt;}
.xdd_c00256{left:505.466667pt;}
.xba_c00256{left:506.800000pt;}
.xca_c00256{left:510.266667pt;}
.xe3_c00256{left:512.133333pt;}
.xb4_c00256{left:513.600000pt;}
.x10a_c00256{left:515.200000pt;}
.xf6_c00256{left:516.666667pt;}
.x11b_c00256{left:518.533333pt;}
.xad_c00256{left:520.533333pt;}
.xeb_c00256{left:521.600000pt;}
.xde_c00256{left:523.066667pt;}
.xd5_c00256{left:524.266667pt;}
.x11f_c00256{left:528.266667pt;}
.xae_c00256{left:530.800000pt;}
.xf1_c00256{left:532.133333pt;}
.xcb_c00256{left:533.333333pt;}
.x11c_c00256{left:536.800000pt;}
.xc3_c00256{left:538.533333pt;}
.x10e_c00256{left:541.200000pt;}
.xa6_c00256{left:543.066667pt;}
.xfd_c00256{left:544.666667pt;}
.xb5_c00256{left:546.266667pt;}
.x12a_c00256{left:549.200000pt;}
.x105_c00256{left:550.266667pt;}
.x137_c00256{left:551.733333pt;}
.xd6_c00256{left:552.800000pt;}
.x146_c00256{left:554.400000pt;}
.xf9_c00256{left:556.533333pt;}
.xc4_c00256{left:558.000000pt;}
.x127_c00256{left:559.866667pt;}
.xbb_c00256{left:561.333333pt;}
.xdf_c00256{left:563.066667pt;}
.xe9_c00256{left:565.066667pt;}
.xfe_c00256{left:567.066667pt;}
.xb6_c00256{left:568.666667pt;}
.x114_c00256{left:570.933333pt;}
.x11d_c00256{left:572.000000pt;}
.xcf_c00256{left:573.066667pt;}
.xf7_c00256{left:574.933333pt;}
.x123_c00256{left:577.200000pt;}
.x130_c00256{left:578.533333pt;}
.xbc_c00256{left:579.600000pt;}
.x13e_c00256{left:580.666667pt;}
.xd7_c00256{left:582.533333pt;}
.xe4_c00256{left:583.866667pt;}
.x111_c00256{left:585.333333pt;}
.x12b_c00256{left:587.600000pt;}
.xc5_c00256{left:591.866667pt;}
.xd0_c00256{left:593.200000pt;}
.xff_c00256{left:594.533333pt;}
.xa7_c00256{left:596.800000pt;}
.xf8_c00256{left:598.666667pt;}
.xb7_c00256{left:600.400000pt;}
.x148_c00256{left:601.333333pt;}
.xfa_c00256{left:602.933333pt;}
.xaf_c00256{left:605.333333pt;}
.xd8_c00256{left:607.466667pt;}
.x120_c00256{left:608.533333pt;}
.xbd_c00256{left:609.733333pt;}
.xec_c00256{left:612.133333pt;}
.xa8_c00256{left:614.400000pt;}
.xfb_c00256{left:616.000000pt;}
.xe0_c00256{left:617.866667pt;}
.xd1_c00256{left:619.866667pt;}
.xc6_c00256{left:620.933333pt;}
.x138_c00256{left:622.800000pt;}
.x12c_c00256{left:624.400000pt;}
.xb0_c00256{left:627.066667pt;}
.x149_c00256{left:629.466667pt;}
.xed_c00256{left:630.666667pt;}
.xf2_c00256{left:632.266667pt;}
.x106_c00256{left:636.800000pt;}
.xe5_c00256{left:638.533333pt;}
.xbe_c00256{left:639.866667pt;}
.x10b_c00256{left:641.600000pt;}
.x131_c00256{left:642.533333pt;}
.x12e_c00256{left:644.266667pt;}
.x115_c00256{left:645.200000pt;}
.xb8_c00256{left:646.800000pt;}
.x101_c00256{left:649.466667pt;}
.xfc_c00256{left:651.466667pt;}
.xd9_c00256{left:653.200000pt;}
.x10f_c00256{left:656.000000pt;}
.xc7_c00256{left:657.466667pt;}
.xbf_c00256{left:658.800000pt;}
.x135_c00256{left:659.733333pt;}
.xd2_c00256{left:661.466667pt;}
.xcc_c00256{left:664.800000pt;}
.xe6_c00256{left:666.666667pt;}
.xda_c00256{left:670.800000pt;}
.xb1_c00256{left:671.866667pt;}
.xf3_c00256{left:673.200000pt;}
.x2_c00256{left:675.466667pt;}
.x107_c00256{left:677.733333pt;}
.x116_c00256{left:678.800000pt;}
.x124_c00256{left:681.466667pt;}
.xe7_c00256{left:682.400000pt;}
.x136_c00256{left:683.333333pt;}
.x147_c00256{left:684.400000pt;}
.x139_c00256{left:685.466667pt;}
.xe1_c00256{left:686.400000pt;}
.x102_c00256{left:688.800000pt;}
.x13a_c00256{left:691.200000pt;}
.xa9_c00256{left:693.733333pt;}
.xc0_c00256{left:694.933333pt;}
}





/* 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_c00257 {
    display:none;
  }
  .loading-indicator_c00257.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00257 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_c00257 { 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_c00257" -> "#page-container .classname_c00257")
 */
.pf_c00257 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00257 { /* 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_c00257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00257 { /* 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_c00257 { /* 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_c00257 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00257 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00257 {overflow:visible;}
  }
}
.c_c00257 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00257 { /* 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_c00257:after { /* webkit #35443 */
  content: '';
}
.t_c00257:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00257 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 */
}
.__c00257 { /* 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_c00257 { /* info for Javascript */
  display:none;
}
.l_c00257 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00257 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00257 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00257: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_c00257 {
    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_c00257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00257.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_c00257 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00257;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.000000;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;}
.m104_c00257{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m74_c00257{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m8_c00257{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00257{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m21_c00257{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mef_c00257{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.m47_c00257{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00257{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m34_c00257{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m82_c00257{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md3_c00257{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m14_c00257{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m92_c00257{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md9_c00257{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00257{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00257{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00257{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00257{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00257{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m61_c00257{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m117_c00257{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00257{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00257{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00257{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mde_c00257{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00257{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m58_c00257{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m40_c00257{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.maa_c00257{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00257{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mce_c00257{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00257{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m43_c00257{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00257{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m60_c00257{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m112_c00257{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00257{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00257{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00257{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00257{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00257{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00257{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00257{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00257{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.md4_c00257{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00257{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mea_c00257{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m62_c00257{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00257{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00257{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00257{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m16_c00257{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m44_c00257{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.md8_c00257{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00257{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00257{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m29_c00257{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m38_c00257{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00257{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m71_c00257{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m32_c00257{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me6_c00257{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mba_c00257{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00257{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.me9_c00257{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00257{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00257{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m84_c00257{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00257{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00257{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00257{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00257{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m54_c00257{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me3_c00257{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00257{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mad_c00257{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00257{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m72_c00257{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00257{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00257{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m110_c00257{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m97_c00257{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00257{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m25_c00257{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m33_c00257{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00257{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m36_c00257{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me1_c00257{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m56_c00257{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00257{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m17_c00257{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m98_c00257{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m55_c00257{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00257{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00257{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00257{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00257{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00257{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m59_c00257{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00257{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00257{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00257{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md6_c00257{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mac_c00257{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00257{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00257{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mae_c00257{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00257{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00257{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00257{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m88_c00257{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me_c00257{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m67_c00257{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m30_c00257{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc_c00257{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m66_c00257{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m31_c00257{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6_c00257{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md7_c00257{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00257{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00257{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md1_c00257{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m118_c00257{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.md0_c00257{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m27_c00257{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m80_c00257{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.maf_c00257{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m64_c00257{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m99_c00257{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf_c00257{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m68_c00257{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m94_c00257{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00257{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00257{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me8_c00257{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00257{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md2_c00257{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00257{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00257{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00257{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mca_c00257{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00257{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mda_c00257{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00257{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.me4_c00257{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m45_c00257{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00257{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m41_c00257{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00257{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m26_c00257{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m83_c00257{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00257{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00257{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00257{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mee_c00257{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00257{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00257{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m65_c00257{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00257{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00257{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00257{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m108_c00257{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m37_c00257{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m105_c00257{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00257{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m18_c00257{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m48_c00257{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00257{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00257{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00257{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m85_c00257{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m111_c00257{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m93_c00257{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m91_c00257{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m96_c00257{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m24_c00257{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00257{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m22_c00257{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00257{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00257{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m63_c00257{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00257{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m53_c00257{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m52_c00257{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00257{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m109_c00257{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m90_c00257{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00257{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00257{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m86_c00257{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00257{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00257{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m49_c00257{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00257{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m46_c00257{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m113_c00257{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md5_c00257{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00257{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb_c00257{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me0_c00257{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m23_c00257{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m75_c00257{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00257{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m19_c00257{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me7_c00257{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00257{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m70_c00257{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m57_c00257{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m51_c00257{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m39_c00257{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00257{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m9_c00257{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m77_c00257{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m119_c00257{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m95_c00257{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00257{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00257{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m116_c00257{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00257{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m28_c00257{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00257{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m35_c00257{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m10_c00257{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00257{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00257{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00257{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00257{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00257{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00257{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00257{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00257{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00257{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00257{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m69_c00257{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m101_c00257{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mec_c00257{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00257{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00257{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mff_c00257{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);}
.ma_c00257{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12_c00257{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me5_c00257{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.md_c00257{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.meb_c00257{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m114_c00257{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mab_c00257{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m13_c00257{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m87_c00257{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m115_c00257{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m102_c00257{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00257{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m78_c00257{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m79_c00257{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m50_c00257{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me2_c00257{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00257{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m107_c00257{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00257{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m89_c00257{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00257{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00257{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m81_c00257{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.med_c00257{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00257{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00257{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m106_c00257{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m20_c00257{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00257{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00257{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00257{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m100_c00257{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m15_c00257{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00257{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00257{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m103_c00257{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00257{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00257{transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00257{transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);}
.m42_c00257{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m76_c00257{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.473000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473000,0.000000,0.000000,0.250000,0,0);}
.m73_c00257{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls0_c00257{letter-spacing:0.000000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{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__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00257{word-spacing:-10.441176px;}
.ws7_c00257{word-spacing:-6.920635px;}
.ws6_c00257{word-spacing:-6.705882px;}
.ws1_c00257{word-spacing:-5.937500px;}
.ws5_c00257{word-spacing:-1.547067px;}
.wsa_c00257{word-spacing:0.000000px;}
.ws0_c00257{word-spacing:1.757962px;}
.ws3_c00257{word-spacing:11.875000px;}
.ws9_c00257{word-spacing:22.142857px;}
.ws4_c00257{word-spacing:42.715596px;}
.ws2_c00257{word-spacing:213.372738px;}
._0_c00257{width:37.187500px;}
._1_c00257{width:68.214286px;}
.fc0_c00257{color:transparent;}
.fs6_c00257{font-size:24.000000px;}
.fs5_c00257{font-size:30.000000px;}
.fs8_c00257{font-size:36.000000px;}
.fs7_c00257{font-size:42.000000px;}
.fs9_c00257{font-size:48.000000px;}
.fs4_c00257{font-size:54.000000px;}
.fs3_c00257{font-size:60.000000px;}
.fs2_c00257{font-size:66.000000px;}
.fs0_c00257{font-size:72.000000px;}
.fs1_c00257{font-size:84.000000px;}
.y0_c00257{bottom:0.000000px;}
.y72_c00257{bottom:180.000000px;}
.y41_c00257{bottom:186.000000px;}
.y71_c00257{bottom:194.850000px;}
.y40_c00257{bottom:206.550000px;}
.y70_c00257{bottom:213.150000px;}
.y3f_c00257{bottom:221.250000px;}
.y6f_c00257{bottom:223.500000px;}
.y3e_c00257{bottom:239.250000px;}
.y6e_c00257{bottom:253.350000px;}
.y3d_c00257{bottom:256.950000px;}
.y6d_c00257{bottom:266.700000px;}
.y3c_c00257{bottom:274.950000px;}
.y6c_c00257{bottom:281.100000px;}
.y3b_c00257{bottom:292.650000px;}
.y6b_c00257{bottom:297.000000px;}
.y3a_c00257{bottom:309.900000px;}
.y6a_c00257{bottom:315.900000px;}
.y39_c00257{bottom:328.200000px;}
.y69_c00257{bottom:333.600000px;}
.y38_c00257{bottom:345.450000px;}
.y68_c00257{bottom:351.900000px;}
.y37_c00257{bottom:363.450000px;}
.y67_c00257{bottom:369.600000px;}
.y36_c00257{bottom:381.150000px;}
.y66_c00257{bottom:387.600000px;}
.y35_c00257{bottom:399.450000px;}
.y65_c00257{bottom:405.300000px;}
.y34_c00257{bottom:417.150000px;}
.y64_c00257{bottom:423.300000px;}
.y33_c00257{bottom:435.150000px;}
.y63_c00257{bottom:445.650000px;}
.y32_c00257{bottom:453.150000px;}
.y62_c00257{bottom:463.350000px;}
.y31_c00257{bottom:471.150000px;}
.y61_c00257{bottom:481.350000px;}
.y30_c00257{bottom:489.150000px;}
.y60_c00257{bottom:503.700000px;}
.y2f_c00257{bottom:507.150000px;}
.y5f_c00257{bottom:521.700000px;}
.y2e_c00257{bottom:524.850000px;}
.y2d_c00257{bottom:542.550000px;}
.y5e_c00257{bottom:548.250000px;}
.y2c_c00257{bottom:560.100000px;}
.y5d_c00257{bottom:566.250000px;}
.y5c_c00257{bottom:584.250000px;}
.y2b_c00257{bottom:585.600000px;}
.y2a_c00257{bottom:599.250000px;}
.y5b_c00257{bottom:606.150000px;}
.y29_c00257{bottom:614.400000px;}
.y5a_c00257{bottom:623.850000px;}
.y59_c00257{bottom:641.850000px;}
.y28_c00257{bottom:643.200000px;}
.y27_c00257{bottom:653.700000px;}
.y20_c00257{bottom:657.000000px;}
.y58_c00257{bottom:659.850000px;}
.y1f_c00257{bottom:671.400000px;}
.y57_c00257{bottom:677.850000px;}
.y1e_c00257{bottom:685.800000px;}
.y56_c00257{bottom:695.850000px;}
.y1d_c00257{bottom:700.200000px;}
.y26_c00257{bottom:701.700000px;}
.y55_c00257{bottom:713.550000px;}
.y1c_c00257{bottom:714.900000px;}
.y1b_c00257{bottom:729.300000px;}
.y54_c00257{bottom:731.550000px;}
.y1a_c00257{bottom:743.400000px;}
.y53_c00257{bottom:749.550000px;}
.y19_c00257{bottom:757.800000px;}
.y52_c00257{bottom:770.700000px;}
.y18_c00257{bottom:772.500000px;}
.y17_c00257{bottom:786.600000px;}
.y51_c00257{bottom:788.700000px;}
.y16_c00257{bottom:800.700000px;}
.y25_c00257{bottom:801.300000px;}
.y50_c00257{bottom:806.700000px;}
.y15_c00257{bottom:815.100000px;}
.y4f_c00257{bottom:824.400000px;}
.y14_c00257{bottom:829.500000px;}
.y4e_c00257{bottom:842.400000px;}
.y24_c00257{bottom:843.150000px;}
.y13_c00257{bottom:843.600000px;}
.y12_c00257{bottom:858.000000px;}
.y4d_c00257{bottom:860.100000px;}
.y11_c00257{bottom:872.400000px;}
.y4c_c00257{bottom:878.100000px;}
.y22_c00257{bottom:886.650000px;}
.y10_c00257{bottom:887.100000px;}
.y23_c00257{bottom:887.700000px;}
.y4b_c00257{bottom:896.100000px;}
.yf_c00257{bottom:901.500000px;}
.y4a_c00257{bottom:913.800000px;}
.ye_c00257{bottom:915.900000px;}
.y21_c00257{bottom:916.950000px;}
.yd_c00257{bottom:932.400000px;}
.y49_c00257{bottom:932.850000px;}
.yc_c00257{bottom:943.950000px;}
.y48_c00257{bottom:949.350000px;}
.yb_c00257{bottom:959.400000px;}
.y47_c00257{bottom:967.350000px;}
.ya_c00257{bottom:973.800000px;}
.y46_c00257{bottom:985.050000px;}
.y9_c00257{bottom:994.200000px;}
.y45_c00257{bottom:1003.050000px;}
.y8_c00257{bottom:1011.900000px;}
.y44_c00257{bottom:1020.750000px;}
.y7_c00257{bottom:1029.900000px;}
.y43_c00257{bottom:1038.450000px;}
.y6_c00257{bottom:1056.150000px;}
.y42_c00257{bottom:1056.450000px;}
.y5_c00257{bottom:1074.150000px;}
.y4_c00257{bottom:1092.150000px;}
.y3_c00257{bottom:1109.850000px;}
.y1_c00257{bottom:1133.250000px;}
.y2_c00257{bottom:1136.550000px;}
.h8_c00257{height:24.000000px;}
.h7_c00257{height:30.000000px;}
.ha_c00257{height:36.000000px;}
.h9_c00257{height:42.000000px;}
.hb_c00257{height:48.000000px;}
.h6_c00257{height:54.000000px;}
.h5_c00257{height:60.000000px;}
.h4_c00257{height:66.000000px;}
.h2_c00257{height:72.000000px;}
.h3_c00257{height:84.000000px;}
.h1_c00257{height:1266.000000px;}
.h0_c00257{height:1266.120025px;}
.w1_c00257{width:961.500000px;}
.w0_c00257{width:961.560058px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:174.300000px;}
.x1d_c00257{left:177.150000px;}
.x73_c00257{left:180.750000px;}
.x9_c00257{left:183.150000px;}
.x32_c00257{left:191.250000px;}
.x56_c00257{left:192.300000px;}
.x3_c00257{left:194.100000px;}
.x75_c00257{left:198.750000px;}
.x7b_c00257{left:200.100000px;}
.x8d_c00257{left:201.450000px;}
.x9b_c00257{left:203.400000px;}
.x38_c00257{left:205.950000px;}
.x53_c00257{left:207.000000px;}
.x57_c00257{left:208.200000px;}
.x68_c00257{left:209.400000px;}
.x59_c00257{left:211.050000px;}
.x65_c00257{left:212.700000px;}
.xa_c00257{left:217.350000px;}
.x1e_c00257{left:218.850000px;}
.x37_c00257{left:224.700000px;}
.x9d_c00257{left:225.750000px;}
.xf_c00257{left:227.100000px;}
.x72_c00257{left:230.250000px;}
.x6e_c00257{left:231.300000px;}
.x76_c00257{left:232.650000px;}
.x25_c00257{left:234.750000px;}
.x94_c00257{left:236.700000px;}
.x2a_c00257{left:238.350000px;}
.x45_c00257{left:241.050000px;}
.x41_c00257{left:243.000000px;}
.x16_c00257{left:244.500000px;}
.xa4_c00257{left:245.850000px;}
.x50_c00257{left:248.100000px;}
.x4_c00257{left:249.150000px;}
.x33_c00257{left:250.650000px;}
.x2e_c00257{left:252.000000px;}
.x8e_c00257{left:253.500000px;}
.x5a_c00257{left:255.600000px;}
.xb_c00257{left:258.450000px;}
.x82_c00257{left:260.400000px;}
.x4b_c00257{left:261.900000px;}
.x46_c00257{left:263.700000px;}
.x42_c00257{left:264.900000px;}
.x17_c00257{left:266.400000px;}
.x39_c00257{left:268.650000px;}
.x88_c00257{left:270.000000px;}
.x77_c00257{left:271.500000px;}
.x63_c00257{left:273.300000px;}
.x10_c00257{left:274.950000px;}
.x54_c00257{left:277.650000px;}
.x4c_c00257{left:280.650000px;}
.x5b_c00257{left:282.600000px;}
.x1f_c00257{left:283.950000px;}
.x2b_c00257{left:285.450000px;}
.x78_c00257{left:286.650000px;}
.x5_c00257{left:289.800000px;}
.x26_c00257{left:290.850000px;}
.x91_c00257{left:294.000000px;}
.xc_c00257{left:295.200000px;}
.x8f_c00257{left:298.500000px;}
.x51_c00257{left:300.600000px;}
.x5c_c00257{left:303.600000px;}
.x18_c00257{left:306.000000px;}
.x3a_c00257{left:307.200000px;}
.x4f_c00257{left:308.400000px;}
.x7c_c00257{left:311.700000px;}
.x66_c00257{left:315.000000px;}
.xa2_c00257{left:316.650000px;}
.x43_c00257{left:318.150000px;}
.x9c_c00257{left:319.650000px;}
.x2c_c00257{left:320.700000px;}
.x96_c00257{left:322.350000px;}
.x34_c00257{left:324.750000px;}
.x6_c00257{left:325.800000px;}
.x47_c00257{left:328.200000px;}
.x20_c00257{left:331.800000px;}
.x11_c00257{left:333.300000px;}
.x7e_c00257{left:334.650000px;}
.x9e_c00257{left:336.450000px;}
.x83_c00257{left:338.850000px;}
.x5d_c00257{left:341.100000px;}
.x79_c00257{left:343.500000px;}
.x2d_c00257{left:346.650000px;}
.x48_c00257{left:347.700000px;}
.x12_c00257{left:348.750000px;}
.x4d_c00257{left:349.800000px;}
.x92_c00257{left:351.600000px;}
.x19_c00257{left:352.800000px;}
.xd_c00257{left:354.900000px;}
.x97_c00257{left:356.550000px;}
.x74_c00257{left:357.900000px;}
.x67_c00257{left:359.250000px;}
.x7f_c00257{left:361.350000px;}
.x49_c00257{left:362.400000px;}
.x90_c00257{left:365.700000px;}
.x84_c00257{left:367.200000px;}
.x21_c00257{left:369.300000px;}
.x3b_c00257{left:370.500000px;}
.x3f_c00257{left:371.700000px;}
.x58_c00257{left:374.550000px;}
.x52_c00257{left:377.250000px;}
.x5f_c00257{left:378.750000px;}
.x5e_c00257{left:381.750000px;}
.x89_c00257{left:383.850000px;}
.x2f_c00257{left:385.650000px;}
.x27_c00257{left:387.750000px;}
.xa6_c00257{left:389.400000px;}
.x1a_c00257{left:390.600000px;}
.x13_c00257{left:393.450000px;}
.x9a_c00257{left:395.550000px;}
.x95_c00257{left:397.650000px;}
.x64_c00257{left:400.650000px;}
.xa5_c00257{left:401.700000px;}
.xa1_c00257{left:403.350000px;}
.x30_c00257{left:404.400000px;}
.x35_c00257{left:406.500000px;}
.x4a_c00257{left:407.700000px;}
.x6f_c00257{left:409.200000px;}
.x2_c00257{left:411.150000px;}
.x60_c00257{left:412.200000px;}
.x55_c00257{left:413.400000px;}
.x69_c00257{left:415.050000px;}
.x85_c00257{left:416.550000px;}
.x4e_c00257{left:420.450000px;}
.x44_c00257{left:422.100000px;}
.x98_c00257{left:423.150000px;}
.x7_c00257{left:424.800000px;}
.x7a_c00257{left:426.300000px;}
.x22_c00257{left:427.650000px;}
.x9f_c00257{left:428.700000px;}
.xa3_c00257{left:429.750000px;}
.x3c_c00257{left:432.000000px;}
.x8a_c00257{left:436.050000px;}
.x86_c00257{left:437.850000px;}
.x23_c00257{left:440.250000px;}
.x40_c00257{left:441.450000px;}
.x36_c00257{left:443.550000px;}
.x61_c00257{left:444.900000px;}
.x1b_c00257{left:446.700000px;}
.x28_c00257{left:447.900000px;}
.x14_c00257{left:448.950000px;}
.x8b_c00257{left:452.250000px;}
.xe_c00257{left:454.950000px;}
.x31_c00257{left:457.650000px;}
.x3d_c00257{left:462.900000px;}
.x80_c00257{left:464.250000px;}
.x93_c00257{left:466.050000px;}
.x29_c00257{left:467.700000px;}
.x6a_c00257{left:470.100000px;}
.x6c_c00257{left:471.600000px;}
.x62_c00257{left:473.400000px;}
.x8_c00257{left:478.050000px;}
.x87_c00257{left:479.550000px;}
.xa0_c00257{left:481.950000px;}
.x1c_c00257{left:483.000000px;}
.x70_c00257{left:485.550000px;}
.x24_c00257{left:486.750000px;}
.x99_c00257{left:490.200000px;}
.x8c_c00257{left:491.550000px;}
.x6d_c00257{left:494.250000px;}
.x3e_c00257{left:497.400000px;}
.x81_c00257{left:498.750000px;}
.x6b_c00257{left:501.450000px;}
.x71_c00257{left:502.800000px;}
.x7d_c00257{left:505.800000px;}
.x15_c00257{left:507.600000px;}
.x111_c00257{left:534.900000px;}
.x12e_c00257{left:536.700000px;}
.x133_c00257{left:538.200000px;}
.x146_c00257{left:539.700000px;}
.xa7_c00257{left:548.700000px;}
.xba_c00257{left:549.900000px;}
.xda_c00257{left:550.950000px;}
.xf9_c00257{left:552.000000px;}
.xfe_c00257{left:553.050000px;}
.x12c_c00257{left:554.250000px;}
.x132_c00257{left:555.750000px;}
.x144_c00257{left:556.800000px;}
.x150_c00257{left:559.800000px;}
.x14f_c00257{left:561.900000px;}
.x125_c00257{left:566.550000px;}
.xbb_c00257{left:567.900000px;}
.x10d_c00257{left:569.700000px;}
.x11d_c00257{left:571.950000px;}
.x134_c00257{left:574.200000px;}
.xe4_c00257{left:575.550000px;}
.xfa_c00257{left:579.000000px;}
.xdb_c00257{left:581.850000px;}
.x103_c00257{left:583.950000px;}
.xaf_c00257{left:585.150000px;}
.xff_c00257{left:586.500000px;}
.x117_c00257{left:587.700000px;}
.x14a_c00257{left:589.200000px;}
.xca_c00257{left:590.250000px;}
.x109_c00257{left:591.300000px;}
.xe7_c00257{left:593.850000px;}
.xf3_c00257{left:596.100000px;}
.x100_c00257{left:599.100000px;}
.xc0_c00257{left:600.600000px;}
.xe8_c00257{left:603.150000px;}
.x121_c00257{left:605.100000px;}
.xa8_c00257{left:607.350000px;}
.xbc_c00257{left:609.600000px;}
.x129_c00257{left:610.800000px;}
.xef_c00257{left:615.000000px;}
.xd4_c00257{left:617.700000px;}
.xe9_c00257{left:620.100000px;}
.xc1_c00257{left:621.150000px;}
.xd0_c00257{left:623.250000px;}
.xb0_c00257{left:626.850000px;}
.x10e_c00257{left:628.350000px;}
.xcb_c00257{left:630.600000px;}
.xe1_c00257{left:633.900000px;}
.xf4_c00257{left:635.400000px;}
.x12a_c00257{left:636.750000px;}
.x14d_c00257{left:638.100000px;}
.x10f_c00257{left:640.650000px;}
.xea_c00257{left:641.700000px;}
.x104_c00257{left:643.350000px;}
.xe5_c00257{left:646.050000px;}
.x112_c00257{left:648.000000px;}
.xa9_c00257{left:650.850000px;}
.xdc_c00257{left:653.100000px;}
.xc2_c00257{left:656.100000px;}
.x10a_c00257{left:658.650000px;}
.x118_c00257{left:659.700000px;}
.x147_c00257{left:662.100000px;}
.xd5_c00257{left:663.450000px;}
.xb1_c00257{left:665.400000px;}
.x141_c00257{left:667.200000px;}
.xf0_c00257{left:668.250000px;}
.x12f_c00257{left:669.300000px;}
.x137_c00257{left:673.050000px;}
.xcc_c00257{left:674.850000px;}
.xaa_c00257{left:676.350000px;}
.xc3_c00257{left:678.000000px;}
.xf5_c00257{left:679.350000px;}
.xbd_c00257{left:680.550000px;}
.x10b_c00257{left:682.050000px;}
.x126_c00257{left:684.000000px;}
.x152_c00257{left:687.150000px;}
.x122_c00257{left:688.350000px;}
.xb2_c00257{left:690.600000px;}
.xf1_c00257{left:691.650000px;}
.x14b_c00257{left:693.150000px;}
.xeb_c00257{left:694.200000px;}
.xc4_c00257{left:695.250000px;}
.xab_c00257{left:697.650000px;}
.xdd_c00257{left:699.600000px;}
.x11b_c00257{left:700.800000px;}
.x148_c00257{left:702.000000px;}
.x135_c00257{left:703.050000px;}
.xb3_c00257{left:705.000000px;}
.xbe_c00257{left:706.500000px;}
.x110_c00257{left:710.400000px;}
.xd1_c00257{left:712.500000px;}
.x11e_c00257{left:714.450000px;}
.x145_c00257{left:717.300000px;}
.x101_c00257{left:719.700000px;}
.x123_c00257{left:721.050000px;}
.xcd_c00257{left:722.100000px;}
.xd6_c00257{left:723.600000px;}
.x119_c00257{left:724.800000px;}
.xde_c00257{left:726.600000px;}
.x14e_c00257{left:730.200000px;}
.xb4_c00257{left:731.250000px;}
.x142_c00257{left:732.450000px;}
.xe2_c00257{left:735.150000px;}
.x12b_c00257{left:736.200000px;}
.x113_c00257{left:738.900000px;}
.xb5_c00257{left:739.950000px;}
.xc5_c00257{left:741.300000px;}
.xd7_c00257{left:742.350000px;}
.x124_c00257{left:743.400000px;}
.x10c_c00257{left:745.350000px;}
.xac_c00257{left:747.000000px;}
.xd2_c00257{left:748.500000px;}
.xf6_c00257{left:750.600000px;}
.x13d_c00257{left:752.100000px;}
.x130_c00257{left:753.300000px;}
.x12d_c00257{left:755.700000px;}
.xb6_c00257{left:757.200000px;}
.xfb_c00257{left:759.600000px;}
.xc6_c00257{left:760.800000px;}
.x105_c00257{left:762.900000px;}
.xd8_c00257{left:765.450000px;}
.xce_c00257{left:767.100000px;}
.x13f_c00257{left:768.900000px;}
.xf7_c00257{left:770.400000px;}
.x153_c00257{left:774.600000px;}
.xd3_c00257{left:777.000000px;}
.x14c_c00257{left:778.350000px;}
.x114_c00257{left:780.300000px;}
.x143_c00257{left:782.550000px;}
.xdf_c00257{left:784.800000px;}
.xe3_c00257{left:785.850000px;}
.xec_c00257{left:788.550000px;}
.xc7_c00257{left:789.600000px;}
.x11f_c00257{left:791.100000px;}
.x115_c00257{left:792.900000px;}
.x136_c00257{left:794.550000px;}
.xb7_c00257{left:795.750000px;}
.x138_c00257{left:798.600000px;}
.x13b_c00257{left:800.400000px;}
.xad_c00257{left:802.050000px;}
.x106_c00257{left:803.550000px;}
.xfc_c00257{left:804.600000px;}
.x11a_c00257{left:806.850000px;}
.x13c_c00257{left:809.100000px;}
.xbf_c00257{left:810.450000px;}
.xb8_c00257{left:811.950000px;}
.xd9_c00257{left:814.800000px;}
.xed_c00257{left:816.600000px;}
.x139_c00257{left:817.650000px;}
.x127_c00257{left:819.300000px;}
.xee_c00257{left:820.650000px;}
.x102_c00257{left:822.300000px;}
.xf8_c00257{left:825.900000px;}
.xae_c00257{left:826.950000px;}
.x107_c00257{left:828.000000px;}
.x11c_c00257{left:830.100000px;}
.xc8_c00257{left:831.750000px;}
.x13e_c00257{left:833.400000px;}
.x151_c00257{left:834.450000px;}
.xe0_c00257{left:836.250000px;}
.xfd_c00257{left:838.500000px;}
.xcf_c00257{left:840.600000px;}
.xc9_c00257{left:841.800000px;}
.x116_c00257{left:844.050000px;}
.x131_c00257{left:845.850000px;}
.x128_c00257{left:848.100000px;}
.xe6_c00257{left:850.050000px;}
.xb9_c00257{left:856.650000px;}
.x120_c00257{left:857.700000px;}
.x149_c00257{left:861.450000px;}
.x13a_c00257{left:863.400000px;}
.x140_c00257{left:864.750000px;}
.xf2_c00257{left:867.600000px;}
.x108_c00257{left:869.700000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws8_c00257{word-spacing:-9.281046pt;}
.ws7_c00257{word-spacing:-6.151675pt;}
.ws6_c00257{word-spacing:-5.960784pt;}
.ws1_c00257{word-spacing:-5.277778pt;}
.ws5_c00257{word-spacing:-1.375171pt;}
.wsa_c00257{word-spacing:0.000000pt;}
.ws0_c00257{word-spacing:1.562633pt;}
.ws3_c00257{word-spacing:10.555556pt;}
.ws9_c00257{word-spacing:19.682540pt;}
.ws4_c00257{word-spacing:37.969419pt;}
.ws2_c00257{word-spacing:189.664656pt;}
._0_c00257{width:33.055556pt;}
._1_c00257{width:60.634921pt;}
.fs6_c00257{font-size:21.333333pt;}
.fs5_c00257{font-size:26.666667pt;}
.fs8_c00257{font-size:32.000000pt;}
.fs7_c00257{font-size:37.333333pt;}
.fs9_c00257{font-size:42.666667pt;}
.fs4_c00257{font-size:48.000000pt;}
.fs3_c00257{font-size:53.333333pt;}
.fs2_c00257{font-size:58.666667pt;}
.fs0_c00257{font-size:64.000000pt;}
.fs1_c00257{font-size:74.666667pt;}
.y0_c00257{bottom:0.000000pt;}
.y72_c00257{bottom:160.000000pt;}
.y41_c00257{bottom:165.333333pt;}
.y71_c00257{bottom:173.200000pt;}
.y40_c00257{bottom:183.600000pt;}
.y70_c00257{bottom:189.466667pt;}
.y3f_c00257{bottom:196.666667pt;}
.y6f_c00257{bottom:198.666667pt;}
.y3e_c00257{bottom:212.666667pt;}
.y6e_c00257{bottom:225.200000pt;}
.y3d_c00257{bottom:228.400000pt;}
.y6d_c00257{bottom:237.066667pt;}
.y3c_c00257{bottom:244.400000pt;}
.y6c_c00257{bottom:249.866667pt;}
.y3b_c00257{bottom:260.133333pt;}
.y6b_c00257{bottom:264.000000pt;}
.y3a_c00257{bottom:275.466667pt;}
.y6a_c00257{bottom:280.800000pt;}
.y39_c00257{bottom:291.733333pt;}
.y69_c00257{bottom:296.533333pt;}
.y38_c00257{bottom:307.066667pt;}
.y68_c00257{bottom:312.800000pt;}
.y37_c00257{bottom:323.066667pt;}
.y67_c00257{bottom:328.533333pt;}
.y36_c00257{bottom:338.800000pt;}
.y66_c00257{bottom:344.533333pt;}
.y35_c00257{bottom:355.066667pt;}
.y65_c00257{bottom:360.266667pt;}
.y34_c00257{bottom:370.800000pt;}
.y64_c00257{bottom:376.266667pt;}
.y33_c00257{bottom:386.800000pt;}
.y63_c00257{bottom:396.133333pt;}
.y32_c00257{bottom:402.800000pt;}
.y62_c00257{bottom:411.866667pt;}
.y31_c00257{bottom:418.800000pt;}
.y61_c00257{bottom:427.866667pt;}
.y30_c00257{bottom:434.800000pt;}
.y60_c00257{bottom:447.733333pt;}
.y2f_c00257{bottom:450.800000pt;}
.y5f_c00257{bottom:463.733333pt;}
.y2e_c00257{bottom:466.533333pt;}
.y2d_c00257{bottom:482.266667pt;}
.y5e_c00257{bottom:487.333333pt;}
.y2c_c00257{bottom:497.866667pt;}
.y5d_c00257{bottom:503.333333pt;}
.y5c_c00257{bottom:519.333333pt;}
.y2b_c00257{bottom:520.533333pt;}
.y2a_c00257{bottom:532.666667pt;}
.y5b_c00257{bottom:538.800000pt;}
.y29_c00257{bottom:546.133333pt;}
.y5a_c00257{bottom:554.533333pt;}
.y59_c00257{bottom:570.533333pt;}
.y28_c00257{bottom:571.733333pt;}
.y27_c00257{bottom:581.066667pt;}
.y20_c00257{bottom:584.000000pt;}
.y58_c00257{bottom:586.533333pt;}
.y1f_c00257{bottom:596.800000pt;}
.y57_c00257{bottom:602.533333pt;}
.y1e_c00257{bottom:609.600000pt;}
.y56_c00257{bottom:618.533333pt;}
.y1d_c00257{bottom:622.400000pt;}
.y26_c00257{bottom:623.733333pt;}
.y55_c00257{bottom:634.266667pt;}
.y1c_c00257{bottom:635.466667pt;}
.y1b_c00257{bottom:648.266667pt;}
.y54_c00257{bottom:650.266667pt;}
.y1a_c00257{bottom:660.800000pt;}
.y53_c00257{bottom:666.266667pt;}
.y19_c00257{bottom:673.600000pt;}
.y52_c00257{bottom:685.066667pt;}
.y18_c00257{bottom:686.666667pt;}
.y17_c00257{bottom:699.200000pt;}
.y51_c00257{bottom:701.066667pt;}
.y16_c00257{bottom:711.733333pt;}
.y25_c00257{bottom:712.266667pt;}
.y50_c00257{bottom:717.066667pt;}
.y15_c00257{bottom:724.533333pt;}
.y4f_c00257{bottom:732.800000pt;}
.y14_c00257{bottom:737.333333pt;}
.y4e_c00257{bottom:748.800000pt;}
.y24_c00257{bottom:749.466667pt;}
.y13_c00257{bottom:749.866667pt;}
.y12_c00257{bottom:762.666667pt;}
.y4d_c00257{bottom:764.533333pt;}
.y11_c00257{bottom:775.466667pt;}
.y4c_c00257{bottom:780.533333pt;}
.y22_c00257{bottom:788.133333pt;}
.y10_c00257{bottom:788.533333pt;}
.y23_c00257{bottom:789.066667pt;}
.y4b_c00257{bottom:796.533333pt;}
.yf_c00257{bottom:801.333333pt;}
.y4a_c00257{bottom:812.266667pt;}
.ye_c00257{bottom:814.133333pt;}
.y21_c00257{bottom:815.066667pt;}
.yd_c00257{bottom:828.800000pt;}
.y49_c00257{bottom:829.200000pt;}
.yc_c00257{bottom:839.066667pt;}
.y48_c00257{bottom:843.866667pt;}
.yb_c00257{bottom:852.800000pt;}
.y47_c00257{bottom:859.866667pt;}
.ya_c00257{bottom:865.600000pt;}
.y46_c00257{bottom:875.600000pt;}
.y9_c00257{bottom:883.733333pt;}
.y45_c00257{bottom:891.600000pt;}
.y8_c00257{bottom:899.466667pt;}
.y44_c00257{bottom:907.333333pt;}
.y7_c00257{bottom:915.466667pt;}
.y43_c00257{bottom:923.066667pt;}
.y6_c00257{bottom:938.800000pt;}
.y42_c00257{bottom:939.066667pt;}
.y5_c00257{bottom:954.800000pt;}
.y4_c00257{bottom:970.800000pt;}
.y3_c00257{bottom:986.533333pt;}
.y1_c00257{bottom:1007.333333pt;}
.y2_c00257{bottom:1010.266667pt;}
.h8_c00257{height:21.333333pt;}
.h7_c00257{height:26.666667pt;}
.ha_c00257{height:32.000000pt;}
.h9_c00257{height:37.333333pt;}
.hb_c00257{height:42.666667pt;}
.h6_c00257{height:48.000000pt;}
.h5_c00257{height:53.333333pt;}
.h4_c00257{height:58.666667pt;}
.h2_c00257{height:64.000000pt;}
.h3_c00257{height:74.666667pt;}
.h1_c00257{height:1125.333333pt;}
.h0_c00257{height:1125.440023pt;}
.w1_c00257{width:854.666667pt;}
.w0_c00257{width:854.720052pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:154.933333pt;}
.x1d_c00257{left:157.466667pt;}
.x73_c00257{left:160.666667pt;}
.x9_c00257{left:162.800000pt;}
.x32_c00257{left:170.000000pt;}
.x56_c00257{left:170.933333pt;}
.x3_c00257{left:172.533333pt;}
.x75_c00257{left:176.666667pt;}
.x7b_c00257{left:177.866667pt;}
.x8d_c00257{left:179.066667pt;}
.x9b_c00257{left:180.800000pt;}
.x38_c00257{left:183.066667pt;}
.x53_c00257{left:184.000000pt;}
.x57_c00257{left:185.066667pt;}
.x68_c00257{left:186.133333pt;}
.x59_c00257{left:187.600000pt;}
.x65_c00257{left:189.066667pt;}
.xa_c00257{left:193.200000pt;}
.x1e_c00257{left:194.533333pt;}
.x37_c00257{left:199.733333pt;}
.x9d_c00257{left:200.666667pt;}
.xf_c00257{left:201.866667pt;}
.x72_c00257{left:204.666667pt;}
.x6e_c00257{left:205.600000pt;}
.x76_c00257{left:206.800000pt;}
.x25_c00257{left:208.666667pt;}
.x94_c00257{left:210.400000pt;}
.x2a_c00257{left:211.866667pt;}
.x45_c00257{left:214.266667pt;}
.x41_c00257{left:216.000000pt;}
.x16_c00257{left:217.333333pt;}
.xa4_c00257{left:218.533333pt;}
.x50_c00257{left:220.533333pt;}
.x4_c00257{left:221.466667pt;}
.x33_c00257{left:222.800000pt;}
.x2e_c00257{left:224.000000pt;}
.x8e_c00257{left:225.333333pt;}
.x5a_c00257{left:227.200000pt;}
.xb_c00257{left:229.733333pt;}
.x82_c00257{left:231.466667pt;}
.x4b_c00257{left:232.800000pt;}
.x46_c00257{left:234.400000pt;}
.x42_c00257{left:235.466667pt;}
.x17_c00257{left:236.800000pt;}
.x39_c00257{left:238.800000pt;}
.x88_c00257{left:240.000000pt;}
.x77_c00257{left:241.333333pt;}
.x63_c00257{left:242.933333pt;}
.x10_c00257{left:244.400000pt;}
.x54_c00257{left:246.800000pt;}
.x4c_c00257{left:249.466667pt;}
.x5b_c00257{left:251.200000pt;}
.x1f_c00257{left:252.400000pt;}
.x2b_c00257{left:253.733333pt;}
.x78_c00257{left:254.800000pt;}
.x5_c00257{left:257.600000pt;}
.x26_c00257{left:258.533333pt;}
.x91_c00257{left:261.333333pt;}
.xc_c00257{left:262.400000pt;}
.x8f_c00257{left:265.333333pt;}
.x51_c00257{left:267.200000pt;}
.x5c_c00257{left:269.866667pt;}
.x18_c00257{left:272.000000pt;}
.x3a_c00257{left:273.066667pt;}
.x4f_c00257{left:274.133333pt;}
.x7c_c00257{left:277.066667pt;}
.x66_c00257{left:280.000000pt;}
.xa2_c00257{left:281.466667pt;}
.x43_c00257{left:282.800000pt;}
.x9c_c00257{left:284.133333pt;}
.x2c_c00257{left:285.066667pt;}
.x96_c00257{left:286.533333pt;}
.x34_c00257{left:288.666667pt;}
.x6_c00257{left:289.600000pt;}
.x47_c00257{left:291.733333pt;}
.x20_c00257{left:294.933333pt;}
.x11_c00257{left:296.266667pt;}
.x7e_c00257{left:297.466667pt;}
.x9e_c00257{left:299.066667pt;}
.x83_c00257{left:301.200000pt;}
.x5d_c00257{left:303.200000pt;}
.x79_c00257{left:305.333333pt;}
.x2d_c00257{left:308.133333pt;}
.x48_c00257{left:309.066667pt;}
.x12_c00257{left:310.000000pt;}
.x4d_c00257{left:310.933333pt;}
.x92_c00257{left:312.533333pt;}
.x19_c00257{left:313.600000pt;}
.xd_c00257{left:315.466667pt;}
.x97_c00257{left:316.933333pt;}
.x74_c00257{left:318.133333pt;}
.x67_c00257{left:319.333333pt;}
.x7f_c00257{left:321.200000pt;}
.x49_c00257{left:322.133333pt;}
.x90_c00257{left:325.066667pt;}
.x84_c00257{left:326.400000pt;}
.x21_c00257{left:328.266667pt;}
.x3b_c00257{left:329.333333pt;}
.x3f_c00257{left:330.400000pt;}
.x58_c00257{left:332.933333pt;}
.x52_c00257{left:335.333333pt;}
.x5f_c00257{left:336.666667pt;}
.x5e_c00257{left:339.333333pt;}
.x89_c00257{left:341.200000pt;}
.x2f_c00257{left:342.800000pt;}
.x27_c00257{left:344.666667pt;}
.xa6_c00257{left:346.133333pt;}
.x1a_c00257{left:347.200000pt;}
.x13_c00257{left:349.733333pt;}
.x9a_c00257{left:351.600000pt;}
.x95_c00257{left:353.466667pt;}
.x64_c00257{left:356.133333pt;}
.xa5_c00257{left:357.066667pt;}
.xa1_c00257{left:358.533333pt;}
.x30_c00257{left:359.466667pt;}
.x35_c00257{left:361.333333pt;}
.x4a_c00257{left:362.400000pt;}
.x6f_c00257{left:363.733333pt;}
.x2_c00257{left:365.466667pt;}
.x60_c00257{left:366.400000pt;}
.x55_c00257{left:367.466667pt;}
.x69_c00257{left:368.933333pt;}
.x85_c00257{left:370.266667pt;}
.x4e_c00257{left:373.733333pt;}
.x44_c00257{left:375.200000pt;}
.x98_c00257{left:376.133333pt;}
.x7_c00257{left:377.600000pt;}
.x7a_c00257{left:378.933333pt;}
.x22_c00257{left:380.133333pt;}
.x9f_c00257{left:381.066667pt;}
.xa3_c00257{left:382.000000pt;}
.x3c_c00257{left:384.000000pt;}
.x8a_c00257{left:387.600000pt;}
.x86_c00257{left:389.200000pt;}
.x23_c00257{left:391.333333pt;}
.x40_c00257{left:392.400000pt;}
.x36_c00257{left:394.266667pt;}
.x61_c00257{left:395.466667pt;}
.x1b_c00257{left:397.066667pt;}
.x28_c00257{left:398.133333pt;}
.x14_c00257{left:399.066667pt;}
.x8b_c00257{left:402.000000pt;}
.xe_c00257{left:404.400000pt;}
.x31_c00257{left:406.800000pt;}
.x3d_c00257{left:411.466667pt;}
.x80_c00257{left:412.666667pt;}
.x93_c00257{left:414.266667pt;}
.x29_c00257{left:415.733333pt;}
.x6a_c00257{left:417.866667pt;}
.x6c_c00257{left:419.200000pt;}
.x62_c00257{left:420.800000pt;}
.x8_c00257{left:424.933333pt;}
.x87_c00257{left:426.266667pt;}
.xa0_c00257{left:428.400000pt;}
.x1c_c00257{left:429.333333pt;}
.x70_c00257{left:431.600000pt;}
.x24_c00257{left:432.666667pt;}
.x99_c00257{left:435.733333pt;}
.x8c_c00257{left:436.933333pt;}
.x6d_c00257{left:439.333333pt;}
.x3e_c00257{left:442.133333pt;}
.x81_c00257{left:443.333333pt;}
.x6b_c00257{left:445.733333pt;}
.x71_c00257{left:446.933333pt;}
.x7d_c00257{left:449.600000pt;}
.x15_c00257{left:451.200000pt;}
.x111_c00257{left:475.466667pt;}
.x12e_c00257{left:477.066667pt;}
.x133_c00257{left:478.400000pt;}
.x146_c00257{left:479.733333pt;}
.xa7_c00257{left:487.733333pt;}
.xba_c00257{left:488.800000pt;}
.xda_c00257{left:489.733333pt;}
.xf9_c00257{left:490.666667pt;}
.xfe_c00257{left:491.600000pt;}
.x12c_c00257{left:492.666667pt;}
.x132_c00257{left:494.000000pt;}
.x144_c00257{left:494.933333pt;}
.x150_c00257{left:497.600000pt;}
.x14f_c00257{left:499.466667pt;}
.x125_c00257{left:503.600000pt;}
.xbb_c00257{left:504.800000pt;}
.x10d_c00257{left:506.400000pt;}
.x11d_c00257{left:508.400000pt;}
.x134_c00257{left:510.400000pt;}
.xe4_c00257{left:511.600000pt;}
.xfa_c00257{left:514.666667pt;}
.xdb_c00257{left:517.200000pt;}
.x103_c00257{left:519.066667pt;}
.xaf_c00257{left:520.133333pt;}
.xff_c00257{left:521.333333pt;}
.x117_c00257{left:522.400000pt;}
.x14a_c00257{left:523.733333pt;}
.xca_c00257{left:524.666667pt;}
.x109_c00257{left:525.600000pt;}
.xe7_c00257{left:527.866667pt;}
.xf3_c00257{left:529.866667pt;}
.x100_c00257{left:532.533333pt;}
.xc0_c00257{left:533.866667pt;}
.xe8_c00257{left:536.133333pt;}
.x121_c00257{left:537.866667pt;}
.xa8_c00257{left:539.866667pt;}
.xbc_c00257{left:541.866667pt;}
.x129_c00257{left:542.933333pt;}
.xef_c00257{left:546.666667pt;}
.xd4_c00257{left:549.066667pt;}
.xe9_c00257{left:551.200000pt;}
.xc1_c00257{left:552.133333pt;}
.xd0_c00257{left:554.000000pt;}
.xb0_c00257{left:557.200000pt;}
.x10e_c00257{left:558.533333pt;}
.xcb_c00257{left:560.533333pt;}
.xe1_c00257{left:563.466667pt;}
.xf4_c00257{left:564.800000pt;}
.x12a_c00257{left:566.000000pt;}
.x14d_c00257{left:567.200000pt;}
.x10f_c00257{left:569.466667pt;}
.xea_c00257{left:570.400000pt;}
.x104_c00257{left:571.866667pt;}
.xe5_c00257{left:574.266667pt;}
.x112_c00257{left:576.000000pt;}
.xa9_c00257{left:578.533333pt;}
.xdc_c00257{left:580.533333pt;}
.xc2_c00257{left:583.200000pt;}
.x10a_c00257{left:585.466667pt;}
.x118_c00257{left:586.400000pt;}
.x147_c00257{left:588.533333pt;}
.xd5_c00257{left:589.733333pt;}
.xb1_c00257{left:591.466667pt;}
.x141_c00257{left:593.066667pt;}
.xf0_c00257{left:594.000000pt;}
.x12f_c00257{left:594.933333pt;}
.x137_c00257{left:598.266667pt;}
.xcc_c00257{left:599.866667pt;}
.xaa_c00257{left:601.200000pt;}
.xc3_c00257{left:602.666667pt;}
.xf5_c00257{left:603.866667pt;}
.xbd_c00257{left:604.933333pt;}
.x10b_c00257{left:606.266667pt;}
.x126_c00257{left:608.000000pt;}
.x152_c00257{left:610.800000pt;}
.x122_c00257{left:611.866667pt;}
.xb2_c00257{left:613.866667pt;}
.xf1_c00257{left:614.800000pt;}
.x14b_c00257{left:616.133333pt;}
.xeb_c00257{left:617.066667pt;}
.xc4_c00257{left:618.000000pt;}
.xab_c00257{left:620.133333pt;}
.xdd_c00257{left:621.866667pt;}
.x11b_c00257{left:622.933333pt;}
.x148_c00257{left:624.000000pt;}
.x135_c00257{left:624.933333pt;}
.xb3_c00257{left:626.666667pt;}
.xbe_c00257{left:628.000000pt;}
.x110_c00257{left:631.466667pt;}
.xd1_c00257{left:633.333333pt;}
.x11e_c00257{left:635.066667pt;}
.x145_c00257{left:637.600000pt;}
.x101_c00257{left:639.733333pt;}
.x123_c00257{left:640.933333pt;}
.xcd_c00257{left:641.866667pt;}
.xd6_c00257{left:643.200000pt;}
.x119_c00257{left:644.266667pt;}
.xde_c00257{left:645.866667pt;}
.x14e_c00257{left:649.066667pt;}
.xb4_c00257{left:650.000000pt;}
.x142_c00257{left:651.066667pt;}
.xe2_c00257{left:653.466667pt;}
.x12b_c00257{left:654.400000pt;}
.x113_c00257{left:656.800000pt;}
.xb5_c00257{left:657.733333pt;}
.xc5_c00257{left:658.933333pt;}
.xd7_c00257{left:659.866667pt;}
.x124_c00257{left:660.800000pt;}
.x10c_c00257{left:662.533333pt;}
.xac_c00257{left:664.000000pt;}
.xd2_c00257{left:665.333333pt;}
.xf6_c00257{left:667.200000pt;}
.x13d_c00257{left:668.533333pt;}
.x130_c00257{left:669.600000pt;}
.x12d_c00257{left:671.733333pt;}
.xb6_c00257{left:673.066667pt;}
.xfb_c00257{left:675.200000pt;}
.xc6_c00257{left:676.266667pt;}
.x105_c00257{left:678.133333pt;}
.xd8_c00257{left:680.400000pt;}
.xce_c00257{left:681.866667pt;}
.x13f_c00257{left:683.466667pt;}
.xf7_c00257{left:684.800000pt;}
.x153_c00257{left:688.533333pt;}
.xd3_c00257{left:690.666667pt;}
.x14c_c00257{left:691.866667pt;}
.x114_c00257{left:693.600000pt;}
.x143_c00257{left:695.600000pt;}
.xdf_c00257{left:697.600000pt;}
.xe3_c00257{left:698.533333pt;}
.xec_c00257{left:700.933333pt;}
.xc7_c00257{left:701.866667pt;}
.x11f_c00257{left:703.200000pt;}
.x115_c00257{left:704.800000pt;}
.x136_c00257{left:706.266667pt;}
.xb7_c00257{left:707.333333pt;}
.x138_c00257{left:709.866667pt;}
.x13b_c00257{left:711.466667pt;}
.xad_c00257{left:712.933333pt;}
.x106_c00257{left:714.266667pt;}
.xfc_c00257{left:715.200000pt;}
.x11a_c00257{left:717.200000pt;}
.x13c_c00257{left:719.200000pt;}
.xbf_c00257{left:720.400000pt;}
.xb8_c00257{left:721.733333pt;}
.xd9_c00257{left:724.266667pt;}
.xed_c00257{left:725.866667pt;}
.x139_c00257{left:726.800000pt;}
.x127_c00257{left:728.266667pt;}
.xee_c00257{left:729.466667pt;}
.x102_c00257{left:730.933333pt;}
.xf8_c00257{left:734.133333pt;}
.xae_c00257{left:735.066667pt;}
.x107_c00257{left:736.000000pt;}
.x11c_c00257{left:737.866667pt;}
.xc8_c00257{left:739.333333pt;}
.x13e_c00257{left:740.800000pt;}
.x151_c00257{left:741.733333pt;}
.xe0_c00257{left:743.333333pt;}
.xfd_c00257{left:745.333333pt;}
.xcf_c00257{left:747.200000pt;}
.xc9_c00257{left:748.266667pt;}
.x116_c00257{left:750.266667pt;}
.x131_c00257{left:751.866667pt;}
.x128_c00257{left:753.866667pt;}
.xe6_c00257{left:755.600000pt;}
.xb9_c00257{left:761.466667pt;}
.x120_c00257{left:762.400000pt;}
.x149_c00257{left:765.733333pt;}
.x13a_c00257{left:767.466667pt;}
.x140_c00257{left:768.666667pt;}
.xf2_c00257{left:771.200000pt;}
.x108_c00257{left:773.066667pt;}
}





/* 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_c00258 {
    display:none;
  }
  .loading-indicator_c00258.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00258 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_c00258 { 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_c00258" -> "#page-container .classname_c00258")
 */
.pf_c00258 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00258 { /* 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_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00258 { /* 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_c00258 { /* 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_c00258 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00258 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00258 {overflow:visible;}
  }
}
.c_c00258 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00258 { /* 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_c00258:after { /* webkit #35443 */
  content: '';
}
.t_c00258:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00258 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 */
}
.__c00258 { /* 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_c00258 { /* info for Javascript */
  display:none;
}
.l_c00258 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00258 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00258 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00258: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_c00258 {
    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_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00258.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_c00258 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00258;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.000000;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;}
.m91_c00258{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.md5_c00258{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m47_c00258{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mea_c00258{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me9_c00258{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m33_c00258{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00258{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mef_c00258{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00258{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m27_c00258{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me7_c00258{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m87_c00258{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me6_c00258{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00258{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00258{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m40_c00258{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00258{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m71_c00258{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m118_c00258{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00258{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m29_c00258{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00258{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00258{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m92_c00258{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m56_c00258{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m30_c00258{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m109_c00258{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m123_c00258{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00258{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m62_c00258{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00258{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m114_c00258{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m23_c00258{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00258{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mca_c00258{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m64_c00258{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00258{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m18_c00258{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mec_c00258{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00258{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00258{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m100_c00258{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m39_c00258{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m16_c00258{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md3_c00258{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00258{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.ma_c00258{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00258{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mac_c00258{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m42_c00258{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00258{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m10_c00258{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m121_c00258{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00258{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00258{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc_c00258{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00258{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mde_c00258{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00258{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf_c00258{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00258{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m57_c00258{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00258{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00258{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00258{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00258{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00258{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m96_c00258{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m28_c00258{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m48_c00258{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m75_c00258{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00258{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00258{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00258{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00258{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m79_c00258{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m117_c00258{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m98_c00258{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m32_c00258{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m14_c00258{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00258{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m26_c00258{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00258{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m34_c00258{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m110_c00258{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00258{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00258{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m55_c00258{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00258{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00258{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m35_c00258{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m77_c00258{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00258{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md8_c00258{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00258{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00258{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00258{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m13_c00258{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00258{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m12_c00258{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mce_c00258{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m102_c00258{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m38_c00258{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m49_c00258{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00258{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00258{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m37_c00258{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mee_c00258{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00258{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00258{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m85_c00258{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m101_c00258{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md7_c00258{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5_c00258{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00258{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m80_c00258{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00258{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00258{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m88_c00258{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00258{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m43_c00258{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00258{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m112_c00258{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00258{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m74_c00258{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m31_c00258{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m20_c00258{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00258{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m36_c00258{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m58_c00258{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00258{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00258{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m52_c00258{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00258{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mae_c00258{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m78_c00258{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00258{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7_c00258{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9_c00258{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb_c00258{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00258{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m22_c00258{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.maa_c00258{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00258{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m105_c00258{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00258{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00258{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00258{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m19_c00258{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m116_c00258{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00258{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00258{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m54_c00258{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m44_c00258{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m72_c00258{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m45_c00258{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00258{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m24_c00258{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00258{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m17_c00258{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m124_c00258{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md2_c00258{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m25_c00258{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.me8_c00258{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.med_c00258{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.me_c00258{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m113_c00258{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mab_c00258{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00258{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00258{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m95_c00258{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m115_c00258{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m11_c00258{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00258{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00258{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m66_c00258{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md0_c00258{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m41_c00258{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00258{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00258{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m106_c00258{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00258{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m67_c00258{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m82_c00258{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00258{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m111_c00258{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mff_c00258{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00258{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00258{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m125_c00258{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m86_c00258{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m99_c00258{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m61_c00258{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.meb_c00258{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m104_c00258{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00258{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me2_c00258{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.md_c00258{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00258{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00258{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00258{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m84_c00258{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m108_c00258{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m65_c00258{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00258{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m69_c00258{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00258{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m73_c00258{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3_c00258{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00258{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m119_c00258{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00258{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00258{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6_c00258{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00258{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00258{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00258{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m97_c00258{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m15_c00258{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m122_c00258{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m68_c00258{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00258{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00258{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00258{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m107_c00258{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00258{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m21_c00258{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m83_c00258{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00258{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mda_c00258{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00258{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00258{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.maf_c00258{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00258{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00258{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00258{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00258{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m59_c00258{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m70_c00258{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me3_c00258{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m46_c00258{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m51_c00258{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me1_c00258{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00258{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);}
.m81_c00258{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me4_c00258{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md9_c00258{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m76_c00258{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m63_c00258{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00258{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00258{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2_c00258{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.me0_c00258{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00258{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m50_c00258{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m103_c00258{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00258{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00258{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00258{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m93_c00258{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.md4_c00258{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.me5_c00258{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00258{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00258{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00258{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mad_c00258{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00258{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00258{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.md6_c00258{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00258{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00258{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mba_c00258{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00258{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00258{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00258{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m120_c00258{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m90_c00258{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00258{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00258{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00258{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m8_c00258{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m89_c00258{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00258{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m53_c00258{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m60_c00258{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00258{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00258{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m94_c00258{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.md1_c00258{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00258{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m126_c00258{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00258{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls0_c00258{letter-spacing:0.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{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__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00258{word-spacing:-8.275862px;}
.ws0_c00258{word-spacing:-3.193548px;}
.ws1_c00258{word-spacing:-1.650655px;}
.wsb_c00258{word-spacing:0.000000px;}
.wsa_c00258{word-spacing:13.947368px;}
.ws3_c00258{word-spacing:16.785714px;}
.ws9_c00258{word-spacing:22.142857px;}
.ws5_c00258{word-spacing:25.714286px;}
.ws4_c00258{word-spacing:34.642857px;}
.ws8_c00258{word-spacing:40.000000px;}
.ws6_c00258{word-spacing:66.315789px;}
.ws7_c00258{word-spacing:286.428571px;}
._0_c00258{width:55.714286px;}
._1_c00258{width:59.285714px;}
.fc0_c00258{color:transparent;}
.fs5_c00258{font-size:30.000000px;}
.fs4_c00258{font-size:54.000000px;}
.fs3_c00258{font-size:60.000000px;}
.fs1_c00258{font-size:66.000000px;}
.fs2_c00258{font-size:72.000000px;}
.fs0_c00258{font-size:84.000000px;}
.y0_c00258{bottom:0.000000px;}
.y71_c00258{bottom:176.100000px;}
.y70_c00258{bottom:192.900000px;}
.y36_c00258{bottom:193.350000px;}
.y6f_c00258{bottom:207.300000px;}
.y35_c00258{bottom:211.650000px;}
.y6e_c00258{bottom:220.950000px;}
.y34_c00258{bottom:228.900000px;}
.y6d_c00258{bottom:235.350000px;}
.y6c_c00258{bottom:250.050000px;}
.y33_c00258{bottom:251.100000px;}
.y6b_c00258{bottom:264.450000px;}
.y32_c00258{bottom:269.100000px;}
.y6a_c00258{bottom:278.550000px;}
.y31_c00258{bottom:286.800000px;}
.y69_c00258{bottom:292.950000px;}
.y30_c00258{bottom:305.100000px;}
.y68_c00258{bottom:308.100000px;}
.y67_c00258{bottom:321.750000px;}
.y2f_c00258{bottom:322.800000px;}
.y66_c00258{bottom:335.850000px;}
.y2e_c00258{bottom:340.500000px;}
.y65_c00258{bottom:351.450000px;}
.y2d_c00258{bottom:358.200000px;}
.y64_c00258{bottom:364.350000px;}
.y2c_c00258{bottom:376.200000px;}
.y63_c00258{bottom:379.050000px;}
.y62_c00258{bottom:392.700000px;}
.y2b_c00258{bottom:396.600000px;}
.y61_c00258{bottom:406.800000px;}
.y2a_c00258{bottom:414.900000px;}
.y60_c00258{bottom:421.950000px;}
.y29_c00258{bottom:433.200000px;}
.y5f_c00258{bottom:436.350000px;}
.y5e_c00258{bottom:450.750000px;}
.y28_c00258{bottom:450.900000px;}
.y5d_c00258{bottom:464.100000px;}
.y73_c00258{bottom:465.900000px;}
.y27_c00258{bottom:468.900000px;}
.y72_c00258{bottom:469.500000px;}
.y5c_c00258{bottom:479.550000px;}
.y26_c00258{bottom:486.900000px;}
.y5b_c00258{bottom:492.900000px;}
.y25_c00258{bottom:504.600000px;}
.y5a_c00258{bottom:507.300000px;}
.y59_c00258{bottom:522.000000px;}
.y24_c00258{bottom:522.300000px;}
.y58_c00258{bottom:535.650000px;}
.y23_c00258{bottom:540.600000px;}
.y57_c00258{bottom:550.050000px;}
.y22_c00258{bottom:558.300000px;}
.y56_c00258{bottom:564.450000px;}
.y21_c00258{bottom:576.000000px;}
.y55_c00258{bottom:578.850000px;}
.y20_c00258{bottom:594.000000px;}
.y1f_c00258{bottom:612.000000px;}
.y54_c00258{bottom:612.750000px;}
.y1e_c00258{bottom:629.700000px;}
.y53_c00258{bottom:632.400000px;}
.y52_c00258{bottom:647.100000px;}
.y1d_c00258{bottom:647.700000px;}
.y51_c00258{bottom:661.500000px;}
.y1c_c00258{bottom:665.400000px;}
.y50_c00258{bottom:675.600000px;}
.y1b_c00258{bottom:682.650000px;}
.y4f_c00258{bottom:690.000000px;}
.y1a_c00258{bottom:700.650000px;}
.y4e_c00258{bottom:704.400000px;}
.y19_c00258{bottom:718.650000px;}
.y4d_c00258{bottom:718.800000px;}
.y4c_c00258{bottom:732.900000px;}
.y18_c00258{bottom:736.350000px;}
.y4b_c00258{bottom:747.300000px;}
.y17_c00258{bottom:754.050000px;}
.y4a_c00258{bottom:762.450000px;}
.y16_c00258{bottom:771.750000px;}
.y49_c00258{bottom:782.100000px;}
.y15_c00258{bottom:789.750000px;}
.y48_c00258{bottom:799.800000px;}
.y14_c00258{bottom:807.000000px;}
.y47_c00258{bottom:817.500000px;}
.y13_c00258{bottom:825.000000px;}
.y46_c00258{bottom:839.550000px;}
.y12_c00258{bottom:842.700000px;}
.y45_c00258{bottom:859.650000px;}
.y11_c00258{bottom:860.700000px;}
.y44_c00258{bottom:875.250000px;}
.y10_c00258{bottom:878.250000px;}
.y43_c00258{bottom:892.500000px;}
.yf_c00258{bottom:895.950000px;}
.ye_c00258{bottom:913.650000px;}
.y42_c00258{bottom:914.400000px;}
.yd_c00258{bottom:935.250000px;}
.y41_c00258{bottom:940.050000px;}
.yc_c00258{bottom:954.000000px;}
.y40_c00258{bottom:958.800000px;}
.yb_c00258{bottom:971.700000px;}
.y3f_c00258{bottom:975.750000px;}
.ya_c00258{bottom:993.150000px;}
.y3e_c00258{bottom:993.750000px;}
.y3d_c00258{bottom:1011.000000px;}
.y9_c00258{bottom:1011.450000px;}
.y3c_c00258{bottom:1029.000000px;}
.y8_c00258{bottom:1029.150000px;}
.y3b_c00258{bottom:1047.000000px;}
.y7_c00258{bottom:1047.150000px;}
.y3a_c00258{bottom:1064.700000px;}
.y6_c00258{bottom:1065.150000px;}
.y39_c00258{bottom:1082.400000px;}
.y5_c00258{bottom:1082.850000px;}
.y38_c00258{bottom:1100.100000px;}
.y4_c00258{bottom:1100.550000px;}
.y37_c00258{bottom:1118.100000px;}
.y3_c00258{bottom:1118.550000px;}
.y2_c00258{bottom:1144.800000px;}
.y1_c00258{bottom:1145.100000px;}
.h7_c00258{height:30.000000px;}
.h6_c00258{height:54.000000px;}
.h5_c00258{height:60.000000px;}
.h3_c00258{height:66.000000px;}
.h4_c00258{height:72.000000px;}
.h2_c00258{height:84.000000px;}
.h0_c00258{height:1268.640015px;}
.h1_c00258{height:1269.000000px;}
.w1_c00258{width:961.500000px;}
.w0_c00258{width:961.560058px;}
.x0_c00258{left:0.000000px;}
.x3_c00258{left:86.100000px;}
.x4c_c00258{left:91.800000px;}
.x5b_c00258{left:99.150000px;}
.xa_c00258{left:102.600000px;}
.x4d_c00258{left:103.650000px;}
.x75_c00258{left:105.000000px;}
.x8e_c00258{left:106.050000px;}
.x97_c00258{left:107.100000px;}
.xa1_c00258{left:108.150000px;}
.xac_c00258{left:109.200000px;}
.x34_c00258{left:120.600000px;}
.x80_c00258{left:121.800000px;}
.x99_c00258{left:123.150000px;}
.xa2_c00258{left:124.500000px;}
.x5f_c00258{left:125.700000px;}
.x33_c00258{left:130.950000px;}
.x91_c00258{left:132.150000px;}
.x58_c00258{left:134.250000px;}
.x6d_c00258{left:136.200000px;}
.x2b_c00258{left:137.250000px;}
.x4e_c00258{left:138.900000px;}
.x88_c00258{left:140.400000px;}
.x38_c00258{left:143.100000px;}
.x11_c00258{left:145.050000px;}
.x47_c00258{left:147.600000px;}
.x54_c00258{left:149.700000px;}
.x19_c00258{left:151.500000px;}
.xa9_c00258{left:153.150000px;}
.x81_c00258{left:154.200000px;}
.x42_c00258{left:155.250000px;}
.x68_c00258{left:157.500000px;}
.x71_c00258{left:160.050000px;}
.x35_c00258{left:161.700000px;}
.x76_c00258{left:163.650000px;}
.x39_c00258{left:165.000000px;}
.x22_c00258{left:166.950000px;}
.x60_c00258{left:168.900000px;}
.x9a_c00258{left:169.950000px;}
.x1a_c00258{left:172.050000px;}
.x4_c00258{left:174.300000px;}
.xb_c00258{left:177.900000px;}
.x6e_c00258{left:179.400000px;}
.x48_c00258{left:182.550000px;}
.x83_c00258{left:185.250000px;}
.x43_c00258{left:187.650000px;}
.x12_c00258{left:189.000000px;}
.x23_c00258{left:190.050000px;}
.x64_c00258{left:192.750000px;}
.xc_c00258{left:195.600000px;}
.x2c_c00258{left:196.650000px;}
.x49_c00258{left:199.500000px;}
.x84_c00258{left:201.750000px;}
.x55_c00258{left:205.500000px;}
.x44_c00258{left:206.700000px;}
.x92_c00258{left:208.500000px;}
.x96_c00258{left:209.700000px;}
.x89_c00258{left:213.750000px;}
.x5c_c00258{left:214.950000px;}
.x36_c00258{left:217.200000px;}
.x4f_c00258{left:218.850000px;}
.x1b_c00258{left:220.350000px;}
.x13_c00258{left:221.700000px;}
.x9c_c00258{left:225.300000px;}
.x1f_c00258{left:226.650000px;}
.x5_c00258{left:228.300000px;}
.x2d_c00258{left:231.600000px;}
.x9e_c00258{left:232.650000px;}
.x77_c00258{left:233.850000px;}
.x45_c00258{left:236.550000px;}
.x85_c00258{left:238.500000px;}
.x65_c00258{left:240.300000px;}
.xa4_c00258{left:241.500000px;}
.x3d_c00258{left:242.550000px;}
.x1c_c00258{left:243.750000px;}
.x6a_c00258{left:244.950000px;}
.x24_c00258{left:248.700000px;}
.x7c_c00258{left:250.350000px;}
.x2e_c00258{left:252.900000px;}
.x7a_c00258{left:254.700000px;}
.x3e_c00258{left:258.450000px;}
.xa5_c00258{left:260.250000px;}
.x6b_c00258{left:261.900000px;}
.x61_c00258{left:263.550000px;}
.x14_c00258{left:264.600000px;}
.x50_c00258{left:271.050000px;}
.x25_c00258{left:272.100000px;}
.xaa_c00258{left:275.100000px;}
.x3f_c00258{left:276.150000px;}
.x94_c00258{left:278.400000px;}
.x62_c00258{left:279.450000px;}
.xd_c00258{left:280.500000px;}
.x4a_c00258{left:282.000000px;}
.x72_c00258{left:283.500000px;}
.x9f_c00258{left:285.300000px;}
.x20_c00258{left:286.800000px;}
.x3a_c00258{left:288.900000px;}
.x6_c00258{left:290.550000px;}
.x1d_c00258{left:291.600000px;}
.x9d_c00258{left:293.100000px;}
.xa8_c00258{left:294.150000px;}
.x26_c00258{left:296.250000px;}
.x15_c00258{left:298.050000px;}
.x2f_c00258{left:299.700000px;}
.x37_c00258{left:301.800000px;}
.x7d_c00258{left:302.850000px;}
.x7_c00258{left:303.900000px;}
.x5d_c00258{left:306.000000px;}
.x59_c00258{left:307.350000px;}
.x78_c00258{left:308.700000px;}
.x8f_c00258{left:312.000000px;}
.x46_c00258{left:313.500000px;}
.x40_c00258{left:316.800000px;}
.x27_c00258{left:318.900000px;}
.x86_c00258{left:319.950000px;}
.x4b_c00258{left:321.600000px;}
.x1_c00258{left:324.000000px;}
.xe_c00258{left:325.800000px;}
.x3b_c00258{left:328.200000px;}
.x56_c00258{left:329.400000px;}
.x8a_c00258{left:331.800000px;}
.x7b_c00258{left:332.850000px;}
.x73_c00258{left:334.650000px;}
.x8c_c00258{left:335.850000px;}
.x30_c00258{left:337.200000px;}
.x41_c00258{left:339.150000px;}
.x51_c00258{left:340.500000px;}
.xad_c00258{left:342.750000px;}
.x6c_c00258{left:344.400000px;}
.x16_c00258{left:345.600000px;}
.x21_c00258{left:346.950000px;}
.x63_c00258{left:348.900000px;}
.xf_c00258{left:351.000000px;}
.x8d_c00258{left:352.350000px;}
.x31_c00258{left:353.400000px;}
.x87_c00258{left:354.450000px;}
.x52_c00258{left:355.650000px;}
.x5a_c00258{left:358.050000px;}
.x93_c00258{left:359.400000px;}
.x5e_c00258{left:361.800000px;}
.x66_c00258{left:364.050000px;}
.x8_c00258{left:365.100000px;}
.x95_c00258{left:366.300000px;}
.x69_c00258{left:367.350000px;}
.xab_c00258{left:369.450000px;}
.x7e_c00258{left:370.500000px;}
.x28_c00258{left:371.850000px;}
.xa6_c00258{left:372.900000px;}
.x6f_c00258{left:374.550000px;}
.x17_c00258{left:376.500000px;}
.x1e_c00258{left:378.000000px;}
.x82_c00258{left:381.450000px;}
.x32_c00258{left:382.500000px;}
.x90_c00258{left:384.450000px;}
.x70_c00258{left:385.650000px;}
.x57_c00258{left:387.750000px;}
.x9b_c00258{left:390.900000px;}
.x3c_c00258{left:392.250000px;}
.x79_c00258{left:393.600000px;}
.x9_c00258{left:394.950000px;}
.xa0_c00258{left:396.450000px;}
.x7f_c00258{left:397.500000px;}
.x10_c00258{left:399.900000px;}
.x18_c00258{left:401.700000px;}
.x29_c00258{left:403.200000px;}
.x67_c00258{left:404.700000px;}
.xa7_c00258{left:405.900000px;}
.x8b_c00258{left:407.400000px;}
.x98_c00258{left:409.050000px;}
.x2a_c00258{left:415.500000px;}
.x53_c00258{left:417.900000px;}
.x74_c00258{left:420.000000px;}
.xa3_c00258{left:421.650000px;}
.x106_c00258{left:442.500000px;}
.xf2_c00258{left:443.550000px;}
.x141_c00258{left:444.750000px;}
.x151_c00258{left:446.100000px;}
.x157_c00258{left:447.150000px;}
.x131_c00258{left:452.100000px;}
.x117_c00258{left:456.750000px;}
.xae_c00258{left:458.250000px;}
.xcd_c00258{left:459.300000px;}
.xe8_c00258{left:460.500000px;}
.x132_c00258{left:468.000000px;}
.x11d_c00258{left:471.150000px;}
.x11e_c00258{left:472.350000px;}
.x158_c00258{left:474.900000px;}
.xb6_c00258{left:477.000000px;}
.xf7_c00258{left:478.800000px;}
.x155_c00258{left:479.850000px;}
.x144_c00258{left:481.650000px;}
.xf3_c00258{left:482.850000px;}
.x107_c00258{left:484.200000px;}
.x10b_c00258{left:486.000000px;}
.xe0_c00258{left:487.500000px;}
.xc0_c00258{left:489.300000px;}
.x13e_c00258{left:490.650000px;}
.x11f_c00258{left:493.650000px;}
.xb7_c00258{left:495.750000px;}
.xce_c00258{left:498.900000px;}
.x135_c00258{left:499.950000px;}
.x139_c00258{left:501.150000px;}
.xe9_c00258{left:502.950000px;}
.x113_c00258{left:505.050000px;}
.xfe_c00258{left:506.550000px;}
.xaf_c00258{left:508.350000px;}
.xb8_c00258{left:511.650000px;}
.x133_c00258{left:513.300000px;}
.xe1_c00258{left:516.600000px;}
.x122_c00258{left:518.100000px;}
.xf4_c00258{left:520.950000px;}
.xeb_c00258{left:523.050000px;}
.xcf_c00258{left:524.100000px;}
.xb0_c00258{left:526.350000px;}
.xdb_c00258{left:530.250000px;}
.x129_c00258{left:531.300000px;}
.x118_c00258{left:532.650000px;}
.xb9_c00258{left:534.000000px;}
.xc6_c00258{left:535.200000px;}
.xc1_c00258{left:537.150000px;}
.x10c_c00258{left:539.700000px;}
.x136_c00258{left:541.350000px;}
.x137_c00258{left:543.300000px;}
.xf0_c00258{left:545.100000px;}
.x121_c00258{left:547.050000px;}
.x108_c00258{left:549.000000px;}
.x12e_c00258{left:550.650000px;}
.x123_c00258{left:553.050000px;}
.x14a_c00258{left:555.750000px;}
.xe2_c00258{left:558.000000px;}
.x126_c00258{left:560.250000px;}
.xd6_c00258{left:561.450000px;}
.x13c_c00258{left:562.500000px;}
.xd0_c00258{left:564.750000px;}
.x148_c00258{left:567.000000px;}
.xc2_c00258{left:569.250000px;}
.x114_c00258{left:571.650000px;}
.xb1_c00258{left:573.150000px;}
.xd1_c00258{left:574.800000px;}
.x12a_c00258{left:576.300000px;}
.xec_c00258{left:577.350000px;}
.xdc_c00258{left:579.150000px;}
.x103_c00258{left:580.500000px;}
.x138_c00258{left:582.150000px;}
.xc7_c00258{left:584.100000px;}
.x13b_c00258{left:585.300000px;}
.x119_c00258{left:586.350000px;}
.xba_c00258{left:588.300000px;}
.xf5_c00258{left:590.850000px;}
.x14f_c00258{left:592.800000px;}
.x10d_c00258{left:594.750000px;}
.x13f_c00258{left:596.550000px;}
.x109_c00258{left:598.350000px;}
.xff_c00258{left:599.850000px;}
.xdd_c00258{left:601.500000px;}
.x142_c00258{left:603.300000px;}
.x14c_c00258{left:605.400000px;}
.xf1_c00258{left:607.050000px;}
.x10e_c00258{left:610.200000px;}
.xb2_c00258{left:611.700000px;}
.xd7_c00258{left:612.900000px;}
.xea_c00258{left:614.100000px;}
.x150_c00258{left:615.600000px;}
.x127_c00258{left:616.800000px;}
.xfa_c00258{left:619.200000px;}
.xde_c00258{left:621.000000px;}
.x156_c00258{left:624.450000px;}
.xbb_c00258{left:626.100000px;}
.xe3_c00258{left:627.150000px;}
.xd2_c00258{left:629.850000px;}
.x149_c00258{left:631.500000px;}
.xc3_c00258{left:633.750000px;}
.xb3_c00258{left:635.400000px;}
.x104_c00258{left:637.050000px;}
.x12f_c00258{left:639.900000px;}
.xed_c00258{left:641.550000px;}
.x14b_c00258{left:644.250000px;}
.x10f_c00258{left:646.500000px;}
.x145_c00258{left:648.000000px;}
.xe4_c00258{left:649.800000px;}
.x11a_c00258{left:651.450000px;}
.xc8_c00258{left:653.550000px;}
.xd8_c00258{left:655.050000px;}
.xf6_c00258{left:657.150000px;}
.x12b_c00258{left:659.850000px;}
.xee_c00258{left:661.050000px;}
.xbc_c00258{left:663.900000px;}
.xd3_c00258{left:665.850000px;}
.x152_c00258{left:668.550000px;}
.x10a_c00258{left:669.600000px;}
.xc4_c00258{left:671.250000px;}
.xfb_c00258{left:672.900000px;}
.x120_c00258{left:674.550000px;}
.x128_c00258{left:678.000000px;}
.x115_c00258{left:679.650000px;}
.xf8_c00258{left:680.850000px;}
.x116_c00258{left:682.500000px;}
.xc9_c00258{left:683.850000px;}
.xb4_c00258{left:685.800000px;}
.x124_c00258{left:687.750000px;}
.x110_c00258{left:688.950000px;}
.x100_c00258{left:692.100000px;}
.xbd_c00258{left:693.750000px;}
.x14d_c00258{left:694.950000px;}
.x12c_c00258{left:697.200000px;}
.xca_c00258{left:699.750000px;}
.xe5_c00258{left:701.700000px;}
.x14e_c00258{left:704.700000px;}
.xd9_c00258{left:706.950000px;}
.x11b_c00258{left:708.750000px;}
.x13a_c00258{left:710.100000px;}
.xfc_c00258{left:712.800000px;}
.x143_c00258{left:714.300000px;}
.x159_c00258{left:715.350000px;}
.x101_c00258{left:716.550000px;}
.xbe_c00258{left:718.950000px;}
.xda_c00258{left:720.300000px;}
.x146_c00258{left:721.350000px;}
.xe6_c00258{left:723.600000px;}
.xb5_c00258{left:725.400000px;}
.x13d_c00258{left:727.800000px;}
.xd4_c00258{left:729.150000px;}
.xc5_c00258{left:730.950000px;}
.x140_c00258{left:732.750000px;}
.xf9_c00258{left:734.850000px;}
.xbf_c00258{left:735.900000px;}
.x111_c00258{left:737.550000px;}
.xcb_c00258{left:740.100000px;}
.xe7_c00258{left:743.400000px;}
.x147_c00258{left:745.050000px;}
.x154_c00258{left:747.300000px;}
.x12d_c00258{left:748.650000px;}
.x2_c00258{left:750.300000px;}
.xef_c00258{left:751.350000px;}
.x112_c00258{left:752.700000px;}
.xdf_c00258{left:756.000000px;}
.xcc_c00258{left:757.050000px;}
.x102_c00258{left:759.300000px;}
.xd5_c00258{left:760.800000px;}
.x105_c00258{left:763.800000px;}
.x125_c00258{left:764.850000px;}
.x11c_c00258{left:766.350000px;}
.xfd_c00258{left:768.300000px;}
.x153_c00258{left:769.950000px;}
.x130_c00258{left:775.500000px;}
.x134_c00258{left:776.550000px;}
.x15a_c00258{left:790.500000px;}
.x15b_c00258{left:794.850000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws2_c00258{word-spacing:-7.356322pt;}
.ws0_c00258{word-spacing:-2.838710pt;}
.ws1_c00258{word-spacing:-1.467249pt;}
.wsb_c00258{word-spacing:0.000000pt;}
.wsa_c00258{word-spacing:12.397661pt;}
.ws3_c00258{word-spacing:14.920635pt;}
.ws9_c00258{word-spacing:19.682540pt;}
.ws5_c00258{word-spacing:22.857143pt;}
.ws4_c00258{word-spacing:30.793651pt;}
.ws8_c00258{word-spacing:35.555556pt;}
.ws6_c00258{word-spacing:58.947368pt;}
.ws7_c00258{word-spacing:254.603175pt;}
._0_c00258{width:49.523810pt;}
._1_c00258{width:52.698413pt;}
.fs5_c00258{font-size:26.666667pt;}
.fs4_c00258{font-size:48.000000pt;}
.fs3_c00258{font-size:53.333333pt;}
.fs1_c00258{font-size:58.666667pt;}
.fs2_c00258{font-size:64.000000pt;}
.fs0_c00258{font-size:74.666667pt;}
.y0_c00258{bottom:0.000000pt;}
.y71_c00258{bottom:156.533333pt;}
.y70_c00258{bottom:171.466667pt;}
.y36_c00258{bottom:171.866667pt;}
.y6f_c00258{bottom:184.266667pt;}
.y35_c00258{bottom:188.133333pt;}
.y6e_c00258{bottom:196.400000pt;}
.y34_c00258{bottom:203.466667pt;}
.y6d_c00258{bottom:209.200000pt;}
.y6c_c00258{bottom:222.266667pt;}
.y33_c00258{bottom:223.200000pt;}
.y6b_c00258{bottom:235.066667pt;}
.y32_c00258{bottom:239.200000pt;}
.y6a_c00258{bottom:247.600000pt;}
.y31_c00258{bottom:254.933333pt;}
.y69_c00258{bottom:260.400000pt;}
.y30_c00258{bottom:271.200000pt;}
.y68_c00258{bottom:273.866667pt;}
.y67_c00258{bottom:286.000000pt;}
.y2f_c00258{bottom:286.933333pt;}
.y66_c00258{bottom:298.533333pt;}
.y2e_c00258{bottom:302.666667pt;}
.y65_c00258{bottom:312.400000pt;}
.y2d_c00258{bottom:318.400000pt;}
.y64_c00258{bottom:323.866667pt;}
.y2c_c00258{bottom:334.400000pt;}
.y63_c00258{bottom:336.933333pt;}
.y62_c00258{bottom:349.066667pt;}
.y2b_c00258{bottom:352.533333pt;}
.y61_c00258{bottom:361.600000pt;}
.y2a_c00258{bottom:368.800000pt;}
.y60_c00258{bottom:375.066667pt;}
.y29_c00258{bottom:385.066667pt;}
.y5f_c00258{bottom:387.866667pt;}
.y5e_c00258{bottom:400.666667pt;}
.y28_c00258{bottom:400.800000pt;}
.y5d_c00258{bottom:412.533333pt;}
.y73_c00258{bottom:414.133333pt;}
.y27_c00258{bottom:416.800000pt;}
.y72_c00258{bottom:417.333333pt;}
.y5c_c00258{bottom:426.266667pt;}
.y26_c00258{bottom:432.800000pt;}
.y5b_c00258{bottom:438.133333pt;}
.y25_c00258{bottom:448.533333pt;}
.y5a_c00258{bottom:450.933333pt;}
.y59_c00258{bottom:464.000000pt;}
.y24_c00258{bottom:464.266667pt;}
.y58_c00258{bottom:476.133333pt;}
.y23_c00258{bottom:480.533333pt;}
.y57_c00258{bottom:488.933333pt;}
.y22_c00258{bottom:496.266667pt;}
.y56_c00258{bottom:501.733333pt;}
.y21_c00258{bottom:512.000000pt;}
.y55_c00258{bottom:514.533333pt;}
.y20_c00258{bottom:528.000000pt;}
.y1f_c00258{bottom:544.000000pt;}
.y54_c00258{bottom:544.666667pt;}
.y1e_c00258{bottom:559.733333pt;}
.y53_c00258{bottom:562.133333pt;}
.y52_c00258{bottom:575.200000pt;}
.y1d_c00258{bottom:575.733333pt;}
.y51_c00258{bottom:588.000000pt;}
.y1c_c00258{bottom:591.466667pt;}
.y50_c00258{bottom:600.533333pt;}
.y1b_c00258{bottom:606.800000pt;}
.y4f_c00258{bottom:613.333333pt;}
.y1a_c00258{bottom:622.800000pt;}
.y4e_c00258{bottom:626.133333pt;}
.y19_c00258{bottom:638.800000pt;}
.y4d_c00258{bottom:638.933333pt;}
.y4c_c00258{bottom:651.466667pt;}
.y18_c00258{bottom:654.533333pt;}
.y4b_c00258{bottom:664.266667pt;}
.y17_c00258{bottom:670.266667pt;}
.y4a_c00258{bottom:677.733333pt;}
.y16_c00258{bottom:686.000000pt;}
.y49_c00258{bottom:695.200000pt;}
.y15_c00258{bottom:702.000000pt;}
.y48_c00258{bottom:710.933333pt;}
.y14_c00258{bottom:717.333333pt;}
.y47_c00258{bottom:726.666667pt;}
.y13_c00258{bottom:733.333333pt;}
.y46_c00258{bottom:746.266667pt;}
.y12_c00258{bottom:749.066667pt;}
.y45_c00258{bottom:764.133333pt;}
.y11_c00258{bottom:765.066667pt;}
.y44_c00258{bottom:778.000000pt;}
.y10_c00258{bottom:780.666667pt;}
.y43_c00258{bottom:793.333333pt;}
.yf_c00258{bottom:796.400000pt;}
.ye_c00258{bottom:812.133333pt;}
.y42_c00258{bottom:812.800000pt;}
.yd_c00258{bottom:831.333333pt;}
.y41_c00258{bottom:835.600000pt;}
.yc_c00258{bottom:848.000000pt;}
.y40_c00258{bottom:852.266667pt;}
.yb_c00258{bottom:863.733333pt;}
.y3f_c00258{bottom:867.333333pt;}
.ya_c00258{bottom:882.800000pt;}
.y3e_c00258{bottom:883.333333pt;}
.y3d_c00258{bottom:898.666667pt;}
.y9_c00258{bottom:899.066667pt;}
.y3c_c00258{bottom:914.666667pt;}
.y8_c00258{bottom:914.800000pt;}
.y3b_c00258{bottom:930.666667pt;}
.y7_c00258{bottom:930.800000pt;}
.y3a_c00258{bottom:946.400000pt;}
.y6_c00258{bottom:946.800000pt;}
.y39_c00258{bottom:962.133333pt;}
.y5_c00258{bottom:962.533333pt;}
.y38_c00258{bottom:977.866667pt;}
.y4_c00258{bottom:978.266667pt;}
.y37_c00258{bottom:993.866667pt;}
.y3_c00258{bottom:994.266667pt;}
.y2_c00258{bottom:1017.600000pt;}
.y1_c00258{bottom:1017.866667pt;}
.h7_c00258{height:26.666667pt;}
.h6_c00258{height:48.000000pt;}
.h5_c00258{height:53.333333pt;}
.h3_c00258{height:58.666667pt;}
.h4_c00258{height:64.000000pt;}
.h2_c00258{height:74.666667pt;}
.h0_c00258{height:1127.680013pt;}
.h1_c00258{height:1128.000000pt;}
.w1_c00258{width:854.666667pt;}
.w0_c00258{width:854.720052pt;}
.x0_c00258{left:0.000000pt;}
.x3_c00258{left:76.533333pt;}
.x4c_c00258{left:81.600000pt;}
.x5b_c00258{left:88.133333pt;}
.xa_c00258{left:91.200000pt;}
.x4d_c00258{left:92.133333pt;}
.x75_c00258{left:93.333333pt;}
.x8e_c00258{left:94.266667pt;}
.x97_c00258{left:95.200000pt;}
.xa1_c00258{left:96.133333pt;}
.xac_c00258{left:97.066667pt;}
.x34_c00258{left:107.200000pt;}
.x80_c00258{left:108.266667pt;}
.x99_c00258{left:109.466667pt;}
.xa2_c00258{left:110.666667pt;}
.x5f_c00258{left:111.733333pt;}
.x33_c00258{left:116.400000pt;}
.x91_c00258{left:117.466667pt;}
.x58_c00258{left:119.333333pt;}
.x6d_c00258{left:121.066667pt;}
.x2b_c00258{left:122.000000pt;}
.x4e_c00258{left:123.466667pt;}
.x88_c00258{left:124.800000pt;}
.x38_c00258{left:127.200000pt;}
.x11_c00258{left:128.933333pt;}
.x47_c00258{left:131.200000pt;}
.x54_c00258{left:133.066667pt;}
.x19_c00258{left:134.666667pt;}
.xa9_c00258{left:136.133333pt;}
.x81_c00258{left:137.066667pt;}
.x42_c00258{left:138.000000pt;}
.x68_c00258{left:140.000000pt;}
.x71_c00258{left:142.266667pt;}
.x35_c00258{left:143.733333pt;}
.x76_c00258{left:145.466667pt;}
.x39_c00258{left:146.666667pt;}
.x22_c00258{left:148.400000pt;}
.x60_c00258{left:150.133333pt;}
.x9a_c00258{left:151.066667pt;}
.x1a_c00258{left:152.933333pt;}
.x4_c00258{left:154.933333pt;}
.xb_c00258{left:158.133333pt;}
.x6e_c00258{left:159.466667pt;}
.x48_c00258{left:162.266667pt;}
.x83_c00258{left:164.666667pt;}
.x43_c00258{left:166.800000pt;}
.x12_c00258{left:168.000000pt;}
.x23_c00258{left:168.933333pt;}
.x64_c00258{left:171.333333pt;}
.xc_c00258{left:173.866667pt;}
.x2c_c00258{left:174.800000pt;}
.x49_c00258{left:177.333333pt;}
.x84_c00258{left:179.333333pt;}
.x55_c00258{left:182.666667pt;}
.x44_c00258{left:183.733333pt;}
.x92_c00258{left:185.333333pt;}
.x96_c00258{left:186.400000pt;}
.x89_c00258{left:190.000000pt;}
.x5c_c00258{left:191.066667pt;}
.x36_c00258{left:193.066667pt;}
.x4f_c00258{left:194.533333pt;}
.x1b_c00258{left:195.866667pt;}
.x13_c00258{left:197.066667pt;}
.x9c_c00258{left:200.266667pt;}
.x1f_c00258{left:201.466667pt;}
.x5_c00258{left:202.933333pt;}
.x2d_c00258{left:205.866667pt;}
.x9e_c00258{left:206.800000pt;}
.x77_c00258{left:207.866667pt;}
.x45_c00258{left:210.266667pt;}
.x85_c00258{left:212.000000pt;}
.x65_c00258{left:213.600000pt;}
.xa4_c00258{left:214.666667pt;}
.x3d_c00258{left:215.600000pt;}
.x1c_c00258{left:216.666667pt;}
.x6a_c00258{left:217.733333pt;}
.x24_c00258{left:221.066667pt;}
.x7c_c00258{left:222.533333pt;}
.x2e_c00258{left:224.800000pt;}
.x7a_c00258{left:226.400000pt;}
.x3e_c00258{left:229.733333pt;}
.xa5_c00258{left:231.333333pt;}
.x6b_c00258{left:232.800000pt;}
.x61_c00258{left:234.266667pt;}
.x14_c00258{left:235.200000pt;}
.x50_c00258{left:240.933333pt;}
.x25_c00258{left:241.866667pt;}
.xaa_c00258{left:244.533333pt;}
.x3f_c00258{left:245.466667pt;}
.x94_c00258{left:247.466667pt;}
.x62_c00258{left:248.400000pt;}
.xd_c00258{left:249.333333pt;}
.x4a_c00258{left:250.666667pt;}
.x72_c00258{left:252.000000pt;}
.x9f_c00258{left:253.600000pt;}
.x20_c00258{left:254.933333pt;}
.x3a_c00258{left:256.800000pt;}
.x6_c00258{left:258.266667pt;}
.x1d_c00258{left:259.200000pt;}
.x9d_c00258{left:260.533333pt;}
.xa8_c00258{left:261.466667pt;}
.x26_c00258{left:263.333333pt;}
.x15_c00258{left:264.933333pt;}
.x2f_c00258{left:266.400000pt;}
.x37_c00258{left:268.266667pt;}
.x7d_c00258{left:269.200000pt;}
.x7_c00258{left:270.133333pt;}
.x5d_c00258{left:272.000000pt;}
.x59_c00258{left:273.200000pt;}
.x78_c00258{left:274.400000pt;}
.x8f_c00258{left:277.333333pt;}
.x46_c00258{left:278.666667pt;}
.x40_c00258{left:281.600000pt;}
.x27_c00258{left:283.466667pt;}
.x86_c00258{left:284.400000pt;}
.x4b_c00258{left:285.866667pt;}
.x1_c00258{left:288.000000pt;}
.xe_c00258{left:289.600000pt;}
.x3b_c00258{left:291.733333pt;}
.x56_c00258{left:292.800000pt;}
.x8a_c00258{left:294.933333pt;}
.x7b_c00258{left:295.866667pt;}
.x73_c00258{left:297.466667pt;}
.x8c_c00258{left:298.533333pt;}
.x30_c00258{left:299.733333pt;}
.x41_c00258{left:301.466667pt;}
.x51_c00258{left:302.666667pt;}
.xad_c00258{left:304.666667pt;}
.x6c_c00258{left:306.133333pt;}
.x16_c00258{left:307.200000pt;}
.x21_c00258{left:308.400000pt;}
.x63_c00258{left:310.133333pt;}
.xf_c00258{left:312.000000pt;}
.x8d_c00258{left:313.200000pt;}
.x31_c00258{left:314.133333pt;}
.x87_c00258{left:315.066667pt;}
.x52_c00258{left:316.133333pt;}
.x5a_c00258{left:318.266667pt;}
.x93_c00258{left:319.466667pt;}
.x5e_c00258{left:321.600000pt;}
.x66_c00258{left:323.600000pt;}
.x8_c00258{left:324.533333pt;}
.x95_c00258{left:325.600000pt;}
.x69_c00258{left:326.533333pt;}
.xab_c00258{left:328.400000pt;}
.x7e_c00258{left:329.333333pt;}
.x28_c00258{left:330.533333pt;}
.xa6_c00258{left:331.466667pt;}
.x6f_c00258{left:332.933333pt;}
.x17_c00258{left:334.666667pt;}
.x1e_c00258{left:336.000000pt;}
.x82_c00258{left:339.066667pt;}
.x32_c00258{left:340.000000pt;}
.x90_c00258{left:341.733333pt;}
.x70_c00258{left:342.800000pt;}
.x57_c00258{left:344.666667pt;}
.x9b_c00258{left:347.466667pt;}
.x3c_c00258{left:348.666667pt;}
.x79_c00258{left:349.866667pt;}
.x9_c00258{left:351.066667pt;}
.xa0_c00258{left:352.400000pt;}
.x7f_c00258{left:353.333333pt;}
.x10_c00258{left:355.466667pt;}
.x18_c00258{left:357.066667pt;}
.x29_c00258{left:358.400000pt;}
.x67_c00258{left:359.733333pt;}
.xa7_c00258{left:360.800000pt;}
.x8b_c00258{left:362.133333pt;}
.x98_c00258{left:363.600000pt;}
.x2a_c00258{left:369.333333pt;}
.x53_c00258{left:371.466667pt;}
.x74_c00258{left:373.333333pt;}
.xa3_c00258{left:374.800000pt;}
.x106_c00258{left:393.333333pt;}
.xf2_c00258{left:394.266667pt;}
.x141_c00258{left:395.333333pt;}
.x151_c00258{left:396.533333pt;}
.x157_c00258{left:397.466667pt;}
.x131_c00258{left:401.866667pt;}
.x117_c00258{left:406.000000pt;}
.xae_c00258{left:407.333333pt;}
.xcd_c00258{left:408.266667pt;}
.xe8_c00258{left:409.333333pt;}
.x132_c00258{left:416.000000pt;}
.x11d_c00258{left:418.800000pt;}
.x11e_c00258{left:419.866667pt;}
.x158_c00258{left:422.133333pt;}
.xb6_c00258{left:424.000000pt;}
.xf7_c00258{left:425.600000pt;}
.x155_c00258{left:426.533333pt;}
.x144_c00258{left:428.133333pt;}
.xf3_c00258{left:429.200000pt;}
.x107_c00258{left:430.400000pt;}
.x10b_c00258{left:432.000000pt;}
.xe0_c00258{left:433.333333pt;}
.xc0_c00258{left:434.933333pt;}
.x13e_c00258{left:436.133333pt;}
.x11f_c00258{left:438.800000pt;}
.xb7_c00258{left:440.666667pt;}
.xce_c00258{left:443.466667pt;}
.x135_c00258{left:444.400000pt;}
.x139_c00258{left:445.466667pt;}
.xe9_c00258{left:447.066667pt;}
.x113_c00258{left:448.933333pt;}
.xfe_c00258{left:450.266667pt;}
.xaf_c00258{left:451.866667pt;}
.xb8_c00258{left:454.800000pt;}
.x133_c00258{left:456.266667pt;}
.xe1_c00258{left:459.200000pt;}
.x122_c00258{left:460.533333pt;}
.xf4_c00258{left:463.066667pt;}
.xeb_c00258{left:464.933333pt;}
.xcf_c00258{left:465.866667pt;}
.xb0_c00258{left:467.866667pt;}
.xdb_c00258{left:471.333333pt;}
.x129_c00258{left:472.266667pt;}
.x118_c00258{left:473.466667pt;}
.xb9_c00258{left:474.666667pt;}
.xc6_c00258{left:475.733333pt;}
.xc1_c00258{left:477.466667pt;}
.x10c_c00258{left:479.733333pt;}
.x136_c00258{left:481.200000pt;}
.x137_c00258{left:482.933333pt;}
.xf0_c00258{left:484.533333pt;}
.x121_c00258{left:486.266667pt;}
.x108_c00258{left:488.000000pt;}
.x12e_c00258{left:489.466667pt;}
.x123_c00258{left:491.600000pt;}
.x14a_c00258{left:494.000000pt;}
.xe2_c00258{left:496.000000pt;}
.x126_c00258{left:498.000000pt;}
.xd6_c00258{left:499.066667pt;}
.x13c_c00258{left:500.000000pt;}
.xd0_c00258{left:502.000000pt;}
.x148_c00258{left:504.000000pt;}
.xc2_c00258{left:506.000000pt;}
.x114_c00258{left:508.133333pt;}
.xb1_c00258{left:509.466667pt;}
.xd1_c00258{left:510.933333pt;}
.x12a_c00258{left:512.266667pt;}
.xec_c00258{left:513.200000pt;}
.xdc_c00258{left:514.800000pt;}
.x103_c00258{left:516.000000pt;}
.x138_c00258{left:517.466667pt;}
.xc7_c00258{left:519.200000pt;}
.x13b_c00258{left:520.266667pt;}
.x119_c00258{left:521.200000pt;}
.xba_c00258{left:522.933333pt;}
.xf5_c00258{left:525.200000pt;}
.x14f_c00258{left:526.933333pt;}
.x10d_c00258{left:528.666667pt;}
.x13f_c00258{left:530.266667pt;}
.x109_c00258{left:531.866667pt;}
.xff_c00258{left:533.200000pt;}
.xdd_c00258{left:534.666667pt;}
.x142_c00258{left:536.266667pt;}
.x14c_c00258{left:538.133333pt;}
.xf1_c00258{left:539.600000pt;}
.x10e_c00258{left:542.400000pt;}
.xb2_c00258{left:543.733333pt;}
.xd7_c00258{left:544.800000pt;}
.xea_c00258{left:545.866667pt;}
.x150_c00258{left:547.200000pt;}
.x127_c00258{left:548.266667pt;}
.xfa_c00258{left:550.400000pt;}
.xde_c00258{left:552.000000pt;}
.x156_c00258{left:555.066667pt;}
.xbb_c00258{left:556.533333pt;}
.xe3_c00258{left:557.466667pt;}
.xd2_c00258{left:559.866667pt;}
.x149_c00258{left:561.333333pt;}
.xc3_c00258{left:563.333333pt;}
.xb3_c00258{left:564.800000pt;}
.x104_c00258{left:566.266667pt;}
.x12f_c00258{left:568.800000pt;}
.xed_c00258{left:570.266667pt;}
.x14b_c00258{left:572.666667pt;}
.x10f_c00258{left:574.666667pt;}
.x145_c00258{left:576.000000pt;}
.xe4_c00258{left:577.600000pt;}
.x11a_c00258{left:579.066667pt;}
.xc8_c00258{left:580.933333pt;}
.xd8_c00258{left:582.266667pt;}
.xf6_c00258{left:584.133333pt;}
.x12b_c00258{left:586.533333pt;}
.xee_c00258{left:587.600000pt;}
.xbc_c00258{left:590.133333pt;}
.xd3_c00258{left:591.866667pt;}
.x152_c00258{left:594.266667pt;}
.x10a_c00258{left:595.200000pt;}
.xc4_c00258{left:596.666667pt;}
.xfb_c00258{left:598.133333pt;}
.x120_c00258{left:599.600000pt;}
.x128_c00258{left:602.666667pt;}
.x115_c00258{left:604.133333pt;}
.xf8_c00258{left:605.200000pt;}
.x116_c00258{left:606.666667pt;}
.xc9_c00258{left:607.866667pt;}
.xb4_c00258{left:609.600000pt;}
.x124_c00258{left:611.333333pt;}
.x110_c00258{left:612.400000pt;}
.x100_c00258{left:615.200000pt;}
.xbd_c00258{left:616.666667pt;}
.x14d_c00258{left:617.733333pt;}
.x12c_c00258{left:619.733333pt;}
.xca_c00258{left:622.000000pt;}
.xe5_c00258{left:623.733333pt;}
.x14e_c00258{left:626.400000pt;}
.xd9_c00258{left:628.400000pt;}
.x11b_c00258{left:630.000000pt;}
.x13a_c00258{left:631.200000pt;}
.xfc_c00258{left:633.600000pt;}
.x143_c00258{left:634.933333pt;}
.x159_c00258{left:635.866667pt;}
.x101_c00258{left:636.933333pt;}
.xbe_c00258{left:639.066667pt;}
.xda_c00258{left:640.266667pt;}
.x146_c00258{left:641.200000pt;}
.xe6_c00258{left:643.200000pt;}
.xb5_c00258{left:644.800000pt;}
.x13d_c00258{left:646.933333pt;}
.xd4_c00258{left:648.133333pt;}
.xc5_c00258{left:649.733333pt;}
.x140_c00258{left:651.333333pt;}
.xf9_c00258{left:653.200000pt;}
.xbf_c00258{left:654.133333pt;}
.x111_c00258{left:655.600000pt;}
.xcb_c00258{left:657.866667pt;}
.xe7_c00258{left:660.800000pt;}
.x147_c00258{left:662.266667pt;}
.x154_c00258{left:664.266667pt;}
.x12d_c00258{left:665.466667pt;}
.x2_c00258{left:666.933333pt;}
.xef_c00258{left:667.866667pt;}
.x112_c00258{left:669.066667pt;}
.xdf_c00258{left:672.000000pt;}
.xcc_c00258{left:672.933333pt;}
.x102_c00258{left:674.933333pt;}
.xd5_c00258{left:676.266667pt;}
.x105_c00258{left:678.933333pt;}
.x125_c00258{left:679.866667pt;}
.x11c_c00258{left:681.200000pt;}
.xfd_c00258{left:682.933333pt;}
.x153_c00258{left:684.400000pt;}
.x130_c00258{left:689.333333pt;}
.x134_c00258{left:690.266667pt;}
.x15a_c00258{left:702.666667pt;}
.x15b_c00258{left:706.533333pt;}
}





/* 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_c00259 {
    display:none;
  }
  .loading-indicator_c00259.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00259 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_c00259 { 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_c00259" -> "#page-container .classname_c00259")
 */
.pf_c00259 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00259 { /* 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_c00259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00259 { /* 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_c00259 { /* 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_c00259 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00259 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00259 {overflow:visible;}
  }
}
.c_c00259 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00259 { /* 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_c00259:after { /* webkit #35443 */
  content: '';
}
.t_c00259:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00259 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 */
}
.__c00259 { /* 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_c00259 { /* info for Javascript */
  display:none;
}
.l_c00259 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00259 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00259 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00259: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_c00259 {
    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_c00259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00259.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_c00259 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00259;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.000000;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;}
.m61_c00259{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mae_c00259{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m2_c00259{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m104_c00259{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m23_c00259{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m13_c00259{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m28_c00259{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00259{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00259{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.maf_c00259{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00259{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00259{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m102_c00259{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md7_c00259{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m124_c00259{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00259{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m39_c00259{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00259{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00259{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m121_c00259{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m16_c00259{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00259{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m58_c00259{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00259{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m127_c00259{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m85_c00259{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00259{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00259{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m70_c00259{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mab_c00259{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m80_c00259{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00259{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m128_c00259{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00259{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00259{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00259{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00259{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m26_c00259{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m44_c00259{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mac_c00259{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00259{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m7_c00259{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.med_c00259{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mca_c00259{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m51_c00259{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m32_c00259{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m108_c00259{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00259{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00259{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m31_c00259{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00259{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00259{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m122_c00259{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m30_c00259{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf_c00259{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m69_c00259{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00259{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m115_c00259{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00259{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.maa_c00259{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mce_c00259{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m109_c00259{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00259{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m12_c00259{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00259{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00259{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m29_c00259{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00259{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00259{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00259{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00259{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.md9_c00259{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m63_c00259{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00259{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mc_c00259{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00259{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00259{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m81_c00259{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00259{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00259{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m68_c00259{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00259{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m77_c00259{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00259{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m107_c00259{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me5_c00259{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00259{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m36_c00259{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00259{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00259{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00259{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me7_c00259{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00259{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m35_c00259{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00259{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00259{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m60_c00259{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m94_c00259{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00259{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00259{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma_c00259{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m49_c00259{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00259{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m37_c00259{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00259{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00259{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00259{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00259{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00259{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.me6_c00259{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6_c00259{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m116_c00259{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m46_c00259{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m72_c00259{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md_c00259{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00259{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m54_c00259{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m125_c00259{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m79_c00259{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00259{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00259{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00259{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m101_c00259{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m78_c00259{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m57_c00259{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me9_c00259{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00259{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00259{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00259{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00259{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mad_c00259{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00259{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m76_c00259{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00259{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mec_c00259{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00259{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00259{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m47_c00259{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mea_c00259{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me_c00259{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m18_c00259{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m48_c00259{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m56_c00259{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m129_c00259{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m38_c00259{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00259{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m87_c00259{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00259{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.md6_c00259{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00259{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m21_c00259{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00259{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00259{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m105_c00259{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00259{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m59_c00259{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00259{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m24_c00259{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00259{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mff_c00259{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m43_c00259{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00259{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md8_c00259{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m74_c00259{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m41_c00259{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00259{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00259{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m118_c00259{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m52_c00259{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mde_c00259{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m33_c00259{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00259{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m67_c00259{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m14_c00259{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00259{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m50_c00259{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00259{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me3_c00259{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m111_c00259{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mee_c00259{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m25_c00259{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00259{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00259{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00259{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m106_c00259{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00259{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00259{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00259{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m88_c00259{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m86_c00259{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00259{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00259{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me1_c00259{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m22_c00259{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m113_c00259{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mef_c00259{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m9_c00259{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.md4_c00259{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m34_c00259{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00259{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m64_c00259{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mba_c00259{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m53_c00259{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00259{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00259{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00259{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m90_c00259{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md3_c00259{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mda_c00259{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m55_c00259{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00259{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me8_c00259{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m45_c00259{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m10_c00259{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00259{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m71_c00259{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00259{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00259{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.meb_c00259{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md2_c00259{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m19_c00259{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00259{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m73_c00259{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00259{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m114_c00259{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m20_c00259{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m126_c00259{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00259{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m75_c00259{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m82_c00259{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00259{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00259{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00259{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mb_c00259{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00259{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00259{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00259{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m17_c00259{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00259{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m15_c00259{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00259{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m93_c00259{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00259{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00259{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m91_c00259{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00259{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me4_c00259{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m99_c00259{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m89_c00259{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00259{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);}
.m92_c00259{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m95_c00259{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00259{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m65_c00259{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m84_c00259{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00259{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m66_c00259{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m110_c00259{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m120_c00259{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me0_c00259{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m27_c00259{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.md1_c00259{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00259{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00259{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00259{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m42_c00259{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.md5_c00259{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m83_c00259{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00259{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m112_c00259{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m62_c00259{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m96_c00259{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m123_c00259{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00259{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m119_c00259{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m98_c00259{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.md0_c00259{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00259{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00259{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00259{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m40_c00259{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m117_c00259{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m103_c00259{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m97_c00259{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.me2_c00259{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00259{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m100_c00259{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00259{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00259{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00259{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00259{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00259{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00259{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls0_c00259{letter-spacing:0.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{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__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00259{word-spacing:-17.936373px;}
.ws0_c00259{word-spacing:-10.820961px;}
.ws1_c00259{word-spacing:-3.055556px;}
.wsc_c00259{word-spacing:-2.547170px;}
.wsd_c00259{word-spacing:0.000000px;}
.ws9_c00259{word-spacing:0.363057px;}
.ws2_c00259{word-spacing:3.235294px;}
.ws8_c00259{word-spacing:3.478261px;}
.ws5_c00259{word-spacing:16.785714px;}
.ws3_c00259{word-spacing:22.142857px;}
.ws6_c00259{word-spacing:25.714286px;}
.wsa_c00259{word-spacing:44.063694px;}
.ws7_c00259{word-spacing:65.000000px;}
.ws4_c00259{word-spacing:66.315789px;}
._1_c00259{width:55.714286px;}
._0_c00259{width:59.285714px;}
.fc0_c00259{color:transparent;}
.fs5_c00259{font-size:42.000000px;}
.fs4_c00259{font-size:54.000000px;}
.fs3_c00259{font-size:60.000000px;}
.fs2_c00259{font-size:66.000000px;}
.fs1_c00259{font-size:72.000000px;}
.fs0_c00259{font-size:78.000000px;}
.y0_c00259{bottom:0.000000px;}
.y6c_c00259{bottom:195.450000px;}
.y36_c00259{bottom:201.000000px;}
.y6b_c00259{bottom:210.600000px;}
.y35_c00259{bottom:215.700000px;}
.y6a_c00259{bottom:224.700000px;}
.y34_c00259{bottom:229.650000px;}
.y69_c00259{bottom:239.100000px;}
.y33_c00259{bottom:244.050000px;}
.y68_c00259{bottom:253.350000px;}
.y32_c00259{bottom:258.000000px;}
.y67_c00259{bottom:267.450000px;}
.y31_c00259{bottom:272.100000px;}
.y66_c00259{bottom:281.850000px;}
.y30_c00259{bottom:286.500000px;}
.y65_c00259{bottom:295.950000px;}
.y2f_c00259{bottom:300.150000px;}
.y64_c00259{bottom:310.650000px;}
.y2e_c00259{bottom:314.550000px;}
.y63_c00259{bottom:325.050000px;}
.y2d_c00259{bottom:328.200000px;}
.y62_c00259{bottom:339.150000px;}
.y2c_c00259{bottom:342.300000px;}
.y61_c00259{bottom:354.600000px;}
.y2b_c00259{bottom:356.700000px;}
.y60_c00259{bottom:367.950000px;}
.y2a_c00259{bottom:370.800000px;}
.y5f_c00259{bottom:382.350000px;}
.y29_c00259{bottom:386.250000px;}
.y5e_c00259{bottom:396.750000px;}
.y28_c00259{bottom:410.250000px;}
.y27_c00259{bottom:427.950000px;}
.y26_c00259{bottom:445.950000px;}
.y5d_c00259{bottom:450.300000px;}
.y25_c00259{bottom:463.950000px;}
.y5c_c00259{bottom:468.000000px;}
.y24_c00259{bottom:481.650000px;}
.y5b_c00259{bottom:485.700000px;}
.y5a_c00259{bottom:503.700000px;}
.y23_c00259{bottom:508.200000px;}
.y59_c00259{bottom:521.700000px;}
.y22_c00259{bottom:526.200000px;}
.y58_c00259{bottom:539.250000px;}
.y21_c00259{bottom:544.200000px;}
.y57_c00259{bottom:556.800000px;}
.y20_c00259{bottom:561.150000px;}
.y56_c00259{bottom:574.800000px;}
.y1f_c00259{bottom:578.850000px;}
.y55_c00259{bottom:592.500000px;}
.y1e_c00259{bottom:596.100000px;}
.y54_c00259{bottom:610.200000px;}
.y1d_c00259{bottom:618.450000px;}
.y53_c00259{bottom:627.900000px;}
.y1c_c00259{bottom:645.000000px;}
.y52_c00259{bottom:645.450000px;}
.y1b_c00259{bottom:662.700000px;}
.y51_c00259{bottom:663.450000px;}
.y1a_c00259{bottom:680.400000px;}
.y50_c00259{bottom:681.150000px;}
.y19_c00259{bottom:698.400000px;}
.y4f_c00259{bottom:699.150000px;}
.y4e_c00259{bottom:716.850000px;}
.y18_c00259{bottom:720.600000px;}
.y4d_c00259{bottom:734.850000px;}
.y17_c00259{bottom:738.300000px;}
.y4c_c00259{bottom:752.550000px;}
.y16_c00259{bottom:756.300000px;}
.y4b_c00259{bottom:770.550000px;}
.y15_c00259{bottom:774.000000px;}
.y4a_c00259{bottom:790.650000px;}
.y14_c00259{bottom:796.200000px;}
.y49_c00259{bottom:806.100000px;}
.y13_c00259{bottom:813.900000px;}
.y48_c00259{bottom:823.800000px;}
.y12_c00259{bottom:831.600000px;}
.y47_c00259{bottom:841.500000px;}
.y11_c00259{bottom:853.050000px;}
.y46_c00259{bottom:859.200000px;}
.y10_c00259{bottom:871.050000px;}
.y45_c00259{bottom:877.200000px;}
.yf_c00259{bottom:888.750000px;}
.y44_c00259{bottom:894.450000px;}
.ye_c00259{bottom:906.450000px;}
.y43_c00259{bottom:912.750000px;}
.yd_c00259{bottom:928.650000px;}
.y42_c00259{bottom:930.450000px;}
.yc_c00259{bottom:946.350000px;}
.y41_c00259{bottom:948.450000px;}
.yb_c00259{bottom:964.050000px;}
.y40_c00259{bottom:966.150000px;}
.ya_c00259{bottom:981.750000px;}
.y3f_c00259{bottom:983.850000px;}
.y9_c00259{bottom:999.750000px;}
.y3e_c00259{bottom:1002.150000px;}
.y8_c00259{bottom:1017.000000px;}
.y3d_c00259{bottom:1019.400000px;}
.y7_c00259{bottom:1035.000000px;}
.y3c_c00259{bottom:1037.100000px;}
.y6_c00259{bottom:1053.000000px;}
.y3b_c00259{bottom:1054.800000px;}
.y5_c00259{bottom:1070.250000px;}
.y3a_c00259{bottom:1072.800000px;}
.y4_c00259{bottom:1088.250000px;}
.y39_c00259{bottom:1090.050000px;}
.y3_c00259{bottom:1105.950000px;}
.y38_c00259{bottom:1111.050000px;}
.y2_c00259{bottom:1123.950000px;}
.y37_c00259{bottom:1125.750000px;}
.y1_c00259{bottom:1149.900000px;}
.h7_c00259{height:42.000000px;}
.h6_c00259{height:54.000000px;}
.h5_c00259{height:60.000000px;}
.h4_c00259{height:66.000000px;}
.h3_c00259{height:72.000000px;}
.h2_c00259{height:78.000000px;}
.h1_c00259{height:1269.000000px;}
.h0_c00259{height:1269.359985px;}
.w1_c00259{width:961.500000px;}
.w0_c00259{width:961.560058px;}
.x0_c00259{left:0.000000px;}
.x8d_c00259{left:168.150000px;}
.x5f_c00259{left:169.200000px;}
.x1_c00259{left:171.000000px;}
.x66_c00259{left:173.850000px;}
.x5a_c00259{left:175.650000px;}
.x3_c00259{left:179.700000px;}
.x9a_c00259{left:182.100000px;}
.x98_c00259{left:183.600000px;}
.x6e_c00259{left:185.550000px;}
.x5b_c00259{left:186.750000px;}
.x14_c00259{left:188.400000px;}
.x4_c00259{left:189.450000px;}
.x9d_c00259{left:198.300000px;}
.x7a_c00259{left:203.850000px;}
.x39_c00259{left:205.350000px;}
.x6b_c00259{left:211.350000px;}
.x3e_c00259{left:212.400000px;}
.x5c_c00259{left:214.050000px;}
.x15_c00259{left:215.100000px;}
.x48_c00259{left:216.150000px;}
.x2b_c00259{left:217.650000px;}
.x84_c00259{left:220.050000px;}
.x1b_c00259{left:222.150000px;}
.x87_c00259{left:225.450000px;}
.x23_c00259{left:227.850000px;}
.xc_c00259{left:230.700000px;}
.x60_c00259{left:232.200000px;}
.x70_c00259{left:233.250000px;}
.x5_c00259{left:236.250000px;}
.x35_c00259{left:237.900000px;}
.x53_c00259{left:244.200000px;}
.x4c_c00259{left:245.850000px;}
.x74_c00259{left:247.350000px;}
.x61_c00259{left:248.400000px;}
.x49_c00259{left:250.650000px;}
.x8f_c00259{left:252.750000px;}
.x6_c00259{left:253.950000px;}
.x56_c00259{left:255.600000px;}
.x99_c00259{left:256.650000px;}
.x3a_c00259{left:258.600000px;}
.x67_c00259{left:260.250000px;}
.xd_c00259{left:261.600000px;}
.x16_c00259{left:263.400000px;}
.x90_c00259{left:265.650000px;}
.x1c_c00259{left:267.150000px;}
.x62_c00259{left:268.200000px;}
.x7_c00259{left:269.400000px;}
.x4a_c00259{left:270.450000px;}
.x17_c00259{left:272.700000px;}
.x7b_c00259{left:273.750000px;}
.x3f_c00259{left:275.400000px;}
.x50_c00259{left:277.500000px;}
.x6c_c00259{left:280.800000px;}
.x57_c00259{left:282.300000px;}
.x4d_c00259{left:283.950000px;}
.x1d_c00259{left:285.150000px;}
.x71_c00259{left:286.650000px;}
.xa1_c00259{left:287.850000px;}
.x43_c00259{left:291.750000px;}
.x68_c00259{left:293.400000px;}
.x31_c00259{left:295.800000px;}
.x2c_c00259{left:296.850000px;}
.x7e_c00259{left:301.650000px;}
.x24_c00259{left:303.450000px;}
.x63_c00259{left:304.500000px;}
.x36_c00259{left:305.850000px;}
.x54_c00259{left:306.900000px;}
.x18_c00259{left:308.700000px;}
.xa5_c00259{left:311.850000px;}
.xe_c00259{left:313.050000px;}
.x64_c00259{left:316.050000px;}
.x40_c00259{left:317.550000px;}
.x55_c00259{left:318.900000px;}
.x1e_c00259{left:320.400000px;}
.x4b_c00259{left:323.700000px;}
.x75_c00259{left:325.050000px;}
.x9e_c00259{left:328.050000px;}
.x58_c00259{left:329.400000px;}
.x2d_c00259{left:331.350000px;}
.x32_c00259{left:333.300000px;}
.x93_c00259{left:334.350000px;}
.x44_c00259{left:336.450000px;}
.x25_c00259{left:337.950000px;}
.xf_c00259{left:340.350000px;}
.x9f_c00259{left:342.150000px;}
.x8b_c00259{left:344.250000px;}
.x76_c00259{left:345.600000px;}
.xa6_c00259{left:347.100000px;}
.x41_c00259{left:349.650000px;}
.x8_c00259{left:351.150000px;}
.x26_c00259{left:352.650000px;}
.x94_c00259{left:354.150000px;}
.x51_c00259{left:355.350000px;}
.x85_c00259{left:357.600000px;}
.x88_c00259{left:359.250000px;}
.x92_c00259{left:361.500000px;}
.x37_c00259{left:363.150000px;}
.x77_c00259{left:365.100000px;}
.x45_c00259{left:366.300000px;}
.x7f_c00259{left:367.950000px;}
.x1f_c00259{left:370.050000px;}
.x10_c00259{left:372.750000px;}
.xa0_c00259{left:374.850000px;}
.x86_c00259{left:375.900000px;}
.x4e_c00259{left:378.300000px;}
.x5d_c00259{left:380.700000px;}
.x89_c00259{left:383.700000px;}
.x9_c00259{left:385.050000px;}
.x7c_c00259{left:387.900000px;}
.x72_c00259{left:388.950000px;}
.xa3_c00259{left:390.000000px;}
.x6f_c00259{left:391.950000px;}
.x3b_c00259{left:393.900000px;}
.x96_c00259{left:394.950000px;}
.x2e_c00259{left:396.150000px;}
.x7d_c00259{left:397.650000px;}
.x20_c00259{left:399.600000px;}
.x8a_c00259{left:400.650000px;}
.x19_c00259{left:402.900000px;}
.xa_c00259{left:405.600000px;}
.x73_c00259{left:406.650000px;}
.x27_c00259{left:408.450000px;}
.x2_c00259{left:410.100000px;}
.x46_c00259{left:411.600000px;}
.xa2_c00259{left:413.550000px;}
.x78_c00259{left:414.750000px;}
.x69_c00259{left:417.300000px;}
.x28_c00259{left:418.500000px;}
.x8c_c00259{left:419.850000px;}
.x52_c00259{left:423.450000px;}
.x11_c00259{left:425.250000px;}
.x2f_c00259{left:426.450000px;}
.x47_c00259{left:430.650000px;}
.x9b_c00259{left:432.600000px;}
.x21_c00259{left:435.300000px;}
.x81_c00259{left:436.800000px;}
.x33_c00259{left:439.200000px;}
.x1a_c00259{left:440.700000px;}
.x80_c00259{left:447.150000px;}
.x3c_c00259{left:448.200000px;}
.x6a_c00259{left:451.200000px;}
.x91_c00259{left:452.700000px;}
.x38_c00259{left:453.750000px;}
.x12_c00259{left:454.800000px;}
.x29_c00259{left:457.050000px;}
.xb_c00259{left:458.100000px;}
.xa4_c00259{left:460.200000px;}
.x82_c00259{left:461.700000px;}
.x34_c00259{left:462.900000px;}
.x6d_c00259{left:463.950000px;}
.x8e_c00259{left:466.200000px;}
.x3d_c00259{left:467.250000px;}
.x22_c00259{left:469.200000px;}
.x79_c00259{left:472.350000px;}
.x42_c00259{left:473.850000px;}
.x59_c00259{left:475.200000px;}
.x30_c00259{left:476.550000px;}
.x2a_c00259{left:477.600000px;}
.x95_c00259{left:479.400000px;}
.xa7_c00259{left:481.650000px;}
.x83_c00259{left:483.300000px;}
.x65_c00259{left:485.550000px;}
.x97_c00259{left:488.850000px;}
.x9c_c00259{left:490.200000px;}
.x13_c00259{left:491.550000px;}
.x5e_c00259{left:493.800000px;}
.x4f_c00259{left:495.000000px;}
.x14c_c00259{left:522.300000px;}
.x13c_c00259{left:523.350000px;}
.xb6_c00259{left:526.650000px;}
.x122_c00259{left:529.950000px;}
.x140_c00259{left:537.150000px;}
.x12f_c00259{left:538.500000px;}
.xb0_c00259{left:540.300000px;}
.x127_c00259{left:541.500000px;}
.x121_c00259{left:542.550000px;}
.xba_c00259{left:543.900000px;}
.x14d_c00259{left:550.350000px;}
.x13d_c00259{left:552.150000px;}
.xa8_c00259{left:554.100000px;}
.x145_c00259{left:555.300000px;}
.x149_c00259{left:556.950000px;}
.x14f_c00259{left:560.850000px;}
.x133_c00259{left:562.950000px;}
.xbb_c00259{left:565.800000px;}
.xee_c00259{left:567.000000px;}
.x11b_c00259{left:568.200000px;}
.xc2_c00259{left:572.250000px;}
.x102_c00259{left:574.500000px;}
.x10b_c00259{left:576.450000px;}
.xf4_c00259{left:578.250000px;}
.x113_c00259{left:579.600000px;}
.xd5_c00259{left:581.400000px;}
.xef_c00259{left:582.900000px;}
.x130_c00259{left:584.250000px;}
.x148_c00259{left:585.900000px;}
.xec_c00259{left:586.950000px;}
.x106_c00259{left:588.000000px;}
.x10e_c00259{left:590.550000px;}
.xe3_c00259{left:593.700000px;}
.xfd_c00259{left:595.350000px;}
.x150_c00259{left:596.550000px;}
.xcf_c00259{left:598.050000px;}
.x138_c00259{left:600.150000px;}
.xdd_c00259{left:601.350000px;}
.xd6_c00259{left:602.700000px;}
.xb1_c00259{left:604.800000px;}
.xe0_c00259{left:606.150000px;}
.x134_c00259{left:609.000000px;}
.x137_c00259{left:610.500000px;}
.x114_c00259{left:611.700000px;}
.x11a_c00259{left:612.900000px;}
.xca_c00259{left:614.550000px;}
.xb7_c00259{left:616.350000px;}
.xf0_c00259{left:618.150000px;}
.xf5_c00259{left:620.400000px;}
.xe6_c00259{left:621.750000px;}
.xbc_c00259{left:625.200000px;}
.xda_c00259{left:627.300000px;}
.x11c_c00259{left:628.350000px;}
.x10f_c00259{left:629.850000px;}
.x103_c00259{left:631.800000px;}
.xf8_c00259{left:634.350000px;}
.x12b_c00259{left:635.400000px;}
.x153_c00259{left:637.500000px;}
.xc3_c00259{left:638.550000px;}
.xed_c00259{left:640.500000px;}
.x142_c00259{left:642.000000px;}
.xfe_c00259{left:643.500000px;}
.xa9_c00259{left:644.850000px;}
.x14a_c00259{left:646.200000px;}
.x13e_c00259{left:648.000000px;}
.xc4_c00259{left:649.050000px;}
.xb2_c00259{left:650.550000px;}
.xd0_c00259{left:652.350000px;}
.xd7_c00259{left:654.600000px;}
.x14e_c00259{left:658.650000px;}
.x10c_c00259{left:659.700000px;}
.x107_c00259{left:661.500000px;}
.xaa_c00259{left:663.900000px;}
.x128_c00259{left:665.700000px;}
.x104_c00259{left:671.100000px;}
.xbd_c00259{left:672.300000px;}
.x110_c00259{left:673.800000px;}
.xde_c00259{left:674.850000px;}
.xff_c00259{left:678.000000px;}
.xc5_c00259{left:679.950000px;}
.xe7_c00259{left:681.450000px;}
.x151_c00259{left:684.150000px;}
.x115_c00259{left:685.500000px;}
.xf9_c00259{left:688.050000px;}
.xbe_c00259{left:690.000000px;}
.x123_c00259{left:693.000000px;}
.x11e_c00259{left:694.200000px;}
.x139_c00259{left:696.900000px;}
.xd1_c00259{left:698.400000px;}
.xe8_c00259{left:700.200000px;}
.xcb_c00259{left:701.700000px;}
.xf1_c00259{left:703.050000px;}
.x111_c00259{left:704.400000px;}
.x14b_c00259{left:705.450000px;}
.x12c_c00259{left:706.650000px;}
.xab_c00259{left:708.600000px;}
.x141_c00259{left:709.950000px;}
.x129_c00259{left:712.050000px;}
.xe1_c00259{left:713.100000px;}
.x154_c00259{left:715.950000px;}
.xf6_c00259{left:717.900000px;}
.x124_c00259{left:719.250000px;}
.x116_c00259{left:723.000000px;}
.xb8_c00259{left:724.950000px;}
.x11d_c00259{left:726.150000px;}
.x126_c00259{left:727.350000px;}
.xd2_c00259{left:730.050000px;}
.xc6_c00259{left:731.100000px;}
.xf2_c00259{left:732.600000px;}
.xfa_c00259{left:733.800000px;}
.xd8_c00259{left:736.650000px;}
.x100_c00259{left:738.900000px;}
.x146_c00259{left:740.250000px;}
.x11f_c00259{left:742.350000px;}
.x13a_c00259{left:743.400000px;}
.xd3_c00259{left:745.500000px;}
.x155_c00259{left:746.850000px;}
.xbf_c00259{left:747.900000px;}
.xe9_c00259{left:749.550000px;}
.x125_c00259{left:751.350000px;}
.x108_c00259{left:753.900000px;}
.xcc_c00259{left:756.450000px;}
.xac_c00259{left:759.750000px;}
.x147_c00259{left:761.550000px;}
.xe2_c00259{left:763.200000px;}
.xf7_c00259{left:765.750000px;}
.x12a_c00259{left:768.600000px;}
.x117_c00259{left:769.800000px;}
.xe4_c00259{left:771.150000px;}
.xc7_c00259{left:774.000000px;}
.x152_c00259{left:776.100000px;}
.x120_c00259{left:777.300000px;}
.xdf_c00259{left:778.500000px;}
.xfb_c00259{left:779.550000px;}
.x135_c00259{left:780.900000px;}
.xad_c00259{left:782.850000px;}
.xea_c00259{left:787.350000px;}
.xdb_c00259{left:789.600000px;}
.x112_c00259{left:790.800000px;}
.xcd_c00259{left:792.150000px;}
.xb3_c00259{left:793.500000px;}
.xb9_c00259{left:795.150000px;}
.x101_c00259{left:796.200000px;}
.x118_c00259{left:798.300000px;}
.x143_c00259{left:799.350000px;}
.xc0_c00259{left:800.400000px;}
.x131_c00259{left:801.600000px;}
.xd4_c00259{left:803.400000px;}
.x12d_c00259{left:804.450000px;}
.x10d_c00259{left:806.100000px;}
.xe5_c00259{left:807.450000px;}
.xc8_c00259{left:810.000000px;}
.xae_c00259{left:813.450000px;}
.x157_c00259{left:814.950000px;}
.xc1_c00259{left:816.300000px;}
.x119_c00259{left:818.400000px;}
.xb4_c00259{left:820.500000px;}
.x105_c00259{left:822.300000px;}
.xd9_c00259{left:824.850000px;}
.x156_c00259{left:826.650000px;}
.xc9_c00259{left:827.700000px;}
.xce_c00259{left:829.650000px;}
.x109_c00259{left:831.600000px;}
.x144_c00259{left:832.800000px;}
.xeb_c00259{left:835.350000px;}
.x136_c00259{left:836.700000px;}
.xfc_c00259{left:843.300000px;}
.xf3_c00259{left:844.650000px;}
.x13f_c00259{left:845.700000px;}
.xaf_c00259{left:847.350000px;}
.xb5_c00259{left:849.000000px;}
.xdc_c00259{left:850.800000px;}
.x10a_c00259{left:852.900000px;}
.x132_c00259{left:855.900000px;}
.x13b_c00259{left:857.100000px;}
.x12e_c00259{left:868.200000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.wsb_c00259{word-spacing:-15.943443pt;}
.ws0_c00259{word-spacing:-9.618632pt;}
.ws1_c00259{word-spacing:-2.716049pt;}
.wsc_c00259{word-spacing:-2.264151pt;}
.wsd_c00259{word-spacing:0.000000pt;}
.ws9_c00259{word-spacing:0.322718pt;}
.ws2_c00259{word-spacing:2.875817pt;}
.ws8_c00259{word-spacing:3.091787pt;}
.ws5_c00259{word-spacing:14.920635pt;}
.ws3_c00259{word-spacing:19.682540pt;}
.ws6_c00259{word-spacing:22.857143pt;}
.wsa_c00259{word-spacing:39.167728pt;}
.ws7_c00259{word-spacing:57.777778pt;}
.ws4_c00259{word-spacing:58.947368pt;}
._1_c00259{width:49.523810pt;}
._0_c00259{width:52.698413pt;}
.fs5_c00259{font-size:37.333333pt;}
.fs4_c00259{font-size:48.000000pt;}
.fs3_c00259{font-size:53.333333pt;}
.fs2_c00259{font-size:58.666667pt;}
.fs1_c00259{font-size:64.000000pt;}
.fs0_c00259{font-size:69.333333pt;}
.y0_c00259{bottom:0.000000pt;}
.y6c_c00259{bottom:173.733333pt;}
.y36_c00259{bottom:178.666667pt;}
.y6b_c00259{bottom:187.200000pt;}
.y35_c00259{bottom:191.733333pt;}
.y6a_c00259{bottom:199.733333pt;}
.y34_c00259{bottom:204.133333pt;}
.y69_c00259{bottom:212.533333pt;}
.y33_c00259{bottom:216.933333pt;}
.y68_c00259{bottom:225.200000pt;}
.y32_c00259{bottom:229.333333pt;}
.y67_c00259{bottom:237.733333pt;}
.y31_c00259{bottom:241.866667pt;}
.y66_c00259{bottom:250.533333pt;}
.y30_c00259{bottom:254.666667pt;}
.y65_c00259{bottom:263.066667pt;}
.y2f_c00259{bottom:266.800000pt;}
.y64_c00259{bottom:276.133333pt;}
.y2e_c00259{bottom:279.600000pt;}
.y63_c00259{bottom:288.933333pt;}
.y2d_c00259{bottom:291.733333pt;}
.y62_c00259{bottom:301.466667pt;}
.y2c_c00259{bottom:304.266667pt;}
.y61_c00259{bottom:315.200000pt;}
.y2b_c00259{bottom:317.066667pt;}
.y60_c00259{bottom:327.066667pt;}
.y2a_c00259{bottom:329.600000pt;}
.y5f_c00259{bottom:339.866667pt;}
.y29_c00259{bottom:343.333333pt;}
.y5e_c00259{bottom:352.666667pt;}
.y28_c00259{bottom:364.666667pt;}
.y27_c00259{bottom:380.400000pt;}
.y26_c00259{bottom:396.400000pt;}
.y5d_c00259{bottom:400.266667pt;}
.y25_c00259{bottom:412.400000pt;}
.y5c_c00259{bottom:416.000000pt;}
.y24_c00259{bottom:428.133333pt;}
.y5b_c00259{bottom:431.733333pt;}
.y5a_c00259{bottom:447.733333pt;}
.y23_c00259{bottom:451.733333pt;}
.y59_c00259{bottom:463.733333pt;}
.y22_c00259{bottom:467.733333pt;}
.y58_c00259{bottom:479.333333pt;}
.y21_c00259{bottom:483.733333pt;}
.y57_c00259{bottom:494.933333pt;}
.y20_c00259{bottom:498.800000pt;}
.y56_c00259{bottom:510.933333pt;}
.y1f_c00259{bottom:514.533333pt;}
.y55_c00259{bottom:526.666667pt;}
.y1e_c00259{bottom:529.866667pt;}
.y54_c00259{bottom:542.400000pt;}
.y1d_c00259{bottom:549.733333pt;}
.y53_c00259{bottom:558.133333pt;}
.y1c_c00259{bottom:573.333333pt;}
.y52_c00259{bottom:573.733333pt;}
.y1b_c00259{bottom:589.066667pt;}
.y51_c00259{bottom:589.733333pt;}
.y1a_c00259{bottom:604.800000pt;}
.y50_c00259{bottom:605.466667pt;}
.y19_c00259{bottom:620.800000pt;}
.y4f_c00259{bottom:621.466667pt;}
.y4e_c00259{bottom:637.200000pt;}
.y18_c00259{bottom:640.533333pt;}
.y4d_c00259{bottom:653.200000pt;}
.y17_c00259{bottom:656.266667pt;}
.y4c_c00259{bottom:668.933333pt;}
.y16_c00259{bottom:672.266667pt;}
.y4b_c00259{bottom:684.933333pt;}
.y15_c00259{bottom:688.000000pt;}
.y4a_c00259{bottom:702.800000pt;}
.y14_c00259{bottom:707.733333pt;}
.y49_c00259{bottom:716.533333pt;}
.y13_c00259{bottom:723.466667pt;}
.y48_c00259{bottom:732.266667pt;}
.y12_c00259{bottom:739.200000pt;}
.y47_c00259{bottom:748.000000pt;}
.y11_c00259{bottom:758.266667pt;}
.y46_c00259{bottom:763.733333pt;}
.y10_c00259{bottom:774.266667pt;}
.y45_c00259{bottom:779.733333pt;}
.yf_c00259{bottom:790.000000pt;}
.y44_c00259{bottom:795.066667pt;}
.ye_c00259{bottom:805.733333pt;}
.y43_c00259{bottom:811.333333pt;}
.yd_c00259{bottom:825.466667pt;}
.y42_c00259{bottom:827.066667pt;}
.yc_c00259{bottom:841.200000pt;}
.y41_c00259{bottom:843.066667pt;}
.yb_c00259{bottom:856.933333pt;}
.y40_c00259{bottom:858.800000pt;}
.ya_c00259{bottom:872.666667pt;}
.y3f_c00259{bottom:874.533333pt;}
.y9_c00259{bottom:888.666667pt;}
.y3e_c00259{bottom:890.800000pt;}
.y8_c00259{bottom:904.000000pt;}
.y3d_c00259{bottom:906.133333pt;}
.y7_c00259{bottom:920.000000pt;}
.y3c_c00259{bottom:921.866667pt;}
.y6_c00259{bottom:936.000000pt;}
.y3b_c00259{bottom:937.600000pt;}
.y5_c00259{bottom:951.333333pt;}
.y3a_c00259{bottom:953.600000pt;}
.y4_c00259{bottom:967.333333pt;}
.y39_c00259{bottom:968.933333pt;}
.y3_c00259{bottom:983.066667pt;}
.y38_c00259{bottom:987.600000pt;}
.y2_c00259{bottom:999.066667pt;}
.y37_c00259{bottom:1000.666667pt;}
.y1_c00259{bottom:1022.133333pt;}
.h7_c00259{height:37.333333pt;}
.h6_c00259{height:48.000000pt;}
.h5_c00259{height:53.333333pt;}
.h4_c00259{height:58.666667pt;}
.h3_c00259{height:64.000000pt;}
.h2_c00259{height:69.333333pt;}
.h1_c00259{height:1128.000000pt;}
.h0_c00259{height:1128.319987pt;}
.w1_c00259{width:854.666667pt;}
.w0_c00259{width:854.720052pt;}
.x0_c00259{left:0.000000pt;}
.x8d_c00259{left:149.466667pt;}
.x5f_c00259{left:150.400000pt;}
.x1_c00259{left:152.000000pt;}
.x66_c00259{left:154.533333pt;}
.x5a_c00259{left:156.133333pt;}
.x3_c00259{left:159.733333pt;}
.x9a_c00259{left:161.866667pt;}
.x98_c00259{left:163.200000pt;}
.x6e_c00259{left:164.933333pt;}
.x5b_c00259{left:166.000000pt;}
.x14_c00259{left:167.466667pt;}
.x4_c00259{left:168.400000pt;}
.x9d_c00259{left:176.266667pt;}
.x7a_c00259{left:181.200000pt;}
.x39_c00259{left:182.533333pt;}
.x6b_c00259{left:187.866667pt;}
.x3e_c00259{left:188.800000pt;}
.x5c_c00259{left:190.266667pt;}
.x15_c00259{left:191.200000pt;}
.x48_c00259{left:192.133333pt;}
.x2b_c00259{left:193.466667pt;}
.x84_c00259{left:195.600000pt;}
.x1b_c00259{left:197.466667pt;}
.x87_c00259{left:200.400000pt;}
.x23_c00259{left:202.533333pt;}
.xc_c00259{left:205.066667pt;}
.x60_c00259{left:206.400000pt;}
.x70_c00259{left:207.333333pt;}
.x5_c00259{left:210.000000pt;}
.x35_c00259{left:211.466667pt;}
.x53_c00259{left:217.066667pt;}
.x4c_c00259{left:218.533333pt;}
.x74_c00259{left:219.866667pt;}
.x61_c00259{left:220.800000pt;}
.x49_c00259{left:222.800000pt;}
.x8f_c00259{left:224.666667pt;}
.x6_c00259{left:225.733333pt;}
.x56_c00259{left:227.200000pt;}
.x99_c00259{left:228.133333pt;}
.x3a_c00259{left:229.866667pt;}
.x67_c00259{left:231.333333pt;}
.xd_c00259{left:232.533333pt;}
.x16_c00259{left:234.133333pt;}
.x90_c00259{left:236.133333pt;}
.x1c_c00259{left:237.466667pt;}
.x62_c00259{left:238.400000pt;}
.x7_c00259{left:239.466667pt;}
.x4a_c00259{left:240.400000pt;}
.x17_c00259{left:242.400000pt;}
.x7b_c00259{left:243.333333pt;}
.x3f_c00259{left:244.800000pt;}
.x50_c00259{left:246.666667pt;}
.x6c_c00259{left:249.600000pt;}
.x57_c00259{left:250.933333pt;}
.x4d_c00259{left:252.400000pt;}
.x1d_c00259{left:253.466667pt;}
.x71_c00259{left:254.800000pt;}
.xa1_c00259{left:255.866667pt;}
.x43_c00259{left:259.333333pt;}
.x68_c00259{left:260.800000pt;}
.x31_c00259{left:262.933333pt;}
.x2c_c00259{left:263.866667pt;}
.x7e_c00259{left:268.133333pt;}
.x24_c00259{left:269.733333pt;}
.x63_c00259{left:270.666667pt;}
.x36_c00259{left:271.866667pt;}
.x54_c00259{left:272.800000pt;}
.x18_c00259{left:274.400000pt;}
.xa5_c00259{left:277.200000pt;}
.xe_c00259{left:278.266667pt;}
.x64_c00259{left:280.933333pt;}
.x40_c00259{left:282.266667pt;}
.x55_c00259{left:283.466667pt;}
.x1e_c00259{left:284.800000pt;}
.x4b_c00259{left:287.733333pt;}
.x75_c00259{left:288.933333pt;}
.x9e_c00259{left:291.600000pt;}
.x58_c00259{left:292.800000pt;}
.x2d_c00259{left:294.533333pt;}
.x32_c00259{left:296.266667pt;}
.x93_c00259{left:297.200000pt;}
.x44_c00259{left:299.066667pt;}
.x25_c00259{left:300.400000pt;}
.xf_c00259{left:302.533333pt;}
.x9f_c00259{left:304.133333pt;}
.x8b_c00259{left:306.000000pt;}
.x76_c00259{left:307.200000pt;}
.xa6_c00259{left:308.533333pt;}
.x41_c00259{left:310.800000pt;}
.x8_c00259{left:312.133333pt;}
.x26_c00259{left:313.466667pt;}
.x94_c00259{left:314.800000pt;}
.x51_c00259{left:315.866667pt;}
.x85_c00259{left:317.866667pt;}
.x88_c00259{left:319.333333pt;}
.x92_c00259{left:321.333333pt;}
.x37_c00259{left:322.800000pt;}
.x77_c00259{left:324.533333pt;}
.x45_c00259{left:325.600000pt;}
.x7f_c00259{left:327.066667pt;}
.x1f_c00259{left:328.933333pt;}
.x10_c00259{left:331.333333pt;}
.xa0_c00259{left:333.200000pt;}
.x86_c00259{left:334.133333pt;}
.x4e_c00259{left:336.266667pt;}
.x5d_c00259{left:338.400000pt;}
.x89_c00259{left:341.066667pt;}
.x9_c00259{left:342.266667pt;}
.x7c_c00259{left:344.800000pt;}
.x72_c00259{left:345.733333pt;}
.xa3_c00259{left:346.666667pt;}
.x6f_c00259{left:348.400000pt;}
.x3b_c00259{left:350.133333pt;}
.x96_c00259{left:351.066667pt;}
.x2e_c00259{left:352.133333pt;}
.x7d_c00259{left:353.466667pt;}
.x20_c00259{left:355.200000pt;}
.x8a_c00259{left:356.133333pt;}
.x19_c00259{left:358.133333pt;}
.xa_c00259{left:360.533333pt;}
.x73_c00259{left:361.466667pt;}
.x27_c00259{left:363.066667pt;}
.x2_c00259{left:364.533333pt;}
.x46_c00259{left:365.866667pt;}
.xa2_c00259{left:367.600000pt;}
.x78_c00259{left:368.666667pt;}
.x69_c00259{left:370.933333pt;}
.x28_c00259{left:372.000000pt;}
.x8c_c00259{left:373.200000pt;}
.x52_c00259{left:376.400000pt;}
.x11_c00259{left:378.000000pt;}
.x2f_c00259{left:379.066667pt;}
.x47_c00259{left:382.800000pt;}
.x9b_c00259{left:384.533333pt;}
.x21_c00259{left:386.933333pt;}
.x81_c00259{left:388.266667pt;}
.x33_c00259{left:390.400000pt;}
.x1a_c00259{left:391.733333pt;}
.x80_c00259{left:397.466667pt;}
.x3c_c00259{left:398.400000pt;}
.x6a_c00259{left:401.066667pt;}
.x91_c00259{left:402.400000pt;}
.x38_c00259{left:403.333333pt;}
.x12_c00259{left:404.266667pt;}
.x29_c00259{left:406.266667pt;}
.xb_c00259{left:407.200000pt;}
.xa4_c00259{left:409.066667pt;}
.x82_c00259{left:410.400000pt;}
.x34_c00259{left:411.466667pt;}
.x6d_c00259{left:412.400000pt;}
.x8e_c00259{left:414.400000pt;}
.x3d_c00259{left:415.333333pt;}
.x22_c00259{left:417.066667pt;}
.x79_c00259{left:419.866667pt;}
.x42_c00259{left:421.200000pt;}
.x59_c00259{left:422.400000pt;}
.x30_c00259{left:423.600000pt;}
.x2a_c00259{left:424.533333pt;}
.x95_c00259{left:426.133333pt;}
.xa7_c00259{left:428.133333pt;}
.x83_c00259{left:429.600000pt;}
.x65_c00259{left:431.600000pt;}
.x97_c00259{left:434.533333pt;}
.x9c_c00259{left:435.733333pt;}
.x13_c00259{left:436.933333pt;}
.x5e_c00259{left:438.933333pt;}
.x4f_c00259{left:440.000000pt;}
.x14c_c00259{left:464.266667pt;}
.x13c_c00259{left:465.200000pt;}
.xb6_c00259{left:468.133333pt;}
.x122_c00259{left:471.066667pt;}
.x140_c00259{left:477.466667pt;}
.x12f_c00259{left:478.666667pt;}
.xb0_c00259{left:480.266667pt;}
.x127_c00259{left:481.333333pt;}
.x121_c00259{left:482.266667pt;}
.xba_c00259{left:483.466667pt;}
.x14d_c00259{left:489.200000pt;}
.x13d_c00259{left:490.800000pt;}
.xa8_c00259{left:492.533333pt;}
.x145_c00259{left:493.600000pt;}
.x149_c00259{left:495.066667pt;}
.x14f_c00259{left:498.533333pt;}
.x133_c00259{left:500.400000pt;}
.xbb_c00259{left:502.933333pt;}
.xee_c00259{left:504.000000pt;}
.x11b_c00259{left:505.066667pt;}
.xc2_c00259{left:508.666667pt;}
.x102_c00259{left:510.666667pt;}
.x10b_c00259{left:512.400000pt;}
.xf4_c00259{left:514.000000pt;}
.x113_c00259{left:515.200000pt;}
.xd5_c00259{left:516.800000pt;}
.xef_c00259{left:518.133333pt;}
.x130_c00259{left:519.333333pt;}
.x148_c00259{left:520.800000pt;}
.xec_c00259{left:521.733333pt;}
.x106_c00259{left:522.666667pt;}
.x10e_c00259{left:524.933333pt;}
.xe3_c00259{left:527.733333pt;}
.xfd_c00259{left:529.200000pt;}
.x150_c00259{left:530.266667pt;}
.xcf_c00259{left:531.600000pt;}
.x138_c00259{left:533.466667pt;}
.xdd_c00259{left:534.533333pt;}
.xd6_c00259{left:535.733333pt;}
.xb1_c00259{left:537.600000pt;}
.xe0_c00259{left:538.800000pt;}
.x134_c00259{left:541.333333pt;}
.x137_c00259{left:542.666667pt;}
.x114_c00259{left:543.733333pt;}
.x11a_c00259{left:544.800000pt;}
.xca_c00259{left:546.266667pt;}
.xb7_c00259{left:547.866667pt;}
.xf0_c00259{left:549.466667pt;}
.xf5_c00259{left:551.466667pt;}
.xe6_c00259{left:552.666667pt;}
.xbc_c00259{left:555.733333pt;}
.xda_c00259{left:557.600000pt;}
.x11c_c00259{left:558.533333pt;}
.x10f_c00259{left:559.866667pt;}
.x103_c00259{left:561.600000pt;}
.xf8_c00259{left:563.866667pt;}
.x12b_c00259{left:564.800000pt;}
.x153_c00259{left:566.666667pt;}
.xc3_c00259{left:567.600000pt;}
.xed_c00259{left:569.333333pt;}
.x142_c00259{left:570.666667pt;}
.xfe_c00259{left:572.000000pt;}
.xa9_c00259{left:573.200000pt;}
.x14a_c00259{left:574.400000pt;}
.x13e_c00259{left:576.000000pt;}
.xc4_c00259{left:576.933333pt;}
.xb2_c00259{left:578.266667pt;}
.xd0_c00259{left:579.866667pt;}
.xd7_c00259{left:581.866667pt;}
.x14e_c00259{left:585.466667pt;}
.x10c_c00259{left:586.400000pt;}
.x107_c00259{left:588.000000pt;}
.xaa_c00259{left:590.133333pt;}
.x128_c00259{left:591.733333pt;}
.x104_c00259{left:596.533333pt;}
.xbd_c00259{left:597.600000pt;}
.x110_c00259{left:598.933333pt;}
.xde_c00259{left:599.866667pt;}
.xff_c00259{left:602.666667pt;}
.xc5_c00259{left:604.400000pt;}
.xe7_c00259{left:605.733333pt;}
.x151_c00259{left:608.133333pt;}
.x115_c00259{left:609.333333pt;}
.xf9_c00259{left:611.600000pt;}
.xbe_c00259{left:613.333333pt;}
.x123_c00259{left:616.000000pt;}
.x11e_c00259{left:617.066667pt;}
.x139_c00259{left:619.466667pt;}
.xd1_c00259{left:620.800000pt;}
.xe8_c00259{left:622.400000pt;}
.xcb_c00259{left:623.733333pt;}
.xf1_c00259{left:624.933333pt;}
.x111_c00259{left:626.133333pt;}
.x14b_c00259{left:627.066667pt;}
.x12c_c00259{left:628.133333pt;}
.xab_c00259{left:629.866667pt;}
.x141_c00259{left:631.066667pt;}
.x129_c00259{left:632.933333pt;}
.xe1_c00259{left:633.866667pt;}
.x154_c00259{left:636.400000pt;}
.xf6_c00259{left:638.133333pt;}
.x124_c00259{left:639.333333pt;}
.x116_c00259{left:642.666667pt;}
.xb8_c00259{left:644.400000pt;}
.x11d_c00259{left:645.466667pt;}
.x126_c00259{left:646.533333pt;}
.xd2_c00259{left:648.933333pt;}
.xc6_c00259{left:649.866667pt;}
.xf2_c00259{left:651.200000pt;}
.xfa_c00259{left:652.266667pt;}
.xd8_c00259{left:654.800000pt;}
.x100_c00259{left:656.800000pt;}
.x146_c00259{left:658.000000pt;}
.x11f_c00259{left:659.866667pt;}
.x13a_c00259{left:660.800000pt;}
.xd3_c00259{left:662.666667pt;}
.x155_c00259{left:663.866667pt;}
.xbf_c00259{left:664.800000pt;}
.xe9_c00259{left:666.266667pt;}
.x125_c00259{left:667.866667pt;}
.x108_c00259{left:670.133333pt;}
.xcc_c00259{left:672.400000pt;}
.xac_c00259{left:675.333333pt;}
.x147_c00259{left:676.933333pt;}
.xe2_c00259{left:678.400000pt;}
.xf7_c00259{left:680.666667pt;}
.x12a_c00259{left:683.200000pt;}
.x117_c00259{left:684.266667pt;}
.xe4_c00259{left:685.466667pt;}
.xc7_c00259{left:688.000000pt;}
.x152_c00259{left:689.866667pt;}
.x120_c00259{left:690.933333pt;}
.xdf_c00259{left:692.000000pt;}
.xfb_c00259{left:692.933333pt;}
.x135_c00259{left:694.133333pt;}
.xad_c00259{left:695.866667pt;}
.xea_c00259{left:699.866667pt;}
.xdb_c00259{left:701.866667pt;}
.x112_c00259{left:702.933333pt;}
.xcd_c00259{left:704.133333pt;}
.xb3_c00259{left:705.333333pt;}
.xb9_c00259{left:706.800000pt;}
.x101_c00259{left:707.733333pt;}
.x118_c00259{left:709.600000pt;}
.x143_c00259{left:710.533333pt;}
.xc0_c00259{left:711.466667pt;}
.x131_c00259{left:712.533333pt;}
.xd4_c00259{left:714.133333pt;}
.x12d_c00259{left:715.066667pt;}
.x10d_c00259{left:716.533333pt;}
.xe5_c00259{left:717.733333pt;}
.xc8_c00259{left:720.000000pt;}
.xae_c00259{left:723.066667pt;}
.x157_c00259{left:724.400000pt;}
.xc1_c00259{left:725.600000pt;}
.x119_c00259{left:727.466667pt;}
.xb4_c00259{left:729.333333pt;}
.x105_c00259{left:730.933333pt;}
.xd9_c00259{left:733.200000pt;}
.x156_c00259{left:734.800000pt;}
.xc9_c00259{left:735.733333pt;}
.xce_c00259{left:737.466667pt;}
.x109_c00259{left:739.200000pt;}
.x144_c00259{left:740.266667pt;}
.xeb_c00259{left:742.533333pt;}
.x136_c00259{left:743.733333pt;}
.xfc_c00259{left:749.600000pt;}
.xf3_c00259{left:750.800000pt;}
.x13f_c00259{left:751.733333pt;}
.xaf_c00259{left:753.200000pt;}
.xb5_c00259{left:754.666667pt;}
.xdc_c00259{left:756.266667pt;}
.x10a_c00259{left:758.133333pt;}
.x132_c00259{left:760.800000pt;}
.x13b_c00259{left:761.866667pt;}
.x12e_c00259{left:771.733333pt;}
}





/* 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_c00260 {
    display:none;
  }
  .loading-indicator_c00260.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00260 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_c00260 { 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_c00260" -> "#page-container .classname_c00260")
 */
.pf_c00260 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00260 { /* 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_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00260 { /* 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_c00260 { /* 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_c00260 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00260 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00260 {overflow:visible;}
  }
}
.c_c00260 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00260 { /* 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_c00260:after { /* webkit #35443 */
  content: '';
}
.t_c00260:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00260 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 */
}
.__c00260 { /* 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_c00260 { /* info for Javascript */
  display:none;
}
.l_c00260 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00260 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00260 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00260: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_c00260 {
    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_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00260.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_c00260 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00260;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.000000;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;}
.md0_c00260{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.med_c00260{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m118_c00260{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.md4_c00260{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m138_c00260{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00260{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m24_c00260{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00260{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.m79_c00260{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00260{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00260{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m116_c00260{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00260{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00260{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00260{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mab_c00260{transform:matrix(0.097750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00260{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m108_c00260{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m69_c00260{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m57_c00260{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00260{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m76_c00260{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m103_c00260{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00260{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00260{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00260{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00260{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m84_c00260{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md9_c00260{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m54_c00260{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00260{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00260{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00260{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m109_c00260{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00260{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00260{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00260{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m19_c00260{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m27_c00260{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00260{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00260{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m136_c00260{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00260{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me8_c00260{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00260{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7_c00260{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00260{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00260{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m12_c00260{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00260{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m111_c00260{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.me3_c00260{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m51_c00260{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.me6_c00260{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00260{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m124_c00260{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00260{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m130_c00260{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.maa_c00260{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m120_c00260{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00260{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m15_c00260{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00260{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma_c00260{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m58_c00260{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00260{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m80_c00260{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00260{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00260{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00260{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00260{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m86_c00260{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m119_c00260{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00260{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m123_c00260{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m97_c00260{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00260{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m98_c00260{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mde_c00260{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m67_c00260{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m132_c00260{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m85_c00260{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m128_c00260{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m63_c00260{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m122_c00260{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00260{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00260{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00260{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m39_c00260{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00260{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me0_c00260{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mce_c00260{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00260{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m34_c00260{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m53_c00260{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me4_c00260{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m83_c00260{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m18_c00260{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00260{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00260{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00260{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00260{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m112_c00260{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mba_c00260{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mea_c00260{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00260{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m106_c00260{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m32_c00260{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m43_c00260{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m135_c00260{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m45_c00260{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m59_c00260{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m50_c00260{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00260{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00260{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m88_c00260{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m41_c00260{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m31_c00260{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m13_c00260{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00260{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc_c00260{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m42_c00260{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00260{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00260{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00260{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00260{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m21_c00260{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m28_c00260{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6_c00260{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00260{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m72_c00260{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m96_c00260{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m11_c00260{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m87_c00260{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00260{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00260{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m78_c00260{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00260{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m68_c00260{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m117_c00260{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m56_c00260{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00260{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00260{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00260{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00260{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m44_c00260{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m110_c00260{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00260{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.me2_c00260{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00260{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m115_c00260{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m22_c00260{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb_c00260{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m74_c00260{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00260{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m62_c00260{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m64_c00260{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00260{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00260{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00260{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m20_c00260{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m47_c00260{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md5_c00260{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8_c00260{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00260{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00260{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5_c00260{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00260{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m40_c00260{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00260{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00260{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m114_c00260{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00260{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m36_c00260{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00260{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00260{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m55_c00260{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md6_c00260{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mec_c00260{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00260{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m17_c00260{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m70_c00260{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m26_c00260{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00260{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mad_c00260{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m37_c00260{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m105_c00260{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00260{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m99_c00260{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m23_c00260{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mef_c00260{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00260{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.meb_c00260{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00260{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m129_c00260{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00260{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00260{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00260{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m90_c00260{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me5_c00260{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m10_c00260{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00260{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00260{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00260{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md1_c00260{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m60_c00260{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4_c00260{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m16_c00260{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m46_c00260{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00260{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m126_c00260{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m49_c00260{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m73_c00260{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00260{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m48_c00260{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m75_c00260{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00260{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m77_c00260{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m65_c00260{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00260{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00260{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m30_c00260{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m25_c00260{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00260{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00260{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m93_c00260{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00260{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9_c00260{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mac_c00260{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00260{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00260{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mff_c00260{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mda_c00260{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00260{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m14_c00260{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m92_c00260{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m82_c00260{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mee_c00260{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.me_c00260{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m91_c00260{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00260{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00260{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md_c00260{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00260{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00260{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m137_c00260{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m113_c00260{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md7_c00260{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m66_c00260{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00260{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m33_c00260{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.maf_c00260{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m61_c00260{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00260{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m94_c00260{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00260{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m101_c00260{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00260{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m71_c00260{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m100_c00260{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00260{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me9_c00260{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m133_c00260{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m125_c00260{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00260{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00260{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);}
.m38_c00260{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md8_c00260{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mae_c00260{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00260{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00260{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00260{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m107_c00260{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00260{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m121_c00260{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00260{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md2_c00260{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mca_c00260{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m95_c00260{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m104_c00260{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00260{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.md3_c00260{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00260{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m29_c00260{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00260{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00260{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m127_c00260{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00260{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00260{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m52_c00260{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me7_c00260{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00260{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00260{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00260{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m81_c00260{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m134_c00260{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00260{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00260{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m35_c00260{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m89_c00260{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00260{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00260{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m131_c00260{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.me1_c00260{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00260{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00260{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00260{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m102_c00260{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00260{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls0_c00260{letter-spacing:0.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{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__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00260{word-spacing:-9.722222px;}
.ws4_c00260{word-spacing:-7.894737px;}
.ws7_c00260{word-spacing:-5.894879px;}
.ws8_c00260{word-spacing:0.000000px;}
.ws0_c00260{word-spacing:2.494297px;}
.ws1_c00260{word-spacing:6.527778px;}
.ws2_c00260{word-spacing:14.933177px;}
.ws5_c00260{word-spacing:28.426230px;}
.ws6_c00260{word-spacing:35.834862px;}
.fc0_c00260{color:transparent;}
.fs5_c00260{font-size:30.000000px;}
.fs6_c00260{font-size:48.000000px;}
.fs4_c00260{font-size:54.000000px;}
.fs3_c00260{font-size:60.000000px;}
.fs2_c00260{font-size:66.000000px;}
.fs1_c00260{font-size:72.000000px;}
.fs0_c00260{font-size:78.000000px;}
.y0_c00260{bottom:0.000000px;}
.y3d_c00260{bottom:194.100000px;}
.y3c_c00260{bottom:197.850000px;}
.y6d_c00260{bottom:199.500000px;}
.y3b_c00260{bottom:213.000000px;}
.y6c_c00260{bottom:217.800000px;}
.y3a_c00260{bottom:227.400000px;}
.y6b_c00260{bottom:240.150000px;}
.y39_c00260{bottom:241.800000px;}
.y38_c00260{bottom:255.900000px;}
.y6a_c00260{bottom:258.450000px;}
.y37_c00260{bottom:270.750000px;}
.y36_c00260{bottom:284.700000px;}
.y69_c00260{bottom:293.100000px;}
.y35_c00260{bottom:299.100000px;}
.y34_c00260{bottom:313.500000px;}
.y33_c00260{bottom:326.850000px;}
.y68_c00260{bottom:328.500000px;}
.y32_c00260{bottom:342.000000px;}
.y67_c00260{bottom:346.200000px;}
.y31_c00260{bottom:357.900000px;}
.y66_c00260{bottom:364.200000px;}
.y30_c00260{bottom:371.550000px;}
.y65_c00260{bottom:381.900000px;}
.y2f_c00260{bottom:384.900000px;}
.y64_c00260{bottom:399.150000px;}
.y2e_c00260{bottom:399.300000px;}
.y2d_c00260{bottom:414.000000px;}
.y63_c00260{bottom:417.150000px;}
.y2c_c00260{bottom:428.400000px;}
.y62_c00260{bottom:435.150000px;}
.y2b_c00260{bottom:441.600000px;}
.y61_c00260{bottom:452.850000px;}
.y2a_c00260{bottom:456.300000px;}
.y60_c00260{bottom:470.550000px;}
.y29_c00260{bottom:470.700000px;}
.y28_c00260{bottom:485.100000px;}
.y5f_c00260{bottom:492.600000px;}
.y27_c00260{bottom:499.200000px;}
.y5e_c00260{bottom:510.600000px;}
.y26_c00260{bottom:513.600000px;}
.y25_c00260{bottom:528.000000px;}
.y5d_c00260{bottom:528.300000px;}
.y24_c00260{bottom:542.400000px;}
.y5c_c00260{bottom:546.300000px;}
.y23_c00260{bottom:556.800000px;}
.y5b_c00260{bottom:564.000000px;}
.y22_c00260{bottom:570.900000px;}
.y5a_c00260{bottom:582.000000px;}
.y21_c00260{bottom:585.300000px;}
.y20_c00260{bottom:599.400000px;}
.y59_c00260{bottom:599.700000px;}
.y1f_c00260{bottom:613.800000px;}
.y58_c00260{bottom:617.400000px;}
.y1e_c00260{bottom:628.200000px;}
.y1d_c00260{bottom:642.300000px;}
.y57_c00260{bottom:644.100000px;}
.y1c_c00260{bottom:656.700000px;}
.y56_c00260{bottom:669.600000px;}
.y1b_c00260{bottom:670.650000px;}
.y1a_c00260{bottom:685.050000px;}
.y55_c00260{bottom:688.350000px;}
.y19_c00260{bottom:699.450000px;}
.y54_c00260{bottom:706.050000px;}
.y53_c00260{bottom:724.050000px;}
.y52_c00260{bottom:741.300000px;}
.y18_c00260{bottom:750.600000px;}
.y51_c00260{bottom:767.700000px;}
.y17_c00260{bottom:768.150000px;}
.y50_c00260{bottom:785.400000px;}
.y16_c00260{bottom:785.850000px;}
.y4f_c00260{bottom:803.400000px;}
.y15_c00260{bottom:803.550000px;}
.y4e_c00260{bottom:821.100000px;}
.y14_c00260{bottom:821.550000px;}
.y4d_c00260{bottom:838.800000px;}
.y13_c00260{bottom:839.250000px;}
.y12_c00260{bottom:856.950000px;}
.y4c_c00260{bottom:857.550000px;}
.y11_c00260{bottom:874.650000px;}
.y4b_c00260{bottom:878.400000px;}
.y10_c00260{bottom:892.650000px;}
.y4a_c00260{bottom:896.400000px;}
.yf_c00260{bottom:910.650000px;}
.y49_c00260{bottom:922.500000px;}
.ye_c00260{bottom:927.900000px;}
.y48_c00260{bottom:940.800000px;}
.yd_c00260{bottom:945.900000px;}
.y47_c00260{bottom:958.050000px;}
.yc_c00260{bottom:963.600000px;}
.y46_c00260{bottom:977.850000px;}
.yb_c00260{bottom:981.300000px;}
.y45_c00260{bottom:993.300000px;}
.ya_c00260{bottom:999.000000px;}
.y44_c00260{bottom:1015.350000px;}
.y9_c00260{bottom:1016.700000px;}
.y43_c00260{bottom:1033.350000px;}
.y8_c00260{bottom:1034.700000px;}
.y42_c00260{bottom:1051.050000px;}
.y7_c00260{bottom:1052.250000px;}
.y41_c00260{bottom:1069.050000px;}
.y6_c00260{bottom:1070.250000px;}
.y40_c00260{bottom:1086.750000px;}
.y5_c00260{bottom:1087.500000px;}
.y3f_c00260{bottom:1104.450000px;}
.y4_c00260{bottom:1105.500000px;}
.y3e_c00260{bottom:1122.150000px;}
.y3_c00260{bottom:1123.200000px;}
.y2_c00260{bottom:1148.700000px;}
.y1_c00260{bottom:1149.450000px;}
.h7_c00260{height:30.000000px;}
.h8_c00260{height:48.000000px;}
.h6_c00260{height:54.000000px;}
.h5_c00260{height:60.000000px;}
.h4_c00260{height:66.000000px;}
.h3_c00260{height:72.000000px;}
.h2_c00260{height:78.000000px;}
.h1_c00260{height:1275.750000px;}
.h0_c00260{height:1275.839997px;}
.w1_c00260{width:961.500000px;}
.w0_c00260{width:961.560058px;}
.x0_c00260{left:0.000000px;}
.xb6_c00260{left:82.500000px;}
.x69_c00260{left:89.250000px;}
.x78_c00260{left:90.750000px;}
.xa5_c00260{left:91.800000px;}
.x3_c00260{left:94.650000px;}
.x29_c00260{left:97.500000px;}
.x75_c00260{left:104.400000px;}
.xb2_c00260{left:106.200000px;}
.x53_c00260{left:108.750000px;}
.x2a_c00260{left:110.100000px;}
.xb_c00260{left:111.750000px;}
.x6a_c00260{left:117.000000px;}
.xb1_c00260{left:118.200000px;}
.xba_c00260{left:119.850000px;}
.xa6_c00260{left:123.450000px;}
.x14_c00260{left:125.250000px;}
.x72_c00260{left:126.900000px;}
.x79_c00260{left:128.850000px;}
.x9b_c00260{left:130.350000px;}
.x3a_c00260{left:131.550000px;}
.x98_c00260{left:133.350000px;}
.xae_c00260{left:135.300000px;}
.x73_c00260{left:136.650000px;}
.xa3_c00260{left:138.600000px;}
.x48_c00260{left:139.800000px;}
.x9f_c00260{left:141.450000px;}
.x1c_c00260{left:143.250000px;}
.x62_c00260{left:145.800000px;}
.xc_c00260{left:148.500000px;}
.x44_c00260{left:150.150000px;}
.x3f_c00260{left:152.100000px;}
.x6e_c00260{left:153.150000px;}
.x4_c00260{left:156.150000px;}
.x8a_c00260{left:157.200000px;}
.xa0_c00260{left:158.250000px;}
.x1d_c00260{left:159.450000px;}
.x7c_c00260{left:161.100000px;}
.x91_c00260{left:162.750000px;}
.x5b_c00260{left:164.550000px;}
.x15_c00260{left:165.900000px;}
.xd_c00260{left:168.000000px;}
.x4d_c00260{left:169.650000px;}
.x9c_c00260{left:170.700000px;}
.x23_c00260{left:172.500000px;}
.x81_c00260{left:173.550000px;}
.x3b_c00260{left:176.850000px;}
.x35_c00260{left:181.350000px;}
.x5e_c00260{left:183.000000px;}
.x50_c00260{left:184.350000px;}
.x54_c00260{left:185.850000px;}
.xa7_c00260{left:187.950000px;}
.x16_c00260{left:189.000000px;}
.x1e_c00260{left:190.800000px;}
.xaf_c00260{left:192.150000px;}
.x82_c00260{left:193.650000px;}
.x30_c00260{left:194.700000px;}
.x59_c00260{left:196.500000px;}
.x55_c00260{left:198.450000px;}
.x24_c00260{left:199.800000px;}
.xe_c00260{left:201.450000px;}
.x7e_c00260{left:202.650000px;}
.xb5_c00260{left:203.700000px;}
.x6f_c00260{left:205.650000px;}
.xb7_c00260{left:207.450000px;}
.x76_c00260{left:209.250000px;}
.xa2_c00260{left:210.900000px;}
.x66_c00260{left:212.250000px;}
.x92_c00260{left:213.450000px;}
.x74_c00260{left:215.550000px;}
.x40_c00260{left:217.200000px;}
.x67_c00260{left:218.250000px;}
.x45_c00260{left:220.050000px;}
.x2b_c00260{left:222.450000px;}
.x65_c00260{left:223.950000px;}
.xf_c00260{left:226.350000px;}
.x5_c00260{left:227.400000px;}
.xa8_c00260{left:228.600000px;}
.x49_c00260{left:229.800000px;}
.x6b_c00260{left:231.900000px;}
.x5f_c00260{left:233.400000px;}
.x2c_c00260{left:237.150000px;}
.x7d_c00260{left:241.800000px;}
.x17_c00260{left:243.300000px;}
.x93_c00260{left:245.850000px;}
.x4e_c00260{left:247.500000px;}
.x7a_c00260{left:249.000000px;}
.x6_c00260{left:250.800000px;}
.x63_c00260{left:252.300000px;}
.xab_c00260{left:253.800000px;}
.x8c_c00260{left:254.850000px;}
.x70_c00260{left:256.500000px;}
.x60_c00260{left:257.850000px;}
.x51_c00260{left:259.200000px;}
.x9d_c00260{left:260.700000px;}
.x3c_c00260{left:261.750000px;}
.x4a_c00260{left:262.950000px;}
.x36_c00260{left:264.450000px;}
.x8d_c00260{left:265.650000px;}
.x10_c00260{left:268.050000px;}
.xb0_c00260{left:269.400000px;}
.x56_c00260{left:271.200000px;}
.x18_c00260{left:273.150000px;}
.x83_c00260{left:276.150000px;}
.xbb_c00260{left:277.200000px;}
.x7f_c00260{left:278.250000px;}
.x6c_c00260{left:279.750000px;}
.x31_c00260{left:281.850000px;}
.x41_c00260{left:284.100000px;}
.x7_c00260{left:286.050000px;}
.x2d_c00260{left:287.850000px;}
.x37_c00260{left:289.950000px;}
.x4b_c00260{left:293.550000px;}
.x99_c00260{left:295.350000px;}
.x94_c00260{left:296.700000px;}
.x8e_c00260{left:297.750000px;}
.x84_c00260{left:300.600000px;}
.x25_c00260{left:301.650000px;}
.x1f_c00260{left:303.150000px;}
.x5c_c00260{left:304.650000px;}
.x9e_c00260{left:306.750000px;}
.xa9_c00260{left:307.800000px;}
.x77_c00260{left:309.000000px;}
.x46_c00260{left:310.800000px;}
.x3d_c00260{left:311.850000px;}
.x19_c00260{left:313.050000px;}
.x4f_c00260{left:314.700000px;}
.x85_c00260{left:317.850000px;}
.x32_c00260{left:319.650000px;}
.x7b_c00260{left:321.300000px;}
.x3e_c00260{left:323.400000px;}
.x20_c00260{left:324.750000px;}
.x11_c00260{left:327.450000px;}
.x5a_c00260{left:328.650000px;}
.x26_c00260{left:331.200000px;}
.xac_c00260{left:332.250000px;}
.xbc_c00260{left:334.050000px;}
.x1_c00260{left:335.850000px;}
.x8_c00260{left:337.500000px;}
.xb8_c00260{left:338.850000px;}
.x8b_c00260{left:340.650000px;}
.x42_c00260{left:342.150000px;}
.x8f_c00260{left:343.800000px;}
.xa1_c00260{left:345.600000px;}
.x64_c00260{left:346.650000px;}
.x12_c00260{left:348.300000px;}
.x33_c00260{left:349.950000px;}
.x95_c00260{left:352.050000px;}
.x38_c00260{left:354.000000px;}
.x27_c00260{left:355.650000px;}
.x1a_c00260{left:357.000000px;}
.x80_c00260{left:358.200000px;}
.x96_c00260{left:359.550000px;}
.x21_c00260{left:361.500000px;}
.x86_c00260{left:362.550000px;}
.x9_c00260{left:363.750000px;}
.x47_c00260{left:366.150000px;}
.x57_c00260{left:368.700000px;}
.x61_c00260{left:370.500000px;}
.x4c_c00260{left:371.700000px;}
.xa4_c00260{left:373.650000px;}
.x97_c00260{left:375.750000px;}
.x5d_c00260{left:377.700000px;}
.x1b_c00260{left:379.350000px;}
.x2e_c00260{left:381.900000px;}
.x9a_c00260{left:383.100000px;}
.x87_c00260{left:384.900000px;}
.x22_c00260{left:386.700000px;}
.x6d_c00260{left:387.750000px;}
.x89_c00260{left:389.100000px;}
.xaa_c00260{left:390.300000px;}
.x13_c00260{left:392.250000px;}
.xa_c00260{left:393.600000px;}
.x58_c00260{left:395.700000px;}
.x90_c00260{left:397.800000px;}
.xad_c00260{left:398.850000px;}
.x43_c00260{left:400.050000px;}
.xb3_c00260{left:401.100000px;}
.x2f_c00260{left:403.200000px;}
.x28_c00260{left:407.550000px;}
.x39_c00260{left:409.800000px;}
.x52_c00260{left:411.150000px;}
.x34_c00260{left:413.250000px;}
.x71_c00260{left:415.650000px;}
.xb9_c00260{left:417.450000px;}
.x88_c00260{left:421.950000px;}
.x68_c00260{left:423.150000px;}
.xbd_c00260{left:424.200000px;}
.xb4_c00260{left:437.850000px;}
.xec_c00260{left:448.500000px;}
.x106_c00260{left:449.700000px;}
.x148_c00260{left:464.400000px;}
.xf9_c00260{left:465.450000px;}
.xbe_c00260{left:466.500000px;}
.x11e_c00260{left:468.750000px;}
.x154_c00260{left:469.800000px;}
.x14f_c00260{left:473.100000px;}
.x138_c00260{left:477.300000px;}
.x155_c00260{left:480.900000px;}
.x13c_c00260{left:482.850000px;}
.x10b_c00260{left:484.500000px;}
.xe8_c00260{left:486.450000px;}
.x140_c00260{left:487.500000px;}
.x107_c00260{left:490.800000px;}
.x117_c00260{left:493.800000px;}
.xc6_c00260{left:495.450000px;}
.xdb_c00260{left:496.800000px;}
.xcd_c00260{left:498.900000px;}
.x149_c00260{left:501.150000px;}
.xf0_c00260{left:503.250000px;}
.x122_c00260{left:506.100000px;}
.xf5_c00260{left:507.150000px;}
.x118_c00260{left:508.200000px;}
.x11f_c00260{left:509.400000px;}
.xbf_c00260{left:510.450000px;}
.xfa_c00260{left:512.250000px;}
.x10f_c00260{left:513.750000px;}
.x15c_c00260{left:514.950000px;}
.xe2_c00260{left:516.450000px;}
.xed_c00260{left:517.650000px;}
.xc7_c00260{left:519.600000px;}
.xce_c00260{left:521.550000px;}
.x13e_c00260{left:523.200000px;}
.xf1_c00260{left:524.850000px;}
.x14b_c00260{left:526.350000px;}
.x157_c00260{left:527.850000px;}
.xd4_c00260{left:531.000000px;}
.x139_c00260{left:532.800000px;}
.x101_c00260{left:534.000000px;}
.x150_c00260{left:537.150000px;}
.xe3_c00260{left:538.800000px;}
.xc8_c00260{left:541.200000px;}
.x102_c00260{left:543.750000px;}
.x10c_c00260{left:545.400000px;}
.xc0_c00260{left:547.950000px;}
.xcf_c00260{left:549.600000px;}
.x142_c00260{left:550.650000px;}
.x120_c00260{left:551.850000px;}
.x15d_c00260{left:553.350000px;}
.xe9_c00260{left:554.550000px;}
.x119_c00260{left:555.750000px;}
.x129_c00260{left:558.000000px;}
.x110_c00260{left:560.550000px;}
.x123_c00260{left:562.350000px;}
.xd5_c00260{left:564.450000px;}
.x145_c00260{left:567.300000px;}
.x133_c00260{left:569.100000px;}
.x10d_c00260{left:570.600000px;}
.xfb_c00260{left:572.400000px;}
.xdc_c00260{left:574.650000px;}
.x12a_c00260{left:576.300000px;}
.x15e_c00260{left:578.850000px;}
.x156_c00260{left:581.850000px;}
.xd0_c00260{left:585.300000px;}
.x143_c00260{left:587.700000px;}
.xea_c00260{left:588.750000px;}
.xdd_c00260{left:592.650000px;}
.x125_c00260{left:593.850000px;}
.xe4_c00260{left:594.900000px;}
.x151_c00260{left:597.600000px;}
.x121_c00260{left:598.650000px;}
.x11a_c00260{left:601.200000px;}
.x12b_c00260{left:602.550000px;}
.xf6_c00260{left:603.600000px;}
.x10e_c00260{left:605.550000px;}
.xc1_c00260{left:606.600000px;}
.x108_c00260{left:609.600000px;}
.x12e_c00260{left:612.000000px;}
.xc9_c00260{left:613.950000px;}
.x111_c00260{left:615.600000px;}
.x114_c00260{left:617.850000px;}
.x158_c00260{left:620.100000px;}
.x144_c00260{left:622.200000px;}
.x11b_c00260{left:625.350000px;}
.x134_c00260{left:626.400000px;}
.x13d_c00260{left:627.450000px;}
.xf2_c00260{left:629.550000px;}
.x152_c00260{left:631.050000px;}
.x146_c00260{left:632.850000px;}
.xd6_c00260{left:635.100000px;}
.xfc_c00260{left:636.900000px;}
.xde_c00260{left:638.400000px;}
.x14c_c00260{left:640.500000px;}
.x14d_c00260{left:642.900000px;}
.xeb_c00260{left:647.400000px;}
.xe5_c00260{left:649.200000px;}
.xf7_c00260{left:651.150000px;}
.xee_c00260{left:653.400000px;}
.x141_c00260{left:655.050000px;}
.xd7_c00260{left:656.700000px;}
.xca_c00260{left:657.900000px;}
.xfd_c00260{left:660.000000px;}
.x126_c00260{left:661.200000px;}
.xdf_c00260{left:662.850000px;}
.x15f_c00260{left:665.100000px;}
.x103_c00260{left:667.200000px;}
.xd1_c00260{left:670.950000px;}
.x112_c00260{left:673.200000px;}
.xd8_c00260{left:675.000000px;}
.xfe_c00260{left:678.300000px;}
.xc2_c00260{left:682.500000px;}
.xe6_c00260{left:686.250000px;}
.xcb_c00260{left:687.450000px;}
.x104_c00260{left:688.500000px;}
.x15a_c00260{left:689.550000px;}
.xd2_c00260{left:690.750000px;}
.x12f_c00260{left:692.700000px;}
.x113_c00260{left:696.300000px;}
.xf8_c00260{left:697.950000px;}
.x14e_c00260{left:699.900000px;}
.x13a_c00260{left:700.950000px;}
.x109_c00260{left:702.900000px;}
.x105_c00260{left:705.000000px;}
.x12c_c00260{left:706.500000px;}
.xd9_c00260{left:708.150000px;}
.xc3_c00260{left:709.500000px;}
.x127_c00260{left:710.550000px;}
.x135_c00260{left:712.800000px;}
.xf3_c00260{left:714.450000px;}
.xe0_c00260{left:715.800000px;}
.xd3_c00260{left:717.750000px;}
.x147_c00260{left:718.950000px;}
.x115_c00260{left:720.000000px;}
.xe7_c00260{left:721.950000px;}
.xc4_c00260{left:723.600000px;}
.x14a_c00260{left:725.100000px;}
.x15b_c00260{left:726.600000px;}
.xe1_c00260{left:729.150000px;}
.x11c_c00260{left:731.100000px;}
.xf4_c00260{left:732.750000px;}
.x131_c00260{left:734.400000px;}
.x130_c00260{left:737.400000px;}
.xff_c00260{left:738.750000px;}
.x136_c00260{left:740.850000px;}
.x116_c00260{left:741.900000px;}
.x10a_c00260{left:745.350000px;}
.x124_c00260{left:746.400000px;}
.xc5_c00260{left:748.500000px;}
.x100_c00260{left:751.050000px;}
.xcc_c00260{left:753.750000px;}
.x2_c00260{left:756.750000px;}
.x153_c00260{left:758.550000px;}
.x13f_c00260{left:761.850000px;}
.x13b_c00260{left:763.200000px;}
.x12d_c00260{left:766.200000px;}
.xef_c00260{left:767.550000px;}
.x132_c00260{left:768.900000px;}
.x137_c00260{left:770.400000px;}
.xda_c00260{left:773.250000px;}
.x128_c00260{left:779.250000px;}
.x11d_c00260{left:780.450000px;}
.x159_c00260{left:781.800000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws3_c00260{word-spacing:-8.641975pt;}
.ws4_c00260{word-spacing:-7.017544pt;}
.ws7_c00260{word-spacing:-5.239892pt;}
.ws8_c00260{word-spacing:0.000000pt;}
.ws0_c00260{word-spacing:2.217153pt;}
.ws1_c00260{word-spacing:5.802469pt;}
.ws2_c00260{word-spacing:13.273935pt;}
.ws5_c00260{word-spacing:25.267760pt;}
.ws6_c00260{word-spacing:31.853211pt;}
.fs5_c00260{font-size:26.666667pt;}
.fs6_c00260{font-size:42.666667pt;}
.fs4_c00260{font-size:48.000000pt;}
.fs3_c00260{font-size:53.333333pt;}
.fs2_c00260{font-size:58.666667pt;}
.fs1_c00260{font-size:64.000000pt;}
.fs0_c00260{font-size:69.333333pt;}
.y0_c00260{bottom:0.000000pt;}
.y3d_c00260{bottom:172.533333pt;}
.y3c_c00260{bottom:175.866667pt;}
.y6d_c00260{bottom:177.333333pt;}
.y3b_c00260{bottom:189.333333pt;}
.y6c_c00260{bottom:193.600000pt;}
.y3a_c00260{bottom:202.133333pt;}
.y6b_c00260{bottom:213.466667pt;}
.y39_c00260{bottom:214.933333pt;}
.y38_c00260{bottom:227.466667pt;}
.y6a_c00260{bottom:229.733333pt;}
.y37_c00260{bottom:240.666667pt;}
.y36_c00260{bottom:253.066667pt;}
.y69_c00260{bottom:260.533333pt;}
.y35_c00260{bottom:265.866667pt;}
.y34_c00260{bottom:278.666667pt;}
.y33_c00260{bottom:290.533333pt;}
.y68_c00260{bottom:292.000000pt;}
.y32_c00260{bottom:304.000000pt;}
.y67_c00260{bottom:307.733333pt;}
.y31_c00260{bottom:318.133333pt;}
.y66_c00260{bottom:323.733333pt;}
.y30_c00260{bottom:330.266667pt;}
.y65_c00260{bottom:339.466667pt;}
.y2f_c00260{bottom:342.133333pt;}
.y64_c00260{bottom:354.800000pt;}
.y2e_c00260{bottom:354.933333pt;}
.y2d_c00260{bottom:368.000000pt;}
.y63_c00260{bottom:370.800000pt;}
.y2c_c00260{bottom:380.800000pt;}
.y62_c00260{bottom:386.800000pt;}
.y2b_c00260{bottom:392.533333pt;}
.y61_c00260{bottom:402.533333pt;}
.y2a_c00260{bottom:405.600000pt;}
.y60_c00260{bottom:418.266667pt;}
.y29_c00260{bottom:418.400000pt;}
.y28_c00260{bottom:431.200000pt;}
.y5f_c00260{bottom:437.866667pt;}
.y27_c00260{bottom:443.733333pt;}
.y5e_c00260{bottom:453.866667pt;}
.y26_c00260{bottom:456.533333pt;}
.y25_c00260{bottom:469.333333pt;}
.y5d_c00260{bottom:469.600000pt;}
.y24_c00260{bottom:482.133333pt;}
.y5c_c00260{bottom:485.600000pt;}
.y23_c00260{bottom:494.933333pt;}
.y5b_c00260{bottom:501.333333pt;}
.y22_c00260{bottom:507.466667pt;}
.y5a_c00260{bottom:517.333333pt;}
.y21_c00260{bottom:520.266667pt;}
.y20_c00260{bottom:532.800000pt;}
.y59_c00260{bottom:533.066667pt;}
.y1f_c00260{bottom:545.600000pt;}
.y58_c00260{bottom:548.800000pt;}
.y1e_c00260{bottom:558.400000pt;}
.y1d_c00260{bottom:570.933333pt;}
.y57_c00260{bottom:572.533333pt;}
.y1c_c00260{bottom:583.733333pt;}
.y56_c00260{bottom:595.200000pt;}
.y1b_c00260{bottom:596.133333pt;}
.y1a_c00260{bottom:608.933333pt;}
.y55_c00260{bottom:611.866667pt;}
.y19_c00260{bottom:621.733333pt;}
.y54_c00260{bottom:627.600000pt;}
.y53_c00260{bottom:643.600000pt;}
.y52_c00260{bottom:658.933333pt;}
.y18_c00260{bottom:667.200000pt;}
.y51_c00260{bottom:682.400000pt;}
.y17_c00260{bottom:682.800000pt;}
.y50_c00260{bottom:698.133333pt;}
.y16_c00260{bottom:698.533333pt;}
.y4f_c00260{bottom:714.133333pt;}
.y15_c00260{bottom:714.266667pt;}
.y4e_c00260{bottom:729.866667pt;}
.y14_c00260{bottom:730.266667pt;}
.y4d_c00260{bottom:745.600000pt;}
.y13_c00260{bottom:746.000000pt;}
.y12_c00260{bottom:761.733333pt;}
.y4c_c00260{bottom:762.266667pt;}
.y11_c00260{bottom:777.466667pt;}
.y4b_c00260{bottom:780.800000pt;}
.y10_c00260{bottom:793.466667pt;}
.y4a_c00260{bottom:796.800000pt;}
.yf_c00260{bottom:809.466667pt;}
.y49_c00260{bottom:820.000000pt;}
.ye_c00260{bottom:824.800000pt;}
.y48_c00260{bottom:836.266667pt;}
.yd_c00260{bottom:840.800000pt;}
.y47_c00260{bottom:851.600000pt;}
.yc_c00260{bottom:856.533333pt;}
.y46_c00260{bottom:869.200000pt;}
.yb_c00260{bottom:872.266667pt;}
.y45_c00260{bottom:882.933333pt;}
.ya_c00260{bottom:888.000000pt;}
.y44_c00260{bottom:902.533333pt;}
.y9_c00260{bottom:903.733333pt;}
.y43_c00260{bottom:918.533333pt;}
.y8_c00260{bottom:919.733333pt;}
.y42_c00260{bottom:934.266667pt;}
.y7_c00260{bottom:935.333333pt;}
.y41_c00260{bottom:950.266667pt;}
.y6_c00260{bottom:951.333333pt;}
.y40_c00260{bottom:966.000000pt;}
.y5_c00260{bottom:966.666667pt;}
.y3f_c00260{bottom:981.733333pt;}
.y4_c00260{bottom:982.666667pt;}
.y3e_c00260{bottom:997.466667pt;}
.y3_c00260{bottom:998.400000pt;}
.y2_c00260{bottom:1021.066667pt;}
.y1_c00260{bottom:1021.733333pt;}
.h7_c00260{height:26.666667pt;}
.h8_c00260{height:42.666667pt;}
.h6_c00260{height:48.000000pt;}
.h5_c00260{height:53.333333pt;}
.h4_c00260{height:58.666667pt;}
.h3_c00260{height:64.000000pt;}
.h2_c00260{height:69.333333pt;}
.h1_c00260{height:1134.000000pt;}
.h0_c00260{height:1134.079997pt;}
.w1_c00260{width:854.666667pt;}
.w0_c00260{width:854.720052pt;}
.x0_c00260{left:0.000000pt;}
.xb6_c00260{left:73.333333pt;}
.x69_c00260{left:79.333333pt;}
.x78_c00260{left:80.666667pt;}
.xa5_c00260{left:81.600000pt;}
.x3_c00260{left:84.133333pt;}
.x29_c00260{left:86.666667pt;}
.x75_c00260{left:92.800000pt;}
.xb2_c00260{left:94.400000pt;}
.x53_c00260{left:96.666667pt;}
.x2a_c00260{left:97.866667pt;}
.xb_c00260{left:99.333333pt;}
.x6a_c00260{left:104.000000pt;}
.xb1_c00260{left:105.066667pt;}
.xba_c00260{left:106.533333pt;}
.xa6_c00260{left:109.733333pt;}
.x14_c00260{left:111.333333pt;}
.x72_c00260{left:112.800000pt;}
.x79_c00260{left:114.533333pt;}
.x9b_c00260{left:115.866667pt;}
.x3a_c00260{left:116.933333pt;}
.x98_c00260{left:118.533333pt;}
.xae_c00260{left:120.266667pt;}
.x73_c00260{left:121.466667pt;}
.xa3_c00260{left:123.200000pt;}
.x48_c00260{left:124.266667pt;}
.x9f_c00260{left:125.733333pt;}
.x1c_c00260{left:127.333333pt;}
.x62_c00260{left:129.600000pt;}
.xc_c00260{left:132.000000pt;}
.x44_c00260{left:133.466667pt;}
.x3f_c00260{left:135.200000pt;}
.x6e_c00260{left:136.133333pt;}
.x4_c00260{left:138.800000pt;}
.x8a_c00260{left:139.733333pt;}
.xa0_c00260{left:140.666667pt;}
.x1d_c00260{left:141.733333pt;}
.x7c_c00260{left:143.200000pt;}
.x91_c00260{left:144.666667pt;}
.x5b_c00260{left:146.266667pt;}
.x15_c00260{left:147.466667pt;}
.xd_c00260{left:149.333333pt;}
.x4d_c00260{left:150.800000pt;}
.x9c_c00260{left:151.733333pt;}
.x23_c00260{left:153.333333pt;}
.x81_c00260{left:154.266667pt;}
.x3b_c00260{left:157.200000pt;}
.x35_c00260{left:161.200000pt;}
.x5e_c00260{left:162.666667pt;}
.x50_c00260{left:163.866667pt;}
.x54_c00260{left:165.200000pt;}
.xa7_c00260{left:167.066667pt;}
.x16_c00260{left:168.000000pt;}
.x1e_c00260{left:169.600000pt;}
.xaf_c00260{left:170.800000pt;}
.x82_c00260{left:172.133333pt;}
.x30_c00260{left:173.066667pt;}
.x59_c00260{left:174.666667pt;}
.x55_c00260{left:176.400000pt;}
.x24_c00260{left:177.600000pt;}
.xe_c00260{left:179.066667pt;}
.x7e_c00260{left:180.133333pt;}
.xb5_c00260{left:181.066667pt;}
.x6f_c00260{left:182.800000pt;}
.xb7_c00260{left:184.400000pt;}
.x76_c00260{left:186.000000pt;}
.xa2_c00260{left:187.466667pt;}
.x66_c00260{left:188.666667pt;}
.x92_c00260{left:189.733333pt;}
.x74_c00260{left:191.600000pt;}
.x40_c00260{left:193.066667pt;}
.x67_c00260{left:194.000000pt;}
.x45_c00260{left:195.600000pt;}
.x2b_c00260{left:197.733333pt;}
.x65_c00260{left:199.066667pt;}
.xf_c00260{left:201.200000pt;}
.x5_c00260{left:202.133333pt;}
.xa8_c00260{left:203.200000pt;}
.x49_c00260{left:204.266667pt;}
.x6b_c00260{left:206.133333pt;}
.x5f_c00260{left:207.466667pt;}
.x2c_c00260{left:210.800000pt;}
.x7d_c00260{left:214.933333pt;}
.x17_c00260{left:216.266667pt;}
.x93_c00260{left:218.533333pt;}
.x4e_c00260{left:220.000000pt;}
.x7a_c00260{left:221.333333pt;}
.x6_c00260{left:222.933333pt;}
.x63_c00260{left:224.266667pt;}
.xab_c00260{left:225.600000pt;}
.x8c_c00260{left:226.533333pt;}
.x70_c00260{left:228.000000pt;}
.x60_c00260{left:229.200000pt;}
.x51_c00260{left:230.400000pt;}
.x9d_c00260{left:231.733333pt;}
.x3c_c00260{left:232.666667pt;}
.x4a_c00260{left:233.733333pt;}
.x36_c00260{left:235.066667pt;}
.x8d_c00260{left:236.133333pt;}
.x10_c00260{left:238.266667pt;}
.xb0_c00260{left:239.466667pt;}
.x56_c00260{left:241.066667pt;}
.x18_c00260{left:242.800000pt;}
.x83_c00260{left:245.466667pt;}
.xbb_c00260{left:246.400000pt;}
.x7f_c00260{left:247.333333pt;}
.x6c_c00260{left:248.666667pt;}
.x31_c00260{left:250.533333pt;}
.x41_c00260{left:252.533333pt;}
.x7_c00260{left:254.266667pt;}
.x2d_c00260{left:255.866667pt;}
.x37_c00260{left:257.733333pt;}
.x4b_c00260{left:260.933333pt;}
.x99_c00260{left:262.533333pt;}
.x94_c00260{left:263.733333pt;}
.x8e_c00260{left:264.666667pt;}
.x84_c00260{left:267.200000pt;}
.x25_c00260{left:268.133333pt;}
.x1f_c00260{left:269.466667pt;}
.x5c_c00260{left:270.800000pt;}
.x9e_c00260{left:272.666667pt;}
.xa9_c00260{left:273.600000pt;}
.x77_c00260{left:274.666667pt;}
.x46_c00260{left:276.266667pt;}
.x3d_c00260{left:277.200000pt;}
.x19_c00260{left:278.266667pt;}
.x4f_c00260{left:279.733333pt;}
.x85_c00260{left:282.533333pt;}
.x32_c00260{left:284.133333pt;}
.x7b_c00260{left:285.600000pt;}
.x3e_c00260{left:287.466667pt;}
.x20_c00260{left:288.666667pt;}
.x11_c00260{left:291.066667pt;}
.x5a_c00260{left:292.133333pt;}
.x26_c00260{left:294.400000pt;}
.xac_c00260{left:295.333333pt;}
.xbc_c00260{left:296.933333pt;}
.x1_c00260{left:298.533333pt;}
.x8_c00260{left:300.000000pt;}
.xb8_c00260{left:301.200000pt;}
.x8b_c00260{left:302.800000pt;}
.x42_c00260{left:304.133333pt;}
.x8f_c00260{left:305.600000pt;}
.xa1_c00260{left:307.200000pt;}
.x64_c00260{left:308.133333pt;}
.x12_c00260{left:309.600000pt;}
.x33_c00260{left:311.066667pt;}
.x95_c00260{left:312.933333pt;}
.x38_c00260{left:314.666667pt;}
.x27_c00260{left:316.133333pt;}
.x1a_c00260{left:317.333333pt;}
.x80_c00260{left:318.400000pt;}
.x96_c00260{left:319.600000pt;}
.x21_c00260{left:321.333333pt;}
.x86_c00260{left:322.266667pt;}
.x9_c00260{left:323.333333pt;}
.x47_c00260{left:325.466667pt;}
.x57_c00260{left:327.733333pt;}
.x61_c00260{left:329.333333pt;}
.x4c_c00260{left:330.400000pt;}
.xa4_c00260{left:332.133333pt;}
.x97_c00260{left:334.000000pt;}
.x5d_c00260{left:335.733333pt;}
.x1b_c00260{left:337.200000pt;}
.x2e_c00260{left:339.466667pt;}
.x9a_c00260{left:340.533333pt;}
.x87_c00260{left:342.133333pt;}
.x22_c00260{left:343.733333pt;}
.x6d_c00260{left:344.666667pt;}
.x89_c00260{left:345.866667pt;}
.xaa_c00260{left:346.933333pt;}
.x13_c00260{left:348.666667pt;}
.xa_c00260{left:349.866667pt;}
.x58_c00260{left:351.733333pt;}
.x90_c00260{left:353.600000pt;}
.xad_c00260{left:354.533333pt;}
.x43_c00260{left:355.600000pt;}
.xb3_c00260{left:356.533333pt;}
.x2f_c00260{left:358.400000pt;}
.x28_c00260{left:362.266667pt;}
.x39_c00260{left:364.266667pt;}
.x52_c00260{left:365.466667pt;}
.x34_c00260{left:367.333333pt;}
.x71_c00260{left:369.466667pt;}
.xb9_c00260{left:371.066667pt;}
.x88_c00260{left:375.066667pt;}
.x68_c00260{left:376.133333pt;}
.xbd_c00260{left:377.066667pt;}
.xb4_c00260{left:389.200000pt;}
.xec_c00260{left:398.666667pt;}
.x106_c00260{left:399.733333pt;}
.x148_c00260{left:412.800000pt;}
.xf9_c00260{left:413.733333pt;}
.xbe_c00260{left:414.666667pt;}
.x11e_c00260{left:416.666667pt;}
.x154_c00260{left:417.600000pt;}
.x14f_c00260{left:420.533333pt;}
.x138_c00260{left:424.266667pt;}
.x155_c00260{left:427.466667pt;}
.x13c_c00260{left:429.200000pt;}
.x10b_c00260{left:430.666667pt;}
.xe8_c00260{left:432.400000pt;}
.x140_c00260{left:433.333333pt;}
.x107_c00260{left:436.266667pt;}
.x117_c00260{left:438.933333pt;}
.xc6_c00260{left:440.400000pt;}
.xdb_c00260{left:441.600000pt;}
.xcd_c00260{left:443.466667pt;}
.x149_c00260{left:445.466667pt;}
.xf0_c00260{left:447.333333pt;}
.x122_c00260{left:449.866667pt;}
.xf5_c00260{left:450.800000pt;}
.x118_c00260{left:451.733333pt;}
.x11f_c00260{left:452.800000pt;}
.xbf_c00260{left:453.733333pt;}
.xfa_c00260{left:455.333333pt;}
.x10f_c00260{left:456.666667pt;}
.x15c_c00260{left:457.733333pt;}
.xe2_c00260{left:459.066667pt;}
.xed_c00260{left:460.133333pt;}
.xc7_c00260{left:461.866667pt;}
.xce_c00260{left:463.600000pt;}
.x13e_c00260{left:465.066667pt;}
.xf1_c00260{left:466.533333pt;}
.x14b_c00260{left:467.866667pt;}
.x157_c00260{left:469.200000pt;}
.xd4_c00260{left:472.000000pt;}
.x139_c00260{left:473.600000pt;}
.x101_c00260{left:474.666667pt;}
.x150_c00260{left:477.466667pt;}
.xe3_c00260{left:478.933333pt;}
.xc8_c00260{left:481.066667pt;}
.x102_c00260{left:483.333333pt;}
.x10c_c00260{left:484.800000pt;}
.xc0_c00260{left:487.066667pt;}
.xcf_c00260{left:488.533333pt;}
.x142_c00260{left:489.466667pt;}
.x120_c00260{left:490.533333pt;}
.x15d_c00260{left:491.866667pt;}
.xe9_c00260{left:492.933333pt;}
.x119_c00260{left:494.000000pt;}
.x129_c00260{left:496.000000pt;}
.x110_c00260{left:498.266667pt;}
.x123_c00260{left:499.866667pt;}
.xd5_c00260{left:501.733333pt;}
.x145_c00260{left:504.266667pt;}
.x133_c00260{left:505.866667pt;}
.x10d_c00260{left:507.200000pt;}
.xfb_c00260{left:508.800000pt;}
.xdc_c00260{left:510.800000pt;}
.x12a_c00260{left:512.266667pt;}
.x15e_c00260{left:514.533333pt;}
.x156_c00260{left:517.200000pt;}
.xd0_c00260{left:520.266667pt;}
.x143_c00260{left:522.400000pt;}
.xea_c00260{left:523.333333pt;}
.xdd_c00260{left:526.800000pt;}
.x125_c00260{left:527.866667pt;}
.xe4_c00260{left:528.800000pt;}
.x151_c00260{left:531.200000pt;}
.x121_c00260{left:532.133333pt;}
.x11a_c00260{left:534.400000pt;}
.x12b_c00260{left:535.600000pt;}
.xf6_c00260{left:536.533333pt;}
.x10e_c00260{left:538.266667pt;}
.xc1_c00260{left:539.200000pt;}
.x108_c00260{left:541.866667pt;}
.x12e_c00260{left:544.000000pt;}
.xc9_c00260{left:545.733333pt;}
.x111_c00260{left:547.200000pt;}
.x114_c00260{left:549.200000pt;}
.x158_c00260{left:551.200000pt;}
.x144_c00260{left:553.066667pt;}
.x11b_c00260{left:555.866667pt;}
.x134_c00260{left:556.800000pt;}
.x13d_c00260{left:557.733333pt;}
.xf2_c00260{left:559.600000pt;}
.x152_c00260{left:560.933333pt;}
.x146_c00260{left:562.533333pt;}
.xd6_c00260{left:564.533333pt;}
.xfc_c00260{left:566.133333pt;}
.xde_c00260{left:567.466667pt;}
.x14c_c00260{left:569.333333pt;}
.x14d_c00260{left:571.466667pt;}
.xeb_c00260{left:575.466667pt;}
.xe5_c00260{left:577.066667pt;}
.xf7_c00260{left:578.800000pt;}
.xee_c00260{left:580.800000pt;}
.x141_c00260{left:582.266667pt;}
.xd7_c00260{left:583.733333pt;}
.xca_c00260{left:584.800000pt;}
.xfd_c00260{left:586.666667pt;}
.x126_c00260{left:587.733333pt;}
.xdf_c00260{left:589.200000pt;}
.x15f_c00260{left:591.200000pt;}
.x103_c00260{left:593.066667pt;}
.xd1_c00260{left:596.400000pt;}
.x112_c00260{left:598.400000pt;}
.xd8_c00260{left:600.000000pt;}
.xfe_c00260{left:602.933333pt;}
.xc2_c00260{left:606.666667pt;}
.xe6_c00260{left:610.000000pt;}
.xcb_c00260{left:611.066667pt;}
.x104_c00260{left:612.000000pt;}
.x15a_c00260{left:612.933333pt;}
.xd2_c00260{left:614.000000pt;}
.x12f_c00260{left:615.733333pt;}
.x113_c00260{left:618.933333pt;}
.xf8_c00260{left:620.400000pt;}
.x14e_c00260{left:622.133333pt;}
.x13a_c00260{left:623.066667pt;}
.x109_c00260{left:624.800000pt;}
.x105_c00260{left:626.666667pt;}
.x12c_c00260{left:628.000000pt;}
.xd9_c00260{left:629.466667pt;}
.xc3_c00260{left:630.666667pt;}
.x127_c00260{left:631.600000pt;}
.x135_c00260{left:633.600000pt;}
.xf3_c00260{left:635.066667pt;}
.xe0_c00260{left:636.266667pt;}
.xd3_c00260{left:638.000000pt;}
.x147_c00260{left:639.066667pt;}
.x115_c00260{left:640.000000pt;}
.xe7_c00260{left:641.733333pt;}
.xc4_c00260{left:643.200000pt;}
.x14a_c00260{left:644.533333pt;}
.x15b_c00260{left:645.866667pt;}
.xe1_c00260{left:648.133333pt;}
.x11c_c00260{left:649.866667pt;}
.xf4_c00260{left:651.333333pt;}
.x131_c00260{left:652.800000pt;}
.x130_c00260{left:655.466667pt;}
.xff_c00260{left:656.666667pt;}
.x136_c00260{left:658.533333pt;}
.x116_c00260{left:659.466667pt;}
.x10a_c00260{left:662.533333pt;}
.x124_c00260{left:663.466667pt;}
.xc5_c00260{left:665.333333pt;}
.x100_c00260{left:667.600000pt;}
.xcc_c00260{left:670.000000pt;}
.x2_c00260{left:672.666667pt;}
.x153_c00260{left:674.266667pt;}
.x13f_c00260{left:677.200000pt;}
.x13b_c00260{left:678.400000pt;}
.x12d_c00260{left:681.066667pt;}
.xef_c00260{left:682.266667pt;}
.x132_c00260{left:683.466667pt;}
.x137_c00260{left:684.800000pt;}
.xda_c00260{left:687.333333pt;}
.x128_c00260{left:692.666667pt;}
.x11d_c00260{left:693.733333pt;}
.x159_c00260{left:694.933333pt;}
}





/* 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_c00261 {
    display:none;
  }
  .loading-indicator_c00261.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00261 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_c00261 { 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_c00261" -> "#page-container .classname_c00261")
 */
.pf_c00261 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00261 { /* 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_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00261 { /* 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_c00261 { /* 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_c00261 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00261 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00261 {overflow:visible;}
  }
}
.c_c00261 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00261 { /* 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_c00261:after { /* webkit #35443 */
  content: '';
}
.t_c00261:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00261 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 */
}
.__c00261 { /* 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_c00261 { /* info for Javascript */
  display:none;
}
.l_c00261 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00261 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00261 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00261: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_c00261 {
    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_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00261.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_c00261 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00261;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.000000;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;}
.mf3_c00261{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m68_c00261{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.me9_c00261{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00261{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00261{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m74_c00261{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00261{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00261{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m26_c00261{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m51_c00261{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m125_c00261{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m141_c00261{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m13_c00261{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m21_c00261{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m54_c00261{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m121_c00261{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m129_c00261{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m16_c00261{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00261{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00261{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mea_c00261{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m119_c00261{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md9_c00261{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00261{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.md4_c00261{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m20_c00261{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m97_c00261{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m107_c00261{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m94_c00261{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mac_c00261{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m85_c00261{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m93_c00261{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00261{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00261{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.me7_c00261{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00261{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m88_c00261{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00261{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m146_c00261{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m50_c00261{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mce_c00261{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m67_c00261{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m110_c00261{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m23_c00261{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m112_c00261{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00261{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00261{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m5_c00261{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mad_c00261{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m76_c00261{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00261{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7_c00261{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m82_c00261{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00261{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00261{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00261{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m73_c00261{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00261{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00261{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00261{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00261{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m106_c00261{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.med_c00261{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00261{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m40_c00261{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mba_c00261{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00261{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m41_c00261{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00261{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m87_c00261{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m70_c00261{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00261{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m29_c00261{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00261{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00261{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00261{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m10_c00261{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mb_c00261{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m120_c00261{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00261{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00261{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00261{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m81_c00261{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md8_c00261{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00261{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m139_c00261{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00261{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me5_c00261{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00261{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mab_c00261{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.me_c00261{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m60_c00261{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mec_c00261{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00261{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00261{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m28_c00261{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m63_c00261{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma_c00261{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00261{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf_c00261{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m43_c00261{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00261{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m77_c00261{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00261{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m52_c00261{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m128_c00261{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m3_c00261{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00261{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m33_c00261{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00261{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00261{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m80_c00261{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00261{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00261{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00261{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00261{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00261{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m13e_c00261{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00261{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m111_c00261{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m83_c00261{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mff_c00261{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m134_c00261{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m53_c00261{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m84_c00261{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00261{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m57_c00261{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m131_c00261{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00261{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md5_c00261{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md3_c00261{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me3_c00261{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m34_c00261{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00261{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m108_c00261{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00261{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m59_c00261{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m13d_c00261{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m58_c00261{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m30_c00261{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00261{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mc_c00261{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m38_c00261{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00261{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.maf_c00261{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00261{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00261{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m55_c00261{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m71_c00261{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me8_c00261{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m135_c00261{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00261{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m18_c00261{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m11_c00261{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m72_c00261{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m101_c00261{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m132_c00261{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00261{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m122_c00261{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m105_c00261{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m56_c00261{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m12_c00261{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00261{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m102_c00261{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00261{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m48_c00261{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m37_c00261{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00261{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m65_c00261{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m96_c00261{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00261{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4_c00261{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00261{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md0_c00261{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00261{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00261{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00261{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m104_c00261{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00261{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m42_c00261{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00261{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.maa_c00261{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m32_c00261{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m115_c00261{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m86_c00261{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mda_c00261{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00261{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00261{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00261{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00261{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00261{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m79_c00261{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00261{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8_c00261{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m89_c00261{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00261{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me6_c00261{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m143_c00261{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m44_c00261{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m13f_c00261{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m49_c00261{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m31_c00261{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m35_c00261{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md_c00261{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m14_c00261{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00261{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2_c00261{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m27_c00261{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00261{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00261{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m69_c00261{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m98_c00261{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m47_c00261{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md6_c00261{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m9_c00261{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m145_c00261{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m117_c00261{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00261{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00261{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00261{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m114_c00261{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00261{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mae_c00261{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00261{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00261{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00261{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m39_c00261{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m144_c00261{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m46_c00261{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00261{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00261{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mca_c00261{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m62_c00261{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m66_c00261{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m118_c00261{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m17_c00261{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md7_c00261{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00261{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m61_c00261{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6_c00261{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00261{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00261{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m95_c00261{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m136_c00261{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m64_c00261{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00261{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00261{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00261{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m126_c00261{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m24_c00261{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m137_c00261{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00261{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00261{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00261{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00261{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00261{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m92_c00261{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00261{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);}
.mcd_c00261{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00261{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m36_c00261{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00261{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00261{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.meb_c00261{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00261{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m116_c00261{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m19_c00261{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m138_c00261{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00261{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me0_c00261{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00261{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00261{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m142_c00261{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00261{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m124_c00261{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00261{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00261{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00261{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me2_c00261{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00261{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mee_c00261{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00261{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m45_c00261{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m78_c00261{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m123_c00261{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m15_c00261{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00261{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00261{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00261{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.me4_c00261{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md1_c00261{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00261{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m133_c00261{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00261{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m13b_c00261{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00261{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00261{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me1_c00261{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00261{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m103_c00261{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00261{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m99_c00261{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m75_c00261{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mef_c00261{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00261{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.md2_c00261{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m25_c00261{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m127_c00261{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m13c_c00261{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m100_c00261{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m22_c00261{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00261{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m109_c00261{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mde_c00261{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m91_c00261{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m113_c00261{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m140_c00261{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00261{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m90_c00261{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00261{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00261{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m130_c00261{transform:matrix(0.457250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457250,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.477750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00261{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00261{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00261{transform:matrix(9.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.080000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls0_c00261{letter-spacing:0.000000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{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__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00261{word-spacing:-13.750000px;}
.ws5_c00261{word-spacing:-7.777778px;}
.ws2_c00261{word-spacing:-4.790576px;}
.ws1_c00261{word-spacing:-4.247944px;}
.ws3_c00261{word-spacing:-4.054054px;}
.ws0_c00261{word-spacing:-4.043825px;}
.ws7_c00261{word-spacing:-1.625000px;}
.ws8_c00261{word-spacing:0.000000px;}
.ws6_c00261{word-spacing:33.764706px;}
.fc0_c00261{color:transparent;}
.fs5_c00261{font-size:18.000000px;}
.fs7_c00261{font-size:24.000000px;}
.fs6_c00261{font-size:48.000000px;}
.fs8_c00261{font-size:54.000000px;}
.fs2_c00261{font-size:60.000000px;}
.fs1_c00261{font-size:66.000000px;}
.fs3_c00261{font-size:72.000000px;}
.fs4_c00261{font-size:78.000000px;}
.fs0_c00261{font-size:84.000000px;}
.y62_c00261{bottom:-0.300000px;}
.y0_c00261{bottom:0.000000px;}
.y61_c00261{bottom:186.150000px;}
.y6d_c00261{bottom:195.150000px;}
.y60_c00261{bottom:201.300000px;}
.y6c_c00261{bottom:211.650000px;}
.y5f_c00261{bottom:216.000000px;}
.y6b_c00261{bottom:226.350000px;}
.y5e_c00261{bottom:230.100000px;}
.y6a_c00261{bottom:240.450000px;}
.y5d_c00261{bottom:244.200000px;}
.y69_c00261{bottom:254.850000px;}
.y5c_c00261{bottom:258.300000px;}
.y68_c00261{bottom:268.950000px;}
.y5b_c00261{bottom:272.400000px;}
.y67_c00261{bottom:283.650000px;}
.y5a_c00261{bottom:287.100000px;}
.y66_c00261{bottom:298.050000px;}
.y59_c00261{bottom:301.200000px;}
.y65_c00261{bottom:311.700000px;}
.y58_c00261{bottom:315.600000px;}
.y64_c00261{bottom:326.100000px;}
.y57_c00261{bottom:327.450000px;}
.y63_c00261{bottom:340.500000px;}
.y56_c00261{bottom:344.400000px;}
.y55_c00261{bottom:358.800000px;}
.y54_c00261{bottom:372.900000px;}
.y53_c00261{bottom:387.000000px;}
.y28_c00261{bottom:396.300000px;}
.y52_c00261{bottom:401.400000px;}
.y27_c00261{bottom:414.000000px;}
.y51_c00261{bottom:416.100000px;}
.y50_c00261{bottom:430.500000px;}
.y26_c00261{bottom:431.700000px;}
.y4f_c00261{bottom:444.600000px;}
.y25_c00261{bottom:449.250000px;}
.y24_c00261{bottom:467.250000px;}
.y4e_c00261{bottom:469.050000px;}
.y4c_c00261{bottom:491.100000px;}
.y4b_c00261{bottom:502.950000px;}
.y23_c00261{bottom:507.150000px;}
.y4a_c00261{bottom:508.650000px;}
.y49_c00261{bottom:523.050000px;}
.y22_c00261{bottom:533.100000px;}
.y48_c00261{bottom:544.350000px;}
.y21_c00261{bottom:552.300000px;}
.y47_c00261{bottom:558.300000px;}
.y20_c00261{bottom:573.150000px;}
.y46_c00261{bottom:581.700000px;}
.y1f_c00261{bottom:591.150000px;}
.y45_c00261{bottom:598.650000px;}
.y1e_c00261{bottom:609.450000px;}
.y44_c00261{bottom:616.350000px;}
.y1d_c00261{bottom:626.700000px;}
.y43_c00261{bottom:628.950000px;}
.y1c_c00261{bottom:644.700000px;}
.y42_c00261{bottom:652.050000px;}
.y1b_c00261{bottom:662.400000px;}
.y41_c00261{bottom:668.550000px;}
.y1a_c00261{bottom:676.350000px;}
.y40_c00261{bottom:687.600000px;}
.y19_c00261{bottom:702.300000px;}
.y3f_c00261{bottom:703.500000px;}
.y18_c00261{bottom:717.000000px;}
.y3e_c00261{bottom:723.600000px;}
.y17_c00261{bottom:742.200000px;}
.y3d_c00261{bottom:743.400000px;}
.y16_c00261{bottom:760.200000px;}
.y3c_c00261{bottom:763.200000px;}
.y15_c00261{bottom:777.900000px;}
.y3b_c00261{bottom:789.300000px;}
.y14_c00261{bottom:795.600000px;}
.y3a_c00261{bottom:807.300000px;}
.y13_c00261{bottom:811.050000px;}
.y39_c00261{bottom:825.000000px;}
.y12_c00261{bottom:836.250000px;}
.y38_c00261{bottom:842.700000px;}
.y11_c00261{bottom:853.950000px;}
.y37_c00261{bottom:861.150000px;}
.y10_c00261{bottom:871.950000px;}
.y36_c00261{bottom:881.700000px;}
.yf_c00261{bottom:886.950000px;}
.y35_c00261{bottom:899.400000px;}
.ye_c00261{bottom:911.850000px;}
.y34_c00261{bottom:917.400000px;}
.yd_c00261{bottom:929.550000px;}
.y33_c00261{bottom:934.650000px;}
.yc_c00261{bottom:947.250000px;}
.y32_c00261{bottom:952.650000px;}
.yb_c00261{bottom:964.950000px;}
.y31_c00261{bottom:969.900000px;}
.ya_c00261{bottom:982.950000px;}
.y30_c00261{bottom:983.100000px;}
.y9_c00261{bottom:1000.950000px;}
.y2f_c00261{bottom:1010.100000px;}
.y8_c00261{bottom:1018.950000px;}
.y2e_c00261{bottom:1028.100000px;}
.y7_c00261{bottom:1036.200000px;}
.y2d_c00261{bottom:1045.050000px;}
.y6_c00261{bottom:1054.200000px;}
.y2c_c00261{bottom:1067.100000px;}
.y5_c00261{bottom:1071.450000px;}
.y2b_c00261{bottom:1089.000000px;}
.y4_c00261{bottom:1089.750000px;}
.y3_c00261{bottom:1107.750000px;}
.y2a_c00261{bottom:1110.300000px;}
.y4d_c00261{bottom:1123.500000px;}
.y2_c00261{bottom:1125.000000px;}
.y29_c00261{bottom:1126.500000px;}
.y1_c00261{bottom:1143.300000px;}
.h7_c00261{height:18.000000px;}
.h9_c00261{height:24.000000px;}
.h8_c00261{height:48.000000px;}
.ha_c00261{height:54.000000px;}
.h4_c00261{height:60.000000px;}
.h3_c00261{height:66.000000px;}
.h5_c00261{height:72.000000px;}
.h6_c00261{height:78.000000px;}
.h2_c00261{height:84.000000px;}
.h1_c00261{height:1274.250000px;}
.h0_c00261{height:1274.400056px;}
.w1_c00261{width:961.500000px;}
.w0_c00261{width:961.560058px;}
.x0_c00261{left:0.000000px;}
.xa4_c00261{left:161.250000px;}
.xcb_c00261{left:168.900000px;}
.xf4_c00261{left:172.800000px;}
.x10a_c00261{left:178.950000px;}
.xba_c00261{left:183.900000px;}
.xc5_c00261{left:185.100000px;}
.xd2_c00261{left:187.200000px;}
.xd6_c00261{left:188.850000px;}
.xec_c00261{left:190.200000px;}
.xde_c00261{left:191.700000px;}
.xfe_c00261{left:192.900000px;}
.x109_c00261{left:194.400000px;}
.x14f_c00261{left:195.750000px;}
.xa5_c00261{left:197.250000px;}
.x114_c00261{left:198.300000px;}
.xb0_c00261{left:200.250000px;}
.x120_c00261{left:202.650000px;}
.x134_c00261{left:205.200000px;}
.x131_c00261{left:206.250000px;}
.x15b_c00261{left:207.300000px;}
.xed_c00261{left:212.550000px;}
.x10d_c00261{left:215.400000px;}
.xbb_c00261{left:217.050000px;}
.x139_c00261{left:218.100000px;}
.x10b_c00261{left:219.600000px;}
.x119_c00261{left:221.850000px;}
.x151_c00261{left:226.200000px;}
.xcc_c00261{left:227.550000px;}
.x115_c00261{left:230.400000px;}
.x140_c00261{left:234.450000px;}
.xbc_c00261{left:236.550000px;}
.xdf_c00261{left:238.500000px;}
.x116_c00261{left:239.700000px;}
.xc6_c00261{left:240.900000px;}
.xcd_c00261{left:243.450000px;}
.xd3_c00261{left:244.800000px;}
.x121_c00261{left:245.850000px;}
.x105_c00261{left:248.250000px;}
.x10c_c00261{left:250.950000px;}
.xe7_c00261{left:253.050000px;}
.xf2_c00261{left:255.150000px;}
.x12b_c00261{left:256.350000px;}
.xa6_c00261{left:257.400000px;}
.x128_c00261{left:258.750000px;}
.xc7_c00261{left:262.200000px;}
.x141_c00261{left:263.250000px;}
.xce_c00261{left:265.050000px;}
.x135_c00261{left:266.100000px;}
.xf5_c00261{left:269.250000px;}
.x155_c00261{left:270.750000px;}
.xd7_c00261{left:271.950000px;}
.xab_c00261{left:273.300000px;}
.xb1_c00261{left:275.850000px;}
.x10e_c00261{left:277.350000px;}
.xb4_c00261{left:279.000000px;}
.xff_c00261{left:280.050000px;}
.x147_c00261{left:282.450000px;}
.xd4_c00261{left:284.100000px;}
.xcf_c00261{left:285.900000px;}
.x156_c00261{left:286.950000px;}
.xe8_c00261{left:289.350000px;}
.x13c_c00261{left:292.050000px;}
.xe0_c00261{left:295.350000px;}
.xbd_c00261{left:298.050000px;}
.x10f_c00261{left:299.700000px;}
.x100_c00261{left:301.350000px;}
.xfa_c00261{left:303.150000px;}
.x12c_c00261{left:305.400000px;}
.xa7_c00261{left:306.750000px;}
.xf6_c00261{left:308.550000px;}
.xd8_c00261{left:314.100000px;}
.x122_c00261{left:316.350000px;}
.x146_c00261{left:317.550000px;}
.x13a_c00261{left:319.650000px;}
.xe1_c00261{left:320.850000px;}
.xac_c00261{left:322.650000px;}
.x11d_c00261{left:324.000000px;}
.xee_c00261{left:327.000000px;}
.xb5_c00261{left:328.350000px;}
.xf7_c00261{left:329.850000px;}
.x101_c00261{left:330.900000px;}
.x110_c00261{left:332.700000px;}
.xd9_c00261{left:333.900000px;}
.xe9_c00261{left:336.150000px;}
.xbe_c00261{left:337.650000px;}
.xa8_c00261{left:339.150000px;}
.xd5_c00261{left:340.650000px;}
.x113_c00261{left:342.000000px;}
.x129_c00261{left:343.950000px;}
.xef_c00261{left:347.100000px;}
.x123_c00261{left:348.750000px;}
.x142_c00261{left:350.100000px;}
.xd0_c00261{left:351.750000px;}
.x117_c00261{left:352.800000px;}
.xb2_c00261{left:356.100000px;}
.xad_c00261{left:357.600000px;}
.x111_c00261{left:359.700000px;}
.xb6_c00261{left:361.050000px;}
.x13e_c00261{left:362.250000px;}
.x14d_c00261{left:363.450000px;}
.xbf_c00261{left:364.950000px;}
.x15f_c00261{left:366.450000px;}
.x157_c00261{left:368.400000px;}
.xc8_c00261{left:369.450000px;}
.x136_c00261{left:370.500000px;}
.xa9_c00261{left:372.600000px;}
.x15d_c00261{left:374.850000px;}
.x13d_c00261{left:375.900000px;}
.xe2_c00261{left:376.950000px;}
.xc0_c00261{left:380.400000px;}
.xaa_c00261{left:382.350000px;}
.x150_c00261{left:384.000000px;}
.x106_c00261{left:385.050000px;}
.x124_c00261{left:386.250000px;}
.x11e_c00261{left:387.300000px;}
.x11c_c00261{left:388.800000px;}
.x12d_c00261{left:390.150000px;}
.xda_c00261{left:393.300000px;}
.xb7_c00261{left:394.500000px;}
.x12a_c00261{left:395.550000px;}
.xe3_c00261{left:397.800000px;}
.xfb_c00261{left:399.300000px;}
.x11a_c00261{left:400.350000px;}
.x1_c00261{left:401.700000px;}
.x132_c00261{left:403.050000px;}
.xc1_c00261{left:406.350000px;}
.x13f_c00261{left:408.000000px;}
.xea_c00261{left:409.200000px;}
.xf3_c00261{left:410.400000px;}
.xb3_c00261{left:412.650000px;}
.x137_c00261{left:414.000000px;}
.xc2_c00261{left:415.050000px;}
.x102_c00261{left:416.100000px;}
.xae_c00261{left:418.800000px;}
.x13b_c00261{left:421.800000px;}
.x138_c00261{left:425.100000px;}
.xd1_c00261{left:426.600000px;}
.xaf_c00261{left:428.550000px;}
.xb8_c00261{left:429.750000px;}
.xe4_c00261{left:432.300000px;}
.x125_c00261{left:433.350000px;}
.x143_c00261{left:436.950000px;}
.x103_c00261{left:438.000000px;}
.x15e_c00261{left:439.950000px;}
.x112_c00261{left:442.200000px;}
.xdb_c00261{left:444.000000px;}
.x14b_c00261{left:445.050000px;}
.x148_c00261{left:446.250000px;}
.xf8_c00261{left:448.200000px;}
.xc3_c00261{left:451.350000px;}
.xc9_c00261{left:453.000000px;}
.xe5_c00261{left:454.650000px;}
.x11b_c00261{left:456.450000px;}
.xfc_c00261{left:457.500000px;}
.xf0_c00261{left:458.700000px;}
.x158_c00261{left:460.350000px;}
.x107_c00261{left:461.700000px;}
.x152_c00261{left:463.500000px;}
.xdc_c00261{left:464.550000px;}
.x118_c00261{left:465.900000px;}
.x11f_c00261{left:466.950000px;}
.xf9_c00261{left:468.750000px;}
.xc4_c00261{left:471.450000px;}
.xca_c00261{left:472.500000px;}
.xeb_c00261{left:474.300000px;}
.x12e_c00261{left:476.550000px;}
.xfd_c00261{left:479.400000px;}
.x149_c00261{left:480.450000px;}
.x104_c00261{left:481.950000px;}
.x126_c00261{left:484.050000px;}
.xf1_c00261{left:486.450000px;}
.xdd_c00261{left:487.650000px;}
.xe6_c00261{left:489.600000px;}
.x144_c00261{left:491.100000px;}
.x130_c00261{left:492.750000px;}
.x127_c00261{left:494.550000px;}
.xb9_c00261{left:496.350000px;}
.x108_c00261{left:497.700000px;}
.x14a_c00261{left:499.200000px;}
.x12f_c00261{left:501.000000px;}
.x15a_c00261{left:502.200000px;}
.x133_c00261{left:505.500000px;}
.x145_c00261{left:507.300000px;}
.x14c_c00261{left:509.850000px;}
.x15c_c00261{left:514.500000px;}
.x153_c00261{left:515.700000px;}
.x159_c00261{left:518.250000px;}
.x154_c00261{left:527.100000px;}
.x14e_c00261{left:528.450000px;}
.x2_c00261{left:536.100000px;}
.xe_c00261{left:537.150000px;}
.x1e_c00261{left:538.200000px;}
.x2c_c00261{left:540.000000px;}
.x39_c00261{left:541.200000px;}
.x49_c00261{left:542.400000px;}
.x53_c00261{left:543.750000px;}
.x58_c00261{left:545.100000px;}
.x5f_c00261{left:546.600000px;}
.x3_c00261{left:548.400000px;}
.x6e_c00261{left:550.350000px;}
.x72_c00261{left:551.550000px;}
.x7d_c00261{left:553.800000px;}
.x81_c00261{left:555.750000px;}
.x87_c00261{left:557.700000px;}
.x2d_c00261{left:560.850000px;}
.x99_c00261{left:562.350000px;}
.x59_c00261{left:563.700000px;}
.x16f_c00261{left:566.850000px;}
.x15_c00261{left:568.350000px;}
.x44_c00261{left:570.900000px;}
.x168_c00261{left:571.950000px;}
.x73_c00261{left:573.450000px;}
.xf_c00261{left:574.950000px;}
.x4_c00261{left:577.200000px;}
.x16_c00261{left:579.450000px;}
.x96_c00261{left:580.650000px;}
.x45_c00261{left:582.000000px;}
.x54_c00261{left:583.650000px;}
.x160_c00261{left:584.700000px;}
.x74_c00261{left:586.050000px;}
.xa0_c00261{left:587.400000px;}
.x161_c00261{left:588.900000px;}
.x1f_c00261{left:591.150000px;}
.x24_c00261{left:592.350000px;}
.x7f_c00261{left:596.850000px;}
.x64_c00261{left:598.350000px;}
.x10_c00261{left:600.450000px;}
.x88_c00261{left:601.950000px;}
.x3f_c00261{left:603.000000px;}
.x78_c00261{left:604.350000px;}
.x3a_c00261{left:605.550000px;}
.x5_c00261{left:607.500000px;}
.x163_c00261{left:610.500000px;}
.x2e_c00261{left:611.550000px;}
.x16a_c00261{left:613.350000px;}
.x46_c00261{left:616.950000px;}
.x82_c00261{left:619.350000px;}
.x2f_c00261{left:620.850000px;}
.x9b_c00261{left:623.250000px;}
.x40_c00261{left:624.600000px;}
.x25_c00261{left:626.250000px;}
.x60_c00261{left:627.900000px;}
.x4f_c00261{left:630.900000px;}
.x6a_c00261{left:632.850000px;}
.x17_c00261{left:637.050000px;}
.x6_c00261{left:638.400000px;}
.x35_c00261{left:639.600000px;}
.x26_c00261{left:641.700000px;}
.x18_c00261{left:647.550000px;}
.x89_c00261{left:650.850000px;}
.x20_c00261{left:654.150000px;}
.x6b_c00261{left:656.550000px;}
.x7_c00261{left:657.900000px;}
.x36_c00261{left:659.700000px;}
.x9c_c00261{left:660.750000px;}
.x61_c00261{left:662.850000px;}
.x75_c00261{left:664.500000px;}
.x172_c00261{left:665.700000px;}
.x4a_c00261{left:669.150000px;}
.x5a_c00261{left:673.500000px;}
.x8f_c00261{left:674.700000px;}
.x79_c00261{left:675.900000px;}
.x97_c00261{left:678.450000px;}
.x3b_c00261{left:679.950000px;}
.x11_c00261{left:681.450000px;}
.x16b_c00261{left:683.550000px;}
.x30_c00261{left:684.600000px;}
.x171_c00261{left:685.950000px;}
.x47_c00261{left:687.450000px;}
.x8_c00261{left:689.550000px;}
.x55_c00261{left:691.350000px;}
.x93_c00261{left:693.300000px;}
.x27_c00261{left:694.950000px;}
.x90_c00261{left:696.300000px;}
.x41_c00261{left:697.350000px;}
.x166_c00261{left:698.400000px;}
.x5b_c00261{left:699.750000px;}
.x31_c00261{left:701.550000px;}
.x37_c00261{left:702.900000px;}
.x50_c00261{left:705.450000px;}
.x83_c00261{left:706.500000px;}
.x4b_c00261{left:708.000000px;}
.x9_c00261{left:709.350000px;}
.x8e_c00261{left:710.700000px;}
.x62_c00261{left:712.200000px;}
.x7a_c00261{left:714.000000px;}
.x84_c00261{left:715.200000px;}
.x32_c00261{left:717.000000px;}
.x12_c00261{left:718.500000px;}
.x98_c00261{left:720.150000px;}
.xa_c00261{left:724.500000px;}
.x42_c00261{left:726.450000px;}
.x3c_c00261{left:728.850000px;}
.x19_c00261{left:731.850000px;}
.xa2_c00261{left:736.800000px;}
.x21_c00261{left:738.750000px;}
.x91_c00261{left:739.800000px;}
.x1a_c00261{left:740.850000px;}
.x76_c00261{left:741.900000px;}
.x94_c00261{left:744.450000px;}
.x9d_c00261{left:745.800000px;}
.x65_c00261{left:747.750000px;}
.x4c_c00261{left:749.700000px;}
.x8b_c00261{left:751.350000px;}
.x71_c00261{left:753.600000px;}
.x28_c00261{left:755.850000px;}
.x6c_c00261{left:758.100000px;}
.x33_c00261{left:760.500000px;}
.x29_c00261{left:764.550000px;}
.x16c_c00261{left:765.600000px;}
.x51_c00261{left:766.650000px;}
.x8a_c00261{left:768.600000px;}
.x4d_c00261{left:769.800000px;}
.x5c_c00261{left:772.050000px;}
.x6f_c00261{left:773.400000px;}
.x169_c00261{left:774.750000px;}
.x1b_c00261{left:776.100000px;}
.x7b_c00261{left:778.050000px;}
.x13_c00261{left:779.400000px;}
.x56_c00261{left:780.750000px;}
.x85_c00261{left:781.800000px;}
.x48_c00261{left:783.900000px;}
.xb_c00261{left:787.200000px;}
.x6d_c00261{left:788.400000px;}
.x167_c00261{left:789.450000px;}
.x9a_c00261{left:790.950000px;}
.x34_c00261{left:792.150000px;}
.x77_c00261{left:793.350000px;}
.x3d_c00261{left:795.750000px;}
.x95_c00261{left:797.400000px;}
.x2a_c00261{left:799.500000px;}
.x5d_c00261{left:800.850000px;}
.x66_c00261{left:802.800000px;}
.x80_c00261{left:804.600000px;}
.x1c_c00261{left:805.650000px;}
.xc_c00261{left:807.300000px;}
.x22_c00261{left:811.050000px;}
.x63_c00261{left:813.300000px;}
.xa3_c00261{left:815.400000px;}
.x38_c00261{left:816.600000px;}
.x43_c00261{left:817.950000px;}
.x2b_c00261{left:820.050000px;}
.x5e_c00261{left:821.700000px;}
.xd_c00261{left:823.200000px;}
.x14_c00261{left:827.250000px;}
.x57_c00261{left:828.750000px;}
.x92_c00261{left:831.900000px;}
.x67_c00261{left:834.450000px;}
.x8c_c00261{left:836.400000px;}
.x164_c00261{left:837.750000px;}
.x7c_c00261{left:839.250000px;}
.x1d_c00261{left:841.350000px;}
.xa1_c00261{left:842.850000px;}
.x3e_c00261{left:843.900000px;}
.x4e_c00261{left:845.400000px;}
.x70_c00261{left:847.650000px;}
.x16d_c00261{left:848.850000px;}
.x69_c00261{left:849.900000px;}
.x86_c00261{left:850.950000px;}
.x23_c00261{left:853.950000px;}
.x68_c00261{left:855.300000px;}
.x52_c00261{left:857.250000px;}
.x8d_c00261{left:860.100000px;}
.x165_c00261{left:863.250000px;}
.x16e_c00261{left:865.350000px;}
.x9e_c00261{left:866.400000px;}
.x162_c00261{left:869.100000px;}
.x9f_c00261{left:875.100000px;}
.x170_c00261{left:876.450000px;}
.x7e_c00261{left:877.500000px;}
.x173_c00261{left:887.850000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws4_c00261{word-spacing:-12.222222pt;}
.ws5_c00261{word-spacing:-6.913580pt;}
.ws2_c00261{word-spacing:-4.258290pt;}
.ws1_c00261{word-spacing:-3.775950pt;}
.ws3_c00261{word-spacing:-3.603604pt;}
.ws0_c00261{word-spacing:-3.594511pt;}
.ws7_c00261{word-spacing:-1.444444pt;}
.ws8_c00261{word-spacing:0.000000pt;}
.ws6_c00261{word-spacing:30.013072pt;}
.fs5_c00261{font-size:16.000000pt;}
.fs7_c00261{font-size:21.333333pt;}
.fs6_c00261{font-size:42.666667pt;}
.fs8_c00261{font-size:48.000000pt;}
.fs2_c00261{font-size:53.333333pt;}
.fs1_c00261{font-size:58.666667pt;}
.fs3_c00261{font-size:64.000000pt;}
.fs4_c00261{font-size:69.333333pt;}
.fs0_c00261{font-size:74.666667pt;}
.y62_c00261{bottom:-0.266667pt;}
.y0_c00261{bottom:0.000000pt;}
.y61_c00261{bottom:165.466667pt;}
.y6d_c00261{bottom:173.466667pt;}
.y60_c00261{bottom:178.933333pt;}
.y6c_c00261{bottom:188.133333pt;}
.y5f_c00261{bottom:192.000000pt;}
.y6b_c00261{bottom:201.200000pt;}
.y5e_c00261{bottom:204.533333pt;}
.y6a_c00261{bottom:213.733333pt;}
.y5d_c00261{bottom:217.066667pt;}
.y69_c00261{bottom:226.533333pt;}
.y5c_c00261{bottom:229.600000pt;}
.y68_c00261{bottom:239.066667pt;}
.y5b_c00261{bottom:242.133333pt;}
.y67_c00261{bottom:252.133333pt;}
.y5a_c00261{bottom:255.200000pt;}
.y66_c00261{bottom:264.933333pt;}
.y59_c00261{bottom:267.733333pt;}
.y65_c00261{bottom:277.066667pt;}
.y58_c00261{bottom:280.533333pt;}
.y64_c00261{bottom:289.866667pt;}
.y57_c00261{bottom:291.066667pt;}
.y63_c00261{bottom:302.666667pt;}
.y56_c00261{bottom:306.133333pt;}
.y55_c00261{bottom:318.933333pt;}
.y54_c00261{bottom:331.466667pt;}
.y53_c00261{bottom:344.000000pt;}
.y28_c00261{bottom:352.266667pt;}
.y52_c00261{bottom:356.800000pt;}
.y27_c00261{bottom:368.000000pt;}
.y51_c00261{bottom:369.866667pt;}
.y50_c00261{bottom:382.666667pt;}
.y26_c00261{bottom:383.733333pt;}
.y4f_c00261{bottom:395.200000pt;}
.y25_c00261{bottom:399.333333pt;}
.y24_c00261{bottom:415.333333pt;}
.y4e_c00261{bottom:416.933333pt;}
.y4c_c00261{bottom:436.533333pt;}
.y4b_c00261{bottom:447.066667pt;}
.y23_c00261{bottom:450.800000pt;}
.y4a_c00261{bottom:452.133333pt;}
.y49_c00261{bottom:464.933333pt;}
.y22_c00261{bottom:473.866667pt;}
.y48_c00261{bottom:483.866667pt;}
.y21_c00261{bottom:490.933333pt;}
.y47_c00261{bottom:496.266667pt;}
.y20_c00261{bottom:509.466667pt;}
.y46_c00261{bottom:517.066667pt;}
.y1f_c00261{bottom:525.466667pt;}
.y45_c00261{bottom:532.133333pt;}
.y1e_c00261{bottom:541.733333pt;}
.y44_c00261{bottom:547.866667pt;}
.y1d_c00261{bottom:557.066667pt;}
.y43_c00261{bottom:559.066667pt;}
.y1c_c00261{bottom:573.066667pt;}
.y42_c00261{bottom:579.600000pt;}
.y1b_c00261{bottom:588.800000pt;}
.y41_c00261{bottom:594.266667pt;}
.y1a_c00261{bottom:601.200000pt;}
.y40_c00261{bottom:611.200000pt;}
.y19_c00261{bottom:624.266667pt;}
.y3f_c00261{bottom:625.333333pt;}
.y18_c00261{bottom:637.333333pt;}
.y3e_c00261{bottom:643.200000pt;}
.y17_c00261{bottom:659.733333pt;}
.y3d_c00261{bottom:660.800000pt;}
.y16_c00261{bottom:675.733333pt;}
.y3c_c00261{bottom:678.400000pt;}
.y15_c00261{bottom:691.466667pt;}
.y3b_c00261{bottom:701.600000pt;}
.y14_c00261{bottom:707.200000pt;}
.y3a_c00261{bottom:717.600000pt;}
.y13_c00261{bottom:720.933333pt;}
.y39_c00261{bottom:733.333333pt;}
.y12_c00261{bottom:743.333333pt;}
.y38_c00261{bottom:749.066667pt;}
.y11_c00261{bottom:759.066667pt;}
.y37_c00261{bottom:765.466667pt;}
.y10_c00261{bottom:775.066667pt;}
.y36_c00261{bottom:783.733333pt;}
.yf_c00261{bottom:788.400000pt;}
.y35_c00261{bottom:799.466667pt;}
.ye_c00261{bottom:810.533333pt;}
.y34_c00261{bottom:815.466667pt;}
.yd_c00261{bottom:826.266667pt;}
.y33_c00261{bottom:830.800000pt;}
.yc_c00261{bottom:842.000000pt;}
.y32_c00261{bottom:846.800000pt;}
.yb_c00261{bottom:857.733333pt;}
.y31_c00261{bottom:862.133333pt;}
.ya_c00261{bottom:873.733333pt;}
.y30_c00261{bottom:873.866667pt;}
.y9_c00261{bottom:889.733333pt;}
.y2f_c00261{bottom:897.866667pt;}
.y8_c00261{bottom:905.733333pt;}
.y2e_c00261{bottom:913.866667pt;}
.y7_c00261{bottom:921.066667pt;}
.y2d_c00261{bottom:928.933333pt;}
.y6_c00261{bottom:937.066667pt;}
.y2c_c00261{bottom:948.533333pt;}
.y5_c00261{bottom:952.400000pt;}
.y2b_c00261{bottom:968.000000pt;}
.y4_c00261{bottom:968.666667pt;}
.y3_c00261{bottom:984.666667pt;}
.y2a_c00261{bottom:986.933333pt;}
.y4d_c00261{bottom:998.666667pt;}
.y2_c00261{bottom:1000.000000pt;}
.y29_c00261{bottom:1001.333333pt;}
.y1_c00261{bottom:1016.266667pt;}
.h7_c00261{height:16.000000pt;}
.h9_c00261{height:21.333333pt;}
.h8_c00261{height:42.666667pt;}
.ha_c00261{height:48.000000pt;}
.h4_c00261{height:53.333333pt;}
.h3_c00261{height:58.666667pt;}
.h5_c00261{height:64.000000pt;}
.h6_c00261{height:69.333333pt;}
.h2_c00261{height:74.666667pt;}
.h1_c00261{height:1132.666667pt;}
.h0_c00261{height:1132.800049pt;}
.w1_c00261{width:854.666667pt;}
.w0_c00261{width:854.720052pt;}
.x0_c00261{left:0.000000pt;}
.xa4_c00261{left:143.333333pt;}
.xcb_c00261{left:150.133333pt;}
.xf4_c00261{left:153.600000pt;}
.x10a_c00261{left:159.066667pt;}
.xba_c00261{left:163.466667pt;}
.xc5_c00261{left:164.533333pt;}
.xd2_c00261{left:166.400000pt;}
.xd6_c00261{left:167.866667pt;}
.xec_c00261{left:169.066667pt;}
.xde_c00261{left:170.400000pt;}
.xfe_c00261{left:171.466667pt;}
.x109_c00261{left:172.800000pt;}
.x14f_c00261{left:174.000000pt;}
.xa5_c00261{left:175.333333pt;}
.x114_c00261{left:176.266667pt;}
.xb0_c00261{left:178.000000pt;}
.x120_c00261{left:180.133333pt;}
.x134_c00261{left:182.400000pt;}
.x131_c00261{left:183.333333pt;}
.x15b_c00261{left:184.266667pt;}
.xed_c00261{left:188.933333pt;}
.x10d_c00261{left:191.466667pt;}
.xbb_c00261{left:192.933333pt;}
.x139_c00261{left:193.866667pt;}
.x10b_c00261{left:195.200000pt;}
.x119_c00261{left:197.200000pt;}
.x151_c00261{left:201.066667pt;}
.xcc_c00261{left:202.266667pt;}
.x115_c00261{left:204.800000pt;}
.x140_c00261{left:208.400000pt;}
.xbc_c00261{left:210.266667pt;}
.xdf_c00261{left:212.000000pt;}
.x116_c00261{left:213.066667pt;}
.xc6_c00261{left:214.133333pt;}
.xcd_c00261{left:216.400000pt;}
.xd3_c00261{left:217.600000pt;}
.x121_c00261{left:218.533333pt;}
.x105_c00261{left:220.666667pt;}
.x10c_c00261{left:223.066667pt;}
.xe7_c00261{left:224.933333pt;}
.xf2_c00261{left:226.800000pt;}
.x12b_c00261{left:227.866667pt;}
.xa6_c00261{left:228.800000pt;}
.x128_c00261{left:230.000000pt;}
.xc7_c00261{left:233.066667pt;}
.x141_c00261{left:234.000000pt;}
.xce_c00261{left:235.600000pt;}
.x135_c00261{left:236.533333pt;}
.xf5_c00261{left:239.333333pt;}
.x155_c00261{left:240.666667pt;}
.xd7_c00261{left:241.733333pt;}
.xab_c00261{left:242.933333pt;}
.xb1_c00261{left:245.200000pt;}
.x10e_c00261{left:246.533333pt;}
.xb4_c00261{left:248.000000pt;}
.xff_c00261{left:248.933333pt;}
.x147_c00261{left:251.066667pt;}
.xd4_c00261{left:252.533333pt;}
.xcf_c00261{left:254.133333pt;}
.x156_c00261{left:255.066667pt;}
.xe8_c00261{left:257.200000pt;}
.x13c_c00261{left:259.600000pt;}
.xe0_c00261{left:262.533333pt;}
.xbd_c00261{left:264.933333pt;}
.x10f_c00261{left:266.400000pt;}
.x100_c00261{left:267.866667pt;}
.xfa_c00261{left:269.466667pt;}
.x12c_c00261{left:271.466667pt;}
.xa7_c00261{left:272.666667pt;}
.xf6_c00261{left:274.266667pt;}
.xd8_c00261{left:279.200000pt;}
.x122_c00261{left:281.200000pt;}
.x146_c00261{left:282.266667pt;}
.x13a_c00261{left:284.133333pt;}
.xe1_c00261{left:285.200000pt;}
.xac_c00261{left:286.800000pt;}
.x11d_c00261{left:288.000000pt;}
.xee_c00261{left:290.666667pt;}
.xb5_c00261{left:291.866667pt;}
.xf7_c00261{left:293.200000pt;}
.x101_c00261{left:294.133333pt;}
.x110_c00261{left:295.733333pt;}
.xd9_c00261{left:296.800000pt;}
.xe9_c00261{left:298.800000pt;}
.xbe_c00261{left:300.133333pt;}
.xa8_c00261{left:301.466667pt;}
.xd5_c00261{left:302.800000pt;}
.x113_c00261{left:304.000000pt;}
.x129_c00261{left:305.733333pt;}
.xef_c00261{left:308.533333pt;}
.x123_c00261{left:310.000000pt;}
.x142_c00261{left:311.200000pt;}
.xd0_c00261{left:312.666667pt;}
.x117_c00261{left:313.600000pt;}
.xb2_c00261{left:316.533333pt;}
.xad_c00261{left:317.866667pt;}
.x111_c00261{left:319.733333pt;}
.xb6_c00261{left:320.933333pt;}
.x13e_c00261{left:322.000000pt;}
.x14d_c00261{left:323.066667pt;}
.xbf_c00261{left:324.400000pt;}
.x15f_c00261{left:325.733333pt;}
.x157_c00261{left:327.466667pt;}
.xc8_c00261{left:328.400000pt;}
.x136_c00261{left:329.333333pt;}
.xa9_c00261{left:331.200000pt;}
.x15d_c00261{left:333.200000pt;}
.x13d_c00261{left:334.133333pt;}
.xe2_c00261{left:335.066667pt;}
.xc0_c00261{left:338.133333pt;}
.xaa_c00261{left:339.866667pt;}
.x150_c00261{left:341.333333pt;}
.x106_c00261{left:342.266667pt;}
.x124_c00261{left:343.333333pt;}
.x11e_c00261{left:344.266667pt;}
.x11c_c00261{left:345.600000pt;}
.x12d_c00261{left:346.800000pt;}
.xda_c00261{left:349.600000pt;}
.xb7_c00261{left:350.666667pt;}
.x12a_c00261{left:351.600000pt;}
.xe3_c00261{left:353.600000pt;}
.xfb_c00261{left:354.933333pt;}
.x11a_c00261{left:355.866667pt;}
.x1_c00261{left:357.066667pt;}
.x132_c00261{left:358.266667pt;}
.xc1_c00261{left:361.200000pt;}
.x13f_c00261{left:362.666667pt;}
.xea_c00261{left:363.733333pt;}
.xf3_c00261{left:364.800000pt;}
.xb3_c00261{left:366.800000pt;}
.x137_c00261{left:368.000000pt;}
.xc2_c00261{left:368.933333pt;}
.x102_c00261{left:369.866667pt;}
.xae_c00261{left:372.266667pt;}
.x13b_c00261{left:374.933333pt;}
.x138_c00261{left:377.866667pt;}
.xd1_c00261{left:379.200000pt;}
.xaf_c00261{left:380.933333pt;}
.xb8_c00261{left:382.000000pt;}
.xe4_c00261{left:384.266667pt;}
.x125_c00261{left:385.200000pt;}
.x143_c00261{left:388.400000pt;}
.x103_c00261{left:389.333333pt;}
.x15e_c00261{left:391.066667pt;}
.x112_c00261{left:393.066667pt;}
.xdb_c00261{left:394.666667pt;}
.x14b_c00261{left:395.600000pt;}
.x148_c00261{left:396.666667pt;}
.xf8_c00261{left:398.400000pt;}
.xc3_c00261{left:401.200000pt;}
.xc9_c00261{left:402.666667pt;}
.xe5_c00261{left:404.133333pt;}
.x11b_c00261{left:405.733333pt;}
.xfc_c00261{left:406.666667pt;}
.xf0_c00261{left:407.733333pt;}
.x158_c00261{left:409.200000pt;}
.x107_c00261{left:410.400000pt;}
.x152_c00261{left:412.000000pt;}
.xdc_c00261{left:412.933333pt;}
.x118_c00261{left:414.133333pt;}
.x11f_c00261{left:415.066667pt;}
.xf9_c00261{left:416.666667pt;}
.xc4_c00261{left:419.066667pt;}
.xca_c00261{left:420.000000pt;}
.xeb_c00261{left:421.600000pt;}
.x12e_c00261{left:423.600000pt;}
.xfd_c00261{left:426.133333pt;}
.x149_c00261{left:427.066667pt;}
.x104_c00261{left:428.400000pt;}
.x126_c00261{left:430.266667pt;}
.xf1_c00261{left:432.400000pt;}
.xdd_c00261{left:433.466667pt;}
.xe6_c00261{left:435.200000pt;}
.x144_c00261{left:436.533333pt;}
.x130_c00261{left:438.000000pt;}
.x127_c00261{left:439.600000pt;}
.xb9_c00261{left:441.200000pt;}
.x108_c00261{left:442.400000pt;}
.x14a_c00261{left:443.733333pt;}
.x12f_c00261{left:445.333333pt;}
.x15a_c00261{left:446.400000pt;}
.x133_c00261{left:449.333333pt;}
.x145_c00261{left:450.933333pt;}
.x14c_c00261{left:453.200000pt;}
.x15c_c00261{left:457.333333pt;}
.x153_c00261{left:458.400000pt;}
.x159_c00261{left:460.666667pt;}
.x154_c00261{left:468.533333pt;}
.x14e_c00261{left:469.733333pt;}
.x2_c00261{left:476.533333pt;}
.xe_c00261{left:477.466667pt;}
.x1e_c00261{left:478.400000pt;}
.x2c_c00261{left:480.000000pt;}
.x39_c00261{left:481.066667pt;}
.x49_c00261{left:482.133333pt;}
.x53_c00261{left:483.333333pt;}
.x58_c00261{left:484.533333pt;}
.x5f_c00261{left:485.866667pt;}
.x3_c00261{left:487.466667pt;}
.x6e_c00261{left:489.200000pt;}
.x72_c00261{left:490.266667pt;}
.x7d_c00261{left:492.266667pt;}
.x81_c00261{left:494.000000pt;}
.x87_c00261{left:495.733333pt;}
.x2d_c00261{left:498.533333pt;}
.x99_c00261{left:499.866667pt;}
.x59_c00261{left:501.066667pt;}
.x16f_c00261{left:503.866667pt;}
.x15_c00261{left:505.200000pt;}
.x44_c00261{left:507.466667pt;}
.x168_c00261{left:508.400000pt;}
.x73_c00261{left:509.733333pt;}
.xf_c00261{left:511.066667pt;}
.x4_c00261{left:513.066667pt;}
.x16_c00261{left:515.066667pt;}
.x96_c00261{left:516.133333pt;}
.x45_c00261{left:517.333333pt;}
.x54_c00261{left:518.800000pt;}
.x160_c00261{left:519.733333pt;}
.x74_c00261{left:520.933333pt;}
.xa0_c00261{left:522.133333pt;}
.x161_c00261{left:523.466667pt;}
.x1f_c00261{left:525.466667pt;}
.x24_c00261{left:526.533333pt;}
.x7f_c00261{left:530.533333pt;}
.x64_c00261{left:531.866667pt;}
.x10_c00261{left:533.733333pt;}
.x88_c00261{left:535.066667pt;}
.x3f_c00261{left:536.000000pt;}
.x78_c00261{left:537.200000pt;}
.x3a_c00261{left:538.266667pt;}
.x5_c00261{left:540.000000pt;}
.x163_c00261{left:542.666667pt;}
.x2e_c00261{left:543.600000pt;}
.x16a_c00261{left:545.200000pt;}
.x46_c00261{left:548.400000pt;}
.x82_c00261{left:550.533333pt;}
.x2f_c00261{left:551.866667pt;}
.x9b_c00261{left:554.000000pt;}
.x40_c00261{left:555.200000pt;}
.x25_c00261{left:556.666667pt;}
.x60_c00261{left:558.133333pt;}
.x4f_c00261{left:560.800000pt;}
.x6a_c00261{left:562.533333pt;}
.x17_c00261{left:566.266667pt;}
.x6_c00261{left:567.466667pt;}
.x35_c00261{left:568.533333pt;}
.x26_c00261{left:570.400000pt;}
.x18_c00261{left:575.600000pt;}
.x89_c00261{left:578.533333pt;}
.x20_c00261{left:581.466667pt;}
.x6b_c00261{left:583.600000pt;}
.x7_c00261{left:584.800000pt;}
.x36_c00261{left:586.400000pt;}
.x9c_c00261{left:587.333333pt;}
.x61_c00261{left:589.200000pt;}
.x75_c00261{left:590.666667pt;}
.x172_c00261{left:591.733333pt;}
.x4a_c00261{left:594.800000pt;}
.x5a_c00261{left:598.666667pt;}
.x8f_c00261{left:599.733333pt;}
.x79_c00261{left:600.800000pt;}
.x97_c00261{left:603.066667pt;}
.x3b_c00261{left:604.400000pt;}
.x11_c00261{left:605.733333pt;}
.x16b_c00261{left:607.600000pt;}
.x30_c00261{left:608.533333pt;}
.x171_c00261{left:609.733333pt;}
.x47_c00261{left:611.066667pt;}
.x8_c00261{left:612.933333pt;}
.x55_c00261{left:614.533333pt;}
.x93_c00261{left:616.266667pt;}
.x27_c00261{left:617.733333pt;}
.x90_c00261{left:618.933333pt;}
.x41_c00261{left:619.866667pt;}
.x166_c00261{left:620.800000pt;}
.x5b_c00261{left:622.000000pt;}
.x31_c00261{left:623.600000pt;}
.x37_c00261{left:624.800000pt;}
.x50_c00261{left:627.066667pt;}
.x83_c00261{left:628.000000pt;}
.x4b_c00261{left:629.333333pt;}
.x9_c00261{left:630.533333pt;}
.x8e_c00261{left:631.733333pt;}
.x62_c00261{left:633.066667pt;}
.x7a_c00261{left:634.666667pt;}
.x84_c00261{left:635.733333pt;}
.x32_c00261{left:637.333333pt;}
.x12_c00261{left:638.666667pt;}
.x98_c00261{left:640.133333pt;}
.xa_c00261{left:644.000000pt;}
.x42_c00261{left:645.733333pt;}
.x3c_c00261{left:647.866667pt;}
.x19_c00261{left:650.533333pt;}
.xa2_c00261{left:654.933333pt;}
.x21_c00261{left:656.666667pt;}
.x91_c00261{left:657.600000pt;}
.x1a_c00261{left:658.533333pt;}
.x76_c00261{left:659.466667pt;}
.x94_c00261{left:661.733333pt;}
.x9d_c00261{left:662.933333pt;}
.x65_c00261{left:664.666667pt;}
.x4c_c00261{left:666.400000pt;}
.x8b_c00261{left:667.866667pt;}
.x71_c00261{left:669.866667pt;}
.x28_c00261{left:671.866667pt;}
.x6c_c00261{left:673.866667pt;}
.x33_c00261{left:676.000000pt;}
.x29_c00261{left:679.600000pt;}
.x16c_c00261{left:680.533333pt;}
.x51_c00261{left:681.466667pt;}
.x8a_c00261{left:683.200000pt;}
.x4d_c00261{left:684.266667pt;}
.x5c_c00261{left:686.266667pt;}
.x6f_c00261{left:687.466667pt;}
.x169_c00261{left:688.666667pt;}
.x1b_c00261{left:689.866667pt;}
.x7b_c00261{left:691.600000pt;}
.x13_c00261{left:692.800000pt;}
.x56_c00261{left:694.000000pt;}
.x85_c00261{left:694.933333pt;}
.x48_c00261{left:696.800000pt;}
.xb_c00261{left:699.733333pt;}
.x6d_c00261{left:700.800000pt;}
.x167_c00261{left:701.733333pt;}
.x9a_c00261{left:703.066667pt;}
.x34_c00261{left:704.133333pt;}
.x77_c00261{left:705.200000pt;}
.x3d_c00261{left:707.333333pt;}
.x95_c00261{left:708.800000pt;}
.x2a_c00261{left:710.666667pt;}
.x5d_c00261{left:711.866667pt;}
.x66_c00261{left:713.600000pt;}
.x80_c00261{left:715.200000pt;}
.x1c_c00261{left:716.133333pt;}
.xc_c00261{left:717.600000pt;}
.x22_c00261{left:720.933333pt;}
.x63_c00261{left:722.933333pt;}
.xa3_c00261{left:724.800000pt;}
.x38_c00261{left:725.866667pt;}
.x43_c00261{left:727.066667pt;}
.x2b_c00261{left:728.933333pt;}
.x5e_c00261{left:730.400000pt;}
.xd_c00261{left:731.733333pt;}
.x14_c00261{left:735.333333pt;}
.x57_c00261{left:736.666667pt;}
.x92_c00261{left:739.466667pt;}
.x67_c00261{left:741.733333pt;}
.x8c_c00261{left:743.466667pt;}
.x164_c00261{left:744.666667pt;}
.x7c_c00261{left:746.000000pt;}
.x1d_c00261{left:747.866667pt;}
.xa1_c00261{left:749.200000pt;}
.x3e_c00261{left:750.133333pt;}
.x4e_c00261{left:751.466667pt;}
.x70_c00261{left:753.466667pt;}
.x16d_c00261{left:754.533333pt;}
.x69_c00261{left:755.466667pt;}
.x86_c00261{left:756.400000pt;}
.x23_c00261{left:759.066667pt;}
.x68_c00261{left:760.266667pt;}
.x52_c00261{left:762.000000pt;}
.x8d_c00261{left:764.533333pt;}
.x165_c00261{left:767.333333pt;}
.x16e_c00261{left:769.200000pt;}
.x9e_c00261{left:770.133333pt;}
.x162_c00261{left:772.533333pt;}
.x9f_c00261{left:777.866667pt;}
.x170_c00261{left:779.066667pt;}
.x7e_c00261{left:780.000000pt;}
.x173_c00261{left:789.200000pt;}
}





/* 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_c00262 {
    display:none;
  }
  .loading-indicator_c00262.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00262 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_c00262 { 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_c00262" -> "#page-container .classname_c00262")
 */
.pf_c00262 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00262 { /* 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_c00262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00262 { /* 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_c00262 { /* 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_c00262 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00262 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00262 {overflow:visible;}
  }
}
.c_c00262 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00262 { /* 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_c00262:after { /* webkit #35443 */
  content: '';
}
.t_c00262:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00262 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 */
}
.__c00262 { /* 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_c00262 { /* info for Javascript */
  display:none;
}
.l_c00262 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00262 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00262 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00262: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_c00262 {
    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_c00262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00262.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_c00262 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00262;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.000000;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;}
.mb6_c00262{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m76_c00262{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00262{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00262{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m135_c00262{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m81_c00262{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m66_c00262{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m96_c00262{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m12_c00262{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00262{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m29_c00262{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m95_c00262{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m37_c00262{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mea_c00262{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m46_c00262{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00262{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m122_c00262{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m49_c00262{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00262{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00262{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m98_c00262{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00262{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.md9_c00262{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.me9_c00262{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00262{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00262{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00262{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.md5_c00262{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c00262{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m13f_c00262{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00262{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mef_c00262{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m64_c00262{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00262{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00262{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m27_c00262{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m140_c00262{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m90_c00262{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m54_c00262{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m28_c00262{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m5_c00262{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md1_c00262{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mba_c00262{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m74_c00262{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00262{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m50_c00262{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m83_c00262{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00262{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m129_c00262{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00262{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m18_c00262{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00262{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m7_c00262{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00262{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m42_c00262{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00262{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00262{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m119_c00262{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m3_c00262{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m57_c00262{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m11_c00262{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m87_c00262{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00262{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m91_c00262{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00262{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mee_c00262{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00262{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m118_c00262{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00262{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m32_c00262{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m23_c00262{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00262{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00262{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me7_c00262{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m102_c00262{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m25_c00262{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m86_c00262{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00262{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00262{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00262{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m36_c00262{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4_c00262{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mda_c00262{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00262{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m85_c00262{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00262{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m93_c00262{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m43_c00262{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00262{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.me0_c00262{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00262{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m56_c00262{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m75_c00262{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m99_c00262{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m114_c00262{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00262{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m72_c00262{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10_c00262{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00262{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md6_c00262{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m138_c00262{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00262{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m117_c00262{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00262{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m30_c00262{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md4_c00262{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00262{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mca_c00262{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00262{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m33_c00262{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me6_c00262{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.me5_c00262{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md_c00262{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00262{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m71_c00262{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m92_c00262{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m84_c00262{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m39_c00262{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00262{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m31_c00262{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00262{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m9_c00262{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m51_c00262{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00262{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00262{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00262{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m67_c00262{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me2_c00262{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m26_c00262{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00262{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mac_c00262{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m139_c00262{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m70_c00262{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m58_c00262{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m16_c00262{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m73_c00262{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00262{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00262{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m100_c00262{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mde_c00262{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m120_c00262{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m41_c00262{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m20_c00262{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00262{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m94_c00262{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m53_c00262{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m82_c00262{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m97_c00262{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2_c00262{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00262{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00262{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00262{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00262{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.me_c00262{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m38_c00262{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00262{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00262{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00262{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00262{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m89_c00262{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m14_c00262{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6_c00262{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m63_c00262{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00262{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00262{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00262{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me8_c00262{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00262{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m24_c00262{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m61_c00262{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m112_c00262{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m44_c00262{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00262{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00262{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m69_c00262{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00262{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00262{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00262{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m113_c00262{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m130_c00262{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m21_c00262{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mf_c00262{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.maf_c00262{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00262{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00262{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m15_c00262{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00262{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m110_c00262{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00262{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00262{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mff_c00262{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00262{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00262{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00262{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00262{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m13a_c00262{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00262{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m22_c00262{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m59_c00262{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m17_c00262{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m35_c00262{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00262{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00262{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00262{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m34_c00262{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00262{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m111_c00262{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me4_c00262{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00262{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m55_c00262{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00262{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m52_c00262{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mce_c00262{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00262{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00262{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00262{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00262{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m79_c00262{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m48_c00262{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00262{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00262{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m68_c00262{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m19_c00262{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00262{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.maa_c00262{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m116_c00262{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m45_c00262{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00262{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00262{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.me1_c00262{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00262{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00262{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m60_c00262{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m115_c00262{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m40_c00262{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m126_c00262{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m13_c00262{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md8_c00262{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00262{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00262{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m47_c00262{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00262{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00262{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.me3_c00262{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00262{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00262{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00262{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.med_c00262{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m88_c00262{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00262{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00262{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m62_c00262{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00262{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);}
.m103_c00262{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc_c00262{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mad_c00262{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m121_c00262{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md3_c00262{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md7_c00262{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m78_c00262{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.meb_c00262{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m80_c00262{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00262{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m125_c00262{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00262{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00262{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m13d_c00262{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00262{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m108_c00262{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m134_c00262{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m77_c00262{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m13e_c00262{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00262{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m104_c00262{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m107_c00262{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mb_c00262{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00262{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00262{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m123_c00262{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m106_c00262{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mae_c00262{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00262{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.md0_c00262{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m105_c00262{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00262{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m101_c00262{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00262{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m137_c00262{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m131_c00262{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00262{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00262{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m13b_c00262{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m109_c00262{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m65_c00262{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00262{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00262{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00262{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00262{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00262{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00262{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma_c00262{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00262{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m133_c00262{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mec_c00262{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00262{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m127_c00262{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00262{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m132_c00262{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mab_c00262{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m124_c00262{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m136_c00262{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00262{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00262{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00262{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00262{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00262{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00262{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.m128_c00262{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m0_c00262{transform:matrix(0.466000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466000,0.000000,0.000000,0.250000,0,0);}
.md2_c00262{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls0_c00262{letter-spacing:0.000000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{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__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00262{word-spacing:-9.899637px;}
.ws5_c00262{word-spacing:-8.657289px;}
.ws0_c00262{word-spacing:-7.857143px;}
.ws3_c00262{word-spacing:-7.750000px;}
.ws1_c00262{word-spacing:-2.857143px;}
.ws7_c00262{word-spacing:0.000000px;}
.ws6_c00262{word-spacing:11.666667px;}
.ws2_c00262{word-spacing:14.166667px;}
.fc0_c00262{color:transparent;}
.fs5_c00262{font-size:48.000000px;}
.fs3_c00262{font-size:54.000000px;}
.fs2_c00262{font-size:60.000000px;}
.fs4_c00262{font-size:66.000000px;}
.fs1_c00262{font-size:72.000000px;}
.fs0_c00262{font-size:84.000000px;}
.y0_c00262{bottom:0.000000px;}
.y75_c00262{bottom:182.550000px;}
.y37_c00262{bottom:183.300000px;}
.y74_c00262{bottom:197.700000px;}
.y36_c00262{bottom:198.000000px;}
.y73_c00262{bottom:211.800000px;}
.y35_c00262{bottom:212.100000px;}
.y34_c00262{bottom:226.500000px;}
.y72_c00262{bottom:240.600000px;}
.y33_c00262{bottom:240.900000px;}
.y32_c00262{bottom:255.150000px;}
.y71_c00262{bottom:255.300000px;}
.y31_c00262{bottom:269.550000px;}
.y70_c00262{bottom:270.000000px;}
.y6f_c00262{bottom:284.400000px;}
.y30_c00262{bottom:284.700000px;}
.y6e_c00262{bottom:298.500000px;}
.y2f_c00262{bottom:299.100000px;}
.y6d_c00262{bottom:312.900000px;}
.y2e_c00262{bottom:313.050000px;}
.y2d_c00262{bottom:327.150000px;}
.y6c_c00262{bottom:327.300000px;}
.y2c_c00262{bottom:341.250000px;}
.y6b_c00262{bottom:341.400000px;}
.y6a_c00262{bottom:355.800000px;}
.y2b_c00262{bottom:355.950000px;}
.y2a_c00262{bottom:370.350000px;}
.y69_c00262{bottom:370.500000px;}
.y68_c00262{bottom:384.150000px;}
.y29_c00262{bottom:384.450000px;}
.y28_c00262{bottom:398.100000px;}
.y67_c00262{bottom:398.850000px;}
.y66_c00262{bottom:412.950000px;}
.y27_c00262{bottom:413.250000px;}
.y26_c00262{bottom:426.900000px;}
.y65_c00262{bottom:427.350000px;}
.y25_c00262{bottom:441.000000px;}
.y64_c00262{bottom:442.050000px;}
.y24_c00262{bottom:455.400000px;}
.y63_c00262{bottom:456.450000px;}
.y23_c00262{bottom:470.550000px;}
.y22_c00262{bottom:484.650000px;}
.y62_c00262{bottom:484.950000px;}
.y21_c00262{bottom:498.750000px;}
.y61_c00262{bottom:499.350000px;}
.y20_c00262{bottom:512.400000px;}
.y60_c00262{bottom:514.500000px;}
.y1f_c00262{bottom:527.100000px;}
.y5f_c00262{bottom:528.300000px;}
.y5e_c00262{bottom:543.000000px;}
.y5d_c00262{bottom:557.400000px;}
.y5c_c00262{bottom:571.800000px;}
.y5b_c00262{bottom:586.200000px;}
.y5a_c00262{bottom:600.900000px;}
.y1e_c00262{bottom:603.750000px;}
.y59_c00262{bottom:614.550000px;}
.y1d_c00262{bottom:622.500000px;}
.y58_c00262{bottom:629.550000px;}
.y57_c00262{bottom:642.900000px;}
.y1c_c00262{bottom:656.400000px;}
.y56_c00262{bottom:657.300000px;}
.y55_c00262{bottom:671.400000px;}
.y1b_c00262{bottom:674.700000px;}
.y54_c00262{bottom:685.800000px;}
.y1a_c00262{bottom:692.250000px;}
.y53_c00262{bottom:699.900000px;}
.y19_c00262{bottom:709.950000px;}
.y52_c00262{bottom:714.300000px;}
.y51_c00262{bottom:728.700000px;}
.y18_c00262{bottom:742.800000px;}
.y50_c00262{bottom:743.400000px;}
.y17_c00262{bottom:750.000000px;}
.y4f_c00262{bottom:758.100000px;}
.y16_c00262{bottom:767.700000px;}
.y4e_c00262{bottom:772.200000px;}
.y15_c00262{bottom:785.700000px;}
.y4d_c00262{bottom:786.600000px;}
.y4c_c00262{bottom:800.700000px;}
.y14_c00262{bottom:803.400000px;}
.y4b_c00262{bottom:815.100000px;}
.y13_c00262{bottom:821.400000px;}
.y4a_c00262{bottom:829.500000px;}
.y12_c00262{bottom:838.650000px;}
.y49_c00262{bottom:843.900000px;}
.y11_c00262{bottom:856.650000px;}
.y48_c00262{bottom:858.000000px;}
.y47_c00262{bottom:872.400000px;}
.y10_c00262{bottom:874.350000px;}
.y46_c00262{bottom:886.500000px;}
.yf_c00262{bottom:892.050000px;}
.y45_c00262{bottom:900.900000px;}
.ye_c00262{bottom:910.050000px;}
.y44_c00262{bottom:915.300000px;}
.yd_c00262{bottom:927.750000px;}
.y43_c00262{bottom:929.400000px;}
.y42_c00262{bottom:943.500000px;}
.yc_c00262{bottom:945.750000px;}
.y41_c00262{bottom:958.200000px;}
.yb_c00262{bottom:963.450000px;}
.y40_c00262{bottom:972.300000px;}
.ya_c00262{bottom:980.700000px;}
.y3f_c00262{bottom:987.000000px;}
.y9_c00262{bottom:999.000000px;}
.y3e_c00262{bottom:1001.100000px;}
.y3d_c00262{bottom:1015.200000px;}
.y8_c00262{bottom:1016.700000px;}
.y3c_c00262{bottom:1029.900000px;}
.y7_c00262{bottom:1036.500000px;}
.y3b_c00262{bottom:1044.000000px;}
.y6_c00262{bottom:1056.150000px;}
.y3a_c00262{bottom:1058.400000px;}
.y5_c00262{bottom:1074.900000px;}
.y4_c00262{bottom:1092.900000px;}
.y39_c00262{bottom:1096.500000px;}
.y38_c00262{bottom:1114.200000px;}
.y3_c00262{bottom:1114.500000px;}
.y2_c00262{bottom:1140.150000px;}
.y1_c00262{bottom:1141.200000px;}
.h7_c00262{height:48.000000px;}
.h5_c00262{height:54.000000px;}
.h4_c00262{height:60.000000px;}
.h6_c00262{height:66.000000px;}
.h3_c00262{height:72.000000px;}
.h2_c00262{height:84.000000px;}
.h1_c00262{height:1269.000000px;}
.h0_c00262{height:1269.359985px;}
.w1_c00262{width:961.500000px;}
.w0_c00262{width:961.560058px;}
.x0_c00262{left:0.000000px;}
.x20_c00262{left:84.900000px;}
.xc_c00262{left:86.400000px;}
.xa1_c00262{left:87.600000px;}
.x2a_c00262{left:88.950000px;}
.x84_c00262{left:97.950000px;}
.x3_c00262{left:101.100000px;}
.x1c_c00262{left:103.050000px;}
.x3a_c00262{left:105.000000px;}
.x5d_c00262{left:106.050000px;}
.x85_c00262{left:107.250000px;}
.x7e_c00262{left:108.750000px;}
.x2b_c00262{left:112.650000px;}
.x8a_c00262{left:115.200000px;}
.x7c_c00262{left:117.000000px;}
.x73_c00262{left:121.500000px;}
.x95_c00262{left:122.850000px;}
.x4c_c00262{left:124.350000px;}
.x9f_c00262{left:125.400000px;}
.x6b_c00262{left:126.600000px;}
.x79_c00262{left:128.100000px;}
.xd_c00262{left:129.300000px;}
.x1d_c00262{left:130.350000px;}
.x8e_c00262{left:131.700000px;}
.x5e_c00262{left:134.100000px;}
.x65_c00262{left:136.500000px;}
.x9c_c00262{left:137.550000px;}
.xa6_c00262{left:139.500000px;}
.x62_c00262{left:140.550000px;}
.x43_c00262{left:142.650000px;}
.x21_c00262{left:144.000000px;}
.x6c_c00262{left:145.050000px;}
.x9d_c00262{left:146.400000px;}
.x30_c00262{left:148.050000px;}
.x77_c00262{left:150.300000px;}
.x86_c00262{left:152.100000px;}
.x34_c00262{left:153.450000px;}
.x7f_c00262{left:154.650000px;}
.x48_c00262{left:157.350000px;}
.x13_c00262{left:158.400000px;}
.x52_c00262{left:160.200000px;}
.x4d_c00262{left:163.650000px;}
.x4_c00262{left:164.850000px;}
.x63_c00262{left:166.800000px;}
.x72_c00262{left:168.000000px;}
.x14_c00262{left:169.200000px;}
.x25_c00262{left:170.250000px;}
.x3b_c00262{left:172.650000px;}
.x75_c00262{left:175.500000px;}
.x87_c00262{left:177.000000px;}
.xa2_c00262{left:178.050000px;}
.x8b_c00262{left:180.750000px;}
.x49_c00262{left:182.550000px;}
.x1e_c00262{left:184.050000px;}
.x66_c00262{left:185.100000px;}
.x80_c00262{left:186.300000px;}
.x9a_c00262{left:190.500000px;}
.x6f_c00262{left:192.150000px;}
.xe_c00262{left:193.800000px;}
.x5f_c00262{left:195.600000px;}
.x96_c00262{left:199.050000px;}
.x31_c00262{left:200.250000px;}
.x53_c00262{left:201.600000px;}
.x5_c00262{left:202.950000px;}
.x22_c00262{left:204.750000px;}
.x35_c00262{left:205.950000px;}
.x59_c00262{left:208.200000px;}
.x15_c00262{left:210.900000px;}
.x7a_c00262{left:212.400000px;}
.x74_c00262{left:213.600000px;}
.x36_c00262{left:214.950000px;}
.x44_c00262{left:216.150000px;}
.x70_c00262{left:217.350000px;}
.xa4_c00262{left:218.550000px;}
.x3c_c00262{left:220.500000px;}
.xf_c00262{left:223.650000px;}
.x9e_c00262{left:225.300000px;}
.x78_c00262{left:228.000000px;}
.x1f_c00262{left:229.050000px;}
.x26_c00262{left:230.400000px;}
.x2c_c00262{left:231.750000px;}
.x6d_c00262{left:232.950000px;}
.x16_c00262{left:234.000000px;}
.x32_c00262{left:235.950000px;}
.x90_c00262{left:237.750000px;}
.x40_c00262{left:238.800000px;}
.x67_c00262{left:241.200000px;}
.x6_c00262{left:245.100000px;}
.x82_c00262{left:250.200000px;}
.x4e_c00262{left:251.850000px;}
.xa0_c00262{left:253.950000px;}
.x23_c00262{left:255.900000px;}
.x60_c00262{left:258.750000px;}
.x2d_c00262{left:261.300000px;}
.xa5_c00262{left:263.100000px;}
.x41_c00262{left:264.300000px;}
.x45_c00262{left:266.850000px;}
.x7d_c00262{left:269.250000px;}
.xa7_c00262{left:270.300000px;}
.x37_c00262{left:271.500000px;}
.x150_c00262{left:272.550000px;}
.x71_c00262{left:273.900000px;}
.x24_c00262{left:274.950000px;}
.x17_c00262{left:276.150000px;}
.x93_c00262{left:277.200000px;}
.x7_c00262{left:278.250000px;}
.x38_c00262{left:282.000000px;}
.x10_c00262{left:283.050000px;}
.x8f_c00262{left:284.250000px;}
.xa3_c00262{left:285.750000px;}
.x55_c00262{left:287.700000px;}
.x27_c00262{left:289.050000px;}
.x68_c00262{left:292.200000px;}
.x64_c00262{left:293.850000px;}
.x56_c00262{left:295.200000px;}
.x97_c00262{left:297.300000px;}
.x6e_c00262{left:298.800000px;}
.x94_c00262{left:299.850000px;}
.x7b_c00262{left:302.400000px;}
.x61_c00262{left:304.050000px;}
.xa8_c00262{left:305.550000px;}
.x18_c00262{left:310.050000px;}
.x8c_c00262{left:311.400000px;}
.x81_c00262{left:314.100000px;}
.x8_c00262{left:315.300000px;}
.x46_c00262{left:318.600000px;}
.x3d_c00262{left:320.550000px;}
.x98_c00262{left:324.600000px;}
.x69_c00262{left:326.400000px;}
.x1_c00262{left:327.600000px;}
.x4f_c00262{left:329.700000px;}
.x83_c00262{left:331.950000px;}
.x9_c00262{left:333.300000px;}
.x151_c00262{left:335.550000px;}
.x9b_c00262{left:337.500000px;}
.x5a_c00262{left:339.600000px;}
.x4a_c00262{left:340.950000px;}
.x33_c00262{left:342.150000px;}
.x54_c00262{left:343.200000px;}
.x42_c00262{left:345.750000px;}
.x50_c00262{left:348.750000px;}
.x19_c00262{left:351.450000px;}
.x57_c00262{left:354.300000px;}
.x76_c00262{left:356.550000px;}
.x8d_c00262{left:358.500000px;}
.x28_c00262{left:360.000000px;}
.x88_c00262{left:362.400000px;}
.x11_c00262{left:364.050000px;}
.x47_c00262{left:365.100000px;}
.x3e_c00262{left:368.100000px;}
.x29_c00262{left:371.100000px;}
.x51_c00262{left:373.950000px;}
.x5b_c00262{left:375.600000px;}
.xa_c00262{left:378.000000px;}
.x1a_c00262{left:379.500000px;}
.x58_c00262{left:381.000000px;}
.x2e_c00262{left:382.350000px;}
.x91_c00262{left:384.900000px;}
.x4b_c00262{left:388.500000px;}
.x39_c00262{left:391.500000px;}
.x5c_c00262{left:393.300000px;}
.x6a_c00262{left:395.550000px;}
.x99_c00262{left:397.950000px;}
.x3f_c00262{left:399.000000px;}
.xb_c00262{left:401.100000px;}
.x1b_c00262{left:403.950000px;}
.x92_c00262{left:406.200000px;}
.x12_c00262{left:408.300000px;}
.x89_c00262{left:409.950000px;}
.x2f_c00262{left:420.900000px;}
.x152_c00262{left:440.250000px;}
.x163_c00262{left:441.750000px;}
.x146_c00262{left:443.250000px;}
.xa9_c00262{left:444.300000px;}
.x140_c00262{left:449.250000px;}
.x15e_c00262{left:457.050000px;}
.xc4_c00262{left:458.250000px;}
.xcc_c00262{left:459.300000px;}
.xb0_c00262{left:461.850000px;}
.x111_c00262{left:463.200000px;}
.x14d_c00262{left:464.550000px;}
.xe5_c00262{left:465.900000px;}
.x103_c00262{left:467.850000px;}
.x159_c00262{left:469.950000px;}
.x14b_c00262{left:471.750000px;}
.x11b_c00262{left:474.600000px;}
.x134_c00262{left:476.250000px;}
.xcd_c00262{left:477.300000px;}
.x160_c00262{left:478.800000px;}
.x156_c00262{left:479.850000px;}
.xbe_c00262{left:480.900000px;}
.xd4_c00262{left:482.250000px;}
.xf4_c00262{left:484.200000px;}
.xb1_c00262{left:486.000000px;}
.x143_c00262{left:488.100000px;}
.xaa_c00262{left:490.350000px;}
.x16b_c00262{left:491.700000px;}
.xec_c00262{left:493.350000px;}
.x11e_c00262{left:494.400000px;}
.x13e_c00262{left:496.050000px;}
.x157_c00262{left:498.150000px;}
.x14e_c00262{left:499.800000px;}
.xed_c00262{left:500.850000px;}
.xd5_c00262{left:502.050000px;}
.xf5_c00262{left:504.000000px;}
.x104_c00262{left:505.350000px;}
.xdc_c00262{left:507.600000px;}
.x158_c00262{left:508.950000px;}
.x139_c00262{left:511.350000px;}
.xf9_c00262{left:514.500000px;}
.xdd_c00262{left:517.350000px;}
.xe6_c00262{left:519.150000px;}
.x121_c00262{left:520.500000px;}
.x137_c00262{left:522.900000px;}
.xff_c00262{left:525.900000px;}
.xb2_c00262{left:527.100000px;}
.xbf_c00262{left:529.500000px;}
.x10d_c00262{left:531.300000px;}
.x164_c00262{left:532.500000px;}
.xe7_c00262{left:534.600000px;}
.x108_c00262{left:535.650000px;}
.x13a_c00262{left:536.850000px;}
.xb8_c00262{left:538.200000px;}
.xc5_c00262{left:540.600000px;}
.xde_c00262{left:542.250000px;}
.x135_c00262{left:544.950000px;}
.xb3_c00262{left:546.600000px;}
.xee_c00262{left:549.150000px;}
.x123_c00262{left:551.100000px;}
.xd6_c00262{left:553.500000px;}
.xfa_c00262{left:555.150000px;}
.xdf_c00262{left:556.650000px;}
.xb9_c00262{left:560.100000px;}
.xab_c00262{left:561.600000px;}
.xf6_c00262{left:563.100000px;}
.x141_c00262{left:567.450000px;}
.x15a_c00262{left:568.950000px;}
.xc6_c00262{left:570.150000px;}
.x12c_c00262{left:571.350000px;}
.x117_c00262{left:573.900000px;}
.x112_c00262{left:575.250000px;}
.x126_c00262{left:577.350000px;}
.xce_c00262{left:578.400000px;}
.x11f_c00262{left:579.750000px;}
.x129_c00262{left:581.700000px;}
.x153_c00262{left:583.200000px;}
.xc7_c00262{left:584.250000px;}
.x105_c00262{left:585.300000px;}
.x169_c00262{left:587.700000px;}
.x147_c00262{left:589.650000px;}
.x10c_c00262{left:591.150000px;}
.x12b_c00262{left:592.200000px;}
.xfb_c00262{left:593.250000px;}
.xc0_c00262{left:594.600000px;}
.xba_c00262{left:596.100000px;}
.x118_c00262{left:598.800000px;}
.x13b_c00262{left:600.150000px;}
.xef_c00262{left:601.350000px;}
.x106_c00262{left:604.800000px;}
.xb4_c00262{left:606.300000px;}
.x136_c00262{left:607.950000px;}
.x13f_c00262{left:609.150000px;}
.x130_c00262{left:610.500000px;}
.x100_c00262{left:611.550000px;}
.xac_c00262{left:613.800000px;}
.x12a_c00262{left:617.400000px;}
.xf0_c00262{left:618.600000px;}
.xc1_c00262{left:620.550000px;}
.x15f_c00262{left:621.900000px;}
.xe0_c00262{left:623.250000px;}
.x142_c00262{left:624.600000px;}
.x166_c00262{left:625.950000px;}
.xcf_c00262{left:627.300000px;}
.x124_c00262{left:629.550000px;}
.x131_c00262{left:631.350000px;}
.xd7_c00262{left:632.400000px;}
.x12d_c00262{left:634.350000px;}
.x11c_c00262{left:635.400000px;}
.xfc_c00262{left:636.450000px;}
.xc2_c00262{left:639.600000px;}
.x109_c00262{left:641.100000px;}
.x113_c00262{left:642.900000px;}
.xfd_c00262{left:645.150000px;}
.xc8_c00262{left:646.500000px;}
.x15d_c00262{left:647.550000px;}
.x122_c00262{left:648.750000px;}
.x101_c00262{left:650.100000px;}
.xd8_c00262{left:651.900000px;}
.x144_c00262{left:653.550000px;}
.xb5_c00262{left:654.600000px;}
.x12e_c00262{left:656.700000px;}
.x10f_c00262{left:658.650000px;}
.x11d_c00262{left:660.600000px;}
.x119_c00262{left:662.100000px;}
.x102_c00262{left:663.750000px;}
.xfe_c00262{left:664.950000px;}
.x154_c00262{left:666.000000px;}
.xd0_c00262{left:667.950000px;}
.xe1_c00262{left:669.300000px;}
.xd9_c00262{left:670.650000px;}
.x161_c00262{left:672.450000px;}
.xc9_c00262{left:673.500000px;}
.xbb_c00262{left:675.600000px;}
.x127_c00262{left:677.100000px;}
.x145_c00262{left:678.300000px;}
.xf7_c00262{left:679.650000px;}
.xad_c00262{left:681.450000px;}
.xf1_c00262{left:683.400000px;}
.xb6_c00262{left:685.200000px;}
.xe8_c00262{left:687.300000px;}
.xc3_c00262{left:689.250000px;}
.x10a_c00262{left:690.450000px;}
.xe2_c00262{left:692.400000px;}
.x132_c00262{left:693.600000px;}
.x13c_c00262{left:695.850000px;}
.xae_c00262{left:697.950000px;}
.x15b_c00262{left:699.300000px;}
.xca_c00262{left:700.800000px;}
.xda_c00262{left:702.750000px;}
.xb7_c00262{left:706.500000px;}
.x10e_c00262{left:708.150000px;}
.xe9_c00262{left:709.950000px;}
.x148_c00262{left:711.300000px;}
.xcb_c00262{left:712.350000px;}
.xbc_c00262{left:715.200000px;}
.x12f_c00262{left:716.400000px;}
.x155_c00262{left:717.900000px;}
.xd1_c00262{left:719.400000px;}
.xf2_c00262{left:720.450000px;}
.x138_c00262{left:721.500000px;}
.xdb_c00262{left:724.050000px;}
.x133_c00262{left:725.250000px;}
.x13d_c00262{left:726.450000px;}
.x114_c00262{left:728.550000px;}
.xe3_c00262{left:732.000000px;}
.xf3_c00262{left:734.850000px;}
.x10b_c00262{left:735.900000px;}
.x120_c00262{left:737.850000px;}
.x11a_c00262{left:739.200000px;}
.xd2_c00262{left:742.800000px;}
.xea_c00262{left:744.150000px;}
.x128_c00262{left:745.500000px;}
.x15c_c00262{left:746.550000px;}
.x16a_c00262{left:748.200000px;}
.x110_c00262{left:749.400000px;}
.x115_c00262{left:750.900000px;}
.xaf_c00262{left:751.950000px;}
.x2_c00262{left:753.450000px;}
.xf8_c00262{left:754.950000px;}
.x149_c00262{left:756.000000px;}
.xbd_c00262{left:757.350000px;}
.xd3_c00262{left:758.700000px;}
.xeb_c00262{left:761.100000px;}
.x168_c00262{left:763.050000px;}
.x125_c00262{left:765.300000px;}
.xe4_c00262{left:766.500000px;}
.x14a_c00262{left:769.350000px;}
.x107_c00262{left:774.000000px;}
.x14c_c00262{left:775.200000px;}
.x116_c00262{left:776.850000px;}
.x14f_c00262{left:777.900000px;}
.x162_c00262{left:778.950000px;}
.x167_c00262{left:780.750000px;}
.x165_c00262{left:784.050000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws4_c00262{word-spacing:-8.799678pt;}
.ws5_c00262{word-spacing:-7.695368pt;}
.ws0_c00262{word-spacing:-6.984127pt;}
.ws3_c00262{word-spacing:-6.888889pt;}
.ws1_c00262{word-spacing:-2.539683pt;}
.ws7_c00262{word-spacing:0.000000pt;}
.ws6_c00262{word-spacing:10.370370pt;}
.ws2_c00262{word-spacing:12.592593pt;}
.fs5_c00262{font-size:42.666667pt;}
.fs3_c00262{font-size:48.000000pt;}
.fs2_c00262{font-size:53.333333pt;}
.fs4_c00262{font-size:58.666667pt;}
.fs1_c00262{font-size:64.000000pt;}
.fs0_c00262{font-size:74.666667pt;}
.y0_c00262{bottom:0.000000pt;}
.y75_c00262{bottom:162.266667pt;}
.y37_c00262{bottom:162.933333pt;}
.y74_c00262{bottom:175.733333pt;}
.y36_c00262{bottom:176.000000pt;}
.y73_c00262{bottom:188.266667pt;}
.y35_c00262{bottom:188.533333pt;}
.y34_c00262{bottom:201.333333pt;}
.y72_c00262{bottom:213.866667pt;}
.y33_c00262{bottom:214.133333pt;}
.y32_c00262{bottom:226.800000pt;}
.y71_c00262{bottom:226.933333pt;}
.y31_c00262{bottom:239.600000pt;}
.y70_c00262{bottom:240.000000pt;}
.y6f_c00262{bottom:252.800000pt;}
.y30_c00262{bottom:253.066667pt;}
.y6e_c00262{bottom:265.333333pt;}
.y2f_c00262{bottom:265.866667pt;}
.y6d_c00262{bottom:278.133333pt;}
.y2e_c00262{bottom:278.266667pt;}
.y2d_c00262{bottom:290.800000pt;}
.y6c_c00262{bottom:290.933333pt;}
.y2c_c00262{bottom:303.333333pt;}
.y6b_c00262{bottom:303.466667pt;}
.y6a_c00262{bottom:316.266667pt;}
.y2b_c00262{bottom:316.400000pt;}
.y2a_c00262{bottom:329.200000pt;}
.y69_c00262{bottom:329.333333pt;}
.y68_c00262{bottom:341.466667pt;}
.y29_c00262{bottom:341.733333pt;}
.y28_c00262{bottom:353.866667pt;}
.y67_c00262{bottom:354.533333pt;}
.y66_c00262{bottom:367.066667pt;}
.y27_c00262{bottom:367.333333pt;}
.y26_c00262{bottom:379.466667pt;}
.y65_c00262{bottom:379.866667pt;}
.y25_c00262{bottom:392.000000pt;}
.y64_c00262{bottom:392.933333pt;}
.y24_c00262{bottom:404.800000pt;}
.y63_c00262{bottom:405.733333pt;}
.y23_c00262{bottom:418.266667pt;}
.y22_c00262{bottom:430.800000pt;}
.y62_c00262{bottom:431.066667pt;}
.y21_c00262{bottom:443.333333pt;}
.y61_c00262{bottom:443.866667pt;}
.y20_c00262{bottom:455.466667pt;}
.y60_c00262{bottom:457.333333pt;}
.y1f_c00262{bottom:468.533333pt;}
.y5f_c00262{bottom:469.600000pt;}
.y5e_c00262{bottom:482.666667pt;}
.y5d_c00262{bottom:495.466667pt;}
.y5c_c00262{bottom:508.266667pt;}
.y5b_c00262{bottom:521.066667pt;}
.y5a_c00262{bottom:534.133333pt;}
.y1e_c00262{bottom:536.666667pt;}
.y59_c00262{bottom:546.266667pt;}
.y1d_c00262{bottom:553.333333pt;}
.y58_c00262{bottom:559.600000pt;}
.y57_c00262{bottom:571.466667pt;}
.y1c_c00262{bottom:583.466667pt;}
.y56_c00262{bottom:584.266667pt;}
.y55_c00262{bottom:596.800000pt;}
.y1b_c00262{bottom:599.733333pt;}
.y54_c00262{bottom:609.600000pt;}
.y1a_c00262{bottom:615.333333pt;}
.y53_c00262{bottom:622.133333pt;}
.y19_c00262{bottom:631.066667pt;}
.y52_c00262{bottom:634.933333pt;}
.y51_c00262{bottom:647.733333pt;}
.y18_c00262{bottom:660.266667pt;}
.y50_c00262{bottom:660.800000pt;}
.y17_c00262{bottom:666.666667pt;}
.y4f_c00262{bottom:673.866667pt;}
.y16_c00262{bottom:682.400000pt;}
.y4e_c00262{bottom:686.400000pt;}
.y15_c00262{bottom:698.400000pt;}
.y4d_c00262{bottom:699.200000pt;}
.y4c_c00262{bottom:711.733333pt;}
.y14_c00262{bottom:714.133333pt;}
.y4b_c00262{bottom:724.533333pt;}
.y13_c00262{bottom:730.133333pt;}
.y4a_c00262{bottom:737.333333pt;}
.y12_c00262{bottom:745.466667pt;}
.y49_c00262{bottom:750.133333pt;}
.y11_c00262{bottom:761.466667pt;}
.y48_c00262{bottom:762.666667pt;}
.y47_c00262{bottom:775.466667pt;}
.y10_c00262{bottom:777.200000pt;}
.y46_c00262{bottom:788.000000pt;}
.yf_c00262{bottom:792.933333pt;}
.y45_c00262{bottom:800.800000pt;}
.ye_c00262{bottom:808.933333pt;}
.y44_c00262{bottom:813.600000pt;}
.yd_c00262{bottom:824.666667pt;}
.y43_c00262{bottom:826.133333pt;}
.y42_c00262{bottom:838.666667pt;}
.yc_c00262{bottom:840.666667pt;}
.y41_c00262{bottom:851.733333pt;}
.yb_c00262{bottom:856.400000pt;}
.y40_c00262{bottom:864.266667pt;}
.ya_c00262{bottom:871.733333pt;}
.y3f_c00262{bottom:877.333333pt;}
.y9_c00262{bottom:888.000000pt;}
.y3e_c00262{bottom:889.866667pt;}
.y3d_c00262{bottom:902.400000pt;}
.y8_c00262{bottom:903.733333pt;}
.y3c_c00262{bottom:915.466667pt;}
.y7_c00262{bottom:921.333333pt;}
.y3b_c00262{bottom:928.000000pt;}
.y6_c00262{bottom:938.800000pt;}
.y3a_c00262{bottom:940.800000pt;}
.y5_c00262{bottom:955.466667pt;}
.y4_c00262{bottom:971.466667pt;}
.y39_c00262{bottom:974.666667pt;}
.y38_c00262{bottom:990.400000pt;}
.y3_c00262{bottom:990.666667pt;}
.y2_c00262{bottom:1013.466667pt;}
.y1_c00262{bottom:1014.400000pt;}
.h7_c00262{height:42.666667pt;}
.h5_c00262{height:48.000000pt;}
.h4_c00262{height:53.333333pt;}
.h6_c00262{height:58.666667pt;}
.h3_c00262{height:64.000000pt;}
.h2_c00262{height:74.666667pt;}
.h1_c00262{height:1128.000000pt;}
.h0_c00262{height:1128.319987pt;}
.w1_c00262{width:854.666667pt;}
.w0_c00262{width:854.720052pt;}
.x0_c00262{left:0.000000pt;}
.x20_c00262{left:75.466667pt;}
.xc_c00262{left:76.800000pt;}
.xa1_c00262{left:77.866667pt;}
.x2a_c00262{left:79.066667pt;}
.x84_c00262{left:87.066667pt;}
.x3_c00262{left:89.866667pt;}
.x1c_c00262{left:91.600000pt;}
.x3a_c00262{left:93.333333pt;}
.x5d_c00262{left:94.266667pt;}
.x85_c00262{left:95.333333pt;}
.x7e_c00262{left:96.666667pt;}
.x2b_c00262{left:100.133333pt;}
.x8a_c00262{left:102.400000pt;}
.x7c_c00262{left:104.000000pt;}
.x73_c00262{left:108.000000pt;}
.x95_c00262{left:109.200000pt;}
.x4c_c00262{left:110.533333pt;}
.x9f_c00262{left:111.466667pt;}
.x6b_c00262{left:112.533333pt;}
.x79_c00262{left:113.866667pt;}
.xd_c00262{left:114.933333pt;}
.x1d_c00262{left:115.866667pt;}
.x8e_c00262{left:117.066667pt;}
.x5e_c00262{left:119.200000pt;}
.x65_c00262{left:121.333333pt;}
.x9c_c00262{left:122.266667pt;}
.xa6_c00262{left:124.000000pt;}
.x62_c00262{left:124.933333pt;}
.x43_c00262{left:126.800000pt;}
.x21_c00262{left:128.000000pt;}
.x6c_c00262{left:128.933333pt;}
.x9d_c00262{left:130.133333pt;}
.x30_c00262{left:131.600000pt;}
.x77_c00262{left:133.600000pt;}
.x86_c00262{left:135.200000pt;}
.x34_c00262{left:136.400000pt;}
.x7f_c00262{left:137.466667pt;}
.x48_c00262{left:139.866667pt;}
.x13_c00262{left:140.800000pt;}
.x52_c00262{left:142.400000pt;}
.x4d_c00262{left:145.466667pt;}
.x4_c00262{left:146.533333pt;}
.x63_c00262{left:148.266667pt;}
.x72_c00262{left:149.333333pt;}
.x14_c00262{left:150.400000pt;}
.x25_c00262{left:151.333333pt;}
.x3b_c00262{left:153.466667pt;}
.x75_c00262{left:156.000000pt;}
.x87_c00262{left:157.333333pt;}
.xa2_c00262{left:158.266667pt;}
.x8b_c00262{left:160.666667pt;}
.x49_c00262{left:162.266667pt;}
.x1e_c00262{left:163.600000pt;}
.x66_c00262{left:164.533333pt;}
.x80_c00262{left:165.600000pt;}
.x9a_c00262{left:169.333333pt;}
.x6f_c00262{left:170.800000pt;}
.xe_c00262{left:172.266667pt;}
.x5f_c00262{left:173.866667pt;}
.x96_c00262{left:176.933333pt;}
.x31_c00262{left:178.000000pt;}
.x53_c00262{left:179.200000pt;}
.x5_c00262{left:180.400000pt;}
.x22_c00262{left:182.000000pt;}
.x35_c00262{left:183.066667pt;}
.x59_c00262{left:185.066667pt;}
.x15_c00262{left:187.466667pt;}
.x7a_c00262{left:188.800000pt;}
.x74_c00262{left:189.866667pt;}
.x36_c00262{left:191.066667pt;}
.x44_c00262{left:192.133333pt;}
.x70_c00262{left:193.200000pt;}
.xa4_c00262{left:194.266667pt;}
.x3c_c00262{left:196.000000pt;}
.xf_c00262{left:198.800000pt;}
.x9e_c00262{left:200.266667pt;}
.x78_c00262{left:202.666667pt;}
.x1f_c00262{left:203.600000pt;}
.x26_c00262{left:204.800000pt;}
.x2c_c00262{left:206.000000pt;}
.x6d_c00262{left:207.066667pt;}
.x16_c00262{left:208.000000pt;}
.x32_c00262{left:209.733333pt;}
.x90_c00262{left:211.333333pt;}
.x40_c00262{left:212.266667pt;}
.x67_c00262{left:214.400000pt;}
.x6_c00262{left:217.866667pt;}
.x82_c00262{left:222.400000pt;}
.x4e_c00262{left:223.866667pt;}
.xa0_c00262{left:225.733333pt;}
.x23_c00262{left:227.466667pt;}
.x60_c00262{left:230.000000pt;}
.x2d_c00262{left:232.266667pt;}
.xa5_c00262{left:233.866667pt;}
.x41_c00262{left:234.933333pt;}
.x45_c00262{left:237.200000pt;}
.x7d_c00262{left:239.333333pt;}
.xa7_c00262{left:240.266667pt;}
.x37_c00262{left:241.333333pt;}
.x150_c00262{left:242.266667pt;}
.x71_c00262{left:243.466667pt;}
.x24_c00262{left:244.400000pt;}
.x17_c00262{left:245.466667pt;}
.x93_c00262{left:246.400000pt;}
.x7_c00262{left:247.333333pt;}
.x38_c00262{left:250.666667pt;}
.x10_c00262{left:251.600000pt;}
.x8f_c00262{left:252.666667pt;}
.xa3_c00262{left:254.000000pt;}
.x55_c00262{left:255.733333pt;}
.x27_c00262{left:256.933333pt;}
.x68_c00262{left:259.733333pt;}
.x64_c00262{left:261.200000pt;}
.x56_c00262{left:262.400000pt;}
.x97_c00262{left:264.266667pt;}
.x6e_c00262{left:265.600000pt;}
.x94_c00262{left:266.533333pt;}
.x7b_c00262{left:268.800000pt;}
.x61_c00262{left:270.266667pt;}
.xa8_c00262{left:271.600000pt;}
.x18_c00262{left:275.600000pt;}
.x8c_c00262{left:276.800000pt;}
.x81_c00262{left:279.200000pt;}
.x8_c00262{left:280.266667pt;}
.x46_c00262{left:283.200000pt;}
.x3d_c00262{left:284.933333pt;}
.x98_c00262{left:288.533333pt;}
.x69_c00262{left:290.133333pt;}
.x1_c00262{left:291.200000pt;}
.x4f_c00262{left:293.066667pt;}
.x83_c00262{left:295.066667pt;}
.x9_c00262{left:296.266667pt;}
.x151_c00262{left:298.266667pt;}
.x9b_c00262{left:300.000000pt;}
.x5a_c00262{left:301.866667pt;}
.x4a_c00262{left:303.066667pt;}
.x33_c00262{left:304.133333pt;}
.x54_c00262{left:305.066667pt;}
.x42_c00262{left:307.333333pt;}
.x50_c00262{left:310.000000pt;}
.x19_c00262{left:312.400000pt;}
.x57_c00262{left:314.933333pt;}
.x76_c00262{left:316.933333pt;}
.x8d_c00262{left:318.666667pt;}
.x28_c00262{left:320.000000pt;}
.x88_c00262{left:322.133333pt;}
.x11_c00262{left:323.600000pt;}
.x47_c00262{left:324.533333pt;}
.x3e_c00262{left:327.200000pt;}
.x29_c00262{left:329.866667pt;}
.x51_c00262{left:332.400000pt;}
.x5b_c00262{left:333.866667pt;}
.xa_c00262{left:336.000000pt;}
.x1a_c00262{left:337.333333pt;}
.x58_c00262{left:338.666667pt;}
.x2e_c00262{left:339.866667pt;}
.x91_c00262{left:342.133333pt;}
.x4b_c00262{left:345.333333pt;}
.x39_c00262{left:348.000000pt;}
.x5c_c00262{left:349.600000pt;}
.x6a_c00262{left:351.600000pt;}
.x99_c00262{left:353.733333pt;}
.x3f_c00262{left:354.666667pt;}
.xb_c00262{left:356.533333pt;}
.x1b_c00262{left:359.066667pt;}
.x92_c00262{left:361.066667pt;}
.x12_c00262{left:362.933333pt;}
.x89_c00262{left:364.400000pt;}
.x2f_c00262{left:374.133333pt;}
.x152_c00262{left:391.333333pt;}
.x163_c00262{left:392.666667pt;}
.x146_c00262{left:394.000000pt;}
.xa9_c00262{left:394.933333pt;}
.x140_c00262{left:399.333333pt;}
.x15e_c00262{left:406.266667pt;}
.xc4_c00262{left:407.333333pt;}
.xcc_c00262{left:408.266667pt;}
.xb0_c00262{left:410.533333pt;}
.x111_c00262{left:411.733333pt;}
.x14d_c00262{left:412.933333pt;}
.xe5_c00262{left:414.133333pt;}
.x103_c00262{left:415.866667pt;}
.x159_c00262{left:417.733333pt;}
.x14b_c00262{left:419.333333pt;}
.x11b_c00262{left:421.866667pt;}
.x134_c00262{left:423.333333pt;}
.xcd_c00262{left:424.266667pt;}
.x160_c00262{left:425.600000pt;}
.x156_c00262{left:426.533333pt;}
.xbe_c00262{left:427.466667pt;}
.xd4_c00262{left:428.666667pt;}
.xf4_c00262{left:430.400000pt;}
.xb1_c00262{left:432.000000pt;}
.x143_c00262{left:433.866667pt;}
.xaa_c00262{left:435.866667pt;}
.x16b_c00262{left:437.066667pt;}
.xec_c00262{left:438.533333pt;}
.x11e_c00262{left:439.466667pt;}
.x13e_c00262{left:440.933333pt;}
.x157_c00262{left:442.800000pt;}
.x14e_c00262{left:444.266667pt;}
.xed_c00262{left:445.200000pt;}
.xd5_c00262{left:446.266667pt;}
.xf5_c00262{left:448.000000pt;}
.x104_c00262{left:449.200000pt;}
.xdc_c00262{left:451.200000pt;}
.x158_c00262{left:452.400000pt;}
.x139_c00262{left:454.533333pt;}
.xf9_c00262{left:457.333333pt;}
.xdd_c00262{left:459.866667pt;}
.xe6_c00262{left:461.466667pt;}
.x121_c00262{left:462.666667pt;}
.x137_c00262{left:464.800000pt;}
.xff_c00262{left:467.466667pt;}
.xb2_c00262{left:468.533333pt;}
.xbf_c00262{left:470.666667pt;}
.x10d_c00262{left:472.266667pt;}
.x164_c00262{left:473.333333pt;}
.xe7_c00262{left:475.200000pt;}
.x108_c00262{left:476.133333pt;}
.x13a_c00262{left:477.200000pt;}
.xb8_c00262{left:478.400000pt;}
.xc5_c00262{left:480.533333pt;}
.xde_c00262{left:482.000000pt;}
.x135_c00262{left:484.400000pt;}
.xb3_c00262{left:485.866667pt;}
.xee_c00262{left:488.133333pt;}
.x123_c00262{left:489.866667pt;}
.xd6_c00262{left:492.000000pt;}
.xfa_c00262{left:493.466667pt;}
.xdf_c00262{left:494.800000pt;}
.xb9_c00262{left:497.866667pt;}
.xab_c00262{left:499.200000pt;}
.xf6_c00262{left:500.533333pt;}
.x141_c00262{left:504.400000pt;}
.x15a_c00262{left:505.733333pt;}
.xc6_c00262{left:506.800000pt;}
.x12c_c00262{left:507.866667pt;}
.x117_c00262{left:510.133333pt;}
.x112_c00262{left:511.333333pt;}
.x126_c00262{left:513.200000pt;}
.xce_c00262{left:514.133333pt;}
.x11f_c00262{left:515.333333pt;}
.x129_c00262{left:517.066667pt;}
.x153_c00262{left:518.400000pt;}
.xc7_c00262{left:519.333333pt;}
.x105_c00262{left:520.266667pt;}
.x169_c00262{left:522.400000pt;}
.x147_c00262{left:524.133333pt;}
.x10c_c00262{left:525.466667pt;}
.x12b_c00262{left:526.400000pt;}
.xfb_c00262{left:527.333333pt;}
.xc0_c00262{left:528.533333pt;}
.xba_c00262{left:529.866667pt;}
.x118_c00262{left:532.266667pt;}
.x13b_c00262{left:533.466667pt;}
.xef_c00262{left:534.533333pt;}
.x106_c00262{left:537.600000pt;}
.xb4_c00262{left:538.933333pt;}
.x136_c00262{left:540.400000pt;}
.x13f_c00262{left:541.466667pt;}
.x130_c00262{left:542.666667pt;}
.x100_c00262{left:543.600000pt;}
.xac_c00262{left:545.600000pt;}
.x12a_c00262{left:548.800000pt;}
.xf0_c00262{left:549.866667pt;}
.xc1_c00262{left:551.600000pt;}
.x15f_c00262{left:552.800000pt;}
.xe0_c00262{left:554.000000pt;}
.x142_c00262{left:555.200000pt;}
.x166_c00262{left:556.400000pt;}
.xcf_c00262{left:557.600000pt;}
.x124_c00262{left:559.600000pt;}
.x131_c00262{left:561.200000pt;}
.xd7_c00262{left:562.133333pt;}
.x12d_c00262{left:563.866667pt;}
.x11c_c00262{left:564.800000pt;}
.xfc_c00262{left:565.733333pt;}
.xc2_c00262{left:568.533333pt;}
.x109_c00262{left:569.866667pt;}
.x113_c00262{left:571.466667pt;}
.xfd_c00262{left:573.466667pt;}
.xc8_c00262{left:574.666667pt;}
.x15d_c00262{left:575.600000pt;}
.x122_c00262{left:576.666667pt;}
.x101_c00262{left:577.866667pt;}
.xd8_c00262{left:579.466667pt;}
.x144_c00262{left:580.933333pt;}
.xb5_c00262{left:581.866667pt;}
.x12e_c00262{left:583.733333pt;}
.x10f_c00262{left:585.466667pt;}
.x11d_c00262{left:587.200000pt;}
.x119_c00262{left:588.533333pt;}
.x102_c00262{left:590.000000pt;}
.xfe_c00262{left:591.066667pt;}
.x154_c00262{left:592.000000pt;}
.xd0_c00262{left:593.733333pt;}
.xe1_c00262{left:594.933333pt;}
.xd9_c00262{left:596.133333pt;}
.x161_c00262{left:597.733333pt;}
.xc9_c00262{left:598.666667pt;}
.xbb_c00262{left:600.533333pt;}
.x127_c00262{left:601.866667pt;}
.x145_c00262{left:602.933333pt;}
.xf7_c00262{left:604.133333pt;}
.xad_c00262{left:605.733333pt;}
.xf1_c00262{left:607.466667pt;}
.xb6_c00262{left:609.066667pt;}
.xe8_c00262{left:610.933333pt;}
.xc3_c00262{left:612.666667pt;}
.x10a_c00262{left:613.733333pt;}
.xe2_c00262{left:615.466667pt;}
.x132_c00262{left:616.533333pt;}
.x13c_c00262{left:618.533333pt;}
.xae_c00262{left:620.400000pt;}
.x15b_c00262{left:621.600000pt;}
.xca_c00262{left:622.933333pt;}
.xda_c00262{left:624.666667pt;}
.xb7_c00262{left:628.000000pt;}
.x10e_c00262{left:629.466667pt;}
.xe9_c00262{left:631.066667pt;}
.x148_c00262{left:632.266667pt;}
.xcb_c00262{left:633.200000pt;}
.xbc_c00262{left:635.733333pt;}
.x12f_c00262{left:636.800000pt;}
.x155_c00262{left:638.133333pt;}
.xd1_c00262{left:639.466667pt;}
.xf2_c00262{left:640.400000pt;}
.x138_c00262{left:641.333333pt;}
.xdb_c00262{left:643.600000pt;}
.x133_c00262{left:644.666667pt;}
.x13d_c00262{left:645.733333pt;}
.x114_c00262{left:647.600000pt;}
.xe3_c00262{left:650.666667pt;}
.xf3_c00262{left:653.200000pt;}
.x10b_c00262{left:654.133333pt;}
.x120_c00262{left:655.866667pt;}
.x11a_c00262{left:657.066667pt;}
.xd2_c00262{left:660.266667pt;}
.xea_c00262{left:661.466667pt;}
.x128_c00262{left:662.666667pt;}
.x15c_c00262{left:663.600000pt;}
.x16a_c00262{left:665.066667pt;}
.x110_c00262{left:666.133333pt;}
.x115_c00262{left:667.466667pt;}
.xaf_c00262{left:668.400000pt;}
.x2_c00262{left:669.733333pt;}
.xf8_c00262{left:671.066667pt;}
.x149_c00262{left:672.000000pt;}
.xbd_c00262{left:673.200000pt;}
.xd3_c00262{left:674.400000pt;}
.xeb_c00262{left:676.533333pt;}
.x168_c00262{left:678.266667pt;}
.x125_c00262{left:680.266667pt;}
.xe4_c00262{left:681.333333pt;}
.x14a_c00262{left:683.866667pt;}
.x107_c00262{left:688.000000pt;}
.x14c_c00262{left:689.066667pt;}
.x116_c00262{left:690.533333pt;}
.x14f_c00262{left:691.466667pt;}
.x162_c00262{left:692.400000pt;}
.x167_c00262{left:694.000000pt;}
.x165_c00262{left:696.933333pt;}
}





/* 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_c00263 {
    display:none;
  }
  .loading-indicator_c00263.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00263 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_c00263 { 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_c00263" -> "#page-container .classname_c00263")
 */
.pf_c00263 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00263 { /* 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_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00263 { /* 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_c00263 { /* 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_c00263 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00263 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00263 {overflow:visible;}
  }
}
.c_c00263 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00263 { /* 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_c00263:after { /* webkit #35443 */
  content: '';
}
.t_c00263:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00263 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 */
}
.__c00263 { /* 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_c00263 { /* info for Javascript */
  display:none;
}
.l_c00263 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00263 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00263 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00263: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_c00263 {
    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_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00263.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_c00263 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00263;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.000000;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;}
.m12e_c00263{transform:matrix(0.021250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021250,0.000000,0.000000,0.250000,0,0);}
.m140_c00263{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00263{transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);}
.m26_c00263{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00263{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00263{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m15_c00263{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m99_c00263{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m14_c00263{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00263{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m68_c00263{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m23_c00263{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m134_c00263{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m75_c00263{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00263{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m21_c00263{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m89_c00263{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00263{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me8_c00263{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00263{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m22_c00263{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00263{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00263{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00263{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00263{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00263{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m88_c00263{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mea_c00263{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00263{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00263{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00263{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m116_c00263{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m51_c00263{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m78_c00263{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00263{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.me4_c00263{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00263{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00263{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00263{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00263{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m133_c00263{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m135_c00263{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m127_c00263{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m24_c00263{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00263{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m93_c00263{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00263{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m121_c00263{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00263{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00263{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00263{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m33_c00263{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m69_c00263{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00263{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m61_c00263{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mff_c00263{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m117_c00263{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m126_c00263{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00263{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mce_c00263{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m85_c00263{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00263{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mae_c00263{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00263{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00263{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m39_c00263{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m104_c00263{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m130_c00263{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m82_c00263{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m115_c00263{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md9_c00263{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma_c00263{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m101_c00263{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00263{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00263{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00263{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00263{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m48_c00263{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m123_c00263{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m94_c00263{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00263{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.me9_c00263{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00263{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m27_c00263{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00263{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m35_c00263{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m102_c00263{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.md6_c00263{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m111_c00263{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00263{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m64_c00263{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00263{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m42_c00263{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m114_c00263{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mde_c00263{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00263{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00263{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00263{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m63_c00263{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00263{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00263{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m107_c00263{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m19_c00263{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00263{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.md3_c00263{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.md8_c00263{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mca_c00263{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m34_c00263{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00263{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00263{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m92_c00263{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mee_c00263{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m65_c00263{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m105_c00263{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m110_c00263{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00263{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m124_c00263{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00263{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00263{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00263{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m54_c00263{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m8_c00263{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m106_c00263{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00263{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00263{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00263{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00263{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00263{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m41_c00263{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m128_c00263{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m131_c00263{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me1_c00263{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00263{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00263{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m136_c00263{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m109_c00263{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m47_c00263{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00263{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m20_c00263{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.md4_c00263{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00263{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m81_c00263{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00263{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00263{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m56_c00263{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m13f_c00263{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00263{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m7_c00263{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mad_c00263{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m90_c00263{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mba_c00263{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me0_c00263{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00263{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00263{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00263{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00263{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00263{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m77_c00263{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m108_c00263{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m44_c00263{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m112_c00263{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m87_c00263{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m120_c00263{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00263{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00263{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00263{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00263{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m18_c00263{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10_c00263{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.maa_c00263{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md_c00263{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00263{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m53_c00263{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m46_c00263{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00263{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md1_c00263{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00263{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m119_c00263{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m17_c00263{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00263{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m13_c00263{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00263{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00263{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m43_c00263{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00263{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m11_c00263{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m66_c00263{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00263{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00263{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00263{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00263{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.med_c00263{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00263{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m103_c00263{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m83_c00263{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00263{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m125_c00263{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m100_c00263{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m45_c00263{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6_c00263{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00263{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m16_c00263{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00263{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mec_c00263{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m84_c00263{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00263{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00263{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.md5_c00263{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m62_c00263{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00263{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m29_c00263{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m60_c00263{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mc_c00263{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m74_c00263{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me_c00263{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m118_c00263{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.me3_c00263{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00263{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m71_c00263{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00263{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00263{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m55_c00263{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mac_c00263{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4_c00263{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00263{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m73_c00263{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m98_c00263{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m91_c00263{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m67_c00263{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00263{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m32_c00263{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00263{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m59_c00263{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00263{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mf_c00263{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00263{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00263{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m80_c00263{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m28_c00263{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m49_c00263{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00263{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m13d_c00263{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00263{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00263{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.meb_c00263{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m76_c00263{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mda_c00263{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m129_c00263{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m40_c00263{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m132_c00263{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00263{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb_c00263{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m30_c00263{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m13c_c00263{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m25_c00263{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00263{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.mef_c00263{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00263{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m12_c00263{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m139_c00263{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00263{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me7_c00263{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m58_c00263{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00263{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00263{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00263{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00263{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00263{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md7_c00263{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00263{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5_c00263{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mab_c00263{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00263{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);}
.m7c_c00263{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m57_c00263{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m70_c00263{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m3_c00263{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00263{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m50_c00263{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md2_c00263{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00263{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00263{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m31_c00263{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m113_c00263{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m52_c00263{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00263{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.maf_c00263{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me2_c00263{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00263{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00263{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00263{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m36_c00263{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00263{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m96_c00263{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m72_c00263{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00263{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m13b_c00263{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00263{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m86_c00263{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00263{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00263{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m138_c00263{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.md0_c00263{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m122_c00263{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m97_c00263{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m137_c00263{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00263{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m38_c00263{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00263{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m95_c00263{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00263{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m79_c00263{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00263{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m37_c00263{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me6_c00263{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00263{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.me5_c00263{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00263{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls0_c00263{letter-spacing:0.000000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{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__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00263{word-spacing:-14.371728px;}
.wsc_c00263{word-spacing:-9.167598px;}
.ws5_c00263{word-spacing:-6.790066px;}
.ws7_c00263{word-spacing:-6.451613px;}
.wsb_c00263{word-spacing:-6.161725px;}
.ws4_c00263{word-spacing:-1.666667px;}
.wse_c00263{word-spacing:0.000000px;}
.ws3_c00263{word-spacing:6.125000px;}
.ws0_c00263{word-spacing:6.666667px;}
.ws6_c00263{word-spacing:6.924971px;}
.wsa_c00263{word-spacing:7.250000px;}
.wsd_c00263{word-spacing:9.469003px;}
.ws1_c00263{word-spacing:13.447307px;}
.ws2_c00263{word-spacing:20.000000px;}
.ws9_c00263{word-spacing:58.537019px;}
._0_c00263{width:31.805556px;}
.fc0_c00263{color:transparent;}
.fs6_c00263{font-size:24.000000px;}
.fs8_c00263{font-size:36.000000px;}
.fs3_c00263{font-size:48.000000px;}
.fs1_c00263{font-size:54.000000px;}
.fs2_c00263{font-size:60.000000px;}
.fs4_c00263{font-size:66.000000px;}
.fs5_c00263{font-size:72.000000px;}
.fs7_c00263{font-size:78.000000px;}
.fs0_c00263{font-size:84.000000px;}
.fs9_c00263{font-size:102.000000px;}
.y0_c00263{bottom:0.000000px;}
.y77_c00263{bottom:171.450000px;}
.y3f_c00263{bottom:187.650000px;}
.y76_c00263{bottom:190.500000px;}
.y3e_c00263{bottom:202.350000px;}
.y75_c00263{bottom:212.700000px;}
.y3d_c00263{bottom:216.750000px;}
.y74_c00263{bottom:230.400000px;}
.y3c_c00263{bottom:231.150000px;}
.y3b_c00263{bottom:245.550000px;}
.y73_c00263{bottom:248.400000px;}
.y3a_c00263{bottom:259.650000px;}
.y6b_c00263{bottom:259.950000px;}
.y72_c00263{bottom:270.300000px;}
.y39_c00263{bottom:276.900000px;}
.y6a_c00263{bottom:280.500000px;}
.y38_c00263{bottom:288.000000px;}
.y71_c00263{bottom:288.300000px;}
.y69_c00263{bottom:300.600000px;}
.y37_c00263{bottom:302.400000px;}
.y70_c00263{bottom:306.300000px;}
.y36_c00263{bottom:316.500000px;}
.y68_c00263{bottom:320.400000px;}
.y6f_c00263{bottom:324.000000px;}
.y35_c00263{bottom:330.450000px;}
.y6e_c00263{bottom:341.700000px;}
.y34_c00263{bottom:345.600000px;}
.y33_c00263{bottom:359.700000px;}
.y32_c00263{bottom:374.400000px;}
.y6d_c00263{bottom:377.700000px;}
.y31_c00263{bottom:388.500000px;}
.y79_c00263{bottom:395.250000px;}
.y30_c00263{bottom:403.200000px;}
.y6c_c00263{bottom:412.950000px;}
.y2f_c00263{bottom:417.000000px;}
.y2e_c00263{bottom:431.700000px;}
.y67_c00263{bottom:435.300000px;}
.y66_c00263{bottom:453.000000px;}
.y2d_c00263{bottom:459.300000px;}
.y2c_c00263{bottom:462.900000px;}
.y65_c00263{bottom:471.000000px;}
.y2b_c00263{bottom:477.750000px;}
.y78_c00263{bottom:488.550000px;}
.y64_c00263{bottom:488.700000px;}
.y2a_c00263{bottom:492.150000px;}
.y63_c00263{bottom:507.000000px;}
.y29_c00263{bottom:508.650000px;}
.y28_c00263{bottom:519.900000px;}
.y62_c00263{bottom:524.700000px;}
.y27_c00263{bottom:535.350000px;}
.y61_c00263{bottom:542.700000px;}
.y26_c00263{bottom:550.050000px;}
.y60_c00263{bottom:560.400000px;}
.y25_c00263{bottom:565.200000px;}
.y5f_c00263{bottom:578.100000px;}
.y24_c00263{bottom:583.200000px;}
.y5e_c00263{bottom:596.100000px;}
.y23_c00263{bottom:601.200000px;}
.y5d_c00263{bottom:614.100000px;}
.y22_c00263{bottom:618.900000px;}
.y5c_c00263{bottom:631.350000px;}
.y21_c00263{bottom:639.300000px;}
.y5b_c00263{bottom:649.650000px;}
.y20_c00263{bottom:658.200000px;}
.y5a_c00263{bottom:667.650000px;}
.y1f_c00263{bottom:676.200000px;}
.y59_c00263{bottom:685.350000px;}
.y1e_c00263{bottom:693.900000px;}
.y58_c00263{bottom:703.350000px;}
.y1d_c00263{bottom:711.600000px;}
.y57_c00263{bottom:721.350000px;}
.y1c_c00263{bottom:729.600000px;}
.y56_c00263{bottom:739.350000px;}
.y1b_c00263{bottom:747.300000px;}
.y55_c00263{bottom:756.600000px;}
.y1a_c00263{bottom:765.300000px;}
.y54_c00263{bottom:774.600000px;}
.y19_c00263{bottom:783.000000px;}
.y53_c00263{bottom:792.600000px;}
.y18_c00263{bottom:801.300000px;}
.y52_c00263{bottom:810.300000px;}
.y17_c00263{bottom:826.650000px;}
.y51_c00263{bottom:828.000000px;}
.y16_c00263{bottom:844.950000px;}
.y50_c00263{bottom:846.300000px;}
.y15_c00263{bottom:862.650000px;}
.y4f_c00263{bottom:875.850000px;}
.y14_c00263{bottom:880.350000px;}
.y4e_c00263{bottom:882.300000px;}
.y13_c00263{bottom:898.050000px;}
.y4d_c00263{bottom:900.000000px;}
.y12_c00263{bottom:915.750000px;}
.y4c_c00263{bottom:918.000000px;}
.y11_c00263{bottom:933.750000px;}
.y4b_c00263{bottom:935.700000px;}
.y10_c00263{bottom:951.450000px;}
.y4a_c00263{bottom:953.700000px;}
.yf_c00263{bottom:969.150000px;}
.y49_c00263{bottom:971.700000px;}
.y48_c00263{bottom:988.950000px;}
.yb_c00263{bottom:995.400000px;}
.y47_c00263{bottom:1006.950000px;}
.ya_c00263{bottom:1016.250000px;}
.ye_c00263{bottom:1017.000000px;}
.y9_c00263{bottom:1030.350000px;}
.yd_c00263{bottom:1031.400000px;}
.y46_c00263{bottom:1032.150000px;}
.y8_c00263{bottom:1045.050000px;}
.yc_c00263{bottom:1045.800000px;}
.y45_c00263{bottom:1046.550000px;}
.y7_c00263{bottom:1059.900000px;}
.y44_c00263{bottom:1060.500000px;}
.y6_c00263{bottom:1072.500000px;}
.y43_c00263{bottom:1074.900000px;}
.y5_c00263{bottom:1080.300000px;}
.y42_c00263{bottom:1089.300000px;}
.y4_c00263{bottom:1098.600000px;}
.y41_c00263{bottom:1103.700000px;}
.y3_c00263{bottom:1116.300000px;}
.y40_c00263{bottom:1118.100000px;}
.y1_c00263{bottom:1141.950000px;}
.y2_c00263{bottom:1143.450000px;}
.h8_c00263{height:24.000000px;}
.ha_c00263{height:36.000000px;}
.h5_c00263{height:48.000000px;}
.h3_c00263{height:54.000000px;}
.h4_c00263{height:60.000000px;}
.h6_c00263{height:66.000000px;}
.h7_c00263{height:72.000000px;}
.h9_c00263{height:78.000000px;}
.h2_c00263{height:84.000000px;}
.hb_c00263{height:102.000000px;}
.h1_c00263{height:1269.750000px;}
.h0_c00263{height:1270.080048px;}
.w1_c00263{width:961.500000px;}
.w0_c00263{width:961.560058px;}
.x0_c00263{left:0.000000px;}
.xa1_c00263{left:184.650000px;}
.x7c_c00263{left:185.700000px;}
.x1_c00263{left:187.200000px;}
.x3_c00263{left:190.050000px;}
.x8e_c00263{left:200.550000px;}
.x8b_c00263{left:202.050000px;}
.x4_c00263{left:203.400000px;}
.x13_c00263{left:204.600000px;}
.x29_c00263{left:206.250000px;}
.xa2_c00263{left:209.850000px;}
.xa4_c00263{left:213.000000px;}
.x34_c00263{left:214.200000px;}
.x1f_c00263{left:216.000000px;}
.xaa_c00263{left:217.800000px;}
.x54_c00263{left:221.250000px;}
.x71_c00263{left:223.200000px;}
.x4f_c00263{left:224.250000px;}
.x3d_c00263{left:225.450000px;}
.x96_c00263{left:226.500000px;}
.x38_c00263{left:227.850000px;}
.x5a_c00263{left:229.050000px;}
.x9f_c00263{left:231.150000px;}
.x8c_c00263{left:234.450000px;}
.x20_c00263{left:235.800000px;}
.x2a_c00263{left:238.200000px;}
.x77_c00263{left:239.400000px;}
.xd_c00263{left:242.400000px;}
.x84_c00263{left:244.050000px;}
.x87_c00263{left:246.300000px;}
.x1a_c00263{left:248.700000px;}
.x6d_c00263{left:250.800000px;}
.x2e_c00263{left:253.800000px;}
.x72_c00263{left:255.600000px;}
.x5_c00263{left:257.100000px;}
.x98_c00263{left:258.150000px;}
.x21_c00263{left:260.250000px;}
.x2b_c00263{left:261.900000px;}
.x69_c00263{left:263.850000px;}
.x55_c00263{left:265.950000px;}
.x6e_c00263{left:268.800000px;}
.x3e_c00263{left:270.900000px;}
.x39_c00263{left:273.150000px;}
.x9c_c00263{left:274.200000px;}
.x8f_c00263{left:277.200000px;}
.x2f_c00263{left:278.250000px;}
.x8d_c00263{left:280.200000px;}
.xa6_c00263{left:281.550000px;}
.x64_c00263{left:282.900000px;}
.x14_c00263{left:284.100000px;}
.x35_c00263{left:287.700000px;}
.x3f_c00263{left:288.900000px;}
.x7d_c00263{left:290.550000px;}
.x85_c00263{left:295.200000px;}
.x9d_c00263{left:296.250000px;}
.x4b_c00263{left:298.500000px;}
.x6a_c00263{left:300.600000px;}
.x97_c00263{left:302.100000px;}
.x88_c00263{left:303.600000px;}
.x50_c00263{left:306.750000px;}
.x92_c00263{left:307.800000px;}
.x58_c00263{left:308.850000px;}
.x1b_c00263{left:311.700000px;}
.x60_c00263{left:314.700000px;}
.x6_c00263{left:316.200000px;}
.x81_c00263{left:317.400000px;}
.x6f_c00263{left:318.900000px;}
.x22_c00263{left:321.150000px;}
.x93_c00263{left:322.200000px;}
.x2c_c00263{left:323.400000px;}
.x95_c00263{left:324.450000px;}
.x7f_c00263{left:326.850000px;}
.x51_c00263{left:328.350000px;}
.x5b_c00263{left:331.650000px;}
.x30_c00263{left:333.000000px;}
.x40_c00263{left:334.200000px;}
.x61_c00263{left:337.350000px;}
.x5e_c00263{left:340.050000px;}
.xe_c00263{left:342.450000px;}
.x73_c00263{left:343.800000px;}
.x5c_c00263{left:345.750000px;}
.x86_c00263{left:347.700000px;}
.x47_c00263{left:349.800000px;}
.x99_c00263{left:351.000000px;}
.x94_c00263{left:352.800000px;}
.x31_c00263{left:356.100000px;}
.x52_c00263{left:357.150000px;}
.x65_c00263{left:358.500000px;}
.x82_c00263{left:361.350000px;}
.x36_c00263{left:363.300000px;}
.x59_c00263{left:364.350000px;}
.x44_c00263{left:366.450000px;}
.x70_c00263{left:369.000000px;}
.x66_c00263{left:370.350000px;}
.x80_c00263{left:372.900000px;}
.x7_c00263{left:375.600000px;}
.xf_c00263{left:376.950000px;}
.x7a_c00263{left:379.050000px;}
.x74_c00263{left:380.850000px;}
.x32_c00263{left:383.400000px;}
.x4c_c00263{left:384.900000px;}
.x3a_c00263{left:385.950000px;}
.x5f_c00263{left:387.600000px;}
.x62_c00263{left:389.550000px;}
.x56_c00263{left:390.900000px;}
.x9a_c00263{left:393.450000px;}
.x48_c00263{left:394.500000px;}
.x23_c00263{left:396.000000px;}
.x10_c00263{left:400.050000px;}
.x24_c00263{left:403.500000px;}
.x2d_c00263{left:404.700000px;}
.x8_c00263{left:406.200000px;}
.x41_c00263{left:408.300000px;}
.x3b_c00263{left:409.650000px;}
.x25_c00263{left:411.450000px;}
.x37_c00263{left:412.950000px;}
.x4d_c00263{left:414.000000px;}
.x49_c00263{left:416.850000px;}
.x26_c00263{left:417.900000px;}
.x42_c00263{left:419.850000px;}
.x33_c00263{left:423.000000px;}
.x27_c00263{left:424.800000px;}
.x2_c00263{left:425.850000px;}
.x7b_c00263{left:426.900000px;}
.xa9_c00263{left:428.250000px;}
.x9b_c00263{left:429.450000px;}
.x67_c00263{left:430.500000px;}
.x9_c00263{left:432.150000px;}
.xa0_c00263{left:433.500000px;}
.x5d_c00263{left:434.700000px;}
.x6b_c00263{left:441.300000px;}
.x90_c00263{left:443.100000px;}
.xac_c00263{left:444.150000px;}
.x63_c00263{left:446.400000px;}
.x17_c00263{left:447.900000px;}
.x78_c00263{left:448.950000px;}
.xab_c00263{left:450.900000px;}
.x1c_c00263{left:452.400000px;}
.x28_c00263{left:453.600000px;}
.x15_c00263{left:454.800000px;}
.x57_c00263{left:456.150000px;}
.xa5_c00263{left:457.200000px;}
.x7e_c00263{left:458.700000px;}
.x68_c00263{left:462.150000px;}
.x43_c00263{left:464.100000px;}
.x89_c00263{left:465.300000px;}
.x11_c00263{left:466.350000px;}
.x45_c00263{left:468.600000px;}
.x3c_c00263{left:469.800000px;}
.xa_c00263{left:472.050000px;}
.x79_c00263{left:473.850000px;}
.x18_c00263{left:475.200000px;}
.x4a_c00263{left:476.250000px;}
.x4e_c00263{left:477.750000px;}
.x53_c00263{left:479.400000px;}
.x1d_c00263{left:481.950000px;}
.x46_c00263{left:485.100000px;}
.x8a_c00263{left:489.750000px;}
.x9e_c00263{left:490.800000px;}
.x6c_c00263{left:492.750000px;}
.xb_c00263{left:495.450000px;}
.xa7_c00263{left:497.250000px;}
.x83_c00263{left:500.400000px;}
.x75_c00263{left:504.300000px;}
.x12_c00263{left:506.700000px;}
.x91_c00263{left:507.900000px;}
.x19_c00263{left:509.400000px;}
.x1e_c00263{left:510.750000px;}
.xa3_c00263{left:512.100000px;}
.x16_c00263{left:513.150000px;}
.xa8_c00263{left:514.650000px;}
.xc_c00263{left:519.150000px;}
.x76_c00263{left:520.500000px;}
.x135_c00263{left:532.500000px;}
.xc9_c00263{left:544.350000px;}
.x136_c00263{left:547.950000px;}
.xc3_c00263{left:558.300000px;}
.xb5_c00263{left:559.500000px;}
.x103_c00263{left:560.550000px;}
.xce_c00263{left:561.600000px;}
.x142_c00263{left:569.550000px;}
.xad_c00263{left:573.450000px;}
.x12c_c00263{left:578.400000px;}
.x12f_c00263{left:580.500000px;}
.x122_c00263{left:581.850000px;}
.x120_c00263{left:584.100000px;}
.x143_c00263{left:587.850000px;}
.x131_c00263{left:589.650000px;}
.x11e_c00263{left:590.700000px;}
.xba_c00263{left:595.200000px;}
.x14b_c00263{left:596.250000px;}
.xe5_c00263{left:598.350000px;}
.x117_c00263{left:600.000000px;}
.x12b_c00263{left:601.500000px;}
.xfc_c00263{left:603.000000px;}
.xea_c00263{left:606.150000px;}
.xdc_c00263{left:608.400000px;}
.x114_c00263{left:611.550000px;}
.xcf_c00263{left:615.300000px;}
.xed_c00263{left:617.850000px;}
.xbb_c00263{left:619.650000px;}
.xf5_c00263{left:622.200000px;}
.xdd_c00263{left:623.550000px;}
.x132_c00263{left:624.900000px;}
.x104_c00263{left:626.100000px;}
.xc6_c00263{left:628.500000px;}
.xca_c00263{left:629.700000px;}
.x118_c00263{left:631.650000px;}
.xd4_c00263{left:633.300000px;}
.xfd_c00263{left:635.100000px;}
.xe1_c00263{left:636.150000px;}
.x149_c00263{left:637.650000px;}
.xe6_c00263{left:640.500000px;}
.xae_c00263{left:642.600000px;}
.x124_c00263{left:643.800000px;}
.xd5_c00263{left:644.850000px;}
.x11b_c00263{left:646.800000px;}
.xff_c00263{left:648.900000px;}
.x139_c00263{left:650.250000px;}
.x13c_c00263{left:651.900000px;}
.xc7_c00263{left:653.700000px;}
.xee_c00263{left:654.900000px;}
.x146_c00263{left:656.400000px;}
.x112_c00263{left:658.050000px;}
.x10c_c00263{left:659.250000px;}
.x108_c00263{left:660.300000px;}
.x125_c00263{left:662.550000px;}
.xe7_c00263{left:663.900000px;}
.x147_c00263{left:664.950000px;}
.x10f_c00263{left:666.000000px;}
.x13f_c00263{left:667.200000px;}
.x105_c00263{left:668.550000px;}
.x13d_c00263{left:669.600000px;}
.x121_c00263{left:672.000000px;}
.x10d_c00263{left:673.650000px;}
.x113_c00263{left:675.300000px;}
.xef_c00263{left:676.500000px;}
.xf6_c00263{left:678.000000px;}
.xbc_c00263{left:679.050000px;}
.xc0_c00263{left:680.700000px;}
.xd0_c00263{left:682.950000px;}
.x119_c00263{left:685.650000px;}
.x144_c00263{left:686.700000px;}
.x123_c00263{left:688.050000px;}
.xcb_c00263{left:691.200000px;}
.xeb_c00263{left:692.550000px;}
.x148_c00263{left:694.500000px;}
.xaf_c00263{left:695.550000px;}
.xf1_c00263{left:697.950000px;}
.xc1_c00263{left:700.800000px;}
.x106_c00263{left:702.750000px;}
.x140_c00263{left:706.500000px;}
.x126_c00263{left:707.550000px;}
.xe2_c00263{left:709.200000px;}
.xd1_c00263{left:710.250000px;}
.x137_c00263{left:711.600000px;}
.xd6_c00263{left:712.800000px;}
.x101_c00263{left:715.950000px;}
.x11a_c00263{left:717.000000px;}
.x133_c00263{left:718.500000px;}
.x145_c00263{left:723.450000px;}
.x109_c00263{left:726.600000px;}
.x13a_c00263{left:727.650000px;}
.x128_c00263{left:731.100000px;}
.x138_c00263{left:732.150000px;}
.x14c_c00263{left:734.250000px;}
.xde_c00263{left:735.450000px;}
.xf2_c00263{left:736.800000px;}
.x102_c00263{left:740.100000px;}
.xe8_c00263{left:742.050000px;}
.x110_c00263{left:743.400000px;}
.xd7_c00263{left:744.450000px;}
.xdf_c00263{left:746.250000px;}
.x10a_c00263{left:747.450000px;}
.xf7_c00263{left:749.250000px;}
.xc2_c00263{left:750.900000px;}
.x130_c00263{left:753.750000px;}
.xcc_c00263{left:755.250000px;}
.xec_c00263{left:756.300000px;}
.x115_c00263{left:757.650000px;}
.xb0_c00263{left:759.300000px;}
.xbd_c00263{left:760.800000px;}
.xfe_c00263{left:764.850000px;}
.xbe_c00263{left:768.300000px;}
.xf8_c00263{left:770.100000px;}
.xe0_c00263{left:773.250000px;}
.x11c_c00263{left:775.650000px;}
.xf0_c00263{left:778.350000px;}
.x11f_c00263{left:781.050000px;}
.x141_c00263{left:783.150000px;}
.xb1_c00263{left:784.200000px;}
.xd8_c00263{left:787.650000px;}
.x129_c00263{left:789.750000px;}
.x127_c00263{left:791.100000px;}
.xf9_c00263{left:792.750000px;}
.xe3_c00263{left:794.550000px;}
.xd2_c00263{left:795.600000px;}
.xd9_c00263{left:796.950000px;}
.xb2_c00263{left:800.400000px;}
.xfa_c00263{left:803.850000px;}
.x134_c00263{left:805.200000px;}
.xb8_c00263{left:809.400000px;}
.xc4_c00263{left:810.600000px;}
.x14a_c00263{left:811.950000px;}
.x14d_c00263{left:813.300000px;}
.xe9_c00263{left:814.350000px;}
.xe4_c00263{left:815.400000px;}
.xf3_c00263{left:818.850000px;}
.x12d_c00263{left:820.800000px;}
.x116_c00263{left:824.700000px;}
.x10b_c00263{left:827.700000px;}
.x13b_c00263{left:829.050000px;}
.x12e_c00263{left:830.100000px;}
.xb3_c00263{left:831.300000px;}
.xf4_c00263{left:832.500000px;}
.xfb_c00263{left:834.450000px;}
.xda_c00263{left:836.550000px;}
.xbf_c00263{left:838.050000px;}
.xb6_c00263{left:839.250000px;}
.xcd_c00263{left:842.700000px;}
.x111_c00263{left:844.500000px;}
.x14e_c00263{left:846.600000px;}
.xd3_c00263{left:848.550000px;}
.x11d_c00263{left:850.950000px;}
.x12a_c00263{left:852.000000px;}
.x100_c00263{left:854.100000px;}
.x13e_c00263{left:855.450000px;}
.xdb_c00263{left:857.400000px;}
.x107_c00263{left:859.800000px;}
.xb9_c00263{left:861.600000px;}
.x10e_c00263{left:863.550000px;}
.xb4_c00263{left:865.200000px;}
.xc8_c00263{left:866.700000px;}
.xb7_c00263{left:867.750000px;}
.xc5_c00263{left:868.950000px;}
.x14f_c00263{left:887.700000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws8_c00263{word-spacing:-12.774869pt;}
.wsc_c00263{word-spacing:-8.148976pt;}
.ws5_c00263{word-spacing:-6.035614pt;}
.ws7_c00263{word-spacing:-5.734767pt;}
.wsb_c00263{word-spacing:-5.477089pt;}
.ws4_c00263{word-spacing:-1.481481pt;}
.wse_c00263{word-spacing:0.000000pt;}
.ws3_c00263{word-spacing:5.444444pt;}
.ws0_c00263{word-spacing:5.925926pt;}
.ws6_c00263{word-spacing:6.155530pt;}
.wsa_c00263{word-spacing:6.444444pt;}
.wsd_c00263{word-spacing:8.416891pt;}
.ws1_c00263{word-spacing:11.953162pt;}
.ws2_c00263{word-spacing:17.777778pt;}
.ws9_c00263{word-spacing:52.032906pt;}
._0_c00263{width:28.271605pt;}
.fs6_c00263{font-size:21.333333pt;}
.fs8_c00263{font-size:32.000000pt;}
.fs3_c00263{font-size:42.666667pt;}
.fs1_c00263{font-size:48.000000pt;}
.fs2_c00263{font-size:53.333333pt;}
.fs4_c00263{font-size:58.666667pt;}
.fs5_c00263{font-size:64.000000pt;}
.fs7_c00263{font-size:69.333333pt;}
.fs0_c00263{font-size:74.666667pt;}
.fs9_c00263{font-size:90.666667pt;}
.y0_c00263{bottom:0.000000pt;}
.y77_c00263{bottom:152.400000pt;}
.y3f_c00263{bottom:166.800000pt;}
.y76_c00263{bottom:169.333333pt;}
.y3e_c00263{bottom:179.866667pt;}
.y75_c00263{bottom:189.066667pt;}
.y3d_c00263{bottom:192.666667pt;}
.y74_c00263{bottom:204.800000pt;}
.y3c_c00263{bottom:205.466667pt;}
.y3b_c00263{bottom:218.266667pt;}
.y73_c00263{bottom:220.800000pt;}
.y3a_c00263{bottom:230.800000pt;}
.y6b_c00263{bottom:231.066667pt;}
.y72_c00263{bottom:240.266667pt;}
.y39_c00263{bottom:246.133333pt;}
.y6a_c00263{bottom:249.333333pt;}
.y38_c00263{bottom:256.000000pt;}
.y71_c00263{bottom:256.266667pt;}
.y69_c00263{bottom:267.200000pt;}
.y37_c00263{bottom:268.800000pt;}
.y70_c00263{bottom:272.266667pt;}
.y36_c00263{bottom:281.333333pt;}
.y68_c00263{bottom:284.800000pt;}
.y6f_c00263{bottom:288.000000pt;}
.y35_c00263{bottom:293.733333pt;}
.y6e_c00263{bottom:303.733333pt;}
.y34_c00263{bottom:307.200000pt;}
.y33_c00263{bottom:319.733333pt;}
.y32_c00263{bottom:332.800000pt;}
.y6d_c00263{bottom:335.733333pt;}
.y31_c00263{bottom:345.333333pt;}
.y79_c00263{bottom:351.333333pt;}
.y30_c00263{bottom:358.400000pt;}
.y6c_c00263{bottom:367.066667pt;}
.y2f_c00263{bottom:370.666667pt;}
.y2e_c00263{bottom:383.733333pt;}
.y67_c00263{bottom:386.933333pt;}
.y66_c00263{bottom:402.666667pt;}
.y2d_c00263{bottom:408.266667pt;}
.y2c_c00263{bottom:411.466667pt;}
.y65_c00263{bottom:418.666667pt;}
.y2b_c00263{bottom:424.666667pt;}
.y78_c00263{bottom:434.266667pt;}
.y64_c00263{bottom:434.400000pt;}
.y2a_c00263{bottom:437.466667pt;}
.y63_c00263{bottom:450.666667pt;}
.y29_c00263{bottom:452.133333pt;}
.y28_c00263{bottom:462.133333pt;}
.y62_c00263{bottom:466.400000pt;}
.y27_c00263{bottom:475.866667pt;}
.y61_c00263{bottom:482.400000pt;}
.y26_c00263{bottom:488.933333pt;}
.y60_c00263{bottom:498.133333pt;}
.y25_c00263{bottom:502.400000pt;}
.y5f_c00263{bottom:513.866667pt;}
.y24_c00263{bottom:518.400000pt;}
.y5e_c00263{bottom:529.866667pt;}
.y23_c00263{bottom:534.400000pt;}
.y5d_c00263{bottom:545.866667pt;}
.y22_c00263{bottom:550.133333pt;}
.y5c_c00263{bottom:561.200000pt;}
.y21_c00263{bottom:568.266667pt;}
.y5b_c00263{bottom:577.466667pt;}
.y20_c00263{bottom:585.066667pt;}
.y5a_c00263{bottom:593.466667pt;}
.y1f_c00263{bottom:601.066667pt;}
.y59_c00263{bottom:609.200000pt;}
.y1e_c00263{bottom:616.800000pt;}
.y58_c00263{bottom:625.200000pt;}
.y1d_c00263{bottom:632.533333pt;}
.y57_c00263{bottom:641.200000pt;}
.y1c_c00263{bottom:648.533333pt;}
.y56_c00263{bottom:657.200000pt;}
.y1b_c00263{bottom:664.266667pt;}
.y55_c00263{bottom:672.533333pt;}
.y1a_c00263{bottom:680.266667pt;}
.y54_c00263{bottom:688.533333pt;}
.y19_c00263{bottom:696.000000pt;}
.y53_c00263{bottom:704.533333pt;}
.y18_c00263{bottom:712.266667pt;}
.y52_c00263{bottom:720.266667pt;}
.y17_c00263{bottom:734.800000pt;}
.y51_c00263{bottom:736.000000pt;}
.y16_c00263{bottom:751.066667pt;}
.y50_c00263{bottom:752.266667pt;}
.y15_c00263{bottom:766.800000pt;}
.y4f_c00263{bottom:778.533333pt;}
.y14_c00263{bottom:782.533333pt;}
.y4e_c00263{bottom:784.266667pt;}
.y13_c00263{bottom:798.266667pt;}
.y4d_c00263{bottom:800.000000pt;}
.y12_c00263{bottom:814.000000pt;}
.y4c_c00263{bottom:816.000000pt;}
.y11_c00263{bottom:830.000000pt;}
.y4b_c00263{bottom:831.733333pt;}
.y10_c00263{bottom:845.733333pt;}
.y4a_c00263{bottom:847.733333pt;}
.yf_c00263{bottom:861.466667pt;}
.y49_c00263{bottom:863.733333pt;}
.y48_c00263{bottom:879.066667pt;}
.yb_c00263{bottom:884.800000pt;}
.y47_c00263{bottom:895.066667pt;}
.ya_c00263{bottom:903.333333pt;}
.ye_c00263{bottom:904.000000pt;}
.y9_c00263{bottom:915.866667pt;}
.yd_c00263{bottom:916.800000pt;}
.y46_c00263{bottom:917.466667pt;}
.y8_c00263{bottom:928.933333pt;}
.yc_c00263{bottom:929.600000pt;}
.y45_c00263{bottom:930.266667pt;}
.y7_c00263{bottom:942.133333pt;}
.y44_c00263{bottom:942.666667pt;}
.y6_c00263{bottom:953.333333pt;}
.y43_c00263{bottom:955.466667pt;}
.y5_c00263{bottom:960.266667pt;}
.y42_c00263{bottom:968.266667pt;}
.y4_c00263{bottom:976.533333pt;}
.y41_c00263{bottom:981.066667pt;}
.y3_c00263{bottom:992.266667pt;}
.y40_c00263{bottom:993.866667pt;}
.y1_c00263{bottom:1015.066667pt;}
.y2_c00263{bottom:1016.400000pt;}
.h8_c00263{height:21.333333pt;}
.ha_c00263{height:32.000000pt;}
.h5_c00263{height:42.666667pt;}
.h3_c00263{height:48.000000pt;}
.h4_c00263{height:53.333333pt;}
.h6_c00263{height:58.666667pt;}
.h7_c00263{height:64.000000pt;}
.h9_c00263{height:69.333333pt;}
.h2_c00263{height:74.666667pt;}
.hb_c00263{height:90.666667pt;}
.h1_c00263{height:1128.666667pt;}
.h0_c00263{height:1128.960043pt;}
.w1_c00263{width:854.666667pt;}
.w0_c00263{width:854.720052pt;}
.x0_c00263{left:0.000000pt;}
.xa1_c00263{left:164.133333pt;}
.x7c_c00263{left:165.066667pt;}
.x1_c00263{left:166.400000pt;}
.x3_c00263{left:168.933333pt;}
.x8e_c00263{left:178.266667pt;}
.x8b_c00263{left:179.600000pt;}
.x4_c00263{left:180.800000pt;}
.x13_c00263{left:181.866667pt;}
.x29_c00263{left:183.333333pt;}
.xa2_c00263{left:186.533333pt;}
.xa4_c00263{left:189.333333pt;}
.x34_c00263{left:190.400000pt;}
.x1f_c00263{left:192.000000pt;}
.xaa_c00263{left:193.600000pt;}
.x54_c00263{left:196.666667pt;}
.x71_c00263{left:198.400000pt;}
.x4f_c00263{left:199.333333pt;}
.x3d_c00263{left:200.400000pt;}
.x96_c00263{left:201.333333pt;}
.x38_c00263{left:202.533333pt;}
.x5a_c00263{left:203.600000pt;}
.x9f_c00263{left:205.466667pt;}
.x8c_c00263{left:208.400000pt;}
.x20_c00263{left:209.600000pt;}
.x2a_c00263{left:211.733333pt;}
.x77_c00263{left:212.800000pt;}
.xd_c00263{left:215.466667pt;}
.x84_c00263{left:216.933333pt;}
.x87_c00263{left:218.933333pt;}
.x1a_c00263{left:221.066667pt;}
.x6d_c00263{left:222.933333pt;}
.x2e_c00263{left:225.600000pt;}
.x72_c00263{left:227.200000pt;}
.x5_c00263{left:228.533333pt;}
.x98_c00263{left:229.466667pt;}
.x21_c00263{left:231.333333pt;}
.x2b_c00263{left:232.800000pt;}
.x69_c00263{left:234.533333pt;}
.x55_c00263{left:236.400000pt;}
.x6e_c00263{left:238.933333pt;}
.x3e_c00263{left:240.800000pt;}
.x39_c00263{left:242.800000pt;}
.x9c_c00263{left:243.733333pt;}
.x8f_c00263{left:246.400000pt;}
.x2f_c00263{left:247.333333pt;}
.x8d_c00263{left:249.066667pt;}
.xa6_c00263{left:250.266667pt;}
.x64_c00263{left:251.466667pt;}
.x14_c00263{left:252.533333pt;}
.x35_c00263{left:255.733333pt;}
.x3f_c00263{left:256.800000pt;}
.x7d_c00263{left:258.266667pt;}
.x85_c00263{left:262.400000pt;}
.x9d_c00263{left:263.333333pt;}
.x4b_c00263{left:265.333333pt;}
.x6a_c00263{left:267.200000pt;}
.x97_c00263{left:268.533333pt;}
.x88_c00263{left:269.866667pt;}
.x50_c00263{left:272.666667pt;}
.x92_c00263{left:273.600000pt;}
.x58_c00263{left:274.533333pt;}
.x1b_c00263{left:277.066667pt;}
.x60_c00263{left:279.733333pt;}
.x6_c00263{left:281.066667pt;}
.x81_c00263{left:282.133333pt;}
.x6f_c00263{left:283.466667pt;}
.x22_c00263{left:285.466667pt;}
.x93_c00263{left:286.400000pt;}
.x2c_c00263{left:287.466667pt;}
.x95_c00263{left:288.400000pt;}
.x7f_c00263{left:290.533333pt;}
.x51_c00263{left:291.866667pt;}
.x5b_c00263{left:294.800000pt;}
.x30_c00263{left:296.000000pt;}
.x40_c00263{left:297.066667pt;}
.x61_c00263{left:299.866667pt;}
.x5e_c00263{left:302.266667pt;}
.xe_c00263{left:304.400000pt;}
.x73_c00263{left:305.600000pt;}
.x5c_c00263{left:307.333333pt;}
.x86_c00263{left:309.066667pt;}
.x47_c00263{left:310.933333pt;}
.x99_c00263{left:312.000000pt;}
.x94_c00263{left:313.600000pt;}
.x31_c00263{left:316.533333pt;}
.x52_c00263{left:317.466667pt;}
.x65_c00263{left:318.666667pt;}
.x82_c00263{left:321.200000pt;}
.x36_c00263{left:322.933333pt;}
.x59_c00263{left:323.866667pt;}
.x44_c00263{left:325.733333pt;}
.x70_c00263{left:328.000000pt;}
.x66_c00263{left:329.200000pt;}
.x80_c00263{left:331.466667pt;}
.x7_c00263{left:333.866667pt;}
.xf_c00263{left:335.066667pt;}
.x7a_c00263{left:336.933333pt;}
.x74_c00263{left:338.533333pt;}
.x32_c00263{left:340.800000pt;}
.x4c_c00263{left:342.133333pt;}
.x3a_c00263{left:343.066667pt;}
.x5f_c00263{left:344.533333pt;}
.x62_c00263{left:346.266667pt;}
.x56_c00263{left:347.466667pt;}
.x9a_c00263{left:349.733333pt;}
.x48_c00263{left:350.666667pt;}
.x23_c00263{left:352.000000pt;}
.x10_c00263{left:355.600000pt;}
.x24_c00263{left:358.666667pt;}
.x2d_c00263{left:359.733333pt;}
.x8_c00263{left:361.066667pt;}
.x41_c00263{left:362.933333pt;}
.x3b_c00263{left:364.133333pt;}
.x25_c00263{left:365.733333pt;}
.x37_c00263{left:367.066667pt;}
.x4d_c00263{left:368.000000pt;}
.x49_c00263{left:370.533333pt;}
.x26_c00263{left:371.466667pt;}
.x42_c00263{left:373.200000pt;}
.x33_c00263{left:376.000000pt;}
.x27_c00263{left:377.600000pt;}
.x2_c00263{left:378.533333pt;}
.x7b_c00263{left:379.466667pt;}
.xa9_c00263{left:380.666667pt;}
.x9b_c00263{left:381.733333pt;}
.x67_c00263{left:382.666667pt;}
.x9_c00263{left:384.133333pt;}
.xa0_c00263{left:385.333333pt;}
.x5d_c00263{left:386.400000pt;}
.x6b_c00263{left:392.266667pt;}
.x90_c00263{left:393.866667pt;}
.xac_c00263{left:394.800000pt;}
.x63_c00263{left:396.800000pt;}
.x17_c00263{left:398.133333pt;}
.x78_c00263{left:399.066667pt;}
.xab_c00263{left:400.800000pt;}
.x1c_c00263{left:402.133333pt;}
.x28_c00263{left:403.200000pt;}
.x15_c00263{left:404.266667pt;}
.x57_c00263{left:405.466667pt;}
.xa5_c00263{left:406.400000pt;}
.x7e_c00263{left:407.733333pt;}
.x68_c00263{left:410.800000pt;}
.x43_c00263{left:412.533333pt;}
.x89_c00263{left:413.600000pt;}
.x11_c00263{left:414.533333pt;}
.x45_c00263{left:416.533333pt;}
.x3c_c00263{left:417.600000pt;}
.xa_c00263{left:419.600000pt;}
.x79_c00263{left:421.200000pt;}
.x18_c00263{left:422.400000pt;}
.x4a_c00263{left:423.333333pt;}
.x4e_c00263{left:424.666667pt;}
.x53_c00263{left:426.133333pt;}
.x1d_c00263{left:428.400000pt;}
.x46_c00263{left:431.200000pt;}
.x8a_c00263{left:435.333333pt;}
.x9e_c00263{left:436.266667pt;}
.x6c_c00263{left:438.000000pt;}
.xb_c00263{left:440.400000pt;}
.xa7_c00263{left:442.000000pt;}
.x83_c00263{left:444.800000pt;}
.x75_c00263{left:448.266667pt;}
.x12_c00263{left:450.400000pt;}
.x91_c00263{left:451.466667pt;}
.x19_c00263{left:452.800000pt;}
.x1e_c00263{left:454.000000pt;}
.xa3_c00263{left:455.200000pt;}
.x16_c00263{left:456.133333pt;}
.xa8_c00263{left:457.466667pt;}
.xc_c00263{left:461.466667pt;}
.x76_c00263{left:462.666667pt;}
.x135_c00263{left:473.333333pt;}
.xc9_c00263{left:483.866667pt;}
.x136_c00263{left:487.066667pt;}
.xc3_c00263{left:496.266667pt;}
.xb5_c00263{left:497.333333pt;}
.x103_c00263{left:498.266667pt;}
.xce_c00263{left:499.200000pt;}
.x142_c00263{left:506.266667pt;}
.xad_c00263{left:509.733333pt;}
.x12c_c00263{left:514.133333pt;}
.x12f_c00263{left:516.000000pt;}
.x122_c00263{left:517.200000pt;}
.x120_c00263{left:519.200000pt;}
.x143_c00263{left:522.533333pt;}
.x131_c00263{left:524.133333pt;}
.x11e_c00263{left:525.066667pt;}
.xba_c00263{left:529.066667pt;}
.x14b_c00263{left:530.000000pt;}
.xe5_c00263{left:531.866667pt;}
.x117_c00263{left:533.333333pt;}
.x12b_c00263{left:534.666667pt;}
.xfc_c00263{left:536.000000pt;}
.xea_c00263{left:538.800000pt;}
.xdc_c00263{left:540.800000pt;}
.x114_c00263{left:543.600000pt;}
.xcf_c00263{left:546.933333pt;}
.xed_c00263{left:549.200000pt;}
.xbb_c00263{left:550.800000pt;}
.xf5_c00263{left:553.066667pt;}
.xdd_c00263{left:554.266667pt;}
.x132_c00263{left:555.466667pt;}
.x104_c00263{left:556.533333pt;}
.xc6_c00263{left:558.666667pt;}
.xca_c00263{left:559.733333pt;}
.x118_c00263{left:561.466667pt;}
.xd4_c00263{left:562.933333pt;}
.xfd_c00263{left:564.533333pt;}
.xe1_c00263{left:565.466667pt;}
.x149_c00263{left:566.800000pt;}
.xe6_c00263{left:569.333333pt;}
.xae_c00263{left:571.200000pt;}
.x124_c00263{left:572.266667pt;}
.xd5_c00263{left:573.200000pt;}
.x11b_c00263{left:574.933333pt;}
.xff_c00263{left:576.800000pt;}
.x139_c00263{left:578.000000pt;}
.x13c_c00263{left:579.466667pt;}
.xc7_c00263{left:581.066667pt;}
.xee_c00263{left:582.133333pt;}
.x146_c00263{left:583.466667pt;}
.x112_c00263{left:584.933333pt;}
.x10c_c00263{left:586.000000pt;}
.x108_c00263{left:586.933333pt;}
.x125_c00263{left:588.933333pt;}
.xe7_c00263{left:590.133333pt;}
.x147_c00263{left:591.066667pt;}
.x10f_c00263{left:592.000000pt;}
.x13f_c00263{left:593.066667pt;}
.x105_c00263{left:594.266667pt;}
.x13d_c00263{left:595.200000pt;}
.x121_c00263{left:597.333333pt;}
.x10d_c00263{left:598.800000pt;}
.x113_c00263{left:600.266667pt;}
.xef_c00263{left:601.333333pt;}
.xf6_c00263{left:602.666667pt;}
.xbc_c00263{left:603.600000pt;}
.xc0_c00263{left:605.066667pt;}
.xd0_c00263{left:607.066667pt;}
.x119_c00263{left:609.466667pt;}
.x144_c00263{left:610.400000pt;}
.x123_c00263{left:611.600000pt;}
.xcb_c00263{left:614.400000pt;}
.xeb_c00263{left:615.600000pt;}
.x148_c00263{left:617.333333pt;}
.xaf_c00263{left:618.266667pt;}
.xf1_c00263{left:620.400000pt;}
.xc1_c00263{left:622.933333pt;}
.x106_c00263{left:624.666667pt;}
.x140_c00263{left:628.000000pt;}
.x126_c00263{left:628.933333pt;}
.xe2_c00263{left:630.400000pt;}
.xd1_c00263{left:631.333333pt;}
.x137_c00263{left:632.533333pt;}
.xd6_c00263{left:633.600000pt;}
.x101_c00263{left:636.400000pt;}
.x11a_c00263{left:637.333333pt;}
.x133_c00263{left:638.666667pt;}
.x145_c00263{left:643.066667pt;}
.x109_c00263{left:645.866667pt;}
.x13a_c00263{left:646.800000pt;}
.x128_c00263{left:649.866667pt;}
.x138_c00263{left:650.800000pt;}
.x14c_c00263{left:652.666667pt;}
.xde_c00263{left:653.733333pt;}
.xf2_c00263{left:654.933333pt;}
.x102_c00263{left:657.866667pt;}
.xe8_c00263{left:659.600000pt;}
.x110_c00263{left:660.800000pt;}
.xd7_c00263{left:661.733333pt;}
.xdf_c00263{left:663.333333pt;}
.x10a_c00263{left:664.400000pt;}
.xf7_c00263{left:666.000000pt;}
.xc2_c00263{left:667.466667pt;}
.x130_c00263{left:670.000000pt;}
.xcc_c00263{left:671.333333pt;}
.xec_c00263{left:672.266667pt;}
.x115_c00263{left:673.466667pt;}
.xb0_c00263{left:674.933333pt;}
.xbd_c00263{left:676.266667pt;}
.xfe_c00263{left:679.866667pt;}
.xbe_c00263{left:682.933333pt;}
.xf8_c00263{left:684.533333pt;}
.xe0_c00263{left:687.333333pt;}
.x11c_c00263{left:689.466667pt;}
.xf0_c00263{left:691.866667pt;}
.x11f_c00263{left:694.266667pt;}
.x141_c00263{left:696.133333pt;}
.xb1_c00263{left:697.066667pt;}
.xd8_c00263{left:700.133333pt;}
.x129_c00263{left:702.000000pt;}
.x127_c00263{left:703.200000pt;}
.xf9_c00263{left:704.666667pt;}
.xe3_c00263{left:706.266667pt;}
.xd2_c00263{left:707.200000pt;}
.xd9_c00263{left:708.400000pt;}
.xb2_c00263{left:711.466667pt;}
.xfa_c00263{left:714.533333pt;}
.x134_c00263{left:715.733333pt;}
.xb8_c00263{left:719.466667pt;}
.xc4_c00263{left:720.533333pt;}
.x14a_c00263{left:721.733333pt;}
.x14d_c00263{left:722.933333pt;}
.xe9_c00263{left:723.866667pt;}
.xe4_c00263{left:724.800000pt;}
.xf3_c00263{left:727.866667pt;}
.x12d_c00263{left:729.600000pt;}
.x116_c00263{left:733.066667pt;}
.x10b_c00263{left:735.733333pt;}
.x13b_c00263{left:736.933333pt;}
.x12e_c00263{left:737.866667pt;}
.xb3_c00263{left:738.933333pt;}
.xf4_c00263{left:740.000000pt;}
.xfb_c00263{left:741.733333pt;}
.xda_c00263{left:743.600000pt;}
.xbf_c00263{left:744.933333pt;}
.xb6_c00263{left:746.000000pt;}
.xcd_c00263{left:749.066667pt;}
.x111_c00263{left:750.666667pt;}
.x14e_c00263{left:752.533333pt;}
.xd3_c00263{left:754.266667pt;}
.x11d_c00263{left:756.400000pt;}
.x12a_c00263{left:757.333333pt;}
.x100_c00263{left:759.200000pt;}
.x13e_c00263{left:760.400000pt;}
.xdb_c00263{left:762.133333pt;}
.x107_c00263{left:764.266667pt;}
.xb9_c00263{left:765.866667pt;}
.x10e_c00263{left:767.600000pt;}
.xb4_c00263{left:769.066667pt;}
.xc8_c00263{left:770.400000pt;}
.xb7_c00263{left:771.333333pt;}
.xc5_c00263{left:772.400000pt;}
.x14f_c00263{left:789.066667pt;}
}





/* 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_c00264 {
    display:none;
  }
  .loading-indicator_c00264.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00264 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_c00264 { 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_c00264" -> "#page-container .classname_c00264")
 */
.pf_c00264 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00264 { /* 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_c00264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00264 { /* 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_c00264 { /* 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_c00264 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00264 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00264 {overflow:visible;}
  }
}
.c_c00264 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00264 { /* 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_c00264:after { /* webkit #35443 */
  content: '';
}
.t_c00264:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00264 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 */
}
.__c00264 { /* 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_c00264 { /* info for Javascript */
  display:none;
}
.l_c00264 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00264 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00264 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00264: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_c00264 {
    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_c00264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00264.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_c00264 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00264;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.000000;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;}
.m9a_c00264{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00264{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00264{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m98_c00264{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m75_c00264{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00264{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m129_c00264{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m79_c00264{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00264{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m74_c00264{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mea_c00264{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mce_c00264{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m55_c00264{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00264{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m32_c00264{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m107_c00264{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00264{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m52_c00264{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00264{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7_c00264{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mba_c00264{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mac_c00264{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m14_c00264{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00264{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m54_c00264{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m125_c00264{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00264{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m39_c00264{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m8_c00264{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00264{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00264{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md8_c00264{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00264{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m66_c00264{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00264{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m68_c00264{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m80_c00264{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00264{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m73_c00264{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.md0_c00264{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m112_c00264{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m20_c00264{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00264{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00264{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00264{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m65_c00264{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m71_c00264{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00264{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m67_c00264{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m99_c00264{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mef_c00264{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m16_c00264{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m97_c00264{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.me9_c00264{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m69_c00264{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00264{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m24_c00264{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.med_c00264{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m62_c00264{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00264{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m127_c00264{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00264{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00264{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m104_c00264{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m31_c00264{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00264{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m64_c00264{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m47_c00264{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m25_c00264{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00264{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m15_c00264{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m22_c00264{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m94_c00264{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mf_c00264{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00264{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.meb_c00264{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00264{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00264{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m102_c00264{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m85_c00264{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m17_c00264{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.md3_c00264{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00264{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m126_c00264{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00264{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m72_c00264{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mec_c00264{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00264{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00264{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m50_c00264{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00264{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00264{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00264{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m41_c00264{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00264{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m103_c00264{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00264{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9_c00264{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m28_c00264{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00264{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m44_c00264{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma_c00264{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00264{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00264{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m35_c00264{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m92_c00264{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m89_c00264{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00264{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m70_c00264{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00264{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3_c00264{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00264{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m45_c00264{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m63_c00264{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m49_c00264{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00264{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00264{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00264{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md2_c00264{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m83_c00264{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00264{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m36_c00264{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00264{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m23_c00264{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00264{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m12_c00264{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00264{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00264{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00264{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00264{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00264{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m26_c00264{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m76_c00264{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00264{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00264{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00264{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m60_c00264{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00264{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me6_c00264{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00264{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m59_c00264{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m81_c00264{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00264{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m40_c00264{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m61_c00264{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mca_c00264{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00264{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m27_c00264{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m123_c00264{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m90_c00264{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m57_c00264{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m82_c00264{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00264{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00264{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m119_c00264{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00264{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00264{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00264{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00264{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00264{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00264{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00264{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m106_c00264{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00264{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m105_c00264{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00264{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m96_c00264{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m46_c00264{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00264{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.md7_c00264{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00264{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00264{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00264{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00264{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00264{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md4_c00264{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc_c00264{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m21_c00264{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m43_c00264{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m37_c00264{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m29_c00264{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00264{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m101_c00264{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00264{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m121_c00264{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m13_c00264{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00264{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md1_c00264{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.maf_c00264{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m18_c00264{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m124_c00264{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00264{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00264{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00264{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me8_c00264{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m87_c00264{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m95_c00264{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00264{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m111_c00264{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00264{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00264{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00264{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00264{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m53_c00264{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00264{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mad_c00264{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00264{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mae_c00264{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m34_c00264{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mff_c00264{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00264{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00264{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m109_c00264{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.me1_c00264{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me3_c00264{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m51_c00264{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00264{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m117_c00264{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m114_c00264{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me_c00264{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md_c00264{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m115_c00264{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00264{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00264{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00264{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mab_c00264{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00264{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00264{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m30_c00264{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00264{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00264{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m56_c00264{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m42_c00264{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00264{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m86_c00264{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me2_c00264{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m10_c00264{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00264{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00264{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m58_c00264{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m110_c00264{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m38_c00264{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m48_c00264{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00264{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00264{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00264{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mda_c00264{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m128_c00264{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m88_c00264{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00264{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.maa_c00264{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00264{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m122_c00264{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00264{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me7_c00264{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00264{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);}
.m9d_c00264{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m100_c00264{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m113_c00264{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m78_c00264{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11_c00264{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m91_c00264{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mee_c00264{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00264{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00264{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m5_c00264{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md5_c00264{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m19_c00264{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m77_c00264{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m108_c00264{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00264{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00264{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00264{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00264{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m6_c00264{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00264{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.me0_c00264{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00264{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m116_c00264{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.me5_c00264{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m93_c00264{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m120_c00264{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m33_c00264{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.md6_c00264{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00264{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m84_c00264{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00264{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.me4_c00264{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m118_c00264{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00264{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00264{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00264{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{transform:matrix(0.494250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494250,0.000000,0.000000,0.250000,0,0);}
.md9_c00264{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00264{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.mde_c00264{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls1_c00264{letter-spacing:0.000000px;}
.ls0_c00264{letter-spacing:55.714286px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{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__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00264{word-spacing:-85.714286px;}
.ws7_c00264{word-spacing:-7.261905px;}
.ws5_c00264{word-spacing:-3.823529px;}
.ws1_c00264{word-spacing:-2.353100px;}
.ws9_c00264{word-spacing:0.000000px;}
.ws6_c00264{word-spacing:0.378223px;}
.ws4_c00264{word-spacing:11.875000px;}
.ws0_c00264{word-spacing:15.555556px;}
.ws3_c00264{word-spacing:22.812500px;}
.ws8_c00264{word-spacing:1827.500000px;}
._1_c00264{margin-left:-55.714286px;}
._0_c00264{width:3.571429px;}
.fc0_c00264{color:transparent;}
.fs1_c00264{font-size:30.000000px;}
.fs6_c00264{font-size:54.000000px;}
.fs5_c00264{font-size:60.000000px;}
.fs4_c00264{font-size:66.000000px;}
.fs3_c00264{font-size:72.000000px;}
.fs0_c00264{font-size:78.000000px;}
.fs2_c00264{font-size:84.000000px;}
.y0_c00264{bottom:0.000000px;}
.y6e_c00264{bottom:175.650000px;}
.y6d_c00264{bottom:188.250000px;}
.y39_c00264{bottom:190.050000px;}
.y6c_c00264{bottom:192.900000px;}
.y38_c00264{bottom:204.750000px;}
.y6b_c00264{bottom:214.800000px;}
.y37_c00264{bottom:218.850000px;}
.y6a_c00264{bottom:232.500000px;}
.y36_c00264{bottom:232.950000px;}
.y35_c00264{bottom:247.350000px;}
.y69_c00264{bottom:250.200000px;}
.y34_c00264{bottom:262.800000px;}
.y68_c00264{bottom:267.900000px;}
.y33_c00264{bottom:275.700000px;}
.y32_c00264{bottom:289.800000px;}
.y67_c00264{bottom:290.100000px;}
.y31_c00264{bottom:304.200000px;}
.y66_c00264{bottom:307.800000px;}
.y30_c00264{bottom:318.600000px;}
.y65_c00264{bottom:325.500000px;}
.y2f_c00264{bottom:332.700000px;}
.y2e_c00264{bottom:347.100000px;}
.y64_c00264{bottom:347.400000px;}
.y63_c00264{bottom:365.100000px;}
.y62_c00264{bottom:382.950000px;}
.y2d_c00264{bottom:393.450000px;}
.y61_c00264{bottom:400.200000px;}
.y2c_c00264{bottom:411.150000px;}
.y60_c00264{bottom:417.900000px;}
.y2b_c00264{bottom:428.400000px;}
.y5f_c00264{bottom:435.600000px;}
.y2a_c00264{bottom:451.050000px;}
.y5e_c00264{bottom:452.850000px;}
.y29_c00264{bottom:468.750000px;}
.y5d_c00264{bottom:470.100000px;}
.y27_c00264{bottom:486.450000px;}
.y5c_c00264{bottom:487.800000px;}
.y26_c00264{bottom:503.700000px;}
.y5b_c00264{bottom:505.050000px;}
.y5a_c00264{bottom:523.050000px;}
.y25_c00264{bottom:525.900000px;}
.y59_c00264{bottom:540.750000px;}
.y24_c00264{bottom:543.600000px;}
.y58_c00264{bottom:558.750000px;}
.y23_c00264{bottom:566.550000px;}
.y57_c00264{bottom:576.450000px;}
.y22_c00264{bottom:584.250000px;}
.y56_c00264{bottom:594.450000px;}
.y21_c00264{bottom:601.950000px;}
.y55_c00264{bottom:612.150000px;}
.y20_c00264{bottom:619.500000px;}
.y54_c00264{bottom:629.850000px;}
.y1f_c00264{bottom:637.500000px;}
.y53_c00264{bottom:647.550000px;}
.y1e_c00264{bottom:655.200000px;}
.y52_c00264{bottom:664.800000px;}
.y1d_c00264{bottom:672.450000px;}
.y51_c00264{bottom:682.500000px;}
.y1c_c00264{bottom:690.450000px;}
.y50_c00264{bottom:700.200000px;}
.y1b_c00264{bottom:708.450000px;}
.y4f_c00264{bottom:717.900000px;}
.y28_c00264{bottom:724.350000px;}
.y1a_c00264{bottom:740.700000px;}
.y4e_c00264{bottom:742.650000px;}
.y19_c00264{bottom:747.600000px;}
.y4d_c00264{bottom:757.800000px;}
.y18_c00264{bottom:765.300000px;}
.y4c_c00264{bottom:772.200000px;}
.y17_c00264{bottom:782.550000px;}
.y4b_c00264{bottom:785.550000px;}
.y4a_c00264{bottom:799.950000px;}
.y16_c00264{bottom:800.250000px;}
.y49_c00264{bottom:814.650000px;}
.y15_c00264{bottom:817.950000px;}
.y48_c00264{bottom:828.750000px;}
.y14_c00264{bottom:835.950000px;}
.y47_c00264{bottom:843.150000px;}
.y13_c00264{bottom:853.200000px;}
.y46_c00264{bottom:859.350000px;}
.y12_c00264{bottom:871.200000px;}
.y45_c00264{bottom:884.400000px;}
.y11_c00264{bottom:889.500000px;}
.y44_c00264{bottom:902.100000px;}
.y10_c00264{bottom:906.450000px;}
.y43_c00264{bottom:919.800000px;}
.yf_c00264{bottom:924.450000px;}
.y42_c00264{bottom:937.500000px;}
.ye_c00264{bottom:950.700000px;}
.y41_c00264{bottom:955.050000px;}
.yd_c00264{bottom:968.700000px;}
.y40_c00264{bottom:981.300000px;}
.yc_c00264{bottom:986.700000px;}
.y3f_c00264{bottom:999.300000px;}
.yb_c00264{bottom:1004.100000px;}
.y3e_c00264{bottom:1017.600000px;}
.ya_c00264{bottom:1021.500000px;}
.y3d_c00264{bottom:1034.550000px;}
.y9_c00264{bottom:1039.500000px;}
.y3c_c00264{bottom:1052.550000px;}
.y8_c00264{bottom:1057.200000px;}
.y3b_c00264{bottom:1070.250000px;}
.y7_c00264{bottom:1074.900000px;}
.y3a_c00264{bottom:1092.300000px;}
.y6_c00264{bottom:1092.600000px;}
.y4_c00264{bottom:1109.850000px;}
.y5_c00264{bottom:1110.600000px;}
.y2_c00264{bottom:1131.150000px;}
.y3_c00264{bottom:1136.250000px;}
.y1_c00264{bottom:1137.300000px;}
.h3_c00264{height:30.000000px;}
.h8_c00264{height:54.000000px;}
.h7_c00264{height:60.000000px;}
.h6_c00264{height:66.000000px;}
.h5_c00264{height:72.000000px;}
.h2_c00264{height:78.000000px;}
.h4_c00264{height:84.000000px;}
.h0_c00264{height:1268.640015px;}
.h1_c00264{height:1269.000000px;}
.w1_c00264{width:961.500000px;}
.w0_c00264{width:961.560058px;}
.x0_c00264{left:0.000000px;}
.x98_c00264{left:78.000000px;}
.x32_c00264{left:86.100000px;}
.x49_c00264{left:88.200000px;}
.x73_c00264{left:89.250000px;}
.x44_c00264{left:90.750000px;}
.x90_c00264{left:91.800000px;}
.x76_c00264{left:93.300000px;}
.x74_c00264{left:96.150000px;}
.x9f_c00264{left:98.700000px;}
.x56_c00264{left:103.800000px;}
.xb_c00264{left:106.500000px;}
.x12_c00264{left:108.450000px;}
.x68_c00264{left:110.100000px;}
.xb2_c00264{left:114.000000px;}
.xa1_c00264{left:123.150000px;}
.x78_c00264{left:125.700000px;}
.x5e_c00264{left:127.350000px;}
.x4a_c00264{left:128.550000px;}
.x3a_c00264{left:129.600000px;}
.x26_c00264{left:131.700000px;}
.x7c_c00264{left:133.950000px;}
.x1f_c00264{left:136.800000px;}
.x77_c00264{left:138.600000px;}
.x50_c00264{left:140.100000px;}
.xb0_c00264{left:141.750000px;}
.x2d_c00264{left:142.800000px;}
.x8c_c00264{left:144.750000px;}
.x20_c00264{left:145.800000px;}
.x7e_c00264{left:146.850000px;}
.x51_c00264{left:149.100000px;}
.x18_c00264{left:150.300000px;}
.x45_c00264{left:152.700000px;}
.x5f_c00264{left:154.050000px;}
.x91_c00264{left:156.600000px;}
.xc_c00264{left:158.400000px;}
.x84_c00264{left:159.750000px;}
.x38_c00264{left:161.700000px;}
.x6d_c00264{left:162.900000px;}
.x9b_c00264{left:166.350000px;}
.x2e_c00264{left:167.700000px;}
.xaa_c00264{left:169.500000px;}
.x63_c00264{left:171.000000px;}
.x3b_c00264{left:172.800000px;}
.x19_c00264{left:174.750000px;}
.x33_c00264{left:176.850000px;}
.x4b_c00264{left:179.250000px;}
.x79_c00264{left:181.500000px;}
.x65_c00264{left:183.450000px;}
.x27_c00264{left:184.950000px;}
.x5b_c00264{left:188.400000px;}
.x64_c00264{left:189.750000px;}
.xa4_c00264{left:194.700000px;}
.xd_c00264{left:196.950000px;}
.x2f_c00264{left:198.600000px;}
.xa2_c00264{left:199.800000px;}
.x8b_c00264{left:200.850000px;}
.x4c_c00264{left:202.350000px;}
.x13_c00264{left:204.600000px;}
.x5c_c00264{left:206.100000px;}
.x46_c00264{left:207.450000px;}
.x57_c00264{left:214.350000px;}
.x85_c00264{left:216.750000px;}
.x21_c00264{left:217.800000px;}
.x7f_c00264{left:219.600000px;}
.x1a_c00264{left:220.800000px;}
.x4d_c00264{left:223.200000px;}
.xa8_c00264{left:224.700000px;}
.xe_c00264{left:226.800000px;}
.x99_c00264{left:227.850000px;}
.x8d_c00264{left:229.050000px;}
.xaf_c00264{left:230.850000px;}
.x3c_c00264{left:232.950000px;}
.xb1_c00264{left:234.300000px;}
.x58_c00264{left:236.250000px;}
.x40_c00264{left:237.300000px;}
.x52_c00264{left:241.950000px;}
.xab_c00264{left:243.000000px;}
.x34_c00264{left:244.950000px;}
.x60_c00264{left:250.200000px;}
.x9c_c00264{left:252.750000px;}
.xa6_c00264{left:253.950000px;}
.x22_c00264{left:255.300000px;}
.x59_c00264{left:257.100000px;}
.x30_c00264{left:259.050000px;}
.x96_c00264{left:260.250000px;}
.x28_c00264{left:263.700000px;}
.xa0_c00264{left:264.750000px;}
.x69_c00264{left:265.950000px;}
.x35_c00264{left:267.600000px;}
.x47_c00264{left:268.950000px;}
.x6e_c00264{left:271.500000px;}
.xf_c00264{left:272.550000px;}
.x7a_c00264{left:274.350000px;}
.x23_c00264{left:276.150000px;}
.x92_c00264{left:277.950000px;}
.x5d_c00264{left:279.150000px;}
.x39_c00264{left:281.250000px;}
.x94_c00264{left:283.650000px;}
.x6a_c00264{left:285.750000px;}
.x3d_c00264{left:288.000000px;}
.x53_c00264{left:289.950000px;}
.x4e_c00264{left:293.100000px;}
.x9d_c00264{left:294.900000px;}
.x1b_c00264{left:298.500000px;}
.x41_c00264{left:300.300000px;}
.x31_c00264{left:301.500000px;}
.x29_c00264{left:304.800000px;}
.xa9_c00264{left:307.050000px;}
.x93_c00264{left:309.300000px;}
.x6f_c00264{left:311.400000px;}
.x75_c00264{left:315.000000px;}
.x42_c00264{left:316.800000px;}
.x2a_c00264{left:318.150000px;}
.x36_c00264{left:319.800000px;}
.x8e_c00264{left:321.600000px;}
.x14_c00264{left:322.800000px;}
.x66_c00264{left:325.650000px;}
.xac_c00264{left:327.300000px;}
.x10_c00264{left:328.350000px;}
.x86_c00264{left:331.950000px;}
.x3e_c00264{left:333.750000px;}
.x82_c00264{left:335.100000px;}
.x15_c00264{left:336.450000px;}
.x61_c00264{left:337.650000px;}
.x1_c00264{left:338.700000px;}
.x4f_c00264{left:339.900000px;}
.x1c_c00264{left:343.200000px;}
.x8f_c00264{left:345.000000px;}
.x11_c00264{left:347.850000px;}
.x43_c00264{left:349.500000px;}
.x87_c00264{left:351.000000px;}
.x2b_c00264{left:354.150000px;}
.x24_c00264{left:356.400000px;}
.x89_c00264{left:357.900000px;}
.x54_c00264{left:359.400000px;}
.x70_c00264{left:361.050000px;}
.x97_c00264{left:363.150000px;}
.x81_c00264{left:364.350000px;}
.x3f_c00264{left:365.400000px;}
.xa7_c00264{left:368.400000px;}
.xa5_c00264{left:371.100000px;}
.x6b_c00264{left:372.750000px;}
.x1d_c00264{left:374.100000px;}
.x67_c00264{left:376.050000px;}
.x37_c00264{left:377.400000px;}
.x55_c00264{left:379.500000px;}
.x8a_c00264{left:382.050000px;}
.x71_c00264{left:383.400000px;}
.x48_c00264{left:384.900000px;}
.x88_c00264{left:387.000000px;}
.x6c_c00264{left:388.950000px;}
.x16_c00264{left:390.750000px;}
.xae_c00264{left:391.800000px;}
.x7d_c00264{left:394.350000px;}
.x25_c00264{left:396.300000px;}
.x5a_c00264{left:397.500000px;}
.x83_c00264{left:399.900000px;}
.x80_c00264{left:402.000000px;}
.x17_c00264{left:403.050000px;}
.xad_c00264{left:404.700000px;}
.x95_c00264{left:406.050000px;}
.x9e_c00264{left:408.300000px;}
.x1e_c00264{left:410.400000px;}
.xa3_c00264{left:412.500000px;}
.x2c_c00264{left:413.850000px;}
.x72_c00264{left:415.800000px;}
.x62_c00264{left:420.450000px;}
.x7b_c00264{left:422.850000px;}
.x9a_c00264{left:432.600000px;}
.xdb_c00264{left:446.100000px;}
.x4_c00264{left:447.150000px;}
.x130_c00264{left:453.300000px;}
.x141_c00264{left:455.100000px;}
.x101_c00264{left:459.300000px;}
.xfc_c00264{left:460.500000px;}
.xc9_c00264{left:462.300000px;}
.xb3_c00264{left:463.350000px;}
.x147_c00264{left:465.150000px;}
.x14b_c00264{left:471.600000px;}
.x105_c00264{left:474.150000px;}
.x131_c00264{left:476.700000px;}
.x12d_c00264{left:480.450000px;}
.xb4_c00264{left:482.100000px;}
.x14c_c00264{left:485.250000px;}
.x137_c00264{left:486.750000px;}
.x5_c00264{left:490.050000px;}
.xc4_c00264{left:494.400000px;}
.x106_c00264{left:495.750000px;}
.xe6_c00264{left:497.550000px;}
.xe1_c00264{left:499.350000px;}
.x143_c00264{left:501.450000px;}
.xc5_c00264{left:503.400000px;}
.xf4_c00264{left:504.750000px;}
.xca_c00264{left:506.250000px;}
.x12a_c00264{left:508.350000px;}
.xd3_c00264{left:509.700000px;}
.xe7_c00264{left:511.650000px;}
.x118_c00264{left:513.600000px;}
.x10f_c00264{left:515.400000px;}
.x121_c00264{left:517.350000px;}
.xbc_c00264{left:518.700000px;}
.x13c_c00264{left:520.650000px;}
.x116_c00264{left:522.300000px;}
.x11d_c00264{left:525.600000px;}
.xcb_c00264{left:526.800000px;}
.x10c_c00264{left:528.000000px;}
.x119_c00264{left:529.050000px;}
.xd8_c00264{left:530.250000px;}
.x113_c00264{left:531.450000px;}
.xfd_c00264{left:535.050000px;}
.x13f_c00264{left:536.400000px;}
.xc6_c00264{left:539.400000px;}
.x110_c00264{left:543.450000px;}
.xe8_c00264{left:544.800000px;}
.xd4_c00264{left:546.000000px;}
.x11a_c00264{left:548.100000px;}
.x107_c00264{left:549.750000px;}
.x102_c00264{left:551.100000px;}
.xfe_c00264{left:553.050000px;}
.xe9_c00264{left:554.850000px;}
.x12b_c00264{left:555.900000px;}
.xdc_c00264{left:556.950000px;}
.xe2_c00264{left:560.250000px;}
.xd5_c00264{left:562.950000px;}
.x132_c00264{left:564.900000px;}
.xf5_c00264{left:567.000000px;}
.xd9_c00264{left:568.050000px;}
.xb5_c00264{left:570.600000px;}
.x14a_c00264{left:572.100000px;}
.x138_c00264{left:573.900000px;}
.x114_c00264{left:578.250000px;}
.xe3_c00264{left:579.300000px;}
.xf0_c00264{left:581.100000px;}
.x128_c00264{left:582.600000px;}
.xcc_c00264{left:584.100000px;}
.xb6_c00264{left:585.300000px;}
.xdd_c00264{left:586.800000px;}
.xda_c00264{left:588.600000px;}
.x12c_c00264{left:590.100000px;}
.x11e_c00264{left:592.200000px;}
.x117_c00264{left:594.600000px;}
.x127_c00264{left:596.700000px;}
.x6_c00264{left:598.050000px;}
.xea_c00264{left:599.850000px;}
.x108_c00264{left:602.400000px;}
.x122_c00264{left:603.750000px;}
.xff_c00264{left:605.250000px;}
.xf6_c00264{left:606.600000px;}
.xd6_c00264{left:608.700000px;}
.xbd_c00264{left:613.500000px;}
.x11b_c00264{left:614.700000px;}
.xb7_c00264{left:616.950000px;}
.x145_c00264{left:618.450000px;}
.x133_c00264{left:621.000000px;}
.xcd_c00264{left:623.700000px;}
.x148_c00264{left:625.050000px;}
.xf7_c00264{left:626.100000px;}
.x12e_c00264{left:629.100000px;}
.xeb_c00264{left:630.750000px;}
.xd7_c00264{left:632.100000px;}
.x10d_c00264{left:633.750000px;}
.xce_c00264{left:637.800000px;}
.xc7_c00264{left:640.800000px;}
.xb8_c00264{left:643.950000px;}
.x126_c00264{left:645.300000px;}
.xde_c00264{left:646.950000px;}
.x11f_c00264{left:648.300000px;}
.x7_c00264{left:650.550000px;}
.xf1_c00264{left:653.100000px;}
.x100_c00264{left:654.600000px;}
.x123_c00264{left:655.950000px;}
.xcf_c00264{left:661.200000px;}
.xf8_c00264{left:662.400000px;}
.x134_c00264{left:666.000000px;}
.xbe_c00264{left:667.200000px;}
.x13b_c00264{left:668.700000px;}
.x109_c00264{left:670.050000px;}
.x124_c00264{left:672.150000px;}
.xf9_c00264{left:673.200000px;}
.xb9_c00264{left:677.400000px;}
.xe4_c00264{left:679.050000px;}
.xec_c00264{left:682.950000px;}
.xc8_c00264{left:684.000000px;}
.x146_c00264{left:687.300000px;}
.x135_c00264{left:689.100000px;}
.x115_c00264{left:691.650000px;}
.xbf_c00264{left:692.700000px;}
.x144_c00264{left:695.700000px;}
.xd0_c00264{left:697.200000px;}
.x139_c00264{left:698.850000px;}
.x13d_c00264{left:700.500000px;}
.xfa_c00264{left:701.700000px;}
.x8_c00264{left:703.050000px;}
.xed_c00264{left:705.300000px;}
.xf2_c00264{left:707.100000px;}
.x12f_c00264{left:709.950000px;}
.x103_c00264{left:711.000000px;}
.x10e_c00264{left:712.650000px;}
.x140_c00264{left:715.650000px;}
.x9_c00264{left:717.150000px;}
.xe5_c00264{left:718.650000px;}
.xc0_c00264{left:719.700000px;}
.x125_c00264{left:720.750000px;}
.xba_c00264{left:722.400000px;}
.x136_c00264{left:723.600000px;}
.xf3_c00264{left:726.150000px;}
.x112_c00264{left:727.650000px;}
.x11c_c00264{left:728.700000px;}
.xdf_c00264{left:730.500000px;}
.xfb_c00264{left:733.050000px;}
.xc1_c00264{left:734.850000px;}
.xd1_c00264{left:737.100000px;}
.x14d_c00264{left:738.300000px;}
.x10a_c00264{left:740.700000px;}
.xee_c00264{left:742.350000px;}
.x129_c00264{left:744.600000px;}
.x13e_c00264{left:746.250000px;}
.x3_c00264{left:747.750000px;}
.xd2_c00264{left:751.500000px;}
.xc2_c00264{left:752.850000px;}
.x142_c00264{left:754.800000px;}
.x111_c00264{left:757.500000px;}
.xef_c00264{left:759.300000px;}
.xa_c00264{left:763.200000px;}
.x13a_c00264{left:764.400000px;}
.x120_c00264{left:765.750000px;}
.xe0_c00264{left:766.800000px;}
.x149_c00264{left:768.000000px;}
.x104_c00264{left:769.350000px;}
.x10b_c00264{left:770.550000px;}
.xc3_c00264{left:772.350000px;}
.x2_c00264{left:775.050000px;}
.xbb_c00264{left:776.700000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls1_c00264{letter-spacing:0.000000pt;}
.ls0_c00264{letter-spacing:49.523810pt;}
.ws2_c00264{word-spacing:-76.190476pt;}
.ws7_c00264{word-spacing:-6.455026pt;}
.ws5_c00264{word-spacing:-3.398693pt;}
.ws1_c00264{word-spacing:-2.091644pt;}
.ws9_c00264{word-spacing:0.000000pt;}
.ws6_c00264{word-spacing:0.336199pt;}
.ws4_c00264{word-spacing:10.555556pt;}
.ws0_c00264{word-spacing:13.827160pt;}
.ws3_c00264{word-spacing:20.277778pt;}
.ws8_c00264{word-spacing:1624.444444pt;}
._1_c00264{margin-left:-49.523810pt;}
._0_c00264{width:3.174603pt;}
.fs1_c00264{font-size:26.666667pt;}
.fs6_c00264{font-size:48.000000pt;}
.fs5_c00264{font-size:53.333333pt;}
.fs4_c00264{font-size:58.666667pt;}
.fs3_c00264{font-size:64.000000pt;}
.fs0_c00264{font-size:69.333333pt;}
.fs2_c00264{font-size:74.666667pt;}
.y0_c00264{bottom:0.000000pt;}
.y6e_c00264{bottom:156.133333pt;}
.y6d_c00264{bottom:167.333333pt;}
.y39_c00264{bottom:168.933333pt;}
.y6c_c00264{bottom:171.466667pt;}
.y38_c00264{bottom:182.000000pt;}
.y6b_c00264{bottom:190.933333pt;}
.y37_c00264{bottom:194.533333pt;}
.y6a_c00264{bottom:206.666667pt;}
.y36_c00264{bottom:207.066667pt;}
.y35_c00264{bottom:219.866667pt;}
.y69_c00264{bottom:222.400000pt;}
.y34_c00264{bottom:233.600000pt;}
.y68_c00264{bottom:238.133333pt;}
.y33_c00264{bottom:245.066667pt;}
.y32_c00264{bottom:257.600000pt;}
.y67_c00264{bottom:257.866667pt;}
.y31_c00264{bottom:270.400000pt;}
.y66_c00264{bottom:273.600000pt;}
.y30_c00264{bottom:283.200000pt;}
.y65_c00264{bottom:289.333333pt;}
.y2f_c00264{bottom:295.733333pt;}
.y2e_c00264{bottom:308.533333pt;}
.y64_c00264{bottom:308.800000pt;}
.y63_c00264{bottom:324.533333pt;}
.y62_c00264{bottom:340.400000pt;}
.y2d_c00264{bottom:349.733333pt;}
.y61_c00264{bottom:355.733333pt;}
.y2c_c00264{bottom:365.466667pt;}
.y60_c00264{bottom:371.466667pt;}
.y2b_c00264{bottom:380.800000pt;}
.y5f_c00264{bottom:387.200000pt;}
.y2a_c00264{bottom:400.933333pt;}
.y5e_c00264{bottom:402.533333pt;}
.y29_c00264{bottom:416.666667pt;}
.y5d_c00264{bottom:417.866667pt;}
.y27_c00264{bottom:432.400000pt;}
.y5c_c00264{bottom:433.600000pt;}
.y26_c00264{bottom:447.733333pt;}
.y5b_c00264{bottom:448.933333pt;}
.y5a_c00264{bottom:464.933333pt;}
.y25_c00264{bottom:467.466667pt;}
.y59_c00264{bottom:480.666667pt;}
.y24_c00264{bottom:483.200000pt;}
.y58_c00264{bottom:496.666667pt;}
.y23_c00264{bottom:503.600000pt;}
.y57_c00264{bottom:512.400000pt;}
.y22_c00264{bottom:519.333333pt;}
.y56_c00264{bottom:528.400000pt;}
.y21_c00264{bottom:535.066667pt;}
.y55_c00264{bottom:544.133333pt;}
.y20_c00264{bottom:550.666667pt;}
.y54_c00264{bottom:559.866667pt;}
.y1f_c00264{bottom:566.666667pt;}
.y53_c00264{bottom:575.600000pt;}
.y1e_c00264{bottom:582.400000pt;}
.y52_c00264{bottom:590.933333pt;}
.y1d_c00264{bottom:597.733333pt;}
.y51_c00264{bottom:606.666667pt;}
.y1c_c00264{bottom:613.733333pt;}
.y50_c00264{bottom:622.400000pt;}
.y1b_c00264{bottom:629.733333pt;}
.y4f_c00264{bottom:638.133333pt;}
.y28_c00264{bottom:643.866667pt;}
.y1a_c00264{bottom:658.400000pt;}
.y4e_c00264{bottom:660.133333pt;}
.y19_c00264{bottom:664.533333pt;}
.y4d_c00264{bottom:673.600000pt;}
.y18_c00264{bottom:680.266667pt;}
.y4c_c00264{bottom:686.400000pt;}
.y17_c00264{bottom:695.600000pt;}
.y4b_c00264{bottom:698.266667pt;}
.y4a_c00264{bottom:711.066667pt;}
.y16_c00264{bottom:711.333333pt;}
.y49_c00264{bottom:724.133333pt;}
.y15_c00264{bottom:727.066667pt;}
.y48_c00264{bottom:736.666667pt;}
.y14_c00264{bottom:743.066667pt;}
.y47_c00264{bottom:749.466667pt;}
.y13_c00264{bottom:758.400000pt;}
.y46_c00264{bottom:763.866667pt;}
.y12_c00264{bottom:774.400000pt;}
.y45_c00264{bottom:786.133333pt;}
.y11_c00264{bottom:790.666667pt;}
.y44_c00264{bottom:801.866667pt;}
.y10_c00264{bottom:805.733333pt;}
.y43_c00264{bottom:817.600000pt;}
.yf_c00264{bottom:821.733333pt;}
.y42_c00264{bottom:833.333333pt;}
.ye_c00264{bottom:845.066667pt;}
.y41_c00264{bottom:848.933333pt;}
.yd_c00264{bottom:861.066667pt;}
.y40_c00264{bottom:872.266667pt;}
.yc_c00264{bottom:877.066667pt;}
.y3f_c00264{bottom:888.266667pt;}
.yb_c00264{bottom:892.533333pt;}
.y3e_c00264{bottom:904.533333pt;}
.ya_c00264{bottom:908.000000pt;}
.y3d_c00264{bottom:919.600000pt;}
.y9_c00264{bottom:924.000000pt;}
.y3c_c00264{bottom:935.600000pt;}
.y8_c00264{bottom:939.733333pt;}
.y3b_c00264{bottom:951.333333pt;}
.y7_c00264{bottom:955.466667pt;}
.y3a_c00264{bottom:970.933333pt;}
.y6_c00264{bottom:971.200000pt;}
.y4_c00264{bottom:986.533333pt;}
.y5_c00264{bottom:987.200000pt;}
.y2_c00264{bottom:1005.466667pt;}
.y3_c00264{bottom:1010.000000pt;}
.y1_c00264{bottom:1010.933333pt;}
.h3_c00264{height:26.666667pt;}
.h8_c00264{height:48.000000pt;}
.h7_c00264{height:53.333333pt;}
.h6_c00264{height:58.666667pt;}
.h5_c00264{height:64.000000pt;}
.h2_c00264{height:69.333333pt;}
.h4_c00264{height:74.666667pt;}
.h0_c00264{height:1127.680013pt;}
.h1_c00264{height:1128.000000pt;}
.w1_c00264{width:854.666667pt;}
.w0_c00264{width:854.720052pt;}
.x0_c00264{left:0.000000pt;}
.x98_c00264{left:69.333333pt;}
.x32_c00264{left:76.533333pt;}
.x49_c00264{left:78.400000pt;}
.x73_c00264{left:79.333333pt;}
.x44_c00264{left:80.666667pt;}
.x90_c00264{left:81.600000pt;}
.x76_c00264{left:82.933333pt;}
.x74_c00264{left:85.466667pt;}
.x9f_c00264{left:87.733333pt;}
.x56_c00264{left:92.266667pt;}
.xb_c00264{left:94.666667pt;}
.x12_c00264{left:96.400000pt;}
.x68_c00264{left:97.866667pt;}
.xb2_c00264{left:101.333333pt;}
.xa1_c00264{left:109.466667pt;}
.x78_c00264{left:111.733333pt;}
.x5e_c00264{left:113.200000pt;}
.x4a_c00264{left:114.266667pt;}
.x3a_c00264{left:115.200000pt;}
.x26_c00264{left:117.066667pt;}
.x7c_c00264{left:119.066667pt;}
.x1f_c00264{left:121.600000pt;}
.x77_c00264{left:123.200000pt;}
.x50_c00264{left:124.533333pt;}
.xb0_c00264{left:126.000000pt;}
.x2d_c00264{left:126.933333pt;}
.x8c_c00264{left:128.666667pt;}
.x20_c00264{left:129.600000pt;}
.x7e_c00264{left:130.533333pt;}
.x51_c00264{left:132.533333pt;}
.x18_c00264{left:133.600000pt;}
.x45_c00264{left:135.733333pt;}
.x5f_c00264{left:136.933333pt;}
.x91_c00264{left:139.200000pt;}
.xc_c00264{left:140.800000pt;}
.x84_c00264{left:142.000000pt;}
.x38_c00264{left:143.733333pt;}
.x6d_c00264{left:144.800000pt;}
.x9b_c00264{left:147.866667pt;}
.x2e_c00264{left:149.066667pt;}
.xaa_c00264{left:150.666667pt;}
.x63_c00264{left:152.000000pt;}
.x3b_c00264{left:153.600000pt;}
.x19_c00264{left:155.333333pt;}
.x33_c00264{left:157.200000pt;}
.x4b_c00264{left:159.333333pt;}
.x79_c00264{left:161.333333pt;}
.x65_c00264{left:163.066667pt;}
.x27_c00264{left:164.400000pt;}
.x5b_c00264{left:167.466667pt;}
.x64_c00264{left:168.666667pt;}
.xa4_c00264{left:173.066667pt;}
.xd_c00264{left:175.066667pt;}
.x2f_c00264{left:176.533333pt;}
.xa2_c00264{left:177.600000pt;}
.x8b_c00264{left:178.533333pt;}
.x4c_c00264{left:179.866667pt;}
.x13_c00264{left:181.866667pt;}
.x5c_c00264{left:183.200000pt;}
.x46_c00264{left:184.400000pt;}
.x57_c00264{left:190.533333pt;}
.x85_c00264{left:192.666667pt;}
.x21_c00264{left:193.600000pt;}
.x7f_c00264{left:195.200000pt;}
.x1a_c00264{left:196.266667pt;}
.x4d_c00264{left:198.400000pt;}
.xa8_c00264{left:199.733333pt;}
.xe_c00264{left:201.600000pt;}
.x99_c00264{left:202.533333pt;}
.x8d_c00264{left:203.600000pt;}
.xaf_c00264{left:205.200000pt;}
.x3c_c00264{left:207.066667pt;}
.xb1_c00264{left:208.266667pt;}
.x58_c00264{left:210.000000pt;}
.x40_c00264{left:210.933333pt;}
.x52_c00264{left:215.066667pt;}
.xab_c00264{left:216.000000pt;}
.x34_c00264{left:217.733333pt;}
.x60_c00264{left:222.400000pt;}
.x9c_c00264{left:224.666667pt;}
.xa6_c00264{left:225.733333pt;}
.x22_c00264{left:226.933333pt;}
.x59_c00264{left:228.533333pt;}
.x30_c00264{left:230.266667pt;}
.x96_c00264{left:231.333333pt;}
.x28_c00264{left:234.400000pt;}
.xa0_c00264{left:235.333333pt;}
.x69_c00264{left:236.400000pt;}
.x35_c00264{left:237.866667pt;}
.x47_c00264{left:239.066667pt;}
.x6e_c00264{left:241.333333pt;}
.xf_c00264{left:242.266667pt;}
.x7a_c00264{left:243.866667pt;}
.x23_c00264{left:245.466667pt;}
.x92_c00264{left:247.066667pt;}
.x5d_c00264{left:248.133333pt;}
.x39_c00264{left:250.000000pt;}
.x94_c00264{left:252.133333pt;}
.x6a_c00264{left:254.000000pt;}
.x3d_c00264{left:256.000000pt;}
.x53_c00264{left:257.733333pt;}
.x4e_c00264{left:260.533333pt;}
.x9d_c00264{left:262.133333pt;}
.x1b_c00264{left:265.333333pt;}
.x41_c00264{left:266.933333pt;}
.x31_c00264{left:268.000000pt;}
.x29_c00264{left:270.933333pt;}
.xa9_c00264{left:272.933333pt;}
.x93_c00264{left:274.933333pt;}
.x6f_c00264{left:276.800000pt;}
.x75_c00264{left:280.000000pt;}
.x42_c00264{left:281.600000pt;}
.x2a_c00264{left:282.800000pt;}
.x36_c00264{left:284.266667pt;}
.x8e_c00264{left:285.866667pt;}
.x14_c00264{left:286.933333pt;}
.x66_c00264{left:289.466667pt;}
.xac_c00264{left:290.933333pt;}
.x10_c00264{left:291.866667pt;}
.x86_c00264{left:295.066667pt;}
.x3e_c00264{left:296.666667pt;}
.x82_c00264{left:297.866667pt;}
.x15_c00264{left:299.066667pt;}
.x61_c00264{left:300.133333pt;}
.x1_c00264{left:301.066667pt;}
.x4f_c00264{left:302.133333pt;}
.x1c_c00264{left:305.066667pt;}
.x8f_c00264{left:306.666667pt;}
.x11_c00264{left:309.200000pt;}
.x43_c00264{left:310.666667pt;}
.x87_c00264{left:312.000000pt;}
.x2b_c00264{left:314.800000pt;}
.x24_c00264{left:316.800000pt;}
.x89_c00264{left:318.133333pt;}
.x54_c00264{left:319.466667pt;}
.x70_c00264{left:320.933333pt;}
.x97_c00264{left:322.800000pt;}
.x81_c00264{left:323.866667pt;}
.x3f_c00264{left:324.800000pt;}
.xa7_c00264{left:327.466667pt;}
.xa5_c00264{left:329.866667pt;}
.x6b_c00264{left:331.333333pt;}
.x1d_c00264{left:332.533333pt;}
.x67_c00264{left:334.266667pt;}
.x37_c00264{left:335.466667pt;}
.x55_c00264{left:337.333333pt;}
.x8a_c00264{left:339.600000pt;}
.x71_c00264{left:340.800000pt;}
.x48_c00264{left:342.133333pt;}
.x88_c00264{left:344.000000pt;}
.x6c_c00264{left:345.733333pt;}
.x16_c00264{left:347.333333pt;}
.xae_c00264{left:348.266667pt;}
.x7d_c00264{left:350.533333pt;}
.x25_c00264{left:352.266667pt;}
.x5a_c00264{left:353.333333pt;}
.x83_c00264{left:355.466667pt;}
.x80_c00264{left:357.333333pt;}
.x17_c00264{left:358.266667pt;}
.xad_c00264{left:359.733333pt;}
.x95_c00264{left:360.933333pt;}
.x9e_c00264{left:362.933333pt;}
.x1e_c00264{left:364.800000pt;}
.xa3_c00264{left:366.666667pt;}
.x2c_c00264{left:367.866667pt;}
.x72_c00264{left:369.600000pt;}
.x62_c00264{left:373.733333pt;}
.x7b_c00264{left:375.866667pt;}
.x9a_c00264{left:384.533333pt;}
.xdb_c00264{left:396.533333pt;}
.x4_c00264{left:397.466667pt;}
.x130_c00264{left:402.933333pt;}
.x141_c00264{left:404.533333pt;}
.x101_c00264{left:408.266667pt;}
.xfc_c00264{left:409.333333pt;}
.xc9_c00264{left:410.933333pt;}
.xb3_c00264{left:411.866667pt;}
.x147_c00264{left:413.466667pt;}
.x14b_c00264{left:419.200000pt;}
.x105_c00264{left:421.466667pt;}
.x131_c00264{left:423.733333pt;}
.x12d_c00264{left:427.066667pt;}
.xb4_c00264{left:428.533333pt;}
.x14c_c00264{left:431.333333pt;}
.x137_c00264{left:432.666667pt;}
.x5_c00264{left:435.600000pt;}
.xc4_c00264{left:439.466667pt;}
.x106_c00264{left:440.666667pt;}
.xe6_c00264{left:442.266667pt;}
.xe1_c00264{left:443.866667pt;}
.x143_c00264{left:445.733333pt;}
.xc5_c00264{left:447.466667pt;}
.xf4_c00264{left:448.666667pt;}
.xca_c00264{left:450.000000pt;}
.x12a_c00264{left:451.866667pt;}
.xd3_c00264{left:453.066667pt;}
.xe7_c00264{left:454.800000pt;}
.x118_c00264{left:456.533333pt;}
.x10f_c00264{left:458.133333pt;}
.x121_c00264{left:459.866667pt;}
.xbc_c00264{left:461.066667pt;}
.x13c_c00264{left:462.800000pt;}
.x116_c00264{left:464.266667pt;}
.x11d_c00264{left:467.200000pt;}
.xcb_c00264{left:468.266667pt;}
.x10c_c00264{left:469.333333pt;}
.x119_c00264{left:470.266667pt;}
.xd8_c00264{left:471.333333pt;}
.x113_c00264{left:472.400000pt;}
.xfd_c00264{left:475.600000pt;}
.x13f_c00264{left:476.800000pt;}
.xc6_c00264{left:479.466667pt;}
.x110_c00264{left:483.066667pt;}
.xe8_c00264{left:484.266667pt;}
.xd4_c00264{left:485.333333pt;}
.x11a_c00264{left:487.200000pt;}
.x107_c00264{left:488.666667pt;}
.x102_c00264{left:489.866667pt;}
.xfe_c00264{left:491.600000pt;}
.xe9_c00264{left:493.200000pt;}
.x12b_c00264{left:494.133333pt;}
.xdc_c00264{left:495.066667pt;}
.xe2_c00264{left:498.000000pt;}
.xd5_c00264{left:500.400000pt;}
.x132_c00264{left:502.133333pt;}
.xf5_c00264{left:504.000000pt;}
.xd9_c00264{left:504.933333pt;}
.xb5_c00264{left:507.200000pt;}
.x14a_c00264{left:508.533333pt;}
.x138_c00264{left:510.133333pt;}
.x114_c00264{left:514.000000pt;}
.xe3_c00264{left:514.933333pt;}
.xf0_c00264{left:516.533333pt;}
.x128_c00264{left:517.866667pt;}
.xcc_c00264{left:519.200000pt;}
.xb6_c00264{left:520.266667pt;}
.xdd_c00264{left:521.600000pt;}
.xda_c00264{left:523.200000pt;}
.x12c_c00264{left:524.533333pt;}
.x11e_c00264{left:526.400000pt;}
.x117_c00264{left:528.533333pt;}
.x127_c00264{left:530.400000pt;}
.x6_c00264{left:531.600000pt;}
.xea_c00264{left:533.200000pt;}
.x108_c00264{left:535.466667pt;}
.x122_c00264{left:536.666667pt;}
.xff_c00264{left:538.000000pt;}
.xf6_c00264{left:539.200000pt;}
.xd6_c00264{left:541.066667pt;}
.xbd_c00264{left:545.333333pt;}
.x11b_c00264{left:546.400000pt;}
.xb7_c00264{left:548.400000pt;}
.x145_c00264{left:549.733333pt;}
.x133_c00264{left:552.000000pt;}
.xcd_c00264{left:554.400000pt;}
.x148_c00264{left:555.600000pt;}
.xf7_c00264{left:556.533333pt;}
.x12e_c00264{left:559.200000pt;}
.xeb_c00264{left:560.666667pt;}
.xd7_c00264{left:561.866667pt;}
.x10d_c00264{left:563.333333pt;}
.xce_c00264{left:566.933333pt;}
.xc7_c00264{left:569.600000pt;}
.xb8_c00264{left:572.400000pt;}
.x126_c00264{left:573.600000pt;}
.xde_c00264{left:575.066667pt;}
.x11f_c00264{left:576.266667pt;}
.x7_c00264{left:578.266667pt;}
.xf1_c00264{left:580.533333pt;}
.x100_c00264{left:581.866667pt;}
.x123_c00264{left:583.066667pt;}
.xcf_c00264{left:587.733333pt;}
.xf8_c00264{left:588.800000pt;}
.x134_c00264{left:592.000000pt;}
.xbe_c00264{left:593.066667pt;}
.x13b_c00264{left:594.400000pt;}
.x109_c00264{left:595.600000pt;}
.x124_c00264{left:597.466667pt;}
.xf9_c00264{left:598.400000pt;}
.xb9_c00264{left:602.133333pt;}
.xe4_c00264{left:603.600000pt;}
.xec_c00264{left:607.066667pt;}
.xc8_c00264{left:608.000000pt;}
.x146_c00264{left:610.933333pt;}
.x135_c00264{left:612.533333pt;}
.x115_c00264{left:614.800000pt;}
.xbf_c00264{left:615.733333pt;}
.x144_c00264{left:618.400000pt;}
.xd0_c00264{left:619.733333pt;}
.x139_c00264{left:621.200000pt;}
.x13d_c00264{left:622.666667pt;}
.xfa_c00264{left:623.733333pt;}
.x8_c00264{left:624.933333pt;}
.xed_c00264{left:626.933333pt;}
.xf2_c00264{left:628.533333pt;}
.x12f_c00264{left:631.066667pt;}
.x103_c00264{left:632.000000pt;}
.x10e_c00264{left:633.466667pt;}
.x140_c00264{left:636.133333pt;}
.x9_c00264{left:637.466667pt;}
.xe5_c00264{left:638.800000pt;}
.xc0_c00264{left:639.733333pt;}
.x125_c00264{left:640.666667pt;}
.xba_c00264{left:642.133333pt;}
.x136_c00264{left:643.200000pt;}
.xf3_c00264{left:645.466667pt;}
.x112_c00264{left:646.800000pt;}
.x11c_c00264{left:647.733333pt;}
.xdf_c00264{left:649.333333pt;}
.xfb_c00264{left:651.600000pt;}
.xc1_c00264{left:653.200000pt;}
.xd1_c00264{left:655.200000pt;}
.x14d_c00264{left:656.266667pt;}
.x10a_c00264{left:658.400000pt;}
.xee_c00264{left:659.866667pt;}
.x129_c00264{left:661.866667pt;}
.x13e_c00264{left:663.333333pt;}
.x3_c00264{left:664.666667pt;}
.xd2_c00264{left:668.000000pt;}
.xc2_c00264{left:669.200000pt;}
.x142_c00264{left:670.933333pt;}
.x111_c00264{left:673.333333pt;}
.xef_c00264{left:674.933333pt;}
.xa_c00264{left:678.400000pt;}
.x13a_c00264{left:679.466667pt;}
.x120_c00264{left:680.666667pt;}
.xe0_c00264{left:681.600000pt;}
.x149_c00264{left:682.666667pt;}
.x104_c00264{left:683.866667pt;}
.x10b_c00264{left:684.933333pt;}
.xc3_c00264{left:686.533333pt;}
.x2_c00264{left:688.933333pt;}
.xbb_c00264{left:690.400000pt;}
}





/* 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_c00265 {
    display:none;
  }
  .loading-indicator_c00265.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00265 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_c00265 { 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_c00265" -> "#page-container .classname_c00265")
 */
.pf_c00265 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00265 { /* 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_c00265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00265 { /* 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_c00265 { /* 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_c00265 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00265 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00265 {overflow:visible;}
  }
}
.c_c00265 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00265 { /* 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_c00265:after { /* webkit #35443 */
  content: '';
}
.t_c00265:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00265 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 */
}
.__c00265 { /* 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_c00265 { /* info for Javascript */
  display:none;
}
.l_c00265 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00265 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00265 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00265: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_c00265 {
    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_c00265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00265.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_c00265 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00265;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.000000;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;}
.m114_c00265{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00265{transform:matrix(0.056000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00265{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m117_c00265{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mee_c00265{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m125_c00265{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00265{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m105_c00265{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00265{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m118_c00265{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m77_c00265{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma_c00265{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00265{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00265{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m122_c00265{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m10_c00265{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m31_c00265{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mca_c00265{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m108_c00265{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m97_c00265{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00265{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00265{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00265{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00265{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00265{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00265{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00265{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m110_c00265{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00265{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00265{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.maa_c00265{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00265{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00265{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00265{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m111_c00265{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00265{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m126_c00265{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.maf_c00265{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m113_c00265{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md2_c00265{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00265{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00265{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.me4_c00265{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m49_c00265{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00265{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00265{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m88_c00265{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00265{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00265{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md5_c00265{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m70_c00265{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m19_c00265{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00265{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m86_c00265{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00265{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00265{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00265{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.me1_c00265{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m51_c00265{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m33_c00265{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m29_c00265{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m35_c00265{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mef_c00265{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m101_c00265{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m90_c00265{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00265{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00265{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mae_c00265{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00265{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00265{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m64_c00265{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m8_c00265{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md8_c00265{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00265{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m34_c00265{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00265{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mec_c00265{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m56_c00265{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me0_c00265{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00265{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00265{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m76_c00265{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00265{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00265{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md6_c00265{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00265{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me2_c00265{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m63_c00265{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m22_c00265{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m98_c00265{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m82_c00265{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00265{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00265{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m65_c00265{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00265{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00265{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m61_c00265{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mac_c00265{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00265{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md4_c00265{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.md7_c00265{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00265{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m46_c00265{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00265{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00265{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mba_c00265{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m59_c00265{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m37_c00265{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5_c00265{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m55_c00265{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00265{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m40_c00265{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m12_c00265{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00265{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00265{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me_c00265{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m17_c00265{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m42_c00265{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me5_c00265{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00265{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00265{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m48_c00265{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m78_c00265{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m81_c00265{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mab_c00265{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m36_c00265{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00265{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me9_c00265{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m60_c00265{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m96_c00265{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.md_c00265{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7_c00265{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md1_c00265{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md3_c00265{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00265{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m9_c00265{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m39_c00265{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00265{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m116_c00265{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00265{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m44_c00265{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m79_c00265{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m53_c00265{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m74_c00265{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00265{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00265{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00265{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00265{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.meb_c00265{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m25_c00265{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m32_c00265{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00265{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m75_c00265{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6_c00265{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00265{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mad_c00265{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00265{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00265{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00265{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md0_c00265{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m91_c00265{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m23_c00265{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m47_c00265{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00265{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m109_c00265{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me6_c00265{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00265{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me3_c00265{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00265{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mff_c00265{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00265{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m18_c00265{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00265{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb_c00265{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m57_c00265{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m30_c00265{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mc_c00265{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m99_c00265{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf_c00265{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.med_c00265{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00265{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00265{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00265{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m41_c00265{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00265{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00265{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m102_c00265{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mce_c00265{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md9_c00265{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00265{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00265{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00265{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m58_c00265{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m95_c00265{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m69_c00265{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m45_c00265{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00265{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00265{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00265{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m16_c00265{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00265{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00265{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00265{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m89_c00265{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mda_c00265{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m21_c00265{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m43_c00265{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00265{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00265{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m27_c00265{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m71_c00265{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m52_c00265{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m85_c00265{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m28_c00265{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m54_c00265{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me7_c00265{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00265{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m104_c00265{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00265{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00265{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m26_c00265{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00265{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m13_c00265{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00265{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m62_c00265{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m83_c00265{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00265{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m14_c00265{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00265{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00265{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00265{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00265{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00265{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00265{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m20_c00265{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00265{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24_c00265{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00265{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00265{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m107_c00265{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m112_c00265{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m87_c00265{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m100_c00265{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m123_c00265{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00265{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m67_c00265{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m38_c00265{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00265{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00265{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m73_c00265{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.me8_c00265{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00265{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00265{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m106_c00265{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00265{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mea_c00265{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00265{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00265{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00265{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00265{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m84_c00265{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m68_c00265{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00265{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m119_c00265{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mde_c00265{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m72_c00265{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m103_c00265{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m66_c00265{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m50_c00265{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00265{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m92_c00265{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00265{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m93_c00265{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00265{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m124_c00265{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00265{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m94_c00265{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00265{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m11_c00265{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m15_c00265{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00265{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m80_c00265{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00265{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00265{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00265{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m121_c00265{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m120_c00265{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m115_c00265{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00265{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00265{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls0_c00265{letter-spacing:0.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{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__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:-7.500000px;}
.ws1_c00265{word-spacing:-5.147059px;}
.ws3_c00265{word-spacing:-3.125000px;}
.wsa_c00265{word-spacing:0.000000px;}
.ws4_c00265{word-spacing:5.581006px;}
.ws8_c00265{word-spacing:19.994638px;}
.ws2_c00265{word-spacing:22.142857px;}
.ws6_c00265{word-spacing:23.211796px;}
.ws5_c00265{word-spacing:25.714286px;}
.ws7_c00265{word-spacing:32.250000px;}
.ws9_c00265{word-spacing:425.000000px;}
._2_c00265{width:46.785714px;}
._4_c00265{width:53.428954px;}
._3_c00265{width:58.254692px;}
._1_c00265{width:64.642857px;}
._0_c00265{width:68.214286px;}
._5_c00265{width:72.375000px;}
.fc0_c00265{color:transparent;}
.fs3_c00265{font-size:24.000000px;}
.fs7_c00265{font-size:30.000000px;}
.fs8_c00265{font-size:42.000000px;}
.fs5_c00265{font-size:48.000000px;}
.fs4_c00265{font-size:54.000000px;}
.fs2_c00265{font-size:60.000000px;}
.fs1_c00265{font-size:66.000000px;}
.fs6_c00265{font-size:72.000000px;}
.fs0_c00265{font-size:78.000000px;}
.y0_c00265{bottom:0.000000px;}
.y6b_c00265{bottom:192.300000px;}
.y6a_c00265{bottom:199.200000px;}
.y69_c00265{bottom:208.500000px;}
.y68_c00265{bottom:215.700000px;}
.y66_c00265{bottom:222.150000px;}
.y67_c00265{bottom:223.200000px;}
.y5e_c00265{bottom:235.500000px;}
.y5d_c00265{bottom:249.150000px;}
.y31_c00265{bottom:267.000000px;}
.y65_c00265{bottom:276.150000px;}
.y30_c00265{bottom:285.000000px;}
.y64_c00265{bottom:293.700000px;}
.y2f_c00265{bottom:302.250000px;}
.y63_c00265{bottom:311.400000px;}
.y2e_c00265{bottom:319.950000px;}
.y62_c00265{bottom:329.400000px;}
.y2d_c00265{bottom:337.950000px;}
.y61_c00265{bottom:346.800000px;}
.y2c_c00265{bottom:355.650000px;}
.y60_c00265{bottom:364.800000px;}
.y2b_c00265{bottom:376.650000px;}
.y5f_c00265{bottom:386.700000px;}
.y5c_c00265{bottom:387.300000px;}
.y2a_c00265{bottom:395.400000px;}
.y5b_c00265{bottom:405.900000px;}
.y29_c00265{bottom:413.400000px;}
.y5a_c00265{bottom:426.450000px;}
.y28_c00265{bottom:431.100000px;}
.y59_c00265{bottom:444.150000px;}
.y27_c00265{bottom:449.100000px;}
.y58_c00265{bottom:461.850000px;}
.y26_c00265{bottom:466.800000px;}
.y57_c00265{bottom:479.850000px;}
.y25_c00265{bottom:484.500000px;}
.y56_c00265{bottom:497.550000px;}
.y24_c00265{bottom:506.550000px;}
.y55_c00265{bottom:515.550000px;}
.y54_c00265{bottom:533.550000px;}
.y23_c00265{bottom:536.850000px;}
.y53_c00265{bottom:551.250000px;}
.y22_c00265{bottom:554.850000px;}
.y52_c00265{bottom:569.550000px;}
.y21_c00265{bottom:572.550000px;}
.y51_c00265{bottom:587.250000px;}
.y20_c00265{bottom:589.800000px;}
.y50_c00265{bottom:604.950000px;}
.y1f_c00265{bottom:607.500000px;}
.y4f_c00265{bottom:622.950000px;}
.y1e_c00265{bottom:625.500000px;}
.y4e_c00265{bottom:640.950000px;}
.y1d_c00265{bottom:643.200000px;}
.y4d_c00265{bottom:658.650000px;}
.y1c_c00265{bottom:661.200000px;}
.y4c_c00265{bottom:676.650000px;}
.y1b_c00265{bottom:678.900000px;}
.y4b_c00265{bottom:694.350000px;}
.y1a_c00265{bottom:696.900000px;}
.y4a_c00265{bottom:712.050000px;}
.y19_c00265{bottom:713.700000px;}
.y49_c00265{bottom:730.050000px;}
.y18_c00265{bottom:736.350000px;}
.y48_c00265{bottom:748.050000px;}
.y17_c00265{bottom:754.350000px;}
.y47_c00265{bottom:765.750000px;}
.y16_c00265{bottom:772.050000px;}
.y46_c00265{bottom:783.750000px;}
.y15_c00265{bottom:790.050000px;}
.y45_c00265{bottom:801.450000px;}
.y14_c00265{bottom:807.300000px;}
.y44_c00265{bottom:819.150000px;}
.y13_c00265{bottom:825.300000px;}
.y43_c00265{bottom:837.150000px;}
.y12_c00265{bottom:843.000000px;}
.y42_c00265{bottom:855.150000px;}
.y11_c00265{bottom:860.700000px;}
.y41_c00265{bottom:873.150000px;}
.y10_c00265{bottom:877.950000px;}
.y40_c00265{bottom:890.850000px;}
.yf_c00265{bottom:895.950000px;}
.y3f_c00265{bottom:908.850000px;}
.ye_c00265{bottom:913.950000px;}
.y3e_c00265{bottom:926.850000px;}
.yd_c00265{bottom:931.950000px;}
.y3d_c00265{bottom:944.850000px;}
.yc_c00265{bottom:949.650000px;}
.y3c_c00265{bottom:962.550000px;}
.yb_c00265{bottom:967.650000px;}
.ya_c00265{bottom:975.900000px;}
.y3b_c00265{bottom:980.550000px;}
.y9_c00265{bottom:989.400000px;}
.y3a_c00265{bottom:998.250000px;}
.y8_c00265{bottom:1011.300000px;}
.y39_c00265{bottom:1015.950000px;}
.y7_c00265{bottom:1029.150000px;}
.y38_c00265{bottom:1038.900000px;}
.y6_c00265{bottom:1046.850000px;}
.y37_c00265{bottom:1054.800000px;}
.y5_c00265{bottom:1064.850000px;}
.y36_c00265{bottom:1070.250000px;}
.y4_c00265{bottom:1082.100000px;}
.y35_c00265{bottom:1084.650000px;}
.y34_c00265{bottom:1097.250000px;}
.y3_c00265{bottom:1100.100000px;}
.y33_c00265{bottom:1113.750000px;}
.y2_c00265{bottom:1118.100000px;}
.y32_c00265{bottom:1126.050000px;}
.y1_c00265{bottom:1146.600000px;}
.h5_c00265{height:24.000000px;}
.h9_c00265{height:30.000000px;}
.ha_c00265{height:42.000000px;}
.h7_c00265{height:48.000000px;}
.h6_c00265{height:54.000000px;}
.h4_c00265{height:60.000000px;}
.h3_c00265{height:66.000000px;}
.h8_c00265{height:72.000000px;}
.h2_c00265{height:78.000000px;}
.h0_c00265{height:1273.320007px;}
.h1_c00265{height:1273.500000px;}
.w1_c00265{width:961.500000px;}
.w0_c00265{width:961.560058px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:201.600000px;}
.x30_c00265{left:203.400000px;}
.x6c_c00265{left:204.450000px;}
.x86_c00265{left:207.000000px;}
.x144_c00265{left:209.100000px;}
.xc_c00265{left:220.200000px;}
.x35_c00265{left:221.700000px;}
.x57_c00265{left:222.900000px;}
.x82_c00265{left:224.250000px;}
.x99_c00265{left:226.350000px;}
.x7e_c00265{left:236.100000px;}
.x76_c00265{left:237.750000px;}
.x145_c00265{left:239.100000px;}
.x14_c00265{left:240.150000px;}
.x4b_c00265{left:242.850000px;}
.x5e_c00265{left:244.350000px;}
.x3_c00265{left:246.900000px;}
.x71_c00265{left:249.300000px;}
.x68_c00265{left:252.300000px;}
.x58_c00265{left:253.800000px;}
.x77_c00265{left:256.500000px;}
.x15_c00265{left:258.150000px;}
.x3f_c00265{left:259.350000px;}
.x1e_c00265{left:260.850000px;}
.x7c_c00265{left:262.650000px;}
.x5f_c00265{left:264.150000px;}
.x31_c00265{left:267.150000px;}
.x69_c00265{left:268.200000px;}
.x137_c00265{left:270.300000px;}
.x3b_c00265{left:271.800000px;}
.x26_c00265{left:273.900000px;}
.x4c_c00265{left:276.000000px;}
.x2a_c00265{left:277.200000px;}
.x59_c00265{left:280.050000px;}
.x4f_c00265{left:281.700000px;}
.x4_c00265{left:282.900000px;}
.x1f_c00265{left:283.950000px;}
.x93_c00265{left:285.000000px;}
.x8f_c00265{left:286.650000px;}
.x150_c00265{left:289.500000px;}
.x7f_c00265{left:290.850000px;}
.x2b_c00265{left:297.000000px;}
.xd_c00265{left:298.350000px;}
.x14b_c00265{left:299.850000px;}
.x32_c00265{left:302.100000px;}
.x16_c00265{left:304.200000px;}
.x9c_c00265{left:305.250000px;}
.x5_c00265{left:306.600000px;}
.x7b_c00265{left:308.100000px;}
.xe_c00265{left:309.450000px;}
.x33_c00265{left:311.400000px;}
.x97_c00265{left:314.400000px;}
.x80_c00265{left:315.750000px;}
.x40_c00265{left:316.950000px;}
.x36_c00265{left:319.200000px;}
.x94_c00265{left:321.750000px;}
.x1a_c00265{left:323.550000px;}
.x20_c00265{left:324.600000px;}
.x84_c00265{left:328.650000px;}
.x27_c00265{left:329.700000px;}
.x90_c00265{left:334.200000px;}
.x72_c00265{left:335.700000px;}
.x41_c00265{left:337.050000px;}
.x5a_c00265{left:338.850000px;}
.x50_c00265{left:340.050000px;}
.x89_c00265{left:343.050000px;}
.xf_c00265{left:344.700000px;}
.x87_c00265{left:346.950000px;}
.x55_c00265{left:348.150000px;}
.x4d_c00265{left:351.300000px;}
.x152_c00265{left:353.850000px;}
.x6_c00265{left:355.200000px;}
.x5b_c00265{left:360.750000px;}
.x9a_c00265{left:363.150000px;}
.x146_c00265{left:364.650000px;}
.x51_c00265{left:366.300000px;}
.x47_c00265{left:369.000000px;}
.x21_c00265{left:371.100000px;}
.x60_c00265{left:372.150000px;}
.x37_c00265{left:374.700000px;}
.x3c_c00265{left:376.500000px;}
.x14c_c00265{left:378.450000px;}
.x95_c00265{left:379.650000px;}
.x8a_c00265{left:380.850000px;}
.x42_c00265{left:382.050000px;}
.x8c_c00265{left:383.850000px;}
.x17_c00265{left:386.250000px;}
.x65_c00265{left:387.750000px;}
.x7_c00265{left:389.700000px;}
.x85_c00265{left:391.200000px;}
.x22_c00265{left:393.000000px;}
.x78_c00265{left:394.050000px;}
.x2c_c00265{left:396.300000px;}
.x10_c00265{left:398.100000px;}
.x38_c00265{left:399.900000px;}
.x1b_c00265{left:401.250000px;}
.x34_c00265{left:405.000000px;}
.x28_c00265{left:407.400000px;}
.x52_c00265{left:410.100000px;}
.x8_c00265{left:411.600000px;}
.x4e_c00265{left:412.800000px;}
.x6f_c00265{left:413.850000px;}
.x73_c00265{left:414.900000px;}
.x43_c00265{left:417.300000px;}
.x48_c00265{left:419.700000px;}
.x79_c00265{left:421.050000px;}
.x66_c00265{left:422.250000px;}
.x9b_c00265{left:423.300000px;}
.x5c_c00265{left:424.500000px;}
.x70_c00265{left:426.750000px;}
.x88_c00265{left:428.700000px;}
.x8d_c00265{left:430.650000px;}
.x6a_c00265{left:432.750000px;}
.x49_c00265{left:435.150000px;}
.x3d_c00265{left:437.850000px;}
.x44_c00265{left:438.900000px;}
.x83_c00265{left:440.250000px;}
.x2_c00265{left:444.300000px;}
.x61_c00265{left:445.500000px;}
.x23_c00265{left:448.050000px;}
.x5d_c00265{left:449.700000px;}
.x67_c00265{left:450.750000px;}
.x11_c00265{left:451.800000px;}
.x2d_c00265{left:453.600000px;}
.x1c_c00265{left:455.550000px;}
.x74_c00265{left:458.100000px;}
.x39_c00265{left:460.350000px;}
.x56_c00265{left:461.550000px;}
.x8e_c00265{left:463.050000px;}
.x9_c00265{left:465.300000px;}
.x12_c00265{left:468.000000px;}
.x62_c00265{left:469.200000px;}
.x9d_c00265{left:470.400000px;}
.x6d_c00265{left:472.950000px;}
.x18_c00265{left:474.450000px;}
.x1d_c00265{left:478.650000px;}
.x45_c00265{left:480.600000px;}
.x75_c00265{left:483.000000px;}
.xa_c00265{left:484.050000px;}
.x19_c00265{left:485.250000px;}
.x2e_c00265{left:487.500000px;}
.x24_c00265{left:489.150000px;}
.x96_c00265{left:490.950000px;}
.x63_c00265{left:492.600000px;}
.x6e_c00265{left:494.550000px;}
.x13_c00265{left:496.800000px;}
.x53_c00265{left:498.150000px;}
.x147_c00265{left:499.950000px;}
.x14d_c00265{left:501.300000px;}
.x91_c00265{left:504.000000px;}
.x4a_c00265{left:505.650000px;}
.x3e_c00265{left:507.000000px;}
.x46_c00265{left:509.100000px;}
.x25_c00265{left:511.050000px;}
.x3a_c00265{left:512.250000px;}
.x7a_c00265{left:515.400000px;}
.x6b_c00265{left:517.950000px;}
.x92_c00265{left:519.750000px;}
.x29_c00265{left:523.350000px;}
.x64_c00265{left:526.050000px;}
.x7d_c00265{left:527.250000px;}
.xb_c00265{left:529.050000px;}
.x2f_c00265{left:530.250000px;}
.x54_c00265{left:532.050000px;}
.x81_c00265{left:533.550000px;}
.x98_c00265{left:534.750000px;}
.x8b_c00265{left:535.950000px;}
.xbc_c00265{left:554.400000px;}
.x148_c00265{left:559.350000px;}
.x14e_c00265{left:561.150000px;}
.xb0_c00265{left:567.450000px;}
.xc4_c00265{left:571.650000px;}
.xd1_c00265{left:572.850000px;}
.xe4_c00265{left:574.050000px;}
.x105_c00265{left:575.400000px;}
.x118_c00265{left:576.750000px;}
.x124_c00265{left:577.950000px;}
.x12b_c00265{left:579.600000px;}
.xa2_c00265{left:581.850000px;}
.xfa_c00265{left:585.750000px;}
.xce_c00265{left:589.650000px;}
.x130_c00265{left:591.450000px;}
.xde_c00265{left:594.900000px;}
.xb8_c00265{left:596.400000px;}
.x13a_c00265{left:600.000000px;}
.x11d_c00265{left:601.200000px;}
.xac_c00265{left:603.900000px;}
.x127_c00265{left:605.850000px;}
.xc5_c00265{left:606.900000px;}
.xe2_c00265{left:609.000000px;}
.xca_c00265{left:610.500000px;}
.x10c_c00265{left:612.150000px;}
.xfb_c00265{left:613.500000px;}
.x11e_c00265{left:615.300000px;}
.xe5_c00265{left:616.950000px;}
.xec_c00265{left:620.250000px;}
.x13f_c00265{left:621.300000px;}
.xa3_c00265{left:622.950000px;}
.xf7_c00265{left:624.450000px;}
.xad_c00265{left:625.500000px;}
.xd8_c00265{left:626.550000px;}
.xe6_c00265{left:628.800000px;}
.x134_c00265{left:630.000000px;}
.x10f_c00265{left:631.350000px;}
.x101_c00265{left:632.550000px;}
.xb9_c00265{left:634.500000px;}
.x106_c00265{left:635.550000px;}
.xbd_c00265{left:637.500000px;}
.xf3_c00265{left:638.550000px;}
.x11b_c00265{left:639.750000px;}
.x13d_c00265{left:643.950000px;}
.x119_c00265{left:645.150000px;}
.xa4_c00265{left:646.350000px;}
.x131_c00265{left:648.000000px;}
.xfc_c00265{left:649.800000px;}
.x140_c00265{left:651.150000px;}
.xb4_c00265{left:652.650000px;}
.xed_c00265{left:655.200000px;}
.xae_c00265{left:658.200000px;}
.x135_c00265{left:659.250000px;}
.x10e_c00265{left:660.450000px;}
.x12c_c00265{left:661.650000px;}
.xd9_c00265{left:666.450000px;}
.x11f_c00265{left:667.500000px;}
.xba_c00265{left:669.000000px;}
.x9e_c00265{left:670.650000px;}
.xee_c00265{left:672.450000px;}
.xf4_c00265{left:675.600000px;}
.x13b_c00265{left:676.800000px;}
.xbe_c00265{left:678.150000px;}
.x110_c00265{left:681.000000px;}
.xdf_c00265{left:682.050000px;}
.xb5_c00265{left:683.250000px;}
.x141_c00265{left:685.350000px;}
.xc6_c00265{left:686.400000px;}
.xbb_c00265{left:687.750000px;}
.xd2_c00265{left:690.900000px;}
.x102_c00265{left:693.750000px;}
.xa5_c00265{left:694.950000px;}
.xfd_c00265{left:696.300000px;}
.x115_c00265{left:699.150000px;}
.xe7_c00265{left:700.800000px;}
.x128_c00265{left:702.000000px;}
.x132_c00265{left:703.500000px;}
.xe0_c00265{left:705.150000px;}
.x112_c00265{left:706.200000px;}
.x153_c00265{left:708.300000px;}
.xc7_c00265{left:709.500000px;}
.x151_c00265{left:710.550000px;}
.x12d_c00265{left:711.750000px;}
.xfe_c00265{left:712.800000px;}
.xda_c00265{left:714.300000px;}
.xd3_c00265{left:716.400000px;}
.x142_c00265{left:717.450000px;}
.x107_c00265{left:718.650000px;}
.xbf_c00265{left:719.850000px;}
.x149_c00265{left:721.500000px;}
.xef_c00265{left:723.150000px;}
.xd6_c00265{left:725.100000px;}
.x14f_c00265{left:726.900000px;}
.xaf_c00265{left:729.150000px;}
.xb6_c00265{left:730.350000px;}
.x121_c00265{left:732.300000px;}
.x133_c00265{left:733.800000px;}
.xc0_c00265{left:736.800000px;}
.x108_c00265{left:739.200000px;}
.x116_c00265{left:741.600000px;}
.x154_c00265{left:742.800000px;}
.xf0_c00265{left:745.800000px;}
.xcb_c00265{left:747.600000px;}
.xd4_c00265{left:749.550000px;}
.xc8_c00265{left:753.000000px;}
.x103_c00265{left:755.400000px;}
.x12e_c00265{left:756.750000px;}
.xcf_c00265{left:757.950000px;}
.xe1_c00265{left:759.150000px;}
.xc1_c00265{left:760.200000px;}
.xdb_c00265{left:761.850000px;}
.x122_c00265{left:764.400000px;}
.x113_c00265{left:766.050000px;}
.x120_c00265{left:768.300000px;}
.x109_c00265{left:769.800000px;}
.xa6_c00265{left:770.850000px;}
.xe8_c00265{left:772.800000px;}
.xff_c00265{left:775.500000px;}
.xa7_c00265{left:777.300000px;}
.x117_c00265{left:778.650000px;}
.xdc_c00265{left:780.600000px;}
.xf8_c00265{left:782.700000px;}
.xa8_c00265{left:784.500000px;}
.xc2_c00265{left:788.250000px;}
.xd7_c00265{left:790.950000px;}
.xe9_c00265{left:792.600000px;}
.xb7_c00265{left:794.400000px;}
.x11c_c00265{left:796.650000px;}
.xf5_c00265{left:798.750000px;}
.x143_c00265{left:799.800000px;}
.xf1_c00265{left:804.150000px;}
.x12f_c00265{left:806.700000px;}
.x9f_c00265{left:810.750000px;}
.x10a_c00265{left:812.700000px;}
.xc9_c00265{left:814.200000px;}
.xcc_c00265{left:816.300000px;}
.x129_c00265{left:817.500000px;}
.xa9_c00265{left:819.150000px;}
.xb1_c00265{left:820.500000px;}
.x11a_c00265{left:825.300000px;}
.x125_c00265{left:826.800000px;}
.x139_c00265{left:827.850000px;}
.xd0_c00265{left:829.950000px;}
.xf9_c00265{left:833.100000px;}
.x114_c00265{left:836.250000px;}
.xcd_c00265{left:839.400000px;}
.xa0_c00265{left:843.150000px;}
.xea_c00265{left:844.800000px;}
.x100_c00265{left:847.800000px;}
.x138_c00265{left:849.000000px;}
.xaa_c00265{left:850.500000px;}
.xb3_c00265{left:852.450000px;}
.x123_c00265{left:855.450000px;}
.x13c_c00265{left:857.400000px;}
.x10b_c00265{left:858.750000px;}
.x104_c00265{left:860.550000px;}
.x126_c00265{left:861.750000px;}
.xf6_c00265{left:863.550000px;}
.xd5_c00265{left:864.750000px;}
.x10d_c00265{left:866.700000px;}
.xc3_c00265{left:868.500000px;}
.xeb_c00265{left:870.000000px;}
.xdd_c00265{left:871.650000px;}
.xf2_c00265{left:874.050000px;}
.xe3_c00265{left:875.700000px;}
.xa1_c00265{left:878.100000px;}
.xab_c00265{left:879.600000px;}
.xb2_c00265{left:880.650000px;}
.x12a_c00265{left:885.150000px;}
.x111_c00265{left:888.450000px;}
.x14a_c00265{left:891.300000px;}
.x13e_c00265{left:903.300000px;}
.x136_c00265{left:957.600000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws0_c00265{word-spacing:-6.666667pt;}
.ws1_c00265{word-spacing:-4.575163pt;}
.ws3_c00265{word-spacing:-2.777778pt;}
.wsa_c00265{word-spacing:0.000000pt;}
.ws4_c00265{word-spacing:4.960894pt;}
.ws8_c00265{word-spacing:17.773012pt;}
.ws2_c00265{word-spacing:19.682540pt;}
.ws6_c00265{word-spacing:20.632708pt;}
.ws5_c00265{word-spacing:22.857143pt;}
.ws7_c00265{word-spacing:28.666667pt;}
.ws9_c00265{word-spacing:377.777778pt;}
._2_c00265{width:41.587302pt;}
._4_c00265{width:47.492404pt;}
._3_c00265{width:51.781948pt;}
._1_c00265{width:57.460317pt;}
._0_c00265{width:60.634921pt;}
._5_c00265{width:64.333333pt;}
.fs3_c00265{font-size:21.333333pt;}
.fs7_c00265{font-size:26.666667pt;}
.fs8_c00265{font-size:37.333333pt;}
.fs5_c00265{font-size:42.666667pt;}
.fs4_c00265{font-size:48.000000pt;}
.fs2_c00265{font-size:53.333333pt;}
.fs1_c00265{font-size:58.666667pt;}
.fs6_c00265{font-size:64.000000pt;}
.fs0_c00265{font-size:69.333333pt;}
.y0_c00265{bottom:0.000000pt;}
.y6b_c00265{bottom:170.933333pt;}
.y6a_c00265{bottom:177.066667pt;}
.y69_c00265{bottom:185.333333pt;}
.y68_c00265{bottom:191.733333pt;}
.y66_c00265{bottom:197.466667pt;}
.y67_c00265{bottom:198.400000pt;}
.y5e_c00265{bottom:209.333333pt;}
.y5d_c00265{bottom:221.466667pt;}
.y31_c00265{bottom:237.333333pt;}
.y65_c00265{bottom:245.466667pt;}
.y30_c00265{bottom:253.333333pt;}
.y64_c00265{bottom:261.066667pt;}
.y2f_c00265{bottom:268.666667pt;}
.y63_c00265{bottom:276.800000pt;}
.y2e_c00265{bottom:284.400000pt;}
.y62_c00265{bottom:292.800000pt;}
.y2d_c00265{bottom:300.400000pt;}
.y61_c00265{bottom:308.266667pt;}
.y2c_c00265{bottom:316.133333pt;}
.y60_c00265{bottom:324.266667pt;}
.y2b_c00265{bottom:334.800000pt;}
.y5f_c00265{bottom:343.733333pt;}
.y5c_c00265{bottom:344.266667pt;}
.y2a_c00265{bottom:351.466667pt;}
.y5b_c00265{bottom:360.800000pt;}
.y29_c00265{bottom:367.466667pt;}
.y5a_c00265{bottom:379.066667pt;}
.y28_c00265{bottom:383.200000pt;}
.y59_c00265{bottom:394.800000pt;}
.y27_c00265{bottom:399.200000pt;}
.y58_c00265{bottom:410.533333pt;}
.y26_c00265{bottom:414.933333pt;}
.y57_c00265{bottom:426.533333pt;}
.y25_c00265{bottom:430.666667pt;}
.y56_c00265{bottom:442.266667pt;}
.y24_c00265{bottom:450.266667pt;}
.y55_c00265{bottom:458.266667pt;}
.y54_c00265{bottom:474.266667pt;}
.y23_c00265{bottom:477.200000pt;}
.y53_c00265{bottom:490.000000pt;}
.y22_c00265{bottom:493.200000pt;}
.y52_c00265{bottom:506.266667pt;}
.y21_c00265{bottom:508.933333pt;}
.y51_c00265{bottom:522.000000pt;}
.y20_c00265{bottom:524.266667pt;}
.y50_c00265{bottom:537.733333pt;}
.y1f_c00265{bottom:540.000000pt;}
.y4f_c00265{bottom:553.733333pt;}
.y1e_c00265{bottom:556.000000pt;}
.y4e_c00265{bottom:569.733333pt;}
.y1d_c00265{bottom:571.733333pt;}
.y4d_c00265{bottom:585.466667pt;}
.y1c_c00265{bottom:587.733333pt;}
.y4c_c00265{bottom:601.466667pt;}
.y1b_c00265{bottom:603.466667pt;}
.y4b_c00265{bottom:617.200000pt;}
.y1a_c00265{bottom:619.466667pt;}
.y4a_c00265{bottom:632.933333pt;}
.y19_c00265{bottom:634.400000pt;}
.y49_c00265{bottom:648.933333pt;}
.y18_c00265{bottom:654.533333pt;}
.y48_c00265{bottom:664.933333pt;}
.y17_c00265{bottom:670.533333pt;}
.y47_c00265{bottom:680.666667pt;}
.y16_c00265{bottom:686.266667pt;}
.y46_c00265{bottom:696.666667pt;}
.y15_c00265{bottom:702.266667pt;}
.y45_c00265{bottom:712.400000pt;}
.y14_c00265{bottom:717.600000pt;}
.y44_c00265{bottom:728.133333pt;}
.y13_c00265{bottom:733.600000pt;}
.y43_c00265{bottom:744.133333pt;}
.y12_c00265{bottom:749.333333pt;}
.y42_c00265{bottom:760.133333pt;}
.y11_c00265{bottom:765.066667pt;}
.y41_c00265{bottom:776.133333pt;}
.y10_c00265{bottom:780.400000pt;}
.y40_c00265{bottom:791.866667pt;}
.yf_c00265{bottom:796.400000pt;}
.y3f_c00265{bottom:807.866667pt;}
.ye_c00265{bottom:812.400000pt;}
.y3e_c00265{bottom:823.866667pt;}
.yd_c00265{bottom:828.400000pt;}
.y3d_c00265{bottom:839.866667pt;}
.yc_c00265{bottom:844.133333pt;}
.y3c_c00265{bottom:855.600000pt;}
.yb_c00265{bottom:860.133333pt;}
.ya_c00265{bottom:867.466667pt;}
.y3b_c00265{bottom:871.600000pt;}
.y9_c00265{bottom:879.466667pt;}
.y3a_c00265{bottom:887.333333pt;}
.y8_c00265{bottom:898.933333pt;}
.y39_c00265{bottom:903.066667pt;}
.y7_c00265{bottom:914.800000pt;}
.y38_c00265{bottom:923.466667pt;}
.y6_c00265{bottom:930.533333pt;}
.y37_c00265{bottom:937.600000pt;}
.y5_c00265{bottom:946.533333pt;}
.y36_c00265{bottom:951.333333pt;}
.y4_c00265{bottom:961.866667pt;}
.y35_c00265{bottom:964.133333pt;}
.y34_c00265{bottom:975.333333pt;}
.y3_c00265{bottom:977.866667pt;}
.y33_c00265{bottom:990.000000pt;}
.y2_c00265{bottom:993.866667pt;}
.y32_c00265{bottom:1000.933333pt;}
.y1_c00265{bottom:1019.200000pt;}
.h5_c00265{height:21.333333pt;}
.h9_c00265{height:26.666667pt;}
.ha_c00265{height:37.333333pt;}
.h7_c00265{height:42.666667pt;}
.h6_c00265{height:48.000000pt;}
.h4_c00265{height:53.333333pt;}
.h3_c00265{height:58.666667pt;}
.h8_c00265{height:64.000000pt;}
.h2_c00265{height:69.333333pt;}
.h0_c00265{height:1131.840007pt;}
.h1_c00265{height:1132.000000pt;}
.w1_c00265{width:854.666667pt;}
.w0_c00265{width:854.720052pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:179.200000pt;}
.x30_c00265{left:180.800000pt;}
.x6c_c00265{left:181.733333pt;}
.x86_c00265{left:184.000000pt;}
.x144_c00265{left:185.866667pt;}
.xc_c00265{left:195.733333pt;}
.x35_c00265{left:197.066667pt;}
.x57_c00265{left:198.133333pt;}
.x82_c00265{left:199.333333pt;}
.x99_c00265{left:201.200000pt;}
.x7e_c00265{left:209.866667pt;}
.x76_c00265{left:211.333333pt;}
.x145_c00265{left:212.533333pt;}
.x14_c00265{left:213.466667pt;}
.x4b_c00265{left:215.866667pt;}
.x5e_c00265{left:217.200000pt;}
.x3_c00265{left:219.466667pt;}
.x71_c00265{left:221.600000pt;}
.x68_c00265{left:224.266667pt;}
.x58_c00265{left:225.600000pt;}
.x77_c00265{left:228.000000pt;}
.x15_c00265{left:229.466667pt;}
.x3f_c00265{left:230.533333pt;}
.x1e_c00265{left:231.866667pt;}
.x7c_c00265{left:233.466667pt;}
.x5f_c00265{left:234.800000pt;}
.x31_c00265{left:237.466667pt;}
.x69_c00265{left:238.400000pt;}
.x137_c00265{left:240.266667pt;}
.x3b_c00265{left:241.600000pt;}
.x26_c00265{left:243.466667pt;}
.x4c_c00265{left:245.333333pt;}
.x2a_c00265{left:246.400000pt;}
.x59_c00265{left:248.933333pt;}
.x4f_c00265{left:250.400000pt;}
.x4_c00265{left:251.466667pt;}
.x1f_c00265{left:252.400000pt;}
.x93_c00265{left:253.333333pt;}
.x8f_c00265{left:254.800000pt;}
.x150_c00265{left:257.333333pt;}
.x7f_c00265{left:258.533333pt;}
.x2b_c00265{left:264.000000pt;}
.xd_c00265{left:265.200000pt;}
.x14b_c00265{left:266.533333pt;}
.x32_c00265{left:268.533333pt;}
.x16_c00265{left:270.400000pt;}
.x9c_c00265{left:271.333333pt;}
.x5_c00265{left:272.533333pt;}
.x7b_c00265{left:273.866667pt;}
.xe_c00265{left:275.066667pt;}
.x33_c00265{left:276.800000pt;}
.x97_c00265{left:279.466667pt;}
.x80_c00265{left:280.666667pt;}
.x40_c00265{left:281.733333pt;}
.x36_c00265{left:283.733333pt;}
.x94_c00265{left:286.000000pt;}
.x1a_c00265{left:287.600000pt;}
.x20_c00265{left:288.533333pt;}
.x84_c00265{left:292.133333pt;}
.x27_c00265{left:293.066667pt;}
.x90_c00265{left:297.066667pt;}
.x72_c00265{left:298.400000pt;}
.x41_c00265{left:299.600000pt;}
.x5a_c00265{left:301.200000pt;}
.x50_c00265{left:302.266667pt;}
.x89_c00265{left:304.933333pt;}
.xf_c00265{left:306.400000pt;}
.x87_c00265{left:308.400000pt;}
.x55_c00265{left:309.466667pt;}
.x4d_c00265{left:312.266667pt;}
.x152_c00265{left:314.533333pt;}
.x6_c00265{left:315.733333pt;}
.x5b_c00265{left:320.666667pt;}
.x9a_c00265{left:322.800000pt;}
.x146_c00265{left:324.133333pt;}
.x51_c00265{left:325.600000pt;}
.x47_c00265{left:328.000000pt;}
.x21_c00265{left:329.866667pt;}
.x60_c00265{left:330.800000pt;}
.x37_c00265{left:333.066667pt;}
.x3c_c00265{left:334.666667pt;}
.x14c_c00265{left:336.400000pt;}
.x95_c00265{left:337.466667pt;}
.x8a_c00265{left:338.533333pt;}
.x42_c00265{left:339.600000pt;}
.x8c_c00265{left:341.200000pt;}
.x17_c00265{left:343.333333pt;}
.x65_c00265{left:344.666667pt;}
.x7_c00265{left:346.400000pt;}
.x85_c00265{left:347.733333pt;}
.x22_c00265{left:349.333333pt;}
.x78_c00265{left:350.266667pt;}
.x2c_c00265{left:352.266667pt;}
.x10_c00265{left:353.866667pt;}
.x38_c00265{left:355.466667pt;}
.x1b_c00265{left:356.666667pt;}
.x34_c00265{left:360.000000pt;}
.x28_c00265{left:362.133333pt;}
.x52_c00265{left:364.533333pt;}
.x8_c00265{left:365.866667pt;}
.x4e_c00265{left:366.933333pt;}
.x6f_c00265{left:367.866667pt;}
.x73_c00265{left:368.800000pt;}
.x43_c00265{left:370.933333pt;}
.x48_c00265{left:373.066667pt;}
.x79_c00265{left:374.266667pt;}
.x66_c00265{left:375.333333pt;}
.x9b_c00265{left:376.266667pt;}
.x5c_c00265{left:377.333333pt;}
.x70_c00265{left:379.333333pt;}
.x88_c00265{left:381.066667pt;}
.x8d_c00265{left:382.800000pt;}
.x6a_c00265{left:384.666667pt;}
.x49_c00265{left:386.800000pt;}
.x3d_c00265{left:389.200000pt;}
.x44_c00265{left:390.133333pt;}
.x83_c00265{left:391.333333pt;}
.x2_c00265{left:394.933333pt;}
.x61_c00265{left:396.000000pt;}
.x23_c00265{left:398.266667pt;}
.x5d_c00265{left:399.733333pt;}
.x67_c00265{left:400.666667pt;}
.x11_c00265{left:401.600000pt;}
.x2d_c00265{left:403.200000pt;}
.x1c_c00265{left:404.933333pt;}
.x74_c00265{left:407.200000pt;}
.x39_c00265{left:409.200000pt;}
.x56_c00265{left:410.266667pt;}
.x8e_c00265{left:411.600000pt;}
.x9_c00265{left:413.600000pt;}
.x12_c00265{left:416.000000pt;}
.x62_c00265{left:417.066667pt;}
.x9d_c00265{left:418.133333pt;}
.x6d_c00265{left:420.400000pt;}
.x18_c00265{left:421.733333pt;}
.x1d_c00265{left:425.466667pt;}
.x45_c00265{left:427.200000pt;}
.x75_c00265{left:429.333333pt;}
.xa_c00265{left:430.266667pt;}
.x19_c00265{left:431.333333pt;}
.x2e_c00265{left:433.333333pt;}
.x24_c00265{left:434.800000pt;}
.x96_c00265{left:436.400000pt;}
.x63_c00265{left:437.866667pt;}
.x6e_c00265{left:439.600000pt;}
.x13_c00265{left:441.600000pt;}
.x53_c00265{left:442.800000pt;}
.x147_c00265{left:444.400000pt;}
.x14d_c00265{left:445.600000pt;}
.x91_c00265{left:448.000000pt;}
.x4a_c00265{left:449.466667pt;}
.x3e_c00265{left:450.666667pt;}
.x46_c00265{left:452.533333pt;}
.x25_c00265{left:454.266667pt;}
.x3a_c00265{left:455.333333pt;}
.x7a_c00265{left:458.133333pt;}
.x6b_c00265{left:460.400000pt;}
.x92_c00265{left:462.000000pt;}
.x29_c00265{left:465.200000pt;}
.x64_c00265{left:467.600000pt;}
.x7d_c00265{left:468.666667pt;}
.xb_c00265{left:470.266667pt;}
.x2f_c00265{left:471.333333pt;}
.x54_c00265{left:472.933333pt;}
.x81_c00265{left:474.266667pt;}
.x98_c00265{left:475.333333pt;}
.x8b_c00265{left:476.400000pt;}
.xbc_c00265{left:492.800000pt;}
.x148_c00265{left:497.200000pt;}
.x14e_c00265{left:498.800000pt;}
.xb0_c00265{left:504.400000pt;}
.xc4_c00265{left:508.133333pt;}
.xd1_c00265{left:509.200000pt;}
.xe4_c00265{left:510.266667pt;}
.x105_c00265{left:511.466667pt;}
.x118_c00265{left:512.666667pt;}
.x124_c00265{left:513.733333pt;}
.x12b_c00265{left:515.200000pt;}
.xa2_c00265{left:517.200000pt;}
.xfa_c00265{left:520.666667pt;}
.xce_c00265{left:524.133333pt;}
.x130_c00265{left:525.733333pt;}
.xde_c00265{left:528.800000pt;}
.xb8_c00265{left:530.133333pt;}
.x13a_c00265{left:533.333333pt;}
.x11d_c00265{left:534.400000pt;}
.xac_c00265{left:536.800000pt;}
.x127_c00265{left:538.533333pt;}
.xc5_c00265{left:539.466667pt;}
.xe2_c00265{left:541.333333pt;}
.xca_c00265{left:542.666667pt;}
.x10c_c00265{left:544.133333pt;}
.xfb_c00265{left:545.333333pt;}
.x11e_c00265{left:546.933333pt;}
.xe5_c00265{left:548.400000pt;}
.xec_c00265{left:551.333333pt;}
.x13f_c00265{left:552.266667pt;}
.xa3_c00265{left:553.733333pt;}
.xf7_c00265{left:555.066667pt;}
.xad_c00265{left:556.000000pt;}
.xd8_c00265{left:556.933333pt;}
.xe6_c00265{left:558.933333pt;}
.x134_c00265{left:560.000000pt;}
.x10f_c00265{left:561.200000pt;}
.x101_c00265{left:562.266667pt;}
.xb9_c00265{left:564.000000pt;}
.x106_c00265{left:564.933333pt;}
.xbd_c00265{left:566.666667pt;}
.xf3_c00265{left:567.600000pt;}
.x11b_c00265{left:568.666667pt;}
.x13d_c00265{left:572.400000pt;}
.x119_c00265{left:573.466667pt;}
.xa4_c00265{left:574.533333pt;}
.x131_c00265{left:576.000000pt;}
.xfc_c00265{left:577.600000pt;}
.x140_c00265{left:578.800000pt;}
.xb4_c00265{left:580.133333pt;}
.xed_c00265{left:582.400000pt;}
.xae_c00265{left:585.066667pt;}
.x135_c00265{left:586.000000pt;}
.x10e_c00265{left:587.066667pt;}
.x12c_c00265{left:588.133333pt;}
.xd9_c00265{left:592.400000pt;}
.x11f_c00265{left:593.333333pt;}
.xba_c00265{left:594.666667pt;}
.x9e_c00265{left:596.133333pt;}
.xee_c00265{left:597.733333pt;}
.xf4_c00265{left:600.533333pt;}
.x13b_c00265{left:601.600000pt;}
.xbe_c00265{left:602.800000pt;}
.x110_c00265{left:605.333333pt;}
.xdf_c00265{left:606.266667pt;}
.xb5_c00265{left:607.333333pt;}
.x141_c00265{left:609.200000pt;}
.xc6_c00265{left:610.133333pt;}
.xbb_c00265{left:611.333333pt;}
.xd2_c00265{left:614.133333pt;}
.x102_c00265{left:616.666667pt;}
.xa5_c00265{left:617.733333pt;}
.xfd_c00265{left:618.933333pt;}
.x115_c00265{left:621.466667pt;}
.xe7_c00265{left:622.933333pt;}
.x128_c00265{left:624.000000pt;}
.x132_c00265{left:625.333333pt;}
.xe0_c00265{left:626.800000pt;}
.x112_c00265{left:627.733333pt;}
.x153_c00265{left:629.600000pt;}
.xc7_c00265{left:630.666667pt;}
.x151_c00265{left:631.600000pt;}
.x12d_c00265{left:632.666667pt;}
.xfe_c00265{left:633.600000pt;}
.xda_c00265{left:634.933333pt;}
.xd3_c00265{left:636.800000pt;}
.x142_c00265{left:637.733333pt;}
.x107_c00265{left:638.800000pt;}
.xbf_c00265{left:639.866667pt;}
.x149_c00265{left:641.333333pt;}
.xef_c00265{left:642.800000pt;}
.xd6_c00265{left:644.533333pt;}
.x14f_c00265{left:646.133333pt;}
.xaf_c00265{left:648.133333pt;}
.xb6_c00265{left:649.200000pt;}
.x121_c00265{left:650.933333pt;}
.x133_c00265{left:652.266667pt;}
.xc0_c00265{left:654.933333pt;}
.x108_c00265{left:657.066667pt;}
.x116_c00265{left:659.200000pt;}
.x154_c00265{left:660.266667pt;}
.xf0_c00265{left:662.933333pt;}
.xcb_c00265{left:664.533333pt;}
.xd4_c00265{left:666.266667pt;}
.xc8_c00265{left:669.333333pt;}
.x103_c00265{left:671.466667pt;}
.x12e_c00265{left:672.666667pt;}
.xcf_c00265{left:673.733333pt;}
.xe1_c00265{left:674.800000pt;}
.xc1_c00265{left:675.733333pt;}
.xdb_c00265{left:677.200000pt;}
.x122_c00265{left:679.466667pt;}
.x113_c00265{left:680.933333pt;}
.x120_c00265{left:682.933333pt;}
.x109_c00265{left:684.266667pt;}
.xa6_c00265{left:685.200000pt;}
.xe8_c00265{left:686.933333pt;}
.xff_c00265{left:689.333333pt;}
.xa7_c00265{left:690.933333pt;}
.x117_c00265{left:692.133333pt;}
.xdc_c00265{left:693.866667pt;}
.xf8_c00265{left:695.733333pt;}
.xa8_c00265{left:697.333333pt;}
.xc2_c00265{left:700.666667pt;}
.xd7_c00265{left:703.066667pt;}
.xe9_c00265{left:704.533333pt;}
.xb7_c00265{left:706.133333pt;}
.x11c_c00265{left:708.133333pt;}
.xf5_c00265{left:710.000000pt;}
.x143_c00265{left:710.933333pt;}
.xf1_c00265{left:714.800000pt;}
.x12f_c00265{left:717.066667pt;}
.x9f_c00265{left:720.666667pt;}
.x10a_c00265{left:722.400000pt;}
.xc9_c00265{left:723.733333pt;}
.xcc_c00265{left:725.600000pt;}
.x129_c00265{left:726.666667pt;}
.xa9_c00265{left:728.133333pt;}
.xb1_c00265{left:729.333333pt;}
.x11a_c00265{left:733.600000pt;}
.x125_c00265{left:734.933333pt;}
.x139_c00265{left:735.866667pt;}
.xd0_c00265{left:737.733333pt;}
.xf9_c00265{left:740.533333pt;}
.x114_c00265{left:743.333333pt;}
.xcd_c00265{left:746.133333pt;}
.xa0_c00265{left:749.466667pt;}
.xea_c00265{left:750.933333pt;}
.x100_c00265{left:753.600000pt;}
.x138_c00265{left:754.666667pt;}
.xaa_c00265{left:756.000000pt;}
.xb3_c00265{left:757.733333pt;}
.x123_c00265{left:760.400000pt;}
.x13c_c00265{left:762.133333pt;}
.x10b_c00265{left:763.333333pt;}
.x104_c00265{left:764.933333pt;}
.x126_c00265{left:766.000000pt;}
.xf6_c00265{left:767.600000pt;}
.xd5_c00265{left:768.666667pt;}
.x10d_c00265{left:770.400000pt;}
.xc3_c00265{left:772.000000pt;}
.xeb_c00265{left:773.333333pt;}
.xdd_c00265{left:774.800000pt;}
.xf2_c00265{left:776.933333pt;}
.xe3_c00265{left:778.400000pt;}
.xa1_c00265{left:780.533333pt;}
.xab_c00265{left:781.866667pt;}
.xb2_c00265{left:782.800000pt;}
.x12a_c00265{left:786.800000pt;}
.x111_c00265{left:789.733333pt;}
.x14a_c00265{left:792.266667pt;}
.x13e_c00265{left:802.933333pt;}
.x136_c00265{left:851.200000pt;}
}





/* 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_c00266 {
    display:none;
  }
  .loading-indicator_c00266.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00266 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_c00266 { 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_c00266" -> "#page-container .classname_c00266")
 */
.pf_c00266 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00266 { /* 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_c00266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00266 { /* 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_c00266 { /* 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_c00266 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00266 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00266 {overflow:visible;}
  }
}
.c_c00266 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00266 { /* 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_c00266:after { /* webkit #35443 */
  content: '';
}
.t_c00266:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00266 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 */
}
.__c00266 { /* 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_c00266 { /* info for Javascript */
  display:none;
}
.l_c00266 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00266 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00266 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00266: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_c00266 {
    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_c00266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00266.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_c00266 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00266;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.000000;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;}
.me8_c00266{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00266{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m97_c00266{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00266{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m7_c00266{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m117_c00266{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00266{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb_c00266{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mca_c00266{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00266{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m112_c00266{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me6_c00266{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m52_c00266{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mba_c00266{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00266{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m78_c00266{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.m118_c00266{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m45_c00266{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00266{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m60_c00266{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m103_c00266{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m108_c00266{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00266{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00266{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m67_c00266{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00266{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m37_c00266{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m66_c00266{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00266{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00266{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2_c00266{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00266{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m40_c00266{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00266{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00266{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m14_c00266{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m88_c00266{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00266{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00266{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m73_c00266{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00266{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00266{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me0_c00266{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m32_c00266{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m17_c00266{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m20_c00266{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00266{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00266{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.med_c00266{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m113_c00266{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00266{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00266{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m18_c00266{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00266{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m59_c00266{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11_c00266{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00266{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma_c00266{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m47_c00266{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00266{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m53_c00266{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m64_c00266{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m102_c00266{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00266{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m39_c00266{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00266{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00266{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m107_c00266{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00266{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m10_c00266{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m89_c00266{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00266{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m110_c00266{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m4_c00266{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me2_c00266{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00266{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00266{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00266{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.maf_c00266{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00266{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m72_c00266{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me4_c00266{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mae_c00266{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00266{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00266{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m74_c00266{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00266{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m56_c00266{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m99_c00266{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m75_c00266{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00266{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.maa_c00266{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m15_c00266{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m77_c00266{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m8_c00266{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m98_c00266{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m48_c00266{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00266{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m19_c00266{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m38_c00266{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mef_c00266{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00266{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m51_c00266{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00266{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m57_c00266{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m70_c00266{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00266{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m25_c00266{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mc_c00266{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00266{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m94_c00266{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00266{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00266{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00266{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00266{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m116_c00266{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m93_c00266{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m49_c00266{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf_c00266{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6_c00266{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00266{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m54_c00266{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9_c00266{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00266{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m109_c00266{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m63_c00266{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m115_c00266{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m44_c00266{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.me_c00266{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00266{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me3_c00266{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md7_c00266{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00266{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m41_c00266{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md0_c00266{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00266{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00266{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00266{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m22_c00266{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m33_c00266{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m16_c00266{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m46_c00266{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00266{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m23_c00266{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00266{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00266{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md5_c00266{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00266{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00266{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00266{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m29_c00266{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m106_c00266{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00266{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m26_c00266{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mee_c00266{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mff_c00266{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00266{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md2_c00266{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mda_c00266{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00266{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00266{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00266{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mce_c00266{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00266{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00266{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00266{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m42_c00266{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00266{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m58_c00266{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00266{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00266{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00266{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mec_c00266{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00266{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me7_c00266{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me5_c00266{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m76_c00266{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00266{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m13_c00266{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m83_c00266{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00266{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00266{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m21_c00266{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00266{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.md1_c00266{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00266{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.me1_c00266{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md8_c00266{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00266{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00266{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00266{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m50_c00266{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m30_c00266{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m62_c00266{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m69_c00266{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00266{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00266{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00266{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00266{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00266{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m95_c00266{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m31_c00266{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mac_c00266{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00266{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m96_c00266{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00266{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m12_c00266{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m71_c00266{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.md9_c00266{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00266{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m86_c00266{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00266{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m27_c00266{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m68_c00266{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00266{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00266{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m28_c00266{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m87_c00266{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m79_c00266{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00266{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md4_c00266{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m84_c00266{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00266{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00266{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mab_c00266{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{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);}
.m114_c00266{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00266{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00266{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m24_c00266{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m36_c00266{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00266{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m104_c00266{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m43_c00266{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mde_c00266{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m91_c00266{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00266{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m34_c00266{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00266{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m101_c00266{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m82_c00266{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00266{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m61_c00266{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.meb_c00266{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5_c00266{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m81_c00266{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m105_c00266{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m90_c00266{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m111_c00266{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00266{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m92_c00266{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m85_c00266{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00266{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00266{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00266{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m80_c00266{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md6_c00266{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00266{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m65_c00266{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00266{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00266{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mad_c00266{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00266{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00266{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00266{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mea_c00266{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m55_c00266{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00266{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00266{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00266{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00266{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m119_c00266{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.me9_c00266{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00266{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.md3_c00266{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00266{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m35_c00266{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00266{transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);}
.m100_c00266{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00266{transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{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__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00266{word-spacing:-12.773362px;}
.ws0_c00266{word-spacing:-10.119048px;}
.ws5_c00266{word-spacing:-6.498567px;}
.ws3_c00266{word-spacing:-6.000000px;}
.ws7_c00266{word-spacing:0.000000px;}
.ws1_c00266{word-spacing:1.333333px;}
.ws4_c00266{word-spacing:4.250000px;}
.ws6_c00266{word-spacing:5.375703px;}
.fc0_c00266{color:transparent;}
.fs5_c00266{font-size:30.000000px;}
.fs6_c00266{font-size:42.000000px;}
.fs4_c00266{font-size:54.000000px;}
.fs3_c00266{font-size:60.000000px;}
.fs2_c00266{font-size:66.000000px;}
.fs1_c00266{font-size:72.000000px;}
.fs0_c00266{font-size:78.000000px;}
.y0_c00266{bottom:0.000000px;}
.y64_c00266{bottom:173.100000px;}
.y33_c00266{bottom:187.200000px;}
.y63_c00266{bottom:188.700000px;}
.y32_c00266{bottom:202.350000px;}
.y62_c00266{bottom:204.150000px;}
.y31_c00266{bottom:216.750000px;}
.y61_c00266{bottom:218.850000px;}
.y30_c00266{bottom:235.050000px;}
.y60_c00266{bottom:267.150000px;}
.y2f_c00266{bottom:283.650000px;}
.y5f_c00266{bottom:285.450000px;}
.y2e_c00266{bottom:300.900000px;}
.y5e_c00266{bottom:317.550000px;}
.y2d_c00266{bottom:318.600000px;}
.y5d_c00266{bottom:335.100000px;}
.y2c_c00266{bottom:339.150000px;}
.y5c_c00266{bottom:352.800000px;}
.y2b_c00266{bottom:357.450000px;}
.y5b_c00266{bottom:370.500000px;}
.y2a_c00266{bottom:375.450000px;}
.y5a_c00266{bottom:392.400000px;}
.y29_c00266{bottom:396.300000px;}
.y59_c00266{bottom:410.100000px;}
.y28_c00266{bottom:415.050000px;}
.y58_c00266{bottom:427.350000px;}
.y27_c00266{bottom:449.700000px;}
.y57_c00266{bottom:467.550000px;}
.y26_c00266{bottom:468.000000px;}
.y56_c00266{bottom:485.250000px;}
.y25_c00266{bottom:486.000000px;}
.y55_c00266{bottom:503.250000px;}
.y24_c00266{bottom:507.900000px;}
.y54_c00266{bottom:520.950000px;}
.y23_c00266{bottom:525.900000px;}
.y22_c00266{bottom:543.600000px;}
.y53_c00266{bottom:545.700000px;}
.y21_c00266{bottom:561.900000px;}
.y52_c00266{bottom:566.250000px;}
.y20_c00266{bottom:583.800000px;}
.y51_c00266{bottom:584.250000px;}
.y1f_c00266{bottom:601.500000px;}
.y50_c00266{bottom:606.450000px;}
.y1e_c00266{bottom:619.950000px;}
.y4f_c00266{bottom:624.150000px;}
.y1d_c00266{bottom:640.800000px;}
.y4e_c00266{bottom:641.850000px;}
.y1c_c00266{bottom:659.100000px;}
.y4d_c00266{bottom:659.850000px;}
.y1b_c00266{bottom:676.800000px;}
.y4c_c00266{bottom:681.900000px;}
.y1a_c00266{bottom:694.800000px;}
.y19_c00266{bottom:712.500000px;}
.y4b_c00266{bottom:712.800000px;}
.y18_c00266{bottom:730.200000px;}
.y4a_c00266{bottom:735.150000px;}
.y17_c00266{bottom:748.200000px;}
.y49_c00266{bottom:753.150000px;}
.y16_c00266{bottom:765.900000px;}
.y48_c00266{bottom:770.850000px;}
.y15_c00266{bottom:783.900000px;}
.y47_c00266{bottom:789.600000px;}
.y14_c00266{bottom:801.600000px;}
.y46_c00266{bottom:806.100000px;}
.y13_c00266{bottom:819.300000px;}
.y45_c00266{bottom:824.400000px;}
.y12_c00266{bottom:837.000000px;}
.y44_c00266{bottom:841.350000px;}
.y11_c00266{bottom:858.300000px;}
.y43_c00266{bottom:862.950000px;}
.y10_c00266{bottom:876.600000px;}
.y42_c00266{bottom:880.950000px;}
.yf_c00266{bottom:894.600000px;}
.y41_c00266{bottom:898.650000px;}
.ye_c00266{bottom:911.850000px;}
.y40_c00266{bottom:916.350000px;}
.yd_c00266{bottom:929.850000px;}
.y3f_c00266{bottom:934.350000px;}
.yc_c00266{bottom:947.550000px;}
.y3e_c00266{bottom:952.350000px;}
.yb_c00266{bottom:965.250000px;}
.y3d_c00266{bottom:969.600000px;}
.ya_c00266{bottom:983.250000px;}
.y3c_c00266{bottom:987.300000px;}
.y9_c00266{bottom:1000.950000px;}
.y3b_c00266{bottom:1005.000000px;}
.y8_c00266{bottom:1018.650000px;}
.y3a_c00266{bottom:1023.000000px;}
.y7_c00266{bottom:1036.350000px;}
.y39_c00266{bottom:1040.250000px;}
.y6_c00266{bottom:1054.050000px;}
.y38_c00266{bottom:1058.250000px;}
.y5_c00266{bottom:1075.500000px;}
.y37_c00266{bottom:1075.950000px;}
.y36_c00266{bottom:1093.650000px;}
.y4_c00266{bottom:1104.600000px;}
.y3_c00266{bottom:1112.100000px;}
.y35_c00266{bottom:1113.900000px;}
.y2_c00266{bottom:1138.800000px;}
.y1_c00266{bottom:1139.100000px;}
.y34_c00266{bottom:1263.600000px;}
.h7_c00266{height:30.000000px;}
.h8_c00266{height:42.000000px;}
.h6_c00266{height:54.000000px;}
.h5_c00266{height:60.000000px;}
.h4_c00266{height:66.000000px;}
.h3_c00266{height:72.000000px;}
.h2_c00266{height:78.000000px;}
.h1_c00266{height:1269.000000px;}
.h0_c00266{height:1269.359985px;}
.w1_c00266{width:961.500000px;}
.w0_c00266{width:961.560058px;}
.x0_c00266{left:0.000000px;}
.x81_c00266{left:95.700000px;}
.x8d_c00266{left:96.900000px;}
.x9b_c00266{left:111.300000px;}
.x3_c00266{left:112.350000px;}
.x12_c00266{left:113.550000px;}
.x3c_c00266{left:114.600000px;}
.x91_c00266{left:115.650000px;}
.x95_c00266{left:119.250000px;}
.x96_c00266{left:120.600000px;}
.x4_c00266{left:131.100000px;}
.x5a_c00266{left:132.450000px;}
.x85_c00266{left:134.100000px;}
.x3d_c00266{left:135.450000px;}
.x9d_c00266{left:137.250000px;}
.x70_c00266{left:139.800000px;}
.x43_c00266{left:142.500000px;}
.xd_c00266{left:144.150000px;}
.x47_c00266{left:145.350000px;}
.x88_c00266{left:147.450000px;}
.x1d_c00266{left:148.800000px;}
.x5f_c00266{left:149.850000px;}
.x36_c00266{left:152.550000px;}
.x82_c00266{left:155.100000px;}
.x71_c00266{left:160.650000px;}
.x2f_c00266{left:164.400000px;}
.x13_c00266{left:166.500000px;}
.x4d_c00266{left:168.150000px;}
.x57_c00266{left:169.650000px;}
.x2a_c00266{left:171.900000px;}
.x37_c00266{left:173.850000px;}
.x9c_c00266{left:175.050000px;}
.x6b_c00266{left:176.250000px;}
.x60_c00266{left:178.350000px;}
.x18_c00266{left:180.000000px;}
.x98_c00266{left:181.650000px;}
.x5_c00266{left:183.000000px;}
.x1e_c00266{left:184.800000px;}
.x78_c00266{left:188.250000px;}
.x48_c00266{left:190.050000px;}
.x25_c00266{left:195.300000px;}
.x83_c00266{left:197.550000px;}
.x44_c00266{left:199.350000px;}
.x7b_c00266{left:200.850000px;}
.x8e_c00266{left:202.050000px;}
.x1f_c00266{left:204.300000px;}
.x30_c00266{left:205.500000px;}
.x61_c00266{left:206.850000px;}
.x72_c00266{left:208.200000px;}
.x9a_c00266{left:209.400000px;}
.x6_c00266{left:210.750000px;}
.x14_c00266{left:211.800000px;}
.x3e_c00266{left:212.850000px;}
.x65_c00266{left:213.900000px;}
.x19_c00266{left:218.100000px;}
.x5b_c00266{left:220.200000px;}
.x58_c00266{left:221.550000px;}
.x3f_c00266{left:222.900000px;}
.x2b_c00266{left:224.100000px;}
.x99_c00266{left:225.150000px;}
.x26_c00266{left:228.000000px;}
.x67_c00266{left:229.200000px;}
.x7f_c00266{left:231.750000px;}
.x62_c00266{left:233.550000px;}
.x7_c00266{left:237.000000px;}
.x38_c00266{left:238.350000px;}
.x4e_c00266{left:239.400000px;}
.x8b_c00266{left:242.400000px;}
.xe_c00266{left:243.900000px;}
.x15_c00266{left:247.500000px;}
.x89_c00266{left:248.550000px;}
.x79_c00266{left:251.250000px;}
.x86_c00266{left:252.900000px;}
.x9e_c00266{left:254.850000px;}
.x59_c00266{left:256.050000px;}
.x40_c00266{left:258.150000px;}
.x31_c00266{left:259.800000px;}
.x1a_c00266{left:262.800000px;}
.x16_c00266{left:264.450000px;}
.x4f_c00266{left:267.150000px;}
.x94_c00266{left:268.500000px;}
.x7c_c00266{left:269.550000px;}
.x20_c00266{left:271.200000px;}
.x6c_c00266{left:274.800000px;}
.xf_c00266{left:276.300000px;}
.x8_c00266{left:278.400000px;}
.x54_c00266{left:279.750000px;}
.x6a_c00266{left:281.400000px;}
.x76_c00266{left:283.200000px;}
.x50_c00266{left:285.450000px;}
.x27_c00266{left:286.650000px;}
.x21_c00266{left:288.150000px;}
.x9_c00266{left:289.200000px;}
.x80_c00266{left:291.450000px;}
.x2c_c00266{left:292.500000px;}
.x32_c00266{left:294.000000px;}
.x17_c00266{left:296.850000px;}
.x63_c00266{left:300.900000px;}
.x22_c00266{left:303.600000px;}
.x5c_c00266{left:304.800000px;}
.x49_c00266{left:306.750000px;}
.x33_c00266{left:310.200000px;}
.x7e_c00266{left:311.400000px;}
.x64_c00266{left:313.200000px;}
.x55_c00266{left:315.450000px;}
.x2d_c00266{left:316.950000px;}
.x8a_c00266{left:318.000000px;}
.x51_c00266{left:319.350000px;}
.x1b_c00266{left:320.700000px;}
.x45_c00266{left:321.750000px;}
.xa0_c00266{left:322.800000px;}
.x39_c00266{left:327.750000px;}
.x8f_c00266{left:328.800000px;}
.x2e_c00266{left:330.300000px;}
.x4a_c00266{left:333.000000px;}
.x6d_c00266{left:334.500000px;}
.x73_c00266{left:336.000000px;}
.x1_c00266{left:337.650000px;}
.x97_c00266{left:339.000000px;}
.x7d_c00266{left:340.200000px;}
.x3a_c00266{left:341.400000px;}
.x41_c00266{left:342.750000px;}
.x8c_c00266{left:345.000000px;}
.x6e_c00266{left:346.050000px;}
.x23_c00266{left:347.850000px;}
.xa_c00266{left:350.700000px;}
.x5d_c00266{left:352.350000px;}
.x90_c00266{left:353.700000px;}
.x28_c00266{left:355.800000px;}
.x68_c00266{left:357.300000px;}
.x3b_c00266{left:360.150000px;}
.x9f_c00266{left:361.500000px;}
.x92_c00266{left:365.250000px;}
.x10_c00266{left:367.350000px;}
.x77_c00266{left:370.200000px;}
.xb_c00266{left:371.250000px;}
.x5e_c00266{left:372.450000px;}
.x6f_c00266{left:374.550000px;}
.x24_c00266{left:375.600000px;}
.x84_c00266{left:376.800000px;}
.x34_c00266{left:379.650000px;}
.x56_c00266{left:382.050000px;}
.x11_c00266{left:383.550000px;}
.x4b_c00266{left:387.000000px;}
.x1c_c00266{left:391.350000px;}
.x74_c00266{left:393.150000px;}
.x29_c00266{left:395.100000px;}
.x52_c00266{left:398.250000px;}
.x7a_c00266{left:400.950000px;}
.x35_c00266{left:402.000000px;}
.x66_c00266{left:403.200000px;}
.xa1_c00266{left:405.900000px;}
.x69_c00266{left:407.400000px;}
.x87_c00266{left:408.450000px;}
.x93_c00266{left:410.250000px;}
.x42_c00266{left:411.450000px;}
.x75_c00266{left:412.950000px;}
.x4c_c00266{left:417.300000px;}
.x53_c00266{left:421.650000px;}
.x46_c00266{left:426.150000px;}
.xc_c00266{left:427.800000px;}
.xab_c00266{left:451.800000px;}
.x12f_c00266{left:452.850000px;}
.x121_c00266{left:461.550000px;}
.x132_c00266{left:465.900000px;}
.xfd_c00266{left:467.100000px;}
.xb8_c00266{left:468.750000px;}
.xe2_c00266{left:470.100000px;}
.xf3_c00266{left:485.700000px;}
.x10e_c00266{left:487.800000px;}
.x133_c00266{left:491.400000px;}
.x134_c00266{left:492.750000px;}
.x12d_c00266{left:494.100000px;}
.x10d_c00266{left:495.450000px;}
.x104_c00266{left:496.950000px;}
.x115_c00266{left:500.250000px;}
.x129_c00266{left:501.600000px;}
.xc4_c00266{left:503.250000px;}
.x11e_c00266{left:504.600000px;}
.x101_c00266{left:505.800000px;}
.xb9_c00266{left:508.350000px;}
.xa2_c00266{left:510.450000px;}
.xe3_c00266{left:511.800000px;}
.xd5_c00266{left:513.600000px;}
.x105_c00266{left:514.650000px;}
.xf9_c00266{left:515.700000px;}
.x111_c00266{left:516.900000px;}
.xa3_c00266{left:518.700000px;}
.x126_c00266{left:520.950000px;}
.xcc_c00266{left:524.400000px;}
.xfa_c00266{left:525.450000px;}
.xc5_c00266{left:526.950000px;}
.xd6_c00266{left:528.750000px;}
.xe7_c00266{left:531.300000px;}
.x106_c00266{left:534.750000px;}
.x11b_c00266{left:535.950000px;}
.xa4_c00266{left:537.450000px;}
.xb2_c00266{left:539.700000px;}
.xbe_c00266{left:541.200000px;}
.xc6_c00266{left:543.450000px;}
.xd1_c00266{left:545.550000px;}
.x130_c00266{left:547.500000px;}
.x127_c00266{left:549.000000px;}
.xdb_c00266{left:550.350000px;}
.xf4_c00266{left:553.050000px;}
.x102_c00266{left:555.150000px;}
.x11a_c00266{left:556.500000px;}
.xd2_c00266{left:557.850000px;}
.x12a_c00266{left:559.200000px;}
.x113_c00266{left:560.550000px;}
.xcd_c00266{left:564.000000px;}
.xeb_c00266{left:566.700000px;}
.x107_c00266{left:567.900000px;}
.xfe_c00266{left:569.400000px;}
.xac_c00266{left:571.350000px;}
.xba_c00266{left:574.200000px;}
.xb3_c00266{left:576.750000px;}
.x109_c00266{left:579.300000px;}
.xef_c00266{left:581.850000px;}
.xbf_c00266{left:583.350000px;}
.xbb_c00266{left:586.050000px;}
.x103_c00266{left:589.050000px;}
.xb4_c00266{left:591.450000px;}
.xf1_c00266{left:594.000000px;}
.xdd_c00266{left:597.150000px;}
.x128_c00266{left:599.100000px;}
.x11f_c00266{left:601.050000px;}
.xa5_c00266{left:602.250000px;}
.x10c_c00266{left:603.750000px;}
.xe4_c00266{left:605.400000px;}
.xc7_c00266{left:607.800000px;}
.x118_c00266{left:610.950000px;}
.x12b_c00266{left:612.150000px;}
.x131_c00266{left:613.350000px;}
.xe8_c00266{left:614.700000px;}
.xad_c00266{left:616.050000px;}
.xd7_c00266{left:617.250000px;}
.xec_c00266{left:620.700000px;}
.xd3_c00266{left:622.650000px;}
.x116_c00266{left:627.900000px;}
.xbc_c00266{left:630.750000px;}
.xf0_c00266{left:633.750000px;}
.xc8_c00266{left:636.300000px;}
.xa6_c00266{left:637.500000px;}
.xf5_c00266{left:639.000000px;}
.xff_c00266{left:640.350000px;}
.x120_c00266{left:642.450000px;}
.xde_c00266{left:643.950000px;}
.x12e_c00266{left:645.000000px;}
.xc0_c00266{left:648.150000px;}
.x108_c00266{left:649.650000px;}
.xe5_c00266{left:652.200000px;}
.x117_c00266{left:653.400000px;}
.x114_c00266{left:654.750000px;}
.x11c_c00266{left:655.950000px;}
.xce_c00266{left:659.400000px;}
.x124_c00266{left:662.100000px;}
.xf6_c00266{left:664.950000px;}
.xe9_c00266{left:666.600000px;}
.xae_c00266{left:667.950000px;}
.xed_c00266{left:669.600000px;}
.x10a_c00266{left:671.100000px;}
.xc9_c00266{left:674.400000px;}
.xc1_c00266{left:675.450000px;}
.xaf_c00266{left:676.650000px;}
.xcf_c00266{left:679.500000px;}
.xdc_c00266{left:681.300000px;}
.x10f_c00266{left:685.050000px;}
.xf7_c00266{left:686.250000px;}
.xa7_c00266{left:687.900000px;}
.xb5_c00266{left:690.150000px;}
.xd4_c00266{left:692.550000px;}
.xca_c00266{left:694.200000px;}
.xdf_c00266{left:696.900000px;}
.x112_c00266{left:699.150000px;}
.x135_c00266{left:702.150000px;}
.xa8_c00266{left:703.800000px;}
.x125_c00266{left:705.000000px;}
.xb0_c00266{left:707.250000px;}
.xe0_c00266{left:708.450000px;}
.xbd_c00266{left:709.650000px;}
.xa9_c00266{left:711.750000px;}
.x100_c00266{left:714.600000px;}
.xc2_c00266{left:717.150000px;}
.xb1_c00266{left:718.350000px;}
.xd8_c00266{left:720.900000px;}
.x119_c00266{left:722.550000px;}
.x123_c00266{left:726.300000px;}
.xb6_c00266{left:728.700000px;}
.xd9_c00266{left:731.700000px;}
.x110_c00266{left:738.000000px;}
.x10b_c00266{left:739.200000px;}
.xee_c00266{left:741.900000px;}
.xf8_c00266{left:743.100000px;}
.xd0_c00266{left:744.300000px;}
.xe1_c00266{left:746.550000px;}
.xc3_c00266{left:748.050000px;}
.xe6_c00266{left:749.400000px;}
.xfb_c00266{left:751.800000px;}
.xaa_c00266{left:753.900000px;}
.x122_c00266{left:756.600000px;}
.xcb_c00266{left:757.650000px;}
.x2_c00266{left:761.700000px;}
.xb7_c00266{left:763.950000px;}
.x12c_c00266{left:766.950000px;}
.xda_c00266{left:768.750000px;}
.xea_c00266{left:770.550000px;}
.x11d_c00266{left:772.200000px;}
.xf2_c00266{left:773.700000px;}
.xfc_c00266{left:776.700000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws2_c00266{word-spacing:-11.354100pt;}
.ws0_c00266{word-spacing:-8.994709pt;}
.ws5_c00266{word-spacing:-5.776504pt;}
.ws3_c00266{word-spacing:-5.333333pt;}
.ws7_c00266{word-spacing:0.000000pt;}
.ws1_c00266{word-spacing:1.185185pt;}
.ws4_c00266{word-spacing:3.777778pt;}
.ws6_c00266{word-spacing:4.778403pt;}
.fs5_c00266{font-size:26.666667pt;}
.fs6_c00266{font-size:37.333333pt;}
.fs4_c00266{font-size:48.000000pt;}
.fs3_c00266{font-size:53.333333pt;}
.fs2_c00266{font-size:58.666667pt;}
.fs1_c00266{font-size:64.000000pt;}
.fs0_c00266{font-size:69.333333pt;}
.y0_c00266{bottom:0.000000pt;}
.y64_c00266{bottom:153.866667pt;}
.y33_c00266{bottom:166.400000pt;}
.y63_c00266{bottom:167.733333pt;}
.y32_c00266{bottom:179.866667pt;}
.y62_c00266{bottom:181.466667pt;}
.y31_c00266{bottom:192.666667pt;}
.y61_c00266{bottom:194.533333pt;}
.y30_c00266{bottom:208.933333pt;}
.y60_c00266{bottom:237.466667pt;}
.y2f_c00266{bottom:252.133333pt;}
.y5f_c00266{bottom:253.733333pt;}
.y2e_c00266{bottom:267.466667pt;}
.y5e_c00266{bottom:282.266667pt;}
.y2d_c00266{bottom:283.200000pt;}
.y5d_c00266{bottom:297.866667pt;}
.y2c_c00266{bottom:301.466667pt;}
.y5c_c00266{bottom:313.600000pt;}
.y2b_c00266{bottom:317.733333pt;}
.y5b_c00266{bottom:329.333333pt;}
.y2a_c00266{bottom:333.733333pt;}
.y5a_c00266{bottom:348.800000pt;}
.y29_c00266{bottom:352.266667pt;}
.y59_c00266{bottom:364.533333pt;}
.y28_c00266{bottom:368.933333pt;}
.y58_c00266{bottom:379.866667pt;}
.y27_c00266{bottom:399.733333pt;}
.y57_c00266{bottom:415.600000pt;}
.y26_c00266{bottom:416.000000pt;}
.y56_c00266{bottom:431.333333pt;}
.y25_c00266{bottom:432.000000pt;}
.y55_c00266{bottom:447.333333pt;}
.y24_c00266{bottom:451.466667pt;}
.y54_c00266{bottom:463.066667pt;}
.y23_c00266{bottom:467.466667pt;}
.y22_c00266{bottom:483.200000pt;}
.y53_c00266{bottom:485.066667pt;}
.y21_c00266{bottom:499.466667pt;}
.y52_c00266{bottom:503.333333pt;}
.y20_c00266{bottom:518.933333pt;}
.y51_c00266{bottom:519.333333pt;}
.y1f_c00266{bottom:534.666667pt;}
.y50_c00266{bottom:539.066667pt;}
.y1e_c00266{bottom:551.066667pt;}
.y4f_c00266{bottom:554.800000pt;}
.y1d_c00266{bottom:569.600000pt;}
.y4e_c00266{bottom:570.533333pt;}
.y1c_c00266{bottom:585.866667pt;}
.y4d_c00266{bottom:586.533333pt;}
.y1b_c00266{bottom:601.600000pt;}
.y4c_c00266{bottom:606.133333pt;}
.y1a_c00266{bottom:617.600000pt;}
.y19_c00266{bottom:633.333333pt;}
.y4b_c00266{bottom:633.600000pt;}
.y18_c00266{bottom:649.066667pt;}
.y4a_c00266{bottom:653.466667pt;}
.y17_c00266{bottom:665.066667pt;}
.y49_c00266{bottom:669.466667pt;}
.y16_c00266{bottom:680.800000pt;}
.y48_c00266{bottom:685.200000pt;}
.y15_c00266{bottom:696.800000pt;}
.y47_c00266{bottom:701.866667pt;}
.y14_c00266{bottom:712.533333pt;}
.y46_c00266{bottom:716.533333pt;}
.y13_c00266{bottom:728.266667pt;}
.y45_c00266{bottom:732.800000pt;}
.y12_c00266{bottom:744.000000pt;}
.y44_c00266{bottom:747.866667pt;}
.y11_c00266{bottom:762.933333pt;}
.y43_c00266{bottom:767.066667pt;}
.y10_c00266{bottom:779.200000pt;}
.y42_c00266{bottom:783.066667pt;}
.yf_c00266{bottom:795.200000pt;}
.y41_c00266{bottom:798.800000pt;}
.ye_c00266{bottom:810.533333pt;}
.y40_c00266{bottom:814.533333pt;}
.yd_c00266{bottom:826.533333pt;}
.y3f_c00266{bottom:830.533333pt;}
.yc_c00266{bottom:842.266667pt;}
.y3e_c00266{bottom:846.533333pt;}
.yb_c00266{bottom:858.000000pt;}
.y3d_c00266{bottom:861.866667pt;}
.ya_c00266{bottom:874.000000pt;}
.y3c_c00266{bottom:877.600000pt;}
.y9_c00266{bottom:889.733333pt;}
.y3b_c00266{bottom:893.333333pt;}
.y8_c00266{bottom:905.466667pt;}
.y3a_c00266{bottom:909.333333pt;}
.y7_c00266{bottom:921.200000pt;}
.y39_c00266{bottom:924.666667pt;}
.y6_c00266{bottom:936.933333pt;}
.y38_c00266{bottom:940.666667pt;}
.y5_c00266{bottom:956.000000pt;}
.y37_c00266{bottom:956.400000pt;}
.y36_c00266{bottom:972.133333pt;}
.y4_c00266{bottom:981.866667pt;}
.y3_c00266{bottom:988.533333pt;}
.y35_c00266{bottom:990.133333pt;}
.y2_c00266{bottom:1012.266667pt;}
.y1_c00266{bottom:1012.533333pt;}
.y34_c00266{bottom:1123.200000pt;}
.h7_c00266{height:26.666667pt;}
.h8_c00266{height:37.333333pt;}
.h6_c00266{height:48.000000pt;}
.h5_c00266{height:53.333333pt;}
.h4_c00266{height:58.666667pt;}
.h3_c00266{height:64.000000pt;}
.h2_c00266{height:69.333333pt;}
.h1_c00266{height:1128.000000pt;}
.h0_c00266{height:1128.319987pt;}
.w1_c00266{width:854.666667pt;}
.w0_c00266{width:854.720052pt;}
.x0_c00266{left:0.000000pt;}
.x81_c00266{left:85.066667pt;}
.x8d_c00266{left:86.133333pt;}
.x9b_c00266{left:98.933333pt;}
.x3_c00266{left:99.866667pt;}
.x12_c00266{left:100.933333pt;}
.x3c_c00266{left:101.866667pt;}
.x91_c00266{left:102.800000pt;}
.x95_c00266{left:106.000000pt;}
.x96_c00266{left:107.200000pt;}
.x4_c00266{left:116.533333pt;}
.x5a_c00266{left:117.733333pt;}
.x85_c00266{left:119.200000pt;}
.x3d_c00266{left:120.400000pt;}
.x9d_c00266{left:122.000000pt;}
.x70_c00266{left:124.266667pt;}
.x43_c00266{left:126.666667pt;}
.xd_c00266{left:128.133333pt;}
.x47_c00266{left:129.200000pt;}
.x88_c00266{left:131.066667pt;}
.x1d_c00266{left:132.266667pt;}
.x5f_c00266{left:133.200000pt;}
.x36_c00266{left:135.600000pt;}
.x82_c00266{left:137.866667pt;}
.x71_c00266{left:142.800000pt;}
.x2f_c00266{left:146.133333pt;}
.x13_c00266{left:148.000000pt;}
.x4d_c00266{left:149.466667pt;}
.x57_c00266{left:150.800000pt;}
.x2a_c00266{left:152.800000pt;}
.x37_c00266{left:154.533333pt;}
.x9c_c00266{left:155.600000pt;}
.x6b_c00266{left:156.666667pt;}
.x60_c00266{left:158.533333pt;}
.x18_c00266{left:160.000000pt;}
.x98_c00266{left:161.466667pt;}
.x5_c00266{left:162.666667pt;}
.x1e_c00266{left:164.266667pt;}
.x78_c00266{left:167.333333pt;}
.x48_c00266{left:168.933333pt;}
.x25_c00266{left:173.600000pt;}
.x83_c00266{left:175.600000pt;}
.x44_c00266{left:177.200000pt;}
.x7b_c00266{left:178.533333pt;}
.x8e_c00266{left:179.600000pt;}
.x1f_c00266{left:181.600000pt;}
.x30_c00266{left:182.666667pt;}
.x61_c00266{left:183.866667pt;}
.x72_c00266{left:185.066667pt;}
.x9a_c00266{left:186.133333pt;}
.x6_c00266{left:187.333333pt;}
.x14_c00266{left:188.266667pt;}
.x3e_c00266{left:189.200000pt;}
.x65_c00266{left:190.133333pt;}
.x19_c00266{left:193.866667pt;}
.x5b_c00266{left:195.733333pt;}
.x58_c00266{left:196.933333pt;}
.x3f_c00266{left:198.133333pt;}
.x2b_c00266{left:199.200000pt;}
.x99_c00266{left:200.133333pt;}
.x26_c00266{left:202.666667pt;}
.x67_c00266{left:203.733333pt;}
.x7f_c00266{left:206.000000pt;}
.x62_c00266{left:207.600000pt;}
.x7_c00266{left:210.666667pt;}
.x38_c00266{left:211.866667pt;}
.x4e_c00266{left:212.800000pt;}
.x8b_c00266{left:215.466667pt;}
.xe_c00266{left:216.800000pt;}
.x15_c00266{left:220.000000pt;}
.x89_c00266{left:220.933333pt;}
.x79_c00266{left:223.333333pt;}
.x86_c00266{left:224.800000pt;}
.x9e_c00266{left:226.533333pt;}
.x59_c00266{left:227.600000pt;}
.x40_c00266{left:229.466667pt;}
.x31_c00266{left:230.933333pt;}
.x1a_c00266{left:233.600000pt;}
.x16_c00266{left:235.066667pt;}
.x4f_c00266{left:237.466667pt;}
.x94_c00266{left:238.666667pt;}
.x7c_c00266{left:239.600000pt;}
.x20_c00266{left:241.066667pt;}
.x6c_c00266{left:244.266667pt;}
.xf_c00266{left:245.600000pt;}
.x8_c00266{left:247.466667pt;}
.x54_c00266{left:248.666667pt;}
.x6a_c00266{left:250.133333pt;}
.x76_c00266{left:251.733333pt;}
.x50_c00266{left:253.733333pt;}
.x27_c00266{left:254.800000pt;}
.x21_c00266{left:256.133333pt;}
.x9_c00266{left:257.066667pt;}
.x80_c00266{left:259.066667pt;}
.x2c_c00266{left:260.000000pt;}
.x32_c00266{left:261.333333pt;}
.x17_c00266{left:263.866667pt;}
.x63_c00266{left:267.466667pt;}
.x22_c00266{left:269.866667pt;}
.x5c_c00266{left:270.933333pt;}
.x49_c00266{left:272.666667pt;}
.x33_c00266{left:275.733333pt;}
.x7e_c00266{left:276.800000pt;}
.x64_c00266{left:278.400000pt;}
.x55_c00266{left:280.400000pt;}
.x2d_c00266{left:281.733333pt;}
.x8a_c00266{left:282.666667pt;}
.x51_c00266{left:283.866667pt;}
.x1b_c00266{left:285.066667pt;}
.x45_c00266{left:286.000000pt;}
.xa0_c00266{left:286.933333pt;}
.x39_c00266{left:291.333333pt;}
.x8f_c00266{left:292.266667pt;}
.x2e_c00266{left:293.600000pt;}
.x4a_c00266{left:296.000000pt;}
.x6d_c00266{left:297.333333pt;}
.x73_c00266{left:298.666667pt;}
.x1_c00266{left:300.133333pt;}
.x97_c00266{left:301.333333pt;}
.x7d_c00266{left:302.400000pt;}
.x3a_c00266{left:303.466667pt;}
.x41_c00266{left:304.666667pt;}
.x8c_c00266{left:306.666667pt;}
.x6e_c00266{left:307.600000pt;}
.x23_c00266{left:309.200000pt;}
.xa_c00266{left:311.733333pt;}
.x5d_c00266{left:313.200000pt;}
.x90_c00266{left:314.400000pt;}
.x28_c00266{left:316.266667pt;}
.x68_c00266{left:317.600000pt;}
.x3b_c00266{left:320.133333pt;}
.x9f_c00266{left:321.333333pt;}
.x92_c00266{left:324.666667pt;}
.x10_c00266{left:326.533333pt;}
.x77_c00266{left:329.066667pt;}
.xb_c00266{left:330.000000pt;}
.x5e_c00266{left:331.066667pt;}
.x6f_c00266{left:332.933333pt;}
.x24_c00266{left:333.866667pt;}
.x84_c00266{left:334.933333pt;}
.x34_c00266{left:337.466667pt;}
.x56_c00266{left:339.600000pt;}
.x11_c00266{left:340.933333pt;}
.x4b_c00266{left:344.000000pt;}
.x1c_c00266{left:347.866667pt;}
.x74_c00266{left:349.466667pt;}
.x29_c00266{left:351.200000pt;}
.x52_c00266{left:354.000000pt;}
.x7a_c00266{left:356.400000pt;}
.x35_c00266{left:357.333333pt;}
.x66_c00266{left:358.400000pt;}
.xa1_c00266{left:360.800000pt;}
.x69_c00266{left:362.133333pt;}
.x87_c00266{left:363.066667pt;}
.x93_c00266{left:364.666667pt;}
.x42_c00266{left:365.733333pt;}
.x75_c00266{left:367.066667pt;}
.x4c_c00266{left:370.933333pt;}
.x53_c00266{left:374.800000pt;}
.x46_c00266{left:378.800000pt;}
.xc_c00266{left:380.266667pt;}
.xab_c00266{left:401.600000pt;}
.x12f_c00266{left:402.533333pt;}
.x121_c00266{left:410.266667pt;}
.x132_c00266{left:414.133333pt;}
.xfd_c00266{left:415.200000pt;}
.xb8_c00266{left:416.666667pt;}
.xe2_c00266{left:417.866667pt;}
.xf3_c00266{left:431.733333pt;}
.x10e_c00266{left:433.600000pt;}
.x133_c00266{left:436.800000pt;}
.x134_c00266{left:438.000000pt;}
.x12d_c00266{left:439.200000pt;}
.x10d_c00266{left:440.400000pt;}
.x104_c00266{left:441.733333pt;}
.x115_c00266{left:444.666667pt;}
.x129_c00266{left:445.866667pt;}
.xc4_c00266{left:447.333333pt;}
.x11e_c00266{left:448.533333pt;}
.x101_c00266{left:449.600000pt;}
.xb9_c00266{left:451.866667pt;}
.xa2_c00266{left:453.733333pt;}
.xe3_c00266{left:454.933333pt;}
.xd5_c00266{left:456.533333pt;}
.x105_c00266{left:457.466667pt;}
.xf9_c00266{left:458.400000pt;}
.x111_c00266{left:459.466667pt;}
.xa3_c00266{left:461.066667pt;}
.x126_c00266{left:463.066667pt;}
.xcc_c00266{left:466.133333pt;}
.xfa_c00266{left:467.066667pt;}
.xc5_c00266{left:468.400000pt;}
.xd6_c00266{left:470.000000pt;}
.xe7_c00266{left:472.266667pt;}
.x106_c00266{left:475.333333pt;}
.x11b_c00266{left:476.400000pt;}
.xa4_c00266{left:477.733333pt;}
.xb2_c00266{left:479.733333pt;}
.xbe_c00266{left:481.066667pt;}
.xc6_c00266{left:483.066667pt;}
.xd1_c00266{left:484.933333pt;}
.x130_c00266{left:486.666667pt;}
.x127_c00266{left:488.000000pt;}
.xdb_c00266{left:489.200000pt;}
.xf4_c00266{left:491.600000pt;}
.x102_c00266{left:493.466667pt;}
.x11a_c00266{left:494.666667pt;}
.xd2_c00266{left:495.866667pt;}
.x12a_c00266{left:497.066667pt;}
.x113_c00266{left:498.266667pt;}
.xcd_c00266{left:501.333333pt;}
.xeb_c00266{left:503.733333pt;}
.x107_c00266{left:504.800000pt;}
.xfe_c00266{left:506.133333pt;}
.xac_c00266{left:507.866667pt;}
.xba_c00266{left:510.400000pt;}
.xb3_c00266{left:512.666667pt;}
.x109_c00266{left:514.933333pt;}
.xef_c00266{left:517.200000pt;}
.xbf_c00266{left:518.533333pt;}
.xbb_c00266{left:520.933333pt;}
.x103_c00266{left:523.600000pt;}
.xb4_c00266{left:525.733333pt;}
.xf1_c00266{left:528.000000pt;}
.xdd_c00266{left:530.800000pt;}
.x128_c00266{left:532.533333pt;}
.x11f_c00266{left:534.266667pt;}
.xa5_c00266{left:535.333333pt;}
.x10c_c00266{left:536.666667pt;}
.xe4_c00266{left:538.133333pt;}
.xc7_c00266{left:540.266667pt;}
.x118_c00266{left:543.066667pt;}
.x12b_c00266{left:544.133333pt;}
.x131_c00266{left:545.200000pt;}
.xe8_c00266{left:546.400000pt;}
.xad_c00266{left:547.600000pt;}
.xd7_c00266{left:548.666667pt;}
.xec_c00266{left:551.733333pt;}
.xd3_c00266{left:553.466667pt;}
.x116_c00266{left:558.133333pt;}
.xbc_c00266{left:560.666667pt;}
.xf0_c00266{left:563.333333pt;}
.xc8_c00266{left:565.600000pt;}
.xa6_c00266{left:566.666667pt;}
.xf5_c00266{left:568.000000pt;}
.xff_c00266{left:569.200000pt;}
.x120_c00266{left:571.066667pt;}
.xde_c00266{left:572.400000pt;}
.x12e_c00266{left:573.333333pt;}
.xc0_c00266{left:576.133333pt;}
.x108_c00266{left:577.466667pt;}
.xe5_c00266{left:579.733333pt;}
.x117_c00266{left:580.800000pt;}
.x114_c00266{left:582.000000pt;}
.x11c_c00266{left:583.066667pt;}
.xce_c00266{left:586.133333pt;}
.x124_c00266{left:588.533333pt;}
.xf6_c00266{left:591.066667pt;}
.xe9_c00266{left:592.533333pt;}
.xae_c00266{left:593.733333pt;}
.xed_c00266{left:595.200000pt;}
.x10a_c00266{left:596.533333pt;}
.xc9_c00266{left:599.466667pt;}
.xc1_c00266{left:600.400000pt;}
.xaf_c00266{left:601.466667pt;}
.xcf_c00266{left:604.000000pt;}
.xdc_c00266{left:605.600000pt;}
.x10f_c00266{left:608.933333pt;}
.xf7_c00266{left:610.000000pt;}
.xa7_c00266{left:611.466667pt;}
.xb5_c00266{left:613.466667pt;}
.xd4_c00266{left:615.600000pt;}
.xca_c00266{left:617.066667pt;}
.xdf_c00266{left:619.466667pt;}
.x112_c00266{left:621.466667pt;}
.x135_c00266{left:624.133333pt;}
.xa8_c00266{left:625.600000pt;}
.x125_c00266{left:626.666667pt;}
.xb0_c00266{left:628.666667pt;}
.xe0_c00266{left:629.733333pt;}
.xbd_c00266{left:630.800000pt;}
.xa9_c00266{left:632.666667pt;}
.x100_c00266{left:635.200000pt;}
.xc2_c00266{left:637.466667pt;}
.xb1_c00266{left:638.533333pt;}
.xd8_c00266{left:640.800000pt;}
.x119_c00266{left:642.266667pt;}
.x123_c00266{left:645.600000pt;}
.xb6_c00266{left:647.733333pt;}
.xd9_c00266{left:650.400000pt;}
.x110_c00266{left:656.000000pt;}
.x10b_c00266{left:657.066667pt;}
.xee_c00266{left:659.466667pt;}
.xf8_c00266{left:660.533333pt;}
.xd0_c00266{left:661.600000pt;}
.xe1_c00266{left:663.600000pt;}
.xc3_c00266{left:664.933333pt;}
.xe6_c00266{left:666.133333pt;}
.xfb_c00266{left:668.266667pt;}
.xaa_c00266{left:670.133333pt;}
.x122_c00266{left:672.533333pt;}
.xcb_c00266{left:673.466667pt;}
.x2_c00266{left:677.066667pt;}
.xb7_c00266{left:679.066667pt;}
.x12c_c00266{left:681.733333pt;}
.xda_c00266{left:683.333333pt;}
.xea_c00266{left:684.933333pt;}
.x11d_c00266{left:686.400000pt;}
.xf2_c00266{left:687.733333pt;}
.xfc_c00266{left:690.400000pt;}
}





/* 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_c00267 {
    display:none;
  }
  .loading-indicator_c00267.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00267 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_c00267 { 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_c00267" -> "#page-container .classname_c00267")
 */
.pf_c00267 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00267 { /* 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_c00267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00267 { /* 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_c00267 { /* 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_c00267 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00267 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00267 {overflow:visible;}
  }
}
.c_c00267 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00267 { /* 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_c00267:after { /* webkit #35443 */
  content: '';
}
.t_c00267:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00267 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 */
}
.__c00267 { /* 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_c00267 { /* info for Javascript */
  display:none;
}
.l_c00267 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00267 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00267 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00267: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_c00267 {
    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_c00267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00267.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_c00267 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00267;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.000000;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;}
.m10_c00267{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00267{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m64_c00267{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00267{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00267{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m92_c00267{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m132_c00267{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m91_c00267{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mff_c00267{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m74_c00267{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00267{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00267{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m68_c00267{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m121_c00267{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00267{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m15_c00267{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m13_c00267{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m110_c00267{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00267{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m130_c00267{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m93_c00267{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m48_c00267{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.mce_c00267{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m57_c00267{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m6_c00267{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m52_c00267{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m46_c00267{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00267{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00267{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00267{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00267{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00267{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mac_c00267{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m56_c00267{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m59_c00267{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00267{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m115_c00267{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00267{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mee_c00267{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m30_c00267{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m81_c00267{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m58_c00267{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m54_c00267{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me5_c00267{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00267{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00267{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00267{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mb_c00267{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m45_c00267{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00267{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00267{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mef_c00267{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m118_c00267{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00267{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00267{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m5_c00267{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m29_c00267{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m63_c00267{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m69_c00267{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m125_c00267{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00267{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8_c00267{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m73_c00267{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m47_c00267{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m31_c00267{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.me4_c00267{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00267{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9_c00267{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m36_c00267{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me7_c00267{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.maa_c00267{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m119_c00267{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00267{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m111_c00267{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00267{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00267{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00267{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m84_c00267{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m44_c00267{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00267{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m16_c00267{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m40_c00267{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00267{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m127_c00267{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00267{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mea_c00267{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00267{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00267{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00267{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00267{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me6_c00267{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m82_c00267{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m7_c00267{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00267{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md9_c00267{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m62_c00267{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m43_c00267{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m55_c00267{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mba_c00267{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00267{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m65_c00267{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mda_c00267{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00267{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m41_c00267{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00267{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00267{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m122_c00267{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m117_c00267{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m99_c00267{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m28_c00267{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mec_c00267{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md8_c00267{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00267{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00267{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00267{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mab_c00267{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00267{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mad_c00267{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00267{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.me3_c00267{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00267{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00267{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m50_c00267{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4_c00267{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m85_c00267{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m61_c00267{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00267{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m123_c00267{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00267{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me0_c00267{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m11_c00267{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00267{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00267{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00267{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m86_c00267{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00267{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m89_c00267{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00267{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00267{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00267{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00267{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mae_c00267{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m51_c00267{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00267{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00267{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m79_c00267{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00267{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m107_c00267{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m87_c00267{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00267{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m53_c00267{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00267{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00267{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m128_c00267{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m60_c00267{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m114_c00267{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m75_c00267{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.maf_c00267{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m112_c00267{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00267{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m14_c00267{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m78_c00267{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md0_c00267{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc_c00267{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00267{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00267{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00267{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.md4_c00267{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me_c00267{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m24_c00267{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m35_c00267{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m23_c00267{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf_c00267{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00267{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me8_c00267{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m26_c00267{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m98_c00267{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m39_c00267{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00267{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00267{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m34_c00267{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md1_c00267{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00267{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00267{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00267{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00267{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m33_c00267{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00267{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me2_c00267{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.meb_c00267{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00267{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m88_c00267{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me9_c00267{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00267{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00267{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m106_c00267{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00267{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md7_c00267{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m113_c00267{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m109_c00267{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00267{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m76_c00267{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00267{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m25_c00267{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m90_c00267{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00267{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00267{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m95_c00267{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00267{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m105_c00267{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00267{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m126_c00267{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m80_c00267{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma_c00267{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m42_c00267{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00267{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m97_c00267{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md3_c00267{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00267{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m22_c00267{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m27_c00267{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m124_c00267{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00267{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m38_c00267{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00267{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m116_c00267{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m129_c00267{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m71_c00267{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00267{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00267{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m72_c00267{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00267{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00267{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m77_c00267{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00267{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m131_c00267{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.med_c00267{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00267{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.md_c00267{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12_c00267{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m94_c00267{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00267{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m120_c00267{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mca_c00267{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m83_c00267{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m70_c00267{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00267{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m19_c00267{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me1_c00267{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00267{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00267{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00267{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m96_c00267{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00267{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m32_c00267{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00267{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00267{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mde_c00267{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00267{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m103_c00267{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m67_c00267{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m66_c00267{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m21_c00267{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m49_c00267{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m104_c00267{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.md6_c00267{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00267{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00267{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00267{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00267{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m108_c00267{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00267{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m18_c00267{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2_c00267{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m37_c00267{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.md2_c00267{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00267{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00267{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00267{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00267{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00267{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00267{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m20_c00267{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00267{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md5_c00267{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00267{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00267{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00267{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m101_c00267{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00267{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00267{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00267{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00267{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m100_c00267{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00267{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00267{transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00267{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00267{transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00267{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00267{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00267{transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);}
.m102_c00267{transform:matrix(0.417750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417750,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);}
.m17_c00267{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00267{transform:matrix(6.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.186750,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls0_c00267{letter-spacing:0.000000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{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__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00267{word-spacing:-8.511460px;}
.ws5_c00267{word-spacing:-4.407497px;}
.ws6_c00267{word-spacing:-3.928571px;}
.ws1_c00267{word-spacing:-2.878788px;}
.ws3_c00267{word-spacing:-1.405498px;}
.ws7_c00267{word-spacing:0.000000px;}
.ws0_c00267{word-spacing:15.000000px;}
.ws2_c00267{word-spacing:36.000000px;}
.fc0_c00267{color:transparent;}
.fs7_c00267{font-size:24.000000px;}
.fs4_c00267{font-size:42.000000px;}
.fs6_c00267{font-size:48.000000px;}
.fs5_c00267{font-size:54.000000px;}
.fs2_c00267{font-size:60.000000px;}
.fs1_c00267{font-size:66.000000px;}
.fs3_c00267{font-size:72.000000px;}
.fs0_c00267{font-size:84.000000px;}
.y0_c00267{bottom:0.000000px;}
.y66_c00267{bottom:193.050000px;}
.y65_c00267{bottom:207.750000px;}
.y33_c00267{bottom:210.600000px;}
.y64_c00267{bottom:221.850000px;}
.y32_c00267{bottom:233.700000px;}
.y63_c00267{bottom:235.500000px;}
.y62_c00267{bottom:250.200000px;}
.y31_c00267{bottom:262.800000px;}
.y61_c00267{bottom:264.300000px;}
.y60_c00267{bottom:278.700000px;}
.y30_c00267{bottom:279.750000px;}
.y5f_c00267{bottom:293.100000px;}
.y2f_c00267{bottom:299.850000px;}
.y5e_c00267{bottom:307.500000px;}
.y67_c00267{bottom:308.100000px;}
.y2e_c00267{bottom:320.400000px;}
.y5d_c00267{bottom:321.900000px;}
.y5c_c00267{bottom:336.300000px;}
.y2d_c00267{bottom:341.700000px;}
.y5b_c00267{bottom:350.700000px;}
.y2c_c00267{bottom:358.950000px;}
.y5a_c00267{bottom:365.100000px;}
.y2b_c00267{bottom:374.700000px;}
.y59_c00267{bottom:379.500000px;}
.y58_c00267{bottom:393.900000px;}
.y2a_c00267{bottom:397.200000px;}
.y57_c00267{bottom:408.300000px;}
.y29_c00267{bottom:415.500000px;}
.y56_c00267{bottom:421.950000px;}
.y28_c00267{bottom:433.200000px;}
.y55_c00267{bottom:436.650000px;}
.y27_c00267{bottom:450.450000px;}
.y54_c00267{bottom:451.350000px;}
.y53_c00267{bottom:465.450000px;}
.y26_c00267{bottom:467.700000px;}
.y52_c00267{bottom:479.550000px;}
.y25_c00267{bottom:485.700000px;}
.y51_c00267{bottom:494.250000px;}
.y24_c00267{bottom:502.950000px;}
.y50_c00267{bottom:508.350000px;}
.y23_c00267{bottom:521.250000px;}
.y4f_c00267{bottom:523.050000px;}
.y4e_c00267{bottom:536.700000px;}
.y22_c00267{bottom:538.200000px;}
.y4d_c00267{bottom:555.150000px;}
.y21_c00267{bottom:556.200000px;}
.y4c_c00267{bottom:569.850000px;}
.y20_c00267{bottom:574.200000px;}
.y1f_c00267{bottom:593.700000px;}
.y1e_c00267{bottom:608.850000px;}
.y4b_c00267{bottom:611.250000px;}
.y1d_c00267{bottom:620.700000px;}
.y4a_c00267{bottom:628.950000px;}
.y1c_c00267{bottom:635.400000px;}
.y1b_c00267{bottom:653.100000px;}
.y49_c00267{bottom:655.200000px;}
.y1a_c00267{bottom:670.350000px;}
.y19_c00267{bottom:688.350000px;}
.y48_c00267{bottom:691.200000px;}
.y18_c00267{bottom:710.100000px;}
.y47_c00267{bottom:713.850000px;}
.y17_c00267{bottom:728.100000px;}
.y46_c00267{bottom:731.550000px;}
.y16_c00267{bottom:745.800000px;}
.y45_c00267{bottom:749.400000px;}
.y15_c00267{bottom:763.500000px;}
.y44_c00267{bottom:767.100000px;}
.y14_c00267{bottom:784.800000px;}
.y43_c00267{bottom:801.900000px;}
.y13_c00267{bottom:802.800000px;}
.y42_c00267{bottom:819.900000px;}
.y12_c00267{bottom:837.000000px;}
.y41_c00267{bottom:837.600000px;}
.y11_c00267{bottom:855.000000px;}
.y40_c00267{bottom:855.600000px;}
.y10_c00267{bottom:872.700000px;}
.y3f_c00267{bottom:873.300000px;}
.yf_c00267{bottom:889.950000px;}
.y3e_c00267{bottom:891.300000px;}
.ye_c00267{bottom:907.950000px;}
.y3d_c00267{bottom:909.000000px;}
.yd_c00267{bottom:929.550000px;}
.yc_c00267{bottom:947.850000px;}
.y3c_c00267{bottom:949.950000px;}
.yb_c00267{bottom:966.000000px;}
.y3b_c00267{bottom:967.650000px;}
.y3a_c00267{bottom:985.350000px;}
.ya_c00267{bottom:985.800000px;}
.y9_c00267{bottom:1005.900000px;}
.y39_c00267{bottom:1006.800000px;}
.y8_c00267{bottom:1024.200000px;}
.y38_c00267{bottom:1024.500000px;}
.y7_c00267{bottom:1041.450000px;}
.y37_c00267{bottom:1042.500000px;}
.y36_c00267{bottom:1060.200000px;}
.y6_c00267{bottom:1062.750000px;}
.y35_c00267{bottom:1078.200000px;}
.y5_c00267{bottom:1081.500000px;}
.y4_c00267{bottom:1099.050000px;}
.y34_c00267{bottom:1099.350000px;}
.y3_c00267{bottom:1117.050000px;}
.y1_c00267{bottom:1140.450000px;}
.y2_c00267{bottom:1143.750000px;}
.h9_c00267{height:24.000000px;}
.h6_c00267{height:42.000000px;}
.h8_c00267{height:48.000000px;}
.h7_c00267{height:54.000000px;}
.h4_c00267{height:60.000000px;}
.h3_c00267{height:66.000000px;}
.h5_c00267{height:72.000000px;}
.h2_c00267{height:84.000000px;}
.h0_c00267{height:1273.320007px;}
.h1_c00267{height:1273.500000px;}
.w1_c00267{width:961.500000px;}
.w0_c00267{width:961.560058px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:177.900000px;}
.x2e_c00267{left:179.250000px;}
.x1e_c00267{left:180.750000px;}
.x5c_c00267{left:182.550000px;}
.x96_c00267{left:183.900000px;}
.x7f_c00267{left:189.000000px;}
.x23_c00267{left:196.950000px;}
.xa_c00267{left:198.300000px;}
.x64_c00267{left:199.500000px;}
.x7c_c00267{left:200.550000px;}
.x75_c00267{left:211.500000px;}
.x3_c00267{left:214.200000px;}
.x54_c00267{left:217.350000px;}
.x92_c00267{left:218.550000px;}
.x8a_c00267{left:222.000000px;}
.x1f_c00267{left:225.450000px;}
.x90_c00267{left:230.100000px;}
.x50_c00267{left:231.900000px;}
.x3e_c00267{left:233.400000px;}
.x7e_c00267{left:234.600000px;}
.x55_c00267{left:235.650000px;}
.x65_c00267{left:237.600000px;}
.x19_c00267{left:238.800000px;}
.x45_c00267{left:240.900000px;}
.x68_c00267{left:242.250000px;}
.x2f_c00267{left:244.800000px;}
.x4b_c00267{left:247.200000px;}
.xb_c00267{left:248.700000px;}
.x24_c00267{left:249.900000px;}
.x76_c00267{left:252.450000px;}
.x56_c00267{left:254.100000px;}
.x61_c00267{left:255.300000px;}
.x2b_c00267{left:257.100000px;}
.x4_c00267{left:259.500000px;}
.x86_c00267{left:261.300000px;}
.x25_c00267{left:264.000000px;}
.x12_c00267{left:267.900000px;}
.x87_c00267{left:272.400000px;}
.x57_c00267{left:274.650000px;}
.x30_c00267{left:276.900000px;}
.x51_c00267{left:279.300000px;}
.x39_c00267{left:280.800000px;}
.x3f_c00267{left:283.500000px;}
.x4c_c00267{left:284.700000px;}
.x31_c00267{left:287.400000px;}
.x80_c00267{left:289.350000px;}
.x1a_c00267{left:291.300000px;}
.xc_c00267{left:296.250000px;}
.x46_c00267{left:297.900000px;}
.x78_c00267{left:299.850000px;}
.x8c_c00267{left:301.500000px;}
.x72_c00267{left:303.600000px;}
.x40_c00267{left:305.100000px;}
.x13_c00267{left:306.750000px;}
.x3a_c00267{left:309.300000px;}
.x52_c00267{left:311.700000px;}
.x35_c00267{left:314.100000px;}
.x58_c00267{left:315.300000px;}
.xd_c00267{left:316.350000px;}
.x70_c00267{left:317.550000px;}
.x94_c00267{left:321.000000px;}
.x5_c00267{left:322.800000px;}
.x69_c00267{left:325.050000px;}
.x66_c00267{left:327.900000px;}
.x6e_c00267{left:331.800000px;}
.x3b_c00267{left:333.450000px;}
.x1b_c00267{left:334.500000px;}
.x8b_c00267{left:336.900000px;}
.x47_c00267{left:338.250000px;}
.x41_c00267{left:339.750000px;}
.x20_c00267{left:341.400000px;}
.x67_c00267{left:342.600000px;}
.x8d_c00267{left:343.650000px;}
.x91_c00267{left:344.850000px;}
.x5d_c00267{left:346.800000px;}
.x7d_c00267{left:347.850000px;}
.x97_c00267{left:351.300000px;}
.x32_c00267{left:353.250000px;}
.x14_c00267{left:356.700000px;}
.x36_c00267{left:359.400000px;}
.x2c_c00267{left:361.500000px;}
.x89_c00267{left:362.550000px;}
.x48_c00267{left:364.200000px;}
.x42_c00267{left:365.250000px;}
.x71_c00267{left:366.900000px;}
.x83_c00267{left:368.550000px;}
.x6_c00267{left:369.900000px;}
.x33_c00267{left:370.950000px;}
.x15_c00267{left:373.200000px;}
.x79_c00267{left:374.400000px;}
.x6a_c00267{left:375.750000px;}
.x8e_c00267{left:377.100000px;}
.x53_c00267{left:379.500000px;}
.x6b_c00267{left:381.150000px;}
.xe_c00267{left:383.250000px;}
.x95_c00267{left:384.300000px;}
.x16_c00267{left:388.350000px;}
.x81_c00267{left:389.400000px;}
.x2d_c00267{left:390.600000px;}
.x21_c00267{left:393.900000px;}
.x1c_c00267{left:396.000000px;}
.x26_c00267{left:398.250000px;}
.x93_c00267{left:401.850000px;}
.x59_c00267{left:403.800000px;}
.x3c_c00267{left:405.150000px;}
.x37_c00267{left:407.700000px;}
.x17_c00267{left:409.650000px;}
.x73_c00267{left:412.650000px;}
.x6c_c00267{left:415.350000px;}
.x7a_c00267{left:419.400000px;}
.x2_c00267{left:420.900000px;}
.x98_c00267{left:422.250000px;}
.x7_c00267{left:424.950000px;}
.x1d_c00267{left:427.650000px;}
.x34_c00267{left:428.850000px;}
.x5e_c00267{left:429.900000px;}
.x82_c00267{left:431.850000px;}
.x22_c00267{left:433.500000px;}
.x8_c00267{left:437.250000px;}
.x62_c00267{left:439.350000px;}
.xf_c00267{left:441.150000px;}
.x5f_c00267{left:444.000000px;}
.x77_c00267{left:446.100000px;}
.x4d_c00267{left:447.150000px;}
.x84_c00267{left:451.050000px;}
.x49_c00267{left:453.900000px;}
.x88_c00267{left:456.150000px;}
.x43_c00267{left:458.550000px;}
.x18_c00267{left:459.750000px;}
.x38_c00267{left:462.750000px;}
.x27_c00267{left:464.550000px;}
.x5a_c00267{left:466.800000px;}
.x8f_c00267{left:468.150000px;}
.x10_c00267{left:469.650000px;}
.x7b_c00267{left:471.600000px;}
.x4e_c00267{left:475.950000px;}
.x6d_c00267{left:478.500000px;}
.x9_c00267{left:482.250000px;}
.x63_c00267{left:484.650000px;}
.x28_c00267{left:485.850000px;}
.x4a_c00267{left:488.400000px;}
.x44_c00267{left:489.900000px;}
.x3d_c00267{left:492.600000px;}
.x6f_c00267{left:497.550000px;}
.x4f_c00267{left:500.100000px;}
.x5b_c00267{left:501.750000px;}
.x74_c00267{left:503.400000px;}
.x85_c00267{left:506.100000px;}
.x29_c00267{left:508.950000px;}
.x60_c00267{left:517.800000px;}
.x11_c00267{left:522.600000px;}
.x2a_c00267{left:524.100000px;}
.x99_c00267{left:534.600000px;}
.xfb_c00267{left:536.400000px;}
.x109_c00267{left:537.900000px;}
.x121_c00267{left:548.700000px;}
.xa0_c00267{left:550.800000px;}
.xbb_c00267{left:552.000000px;}
.xd1_c00267{left:553.350000px;}
.xe2_c00267{left:554.550000px;}
.x138_c00267{left:557.250000px;}
.x11d_c00267{left:561.450000px;}
.x133_c00267{left:563.700000px;}
.x111_c00267{left:567.150000px;}
.x104_c00267{left:569.100000px;}
.xa2_c00267{left:570.300000px;}
.xd6_c00267{left:571.650000px;}
.x100_c00267{left:573.450000px;}
.x134_c00267{left:574.650000px;}
.xc0_c00267{left:577.050000px;}
.x9a_c00267{left:578.100000px;}
.xb0_c00267{left:579.900000px;}
.x12d_c00267{left:581.550000px;}
.xbc_c00267{left:584.400000px;}
.xea_c00267{left:585.600000px;}
.x117_c00267{left:586.650000px;}
.xa3_c00267{left:589.350000px;}
.xa9_c00267{left:591.300000px;}
.xa1_c00267{left:592.500000px;}
.xe3_c00267{left:594.900000px;}
.xc4_c00267{left:597.450000px;}
.x10d_c00267{left:598.950000px;}
.xdd_c00267{left:602.100000px;}
.xe4_c00267{left:603.900000px;}
.xfc_c00267{left:605.550000px;}
.xeb_c00267{left:607.500000px;}
.xa4_c00267{left:610.200000px;}
.xfe_c00267{left:611.250000px;}
.x12e_c00267{left:613.950000px;}
.x9b_c00267{left:615.600000px;}
.x118_c00267{left:617.550000px;}
.x120_c00267{left:619.500000px;}
.xbd_c00267{left:620.700000px;}
.x139_c00267{left:623.100000px;}
.xc9_c00267{left:624.150000px;}
.x130_c00267{left:625.650000px;}
.xaa_c00267{left:629.100000px;}
.x9c_c00267{left:632.100000px;}
.xfd_c00267{left:634.350000px;}
.x10b_c00267{left:635.550000px;}
.xb1_c00267{left:636.750000px;}
.xe5_c00267{left:637.800000px;}
.xc5_c00267{left:638.850000px;}
.xd7_c00267{left:641.100000px;}
.xb6_c00267{left:642.450000px;}
.xbe_c00267{left:644.100000px;}
.xf7_c00267{left:645.300000px;}
.xab_c00267{left:646.350000px;}
.x10e_c00267{left:647.850000px;}
.xf2_c00267{left:650.550000px;}
.x105_c00267{left:651.900000px;}
.xcb_c00267{left:653.250000px;}
.x12f_c00267{left:654.300000px;}
.xee_c00267{left:657.450000px;}
.xe6_c00267{left:659.400000px;}
.x12b_c00267{left:660.450000px;}
.xd2_c00267{left:661.800000px;}
.xca_c00267{left:663.000000px;}
.xa5_c00267{left:667.050000px;}
.x112_c00267{left:669.300000px;}
.x101_c00267{left:670.350000px;}
.xde_c00267{left:673.800000px;}
.x11e_c00267{left:676.050000px;}
.x106_c00267{left:680.100000px;}
.xac_c00267{left:682.350000px;}
.x127_c00267{left:684.000000px;}
.xb7_c00267{left:685.650000px;}
.xf8_c00267{left:687.450000px;}
.xb2_c00267{left:688.650000px;}
.xcc_c00267{left:690.000000px;}
.xc1_c00267{left:691.200000px;}
.x131_c00267{left:693.300000px;}
.xc6_c00267{left:694.650000px;}
.x129_c00267{left:697.800000px;}
.xad_c00267{left:699.600000px;}
.x9d_c00267{left:701.550000px;}
.x107_c00267{left:703.500000px;}
.xda_c00267{left:705.150000px;}
.xa6_c00267{left:709.950000px;}
.xce_c00267{left:712.800000px;}
.xd3_c00267{left:715.050000px;}
.x136_c00267{left:716.250000px;}
.x114_c00267{left:720.300000px;}
.xb3_c00267{left:721.350000px;}
.xc2_c00267{left:723.300000px;}
.x10a_c00267{left:724.500000px;}
.xb8_c00267{left:725.550000px;}
.xff_c00267{left:728.250000px;}
.xf3_c00267{left:729.450000px;}
.xae_c00267{left:732.000000px;}
.xef_c00267{left:734.100000px;}
.x9e_c00267{left:739.050000px;}
.x11f_c00267{left:740.100000px;}
.xe7_c00267{left:741.450000px;}
.xdf_c00267{left:742.950000px;}
.x108_c00267{left:745.650000px;}
.xb4_c00267{left:747.600000px;}
.xaf_c00267{left:749.700000px;}
.x115_c00267{left:751.200000px;}
.xf9_c00267{left:753.600000px;}
.xcf_c00267{left:754.950000px;}
.x122_c00267{left:756.150000px;}
.xc7_c00267{left:757.650000px;}
.xcd_c00267{left:759.450000px;}
.x11b_c00267{left:760.950000px;}
.xe8_c00267{left:764.100000px;}
.x135_c00267{left:767.550000px;}
.x10f_c00267{left:768.750000px;}
.xd4_c00267{left:770.550000px;}
.x123_c00267{left:773.400000px;}
.xc3_c00267{left:775.200000px;}
.x10c_c00267{left:776.250000px;}
.xd8_c00267{left:777.900000px;}
.x119_c00267{left:779.250000px;}
.x9f_c00267{left:780.450000px;}
.x137_c00267{left:783.900000px;}
.xe0_c00267{left:785.400000px;}
.xe9_c00267{left:788.250000px;}
.xf6_c00267{left:790.350000px;}
.xec_c00267{left:792.750000px;}
.xa7_c00267{left:793.800000px;}
.x11a_c00267{left:801.150000px;}
.xf4_c00267{left:803.250000px;}
.x124_c00267{left:804.750000px;}
.x113_c00267{left:807.600000px;}
.x12c_c00267{left:808.650000px;}
.x102_c00267{left:810.750000px;}
.xb9_c00267{left:812.250000px;}
.x128_c00267{left:813.600000px;}
.xf0_c00267{left:815.100000px;}
.xb5_c00267{left:818.550000px;}
.xdb_c00267{left:821.100000px;}
.xd5_c00267{left:822.450000px;}
.xed_c00267{left:825.150000px;}
.xf5_c00267{left:828.150000px;}
.x110_c00267{left:829.650000px;}
.xd0_c00267{left:833.100000px;}
.xc8_c00267{left:835.050000px;}
.xbf_c00267{left:837.000000px;}
.x11c_c00267{left:838.350000px;}
.x125_c00267{left:839.700000px;}
.xa8_c00267{left:840.900000px;}
.xd9_c00267{left:846.300000px;}
.xe1_c00267{left:848.700000px;}
.x12a_c00267{left:849.750000px;}
.xba_c00267{left:853.650000px;}
.x116_c00267{left:855.300000px;}
.x126_c00267{left:856.800000px;}
.x103_c00267{left:857.850000px;}
.xdc_c00267{left:859.200000px;}
.x132_c00267{left:861.300000px;}
.xfa_c00267{left:863.400000px;}
.xf1_c00267{left:881.400000px;}
.x13a_c00267{left:954.750000px;}
.x13b_c00267{left:957.300000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws4_c00267{word-spacing:-7.565742pt;}
.ws5_c00267{word-spacing:-3.917775pt;}
.ws6_c00267{word-spacing:-3.492063pt;}
.ws1_c00267{word-spacing:-2.558923pt;}
.ws3_c00267{word-spacing:-1.249332pt;}
.ws7_c00267{word-spacing:0.000000pt;}
.ws0_c00267{word-spacing:13.333333pt;}
.ws2_c00267{word-spacing:32.000000pt;}
.fs7_c00267{font-size:21.333333pt;}
.fs4_c00267{font-size:37.333333pt;}
.fs6_c00267{font-size:42.666667pt;}
.fs5_c00267{font-size:48.000000pt;}
.fs2_c00267{font-size:53.333333pt;}
.fs1_c00267{font-size:58.666667pt;}
.fs3_c00267{font-size:64.000000pt;}
.fs0_c00267{font-size:74.666667pt;}
.y0_c00267{bottom:0.000000pt;}
.y66_c00267{bottom:171.600000pt;}
.y65_c00267{bottom:184.666667pt;}
.y33_c00267{bottom:187.200000pt;}
.y64_c00267{bottom:197.200000pt;}
.y32_c00267{bottom:207.733333pt;}
.y63_c00267{bottom:209.333333pt;}
.y62_c00267{bottom:222.400000pt;}
.y31_c00267{bottom:233.600000pt;}
.y61_c00267{bottom:234.933333pt;}
.y60_c00267{bottom:247.733333pt;}
.y30_c00267{bottom:248.666667pt;}
.y5f_c00267{bottom:260.533333pt;}
.y2f_c00267{bottom:266.533333pt;}
.y5e_c00267{bottom:273.333333pt;}
.y67_c00267{bottom:273.866667pt;}
.y2e_c00267{bottom:284.800000pt;}
.y5d_c00267{bottom:286.133333pt;}
.y5c_c00267{bottom:298.933333pt;}
.y2d_c00267{bottom:303.733333pt;}
.y5b_c00267{bottom:311.733333pt;}
.y2c_c00267{bottom:319.066667pt;}
.y5a_c00267{bottom:324.533333pt;}
.y2b_c00267{bottom:333.066667pt;}
.y59_c00267{bottom:337.333333pt;}
.y58_c00267{bottom:350.133333pt;}
.y2a_c00267{bottom:353.066667pt;}
.y57_c00267{bottom:362.933333pt;}
.y29_c00267{bottom:369.333333pt;}
.y56_c00267{bottom:375.066667pt;}
.y28_c00267{bottom:385.066667pt;}
.y55_c00267{bottom:388.133333pt;}
.y27_c00267{bottom:400.400000pt;}
.y54_c00267{bottom:401.200000pt;}
.y53_c00267{bottom:413.733333pt;}
.y26_c00267{bottom:415.733333pt;}
.y52_c00267{bottom:426.266667pt;}
.y25_c00267{bottom:431.733333pt;}
.y51_c00267{bottom:439.333333pt;}
.y24_c00267{bottom:447.066667pt;}
.y50_c00267{bottom:451.866667pt;}
.y23_c00267{bottom:463.333333pt;}
.y4f_c00267{bottom:464.933333pt;}
.y4e_c00267{bottom:477.066667pt;}
.y22_c00267{bottom:478.400000pt;}
.y4d_c00267{bottom:493.466667pt;}
.y21_c00267{bottom:494.400000pt;}
.y4c_c00267{bottom:506.533333pt;}
.y20_c00267{bottom:510.400000pt;}
.y1f_c00267{bottom:527.733333pt;}
.y1e_c00267{bottom:541.200000pt;}
.y4b_c00267{bottom:543.333333pt;}
.y1d_c00267{bottom:551.733333pt;}
.y4a_c00267{bottom:559.066667pt;}
.y1c_c00267{bottom:564.800000pt;}
.y1b_c00267{bottom:580.533333pt;}
.y49_c00267{bottom:582.400000pt;}
.y1a_c00267{bottom:595.866667pt;}
.y19_c00267{bottom:611.866667pt;}
.y48_c00267{bottom:614.400000pt;}
.y18_c00267{bottom:631.200000pt;}
.y47_c00267{bottom:634.533333pt;}
.y17_c00267{bottom:647.200000pt;}
.y46_c00267{bottom:650.266667pt;}
.y16_c00267{bottom:662.933333pt;}
.y45_c00267{bottom:666.133333pt;}
.y15_c00267{bottom:678.666667pt;}
.y44_c00267{bottom:681.866667pt;}
.y14_c00267{bottom:697.600000pt;}
.y43_c00267{bottom:712.800000pt;}
.y13_c00267{bottom:713.600000pt;}
.y42_c00267{bottom:728.800000pt;}
.y12_c00267{bottom:744.000000pt;}
.y41_c00267{bottom:744.533333pt;}
.y11_c00267{bottom:760.000000pt;}
.y40_c00267{bottom:760.533333pt;}
.y10_c00267{bottom:775.733333pt;}
.y3f_c00267{bottom:776.266667pt;}
.yf_c00267{bottom:791.066667pt;}
.y3e_c00267{bottom:792.266667pt;}
.ye_c00267{bottom:807.066667pt;}
.y3d_c00267{bottom:808.000000pt;}
.yd_c00267{bottom:826.266667pt;}
.yc_c00267{bottom:842.533333pt;}
.y3c_c00267{bottom:844.400000pt;}
.yb_c00267{bottom:858.666667pt;}
.y3b_c00267{bottom:860.133333pt;}
.y3a_c00267{bottom:875.866667pt;}
.ya_c00267{bottom:876.266667pt;}
.y9_c00267{bottom:894.133333pt;}
.y39_c00267{bottom:894.933333pt;}
.y8_c00267{bottom:910.400000pt;}
.y38_c00267{bottom:910.666667pt;}
.y7_c00267{bottom:925.733333pt;}
.y37_c00267{bottom:926.666667pt;}
.y36_c00267{bottom:942.400000pt;}
.y6_c00267{bottom:944.666667pt;}
.y35_c00267{bottom:958.400000pt;}
.y5_c00267{bottom:961.333333pt;}
.y4_c00267{bottom:976.933333pt;}
.y34_c00267{bottom:977.200000pt;}
.y3_c00267{bottom:992.933333pt;}
.y1_c00267{bottom:1013.733333pt;}
.y2_c00267{bottom:1016.666667pt;}
.h9_c00267{height:21.333333pt;}
.h6_c00267{height:37.333333pt;}
.h8_c00267{height:42.666667pt;}
.h7_c00267{height:48.000000pt;}
.h4_c00267{height:53.333333pt;}
.h3_c00267{height:58.666667pt;}
.h5_c00267{height:64.000000pt;}
.h2_c00267{height:74.666667pt;}
.h0_c00267{height:1131.840007pt;}
.h1_c00267{height:1132.000000pt;}
.w1_c00267{width:854.666667pt;}
.w0_c00267{width:854.720052pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:158.133333pt;}
.x2e_c00267{left:159.333333pt;}
.x1e_c00267{left:160.666667pt;}
.x5c_c00267{left:162.266667pt;}
.x96_c00267{left:163.466667pt;}
.x7f_c00267{left:168.000000pt;}
.x23_c00267{left:175.066667pt;}
.xa_c00267{left:176.266667pt;}
.x64_c00267{left:177.333333pt;}
.x7c_c00267{left:178.266667pt;}
.x75_c00267{left:188.000000pt;}
.x3_c00267{left:190.400000pt;}
.x54_c00267{left:193.200000pt;}
.x92_c00267{left:194.266667pt;}
.x8a_c00267{left:197.333333pt;}
.x1f_c00267{left:200.400000pt;}
.x90_c00267{left:204.533333pt;}
.x50_c00267{left:206.133333pt;}
.x3e_c00267{left:207.466667pt;}
.x7e_c00267{left:208.533333pt;}
.x55_c00267{left:209.466667pt;}
.x65_c00267{left:211.200000pt;}
.x19_c00267{left:212.266667pt;}
.x45_c00267{left:214.133333pt;}
.x68_c00267{left:215.333333pt;}
.x2f_c00267{left:217.600000pt;}
.x4b_c00267{left:219.733333pt;}
.xb_c00267{left:221.066667pt;}
.x24_c00267{left:222.133333pt;}
.x76_c00267{left:224.400000pt;}
.x56_c00267{left:225.866667pt;}
.x61_c00267{left:226.933333pt;}
.x2b_c00267{left:228.533333pt;}
.x4_c00267{left:230.666667pt;}
.x86_c00267{left:232.266667pt;}
.x25_c00267{left:234.666667pt;}
.x12_c00267{left:238.133333pt;}
.x87_c00267{left:242.133333pt;}
.x57_c00267{left:244.133333pt;}
.x30_c00267{left:246.133333pt;}
.x51_c00267{left:248.266667pt;}
.x39_c00267{left:249.600000pt;}
.x3f_c00267{left:252.000000pt;}
.x4c_c00267{left:253.066667pt;}
.x31_c00267{left:255.466667pt;}
.x80_c00267{left:257.200000pt;}
.x1a_c00267{left:258.933333pt;}
.xc_c00267{left:263.333333pt;}
.x46_c00267{left:264.800000pt;}
.x78_c00267{left:266.533333pt;}
.x8c_c00267{left:268.000000pt;}
.x72_c00267{left:269.866667pt;}
.x40_c00267{left:271.200000pt;}
.x13_c00267{left:272.666667pt;}
.x3a_c00267{left:274.933333pt;}
.x52_c00267{left:277.066667pt;}
.x35_c00267{left:279.200000pt;}
.x58_c00267{left:280.266667pt;}
.xd_c00267{left:281.200000pt;}
.x70_c00267{left:282.266667pt;}
.x94_c00267{left:285.333333pt;}
.x5_c00267{left:286.933333pt;}
.x69_c00267{left:288.933333pt;}
.x66_c00267{left:291.466667pt;}
.x6e_c00267{left:294.933333pt;}
.x3b_c00267{left:296.400000pt;}
.x1b_c00267{left:297.333333pt;}
.x8b_c00267{left:299.466667pt;}
.x47_c00267{left:300.666667pt;}
.x41_c00267{left:302.000000pt;}
.x20_c00267{left:303.466667pt;}
.x67_c00267{left:304.533333pt;}
.x8d_c00267{left:305.466667pt;}
.x91_c00267{left:306.533333pt;}
.x5d_c00267{left:308.266667pt;}
.x7d_c00267{left:309.200000pt;}
.x97_c00267{left:312.266667pt;}
.x32_c00267{left:314.000000pt;}
.x14_c00267{left:317.066667pt;}
.x36_c00267{left:319.466667pt;}
.x2c_c00267{left:321.333333pt;}
.x89_c00267{left:322.266667pt;}
.x48_c00267{left:323.733333pt;}
.x42_c00267{left:324.666667pt;}
.x71_c00267{left:326.133333pt;}
.x83_c00267{left:327.600000pt;}
.x6_c00267{left:328.800000pt;}
.x33_c00267{left:329.733333pt;}
.x15_c00267{left:331.733333pt;}
.x79_c00267{left:332.800000pt;}
.x6a_c00267{left:334.000000pt;}
.x8e_c00267{left:335.200000pt;}
.x53_c00267{left:337.333333pt;}
.x6b_c00267{left:338.800000pt;}
.xe_c00267{left:340.666667pt;}
.x95_c00267{left:341.600000pt;}
.x16_c00267{left:345.200000pt;}
.x81_c00267{left:346.133333pt;}
.x2d_c00267{left:347.200000pt;}
.x21_c00267{left:350.133333pt;}
.x1c_c00267{left:352.000000pt;}
.x26_c00267{left:354.000000pt;}
.x93_c00267{left:357.200000pt;}
.x59_c00267{left:358.933333pt;}
.x3c_c00267{left:360.133333pt;}
.x37_c00267{left:362.400000pt;}
.x17_c00267{left:364.133333pt;}
.x73_c00267{left:366.800000pt;}
.x6c_c00267{left:369.200000pt;}
.x7a_c00267{left:372.800000pt;}
.x2_c00267{left:374.133333pt;}
.x98_c00267{left:375.333333pt;}
.x7_c00267{left:377.733333pt;}
.x1d_c00267{left:380.133333pt;}
.x34_c00267{left:381.200000pt;}
.x5e_c00267{left:382.133333pt;}
.x82_c00267{left:383.866667pt;}
.x22_c00267{left:385.333333pt;}
.x8_c00267{left:388.666667pt;}
.x62_c00267{left:390.533333pt;}
.xf_c00267{left:392.133333pt;}
.x5f_c00267{left:394.666667pt;}
.x77_c00267{left:396.533333pt;}
.x4d_c00267{left:397.466667pt;}
.x84_c00267{left:400.933333pt;}
.x49_c00267{left:403.466667pt;}
.x88_c00267{left:405.466667pt;}
.x43_c00267{left:407.600000pt;}
.x18_c00267{left:408.666667pt;}
.x38_c00267{left:411.333333pt;}
.x27_c00267{left:412.933333pt;}
.x5a_c00267{left:414.933333pt;}
.x8f_c00267{left:416.133333pt;}
.x10_c00267{left:417.466667pt;}
.x7b_c00267{left:419.200000pt;}
.x4e_c00267{left:423.066667pt;}
.x6d_c00267{left:425.333333pt;}
.x9_c00267{left:428.666667pt;}
.x63_c00267{left:430.800000pt;}
.x28_c00267{left:431.866667pt;}
.x4a_c00267{left:434.133333pt;}
.x44_c00267{left:435.466667pt;}
.x3d_c00267{left:437.866667pt;}
.x6f_c00267{left:442.266667pt;}
.x4f_c00267{left:444.533333pt;}
.x5b_c00267{left:446.000000pt;}
.x74_c00267{left:447.466667pt;}
.x85_c00267{left:449.866667pt;}
.x29_c00267{left:452.400000pt;}
.x60_c00267{left:460.266667pt;}
.x11_c00267{left:464.533333pt;}
.x2a_c00267{left:465.866667pt;}
.x99_c00267{left:475.200000pt;}
.xfb_c00267{left:476.800000pt;}
.x109_c00267{left:478.133333pt;}
.x121_c00267{left:487.733333pt;}
.xa0_c00267{left:489.600000pt;}
.xbb_c00267{left:490.666667pt;}
.xd1_c00267{left:491.866667pt;}
.xe2_c00267{left:492.933333pt;}
.x138_c00267{left:495.333333pt;}
.x11d_c00267{left:499.066667pt;}
.x133_c00267{left:501.066667pt;}
.x111_c00267{left:504.133333pt;}
.x104_c00267{left:505.866667pt;}
.xa2_c00267{left:506.933333pt;}
.xd6_c00267{left:508.133333pt;}
.x100_c00267{left:509.733333pt;}
.x134_c00267{left:510.800000pt;}
.xc0_c00267{left:512.933333pt;}
.x9a_c00267{left:513.866667pt;}
.xb0_c00267{left:515.466667pt;}
.x12d_c00267{left:516.933333pt;}
.xbc_c00267{left:519.466667pt;}
.xea_c00267{left:520.533333pt;}
.x117_c00267{left:521.466667pt;}
.xa3_c00267{left:523.866667pt;}
.xa9_c00267{left:525.600000pt;}
.xa1_c00267{left:526.666667pt;}
.xe3_c00267{left:528.800000pt;}
.xc4_c00267{left:531.066667pt;}
.x10d_c00267{left:532.400000pt;}
.xdd_c00267{left:535.200000pt;}
.xe4_c00267{left:536.800000pt;}
.xfc_c00267{left:538.266667pt;}
.xeb_c00267{left:540.000000pt;}
.xa4_c00267{left:542.400000pt;}
.xfe_c00267{left:543.333333pt;}
.x12e_c00267{left:545.733333pt;}
.x9b_c00267{left:547.200000pt;}
.x118_c00267{left:548.933333pt;}
.x120_c00267{left:550.666667pt;}
.xbd_c00267{left:551.733333pt;}
.x139_c00267{left:553.866667pt;}
.xc9_c00267{left:554.800000pt;}
.x130_c00267{left:556.133333pt;}
.xaa_c00267{left:559.200000pt;}
.x9c_c00267{left:561.866667pt;}
.xfd_c00267{left:563.866667pt;}
.x10b_c00267{left:564.933333pt;}
.xb1_c00267{left:566.000000pt;}
.xe5_c00267{left:566.933333pt;}
.xc5_c00267{left:567.866667pt;}
.xd7_c00267{left:569.866667pt;}
.xb6_c00267{left:571.066667pt;}
.xbe_c00267{left:572.533333pt;}
.xf7_c00267{left:573.600000pt;}
.xab_c00267{left:574.533333pt;}
.x10e_c00267{left:575.866667pt;}
.xf2_c00267{left:578.266667pt;}
.x105_c00267{left:579.466667pt;}
.xcb_c00267{left:580.666667pt;}
.x12f_c00267{left:581.600000pt;}
.xee_c00267{left:584.400000pt;}
.xe6_c00267{left:586.133333pt;}
.x12b_c00267{left:587.066667pt;}
.xd2_c00267{left:588.266667pt;}
.xca_c00267{left:589.333333pt;}
.xa5_c00267{left:592.933333pt;}
.x112_c00267{left:594.933333pt;}
.x101_c00267{left:595.866667pt;}
.xde_c00267{left:598.933333pt;}
.x11e_c00267{left:600.933333pt;}
.x106_c00267{left:604.533333pt;}
.xac_c00267{left:606.533333pt;}
.x127_c00267{left:608.000000pt;}
.xb7_c00267{left:609.466667pt;}
.xf8_c00267{left:611.066667pt;}
.xb2_c00267{left:612.133333pt;}
.xcc_c00267{left:613.333333pt;}
.xc1_c00267{left:614.400000pt;}
.x131_c00267{left:616.266667pt;}
.xc6_c00267{left:617.466667pt;}
.x129_c00267{left:620.266667pt;}
.xad_c00267{left:621.866667pt;}
.x9d_c00267{left:623.600000pt;}
.x107_c00267{left:625.333333pt;}
.xda_c00267{left:626.800000pt;}
.xa6_c00267{left:631.066667pt;}
.xce_c00267{left:633.600000pt;}
.xd3_c00267{left:635.600000pt;}
.x136_c00267{left:636.666667pt;}
.x114_c00267{left:640.266667pt;}
.xb3_c00267{left:641.200000pt;}
.xc2_c00267{left:642.933333pt;}
.x10a_c00267{left:644.000000pt;}
.xb8_c00267{left:644.933333pt;}
.xff_c00267{left:647.333333pt;}
.xf3_c00267{left:648.400000pt;}
.xae_c00267{left:650.666667pt;}
.xef_c00267{left:652.533333pt;}
.x9e_c00267{left:656.933333pt;}
.x11f_c00267{left:657.866667pt;}
.xe7_c00267{left:659.066667pt;}
.xdf_c00267{left:660.400000pt;}
.x108_c00267{left:662.800000pt;}
.xb4_c00267{left:664.533333pt;}
.xaf_c00267{left:666.400000pt;}
.x115_c00267{left:667.733333pt;}
.xf9_c00267{left:669.866667pt;}
.xcf_c00267{left:671.066667pt;}
.x122_c00267{left:672.133333pt;}
.xc7_c00267{left:673.466667pt;}
.xcd_c00267{left:675.066667pt;}
.x11b_c00267{left:676.400000pt;}
.xe8_c00267{left:679.200000pt;}
.x135_c00267{left:682.266667pt;}
.x10f_c00267{left:683.333333pt;}
.xd4_c00267{left:684.933333pt;}
.x123_c00267{left:687.466667pt;}
.xc3_c00267{left:689.066667pt;}
.x10c_c00267{left:690.000000pt;}
.xd8_c00267{left:691.466667pt;}
.x119_c00267{left:692.666667pt;}
.x9f_c00267{left:693.733333pt;}
.x137_c00267{left:696.800000pt;}
.xe0_c00267{left:698.133333pt;}
.xe9_c00267{left:700.666667pt;}
.xf6_c00267{left:702.533333pt;}
.xec_c00267{left:704.666667pt;}
.xa7_c00267{left:705.600000pt;}
.x11a_c00267{left:712.133333pt;}
.xf4_c00267{left:714.000000pt;}
.x124_c00267{left:715.333333pt;}
.x113_c00267{left:717.866667pt;}
.x12c_c00267{left:718.800000pt;}
.x102_c00267{left:720.666667pt;}
.xb9_c00267{left:722.000000pt;}
.x128_c00267{left:723.200000pt;}
.xf0_c00267{left:724.533333pt;}
.xb5_c00267{left:727.600000pt;}
.xdb_c00267{left:729.866667pt;}
.xd5_c00267{left:731.066667pt;}
.xed_c00267{left:733.466667pt;}
.xf5_c00267{left:736.133333pt;}
.x110_c00267{left:737.466667pt;}
.xd0_c00267{left:740.533333pt;}
.xc8_c00267{left:742.266667pt;}
.xbf_c00267{left:744.000000pt;}
.x11c_c00267{left:745.200000pt;}
.x125_c00267{left:746.400000pt;}
.xa8_c00267{left:747.466667pt;}
.xd9_c00267{left:752.266667pt;}
.xe1_c00267{left:754.400000pt;}
.x12a_c00267{left:755.333333pt;}
.xba_c00267{left:758.800000pt;}
.x116_c00267{left:760.266667pt;}
.x126_c00267{left:761.600000pt;}
.x103_c00267{left:762.533333pt;}
.xdc_c00267{left:763.733333pt;}
.x132_c00267{left:765.600000pt;}
.xfa_c00267{left:767.466667pt;}
.xf1_c00267{left:783.466667pt;}
.x13a_c00267{left:848.666667pt;}
.x13b_c00267{left:850.933333pt;}
}





/* 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_c00268 {
    display:none;
  }
  .loading-indicator_c00268.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00268 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_c00268 { 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_c00268" -> "#page-container .classname_c00268")
 */
.pf_c00268 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00268 { /* 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_c00268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00268 { /* 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_c00268 { /* 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_c00268 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00268 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00268 {overflow:visible;}
  }
}
.c_c00268 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00268 { /* 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_c00268:after { /* webkit #35443 */
  content: '';
}
.t_c00268:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00268 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 */
}
.__c00268 { /* 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_c00268 { /* info for Javascript */
  display:none;
}
.l_c00268 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00268 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00268 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00268: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_c00268 {
    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_c00268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00268.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_c00268 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00268;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.000000;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;}
.m10d_c00268{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00268{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m85_c00268{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.md_c00268{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md0_c00268{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m18_c00268{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00268{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m89_c00268{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.md2_c00268{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5_c00268{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mac_c00268{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.me2_c00268{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.md1_c00268{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m24_c00268{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00268{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00268{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.md7_c00268{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m8_c00268{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md8_c00268{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00268{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00268{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mf_c00268{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00268{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00268{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00268{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.me0_c00268{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00268{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00268{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00268{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m86_c00268{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00268{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00268{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00268{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m41_c00268{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00268{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00268{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m14_c00268{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m31_c00268{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00268{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m105_c00268{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m27_c00268{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mec_c00268{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00268{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00268{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m49_c00268{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m59_c00268{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00268{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m34_c00268{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m6_c00268{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00268{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00268{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb_c00268{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00268{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00268{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00268{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m54_c00268{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00268{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00268{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.meb_c00268{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m47_c00268{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m63_c00268{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00268{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00268{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m25_c00268{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00268{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00268{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00268{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m64_c00268{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m75_c00268{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00268{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m80_c00268{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m69_c00268{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00268{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m100_c00268{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00268{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00268{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00268{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m73_c00268{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00268{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m61_c00268{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m32_c00268{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00268{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00268{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m60_c00268{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00268{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00268{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00268{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00268{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00268{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m57_c00268{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00268{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m113_c00268{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.med_c00268{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m16_c00268{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00268{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00268{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m44_c00268{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me6_c00268{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.me3_c00268{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00268{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m77_c00268{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00268{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00268{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00268{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00268{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9_c00268{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00268{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m99_c00268{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m40_c00268{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00268{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m119_c00268{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00268{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m71_c00268{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m20_c00268{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00268{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00268{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mee_c00268{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00268{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4_c00268{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me8_c00268{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00268{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m50_c00268{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.me7_c00268{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00268{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00268{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mce_c00268{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m56_c00268{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00268{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00268{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m46_c00268{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00268{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m29_c00268{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m26_c00268{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me5_c00268{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m39_c00268{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00268{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m81_c00268{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00268{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00268{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00268{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md6_c00268{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m97_c00268{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00268{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mff_c00268{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00268{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m107_c00268{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m45_c00268{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m68_c00268{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m115_c00268{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00268{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m15_c00268{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m55_c00268{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m36_c00268{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m79_c00268{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mea_c00268{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m82_c00268{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00268{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m21_c00268{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00268{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m22_c00268{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00268{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00268{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m76_c00268{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m70_c00268{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00268{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc_c00268{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00268{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m37_c00268{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00268{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m33_c00268{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m114_c00268{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m17_c00268{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mde_c00268{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m93_c00268{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m53_c00268{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00268{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m101_c00268{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.maa_c00268{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00268{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m72_c00268{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00268{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m23_c00268{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m30_c00268{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m43_c00268{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m67_c00268{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00268{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00268{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m104_c00268{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m110_c00268{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m84_c00268{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00268{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00268{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00268{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m35_c00268{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m51_c00268{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m91_c00268{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m38_c00268{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00268{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mda_c00268{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m52_c00268{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mef_c00268{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00268{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m74_c00268{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00268{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mae_c00268{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m66_c00268{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00268{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m83_c00268{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00268{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00268{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md9_c00268{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m106_c00268{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m58_c00268{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00268{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00268{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m28_c00268{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00268{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m103_c00268{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.md5_c00268{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m10_c00268{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m118_c00268{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m112_c00268{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m109_c00268{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00268{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mab_c00268{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00268{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00268{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me_c00268{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00268{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00268{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.me9_c00268{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00268{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m94_c00268{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m117_c00268{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m95_c00268{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00268{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3_c00268{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m90_c00268{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00268{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);}
.m96_c00268{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mad_c00268{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00268{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.me1_c00268{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00268{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m108_c00268{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00268{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mca_c00268{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00268{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00268{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m42_c00268{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m111_c00268{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00268{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m98_c00268{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m116_c00268{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00268{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m102_c00268{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00268{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m48_c00268{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00268{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00268{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00268{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m87_c00268{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m12_c00268{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m2_c00268{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7_c00268{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00268{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m62_c00268{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m78_c00268{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m88_c00268{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m65_c00268{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00268{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.maf_c00268{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00268{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.me4_c00268{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mba_c00268{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m19_c00268{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00268{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m13_c00268{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.md4_c00268{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00268{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.md3_c00268{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m11_c00268{transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00268{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m92_c00268{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00268{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls1_c00268{letter-spacing:0.000000px;}
.ls0_c00268{letter-spacing:90.000000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{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__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00268{word-spacing:-120.000000px;}
.ws0_c00268{word-spacing:-10.912664px;}
.ws9_c00268{word-spacing:-8.168443px;}
.ws1_c00268{word-spacing:-1.250000px;}
.wsa_c00268{word-spacing:0.000000px;}
.ws7_c00268{word-spacing:16.777070px;}
.ws8_c00268{word-spacing:17.856423px;}
.ws3_c00268{word-spacing:29.285714px;}
.ws2_c00268{word-spacing:44.166667px;}
.ws5_c00268{word-spacing:60.000000px;}
.ws4_c00268{word-spacing:180.000000px;}
._0_c00268{margin-left:-90.000000px;}
.fc0_c00268{color:transparent;}
.fs9_c00268{font-size:24.000000px;}
.fs4_c00268{font-size:30.000000px;}
.fs8_c00268{font-size:36.000000px;}
.fs5_c00268{font-size:42.000000px;}
.fs6_c00268{font-size:48.000000px;}
.fs7_c00268{font-size:54.000000px;}
.fs3_c00268{font-size:60.000000px;}
.fs2_c00268{font-size:66.000000px;}
.fs1_c00268{font-size:72.000000px;}
.fs0_c00268{font-size:78.000000px;}
.y0_c00268{bottom:0.000000px;}
.y38_c00268{bottom:185.700000px;}
.y68_c00268{bottom:187.800000px;}
.y37_c00268{bottom:196.650000px;}
.y36_c00268{bottom:196.950000px;}
.y35_c00268{bottom:199.800000px;}
.y66_c00268{bottom:205.200000px;}
.y67_c00268{bottom:205.500000px;}
.y73_c00268{bottom:231.450000px;}
.y34_c00268{bottom:241.500000px;}
.y72_c00268{bottom:249.450000px;}
.y33_c00268{bottom:262.950000px;}
.y71_c00268{bottom:267.150000px;}
.y32_c00268{bottom:280.950000px;}
.y70_c00268{bottom:285.150000px;}
.y31_c00268{bottom:298.650000px;}
.y6f_c00268{bottom:303.000000px;}
.y30_c00268{bottom:316.650000px;}
.y6e_c00268{bottom:320.700000px;}
.y2f_c00268{bottom:334.350000px;}
.y6d_c00268{bottom:338.700000px;}
.y2e_c00268{bottom:352.350000px;}
.y6c_c00268{bottom:356.400000px;}
.y2d_c00268{bottom:370.050000px;}
.y6b_c00268{bottom:374.100000px;}
.y2c_c00268{bottom:387.300000px;}
.y6a_c00268{bottom:391.650000px;}
.y2b_c00268{bottom:405.300000px;}
.y69_c00268{bottom:409.650000px;}
.y2a_c00268{bottom:426.900000px;}
.y65_c00268{bottom:427.350000px;}
.y29_c00268{bottom:444.600000px;}
.y64_c00268{bottom:452.850000px;}
.y4f_c00268{bottom:463.350000px;}
.y63_c00268{bottom:470.850000px;}
.y28_c00268{bottom:475.800000px;}
.y62_c00268{bottom:488.850000px;}
.y27_c00268{bottom:493.500000px;}
.y61_c00268{bottom:506.550000px;}
.y26_c00268{bottom:511.500000px;}
.y60_c00268{bottom:524.250000px;}
.y25_c00268{bottom:529.200000px;}
.y5f_c00268{bottom:542.250000px;}
.y24_c00268{bottom:551.100000px;}
.y5e_c00268{bottom:560.250000px;}
.y23_c00268{bottom:569.400000px;}
.y5d_c00268{bottom:578.250000px;}
.y22_c00268{bottom:587.100000px;}
.y5c_c00268{bottom:596.250000px;}
.y21_c00268{bottom:609.150000px;}
.y5b_c00268{bottom:614.250000px;}
.y20_c00268{bottom:631.050000px;}
.y5a_c00268{bottom:631.950000px;}
.y59_c00268{bottom:649.650000px;}
.y1f_c00268{bottom:653.100000px;}
.y58_c00268{bottom:667.650000px;}
.y1e_c00268{bottom:675.300000px;}
.y57_c00268{bottom:684.900000px;}
.y1d_c00268{bottom:693.300000px;}
.y56_c00268{bottom:702.600000px;}
.y1c_c00268{bottom:715.050000px;}
.y55_c00268{bottom:722.400000px;}
.y1b_c00268{bottom:733.050000px;}
.y54_c00268{bottom:738.300000px;}
.y1a_c00268{bottom:750.300000px;}
.y53_c00268{bottom:756.300000px;}
.y19_c00268{bottom:768.000000px;}
.y52_c00268{bottom:774.000000px;}
.y18_c00268{bottom:785.700000px;}
.y51_c00268{bottom:792.000000px;}
.y17_c00268{bottom:803.700000px;}
.y50_c00268{bottom:809.700000px;}
.y16_c00268{bottom:821.400000px;}
.y4e_c00268{bottom:827.700000px;}
.y15_c00268{bottom:839.100000px;}
.y4d_c00268{bottom:847.500000px;}
.y14_c00268{bottom:861.300000px;}
.y4c_c00268{bottom:862.200000px;}
.y13_c00268{bottom:879.000000px;}
.y4b_c00268{bottom:882.150000px;}
.y4a_c00268{bottom:895.050000px;}
.y12_c00268{bottom:897.000000px;}
.y49_c00268{bottom:910.500000px;}
.y11_c00268{bottom:914.700000px;}
.y48_c00268{bottom:927.750000px;}
.y10_c00268{bottom:932.700000px;}
.y44_c00268{bottom:937.500000px;}
.y47_c00268{bottom:939.300000px;}
.yf_c00268{bottom:950.400000px;}
.y43_c00268{bottom:951.900000px;}
.y46_c00268{bottom:961.950000px;}
.y42_c00268{bottom:966.000000px;}
.y45_c00268{bottom:966.300000px;}
.yd_c00268{bottom:972.300000px;}
.y41_c00268{bottom:982.200000px;}
.yc_c00268{bottom:990.000000px;}
.y40_c00268{bottom:995.550000px;}
.yb_c00268{bottom:1008.000000px;}
.y3f_c00268{bottom:1009.200000px;}
.y3e_c00268{bottom:1024.650000px;}
.ya_c00268{bottom:1026.750000px;}
.ye_c00268{bottom:1033.500000px;}
.y9_c00268{bottom:1033.950000px;}
.y3d_c00268{bottom:1038.300000px;}
.y8_c00268{bottom:1046.100000px;}
.y3c_c00268{bottom:1053.750000px;}
.y7_c00268{bottom:1055.100000px;}
.y3_c00268{bottom:1063.800000px;}
.y6_c00268{bottom:1072.500000px;}
.y5_c00268{bottom:1089.300000px;}
.y3b_c00268{bottom:1090.500000px;}
.y3a_c00268{bottom:1098.750000px;}
.y4_c00268{bottom:1107.300000px;}
.y39_c00268{bottom:1107.750000px;}
.y1_c00268{bottom:1134.300000px;}
.y2_c00268{bottom:1134.600000px;}
.hb_c00268{height:24.000000px;}
.h6_c00268{height:30.000000px;}
.ha_c00268{height:36.000000px;}
.h7_c00268{height:42.000000px;}
.h8_c00268{height:48.000000px;}
.h9_c00268{height:54.000000px;}
.h5_c00268{height:60.000000px;}
.h4_c00268{height:66.000000px;}
.h3_c00268{height:72.000000px;}
.h2_c00268{height:78.000000px;}
.h0_c00268{height:1266.480010px;}
.h1_c00268{height:1266.750000px;}
.w1_c00268{width:961.500000px;}
.w0_c00268{width:961.560058px;}
.x0_c00268{left:0.000000px;}
.x3_c00268{left:71.250000px;}
.x80_c00268{left:72.750000px;}
.x6a_c00268{left:73.800000px;}
.x1d_c00268{left:88.800000px;}
.x48_c00268{left:90.000000px;}
.x13_c00268{left:91.500000px;}
.x82_c00268{left:96.450000px;}
.x85_c00268{left:101.100000px;}
.xb_c00268{left:106.500000px;}
.x27_c00268{left:108.300000px;}
.x5c_c00268{left:109.800000px;}
.x65_c00268{left:111.150000px;}
.x6d_c00268{left:113.850000px;}
.x60_c00268{left:116.400000px;}
.x3a_c00268{left:126.600000px;}
.x1e_c00268{left:129.450000px;}
.x62_c00268{left:131.400000px;}
.x37_c00268{left:132.600000px;}
.x52_c00268{left:134.100000px;}
.x6e_c00268{left:136.200000px;}
.x4_c00268{left:141.450000px;}
.x58_c00268{left:142.500000px;}
.x14_c00268{left:145.050000px;}
.x49_c00268{left:146.850000px;}
.x31_c00268{left:149.250000px;}
.x5a_c00268{left:150.450000px;}
.x12_c00268{left:151.500000px;}
.x1f_c00268{left:154.650000px;}
.x5d_c00268{left:155.850000px;}
.xf_c00268{left:158.100000px;}
.x68_c00268{left:159.150000px;}
.x7a_c00268{left:161.250000px;}
.x28_c00268{left:162.600000px;}
.x16_c00268{left:166.350000px;}
.x74_c00268{left:167.850000px;}
.x73_c00268{left:169.350000px;}
.xc_c00268{left:173.100000px;}
.x2c_c00268{left:175.200000px;}
.x3b_c00268{left:177.300000px;}
.x25_c00268{left:179.700000px;}
.x17_c00268{left:181.500000px;}
.x7f_c00268{left:184.050000px;}
.xd_c00268{left:185.700000px;}
.x45_c00268{left:188.250000px;}
.x83_c00268{left:191.700000px;}
.x2d_c00268{left:193.200000px;}
.x70_c00268{left:194.550000px;}
.x4a_c00268{left:197.250000px;}
.x3c_c00268{left:200.850000px;}
.x5_c00268{left:203.700000px;}
.x32_c00268{left:206.850000px;}
.x26_c00268{left:208.200000px;}
.x5b_c00268{left:211.950000px;}
.x42_c00268{left:213.450000px;}
.x7b_c00268{left:214.500000px;}
.x6c_c00268{left:217.950000px;}
.x4e_c00268{left:219.750000px;}
.x18_c00268{left:221.100000px;}
.x5e_c00268{left:223.350000px;}
.x20_c00268{left:225.150000px;}
.x61_c00268{left:226.950000px;}
.x38_c00268{left:228.000000px;}
.x2e_c00268{left:229.200000px;}
.x53_c00268{left:231.000000px;}
.x33_c00268{left:232.050000px;}
.x21_c00268{left:234.900000px;}
.x29_c00268{left:236.100000px;}
.x66_c00268{left:240.000000px;}
.x77_c00268{left:241.650000px;}
.xe_c00268{left:243.000000px;}
.x59_c00268{left:244.050000px;}
.x4b_c00268{left:246.900000px;}
.x46_c00268{left:247.950000px;}
.x3e_c00268{left:249.900000px;}
.x54_c00268{left:253.350000px;}
.x22_c00268{left:254.400000px;}
.x78_c00268{left:259.350000px;}
.x69_c00268{left:261.300000px;}
.x6_c00268{left:262.350000px;}
.x4f_c00268{left:265.800000px;}
.x7_c00268{left:271.350000px;}
.x19_c00268{left:272.550000px;}
.x71_c00268{left:275.100000px;}
.x3d_c00268{left:277.200000px;}
.x43_c00268{left:280.350000px;}
.x2f_c00268{left:282.450000px;}
.x3f_c00268{left:288.000000px;}
.x34_c00268{left:289.200000px;}
.x57_c00268{left:292.950000px;}
.x63_c00268{left:295.650000px;}
.x84_c00268{left:300.150000px;}
.x4c_c00268{left:303.450000px;}
.x8_c00268{left:307.650000px;}
.x1_c00268{left:311.100000px;}
.x15_c00268{left:313.200000px;}
.x55_c00268{left:315.300000px;}
.x7c_c00268{left:317.100000px;}
.x75_c00268{left:319.050000px;}
.x9_c00268{left:320.550000px;}
.x5f_c00268{left:323.400000px;}
.x79_c00268{left:326.400000px;}
.x23_c00268{left:327.900000px;}
.xa_c00268{left:329.250000px;}
.x64_c00268{left:332.400000px;}
.x6b_c00268{left:334.050000px;}
.x50_c00268{left:340.350000px;}
.x40_c00268{left:342.000000px;}
.x1a_c00268{left:343.800000px;}
.x35_c00268{left:346.500000px;}
.x4d_c00268{left:347.700000px;}
.x44_c00268{left:348.750000px;}
.x47_c00268{left:350.250000px;}
.x41_c00268{left:354.600000px;}
.x7d_c00268{left:356.700000px;}
.x1b_c00268{left:359.250000px;}
.x72_c00268{left:360.750000px;}
.x36_c00268{left:362.700000px;}
.x56_c00268{left:365.400000px;}
.x30_c00268{left:367.350000px;}
.x76_c00268{left:368.400000px;}
.x6f_c00268{left:369.450000px;}
.x81_c00268{left:371.100000px;}
.x2a_c00268{left:372.150000px;}
.x10_c00268{left:374.700000px;}
.x39_c00268{left:378.150000px;}
.x51_c00268{left:379.950000px;}
.x2b_c00268{left:382.950000px;}
.x24_c00268{left:387.600000px;}
.x67_c00268{left:388.800000px;}
.x1c_c00268{left:397.350000px;}
.x7e_c00268{left:400.950000px;}
.x11_c00268{left:403.800000px;}
.x96_c00268{left:426.900000px;}
.x101_c00268{left:428.400000px;}
.xd3_c00268{left:434.550000px;}
.x9b_c00268{left:441.300000px;}
.xc1_c00268{left:442.350000px;}
.x86_c00268{left:444.600000px;}
.xdd_c00268{left:445.950000px;}
.xf1_c00268{left:447.150000px;}
.xa9_c00268{left:456.150000px;}
.xa3_c00268{left:460.800000px;}
.xd7_c00268{left:465.150000px;}
.x111_c00268{left:467.250000px;}
.xe1_c00268{left:469.350000px;}
.xe6_c00268{left:474.150000px;}
.x114_c00268{left:475.650000px;}
.xaa_c00268{left:478.050000px;}
.xf9_c00268{left:479.250000px;}
.x9c_c00268{left:481.650000px;}
.xc9_c00268{left:483.750000px;}
.xf2_c00268{left:484.950000px;}
.x8e_c00268{left:486.750000px;}
.x106_c00268{left:487.800000px;}
.x11b_c00268{left:488.850000px;}
.x102_c00268{left:490.350000px;}
.x118_c00268{left:491.400000px;}
.x97_c00268{left:492.750000px;}
.xc2_c00268{left:495.300000px;}
.x104_c00268{left:496.500000px;}
.x9d_c00268{left:498.900000px;}
.xf7_c00268{left:500.550000px;}
.xbe_c00268{left:502.200000px;}
.xb7_c00268{left:504.000000px;}
.x8c_c00268{left:505.350000px;}
.x119_c00268{left:507.300000px;}
.xed_c00268{left:508.350000px;}
.xab_c00268{left:509.700000px;}
.xb5_c00268{left:512.400000px;}
.xce_c00268{left:515.250000px;}
.xc3_c00268{left:517.950000px;}
.xca_c00268{left:519.300000px;}
.x8f_c00268{left:520.950000px;}
.xae_c00268{left:522.000000px;}
.xf5_c00268{left:524.850000px;}
.x87_c00268{left:527.700000px;}
.x105_c00268{left:528.900000px;}
.xd4_c00268{left:530.700000px;}
.xcb_c00268{left:531.900000px;}
.xba_c00268{left:533.550000px;}
.x9e_c00268{left:534.900000px;}
.x112_c00268{left:537.450000px;}
.xbf_c00268{left:539.250000px;}
.xee_c00268{left:542.250000px;}
.x9f_c00268{left:543.900000px;}
.xcc_c00268{left:548.400000px;}
.x98_c00268{left:550.650000px;}
.x11d_c00268{left:553.050000px;}
.xa4_c00268{left:554.100000px;}
.xac_c00268{left:556.500000px;}
.xaf_c00268{left:557.700000px;}
.xd8_c00268{left:559.200000px;}
.xcf_c00268{left:560.250000px;}
.xc4_c00268{left:562.650000px;}
.xde_c00268{left:564.750000px;}
.xea_c00268{left:570.150000px;}
.x11a_c00268{left:573.150000px;}
.xe7_c00268{left:574.950000px;}
.xb0_c00268{left:577.200000px;}
.xe2_c00268{left:579.150000px;}
.x90_c00268{left:580.350000px;}
.xd5_c00268{left:582.900000px;}
.xcd_c00268{left:584.700000px;}
.xb8_c00268{left:588.300000px;}
.xfe_c00268{left:590.400000px;}
.xa0_c00268{left:592.800000px;}
.xdc_c00268{left:595.500000px;}
.xbb_c00268{left:597.300000px;}
.xe8_c00268{left:600.450000px;}
.xc0_c00268{left:602.550000px;}
.x108_c00268{left:604.050000px;}
.xef_c00268{left:605.550000px;}
.x91_c00268{left:607.350000px;}
.xc5_c00268{left:610.500000px;}
.x10d_c00268{left:612.000000px;}
.xec_c00268{left:614.250000px;}
.x109_c00268{left:615.600000px;}
.xe9_c00268{left:617.400000px;}
.x88_c00268{left:619.500000px;}
.xe3_c00268{left:621.600000px;}
.x115_c00268{left:623.250000px;}
.xbc_c00268{left:624.600000px;}
.x92_c00268{left:626.100000px;}
.x10f_c00268{left:627.450000px;}
.xb1_c00268{left:630.450000px;}
.xd9_c00268{left:635.100000px;}
.xa1_c00268{left:636.750000px;}
.xa5_c00268{left:638.250000px;}
.xd0_c00268{left:643.800000px;}
.xb2_c00268{left:644.850000px;}
.xf8_c00268{left:647.700000px;}
.xa2_c00268{left:651.900000px;}
.x10b_c00268{left:653.100000px;}
.xda_c00268{left:654.150000px;}
.xd6_c00268{left:655.650000px;}
.x103_c00268{left:657.750000px;}
.xb3_c00268{left:659.250000px;}
.xe4_c00268{left:661.950000px;}
.x8d_c00268{left:663.750000px;}
.xc6_c00268{left:664.800000px;}
.xb4_c00268{left:666.150000px;}
.x10e_c00268{left:668.100000px;}
.xf0_c00268{left:669.600000px;}
.x89_c00268{left:670.650000px;}
.x110_c00268{left:671.700000px;}
.x93_c00268{left:674.400000px;}
.x100_c00268{left:675.450000px;}
.xfb_c00268{left:679.050000px;}
.xc7_c00268{left:681.750000px;}
.x99_c00268{left:683.550000px;}
.xa6_c00268{left:686.850000px;}
.xdf_c00268{left:689.250000px;}
.xb6_c00268{left:692.700000px;}
.xad_c00268{left:694.050000px;}
.xf3_c00268{left:695.400000px;}
.xdb_c00268{left:697.050000px;}
.x11c_c00268{left:699.000000px;}
.x113_c00268{left:700.050000px;}
.x10a_c00268{left:702.000000px;}
.xfd_c00268{left:703.650000px;}
.xeb_c00268{left:704.850000px;}
.x10c_c00268{left:707.850000px;}
.xfc_c00268{left:709.350000px;}
.xe5_c00268{left:712.050000px;}
.x94_c00268{left:713.700000px;}
.xb9_c00268{left:715.350000px;}
.xfa_c00268{left:717.000000px;}
.xa7_c00268{left:721.050000px;}
.x8a_c00268{left:722.850000px;}
.x116_c00268{left:730.950000px;}
.x95_c00268{left:732.000000px;}
.x2_c00268{left:734.850000px;}
.xd1_c00268{left:736.350000px;}
.xf6_c00268{left:738.300000px;}
.xc8_c00268{left:740.100000px;}
.x8b_c00268{left:741.150000px;}
.xf4_c00268{left:744.000000px;}
.xe0_c00268{left:745.050000px;}
.x9a_c00268{left:748.050000px;}
.xa8_c00268{left:749.550000px;}
.xbd_c00268{left:751.050000px;}
.xd2_c00268{left:752.550000px;}
.xff_c00268{left:759.900000px;}
.x107_c00268{left:768.600000px;}
.x117_c00268{left:770.250000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls1_c00268{letter-spacing:0.000000pt;}
.ls0_c00268{letter-spacing:80.000000pt;}
.ws6_c00268{word-spacing:-106.666667pt;}
.ws0_c00268{word-spacing:-9.700146pt;}
.ws9_c00268{word-spacing:-7.260839pt;}
.ws1_c00268{word-spacing:-1.111111pt;}
.wsa_c00268{word-spacing:0.000000pt;}
.ws7_c00268{word-spacing:14.912951pt;}
.ws8_c00268{word-spacing:15.872376pt;}
.ws3_c00268{word-spacing:26.031746pt;}
.ws2_c00268{word-spacing:39.259259pt;}
.ws5_c00268{word-spacing:53.333333pt;}
.ws4_c00268{word-spacing:160.000000pt;}
._0_c00268{margin-left:-80.000000pt;}
.fs9_c00268{font-size:21.333333pt;}
.fs4_c00268{font-size:26.666667pt;}
.fs8_c00268{font-size:32.000000pt;}
.fs5_c00268{font-size:37.333333pt;}
.fs6_c00268{font-size:42.666667pt;}
.fs7_c00268{font-size:48.000000pt;}
.fs3_c00268{font-size:53.333333pt;}
.fs2_c00268{font-size:58.666667pt;}
.fs1_c00268{font-size:64.000000pt;}
.fs0_c00268{font-size:69.333333pt;}
.y0_c00268{bottom:0.000000pt;}
.y38_c00268{bottom:165.066667pt;}
.y68_c00268{bottom:166.933333pt;}
.y37_c00268{bottom:174.800000pt;}
.y36_c00268{bottom:175.066667pt;}
.y35_c00268{bottom:177.600000pt;}
.y66_c00268{bottom:182.400000pt;}
.y67_c00268{bottom:182.666667pt;}
.y73_c00268{bottom:205.733333pt;}
.y34_c00268{bottom:214.666667pt;}
.y72_c00268{bottom:221.733333pt;}
.y33_c00268{bottom:233.733333pt;}
.y71_c00268{bottom:237.466667pt;}
.y32_c00268{bottom:249.733333pt;}
.y70_c00268{bottom:253.466667pt;}
.y31_c00268{bottom:265.466667pt;}
.y6f_c00268{bottom:269.333333pt;}
.y30_c00268{bottom:281.466667pt;}
.y6e_c00268{bottom:285.066667pt;}
.y2f_c00268{bottom:297.200000pt;}
.y6d_c00268{bottom:301.066667pt;}
.y2e_c00268{bottom:313.200000pt;}
.y6c_c00268{bottom:316.800000pt;}
.y2d_c00268{bottom:328.933333pt;}
.y6b_c00268{bottom:332.533333pt;}
.y2c_c00268{bottom:344.266667pt;}
.y6a_c00268{bottom:348.133333pt;}
.y2b_c00268{bottom:360.266667pt;}
.y69_c00268{bottom:364.133333pt;}
.y2a_c00268{bottom:379.466667pt;}
.y65_c00268{bottom:379.866667pt;}
.y29_c00268{bottom:395.200000pt;}
.y64_c00268{bottom:402.533333pt;}
.y4f_c00268{bottom:411.866667pt;}
.y63_c00268{bottom:418.533333pt;}
.y28_c00268{bottom:422.933333pt;}
.y62_c00268{bottom:434.533333pt;}
.y27_c00268{bottom:438.666667pt;}
.y61_c00268{bottom:450.266667pt;}
.y26_c00268{bottom:454.666667pt;}
.y60_c00268{bottom:466.000000pt;}
.y25_c00268{bottom:470.400000pt;}
.y5f_c00268{bottom:482.000000pt;}
.y24_c00268{bottom:489.866667pt;}
.y5e_c00268{bottom:498.000000pt;}
.y23_c00268{bottom:506.133333pt;}
.y5d_c00268{bottom:514.000000pt;}
.y22_c00268{bottom:521.866667pt;}
.y5c_c00268{bottom:530.000000pt;}
.y21_c00268{bottom:541.466667pt;}
.y5b_c00268{bottom:546.000000pt;}
.y20_c00268{bottom:560.933333pt;}
.y5a_c00268{bottom:561.733333pt;}
.y59_c00268{bottom:577.466667pt;}
.y1f_c00268{bottom:580.533333pt;}
.y58_c00268{bottom:593.466667pt;}
.y1e_c00268{bottom:600.266667pt;}
.y57_c00268{bottom:608.800000pt;}
.y1d_c00268{bottom:616.266667pt;}
.y56_c00268{bottom:624.533333pt;}
.y1c_c00268{bottom:635.600000pt;}
.y55_c00268{bottom:642.133333pt;}
.y1b_c00268{bottom:651.600000pt;}
.y54_c00268{bottom:656.266667pt;}
.y1a_c00268{bottom:666.933333pt;}
.y53_c00268{bottom:672.266667pt;}
.y19_c00268{bottom:682.666667pt;}
.y52_c00268{bottom:688.000000pt;}
.y18_c00268{bottom:698.400000pt;}
.y51_c00268{bottom:704.000000pt;}
.y17_c00268{bottom:714.400000pt;}
.y50_c00268{bottom:719.733333pt;}
.y16_c00268{bottom:730.133333pt;}
.y4e_c00268{bottom:735.733333pt;}
.y15_c00268{bottom:745.866667pt;}
.y4d_c00268{bottom:753.333333pt;}
.y14_c00268{bottom:765.600000pt;}
.y4c_c00268{bottom:766.400000pt;}
.y13_c00268{bottom:781.333333pt;}
.y4b_c00268{bottom:784.133333pt;}
.y4a_c00268{bottom:795.600000pt;}
.y12_c00268{bottom:797.333333pt;}
.y49_c00268{bottom:809.333333pt;}
.y11_c00268{bottom:813.066667pt;}
.y48_c00268{bottom:824.666667pt;}
.y10_c00268{bottom:829.066667pt;}
.y44_c00268{bottom:833.333333pt;}
.y47_c00268{bottom:834.933333pt;}
.yf_c00268{bottom:844.800000pt;}
.y43_c00268{bottom:846.133333pt;}
.y46_c00268{bottom:855.066667pt;}
.y42_c00268{bottom:858.666667pt;}
.y45_c00268{bottom:858.933333pt;}
.yd_c00268{bottom:864.266667pt;}
.y41_c00268{bottom:873.066667pt;}
.yc_c00268{bottom:880.000000pt;}
.y40_c00268{bottom:884.933333pt;}
.yb_c00268{bottom:896.000000pt;}
.y3f_c00268{bottom:897.066667pt;}
.y3e_c00268{bottom:910.800000pt;}
.ya_c00268{bottom:912.666667pt;}
.ye_c00268{bottom:918.666667pt;}
.y9_c00268{bottom:919.066667pt;}
.y3d_c00268{bottom:922.933333pt;}
.y8_c00268{bottom:929.866667pt;}
.y3c_c00268{bottom:936.666667pt;}
.y7_c00268{bottom:937.866667pt;}
.y3_c00268{bottom:945.600000pt;}
.y6_c00268{bottom:953.333333pt;}
.y5_c00268{bottom:968.266667pt;}
.y3b_c00268{bottom:969.333333pt;}
.y3a_c00268{bottom:976.666667pt;}
.y4_c00268{bottom:984.266667pt;}
.y39_c00268{bottom:984.666667pt;}
.y1_c00268{bottom:1008.266667pt;}
.y2_c00268{bottom:1008.533333pt;}
.hb_c00268{height:21.333333pt;}
.h6_c00268{height:26.666667pt;}
.ha_c00268{height:32.000000pt;}
.h7_c00268{height:37.333333pt;}
.h8_c00268{height:42.666667pt;}
.h9_c00268{height:48.000000pt;}
.h5_c00268{height:53.333333pt;}
.h4_c00268{height:58.666667pt;}
.h3_c00268{height:64.000000pt;}
.h2_c00268{height:69.333333pt;}
.h0_c00268{height:1125.760009pt;}
.h1_c00268{height:1126.000000pt;}
.w1_c00268{width:854.666667pt;}
.w0_c00268{width:854.720052pt;}
.x0_c00268{left:0.000000pt;}
.x3_c00268{left:63.333333pt;}
.x80_c00268{left:64.666667pt;}
.x6a_c00268{left:65.600000pt;}
.x1d_c00268{left:78.933333pt;}
.x48_c00268{left:80.000000pt;}
.x13_c00268{left:81.333333pt;}
.x82_c00268{left:85.733333pt;}
.x85_c00268{left:89.866667pt;}
.xb_c00268{left:94.666667pt;}
.x27_c00268{left:96.266667pt;}
.x5c_c00268{left:97.600000pt;}
.x65_c00268{left:98.800000pt;}
.x6d_c00268{left:101.200000pt;}
.x60_c00268{left:103.466667pt;}
.x3a_c00268{left:112.533333pt;}
.x1e_c00268{left:115.066667pt;}
.x62_c00268{left:116.800000pt;}
.x37_c00268{left:117.866667pt;}
.x52_c00268{left:119.200000pt;}
.x6e_c00268{left:121.066667pt;}
.x4_c00268{left:125.733333pt;}
.x58_c00268{left:126.666667pt;}
.x14_c00268{left:128.933333pt;}
.x49_c00268{left:130.533333pt;}
.x31_c00268{left:132.666667pt;}
.x5a_c00268{left:133.733333pt;}
.x12_c00268{left:134.666667pt;}
.x1f_c00268{left:137.466667pt;}
.x5d_c00268{left:138.533333pt;}
.xf_c00268{left:140.533333pt;}
.x68_c00268{left:141.466667pt;}
.x7a_c00268{left:143.333333pt;}
.x28_c00268{left:144.533333pt;}
.x16_c00268{left:147.866667pt;}
.x74_c00268{left:149.200000pt;}
.x73_c00268{left:150.533333pt;}
.xc_c00268{left:153.866667pt;}
.x2c_c00268{left:155.733333pt;}
.x3b_c00268{left:157.600000pt;}
.x25_c00268{left:159.733333pt;}
.x17_c00268{left:161.333333pt;}
.x7f_c00268{left:163.600000pt;}
.xd_c00268{left:165.066667pt;}
.x45_c00268{left:167.333333pt;}
.x83_c00268{left:170.400000pt;}
.x2d_c00268{left:171.733333pt;}
.x70_c00268{left:172.933333pt;}
.x4a_c00268{left:175.333333pt;}
.x3c_c00268{left:178.533333pt;}
.x5_c00268{left:181.066667pt;}
.x32_c00268{left:183.866667pt;}
.x26_c00268{left:185.066667pt;}
.x5b_c00268{left:188.400000pt;}
.x42_c00268{left:189.733333pt;}
.x7b_c00268{left:190.666667pt;}
.x6c_c00268{left:193.733333pt;}
.x4e_c00268{left:195.333333pt;}
.x18_c00268{left:196.533333pt;}
.x5e_c00268{left:198.533333pt;}
.x20_c00268{left:200.133333pt;}
.x61_c00268{left:201.733333pt;}
.x38_c00268{left:202.666667pt;}
.x2e_c00268{left:203.733333pt;}
.x53_c00268{left:205.333333pt;}
.x33_c00268{left:206.266667pt;}
.x21_c00268{left:208.800000pt;}
.x29_c00268{left:209.866667pt;}
.x66_c00268{left:213.333333pt;}
.x77_c00268{left:214.800000pt;}
.xe_c00268{left:216.000000pt;}
.x59_c00268{left:216.933333pt;}
.x4b_c00268{left:219.466667pt;}
.x46_c00268{left:220.400000pt;}
.x3e_c00268{left:222.133333pt;}
.x54_c00268{left:225.200000pt;}
.x22_c00268{left:226.133333pt;}
.x78_c00268{left:230.533333pt;}
.x69_c00268{left:232.266667pt;}
.x6_c00268{left:233.200000pt;}
.x4f_c00268{left:236.266667pt;}
.x7_c00268{left:241.200000pt;}
.x19_c00268{left:242.266667pt;}
.x71_c00268{left:244.533333pt;}
.x3d_c00268{left:246.400000pt;}
.x43_c00268{left:249.200000pt;}
.x2f_c00268{left:251.066667pt;}
.x3f_c00268{left:256.000000pt;}
.x34_c00268{left:257.066667pt;}
.x57_c00268{left:260.400000pt;}
.x63_c00268{left:262.800000pt;}
.x84_c00268{left:266.800000pt;}
.x4c_c00268{left:269.733333pt;}
.x8_c00268{left:273.466667pt;}
.x1_c00268{left:276.533333pt;}
.x15_c00268{left:278.400000pt;}
.x55_c00268{left:280.266667pt;}
.x7c_c00268{left:281.866667pt;}
.x75_c00268{left:283.600000pt;}
.x9_c00268{left:284.933333pt;}
.x5f_c00268{left:287.466667pt;}
.x79_c00268{left:290.133333pt;}
.x23_c00268{left:291.466667pt;}
.xa_c00268{left:292.666667pt;}
.x64_c00268{left:295.466667pt;}
.x6b_c00268{left:296.933333pt;}
.x50_c00268{left:302.533333pt;}
.x40_c00268{left:304.000000pt;}
.x1a_c00268{left:305.600000pt;}
.x35_c00268{left:308.000000pt;}
.x4d_c00268{left:309.066667pt;}
.x44_c00268{left:310.000000pt;}
.x47_c00268{left:311.333333pt;}
.x41_c00268{left:315.200000pt;}
.x7d_c00268{left:317.066667pt;}
.x1b_c00268{left:319.333333pt;}
.x72_c00268{left:320.666667pt;}
.x36_c00268{left:322.400000pt;}
.x56_c00268{left:324.800000pt;}
.x30_c00268{left:326.533333pt;}
.x76_c00268{left:327.466667pt;}
.x6f_c00268{left:328.400000pt;}
.x81_c00268{left:329.866667pt;}
.x2a_c00268{left:330.800000pt;}
.x10_c00268{left:333.066667pt;}
.x39_c00268{left:336.133333pt;}
.x51_c00268{left:337.733333pt;}
.x2b_c00268{left:340.400000pt;}
.x24_c00268{left:344.533333pt;}
.x67_c00268{left:345.600000pt;}
.x1c_c00268{left:353.200000pt;}
.x7e_c00268{left:356.400000pt;}
.x11_c00268{left:358.933333pt;}
.x96_c00268{left:379.466667pt;}
.x101_c00268{left:380.800000pt;}
.xd3_c00268{left:386.266667pt;}
.x9b_c00268{left:392.266667pt;}
.xc1_c00268{left:393.200000pt;}
.x86_c00268{left:395.200000pt;}
.xdd_c00268{left:396.400000pt;}
.xf1_c00268{left:397.466667pt;}
.xa9_c00268{left:405.466667pt;}
.xa3_c00268{left:409.600000pt;}
.xd7_c00268{left:413.466667pt;}
.x111_c00268{left:415.333333pt;}
.xe1_c00268{left:417.200000pt;}
.xe6_c00268{left:421.466667pt;}
.x114_c00268{left:422.800000pt;}
.xaa_c00268{left:424.933333pt;}
.xf9_c00268{left:426.000000pt;}
.x9c_c00268{left:428.133333pt;}
.xc9_c00268{left:430.000000pt;}
.xf2_c00268{left:431.066667pt;}
.x8e_c00268{left:432.666667pt;}
.x106_c00268{left:433.600000pt;}
.x11b_c00268{left:434.533333pt;}
.x102_c00268{left:435.866667pt;}
.x118_c00268{left:436.800000pt;}
.x97_c00268{left:438.000000pt;}
.xc2_c00268{left:440.266667pt;}
.x104_c00268{left:441.333333pt;}
.x9d_c00268{left:443.466667pt;}
.xf7_c00268{left:444.933333pt;}
.xbe_c00268{left:446.400000pt;}
.xb7_c00268{left:448.000000pt;}
.x8c_c00268{left:449.200000pt;}
.x119_c00268{left:450.933333pt;}
.xed_c00268{left:451.866667pt;}
.xab_c00268{left:453.066667pt;}
.xb5_c00268{left:455.466667pt;}
.xce_c00268{left:458.000000pt;}
.xc3_c00268{left:460.400000pt;}
.xca_c00268{left:461.600000pt;}
.x8f_c00268{left:463.066667pt;}
.xae_c00268{left:464.000000pt;}
.xf5_c00268{left:466.533333pt;}
.x87_c00268{left:469.066667pt;}
.x105_c00268{left:470.133333pt;}
.xd4_c00268{left:471.733333pt;}
.xcb_c00268{left:472.800000pt;}
.xba_c00268{left:474.266667pt;}
.x9e_c00268{left:475.466667pt;}
.x112_c00268{left:477.733333pt;}
.xbf_c00268{left:479.333333pt;}
.xee_c00268{left:482.000000pt;}
.x9f_c00268{left:483.466667pt;}
.xcc_c00268{left:487.466667pt;}
.x98_c00268{left:489.466667pt;}
.x11d_c00268{left:491.600000pt;}
.xa4_c00268{left:492.533333pt;}
.xac_c00268{left:494.666667pt;}
.xaf_c00268{left:495.733333pt;}
.xd8_c00268{left:497.066667pt;}
.xcf_c00268{left:498.000000pt;}
.xc4_c00268{left:500.133333pt;}
.xde_c00268{left:502.000000pt;}
.xea_c00268{left:506.800000pt;}
.x11a_c00268{left:509.466667pt;}
.xe7_c00268{left:511.066667pt;}
.xb0_c00268{left:513.066667pt;}
.xe2_c00268{left:514.800000pt;}
.x90_c00268{left:515.866667pt;}
.xd5_c00268{left:518.133333pt;}
.xcd_c00268{left:519.733333pt;}
.xb8_c00268{left:522.933333pt;}
.xfe_c00268{left:524.800000pt;}
.xa0_c00268{left:526.933333pt;}
.xdc_c00268{left:529.333333pt;}
.xbb_c00268{left:530.933333pt;}
.xe8_c00268{left:533.733333pt;}
.xc0_c00268{left:535.600000pt;}
.x108_c00268{left:536.933333pt;}
.xef_c00268{left:538.266667pt;}
.x91_c00268{left:539.866667pt;}
.xc5_c00268{left:542.666667pt;}
.x10d_c00268{left:544.000000pt;}
.xec_c00268{left:546.000000pt;}
.x109_c00268{left:547.200000pt;}
.xe9_c00268{left:548.800000pt;}
.x88_c00268{left:550.666667pt;}
.xe3_c00268{left:552.533333pt;}
.x115_c00268{left:554.000000pt;}
.xbc_c00268{left:555.200000pt;}
.x92_c00268{left:556.533333pt;}
.x10f_c00268{left:557.733333pt;}
.xb1_c00268{left:560.400000pt;}
.xd9_c00268{left:564.533333pt;}
.xa1_c00268{left:566.000000pt;}
.xa5_c00268{left:567.333333pt;}
.xd0_c00268{left:572.266667pt;}
.xb2_c00268{left:573.200000pt;}
.xf8_c00268{left:575.733333pt;}
.xa2_c00268{left:579.466667pt;}
.x10b_c00268{left:580.533333pt;}
.xda_c00268{left:581.466667pt;}
.xd6_c00268{left:582.800000pt;}
.x103_c00268{left:584.666667pt;}
.xb3_c00268{left:586.000000pt;}
.xe4_c00268{left:588.400000pt;}
.x8d_c00268{left:590.000000pt;}
.xc6_c00268{left:590.933333pt;}
.xb4_c00268{left:592.133333pt;}
.x10e_c00268{left:593.866667pt;}
.xf0_c00268{left:595.200000pt;}
.x89_c00268{left:596.133333pt;}
.x110_c00268{left:597.066667pt;}
.x93_c00268{left:599.466667pt;}
.x100_c00268{left:600.400000pt;}
.xfb_c00268{left:603.600000pt;}
.xc7_c00268{left:606.000000pt;}
.x99_c00268{left:607.600000pt;}
.xa6_c00268{left:610.533333pt;}
.xdf_c00268{left:612.666667pt;}
.xb6_c00268{left:615.733333pt;}
.xad_c00268{left:616.933333pt;}
.xf3_c00268{left:618.133333pt;}
.xdb_c00268{left:619.600000pt;}
.x11c_c00268{left:621.333333pt;}
.x113_c00268{left:622.266667pt;}
.x10a_c00268{left:624.000000pt;}
.xfd_c00268{left:625.466667pt;}
.xeb_c00268{left:626.533333pt;}
.x10c_c00268{left:629.200000pt;}
.xfc_c00268{left:630.533333pt;}
.xe5_c00268{left:632.933333pt;}
.x94_c00268{left:634.400000pt;}
.xb9_c00268{left:635.866667pt;}
.xfa_c00268{left:637.333333pt;}
.xa7_c00268{left:640.933333pt;}
.x8a_c00268{left:642.533333pt;}
.x116_c00268{left:649.733333pt;}
.x95_c00268{left:650.666667pt;}
.x2_c00268{left:653.200000pt;}
.xd1_c00268{left:654.533333pt;}
.xf6_c00268{left:656.266667pt;}
.xc8_c00268{left:657.866667pt;}
.x8b_c00268{left:658.800000pt;}
.xf4_c00268{left:661.333333pt;}
.xe0_c00268{left:662.266667pt;}
.x9a_c00268{left:664.933333pt;}
.xa8_c00268{left:666.266667pt;}
.xbd_c00268{left:667.600000pt;}
.xd2_c00268{left:668.933333pt;}
.xff_c00268{left:675.466667pt;}
.x107_c00268{left:683.200000pt;}
.x117_c00268{left:684.666667pt;}
}





/* 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_c00269 {
    display:none;
  }
  .loading-indicator_c00269.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00269 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_c00269 { 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_c00269" -> "#page-container .classname_c00269")
 */
.pf_c00269 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00269 { /* 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_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00269 { /* 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_c00269 { /* 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_c00269 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00269 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00269 {overflow:visible;}
  }
}
.c_c00269 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00269 { /* 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_c00269:after { /* webkit #35443 */
  content: '';
}
.t_c00269:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00269 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 */
}
.__c00269 { /* 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_c00269 { /* info for Javascript */
  display:none;
}
.l_c00269 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00269 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00269 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00269: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_c00269 {
    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_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00269.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_c00269 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00269;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.000000;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;}
.m103_c00269{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mff_c00269{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00269{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00269{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00269{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00269{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m78_c00269{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.me0_c00269{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00269{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m108_c00269{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m10_c00269{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me2_c00269{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m51_c00269{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m72_c00269{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me1_c00269{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.me_c00269{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00269{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m83_c00269{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m106_c00269{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.md2_c00269{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mca_c00269{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m57_c00269{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m96_c00269{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m21_c00269{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00269{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00269{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00269{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m100_c00269{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00269{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.me8_c00269{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00269{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.md5_c00269{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m102_c00269{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m12_c00269{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md4_c00269{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00269{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m31_c00269{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00269{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m59_c00269{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m40_c00269{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m86_c00269{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m27_c00269{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00269{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3_c00269{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00269{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00269{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m110_c00269{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m84_c00269{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00269{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m101_c00269{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m25_c00269{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00269{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00269{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m114_c00269{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00269{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.maf_c00269{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m112_c00269{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m107_c00269{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m79_c00269{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m23_c00269{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.me9_c00269{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00269{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m17_c00269{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m47_c00269{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00269{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m28_c00269{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m49_c00269{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me3_c00269{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m88_c00269{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m37_c00269{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mea_c00269{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m0_c00269{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00269{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00269{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m54_c00269{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00269{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00269{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m53_c00269{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mac_c00269{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00269{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me7_c00269{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m36_c00269{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00269{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00269{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00269{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m70_c00269{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m22_c00269{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m41_c00269{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m30_c00269{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m11_c00269{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00269{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m71_c00269{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m8_c00269{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m87_c00269{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m93_c00269{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m89_c00269{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00269{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00269{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6_c00269{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m82_c00269{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00269{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m80_c00269{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00269{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00269{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00269{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00269{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md_c00269{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00269{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md6_c00269{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00269{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.meb_c00269{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m18_c00269{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00269{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00269{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00269{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m74_c00269{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m32_c00269{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m99_c00269{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m105_c00269{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00269{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00269{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m90_c00269{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m91_c00269{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00269{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m60_c00269{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma_c00269{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00269{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m4_c00269{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00269{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00269{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m111_c00269{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m94_c00269{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00269{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m45_c00269{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00269{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00269{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m104_c00269{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00269{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m46_c00269{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9_c00269{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00269{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00269{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m26_c00269{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00269{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mab_c00269{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00269{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00269{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00269{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m35_c00269{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00269{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00269{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00269{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m43_c00269{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb_c00269{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.med_c00269{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m109_c00269{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md1_c00269{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00269{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc_c00269{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mce_c00269{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.maa_c00269{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00269{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m34_c00269{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00269{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00269{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00269{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m63_c00269{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00269{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00269{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00269{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00269{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m77_c00269{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.md0_c00269{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m50_c00269{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00269{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf_c00269{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00269{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m38_c00269{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m20_c00269{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m19_c00269{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00269{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m97_c00269{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m56_c00269{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m92_c00269{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00269{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00269{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mde_c00269{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.md3_c00269{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m14_c00269{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m81_c00269{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m98_c00269{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m13_c00269{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m29_c00269{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m85_c00269{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00269{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m75_c00269{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m64_c00269{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00269{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00269{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00269{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00269{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m16_c00269{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m39_c00269{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mba_c00269{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00269{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00269{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00269{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m66_c00269{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00269{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00269{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m24_c00269{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00269{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00269{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00269{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mef_c00269{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m95_c00269{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00269{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m68_c00269{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mee_c00269{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m113_c00269{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mec_c00269{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00269{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m52_c00269{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00269{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mae_c00269{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m73_c00269{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00269{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00269{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m58_c00269{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);}
.m69_c00269{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00269{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00269{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00269{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m67_c00269{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m76_c00269{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00269{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md7_c00269{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00269{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m15_c00269{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m55_c00269{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00269{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00269{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00269{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00269{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00269{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00269{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00269{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00269{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m65_c00269{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00269{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00269{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00269{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m33_c00269{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00269{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00269{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00269{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00269{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m44_c00269{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00269{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7_c00269{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00269{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m42_c00269{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mad_c00269{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m61_c00269{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m48_c00269{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00269{transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);}
.md8_c00269{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00269{transform:matrix(0.347000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347000,0.000000,0.000000,0.250000,0,0);}
.mda_c00269{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.me6_c00269{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00269{transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);}
.md9_c00269{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.me5_c00269{transform:matrix(0.472000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472000,0.000000,0.000000,0.250000,0,0);}
.me4_c00269{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{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__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00269{word-spacing:-1.547619px;}
.ws6_c00269{word-spacing:0.000000px;}
.ws2_c00269{word-spacing:0.214537px;}
.ws0_c00269{word-spacing:0.283019px;}
.ws4_c00269{word-spacing:5.619946px;}
.ws5_c00269{word-spacing:13.006873px;}
.ws3_c00269{word-spacing:52.090909px;}
._0_c00269{width:176.181818px;}
.fc0_c00269{color:transparent;}
.fs7_c00269{font-size:30.000000px;}
.fs6_c00269{font-size:48.000000px;}
.fs5_c00269{font-size:54.000000px;}
.fs3_c00269{font-size:60.000000px;}
.fs2_c00269{font-size:66.000000px;}
.fs1_c00269{font-size:72.000000px;}
.fs4_c00269{font-size:84.000000px;}
.fs0_c00269{font-size:108.000000px;}
.y0_c00269{bottom:0.000000px;}
.y65_c00269{bottom:189.000000px;}
.y35_c00269{bottom:193.950000px;}
.y64_c00269{bottom:203.400000px;}
.y34_c00269{bottom:207.300000px;}
.y33_c00269{bottom:222.450000px;}
.y32_c00269{bottom:235.800000px;}
.y63_c00269{bottom:246.300000px;}
.y31_c00269{bottom:250.950000px;}
.y30_c00269{bottom:263.850000px;}
.y62_c00269{bottom:264.600000px;}
.y2f_c00269{bottom:279.750000px;}
.y61_c00269{bottom:282.150000px;}
.y2e_c00269{bottom:293.850000px;}
.y60_c00269{bottom:300.150000px;}
.y2d_c00269{bottom:306.750000px;}
.y5f_c00269{bottom:317.850000px;}
.y2c_c00269{bottom:321.450000px;}
.y2b_c00269{bottom:335.550000px;}
.y5e_c00269{bottom:336.000000px;}
.y2a_c00269{bottom:349.950000px;}
.y5d_c00269{bottom:354.300000px;}
.y29_c00269{bottom:363.600000px;}
.y5c_c00269{bottom:372.150000px;}
.y28_c00269{bottom:378.000000px;}
.y5b_c00269{bottom:389.850000px;}
.y27_c00269{bottom:392.400000px;}
.y5a_c00269{bottom:411.450000px;}
.y26_c00269{bottom:429.750000px;}
.y59_c00269{bottom:433.500000px;}
.y25_c00269{bottom:447.750000px;}
.y58_c00269{bottom:451.500000px;}
.y24_c00269{bottom:465.450000px;}
.y57_c00269{bottom:473.400000px;}
.y23_c00269{bottom:486.300000px;}
.y56_c00269{bottom:491.400000px;}
.y22_c00269{bottom:505.050000px;}
.y55_c00269{bottom:513.300000px;}
.y21_c00269{bottom:523.050000px;}
.y54_c00269{bottom:535.650000px;}
.y20_c00269{bottom:543.600000px;}
.y53_c00269{bottom:553.350000px;}
.y1f_c00269{bottom:562.350000px;}
.y52_c00269{bottom:575.550000px;}
.y1e_c00269{bottom:579.900000px;}
.y51_c00269{bottom:593.550000px;}
.y1d_c00269{bottom:597.900000px;}
.y50_c00269{bottom:611.550000px;}
.y1c_c00269{bottom:619.950000px;}
.y4f_c00269{bottom:629.250000px;}
.y1b_c00269{bottom:637.200000px;}
.y4e_c00269{bottom:647.250000px;}
.y1a_c00269{bottom:655.200000px;}
.y4d_c00269{bottom:664.950000px;}
.y19_c00269{bottom:673.200000px;}
.y4c_c00269{bottom:682.950000px;}
.y18_c00269{bottom:691.200000px;}
.y4b_c00269{bottom:705.300000px;}
.y17_c00269{bottom:709.200000px;}
.y4a_c00269{bottom:723.300000px;}
.y16_c00269{bottom:726.900000px;}
.y49_c00269{bottom:741.300000px;}
.y15_c00269{bottom:748.800000px;}
.y48_c00269{bottom:763.500000px;}
.y14_c00269{bottom:775.050000px;}
.y47_c00269{bottom:781.200000px;}
.y46_c00269{bottom:799.200000px;}
.y13_c00269{bottom:809.100000px;}
.y45_c00269{bottom:817.200000px;}
.y12_c00269{bottom:828.900000px;}
.y44_c00269{bottom:839.850000px;}
.y43_c00269{bottom:844.950000px;}
.y11_c00269{bottom:846.900000px;}
.y42_c00269{bottom:853.200000px;}
.y41_c00269{bottom:864.300000px;}
.y10_c00269{bottom:864.600000px;}
.y40_c00269{bottom:873.000000px;}
.yf_c00269{bottom:882.300000px;}
.ye_c00269{bottom:898.350000px;}
.y3f_c00269{bottom:903.600000px;}
.yd_c00269{bottom:918.450000px;}
.y3e_c00269{bottom:921.900000px;}
.yc_c00269{bottom:935.700000px;}
.yb_c00269{bottom:953.700000px;}
.y3d_c00269{bottom:957.300000px;}
.ya_c00269{bottom:971.700000px;}
.y9_c00269{bottom:986.850000px;}
.y3c_c00269{bottom:992.550000px;}
.y8_c00269{bottom:1006.650000px;}
.y3b_c00269{bottom:1011.300000px;}
.y7_c00269{bottom:1024.350000px;}
.y3a_c00269{bottom:1029.300000px;}
.y6_c00269{bottom:1042.350000px;}
.y39_c00269{bottom:1058.100000px;}
.y5_c00269{bottom:1060.050000px;}
.y38_c00269{bottom:1077.450000px;}
.y4_c00269{bottom:1078.050000px;}
.y3_c00269{bottom:1095.750000px;}
.y37_c00269{bottom:1098.750000px;}
.y2_c00269{bottom:1113.450000px;}
.y36_c00269{bottom:1117.050000px;}
.y1_c00269{bottom:1141.500000px;}
.h9_c00269{height:30.000000px;}
.h8_c00269{height:48.000000px;}
.h7_c00269{height:54.000000px;}
.h5_c00269{height:60.000000px;}
.h4_c00269{height:66.000000px;}
.h3_c00269{height:72.000000px;}
.h6_c00269{height:84.000000px;}
.h2_c00269{height:108.000000px;}
.h0_c00269{height:1273.320007px;}
.h1_c00269{height:1273.500000px;}
.w1_c00269{width:961.500000px;}
.w0_c00269{width:961.560058px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:198.750000px;}
.x5f_c00269{left:204.450000px;}
.x97_c00269{left:206.100000px;}
.xa0_c00269{left:208.650000px;}
.x70_c00269{left:210.750000px;}
.x62_c00269{left:213.750000px;}
.x3_c00269{left:216.000000px;}
.x11_c00269{left:217.200000px;}
.x54_c00269{left:218.250000px;}
.x65_c00269{left:220.200000px;}
.x7f_c00269{left:221.400000px;}
.x87_c00269{left:222.900000px;}
.xa4_c00269{left:225.300000px;}
.x5c_c00269{left:230.400000px;}
.x34_c00269{left:234.750000px;}
.x20_c00269{left:237.000000px;}
.x7a_c00269{left:238.800000px;}
.x39_c00269{left:240.600000px;}
.x66_c00269{left:242.550000px;}
.x8d_c00269{left:244.050000px;}
.x9a_c00269{left:246.600000px;}
.xa2_c00269{left:247.650000px;}
.x89_c00269{left:248.700000px;}
.x55_c00269{left:250.650000px;}
.x71_c00269{left:251.700000px;}
.x91_c00269{left:254.400000px;}
.x5d_c00269{left:255.600000px;}
.x77_c00269{left:257.550000px;}
.x35_c00269{left:259.950000px;}
.x4b_c00269{left:261.300000px;}
.xa1_c00269{left:265.200000px;}
.x9b_c00269{left:266.700000px;}
.x12_c00269{left:268.350000px;}
.x4_c00269{left:270.000000px;}
.xa_c00269{left:271.350000px;}
.x8e_c00269{left:273.150000px;}
.xa5_c00269{left:275.100000px;}
.x78_c00269{left:278.400000px;}
.x56_c00269{left:279.750000px;}
.x13_c00269{left:284.850000px;}
.x21_c00269{left:286.650000px;}
.x1a_c00269{left:290.100000px;}
.x40_c00269{left:291.900000px;}
.x6c_c00269{left:294.450000px;}
.x27_c00269{left:295.950000px;}
.x88_c00269{left:297.750000px;}
.x51_c00269{left:299.250000px;}
.x7d_c00269{left:300.600000px;}
.x32_c00269{left:301.950000px;}
.xb_c00269{left:304.050000px;}
.x83_c00269{left:306.300000px;}
.x2d_c00269{left:308.100000px;}
.x92_c00269{left:309.450000px;}
.x6d_c00269{left:310.950000px;}
.x41_c00269{left:312.750000px;}
.x45_c00269{left:315.150000px;}
.x67_c00269{left:316.350000px;}
.x80_c00269{left:318.600000px;}
.x1b_c00269{left:319.950000px;}
.x7e_c00269{left:321.450000px;}
.xa3_c00269{left:324.300000px;}
.x5_c00269{left:325.800000px;}
.x33_c00269{left:327.450000px;}
.x3a_c00269{left:328.800000px;}
.x28_c00269{left:330.150000px;}
.x4c_c00269{left:331.800000px;}
.x9c_c00269{left:334.800000px;}
.x8a_c00269{left:338.700000px;}
.x95_c00269{left:340.350000px;}
.x84_c00269{left:341.550000px;}
.x22_c00269{left:343.500000px;}
.x98_c00269{left:345.300000px;}
.x29_c00269{left:346.650000px;}
.x6_c00269{left:347.700000px;}
.x52_c00269{left:348.900000px;}
.xc_c00269{left:351.150000px;}
.x14_c00269{left:354.750000px;}
.x3b_c00269{left:355.800000px;}
.x81_c00269{left:357.900000px;}
.x46_c00269{left:359.400000px;}
.x85_c00269{left:361.050000px;}
.x79_c00269{left:363.300000px;}
.x2e_c00269{left:365.700000px;}
.x36_c00269{left:367.350000px;}
.x23_c00269{left:369.450000px;}
.x42_c00269{left:371.400000px;}
.x68_c00269{left:373.950000px;}
.x1c_c00269{left:376.050000px;}
.x15_c00269{left:378.150000px;}
.x47_c00269{left:380.250000px;}
.x3c_c00269{left:383.100000px;}
.x72_c00269{left:386.100000px;}
.xa6_c00269{left:387.450000px;}
.x5e_c00269{left:388.800000px;}
.x37_c00269{left:390.750000px;}
.x48_c00269{left:391.800000px;}
.x59_c00269{left:392.850000px;}
.x4d_c00269{left:394.500000px;}
.x1d_c00269{left:397.950000px;}
.xd_c00269{left:399.750000px;}
.x2a_c00269{left:403.500000px;}
.x7_c00269{left:404.550000px;}
.x63_c00269{left:406.350000px;}
.x57_c00269{left:408.150000px;}
.x8b_c00269{left:409.950000px;}
.x73_c00269{left:413.100000px;}
.x5a_c00269{left:415.950000px;}
.x60_c00269{left:418.950000px;}
.x1e_c00269{left:421.350000px;}
.x74_c00269{left:423.150000px;}
.x16_c00269{left:428.250000px;}
.x4e_c00269{left:429.750000px;}
.x69_c00269{left:431.250000px;}
.x3d_c00269{left:432.750000px;}
.x2f_c00269{left:434.400000px;}
.x2b_c00269{left:436.200000px;}
.x2_c00269{left:437.850000px;}
.x24_c00269{left:439.650000px;}
.x6a_c00269{left:441.000000px;}
.x17_c00269{left:442.650000px;}
.xe_c00269{left:444.000000px;}
.x4f_c00269{left:447.750000px;}
.x75_c00269{left:450.150000px;}
.x99_c00269{left:451.800000px;}
.x7b_c00269{left:453.900000px;}
.xf_c00269{left:456.300000px;}
.x2c_c00269{left:458.550000px;}
.x25_c00269{left:461.250000px;}
.x6e_c00269{left:462.750000px;}
.x94_c00269{left:464.400000px;}
.x18_c00269{left:465.750000px;}
.x30_c00269{left:467.850000px;}
.x38_c00269{left:469.650000px;}
.x8c_c00269{left:470.850000px;}
.x8_c00269{left:474.000000px;}
.x1f_c00269{left:475.650000px;}
.x58_c00269{left:477.300000px;}
.x49_c00269{left:478.950000px;}
.x43_c00269{left:480.000000px;}
.x93_c00269{left:481.800000px;}
.x53_c00269{left:483.600000px;}
.x26_c00269{left:486.450000px;}
.x3e_c00269{left:488.250000px;}
.x64_c00269{left:489.450000px;}
.x7c_c00269{left:491.400000px;}
.x31_c00269{left:492.750000px;}
.x9f_c00269{left:494.250000px;}
.x9d_c00269{left:495.300000px;}
.x8f_c00269{left:497.400000px;}
.x44_c00269{left:498.750000px;}
.x86_c00269{left:500.550000px;}
.x9_c00269{left:502.500000px;}
.x6f_c00269{left:504.150000px;}
.x61_c00269{left:505.350000px;}
.x3f_c00269{left:506.550000px;}
.x82_c00269{left:508.650000px;}
.x50_c00269{left:509.700000px;}
.x19_c00269{left:511.800000px;}
.x4a_c00269{left:513.900000px;}
.x6b_c00269{left:520.500000px;}
.x9e_c00269{left:523.050000px;}
.x5b_c00269{left:524.700000px;}
.x10_c00269{left:527.550000px;}
.x96_c00269{left:529.050000px;}
.x90_c00269{left:530.100000px;}
.xa7_c00269{left:531.900000px;}
.x76_c00269{left:532.950000px;}
.xb5_c00269{left:551.850000px;}
.xce_c00269{left:553.650000px;}
.x13a_c00269{left:561.300000px;}
.xa8_c00269{left:569.100000px;}
.xbb_c00269{left:570.600000px;}
.xd3_c00269{left:572.100000px;}
.xf3_c00269{left:573.300000px;}
.x101_c00269{left:574.500000px;}
.x10b_c00269{left:575.550000px;}
.x11d_c00269{left:577.050000px;}
.x122_c00269{left:578.550000px;}
.xc0_c00269{left:584.400000px;}
.xeb_c00269{left:590.400000px;}
.xc9_c00269{left:592.500000px;}
.xbc_c00269{left:593.700000px;}
.x102_c00269{left:595.350000px;}
.xf9_c00269{left:596.700000px;}
.xa9_c00269{left:598.650000px;}
.x12c_c00269{left:603.000000px;}
.xdf_c00269{left:605.850000px;}
.x135_c00269{left:609.600000px;}
.xd4_c00269{left:612.000000px;}
.x108_c00269{left:613.800000px;}
.xf4_c00269{left:615.450000px;}
.xb6_c00269{left:617.400000px;}
.xbd_c00269{left:619.650000px;}
.x123_c00269{left:620.700000px;}
.x11a_c00269{left:622.200000px;}
.x115_c00269{left:623.400000px;}
.xfa_c00269{left:624.450000px;}
.xf5_c00269{left:625.500000px;}
.xd6_c00269{left:626.700000px;}
.xb2_c00269{left:630.000000px;}
.x125_c00269{left:631.650000px;}
.xaa_c00269{left:633.600000px;}
.xe8_c00269{left:634.650000px;}
.x126_c00269{left:639.150000px;}
.xbe_c00269{left:640.200000px;}
.xef_c00269{left:642.450000px;}
.xcc_c00269{left:644.100000px;}
.xf6_c00269{left:647.400000px;}
.xca_c00269{left:651.150000px;}
.x106_c00269{left:653.400000px;}
.xbf_c00269{left:656.100000px;}
.xb3_c00269{left:657.750000px;}
.x138_c00269{left:659.100000px;}
.xd5_c00269{left:660.600000px;}
.x13b_c00269{left:663.150000px;}
.xe1_c00269{left:664.200000px;}
.x118_c00269{left:665.250000px;}
.xc1_c00269{left:667.950000px;}
.xcf_c00269{left:672.150000px;}
.x114_c00269{left:675.150000px;}
.x103_c00269{left:676.800000px;}
.x10c_c00269{left:679.200000px;}
.x12d_c00269{left:681.450000px;}
.xab_c00269{left:682.500000px;}
.xe0_c00269{left:684.000000px;}
.xe9_c00269{left:685.050000px;}
.xe2_c00269{left:686.550000px;}
.xd7_c00269{left:690.000000px;}
.xb4_c00269{left:692.250000px;}
.xfd_c00269{left:693.600000px;}
.xc2_c00269{left:695.250000px;}
.x111_c00269{left:696.300000px;}
.xf0_c00269{left:699.300000px;}
.x109_c00269{left:701.250000px;}
.x132_c00269{left:702.300000px;}
.x136_c00269{left:706.650000px;}
.xac_c00269{left:707.700000px;}
.xfb_c00269{left:711.600000px;}
.x11e_c00269{left:713.100000px;}
.xe3_c00269{left:714.600000px;}
.xad_c00269{left:717.000000px;}
.xb7_c00269{left:718.200000px;}
.xcb_c00269{left:719.550000px;}
.x137_c00269{left:723.600000px;}
.xcd_c00269{left:726.600000px;}
.xfc_c00269{left:729.300000px;}
.xec_c00269{left:731.850000px;}
.xae_c00269{left:733.950000px;}
.x121_c00269{left:735.600000px;}
.xb8_c00269{left:737.700000px;}
.x12e_c00269{left:739.050000px;}
.x11b_c00269{left:740.100000px;}
.x133_c00269{left:741.150000px;}
.xd0_c00269{left:743.850000px;}
.x129_c00269{left:745.200000px;}
.x11c_c00269{left:749.100000px;}
.xd8_c00269{left:750.150000px;}
.xc3_c00269{left:751.800000px;}
.x10d_c00269{left:753.300000px;}
.x107_c00269{left:755.250000px;}
.xd9_c00269{left:758.850000px;}
.x139_c00269{left:759.900000px;}
.x134_c00269{left:760.950000px;}
.xaf_c00269{left:762.750000px;}
.xe4_c00269{left:766.800000px;}
.x10e_c00269{left:771.600000px;}
.x127_c00269{left:773.400000px;}
.xc7_c00269{left:775.350000px;}
.xfe_c00269{left:778.200000px;}
.x12f_c00269{left:781.200000px;}
.xea_c00269{left:788.400000px;}
.x13c_c00269{left:789.900000px;}
.xd1_c00269{left:790.950000px;}
.x130_c00269{left:792.000000px;}
.xf7_c00269{left:793.200000px;}
.xff_c00269{left:794.700000px;}
.xe5_c00269{left:797.700000px;}
.xda_c00269{left:799.950000px;}
.xf8_c00269{left:801.900000px;}
.x12a_c00269{left:803.850000px;}
.xb9_c00269{left:805.350000px;}
.xc4_c00269{left:806.850000px;}
.x13d_c00269{left:808.650000px;}
.x112_c00269{left:810.300000px;}
.xf1_c00269{left:811.650000px;}
.xed_c00269{left:814.650000px;}
.xdb_c00269{left:816.150000px;}
.xb0_c00269{left:817.500000px;}
.xc8_c00269{left:818.550000px;}
.x10a_c00269{left:821.400000px;}
.xe6_c00269{left:822.600000px;}
.x11f_c00269{left:823.650000px;}
.x10f_c00269{left:824.850000px;}
.xc5_c00269{left:829.200000px;}
.x113_c00269{left:830.850000px;}
.xe7_c00269{left:835.200000px;}
.xb1_c00269{left:838.800000px;}
.x100_c00269{left:841.950000px;}
.x104_c00269{left:848.100000px;}
.x120_c00269{left:849.150000px;}
.x110_c00269{left:850.800000px;}
.xc6_c00269{left:852.600000px;}
.xd2_c00269{left:853.950000px;}
.x116_c00269{left:856.050000px;}
.xee_c00269{left:857.100000px;}
.x12b_c00269{left:858.900000px;}
.xdc_c00269{left:861.900000px;}
.xde_c00269{left:862.950000px;}
.x128_c00269{left:866.700000px;}
.x117_c00269{left:867.900000px;}
.xf2_c00269{left:872.850000px;}
.x131_c00269{left:876.600000px;}
.x105_c00269{left:877.650000px;}
.xba_c00269{left:879.900000px;}
.x124_c00269{left:880.950000px;}
.xdd_c00269{left:888.900000px;}
.x119_c00269{left:891.750000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws1_c00269{word-spacing:-1.375661pt;}
.ws6_c00269{word-spacing:0.000000pt;}
.ws2_c00269{word-spacing:0.190699pt;}
.ws0_c00269{word-spacing:0.251572pt;}
.ws4_c00269{word-spacing:4.995508pt;}
.ws5_c00269{word-spacing:11.561665pt;}
.ws3_c00269{word-spacing:46.303030pt;}
._0_c00269{width:156.606061pt;}
.fs7_c00269{font-size:26.666667pt;}
.fs6_c00269{font-size:42.666667pt;}
.fs5_c00269{font-size:48.000000pt;}
.fs3_c00269{font-size:53.333333pt;}
.fs2_c00269{font-size:58.666667pt;}
.fs1_c00269{font-size:64.000000pt;}
.fs4_c00269{font-size:74.666667pt;}
.fs0_c00269{font-size:96.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y65_c00269{bottom:168.000000pt;}
.y35_c00269{bottom:172.400000pt;}
.y64_c00269{bottom:180.800000pt;}
.y34_c00269{bottom:184.266667pt;}
.y33_c00269{bottom:197.733333pt;}
.y32_c00269{bottom:209.600000pt;}
.y63_c00269{bottom:218.933333pt;}
.y31_c00269{bottom:223.066667pt;}
.y30_c00269{bottom:234.533333pt;}
.y62_c00269{bottom:235.200000pt;}
.y2f_c00269{bottom:248.666667pt;}
.y61_c00269{bottom:250.800000pt;}
.y2e_c00269{bottom:261.200000pt;}
.y60_c00269{bottom:266.800000pt;}
.y2d_c00269{bottom:272.666667pt;}
.y5f_c00269{bottom:282.533333pt;}
.y2c_c00269{bottom:285.733333pt;}
.y2b_c00269{bottom:298.266667pt;}
.y5e_c00269{bottom:298.666667pt;}
.y2a_c00269{bottom:311.066667pt;}
.y5d_c00269{bottom:314.933333pt;}
.y29_c00269{bottom:323.200000pt;}
.y5c_c00269{bottom:330.800000pt;}
.y28_c00269{bottom:336.000000pt;}
.y5b_c00269{bottom:346.533333pt;}
.y27_c00269{bottom:348.800000pt;}
.y5a_c00269{bottom:365.733333pt;}
.y26_c00269{bottom:382.000000pt;}
.y59_c00269{bottom:385.333333pt;}
.y25_c00269{bottom:398.000000pt;}
.y58_c00269{bottom:401.333333pt;}
.y24_c00269{bottom:413.733333pt;}
.y57_c00269{bottom:420.800000pt;}
.y23_c00269{bottom:432.266667pt;}
.y56_c00269{bottom:436.800000pt;}
.y22_c00269{bottom:448.933333pt;}
.y55_c00269{bottom:456.266667pt;}
.y21_c00269{bottom:464.933333pt;}
.y54_c00269{bottom:476.133333pt;}
.y20_c00269{bottom:483.200000pt;}
.y53_c00269{bottom:491.866667pt;}
.y1f_c00269{bottom:499.866667pt;}
.y52_c00269{bottom:511.600000pt;}
.y1e_c00269{bottom:515.466667pt;}
.y51_c00269{bottom:527.600000pt;}
.y1d_c00269{bottom:531.466667pt;}
.y50_c00269{bottom:543.600000pt;}
.y1c_c00269{bottom:551.066667pt;}
.y4f_c00269{bottom:559.333333pt;}
.y1b_c00269{bottom:566.400000pt;}
.y4e_c00269{bottom:575.333333pt;}
.y1a_c00269{bottom:582.400000pt;}
.y4d_c00269{bottom:591.066667pt;}
.y19_c00269{bottom:598.400000pt;}
.y4c_c00269{bottom:607.066667pt;}
.y18_c00269{bottom:614.400000pt;}
.y4b_c00269{bottom:626.933333pt;}
.y17_c00269{bottom:630.400000pt;}
.y4a_c00269{bottom:642.933333pt;}
.y16_c00269{bottom:646.133333pt;}
.y49_c00269{bottom:658.933333pt;}
.y15_c00269{bottom:665.600000pt;}
.y48_c00269{bottom:678.666667pt;}
.y14_c00269{bottom:688.933333pt;}
.y47_c00269{bottom:694.400000pt;}
.y46_c00269{bottom:710.400000pt;}
.y13_c00269{bottom:719.200000pt;}
.y45_c00269{bottom:726.400000pt;}
.y12_c00269{bottom:736.800000pt;}
.y44_c00269{bottom:746.533333pt;}
.y43_c00269{bottom:751.066667pt;}
.y11_c00269{bottom:752.800000pt;}
.y42_c00269{bottom:758.400000pt;}
.y41_c00269{bottom:768.266667pt;}
.y10_c00269{bottom:768.533333pt;}
.y40_c00269{bottom:776.000000pt;}
.yf_c00269{bottom:784.266667pt;}
.ye_c00269{bottom:798.533333pt;}
.y3f_c00269{bottom:803.200000pt;}
.yd_c00269{bottom:816.400000pt;}
.y3e_c00269{bottom:819.466667pt;}
.yc_c00269{bottom:831.733333pt;}
.yb_c00269{bottom:847.733333pt;}
.y3d_c00269{bottom:850.933333pt;}
.ya_c00269{bottom:863.733333pt;}
.y9_c00269{bottom:877.200000pt;}
.y3c_c00269{bottom:882.266667pt;}
.y8_c00269{bottom:894.800000pt;}
.y3b_c00269{bottom:898.933333pt;}
.y7_c00269{bottom:910.533333pt;}
.y3a_c00269{bottom:914.933333pt;}
.y6_c00269{bottom:926.533333pt;}
.y39_c00269{bottom:940.533333pt;}
.y5_c00269{bottom:942.266667pt;}
.y38_c00269{bottom:957.733333pt;}
.y4_c00269{bottom:958.266667pt;}
.y3_c00269{bottom:974.000000pt;}
.y37_c00269{bottom:976.666667pt;}
.y2_c00269{bottom:989.733333pt;}
.y36_c00269{bottom:992.933333pt;}
.y1_c00269{bottom:1014.666667pt;}
.h9_c00269{height:26.666667pt;}
.h8_c00269{height:42.666667pt;}
.h7_c00269{height:48.000000pt;}
.h5_c00269{height:53.333333pt;}
.h4_c00269{height:58.666667pt;}
.h3_c00269{height:64.000000pt;}
.h6_c00269{height:74.666667pt;}
.h2_c00269{height:96.000000pt;}
.h0_c00269{height:1131.840007pt;}
.h1_c00269{height:1132.000000pt;}
.w1_c00269{width:854.666667pt;}
.w0_c00269{width:854.720052pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:176.666667pt;}
.x5f_c00269{left:181.733333pt;}
.x97_c00269{left:183.200000pt;}
.xa0_c00269{left:185.466667pt;}
.x70_c00269{left:187.333333pt;}
.x62_c00269{left:190.000000pt;}
.x3_c00269{left:192.000000pt;}
.x11_c00269{left:193.066667pt;}
.x54_c00269{left:194.000000pt;}
.x65_c00269{left:195.733333pt;}
.x7f_c00269{left:196.800000pt;}
.x87_c00269{left:198.133333pt;}
.xa4_c00269{left:200.266667pt;}
.x5c_c00269{left:204.800000pt;}
.x34_c00269{left:208.666667pt;}
.x20_c00269{left:210.666667pt;}
.x7a_c00269{left:212.266667pt;}
.x39_c00269{left:213.866667pt;}
.x66_c00269{left:215.600000pt;}
.x8d_c00269{left:216.933333pt;}
.x9a_c00269{left:219.200000pt;}
.xa2_c00269{left:220.133333pt;}
.x89_c00269{left:221.066667pt;}
.x55_c00269{left:222.800000pt;}
.x71_c00269{left:223.733333pt;}
.x91_c00269{left:226.133333pt;}
.x5d_c00269{left:227.200000pt;}
.x77_c00269{left:228.933333pt;}
.x35_c00269{left:231.066667pt;}
.x4b_c00269{left:232.266667pt;}
.xa1_c00269{left:235.733333pt;}
.x9b_c00269{left:237.066667pt;}
.x12_c00269{left:238.533333pt;}
.x4_c00269{left:240.000000pt;}
.xa_c00269{left:241.200000pt;}
.x8e_c00269{left:242.800000pt;}
.xa5_c00269{left:244.533333pt;}
.x78_c00269{left:247.466667pt;}
.x56_c00269{left:248.666667pt;}
.x13_c00269{left:253.200000pt;}
.x21_c00269{left:254.800000pt;}
.x1a_c00269{left:257.866667pt;}
.x40_c00269{left:259.466667pt;}
.x6c_c00269{left:261.733333pt;}
.x27_c00269{left:263.066667pt;}
.x88_c00269{left:264.666667pt;}
.x51_c00269{left:266.000000pt;}
.x7d_c00269{left:267.200000pt;}
.x32_c00269{left:268.400000pt;}
.xb_c00269{left:270.266667pt;}
.x83_c00269{left:272.266667pt;}
.x2d_c00269{left:273.866667pt;}
.x92_c00269{left:275.066667pt;}
.x6d_c00269{left:276.400000pt;}
.x41_c00269{left:278.000000pt;}
.x45_c00269{left:280.133333pt;}
.x67_c00269{left:281.200000pt;}
.x80_c00269{left:283.200000pt;}
.x1b_c00269{left:284.400000pt;}
.x7e_c00269{left:285.733333pt;}
.xa3_c00269{left:288.266667pt;}
.x5_c00269{left:289.600000pt;}
.x33_c00269{left:291.066667pt;}
.x3a_c00269{left:292.266667pt;}
.x28_c00269{left:293.466667pt;}
.x4c_c00269{left:294.933333pt;}
.x9c_c00269{left:297.600000pt;}
.x8a_c00269{left:301.066667pt;}
.x95_c00269{left:302.533333pt;}
.x84_c00269{left:303.600000pt;}
.x22_c00269{left:305.333333pt;}
.x98_c00269{left:306.933333pt;}
.x29_c00269{left:308.133333pt;}
.x6_c00269{left:309.066667pt;}
.x52_c00269{left:310.133333pt;}
.xc_c00269{left:312.133333pt;}
.x14_c00269{left:315.333333pt;}
.x3b_c00269{left:316.266667pt;}
.x81_c00269{left:318.133333pt;}
.x46_c00269{left:319.466667pt;}
.x85_c00269{left:320.933333pt;}
.x79_c00269{left:322.933333pt;}
.x2e_c00269{left:325.066667pt;}
.x36_c00269{left:326.533333pt;}
.x23_c00269{left:328.400000pt;}
.x42_c00269{left:330.133333pt;}
.x68_c00269{left:332.400000pt;}
.x1c_c00269{left:334.266667pt;}
.x15_c00269{left:336.133333pt;}
.x47_c00269{left:338.000000pt;}
.x3c_c00269{left:340.533333pt;}
.x72_c00269{left:343.200000pt;}
.xa6_c00269{left:344.400000pt;}
.x5e_c00269{left:345.600000pt;}
.x37_c00269{left:347.333333pt;}
.x48_c00269{left:348.266667pt;}
.x59_c00269{left:349.200000pt;}
.x4d_c00269{left:350.666667pt;}
.x1d_c00269{left:353.733333pt;}
.xd_c00269{left:355.333333pt;}
.x2a_c00269{left:358.666667pt;}
.x7_c00269{left:359.600000pt;}
.x63_c00269{left:361.200000pt;}
.x57_c00269{left:362.800000pt;}
.x8b_c00269{left:364.400000pt;}
.x73_c00269{left:367.200000pt;}
.x5a_c00269{left:369.733333pt;}
.x60_c00269{left:372.400000pt;}
.x1e_c00269{left:374.533333pt;}
.x74_c00269{left:376.133333pt;}
.x16_c00269{left:380.666667pt;}
.x4e_c00269{left:382.000000pt;}
.x69_c00269{left:383.333333pt;}
.x3d_c00269{left:384.666667pt;}
.x2f_c00269{left:386.133333pt;}
.x2b_c00269{left:387.733333pt;}
.x2_c00269{left:389.200000pt;}
.x24_c00269{left:390.800000pt;}
.x6a_c00269{left:392.000000pt;}
.x17_c00269{left:393.466667pt;}
.xe_c00269{left:394.666667pt;}
.x4f_c00269{left:398.000000pt;}
.x75_c00269{left:400.133333pt;}
.x99_c00269{left:401.600000pt;}
.x7b_c00269{left:403.466667pt;}
.xf_c00269{left:405.600000pt;}
.x2c_c00269{left:407.600000pt;}
.x25_c00269{left:410.000000pt;}
.x6e_c00269{left:411.333333pt;}
.x94_c00269{left:412.800000pt;}
.x18_c00269{left:414.000000pt;}
.x30_c00269{left:415.866667pt;}
.x38_c00269{left:417.466667pt;}
.x8c_c00269{left:418.533333pt;}
.x8_c00269{left:421.333333pt;}
.x1f_c00269{left:422.800000pt;}
.x58_c00269{left:424.266667pt;}
.x49_c00269{left:425.733333pt;}
.x43_c00269{left:426.666667pt;}
.x93_c00269{left:428.266667pt;}
.x53_c00269{left:429.866667pt;}
.x26_c00269{left:432.400000pt;}
.x3e_c00269{left:434.000000pt;}
.x64_c00269{left:435.066667pt;}
.x7c_c00269{left:436.800000pt;}
.x31_c00269{left:438.000000pt;}
.x9f_c00269{left:439.333333pt;}
.x9d_c00269{left:440.266667pt;}
.x8f_c00269{left:442.133333pt;}
.x44_c00269{left:443.333333pt;}
.x86_c00269{left:444.933333pt;}
.x9_c00269{left:446.666667pt;}
.x6f_c00269{left:448.133333pt;}
.x61_c00269{left:449.200000pt;}
.x3f_c00269{left:450.266667pt;}
.x82_c00269{left:452.133333pt;}
.x50_c00269{left:453.066667pt;}
.x19_c00269{left:454.933333pt;}
.x4a_c00269{left:456.800000pt;}
.x6b_c00269{left:462.666667pt;}
.x9e_c00269{left:464.933333pt;}
.x5b_c00269{left:466.400000pt;}
.x10_c00269{left:468.933333pt;}
.x96_c00269{left:470.266667pt;}
.x90_c00269{left:471.200000pt;}
.xa7_c00269{left:472.800000pt;}
.x76_c00269{left:473.733333pt;}
.xb5_c00269{left:490.533333pt;}
.xce_c00269{left:492.133333pt;}
.x13a_c00269{left:498.933333pt;}
.xa8_c00269{left:505.866667pt;}
.xbb_c00269{left:507.200000pt;}
.xd3_c00269{left:508.533333pt;}
.xf3_c00269{left:509.600000pt;}
.x101_c00269{left:510.666667pt;}
.x10b_c00269{left:511.600000pt;}
.x11d_c00269{left:512.933333pt;}
.x122_c00269{left:514.266667pt;}
.xc0_c00269{left:519.466667pt;}
.xeb_c00269{left:524.800000pt;}
.xc9_c00269{left:526.666667pt;}
.xbc_c00269{left:527.733333pt;}
.x102_c00269{left:529.200000pt;}
.xf9_c00269{left:530.400000pt;}
.xa9_c00269{left:532.133333pt;}
.x12c_c00269{left:536.000000pt;}
.xdf_c00269{left:538.533333pt;}
.x135_c00269{left:541.866667pt;}
.xd4_c00269{left:544.000000pt;}
.x108_c00269{left:545.600000pt;}
.xf4_c00269{left:547.066667pt;}
.xb6_c00269{left:548.800000pt;}
.xbd_c00269{left:550.800000pt;}
.x123_c00269{left:551.733333pt;}
.x11a_c00269{left:553.066667pt;}
.x115_c00269{left:554.133333pt;}
.xfa_c00269{left:555.066667pt;}
.xf5_c00269{left:556.000000pt;}
.xd6_c00269{left:557.066667pt;}
.xb2_c00269{left:560.000000pt;}
.x125_c00269{left:561.466667pt;}
.xaa_c00269{left:563.200000pt;}
.xe8_c00269{left:564.133333pt;}
.x126_c00269{left:568.133333pt;}
.xbe_c00269{left:569.066667pt;}
.xef_c00269{left:571.066667pt;}
.xcc_c00269{left:572.533333pt;}
.xf6_c00269{left:575.466667pt;}
.xca_c00269{left:578.800000pt;}
.x106_c00269{left:580.800000pt;}
.xbf_c00269{left:583.200000pt;}
.xb3_c00269{left:584.666667pt;}
.x138_c00269{left:585.866667pt;}
.xd5_c00269{left:587.200000pt;}
.x13b_c00269{left:589.466667pt;}
.xe1_c00269{left:590.400000pt;}
.x118_c00269{left:591.333333pt;}
.xc1_c00269{left:593.733333pt;}
.xcf_c00269{left:597.466667pt;}
.x114_c00269{left:600.133333pt;}
.x103_c00269{left:601.600000pt;}
.x10c_c00269{left:603.733333pt;}
.x12d_c00269{left:605.733333pt;}
.xab_c00269{left:606.666667pt;}
.xe0_c00269{left:608.000000pt;}
.xe9_c00269{left:608.933333pt;}
.xe2_c00269{left:610.266667pt;}
.xd7_c00269{left:613.333333pt;}
.xb4_c00269{left:615.333333pt;}
.xfd_c00269{left:616.533333pt;}
.xc2_c00269{left:618.000000pt;}
.x111_c00269{left:618.933333pt;}
.xf0_c00269{left:621.600000pt;}
.x109_c00269{left:623.333333pt;}
.x132_c00269{left:624.266667pt;}
.x136_c00269{left:628.133333pt;}
.xac_c00269{left:629.066667pt;}
.xfb_c00269{left:632.533333pt;}
.x11e_c00269{left:633.866667pt;}
.xe3_c00269{left:635.200000pt;}
.xad_c00269{left:637.333333pt;}
.xb7_c00269{left:638.400000pt;}
.xcb_c00269{left:639.600000pt;}
.x137_c00269{left:643.200000pt;}
.xcd_c00269{left:645.866667pt;}
.xfc_c00269{left:648.266667pt;}
.xec_c00269{left:650.533333pt;}
.xae_c00269{left:652.400000pt;}
.x121_c00269{left:653.866667pt;}
.xb8_c00269{left:655.733333pt;}
.x12e_c00269{left:656.933333pt;}
.x11b_c00269{left:657.866667pt;}
.x133_c00269{left:658.800000pt;}
.xd0_c00269{left:661.200000pt;}
.x129_c00269{left:662.400000pt;}
.x11c_c00269{left:665.866667pt;}
.xd8_c00269{left:666.800000pt;}
.xc3_c00269{left:668.266667pt;}
.x10d_c00269{left:669.600000pt;}
.x107_c00269{left:671.333333pt;}
.xd9_c00269{left:674.533333pt;}
.x139_c00269{left:675.466667pt;}
.x134_c00269{left:676.400000pt;}
.xaf_c00269{left:678.000000pt;}
.xe4_c00269{left:681.600000pt;}
.x10e_c00269{left:685.866667pt;}
.x127_c00269{left:687.466667pt;}
.xc7_c00269{left:689.200000pt;}
.xfe_c00269{left:691.733333pt;}
.x12f_c00269{left:694.400000pt;}
.xea_c00269{left:700.800000pt;}
.x13c_c00269{left:702.133333pt;}
.xd1_c00269{left:703.066667pt;}
.x130_c00269{left:704.000000pt;}
.xf7_c00269{left:705.066667pt;}
.xff_c00269{left:706.400000pt;}
.xe5_c00269{left:709.066667pt;}
.xda_c00269{left:711.066667pt;}
.xf8_c00269{left:712.800000pt;}
.x12a_c00269{left:714.533333pt;}
.xb9_c00269{left:715.866667pt;}
.xc4_c00269{left:717.200000pt;}
.x13d_c00269{left:718.800000pt;}
.x112_c00269{left:720.266667pt;}
.xf1_c00269{left:721.466667pt;}
.xed_c00269{left:724.133333pt;}
.xdb_c00269{left:725.466667pt;}
.xb0_c00269{left:726.666667pt;}
.xc8_c00269{left:727.600000pt;}
.x10a_c00269{left:730.133333pt;}
.xe6_c00269{left:731.200000pt;}
.x11f_c00269{left:732.133333pt;}
.x10f_c00269{left:733.200000pt;}
.xc5_c00269{left:737.066667pt;}
.x113_c00269{left:738.533333pt;}
.xe7_c00269{left:742.400000pt;}
.xb1_c00269{left:745.600000pt;}
.x100_c00269{left:748.400000pt;}
.x104_c00269{left:753.866667pt;}
.x120_c00269{left:754.800000pt;}
.x110_c00269{left:756.266667pt;}
.xc6_c00269{left:757.866667pt;}
.xd2_c00269{left:759.066667pt;}
.x116_c00269{left:760.933333pt;}
.xee_c00269{left:761.866667pt;}
.x12b_c00269{left:763.466667pt;}
.xdc_c00269{left:766.133333pt;}
.xde_c00269{left:767.066667pt;}
.x128_c00269{left:770.400000pt;}
.x117_c00269{left:771.466667pt;}
.xf2_c00269{left:775.866667pt;}
.x131_c00269{left:779.200000pt;}
.x105_c00269{left:780.133333pt;}
.xba_c00269{left:782.133333pt;}
.x124_c00269{left:783.066667pt;}
.xdd_c00269{left:790.133333pt;}
.x119_c00269{left:792.666667pt;}
}





/* 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_c00270 {
    display:none;
  }
  .loading-indicator_c00270.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00270 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_c00270 { 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_c00270" -> "#page-container .classname_c00270")
 */
.pf_c00270 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00270 { /* 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_c00270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00270 { /* 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_c00270 { /* 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_c00270 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00270 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00270 {overflow:visible;}
  }
}
.c_c00270 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00270 { /* 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_c00270:after { /* webkit #35443 */
  content: '';
}
.t_c00270:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00270 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 */
}
.__c00270 { /* 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_c00270 { /* info for Javascript */
  display:none;
}
.l_c00270 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00270 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00270 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00270: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_c00270 {
    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_c00270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00270.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_c00270 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00270;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.000000;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;}
.mf8_c00270{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00270{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00270{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m82_c00270{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me2_c00270{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m56_c00270{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m59_c00270{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m76_c00270{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m33_c00270{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00270{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00270{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.md9_c00270{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00270{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00270{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00270{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m72_c00270{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me1_c00270{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00270{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00270{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00270{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m95_c00270{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m93_c00270{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m39_c00270{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m97_c00270{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m85_c00270{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m112_c00270{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m77_c00270{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m91_c00270{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00270{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m2_c00270{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m32_c00270{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md8_c00270{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00270{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m24_c00270{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mda_c00270{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m100_c00270{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00270{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00270{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00270{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mae_c00270{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m110_c00270{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00270{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m17_c00270{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00270{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m109_c00270{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m42_c00270{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.maa_c00270{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mef_c00270{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m30_c00270{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m36_c00270{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00270{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md1_c00270{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00270{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m69_c00270{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m34_c00270{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m108_c00270{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me7_c00270{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m66_c00270{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m107_c00270{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m60_c00270{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00270{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00270{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m81_c00270{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m5_c00270{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mea_c00270{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00270{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m23_c00270{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00270{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00270{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00270{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00270{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00270{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00270{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00270{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m80_c00270{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m51_c00270{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m113_c00270{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00270{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00270{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00270{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m79_c00270{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m104_c00270{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m49_c00270{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.med_c00270{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00270{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m43_c00270{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00270{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.me5_c00270{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00270{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00270{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00270{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m22_c00270{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6_c00270{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me9_c00270{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00270{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m28_c00270{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.maf_c00270{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00270{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00270{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00270{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mab_c00270{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00270{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m26_c00270{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00270{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mec_c00270{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m73_c00270{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me8_c00270{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m62_c00270{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m14_c00270{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m101_c00270{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00270{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00270{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m27_c00270{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mac_c00270{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m20_c00270{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00270{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m11_c00270{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md5_c00270{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7_c00270{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00270{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m44_c00270{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00270{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00270{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00270{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00270{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mee_c00270{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m21_c00270{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00270{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00270{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00270{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m92_c00270{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma_c00270{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m102_c00270{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00270{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00270{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00270{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00270{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00270{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m63_c00270{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00270{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m53_c00270{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m96_c00270{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00270{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m83_c00270{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me0_c00270{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00270{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m19_c00270{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m78_c00270{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mad_c00270{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m25_c00270{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m37_c00270{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m88_c00270{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m54_c00270{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00270{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m71_c00270{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00270{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m46_c00270{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m57_c00270{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m89_c00270{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m13_c00270{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00270{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00270{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m70_c00270{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m40_c00270{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00270{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00270{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m84_c00270{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md0_c00270{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m45_c00270{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00270{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m16_c00270{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m52_c00270{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m29_c00270{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md4_c00270{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00270{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m10_c00270{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00270{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m86_c00270{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m50_c00270{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00270{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00270{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m15_c00270{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00270{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00270{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m12_c00270{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00270{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m48_c00270{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00270{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mba_c00270{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8_c00270{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00270{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00270{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00270{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md6_c00270{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md_c00270{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md7_c00270{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m68_c00270{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf_c00270{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00270{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00270{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00270{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00270{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md2_c00270{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m67_c00270{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m3_c00270{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m105_c00270{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m35_c00270{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00270{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.meb_c00270{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me_c00270{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00270{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m75_c00270{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00270{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00270{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m99_c00270{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00270{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m47_c00270{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m74_c00270{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mff_c00270{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00270{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9_c00270{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m94_c00270{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md3_c00270{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00270{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00270{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00270{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m98_c00270{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00270{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00270{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00270{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m41_c00270{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00270{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00270{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mde_c00270{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m58_c00270{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00270{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00270{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m111_c00270{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00270{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00270{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m64_c00270{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m38_c00270{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m55_c00270{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00270{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00270{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m106_c00270{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00270{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00270{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m87_c00270{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m103_c00270{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mca_c00270{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mc_c00270{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mb_c00270{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00270{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00270{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00270{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00270{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00270{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m31_c00270{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mce_c00270{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00270{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m61_c00270{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00270{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m65_c00270{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m114_c00270{transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);}
.me4_c00270{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.me6_c00270{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00270{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00270{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00270{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00270{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00270{transform:matrix(0.672000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672000,0.000000,0.000000,0.250000,0,0);}
.me3_c00270{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m90_c00270{transform:matrix(2.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.520000,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls0_c00270{letter-spacing:0.000000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{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__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00270{word-spacing:-4.605263px;}
.ws0_c00270{word-spacing:-0.146132px;}
.ws6_c00270{word-spacing:0.000000px;}
.ws4_c00270{word-spacing:1.500000px;}
.ws5_c00270{word-spacing:6.366812px;}
.ws1_c00270{word-spacing:7.768559px;}
.ws2_c00270{word-spacing:8.194444px;}
.fc0_c00270{color:transparent;}
.fs7_c00270{font-size:18.000000px;}
.fs2_c00270{font-size:30.000000px;}
.fs6_c00270{font-size:36.000000px;}
.fs5_c00270{font-size:54.000000px;}
.fs4_c00270{font-size:60.000000px;}
.fs3_c00270{font-size:66.000000px;}
.fs1_c00270{font-size:72.000000px;}
.fs0_c00270{font-size:78.000000px;}
.y0_c00270{bottom:0.000000px;}
.y6c_c00270{bottom:2.850000px;}
.y36_c00270{bottom:7.200000px;}
.y35_c00270{bottom:198.600000px;}
.y6b_c00270{bottom:200.850000px;}
.y34_c00270{bottom:213.300000px;}
.y6a_c00270{bottom:218.550000px;}
.y33_c00270{bottom:227.700000px;}
.y69_c00270{bottom:236.250000px;}
.y32_c00270{bottom:242.100000px;}
.y68_c00270{bottom:254.550000px;}
.y31_c00270{bottom:256.200000px;}
.y30_c00270{bottom:270.600000px;}
.y67_c00270{bottom:271.800000px;}
.y2f_c00270{bottom:284.700000px;}
.y66_c00270{bottom:293.700000px;}
.y2e_c00270{bottom:299.100000px;}
.y65_c00270{bottom:311.400000px;}
.y2d_c00270{bottom:313.200000px;}
.y64_c00270{bottom:337.650000px;}
.y63_c00270{bottom:355.650000px;}
.y2c_c00270{bottom:367.650000px;}
.y62_c00270{bottom:372.900000px;}
.y2b_c00270{bottom:385.350000px;}
.y2a_c00270{bottom:403.050000px;}
.y61_c00270{bottom:403.950000px;}
.y29_c00270{bottom:420.750000px;}
.y60_c00270{bottom:421.200000px;}
.y28_c00270{bottom:438.450000px;}
.y5f_c00270{bottom:439.200000px;}
.y27_c00270{bottom:456.450000px;}
.y5e_c00270{bottom:456.900000px;}
.y26_c00270{bottom:465.900000px;}
.y5d_c00270{bottom:474.900000px;}
.y25_c00270{bottom:478.050000px;}
.y5c_c00270{bottom:492.600000px;}
.y24_c00270{bottom:495.750000px;}
.y5b_c00270{bottom:510.600000px;}
.y23_c00270{bottom:526.650000px;}
.y5a_c00270{bottom:528.300000px;}
.y22_c00270{bottom:544.350000px;}
.y59_c00270{bottom:546.300000px;}
.y58_c00270{bottom:564.000000px;}
.y21_c00270{bottom:579.600000px;}
.y57_c00270{bottom:582.000000px;}
.y20_c00270{bottom:597.600000px;}
.y56_c00270{bottom:599.700000px;}
.y55_c00270{bottom:617.700000px;}
.y3_c00270{bottom:625.350000px;}
.y1f_c00270{bottom:627.900000px;}
.y54_c00270{bottom:635.400000px;}
.y1e_c00270{bottom:645.900000px;}
.y53_c00270{bottom:661.650000px;}
.y1d_c00270{bottom:663.600000px;}
.y52_c00270{bottom:679.350000px;}
.y1c_c00270{bottom:681.300000px;}
.y51_c00270{bottom:697.350000px;}
.y1b_c00270{bottom:699.300000px;}
.y50_c00270{bottom:714.300000px;}
.y1a_c00270{bottom:717.000000px;}
.y4f_c00270{bottom:732.300000px;}
.y19_c00270{bottom:734.700000px;}
.y4e_c00270{bottom:750.000000px;}
.y18_c00270{bottom:752.700000px;}
.y4d_c00270{bottom:768.000000px;}
.y17_c00270{bottom:770.700000px;}
.y4c_c00270{bottom:786.000000px;}
.y16_c00270{bottom:787.650000px;}
.y4b_c00270{bottom:803.700000px;}
.y15_c00270{bottom:805.650000px;}
.y4a_c00270{bottom:821.700000px;}
.y14_c00270{bottom:823.350000px;}
.y49_c00270{bottom:839.700000px;}
.y13_c00270{bottom:840.600000px;}
.y48_c00270{bottom:857.400000px;}
.y12_c00270{bottom:867.000000px;}
.y47_c00270{bottom:875.100000px;}
.y11_c00270{bottom:885.000000px;}
.y46_c00270{bottom:892.800000px;}
.y10_c00270{bottom:902.700000px;}
.y42_c00270{bottom:917.700000px;}
.yf_c00270{bottom:920.700000px;}
.y45_c00270{bottom:932.100000px;}
.y41_c00270{bottom:934.200000px;}
.ye_c00270{bottom:937.950000px;}
.y44_c00270{bottom:942.150000px;}
.y40_c00270{bottom:946.500000px;}
.yd_c00270{bottom:955.650000px;}
.y43_c00270{bottom:960.450000px;}
.yc_c00270{bottom:973.650000px;}
.y3f_c00270{bottom:976.350000px;}
.yb_c00270{bottom:991.650000px;}
.y3e_c00270{bottom:1004.400000px;}
.ya_c00270{bottom:1008.900000px;}
.y3d_c00270{bottom:1022.100000px;}
.y9_c00270{bottom:1026.600000px;}
.y3c_c00270{bottom:1039.650000px;}
.y8_c00270{bottom:1044.600000px;}
.y3b_c00270{bottom:1057.350000px;}
.y7_c00270{bottom:1062.300000px;}
.y6_c00270{bottom:1080.000000px;}
.y3a_c00270{bottom:1083.600000px;}
.y39_c00270{bottom:1095.450000px;}
.y5_c00270{bottom:1101.600000px;}
.y38_c00270{bottom:1114.500000px;}
.y37_c00270{bottom:1119.300000px;}
.y4_c00270{bottom:1119.600000px;}
.y2_c00270{bottom:1144.800000px;}
.y1_c00270{bottom:1146.600000px;}
.h9_c00270{height:18.000000px;}
.h4_c00270{height:30.000000px;}
.h8_c00270{height:36.000000px;}
.h7_c00270{height:54.000000px;}
.h6_c00270{height:60.000000px;}
.h5_c00270{height:66.000000px;}
.h3_c00270{height:72.000000px;}
.h2_c00270{height:78.000000px;}
.h0_c00270{height:1270.440033px;}
.h1_c00270{height:1270.500000px;}
.w1_c00270{width:961.500000px;}
.w0_c00270{width:961.560058px;}
.x0_c00270{left:0.000000px;}
.x84_c00270{left:46.500000px;}
.x3_c00270{left:80.700000px;}
.x7d_c00270{left:84.600000px;}
.x7b_c00270{left:86.100000px;}
.xc_c00270{left:87.450000px;}
.x80_c00270{left:93.450000px;}
.x90_c00270{left:98.700000px;}
.x7e_c00270{left:100.050000px;}
.x71_c00270{left:102.300000px;}
.x5f_c00270{left:103.500000px;}
.xa_c00270{left:105.150000px;}
.x46_c00270{left:106.200000px;}
.x9b_c00270{left:110.400000px;}
.x9a_c00270{left:115.200000px;}
.x4_c00270{left:117.000000px;}
.x85_c00270{left:120.600000px;}
.x49_c00270{left:122.400000px;}
.x75_c00270{left:125.250000px;}
.x19_c00270{left:127.200000px;}
.x3c_c00270{left:129.150000px;}
.x93_c00270{left:131.100000px;}
.x6a_c00270{left:132.150000px;}
.x81_c00270{left:134.550000px;}
.x8c_c00270{left:135.900000px;}
.xb_c00270{left:138.300000px;}
.x96_c00270{left:143.850000px;}
.x2e_c00270{left:145.050000px;}
.xd_c00270{left:147.900000px;}
.x39_c00270{left:151.050000px;}
.x64_c00270{left:154.050000px;}
.x24_c00270{left:155.700000px;}
.x34_c00270{left:159.900000px;}
.x13_c00270{left:162.900000px;}
.x83_c00270{left:164.550000px;}
.x3d_c00270{left:165.750000px;}
.x4d_c00270{left:168.300000px;}
.x72_c00270{left:170.400000px;}
.x5c_c00270{left:171.600000px;}
.x1e_c00270{left:174.300000px;}
.x1a_c00270{left:175.500000px;}
.x3a_c00270{left:178.800000px;}
.x25_c00270{left:179.850000px;}
.x86_c00270{left:182.100000px;}
.x14_c00270{left:183.450000px;}
.x5_c00270{left:185.400000px;}
.x56_c00270{left:187.950000px;}
.x65_c00270{left:189.750000px;}
.x1f_c00270{left:191.250000px;}
.x51_c00270{left:193.050000px;}
.x60_c00270{left:194.250000px;}
.x73_c00270{left:197.100000px;}
.x76_c00270{left:200.550000px;}
.x3b_c00270{left:202.200000px;}
.x94_c00270{left:204.150000px;}
.x87_c00270{left:205.200000px;}
.x3e_c00270{left:208.650000px;}
.x6b_c00270{left:210.300000px;}
.x66_c00270{left:211.350000px;}
.xe_c00270{left:214.800000px;}
.x61_c00270{left:215.850000px;}
.x47_c00270{left:217.500000px;}
.x91_c00270{left:219.000000px;}
.x77_c00270{left:220.050000px;}
.x82_c00270{left:222.000000px;}
.x26_c00270{left:223.350000px;}
.x1b_c00270{left:225.150000px;}
.x8e_c00270{left:227.100000px;}
.x2f_c00270{left:228.600000px;}
.x15_c00270{left:230.250000px;}
.x5d_c00270{left:233.400000px;}
.x20_c00270{left:234.450000px;}
.x6_c00270{left:236.100000px;}
.x57_c00270{left:238.050000px;}
.x88_c00270{left:239.400000px;}
.x97_c00270{left:240.600000px;}
.x35_c00270{left:241.650000px;}
.x92_c00270{left:242.700000px;}
.x6c_c00270{left:243.750000px;}
.x8a_c00270{left:246.450000px;}
.x7c_c00270{left:248.700000px;}
.x67_c00270{left:253.800000px;}
.x5b_c00270{left:255.150000px;}
.x7_c00270{left:256.650000px;}
.x58_c00270{left:259.350000px;}
.x2a_c00270{left:261.750000px;}
.x36_c00270{left:262.950000px;}
.x48_c00270{left:265.350000px;}
.x16_c00270{left:267.000000px;}
.x43_c00270{left:268.650000px;}
.x4a_c00270{left:271.050000px;}
.x27_c00270{left:275.550000px;}
.x40_c00270{left:279.900000px;}
.x37_c00270{left:280.950000px;}
.xf_c00270{left:282.150000px;}
.x1c_c00270{left:283.500000px;}
.x8f_c00270{left:285.750000px;}
.x28_c00270{left:287.100000px;}
.x44_c00270{left:290.250000px;}
.x52_c00270{left:292.050000px;}
.x6e_c00270{left:293.700000px;}
.x17_c00270{left:294.750000px;}
.x4e_c00270{left:296.250000px;}
.x62_c00270{left:298.350000px;}
.x30_c00270{left:301.800000px;}
.x8_c00270{left:304.500000px;}
.x78_c00270{left:307.200000px;}
.x41_c00270{left:308.400000px;}
.x98_c00270{left:310.800000px;}
.x10_c00270{left:312.000000px;}
.x53_c00270{left:317.250000px;}
.x21_c00270{left:319.800000px;}
.x59_c00270{left:321.300000px;}
.x95_c00270{left:325.950000px;}
.x1_c00270{left:327.600000px;}
.x63_c00270{left:328.950000px;}
.x2b_c00270{left:330.450000px;}
.x4f_c00270{left:331.950000px;}
.x18_c00270{left:334.650000px;}
.x9c_c00270{left:336.750000px;}
.x6d_c00270{left:338.250000px;}
.x68_c00270{left:339.450000px;}
.x5a_c00270{left:341.400000px;}
.x6f_c00270{left:343.050000px;}
.x29_c00270{left:345.450000px;}
.x4b_c00270{left:346.950000px;}
.x79_c00270{left:350.700000px;}
.x31_c00270{left:351.900000px;}
.x9_c00270{left:353.850000px;}
.x69_c00270{left:355.650000px;}
.x3f_c00270{left:358.050000px;}
.x32_c00270{left:359.850000px;}
.x9d_c00270{left:360.900000px;}
.x8b_c00270{left:361.950000px;}
.x74_c00270{left:363.300000px;}
.x99_c00270{left:366.900000px;}
.x2c_c00270{left:368.250000px;}
.x11_c00270{left:369.600000px;}
.x22_c00270{left:372.000000px;}
.x42_c00270{left:374.250000px;}
.x33_c00270{left:376.350000px;}
.x38_c00270{left:377.850000px;}
.x9e_c00270{left:380.400000px;}
.x4c_c00270{left:383.250000px;}
.x70_c00270{left:384.450000px;}
.x54_c00270{left:385.950000px;}
.x7a_c00270{left:387.450000px;}
.x23_c00270{left:388.500000px;}
.x1d_c00270{left:393.600000px;}
.x5e_c00270{left:395.850000px;}
.x2d_c00270{left:397.050000px;}
.x12_c00270{left:398.700000px;}
.x50_c00270{left:401.100000px;}
.x45_c00270{left:403.950000px;}
.x55_c00270{left:407.250000px;}
.x8d_c00270{left:408.600000px;}
.x7f_c00270{left:411.000000px;}
.x89_c00270{left:415.050000px;}
.x9f_c00270{left:427.650000px;}
.xa0_c00270{left:435.600000px;}
.x130_c00270{left:441.000000px;}
.x10e_c00270{left:442.050000px;}
.xc1_c00270{left:443.100000px;}
.xdd_c00270{left:456.900000px;}
.xa9_c00270{left:458.700000px;}
.xaf_c00270{left:460.500000px;}
.xa4_c00270{left:467.700000px;}
.xd9_c00270{left:471.600000px;}
.x116_c00270{left:475.200000px;}
.x136_c00270{left:476.250000px;}
.xf1_c00270{left:481.500000px;}
.x133_c00270{left:483.450000px;}
.x119_c00270{left:485.400000px;}
.xc2_c00270{left:486.600000px;}
.xf8_c00270{left:487.800000px;}
.xff_c00270{left:489.300000px;}
.x122_c00270{left:494.250000px;}
.xb0_c00270{left:497.550000px;}
.x132_c00270{left:499.200000px;}
.xf2_c00270{left:501.600000px;}
.x117_c00270{left:502.950000px;}
.xd4_c00270{left:504.300000px;}
.x102_c00270{left:505.800000px;}
.x137_c00270{left:510.150000px;}
.x10b_c00270{left:511.200000px;}
.xb9_c00270{left:512.700000px;}
.xa1_c00270{left:514.500000px;}
.xea_c00270{left:516.150000px;}
.x126_c00270{left:517.500000px;}
.x12d_c00270{left:519.000000px;}
.x134_c00270{left:520.500000px;}
.xb1_c00270{left:521.700000px;}
.xc8_c00270{left:524.250000px;}
.xf9_c00270{left:526.350000px;}
.xba_c00270{left:528.150000px;}
.xe3_c00270{left:529.200000px;}
.xe0_c00270{left:530.250000px;}
.x10f_c00270{left:532.350000px;}
.xf3_c00270{left:533.700000px;}
.xe7_c00270{left:534.900000px;}
.xb2_c00270{left:536.850000px;}
.xfa_c00270{left:538.800000px;}
.x103_c00270{left:542.850000px;}
.x108_c00270{left:544.950000px;}
.xed_c00270{left:546.150000px;}
.xa2_c00270{left:547.650000px;}
.xbe_c00270{left:550.500000px;}
.x10c_c00270{left:552.300000px;}
.xc3_c00270{left:553.500000px;}
.xbb_c00270{left:555.900000px;}
.x12b_c00270{left:557.400000px;}
.xfd_c00270{left:561.750000px;}
.x104_c00270{left:562.950000px;}
.xee_c00270{left:564.900000px;}
.xaa_c00270{left:566.700000px;}
.x11c_c00270{left:568.050000px;}
.xbf_c00270{left:569.250000px;}
.x10d_c00270{left:571.050000px;}
.xb3_c00270{left:573.450000px;}
.xe1_c00270{left:576.300000px;}
.xa3_c00270{left:577.950000px;}
.x129_c00270{left:579.000000px;}
.xb4_c00270{left:581.400000px;}
.xcd_c00270{left:583.950000px;}
.x138_c00270{left:586.350000px;}
.xa5_c00270{left:587.850000px;}
.x131_c00270{left:589.950000px;}
.xf4_c00270{left:591.600000px;}
.x12e_c00270{left:592.800000px;}
.xc0_c00270{left:594.150000px;}
.x112_c00270{left:595.800000px;}
.x100_c00270{left:597.300000px;}
.xce_c00270{left:599.400000px;}
.xc4_c00270{left:601.800000px;}
.xb5_c00270{left:603.300000px;}
.xfb_c00270{left:604.350000px;}
.xc9_c00270{left:605.550000px;}
.xfe_c00270{left:611.100000px;}
.x118_c00270{left:613.200000px;}
.xd5_c00270{left:615.600000px;}
.x13a_c00270{left:616.650000px;}
.xeb_c00270{left:618.450000px;}
.xcf_c00270{left:619.950000px;}
.xbc_c00270{left:623.550000px;}
.x113_c00270{left:628.200000px;}
.x127_c00270{left:629.400000px;}
.xca_c00270{left:630.750000px;}
.xb6_c00270{left:632.400000px;}
.x11a_c00270{left:633.450000px;}
.x110_c00270{left:636.300000px;}
.x11d_c00270{left:638.250000px;}
.x109_c00270{left:641.100000px;}
.x105_c00270{left:643.950000px;}
.xab_c00270{left:646.200000px;}
.xe8_c00270{left:647.850000px;}
.xf6_c00270{left:650.250000px;}
.x128_c00270{left:652.050000px;}
.xd0_c00270{left:654.900000px;}
.x139_c00270{left:657.450000px;}
.xdf_c00270{left:658.500000px;}
.xc5_c00270{left:660.900000px;}
.x114_c00270{left:663.450000px;}
.xcb_c00270{left:667.500000px;}
.xd1_c00270{left:669.300000px;}
.xac_c00270{left:670.350000px;}
.x11e_c00270{left:672.150000px;}
.x101_c00270{left:673.650000px;}
.xbd_c00270{left:675.450000px;}
.x11f_c00270{left:677.850000px;}
.xa6_c00270{left:678.900000px;}
.xe4_c00270{left:681.000000px;}
.x10a_c00270{left:682.200000px;}
.x135_c00270{left:683.850000px;}
.xb7_c00270{left:685.050000px;}
.xec_c00270{left:686.400000px;}
.x115_c00270{left:687.600000px;}
.x123_c00270{left:689.850000px;}
.xe2_c00270{left:691.800000px;}
.xad_c00270{left:693.750000px;}
.xd2_c00270{left:696.000000px;}
.xfc_c00270{left:697.950000px;}
.xd6_c00270{left:699.150000px;}
.xa7_c00270{left:701.550000px;}
.xe5_c00270{left:705.150000px;}
.xdc_c00270{left:706.800000px;}
.xda_c00270{left:708.150000px;}
.xe9_c00270{left:710.550000px;}
.xc6_c00270{left:711.600000px;}
.xef_c00270{left:713.700000px;}
.x106_c00270{left:715.950000px;}
.x111_c00270{left:719.400000px;}
.x124_c00270{left:722.250000px;}
.x12c_c00270{left:725.250000px;}
.x120_c00270{left:726.450000px;}
.xd7_c00270{left:729.450000px;}
.xdb_c00270{left:730.800000px;}
.xe6_c00270{left:733.200000px;}
.xcc_c00270{left:735.900000px;}
.xb8_c00270{left:736.950000px;}
.x121_c00270{left:738.450000px;}
.x125_c00270{left:739.950000px;}
.xa8_c00270{left:743.250000px;}
.xf0_c00270{left:744.600000px;}
.x12f_c00270{left:746.850000px;}
.x12a_c00270{left:748.950000px;}
.xd3_c00270{left:750.000000px;}
.x2_c00270{left:751.350000px;}
.xf7_c00270{left:752.400000px;}
.xf5_c00270{left:754.050000px;}
.x11b_c00270{left:761.700000px;}
.xd8_c00270{left:763.650000px;}
.xde_c00270{left:765.150000px;}
.xc7_c00270{left:766.350000px;}
.xae_c00270{left:771.450000px;}
.x107_c00270{left:785.400000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws3_c00270{word-spacing:-4.093567pt;}
.ws0_c00270{word-spacing:-0.129895pt;}
.ws6_c00270{word-spacing:0.000000pt;}
.ws4_c00270{word-spacing:1.333333pt;}
.ws5_c00270{word-spacing:5.659389pt;}
.ws1_c00270{word-spacing:6.905386pt;}
.ws2_c00270{word-spacing:7.283951pt;}
.fs7_c00270{font-size:16.000000pt;}
.fs2_c00270{font-size:26.666667pt;}
.fs6_c00270{font-size:32.000000pt;}
.fs5_c00270{font-size:48.000000pt;}
.fs4_c00270{font-size:53.333333pt;}
.fs3_c00270{font-size:58.666667pt;}
.fs1_c00270{font-size:64.000000pt;}
.fs0_c00270{font-size:69.333333pt;}
.y0_c00270{bottom:0.000000pt;}
.y6c_c00270{bottom:2.533333pt;}
.y36_c00270{bottom:6.400000pt;}
.y35_c00270{bottom:176.533333pt;}
.y6b_c00270{bottom:178.533333pt;}
.y34_c00270{bottom:189.600000pt;}
.y6a_c00270{bottom:194.266667pt;}
.y33_c00270{bottom:202.400000pt;}
.y69_c00270{bottom:210.000000pt;}
.y32_c00270{bottom:215.200000pt;}
.y68_c00270{bottom:226.266667pt;}
.y31_c00270{bottom:227.733333pt;}
.y30_c00270{bottom:240.533333pt;}
.y67_c00270{bottom:241.600000pt;}
.y2f_c00270{bottom:253.066667pt;}
.y66_c00270{bottom:261.066667pt;}
.y2e_c00270{bottom:265.866667pt;}
.y65_c00270{bottom:276.800000pt;}
.y2d_c00270{bottom:278.400000pt;}
.y64_c00270{bottom:300.133333pt;}
.y63_c00270{bottom:316.133333pt;}
.y2c_c00270{bottom:326.800000pt;}
.y62_c00270{bottom:331.466667pt;}
.y2b_c00270{bottom:342.533333pt;}
.y2a_c00270{bottom:358.266667pt;}
.y61_c00270{bottom:359.066667pt;}
.y29_c00270{bottom:374.000000pt;}
.y60_c00270{bottom:374.400000pt;}
.y28_c00270{bottom:389.733333pt;}
.y5f_c00270{bottom:390.400000pt;}
.y27_c00270{bottom:405.733333pt;}
.y5e_c00270{bottom:406.133333pt;}
.y26_c00270{bottom:414.133333pt;}
.y5d_c00270{bottom:422.133333pt;}
.y25_c00270{bottom:424.933333pt;}
.y5c_c00270{bottom:437.866667pt;}
.y24_c00270{bottom:440.666667pt;}
.y5b_c00270{bottom:453.866667pt;}
.y23_c00270{bottom:468.133333pt;}
.y5a_c00270{bottom:469.600000pt;}
.y22_c00270{bottom:483.866667pt;}
.y59_c00270{bottom:485.600000pt;}
.y58_c00270{bottom:501.333333pt;}
.y21_c00270{bottom:515.200000pt;}
.y57_c00270{bottom:517.333333pt;}
.y20_c00270{bottom:531.200000pt;}
.y56_c00270{bottom:533.066667pt;}
.y55_c00270{bottom:549.066667pt;}
.y3_c00270{bottom:555.866667pt;}
.y1f_c00270{bottom:558.133333pt;}
.y54_c00270{bottom:564.800000pt;}
.y1e_c00270{bottom:574.133333pt;}
.y53_c00270{bottom:588.133333pt;}
.y1d_c00270{bottom:589.866667pt;}
.y52_c00270{bottom:603.866667pt;}
.y1c_c00270{bottom:605.600000pt;}
.y51_c00270{bottom:619.866667pt;}
.y1b_c00270{bottom:621.600000pt;}
.y50_c00270{bottom:634.933333pt;}
.y1a_c00270{bottom:637.333333pt;}
.y4f_c00270{bottom:650.933333pt;}
.y19_c00270{bottom:653.066667pt;}
.y4e_c00270{bottom:666.666667pt;}
.y18_c00270{bottom:669.066667pt;}
.y4d_c00270{bottom:682.666667pt;}
.y17_c00270{bottom:685.066667pt;}
.y4c_c00270{bottom:698.666667pt;}
.y16_c00270{bottom:700.133333pt;}
.y4b_c00270{bottom:714.400000pt;}
.y15_c00270{bottom:716.133333pt;}
.y4a_c00270{bottom:730.400000pt;}
.y14_c00270{bottom:731.866667pt;}
.y49_c00270{bottom:746.400000pt;}
.y13_c00270{bottom:747.200000pt;}
.y48_c00270{bottom:762.133333pt;}
.y12_c00270{bottom:770.666667pt;}
.y47_c00270{bottom:777.866667pt;}
.y11_c00270{bottom:786.666667pt;}
.y46_c00270{bottom:793.600000pt;}
.y10_c00270{bottom:802.400000pt;}
.y42_c00270{bottom:815.733333pt;}
.yf_c00270{bottom:818.400000pt;}
.y45_c00270{bottom:828.533333pt;}
.y41_c00270{bottom:830.400000pt;}
.ye_c00270{bottom:833.733333pt;}
.y44_c00270{bottom:837.466667pt;}
.y40_c00270{bottom:841.333333pt;}
.yd_c00270{bottom:849.466667pt;}
.y43_c00270{bottom:853.733333pt;}
.yc_c00270{bottom:865.466667pt;}
.y3f_c00270{bottom:867.866667pt;}
.yb_c00270{bottom:881.466667pt;}
.y3e_c00270{bottom:892.800000pt;}
.ya_c00270{bottom:896.800000pt;}
.y3d_c00270{bottom:908.533333pt;}
.y9_c00270{bottom:912.533333pt;}
.y3c_c00270{bottom:924.133333pt;}
.y8_c00270{bottom:928.533333pt;}
.y3b_c00270{bottom:939.866667pt;}
.y7_c00270{bottom:944.266667pt;}
.y6_c00270{bottom:960.000000pt;}
.y3a_c00270{bottom:963.200000pt;}
.y39_c00270{bottom:973.733333pt;}
.y5_c00270{bottom:979.200000pt;}
.y38_c00270{bottom:990.666667pt;}
.y37_c00270{bottom:994.933333pt;}
.y4_c00270{bottom:995.200000pt;}
.y2_c00270{bottom:1017.600000pt;}
.y1_c00270{bottom:1019.200000pt;}
.h9_c00270{height:16.000000pt;}
.h4_c00270{height:26.666667pt;}
.h8_c00270{height:32.000000pt;}
.h7_c00270{height:48.000000pt;}
.h6_c00270{height:53.333333pt;}
.h5_c00270{height:58.666667pt;}
.h3_c00270{height:64.000000pt;}
.h2_c00270{height:69.333333pt;}
.h0_c00270{height:1129.280029pt;}
.h1_c00270{height:1129.333333pt;}
.w1_c00270{width:854.666667pt;}
.w0_c00270{width:854.720052pt;}
.x0_c00270{left:0.000000pt;}
.x84_c00270{left:41.333333pt;}
.x3_c00270{left:71.733333pt;}
.x7d_c00270{left:75.200000pt;}
.x7b_c00270{left:76.533333pt;}
.xc_c00270{left:77.733333pt;}
.x80_c00270{left:83.066667pt;}
.x90_c00270{left:87.733333pt;}
.x7e_c00270{left:88.933333pt;}
.x71_c00270{left:90.933333pt;}
.x5f_c00270{left:92.000000pt;}
.xa_c00270{left:93.466667pt;}
.x46_c00270{left:94.400000pt;}
.x9b_c00270{left:98.133333pt;}
.x9a_c00270{left:102.400000pt;}
.x4_c00270{left:104.000000pt;}
.x85_c00270{left:107.200000pt;}
.x49_c00270{left:108.800000pt;}
.x75_c00270{left:111.333333pt;}
.x19_c00270{left:113.066667pt;}
.x3c_c00270{left:114.800000pt;}
.x93_c00270{left:116.533333pt;}
.x6a_c00270{left:117.466667pt;}
.x81_c00270{left:119.600000pt;}
.x8c_c00270{left:120.800000pt;}
.xb_c00270{left:122.933333pt;}
.x96_c00270{left:127.866667pt;}
.x2e_c00270{left:128.933333pt;}
.xd_c00270{left:131.466667pt;}
.x39_c00270{left:134.266667pt;}
.x64_c00270{left:136.933333pt;}
.x24_c00270{left:138.400000pt;}
.x34_c00270{left:142.133333pt;}
.x13_c00270{left:144.800000pt;}
.x83_c00270{left:146.266667pt;}
.x3d_c00270{left:147.333333pt;}
.x4d_c00270{left:149.600000pt;}
.x72_c00270{left:151.466667pt;}
.x5c_c00270{left:152.533333pt;}
.x1e_c00270{left:154.933333pt;}
.x1a_c00270{left:156.000000pt;}
.x3a_c00270{left:158.933333pt;}
.x25_c00270{left:159.866667pt;}
.x86_c00270{left:161.866667pt;}
.x14_c00270{left:163.066667pt;}
.x5_c00270{left:164.800000pt;}
.x56_c00270{left:167.066667pt;}
.x65_c00270{left:168.666667pt;}
.x1f_c00270{left:170.000000pt;}
.x51_c00270{left:171.600000pt;}
.x60_c00270{left:172.666667pt;}
.x73_c00270{left:175.200000pt;}
.x76_c00270{left:178.266667pt;}
.x3b_c00270{left:179.733333pt;}
.x94_c00270{left:181.466667pt;}
.x87_c00270{left:182.400000pt;}
.x3e_c00270{left:185.466667pt;}
.x6b_c00270{left:186.933333pt;}
.x66_c00270{left:187.866667pt;}
.xe_c00270{left:190.933333pt;}
.x61_c00270{left:191.866667pt;}
.x47_c00270{left:193.333333pt;}
.x91_c00270{left:194.666667pt;}
.x77_c00270{left:195.600000pt;}
.x82_c00270{left:197.333333pt;}
.x26_c00270{left:198.533333pt;}
.x1b_c00270{left:200.133333pt;}
.x8e_c00270{left:201.866667pt;}
.x2f_c00270{left:203.200000pt;}
.x15_c00270{left:204.666667pt;}
.x5d_c00270{left:207.466667pt;}
.x20_c00270{left:208.400000pt;}
.x6_c00270{left:209.866667pt;}
.x57_c00270{left:211.600000pt;}
.x88_c00270{left:212.800000pt;}
.x97_c00270{left:213.866667pt;}
.x35_c00270{left:214.800000pt;}
.x92_c00270{left:215.733333pt;}
.x6c_c00270{left:216.666667pt;}
.x8a_c00270{left:219.066667pt;}
.x7c_c00270{left:221.066667pt;}
.x67_c00270{left:225.600000pt;}
.x5b_c00270{left:226.800000pt;}
.x7_c00270{left:228.133333pt;}
.x58_c00270{left:230.533333pt;}
.x2a_c00270{left:232.666667pt;}
.x36_c00270{left:233.733333pt;}
.x48_c00270{left:235.866667pt;}
.x16_c00270{left:237.333333pt;}
.x43_c00270{left:238.800000pt;}
.x4a_c00270{left:240.933333pt;}
.x27_c00270{left:244.933333pt;}
.x40_c00270{left:248.800000pt;}
.x37_c00270{left:249.733333pt;}
.xf_c00270{left:250.800000pt;}
.x1c_c00270{left:252.000000pt;}
.x8f_c00270{left:254.000000pt;}
.x28_c00270{left:255.200000pt;}
.x44_c00270{left:258.000000pt;}
.x52_c00270{left:259.600000pt;}
.x6e_c00270{left:261.066667pt;}
.x17_c00270{left:262.000000pt;}
.x4e_c00270{left:263.333333pt;}
.x62_c00270{left:265.200000pt;}
.x30_c00270{left:268.266667pt;}
.x8_c00270{left:270.666667pt;}
.x78_c00270{left:273.066667pt;}
.x41_c00270{left:274.133333pt;}
.x98_c00270{left:276.266667pt;}
.x10_c00270{left:277.333333pt;}
.x53_c00270{left:282.000000pt;}
.x21_c00270{left:284.266667pt;}
.x59_c00270{left:285.600000pt;}
.x95_c00270{left:289.733333pt;}
.x1_c00270{left:291.200000pt;}
.x63_c00270{left:292.400000pt;}
.x2b_c00270{left:293.733333pt;}
.x4f_c00270{left:295.066667pt;}
.x18_c00270{left:297.466667pt;}
.x9c_c00270{left:299.333333pt;}
.x6d_c00270{left:300.666667pt;}
.x68_c00270{left:301.733333pt;}
.x5a_c00270{left:303.466667pt;}
.x6f_c00270{left:304.933333pt;}
.x29_c00270{left:307.066667pt;}
.x4b_c00270{left:308.400000pt;}
.x79_c00270{left:311.733333pt;}
.x31_c00270{left:312.800000pt;}
.x9_c00270{left:314.533333pt;}
.x69_c00270{left:316.133333pt;}
.x3f_c00270{left:318.266667pt;}
.x32_c00270{left:319.866667pt;}
.x9d_c00270{left:320.800000pt;}
.x8b_c00270{left:321.733333pt;}
.x74_c00270{left:322.933333pt;}
.x99_c00270{left:326.133333pt;}
.x2c_c00270{left:327.333333pt;}
.x11_c00270{left:328.533333pt;}
.x22_c00270{left:330.666667pt;}
.x42_c00270{left:332.666667pt;}
.x33_c00270{left:334.533333pt;}
.x38_c00270{left:335.866667pt;}
.x9e_c00270{left:338.133333pt;}
.x4c_c00270{left:340.666667pt;}
.x70_c00270{left:341.733333pt;}
.x54_c00270{left:343.066667pt;}
.x7a_c00270{left:344.400000pt;}
.x23_c00270{left:345.333333pt;}
.x1d_c00270{left:349.866667pt;}
.x5e_c00270{left:351.866667pt;}
.x2d_c00270{left:352.933333pt;}
.x12_c00270{left:354.400000pt;}
.x50_c00270{left:356.533333pt;}
.x45_c00270{left:359.066667pt;}
.x55_c00270{left:362.000000pt;}
.x8d_c00270{left:363.200000pt;}
.x7f_c00270{left:365.333333pt;}
.x89_c00270{left:368.933333pt;}
.x9f_c00270{left:380.133333pt;}
.xa0_c00270{left:387.200000pt;}
.x130_c00270{left:392.000000pt;}
.x10e_c00270{left:392.933333pt;}
.xc1_c00270{left:393.866667pt;}
.xdd_c00270{left:406.133333pt;}
.xa9_c00270{left:407.733333pt;}
.xaf_c00270{left:409.333333pt;}
.xa4_c00270{left:415.733333pt;}
.xd9_c00270{left:419.200000pt;}
.x116_c00270{left:422.400000pt;}
.x136_c00270{left:423.333333pt;}
.xf1_c00270{left:428.000000pt;}
.x133_c00270{left:429.733333pt;}
.x119_c00270{left:431.466667pt;}
.xc2_c00270{left:432.533333pt;}
.xf8_c00270{left:433.600000pt;}
.xff_c00270{left:434.933333pt;}
.x122_c00270{left:439.333333pt;}
.xb0_c00270{left:442.266667pt;}
.x132_c00270{left:443.733333pt;}
.xf2_c00270{left:445.866667pt;}
.x117_c00270{left:447.066667pt;}
.xd4_c00270{left:448.266667pt;}
.x102_c00270{left:449.600000pt;}
.x137_c00270{left:453.466667pt;}
.x10b_c00270{left:454.400000pt;}
.xb9_c00270{left:455.733333pt;}
.xa1_c00270{left:457.333333pt;}
.xea_c00270{left:458.800000pt;}
.x126_c00270{left:460.000000pt;}
.x12d_c00270{left:461.333333pt;}
.x134_c00270{left:462.666667pt;}
.xb1_c00270{left:463.733333pt;}
.xc8_c00270{left:466.000000pt;}
.xf9_c00270{left:467.866667pt;}
.xba_c00270{left:469.466667pt;}
.xe3_c00270{left:470.400000pt;}
.xe0_c00270{left:471.333333pt;}
.x10f_c00270{left:473.200000pt;}
.xf3_c00270{left:474.400000pt;}
.xe7_c00270{left:475.466667pt;}
.xb2_c00270{left:477.200000pt;}
.xfa_c00270{left:478.933333pt;}
.x103_c00270{left:482.533333pt;}
.x108_c00270{left:484.400000pt;}
.xed_c00270{left:485.466667pt;}
.xa2_c00270{left:486.800000pt;}
.xbe_c00270{left:489.333333pt;}
.x10c_c00270{left:490.933333pt;}
.xc3_c00270{left:492.000000pt;}
.xbb_c00270{left:494.133333pt;}
.x12b_c00270{left:495.466667pt;}
.xfd_c00270{left:499.333333pt;}
.x104_c00270{left:500.400000pt;}
.xee_c00270{left:502.133333pt;}
.xaa_c00270{left:503.733333pt;}
.x11c_c00270{left:504.933333pt;}
.xbf_c00270{left:506.000000pt;}
.x10d_c00270{left:507.600000pt;}
.xb3_c00270{left:509.733333pt;}
.xe1_c00270{left:512.266667pt;}
.xa3_c00270{left:513.733333pt;}
.x129_c00270{left:514.666667pt;}
.xb4_c00270{left:516.800000pt;}
.xcd_c00270{left:519.066667pt;}
.x138_c00270{left:521.200000pt;}
.xa5_c00270{left:522.533333pt;}
.x131_c00270{left:524.400000pt;}
.xf4_c00270{left:525.866667pt;}
.x12e_c00270{left:526.933333pt;}
.xc0_c00270{left:528.133333pt;}
.x112_c00270{left:529.600000pt;}
.x100_c00270{left:530.933333pt;}
.xce_c00270{left:532.800000pt;}
.xc4_c00270{left:534.933333pt;}
.xb5_c00270{left:536.266667pt;}
.xfb_c00270{left:537.200000pt;}
.xc9_c00270{left:538.266667pt;}
.xfe_c00270{left:543.200000pt;}
.x118_c00270{left:545.066667pt;}
.xd5_c00270{left:547.200000pt;}
.x13a_c00270{left:548.133333pt;}
.xeb_c00270{left:549.733333pt;}
.xcf_c00270{left:551.066667pt;}
.xbc_c00270{left:554.266667pt;}
.x113_c00270{left:558.400000pt;}
.x127_c00270{left:559.466667pt;}
.xca_c00270{left:560.666667pt;}
.xb6_c00270{left:562.133333pt;}
.x11a_c00270{left:563.066667pt;}
.x110_c00270{left:565.600000pt;}
.x11d_c00270{left:567.333333pt;}
.x109_c00270{left:569.866667pt;}
.x105_c00270{left:572.400000pt;}
.xab_c00270{left:574.400000pt;}
.xe8_c00270{left:575.866667pt;}
.xf6_c00270{left:578.000000pt;}
.x128_c00270{left:579.600000pt;}
.xd0_c00270{left:582.133333pt;}
.x139_c00270{left:584.400000pt;}
.xdf_c00270{left:585.333333pt;}
.xc5_c00270{left:587.466667pt;}
.x114_c00270{left:589.733333pt;}
.xcb_c00270{left:593.333333pt;}
.xd1_c00270{left:594.933333pt;}
.xac_c00270{left:595.866667pt;}
.x11e_c00270{left:597.466667pt;}
.x101_c00270{left:598.800000pt;}
.xbd_c00270{left:600.400000pt;}
.x11f_c00270{left:602.533333pt;}
.xa6_c00270{left:603.466667pt;}
.xe4_c00270{left:605.333333pt;}
.x10a_c00270{left:606.400000pt;}
.x135_c00270{left:607.866667pt;}
.xb7_c00270{left:608.933333pt;}
.xec_c00270{left:610.133333pt;}
.x115_c00270{left:611.200000pt;}
.x123_c00270{left:613.200000pt;}
.xe2_c00270{left:614.933333pt;}
.xad_c00270{left:616.666667pt;}
.xd2_c00270{left:618.666667pt;}
.xfc_c00270{left:620.400000pt;}
.xd6_c00270{left:621.466667pt;}
.xa7_c00270{left:623.600000pt;}
.xe5_c00270{left:626.800000pt;}
.xdc_c00270{left:628.266667pt;}
.xda_c00270{left:629.466667pt;}
.xe9_c00270{left:631.600000pt;}
.xc6_c00270{left:632.533333pt;}
.xef_c00270{left:634.400000pt;}
.x106_c00270{left:636.400000pt;}
.x111_c00270{left:639.466667pt;}
.x124_c00270{left:642.000000pt;}
.x12c_c00270{left:644.666667pt;}
.x120_c00270{left:645.733333pt;}
.xd7_c00270{left:648.400000pt;}
.xdb_c00270{left:649.600000pt;}
.xe6_c00270{left:651.733333pt;}
.xcc_c00270{left:654.133333pt;}
.xb8_c00270{left:655.066667pt;}
.x121_c00270{left:656.400000pt;}
.x125_c00270{left:657.733333pt;}
.xa8_c00270{left:660.666667pt;}
.xf0_c00270{left:661.866667pt;}
.x12f_c00270{left:663.866667pt;}
.x12a_c00270{left:665.733333pt;}
.xd3_c00270{left:666.666667pt;}
.x2_c00270{left:667.866667pt;}
.xf7_c00270{left:668.800000pt;}
.xf5_c00270{left:670.266667pt;}
.x11b_c00270{left:677.066667pt;}
.xd8_c00270{left:678.800000pt;}
.xde_c00270{left:680.133333pt;}
.xc7_c00270{left:681.200000pt;}
.xae_c00270{left:685.733333pt;}
.x107_c00270{left:698.133333pt;}
}





/* 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_c00271 {
    display:none;
  }
  .loading-indicator_c00271.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00271 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_c00271 { 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_c00271" -> "#page-container .classname_c00271")
 */
.pf_c00271 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00271 { /* 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_c00271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00271 { /* 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_c00271 { /* 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_c00271 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00271 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00271 {overflow:visible;}
  }
}
.c_c00271 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00271 { /* 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_c00271:after { /* webkit #35443 */
  content: '';
}
.t_c00271:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00271 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 */
}
.__c00271 { /* 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_c00271 { /* info for Javascript */
  display:none;
}
.l_c00271 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00271 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00271 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00271: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_c00271 {
    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_c00271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00271.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_c00271 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00271;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.000000;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;}
.m1e_c00271{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m117_c00271{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00271{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m122_c00271{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m51_c00271{transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);}
.m86_c00271{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.mab_c00271{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00271{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00271{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.m87_c00271{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00271{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.m78_c00271{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m88_c00271{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m109_c00271{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m121_c00271{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00271{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00271{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m120_c00271{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m56_c00271{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00271{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m89_c00271{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00271{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m113_c00271{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.me8_c00271{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00271{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m33_c00271{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m54_c00271{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00271{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m12_c00271{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m31_c00271{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00271{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00271{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00271{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m70_c00271{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m47_c00271{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m50_c00271{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m32_c00271{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mad_c00271{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00271{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m27_c00271{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mba_c00271{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00271{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00271{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m17_c00271{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00271{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00271{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m81_c00271{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00271{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m44_c00271{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00271{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m5_c00271{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m7_c00271{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00271{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00271{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me0_c00271{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00271{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00271{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m18_c00271{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m75_c00271{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m96_c00271{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m25_c00271{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.me4_c00271{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00271{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me5_c00271{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me9_c00271{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m97_c00271{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md3_c00271{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m43_c00271{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m49_c00271{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m104_c00271{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m61_c00271{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m16_c00271{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m13_c00271{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m79_c00271{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md7_c00271{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00271{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mea_c00271{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m105_c00271{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00271{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m11_c00271{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00271{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m82_c00271{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00271{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00271{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00271{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00271{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m65_c00271{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00271{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m60_c00271{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m73_c00271{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00271{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.meb_c00271{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m64_c00271{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m116_c00271{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb_c00271{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00271{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00271{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m99_c00271{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00271{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me2_c00271{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00271{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me6_c00271{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00271{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00271{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m52_c00271{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma_c00271{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00271{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me_c00271{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m68_c00271{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00271{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m98_c00271{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00271{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m15_c00271{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00271{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00271{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m101_c00271{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m62_c00271{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00271{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m26_c00271{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m69_c00271{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00271{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m119_c00271{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m14_c00271{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00271{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m39_c00271{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00271{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m28_c00271{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00271{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m71_c00271{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m10_c00271{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00271{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00271{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m74_c00271{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m46_c00271{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00271{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m77_c00271{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mee_c00271{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00271{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m100_c00271{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00271{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m102_c00271{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9_c00271{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00271{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m67_c00271{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6_c00271{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00271{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.md5_c00271{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00271{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m29_c00271{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00271{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m59_c00271{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m55_c00271{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m95_c00271{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mae_c00271{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m66_c00271{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m72_c00271{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00271{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m94_c00271{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m48_c00271{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00271{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00271{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me7_c00271{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mef_c00271{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc_c00271{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mf_c00271{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00271{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m23_c00271{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mac_c00271{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00271{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3_c00271{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mca_c00271{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00271{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m36_c00271{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00271{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m83_c00271{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mda_c00271{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00271{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00271{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m80_c00271{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00271{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00271{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00271{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m53_c00271{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00271{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00271{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00271{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m115_c00271{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m93_c00271{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m103_c00271{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00271{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m57_c00271{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00271{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00271{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00271{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8_c00271{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m84_c00271{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00271{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m90_c00271{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.maf_c00271{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00271{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m63_c00271{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00271{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mff_c00271{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00271{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4_c00271{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00271{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00271{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m19_c00271{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m21_c00271{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m85_c00271{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m41_c00271{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m45_c00271{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m42_c00271{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m35_c00271{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md0_c00271{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.med_c00271{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00271{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me3_c00271{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md1_c00271{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00271{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m106_c00271{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00271{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00271{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m38_c00271{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00271{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00271{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00271{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00271{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00271{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00271{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00271{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m58_c00271{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md2_c00271{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00271{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md4_c00271{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00271{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m30_c00271{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00271{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m118_c00271{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m107_c00271{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00271{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00271{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m112_c00271{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00271{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00271{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00271{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m37_c00271{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m111_c00271{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00271{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md6_c00271{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m92_c00271{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00271{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me1_c00271{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m22_c00271{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md9_c00271{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00271{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00271{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00271{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00271{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00271{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00271{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00271{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00271{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00271{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00271{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m24_c00271{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00271{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00271{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00271{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m40_c00271{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00271{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mec_c00271{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m114_c00271{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m110_c00271{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.mde_c00271{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00271{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m20_c00271{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00271{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m76_c00271{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.maa_c00271{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00271{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m34_c00271{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00271{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m2_c00271{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00271{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m91_c00271{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.md8_c00271{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mce_c00271{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{transform:matrix(0.460750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460750,0.000000,0.000000,0.250000,0,0);}
.m108_c00271{transform:matrix(21.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(21.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(21.960000,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls0_c00271{letter-spacing:0.000000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{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__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00271{word-spacing:-11.069869px;}
.ws7_c00271{word-spacing:-10.935698px;}
.ws4_c00271{word-spacing:-10.256410px;}
.ws8_c00271{word-spacing:-3.165644px;}
.ws0_c00271{word-spacing:-1.633238px;}
.wsa_c00271{word-spacing:0.000000px;}
.ws9_c00271{word-spacing:5.675676px;}
.ws6_c00271{word-spacing:6.696133px;}
.ws1_c00271{word-spacing:8.932961px;}
.ws3_c00271{word-spacing:27.041522px;}
.ws2_c00271{word-spacing:1398.000000px;}
.fc0_c00271{color:transparent;}
.fs2_c00271{font-size:24.000000px;}
.fs7_c00271{font-size:30.000000px;}
.fs6_c00271{font-size:42.000000px;}
.fs8_c00271{font-size:48.000000px;}
.fs4_c00271{font-size:54.000000px;}
.fs5_c00271{font-size:60.000000px;}
.fs3_c00271{font-size:66.000000px;}
.fs0_c00271{font-size:72.000000px;}
.fs1_c00271{font-size:78.000000px;}
.y0_c00271{bottom:0.000000px;}
.y6e_c00271{bottom:176.400000px;}
.y71_c00271{bottom:199.800000px;}
.y6d_c00271{bottom:209.550000px;}
.y67_c00271{bottom:213.300000px;}
.y70_c00271{bottom:214.200000px;}
.y6f_c00271{bottom:226.050000px;}
.y66_c00271{bottom:231.000000px;}
.y65_c00271{bottom:245.100000px;}
.y6c_c00271{bottom:257.400000px;}
.y64_c00271{bottom:268.200000px;}
.y6b_c00271{bottom:275.400000px;}
.y63_c00271{bottom:285.900000px;}
.y6a_c00271{bottom:293.100000px;}
.y35_c00271{bottom:306.300000px;}
.y69_c00271{bottom:320.100000px;}
.y34_c00271{bottom:324.000000px;}
.y68_c00271{bottom:337.350000px;}
.y33_c00271{bottom:341.700000px;}
.y32_c00271{bottom:358.950000px;}
.y62_c00271{bottom:359.850000px;}
.y31_c00271{bottom:375.900000px;}
.y61_c00271{bottom:377.100000px;}
.y30_c00271{bottom:393.150000px;}
.y60_c00271{bottom:394.800000px;}
.y5f_c00271{bottom:412.500000px;}
.y2f_c00271{bottom:415.050000px;}
.y5e_c00271{bottom:430.500000px;}
.y2e_c00271{bottom:432.750000px;}
.y5d_c00271{bottom:448.500000px;}
.y2d_c00271{bottom:460.800000px;}
.y5c_c00271{bottom:466.200000px;}
.y2c_c00271{bottom:482.100000px;}
.y5b_c00271{bottom:484.200000px;}
.y2b_c00271{bottom:499.800000px;}
.y5a_c00271{bottom:501.900000px;}
.y2a_c00271{bottom:517.500000px;}
.y59_c00271{bottom:519.900000px;}
.y29_c00271{bottom:534.750000px;}
.y58_c00271{bottom:537.900000px;}
.y28_c00271{bottom:552.450000px;}
.y57_c00271{bottom:555.600000px;}
.y27_c00271{bottom:570.150000px;}
.y56_c00271{bottom:573.300000px;}
.y26_c00271{bottom:587.850000px;}
.y55_c00271{bottom:591.300000px;}
.y25_c00271{bottom:605.100000px;}
.y54_c00271{bottom:608.550000px;}
.y24_c00271{bottom:623.100000px;}
.y53_c00271{bottom:626.550000px;}
.y52_c00271{bottom:644.550000px;}
.y23_c00271{bottom:644.700000px;}
.y22_c00271{bottom:657.300000px;}
.y21_c00271{bottom:662.400000px;}
.y51_c00271{bottom:662.850000px;}
.y20_c00271{bottom:680.100000px;}
.y50_c00271{bottom:680.550000px;}
.y1f_c00271{bottom:698.100000px;}
.y4f_c00271{bottom:698.550000px;}
.y1e_c00271{bottom:712.500000px;}
.y1d_c00271{bottom:716.100000px;}
.y4e_c00271{bottom:716.250000px;}
.y1c_c00271{bottom:733.800000px;}
.y4d_c00271{bottom:734.250000px;}
.y1b_c00271{bottom:751.500000px;}
.y4c_c00271{bottom:752.250000px;}
.y1a_c00271{bottom:769.500000px;}
.y4b_c00271{bottom:770.250000px;}
.y19_c00271{bottom:787.200000px;}
.y4a_c00271{bottom:787.950000px;}
.y18_c00271{bottom:799.050000px;}
.y17_c00271{bottom:805.200000px;}
.y49_c00271{bottom:805.650000px;}
.y16_c00271{bottom:822.900000px;}
.y48_c00271{bottom:823.650000px;}
.y15_c00271{bottom:840.150000px;}
.y47_c00271{bottom:841.350000px;}
.y14_c00271{bottom:858.150000px;}
.y46_c00271{bottom:871.200000px;}
.y13_c00271{bottom:875.850000px;}
.y45_c00271{bottom:884.550000px;}
.y12_c00271{bottom:893.550000px;}
.y44_c00271{bottom:900.150000px;}
.y11_c00271{bottom:907.650000px;}
.y10_c00271{bottom:911.550000px;}
.y43_c00271{bottom:913.500000px;}
.y42_c00271{bottom:928.650000px;}
.yf_c00271{bottom:929.550000px;}
.y41_c00271{bottom:942.300000px;}
.ye_c00271{bottom:955.050000px;}
.y40_c00271{bottom:957.000000px;}
.yd_c00271{bottom:969.450000px;}
.y3f_c00271{bottom:970.650000px;}
.yc_c00271{bottom:982.050000px;}
.y3e_c00271{bottom:985.800000px;}
.yb_c00271{bottom:998.250000px;}
.y3d_c00271{bottom:1000.200000px;}
.ya_c00271{bottom:1010.850000px;}
.y3c_c00271{bottom:1013.850000px;}
.y9_c00271{bottom:1027.800000px;}
.y3b_c00271{bottom:1038.300000px;}
.y3a_c00271{bottom:1042.200000px;}
.y8_c00271{bottom:1044.300000px;}
.y39_c00271{bottom:1056.300000px;}
.y7_c00271{bottom:1063.800000px;}
.y38_c00271{bottom:1072.500000px;}
.y6_c00271{bottom:1081.500000px;}
.y5_c00271{bottom:1102.350000px;}
.y37_c00271{bottom:1103.100000px;}
.y4_c00271{bottom:1121.100000px;}
.y36_c00271{bottom:1121.400000px;}
.y1_c00271{bottom:1145.550000px;}
.y2_c00271{bottom:1147.350000px;}
.y3_c00271{bottom:1180.800000px;}
.h4_c00271{height:24.000000px;}
.h9_c00271{height:30.000000px;}
.h8_c00271{height:42.000000px;}
.ha_c00271{height:48.000000px;}
.h6_c00271{height:54.000000px;}
.h7_c00271{height:60.000000px;}
.h5_c00271{height:66.000000px;}
.h2_c00271{height:72.000000px;}
.h3_c00271{height:78.000000px;}
.h1_c00271{height:1269.000000px;}
.h0_c00271{height:1269.359985px;}
.w1_c00271{width:961.500000px;}
.w0_c00271{width:961.560058px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:199.800000px;}
.x35_c00271{left:201.300000px;}
.x8e_c00271{left:202.350000px;}
.x13d_c00271{left:204.150000px;}
.x132_c00271{left:205.500000px;}
.x18_c00271{left:214.950000px;}
.x4_c00271{left:217.050000px;}
.xd_c00271{left:218.400000px;}
.x5c_c00271{left:219.450000px;}
.x7d_c00271{left:220.500000px;}
.x99_c00271{left:221.700000px;}
.x9c_c00271{left:223.050000px;}
.x142_c00271{left:225.450000px;}
.x3a_c00271{left:227.850000px;}
.x31_c00271{left:229.500000px;}
.x6e_c00271{left:235.950000px;}
.x5_c00271{left:238.950000px;}
.x7e_c00271{left:242.100000px;}
.x27_c00271{left:243.300000px;}
.x10_c00271{left:244.500000px;}
.x62_c00271{left:245.550000px;}
.x12e_c00271{left:246.600000px;}
.x4c_c00271{left:249.000000px;}
.x6c_c00271{left:250.350000px;}
.x87_c00271{left:252.300000px;}
.x53_c00271{left:254.400000px;}
.x13e_c00271{left:256.050000px;}
.x19_c00271{left:257.850000px;}
.x4d_c00271{left:259.050000px;}
.x21_c00271{left:260.250000px;}
.x96_c00271{left:261.750000px;}
.x5a_c00271{left:264.150000px;}
.x5d_c00271{left:265.500000px;}
.x89_c00271{left:266.850000px;}
.x69_c00271{left:268.200000px;}
.x51_c00271{left:273.450000px;}
.x1a_c00271{left:275.100000px;}
.xe_c00271{left:277.800000px;}
.x44_c00271{left:279.000000px;}
.x67_c00271{left:282.000000px;}
.x4e_c00271{left:284.250000px;}
.x92_c00271{left:286.950000px;}
.x36_c00271{left:288.000000px;}
.x28_c00271{left:289.050000px;}
.x8a_c00271{left:290.550000px;}
.x22_c00271{left:291.600000px;}
.x131_c00271{left:294.450000px;}
.x3b_c00271{left:295.800000px;}
.xf_c00271{left:297.600000px;}
.x29_c00271{left:299.100000px;}
.x84_c00271{left:302.100000px;}
.x6_c00271{left:303.750000px;}
.x54_c00271{left:305.550000px;}
.x83_c00271{left:308.550000px;}
.x47_c00271{left:309.750000px;}
.x11_c00271{left:311.100000px;}
.x12f_c00271{left:312.150000px;}
.x8f_c00271{left:313.650000px;}
.x7f_c00271{left:314.850000px;}
.x13f_c00271{left:316.950000px;}
.x7_c00271{left:320.250000px;}
.x23_c00271{left:322.500000px;}
.x3c_c00271{left:323.850000px;}
.x80_c00271{left:325.350000px;}
.x63_c00271{left:326.550000px;}
.x1b_c00271{left:329.100000px;}
.x2a_c00271{left:330.750000px;}
.x45_c00271{left:331.800000px;}
.x6a_c00271{left:333.000000px;}
.x32_c00271{left:335.250000px;}
.x7b_c00271{left:336.450000px;}
.x73_c00271{left:338.400000px;}
.x8b_c00271{left:339.900000px;}
.x8_c00271{left:341.100000px;}
.x3d_c00271{left:342.900000px;}
.x86_c00271{left:346.650000px;}
.x81_c00271{left:347.700000px;}
.x2b_c00271{left:349.800000px;}
.x93_c00271{left:351.000000px;}
.x46_c00271{left:353.700000px;}
.x55_c00271{left:355.200000px;}
.x12_c00271{left:356.400000px;}
.x1c_c00271{left:358.650000px;}
.x3e_c00271{left:360.600000px;}
.x6f_c00271{left:363.450000px;}
.x8d_c00271{left:366.150000px;}
.x4f_c00271{left:368.100000px;}
.x5b_c00271{left:370.650000px;}
.x52_c00271{left:371.700000px;}
.x2c_c00271{left:373.500000px;}
.x56_c00271{left:376.050000px;}
.x48_c00271{left:380.400000px;}
.x20_c00271{left:381.900000px;}
.x5e_c00271{left:383.700000px;}
.x1d_c00271{left:385.350000px;}
.x9_c00271{left:387.600000px;}
.x3f_c00271{left:389.400000px;}
.x13b_c00271{left:391.350000px;}
.x143_c00271{left:392.850000px;}
.x140_c00271{left:394.350000px;}
.x88_c00271{left:395.850000px;}
.x37_c00271{left:397.800000px;}
.x70_c00271{left:399.150000px;}
.x79_c00271{left:400.350000px;}
.x64_c00271{left:403.650000px;}
.x5f_c00271{left:405.000000px;}
.x49_c00271{left:406.650000px;}
.x94_c00271{left:407.850000px;}
.x74_c00271{left:408.900000px;}
.x130_c00271{left:411.900000px;}
.x9a_c00271{left:412.950000px;}
.x13_c00271{left:414.000000px;}
.x68_c00271{left:415.350000px;}
.x57_c00271{left:416.400000px;}
.x2d_c00271{left:418.800000px;}
.x77_c00271{left:420.150000px;}
.x1e_c00271{left:422.100000px;}
.x40_c00271{left:423.300000px;}
.x82_c00271{left:425.100000px;}
.x7a_c00271{left:427.650000px;}
.x4a_c00271{left:429.300000px;}
.x2_c00271{left:431.250000px;}
.x98_c00271{left:433.800000px;}
.x7c_c00271{left:437.250000px;}
.x75_c00271{left:439.200000px;}
.x41_c00271{left:441.000000px;}
.x6b_c00271{left:442.500000px;}
.x58_c00271{left:445.200000px;}
.x14_c00271{left:447.150000px;}
.x97_c00271{left:448.650000px;}
.xa_c00271{left:451.350000px;}
.x24_c00271{left:452.850000px;}
.x15_c00271{left:457.650000px;}
.x42_c00271{left:458.700000px;}
.x65_c00271{left:461.250000px;}
.x2e_c00271{left:463.800000px;}
.x6d_c00271{left:466.350000px;}
.x90_c00271{left:468.150000px;}
.x9b_c00271{left:469.350000px;}
.xb_c00271{left:471.450000px;}
.x85_c00271{left:472.650000px;}
.x76_c00271{left:474.000000px;}
.x95_c00271{left:475.500000px;}
.x1f_c00271{left:476.850000px;}
.x91_c00271{left:478.950000px;}
.x50_c00271{left:481.500000px;}
.x25_c00271{left:483.450000px;}
.x59_c00271{left:485.850000px;}
.x4b_c00271{left:488.700000px;}
.x16_c00271{left:490.350000px;}
.x33_c00271{left:492.150000px;}
.x2f_c00271{left:493.350000px;}
.x38_c00271{left:495.000000px;}
.x66_c00271{left:496.200000px;}
.x60_c00271{left:497.850000px;}
.x72_c00271{left:499.650000px;}
.x8c_c00271{left:501.900000px;}
.x43_c00271{left:503.700000px;}
.x3_c00271{left:506.550000px;}
.x17_c00271{left:507.600000px;}
.x71_c00271{left:509.250000px;}
.xc_c00271{left:512.850000px;}
.x26_c00271{left:517.650000px;}
.x141_c00271{left:519.300000px;}
.x30_c00271{left:520.350000px;}
.x34_c00271{left:521.700000px;}
.x39_c00271{left:524.100000px;}
.x13c_c00271{left:525.300000px;}
.x61_c00271{left:526.950000px;}
.x78_c00271{left:532.050000px;}
.xa9_c00271{left:553.650000px;}
.xd4_c00271{left:555.150000px;}
.x133_c00271{left:558.000000px;}
.xb2_c00271{left:567.750000px;}
.xce_c00271{left:568.800000px;}
.x9d_c00271{left:571.350000px;}
.xd8_c00271{left:572.400000px;}
.xeb_c00271{left:573.750000px;}
.x119_c00271{left:575.100000px;}
.x128_c00271{left:576.600000px;}
.xba_c00271{left:582.750000px;}
.xa7_c00271{left:591.000000px;}
.x136_c00271{left:593.700000px;}
.x116_c00271{left:595.200000px;}
.x110_c00271{left:597.300000px;}
.xb3_c00271{left:598.650000px;}
.xfb_c00271{left:602.250000px;}
.xbb_c00271{left:605.100000px;}
.xf1_c00271{left:607.950000px;}
.x121_c00271{left:609.600000px;}
.xa8_c00271{left:611.550000px;}
.x135_c00271{left:614.100000px;}
.x9e_c00271{left:616.350000px;}
.x10c_c00271{left:621.300000px;}
.xbc_c00271{left:622.800000px;}
.x129_c00271{left:624.900000px;}
.xec_c00271{left:627.450000px;}
.x124_c00271{left:629.100000px;}
.xd9_c00271{left:630.300000px;}
.xe5_c00271{left:633.450000px;}
.x138_c00271{left:634.500000px;}
.x9f_c00271{left:636.150000px;}
.xe1_c00271{left:638.700000px;}
.x108_c00271{left:640.800000px;}
.xd5_c00271{left:641.850000px;}
.xb4_c00271{left:643.650000px;}
.xcf_c00271{left:646.500000px;}
.xc8_c00271{left:648.900000px;}
.x12a_c00271{left:650.100000px;}
.xda_c00271{left:651.150000px;}
.x117_c00271{left:657.450000px;}
.xb5_c00271{left:659.100000px;}
.x111_c00271{left:660.300000px;}
.xd0_c00271{left:662.400000px;}
.x10e_c00271{left:663.450000px;}
.xf2_c00271{left:664.800000px;}
.xc9_c00271{left:666.600000px;}
.xe6_c00271{left:668.700000px;}
.xfc_c00271{left:671.700000px;}
.xaa_c00271{left:674.250000px;}
.x11e_c00271{left:677.850000px;}
.xed_c00271{left:678.900000px;}
.xf7_c00271{left:680.550000px;}
.x112_c00271{left:681.600000px;}
.xa0_c00271{left:683.250000px;}
.xd6_c00271{left:685.050000px;}
.xe2_c00271{left:689.100000px;}
.xb6_c00271{left:691.500000px;}
.xab_c00271{left:694.050000px;}
.xdb_c00271{left:695.850000px;}
.xd1_c00271{left:697.350000px;}
.xf8_c00271{left:698.850000px;}
.x103_c00271{left:699.900000px;}
.x113_c00271{left:703.200000px;}
.xfd_c00271{left:704.850000px;}
.xa1_c00271{left:705.900000px;}
.xe3_c00271{left:707.100000px;}
.xc5_c00271{left:708.450000px;}
.x11f_c00271{left:710.700000px;}
.xb7_c00271{left:712.350000px;}
.xf3_c00271{left:713.400000px;}
.x125_c00271{left:714.750000px;}
.xa2_c00271{left:717.000000px;}
.xca_c00271{left:718.500000px;}
.xdc_c00271{left:720.300000px;}
.xcc_c00271{left:725.700000px;}
.x10d_c00271{left:727.950000px;}
.xac_c00271{left:731.100000px;}
.x120_c00271{left:733.350000px;}
.xe7_c00271{left:735.750000px;}
.x104_c00271{left:736.950000px;}
.x11a_c00271{left:738.900000px;}
.xcd_c00271{left:741.600000px;}
.xee_c00271{left:742.950000px;}
.x137_c00271{left:745.800000px;}
.xdd_c00271{left:748.350000px;}
.x12b_c00271{left:750.150000px;}
.xc6_c00271{left:751.950000px;}
.xd2_c00271{left:754.200000px;}
.xa3_c00271{left:756.600000px;}
.x100_c00271{left:758.850000px;}
.xb8_c00271{left:761.250000px;}
.x11c_c00271{left:763.050000px;}
.x134_c00271{left:764.400000px;}
.xc7_c00271{left:767.400000px;}
.x12c_c00271{left:769.200000px;}
.xad_c00271{left:771.000000px;}
.x11d_c00271{left:772.800000px;}
.x109_c00271{left:776.400000px;}
.xcb_c00271{left:777.600000px;}
.xae_c00271{left:779.700000px;}
.xe8_c00271{left:780.750000px;}
.xbd_c00271{left:782.550000px;}
.x105_c00271{left:784.050000px;}
.xd3_c00271{left:786.300000px;}
.x11b_c00271{left:788.250000px;}
.x127_c00271{left:789.300000px;}
.xf4_c00271{left:790.350000px;}
.xa4_c00271{left:793.350000px;}
.xde_c00271{left:797.250000px;}
.xfe_c00271{left:798.750000px;}
.x114_c00271{left:801.150000px;}
.x12d_c00271{left:805.500000px;}
.xf9_c00271{left:807.150000px;}
.x10f_c00271{left:808.950000px;}
.xaf_c00271{left:810.300000px;}
.x115_c00271{left:811.950000px;}
.xc0_c00271{left:819.000000px;}
.xc2_c00271{left:820.050000px;}
.xb9_c00271{left:821.100000px;}
.x101_c00271{left:822.600000px;}
.x139_c00271{left:824.700000px;}
.xe9_c00271{left:826.800000px;}
.xa5_c00271{left:829.650000px;}
.xef_c00271{left:831.150000px;}
.x118_c00271{left:832.350000px;}
.xdf_c00271{left:834.300000px;}
.x13a_c00271{left:836.250000px;}
.xd7_c00271{left:838.500000px;}
.x106_c00271{left:839.850000px;}
.xb0_c00271{left:841.950000px;}
.xea_c00271{left:843.000000px;}
.xe0_c00271{left:845.100000px;}
.xf0_c00271{left:848.100000px;}
.xbe_c00271{left:850.650000px;}
.xc3_c00271{left:852.750000px;}
.x10a_c00271{left:853.800000px;}
.xa6_c00271{left:855.900000px;}
.xe4_c00271{left:856.950000px;}
.x102_c00271{left:859.650000px;}
.xf5_c00271{left:861.300000px;}
.x122_c00271{left:862.350000px;}
.x107_c00271{left:864.750000px;}
.xff_c00271{left:867.150000px;}
.x126_c00271{left:869.400000px;}
.x10b_c00271{left:872.850000px;}
.xc1_c00271{left:874.050000px;}
.xb1_c00271{left:878.250000px;}
.xbf_c00271{left:880.200000px;}
.xc4_c00271{left:881.250000px;}
.xf6_c00271{left:882.900000px;}
.x123_c00271{left:884.250000px;}
.xfa_c00271{left:889.200000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws5_c00271{word-spacing:-9.839884pt;}
.ws7_c00271{word-spacing:-9.720621pt;}
.ws4_c00271{word-spacing:-9.116809pt;}
.ws8_c00271{word-spacing:-2.813906pt;}
.ws0_c00271{word-spacing:-1.451767pt;}
.wsa_c00271{word-spacing:0.000000pt;}
.ws9_c00271{word-spacing:5.045045pt;}
.ws6_c00271{word-spacing:5.952118pt;}
.ws1_c00271{word-spacing:7.940410pt;}
.ws3_c00271{word-spacing:24.036909pt;}
.ws2_c00271{word-spacing:1242.666667pt;}
.fs2_c00271{font-size:21.333333pt;}
.fs7_c00271{font-size:26.666667pt;}
.fs6_c00271{font-size:37.333333pt;}
.fs8_c00271{font-size:42.666667pt;}
.fs4_c00271{font-size:48.000000pt;}
.fs5_c00271{font-size:53.333333pt;}
.fs3_c00271{font-size:58.666667pt;}
.fs0_c00271{font-size:64.000000pt;}
.fs1_c00271{font-size:69.333333pt;}
.y0_c00271{bottom:0.000000pt;}
.y6e_c00271{bottom:156.800000pt;}
.y71_c00271{bottom:177.600000pt;}
.y6d_c00271{bottom:186.266667pt;}
.y67_c00271{bottom:189.600000pt;}
.y70_c00271{bottom:190.400000pt;}
.y6f_c00271{bottom:200.933333pt;}
.y66_c00271{bottom:205.333333pt;}
.y65_c00271{bottom:217.866667pt;}
.y6c_c00271{bottom:228.800000pt;}
.y64_c00271{bottom:238.400000pt;}
.y6b_c00271{bottom:244.800000pt;}
.y63_c00271{bottom:254.133333pt;}
.y6a_c00271{bottom:260.533333pt;}
.y35_c00271{bottom:272.266667pt;}
.y69_c00271{bottom:284.533333pt;}
.y34_c00271{bottom:288.000000pt;}
.y68_c00271{bottom:299.866667pt;}
.y33_c00271{bottom:303.733333pt;}
.y32_c00271{bottom:319.066667pt;}
.y62_c00271{bottom:319.866667pt;}
.y31_c00271{bottom:334.133333pt;}
.y61_c00271{bottom:335.200000pt;}
.y30_c00271{bottom:349.466667pt;}
.y60_c00271{bottom:350.933333pt;}
.y5f_c00271{bottom:366.666667pt;}
.y2f_c00271{bottom:368.933333pt;}
.y5e_c00271{bottom:382.666667pt;}
.y2e_c00271{bottom:384.666667pt;}
.y5d_c00271{bottom:398.666667pt;}
.y2d_c00271{bottom:409.600000pt;}
.y5c_c00271{bottom:414.400000pt;}
.y2c_c00271{bottom:428.533333pt;}
.y5b_c00271{bottom:430.400000pt;}
.y2b_c00271{bottom:444.266667pt;}
.y5a_c00271{bottom:446.133333pt;}
.y2a_c00271{bottom:460.000000pt;}
.y59_c00271{bottom:462.133333pt;}
.y29_c00271{bottom:475.333333pt;}
.y58_c00271{bottom:478.133333pt;}
.y28_c00271{bottom:491.066667pt;}
.y57_c00271{bottom:493.866667pt;}
.y27_c00271{bottom:506.800000pt;}
.y56_c00271{bottom:509.600000pt;}
.y26_c00271{bottom:522.533333pt;}
.y55_c00271{bottom:525.600000pt;}
.y25_c00271{bottom:537.866667pt;}
.y54_c00271{bottom:540.933333pt;}
.y24_c00271{bottom:553.866667pt;}
.y53_c00271{bottom:556.933333pt;}
.y52_c00271{bottom:572.933333pt;}
.y23_c00271{bottom:573.066667pt;}
.y22_c00271{bottom:584.266667pt;}
.y21_c00271{bottom:588.800000pt;}
.y51_c00271{bottom:589.200000pt;}
.y20_c00271{bottom:604.533333pt;}
.y50_c00271{bottom:604.933333pt;}
.y1f_c00271{bottom:620.533333pt;}
.y4f_c00271{bottom:620.933333pt;}
.y1e_c00271{bottom:633.333333pt;}
.y1d_c00271{bottom:636.533333pt;}
.y4e_c00271{bottom:636.666667pt;}
.y1c_c00271{bottom:652.266667pt;}
.y4d_c00271{bottom:652.666667pt;}
.y1b_c00271{bottom:668.000000pt;}
.y4c_c00271{bottom:668.666667pt;}
.y1a_c00271{bottom:684.000000pt;}
.y4b_c00271{bottom:684.666667pt;}
.y19_c00271{bottom:699.733333pt;}
.y4a_c00271{bottom:700.400000pt;}
.y18_c00271{bottom:710.266667pt;}
.y17_c00271{bottom:715.733333pt;}
.y49_c00271{bottom:716.133333pt;}
.y16_c00271{bottom:731.466667pt;}
.y48_c00271{bottom:732.133333pt;}
.y15_c00271{bottom:746.800000pt;}
.y47_c00271{bottom:747.866667pt;}
.y14_c00271{bottom:762.800000pt;}
.y46_c00271{bottom:774.400000pt;}
.y13_c00271{bottom:778.533333pt;}
.y45_c00271{bottom:786.266667pt;}
.y12_c00271{bottom:794.266667pt;}
.y44_c00271{bottom:800.133333pt;}
.y11_c00271{bottom:806.800000pt;}
.y10_c00271{bottom:810.266667pt;}
.y43_c00271{bottom:812.000000pt;}
.y42_c00271{bottom:825.466667pt;}
.yf_c00271{bottom:826.266667pt;}
.y41_c00271{bottom:837.600000pt;}
.ye_c00271{bottom:848.933333pt;}
.y40_c00271{bottom:850.666667pt;}
.yd_c00271{bottom:861.733333pt;}
.y3f_c00271{bottom:862.800000pt;}
.yc_c00271{bottom:872.933333pt;}
.y3e_c00271{bottom:876.266667pt;}
.yb_c00271{bottom:887.333333pt;}
.y3d_c00271{bottom:889.066667pt;}
.ya_c00271{bottom:898.533333pt;}
.y3c_c00271{bottom:901.200000pt;}
.y9_c00271{bottom:913.600000pt;}
.y3b_c00271{bottom:922.933333pt;}
.y3a_c00271{bottom:926.400000pt;}
.y8_c00271{bottom:928.266667pt;}
.y39_c00271{bottom:938.933333pt;}
.y7_c00271{bottom:945.600000pt;}
.y38_c00271{bottom:953.333333pt;}
.y6_c00271{bottom:961.333333pt;}
.y5_c00271{bottom:979.866667pt;}
.y37_c00271{bottom:980.533333pt;}
.y4_c00271{bottom:996.533333pt;}
.y36_c00271{bottom:996.800000pt;}
.y1_c00271{bottom:1018.266667pt;}
.y2_c00271{bottom:1019.866667pt;}
.y3_c00271{bottom:1049.600000pt;}
.h4_c00271{height:21.333333pt;}
.h9_c00271{height:26.666667pt;}
.h8_c00271{height:37.333333pt;}
.ha_c00271{height:42.666667pt;}
.h6_c00271{height:48.000000pt;}
.h7_c00271{height:53.333333pt;}
.h5_c00271{height:58.666667pt;}
.h2_c00271{height:64.000000pt;}
.h3_c00271{height:69.333333pt;}
.h1_c00271{height:1128.000000pt;}
.h0_c00271{height:1128.319987pt;}
.w1_c00271{width:854.666667pt;}
.w0_c00271{width:854.720052pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:177.600000pt;}
.x35_c00271{left:178.933333pt;}
.x8e_c00271{left:179.866667pt;}
.x13d_c00271{left:181.466667pt;}
.x132_c00271{left:182.666667pt;}
.x18_c00271{left:191.066667pt;}
.x4_c00271{left:192.933333pt;}
.xd_c00271{left:194.133333pt;}
.x5c_c00271{left:195.066667pt;}
.x7d_c00271{left:196.000000pt;}
.x99_c00271{left:197.066667pt;}
.x9c_c00271{left:198.266667pt;}
.x142_c00271{left:200.400000pt;}
.x3a_c00271{left:202.533333pt;}
.x31_c00271{left:204.000000pt;}
.x6e_c00271{left:209.733333pt;}
.x5_c00271{left:212.400000pt;}
.x7e_c00271{left:215.200000pt;}
.x27_c00271{left:216.266667pt;}
.x10_c00271{left:217.333333pt;}
.x62_c00271{left:218.266667pt;}
.x12e_c00271{left:219.200000pt;}
.x4c_c00271{left:221.333333pt;}
.x6c_c00271{left:222.533333pt;}
.x87_c00271{left:224.266667pt;}
.x53_c00271{left:226.133333pt;}
.x13e_c00271{left:227.600000pt;}
.x19_c00271{left:229.200000pt;}
.x4d_c00271{left:230.266667pt;}
.x21_c00271{left:231.333333pt;}
.x96_c00271{left:232.666667pt;}
.x5a_c00271{left:234.800000pt;}
.x5d_c00271{left:236.000000pt;}
.x89_c00271{left:237.200000pt;}
.x69_c00271{left:238.400000pt;}
.x51_c00271{left:243.066667pt;}
.x1a_c00271{left:244.533333pt;}
.xe_c00271{left:246.933333pt;}
.x44_c00271{left:248.000000pt;}
.x67_c00271{left:250.666667pt;}
.x4e_c00271{left:252.666667pt;}
.x92_c00271{left:255.066667pt;}
.x36_c00271{left:256.000000pt;}
.x28_c00271{left:256.933333pt;}
.x8a_c00271{left:258.266667pt;}
.x22_c00271{left:259.200000pt;}
.x131_c00271{left:261.733333pt;}
.x3b_c00271{left:262.933333pt;}
.xf_c00271{left:264.533333pt;}
.x29_c00271{left:265.866667pt;}
.x84_c00271{left:268.533333pt;}
.x6_c00271{left:270.000000pt;}
.x54_c00271{left:271.600000pt;}
.x83_c00271{left:274.266667pt;}
.x47_c00271{left:275.333333pt;}
.x11_c00271{left:276.533333pt;}
.x12f_c00271{left:277.466667pt;}
.x8f_c00271{left:278.800000pt;}
.x7f_c00271{left:279.866667pt;}
.x13f_c00271{left:281.733333pt;}
.x7_c00271{left:284.666667pt;}
.x23_c00271{left:286.666667pt;}
.x3c_c00271{left:287.866667pt;}
.x80_c00271{left:289.200000pt;}
.x63_c00271{left:290.266667pt;}
.x1b_c00271{left:292.533333pt;}
.x2a_c00271{left:294.000000pt;}
.x45_c00271{left:294.933333pt;}
.x6a_c00271{left:296.000000pt;}
.x32_c00271{left:298.000000pt;}
.x7b_c00271{left:299.066667pt;}
.x73_c00271{left:300.800000pt;}
.x8b_c00271{left:302.133333pt;}
.x8_c00271{left:303.200000pt;}
.x3d_c00271{left:304.800000pt;}
.x86_c00271{left:308.133333pt;}
.x81_c00271{left:309.066667pt;}
.x2b_c00271{left:310.933333pt;}
.x93_c00271{left:312.000000pt;}
.x46_c00271{left:314.400000pt;}
.x55_c00271{left:315.733333pt;}
.x12_c00271{left:316.800000pt;}
.x1c_c00271{left:318.800000pt;}
.x3e_c00271{left:320.533333pt;}
.x6f_c00271{left:323.066667pt;}
.x8d_c00271{left:325.466667pt;}
.x4f_c00271{left:327.200000pt;}
.x5b_c00271{left:329.466667pt;}
.x52_c00271{left:330.400000pt;}
.x2c_c00271{left:332.000000pt;}
.x56_c00271{left:334.266667pt;}
.x48_c00271{left:338.133333pt;}
.x20_c00271{left:339.466667pt;}
.x5e_c00271{left:341.066667pt;}
.x1d_c00271{left:342.533333pt;}
.x9_c00271{left:344.533333pt;}
.x3f_c00271{left:346.133333pt;}
.x13b_c00271{left:347.866667pt;}
.x143_c00271{left:349.200000pt;}
.x140_c00271{left:350.533333pt;}
.x88_c00271{left:351.866667pt;}
.x37_c00271{left:353.600000pt;}
.x70_c00271{left:354.800000pt;}
.x79_c00271{left:355.866667pt;}
.x64_c00271{left:358.800000pt;}
.x5f_c00271{left:360.000000pt;}
.x49_c00271{left:361.466667pt;}
.x94_c00271{left:362.533333pt;}
.x74_c00271{left:363.466667pt;}
.x130_c00271{left:366.133333pt;}
.x9a_c00271{left:367.066667pt;}
.x13_c00271{left:368.000000pt;}
.x68_c00271{left:369.200000pt;}
.x57_c00271{left:370.133333pt;}
.x2d_c00271{left:372.266667pt;}
.x77_c00271{left:373.466667pt;}
.x1e_c00271{left:375.200000pt;}
.x40_c00271{left:376.266667pt;}
.x82_c00271{left:377.866667pt;}
.x7a_c00271{left:380.133333pt;}
.x4a_c00271{left:381.600000pt;}
.x2_c00271{left:383.333333pt;}
.x98_c00271{left:385.600000pt;}
.x7c_c00271{left:388.666667pt;}
.x75_c00271{left:390.400000pt;}
.x41_c00271{left:392.000000pt;}
.x6b_c00271{left:393.333333pt;}
.x58_c00271{left:395.733333pt;}
.x14_c00271{left:397.466667pt;}
.x97_c00271{left:398.800000pt;}
.xa_c00271{left:401.200000pt;}
.x24_c00271{left:402.533333pt;}
.x15_c00271{left:406.800000pt;}
.x42_c00271{left:407.733333pt;}
.x65_c00271{left:410.000000pt;}
.x2e_c00271{left:412.266667pt;}
.x6d_c00271{left:414.533333pt;}
.x90_c00271{left:416.133333pt;}
.x9b_c00271{left:417.200000pt;}
.xb_c00271{left:419.066667pt;}
.x85_c00271{left:420.133333pt;}
.x76_c00271{left:421.333333pt;}
.x95_c00271{left:422.666667pt;}
.x1f_c00271{left:423.866667pt;}
.x91_c00271{left:425.733333pt;}
.x50_c00271{left:428.000000pt;}
.x25_c00271{left:429.733333pt;}
.x59_c00271{left:431.866667pt;}
.x4b_c00271{left:434.400000pt;}
.x16_c00271{left:435.866667pt;}
.x33_c00271{left:437.466667pt;}
.x2f_c00271{left:438.533333pt;}
.x38_c00271{left:440.000000pt;}
.x66_c00271{left:441.066667pt;}
.x60_c00271{left:442.533333pt;}
.x72_c00271{left:444.133333pt;}
.x8c_c00271{left:446.133333pt;}
.x43_c00271{left:447.733333pt;}
.x3_c00271{left:450.266667pt;}
.x17_c00271{left:451.200000pt;}
.x71_c00271{left:452.666667pt;}
.xc_c00271{left:455.866667pt;}
.x26_c00271{left:460.133333pt;}
.x141_c00271{left:461.600000pt;}
.x30_c00271{left:462.533333pt;}
.x34_c00271{left:463.733333pt;}
.x39_c00271{left:465.866667pt;}
.x13c_c00271{left:466.933333pt;}
.x61_c00271{left:468.400000pt;}
.x78_c00271{left:472.933333pt;}
.xa9_c00271{left:492.133333pt;}
.xd4_c00271{left:493.466667pt;}
.x133_c00271{left:496.000000pt;}
.xb2_c00271{left:504.666667pt;}
.xce_c00271{left:505.600000pt;}
.x9d_c00271{left:507.866667pt;}
.xd8_c00271{left:508.800000pt;}
.xeb_c00271{left:510.000000pt;}
.x119_c00271{left:511.200000pt;}
.x128_c00271{left:512.533333pt;}
.xba_c00271{left:518.000000pt;}
.xa7_c00271{left:525.333333pt;}
.x136_c00271{left:527.733333pt;}
.x116_c00271{left:529.066667pt;}
.x110_c00271{left:530.933333pt;}
.xb3_c00271{left:532.133333pt;}
.xfb_c00271{left:535.333333pt;}
.xbb_c00271{left:537.866667pt;}
.xf1_c00271{left:540.400000pt;}
.x121_c00271{left:541.866667pt;}
.xa8_c00271{left:543.600000pt;}
.x135_c00271{left:545.866667pt;}
.x9e_c00271{left:547.866667pt;}
.x10c_c00271{left:552.266667pt;}
.xbc_c00271{left:553.600000pt;}
.x129_c00271{left:555.466667pt;}
.xec_c00271{left:557.733333pt;}
.x124_c00271{left:559.200000pt;}
.xd9_c00271{left:560.266667pt;}
.xe5_c00271{left:563.066667pt;}
.x138_c00271{left:564.000000pt;}
.x9f_c00271{left:565.466667pt;}
.xe1_c00271{left:567.733333pt;}
.x108_c00271{left:569.600000pt;}
.xd5_c00271{left:570.533333pt;}
.xb4_c00271{left:572.133333pt;}
.xcf_c00271{left:574.666667pt;}
.xc8_c00271{left:576.800000pt;}
.x12a_c00271{left:577.866667pt;}
.xda_c00271{left:578.800000pt;}
.x117_c00271{left:584.400000pt;}
.xb5_c00271{left:585.866667pt;}
.x111_c00271{left:586.933333pt;}
.xd0_c00271{left:588.800000pt;}
.x10e_c00271{left:589.733333pt;}
.xf2_c00271{left:590.933333pt;}
.xc9_c00271{left:592.533333pt;}
.xe6_c00271{left:594.400000pt;}
.xfc_c00271{left:597.066667pt;}
.xaa_c00271{left:599.333333pt;}
.x11e_c00271{left:602.533333pt;}
.xed_c00271{left:603.466667pt;}
.xf7_c00271{left:604.933333pt;}
.x112_c00271{left:605.866667pt;}
.xa0_c00271{left:607.333333pt;}
.xd6_c00271{left:608.933333pt;}
.xe2_c00271{left:612.533333pt;}
.xb6_c00271{left:614.666667pt;}
.xab_c00271{left:616.933333pt;}
.xdb_c00271{left:618.533333pt;}
.xd1_c00271{left:619.866667pt;}
.xf8_c00271{left:621.200000pt;}
.x103_c00271{left:622.133333pt;}
.x113_c00271{left:625.066667pt;}
.xfd_c00271{left:626.533333pt;}
.xa1_c00271{left:627.466667pt;}
.xe3_c00271{left:628.533333pt;}
.xc5_c00271{left:629.733333pt;}
.x11f_c00271{left:631.733333pt;}
.xb7_c00271{left:633.200000pt;}
.xf3_c00271{left:634.133333pt;}
.x125_c00271{left:635.333333pt;}
.xa2_c00271{left:637.333333pt;}
.xca_c00271{left:638.666667pt;}
.xdc_c00271{left:640.266667pt;}
.xcc_c00271{left:645.066667pt;}
.x10d_c00271{left:647.066667pt;}
.xac_c00271{left:649.866667pt;}
.x120_c00271{left:651.866667pt;}
.xe7_c00271{left:654.000000pt;}
.x104_c00271{left:655.066667pt;}
.x11a_c00271{left:656.800000pt;}
.xcd_c00271{left:659.200000pt;}
.xee_c00271{left:660.400000pt;}
.x137_c00271{left:662.933333pt;}
.xdd_c00271{left:665.200000pt;}
.x12b_c00271{left:666.800000pt;}
.xc6_c00271{left:668.400000pt;}
.xd2_c00271{left:670.400000pt;}
.xa3_c00271{left:672.533333pt;}
.x100_c00271{left:674.533333pt;}
.xb8_c00271{left:676.666667pt;}
.x11c_c00271{left:678.266667pt;}
.x134_c00271{left:679.466667pt;}
.xc7_c00271{left:682.133333pt;}
.x12c_c00271{left:683.733333pt;}
.xad_c00271{left:685.333333pt;}
.x11d_c00271{left:686.933333pt;}
.x109_c00271{left:690.133333pt;}
.xcb_c00271{left:691.200000pt;}
.xae_c00271{left:693.066667pt;}
.xe8_c00271{left:694.000000pt;}
.xbd_c00271{left:695.600000pt;}
.x105_c00271{left:696.933333pt;}
.xd3_c00271{left:698.933333pt;}
.x11b_c00271{left:700.666667pt;}
.x127_c00271{left:701.600000pt;}
.xf4_c00271{left:702.533333pt;}
.xa4_c00271{left:705.200000pt;}
.xde_c00271{left:708.666667pt;}
.xfe_c00271{left:710.000000pt;}
.x114_c00271{left:712.133333pt;}
.x12d_c00271{left:716.000000pt;}
.xf9_c00271{left:717.466667pt;}
.x10f_c00271{left:719.066667pt;}
.xaf_c00271{left:720.266667pt;}
.x115_c00271{left:721.733333pt;}
.xc0_c00271{left:728.000000pt;}
.xc2_c00271{left:728.933333pt;}
.xb9_c00271{left:729.866667pt;}
.x101_c00271{left:731.200000pt;}
.x139_c00271{left:733.066667pt;}
.xe9_c00271{left:734.933333pt;}
.xa5_c00271{left:737.466667pt;}
.xef_c00271{left:738.800000pt;}
.x118_c00271{left:739.866667pt;}
.xdf_c00271{left:741.600000pt;}
.x13a_c00271{left:743.333333pt;}
.xd7_c00271{left:745.333333pt;}
.x106_c00271{left:746.533333pt;}
.xb0_c00271{left:748.400000pt;}
.xea_c00271{left:749.333333pt;}
.xe0_c00271{left:751.200000pt;}
.xf0_c00271{left:753.866667pt;}
.xbe_c00271{left:756.133333pt;}
.xc3_c00271{left:758.000000pt;}
.x10a_c00271{left:758.933333pt;}
.xa6_c00271{left:760.800000pt;}
.xe4_c00271{left:761.733333pt;}
.x102_c00271{left:764.133333pt;}
.xf5_c00271{left:765.600000pt;}
.x122_c00271{left:766.533333pt;}
.x107_c00271{left:768.666667pt;}
.xff_c00271{left:770.800000pt;}
.x126_c00271{left:772.800000pt;}
.x10b_c00271{left:775.866667pt;}
.xc1_c00271{left:776.933333pt;}
.xb1_c00271{left:780.666667pt;}
.xbf_c00271{left:782.400000pt;}
.xc4_c00271{left:783.333333pt;}
.xf6_c00271{left:784.800000pt;}
.x123_c00271{left:786.000000pt;}
.xfa_c00271{left:790.400000pt;}
}





/* 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_c00272 {
    display:none;
  }
  .loading-indicator_c00272.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00272 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_c00272 { 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_c00272" -> "#page-container .classname_c00272")
 */
.pf_c00272 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00272 { /* 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_c00272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00272 { /* 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_c00272 { /* 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_c00272 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00272 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00272 {overflow:visible;}
  }
}
.c_c00272 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00272 { /* 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_c00272:after { /* webkit #35443 */
  content: '';
}
.t_c00272:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00272 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 */
}
.__c00272 { /* 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_c00272 { /* info for Javascript */
  display:none;
}
.l_c00272 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00272 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00272 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00272: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_c00272 {
    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_c00272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00272.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_c00272 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00272;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.000000;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;}
.m73_c00272{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m74_c00272{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00272{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m95_c00272{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m91_c00272{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00272{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00272{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m47_c00272{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m58_c00272{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00272{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00272{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mef_c00272{transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);}
.mb_c00272{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00272{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00272{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00272{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00272{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m84_c00272{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00272{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m22_c00272{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m96_c00272{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m5_c00272{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00272{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00272{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m56_c00272{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mec_c00272{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00272{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m16_c00272{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md6_c00272{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m43_c00272{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00272{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m97_c00272{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00272{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m92_c00272{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m41_c00272{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf_c00272{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00272{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00272{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m83_c00272{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md8_c00272{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m31_c00272{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00272{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00272{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m26_c00272{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m90_c00272{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mac_c00272{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00272{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00272{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m64_c00272{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00272{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00272{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m6_c00272{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m57_c00272{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m85_c00272{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m18_c00272{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00272{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m55_c00272{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00272{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00272{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00272{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m30_c00272{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00272{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m27_c00272{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mca_c00272{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00272{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m105_c00272{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m9_c00272{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m12_c00272{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7_c00272{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00272{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m107_c00272{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m8_c00272{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00272{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00272{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00272{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00272{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m98_c00272{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00272{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4_c00272{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00272{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m21_c00272{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m20_c00272{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m23_c00272{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m19_c00272{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mae_c00272{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m81_c00272{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.med_c00272{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.me8_c00272{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m10_c00272{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00272{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00272{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00272{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m24_c00272{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00272{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m100_c00272{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m14_c00272{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m82_c00272{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00272{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00272{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m89_c00272{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00272{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mba_c00272{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00272{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00272{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00272{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md1_c00272{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.ma_c00272{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00272{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00272{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00272{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m11_c00272{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me3_c00272{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00272{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00272{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00272{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00272{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00272{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md_c00272{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m44_c00272{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m50_c00272{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m59_c00272{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00272{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00272{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m108_c00272{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00272{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m104_c00272{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m66_c00272{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00272{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m51_c00272{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00272{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00272{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00272{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00272{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m49_c00272{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00272{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m15_c00272{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me0_c00272{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00272{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m54_c00272{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00272{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00272{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m17_c00272{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m67_c00272{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00272{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m42_c00272{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00272{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m109_c00272{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m48_c00272{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00272{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md9_c00272{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00272{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m35_c00272{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00272{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m34_c00272{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m36_c00272{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mab_c00272{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m45_c00272{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m39_c00272{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md0_c00272{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mee_c00272{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00272{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m40_c00272{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00272{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m99_c00272{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00272{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m94_c00272{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00272{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00272{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m80_c00272{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m88_c00272{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m62_c00272{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.me_c00272{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00272{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m65_c00272{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m106_c00272{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00272{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m53_c00272{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00272{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mc_c00272{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00272{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m60_c00272{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m38_c00272{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00272{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m13_c00272{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m68_c00272{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m63_c00272{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m72_c00272{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00272{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00272{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00272{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00272{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00272{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00272{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00272{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md7_c00272{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mde_c00272{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md5_c00272{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m37_c00272{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m28_c00272{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m102_c00272{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00272{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00272{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00272{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m33_c00272{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00272{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.maf_c00272{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m25_c00272{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m46_c00272{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m69_c00272{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me6_c00272{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m93_c00272{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md4_c00272{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.me5_c00272{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mce_c00272{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00272{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00272{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m103_c00272{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00272{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md2_c00272{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m86_c00272{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mff_c00272{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m101_c00272{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m61_c00272{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00272{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md3_c00272{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00272{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.meb_c00272{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00272{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00272{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mda_c00272{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00272{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00272{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mad_c00272{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00272{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m76_c00272{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.me4_c00272{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00272{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00272{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00272{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m29_c00272{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00272{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00272{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00272{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00272{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00272{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.me1_c00272{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.me2_c00272{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mea_c00272{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00272{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00272{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m78_c00272{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00272{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00272{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.me9_c00272{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m75_c00272{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m32_c00272{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m71_c00272{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m87_c00272{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m79_c00272{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m77_c00272{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m52_c00272{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m70_c00272{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00272{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00272{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00272{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.me7_c00272{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m110_c00272{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.429250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429250,0.000000,0.000000,0.250000,0,0);}
.maa_c00272{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00272{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls0_c00272{letter-spacing:0.000000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{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__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:-17.826087px;}
.ws1_c00272{word-spacing:-14.799092px;}
.ws3_c00272{word-spacing:-4.861111px;}
.ws2_c00272{word-spacing:-1.860072px;}
.wsd_c00272{word-spacing:0.000000px;}
.wsc_c00272{word-spacing:4.062500px;}
.ws4_c00272{word-spacing:8.840772px;}
.ws8_c00272{word-spacing:15.833333px;}
.ws9_c00272{word-spacing:16.785714px;}
.ws6_c00272{word-spacing:29.583333px;}
.ws5_c00272{word-spacing:34.642857px;}
.ws7_c00272{word-spacing:44.166667px;}
.wsa_c00272{word-spacing:50.416667px;}
.wsb_c00272{word-spacing:74.722222px;}
.fc0_c00272{color:transparent;}
.fs6_c00272{font-size:30.000000px;}
.fs5_c00272{font-size:54.000000px;}
.fs4_c00272{font-size:60.000000px;}
.fs3_c00272{font-size:66.000000px;}
.fs2_c00272{font-size:72.000000px;}
.fs1_c00272{font-size:78.000000px;}
.fs0_c00272{font-size:102.000000px;}
.y0_c00272{bottom:0.000000px;}
.y67_c00272{bottom:83.550000px;}
.y66_c00272{bottom:173.550000px;}
.y65_c00272{bottom:190.500000px;}
.y35_c00272{bottom:190.800000px;}
.y64_c00272{bottom:204.900000px;}
.y34_c00272{bottom:208.800000px;}
.y63_c00272{bottom:219.300000px;}
.y33_c00272{bottom:226.500000px;}
.y62_c00272{bottom:233.700000px;}
.y61_c00272{bottom:248.400000px;}
.y32_c00272{bottom:248.700000px;}
.y31_c00272{bottom:261.750000px;}
.y60_c00272{bottom:262.500000px;}
.y30_c00272{bottom:276.900000px;}
.y2f_c00272{bottom:290.400000px;}
.y2e_c00272{bottom:306.300000px;}
.y2d_c00272{bottom:320.400000px;}
.y5f_c00272{bottom:327.600000px;}
.y2c_c00272{bottom:333.750000px;}
.y5e_c00272{bottom:345.600000px;}
.y2b_c00272{bottom:349.200000px;}
.y5d_c00272{bottom:362.850000px;}
.y2a_c00272{bottom:368.550000px;}
.y5c_c00272{bottom:380.850000px;}
.y29_c00272{bottom:386.250000px;}
.y28_c00272{bottom:403.950000px;}
.y5b_c00272{bottom:411.450000px;}
.y27_c00272{bottom:422.250000px;}
.y5a_c00272{bottom:430.950000px;}
.y26_c00272{bottom:439.950000px;}
.y59_c00272{bottom:447.150000px;}
.y58_c00272{bottom:465.150000px;}
.y25_c00272{bottom:467.400000px;}
.y24_c00272{bottom:479.700000px;}
.y57_c00272{bottom:482.850000px;}
.y23_c00272{bottom:497.400000px;}
.y56_c00272{bottom:502.950000px;}
.y22_c00272{bottom:515.100000px;}
.y55_c00272{bottom:527.100000px;}
.y21_c00272{bottom:532.800000px;}
.y54_c00272{bottom:545.100000px;}
.y20_c00272{bottom:554.700000px;}
.y1f_c00272{bottom:572.400000px;}
.y53_c00272{bottom:580.650000px;}
.y52_c00272{bottom:602.850000px;}
.y1e_c00272{bottom:603.750000px;}
.y51_c00272{bottom:621.600000px;}
.y1d_c00272{bottom:625.650000px;}
.y50_c00272{bottom:639.600000px;}
.y1c_c00272{bottom:648.300000px;}
.y4f_c00272{bottom:657.300000px;}
.y1b_c00272{bottom:666.300000px;}
.y4e_c00272{bottom:675.300000px;}
.y1a_c00272{bottom:684.300000px;}
.y4d_c00272{bottom:693.000000px;}
.y19_c00272{bottom:702.000000px;}
.y4c_c00272{bottom:710.700000px;}
.y18_c00272{bottom:720.000000px;}
.y17_c00272{bottom:738.750000px;}
.y4b_c00272{bottom:740.550000px;}
.y4a_c00272{bottom:758.400000px;}
.y16_c00272{bottom:759.450000px;}
.y49_c00272{bottom:776.400000px;}
.y15_c00272{bottom:777.150000px;}
.y48_c00272{bottom:794.100000px;}
.y14_c00272{bottom:795.150000px;}
.y47_c00272{bottom:812.400000px;}
.y13_c00272{bottom:812.850000px;}
.y46_c00272{bottom:830.100000px;}
.y12_c00272{bottom:830.850000px;}
.y45_c00272{bottom:848.100000px;}
.y11_c00272{bottom:851.100000px;}
.y10_c00272{bottom:865.500000px;}
.y44_c00272{bottom:866.100000px;}
.yf_c00272{bottom:885.600000px;}
.y43_c00272{bottom:892.800000px;}
.y42_c00272{bottom:901.800000px;}
.ye_c00272{bottom:903.600000px;}
.y41_c00272{bottom:919.500000px;}
.yd_c00272{bottom:921.600000px;}
.y40_c00272{bottom:937.200000px;}
.yc_c00272{bottom:939.300000px;}
.y3f_c00272{bottom:954.900000px;}
.yb_c00272{bottom:961.500000px;}
.y3e_c00272{bottom:972.600000px;}
.ya_c00272{bottom:979.200000px;}
.y3d_c00272{bottom:990.600000px;}
.y9_c00272{bottom:997.200000px;}
.y3c_c00272{bottom:1008.300000px;}
.y8_c00272{bottom:1014.900000px;}
.y3b_c00272{bottom:1026.300000px;}
.y7_c00272{bottom:1037.550000px;}
.y3a_c00272{bottom:1044.600000px;}
.y6_c00272{bottom:1054.800000px;}
.y39_c00272{bottom:1061.850000px;}
.y38_c00272{bottom:1079.850000px;}
.y5_c00272{bottom:1081.050000px;}
.y37_c00272{bottom:1097.550000px;}
.y4_c00272{bottom:1099.050000px;}
.y36_c00272{bottom:1115.250000px;}
.y3_c00272{bottom:1116.750000px;}
.y2_c00272{bottom:1141.200000px;}
.y1_c00272{bottom:1142.700000px;}
.h7_c00272{height:30.000000px;}
.h6_c00272{height:54.000000px;}
.h5_c00272{height:60.000000px;}
.h4_c00272{height:66.000000px;}
.h3_c00272{height:72.000000px;}
.h2_c00272{height:78.000000px;}
.h1_c00272{height:102.000000px;}
.h0_c00272{height:1269.000000px;}
.w1_c00272{width:961.500000px;}
.w0_c00272{width:961.560058px;}
.x0_c00272{left:0.000000px;}
.x8e_c00272{left:85.650000px;}
.xa3_c00272{left:89.250000px;}
.x6e_c00272{left:92.550000px;}
.x45_c00272{left:94.350000px;}
.x30_c00272{left:95.700000px;}
.x3_c00272{left:97.500000px;}
.x9d_c00272{left:104.100000px;}
.x91_c00272{left:105.150000px;}
.x89_c00272{left:106.200000px;}
.x73_c00272{left:107.250000px;}
.x47_c00272{left:109.050000px;}
.x6c_c00272{left:110.100000px;}
.x60_c00272{left:111.150000px;}
.x34_c00272{left:112.800000px;}
.xc_c00272{left:114.300000px;}
.x14_c00272{left:115.500000px;}
.x9b_c00272{left:117.750000px;}
.x96_c00272{left:118.800000px;}
.x4_c00272{left:127.050000px;}
.x5b_c00272{left:128.100000px;}
.x74_c00272{left:129.600000px;}
.xa1_c00272{left:130.650000px;}
.x1b_c00272{left:132.450000px;}
.x15_c00272{left:135.600000px;}
.x84_c00272{left:137.550000px;}
.x2f_c00272{left:139.650000px;}
.x44_c00272{left:141.600000px;}
.x18_c00272{left:144.300000px;}
.x64_c00272{left:146.700000px;}
.x8f_c00272{left:149.700000px;}
.xd_c00272{left:151.350000px;}
.x3b_c00272{left:153.000000px;}
.x6a_c00272{left:155.250000px;}
.x28_c00272{left:156.900000px;}
.x9f_c00272{left:159.150000px;}
.x80_c00272{left:161.400000px;}
.x70_c00272{left:162.600000px;}
.xa5_c00272{left:164.550000px;}
.xa2_c00272{left:166.800000px;}
.x52_c00272{left:169.800000px;}
.x21_c00272{left:172.500000px;}
.x65_c00272{left:173.700000px;}
.x48_c00272{left:175.950000px;}
.x1c_c00272{left:177.150000px;}
.x75_c00272{left:178.200000px;}
.x5_c00272{left:181.350000px;}
.x4a_c00272{left:182.550000px;}
.x31_c00272{left:183.600000px;}
.x16_c00272{left:185.250000px;}
.x3c_c00272{left:186.900000px;}
.x6b_c00272{left:188.700000px;}
.x35_c00272{left:192.000000px;}
.x81_c00272{left:193.500000px;}
.x22_c00272{left:195.600000px;}
.x7e_c00272{left:197.700000px;}
.x61_c00272{left:199.050000px;}
.x57_c00272{left:201.000000px;}
.x49_c00272{left:204.750000px;}
.x5c_c00272{left:208.350000px;}
.x8a_c00272{left:210.600000px;}
.xa6_c00272{left:213.300000px;}
.x29_c00272{left:214.500000px;}
.x6_c00272{left:215.550000px;}
.x17_c00272{left:216.900000px;}
.xe_c00272{left:217.950000px;}
.x97_c00272{left:219.300000px;}
.x9e_c00272{left:221.100000px;}
.x76_c00272{left:224.700000px;}
.x79_c00272{left:226.200000px;}
.x92_c00272{left:227.550000px;}
.x58_c00272{left:230.100000px;}
.x1d_c00272{left:231.900000px;}
.x3d_c00272{left:232.950000px;}
.x98_c00272{left:234.000000px;}
.x7_c00272{left:235.650000px;}
.x23_c00272{left:237.300000px;}
.x4b_c00272{left:238.350000px;}
.x4f_c00272{left:239.400000px;}
.xf_c00272{left:241.050000px;}
.x93_c00272{left:242.250000px;}
.x6f_c00272{left:244.050000px;}
.x2a_c00272{left:245.850000px;}
.x99_c00272{left:248.400000px;}
.x53_c00272{left:249.450000px;}
.x82_c00272{left:250.500000px;}
.x5d_c00272{left:252.300000px;}
.x71_c00272{left:253.350000px;}
.x36_c00272{left:255.600000px;}
.x59_c00272{left:256.800000px;}
.xa4_c00272{left:257.850000px;}
.x3e_c00272{left:259.950000px;}
.x5e_c00272{left:261.600000px;}
.x9a_c00272{left:263.100000px;}
.x86_c00272{left:264.600000px;}
.x6d_c00272{left:267.000000px;}
.x66_c00272{left:268.050000px;}
.x2b_c00272{left:270.000000px;}
.x19_c00272{left:273.300000px;}
.x50_c00272{left:274.650000px;}
.x54_c00272{left:276.450000px;}
.x10_c00272{left:277.800000px;}
.x46_c00272{left:283.050000px;}
.x8c_c00272{left:286.200000px;}
.x24_c00272{left:287.400000px;}
.x9c_c00272{left:291.900000px;}
.x8_c00272{left:294.000000px;}
.x32_c00272{left:296.550000px;}
.x77_c00272{left:299.250000px;}
.x1e_c00272{left:300.600000px;}
.x87_c00272{left:302.400000px;}
.x4c_c00272{left:304.650000px;}
.x2c_c00272{left:307.050000px;}
.x5a_c00272{left:308.400000px;}
.x3f_c00272{left:313.200000px;}
.x33_c00272{left:314.850000px;}
.x62_c00272{left:316.350000px;}
.x7a_c00272{left:319.050000px;}
.x25_c00272{left:320.100000px;}
.xa0_c00272{left:321.300000px;}
.x40_c00272{left:324.000000px;}
.x4d_c00272{left:326.550000px;}
.x94_c00272{left:329.400000px;}
.x72_c00272{left:330.450000px;}
.x55_c00272{left:332.700000px;}
.x1_c00272{left:333.750000px;}
.x37_c00272{left:336.300000px;}
.x83_c00272{left:337.950000px;}
.x41_c00272{left:339.450000px;}
.x26_c00272{left:343.800000px;}
.x2d_c00272{left:345.900000px;}
.x5f_c00272{left:347.250000px;}
.x7f_c00272{left:354.000000px;}
.x7b_c00272{left:355.050000px;}
.x51_c00272{left:356.400000px;}
.x95_c00272{left:357.450000px;}
.x38_c00272{left:359.700000px;}
.x78_c00272{left:361.200000px;}
.x11_c00272{left:362.400000px;}
.x4e_c00272{left:365.100000px;}
.x42_c00272{left:366.150000px;}
.x2e_c00272{left:367.800000px;}
.x7c_c00272{left:369.750000px;}
.x9_c00272{left:372.150000px;}
.x68_c00272{left:376.350000px;}
.x1a_c00272{left:378.450000px;}
.x1f_c00272{left:381.300000px;}
.x12_c00272{left:384.300000px;}
.x88_c00272{left:385.500000px;}
.x8b_c00272{left:386.550000px;}
.xa_c00272{left:389.400000px;}
.x20_c00272{left:392.100000px;}
.x56_c00272{left:393.600000px;}
.x27_c00272{left:396.300000px;}
.xa7_c00272{left:397.800000px;}
.x8d_c00272{left:399.450000px;}
.x7d_c00272{left:400.650000px;}
.x43_c00272{left:402.150000px;}
.x13_c00272{left:403.800000px;}
.x39_c00272{left:405.750000px;}
.x67_c00272{left:410.250000px;}
.x90_c00272{left:411.450000px;}
.x69_c00272{left:413.400000px;}
.x63_c00272{left:414.900000px;}
.x85_c00272{left:423.450000px;}
.x3a_c00272{left:427.050000px;}
.xb_c00272{left:429.300000px;}
.x14b_c00272{left:446.400000px;}
.x140_c00272{left:448.500000px;}
.x117_c00272{left:450.750000px;}
.x149_c00272{left:454.500000px;}
.x14d_c00272{left:458.400000px;}
.xc0_c00272{left:459.750000px;}
.x148_c00272{left:463.650000px;}
.xee_c00272{left:466.050000px;}
.x135_c00272{left:467.700000px;}
.x111_c00272{left:468.750000px;}
.x101_c00272{left:469.800000px;}
.xe1_c00272{left:471.150000px;}
.xb0_c00272{left:472.200000px;}
.xa8_c00272{left:473.700000px;}
.x154_c00272{left:481.800000px;}
.x136_c00272{left:483.900000px;}
.x12f_c00272{left:486.750000px;}
.xb7_c00272{left:487.950000px;}
.xc9_c00272{left:489.300000px;}
.xf4_c00272{left:491.400000px;}
.x102_c00272{left:493.200000px;}
.xd3_c00272{left:494.400000px;}
.x133_c00272{left:495.750000px;}
.x13d_c00272{left:497.700000px;}
.xe9_c00272{left:500.400000px;}
.xf8_c00272{left:501.900000px;}
.x14c_c00272{left:503.250000px;}
.x112_c00272{left:504.750000px;}
.x13b_c00272{left:506.250000px;}
.x11a_c00272{left:508.350000px;}
.xdd_c00272{left:511.800000px;}
.xb1_c00272{left:515.700000px;}
.xa9_c00272{left:519.750000px;}
.xd9_c00272{left:524.400000px;}
.xc1_c00272{left:526.050000px;}
.x125_c00272{left:527.400000px;}
.x113_c00272{left:528.450000px;}
.xef_c00272{left:529.800000px;}
.xb2_c00272{left:531.150000px;}
.x129_c00272{left:532.200000px;}
.x134_c00272{left:533.550000px;}
.xd4_c00272{left:537.300000px;}
.xe2_c00272{left:539.250000px;}
.x139_c00272{left:540.450000px;}
.x115_c00272{left:541.800000px;}
.x152_c00272{left:543.000000px;}
.xc2_c00272{left:545.100000px;}
.xf0_c00272{left:546.300000px;}
.xde_c00272{left:547.800000px;}
.xe3_c00272{left:549.750000px;}
.x130_c00272{left:551.550000px;}
.x118_c00272{left:554.550000px;}
.x103_c00272{left:556.500000px;}
.x10d_c00272{left:559.500000px;}
.x107_c00272{left:560.700000px;}
.xaa_c00272{left:561.900000px;}
.xf5_c00272{left:566.250000px;}
.xf9_c00272{left:568.500000px;}
.x137_c00272{left:570.000000px;}
.x13e_c00272{left:571.050000px;}
.xc3_c00272{left:572.100000px;}
.xea_c00272{left:575.250000px;}
.xb8_c00272{left:576.450000px;}
.xb3_c00272{left:578.250000px;}
.x116_c00272{left:579.300000px;}
.x153_c00272{left:580.500000px;}
.x120_c00272{left:581.700000px;}
.x126_c00272{left:583.200000px;}
.x145_c00272{left:585.300000px;}
.xd0_c00272{left:587.100000px;}
.xfe_c00272{left:588.750000px;}
.xd5_c00272{left:590.550000px;}
.x10e_c00272{left:591.900000px;}
.x10a_c00272{left:592.950000px;}
.x131_c00272{left:595.050000px;}
.xb9_c00272{left:596.250000px;}
.x121_c00272{left:597.600000px;}
.x143_c00272{left:598.650000px;}
.xab_c00272{left:600.000000px;}
.xe4_c00272{left:601.950000px;}
.x11b_c00272{left:604.500000px;}
.x12a_c00272{left:606.000000px;}
.x14f_c00272{left:607.050000px;}
.xb4_c00272{left:608.250000px;}
.x14a_c00272{left:611.400000px;}
.xca_c00272{left:613.350000px;}
.xf6_c00272{left:618.150000px;}
.xac_c00272{left:620.100000px;}
.x10b_c00272{left:621.450000px;}
.xd6_c00272{left:624.450000px;}
.xc4_c00272{left:626.100000px;}
.xe5_c00272{left:627.900000px;}
.x150_c00272{left:630.150000px;}
.xba_c00272{left:633.300000px;}
.xeb_c00272{left:634.350000px;}
.x13a_c00272{left:635.850000px;}
.xc5_c00272{left:636.900000px;}
.x14e_c00272{left:638.850000px;}
.x141_c00272{left:640.050000px;}
.xfa_c00272{left:641.250000px;}
.xbb_c00272{left:643.050000px;}
.xe6_c00272{left:644.400000px;}
.x104_c00272{left:646.200000px;}
.x11c_c00272{left:647.250000px;}
.xcb_c00272{left:648.300000px;}
.xc6_c00272{left:649.800000px;}
.xd7_c00272{left:654.300000px;}
.xec_c00272{left:655.950000px;}
.xff_c00272{left:657.450000px;}
.x12b_c00272{left:658.950000px;}
.xb5_c00272{left:662.250000px;}
.xf1_c00272{left:663.450000px;}
.x122_c00272{left:664.950000px;}
.x10f_c00272{left:667.200000px;}
.xfb_c00272{left:668.550000px;}
.x105_c00272{left:670.650000px;}
.xcc_c00272{left:672.750000px;}
.x127_c00272{left:674.700000px;}
.x11d_c00272{left:677.850000px;}
.x119_c00272{left:681.000000px;}
.xbc_c00272{left:682.650000px;}
.x13f_c00272{left:684.150000px;}
.x13c_c00272{left:687.150000px;}
.xd8_c00272{left:688.200000px;}
.xc7_c00272{left:690.150000px;}
.xda_c00272{left:692.850000px;}
.x128_c00272{left:694.200000px;}
.x155_c00272{left:695.850000px;}
.xf2_c00272{left:698.400000px;}
.x11e_c00272{left:699.450000px;}
.x132_c00272{left:701.700000px;}
.x12c_c00272{left:703.200000px;}
.xfc_c00272{left:704.550000px;}
.xd1_c00272{left:705.600000px;}
.x123_c00272{left:706.650000px;}
.xcd_c00272{left:708.000000px;}
.xc8_c00272{left:709.650000px;}
.xdb_c00272{left:711.600000px;}
.xb6_c00272{left:712.950000px;}
.xad_c00272{left:714.450000px;}
.xbd_c00272{left:716.850000px;}
.x108_c00272{left:719.700000px;}
.xf7_c00272{left:722.250000px;}
.xdf_c00272{left:724.200000px;}
.x12d_c00272{left:725.850000px;}
.x142_c00272{left:728.250000px;}
.x138_c00272{left:729.450000px;}
.x100_c00272{left:730.500000px;}
.xd2_c00272{left:731.550000px;}
.x106_c00272{left:733.650000px;}
.xae_c00272{left:735.750000px;}
.xbe_c00272{left:737.700000px;}
.x109_c00272{left:739.500000px;}
.x114_c00272{left:741.150000px;}
.xce_c00272{left:742.200000px;}
.xdc_c00272{left:744.000000px;}
.xed_c00272{left:747.900000px;}
.x124_c00272{left:750.150000px;}
.xcf_c00272{left:751.200000px;}
.xe7_c00272{left:756.000000px;}
.xfd_c00272{left:757.500000px;}
.xf3_c00272{left:759.600000px;}
.x10c_c00272{left:762.900000px;}
.x2_c00272{left:763.950000px;}
.xbf_c00272{left:765.450000px;}
.x12e_c00272{left:767.550000px;}
.x151_c00272{left:770.100000px;}
.x146_c00272{left:771.750000px;}
.xe0_c00272{left:773.550000px;}
.x144_c00272{left:775.050000px;}
.x11f_c00272{left:776.100000px;}
.xe8_c00272{left:777.600000px;}
.x110_c00272{left:784.500000px;}
.xaf_c00272{left:787.950000px;}
.x147_c00272{left:792.300000px;}
.x156_c00272{left:844.950000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws0_c00272{word-spacing:-15.845411pt;}
.ws1_c00272{word-spacing:-13.154748pt;}
.ws3_c00272{word-spacing:-4.320988pt;}
.ws2_c00272{word-spacing:-1.653398pt;}
.wsd_c00272{word-spacing:0.000000pt;}
.wsc_c00272{word-spacing:3.611111pt;}
.ws4_c00272{word-spacing:7.858464pt;}
.ws8_c00272{word-spacing:14.074074pt;}
.ws9_c00272{word-spacing:14.920635pt;}
.ws6_c00272{word-spacing:26.296296pt;}
.ws5_c00272{word-spacing:30.793651pt;}
.ws7_c00272{word-spacing:39.259259pt;}
.wsa_c00272{word-spacing:44.814815pt;}
.wsb_c00272{word-spacing:66.419753pt;}
.fs6_c00272{font-size:26.666667pt;}
.fs5_c00272{font-size:48.000000pt;}
.fs4_c00272{font-size:53.333333pt;}
.fs3_c00272{font-size:58.666667pt;}
.fs2_c00272{font-size:64.000000pt;}
.fs1_c00272{font-size:69.333333pt;}
.fs0_c00272{font-size:90.666667pt;}
.y0_c00272{bottom:0.000000pt;}
.y67_c00272{bottom:74.266667pt;}
.y66_c00272{bottom:154.266667pt;}
.y65_c00272{bottom:169.333333pt;}
.y35_c00272{bottom:169.600000pt;}
.y64_c00272{bottom:182.133333pt;}
.y34_c00272{bottom:185.600000pt;}
.y63_c00272{bottom:194.933333pt;}
.y33_c00272{bottom:201.333333pt;}
.y62_c00272{bottom:207.733333pt;}
.y61_c00272{bottom:220.800000pt;}
.y32_c00272{bottom:221.066667pt;}
.y31_c00272{bottom:232.666667pt;}
.y60_c00272{bottom:233.333333pt;}
.y30_c00272{bottom:246.133333pt;}
.y2f_c00272{bottom:258.133333pt;}
.y2e_c00272{bottom:272.266667pt;}
.y2d_c00272{bottom:284.800000pt;}
.y5f_c00272{bottom:291.200000pt;}
.y2c_c00272{bottom:296.666667pt;}
.y5e_c00272{bottom:307.200000pt;}
.y2b_c00272{bottom:310.400000pt;}
.y5d_c00272{bottom:322.533333pt;}
.y2a_c00272{bottom:327.600000pt;}
.y5c_c00272{bottom:338.533333pt;}
.y29_c00272{bottom:343.333333pt;}
.y28_c00272{bottom:359.066667pt;}
.y5b_c00272{bottom:365.733333pt;}
.y27_c00272{bottom:375.333333pt;}
.y5a_c00272{bottom:383.066667pt;}
.y26_c00272{bottom:391.066667pt;}
.y59_c00272{bottom:397.466667pt;}
.y58_c00272{bottom:413.466667pt;}
.y25_c00272{bottom:415.466667pt;}
.y24_c00272{bottom:426.400000pt;}
.y57_c00272{bottom:429.200000pt;}
.y23_c00272{bottom:442.133333pt;}
.y56_c00272{bottom:447.066667pt;}
.y22_c00272{bottom:457.866667pt;}
.y55_c00272{bottom:468.533333pt;}
.y21_c00272{bottom:473.600000pt;}
.y54_c00272{bottom:484.533333pt;}
.y20_c00272{bottom:493.066667pt;}
.y1f_c00272{bottom:508.800000pt;}
.y53_c00272{bottom:516.133333pt;}
.y52_c00272{bottom:535.866667pt;}
.y1e_c00272{bottom:536.666667pt;}
.y51_c00272{bottom:552.533333pt;}
.y1d_c00272{bottom:556.133333pt;}
.y50_c00272{bottom:568.533333pt;}
.y1c_c00272{bottom:576.266667pt;}
.y4f_c00272{bottom:584.266667pt;}
.y1b_c00272{bottom:592.266667pt;}
.y4e_c00272{bottom:600.266667pt;}
.y1a_c00272{bottom:608.266667pt;}
.y4d_c00272{bottom:616.000000pt;}
.y19_c00272{bottom:624.000000pt;}
.y4c_c00272{bottom:631.733333pt;}
.y18_c00272{bottom:640.000000pt;}
.y17_c00272{bottom:656.666667pt;}
.y4b_c00272{bottom:658.266667pt;}
.y4a_c00272{bottom:674.133333pt;}
.y16_c00272{bottom:675.066667pt;}
.y49_c00272{bottom:690.133333pt;}
.y15_c00272{bottom:690.800000pt;}
.y48_c00272{bottom:705.866667pt;}
.y14_c00272{bottom:706.800000pt;}
.y47_c00272{bottom:722.133333pt;}
.y13_c00272{bottom:722.533333pt;}
.y46_c00272{bottom:737.866667pt;}
.y12_c00272{bottom:738.533333pt;}
.y45_c00272{bottom:753.866667pt;}
.y11_c00272{bottom:756.533333pt;}
.y10_c00272{bottom:769.333333pt;}
.y44_c00272{bottom:769.866667pt;}
.yf_c00272{bottom:787.200000pt;}
.y43_c00272{bottom:793.600000pt;}
.y42_c00272{bottom:801.600000pt;}
.ye_c00272{bottom:803.200000pt;}
.y41_c00272{bottom:817.333333pt;}
.yd_c00272{bottom:819.200000pt;}
.y40_c00272{bottom:833.066667pt;}
.yc_c00272{bottom:834.933333pt;}
.y3f_c00272{bottom:848.800000pt;}
.yb_c00272{bottom:854.666667pt;}
.y3e_c00272{bottom:864.533333pt;}
.ya_c00272{bottom:870.400000pt;}
.y3d_c00272{bottom:880.533333pt;}
.y9_c00272{bottom:886.400000pt;}
.y3c_c00272{bottom:896.266667pt;}
.y8_c00272{bottom:902.133333pt;}
.y3b_c00272{bottom:912.266667pt;}
.y7_c00272{bottom:922.266667pt;}
.y3a_c00272{bottom:928.533333pt;}
.y6_c00272{bottom:937.600000pt;}
.y39_c00272{bottom:943.866667pt;}
.y38_c00272{bottom:959.866667pt;}
.y5_c00272{bottom:960.933333pt;}
.y37_c00272{bottom:975.600000pt;}
.y4_c00272{bottom:976.933333pt;}
.y36_c00272{bottom:991.333333pt;}
.y3_c00272{bottom:992.666667pt;}
.y2_c00272{bottom:1014.400000pt;}
.y1_c00272{bottom:1015.733333pt;}
.h7_c00272{height:26.666667pt;}
.h6_c00272{height:48.000000pt;}
.h5_c00272{height:53.333333pt;}
.h4_c00272{height:58.666667pt;}
.h3_c00272{height:64.000000pt;}
.h2_c00272{height:69.333333pt;}
.h1_c00272{height:90.666667pt;}
.h0_c00272{height:1128.000000pt;}
.w1_c00272{width:854.666667pt;}
.w0_c00272{width:854.720052pt;}
.x0_c00272{left:0.000000pt;}
.x8e_c00272{left:76.133333pt;}
.xa3_c00272{left:79.333333pt;}
.x6e_c00272{left:82.266667pt;}
.x45_c00272{left:83.866667pt;}
.x30_c00272{left:85.066667pt;}
.x3_c00272{left:86.666667pt;}
.x9d_c00272{left:92.533333pt;}
.x91_c00272{left:93.466667pt;}
.x89_c00272{left:94.400000pt;}
.x73_c00272{left:95.333333pt;}
.x47_c00272{left:96.933333pt;}
.x6c_c00272{left:97.866667pt;}
.x60_c00272{left:98.800000pt;}
.x34_c00272{left:100.266667pt;}
.xc_c00272{left:101.600000pt;}
.x14_c00272{left:102.666667pt;}
.x9b_c00272{left:104.666667pt;}
.x96_c00272{left:105.600000pt;}
.x4_c00272{left:112.933333pt;}
.x5b_c00272{left:113.866667pt;}
.x74_c00272{left:115.200000pt;}
.xa1_c00272{left:116.133333pt;}
.x1b_c00272{left:117.733333pt;}
.x15_c00272{left:120.533333pt;}
.x84_c00272{left:122.266667pt;}
.x2f_c00272{left:124.133333pt;}
.x44_c00272{left:125.866667pt;}
.x18_c00272{left:128.266667pt;}
.x64_c00272{left:130.400000pt;}
.x8f_c00272{left:133.066667pt;}
.xd_c00272{left:134.533333pt;}
.x3b_c00272{left:136.000000pt;}
.x6a_c00272{left:138.000000pt;}
.x28_c00272{left:139.466667pt;}
.x9f_c00272{left:141.466667pt;}
.x80_c00272{left:143.466667pt;}
.x70_c00272{left:144.533333pt;}
.xa5_c00272{left:146.266667pt;}
.xa2_c00272{left:148.266667pt;}
.x52_c00272{left:150.933333pt;}
.x21_c00272{left:153.333333pt;}
.x65_c00272{left:154.400000pt;}
.x48_c00272{left:156.400000pt;}
.x1c_c00272{left:157.466667pt;}
.x75_c00272{left:158.400000pt;}
.x5_c00272{left:161.200000pt;}
.x4a_c00272{left:162.266667pt;}
.x31_c00272{left:163.200000pt;}
.x16_c00272{left:164.666667pt;}
.x3c_c00272{left:166.133333pt;}
.x6b_c00272{left:167.733333pt;}
.x35_c00272{left:170.666667pt;}
.x81_c00272{left:172.000000pt;}
.x22_c00272{left:173.866667pt;}
.x7e_c00272{left:175.733333pt;}
.x61_c00272{left:176.933333pt;}
.x57_c00272{left:178.666667pt;}
.x49_c00272{left:182.000000pt;}
.x5c_c00272{left:185.200000pt;}
.x8a_c00272{left:187.200000pt;}
.xa6_c00272{left:189.600000pt;}
.x29_c00272{left:190.666667pt;}
.x6_c00272{left:191.600000pt;}
.x17_c00272{left:192.800000pt;}
.xe_c00272{left:193.733333pt;}
.x97_c00272{left:194.933333pt;}
.x9e_c00272{left:196.533333pt;}
.x76_c00272{left:199.733333pt;}
.x79_c00272{left:201.066667pt;}
.x92_c00272{left:202.266667pt;}
.x58_c00272{left:204.533333pt;}
.x1d_c00272{left:206.133333pt;}
.x3d_c00272{left:207.066667pt;}
.x98_c00272{left:208.000000pt;}
.x7_c00272{left:209.466667pt;}
.x23_c00272{left:210.933333pt;}
.x4b_c00272{left:211.866667pt;}
.x4f_c00272{left:212.800000pt;}
.xf_c00272{left:214.266667pt;}
.x93_c00272{left:215.333333pt;}
.x6f_c00272{left:216.933333pt;}
.x2a_c00272{left:218.533333pt;}
.x99_c00272{left:220.800000pt;}
.x53_c00272{left:221.733333pt;}
.x82_c00272{left:222.666667pt;}
.x5d_c00272{left:224.266667pt;}
.x71_c00272{left:225.200000pt;}
.x36_c00272{left:227.200000pt;}
.x59_c00272{left:228.266667pt;}
.xa4_c00272{left:229.200000pt;}
.x3e_c00272{left:231.066667pt;}
.x5e_c00272{left:232.533333pt;}
.x9a_c00272{left:233.866667pt;}
.x86_c00272{left:235.200000pt;}
.x6d_c00272{left:237.333333pt;}
.x66_c00272{left:238.266667pt;}
.x2b_c00272{left:240.000000pt;}
.x19_c00272{left:242.933333pt;}
.x50_c00272{left:244.133333pt;}
.x54_c00272{left:245.733333pt;}
.x10_c00272{left:246.933333pt;}
.x46_c00272{left:251.600000pt;}
.x8c_c00272{left:254.400000pt;}
.x24_c00272{left:255.466667pt;}
.x9c_c00272{left:259.466667pt;}
.x8_c00272{left:261.333333pt;}
.x32_c00272{left:263.600000pt;}
.x77_c00272{left:266.000000pt;}
.x1e_c00272{left:267.200000pt;}
.x87_c00272{left:268.800000pt;}
.x4c_c00272{left:270.800000pt;}
.x2c_c00272{left:272.933333pt;}
.x5a_c00272{left:274.133333pt;}
.x3f_c00272{left:278.400000pt;}
.x33_c00272{left:279.866667pt;}
.x62_c00272{left:281.200000pt;}
.x7a_c00272{left:283.600000pt;}
.x25_c00272{left:284.533333pt;}
.xa0_c00272{left:285.600000pt;}
.x40_c00272{left:288.000000pt;}
.x4d_c00272{left:290.266667pt;}
.x94_c00272{left:292.800000pt;}
.x72_c00272{left:293.733333pt;}
.x55_c00272{left:295.733333pt;}
.x1_c00272{left:296.666667pt;}
.x37_c00272{left:298.933333pt;}
.x83_c00272{left:300.400000pt;}
.x41_c00272{left:301.733333pt;}
.x26_c00272{left:305.600000pt;}
.x2d_c00272{left:307.466667pt;}
.x5f_c00272{left:308.666667pt;}
.x7f_c00272{left:314.666667pt;}
.x7b_c00272{left:315.600000pt;}
.x51_c00272{left:316.800000pt;}
.x95_c00272{left:317.733333pt;}
.x38_c00272{left:319.733333pt;}
.x78_c00272{left:321.066667pt;}
.x11_c00272{left:322.133333pt;}
.x4e_c00272{left:324.533333pt;}
.x42_c00272{left:325.466667pt;}
.x2e_c00272{left:326.933333pt;}
.x7c_c00272{left:328.666667pt;}
.x9_c00272{left:330.800000pt;}
.x68_c00272{left:334.533333pt;}
.x1a_c00272{left:336.400000pt;}
.x1f_c00272{left:338.933333pt;}
.x12_c00272{left:341.600000pt;}
.x88_c00272{left:342.666667pt;}
.x8b_c00272{left:343.600000pt;}
.xa_c00272{left:346.133333pt;}
.x20_c00272{left:348.533333pt;}
.x56_c00272{left:349.866667pt;}
.x27_c00272{left:352.266667pt;}
.xa7_c00272{left:353.600000pt;}
.x8d_c00272{left:355.066667pt;}
.x7d_c00272{left:356.133333pt;}
.x43_c00272{left:357.466667pt;}
.x13_c00272{left:358.933333pt;}
.x39_c00272{left:360.666667pt;}
.x67_c00272{left:364.666667pt;}
.x90_c00272{left:365.733333pt;}
.x69_c00272{left:367.466667pt;}
.x63_c00272{left:368.800000pt;}
.x85_c00272{left:376.400000pt;}
.x3a_c00272{left:379.600000pt;}
.xb_c00272{left:381.600000pt;}
.x14b_c00272{left:396.800000pt;}
.x140_c00272{left:398.666667pt;}
.x117_c00272{left:400.666667pt;}
.x149_c00272{left:404.000000pt;}
.x14d_c00272{left:407.466667pt;}
.xc0_c00272{left:408.666667pt;}
.x148_c00272{left:412.133333pt;}
.xee_c00272{left:414.266667pt;}
.x135_c00272{left:415.733333pt;}
.x111_c00272{left:416.666667pt;}
.x101_c00272{left:417.600000pt;}
.xe1_c00272{left:418.800000pt;}
.xb0_c00272{left:419.733333pt;}
.xa8_c00272{left:421.066667pt;}
.x154_c00272{left:428.266667pt;}
.x136_c00272{left:430.133333pt;}
.x12f_c00272{left:432.666667pt;}
.xb7_c00272{left:433.733333pt;}
.xc9_c00272{left:434.933333pt;}
.xf4_c00272{left:436.800000pt;}
.x102_c00272{left:438.400000pt;}
.xd3_c00272{left:439.466667pt;}
.x133_c00272{left:440.666667pt;}
.x13d_c00272{left:442.400000pt;}
.xe9_c00272{left:444.800000pt;}
.xf8_c00272{left:446.133333pt;}
.x14c_c00272{left:447.333333pt;}
.x112_c00272{left:448.666667pt;}
.x13b_c00272{left:450.000000pt;}
.x11a_c00272{left:451.866667pt;}
.xdd_c00272{left:454.933333pt;}
.xb1_c00272{left:458.400000pt;}
.xa9_c00272{left:462.000000pt;}
.xd9_c00272{left:466.133333pt;}
.xc1_c00272{left:467.600000pt;}
.x125_c00272{left:468.800000pt;}
.x113_c00272{left:469.733333pt;}
.xef_c00272{left:470.933333pt;}
.xb2_c00272{left:472.133333pt;}
.x129_c00272{left:473.066667pt;}
.x134_c00272{left:474.266667pt;}
.xd4_c00272{left:477.600000pt;}
.xe2_c00272{left:479.333333pt;}
.x139_c00272{left:480.400000pt;}
.x115_c00272{left:481.600000pt;}
.x152_c00272{left:482.666667pt;}
.xc2_c00272{left:484.533333pt;}
.xf0_c00272{left:485.600000pt;}
.xde_c00272{left:486.933333pt;}
.xe3_c00272{left:488.666667pt;}
.x130_c00272{left:490.266667pt;}
.x118_c00272{left:492.933333pt;}
.x103_c00272{left:494.666667pt;}
.x10d_c00272{left:497.333333pt;}
.x107_c00272{left:498.400000pt;}
.xaa_c00272{left:499.466667pt;}
.xf5_c00272{left:503.333333pt;}
.xf9_c00272{left:505.333333pt;}
.x137_c00272{left:506.666667pt;}
.x13e_c00272{left:507.600000pt;}
.xc3_c00272{left:508.533333pt;}
.xea_c00272{left:511.333333pt;}
.xb8_c00272{left:512.400000pt;}
.xb3_c00272{left:514.000000pt;}
.x116_c00272{left:514.933333pt;}
.x153_c00272{left:516.000000pt;}
.x120_c00272{left:517.066667pt;}
.x126_c00272{left:518.400000pt;}
.x145_c00272{left:520.266667pt;}
.xd0_c00272{left:521.866667pt;}
.xfe_c00272{left:523.333333pt;}
.xd5_c00272{left:524.933333pt;}
.x10e_c00272{left:526.133333pt;}
.x10a_c00272{left:527.066667pt;}
.x131_c00272{left:528.933333pt;}
.xb9_c00272{left:530.000000pt;}
.x121_c00272{left:531.200000pt;}
.x143_c00272{left:532.133333pt;}
.xab_c00272{left:533.333333pt;}
.xe4_c00272{left:535.066667pt;}
.x11b_c00272{left:537.333333pt;}
.x12a_c00272{left:538.666667pt;}
.x14f_c00272{left:539.600000pt;}
.xb4_c00272{left:540.666667pt;}
.x14a_c00272{left:543.466667pt;}
.xca_c00272{left:545.200000pt;}
.xf6_c00272{left:549.466667pt;}
.xac_c00272{left:551.200000pt;}
.x10b_c00272{left:552.400000pt;}
.xd6_c00272{left:555.066667pt;}
.xc4_c00272{left:556.533333pt;}
.xe5_c00272{left:558.133333pt;}
.x150_c00272{left:560.133333pt;}
.xba_c00272{left:562.933333pt;}
.xeb_c00272{left:563.866667pt;}
.x13a_c00272{left:565.200000pt;}
.xc5_c00272{left:566.133333pt;}
.x14e_c00272{left:567.866667pt;}
.x141_c00272{left:568.933333pt;}
.xfa_c00272{left:570.000000pt;}
.xbb_c00272{left:571.600000pt;}
.xe6_c00272{left:572.800000pt;}
.x104_c00272{left:574.400000pt;}
.x11c_c00272{left:575.333333pt;}
.xcb_c00272{left:576.266667pt;}
.xc6_c00272{left:577.600000pt;}
.xd7_c00272{left:581.600000pt;}
.xec_c00272{left:583.066667pt;}
.xff_c00272{left:584.400000pt;}
.x12b_c00272{left:585.733333pt;}
.xb5_c00272{left:588.666667pt;}
.xf1_c00272{left:589.733333pt;}
.x122_c00272{left:591.066667pt;}
.x10f_c00272{left:593.066667pt;}
.xfb_c00272{left:594.266667pt;}
.x105_c00272{left:596.133333pt;}
.xcc_c00272{left:598.000000pt;}
.x127_c00272{left:599.733333pt;}
.x11d_c00272{left:602.533333pt;}
.x119_c00272{left:605.333333pt;}
.xbc_c00272{left:606.800000pt;}
.x13f_c00272{left:608.133333pt;}
.x13c_c00272{left:610.800000pt;}
.xd8_c00272{left:611.733333pt;}
.xc7_c00272{left:613.466667pt;}
.xda_c00272{left:615.866667pt;}
.x128_c00272{left:617.066667pt;}
.x155_c00272{left:618.533333pt;}
.xf2_c00272{left:620.800000pt;}
.x11e_c00272{left:621.733333pt;}
.x132_c00272{left:623.733333pt;}
.x12c_c00272{left:625.066667pt;}
.xfc_c00272{left:626.266667pt;}
.xd1_c00272{left:627.200000pt;}
.x123_c00272{left:628.133333pt;}
.xcd_c00272{left:629.333333pt;}
.xc8_c00272{left:630.800000pt;}
.xdb_c00272{left:632.533333pt;}
.xb6_c00272{left:633.733333pt;}
.xad_c00272{left:635.066667pt;}
.xbd_c00272{left:637.200000pt;}
.x108_c00272{left:639.733333pt;}
.xf7_c00272{left:642.000000pt;}
.xdf_c00272{left:643.733333pt;}
.x12d_c00272{left:645.200000pt;}
.x142_c00272{left:647.333333pt;}
.x138_c00272{left:648.400000pt;}
.x100_c00272{left:649.333333pt;}
.xd2_c00272{left:650.266667pt;}
.x106_c00272{left:652.133333pt;}
.xae_c00272{left:654.000000pt;}
.xbe_c00272{left:655.733333pt;}
.x109_c00272{left:657.333333pt;}
.x114_c00272{left:658.800000pt;}
.xce_c00272{left:659.733333pt;}
.xdc_c00272{left:661.333333pt;}
.xed_c00272{left:664.800000pt;}
.x124_c00272{left:666.800000pt;}
.xcf_c00272{left:667.733333pt;}
.xe7_c00272{left:672.000000pt;}
.xfd_c00272{left:673.333333pt;}
.xf3_c00272{left:675.200000pt;}
.x10c_c00272{left:678.133333pt;}
.x2_c00272{left:679.066667pt;}
.xbf_c00272{left:680.400000pt;}
.x12e_c00272{left:682.266667pt;}
.x151_c00272{left:684.533333pt;}
.x146_c00272{left:686.000000pt;}
.xe0_c00272{left:687.600000pt;}
.x144_c00272{left:688.933333pt;}
.x11f_c00272{left:689.866667pt;}
.xe8_c00272{left:691.200000pt;}
.x110_c00272{left:697.333333pt;}
.xaf_c00272{left:700.400000pt;}
.x147_c00272{left:704.266667pt;}
.x156_c00272{left:751.066667pt;}
}





/* 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_c00273 {
    display:none;
  }
  .loading-indicator_c00273.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00273 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_c00273 { 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_c00273" -> "#page-container .classname_c00273")
 */
.pf_c00273 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00273 { /* 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_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00273 { /* 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_c00273 { /* 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_c00273 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00273 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00273 {overflow:visible;}
  }
}
.c_c00273 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00273 { /* 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_c00273:after { /* webkit #35443 */
  content: '';
}
.t_c00273:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00273 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 */
}
.__c00273 { /* 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_c00273 { /* info for Javascript */
  display:none;
}
.l_c00273 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00273 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00273 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00273: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_c00273 {
    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_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00273.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_c00273 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00273;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.000000;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;}
.mb9_c00273{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mb_c00273{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00273{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mc_c00273{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m112_c00273{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m26_c00273{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me1_c00273{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m24_c00273{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mae_c00273{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md8_c00273{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m25_c00273{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00273{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md4_c00273{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00273{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m82_c00273{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md5_c00273{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m31_c00273{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mff_c00273{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00273{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m11_c00273{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00273{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m27_c00273{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00273{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.maf_c00273{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00273{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m101_c00273{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00273{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00273{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m39_c00273{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00273{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00273{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00273{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m34_c00273{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00273{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m7_c00273{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00273{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00273{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00273{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m105_c00273{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m68_c00273{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00273{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m6_c00273{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00273{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m55_c00273{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9_c00273{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00273{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00273{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m50_c00273{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md7_c00273{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m2_c00273{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m83_c00273{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00273{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00273{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00273{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m111_c00273{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00273{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00273{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md2_c00273{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00273{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00273{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m110_c00273{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m51_c00273{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00273{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00273{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m108_c00273{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00273{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00273{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10_c00273{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md6_c00273{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00273{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m106_c00273{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m64_c00273{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00273{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00273{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00273{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m75_c00273{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md3_c00273{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m53_c00273{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00273{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m93_c00273{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m80_c00273{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00273{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00273{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m91_c00273{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m36_c00273{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00273{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m103_c00273{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m16_c00273{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m102_c00273{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m109_c00273{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m88_c00273{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00273{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m72_c00273{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m67_c00273{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m104_c00273{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m60_c00273{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m19_c00273{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00273{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00273{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00273{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m94_c00273{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m71_c00273{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00273{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m89_c00273{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m33_c00273{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m74_c00273{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma_c00273{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m90_c00273{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mf_c00273{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00273{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m42_c00273{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m23_c00273{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00273{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m66_c00273{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m22_c00273{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00273{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m96_c00273{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00273{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m61_c00273{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m35_c00273{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mce_c00273{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m73_c00273{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00273{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00273{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00273{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00273{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4_c00273{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00273{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m52_c00273{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00273{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m0_c00273{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md1_c00273{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00273{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00273{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m43_c00273{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00273{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m62_c00273{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m59_c00273{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00273{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m69_c00273{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m79_c00273{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m41_c00273{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m100_c00273{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me_c00273{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00273{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00273{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m37_c00273{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m13_c00273{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00273{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00273{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mad_c00273{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m84_c00273{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00273{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00273{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m57_c00273{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m87_c00273{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00273{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00273{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me5_c00273{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m65_c00273{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00273{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00273{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00273{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00273{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m95_c00273{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m54_c00273{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00273{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00273{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m81_c00273{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00273{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m58_c00273{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m97_c00273{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m49_c00273{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00273{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00273{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00273{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m78_c00273{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00273{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m63_c00273{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m14_c00273{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00273{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00273{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00273{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00273{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mab_c00273{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00273{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00273{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m56_c00273{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00273{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00273{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5_c00273{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m70_c00273{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00273{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00273{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m30_c00273{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m99_c00273{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m15_c00273{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00273{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me2_c00273{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00273{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00273{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m107_c00273{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8_c00273{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m77_c00273{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00273{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md_c00273{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00273{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00273{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m44_c00273{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.me0_c00273{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me6_c00273{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00273{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00273{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00273{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m48_c00273{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00273{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00273{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m47_c00273{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00273{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mee_c00273{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.maa_c00273{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.meb_c00273{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m21_c00273{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mef_c00273{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m92_c00273{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mac_c00273{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mea_c00273{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3_c00273{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00273{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.med_c00273{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me8_c00273{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);}
.mb3_c00273{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mec_c00273{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00273{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m20_c00273{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m76_c00273{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m12_c00273{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00273{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m86_c00273{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00273{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00273{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00273{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00273{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m18_c00273{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mde_c00273{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00273{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m28_c00273{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m85_c00273{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00273{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m45_c00273{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m38_c00273{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00273{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m29_c00273{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00273{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00273{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00273{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mba_c00273{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.me7_c00273{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m98_c00273{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me4_c00273{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.me9_c00273{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m46_c00273{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00273{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00273{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md9_c00273{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.md0_c00273{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mca_c00273{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me3_c00273{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mda_c00273{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00273{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00273{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00273{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m32_c00273{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m40_c00273{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls0_c00273{letter-spacing:0.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{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__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00273{word-spacing:-3.592357px;}
.wsb_c00273{word-spacing:0.000000px;}
.ws6_c00273{word-spacing:7.857143px;}
.ws2_c00273{word-spacing:11.875000px;}
.ws5_c00273{word-spacing:17.500000px;}
.ws1_c00273{word-spacing:25.714286px;}
.ws3_c00273{word-spacing:40.000000px;}
.ws4_c00273{word-spacing:62.683119px;}
.ws0_c00273{word-spacing:65.000000px;}
.ws8_c00273{word-spacing:73.333333px;}
.wsa_c00273{word-spacing:156.250000px;}
.ws9_c00273{word-spacing:186.250000px;}
._0_c00273{width:59.285714px;}
.fc0_c00273{color:transparent;}
.fs5_c00273{font-size:48.000000px;}
.fs3_c00273{font-size:54.000000px;}
.fs2_c00273{font-size:60.000000px;}
.fs4_c00273{font-size:66.000000px;}
.fs0_c00273{font-size:72.000000px;}
.fs6_c00273{font-size:78.000000px;}
.fs1_c00273{font-size:84.000000px;}
.y0_c00273{bottom:0.000000px;}
.y6b_c00273{bottom:192.300000px;}
.y38_c00273{bottom:192.600000px;}
.y37_c00273{bottom:210.600000px;}
.y6a_c00273{bottom:222.600000px;}
.y69_c00273{bottom:228.300000px;}
.y36_c00273{bottom:228.600000px;}
.y68_c00273{bottom:246.000000px;}
.y35_c00273{bottom:246.300000px;}
.y67_c00273{bottom:264.000000px;}
.y34_c00273{bottom:264.300000px;}
.y33_c00273{bottom:282.000000px;}
.y32_c00273{bottom:300.000000px;}
.y66_c00273{bottom:300.300000px;}
.y31_c00273{bottom:317.700000px;}
.y65_c00273{bottom:318.000000px;}
.y30_c00273{bottom:336.000000px;}
.y2f_c00273{bottom:353.700000px;}
.y64_c00273{bottom:354.000000px;}
.y2e_c00273{bottom:371.700000px;}
.y63_c00273{bottom:389.700000px;}
.y2d_c00273{bottom:390.000000px;}
.y2c_c00273{bottom:408.000000px;}
.y62_c00273{bottom:409.500000px;}
.y61_c00273{bottom:425.400000px;}
.y2b_c00273{bottom:426.000000px;}
.y60_c00273{bottom:443.400000px;}
.y2a_c00273{bottom:444.000000px;}
.y5f_c00273{bottom:461.400000px;}
.y29_c00273{bottom:462.000000px;}
.y5e_c00273{bottom:479.400000px;}
.y28_c00273{bottom:480.000000px;}
.y5d_c00273{bottom:497.400000px;}
.y27_c00273{bottom:498.000000px;}
.y5c_c00273{bottom:515.100000px;}
.y26_c00273{bottom:515.700000px;}
.y5b_c00273{bottom:533.100000px;}
.y25_c00273{bottom:533.400000px;}
.y5a_c00273{bottom:551.100000px;}
.y24_c00273{bottom:551.400000px;}
.y59_c00273{bottom:568.800000px;}
.y23_c00273{bottom:569.400000px;}
.y58_c00273{bottom:586.800000px;}
.y22_c00273{bottom:587.400000px;}
.y57_c00273{bottom:604.800000px;}
.y21_c00273{bottom:605.100000px;}
.y20_c00273{bottom:623.400000px;}
.y56_c00273{bottom:625.650000px;}
.y55_c00273{bottom:640.350000px;}
.y1f_c00273{bottom:641.100000px;}
.y54_c00273{bottom:653.700000px;}
.y1e_c00273{bottom:659.100000px;}
.y39_c00273{bottom:669.300000px;}
.y53_c00273{bottom:669.600000px;}
.y1d_c00273{bottom:677.100000px;}
.y52_c00273{bottom:685.800000px;}
.y1c_c00273{bottom:695.100000px;}
.y51_c00273{bottom:699.450000px;}
.y1b_c00273{bottom:712.800000px;}
.y50_c00273{bottom:718.200000px;}
.y1a_c00273{bottom:730.800000px;}
.y4f_c00273{bottom:736.200000px;}
.y19_c00273{bottom:748.800000px;}
.y4e_c00273{bottom:754.200000px;}
.y18_c00273{bottom:767.100000px;}
.y4d_c00273{bottom:771.900000px;}
.y17_c00273{bottom:785.100000px;}
.y4c_c00273{bottom:793.800000px;}
.y16_c00273{bottom:803.100000px;}
.y4b_c00273{bottom:812.100000px;}
.y15_c00273{bottom:821.100000px;}
.y4a_c00273{bottom:829.800000px;}
.y14_c00273{bottom:838.800000px;}
.y13_c00273{bottom:856.500000px;}
.y49_c00273{bottom:858.300000px;}
.y48_c00273{bottom:864.300000px;}
.y47_c00273{bottom:883.800000px;}
.y12_c00273{bottom:893.250000px;}
.y11_c00273{bottom:906.900000px;}
.y46_c00273{bottom:909.750000px;}
.y10_c00273{bottom:923.100000px;}
.y45_c00273{bottom:928.500000px;}
.yf_c00273{bottom:936.450000px;}
.y44_c00273{bottom:946.800000px;}
.ye_c00273{bottom:952.950000px;}
.yd_c00273{bottom:964.800000px;}
.yc_c00273{bottom:979.500000px;}
.y43_c00273{bottom:982.800000px;}
.yb_c00273{bottom:993.600000px;}
.y42_c00273{bottom:1000.800000px;}
.ya_c00273{bottom:1008.300000px;}
.y41_c00273{bottom:1017.750000px;}
.y9_c00273{bottom:1024.500000px;}
.y40_c00273{bottom:1036.050000px;}
.y8_c00273{bottom:1038.600000px;}
.y7_c00273{bottom:1051.200000px;}
.y3f_c00273{bottom:1053.750000px;}
.y6_c00273{bottom:1064.100000px;}
.y3e_c00273{bottom:1071.450000px;}
.y5_c00273{bottom:1080.300000px;}
.y3d_c00273{bottom:1089.750000px;}
.y4_c00273{bottom:1096.500000px;}
.y3c_c00273{bottom:1106.250000px;}
.y3_c00273{bottom:1109.100000px;}
.y3a_c00273{bottom:1124.700000px;}
.y3b_c00273{bottom:1125.300000px;}
.y1_c00273{bottom:1145.850000px;}
.y2_c00273{bottom:1150.500000px;}
.h7_c00273{height:48.000000px;}
.h5_c00273{height:54.000000px;}
.h4_c00273{height:60.000000px;}
.h6_c00273{height:66.000000px;}
.h2_c00273{height:72.000000px;}
.h8_c00273{height:78.000000px;}
.h3_c00273{height:84.000000px;}
.h1_c00273{height:1278.000000px;}
.h0_c00273{height:1278.360077px;}
.w1_c00273{width:961.500000px;}
.w0_c00273{width:961.560058px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:172.800000px;}
.x46_c00273{left:178.950000px;}
.x3_c00273{left:189.300000px;}
.x25_c00273{left:190.500000px;}
.x3d_c00273{left:191.550000px;}
.x45_c00273{left:192.600000px;}
.x49_c00273{left:197.700000px;}
.x4_c00273{left:199.050000px;}
.x68_c00273{left:200.400000px;}
.x78_c00273{left:201.750000px;}
.x82_c00273{left:202.800000px;}
.xf_c00273{left:204.900000px;}
.x39_c00273{left:205.950000px;}
.x3e_c00273{left:207.150000px;}
.x17_c00273{left:208.500000px;}
.x98_c00273{left:221.100000px;}
.x64_c00273{left:223.950000px;}
.x5_c00273{left:226.050000px;}
.x31_c00273{left:227.250000px;}
.x3f_c00273{left:228.750000px;}
.x79_c00273{left:232.650000px;}
.x5c_c00273{left:237.000000px;}
.x26_c00273{left:239.400000px;}
.x56_c00273{left:240.900000px;}
.x74_c00273{left:242.100000px;}
.x18_c00273{left:243.450000px;}
.x4a_c00273{left:245.250000px;}
.x32_c00273{left:246.750000px;}
.x7d_c00273{left:248.400000px;}
.x1f_c00273{left:249.600000px;}
.x9c_c00273{left:251.400000px;}
.x83_c00273{left:253.200000px;}
.xa5_c00273{left:254.400000px;}
.x6_c00273{left:255.600000px;}
.x90_c00273{left:256.650000px;}
.x51_c00273{left:258.600000px;}
.x40_c00273{left:260.700000px;}
.x47_c00273{left:262.500000px;}
.x94_c00273{left:263.700000px;}
.x69_c00273{left:264.750000px;}
.x6d_c00273{left:266.100000px;}
.x20_c00273{left:267.600000px;}
.x10_c00273{left:270.750000px;}
.x7e_c00273{left:271.800000px;}
.x7_c00273{left:274.650000px;}
.x52_c00273{left:281.250000px;}
.x5d_c00273{left:283.050000px;}
.x27_c00273{left:284.700000px;}
.x8_c00273{left:288.300000px;}
.x3a_c00273{left:291.600000px;}
.x11_c00273{left:293.100000px;}
.x21_c00273{left:295.350000px;}
.x84_c00273{left:298.200000px;}
.x5f_c00273{left:300.600000px;}
.x53_c00273{left:302.850000px;}
.x48_c00273{left:304.200000px;}
.x9_c00273{left:307.050000px;}
.x41_c00273{left:308.250000px;}
.x22_c00273{left:309.450000px;}
.x9d_c00273{left:312.600000px;}
.x91_c00273{left:314.550000px;}
.x8e_c00273{left:316.650000px;}
.x86_c00273{left:317.850000px;}
.x33_c00273{left:319.800000px;}
.x57_c00273{left:321.150000px;}
.xa_c00273{left:322.950000px;}
.x6a_c00273{left:324.450000px;}
.xaf_c00273{left:325.800000px;}
.x96_c00273{left:326.850000px;}
.xa6_c00273{left:328.200000px;}
.x34_c00273{left:330.300000px;}
.x12_c00273{left:333.000000px;}
.x72_c00273{left:334.800000px;}
.x60_c00273{left:335.850000px;}
.x19_c00273{left:337.800000px;}
.xac_c00273{left:338.850000px;}
.x75_c00273{left:340.050000px;}
.xb_c00273{left:342.000000px;}
.x3b_c00273{left:343.500000px;}
.x4b_c00273{left:346.050000px;}
.xa1_c00273{left:347.250000px;}
.x93_c00273{left:350.100000px;}
.x42_c00273{left:351.150000px;}
.x1a_c00273{left:353.250000px;}
.x23_c00273{left:356.250000px;}
.x9e_c00273{left:358.350000px;}
.x65_c00273{left:359.550000px;}
.xc_c00273{left:361.050000px;}
.x43_c00273{left:365.850000px;}
.x58_c00273{left:367.650000px;}
.x5a_c00273{left:369.900000px;}
.x28_c00273{left:371.400000px;}
.x35_c00273{left:373.800000px;}
.x8a_c00273{left:375.300000px;}
.x24_c00273{left:376.350000px;}
.x6b_c00273{left:377.400000px;}
.x97_c00273{left:379.050000px;}
.x6e_c00273{left:380.250000px;}
.x54_c00273{left:381.300000px;}
.x13_c00273{left:382.350000px;}
.x8b_c00273{left:384.600000px;}
.x1b_c00273{left:385.950000px;}
.xa3_c00273{left:388.050000px;}
.x59_c00273{left:389.550000px;}
.x36_c00273{left:392.100000px;}
.x29_c00273{left:393.600000px;}
.x66_c00273{left:397.050000px;}
.x55_c00273{left:398.250000px;}
.x7a_c00273{left:399.750000px;}
.x3c_c00273{left:401.100000px;}
.x6f_c00273{left:402.900000px;}
.x1c_c00273{left:404.700000px;}
.x44_c00273{left:405.750000px;}
.x2a_c00273{left:408.300000px;}
.x73_c00273{left:410.400000px;}
.x2_c00273{left:412.950000px;}
.x9f_c00273{left:414.150000px;}
.x2b_c00273{left:415.200000px;}
.x7f_c00273{left:417.150000px;}
.x67_c00273{left:419.400000px;}
.x4e_c00273{left:420.900000px;}
.x2c_c00273{left:422.400000px;}
.x89_c00273{left:424.050000px;}
.x61_c00273{left:426.150000px;}
.x87_c00273{left:429.750000px;}
.x14_c00273{left:431.250000px;}
.x80_c00273{left:434.850000px;}
.x8f_c00273{left:436.950000px;}
.x76_c00273{left:438.300000px;}
.x6c_c00273{left:439.650000px;}
.x1d_c00273{left:440.700000px;}
.x2d_c00273{left:441.900000px;}
.x37_c00273{left:443.250000px;}
.x7b_c00273{left:444.750000px;}
.x92_c00273{left:445.950000px;}
.x95_c00273{left:448.500000px;}
.x4c_c00273{left:450.000000px;}
.x5b_c00273{left:451.950000px;}
.x4f_c00273{left:453.300000px;}
.x99_c00273{left:455.100000px;}
.xd_c00273{left:456.150000px;}
.x15_c00273{left:461.850000px;}
.x70_c00273{left:464.100000px;}
.x30_c00273{left:465.300000px;}
.xa2_c00273{left:466.950000px;}
.x4d_c00273{left:468.750000px;}
.x62_c00273{left:470.100000px;}
.x2e_c00273{left:471.450000px;}
.x38_c00273{left:473.550000px;}
.x77_c00273{left:474.600000px;}
.x7c_c00273{left:475.650000px;}
.x5e_c00273{left:476.700000px;}
.x81_c00273{left:478.350000px;}
.xaa_c00273{left:481.200000px;}
.xa7_c00273{left:483.150000px;}
.xab_c00273{left:484.950000px;}
.x63_c00273{left:486.300000px;}
.x8c_c00273{left:487.500000px;}
.x9a_c00273{left:488.700000px;}
.x88_c00273{left:489.900000px;}
.x50_c00273{left:492.600000px;}
.x16_c00273{left:496.050000px;}
.x9b_c00273{left:498.000000px;}
.x1e_c00273{left:499.050000px;}
.xe_c00273{left:500.100000px;}
.x2f_c00273{left:501.300000px;}
.xa9_c00273{left:504.600000px;}
.xa4_c00273{left:506.850000px;}
.x71_c00273{left:508.800000px;}
.x85_c00273{left:510.600000px;}
.xa0_c00273{left:514.500000px;}
.x8d_c00273{left:517.800000px;}
.xa8_c00273{left:521.700000px;}
.xae_c00273{left:527.100000px;}
.xfe_c00273{left:537.450000px;}
.x124_c00273{left:538.500000px;}
.xad_c00273{left:540.900000px;}
.xb0_c00273{left:549.000000px;}
.xcb_c00273{left:550.350000px;}
.xd4_c00273{left:551.400000px;}
.xe7_c00273{left:552.600000px;}
.xf5_c00273{left:553.800000px;}
.xfa_c00273{left:555.600000px;}
.x12d_c00273{left:558.750000px;}
.x13a_c00273{left:560.250000px;}
.x101_c00273{left:561.300000px;}
.x149_c00273{left:562.350000px;}
.x150_c00273{left:564.150000px;}
.x15a_c00273{left:565.500000px;}
.xfb_c00273{left:567.150000px;}
.xb8_c00273{left:568.500000px;}
.xe2_c00273{left:570.600000px;}
.xd5_c00273{left:571.950000px;}
.xf1_c00273{left:573.300000px;}
.xb7_c00273{left:574.350000px;}
.x11b_c00273{left:575.850000px;}
.xed_c00273{left:576.900000px;}
.xff_c00273{left:579.150000px;}
.xb1_c00273{left:583.500000px;}
.xe8_c00273{left:585.750000px;}
.x135_c00273{left:587.400000px;}
.xd6_c00273{left:590.250000px;}
.x12e_c00273{left:593.250000px;}
.xc0_c00273{left:594.300000px;}
.x104_c00273{left:596.550000px;}
.xe3_c00273{left:597.600000px;}
.x14d_c00273{left:598.650000px;}
.xcc_c00273{left:600.750000px;}
.x125_c00273{left:602.250000px;}
.x111_c00273{left:604.350000px;}
.x142_c00273{left:605.400000px;}
.xf6_c00273{left:608.850000px;}
.xc1_c00273{left:611.550000px;}
.xb9_c00273{left:612.750000px;}
.xcd_c00273{left:614.400000px;}
.x11f_c00273{left:616.050000px;}
.xe9_c00273{left:617.100000px;}
.xdc_c00273{left:619.200000px;}
.xfc_c00273{left:620.850000px;}
.xf7_c00273{left:625.350000px;}
.xf2_c00273{left:626.550000px;}
.x116_c00273{left:629.250000px;}
.x159_c00273{left:631.200000px;}
.x13f_c00273{left:634.200000px;}
.xe4_c00273{left:635.700000px;}
.x132_c00273{left:636.750000px;}
.x10a_c00273{left:638.400000px;}
.xba_c00273{left:639.750000px;}
.x12f_c00273{left:643.950000px;}
.xd7_c00273{left:645.000000px;}
.x10b_c00273{left:646.350000px;}
.xdd_c00273{left:648.000000px;}
.xb2_c00273{left:650.400000px;}
.x114_c00273{left:652.200000px;}
.x10c_c00273{left:653.550000px;}
.xea_c00273{left:657.000000px;}
.x105_c00273{left:658.050000px;}
.xe5_c00273{left:659.100000px;}
.x130_c00273{left:660.450000px;}
.x151_c00273{left:663.300000px;}
.xd8_c00273{left:665.550000px;}
.x123_c00273{left:667.200000px;}
.x127_c00273{left:668.250000px;}
.xbb_c00273{left:670.650000px;}
.xc2_c00273{left:671.700000px;}
.x102_c00273{left:673.800000px;}
.xce_c00273{left:676.350000px;}
.xde_c00273{left:678.600000px;}
.xeb_c00273{left:680.850000px;}
.xfd_c00273{left:684.600000px;}
.x10d_c00273{left:686.250000px;}
.x106_c00273{left:688.350000px;}
.xc3_c00273{left:690.750000px;}
.xf8_c00273{left:692.700000px;}
.x117_c00273{left:694.800000px;}
.xcf_c00273{left:697.950000px;}
.xf3_c00273{left:699.900000px;}
.x146_c00273{left:701.400000px;}
.x100_c00273{left:702.600000px;}
.x10e_c00273{left:705.750000px;}
.xb3_c00273{left:706.950000px;}
.xdf_c00273{left:709.200000px;}
.x118_c00273{left:711.300000px;}
.xee_c00273{left:712.500000px;}
.x154_c00273{left:714.150000px;}
.xf9_c00273{left:716.850000px;}
.x152_c00273{left:720.150000px;}
.x136_c00273{left:721.650000px;}
.x14e_c00273{left:724.350000px;}
.xc4_c00273{left:726.000000px;}
.x12c_c00273{left:727.350000px;}
.xec_c00273{left:729.450000px;}
.x14c_c00273{left:730.650000px;}
.x11c_c00273{left:732.000000px;}
.xc5_c00273{left:733.200000px;}
.xbc_c00273{left:735.750000px;}
.x157_c00273{left:736.950000px;}
.x137_c00273{left:739.950000px;}
.x147_c00273{left:741.900000px;}
.x143_c00273{left:743.250000px;}
.x119_c00273{left:745.500000px;}
.x14f_c00273{left:747.000000px;}
.xb4_c00273{left:748.350000px;}
.x13b_c00273{left:750.600000px;}
.xc6_c00273{left:755.100000px;}
.xd9_c00273{left:757.350000px;}
.x107_c00273{left:759.000000px;}
.x133_c00273{left:760.500000px;}
.x141_c00273{left:762.000000px;}
.x112_c00273{left:763.800000px;}
.x14a_c00273{left:765.000000px;}
.xef_c00273{left:766.200000px;}
.xe0_c00273{left:768.600000px;}
.xf4_c00273{left:770.850000px;}
.xd0_c00273{left:772.500000px;}
.xb5_c00273{left:773.850000px;}
.x128_c00273{left:775.200000px;}
.x103_c00273{left:777.150000px;}
.xf0_c00273{left:778.500000px;}
.x120_c00273{left:780.000000px;}
.xd1_c00273{left:781.800000px;}
.x13e_c00273{left:783.000000px;}
.xbd_c00273{left:784.050000px;}
.x13c_c00273{left:786.600000px;}
.x108_c00273{left:787.800000px;}
.xe1_c00273{left:790.200000px;}
.x138_c00273{left:793.650000px;}
.x121_c00273{left:795.150000px;}
.x155_c00273{left:796.650000px;}
.xda_c00273{left:798.750000px;}
.x10f_c00273{left:800.400000px;}
.xc7_c00273{left:804.450000px;}
.xe6_c00273{left:805.650000px;}
.x12a_c00273{left:807.750000px;}
.x131_c00273{left:808.800000px;}
.x11d_c00273{left:810.150000px;}
.xc8_c00273{left:812.700000px;}
.xd2_c00273{left:816.300000px;}
.x11a_c00273{left:817.800000px;}
.xb6_c00273{left:819.900000px;}
.x144_c00273{left:821.700000px;}
.xdb_c00273{left:823.200000px;}
.x15b_c00273{left:824.400000px;}
.x126_c00273{left:827.250000px;}
.xbe_c00273{left:829.050000px;}
.x158_c00273{left:830.250000px;}
.xd3_c00273{left:832.200000px;}
.x139_c00273{left:833.550000px;}
.x129_c00273{left:835.500000px;}
.x122_c00273{left:838.950000px;}
.x115_c00273{left:841.800000px;}
.xbf_c00273{left:843.750000px;}
.x113_c00273{left:846.150000px;}
.xc9_c00273{left:848.400000px;}
.x14b_c00273{left:849.600000px;}
.x148_c00273{left:852.450000px;}
.x156_c00273{left:854.550000px;}
.x145_c00273{left:855.900000px;}
.xca_c00273{left:858.150000px;}
.x109_c00273{left:859.800000px;}
.x15c_c00273{left:861.900000px;}
.x13d_c00273{left:863.700000px;}
.x12b_c00273{left:865.050000px;}
.x140_c00273{left:866.100000px;}
.x110_c00273{left:869.550000px;}
.x11e_c00273{left:871.800000px;}
.x134_c00273{left:876.450000px;}
.x153_c00273{left:878.850000px;}
.x15d_c00273{left:897.900000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws7_c00273{word-spacing:-3.193206pt;}
.wsb_c00273{word-spacing:0.000000pt;}
.ws6_c00273{word-spacing:6.984127pt;}
.ws2_c00273{word-spacing:10.555556pt;}
.ws5_c00273{word-spacing:15.555556pt;}
.ws1_c00273{word-spacing:22.857143pt;}
.ws3_c00273{word-spacing:35.555556pt;}
.ws4_c00273{word-spacing:55.718328pt;}
.ws0_c00273{word-spacing:57.777778pt;}
.ws8_c00273{word-spacing:65.185185pt;}
.wsa_c00273{word-spacing:138.888889pt;}
.ws9_c00273{word-spacing:165.555556pt;}
._0_c00273{width:52.698413pt;}
.fs5_c00273{font-size:42.666667pt;}
.fs3_c00273{font-size:48.000000pt;}
.fs2_c00273{font-size:53.333333pt;}
.fs4_c00273{font-size:58.666667pt;}
.fs0_c00273{font-size:64.000000pt;}
.fs6_c00273{font-size:69.333333pt;}
.fs1_c00273{font-size:74.666667pt;}
.y0_c00273{bottom:0.000000pt;}
.y6b_c00273{bottom:170.933333pt;}
.y38_c00273{bottom:171.200000pt;}
.y37_c00273{bottom:187.200000pt;}
.y6a_c00273{bottom:197.866667pt;}
.y69_c00273{bottom:202.933333pt;}
.y36_c00273{bottom:203.200000pt;}
.y68_c00273{bottom:218.666667pt;}
.y35_c00273{bottom:218.933333pt;}
.y67_c00273{bottom:234.666667pt;}
.y34_c00273{bottom:234.933333pt;}
.y33_c00273{bottom:250.666667pt;}
.y32_c00273{bottom:266.666667pt;}
.y66_c00273{bottom:266.933333pt;}
.y31_c00273{bottom:282.400000pt;}
.y65_c00273{bottom:282.666667pt;}
.y30_c00273{bottom:298.666667pt;}
.y2f_c00273{bottom:314.400000pt;}
.y64_c00273{bottom:314.666667pt;}
.y2e_c00273{bottom:330.400000pt;}
.y63_c00273{bottom:346.400000pt;}
.y2d_c00273{bottom:346.666667pt;}
.y2c_c00273{bottom:362.666667pt;}
.y62_c00273{bottom:364.000000pt;}
.y61_c00273{bottom:378.133333pt;}
.y2b_c00273{bottom:378.666667pt;}
.y60_c00273{bottom:394.133333pt;}
.y2a_c00273{bottom:394.666667pt;}
.y5f_c00273{bottom:410.133333pt;}
.y29_c00273{bottom:410.666667pt;}
.y5e_c00273{bottom:426.133333pt;}
.y28_c00273{bottom:426.666667pt;}
.y5d_c00273{bottom:442.133333pt;}
.y27_c00273{bottom:442.666667pt;}
.y5c_c00273{bottom:457.866667pt;}
.y26_c00273{bottom:458.400000pt;}
.y5b_c00273{bottom:473.866667pt;}
.y25_c00273{bottom:474.133333pt;}
.y5a_c00273{bottom:489.866667pt;}
.y24_c00273{bottom:490.133333pt;}
.y59_c00273{bottom:505.600000pt;}
.y23_c00273{bottom:506.133333pt;}
.y58_c00273{bottom:521.600000pt;}
.y22_c00273{bottom:522.133333pt;}
.y57_c00273{bottom:537.600000pt;}
.y21_c00273{bottom:537.866667pt;}
.y20_c00273{bottom:554.133333pt;}
.y56_c00273{bottom:556.133333pt;}
.y55_c00273{bottom:569.200000pt;}
.y1f_c00273{bottom:569.866667pt;}
.y54_c00273{bottom:581.066667pt;}
.y1e_c00273{bottom:585.866667pt;}
.y39_c00273{bottom:594.933333pt;}
.y53_c00273{bottom:595.200000pt;}
.y1d_c00273{bottom:601.866667pt;}
.y52_c00273{bottom:609.600000pt;}
.y1c_c00273{bottom:617.866667pt;}
.y51_c00273{bottom:621.733333pt;}
.y1b_c00273{bottom:633.600000pt;}
.y50_c00273{bottom:638.400000pt;}
.y1a_c00273{bottom:649.600000pt;}
.y4f_c00273{bottom:654.400000pt;}
.y19_c00273{bottom:665.600000pt;}
.y4e_c00273{bottom:670.400000pt;}
.y18_c00273{bottom:681.866667pt;}
.y4d_c00273{bottom:686.133333pt;}
.y17_c00273{bottom:697.866667pt;}
.y4c_c00273{bottom:705.600000pt;}
.y16_c00273{bottom:713.866667pt;}
.y4b_c00273{bottom:721.866667pt;}
.y15_c00273{bottom:729.866667pt;}
.y4a_c00273{bottom:737.600000pt;}
.y14_c00273{bottom:745.600000pt;}
.y13_c00273{bottom:761.333333pt;}
.y49_c00273{bottom:762.933333pt;}
.y48_c00273{bottom:768.266667pt;}
.y47_c00273{bottom:785.600000pt;}
.y12_c00273{bottom:794.000000pt;}
.y11_c00273{bottom:806.133333pt;}
.y46_c00273{bottom:808.666667pt;}
.y10_c00273{bottom:820.533333pt;}
.y45_c00273{bottom:825.333333pt;}
.yf_c00273{bottom:832.400000pt;}
.y44_c00273{bottom:841.600000pt;}
.ye_c00273{bottom:847.066667pt;}
.yd_c00273{bottom:857.600000pt;}
.yc_c00273{bottom:870.666667pt;}
.y43_c00273{bottom:873.600000pt;}
.yb_c00273{bottom:883.200000pt;}
.y42_c00273{bottom:889.600000pt;}
.ya_c00273{bottom:896.266667pt;}
.y41_c00273{bottom:904.666667pt;}
.y9_c00273{bottom:910.666667pt;}
.y40_c00273{bottom:920.933333pt;}
.y8_c00273{bottom:923.200000pt;}
.y7_c00273{bottom:934.400000pt;}
.y3f_c00273{bottom:936.666667pt;}
.y6_c00273{bottom:945.866667pt;}
.y3e_c00273{bottom:952.400000pt;}
.y5_c00273{bottom:960.266667pt;}
.y3d_c00273{bottom:968.666667pt;}
.y4_c00273{bottom:974.666667pt;}
.y3c_c00273{bottom:983.333333pt;}
.y3_c00273{bottom:985.866667pt;}
.y3a_c00273{bottom:999.733333pt;}
.y3b_c00273{bottom:1000.266667pt;}
.y1_c00273{bottom:1018.533333pt;}
.y2_c00273{bottom:1022.666667pt;}
.h7_c00273{height:42.666667pt;}
.h5_c00273{height:48.000000pt;}
.h4_c00273{height:53.333333pt;}
.h6_c00273{height:58.666667pt;}
.h2_c00273{height:64.000000pt;}
.h8_c00273{height:69.333333pt;}
.h3_c00273{height:74.666667pt;}
.h1_c00273{height:1136.000000pt;}
.h0_c00273{height:1136.320068pt;}
.w1_c00273{width:854.666667pt;}
.w0_c00273{width:854.720052pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:153.600000pt;}
.x46_c00273{left:159.066667pt;}
.x3_c00273{left:168.266667pt;}
.x25_c00273{left:169.333333pt;}
.x3d_c00273{left:170.266667pt;}
.x45_c00273{left:171.200000pt;}
.x49_c00273{left:175.733333pt;}
.x4_c00273{left:176.933333pt;}
.x68_c00273{left:178.133333pt;}
.x78_c00273{left:179.333333pt;}
.x82_c00273{left:180.266667pt;}
.xf_c00273{left:182.133333pt;}
.x39_c00273{left:183.066667pt;}
.x3e_c00273{left:184.133333pt;}
.x17_c00273{left:185.333333pt;}
.x98_c00273{left:196.533333pt;}
.x64_c00273{left:199.066667pt;}
.x5_c00273{left:200.933333pt;}
.x31_c00273{left:202.000000pt;}
.x3f_c00273{left:203.333333pt;}
.x79_c00273{left:206.800000pt;}
.x5c_c00273{left:210.666667pt;}
.x26_c00273{left:212.800000pt;}
.x56_c00273{left:214.133333pt;}
.x74_c00273{left:215.200000pt;}
.x18_c00273{left:216.400000pt;}
.x4a_c00273{left:218.000000pt;}
.x32_c00273{left:219.333333pt;}
.x7d_c00273{left:220.800000pt;}
.x1f_c00273{left:221.866667pt;}
.x9c_c00273{left:223.466667pt;}
.x83_c00273{left:225.066667pt;}
.xa5_c00273{left:226.133333pt;}
.x6_c00273{left:227.200000pt;}
.x90_c00273{left:228.133333pt;}
.x51_c00273{left:229.866667pt;}
.x40_c00273{left:231.733333pt;}
.x47_c00273{left:233.333333pt;}
.x94_c00273{left:234.400000pt;}
.x69_c00273{left:235.333333pt;}
.x6d_c00273{left:236.533333pt;}
.x20_c00273{left:237.866667pt;}
.x10_c00273{left:240.666667pt;}
.x7e_c00273{left:241.600000pt;}
.x7_c00273{left:244.133333pt;}
.x52_c00273{left:250.000000pt;}
.x5d_c00273{left:251.600000pt;}
.x27_c00273{left:253.066667pt;}
.x8_c00273{left:256.266667pt;}
.x3a_c00273{left:259.200000pt;}
.x11_c00273{left:260.533333pt;}
.x21_c00273{left:262.533333pt;}
.x84_c00273{left:265.066667pt;}
.x5f_c00273{left:267.200000pt;}
.x53_c00273{left:269.200000pt;}
.x48_c00273{left:270.400000pt;}
.x9_c00273{left:272.933333pt;}
.x41_c00273{left:274.000000pt;}
.x22_c00273{left:275.066667pt;}
.x9d_c00273{left:277.866667pt;}
.x91_c00273{left:279.600000pt;}
.x8e_c00273{left:281.466667pt;}
.x86_c00273{left:282.533333pt;}
.x33_c00273{left:284.266667pt;}
.x57_c00273{left:285.466667pt;}
.xa_c00273{left:287.066667pt;}
.x6a_c00273{left:288.400000pt;}
.xaf_c00273{left:289.600000pt;}
.x96_c00273{left:290.533333pt;}
.xa6_c00273{left:291.733333pt;}
.x34_c00273{left:293.600000pt;}
.x12_c00273{left:296.000000pt;}
.x72_c00273{left:297.600000pt;}
.x60_c00273{left:298.533333pt;}
.x19_c00273{left:300.266667pt;}
.xac_c00273{left:301.200000pt;}
.x75_c00273{left:302.266667pt;}
.xb_c00273{left:304.000000pt;}
.x3b_c00273{left:305.333333pt;}
.x4b_c00273{left:307.600000pt;}
.xa1_c00273{left:308.666667pt;}
.x93_c00273{left:311.200000pt;}
.x42_c00273{left:312.133333pt;}
.x1a_c00273{left:314.000000pt;}
.x23_c00273{left:316.666667pt;}
.x9e_c00273{left:318.533333pt;}
.x65_c00273{left:319.600000pt;}
.xc_c00273{left:320.933333pt;}
.x43_c00273{left:325.200000pt;}
.x58_c00273{left:326.800000pt;}
.x5a_c00273{left:328.800000pt;}
.x28_c00273{left:330.133333pt;}
.x35_c00273{left:332.266667pt;}
.x8a_c00273{left:333.600000pt;}
.x24_c00273{left:334.533333pt;}
.x6b_c00273{left:335.466667pt;}
.x97_c00273{left:336.933333pt;}
.x6e_c00273{left:338.000000pt;}
.x54_c00273{left:338.933333pt;}
.x13_c00273{left:339.866667pt;}
.x8b_c00273{left:341.866667pt;}
.x1b_c00273{left:343.066667pt;}
.xa3_c00273{left:344.933333pt;}
.x59_c00273{left:346.266667pt;}
.x36_c00273{left:348.533333pt;}
.x29_c00273{left:349.866667pt;}
.x66_c00273{left:352.933333pt;}
.x55_c00273{left:354.000000pt;}
.x7a_c00273{left:355.333333pt;}
.x3c_c00273{left:356.533333pt;}
.x6f_c00273{left:358.133333pt;}
.x1c_c00273{left:359.733333pt;}
.x44_c00273{left:360.666667pt;}
.x2a_c00273{left:362.933333pt;}
.x73_c00273{left:364.800000pt;}
.x2_c00273{left:367.066667pt;}
.x9f_c00273{left:368.133333pt;}
.x2b_c00273{left:369.066667pt;}
.x7f_c00273{left:370.800000pt;}
.x67_c00273{left:372.800000pt;}
.x4e_c00273{left:374.133333pt;}
.x2c_c00273{left:375.466667pt;}
.x89_c00273{left:376.933333pt;}
.x61_c00273{left:378.800000pt;}
.x87_c00273{left:382.000000pt;}
.x14_c00273{left:383.333333pt;}
.x80_c00273{left:386.533333pt;}
.x8f_c00273{left:388.400000pt;}
.x76_c00273{left:389.600000pt;}
.x6c_c00273{left:390.800000pt;}
.x1d_c00273{left:391.733333pt;}
.x2d_c00273{left:392.800000pt;}
.x37_c00273{left:394.000000pt;}
.x7b_c00273{left:395.333333pt;}
.x92_c00273{left:396.400000pt;}
.x95_c00273{left:398.666667pt;}
.x4c_c00273{left:400.000000pt;}
.x5b_c00273{left:401.733333pt;}
.x4f_c00273{left:402.933333pt;}
.x99_c00273{left:404.533333pt;}
.xd_c00273{left:405.466667pt;}
.x15_c00273{left:410.533333pt;}
.x70_c00273{left:412.533333pt;}
.x30_c00273{left:413.600000pt;}
.xa2_c00273{left:415.066667pt;}
.x4d_c00273{left:416.666667pt;}
.x62_c00273{left:417.866667pt;}
.x2e_c00273{left:419.066667pt;}
.x38_c00273{left:420.933333pt;}
.x77_c00273{left:421.866667pt;}
.x7c_c00273{left:422.800000pt;}
.x5e_c00273{left:423.733333pt;}
.x81_c00273{left:425.200000pt;}
.xaa_c00273{left:427.733333pt;}
.xa7_c00273{left:429.466667pt;}
.xab_c00273{left:431.066667pt;}
.x63_c00273{left:432.266667pt;}
.x8c_c00273{left:433.333333pt;}
.x9a_c00273{left:434.400000pt;}
.x88_c00273{left:435.466667pt;}
.x50_c00273{left:437.866667pt;}
.x16_c00273{left:440.933333pt;}
.x9b_c00273{left:442.666667pt;}
.x1e_c00273{left:443.600000pt;}
.xe_c00273{left:444.533333pt;}
.x2f_c00273{left:445.600000pt;}
.xa9_c00273{left:448.533333pt;}
.xa4_c00273{left:450.533333pt;}
.x71_c00273{left:452.266667pt;}
.x85_c00273{left:453.866667pt;}
.xa0_c00273{left:457.333333pt;}
.x8d_c00273{left:460.266667pt;}
.xa8_c00273{left:463.733333pt;}
.xae_c00273{left:468.533333pt;}
.xfe_c00273{left:477.733333pt;}
.x124_c00273{left:478.666667pt;}
.xad_c00273{left:480.800000pt;}
.xb0_c00273{left:488.000000pt;}
.xcb_c00273{left:489.200000pt;}
.xd4_c00273{left:490.133333pt;}
.xe7_c00273{left:491.200000pt;}
.xf5_c00273{left:492.266667pt;}
.xfa_c00273{left:493.866667pt;}
.x12d_c00273{left:496.666667pt;}
.x13a_c00273{left:498.000000pt;}
.x101_c00273{left:498.933333pt;}
.x149_c00273{left:499.866667pt;}
.x150_c00273{left:501.466667pt;}
.x15a_c00273{left:502.666667pt;}
.xfb_c00273{left:504.133333pt;}
.xb8_c00273{left:505.333333pt;}
.xe2_c00273{left:507.200000pt;}
.xd5_c00273{left:508.400000pt;}
.xf1_c00273{left:509.600000pt;}
.xb7_c00273{left:510.533333pt;}
.x11b_c00273{left:511.866667pt;}
.xed_c00273{left:512.800000pt;}
.xff_c00273{left:514.800000pt;}
.xb1_c00273{left:518.666667pt;}
.xe8_c00273{left:520.666667pt;}
.x135_c00273{left:522.133333pt;}
.xd6_c00273{left:524.666667pt;}
.x12e_c00273{left:527.333333pt;}
.xc0_c00273{left:528.266667pt;}
.x104_c00273{left:530.266667pt;}
.xe3_c00273{left:531.200000pt;}
.x14d_c00273{left:532.133333pt;}
.xcc_c00273{left:534.000000pt;}
.x125_c00273{left:535.333333pt;}
.x111_c00273{left:537.200000pt;}
.x142_c00273{left:538.133333pt;}
.xf6_c00273{left:541.200000pt;}
.xc1_c00273{left:543.600000pt;}
.xb9_c00273{left:544.666667pt;}
.xcd_c00273{left:546.133333pt;}
.x11f_c00273{left:547.600000pt;}
.xe9_c00273{left:548.533333pt;}
.xdc_c00273{left:550.400000pt;}
.xfc_c00273{left:551.866667pt;}
.xf7_c00273{left:555.866667pt;}
.xf2_c00273{left:556.933333pt;}
.x116_c00273{left:559.333333pt;}
.x159_c00273{left:561.066667pt;}
.x13f_c00273{left:563.733333pt;}
.xe4_c00273{left:565.066667pt;}
.x132_c00273{left:566.000000pt;}
.x10a_c00273{left:567.466667pt;}
.xba_c00273{left:568.666667pt;}
.x12f_c00273{left:572.400000pt;}
.xd7_c00273{left:573.333333pt;}
.x10b_c00273{left:574.533333pt;}
.xdd_c00273{left:576.000000pt;}
.xb2_c00273{left:578.133333pt;}
.x114_c00273{left:579.733333pt;}
.x10c_c00273{left:580.933333pt;}
.xea_c00273{left:584.000000pt;}
.x105_c00273{left:584.933333pt;}
.xe5_c00273{left:585.866667pt;}
.x130_c00273{left:587.066667pt;}
.x151_c00273{left:589.600000pt;}
.xd8_c00273{left:591.600000pt;}
.x123_c00273{left:593.066667pt;}
.x127_c00273{left:594.000000pt;}
.xbb_c00273{left:596.133333pt;}
.xc2_c00273{left:597.066667pt;}
.x102_c00273{left:598.933333pt;}
.xce_c00273{left:601.200000pt;}
.xde_c00273{left:603.200000pt;}
.xeb_c00273{left:605.200000pt;}
.xfd_c00273{left:608.533333pt;}
.x10d_c00273{left:610.000000pt;}
.x106_c00273{left:611.866667pt;}
.xc3_c00273{left:614.000000pt;}
.xf8_c00273{left:615.733333pt;}
.x117_c00273{left:617.600000pt;}
.xcf_c00273{left:620.400000pt;}
.xf3_c00273{left:622.133333pt;}
.x146_c00273{left:623.466667pt;}
.x100_c00273{left:624.533333pt;}
.x10e_c00273{left:627.333333pt;}
.xb3_c00273{left:628.400000pt;}
.xdf_c00273{left:630.400000pt;}
.x118_c00273{left:632.266667pt;}
.xee_c00273{left:633.333333pt;}
.x154_c00273{left:634.800000pt;}
.xf9_c00273{left:637.200000pt;}
.x152_c00273{left:640.133333pt;}
.x136_c00273{left:641.466667pt;}
.x14e_c00273{left:643.866667pt;}
.xc4_c00273{left:645.333333pt;}
.x12c_c00273{left:646.533333pt;}
.xec_c00273{left:648.400000pt;}
.x14c_c00273{left:649.466667pt;}
.x11c_c00273{left:650.666667pt;}
.xc5_c00273{left:651.733333pt;}
.xbc_c00273{left:654.000000pt;}
.x157_c00273{left:655.066667pt;}
.x137_c00273{left:657.733333pt;}
.x147_c00273{left:659.466667pt;}
.x143_c00273{left:660.666667pt;}
.x119_c00273{left:662.666667pt;}
.x14f_c00273{left:664.000000pt;}
.xb4_c00273{left:665.200000pt;}
.x13b_c00273{left:667.200000pt;}
.xc6_c00273{left:671.200000pt;}
.xd9_c00273{left:673.200000pt;}
.x107_c00273{left:674.666667pt;}
.x133_c00273{left:676.000000pt;}
.x141_c00273{left:677.333333pt;}
.x112_c00273{left:678.933333pt;}
.x14a_c00273{left:680.000000pt;}
.xef_c00273{left:681.066667pt;}
.xe0_c00273{left:683.200000pt;}
.xf4_c00273{left:685.200000pt;}
.xd0_c00273{left:686.666667pt;}
.xb5_c00273{left:687.866667pt;}
.x128_c00273{left:689.066667pt;}
.x103_c00273{left:690.800000pt;}
.xf0_c00273{left:692.000000pt;}
.x120_c00273{left:693.333333pt;}
.xd1_c00273{left:694.933333pt;}
.x13e_c00273{left:696.000000pt;}
.xbd_c00273{left:696.933333pt;}
.x13c_c00273{left:699.200000pt;}
.x108_c00273{left:700.266667pt;}
.xe1_c00273{left:702.400000pt;}
.x138_c00273{left:705.466667pt;}
.x121_c00273{left:706.800000pt;}
.x155_c00273{left:708.133333pt;}
.xda_c00273{left:710.000000pt;}
.x10f_c00273{left:711.466667pt;}
.xc7_c00273{left:715.066667pt;}
.xe6_c00273{left:716.133333pt;}
.x12a_c00273{left:718.000000pt;}
.x131_c00273{left:718.933333pt;}
.x11d_c00273{left:720.133333pt;}
.xc8_c00273{left:722.400000pt;}
.xd2_c00273{left:725.600000pt;}
.x11a_c00273{left:726.933333pt;}
.xb6_c00273{left:728.800000pt;}
.x144_c00273{left:730.400000pt;}
.xdb_c00273{left:731.733333pt;}
.x15b_c00273{left:732.800000pt;}
.x126_c00273{left:735.333333pt;}
.xbe_c00273{left:736.933333pt;}
.x158_c00273{left:738.000000pt;}
.xd3_c00273{left:739.733333pt;}
.x139_c00273{left:740.933333pt;}
.x129_c00273{left:742.666667pt;}
.x122_c00273{left:745.733333pt;}
.x115_c00273{left:748.266667pt;}
.xbf_c00273{left:750.000000pt;}
.x113_c00273{left:752.133333pt;}
.xc9_c00273{left:754.133333pt;}
.x14b_c00273{left:755.200000pt;}
.x148_c00273{left:757.733333pt;}
.x156_c00273{left:759.600000pt;}
.x145_c00273{left:760.800000pt;}
.xca_c00273{left:762.800000pt;}
.x109_c00273{left:764.266667pt;}
.x15c_c00273{left:766.133333pt;}
.x13d_c00273{left:767.733333pt;}
.x12b_c00273{left:768.933333pt;}
.x140_c00273{left:769.866667pt;}
.x110_c00273{left:772.933333pt;}
.x11e_c00273{left:774.933333pt;}
.x134_c00273{left:779.066667pt;}
.x153_c00273{left:781.200000pt;}
.x15d_c00273{left:798.133333pt;}
}





/* 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_c00274 {
    display:none;
  }
  .loading-indicator_c00274.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00274 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_c00274 { 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_c00274" -> "#page-container .classname_c00274")
 */
.pf_c00274 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00274 { /* 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_c00274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00274 { /* 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_c00274 { /* 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_c00274 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00274 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00274 {overflow:visible;}
  }
}
.c_c00274 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00274 { /* 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_c00274:after { /* webkit #35443 */
  content: '';
}
.t_c00274:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00274 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 */
}
.__c00274 { /* 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_c00274 { /* info for Javascript */
  display:none;
}
.l_c00274 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00274 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00274 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00274: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_c00274 {
    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_c00274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00274.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_c00274 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00274;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.000000;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;}
.mca_c00274{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00274{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00274{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mce_c00274{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00274{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.meb_c00274{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m19_c00274{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00274{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m23_c00274{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m94_c00274{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md_c00274{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00274{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m91_c00274{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mee_c00274{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00274{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m90_c00274{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00274{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00274{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.md0_c00274{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00274{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00274{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m72_c00274{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m87_c00274{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m56_c00274{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00274{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m83_c00274{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.me_c00274{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00274{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m97_c00274{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00274{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m67_c00274{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m54_c00274{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m6_c00274{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00274{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00274{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00274{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m44_c00274{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m22_c00274{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00274{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m8_c00274{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00274{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mda_c00274{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00274{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m101_c00274{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m52_c00274{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00274{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m77_c00274{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md3_c00274{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m11_c00274{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m108_c00274{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m16_c00274{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m78_c00274{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m49_c00274{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00274{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m39_c00274{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m53_c00274{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00274{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m37_c00274{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m66_c00274{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m17_c00274{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m63_c00274{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m15_c00274{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m88_c00274{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00274{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00274{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.md6_c00274{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00274{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m51_c00274{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00274{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00274{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00274{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m109_c00274{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m3_c00274{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00274{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.maf_c00274{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m73_c00274{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m24_c00274{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00274{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00274{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m58_c00274{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00274{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me5_c00274{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00274{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m75_c00274{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m102_c00274{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00274{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00274{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m14_c00274{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m45_c00274{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m62_c00274{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m47_c00274{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00274{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m55_c00274{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me7_c00274{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.me4_c00274{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00274{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00274{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00274{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00274{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.med_c00274{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m7_c00274{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00274{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m64_c00274{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m81_c00274{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m59_c00274{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00274{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00274{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m98_c00274{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mae_c00274{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00274{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00274{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb_c00274{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me9_c00274{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5_c00274{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m40_c00274{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00274{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m65_c00274{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00274{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m34_c00274{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00274{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00274{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00274{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m20_c00274{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m26_c00274{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m13_c00274{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma_c00274{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m70_c00274{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mc_c00274{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md8_c00274{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00274{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me6_c00274{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00274{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00274{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00274{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m41_c00274{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4_c00274{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00274{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m18_c00274{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m25_c00274{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00274{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9_c00274{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00274{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m46_c00274{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00274{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00274{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00274{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me0_c00274{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m82_c00274{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m12_c00274{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00274{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00274{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me2_c00274{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m50_c00274{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m69_c00274{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m60_c00274{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m30_c00274{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m86_c00274{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m99_c00274{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mab_c00274{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m68_c00274{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mef_c00274{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00274{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mea_c00274{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m43_c00274{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00274{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00274{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m100_c00274{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00274{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00274{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.me1_c00274{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00274{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m103_c00274{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m28_c00274{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00274{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00274{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mff_c00274{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m61_c00274{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m27_c00274{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00274{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00274{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00274{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m32_c00274{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00274{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.me8_c00274{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00274{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf_c00274{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m104_c00274{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m35_c00274{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m79_c00274{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10_c00274{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00274{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mad_c00274{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00274{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00274{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00274{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mec_c00274{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00274{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00274{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00274{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m107_c00274{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m29_c00274{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00274{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m57_c00274{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m42_c00274{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00274{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m38_c00274{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md4_c00274{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m106_c00274{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m74_c00274{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m85_c00274{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m48_c00274{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m36_c00274{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00274{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md5_c00274{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m31_c00274{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00274{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00274{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m21_c00274{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m93_c00274{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00274{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00274{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00274{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m76_c00274{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00274{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m89_c00274{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m96_c00274{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mba_c00274{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m80_c00274{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mac_c00274{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);}
.ma2_c00274{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.maa_c00274{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00274{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00274{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00274{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00274{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00274{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00274{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00274{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00274{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00274{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00274{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m105_c00274{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.md1_c00274{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00274{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m92_c00274{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00274{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00274{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.me3_c00274{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m95_c00274{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00274{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00274{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00274{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00274{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00274{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00274{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m33_c00274{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m84_c00274{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00274{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00274{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00274{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m71_c00274{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00274{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00274{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00274{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.md9_c00274{transform:matrix(0.361000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361000,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.mde_c00274{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.md7_c00274{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.md2_c00274{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00274{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls0_c00274{letter-spacing:0.000000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{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__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00274{word-spacing:-18.000000px;}
.ws2_c00274{word-spacing:-6.292683px;}
.wsc_c00274{word-spacing:-6.048518px;}
.ws5_c00274{word-spacing:-5.970112px;}
.wsd_c00274{word-spacing:0.000000px;}
.ws6_c00274{word-spacing:6.052632px;}
.ws3_c00274{word-spacing:6.666667px;}
.ws1_c00274{word-spacing:10.231368px;}
.ws0_c00274{word-spacing:11.781671px;}
.ws4_c00274{word-spacing:14.320917px;}
.ws7_c00274{word-spacing:22.142857px;}
.ws8_c00274{word-spacing:25.714286px;}
.ws9_c00274{word-spacing:61.250000px;}
.wsa_c00274{word-spacing:73.333333px;}
._2_c00274{margin-left:-31.588235px;}
._1_c00274{width:59.285714px;}
._0_c00274{width:64.642857px;}
.fc0_c00274{color:transparent;}
.fs6_c00274{font-size:30.000000px;}
.fs4_c00274{font-size:36.000000px;}
.fs5_c00274{font-size:42.000000px;}
.fs3_c00274{font-size:54.000000px;}
.fs2_c00274{font-size:60.000000px;}
.fs1_c00274{font-size:66.000000px;}
.fs0_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y6d_c00274{bottom:165.000000px;}
.y34_c00274{bottom:183.300000px;}
.y6c_c00274{bottom:201.150000px;}
.y33_c00274{bottom:201.600000px;}
.y6b_c00274{bottom:219.150000px;}
.y32_c00274{bottom:219.600000px;}
.y31_c00274{bottom:237.000000px;}
.y6a_c00274{bottom:237.150000px;}
.y69_c00274{bottom:254.850000px;}
.y30_c00274{bottom:255.300000px;}
.y2f_c00274{bottom:273.300000px;}
.y68_c00274{bottom:277.200000px;}
.y2e_c00274{bottom:291.300000px;}
.y67_c00274{bottom:295.200000px;}
.y2d_c00274{bottom:309.150000px;}
.y66_c00274{bottom:317.550000px;}
.y2c_c00274{bottom:327.150000px;}
.y65_c00274{bottom:335.250000px;}
.y2b_c00274{bottom:345.150000px;}
.y64_c00274{bottom:353.250000px;}
.y2a_c00274{bottom:362.850000px;}
.y63_c00274{bottom:371.250000px;}
.y29_c00274{bottom:384.150000px;}
.y62_c00274{bottom:389.250000px;}
.y28_c00274{bottom:402.900000px;}
.y61_c00274{bottom:406.950000px;}
.y60_c00274{bottom:424.950000px;}
.y27_c00274{bottom:425.400000px;}
.y5f_c00274{bottom:442.650000px;}
.y26_c00274{bottom:443.400000px;}
.y25_c00274{bottom:461.400000px;}
.y5e_c00274{bottom:462.750000px;}
.y5d_c00274{bottom:478.650000px;}
.y24_c00274{bottom:479.100000px;}
.y5c_c00274{bottom:496.350000px;}
.y23_c00274{bottom:497.100000px;}
.y5b_c00274{bottom:514.350000px;}
.y22_c00274{bottom:523.500000px;}
.y5a_c00274{bottom:532.350000px;}
.y21_c00274{bottom:541.800000px;}
.y59_c00274{bottom:550.350000px;}
.y20_c00274{bottom:563.850000px;}
.y58_c00274{bottom:568.350000px;}
.y1f_c00274{bottom:581.850000px;}
.y57_c00274{bottom:586.350000px;}
.y1e_c00274{bottom:599.850000px;}
.y56_c00274{bottom:604.050000px;}
.y1d_c00274{bottom:617.850000px;}
.y55_c00274{bottom:622.350000px;}
.y1c_c00274{bottom:635.850000px;}
.y54_c00274{bottom:639.600000px;}
.y1b_c00274{bottom:653.550000px;}
.y53_c00274{bottom:657.600000px;}
.y1a_c00274{bottom:671.550000px;}
.y52_c00274{bottom:675.600000px;}
.y19_c00274{bottom:689.250000px;}
.y51_c00274{bottom:693.300000px;}
.y18_c00274{bottom:708.750000px;}
.y50_c00274{bottom:711.000000px;}
.y17_c00274{bottom:725.700000px;}
.y4f_c00274{bottom:729.000000px;}
.y16_c00274{bottom:743.700000px;}
.y4e_c00274{bottom:747.000000px;}
.y4d_c00274{bottom:765.000000px;}
.y15_c00274{bottom:765.300000px;}
.y4c_c00274{bottom:783.000000px;}
.y14_c00274{bottom:784.050000px;}
.y4b_c00274{bottom:800.700000px;}
.y13_c00274{bottom:802.050000px;}
.y4a_c00274{bottom:818.700000px;}
.y12_c00274{bottom:820.050000px;}
.y49_c00274{bottom:836.700000px;}
.y11_c00274{bottom:842.400000px;}
.y48_c00274{bottom:854.700000px;}
.y10_c00274{bottom:860.400000px;}
.y45_c00274{bottom:876.750000px;}
.yf_c00274{bottom:878.700000px;}
.y44_c00274{bottom:889.650000px;}
.ye_c00274{bottom:896.400000px;}
.y43_c00274{bottom:905.100000px;}
.yd_c00274{bottom:914.400000px;}
.y42_c00274{bottom:920.250000px;}
.yc_c00274{bottom:932.400000px;}
.y41_c00274{bottom:933.600000px;}
.y40_c00274{bottom:946.950000px;}
.yb_c00274{bottom:950.100000px;}
.y3f_c00274{bottom:962.400000px;}
.ya_c00274{bottom:968.100000px;}
.y3e_c00274{bottom:975.300000px;}
.y9_c00274{bottom:985.800000px;}
.y3d_c00274{bottom:990.750000px;}
.y8_c00274{bottom:1004.100000px;}
.y3c_c00274{bottom:1005.450000px;}
.y47_c00274{bottom:1007.550000px;}
.y3b_c00274{bottom:1019.550000px;}
.y7_c00274{bottom:1022.400000px;}
.y46_c00274{bottom:1023.450000px;}
.y3a_c00274{bottom:1032.900000px;}
.y6_c00274{bottom:1040.700000px;}
.y39_c00274{bottom:1048.050000px;}
.y5_c00274{bottom:1058.700000px;}
.y38_c00274{bottom:1061.700000px;}
.y4_c00274{bottom:1076.400000px;}
.y37_c00274{bottom:1078.200000px;}
.y3_c00274{bottom:1094.400000px;}
.y36_c00274{bottom:1096.200000px;}
.y2_c00274{bottom:1112.400000px;}
.y35_c00274{bottom:1114.950000px;}
.y1_c00274{bottom:1140.900000px;}
.h8_c00274{height:30.000000px;}
.h6_c00274{height:36.000000px;}
.h7_c00274{height:42.000000px;}
.h5_c00274{height:54.000000px;}
.h4_c00274{height:60.000000px;}
.h3_c00274{height:66.000000px;}
.h2_c00274{height:72.000000px;}
.h0_c00274{height:1271.879975px;}
.h1_c00274{height:1272.000000px;}
.w1_c00274{width:961.500000px;}
.w0_c00274{width:961.560058px;}
.x0_c00274{left:0.000000px;}
.x88_c00274{left:81.750000px;}
.x92_c00274{left:83.100000px;}
.x3_c00274{left:95.100000px;}
.xc_c00274{left:97.050000px;}
.x31_c00274{left:98.100000px;}
.x3c_c00274{left:99.150000px;}
.x89_c00274{left:100.500000px;}
.x9a_c00274{left:113.400000px;}
.x43_c00274{left:116.100000px;}
.x24_c00274{left:119.250000px;}
.x95_c00274{left:122.250000px;}
.x20_c00274{left:123.900000px;}
.x9e_c00274{left:125.100000px;}
.x2b_c00274{left:126.150000px;}
.x70_c00274{left:128.250000px;}
.x6a_c00274{left:129.600000px;}
.x98_c00274{left:132.450000px;}
.x7c_c00274{left:133.800000px;}
.x4_c00274{left:135.450000px;}
.x25_c00274{left:137.250000px;}
.x4f_c00274{left:139.500000px;}
.x14_c00274{left:142.050000px;}
.x5e_c00274{left:143.850000px;}
.x75_c00274{left:145.500000px;}
.x7a_c00274{left:148.500000px;}
.xd_c00274{left:149.550000px;}
.x37_c00274{left:152.400000px;}
.x44_c00274{left:154.650000px;}
.x3d_c00274{left:159.600000px;}
.x5f_c00274{left:162.600000px;}
.x99_c00274{left:164.250000px;}
.x15_c00274{left:166.500000px;}
.x80_c00274{left:168.750000px;}
.x32_c00274{left:169.800000px;}
.x59_c00274{left:171.000000px;}
.x26_c00274{left:174.750000px;}
.x45_c00274{left:175.950000px;}
.x2c_c00274{left:180.150000px;}
.x38_c00274{left:182.250000px;}
.x50_c00274{left:184.500000px;}
.x4a_c00274{left:186.150000px;}
.x21_c00274{left:187.650000px;}
.x8b_c00274{left:188.850000px;}
.x72_c00274{left:190.350000px;}
.x85_c00274{left:194.100000px;}
.x3e_c00274{left:196.350000px;}
.x76_c00274{left:198.450000px;}
.x9f_c00274{left:199.650000px;}
.x60_c00274{left:201.450000px;}
.x5_c00274{left:202.800000px;}
.x39_c00274{left:204.150000px;}
.x1c_c00274{left:206.250000px;}
.x67_c00274{left:207.450000px;}
.xe_c00274{left:209.700000px;}
.x8c_c00274{left:211.950000px;}
.x73_c00274{left:213.750000px;}
.x16_c00274{left:215.850000px;}
.x8d_c00274{left:217.050000px;}
.x3f_c00274{left:218.250000px;}
.x5a_c00274{left:219.300000px;}
.x86_c00274{left:220.350000px;}
.x46_c00274{left:222.450000px;}
.x3a_c00274{left:223.650000px;}
.x6b_c00274{left:227.100000px;}
.x63_c00274{left:229.050000px;}
.x9b_c00274{left:230.100000px;}
.x4b_c00274{left:235.800000px;}
.x58_c00274{left:237.150000px;}
.x33_c00274{left:238.650000px;}
.x54_c00274{left:240.000000px;}
.x6_c00274{left:241.350000px;}
.x1d_c00274{left:243.000000px;}
.x61_c00274{left:246.150000px;}
.xf_c00274{left:247.800000px;}
.x17_c00274{left:250.050000px;}
.x74_c00274{left:254.100000px;}
.x40_c00274{left:256.800000px;}
.x10_c00274{left:258.300000px;}
.x7d_c00274{left:260.100000px;}
.x34_c00274{left:261.750000px;}
.x51_c00274{left:263.700000px;}
.x1e_c00274{left:265.650000px;}
.x71_c00274{left:269.250000px;}
.x64_c00274{left:270.450000px;}
.x2d_c00274{left:272.250000px;}
.x7_c00274{left:274.800000px;}
.x11_c00274{left:276.300000px;}
.x7e_c00274{left:278.100000px;}
.x65_c00274{left:279.150000px;}
.x82_c00274{left:281.100000px;}
.x47_c00274{left:282.600000px;}
.x27_c00274{left:283.800000px;}
.x90_c00274{left:285.300000px;}
.x55_c00274{left:286.800000px;}
.x18_c00274{left:290.700000px;}
.x6d_c00274{left:292.050000px;}
.x8_c00274{left:294.300000px;}
.x52_c00274{left:296.400000px;}
.x77_c00274{left:297.450000px;}
.x93_c00274{left:298.800000px;}
.x42_c00274{left:300.300000px;}
.x91_c00274{left:302.250000px;}
.x22_c00274{left:303.600000px;}
.x2e_c00274{left:305.400000px;}
.x56_c00274{left:307.650000px;}
.xa0_c00274{left:310.050000px;}
.x83_c00274{left:311.700000px;}
.x9_c00274{left:313.050000px;}
.x68_c00274{left:316.950000px;}
.x1_c00274{left:318.900000px;}
.x9c_c00274{left:320.550000px;}
.x4c_c00274{left:322.500000px;}
.x62_c00274{left:324.300000px;}
.x41_c00274{left:325.500000px;}
.x94_c00274{left:326.550000px;}
.x6e_c00274{left:330.150000px;}
.x19_c00274{left:331.800000px;}
.x48_c00274{left:333.000000px;}
.x3b_c00274{left:334.200000px;}
.x28_c00274{left:335.250000px;}
.x6c_c00274{left:337.350000px;}
.x81_c00274{left:339.300000px;}
.x87_c00274{left:341.400000px;}
.x69_c00274{left:342.450000px;}
.x35_c00274{left:343.500000px;}
.x1f_c00274{left:344.550000px;}
.x23_c00274{left:346.050000px;}
.x6f_c00274{left:347.850000px;}
.x12_c00274{left:349.050000px;}
.x78_c00274{left:350.400000px;}
.x5b_c00274{left:351.600000px;}
.x66_c00274{left:353.550000px;}
.x29_c00274{left:355.350000px;}
.x8e_c00274{left:357.750000px;}
.x96_c00274{left:359.100000px;}
.x4d_c00274{left:360.900000px;}
.x7b_c00274{left:362.850000px;}
.x49_c00274{left:365.400000px;}
.x13_c00274{left:367.350000px;}
.x7f_c00274{left:373.200000px;}
.x8f_c00274{left:375.000000px;}
.x2f_c00274{left:377.400000px;}
.x57_c00274{left:379.950000px;}
.xa_c00274{left:383.250000px;}
.x36_c00274{left:384.600000px;}
.x5c_c00274{left:385.800000px;}
.x79_c00274{left:388.950000px;}
.x4e_c00274{left:390.450000px;}
.x1a_c00274{left:392.700000px;}
.x8a_c00274{left:397.050000px;}
.x30_c00274{left:399.000000px;}
.x97_c00274{left:400.200000px;}
.xb_c00274{left:401.550000px;}
.x53_c00274{left:402.900000px;}
.x84_c00274{left:403.950000px;}
.x2a_c00274{left:405.450000px;}
.x5d_c00274{left:406.650000px;}
.x9d_c00274{left:408.300000px;}
.x1b_c00274{left:413.250000px;}
.xa9_c00274{left:436.650000px;}
.xdd_c00274{left:437.700000px;}
.xb2_c00274{left:451.050000px;}
.xa1_c00274{left:453.900000px;}
.xe1_c00274{left:455.700000px;}
.x115_c00274{left:456.900000px;}
.x12d_c00274{left:458.100000px;}
.x13c_c00274{left:459.300000px;}
.xb9_c00274{left:465.300000px;}
.x139_c00274{left:475.950000px;}
.xe2_c00274{left:477.000000px;}
.x108_c00274{left:478.200000px;}
.x125_c00274{left:479.250000px;}
.xc1_c00274{left:480.750000px;}
.xb3_c00274{left:481.950000px;}
.x119_c00274{left:483.300000px;}
.xca_c00274{left:487.950000px;}
.xa2_c00274{left:489.150000px;}
.xf6_c00274{left:491.850000px;}
.x121_c00274{left:493.650000px;}
.xaa_c00274{left:496.350000px;}
.x11b_c00274{left:497.700000px;}
.xed_c00274{left:499.500000px;}
.x103_c00274{left:501.900000px;}
.x111_c00274{left:504.900000px;}
.xba_c00274{left:507.300000px;}
.xcb_c00274{left:509.250000px;}
.x131_c00274{left:511.500000px;}
.x11d_c00274{left:513.000000px;}
.xfa_c00274{left:515.400000px;}
.xe9_c00274{left:516.900000px;}
.x11c_c00274{left:519.600000px;}
.x109_c00274{left:520.650000px;}
.xbb_c00274{left:521.700000px;}
.xb4_c00274{left:523.650000px;}
.xd5_c00274{left:526.500000px;}
.xc2_c00274{left:528.600000px;}
.xd7_c00274{left:530.700000px;}
.xd1_c00274{left:533.850000px;}
.xfb_c00274{left:537.300000px;}
.xb5_c00274{left:539.550000px;}
.xe3_c00274{left:541.800000px;}
.x10a_c00274{left:543.750000px;}
.xf7_c00274{left:545.550000px;}
.xa3_c00274{left:547.500000px;}
.xbc_c00274{left:549.450000px;}
.xd2_c00274{left:552.150000px;}
.xfc_c00274{left:554.250000px;}
.x12f_c00274{left:557.400000px;}
.xab_c00274{left:559.050000px;}
.xf3_c00274{left:563.550000px;}
.x122_c00274{left:565.350000px;}
.x11a_c00274{left:566.850000px;}
.x10e_c00274{left:568.050000px;}
.xf8_c00274{left:569.700000px;}
.x128_c00274{left:571.200000px;}
.xee_c00274{left:572.250000px;}
.xb6_c00274{left:573.450000px;}
.x100_c00274{left:575.100000px;}
.xac_c00274{left:579.150000px;}
.xd8_c00274{left:581.850000px;}
.x101_c00274{left:584.400000px;}
.x132_c00274{left:586.650000px;}
.xc3_c00274{left:587.700000px;}
.xf4_c00274{left:588.750000px;}
.xcc_c00274{left:589.950000px;}
.x129_c00274{left:592.050000px;}
.xfd_c00274{left:593.250000px;}
.xa4_c00274{left:596.100000px;}
.x10f_c00274{left:598.350000px;}
.xbd_c00274{left:602.400000px;}
.xd3_c00274{left:604.050000px;}
.xf1_c00274{left:608.100000px;}
.x104_c00274{left:610.200000px;}
.x12a_c00274{left:611.850000px;}
.xea_c00274{left:613.650000px;}
.x134_c00274{left:615.450000px;}
.xad_c00274{left:616.650000px;}
.x116_c00274{left:618.300000px;}
.x137_c00274{left:619.500000px;}
.x126_c00274{left:620.550000px;}
.xc4_c00274{left:624.450000px;}
.xe4_c00274{left:626.400000px;}
.xe6_c00274{left:629.100000px;}
.x105_c00274{left:630.750000px;}
.xc5_c00274{left:631.950000px;}
.xcd_c00274{left:634.650000px;}
.xd9_c00274{left:636.150000px;}
.xde_c00274{left:637.200000px;}
.xc6_c00274{left:639.150000px;}
.x11e_c00274{left:641.100000px;}
.xa5_c00274{left:643.650000px;}
.xd6_c00274{left:644.700000px;}
.x106_c00274{left:646.200000px;}
.xbe_c00274{left:648.450000px;}
.x110_c00274{left:649.500000px;}
.xce_c00274{left:652.350000px;}
.x138_c00274{left:653.400000px;}
.xfe_c00274{left:655.200000px;}
.xae_c00274{left:656.550000px;}
.xa6_c00274{left:659.100000px;}
.xc7_c00274{left:661.050000px;}
.xef_c00274{left:664.050000px;}
.xaf_c00274{left:665.250000px;}
.xbf_c00274{left:666.450000px;}
.x112_c00274{left:668.100000px;}
.xda_c00274{left:669.600000px;}
.x13a_c00274{left:671.550000px;}
.x135_c00274{left:672.750000px;}
.xc8_c00274{left:675.450000px;}
.xeb_c00274{left:677.700000px;}
.x11f_c00274{left:679.650000px;}
.x127_c00274{left:682.500000px;}
.x12b_c00274{left:684.600000px;}
.x133_c00274{left:690.000000px;}
.x113_c00274{left:691.200000px;}
.xc0_c00274{left:693.150000px;}
.xa7_c00274{left:694.350000px;}
.x107_c00274{left:696.900000px;}
.x102_c00274{left:698.550000px;}
.xc9_c00274{left:701.100000px;}
.xb7_c00274{left:702.900000px;}
.xa8_c00274{left:705.450000px;}
.xdf_c00274{left:708.150000px;}
.xf2_c00274{left:709.500000px;}
.x114_c00274{left:711.750000px;}
.x12e_c00274{left:716.250000px;}
.x10d_c00274{left:717.600000px;}
.x10b_c00274{left:719.850000px;}
.xff_c00274{left:721.200000px;}
.x123_c00274{left:723.300000px;}
.xb0_c00274{left:724.650000px;}
.x117_c00274{left:725.850000px;}
.xe5_c00274{left:727.950000px;}
.xf0_c00274{left:729.150000px;}
.xf9_c00274{left:730.650000px;}
.xb8_c00274{left:732.000000px;}
.xcf_c00274{left:733.350000px;}
.x118_c00274{left:734.550000px;}
.x12c_c00274{left:737.850000px;}
.x136_c00274{left:739.650000px;}
.x10c_c00274{left:741.150000px;}
.xf5_c00274{left:743.100000px;}
.xe7_c00274{left:744.750000px;}
.xec_c00274{left:745.800000px;}
.x2_c00274{left:749.100000px;}
.x120_c00274{left:750.300000px;}
.x130_c00274{left:752.100000px;}
.xdb_c00274{left:754.950000px;}
.x13b_c00274{left:757.350000px;}
.xb1_c00274{left:758.850000px;}
.xd4_c00274{left:760.800000px;}
.xd0_c00274{left:762.450000px;}
.x124_c00274{left:763.950000px;}
.xe8_c00274{left:765.300000px;}
.xdc_c00274{left:768.600000px;}
.xe0_c00274{left:772.200000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.wsb_c00274{word-spacing:-16.000000pt;}
.ws2_c00274{word-spacing:-5.593496pt;}
.wsc_c00274{word-spacing:-5.376460pt;}
.ws5_c00274{word-spacing:-5.306766pt;}
.wsd_c00274{word-spacing:0.000000pt;}
.ws6_c00274{word-spacing:5.380117pt;}
.ws3_c00274{word-spacing:5.925926pt;}
.ws1_c00274{word-spacing:9.094549pt;}
.ws0_c00274{word-spacing:10.472597pt;}
.ws4_c00274{word-spacing:12.729704pt;}
.ws7_c00274{word-spacing:19.682540pt;}
.ws8_c00274{word-spacing:22.857143pt;}
.ws9_c00274{word-spacing:54.444444pt;}
.wsa_c00274{word-spacing:65.185185pt;}
._2_c00274{margin-left:-28.078431pt;}
._1_c00274{width:52.698413pt;}
._0_c00274{width:57.460317pt;}
.fs6_c00274{font-size:26.666667pt;}
.fs4_c00274{font-size:32.000000pt;}
.fs5_c00274{font-size:37.333333pt;}
.fs3_c00274{font-size:48.000000pt;}
.fs2_c00274{font-size:53.333333pt;}
.fs1_c00274{font-size:58.666667pt;}
.fs0_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y6d_c00274{bottom:146.666667pt;}
.y34_c00274{bottom:162.933333pt;}
.y6c_c00274{bottom:178.800000pt;}
.y33_c00274{bottom:179.200000pt;}
.y6b_c00274{bottom:194.800000pt;}
.y32_c00274{bottom:195.200000pt;}
.y31_c00274{bottom:210.666667pt;}
.y6a_c00274{bottom:210.800000pt;}
.y69_c00274{bottom:226.533333pt;}
.y30_c00274{bottom:226.933333pt;}
.y2f_c00274{bottom:242.933333pt;}
.y68_c00274{bottom:246.400000pt;}
.y2e_c00274{bottom:258.933333pt;}
.y67_c00274{bottom:262.400000pt;}
.y2d_c00274{bottom:274.800000pt;}
.y66_c00274{bottom:282.266667pt;}
.y2c_c00274{bottom:290.800000pt;}
.y65_c00274{bottom:298.000000pt;}
.y2b_c00274{bottom:306.800000pt;}
.y64_c00274{bottom:314.000000pt;}
.y2a_c00274{bottom:322.533333pt;}
.y63_c00274{bottom:330.000000pt;}
.y29_c00274{bottom:341.466667pt;}
.y62_c00274{bottom:346.000000pt;}
.y28_c00274{bottom:358.133333pt;}
.y61_c00274{bottom:361.733333pt;}
.y60_c00274{bottom:377.733333pt;}
.y27_c00274{bottom:378.133333pt;}
.y5f_c00274{bottom:393.466667pt;}
.y26_c00274{bottom:394.133333pt;}
.y25_c00274{bottom:410.133333pt;}
.y5e_c00274{bottom:411.333333pt;}
.y5d_c00274{bottom:425.466667pt;}
.y24_c00274{bottom:425.866667pt;}
.y5c_c00274{bottom:441.200000pt;}
.y23_c00274{bottom:441.866667pt;}
.y5b_c00274{bottom:457.200000pt;}
.y22_c00274{bottom:465.333333pt;}
.y5a_c00274{bottom:473.200000pt;}
.y21_c00274{bottom:481.600000pt;}
.y59_c00274{bottom:489.200000pt;}
.y20_c00274{bottom:501.200000pt;}
.y58_c00274{bottom:505.200000pt;}
.y1f_c00274{bottom:517.200000pt;}
.y57_c00274{bottom:521.200000pt;}
.y1e_c00274{bottom:533.200000pt;}
.y56_c00274{bottom:536.933333pt;}
.y1d_c00274{bottom:549.200000pt;}
.y55_c00274{bottom:553.200000pt;}
.y1c_c00274{bottom:565.200000pt;}
.y54_c00274{bottom:568.533333pt;}
.y1b_c00274{bottom:580.933333pt;}
.y53_c00274{bottom:584.533333pt;}
.y1a_c00274{bottom:596.933333pt;}
.y52_c00274{bottom:600.533333pt;}
.y19_c00274{bottom:612.666667pt;}
.y51_c00274{bottom:616.266667pt;}
.y18_c00274{bottom:630.000000pt;}
.y50_c00274{bottom:632.000000pt;}
.y17_c00274{bottom:645.066667pt;}
.y4f_c00274{bottom:648.000000pt;}
.y16_c00274{bottom:661.066667pt;}
.y4e_c00274{bottom:664.000000pt;}
.y4d_c00274{bottom:680.000000pt;}
.y15_c00274{bottom:680.266667pt;}
.y4c_c00274{bottom:696.000000pt;}
.y14_c00274{bottom:696.933333pt;}
.y4b_c00274{bottom:711.733333pt;}
.y13_c00274{bottom:712.933333pt;}
.y4a_c00274{bottom:727.733333pt;}
.y12_c00274{bottom:728.933333pt;}
.y49_c00274{bottom:743.733333pt;}
.y11_c00274{bottom:748.800000pt;}
.y48_c00274{bottom:759.733333pt;}
.y10_c00274{bottom:764.800000pt;}
.y45_c00274{bottom:779.333333pt;}
.yf_c00274{bottom:781.066667pt;}
.y44_c00274{bottom:790.800000pt;}
.ye_c00274{bottom:796.800000pt;}
.y43_c00274{bottom:804.533333pt;}
.yd_c00274{bottom:812.800000pt;}
.y42_c00274{bottom:818.000000pt;}
.yc_c00274{bottom:828.800000pt;}
.y41_c00274{bottom:829.866667pt;}
.y40_c00274{bottom:841.733333pt;}
.yb_c00274{bottom:844.533333pt;}
.y3f_c00274{bottom:855.466667pt;}
.ya_c00274{bottom:860.533333pt;}
.y3e_c00274{bottom:866.933333pt;}
.y9_c00274{bottom:876.266667pt;}
.y3d_c00274{bottom:880.666667pt;}
.y8_c00274{bottom:892.533333pt;}
.y3c_c00274{bottom:893.733333pt;}
.y47_c00274{bottom:895.600000pt;}
.y3b_c00274{bottom:906.266667pt;}
.y7_c00274{bottom:908.800000pt;}
.y46_c00274{bottom:909.733333pt;}
.y3a_c00274{bottom:918.133333pt;}
.y6_c00274{bottom:925.066667pt;}
.y39_c00274{bottom:931.600000pt;}
.y5_c00274{bottom:941.066667pt;}
.y38_c00274{bottom:943.733333pt;}
.y4_c00274{bottom:956.800000pt;}
.y37_c00274{bottom:958.400000pt;}
.y3_c00274{bottom:972.800000pt;}
.y36_c00274{bottom:974.400000pt;}
.y2_c00274{bottom:988.800000pt;}
.y35_c00274{bottom:991.066667pt;}
.y1_c00274{bottom:1014.133333pt;}
.h8_c00274{height:26.666667pt;}
.h6_c00274{height:32.000000pt;}
.h7_c00274{height:37.333333pt;}
.h5_c00274{height:48.000000pt;}
.h4_c00274{height:53.333333pt;}
.h3_c00274{height:58.666667pt;}
.h2_c00274{height:64.000000pt;}
.h0_c00274{height:1130.559977pt;}
.h1_c00274{height:1130.666667pt;}
.w1_c00274{width:854.666667pt;}
.w0_c00274{width:854.720052pt;}
.x0_c00274{left:0.000000pt;}
.x88_c00274{left:72.666667pt;}
.x92_c00274{left:73.866667pt;}
.x3_c00274{left:84.533333pt;}
.xc_c00274{left:86.266667pt;}
.x31_c00274{left:87.200000pt;}
.x3c_c00274{left:88.133333pt;}
.x89_c00274{left:89.333333pt;}
.x9a_c00274{left:100.800000pt;}
.x43_c00274{left:103.200000pt;}
.x24_c00274{left:106.000000pt;}
.x95_c00274{left:108.666667pt;}
.x20_c00274{left:110.133333pt;}
.x9e_c00274{left:111.200000pt;}
.x2b_c00274{left:112.133333pt;}
.x70_c00274{left:114.000000pt;}
.x6a_c00274{left:115.200000pt;}
.x98_c00274{left:117.733333pt;}
.x7c_c00274{left:118.933333pt;}
.x4_c00274{left:120.400000pt;}
.x25_c00274{left:122.000000pt;}
.x4f_c00274{left:124.000000pt;}
.x14_c00274{left:126.266667pt;}
.x5e_c00274{left:127.866667pt;}
.x75_c00274{left:129.333333pt;}
.x7a_c00274{left:132.000000pt;}
.xd_c00274{left:132.933333pt;}
.x37_c00274{left:135.466667pt;}
.x44_c00274{left:137.466667pt;}
.x3d_c00274{left:141.866667pt;}
.x5f_c00274{left:144.533333pt;}
.x99_c00274{left:146.000000pt;}
.x15_c00274{left:148.000000pt;}
.x80_c00274{left:150.000000pt;}
.x32_c00274{left:150.933333pt;}
.x59_c00274{left:152.000000pt;}
.x26_c00274{left:155.333333pt;}
.x45_c00274{left:156.400000pt;}
.x2c_c00274{left:160.133333pt;}
.x38_c00274{left:162.000000pt;}
.x50_c00274{left:164.000000pt;}
.x4a_c00274{left:165.466667pt;}
.x21_c00274{left:166.800000pt;}
.x8b_c00274{left:167.866667pt;}
.x72_c00274{left:169.200000pt;}
.x85_c00274{left:172.533333pt;}
.x3e_c00274{left:174.533333pt;}
.x76_c00274{left:176.400000pt;}
.x9f_c00274{left:177.466667pt;}
.x60_c00274{left:179.066667pt;}
.x5_c00274{left:180.266667pt;}
.x39_c00274{left:181.466667pt;}
.x1c_c00274{left:183.333333pt;}
.x67_c00274{left:184.400000pt;}
.xe_c00274{left:186.400000pt;}
.x8c_c00274{left:188.400000pt;}
.x73_c00274{left:190.000000pt;}
.x16_c00274{left:191.866667pt;}
.x8d_c00274{left:192.933333pt;}
.x3f_c00274{left:194.000000pt;}
.x5a_c00274{left:194.933333pt;}
.x86_c00274{left:195.866667pt;}
.x46_c00274{left:197.733333pt;}
.x3a_c00274{left:198.800000pt;}
.x6b_c00274{left:201.866667pt;}
.x63_c00274{left:203.600000pt;}
.x9b_c00274{left:204.533333pt;}
.x4b_c00274{left:209.600000pt;}
.x58_c00274{left:210.800000pt;}
.x33_c00274{left:212.133333pt;}
.x54_c00274{left:213.333333pt;}
.x6_c00274{left:214.533333pt;}
.x1d_c00274{left:216.000000pt;}
.x61_c00274{left:218.800000pt;}
.xf_c00274{left:220.266667pt;}
.x17_c00274{left:222.266667pt;}
.x74_c00274{left:225.866667pt;}
.x40_c00274{left:228.266667pt;}
.x10_c00274{left:229.600000pt;}
.x7d_c00274{left:231.200000pt;}
.x34_c00274{left:232.666667pt;}
.x51_c00274{left:234.400000pt;}
.x1e_c00274{left:236.133333pt;}
.x71_c00274{left:239.333333pt;}
.x64_c00274{left:240.400000pt;}
.x2d_c00274{left:242.000000pt;}
.x7_c00274{left:244.266667pt;}
.x11_c00274{left:245.600000pt;}
.x7e_c00274{left:247.200000pt;}
.x65_c00274{left:248.133333pt;}
.x82_c00274{left:249.866667pt;}
.x47_c00274{left:251.200000pt;}
.x27_c00274{left:252.266667pt;}
.x90_c00274{left:253.600000pt;}
.x55_c00274{left:254.933333pt;}
.x18_c00274{left:258.400000pt;}
.x6d_c00274{left:259.600000pt;}
.x8_c00274{left:261.600000pt;}
.x52_c00274{left:263.466667pt;}
.x77_c00274{left:264.400000pt;}
.x93_c00274{left:265.600000pt;}
.x42_c00274{left:266.933333pt;}
.x91_c00274{left:268.666667pt;}
.x22_c00274{left:269.866667pt;}
.x2e_c00274{left:271.466667pt;}
.x56_c00274{left:273.466667pt;}
.xa0_c00274{left:275.600000pt;}
.x83_c00274{left:277.066667pt;}
.x9_c00274{left:278.266667pt;}
.x68_c00274{left:281.733333pt;}
.x1_c00274{left:283.466667pt;}
.x9c_c00274{left:284.933333pt;}
.x4c_c00274{left:286.666667pt;}
.x62_c00274{left:288.266667pt;}
.x41_c00274{left:289.333333pt;}
.x94_c00274{left:290.266667pt;}
.x6e_c00274{left:293.466667pt;}
.x19_c00274{left:294.933333pt;}
.x48_c00274{left:296.000000pt;}
.x3b_c00274{left:297.066667pt;}
.x28_c00274{left:298.000000pt;}
.x6c_c00274{left:299.866667pt;}
.x81_c00274{left:301.600000pt;}
.x87_c00274{left:303.466667pt;}
.x69_c00274{left:304.400000pt;}
.x35_c00274{left:305.333333pt;}
.x1f_c00274{left:306.266667pt;}
.x23_c00274{left:307.600000pt;}
.x6f_c00274{left:309.200000pt;}
.x12_c00274{left:310.266667pt;}
.x78_c00274{left:311.466667pt;}
.x5b_c00274{left:312.533333pt;}
.x66_c00274{left:314.266667pt;}
.x29_c00274{left:315.866667pt;}
.x8e_c00274{left:318.000000pt;}
.x96_c00274{left:319.200000pt;}
.x4d_c00274{left:320.800000pt;}
.x7b_c00274{left:322.533333pt;}
.x49_c00274{left:324.800000pt;}
.x13_c00274{left:326.533333pt;}
.x7f_c00274{left:331.733333pt;}
.x8f_c00274{left:333.333333pt;}
.x2f_c00274{left:335.466667pt;}
.x57_c00274{left:337.733333pt;}
.xa_c00274{left:340.666667pt;}
.x36_c00274{left:341.866667pt;}
.x5c_c00274{left:342.933333pt;}
.x79_c00274{left:345.733333pt;}
.x4e_c00274{left:347.066667pt;}
.x1a_c00274{left:349.066667pt;}
.x8a_c00274{left:352.933333pt;}
.x30_c00274{left:354.666667pt;}
.x97_c00274{left:355.733333pt;}
.xb_c00274{left:356.933333pt;}
.x53_c00274{left:358.133333pt;}
.x84_c00274{left:359.066667pt;}
.x2a_c00274{left:360.400000pt;}
.x5d_c00274{left:361.466667pt;}
.x9d_c00274{left:362.933333pt;}
.x1b_c00274{left:367.333333pt;}
.xa9_c00274{left:388.133333pt;}
.xdd_c00274{left:389.066667pt;}
.xb2_c00274{left:400.933333pt;}
.xa1_c00274{left:403.466667pt;}
.xe1_c00274{left:405.066667pt;}
.x115_c00274{left:406.133333pt;}
.x12d_c00274{left:407.200000pt;}
.x13c_c00274{left:408.266667pt;}
.xb9_c00274{left:413.600000pt;}
.x139_c00274{left:423.066667pt;}
.xe2_c00274{left:424.000000pt;}
.x108_c00274{left:425.066667pt;}
.x125_c00274{left:426.000000pt;}
.xc1_c00274{left:427.333333pt;}
.xb3_c00274{left:428.400000pt;}
.x119_c00274{left:429.600000pt;}
.xca_c00274{left:433.733333pt;}
.xa2_c00274{left:434.800000pt;}
.xf6_c00274{left:437.200000pt;}
.x121_c00274{left:438.800000pt;}
.xaa_c00274{left:441.200000pt;}
.x11b_c00274{left:442.400000pt;}
.xed_c00274{left:444.000000pt;}
.x103_c00274{left:446.133333pt;}
.x111_c00274{left:448.800000pt;}
.xba_c00274{left:450.933333pt;}
.xcb_c00274{left:452.666667pt;}
.x131_c00274{left:454.666667pt;}
.x11d_c00274{left:456.000000pt;}
.xfa_c00274{left:458.133333pt;}
.xe9_c00274{left:459.466667pt;}
.x11c_c00274{left:461.866667pt;}
.x109_c00274{left:462.800000pt;}
.xbb_c00274{left:463.733333pt;}
.xb4_c00274{left:465.466667pt;}
.xd5_c00274{left:468.000000pt;}
.xc2_c00274{left:469.866667pt;}
.xd7_c00274{left:471.733333pt;}
.xd1_c00274{left:474.533333pt;}
.xfb_c00274{left:477.600000pt;}
.xb5_c00274{left:479.600000pt;}
.xe3_c00274{left:481.600000pt;}
.x10a_c00274{left:483.333333pt;}
.xf7_c00274{left:484.933333pt;}
.xa3_c00274{left:486.666667pt;}
.xbc_c00274{left:488.400000pt;}
.xd2_c00274{left:490.800000pt;}
.xfc_c00274{left:492.666667pt;}
.x12f_c00274{left:495.466667pt;}
.xab_c00274{left:496.933333pt;}
.xf3_c00274{left:500.933333pt;}
.x122_c00274{left:502.533333pt;}
.x11a_c00274{left:503.866667pt;}
.x10e_c00274{left:504.933333pt;}
.xf8_c00274{left:506.400000pt;}
.x128_c00274{left:507.733333pt;}
.xee_c00274{left:508.666667pt;}
.xb6_c00274{left:509.733333pt;}
.x100_c00274{left:511.200000pt;}
.xac_c00274{left:514.800000pt;}
.xd8_c00274{left:517.200000pt;}
.x101_c00274{left:519.466667pt;}
.x132_c00274{left:521.466667pt;}
.xc3_c00274{left:522.400000pt;}
.xf4_c00274{left:523.333333pt;}
.xcc_c00274{left:524.400000pt;}
.x129_c00274{left:526.266667pt;}
.xfd_c00274{left:527.333333pt;}
.xa4_c00274{left:529.866667pt;}
.x10f_c00274{left:531.866667pt;}
.xbd_c00274{left:535.466667pt;}
.xd3_c00274{left:536.933333pt;}
.xf1_c00274{left:540.533333pt;}
.x104_c00274{left:542.400000pt;}
.x12a_c00274{left:543.866667pt;}
.xea_c00274{left:545.466667pt;}
.x134_c00274{left:547.066667pt;}
.xad_c00274{left:548.133333pt;}
.x116_c00274{left:549.600000pt;}
.x137_c00274{left:550.666667pt;}
.x126_c00274{left:551.600000pt;}
.xc4_c00274{left:555.066667pt;}
.xe4_c00274{left:556.800000pt;}
.xe6_c00274{left:559.200000pt;}
.x105_c00274{left:560.666667pt;}
.xc5_c00274{left:561.733333pt;}
.xcd_c00274{left:564.133333pt;}
.xd9_c00274{left:565.466667pt;}
.xde_c00274{left:566.400000pt;}
.xc6_c00274{left:568.133333pt;}
.x11e_c00274{left:569.866667pt;}
.xa5_c00274{left:572.133333pt;}
.xd6_c00274{left:573.066667pt;}
.x106_c00274{left:574.400000pt;}
.xbe_c00274{left:576.400000pt;}
.x110_c00274{left:577.333333pt;}
.xce_c00274{left:579.866667pt;}
.x138_c00274{left:580.800000pt;}
.xfe_c00274{left:582.400000pt;}
.xae_c00274{left:583.600000pt;}
.xa6_c00274{left:585.866667pt;}
.xc7_c00274{left:587.600000pt;}
.xef_c00274{left:590.266667pt;}
.xaf_c00274{left:591.333333pt;}
.xbf_c00274{left:592.400000pt;}
.x112_c00274{left:593.866667pt;}
.xda_c00274{left:595.200000pt;}
.x13a_c00274{left:596.933333pt;}
.x135_c00274{left:598.000000pt;}
.xc8_c00274{left:600.400000pt;}
.xeb_c00274{left:602.400000pt;}
.x11f_c00274{left:604.133333pt;}
.x127_c00274{left:606.666667pt;}
.x12b_c00274{left:608.533333pt;}
.x133_c00274{left:613.333333pt;}
.x113_c00274{left:614.400000pt;}
.xc0_c00274{left:616.133333pt;}
.xa7_c00274{left:617.200000pt;}
.x107_c00274{left:619.466667pt;}
.x102_c00274{left:620.933333pt;}
.xc9_c00274{left:623.200000pt;}
.xb7_c00274{left:624.800000pt;}
.xa8_c00274{left:627.066667pt;}
.xdf_c00274{left:629.466667pt;}
.xf2_c00274{left:630.666667pt;}
.x114_c00274{left:632.666667pt;}
.x12e_c00274{left:636.666667pt;}
.x10d_c00274{left:637.866667pt;}
.x10b_c00274{left:639.866667pt;}
.xff_c00274{left:641.066667pt;}
.x123_c00274{left:642.933333pt;}
.xb0_c00274{left:644.133333pt;}
.x117_c00274{left:645.200000pt;}
.xe5_c00274{left:647.066667pt;}
.xf0_c00274{left:648.133333pt;}
.xf9_c00274{left:649.466667pt;}
.xb8_c00274{left:650.666667pt;}
.xcf_c00274{left:651.866667pt;}
.x118_c00274{left:652.933333pt;}
.x12c_c00274{left:655.866667pt;}
.x136_c00274{left:657.466667pt;}
.x10c_c00274{left:658.800000pt;}
.xf5_c00274{left:660.533333pt;}
.xe7_c00274{left:662.000000pt;}
.xec_c00274{left:662.933333pt;}
.x2_c00274{left:665.866667pt;}
.x120_c00274{left:666.933333pt;}
.x130_c00274{left:668.533333pt;}
.xdb_c00274{left:671.066667pt;}
.x13b_c00274{left:673.200000pt;}
.xb1_c00274{left:674.533333pt;}
.xd4_c00274{left:676.266667pt;}
.xd0_c00274{left:677.733333pt;}
.x124_c00274{left:679.066667pt;}
.xe8_c00274{left:680.266667pt;}
.xdc_c00274{left:683.200000pt;}
.xe0_c00274{left:686.400000pt;}
}





/* 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_c00275 {
    display:none;
  }
  .loading-indicator_c00275.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00275 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_c00275 { 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_c00275" -> "#page-container .classname_c00275")
 */
.pf_c00275 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00275 { /* 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_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00275 { /* 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_c00275 { /* 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_c00275 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00275 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00275 {overflow:visible;}
  }
}
.c_c00275 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00275 { /* 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_c00275:after { /* webkit #35443 */
  content: '';
}
.t_c00275:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00275 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 */
}
.__c00275 { /* 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_c00275 { /* info for Javascript */
  display:none;
}
.l_c00275 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00275 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00275 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00275: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_c00275 {
    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_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00275.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_c00275 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00275;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.000000;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;}
.mb7_c00275{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00275{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00275{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00275{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00275{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m110_c00275{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00275{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m13_c00275{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m54_c00275{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md2_c00275{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m96_c00275{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00275{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00275{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00275{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00275{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00275{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m97_c00275{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mce_c00275{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mab_c00275{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mad_c00275{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00275{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m102_c00275{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m21_c00275{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00275{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00275{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m90_c00275{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.maf_c00275{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00275{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m29_c00275{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m119_c00275{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m48_c00275{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00275{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m85_c00275{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me7_c00275{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00275{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m20_c00275{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m109_c00275{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m47_c00275{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00275{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.me0_c00275{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00275{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00275{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00275{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00275{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00275{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00275{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me_c00275{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00275{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00275{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00275{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00275{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00275{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6_c00275{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00275{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00275{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00275{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00275{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00275{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4_c00275{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00275{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00275{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mae_c00275{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00275{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md4_c00275{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00275{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m67_c00275{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m51_c00275{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m30_c00275{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.md8_c00275{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m18_c00275{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00275{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00275{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00275{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m22_c00275{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00275{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00275{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mec_c00275{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m61_c00275{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00275{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m31_c00275{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00275{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.me6_c00275{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m11_c00275{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m49_c00275{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me5_c00275{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m32_c00275{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m10_c00275{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00275{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00275{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me2_c00275{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00275{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m42_c00275{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md9_c00275{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m28_c00275{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9_c00275{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00275{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m63_c00275{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00275{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m23_c00275{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m39_c00275{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00275{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m69_c00275{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00275{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00275{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00275{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00275{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.md0_c00275{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf_c00275{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00275{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mca_c00275{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00275{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md3_c00275{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m75_c00275{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5_c00275{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m73_c00275{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m92_c00275{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m84_c00275{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb_c00275{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m58_c00275{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00275{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m68_c00275{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m19_c00275{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m40_c00275{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00275{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00275{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00275{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m24_c00275{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00275{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m52_c00275{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00275{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00275{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc_c00275{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md5_c00275{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00275{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00275{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m41_c00275{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m27_c00275{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m94_c00275{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me1_c00275{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m64_c00275{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m55_c00275{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m78_c00275{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00275{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m12_c00275{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00275{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m101_c00275{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md6_c00275{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m108_c00275{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m74_c00275{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md_c00275{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00275{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00275{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00275{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m59_c00275{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00275{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00275{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00275{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m80_c00275{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00275{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00275{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00275{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mef_c00275{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00275{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m15_c00275{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m35_c00275{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m26_c00275{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m99_c00275{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00275{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m72_c00275{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00275{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m86_c00275{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00275{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m116_c00275{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m83_c00275{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m104_c00275{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m66_c00275{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m46_c00275{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mda_c00275{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00275{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md7_c00275{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m8_c00275{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00275{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m79_c00275{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma_c00275{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mba_c00275{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00275{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.md1_c00275{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m25_c00275{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00275{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00275{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m56_c00275{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00275{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mac_c00275{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m60_c00275{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00275{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00275{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m16_c00275{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m115_c00275{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m53_c00275{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m38_c00275{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m44_c00275{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00275{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00275{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00275{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00275{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00275{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00275{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00275{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m34_c00275{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m77_c00275{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m100_c00275{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m76_c00275{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m114_c00275{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m71_c00275{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m117_c00275{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m62_c00275{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00275{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m95_c00275{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m103_c00275{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00275{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00275{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00275{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00275{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00275{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m89_c00275{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00275{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m82_c00275{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.maa_c00275{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7_c00275{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00275{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m107_c00275{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00275{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m57_c00275{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00275{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.me9_c00275{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00275{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mea_c00275{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m113_c00275{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m88_c00275{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00275{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m37_c00275{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m87_c00275{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m33_c00275{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.meb_c00275{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00275{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m65_c00275{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00275{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00275{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me4_c00275{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00275{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.me3_c00275{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m98_c00275{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00275{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m106_c00275{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00275{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00275{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00275{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mff_c00275{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00275{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m111_c00275{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mde_c00275{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00275{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m91_c00275{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m93_c00275{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m50_c00275{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00275{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m36_c00275{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m43_c00275{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00275{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m70_c00275{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m45_c00275{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.med_c00275{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m105_c00275{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00275{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mee_c00275{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m81_c00275{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00275{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00275{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m112_c00275{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.me8_c00275{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00275{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m118_c00275{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(0.512000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00275{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls0_c00275{letter-spacing:0.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{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__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00275{word-spacing:-17.380952px;}
.ws0_c00275{word-spacing:-10.820961px;}
.ws3_c00275{word-spacing:-3.582210px;}
.wsd_c00275{word-spacing:0.000000px;}
.ws7_c00275{word-spacing:1.298701px;}
.wsc_c00275{word-spacing:1.924528px;}
.ws6_c00275{word-spacing:5.000000px;}
.ws8_c00275{word-spacing:7.763158px;}
.ws4_c00275{word-spacing:9.763052px;}
.ws2_c00275{word-spacing:10.169054px;}
.ws9_c00275{word-spacing:15.671159px;}
.ws1_c00275{word-spacing:16.463918px;}
.ws5_c00275{word-spacing:29.583333px;}
.wsa_c00275{word-spacing:35.833333px;}
._1_c00275{width:70.000000px;}
._0_c00275{width:74.166667px;}
._2_c00275{width:80.416667px;}
.fc0_c00275{color:transparent;}
.fs6_c00275{font-size:24.000000px;}
.fs5_c00275{font-size:48.000000px;}
.fs4_c00275{font-size:54.000000px;}
.fs2_c00275{font-size:60.000000px;}
.fs1_c00275{font-size:66.000000px;}
.fs3_c00275{font-size:72.000000px;}
.fs0_c00275{font-size:78.000000px;}
.y0_c00275{bottom:0.000000px;}
.y35_c00275{bottom:159.150000px;}
.y66_c00275{bottom:177.450000px;}
.y34_c00275{bottom:180.750000px;}
.y65_c00275{bottom:195.450000px;}
.y33_c00275{bottom:199.050000px;}
.y32_c00275{bottom:217.050000px;}
.y64_c00275{bottom:217.800000px;}
.y31_c00275{bottom:235.050000px;}
.y63_c00275{bottom:236.100000px;}
.y30_c00275{bottom:252.750000px;}
.y62_c00275{bottom:254.100000px;}
.y61_c00275{bottom:272.100000px;}
.y2f_c00275{bottom:277.200000px;}
.y60_c00275{bottom:290.100000px;}
.y2e_c00275{bottom:291.600000px;}
.y2d_c00275{bottom:306.750000px;}
.y5f_c00275{bottom:307.800000px;}
.y2c_c00275{bottom:321.150000px;}
.y5e_c00275{bottom:325.800000px;}
.y5d_c00275{bottom:343.800000px;}
.y2b_c00275{bottom:345.900000px;}
.y5c_c00275{bottom:361.800000px;}
.y2a_c00275{bottom:363.600000px;}
.y5b_c00275{bottom:379.800000px;}
.y29_c00275{bottom:381.300000px;}
.y5a_c00275{bottom:397.800000px;}
.y28_c00275{bottom:403.650000px;}
.y59_c00275{bottom:419.100000px;}
.y27_c00275{bottom:421.650000px;}
.y58_c00275{bottom:432.750000px;}
.y26_c00275{bottom:439.650000px;}
.y57_c00275{bottom:446.100000px;}
.y25_c00275{bottom:457.950000px;}
.y56_c00275{bottom:461.100000px;}
.y24_c00275{bottom:475.950000px;}
.y55_c00275{bottom:479.100000px;}
.y54_c00275{bottom:496.800000px;}
.y23_c00275{bottom:498.300000px;}
.y53_c00275{bottom:519.450000px;}
.y22_c00275{bottom:529.200000px;}
.y52_c00275{bottom:537.450000px;}
.y21_c00275{bottom:546.600000px;}
.y51_c00275{bottom:555.150000px;}
.y20_c00275{bottom:568.950000px;}
.y50_c00275{bottom:577.350000px;}
.y1f_c00275{bottom:586.950000px;}
.y4f_c00275{bottom:595.050000px;}
.y1e_c00275{bottom:604.650000px;}
.y4e_c00275{bottom:622.050000px;}
.y1d_c00275{bottom:622.650000px;}
.y4d_c00275{bottom:640.050000px;}
.y1c_c00275{bottom:640.350000px;}
.y1b_c00275{bottom:658.350000px;}
.y1a_c00275{bottom:676.050000px;}
.y4c_c00275{bottom:694.050000px;}
.y19_c00275{bottom:694.350000px;}
.y18_c00275{bottom:712.050000px;}
.y4b_c00275{bottom:729.750000px;}
.y17_c00275{bottom:730.050000px;}
.y16_c00275{bottom:747.750000px;}
.y4a_c00275{bottom:752.400000px;}
.y15_c00275{bottom:769.500000px;}
.y49_c00275{bottom:770.400000px;}
.y14_c00275{bottom:787.800000px;}
.y48_c00275{bottom:788.400000px;}
.y13_c00275{bottom:805.800000px;}
.y47_c00275{bottom:806.400000px;}
.y12_c00275{bottom:823.500000px;}
.y46_c00275{bottom:824.100000px;}
.y11_c00275{bottom:841.200000px;}
.y45_c00275{bottom:842.100000px;}
.y10_c00275{bottom:859.200000px;}
.y44_c00275{bottom:860.100000px;}
.yf_c00275{bottom:876.900000px;}
.y43_c00275{bottom:878.100000px;}
.ye_c00275{bottom:895.200000px;}
.y42_c00275{bottom:896.100000px;}
.yd_c00275{bottom:912.900000px;}
.y41_c00275{bottom:914.100000px;}
.yc_c00275{bottom:930.600000px;}
.y40_c00275{bottom:932.400000px;}
.yb_c00275{bottom:948.600000px;}
.y3f_c00275{bottom:950.400000px;}
.y3e_c00275{bottom:968.100000px;}
.ya_c00275{bottom:970.650000px;}
.y9_c00275{bottom:988.350000px;}
.y3d_c00275{bottom:989.250000px;}
.y8_c00275{bottom:1006.350000px;}
.y3c_c00275{bottom:1008.300000px;}
.y7_c00275{bottom:1024.050000px;}
.y3b_c00275{bottom:1026.600000px;}
.y6_c00275{bottom:1042.050000px;}
.y3a_c00275{bottom:1044.300000px;}
.y5_c00275{bottom:1060.050000px;}
.y39_c00275{bottom:1062.300000px;}
.y4_c00275{bottom:1077.750000px;}
.y38_c00275{bottom:1080.300000px;}
.y3_c00275{bottom:1095.750000px;}
.y37_c00275{bottom:1098.000000px;}
.y2_c00275{bottom:1113.450000px;}
.y36_c00275{bottom:1116.000000px;}
.y1_c00275{bottom:1141.500000px;}
.h8_c00275{height:24.000000px;}
.h7_c00275{height:48.000000px;}
.h6_c00275{height:54.000000px;}
.h4_c00275{height:60.000000px;}
.h3_c00275{height:66.000000px;}
.h5_c00275{height:72.000000px;}
.h2_c00275{height:78.000000px;}
.h1_c00275{height:1262.250000px;}
.h0_c00275{height:1262.519990px;}
.w1_c00275{width:961.500000px;}
.w0_c00275{width:961.560058px;}
.x0_c00275{left:0.000000px;}
.xa3_c00275{left:180.750000px;}
.x92_c00275{left:188.100000px;}
.x1_c00275{left:194.400000px;}
.x88_c00275{left:195.450000px;}
.x89_c00275{left:204.450000px;}
.x9f_c00275{left:208.800000px;}
.x4c_c00275{left:210.300000px;}
.x3_c00275{left:211.350000px;}
.x17_c00275{left:212.400000px;}
.xa2_c00275{left:222.900000px;}
.x76_c00275{left:224.400000px;}
.x62_c00275{left:229.350000px;}
.x47_c00275{left:230.550000px;}
.x20_c00275{left:232.800000px;}
.x4_c00275{left:234.450000px;}
.x6e_c00275{left:236.400000px;}
.x52_c00275{left:238.800000px;}
.x5e_c00275{left:239.850000px;}
.x38_c00275{left:241.650000px;}
.x48_c00275{left:244.200000px;}
.x4d_c00275{left:245.550000px;}
.x67_c00275{left:247.050000px;}
.x71_c00275{left:249.000000px;}
.x65_c00275{left:251.250000px;}
.x21_c00275{left:252.300000px;}
.x7a_c00275{left:253.350000px;}
.x58_c00275{left:255.300000px;}
.x18_c00275{left:257.100000px;}
.x83_c00275{left:258.300000px;}
.x69_c00275{left:259.350000px;}
.xc_c00275{left:262.500000px;}
.x12_c00275{left:264.600000px;}
.xa0_c00275{left:265.650000px;}
.x7b_c00275{left:268.800000px;}
.x28_c00275{left:270.300000px;}
.x35_c00275{left:274.050000px;}
.x3d_c00275{left:275.850000px;}
.x59_c00275{left:276.900000px;}
.x9a_c00275{left:278.400000px;}
.x5_c00275{left:279.450000px;}
.x32_c00275{left:281.100000px;}
.x81_c00275{left:282.300000px;}
.x22_c00275{left:283.650000px;}
.x9b_c00275{left:288.450000px;}
.x2d_c00275{left:290.550000px;}
.xd_c00275{left:292.050000px;}
.x8d_c00275{left:294.000000px;}
.x1e_c00275{left:295.350000px;}
.x3e_c00275{left:297.450000px;}
.x23_c00275{left:302.400000px;}
.x5a_c00275{left:304.650000px;}
.x53_c00275{left:307.950000px;}
.x93_c00275{left:310.200000px;}
.x49_c00275{left:311.550000px;}
.x43_c00275{left:313.500000px;}
.x98_c00275{left:314.700000px;}
.x6_c00275{left:316.500000px;}
.x24_c00275{left:317.850000px;}
.x8b_c00275{left:319.500000px;}
.xa5_c00275{left:321.150000px;}
.x29_c00275{left:322.200000px;}
.x13_c00275{left:323.700000px;}
.x19_c00275{left:324.750000px;}
.xa6_c00275{left:326.550000px;}
.x77_c00275{left:328.800000px;}
.x6f_c00275{left:330.000000px;}
.x39_c00275{left:331.950000px;}
.x8e_c00275{left:333.600000px;}
.x63_c00275{left:334.800000px;}
.x68_c00275{left:336.300000px;}
.xe_c00275{left:337.800000px;}
.x56_c00275{left:339.450000px;}
.x5f_c00275{left:341.100000px;}
.x14_c00275{left:343.800000px;}
.x7c_c00275{left:345.450000px;}
.x1a_c00275{left:347.100000px;}
.x6b_c00275{left:350.400000px;}
.x7_c00275{left:351.450000px;}
.x8c_c00275{left:352.650000px;}
.x7d_c00275{left:354.450000px;}
.x4e_c00275{left:356.100000px;}
.x44_c00275{left:357.450000px;}
.x84_c00275{left:358.500000px;}
.x94_c00275{left:360.600000px;}
.x25_c00275{left:362.100000px;}
.x54_c00275{left:364.500000px;}
.x8f_c00275{left:366.300000px;}
.x60_c00275{left:367.350000px;}
.x33_c00275{left:368.550000px;}
.x64_c00275{left:369.750000px;}
.x7e_c00275{left:372.150000px;}
.x2e_c00275{left:373.800000px;}
.x2a_c00275{left:376.200000px;}
.x36_c00275{left:378.000000px;}
.x3f_c00275{left:380.250000px;}
.x8_c00275{left:382.350000px;}
.xf_c00275{left:384.600000px;}
.x78_c00275{left:386.400000px;}
.x5b_c00275{left:387.450000px;}
.x61_c00275{left:390.000000px;}
.x4f_c00275{left:391.050000px;}
.x34_c00275{left:392.700000px;}
.x82_c00275{left:393.900000px;}
.x9c_c00275{left:395.700000px;}
.x95_c00275{left:397.650000px;}
.x66_c00275{left:400.650000px;}
.x3a_c00275{left:402.150000px;}
.x9_c00275{left:403.950000px;}
.x9d_c00275{left:406.200000px;}
.x72_c00275{left:411.300000px;}
.x4a_c00275{left:412.650000px;}
.x6a_c00275{left:416.700000px;}
.x2f_c00275{left:417.750000px;}
.x2b_c00275{left:420.150000px;}
.x5c_c00275{left:421.650000px;}
.x1b_c00275{left:425.250000px;}
.x3b_c00275{left:427.050000px;}
.x15_c00275{left:428.100000px;}
.x2c_c00275{left:429.900000px;}
.x2_c00275{left:432.000000px;}
.x90_c00275{left:433.650000px;}
.x26_c00275{left:434.850000px;}
.x6c_c00275{left:437.250000px;}
.x45_c00275{left:439.800000px;}
.x9e_c00275{left:442.200000px;}
.x85_c00275{left:444.150000px;}
.x1c_c00275{left:446.100000px;}
.x70_c00275{left:448.800000px;}
.x50_c00275{left:451.200000px;}
.xa_c00275{left:452.550000px;}
.x7f_c00275{left:454.050000px;}
.x73_c00275{left:455.250000px;}
.x6d_c00275{left:457.800000px;}
.x51_c00275{left:460.200000px;}
.x3c_c00275{left:461.550000px;}
.x1f_c00275{left:463.500000px;}
.x80_c00275{left:467.400000px;}
.xa4_c00275{left:469.350000px;}
.x8a_c00275{left:472.650000px;}
.x30_c00275{left:474.300000px;}
.x10_c00275{left:476.700000px;}
.x74_c00275{left:478.350000px;}
.x99_c00275{left:480.000000px;}
.x40_c00275{left:482.550000px;}
.xb_c00275{left:483.900000px;}
.x46_c00275{left:485.100000px;}
.x4b_c00275{left:488.250000px;}
.x91_c00275{left:490.950000px;}
.x1d_c00275{left:492.600000px;}
.x96_c00275{left:495.150000px;}
.x57_c00275{left:496.800000px;}
.x16_c00275{left:497.850000px;}
.x11_c00275{left:499.350000px;}
.x37_c00275{left:501.450000px;}
.x31_c00275{left:504.600000px;}
.x55_c00275{left:506.400000px;}
.x79_c00275{left:507.450000px;}
.x86_c00275{left:508.950000px;}
.x41_c00275{left:512.850000px;}
.x27_c00275{left:514.800000px;}
.xa1_c00275{left:516.000000px;}
.x75_c00275{left:519.000000px;}
.x5d_c00275{left:520.650000px;}
.x97_c00275{left:522.150000px;}
.x42_c00275{left:523.350000px;}
.x87_c00275{left:526.200000px;}
.x13c_c00275{left:550.050000px;}
.x111_c00275{left:551.100000px;}
.x122_c00275{left:552.300000px;}
.xa7_c00275{left:567.750000px;}
.xc0_c00275{left:568.800000px;}
.x104_c00275{left:570.000000px;}
.x112_c00275{left:577.800000px;}
.x132_c00275{left:580.650000px;}
.x11f_c00275{left:582.150000px;}
.xe5_c00275{left:583.800000px;}
.x137_c00275{left:586.800000px;}
.xdc_c00275{left:588.300000px;}
.xa8_c00275{left:591.900000px;}
.x12c_c00275{left:593.850000px;}
.x12a_c00275{left:595.500000px;}
.x123_c00275{left:597.600000px;}
.xec_c00275{left:601.350000px;}
.x127_c00275{left:603.750000px;}
.xc6_c00275{left:605.250000px;}
.xba_c00275{left:608.100000px;}
.xa9_c00275{left:610.200000px;}
.xf8_c00275{left:611.250000px;}
.x128_c00275{left:612.450000px;}
.x11c_c00275{left:614.850000px;}
.xfe_c00275{left:616.800000px;}
.xb3_c00275{left:618.150000px;}
.xd6_c00275{left:620.100000px;}
.xc7_c00275{left:623.550000px;}
.xce_c00275{left:626.400000px;}
.xc1_c00275{left:627.900000px;}
.xdd_c00275{left:630.450000px;}
.xf0_c00275{left:631.650000px;}
.x134_c00275{left:634.050000px;}
.xbb_c00275{left:635.100000px;}
.xd7_c00275{left:636.600000px;}
.x10e_c00275{left:637.950000px;}
.xff_c00275{left:639.450000px;}
.xe6_c00275{left:641.700000px;}
.xed_c00275{left:643.050000px;}
.x101_c00275{left:646.350000px;}
.x131_c00275{left:648.300000px;}
.x129_c00275{left:650.250000px;}
.xf1_c00275{left:651.750000px;}
.xde_c00275{left:654.600000px;}
.x121_c00275{left:655.650000px;}
.xaa_c00275{left:658.800000px;}
.xcf_c00275{left:659.850000px;}
.xee_c00275{left:662.850000px;}
.xb4_c00275{left:664.650000px;}
.xc8_c00275{left:666.000000px;}
.xf6_c00275{left:669.450000px;}
.xd0_c00275{left:671.700000px;}
.x125_c00275{left:673.350000px;}
.xc9_c00275{left:675.000000px;}
.xe7_c00275{left:676.200000px;}
.xef_c00275{left:678.300000px;}
.xc2_c00275{left:680.400000px;}
.x107_c00275{left:682.650000px;}
.xbc_c00275{left:683.700000px;}
.x138_c00275{left:685.050000px;}
.xd1_c00275{left:688.200000px;}
.x118_c00275{left:690.000000px;}
.x102_c00275{left:692.400000px;}
.xab_c00275{left:694.500000px;}
.xf2_c00275{left:695.700000px;}
.x10c_c00275{left:696.750000px;}
.xe8_c00275{left:699.300000px;}
.x11d_c00275{left:701.250000px;}
.x115_c00275{left:703.050000px;}
.xbd_c00275{left:704.250000px;}
.x13e_c00275{left:705.300000px;}
.x119_c00275{left:707.700000px;}
.xdf_c00275{left:709.350000px;}
.xca_c00275{left:710.700000px;}
.x12b_c00275{left:711.900000px;}
.xac_c00275{left:714.600000px;}
.x136_c00275{left:717.450000px;}
.xe0_c00275{left:719.100000px;}
.x11e_c00275{left:720.300000px;}
.xf7_c00275{left:721.950000px;}
.xb5_c00275{left:723.000000px;}
.x124_c00275{left:725.700000px;}
.xad_c00275{left:732.900000px;}
.xd2_c00275{left:733.950000px;}
.x12d_c00275{left:735.450000px;}
.x10f_c00275{left:737.250000px;}
.xcb_c00275{left:738.750000px;}
.x109_c00275{left:741.000000px;}
.x103_c00275{left:742.800000px;}
.xc3_c00275{left:745.200000px;}
.xe1_c00275{left:746.850000px;}
.xf9_c00275{left:748.500000px;}
.xd8_c00275{left:750.450000px;}
.x113_c00275{left:751.650000px;}
.x139_c00275{left:753.150000px;}
.x114_c00275{left:754.800000px;}
.xbe_c00275{left:756.750000px;}
.x100_c00275{left:758.250000px;}
.xb6_c00275{left:763.350000px;}
.xe9_c00275{left:764.850000px;}
.xae_c00275{left:767.100000px;}
.x110_c00275{left:769.650000px;}
.xd9_c00275{left:771.750000px;}
.xb7_c00275{left:773.850000px;}
.xf3_c00275{left:776.700000px;}
.xd3_c00275{left:780.000000px;}
.xc4_c00275{left:781.200000px;}
.xfa_c00275{left:782.400000px;}
.xea_c00275{left:784.950000px;}
.x105_c00275{left:789.450000px;}
.xaf_c00275{left:790.800000px;}
.x13b_c00275{left:792.900000px;}
.xe2_c00275{left:794.400000px;}
.x10a_c00275{left:797.100000px;}
.xd4_c00275{left:799.800000px;}
.x120_c00275{left:801.750000px;}
.x12e_c00275{left:803.100000px;}
.xda_c00275{left:805.200000px;}
.x11a_c00275{left:806.700000px;}
.xb0_c00275{left:808.500000px;}
.x126_c00275{left:811.650000px;}
.xfb_c00275{left:814.800000px;}
.x12f_c00275{left:816.750000px;}
.x116_c00275{left:819.000000px;}
.xb8_c00275{left:822.750000px;}
.xd5_c00275{left:825.750000px;}
.x135_c00275{left:827.550000px;}
.xbf_c00275{left:828.750000px;}
.x10b_c00275{left:831.000000px;}
.x106_c00275{left:833.400000px;}
.x117_c00275{left:834.450000px;}
.x13f_c00275{left:836.700000px;}
.xe3_c00275{left:838.350000px;}
.x108_c00275{left:840.300000px;}
.xcc_c00275{left:842.400000px;}
.xf4_c00275{left:845.100000px;}
.x133_c00275{left:846.750000px;}
.x10d_c00275{left:848.250000px;}
.xe4_c00275{left:849.450000px;}
.xb1_c00275{left:850.650000px;}
.xfc_c00275{left:853.350000px;}
.xb9_c00275{left:854.400000px;}
.xdb_c00275{left:856.650000px;}
.xc5_c00275{left:858.600000px;}
.xb2_c00275{left:861.150000px;}
.xf5_c00275{left:866.400000px;}
.xeb_c00275{left:868.500000px;}
.x13d_c00275{left:870.150000px;}
.x11b_c00275{left:871.500000px;}
.xcd_c00275{left:873.000000px;}
.x130_c00275{left:875.850000px;}
.xfd_c00275{left:877.800000px;}
.x13a_c00275{left:879.750000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.wsb_c00275{word-spacing:-15.449735pt;}
.ws0_c00275{word-spacing:-9.618632pt;}
.ws3_c00275{word-spacing:-3.184187pt;}
.wsd_c00275{word-spacing:0.000000pt;}
.ws7_c00275{word-spacing:1.154401pt;}
.wsc_c00275{word-spacing:1.710692pt;}
.ws6_c00275{word-spacing:4.444444pt;}
.ws8_c00275{word-spacing:6.900585pt;}
.ws4_c00275{word-spacing:8.678269pt;}
.ws2_c00275{word-spacing:9.039160pt;}
.ws9_c00275{word-spacing:13.929919pt;}
.ws1_c00275{word-spacing:14.634593pt;}
.ws5_c00275{word-spacing:26.296296pt;}
.wsa_c00275{word-spacing:31.851852pt;}
._1_c00275{width:62.222222pt;}
._0_c00275{width:65.925926pt;}
._2_c00275{width:71.481481pt;}
.fs6_c00275{font-size:21.333333pt;}
.fs5_c00275{font-size:42.666667pt;}
.fs4_c00275{font-size:48.000000pt;}
.fs2_c00275{font-size:53.333333pt;}
.fs1_c00275{font-size:58.666667pt;}
.fs3_c00275{font-size:64.000000pt;}
.fs0_c00275{font-size:69.333333pt;}
.y0_c00275{bottom:0.000000pt;}
.y35_c00275{bottom:141.466667pt;}
.y66_c00275{bottom:157.733333pt;}
.y34_c00275{bottom:160.666667pt;}
.y65_c00275{bottom:173.733333pt;}
.y33_c00275{bottom:176.933333pt;}
.y32_c00275{bottom:192.933333pt;}
.y64_c00275{bottom:193.600000pt;}
.y31_c00275{bottom:208.933333pt;}
.y63_c00275{bottom:209.866667pt;}
.y30_c00275{bottom:224.666667pt;}
.y62_c00275{bottom:225.866667pt;}
.y61_c00275{bottom:241.866667pt;}
.y2f_c00275{bottom:246.400000pt;}
.y60_c00275{bottom:257.866667pt;}
.y2e_c00275{bottom:259.200000pt;}
.y2d_c00275{bottom:272.666667pt;}
.y5f_c00275{bottom:273.600000pt;}
.y2c_c00275{bottom:285.466667pt;}
.y5e_c00275{bottom:289.600000pt;}
.y5d_c00275{bottom:305.600000pt;}
.y2b_c00275{bottom:307.466667pt;}
.y5c_c00275{bottom:321.600000pt;}
.y2a_c00275{bottom:323.200000pt;}
.y5b_c00275{bottom:337.600000pt;}
.y29_c00275{bottom:338.933333pt;}
.y5a_c00275{bottom:353.600000pt;}
.y28_c00275{bottom:358.800000pt;}
.y59_c00275{bottom:372.533333pt;}
.y27_c00275{bottom:374.800000pt;}
.y58_c00275{bottom:384.666667pt;}
.y26_c00275{bottom:390.800000pt;}
.y57_c00275{bottom:396.533333pt;}
.y25_c00275{bottom:407.066667pt;}
.y56_c00275{bottom:409.866667pt;}
.y24_c00275{bottom:423.066667pt;}
.y55_c00275{bottom:425.866667pt;}
.y54_c00275{bottom:441.600000pt;}
.y23_c00275{bottom:442.933333pt;}
.y53_c00275{bottom:461.733333pt;}
.y22_c00275{bottom:470.400000pt;}
.y52_c00275{bottom:477.733333pt;}
.y21_c00275{bottom:485.866667pt;}
.y51_c00275{bottom:493.466667pt;}
.y20_c00275{bottom:505.733333pt;}
.y50_c00275{bottom:513.200000pt;}
.y1f_c00275{bottom:521.733333pt;}
.y4f_c00275{bottom:528.933333pt;}
.y1e_c00275{bottom:537.466667pt;}
.y4e_c00275{bottom:552.933333pt;}
.y1d_c00275{bottom:553.466667pt;}
.y4d_c00275{bottom:568.933333pt;}
.y1c_c00275{bottom:569.200000pt;}
.y1b_c00275{bottom:585.200000pt;}
.y1a_c00275{bottom:600.933333pt;}
.y4c_c00275{bottom:616.933333pt;}
.y19_c00275{bottom:617.200000pt;}
.y18_c00275{bottom:632.933333pt;}
.y4b_c00275{bottom:648.666667pt;}
.y17_c00275{bottom:648.933333pt;}
.y16_c00275{bottom:664.666667pt;}
.y4a_c00275{bottom:668.800000pt;}
.y15_c00275{bottom:684.000000pt;}
.y49_c00275{bottom:684.800000pt;}
.y14_c00275{bottom:700.266667pt;}
.y48_c00275{bottom:700.800000pt;}
.y13_c00275{bottom:716.266667pt;}
.y47_c00275{bottom:716.800000pt;}
.y12_c00275{bottom:732.000000pt;}
.y46_c00275{bottom:732.533333pt;}
.y11_c00275{bottom:747.733333pt;}
.y45_c00275{bottom:748.533333pt;}
.y10_c00275{bottom:763.733333pt;}
.y44_c00275{bottom:764.533333pt;}
.yf_c00275{bottom:779.466667pt;}
.y43_c00275{bottom:780.533333pt;}
.ye_c00275{bottom:795.733333pt;}
.y42_c00275{bottom:796.533333pt;}
.yd_c00275{bottom:811.466667pt;}
.y41_c00275{bottom:812.533333pt;}
.yc_c00275{bottom:827.200000pt;}
.y40_c00275{bottom:828.800000pt;}
.yb_c00275{bottom:843.200000pt;}
.y3f_c00275{bottom:844.800000pt;}
.y3e_c00275{bottom:860.533333pt;}
.ya_c00275{bottom:862.800000pt;}
.y9_c00275{bottom:878.533333pt;}
.y3d_c00275{bottom:879.333333pt;}
.y8_c00275{bottom:894.533333pt;}
.y3c_c00275{bottom:896.266667pt;}
.y7_c00275{bottom:910.266667pt;}
.y3b_c00275{bottom:912.533333pt;}
.y6_c00275{bottom:926.266667pt;}
.y3a_c00275{bottom:928.266667pt;}
.y5_c00275{bottom:942.266667pt;}
.y39_c00275{bottom:944.266667pt;}
.y4_c00275{bottom:958.000000pt;}
.y38_c00275{bottom:960.266667pt;}
.y3_c00275{bottom:974.000000pt;}
.y37_c00275{bottom:976.000000pt;}
.y2_c00275{bottom:989.733333pt;}
.y36_c00275{bottom:992.000000pt;}
.y1_c00275{bottom:1014.666667pt;}
.h8_c00275{height:21.333333pt;}
.h7_c00275{height:42.666667pt;}
.h6_c00275{height:48.000000pt;}
.h4_c00275{height:53.333333pt;}
.h3_c00275{height:58.666667pt;}
.h5_c00275{height:64.000000pt;}
.h2_c00275{height:69.333333pt;}
.h1_c00275{height:1122.000000pt;}
.h0_c00275{height:1122.239991pt;}
.w1_c00275{width:854.666667pt;}
.w0_c00275{width:854.720052pt;}
.x0_c00275{left:0.000000pt;}
.xa3_c00275{left:160.666667pt;}
.x92_c00275{left:167.200000pt;}
.x1_c00275{left:172.800000pt;}
.x88_c00275{left:173.733333pt;}
.x89_c00275{left:181.733333pt;}
.x9f_c00275{left:185.600000pt;}
.x4c_c00275{left:186.933333pt;}
.x3_c00275{left:187.866667pt;}
.x17_c00275{left:188.800000pt;}
.xa2_c00275{left:198.133333pt;}
.x76_c00275{left:199.466667pt;}
.x62_c00275{left:203.866667pt;}
.x47_c00275{left:204.933333pt;}
.x20_c00275{left:206.933333pt;}
.x4_c00275{left:208.400000pt;}
.x6e_c00275{left:210.133333pt;}
.x52_c00275{left:212.266667pt;}
.x5e_c00275{left:213.200000pt;}
.x38_c00275{left:214.800000pt;}
.x48_c00275{left:217.066667pt;}
.x4d_c00275{left:218.266667pt;}
.x67_c00275{left:219.600000pt;}
.x71_c00275{left:221.333333pt;}
.x65_c00275{left:223.333333pt;}
.x21_c00275{left:224.266667pt;}
.x7a_c00275{left:225.200000pt;}
.x58_c00275{left:226.933333pt;}
.x18_c00275{left:228.533333pt;}
.x83_c00275{left:229.600000pt;}
.x69_c00275{left:230.533333pt;}
.xc_c00275{left:233.333333pt;}
.x12_c00275{left:235.200000pt;}
.xa0_c00275{left:236.133333pt;}
.x7b_c00275{left:238.933333pt;}
.x28_c00275{left:240.266667pt;}
.x35_c00275{left:243.600000pt;}
.x3d_c00275{left:245.200000pt;}
.x59_c00275{left:246.133333pt;}
.x9a_c00275{left:247.466667pt;}
.x5_c00275{left:248.400000pt;}
.x32_c00275{left:249.866667pt;}
.x81_c00275{left:250.933333pt;}
.x22_c00275{left:252.133333pt;}
.x9b_c00275{left:256.400000pt;}
.x2d_c00275{left:258.266667pt;}
.xd_c00275{left:259.600000pt;}
.x8d_c00275{left:261.333333pt;}
.x1e_c00275{left:262.533333pt;}
.x3e_c00275{left:264.400000pt;}
.x23_c00275{left:268.800000pt;}
.x5a_c00275{left:270.800000pt;}
.x53_c00275{left:273.733333pt;}
.x93_c00275{left:275.733333pt;}
.x49_c00275{left:276.933333pt;}
.x43_c00275{left:278.666667pt;}
.x98_c00275{left:279.733333pt;}
.x6_c00275{left:281.333333pt;}
.x24_c00275{left:282.533333pt;}
.x8b_c00275{left:284.000000pt;}
.xa5_c00275{left:285.466667pt;}
.x29_c00275{left:286.400000pt;}
.x13_c00275{left:287.733333pt;}
.x19_c00275{left:288.666667pt;}
.xa6_c00275{left:290.266667pt;}
.x77_c00275{left:292.266667pt;}
.x6f_c00275{left:293.333333pt;}
.x39_c00275{left:295.066667pt;}
.x8e_c00275{left:296.533333pt;}
.x63_c00275{left:297.600000pt;}
.x68_c00275{left:298.933333pt;}
.xe_c00275{left:300.266667pt;}
.x56_c00275{left:301.733333pt;}
.x5f_c00275{left:303.200000pt;}
.x14_c00275{left:305.600000pt;}
.x7c_c00275{left:307.066667pt;}
.x1a_c00275{left:308.533333pt;}
.x6b_c00275{left:311.466667pt;}
.x7_c00275{left:312.400000pt;}
.x8c_c00275{left:313.466667pt;}
.x7d_c00275{left:315.066667pt;}
.x4e_c00275{left:316.533333pt;}
.x44_c00275{left:317.733333pt;}
.x84_c00275{left:318.666667pt;}
.x94_c00275{left:320.533333pt;}
.x25_c00275{left:321.866667pt;}
.x54_c00275{left:324.000000pt;}
.x8f_c00275{left:325.600000pt;}
.x60_c00275{left:326.533333pt;}
.x33_c00275{left:327.600000pt;}
.x64_c00275{left:328.666667pt;}
.x7e_c00275{left:330.800000pt;}
.x2e_c00275{left:332.266667pt;}
.x2a_c00275{left:334.400000pt;}
.x36_c00275{left:336.000000pt;}
.x3f_c00275{left:338.000000pt;}
.x8_c00275{left:339.866667pt;}
.xf_c00275{left:341.866667pt;}
.x78_c00275{left:343.466667pt;}
.x5b_c00275{left:344.400000pt;}
.x61_c00275{left:346.666667pt;}
.x4f_c00275{left:347.600000pt;}
.x34_c00275{left:349.066667pt;}
.x82_c00275{left:350.133333pt;}
.x9c_c00275{left:351.733333pt;}
.x95_c00275{left:353.466667pt;}
.x66_c00275{left:356.133333pt;}
.x3a_c00275{left:357.466667pt;}
.x9_c00275{left:359.066667pt;}
.x9d_c00275{left:361.066667pt;}
.x72_c00275{left:365.600000pt;}
.x4a_c00275{left:366.800000pt;}
.x6a_c00275{left:370.400000pt;}
.x2f_c00275{left:371.333333pt;}
.x2b_c00275{left:373.466667pt;}
.x5c_c00275{left:374.800000pt;}
.x1b_c00275{left:378.000000pt;}
.x3b_c00275{left:379.600000pt;}
.x15_c00275{left:380.533333pt;}
.x2c_c00275{left:382.133333pt;}
.x2_c00275{left:384.000000pt;}
.x90_c00275{left:385.466667pt;}
.x26_c00275{left:386.533333pt;}
.x6c_c00275{left:388.666667pt;}
.x45_c00275{left:390.933333pt;}
.x9e_c00275{left:393.066667pt;}
.x85_c00275{left:394.800000pt;}
.x1c_c00275{left:396.533333pt;}
.x70_c00275{left:398.933333pt;}
.x50_c00275{left:401.066667pt;}
.xa_c00275{left:402.266667pt;}
.x7f_c00275{left:403.600000pt;}
.x73_c00275{left:404.666667pt;}
.x6d_c00275{left:406.933333pt;}
.x51_c00275{left:409.066667pt;}
.x3c_c00275{left:410.266667pt;}
.x1f_c00275{left:412.000000pt;}
.x80_c00275{left:415.466667pt;}
.xa4_c00275{left:417.200000pt;}
.x8a_c00275{left:420.133333pt;}
.x30_c00275{left:421.600000pt;}
.x10_c00275{left:423.733333pt;}
.x74_c00275{left:425.200000pt;}
.x99_c00275{left:426.666667pt;}
.x40_c00275{left:428.933333pt;}
.xb_c00275{left:430.133333pt;}
.x46_c00275{left:431.200000pt;}
.x4b_c00275{left:434.000000pt;}
.x91_c00275{left:436.400000pt;}
.x1d_c00275{left:437.866667pt;}
.x96_c00275{left:440.133333pt;}
.x57_c00275{left:441.600000pt;}
.x16_c00275{left:442.533333pt;}
.x11_c00275{left:443.866667pt;}
.x37_c00275{left:445.733333pt;}
.x31_c00275{left:448.533333pt;}
.x55_c00275{left:450.133333pt;}
.x79_c00275{left:451.066667pt;}
.x86_c00275{left:452.400000pt;}
.x41_c00275{left:455.866667pt;}
.x27_c00275{left:457.600000pt;}
.xa1_c00275{left:458.666667pt;}
.x75_c00275{left:461.333333pt;}
.x5d_c00275{left:462.800000pt;}
.x97_c00275{left:464.133333pt;}
.x42_c00275{left:465.200000pt;}
.x87_c00275{left:467.733333pt;}
.x13c_c00275{left:488.933333pt;}
.x111_c00275{left:489.866667pt;}
.x122_c00275{left:490.933333pt;}
.xa7_c00275{left:504.666667pt;}
.xc0_c00275{left:505.600000pt;}
.x104_c00275{left:506.666667pt;}
.x112_c00275{left:513.600000pt;}
.x132_c00275{left:516.133333pt;}
.x11f_c00275{left:517.466667pt;}
.xe5_c00275{left:518.933333pt;}
.x137_c00275{left:521.600000pt;}
.xdc_c00275{left:522.933333pt;}
.xa8_c00275{left:526.133333pt;}
.x12c_c00275{left:527.866667pt;}
.x12a_c00275{left:529.333333pt;}
.x123_c00275{left:531.200000pt;}
.xec_c00275{left:534.533333pt;}
.x127_c00275{left:536.666667pt;}
.xc6_c00275{left:538.000000pt;}
.xba_c00275{left:540.533333pt;}
.xa9_c00275{left:542.400000pt;}
.xf8_c00275{left:543.333333pt;}
.x128_c00275{left:544.400000pt;}
.x11c_c00275{left:546.533333pt;}
.xfe_c00275{left:548.266667pt;}
.xb3_c00275{left:549.466667pt;}
.xd6_c00275{left:551.200000pt;}
.xc7_c00275{left:554.266667pt;}
.xce_c00275{left:556.800000pt;}
.xc1_c00275{left:558.133333pt;}
.xdd_c00275{left:560.400000pt;}
.xf0_c00275{left:561.466667pt;}
.x134_c00275{left:563.600000pt;}
.xbb_c00275{left:564.533333pt;}
.xd7_c00275{left:565.866667pt;}
.x10e_c00275{left:567.066667pt;}
.xff_c00275{left:568.400000pt;}
.xe6_c00275{left:570.400000pt;}
.xed_c00275{left:571.600000pt;}
.x101_c00275{left:574.533333pt;}
.x131_c00275{left:576.266667pt;}
.x129_c00275{left:578.000000pt;}
.xf1_c00275{left:579.333333pt;}
.xde_c00275{left:581.866667pt;}
.x121_c00275{left:582.800000pt;}
.xaa_c00275{left:585.600000pt;}
.xcf_c00275{left:586.533333pt;}
.xee_c00275{left:589.200000pt;}
.xb4_c00275{left:590.800000pt;}
.xc8_c00275{left:592.000000pt;}
.xf6_c00275{left:595.066667pt;}
.xd0_c00275{left:597.066667pt;}
.x125_c00275{left:598.533333pt;}
.xc9_c00275{left:600.000000pt;}
.xe7_c00275{left:601.066667pt;}
.xef_c00275{left:602.933333pt;}
.xc2_c00275{left:604.800000pt;}
.x107_c00275{left:606.800000pt;}
.xbc_c00275{left:607.733333pt;}
.x138_c00275{left:608.933333pt;}
.xd1_c00275{left:611.733333pt;}
.x118_c00275{left:613.333333pt;}
.x102_c00275{left:615.466667pt;}
.xab_c00275{left:617.333333pt;}
.xf2_c00275{left:618.400000pt;}
.x10c_c00275{left:619.333333pt;}
.xe8_c00275{left:621.600000pt;}
.x11d_c00275{left:623.333333pt;}
.x115_c00275{left:624.933333pt;}
.xbd_c00275{left:626.000000pt;}
.x13e_c00275{left:626.933333pt;}
.x119_c00275{left:629.066667pt;}
.xdf_c00275{left:630.533333pt;}
.xca_c00275{left:631.733333pt;}
.x12b_c00275{left:632.800000pt;}
.xac_c00275{left:635.200000pt;}
.x136_c00275{left:637.733333pt;}
.xe0_c00275{left:639.200000pt;}
.x11e_c00275{left:640.266667pt;}
.xf7_c00275{left:641.733333pt;}
.xb5_c00275{left:642.666667pt;}
.x124_c00275{left:645.066667pt;}
.xad_c00275{left:651.466667pt;}
.xd2_c00275{left:652.400000pt;}
.x12d_c00275{left:653.733333pt;}
.x10f_c00275{left:655.333333pt;}
.xcb_c00275{left:656.666667pt;}
.x109_c00275{left:658.666667pt;}
.x103_c00275{left:660.266667pt;}
.xc3_c00275{left:662.400000pt;}
.xe1_c00275{left:663.866667pt;}
.xf9_c00275{left:665.333333pt;}
.xd8_c00275{left:667.066667pt;}
.x113_c00275{left:668.133333pt;}
.x139_c00275{left:669.466667pt;}
.x114_c00275{left:670.933333pt;}
.xbe_c00275{left:672.666667pt;}
.x100_c00275{left:674.000000pt;}
.xb6_c00275{left:678.533333pt;}
.xe9_c00275{left:679.866667pt;}
.xae_c00275{left:681.866667pt;}
.x110_c00275{left:684.133333pt;}
.xd9_c00275{left:686.000000pt;}
.xb7_c00275{left:687.866667pt;}
.xf3_c00275{left:690.400000pt;}
.xd3_c00275{left:693.333333pt;}
.xc4_c00275{left:694.400000pt;}
.xfa_c00275{left:695.466667pt;}
.xea_c00275{left:697.733333pt;}
.x105_c00275{left:701.733333pt;}
.xaf_c00275{left:702.933333pt;}
.x13b_c00275{left:704.800000pt;}
.xe2_c00275{left:706.133333pt;}
.x10a_c00275{left:708.533333pt;}
.xd4_c00275{left:710.933333pt;}
.x120_c00275{left:712.666667pt;}
.x12e_c00275{left:713.866667pt;}
.xda_c00275{left:715.733333pt;}
.x11a_c00275{left:717.066667pt;}
.xb0_c00275{left:718.666667pt;}
.x126_c00275{left:721.466667pt;}
.xfb_c00275{left:724.266667pt;}
.x12f_c00275{left:726.000000pt;}
.x116_c00275{left:728.000000pt;}
.xb8_c00275{left:731.333333pt;}
.xd5_c00275{left:734.000000pt;}
.x135_c00275{left:735.600000pt;}
.xbf_c00275{left:736.666667pt;}
.x10b_c00275{left:738.666667pt;}
.x106_c00275{left:740.800000pt;}
.x117_c00275{left:741.733333pt;}
.x13f_c00275{left:743.733333pt;}
.xe3_c00275{left:745.200000pt;}
.x108_c00275{left:746.933333pt;}
.xcc_c00275{left:748.800000pt;}
.xf4_c00275{left:751.200000pt;}
.x133_c00275{left:752.666667pt;}
.x10d_c00275{left:754.000000pt;}
.xe4_c00275{left:755.066667pt;}
.xb1_c00275{left:756.133333pt;}
.xfc_c00275{left:758.533333pt;}
.xb9_c00275{left:759.466667pt;}
.xdb_c00275{left:761.466667pt;}
.xc5_c00275{left:763.200000pt;}
.xb2_c00275{left:765.466667pt;}
.xf5_c00275{left:770.133333pt;}
.xeb_c00275{left:772.000000pt;}
.x13d_c00275{left:773.466667pt;}
.x11b_c00275{left:774.666667pt;}
.xcd_c00275{left:776.000000pt;}
.x130_c00275{left:778.533333pt;}
.xfd_c00275{left:780.266667pt;}
.x13a_c00275{left:782.000000pt;}
}





/* 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_c00276 {
    display:none;
  }
  .loading-indicator_c00276.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00276 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_c00276 { 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_c00276" -> "#page-container .classname_c00276")
 */
.pf_c00276 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00276 { /* 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_c00276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00276 { /* 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_c00276 { /* 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_c00276 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00276 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00276 {overflow:visible;}
  }
}
.c_c00276 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00276 { /* 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_c00276:after { /* webkit #35443 */
  content: '';
}
.t_c00276:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00276 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 */
}
.__c00276 { /* 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_c00276 { /* info for Javascript */
  display:none;
}
.l_c00276 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00276 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00276 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00276: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_c00276 {
    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_c00276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00276.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_c00276 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00276;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.000000;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;}
.mb9_c00276{transform:matrix(0.010500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010500,0.000000,0.000000,0.250000,0,0);}
.me0_c00276{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00276{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.me1_c00276{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m65_c00276{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00276{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m11_c00276{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m46_c00276{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mce_c00276{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.md0_c00276{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00276{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00276{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m59_c00276{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00276{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00276{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00276{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00276{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00276{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00276{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00276{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00276{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m54_c00276{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00276{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m98_c00276{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00276{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00276{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m108_c00276{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m29_c00276{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m96_c00276{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m30_c00276{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m7_c00276{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m48_c00276{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m76_c00276{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m113_c00276{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m114_c00276{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00276{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00276{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m40_c00276{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m16_c00276{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00276{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00276{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.md_c00276{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m106_c00276{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00276{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00276{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m118_c00276{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00276{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00276{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m79_c00276{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00276{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00276{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m21_c00276{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me_c00276{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m111_c00276{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m93_c00276{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m43_c00276{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00276{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m80_c00276{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m70_c00276{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m26_c00276{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00276{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00276{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m61_c00276{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m66_c00276{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00276{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00276{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10_c00276{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m27_c00276{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m101_c00276{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00276{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m68_c00276{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00276{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00276{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00276{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00276{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m102_c00276{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00276{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m20_c00276{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00276{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00276{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m104_c00276{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m77_c00276{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m5_c00276{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mda_c00276{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00276{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m71_c00276{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00276{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m88_c00276{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00276{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m86_c00276{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m53_c00276{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6_c00276{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m62_c00276{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00276{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00276{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m99_c00276{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00276{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mb_c00276{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00276{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m116_c00276{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m12_c00276{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m95_c00276{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md8_c00276{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m13_c00276{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mae_c00276{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00276{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mde_c00276{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m31_c00276{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m109_c00276{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00276{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m36_c00276{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00276{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mef_c00276{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00276{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9_c00276{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00276{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m89_c00276{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m115_c00276{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m81_c00276{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m91_c00276{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mac_c00276{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m87_c00276{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00276{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m22_c00276{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m42_c00276{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00276{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md4_c00276{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m72_c00276{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00276{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00276{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me3_c00276{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m119_c00276{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00276{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00276{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m15_c00276{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma_c00276{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m97_c00276{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m47_c00276{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00276{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m85_c00276{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00276{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00276{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00276{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00276{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m110_c00276{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00276{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m45_c00276{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00276{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md6_c00276{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8_c00276{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00276{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00276{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00276{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m60_c00276{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m103_c00276{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00276{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m90_c00276{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00276{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m82_c00276{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00276{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00276{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00276{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m39_c00276{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m78_c00276{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00276{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m63_c00276{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m38_c00276{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00276{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00276{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m44_c00276{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md9_c00276{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00276{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00276{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md7_c00276{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m25_c00276{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m37_c00276{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m23_c00276{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00276{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.md2_c00276{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00276{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m32_c00276{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m41_c00276{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m83_c00276{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me9_c00276{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m84_c00276{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00276{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m28_c00276{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m19_c00276{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mab_c00276{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00276{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00276{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mad_c00276{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m24_c00276{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00276{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00276{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m18_c00276{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m117_c00276{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m112_c00276{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m58_c00276{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00276{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m64_c00276{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m100_c00276{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m74_c00276{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00276{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00276{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m75_c00276{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00276{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m105_c00276{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m69_c00276{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.med_c00276{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00276{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00276{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m67_c00276{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00276{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00276{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m35_c00276{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mee_c00276{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.meb_c00276{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m49_c00276{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00276{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00276{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.maf_c00276{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.me4_c00276{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00276{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00276{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m55_c00276{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.maa_c00276{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mff_c00276{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00276{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mec_c00276{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m57_c00276{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00276{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me6_c00276{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m52_c00276{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00276{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00276{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00276{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.me5_c00276{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00276{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m56_c00276{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.md3_c00276{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00276{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m73_c00276{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00276{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md5_c00276{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00276{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m50_c00276{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00276{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00276{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00276{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00276{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.me8_c00276{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m14_c00276{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00276{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00276{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00276{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m51_c00276{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m34_c00276{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.md1_c00276{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mf_c00276{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00276{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.me7_c00276{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m92_c00276{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00276{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me2_c00276{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00276{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m107_c00276{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00276{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00276{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00276{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m33_c00276{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00276{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mba_c00276{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00276{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m17_c00276{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00276{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00276{transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00276{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mca_c00276{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00276{transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504250,0.000000,0.000000,0.250000,0,0);}
.mea_c00276{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00276{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls0_c00276{letter-spacing:0.000000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{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__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00276{word-spacing:-6.666667px;}
.ws7_c00276{word-spacing:-4.500000px;}
.ws8_c00276{word-spacing:-0.160305px;}
.ws9_c00276{word-spacing:0.000000px;}
.ws5_c00276{word-spacing:1.312715px;}
.ws4_c00276{word-spacing:3.343788px;}
.ws3_c00276{word-spacing:13.457036px;}
.ws1_c00276{word-spacing:19.994638px;}
.ws0_c00276{word-spacing:29.285714px;}
.ws2_c00276{word-spacing:67.250000px;}
.fc0_c00276{color:transparent;}
.fs7_c00276{font-size:30.000000px;}
.fs4_c00276{font-size:48.000000px;}
.fs5_c00276{font-size:54.000000px;}
.fs3_c00276{font-size:60.000000px;}
.fs2_c00276{font-size:66.000000px;}
.fs1_c00276{font-size:72.000000px;}
.fs0_c00276{font-size:78.000000px;}
.fs6_c00276{font-size:204.000000px;}
.y0_c00276{bottom:0.000000px;}
.y6a_c00276{bottom:184.200000px;}
.y55_c00276{bottom:184.800000px;}
.y69_c00276{bottom:198.900000px;}
.y54_c00276{bottom:199.500000px;}
.y68_c00276{bottom:213.300000px;}
.y53_c00276{bottom:213.900000px;}
.y31_c00276{bottom:222.150000px;}
.y67_c00276{bottom:227.700000px;}
.y52_c00276{bottom:228.600000px;}
.y66_c00276{bottom:242.100000px;}
.y51_c00276{bottom:242.700000px;}
.y65_c00276{bottom:256.500000px;}
.y30_c00276{bottom:260.700000px;}
.y64_c00276{bottom:271.200000px;}
.y2f_c00276{bottom:271.800000px;}
.y63_c00276{bottom:285.600000px;}
.y2e_c00276{bottom:286.200000px;}
.y62_c00276{bottom:300.000000px;}
.y2d_c00276{bottom:300.600000px;}
.y61_c00276{bottom:314.100000px;}
.y60_c00276{bottom:328.500000px;}
.y5f_c00276{bottom:342.900000px;}
.y2c_c00276{bottom:343.500000px;}
.y5e_c00276{bottom:357.300000px;}
.y2b_c00276{bottom:361.500000px;}
.y5d_c00276{bottom:371.400000px;}
.y2a_c00276{bottom:383.100000px;}
.y5c_c00276{bottom:385.500000px;}
.y5b_c00276{bottom:399.900000px;}
.y29_c00276{bottom:405.300000px;}
.y5a_c00276{bottom:415.350000px;}
.y28_c00276{bottom:423.300000px;}
.y59_c00276{bottom:428.700000px;}
.y27_c00276{bottom:441.300000px;}
.y26_c00276{bottom:459.300000px;}
.y58_c00276{bottom:469.350000px;}
.y25_c00276{bottom:477.300000px;}
.y57_c00276{bottom:487.350000px;}
.y24_c00276{bottom:499.650000px;}
.y56_c00276{bottom:505.050000px;}
.y23_c00276{bottom:517.350000px;}
.y50_c00276{bottom:527.700000px;}
.y22_c00276{bottom:535.350000px;}
.y4f_c00276{bottom:545.700000px;}
.y21_c00276{bottom:553.350000px;}
.y4e_c00276{bottom:563.700000px;}
.y20_c00276{bottom:571.350000px;}
.y4d_c00276{bottom:581.400000px;}
.y1f_c00276{bottom:589.350000px;}
.y4c_c00276{bottom:599.400000px;}
.y1e_c00276{bottom:607.350000px;}
.y4b_c00276{bottom:617.100000px;}
.y1d_c00276{bottom:624.900000px;}
.y4a_c00276{bottom:635.100000px;}
.y1c_c00276{bottom:642.900000px;}
.y49_c00276{bottom:657.000000px;}
.y1b_c00276{bottom:660.900000px;}
.y48_c00276{bottom:674.250000px;}
.y1a_c00276{bottom:678.600000px;}
.y19_c00276{bottom:696.300000px;}
.y47_c00276{bottom:705.300000px;}
.y18_c00276{bottom:714.600000px;}
.y46_c00276{bottom:727.950000px;}
.y17_c00276{bottom:732.300000px;}
.y45_c00276{bottom:745.950000px;}
.y16_c00276{bottom:750.300000px;}
.y15_c00276{bottom:767.850000px;}
.y14_c00276{bottom:785.850000px;}
.y13_c00276{bottom:803.850000px;}
.y44_c00276{bottom:821.850000px;}
.y12_c00276{bottom:824.250000px;}
.y11_c00276{bottom:838.650000px;}
.y43_c00276{bottom:843.450000px;}
.y10_c00276{bottom:852.750000px;}
.y42_c00276{bottom:865.800000px;}
.yf_c00276{bottom:866.100000px;}
.ye_c00276{bottom:878.700000px;}
.y41_c00276{bottom:888.150000px;}
.yd_c00276{bottom:898.200000px;}
.y3a_c00276{bottom:909.600000px;}
.yc_c00276{bottom:916.200000px;}
.y39_c00276{bottom:927.600000px;}
.yb_c00276{bottom:933.900000px;}
.y38_c00276{bottom:949.950000px;}
.ya_c00276{bottom:955.500000px;}
.y37_c00276{bottom:972.300000px;}
.y40_c00276{bottom:972.750000px;}
.y9_c00276{bottom:973.800000px;}
.y3f_c00276{bottom:981.450000px;}
.y3d_c00276{bottom:991.050000px;}
.y8_c00276{bottom:991.500000px;}
.y3e_c00276{bottom:999.750000px;}
.y36_c00276{bottom:1000.800000px;}
.y3c_c00276{bottom:1001.100000px;}
.y3b_c00276{bottom:1007.700000px;}
.y7_c00276{bottom:1009.500000px;}
.y35_c00276{bottom:1027.050000px;}
.y6_c00276{bottom:1027.500000px;}
.y5_c00276{bottom:1049.100000px;}
.y34_c00276{bottom:1049.400000px;}
.y4_c00276{bottom:1078.200000px;}
.y33_c00276{bottom:1080.300000px;}
.y3_c00276{bottom:1097.250000px;}
.y32_c00276{bottom:1114.950000px;}
.y2_c00276{bottom:1115.250000px;}
.y1_c00276{bottom:1142.250000px;}
.h9_c00276{height:30.000000px;}
.h6_c00276{height:48.000000px;}
.h7_c00276{height:54.000000px;}
.h5_c00276{height:60.000000px;}
.h4_c00276{height:66.000000px;}
.h3_c00276{height:72.000000px;}
.h2_c00276{height:78.000000px;}
.h8_c00276{height:204.000000px;}
.h1_c00276{height:1270.500000px;}
.h0_c00276{height:1270.799927px;}
.w1_c00276{width:961.500000px;}
.w0_c00276{width:961.560058px;}
.x0_c00276{left:0.000000px;}
.x2f_c00276{left:92.100000px;}
.x11_c00276{left:93.600000px;}
.x96_c00276{left:95.400000px;}
.xa0_c00276{left:96.450000px;}
.x39_c00276{left:97.500000px;}
.x41_c00276{left:101.250000px;}
.x2_c00276{left:109.500000px;}
.x51_c00276{left:110.550000px;}
.x5c_c00276{left:111.600000px;}
.x7c_c00276{left:112.800000px;}
.x9d_c00276{left:115.650000px;}
.xfe_c00276{left:117.450000px;}
.x48_c00276{left:120.300000px;}
.x104_c00276{left:122.850000px;}
.x101_c00276{left:124.200000px;}
.x16_c00276{left:127.050000px;}
.x86_c00276{left:129.900000px;}
.x99_c00276{left:131.700000px;}
.x6b_c00276{left:134.250000px;}
.x12_c00276{left:135.300000px;}
.x3a_c00276{left:136.350000px;}
.x3_c00276{left:137.550000px;}
.x25_c00276{left:142.800000px;}
.x57_c00276{left:146.250000px;}
.x90_c00276{left:148.800000px;}
.xa_c00276{left:150.150000px;}
.x93_c00276{left:151.500000px;}
.x3b_c00276{left:154.650000px;}
.x80_c00276{left:156.300000px;}
.x97_c00276{left:157.350000px;}
.x72_c00276{left:159.450000px;}
.x28_c00276{left:161.850000px;}
.x35_c00276{left:164.250000px;}
.x58_c00276{left:166.800000px;}
.x9a_c00276{left:168.000000px;}
.x6e_c00276{left:169.500000px;}
.x78_c00276{left:171.750000px;}
.x13_c00276{left:173.400000px;}
.x8d_c00276{left:174.450000px;}
.x17_c00276{left:175.650000px;}
.x87_c00276{left:176.700000px;}
.x7d_c00276{left:178.350000px;}
.x68_c00276{left:180.450000px;}
.x4d_c00276{left:181.800000px;}
.xff_c00276{left:184.800000px;}
.x103_c00276{left:186.000000px;}
.x94_c00276{left:189.300000px;}
.xa1_c00276{left:190.650000px;}
.x4_c00276{left:192.300000px;}
.x6c_c00276{left:193.350000px;}
.x84_c00276{left:194.400000px;}
.x8e_c00276{left:197.100000px;}
.x21_c00276{left:199.350000px;}
.x29_c00276{left:201.150000px;}
.x30_c00276{left:203.700000px;}
.x88_c00276{left:206.250000px;}
.x62_c00276{left:207.300000px;}
.xb_c00276{left:208.500000px;}
.x55_c00276{left:210.750000px;}
.x85_c00276{left:212.100000px;}
.x5_c00276{left:213.150000px;}
.x1c_c00276{left:215.100000px;}
.x6f_c00276{left:216.600000px;}
.x59_c00276{left:220.800000px;}
.x2a_c00276{left:223.050000px;}
.x22_c00276{left:224.250000px;}
.x7b_c00276{left:225.900000px;}
.x63_c00276{left:227.850000px;}
.x8f_c00276{left:229.200000px;}
.x89_c00276{left:230.700000px;}
.x18_c00276{left:233.550000px;}
.x36_c00276{left:236.250000px;}
.x3c_c00276{left:237.750000px;}
.x6d_c00276{left:239.850000px;}
.x5d_c00276{left:240.900000px;}
.x49_c00276{left:241.950000px;}
.x4e_c00276{left:243.300000px;}
.x64_c00276{left:244.350000px;}
.x9b_c00276{left:246.750000px;}
.x6_c00276{left:248.400000px;}
.x69_c00276{left:251.100000px;}
.x73_c00276{left:252.300000px;}
.x1d_c00276{left:253.650000px;}
.x31_c00276{left:255.900000px;}
.x14_c00276{left:258.300000px;}
.x56_c00276{left:260.100000px;}
.x9e_c00276{left:261.300000px;}
.x52_c00276{left:262.800000px;}
.x2b_c00276{left:266.250000px;}
.x4a_c00276{left:267.900000px;}
.x98_c00276{left:269.400000px;}
.x76_c00276{left:271.650000px;}
.x43_c00276{left:274.350000px;}
.x1e_c00276{left:277.800000px;}
.x5a_c00276{left:279.750000px;}
.x3d_c00276{left:280.950000px;}
.x4f_c00276{left:283.650000px;}
.x81_c00276{left:287.100000px;}
.x105_c00276{left:288.300000px;}
.x32_c00276{left:289.350000px;}
.x100_c00276{left:290.550000px;}
.x65_c00276{left:291.600000px;}
.x79_c00276{left:295.350000px;}
.xc_c00276{left:297.000000px;}
.x19_c00276{left:298.050000px;}
.x70_c00276{left:299.400000px;}
.x7_c00276{left:303.150000px;}
.x5e_c00276{left:304.200000px;}
.x2c_c00276{left:305.850000px;}
.x4b_c00276{left:307.500000px;}
.x26_c00276{left:308.700000px;}
.x102_c00276{left:310.650000px;}
.x33_c00276{left:311.700000px;}
.x66_c00276{left:313.200000px;}
.x44_c00276{left:315.450000px;}
.x37_c00276{left:316.500000px;}
.xd_c00276{left:318.900000px;}
.x2d_c00276{left:323.100000px;}
.x5b_c00276{left:326.850000px;}
.x1_c00276{left:329.700000px;}
.x4c_c00276{left:330.900000px;}
.x53_c00276{left:332.400000px;}
.x7a_c00276{left:333.900000px;}
.x23_c00276{left:336.150000px;}
.x45_c00276{left:337.350000px;}
.x8a_c00276{left:339.450000px;}
.x74_c00276{left:341.250000px;}
.x1f_c00276{left:343.350000px;}
.xe_c00276{left:344.400000px;}
.x71_c00276{left:345.900000px;}
.x54_c00276{left:347.850000px;}
.x42_c00276{left:348.900000px;}
.x3e_c00276{left:350.100000px;}
.x8_c00276{left:352.050000px;}
.x7e_c00276{left:353.700000px;}
.x1a_c00276{left:354.900000px;}
.x91_c00276{left:356.550000px;}
.x2e_c00276{left:357.600000px;}
.x50_c00276{left:358.950000px;}
.x5f_c00276{left:360.750000px;}
.x3f_c00276{left:363.450000px;}
.x82_c00276{left:364.500000px;}
.x15_c00276{left:366.600000px;}
.x7f_c00276{left:370.500000px;}
.x8b_c00276{left:372.150000px;}
.x9c_c00276{left:374.100000px;}
.x6a_c00276{left:375.450000px;}
.x1b_c00276{left:380.100000px;}
.xf_c00276{left:382.200000px;}
.x40_c00276{left:385.350000px;}
.x46_c00276{left:387.450000px;}
.x38_c00276{left:389.250000px;}
.x8c_c00276{left:393.000000px;}
.x27_c00276{left:394.350000px;}
.x75_c00276{left:396.750000px;}
.x60_c00276{left:398.550000px;}
.x83_c00276{left:400.800000px;}
.x77_c00276{left:402.750000px;}
.x67_c00276{left:404.700000px;}
.x10_c00276{left:405.900000px;}
.x20_c00276{left:407.100000px;}
.x95_c00276{left:411.750000px;}
.x9_c00276{left:412.950000px;}
.x47_c00276{left:414.750000px;}
.x34_c00276{left:415.800000px;}
.x24_c00276{left:418.200000px;}
.x61_c00276{left:419.400000px;}
.x9f_c00276{left:421.200000px;}
.x92_c00276{left:426.000000px;}
.xa2_c00276{left:441.900000px;}
.x13d_c00276{left:447.150000px;}
.xa5_c00276{left:448.950000px;}
.xe3_c00276{left:450.000000px;}
.x106_c00276{left:451.050000px;}
.x125_c00276{left:452.100000px;}
.x141_c00276{left:453.150000px;}
.x111_c00276{left:454.650000px;}
.xe6_c00276{left:465.450000px;}
.xbf_c00276{left:466.650000px;}
.xea_c00276{left:468.000000px;}
.x108_c00276{left:470.100000px;}
.x112_c00276{left:471.900000px;}
.x138_c00276{left:478.650000px;}
.x12c_c00276{left:480.900000px;}
.xcb_c00276{left:482.400000px;}
.xa8_c00276{left:483.900000px;}
.xb8_c00276{left:485.700000px;}
.xc9_c00276{left:486.750000px;}
.x11a_c00276{left:487.950000px;}
.x12d_c00276{left:489.150000px;}
.x10b_c00276{left:491.400000px;}
.xae_c00276{left:493.200000px;}
.xe4_c00276{left:497.100000px;}
.xc0_c00276{left:499.350000px;}
.x10c_c00276{left:502.200000px;}
.xf0_c00276{left:503.250000px;}
.x109_c00276{left:504.600000px;}
.x136_c00276{left:505.650000px;}
.xb7_c00276{left:507.000000px;}
.x11b_c00276{left:509.550000px;}
.xd1_c00276{left:511.500000px;}
.x12e_c00276{left:512.550000px;}
.xf3_c00276{left:514.200000px;}
.xf7_c00276{left:515.550000px;}
.xc1_c00276{left:518.850000px;}
.xcc_c00276{left:523.500000px;}
.xca_c00276{left:524.550000px;}
.xc7_c00276{left:525.600000px;}
.x10a_c00276{left:531.600000px;}
.xa3_c00276{left:533.850000px;}
.xb2_c00276{left:535.650000px;}
.xab_c00276{left:536.700000px;}
.xb9_c00276{left:539.700000px;}
.xd7_c00276{left:540.750000px;}
.xc8_c00276{left:541.800000px;}
.x133_c00276{left:543.450000px;}
.x139_c00276{left:545.100000px;}
.x113_c00276{left:547.500000px;}
.x12a_c00276{left:550.650000px;}
.xf8_c00276{left:555.450000px;}
.x11e_c00276{left:556.650000px;}
.xaf_c00276{left:559.800000px;}
.xa9_c00276{left:561.600000px;}
.xb3_c00276{left:564.450000px;}
.x11c_c00276{left:566.400000px;}
.xcd_c00276{left:568.500000px;}
.x10d_c00276{left:569.850000px;}
.xd2_c00276{left:570.900000px;}
.xeb_c00276{left:572.250000px;}
.xba_c00276{left:575.400000px;}
.x118_c00276{left:579.900000px;}
.x126_c00276{left:581.400000px;}
.xac_c00276{left:583.800000px;}
.xa6_c00276{left:586.050000px;}
.xd8_c00276{left:589.050000px;}
.x122_c00276{left:591.000000px;}
.x13e_c00276{left:592.950000px;}
.xdd_c00276{left:594.000000px;}
.xb4_c00276{left:599.700000px;}
.xf9_c00276{left:601.950000px;}
.xd3_c00276{left:606.150000px;}
.x127_c00276{left:607.350000px;}
.xaa_c00276{left:610.500000px;}
.x12f_c00276{left:611.550000px;}
.xec_c00276{left:613.350000px;}
.x11f_c00276{left:615.000000px;}
.xbb_c00276{left:616.050000px;}
.x13a_c00276{left:618.150000px;}
.xad_c00276{left:621.900000px;}
.xbc_c00276{left:623.550000px;}
.xce_c00276{left:624.600000px;}
.x11d_c00276{left:625.800000px;}
.xd4_c00276{left:627.000000px;}
.xa4_c00276{left:630.000000px;}
.xb0_c00276{left:632.100000px;}
.x123_c00276{left:635.700000px;}
.x119_c00276{left:639.000000px;}
.xd9_c00276{left:640.200000px;}
.x130_c00276{left:642.450000px;}
.xe0_c00276{left:644.100000px;}
.xcf_c00276{left:646.500000px;}
.xfa_c00276{left:647.700000px;}
.xfd_c00276{left:650.550000px;}
.xf4_c00276{left:651.750000px;}
.x142_c00276{left:652.950000px;}
.x114_c00276{left:654.450000px;}
.xed_c00276{left:656.250000px;}
.x120_c00276{left:658.200000px;}
.x115_c00276{left:662.400000px;}
.xa7_c00276{left:668.550000px;}
.x145_c00276{left:670.200000px;}
.xd5_c00276{left:672.300000px;}
.xb1_c00276{left:676.050000px;}
.xfb_c00276{left:677.550000px;}
.xe1_c00276{left:679.350000px;}
.xbd_c00276{left:680.850000px;}
.x10e_c00276{left:682.500000px;}
.x137_c00276{left:683.850000px;}
.xf5_c00276{left:685.650000px;}
.xde_c00276{left:686.850000px;}
.x13f_c00276{left:689.100000px;}
.xc4_c00276{left:690.900000px;}
.x134_c00276{left:692.400000px;}
.x10f_c00276{left:693.600000px;}
.x107_c00276{left:695.550000px;}
.xe2_c00276{left:700.950000px;}
.xda_c00276{left:703.200000px;}
.xc5_c00276{left:704.250000px;}
.xe8_c00276{left:706.350000px;}
.xb5_c00276{left:708.450000px;}
.x128_c00276{left:709.950000px;}
.xf6_c00276{left:711.150000px;}
.x131_c00276{left:712.950000px;}
.xf1_c00276{left:714.600000px;}
.xe5_c00276{left:720.300000px;}
.xd0_c00276{left:722.850000px;}
.x110_c00276{left:726.000000px;}
.xdf_c00276{left:727.200000px;}
.x143_c00276{left:728.550000px;}
.xf2_c00276{left:730.200000px;}
.xb6_c00276{left:736.950000px;}
.x124_c00276{left:739.350000px;}
.xee_c00276{left:740.850000px;}
.x116_c00276{left:742.950000px;}
.xdb_c00276{left:746.100000px;}
.xfc_c00276{left:747.450000px;}
.xc3_c00276{left:748.500000px;}
.xc2_c00276{left:749.550000px;}
.xbe_c00276{left:751.050000px;}
.x140_c00276{left:752.400000px;}
.xe9_c00276{left:754.200000px;}
.x144_c00276{left:755.850000px;}
.x132_c00276{left:757.950000px;}
.x13b_c00276{left:760.350000px;}
.xd6_c00276{left:761.850000px;}
.x12b_c00276{left:764.250000px;}
.x13c_c00276{left:765.450000px;}
.xdc_c00276{left:767.700000px;}
.x135_c00276{left:771.300000px;}
.x121_c00276{left:774.450000px;}
.x129_c00276{left:776.850000px;}
.xef_c00276{left:778.650000px;}
.xc6_c00276{left:782.400000px;}
.x117_c00276{left:786.900000px;}
.xe7_c00276{left:792.300000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws6_c00276{word-spacing:-5.925926pt;}
.ws7_c00276{word-spacing:-4.000000pt;}
.ws8_c00276{word-spacing:-0.142494pt;}
.ws9_c00276{word-spacing:0.000000pt;}
.ws5_c00276{word-spacing:1.166858pt;}
.ws4_c00276{word-spacing:2.972256pt;}
.ws3_c00276{word-spacing:11.961810pt;}
.ws1_c00276{word-spacing:17.773012pt;}
.ws0_c00276{word-spacing:26.031746pt;}
.ws2_c00276{word-spacing:59.777778pt;}
.fs7_c00276{font-size:26.666667pt;}
.fs4_c00276{font-size:42.666667pt;}
.fs5_c00276{font-size:48.000000pt;}
.fs3_c00276{font-size:53.333333pt;}
.fs2_c00276{font-size:58.666667pt;}
.fs1_c00276{font-size:64.000000pt;}
.fs0_c00276{font-size:69.333333pt;}
.fs6_c00276{font-size:181.333333pt;}
.y0_c00276{bottom:0.000000pt;}
.y6a_c00276{bottom:163.733333pt;}
.y55_c00276{bottom:164.266667pt;}
.y69_c00276{bottom:176.800000pt;}
.y54_c00276{bottom:177.333333pt;}
.y68_c00276{bottom:189.600000pt;}
.y53_c00276{bottom:190.133333pt;}
.y31_c00276{bottom:197.466667pt;}
.y67_c00276{bottom:202.400000pt;}
.y52_c00276{bottom:203.200000pt;}
.y66_c00276{bottom:215.200000pt;}
.y51_c00276{bottom:215.733333pt;}
.y65_c00276{bottom:228.000000pt;}
.y30_c00276{bottom:231.733333pt;}
.y64_c00276{bottom:241.066667pt;}
.y2f_c00276{bottom:241.600000pt;}
.y63_c00276{bottom:253.866667pt;}
.y2e_c00276{bottom:254.400000pt;}
.y62_c00276{bottom:266.666667pt;}
.y2d_c00276{bottom:267.200000pt;}
.y61_c00276{bottom:279.200000pt;}
.y60_c00276{bottom:292.000000pt;}
.y5f_c00276{bottom:304.800000pt;}
.y2c_c00276{bottom:305.333333pt;}
.y5e_c00276{bottom:317.600000pt;}
.y2b_c00276{bottom:321.333333pt;}
.y5d_c00276{bottom:330.133333pt;}
.y2a_c00276{bottom:340.533333pt;}
.y5c_c00276{bottom:342.666667pt;}
.y5b_c00276{bottom:355.466667pt;}
.y29_c00276{bottom:360.266667pt;}
.y5a_c00276{bottom:369.200000pt;}
.y28_c00276{bottom:376.266667pt;}
.y59_c00276{bottom:381.066667pt;}
.y27_c00276{bottom:392.266667pt;}
.y26_c00276{bottom:408.266667pt;}
.y58_c00276{bottom:417.200000pt;}
.y25_c00276{bottom:424.266667pt;}
.y57_c00276{bottom:433.200000pt;}
.y24_c00276{bottom:444.133333pt;}
.y56_c00276{bottom:448.933333pt;}
.y23_c00276{bottom:459.866667pt;}
.y50_c00276{bottom:469.066667pt;}
.y22_c00276{bottom:475.866667pt;}
.y4f_c00276{bottom:485.066667pt;}
.y21_c00276{bottom:491.866667pt;}
.y4e_c00276{bottom:501.066667pt;}
.y20_c00276{bottom:507.866667pt;}
.y4d_c00276{bottom:516.800000pt;}
.y1f_c00276{bottom:523.866667pt;}
.y4c_c00276{bottom:532.800000pt;}
.y1e_c00276{bottom:539.866667pt;}
.y4b_c00276{bottom:548.533333pt;}
.y1d_c00276{bottom:555.466667pt;}
.y4a_c00276{bottom:564.533333pt;}
.y1c_c00276{bottom:571.466667pt;}
.y49_c00276{bottom:584.000000pt;}
.y1b_c00276{bottom:587.466667pt;}
.y48_c00276{bottom:599.333333pt;}
.y1a_c00276{bottom:603.200000pt;}
.y19_c00276{bottom:618.933333pt;}
.y47_c00276{bottom:626.933333pt;}
.y18_c00276{bottom:635.200000pt;}
.y46_c00276{bottom:647.066667pt;}
.y17_c00276{bottom:650.933333pt;}
.y45_c00276{bottom:663.066667pt;}
.y16_c00276{bottom:666.933333pt;}
.y15_c00276{bottom:682.533333pt;}
.y14_c00276{bottom:698.533333pt;}
.y13_c00276{bottom:714.533333pt;}
.y44_c00276{bottom:730.533333pt;}
.y12_c00276{bottom:732.666667pt;}
.y11_c00276{bottom:745.466667pt;}
.y43_c00276{bottom:749.733333pt;}
.y10_c00276{bottom:758.000000pt;}
.y42_c00276{bottom:769.600000pt;}
.yf_c00276{bottom:769.866667pt;}
.ye_c00276{bottom:781.066667pt;}
.y41_c00276{bottom:789.466667pt;}
.yd_c00276{bottom:798.400000pt;}
.y3a_c00276{bottom:808.533333pt;}
.yc_c00276{bottom:814.400000pt;}
.y39_c00276{bottom:824.533333pt;}
.yb_c00276{bottom:830.133333pt;}
.y38_c00276{bottom:844.400000pt;}
.ya_c00276{bottom:849.333333pt;}
.y37_c00276{bottom:864.266667pt;}
.y40_c00276{bottom:864.666667pt;}
.y9_c00276{bottom:865.600000pt;}
.y3f_c00276{bottom:872.400000pt;}
.y3d_c00276{bottom:880.933333pt;}
.y8_c00276{bottom:881.333333pt;}
.y3e_c00276{bottom:888.666667pt;}
.y36_c00276{bottom:889.600000pt;}
.y3c_c00276{bottom:889.866667pt;}
.y3b_c00276{bottom:895.733333pt;}
.y7_c00276{bottom:897.333333pt;}
.y35_c00276{bottom:912.933333pt;}
.y6_c00276{bottom:913.333333pt;}
.y5_c00276{bottom:932.533333pt;}
.y34_c00276{bottom:932.800000pt;}
.y4_c00276{bottom:958.400000pt;}
.y33_c00276{bottom:960.266667pt;}
.y3_c00276{bottom:975.333333pt;}
.y32_c00276{bottom:991.066667pt;}
.y2_c00276{bottom:991.333333pt;}
.y1_c00276{bottom:1015.333333pt;}
.h9_c00276{height:26.666667pt;}
.h6_c00276{height:42.666667pt;}
.h7_c00276{height:48.000000pt;}
.h5_c00276{height:53.333333pt;}
.h4_c00276{height:58.666667pt;}
.h3_c00276{height:64.000000pt;}
.h2_c00276{height:69.333333pt;}
.h8_c00276{height:181.333333pt;}
.h1_c00276{height:1129.333333pt;}
.h0_c00276{height:1129.599935pt;}
.w1_c00276{width:854.666667pt;}
.w0_c00276{width:854.720052pt;}
.x0_c00276{left:0.000000pt;}
.x2f_c00276{left:81.866667pt;}
.x11_c00276{left:83.200000pt;}
.x96_c00276{left:84.800000pt;}
.xa0_c00276{left:85.733333pt;}
.x39_c00276{left:86.666667pt;}
.x41_c00276{left:90.000000pt;}
.x2_c00276{left:97.333333pt;}
.x51_c00276{left:98.266667pt;}
.x5c_c00276{left:99.200000pt;}
.x7c_c00276{left:100.266667pt;}
.x9d_c00276{left:102.800000pt;}
.xfe_c00276{left:104.400000pt;}
.x48_c00276{left:106.933333pt;}
.x104_c00276{left:109.200000pt;}
.x101_c00276{left:110.400000pt;}
.x16_c00276{left:112.933333pt;}
.x86_c00276{left:115.466667pt;}
.x99_c00276{left:117.066667pt;}
.x6b_c00276{left:119.333333pt;}
.x12_c00276{left:120.266667pt;}
.x3a_c00276{left:121.200000pt;}
.x3_c00276{left:122.266667pt;}
.x25_c00276{left:126.933333pt;}
.x57_c00276{left:130.000000pt;}
.x90_c00276{left:132.266667pt;}
.xa_c00276{left:133.466667pt;}
.x93_c00276{left:134.666667pt;}
.x3b_c00276{left:137.466667pt;}
.x80_c00276{left:138.933333pt;}
.x97_c00276{left:139.866667pt;}
.x72_c00276{left:141.733333pt;}
.x28_c00276{left:143.866667pt;}
.x35_c00276{left:146.000000pt;}
.x58_c00276{left:148.266667pt;}
.x9a_c00276{left:149.333333pt;}
.x6e_c00276{left:150.666667pt;}
.x78_c00276{left:152.666667pt;}
.x13_c00276{left:154.133333pt;}
.x8d_c00276{left:155.066667pt;}
.x17_c00276{left:156.133333pt;}
.x87_c00276{left:157.066667pt;}
.x7d_c00276{left:158.533333pt;}
.x68_c00276{left:160.400000pt;}
.x4d_c00276{left:161.600000pt;}
.xff_c00276{left:164.266667pt;}
.x103_c00276{left:165.333333pt;}
.x94_c00276{left:168.266667pt;}
.xa1_c00276{left:169.466667pt;}
.x4_c00276{left:170.933333pt;}
.x6c_c00276{left:171.866667pt;}
.x84_c00276{left:172.800000pt;}
.x8e_c00276{left:175.200000pt;}
.x21_c00276{left:177.200000pt;}
.x29_c00276{left:178.800000pt;}
.x30_c00276{left:181.066667pt;}
.x88_c00276{left:183.333333pt;}
.x62_c00276{left:184.266667pt;}
.xb_c00276{left:185.333333pt;}
.x55_c00276{left:187.333333pt;}
.x85_c00276{left:188.533333pt;}
.x5_c00276{left:189.466667pt;}
.x1c_c00276{left:191.200000pt;}
.x6f_c00276{left:192.533333pt;}
.x59_c00276{left:196.266667pt;}
.x2a_c00276{left:198.266667pt;}
.x22_c00276{left:199.333333pt;}
.x7b_c00276{left:200.800000pt;}
.x63_c00276{left:202.533333pt;}
.x8f_c00276{left:203.733333pt;}
.x89_c00276{left:205.066667pt;}
.x18_c00276{left:207.600000pt;}
.x36_c00276{left:210.000000pt;}
.x3c_c00276{left:211.333333pt;}
.x6d_c00276{left:213.200000pt;}
.x5d_c00276{left:214.133333pt;}
.x49_c00276{left:215.066667pt;}
.x4e_c00276{left:216.266667pt;}
.x64_c00276{left:217.200000pt;}
.x9b_c00276{left:219.333333pt;}
.x6_c00276{left:220.800000pt;}
.x69_c00276{left:223.200000pt;}
.x73_c00276{left:224.266667pt;}
.x1d_c00276{left:225.466667pt;}
.x31_c00276{left:227.466667pt;}
.x14_c00276{left:229.600000pt;}
.x56_c00276{left:231.200000pt;}
.x9e_c00276{left:232.266667pt;}
.x52_c00276{left:233.600000pt;}
.x2b_c00276{left:236.666667pt;}
.x4a_c00276{left:238.133333pt;}
.x98_c00276{left:239.466667pt;}
.x76_c00276{left:241.466667pt;}
.x43_c00276{left:243.866667pt;}
.x1e_c00276{left:246.933333pt;}
.x5a_c00276{left:248.666667pt;}
.x3d_c00276{left:249.733333pt;}
.x4f_c00276{left:252.133333pt;}
.x81_c00276{left:255.200000pt;}
.x105_c00276{left:256.266667pt;}
.x32_c00276{left:257.200000pt;}
.x100_c00276{left:258.266667pt;}
.x65_c00276{left:259.200000pt;}
.x79_c00276{left:262.533333pt;}
.xc_c00276{left:264.000000pt;}
.x19_c00276{left:264.933333pt;}
.x70_c00276{left:266.133333pt;}
.x7_c00276{left:269.466667pt;}
.x5e_c00276{left:270.400000pt;}
.x2c_c00276{left:271.866667pt;}
.x4b_c00276{left:273.333333pt;}
.x26_c00276{left:274.400000pt;}
.x102_c00276{left:276.133333pt;}
.x33_c00276{left:277.066667pt;}
.x66_c00276{left:278.400000pt;}
.x44_c00276{left:280.400000pt;}
.x37_c00276{left:281.333333pt;}
.xd_c00276{left:283.466667pt;}
.x2d_c00276{left:287.200000pt;}
.x5b_c00276{left:290.533333pt;}
.x1_c00276{left:293.066667pt;}
.x4c_c00276{left:294.133333pt;}
.x53_c00276{left:295.466667pt;}
.x7a_c00276{left:296.800000pt;}
.x23_c00276{left:298.800000pt;}
.x45_c00276{left:299.866667pt;}
.x8a_c00276{left:301.733333pt;}
.x74_c00276{left:303.333333pt;}
.x1f_c00276{left:305.200000pt;}
.xe_c00276{left:306.133333pt;}
.x71_c00276{left:307.466667pt;}
.x54_c00276{left:309.200000pt;}
.x42_c00276{left:310.133333pt;}
.x3e_c00276{left:311.200000pt;}
.x8_c00276{left:312.933333pt;}
.x7e_c00276{left:314.400000pt;}
.x1a_c00276{left:315.466667pt;}
.x91_c00276{left:316.933333pt;}
.x2e_c00276{left:317.866667pt;}
.x50_c00276{left:319.066667pt;}
.x5f_c00276{left:320.666667pt;}
.x3f_c00276{left:323.066667pt;}
.x82_c00276{left:324.000000pt;}
.x15_c00276{left:325.866667pt;}
.x7f_c00276{left:329.333333pt;}
.x8b_c00276{left:330.800000pt;}
.x9c_c00276{left:332.533333pt;}
.x6a_c00276{left:333.733333pt;}
.x1b_c00276{left:337.866667pt;}
.xf_c00276{left:339.733333pt;}
.x40_c00276{left:342.533333pt;}
.x46_c00276{left:344.400000pt;}
.x38_c00276{left:346.000000pt;}
.x8c_c00276{left:349.333333pt;}
.x27_c00276{left:350.533333pt;}
.x75_c00276{left:352.666667pt;}
.x60_c00276{left:354.266667pt;}
.x83_c00276{left:356.266667pt;}
.x77_c00276{left:358.000000pt;}
.x67_c00276{left:359.733333pt;}
.x10_c00276{left:360.800000pt;}
.x20_c00276{left:361.866667pt;}
.x95_c00276{left:366.000000pt;}
.x9_c00276{left:367.066667pt;}
.x47_c00276{left:368.666667pt;}
.x34_c00276{left:369.600000pt;}
.x24_c00276{left:371.733333pt;}
.x61_c00276{left:372.800000pt;}
.x9f_c00276{left:374.400000pt;}
.x92_c00276{left:378.666667pt;}
.xa2_c00276{left:392.800000pt;}
.x13d_c00276{left:397.466667pt;}
.xa5_c00276{left:399.066667pt;}
.xe3_c00276{left:400.000000pt;}
.x106_c00276{left:400.933333pt;}
.x125_c00276{left:401.866667pt;}
.x141_c00276{left:402.800000pt;}
.x111_c00276{left:404.133333pt;}
.xe6_c00276{left:413.733333pt;}
.xbf_c00276{left:414.800000pt;}
.xea_c00276{left:416.000000pt;}
.x108_c00276{left:417.866667pt;}
.x112_c00276{left:419.466667pt;}
.x138_c00276{left:425.466667pt;}
.x12c_c00276{left:427.466667pt;}
.xcb_c00276{left:428.800000pt;}
.xa8_c00276{left:430.133333pt;}
.xb8_c00276{left:431.733333pt;}
.xc9_c00276{left:432.666667pt;}
.x11a_c00276{left:433.733333pt;}
.x12d_c00276{left:434.800000pt;}
.x10b_c00276{left:436.800000pt;}
.xae_c00276{left:438.400000pt;}
.xe4_c00276{left:441.866667pt;}
.xc0_c00276{left:443.866667pt;}
.x10c_c00276{left:446.400000pt;}
.xf0_c00276{left:447.333333pt;}
.x109_c00276{left:448.533333pt;}
.x136_c00276{left:449.466667pt;}
.xb7_c00276{left:450.666667pt;}
.x11b_c00276{left:452.933333pt;}
.xd1_c00276{left:454.666667pt;}
.x12e_c00276{left:455.600000pt;}
.xf3_c00276{left:457.066667pt;}
.xf7_c00276{left:458.266667pt;}
.xc1_c00276{left:461.200000pt;}
.xcc_c00276{left:465.333333pt;}
.xca_c00276{left:466.266667pt;}
.xc7_c00276{left:467.200000pt;}
.x10a_c00276{left:472.533333pt;}
.xa3_c00276{left:474.533333pt;}
.xb2_c00276{left:476.133333pt;}
.xab_c00276{left:477.066667pt;}
.xb9_c00276{left:479.733333pt;}
.xd7_c00276{left:480.666667pt;}
.xc8_c00276{left:481.600000pt;}
.x133_c00276{left:483.066667pt;}
.x139_c00276{left:484.533333pt;}
.x113_c00276{left:486.666667pt;}
.x12a_c00276{left:489.466667pt;}
.xf8_c00276{left:493.733333pt;}
.x11e_c00276{left:494.800000pt;}
.xaf_c00276{left:497.600000pt;}
.xa9_c00276{left:499.200000pt;}
.xb3_c00276{left:501.733333pt;}
.x11c_c00276{left:503.466667pt;}
.xcd_c00276{left:505.333333pt;}
.x10d_c00276{left:506.533333pt;}
.xd2_c00276{left:507.466667pt;}
.xeb_c00276{left:508.666667pt;}
.xba_c00276{left:511.466667pt;}
.x118_c00276{left:515.466667pt;}
.x126_c00276{left:516.800000pt;}
.xac_c00276{left:518.933333pt;}
.xa6_c00276{left:520.933333pt;}
.xd8_c00276{left:523.600000pt;}
.x122_c00276{left:525.333333pt;}
.x13e_c00276{left:527.066667pt;}
.xdd_c00276{left:528.000000pt;}
.xb4_c00276{left:533.066667pt;}
.xf9_c00276{left:535.066667pt;}
.xd3_c00276{left:538.800000pt;}
.x127_c00276{left:539.866667pt;}
.xaa_c00276{left:542.666667pt;}
.x12f_c00276{left:543.600000pt;}
.xec_c00276{left:545.200000pt;}
.x11f_c00276{left:546.666667pt;}
.xbb_c00276{left:547.600000pt;}
.x13a_c00276{left:549.466667pt;}
.xad_c00276{left:552.800000pt;}
.xbc_c00276{left:554.266667pt;}
.xce_c00276{left:555.200000pt;}
.x11d_c00276{left:556.266667pt;}
.xd4_c00276{left:557.333333pt;}
.xa4_c00276{left:560.000000pt;}
.xb0_c00276{left:561.866667pt;}
.x123_c00276{left:565.066667pt;}
.x119_c00276{left:568.000000pt;}
.xd9_c00276{left:569.066667pt;}
.x130_c00276{left:571.066667pt;}
.xe0_c00276{left:572.533333pt;}
.xcf_c00276{left:574.666667pt;}
.xfa_c00276{left:575.733333pt;}
.xfd_c00276{left:578.266667pt;}
.xf4_c00276{left:579.333333pt;}
.x142_c00276{left:580.400000pt;}
.x114_c00276{left:581.733333pt;}
.xed_c00276{left:583.333333pt;}
.x120_c00276{left:585.066667pt;}
.x115_c00276{left:588.800000pt;}
.xa7_c00276{left:594.266667pt;}
.x145_c00276{left:595.733333pt;}
.xd5_c00276{left:597.600000pt;}
.xb1_c00276{left:600.933333pt;}
.xfb_c00276{left:602.266667pt;}
.xe1_c00276{left:603.866667pt;}
.xbd_c00276{left:605.200000pt;}
.x10e_c00276{left:606.666667pt;}
.x137_c00276{left:607.866667pt;}
.xf5_c00276{left:609.466667pt;}
.xde_c00276{left:610.533333pt;}
.x13f_c00276{left:612.533333pt;}
.xc4_c00276{left:614.133333pt;}
.x134_c00276{left:615.466667pt;}
.x10f_c00276{left:616.533333pt;}
.x107_c00276{left:618.266667pt;}
.xe2_c00276{left:623.066667pt;}
.xda_c00276{left:625.066667pt;}
.xc5_c00276{left:626.000000pt;}
.xe8_c00276{left:627.866667pt;}
.xb5_c00276{left:629.733333pt;}
.x128_c00276{left:631.066667pt;}
.xf6_c00276{left:632.133333pt;}
.x131_c00276{left:633.733333pt;}
.xf1_c00276{left:635.200000pt;}
.xe5_c00276{left:640.266667pt;}
.xd0_c00276{left:642.533333pt;}
.x110_c00276{left:645.333333pt;}
.xdf_c00276{left:646.400000pt;}
.x143_c00276{left:647.600000pt;}
.xf2_c00276{left:649.066667pt;}
.xb6_c00276{left:655.066667pt;}
.x124_c00276{left:657.200000pt;}
.xee_c00276{left:658.533333pt;}
.x116_c00276{left:660.400000pt;}
.xdb_c00276{left:663.200000pt;}
.xfc_c00276{left:664.400000pt;}
.xc3_c00276{left:665.333333pt;}
.xc2_c00276{left:666.266667pt;}
.xbe_c00276{left:667.600000pt;}
.x140_c00276{left:668.800000pt;}
.xe9_c00276{left:670.400000pt;}
.x144_c00276{left:671.866667pt;}
.x132_c00276{left:673.733333pt;}
.x13b_c00276{left:675.866667pt;}
.xd6_c00276{left:677.200000pt;}
.x12b_c00276{left:679.333333pt;}
.x13c_c00276{left:680.400000pt;}
.xdc_c00276{left:682.400000pt;}
.x135_c00276{left:685.600000pt;}
.x121_c00276{left:688.400000pt;}
.x129_c00276{left:690.533333pt;}
.xef_c00276{left:692.133333pt;}
.xc6_c00276{left:695.466667pt;}
.x117_c00276{left:699.466667pt;}
.xe7_c00276{left:704.266667pt;}
}





/* 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_c00277 {
    display:none;
  }
  .loading-indicator_c00277.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00277 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_c00277 { 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_c00277" -> "#page-container .classname_c00277")
 */
.pf_c00277 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00277 { /* 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_c00277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00277 { /* 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_c00277 { /* 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_c00277 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00277 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00277 {overflow:visible;}
  }
}
.c_c00277 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00277 { /* 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_c00277:after { /* webkit #35443 */
  content: '';
}
.t_c00277:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00277 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 */
}
.__c00277 { /* 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_c00277 { /* info for Javascript */
  display:none;
}
.l_c00277 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00277 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00277 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00277: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_c00277 {
    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_c00277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00277.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_c00277 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00277;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.000000;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;}
.m25_c00277{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m109_c00277{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.me0_c00277{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.m76_c00277{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00277{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00277{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m114_c00277{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00277{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m113_c00277{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m34_c00277{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m111_c00277{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m89_c00277{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m100_c00277{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00277{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00277{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m11_c00277{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m87_c00277{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m115_c00277{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mde_c00277{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00277{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m35_c00277{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m82_c00277{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.m15_c00277{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mff_c00277{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.maa_c00277{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me7_c00277{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m107_c00277{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m108_c00277{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00277{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00277{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00277{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m52_c00277{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00277{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00277{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00277{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m37_c00277{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7_c00277{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m6_c00277{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00277{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00277{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m99_c00277{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m66_c00277{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00277{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.me9_c00277{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m85_c00277{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00277{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m62_c00277{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.me2_c00277{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00277{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00277{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00277{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m101_c00277{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m47_c00277{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.me6_c00277{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00277{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00277{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m70_c00277{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00277{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00277{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.me8_c00277{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00277{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb_c00277{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mce_c00277{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00277{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m49_c00277{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m8_c00277{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00277{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00277{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00277{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m36_c00277{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00277{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mf_c00277{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00277{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00277{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m73_c00277{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m80_c00277{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mef_c00277{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m79_c00277{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m17_c00277{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00277{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m60_c00277{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me4_c00277{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00277{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m65_c00277{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md4_c00277{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.maf_c00277{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m43_c00277{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00277{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00277{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m33_c00277{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00277{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00277{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.md0_c00277{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00277{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m69_c00277{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m50_c00277{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00277{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m38_c00277{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mca_c00277{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mda_c00277{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.md8_c00277{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mec_c00277{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00277{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md5_c00277{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m72_c00277{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00277{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m13_c00277{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00277{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m61_c00277{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m64_c00277{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m26_c00277{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m83_c00277{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m63_c00277{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m41_c00277{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m19_c00277{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma_c00277{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m92_c00277{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00277{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00277{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00277{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00277{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m39_c00277{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00277{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00277{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m30_c00277{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00277{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m45_c00277{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00277{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00277{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me_c00277{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m68_c00277{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00277{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00277{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00277{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00277{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me3_c00277{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00277{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m16_c00277{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.meb_c00277{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00277{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m81_c00277{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mea_c00277{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m91_c00277{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m74_c00277{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m102_c00277{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00277{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00277{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m42_c00277{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m97_c00277{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00277{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mae_c00277{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m105_c00277{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00277{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00277{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00277{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9_c00277{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00277{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m67_c00277{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m23_c00277{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00277{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00277{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m18_c00277{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m112_c00277{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00277{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m94_c00277{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00277{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00277{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mba_c00277{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m28_c00277{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mad_c00277{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.med_c00277{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m48_c00277{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m51_c00277{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4_c00277{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md3_c00277{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00277{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mac_c00277{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00277{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00277{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00277{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00277{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md7_c00277{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00277{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00277{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00277{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00277{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m98_c00277{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m58_c00277{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m40_c00277{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m54_c00277{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00277{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00277{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00277{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00277{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m86_c00277{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00277{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m21_c00277{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m59_c00277{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me1_c00277{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m44_c00277{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m31_c00277{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3_c00277{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m46_c00277{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m95_c00277{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00277{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m29_c00277{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m32_c00277{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m27_c00277{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00277{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m5_c00277{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00277{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m78_c00277{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m90_c00277{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md2_c00277{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc_c00277{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m75_c00277{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m12_c00277{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00277{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2_c00277{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me5_c00277{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00277{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m56_c00277{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00277{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m55_c00277{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00277{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00277{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00277{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m10_c00277{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00277{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md_c00277{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00277{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md1_c00277{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00277{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00277{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mee_c00277{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00277{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);}
.m84_c00277{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24_c00277{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m77_c00277{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00277{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m93_c00277{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m103_c00277{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00277{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00277{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m57_c00277{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m53_c00277{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00277{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m96_c00277{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00277{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m14_c00277{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m71_c00277{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m110_c00277{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m20_c00277{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00277{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m22_c00277{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00277{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00277{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00277{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m106_c00277{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mab_c00277{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00277{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00277{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00277{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00277{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00277{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.md6_c00277{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00277{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00277{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.md9_c00277{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00277{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m88_c00277{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00277{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00277{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00277{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.m116_c00277{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00277{transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m104_c00277{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{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__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00277{word-spacing:-9.735395px;}
.ws4_c00277{word-spacing:-6.651387px;}
.ws0_c00277{word-spacing:-3.757962px;}
.ws5_c00277{word-spacing:-3.735849px;}
.ws9_c00277{word-spacing:0.000000px;}
.ws2_c00277{word-spacing:3.382353px;}
.ws3_c00277{word-spacing:6.125000px;}
.ws8_c00277{word-spacing:29.285714px;}
.ws7_c00277{word-spacing:34.642857px;}
.ws1_c00277{word-spacing:74.722222px;}
.fc0_c00277{color:transparent;}
.fs5_c00277{font-size:36.000000px;}
.fs6_c00277{font-size:42.000000px;}
.fs8_c00277{font-size:48.000000px;}
.fs7_c00277{font-size:54.000000px;}
.fs1_c00277{font-size:60.000000px;}
.fs2_c00277{font-size:66.000000px;}
.fs0_c00277{font-size:72.000000px;}
.fs3_c00277{font-size:78.000000px;}
.fs4_c00277{font-size:84.000000px;}
.y0_c00277{bottom:0.000000px;}
.y67_c00277{bottom:183.450000px;}
.y34_c00277{bottom:191.550000px;}
.y66_c00277{bottom:198.600000px;}
.y33_c00277{bottom:204.900000px;}
.y65_c00277{bottom:212.700000px;}
.y32_c00277{bottom:219.450000px;}
.y64_c00277{bottom:227.100000px;}
.y31_c00277{bottom:233.550000px;}
.y63_c00277{bottom:241.500000px;}
.y30_c00277{bottom:247.200000px;}
.y62_c00277{bottom:256.650000px;}
.y2f_c00277{bottom:261.600000px;}
.y2e_c00277{bottom:275.700000px;}
.y61_c00277{bottom:276.450000px;}
.y2d_c00277{bottom:288.300000px;}
.y60_c00277{bottom:294.450000px;}
.y2c_c00277{bottom:307.800000px;}
.y5f_c00277{bottom:317.100000px;}
.y2b_c00277{bottom:322.200000px;}
.y5e_c00277{bottom:334.800000px;}
.y2a_c00277{bottom:336.300000px;}
.y29_c00277{bottom:349.950000px;}
.y5d_c00277{bottom:352.500000px;}
.y28_c00277{bottom:364.050000px;}
.y5c_c00277{bottom:370.500000px;}
.y27_c00277{bottom:378.450000px;}
.y5b_c00277{bottom:388.500000px;}
.y26_c00277{bottom:392.850000px;}
.y5a_c00277{bottom:406.050000px;}
.y25_c00277{bottom:406.500000px;}
.y59_c00277{bottom:434.100000px;}
.y58_c00277{bottom:452.100000px;}
.y24_c00277{bottom:466.800000px;}
.y23_c00277{bottom:473.700000px;}
.y57_c00277{bottom:474.150000px;}
.y22_c00277{bottom:484.200000px;}
.y56_c00277{bottom:491.850000px;}
.y21_c00277{bottom:494.700000px;}
.y55_c00277{bottom:509.850000px;}
.y20_c00277{bottom:525.300000px;}
.y54_c00277{bottom:527.850000px;}
.y53_c00277{bottom:545.550000px;}
.y1f_c00277{bottom:559.500000px;}
.y52_c00277{bottom:563.550000px;}
.y51_c00277{bottom:581.550000px;}
.y1e_c00277{bottom:581.700000px;}
.y50_c00277{bottom:599.250000px;}
.y4f_c00277{bottom:617.250000px;}
.y1d_c00277{bottom:622.050000px;}
.y4e_c00277{bottom:635.250000px;}
.y1c_c00277{bottom:639.750000px;}
.y4d_c00277{bottom:653.250000px;}
.y1b_c00277{bottom:666.600000px;}
.y4c_c00277{bottom:671.250000px;}
.y1a_c00277{bottom:684.300000px;}
.y4b_c00277{bottom:689.250000px;}
.y19_c00277{bottom:702.300000px;}
.y4a_c00277{bottom:706.950000px;}
.y18_c00277{bottom:720.300000px;}
.y49_c00277{bottom:724.950000px;}
.y17_c00277{bottom:738.000000px;}
.y48_c00277{bottom:742.950000px;}
.y47_c00277{bottom:760.950000px;}
.y16_c00277{bottom:765.300000px;}
.y46_c00277{bottom:778.650000px;}
.y15_c00277{bottom:783.600000px;}
.y45_c00277{bottom:797.100000px;}
.y14_c00277{bottom:801.600000px;}
.y44_c00277{bottom:819.000000px;}
.y13_c00277{bottom:819.600000px;}
.y12_c00277{bottom:837.600000px;}
.y43_c00277{bottom:841.350000px;}
.y11_c00277{bottom:855.600000px;}
.y42_c00277{bottom:863.700000px;}
.y10_c00277{bottom:873.300000px;}
.y41_c00277{bottom:881.700000px;}
.yf_c00277{bottom:891.000000px;}
.y40_c00277{bottom:899.700000px;}
.ye_c00277{bottom:909.000000px;}
.y3f_c00277{bottom:917.700000px;}
.yd_c00277{bottom:927.000000px;}
.y3e_c00277{bottom:935.700000px;}
.yc_c00277{bottom:945.000000px;}
.y3d_c00277{bottom:957.600000px;}
.yb_c00277{bottom:962.700000px;}
.y3c_c00277{bottom:975.900000px;}
.ya_c00277{bottom:981.000000px;}
.y3b_c00277{bottom:997.200000px;}
.y9_c00277{bottom:998.700000px;}
.y8_c00277{bottom:1016.700000px;}
.y3a_c00277{bottom:1019.250000px;}
.y39_c00277{bottom:1037.550000px;}
.y7_c00277{bottom:1038.600000px;}
.y6_c00277{bottom:1054.800000px;}
.y38_c00277{bottom:1055.550000px;}
.y5_c00277{bottom:1072.050000px;}
.y37_c00277{bottom:1073.850000px;}
.y4_c00277{bottom:1089.300000px;}
.y36_c00277{bottom:1095.150000px;}
.y3_c00277{bottom:1101.900000px;}
.y35_c00277{bottom:1117.500000px;}
.y2_c00277{bottom:1119.600000px;}
.y1_c00277{bottom:1143.300000px;}
.h7_c00277{height:36.000000px;}
.h8_c00277{height:42.000000px;}
.ha_c00277{height:48.000000px;}
.h9_c00277{height:54.000000px;}
.h3_c00277{height:60.000000px;}
.h4_c00277{height:66.000000px;}
.h2_c00277{height:72.000000px;}
.h5_c00277{height:78.000000px;}
.h6_c00277{height:84.000000px;}
.h0_c00277{height:1267.200073px;}
.h1_c00277{height:1267.500000px;}
.w1_c00277{width:961.500000px;}
.w0_c00277{width:961.560058px;}
.x0_c00277{left:0.000000px;}
.x3_c00277{left:169.200000px;}
.x8b_c00277{left:171.300000px;}
.x84_c00277{left:172.500000px;}
.x1_c00277{left:173.550000px;}
.x9f_c00277{left:174.900000px;}
.xa5_c00277{left:176.100000px;}
.x26_c00277{left:180.450000px;}
.xb_c00277{left:186.150000px;}
.x12_c00277{left:187.350000px;}
.x27_c00277{left:189.150000px;}
.x31_c00277{left:190.500000px;}
.x63_c00277{left:191.700000px;}
.x98_c00277{left:195.600000px;}
.xa0_c00277{left:197.550000px;}
.x95_c00277{left:198.900000px;}
.x15_c00277{left:202.350000px;}
.xa3_c00277{left:205.050000px;}
.x83_c00277{left:207.750000px;}
.x51_c00277{left:211.050000px;}
.x69_c00277{left:212.400000px;}
.xc_c00277{left:214.200000px;}
.x8c_c00277{left:215.250000px;}
.x76_c00277{left:217.800000px;}
.x38_c00277{left:218.850000px;}
.x3f_c00277{left:220.350000px;}
.x5a_c00277{left:222.450000px;}
.x73_c00277{left:223.650000px;}
.x60_c00277{left:226.050000px;}
.xd_c00277{left:229.350000px;}
.x57_c00277{left:232.650000px;}
.x2b_c00277{left:234.600000px;}
.x46_c00277{left:235.950000px;}
.xa1_c00277{left:237.450000px;}
.x8f_c00277{left:239.400000px;}
.x17_c00277{left:240.450000px;}
.x7c_c00277{left:241.500000px;}
.x9c_c00277{left:243.000000px;}
.x99_c00277{left:244.200000px;}
.x40_c00277{left:245.850000px;}
.x39_c00277{left:246.900000px;}
.x2c_c00277{left:248.700000px;}
.x6e_c00277{left:250.050000px;}
.x87_c00277{left:252.300000px;}
.x18_c00277{left:253.350000px;}
.x52_c00277{left:257.100000px;}
.x6a_c00277{left:258.900000px;}
.xe_c00277{left:261.000000px;}
.x5b_c00277{left:262.050000px;}
.x21_c00277{left:263.400000px;}
.x19_c00277{left:265.200000px;}
.x4f_c00277{left:266.850000px;}
.x7f_c00277{left:267.900000px;}
.x90_c00277{left:268.950000px;}
.x7d_c00277{left:271.350000px;}
.x1a_c00277{left:275.700000px;}
.x8d_c00277{left:276.750000px;}
.x53_c00277{left:277.950000px;}
.xf_c00277{left:279.750000px;}
.x92_c00277{left:282.150000px;}
.x5c_c00277{left:283.650000px;}
.x41_c00277{left:285.150000px;}
.x50_c00277{left:287.400000px;}
.xa2_c00277{left:289.050000px;}
.x47_c00277{left:290.250000px;}
.x32_c00277{left:291.300000px;}
.x96_c00277{left:292.500000px;}
.x4_c00277{left:293.850000px;}
.x93_c00277{left:296.550000px;}
.x89_c00277{left:298.350000px;}
.x1b_c00277{left:300.150000px;}
.x22_c00277{left:310.500000px;}
.x5_c00277{left:312.600000px;}
.x48_c00277{left:313.650000px;}
.x3a_c00277{left:316.050000px;}
.x88_c00277{left:317.400000px;}
.x6f_c00277{left:318.900000px;}
.x64_c00277{left:321.750000px;}
.x77_c00277{left:325.800000px;}
.x3b_c00277{left:326.850000px;}
.x10_c00277{left:328.050000px;}
.x81_c00277{left:330.150000px;}
.x42_c00277{left:331.950000px;}
.x4c_c00277{left:333.900000px;}
.x78_c00277{left:335.850000px;}
.x7e_c00277{left:337.500000px;}
.x54_c00277{left:338.850000px;}
.x43_c00277{left:341.250000px;}
.x82_c00277{left:342.750000px;}
.x3c_c00277{left:343.800000px;}
.x5d_c00277{left:344.850000px;}
.x80_c00277{left:346.350000px;}
.x65_c00277{left:350.550000px;}
.x9d_c00277{left:351.750000px;}
.x2d_c00277{left:352.800000px;}
.x74_c00277{left:354.600000px;}
.x6_c00277{left:356.550000px;}
.x1c_c00277{left:358.050000px;}
.x8a_c00277{left:359.550000px;}
.x91_c00277{left:361.050000px;}
.x28_c00277{left:363.450000px;}
.x33_c00277{left:365.850000px;}
.x94_c00277{left:367.050000px;}
.x58_c00277{left:369.750000px;}
.x11_c00277{left:374.850000px;}
.x2e_c00277{left:375.900000px;}
.x79_c00277{left:377.250000px;}
.x23_c00277{left:379.950000px;}
.x55_c00277{left:381.750000px;}
.x8e_c00277{left:382.950000px;}
.x4d_c00277{left:384.300000px;}
.x5e_c00277{left:385.500000px;}
.x85_c00277{left:387.000000px;}
.x1d_c00277{left:390.150000px;}
.x70_c00277{left:391.200000px;}
.xa4_c00277{left:393.000000px;}
.x3d_c00277{left:394.200000px;}
.x66_c00277{left:396.300000px;}
.x49_c00277{left:401.100000px;}
.x7_c00277{left:403.050000px;}
.x1e_c00277{left:404.550000px;}
.x34_c00277{left:406.500000px;}
.x6b_c00277{left:407.700000px;}
.x44_c00277{left:413.250000px;}
.x35_c00277{left:415.800000px;}
.x2_c00277{left:418.050000px;}
.x5f_c00277{left:419.400000px;}
.x59_c00277{left:420.450000px;}
.x3e_c00277{left:421.650000px;}
.x4a_c00277{left:425.250000px;}
.x86_c00277{left:426.600000px;}
.x7a_c00277{left:427.650000px;}
.x8_c00277{left:429.000000px;}
.x61_c00277{left:430.050000px;}
.x9a_c00277{left:431.100000px;}
.x6c_c00277{left:434.400000px;}
.x67_c00277{left:435.900000px;}
.x13_c00277{left:437.550000px;}
.x24_c00277{left:441.450000px;}
.x75_c00277{left:442.500000px;}
.x71_c00277{left:443.850000px;}
.x45_c00277{left:445.950000px;}
.x36_c00277{left:447.450000px;}
.x56_c00277{left:451.950000px;}
.x29_c00277{left:453.450000px;}
.x2f_c00277{left:455.400000px;}
.x97_c00277{left:458.100000px;}
.x4b_c00277{left:459.150000px;}
.x9_c00277{left:460.350000px;}
.x1f_c00277{left:461.850000px;}
.x9e_c00277{left:463.650000px;}
.x16_c00277{left:467.250000px;}
.x72_c00277{left:468.750000px;}
.x30_c00277{left:470.550000px;}
.x7b_c00277{left:472.650000px;}
.x2a_c00277{left:475.050000px;}
.x62_c00277{left:476.850000px;}
.x9b_c00277{left:478.200000px;}
.x37_c00277{left:480.150000px;}
.x4e_c00277{left:483.000000px;}
.x20_c00277{left:484.200000px;}
.x25_c00277{left:486.150000px;}
.x6d_c00277{left:489.450000px;}
.xa_c00277{left:493.800000px;}
.x14_c00277{left:495.450000px;}
.x68_c00277{left:504.300000px;}
.x12f_c00277{left:527.100000px;}
.x128_c00277{left:528.150000px;}
.xe6_c00277{left:529.950000px;}
.x134_c00277{left:541.500000px;}
.x12d_c00277{left:544.650000px;}
.xd3_c00277{left:546.150000px;}
.xcc_c00277{left:547.200000px;}
.xb4_c00277{left:548.400000px;}
.x138_c00277{left:555.750000px;}
.x105_c00277{left:564.000000px;}
.xa6_c00277{left:566.250000px;}
.xbf_c00277{left:567.300000px;}
.xf9_c00277{left:570.750000px;}
.x117_c00277{left:572.250000px;}
.x126_c00277{left:576.300000px;}
.xea_c00277{left:577.500000px;}
.xdd_c00277{left:582.000000px;}
.xef_c00277{left:584.700000px;}
.x10b_c00277{left:586.650000px;}
.xb5_c00277{left:588.750000px;}
.xe7_c00277{left:591.900000px;}
.xad_c00277{left:593.700000px;}
.x122_c00277{left:595.200000px;}
.xc2_c00277{left:597.150000px;}
.xff_c00277{left:598.200000px;}
.xe4_c00277{left:600.450000px;}
.xf0_c00277{left:601.950000px;}
.xd4_c00277{left:604.050000px;}
.x135_c00277{left:605.550000px;}
.xc7_c00277{left:607.350000px;}
.xcd_c00277{left:609.900000px;}
.xc0_c00277{left:612.300000px;}
.x137_c00277{left:613.350000px;}
.xb6_c00277{left:615.000000px;}
.x123_c00277{left:617.100000px;}
.x12b_c00277{left:618.450000px;}
.xd5_c00277{left:620.550000px;}
.xab_c00277{left:622.500000px;}
.xe8_c00277{left:625.350000px;}
.x111_c00277{left:627.600000px;}
.xa7_c00277{left:629.550000px;}
.x11c_c00277{left:631.050000px;}
.xce_c00277{left:633.000000px;}
.xba_c00277{left:637.200000px;}
.xfa_c00277{left:639.750000px;}
.xd6_c00277{left:641.850000px;}
.x136_c00277{left:643.350000px;}
.x100_c00277{left:645.300000px;}
.x10d_c00277{left:650.550000px;}
.xae_c00277{left:652.800000px;}
.xb7_c00277{left:654.300000px;}
.xde_c00277{left:656.100000px;}
.x118_c00277{left:657.600000px;}
.xac_c00277{left:659.550000px;}
.xc1_c00277{left:661.200000px;}
.xc3_c00277{left:662.250000px;}
.x101_c00277{left:665.850000px;}
.xf1_c00277{left:668.850000px;}
.x109_c00277{left:670.350000px;}
.xf6_c00277{left:673.050000px;}
.x106_c00277{left:674.550000px;}
.xaf_c00277{left:675.900000px;}
.xf2_c00277{left:677.100000px;}
.xa8_c00277{left:678.150000px;}
.xe0_c00277{left:679.200000px;}
.xd8_c00277{left:680.850000px;}
.x130_c00277{left:683.100000px;}
.xbb_c00277{left:685.350000px;}
.xc8_c00277{left:687.600000px;}
.x114_c00277{left:689.700000px;}
.x11f_c00277{left:691.650000px;}
.xa9_c00277{left:695.400000px;}
.xeb_c00277{left:696.900000px;}
.x107_c00277{left:699.450000px;}
.x125_c00277{left:701.250000px;}
.xdf_c00277{left:705.000000px;}
.xcf_c00277{left:708.600000px;}
.x124_c00277{left:709.650000px;}
.xec_c00277{left:711.300000px;}
.xf3_c00277{left:713.400000px;}
.xc4_c00277{left:714.750000px;}
.xc9_c00277{left:719.700000px;}
.x119_c00277{left:721.800000px;}
.x102_c00277{left:723.450000px;}
.x10e_c00277{left:725.550000px;}
.xfb_c00277{left:727.200000px;}
.xb8_c00277{left:728.850000px;}
.xaa_c00277{left:730.350000px;}
.xb0_c00277{left:731.700000px;}
.xd9_c00277{left:733.050000px;}
.x131_c00277{left:735.300000px;}
.xbc_c00277{left:736.500000px;}
.x103_c00277{left:737.850000px;}
.xe1_c00277{left:740.100000px;}
.xfc_c00277{left:746.250000px;}
.xf7_c00277{left:748.950000px;}
.xd0_c00277{left:751.050000px;}
.xe5_c00277{left:753.600000px;}
.x112_c00277{left:755.100000px;}
.xda_c00277{left:756.150000px;}
.x11d_c00277{left:757.650000px;}
.x139_c00277{left:758.700000px;}
.xe2_c00277{left:760.650000px;}
.xed_c00277{left:763.200000px;}
.xb1_c00277{left:765.900000px;}
.xc5_c00277{left:768.450000px;}
.xd7_c00277{left:770.700000px;}
.xca_c00277{left:772.200000px;}
.x12a_c00277{left:775.050000px;}
.xdb_c00277{left:777.750000px;}
.xf8_c00277{left:779.550000px;}
.x120_c00277{left:781.500000px;}
.xf4_c00277{left:782.550000px;}
.x132_c00277{left:785.400000px;}
.xbd_c00277{left:786.600000px;}
.x12e_c00277{left:788.400000px;}
.x11e_c00277{left:790.050000px;}
.x127_c00277{left:792.900000px;}
.xb2_c00277{left:793.950000px;}
.x10c_c00277{left:795.450000px;}
.xe3_c00277{left:796.650000px;}
.x10f_c00277{left:798.300000px;}
.xd1_c00277{left:799.950000px;}
.xe9_c00277{left:805.950000px;}
.x115_c00277{left:808.500000px;}
.xfd_c00277{left:809.850000px;}
.xc6_c00277{left:811.950000px;}
.x129_c00277{left:814.350000px;}
.xcb_c00277{left:816.150000px;}
.x104_c00277{left:818.850000px;}
.x11a_c00277{left:820.500000px;}
.xee_c00277{left:821.850000px;}
.x110_c00277{left:823.800000px;}
.x116_c00277{left:827.550000px;}
.xfe_c00277{left:829.950000px;}
.x10a_c00277{left:831.000000px;}
.x121_c00277{left:832.200000px;}
.x11b_c00277{left:835.200000px;}
.xdc_c00277{left:836.850000px;}
.x12c_c00277{left:838.050000px;}
.x108_c00277{left:840.600000px;}
.x113_c00277{left:842.550000px;}
.xd2_c00277{left:844.950000px;}
.xf5_c00277{left:847.650000px;}
.x133_c00277{left:851.250000px;}
.xbe_c00277{left:853.950000px;}
.xb9_c00277{left:856.950000px;}
.xb3_c00277{left:864.150000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws6_c00277{word-spacing:-8.653685pt;}
.ws4_c00277{word-spacing:-5.912344pt;}
.ws0_c00277{word-spacing:-3.340410pt;}
.ws5_c00277{word-spacing:-3.320755pt;}
.ws9_c00277{word-spacing:0.000000pt;}
.ws2_c00277{word-spacing:3.006536pt;}
.ws3_c00277{word-spacing:5.444444pt;}
.ws8_c00277{word-spacing:26.031746pt;}
.ws7_c00277{word-spacing:30.793651pt;}
.ws1_c00277{word-spacing:66.419753pt;}
.fs5_c00277{font-size:32.000000pt;}
.fs6_c00277{font-size:37.333333pt;}
.fs8_c00277{font-size:42.666667pt;}
.fs7_c00277{font-size:48.000000pt;}
.fs1_c00277{font-size:53.333333pt;}
.fs2_c00277{font-size:58.666667pt;}
.fs0_c00277{font-size:64.000000pt;}
.fs3_c00277{font-size:69.333333pt;}
.fs4_c00277{font-size:74.666667pt;}
.y0_c00277{bottom:0.000000pt;}
.y67_c00277{bottom:163.066667pt;}
.y34_c00277{bottom:170.266667pt;}
.y66_c00277{bottom:176.533333pt;}
.y33_c00277{bottom:182.133333pt;}
.y65_c00277{bottom:189.066667pt;}
.y32_c00277{bottom:195.066667pt;}
.y64_c00277{bottom:201.866667pt;}
.y31_c00277{bottom:207.600000pt;}
.y63_c00277{bottom:214.666667pt;}
.y30_c00277{bottom:219.733333pt;}
.y62_c00277{bottom:228.133333pt;}
.y2f_c00277{bottom:232.533333pt;}
.y2e_c00277{bottom:245.066667pt;}
.y61_c00277{bottom:245.733333pt;}
.y2d_c00277{bottom:256.266667pt;}
.y60_c00277{bottom:261.733333pt;}
.y2c_c00277{bottom:273.600000pt;}
.y5f_c00277{bottom:281.866667pt;}
.y2b_c00277{bottom:286.400000pt;}
.y5e_c00277{bottom:297.600000pt;}
.y2a_c00277{bottom:298.933333pt;}
.y29_c00277{bottom:311.066667pt;}
.y5d_c00277{bottom:313.333333pt;}
.y28_c00277{bottom:323.600000pt;}
.y5c_c00277{bottom:329.333333pt;}
.y27_c00277{bottom:336.400000pt;}
.y5b_c00277{bottom:345.333333pt;}
.y26_c00277{bottom:349.200000pt;}
.y5a_c00277{bottom:360.933333pt;}
.y25_c00277{bottom:361.333333pt;}
.y59_c00277{bottom:385.866667pt;}
.y58_c00277{bottom:401.866667pt;}
.y24_c00277{bottom:414.933333pt;}
.y23_c00277{bottom:421.066667pt;}
.y57_c00277{bottom:421.466667pt;}
.y22_c00277{bottom:430.400000pt;}
.y56_c00277{bottom:437.200000pt;}
.y21_c00277{bottom:439.733333pt;}
.y55_c00277{bottom:453.200000pt;}
.y20_c00277{bottom:466.933333pt;}
.y54_c00277{bottom:469.200000pt;}
.y53_c00277{bottom:484.933333pt;}
.y1f_c00277{bottom:497.333333pt;}
.y52_c00277{bottom:500.933333pt;}
.y51_c00277{bottom:516.933333pt;}
.y1e_c00277{bottom:517.066667pt;}
.y50_c00277{bottom:532.666667pt;}
.y4f_c00277{bottom:548.666667pt;}
.y1d_c00277{bottom:552.933333pt;}
.y4e_c00277{bottom:564.666667pt;}
.y1c_c00277{bottom:568.666667pt;}
.y4d_c00277{bottom:580.666667pt;}
.y1b_c00277{bottom:592.533333pt;}
.y4c_c00277{bottom:596.666667pt;}
.y1a_c00277{bottom:608.266667pt;}
.y4b_c00277{bottom:612.666667pt;}
.y19_c00277{bottom:624.266667pt;}
.y4a_c00277{bottom:628.400000pt;}
.y18_c00277{bottom:640.266667pt;}
.y49_c00277{bottom:644.400000pt;}
.y17_c00277{bottom:656.000000pt;}
.y48_c00277{bottom:660.400000pt;}
.y47_c00277{bottom:676.400000pt;}
.y16_c00277{bottom:680.266667pt;}
.y46_c00277{bottom:692.133333pt;}
.y15_c00277{bottom:696.533333pt;}
.y45_c00277{bottom:708.533333pt;}
.y14_c00277{bottom:712.533333pt;}
.y44_c00277{bottom:728.000000pt;}
.y13_c00277{bottom:728.533333pt;}
.y12_c00277{bottom:744.533333pt;}
.y43_c00277{bottom:747.866667pt;}
.y11_c00277{bottom:760.533333pt;}
.y42_c00277{bottom:767.733333pt;}
.y10_c00277{bottom:776.266667pt;}
.y41_c00277{bottom:783.733333pt;}
.yf_c00277{bottom:792.000000pt;}
.y40_c00277{bottom:799.733333pt;}
.ye_c00277{bottom:808.000000pt;}
.y3f_c00277{bottom:815.733333pt;}
.yd_c00277{bottom:824.000000pt;}
.y3e_c00277{bottom:831.733333pt;}
.yc_c00277{bottom:840.000000pt;}
.y3d_c00277{bottom:851.200000pt;}
.yb_c00277{bottom:855.733333pt;}
.y3c_c00277{bottom:867.466667pt;}
.ya_c00277{bottom:872.000000pt;}
.y3b_c00277{bottom:886.400000pt;}
.y9_c00277{bottom:887.733333pt;}
.y8_c00277{bottom:903.733333pt;}
.y3a_c00277{bottom:906.000000pt;}
.y39_c00277{bottom:922.266667pt;}
.y7_c00277{bottom:923.200000pt;}
.y6_c00277{bottom:937.600000pt;}
.y38_c00277{bottom:938.266667pt;}
.y5_c00277{bottom:952.933333pt;}
.y37_c00277{bottom:954.533333pt;}
.y4_c00277{bottom:968.266667pt;}
.y36_c00277{bottom:973.466667pt;}
.y3_c00277{bottom:979.466667pt;}
.y35_c00277{bottom:993.333333pt;}
.y2_c00277{bottom:995.200000pt;}
.y1_c00277{bottom:1016.266667pt;}
.h7_c00277{height:32.000000pt;}
.h8_c00277{height:37.333333pt;}
.ha_c00277{height:42.666667pt;}
.h9_c00277{height:48.000000pt;}
.h3_c00277{height:53.333333pt;}
.h4_c00277{height:58.666667pt;}
.h2_c00277{height:64.000000pt;}
.h5_c00277{height:69.333333pt;}
.h6_c00277{height:74.666667pt;}
.h0_c00277{height:1126.400065pt;}
.h1_c00277{height:1126.666667pt;}
.w1_c00277{width:854.666667pt;}
.w0_c00277{width:854.720052pt;}
.x0_c00277{left:0.000000pt;}
.x3_c00277{left:150.400000pt;}
.x8b_c00277{left:152.266667pt;}
.x84_c00277{left:153.333333pt;}
.x1_c00277{left:154.266667pt;}
.x9f_c00277{left:155.466667pt;}
.xa5_c00277{left:156.533333pt;}
.x26_c00277{left:160.400000pt;}
.xb_c00277{left:165.466667pt;}
.x12_c00277{left:166.533333pt;}
.x27_c00277{left:168.133333pt;}
.x31_c00277{left:169.333333pt;}
.x63_c00277{left:170.400000pt;}
.x98_c00277{left:173.866667pt;}
.xa0_c00277{left:175.600000pt;}
.x95_c00277{left:176.800000pt;}
.x15_c00277{left:179.866667pt;}
.xa3_c00277{left:182.266667pt;}
.x83_c00277{left:184.666667pt;}
.x51_c00277{left:187.600000pt;}
.x69_c00277{left:188.800000pt;}
.xc_c00277{left:190.400000pt;}
.x8c_c00277{left:191.333333pt;}
.x76_c00277{left:193.600000pt;}
.x38_c00277{left:194.533333pt;}
.x3f_c00277{left:195.866667pt;}
.x5a_c00277{left:197.733333pt;}
.x73_c00277{left:198.800000pt;}
.x60_c00277{left:200.933333pt;}
.xd_c00277{left:203.866667pt;}
.x57_c00277{left:206.800000pt;}
.x2b_c00277{left:208.533333pt;}
.x46_c00277{left:209.733333pt;}
.xa1_c00277{left:211.066667pt;}
.x8f_c00277{left:212.800000pt;}
.x17_c00277{left:213.733333pt;}
.x7c_c00277{left:214.666667pt;}
.x9c_c00277{left:216.000000pt;}
.x99_c00277{left:217.066667pt;}
.x40_c00277{left:218.533333pt;}
.x39_c00277{left:219.466667pt;}
.x2c_c00277{left:221.066667pt;}
.x6e_c00277{left:222.266667pt;}
.x87_c00277{left:224.266667pt;}
.x18_c00277{left:225.200000pt;}
.x52_c00277{left:228.533333pt;}
.x6a_c00277{left:230.133333pt;}
.xe_c00277{left:232.000000pt;}
.x5b_c00277{left:232.933333pt;}
.x21_c00277{left:234.133333pt;}
.x19_c00277{left:235.733333pt;}
.x4f_c00277{left:237.200000pt;}
.x7f_c00277{left:238.133333pt;}
.x90_c00277{left:239.066667pt;}
.x7d_c00277{left:241.200000pt;}
.x1a_c00277{left:245.066667pt;}
.x8d_c00277{left:246.000000pt;}
.x53_c00277{left:247.066667pt;}
.xf_c00277{left:248.666667pt;}
.x92_c00277{left:250.800000pt;}
.x5c_c00277{left:252.133333pt;}
.x41_c00277{left:253.466667pt;}
.x50_c00277{left:255.466667pt;}
.xa2_c00277{left:256.933333pt;}
.x47_c00277{left:258.000000pt;}
.x32_c00277{left:258.933333pt;}
.x96_c00277{left:260.000000pt;}
.x4_c00277{left:261.200000pt;}
.x93_c00277{left:263.600000pt;}
.x89_c00277{left:265.200000pt;}
.x1b_c00277{left:266.800000pt;}
.x22_c00277{left:276.000000pt;}
.x5_c00277{left:277.866667pt;}
.x48_c00277{left:278.800000pt;}
.x3a_c00277{left:280.933333pt;}
.x88_c00277{left:282.133333pt;}
.x6f_c00277{left:283.466667pt;}
.x64_c00277{left:286.000000pt;}
.x77_c00277{left:289.600000pt;}
.x3b_c00277{left:290.533333pt;}
.x10_c00277{left:291.600000pt;}
.x81_c00277{left:293.466667pt;}
.x42_c00277{left:295.066667pt;}
.x4c_c00277{left:296.800000pt;}
.x78_c00277{left:298.533333pt;}
.x7e_c00277{left:300.000000pt;}
.x54_c00277{left:301.200000pt;}
.x43_c00277{left:303.333333pt;}
.x82_c00277{left:304.666667pt;}
.x3c_c00277{left:305.600000pt;}
.x5d_c00277{left:306.533333pt;}
.x80_c00277{left:307.866667pt;}
.x65_c00277{left:311.600000pt;}
.x9d_c00277{left:312.666667pt;}
.x2d_c00277{left:313.600000pt;}
.x74_c00277{left:315.200000pt;}
.x6_c00277{left:316.933333pt;}
.x1c_c00277{left:318.266667pt;}
.x8a_c00277{left:319.600000pt;}
.x91_c00277{left:320.933333pt;}
.x28_c00277{left:323.066667pt;}
.x33_c00277{left:325.200000pt;}
.x94_c00277{left:326.266667pt;}
.x58_c00277{left:328.666667pt;}
.x11_c00277{left:333.200000pt;}
.x2e_c00277{left:334.133333pt;}
.x79_c00277{left:335.333333pt;}
.x23_c00277{left:337.733333pt;}
.x55_c00277{left:339.333333pt;}
.x8e_c00277{left:340.400000pt;}
.x4d_c00277{left:341.600000pt;}
.x5e_c00277{left:342.666667pt;}
.x85_c00277{left:344.000000pt;}
.x1d_c00277{left:346.800000pt;}
.x70_c00277{left:347.733333pt;}
.xa4_c00277{left:349.333333pt;}
.x3d_c00277{left:350.400000pt;}
.x66_c00277{left:352.266667pt;}
.x49_c00277{left:356.533333pt;}
.x7_c00277{left:358.266667pt;}
.x1e_c00277{left:359.600000pt;}
.x34_c00277{left:361.333333pt;}
.x6b_c00277{left:362.400000pt;}
.x44_c00277{left:367.333333pt;}
.x35_c00277{left:369.600000pt;}
.x2_c00277{left:371.600000pt;}
.x5f_c00277{left:372.800000pt;}
.x59_c00277{left:373.733333pt;}
.x3e_c00277{left:374.800000pt;}
.x4a_c00277{left:378.000000pt;}
.x86_c00277{left:379.200000pt;}
.x7a_c00277{left:380.133333pt;}
.x8_c00277{left:381.333333pt;}
.x61_c00277{left:382.266667pt;}
.x9a_c00277{left:383.200000pt;}
.x6c_c00277{left:386.133333pt;}
.x67_c00277{left:387.466667pt;}
.x13_c00277{left:388.933333pt;}
.x24_c00277{left:392.400000pt;}
.x75_c00277{left:393.333333pt;}
.x71_c00277{left:394.533333pt;}
.x45_c00277{left:396.400000pt;}
.x36_c00277{left:397.733333pt;}
.x56_c00277{left:401.733333pt;}
.x29_c00277{left:403.066667pt;}
.x2f_c00277{left:404.800000pt;}
.x97_c00277{left:407.200000pt;}
.x4b_c00277{left:408.133333pt;}
.x9_c00277{left:409.200000pt;}
.x1f_c00277{left:410.533333pt;}
.x9e_c00277{left:412.133333pt;}
.x16_c00277{left:415.333333pt;}
.x72_c00277{left:416.666667pt;}
.x30_c00277{left:418.266667pt;}
.x7b_c00277{left:420.133333pt;}
.x2a_c00277{left:422.266667pt;}
.x62_c00277{left:423.866667pt;}
.x9b_c00277{left:425.066667pt;}
.x37_c00277{left:426.800000pt;}
.x4e_c00277{left:429.333333pt;}
.x20_c00277{left:430.400000pt;}
.x25_c00277{left:432.133333pt;}
.x6d_c00277{left:435.066667pt;}
.xa_c00277{left:438.933333pt;}
.x14_c00277{left:440.400000pt;}
.x68_c00277{left:448.266667pt;}
.x12f_c00277{left:468.533333pt;}
.x128_c00277{left:469.466667pt;}
.xe6_c00277{left:471.066667pt;}
.x134_c00277{left:481.333333pt;}
.x12d_c00277{left:484.133333pt;}
.xd3_c00277{left:485.466667pt;}
.xcc_c00277{left:486.400000pt;}
.xb4_c00277{left:487.466667pt;}
.x138_c00277{left:494.000000pt;}
.x105_c00277{left:501.333333pt;}
.xa6_c00277{left:503.333333pt;}
.xbf_c00277{left:504.266667pt;}
.xf9_c00277{left:507.333333pt;}
.x117_c00277{left:508.666667pt;}
.x126_c00277{left:512.266667pt;}
.xea_c00277{left:513.333333pt;}
.xdd_c00277{left:517.333333pt;}
.xef_c00277{left:519.733333pt;}
.x10b_c00277{left:521.466667pt;}
.xb5_c00277{left:523.333333pt;}
.xe7_c00277{left:526.133333pt;}
.xad_c00277{left:527.733333pt;}
.x122_c00277{left:529.066667pt;}
.xc2_c00277{left:530.800000pt;}
.xff_c00277{left:531.733333pt;}
.xe4_c00277{left:533.733333pt;}
.xf0_c00277{left:535.066667pt;}
.xd4_c00277{left:536.933333pt;}
.x135_c00277{left:538.266667pt;}
.xc7_c00277{left:539.866667pt;}
.xcd_c00277{left:542.133333pt;}
.xc0_c00277{left:544.266667pt;}
.x137_c00277{left:545.200000pt;}
.xb6_c00277{left:546.666667pt;}
.x123_c00277{left:548.533333pt;}
.x12b_c00277{left:549.733333pt;}
.xd5_c00277{left:551.600000pt;}
.xab_c00277{left:553.333333pt;}
.xe8_c00277{left:555.866667pt;}
.x111_c00277{left:557.866667pt;}
.xa7_c00277{left:559.600000pt;}
.x11c_c00277{left:560.933333pt;}
.xce_c00277{left:562.666667pt;}
.xba_c00277{left:566.400000pt;}
.xfa_c00277{left:568.666667pt;}
.xd6_c00277{left:570.533333pt;}
.x136_c00277{left:571.866667pt;}
.x100_c00277{left:573.600000pt;}
.x10d_c00277{left:578.266667pt;}
.xae_c00277{left:580.266667pt;}
.xb7_c00277{left:581.600000pt;}
.xde_c00277{left:583.200000pt;}
.x118_c00277{left:584.533333pt;}
.xac_c00277{left:586.266667pt;}
.xc1_c00277{left:587.733333pt;}
.xc3_c00277{left:588.666667pt;}
.x101_c00277{left:591.866667pt;}
.xf1_c00277{left:594.533333pt;}
.x109_c00277{left:595.866667pt;}
.xf6_c00277{left:598.266667pt;}
.x106_c00277{left:599.600000pt;}
.xaf_c00277{left:600.800000pt;}
.xf2_c00277{left:601.866667pt;}
.xa8_c00277{left:602.800000pt;}
.xe0_c00277{left:603.733333pt;}
.xd8_c00277{left:605.200000pt;}
.x130_c00277{left:607.200000pt;}
.xbb_c00277{left:609.200000pt;}
.xc8_c00277{left:611.200000pt;}
.x114_c00277{left:613.066667pt;}
.x11f_c00277{left:614.800000pt;}
.xa9_c00277{left:618.133333pt;}
.xeb_c00277{left:619.466667pt;}
.x107_c00277{left:621.733333pt;}
.x125_c00277{left:623.333333pt;}
.xdf_c00277{left:626.666667pt;}
.xcf_c00277{left:629.866667pt;}
.x124_c00277{left:630.800000pt;}
.xec_c00277{left:632.266667pt;}
.xf3_c00277{left:634.133333pt;}
.xc4_c00277{left:635.333333pt;}
.xc9_c00277{left:639.733333pt;}
.x119_c00277{left:641.600000pt;}
.x102_c00277{left:643.066667pt;}
.x10e_c00277{left:644.933333pt;}
.xfb_c00277{left:646.400000pt;}
.xb8_c00277{left:647.866667pt;}
.xaa_c00277{left:649.200000pt;}
.xb0_c00277{left:650.400000pt;}
.xd9_c00277{left:651.600000pt;}
.x131_c00277{left:653.600000pt;}
.xbc_c00277{left:654.666667pt;}
.x103_c00277{left:655.866667pt;}
.xe1_c00277{left:657.866667pt;}
.xfc_c00277{left:663.333333pt;}
.xf7_c00277{left:665.733333pt;}
.xd0_c00277{left:667.600000pt;}
.xe5_c00277{left:669.866667pt;}
.x112_c00277{left:671.200000pt;}
.xda_c00277{left:672.133333pt;}
.x11d_c00277{left:673.466667pt;}
.x139_c00277{left:674.400000pt;}
.xe2_c00277{left:676.133333pt;}
.xed_c00277{left:678.400000pt;}
.xb1_c00277{left:680.800000pt;}
.xc5_c00277{left:683.066667pt;}
.xd7_c00277{left:685.066667pt;}
.xca_c00277{left:686.400000pt;}
.x12a_c00277{left:688.933333pt;}
.xdb_c00277{left:691.333333pt;}
.xf8_c00277{left:692.933333pt;}
.x120_c00277{left:694.666667pt;}
.xf4_c00277{left:695.600000pt;}
.x132_c00277{left:698.133333pt;}
.xbd_c00277{left:699.200000pt;}
.x12e_c00277{left:700.800000pt;}
.x11e_c00277{left:702.266667pt;}
.x127_c00277{left:704.800000pt;}
.xb2_c00277{left:705.733333pt;}
.x10c_c00277{left:707.066667pt;}
.xe3_c00277{left:708.133333pt;}
.x10f_c00277{left:709.600000pt;}
.xd1_c00277{left:711.066667pt;}
.xe9_c00277{left:716.400000pt;}
.x115_c00277{left:718.666667pt;}
.xfd_c00277{left:719.866667pt;}
.xc6_c00277{left:721.733333pt;}
.x129_c00277{left:723.866667pt;}
.xcb_c00277{left:725.466667pt;}
.x104_c00277{left:727.866667pt;}
.x11a_c00277{left:729.333333pt;}
.xee_c00277{left:730.533333pt;}
.x110_c00277{left:732.266667pt;}
.x116_c00277{left:735.600000pt;}
.xfe_c00277{left:737.733333pt;}
.x10a_c00277{left:738.666667pt;}
.x121_c00277{left:739.733333pt;}
.x11b_c00277{left:742.400000pt;}
.xdc_c00277{left:743.866667pt;}
.x12c_c00277{left:744.933333pt;}
.x108_c00277{left:747.200000pt;}
.x113_c00277{left:748.933333pt;}
.xd2_c00277{left:751.066667pt;}
.xf5_c00277{left:753.466667pt;}
.x133_c00277{left:756.666667pt;}
.xbe_c00277{left:759.066667pt;}
.xb9_c00277{left:761.733333pt;}
.xb3_c00277{left:768.133333pt;}
}





/* 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_c00278 {
    display:none;
  }
  .loading-indicator_c00278.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00278 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_c00278 { 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_c00278" -> "#page-container .classname_c00278")
 */
.pf_c00278 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00278 { /* 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_c00278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00278 { /* 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_c00278 { /* 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_c00278 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00278 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00278 {overflow:visible;}
  }
}
.c_c00278 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00278 { /* 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_c00278:after { /* webkit #35443 */
  content: '';
}
.t_c00278:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00278 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 */
}
.__c00278 { /* 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_c00278 { /* info for Javascript */
  display:none;
}
.l_c00278 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00278 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00278 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00278: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_c00278 {
    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_c00278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00278.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_c00278 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00278;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.000000;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;}
.m116_c00278{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00278{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m105_c00278{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m94_c00278{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00278{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00278{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m92_c00278{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00278{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00278{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m93_c00278{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md7_c00278{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00278{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00278{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00278{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00278{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00278{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m108_c00278{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00278{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.me9_c00278{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m95_c00278{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00278{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m37_c00278{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00278{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m88_c00278{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.mec_c00278{transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);}
.md9_c00278{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00278{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.md1_c00278{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.maa_c00278{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00278{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00278{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00278{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00278{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m87_c00278{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00278{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m62_c00278{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.md6_c00278{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.meb_c00278{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m82_c00278{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m79_c00278{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00278{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m76_c00278{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc_c00278{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m15_c00278{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00278{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m47_c00278{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m43_c00278{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m20_c00278{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m120_c00278{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m44_c00278{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mff_c00278{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00278{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00278{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00278{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m29_c00278{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m45_c00278{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m26_c00278{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.me6_c00278{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mee_c00278{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me_c00278{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md4_c00278{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m111_c00278{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m46_c00278{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00278{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00278{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00278{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md_c00278{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m70_c00278{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md2_c00278{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00278{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00278{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00278{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00278{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m30_c00278{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00278{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m49_c00278{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m53_c00278{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00278{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9_c00278{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m65_c00278{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m13_c00278{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00278{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m102_c00278{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00278{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mf_c00278{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00278{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00278{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m84_c00278{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00278{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me2_c00278{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m109_c00278{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00278{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m18_c00278{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m110_c00278{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m54_c00278{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m14_c00278{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00278{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m22_c00278{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00278{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m24_c00278{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00278{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00278{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m6_c00278{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m52_c00278{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00278{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00278{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00278{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00278{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m99_c00278{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00278{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m97_c00278{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m118_c00278{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00278{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00278{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me4_c00278{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me5_c00278{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb_c00278{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00278{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00278{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00278{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m28_c00278{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m33_c00278{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m11_c00278{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m39_c00278{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00278{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m55_c00278{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00278{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m56_c00278{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00278{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me8_c00278{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m35_c00278{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mae_c00278{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00278{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m31_c00278{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me1_c00278{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m61_c00278{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00278{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00278{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m60_c00278{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m51_c00278{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md5_c00278{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m17_c00278{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m115_c00278{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m50_c00278{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m119_c00278{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m25_c00278{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00278{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00278{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m38_c00278{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00278{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m16_c00278{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00278{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00278{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00278{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00278{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00278{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00278{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00278{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.med_c00278{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00278{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00278{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m74_c00278{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma_c00278{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me0_c00278{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00278{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mad_c00278{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m21_c00278{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00278{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00278{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m27_c00278{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m23_c00278{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00278{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m86_c00278{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mce_c00278{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00278{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m41_c00278{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m103_c00278{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00278{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00278{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00278{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mba_c00278{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m36_c00278{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00278{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m104_c00278{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00278{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00278{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00278{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00278{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00278{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00278{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00278{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m75_c00278{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00278{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m98_c00278{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00278{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00278{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md3_c00278{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m85_c00278{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m59_c00278{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m90_c00278{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00278{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m66_c00278{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m91_c00278{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m12_c00278{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00278{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me7_c00278{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00278{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mea_c00278{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m89_c00278{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m107_c00278{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m42_c00278{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md0_c00278{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00278{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mac_c00278{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m80_c00278{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m78_c00278{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m67_c00278{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00278{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00278{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m71_c00278{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00278{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md8_c00278{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4_c00278{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m72_c00278{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00278{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00278{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m101_c00278{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m58_c00278{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00278{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);}
.m106_c00278{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m32_c00278{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00278{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00278{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00278{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m73_c00278{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m81_c00278{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8_c00278{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00278{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00278{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mab_c00278{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00278{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m113_c00278{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m114_c00278{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m63_c00278{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m83_c00278{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00278{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00278{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m117_c00278{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m34_c00278{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.me3_c00278{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mde_c00278{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m40_c00278{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m100_c00278{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00278{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00278{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m48_c00278{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00278{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00278{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00278{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m122_c00278{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m57_c00278{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00278{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00278{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00278{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00278{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m121_c00278{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00278{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m123_c00278{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m96_c00278{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m77_c00278{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m64_c00278{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mef_c00278{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00278{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00278{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m68_c00278{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00278{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m112_c00278{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00278{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00278{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m69_c00278{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.maf_c00278{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.385250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00278{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00278{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mda_c00278{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00278{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.mca_c00278{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls0_c00278{letter-spacing:0.000000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{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__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00278{word-spacing:-5.986900px;}
.ws1_c00278{word-spacing:-5.048251px;}
.ws8_c00278{word-spacing:-5.025478px;}
.wsc_c00278{word-spacing:0.000000px;}
.ws0_c00278{word-spacing:10.000000px;}
.wsb_c00278{word-spacing:11.891435px;}
.ws4_c00278{word-spacing:22.142857px;}
.ws7_c00278{word-spacing:25.714286px;}
.ws2_c00278{word-spacing:26.428954px;}
.ws5_c00278{word-spacing:29.285714px;}
.ws6_c00278{word-spacing:35.833333px;}
.ws3_c00278{word-spacing:36.000000px;}
.ws9_c00278{word-spacing:40.000000px;}
._0_c00278{width:59.285714px;}
._1_c00278{width:70.000000px;}
._2_c00278{width:74.166667px;}
._3_c00278{width:80.416667px;}
.fc0_c00278{color:transparent;}
.fs5_c00278{font-size:54.000000px;}
.fs2_c00278{font-size:60.000000px;}
.fs4_c00278{font-size:66.000000px;}
.fs3_c00278{font-size:72.000000px;}
.fs1_c00278{font-size:84.000000px;}
.fs0_c00278{font-size:90.000000px;}
.y0_c00278{bottom:0.000000px;}
.y67_c00278{bottom:183.600000px;}
.y35_c00278{bottom:184.650000px;}
.y66_c00278{bottom:201.600000px;}
.y34_c00278{bottom:202.650000px;}
.y65_c00278{bottom:219.300000px;}
.y33_c00278{bottom:219.900000px;}
.y64_c00278{bottom:237.600000px;}
.y32_c00278{bottom:238.650000px;}
.y31_c00278{bottom:255.900000px;}
.y63_c00278{bottom:259.800000px;}
.y30_c00278{bottom:273.600000px;}
.y62_c00278{bottom:277.500000px;}
.y2f_c00278{bottom:291.600000px;}
.y61_c00278{bottom:308.550000px;}
.y2e_c00278{bottom:318.300000px;}
.y60_c00278{bottom:326.550000px;}
.y2d_c00278{bottom:336.300000px;}
.y5f_c00278{bottom:348.300000px;}
.y2c_c00278{bottom:358.500000px;}
.y5e_c00278{bottom:366.300000px;}
.y2b_c00278{bottom:376.500000px;}
.y5d_c00278{bottom:384.000000px;}
.y2a_c00278{bottom:394.500000px;}
.y5c_c00278{bottom:402.000000px;}
.y29_c00278{bottom:412.200000px;}
.y5b_c00278{bottom:419.700000px;}
.y28_c00278{bottom:430.200000px;}
.y5a_c00278{bottom:437.700000px;}
.y27_c00278{bottom:452.250000px;}
.y59_c00278{bottom:455.700000px;}
.y26_c00278{bottom:470.550000px;}
.y58_c00278{bottom:473.700000px;}
.y25_c00278{bottom:488.250000px;}
.y57_c00278{bottom:491.700000px;}
.y24_c00278{bottom:506.550000px;}
.y56_c00278{bottom:509.400000px;}
.y23_c00278{bottom:524.100000px;}
.y55_c00278{bottom:527.400000px;}
.y22_c00278{bottom:542.100000px;}
.y54_c00278{bottom:545.400000px;}
.y21_c00278{bottom:560.100000px;}
.y53_c00278{bottom:565.950000px;}
.y20_c00278{bottom:577.800000px;}
.y52_c00278{bottom:586.500000px;}
.y1f_c00278{bottom:593.700000px;}
.y51_c00278{bottom:604.500000px;}
.y1e_c00278{bottom:608.400000px;}
.y1d_c00278{bottom:623.550000px;}
.y50_c00278{bottom:626.400000px;}
.y1c_c00278{bottom:643.650000px;}
.y4f_c00278{bottom:644.400000px;}
.y1b_c00278{bottom:661.350000px;}
.y4e_c00278{bottom:662.400000px;}
.y4d_c00278{bottom:680.100000px;}
.y1a_c00278{bottom:683.700000px;}
.y4c_c00278{bottom:698.100000px;}
.y19_c00278{bottom:701.700000px;}
.y4b_c00278{bottom:715.350000px;}
.y18_c00278{bottom:719.700000px;}
.y17_c00278{bottom:736.950000px;}
.y4a_c00278{bottom:746.250000px;}
.y16_c00278{bottom:758.550000px;}
.y49_c00278{bottom:765.000000px;}
.y15_c00278{bottom:785.400000px;}
.y48_c00278{bottom:786.900000px;}
.y14_c00278{bottom:803.100000px;}
.y47_c00278{bottom:804.900000px;}
.y46_c00278{bottom:822.900000px;}
.y13_c00278{bottom:825.000000px;}
.y12_c00278{bottom:842.700000px;}
.y45_c00278{bottom:845.700000px;}
.y11_c00278{bottom:860.700000px;}
.y44_c00278{bottom:863.700000px;}
.y10_c00278{bottom:878.700000px;}
.y43_c00278{bottom:881.250000px;}
.yf_c00278{bottom:896.400000px;}
.y42_c00278{bottom:899.550000px;}
.ye_c00278{bottom:914.400000px;}
.y41_c00278{bottom:916.800000px;}
.y40_c00278{bottom:934.800000px;}
.yd_c00278{bottom:936.600000px;}
.y3f_c00278{bottom:952.500000px;}
.yc_c00278{bottom:954.900000px;}
.y3e_c00278{bottom:970.500000px;}
.yb_c00278{bottom:972.600000px;}
.y3d_c00278{bottom:990.300000px;}
.ya_c00278{bottom:990.600000px;}
.y3c_c00278{bottom:1005.450000px;}
.y9_c00278{bottom:1008.600000px;}
.y3b_c00278{bottom:1019.850000px;}
.y8_c00278{bottom:1026.600000px;}
.y3a_c00278{bottom:1033.950000px;}
.y7_c00278{bottom:1044.300000px;}
.y39_c00278{bottom:1054.800000px;}
.y6_c00278{bottom:1062.300000px;}
.y38_c00278{bottom:1072.500000px;}
.y5_c00278{bottom:1080.300000px;}
.y37_c00278{bottom:1095.150000px;}
.y4_c00278{bottom:1098.300000px;}
.y36_c00278{bottom:1113.150000px;}
.y3_c00278{bottom:1116.000000px;}
.y2_c00278{bottom:1135.050000px;}
.y1_c00278{bottom:1141.950000px;}
.h7_c00278{height:54.000000px;}
.h4_c00278{height:60.000000px;}
.h6_c00278{height:66.000000px;}
.h5_c00278{height:72.000000px;}
.h3_c00278{height:84.000000px;}
.h2_c00278{height:90.000000px;}
.h0_c00278{height:1272.600036px;}
.h1_c00278{height:1272.750000px;}
.w1_c00278{width:961.500000px;}
.w0_c00278{width:961.560058px;}
.x0_c00278{left:0.000000px;}
.x3_c00278{left:91.800000px;}
.x44_c00278{left:94.350000px;}
.x61_c00278{left:95.700000px;}
.x8e_c00278{left:100.800000px;}
.x4c_c00278{left:104.400000px;}
.x78_c00278{left:105.900000px;}
.x7c_c00278{left:109.800000px;}
.xa_c00278{left:110.850000px;}
.x2a_c00278{left:111.900000px;}
.x52_c00278{left:113.100000px;}
.x8f_c00278{left:114.150000px;}
.x80_c00278{left:124.650000px;}
.x9a_c00278{left:130.500000px;}
.x6b_c00278{left:132.150000px;}
.x25_c00278{left:133.500000px;}
.x20_c00278{left:136.200000px;}
.x98_c00278{left:137.700000px;}
.x75_c00278{left:138.900000px;}
.x67_c00278{left:140.700000px;}
.x9d_c00278{left:143.100000px;}
.x6e_c00278{left:145.650000px;}
.x5f_c00278{left:147.600000px;}
.x21_c00278{left:152.400000px;}
.x99_c00278{left:153.450000px;}
.x4d_c00278{left:154.800000px;}
.x45_c00278{left:156.300000px;}
.x94_c00278{left:157.950000px;}
.x3b_c00278{left:160.350000px;}
.x35_c00278{left:162.600000px;}
.x2b_c00278{left:163.800000px;}
.x62_c00278{left:165.150000px;}
.x18_c00278{left:167.550000px;}
.x12_c00278{left:170.700000px;}
.x40_c00278{left:172.950000px;}
.x46_c00278{left:175.350000px;}
.x4_c00278{left:178.200000px;}
.x68_c00278{left:179.250000px;}
.x59_c00278{left:180.300000px;}
.xb_c00278{left:182.550000px;}
.x65_c00278{left:183.750000px;}
.xa2_c00278{left:187.650000px;}
.x22_c00278{left:188.700000px;}
.x86_c00278{left:189.750000px;}
.x53_c00278{left:192.000000px;}
.x4e_c00278{left:194.400000px;}
.x6c_c00278{left:195.900000px;}
.x19_c00278{left:197.100000px;}
.x2c_c00278{left:199.050000px;}
.x71_c00278{left:200.550000px;}
.x7d_c00278{left:205.650000px;}
.x41_c00278{left:207.450000px;}
.x90_c00278{left:209.550000px;}
.x66_c00278{left:211.050000px;}
.xc_c00278{left:213.150000px;}
.x2d_c00278{left:217.050000px;}
.x54_c00278{left:218.250000px;}
.x81_c00278{left:219.300000px;}
.x5_c00278{left:220.350000px;}
.x13_c00278{left:221.400000px;}
.x9e_c00278{left:223.350000px;}
.x73_c00278{left:226.050000px;}
.x23_c00278{left:227.250000px;}
.x32_c00278{left:229.050000px;}
.x63_c00278{left:231.150000px;}
.x1a_c00278{left:232.350000px;}
.x47_c00278{left:233.700000px;}
.x87_c00278{left:234.750000px;}
.x3c_c00278{left:235.950000px;}
.x42_c00278{left:238.050000px;}
.x26_c00278{left:239.700000px;}
.x82_c00278{left:241.350000px;}
.x8b_c00278{left:243.000000px;}
.xa0_c00278{left:244.050000px;}
.x79_c00278{left:245.850000px;}
.x36_c00278{left:246.900000px;}
.x91_c00278{left:249.150000px;}
.x9f_c00278{left:250.650000px;}
.xd_c00278{left:251.700000px;}
.x64_c00278{left:253.050000px;}
.x8d_c00278{left:254.700000px;}
.x1b_c00278{left:256.800000px;}
.x76_c00278{left:258.000000px;}
.x5a_c00278{left:260.250000px;}
.x33_c00278{left:261.450000px;}
.x6d_c00278{left:263.550000px;}
.x88_c00278{left:265.950000px;}
.x6f_c00278{left:267.450000px;}
.x3d_c00278{left:269.400000px;}
.x14_c00278{left:271.500000px;}
.x9c_c00278{left:273.750000px;}
.x60_c00278{left:276.000000px;}
.xe_c00278{left:277.200000px;}
.x5b_c00278{left:279.300000px;}
.x27_c00278{left:281.400000px;}
.x4f_c00278{left:282.600000px;}
.x89_c00278{left:283.650000px;}
.x83_c00278{left:284.850000px;}
.x55_c00278{left:286.650000px;}
.x92_c00278{left:287.700000px;}
.x7a_c00278{left:289.350000px;}
.x48_c00278{left:291.300000px;}
.xa1_c00278{left:292.350000px;}
.x2e_c00278{left:294.150000px;}
.x93_c00278{left:295.200000px;}
.x5c_c00278{left:296.550000px;}
.x9b_c00278{left:297.900000px;}
.x6_c00278{left:299.850000px;}
.x28_c00278{left:300.900000px;}
.x56_c00278{left:304.950000px;}
.x70_c00278{left:306.000000px;}
.x95_c00278{left:307.500000px;}
.x43_c00278{left:308.550000px;}
.x5d_c00278{left:311.400000px;}
.x1c_c00278{left:312.600000px;}
.x15_c00278{left:316.200000px;}
.x2f_c00278{left:317.850000px;}
.x34_c00278{left:319.050000px;}
.x69_c00278{left:321.150000px;}
.xf_c00278{left:323.700000px;}
.x84_c00278{left:328.050000px;}
.x1_c00278{left:329.100000px;}
.x96_c00278{left:330.600000px;}
.x1d_c00278{left:331.650000px;}
.x37_c00278{left:335.850000px;}
.x74_c00278{left:337.500000px;}
.x3e_c00278{left:339.150000px;}
.x30_c00278{left:340.200000px;}
.x16_c00278{left:342.150000px;}
.x7_c00278{left:343.350000px;}
.x38_c00278{left:347.400000px;}
.x8a_c00278{left:349.200000px;}
.x57_c00278{left:351.450000px;}
.x49_c00278{left:352.500000px;}
.x8_c00278{left:353.850000px;}
.x3f_c00278{left:356.850000px;}
.x17_c00278{left:361.950000px;}
.x7e_c00278{left:363.300000px;}
.x39_c00278{left:364.350000px;}
.x1e_c00278{left:365.550000px;}
.x5e_c00278{left:367.200000px;}
.x9_c00278{left:370.050000px;}
.x58_c00278{left:373.350000px;}
.xa3_c00278{left:377.400000px;}
.x4a_c00278{left:379.800000px;}
.x10_c00278{left:383.100000px;}
.x6a_c00278{left:385.200000px;}
.x31_c00278{left:387.000000px;}
.x77_c00278{left:388.950000px;}
.x7f_c00278{left:391.350000px;}
.x50_c00278{left:393.900000px;}
.x97_c00278{left:395.100000px;}
.x1f_c00278{left:396.450000px;}
.x4b_c00278{left:400.650000px;}
.x3a_c00278{left:403.650000px;}
.x24_c00278{left:404.700000px;}
.x29_c00278{left:408.600000px;}
.x8c_c00278{left:412.350000px;}
.x51_c00278{left:414.750000px;}
.x11_c00278{left:416.250000px;}
.x7b_c00278{left:418.350000px;}
.x85_c00278{left:420.150000px;}
.x72_c00278{left:423.000000px;}
.xb5_c00278{left:452.550000px;}
.xfc_c00278{left:454.350000px;}
.xc7_c00278{left:466.500000px;}
.xa4_c00278{left:469.800000px;}
.xdf_c00278{left:471.600000px;}
.x10c_c00278{left:473.700000px;}
.x10d_c00278{left:479.850000px;}
.xd1_c00278{left:481.650000px;}
.x134_c00278{left:489.900000px;}
.x10e_c00278{left:491.700000px;}
.xb6_c00278{left:495.450000px;}
.x132_c00278{left:496.650000px;}
.xc8_c00278{left:498.150000px;}
.x10a_c00278{left:501.600000px;}
.xd2_c00278{left:503.250000px;}
.xe7_c00278{left:505.800000px;}
.xec_c00278{left:506.850000px;}
.x112_c00278{left:508.650000px;}
.xbc_c00278{left:510.150000px;}
.x118_c00278{left:511.500000px;}
.xbe_c00278{left:513.000000px;}
.xf1_c00278{left:514.800000px;}
.xc9_c00278{left:516.450000px;}
.xae_c00278{left:518.400000px;}
.x12d_c00278{left:519.600000px;}
.xd3_c00278{left:522.300000px;}
.x129_c00278{left:523.500000px;}
.x105_c00278{left:526.350000px;}
.xa5_c00278{left:528.450000px;}
.xe0_c00278{left:529.950000px;}
.x12b_c00278{left:533.700000px;}
.x116_c00278{left:535.350000px;}
.xfd_c00278{left:536.700000px;}
.xd4_c00278{left:538.200000px;}
.xa6_c00278{left:539.250000px;}
.xda_c00278{left:541.500000px;}
.x11b_c00278{left:543.000000px;}
.xed_c00278{left:544.650000px;}
.x119_c00278{left:546.000000px;}
.xca_c00278{left:552.150000px;}
.x127_c00278{left:554.400000px;}
.xaf_c00278{left:555.450000px;}
.xb7_c00278{left:559.950000px;}
.xe1_c00278{left:561.600000px;}
.xf5_c00278{left:562.650000px;}
.x121_c00278{left:563.850000px;}
.xf7_c00278{left:567.750000px;}
.x12e_c00278{left:571.800000px;}
.xcb_c00278{left:573.000000px;}
.xbf_c00278{left:574.950000px;}
.xeb_c00278{left:576.300000px;}
.xbd_c00278{left:578.550000px;}
.xce_c00278{left:582.600000px;}
.xfe_c00278{left:584.550000px;}
.xa7_c00278{left:586.350000px;}
.xf6_c00278{left:587.550000px;}
.x138_c00278{left:589.050000px;}
.xf8_c00278{left:591.150000px;}
.xb0_c00278{left:592.500000px;}
.xc0_c00278{left:593.700000px;}
.xf2_c00278{left:594.750000px;}
.xd5_c00278{left:597.300000px;}
.xe2_c00278{left:598.650000px;}
.x11c_c00278{left:600.600000px;}
.xdb_c00278{left:601.950000px;}
.x113_c00278{left:604.050000px;}
.x11e_c00278{left:605.250000px;}
.xb8_c00278{left:608.250000px;}
.xa8_c00278{left:610.500000px;}
.x10f_c00278{left:613.350000px;}
.xff_c00278{left:615.150000px;}
.x106_c00278{left:616.350000px;}
.x12f_c00278{left:619.650000px;}
.xa9_c00278{left:622.050000px;}
.xcc_c00278{left:624.450000px;}
.x12a_c00278{left:627.150000px;}
.xf9_c00278{left:628.650000px;}
.xc1_c00278{left:630.000000px;}
.xb1_c00278{left:631.800000px;}
.x11a_c00278{left:633.600000px;}
.xaa_c00278{left:637.950000px;}
.xc2_c00278{left:639.000000px;}
.x100_c00278{left:641.850000px;}
.xee_c00278{left:643.350000px;}
.xdc_c00278{left:644.400000px;}
.xe3_c00278{left:645.450000px;}
.x107_c00278{left:646.650000px;}
.xb2_c00278{left:647.700000px;}
.xfa_c00278{left:650.550000px;}
.xd6_c00278{left:652.800000px;}
.x11f_c00278{left:653.850000px;}
.xe8_c00278{left:655.950000px;}
.x10b_c00278{left:657.300000px;}
.x124_c00278{left:660.600000px;}
.xab_c00278{left:663.150000px;}
.x122_c00278{left:664.950000px;}
.xf3_c00278{left:666.750000px;}
.x128_c00278{left:668.250000px;}
.xb9_c00278{left:669.450000px;}
.xcd_c00278{left:673.800000px;}
.xe4_c00278{left:675.000000px;}
.xef_c00278{left:676.800000px;}
.xe9_c00278{left:677.850000px;}
.xb3_c00278{left:679.800000px;}
.x111_c00278{left:683.250000px;}
.x101_c00278{left:684.300000px;}
.xc3_c00278{left:686.850000px;}
.xdd_c00278{left:688.650000px;}
.x136_c00278{left:690.150000px;}
.xd7_c00278{left:692.850000px;}
.x130_c00278{left:694.500000px;}
.x133_c00278{left:696.000000px;}
.xb4_c00278{left:699.300000px;}
.xd8_c00278{left:700.800000px;}
.x139_c00278{left:703.500000px;}
.x102_c00278{left:707.400000px;}
.x120_c00278{left:708.900000px;}
.xc4_c00278{left:710.250000px;}
.x114_c00278{left:711.300000px;}
.xe5_c00278{left:712.500000px;}
.x109_c00278{left:714.750000px;}
.xcf_c00278{left:720.150000px;}
.xd9_c00278{left:721.350000px;}
.xac_c00278{left:723.600000px;}
.x103_c00278{left:725.400000px;}
.x125_c00278{left:727.950000px;}
.x123_c00278{left:729.450000px;}
.xba_c00278{left:731.700000px;}
.xe6_c00278{left:734.400000px;}
.x108_c00278{left:737.700000px;}
.x126_c00278{left:739.500000px;}
.xc5_c00278{left:741.150000px;}
.x135_c00278{left:742.650000px;}
.xde_c00278{left:744.150000px;}
.xbb_c00278{left:748.950000px;}
.x137_c00278{left:750.000000px;}
.x110_c00278{left:754.050000px;}
.xea_c00278{left:756.300000px;}
.x131_c00278{left:757.500000px;}
.xf4_c00278{left:758.850000px;}
.xf0_c00278{left:761.400000px;}
.x2_c00278{left:762.600000px;}
.xfb_c00278{left:765.450000px;}
.x115_c00278{left:767.100000px;}
.x11d_c00278{left:768.300000px;}
.x13a_c00278{left:772.650000px;}
.xc6_c00278{left:775.050000px;}
.xd0_c00278{left:776.700000px;}
.x12c_c00278{left:778.500000px;}
.x104_c00278{left:779.700000px;}
.xad_c00278{left:785.550000px;}
.x117_c00278{left:786.900000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.wsa_c00278{word-spacing:-5.321689pt;}
.ws1_c00278{word-spacing:-4.487334pt;}
.ws8_c00278{word-spacing:-4.467091pt;}
.wsc_c00278{word-spacing:0.000000pt;}
.ws0_c00278{word-spacing:8.888889pt;}
.wsb_c00278{word-spacing:10.570165pt;}
.ws4_c00278{word-spacing:19.682540pt;}
.ws7_c00278{word-spacing:22.857143pt;}
.ws2_c00278{word-spacing:23.492404pt;}
.ws5_c00278{word-spacing:26.031746pt;}
.ws6_c00278{word-spacing:31.851852pt;}
.ws3_c00278{word-spacing:32.000000pt;}
.ws9_c00278{word-spacing:35.555556pt;}
._0_c00278{width:52.698413pt;}
._1_c00278{width:62.222222pt;}
._2_c00278{width:65.925926pt;}
._3_c00278{width:71.481481pt;}
.fs5_c00278{font-size:48.000000pt;}
.fs2_c00278{font-size:53.333333pt;}
.fs4_c00278{font-size:58.666667pt;}
.fs3_c00278{font-size:64.000000pt;}
.fs1_c00278{font-size:74.666667pt;}
.fs0_c00278{font-size:80.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y67_c00278{bottom:163.200000pt;}
.y35_c00278{bottom:164.133333pt;}
.y66_c00278{bottom:179.200000pt;}
.y34_c00278{bottom:180.133333pt;}
.y65_c00278{bottom:194.933333pt;}
.y33_c00278{bottom:195.466667pt;}
.y64_c00278{bottom:211.200000pt;}
.y32_c00278{bottom:212.133333pt;}
.y31_c00278{bottom:227.466667pt;}
.y63_c00278{bottom:230.933333pt;}
.y30_c00278{bottom:243.200000pt;}
.y62_c00278{bottom:246.666667pt;}
.y2f_c00278{bottom:259.200000pt;}
.y61_c00278{bottom:274.266667pt;}
.y2e_c00278{bottom:282.933333pt;}
.y60_c00278{bottom:290.266667pt;}
.y2d_c00278{bottom:298.933333pt;}
.y5f_c00278{bottom:309.600000pt;}
.y2c_c00278{bottom:318.666667pt;}
.y5e_c00278{bottom:325.600000pt;}
.y2b_c00278{bottom:334.666667pt;}
.y5d_c00278{bottom:341.333333pt;}
.y2a_c00278{bottom:350.666667pt;}
.y5c_c00278{bottom:357.333333pt;}
.y29_c00278{bottom:366.400000pt;}
.y5b_c00278{bottom:373.066667pt;}
.y28_c00278{bottom:382.400000pt;}
.y5a_c00278{bottom:389.066667pt;}
.y27_c00278{bottom:402.000000pt;}
.y59_c00278{bottom:405.066667pt;}
.y26_c00278{bottom:418.266667pt;}
.y58_c00278{bottom:421.066667pt;}
.y25_c00278{bottom:434.000000pt;}
.y57_c00278{bottom:437.066667pt;}
.y24_c00278{bottom:450.266667pt;}
.y56_c00278{bottom:452.800000pt;}
.y23_c00278{bottom:465.866667pt;}
.y55_c00278{bottom:468.800000pt;}
.y22_c00278{bottom:481.866667pt;}
.y54_c00278{bottom:484.800000pt;}
.y21_c00278{bottom:497.866667pt;}
.y53_c00278{bottom:503.066667pt;}
.y20_c00278{bottom:513.600000pt;}
.y52_c00278{bottom:521.333333pt;}
.y1f_c00278{bottom:527.733333pt;}
.y51_c00278{bottom:537.333333pt;}
.y1e_c00278{bottom:540.800000pt;}
.y1d_c00278{bottom:554.266667pt;}
.y50_c00278{bottom:556.800000pt;}
.y1c_c00278{bottom:572.133333pt;}
.y4f_c00278{bottom:572.800000pt;}
.y1b_c00278{bottom:587.866667pt;}
.y4e_c00278{bottom:588.800000pt;}
.y4d_c00278{bottom:604.533333pt;}
.y1a_c00278{bottom:607.733333pt;}
.y4c_c00278{bottom:620.533333pt;}
.y19_c00278{bottom:623.733333pt;}
.y4b_c00278{bottom:635.866667pt;}
.y18_c00278{bottom:639.733333pt;}
.y17_c00278{bottom:655.066667pt;}
.y4a_c00278{bottom:663.333333pt;}
.y16_c00278{bottom:674.266667pt;}
.y49_c00278{bottom:680.000000pt;}
.y15_c00278{bottom:698.133333pt;}
.y48_c00278{bottom:699.466667pt;}
.y14_c00278{bottom:713.866667pt;}
.y47_c00278{bottom:715.466667pt;}
.y46_c00278{bottom:731.466667pt;}
.y13_c00278{bottom:733.333333pt;}
.y12_c00278{bottom:749.066667pt;}
.y45_c00278{bottom:751.733333pt;}
.y11_c00278{bottom:765.066667pt;}
.y44_c00278{bottom:767.733333pt;}
.y10_c00278{bottom:781.066667pt;}
.y43_c00278{bottom:783.333333pt;}
.yf_c00278{bottom:796.800000pt;}
.y42_c00278{bottom:799.600000pt;}
.ye_c00278{bottom:812.800000pt;}
.y41_c00278{bottom:814.933333pt;}
.y40_c00278{bottom:830.933333pt;}
.yd_c00278{bottom:832.533333pt;}
.y3f_c00278{bottom:846.666667pt;}
.yc_c00278{bottom:848.800000pt;}
.y3e_c00278{bottom:862.666667pt;}
.yb_c00278{bottom:864.533333pt;}
.y3d_c00278{bottom:880.266667pt;}
.ya_c00278{bottom:880.533333pt;}
.y3c_c00278{bottom:893.733333pt;}
.y9_c00278{bottom:896.533333pt;}
.y3b_c00278{bottom:906.533333pt;}
.y8_c00278{bottom:912.533333pt;}
.y3a_c00278{bottom:919.066667pt;}
.y7_c00278{bottom:928.266667pt;}
.y39_c00278{bottom:937.600000pt;}
.y6_c00278{bottom:944.266667pt;}
.y38_c00278{bottom:953.333333pt;}
.y5_c00278{bottom:960.266667pt;}
.y37_c00278{bottom:973.466667pt;}
.y4_c00278{bottom:976.266667pt;}
.y36_c00278{bottom:989.466667pt;}
.y3_c00278{bottom:992.000000pt;}
.y2_c00278{bottom:1008.933333pt;}
.y1_c00278{bottom:1015.066667pt;}
.h7_c00278{height:48.000000pt;}
.h4_c00278{height:53.333333pt;}
.h6_c00278{height:58.666667pt;}
.h5_c00278{height:64.000000pt;}
.h3_c00278{height:74.666667pt;}
.h2_c00278{height:80.000000pt;}
.h0_c00278{height:1131.200032pt;}
.h1_c00278{height:1131.333333pt;}
.w1_c00278{width:854.666667pt;}
.w0_c00278{width:854.720052pt;}
.x0_c00278{left:0.000000pt;}
.x3_c00278{left:81.600000pt;}
.x44_c00278{left:83.866667pt;}
.x61_c00278{left:85.066667pt;}
.x8e_c00278{left:89.600000pt;}
.x4c_c00278{left:92.800000pt;}
.x78_c00278{left:94.133333pt;}
.x7c_c00278{left:97.600000pt;}
.xa_c00278{left:98.533333pt;}
.x2a_c00278{left:99.466667pt;}
.x52_c00278{left:100.533333pt;}
.x8f_c00278{left:101.466667pt;}
.x80_c00278{left:110.800000pt;}
.x9a_c00278{left:116.000000pt;}
.x6b_c00278{left:117.466667pt;}
.x25_c00278{left:118.666667pt;}
.x20_c00278{left:121.066667pt;}
.x98_c00278{left:122.400000pt;}
.x75_c00278{left:123.466667pt;}
.x67_c00278{left:125.066667pt;}
.x9d_c00278{left:127.200000pt;}
.x6e_c00278{left:129.466667pt;}
.x5f_c00278{left:131.200000pt;}
.x21_c00278{left:135.466667pt;}
.x99_c00278{left:136.400000pt;}
.x4d_c00278{left:137.600000pt;}
.x45_c00278{left:138.933333pt;}
.x94_c00278{left:140.400000pt;}
.x3b_c00278{left:142.533333pt;}
.x35_c00278{left:144.533333pt;}
.x2b_c00278{left:145.600000pt;}
.x62_c00278{left:146.800000pt;}
.x18_c00278{left:148.933333pt;}
.x12_c00278{left:151.733333pt;}
.x40_c00278{left:153.733333pt;}
.x46_c00278{left:155.866667pt;}
.x4_c00278{left:158.400000pt;}
.x68_c00278{left:159.333333pt;}
.x59_c00278{left:160.266667pt;}
.xb_c00278{left:162.266667pt;}
.x65_c00278{left:163.333333pt;}
.xa2_c00278{left:166.800000pt;}
.x22_c00278{left:167.733333pt;}
.x86_c00278{left:168.666667pt;}
.x53_c00278{left:170.666667pt;}
.x4e_c00278{left:172.800000pt;}
.x6c_c00278{left:174.133333pt;}
.x19_c00278{left:175.200000pt;}
.x2c_c00278{left:176.933333pt;}
.x71_c00278{left:178.266667pt;}
.x7d_c00278{left:182.800000pt;}
.x41_c00278{left:184.400000pt;}
.x90_c00278{left:186.266667pt;}
.x66_c00278{left:187.600000pt;}
.xc_c00278{left:189.466667pt;}
.x2d_c00278{left:192.933333pt;}
.x54_c00278{left:194.000000pt;}
.x81_c00278{left:194.933333pt;}
.x5_c00278{left:195.866667pt;}
.x13_c00278{left:196.800000pt;}
.x9e_c00278{left:198.533333pt;}
.x73_c00278{left:200.933333pt;}
.x23_c00278{left:202.000000pt;}
.x32_c00278{left:203.600000pt;}
.x63_c00278{left:205.466667pt;}
.x1a_c00278{left:206.533333pt;}
.x47_c00278{left:207.733333pt;}
.x87_c00278{left:208.666667pt;}
.x3c_c00278{left:209.733333pt;}
.x42_c00278{left:211.600000pt;}
.x26_c00278{left:213.066667pt;}
.x82_c00278{left:214.533333pt;}
.x8b_c00278{left:216.000000pt;}
.xa0_c00278{left:216.933333pt;}
.x79_c00278{left:218.533333pt;}
.x36_c00278{left:219.466667pt;}
.x91_c00278{left:221.466667pt;}
.x9f_c00278{left:222.800000pt;}
.xd_c00278{left:223.733333pt;}
.x64_c00278{left:224.933333pt;}
.x8d_c00278{left:226.400000pt;}
.x1b_c00278{left:228.266667pt;}
.x76_c00278{left:229.333333pt;}
.x5a_c00278{left:231.333333pt;}
.x33_c00278{left:232.400000pt;}
.x6d_c00278{left:234.266667pt;}
.x88_c00278{left:236.400000pt;}
.x6f_c00278{left:237.733333pt;}
.x3d_c00278{left:239.466667pt;}
.x14_c00278{left:241.333333pt;}
.x9c_c00278{left:243.333333pt;}
.x60_c00278{left:245.333333pt;}
.xe_c00278{left:246.400000pt;}
.x5b_c00278{left:248.266667pt;}
.x27_c00278{left:250.133333pt;}
.x4f_c00278{left:251.200000pt;}
.x89_c00278{left:252.133333pt;}
.x83_c00278{left:253.200000pt;}
.x55_c00278{left:254.800000pt;}
.x92_c00278{left:255.733333pt;}
.x7a_c00278{left:257.200000pt;}
.x48_c00278{left:258.933333pt;}
.xa1_c00278{left:259.866667pt;}
.x2e_c00278{left:261.466667pt;}
.x93_c00278{left:262.400000pt;}
.x5c_c00278{left:263.600000pt;}
.x9b_c00278{left:264.800000pt;}
.x6_c00278{left:266.533333pt;}
.x28_c00278{left:267.466667pt;}
.x56_c00278{left:271.066667pt;}
.x70_c00278{left:272.000000pt;}
.x95_c00278{left:273.333333pt;}
.x43_c00278{left:274.266667pt;}
.x5d_c00278{left:276.800000pt;}
.x1c_c00278{left:277.866667pt;}
.x15_c00278{left:281.066667pt;}
.x2f_c00278{left:282.533333pt;}
.x34_c00278{left:283.600000pt;}
.x69_c00278{left:285.466667pt;}
.xf_c00278{left:287.733333pt;}
.x84_c00278{left:291.600000pt;}
.x1_c00278{left:292.533333pt;}
.x96_c00278{left:293.866667pt;}
.x1d_c00278{left:294.800000pt;}
.x37_c00278{left:298.533333pt;}
.x74_c00278{left:300.000000pt;}
.x3e_c00278{left:301.466667pt;}
.x30_c00278{left:302.400000pt;}
.x16_c00278{left:304.133333pt;}
.x7_c00278{left:305.200000pt;}
.x38_c00278{left:308.800000pt;}
.x8a_c00278{left:310.400000pt;}
.x57_c00278{left:312.400000pt;}
.x49_c00278{left:313.333333pt;}
.x8_c00278{left:314.533333pt;}
.x3f_c00278{left:317.200000pt;}
.x17_c00278{left:321.733333pt;}
.x7e_c00278{left:322.933333pt;}
.x39_c00278{left:323.866667pt;}
.x1e_c00278{left:324.933333pt;}
.x5e_c00278{left:326.400000pt;}
.x9_c00278{left:328.933333pt;}
.x58_c00278{left:331.866667pt;}
.xa3_c00278{left:335.466667pt;}
.x4a_c00278{left:337.600000pt;}
.x10_c00278{left:340.533333pt;}
.x6a_c00278{left:342.400000pt;}
.x31_c00278{left:344.000000pt;}
.x77_c00278{left:345.733333pt;}
.x7f_c00278{left:347.866667pt;}
.x50_c00278{left:350.133333pt;}
.x97_c00278{left:351.200000pt;}
.x1f_c00278{left:352.400000pt;}
.x4b_c00278{left:356.133333pt;}
.x3a_c00278{left:358.800000pt;}
.x24_c00278{left:359.733333pt;}
.x29_c00278{left:363.200000pt;}
.x8c_c00278{left:366.533333pt;}
.x51_c00278{left:368.666667pt;}
.x11_c00278{left:370.000000pt;}
.x7b_c00278{left:371.866667pt;}
.x85_c00278{left:373.466667pt;}
.x72_c00278{left:376.000000pt;}
.xb5_c00278{left:402.266667pt;}
.xfc_c00278{left:403.866667pt;}
.xc7_c00278{left:414.666667pt;}
.xa4_c00278{left:417.600000pt;}
.xdf_c00278{left:419.200000pt;}
.x10c_c00278{left:421.066667pt;}
.x10d_c00278{left:426.533333pt;}
.xd1_c00278{left:428.133333pt;}
.x134_c00278{left:435.466667pt;}
.x10e_c00278{left:437.066667pt;}
.xb6_c00278{left:440.400000pt;}
.x132_c00278{left:441.466667pt;}
.xc8_c00278{left:442.800000pt;}
.x10a_c00278{left:445.866667pt;}
.xd2_c00278{left:447.333333pt;}
.xe7_c00278{left:449.600000pt;}
.xec_c00278{left:450.533333pt;}
.x112_c00278{left:452.133333pt;}
.xbc_c00278{left:453.466667pt;}
.x118_c00278{left:454.666667pt;}
.xbe_c00278{left:456.000000pt;}
.xf1_c00278{left:457.600000pt;}
.xc9_c00278{left:459.066667pt;}
.xae_c00278{left:460.800000pt;}
.x12d_c00278{left:461.866667pt;}
.xd3_c00278{left:464.266667pt;}
.x129_c00278{left:465.333333pt;}
.x105_c00278{left:467.866667pt;}
.xa5_c00278{left:469.733333pt;}
.xe0_c00278{left:471.066667pt;}
.x12b_c00278{left:474.400000pt;}
.x116_c00278{left:475.866667pt;}
.xfd_c00278{left:477.066667pt;}
.xd4_c00278{left:478.400000pt;}
.xa6_c00278{left:479.333333pt;}
.xda_c00278{left:481.333333pt;}
.x11b_c00278{left:482.666667pt;}
.xed_c00278{left:484.133333pt;}
.x119_c00278{left:485.333333pt;}
.xca_c00278{left:490.800000pt;}
.x127_c00278{left:492.800000pt;}
.xaf_c00278{left:493.733333pt;}
.xb7_c00278{left:497.733333pt;}
.xe1_c00278{left:499.200000pt;}
.xf5_c00278{left:500.133333pt;}
.x121_c00278{left:501.200000pt;}
.xf7_c00278{left:504.666667pt;}
.x12e_c00278{left:508.266667pt;}
.xcb_c00278{left:509.333333pt;}
.xbf_c00278{left:511.066667pt;}
.xeb_c00278{left:512.266667pt;}
.xbd_c00278{left:514.266667pt;}
.xce_c00278{left:517.866667pt;}
.xfe_c00278{left:519.600000pt;}
.xa7_c00278{left:521.200000pt;}
.xf6_c00278{left:522.266667pt;}
.x138_c00278{left:523.600000pt;}
.xf8_c00278{left:525.466667pt;}
.xb0_c00278{left:526.666667pt;}
.xc0_c00278{left:527.733333pt;}
.xf2_c00278{left:528.666667pt;}
.xd5_c00278{left:530.933333pt;}
.xe2_c00278{left:532.133333pt;}
.x11c_c00278{left:533.866667pt;}
.xdb_c00278{left:535.066667pt;}
.x113_c00278{left:536.933333pt;}
.x11e_c00278{left:538.000000pt;}
.xb8_c00278{left:540.666667pt;}
.xa8_c00278{left:542.666667pt;}
.x10f_c00278{left:545.200000pt;}
.xff_c00278{left:546.800000pt;}
.x106_c00278{left:547.866667pt;}
.x12f_c00278{left:550.800000pt;}
.xa9_c00278{left:552.933333pt;}
.xcc_c00278{left:555.066667pt;}
.x12a_c00278{left:557.466667pt;}
.xf9_c00278{left:558.800000pt;}
.xc1_c00278{left:560.000000pt;}
.xb1_c00278{left:561.600000pt;}
.x11a_c00278{left:563.200000pt;}
.xaa_c00278{left:567.066667pt;}
.xc2_c00278{left:568.000000pt;}
.x100_c00278{left:570.533333pt;}
.xee_c00278{left:571.866667pt;}
.xdc_c00278{left:572.800000pt;}
.xe3_c00278{left:573.733333pt;}
.x107_c00278{left:574.800000pt;}
.xb2_c00278{left:575.733333pt;}
.xfa_c00278{left:578.266667pt;}
.xd6_c00278{left:580.266667pt;}
.x11f_c00278{left:581.200000pt;}
.xe8_c00278{left:583.066667pt;}
.x10b_c00278{left:584.266667pt;}
.x124_c00278{left:587.200000pt;}
.xab_c00278{left:589.466667pt;}
.x122_c00278{left:591.066667pt;}
.xf3_c00278{left:592.666667pt;}
.x128_c00278{left:594.000000pt;}
.xb9_c00278{left:595.066667pt;}
.xcd_c00278{left:598.933333pt;}
.xe4_c00278{left:600.000000pt;}
.xef_c00278{left:601.600000pt;}
.xe9_c00278{left:602.533333pt;}
.xb3_c00278{left:604.266667pt;}
.x111_c00278{left:607.333333pt;}
.x101_c00278{left:608.266667pt;}
.xc3_c00278{left:610.533333pt;}
.xdd_c00278{left:612.133333pt;}
.x136_c00278{left:613.466667pt;}
.xd7_c00278{left:615.866667pt;}
.x130_c00278{left:617.333333pt;}
.x133_c00278{left:618.666667pt;}
.xb4_c00278{left:621.600000pt;}
.xd8_c00278{left:622.933333pt;}
.x139_c00278{left:625.333333pt;}
.x102_c00278{left:628.800000pt;}
.x120_c00278{left:630.133333pt;}
.xc4_c00278{left:631.333333pt;}
.x114_c00278{left:632.266667pt;}
.xe5_c00278{left:633.333333pt;}
.x109_c00278{left:635.333333pt;}
.xcf_c00278{left:640.133333pt;}
.xd9_c00278{left:641.200000pt;}
.xac_c00278{left:643.200000pt;}
.x103_c00278{left:644.800000pt;}
.x125_c00278{left:647.066667pt;}
.x123_c00278{left:648.400000pt;}
.xba_c00278{left:650.400000pt;}
.xe6_c00278{left:652.800000pt;}
.x108_c00278{left:655.733333pt;}
.x126_c00278{left:657.333333pt;}
.xc5_c00278{left:658.800000pt;}
.x135_c00278{left:660.133333pt;}
.xde_c00278{left:661.466667pt;}
.xbb_c00278{left:665.733333pt;}
.x137_c00278{left:666.666667pt;}
.x110_c00278{left:670.266667pt;}
.xea_c00278{left:672.266667pt;}
.x131_c00278{left:673.333333pt;}
.xf4_c00278{left:674.533333pt;}
.xf0_c00278{left:676.800000pt;}
.x2_c00278{left:677.866667pt;}
.xfb_c00278{left:680.400000pt;}
.x115_c00278{left:681.866667pt;}
.x11d_c00278{left:682.933333pt;}
.x13a_c00278{left:686.800000pt;}
.xc6_c00278{left:688.933333pt;}
.xd0_c00278{left:690.400000pt;}
.x12c_c00278{left:692.000000pt;}
.x104_c00278{left:693.066667pt;}
.xad_c00278{left:698.266667pt;}
.x117_c00278{left:699.466667pt;}
}





/* 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_c00279 {
    display:none;
  }
  .loading-indicator_c00279.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00279 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_c00279 { 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_c00279" -> "#page-container .classname_c00279")
 */
.pf_c00279 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00279 { /* 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_c00279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00279 { /* 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_c00279 { /* 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_c00279 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00279 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00279 {overflow:visible;}
  }
}
.c_c00279 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00279 { /* 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_c00279:after { /* webkit #35443 */
  content: '';
}
.t_c00279:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00279 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 */
}
.__c00279 { /* 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_c00279 { /* info for Javascript */
  display:none;
}
.l_c00279 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00279 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00279 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00279: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_c00279 {
    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_c00279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00279.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_c00279 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00279;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.000000;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;}
.m104_c00279{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m29_c00279{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mca_c00279{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m80_c00279{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00279{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00279{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00279{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me0_c00279{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00279{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00279{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m45_c00279{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00279{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00279{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00279{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m13_c00279{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00279{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m14_c00279{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00279{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m67_c00279{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00279{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m15_c00279{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m3_c00279{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00279{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mf_c00279{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m103_c00279{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m12_c00279{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m7_c00279{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m35_c00279{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00279{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mec_c00279{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m68_c00279{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00279{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00279{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m69_c00279{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m102_c00279{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m89_c00279{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m88_c00279{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m73_c00279{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m94_c00279{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00279{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me9_c00279{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m92_c00279{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00279{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00279{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00279{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m79_c00279{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m99_c00279{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00279{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00279{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m30_c00279{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m17_c00279{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00279{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m57_c00279{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00279{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00279{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m33_c00279{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m64_c00279{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00279{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00279{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m83_c00279{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m62_c00279{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00279{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00279{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00279{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m59_c00279{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00279{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mce_c00279{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00279{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m58_c00279{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00279{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma_c00279{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m47_c00279{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00279{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00279{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m74_c00279{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00279{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00279{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00279{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00279{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m85_c00279{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00279{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m10_c00279{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m40_c00279{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me_c00279{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00279{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me7_c00279{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb_c00279{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m98_c00279{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00279{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m37_c00279{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mac_c00279{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00279{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00279{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00279{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00279{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00279{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m31_c00279{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m24_c00279{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m34_c00279{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mad_c00279{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00279{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00279{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m39_c00279{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m70_c00279{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mee_c00279{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md5_c00279{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m60_c00279{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.maa_c00279{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m86_c00279{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m96_c00279{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.maf_c00279{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m52_c00279{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m48_c00279{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m28_c00279{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.meb_c00279{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m101_c00279{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00279{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m54_c00279{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00279{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m42_c00279{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m38_c00279{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00279{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00279{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m84_c00279{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00279{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m32_c00279{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m23_c00279{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00279{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m97_c00279{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m26_c00279{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00279{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00279{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m51_c00279{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00279{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00279{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mef_c00279{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mba_c00279{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00279{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00279{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m19_c00279{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00279{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m90_c00279{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m49_c00279{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.md1_c00279{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m8_c00279{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00279{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mae_c00279{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mab_c00279{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00279{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m53_c00279{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m11_c00279{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00279{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m27_c00279{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00279{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m93_c00279{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md0_c00279{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00279{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m91_c00279{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m43_c00279{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mff_c00279{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00279{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00279{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2_c00279{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00279{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m36_c00279{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00279{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m25_c00279{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00279{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00279{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00279{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m4_c00279{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00279{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mea_c00279{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00279{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md3_c00279{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m46_c00279{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m66_c00279{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00279{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00279{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00279{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m72_c00279{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m5_c00279{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m41_c00279{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00279{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00279{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m22_c00279{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md7_c00279{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00279{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00279{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m87_c00279{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00279{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m76_c00279{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m95_c00279{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00279{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00279{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m50_c00279{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m6_c00279{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.med_c00279{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00279{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00279{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00279{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00279{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.md_c00279{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00279{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m18_c00279{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m61_c00279{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00279{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00279{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc_c00279{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00279{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00279{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00279{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m78_c00279{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00279{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00279{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m100_c00279{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m21_c00279{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00279{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m77_c00279{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00279{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md2_c00279{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md4_c00279{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00279{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00279{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00279{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m71_c00279{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00279{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m63_c00279{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00279{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m44_c00279{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mde_c00279{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m82_c00279{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00279{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00279{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00279{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.md6_c00279{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00279{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.md8_c00279{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m75_c00279{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m20_c00279{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m0_c00279{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m56_c00279{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00279{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00279{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m55_c00279{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m81_c00279{transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00279{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.me2_c00279{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m16_c00279{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00279{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.mda_c00279{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.me1_c00279{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md9_c00279{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m105_c00279{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.me3_c00279{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.me5_c00279{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.me8_c00279{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00279{transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499250,0.000000,0.000000,0.250000,0,0);}
.m9_c00279{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.me4_c00279{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.me6_c00279{transform:matrix(0.584000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584000,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls0_c00279{letter-spacing:0.000000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{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__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:-2.918216px;}
.ws2_c00279{word-spacing:-2.450199px;}
.ws3_c00279{word-spacing:0.000000px;}
.ws1_c00279{word-spacing:25.714286px;}
.fc0_c00279{color:transparent;}
.fs9_c00279{font-size:30.000000px;}
.fs8_c00279{font-size:42.000000px;}
.fs7_c00279{font-size:48.000000px;}
.fs6_c00279{font-size:54.000000px;}
.fs2_c00279{font-size:60.000000px;}
.fs3_c00279{font-size:66.000000px;}
.fs4_c00279{font-size:72.000000px;}
.fs0_c00279{font-size:78.000000px;}
.fs1_c00279{font-size:84.000000px;}
.fs5_c00279{font-size:90.000000px;}
.y0_c00279{bottom:0.000000px;}
.y67_c00279{bottom:165.900000px;}
.y33_c00279{bottom:183.300000px;}
.y66_c00279{bottom:183.750000px;}
.y65_c00279{bottom:201.450000px;}
.y32_c00279{bottom:205.350000px;}
.y64_c00279{bottom:219.150000px;}
.y31_c00279{bottom:223.350000px;}
.y63_c00279{bottom:237.150000px;}
.y30_c00279{bottom:241.050000px;}
.y62_c00279{bottom:254.850000px;}
.y2f_c00279{bottom:259.050000px;}
.y2e_c00279{bottom:276.300000px;}
.y61_c00279{bottom:276.450000px;}
.y2d_c00279{bottom:294.300000px;}
.y60_c00279{bottom:294.450000px;}
.y2c_c00279{bottom:312.000000px;}
.y5f_c00279{bottom:312.450000px;}
.y2b_c00279{bottom:330.000000px;}
.y5e_c00279{bottom:330.450000px;}
.y68_c00279{bottom:344.550000px;}
.y2a_c00279{bottom:347.700000px;}
.y5d_c00279{bottom:352.500000px;}
.y29_c00279{bottom:365.700000px;}
.y5c_c00279{bottom:374.400000px;}
.y28_c00279{bottom:383.700000px;}
.y5b_c00279{bottom:396.750000px;}
.y27_c00279{bottom:408.600000px;}
.y5a_c00279{bottom:418.350000px;}
.y26_c00279{bottom:429.150000px;}
.y59_c00279{bottom:437.400000px;}
.y25_c00279{bottom:447.450000px;}
.y58_c00279{bottom:455.400000px;}
.y24_c00279{bottom:469.650000px;}
.y57_c00279{bottom:477.750000px;}
.y23_c00279{bottom:489.150000px;}
.y56_c00279{bottom:499.950000px;}
.y22_c00279{bottom:505.350000px;}
.y55_c00279{bottom:517.950000px;}
.y21_c00279{bottom:523.050000px;}
.y54_c00279{bottom:535.650000px;}
.y20_c00279{bottom:545.700000px;}
.y53_c00279{bottom:553.650000px;}
.y1f_c00279{bottom:563.400000px;}
.y52_c00279{bottom:571.650000px;}
.y1e_c00279{bottom:590.400000px;}
.y51_c00279{bottom:592.950000px;}
.y4e_c00279{bottom:595.800000px;}
.y4d_c00279{bottom:603.750000px;}
.y50_c00279{bottom:604.500000px;}
.y1d_c00279{bottom:608.400000px;}
.y4f_c00279{bottom:611.700000px;}
.y4c_c00279{bottom:612.000000px;}
.y1c_c00279{bottom:630.300000px;}
.y4b_c00279{bottom:631.500000px;}
.y1b_c00279{bottom:648.300000px;}
.y49_c00279{bottom:662.400000px;}
.y1a_c00279{bottom:666.000000px;}
.y48_c00279{bottom:684.750000px;}
.y19_c00279{bottom:686.850000px;}
.y18_c00279{bottom:707.400000px;}
.y17_c00279{bottom:725.400000px;}
.y47_c00279{bottom:729.300000px;}
.y16_c00279{bottom:747.900000px;}
.y46_c00279{bottom:763.950000px;}
.y4a_c00279{bottom:764.700000px;}
.y15_c00279{bottom:765.900000px;}
.y14_c00279{bottom:783.600000px;}
.y45_c00279{bottom:799.950000px;}
.y13_c00279{bottom:801.300000px;}
.y44_c00279{bottom:818.700000px;}
.y12_c00279{bottom:819.000000px;}
.y43_c00279{bottom:840.900000px;}
.y11_c00279{bottom:841.650000px;}
.y42_c00279{bottom:858.900000px;}
.y10_c00279{bottom:869.100000px;}
.y41_c00279{bottom:876.900000px;}
.yf_c00279{bottom:887.100000px;}
.y40_c00279{bottom:894.900000px;}
.ye_c00279{bottom:909.300000px;}
.y3f_c00279{bottom:912.900000px;}
.yd_c00279{bottom:927.000000px;}
.y3e_c00279{bottom:930.600000px;}
.yc_c00279{bottom:945.300000px;}
.y3d_c00279{bottom:948.300000px;}
.yb_c00279{bottom:963.000000px;}
.y3c_c00279{bottom:966.300000px;}
.ya_c00279{bottom:980.700000px;}
.y3b_c00279{bottom:987.900000px;}
.y9_c00279{bottom:998.700000px;}
.y3a_c00279{bottom:1002.600000px;}
.y39_c00279{bottom:1015.200000px;}
.y8_c00279{bottom:1019.100000px;}
.y38_c00279{bottom:1033.950000px;}
.y7_c00279{bottom:1039.650000px;}
.y37_c00279{bottom:1051.950000px;}
.y6_c00279{bottom:1057.350000px;}
.y36_c00279{bottom:1074.150000px;}
.y5_c00279{bottom:1080.000000px;}
.y35_c00279{bottom:1091.850000px;}
.y4_c00279{bottom:1098.000000px;}
.y34_c00279{bottom:1114.200000px;}
.y3_c00279{bottom:1115.700000px;}
.y2_c00279{bottom:1141.200000px;}
.y1_c00279{bottom:1142.250000px;}
.hb_c00279{height:30.000000px;}
.ha_c00279{height:42.000000px;}
.h9_c00279{height:48.000000px;}
.h8_c00279{height:54.000000px;}
.h4_c00279{height:60.000000px;}
.h5_c00279{height:66.000000px;}
.h6_c00279{height:72.000000px;}
.h2_c00279{height:78.000000px;}
.h3_c00279{height:84.000000px;}
.h7_c00279{height:90.000000px;}
.h0_c00279{height:1262.160003px;}
.h1_c00279{height:1262.250000px;}
.w1_c00279{width:961.500000px;}
.w0_c00279{width:961.560058px;}
.x0_c00279{left:0.000000px;}
.x85_c00279{left:183.900000px;}
.x87_c00279{left:185.100000px;}
.x6f_c00279{left:186.150000px;}
.x64_c00279{left:187.200000px;}
.x1_c00279{left:190.050000px;}
.x1f_c00279{left:191.850000px;}
.x15_c00279{left:192.900000px;}
.x27_c00279{left:199.050000px;}
.x8b_c00279{left:202.650000px;}
.x75_c00279{left:203.850000px;}
.x6a_c00279{left:205.200000px;}
.x57_c00279{left:206.550000px;}
.x3a_c00279{left:207.750000px;}
.x28_c00279{left:209.550000px;}
.x3_c00279{left:211.350000px;}
.x16_c00279{left:217.350000px;}
.x76_c00279{left:222.150000px;}
.x4f_c00279{left:226.350000px;}
.x83_c00279{left:227.850000px;}
.x1d_c00279{left:231.000000px;}
.x4c_c00279{left:232.800000px;}
.x41_c00279{left:235.200000px;}
.x17_c00279{left:237.900000px;}
.x2f_c00279{left:240.750000px;}
.x6b_c00279{left:242.250000px;}
.x36_c00279{left:244.950000px;}
.x58_c00279{left:246.900000px;}
.x62_c00279{left:248.400000px;}
.xe_c00279{left:251.700000px;}
.x20_c00279{left:253.050000px;}
.x9a_c00279{left:254.100000px;}
.x47_c00279{left:256.650000px;}
.x99_c00279{left:258.150000px;}
.x54_c00279{left:259.650000px;}
.x4b_c00279{left:263.850000px;}
.x30_c00279{left:265.950000px;}
.xf_c00279{left:268.200000px;}
.x88_c00279{left:269.400000px;}
.x9_c00279{left:271.500000px;}
.x63_c00279{left:274.650000px;}
.x23_c00279{left:276.900000px;}
.x48_c00279{left:279.750000px;}
.x29_c00279{left:283.350000px;}
.x77_c00279{left:285.900000px;}
.x3b_c00279{left:286.950000px;}
.x42_c00279{left:288.450000px;}
.x95_c00279{left:290.250000px;}
.x5d_c00279{left:291.450000px;}
.x1e_c00279{left:293.700000px;}
.x37_c00279{left:296.400000px;}
.xa_c00279{left:298.800000px;}
.x10_c00279{left:300.300000px;}
.x5e_c00279{left:301.950000px;}
.x18_c00279{left:305.250000px;}
.x43_c00279{left:307.200000px;}
.x3c_c00279{left:310.050000px;}
.x8c_c00279{left:311.100000px;}
.x21_c00279{left:314.250000px;}
.x4_c00279{left:321.900000px;}
.x31_c00279{left:325.350000px;}
.x86_c00279{left:327.900000px;}
.x72_c00279{left:329.850000px;}
.x5_c00279{left:332.400000px;}
.x59_c00279{left:334.050000px;}
.x11_c00279{left:336.300000px;}
.x44_c00279{left:338.550000px;}
.x84_c00279{left:340.200000px;}
.x2a_c00279{left:341.250000px;}
.x4d_c00279{left:343.350000px;}
.x32_c00279{left:345.450000px;}
.x81_c00279{left:346.500000px;}
.x6c_c00279{left:349.950000px;}
.x19_c00279{left:353.100000px;}
.x50_c00279{left:354.150000px;}
.x67_c00279{left:356.700000px;}
.x73_c00279{left:357.900000px;}
.x12_c00279{left:359.700000px;}
.x7f_c00279{left:360.750000px;}
.x3d_c00279{left:361.950000px;}
.x2b_c00279{left:363.150000px;}
.x7c_c00279{left:364.950000px;}
.x78_c00279{left:367.200000px;}
.x13_c00279{left:368.700000px;}
.xb_c00279{left:370.500000px;}
.x6_c00279{left:371.700000px;}
.x38_c00279{left:376.350000px;}
.x14_c00279{left:378.450000px;}
.x92_c00279{left:379.800000px;}
.x6d_c00279{left:380.850000px;}
.x68_c00279{left:382.950000px;}
.x5f_c00279{left:384.000000px;}
.x24_c00279{left:387.000000px;}
.x8d_c00279{left:388.200000px;}
.x45_c00279{left:389.700000px;}
.x1a_c00279{left:392.400000px;}
.x79_c00279{left:393.450000px;}
.x90_c00279{left:394.650000px;}
.x22_c00279{left:396.600000px;}
.x69_c00279{left:397.650000px;}
.x51_c00279{left:399.150000px;}
.x33_c00279{left:402.300000px;}
.x25_c00279{left:407.100000px;}
.x2c_c00279{left:408.900000px;}
.x96_c00279{left:410.850000px;}
.x97_c00279{left:413.550000px;}
.x65_c00279{left:415.050000px;}
.x8e_c00279{left:416.250000px;}
.x3e_c00279{left:418.800000px;}
.x1b_c00279{left:420.450000px;}
.x7a_c00279{left:422.550000px;}
.x52_c00279{left:424.050000px;}
.x89_c00279{left:425.400000px;}
.x5a_c00279{left:427.200000px;}
.x55_c00279{left:428.550000px;}
.x46_c00279{left:430.650000px;}
.x98_c00279{left:432.300000px;}
.x94_c00279{left:433.500000px;}
.x2_c00279{left:434.850000px;}
.x74_c00279{left:436.800000px;}
.x82_c00279{left:438.300000px;}
.x34_c00279{left:440.100000px;}
.x8f_c00279{left:441.450000px;}
.x80_c00279{left:443.550000px;}
.x70_c00279{left:447.150000px;}
.x49_c00279{left:449.250000px;}
.x93_c00279{left:450.750000px;}
.x3f_c00279{left:452.250000px;}
.xc_c00279{left:454.800000px;}
.x4e_c00279{left:456.750000px;}
.x8a_c00279{left:459.600000px;}
.x5b_c00279{left:461.400000px;}
.x7_c00279{left:464.550000px;}
.x91_c00279{left:466.950000px;}
.x6e_c00279{left:472.350000px;}
.x60_c00279{left:475.800000px;}
.x7d_c00279{left:477.600000px;}
.x2d_c00279{left:481.650000px;}
.x5c_c00279{left:484.800000px;}
.x56_c00279{left:486.600000px;}
.x35_c00279{left:487.650000px;}
.x26_c00279{left:488.850000px;}
.x7b_c00279{left:489.900000px;}
.x66_c00279{left:491.700000px;}
.x39_c00279{left:492.900000px;}
.x53_c00279{left:493.950000px;}
.x1c_c00279{left:496.050000px;}
.x61_c00279{left:497.100000px;}
.xd_c00279{left:498.300000px;}
.x71_c00279{left:509.850000px;}
.x4a_c00279{left:511.200000px;}
.x7e_c00279{left:513.600000px;}
.x2e_c00279{left:518.400000px;}
.x40_c00279{left:521.700000px;}
.x8_c00279{left:526.050000px;}
.xfb_c00279{left:546.450000px;}
.xf5_c00279{left:547.500000px;}
.xbe_c00279{left:549.600000px;}
.x9b_c00279{left:551.550000px;}
.x12e_c00279{left:554.100000px;}
.x121_c00279{left:559.350000px;}
.x11b_c00279{left:560.550000px;}
.x111_c00279{left:562.200000px;}
.x10b_c00279{left:563.400000px;}
.x104_c00279{left:564.450000px;}
.xe6_c00279{left:565.800000px;}
.xd0_c00279{left:566.850000px;}
.xa9_c00279{left:568.350000px;}
.xc8_c00279{left:577.950000px;}
.x114_c00279{left:580.800000px;}
.xf1_c00279{left:582.150000px;}
.xfc_c00279{left:583.800000px;}
.xb6_c00279{left:585.300000px;}
.xa2_c00279{left:587.550000px;}
.x9c_c00279{left:594.000000px;}
.xb0_c00279{left:595.050000px;}
.xa3_c00279{left:598.650000px;}
.xde_c00279{left:599.850000px;}
.xd8_c00279{left:601.350000px;}
.xe7_c00279{left:603.900000px;}
.xaa_c00279{left:607.950000px;}
.x105_c00279{left:609.450000px;}
.xeb_c00279{left:611.850000px;}
.x116_c00279{left:614.550000px;}
.xf6_c00279{left:615.600000px;}
.x124_c00279{left:616.950000px;}
.xd1_c00279{left:619.350000px;}
.x11e_c00279{left:621.450000px;}
.xb7_c00279{left:624.150000px;}
.xf2_c00279{left:627.900000px;}
.x9d_c00279{left:631.800000px;}
.xd9_c00279{left:633.000000px;}
.xe8_c00279{left:636.000000px;}
.xa4_c00279{left:638.550000px;}
.xfa_c00279{left:640.500000px;}
.xb8_c00279{left:643.200000px;}
.xfd_c00279{left:644.250000px;}
.xab_c00279{left:646.050000px;}
.x107_c00279{left:649.650000px;}
.xec_c00279{left:650.700000px;}
.x12a_c00279{left:653.700000px;}
.xf3_c00279{left:655.650000px;}
.xfe_c00279{left:658.650000px;}
.xb9_c00279{left:660.900000px;}
.xb1_c00279{left:662.400000px;}
.xff_c00279{left:664.500000px;}
.xe3_c00279{left:666.450000px;}
.xd2_c00279{left:668.700000px;}
.xf7_c00279{left:670.350000px;}
.xbf_c00279{left:672.000000px;}
.xed_c00279{left:674.100000px;}
.xda_c00279{left:676.200000px;}
.xd3_c00279{left:678.000000px;}
.xc9_c00279{left:679.800000px;}
.x12b_c00279{left:681.000000px;}
.x119_c00279{left:682.950000px;}
.x127_c00279{left:684.600000px;}
.xa5_c00279{left:686.400000px;}
.xf4_c00279{left:689.100000px;}
.xac_c00279{left:691.800000px;}
.xca_c00279{left:694.500000px;}
.x106_c00279{left:695.700000px;}
.x12c_c00279{left:696.900000px;}
.xcc_c00279{left:699.300000px;}
.x10c_c00279{left:700.500000px;}
.xba_c00279{left:702.000000px;}
.xa6_c00279{left:703.350000px;}
.x108_c00279{left:705.750000px;}
.xdf_c00279{left:708.600000px;}
.x11c_c00279{left:709.950000px;}
.x9e_c00279{left:711.300000px;}
.xb2_c00279{left:713.100000px;}
.x11f_c00279{left:717.150000px;}
.x100_c00279{left:718.200000px;}
.x120_c00279{left:719.550000px;}
.xd4_c00279{left:720.900000px;}
.x10d_c00279{left:722.850000px;}
.x101_c00279{left:724.950000px;}
.xc0_c00279{left:726.750000px;}
.xad_c00279{left:728.100000px;}
.x103_c00279{left:734.400000px;}
.xc1_c00279{left:736.050000px;}
.xd5_c00279{left:737.400000px;}
.xe0_c00279{left:738.450000px;}
.xcd_c00279{left:741.450000px;}
.x11a_c00279{left:742.500000px;}
.xae_c00279{left:745.050000px;}
.xe4_c00279{left:747.000000px;}
.xe9_c00279{left:748.650000px;}
.x125_c00279{left:751.050000px;}
.x9f_c00279{left:754.500000px;}
.xb3_c00279{left:758.400000px;}
.x122_c00279{left:760.650000px;}
.x11d_c00279{left:761.850000px;}
.x112_c00279{left:764.550000px;}
.xa0_c00279{left:769.650000px;}
.xf8_c00279{left:774.300000px;}
.xa7_c00279{left:775.650000px;}
.xaf_c00279{left:776.700000px;}
.xdb_c00279{left:780.300000px;}
.x123_c00279{left:782.550000px;}
.xc2_c00279{left:783.600000px;}
.xe5_c00279{left:785.100000px;}
.x117_c00279{left:786.600000px;}
.xb4_c00279{left:789.000000px;}
.xc3_c00279{left:791.550000px;}
.xe1_c00279{left:793.950000px;}
.x128_c00279{left:795.150000px;}
.xc4_c00279{left:798.000000px;}
.x10e_c00279{left:800.250000px;}
.x109_c00279{left:801.450000px;}
.xd6_c00279{left:804.300000px;}
.xee_c00279{left:807.600000px;}
.xbb_c00279{left:809.250000px;}
.xe2_c00279{left:811.200000px;}
.x102_c00279{left:812.550000px;}
.xea_c00279{left:813.750000px;}
.xcb_c00279{left:815.850000px;}
.xc5_c00279{left:817.800000px;}
.x10f_c00279{left:819.300000px;}
.x113_c00279{left:825.000000px;}
.xce_c00279{left:827.850000px;}
.xa1_c00279{left:831.900000px;}
.x118_c00279{left:833.700000px;}
.x115_c00279{left:834.900000px;}
.xbc_c00279{left:839.850000px;}
.xdc_c00279{left:841.500000px;}
.xef_c00279{left:844.350000px;}
.xc6_c00279{left:845.850000px;}
.xa8_c00279{left:847.350000px;}
.xdd_c00279{left:849.750000px;}
.xf9_c00279{left:852.300000px;}
.x10a_c00279{left:855.750000px;}
.xd7_c00279{left:858.000000px;}
.x129_c00279{left:859.650000px;}
.x110_c00279{left:861.000000px;}
.xb5_c00279{left:862.500000px;}
.x126_c00279{left:864.150000px;}
.x12d_c00279{left:869.400000px;}
.xbd_c00279{left:873.300000px;}
.xc7_c00279{left:874.950000px;}
.xf0_c00279{left:880.650000px;}
.xcf_c00279{left:883.950000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws0_c00279{word-spacing:-2.593969pt;}
.ws2_c00279{word-spacing:-2.177955pt;}
.ws3_c00279{word-spacing:0.000000pt;}
.ws1_c00279{word-spacing:22.857143pt;}
.fs9_c00279{font-size:26.666667pt;}
.fs8_c00279{font-size:37.333333pt;}
.fs7_c00279{font-size:42.666667pt;}
.fs6_c00279{font-size:48.000000pt;}
.fs2_c00279{font-size:53.333333pt;}
.fs3_c00279{font-size:58.666667pt;}
.fs4_c00279{font-size:64.000000pt;}
.fs0_c00279{font-size:69.333333pt;}
.fs1_c00279{font-size:74.666667pt;}
.fs5_c00279{font-size:80.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y67_c00279{bottom:147.466667pt;}
.y33_c00279{bottom:162.933333pt;}
.y66_c00279{bottom:163.333333pt;}
.y65_c00279{bottom:179.066667pt;}
.y32_c00279{bottom:182.533333pt;}
.y64_c00279{bottom:194.800000pt;}
.y31_c00279{bottom:198.533333pt;}
.y63_c00279{bottom:210.800000pt;}
.y30_c00279{bottom:214.266667pt;}
.y62_c00279{bottom:226.533333pt;}
.y2f_c00279{bottom:230.266667pt;}
.y2e_c00279{bottom:245.600000pt;}
.y61_c00279{bottom:245.733333pt;}
.y2d_c00279{bottom:261.600000pt;}
.y60_c00279{bottom:261.733333pt;}
.y2c_c00279{bottom:277.333333pt;}
.y5f_c00279{bottom:277.733333pt;}
.y2b_c00279{bottom:293.333333pt;}
.y5e_c00279{bottom:293.733333pt;}
.y68_c00279{bottom:306.266667pt;}
.y2a_c00279{bottom:309.066667pt;}
.y5d_c00279{bottom:313.333333pt;}
.y29_c00279{bottom:325.066667pt;}
.y5c_c00279{bottom:332.800000pt;}
.y28_c00279{bottom:341.066667pt;}
.y5b_c00279{bottom:352.666667pt;}
.y27_c00279{bottom:363.200000pt;}
.y5a_c00279{bottom:371.866667pt;}
.y26_c00279{bottom:381.466667pt;}
.y59_c00279{bottom:388.800000pt;}
.y25_c00279{bottom:397.733333pt;}
.y58_c00279{bottom:404.800000pt;}
.y24_c00279{bottom:417.466667pt;}
.y57_c00279{bottom:424.666667pt;}
.y23_c00279{bottom:434.800000pt;}
.y56_c00279{bottom:444.400000pt;}
.y22_c00279{bottom:449.200000pt;}
.y55_c00279{bottom:460.400000pt;}
.y21_c00279{bottom:464.933333pt;}
.y54_c00279{bottom:476.133333pt;}
.y20_c00279{bottom:485.066667pt;}
.y53_c00279{bottom:492.133333pt;}
.y1f_c00279{bottom:500.800000pt;}
.y52_c00279{bottom:508.133333pt;}
.y1e_c00279{bottom:524.800000pt;}
.y51_c00279{bottom:527.066667pt;}
.y4e_c00279{bottom:529.600000pt;}
.y4d_c00279{bottom:536.666667pt;}
.y50_c00279{bottom:537.333333pt;}
.y1d_c00279{bottom:540.800000pt;}
.y4f_c00279{bottom:543.733333pt;}
.y4c_c00279{bottom:544.000000pt;}
.y1c_c00279{bottom:560.266667pt;}
.y4b_c00279{bottom:561.333333pt;}
.y1b_c00279{bottom:576.266667pt;}
.y49_c00279{bottom:588.800000pt;}
.y1a_c00279{bottom:592.000000pt;}
.y48_c00279{bottom:608.666667pt;}
.y19_c00279{bottom:610.533333pt;}
.y18_c00279{bottom:628.800000pt;}
.y17_c00279{bottom:644.800000pt;}
.y47_c00279{bottom:648.266667pt;}
.y16_c00279{bottom:664.800000pt;}
.y46_c00279{bottom:679.066667pt;}
.y4a_c00279{bottom:679.733333pt;}
.y15_c00279{bottom:680.800000pt;}
.y14_c00279{bottom:696.533333pt;}
.y45_c00279{bottom:711.066667pt;}
.y13_c00279{bottom:712.266667pt;}
.y44_c00279{bottom:727.733333pt;}
.y12_c00279{bottom:728.000000pt;}
.y43_c00279{bottom:747.466667pt;}
.y11_c00279{bottom:748.133333pt;}
.y42_c00279{bottom:763.466667pt;}
.y10_c00279{bottom:772.533333pt;}
.y41_c00279{bottom:779.466667pt;}
.yf_c00279{bottom:788.533333pt;}
.y40_c00279{bottom:795.466667pt;}
.ye_c00279{bottom:808.266667pt;}
.y3f_c00279{bottom:811.466667pt;}
.yd_c00279{bottom:824.000000pt;}
.y3e_c00279{bottom:827.200000pt;}
.yc_c00279{bottom:840.266667pt;}
.y3d_c00279{bottom:842.933333pt;}
.yb_c00279{bottom:856.000000pt;}
.y3c_c00279{bottom:858.933333pt;}
.ya_c00279{bottom:871.733333pt;}
.y3b_c00279{bottom:878.133333pt;}
.y9_c00279{bottom:887.733333pt;}
.y3a_c00279{bottom:891.200000pt;}
.y39_c00279{bottom:902.400000pt;}
.y8_c00279{bottom:905.866667pt;}
.y38_c00279{bottom:919.066667pt;}
.y7_c00279{bottom:924.133333pt;}
.y37_c00279{bottom:935.066667pt;}
.y6_c00279{bottom:939.866667pt;}
.y36_c00279{bottom:954.800000pt;}
.y5_c00279{bottom:960.000000pt;}
.y35_c00279{bottom:970.533333pt;}
.y4_c00279{bottom:976.000000pt;}
.y34_c00279{bottom:990.400000pt;}
.y3_c00279{bottom:991.733333pt;}
.y2_c00279{bottom:1014.400000pt;}
.y1_c00279{bottom:1015.333333pt;}
.hb_c00279{height:26.666667pt;}
.ha_c00279{height:37.333333pt;}
.h9_c00279{height:42.666667pt;}
.h8_c00279{height:48.000000pt;}
.h4_c00279{height:53.333333pt;}
.h5_c00279{height:58.666667pt;}
.h6_c00279{height:64.000000pt;}
.h2_c00279{height:69.333333pt;}
.h3_c00279{height:74.666667pt;}
.h7_c00279{height:80.000000pt;}
.h0_c00279{height:1121.920003pt;}
.h1_c00279{height:1122.000000pt;}
.w1_c00279{width:854.666667pt;}
.w0_c00279{width:854.720052pt;}
.x0_c00279{left:0.000000pt;}
.x85_c00279{left:163.466667pt;}
.x87_c00279{left:164.533333pt;}
.x6f_c00279{left:165.466667pt;}
.x64_c00279{left:166.400000pt;}
.x1_c00279{left:168.933333pt;}
.x1f_c00279{left:170.533333pt;}
.x15_c00279{left:171.466667pt;}
.x27_c00279{left:176.933333pt;}
.x8b_c00279{left:180.133333pt;}
.x75_c00279{left:181.200000pt;}
.x6a_c00279{left:182.400000pt;}
.x57_c00279{left:183.600000pt;}
.x3a_c00279{left:184.666667pt;}
.x28_c00279{left:186.266667pt;}
.x3_c00279{left:187.866667pt;}
.x16_c00279{left:193.200000pt;}
.x76_c00279{left:197.466667pt;}
.x4f_c00279{left:201.200000pt;}
.x83_c00279{left:202.533333pt;}
.x1d_c00279{left:205.333333pt;}
.x4c_c00279{left:206.933333pt;}
.x41_c00279{left:209.066667pt;}
.x17_c00279{left:211.466667pt;}
.x2f_c00279{left:214.000000pt;}
.x6b_c00279{left:215.333333pt;}
.x36_c00279{left:217.733333pt;}
.x58_c00279{left:219.466667pt;}
.x62_c00279{left:220.800000pt;}
.xe_c00279{left:223.733333pt;}
.x20_c00279{left:224.933333pt;}
.x9a_c00279{left:225.866667pt;}
.x47_c00279{left:228.133333pt;}
.x99_c00279{left:229.466667pt;}
.x54_c00279{left:230.800000pt;}
.x4b_c00279{left:234.533333pt;}
.x30_c00279{left:236.400000pt;}
.xf_c00279{left:238.400000pt;}
.x88_c00279{left:239.466667pt;}
.x9_c00279{left:241.333333pt;}
.x63_c00279{left:244.133333pt;}
.x23_c00279{left:246.133333pt;}
.x48_c00279{left:248.666667pt;}
.x29_c00279{left:251.866667pt;}
.x77_c00279{left:254.133333pt;}
.x3b_c00279{left:255.066667pt;}
.x42_c00279{left:256.400000pt;}
.x95_c00279{left:258.000000pt;}
.x5d_c00279{left:259.066667pt;}
.x1e_c00279{left:261.066667pt;}
.x37_c00279{left:263.466667pt;}
.xa_c00279{left:265.600000pt;}
.x10_c00279{left:266.933333pt;}
.x5e_c00279{left:268.400000pt;}
.x18_c00279{left:271.333333pt;}
.x43_c00279{left:273.066667pt;}
.x3c_c00279{left:275.600000pt;}
.x8c_c00279{left:276.533333pt;}
.x21_c00279{left:279.333333pt;}
.x4_c00279{left:286.133333pt;}
.x31_c00279{left:289.200000pt;}
.x86_c00279{left:291.466667pt;}
.x72_c00279{left:293.200000pt;}
.x5_c00279{left:295.466667pt;}
.x59_c00279{left:296.933333pt;}
.x11_c00279{left:298.933333pt;}
.x44_c00279{left:300.933333pt;}
.x84_c00279{left:302.400000pt;}
.x2a_c00279{left:303.333333pt;}
.x4d_c00279{left:305.200000pt;}
.x32_c00279{left:307.066667pt;}
.x81_c00279{left:308.000000pt;}
.x6c_c00279{left:311.066667pt;}
.x19_c00279{left:313.866667pt;}
.x50_c00279{left:314.800000pt;}
.x67_c00279{left:317.066667pt;}
.x73_c00279{left:318.133333pt;}
.x12_c00279{left:319.733333pt;}
.x7f_c00279{left:320.666667pt;}
.x3d_c00279{left:321.733333pt;}
.x2b_c00279{left:322.800000pt;}
.x7c_c00279{left:324.400000pt;}
.x78_c00279{left:326.400000pt;}
.x13_c00279{left:327.733333pt;}
.xb_c00279{left:329.333333pt;}
.x6_c00279{left:330.400000pt;}
.x38_c00279{left:334.533333pt;}
.x14_c00279{left:336.400000pt;}
.x92_c00279{left:337.600000pt;}
.x6d_c00279{left:338.533333pt;}
.x68_c00279{left:340.400000pt;}
.x5f_c00279{left:341.333333pt;}
.x24_c00279{left:344.000000pt;}
.x8d_c00279{left:345.066667pt;}
.x45_c00279{left:346.400000pt;}
.x1a_c00279{left:348.800000pt;}
.x79_c00279{left:349.733333pt;}
.x90_c00279{left:350.800000pt;}
.x22_c00279{left:352.533333pt;}
.x69_c00279{left:353.466667pt;}
.x51_c00279{left:354.800000pt;}
.x33_c00279{left:357.600000pt;}
.x25_c00279{left:361.866667pt;}
.x2c_c00279{left:363.466667pt;}
.x96_c00279{left:365.200000pt;}
.x97_c00279{left:367.600000pt;}
.x65_c00279{left:368.933333pt;}
.x8e_c00279{left:370.000000pt;}
.x3e_c00279{left:372.266667pt;}
.x1b_c00279{left:373.733333pt;}
.x7a_c00279{left:375.600000pt;}
.x52_c00279{left:376.933333pt;}
.x89_c00279{left:378.133333pt;}
.x5a_c00279{left:379.733333pt;}
.x55_c00279{left:380.933333pt;}
.x46_c00279{left:382.800000pt;}
.x98_c00279{left:384.266667pt;}
.x94_c00279{left:385.333333pt;}
.x2_c00279{left:386.533333pt;}
.x74_c00279{left:388.266667pt;}
.x82_c00279{left:389.600000pt;}
.x34_c00279{left:391.200000pt;}
.x8f_c00279{left:392.400000pt;}
.x80_c00279{left:394.266667pt;}
.x70_c00279{left:397.466667pt;}
.x49_c00279{left:399.333333pt;}
.x93_c00279{left:400.666667pt;}
.x3f_c00279{left:402.000000pt;}
.xc_c00279{left:404.266667pt;}
.x4e_c00279{left:406.000000pt;}
.x8a_c00279{left:408.533333pt;}
.x5b_c00279{left:410.133333pt;}
.x7_c00279{left:412.933333pt;}
.x91_c00279{left:415.066667pt;}
.x6e_c00279{left:419.866667pt;}
.x60_c00279{left:422.933333pt;}
.x7d_c00279{left:424.533333pt;}
.x2d_c00279{left:428.133333pt;}
.x5c_c00279{left:430.933333pt;}
.x56_c00279{left:432.533333pt;}
.x35_c00279{left:433.466667pt;}
.x26_c00279{left:434.533333pt;}
.x7b_c00279{left:435.466667pt;}
.x66_c00279{left:437.066667pt;}
.x39_c00279{left:438.133333pt;}
.x53_c00279{left:439.066667pt;}
.x1c_c00279{left:440.933333pt;}
.x61_c00279{left:441.866667pt;}
.xd_c00279{left:442.933333pt;}
.x71_c00279{left:453.200000pt;}
.x4a_c00279{left:454.400000pt;}
.x7e_c00279{left:456.533333pt;}
.x2e_c00279{left:460.800000pt;}
.x40_c00279{left:463.733333pt;}
.x8_c00279{left:467.600000pt;}
.xfb_c00279{left:485.733333pt;}
.xf5_c00279{left:486.666667pt;}
.xbe_c00279{left:488.533333pt;}
.x9b_c00279{left:490.266667pt;}
.x12e_c00279{left:492.533333pt;}
.x121_c00279{left:497.200000pt;}
.x11b_c00279{left:498.266667pt;}
.x111_c00279{left:499.733333pt;}
.x10b_c00279{left:500.800000pt;}
.x104_c00279{left:501.733333pt;}
.xe6_c00279{left:502.933333pt;}
.xd0_c00279{left:503.866667pt;}
.xa9_c00279{left:505.200000pt;}
.xc8_c00279{left:513.733333pt;}
.x114_c00279{left:516.266667pt;}
.xf1_c00279{left:517.466667pt;}
.xfc_c00279{left:518.933333pt;}
.xb6_c00279{left:520.266667pt;}
.xa2_c00279{left:522.266667pt;}
.x9c_c00279{left:528.000000pt;}
.xb0_c00279{left:528.933333pt;}
.xa3_c00279{left:532.133333pt;}
.xde_c00279{left:533.200000pt;}
.xd8_c00279{left:534.533333pt;}
.xe7_c00279{left:536.800000pt;}
.xaa_c00279{left:540.400000pt;}
.x105_c00279{left:541.733333pt;}
.xeb_c00279{left:543.866667pt;}
.x116_c00279{left:546.266667pt;}
.xf6_c00279{left:547.200000pt;}
.x124_c00279{left:548.400000pt;}
.xd1_c00279{left:550.533333pt;}
.x11e_c00279{left:552.400000pt;}
.xb7_c00279{left:554.800000pt;}
.xf2_c00279{left:558.133333pt;}
.x9d_c00279{left:561.600000pt;}
.xd9_c00279{left:562.666667pt;}
.xe8_c00279{left:565.333333pt;}
.xa4_c00279{left:567.600000pt;}
.xfa_c00279{left:569.333333pt;}
.xb8_c00279{left:571.733333pt;}
.xfd_c00279{left:572.666667pt;}
.xab_c00279{left:574.266667pt;}
.x107_c00279{left:577.466667pt;}
.xec_c00279{left:578.400000pt;}
.x12a_c00279{left:581.066667pt;}
.xf3_c00279{left:582.800000pt;}
.xfe_c00279{left:585.466667pt;}
.xb9_c00279{left:587.466667pt;}
.xb1_c00279{left:588.800000pt;}
.xff_c00279{left:590.666667pt;}
.xe3_c00279{left:592.400000pt;}
.xd2_c00279{left:594.400000pt;}
.xf7_c00279{left:595.866667pt;}
.xbf_c00279{left:597.333333pt;}
.xed_c00279{left:599.200000pt;}
.xda_c00279{left:601.066667pt;}
.xd3_c00279{left:602.666667pt;}
.xc9_c00279{left:604.266667pt;}
.x12b_c00279{left:605.333333pt;}
.x119_c00279{left:607.066667pt;}
.x127_c00279{left:608.533333pt;}
.xa5_c00279{left:610.133333pt;}
.xf4_c00279{left:612.533333pt;}
.xac_c00279{left:614.933333pt;}
.xca_c00279{left:617.333333pt;}
.x106_c00279{left:618.400000pt;}
.x12c_c00279{left:619.466667pt;}
.xcc_c00279{left:621.600000pt;}
.x10c_c00279{left:622.666667pt;}
.xba_c00279{left:624.000000pt;}
.xa6_c00279{left:625.200000pt;}
.x108_c00279{left:627.333333pt;}
.xdf_c00279{left:629.866667pt;}
.x11c_c00279{left:631.066667pt;}
.x9e_c00279{left:632.266667pt;}
.xb2_c00279{left:633.866667pt;}
.x11f_c00279{left:637.466667pt;}
.x100_c00279{left:638.400000pt;}
.x120_c00279{left:639.600000pt;}
.xd4_c00279{left:640.800000pt;}
.x10d_c00279{left:642.533333pt;}
.x101_c00279{left:644.400000pt;}
.xc0_c00279{left:646.000000pt;}
.xad_c00279{left:647.200000pt;}
.x103_c00279{left:652.800000pt;}
.xc1_c00279{left:654.266667pt;}
.xd5_c00279{left:655.466667pt;}
.xe0_c00279{left:656.400000pt;}
.xcd_c00279{left:659.066667pt;}
.x11a_c00279{left:660.000000pt;}
.xae_c00279{left:662.266667pt;}
.xe4_c00279{left:664.000000pt;}
.xe9_c00279{left:665.466667pt;}
.x125_c00279{left:667.600000pt;}
.x9f_c00279{left:670.666667pt;}
.xb3_c00279{left:674.133333pt;}
.x122_c00279{left:676.133333pt;}
.x11d_c00279{left:677.200000pt;}
.x112_c00279{left:679.600000pt;}
.xa0_c00279{left:684.133333pt;}
.xf8_c00279{left:688.266667pt;}
.xa7_c00279{left:689.466667pt;}
.xaf_c00279{left:690.400000pt;}
.xdb_c00279{left:693.600000pt;}
.x123_c00279{left:695.600000pt;}
.xc2_c00279{left:696.533333pt;}
.xe5_c00279{left:697.866667pt;}
.x117_c00279{left:699.200000pt;}
.xb4_c00279{left:701.333333pt;}
.xc3_c00279{left:703.600000pt;}
.xe1_c00279{left:705.733333pt;}
.x128_c00279{left:706.800000pt;}
.xc4_c00279{left:709.333333pt;}
.x10e_c00279{left:711.333333pt;}
.x109_c00279{left:712.400000pt;}
.xd6_c00279{left:714.933333pt;}
.xee_c00279{left:717.866667pt;}
.xbb_c00279{left:719.333333pt;}
.xe2_c00279{left:721.066667pt;}
.x102_c00279{left:722.266667pt;}
.xea_c00279{left:723.333333pt;}
.xcb_c00279{left:725.200000pt;}
.xc5_c00279{left:726.933333pt;}
.x10f_c00279{left:728.266667pt;}
.x113_c00279{left:733.333333pt;}
.xce_c00279{left:735.866667pt;}
.xa1_c00279{left:739.466667pt;}
.x118_c00279{left:741.066667pt;}
.x115_c00279{left:742.133333pt;}
.xbc_c00279{left:746.533333pt;}
.xdc_c00279{left:748.000000pt;}
.xef_c00279{left:750.533333pt;}
.xc6_c00279{left:751.866667pt;}
.xa8_c00279{left:753.200000pt;}
.xdd_c00279{left:755.333333pt;}
.xf9_c00279{left:757.600000pt;}
.x10a_c00279{left:760.666667pt;}
.xd7_c00279{left:762.666667pt;}
.x129_c00279{left:764.133333pt;}
.x110_c00279{left:765.333333pt;}
.xb5_c00279{left:766.666667pt;}
.x126_c00279{left:768.133333pt;}
.x12d_c00279{left:772.800000pt;}
.xbd_c00279{left:776.266667pt;}
.xc7_c00279{left:777.733333pt;}
.xf0_c00279{left:782.800000pt;}
.xcf_c00279{left:785.733333pt;}
}





/* 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_c00280 {
    display:none;
  }
  .loading-indicator_c00280.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00280 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_c00280 { 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_c00280" -> "#page-container .classname_c00280")
 */
.pf_c00280 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00280 { /* 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_c00280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00280 { /* 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_c00280 { /* 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_c00280 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00280 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00280 {overflow:visible;}
  }
}
.c_c00280 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00280 { /* 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_c00280:after { /* webkit #35443 */
  content: '';
}
.t_c00280:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00280 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 */
}
.__c00280 { /* 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_c00280 { /* info for Javascript */
  display:none;
}
.l_c00280 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00280 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00280 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00280: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_c00280 {
    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_c00280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00280.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_c00280 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00280;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.000000;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;}
.m5e_c00280{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00280{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00280{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00280{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00280{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00280{transform:matrix(0.052000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052000,0.000000,0.000000,0.250000,0,0);}
.me4_c00280{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00280{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m76_c00280{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m71_c00280{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m77_c00280{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00280{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m72_c00280{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m78_c00280{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m108_c00280{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00280{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00280{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m58_c00280{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00280{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00280{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00280{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00280{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00280{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m5_c00280{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00280{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m63_c00280{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00280{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.maa_c00280{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00280{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00280{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m111_c00280{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00280{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m66_c00280{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m47_c00280{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m28_c00280{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m53_c00280{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.md1_c00280{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m26_c00280{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00280{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m61_c00280{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m46_c00280{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m59_c00280{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m56_c00280{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md4_c00280{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me7_c00280{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m93_c00280{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00280{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00280{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mee_c00280{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00280{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mef_c00280{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00280{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00280{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00280{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m57_c00280{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.md6_c00280{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md3_c00280{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb_c00280{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mde_c00280{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.ma_c00280{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00280{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00280{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m29_c00280{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mab_c00280{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m90_c00280{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mba_c00280{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00280{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m75_c00280{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m89_c00280{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m91_c00280{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00280{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.maf_c00280{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m11_c00280{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00280{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m104_c00280{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00280{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m74_c00280{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me9_c00280{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m42_c00280{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md5_c00280{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00280{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m38_c00280{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m10_c00280{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mce_c00280{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m112_c00280{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m99_c00280{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m51_c00280{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00280{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00280{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m34_c00280{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00280{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me8_c00280{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m105_c00280{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00280{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mad_c00280{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00280{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00280{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8_c00280{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m106_c00280{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00280{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m49_c00280{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00280{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md2_c00280{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md8_c00280{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m43_c00280{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00280{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00280{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00280{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m33_c00280{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m69_c00280{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9_c00280{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m96_c00280{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00280{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00280{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m68_c00280{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m55_c00280{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m107_c00280{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m48_c00280{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00280{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00280{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m64_c00280{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00280{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00280{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m27_c00280{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00280{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00280{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m92_c00280{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6_c00280{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m81_c00280{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00280{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00280{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00280{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00280{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mac_c00280{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me3_c00280{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m65_c00280{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00280{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00280{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00280{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m13_c00280{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me6_c00280{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00280{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m84_c00280{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me0_c00280{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m62_c00280{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m85_c00280{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00280{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m22_c00280{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m12_c00280{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m54_c00280{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00280{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00280{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7_c00280{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00280{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00280{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00280{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m60_c00280{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md9_c00280{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me5_c00280{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00280{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00280{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m110_c00280{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m45_c00280{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me1_c00280{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m95_c00280{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me_c00280{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m70_c00280{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md0_c00280{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00280{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m83_c00280{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m98_c00280{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf_c00280{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00280{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00280{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m19_c00280{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00280{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00280{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00280{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00280{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m15_c00280{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m97_c00280{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m94_c00280{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00280{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00280{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m14_c00280{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00280{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00280{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m109_c00280{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.med_c00280{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00280{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00280{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m52_c00280{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00280{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00280{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m67_c00280{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00280{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mae_c00280{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00280{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mc_c00280{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m103_c00280{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00280{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00280{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m21_c00280{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m80_c00280{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.md_c00280{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.meb_c00280{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m16_c00280{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00280{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m87_c00280{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m37_c00280{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m88_c00280{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m40_c00280{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00280{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m50_c00280{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mec_c00280{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m44_c00280{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md7_c00280{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);}
.m32_c00280{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00280{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00280{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00280{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m82_c00280{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00280{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00280{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m41_c00280{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m116_c00280{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.me2_c00280{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m24_c00280{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mca_c00280{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00280{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00280{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00280{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00280{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00280{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m114_c00280{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m23_c00280{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m86_c00280{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00280{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00280{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00280{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00280{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m79_c00280{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c00280{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00280{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00280{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00280{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00280{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mda_c00280{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m35_c00280{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m113_c00280{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00280{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00280{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00280{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m30_c00280{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mea_c00280{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00280{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m25_c00280{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m31_c00280{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00280{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mff_c00280{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00280{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m39_c00280{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.m20_c00280{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00280{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m115_c00280{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00280{transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);}
.m100_c00280{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m102_c00280{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00280{transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m73_c00280{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00280{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00280{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m101_c00280{transform:matrix(0.526750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00280{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls0_c00280{letter-spacing:0.000000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{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__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00280{word-spacing:-5.945946px;}
.ws2_c00280{word-spacing:-4.083558px;}
.ws4_c00280{word-spacing:0.000000px;}
.ws0_c00280{word-spacing:9.535032px;}
.ws1_c00280{word-spacing:29.285714px;}
._1_c00280{width:52.142857px;}
._0_c00280{width:55.714286px;}
.fc0_c00280{color:transparent;}
.fs5_c00280{font-size:24.000000px;}
.fs6_c00280{font-size:36.000000px;}
.fs4_c00280{font-size:42.000000px;}
.fs8_c00280{font-size:48.000000px;}
.fs7_c00280{font-size:54.000000px;}
.fs3_c00280{font-size:60.000000px;}
.fs1_c00280{font-size:66.000000px;}
.fs2_c00280{font-size:72.000000px;}
.fs0_c00280{font-size:96.000000px;}
.y0_c00280{bottom:0.000000px;}
.y66_c00280{bottom:176.700000px;}
.y35_c00280{bottom:189.750000px;}
.y65_c00280{bottom:192.900000px;}
.y34_c00280{bottom:205.200000px;}
.y64_c00280{bottom:207.300000px;}
.y63_c00280{bottom:221.700000px;}
.y62_c00280{bottom:236.100000px;}
.y33_c00280{bottom:247.350000px;}
.y61_c00280{bottom:250.500000px;}
.y60_c00280{bottom:264.600000px;}
.y32_c00280{bottom:265.350000px;}
.y5f_c00280{bottom:279.300000px;}
.y31_c00280{bottom:283.050000px;}
.y30_c00280{bottom:311.100000px;}
.y2f_c00280{bottom:318.600000px;}
.y5e_c00280{bottom:322.050000px;}
.y2e_c00280{bottom:339.450000px;}
.y5d_c00280{bottom:339.750000px;}
.y5c_c00280{bottom:357.750000px;}
.y2d_c00280{bottom:358.200000px;}
.y5b_c00280{bottom:375.450000px;}
.y2c_c00280{bottom:393.150000px;}
.y5a_c00280{bottom:393.450000px;}
.y59_c00280{bottom:411.150000px;}
.y2b_c00280{bottom:415.500000px;}
.y2a_c00280{bottom:433.500000px;}
.y58_c00280{bottom:438.600000px;}
.y57_c00280{bottom:446.850000px;}
.y29_c00280{bottom:451.500000px;}
.y56_c00280{bottom:457.650000px;}
.y55_c00280{bottom:466.350000px;}
.y28_c00280{bottom:469.500000px;}
.y54_c00280{bottom:486.450000px;}
.y27_c00280{bottom:487.050000px;}
.y53_c00280{bottom:494.700000px;}
.y26_c00280{bottom:504.750000px;}
.y52_c00280{bottom:521.100000px;}
.y25_c00280{bottom:523.050000px;}
.y24_c00280{bottom:540.300000px;}
.y51_c00280{bottom:543.750000px;}
.y23_c00280{bottom:558.300000px;}
.y50_c00280{bottom:567.450000px;}
.y22_c00280{bottom:576.300000px;}
.y4f_c00280{bottom:588.300000px;}
.y21_c00280{bottom:594.300000px;}
.y4e_c00280{bottom:610.200000px;}
.y1c_c00280{bottom:619.950000px;}
.y20_c00280{bottom:620.250000px;}
.y1b_c00280{bottom:634.650000px;}
.y4d_c00280{bottom:645.150000px;}
.y1a_c00280{bottom:647.250000px;}
.y1e_c00280{bottom:649.050000px;}
.y19_c00280{bottom:663.150000px;}
.y1f_c00280{bottom:675.300000px;}
.y18_c00280{bottom:676.200000px;}
.y1d_c00280{bottom:677.550000px;}
.y4c_c00280{bottom:679.800000px;}
.y17_c00280{bottom:690.900000px;}
.y4b_c00280{bottom:697.800000px;}
.y16_c00280{bottom:707.100000px;}
.y4a_c00280{bottom:715.500000px;}
.y15_c00280{bottom:725.100000px;}
.y49_c00280{bottom:733.200000px;}
.y14_c00280{bottom:743.400000px;}
.y48_c00280{bottom:750.900000px;}
.y13_c00280{bottom:761.400000px;}
.y47_c00280{bottom:768.900000px;}
.y12_c00280{bottom:779.400000px;}
.y46_c00280{bottom:786.600000px;}
.y11_c00280{bottom:804.600000px;}
.y45_c00280{bottom:822.300000px;}
.y10_c00280{bottom:823.650000px;}
.yf_c00280{bottom:841.650000px;}
.y44_c00280{bottom:852.450000px;}
.ye_c00280{bottom:859.350000px;}
.y43_c00280{bottom:874.650000px;}
.yd_c00280{bottom:879.900000px;}
.y42_c00280{bottom:895.200000px;}
.yc_c00280{bottom:898.950000px;}
.y41_c00280{bottom:910.350000px;}
.y40_c00280{bottom:928.350000px;}
.yb_c00280{bottom:933.150000px;}
.y3f_c00280{bottom:945.600000px;}
.ya_c00280{bottom:955.500000px;}
.y3e_c00280{bottom:963.600000px;}
.y9_c00280{bottom:973.800000px;}
.y3d_c00280{bottom:981.300000px;}
.y8_c00280{bottom:991.500000px;}
.y3c_c00280{bottom:999.000000px;}
.y7_c00280{bottom:1014.150000px;}
.y3b_c00280{bottom:1017.000000px;}
.y3a_c00280{bottom:1035.000000px;}
.y6_c00280{bottom:1035.750000px;}
.y5_c00280{bottom:1053.750000px;}
.y39_c00280{bottom:1055.550000px;}
.y38_c00280{bottom:1075.200000px;}
.y37_c00280{bottom:1093.200000px;}
.y4_c00280{bottom:1093.350000px;}
.y36_c00280{bottom:1110.900000px;}
.y3_c00280{bottom:1111.350000px;}
.y2_c00280{bottom:1136.400000px;}
.y1_c00280{bottom:1137.900000px;}
.h7_c00280{height:24.000000px;}
.h8_c00280{height:36.000000px;}
.h6_c00280{height:42.000000px;}
.ha_c00280{height:48.000000px;}
.h9_c00280{height:54.000000px;}
.h5_c00280{height:60.000000px;}
.h3_c00280{height:66.000000px;}
.h4_c00280{height:72.000000px;}
.h2_c00280{height:96.000000px;}
.h0_c00280{height:1265.760040px;}
.h1_c00280{height:1266.000000px;}
.w1_c00280{width:961.500000px;}
.w0_c00280{width:961.560058px;}
.x0_c00280{left:0.000000px;}
.x89_c00280{left:80.250000px;}
.x5a_c00280{left:81.300000px;}
.x4a_c00280{left:82.500000px;}
.x23_c00280{left:83.850000px;}
.x7d_c00280{left:87.900000px;}
.x60_c00280{left:94.800000px;}
.x81_c00280{left:96.900000px;}
.x4f_c00280{left:98.100000px;}
.x57_c00280{left:100.050000px;}
.x28_c00280{left:101.100000px;}
.x3_c00280{left:102.300000px;}
.xa_c00280{left:104.100000px;}
.x66_c00280{left:110.100000px;}
.x7a_c00280{left:111.150000px;}
.x8d_c00280{left:114.450000px;}
.x76_c00280{left:118.500000px;}
.x20_c00280{left:119.550000px;}
.xd_c00280{left:122.100000px;}
.x8a_c00280{left:123.450000px;}
.x61_c00280{left:124.650000px;}
.x34_c00280{left:126.600000px;}
.x67_c00280{left:131.100000px;}
.x6a_c00280{left:132.150000px;}
.x90_c00280{left:134.850000px;}
.x49_c00280{left:138.450000px;}
.x87_c00280{left:141.000000px;}
.x24_c00280{left:143.250000px;}
.xb_c00280{left:145.800000px;}
.x3c_c00280{left:147.600000px;}
.x82_c00280{left:150.150000px;}
.x33_c00280{left:151.800000px;}
.x1a_c00280{left:153.000000px;}
.x68_c00280{left:155.550000px;}
.x38_c00280{left:159.750000px;}
.x35_c00280{left:162.900000px;}
.x13_c00280{left:164.250000px;}
.x6d_c00280{left:167.100000px;}
.xe_c00280{left:169.200000px;}
.x62_c00280{left:170.400000px;}
.x4_c00280{left:171.450000px;}
.x94_c00280{left:173.400000px;}
.xc_c00280{left:176.400000px;}
.x9c_c00280{left:177.600000px;}
.x8e_c00280{left:180.000000px;}
.x29_c00280{left:181.650000px;}
.x3d_c00280{left:185.100000px;}
.x72_c00280{left:186.150000px;}
.x63_c00280{left:187.350000px;}
.x4b_c00280{left:192.750000px;}
.x75_c00280{left:194.550000px;}
.x21_c00280{left:195.900000px;}
.x1b_c00280{left:197.550000px;}
.x30_c00280{left:200.850000px;}
.x3e_c00280{left:203.850000px;}
.x5b_c00280{left:205.500000px;}
.x25_c00280{left:209.550000px;}
.x44_c00280{left:210.900000px;}
.x77_c00280{left:212.850000px;}
.x54_c00280{left:214.050000px;}
.x88_c00280{left:215.850000px;}
.x96_c00280{left:217.050000px;}
.x2a_c00280{left:218.400000px;}
.x64_c00280{left:221.550000px;}
.x4c_c00280{left:223.650000px;}
.x78_c00280{left:226.200000px;}
.x14_c00280{left:227.550000px;}
.x1c_c00280{left:228.900000px;}
.x97_c00280{left:231.450000px;}
.x39_c00280{left:233.850000px;}
.x7e_c00280{left:235.050000px;}
.x3f_c00280{left:239.550000px;}
.x7b_c00280{left:240.750000px;}
.x5c_c00280{left:244.350000px;}
.x65_c00280{left:246.450000px;}
.x8b_c00280{left:247.650000px;}
.x50_c00280{left:248.850000px;}
.x15_c00280{left:250.200000px;}
.x36_c00280{left:251.400000px;}
.x45_c00280{left:252.600000px;}
.x2b_c00280{left:254.400000px;}
.x91_c00280{left:259.800000px;}
.x86_c00280{left:262.200000px;}
.x5d_c00280{left:263.400000px;}
.x5_c00280{left:265.050000px;}
.x99_c00280{left:266.100000px;}
.x31_c00280{left:268.200000px;}
.x6e_c00280{left:271.200000px;}
.xf_c00280{left:273.300000px;}
.x1d_c00280{left:274.950000px;}
.x95_c00280{left:276.600000px;}
.x2c_c00280{left:278.100000px;}
.x55_c00280{left:279.150000px;}
.x6f_c00280{left:280.500000px;}
.x16_c00280{left:281.850000px;}
.x40_c00280{left:284.550000px;}
.x6_c00280{left:286.350000px;}
.x37_c00280{left:289.950000px;}
.x93_c00280{left:291.150000px;}
.x1e_c00280{left:292.200000px;}
.x32_c00280{left:293.700000px;}
.x8c_c00280{left:296.400000px;}
.x7f_c00280{left:299.850000px;}
.x3a_c00280{left:301.950000px;}
.x7_c00280{left:303.600000px;}
.x4d_c00280{left:305.400000px;}
.x79_c00280{left:307.500000px;}
.x22_c00280{left:308.700000px;}
.x5e_c00280{left:310.950000px;}
.x41_c00280{left:313.650000px;}
.x83_c00280{left:315.750000px;}
.x8f_c00280{left:318.750000px;}
.x51_c00280{left:320.100000px;}
.x71_c00280{left:322.650000px;}
.x1f_c00280{left:324.600000px;}
.x2d_c00280{left:327.000000px;}
.x1_c00280{left:330.150000px;}
.x9a_c00280{left:331.650000px;}
.x10_c00280{left:332.700000px;}
.x58_c00280{left:333.750000px;}
.x84_c00280{left:335.550000px;}
.x26_c00280{left:336.900000px;}
.x5f_c00280{left:337.950000px;}
.x85_c00280{left:340.800000px;}
.x46_c00280{left:342.150000px;}
.x52_c00280{left:344.250000px;}
.x69_c00280{left:345.600000px;}
.x17_c00280{left:346.650000px;}
.x56_c00280{left:348.000000px;}
.x2e_c00280{left:349.650000px;}
.x98_c00280{left:352.800000px;}
.x4e_c00280{left:356.550000px;}
.x70_c00280{left:357.900000px;}
.x27_c00280{left:359.250000px;}
.x7c_c00280{left:362.400000px;}
.x11_c00280{left:364.050000px;}
.x42_c00280{left:366.900000px;}
.x18_c00280{left:368.250000px;}
.x3b_c00280{left:371.100000px;}
.x47_c00280{left:372.750000px;}
.x73_c00280{left:373.800000px;}
.x6c_c00280{left:375.450000px;}
.x8_c00280{left:377.700000px;}
.x59_c00280{left:385.650000px;}
.x2f_c00280{left:387.450000px;}
.x48_c00280{left:389.700000px;}
.x74_c00280{left:391.050000px;}
.x9b_c00280{left:392.100000px;}
.x92_c00280{left:395.250000px;}
.x43_c00280{left:399.600000px;}
.x9_c00280{left:401.400000px;}
.x53_c00280{left:403.650000px;}
.x6b_c00280{left:404.700000px;}
.x80_c00280{left:405.750000px;}
.x19_c00280{left:406.800000px;}
.x12_c00280{left:416.250000px;}
.x111_c00280{left:436.350000px;}
.xe6_c00280{left:440.700000px;}
.xb0_c00280{left:442.500000px;}
.x9d_c00280{left:443.850000px;}
.x109_c00280{left:446.700000px;}
.x126_c00280{left:451.050000px;}
.x117_c00280{left:452.250000px;}
.x114_c00280{left:453.900000px;}
.xec_c00280{left:455.700000px;}
.xfa_c00280{left:456.900000px;}
.xcb_c00280{left:458.100000px;}
.xbd_c00280{left:459.300000px;}
.xa6_c00280{left:460.350000px;}
.x12c_c00280{left:461.700000px;}
.x131_c00280{left:465.150000px;}
.x134_c00280{left:468.000000px;}
.x10e_c00280{left:469.500000px;}
.xe8_c00280{left:470.850000px;}
.x110_c00280{left:472.200000px;}
.x10c_c00280{left:473.250000px;}
.x127_c00280{left:474.450000px;}
.x115_c00280{left:477.000000px;}
.x112_c00280{left:483.150000px;}
.x9e_c00280{left:485.250000px;}
.xfb_c00280{left:487.800000px;}
.xa7_c00280{left:488.850000px;}
.xdd_c00280{left:490.500000px;}
.xc4_c00280{left:491.550000px;}
.xcf_c00280{left:493.350000px;}
.xbe_c00280{left:495.600000px;}
.x122_c00280{left:497.550000px;}
.xe0_c00280{left:499.200000px;}
.xb1_c00280{left:501.600000px;}
.x106_c00280{left:502.650000px;}
.xd4_c00280{left:504.300000px;}
.xac_c00280{left:506.400000px;}
.xe7_c00280{left:508.350000px;}
.xbf_c00280{left:510.300000px;}
.xc5_c00280{left:512.850000px;}
.xf0_c00280{left:515.100000px;}
.xfc_c00280{left:519.450000px;}
.x128_c00280{left:521.250000px;}
.xb2_c00280{left:522.450000px;}
.xad_c00280{left:524.100000px;}
.xe1_c00280{left:525.450000px;}
.xc0_c00280{left:526.500000px;}
.x107_c00280{left:528.450000px;}
.xb7_c00280{left:529.950000px;}
.x10d_c00280{left:532.950000px;}
.xcc_c00280{left:534.300000px;}
.xff_c00280{left:535.800000px;}
.xb3_c00280{left:537.150000px;}
.xe2_c00280{left:543.150000px;}
.xa8_c00280{left:547.200000px;}
.x10f_c00280{left:549.000000px;}
.xe9_c00280{left:550.050000px;}
.x9f_c00280{left:552.600000px;}
.x11d_c00280{left:554.400000px;}
.xf2_c00280{left:555.450000px;}
.x118_c00280{left:556.650000px;}
.x120_c00280{left:558.750000px;}
.xae_c00280{left:563.700000px;}
.xd0_c00280{left:565.350000px;}
.xd9_c00280{left:568.650000px;}
.xb4_c00280{left:572.100000px;}
.xb8_c00280{left:573.450000px;}
.xf3_c00280{left:574.950000px;}
.x133_c00280{left:579.150000px;}
.x100_c00280{left:580.500000px;}
.xf6_c00280{left:581.700000px;}
.xaf_c00280{left:583.200000px;}
.xa0_c00280{left:584.250000px;}
.x135_c00280{left:585.450000px;}
.x104_c00280{left:588.750000px;}
.xda_c00280{left:589.950000px;}
.xc6_c00280{left:591.300000px;}
.xb5_c00280{left:592.950000px;}
.xf1_c00280{left:597.900000px;}
.xed_c00280{left:601.200000px;}
.x108_c00280{left:603.750000px;}
.x129_c00280{left:607.200000px;}
.x101_c00280{left:610.050000px;}
.x113_c00280{left:611.700000px;}
.xb6_c00280{left:613.500000px;}
.x121_c00280{left:614.550000px;}
.xfd_c00280{left:617.700000px;}
.xa9_c00280{left:619.200000px;}
.x12d_c00280{left:620.550000px;}
.xa1_c00280{left:622.800000px;}
.x12f_c00280{left:627.300000px;}
.xde_c00280{left:628.350000px;}
.xd5_c00280{left:631.050000px;}
.xf7_c00280{left:632.100000px;}
.xb9_c00280{left:634.950000px;}
.xe5_c00280{left:639.900000px;}
.xd1_c00280{left:640.950000px;}
.xf4_c00280{left:642.600000px;}
.xea_c00280{left:645.150000px;}
.x132_c00280{left:647.250000px;}
.x130_c00280{left:649.650000px;}
.xd6_c00280{left:652.350000px;}
.x125_c00280{left:653.550000px;}
.xba_c00280{left:655.800000px;}
.x11e_c00280{left:656.850000px;}
.xcd_c00280{left:658.500000px;}
.x12e_c00280{left:660.900000px;}
.xc7_c00280{left:661.950000px;}
.xa2_c00280{left:663.150000px;}
.xaa_c00280{left:664.950000px;}
.x105_c00280{left:667.200000px;}
.x12a_c00280{left:669.450000px;}
.xdb_c00280{left:670.950000px;}
.xc1_c00280{left:673.350000px;}
.xa3_c00280{left:675.450000px;}
.x11b_c00280{left:677.850000px;}
.x136_c00280{left:680.850000px;}
.xc8_c00280{left:682.800000px;}
.xdf_c00280{left:686.400000px;}
.xbb_c00280{left:687.900000px;}
.x119_c00280{left:693.750000px;}
.x11c_c00280{left:694.800000px;}
.xee_c00280{left:697.650000px;}
.x12b_c00280{left:700.350000px;}
.xc2_c00280{left:703.950000px;}
.x10a_c00280{left:706.200000px;}
.x102_c00280{left:707.550000px;}
.xc9_c00280{left:709.050000px;}
.xf8_c00280{left:712.050000px;}
.x123_c00280{left:713.400000px;}
.x11a_c00280{left:715.650000px;}
.xd7_c00280{left:717.150000px;}
.xbc_c00280{left:718.200000px;}
.x116_c00280{left:719.550000px;}
.xdc_c00280{left:723.150000px;}
.xe3_c00280{left:725.250000px;}
.x124_c00280{left:726.750000px;}
.xf9_c00280{left:727.950000px;}
.xd2_c00280{left:729.450000px;}
.xca_c00280{left:731.400000px;}
.x11f_c00280{left:733.800000px;}
.xf5_c00280{left:735.150000px;}
.xa4_c00280{left:736.950000px;}
.xce_c00280{left:740.250000px;}
.x10b_c00280{left:744.300000px;}
.xe4_c00280{left:745.800000px;}
.x103_c00280{left:748.950000px;}
.xd8_c00280{left:751.050000px;}
.x2_c00280{left:752.400000px;}
.xd3_c00280{left:754.950000px;}
.xef_c00280{left:757.050000px;}
.xfe_c00280{left:758.550000px;}
.xc3_c00280{left:761.850000px;}
.xab_c00280{left:766.050000px;}
.xeb_c00280{left:770.400000px;}
.xa5_c00280{left:775.050000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ws3_c00280{word-spacing:-5.285285pt;}
.ws2_c00280{word-spacing:-3.629829pt;}
.ws4_c00280{word-spacing:0.000000pt;}
.ws0_c00280{word-spacing:8.475584pt;}
.ws1_c00280{word-spacing:26.031746pt;}
._1_c00280{width:46.349206pt;}
._0_c00280{width:49.523810pt;}
.fs5_c00280{font-size:21.333333pt;}
.fs6_c00280{font-size:32.000000pt;}
.fs4_c00280{font-size:37.333333pt;}
.fs8_c00280{font-size:42.666667pt;}
.fs7_c00280{font-size:48.000000pt;}
.fs3_c00280{font-size:53.333333pt;}
.fs1_c00280{font-size:58.666667pt;}
.fs2_c00280{font-size:64.000000pt;}
.fs0_c00280{font-size:85.333333pt;}
.y0_c00280{bottom:0.000000pt;}
.y66_c00280{bottom:157.066667pt;}
.y35_c00280{bottom:168.666667pt;}
.y65_c00280{bottom:171.466667pt;}
.y34_c00280{bottom:182.400000pt;}
.y64_c00280{bottom:184.266667pt;}
.y63_c00280{bottom:197.066667pt;}
.y62_c00280{bottom:209.866667pt;}
.y33_c00280{bottom:219.866667pt;}
.y61_c00280{bottom:222.666667pt;}
.y60_c00280{bottom:235.200000pt;}
.y32_c00280{bottom:235.866667pt;}
.y5f_c00280{bottom:248.266667pt;}
.y31_c00280{bottom:251.600000pt;}
.y30_c00280{bottom:276.533333pt;}
.y2f_c00280{bottom:283.200000pt;}
.y5e_c00280{bottom:286.266667pt;}
.y2e_c00280{bottom:301.733333pt;}
.y5d_c00280{bottom:302.000000pt;}
.y5c_c00280{bottom:318.000000pt;}
.y2d_c00280{bottom:318.400000pt;}
.y5b_c00280{bottom:333.733333pt;}
.y2c_c00280{bottom:349.466667pt;}
.y5a_c00280{bottom:349.733333pt;}
.y59_c00280{bottom:365.466667pt;}
.y2b_c00280{bottom:369.333333pt;}
.y2a_c00280{bottom:385.333333pt;}
.y58_c00280{bottom:389.866667pt;}
.y57_c00280{bottom:397.200000pt;}
.y29_c00280{bottom:401.333333pt;}
.y56_c00280{bottom:406.800000pt;}
.y55_c00280{bottom:414.533333pt;}
.y28_c00280{bottom:417.333333pt;}
.y54_c00280{bottom:432.400000pt;}
.y27_c00280{bottom:432.933333pt;}
.y53_c00280{bottom:439.733333pt;}
.y26_c00280{bottom:448.666667pt;}
.y52_c00280{bottom:463.200000pt;}
.y25_c00280{bottom:464.933333pt;}
.y24_c00280{bottom:480.266667pt;}
.y51_c00280{bottom:483.333333pt;}
.y23_c00280{bottom:496.266667pt;}
.y50_c00280{bottom:504.400000pt;}
.y22_c00280{bottom:512.266667pt;}
.y4f_c00280{bottom:522.933333pt;}
.y21_c00280{bottom:528.266667pt;}
.y4e_c00280{bottom:542.400000pt;}
.y1c_c00280{bottom:551.066667pt;}
.y20_c00280{bottom:551.333333pt;}
.y1b_c00280{bottom:564.133333pt;}
.y4d_c00280{bottom:573.466667pt;}
.y1a_c00280{bottom:575.333333pt;}
.y1e_c00280{bottom:576.933333pt;}
.y19_c00280{bottom:589.466667pt;}
.y1f_c00280{bottom:600.266667pt;}
.y18_c00280{bottom:601.066667pt;}
.y1d_c00280{bottom:602.266667pt;}
.y4c_c00280{bottom:604.266667pt;}
.y17_c00280{bottom:614.133333pt;}
.y4b_c00280{bottom:620.266667pt;}
.y16_c00280{bottom:628.533333pt;}
.y4a_c00280{bottom:636.000000pt;}
.y15_c00280{bottom:644.533333pt;}
.y49_c00280{bottom:651.733333pt;}
.y14_c00280{bottom:660.800000pt;}
.y48_c00280{bottom:667.466667pt;}
.y13_c00280{bottom:676.800000pt;}
.y47_c00280{bottom:683.466667pt;}
.y12_c00280{bottom:692.800000pt;}
.y46_c00280{bottom:699.200000pt;}
.y11_c00280{bottom:715.200000pt;}
.y45_c00280{bottom:730.933333pt;}
.y10_c00280{bottom:732.133333pt;}
.yf_c00280{bottom:748.133333pt;}
.y44_c00280{bottom:757.733333pt;}
.ye_c00280{bottom:763.866667pt;}
.y43_c00280{bottom:777.466667pt;}
.yd_c00280{bottom:782.133333pt;}
.y42_c00280{bottom:795.733333pt;}
.yc_c00280{bottom:799.066667pt;}
.y41_c00280{bottom:809.200000pt;}
.y40_c00280{bottom:825.200000pt;}
.yb_c00280{bottom:829.466667pt;}
.y3f_c00280{bottom:840.533333pt;}
.ya_c00280{bottom:849.333333pt;}
.y3e_c00280{bottom:856.533333pt;}
.y9_c00280{bottom:865.600000pt;}
.y3d_c00280{bottom:872.266667pt;}
.y8_c00280{bottom:881.333333pt;}
.y3c_c00280{bottom:888.000000pt;}
.y7_c00280{bottom:901.466667pt;}
.y3b_c00280{bottom:904.000000pt;}
.y3a_c00280{bottom:920.000000pt;}
.y6_c00280{bottom:920.666667pt;}
.y5_c00280{bottom:936.666667pt;}
.y39_c00280{bottom:938.266667pt;}
.y38_c00280{bottom:955.733333pt;}
.y37_c00280{bottom:971.733333pt;}
.y4_c00280{bottom:971.866667pt;}
.y36_c00280{bottom:987.466667pt;}
.y3_c00280{bottom:987.866667pt;}
.y2_c00280{bottom:1010.133333pt;}
.y1_c00280{bottom:1011.466667pt;}
.h7_c00280{height:21.333333pt;}
.h8_c00280{height:32.000000pt;}
.h6_c00280{height:37.333333pt;}
.ha_c00280{height:42.666667pt;}
.h9_c00280{height:48.000000pt;}
.h5_c00280{height:53.333333pt;}
.h3_c00280{height:58.666667pt;}
.h4_c00280{height:64.000000pt;}
.h2_c00280{height:85.333333pt;}
.h0_c00280{height:1125.120036pt;}
.h1_c00280{height:1125.333333pt;}
.w1_c00280{width:854.666667pt;}
.w0_c00280{width:854.720052pt;}
.x0_c00280{left:0.000000pt;}
.x89_c00280{left:71.333333pt;}
.x5a_c00280{left:72.266667pt;}
.x4a_c00280{left:73.333333pt;}
.x23_c00280{left:74.533333pt;}
.x7d_c00280{left:78.133333pt;}
.x60_c00280{left:84.266667pt;}
.x81_c00280{left:86.133333pt;}
.x4f_c00280{left:87.200000pt;}
.x57_c00280{left:88.933333pt;}
.x28_c00280{left:89.866667pt;}
.x3_c00280{left:90.933333pt;}
.xa_c00280{left:92.533333pt;}
.x66_c00280{left:97.866667pt;}
.x7a_c00280{left:98.800000pt;}
.x8d_c00280{left:101.733333pt;}
.x76_c00280{left:105.333333pt;}
.x20_c00280{left:106.266667pt;}
.xd_c00280{left:108.533333pt;}
.x8a_c00280{left:109.733333pt;}
.x61_c00280{left:110.800000pt;}
.x34_c00280{left:112.533333pt;}
.x67_c00280{left:116.533333pt;}
.x6a_c00280{left:117.466667pt;}
.x90_c00280{left:119.866667pt;}
.x49_c00280{left:123.066667pt;}
.x87_c00280{left:125.333333pt;}
.x24_c00280{left:127.333333pt;}
.xb_c00280{left:129.600000pt;}
.x3c_c00280{left:131.200000pt;}
.x82_c00280{left:133.466667pt;}
.x33_c00280{left:134.933333pt;}
.x1a_c00280{left:136.000000pt;}
.x68_c00280{left:138.266667pt;}
.x38_c00280{left:142.000000pt;}
.x35_c00280{left:144.800000pt;}
.x13_c00280{left:146.000000pt;}
.x6d_c00280{left:148.533333pt;}
.xe_c00280{left:150.400000pt;}
.x62_c00280{left:151.466667pt;}
.x4_c00280{left:152.400000pt;}
.x94_c00280{left:154.133333pt;}
.xc_c00280{left:156.800000pt;}
.x9c_c00280{left:157.866667pt;}
.x8e_c00280{left:160.000000pt;}
.x29_c00280{left:161.466667pt;}
.x3d_c00280{left:164.533333pt;}
.x72_c00280{left:165.466667pt;}
.x63_c00280{left:166.533333pt;}
.x4b_c00280{left:171.333333pt;}
.x75_c00280{left:172.933333pt;}
.x21_c00280{left:174.133333pt;}
.x1b_c00280{left:175.600000pt;}
.x30_c00280{left:178.533333pt;}
.x3e_c00280{left:181.200000pt;}
.x5b_c00280{left:182.666667pt;}
.x25_c00280{left:186.266667pt;}
.x44_c00280{left:187.466667pt;}
.x77_c00280{left:189.200000pt;}
.x54_c00280{left:190.266667pt;}
.x88_c00280{left:191.866667pt;}
.x96_c00280{left:192.933333pt;}
.x2a_c00280{left:194.133333pt;}
.x64_c00280{left:196.933333pt;}
.x4c_c00280{left:198.800000pt;}
.x78_c00280{left:201.066667pt;}
.x14_c00280{left:202.266667pt;}
.x1c_c00280{left:203.466667pt;}
.x97_c00280{left:205.733333pt;}
.x39_c00280{left:207.866667pt;}
.x7e_c00280{left:208.933333pt;}
.x3f_c00280{left:212.933333pt;}
.x7b_c00280{left:214.000000pt;}
.x5c_c00280{left:217.200000pt;}
.x65_c00280{left:219.066667pt;}
.x8b_c00280{left:220.133333pt;}
.x50_c00280{left:221.200000pt;}
.x15_c00280{left:222.400000pt;}
.x36_c00280{left:223.466667pt;}
.x45_c00280{left:224.533333pt;}
.x2b_c00280{left:226.133333pt;}
.x91_c00280{left:230.933333pt;}
.x86_c00280{left:233.066667pt;}
.x5d_c00280{left:234.133333pt;}
.x5_c00280{left:235.600000pt;}
.x99_c00280{left:236.533333pt;}
.x31_c00280{left:238.400000pt;}
.x6e_c00280{left:241.066667pt;}
.xf_c00280{left:242.933333pt;}
.x1d_c00280{left:244.400000pt;}
.x95_c00280{left:245.866667pt;}
.x2c_c00280{left:247.200000pt;}
.x55_c00280{left:248.133333pt;}
.x6f_c00280{left:249.333333pt;}
.x16_c00280{left:250.533333pt;}
.x40_c00280{left:252.933333pt;}
.x6_c00280{left:254.533333pt;}
.x37_c00280{left:257.733333pt;}
.x93_c00280{left:258.800000pt;}
.x1e_c00280{left:259.733333pt;}
.x32_c00280{left:261.066667pt;}
.x8c_c00280{left:263.466667pt;}
.x7f_c00280{left:266.533333pt;}
.x3a_c00280{left:268.400000pt;}
.x7_c00280{left:269.866667pt;}
.x4d_c00280{left:271.466667pt;}
.x79_c00280{left:273.333333pt;}
.x22_c00280{left:274.400000pt;}
.x5e_c00280{left:276.400000pt;}
.x41_c00280{left:278.800000pt;}
.x83_c00280{left:280.666667pt;}
.x8f_c00280{left:283.333333pt;}
.x51_c00280{left:284.533333pt;}
.x71_c00280{left:286.800000pt;}
.x1f_c00280{left:288.533333pt;}
.x2d_c00280{left:290.666667pt;}
.x1_c00280{left:293.466667pt;}
.x9a_c00280{left:294.800000pt;}
.x10_c00280{left:295.733333pt;}
.x58_c00280{left:296.666667pt;}
.x84_c00280{left:298.266667pt;}
.x26_c00280{left:299.466667pt;}
.x5f_c00280{left:300.400000pt;}
.x85_c00280{left:302.933333pt;}
.x46_c00280{left:304.133333pt;}
.x52_c00280{left:306.000000pt;}
.x69_c00280{left:307.200000pt;}
.x17_c00280{left:308.133333pt;}
.x56_c00280{left:309.333333pt;}
.x2e_c00280{left:310.800000pt;}
.x98_c00280{left:313.600000pt;}
.x4e_c00280{left:316.933333pt;}
.x70_c00280{left:318.133333pt;}
.x27_c00280{left:319.333333pt;}
.x7c_c00280{left:322.133333pt;}
.x11_c00280{left:323.600000pt;}
.x42_c00280{left:326.133333pt;}
.x18_c00280{left:327.333333pt;}
.x3b_c00280{left:329.866667pt;}
.x47_c00280{left:331.333333pt;}
.x73_c00280{left:332.266667pt;}
.x6c_c00280{left:333.733333pt;}
.x8_c00280{left:335.733333pt;}
.x59_c00280{left:342.800000pt;}
.x2f_c00280{left:344.400000pt;}
.x48_c00280{left:346.400000pt;}
.x74_c00280{left:347.600000pt;}
.x9b_c00280{left:348.533333pt;}
.x92_c00280{left:351.333333pt;}
.x43_c00280{left:355.200000pt;}
.x9_c00280{left:356.800000pt;}
.x53_c00280{left:358.800000pt;}
.x6b_c00280{left:359.733333pt;}
.x80_c00280{left:360.666667pt;}
.x19_c00280{left:361.600000pt;}
.x12_c00280{left:370.000000pt;}
.x111_c00280{left:387.866667pt;}
.xe6_c00280{left:391.733333pt;}
.xb0_c00280{left:393.333333pt;}
.x9d_c00280{left:394.533333pt;}
.x109_c00280{left:397.066667pt;}
.x126_c00280{left:400.933333pt;}
.x117_c00280{left:402.000000pt;}
.x114_c00280{left:403.466667pt;}
.xec_c00280{left:405.066667pt;}
.xfa_c00280{left:406.133333pt;}
.xcb_c00280{left:407.200000pt;}
.xbd_c00280{left:408.266667pt;}
.xa6_c00280{left:409.200000pt;}
.x12c_c00280{left:410.400000pt;}
.x131_c00280{left:413.466667pt;}
.x134_c00280{left:416.000000pt;}
.x10e_c00280{left:417.333333pt;}
.xe8_c00280{left:418.533333pt;}
.x110_c00280{left:419.733333pt;}
.x10c_c00280{left:420.666667pt;}
.x127_c00280{left:421.733333pt;}
.x115_c00280{left:424.000000pt;}
.x112_c00280{left:429.466667pt;}
.x9e_c00280{left:431.333333pt;}
.xfb_c00280{left:433.600000pt;}
.xa7_c00280{left:434.533333pt;}
.xdd_c00280{left:436.000000pt;}
.xc4_c00280{left:436.933333pt;}
.xcf_c00280{left:438.533333pt;}
.xbe_c00280{left:440.533333pt;}
.x122_c00280{left:442.266667pt;}
.xe0_c00280{left:443.733333pt;}
.xb1_c00280{left:445.866667pt;}
.x106_c00280{left:446.800000pt;}
.xd4_c00280{left:448.266667pt;}
.xac_c00280{left:450.133333pt;}
.xe7_c00280{left:451.866667pt;}
.xbf_c00280{left:453.600000pt;}
.xc5_c00280{left:455.866667pt;}
.xf0_c00280{left:457.866667pt;}
.xfc_c00280{left:461.733333pt;}
.x128_c00280{left:463.333333pt;}
.xb2_c00280{left:464.400000pt;}
.xad_c00280{left:465.866667pt;}
.xe1_c00280{left:467.066667pt;}
.xc0_c00280{left:468.000000pt;}
.x107_c00280{left:469.733333pt;}
.xb7_c00280{left:471.066667pt;}
.x10d_c00280{left:473.733333pt;}
.xcc_c00280{left:474.933333pt;}
.xff_c00280{left:476.266667pt;}
.xb3_c00280{left:477.466667pt;}
.xe2_c00280{left:482.800000pt;}
.xa8_c00280{left:486.400000pt;}
.x10f_c00280{left:488.000000pt;}
.xe9_c00280{left:488.933333pt;}
.x9f_c00280{left:491.200000pt;}
.x11d_c00280{left:492.800000pt;}
.xf2_c00280{left:493.733333pt;}
.x118_c00280{left:494.800000pt;}
.x120_c00280{left:496.666667pt;}
.xae_c00280{left:501.066667pt;}
.xd0_c00280{left:502.533333pt;}
.xd9_c00280{left:505.466667pt;}
.xb4_c00280{left:508.533333pt;}
.xb8_c00280{left:509.733333pt;}
.xf3_c00280{left:511.066667pt;}
.x133_c00280{left:514.800000pt;}
.x100_c00280{left:516.000000pt;}
.xf6_c00280{left:517.066667pt;}
.xaf_c00280{left:518.400000pt;}
.xa0_c00280{left:519.333333pt;}
.x135_c00280{left:520.400000pt;}
.x104_c00280{left:523.333333pt;}
.xda_c00280{left:524.400000pt;}
.xc6_c00280{left:525.600000pt;}
.xb5_c00280{left:527.066667pt;}
.xf1_c00280{left:531.466667pt;}
.xed_c00280{left:534.400000pt;}
.x108_c00280{left:536.666667pt;}
.x129_c00280{left:539.733333pt;}
.x101_c00280{left:542.266667pt;}
.x113_c00280{left:543.733333pt;}
.xb6_c00280{left:545.333333pt;}
.x121_c00280{left:546.266667pt;}
.xfd_c00280{left:549.066667pt;}
.xa9_c00280{left:550.400000pt;}
.x12d_c00280{left:551.600000pt;}
.xa1_c00280{left:553.600000pt;}
.x12f_c00280{left:557.600000pt;}
.xde_c00280{left:558.533333pt;}
.xd5_c00280{left:560.933333pt;}
.xf7_c00280{left:561.866667pt;}
.xb9_c00280{left:564.400000pt;}
.xe5_c00280{left:568.800000pt;}
.xd1_c00280{left:569.733333pt;}
.xf4_c00280{left:571.200000pt;}
.xea_c00280{left:573.466667pt;}
.x132_c00280{left:575.333333pt;}
.x130_c00280{left:577.466667pt;}
.xd6_c00280{left:579.866667pt;}
.x125_c00280{left:580.933333pt;}
.xba_c00280{left:582.933333pt;}
.x11e_c00280{left:583.866667pt;}
.xcd_c00280{left:585.333333pt;}
.x12e_c00280{left:587.466667pt;}
.xc7_c00280{left:588.400000pt;}
.xa2_c00280{left:589.466667pt;}
.xaa_c00280{left:591.066667pt;}
.x105_c00280{left:593.066667pt;}
.x12a_c00280{left:595.066667pt;}
.xdb_c00280{left:596.400000pt;}
.xc1_c00280{left:598.533333pt;}
.xa3_c00280{left:600.400000pt;}
.x11b_c00280{left:602.533333pt;}
.x136_c00280{left:605.200000pt;}
.xc8_c00280{left:606.933333pt;}
.xdf_c00280{left:610.133333pt;}
.xbb_c00280{left:611.466667pt;}
.x119_c00280{left:616.666667pt;}
.x11c_c00280{left:617.600000pt;}
.xee_c00280{left:620.133333pt;}
.x12b_c00280{left:622.533333pt;}
.xc2_c00280{left:625.733333pt;}
.x10a_c00280{left:627.733333pt;}
.x102_c00280{left:628.933333pt;}
.xc9_c00280{left:630.266667pt;}
.xf8_c00280{left:632.933333pt;}
.x123_c00280{left:634.133333pt;}
.x11a_c00280{left:636.133333pt;}
.xd7_c00280{left:637.466667pt;}
.xbc_c00280{left:638.400000pt;}
.x116_c00280{left:639.600000pt;}
.xdc_c00280{left:642.800000pt;}
.xe3_c00280{left:644.666667pt;}
.x124_c00280{left:646.000000pt;}
.xf9_c00280{left:647.066667pt;}
.xd2_c00280{left:648.400000pt;}
.xca_c00280{left:650.133333pt;}
.x11f_c00280{left:652.266667pt;}
.xf5_c00280{left:653.466667pt;}
.xa4_c00280{left:655.066667pt;}
.xce_c00280{left:658.000000pt;}
.x10b_c00280{left:661.600000pt;}
.xe4_c00280{left:662.933333pt;}
.x103_c00280{left:665.733333pt;}
.xd8_c00280{left:667.600000pt;}
.x2_c00280{left:668.800000pt;}
.xd3_c00280{left:671.066667pt;}
.xef_c00280{left:672.933333pt;}
.xfe_c00280{left:674.266667pt;}
.xc3_c00280{left:677.200000pt;}
.xab_c00280{left:680.933333pt;}
.xeb_c00280{left:684.800000pt;}
.xa5_c00280{left:688.933333pt;}
}





/* 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_c00281 {
    display:none;
  }
  .loading-indicator_c00281.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00281 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_c00281 { 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_c00281" -> "#page-container .classname_c00281")
 */
.pf_c00281 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00281 { /* 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_c00281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00281 { /* 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_c00281 { /* 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_c00281 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00281 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00281 {overflow:visible;}
  }
}
.c_c00281 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00281 { /* 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_c00281:after { /* webkit #35443 */
  content: '';
}
.t_c00281:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00281 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 */
}
.__c00281 { /* 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_c00281 { /* info for Javascript */
  display:none;
}
.l_c00281 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00281 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00281 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00281: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_c00281 {
    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_c00281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00281.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_c00281 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00281;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.000000;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;}
.mb3_c00281{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00281{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00281{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.maf_c00281{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00281{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m55_c00281{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m76_c00281{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00281{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7_c00281{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m61_c00281{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m51_c00281{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m115_c00281{transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);}
.md8_c00281{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m84_c00281{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00281{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m4_c00281{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md7_c00281{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m107_c00281{transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00281{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00281{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.md2_c00281{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m108_c00281{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.md4_c00281{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00281{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00281{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00281{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m100_c00281{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m93_c00281{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mba_c00281{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me4_c00281{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00281{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m102_c00281{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00281{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m40_c00281{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00281{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m113_c00281{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m99_c00281{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00281{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00281{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.md5_c00281{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m77_c00281{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m69_c00281{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md3_c00281{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m78_c00281{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00281{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m104_c00281{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00281{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00281{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m30_c00281{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m57_c00281{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m109_c00281{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00281{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m3_c00281{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00281{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00281{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m21_c00281{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m114_c00281{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m5_c00281{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00281{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00281{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00281{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.md_c00281{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m75_c00281{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00281{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00281{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m90_c00281{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m94_c00281{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m64_c00281{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m14_c00281{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mad_c00281{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00281{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00281{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.meb_c00281{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00281{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m27_c00281{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m79_c00281{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mee_c00281{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00281{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00281{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00281{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m116_c00281{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00281{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m8_c00281{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m81_c00281{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00281{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m98_c00281{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00281{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m70_c00281{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00281{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m117_c00281{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m96_c00281{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00281{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mf_c00281{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m26_c00281{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00281{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6_c00281{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m42_c00281{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00281{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.me_c00281{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10_c00281{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m65_c00281{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m48_c00281{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m74_c00281{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00281{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00281{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00281{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mce_c00281{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m92_c00281{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00281{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m56_c00281{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00281{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00281{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m52_c00281{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00281{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m17_c00281{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00281{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2_c00281{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00281{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mea_c00281{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m12_c00281{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m111_c00281{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m18_c00281{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00281{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m82_c00281{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00281{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m37_c00281{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00281{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m28_c00281{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m67_c00281{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00281{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00281{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00281{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00281{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.me8_c00281{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m95_c00281{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00281{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00281{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me1_c00281{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00281{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00281{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m97_c00281{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m85_c00281{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m15_c00281{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00281{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mef_c00281{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m41_c00281{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me2_c00281{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m44_c00281{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00281{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.ma_c00281{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me9_c00281{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m20_c00281{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00281{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m22_c00281{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m11_c00281{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00281{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mff_c00281{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc_c00281{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m71_c00281{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m33_c00281{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00281{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00281{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00281{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00281{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m66_c00281{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00281{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00281{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m38_c00281{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m89_c00281{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m43_c00281{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m91_c00281{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m49_c00281{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m24_c00281{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00281{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m73_c00281{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m31_c00281{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m29_c00281{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m39_c00281{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00281{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m36_c00281{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00281{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00281{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00281{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m59_c00281{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00281{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00281{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m19_c00281{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00281{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m72_c00281{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m112_c00281{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00281{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00281{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m13_c00281{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me5_c00281{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m118_c00281{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m45_c00281{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.maa_c00281{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me0_c00281{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m54_c00281{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00281{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m9_c00281{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00281{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.med_c00281{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m88_c00281{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mec_c00281{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m16_c00281{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00281{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00281{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00281{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m34_c00281{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m47_c00281{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00281{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md6_c00281{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m87_c00281{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00281{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mac_c00281{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me3_c00281{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m32_c00281{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mab_c00281{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00281{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00281{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md1_c00281{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00281{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00281{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m80_c00281{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m23_c00281{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00281{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00281{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00281{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00281{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00281{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m63_c00281{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m68_c00281{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m46_c00281{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00281{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00281{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m110_c00281{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mae_c00281{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);}
.m1a_c00281{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00281{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md0_c00281{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m60_c00281{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m86_c00281{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00281{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00281{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m25_c00281{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m50_c00281{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00281{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m83_c00281{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.me6_c00281{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00281{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00281{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m53_c00281{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m62_c00281{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.md9_c00281{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00281{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mb_c00281{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00281{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00281{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00281{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me7_c00281{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mda_c00281{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00281{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00281{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mca_c00281{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00281{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m35_c00281{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00281{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m58_c00281{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00281{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00281{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m103_c00281{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m106_c00281{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m105_c00281{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m101_c00281{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00281{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.mde_c00281{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00281{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00281{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls0_c00281{letter-spacing:0.000000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{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__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00281{word-spacing:-17.380952px;}
.ws2_c00281{word-spacing:-0.957447px;}
.ws3_c00281{word-spacing:0.000000px;}
.ws1_c00281{word-spacing:6.125000px;}
.fc0_c00281{color:transparent;}
.fs5_c00281{font-size:30.000000px;}
.fs4_c00281{font-size:54.000000px;}
.fs2_c00281{font-size:60.000000px;}
.fs3_c00281{font-size:66.000000px;}
.fs0_c00281{font-size:72.000000px;}
.fs1_c00281{font-size:102.000000px;}
.y0_c00281{bottom:0.000000px;}
.y33_c00281{bottom:184.950000px;}
.y68_c00281{bottom:186.450000px;}
.y31_c00281{bottom:193.350000px;}
.y67_c00281{bottom:199.800000px;}
.y32_c00281{bottom:200.100000px;}
.y66_c00281{bottom:216.300000px;}
.y65_c00281{bottom:234.450000px;}
.y30_c00281{bottom:252.000000px;}
.y64_c00281{bottom:252.750000px;}
.y2f_c00281{bottom:269.700000px;}
.y63_c00281{bottom:272.850000px;}
.y62_c00281{bottom:292.350000px;}
.y2e_c00281{bottom:300.000000px;}
.y61_c00281{bottom:310.350000px;}
.y2d_c00281{bottom:318.300000px;}
.y60_c00281{bottom:328.350000px;}
.y2c_c00281{bottom:335.400000px;}
.y5f_c00281{bottom:346.050000px;}
.y2b_c00281{bottom:353.100000px;}
.y5e_c00281{bottom:367.950000px;}
.y2a_c00281{bottom:371.100000px;}
.y29_c00281{bottom:389.100000px;}
.y5d_c00281{bottom:389.850000px;}
.y5c_c00281{bottom:407.850000px;}
.y28_c00281{bottom:419.400000px;}
.y5b_c00281{bottom:430.200000px;}
.y27_c00281{bottom:437.700000px;}
.y5a_c00281{bottom:448.200000px;}
.y26_c00281{bottom:460.350000px;}
.y59_c00281{bottom:466.200000px;}
.y25_c00281{bottom:478.050000px;}
.y58_c00281{bottom:484.200000px;}
.y57_c00281{bottom:501.900000px;}
.y24_c00281{bottom:505.050000px;}
.y56_c00281{bottom:519.600000px;}
.y23_c00281{bottom:522.750000px;}
.y55_c00281{bottom:537.900000px;}
.y22_c00281{bottom:540.750000px;}
.y54_c00281{bottom:559.650000px;}
.y21_c00281{bottom:562.200000px;}
.y53_c00281{bottom:577.350000px;}
.y20_c00281{bottom:580.200000px;}
.y52_c00281{bottom:595.350000px;}
.y1f_c00281{bottom:597.900000px;}
.y51_c00281{bottom:613.650000px;}
.y1e_c00281{bottom:615.600000px;}
.y50_c00281{bottom:631.350000px;}
.y1d_c00281{bottom:633.600000px;}
.y4f_c00281{bottom:649.050000px;}
.y1c_c00281{bottom:651.600000px;}
.y4e_c00281{bottom:667.050000px;}
.y1b_c00281{bottom:669.300000px;}
.y4d_c00281{bottom:685.050000px;}
.y1a_c00281{bottom:687.300000px;}
.y4c_c00281{bottom:703.050000px;}
.y19_c00281{bottom:705.300000px;}
.y4b_c00281{bottom:721.050000px;}
.y18_c00281{bottom:727.200000px;}
.y4a_c00281{bottom:741.900000px;}
.y17_c00281{bottom:749.550000px;}
.y49_c00281{bottom:756.300000px;}
.y16_c00281{bottom:767.550000px;}
.y48_c00281{bottom:770.100000px;}
.y47_c00281{bottom:784.050000px;}
.y15_c00281{bottom:789.600000px;}
.y46_c00281{bottom:799.500000px;}
.y14_c00281{bottom:807.900000px;}
.y45_c00281{bottom:812.700000px;}
.y13_c00281{bottom:825.900000px;}
.y44_c00281{bottom:826.800000px;}
.y43_c00281{bottom:842.700000px;}
.y12_c00281{bottom:843.300000px;}
.y11_c00281{bottom:861.000000px;}
.y42_c00281{bottom:866.400000px;}
.y41_c00281{bottom:871.500000px;}
.y10_c00281{bottom:879.000000px;}
.y40_c00281{bottom:884.850000px;}
.yf_c00281{bottom:896.700000px;}
.y3f_c00281{bottom:900.750000px;}
.ye_c00281{bottom:914.700000px;}
.y3e_c00281{bottom:919.350000px;}
.yd_c00281{bottom:932.400000px;}
.y3d_c00281{bottom:937.050000px;}
.yc_c00281{bottom:950.400000px;}
.y3c_c00281{bottom:959.700000px;}
.yb_c00281{bottom:968.100000px;}
.y3b_c00281{bottom:977.700000px;}
.ya_c00281{bottom:989.100000px;}
.y3a_c00281{bottom:995.400000px;}
.y9_c00281{bottom:1007.100000px;}
.y39_c00281{bottom:1013.400000px;}
.y8_c00281{bottom:1025.100000px;}
.y38_c00281{bottom:1031.100000px;}
.y7_c00281{bottom:1043.100000px;}
.y37_c00281{bottom:1049.100000px;}
.y6_c00281{bottom:1060.800000px;}
.y36_c00281{bottom:1070.700000px;}
.y5_c00281{bottom:1078.800000px;}
.y35_c00281{bottom:1088.700000px;}
.y4_c00281{bottom:1096.500000px;}
.y3_c00281{bottom:1114.200000px;}
.y34_c00281{bottom:1117.050000px;}
.y1_c00281{bottom:1140.450000px;}
.y2_c00281{bottom:1141.200000px;}
.h7_c00281{height:30.000000px;}
.h6_c00281{height:54.000000px;}
.h4_c00281{height:60.000000px;}
.h5_c00281{height:66.000000px;}
.h2_c00281{height:72.000000px;}
.h3_c00281{height:102.000000px;}
.h1_c00281{height:1264.500000px;}
.h0_c00281{height:1264.679993px;}
.w1_c00281{width:961.500000px;}
.w0_c00281{width:961.560058px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:185.100000px;}
.x54_c00281{left:190.050000px;}
.x8b_c00281{left:195.150000px;}
.x9d_c00281{left:196.950000px;}
.x75_c00281{left:198.300000px;}
.xa_c00281{left:205.950000px;}
.x29_c00281{left:207.600000px;}
.x61_c00281{left:208.800000px;}
.x80_c00281{left:210.900000px;}
.x8d_c00281{left:212.850000px;}
.x92_c00281{left:214.650000px;}
.x9f_c00281{left:222.450000px;}
.x3_c00281{left:223.950000px;}
.x2f_c00281{left:225.300000px;}
.x66_c00281{left:226.500000px;}
.x5c_c00281{left:227.550000px;}
.x5e_c00281{left:228.600000px;}
.x7c_c00281{left:230.400000px;}
.x9e_c00281{left:233.250000px;}
.x8e_c00281{left:235.200000px;}
.x5a_c00281{left:236.850000px;}
.x2a_c00281{left:240.000000px;}
.x42_c00281{left:241.200000px;}
.x62_c00281{left:246.600000px;}
.x50_c00281{left:248.550000px;}
.x10_c00281{left:252.000000px;}
.x2b_c00281{left:253.350000px;}
.x47_c00281{left:254.850000px;}
.x24_c00281{left:256.050000px;}
.x5b_c00281{left:257.400000px;}
.x68_c00281{left:258.600000px;}
.x1e_c00281{left:261.300000px;}
.x5f_c00281{left:262.500000px;}
.x98_c00281{left:264.900000px;}
.x76_c00281{left:266.100000px;}
.x34_c00281{left:268.350000px;}
.x39_c00281{left:270.000000px;}
.xb_c00281{left:274.050000px;}
.x5d_c00281{left:275.850000px;}
.x15_c00281{left:277.650000px;}
.x4_c00281{left:279.000000px;}
.x64_c00281{left:283.050000px;}
.x99_c00281{left:285.000000px;}
.x19_c00281{left:287.100000px;}
.x43_c00281{left:290.100000px;}
.x2c_c00281{left:294.750000px;}
.x25_c00281{left:296.400000px;}
.x1f_c00281{left:298.350000px;}
.x11_c00281{left:299.550000px;}
.x4c_c00281{left:300.600000px;}
.x8f_c00281{left:302.550000px;}
.x81_c00281{left:303.600000px;}
.x84_c00281{left:305.100000px;}
.x35_c00281{left:307.650000px;}
.x16_c00281{left:309.300000px;}
.x48_c00281{left:310.650000px;}
.x6b_c00281{left:312.450000px;}
.x2d_c00281{left:317.100000px;}
.x7d_c00281{left:319.350000px;}
.x71_c00281{left:320.400000px;}
.x60_c00281{left:322.650000px;}
.xc_c00281{left:323.700000px;}
.x1a_c00281{left:325.650000px;}
.x93_c00281{left:327.300000px;}
.x72_c00281{left:328.650000px;}
.x49_c00281{left:331.950000px;}
.x2e_c00281{left:334.050000px;}
.x30_c00281{left:337.200000px;}
.x26_c00281{left:339.300000px;}
.x51_c00281{left:341.100000px;}
.x8c_c00281{left:342.450000px;}
.x6c_c00281{left:346.350000px;}
.x55_c00281{left:347.400000px;}
.x5_c00281{left:348.900000px;}
.x3a_c00281{left:351.000000px;}
.x1b_c00281{left:352.950000px;}
.x69_c00281{left:354.000000px;}
.x31_c00281{left:355.500000px;}
.x6_c00281{left:358.200000px;}
.x7e_c00281{left:359.250000px;}
.x44_c00281{left:360.300000px;}
.x52_c00281{left:361.950000px;}
.x56_c00281{left:363.900000px;}
.x3e_c00281{left:365.850000px;}
.x20_c00281{left:367.050000px;}
.x6e_c00281{left:369.450000px;}
.x65_c00281{left:370.500000px;}
.x82_c00281{left:372.750000px;}
.x94_c00281{left:374.100000px;}
.x12_c00281{left:376.200000px;}
.x3f_c00281{left:379.500000px;}
.x9a_c00281{left:382.950000px;}
.x88_c00281{left:384.150000px;}
.x57_c00281{left:387.000000px;}
.x36_c00281{left:388.350000px;}
.x83_c00281{left:389.700000px;}
.x63_c00281{left:391.350000px;}
.x21_c00281{left:394.350000px;}
.x7a_c00281{left:395.700000px;}
.x7_c00281{left:400.650000px;}
.x17_c00281{left:402.150000px;}
.x3b_c00281{left:403.950000px;}
.x1c_c00281{left:405.450000px;}
.x90_c00281{left:406.950000px;}
.x77_c00281{left:409.950000px;}
.x32_c00281{left:411.300000px;}
.x6f_c00281{left:412.350000px;}
.x95_c00281{left:414.150000px;}
.x6d_c00281{left:416.250000px;}
.x3c_c00281{left:420.150000px;}
.x2_c00281{left:423.450000px;}
.x85_c00281{left:425.100000px;}
.x37_c00281{left:427.650000px;}
.x33_c00281{left:429.600000px;}
.x96_c00281{left:430.650000px;}
.xd_c00281{left:432.750000px;}
.x13_c00281{left:437.100000px;}
.x45_c00281{left:438.750000px;}
.x79_c00281{left:439.950000px;}
.x27_c00281{left:441.150000px;}
.x4a_c00281{left:442.800000px;}
.x91_c00281{left:444.750000px;}
.x40_c00281{left:446.400000px;}
.x7b_c00281{left:449.400000px;}
.x9b_c00281{left:451.350000px;}
.x8_c00281{left:452.550000px;}
.x70_c00281{left:454.050000px;}
.x22_c00281{left:457.350000px;}
.x58_c00281{left:458.700000px;}
.x1d_c00281{left:459.750000px;}
.x9_c00281{left:461.550000px;}
.x46_c00281{left:463.200000px;}
.x67_c00281{left:466.350000px;}
.x59_c00281{left:468.750000px;}
.xe_c00281{left:470.550000px;}
.x18_c00281{left:472.650000px;}
.x86_c00281{left:474.450000px;}
.x6a_c00281{left:476.550000px;}
.x4d_c00281{left:478.050000px;}
.x73_c00281{left:480.150000px;}
.x53_c00281{left:482.850000px;}
.x89_c00281{left:484.200000px;}
.x3d_c00281{left:486.750000px;}
.x14_c00281{left:488.550000px;}
.x78_c00281{left:490.200000px;}
.xf_c00281{left:492.450000px;}
.x23_c00281{left:495.450000px;}
.x4e_c00281{left:498.900000px;}
.x28_c00281{left:500.250000px;}
.x4b_c00281{left:502.500000px;}
.x8a_c00281{left:504.750000px;}
.x9c_c00281{left:506.100000px;}
.x38_c00281{left:507.600000px;}
.x41_c00281{left:509.700000px;}
.x97_c00281{left:511.650000px;}
.x87_c00281{left:513.000000px;}
.x4f_c00281{left:520.800000px;}
.x74_c00281{left:523.350000px;}
.x7f_c00281{left:524.400000px;}
.xa8_c00281{left:542.100000px;}
.xcc_c00281{left:544.350000px;}
.xf5_c00281{left:546.600000px;}
.x127_c00281{left:549.300000px;}
.x13a_c00281{left:551.100000px;}
.xca_c00281{left:553.800000px;}
.x101_c00281{left:557.700000px;}
.xa0_c00281{left:558.750000px;}
.xad_c00281{left:560.400000px;}
.xc4_c00281{left:562.650000px;}
.xfb_c00281{left:563.850000px;}
.x11a_c00281{left:564.900000px;}
.x120_c00281{left:565.950000px;}
.x125_c00281{left:567.000000px;}
.xe2_c00281{left:568.350000px;}
.xe6_c00281{left:574.200000px;}
.xdf_c00281{left:575.250000px;}
.xa1_c00281{left:578.850000px;}
.xd2_c00281{left:582.150000px;}
.x11d_c00281{left:583.500000px;}
.x12f_c00281{left:585.150000px;}
.xa9_c00281{left:587.400000px;}
.xb3_c00281{left:588.600000px;}
.x136_c00281{left:591.750000px;}
.x12d_c00281{left:592.950000px;}
.xe3_c00281{left:596.100000px;}
.x13b_c00281{left:597.600000px;}
.xb4_c00281{left:599.400000px;}
.x12b_c00281{left:601.200000px;}
.x13e_c00281{left:602.550000px;}
.xd4_c00281{left:603.750000px;}
.xb9_c00281{left:604.800000px;}
.x10e_c00281{left:606.300000px;}
.xcb_c00281{left:607.500000px;}
.x102_c00281{left:609.900000px;}
.x118_c00281{left:612.000000px;}
.x114_c00281{left:613.500000px;}
.xc5_c00281{left:614.550000px;}
.xe7_c00281{left:617.700000px;}
.x142_c00281{left:618.750000px;}
.x122_c00281{left:620.250000px;}
.x12c_c00281{left:621.750000px;}
.xa2_c00281{left:623.850000px;}
.xaa_c00281{left:625.200000px;}
.x109_c00281{left:627.150000px;}
.x123_c00281{left:628.950000px;}
.x11e_c00281{left:630.300000px;}
.xbd_c00281{left:631.800000px;}
.xdb_c00281{left:633.900000px;}
.xf1_c00281{left:638.250000px;}
.x119_c00281{left:640.500000px;}
.xeb_c00281{left:642.300000px;}
.xae_c00281{left:644.700000px;}
.x128_c00281{left:645.900000px;}
.xa3_c00281{left:648.750000px;}
.x130_c00281{left:649.950000px;}
.xba_c00281{left:651.300000px;}
.x10a_c00281{left:653.100000px;}
.xcd_c00281{left:654.600000px;}
.xfc_c00281{left:656.700000px;}
.x103_c00281{left:659.250000px;}
.xec_c00281{left:660.600000px;}
.x10f_c00281{left:662.700000px;}
.xa4_c00281{left:664.200000px;}
.x115_c00281{left:665.700000px;}
.xd5_c00281{left:667.050000px;}
.x13c_c00281{left:668.550000px;}
.xaf_c00281{left:670.950000px;}
.xbe_c00281{left:673.500000px;}
.x131_c00281{left:675.150000px;}
.xfd_c00281{left:678.600000px;}
.xdc_c00281{left:680.700000px;}
.xb5_c00281{left:686.550000px;}
.x10b_c00281{left:688.050000px;}
.xd3_c00281{left:690.900000px;}
.xf2_c00281{left:692.250000px;}
.xf6_c00281{left:693.600000px;}
.xc6_c00281{left:697.050000px;}
.xbb_c00281{left:700.200000px;}
.xb0_c00281{left:701.550000px;}
.xce_c00281{left:705.000000px;}
.x110_c00281{left:706.500000px;}
.xd6_c00281{left:708.150000px;}
.xb6_c00281{left:709.950000px;}
.xed_c00281{left:711.000000px;}
.xbf_c00281{left:713.400000px;}
.xc7_c00281{left:714.750000px;}
.x137_c00281{left:718.500000px;}
.x11b_c00281{left:722.400000px;}
.xab_c00281{left:724.500000px;}
.xdd_c00281{left:726.000000px;}
.xa5_c00281{left:727.950000px;}
.x13f_c00281{left:729.000000px;}
.x135_c00281{left:734.100000px;}
.xfe_c00281{left:735.150000px;}
.xf3_c00281{left:739.800000px;}
.xa6_c00281{left:742.650000px;}
.xe8_c00281{left:744.450000px;}
.xb7_c00281{left:746.250000px;}
.xf7_c00281{left:747.300000px;}
.x104_c00281{left:750.000000px;}
.x132_c00281{left:753.000000px;}
.x134_c00281{left:754.050000px;}
.xb1_c00281{left:758.400000px;}
.xf4_c00281{left:760.350000px;}
.x106_c00281{left:761.550000px;}
.xf8_c00281{left:762.750000px;}
.xc8_c00281{left:766.200000px;}
.xee_c00281{left:767.550000px;}
.xb8_c00281{left:769.350000px;}
.xd7_c00281{left:772.200000px;}
.xde_c00281{left:773.550000px;}
.xff_c00281{left:776.250000px;}
.x10c_c00281{left:778.650000px;}
.xcf_c00281{left:783.150000px;}
.xc0_c00281{left:784.350000px;}
.x113_c00281{left:785.700000px;}
.x143_c00281{left:786.900000px;}
.x13d_c00281{left:788.400000px;}
.xc9_c00281{left:789.600000px;}
.x116_c00281{left:790.650000px;}
.x11c_c00281{left:791.850000px;}
.x124_c00281{left:792.900000px;}
.x138_c00281{left:796.950000px;}
.x111_c00281{left:798.300000px;}
.x100_c00281{left:799.650000px;}
.xd8_c00281{left:801.000000px;}
.x10d_c00281{left:802.800000px;}
.xac_c00281{left:805.200000px;}
.x140_c00281{left:807.150000px;}
.xa7_c00281{left:808.500000px;}
.xe0_c00281{left:810.000000px;}
.xef_c00281{left:811.050000px;}
.xc1_c00281{left:812.400000px;}
.xf9_c00281{left:813.450000px;}
.x129_c00281{left:815.850000px;}
.x105_c00281{left:819.150000px;}
.x133_c00281{left:820.650000px;}
.xbc_c00281{left:826.200000px;}
.x121_c00281{left:828.000000px;}
.x117_c00281{left:830.550000px;}
.xd9_c00281{left:831.900000px;}
.xe1_c00281{left:833.700000px;}
.xd0_c00281{left:835.350000px;}
.xc2_c00281{left:838.650000px;}
.xb2_c00281{left:840.900000px;}
.x126_c00281{left:842.850000px;}
.x112_c00281{left:844.050000px;}
.x11f_c00281{left:845.250000px;}
.x107_c00281{left:846.450000px;}
.xfa_c00281{left:847.950000px;}
.xe9_c00281{left:850.950000px;}
.xd1_c00281{left:855.150000px;}
.x12e_c00281{left:857.250000px;}
.xe5_c00281{left:861.900000px;}
.xc3_c00281{left:863.100000px;}
.xda_c00281{left:866.100000px;}
.x139_c00281{left:867.150000px;}
.xe4_c00281{left:868.500000px;}
.xea_c00281{left:869.550000px;}
.xf0_c00281{left:870.750000px;}
.x141_c00281{left:872.400000px;}
.x108_c00281{left:874.200000px;}
.x12a_c00281{left:875.250000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws0_c00281{word-spacing:-15.449735pt;}
.ws2_c00281{word-spacing:-0.851064pt;}
.ws3_c00281{word-spacing:0.000000pt;}
.ws1_c00281{word-spacing:5.444444pt;}
.fs5_c00281{font-size:26.666667pt;}
.fs4_c00281{font-size:48.000000pt;}
.fs2_c00281{font-size:53.333333pt;}
.fs3_c00281{font-size:58.666667pt;}
.fs0_c00281{font-size:64.000000pt;}
.fs1_c00281{font-size:90.666667pt;}
.y0_c00281{bottom:0.000000pt;}
.y33_c00281{bottom:164.400000pt;}
.y68_c00281{bottom:165.733333pt;}
.y31_c00281{bottom:171.866667pt;}
.y67_c00281{bottom:177.600000pt;}
.y32_c00281{bottom:177.866667pt;}
.y66_c00281{bottom:192.266667pt;}
.y65_c00281{bottom:208.400000pt;}
.y30_c00281{bottom:224.000000pt;}
.y64_c00281{bottom:224.666667pt;}
.y2f_c00281{bottom:239.733333pt;}
.y63_c00281{bottom:242.533333pt;}
.y62_c00281{bottom:259.866667pt;}
.y2e_c00281{bottom:266.666667pt;}
.y61_c00281{bottom:275.866667pt;}
.y2d_c00281{bottom:282.933333pt;}
.y60_c00281{bottom:291.866667pt;}
.y2c_c00281{bottom:298.133333pt;}
.y5f_c00281{bottom:307.600000pt;}
.y2b_c00281{bottom:313.866667pt;}
.y5e_c00281{bottom:327.066667pt;}
.y2a_c00281{bottom:329.866667pt;}
.y29_c00281{bottom:345.866667pt;}
.y5d_c00281{bottom:346.533333pt;}
.y5c_c00281{bottom:362.533333pt;}
.y28_c00281{bottom:372.800000pt;}
.y5b_c00281{bottom:382.400000pt;}
.y27_c00281{bottom:389.066667pt;}
.y5a_c00281{bottom:398.400000pt;}
.y26_c00281{bottom:409.200000pt;}
.y59_c00281{bottom:414.400000pt;}
.y25_c00281{bottom:424.933333pt;}
.y58_c00281{bottom:430.400000pt;}
.y57_c00281{bottom:446.133333pt;}
.y24_c00281{bottom:448.933333pt;}
.y56_c00281{bottom:461.866667pt;}
.y23_c00281{bottom:464.666667pt;}
.y55_c00281{bottom:478.133333pt;}
.y22_c00281{bottom:480.666667pt;}
.y54_c00281{bottom:497.466667pt;}
.y21_c00281{bottom:499.733333pt;}
.y53_c00281{bottom:513.200000pt;}
.y20_c00281{bottom:515.733333pt;}
.y52_c00281{bottom:529.200000pt;}
.y1f_c00281{bottom:531.466667pt;}
.y51_c00281{bottom:545.466667pt;}
.y1e_c00281{bottom:547.200000pt;}
.y50_c00281{bottom:561.200000pt;}
.y1d_c00281{bottom:563.200000pt;}
.y4f_c00281{bottom:576.933333pt;}
.y1c_c00281{bottom:579.200000pt;}
.y4e_c00281{bottom:592.933333pt;}
.y1b_c00281{bottom:594.933333pt;}
.y4d_c00281{bottom:608.933333pt;}
.y1a_c00281{bottom:610.933333pt;}
.y4c_c00281{bottom:624.933333pt;}
.y19_c00281{bottom:626.933333pt;}
.y4b_c00281{bottom:640.933333pt;}
.y18_c00281{bottom:646.400000pt;}
.y4a_c00281{bottom:659.466667pt;}
.y17_c00281{bottom:666.266667pt;}
.y49_c00281{bottom:672.266667pt;}
.y16_c00281{bottom:682.266667pt;}
.y48_c00281{bottom:684.533333pt;}
.y47_c00281{bottom:696.933333pt;}
.y15_c00281{bottom:701.866667pt;}
.y46_c00281{bottom:710.666667pt;}
.y14_c00281{bottom:718.133333pt;}
.y45_c00281{bottom:722.400000pt;}
.y13_c00281{bottom:734.133333pt;}
.y44_c00281{bottom:734.933333pt;}
.y43_c00281{bottom:749.066667pt;}
.y12_c00281{bottom:749.600000pt;}
.y11_c00281{bottom:765.333333pt;}
.y42_c00281{bottom:770.133333pt;}
.y41_c00281{bottom:774.666667pt;}
.y10_c00281{bottom:781.333333pt;}
.y40_c00281{bottom:786.533333pt;}
.yf_c00281{bottom:797.066667pt;}
.y3f_c00281{bottom:800.666667pt;}
.ye_c00281{bottom:813.066667pt;}
.y3e_c00281{bottom:817.200000pt;}
.yd_c00281{bottom:828.800000pt;}
.y3d_c00281{bottom:832.933333pt;}
.yc_c00281{bottom:844.800000pt;}
.y3c_c00281{bottom:853.066667pt;}
.yb_c00281{bottom:860.533333pt;}
.y3b_c00281{bottom:869.066667pt;}
.ya_c00281{bottom:879.200000pt;}
.y3a_c00281{bottom:884.800000pt;}
.y9_c00281{bottom:895.200000pt;}
.y39_c00281{bottom:900.800000pt;}
.y8_c00281{bottom:911.200000pt;}
.y38_c00281{bottom:916.533333pt;}
.y7_c00281{bottom:927.200000pt;}
.y37_c00281{bottom:932.533333pt;}
.y6_c00281{bottom:942.933333pt;}
.y36_c00281{bottom:951.733333pt;}
.y5_c00281{bottom:958.933333pt;}
.y35_c00281{bottom:967.733333pt;}
.y4_c00281{bottom:974.666667pt;}
.y3_c00281{bottom:990.400000pt;}
.y34_c00281{bottom:992.933333pt;}
.y1_c00281{bottom:1013.733333pt;}
.y2_c00281{bottom:1014.400000pt;}
.h7_c00281{height:26.666667pt;}
.h6_c00281{height:48.000000pt;}
.h4_c00281{height:53.333333pt;}
.h5_c00281{height:58.666667pt;}
.h2_c00281{height:64.000000pt;}
.h3_c00281{height:90.666667pt;}
.h1_c00281{height:1124.000000pt;}
.h0_c00281{height:1124.159993pt;}
.w1_c00281{width:854.666667pt;}
.w0_c00281{width:854.720052pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:164.533333pt;}
.x54_c00281{left:168.933333pt;}
.x8b_c00281{left:173.466667pt;}
.x9d_c00281{left:175.066667pt;}
.x75_c00281{left:176.266667pt;}
.xa_c00281{left:183.066667pt;}
.x29_c00281{left:184.533333pt;}
.x61_c00281{left:185.600000pt;}
.x80_c00281{left:187.466667pt;}
.x8d_c00281{left:189.200000pt;}
.x92_c00281{left:190.800000pt;}
.x9f_c00281{left:197.733333pt;}
.x3_c00281{left:199.066667pt;}
.x2f_c00281{left:200.266667pt;}
.x66_c00281{left:201.333333pt;}
.x5c_c00281{left:202.266667pt;}
.x5e_c00281{left:203.200000pt;}
.x7c_c00281{left:204.800000pt;}
.x9e_c00281{left:207.333333pt;}
.x8e_c00281{left:209.066667pt;}
.x5a_c00281{left:210.533333pt;}
.x2a_c00281{left:213.333333pt;}
.x42_c00281{left:214.400000pt;}
.x62_c00281{left:219.200000pt;}
.x50_c00281{left:220.933333pt;}
.x10_c00281{left:224.000000pt;}
.x2b_c00281{left:225.200000pt;}
.x47_c00281{left:226.533333pt;}
.x24_c00281{left:227.600000pt;}
.x5b_c00281{left:228.800000pt;}
.x68_c00281{left:229.866667pt;}
.x1e_c00281{left:232.266667pt;}
.x5f_c00281{left:233.333333pt;}
.x98_c00281{left:235.466667pt;}
.x76_c00281{left:236.533333pt;}
.x34_c00281{left:238.533333pt;}
.x39_c00281{left:240.000000pt;}
.xb_c00281{left:243.600000pt;}
.x5d_c00281{left:245.200000pt;}
.x15_c00281{left:246.800000pt;}
.x4_c00281{left:248.000000pt;}
.x64_c00281{left:251.600000pt;}
.x99_c00281{left:253.333333pt;}
.x19_c00281{left:255.200000pt;}
.x43_c00281{left:257.866667pt;}
.x2c_c00281{left:262.000000pt;}
.x25_c00281{left:263.466667pt;}
.x1f_c00281{left:265.200000pt;}
.x11_c00281{left:266.266667pt;}
.x4c_c00281{left:267.200000pt;}
.x8f_c00281{left:268.933333pt;}
.x81_c00281{left:269.866667pt;}
.x84_c00281{left:271.200000pt;}
.x35_c00281{left:273.466667pt;}
.x16_c00281{left:274.933333pt;}
.x48_c00281{left:276.133333pt;}
.x6b_c00281{left:277.733333pt;}
.x2d_c00281{left:281.866667pt;}
.x7d_c00281{left:283.866667pt;}
.x71_c00281{left:284.800000pt;}
.x60_c00281{left:286.800000pt;}
.xc_c00281{left:287.733333pt;}
.x1a_c00281{left:289.466667pt;}
.x93_c00281{left:290.933333pt;}
.x72_c00281{left:292.133333pt;}
.x49_c00281{left:295.066667pt;}
.x2e_c00281{left:296.933333pt;}
.x30_c00281{left:299.733333pt;}
.x26_c00281{left:301.600000pt;}
.x51_c00281{left:303.200000pt;}
.x8c_c00281{left:304.400000pt;}
.x6c_c00281{left:307.866667pt;}
.x55_c00281{left:308.800000pt;}
.x5_c00281{left:310.133333pt;}
.x3a_c00281{left:312.000000pt;}
.x1b_c00281{left:313.733333pt;}
.x69_c00281{left:314.666667pt;}
.x31_c00281{left:316.000000pt;}
.x6_c00281{left:318.400000pt;}
.x7e_c00281{left:319.333333pt;}
.x44_c00281{left:320.266667pt;}
.x52_c00281{left:321.733333pt;}
.x56_c00281{left:323.466667pt;}
.x3e_c00281{left:325.200000pt;}
.x20_c00281{left:326.266667pt;}
.x6e_c00281{left:328.400000pt;}
.x65_c00281{left:329.333333pt;}
.x82_c00281{left:331.333333pt;}
.x94_c00281{left:332.533333pt;}
.x12_c00281{left:334.400000pt;}
.x3f_c00281{left:337.333333pt;}
.x9a_c00281{left:340.400000pt;}
.x88_c00281{left:341.466667pt;}
.x57_c00281{left:344.000000pt;}
.x36_c00281{left:345.200000pt;}
.x83_c00281{left:346.400000pt;}
.x63_c00281{left:347.866667pt;}
.x21_c00281{left:350.533333pt;}
.x7a_c00281{left:351.733333pt;}
.x7_c00281{left:356.133333pt;}
.x17_c00281{left:357.466667pt;}
.x3b_c00281{left:359.066667pt;}
.x1c_c00281{left:360.400000pt;}
.x90_c00281{left:361.733333pt;}
.x77_c00281{left:364.400000pt;}
.x32_c00281{left:365.600000pt;}
.x6f_c00281{left:366.533333pt;}
.x95_c00281{left:368.133333pt;}
.x6d_c00281{left:370.000000pt;}
.x3c_c00281{left:373.466667pt;}
.x2_c00281{left:376.400000pt;}
.x85_c00281{left:377.866667pt;}
.x37_c00281{left:380.133333pt;}
.x33_c00281{left:381.866667pt;}
.x96_c00281{left:382.800000pt;}
.xd_c00281{left:384.666667pt;}
.x13_c00281{left:388.533333pt;}
.x45_c00281{left:390.000000pt;}
.x79_c00281{left:391.066667pt;}
.x27_c00281{left:392.133333pt;}
.x4a_c00281{left:393.600000pt;}
.x91_c00281{left:395.333333pt;}
.x40_c00281{left:396.800000pt;}
.x7b_c00281{left:399.466667pt;}
.x9b_c00281{left:401.200000pt;}
.x8_c00281{left:402.266667pt;}
.x70_c00281{left:403.600000pt;}
.x22_c00281{left:406.533333pt;}
.x58_c00281{left:407.733333pt;}
.x1d_c00281{left:408.666667pt;}
.x9_c00281{left:410.266667pt;}
.x46_c00281{left:411.733333pt;}
.x67_c00281{left:414.533333pt;}
.x59_c00281{left:416.666667pt;}
.xe_c00281{left:418.266667pt;}
.x18_c00281{left:420.133333pt;}
.x86_c00281{left:421.733333pt;}
.x6a_c00281{left:423.600000pt;}
.x4d_c00281{left:424.933333pt;}
.x73_c00281{left:426.800000pt;}
.x53_c00281{left:429.200000pt;}
.x89_c00281{left:430.400000pt;}
.x3d_c00281{left:432.666667pt;}
.x14_c00281{left:434.266667pt;}
.x78_c00281{left:435.733333pt;}
.xf_c00281{left:437.733333pt;}
.x23_c00281{left:440.400000pt;}
.x4e_c00281{left:443.466667pt;}
.x28_c00281{left:444.666667pt;}
.x4b_c00281{left:446.666667pt;}
.x8a_c00281{left:448.666667pt;}
.x9c_c00281{left:449.866667pt;}
.x38_c00281{left:451.200000pt;}
.x41_c00281{left:453.066667pt;}
.x97_c00281{left:454.800000pt;}
.x87_c00281{left:456.000000pt;}
.x4f_c00281{left:462.933333pt;}
.x74_c00281{left:465.200000pt;}
.x7f_c00281{left:466.133333pt;}
.xa8_c00281{left:481.866667pt;}
.xcc_c00281{left:483.866667pt;}
.xf5_c00281{left:485.866667pt;}
.x127_c00281{left:488.266667pt;}
.x13a_c00281{left:489.866667pt;}
.xca_c00281{left:492.266667pt;}
.x101_c00281{left:495.733333pt;}
.xa0_c00281{left:496.666667pt;}
.xad_c00281{left:498.133333pt;}
.xc4_c00281{left:500.133333pt;}
.xfb_c00281{left:501.200000pt;}
.x11a_c00281{left:502.133333pt;}
.x120_c00281{left:503.066667pt;}
.x125_c00281{left:504.000000pt;}
.xe2_c00281{left:505.200000pt;}
.xe6_c00281{left:510.400000pt;}
.xdf_c00281{left:511.333333pt;}
.xa1_c00281{left:514.533333pt;}
.xd2_c00281{left:517.466667pt;}
.x11d_c00281{left:518.666667pt;}
.x12f_c00281{left:520.133333pt;}
.xa9_c00281{left:522.133333pt;}
.xb3_c00281{left:523.200000pt;}
.x136_c00281{left:526.000000pt;}
.x12d_c00281{left:527.066667pt;}
.xe3_c00281{left:529.866667pt;}
.x13b_c00281{left:531.200000pt;}
.xb4_c00281{left:532.800000pt;}
.x12b_c00281{left:534.400000pt;}
.x13e_c00281{left:535.600000pt;}
.xd4_c00281{left:536.666667pt;}
.xb9_c00281{left:537.600000pt;}
.x10e_c00281{left:538.933333pt;}
.xcb_c00281{left:540.000000pt;}
.x102_c00281{left:542.133333pt;}
.x118_c00281{left:544.000000pt;}
.x114_c00281{left:545.333333pt;}
.xc5_c00281{left:546.266667pt;}
.xe7_c00281{left:549.066667pt;}
.x142_c00281{left:550.000000pt;}
.x122_c00281{left:551.333333pt;}
.x12c_c00281{left:552.666667pt;}
.xa2_c00281{left:554.533333pt;}
.xaa_c00281{left:555.733333pt;}
.x109_c00281{left:557.466667pt;}
.x123_c00281{left:559.066667pt;}
.x11e_c00281{left:560.266667pt;}
.xbd_c00281{left:561.600000pt;}
.xdb_c00281{left:563.466667pt;}
.xf1_c00281{left:567.333333pt;}
.x119_c00281{left:569.333333pt;}
.xeb_c00281{left:570.933333pt;}
.xae_c00281{left:573.066667pt;}
.x128_c00281{left:574.133333pt;}
.xa3_c00281{left:576.666667pt;}
.x130_c00281{left:577.733333pt;}
.xba_c00281{left:578.933333pt;}
.x10a_c00281{left:580.533333pt;}
.xcd_c00281{left:581.866667pt;}
.xfc_c00281{left:583.733333pt;}
.x103_c00281{left:586.000000pt;}
.xec_c00281{left:587.200000pt;}
.x10f_c00281{left:589.066667pt;}
.xa4_c00281{left:590.400000pt;}
.x115_c00281{left:591.733333pt;}
.xd5_c00281{left:592.933333pt;}
.x13c_c00281{left:594.266667pt;}
.xaf_c00281{left:596.400000pt;}
.xbe_c00281{left:598.666667pt;}
.x131_c00281{left:600.133333pt;}
.xfd_c00281{left:603.200000pt;}
.xdc_c00281{left:605.066667pt;}
.xb5_c00281{left:610.266667pt;}
.x10b_c00281{left:611.600000pt;}
.xd3_c00281{left:614.133333pt;}
.xf2_c00281{left:615.333333pt;}
.xf6_c00281{left:616.533333pt;}
.xc6_c00281{left:619.600000pt;}
.xbb_c00281{left:622.400000pt;}
.xb0_c00281{left:623.600000pt;}
.xce_c00281{left:626.666667pt;}
.x110_c00281{left:628.000000pt;}
.xd6_c00281{left:629.466667pt;}
.xb6_c00281{left:631.066667pt;}
.xed_c00281{left:632.000000pt;}
.xbf_c00281{left:634.133333pt;}
.xc7_c00281{left:635.333333pt;}
.x137_c00281{left:638.666667pt;}
.x11b_c00281{left:642.133333pt;}
.xab_c00281{left:644.000000pt;}
.xdd_c00281{left:645.333333pt;}
.xa5_c00281{left:647.066667pt;}
.x13f_c00281{left:648.000000pt;}
.x135_c00281{left:652.533333pt;}
.xfe_c00281{left:653.466667pt;}
.xf3_c00281{left:657.600000pt;}
.xa6_c00281{left:660.133333pt;}
.xe8_c00281{left:661.733333pt;}
.xb7_c00281{left:663.333333pt;}
.xf7_c00281{left:664.266667pt;}
.x104_c00281{left:666.666667pt;}
.x132_c00281{left:669.333333pt;}
.x134_c00281{left:670.266667pt;}
.xb1_c00281{left:674.133333pt;}
.xf4_c00281{left:675.866667pt;}
.x106_c00281{left:676.933333pt;}
.xf8_c00281{left:678.000000pt;}
.xc8_c00281{left:681.066667pt;}
.xee_c00281{left:682.266667pt;}
.xb8_c00281{left:683.866667pt;}
.xd7_c00281{left:686.400000pt;}
.xde_c00281{left:687.600000pt;}
.xff_c00281{left:690.000000pt;}
.x10c_c00281{left:692.133333pt;}
.xcf_c00281{left:696.133333pt;}
.xc0_c00281{left:697.200000pt;}
.x113_c00281{left:698.400000pt;}
.x143_c00281{left:699.466667pt;}
.x13d_c00281{left:700.800000pt;}
.xc9_c00281{left:701.866667pt;}
.x116_c00281{left:702.800000pt;}
.x11c_c00281{left:703.866667pt;}
.x124_c00281{left:704.800000pt;}
.x138_c00281{left:708.400000pt;}
.x111_c00281{left:709.600000pt;}
.x100_c00281{left:710.800000pt;}
.xd8_c00281{left:712.000000pt;}
.x10d_c00281{left:713.600000pt;}
.xac_c00281{left:715.733333pt;}
.x140_c00281{left:717.466667pt;}
.xa7_c00281{left:718.666667pt;}
.xe0_c00281{left:720.000000pt;}
.xef_c00281{left:720.933333pt;}
.xc1_c00281{left:722.133333pt;}
.xf9_c00281{left:723.066667pt;}
.x129_c00281{left:725.200000pt;}
.x105_c00281{left:728.133333pt;}
.x133_c00281{left:729.466667pt;}
.xbc_c00281{left:734.400000pt;}
.x121_c00281{left:736.000000pt;}
.x117_c00281{left:738.266667pt;}
.xd9_c00281{left:739.466667pt;}
.xe1_c00281{left:741.066667pt;}
.xd0_c00281{left:742.533333pt;}
.xc2_c00281{left:745.466667pt;}
.xb2_c00281{left:747.466667pt;}
.x126_c00281{left:749.200000pt;}
.x112_c00281{left:750.266667pt;}
.x11f_c00281{left:751.333333pt;}
.x107_c00281{left:752.400000pt;}
.xfa_c00281{left:753.733333pt;}
.xe9_c00281{left:756.400000pt;}
.xd1_c00281{left:760.133333pt;}
.x12e_c00281{left:762.000000pt;}
.xe5_c00281{left:766.133333pt;}
.xc3_c00281{left:767.200000pt;}
.xda_c00281{left:769.866667pt;}
.x139_c00281{left:770.800000pt;}
.xe4_c00281{left:772.000000pt;}
.xea_c00281{left:772.933333pt;}
.xf0_c00281{left:774.000000pt;}
.x141_c00281{left:775.466667pt;}
.x108_c00281{left:777.066667pt;}
.x12a_c00281{left:778.000000pt;}
}





/* 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_c00282 {
    display:none;
  }
  .loading-indicator_c00282.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00282 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_c00282 { 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_c00282" -> "#page-container .classname_c00282")
 */
.pf_c00282 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00282 { /* 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_c00282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00282 { /* 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_c00282 { /* 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_c00282 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00282 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00282 {overflow:visible;}
  }
}
.c_c00282 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00282 { /* 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_c00282:after { /* webkit #35443 */
  content: '';
}
.t_c00282:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00282 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 */
}
.__c00282 { /* 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_c00282 { /* info for Javascript */
  display:none;
}
.l_c00282 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00282 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00282 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00282: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_c00282 {
    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_c00282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00282.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_c00282 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00282;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.000000;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;}
.m109_c00282{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mc_c00282{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m95_c00282{transform:matrix(0.083750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083750,0.000000,0.000000,0.250000,0,0);}
.m9_c00282{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m94_c00282{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me6_c00282{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb_c00282{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m59_c00282{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m112_c00282{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.me7_c00282{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m87_c00282{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m63_c00282{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m13_c00282{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.md_c00282{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me4_c00282{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00282{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.me0_c00282{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00282{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m29_c00282{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.me8_c00282{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00282{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.m89_c00282{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00282{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00282{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m20_c00282{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00282{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma_c00282{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m18_c00282{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.meb_c00282{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m22_c00282{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md1_c00282{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00282{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00282{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00282{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m36_c00282{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5_c00282{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00282{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00282{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me5_c00282{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.me3_c00282{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00282{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.med_c00282{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m100_c00282{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m51_c00282{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00282{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00282{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.maa_c00282{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00282{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m61_c00282{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00282{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00282{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00282{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00282{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m96_c00282{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mec_c00282{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m24_c00282{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m48_c00282{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m16_c00282{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m73_c00282{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00282{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00282{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.md2_c00282{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00282{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00282{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00282{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m8_c00282{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m40_c00282{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.md3_c00282{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00282{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m104_c00282{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.mf_c00282{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00282{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m85_c00282{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mba_c00282{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m65_c00282{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me1_c00282{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00282{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.md4_c00282{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m53_c00282{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00282{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00282{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00282{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00282{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m49_c00282{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.maf_c00282{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md0_c00282{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00282{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00282{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m99_c00282{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m92_c00282{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m83_c00282{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m17_c00282{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m62_c00282{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00282{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00282{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mee_c00282{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m56_c00282{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00282{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m72_c00282{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00282{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m103_c00282{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m33_c00282{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3_c00282{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00282{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.me2_c00282{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m64_c00282{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00282{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00282{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m35_c00282{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00282{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m47_c00282{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m45_c00282{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m78_c00282{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m102_c00282{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m54_c00282{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m32_c00282{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00282{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00282{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00282{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m52_c00282{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00282{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00282{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00282{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m57_c00282{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7_c00282{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mea_c00282{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m28_c00282{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m71_c00282{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m86_c00282{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00282{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00282{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mac_c00282{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00282{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m80_c00282{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m15_c00282{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00282{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00282{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m58_c00282{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00282{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m84_c00282{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mce_c00282{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m19_c00282{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00282{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m60_c00282{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00282{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m106_c00282{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m38_c00282{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00282{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00282{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m67_c00282{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m107_c00282{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00282{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00282{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00282{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md6_c00282{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m44_c00282{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m43_c00282{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me_c00282{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00282{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00282{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00282{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00282{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00282{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00282{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00282{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00282{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m41_c00282{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m34_c00282{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00282{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00282{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md8_c00282{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m74_c00282{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00282{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4_c00282{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00282{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00282{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00282{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00282{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00282{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00282{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00282{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00282{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m82_c00282{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00282{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00282{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m27_c00282{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m50_c00282{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m66_c00282{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m68_c00282{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00282{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00282{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md5_c00282{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00282{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00282{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m90_c00282{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00282{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m77_c00282{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m75_c00282{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m11_c00282{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00282{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00282{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m23_c00282{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00282{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m37_c00282{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m12_c00282{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00282{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m25_c00282{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00282{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00282{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00282{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6_c00282{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md9_c00282{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m108_c00282{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00282{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m31_c00282{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00282{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00282{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00282{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m42_c00282{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m70_c00282{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00282{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m69_c00282{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00282{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m79_c00282{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m88_c00282{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m81_c00282{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);}
.mc8_c00282{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m46_c00282{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00282{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m101_c00282{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00282{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m105_c00282{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mab_c00282{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me9_c00282{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00282{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m55_c00282{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00282{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00282{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00282{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m39_c00282{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m26_c00282{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mff_c00282{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00282{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00282{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00282{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m30_c00282{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m91_c00282{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m76_c00282{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m98_c00282{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00282{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m111_c00282{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00282{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mad_c00282{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00282{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00282{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mae_c00282{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md7_c00282{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m97_c00282{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mca_c00282{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00282{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mda_c00282{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00282{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mde_c00282{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00282{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m93_c00282{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m110_c00282{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m0_c00282{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mef_c00282{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m2_c00282{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00282{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m14_c00282{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m21_c00282{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m10_c00282{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00282{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls0_c00282{letter-spacing:0.000000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{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__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00282{word-spacing:-8.288660px;}
.ws4_c00282{word-spacing:-5.658049px;}
.ws7_c00282{word-spacing:-4.473684px;}
.wsd_c00282{word-spacing:-3.324841px;}
.ws8_c00282{word-spacing:-3.157895px;}
.wse_c00282{word-spacing:0.000000px;}
.ws5_c00282{word-spacing:1.763359px;}
.wsb_c00282{word-spacing:11.652921px;}
.ws6_c00282{word-spacing:13.438662px;}
.wsa_c00282{word-spacing:15.671159px;}
.ws2_c00282{word-spacing:18.125000px;}
.wsc_c00282{word-spacing:22.885404px;}
.ws0_c00282{word-spacing:25.714286px;}
.ws1_c00282{word-spacing:40.000000px;}
.ws3_c00282{word-spacing:46.944444px;}
.fc0_c00282{color:transparent;}
.fs2_c00282{font-size:30.000000px;}
.fs3_c00282{font-size:48.000000px;}
.fs5_c00282{font-size:54.000000px;}
.fs4_c00282{font-size:60.000000px;}
.fs1_c00282{font-size:66.000000px;}
.fs6_c00282{font-size:72.000000px;}
.fs0_c00282{font-size:120.000000px;}
.y0_c00282{bottom:0.000000px;}
.y6d_c00282{bottom:172.350000px;}
.y38_c00282{bottom:178.200000px;}
.y6c_c00282{bottom:178.500000px;}
.y6b_c00282{bottom:196.500000px;}
.y37_c00282{bottom:200.550000px;}
.y6a_c00282{bottom:214.800000px;}
.y36_c00282{bottom:218.850000px;}
.y69_c00282{bottom:232.500000px;}
.y35_c00282{bottom:236.550000px;}
.y68_c00282{bottom:250.500000px;}
.y34_c00282{bottom:255.300000px;}
.y33_c00282{bottom:271.800000px;}
.y67_c00282{bottom:272.400000px;}
.y66_c00282{bottom:290.400000px;}
.y32_c00282{bottom:290.550000px;}
.y31_c00282{bottom:307.800000px;}
.y65_c00282{bottom:308.400000px;}
.y30_c00282{bottom:325.050000px;}
.y64_c00282{bottom:326.100000px;}
.y63_c00282{bottom:343.800000px;}
.y2f_c00282{bottom:346.350000px;}
.y62_c00282{bottom:361.500000px;}
.y2e_c00282{bottom:364.650000px;}
.y61_c00282{bottom:379.200000px;}
.y2d_c00282{bottom:395.700000px;}
.y60_c00282{bottom:396.900000px;}
.y5f_c00282{bottom:414.600000px;}
.y2c_c00282{bottom:426.600000px;}
.y5e_c00282{bottom:432.300000px;}
.y2b_c00282{bottom:444.900000px;}
.y5d_c00282{bottom:450.000000px;}
.y2a_c00282{bottom:466.500000px;}
.y5c_c00282{bottom:472.200000px;}
.y29_c00282{bottom:485.550000px;}
.y5b_c00282{bottom:489.900000px;}
.y28_c00282{bottom:502.500000px;}
.y5a_c00282{bottom:507.900000px;}
.y27_c00282{bottom:520.200000px;}
.y59_c00282{bottom:525.900000px;}
.y26_c00282{bottom:542.550000px;}
.y58_c00282{bottom:543.600000px;}
.y25_c00282{bottom:560.550000px;}
.y57_c00282{bottom:561.600000px;}
.y56_c00282{bottom:579.900000px;}
.y24_c00282{bottom:581.700000px;}
.y55_c00282{bottom:596.850000px;}
.y23_c00282{bottom:600.000000px;}
.y54_c00282{bottom:614.850000px;}
.y22_c00282{bottom:618.300000px;}
.y53_c00282{bottom:632.850000px;}
.y21_c00282{bottom:636.000000px;}
.y52_c00282{bottom:650.550000px;}
.y20_c00282{bottom:653.700000px;}
.y51_c00282{bottom:668.550000px;}
.y1f_c00282{bottom:671.700000px;}
.y50_c00282{bottom:685.800000px;}
.y1e_c00282{bottom:689.400000px;}
.y1d_c00282{bottom:707.100000px;}
.y4f_c00282{bottom:708.150000px;}
.y1c_c00282{bottom:725.100000px;}
.y4e_c00282{bottom:729.600000px;}
.y1b_c00282{bottom:743.100000px;}
.y4d_c00282{bottom:747.300000px;}
.y1a_c00282{bottom:760.800000px;}
.y4c_c00282{bottom:765.300000px;}
.y19_c00282{bottom:778.800000px;}
.y4b_c00282{bottom:783.300000px;}
.y18_c00282{bottom:796.800000px;}
.y4a_c00282{bottom:801.300000px;}
.y17_c00282{bottom:814.800000px;}
.y49_c00282{bottom:819.000000px;}
.y16_c00282{bottom:832.500000px;}
.y48_c00282{bottom:836.700000px;}
.y15_c00282{bottom:850.500000px;}
.y47_c00282{bottom:854.700000px;}
.y14_c00282{bottom:868.500000px;}
.y46_c00282{bottom:872.400000px;}
.y13_c00282{bottom:886.200000px;}
.y45_c00282{bottom:890.400000px;}
.y12_c00282{bottom:904.200000px;}
.y44_c00282{bottom:908.400000px;}
.y11_c00282{bottom:921.900000px;}
.y43_c00282{bottom:926.100000px;}
.y10_c00282{bottom:942.450000px;}
.y42_c00282{bottom:943.800000px;}
.yf_c00282{bottom:956.850000px;}
.y41_c00282{bottom:961.500000px;}
.ye_c00282{bottom:972.000000px;}
.y40_c00282{bottom:979.500000px;}
.yd_c00282{bottom:985.350000px;}
.y3f_c00282{bottom:997.200000px;}
.yc_c00282{bottom:1000.800000px;}
.yb_c00282{bottom:1013.700000px;}
.y3e_c00282{bottom:1015.200000px;}
.ya_c00282{bottom:1031.400000px;}
.y3d_c00282{bottom:1033.200000px;}
.y9_c00282{bottom:1042.650000px;}
.y3c_c00282{bottom:1053.750000px;}
.y8_c00282{bottom:1057.350000px;}
.y7_c00282{bottom:1071.300000px;}
.y3b_c00282{bottom:1073.850000px;}
.y6_c00282{bottom:1086.450000px;}
.y3a_c00282{bottom:1091.550000px;}
.y5_c00282{bottom:1100.850000px;}
.y39_c00282{bottom:1109.850000px;}
.y4_c00282{bottom:1113.450000px;}
.y2_c00282{bottom:1135.050000px;}
.y1_c00282{bottom:1136.550000px;}
.y3_c00282{bottom:1180.500000px;}
.h4_c00282{height:30.000000px;}
.h5_c00282{height:48.000000px;}
.h7_c00282{height:54.000000px;}
.h6_c00282{height:60.000000px;}
.h3_c00282{height:66.000000px;}
.h8_c00282{height:72.000000px;}
.h2_c00282{height:120.000000px;}
.h0_c00282{height:1266.480010px;}
.h1_c00282{height:1266.750000px;}
.w1_c00282{width:961.500000px;}
.w0_c00282{width:961.560058px;}
.x0_c00282{left:0.000000px;}
.x3d_c00282{left:89.700000px;}
.xa6_c00282{left:91.500000px;}
.x87_c00282{left:92.850000px;}
.x1d_c00282{left:102.300000px;}
.x28_c00282{left:103.650000px;}
.x91_c00282{left:105.750000px;}
.x43_c00282{left:107.700000px;}
.x4d_c00282{left:108.750000px;}
.x5b_c00282{left:110.100000px;}
.x18_c00282{left:117.000000px;}
.x7_c00282{left:118.050000px;}
.xa4_c00282{left:120.450000px;}
.x36_c00282{left:122.850000px;}
.x4e_c00282{left:124.950000px;}
.x44_c00282{left:128.550000px;}
.x5e_c00282{left:130.200000px;}
.x8f_c00282{left:131.850000px;}
.xa7_c00282{left:135.450000px;}
.x99_c00282{left:137.100000px;}
.x15_c00282{left:139.050000px;}
.x2b_c00282{left:140.100000px;}
.xa2_c00282{left:141.450000px;}
.x47_c00282{left:142.650000px;}
.x55_c00282{left:144.900000px;}
.x62_c00282{left:147.300000px;}
.x45_c00282{left:148.350000px;}
.x8b_c00282{left:149.850000px;}
.x37_c00282{left:150.900000px;}
.xa0_c00282{left:151.950000px;}
.x56_c00282{left:153.150000px;}
.x30_c00282{left:154.800000px;}
.x83_c00282{left:156.300000px;}
.x9d_c00282{left:157.350000px;}
.x1e_c00282{left:158.400000px;}
.x19_c00282{left:160.500000px;}
.x95_c00282{left:162.000000px;}
.x7f_c00282{left:163.950000px;}
.x6b_c00282{left:165.300000px;}
.x7d_c00282{left:167.250000px;}
.x4f_c00282{left:168.900000px;}
.x63_c00282{left:170.400000px;}
.x77_c00282{left:172.350000px;}
.x16_c00282{left:173.550000px;}
.x5f_c00282{left:175.200000px;}
.x84_c00282{left:176.850000px;}
.x3e_c00282{left:179.700000px;}
.x31_c00282{left:181.500000px;}
.x8_c00282{left:183.900000px;}
.x20_c00282{left:186.000000px;}
.x50_c00282{left:187.950000px;}
.x67_c00282{left:189.300000px;}
.x89_c00282{left:191.550000px;}
.x38_c00282{left:194.100000px;}
.x60_c00282{left:195.300000px;}
.x48_c00282{left:197.400000px;}
.x7b_c00282{left:198.750000px;}
.x2c_c00282{left:199.950000px;}
.x70_c00282{left:201.750000px;}
.x21_c00282{left:203.700000px;}
.x80_c00282{left:204.900000px;}
.x51_c00282{left:206.250000px;}
.x9_c00282{left:208.050000px;}
.x9b_c00282{left:210.000000px;}
.x24_c00282{left:211.650000px;}
.x54_c00282{left:217.200000px;}
.x97_c00282{left:218.250000px;}
.x25_c00282{left:220.350000px;}
.x96_c00282{left:225.300000px;}
.x57_c00282{left:226.950000px;}
.x39_c00282{left:228.600000px;}
.x49_c00282{left:230.100000px;}
.x3f_c00282{left:233.700000px;}
.x2d_c00282{left:236.250000px;}
.x98_c00282{left:238.350000px;}
.x9e_c00282{left:239.400000px;}
.x32_c00282{left:240.900000px;}
.x1a_c00282{left:242.550000px;}
.x58_c00282{left:244.350000px;}
.x8a_c00282{left:245.550000px;}
.x64_c00282{left:247.200000px;}
.x78_c00282{left:248.550000px;}
.x52_c00282{left:249.750000px;}
.x4a_c00282{left:251.400000px;}
.x71_c00282{left:253.200000px;}
.x3a_c00282{left:254.550000px;}
.xa_c00282{left:255.600000px;}
.x22_c00282{left:256.950000px;}
.x40_c00282{left:258.600000px;}
.x33_c00282{left:259.950000px;}
.xb_c00282{left:263.550000px;}
.x6c_c00282{left:264.600000px;}
.x92_c00282{left:266.250000px;}
.x59_c00282{left:269.550000px;}
.x74_c00282{left:271.350000px;}
.x85_c00282{left:275.100000px;}
.xc_c00282{left:277.650000px;}
.x26_c00282{left:278.700000px;}
.x8c_c00282{left:280.650000px;}
.x72_c00282{left:281.700000px;}
.x61_c00282{left:283.050000px;}
.x3b_c00282{left:286.650000px;}
.x1b_c00282{left:288.300000px;}
.x2e_c00282{left:290.250000px;}
.xd_c00282{left:292.050000px;}
.x8d_c00282{left:293.550000px;}
.x9c_c00282{left:295.350000px;}
.x7c_c00282{left:296.400000px;}
.xe_c00282{left:299.250000px;}
.x68_c00282{left:300.300000px;}
.xa5_c00282{left:302.550000px;}
.x1c_c00282{left:303.750000px;}
.x3c_c00282{left:304.950000px;}
.x4b_c00282{left:309.000000px;}
.x79_c00282{left:310.800000px;}
.x23_c00282{left:312.450000px;}
.xf_c00282{left:313.950000px;}
.xa1_c00282{left:315.600000px;}
.x9a_c00282{left:317.550000px;}
.x27_c00282{left:318.600000px;}
.x10_c00282{left:320.400000px;}
.x5a_c00282{left:322.800000px;}
.x41_c00282{left:324.900000px;}
.x69_c00282{left:326.550000px;}
.x73_c00282{left:329.550000px;}
.x65_c00282{left:331.350000px;}
.xa3_c00282{left:333.000000px;}
.x11_c00282{left:334.800000px;}
.x5c_c00282{left:335.850000px;}
.x1_c00282{left:336.900000px;}
.x4c_c00282{left:339.900000px;}
.x7e_c00282{left:341.400000px;}
.x81_c00282{left:343.200000px;}
.x34_c00282{left:344.250000px;}
.x4_c00282{left:345.900000px;}
.x6d_c00282{left:349.500000px;}
.x93_c00282{left:352.650000px;}
.x12_c00282{left:354.300000px;}
.x29_c00282{left:355.350000px;}
.x2f_c00282{left:356.400000px;}
.x88_c00282{left:361.500000px;}
.x53_c00282{left:364.800000px;}
.x66_c00282{left:366.300000px;}
.x6a_c00282{left:367.650000px;}
.x75_c00282{left:370.350000px;}
.x42_c00282{left:373.800000px;}
.x5_c00282{left:376.500000px;}
.x86_c00282{left:378.000000px;}
.x3_c00282{left:379.050000px;}
.x5d_c00282{left:381.600000px;}
.x13_c00282{left:383.100000px;}
.x2a_c00282{left:384.150000px;}
.x1f_c00282{left:385.500000px;}
.x94_c00282{left:386.850000px;}
.x76_c00282{left:389.400000px;}
.x8e_c00282{left:391.050000px;}
.x90_c00282{left:393.000000px;}
.x6e_c00282{left:394.800000px;}
.x46_c00282{left:397.950000px;}
.x35_c00282{left:400.800000px;}
.x82_c00282{left:403.650000px;}
.x9f_c00282{left:404.700000px;}
.x7a_c00282{left:405.900000px;}
.x6_c00282{left:409.950000px;}
.x17_c00282{left:411.900000px;}
.x14_c00282{left:412.950000px;}
.x6f_c00282{left:415.650000px;}
.xc0_c00282{left:446.400000px;}
.x13e_c00282{left:450.750000px;}
.x143_c00282{left:455.400000px;}
.xa8_c00282{left:461.850000px;}
.xb8_c00282{left:463.950000px;}
.x11d_c00282{left:465.600000px;}
.x131_c00282{left:466.650000px;}
.x13d_c00282{left:468.750000px;}
.x149_c00282{left:470.100000px;}
.x136_c00282{left:475.950000px;}
.x147_c00282{left:479.100000px;}
.xb9_c00282{left:481.200000px;}
.xda_c00282{left:483.450000px;}
.xf9_c00282{left:485.850000px;}
.xf6_c00282{left:486.900000px;}
.xd0_c00282{left:488.100000px;}
.x133_c00282{left:490.050000px;}
.x105_c00282{left:492.000000px;}
.xd6_c00282{left:493.800000px;}
.xe0_c00282{left:495.600000px;}
.xba_c00282{left:499.500000px;}
.x11a_c00282{left:501.750000px;}
.x11e_c00282{left:503.850000px;}
.xc1_c00282{left:505.500000px;}
.xf7_c00282{left:507.000000px;}
.x13b_c00282{left:508.050000px;}
.x123_c00282{left:509.100000px;}
.xca_c00282{left:510.450000px;}
.x148_c00282{left:511.500000px;}
.xe7_c00282{left:512.700000px;}
.xb2_c00282{left:515.550000px;}
.x129_c00282{left:519.000000px;}
.x112_c00282{left:520.200000px;}
.xa9_c00282{left:521.550000px;}
.xf4_c00282{left:523.800000px;}
.x12e_c00282{left:525.900000px;}
.xc2_c00282{left:527.100000px;}
.xe8_c00282{left:529.950000px;}
.xb3_c00282{left:533.250000px;}
.x124_c00282{left:535.050000px;}
.xe1_c00282{left:536.250000px;}
.xef_c00282{left:537.750000px;}
.x106_c00282{left:538.800000px;}
.x144_c00282{left:540.750000px;}
.xc3_c00282{left:542.250000px;}
.xaa_c00282{left:544.200000px;}
.xbb_c00282{left:546.600000px;}
.x10f_c00282{left:548.250000px;}
.x12d_c00282{left:550.800000px;}
.xdb_c00282{left:553.650000px;}
.x107_c00282{left:555.000000px;}
.xcb_c00282{left:556.950000px;}
.x113_c00282{left:559.050000px;}
.x10b_c00282{left:560.100000px;}
.xd1_c00282{left:561.150000px;}
.xd7_c00282{left:563.700000px;}
.xe2_c00282{left:565.350000px;}
.x12f_c00282{left:566.550000px;}
.x137_c00282{left:568.200000px;}
.x101_c00282{left:569.400000px;}
.x108_c00282{left:572.250000px;}
.x125_c00282{left:573.300000px;}
.x117_c00282{left:575.250000px;}
.xc4_c00282{left:576.750000px;}
.xdc_c00282{left:577.800000px;}
.xd8_c00282{left:579.600000px;}
.x12a_c00282{left:581.700000px;}
.x122_c00282{left:583.650000px;}
.x11b_c00282{left:585.750000px;}
.xbc_c00282{left:591.300000px;}
.xe9_c00282{left:595.500000px;}
.xb4_c00282{left:596.550000px;}
.xdd_c00282{left:598.650000px;}
.x10c_c00282{left:600.450000px;}
.xcc_c00282{left:603.000000px;}
.xf5_c00282{left:606.600000px;}
.xbd_c00282{left:608.250000px;}
.xf0_c00282{left:610.050000px;}
.xab_c00282{left:613.350000px;}
.xd2_c00282{left:615.450000px;}
.xfa_c00282{left:617.700000px;}
.x126_c00282{left:619.350000px;}
.xe3_c00282{left:623.700000px;}
.x11f_c00282{left:624.750000px;}
.x12c_c00282{left:627.900000px;}
.xfe_c00282{left:629.250000px;}
.xcd_c00282{left:631.050000px;}
.xf8_c00282{left:632.250000px;}
.x109_c00282{left:633.450000px;}
.xbe_c00282{left:634.950000px;}
.xb5_c00282{left:636.450000px;}
.xfb_c00282{left:639.000000px;}
.xac_c00282{left:640.350000px;}
.x13f_c00282{left:642.750000px;}
.xc5_c00282{left:646.200000px;}
.x110_c00282{left:647.250000px;}
.xea_c00282{left:649.050000px;}
.x138_c00282{left:650.250000px;}
.x11c_c00282{left:651.300000px;}
.x102_c00282{left:653.250000px;}
.x130_c00282{left:657.000000px;}
.xc6_c00282{left:659.100000px;}
.xad_c00282{left:660.900000px;}
.x12b_c00282{left:662.700000px;}
.xd9_c00282{left:665.250000px;}
.x127_c00282{left:668.700000px;}
.xce_c00282{left:670.350000px;}
.x118_c00282{left:671.400000px;}
.x116_c00282{left:672.900000px;}
.xeb_c00282{left:675.750000px;}
.xd3_c00282{left:677.400000px;}
.xe4_c00282{left:679.800000px;}
.x103_c00282{left:681.000000px;}
.xc7_c00282{left:682.800000px;}
.x114_c00282{left:684.300000px;}
.x134_c00282{left:687.000000px;}
.xde_c00282{left:688.200000px;}
.xae_c00282{left:689.400000px;}
.x14a_c00282{left:690.750000px;}
.xec_c00282{left:692.250000px;}
.xcf_c00282{left:693.750000px;}
.xb6_c00282{left:695.100000px;}
.x13c_c00282{left:696.300000px;}
.xbf_c00282{left:697.950000px;}
.x10a_c00282{left:699.750000px;}
.xf1_c00282{left:700.800000px;}
.xd4_c00282{left:702.900000px;}
.xfc_c00282{left:704.550000px;}
.xaf_c00282{left:706.650000px;}
.x119_c00282{left:710.250000px;}
.xf2_c00282{left:711.300000px;}
.x141_c00282{left:714.150000px;}
.xff_c00282{left:716.100000px;}
.x139_c00282{left:717.150000px;}
.x145_c00282{left:718.350000px;}
.xdf_c00282{left:719.550000px;}
.x111_c00282{left:720.750000px;}
.xc8_c00282{left:724.950000px;}
.xb0_c00282{left:728.550000px;}
.x10d_c00282{left:730.050000px;}
.x115_c00282{left:731.100000px;}
.xe5_c00282{left:733.500000px;}
.x142_c00282{left:734.700000px;}
.xb7_c00282{left:735.750000px;}
.x13a_c00282{left:737.250000px;}
.xed_c00282{left:739.050000px;}
.x132_c00282{left:741.000000px;}
.x100_c00282{left:743.400000px;}
.x146_c00282{left:746.100000px;}
.x128_c00282{left:747.150000px;}
.xfd_c00282{left:748.500000px;}
.x120_c00282{left:749.700000px;}
.xd5_c00282{left:751.500000px;}
.x2_c00282{left:753.450000px;}
.xf3_c00282{left:754.800000px;}
.x104_c00282{left:756.600000px;}
.xc9_c00282{left:758.400000px;}
.xee_c00282{left:760.950000px;}
.x121_c00282{left:763.050000px;}
.xe6_c00282{left:766.200000px;}
.x140_c00282{left:770.250000px;}
.x135_c00282{left:772.200000px;}
.xb1_c00282{left:777.150000px;}
.x10e_c00282{left:778.950000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.000000pt;}
.ws9_c00282{word-spacing:-7.367698pt;}
.ws4_c00282{word-spacing:-5.029377pt;}
.ws7_c00282{word-spacing:-3.976608pt;}
.wsd_c00282{word-spacing:-2.955414pt;}
.ws8_c00282{word-spacing:-2.807018pt;}
.wse_c00282{word-spacing:0.000000pt;}
.ws5_c00282{word-spacing:1.567430pt;}
.wsb_c00282{word-spacing:10.358152pt;}
.ws6_c00282{word-spacing:11.945477pt;}
.wsa_c00282{word-spacing:13.929919pt;}
.ws2_c00282{word-spacing:16.111111pt;}
.wsc_c00282{word-spacing:20.342581pt;}
.ws0_c00282{word-spacing:22.857143pt;}
.ws1_c00282{word-spacing:35.555556pt;}
.ws3_c00282{word-spacing:41.728395pt;}
.fs2_c00282{font-size:26.666667pt;}
.fs3_c00282{font-size:42.666667pt;}
.fs5_c00282{font-size:48.000000pt;}
.fs4_c00282{font-size:53.333333pt;}
.fs1_c00282{font-size:58.666667pt;}
.fs6_c00282{font-size:64.000000pt;}
.fs0_c00282{font-size:106.666667pt;}
.y0_c00282{bottom:0.000000pt;}
.y6d_c00282{bottom:153.200000pt;}
.y38_c00282{bottom:158.400000pt;}
.y6c_c00282{bottom:158.666667pt;}
.y6b_c00282{bottom:174.666667pt;}
.y37_c00282{bottom:178.266667pt;}
.y6a_c00282{bottom:190.933333pt;}
.y36_c00282{bottom:194.533333pt;}
.y69_c00282{bottom:206.666667pt;}
.y35_c00282{bottom:210.266667pt;}
.y68_c00282{bottom:222.666667pt;}
.y34_c00282{bottom:226.933333pt;}
.y33_c00282{bottom:241.600000pt;}
.y67_c00282{bottom:242.133333pt;}
.y66_c00282{bottom:258.133333pt;}
.y32_c00282{bottom:258.266667pt;}
.y31_c00282{bottom:273.600000pt;}
.y65_c00282{bottom:274.133333pt;}
.y30_c00282{bottom:288.933333pt;}
.y64_c00282{bottom:289.866667pt;}
.y63_c00282{bottom:305.600000pt;}
.y2f_c00282{bottom:307.866667pt;}
.y62_c00282{bottom:321.333333pt;}
.y2e_c00282{bottom:324.133333pt;}
.y61_c00282{bottom:337.066667pt;}
.y2d_c00282{bottom:351.733333pt;}
.y60_c00282{bottom:352.800000pt;}
.y5f_c00282{bottom:368.533333pt;}
.y2c_c00282{bottom:379.200000pt;}
.y5e_c00282{bottom:384.266667pt;}
.y2b_c00282{bottom:395.466667pt;}
.y5d_c00282{bottom:400.000000pt;}
.y2a_c00282{bottom:414.666667pt;}
.y5c_c00282{bottom:419.733333pt;}
.y29_c00282{bottom:431.600000pt;}
.y5b_c00282{bottom:435.466667pt;}
.y28_c00282{bottom:446.666667pt;}
.y5a_c00282{bottom:451.466667pt;}
.y27_c00282{bottom:462.400000pt;}
.y59_c00282{bottom:467.466667pt;}
.y26_c00282{bottom:482.266667pt;}
.y58_c00282{bottom:483.200000pt;}
.y25_c00282{bottom:498.266667pt;}
.y57_c00282{bottom:499.200000pt;}
.y56_c00282{bottom:515.466667pt;}
.y24_c00282{bottom:517.066667pt;}
.y55_c00282{bottom:530.533333pt;}
.y23_c00282{bottom:533.333333pt;}
.y54_c00282{bottom:546.533333pt;}
.y22_c00282{bottom:549.600000pt;}
.y53_c00282{bottom:562.533333pt;}
.y21_c00282{bottom:565.333333pt;}
.y52_c00282{bottom:578.266667pt;}
.y20_c00282{bottom:581.066667pt;}
.y51_c00282{bottom:594.266667pt;}
.y1f_c00282{bottom:597.066667pt;}
.y50_c00282{bottom:609.600000pt;}
.y1e_c00282{bottom:612.800000pt;}
.y1d_c00282{bottom:628.533333pt;}
.y4f_c00282{bottom:629.466667pt;}
.y1c_c00282{bottom:644.533333pt;}
.y4e_c00282{bottom:648.533333pt;}
.y1b_c00282{bottom:660.533333pt;}
.y4d_c00282{bottom:664.266667pt;}
.y1a_c00282{bottom:676.266667pt;}
.y4c_c00282{bottom:680.266667pt;}
.y19_c00282{bottom:692.266667pt;}
.y4b_c00282{bottom:696.266667pt;}
.y18_c00282{bottom:708.266667pt;}
.y4a_c00282{bottom:712.266667pt;}
.y17_c00282{bottom:724.266667pt;}
.y49_c00282{bottom:728.000000pt;}
.y16_c00282{bottom:740.000000pt;}
.y48_c00282{bottom:743.733333pt;}
.y15_c00282{bottom:756.000000pt;}
.y47_c00282{bottom:759.733333pt;}
.y14_c00282{bottom:772.000000pt;}
.y46_c00282{bottom:775.466667pt;}
.y13_c00282{bottom:787.733333pt;}
.y45_c00282{bottom:791.466667pt;}
.y12_c00282{bottom:803.733333pt;}
.y44_c00282{bottom:807.466667pt;}
.y11_c00282{bottom:819.466667pt;}
.y43_c00282{bottom:823.200000pt;}
.y10_c00282{bottom:837.733333pt;}
.y42_c00282{bottom:838.933333pt;}
.yf_c00282{bottom:850.533333pt;}
.y41_c00282{bottom:854.666667pt;}
.ye_c00282{bottom:864.000000pt;}
.y40_c00282{bottom:870.666667pt;}
.yd_c00282{bottom:875.866667pt;}
.y3f_c00282{bottom:886.400000pt;}
.yc_c00282{bottom:889.600000pt;}
.yb_c00282{bottom:901.066667pt;}
.y3e_c00282{bottom:902.400000pt;}
.ya_c00282{bottom:916.800000pt;}
.y3d_c00282{bottom:918.400000pt;}
.y9_c00282{bottom:926.800000pt;}
.y3c_c00282{bottom:936.666667pt;}
.y8_c00282{bottom:939.866667pt;}
.y7_c00282{bottom:952.266667pt;}
.y3b_c00282{bottom:954.533333pt;}
.y6_c00282{bottom:965.733333pt;}
.y3a_c00282{bottom:970.266667pt;}
.y5_c00282{bottom:978.533333pt;}
.y39_c00282{bottom:986.533333pt;}
.y4_c00282{bottom:989.733333pt;}
.y2_c00282{bottom:1008.933333pt;}
.y1_c00282{bottom:1010.266667pt;}
.y3_c00282{bottom:1049.333333pt;}
.h4_c00282{height:26.666667pt;}
.h5_c00282{height:42.666667pt;}
.h7_c00282{height:48.000000pt;}
.h6_c00282{height:53.333333pt;}
.h3_c00282{height:58.666667pt;}
.h8_c00282{height:64.000000pt;}
.h2_c00282{height:106.666667pt;}
.h0_c00282{height:1125.760009pt;}
.h1_c00282{height:1126.000000pt;}
.w1_c00282{width:854.666667pt;}
.w0_c00282{width:854.720052pt;}
.x0_c00282{left:0.000000pt;}
.x3d_c00282{left:79.733333pt;}
.xa6_c00282{left:81.333333pt;}
.x87_c00282{left:82.533333pt;}
.x1d_c00282{left:90.933333pt;}
.x28_c00282{left:92.133333pt;}
.x91_c00282{left:94.000000pt;}
.x43_c00282{left:95.733333pt;}
.x4d_c00282{left:96.666667pt;}
.x5b_c00282{left:97.866667pt;}
.x18_c00282{left:104.000000pt;}
.x7_c00282{left:104.933333pt;}
.xa4_c00282{left:107.066667pt;}
.x36_c00282{left:109.200000pt;}
.x4e_c00282{left:111.066667pt;}
.x44_c00282{left:114.266667pt;}
.x5e_c00282{left:115.733333pt;}
.x8f_c00282{left:117.200000pt;}
.xa7_c00282{left:120.400000pt;}
.x99_c00282{left:121.866667pt;}
.x15_c00282{left:123.600000pt;}
.x2b_c00282{left:124.533333pt;}
.xa2_c00282{left:125.733333pt;}
.x47_c00282{left:126.800000pt;}
.x55_c00282{left:128.800000pt;}
.x62_c00282{left:130.933333pt;}
.x45_c00282{left:131.866667pt;}
.x8b_c00282{left:133.200000pt;}
.x37_c00282{left:134.133333pt;}
.xa0_c00282{left:135.066667pt;}
.x56_c00282{left:136.133333pt;}
.x30_c00282{left:137.600000pt;}
.x83_c00282{left:138.933333pt;}
.x9d_c00282{left:139.866667pt;}
.x1e_c00282{left:140.800000pt;}
.x19_c00282{left:142.666667pt;}
.x95_c00282{left:144.000000pt;}
.x7f_c00282{left:145.733333pt;}
.x6b_c00282{left:146.933333pt;}
.x7d_c00282{left:148.666667pt;}
.x4f_c00282{left:150.133333pt;}
.x63_c00282{left:151.466667pt;}
.x77_c00282{left:153.200000pt;}
.x16_c00282{left:154.266667pt;}
.x5f_c00282{left:155.733333pt;}
.x84_c00282{left:157.200000pt;}
.x3e_c00282{left:159.733333pt;}
.x31_c00282{left:161.333333pt;}
.x8_c00282{left:163.466667pt;}
.x20_c00282{left:165.333333pt;}
.x50_c00282{left:167.066667pt;}
.x67_c00282{left:168.266667pt;}
.x89_c00282{left:170.266667pt;}
.x38_c00282{left:172.533333pt;}
.x60_c00282{left:173.600000pt;}
.x48_c00282{left:175.466667pt;}
.x7b_c00282{left:176.666667pt;}
.x2c_c00282{left:177.733333pt;}
.x70_c00282{left:179.333333pt;}
.x21_c00282{left:181.066667pt;}
.x80_c00282{left:182.133333pt;}
.x51_c00282{left:183.333333pt;}
.x9_c00282{left:184.933333pt;}
.x9b_c00282{left:186.666667pt;}
.x24_c00282{left:188.133333pt;}
.x54_c00282{left:193.066667pt;}
.x97_c00282{left:194.000000pt;}
.x25_c00282{left:195.866667pt;}
.x96_c00282{left:200.266667pt;}
.x57_c00282{left:201.733333pt;}
.x39_c00282{left:203.200000pt;}
.x49_c00282{left:204.533333pt;}
.x3f_c00282{left:207.733333pt;}
.x2d_c00282{left:210.000000pt;}
.x98_c00282{left:211.866667pt;}
.x9e_c00282{left:212.800000pt;}
.x32_c00282{left:214.133333pt;}
.x1a_c00282{left:215.600000pt;}
.x58_c00282{left:217.200000pt;}
.x8a_c00282{left:218.266667pt;}
.x64_c00282{left:219.733333pt;}
.x78_c00282{left:220.933333pt;}
.x52_c00282{left:222.000000pt;}
.x4a_c00282{left:223.466667pt;}
.x71_c00282{left:225.066667pt;}
.x3a_c00282{left:226.266667pt;}
.xa_c00282{left:227.200000pt;}
.x22_c00282{left:228.400000pt;}
.x40_c00282{left:229.866667pt;}
.x33_c00282{left:231.066667pt;}
.xb_c00282{left:234.266667pt;}
.x6c_c00282{left:235.200000pt;}
.x92_c00282{left:236.666667pt;}
.x59_c00282{left:239.600000pt;}
.x74_c00282{left:241.200000pt;}
.x85_c00282{left:244.533333pt;}
.xc_c00282{left:246.800000pt;}
.x26_c00282{left:247.733333pt;}
.x8c_c00282{left:249.466667pt;}
.x72_c00282{left:250.400000pt;}
.x61_c00282{left:251.600000pt;}
.x3b_c00282{left:254.800000pt;}
.x1b_c00282{left:256.266667pt;}
.x2e_c00282{left:258.000000pt;}
.xd_c00282{left:259.600000pt;}
.x8d_c00282{left:260.933333pt;}
.x9c_c00282{left:262.533333pt;}
.x7c_c00282{left:263.466667pt;}
.xe_c00282{left:266.000000pt;}
.x68_c00282{left:266.933333pt;}
.xa5_c00282{left:268.933333pt;}
.x1c_c00282{left:270.000000pt;}
.x3c_c00282{left:271.066667pt;}
.x4b_c00282{left:274.666667pt;}
.x79_c00282{left:276.266667pt;}
.x23_c00282{left:277.733333pt;}
.xf_c00282{left:279.066667pt;}
.xa1_c00282{left:280.533333pt;}
.x9a_c00282{left:282.266667pt;}
.x27_c00282{left:283.200000pt;}
.x10_c00282{left:284.800000pt;}
.x5a_c00282{left:286.933333pt;}
.x41_c00282{left:288.800000pt;}
.x69_c00282{left:290.266667pt;}
.x73_c00282{left:292.933333pt;}
.x65_c00282{left:294.533333pt;}
.xa3_c00282{left:296.000000pt;}
.x11_c00282{left:297.600000pt;}
.x5c_c00282{left:298.533333pt;}
.x1_c00282{left:299.466667pt;}
.x4c_c00282{left:302.133333pt;}
.x7e_c00282{left:303.466667pt;}
.x81_c00282{left:305.066667pt;}
.x34_c00282{left:306.000000pt;}
.x4_c00282{left:307.466667pt;}
.x6d_c00282{left:310.666667pt;}
.x93_c00282{left:313.466667pt;}
.x12_c00282{left:314.933333pt;}
.x29_c00282{left:315.866667pt;}
.x2f_c00282{left:316.800000pt;}
.x88_c00282{left:321.333333pt;}
.x53_c00282{left:324.266667pt;}
.x66_c00282{left:325.600000pt;}
.x6a_c00282{left:326.800000pt;}
.x75_c00282{left:329.200000pt;}
.x42_c00282{left:332.266667pt;}
.x5_c00282{left:334.666667pt;}
.x86_c00282{left:336.000000pt;}
.x3_c00282{left:336.933333pt;}
.x5d_c00282{left:339.200000pt;}
.x13_c00282{left:340.533333pt;}
.x2a_c00282{left:341.466667pt;}
.x1f_c00282{left:342.666667pt;}
.x94_c00282{left:343.866667pt;}
.x76_c00282{left:346.133333pt;}
.x8e_c00282{left:347.600000pt;}
.x90_c00282{left:349.333333pt;}
.x6e_c00282{left:350.933333pt;}
.x46_c00282{left:353.733333pt;}
.x35_c00282{left:356.266667pt;}
.x82_c00282{left:358.800000pt;}
.x9f_c00282{left:359.733333pt;}
.x7a_c00282{left:360.800000pt;}
.x6_c00282{left:364.400000pt;}
.x17_c00282{left:366.133333pt;}
.x14_c00282{left:367.066667pt;}
.x6f_c00282{left:369.466667pt;}
.xc0_c00282{left:396.800000pt;}
.x13e_c00282{left:400.666667pt;}
.x143_c00282{left:404.800000pt;}
.xa8_c00282{left:410.533333pt;}
.xb8_c00282{left:412.400000pt;}
.x11d_c00282{left:413.866667pt;}
.x131_c00282{left:414.800000pt;}
.x13d_c00282{left:416.666667pt;}
.x149_c00282{left:417.866667pt;}
.x136_c00282{left:423.066667pt;}
.x147_c00282{left:425.866667pt;}
.xb9_c00282{left:427.733333pt;}
.xda_c00282{left:429.733333pt;}
.xf9_c00282{left:431.866667pt;}
.xf6_c00282{left:432.800000pt;}
.xd0_c00282{left:433.866667pt;}
.x133_c00282{left:435.600000pt;}
.x105_c00282{left:437.333333pt;}
.xd6_c00282{left:438.933333pt;}
.xe0_c00282{left:440.533333pt;}
.xba_c00282{left:444.000000pt;}
.x11a_c00282{left:446.000000pt;}
.x11e_c00282{left:447.866667pt;}
.xc1_c00282{left:449.333333pt;}
.xf7_c00282{left:450.666667pt;}
.x13b_c00282{left:451.600000pt;}
.x123_c00282{left:452.533333pt;}
.xca_c00282{left:453.733333pt;}
.x148_c00282{left:454.666667pt;}
.xe7_c00282{left:455.733333pt;}
.xb2_c00282{left:458.266667pt;}
.x129_c00282{left:461.333333pt;}
.x112_c00282{left:462.400000pt;}
.xa9_c00282{left:463.600000pt;}
.xf4_c00282{left:465.600000pt;}
.x12e_c00282{left:467.466667pt;}
.xc2_c00282{left:468.533333pt;}
.xe8_c00282{left:471.066667pt;}
.xb3_c00282{left:474.000000pt;}
.x124_c00282{left:475.600000pt;}
.xe1_c00282{left:476.666667pt;}
.xef_c00282{left:478.000000pt;}
.x106_c00282{left:478.933333pt;}
.x144_c00282{left:480.666667pt;}
.xc3_c00282{left:482.000000pt;}
.xaa_c00282{left:483.733333pt;}
.xbb_c00282{left:485.866667pt;}
.x10f_c00282{left:487.333333pt;}
.x12d_c00282{left:489.600000pt;}
.xdb_c00282{left:492.133333pt;}
.x107_c00282{left:493.333333pt;}
.xcb_c00282{left:495.066667pt;}
.x113_c00282{left:496.933333pt;}
.x10b_c00282{left:497.866667pt;}
.xd1_c00282{left:498.800000pt;}
.xd7_c00282{left:501.066667pt;}
.xe2_c00282{left:502.533333pt;}
.x12f_c00282{left:503.600000pt;}
.x137_c00282{left:505.066667pt;}
.x101_c00282{left:506.133333pt;}
.x108_c00282{left:508.666667pt;}
.x125_c00282{left:509.600000pt;}
.x117_c00282{left:511.333333pt;}
.xc4_c00282{left:512.666667pt;}
.xdc_c00282{left:513.600000pt;}
.xd8_c00282{left:515.200000pt;}
.x12a_c00282{left:517.066667pt;}
.x122_c00282{left:518.800000pt;}
.x11b_c00282{left:520.666667pt;}
.xbc_c00282{left:525.600000pt;}
.xe9_c00282{left:529.333333pt;}
.xb4_c00282{left:530.266667pt;}
.xdd_c00282{left:532.133333pt;}
.x10c_c00282{left:533.733333pt;}
.xcc_c00282{left:536.000000pt;}
.xf5_c00282{left:539.200000pt;}
.xbd_c00282{left:540.666667pt;}
.xf0_c00282{left:542.266667pt;}
.xab_c00282{left:545.200000pt;}
.xd2_c00282{left:547.066667pt;}
.xfa_c00282{left:549.066667pt;}
.x126_c00282{left:550.533333pt;}
.xe3_c00282{left:554.400000pt;}
.x11f_c00282{left:555.333333pt;}
.x12c_c00282{left:558.133333pt;}
.xfe_c00282{left:559.333333pt;}
.xcd_c00282{left:560.933333pt;}
.xf8_c00282{left:562.000000pt;}
.x109_c00282{left:563.066667pt;}
.xbe_c00282{left:564.400000pt;}
.xb5_c00282{left:565.733333pt;}
.xfb_c00282{left:568.000000pt;}
.xac_c00282{left:569.200000pt;}
.x13f_c00282{left:571.333333pt;}
.xc5_c00282{left:574.400000pt;}
.x110_c00282{left:575.333333pt;}
.xea_c00282{left:576.933333pt;}
.x138_c00282{left:578.000000pt;}
.x11c_c00282{left:578.933333pt;}
.x102_c00282{left:580.666667pt;}
.x130_c00282{left:584.000000pt;}
.xc6_c00282{left:585.866667pt;}
.xad_c00282{left:587.466667pt;}
.x12b_c00282{left:589.066667pt;}
.xd9_c00282{left:591.333333pt;}
.x127_c00282{left:594.400000pt;}
.xce_c00282{left:595.866667pt;}
.x118_c00282{left:596.800000pt;}
.x116_c00282{left:598.133333pt;}
.xeb_c00282{left:600.666667pt;}
.xd3_c00282{left:602.133333pt;}
.xe4_c00282{left:604.266667pt;}
.x103_c00282{left:605.333333pt;}
.xc7_c00282{left:606.933333pt;}
.x114_c00282{left:608.266667pt;}
.x134_c00282{left:610.666667pt;}
.xde_c00282{left:611.733333pt;}
.xae_c00282{left:612.800000pt;}
.x14a_c00282{left:614.000000pt;}
.xec_c00282{left:615.333333pt;}
.xcf_c00282{left:616.666667pt;}
.xb6_c00282{left:617.866667pt;}
.x13c_c00282{left:618.933333pt;}
.xbf_c00282{left:620.400000pt;}
.x10a_c00282{left:622.000000pt;}
.xf1_c00282{left:622.933333pt;}
.xd4_c00282{left:624.800000pt;}
.xfc_c00282{left:626.266667pt;}
.xaf_c00282{left:628.133333pt;}
.x119_c00282{left:631.333333pt;}
.xf2_c00282{left:632.266667pt;}
.x141_c00282{left:634.800000pt;}
.xff_c00282{left:636.533333pt;}
.x139_c00282{left:637.466667pt;}
.x145_c00282{left:638.533333pt;}
.xdf_c00282{left:639.600000pt;}
.x111_c00282{left:640.666667pt;}
.xc8_c00282{left:644.400000pt;}
.xb0_c00282{left:647.600000pt;}
.x10d_c00282{left:648.933333pt;}
.x115_c00282{left:649.866667pt;}
.xe5_c00282{left:652.000000pt;}
.x142_c00282{left:653.066667pt;}
.xb7_c00282{left:654.000000pt;}
.x13a_c00282{left:655.333333pt;}
.xed_c00282{left:656.933333pt;}
.x132_c00282{left:658.666667pt;}
.x100_c00282{left:660.800000pt;}
.x146_c00282{left:663.200000pt;}
.x128_c00282{left:664.133333pt;}
.xfd_c00282{left:665.333333pt;}
.x120_c00282{left:666.400000pt;}
.xd5_c00282{left:668.000000pt;}
.x2_c00282{left:669.733333pt;}
.xf3_c00282{left:670.933333pt;}
.x104_c00282{left:672.533333pt;}
.xc9_c00282{left:674.133333pt;}
.xee_c00282{left:676.400000pt;}
.x121_c00282{left:678.266667pt;}
.xe6_c00282{left:681.066667pt;}
.x140_c00282{left:684.666667pt;}
.x135_c00282{left:686.400000pt;}
.xb1_c00282{left:690.800000pt;}
.x10e_c00282{left:692.400000pt;}
}





/* 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_c00283 {
    display:none;
  }
  .loading-indicator_c00283.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00283 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_c00283 { 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_c00283" -> "#page-container .classname_c00283")
 */
.pf_c00283 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00283 { /* 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_c00283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00283 { /* 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_c00283 { /* 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_c00283 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00283 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00283 {overflow:visible;}
  }
}
.c_c00283 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00283 { /* 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_c00283:after { /* webkit #35443 */
  content: '';
}
.t_c00283:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00283 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 */
}
.__c00283 { /* 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_c00283 { /* info for Javascript */
  display:none;
}
.l_c00283 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00283 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00283 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00283: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_c00283 {
    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_c00283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00283.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_c00283 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00283;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.000000;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;}
.m41_c00283{transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);}
.m38_c00283{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00283{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mce_c00283{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00283{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00283{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m23_c00283{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00283{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00283{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00283{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb_c00283{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00283{transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00283{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md3_c00283{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.md5_c00283{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00283{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m95_c00283{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00283{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00283{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m18_c00283{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m35_c00283{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00283{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m24_c00283{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00283{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m80_c00283{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m76_c00283{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00283{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7_c00283{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00283{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m108_c00283{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m85_c00283{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m87_c00283{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00283{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00283{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m25_c00283{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mca_c00283{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00283{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m36_c00283{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m83_c00283{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00283{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m19_c00283{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00283{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m22_c00283{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me1_c00283{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00283{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00283{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00283{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m46_c00283{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00283{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mef_c00283{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00283{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00283{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m103_c00283{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m58_c00283{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m33_c00283{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m88_c00283{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00283{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00283{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.med_c00283{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m68_c00283{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m70_c00283{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00283{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00283{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m101_c00283{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me0_c00283{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00283{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mde_c00283{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mea_c00283{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00283{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00283{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00283{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md8_c00283{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00283{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00283{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m77_c00283{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00283{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00283{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00283{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m89_c00283{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m17_c00283{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m86_c00283{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00283{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.maa_c00283{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m15_c00283{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m71_c00283{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m65_c00283{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m37_c00283{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00283{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m78_c00283{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m11_c00283{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00283{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m63_c00283{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m69_c00283{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10_c00283{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00283{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00283{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m81_c00283{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m99_c00283{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5_c00283{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m53_c00283{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m59_c00283{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00283{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00283{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00283{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m56_c00283{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m97_c00283{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4_c00283{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mba_c00283{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m16_c00283{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me5_c00283{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00283{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00283{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m51_c00283{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m52_c00283{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m28_c00283{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me9_c00283{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00283{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00283{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m74_c00283{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00283{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00283{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mae_c00283{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me_c00283{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00283{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m32_c00283{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m96_c00283{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00283{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md6_c00283{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m57_c00283{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m47_c00283{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mec_c00283{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m20_c00283{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00283{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00283{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00283{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m61_c00283{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00283{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md9_c00283{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.meb_c00283{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.maf_c00283{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mee_c00283{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m110_c00283{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m107_c00283{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m43_c00283{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mc_c00283{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00283{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m94_c00283{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m62_c00283{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf_c00283{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m106_c00283{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00283{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00283{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00283{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.ma_c00283{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00283{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m67_c00283{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00283{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00283{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00283{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m31_c00283{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me8_c00283{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m40_c00283{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m105_c00283{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mac_c00283{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m75_c00283{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00283{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m82_c00283{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me3_c00283{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00283{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00283{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m21_c00283{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m27_c00283{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00283{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m64_c00283{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00283{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m72_c00283{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m79_c00283{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00283{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m42_c00283{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00283{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m34_c00283{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00283{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m55_c00283{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me4_c00283{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00283{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6_c00283{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00283{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00283{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8_c00283{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00283{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00283{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mad_c00283{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m66_c00283{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m45_c00283{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m102_c00283{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00283{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.md_c00283{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m14_c00283{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00283{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m50_c00283{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00283{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me2_c00283{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00283{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00283{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00283{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00283{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00283{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00283{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m92_c00283{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m49_c00283{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00283{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00283{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m44_c00283{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m60_c00283{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00283{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00283{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mda_c00283{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m104_c00283{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mff_c00283{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m100_c00283{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00283{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00283{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00283{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.me7_c00283{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00283{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00283{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00283{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m48_c00283{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00283{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m29_c00283{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00283{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00283{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00283{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m54_c00283{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00283{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m30_c00283{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00283{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.me6_c00283{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00283{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m91_c00283{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m9_c00283{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m13_c00283{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00283{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m98_c00283{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00283{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.md1_c00283{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m12_c00283{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00283{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00283{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m90_c00283{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00283{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m93_c00283{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m109_c00283{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m39_c00283{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00283{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md0_c00283{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00283{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00283{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.mab_c00283{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m73_c00283{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00283{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00283{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00283{transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);}
.md4_c00283{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.md7_c00283{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00283{transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00283{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m26_c00283{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.md2_c00283{transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls0_c00283{letter-spacing:0.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{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__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00283{word-spacing:-15.171821px;}
.ws0_c00283{word-spacing:-4.722222px;}
.ws3_c00283{word-spacing:0.000000px;}
.ws1_c00283{word-spacing:16.704871px;}
.fc0_c00283{color:transparent;}
.fs6_c00283{font-size:30.000000px;}
.fs5_c00283{font-size:42.000000px;}
.fs7_c00283{font-size:48.000000px;}
.fs3_c00283{font-size:60.000000px;}
.fs1_c00283{font-size:66.000000px;}
.fs2_c00283{font-size:72.000000px;}
.fs4_c00283{font-size:78.000000px;}
.fs0_c00283{font-size:108.000000px;}
.y0_c00283{bottom:0.000000px;}
.y60_c00283{bottom:186.150000px;}
.y32_c00283{bottom:191.250000px;}
.y5f_c00283{bottom:200.850000px;}
.y31_c00283{bottom:209.250000px;}
.y30_c00283{bottom:226.950000px;}
.y5e_c00283{bottom:242.250000px;}
.y2f_c00283{bottom:244.200000px;}
.y5d_c00283{bottom:259.950000px;}
.y2e_c00283{bottom:261.900000px;}
.y5c_c00283{bottom:277.500000px;}
.y2d_c00283{bottom:279.600000px;}
.y5b_c00283{bottom:295.200000px;}
.y2c_c00283{bottom:297.300000px;}
.y2b_c00283{bottom:315.000000px;}
.y5a_c00283{bottom:317.100000px;}
.y59_c00283{bottom:335.100000px;}
.y2a_c00283{bottom:338.400000px;}
.y29_c00283{bottom:353.100000px;}
.y58_c00283{bottom:353.550000px;}
.y28_c00283{bottom:373.800000px;}
.y57_c00283{bottom:376.800000px;}
.y27_c00283{bottom:392.100000px;}
.y56_c00283{bottom:392.700000px;}
.y26_c00283{bottom:398.850000px;}
.y55_c00283{bottom:411.000000px;}
.y25_c00283{bottom:418.350000px;}
.y54_c00283{bottom:428.700000px;}
.y24_c00283{bottom:436.350000px;}
.y53_c00283{bottom:446.700000px;}
.y23_c00283{bottom:457.650000px;}
.y52_c00283{bottom:468.750000px;}
.y22_c00283{bottom:476.700000px;}
.y51_c00283{bottom:491.100000px;}
.y50_c00283{bottom:513.300000px;}
.y21_c00283{bottom:516.300000px;}
.y4f_c00283{bottom:531.300000px;}
.y20_c00283{bottom:537.300000px;}
.y4e_c00283{bottom:549.300000px;}
.y1f_c00283{bottom:555.300000px;}
.y4d_c00283{bottom:567.000000px;}
.y1e_c00283{bottom:573.300000px;}
.y4c_c00283{bottom:588.600000px;}
.y1d_c00283{bottom:591.000000px;}
.y4b_c00283{bottom:606.900000px;}
.y1c_c00283{bottom:608.700000px;}
.y1b_c00283{bottom:626.700000px;}
.y4a_c00283{bottom:628.950000px;}
.y1a_c00283{bottom:644.700000px;}
.y49_c00283{bottom:646.950000px;}
.y19_c00283{bottom:662.400000px;}
.y48_c00283{bottom:664.650000px;}
.y18_c00283{bottom:680.400000px;}
.y47_c00283{bottom:682.950000px;}
.y46_c00283{bottom:700.200000px;}
.y17_c00283{bottom:702.600000px;}
.y45_c00283{bottom:717.900000px;}
.y16_c00283{bottom:720.300000px;}
.y44_c00283{bottom:735.900000px;}
.y15_c00283{bottom:738.300000px;}
.y43_c00283{bottom:753.600000px;}
.y14_c00283{bottom:756.300000px;}
.y42_c00283{bottom:771.600000px;}
.y13_c00283{bottom:774.300000px;}
.y41_c00283{bottom:789.300000px;}
.y12_c00283{bottom:792.000000px;}
.y40_c00283{bottom:807.300000px;}
.y11_c00283{bottom:810.000000px;}
.y3f_c00283{bottom:825.000000px;}
.y10_c00283{bottom:828.000000px;}
.y3e_c00283{bottom:843.000000px;}
.yf_c00283{bottom:852.150000px;}
.y3d_c00283{bottom:860.700000px;}
.ye_c00283{bottom:866.850000px;}
.y3c_c00283{bottom:880.950000px;}
.yd_c00283{bottom:886.950000px;}
.y3b_c00283{bottom:891.000000px;}
.yc_c00283{bottom:904.650000px;}
.y3a_c00283{bottom:907.950000px;}
.y39_c00283{bottom:917.250000px;}
.yb_c00283{bottom:924.900000px;}
.y38_c00283{bottom:943.650000px;}
.ya_c00283{bottom:948.600000px;}
.y9_c00283{bottom:966.150000px;}
.y37_c00283{bottom:966.300000px;}
.y8_c00283{bottom:984.900000px;}
.y36_c00283{bottom:990.750000px;}
.y7_c00283{bottom:1002.600000px;}
.y6_c00283{bottom:1020.900000px;}
.y35_c00283{bottom:1023.900000px;}
.y5_c00283{bottom:1041.150000px;}
.y34_c00283{bottom:1058.100000px;}
.y4_c00283{bottom:1059.150000px;}
.y33_c00283{bottom:1076.100000px;}
.y3_c00283{bottom:1098.000000px;}
.y2_c00283{bottom:1116.000000px;}
.y1_c00283{bottom:1143.000000px;}
.h8_c00283{height:30.000000px;}
.h7_c00283{height:42.000000px;}
.h9_c00283{height:48.000000px;}
.h5_c00283{height:60.000000px;}
.h3_c00283{height:66.000000px;}
.h4_c00283{height:72.000000px;}
.h6_c00283{height:78.000000px;}
.h2_c00283{height:108.000000px;}
.h1_c00283{height:1269.000000px;}
.h0_c00283{height:1269.359985px;}
.w1_c00283{width:961.500000px;}
.w0_c00283{width:961.560058px;}
.x0_c00283{left:0.000000px;}
.x8c_c00283{left:164.550000px;}
.x1_c00283{left:180.300000px;}
.x3_c00283{left:182.550000px;}
.x87_c00283{left:183.600000px;}
.x91_c00283{left:184.650000px;}
.x47_c00283{left:196.500000px;}
.x8f_c00283{left:198.300000px;}
.xb_c00283{left:199.650000px;}
.x4e_c00283{left:200.850000px;}
.x6d_c00283{left:202.350000px;}
.x66_c00283{left:209.550000px;}
.x15_c00283{left:218.100000px;}
.x39_c00283{left:220.800000px;}
.x3f_c00283{left:222.150000px;}
.x7d_c00283{left:223.650000px;}
.x11_c00283{left:225.000000px;}
.x34_c00283{left:226.500000px;}
.x32_c00283{left:231.900000px;}
.x88_c00283{left:233.250000px;}
.x67_c00283{left:235.050000px;}
.x48_c00283{left:237.600000px;}
.xc_c00283{left:239.550000px;}
.x52_c00283{left:241.350000px;}
.x56_c00283{left:243.300000px;}
.x24_c00283{left:245.250000px;}
.x6e_c00283{left:246.600000px;}
.x2a_c00283{left:247.650000px;}
.x4_c00283{left:250.650000px;}
.x79_c00283{left:252.300000px;}
.xd_c00283{left:253.650000px;}
.x98_c00283{left:255.450000px;}
.x53_c00283{left:257.250000px;}
.x93_c00283{left:262.050000px;}
.x12_c00283{left:263.550000px;}
.x64_c00283{left:265.350000px;}
.x92_c00283{left:269.550000px;}
.x61_c00283{left:271.050000px;}
.x1c_c00283{left:272.400000px;}
.x49_c00283{left:274.800000px;}
.x5_c00283{left:276.150000px;}
.x84_c00283{left:278.400000px;}
.x33_c00283{left:280.500000px;}
.x72_c00283{left:282.300000px;}
.x6a_c00283{left:284.250000px;}
.x25_c00283{left:287.400000px;}
.x2b_c00283{left:289.800000px;}
.x90_c00283{left:292.200000px;}
.x35_c00283{left:294.150000px;}
.x54_c00283{left:296.100000px;}
.x16_c00283{left:297.300000px;}
.x6b_c00283{left:298.350000px;}
.x6f_c00283{left:300.900000px;}
.x4a_c00283{left:303.300000px;}
.x96_c00283{left:307.650000px;}
.x6_c00283{left:309.600000px;}
.x41_c00283{left:312.900000px;}
.x3a_c00283{left:315.000000px;}
.x85_c00283{left:316.200000px;}
.x68_c00283{left:319.650000px;}
.x70_c00283{left:321.450000px;}
.x7a_c00283{left:323.250000px;}
.x42_c00283{left:324.750000px;}
.x2c_c00283{left:328.650000px;}
.x8e_c00283{left:332.250000px;}
.x1d_c00283{left:334.650000px;}
.x86_c00283{left:336.300000px;}
.xe_c00283{left:337.650000px;}
.x40_c00283{left:338.850000px;}
.x17_c00283{left:340.500000px;}
.x94_c00283{left:342.450000px;}
.x36_c00283{left:344.550000px;}
.x81_c00283{left:346.200000px;}
.x59_c00283{left:347.850000px;}
.x43_c00283{left:350.250000px;}
.x8d_c00283{left:352.200000px;}
.x73_c00283{left:354.000000px;}
.x18_c00283{left:355.200000px;}
.x62_c00283{left:356.400000px;}
.xf_c00283{left:358.200000px;}
.x13_c00283{left:362.250000px;}
.x71_c00283{left:363.900000px;}
.x7b_c00283{left:366.000000px;}
.x1e_c00283{left:367.050000px;}
.x74_c00283{left:369.450000px;}
.x4f_c00283{left:372.300000px;}
.x7e_c00283{left:373.350000px;}
.x7_c00283{left:374.700000px;}
.x1f_c00283{left:376.350000px;}
.x37_c00283{left:377.700000px;}
.x19_c00283{left:380.400000px;}
.x5c_c00283{left:381.450000px;}
.x26_c00283{left:382.500000px;}
.x89_c00283{left:383.700000px;}
.x3b_c00283{left:385.500000px;}
.x5a_c00283{left:386.700000px;}
.x7c_c00283{left:387.900000px;}
.x10_c00283{left:389.550000px;}
.x4b_c00283{left:391.650000px;}
.x63_c00283{left:393.900000px;}
.x3c_c00283{left:395.550000px;}
.x20_c00283{left:397.650000px;}
.x38_c00283{left:399.600000px;}
.x8_c00283{left:400.950000px;}
.x75_c00283{left:403.950000px;}
.x8a_c00283{left:407.850000px;}
.x2d_c00283{left:409.650000px;}
.x21_c00283{left:413.100000px;}
.x5f_c00283{left:416.250000px;}
.x44_c00283{left:417.900000px;}
.x9_c00283{left:418.950000px;}
.x50_c00283{left:420.600000px;}
.x27_c00283{left:422.400000px;}
.x76_c00283{left:424.800000px;}
.x5d_c00283{left:428.250000px;}
.x2_c00283{left:429.450000px;}
.x2e_c00283{left:432.000000px;}
.x57_c00283{left:435.450000px;}
.x22_c00283{left:436.500000px;}
.x28_c00283{left:438.600000px;}
.x7f_c00283{left:441.000000px;}
.x8b_c00283{left:443.550000px;}
.x14_c00283{left:446.100000px;}
.x99_c00283{left:448.350000px;}
.x65_c00283{left:450.750000px;}
.x51_c00283{left:453.000000px;}
.x4c_c00283{left:455.400000px;}
.x5b_c00283{left:456.900000px;}
.x3d_c00283{left:457.950000px;}
.x77_c00283{left:459.750000px;}
.x45_c00283{left:462.600000px;}
.x97_c00283{left:463.950000px;}
.x2f_c00283{left:465.150000px;}
.x60_c00283{left:466.650000px;}
.x29_c00283{left:471.300000px;}
.x46_c00283{left:472.650000px;}
.x1a_c00283{left:476.100000px;}
.x3e_c00283{left:477.750000px;}
.x82_c00283{left:480.750000px;}
.x5e_c00283{left:483.750000px;}
.xa_c00283{left:485.850000px;}
.x55_c00283{left:486.900000px;}
.x9b_c00283{left:488.250000px;}
.x4d_c00283{left:490.650000px;}
.x6c_c00283{left:492.150000px;}
.x80_c00283{left:493.500000px;}
.x83_c00283{left:495.900000px;}
.x95_c00283{left:498.150000px;}
.x30_c00283{left:500.850000px;}
.x78_c00283{left:504.000000px;}
.x69_c00283{left:505.350000px;}
.x58_c00283{left:506.700000px;}
.x23_c00283{left:508.500000px;}
.x31_c00283{left:511.350000px;}
.x9a_c00283{left:512.400000px;}
.x1b_c00283{left:517.200000px;}
.x11e_c00283{left:538.500000px;}
.xa5_c00283{left:541.800000px;}
.x11a_c00283{left:553.650000px;}
.x118_c00283{left:556.500000px;}
.x9c_c00283{left:558.750000px;}
.xd0_c00283{left:559.800000px;}
.x11b_c00283{left:575.250000px;}
.xfc_c00283{left:576.300000px;}
.xb4_c00283{left:577.500000px;}
.x106_c00283{left:578.550000px;}
.xc6_c00283{left:580.200000px;}
.xcd_c00283{left:581.850000px;}
.xb7_c00283{left:586.800000px;}
.xbe_c00283{left:588.450000px;}
.x115_c00283{left:591.900000px;}
.xae_c00283{left:595.200000px;}
.x101_c00283{left:597.300000px;}
.xe8_c00283{left:600.000000px;}
.xa4_c00283{left:601.050000px;}
.x10a_c00283{left:603.300000px;}
.xd8_c00283{left:606.000000px;}
.x9d_c00283{left:608.400000px;}
.xa6_c00283{left:610.950000px;}
.x107_c00283{left:612.000000px;}
.x116_c00283{left:613.200000px;}
.xaf_c00283{left:614.250000px;}
.xe9_c00283{left:616.500000px;}
.x108_c00283{left:619.650000px;}
.xd3_c00283{left:621.300000px;}
.xbf_c00283{left:624.000000px;}
.xd9_c00283{left:626.850000px;}
.xb0_c00283{left:630.000000px;}
.xe2_c00283{left:631.500000px;}
.xef_c00283{left:632.550000px;}
.x113_c00283{left:633.600000px;}
.xc8_c00283{left:636.900000px;}
.xf5_c00283{left:637.950000px;}
.x110_c00283{left:640.050000px;}
.xda_c00283{left:642.000000px;}
.xe6_c00283{left:648.150000px;}
.x9e_c00283{left:649.800000px;}
.xa7_c00283{left:651.600000px;}
.xb8_c00283{left:653.100000px;}
.xb5_c00283{left:658.200000px;}
.xe7_c00283{left:661.050000px;}
.xfa_c00283{left:662.100000px;}
.xf6_c00283{left:664.950000px;}
.xf3_c00283{left:666.450000px;}
.xb2_c00283{left:670.050000px;}
.x11f_c00283{left:671.400000px;}
.x104_c00283{left:673.350000px;}
.xd4_c00283{left:677.400000px;}
.x10b_c00283{left:678.600000px;}
.x11c_c00283{left:679.650000px;}
.x111_c00283{left:682.200000px;}
.xc0_c00283{left:686.700000px;}
.xea_c00283{left:690.600000px;}
.xfd_c00283{left:692.100000px;}
.xe3_c00283{left:696.000000px;}
.xc7_c00283{left:697.200000px;}
.x119_c00283{left:698.700000px;}
.xb6_c00283{left:700.200000px;}
.xfb_c00283{left:702.000000px;}
.xf7_c00283{left:704.250000px;}
.xa8_c00283{left:706.650000px;}
.x9f_c00283{left:707.700000px;}
.xce_c00283{left:709.200000px;}
.xc9_c00283{left:710.400000px;}
.xdb_c00283{left:711.900000px;}
.xeb_c00283{left:714.000000px;}
.xb9_c00283{left:715.050000px;}
.xfe_c00283{left:716.250000px;}
.xb1_c00283{left:718.200000px;}
.x102_c00283{left:719.400000px;}
.xc1_c00283{left:723.750000px;}
.x117_c00283{left:726.300000px;}
.xa0_c00283{left:728.550000px;}
.xe4_c00283{left:730.200000px;}
.xa9_c00283{left:732.150000px;}
.x11d_c00283{left:734.250000px;}
.xec_c00283{left:735.300000px;}
.xd5_c00283{left:738.300000px;}
.xdf_c00283{left:739.650000px;}
.x10c_c00283{left:741.600000px;}
.xd1_c00283{left:742.650000px;}
.xc2_c00283{left:744.600000px;}
.xa1_c00283{left:748.650000px;}
.xaa_c00283{left:749.850000px;}
.xe0_c00283{left:754.050000px;}
.xcf_c00283{left:759.600000px;}
.xf0_c00283{left:760.650000px;}
.x103_c00283{left:765.900000px;}
.xf1_c00283{left:771.750000px;}
.xff_c00283{left:773.100000px;}
.xca_c00283{left:774.900000px;}
.xc3_c00283{left:777.000000px;}
.xba_c00283{left:778.050000px;}
.xdc_c00283{left:780.300000px;}
.xf8_c00283{left:781.950000px;}
.xab_c00283{left:784.800000px;}
.xd6_c00283{left:786.150000px;}
.x10d_c00283{left:787.200000px;}
.xa2_c00283{left:791.100000px;}
.x112_c00283{left:792.300000px;}
.xed_c00283{left:793.650000px;}
.xcb_c00283{left:796.800000px;}
.x100_c00283{left:798.300000px;}
.xdd_c00283{left:800.100000px;}
.xbb_c00283{left:801.150000px;}
.xc4_c00283{left:806.100000px;}
.x105_c00283{left:810.600000px;}
.x10f_c00283{left:813.900000px;}
.xe1_c00283{left:815.550000px;}
.xcc_c00283{left:819.900000px;}
.x114_c00283{left:821.250000px;}
.xf9_c00283{left:823.350000px;}
.xc5_c00283{left:826.200000px;}
.xee_c00283{left:827.550000px;}
.xb3_c00283{left:831.300000px;}
.xf2_c00283{left:834.450000px;}
.x109_c00283{left:837.750000px;}
.xf4_c00283{left:838.800000px;}
.x10e_c00283{left:843.750000px;}
.xac_c00283{left:847.500000px;}
.xbd_c00283{left:849.000000px;}
.xe5_c00283{left:850.500000px;}
.xd2_c00283{left:852.450000px;}
.xbc_c00283{left:858.750000px;}
.xa3_c00283{left:861.300000px;}
.xde_c00283{left:862.350000px;}
.xd7_c00283{left:865.650000px;}
.xad_c00283{left:867.600000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws2_c00283{word-spacing:-13.486063pt;}
.ws0_c00283{word-spacing:-4.197531pt;}
.ws3_c00283{word-spacing:0.000000pt;}
.ws1_c00283{word-spacing:14.848774pt;}
.fs6_c00283{font-size:26.666667pt;}
.fs5_c00283{font-size:37.333333pt;}
.fs7_c00283{font-size:42.666667pt;}
.fs3_c00283{font-size:53.333333pt;}
.fs1_c00283{font-size:58.666667pt;}
.fs2_c00283{font-size:64.000000pt;}
.fs4_c00283{font-size:69.333333pt;}
.fs0_c00283{font-size:96.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y60_c00283{bottom:165.466667pt;}
.y32_c00283{bottom:170.000000pt;}
.y5f_c00283{bottom:178.533333pt;}
.y31_c00283{bottom:186.000000pt;}
.y30_c00283{bottom:201.733333pt;}
.y5e_c00283{bottom:215.333333pt;}
.y2f_c00283{bottom:217.066667pt;}
.y5d_c00283{bottom:231.066667pt;}
.y2e_c00283{bottom:232.800000pt;}
.y5c_c00283{bottom:246.666667pt;}
.y2d_c00283{bottom:248.533333pt;}
.y5b_c00283{bottom:262.400000pt;}
.y2c_c00283{bottom:264.266667pt;}
.y2b_c00283{bottom:280.000000pt;}
.y5a_c00283{bottom:281.866667pt;}
.y59_c00283{bottom:297.866667pt;}
.y2a_c00283{bottom:300.800000pt;}
.y29_c00283{bottom:313.866667pt;}
.y58_c00283{bottom:314.266667pt;}
.y28_c00283{bottom:332.266667pt;}
.y57_c00283{bottom:334.933333pt;}
.y27_c00283{bottom:348.533333pt;}
.y56_c00283{bottom:349.066667pt;}
.y26_c00283{bottom:354.533333pt;}
.y55_c00283{bottom:365.333333pt;}
.y25_c00283{bottom:371.866667pt;}
.y54_c00283{bottom:381.066667pt;}
.y24_c00283{bottom:387.866667pt;}
.y53_c00283{bottom:397.066667pt;}
.y23_c00283{bottom:406.800000pt;}
.y52_c00283{bottom:416.666667pt;}
.y22_c00283{bottom:423.733333pt;}
.y51_c00283{bottom:436.533333pt;}
.y50_c00283{bottom:456.266667pt;}
.y21_c00283{bottom:458.933333pt;}
.y4f_c00283{bottom:472.266667pt;}
.y20_c00283{bottom:477.600000pt;}
.y4e_c00283{bottom:488.266667pt;}
.y1f_c00283{bottom:493.600000pt;}
.y4d_c00283{bottom:504.000000pt;}
.y1e_c00283{bottom:509.600000pt;}
.y4c_c00283{bottom:523.200000pt;}
.y1d_c00283{bottom:525.333333pt;}
.y4b_c00283{bottom:539.466667pt;}
.y1c_c00283{bottom:541.066667pt;}
.y1b_c00283{bottom:557.066667pt;}
.y4a_c00283{bottom:559.066667pt;}
.y1a_c00283{bottom:573.066667pt;}
.y49_c00283{bottom:575.066667pt;}
.y19_c00283{bottom:588.800000pt;}
.y48_c00283{bottom:590.800000pt;}
.y18_c00283{bottom:604.800000pt;}
.y47_c00283{bottom:607.066667pt;}
.y46_c00283{bottom:622.400000pt;}
.y17_c00283{bottom:624.533333pt;}
.y45_c00283{bottom:638.133333pt;}
.y16_c00283{bottom:640.266667pt;}
.y44_c00283{bottom:654.133333pt;}
.y15_c00283{bottom:656.266667pt;}
.y43_c00283{bottom:669.866667pt;}
.y14_c00283{bottom:672.266667pt;}
.y42_c00283{bottom:685.866667pt;}
.y13_c00283{bottom:688.266667pt;}
.y41_c00283{bottom:701.600000pt;}
.y12_c00283{bottom:704.000000pt;}
.y40_c00283{bottom:717.600000pt;}
.y11_c00283{bottom:720.000000pt;}
.y3f_c00283{bottom:733.333333pt;}
.y10_c00283{bottom:736.000000pt;}
.y3e_c00283{bottom:749.333333pt;}
.yf_c00283{bottom:757.466667pt;}
.y3d_c00283{bottom:765.066667pt;}
.ye_c00283{bottom:770.533333pt;}
.y3c_c00283{bottom:783.066667pt;}
.yd_c00283{bottom:788.400000pt;}
.y3b_c00283{bottom:792.000000pt;}
.yc_c00283{bottom:804.133333pt;}
.y3a_c00283{bottom:807.066667pt;}
.y39_c00283{bottom:815.333333pt;}
.yb_c00283{bottom:822.133333pt;}
.y38_c00283{bottom:838.800000pt;}
.ya_c00283{bottom:843.200000pt;}
.y9_c00283{bottom:858.800000pt;}
.y37_c00283{bottom:858.933333pt;}
.y8_c00283{bottom:875.466667pt;}
.y36_c00283{bottom:880.666667pt;}
.y7_c00283{bottom:891.200000pt;}
.y6_c00283{bottom:907.466667pt;}
.y35_c00283{bottom:910.133333pt;}
.y5_c00283{bottom:925.466667pt;}
.y34_c00283{bottom:940.533333pt;}
.y4_c00283{bottom:941.466667pt;}
.y33_c00283{bottom:956.533333pt;}
.y3_c00283{bottom:976.000000pt;}
.y2_c00283{bottom:992.000000pt;}
.y1_c00283{bottom:1016.000000pt;}
.h8_c00283{height:26.666667pt;}
.h7_c00283{height:37.333333pt;}
.h9_c00283{height:42.666667pt;}
.h5_c00283{height:53.333333pt;}
.h3_c00283{height:58.666667pt;}
.h4_c00283{height:64.000000pt;}
.h6_c00283{height:69.333333pt;}
.h2_c00283{height:96.000000pt;}
.h1_c00283{height:1128.000000pt;}
.h0_c00283{height:1128.319987pt;}
.w1_c00283{width:854.666667pt;}
.w0_c00283{width:854.720052pt;}
.x0_c00283{left:0.000000pt;}
.x8c_c00283{left:146.266667pt;}
.x1_c00283{left:160.266667pt;}
.x3_c00283{left:162.266667pt;}
.x87_c00283{left:163.200000pt;}
.x91_c00283{left:164.133333pt;}
.x47_c00283{left:174.666667pt;}
.x8f_c00283{left:176.266667pt;}
.xb_c00283{left:177.466667pt;}
.x4e_c00283{left:178.533333pt;}
.x6d_c00283{left:179.866667pt;}
.x66_c00283{left:186.266667pt;}
.x15_c00283{left:193.866667pt;}
.x39_c00283{left:196.266667pt;}
.x3f_c00283{left:197.466667pt;}
.x7d_c00283{left:198.800000pt;}
.x11_c00283{left:200.000000pt;}
.x34_c00283{left:201.333333pt;}
.x32_c00283{left:206.133333pt;}
.x88_c00283{left:207.333333pt;}
.x67_c00283{left:208.933333pt;}
.x48_c00283{left:211.200000pt;}
.xc_c00283{left:212.933333pt;}
.x52_c00283{left:214.533333pt;}
.x56_c00283{left:216.266667pt;}
.x24_c00283{left:218.000000pt;}
.x6e_c00283{left:219.200000pt;}
.x2a_c00283{left:220.133333pt;}
.x4_c00283{left:222.800000pt;}
.x79_c00283{left:224.266667pt;}
.xd_c00283{left:225.466667pt;}
.x98_c00283{left:227.066667pt;}
.x53_c00283{left:228.666667pt;}
.x93_c00283{left:232.933333pt;}
.x12_c00283{left:234.266667pt;}
.x64_c00283{left:235.866667pt;}
.x92_c00283{left:239.600000pt;}
.x61_c00283{left:240.933333pt;}
.x1c_c00283{left:242.133333pt;}
.x49_c00283{left:244.266667pt;}
.x5_c00283{left:245.466667pt;}
.x84_c00283{left:247.466667pt;}
.x33_c00283{left:249.333333pt;}
.x72_c00283{left:250.933333pt;}
.x6a_c00283{left:252.666667pt;}
.x25_c00283{left:255.466667pt;}
.x2b_c00283{left:257.600000pt;}
.x90_c00283{left:259.733333pt;}
.x35_c00283{left:261.466667pt;}
.x54_c00283{left:263.200000pt;}
.x16_c00283{left:264.266667pt;}
.x6b_c00283{left:265.200000pt;}
.x6f_c00283{left:267.466667pt;}
.x4a_c00283{left:269.600000pt;}
.x96_c00283{left:273.466667pt;}
.x6_c00283{left:275.200000pt;}
.x41_c00283{left:278.133333pt;}
.x3a_c00283{left:280.000000pt;}
.x85_c00283{left:281.066667pt;}
.x68_c00283{left:284.133333pt;}
.x70_c00283{left:285.733333pt;}
.x7a_c00283{left:287.333333pt;}
.x42_c00283{left:288.666667pt;}
.x2c_c00283{left:292.133333pt;}
.x8e_c00283{left:295.333333pt;}
.x1d_c00283{left:297.466667pt;}
.x86_c00283{left:298.933333pt;}
.xe_c00283{left:300.133333pt;}
.x40_c00283{left:301.200000pt;}
.x17_c00283{left:302.666667pt;}
.x94_c00283{left:304.400000pt;}
.x36_c00283{left:306.266667pt;}
.x81_c00283{left:307.733333pt;}
.x59_c00283{left:309.200000pt;}
.x43_c00283{left:311.333333pt;}
.x8d_c00283{left:313.066667pt;}
.x73_c00283{left:314.666667pt;}
.x18_c00283{left:315.733333pt;}
.x62_c00283{left:316.800000pt;}
.xf_c00283{left:318.400000pt;}
.x13_c00283{left:322.000000pt;}
.x71_c00283{left:323.466667pt;}
.x7b_c00283{left:325.333333pt;}
.x1e_c00283{left:326.266667pt;}
.x74_c00283{left:328.400000pt;}
.x4f_c00283{left:330.933333pt;}
.x7e_c00283{left:331.866667pt;}
.x7_c00283{left:333.066667pt;}
.x1f_c00283{left:334.533333pt;}
.x37_c00283{left:335.733333pt;}
.x19_c00283{left:338.133333pt;}
.x5c_c00283{left:339.066667pt;}
.x26_c00283{left:340.000000pt;}
.x89_c00283{left:341.066667pt;}
.x3b_c00283{left:342.666667pt;}
.x5a_c00283{left:343.733333pt;}
.x7c_c00283{left:344.800000pt;}
.x10_c00283{left:346.266667pt;}
.x4b_c00283{left:348.133333pt;}
.x63_c00283{left:350.133333pt;}
.x3c_c00283{left:351.600000pt;}
.x20_c00283{left:353.466667pt;}
.x38_c00283{left:355.200000pt;}
.x8_c00283{left:356.400000pt;}
.x75_c00283{left:359.066667pt;}
.x8a_c00283{left:362.533333pt;}
.x2d_c00283{left:364.133333pt;}
.x21_c00283{left:367.200000pt;}
.x5f_c00283{left:370.000000pt;}
.x44_c00283{left:371.466667pt;}
.x9_c00283{left:372.400000pt;}
.x50_c00283{left:373.866667pt;}
.x27_c00283{left:375.466667pt;}
.x76_c00283{left:377.600000pt;}
.x5d_c00283{left:380.666667pt;}
.x2_c00283{left:381.733333pt;}
.x2e_c00283{left:384.000000pt;}
.x57_c00283{left:387.066667pt;}
.x22_c00283{left:388.000000pt;}
.x28_c00283{left:389.866667pt;}
.x7f_c00283{left:392.000000pt;}
.x8b_c00283{left:394.266667pt;}
.x14_c00283{left:396.533333pt;}
.x99_c00283{left:398.533333pt;}
.x65_c00283{left:400.666667pt;}
.x51_c00283{left:402.666667pt;}
.x4c_c00283{left:404.800000pt;}
.x5b_c00283{left:406.133333pt;}
.x3d_c00283{left:407.066667pt;}
.x77_c00283{left:408.666667pt;}
.x45_c00283{left:411.200000pt;}
.x97_c00283{left:412.400000pt;}
.x2f_c00283{left:413.466667pt;}
.x60_c00283{left:414.800000pt;}
.x29_c00283{left:418.933333pt;}
.x46_c00283{left:420.133333pt;}
.x1a_c00283{left:423.200000pt;}
.x3e_c00283{left:424.666667pt;}
.x82_c00283{left:427.333333pt;}
.x5e_c00283{left:430.000000pt;}
.xa_c00283{left:431.866667pt;}
.x55_c00283{left:432.800000pt;}
.x9b_c00283{left:434.000000pt;}
.x4d_c00283{left:436.133333pt;}
.x6c_c00283{left:437.466667pt;}
.x80_c00283{left:438.666667pt;}
.x83_c00283{left:440.800000pt;}
.x95_c00283{left:442.800000pt;}
.x30_c00283{left:445.200000pt;}
.x78_c00283{left:448.000000pt;}
.x69_c00283{left:449.200000pt;}
.x58_c00283{left:450.400000pt;}
.x23_c00283{left:452.000000pt;}
.x31_c00283{left:454.533333pt;}
.x9a_c00283{left:455.466667pt;}
.x1b_c00283{left:459.733333pt;}
.x11e_c00283{left:478.666667pt;}
.xa5_c00283{left:481.600000pt;}
.x11a_c00283{left:492.133333pt;}
.x118_c00283{left:494.666667pt;}
.x9c_c00283{left:496.666667pt;}
.xd0_c00283{left:497.600000pt;}
.x11b_c00283{left:511.333333pt;}
.xfc_c00283{left:512.266667pt;}
.xb4_c00283{left:513.333333pt;}
.x106_c00283{left:514.266667pt;}
.xc6_c00283{left:515.733333pt;}
.xcd_c00283{left:517.200000pt;}
.xb7_c00283{left:521.600000pt;}
.xbe_c00283{left:523.066667pt;}
.x115_c00283{left:526.133333pt;}
.xae_c00283{left:529.066667pt;}
.x101_c00283{left:530.933333pt;}
.xe8_c00283{left:533.333333pt;}
.xa4_c00283{left:534.266667pt;}
.x10a_c00283{left:536.266667pt;}
.xd8_c00283{left:538.666667pt;}
.x9d_c00283{left:540.800000pt;}
.xa6_c00283{left:543.066667pt;}
.x107_c00283{left:544.000000pt;}
.x116_c00283{left:545.066667pt;}
.xaf_c00283{left:546.000000pt;}
.xe9_c00283{left:548.000000pt;}
.x108_c00283{left:550.800000pt;}
.xd3_c00283{left:552.266667pt;}
.xbf_c00283{left:554.666667pt;}
.xd9_c00283{left:557.200000pt;}
.xb0_c00283{left:560.000000pt;}
.xe2_c00283{left:561.333333pt;}
.xef_c00283{left:562.266667pt;}
.x113_c00283{left:563.200000pt;}
.xc8_c00283{left:566.133333pt;}
.xf5_c00283{left:567.066667pt;}
.x110_c00283{left:568.933333pt;}
.xda_c00283{left:570.666667pt;}
.xe6_c00283{left:576.133333pt;}
.x9e_c00283{left:577.600000pt;}
.xa7_c00283{left:579.200000pt;}
.xb8_c00283{left:580.533333pt;}
.xb5_c00283{left:585.066667pt;}
.xe7_c00283{left:587.600000pt;}
.xfa_c00283{left:588.533333pt;}
.xf6_c00283{left:591.066667pt;}
.xf3_c00283{left:592.400000pt;}
.xb2_c00283{left:595.600000pt;}
.x11f_c00283{left:596.800000pt;}
.x104_c00283{left:598.533333pt;}
.xd4_c00283{left:602.133333pt;}
.x10b_c00283{left:603.200000pt;}
.x11c_c00283{left:604.133333pt;}
.x111_c00283{left:606.400000pt;}
.xc0_c00283{left:610.400000pt;}
.xea_c00283{left:613.866667pt;}
.xfd_c00283{left:615.200000pt;}
.xe3_c00283{left:618.666667pt;}
.xc7_c00283{left:619.733333pt;}
.x119_c00283{left:621.066667pt;}
.xb6_c00283{left:622.400000pt;}
.xfb_c00283{left:624.000000pt;}
.xf7_c00283{left:626.000000pt;}
.xa8_c00283{left:628.133333pt;}
.x9f_c00283{left:629.066667pt;}
.xce_c00283{left:630.400000pt;}
.xc9_c00283{left:631.466667pt;}
.xdb_c00283{left:632.800000pt;}
.xeb_c00283{left:634.666667pt;}
.xb9_c00283{left:635.600000pt;}
.xfe_c00283{left:636.666667pt;}
.xb1_c00283{left:638.400000pt;}
.x102_c00283{left:639.466667pt;}
.xc1_c00283{left:643.333333pt;}
.x117_c00283{left:645.600000pt;}
.xa0_c00283{left:647.600000pt;}
.xe4_c00283{left:649.066667pt;}
.xa9_c00283{left:650.800000pt;}
.x11d_c00283{left:652.666667pt;}
.xec_c00283{left:653.600000pt;}
.xd5_c00283{left:656.266667pt;}
.xdf_c00283{left:657.466667pt;}
.x10c_c00283{left:659.200000pt;}
.xd1_c00283{left:660.133333pt;}
.xc2_c00283{left:661.866667pt;}
.xa1_c00283{left:665.466667pt;}
.xaa_c00283{left:666.533333pt;}
.xe0_c00283{left:670.266667pt;}
.xcf_c00283{left:675.200000pt;}
.xf0_c00283{left:676.133333pt;}
.x103_c00283{left:680.800000pt;}
.xf1_c00283{left:686.000000pt;}
.xff_c00283{left:687.200000pt;}
.xca_c00283{left:688.800000pt;}
.xc3_c00283{left:690.666667pt;}
.xba_c00283{left:691.600000pt;}
.xdc_c00283{left:693.600000pt;}
.xf8_c00283{left:695.066667pt;}
.xab_c00283{left:697.600000pt;}
.xd6_c00283{left:698.800000pt;}
.x10d_c00283{left:699.733333pt;}
.xa2_c00283{left:703.200000pt;}
.x112_c00283{left:704.266667pt;}
.xed_c00283{left:705.466667pt;}
.xcb_c00283{left:708.266667pt;}
.x100_c00283{left:709.600000pt;}
.xdd_c00283{left:711.200000pt;}
.xbb_c00283{left:712.133333pt;}
.xc4_c00283{left:716.533333pt;}
.x105_c00283{left:720.533333pt;}
.x10f_c00283{left:723.466667pt;}
.xe1_c00283{left:724.933333pt;}
.xcc_c00283{left:728.800000pt;}
.x114_c00283{left:730.000000pt;}
.xf9_c00283{left:731.866667pt;}
.xc5_c00283{left:734.400000pt;}
.xee_c00283{left:735.600000pt;}
.xb3_c00283{left:738.933333pt;}
.xf2_c00283{left:741.733333pt;}
.x109_c00283{left:744.666667pt;}
.xf4_c00283{left:745.600000pt;}
.x10e_c00283{left:750.000000pt;}
.xac_c00283{left:753.333333pt;}
.xbd_c00283{left:754.666667pt;}
.xe5_c00283{left:756.000000pt;}
.xd2_c00283{left:757.733333pt;}
.xbc_c00283{left:763.333333pt;}
.xa3_c00283{left:765.600000pt;}
.xde_c00283{left:766.533333pt;}
.xd7_c00283{left:769.466667pt;}
.xad_c00283{left:771.200000pt;}
}





/* 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_c00284 {
    display:none;
  }
  .loading-indicator_c00284.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00284 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_c00284 { 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_c00284" -> "#page-container .classname_c00284")
 */
.pf_c00284 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00284 { /* 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_c00284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00284 { /* 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_c00284 { /* 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_c00284 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00284 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00284 {overflow:visible;}
  }
}
.c_c00284 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00284 { /* 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_c00284:after { /* webkit #35443 */
  content: '';
}
.t_c00284:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00284 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 */
}
.__c00284 { /* 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_c00284 { /* info for Javascript */
  display:none;
}
.l_c00284 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00284 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00284 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00284: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_c00284 {
    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_c00284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00284.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_c00284 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00284;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.000000;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;}
.mb3_c00284{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mab_c00284{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00284{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m50_c00284{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m42_c00284{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m72_c00284{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m64_c00284{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00284{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00284{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m54_c00284{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00284{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00284{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00284{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00284{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m118_c00284{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m115_c00284{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.md8_c00284{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00284{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m47_c00284{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00284{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md0_c00284{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00284{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m68_c00284{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m111_c00284{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00284{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md1_c00284{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m60_c00284{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m52_c00284{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00284{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m27_c00284{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m24_c00284{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00284{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mda_c00284{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m87_c00284{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00284{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00284{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00284{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m81_c00284{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00284{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00284{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m105_c00284{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md2_c00284{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mea_c00284{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m16_c00284{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m88_c00284{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00284{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.meb_c00284{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m25_c00284{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m33_c00284{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5_c00284{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m51_c00284{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m66_c00284{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00284{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m26_c00284{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00284{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00284{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mba_c00284{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m101_c00284{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m76_c00284{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00284{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00284{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00284{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m49_c00284{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m15_c00284{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mae_c00284{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m38_c00284{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00284{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m107_c00284{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00284{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m110_c00284{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m79_c00284{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m46_c00284{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m14_c00284{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00284{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00284{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00284{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m73_c00284{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00284{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00284{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m19_c00284{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00284{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m82_c00284{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m80_c00284{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m4_c00284{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00284{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00284{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00284{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m10_c00284{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md9_c00284{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00284{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m69_c00284{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m20_c00284{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00284{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6_c00284{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00284{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00284{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00284{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m44_c00284{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00284{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00284{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m89_c00284{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00284{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00284{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mf_c00284{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7_c00284{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m99_c00284{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m65_c00284{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m84_c00284{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00284{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00284{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00284{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00284{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m35_c00284{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00284{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00284{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m31_c00284{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00284{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00284{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma_c00284{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00284{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m36_c00284{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m45_c00284{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mee_c00284{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00284{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m100_c00284{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00284{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m43_c00284{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m58_c00284{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m53_c00284{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m90_c00284{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00284{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00284{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00284{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00284{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00284{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m93_c00284{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00284{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00284{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me2_c00284{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m11_c00284{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00284{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m37_c00284{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mde_c00284{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m108_c00284{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00284{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00284{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00284{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m34_c00284{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.maa_c00284{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m97_c00284{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00284{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00284{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me0_c00284{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m86_c00284{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00284{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00284{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m67_c00284{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m63_c00284{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md4_c00284{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2_c00284{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00284{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m39_c00284{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00284{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m75_c00284{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00284{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m85_c00284{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mca_c00284{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mb_c00284{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m77_c00284{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m28_c00284{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00284{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m95_c00284{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m96_c00284{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00284{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00284{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00284{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00284{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m23_c00284{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m62_c00284{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00284{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m113_c00284{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m103_c00284{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00284{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00284{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mce_c00284{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m104_c00284{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me6_c00284{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m30_c00284{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m55_c00284{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me_c00284{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00284{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m83_c00284{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00284{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00284{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00284{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m109_c00284{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.md_c00284{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me3_c00284{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.maf_c00284{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00284{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m71_c00284{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00284{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00284{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m74_c00284{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me7_c00284{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mc_c00284{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m57_c00284{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9_c00284{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00284{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m17_c00284{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00284{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m13_c00284{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00284{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.md7_c00284{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00284{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m41_c00284{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);}
.m6c_c00284{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.me5_c00284{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m98_c00284{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me4_c00284{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m18_c00284{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00284{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m94_c00284{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00284{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00284{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00284{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m12_c00284{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mef_c00284{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m91_c00284{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00284{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m116_c00284{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m114_c00284{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m78_c00284{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00284{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m56_c00284{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m92_c00284{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mec_c00284{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md6_c00284{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00284{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md3_c00284{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me1_c00284{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m22_c00284{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00284{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00284{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m40_c00284{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me8_c00284{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mff_c00284{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.med_c00284{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md5_c00284{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m117_c00284{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00284{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m102_c00284{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m32_c00284{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m8_c00284{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m59_c00284{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m29_c00284{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00284{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00284{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m106_c00284{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m61_c00284{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m112_c00284{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00284{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00284{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00284{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m21_c00284{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.me9_c00284{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00284{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m70_c00284{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00284{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.mad_c00284{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00284{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00284{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00284{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mac_c00284{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00284{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00284{transform:matrix(0.461250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00284{transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m48_c00284{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls0_c00284{letter-spacing:0.000000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{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__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00284{word-spacing:-5.714286px;}
.ws3_c00284{word-spacing:-1.566879px;}
.ws5_c00284{word-spacing:-0.641026px;}
.ws7_c00284{word-spacing:0.000000px;}
.ws0_c00284{word-spacing:9.535032px;}
.ws6_c00284{word-spacing:10.000000px;}
.ws4_c00284{word-spacing:18.812227px;}
.ws2_c00284{word-spacing:66.315789px;}
.fc0_c00284{color:transparent;}
.fs5_c00284{font-size:30.000000px;}
.fs4_c00284{font-size:54.000000px;}
.fs3_c00284{font-size:60.000000px;}
.fs2_c00284{font-size:66.000000px;}
.fs6_c00284{font-size:72.000000px;}
.fs0_c00284{font-size:78.000000px;}
.fs1_c00284{font-size:90.000000px;}
.y0_c00284{bottom:0.000000px;}
.y68_c00284{bottom:183.600000px;}
.y34_c00284{bottom:187.200000px;}
.y67_c00284{bottom:198.000000px;}
.y33_c00284{bottom:205.500000px;}
.y66_c00284{bottom:212.400000px;}
.y32_c00284{bottom:223.500000px;}
.y65_c00284{bottom:227.100000px;}
.y31_c00284{bottom:241.950000px;}
.y64_c00284{bottom:248.100000px;}
.y30_c00284{bottom:259.200000px;}
.y63_c00284{bottom:266.100000px;}
.y2f_c00284{bottom:277.500000px;}
.y62_c00284{bottom:284.100000px;}
.y2e_c00284{bottom:295.200000px;}
.y61_c00284{bottom:302.100000px;}
.y2d_c00284{bottom:313.500000px;}
.y60_c00284{bottom:324.000000px;}
.y2c_c00284{bottom:331.200000px;}
.y5f_c00284{bottom:342.000000px;}
.y2b_c00284{bottom:349.200000px;}
.y5e_c00284{bottom:359.250000px;}
.y2a_c00284{bottom:367.200000px;}
.y5d_c00284{bottom:381.600000px;}
.y29_c00284{bottom:384.600000px;}
.y5c_c00284{bottom:398.850000px;}
.y28_c00284{bottom:402.600000px;}
.y27_c00284{bottom:420.600000px;}
.y5b_c00284{bottom:426.300000px;}
.y26_c00284{bottom:438.300000px;}
.y5a_c00284{bottom:444.450000px;}
.y25_c00284{bottom:456.000000px;}
.y59_c00284{bottom:462.150000px;}
.y24_c00284{bottom:474.000000px;}
.y58_c00284{bottom:480.150000px;}
.y23_c00284{bottom:492.000000px;}
.y57_c00284{bottom:498.150000px;}
.y22_c00284{bottom:509.700000px;}
.y56_c00284{bottom:516.150000px;}
.y21_c00284{bottom:528.000000px;}
.y55_c00284{bottom:533.850000px;}
.y20_c00284{bottom:545.700000px;}
.y54_c00284{bottom:552.600000px;}
.y1f_c00284{bottom:565.950000px;}
.y53_c00284{bottom:570.300000px;}
.y1e_c00284{bottom:580.650000px;}
.y52_c00284{bottom:588.300000px;}
.y1d_c00284{bottom:596.100000px;}
.y51_c00284{bottom:609.150000px;}
.y1c_c00284{bottom:614.850000px;}
.y50_c00284{bottom:625.350000px;}
.y1b_c00284{bottom:633.600000px;}
.y35_c00284{bottom:639.300000px;}
.y4f_c00284{bottom:642.900000px;}
.y1a_c00284{bottom:651.300000px;}
.y4e_c00284{bottom:660.600000px;}
.y19_c00284{bottom:668.850000px;}
.y4d_c00284{bottom:682.350000px;}
.y4c_c00284{bottom:700.350000px;}
.y18_c00284{bottom:709.500000px;}
.y4b_c00284{bottom:718.050000px;}
.y17_c00284{bottom:726.450000px;}
.y4a_c00284{bottom:735.750000px;}
.y16_c00284{bottom:744.450000px;}
.y49_c00284{bottom:753.750000px;}
.y15_c00284{bottom:761.700000px;}
.y48_c00284{bottom:771.450000px;}
.y14_c00284{bottom:780.000000px;}
.y47_c00284{bottom:789.150000px;}
.y13_c00284{bottom:798.000000px;}
.y46_c00284{bottom:810.600000px;}
.y12_c00284{bottom:815.700000px;}
.y45_c00284{bottom:828.300000px;}
.y11_c00284{bottom:832.650000px;}
.y44_c00284{bottom:855.000000px;}
.y10_c00284{bottom:858.600000px;}
.yf_c00284{bottom:871.200000px;}
.y43_c00284{bottom:872.250000px;}
.ye_c00284{bottom:876.300000px;}
.y42_c00284{bottom:894.900000px;}
.yd_c00284{bottom:902.550000px;}
.y41_c00284{bottom:912.900000px;}
.yc_c00284{bottom:920.250000px;}
.y40_c00284{bottom:930.600000px;}
.yb_c00284{bottom:937.950000px;}
.y3f_c00284{bottom:948.600000px;}
.ya_c00284{bottom:957.000000px;}
.y3e_c00284{bottom:965.850000px;}
.y9_c00284{bottom:973.500000px;}
.y3d_c00284{bottom:983.850000px;}
.y8_c00284{bottom:990.750000px;}
.y3c_c00284{bottom:1001.550000px;}
.y3b_c00284{bottom:1023.600000px;}
.y7_c00284{bottom:1038.600000px;}
.y3a_c00284{bottom:1041.300000px;}
.y39_c00284{bottom:1059.300000px;}
.y6_c00284{bottom:1060.800000px;}
.y38_c00284{bottom:1077.000000px;}
.y5_c00284{bottom:1078.500000px;}
.y37_c00284{bottom:1094.700000px;}
.y4_c00284{bottom:1096.500000px;}
.y36_c00284{bottom:1112.400000px;}
.y3_c00284{bottom:1114.200000px;}
.y2_c00284{bottom:1136.100000px;}
.y1_c00284{bottom:1139.400000px;}
.h7_c00284{height:30.000000px;}
.h6_c00284{height:54.000000px;}
.h5_c00284{height:60.000000px;}
.h4_c00284{height:66.000000px;}
.h8_c00284{height:72.000000px;}
.h2_c00284{height:78.000000px;}
.h3_c00284{height:90.000000px;}
.h1_c00284{height:1271.250000px;}
.h0_c00284{height:1271.519990px;}
.w1_c00284{width:961.500000px;}
.w0_c00284{width:961.560058px;}
.x0_c00284{left:0.000000px;}
.xa1_c00284{left:36.750000px;}
.x8c_c00284{left:56.100000px;}
.xa2_c00284{left:67.350000px;}
.xa3_c00284{left:81.000000px;}
.x6c_c00284{left:92.850000px;}
.x70_c00284{left:108.300000px;}
.x68_c00284{left:110.250000px;}
.x78_c00284{left:111.750000px;}
.x6b_c00284{left:112.800000px;}
.x74_c00284{left:123.150000px;}
.x8d_c00284{left:125.850000px;}
.x9e_c00284{left:129.300000px;}
.x98_c00284{left:135.300000px;}
.x91_c00284{left:137.400000px;}
.x79_c00284{left:139.500000px;}
.x82_c00284{left:141.300000px;}
.x5f_c00284{left:143.100000px;}
.x57_c00284{left:144.450000px;}
.x53_c00284{left:146.250000px;}
.x3d_c00284{left:147.600000px;}
.x9_c00284{left:149.400000px;}
.x23_c00284{left:150.450000px;}
.x38_c00284{left:152.100000px;}
.x69_c00284{left:153.150000px;}
.x10_c00284{left:154.950000px;}
.x58_c00284{left:156.000000px;}
.x41_c00284{left:158.400000px;}
.x3_c00284{left:160.500000px;}
.x2d_c00284{left:162.450000px;}
.x9b_c00284{left:165.000000px;}
.x3e_c00284{left:166.350000px;}
.x20_c00284{left:168.450000px;}
.x4f_c00284{left:170.400000px;}
.x59_c00284{left:171.450000px;}
.x1a_c00284{left:173.100000px;}
.x84_c00284{left:175.050000px;}
.x11_c00284{left:176.850000px;}
.x3f_c00284{left:178.650000px;}
.x2e_c00284{left:180.150000px;}
.x93_c00284{left:181.500000px;}
.x32_c00284{left:182.700000px;}
.x47_c00284{left:184.200000px;}
.x7f_c00284{left:185.550000px;}
.x4c_c00284{left:187.350000px;}
.x29_c00284{left:190.500000px;}
.x6a_c00284{left:191.700000px;}
.x1b_c00284{left:193.950000px;}
.x21_c00284{left:195.750000px;}
.x12_c00284{left:197.400000px;}
.x39_c00284{left:199.950000px;}
.x4_c00284{left:204.450000px;}
.xa_c00284{left:206.250000px;}
.x5a_c00284{left:210.750000px;}
.x3a_c00284{left:212.550000px;}
.x24_c00284{left:214.500000px;}
.x26_c00284{left:216.000000px;}
.x66_c00284{left:218.850000px;}
.x6d_c00284{left:220.350000px;}
.x60_c00284{left:222.600000px;}
.x43_c00284{left:224.250000px;}
.x8e_c00284{left:228.000000px;}
.x1c_c00284{left:229.200000px;}
.x7b_c00284{left:230.250000px;}
.x33_c00284{left:231.300000px;}
.x87_c00284{left:233.850000px;}
.x5b_c00284{left:234.900000px;}
.x94_c00284{left:236.550000px;}
.x4d_c00284{left:238.050000px;}
.x88_c00284{left:244.200000px;}
.x83_c00284{left:246.750000px;}
.x71_c00284{left:247.950000px;}
.x2f_c00284{left:249.150000px;}
.x3b_c00284{left:250.650000px;}
.x96_c00284{left:251.850000px;}
.x8f_c00284{left:253.500000px;}
.x64_c00284{left:255.600000px;}
.x54_c00284{left:257.100000px;}
.x13_c00284{left:258.600000px;}
.x6e_c00284{left:260.250000px;}
.x44_c00284{left:261.300000px;}
.xb_c00284{left:262.800000px;}
.x34_c00284{left:265.500000px;}
.x67_c00284{left:267.750000px;}
.x2a_c00284{left:270.450000px;}
.x99_c00284{left:272.100000px;}
.x50_c00284{left:274.500000px;}
.x1d_c00284{left:275.700000px;}
.x48_c00284{left:277.050000px;}
.x3c_c00284{left:278.400000px;}
.x61_c00284{left:280.500000px;}
.x5_c00284{left:281.550000px;}
.x14_c00284{left:283.500000px;}
.x89_c00284{left:285.000000px;}
.x35_c00284{left:286.350000px;}
.x85_c00284{left:293.400000px;}
.x6_c00284{left:295.200000px;}
.x1e_c00284{left:297.000000px;}
.x30_c00284{left:298.200000px;}
.x55_c00284{left:299.550000px;}
.x5c_c00284{left:300.750000px;}
.x80_c00284{left:301.800000px;}
.xc_c00284{left:304.950000px;}
.x77_c00284{left:306.450000px;}
.x9f_c00284{left:307.950000px;}
.x51_c00284{left:309.750000px;}
.x15_c00284{left:312.600000px;}
.x90_c00284{left:318.000000px;}
.x95_c00284{left:319.950000px;}
.x5e_c00284{left:322.350000px;}
.xd_c00284{left:323.700000px;}
.x16_c00284{left:326.250000px;}
.x65_c00284{left:328.350000px;}
.x1f_c00284{left:329.700000px;}
.x7c_c00284{left:330.750000px;}
.x75_c00284{left:332.400000px;}
.x49_c00284{left:333.900000px;}
.x7_c00284{left:335.850000px;}
.x7d_c00284{left:339.000000px;}
.x27_c00284{left:340.350000px;}
.x1_c00284{left:342.000000px;}
.x86_c00284{left:343.050000px;}
.x36_c00284{left:345.000000px;}
.x8a_c00284{left:347.700000px;}
.x4a_c00284{left:350.100000px;}
.x45_c00284{left:352.350000px;}
.x9c_c00284{left:356.550000px;}
.x81_c00284{left:357.900000px;}
.x8_c00284{left:361.800000px;}
.x72_c00284{left:362.850000px;}
.x62_c00284{left:364.350000px;}
.x17_c00284{left:366.600000px;}
.x52_c00284{left:367.650000px;}
.x37_c00284{left:369.900000px;}
.x56_c00284{left:371.250000px;}
.x31_c00284{left:372.450000px;}
.x7e_c00284{left:375.300000px;}
.x22_c00284{left:378.300000px;}
.xe_c00284{left:379.500000px;}
.x7a_c00284{left:380.550000px;}
.x63_c00284{left:382.050000px;}
.x2b_c00284{left:383.550000px;}
.x9a_c00284{left:384.600000px;}
.x4e_c00284{left:386.700000px;}
.x18_c00284{left:388.500000px;}
.x5d_c00284{left:390.450000px;}
.x42_c00284{left:393.450000px;}
.x2c_c00284{left:397.200000px;}
.x92_c00284{left:398.250000px;}
.xf_c00284{left:400.050000px;}
.x4b_c00284{left:401.550000px;}
.x40_c00284{left:402.900000px;}
.x19_c00284{left:406.500000px;}
.x25_c00284{left:408.900000px;}
.x76_c00284{left:410.850000px;}
.x8b_c00284{left:412.500000px;}
.x46_c00284{left:414.600000px;}
.x9d_c00284{left:415.650000px;}
.x6f_c00284{left:416.850000px;}
.x73_c00284{left:418.350000px;}
.x28_c00284{left:419.850000px;}
.x97_c00284{left:425.850000px;}
.xa0_c00284{left:439.050000px;}
.x134_c00284{left:450.000000px;}
.x125_c00284{left:451.500000px;}
.x106_c00284{left:453.300000px;}
.xc9_c00284{left:455.700000px;}
.x127_c00284{left:466.950000px;}
.x12a_c00284{left:468.150000px;}
.x11b_c00284{left:469.800000px;}
.xf0_c00284{left:470.850000px;}
.xe5_c00284{left:472.200000px;}
.xc8_c00284{left:473.400000px;}
.xa4_c00284{left:474.450000px;}
.x137_c00284{left:479.100000px;}
.x129_c00284{left:488.100000px;}
.xf2_c00284{left:491.100000px;}
.xf8_c00284{left:494.400000px;}
.xe1_c00284{left:496.650000px;}
.x107_c00284{left:499.350000px;}
.xef_c00284{left:500.400000px;}
.x122_c00284{left:501.450000px;}
.xf9_c00284{left:503.100000px;}
.xa5_c00284{left:505.050000px;}
.xd0_c00284{left:506.100000px;}
.x104_c00284{left:507.300000px;}
.x135_c00284{left:509.100000px;}
.xdc_c00284{left:510.750000px;}
.x138_c00284{left:511.800000px;}
.xca_c00284{left:513.000000px;}
.xb4_c00284{left:515.850000px;}
.xfb_c00284{left:516.900000px;}
.x12b_c00284{left:519.300000px;}
.xc4_c00284{left:520.350000px;}
.x126_c00284{left:521.400000px;}
.xbb_c00284{left:523.350000px;}
.xfe_c00284{left:527.850000px;}
.xd1_c00284{left:529.500000px;}
.xae_c00284{left:533.250000px;}
.x128_c00284{left:534.300000px;}
.xcb_c00284{left:535.650000px;}
.x101_c00284{left:537.450000px;}
.x110_c00284{left:538.950000px;}
.xa6_c00284{left:540.000000px;}
.xf1_c00284{left:541.350000px;}
.x139_c00284{left:542.700000px;}
.x109_c00284{left:544.050000px;}
.x112_c00284{left:546.000000px;}
.x10c_c00284{left:548.250000px;}
.xc5_c00284{left:549.450000px;}
.xd7_c00284{left:550.500000px;}
.xb5_c00284{left:552.600000px;}
.xcc_c00284{left:553.950000px;}
.xea_c00284{left:555.750000px;}
.x12e_c00284{left:558.450000px;}
.xfc_c00284{left:562.200000px;}
.xbc_c00284{left:565.800000px;}
.x105_c00284{left:567.750000px;}
.xe6_c00284{left:568.950000px;}
.x12c_c00284{left:572.250000px;}
.x102_c00284{left:573.450000px;}
.xf3_c00284{left:574.650000px;}
.xa7_c00284{left:576.750000px;}
.xd8_c00284{left:579.000000px;}
.xf6_c00284{left:580.050000px;}
.x10d_c00284{left:582.450000px;}
.xbd_c00284{left:585.900000px;}
.x124_c00284{left:588.300000px;}
.xaf_c00284{left:591.600000px;}
.x116_c00284{left:594.450000px;}
.xe2_c00284{left:595.950000px;}
.xdd_c00284{left:597.450000px;}
.xcd_c00284{left:598.950000px;}
.x119_c00284{left:600.450000px;}
.xfd_c00284{left:601.500000px;}
.xed_c00284{left:603.900000px;}
.xe7_c00284{left:605.250000px;}
.xbe_c00284{left:606.450000px;}
.x130_c00284{left:610.050000px;}
.xfa_c00284{left:611.100000px;}
.xc6_c00284{left:615.600000px;}
.x108_c00284{left:617.100000px;}
.xd9_c00284{left:618.600000px;}
.xee_c00284{left:619.800000px;}
.xe8_c00284{left:621.150000px;}
.xa8_c00284{left:622.500000px;}
.x10e_c00284{left:626.400000px;}
.x11f_c00284{left:628.050000px;}
.xda_c00284{left:629.400000px;}
.x111_c00284{left:631.500000px;}
.x113_c00284{left:637.050000px;}
.xd2_c00284{left:638.250000px;}
.xde_c00284{left:641.700000px;}
.x12d_c00284{left:643.500000px;}
.x11a_c00284{left:646.200000px;}
.xe9_c00284{left:647.400000px;}
.xb0_c00284{left:649.200000px;}
.xce_c00284{left:651.450000px;}
.xb6_c00284{left:653.700000px;}
.xa9_c00284{left:655.200000px;}
.x10f_c00284{left:657.300000px;}
.xb7_c00284{left:660.600000px;}
.xf4_c00284{left:664.350000px;}
.xd3_c00284{left:665.550000px;}
.x114_c00284{left:666.900000px;}
.xbf_c00284{left:668.700000px;}
.xdf_c00284{left:670.500000px;}
.xeb_c00284{left:673.050000px;}
.xb1_c00284{left:675.900000px;}
.xf7_c00284{left:679.050000px;}
.x117_c00284{left:680.400000px;}
.xcf_c00284{left:682.350000px;}
.xaa_c00284{left:683.700000px;}
.xdb_c00284{left:685.950000px;}
.xc0_c00284{left:688.500000px;}
.xf5_c00284{left:693.150000px;}
.x120_c00284{left:697.950000px;}
.x11c_c00284{left:699.450000px;}
.x118_c00284{left:701.700000px;}
.xff_c00284{left:706.050000px;}
.xb8_c00284{left:707.100000px;}
.xe3_c00284{left:712.650000px;}
.x121_c00284{left:714.900000px;}
.x10a_c00284{left:716.100000px;}
.x13b_c00284{left:717.300000px;}
.xb2_c00284{left:718.800000px;}
.xab_c00284{left:721.500000px;}
.x12f_c00284{left:722.700000px;}
.x131_c00284{left:727.350000px;}
.xc1_c00284{left:728.400000px;}
.x103_c00284{left:729.750000px;}
.xd4_c00284{left:731.400000px;}
.xc7_c00284{left:732.600000px;}
.xec_c00284{left:735.300000px;}
.x100_c00284{left:737.700000px;}
.xc2_c00284{left:739.500000px;}
.xac_c00284{left:740.550000px;}
.x115_c00284{left:742.800000px;}
.x11d_c00284{left:744.750000px;}
.xb9_c00284{left:747.000000px;}
.x10b_c00284{left:748.500000px;}
.xe4_c00284{left:750.150000px;}
.xd5_c00284{left:751.950000px;}
.xc3_c00284{left:756.750000px;}
.xb3_c00284{left:758.400000px;}
.xe0_c00284{left:761.550000px;}
.x132_c00284{left:763.050000px;}
.x2_c00284{left:764.250000px;}
.x11e_c00284{left:765.600000px;}
.xba_c00284{left:767.100000px;}
.x123_c00284{left:769.800000px;}
.x136_c00284{left:771.450000px;}
.x13a_c00284{left:773.100000px;}
.xad_c00284{left:775.500000px;}
.x133_c00284{left:778.050000px;}
.xd6_c00284{left:779.700000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws1_c00284{word-spacing:-5.079365pt;}
.ws3_c00284{word-spacing:-1.392781pt;}
.ws5_c00284{word-spacing:-0.569801pt;}
.ws7_c00284{word-spacing:0.000000pt;}
.ws0_c00284{word-spacing:8.475584pt;}
.ws6_c00284{word-spacing:8.888889pt;}
.ws4_c00284{word-spacing:16.721980pt;}
.ws2_c00284{word-spacing:58.947368pt;}
.fs5_c00284{font-size:26.666667pt;}
.fs4_c00284{font-size:48.000000pt;}
.fs3_c00284{font-size:53.333333pt;}
.fs2_c00284{font-size:58.666667pt;}
.fs6_c00284{font-size:64.000000pt;}
.fs0_c00284{font-size:69.333333pt;}
.fs1_c00284{font-size:80.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y68_c00284{bottom:163.200000pt;}
.y34_c00284{bottom:166.400000pt;}
.y67_c00284{bottom:176.000000pt;}
.y33_c00284{bottom:182.666667pt;}
.y66_c00284{bottom:188.800000pt;}
.y32_c00284{bottom:198.666667pt;}
.y65_c00284{bottom:201.866667pt;}
.y31_c00284{bottom:215.066667pt;}
.y64_c00284{bottom:220.533333pt;}
.y30_c00284{bottom:230.400000pt;}
.y63_c00284{bottom:236.533333pt;}
.y2f_c00284{bottom:246.666667pt;}
.y62_c00284{bottom:252.533333pt;}
.y2e_c00284{bottom:262.400000pt;}
.y61_c00284{bottom:268.533333pt;}
.y2d_c00284{bottom:278.666667pt;}
.y60_c00284{bottom:288.000000pt;}
.y2c_c00284{bottom:294.400000pt;}
.y5f_c00284{bottom:304.000000pt;}
.y2b_c00284{bottom:310.400000pt;}
.y5e_c00284{bottom:319.333333pt;}
.y2a_c00284{bottom:326.400000pt;}
.y5d_c00284{bottom:339.200000pt;}
.y29_c00284{bottom:341.866667pt;}
.y5c_c00284{bottom:354.533333pt;}
.y28_c00284{bottom:357.866667pt;}
.y27_c00284{bottom:373.866667pt;}
.y5b_c00284{bottom:378.933333pt;}
.y26_c00284{bottom:389.600000pt;}
.y5a_c00284{bottom:395.066667pt;}
.y25_c00284{bottom:405.333333pt;}
.y59_c00284{bottom:410.800000pt;}
.y24_c00284{bottom:421.333333pt;}
.y58_c00284{bottom:426.800000pt;}
.y23_c00284{bottom:437.333333pt;}
.y57_c00284{bottom:442.800000pt;}
.y22_c00284{bottom:453.066667pt;}
.y56_c00284{bottom:458.800000pt;}
.y21_c00284{bottom:469.333333pt;}
.y55_c00284{bottom:474.533333pt;}
.y20_c00284{bottom:485.066667pt;}
.y54_c00284{bottom:491.200000pt;}
.y1f_c00284{bottom:503.066667pt;}
.y53_c00284{bottom:506.933333pt;}
.y1e_c00284{bottom:516.133333pt;}
.y52_c00284{bottom:522.933333pt;}
.y1d_c00284{bottom:529.866667pt;}
.y51_c00284{bottom:541.466667pt;}
.y1c_c00284{bottom:546.533333pt;}
.y50_c00284{bottom:555.866667pt;}
.y1b_c00284{bottom:563.200000pt;}
.y35_c00284{bottom:568.266667pt;}
.y4f_c00284{bottom:571.466667pt;}
.y1a_c00284{bottom:578.933333pt;}
.y4e_c00284{bottom:587.200000pt;}
.y19_c00284{bottom:594.533333pt;}
.y4d_c00284{bottom:606.533333pt;}
.y4c_c00284{bottom:622.533333pt;}
.y18_c00284{bottom:630.666667pt;}
.y4b_c00284{bottom:638.266667pt;}
.y17_c00284{bottom:645.733333pt;}
.y4a_c00284{bottom:654.000000pt;}
.y16_c00284{bottom:661.733333pt;}
.y49_c00284{bottom:670.000000pt;}
.y15_c00284{bottom:677.066667pt;}
.y48_c00284{bottom:685.733333pt;}
.y14_c00284{bottom:693.333333pt;}
.y47_c00284{bottom:701.466667pt;}
.y13_c00284{bottom:709.333333pt;}
.y46_c00284{bottom:720.533333pt;}
.y12_c00284{bottom:725.066667pt;}
.y45_c00284{bottom:736.266667pt;}
.y11_c00284{bottom:740.133333pt;}
.y44_c00284{bottom:760.000000pt;}
.y10_c00284{bottom:763.200000pt;}
.yf_c00284{bottom:774.400000pt;}
.y43_c00284{bottom:775.333333pt;}
.ye_c00284{bottom:778.933333pt;}
.y42_c00284{bottom:795.466667pt;}
.yd_c00284{bottom:802.266667pt;}
.y41_c00284{bottom:811.466667pt;}
.yc_c00284{bottom:818.000000pt;}
.y40_c00284{bottom:827.200000pt;}
.yb_c00284{bottom:833.733333pt;}
.y3f_c00284{bottom:843.200000pt;}
.ya_c00284{bottom:850.666667pt;}
.y3e_c00284{bottom:858.533333pt;}
.y9_c00284{bottom:865.333333pt;}
.y3d_c00284{bottom:874.533333pt;}
.y8_c00284{bottom:880.666667pt;}
.y3c_c00284{bottom:890.266667pt;}
.y3b_c00284{bottom:909.866667pt;}
.y7_c00284{bottom:923.200000pt;}
.y3a_c00284{bottom:925.600000pt;}
.y39_c00284{bottom:941.600000pt;}
.y6_c00284{bottom:942.933333pt;}
.y38_c00284{bottom:957.333333pt;}
.y5_c00284{bottom:958.666667pt;}
.y37_c00284{bottom:973.066667pt;}
.y4_c00284{bottom:974.666667pt;}
.y36_c00284{bottom:988.800000pt;}
.y3_c00284{bottom:990.400000pt;}
.y2_c00284{bottom:1009.866667pt;}
.y1_c00284{bottom:1012.800000pt;}
.h7_c00284{height:26.666667pt;}
.h6_c00284{height:48.000000pt;}
.h5_c00284{height:53.333333pt;}
.h4_c00284{height:58.666667pt;}
.h8_c00284{height:64.000000pt;}
.h2_c00284{height:69.333333pt;}
.h3_c00284{height:80.000000pt;}
.h1_c00284{height:1130.000000pt;}
.h0_c00284{height:1130.239991pt;}
.w1_c00284{width:854.666667pt;}
.w0_c00284{width:854.720052pt;}
.x0_c00284{left:0.000000pt;}
.xa1_c00284{left:32.666667pt;}
.x8c_c00284{left:49.866667pt;}
.xa2_c00284{left:59.866667pt;}
.xa3_c00284{left:72.000000pt;}
.x6c_c00284{left:82.533333pt;}
.x70_c00284{left:96.266667pt;}
.x68_c00284{left:98.000000pt;}
.x78_c00284{left:99.333333pt;}
.x6b_c00284{left:100.266667pt;}
.x74_c00284{left:109.466667pt;}
.x8d_c00284{left:111.866667pt;}
.x9e_c00284{left:114.933333pt;}
.x98_c00284{left:120.266667pt;}
.x91_c00284{left:122.133333pt;}
.x79_c00284{left:124.000000pt;}
.x82_c00284{left:125.600000pt;}
.x5f_c00284{left:127.200000pt;}
.x57_c00284{left:128.400000pt;}
.x53_c00284{left:130.000000pt;}
.x3d_c00284{left:131.200000pt;}
.x9_c00284{left:132.800000pt;}
.x23_c00284{left:133.733333pt;}
.x38_c00284{left:135.200000pt;}
.x69_c00284{left:136.133333pt;}
.x10_c00284{left:137.733333pt;}
.x58_c00284{left:138.666667pt;}
.x41_c00284{left:140.800000pt;}
.x3_c00284{left:142.666667pt;}
.x2d_c00284{left:144.400000pt;}
.x9b_c00284{left:146.666667pt;}
.x3e_c00284{left:147.866667pt;}
.x20_c00284{left:149.733333pt;}
.x4f_c00284{left:151.466667pt;}
.x59_c00284{left:152.400000pt;}
.x1a_c00284{left:153.866667pt;}
.x84_c00284{left:155.600000pt;}
.x11_c00284{left:157.200000pt;}
.x3f_c00284{left:158.800000pt;}
.x2e_c00284{left:160.133333pt;}
.x93_c00284{left:161.333333pt;}
.x32_c00284{left:162.400000pt;}
.x47_c00284{left:163.733333pt;}
.x7f_c00284{left:164.933333pt;}
.x4c_c00284{left:166.533333pt;}
.x29_c00284{left:169.333333pt;}
.x6a_c00284{left:170.400000pt;}
.x1b_c00284{left:172.400000pt;}
.x21_c00284{left:174.000000pt;}
.x12_c00284{left:175.466667pt;}
.x39_c00284{left:177.733333pt;}
.x4_c00284{left:181.733333pt;}
.xa_c00284{left:183.333333pt;}
.x5a_c00284{left:187.333333pt;}
.x3a_c00284{left:188.933333pt;}
.x24_c00284{left:190.666667pt;}
.x26_c00284{left:192.000000pt;}
.x66_c00284{left:194.533333pt;}
.x6d_c00284{left:195.866667pt;}
.x60_c00284{left:197.866667pt;}
.x43_c00284{left:199.333333pt;}
.x8e_c00284{left:202.666667pt;}
.x1c_c00284{left:203.733333pt;}
.x7b_c00284{left:204.666667pt;}
.x33_c00284{left:205.600000pt;}
.x87_c00284{left:207.866667pt;}
.x5b_c00284{left:208.800000pt;}
.x94_c00284{left:210.266667pt;}
.x4d_c00284{left:211.600000pt;}
.x88_c00284{left:217.066667pt;}
.x83_c00284{left:219.333333pt;}
.x71_c00284{left:220.400000pt;}
.x2f_c00284{left:221.466667pt;}
.x3b_c00284{left:222.800000pt;}
.x96_c00284{left:223.866667pt;}
.x8f_c00284{left:225.333333pt;}
.x64_c00284{left:227.200000pt;}
.x54_c00284{left:228.533333pt;}
.x13_c00284{left:229.866667pt;}
.x6e_c00284{left:231.333333pt;}
.x44_c00284{left:232.266667pt;}
.xb_c00284{left:233.600000pt;}
.x34_c00284{left:236.000000pt;}
.x67_c00284{left:238.000000pt;}
.x2a_c00284{left:240.400000pt;}
.x99_c00284{left:241.866667pt;}
.x50_c00284{left:244.000000pt;}
.x1d_c00284{left:245.066667pt;}
.x48_c00284{left:246.266667pt;}
.x3c_c00284{left:247.466667pt;}
.x61_c00284{left:249.333333pt;}
.x5_c00284{left:250.266667pt;}
.x14_c00284{left:252.000000pt;}
.x89_c00284{left:253.333333pt;}
.x35_c00284{left:254.533333pt;}
.x85_c00284{left:260.800000pt;}
.x6_c00284{left:262.400000pt;}
.x1e_c00284{left:264.000000pt;}
.x30_c00284{left:265.066667pt;}
.x55_c00284{left:266.266667pt;}
.x5c_c00284{left:267.333333pt;}
.x80_c00284{left:268.266667pt;}
.xc_c00284{left:271.066667pt;}
.x77_c00284{left:272.400000pt;}
.x9f_c00284{left:273.733333pt;}
.x51_c00284{left:275.333333pt;}
.x15_c00284{left:277.866667pt;}
.x90_c00284{left:282.666667pt;}
.x95_c00284{left:284.400000pt;}
.x5e_c00284{left:286.533333pt;}
.xd_c00284{left:287.733333pt;}
.x16_c00284{left:290.000000pt;}
.x65_c00284{left:291.866667pt;}
.x1f_c00284{left:293.066667pt;}
.x7c_c00284{left:294.000000pt;}
.x75_c00284{left:295.466667pt;}
.x49_c00284{left:296.800000pt;}
.x7_c00284{left:298.533333pt;}
.x7d_c00284{left:301.333333pt;}
.x27_c00284{left:302.533333pt;}
.x1_c00284{left:304.000000pt;}
.x86_c00284{left:304.933333pt;}
.x36_c00284{left:306.666667pt;}
.x8a_c00284{left:309.066667pt;}
.x4a_c00284{left:311.200000pt;}
.x45_c00284{left:313.200000pt;}
.x9c_c00284{left:316.933333pt;}
.x81_c00284{left:318.133333pt;}
.x8_c00284{left:321.600000pt;}
.x72_c00284{left:322.533333pt;}
.x62_c00284{left:323.866667pt;}
.x17_c00284{left:325.866667pt;}
.x52_c00284{left:326.800000pt;}
.x37_c00284{left:328.800000pt;}
.x56_c00284{left:330.000000pt;}
.x31_c00284{left:331.066667pt;}
.x7e_c00284{left:333.600000pt;}
.x22_c00284{left:336.266667pt;}
.xe_c00284{left:337.333333pt;}
.x7a_c00284{left:338.266667pt;}
.x63_c00284{left:339.600000pt;}
.x2b_c00284{left:340.933333pt;}
.x9a_c00284{left:341.866667pt;}
.x4e_c00284{left:343.733333pt;}
.x18_c00284{left:345.333333pt;}
.x5d_c00284{left:347.066667pt;}
.x42_c00284{left:349.733333pt;}
.x2c_c00284{left:353.066667pt;}
.x92_c00284{left:354.000000pt;}
.xf_c00284{left:355.600000pt;}
.x4b_c00284{left:356.933333pt;}
.x40_c00284{left:358.133333pt;}
.x19_c00284{left:361.333333pt;}
.x25_c00284{left:363.466667pt;}
.x76_c00284{left:365.200000pt;}
.x8b_c00284{left:366.666667pt;}
.x46_c00284{left:368.533333pt;}
.x9d_c00284{left:369.466667pt;}
.x6f_c00284{left:370.533333pt;}
.x73_c00284{left:371.866667pt;}
.x28_c00284{left:373.200000pt;}
.x97_c00284{left:378.533333pt;}
.xa0_c00284{left:390.266667pt;}
.x134_c00284{left:400.000000pt;}
.x125_c00284{left:401.333333pt;}
.x106_c00284{left:402.933333pt;}
.xc9_c00284{left:405.066667pt;}
.x127_c00284{left:415.066667pt;}
.x12a_c00284{left:416.133333pt;}
.x11b_c00284{left:417.600000pt;}
.xf0_c00284{left:418.533333pt;}
.xe5_c00284{left:419.733333pt;}
.xc8_c00284{left:420.800000pt;}
.xa4_c00284{left:421.733333pt;}
.x137_c00284{left:425.866667pt;}
.x129_c00284{left:433.866667pt;}
.xf2_c00284{left:436.533333pt;}
.xf8_c00284{left:439.466667pt;}
.xe1_c00284{left:441.466667pt;}
.x107_c00284{left:443.866667pt;}
.xef_c00284{left:444.800000pt;}
.x122_c00284{left:445.733333pt;}
.xf9_c00284{left:447.200000pt;}
.xa5_c00284{left:448.933333pt;}
.xd0_c00284{left:449.866667pt;}
.x104_c00284{left:450.933333pt;}
.x135_c00284{left:452.533333pt;}
.xdc_c00284{left:454.000000pt;}
.x138_c00284{left:454.933333pt;}
.xca_c00284{left:456.000000pt;}
.xb4_c00284{left:458.533333pt;}
.xfb_c00284{left:459.466667pt;}
.x12b_c00284{left:461.600000pt;}
.xc4_c00284{left:462.533333pt;}
.x126_c00284{left:463.466667pt;}
.xbb_c00284{left:465.200000pt;}
.xfe_c00284{left:469.200000pt;}
.xd1_c00284{left:470.666667pt;}
.xae_c00284{left:474.000000pt;}
.x128_c00284{left:474.933333pt;}
.xcb_c00284{left:476.133333pt;}
.x101_c00284{left:477.733333pt;}
.x110_c00284{left:479.066667pt;}
.xa6_c00284{left:480.000000pt;}
.xf1_c00284{left:481.200000pt;}
.x139_c00284{left:482.400000pt;}
.x109_c00284{left:483.600000pt;}
.x112_c00284{left:485.333333pt;}
.x10c_c00284{left:487.333333pt;}
.xc5_c00284{left:488.400000pt;}
.xd7_c00284{left:489.333333pt;}
.xb5_c00284{left:491.200000pt;}
.xcc_c00284{left:492.400000pt;}
.xea_c00284{left:494.000000pt;}
.x12e_c00284{left:496.400000pt;}
.xfc_c00284{left:499.733333pt;}
.xbc_c00284{left:502.933333pt;}
.x105_c00284{left:504.666667pt;}
.xe6_c00284{left:505.733333pt;}
.x12c_c00284{left:508.666667pt;}
.x102_c00284{left:509.733333pt;}
.xf3_c00284{left:510.800000pt;}
.xa7_c00284{left:512.666667pt;}
.xd8_c00284{left:514.666667pt;}
.xf6_c00284{left:515.600000pt;}
.x10d_c00284{left:517.733333pt;}
.xbd_c00284{left:520.800000pt;}
.x124_c00284{left:522.933333pt;}
.xaf_c00284{left:525.866667pt;}
.x116_c00284{left:528.400000pt;}
.xe2_c00284{left:529.733333pt;}
.xdd_c00284{left:531.066667pt;}
.xcd_c00284{left:532.400000pt;}
.x119_c00284{left:533.733333pt;}
.xfd_c00284{left:534.666667pt;}
.xed_c00284{left:536.800000pt;}
.xe7_c00284{left:538.000000pt;}
.xbe_c00284{left:539.066667pt;}
.x130_c00284{left:542.266667pt;}
.xfa_c00284{left:543.200000pt;}
.xc6_c00284{left:547.200000pt;}
.x108_c00284{left:548.533333pt;}
.xd9_c00284{left:549.866667pt;}
.xee_c00284{left:550.933333pt;}
.xe8_c00284{left:552.133333pt;}
.xa8_c00284{left:553.333333pt;}
.x10e_c00284{left:556.800000pt;}
.x11f_c00284{left:558.266667pt;}
.xda_c00284{left:559.466667pt;}
.x111_c00284{left:561.333333pt;}
.x113_c00284{left:566.266667pt;}
.xd2_c00284{left:567.333333pt;}
.xde_c00284{left:570.400000pt;}
.x12d_c00284{left:572.000000pt;}
.x11a_c00284{left:574.400000pt;}
.xe9_c00284{left:575.466667pt;}
.xb0_c00284{left:577.066667pt;}
.xce_c00284{left:579.066667pt;}
.xb6_c00284{left:581.066667pt;}
.xa9_c00284{left:582.400000pt;}
.x10f_c00284{left:584.266667pt;}
.xb7_c00284{left:587.200000pt;}
.xf4_c00284{left:590.533333pt;}
.xd3_c00284{left:591.600000pt;}
.x114_c00284{left:592.800000pt;}
.xbf_c00284{left:594.400000pt;}
.xdf_c00284{left:596.000000pt;}
.xeb_c00284{left:598.266667pt;}
.xb1_c00284{left:600.800000pt;}
.xf7_c00284{left:603.600000pt;}
.x117_c00284{left:604.800000pt;}
.xcf_c00284{left:606.533333pt;}
.xaa_c00284{left:607.733333pt;}
.xdb_c00284{left:609.733333pt;}
.xc0_c00284{left:612.000000pt;}
.xf5_c00284{left:616.133333pt;}
.x120_c00284{left:620.400000pt;}
.x11c_c00284{left:621.733333pt;}
.x118_c00284{left:623.733333pt;}
.xff_c00284{left:627.600000pt;}
.xb8_c00284{left:628.533333pt;}
.xe3_c00284{left:633.466667pt;}
.x121_c00284{left:635.466667pt;}
.x10a_c00284{left:636.533333pt;}
.x13b_c00284{left:637.600000pt;}
.xb2_c00284{left:638.933333pt;}
.xab_c00284{left:641.333333pt;}
.x12f_c00284{left:642.400000pt;}
.x131_c00284{left:646.533333pt;}
.xc1_c00284{left:647.466667pt;}
.x103_c00284{left:648.666667pt;}
.xd4_c00284{left:650.133333pt;}
.xc7_c00284{left:651.200000pt;}
.xec_c00284{left:653.600000pt;}
.x100_c00284{left:655.733333pt;}
.xc2_c00284{left:657.333333pt;}
.xac_c00284{left:658.266667pt;}
.x115_c00284{left:660.266667pt;}
.x11d_c00284{left:662.000000pt;}
.xb9_c00284{left:664.000000pt;}
.x10b_c00284{left:665.333333pt;}
.xe4_c00284{left:666.800000pt;}
.xd5_c00284{left:668.400000pt;}
.xc3_c00284{left:672.666667pt;}
.xb3_c00284{left:674.133333pt;}
.xe0_c00284{left:676.933333pt;}
.x132_c00284{left:678.266667pt;}
.x2_c00284{left:679.333333pt;}
.x11e_c00284{left:680.533333pt;}
.xba_c00284{left:681.866667pt;}
.x123_c00284{left:684.266667pt;}
.x136_c00284{left:685.733333pt;}
.x13a_c00284{left:687.200000pt;}
.xad_c00284{left:689.333333pt;}
.x133_c00284{left:691.600000pt;}
.xd6_c00284{left:693.066667pt;}
}





/* 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_c00285 {
    display:none;
  }
  .loading-indicator_c00285.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00285 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_c00285 { 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_c00285" -> "#page-container .classname_c00285")
 */
.pf_c00285 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00285 { /* 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_c00285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00285 { /* 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_c00285 { /* 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_c00285 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00285 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00285 {overflow:visible;}
  }
}
.c_c00285 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00285 { /* 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_c00285:after { /* webkit #35443 */
  content: '';
}
.t_c00285:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00285 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 */
}
.__c00285 { /* 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_c00285 { /* info for Javascript */
  display:none;
}
.l_c00285 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00285 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00285 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00285: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_c00285 {
    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_c00285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00285.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_c00285 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00285;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.000000;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;}
.m11e_c00285{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00285{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m112_c00285{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00285{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.md8_c00285{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00285{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00285{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m85_c00285{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m21_c00285{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00285{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m86_c00285{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m29_c00285{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m98_c00285{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00285{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m88_c00285{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m12_c00285{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m80_c00285{transform:matrix(0.110500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00285{transform:matrix(0.113000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113000,0.000000,0.000000,0.250000,0,0);}
.m57_c00285{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00285{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.m48_c00285{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m114_c00285{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m79_c00285{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m117_c00285{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m52_c00285{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00285{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m113_c00285{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m58_c00285{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md6_c00285{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00285{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m73_c00285{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m95_c00285{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m47_c00285{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00285{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m13_c00285{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m50_c00285{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00285{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m16_c00285{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m69_c00285{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m6_c00285{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00285{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00285{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m41_c00285{transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00285{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00285{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m110_c00285{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m90_c00285{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00285{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00285{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md7_c00285{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m72_c00285{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m26_c00285{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m99_c00285{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m96_c00285{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7_c00285{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m91_c00285{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md0_c00285{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00285{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf_c00285{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00285{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m78_c00285{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m3_c00285{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m105_c00285{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00285{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00285{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00285{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00285{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.maf_c00285{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m107_c00285{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m4_c00285{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00285{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m66_c00285{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00285{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00285{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00285{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00285{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00285{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00285{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00285{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m97_c00285{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m89_c00285{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00285{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mae_c00285{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5_c00285{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00285{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00285{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00285{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m44_c00285{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00285{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00285{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00285{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m109_c00285{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00285{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00285{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00285{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.ma_c00285{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m65_c00285{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m103_c00285{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m67_c00285{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mef_c00285{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m56_c00285{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m62_c00285{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m25_c00285{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m24_c00285{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m42_c00285{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00285{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00285{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m11_c00285{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me6_c00285{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00285{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m54_c00285{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m39_c00285{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m108_c00285{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.med_c00285{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00285{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00285{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m84_c00285{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00285{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00285{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m18_c00285{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00285{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00285{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00285{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00285{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m63_c00285{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00285{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.maa_c00285{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00285{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m64_c00285{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00285{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00285{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00285{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m68_c00285{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00285{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m8_c00285{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00285{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mba_c00285{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00285{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00285{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m14_c00285{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me2_c00285{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m45_c00285{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00285{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m70_c00285{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00285{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00285{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m38_c00285{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m20_c00285{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00285{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m19_c00285{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.me_c00285{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00285{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m61_c00285{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m10_c00285{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00285{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00285{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb_c00285{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00285{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m94_c00285{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00285{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m2_c00285{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mad_c00285{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me8_c00285{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00285{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m104_c00285{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me1_c00285{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00285{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md5_c00285{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00285{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00285{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m93_c00285{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m51_c00285{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00285{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m40_c00285{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m22_c00285{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00285{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m111_c00285{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m28_c00285{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m81_c00285{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me3_c00285{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00285{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00285{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m15_c00285{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00285{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m49_c00285{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mec_c00285{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00285{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m31_c00285{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m75_c00285{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m76_c00285{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00285{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00285{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m55_c00285{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m118_c00285{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00285{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m23_c00285{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m100_c00285{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00285{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m9_c00285{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m32_c00285{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m35_c00285{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00285{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m83_c00285{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mea_c00285{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00285{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m33_c00285{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc_c00285{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m27_c00285{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00285{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md9_c00285{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00285{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00285{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m87_c00285{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m82_c00285{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00285{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00285{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m71_c00285{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.meb_c00285{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00285{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00285{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m92_c00285{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00285{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m0_c00285{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00285{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me9_c00285{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md4_c00285{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00285{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00285{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me4_c00285{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m60_c00285{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mda_c00285{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mde_c00285{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00285{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00285{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m74_c00285{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00285{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m37_c00285{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m77_c00285{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m115_c00285{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00285{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m34_c00285{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00285{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md_c00285{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m106_c00285{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.me7_c00285{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00285{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00285{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00285{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m53_c00285{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me5_c00285{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m17_c00285{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m46_c00285{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m101_c00285{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00285{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.md3_c00285{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m43_c00285{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mac_c00285{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00285{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mce_c00285{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00285{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00285{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mee_c00285{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00285{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m119_c00285{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.me0_c00285{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m36_c00285{transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00285{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00285{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m30_c00285{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mca_c00285{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00285{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00285{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00285{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00285{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00285{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00285{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00285{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mab_c00285{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.md2_c00285{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m102_c00285{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m116_c00285{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.mff_c00285{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.md1_c00285{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00285{transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);}
.m59_c00285{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00285{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls0_c00285{letter-spacing:0.000000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{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__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00285{word-spacing:-8.804584px;}
.ws1_c00285{word-spacing:-7.951965px;}
.ws8_c00285{word-spacing:-7.219542px;}
.ws7_c00285{word-spacing:-5.804284px;}
.wsa_c00285{word-spacing:-4.390244px;}
.wsc_c00285{word-spacing:0.000000px;}
.ws5_c00285{word-spacing:3.518519px;}
.ws0_c00285{word-spacing:4.196319px;}
.wsb_c00285{word-spacing:6.250000px;}
.ws6_c00285{word-spacing:6.641337px;}
.ws3_c00285{word-spacing:8.648649px;}
.ws2_c00285{word-spacing:15.166667px;}
.ws9_c00285{word-spacing:63.867720px;}
.fc0_c00285{color:transparent;}
.fs5_c00285{font-size:24.000000px;}
.fs0_c00285{font-size:48.000000px;}
.fs9_c00285{font-size:54.000000px;}
.fs2_c00285{font-size:60.000000px;}
.fs3_c00285{font-size:66.000000px;}
.fs1_c00285{font-size:72.000000px;}
.fs4_c00285{font-size:78.000000px;}
.fs8_c00285{font-size:84.000000px;}
.fs7_c00285{font-size:102.000000px;}
.fs6_c00285{font-size:114.000000px;}
.y0_c00285{bottom:0.000000px;}
.y37_c00285{bottom:180.000000px;}
.y6e_c00285{bottom:182.100000px;}
.y6d_c00285{bottom:197.550000px;}
.y36_c00285{bottom:198.300000px;}
.y6c_c00285{bottom:215.550000px;}
.y35_c00285{bottom:216.000000px;}
.y6b_c00285{bottom:233.550000px;}
.y34_c00285{bottom:238.050000px;}
.y6a_c00285{bottom:251.250000px;}
.y33_c00285{bottom:255.750000px;}
.y69_c00285{bottom:269.250000px;}
.y32_c00285{bottom:273.450000px;}
.y68_c00285{bottom:286.200000px;}
.y31_c00285{bottom:291.150000px;}
.y67_c00285{bottom:304.500000px;}
.y30_c00285{bottom:308.400000px;}
.y2f_c00285{bottom:326.400000px;}
.y66_c00285{bottom:335.400000px;}
.y2e_c00285{bottom:344.400000px;}
.y65_c00285{bottom:353.400000px;}
.y2d_c00285{bottom:362.700000px;}
.y64_c00285{bottom:372.150000px;}
.y2c_c00285{bottom:380.700000px;}
.y63_c00285{bottom:389.400000px;}
.y2b_c00285{bottom:398.400000px;}
.y62_c00285{bottom:407.100000px;}
.y2a_c00285{bottom:416.400000px;}
.y61_c00285{bottom:424.800000px;}
.y29_c00285{bottom:434.400000px;}
.y60_c00285{bottom:451.500000px;}
.y28_c00285{bottom:452.100000px;}
.y27_c00285{bottom:470.400000px;}
.y5f_c00285{bottom:473.400000px;}
.y26_c00285{bottom:488.400000px;}
.y5e_c00285{bottom:491.700000px;}
.y25_c00285{bottom:506.100000px;}
.y5d_c00285{bottom:509.400000px;}
.y24_c00285{bottom:524.100000px;}
.y5c_c00285{bottom:527.400000px;}
.y23_c00285{bottom:541.800000px;}
.y5b_c00285{bottom:545.100000px;}
.y22_c00285{bottom:559.800000px;}
.y5a_c00285{bottom:567.300000px;}
.y21_c00285{bottom:577.800000px;}
.y59_c00285{bottom:585.000000px;}
.y20_c00285{bottom:595.500000px;}
.y58_c00285{bottom:603.000000px;}
.y1f_c00285{bottom:613.800000px;}
.y1d_c00285{bottom:614.550000px;}
.y57_c00285{bottom:620.700000px;}
.y1e_c00285{bottom:630.300000px;}
.y1c_c00285{bottom:631.500000px;}
.y56_c00285{bottom:638.700000px;}
.y1b_c00285{bottom:643.650000px;}
.y55_c00285{bottom:656.400000px;}
.y1a_c00285{bottom:660.900000px;}
.y54_c00285{bottom:674.400000px;}
.y19_c00285{bottom:678.900000px;}
.y53_c00285{bottom:692.400000px;}
.y18_c00285{bottom:697.650000px;}
.y52_c00285{bottom:710.400000px;}
.y17_c00285{bottom:715.950000px;}
.y51_c00285{bottom:728.400000px;}
.y16_c00285{bottom:733.200000px;}
.y50_c00285{bottom:746.100000px;}
.y15_c00285{bottom:750.900000px;}
.y4f_c00285{bottom:763.800000px;}
.y14_c00285{bottom:771.150000px;}
.y4e_c00285{bottom:781.800000px;}
.y13_c00285{bottom:791.700000px;}
.y4d_c00285{bottom:799.500000px;}
.y12_c00285{bottom:809.700000px;}
.y4c_c00285{bottom:817.200000px;}
.y11_c00285{bottom:826.950000px;}
.y4b_c00285{bottom:835.200000px;}
.y10_c00285{bottom:844.950000px;}
.y4a_c00285{bottom:853.200000px;}
.yf_c00285{bottom:862.200000px;}
.y49_c00285{bottom:874.050000px;}
.ye_c00285{bottom:881.700000px;}
.y48_c00285{bottom:888.600000px;}
.yd_c00285{bottom:899.700000px;}
.y47_c00285{bottom:901.500000px;}
.y38_c00285{bottom:914.400000px;}
.yc_c00285{bottom:919.800000px;}
.y46_c00285{bottom:934.200000px;}
.yb_c00285{bottom:945.750000px;}
.y45_c00285{bottom:952.500000px;}
.ya_c00285{bottom:966.900000px;}
.y44_c00285{bottom:970.200000px;}
.y9_c00285{bottom:986.400000px;}
.y43_c00285{bottom:987.900000px;}
.y8_c00285{bottom:1004.550000px;}
.y42_c00285{bottom:1009.800000px;}
.y7_c00285{bottom:1022.250000px;}
.y41_c00285{bottom:1027.800000px;}
.y6_c00285{bottom:1039.950000px;}
.y40_c00285{bottom:1049.400000px;}
.y5_c00285{bottom:1057.650000px;}
.y3f_c00285{bottom:1064.100000px;}
.y3e_c00285{bottom:1067.400000px;}
.y4_c00285{bottom:1075.650000px;}
.y3_c00285{bottom:1093.350000px;}
.y3d_c00285{bottom:1093.650000px;}
.y2_c00285{bottom:1111.350000px;}
.y3c_c00285{bottom:1112.700000px;}
.y1_c00285{bottom:1136.550000px;}
.y3b_c00285{bottom:1137.900000px;}
.y3a_c00285{bottom:1158.450000px;}
.y39_c00285{bottom:1168.200000px;}
.h7_c00285{height:24.000000px;}
.h2_c00285{height:48.000000px;}
.hb_c00285{height:54.000000px;}
.h4_c00285{height:60.000000px;}
.h5_c00285{height:66.000000px;}
.h3_c00285{height:72.000000px;}
.h6_c00285{height:78.000000px;}
.ha_c00285{height:84.000000px;}
.h9_c00285{height:102.000000px;}
.h8_c00285{height:114.000000px;}
.h0_c00285{height:1270.440033px;}
.h1_c00285{height:1270.500000px;}
.w1_c00285{width:961.500000px;}
.w0_c00285{width:961.560058px;}
.x0_c00285{left:0.000000px;}
.xa0_c00285{left:164.550000px;}
.x1_c00285{left:173.850000px;}
.x36_c00285{left:175.350000px;}
.x3_c00285{left:176.400000px;}
.x60_c00285{left:189.900000px;}
.x40_c00285{left:191.850000px;}
.x11_c00285{left:193.350000px;}
.x2_c00285{left:194.400000px;}
.x75_c00285{left:203.850000px;}
.x3c_c00285{left:211.350000px;}
.x19_c00285{left:212.850000px;}
.x47_c00285{left:215.250000px;}
.x8f_c00285{left:217.950000px;}
.x38_c00285{left:219.900000px;}
.x81_c00285{left:221.100000px;}
.x9f_c00285{left:222.150000px;}
.x1d_c00285{left:225.300000px;}
.x98_c00285{left:227.100000px;}
.x7f_c00285{left:228.750000px;}
.x58_c00285{left:230.550000px;}
.x5d_c00285{left:235.650000px;}
.x50_c00285{left:238.050000px;}
.x25_c00285{left:239.100000px;}
.x93_c00285{left:240.450000px;}
.x6f_c00285{left:242.250000px;}
.x41_c00285{left:243.300000px;}
.xa_c00285{left:244.350000px;}
.x2d_c00285{left:245.400000px;}
.x1e_c00285{left:247.200000px;}
.x64_c00285{left:248.400000px;}
.x32_c00285{left:251.250000px;}
.x12_c00285{left:253.200000px;}
.x8b_c00285{left:254.700000px;}
.x79_c00285{left:256.500000px;}
.x26_c00285{left:258.150000px;}
.x51_c00285{left:259.950000px;}
.x39_c00285{left:261.000000px;}
.xb_c00285{left:263.100000px;}
.x4_c00285{left:264.300000px;}
.x69_c00285{left:265.650000px;}
.x37_c00285{left:267.900000px;}
.xa2_c00285{left:271.050000px;}
.x1f_c00285{left:272.400000px;}
.x2e_c00285{left:273.450000px;}
.x13_c00285{left:275.100000px;}
.x78_c00285{left:276.150000px;}
.x99_c00285{left:277.500000px;}
.x7a_c00285{left:279.150000px;}
.x95_c00285{left:280.350000px;}
.x6a_c00285{left:281.550000px;}
.x20_c00285{left:284.250000px;}
.x59_c00285{left:287.400000px;}
.x42_c00285{left:289.350000px;}
.x80_c00285{left:292.800000px;}
.x27_c00285{left:294.900000px;}
.x89_c00285{left:295.950000px;}
.x48_c00285{left:297.300000px;}
.x1a_c00285{left:298.950000px;}
.x33_c00285{left:300.150000px;}
.x4d_c00285{left:301.800000px;}
.x84_c00285{left:303.900000px;}
.x7d_c00285{left:305.400000px;}
.x55_c00285{left:309.150000px;}
.x9c_c00285{left:310.950000px;}
.x43_c00285{left:312.000000px;}
.x5_c00285{left:313.950000px;}
.xc_c00285{left:318.600000px;}
.x52_c00285{left:320.100000px;}
.x70_c00285{left:321.150000px;}
.x2f_c00285{left:323.100000px;}
.x3d_c00285{left:326.550000px;}
.x68_c00285{left:327.600000px;}
.x87_c00285{left:330.150000px;}
.x71_c00285{left:331.200000px;}
.x6b_c00285{left:333.000000px;}
.x14_c00285{left:334.950000px;}
.x49_c00285{left:336.600000px;}
.x96_c00285{left:337.650000px;}
.x34_c00285{left:338.700000px;}
.x5a_c00285{left:340.650000px;}
.xd_c00285{left:341.700000px;}
.x28_c00285{left:345.000000px;}
.x44_c00285{left:348.000000px;}
.x7e_c00285{left:350.100000px;}
.x82_c00285{left:352.200000px;}
.x15_c00285{left:353.700000px;}
.x29_c00285{left:354.750000px;}
.x61_c00285{left:356.700000px;}
.x72_c00285{left:357.900000px;}
.x88_c00285{left:358.950000px;}
.x5e_c00285{left:360.150000px;}
.x3a_c00285{left:362.850000px;}
.x76_c00285{left:364.350000px;}
.x53_c00285{left:365.400000px;}
.x21_c00285{left:367.650000px;}
.x85_c00285{left:369.750000px;}
.x56_c00285{left:371.400000px;}
.x4a_c00285{left:374.100000px;}
.x1b_c00285{left:375.600000px;}
.x9b_c00285{left:378.600000px;}
.x9d_c00285{left:379.800000px;}
.x90_c00285{left:380.850000px;}
.x6c_c00285{left:383.100000px;}
.x86_c00285{left:385.200000px;}
.xa3_c00285{left:387.000000px;}
.x4b_c00285{left:389.250000px;}
.x6_c00285{left:391.050000px;}
.x73_c00285{left:392.100000px;}
.x3e_c00285{left:396.000000px;}
.x22_c00285{left:397.950000px;}
.x30_c00285{left:399.450000px;}
.x5b_c00285{left:400.500000px;}
.x7b_c00285{left:402.000000px;}
.xa4_c00285{left:403.350000px;}
.x74_c00285{left:406.500000px;}
.x54_c00285{left:409.200000px;}
.x92_c00285{left:412.500000px;}
.x8a_c00285{left:414.450000px;}
.x97_c00285{left:416.550000px;}
.x2a_c00285{left:418.800000px;}
.x9e_c00285{left:420.150000px;}
.x8d_c00285{left:421.200000px;}
.x62_c00285{left:423.600000px;}
.x7_c00285{left:424.950000px;}
.x94_c00285{left:426.150000px;}
.x9a_c00285{left:427.950000px;}
.x16_c00285{left:429.300000px;}
.x65_c00285{left:431.700000px;}
.x5c_c00285{left:432.900000px;}
.xe_c00285{left:434.550000px;}
.x31_c00285{left:435.750000px;}
.x8e_c00285{left:437.100000px;}
.x4e_c00285{left:440.700000px;}
.x35_c00285{left:442.050000px;}
.x23_c00285{left:445.050000px;}
.x66_c00285{left:446.400000px;}
.x3b_c00285{left:448.500000px;}
.x5f_c00285{left:450.150000px;}
.x8_c00285{left:453.450000px;}
.x17_c00285{left:456.300000px;}
.x45_c00285{left:457.500000px;}
.x8c_c00285{left:458.700000px;}
.xf_c00285{left:461.550000px;}
.x3f_c00285{left:462.600000px;}
.x4c_c00285{left:464.100000px;}
.x24_c00285{left:465.900000px;}
.x2b_c00285{left:467.700000px;}
.x6d_c00285{left:469.050000px;}
.x77_c00285{left:473.400000px;}
.x91_c00285{left:475.950000px;}
.xa1_c00285{left:477.300000px;}
.x10_c00285{left:479.550000px;}
.x63_c00285{left:480.900000px;}
.x7c_c00285{left:481.950000px;}
.x57_c00285{left:483.000000px;}
.x1c_c00285{left:485.100000px;}
.x2c_c00285{left:487.200000px;}
.x46_c00285{left:491.400000px;}
.x6e_c00285{left:492.450000px;}
.x9_c00285{left:495.900000px;}
.x4f_c00285{left:498.600000px;}
.x18_c00285{left:499.800000px;}
.x67_c00285{left:501.150000px;}
.xa5_c00285{left:502.800000px;}
.x83_c00285{left:508.800000px;}
.xa6_c00285{left:532.050000px;}
.x139_c00285{left:543.900000px;}
.xae_c00285{left:548.700000px;}
.xc0_c00285{left:549.750000px;}
.xfa_c00285{left:550.950000px;}
.xe7_c00285{left:559.800000px;}
.xde_c00285{left:560.850000px;}
.x123_c00285{left:562.350000px;}
.xaf_c00285{left:567.000000px;}
.x13a_c00285{left:568.800000px;}
.x121_c00285{left:571.950000px;}
.xb8_c00285{left:573.000000px;}
.xcf_c00285{left:576.750000px;}
.xfe_c00285{left:578.550000px;}
.x135_c00285{left:580.350000px;}
.xe8_c00285{left:582.150000px;}
.xc6_c00285{left:583.950000px;}
.x131_c00285{left:586.050000px;}
.xd4_c00285{left:587.400000px;}
.x12a_c00285{left:589.050000px;}
.xbd_c00285{left:590.850000px;}
.xa7_c00285{left:592.500000px;}
.xed_c00285{left:594.000000px;}
.xf1_c00285{left:596.100000px;}
.xb9_c00285{left:598.500000px;}
.xdf_c00285{left:600.750000px;}
.xe9_c00285{left:602.250000px;}
.x129_c00285{left:604.050000px;}
.x12d_c00285{left:605.100000px;}
.x126_c00285{left:606.600000px;}
.xc1_c00285{left:608.400000px;}
.xfb_c00285{left:609.900000px;}
.xba_c00285{left:611.400000px;}
.x13c_c00285{left:612.600000px;}
.xa8_c00285{left:614.850000px;}
.xea_c00285{left:616.350000px;}
.xb0_c00285{left:617.700000px;}
.x137_c00285{left:618.900000px;}
.xf2_c00285{left:621.000000px;}
.xc7_c00285{left:622.800000px;}
.x12c_c00285{left:624.600000px;}
.xff_c00285{left:625.800000px;}
.x12e_c00285{left:628.800000px;}
.xd9_c00285{left:631.200000px;}
.x136_c00285{left:633.300000px;}
.x113_c00285{left:634.650000px;}
.x105_c00285{left:636.750000px;}
.xe0_c00285{left:638.850000px;}
.x132_c00285{left:640.350000px;}
.xd0_c00285{left:641.550000px;}
.xb5_c00285{left:643.350000px;}
.x114_c00285{left:646.500000px;}
.xf5_c00285{left:648.450000px;}
.x103_c00285{left:654.000000px;}
.xb6_c00285{left:656.250000px;}
.xe1_c00285{left:658.350000px;}
.x127_c00285{left:660.300000px;}
.xc2_c00285{left:661.650000px;}
.xa9_c00285{left:664.200000px;}
.x104_c00285{left:665.550000px;}
.xfc_c00285{left:668.250000px;}
.x115_c00285{left:670.650000px;}
.x100_c00285{left:671.850000px;}
.xc8_c00285{left:672.900000px;}
.x10c_c00285{left:675.600000px;}
.xee_c00285{left:677.100000px;}
.x106_c00285{left:679.950000px;}
.x12b_c00285{left:682.200000px;}
.xaa_c00285{left:684.000000px;}
.xd1_c00285{left:686.250000px;}
.x122_c00285{left:690.000000px;}
.x101_c00285{left:692.400000px;}
.xb7_c00285{left:693.750000px;}
.xe2_c00285{left:695.400000px;}
.x11d_c00285{left:697.650000px;}
.xda_c00285{left:699.600000px;}
.x116_c00285{left:700.950000px;}
.xc9_c00285{left:703.500000px;}
.x12f_c00285{left:705.150000px;}
.xd5_c00285{left:708.300000px;}
.x11e_c00285{left:709.500000px;}
.xe3_c00285{left:711.300000px;}
.xbb_c00285{left:712.500000px;}
.x107_c00285{left:713.850000px;}
.xb1_c00285{left:715.350000px;}
.xf6_c00285{left:716.400000px;}
.xf3_c00285{left:718.200000px;}
.xac_c00285{left:721.800000px;}
.xc3_c00285{left:723.600000px;}
.xad_c00285{left:725.400000px;}
.xca_c00285{left:726.600000px;}
.x110_c00285{left:728.100000px;}
.xe4_c00285{left:730.050000px;}
.x117_c00285{left:731.850000px;}
.xb2_c00285{left:735.900000px;}
.x109_c00285{left:737.550000px;}
.xab_c00285{left:738.750000px;}
.xd2_c00285{left:740.700000px;}
.x10d_c00285{left:742.950000px;}
.xe5_c00285{left:745.950000px;}
.xef_c00285{left:749.100000px;}
.x10e_c00285{left:751.200000px;}
.xd6_c00285{left:753.300000px;}
.xeb_c00285{left:757.050000px;}
.xf0_c00285{left:759.900000px;}
.xcb_c00285{left:761.100000px;}
.x133_c00285{left:762.750000px;}
.x11f_c00285{left:763.800000px;}
.x10a_c00285{left:765.600000px;}
.xf7_c00285{left:769.350000px;}
.x10f_c00285{left:771.300000px;}
.xf4_c00285{left:774.000000px;}
.x13b_c00285{left:777.150000px;}
.x134_c00285{left:778.650000px;}
.xdb_c00285{left:780.000000px;}
.x118_c00285{left:781.500000px;}
.xc4_c00285{left:785.850000px;}
.x108_c00285{left:786.900000px;}
.xdc_c00285{left:788.700000px;}
.x138_c00285{left:790.950000px;}
.x13e_c00285{left:792.450000px;}
.xbe_c00285{left:795.000000px;}
.xb3_c00285{left:796.800000px;}
.xcc_c00285{left:797.850000px;}
.x102_c00285{left:803.550000px;}
.xbf_c00285{left:804.750000px;}
.x111_c00285{left:805.950000px;}
.xcd_c00285{left:808.350000px;}
.x119_c00285{left:810.000000px;}
.x124_c00285{left:811.800000px;}
.x13d_c00285{left:812.850000px;}
.xbc_c00285{left:814.050000px;}
.xb4_c00285{left:815.100000px;}
.xd7_c00285{left:820.500000px;}
.x128_c00285{left:821.850000px;}
.xce_c00285{left:823.500000px;}
.x120_c00285{left:824.550000px;}
.x10b_c00285{left:825.750000px;}
.x11a_c00285{left:826.950000px;}
.xe6_c00285{left:828.000000px;}
.x11c_c00285{left:829.800000px;}
.x125_c00285{left:830.850000px;}
.xf8_c00285{left:832.350000px;}
.xd3_c00285{left:836.100000px;}
.x130_c00285{left:837.750000px;}
.x13f_c00285{left:839.850000px;}
.xc5_c00285{left:840.900000px;}
.xf9_c00285{left:844.650000px;}
.x140_c00285{left:847.650000px;}
.xfd_c00285{left:855.000000px;}
.xdd_c00285{left:856.050000px;}
.xd8_c00285{left:858.000000px;}
.xec_c00285{left:859.650000px;}
.x112_c00285{left:864.600000px;}
.x11b_c00285{left:866.550000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws4_c00285{word-spacing:-7.826297pt;}
.ws1_c00285{word-spacing:-7.068413pt;}
.ws8_c00285{word-spacing:-6.417370pt;}
.ws7_c00285{word-spacing:-5.159364pt;}
.wsa_c00285{word-spacing:-3.902439pt;}
.wsc_c00285{word-spacing:0.000000pt;}
.ws5_c00285{word-spacing:3.127572pt;}
.ws0_c00285{word-spacing:3.730061pt;}
.wsb_c00285{word-spacing:5.555556pt;}
.ws6_c00285{word-spacing:5.903411pt;}
.ws3_c00285{word-spacing:7.687688pt;}
.ws2_c00285{word-spacing:13.481481pt;}
.ws9_c00285{word-spacing:56.771306pt;}
.fs5_c00285{font-size:21.333333pt;}
.fs0_c00285{font-size:42.666667pt;}
.fs9_c00285{font-size:48.000000pt;}
.fs2_c00285{font-size:53.333333pt;}
.fs3_c00285{font-size:58.666667pt;}
.fs1_c00285{font-size:64.000000pt;}
.fs4_c00285{font-size:69.333333pt;}
.fs8_c00285{font-size:74.666667pt;}
.fs7_c00285{font-size:90.666667pt;}
.fs6_c00285{font-size:101.333333pt;}
.y0_c00285{bottom:0.000000pt;}
.y37_c00285{bottom:160.000000pt;}
.y6e_c00285{bottom:161.866667pt;}
.y6d_c00285{bottom:175.600000pt;}
.y36_c00285{bottom:176.266667pt;}
.y6c_c00285{bottom:191.600000pt;}
.y35_c00285{bottom:192.000000pt;}
.y6b_c00285{bottom:207.600000pt;}
.y34_c00285{bottom:211.600000pt;}
.y6a_c00285{bottom:223.333333pt;}
.y33_c00285{bottom:227.333333pt;}
.y69_c00285{bottom:239.333333pt;}
.y32_c00285{bottom:243.066667pt;}
.y68_c00285{bottom:254.400000pt;}
.y31_c00285{bottom:258.800000pt;}
.y67_c00285{bottom:270.666667pt;}
.y30_c00285{bottom:274.133333pt;}
.y2f_c00285{bottom:290.133333pt;}
.y66_c00285{bottom:298.133333pt;}
.y2e_c00285{bottom:306.133333pt;}
.y65_c00285{bottom:314.133333pt;}
.y2d_c00285{bottom:322.400000pt;}
.y64_c00285{bottom:330.800000pt;}
.y2c_c00285{bottom:338.400000pt;}
.y63_c00285{bottom:346.133333pt;}
.y2b_c00285{bottom:354.133333pt;}
.y62_c00285{bottom:361.866667pt;}
.y2a_c00285{bottom:370.133333pt;}
.y61_c00285{bottom:377.600000pt;}
.y29_c00285{bottom:386.133333pt;}
.y60_c00285{bottom:401.333333pt;}
.y28_c00285{bottom:401.866667pt;}
.y27_c00285{bottom:418.133333pt;}
.y5f_c00285{bottom:420.800000pt;}
.y26_c00285{bottom:434.133333pt;}
.y5e_c00285{bottom:437.066667pt;}
.y25_c00285{bottom:449.866667pt;}
.y5d_c00285{bottom:452.800000pt;}
.y24_c00285{bottom:465.866667pt;}
.y5c_c00285{bottom:468.800000pt;}
.y23_c00285{bottom:481.600000pt;}
.y5b_c00285{bottom:484.533333pt;}
.y22_c00285{bottom:497.600000pt;}
.y5a_c00285{bottom:504.266667pt;}
.y21_c00285{bottom:513.600000pt;}
.y59_c00285{bottom:520.000000pt;}
.y20_c00285{bottom:529.333333pt;}
.y58_c00285{bottom:536.000000pt;}
.y1f_c00285{bottom:545.600000pt;}
.y1d_c00285{bottom:546.266667pt;}
.y57_c00285{bottom:551.733333pt;}
.y1e_c00285{bottom:560.266667pt;}
.y1c_c00285{bottom:561.333333pt;}
.y56_c00285{bottom:567.733333pt;}
.y1b_c00285{bottom:572.133333pt;}
.y55_c00285{bottom:583.466667pt;}
.y1a_c00285{bottom:587.466667pt;}
.y54_c00285{bottom:599.466667pt;}
.y19_c00285{bottom:603.466667pt;}
.y53_c00285{bottom:615.466667pt;}
.y18_c00285{bottom:620.133333pt;}
.y52_c00285{bottom:631.466667pt;}
.y17_c00285{bottom:636.400000pt;}
.y51_c00285{bottom:647.466667pt;}
.y16_c00285{bottom:651.733333pt;}
.y50_c00285{bottom:663.200000pt;}
.y15_c00285{bottom:667.466667pt;}
.y4f_c00285{bottom:678.933333pt;}
.y14_c00285{bottom:685.466667pt;}
.y4e_c00285{bottom:694.933333pt;}
.y13_c00285{bottom:703.733333pt;}
.y4d_c00285{bottom:710.666667pt;}
.y12_c00285{bottom:719.733333pt;}
.y4c_c00285{bottom:726.400000pt;}
.y11_c00285{bottom:735.066667pt;}
.y4b_c00285{bottom:742.400000pt;}
.y10_c00285{bottom:751.066667pt;}
.y4a_c00285{bottom:758.400000pt;}
.yf_c00285{bottom:766.400000pt;}
.y49_c00285{bottom:776.933333pt;}
.ye_c00285{bottom:783.733333pt;}
.y48_c00285{bottom:789.866667pt;}
.yd_c00285{bottom:799.733333pt;}
.y47_c00285{bottom:801.333333pt;}
.y38_c00285{bottom:812.800000pt;}
.yc_c00285{bottom:817.600000pt;}
.y46_c00285{bottom:830.400000pt;}
.yb_c00285{bottom:840.666667pt;}
.y45_c00285{bottom:846.666667pt;}
.ya_c00285{bottom:859.466667pt;}
.y44_c00285{bottom:862.400000pt;}
.y9_c00285{bottom:876.800000pt;}
.y43_c00285{bottom:878.133333pt;}
.y8_c00285{bottom:892.933333pt;}
.y42_c00285{bottom:897.600000pt;}
.y7_c00285{bottom:908.666667pt;}
.y41_c00285{bottom:913.600000pt;}
.y6_c00285{bottom:924.400000pt;}
.y40_c00285{bottom:932.800000pt;}
.y5_c00285{bottom:940.133333pt;}
.y3f_c00285{bottom:945.866667pt;}
.y3e_c00285{bottom:948.800000pt;}
.y4_c00285{bottom:956.133333pt;}
.y3_c00285{bottom:971.866667pt;}
.y3d_c00285{bottom:972.133333pt;}
.y2_c00285{bottom:987.866667pt;}
.y3c_c00285{bottom:989.066667pt;}
.y1_c00285{bottom:1010.266667pt;}
.y3b_c00285{bottom:1011.466667pt;}
.y3a_c00285{bottom:1029.733333pt;}
.y39_c00285{bottom:1038.400000pt;}
.h7_c00285{height:21.333333pt;}
.h2_c00285{height:42.666667pt;}
.hb_c00285{height:48.000000pt;}
.h4_c00285{height:53.333333pt;}
.h5_c00285{height:58.666667pt;}
.h3_c00285{height:64.000000pt;}
.h6_c00285{height:69.333333pt;}
.ha_c00285{height:74.666667pt;}
.h9_c00285{height:90.666667pt;}
.h8_c00285{height:101.333333pt;}
.h0_c00285{height:1129.280029pt;}
.h1_c00285{height:1129.333333pt;}
.w1_c00285{width:854.666667pt;}
.w0_c00285{width:854.720052pt;}
.x0_c00285{left:0.000000pt;}
.xa0_c00285{left:146.266667pt;}
.x1_c00285{left:154.533333pt;}
.x36_c00285{left:155.866667pt;}
.x3_c00285{left:156.800000pt;}
.x60_c00285{left:168.800000pt;}
.x40_c00285{left:170.533333pt;}
.x11_c00285{left:171.866667pt;}
.x2_c00285{left:172.800000pt;}
.x75_c00285{left:181.200000pt;}
.x3c_c00285{left:187.866667pt;}
.x19_c00285{left:189.200000pt;}
.x47_c00285{left:191.333333pt;}
.x8f_c00285{left:193.733333pt;}
.x38_c00285{left:195.466667pt;}
.x81_c00285{left:196.533333pt;}
.x9f_c00285{left:197.466667pt;}
.x1d_c00285{left:200.266667pt;}
.x98_c00285{left:201.866667pt;}
.x7f_c00285{left:203.333333pt;}
.x58_c00285{left:204.933333pt;}
.x5d_c00285{left:209.466667pt;}
.x50_c00285{left:211.600000pt;}
.x25_c00285{left:212.533333pt;}
.x93_c00285{left:213.733333pt;}
.x6f_c00285{left:215.333333pt;}
.x41_c00285{left:216.266667pt;}
.xa_c00285{left:217.200000pt;}
.x2d_c00285{left:218.133333pt;}
.x1e_c00285{left:219.733333pt;}
.x64_c00285{left:220.800000pt;}
.x32_c00285{left:223.333333pt;}
.x12_c00285{left:225.066667pt;}
.x8b_c00285{left:226.400000pt;}
.x79_c00285{left:228.000000pt;}
.x26_c00285{left:229.466667pt;}
.x51_c00285{left:231.066667pt;}
.x39_c00285{left:232.000000pt;}
.xb_c00285{left:233.866667pt;}
.x4_c00285{left:234.933333pt;}
.x69_c00285{left:236.133333pt;}
.x37_c00285{left:238.133333pt;}
.xa2_c00285{left:240.933333pt;}
.x1f_c00285{left:242.133333pt;}
.x2e_c00285{left:243.066667pt;}
.x13_c00285{left:244.533333pt;}
.x78_c00285{left:245.466667pt;}
.x99_c00285{left:246.666667pt;}
.x7a_c00285{left:248.133333pt;}
.x95_c00285{left:249.200000pt;}
.x6a_c00285{left:250.266667pt;}
.x20_c00285{left:252.666667pt;}
.x59_c00285{left:255.466667pt;}
.x42_c00285{left:257.200000pt;}
.x80_c00285{left:260.266667pt;}
.x27_c00285{left:262.133333pt;}
.x89_c00285{left:263.066667pt;}
.x48_c00285{left:264.266667pt;}
.x1a_c00285{left:265.733333pt;}
.x33_c00285{left:266.800000pt;}
.x4d_c00285{left:268.266667pt;}
.x84_c00285{left:270.133333pt;}
.x7d_c00285{left:271.466667pt;}
.x55_c00285{left:274.800000pt;}
.x9c_c00285{left:276.400000pt;}
.x43_c00285{left:277.333333pt;}
.x5_c00285{left:279.066667pt;}
.xc_c00285{left:283.200000pt;}
.x52_c00285{left:284.533333pt;}
.x70_c00285{left:285.466667pt;}
.x2f_c00285{left:287.200000pt;}
.x3d_c00285{left:290.266667pt;}
.x68_c00285{left:291.200000pt;}
.x87_c00285{left:293.466667pt;}
.x71_c00285{left:294.400000pt;}
.x6b_c00285{left:296.000000pt;}
.x14_c00285{left:297.733333pt;}
.x49_c00285{left:299.200000pt;}
.x96_c00285{left:300.133333pt;}
.x34_c00285{left:301.066667pt;}
.x5a_c00285{left:302.800000pt;}
.xd_c00285{left:303.733333pt;}
.x28_c00285{left:306.666667pt;}
.x44_c00285{left:309.333333pt;}
.x7e_c00285{left:311.200000pt;}
.x82_c00285{left:313.066667pt;}
.x15_c00285{left:314.400000pt;}
.x29_c00285{left:315.333333pt;}
.x61_c00285{left:317.066667pt;}
.x72_c00285{left:318.133333pt;}
.x88_c00285{left:319.066667pt;}
.x5e_c00285{left:320.133333pt;}
.x3a_c00285{left:322.533333pt;}
.x76_c00285{left:323.866667pt;}
.x53_c00285{left:324.800000pt;}
.x21_c00285{left:326.800000pt;}
.x85_c00285{left:328.666667pt;}
.x56_c00285{left:330.133333pt;}
.x4a_c00285{left:332.533333pt;}
.x1b_c00285{left:333.866667pt;}
.x9b_c00285{left:336.533333pt;}
.x9d_c00285{left:337.600000pt;}
.x90_c00285{left:338.533333pt;}
.x6c_c00285{left:340.533333pt;}
.x86_c00285{left:342.400000pt;}
.xa3_c00285{left:344.000000pt;}
.x4b_c00285{left:346.000000pt;}
.x6_c00285{left:347.600000pt;}
.x73_c00285{left:348.533333pt;}
.x3e_c00285{left:352.000000pt;}
.x22_c00285{left:353.733333pt;}
.x30_c00285{left:355.066667pt;}
.x5b_c00285{left:356.000000pt;}
.x7b_c00285{left:357.333333pt;}
.xa4_c00285{left:358.533333pt;}
.x74_c00285{left:361.333333pt;}
.x54_c00285{left:363.733333pt;}
.x92_c00285{left:366.666667pt;}
.x8a_c00285{left:368.400000pt;}
.x97_c00285{left:370.266667pt;}
.x2a_c00285{left:372.266667pt;}
.x9e_c00285{left:373.466667pt;}
.x8d_c00285{left:374.400000pt;}
.x62_c00285{left:376.533333pt;}
.x7_c00285{left:377.733333pt;}
.x94_c00285{left:378.800000pt;}
.x9a_c00285{left:380.400000pt;}
.x16_c00285{left:381.600000pt;}
.x65_c00285{left:383.733333pt;}
.x5c_c00285{left:384.800000pt;}
.xe_c00285{left:386.266667pt;}
.x31_c00285{left:387.333333pt;}
.x8e_c00285{left:388.533333pt;}
.x4e_c00285{left:391.733333pt;}
.x35_c00285{left:392.933333pt;}
.x23_c00285{left:395.600000pt;}
.x66_c00285{left:396.800000pt;}
.x3b_c00285{left:398.666667pt;}
.x5f_c00285{left:400.133333pt;}
.x8_c00285{left:403.066667pt;}
.x17_c00285{left:405.600000pt;}
.x45_c00285{left:406.666667pt;}
.x8c_c00285{left:407.733333pt;}
.xf_c00285{left:410.266667pt;}
.x3f_c00285{left:411.200000pt;}
.x4c_c00285{left:412.533333pt;}
.x24_c00285{left:414.133333pt;}
.x2b_c00285{left:415.733333pt;}
.x6d_c00285{left:416.933333pt;}
.x77_c00285{left:420.800000pt;}
.x91_c00285{left:423.066667pt;}
.xa1_c00285{left:424.266667pt;}
.x10_c00285{left:426.266667pt;}
.x63_c00285{left:427.466667pt;}
.x7c_c00285{left:428.400000pt;}
.x57_c00285{left:429.333333pt;}
.x1c_c00285{left:431.200000pt;}
.x2c_c00285{left:433.066667pt;}
.x46_c00285{left:436.800000pt;}
.x6e_c00285{left:437.733333pt;}
.x9_c00285{left:440.800000pt;}
.x4f_c00285{left:443.200000pt;}
.x18_c00285{left:444.266667pt;}
.x67_c00285{left:445.466667pt;}
.xa5_c00285{left:446.933333pt;}
.x83_c00285{left:452.266667pt;}
.xa6_c00285{left:472.933333pt;}
.x139_c00285{left:483.466667pt;}
.xae_c00285{left:487.733333pt;}
.xc0_c00285{left:488.666667pt;}
.xfa_c00285{left:489.733333pt;}
.xe7_c00285{left:497.600000pt;}
.xde_c00285{left:498.533333pt;}
.x123_c00285{left:499.866667pt;}
.xaf_c00285{left:504.000000pt;}
.x13a_c00285{left:505.600000pt;}
.x121_c00285{left:508.400000pt;}
.xb8_c00285{left:509.333333pt;}
.xcf_c00285{left:512.666667pt;}
.xfe_c00285{left:514.266667pt;}
.x135_c00285{left:515.866667pt;}
.xe8_c00285{left:517.466667pt;}
.xc6_c00285{left:519.066667pt;}
.x131_c00285{left:520.933333pt;}
.xd4_c00285{left:522.133333pt;}
.x12a_c00285{left:523.600000pt;}
.xbd_c00285{left:525.200000pt;}
.xa7_c00285{left:526.666667pt;}
.xed_c00285{left:528.000000pt;}
.xf1_c00285{left:529.866667pt;}
.xb9_c00285{left:532.000000pt;}
.xdf_c00285{left:534.000000pt;}
.xe9_c00285{left:535.333333pt;}
.x129_c00285{left:536.933333pt;}
.x12d_c00285{left:537.866667pt;}
.x126_c00285{left:539.200000pt;}
.xc1_c00285{left:540.800000pt;}
.xfb_c00285{left:542.133333pt;}
.xba_c00285{left:543.466667pt;}
.x13c_c00285{left:544.533333pt;}
.xa8_c00285{left:546.533333pt;}
.xea_c00285{left:547.866667pt;}
.xb0_c00285{left:549.066667pt;}
.x137_c00285{left:550.133333pt;}
.xf2_c00285{left:552.000000pt;}
.xc7_c00285{left:553.600000pt;}
.x12c_c00285{left:555.200000pt;}
.xff_c00285{left:556.266667pt;}
.x12e_c00285{left:558.933333pt;}
.xd9_c00285{left:561.066667pt;}
.x136_c00285{left:562.933333pt;}
.x113_c00285{left:564.133333pt;}
.x105_c00285{left:566.000000pt;}
.xe0_c00285{left:567.866667pt;}
.x132_c00285{left:569.200000pt;}
.xd0_c00285{left:570.266667pt;}
.xb5_c00285{left:571.866667pt;}
.x114_c00285{left:574.666667pt;}
.xf5_c00285{left:576.400000pt;}
.x103_c00285{left:581.333333pt;}
.xb6_c00285{left:583.333333pt;}
.xe1_c00285{left:585.200000pt;}
.x127_c00285{left:586.933333pt;}
.xc2_c00285{left:588.133333pt;}
.xa9_c00285{left:590.400000pt;}
.x104_c00285{left:591.600000pt;}
.xfc_c00285{left:594.000000pt;}
.x115_c00285{left:596.133333pt;}
.x100_c00285{left:597.200000pt;}
.xc8_c00285{left:598.133333pt;}
.x10c_c00285{left:600.533333pt;}
.xee_c00285{left:601.866667pt;}
.x106_c00285{left:604.400000pt;}
.x12b_c00285{left:606.400000pt;}
.xaa_c00285{left:608.000000pt;}
.xd1_c00285{left:610.000000pt;}
.x122_c00285{left:613.333333pt;}
.x101_c00285{left:615.466667pt;}
.xb7_c00285{left:616.666667pt;}
.xe2_c00285{left:618.133333pt;}
.x11d_c00285{left:620.133333pt;}
.xda_c00285{left:621.866667pt;}
.x116_c00285{left:623.066667pt;}
.xc9_c00285{left:625.333333pt;}
.x12f_c00285{left:626.800000pt;}
.xd5_c00285{left:629.600000pt;}
.x11e_c00285{left:630.666667pt;}
.xe3_c00285{left:632.266667pt;}
.xbb_c00285{left:633.333333pt;}
.x107_c00285{left:634.533333pt;}
.xb1_c00285{left:635.866667pt;}
.xf6_c00285{left:636.800000pt;}
.xf3_c00285{left:638.400000pt;}
.xac_c00285{left:641.600000pt;}
.xc3_c00285{left:643.200000pt;}
.xad_c00285{left:644.800000pt;}
.xca_c00285{left:645.866667pt;}
.x110_c00285{left:647.200000pt;}
.xe4_c00285{left:648.933333pt;}
.x117_c00285{left:650.533333pt;}
.xb2_c00285{left:654.133333pt;}
.x109_c00285{left:655.600000pt;}
.xab_c00285{left:656.666667pt;}
.xd2_c00285{left:658.400000pt;}
.x10d_c00285{left:660.400000pt;}
.xe5_c00285{left:663.066667pt;}
.xef_c00285{left:665.866667pt;}
.x10e_c00285{left:667.733333pt;}
.xd6_c00285{left:669.600000pt;}
.xeb_c00285{left:672.933333pt;}
.xf0_c00285{left:675.466667pt;}
.xcb_c00285{left:676.533333pt;}
.x133_c00285{left:678.000000pt;}
.x11f_c00285{left:678.933333pt;}
.x10a_c00285{left:680.533333pt;}
.xf7_c00285{left:683.866667pt;}
.x10f_c00285{left:685.600000pt;}
.xf4_c00285{left:688.000000pt;}
.x13b_c00285{left:690.800000pt;}
.x134_c00285{left:692.133333pt;}
.xdb_c00285{left:693.333333pt;}
.x118_c00285{left:694.666667pt;}
.xc4_c00285{left:698.533333pt;}
.x108_c00285{left:699.466667pt;}
.xdc_c00285{left:701.066667pt;}
.x138_c00285{left:703.066667pt;}
.x13e_c00285{left:704.400000pt;}
.xbe_c00285{left:706.666667pt;}
.xb3_c00285{left:708.266667pt;}
.xcc_c00285{left:709.200000pt;}
.x102_c00285{left:714.266667pt;}
.xbf_c00285{left:715.333333pt;}
.x111_c00285{left:716.400000pt;}
.xcd_c00285{left:718.533333pt;}
.x119_c00285{left:720.000000pt;}
.x124_c00285{left:721.600000pt;}
.x13d_c00285{left:722.533333pt;}
.xbc_c00285{left:723.600000pt;}
.xb4_c00285{left:724.533333pt;}
.xd7_c00285{left:729.333333pt;}
.x128_c00285{left:730.533333pt;}
.xce_c00285{left:732.000000pt;}
.x120_c00285{left:732.933333pt;}
.x10b_c00285{left:734.000000pt;}
.x11a_c00285{left:735.066667pt;}
.xe6_c00285{left:736.000000pt;}
.x11c_c00285{left:737.600000pt;}
.x125_c00285{left:738.533333pt;}
.xf8_c00285{left:739.866667pt;}
.xd3_c00285{left:743.200000pt;}
.x130_c00285{left:744.666667pt;}
.x13f_c00285{left:746.533333pt;}
.xc5_c00285{left:747.466667pt;}
.xf9_c00285{left:750.800000pt;}
.x140_c00285{left:753.466667pt;}
.xfd_c00285{left:760.000000pt;}
.xdd_c00285{left:760.933333pt;}
.xd8_c00285{left:762.666667pt;}
.xec_c00285{left:764.133333pt;}
.x112_c00285{left:768.533333pt;}
.x11b_c00285{left:770.266667pt;}
}





/* 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_c00286 {
    display:none;
  }
  .loading-indicator_c00286.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00286 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_c00286 { 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_c00286" -> "#page-container .classname_c00286")
 */
.pf_c00286 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00286 { /* 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_c00286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00286 { /* 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_c00286 { /* 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_c00286 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00286 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00286 {overflow:visible;}
  }
}
.c_c00286 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00286 { /* 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_c00286:after { /* webkit #35443 */
  content: '';
}
.t_c00286:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00286 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 */
}
.__c00286 { /* 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_c00286 { /* info for Javascript */
  display:none;
}
.l_c00286 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00286 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00286 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00286: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_c00286 {
    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_c00286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00286.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_c00286 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00286;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.000000;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;}
.mf5_c00286{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mee_c00286{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m101_c00286{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00286{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00286{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00286{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mab_c00286{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m81_c00286{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00286{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00286{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m94_c00286{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00286{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00286{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00286{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.me2_c00286{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m82_c00286{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00286{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6_c00286{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m102_c00286{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m26_c00286{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md2_c00286{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00286{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.md_c00286{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md7_c00286{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00286{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.md6_c00286{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00286{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m27_c00286{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00286{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00286{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m12_c00286{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00286{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00286{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m97_c00286{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m28_c00286{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00286{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m47_c00286{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00286{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m92_c00286{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m35_c00286{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m13_c00286{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00286{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m21_c00286{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m108_c00286{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me1_c00286{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m105_c00286{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m64_c00286{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00286{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.me5_c00286{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m24_c00286{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m109_c00286{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m75_c00286{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mad_c00286{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00286{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m63_c00286{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.maa_c00286{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00286{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.mf_c00286{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00286{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00286{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mae_c00286{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md9_c00286{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00286{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m52_c00286{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00286{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00286{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00286{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m29_c00286{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m78_c00286{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md4_c00286{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m70_c00286{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m40_c00286{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00286{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m53_c00286{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00286{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00286{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me0_c00286{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00286{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mac_c00286{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00286{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m32_c00286{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md3_c00286{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00286{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m19_c00286{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00286{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00286{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m37_c00286{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m91_c00286{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me8_c00286{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m77_c00286{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m23_c00286{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00286{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00286{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00286{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00286{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m36_c00286{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00286{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00286{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.maf_c00286{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m103_c00286{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00286{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00286{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00286{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m100_c00286{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m31_c00286{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9_c00286{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00286{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m25_c00286{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00286{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00286{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00286{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00286{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m51_c00286{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7_c00286{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00286{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m89_c00286{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00286{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mce_c00286{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00286{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00286{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb_c00286{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00286{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m58_c00286{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10_c00286{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m18_c00286{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m54_c00286{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me7_c00286{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00286{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m33_c00286{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00286{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m46_c00286{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m39_c00286{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m41_c00286{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00286{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m57_c00286{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m98_c00286{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00286{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m74_c00286{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00286{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00286{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m11_c00286{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m50_c00286{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00286{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00286{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m55_c00286{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma_c00286{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00286{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00286{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.md5_c00286{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m22_c00286{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00286{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m79_c00286{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mba_c00286{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00286{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m43_c00286{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00286{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00286{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m106_c00286{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m99_c00286{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m14_c00286{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m93_c00286{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00286{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00286{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00286{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m42_c00286{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8_c00286{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m15_c00286{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md8_c00286{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00286{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc_c00286{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00286{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me4_c00286{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m107_c00286{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m17_c00286{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00286{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m38_c00286{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00286{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00286{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00286{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m96_c00286{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.med_c00286{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m20_c00286{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m34_c00286{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m49_c00286{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me9_c00286{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m73_c00286{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00286{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md0_c00286{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00286{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00286{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m59_c00286{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00286{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00286{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00286{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00286{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mff_c00286{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mec_c00286{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m65_c00286{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m104_c00286{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m16_c00286{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00286{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00286{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00286{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m71_c00286{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m76_c00286{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00286{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m61_c00286{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m66_c00286{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m69_c00286{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m30_c00286{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m44_c00286{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00286{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m88_c00286{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me6_c00286{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00286{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00286{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00286{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);}
.m95_c00286{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00286{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00286{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00286{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00286{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00286{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m84_c00286{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m45_c00286{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m72_c00286{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00286{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00286{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m68_c00286{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m60_c00286{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m85_c00286{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00286{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m83_c00286{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m48_c00286{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m86_c00286{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00286{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00286{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m56_c00286{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mde_c00286{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00286{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00286{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m62_c00286{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.meb_c00286{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00286{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mef_c00286{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mca_c00286{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m67_c00286{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m87_c00286{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00286{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00286{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md1_c00286{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.mea_c00286{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00286{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00286{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00286{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m90_c00286{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00286{transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00286{transform:matrix(0.379500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00286{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m80_c00286{transform:matrix(0.400500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00286{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00286{transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);}
.me3_c00286{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mda_c00286{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00286{transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls0_c00286{letter-spacing:0.000000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{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__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00286{word-spacing:-4.841924px;}
.ws1_c00286{word-spacing:-2.045822px;}
.ws4_c00286{word-spacing:-1.000000px;}
.ws6_c00286{word-spacing:0.000000px;}
.ws3_c00286{word-spacing:1.762178px;}
.ws2_c00286{word-spacing:16.186246px;}
.ws5_c00286{word-spacing:188.000000px;}
.fc0_c00286{color:transparent;}
.fs4_c00286{font-size:30.000000px;}
.fs3_c00286{font-size:54.000000px;}
.fs1_c00286{font-size:60.000000px;}
.fs2_c00286{font-size:66.000000px;}
.fs5_c00286{font-size:72.000000px;}
.fs0_c00286{font-size:78.000000px;}
.fs6_c00286{font-size:84.000000px;}
.y0_c00286{bottom:0.000000px;}
.y62_c00286{bottom:189.000000px;}
.y33_c00286{bottom:189.450000px;}
.y32_c00286{bottom:207.750000px;}
.y61_c00286{bottom:212.100000px;}
.y31_c00286{bottom:229.350000px;}
.y60_c00286{bottom:234.000000px;}
.y30_c00286{bottom:251.250000px;}
.y5f_c00286{bottom:268.950000px;}
.y2f_c00286{bottom:273.600000px;}
.y2e_c00286{bottom:291.600000px;}
.y5e_c00286{bottom:304.800000px;}
.y2d_c00286{bottom:309.600000px;}
.y5d_c00286{bottom:322.500000px;}
.y2c_c00286{bottom:330.900000px;}
.y5c_c00286{bottom:340.200000px;}
.y2b_c00286{bottom:349.200000px;}
.y5b_c00286{bottom:358.200000px;}
.y2a_c00286{bottom:370.800000px;}
.y29_c00286{bottom:389.100000px;}
.y5a_c00286{bottom:393.300000px;}
.y28_c00286{bottom:406.800000px;}
.y59_c00286{bottom:411.000000px;}
.y58_c00286{bottom:429.000000px;}
.y27_c00286{bottom:430.500000px;}
.y26_c00286{bottom:435.600000px;}
.y25_c00286{bottom:446.400000px;}
.y57_c00286{bottom:446.700000px;}
.y24_c00286{bottom:453.600000px;}
.y56_c00286{bottom:464.700000px;}
.y23_c00286{bottom:470.850000px;}
.y55_c00286{bottom:482.400000px;}
.y54_c00286{bottom:482.700000px;}
.y22_c00286{bottom:488.850000px;}
.y53_c00286{bottom:500.700000px;}
.y21_c00286{bottom:511.200000px;}
.y52_c00286{bottom:518.700000px;}
.y20_c00286{bottom:533.550000px;}
.y51_c00286{bottom:536.400000px;}
.y1f_c00286{bottom:555.900000px;}
.y50_c00286{bottom:559.050000px;}
.y4f_c00286{bottom:576.750000px;}
.y1e_c00286{bottom:590.700000px;}
.y4e_c00286{bottom:594.750000px;}
.y4d_c00286{bottom:614.850000px;}
.y1d_c00286{bottom:631.500000px;}
.y4c_c00286{bottom:634.650000px;}
.y1c_c00286{bottom:649.500000px;}
.y4b_c00286{bottom:652.650000px;}
.y1b_c00286{bottom:667.500000px;}
.y4a_c00286{bottom:674.400000px;}
.y1a_c00286{bottom:684.750000px;}
.y49_c00286{bottom:692.400000px;}
.y19_c00286{bottom:702.750000px;}
.y48_c00286{bottom:710.100000px;}
.y18_c00286{bottom:720.450000px;}
.y47_c00286{bottom:727.800000px;}
.y17_c00286{bottom:738.750000px;}
.y46_c00286{bottom:745.500000px;}
.y45_c00286{bottom:763.500000px;}
.y16_c00286{bottom:772.200000px;}
.y44_c00286{bottom:781.800000px;}
.y15_c00286{bottom:794.550000px;}
.y43_c00286{bottom:799.500000px;}
.y14_c00286{bottom:813.300000px;}
.y42_c00286{bottom:821.100000px;}
.y13_c00286{bottom:831.300000px;}
.y12_c00286{bottom:848.850000px;}
.y41_c00286{bottom:856.200000px;}
.y11_c00286{bottom:866.700000px;}
.y40_c00286{bottom:878.100000px;}
.y10_c00286{bottom:884.400000px;}
.y3f_c00286{bottom:900.750000px;}
.yf_c00286{bottom:902.100000px;}
.y3e_c00286{bottom:919.050000px;}
.ye_c00286{bottom:920.100000px;}
.yd_c00286{bottom:937.800000px;}
.y3d_c00286{bottom:940.350000px;}
.yc_c00286{bottom:955.800000px;}
.y3c_c00286{bottom:962.700000px;}
.yb_c00286{bottom:973.500000px;}
.y3b_c00286{bottom:981.000000px;}
.ya_c00286{bottom:997.200000px;}
.y3a_c00286{bottom:1002.600000px;}
.y9_c00286{bottom:1013.700000px;}
.y39_c00286{bottom:1024.950000px;}
.y8_c00286{bottom:1027.800000px;}
.y7_c00286{bottom:1042.500000px;}
.y38_c00286{bottom:1042.950000px;}
.y6_c00286{bottom:1060.800000px;}
.y37_c00286{bottom:1060.950000px;}
.y36_c00286{bottom:1078.650000px;}
.y5_c00286{bottom:1078.800000px;}
.y4_c00286{bottom:1096.500000px;}
.y35_c00286{bottom:1096.950000px;}
.y34_c00286{bottom:1114.200000px;}
.y3_c00286{bottom:1114.500000px;}
.y2_c00286{bottom:1140.900000px;}
.y1_c00286{bottom:1141.200000px;}
.h6_c00286{height:30.000000px;}
.h5_c00286{height:54.000000px;}
.h3_c00286{height:60.000000px;}
.h4_c00286{height:66.000000px;}
.h7_c00286{height:72.000000px;}
.h2_c00286{height:78.000000px;}
.h8_c00286{height:84.000000px;}
.h0_c00286{height:1265.039977px;}
.h1_c00286{height:1265.250000px;}
.w1_c00286{width:961.500000px;}
.w0_c00286{width:961.560058px;}
.x0_c00286{left:0.000000px;}
.x3_c00286{left:77.100000px;}
.x32_c00286{left:78.150000px;}
.x7a_c00286{left:79.500000px;}
.x4c_c00286{left:93.750000px;}
.xf_c00286{left:94.950000px;}
.x3c_c00286{left:96.900000px;}
.x7e_c00286{left:99.000000px;}
.x89_c00286{left:100.050000px;}
.x8f_c00286{left:101.700000px;}
.x31_c00286{left:105.900000px;}
.x4_c00286{left:110.250000px;}
.x3d_c00286{left:113.400000px;}
.x78_c00286{left:114.600000px;}
.x76_c00286{left:116.100000px;}
.x5f_c00286{left:118.050000px;}
.x8d_c00286{left:119.100000px;}
.x5_c00286{left:120.300000px;}
.x6d_c00286{left:121.800000px;}
.x7b_c00286{left:127.050000px;}
.x43_c00286{left:129.600000px;}
.x17_c00286{left:131.700000px;}
.x24_c00286{left:134.700000px;}
.x50_c00286{left:136.050000px;}
.x48_c00286{left:137.850000px;}
.x5d_c00286{left:139.950000px;}
.x3e_c00286{left:142.200000px;}
.x6_c00286{left:145.200000px;}
.x56_c00286{left:146.550000px;}
.x85_c00286{left:148.650000px;}
.x44_c00286{left:151.200000px;}
.x20_c00286{left:154.200000px;}
.x66_c00286{left:155.250000px;}
.x37_c00286{left:156.450000px;}
.x18_c00286{left:159.750000px;}
.x7f_c00286{left:162.000000px;}
.x21_c00286{left:163.200000px;}
.x7_c00286{left:165.300000px;}
.x60_c00286{left:166.350000px;}
.x8e_c00286{left:167.400000px;}
.x10_c00286{left:169.500000px;}
.x51_c00286{left:171.300000px;}
.x8b_c00286{left:173.850000px;}
.x3f_c00286{left:174.900000px;}
.x83_c00286{left:175.950000px;}
.x72_c00286{left:177.450000px;}
.x19_c00286{left:178.800000px;}
.x74_c00286{left:180.150000px;}
.x6e_c00286{left:181.500000px;}
.x8_c00286{left:184.800000px;}
.x69_c00286{left:189.450000px;}
.x7c_c00286{left:193.650000px;}
.x25_c00286{left:196.200000px;}
.x6f_c00286{left:198.450000px;}
.x38_c00286{left:199.950000px;}
.x40_c00286{left:202.650000px;}
.x11_c00286{left:204.750000px;}
.x5e_c00286{left:206.550000px;}
.x77_c00286{left:211.800000px;}
.x45_c00286{left:213.450000px;}
.x79_c00286{left:216.150000px;}
.x87_c00286{left:217.650000px;}
.x8a_c00286{left:219.300000px;}
.x49_c00286{left:220.650000px;}
.x73_c00286{left:221.700000px;}
.x33_c00286{left:223.200000px;}
.x80_c00286{left:225.300000px;}
.x12_c00286{left:226.350000px;}
.x4d_c00286{left:228.000000px;}
.x9_c00286{left:233.100000px;}
.x26_c00286{left:234.300000px;}
.x8c_c00286{left:236.100000px;}
.x1a_c00286{left:237.450000px;}
.x5a_c00286{left:241.200000px;}
.x61_c00286{left:242.700000px;}
.x4e_c00286{left:244.950000px;}
.x34_c00286{left:247.650000px;}
.x22_c00286{left:250.350000px;}
.x27_c00286{left:252.600000px;}
.x81_c00286{left:254.550000px;}
.x75_c00286{left:255.750000px;}
.x57_c00286{left:257.400000px;}
.x46_c00286{left:260.250000px;}
.x70_c00286{left:262.200000px;}
.xa_c00286{left:263.700000px;}
.x41_c00286{left:265.650000px;}
.x4a_c00286{left:270.300000px;}
.x62_c00286{left:272.250000px;}
.x1b_c00286{left:275.550000px;}
.x52_c00286{left:279.000000px;}
.x39_c00286{left:285.600000px;}
.x90_c00286{left:286.650000px;}
.x28_c00286{left:289.650000px;}
.xb_c00286{left:292.200000px;}
.x1c_c00286{left:294.600000px;}
.x53_c00286{left:298.500000px;}
.x63_c00286{left:302.100000px;}
.x58_c00286{left:304.200000px;}
.x29_c00286{left:305.550000px;}
.x23_c00286{left:308.700000px;}
.xc_c00286{left:309.900000px;}
.x1d_c00286{left:311.550000px;}
.x13_c00286{left:313.050000px;}
.x1_c00286{left:314.250000px;}
.x6a_c00286{left:315.450000px;}
.x67_c00286{left:317.850000px;}
.x35_c00286{left:321.150000px;}
.x2a_c00286{left:322.500000px;}
.x59_c00286{left:326.850000px;}
.x3a_c00286{left:330.300000px;}
.x6b_c00286{left:333.450000px;}
.x64_c00286{left:336.300000px;}
.x82_c00286{left:337.350000px;}
.x2b_c00286{left:339.000000px;}
.x42_c00286{left:342.000000px;}
.x2e_c00286{left:343.050000px;}
.x86_c00286{left:345.900000px;}
.x4b_c00286{left:347.250000px;}
.x5b_c00286{left:348.450000px;}
.xd_c00286{left:351.600000px;}
.x1e_c00286{left:352.950000px;}
.x14_c00286{left:355.200000px;}
.x54_c00286{left:360.450000px;}
.x71_c00286{left:363.000000px;}
.x2c_c00286{left:365.700000px;}
.x91_c00286{left:366.900000px;}
.x15_c00286{left:370.350000px;}
.x2f_c00286{left:372.900000px;}
.x84_c00286{left:376.050000px;}
.x47_c00286{left:377.250000px;}
.x88_c00286{left:379.050000px;}
.x3b_c00286{left:381.000000px;}
.x6c_c00286{left:383.100000px;}
.x1f_c00286{left:384.300000px;}
.x55_c00286{left:385.350000px;}
.x4f_c00286{left:387.450000px;}
.x16_c00286{left:389.100000px;}
.x68_c00286{left:390.900000px;}
.x36_c00286{left:392.400000px;}
.x65_c00286{left:397.500000px;}
.x2d_c00286{left:399.900000px;}
.x30_c00286{left:401.700000px;}
.x5c_c00286{left:404.250000px;}
.xe_c00286{left:410.700000px;}
.x7d_c00286{left:414.000000px;}
.xd3_c00286{left:436.650000px;}
.x100_c00286{left:438.150000px;}
.x92_c00286{left:452.550000px;}
.xae_c00286{left:453.600000px;}
.xdc_c00286{left:454.950000px;}
.x119_c00286{left:456.000000px;}
.x114_c00286{left:463.650000px;}
.x124_c00286{left:468.000000px;}
.x123_c00286{left:469.500000px;}
.xbe_c00286{left:471.600000px;}
.xbb_c00286{left:473.400000px;}
.xaf_c00286{left:474.450000px;}
.xec_c00286{left:477.150000px;}
.xf8_c00286{left:480.300000px;}
.xd4_c00286{left:483.150000px;}
.x93_c00286{left:484.950000px;}
.xf4_c00286{left:486.600000px;}
.x9c_c00286{left:488.250000px;}
.xe0_c00286{left:489.600000px;}
.xf0_c00286{left:492.150000px;}
.xb5_c00286{left:493.200000px;}
.xe5_c00286{left:494.250000px;}
.xfe_c00286{left:496.800000px;}
.x94_c00286{left:500.400000px;}
.xc4_c00286{left:502.200000px;}
.xe9_c00286{left:503.400000px;}
.xa1_c00286{left:504.900000px;}
.xdd_c00286{left:508.200000px;}
.xf1_c00286{left:510.900000px;}
.xb6_c00286{left:514.800000px;}
.x10c_c00286{left:517.950000px;}
.xbc_c00286{left:519.150000px;}
.xd5_c00286{left:520.650000px;}
.xc5_c00286{left:521.700000px;}
.xa2_c00286{left:522.900000px;}
.xf5_c00286{left:524.700000px;}
.x107_c00286{left:525.900000px;}
.x125_c00286{left:528.450000px;}
.xa7_c00286{left:531.600000px;}
.xcf_c00286{left:532.800000px;}
.x106_c00286{left:534.150000px;}
.xca_c00286{left:536.400000px;}
.x10d_c00286{left:537.450000px;}
.xd7_c00286{left:540.000000px;}
.xc8_c00286{left:541.800000px;}
.x95_c00286{left:544.350000px;}
.xb0_c00286{left:546.150000px;}
.xbf_c00286{left:549.750000px;}
.xb7_c00286{left:551.100000px;}
.x96_c00286{left:553.050000px;}
.xe6_c00286{left:554.700000px;}
.x9d_c00286{left:556.950000px;}
.xc9_c00286{left:559.050000px;}
.xa8_c00286{left:560.700000px;}
.xd8_c00286{left:562.350000px;}
.xde_c00286{left:565.800000px;}
.x9e_c00286{left:568.050000px;}
.xd0_c00286{left:570.300000px;}
.x113_c00286{left:571.650000px;}
.xf2_c00286{left:574.200000px;}
.x110_c00286{left:575.850000px;}
.xa9_c00286{left:577.200000px;}
.xbd_c00286{left:578.550000px;}
.xcd_c00286{left:580.200000px;}
.xf3_c00286{left:583.500000px;}
.xa3_c00286{left:585.900000px;}
.x111_c00286{left:587.700000px;}
.xd1_c00286{left:590.400000px;}
.xf9_c00286{left:592.200000px;}
.x115_c00286{left:593.250000px;}
.x120_c00286{left:595.200000px;}
.x11a_c00286{left:598.050000px;}
.xb1_c00286{left:599.100000px;}
.xc6_c00286{left:600.150000px;}
.x108_c00286{left:601.500000px;}
.x116_c00286{left:604.800000px;}
.xd2_c00286{left:608.100000px;}
.xb2_c00286{left:609.150000px;}
.xe1_c00286{left:611.700000px;}
.xb8_c00286{left:613.350000px;}
.xaa_c00286{left:615.300000px;}
.xdf_c00286{left:616.650000px;}
.x112_c00286{left:619.800000px;}
.x97_c00286{left:621.450000px;}
.x101_c00286{left:623.250000px;}
.x9f_c00286{left:624.600000px;}
.xd9_c00286{left:625.800000px;}
.xc0_c00286{left:629.250000px;}
.xb9_c00286{left:631.050000px;}
.x102_c00286{left:634.350000px;}
.xc7_c00286{left:635.850000px;}
.xed_c00286{left:639.450000px;}
.xce_c00286{left:642.900000px;}
.xf6_c00286{left:644.700000px;}
.x98_c00286{left:646.650000px;}
.xab_c00286{left:647.700000px;}
.xfa_c00286{left:648.750000px;}
.xff_c00286{left:649.800000px;}
.x121_c00286{left:651.000000px;}
.xda_c00286{left:652.500000px;}
.xe7_c00286{left:654.150000px;}
.x109_c00286{left:658.500000px;}
.xa4_c00286{left:660.750000px;}
.xcb_c00286{left:661.800000px;}
.x11d_c00286{left:667.200000px;}
.xfb_c00286{left:668.850000px;}
.xea_c00286{left:670.500000px;}
.x103_c00286{left:672.450000px;}
.xe2_c00286{left:673.650000px;}
.xee_c00286{left:675.450000px;}
.xdb_c00286{left:678.450000px;}
.xa5_c00286{left:684.150000px;}
.x11b_c00286{left:687.750000px;}
.xac_c00286{left:689.100000px;}
.x99_c00286{left:690.900000px;}
.xa0_c00286{left:691.950000px;}
.xf7_c00286{left:693.300000px;}
.xc1_c00286{left:695.550000px;}
.xb3_c00286{left:697.350000px;}
.x11e_c00286{left:699.300000px;}
.x11c_c00286{left:700.500000px;}
.x10e_c00286{left:701.700000px;}
.xeb_c00286{left:705.000000px;}
.xd6_c00286{left:707.100000px;}
.x10a_c00286{left:708.150000px;}
.xe8_c00286{left:710.700000px;}
.xb4_c00286{left:714.300000px;}
.xcc_c00286{left:717.300000px;}
.xba_c00286{left:721.500000px;}
.x10b_c00286{left:722.850000px;}
.x10f_c00286{left:726.150000px;}
.xe3_c00286{left:727.950000px;}
.xc2_c00286{left:731.850000px;}
.x9a_c00286{left:734.100000px;}
.xef_c00286{left:735.600000px;}
.xfd_c00286{left:739.500000px;}
.x9b_c00286{left:741.600000px;}
.x2_c00286{left:744.150000px;}
.x104_c00286{left:745.950000px;}
.xe4_c00286{left:747.000000px;}
.x118_c00286{left:748.350000px;}
.xa6_c00286{left:752.250000px;}
.xc3_c00286{left:753.750000px;}
.x11f_c00286{left:754.800000px;}
.x117_c00286{left:757.200000px;}
.xfc_c00286{left:758.250000px;}
.xad_c00286{left:761.100000px;}
.x122_c00286{left:762.450000px;}
.x105_c00286{left:783.450000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:-4.303933pt;}
.ws1_c00286{word-spacing:-1.818509pt;}
.ws4_c00286{word-spacing:-0.888889pt;}
.ws6_c00286{word-spacing:0.000000pt;}
.ws3_c00286{word-spacing:1.566380pt;}
.ws2_c00286{word-spacing:14.387775pt;}
.ws5_c00286{word-spacing:167.111111pt;}
.fs4_c00286{font-size:26.666667pt;}
.fs3_c00286{font-size:48.000000pt;}
.fs1_c00286{font-size:53.333333pt;}
.fs2_c00286{font-size:58.666667pt;}
.fs5_c00286{font-size:64.000000pt;}
.fs0_c00286{font-size:69.333333pt;}
.fs6_c00286{font-size:74.666667pt;}
.y0_c00286{bottom:0.000000pt;}
.y62_c00286{bottom:168.000000pt;}
.y33_c00286{bottom:168.400000pt;}
.y32_c00286{bottom:184.666667pt;}
.y61_c00286{bottom:188.533333pt;}
.y31_c00286{bottom:203.866667pt;}
.y60_c00286{bottom:208.000000pt;}
.y30_c00286{bottom:223.333333pt;}
.y5f_c00286{bottom:239.066667pt;}
.y2f_c00286{bottom:243.200000pt;}
.y2e_c00286{bottom:259.200000pt;}
.y5e_c00286{bottom:270.933333pt;}
.y2d_c00286{bottom:275.200000pt;}
.y5d_c00286{bottom:286.666667pt;}
.y2c_c00286{bottom:294.133333pt;}
.y5c_c00286{bottom:302.400000pt;}
.y2b_c00286{bottom:310.400000pt;}
.y5b_c00286{bottom:318.400000pt;}
.y2a_c00286{bottom:329.600000pt;}
.y29_c00286{bottom:345.866667pt;}
.y5a_c00286{bottom:349.600000pt;}
.y28_c00286{bottom:361.600000pt;}
.y59_c00286{bottom:365.333333pt;}
.y58_c00286{bottom:381.333333pt;}
.y27_c00286{bottom:382.666667pt;}
.y26_c00286{bottom:387.200000pt;}
.y25_c00286{bottom:396.800000pt;}
.y57_c00286{bottom:397.066667pt;}
.y24_c00286{bottom:403.200000pt;}
.y56_c00286{bottom:413.066667pt;}
.y23_c00286{bottom:418.533333pt;}
.y55_c00286{bottom:428.800000pt;}
.y54_c00286{bottom:429.066667pt;}
.y22_c00286{bottom:434.533333pt;}
.y53_c00286{bottom:445.066667pt;}
.y21_c00286{bottom:454.400000pt;}
.y52_c00286{bottom:461.066667pt;}
.y20_c00286{bottom:474.266667pt;}
.y51_c00286{bottom:476.800000pt;}
.y1f_c00286{bottom:494.133333pt;}
.y50_c00286{bottom:496.933333pt;}
.y4f_c00286{bottom:512.666667pt;}
.y1e_c00286{bottom:525.066667pt;}
.y4e_c00286{bottom:528.666667pt;}
.y4d_c00286{bottom:546.533333pt;}
.y1d_c00286{bottom:561.333333pt;}
.y4c_c00286{bottom:564.133333pt;}
.y1c_c00286{bottom:577.333333pt;}
.y4b_c00286{bottom:580.133333pt;}
.y1b_c00286{bottom:593.333333pt;}
.y4a_c00286{bottom:599.466667pt;}
.y1a_c00286{bottom:608.666667pt;}
.y49_c00286{bottom:615.466667pt;}
.y19_c00286{bottom:624.666667pt;}
.y48_c00286{bottom:631.200000pt;}
.y18_c00286{bottom:640.400000pt;}
.y47_c00286{bottom:646.933333pt;}
.y17_c00286{bottom:656.666667pt;}
.y46_c00286{bottom:662.666667pt;}
.y45_c00286{bottom:678.666667pt;}
.y16_c00286{bottom:686.400000pt;}
.y44_c00286{bottom:694.933333pt;}
.y15_c00286{bottom:706.266667pt;}
.y43_c00286{bottom:710.666667pt;}
.y14_c00286{bottom:722.933333pt;}
.y42_c00286{bottom:729.866667pt;}
.y13_c00286{bottom:738.933333pt;}
.y12_c00286{bottom:754.533333pt;}
.y41_c00286{bottom:761.066667pt;}
.y11_c00286{bottom:770.400000pt;}
.y40_c00286{bottom:780.533333pt;}
.y10_c00286{bottom:786.133333pt;}
.y3f_c00286{bottom:800.666667pt;}
.yf_c00286{bottom:801.866667pt;}
.y3e_c00286{bottom:816.933333pt;}
.ye_c00286{bottom:817.866667pt;}
.yd_c00286{bottom:833.600000pt;}
.y3d_c00286{bottom:835.866667pt;}
.yc_c00286{bottom:849.600000pt;}
.y3c_c00286{bottom:855.733333pt;}
.yb_c00286{bottom:865.333333pt;}
.y3b_c00286{bottom:872.000000pt;}
.ya_c00286{bottom:886.400000pt;}
.y3a_c00286{bottom:891.200000pt;}
.y9_c00286{bottom:901.066667pt;}
.y39_c00286{bottom:911.066667pt;}
.y8_c00286{bottom:913.600000pt;}
.y7_c00286{bottom:926.666667pt;}
.y38_c00286{bottom:927.066667pt;}
.y6_c00286{bottom:942.933333pt;}
.y37_c00286{bottom:943.066667pt;}
.y36_c00286{bottom:958.800000pt;}
.y5_c00286{bottom:958.933333pt;}
.y4_c00286{bottom:974.666667pt;}
.y35_c00286{bottom:975.066667pt;}
.y34_c00286{bottom:990.400000pt;}
.y3_c00286{bottom:990.666667pt;}
.y2_c00286{bottom:1014.133333pt;}
.y1_c00286{bottom:1014.400000pt;}
.h6_c00286{height:26.666667pt;}
.h5_c00286{height:48.000000pt;}
.h3_c00286{height:53.333333pt;}
.h4_c00286{height:58.666667pt;}
.h7_c00286{height:64.000000pt;}
.h2_c00286{height:69.333333pt;}
.h8_c00286{height:74.666667pt;}
.h0_c00286{height:1124.479980pt;}
.h1_c00286{height:1124.666667pt;}
.w1_c00286{width:854.666667pt;}
.w0_c00286{width:854.720052pt;}
.x0_c00286{left:0.000000pt;}
.x3_c00286{left:68.533333pt;}
.x32_c00286{left:69.466667pt;}
.x7a_c00286{left:70.666667pt;}
.x4c_c00286{left:83.333333pt;}
.xf_c00286{left:84.400000pt;}
.x3c_c00286{left:86.133333pt;}
.x7e_c00286{left:88.000000pt;}
.x89_c00286{left:88.933333pt;}
.x8f_c00286{left:90.400000pt;}
.x31_c00286{left:94.133333pt;}
.x4_c00286{left:98.000000pt;}
.x3d_c00286{left:100.800000pt;}
.x78_c00286{left:101.866667pt;}
.x76_c00286{left:103.200000pt;}
.x5f_c00286{left:104.933333pt;}
.x8d_c00286{left:105.866667pt;}
.x5_c00286{left:106.933333pt;}
.x6d_c00286{left:108.266667pt;}
.x7b_c00286{left:112.933333pt;}
.x43_c00286{left:115.200000pt;}
.x17_c00286{left:117.066667pt;}
.x24_c00286{left:119.733333pt;}
.x50_c00286{left:120.933333pt;}
.x48_c00286{left:122.533333pt;}
.x5d_c00286{left:124.400000pt;}
.x3e_c00286{left:126.400000pt;}
.x6_c00286{left:129.066667pt;}
.x56_c00286{left:130.266667pt;}
.x85_c00286{left:132.133333pt;}
.x44_c00286{left:134.400000pt;}
.x20_c00286{left:137.066667pt;}
.x66_c00286{left:138.000000pt;}
.x37_c00286{left:139.066667pt;}
.x18_c00286{left:142.000000pt;}
.x7f_c00286{left:144.000000pt;}
.x21_c00286{left:145.066667pt;}
.x7_c00286{left:146.933333pt;}
.x60_c00286{left:147.866667pt;}
.x8e_c00286{left:148.800000pt;}
.x10_c00286{left:150.666667pt;}
.x51_c00286{left:152.266667pt;}
.x8b_c00286{left:154.533333pt;}
.x3f_c00286{left:155.466667pt;}
.x83_c00286{left:156.400000pt;}
.x72_c00286{left:157.733333pt;}
.x19_c00286{left:158.933333pt;}
.x74_c00286{left:160.133333pt;}
.x6e_c00286{left:161.333333pt;}
.x8_c00286{left:164.266667pt;}
.x69_c00286{left:168.400000pt;}
.x7c_c00286{left:172.133333pt;}
.x25_c00286{left:174.400000pt;}
.x6f_c00286{left:176.400000pt;}
.x38_c00286{left:177.733333pt;}
.x40_c00286{left:180.133333pt;}
.x11_c00286{left:182.000000pt;}
.x5e_c00286{left:183.600000pt;}
.x77_c00286{left:188.266667pt;}
.x45_c00286{left:189.733333pt;}
.x79_c00286{left:192.133333pt;}
.x87_c00286{left:193.466667pt;}
.x8a_c00286{left:194.933333pt;}
.x49_c00286{left:196.133333pt;}
.x73_c00286{left:197.066667pt;}
.x33_c00286{left:198.400000pt;}
.x80_c00286{left:200.266667pt;}
.x12_c00286{left:201.200000pt;}
.x4d_c00286{left:202.666667pt;}
.x9_c00286{left:207.200000pt;}
.x26_c00286{left:208.266667pt;}
.x8c_c00286{left:209.866667pt;}
.x1a_c00286{left:211.066667pt;}
.x5a_c00286{left:214.400000pt;}
.x61_c00286{left:215.733333pt;}
.x4e_c00286{left:217.733333pt;}
.x34_c00286{left:220.133333pt;}
.x22_c00286{left:222.533333pt;}
.x27_c00286{left:224.533333pt;}
.x81_c00286{left:226.266667pt;}
.x75_c00286{left:227.333333pt;}
.x57_c00286{left:228.800000pt;}
.x46_c00286{left:231.333333pt;}
.x70_c00286{left:233.066667pt;}
.xa_c00286{left:234.400000pt;}
.x41_c00286{left:236.133333pt;}
.x4a_c00286{left:240.266667pt;}
.x62_c00286{left:242.000000pt;}
.x1b_c00286{left:244.933333pt;}
.x52_c00286{left:248.000000pt;}
.x39_c00286{left:253.866667pt;}
.x90_c00286{left:254.800000pt;}
.x28_c00286{left:257.466667pt;}
.xb_c00286{left:259.733333pt;}
.x1c_c00286{left:261.866667pt;}
.x53_c00286{left:265.333333pt;}
.x63_c00286{left:268.533333pt;}
.x58_c00286{left:270.400000pt;}
.x29_c00286{left:271.600000pt;}
.x23_c00286{left:274.400000pt;}
.xc_c00286{left:275.466667pt;}
.x1d_c00286{left:276.933333pt;}
.x13_c00286{left:278.266667pt;}
.x1_c00286{left:279.333333pt;}
.x6a_c00286{left:280.400000pt;}
.x67_c00286{left:282.533333pt;}
.x35_c00286{left:285.466667pt;}
.x2a_c00286{left:286.666667pt;}
.x59_c00286{left:290.533333pt;}
.x3a_c00286{left:293.600000pt;}
.x6b_c00286{left:296.400000pt;}
.x64_c00286{left:298.933333pt;}
.x82_c00286{left:299.866667pt;}
.x2b_c00286{left:301.333333pt;}
.x42_c00286{left:304.000000pt;}
.x2e_c00286{left:304.933333pt;}
.x86_c00286{left:307.466667pt;}
.x4b_c00286{left:308.666667pt;}
.x5b_c00286{left:309.733333pt;}
.xd_c00286{left:312.533333pt;}
.x1e_c00286{left:313.733333pt;}
.x14_c00286{left:315.733333pt;}
.x54_c00286{left:320.400000pt;}
.x71_c00286{left:322.666667pt;}
.x2c_c00286{left:325.066667pt;}
.x91_c00286{left:326.133333pt;}
.x15_c00286{left:329.200000pt;}
.x2f_c00286{left:331.466667pt;}
.x84_c00286{left:334.266667pt;}
.x47_c00286{left:335.333333pt;}
.x88_c00286{left:336.933333pt;}
.x3b_c00286{left:338.666667pt;}
.x6c_c00286{left:340.533333pt;}
.x1f_c00286{left:341.600000pt;}
.x55_c00286{left:342.533333pt;}
.x4f_c00286{left:344.400000pt;}
.x16_c00286{left:345.866667pt;}
.x68_c00286{left:347.466667pt;}
.x36_c00286{left:348.800000pt;}
.x65_c00286{left:353.333333pt;}
.x2d_c00286{left:355.466667pt;}
.x30_c00286{left:357.066667pt;}
.x5c_c00286{left:359.333333pt;}
.xe_c00286{left:365.066667pt;}
.x7d_c00286{left:368.000000pt;}
.xd3_c00286{left:388.133333pt;}
.x100_c00286{left:389.466667pt;}
.x92_c00286{left:402.266667pt;}
.xae_c00286{left:403.200000pt;}
.xdc_c00286{left:404.400000pt;}
.x119_c00286{left:405.333333pt;}
.x114_c00286{left:412.133333pt;}
.x124_c00286{left:416.000000pt;}
.x123_c00286{left:417.333333pt;}
.xbe_c00286{left:419.200000pt;}
.xbb_c00286{left:420.800000pt;}
.xaf_c00286{left:421.733333pt;}
.xec_c00286{left:424.133333pt;}
.xf8_c00286{left:426.933333pt;}
.xd4_c00286{left:429.466667pt;}
.x93_c00286{left:431.066667pt;}
.xf4_c00286{left:432.533333pt;}
.x9c_c00286{left:434.000000pt;}
.xe0_c00286{left:435.200000pt;}
.xf0_c00286{left:437.466667pt;}
.xb5_c00286{left:438.400000pt;}
.xe5_c00286{left:439.333333pt;}
.xfe_c00286{left:441.600000pt;}
.x94_c00286{left:444.800000pt;}
.xc4_c00286{left:446.400000pt;}
.xe9_c00286{left:447.466667pt;}
.xa1_c00286{left:448.800000pt;}
.xdd_c00286{left:451.733333pt;}
.xf1_c00286{left:454.133333pt;}
.xb6_c00286{left:457.600000pt;}
.x10c_c00286{left:460.400000pt;}
.xbc_c00286{left:461.466667pt;}
.xd5_c00286{left:462.800000pt;}
.xc5_c00286{left:463.733333pt;}
.xa2_c00286{left:464.800000pt;}
.xf5_c00286{left:466.400000pt;}
.x107_c00286{left:467.466667pt;}
.x125_c00286{left:469.733333pt;}
.xa7_c00286{left:472.533333pt;}
.xcf_c00286{left:473.600000pt;}
.x106_c00286{left:474.800000pt;}
.xca_c00286{left:476.800000pt;}
.x10d_c00286{left:477.733333pt;}
.xd7_c00286{left:480.000000pt;}
.xc8_c00286{left:481.600000pt;}
.x95_c00286{left:483.866667pt;}
.xb0_c00286{left:485.466667pt;}
.xbf_c00286{left:488.666667pt;}
.xb7_c00286{left:489.866667pt;}
.x96_c00286{left:491.600000pt;}
.xe6_c00286{left:493.066667pt;}
.x9d_c00286{left:495.066667pt;}
.xc9_c00286{left:496.933333pt;}
.xa8_c00286{left:498.400000pt;}
.xd8_c00286{left:499.866667pt;}
.xde_c00286{left:502.933333pt;}
.x9e_c00286{left:504.933333pt;}
.xd0_c00286{left:506.933333pt;}
.x113_c00286{left:508.133333pt;}
.xf2_c00286{left:510.400000pt;}
.x110_c00286{left:511.866667pt;}
.xa9_c00286{left:513.066667pt;}
.xbd_c00286{left:514.266667pt;}
.xcd_c00286{left:515.733333pt;}
.xf3_c00286{left:518.666667pt;}
.xa3_c00286{left:520.800000pt;}
.x111_c00286{left:522.400000pt;}
.xd1_c00286{left:524.800000pt;}
.xf9_c00286{left:526.400000pt;}
.x115_c00286{left:527.333333pt;}
.x120_c00286{left:529.066667pt;}
.x11a_c00286{left:531.600000pt;}
.xb1_c00286{left:532.533333pt;}
.xc6_c00286{left:533.466667pt;}
.x108_c00286{left:534.666667pt;}
.x116_c00286{left:537.600000pt;}
.xd2_c00286{left:540.533333pt;}
.xb2_c00286{left:541.466667pt;}
.xe1_c00286{left:543.733333pt;}
.xb8_c00286{left:545.200000pt;}
.xaa_c00286{left:546.933333pt;}
.xdf_c00286{left:548.133333pt;}
.x112_c00286{left:550.933333pt;}
.x97_c00286{left:552.400000pt;}
.x101_c00286{left:554.000000pt;}
.x9f_c00286{left:555.200000pt;}
.xd9_c00286{left:556.266667pt;}
.xc0_c00286{left:559.333333pt;}
.xb9_c00286{left:560.933333pt;}
.x102_c00286{left:563.866667pt;}
.xc7_c00286{left:565.200000pt;}
.xed_c00286{left:568.400000pt;}
.xce_c00286{left:571.466667pt;}
.xf6_c00286{left:573.066667pt;}
.x98_c00286{left:574.800000pt;}
.xab_c00286{left:575.733333pt;}
.xfa_c00286{left:576.666667pt;}
.xff_c00286{left:577.600000pt;}
.x121_c00286{left:578.666667pt;}
.xda_c00286{left:580.000000pt;}
.xe7_c00286{left:581.466667pt;}
.x109_c00286{left:585.333333pt;}
.xa4_c00286{left:587.333333pt;}
.xcb_c00286{left:588.266667pt;}
.x11d_c00286{left:593.066667pt;}
.xfb_c00286{left:594.533333pt;}
.xea_c00286{left:596.000000pt;}
.x103_c00286{left:597.733333pt;}
.xe2_c00286{left:598.800000pt;}
.xee_c00286{left:600.400000pt;}
.xdb_c00286{left:603.066667pt;}
.xa5_c00286{left:608.133333pt;}
.x11b_c00286{left:611.333333pt;}
.xac_c00286{left:612.533333pt;}
.x99_c00286{left:614.133333pt;}
.xa0_c00286{left:615.066667pt;}
.xf7_c00286{left:616.266667pt;}
.xc1_c00286{left:618.266667pt;}
.xb3_c00286{left:619.866667pt;}
.x11e_c00286{left:621.600000pt;}
.x11c_c00286{left:622.666667pt;}
.x10e_c00286{left:623.733333pt;}
.xeb_c00286{left:626.666667pt;}
.xd6_c00286{left:628.533333pt;}
.x10a_c00286{left:629.466667pt;}
.xe8_c00286{left:631.733333pt;}
.xb4_c00286{left:634.933333pt;}
.xcc_c00286{left:637.600000pt;}
.xba_c00286{left:641.333333pt;}
.x10b_c00286{left:642.533333pt;}
.x10f_c00286{left:645.466667pt;}
.xe3_c00286{left:647.066667pt;}
.xc2_c00286{left:650.533333pt;}
.x9a_c00286{left:652.533333pt;}
.xef_c00286{left:653.866667pt;}
.xfd_c00286{left:657.333333pt;}
.x9b_c00286{left:659.200000pt;}
.x2_c00286{left:661.466667pt;}
.x104_c00286{left:663.066667pt;}
.xe4_c00286{left:664.000000pt;}
.x118_c00286{left:665.200000pt;}
.xa6_c00286{left:668.666667pt;}
.xc3_c00286{left:670.000000pt;}
.x11f_c00286{left:670.933333pt;}
.x117_c00286{left:673.066667pt;}
.xfc_c00286{left:674.000000pt;}
.xad_c00286{left:676.533333pt;}
.x122_c00286{left:677.733333pt;}
.x105_c00286{left:696.400000pt;}
}





/* 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_c00287 {
    display:none;
  }
  .loading-indicator_c00287.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00287 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_c00287 { 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_c00287" -> "#page-container .classname_c00287")
 */
.pf_c00287 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00287 { /* 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_c00287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00287 { /* 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_c00287 { /* 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_c00287 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00287 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00287 {overflow:visible;}
  }
}
.c_c00287 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00287 { /* 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_c00287:after { /* webkit #35443 */
  content: '';
}
.t_c00287:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00287 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 */
}
.__c00287 { /* 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_c00287 { /* info for Javascript */
  display:none;
}
.l_c00287 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00287 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00287 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00287: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_c00287 {
    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_c00287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00287.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_c00287 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00287;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.000000;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;}
.m8f_c00287{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00287{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.me5_c00287{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m8_c00287{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00287{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m18_c00287{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m97_c00287{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m9_c00287{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00287{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mee_c00287{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md7_c00287{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00287{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00287{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00287{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m43_c00287{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00287{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00287{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md0_c00287{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00287{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00287{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00287{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m57_c00287{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m68_c00287{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m17_c00287{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m56_c00287{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00287{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00287{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m32_c00287{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md4_c00287{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00287{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m4_c00287{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m64_c00287{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00287{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m55_c00287{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mab_c00287{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00287{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m59_c00287{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me3_c00287{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m26_c00287{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mac_c00287{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mae_c00287{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m7_c00287{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00287{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00287{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00287{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m49_c00287{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00287{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md2_c00287{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m33_c00287{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00287{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00287{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m90_c00287{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00287{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00287{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m61_c00287{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m30_c00287{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00287{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00287{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00287{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00287{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m16_c00287{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00287{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.md6_c00287{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m79_c00287{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m82_c00287{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m62_c00287{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m15_c00287{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00287{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00287{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00287{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00287{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00287{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00287{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.me1_c00287{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m74_c00287{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00287{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00287{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00287{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md5_c00287{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m69_c00287{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m22_c00287{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m67_c00287{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00287{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.me0_c00287{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00287{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00287{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00287{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mce_c00287{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00287{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00287{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m21_c00287{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m73_c00287{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00287{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m54_c00287{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m38_c00287{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m65_c00287{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00287{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00287{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m53_c00287{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00287{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m63_c00287{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m31_c00287{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m60_c00287{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md9_c00287{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m41_c00287{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m45_c00287{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00287{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m34_c00287{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m91_c00287{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00287{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00287{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m51_c00287{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00287{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m36_c00287{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00287{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mad_c00287{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m88_c00287{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m52_c00287{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m24_c00287{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m86_c00287{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m85_c00287{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00287{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mda_c00287{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m71_c00287{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00287{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m42_c00287{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00287{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00287{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m93_c00287{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00287{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m58_c00287{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00287{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m29_c00287{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00287{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.maa_c00287{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m72_c00287{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00287{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m27_c00287{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m95_c00287{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00287{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mde_c00287{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00287{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00287{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m28_c00287{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00287{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.md3_c00287{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m25_c00287{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.md8_c00287{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m19_c00287{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m14_c00287{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m66_c00287{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00287{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00287{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00287{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m37_c00287{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00287{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00287{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m75_c00287{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m87_c00287{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mef_c00287{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00287{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m50_c00287{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00287{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00287{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00287{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00287{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00287{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m20_c00287{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00287{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00287{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00287{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m44_c00287{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m89_c00287{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00287{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mba_c00287{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m84_c00287{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00287{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00287{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m23_c00287{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00287{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00287{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m12_c00287{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00287{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me4_c00287{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.me7_c00287{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me2_c00287{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00287{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m78_c00287{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00287{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m47_c00287{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m98_c00287{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00287{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m39_c00287{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00287{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me_c00287{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6_c00287{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00287{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m81_c00287{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m92_c00287{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00287{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00287{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2_c00287{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mea_c00287{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00287{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.med_c00287{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md_c00287{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00287{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m77_c00287{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m94_c00287{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00287{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m70_c00287{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10_c00287{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m46_c00287{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m99_c00287{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00287{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00287{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mec_c00287{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00287{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5_c00287{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.md1_c00287{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00287{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m40_c00287{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00287{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00287{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m76_c00287{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00287{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mf_c00287{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00287{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me6_c00287{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m80_c00287{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.me8_c00287{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.meb_c00287{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00287{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mca_c00287{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00287{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00287{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.maf_c00287{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m48_c00287{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.me9_c00287{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00287{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m0_c00287{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00287{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m35_c00287{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m83_c00287{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mb_c00287{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m96_c00287{transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);}
.m11_c00287{transform:matrix(0.471000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471000,0.000000,0.000000,0.250000,0,0);}
.ma_c00287{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);}
.m13_c00287{transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls0_c00287{letter-spacing:0.000000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{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__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00287{word-spacing:-11.006369px;}
.ws1_c00287{word-spacing:-9.014218px;}
.ws4_c00287{word-spacing:0.000000px;}
.ws2_c00287{word-spacing:0.189112px;}
.ws0_c00287{word-spacing:2.639871px;}
.fc0_c00287{color:transparent;}
.fs2_c00287{font-size:30.000000px;}
.fs7_c00287{font-size:36.000000px;}
.fs0_c00287{font-size:48.000000px;}
.fs4_c00287{font-size:54.000000px;}
.fs3_c00287{font-size:60.000000px;}
.fs5_c00287{font-size:66.000000px;}
.fs6_c00287{font-size:72.000000px;}
.fs1_c00287{font-size:78.000000px;}
.y0_c00287{bottom:0.000000px;}
.y64_c00287{bottom:169.950000px;}
.y63_c00287{bottom:185.400000px;}
.y33_c00287{bottom:191.250000px;}
.y62_c00287{bottom:200.550000px;}
.y32_c00287{bottom:205.650000px;}
.y61_c00287{bottom:214.500000px;}
.y31_c00287{bottom:219.300000px;}
.y60_c00287{bottom:261.000000px;}
.y30_c00287{bottom:266.400000px;}
.y5f_c00287{bottom:279.000000px;}
.y2f_c00287{bottom:283.350000px;}
.y2e_c00287{bottom:304.950000px;}
.y5e_c00287{bottom:305.700000px;}
.y5d_c00287{bottom:323.700000px;}
.y2d_c00287{bottom:327.600000px;}
.y5c_c00287{bottom:342.000000px;}
.y2c_c00287{bottom:344.850000px;}
.y5b_c00287{bottom:360.000000px;}
.y2b_c00287{bottom:361.800000px;}
.y5a_c00287{bottom:378.000000px;}
.y2a_c00287{bottom:383.700000px;}
.y59_c00287{bottom:396.000000px;}
.y29_c00287{bottom:406.050000px;}
.y58_c00287{bottom:414.000000px;}
.y28_c00287{bottom:423.300000px;}
.y57_c00287{bottom:431.700000px;}
.y27_c00287{bottom:445.500000px;}
.y56_c00287{bottom:449.700000px;}
.y26_c00287{bottom:463.200000px;}
.y55_c00287{bottom:467.700000px;}
.y25_c00287{bottom:480.900000px;}
.y54_c00287{bottom:485.250000px;}
.y24_c00287{bottom:502.950000px;}
.y23_c00287{bottom:520.650000px;}
.y22_c00287{bottom:538.350000px;}
.y53_c00287{bottom:538.650000px;}
.y21_c00287{bottom:556.350000px;}
.y20_c00287{bottom:574.050000px;}
.y52_c00287{bottom:574.350000px;}
.y1f_c00287{bottom:591.750000px;}
.y51_c00287{bottom:592.350000px;}
.y1e_c00287{bottom:609.450000px;}
.y50_c00287{bottom:610.050000px;}
.y1d_c00287{bottom:627.450000px;}
.y4f_c00287{bottom:628.050000px;}
.y1c_c00287{bottom:645.150000px;}
.y4e_c00287{bottom:646.350000px;}
.y1b_c00287{bottom:663.150000px;}
.y4d_c00287{bottom:663.600000px;}
.y1a_c00287{bottom:681.150000px;}
.y4c_c00287{bottom:681.900000px;}
.y4b_c00287{bottom:699.600000px;}
.y19_c00287{bottom:702.450000px;}
.y4a_c00287{bottom:717.600000px;}
.y18_c00287{bottom:721.500000px;}
.y49_c00287{bottom:735.600000px;}
.y17_c00287{bottom:742.650000px;}
.y48_c00287{bottom:753.600000px;}
.y16_c00287{bottom:765.000000px;}
.y47_c00287{bottom:771.300000px;}
.y15_c00287{bottom:785.550000px;}
.y46_c00287{bottom:789.300000px;}
.y45_c00287{bottom:807.000000px;}
.y14_c00287{bottom:808.500000px;}
.y44_c00287{bottom:825.000000px;}
.y13_c00287{bottom:826.800000px;}
.y43_c00287{bottom:843.000000px;}
.y12_c00287{bottom:844.500000px;}
.y42_c00287{bottom:860.700000px;}
.y11_c00287{bottom:862.200000px;}
.y41_c00287{bottom:878.700000px;}
.y10_c00287{bottom:883.050000px;}
.y40_c00287{bottom:896.400000px;}
.yf_c00287{bottom:902.100000px;}
.y3f_c00287{bottom:914.400000px;}
.ye_c00287{bottom:920.100000px;}
.y3e_c00287{bottom:932.700000px;}
.yd_c00287{bottom:937.800000px;}
.y3d_c00287{bottom:950.400000px;}
.yc_c00287{bottom:956.100000px;}
.y3c_c00287{bottom:968.400000px;}
.yb_c00287{bottom:973.800000px;}
.y3b_c00287{bottom:986.100000px;}
.ya_c00287{bottom:991.500000px;}
.y3a_c00287{bottom:1003.800000px;}
.y9_c00287{bottom:1010.550000px;}
.y39_c00287{bottom:1022.100000px;}
.y8_c00287{bottom:1036.200000px;}
.y38_c00287{bottom:1039.350000px;}
.y37_c00287{bottom:1057.350000px;}
.y7_c00287{bottom:1063.200000px;}
.y6_c00287{bottom:1070.700000px;}
.y36_c00287{bottom:1081.800000px;}
.y5_c00287{bottom:1089.300000px;}
.y35_c00287{bottom:1092.600000px;}
.y4_c00287{bottom:1110.600000px;}
.y34_c00287{bottom:1114.950000px;}
.y3_c00287{bottom:1130.700000px;}
.y1_c00287{bottom:1136.550000px;}
.y2_c00287{bottom:1141.200000px;}
.h4_c00287{height:30.000000px;}
.h9_c00287{height:36.000000px;}
.h2_c00287{height:48.000000px;}
.h6_c00287{height:54.000000px;}
.h5_c00287{height:60.000000px;}
.h7_c00287{height:66.000000px;}
.h8_c00287{height:72.000000px;}
.h3_c00287{height:78.000000px;}
.h0_c00287{height:1263.599944px;}
.h1_c00287{height:1263.750000px;}
.w1_c00287{width:961.500000px;}
.w0_c00287{width:961.560058px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:193.650000px;}
.xe_c00287{left:195.150000px;}
.x3_c00287{left:206.250000px;}
.x12_c00287{left:213.300000px;}
.x26_c00287{left:214.350000px;}
.x5c_c00287{left:215.550000px;}
.x7f_c00287{left:219.900000px;}
.x53_c00287{left:228.600000px;}
.x4_c00287{left:229.950000px;}
.x15_c00287{left:231.150000px;}
.x35_c00287{left:232.200000px;}
.x31_c00287{left:233.850000px;}
.x69_c00287{left:235.050000px;}
.x1a_c00287{left:236.700000px;}
.x21_c00287{left:237.750000px;}
.xf_c00287{left:239.850000px;}
.x63_c00287{left:241.350000px;}
.x7b_c00287{left:245.100000px;}
.x76_c00287{left:246.300000px;}
.x22_c00287{left:248.550000px;}
.x3e_c00287{left:250.200000px;}
.x60_c00287{left:251.400000px;}
.x2d_c00287{left:252.450000px;}
.x54_c00287{left:257.400000px;}
.x4f_c00287{left:261.300000px;}
.x5d_c00287{left:263.100000px;}
.x36_c00287{left:264.600000px;}
.x47_c00287{left:267.750000px;}
.x32_c00287{left:268.800000px;}
.x4b_c00287{left:271.050000px;}
.x73_c00287{left:272.550000px;}
.x80_c00287{left:279.600000px;}
.x6a_c00287{left:280.800000px;}
.x58_c00287{left:281.850000px;}
.x64_c00287{left:283.050000px;}
.x27_c00287{left:284.850000px;}
.x1b_c00287{left:286.050000px;}
.x6f_c00287{left:288.750000px;}
.x6c_c00287{left:289.950000px;}
.x3b_c00287{left:293.100000px;}
.x5e_c00287{left:295.800000px;}
.x5_c00287{left:296.850000px;}
.x16_c00287{left:298.800000px;}
.x10_c00287{left:303.600000px;}
.x6_c00287{left:307.650000px;}
.x13_c00287{left:310.200000px;}
.x37_c00287{left:312.150000px;}
.x23_c00287{left:317.250000px;}
.x7_c00287{left:321.000000px;}
.x3f_c00287{left:323.250000px;}
.x65_c00287{left:325.500000px;}
.x33_c00287{left:328.200000px;}
.x7a_c00287{left:331.050000px;}
.x40_c00287{left:332.250000px;}
.x7c_c00287{left:334.500000px;}
.x14_c00287{left:337.950000px;}
.x8_c00287{left:339.450000px;}
.x44_c00287{left:340.650000px;}
.x67_c00287{left:341.850000px;}
.x41_c00287{left:343.350000px;}
.x28_c00287{left:347.850000px;}
.x1c_c00287{left:349.050000px;}
.x2e_c00287{left:351.750000px;}
.x45_c00287{left:353.250000px;}
.x50_c00287{left:355.650000px;}
.x70_c00287{left:360.450000px;}
.x59_c00287{left:362.100000px;}
.x77_c00287{left:366.900000px;}
.x9_c00287{left:371.850000px;}
.x24_c00287{left:373.050000px;}
.x29_c00287{left:374.100000px;}
.x17_c00287{left:377.700000px;}
.x1d_c00287{left:382.500000px;}
.x38_c00287{left:387.450000px;}
.xa_c00287{left:391.350000px;}
.x55_c00287{left:392.700000px;}
.x71_c00287{left:394.650000px;}
.x74_c00287{left:397.050000px;}
.x49_c00287{left:398.100000px;}
.x48_c00287{left:399.450000px;}
.x1e_c00287{left:402.300000px;}
.x5a_c00287{left:403.800000px;}
.x66_c00287{left:404.850000px;}
.x2f_c00287{left:406.050000px;}
.x39_c00287{left:407.550000px;}
.xb_c00287{left:409.650000px;}
.x68_c00287{left:411.000000px;}
.x42_c00287{left:413.250000px;}
.x18_c00287{left:419.100000px;}
.x2a_c00287{left:426.300000px;}
.x3c_c00287{left:429.900000px;}
.x61_c00287{left:432.750000px;}
.x2_c00287{left:433.800000px;}
.x6b_c00287{left:435.000000px;}
.x19_c00287{left:436.800000px;}
.x72_c00287{left:438.600000px;}
.x78_c00287{left:440.700000px;}
.x7d_c00287{left:444.300000px;}
.x1f_c00287{left:447.600000px;}
.x4a_c00287{left:448.800000px;}
.x75_c00287{left:453.600000px;}
.x51_c00287{left:454.950000px;}
.xc_c00287{left:456.150000px;}
.x6d_c00287{left:457.350000px;}
.x7e_c00287{left:460.350000px;}
.x5f_c00287{left:462.600000px;}
.x62_c00287{left:464.550000px;}
.x3a_c00287{left:465.900000px;}
.x34_c00287{left:467.400000px;}
.x4c_c00287{left:469.050000px;}
.x3d_c00287{left:471.600000px;}
.x30_c00287{left:472.950000px;}
.x46_c00287{left:474.600000px;}
.x25_c00287{left:477.150000px;}
.x79_c00287{left:480.600000px;}
.x2b_c00287{left:481.800000px;}
.x57_c00287{left:484.800000px;}
.x11_c00287{left:491.550000px;}
.x52_c00287{left:492.750000px;}
.x2c_c00287{left:495.150000px;}
.x4e_c00287{left:498.600000px;}
.x43_c00287{left:500.100000px;}
.xd_c00287{left:501.900000px;}
.x5b_c00287{left:512.850000px;}
.x20_c00287{left:514.950000px;}
.x56_c00287{left:516.900000px;}
.x4d_c00287{left:519.750000px;}
.x6e_c00287{left:526.800000px;}
.x86_c00287{left:550.500000px;}
.x120_c00287{left:552.600000px;}
.x10b_c00287{left:565.500000px;}
.x8d_c00287{left:567.000000px;}
.x97_c00287{left:568.050000px;}
.xd9_c00287{left:569.250000px;}
.x106_c00287{left:570.300000px;}
.x11f_c00287{left:574.800000px;}
.xcf_c00287{left:576.750000px;}
.xae_c00287{left:584.850000px;}
.x81_c00287{left:587.100000px;}
.xb4_c00287{left:588.600000px;}
.xd3_c00287{left:589.800000px;}
.x114_c00287{left:590.850000px;}
.xee_c00287{left:592.200000px;}
.x9e_c00287{left:593.400000px;}
.xe4_c00287{left:595.500000px;}
.x8e_c00287{left:597.300000px;}
.xfe_c00287{left:600.900000px;}
.xc2_c00287{left:602.550000px;}
.xa4_c00287{left:604.650000px;}
.x10a_c00287{left:605.850000px;}
.xfa_c00287{left:607.500000px;}
.xc8_c00287{left:609.900000px;}
.x87_c00287{left:611.700000px;}
.x98_c00287{left:613.800000px;}
.x8f_c00287{left:617.400000px;}
.xf6_c00287{left:619.650000px;}
.x11d_c00287{left:621.000000px;}
.x82_c00287{left:622.050000px;}
.x10f_c00287{left:623.400000px;}
.xaf_c00287{left:624.450000px;}
.xc9_c00287{left:628.650000px;}
.xbc_c00287{left:630.600000px;}
.xc3_c00287{left:632.100000px;}
.xb0_c00287{left:634.200000px;}
.xda_c00287{left:635.550000px;}
.xb9_c00287{left:636.600000px;}
.x99_c00287{left:639.300000px;}
.x88_c00287{left:641.550000px;}
.xd7_c00287{left:642.600000px;}
.xca_c00287{left:644.100000px;}
.xa5_c00287{left:645.750000px;}
.xe9_c00287{left:647.550000px;}
.x11e_c00287{left:649.350000px;}
.x9f_c00287{left:650.700000px;}
.xe5_c00287{left:653.400000px;}
.xc4_c00287{left:655.200000px;}
.xaa_c00287{left:657.900000px;}
.xb1_c00287{left:659.100000px;}
.x102_c00287{left:660.300000px;}
.x90_c00287{left:663.450000px;}
.xdb_c00287{left:664.650000px;}
.xa6_c00287{left:665.850000px;}
.xba_c00287{left:667.950000px;}
.xbd_c00287{left:669.150000px;}
.xb5_c00287{left:670.350000px;}
.x10c_c00287{left:671.550000px;}
.x115_c00287{left:674.550000px;}
.x111_c00287{left:675.900000px;}
.x101_c00287{left:676.950000px;}
.x91_c00287{left:678.150000px;}
.xcb_c00287{left:679.800000px;}
.x122_c00287{left:683.100000px;}
.xdd_c00287{left:686.100000px;}
.xfb_c00287{left:687.450000px;}
.x83_c00287{left:688.950000px;}
.xf7_c00287{left:690.300000px;}
.xa0_c00287{left:692.850000px;}
.x104_c00287{left:694.200000px;}
.xff_c00287{left:696.300000px;}
.xd0_c00287{left:697.800000px;}
.x112_c00287{left:699.600000px;}
.xa7_c00287{left:701.850000px;}
.xa1_c00287{left:704.700000px;}
.x9a_c00287{left:708.450000px;}
.xef_c00287{left:709.800000px;}
.xab_c00287{left:711.900000px;}
.xd1_c00287{left:714.750000px;}
.x89_c00287{left:716.400000px;}
.xf3_c00287{left:719.100000px;}
.xea_c00287{left:720.600000px;}
.x84_c00287{left:721.650000px;}
.xf1_c00287{left:722.700000px;}
.x92_c00287{left:723.900000px;}
.x103_c00287{left:725.700000px;}
.xe2_c00287{left:728.550000px;}
.x118_c00287{left:730.650000px;}
.xbb_c00287{left:731.700000px;}
.xbe_c00287{left:733.200000px;}
.xb6_c00287{left:734.850000px;}
.xc5_c00287{left:736.200000px;}
.xe6_c00287{left:737.250000px;}
.xcc_c00287{left:738.450000px;}
.xf0_c00287{left:739.650000px;}
.x123_c00287{left:742.500000px;}
.xd8_c00287{left:744.150000px;}
.xd4_c00287{left:747.750000px;}
.xac_c00287{left:749.700000px;}
.xbf_c00287{left:751.200000px;}
.x9b_c00287{left:752.400000px;}
.xf4_c00287{left:753.600000px;}
.xec_c00287{left:756.600000px;}
.xde_c00287{left:759.600000px;}
.x116_c00287{left:760.950000px;}
.x8a_c00287{left:762.900000px;}
.xfc_c00287{left:766.950000px;}
.xb7_c00287{left:769.500000px;}
.xcd_c00287{left:770.850000px;}
.xf8_c00287{left:772.350000px;}
.xad_c00287{left:774.150000px;}
.xd2_c00287{left:775.200000px;}
.x9c_c00287{left:777.300000px;}
.xdc_c00287{left:779.700000px;}
.xdf_c00287{left:781.200000px;}
.x100_c00287{left:782.400000px;}
.x8b_c00287{left:785.550000px;}
.x93_c00287{left:789.450000px;}
.xa2_c00287{left:791.100000px;}
.xb2_c00287{left:794.550000px;}
.x9d_c00287{left:796.800000px;}
.x108_c00287{left:798.600000px;}
.x110_c00287{left:800.100000px;}
.xeb_c00287{left:802.350000px;}
.x121_c00287{left:804.300000px;}
.x10d_c00287{left:805.500000px;}
.xe7_c00287{left:807.450000px;}
.x94_c00287{left:809.550000px;}
.xc0_c00287{left:811.350000px;}
.x105_c00287{left:812.550000px;}
.xc6_c00287{left:813.600000px;}
.xed_c00287{left:814.950000px;}
.x11b_c00287{left:816.150000px;}
.x85_c00287{left:817.800000px;}
.xb3_c00287{left:820.050000px;}
.xd5_c00287{left:822.600000px;}
.xfd_c00287{left:823.800000px;}
.xf2_c00287{left:825.300000px;}
.xe0_c00287{left:826.500000px;}
.xe3_c00287{left:828.300000px;}
.x119_c00287{left:832.350000px;}
.xa3_c00287{left:834.300000px;}
.x8c_c00287{left:837.750000px;}
.xa8_c00287{left:839.700000px;}
.x95_c00287{left:841.650000px;}
.xf5_c00287{left:843.600000px;}
.xe1_c00287{left:847.350000px;}
.xce_c00287{left:849.000000px;}
.xc1_c00287{left:850.950000px;}
.xc7_c00287{left:853.950000px;}
.x107_c00287{left:855.000000px;}
.x96_c00287{left:859.350000px;}
.x10e_c00287{left:861.300000px;}
.xd6_c00287{left:862.500000px;}
.x11c_c00287{left:863.700000px;}
.xa9_c00287{left:864.900000px;}
.x109_c00287{left:865.950000px;}
.xb8_c00287{left:870.300000px;}
.xe8_c00287{left:871.950000px;}
.x117_c00287{left:874.350000px;}
.x11a_c00287{left:875.850000px;}
.xf9_c00287{left:878.550000px;}
.x113_c00287{left:886.050000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws3_c00287{word-spacing:-9.783439pt;}
.ws1_c00287{word-spacing:-8.012638pt;}
.ws4_c00287{word-spacing:0.000000pt;}
.ws2_c00287{word-spacing:0.168099pt;}
.ws0_c00287{word-spacing:2.346552pt;}
.fs2_c00287{font-size:26.666667pt;}
.fs7_c00287{font-size:32.000000pt;}
.fs0_c00287{font-size:42.666667pt;}
.fs4_c00287{font-size:48.000000pt;}
.fs3_c00287{font-size:53.333333pt;}
.fs5_c00287{font-size:58.666667pt;}
.fs6_c00287{font-size:64.000000pt;}
.fs1_c00287{font-size:69.333333pt;}
.y0_c00287{bottom:0.000000pt;}
.y64_c00287{bottom:151.066667pt;}
.y63_c00287{bottom:164.800000pt;}
.y33_c00287{bottom:170.000000pt;}
.y62_c00287{bottom:178.266667pt;}
.y32_c00287{bottom:182.800000pt;}
.y61_c00287{bottom:190.666667pt;}
.y31_c00287{bottom:194.933333pt;}
.y60_c00287{bottom:232.000000pt;}
.y30_c00287{bottom:236.800000pt;}
.y5f_c00287{bottom:248.000000pt;}
.y2f_c00287{bottom:251.866667pt;}
.y2e_c00287{bottom:271.066667pt;}
.y5e_c00287{bottom:271.733333pt;}
.y5d_c00287{bottom:287.733333pt;}
.y2d_c00287{bottom:291.200000pt;}
.y5c_c00287{bottom:304.000000pt;}
.y2c_c00287{bottom:306.533333pt;}
.y5b_c00287{bottom:320.000000pt;}
.y2b_c00287{bottom:321.600000pt;}
.y5a_c00287{bottom:336.000000pt;}
.y2a_c00287{bottom:341.066667pt;}
.y59_c00287{bottom:352.000000pt;}
.y29_c00287{bottom:360.933333pt;}
.y58_c00287{bottom:368.000000pt;}
.y28_c00287{bottom:376.266667pt;}
.y57_c00287{bottom:383.733333pt;}
.y27_c00287{bottom:396.000000pt;}
.y56_c00287{bottom:399.733333pt;}
.y26_c00287{bottom:411.733333pt;}
.y55_c00287{bottom:415.733333pt;}
.y25_c00287{bottom:427.466667pt;}
.y54_c00287{bottom:431.333333pt;}
.y24_c00287{bottom:447.066667pt;}
.y23_c00287{bottom:462.800000pt;}
.y22_c00287{bottom:478.533333pt;}
.y53_c00287{bottom:478.800000pt;}
.y21_c00287{bottom:494.533333pt;}
.y20_c00287{bottom:510.266667pt;}
.y52_c00287{bottom:510.533333pt;}
.y1f_c00287{bottom:526.000000pt;}
.y51_c00287{bottom:526.533333pt;}
.y1e_c00287{bottom:541.733333pt;}
.y50_c00287{bottom:542.266667pt;}
.y1d_c00287{bottom:557.733333pt;}
.y4f_c00287{bottom:558.266667pt;}
.y1c_c00287{bottom:573.466667pt;}
.y4e_c00287{bottom:574.533333pt;}
.y1b_c00287{bottom:589.466667pt;}
.y4d_c00287{bottom:589.866667pt;}
.y1a_c00287{bottom:605.466667pt;}
.y4c_c00287{bottom:606.133333pt;}
.y4b_c00287{bottom:621.866667pt;}
.y19_c00287{bottom:624.400000pt;}
.y4a_c00287{bottom:637.866667pt;}
.y18_c00287{bottom:641.333333pt;}
.y49_c00287{bottom:653.866667pt;}
.y17_c00287{bottom:660.133333pt;}
.y48_c00287{bottom:669.866667pt;}
.y16_c00287{bottom:680.000000pt;}
.y47_c00287{bottom:685.600000pt;}
.y15_c00287{bottom:698.266667pt;}
.y46_c00287{bottom:701.600000pt;}
.y45_c00287{bottom:717.333333pt;}
.y14_c00287{bottom:718.666667pt;}
.y44_c00287{bottom:733.333333pt;}
.y13_c00287{bottom:734.933333pt;}
.y43_c00287{bottom:749.333333pt;}
.y12_c00287{bottom:750.666667pt;}
.y42_c00287{bottom:765.066667pt;}
.y11_c00287{bottom:766.400000pt;}
.y41_c00287{bottom:781.066667pt;}
.y10_c00287{bottom:784.933333pt;}
.y40_c00287{bottom:796.800000pt;}
.yf_c00287{bottom:801.866667pt;}
.y3f_c00287{bottom:812.800000pt;}
.ye_c00287{bottom:817.866667pt;}
.y3e_c00287{bottom:829.066667pt;}
.yd_c00287{bottom:833.600000pt;}
.y3d_c00287{bottom:844.800000pt;}
.yc_c00287{bottom:849.866667pt;}
.y3c_c00287{bottom:860.800000pt;}
.yb_c00287{bottom:865.600000pt;}
.y3b_c00287{bottom:876.533333pt;}
.ya_c00287{bottom:881.333333pt;}
.y3a_c00287{bottom:892.266667pt;}
.y9_c00287{bottom:898.266667pt;}
.y39_c00287{bottom:908.533333pt;}
.y8_c00287{bottom:921.066667pt;}
.y38_c00287{bottom:923.866667pt;}
.y37_c00287{bottom:939.866667pt;}
.y7_c00287{bottom:945.066667pt;}
.y6_c00287{bottom:951.733333pt;}
.y36_c00287{bottom:961.600000pt;}
.y5_c00287{bottom:968.266667pt;}
.y35_c00287{bottom:971.200000pt;}
.y4_c00287{bottom:987.200000pt;}
.y34_c00287{bottom:991.066667pt;}
.y3_c00287{bottom:1005.066667pt;}
.y1_c00287{bottom:1010.266667pt;}
.y2_c00287{bottom:1014.400000pt;}
.h4_c00287{height:26.666667pt;}
.h9_c00287{height:32.000000pt;}
.h2_c00287{height:42.666667pt;}
.h6_c00287{height:48.000000pt;}
.h5_c00287{height:53.333333pt;}
.h7_c00287{height:58.666667pt;}
.h8_c00287{height:64.000000pt;}
.h3_c00287{height:69.333333pt;}
.h0_c00287{height:1123.199951pt;}
.h1_c00287{height:1123.333333pt;}
.w1_c00287{width:854.666667pt;}
.w0_c00287{width:854.720052pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:172.133333pt;}
.xe_c00287{left:173.466667pt;}
.x3_c00287{left:183.333333pt;}
.x12_c00287{left:189.600000pt;}
.x26_c00287{left:190.533333pt;}
.x5c_c00287{left:191.600000pt;}
.x7f_c00287{left:195.466667pt;}
.x53_c00287{left:203.200000pt;}
.x4_c00287{left:204.400000pt;}
.x15_c00287{left:205.466667pt;}
.x35_c00287{left:206.400000pt;}
.x31_c00287{left:207.866667pt;}
.x69_c00287{left:208.933333pt;}
.x1a_c00287{left:210.400000pt;}
.x21_c00287{left:211.333333pt;}
.xf_c00287{left:213.200000pt;}
.x63_c00287{left:214.533333pt;}
.x7b_c00287{left:217.866667pt;}
.x76_c00287{left:218.933333pt;}
.x22_c00287{left:220.933333pt;}
.x3e_c00287{left:222.400000pt;}
.x60_c00287{left:223.466667pt;}
.x2d_c00287{left:224.400000pt;}
.x54_c00287{left:228.800000pt;}
.x4f_c00287{left:232.266667pt;}
.x5d_c00287{left:233.866667pt;}
.x36_c00287{left:235.200000pt;}
.x47_c00287{left:238.000000pt;}
.x32_c00287{left:238.933333pt;}
.x4b_c00287{left:240.933333pt;}
.x73_c00287{left:242.266667pt;}
.x80_c00287{left:248.533333pt;}
.x6a_c00287{left:249.600000pt;}
.x58_c00287{left:250.533333pt;}
.x64_c00287{left:251.600000pt;}
.x27_c00287{left:253.200000pt;}
.x1b_c00287{left:254.266667pt;}
.x6f_c00287{left:256.666667pt;}
.x6c_c00287{left:257.733333pt;}
.x3b_c00287{left:260.533333pt;}
.x5e_c00287{left:262.933333pt;}
.x5_c00287{left:263.866667pt;}
.x16_c00287{left:265.600000pt;}
.x10_c00287{left:269.866667pt;}
.x6_c00287{left:273.466667pt;}
.x13_c00287{left:275.733333pt;}
.x37_c00287{left:277.466667pt;}
.x23_c00287{left:282.000000pt;}
.x7_c00287{left:285.333333pt;}
.x3f_c00287{left:287.333333pt;}
.x65_c00287{left:289.333333pt;}
.x33_c00287{left:291.733333pt;}
.x7a_c00287{left:294.266667pt;}
.x40_c00287{left:295.333333pt;}
.x7c_c00287{left:297.333333pt;}
.x14_c00287{left:300.400000pt;}
.x8_c00287{left:301.733333pt;}
.x44_c00287{left:302.800000pt;}
.x67_c00287{left:303.866667pt;}
.x41_c00287{left:305.200000pt;}
.x28_c00287{left:309.200000pt;}
.x1c_c00287{left:310.266667pt;}
.x2e_c00287{left:312.666667pt;}
.x45_c00287{left:314.000000pt;}
.x50_c00287{left:316.133333pt;}
.x70_c00287{left:320.400000pt;}
.x59_c00287{left:321.866667pt;}
.x77_c00287{left:326.133333pt;}
.x9_c00287{left:330.533333pt;}
.x24_c00287{left:331.600000pt;}
.x29_c00287{left:332.533333pt;}
.x17_c00287{left:335.733333pt;}
.x1d_c00287{left:340.000000pt;}
.x38_c00287{left:344.400000pt;}
.xa_c00287{left:347.866667pt;}
.x55_c00287{left:349.066667pt;}
.x71_c00287{left:350.800000pt;}
.x74_c00287{left:352.933333pt;}
.x49_c00287{left:353.866667pt;}
.x48_c00287{left:355.066667pt;}
.x1e_c00287{left:357.600000pt;}
.x5a_c00287{left:358.933333pt;}
.x66_c00287{left:359.866667pt;}
.x2f_c00287{left:360.933333pt;}
.x39_c00287{left:362.266667pt;}
.xb_c00287{left:364.133333pt;}
.x68_c00287{left:365.333333pt;}
.x42_c00287{left:367.333333pt;}
.x18_c00287{left:372.533333pt;}
.x2a_c00287{left:378.933333pt;}
.x3c_c00287{left:382.133333pt;}
.x61_c00287{left:384.666667pt;}
.x2_c00287{left:385.600000pt;}
.x6b_c00287{left:386.666667pt;}
.x19_c00287{left:388.266667pt;}
.x72_c00287{left:389.866667pt;}
.x78_c00287{left:391.733333pt;}
.x7d_c00287{left:394.933333pt;}
.x1f_c00287{left:397.866667pt;}
.x4a_c00287{left:398.933333pt;}
.x75_c00287{left:403.200000pt;}
.x51_c00287{left:404.400000pt;}
.xc_c00287{left:405.466667pt;}
.x6d_c00287{left:406.533333pt;}
.x7e_c00287{left:409.200000pt;}
.x5f_c00287{left:411.200000pt;}
.x62_c00287{left:412.933333pt;}
.x3a_c00287{left:414.133333pt;}
.x34_c00287{left:415.466667pt;}
.x4c_c00287{left:416.933333pt;}
.x3d_c00287{left:419.200000pt;}
.x30_c00287{left:420.400000pt;}
.x46_c00287{left:421.866667pt;}
.x25_c00287{left:424.133333pt;}
.x79_c00287{left:427.200000pt;}
.x2b_c00287{left:428.266667pt;}
.x57_c00287{left:430.933333pt;}
.x11_c00287{left:436.933333pt;}
.x52_c00287{left:438.000000pt;}
.x2c_c00287{left:440.133333pt;}
.x4e_c00287{left:443.200000pt;}
.x43_c00287{left:444.533333pt;}
.xd_c00287{left:446.133333pt;}
.x5b_c00287{left:455.866667pt;}
.x20_c00287{left:457.733333pt;}
.x56_c00287{left:459.466667pt;}
.x4d_c00287{left:462.000000pt;}
.x6e_c00287{left:468.266667pt;}
.x86_c00287{left:489.333333pt;}
.x120_c00287{left:491.200000pt;}
.x10b_c00287{left:502.666667pt;}
.x8d_c00287{left:504.000000pt;}
.x97_c00287{left:504.933333pt;}
.xd9_c00287{left:506.000000pt;}
.x106_c00287{left:506.933333pt;}
.x11f_c00287{left:510.933333pt;}
.xcf_c00287{left:512.666667pt;}
.xae_c00287{left:519.866667pt;}
.x81_c00287{left:521.866667pt;}
.xb4_c00287{left:523.200000pt;}
.xd3_c00287{left:524.266667pt;}
.x114_c00287{left:525.200000pt;}
.xee_c00287{left:526.400000pt;}
.x9e_c00287{left:527.466667pt;}
.xe4_c00287{left:529.333333pt;}
.x8e_c00287{left:530.933333pt;}
.xfe_c00287{left:534.133333pt;}
.xc2_c00287{left:535.600000pt;}
.xa4_c00287{left:537.466667pt;}
.x10a_c00287{left:538.533333pt;}
.xfa_c00287{left:540.000000pt;}
.xc8_c00287{left:542.133333pt;}
.x87_c00287{left:543.733333pt;}
.x98_c00287{left:545.600000pt;}
.x8f_c00287{left:548.800000pt;}
.xf6_c00287{left:550.800000pt;}
.x11d_c00287{left:552.000000pt;}
.x82_c00287{left:552.933333pt;}
.x10f_c00287{left:554.133333pt;}
.xaf_c00287{left:555.066667pt;}
.xc9_c00287{left:558.800000pt;}
.xbc_c00287{left:560.533333pt;}
.xc3_c00287{left:561.866667pt;}
.xb0_c00287{left:563.733333pt;}
.xda_c00287{left:564.933333pt;}
.xb9_c00287{left:565.866667pt;}
.x99_c00287{left:568.266667pt;}
.x88_c00287{left:570.266667pt;}
.xd7_c00287{left:571.200000pt;}
.xca_c00287{left:572.533333pt;}
.xa5_c00287{left:574.000000pt;}
.xe9_c00287{left:575.600000pt;}
.x11e_c00287{left:577.200000pt;}
.x9f_c00287{left:578.400000pt;}
.xe5_c00287{left:580.800000pt;}
.xc4_c00287{left:582.400000pt;}
.xaa_c00287{left:584.800000pt;}
.xb1_c00287{left:585.866667pt;}
.x102_c00287{left:586.933333pt;}
.x90_c00287{left:589.733333pt;}
.xdb_c00287{left:590.800000pt;}
.xa6_c00287{left:591.866667pt;}
.xba_c00287{left:593.733333pt;}
.xbd_c00287{left:594.800000pt;}
.xb5_c00287{left:595.866667pt;}
.x10c_c00287{left:596.933333pt;}
.x115_c00287{left:599.600000pt;}
.x111_c00287{left:600.800000pt;}
.x101_c00287{left:601.733333pt;}
.x91_c00287{left:602.800000pt;}
.xcb_c00287{left:604.266667pt;}
.x122_c00287{left:607.200000pt;}
.xdd_c00287{left:609.866667pt;}
.xfb_c00287{left:611.066667pt;}
.x83_c00287{left:612.400000pt;}
.xf7_c00287{left:613.600000pt;}
.xa0_c00287{left:615.866667pt;}
.x104_c00287{left:617.066667pt;}
.xff_c00287{left:618.933333pt;}
.xd0_c00287{left:620.266667pt;}
.x112_c00287{left:621.866667pt;}
.xa7_c00287{left:623.866667pt;}
.xa1_c00287{left:626.400000pt;}
.x9a_c00287{left:629.733333pt;}
.xef_c00287{left:630.933333pt;}
.xab_c00287{left:632.800000pt;}
.xd1_c00287{left:635.333333pt;}
.x89_c00287{left:636.800000pt;}
.xf3_c00287{left:639.200000pt;}
.xea_c00287{left:640.533333pt;}
.x84_c00287{left:641.466667pt;}
.xf1_c00287{left:642.400000pt;}
.x92_c00287{left:643.466667pt;}
.x103_c00287{left:645.066667pt;}
.xe2_c00287{left:647.600000pt;}
.x118_c00287{left:649.466667pt;}
.xbb_c00287{left:650.400000pt;}
.xbe_c00287{left:651.733333pt;}
.xb6_c00287{left:653.200000pt;}
.xc5_c00287{left:654.400000pt;}
.xe6_c00287{left:655.333333pt;}
.xcc_c00287{left:656.400000pt;}
.xf0_c00287{left:657.466667pt;}
.x123_c00287{left:660.000000pt;}
.xd8_c00287{left:661.466667pt;}
.xd4_c00287{left:664.666667pt;}
.xac_c00287{left:666.400000pt;}
.xbf_c00287{left:667.733333pt;}
.x9b_c00287{left:668.800000pt;}
.xf4_c00287{left:669.866667pt;}
.xec_c00287{left:672.533333pt;}
.xde_c00287{left:675.200000pt;}
.x116_c00287{left:676.400000pt;}
.x8a_c00287{left:678.133333pt;}
.xfc_c00287{left:681.733333pt;}
.xb7_c00287{left:684.000000pt;}
.xcd_c00287{left:685.200000pt;}
.xf8_c00287{left:686.533333pt;}
.xad_c00287{left:688.133333pt;}
.xd2_c00287{left:689.066667pt;}
.x9c_c00287{left:690.933333pt;}
.xdc_c00287{left:693.066667pt;}
.xdf_c00287{left:694.400000pt;}
.x100_c00287{left:695.466667pt;}
.x8b_c00287{left:698.266667pt;}
.x93_c00287{left:701.733333pt;}
.xa2_c00287{left:703.200000pt;}
.xb2_c00287{left:706.266667pt;}
.x9d_c00287{left:708.266667pt;}
.x108_c00287{left:709.866667pt;}
.x110_c00287{left:711.200000pt;}
.xeb_c00287{left:713.200000pt;}
.x121_c00287{left:714.933333pt;}
.x10d_c00287{left:716.000000pt;}
.xe7_c00287{left:717.733333pt;}
.x94_c00287{left:719.600000pt;}
.xc0_c00287{left:721.200000pt;}
.x105_c00287{left:722.266667pt;}
.xc6_c00287{left:723.200000pt;}
.xed_c00287{left:724.400000pt;}
.x11b_c00287{left:725.466667pt;}
.x85_c00287{left:726.933333pt;}
.xb3_c00287{left:728.933333pt;}
.xd5_c00287{left:731.200000pt;}
.xfd_c00287{left:732.266667pt;}
.xf2_c00287{left:733.600000pt;}
.xe0_c00287{left:734.666667pt;}
.xe3_c00287{left:736.266667pt;}
.x119_c00287{left:739.866667pt;}
.xa3_c00287{left:741.600000pt;}
.x8c_c00287{left:744.666667pt;}
.xa8_c00287{left:746.400000pt;}
.x95_c00287{left:748.133333pt;}
.xf5_c00287{left:749.866667pt;}
.xe1_c00287{left:753.200000pt;}
.xce_c00287{left:754.666667pt;}
.xc1_c00287{left:756.400000pt;}
.xc7_c00287{left:759.066667pt;}
.x107_c00287{left:760.000000pt;}
.x96_c00287{left:763.866667pt;}
.x10e_c00287{left:765.600000pt;}
.xd6_c00287{left:766.666667pt;}
.x11c_c00287{left:767.733333pt;}
.xa9_c00287{left:768.800000pt;}
.x109_c00287{left:769.733333pt;}
.xb8_c00287{left:773.600000pt;}
.xe8_c00287{left:775.066667pt;}
.x117_c00287{left:777.200000pt;}
.x11a_c00287{left:778.533333pt;}
.xf9_c00287{left:780.933333pt;}
.x113_c00287{left:787.600000pt;}
}





/* 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_c00288 {
    display:none;
  }
  .loading-indicator_c00288.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00288 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_c00288 { 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_c00288" -> "#page-container .classname_c00288")
 */
.pf_c00288 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00288 { /* 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_c00288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00288 { /* 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_c00288 { /* 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_c00288 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00288 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00288 {overflow:visible;}
  }
}
.c_c00288 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00288 { /* 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_c00288:after { /* webkit #35443 */
  content: '';
}
.t_c00288:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00288 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 */
}
.__c00288 { /* 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_c00288 { /* info for Javascript */
  display:none;
}
.l_c00288 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00288 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00288 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00288: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_c00288 {
    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_c00288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00288.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_c00288 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00288;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.000000;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;}
.md0_c00288{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m86_c00288{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.md1_c00288{transform:matrix(0.025250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00288{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m76_c00288{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m115_c00288{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m81_c00288{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m29_c00288{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m73_c00288{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00288{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.maa_c00288{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md9_c00288{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00288{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m42_c00288{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m122_c00288{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00288{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00288{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m46_c00288{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00288{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00288{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mec_c00288{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.me4_c00288{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m62_c00288{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00288{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m101_c00288{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m40_c00288{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00288{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m30_c00288{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m7_c00288{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m77_c00288{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00288{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m79_c00288{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md_c00288{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00288{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m119_c00288{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00288{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m41_c00288{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00288{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m74_c00288{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m108_c00288{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00288{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00288{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me0_c00288{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m51_c00288{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m2_c00288{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m61_c00288{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m95_c00288{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00288{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m103_c00288{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m53_c00288{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.me8_c00288{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00288{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00288{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m13_c00288{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00288{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00288{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m93_c00288{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00288{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00288{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m19_c00288{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00288{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.me9_c00288{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m43_c00288{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00288{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m47_c00288{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m50_c00288{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mde_c00288{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m17_c00288{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00288{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m18_c00288{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00288{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m92_c00288{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00288{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00288{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf_c00288{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m83_c00288{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m16_c00288{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m70_c00288{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me2_c00288{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00288{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00288{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00288{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m97_c00288{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mff_c00288{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m65_c00288{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00288{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.meb_c00288{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m90_c00288{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m98_c00288{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00288{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00288{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00288{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00288{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m12_c00288{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m87_c00288{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mef_c00288{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6_c00288{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00288{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9_c00288{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00288{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m37_c00288{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m116_c00288{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4_c00288{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00288{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00288{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00288{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m21_c00288{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m11_c00288{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00288{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00288{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m88_c00288{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00288{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00288{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.me6_c00288{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m72_c00288{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3_c00288{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m56_c00288{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5_c00288{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m36_c00288{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.me7_c00288{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m99_c00288{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m82_c00288{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m118_c00288{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m66_c00288{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m33_c00288{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.me_c00288{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00288{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m94_c00288{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00288{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00288{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m52_c00288{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m84_c00288{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00288{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m20_c00288{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m89_c00288{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m64_c00288{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00288{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00288{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00288{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mca_c00288{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00288{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00288{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.med_c00288{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m102_c00288{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m55_c00288{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m57_c00288{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m114_c00288{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m24_c00288{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mee_c00288{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m58_c00288{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00288{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m80_c00288{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00288{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m100_c00288{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m63_c00288{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m10_c00288{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00288{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m69_c00288{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m60_c00288{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m59_c00288{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00288{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00288{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00288{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mab_c00288{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m85_c00288{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md7_c00288{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00288{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m23_c00288{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m49_c00288{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00288{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m15_c00288{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00288{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00288{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00288{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m113_c00288{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m91_c00288{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m34_c00288{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00288{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00288{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me5_c00288{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md5_c00288{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00288{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00288{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m48_c00288{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00288{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m31_c00288{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00288{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00288{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m96_c00288{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00288{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00288{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mae_c00288{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m22_c00288{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m78_c00288{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m71_c00288{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00288{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.ma_c00288{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m112_c00288{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00288{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m32_c00288{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00288{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00288{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m28_c00288{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00288{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.maf_c00288{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00288{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m104_c00288{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00288{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me1_c00288{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00288{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00288{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m68_c00288{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00288{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00288{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00288{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mce_c00288{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00288{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00288{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m107_c00288{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00288{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1_c00288{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00288{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00288{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8_c00288{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m54_c00288{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m67_c00288{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00288{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m44_c00288{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);}
.mf7_c00288{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m121_c00288{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00288{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00288{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00288{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m38_c00288{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00288{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mea_c00288{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00288{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00288{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00288{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00288{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00288{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m14_c00288{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m106_c00288{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.mad_c00288{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00288{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m45_c00288{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c00288{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00288{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00288{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00288{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00288{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00288{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00288{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00288{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00288{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m117_c00288{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00288{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.md8_c00288{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m26_c00288{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m111_c00288{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00288{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00288{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00288{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00288{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.mda_c00288{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mba_c00288{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m35_c00288{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m27_c00288{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00288{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m105_c00288{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m120_c00288{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m110_c00288{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m109_c00288{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m75_c00288{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00288{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md4_c00288{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.md6_c00288{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00288{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00288{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mc_c00288{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.md2_c00288{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m25_c00288{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.mac_c00288{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.me3_c00288{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m0_c00288{transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00288{transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);}
.md3_c00288{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m39_c00288{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00288{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00288{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00288{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls0_c00288{letter-spacing:0.000000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{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__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00288{word-spacing:-11.136364px;}
.ws1_c00288{word-spacing:-8.181818px;}
.ws5_c00288{word-spacing:-8.099652px;}
.ws8_c00288{word-spacing:0.000000px;}
.ws0_c00288{word-spacing:2.500000px;}
.ws3_c00288{word-spacing:4.332550px;}
.ws4_c00288{word-spacing:8.234201px;}
.ws7_c00288{word-spacing:13.089172px;}
.ws2_c00288{word-spacing:65.000000px;}
._0_c00288{width:96.315789px;}
.fc0_c00288{color:transparent;}
.fs7_c00288{font-size:30.000000px;}
.fs6_c00288{font-size:36.000000px;}
.fs8_c00288{font-size:48.000000px;}
.fs5_c00288{font-size:54.000000px;}
.fs4_c00288{font-size:60.000000px;}
.fs3_c00288{font-size:66.000000px;}
.fs2_c00288{font-size:72.000000px;}
.fs1_c00288{font-size:78.000000px;}
.fs0_c00288{font-size:114.000000px;}
.y0_c00288{bottom:0.000000px;}
.y37_c00288{bottom:172.500000px;}
.y6b_c00288{bottom:183.600000px;}
.y39_c00288{bottom:201.600000px;}
.y36_c00288{bottom:202.650000px;}
.y6a_c00288{bottom:215.700000px;}
.y35_c00288{bottom:220.950000px;}
.y69_c00288{bottom:230.400000px;}
.y34_c00288{bottom:238.650000px;}
.y68_c00288{bottom:243.000000px;}
.y67_c00288{bottom:258.900000px;}
.y33_c00288{bottom:260.850000px;}
.y66_c00288{bottom:278.250000px;}
.y32_c00288{bottom:278.550000px;}
.y31_c00288{bottom:296.250000px;}
.y65_c00288{bottom:313.950000px;}
.y30_c00288{bottom:314.250000px;}
.y2f_c00288{bottom:331.800000px;}
.y64_c00288{bottom:331.950000px;}
.y2e_c00288{bottom:349.500000px;}
.y63_c00288{bottom:353.850000px;}
.y2d_c00288{bottom:371.850000px;}
.y2c_c00288{bottom:389.850000px;}
.y2b_c00288{bottom:407.550000px;}
.y62_c00288{bottom:411.600000px;}
.y2a_c00288{bottom:429.900000px;}
.y29_c00288{bottom:447.450000px;}
.y61_c00288{bottom:455.700000px;}
.y28_c00288{bottom:465.300000px;}
.y60_c00288{bottom:473.700000px;}
.y27_c00288{bottom:483.000000px;}
.y5f_c00288{bottom:491.700000px;}
.y26_c00288{bottom:501.000000px;}
.y5e_c00288{bottom:513.750000px;}
.y25_c00288{bottom:518.700000px;}
.y5d_c00288{bottom:531.750000px;}
.y24_c00288{bottom:536.700000px;}
.y5c_c00288{bottom:550.050000px;}
.y23_c00288{bottom:554.100000px;}
.y5b_c00288{bottom:568.050000px;}
.y22_c00288{bottom:572.100000px;}
.y5a_c00288{bottom:588.150000px;}
.y21_c00288{bottom:589.800000px;}
.y59_c00288{bottom:604.050000px;}
.y20_c00288{bottom:607.500000px;}
.y58_c00288{bottom:621.750000px;}
.y1f_c00288{bottom:625.500000px;}
.y57_c00288{bottom:643.350000px;}
.y1e_c00288{bottom:643.500000px;}
.y1d_c00288{bottom:661.200000px;}
.y56_c00288{bottom:661.650000px;}
.y55_c00288{bottom:673.950000px;}
.y1c_c00288{bottom:679.200000px;}
.y54_c00288{bottom:679.650000px;}
.y1b_c00288{bottom:696.900000px;}
.y53_c00288{bottom:697.350000px;}
.y52_c00288{bottom:715.200000px;}
.y1a_c00288{bottom:717.750000px;}
.y19_c00288{bottom:732.150000px;}
.y51_c00288{bottom:732.900000px;}
.y18_c00288{bottom:746.250000px;}
.y50_c00288{bottom:750.600000px;}
.y17_c00288{bottom:760.650000px;}
.y4f_c00288{bottom:772.500000px;}
.y16_c00288{bottom:775.350000px;}
.y15_c00288{bottom:789.450000px;}
.y4e_c00288{bottom:790.800000px;}
.y4d_c00288{bottom:808.500000px;}
.y14_c00288{bottom:809.400000px;}
.y13_c00288{bottom:827.100000px;}
.y4c_c00288{bottom:830.400000px;}
.y12_c00288{bottom:844.800000px;}
.y4b_c00288{bottom:848.400000px;}
.y11_c00288{bottom:862.500000px;}
.y4a_c00288{bottom:866.400000px;}
.y49_c00288{bottom:884.100000px;}
.y10_c00288{bottom:884.850000px;}
.y48_c00288{bottom:901.800000px;}
.yf_c00288{bottom:902.550000px;}
.y47_c00288{bottom:919.800000px;}
.ye_c00288{bottom:920.550000px;}
.y46_c00288{bottom:937.800000px;}
.yd_c00288{bottom:938.250000px;}
.y45_c00288{bottom:955.050000px;}
.yc_c00288{bottom:956.550000px;}
.y38_c00288{bottom:959.700000px;}
.y44_c00288{bottom:973.050000px;}
.yb_c00288{bottom:973.800000px;}
.y43_c00288{bottom:991.050000px;}
.ya_c00288{bottom:992.100000px;}
.y42_c00288{bottom:1008.750000px;}
.y9_c00288{bottom:1009.050000px;}
.y41_c00288{bottom:1026.750000px;}
.y8_c00288{bottom:1036.500000px;}
.y40_c00288{bottom:1045.050000px;}
.y7_c00288{bottom:1054.500000px;}
.y3f_c00288{bottom:1061.250000px;}
.y3e_c00288{bottom:1070.700000px;}
.y6_c00288{bottom:1075.950000px;}
.y3d_c00288{bottom:1084.800000px;}
.y5_c00288{bottom:1093.950000px;}
.y3c_c00288{bottom:1099.200000px;}
.y4_c00288{bottom:1111.200000px;}
.y3b_c00288{bottom:1113.900000px;}
.y3a_c00288{bottom:1128.300000px;}
.y3_c00288{bottom:1128.900000px;}
.y2_c00288{bottom:1150.950000px;}
.y1_c00288{bottom:1153.800000px;}
.h9_c00288{height:30.000000px;}
.h8_c00288{height:36.000000px;}
.ha_c00288{height:48.000000px;}
.h7_c00288{height:54.000000px;}
.h6_c00288{height:60.000000px;}
.h5_c00288{height:66.000000px;}
.h4_c00288{height:72.000000px;}
.h3_c00288{height:78.000000px;}
.h2_c00288{height:114.000000px;}
.h1_c00288{height:1273.500000px;}
.h0_c00288{height:1273.679993px;}
.w1_c00288{width:961.500000px;}
.w0_c00288{width:961.560058px;}
.x0_c00288{left:0.000000px;}
.xab_c00288{left:77.700000px;}
.x99_c00288{left:81.300000px;}
.x65_c00288{left:87.150000px;}
.x54_c00288{left:89.250000px;}
.x19_c00288{left:90.300000px;}
.x78_c00288{left:91.350000px;}
.x4c_c00288{left:92.850000px;}
.x2b_c00288{left:94.650000px;}
.x27_c00288{left:96.450000px;}
.xa5_c00288{left:97.500000px;}
.x9c_c00288{left:99.000000px;}
.x95_c00288{left:100.950000px;}
.x6c_c00288{left:102.300000px;}
.x79_c00288{left:103.950000px;}
.x36_c00288{left:106.200000px;}
.x28_c00288{left:108.000000px;}
.x3_c00288{left:109.050000px;}
.xa1_c00288{left:111.300000px;}
.x72_c00288{left:114.900000px;}
.xa3_c00288{left:117.300000px;}
.x8d_c00288{left:119.100000px;}
.x5a_c00288{left:121.050000px;}
.x62_c00288{left:122.250000px;}
.xac_c00288{left:123.450000px;}
.x2c_c00288{left:127.350000px;}
.x5e_c00288{left:130.500000px;}
.x7e_c00288{left:134.100000px;}
.x97_c00288{left:135.450000px;}
.x23_c00288{left:136.800000px;}
.x8b_c00288{left:138.150000px;}
.x7a_c00288{left:140.250000px;}
.x63_c00288{left:141.300000px;}
.x20_c00288{left:142.500000px;}
.x88_c00288{left:144.150000px;}
.x47_c00288{left:145.500000px;}
.xa_c00288{left:147.000000px;}
.x29_c00288{left:149.100000px;}
.x4d_c00288{left:150.750000px;}
.x3f_c00288{left:152.550000px;}
.x7f_c00288{left:153.900000px;}
.x12_c00288{left:156.750000px;}
.x1a_c00288{left:160.500000px;}
.x21_c00288{left:162.600000px;}
.xa4_c00288{left:164.400000px;}
.x18_c00288{left:165.450000px;}
.x37_c00288{left:167.700000px;}
.xb_c00288{left:168.900000px;}
.x9d_c00288{left:170.250000px;}
.x4_c00288{left:172.050000px;}
.x24_c00288{left:173.550000px;}
.x86_c00288{left:175.050000px;}
.x40_c00288{left:176.700000px;}
.x3b_c00288{left:178.650000px;}
.x64_c00288{left:180.600000px;}
.x9a_c00288{left:181.800000px;}
.x89_c00288{left:183.000000px;}
.x1b_c00288{left:184.650000px;}
.x2d_c00288{left:185.700000px;}
.x4e_c00288{left:190.650000px;}
.x66_c00288{left:193.050000px;}
.x6d_c00288{left:196.950000px;}
.x22_c00288{left:201.150000px;}
.x55_c00288{left:203.700000px;}
.x2e_c00288{left:205.800000px;}
.x5b_c00288{left:208.200000px;}
.x5f_c00288{left:210.000000px;}
.x8c_c00288{left:211.500000px;}
.xaa_c00288{left:212.550000px;}
.x2f_c00288{left:215.850000px;}
.x8a_c00288{left:216.900000px;}
.x41_c00288{left:218.100000px;}
.x38_c00288{left:219.900000px;}
.x30_c00288{left:222.750000px;}
.x74_c00288{left:224.550000px;}
.xa6_c00288{left:226.350000px;}
.x67_c00288{left:227.550000px;}
.x31_c00288{left:229.650000px;}
.x13_c00288{left:232.350000px;}
.xc_c00288{left:235.500000px;}
.x48_c00288{left:236.850000px;}
.xa8_c00288{left:237.900000px;}
.x42_c00288{left:239.700000px;}
.x9e_c00288{left:240.900000px;}
.x4f_c00288{left:242.550000px;}
.x80_c00288{left:244.350000px;}
.x6f_c00288{left:245.850000px;}
.x6e_c00288{left:247.800000px;}
.x3c_c00288{left:249.150000px;}
.x14_c00288{left:251.100000px;}
.x32_c00288{left:252.300000px;}
.x49_c00288{left:253.800000px;}
.x8e_c00288{left:254.850000px;}
.x5c_c00288{left:258.900000px;}
.x75_c00288{left:260.250000px;}
.xd_c00288{left:262.500000px;}
.x9f_c00288{left:264.600000px;}
.xa9_c00288{left:268.500000px;}
.x5_c00288{left:269.550000px;}
.x50_c00288{left:272.100000px;}
.x33_c00288{left:274.200000px;}
.x39_c00288{left:277.200000px;}
.x68_c00288{left:278.700000px;}
.x43_c00288{left:280.800000px;}
.xe_c00288{left:283.800000px;}
.x92_c00288{left:285.000000px;}
.x56_c00288{left:286.500000px;}
.x25_c00288{left:288.150000px;}
.x7b_c00288{left:289.650000px;}
.x76_c00288{left:290.850000px;}
.x5d_c00288{left:294.900000px;}
.xf_c00288{left:297.150000px;}
.x6_c00288{left:299.400000px;}
.x98_c00288{left:300.450000px;}
.x81_c00288{left:302.250000px;}
.xa7_c00288{left:305.250000px;}
.x60_c00288{left:307.950000px;}
.xa2_c00288{left:310.050000px;}
.x51_c00288{left:311.400000px;}
.x44_c00288{left:314.700000px;}
.x90_c00288{left:315.900000px;}
.x4a_c00288{left:317.400000px;}
.x57_c00288{left:319.200000px;}
.x93_c00288{left:322.050000px;}
.x82_c00288{left:325.500000px;}
.x83_c00288{left:328.050000px;}
.x7c_c00288{left:329.250000px;}
.x1c_c00288{left:330.450000px;}
.x1_c00288{left:331.500000px;}
.x7_c00288{left:333.600000px;}
.x15_c00288{left:335.700000px;}
.x52_c00288{left:336.900000px;}
.x34_c00288{left:338.700000px;}
.x4b_c00288{left:339.750000px;}
.x61_c00288{left:341.700000px;}
.x69_c00288{left:343.200000px;}
.x85_c00288{left:344.550000px;}
.x77_c00288{left:346.950000px;}
.x2a_c00288{left:348.600000px;}
.x35_c00288{left:351.000000px;}
.x84_c00288{left:352.500000px;}
.x3d_c00288{left:353.550000px;}
.x1d_c00288{left:355.650000px;}
.x16_c00288{left:358.350000px;}
.x94_c00288{left:360.150000px;}
.x58_c00288{left:363.450000px;}
.x3a_c00288{left:365.850000px;}
.x91_c00288{left:367.800000px;}
.x8_c00288{left:368.850000px;}
.x53_c00288{left:370.350000px;}
.x10_c00288{left:373.050000px;}
.x6a_c00288{left:374.100000px;}
.x70_c00288{left:375.150000px;}
.x7d_c00288{left:378.600000px;}
.x73_c00288{left:380.550000px;}
.x45_c00288{left:382.050000px;}
.x1e_c00288{left:384.450000px;}
.x59_c00288{left:386.100000px;}
.x9_c00288{left:387.900000px;}
.x9b_c00288{left:391.200000px;}
.x87_c00288{left:393.150000px;}
.x3e_c00288{left:394.200000px;}
.x11_c00288{left:395.700000px;}
.x26_c00288{left:397.650000px;}
.x46_c00288{left:399.300000px;}
.x96_c00288{left:401.550000px;}
.x8f_c00288{left:403.800000px;}
.x1f_c00288{left:406.050000px;}
.x6b_c00288{left:408.300000px;}
.x71_c00288{left:410.100000px;}
.xa0_c00288{left:413.250000px;}
.x17_c00288{left:417.000000px;}
.xad_c00288{left:421.200000px;}
.xae_c00288{left:423.000000px;}
.x146_c00288{left:434.100000px;}
.x13b_c00288{left:436.350000px;}
.xc1_c00288{left:438.150000px;}
.x109_c00288{left:443.100000px;}
.x14a_c00288{left:446.400000px;}
.xc2_c00288{left:448.350000px;}
.xaf_c00288{left:450.000000px;}
.x145_c00288{left:451.950000px;}
.x133_c00288{left:455.550000px;}
.x129_c00288{left:457.050000px;}
.x117_c00288{left:458.700000px;}
.x112_c00288{left:459.900000px;}
.x100_c00288{left:460.950000px;}
.xec_c00288{left:462.750000px;}
.xb7_c00288{left:464.100000px;}
.x13e_c00288{left:471.750000px;}
.x135_c00288{left:473.400000px;}
.x125_c00288{left:475.500000px;}
.xbc_c00288{left:478.050000px;}
.x101_c00288{left:479.550000px;}
.xe8_c00288{left:481.650000px;}
.x14c_c00288{left:483.450000px;}
.x142_c00288{left:484.500000px;}
.x12e_c00288{left:486.450000px;}
.xc8_c00288{left:489.300000px;}
.xcd_c00288{left:490.650000px;}
.xdd_c00288{left:493.500000px;}
.xf4_c00288{left:497.250000px;}
.xe1_c00288{left:498.900000px;}
.x132_c00288{left:500.550000px;}
.xed_c00288{left:503.850000px;}
.xc9_c00288{left:505.200000px;}
.x118_c00288{left:506.250000px;}
.x143_c00288{left:507.600000px;}
.x124_c00288{left:508.950000px;}
.xe9_c00288{left:510.750000px;}
.x108_c00288{left:512.100000px;}
.xb0_c00288{left:515.550000px;}
.x11b_c00288{left:516.600000px;}
.x102_c00288{left:519.150000px;}
.xf5_c00288{left:520.950000px;}
.xce_c00288{left:525.150000px;}
.x10a_c00288{left:526.950000px;}
.xbd_c00288{left:528.450000px;}
.xc3_c00288{left:530.100000px;}
.x11f_c00288{left:532.050000px;}
.x103_c00288{left:535.350000px;}
.x12f_c00288{left:536.850000px;}
.xfc_c00288{left:539.850000px;}
.xde_c00288{left:541.800000px;}
.xd8_c00288{left:543.900000px;}
.x140_c00288{left:546.750000px;}
.x139_c00288{left:547.800000px;}
.xe2_c00288{left:549.300000px;}
.xea_c00288{left:550.650000px;}
.x11e_c00288{left:553.350000px;}
.x10b_c00288{left:554.700000px;}
.x130_c00288{left:558.150000px;}
.xbe_c00288{left:559.350000px;}
.xd2_c00288{left:561.000000px;}
.xd9_c00288{left:562.950000px;}
.xcf_c00288{left:564.000000px;}
.x120_c00288{left:565.500000px;}
.x13a_c00288{left:570.150000px;}
.xee_c00288{left:571.500000px;}
.x144_c00288{left:573.600000px;}
.xf6_c00288{left:575.250000px;}
.x136_c00288{left:576.450000px;}
.x13d_c00288{left:578.550000px;}
.xb1_c00288{left:579.600000px;}
.xca_c00288{left:581.850000px;}
.x126_c00288{left:583.050000px;}
.xd3_c00288{left:586.500000px;}
.xe3_c00288{left:593.250000px;}
.x147_c00288{left:594.300000px;}
.x11c_c00288{left:596.850000px;}
.xf7_c00288{left:597.900000px;}
.x12b_c00288{left:599.400000px;}
.x104_c00288{left:600.450000px;}
.xd0_c00288{left:601.800000px;}
.xcb_c00288{left:603.750000px;}
.x113_c00288{left:606.450000px;}
.x127_c00288{left:607.500000px;}
.xef_c00288{left:609.300000px;}
.xc4_c00288{left:611.100000px;}
.xe4_c00288{left:613.800000px;}
.x10f_c00288{left:615.450000px;}
.xfd_c00288{left:619.800000px;}
.x134_c00288{left:621.150000px;}
.xbf_c00288{left:623.850000px;}
.xda_c00288{left:625.200000px;}
.xf8_c00288{left:626.700000px;}
.xe5_c00288{left:627.900000px;}
.x114_c00288{left:629.850000px;}
.xf0_c00288{left:632.700000px;}
.x141_c00288{left:634.200000px;}
.xd4_c00288{left:635.850000px;}
.x13f_c00288{left:639.150000px;}
.x119_c00288{left:641.550000px;}
.x12a_c00288{left:642.750000px;}
.xb2_c00288{left:644.400000px;}
.xdb_c00288{left:646.500000px;}
.xcc_c00288{left:650.850000px;}
.xc0_c00288{left:652.350000px;}
.xf2_c00288{left:653.850000px;}
.xdf_c00288{left:656.250000px;}
.x13c_c00288{left:658.050000px;}
.xf9_c00288{left:660.900000px;}
.x11a_c00288{left:662.100000px;}
.xd5_c00288{left:664.650000px;}
.xd1_c00288{left:666.750000px;}
.x148_c00288{left:668.550000px;}
.xe6_c00288{left:671.850000px;}
.x110_c00288{left:674.100000px;}
.x10c_c00288{left:676.650000px;}
.x105_c00288{left:678.150000px;}
.x121_c00288{left:682.800000px;}
.xfe_c00288{left:683.850000px;}
.x137_c00288{left:684.900000px;}
.xb3_c00288{left:686.550000px;}
.x149_c00288{left:688.350000px;}
.x12c_c00288{left:689.400000px;}
.xdc_c00288{left:693.000000px;}
.x11d_c00288{left:694.200000px;}
.x131_c00288{left:695.250000px;}
.xb8_c00288{left:696.600000px;}
.x14d_c00288{left:697.650000px;}
.x14f_c00288{left:698.700000px;}
.x106_c00288{left:700.800000px;}
.x107_c00288{left:703.200000px;}
.x138_c00288{left:706.500000px;}
.xb4_c00288{left:707.850000px;}
.x111_c00288{left:709.800000px;}
.xd6_c00288{left:711.150000px;}
.xc5_c00288{left:712.200000px;}
.x10d_c00288{left:713.400000px;}
.xb9_c00288{left:715.350000px;}
.xf3_c00288{left:716.850000px;}
.xc6_c00288{left:719.400000px;}
.x122_c00288{left:720.900000px;}
.x14e_c00288{left:725.700000px;}
.x14b_c00288{left:727.200000px;}
.xe7_c00288{left:730.200000px;}
.x115_c00288{left:732.450000px;}
.x12d_c00288{left:733.650000px;}
.xeb_c00288{left:736.350000px;}
.xb5_c00288{left:737.700000px;}
.xff_c00288{left:739.950000px;}
.xf1_c00288{left:743.250000px;}
.xba_c00288{left:744.450000px;}
.x123_c00288{left:746.850000px;}
.xc7_c00288{left:749.250000px;}
.x116_c00288{left:753.000000px;}
.x128_c00288{left:754.800000px;}
.xfa_c00288{left:756.600000px;}
.xd7_c00288{left:757.650000px;}
.x10e_c00288{left:759.150000px;}
.x2_c00288{left:762.450000px;}
.xe0_c00288{left:767.850000px;}
.xfb_c00288{left:768.900000px;}
.xb6_c00288{left:771.900000px;}
.xbb_c00288{left:772.950000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws6_c00288{word-spacing:-9.898990pt;}
.ws1_c00288{word-spacing:-7.272727pt;}
.ws5_c00288{word-spacing:-7.199691pt;}
.ws8_c00288{word-spacing:0.000000pt;}
.ws0_c00288{word-spacing:2.222222pt;}
.ws3_c00288{word-spacing:3.851156pt;}
.ws4_c00288{word-spacing:7.319290pt;}
.ws7_c00288{word-spacing:11.634820pt;}
.ws2_c00288{word-spacing:57.777778pt;}
._0_c00288{width:85.614035pt;}
.fs7_c00288{font-size:26.666667pt;}
.fs6_c00288{font-size:32.000000pt;}
.fs8_c00288{font-size:42.666667pt;}
.fs5_c00288{font-size:48.000000pt;}
.fs4_c00288{font-size:53.333333pt;}
.fs3_c00288{font-size:58.666667pt;}
.fs2_c00288{font-size:64.000000pt;}
.fs1_c00288{font-size:69.333333pt;}
.fs0_c00288{font-size:101.333333pt;}
.y0_c00288{bottom:0.000000pt;}
.y37_c00288{bottom:153.333333pt;}
.y6b_c00288{bottom:163.200000pt;}
.y39_c00288{bottom:179.200000pt;}
.y36_c00288{bottom:180.133333pt;}
.y6a_c00288{bottom:191.733333pt;}
.y35_c00288{bottom:196.400000pt;}
.y69_c00288{bottom:204.800000pt;}
.y34_c00288{bottom:212.133333pt;}
.y68_c00288{bottom:216.000000pt;}
.y67_c00288{bottom:230.133333pt;}
.y33_c00288{bottom:231.866667pt;}
.y66_c00288{bottom:247.333333pt;}
.y32_c00288{bottom:247.600000pt;}
.y31_c00288{bottom:263.333333pt;}
.y65_c00288{bottom:279.066667pt;}
.y30_c00288{bottom:279.333333pt;}
.y2f_c00288{bottom:294.933333pt;}
.y64_c00288{bottom:295.066667pt;}
.y2e_c00288{bottom:310.666667pt;}
.y63_c00288{bottom:314.533333pt;}
.y2d_c00288{bottom:330.533333pt;}
.y2c_c00288{bottom:346.533333pt;}
.y2b_c00288{bottom:362.266667pt;}
.y62_c00288{bottom:365.866667pt;}
.y2a_c00288{bottom:382.133333pt;}
.y29_c00288{bottom:397.733333pt;}
.y61_c00288{bottom:405.066667pt;}
.y28_c00288{bottom:413.600000pt;}
.y60_c00288{bottom:421.066667pt;}
.y27_c00288{bottom:429.333333pt;}
.y5f_c00288{bottom:437.066667pt;}
.y26_c00288{bottom:445.333333pt;}
.y5e_c00288{bottom:456.666667pt;}
.y25_c00288{bottom:461.066667pt;}
.y5d_c00288{bottom:472.666667pt;}
.y24_c00288{bottom:477.066667pt;}
.y5c_c00288{bottom:488.933333pt;}
.y23_c00288{bottom:492.533333pt;}
.y5b_c00288{bottom:504.933333pt;}
.y22_c00288{bottom:508.533333pt;}
.y5a_c00288{bottom:522.800000pt;}
.y21_c00288{bottom:524.266667pt;}
.y59_c00288{bottom:536.933333pt;}
.y20_c00288{bottom:540.000000pt;}
.y58_c00288{bottom:552.666667pt;}
.y1f_c00288{bottom:556.000000pt;}
.y57_c00288{bottom:571.866667pt;}
.y1e_c00288{bottom:572.000000pt;}
.y1d_c00288{bottom:587.733333pt;}
.y56_c00288{bottom:588.133333pt;}
.y55_c00288{bottom:599.066667pt;}
.y1c_c00288{bottom:603.733333pt;}
.y54_c00288{bottom:604.133333pt;}
.y1b_c00288{bottom:619.466667pt;}
.y53_c00288{bottom:619.866667pt;}
.y52_c00288{bottom:635.733333pt;}
.y1a_c00288{bottom:638.000000pt;}
.y19_c00288{bottom:650.800000pt;}
.y51_c00288{bottom:651.466667pt;}
.y18_c00288{bottom:663.333333pt;}
.y50_c00288{bottom:667.200000pt;}
.y17_c00288{bottom:676.133333pt;}
.y4f_c00288{bottom:686.666667pt;}
.y16_c00288{bottom:689.200000pt;}
.y15_c00288{bottom:701.733333pt;}
.y4e_c00288{bottom:702.933333pt;}
.y4d_c00288{bottom:718.666667pt;}
.y14_c00288{bottom:719.466667pt;}
.y13_c00288{bottom:735.200000pt;}
.y4c_c00288{bottom:738.133333pt;}
.y12_c00288{bottom:750.933333pt;}
.y4b_c00288{bottom:754.133333pt;}
.y11_c00288{bottom:766.666667pt;}
.y4a_c00288{bottom:770.133333pt;}
.y49_c00288{bottom:785.866667pt;}
.y10_c00288{bottom:786.533333pt;}
.y48_c00288{bottom:801.600000pt;}
.yf_c00288{bottom:802.266667pt;}
.y47_c00288{bottom:817.600000pt;}
.ye_c00288{bottom:818.266667pt;}
.y46_c00288{bottom:833.600000pt;}
.yd_c00288{bottom:834.000000pt;}
.y45_c00288{bottom:848.933333pt;}
.yc_c00288{bottom:850.266667pt;}
.y38_c00288{bottom:853.066667pt;}
.y44_c00288{bottom:864.933333pt;}
.yb_c00288{bottom:865.600000pt;}
.y43_c00288{bottom:880.933333pt;}
.ya_c00288{bottom:881.866667pt;}
.y42_c00288{bottom:896.666667pt;}
.y9_c00288{bottom:896.933333pt;}
.y41_c00288{bottom:912.666667pt;}
.y8_c00288{bottom:921.333333pt;}
.y40_c00288{bottom:928.933333pt;}
.y7_c00288{bottom:937.333333pt;}
.y3f_c00288{bottom:943.333333pt;}
.y3e_c00288{bottom:951.733333pt;}
.y6_c00288{bottom:956.400000pt;}
.y3d_c00288{bottom:964.266667pt;}
.y5_c00288{bottom:972.400000pt;}
.y3c_c00288{bottom:977.066667pt;}
.y4_c00288{bottom:987.733333pt;}
.y3b_c00288{bottom:990.133333pt;}
.y3a_c00288{bottom:1002.933333pt;}
.y3_c00288{bottom:1003.466667pt;}
.y2_c00288{bottom:1023.066667pt;}
.y1_c00288{bottom:1025.600000pt;}
.h9_c00288{height:26.666667pt;}
.h8_c00288{height:32.000000pt;}
.ha_c00288{height:42.666667pt;}
.h7_c00288{height:48.000000pt;}
.h6_c00288{height:53.333333pt;}
.h5_c00288{height:58.666667pt;}
.h4_c00288{height:64.000000pt;}
.h3_c00288{height:69.333333pt;}
.h2_c00288{height:101.333333pt;}
.h1_c00288{height:1132.000000pt;}
.h0_c00288{height:1132.159993pt;}
.w1_c00288{width:854.666667pt;}
.w0_c00288{width:854.720052pt;}
.x0_c00288{left:0.000000pt;}
.xab_c00288{left:69.066667pt;}
.x99_c00288{left:72.266667pt;}
.x65_c00288{left:77.466667pt;}
.x54_c00288{left:79.333333pt;}
.x19_c00288{left:80.266667pt;}
.x78_c00288{left:81.200000pt;}
.x4c_c00288{left:82.533333pt;}
.x2b_c00288{left:84.133333pt;}
.x27_c00288{left:85.733333pt;}
.xa5_c00288{left:86.666667pt;}
.x9c_c00288{left:88.000000pt;}
.x95_c00288{left:89.733333pt;}
.x6c_c00288{left:90.933333pt;}
.x79_c00288{left:92.400000pt;}
.x36_c00288{left:94.400000pt;}
.x28_c00288{left:96.000000pt;}
.x3_c00288{left:96.933333pt;}
.xa1_c00288{left:98.933333pt;}
.x72_c00288{left:102.133333pt;}
.xa3_c00288{left:104.266667pt;}
.x8d_c00288{left:105.866667pt;}
.x5a_c00288{left:107.600000pt;}
.x62_c00288{left:108.666667pt;}
.xac_c00288{left:109.733333pt;}
.x2c_c00288{left:113.200000pt;}
.x5e_c00288{left:116.000000pt;}
.x7e_c00288{left:119.200000pt;}
.x97_c00288{left:120.400000pt;}
.x23_c00288{left:121.600000pt;}
.x8b_c00288{left:122.800000pt;}
.x7a_c00288{left:124.666667pt;}
.x63_c00288{left:125.600000pt;}
.x20_c00288{left:126.666667pt;}
.x88_c00288{left:128.133333pt;}
.x47_c00288{left:129.333333pt;}
.xa_c00288{left:130.666667pt;}
.x29_c00288{left:132.533333pt;}
.x4d_c00288{left:134.000000pt;}
.x3f_c00288{left:135.600000pt;}
.x7f_c00288{left:136.800000pt;}
.x12_c00288{left:139.333333pt;}
.x1a_c00288{left:142.666667pt;}
.x21_c00288{left:144.533333pt;}
.xa4_c00288{left:146.133333pt;}
.x18_c00288{left:147.066667pt;}
.x37_c00288{left:149.066667pt;}
.xb_c00288{left:150.133333pt;}
.x9d_c00288{left:151.333333pt;}
.x4_c00288{left:152.933333pt;}
.x24_c00288{left:154.266667pt;}
.x86_c00288{left:155.600000pt;}
.x40_c00288{left:157.066667pt;}
.x3b_c00288{left:158.800000pt;}
.x64_c00288{left:160.533333pt;}
.x9a_c00288{left:161.600000pt;}
.x89_c00288{left:162.666667pt;}
.x1b_c00288{left:164.133333pt;}
.x2d_c00288{left:165.066667pt;}
.x4e_c00288{left:169.466667pt;}
.x66_c00288{left:171.600000pt;}
.x6d_c00288{left:175.066667pt;}
.x22_c00288{left:178.800000pt;}
.x55_c00288{left:181.066667pt;}
.x2e_c00288{left:182.933333pt;}
.x5b_c00288{left:185.066667pt;}
.x5f_c00288{left:186.666667pt;}
.x8c_c00288{left:188.000000pt;}
.xaa_c00288{left:188.933333pt;}
.x2f_c00288{left:191.866667pt;}
.x8a_c00288{left:192.800000pt;}
.x41_c00288{left:193.866667pt;}
.x38_c00288{left:195.466667pt;}
.x30_c00288{left:198.000000pt;}
.x74_c00288{left:199.600000pt;}
.xa6_c00288{left:201.200000pt;}
.x67_c00288{left:202.266667pt;}
.x31_c00288{left:204.133333pt;}
.x13_c00288{left:206.533333pt;}
.xc_c00288{left:209.333333pt;}
.x48_c00288{left:210.533333pt;}
.xa8_c00288{left:211.466667pt;}
.x42_c00288{left:213.066667pt;}
.x9e_c00288{left:214.133333pt;}
.x4f_c00288{left:215.600000pt;}
.x80_c00288{left:217.200000pt;}
.x6f_c00288{left:218.533333pt;}
.x6e_c00288{left:220.266667pt;}
.x3c_c00288{left:221.466667pt;}
.x14_c00288{left:223.200000pt;}
.x32_c00288{left:224.266667pt;}
.x49_c00288{left:225.600000pt;}
.x8e_c00288{left:226.533333pt;}
.x5c_c00288{left:230.133333pt;}
.x75_c00288{left:231.333333pt;}
.xd_c00288{left:233.333333pt;}
.x9f_c00288{left:235.200000pt;}
.xa9_c00288{left:238.666667pt;}
.x5_c00288{left:239.600000pt;}
.x50_c00288{left:241.866667pt;}
.x33_c00288{left:243.733333pt;}
.x39_c00288{left:246.400000pt;}
.x68_c00288{left:247.733333pt;}
.x43_c00288{left:249.600000pt;}
.xe_c00288{left:252.266667pt;}
.x92_c00288{left:253.333333pt;}
.x56_c00288{left:254.666667pt;}
.x25_c00288{left:256.133333pt;}
.x7b_c00288{left:257.466667pt;}
.x76_c00288{left:258.533333pt;}
.x5d_c00288{left:262.133333pt;}
.xf_c00288{left:264.133333pt;}
.x6_c00288{left:266.133333pt;}
.x98_c00288{left:267.066667pt;}
.x81_c00288{left:268.666667pt;}
.xa7_c00288{left:271.333333pt;}
.x60_c00288{left:273.733333pt;}
.xa2_c00288{left:275.600000pt;}
.x51_c00288{left:276.800000pt;}
.x44_c00288{left:279.733333pt;}
.x90_c00288{left:280.800000pt;}
.x4a_c00288{left:282.133333pt;}
.x57_c00288{left:283.733333pt;}
.x93_c00288{left:286.266667pt;}
.x82_c00288{left:289.333333pt;}
.x83_c00288{left:291.600000pt;}
.x7c_c00288{left:292.666667pt;}
.x1c_c00288{left:293.733333pt;}
.x1_c00288{left:294.666667pt;}
.x7_c00288{left:296.533333pt;}
.x15_c00288{left:298.400000pt;}
.x52_c00288{left:299.466667pt;}
.x34_c00288{left:301.066667pt;}
.x4b_c00288{left:302.000000pt;}
.x61_c00288{left:303.733333pt;}
.x69_c00288{left:305.066667pt;}
.x85_c00288{left:306.266667pt;}
.x77_c00288{left:308.400000pt;}
.x2a_c00288{left:309.866667pt;}
.x35_c00288{left:312.000000pt;}
.x84_c00288{left:313.333333pt;}
.x3d_c00288{left:314.266667pt;}
.x1d_c00288{left:316.133333pt;}
.x16_c00288{left:318.533333pt;}
.x94_c00288{left:320.133333pt;}
.x58_c00288{left:323.066667pt;}
.x3a_c00288{left:325.200000pt;}
.x91_c00288{left:326.933333pt;}
.x8_c00288{left:327.866667pt;}
.x53_c00288{left:329.200000pt;}
.x10_c00288{left:331.600000pt;}
.x6a_c00288{left:332.533333pt;}
.x70_c00288{left:333.466667pt;}
.x7d_c00288{left:336.533333pt;}
.x73_c00288{left:338.266667pt;}
.x45_c00288{left:339.600000pt;}
.x1e_c00288{left:341.733333pt;}
.x59_c00288{left:343.200000pt;}
.x9_c00288{left:344.800000pt;}
.x9b_c00288{left:347.733333pt;}
.x87_c00288{left:349.466667pt;}
.x3e_c00288{left:350.400000pt;}
.x11_c00288{left:351.733333pt;}
.x26_c00288{left:353.466667pt;}
.x46_c00288{left:354.933333pt;}
.x96_c00288{left:356.933333pt;}
.x8f_c00288{left:358.933333pt;}
.x1f_c00288{left:360.933333pt;}
.x6b_c00288{left:362.933333pt;}
.x71_c00288{left:364.533333pt;}
.xa0_c00288{left:367.333333pt;}
.x17_c00288{left:370.666667pt;}
.xad_c00288{left:374.400000pt;}
.xae_c00288{left:376.000000pt;}
.x146_c00288{left:385.866667pt;}
.x13b_c00288{left:387.866667pt;}
.xc1_c00288{left:389.466667pt;}
.x109_c00288{left:393.866667pt;}
.x14a_c00288{left:396.800000pt;}
.xc2_c00288{left:398.533333pt;}
.xaf_c00288{left:400.000000pt;}
.x145_c00288{left:401.733333pt;}
.x133_c00288{left:404.933333pt;}
.x129_c00288{left:406.266667pt;}
.x117_c00288{left:407.733333pt;}
.x112_c00288{left:408.800000pt;}
.x100_c00288{left:409.733333pt;}
.xec_c00288{left:411.333333pt;}
.xb7_c00288{left:412.533333pt;}
.x13e_c00288{left:419.333333pt;}
.x135_c00288{left:420.800000pt;}
.x125_c00288{left:422.666667pt;}
.xbc_c00288{left:424.933333pt;}
.x101_c00288{left:426.266667pt;}
.xe8_c00288{left:428.133333pt;}
.x14c_c00288{left:429.733333pt;}
.x142_c00288{left:430.666667pt;}
.x12e_c00288{left:432.400000pt;}
.xc8_c00288{left:434.933333pt;}
.xcd_c00288{left:436.133333pt;}
.xdd_c00288{left:438.666667pt;}
.xf4_c00288{left:442.000000pt;}
.xe1_c00288{left:443.466667pt;}
.x132_c00288{left:444.933333pt;}
.xed_c00288{left:447.866667pt;}
.xc9_c00288{left:449.066667pt;}
.x118_c00288{left:450.000000pt;}
.x143_c00288{left:451.200000pt;}
.x124_c00288{left:452.400000pt;}
.xe9_c00288{left:454.000000pt;}
.x108_c00288{left:455.200000pt;}
.xb0_c00288{left:458.266667pt;}
.x11b_c00288{left:459.200000pt;}
.x102_c00288{left:461.466667pt;}
.xf5_c00288{left:463.066667pt;}
.xce_c00288{left:466.800000pt;}
.x10a_c00288{left:468.400000pt;}
.xbd_c00288{left:469.733333pt;}
.xc3_c00288{left:471.200000pt;}
.x11f_c00288{left:472.933333pt;}
.x103_c00288{left:475.866667pt;}
.x12f_c00288{left:477.200000pt;}
.xfc_c00288{left:479.866667pt;}
.xde_c00288{left:481.600000pt;}
.xd8_c00288{left:483.466667pt;}
.x140_c00288{left:486.000000pt;}
.x139_c00288{left:486.933333pt;}
.xe2_c00288{left:488.266667pt;}
.xea_c00288{left:489.466667pt;}
.x11e_c00288{left:491.866667pt;}
.x10b_c00288{left:493.066667pt;}
.x130_c00288{left:496.133333pt;}
.xbe_c00288{left:497.200000pt;}
.xd2_c00288{left:498.666667pt;}
.xd9_c00288{left:500.400000pt;}
.xcf_c00288{left:501.333333pt;}
.x120_c00288{left:502.666667pt;}
.x13a_c00288{left:506.800000pt;}
.xee_c00288{left:508.000000pt;}
.x144_c00288{left:509.866667pt;}
.xf6_c00288{left:511.333333pt;}
.x136_c00288{left:512.400000pt;}
.x13d_c00288{left:514.266667pt;}
.xb1_c00288{left:515.200000pt;}
.xca_c00288{left:517.200000pt;}
.x126_c00288{left:518.266667pt;}
.xd3_c00288{left:521.333333pt;}
.xe3_c00288{left:527.333333pt;}
.x147_c00288{left:528.266667pt;}
.x11c_c00288{left:530.533333pt;}
.xf7_c00288{left:531.466667pt;}
.x12b_c00288{left:532.800000pt;}
.x104_c00288{left:533.733333pt;}
.xd0_c00288{left:534.933333pt;}
.xcb_c00288{left:536.666667pt;}
.x113_c00288{left:539.066667pt;}
.x127_c00288{left:540.000000pt;}
.xef_c00288{left:541.600000pt;}
.xc4_c00288{left:543.200000pt;}
.xe4_c00288{left:545.600000pt;}
.x10f_c00288{left:547.066667pt;}
.xfd_c00288{left:550.933333pt;}
.x134_c00288{left:552.133333pt;}
.xbf_c00288{left:554.533333pt;}
.xda_c00288{left:555.733333pt;}
.xf8_c00288{left:557.066667pt;}
.xe5_c00288{left:558.133333pt;}
.x114_c00288{left:559.866667pt;}
.xf0_c00288{left:562.400000pt;}
.x141_c00288{left:563.733333pt;}
.xd4_c00288{left:565.200000pt;}
.x13f_c00288{left:568.133333pt;}
.x119_c00288{left:570.266667pt;}
.x12a_c00288{left:571.333333pt;}
.xb2_c00288{left:572.800000pt;}
.xdb_c00288{left:574.666667pt;}
.xcc_c00288{left:578.533333pt;}
.xc0_c00288{left:579.866667pt;}
.xf2_c00288{left:581.200000pt;}
.xdf_c00288{left:583.333333pt;}
.x13c_c00288{left:584.933333pt;}
.xf9_c00288{left:587.466667pt;}
.x11a_c00288{left:588.533333pt;}
.xd5_c00288{left:590.800000pt;}
.xd1_c00288{left:592.666667pt;}
.x148_c00288{left:594.266667pt;}
.xe6_c00288{left:597.200000pt;}
.x110_c00288{left:599.200000pt;}
.x10c_c00288{left:601.466667pt;}
.x105_c00288{left:602.800000pt;}
.x121_c00288{left:606.933333pt;}
.xfe_c00288{left:607.866667pt;}
.x137_c00288{left:608.800000pt;}
.xb3_c00288{left:610.266667pt;}
.x149_c00288{left:611.866667pt;}
.x12c_c00288{left:612.800000pt;}
.xdc_c00288{left:616.000000pt;}
.x11d_c00288{left:617.066667pt;}
.x131_c00288{left:618.000000pt;}
.xb8_c00288{left:619.200000pt;}
.x14d_c00288{left:620.133333pt;}
.x14f_c00288{left:621.066667pt;}
.x106_c00288{left:622.933333pt;}
.x107_c00288{left:625.066667pt;}
.x138_c00288{left:628.000000pt;}
.xb4_c00288{left:629.200000pt;}
.x111_c00288{left:630.933333pt;}
.xd6_c00288{left:632.133333pt;}
.xc5_c00288{left:633.066667pt;}
.x10d_c00288{left:634.133333pt;}
.xb9_c00288{left:635.866667pt;}
.xf3_c00288{left:637.200000pt;}
.xc6_c00288{left:639.466667pt;}
.x122_c00288{left:640.800000pt;}
.x14e_c00288{left:645.066667pt;}
.x14b_c00288{left:646.400000pt;}
.xe7_c00288{left:649.066667pt;}
.x115_c00288{left:651.066667pt;}
.x12d_c00288{left:652.133333pt;}
.xeb_c00288{left:654.533333pt;}
.xb5_c00288{left:655.733333pt;}
.xff_c00288{left:657.733333pt;}
.xf1_c00288{left:660.666667pt;}
.xba_c00288{left:661.733333pt;}
.x123_c00288{left:663.866667pt;}
.xc7_c00288{left:666.000000pt;}
.x116_c00288{left:669.333333pt;}
.x128_c00288{left:670.933333pt;}
.xfa_c00288{left:672.533333pt;}
.xd7_c00288{left:673.466667pt;}
.x10e_c00288{left:674.800000pt;}
.x2_c00288{left:677.733333pt;}
.xe0_c00288{left:682.533333pt;}
.xfb_c00288{left:683.466667pt;}
.xb6_c00288{left:686.133333pt;}
.xbb_c00288{left:687.066667pt;}
}





/* 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_c00289 {
    display:none;
  }
  .loading-indicator_c00289.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00289 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_c00289 { 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_c00289" -> "#page-container .classname_c00289")
 */
.pf_c00289 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00289 { /* 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_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00289 { /* 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_c00289 { /* 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_c00289 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00289 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00289 {overflow:visible;}
  }
}
.c_c00289 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00289 { /* 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_c00289:after { /* webkit #35443 */
  content: '';
}
.t_c00289:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00289 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 */
}
.__c00289 { /* 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_c00289 { /* info for Javascript */
  display:none;
}
.l_c00289 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00289 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00289 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00289: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_c00289 {
    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_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00289.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_c00289 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00289;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.000000;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;}
.mf3_c00289{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m49_c00289{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m79_c00289{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00289{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00289{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.md3_c00289{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00289{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m11_c00289{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m80_c00289{transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);}
.mba_c00289{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m98_c00289{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m23_c00289{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00289{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m71_c00289{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m68_c00289{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m66_c00289{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m91_c00289{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m103_c00289{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00289{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00289{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mce_c00289{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00289{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.md1_c00289{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m25_c00289{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m65_c00289{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00289{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md2_c00289{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mad_c00289{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m14_c00289{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00289{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00289{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m92_c00289{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m97_c00289{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m54_c00289{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00289{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00289{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md8_c00289{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00289{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00289{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00289{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me3_c00289{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00289{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m15_c00289{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00289{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.maa_c00289{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00289{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m45_c00289{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m24_c00289{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00289{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00289{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m94_c00289{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00289{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m55_c00289{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma_c00289{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00289{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m27_c00289{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00289{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m76_c00289{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m30_c00289{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mda_c00289{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00289{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00289{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00289{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00289{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00289{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.meb_c00289{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m100_c00289{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00289{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00289{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00289{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00289{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me4_c00289{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00289{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00289{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m44_c00289{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00289{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m57_c00289{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00289{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md4_c00289{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m77_c00289{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00289{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00289{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m72_c00289{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md5_c00289{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m78_c00289{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00289{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m42_c00289{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m56_c00289{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00289{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m107_c00289{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m28_c00289{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00289{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mca_c00289{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m21_c00289{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00289{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m58_c00289{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m18_c00289{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00289{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m38_c00289{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8_c00289{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m26_c00289{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me0_c00289{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00289{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m22_c00289{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00289{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00289{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md6_c00289{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00289{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m47_c00289{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mac_c00289{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m70_c00289{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00289{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m108_c00289{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00289{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mab_c00289{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mae_c00289{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mec_c00289{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m48_c00289{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m75_c00289{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m31_c00289{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9_c00289{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00289{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00289{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00289{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00289{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m40_c00289{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m99_c00289{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00289{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00289{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00289{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me5_c00289{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.maf_c00289{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00289{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m32_c00289{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00289{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00289{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me6_c00289{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m13_c00289{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m36_c00289{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00289{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mb_c00289{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mee_c00289{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me7_c00289{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m59_c00289{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf_c00289{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00289{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.me8_c00289{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00289{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m53_c00289{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00289{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00289{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00289{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00289{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m6_c00289{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m64_c00289{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m19_c00289{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m35_c00289{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m20_c00289{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00289{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00289{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00289{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00289{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m62_c00289{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m93_c00289{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m37_c00289{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00289{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00289{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00289{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00289{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m95_c00289{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md7_c00289{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00289{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00289{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00289{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00289{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00289{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00289{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mde_c00289{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m39_c00289{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00289{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m51_c00289{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m89_c00289{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m41_c00289{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m52_c00289{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m12_c00289{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m17_c00289{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md9_c00289{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m105_c00289{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me1_c00289{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m102_c00289{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m46_c00289{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m96_c00289{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m63_c00289{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00289{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00289{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m67_c00289{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mff_c00289{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m74_c00289{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m104_c00289{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00289{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m50_c00289{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00289{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m69_c00289{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m101_c00289{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00289{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00289{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m16_c00289{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m34_c00289{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);}
.m33_c00289{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mea_c00289{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00289{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00289{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00289{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00289{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00289{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00289{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00289{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00289{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00289{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00289{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4_c00289{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00289{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m60_c00289{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mef_c00289{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00289{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00289{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m90_c00289{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00289{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00289{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00289{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m61_c00289{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00289{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00289{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m73_c00289{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m88_c00289{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00289{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00289{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.me_c00289{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m109_c00289{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00289{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00289{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00289{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m29_c00289{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.me9_c00289{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.med_c00289{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m43_c00289{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m86_c00289{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00289{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00289{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10_c00289{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.md_c00289{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.me2_c00289{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00289{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m106_c00289{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00289{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m87_c00289{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00289{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m83_c00289{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m84_c00289{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00289{transform:matrix(0.361500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361500,0.000000,0.000000,0.250000,0,0);}
.m81_c00289{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m85_c00289{transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371750,0.000000,0.000000,0.250000,0,0);}
.m82_c00289{transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{transform:matrix(0.461500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461500,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);}
.md0_c00289{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00289{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls0_c00289{letter-spacing:0.000000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{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__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00289{word-spacing:-12.148372px;}
.ws6_c00289{word-spacing:-7.156425px;}
.ws2_c00289{word-spacing:-4.736842px;}
.ws5_c00289{word-spacing:-2.819026px;}
.ws8_c00289{word-spacing:-0.250000px;}
.ws7_c00289{word-spacing:0.000000px;}
.ws4_c00289{word-spacing:1.924528px;}
.ws9_c00289{word-spacing:2.666667px;}
.ws1_c00289{word-spacing:9.637232px;}
.ws0_c00289{word-spacing:11.393531px;}
.wsa_c00289{word-spacing:55.476190px;}
.fc0_c00289{color:transparent;}
.fs8_c00289{font-size:24.000000px;}
.fs4_c00289{font-size:36.000000px;}
.fs5_c00289{font-size:42.000000px;}
.fs6_c00289{font-size:54.000000px;}
.fs3_c00289{font-size:60.000000px;}
.fs2_c00289{font-size:66.000000px;}
.fs7_c00289{font-size:72.000000px;}
.fs1_c00289{font-size:78.000000px;}
.fs0_c00289{font-size:84.000000px;}
.y0_c00289{bottom:0.000000px;}
.y6e_c00289{bottom:198.300000px;}
.y37_c00289{bottom:203.700000px;}
.y6d_c00289{bottom:212.850000px;}
.y36_c00289{bottom:226.200000px;}
.y6c_c00289{bottom:228.000000px;}
.y6b_c00289{bottom:242.100000px;}
.y35_c00289{bottom:243.900000px;}
.y6a_c00289{bottom:256.200000px;}
.y34_c00289{bottom:261.600000px;}
.y69_c00289{bottom:270.300000px;}
.y33_c00289{bottom:278.850000px;}
.y32_c00289{bottom:296.550000px;}
.y68_c00289{bottom:301.800000px;}
.y31_c00289{bottom:313.800000px;}
.y67_c00289{bottom:316.200000px;}
.y66_c00289{bottom:330.900000px;}
.y30_c00289{bottom:331.500000px;}
.y65_c00289{bottom:344.850000px;}
.y2f_c00289{bottom:348.750000px;}
.y64_c00289{bottom:360.750000px;}
.y2e_c00289{bottom:366.450000px;}
.y63_c00289{bottom:379.800000px;}
.y2d_c00289{bottom:384.450000px;}
.y62_c00289{bottom:398.100000px;}
.y2c_c00289{bottom:402.150000px;}
.y61_c00289{bottom:416.700000px;}
.y2b_c00289{bottom:421.950000px;}
.y60_c00289{bottom:433.650000px;}
.y2a_c00289{bottom:438.150000px;}
.y5f_c00289{bottom:451.350000px;}
.y29_c00289{bottom:456.450000px;}
.y5e_c00289{bottom:469.050000px;}
.y28_c00289{bottom:474.150000px;}
.y5d_c00289{bottom:487.500000px;}
.y27_c00289{bottom:494.250000px;}
.y5b_c00289{bottom:505.500000px;}
.y26_c00289{bottom:509.100000px;}
.y5a_c00289{bottom:523.350000px;}
.y25_c00289{bottom:523.500000px;}
.y24_c00289{bottom:537.450000px;}
.y59_c00289{bottom:541.050000px;}
.y23_c00289{bottom:553.650000px;}
.y58_c00289{bottom:563.250000px;}
.y22_c00289{bottom:572.250000px;}
.y57_c00289{bottom:580.950000px;}
.y21_c00289{bottom:589.500000px;}
.y56_c00289{bottom:598.650000px;}
.y20_c00289{bottom:607.200000px;}
.y55_c00289{bottom:616.650000px;}
.y1f_c00289{bottom:624.900000px;}
.y54_c00289{bottom:634.350000px;}
.y1e_c00289{bottom:646.650000px;}
.y53_c00289{bottom:652.350000px;}
.y1d_c00289{bottom:664.950000px;}
.y52_c00289{bottom:670.350000px;}
.y51_c00289{bottom:677.850000px;}
.y1c_c00289{bottom:682.950000px;}
.y50_c00289{bottom:687.450000px;}
.y1b_c00289{bottom:705.000000px;}
.y4f_c00289{bottom:705.450000px;}
.y1a_c00289{bottom:723.300000px;}
.y4e_c00289{bottom:723.450000px;}
.y4d_c00289{bottom:741.450000px;}
.y19_c00289{bottom:744.450000px;}
.y4c_c00289{bottom:759.150000px;}
.y18_c00289{bottom:763.200000px;}
.y4b_c00289{bottom:776.850000px;}
.y17_c00289{bottom:781.050000px;}
.y4a_c00289{bottom:794.550000px;}
.y16_c00289{bottom:802.650000px;}
.y49_c00289{bottom:812.550000px;}
.y15_c00289{bottom:820.950000px;}
.y48_c00289{bottom:830.250000px;}
.y14_c00289{bottom:838.650000px;}
.y47_c00289{bottom:848.250000px;}
.y13_c00289{bottom:856.350000px;}
.y46_c00289{bottom:865.950000px;}
.y12_c00289{bottom:874.050000px;}
.y45_c00289{bottom:883.950000px;}
.y11_c00289{bottom:892.050000px;}
.y44_c00289{bottom:901.650000px;}
.y10_c00289{bottom:909.750000px;}
.y43_c00289{bottom:922.200000px;}
.y5c_c00289{bottom:923.700000px;}
.yf_c00289{bottom:928.050000px;}
.y42_c00289{bottom:938.100000px;}
.ye_c00289{bottom:945.300000px;}
.y41_c00289{bottom:952.500000px;}
.yd_c00289{bottom:963.300000px;}
.y40_c00289{bottom:967.650000px;}
.y3f_c00289{bottom:981.900000px;}
.yc_c00289{bottom:984.150000px;}
.y3e_c00289{bottom:999.900000px;}
.yb_c00289{bottom:1002.900000px;}
.y3d_c00289{bottom:1018.200000px;}
.ya_c00289{bottom:1020.600000px;}
.y3c_c00289{bottom:1036.500000px;}
.y9_c00289{bottom:1038.600000px;}
.y8_c00289{bottom:1055.550000px;}
.y3b_c00289{bottom:1057.650000px;}
.y7_c00289{bottom:1073.550000px;}
.y3a_c00289{bottom:1075.950000px;}
.y6_c00289{bottom:1091.550000px;}
.y39_c00289{bottom:1093.650000px;}
.y5_c00289{bottom:1109.550000px;}
.y38_c00289{bottom:1110.600000px;}
.y4_c00289{bottom:1129.350000px;}
.y2_c00289{bottom:1151.700000px;}
.y3_c00289{bottom:1155.000000px;}
.y1_c00289{bottom:1158.150000px;}
.ha_c00289{height:24.000000px;}
.h6_c00289{height:36.000000px;}
.h7_c00289{height:42.000000px;}
.h8_c00289{height:54.000000px;}
.h5_c00289{height:60.000000px;}
.h4_c00289{height:66.000000px;}
.h9_c00289{height:72.000000px;}
.h3_c00289{height:78.000000px;}
.h2_c00289{height:84.000000px;}
.h0_c00289{height:1270.440033px;}
.h1_c00289{height:1270.500000px;}
.w1_c00289{width:961.500000px;}
.w0_c00289{width:961.560058px;}
.x0_c00289{left:0.000000px;}
.x2_c00289{left:170.250000px;}
.x5_c00289{left:172.800000px;}
.x71_c00289{left:175.500000px;}
.x77_c00289{left:177.150000px;}
.x86_c00289{left:178.950000px;}
.x1_c00289{left:181.050000px;}
.x61_c00289{left:183.150000px;}
.x51_c00289{left:184.650000px;}
.xb1_c00289{left:187.950000px;}
.x14_c00289{left:190.050000px;}
.x20_c00289{left:191.250000px;}
.x4a_c00289{left:192.450000px;}
.x40_c00289{left:193.650000px;}
.x76_c00289{left:195.150000px;}
.x7f_c00289{left:196.500000px;}
.x83_c00289{left:198.900000px;}
.x9e_c00289{left:201.150000px;}
.xa4_c00289{left:202.350000px;}
.xab_c00289{left:203.850000px;}
.xb0_c00289{left:205.200000px;}
.x84_c00289{left:206.400000px;}
.x21_c00289{left:207.750000px;}
.x44_c00289{left:210.300000px;}
.x97_c00289{left:211.350000px;}
.x30_c00289{left:213.150000px;}
.x7d_c00289{left:214.500000px;}
.x41_c00289{left:216.000000px;}
.x5d_c00289{left:217.950000px;}
.x78_c00289{left:220.350000px;}
.x57_c00289{left:221.550000px;}
.x85_c00289{left:222.600000px;}
.x52_c00289{left:227.100000px;}
.x15_c00289{left:229.650000px;}
.x39_c00289{left:231.600000px;}
.x98_c00289{left:233.250000px;}
.x67_c00289{left:234.900000px;}
.x90_c00289{left:237.450000px;}
.x34_c00289{left:240.150000px;}
.x5e_c00289{left:241.650000px;}
.x58_c00289{left:243.150000px;}
.xa8_c00289{left:244.950000px;}
.x29_c00289{left:246.750000px;}
.x22_c00289{left:250.200000px;}
.x8d_c00289{left:251.250000px;}
.x99_c00289{left:252.750000px;}
.x31_c00289{left:254.550000px;}
.x79_c00289{left:255.600000px;}
.x6_c00289{left:257.700000px;}
.x35_c00289{left:258.900000px;}
.x16_c00289{left:262.050000px;}
.x1a_c00289{left:264.150000px;}
.x68_c00289{left:265.500000px;}
.x2a_c00289{left:266.850000px;}
.x8a_c00289{left:268.200000px;}
.x5f_c00289{left:269.700000px;}
.x72_c00289{left:271.350000px;}
.x42_c00289{left:273.300000px;}
.x4b_c00289{left:275.700000px;}
.x17_c00289{left:278.550000px;}
.x2b_c00289{left:283.350000px;}
.xa3_c00289{left:284.850000px;}
.x8e_c00289{left:289.800000px;}
.x6e_c00289{left:293.250000px;}
.x1b_c00289{left:294.450000px;}
.xb2_c00289{left:295.650000px;}
.x9f_c00289{left:297.300000px;}
.x23_c00289{left:301.650000px;}
.x59_c00289{left:302.850000px;}
.x8b_c00289{left:304.500000px;}
.x3a_c00289{left:306.150000px;}
.xa6_c00289{left:307.950000px;}
.x18_c00289{left:309.150000px;}
.x96_c00289{left:310.500000px;}
.x80_c00289{left:313.500000px;}
.x9a_c00289{left:315.000000px;}
.x4c_c00289{left:316.350000px;}
.x43_c00289{left:318.000000px;}
.x5a_c00289{left:319.350000px;}
.x24_c00289{left:320.700000px;}
.x45_c00289{left:322.500000px;}
.xa0_c00289{left:323.850000px;}
.x3b_c00289{left:324.900000px;}
.x62_c00289{left:326.100000px;}
.x2c_c00289{left:328.350000px;}
.x69_c00289{left:330.750000px;}
.x7_c00289{left:332.550000px;}
.x1c_c00289{left:334.800000px;}
.x5b_c00289{left:337.050000px;}
.x53_c00289{left:338.400000px;}
.x3c_c00289{left:346.200000px;}
.xa7_c00289{left:348.300000px;}
.x7a_c00289{left:349.500000px;}
.x63_c00289{left:350.550000px;}
.x9b_c00289{left:352.050000px;}
.x6f_c00289{left:353.250000px;}
.x25_c00289{left:354.900000px;}
.x6a_c00289{left:357.750000px;}
.x81_c00289{left:359.250000px;}
.x55_c00289{left:360.450000px;}
.xa1_c00289{left:362.700000px;}
.x3d_c00289{left:364.500000px;}
.xb3_c00289{left:365.550000px;}
.x19_c00289{left:366.750000px;}
.x9c_c00289{left:368.550000px;}
.x64_c00289{left:370.350000px;}
.xad_c00289{left:374.250000px;}
.x4d_c00289{left:376.500000px;}
.x6b_c00289{left:378.300000px;}
.x36_c00289{left:379.950000px;}
.x2d_c00289{left:381.300000px;}
.x8_c00289{left:383.700000px;}
.x4e_c00289{left:387.600000px;}
.x46_c00289{left:389.100000px;}
.x32_c00289{left:395.400000px;}
.xaa_c00289{left:396.750000px;}
.x26_c00289{left:399.600000px;}
.x91_c00289{left:400.950000px;}
.x7b_c00289{left:402.450000px;}
.x9_c00289{left:403.800000px;}
.x9d_c00289{left:405.300000px;}
.x1d_c00289{left:407.550000px;}
.x47_c00289{left:409.200000px;}
.x2e_c00289{left:411.600000px;}
.x3_c00289{left:413.250000px;}
.x65_c00289{left:416.400000px;}
.x92_c00289{left:417.450000px;}
.x37_c00289{left:422.100000px;}
.x4f_c00289{left:424.350000px;}
.x48_c00289{left:425.400000px;}
.x6c_c00289{left:427.200000px;}
.x2f_c00289{left:429.300000px;}
.x33_c00289{left:430.650000px;}
.xa5_c00289{left:432.000000px;}
.x1e_c00289{left:433.500000px;}
.x66_c00289{left:435.150000px;}
.x93_c00289{left:437.250000px;}
.x60_c00289{left:441.300000px;}
.xa_c00289{left:442.350000px;}
.x6d_c00289{left:445.950000px;}
.x87_c00289{left:447.600000px;}
.x74_c00289{left:448.950000px;}
.xa9_c00289{left:450.450000px;}
.x27_c00289{left:451.500000px;}
.xae_c00289{left:453.750000px;}
.x82_c00289{left:455.100000px;}
.x7e_c00289{left:456.150000px;}
.x7c_c00289{left:458.550000px;}
.x4_c00289{left:460.050000px;}
.x75_c00289{left:462.600000px;}
.x88_c00289{left:464.100000px;}
.x3e_c00289{left:465.750000px;}
.x38_c00289{left:466.800000px;}
.x94_c00289{left:468.150000px;}
.x5c_c00289{left:470.250000px;}
.x28_c00289{left:472.800000px;}
.x50_c00289{left:474.750000px;}
.xb_c00289{left:476.550000px;}
.x3f_c00289{left:483.450000px;}
.x8f_c00289{left:484.650000px;}
.x70_c00289{left:486.150000px;}
.x54_c00289{left:488.250000px;}
.xb4_c00289{left:490.050000px;}
.x1f_c00289{left:492.600000px;}
.x49_c00289{left:494.550000px;}
.x8c_c00289{left:498.600000px;}
.x56_c00289{left:499.800000px;}
.x95_c00289{left:502.350000px;}
.x73_c00289{left:503.700000px;}
.xac_c00289{left:505.200000px;}
.x89_c00289{left:507.000000px;}
.xa2_c00289{left:509.550000px;}
.xaf_c00289{left:516.750000px;}
.xc_c00289{left:526.200000px;}
.xcc_c00289{left:529.500000px;}
.xf1_c00289{left:531.750000px;}
.x132_c00289{left:537.450000px;}
.x135_c00289{left:538.500000px;}
.x148_c00289{left:539.700000px;}
.x150_c00289{left:541.050000px;}
.xb5_c00289{left:543.600000px;}
.xbe_c00289{left:545.700000px;}
.xd2_c00289{left:546.750000px;}
.xf7_c00289{left:548.850000px;}
.xfc_c00289{left:549.900000px;}
.x106_c00289{left:550.950000px;}
.x113_c00289{left:552.150000px;}
.x126_c00289{left:553.350000px;}
.x12c_c00289{left:555.000000px;}
.x141_c00289{left:556.500000px;}
.xea_c00289{left:559.050000px;}
.xb7_c00289{left:564.900000px;}
.xd_c00289{left:568.350000px;}
.xf8_c00289{left:571.950000px;}
.x10a_c00289{left:573.150000px;}
.xcd_c00289{left:574.200000px;}
.x156_c00289{left:578.250000px;}
.xd3_c00289{left:579.900000px;}
.xeb_c00289{left:580.950000px;}
.xb6_c00289{left:582.900000px;}
.xfd_c00289{left:584.100000px;}
.x110_c00289{left:586.050000px;}
.xd9_c00289{left:588.900000px;}
.xe1_c00289{left:591.150000px;}
.x142_c00289{left:594.600000px;}
.x13e_c00289{left:596.400000px;}
.xdd_c00289{left:599.400000px;}
.xe_c00289{left:601.500000px;}
.x120_c00289{left:603.450000px;}
.x127_c00289{left:604.500000px;}
.xd4_c00289{left:606.150000px;}
.xb8_c00289{left:608.100000px;}
.xc6_c00289{left:612.750000px;}
.xed_c00289{left:615.600000px;}
.xf2_c00289{left:616.650000px;}
.xde_c00289{left:618.150000px;}
.x137_c00289{left:619.650000px;}
.x10e_c00289{left:621.900000px;}
.x128_c00289{left:623.250000px;}
.x111_c00289{left:625.650000px;}
.x107_c00289{left:627.300000px;}
.xbf_c00289{left:628.800000px;}
.x12a_c00289{left:630.000000px;}
.x103_c00289{left:636.000000px;}
.x138_c00289{left:637.350000px;}
.x117_c00289{left:639.300000px;}
.xce_c00289{left:642.600000px;}
.xf9_c00289{left:645.000000px;}
.xfe_c00289{left:646.350000px;}
.x121_c00289{left:647.400000px;}
.x10b_c00289{left:650.250000px;}
.x145_c00289{left:652.650000px;}
.xe2_c00289{left:653.850000px;}
.xdf_c00289{left:656.700000px;}
.x129_c00289{left:657.750000px;}
.x125_c00289{left:659.550000px;}
.xb9_c00289{left:662.100000px;}
.xda_c00289{left:664.500000px;}
.xf3_c00289{left:665.550000px;}
.xff_c00289{left:666.900000px;}
.x108_c00289{left:668.700000px;}
.x143_c00289{left:669.750000px;}
.x118_c00289{left:671.400000px;}
.x12d_c00289{left:675.000000px;}
.xc0_c00289{left:677.700000px;}
.x130_c00289{left:679.500000px;}
.x151_c00289{left:680.550000px;}
.xee_c00289{left:682.650000px;}
.x157_c00289{left:684.600000px;}
.xc7_c00289{left:688.050000px;}
.xe0_c00289{left:689.100000px;}
.x109_c00289{left:690.300000px;}
.xf_c00289{left:693.000000px;}
.x155_c00289{left:695.250000px;}
.x11d_c00289{left:697.950000px;}
.x104_c00289{left:699.750000px;}
.x146_c00289{left:701.700000px;}
.x123_c00289{left:702.750000px;}
.x139_c00289{left:704.400000px;}
.x112_c00289{left:707.400000px;}
.xef_c00289{left:708.900000px;}
.xd5_c00289{left:712.050000px;}
.xe3_c00289{left:713.250000px;}
.x13f_c00289{left:714.900000px;}
.x14f_c00289{left:716.700000px;}
.x10_c00289{left:717.900000px;}
.x136_c00289{left:719.250000px;}
.x114_c00289{left:721.650000px;}
.x119_c00289{left:722.850000px;}
.x100_c00289{left:726.300000px;}
.x10c_c00289{left:728.400000px;}
.xba_c00289{left:729.750000px;}
.xf4_c00289{left:731.850000px;}
.x13a_c00289{left:733.500000px;}
.xdb_c00289{left:735.750000px;}
.xc1_c00289{left:736.800000px;}
.xfa_c00289{left:737.850000px;}
.xc8_c00289{left:739.200000px;}
.xf5_c00289{left:741.150000px;}
.x133_c00289{left:743.700000px;}
.xc2_c00289{left:745.050000px;}
.x152_c00289{left:746.700000px;}
.xbb_c00289{left:748.500000px;}
.x115_c00289{left:749.700000px;}
.xe4_c00289{left:750.750000px;}
.x11e_c00289{left:756.600000px;}
.xcf_c00289{left:757.800000px;}
.x11_c00289{left:759.600000px;}
.xd6_c00289{left:762.150000px;}
.x105_c00289{left:765.600000px;}
.xe5_c00289{left:766.650000px;}
.x11a_c00289{left:768.150000px;}
.xc9_c00289{left:769.500000px;}
.x12e_c00289{left:772.950000px;}
.x14a_c00289{left:776.850000px;}
.xbc_c00289{left:778.050000px;}
.xf6_c00289{left:780.750000px;}
.x13b_c00289{left:781.800000px;}
.xc3_c00289{left:783.150000px;}
.xe6_c00289{left:786.750000px;}
.x101_c00289{left:789.300000px;}
.x11b_c00289{left:791.850000px;}
.x131_c00289{left:794.700000px;}
.xec_c00289{left:796.200000px;}
.x14b_c00289{left:797.400000px;}
.xe8_c00289{left:798.900000px;}
.x10d_c00289{left:800.400000px;}
.xc4_c00289{left:802.200000px;}
.x147_c00289{left:804.300000px;}
.xca_c00289{left:805.800000px;}
.x14d_c00289{left:807.600000px;}
.x149_c00289{left:810.450000px;}
.x116_c00289{left:812.250000px;}
.x11c_c00289{left:814.200000px;}
.x153_c00289{left:816.150000px;}
.xe7_c00289{left:818.400000px;}
.x12f_c00289{left:820.200000px;}
.xfb_c00289{left:821.700000px;}
.xd0_c00289{left:823.200000px;}
.xf0_c00289{left:825.900000px;}
.x12_c00289{left:826.950000px;}
.x134_c00289{left:828.000000px;}
.xcb_c00289{left:829.950000px;}
.x10f_c00289{left:832.650000px;}
.x12b_c00289{left:833.700000px;}
.xd7_c00289{left:834.900000px;}
.x13_c00289{left:836.250000px;}
.x124_c00289{left:837.750000px;}
.xbd_c00289{left:838.800000px;}
.xd1_c00289{left:840.450000px;}
.xdc_c00289{left:841.650000px;}
.x140_c00289{left:844.500000px;}
.xc5_c00289{left:847.800000px;}
.x144_c00289{left:851.250000px;}
.xd8_c00289{left:852.900000px;}
.x102_c00289{left:854.100000px;}
.xe9_c00289{left:855.750000px;}
.x11f_c00289{left:860.250000px;}
.x122_c00289{left:861.600000px;}
.x14c_c00289{left:862.650000px;}
.x14e_c00289{left:864.450000px;}
.x13c_c00289{left:866.400000px;}
.x154_c00289{left:869.850000px;}
.x13d_c00289{left:885.450000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws3_c00289{word-spacing:-10.798552pt;}
.ws6_c00289{word-spacing:-6.361266pt;}
.ws2_c00289{word-spacing:-4.210526pt;}
.ws5_c00289{word-spacing:-2.505800pt;}
.ws8_c00289{word-spacing:-0.222222pt;}
.ws7_c00289{word-spacing:0.000000pt;}
.ws4_c00289{word-spacing:1.710692pt;}
.ws9_c00289{word-spacing:2.370370pt;}
.ws1_c00289{word-spacing:8.566428pt;}
.ws0_c00289{word-spacing:10.127583pt;}
.wsa_c00289{word-spacing:49.312169pt;}
.fs8_c00289{font-size:21.333333pt;}
.fs4_c00289{font-size:32.000000pt;}
.fs5_c00289{font-size:37.333333pt;}
.fs6_c00289{font-size:48.000000pt;}
.fs3_c00289{font-size:53.333333pt;}
.fs2_c00289{font-size:58.666667pt;}
.fs7_c00289{font-size:64.000000pt;}
.fs1_c00289{font-size:69.333333pt;}
.fs0_c00289{font-size:74.666667pt;}
.y0_c00289{bottom:0.000000pt;}
.y6e_c00289{bottom:176.266667pt;}
.y37_c00289{bottom:181.066667pt;}
.y6d_c00289{bottom:189.200000pt;}
.y36_c00289{bottom:201.066667pt;}
.y6c_c00289{bottom:202.666667pt;}
.y6b_c00289{bottom:215.200000pt;}
.y35_c00289{bottom:216.800000pt;}
.y6a_c00289{bottom:227.733333pt;}
.y34_c00289{bottom:232.533333pt;}
.y69_c00289{bottom:240.266667pt;}
.y33_c00289{bottom:247.866667pt;}
.y32_c00289{bottom:263.600000pt;}
.y68_c00289{bottom:268.266667pt;}
.y31_c00289{bottom:278.933333pt;}
.y67_c00289{bottom:281.066667pt;}
.y66_c00289{bottom:294.133333pt;}
.y30_c00289{bottom:294.666667pt;}
.y65_c00289{bottom:306.533333pt;}
.y2f_c00289{bottom:310.000000pt;}
.y64_c00289{bottom:320.666667pt;}
.y2e_c00289{bottom:325.733333pt;}
.y63_c00289{bottom:337.600000pt;}
.y2d_c00289{bottom:341.733333pt;}
.y62_c00289{bottom:353.866667pt;}
.y2c_c00289{bottom:357.466667pt;}
.y61_c00289{bottom:370.400000pt;}
.y2b_c00289{bottom:375.066667pt;}
.y60_c00289{bottom:385.466667pt;}
.y2a_c00289{bottom:389.466667pt;}
.y5f_c00289{bottom:401.200000pt;}
.y29_c00289{bottom:405.733333pt;}
.y5e_c00289{bottom:416.933333pt;}
.y28_c00289{bottom:421.466667pt;}
.y5d_c00289{bottom:433.333333pt;}
.y27_c00289{bottom:439.333333pt;}
.y5b_c00289{bottom:449.333333pt;}
.y26_c00289{bottom:452.533333pt;}
.y5a_c00289{bottom:465.200000pt;}
.y25_c00289{bottom:465.333333pt;}
.y24_c00289{bottom:477.733333pt;}
.y59_c00289{bottom:480.933333pt;}
.y23_c00289{bottom:492.133333pt;}
.y58_c00289{bottom:500.666667pt;}
.y22_c00289{bottom:508.666667pt;}
.y57_c00289{bottom:516.400000pt;}
.y21_c00289{bottom:524.000000pt;}
.y56_c00289{bottom:532.133333pt;}
.y20_c00289{bottom:539.733333pt;}
.y55_c00289{bottom:548.133333pt;}
.y1f_c00289{bottom:555.466667pt;}
.y54_c00289{bottom:563.866667pt;}
.y1e_c00289{bottom:574.800000pt;}
.y53_c00289{bottom:579.866667pt;}
.y1d_c00289{bottom:591.066667pt;}
.y52_c00289{bottom:595.866667pt;}
.y51_c00289{bottom:602.533333pt;}
.y1c_c00289{bottom:607.066667pt;}
.y50_c00289{bottom:611.066667pt;}
.y1b_c00289{bottom:626.666667pt;}
.y4f_c00289{bottom:627.066667pt;}
.y1a_c00289{bottom:642.933333pt;}
.y4e_c00289{bottom:643.066667pt;}
.y4d_c00289{bottom:659.066667pt;}
.y19_c00289{bottom:661.733333pt;}
.y4c_c00289{bottom:674.800000pt;}
.y18_c00289{bottom:678.400000pt;}
.y4b_c00289{bottom:690.533333pt;}
.y17_c00289{bottom:694.266667pt;}
.y4a_c00289{bottom:706.266667pt;}
.y16_c00289{bottom:713.466667pt;}
.y49_c00289{bottom:722.266667pt;}
.y15_c00289{bottom:729.733333pt;}
.y48_c00289{bottom:738.000000pt;}
.y14_c00289{bottom:745.466667pt;}
.y47_c00289{bottom:754.000000pt;}
.y13_c00289{bottom:761.200000pt;}
.y46_c00289{bottom:769.733333pt;}
.y12_c00289{bottom:776.933333pt;}
.y45_c00289{bottom:785.733333pt;}
.y11_c00289{bottom:792.933333pt;}
.y44_c00289{bottom:801.466667pt;}
.y10_c00289{bottom:808.666667pt;}
.y43_c00289{bottom:819.733333pt;}
.y5c_c00289{bottom:821.066667pt;}
.yf_c00289{bottom:824.933333pt;}
.y42_c00289{bottom:833.866667pt;}
.ye_c00289{bottom:840.266667pt;}
.y41_c00289{bottom:846.666667pt;}
.yd_c00289{bottom:856.266667pt;}
.y40_c00289{bottom:860.133333pt;}
.y3f_c00289{bottom:872.800000pt;}
.yc_c00289{bottom:874.800000pt;}
.y3e_c00289{bottom:888.800000pt;}
.yb_c00289{bottom:891.466667pt;}
.y3d_c00289{bottom:905.066667pt;}
.ya_c00289{bottom:907.200000pt;}
.y3c_c00289{bottom:921.333333pt;}
.y9_c00289{bottom:923.200000pt;}
.y8_c00289{bottom:938.266667pt;}
.y3b_c00289{bottom:940.133333pt;}
.y7_c00289{bottom:954.266667pt;}
.y3a_c00289{bottom:956.400000pt;}
.y6_c00289{bottom:970.266667pt;}
.y39_c00289{bottom:972.133333pt;}
.y5_c00289{bottom:986.266667pt;}
.y38_c00289{bottom:987.200000pt;}
.y4_c00289{bottom:1003.866667pt;}
.y2_c00289{bottom:1023.733333pt;}
.y3_c00289{bottom:1026.666667pt;}
.y1_c00289{bottom:1029.466667pt;}
.ha_c00289{height:21.333333pt;}
.h6_c00289{height:32.000000pt;}
.h7_c00289{height:37.333333pt;}
.h8_c00289{height:48.000000pt;}
.h5_c00289{height:53.333333pt;}
.h4_c00289{height:58.666667pt;}
.h9_c00289{height:64.000000pt;}
.h3_c00289{height:69.333333pt;}
.h2_c00289{height:74.666667pt;}
.h0_c00289{height:1129.280029pt;}
.h1_c00289{height:1129.333333pt;}
.w1_c00289{width:854.666667pt;}
.w0_c00289{width:854.720052pt;}
.x0_c00289{left:0.000000pt;}
.x2_c00289{left:151.333333pt;}
.x5_c00289{left:153.600000pt;}
.x71_c00289{left:156.000000pt;}
.x77_c00289{left:157.466667pt;}
.x86_c00289{left:159.066667pt;}
.x1_c00289{left:160.933333pt;}
.x61_c00289{left:162.800000pt;}
.x51_c00289{left:164.133333pt;}
.xb1_c00289{left:167.066667pt;}
.x14_c00289{left:168.933333pt;}
.x20_c00289{left:170.000000pt;}
.x4a_c00289{left:171.066667pt;}
.x40_c00289{left:172.133333pt;}
.x76_c00289{left:173.466667pt;}
.x7f_c00289{left:174.666667pt;}
.x83_c00289{left:176.800000pt;}
.x9e_c00289{left:178.800000pt;}
.xa4_c00289{left:179.866667pt;}
.xab_c00289{left:181.200000pt;}
.xb0_c00289{left:182.400000pt;}
.x84_c00289{left:183.466667pt;}
.x21_c00289{left:184.666667pt;}
.x44_c00289{left:186.933333pt;}
.x97_c00289{left:187.866667pt;}
.x30_c00289{left:189.466667pt;}
.x7d_c00289{left:190.666667pt;}
.x41_c00289{left:192.000000pt;}
.x5d_c00289{left:193.733333pt;}
.x78_c00289{left:195.866667pt;}
.x57_c00289{left:196.933333pt;}
.x85_c00289{left:197.866667pt;}
.x52_c00289{left:201.866667pt;}
.x15_c00289{left:204.133333pt;}
.x39_c00289{left:205.866667pt;}
.x98_c00289{left:207.333333pt;}
.x67_c00289{left:208.800000pt;}
.x90_c00289{left:211.066667pt;}
.x34_c00289{left:213.466667pt;}
.x5e_c00289{left:214.800000pt;}
.x58_c00289{left:216.133333pt;}
.xa8_c00289{left:217.733333pt;}
.x29_c00289{left:219.333333pt;}
.x22_c00289{left:222.400000pt;}
.x8d_c00289{left:223.333333pt;}
.x99_c00289{left:224.666667pt;}
.x31_c00289{left:226.266667pt;}
.x79_c00289{left:227.200000pt;}
.x6_c00289{left:229.066667pt;}
.x35_c00289{left:230.133333pt;}
.x16_c00289{left:232.933333pt;}
.x1a_c00289{left:234.800000pt;}
.x68_c00289{left:236.000000pt;}
.x2a_c00289{left:237.200000pt;}
.x8a_c00289{left:238.400000pt;}
.x5f_c00289{left:239.733333pt;}
.x72_c00289{left:241.200000pt;}
.x42_c00289{left:242.933333pt;}
.x4b_c00289{left:245.066667pt;}
.x17_c00289{left:247.600000pt;}
.x2b_c00289{left:251.866667pt;}
.xa3_c00289{left:253.200000pt;}
.x8e_c00289{left:257.600000pt;}
.x6e_c00289{left:260.666667pt;}
.x1b_c00289{left:261.733333pt;}
.xb2_c00289{left:262.800000pt;}
.x9f_c00289{left:264.266667pt;}
.x23_c00289{left:268.133333pt;}
.x59_c00289{left:269.200000pt;}
.x8b_c00289{left:270.666667pt;}
.x3a_c00289{left:272.133333pt;}
.xa6_c00289{left:273.733333pt;}
.x18_c00289{left:274.800000pt;}
.x96_c00289{left:276.000000pt;}
.x80_c00289{left:278.666667pt;}
.x9a_c00289{left:280.000000pt;}
.x4c_c00289{left:281.200000pt;}
.x43_c00289{left:282.666667pt;}
.x5a_c00289{left:283.866667pt;}
.x24_c00289{left:285.066667pt;}
.x45_c00289{left:286.666667pt;}
.xa0_c00289{left:287.866667pt;}
.x3b_c00289{left:288.800000pt;}
.x62_c00289{left:289.866667pt;}
.x2c_c00289{left:291.866667pt;}
.x69_c00289{left:294.000000pt;}
.x7_c00289{left:295.600000pt;}
.x1c_c00289{left:297.600000pt;}
.x5b_c00289{left:299.600000pt;}
.x53_c00289{left:300.800000pt;}
.x3c_c00289{left:307.733333pt;}
.xa7_c00289{left:309.600000pt;}
.x7a_c00289{left:310.666667pt;}
.x63_c00289{left:311.600000pt;}
.x9b_c00289{left:312.933333pt;}
.x6f_c00289{left:314.000000pt;}
.x25_c00289{left:315.466667pt;}
.x6a_c00289{left:318.000000pt;}
.x81_c00289{left:319.333333pt;}
.x55_c00289{left:320.400000pt;}
.xa1_c00289{left:322.400000pt;}
.x3d_c00289{left:324.000000pt;}
.xb3_c00289{left:324.933333pt;}
.x19_c00289{left:326.000000pt;}
.x9c_c00289{left:327.600000pt;}
.x64_c00289{left:329.200000pt;}
.xad_c00289{left:332.666667pt;}
.x4d_c00289{left:334.666667pt;}
.x6b_c00289{left:336.266667pt;}
.x36_c00289{left:337.733333pt;}
.x2d_c00289{left:338.933333pt;}
.x8_c00289{left:341.066667pt;}
.x4e_c00289{left:344.533333pt;}
.x46_c00289{left:345.866667pt;}
.x32_c00289{left:351.466667pt;}
.xaa_c00289{left:352.666667pt;}
.x26_c00289{left:355.200000pt;}
.x91_c00289{left:356.400000pt;}
.x7b_c00289{left:357.733333pt;}
.x9_c00289{left:358.933333pt;}
.x9d_c00289{left:360.266667pt;}
.x1d_c00289{left:362.266667pt;}
.x47_c00289{left:363.733333pt;}
.x2e_c00289{left:365.866667pt;}
.x3_c00289{left:367.333333pt;}
.x65_c00289{left:370.133333pt;}
.x92_c00289{left:371.066667pt;}
.x37_c00289{left:375.200000pt;}
.x4f_c00289{left:377.200000pt;}
.x48_c00289{left:378.133333pt;}
.x6c_c00289{left:379.733333pt;}
.x2f_c00289{left:381.600000pt;}
.x33_c00289{left:382.800000pt;}
.xa5_c00289{left:384.000000pt;}
.x1e_c00289{left:385.333333pt;}
.x66_c00289{left:386.800000pt;}
.x93_c00289{left:388.666667pt;}
.x60_c00289{left:392.266667pt;}
.xa_c00289{left:393.200000pt;}
.x6d_c00289{left:396.400000pt;}
.x87_c00289{left:397.866667pt;}
.x74_c00289{left:399.066667pt;}
.xa9_c00289{left:400.400000pt;}
.x27_c00289{left:401.333333pt;}
.xae_c00289{left:403.333333pt;}
.x82_c00289{left:404.533333pt;}
.x7e_c00289{left:405.466667pt;}
.x7c_c00289{left:407.600000pt;}
.x4_c00289{left:408.933333pt;}
.x75_c00289{left:411.200000pt;}
.x88_c00289{left:412.533333pt;}
.x3e_c00289{left:414.000000pt;}
.x38_c00289{left:414.933333pt;}
.x94_c00289{left:416.133333pt;}
.x5c_c00289{left:418.000000pt;}
.x28_c00289{left:420.266667pt;}
.x50_c00289{left:422.000000pt;}
.xb_c00289{left:423.600000pt;}
.x3f_c00289{left:429.733333pt;}
.x8f_c00289{left:430.800000pt;}
.x70_c00289{left:432.133333pt;}
.x54_c00289{left:434.000000pt;}
.xb4_c00289{left:435.600000pt;}
.x1f_c00289{left:437.866667pt;}
.x49_c00289{left:439.600000pt;}
.x8c_c00289{left:443.200000pt;}
.x56_c00289{left:444.266667pt;}
.x95_c00289{left:446.533333pt;}
.x73_c00289{left:447.733333pt;}
.xac_c00289{left:449.066667pt;}
.x89_c00289{left:450.666667pt;}
.xa2_c00289{left:452.933333pt;}
.xaf_c00289{left:459.333333pt;}
.xc_c00289{left:467.733333pt;}
.xcc_c00289{left:470.666667pt;}
.xf1_c00289{left:472.666667pt;}
.x132_c00289{left:477.733333pt;}
.x135_c00289{left:478.666667pt;}
.x148_c00289{left:479.733333pt;}
.x150_c00289{left:480.933333pt;}
.xb5_c00289{left:483.200000pt;}
.xbe_c00289{left:485.066667pt;}
.xd2_c00289{left:486.000000pt;}
.xf7_c00289{left:487.866667pt;}
.xfc_c00289{left:488.800000pt;}
.x106_c00289{left:489.733333pt;}
.x113_c00289{left:490.800000pt;}
.x126_c00289{left:491.866667pt;}
.x12c_c00289{left:493.333333pt;}
.x141_c00289{left:494.666667pt;}
.xea_c00289{left:496.933333pt;}
.xb7_c00289{left:502.133333pt;}
.xd_c00289{left:505.200000pt;}
.xf8_c00289{left:508.400000pt;}
.x10a_c00289{left:509.466667pt;}
.xcd_c00289{left:510.400000pt;}
.x156_c00289{left:514.000000pt;}
.xd3_c00289{left:515.466667pt;}
.xeb_c00289{left:516.400000pt;}
.xb6_c00289{left:518.133333pt;}
.xfd_c00289{left:519.200000pt;}
.x110_c00289{left:520.933333pt;}
.xd9_c00289{left:523.466667pt;}
.xe1_c00289{left:525.466667pt;}
.x142_c00289{left:528.533333pt;}
.x13e_c00289{left:530.133333pt;}
.xdd_c00289{left:532.800000pt;}
.xe_c00289{left:534.666667pt;}
.x120_c00289{left:536.400000pt;}
.x127_c00289{left:537.333333pt;}
.xd4_c00289{left:538.800000pt;}
.xb8_c00289{left:540.533333pt;}
.xc6_c00289{left:544.666667pt;}
.xed_c00289{left:547.200000pt;}
.xf2_c00289{left:548.133333pt;}
.xde_c00289{left:549.466667pt;}
.x137_c00289{left:550.800000pt;}
.x10e_c00289{left:552.800000pt;}
.x128_c00289{left:554.000000pt;}
.x111_c00289{left:556.133333pt;}
.x107_c00289{left:557.600000pt;}
.xbf_c00289{left:558.933333pt;}
.x12a_c00289{left:560.000000pt;}
.x103_c00289{left:565.333333pt;}
.x138_c00289{left:566.533333pt;}
.x117_c00289{left:568.266667pt;}
.xce_c00289{left:571.200000pt;}
.xf9_c00289{left:573.333333pt;}
.xfe_c00289{left:574.533333pt;}
.x121_c00289{left:575.466667pt;}
.x10b_c00289{left:578.000000pt;}
.x145_c00289{left:580.133333pt;}
.xe2_c00289{left:581.200000pt;}
.xdf_c00289{left:583.733333pt;}
.x129_c00289{left:584.666667pt;}
.x125_c00289{left:586.266667pt;}
.xb9_c00289{left:588.533333pt;}
.xda_c00289{left:590.666667pt;}
.xf3_c00289{left:591.600000pt;}
.xff_c00289{left:592.800000pt;}
.x108_c00289{left:594.400000pt;}
.x143_c00289{left:595.333333pt;}
.x118_c00289{left:596.800000pt;}
.x12d_c00289{left:600.000000pt;}
.xc0_c00289{left:602.400000pt;}
.x130_c00289{left:604.000000pt;}
.x151_c00289{left:604.933333pt;}
.xee_c00289{left:606.800000pt;}
.x157_c00289{left:608.533333pt;}
.xc7_c00289{left:611.600000pt;}
.xe0_c00289{left:612.533333pt;}
.x109_c00289{left:613.600000pt;}
.xf_c00289{left:616.000000pt;}
.x155_c00289{left:618.000000pt;}
.x11d_c00289{left:620.400000pt;}
.x104_c00289{left:622.000000pt;}
.x146_c00289{left:623.733333pt;}
.x123_c00289{left:624.666667pt;}
.x139_c00289{left:626.133333pt;}
.x112_c00289{left:628.800000pt;}
.xef_c00289{left:630.133333pt;}
.xd5_c00289{left:632.933333pt;}
.xe3_c00289{left:634.000000pt;}
.x13f_c00289{left:635.466667pt;}
.x14f_c00289{left:637.066667pt;}
.x10_c00289{left:638.133333pt;}
.x136_c00289{left:639.333333pt;}
.x114_c00289{left:641.466667pt;}
.x119_c00289{left:642.533333pt;}
.x100_c00289{left:645.600000pt;}
.x10c_c00289{left:647.466667pt;}
.xba_c00289{left:648.666667pt;}
.xf4_c00289{left:650.533333pt;}
.x13a_c00289{left:652.000000pt;}
.xdb_c00289{left:654.000000pt;}
.xc1_c00289{left:654.933333pt;}
.xfa_c00289{left:655.866667pt;}
.xc8_c00289{left:657.066667pt;}
.xf5_c00289{left:658.800000pt;}
.x133_c00289{left:661.066667pt;}
.xc2_c00289{left:662.266667pt;}
.x152_c00289{left:663.733333pt;}
.xbb_c00289{left:665.333333pt;}
.x115_c00289{left:666.400000pt;}
.xe4_c00289{left:667.333333pt;}
.x11e_c00289{left:672.533333pt;}
.xcf_c00289{left:673.600000pt;}
.x11_c00289{left:675.200000pt;}
.xd6_c00289{left:677.466667pt;}
.x105_c00289{left:680.533333pt;}
.xe5_c00289{left:681.466667pt;}
.x11a_c00289{left:682.800000pt;}
.xc9_c00289{left:684.000000pt;}
.x12e_c00289{left:687.066667pt;}
.x14a_c00289{left:690.533333pt;}
.xbc_c00289{left:691.600000pt;}
.xf6_c00289{left:694.000000pt;}
.x13b_c00289{left:694.933333pt;}
.xc3_c00289{left:696.133333pt;}
.xe6_c00289{left:699.333333pt;}
.x101_c00289{left:701.600000pt;}
.x11b_c00289{left:703.866667pt;}
.x131_c00289{left:706.400000pt;}
.xec_c00289{left:707.733333pt;}
.x14b_c00289{left:708.800000pt;}
.xe8_c00289{left:710.133333pt;}
.x10d_c00289{left:711.466667pt;}
.xc4_c00289{left:713.066667pt;}
.x147_c00289{left:714.933333pt;}
.xca_c00289{left:716.266667pt;}
.x14d_c00289{left:717.866667pt;}
.x149_c00289{left:720.400000pt;}
.x116_c00289{left:722.000000pt;}
.x11c_c00289{left:723.733333pt;}
.x153_c00289{left:725.466667pt;}
.xe7_c00289{left:727.466667pt;}
.x12f_c00289{left:729.066667pt;}
.xfb_c00289{left:730.400000pt;}
.xd0_c00289{left:731.733333pt;}
.xf0_c00289{left:734.133333pt;}
.x12_c00289{left:735.066667pt;}
.x134_c00289{left:736.000000pt;}
.xcb_c00289{left:737.733333pt;}
.x10f_c00289{left:740.133333pt;}
.x12b_c00289{left:741.066667pt;}
.xd7_c00289{left:742.133333pt;}
.x13_c00289{left:743.333333pt;}
.x124_c00289{left:744.666667pt;}
.xbd_c00289{left:745.600000pt;}
.xd1_c00289{left:747.066667pt;}
.xdc_c00289{left:748.133333pt;}
.x140_c00289{left:750.666667pt;}
.xc5_c00289{left:753.600000pt;}
.x144_c00289{left:756.666667pt;}
.xd8_c00289{left:758.133333pt;}
.x102_c00289{left:759.200000pt;}
.xe9_c00289{left:760.666667pt;}
.x11f_c00289{left:764.666667pt;}
.x122_c00289{left:765.866667pt;}
.x14c_c00289{left:766.800000pt;}
.x14e_c00289{left:768.400000pt;}
.x13c_c00289{left:770.133333pt;}
.x154_c00289{left:773.200000pt;}
.x13d_c00289{left:787.066667pt;}
}





/* 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_c00290 {
    display:none;
  }
  .loading-indicator_c00290.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00290 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_c00290 { 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_c00290" -> "#page-container .classname_c00290")
 */
.pf_c00290 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00290 { /* 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_c00290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00290 { /* 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_c00290 { /* 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_c00290 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00290 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00290 {overflow:visible;}
  }
}
.c_c00290 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00290 { /* 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_c00290:after { /* webkit #35443 */
  content: '';
}
.t_c00290:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00290 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 */
}
.__c00290 { /* 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_c00290 { /* info for Javascript */
  display:none;
}
.l_c00290 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00290 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00290 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00290: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_c00290 {
    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_c00290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00290.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_c00290 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00290;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.000000;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;}
.m7e_c00290{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00290{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.me8_c00290{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00290{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00290{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00290{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00290{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m24_c00290{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m118_c00290{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m90_c00290{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m39_c00290{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m19_c00290{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m67_c00290{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m74_c00290{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m88_c00290{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00290{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.maa_c00290{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00290{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m98_c00290{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00290{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00290{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m116_c00290{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00290{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m95_c00290{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mef_c00290{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m97_c00290{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mac_c00290{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m81_c00290{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m27_c00290{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8_c00290{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mea_c00290{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mca_c00290{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00290{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m34_c00290{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m73_c00290{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m99_c00290{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.md1_c00290{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m5_c00290{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00290{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m76_c00290{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m114_c00290{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m44_c00290{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m77_c00290{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m96_c00290{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m18_c00290{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m79_c00290{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00290{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m104_c00290{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m20_c00290{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m15_c00290{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m75_c00290{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00290{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00290{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m52_c00290{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me5_c00290{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00290{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00290{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m117_c00290{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00290{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.me7_c00290{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00290{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00290{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m68_c00290{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00290{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00290{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m11_c00290{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00290{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m33_c00290{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00290{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00290{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.med_c00290{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00290{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00290{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00290{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00290{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m83_c00290{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00290{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m17_c00290{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00290{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00290{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00290{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m43_c00290{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m22_c00290{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m45_c00290{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mba_c00290{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m10_c00290{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m113_c00290{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m82_c00290{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m115_c00290{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m40_c00290{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf_c00290{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md9_c00290{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00290{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00290{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00290{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m9_c00290{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00290{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00290{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m55_c00290{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md0_c00290{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00290{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00290{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md8_c00290{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc_c00290{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00290{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00290{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00290{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mff_c00290{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00290{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00290{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me4_c00290{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m110_c00290{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00290{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m32_c00290{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m29_c00290{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me0_c00290{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m71_c00290{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma_c00290{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md2_c00290{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00290{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00290{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m58_c00290{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00290{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m92_c00290{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m103_c00290{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00290{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00290{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00290{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.maf_c00290{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m42_c00290{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m47_c00290{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00290{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m78_c00290{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m60_c00290{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m49_c00290{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00290{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m69_c00290{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.md5_c00290{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m28_c00290{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m112_c00290{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m57_c00290{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00290{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m4_c00290{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m59_c00290{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.me1_c00290{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m26_c00290{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00290{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00290{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m87_c00290{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7_c00290{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m37_c00290{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00290{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00290{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m46_c00290{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00290{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m56_c00290{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m12_c00290{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md4_c00290{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00290{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md7_c00290{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00290{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00290{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00290{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mde_c00290{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3_c00290{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m91_c00290{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00290{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m72_c00290{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00290{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m54_c00290{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m31_c00290{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00290{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.md_c00290{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m35_c00290{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00290{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00290{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00290{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m53_c00290{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m14_c00290{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m61_c00290{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me2_c00290{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00290{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me3_c00290{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00290{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m70_c00290{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mee_c00290{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00290{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m23_c00290{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00290{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00290{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00290{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00290{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mab_c00290{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m111_c00290{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m62_c00290{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00290{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m13_c00290{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00290{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m63_c00290{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m51_c00290{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me_c00290{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m66_c00290{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.meb_c00290{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m50_c00290{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00290{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m86_c00290{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00290{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00290{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00290{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00290{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6_c00290{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m21_c00290{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m25_c00290{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00290{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m36_c00290{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00290{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m89_c00290{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m41_c00290{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2_c00290{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mce_c00290{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00290{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me6_c00290{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00290{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00290{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00290{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00290{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mec_c00290{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00290{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m80_c00290{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md3_c00290{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m64_c00290{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00290{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);}
.mc0_c00290{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m38_c00290{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m30_c00290{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00290{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m84_c00290{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m93_c00290{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me9_c00290{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00290{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00290{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m48_c00290{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00290{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m85_c00290{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00290{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00290{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00290{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00290{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00290{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00290{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.mad_c00290{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00290{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00290{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m109_c00290{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00290{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00290{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00290{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m105_c00290{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mae_c00290{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00290{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m16_c00290{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00290{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md6_c00290{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mda_c00290{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00290{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m65_c00290{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m101_c00290{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m100_c00290{transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);}
.m102_c00290{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00290{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.m108_c00290{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00290{transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);}
.m107_c00290{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00290{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.461250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00290{transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);}
.m106_c00290{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00290{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00290{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00290{transform:matrix(2.964000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.964000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.964000,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls0_c00290{letter-spacing:0.000000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{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__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:-9.285714px;}
.ws1_c00290{word-spacing:-2.564103px;}
.ws3_c00290{word-spacing:0.000000px;}
.ws2_c00290{word-spacing:200.750000px;}
.fc0_c00290{color:transparent;}
.fs7_c00290{font-size:18.000000px;}
.fs6_c00290{font-size:24.000000px;}
.fs5_c00290{font-size:30.000000px;}
.fs8_c00290{font-size:36.000000px;}
.fs3_c00290{font-size:60.000000px;}
.fs2_c00290{font-size:66.000000px;}
.fs4_c00290{font-size:72.000000px;}
.fs1_c00290{font-size:78.000000px;}
.fs0_c00290{font-size:84.000000px;}
.y0_c00290{bottom:0.000000px;}
.y37_c00290{bottom:12.300000px;}
.y6c_c00290{bottom:183.600000px;}
.y36_c00290{bottom:197.400000px;}
.y6b_c00290{bottom:198.750000px;}
.y35_c00290{bottom:216.150000px;}
.y6a_c00290{bottom:216.300000px;}
.y34_c00290{bottom:233.850000px;}
.y69_c00290{bottom:238.350000px;}
.y33_c00290{bottom:251.850000px;}
.y68_c00290{bottom:260.550000px;}
.y32_c00290{bottom:269.850000px;}
.y67_c00290{bottom:278.250000px;}
.y31_c00290{bottom:287.550000px;}
.y66_c00290{bottom:300.900000px;}
.y30_c00290{bottom:305.550000px;}
.y65_c00290{bottom:318.900000px;}
.y2f_c00290{bottom:323.550000px;}
.y63_c00290{bottom:336.600000px;}
.y2e_c00290{bottom:341.250000px;}
.y62_c00290{bottom:353.550000px;}
.y64_c00290{bottom:356.100000px;}
.y61_c00290{bottom:366.150000px;}
.y2d_c00290{bottom:367.500000px;}
.y60_c00290{bottom:382.950000px;}
.y2c_c00290{bottom:385.500000px;}
.y5f_c00290{bottom:392.700000px;}
.y2b_c00290{bottom:403.200000px;}
.y5e_c00290{bottom:419.400000px;}
.y2a_c00290{bottom:421.200000px;}
.y29_c00290{bottom:439.200000px;}
.y5d_c00290{bottom:453.900000px;}
.y28_c00290{bottom:457.200000px;}
.y27_c00290{bottom:479.100000px;}
.y5c_c00290{bottom:489.600000px;}
.y26_c00290{bottom:497.100000px;}
.y5b_c00290{bottom:507.600000px;}
.y25_c00290{bottom:514.800000px;}
.y5a_c00290{bottom:526.050000px;}
.y24_c00290{bottom:532.800000px;}
.y59_c00290{bottom:543.300000px;}
.y23_c00290{bottom:550.800000px;}
.y22_c00290{bottom:568.800000px;}
.y58_c00290{bottom:578.850000px;}
.y56_c00290{bottom:583.500000px;}
.y21_c00290{bottom:586.800000px;}
.y55_c00290{bottom:601.500000px;}
.y20_c00290{bottom:604.800000px;}
.y54_c00290{bottom:623.850000px;}
.y1f_c00290{bottom:625.800000px;}
.y53_c00290{bottom:642.150000px;}
.y1e_c00290{bottom:643.800000px;}
.y52_c00290{bottom:659.850000px;}
.y1d_c00290{bottom:661.800000px;}
.y51_c00290{bottom:677.550000px;}
.y1c_c00290{bottom:679.500000px;}
.y1b_c00290{bottom:697.500000px;}
.y50_c00290{bottom:699.300000px;}
.y1a_c00290{bottom:715.200000px;}
.y4f_c00290{bottom:717.300000px;}
.y19_c00290{bottom:733.200000px;}
.y4e_c00290{bottom:735.000000px;}
.y18_c00290{bottom:750.900000px;}
.y4d_c00290{bottom:752.700000px;}
.y17_c00290{bottom:768.900000px;}
.y4c_c00290{bottom:770.700000px;}
.y16_c00290{bottom:786.900000px;}
.y4b_c00290{bottom:788.700000px;}
.y15_c00290{bottom:804.900000px;}
.y4a_c00290{bottom:806.700000px;}
.y14_c00290{bottom:822.600000px;}
.y49_c00290{bottom:824.400000px;}
.y13_c00290{bottom:840.600000px;}
.y48_c00290{bottom:842.400000px;}
.y12_c00290{bottom:858.300000px;}
.y47_c00290{bottom:859.950000px;}
.y11_c00290{bottom:876.300000px;}
.y46_c00290{bottom:877.950000px;}
.y10_c00290{bottom:894.300000px;}
.y45_c00290{bottom:895.950000px;}
.yf_c00290{bottom:912.300000px;}
.y44_c00290{bottom:913.650000px;}
.ye_c00290{bottom:930.300000px;}
.y43_c00290{bottom:931.350000px;}
.yd_c00290{bottom:948.000000px;}
.y42_c00290{bottom:949.050000px;}
.yc_c00290{bottom:966.000000px;}
.y41_c00290{bottom:967.050000px;}
.yb_c00290{bottom:983.700000px;}
.y40_c00290{bottom:985.350000px;}
.ya_c00290{bottom:1001.400000px;}
.y3f_c00290{bottom:1002.600000px;}
.y9_c00290{bottom:1019.400000px;}
.y3e_c00290{bottom:1020.600000px;}
.y8_c00290{bottom:1037.400000px;}
.y3d_c00290{bottom:1041.150000px;}
.y57_c00290{bottom:1054.500000px;}
.y7_c00290{bottom:1055.100000px;}
.y3c_c00290{bottom:1055.550000px;}
.y3b_c00290{bottom:1069.950000px;}
.y6_c00290{bottom:1073.100000px;}
.y3a_c00290{bottom:1084.350000px;}
.y5_c00290{bottom:1090.800000px;}
.y39_c00290{bottom:1104.450000px;}
.y4_c00290{bottom:1108.800000px;}
.y3_c00290{bottom:1135.050000px;}
.y38_c00290{bottom:1136.100000px;}
.y2_c00290{bottom:1151.700000px;}
.y1_c00290{bottom:1153.500000px;}
.h9_c00290{height:18.000000px;}
.h8_c00290{height:24.000000px;}
.h7_c00290{height:30.000000px;}
.ha_c00290{height:36.000000px;}
.h5_c00290{height:60.000000px;}
.h4_c00290{height:66.000000px;}
.h6_c00290{height:72.000000px;}
.h3_c00290{height:78.000000px;}
.h2_c00290{height:84.000000px;}
.h1_c00290{height:1269.750000px;}
.h0_c00290{height:1270.080048px;}
.w1_c00290{width:961.500000px;}
.w0_c00290{width:961.560058px;}
.x0_c00290{left:0.000000px;}
.x3_c00290{left:76.650000px;}
.x80_c00290{left:88.500000px;}
.x59_c00290{left:90.000000px;}
.x9e_c00290{left:91.500000px;}
.x82_c00290{left:93.150000px;}
.x6_c00290{left:99.450000px;}
.x2a_c00290{left:100.650000px;}
.x44_c00290{left:102.750000px;}
.x52_c00290{left:103.800000px;}
.x5a_c00290{left:105.150000px;}
.x78_c00290{left:106.350000px;}
.x8e_c00290{left:107.850000px;}
.x98_c00290{left:108.900000px;}
.xa0_c00290{left:109.950000px;}
.xa8_c00290{left:112.050000px;}
.x3f_c00290{left:118.950000px;}
.x3a_c00290{left:121.050000px;}
.xa5_c00290{left:124.350000px;}
.x7_c00290{left:125.400000px;}
.x61_c00290{left:126.750000px;}
.x2b_c00290{left:129.150000px;}
.x9f_c00290{left:132.150000px;}
.x84_c00290{left:133.350000px;}
.x4d_c00290{left:135.150000px;}
.x2f_c00290{left:136.500000px;}
.x5b_c00290{left:139.350000px;}
.xf_c00290{left:142.050000px;}
.x5d_c00290{left:145.050000px;}
.x96_c00290{left:147.300000px;}
.x7c_c00290{left:148.950000px;}
.x53_c00290{left:150.300000px;}
.x1c_c00290{left:151.500000px;}
.x57_c00290{left:152.550000px;}
.x15_c00290{left:154.200000px;}
.xa6_c00290{left:156.750000px;}
.x8_c00290{left:158.100000px;}
.x62_c00290{left:159.150000px;}
.x6d_c00290{left:160.200000px;}
.x79_c00290{left:161.850000px;}
.x20_c00290{left:163.050000px;}
.x25_c00290{left:164.100000px;}
.x5e_c00290{left:166.350000px;}
.x4e_c00290{left:169.350000px;}
.x48_c00290{left:170.700000px;}
.x10_c00290{left:172.650000px;}
.x63_c00290{left:175.650000px;}
.x3b_c00290{left:177.900000px;}
.x91_c00290{left:179.100000px;}
.x89_c00290{left:181.950000px;}
.x2c_c00290{left:184.200000px;}
.x75_c00290{left:185.250000px;}
.x81_c00290{left:187.050000px;}
.x16_c00290{left:188.100000px;}
.x30_c00290{left:189.750000px;}
.x4f_c00290{left:191.250000px;}
.x58_c00290{left:192.900000px;}
.x9_c00290{left:195.900000px;}
.x69_c00290{left:200.700000px;}
.x9c_c00290{left:202.050000px;}
.x49_c00290{left:204.900000px;}
.x8a_c00290{left:207.150000px;}
.x40_c00290{left:209.550000px;}
.x66_c00290{left:210.750000px;}
.x26_c00290{left:211.950000px;}
.xa1_c00290{left:213.000000px;}
.x97_c00290{left:214.650000px;}
.x4_c00290{left:216.000000px;}
.x9d_c00290{left:217.200000px;}
.x5f_c00290{left:218.250000px;}
.x72_c00290{left:220.200000px;}
.xa_c00290{left:221.400000px;}
.x64_c00290{left:224.250000px;}
.x7d_c00290{left:225.600000px;}
.x54_c00290{left:228.450000px;}
.x21_c00290{left:229.650000px;}
.x11_c00290{left:232.650000px;}
.x4a_c00290{left:234.750000px;}
.x6e_c00290{left:236.850000px;}
.x50_c00290{left:238.050000px;}
.x85_c00290{left:241.050000px;}
.x5c_c00290{left:242.700000px;}
.xa7_c00290{left:243.900000px;}
.x7e_c00290{left:245.400000px;}
.x41_c00290{left:246.600000px;}
.x76_c00290{left:247.950000px;}
.x45_c00290{left:250.500000px;}
.x55_c00290{left:253.350000px;}
.x60_c00290{left:257.550000px;}
.x6a_c00290{left:260.100000px;}
.x42_c00290{left:262.050000px;}
.x7a_c00290{left:264.000000px;}
.x6f_c00290{left:266.400000px;}
.x35_c00290{left:267.750000px;}
.xb_c00290{left:269.700000px;}
.x6b_c00290{left:271.950000px;}
.x27_c00290{left:273.450000px;}
.x4b_c00290{left:275.400000px;}
.xa4_c00290{left:277.500000px;}
.x93_c00290{left:279.750000px;}
.x17_c00290{left:281.100000px;}
.x2d_c00290{left:283.200000px;}
.x28_c00290{left:285.300000px;}
.x31_c00290{left:287.550000px;}
.x12_c00290{left:289.200000px;}
.xa2_c00290{left:290.400000px;}
.x87_c00290{left:293.550000px;}
.x8b_c00290{left:295.050000px;}
.x86_c00290{left:297.150000px;}
.x36_c00290{left:298.650000px;}
.x18_c00290{left:301.650000px;}
.x46_c00290{left:303.450000px;}
.x32_c00290{left:304.800000px;}
.x3c_c00290{left:307.950000px;}
.x19_c00290{left:309.600000px;}
.x7f_c00290{left:310.950000px;}
.x73_c00290{left:313.350000px;}
.x37_c00290{left:314.850000px;}
.x77_c00290{left:316.350000px;}
.x56_c00290{left:319.650000px;}
.x70_c00290{left:321.900000px;}
.x1_c00290{left:322.950000px;}
.xc_c00290{left:324.450000px;}
.x43_c00290{left:330.150000px;}
.x3d_c00290{left:331.650000px;}
.x33_c00290{left:335.100000px;}
.x65_c00290{left:337.050000px;}
.x1d_c00290{left:340.200000px;}
.x83_c00290{left:341.400000px;}
.x67_c00290{left:342.600000px;}
.x22_c00290{left:343.800000px;}
.x92_c00290{left:345.450000px;}
.x2e_c00290{left:346.950000px;}
.x8c_c00290{left:348.000000px;}
.x9a_c00290{left:349.350000px;}
.xd_c00290{left:350.400000px;}
.x1a_c00290{left:352.800000px;}
.x23_c00290{left:354.900000px;}
.x29_c00290{left:357.750000px;}
.x8f_c00290{left:359.100000px;}
.x94_c00290{left:360.300000px;}
.x13_c00290{left:362.700000px;}
.x4c_c00290{left:364.500000px;}
.x38_c00290{left:366.300000px;}
.x68_c00290{left:368.550000px;}
.x1e_c00290{left:369.750000px;}
.x8d_c00290{left:371.100000px;}
.xe_c00290{left:372.750000px;}
.x1b_c00290{left:374.400000px;}
.x3e_c00290{left:375.600000px;}
.x39_c00290{left:378.150000px;}
.x47_c00290{left:380.850000px;}
.x14_c00290{left:382.500000px;}
.x90_c00290{left:383.550000px;}
.x5_c00290{left:384.900000px;}
.x95_c00290{left:386.250000px;}
.x99_c00290{left:387.900000px;}
.x1f_c00290{left:389.550000px;}
.x34_c00290{left:393.000000px;}
.x7b_c00290{left:395.550000px;}
.x24_c00290{left:400.200000px;}
.x71_c00290{left:402.450000px;}
.x51_c00290{left:405.450000px;}
.x88_c00290{left:406.800000px;}
.x6c_c00290{left:409.050000px;}
.x9b_c00290{left:416.550000px;}
.x74_c00290{left:420.450000px;}
.xa3_c00290{left:422.550000px;}
.xae_c00290{left:437.400000px;}
.xc9_c00290{left:438.450000px;}
.x11a_c00290{left:443.550000px;}
.x125_c00290{left:445.350000px;}
.x12f_c00290{left:446.400000px;}
.xa9_c00290{left:451.500000px;}
.xb6_c00290{left:454.500000px;}
.xce_c00290{left:456.000000px;}
.xe1_c00290{left:457.650000px;}
.xaa_c00290{left:458.700000px;}
.x102_c00290{left:459.750000px;}
.x11c_c00290{left:461.550000px;}
.x128_c00290{left:463.350000px;}
.x134_c00290{left:464.700000px;}
.xc5_c00290{left:465.900000px;}
.x132_c00290{left:466.950000px;}
.x126_c00290{left:476.250000px;}
.xdb_c00290{left:478.500000px;}
.xbf_c00290{left:480.300000px;}
.xaf_c00290{left:482.700000px;}
.x117_c00290{left:484.500000px;}
.x105_c00290{left:487.350000px;}
.xf4_c00290{left:490.950000px;}
.xfe_c00290{left:492.450000px;}
.xd5_c00290{left:493.650000px;}
.x10e_c00290{left:496.500000px;}
.x135_c00290{left:497.850000px;}
.xab_c00290{left:499.050000px;}
.xe7_c00290{left:500.850000px;}
.x111_c00290{left:503.250000px;}
.x118_c00290{left:505.800000px;}
.xf5_c00290{left:507.900000px;}
.x136_c00290{left:510.750000px;}
.xcf_c00290{left:511.800000px;}
.x11d_c00290{left:515.550000px;}
.x143_c00290{left:516.600000px;}
.xe2_c00290{left:519.900000px;}
.xac_c00290{left:520.950000px;}
.x106_c00290{left:522.600000px;}
.x114_c00290{left:526.050000px;}
.xca_c00290{left:527.700000px;}
.xc0_c00290{left:529.200000px;}
.xed_c00290{left:531.450000px;}
.x13a_c00290{left:533.550000px;}
.xfa_c00290{left:535.350000px;}
.x144_c00290{left:536.700000px;}
.x141_c00290{left:538.500000px;}
.xd0_c00290{left:539.850000px;}
.x107_c00290{left:543.150000px;}
.xe3_c00290{left:545.400000px;}
.xf0_c00290{left:547.350000px;}
.xb0_c00290{left:551.100000px;}
.x129_c00290{left:553.350000px;}
.x138_c00290{left:554.550000px;}
.x103_c00290{left:555.750000px;}
.xdc_c00290{left:557.700000px;}
.xe8_c00290{left:558.900000px;}
.x140_c00290{left:561.150000px;}
.xb8_c00290{left:562.650000px;}
.xff_c00290{left:565.500000px;}
.xe4_c00290{left:566.700000px;}
.x115_c00290{left:568.200000px;}
.xf1_c00290{left:570.000000px;}
.x137_c00290{left:571.950000px;}
.xd1_c00290{left:574.800000px;}
.x11b_c00290{left:577.500000px;}
.x13f_c00290{left:578.850000px;}
.xfb_c00290{left:580.650000px;}
.xe9_c00290{left:582.000000px;}
.x104_c00290{left:588.150000px;}
.xc1_c00290{left:589.650000px;}
.x10c_c00290{left:594.150000px;}
.xd6_c00290{left:595.200000px;}
.x142_c00290{left:596.400000px;}
.xd2_c00290{left:600.300000px;}
.xfc_c00290{left:604.050000px;}
.x108_c00290{left:605.100000px;}
.xcb_c00290{left:606.150000px;}
.xb9_c00290{left:607.350000px;}
.xc2_c00290{left:608.400000px;}
.xb7_c00290{left:610.350000px;}
.x124_c00290{left:611.700000px;}
.xf2_c00290{left:612.900000px;}
.x122_c00290{left:614.100000px;}
.xf6_c00290{left:615.150000px;}
.x139_c00290{left:617.250000px;}
.x116_c00290{left:618.900000px;}
.x12b_c00290{left:620.250000px;}
.x12e_c00290{left:621.300000px;}
.x13b_c00290{left:623.550000px;}
.xad_c00290{left:624.600000px;}
.xe5_c00290{left:628.650000px;}
.x13d_c00290{left:630.150000px;}
.x112_c00290{left:634.500000px;}
.xf3_c00290{left:635.550000px;}
.xf7_c00290{left:638.250000px;}
.xb1_c00290{left:640.350000px;}
.xdd_c00290{left:642.000000px;}
.xd3_c00290{left:643.200000px;}
.xcc_c00290{left:645.000000px;}
.x127_c00290{left:646.200000px;}
.x10d_c00290{left:647.700000px;}
.xfd_c00290{left:650.850000px;}
.xea_c00290{left:652.500000px;}
.x11f_c00290{left:654.300000px;}
.xf8_c00290{left:656.550000px;}
.xba_c00290{left:659.100000px;}
.xb2_c00290{left:660.150000px;}
.x10f_c00290{left:661.650000px;}
.xe6_c00290{left:665.700000px;}
.x11e_c00290{left:667.950000px;}
.xee_c00290{left:671.100000px;}
.xde_c00290{left:672.600000px;}
.x113_c00290{left:674.400000px;}
.x109_c00290{left:677.100000px;}
.xbb_c00290{left:678.600000px;}
.x120_c00290{left:683.100000px;}
.xd7_c00290{left:684.450000px;}
.xeb_c00290{left:687.750000px;}
.xcd_c00290{left:688.950000px;}
.x100_c00290{left:690.450000px;}
.x130_c00290{left:693.450000px;}
.xbc_c00290{left:694.500000px;}
.x10a_c00290{left:696.150000px;}
.x121_c00290{left:698.550000px;}
.xd9_c00290{left:699.600000px;}
.x119_c00290{left:701.700000px;}
.xc6_c00290{left:703.200000px;}
.xc3_c00290{left:705.000000px;}
.xb3_c00290{left:706.950000px;}
.xdf_c00290{left:708.900000px;}
.x12a_c00290{left:711.000000px;}
.x12c_c00290{left:712.500000px;}
.xb4_c00290{left:718.050000px;}
.xda_c00290{left:719.700000px;}
.xbd_c00290{left:725.100000px;}
.x12d_c00290{left:726.600000px;}
.x13c_c00290{left:728.250000px;}
.xc7_c00290{left:732.000000px;}
.xc4_c00290{left:733.050000px;}
.xc8_c00290{left:734.700000px;}
.xec_c00290{left:736.350000px;}
.x110_c00290{left:737.550000px;}
.xf9_c00290{left:738.900000px;}
.x2_c00290{left:745.650000px;}
.xd4_c00290{left:747.150000px;}
.xef_c00290{left:748.650000px;}
.x101_c00290{left:749.850000px;}
.xd8_c00290{left:751.050000px;}
.xe0_c00290{left:756.450000px;}
.x131_c00290{left:757.500000px;}
.xbe_c00290{left:759.000000px;}
.xb5_c00290{left:761.250000px;}
.x10b_c00290{left:766.650000px;}
.x13e_c00290{left:768.000000px;}
.x123_c00290{left:769.200000px;}
.x133_c00290{left:779.400000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:-8.253968pt;}
.ws1_c00290{word-spacing:-2.279202pt;}
.ws3_c00290{word-spacing:0.000000pt;}
.ws2_c00290{word-spacing:178.444444pt;}
.fs7_c00290{font-size:16.000000pt;}
.fs6_c00290{font-size:21.333333pt;}
.fs5_c00290{font-size:26.666667pt;}
.fs8_c00290{font-size:32.000000pt;}
.fs3_c00290{font-size:53.333333pt;}
.fs2_c00290{font-size:58.666667pt;}
.fs4_c00290{font-size:64.000000pt;}
.fs1_c00290{font-size:69.333333pt;}
.fs0_c00290{font-size:74.666667pt;}
.y0_c00290{bottom:0.000000pt;}
.y37_c00290{bottom:10.933333pt;}
.y6c_c00290{bottom:163.200000pt;}
.y36_c00290{bottom:175.466667pt;}
.y6b_c00290{bottom:176.666667pt;}
.y35_c00290{bottom:192.133333pt;}
.y6a_c00290{bottom:192.266667pt;}
.y34_c00290{bottom:207.866667pt;}
.y69_c00290{bottom:211.866667pt;}
.y33_c00290{bottom:223.866667pt;}
.y68_c00290{bottom:231.600000pt;}
.y32_c00290{bottom:239.866667pt;}
.y67_c00290{bottom:247.333333pt;}
.y31_c00290{bottom:255.600000pt;}
.y66_c00290{bottom:267.466667pt;}
.y30_c00290{bottom:271.600000pt;}
.y65_c00290{bottom:283.466667pt;}
.y2f_c00290{bottom:287.600000pt;}
.y63_c00290{bottom:299.200000pt;}
.y2e_c00290{bottom:303.333333pt;}
.y62_c00290{bottom:314.266667pt;}
.y64_c00290{bottom:316.533333pt;}
.y61_c00290{bottom:325.466667pt;}
.y2d_c00290{bottom:326.666667pt;}
.y60_c00290{bottom:340.400000pt;}
.y2c_c00290{bottom:342.666667pt;}
.y5f_c00290{bottom:349.066667pt;}
.y2b_c00290{bottom:358.400000pt;}
.y5e_c00290{bottom:372.800000pt;}
.y2a_c00290{bottom:374.400000pt;}
.y29_c00290{bottom:390.400000pt;}
.y5d_c00290{bottom:403.466667pt;}
.y28_c00290{bottom:406.400000pt;}
.y27_c00290{bottom:425.866667pt;}
.y5c_c00290{bottom:435.200000pt;}
.y26_c00290{bottom:441.866667pt;}
.y5b_c00290{bottom:451.200000pt;}
.y25_c00290{bottom:457.600000pt;}
.y5a_c00290{bottom:467.600000pt;}
.y24_c00290{bottom:473.600000pt;}
.y59_c00290{bottom:482.933333pt;}
.y23_c00290{bottom:489.600000pt;}
.y22_c00290{bottom:505.600000pt;}
.y58_c00290{bottom:514.533333pt;}
.y56_c00290{bottom:518.666667pt;}
.y21_c00290{bottom:521.600000pt;}
.y55_c00290{bottom:534.666667pt;}
.y20_c00290{bottom:537.600000pt;}
.y54_c00290{bottom:554.533333pt;}
.y1f_c00290{bottom:556.266667pt;}
.y53_c00290{bottom:570.800000pt;}
.y1e_c00290{bottom:572.266667pt;}
.y52_c00290{bottom:586.533333pt;}
.y1d_c00290{bottom:588.266667pt;}
.y51_c00290{bottom:602.266667pt;}
.y1c_c00290{bottom:604.000000pt;}
.y1b_c00290{bottom:620.000000pt;}
.y50_c00290{bottom:621.600000pt;}
.y1a_c00290{bottom:635.733333pt;}
.y4f_c00290{bottom:637.600000pt;}
.y19_c00290{bottom:651.733333pt;}
.y4e_c00290{bottom:653.333333pt;}
.y18_c00290{bottom:667.466667pt;}
.y4d_c00290{bottom:669.066667pt;}
.y17_c00290{bottom:683.466667pt;}
.y4c_c00290{bottom:685.066667pt;}
.y16_c00290{bottom:699.466667pt;}
.y4b_c00290{bottom:701.066667pt;}
.y15_c00290{bottom:715.466667pt;}
.y4a_c00290{bottom:717.066667pt;}
.y14_c00290{bottom:731.200000pt;}
.y49_c00290{bottom:732.800000pt;}
.y13_c00290{bottom:747.200000pt;}
.y48_c00290{bottom:748.800000pt;}
.y12_c00290{bottom:762.933333pt;}
.y47_c00290{bottom:764.400000pt;}
.y11_c00290{bottom:778.933333pt;}
.y46_c00290{bottom:780.400000pt;}
.y10_c00290{bottom:794.933333pt;}
.y45_c00290{bottom:796.400000pt;}
.yf_c00290{bottom:810.933333pt;}
.y44_c00290{bottom:812.133333pt;}
.ye_c00290{bottom:826.933333pt;}
.y43_c00290{bottom:827.866667pt;}
.yd_c00290{bottom:842.666667pt;}
.y42_c00290{bottom:843.600000pt;}
.yc_c00290{bottom:858.666667pt;}
.y41_c00290{bottom:859.600000pt;}
.yb_c00290{bottom:874.400000pt;}
.y40_c00290{bottom:875.866667pt;}
.ya_c00290{bottom:890.133333pt;}
.y3f_c00290{bottom:891.200000pt;}
.y9_c00290{bottom:906.133333pt;}
.y3e_c00290{bottom:907.200000pt;}
.y8_c00290{bottom:922.133333pt;}
.y3d_c00290{bottom:925.466667pt;}
.y57_c00290{bottom:937.333333pt;}
.y7_c00290{bottom:937.866667pt;}
.y3c_c00290{bottom:938.266667pt;}
.y3b_c00290{bottom:951.066667pt;}
.y6_c00290{bottom:953.866667pt;}
.y3a_c00290{bottom:963.866667pt;}
.y5_c00290{bottom:969.600000pt;}
.y39_c00290{bottom:981.733333pt;}
.y4_c00290{bottom:985.600000pt;}
.y3_c00290{bottom:1008.933333pt;}
.y38_c00290{bottom:1009.866667pt;}
.y2_c00290{bottom:1023.733333pt;}
.y1_c00290{bottom:1025.333333pt;}
.h9_c00290{height:16.000000pt;}
.h8_c00290{height:21.333333pt;}
.h7_c00290{height:26.666667pt;}
.ha_c00290{height:32.000000pt;}
.h5_c00290{height:53.333333pt;}
.h4_c00290{height:58.666667pt;}
.h6_c00290{height:64.000000pt;}
.h3_c00290{height:69.333333pt;}
.h2_c00290{height:74.666667pt;}
.h1_c00290{height:1128.666667pt;}
.h0_c00290{height:1128.960043pt;}
.w1_c00290{width:854.666667pt;}
.w0_c00290{width:854.720052pt;}
.x0_c00290{left:0.000000pt;}
.x3_c00290{left:68.133333pt;}
.x80_c00290{left:78.666667pt;}
.x59_c00290{left:80.000000pt;}
.x9e_c00290{left:81.333333pt;}
.x82_c00290{left:82.800000pt;}
.x6_c00290{left:88.400000pt;}
.x2a_c00290{left:89.466667pt;}
.x44_c00290{left:91.333333pt;}
.x52_c00290{left:92.266667pt;}
.x5a_c00290{left:93.466667pt;}
.x78_c00290{left:94.533333pt;}
.x8e_c00290{left:95.866667pt;}
.x98_c00290{left:96.800000pt;}
.xa0_c00290{left:97.733333pt;}
.xa8_c00290{left:99.600000pt;}
.x3f_c00290{left:105.733333pt;}
.x3a_c00290{left:107.600000pt;}
.xa5_c00290{left:110.533333pt;}
.x7_c00290{left:111.466667pt;}
.x61_c00290{left:112.666667pt;}
.x2b_c00290{left:114.800000pt;}
.x9f_c00290{left:117.466667pt;}
.x84_c00290{left:118.533333pt;}
.x4d_c00290{left:120.133333pt;}
.x2f_c00290{left:121.333333pt;}
.x5b_c00290{left:123.866667pt;}
.xf_c00290{left:126.266667pt;}
.x5d_c00290{left:128.933333pt;}
.x96_c00290{left:130.933333pt;}
.x7c_c00290{left:132.400000pt;}
.x53_c00290{left:133.600000pt;}
.x1c_c00290{left:134.666667pt;}
.x57_c00290{left:135.600000pt;}
.x15_c00290{left:137.066667pt;}
.xa6_c00290{left:139.333333pt;}
.x8_c00290{left:140.533333pt;}
.x62_c00290{left:141.466667pt;}
.x6d_c00290{left:142.400000pt;}
.x79_c00290{left:143.866667pt;}
.x20_c00290{left:144.933333pt;}
.x25_c00290{left:145.866667pt;}
.x5e_c00290{left:147.866667pt;}
.x4e_c00290{left:150.533333pt;}
.x48_c00290{left:151.733333pt;}
.x10_c00290{left:153.466667pt;}
.x63_c00290{left:156.133333pt;}
.x3b_c00290{left:158.133333pt;}
.x91_c00290{left:159.200000pt;}
.x89_c00290{left:161.733333pt;}
.x2c_c00290{left:163.733333pt;}
.x75_c00290{left:164.666667pt;}
.x81_c00290{left:166.266667pt;}
.x16_c00290{left:167.200000pt;}
.x30_c00290{left:168.666667pt;}
.x4f_c00290{left:170.000000pt;}
.x58_c00290{left:171.466667pt;}
.x9_c00290{left:174.133333pt;}
.x69_c00290{left:178.400000pt;}
.x9c_c00290{left:179.600000pt;}
.x49_c00290{left:182.133333pt;}
.x8a_c00290{left:184.133333pt;}
.x40_c00290{left:186.266667pt;}
.x66_c00290{left:187.333333pt;}
.x26_c00290{left:188.400000pt;}
.xa1_c00290{left:189.333333pt;}
.x97_c00290{left:190.800000pt;}
.x4_c00290{left:192.000000pt;}
.x9d_c00290{left:193.066667pt;}
.x5f_c00290{left:194.000000pt;}
.x72_c00290{left:195.733333pt;}
.xa_c00290{left:196.800000pt;}
.x64_c00290{left:199.333333pt;}
.x7d_c00290{left:200.533333pt;}
.x54_c00290{left:203.066667pt;}
.x21_c00290{left:204.133333pt;}
.x11_c00290{left:206.800000pt;}
.x4a_c00290{left:208.666667pt;}
.x6e_c00290{left:210.533333pt;}
.x50_c00290{left:211.600000pt;}
.x85_c00290{left:214.266667pt;}
.x5c_c00290{left:215.733333pt;}
.xa7_c00290{left:216.800000pt;}
.x7e_c00290{left:218.133333pt;}
.x41_c00290{left:219.200000pt;}
.x76_c00290{left:220.400000pt;}
.x45_c00290{left:222.666667pt;}
.x55_c00290{left:225.200000pt;}
.x60_c00290{left:228.933333pt;}
.x6a_c00290{left:231.200000pt;}
.x42_c00290{left:232.933333pt;}
.x7a_c00290{left:234.666667pt;}
.x6f_c00290{left:236.800000pt;}
.x35_c00290{left:238.000000pt;}
.xb_c00290{left:239.733333pt;}
.x6b_c00290{left:241.733333pt;}
.x27_c00290{left:243.066667pt;}
.x4b_c00290{left:244.800000pt;}
.xa4_c00290{left:246.666667pt;}
.x93_c00290{left:248.666667pt;}
.x17_c00290{left:249.866667pt;}
.x2d_c00290{left:251.733333pt;}
.x28_c00290{left:253.600000pt;}
.x31_c00290{left:255.600000pt;}
.x12_c00290{left:257.066667pt;}
.xa2_c00290{left:258.133333pt;}
.x87_c00290{left:260.933333pt;}
.x8b_c00290{left:262.266667pt;}
.x86_c00290{left:264.133333pt;}
.x36_c00290{left:265.466667pt;}
.x18_c00290{left:268.133333pt;}
.x46_c00290{left:269.733333pt;}
.x32_c00290{left:270.933333pt;}
.x3c_c00290{left:273.733333pt;}
.x19_c00290{left:275.200000pt;}
.x7f_c00290{left:276.400000pt;}
.x73_c00290{left:278.533333pt;}
.x37_c00290{left:279.866667pt;}
.x77_c00290{left:281.200000pt;}
.x56_c00290{left:284.133333pt;}
.x70_c00290{left:286.133333pt;}
.x1_c00290{left:287.066667pt;}
.xc_c00290{left:288.400000pt;}
.x43_c00290{left:293.466667pt;}
.x3d_c00290{left:294.800000pt;}
.x33_c00290{left:297.866667pt;}
.x65_c00290{left:299.600000pt;}
.x1d_c00290{left:302.400000pt;}
.x83_c00290{left:303.466667pt;}
.x67_c00290{left:304.533333pt;}
.x22_c00290{left:305.600000pt;}
.x92_c00290{left:307.066667pt;}
.x2e_c00290{left:308.400000pt;}
.x8c_c00290{left:309.333333pt;}
.x9a_c00290{left:310.533333pt;}
.xd_c00290{left:311.466667pt;}
.x1a_c00290{left:313.600000pt;}
.x23_c00290{left:315.466667pt;}
.x29_c00290{left:318.000000pt;}
.x8f_c00290{left:319.200000pt;}
.x94_c00290{left:320.266667pt;}
.x13_c00290{left:322.400000pt;}
.x4c_c00290{left:324.000000pt;}
.x38_c00290{left:325.600000pt;}
.x68_c00290{left:327.600000pt;}
.x1e_c00290{left:328.666667pt;}
.x8d_c00290{left:329.866667pt;}
.xe_c00290{left:331.333333pt;}
.x1b_c00290{left:332.800000pt;}
.x3e_c00290{left:333.866667pt;}
.x39_c00290{left:336.133333pt;}
.x47_c00290{left:338.533333pt;}
.x14_c00290{left:340.000000pt;}
.x90_c00290{left:340.933333pt;}
.x5_c00290{left:342.133333pt;}
.x95_c00290{left:343.333333pt;}
.x99_c00290{left:344.800000pt;}
.x1f_c00290{left:346.266667pt;}
.x34_c00290{left:349.333333pt;}
.x7b_c00290{left:351.600000pt;}
.x24_c00290{left:355.733333pt;}
.x71_c00290{left:357.733333pt;}
.x51_c00290{left:360.400000pt;}
.x88_c00290{left:361.600000pt;}
.x6c_c00290{left:363.600000pt;}
.x9b_c00290{left:370.266667pt;}
.x74_c00290{left:373.733333pt;}
.xa3_c00290{left:375.600000pt;}
.xae_c00290{left:388.800000pt;}
.xc9_c00290{left:389.733333pt;}
.x11a_c00290{left:394.266667pt;}
.x125_c00290{left:395.866667pt;}
.x12f_c00290{left:396.800000pt;}
.xa9_c00290{left:401.333333pt;}
.xb6_c00290{left:404.000000pt;}
.xce_c00290{left:405.333333pt;}
.xe1_c00290{left:406.800000pt;}
.xaa_c00290{left:407.733333pt;}
.x102_c00290{left:408.666667pt;}
.x11c_c00290{left:410.266667pt;}
.x128_c00290{left:411.866667pt;}
.x134_c00290{left:413.066667pt;}
.xc5_c00290{left:414.133333pt;}
.x132_c00290{left:415.066667pt;}
.x126_c00290{left:423.333333pt;}
.xdb_c00290{left:425.333333pt;}
.xbf_c00290{left:426.933333pt;}
.xaf_c00290{left:429.066667pt;}
.x117_c00290{left:430.666667pt;}
.x105_c00290{left:433.200000pt;}
.xf4_c00290{left:436.400000pt;}
.xfe_c00290{left:437.733333pt;}
.xd5_c00290{left:438.800000pt;}
.x10e_c00290{left:441.333333pt;}
.x135_c00290{left:442.533333pt;}
.xab_c00290{left:443.600000pt;}
.xe7_c00290{left:445.200000pt;}
.x111_c00290{left:447.333333pt;}
.x118_c00290{left:449.600000pt;}
.xf5_c00290{left:451.466667pt;}
.x136_c00290{left:454.000000pt;}
.xcf_c00290{left:454.933333pt;}
.x11d_c00290{left:458.266667pt;}
.x143_c00290{left:459.200000pt;}
.xe2_c00290{left:462.133333pt;}
.xac_c00290{left:463.066667pt;}
.x106_c00290{left:464.533333pt;}
.x114_c00290{left:467.600000pt;}
.xca_c00290{left:469.066667pt;}
.xc0_c00290{left:470.400000pt;}
.xed_c00290{left:472.400000pt;}
.x13a_c00290{left:474.266667pt;}
.xfa_c00290{left:475.866667pt;}
.x144_c00290{left:477.066667pt;}
.x141_c00290{left:478.666667pt;}
.xd0_c00290{left:479.866667pt;}
.x107_c00290{left:482.800000pt;}
.xe3_c00290{left:484.800000pt;}
.xf0_c00290{left:486.533333pt;}
.xb0_c00290{left:489.866667pt;}
.x129_c00290{left:491.866667pt;}
.x138_c00290{left:492.933333pt;}
.x103_c00290{left:494.000000pt;}
.xdc_c00290{left:495.733333pt;}
.xe8_c00290{left:496.800000pt;}
.x140_c00290{left:498.800000pt;}
.xb8_c00290{left:500.133333pt;}
.xff_c00290{left:502.666667pt;}
.xe4_c00290{left:503.733333pt;}
.x115_c00290{left:505.066667pt;}
.xf1_c00290{left:506.666667pt;}
.x137_c00290{left:508.400000pt;}
.xd1_c00290{left:510.933333pt;}
.x11b_c00290{left:513.333333pt;}
.x13f_c00290{left:514.533333pt;}
.xfb_c00290{left:516.133333pt;}
.xe9_c00290{left:517.333333pt;}
.x104_c00290{left:522.800000pt;}
.xc1_c00290{left:524.133333pt;}
.x10c_c00290{left:528.133333pt;}
.xd6_c00290{left:529.066667pt;}
.x142_c00290{left:530.133333pt;}
.xd2_c00290{left:533.600000pt;}
.xfc_c00290{left:536.933333pt;}
.x108_c00290{left:537.866667pt;}
.xcb_c00290{left:538.800000pt;}
.xb9_c00290{left:539.866667pt;}
.xc2_c00290{left:540.800000pt;}
.xb7_c00290{left:542.533333pt;}
.x124_c00290{left:543.733333pt;}
.xf2_c00290{left:544.800000pt;}
.x122_c00290{left:545.866667pt;}
.xf6_c00290{left:546.800000pt;}
.x139_c00290{left:548.666667pt;}
.x116_c00290{left:550.133333pt;}
.x12b_c00290{left:551.333333pt;}
.x12e_c00290{left:552.266667pt;}
.x13b_c00290{left:554.266667pt;}
.xad_c00290{left:555.200000pt;}
.xe5_c00290{left:558.800000pt;}
.x13d_c00290{left:560.133333pt;}
.x112_c00290{left:564.000000pt;}
.xf3_c00290{left:564.933333pt;}
.xf7_c00290{left:567.333333pt;}
.xb1_c00290{left:569.200000pt;}
.xdd_c00290{left:570.666667pt;}
.xd3_c00290{left:571.733333pt;}
.xcc_c00290{left:573.333333pt;}
.x127_c00290{left:574.400000pt;}
.x10d_c00290{left:575.733333pt;}
.xfd_c00290{left:578.533333pt;}
.xea_c00290{left:580.000000pt;}
.x11f_c00290{left:581.600000pt;}
.xf8_c00290{left:583.600000pt;}
.xba_c00290{left:585.866667pt;}
.xb2_c00290{left:586.800000pt;}
.x10f_c00290{left:588.133333pt;}
.xe6_c00290{left:591.733333pt;}
.x11e_c00290{left:593.733333pt;}
.xee_c00290{left:596.533333pt;}
.xde_c00290{left:597.866667pt;}
.x113_c00290{left:599.466667pt;}
.x109_c00290{left:601.866667pt;}
.xbb_c00290{left:603.200000pt;}
.x120_c00290{left:607.200000pt;}
.xd7_c00290{left:608.400000pt;}
.xeb_c00290{left:611.333333pt;}
.xcd_c00290{left:612.400000pt;}
.x100_c00290{left:613.733333pt;}
.x130_c00290{left:616.400000pt;}
.xbc_c00290{left:617.333333pt;}
.x10a_c00290{left:618.800000pt;}
.x121_c00290{left:620.933333pt;}
.xd9_c00290{left:621.866667pt;}
.x119_c00290{left:623.733333pt;}
.xc6_c00290{left:625.066667pt;}
.xc3_c00290{left:626.666667pt;}
.xb3_c00290{left:628.400000pt;}
.xdf_c00290{left:630.133333pt;}
.x12a_c00290{left:632.000000pt;}
.x12c_c00290{left:633.333333pt;}
.xb4_c00290{left:638.266667pt;}
.xda_c00290{left:639.733333pt;}
.xbd_c00290{left:644.533333pt;}
.x12d_c00290{left:645.866667pt;}
.x13c_c00290{left:647.333333pt;}
.xc7_c00290{left:650.666667pt;}
.xc4_c00290{left:651.600000pt;}
.xc8_c00290{left:653.066667pt;}
.xec_c00290{left:654.533333pt;}
.x110_c00290{left:655.600000pt;}
.xf9_c00290{left:656.800000pt;}
.x2_c00290{left:662.800000pt;}
.xd4_c00290{left:664.133333pt;}
.xef_c00290{left:665.466667pt;}
.x101_c00290{left:666.533333pt;}
.xd8_c00290{left:667.600000pt;}
.xe0_c00290{left:672.400000pt;}
.x131_c00290{left:673.333333pt;}
.xbe_c00290{left:674.666667pt;}
.xb5_c00290{left:676.666667pt;}
.x10b_c00290{left:681.466667pt;}
.x13e_c00290{left:682.666667pt;}
.x123_c00290{left:683.733333pt;}
.x133_c00290{left:692.800000pt;}
}





/* 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_c00291 {
    display:none;
  }
  .loading-indicator_c00291.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00291 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_c00291 { 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_c00291" -> "#page-container .classname_c00291")
 */
.pf_c00291 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00291 { /* 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_c00291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00291 { /* 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_c00291 { /* 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_c00291 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00291 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00291 {overflow:visible;}
  }
}
.c_c00291 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00291 { /* 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_c00291:after { /* webkit #35443 */
  content: '';
}
.t_c00291:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00291 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 */
}
.__c00291 { /* 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_c00291 { /* info for Javascript */
  display:none;
}
.l_c00291 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00291 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00291 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00291: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_c00291 {
    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_c00291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00291.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_c00291 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00291;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.000000;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;}
.m86_c00291{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m45_c00291{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m109_c00291{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00291{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.m108_c00291{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00291{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m97_c00291{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m83_c00291{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m4_c00291{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00291{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00291{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00291{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00291{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me7_c00291{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m107_c00291{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m114_c00291{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00291{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mad_c00291{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m41_c00291{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00291{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m127_c00291{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m5_c00291{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00291{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00291{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me9_c00291{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00291{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00291{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00291{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m125_c00291{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m20_c00291{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00291{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m57_c00291{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m13_c00291{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m47_c00291{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mda_c00291{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m19_c00291{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m39_c00291{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00291{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m44_c00291{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00291{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m14_c00291{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m27_c00291{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mef_c00291{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md8_c00291{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m59_c00291{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m69_c00291{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m89_c00291{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00291{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m46_c00291{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00291{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md_c00291{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m128_c00291{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.mf_c00291{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m71_c00291{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m50_c00291{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m98_c00291{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m23_c00291{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m31_c00291{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m70_c00291{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m129_c00291{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m115_c00291{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6_c00291{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00291{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00291{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.me6_c00291{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m124_c00291{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00291{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.me4_c00291{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md7_c00291{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00291{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m42_c00291{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me3_c00291{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00291{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m10_c00291{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me8_c00291{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m22_c00291{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00291{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00291{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m24_c00291{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md9_c00291{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00291{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md4_c00291{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00291{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m15_c00291{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m126_c00291{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m7_c00291{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m119_c00291{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00291{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m84_c00291{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00291{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m43_c00291{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md0_c00291{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me2_c00291{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00291{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2_c00291{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.md1_c00291{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00291{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00291{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m81_c00291{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00291{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mce_c00291{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me5_c00291{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md6_c00291{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00291{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00291{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mee_c00291{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m112_c00291{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00291{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m12_c00291{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m64_c00291{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m106_c00291{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m117_c00291{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00291{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00291{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00291{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.meb_c00291{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m25_c00291{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m37_c00291{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m78_c00291{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mde_c00291{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m72_c00291{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mea_c00291{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m93_c00291{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00291{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00291{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00291{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00291{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00291{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00291{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00291{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00291{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m52_c00291{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m32_c00291{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00291{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00291{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00291{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00291{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mba_c00291{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m11_c00291{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00291{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00291{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00291{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m26_c00291{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m67_c00291{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m40_c00291{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00291{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mff_c00291{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00291{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m53_c00291{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00291{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m99_c00291{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m33_c00291{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m121_c00291{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00291{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m113_c00291{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m34_c00291{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9_c00291{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8_c00291{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00291{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00291{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m30_c00291{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00291{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00291{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me0_c00291{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00291{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m28_c00291{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00291{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m123_c00291{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m122_c00291{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m38_c00291{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00291{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00291{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00291{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m56_c00291{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00291{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00291{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m77_c00291{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00291{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00291{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00291{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m111_c00291{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00291{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m62_c00291{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m21_c00291{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.med_c00291{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00291{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00291{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m118_c00291{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00291{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00291{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m16_c00291{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00291{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m61_c00291{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m91_c00291{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00291{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc_c00291{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m66_c00291{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m51_c00291{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m35_c00291{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m120_c00291{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00291{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m68_c00291{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00291{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00291{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00291{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00291{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00291{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m90_c00291{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md2_c00291{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m18_c00291{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00291{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m100_c00291{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mac_c00291{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00291{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m101_c00291{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00291{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m58_c00291{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00291{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00291{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mae_c00291{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00291{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb_c00291{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00291{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m116_c00291{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00291{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m49_c00291{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00291{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m103_c00291{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m76_c00291{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m73_c00291{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me_c00291{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m95_c00291{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);}
.md3_c00291{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00291{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma_c00291{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00291{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m92_c00291{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00291{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m55_c00291{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00291{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00291{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m63_c00291{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m75_c00291{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m60_c00291{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m65_c00291{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m105_c00291{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00291{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00291{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mec_c00291{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00291{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m54_c00291{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00291{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00291{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00291{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m110_c00291{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mab_c00291{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00291{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00291{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.maa_c00291{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m94_c00291{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00291{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00291{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00291{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00291{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m48_c00291{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.maf_c00291{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00291{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00291{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00291{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m36_c00291{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m74_c00291{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00291{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00291{transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00291{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00291{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00291{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m96_c00291{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00291{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m82_c00291{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md5_c00291{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m80_c00291{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00291{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00291{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00291{transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00291{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00291{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m29_c00291{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00291{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m79_c00291{transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00291{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.me1_c00291{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00291{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00291{transform:matrix(0.359000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359000,0.000000,0.000000,0.250000,0,0);}
.mca_c00291{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);}
.m85_c00291{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m88_c00291{transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);}
.m87_c00291{transform:matrix(0.460750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460750,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);}
.m104_c00291{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.m102_c00291{transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00291{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00291{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls0_c00291{letter-spacing:0.000000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{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__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00291{word-spacing:-15.777288px;}
.ws0_c00291{word-spacing:-12.947368px;}
.ws5_c00291{word-spacing:0.000000px;}
.ws3_c00291{word-spacing:1.470588px;}
.ws4_c00291{word-spacing:2.254777px;}
.ws1_c00291{word-spacing:2.382134px;}
.fc0_c00291{color:transparent;}
.fs7_c00291{font-size:42.000000px;}
.fs6_c00291{font-size:48.000000px;}
.fs5_c00291{font-size:54.000000px;}
.fs3_c00291{font-size:60.000000px;}
.fs4_c00291{font-size:66.000000px;}
.fs2_c00291{font-size:72.000000px;}
.fs0_c00291{font-size:78.000000px;}
.fs1_c00291{font-size:84.000000px;}
.y0_c00291{bottom:0.000000px;}
.y62_c00291{bottom:227.100000px;}
.y61_c00291{bottom:259.650000px;}
.y33_c00291{bottom:261.600000px;}
.y32_c00291{bottom:276.750000px;}
.y60_c00291{bottom:277.950000px;}
.y31_c00291{bottom:290.100000px;}
.y5f_c00291{bottom:295.500000px;}
.y30_c00291{bottom:304.500000px;}
.y5e_c00291{bottom:318.150000px;}
.y2f_c00291{bottom:318.900000px;}
.y2e_c00291{bottom:332.550000px;}
.y5d_c00291{bottom:336.150000px;}
.y2d_c00291{bottom:346.650000px;}
.y5c_c00291{bottom:353.850000px;}
.y2c_c00291{bottom:364.350000px;}
.y5b_c00291{bottom:372.150000px;}
.y2b_c00291{bottom:376.200000px;}
.y2a_c00291{bottom:388.800000px;}
.y5a_c00291{bottom:389.850000px;}
.y29_c00291{bottom:404.700000px;}
.y59_c00291{bottom:412.350000px;}
.y28_c00291{bottom:419.400000px;}
.y58_c00291{bottom:430.050000px;}
.y27_c00291{bottom:433.800000px;}
.y57_c00291{bottom:447.750000px;}
.y26_c00291{bottom:448.200000px;}
.y56_c00291{bottom:466.050000px;}
.y55_c00291{bottom:483.750000px;}
.y25_c00291{bottom:487.050000px;}
.y54_c00291{bottom:501.450000px;}
.y24_c00291{bottom:513.750000px;}
.y53_c00291{bottom:519.450000px;}
.y23_c00291{bottom:521.700000px;}
.y52_c00291{bottom:537.150000px;}
.y20_c00291{bottom:546.900000px;}
.y51_c00291{bottom:557.700000px;}
.y1f_c00291{bottom:568.350000px;}
.y50_c00291{bottom:577.800000px;}
.y1e_c00291{bottom:586.350000px;}
.y4f_c00291{bottom:595.800000px;}
.y1d_c00291{bottom:604.050000px;}
.y1c_c00291{bottom:622.050000px;}
.y4e_c00291{bottom:627.900000px;}
.y4d_c00291{bottom:635.400000px;}
.y4c_c00291{bottom:653.100000px;}
.y1b_c00291{bottom:657.000000px;}
.y22_c00291{bottom:657.300000px;}
.y4b_c00291{bottom:671.400000px;}
.y4a_c00291{bottom:689.100000px;}
.y1a_c00291{bottom:691.950000px;}
.y49_c00291{bottom:707.400000px;}
.y19_c00291{bottom:711.000000px;}
.y18_c00291{bottom:729.000000px;}
.y48_c00291{bottom:746.700000px;}
.y17_c00291{bottom:754.500000px;}
.y47_c00291{bottom:772.950000px;}
.y16_c00291{bottom:773.250000px;}
.y46_c00291{bottom:790.950000px;}
.y15_c00291{bottom:794.550000px;}
.y45_c00291{bottom:808.500000px;}
.y14_c00291{bottom:812.550000px;}
.y44_c00291{bottom:826.200000px;}
.y13_c00291{bottom:830.850000px;}
.y43_c00291{bottom:844.200000px;}
.y12_c00291{bottom:848.100000px;}
.y42_c00291{bottom:862.200000px;}
.y11_c00291{bottom:868.800000px;}
.y41_c00291{bottom:879.450000px;}
.y10_c00291{bottom:888.300000px;}
.y40_c00291{bottom:897.450000px;}
.yf_c00291{bottom:908.400000px;}
.y3f_c00291{bottom:915.900000px;}
.ye_c00291{bottom:928.500000px;}
.y3e_c00291{bottom:933.000000px;}
.yd_c00291{bottom:946.200000px;}
.y3d_c00291{bottom:951.000000px;}
.yc_c00291{bottom:964.200000px;}
.y3c_c00291{bottom:969.000000px;}
.yb_c00291{bottom:981.900000px;}
.y3b_c00291{bottom:986.700000px;}
.ya_c00291{bottom:999.900000px;}
.y3a_c00291{bottom:1004.400000px;}
.y9_c00291{bottom:1017.900000px;}
.y39_c00291{bottom:1022.400000px;}
.y8_c00291{bottom:1039.800000px;}
.y7_c00291{bottom:1057.500000px;}
.y38_c00291{bottom:1057.800000px;}
.y37_c00291{bottom:1075.050000px;}
.y6_c00291{bottom:1075.200000px;}
.y5_c00291{bottom:1092.900000px;}
.y36_c00291{bottom:1093.050000px;}
.y4_c00291{bottom:1110.900000px;}
.y35_c00291{bottom:1111.050000px;}
.y34_c00291{bottom:1128.300000px;}
.y3_c00291{bottom:1128.600000px;}
.y21_c00291{bottom:1141.500000px;}
.y1_c00291{bottom:1149.150000px;}
.y2_c00291{bottom:1155.300000px;}
.h9_c00291{height:42.000000px;}
.h8_c00291{height:48.000000px;}
.h7_c00291{height:54.000000px;}
.h5_c00291{height:60.000000px;}
.h6_c00291{height:66.000000px;}
.h4_c00291{height:72.000000px;}
.h2_c00291{height:78.000000px;}
.h3_c00291{height:84.000000px;}
.h1_c00291{height:1267.500000px;}
.h0_c00291{height:1267.559967px;}
.w1_c00291{width:961.500000px;}
.w0_c00291{width:961.560058px;}
.x0_c00291{left:0.000000px;}
.x9d_c00291{left:171.150000px;}
.x9f_c00291{left:172.650000px;}
.x86_c00291{left:173.700000px;}
.x72_c00291{left:177.150000px;}
.x6a_c00291{left:179.250000px;}
.x66_c00291{left:180.750000px;}
.x4e_c00291{left:182.100000px;}
.x49_c00291{left:183.450000px;}
.x28_c00291{left:186.300000px;}
.x94_c00291{left:188.250000px;}
.x1_c00291{left:190.050000px;}
.x46_c00291{left:191.850000px;}
.x7e_c00291{left:194.400000px;}
.x6d_c00291{left:196.200000px;}
.xa4_c00291{left:197.250000px;}
.x59_c00291{left:199.500000px;}
.x4d_c00291{left:200.850000px;}
.x47_c00291{left:201.900000px;}
.x8a_c00291{left:203.250000px;}
.x23_c00291{left:204.300000px;}
.x39_c00291{left:205.350000px;}
.x8_c00291{left:206.700000px;}
.x95_c00291{left:209.850000px;}
.x7f_c00291{left:212.100000px;}
.x75_c00291{left:213.150000px;}
.x74_c00291{left:214.350000px;}
.x35_c00291{left:215.700000px;}
.x5f_c00291{left:219.150000px;}
.x90_c00291{left:221.100000px;}
.x2e_c00291{left:223.350000px;}
.x3_c00291{left:224.700000px;}
.x48_c00291{left:226.350000px;}
.xf_c00291{left:227.400000px;}
.x29_c00291{left:231.300000px;}
.x8b_c00291{left:232.800000px;}
.x87_c00291{left:233.850000px;}
.x82_c00291{left:235.650000px;}
.x6e_c00291{left:237.900000px;}
.x70_c00291{left:239.400000px;}
.x41_c00291{left:241.350000px;}
.x4f_c00291{left:242.550000px;}
.x53_c00291{left:244.050000px;}
.x3a_c00291{left:248.250000px;}
.x67_c00291{left:250.650000px;}
.x78_c00291{left:253.200000px;}
.x24_c00291{left:255.000000px;}
.x6f_c00291{left:257.400000px;}
.x71_c00291{left:260.250000px;}
.x9b_c00291{left:261.750000px;}
.x4_c00291{left:264.000000px;}
.x60_c00291{left:266.250000px;}
.x1d_c00291{left:267.300000px;}
.x8c_c00291{left:268.800000px;}
.x18_c00291{left:271.200000px;}
.x80_c00291{left:273.000000px;}
.x5a_c00291{left:274.050000px;}
.xa0_c00291{left:275.400000px;}
.x54_c00291{left:276.450000px;}
.x10_c00291{left:278.100000px;}
.x50_c00291{left:279.600000px;}
.x1e_c00291{left:281.700000px;}
.x68_c00291{left:283.350000px;}
.x9_c00291{left:284.850000px;}
.x2f_c00291{left:286.650000px;}
.x76_c00291{left:288.750000px;}
.x42_c00291{left:289.950000px;}
.x19_c00291{left:291.750000px;}
.x4a_c00291{left:294.000000px;}
.x61_c00291{left:295.050000px;}
.x3b_c00291{left:296.550000px;}
.x96_c00291{left:299.550000px;}
.x77_c00291{left:301.650000px;}
.x9c_c00291{left:303.150000px;}
.x65_c00291{left:304.950000px;}
.x30_c00291{left:307.200000px;}
.x83_c00291{left:311.250000px;}
.x51_c00291{left:312.750000px;}
.x11_c00291{left:313.800000px;}
.x79_c00291{left:317.700000px;}
.x8d_c00291{left:319.500000px;}
.x88_c00291{left:324.150000px;}
.x55_c00291{left:325.350000px;}
.x1f_c00291{left:326.400000px;}
.x2a_c00291{left:328.500000px;}
.x43_c00291{left:332.100000px;}
.x3c_c00291{left:335.400000px;}
.x1a_c00291{left:337.050000px;}
.x6b_c00291{left:338.100000px;}
.x84_c00291{left:340.050000px;}
.xa5_c00291{left:342.900000px;}
.xa_c00291{left:343.950000px;}
.x5b_c00291{left:345.000000px;}
.x91_c00291{left:347.250000px;}
.x12_c00291{left:348.750000px;}
.x31_c00291{left:350.100000px;}
.xa7_c00291{left:351.450000px;}
.x56_c00291{left:352.950000px;}
.x5_c00291{left:355.050000px;}
.x92_c00291{left:357.000000px;}
.x62_c00291{left:358.050000px;}
.x97_c00291{left:359.250000px;}
.x3d_c00291{left:360.900000px;}
.x36_c00291{left:361.950000px;}
.x6_c00291{left:365.100000px;}
.xb_c00291{left:366.300000px;}
.x1b_c00291{left:367.350000px;}
.x13_c00291{left:368.550000px;}
.x44_c00291{left:370.200000px;}
.x2b_c00291{left:372.450000px;}
.x5c_c00291{left:373.500000px;}
.x52_c00291{left:376.200000px;}
.x7a_c00291{left:377.400000px;}
.x8e_c00291{left:378.600000px;}
.x2c_c00291{left:381.750000px;}
.xa2_c00291{left:383.100000px;}
.x25_c00291{left:384.900000px;}
.x7_c00291{left:386.400000px;}
.xa8_c00291{left:390.300000px;}
.x14_c00291{left:391.650000px;}
.x98_c00291{left:393.150000px;}
.x6c_c00291{left:397.500000px;}
.xa9_c00291{left:400.800000px;}
.x57_c00291{left:401.850000px;}
.xc_c00291{left:403.350000px;}
.x37_c00291{left:404.400000px;}
.x85_c00291{left:411.750000px;}
.x3e_c00291{left:415.650000px;}
.x20_c00291{left:418.050000px;}
.x32_c00291{left:419.550000px;}
.x4b_c00291{left:421.500000px;}
.x7b_c00291{left:423.900000px;}
.xa6_c00291{left:425.250000px;}
.x15_c00291{left:427.350000px;}
.x2_c00291{left:429.450000px;}
.xa1_c00291{left:433.350000px;}
.x89_c00291{left:438.600000px;}
.x63_c00291{left:440.550000px;}
.x81_c00291{left:442.500000px;}
.x21_c00291{left:444.000000px;}
.x1c_c00291{left:446.250000px;}
.x73_c00291{left:447.300000px;}
.x3f_c00291{left:450.150000px;}
.x93_c00291{left:451.950000px;}
.x26_c00291{left:453.300000px;}
.xa3_c00291{left:454.800000px;}
.x5d_c00291{left:456.000000px;}
.x8f_c00291{left:457.800000px;}
.x33_c00291{left:460.200000px;}
.x38_c00291{left:461.250000px;}
.x99_c00291{left:465.450000px;}
.xd_c00291{left:467.850000px;}
.x9e_c00291{left:469.950000px;}
.x16_c00291{left:473.100000px;}
.x40_c00291{left:475.050000px;}
.x7c_c00291{left:476.400000px;}
.x2d_c00291{left:478.200000px;}
.x34_c00291{left:481.050000px;}
.x22_c00291{left:482.550000px;}
.x64_c00291{left:483.750000px;}
.xe_c00291{left:485.550000px;}
.x4c_c00291{left:487.350000px;}
.x149_c00291{left:488.550000px;}
.x58_c00291{left:490.350000px;}
.x69_c00291{left:491.400000px;}
.x9a_c00291{left:495.000000px;}
.x17_c00291{left:496.500000px;}
.x27_c00291{left:499.800000px;}
.x5e_c00291{left:506.400000px;}
.x45_c00291{left:509.250000px;}
.x7d_c00291{left:517.650000px;}
.x145_c00291{left:529.200000px;}
.x13a_c00291{left:531.750000px;}
.x121_c00291{left:533.850000px;}
.x11a_c00291{left:534.900000px;}
.x107_c00291{left:537.450000px;}
.x146_c00291{left:546.150000px;}
.x141_c00291{left:548.400000px;}
.x13f_c00291{left:549.450000px;}
.x11d_c00291{left:550.800000px;}
.x10c_c00291{left:552.750000px;}
.xfa_c00291{left:554.100000px;}
.xf5_c00291{left:556.650000px;}
.xd5_c00291{left:558.750000px;}
.xb8_c00291{left:560.250000px;}
.xaa_c00291{left:561.300000px;}
.x140_c00291{left:567.150000px;}
.x142_c00291{left:569.250000px;}
.x126_c00291{left:571.950000px;}
.x105_c00291{left:573.150000px;}
.xf0_c00291{left:574.950000px;}
.xec_c00291{left:576.300000px;}
.xcf_c00291{left:577.500000px;}
.xe4_c00291{left:579.900000px;}
.x11e_c00291{left:582.150000px;}
.xe7_c00291{left:587.100000px;}
.x117_c00291{left:589.950000px;}
.x13b_c00291{left:591.150000px;}
.x135_c00291{left:592.200000px;}
.xfb_c00291{left:594.000000px;}
.xc4_c00291{left:596.400000px;}
.xab_c00291{left:598.050000px;}
.xcb_c00291{left:599.850000px;}
.xe1_c00291{left:601.950000px;}
.x106_c00291{left:604.800000px;}
.x100_c00291{left:606.600000px;}
.xda_c00291{left:607.950000px;}
.xb9_c00291{left:609.150000px;}
.x136_c00291{left:611.700000px;}
.xd6_c00291{left:612.750000px;}
.xee_c00291{left:614.100000px;}
.xf6_c00291{left:616.350000px;}
.xbf_c00291{left:618.300000px;}
.xb2_c00291{left:619.650000px;}
.xf1_c00291{left:620.700000px;}
.x122_c00291{left:622.050000px;}
.x12c_c00291{left:624.900000px;}
.xe8_c00291{left:625.950000px;}
.x12f_c00291{left:627.000000px;}
.xac_c00291{left:628.950000px;}
.x120_c00291{left:631.200000px;}
.xba_c00291{left:634.650000px;}
.xc5_c00291{left:636.750000px;}
.xd0_c00291{left:639.000000px;}
.x10d_c00291{left:640.950000px;}
.x131_c00291{left:642.150000px;}
.x11f_c00291{left:643.350000px;}
.x113_c00291{left:645.000000px;}
.xe9_c00291{left:647.550000px;}
.x147_c00291{left:650.250000px;}
.xfc_c00291{left:655.200000px;}
.xb3_c00291{left:662.550000px;}
.xe5_c00291{left:663.750000px;}
.xbb_c00291{left:666.750000px;}
.x13c_c00291{left:669.600000px;}
.xad_c00291{left:671.100000px;}
.xf7_c00291{left:672.450000px;}
.xdb_c00291{left:673.800000px;}
.xc0_c00291{left:674.850000px;}
.x12d_c00291{left:676.050000px;}
.x111_c00291{left:677.250000px;}
.x127_c00291{left:680.700000px;}
.x137_c00291{left:683.250000px;}
.x10e_c00291{left:687.000000px;}
.x114_c00291{left:689.700000px;}
.x109_c00291{left:691.050000px;}
.xcc_c00291{left:692.100000px;}
.xf8_c00291{left:694.050000px;}
.xb4_c00291{left:695.250000px;}
.x112_c00291{left:697.800000px;}
.xae_c00291{left:699.900000px;}
.xe2_c00291{left:701.250000px;}
.xea_c00291{left:706.200000px;}
.x10f_c00291{left:708.900000px;}
.xc1_c00291{left:711.900000px;}
.x103_c00291{left:713.550000px;}
.xef_c00291{left:714.900000px;}
.x12a_c00291{left:718.200000px;}
.xd1_c00291{left:719.250000px;}
.xf2_c00291{left:720.450000px;}
.xd7_c00291{left:721.800000px;}
.xeb_c00291{left:724.200000px;}
.x101_c00291{left:725.700000px;}
.xdc_c00291{left:726.750000px;}
.x132_c00291{left:727.800000px;}
.xb5_c00291{left:729.150000px;}
.xd2_c00291{left:730.350000px;}
.xc6_c00291{left:732.900000px;}
.xf3_c00291{left:734.850000px;}
.x11b_c00291{left:736.950000px;}
.xe6_c00291{left:741.900000px;}
.xc7_c00291{left:744.000000px;}
.xc2_c00291{left:745.800000px;}
.x123_c00291{left:749.850000px;}
.x104_c00291{left:754.200000px;}
.x10a_c00291{left:756.900000px;}
.xe3_c00291{left:758.850000px;}
.xbc_c00291{left:760.350000px;}
.xcd_c00291{left:762.000000px;}
.xdd_c00291{left:764.250000px;}
.xd8_c00291{left:767.850000px;}
.x139_c00291{left:769.800000px;}
.x144_c00291{left:770.850000px;}
.x13d_c00291{left:771.900000px;}
.xaf_c00291{left:772.950000px;}
.x118_c00291{left:774.300000px;}
.xbd_c00291{left:776.250000px;}
.x133_c00291{left:777.900000px;}
.x102_c00291{left:780.450000px;}
.x115_c00291{left:781.500000px;}
.x128_c00291{left:783.000000px;}
.xc8_c00291{left:784.650000px;}
.xd9_c00291{left:789.750000px;}
.xfd_c00291{left:790.800000px;}
.x12e_c00291{left:792.300000px;}
.x124_c00291{left:794.100000px;}
.xd3_c00291{left:795.900000px;}
.xc3_c00291{left:796.950000px;}
.x10b_c00291{left:799.350000px;}
.xce_c00291{left:804.000000px;}
.xde_c00291{left:805.350000px;}
.xfe_c00291{left:806.700000px;}
.x138_c00291{left:807.900000px;}
.x11c_c00291{left:808.950000px;}
.xbe_c00291{left:810.150000px;}
.x108_c00291{left:811.800000px;}
.x129_c00291{left:813.300000px;}
.x13e_c00291{left:815.850000px;}
.xc9_c00291{left:817.350000px;}
.xb6_c00291{left:819.150000px;}
.xed_c00291{left:821.700000px;}
.xf9_c00291{left:823.050000px;}
.xb0_c00291{left:826.650000px;}
.xdf_c00291{left:829.500000px;}
.xb7_c00291{left:831.000000px;}
.x110_c00291{left:832.800000px;}
.x134_c00291{left:835.200000px;}
.xff_c00291{left:836.550000px;}
.xf4_c00291{left:838.200000px;}
.xd4_c00291{left:839.850000px;}
.x148_c00291{left:841.350000px;}
.xca_c00291{left:842.550000px;}
.x116_c00291{left:843.750000px;}
.x12b_c00291{left:846.750000px;}
.x125_c00291{left:847.800000px;}
.x119_c00291{left:848.850000px;}
.xb1_c00291{left:851.850000px;}
.xe0_c00291{left:852.900000px;}
.x143_c00291{left:857.250000px;}
.x130_c00291{left:859.200000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws2_c00291{word-spacing:-14.024256pt;}
.ws0_c00291{word-spacing:-11.508772pt;}
.ws5_c00291{word-spacing:0.000000pt;}
.ws3_c00291{word-spacing:1.307190pt;}
.ws4_c00291{word-spacing:2.004246pt;}
.ws1_c00291{word-spacing:2.117452pt;}
.fs7_c00291{font-size:37.333333pt;}
.fs6_c00291{font-size:42.666667pt;}
.fs5_c00291{font-size:48.000000pt;}
.fs3_c00291{font-size:53.333333pt;}
.fs4_c00291{font-size:58.666667pt;}
.fs2_c00291{font-size:64.000000pt;}
.fs0_c00291{font-size:69.333333pt;}
.fs1_c00291{font-size:74.666667pt;}
.y0_c00291{bottom:0.000000pt;}
.y62_c00291{bottom:201.866667pt;}
.y61_c00291{bottom:230.800000pt;}
.y33_c00291{bottom:232.533333pt;}
.y32_c00291{bottom:246.000000pt;}
.y60_c00291{bottom:247.066667pt;}
.y31_c00291{bottom:257.866667pt;}
.y5f_c00291{bottom:262.666667pt;}
.y30_c00291{bottom:270.666667pt;}
.y5e_c00291{bottom:282.800000pt;}
.y2f_c00291{bottom:283.466667pt;}
.y2e_c00291{bottom:295.600000pt;}
.y5d_c00291{bottom:298.800000pt;}
.y2d_c00291{bottom:308.133333pt;}
.y5c_c00291{bottom:314.533333pt;}
.y2c_c00291{bottom:323.866667pt;}
.y5b_c00291{bottom:330.800000pt;}
.y2b_c00291{bottom:334.400000pt;}
.y2a_c00291{bottom:345.600000pt;}
.y5a_c00291{bottom:346.533333pt;}
.y29_c00291{bottom:359.733333pt;}
.y59_c00291{bottom:366.533333pt;}
.y28_c00291{bottom:372.800000pt;}
.y58_c00291{bottom:382.266667pt;}
.y27_c00291{bottom:385.600000pt;}
.y57_c00291{bottom:398.000000pt;}
.y26_c00291{bottom:398.400000pt;}
.y56_c00291{bottom:414.266667pt;}
.y55_c00291{bottom:430.000000pt;}
.y25_c00291{bottom:432.933333pt;}
.y54_c00291{bottom:445.733333pt;}
.y24_c00291{bottom:456.666667pt;}
.y53_c00291{bottom:461.733333pt;}
.y23_c00291{bottom:463.733333pt;}
.y52_c00291{bottom:477.466667pt;}
.y20_c00291{bottom:486.133333pt;}
.y51_c00291{bottom:495.733333pt;}
.y1f_c00291{bottom:505.200000pt;}
.y50_c00291{bottom:513.600000pt;}
.y1e_c00291{bottom:521.200000pt;}
.y4f_c00291{bottom:529.600000pt;}
.y1d_c00291{bottom:536.933333pt;}
.y1c_c00291{bottom:552.933333pt;}
.y4e_c00291{bottom:558.133333pt;}
.y4d_c00291{bottom:564.800000pt;}
.y4c_c00291{bottom:580.533333pt;}
.y1b_c00291{bottom:584.000000pt;}
.y22_c00291{bottom:584.266667pt;}
.y4b_c00291{bottom:596.800000pt;}
.y4a_c00291{bottom:612.533333pt;}
.y1a_c00291{bottom:615.066667pt;}
.y49_c00291{bottom:628.800000pt;}
.y19_c00291{bottom:632.000000pt;}
.y18_c00291{bottom:648.000000pt;}
.y48_c00291{bottom:663.733333pt;}
.y17_c00291{bottom:670.666667pt;}
.y47_c00291{bottom:687.066667pt;}
.y16_c00291{bottom:687.333333pt;}
.y46_c00291{bottom:703.066667pt;}
.y15_c00291{bottom:706.266667pt;}
.y45_c00291{bottom:718.666667pt;}
.y14_c00291{bottom:722.266667pt;}
.y44_c00291{bottom:734.400000pt;}
.y13_c00291{bottom:738.533333pt;}
.y43_c00291{bottom:750.400000pt;}
.y12_c00291{bottom:753.866667pt;}
.y42_c00291{bottom:766.400000pt;}
.y11_c00291{bottom:772.266667pt;}
.y41_c00291{bottom:781.733333pt;}
.y10_c00291{bottom:789.600000pt;}
.y40_c00291{bottom:797.733333pt;}
.yf_c00291{bottom:807.466667pt;}
.y3f_c00291{bottom:814.133333pt;}
.ye_c00291{bottom:825.333333pt;}
.y3e_c00291{bottom:829.333333pt;}
.yd_c00291{bottom:841.066667pt;}
.y3d_c00291{bottom:845.333333pt;}
.yc_c00291{bottom:857.066667pt;}
.y3c_c00291{bottom:861.333333pt;}
.yb_c00291{bottom:872.800000pt;}
.y3b_c00291{bottom:877.066667pt;}
.ya_c00291{bottom:888.800000pt;}
.y3a_c00291{bottom:892.800000pt;}
.y9_c00291{bottom:904.800000pt;}
.y39_c00291{bottom:908.800000pt;}
.y8_c00291{bottom:924.266667pt;}
.y7_c00291{bottom:940.000000pt;}
.y38_c00291{bottom:940.266667pt;}
.y37_c00291{bottom:955.600000pt;}
.y6_c00291{bottom:955.733333pt;}
.y5_c00291{bottom:971.466667pt;}
.y36_c00291{bottom:971.600000pt;}
.y4_c00291{bottom:987.466667pt;}
.y35_c00291{bottom:987.600000pt;}
.y34_c00291{bottom:1002.933333pt;}
.y3_c00291{bottom:1003.200000pt;}
.y21_c00291{bottom:1014.666667pt;}
.y1_c00291{bottom:1021.466667pt;}
.y2_c00291{bottom:1026.933333pt;}
.h9_c00291{height:37.333333pt;}
.h8_c00291{height:42.666667pt;}
.h7_c00291{height:48.000000pt;}
.h5_c00291{height:53.333333pt;}
.h6_c00291{height:58.666667pt;}
.h4_c00291{height:64.000000pt;}
.h2_c00291{height:69.333333pt;}
.h3_c00291{height:74.666667pt;}
.h1_c00291{height:1126.666667pt;}
.h0_c00291{height:1126.719971pt;}
.w1_c00291{width:854.666667pt;}
.w0_c00291{width:854.720052pt;}
.x0_c00291{left:0.000000pt;}
.x9d_c00291{left:152.133333pt;}
.x9f_c00291{left:153.466667pt;}
.x86_c00291{left:154.400000pt;}
.x72_c00291{left:157.466667pt;}
.x6a_c00291{left:159.333333pt;}
.x66_c00291{left:160.666667pt;}
.x4e_c00291{left:161.866667pt;}
.x49_c00291{left:163.066667pt;}
.x28_c00291{left:165.600000pt;}
.x94_c00291{left:167.333333pt;}
.x1_c00291{left:168.933333pt;}
.x46_c00291{left:170.533333pt;}
.x7e_c00291{left:172.800000pt;}
.x6d_c00291{left:174.400000pt;}
.xa4_c00291{left:175.333333pt;}
.x59_c00291{left:177.333333pt;}
.x4d_c00291{left:178.533333pt;}
.x47_c00291{left:179.466667pt;}
.x8a_c00291{left:180.666667pt;}
.x23_c00291{left:181.600000pt;}
.x39_c00291{left:182.533333pt;}
.x8_c00291{left:183.733333pt;}
.x95_c00291{left:186.533333pt;}
.x7f_c00291{left:188.533333pt;}
.x75_c00291{left:189.466667pt;}
.x74_c00291{left:190.533333pt;}
.x35_c00291{left:191.733333pt;}
.x5f_c00291{left:194.800000pt;}
.x90_c00291{left:196.533333pt;}
.x2e_c00291{left:198.533333pt;}
.x3_c00291{left:199.733333pt;}
.x48_c00291{left:201.200000pt;}
.xf_c00291{left:202.133333pt;}
.x29_c00291{left:205.600000pt;}
.x8b_c00291{left:206.933333pt;}
.x87_c00291{left:207.866667pt;}
.x82_c00291{left:209.466667pt;}
.x6e_c00291{left:211.466667pt;}
.x70_c00291{left:212.800000pt;}
.x41_c00291{left:214.533333pt;}
.x4f_c00291{left:215.600000pt;}
.x53_c00291{left:216.933333pt;}
.x3a_c00291{left:220.666667pt;}
.x67_c00291{left:222.800000pt;}
.x78_c00291{left:225.066667pt;}
.x24_c00291{left:226.666667pt;}
.x6f_c00291{left:228.800000pt;}
.x71_c00291{left:231.333333pt;}
.x9b_c00291{left:232.666667pt;}
.x4_c00291{left:234.666667pt;}
.x60_c00291{left:236.666667pt;}
.x1d_c00291{left:237.600000pt;}
.x8c_c00291{left:238.933333pt;}
.x18_c00291{left:241.066667pt;}
.x80_c00291{left:242.666667pt;}
.x5a_c00291{left:243.600000pt;}
.xa0_c00291{left:244.800000pt;}
.x54_c00291{left:245.733333pt;}
.x10_c00291{left:247.200000pt;}
.x50_c00291{left:248.533333pt;}
.x1e_c00291{left:250.400000pt;}
.x68_c00291{left:251.866667pt;}
.x9_c00291{left:253.200000pt;}
.x2f_c00291{left:254.800000pt;}
.x76_c00291{left:256.666667pt;}
.x42_c00291{left:257.733333pt;}
.x19_c00291{left:259.333333pt;}
.x4a_c00291{left:261.333333pt;}
.x61_c00291{left:262.266667pt;}
.x3b_c00291{left:263.600000pt;}
.x96_c00291{left:266.266667pt;}
.x77_c00291{left:268.133333pt;}
.x9c_c00291{left:269.466667pt;}
.x65_c00291{left:271.066667pt;}
.x30_c00291{left:273.066667pt;}
.x83_c00291{left:276.666667pt;}
.x51_c00291{left:278.000000pt;}
.x11_c00291{left:278.933333pt;}
.x79_c00291{left:282.400000pt;}
.x8d_c00291{left:284.000000pt;}
.x88_c00291{left:288.133333pt;}
.x55_c00291{left:289.200000pt;}
.x1f_c00291{left:290.133333pt;}
.x2a_c00291{left:292.000000pt;}
.x43_c00291{left:295.200000pt;}
.x3c_c00291{left:298.133333pt;}
.x1a_c00291{left:299.600000pt;}
.x6b_c00291{left:300.533333pt;}
.x84_c00291{left:302.266667pt;}
.xa5_c00291{left:304.800000pt;}
.xa_c00291{left:305.733333pt;}
.x5b_c00291{left:306.666667pt;}
.x91_c00291{left:308.666667pt;}
.x12_c00291{left:310.000000pt;}
.x31_c00291{left:311.200000pt;}
.xa7_c00291{left:312.400000pt;}
.x56_c00291{left:313.733333pt;}
.x5_c00291{left:315.600000pt;}
.x92_c00291{left:317.333333pt;}
.x62_c00291{left:318.266667pt;}
.x97_c00291{left:319.333333pt;}
.x3d_c00291{left:320.800000pt;}
.x36_c00291{left:321.733333pt;}
.x6_c00291{left:324.533333pt;}
.xb_c00291{left:325.600000pt;}
.x1b_c00291{left:326.533333pt;}
.x13_c00291{left:327.600000pt;}
.x44_c00291{left:329.066667pt;}
.x2b_c00291{left:331.066667pt;}
.x5c_c00291{left:332.000000pt;}
.x52_c00291{left:334.400000pt;}
.x7a_c00291{left:335.466667pt;}
.x8e_c00291{left:336.533333pt;}
.x2c_c00291{left:339.333333pt;}
.xa2_c00291{left:340.533333pt;}
.x25_c00291{left:342.133333pt;}
.x7_c00291{left:343.466667pt;}
.xa8_c00291{left:346.933333pt;}
.x14_c00291{left:348.133333pt;}
.x98_c00291{left:349.466667pt;}
.x6c_c00291{left:353.333333pt;}
.xa9_c00291{left:356.266667pt;}
.x57_c00291{left:357.200000pt;}
.xc_c00291{left:358.533333pt;}
.x37_c00291{left:359.466667pt;}
.x85_c00291{left:366.000000pt;}
.x3e_c00291{left:369.466667pt;}
.x20_c00291{left:371.600000pt;}
.x32_c00291{left:372.933333pt;}
.x4b_c00291{left:374.666667pt;}
.x7b_c00291{left:376.800000pt;}
.xa6_c00291{left:378.000000pt;}
.x15_c00291{left:379.866667pt;}
.x2_c00291{left:381.733333pt;}
.xa1_c00291{left:385.200000pt;}
.x89_c00291{left:389.866667pt;}
.x63_c00291{left:391.600000pt;}
.x81_c00291{left:393.333333pt;}
.x21_c00291{left:394.666667pt;}
.x1c_c00291{left:396.666667pt;}
.x73_c00291{left:397.600000pt;}
.x3f_c00291{left:400.133333pt;}
.x93_c00291{left:401.733333pt;}
.x26_c00291{left:402.933333pt;}
.xa3_c00291{left:404.266667pt;}
.x5d_c00291{left:405.333333pt;}
.x8f_c00291{left:406.933333pt;}
.x33_c00291{left:409.066667pt;}
.x38_c00291{left:410.000000pt;}
.x99_c00291{left:413.733333pt;}
.xd_c00291{left:415.866667pt;}
.x9e_c00291{left:417.733333pt;}
.x16_c00291{left:420.533333pt;}
.x40_c00291{left:422.266667pt;}
.x7c_c00291{left:423.466667pt;}
.x2d_c00291{left:425.066667pt;}
.x34_c00291{left:427.600000pt;}
.x22_c00291{left:428.933333pt;}
.x64_c00291{left:430.000000pt;}
.xe_c00291{left:431.600000pt;}
.x4c_c00291{left:433.200000pt;}
.x149_c00291{left:434.266667pt;}
.x58_c00291{left:435.866667pt;}
.x69_c00291{left:436.800000pt;}
.x9a_c00291{left:440.000000pt;}
.x17_c00291{left:441.333333pt;}
.x27_c00291{left:444.266667pt;}
.x5e_c00291{left:450.133333pt;}
.x45_c00291{left:452.666667pt;}
.x7d_c00291{left:460.133333pt;}
.x145_c00291{left:470.400000pt;}
.x13a_c00291{left:472.666667pt;}
.x121_c00291{left:474.533333pt;}
.x11a_c00291{left:475.466667pt;}
.x107_c00291{left:477.733333pt;}
.x146_c00291{left:485.466667pt;}
.x141_c00291{left:487.466667pt;}
.x13f_c00291{left:488.400000pt;}
.x11d_c00291{left:489.600000pt;}
.x10c_c00291{left:491.333333pt;}
.xfa_c00291{left:492.533333pt;}
.xf5_c00291{left:494.800000pt;}
.xd5_c00291{left:496.666667pt;}
.xb8_c00291{left:498.000000pt;}
.xaa_c00291{left:498.933333pt;}
.x140_c00291{left:504.133333pt;}
.x142_c00291{left:506.000000pt;}
.x126_c00291{left:508.400000pt;}
.x105_c00291{left:509.466667pt;}
.xf0_c00291{left:511.066667pt;}
.xec_c00291{left:512.266667pt;}
.xcf_c00291{left:513.333333pt;}
.xe4_c00291{left:515.466667pt;}
.x11e_c00291{left:517.466667pt;}
.xe7_c00291{left:521.866667pt;}
.x117_c00291{left:524.400000pt;}
.x13b_c00291{left:525.466667pt;}
.x135_c00291{left:526.400000pt;}
.xfb_c00291{left:528.000000pt;}
.xc4_c00291{left:530.133333pt;}
.xab_c00291{left:531.600000pt;}
.xcb_c00291{left:533.200000pt;}
.xe1_c00291{left:535.066667pt;}
.x106_c00291{left:537.600000pt;}
.x100_c00291{left:539.200000pt;}
.xda_c00291{left:540.400000pt;}
.xb9_c00291{left:541.466667pt;}
.x136_c00291{left:543.733333pt;}
.xd6_c00291{left:544.666667pt;}
.xee_c00291{left:545.866667pt;}
.xf6_c00291{left:547.866667pt;}
.xbf_c00291{left:549.600000pt;}
.xb2_c00291{left:550.800000pt;}
.xf1_c00291{left:551.733333pt;}
.x122_c00291{left:552.933333pt;}
.x12c_c00291{left:555.466667pt;}
.xe8_c00291{left:556.400000pt;}
.x12f_c00291{left:557.333333pt;}
.xac_c00291{left:559.066667pt;}
.x120_c00291{left:561.066667pt;}
.xba_c00291{left:564.133333pt;}
.xc5_c00291{left:566.000000pt;}
.xd0_c00291{left:568.000000pt;}
.x10d_c00291{left:569.733333pt;}
.x131_c00291{left:570.800000pt;}
.x11f_c00291{left:571.866667pt;}
.x113_c00291{left:573.333333pt;}
.xe9_c00291{left:575.600000pt;}
.x147_c00291{left:578.000000pt;}
.xfc_c00291{left:582.400000pt;}
.xb3_c00291{left:588.933333pt;}
.xe5_c00291{left:590.000000pt;}
.xbb_c00291{left:592.666667pt;}
.x13c_c00291{left:595.200000pt;}
.xad_c00291{left:596.533333pt;}
.xf7_c00291{left:597.733333pt;}
.xdb_c00291{left:598.933333pt;}
.xc0_c00291{left:599.866667pt;}
.x12d_c00291{left:600.933333pt;}
.x111_c00291{left:602.000000pt;}
.x127_c00291{left:605.066667pt;}
.x137_c00291{left:607.333333pt;}
.x10e_c00291{left:610.666667pt;}
.x114_c00291{left:613.066667pt;}
.x109_c00291{left:614.266667pt;}
.xcc_c00291{left:615.200000pt;}
.xf8_c00291{left:616.933333pt;}
.xb4_c00291{left:618.000000pt;}
.x112_c00291{left:620.266667pt;}
.xae_c00291{left:622.133333pt;}
.xe2_c00291{left:623.333333pt;}
.xea_c00291{left:627.733333pt;}
.x10f_c00291{left:630.133333pt;}
.xc1_c00291{left:632.800000pt;}
.x103_c00291{left:634.266667pt;}
.xef_c00291{left:635.466667pt;}
.x12a_c00291{left:638.400000pt;}
.xd1_c00291{left:639.333333pt;}
.xf2_c00291{left:640.400000pt;}
.xd7_c00291{left:641.600000pt;}
.xeb_c00291{left:643.733333pt;}
.x101_c00291{left:645.066667pt;}
.xdc_c00291{left:646.000000pt;}
.x132_c00291{left:646.933333pt;}
.xb5_c00291{left:648.133333pt;}
.xd2_c00291{left:649.200000pt;}
.xc6_c00291{left:651.466667pt;}
.xf3_c00291{left:653.200000pt;}
.x11b_c00291{left:655.066667pt;}
.xe6_c00291{left:659.466667pt;}
.xc7_c00291{left:661.333333pt;}
.xc2_c00291{left:662.933333pt;}
.x123_c00291{left:666.533333pt;}
.x104_c00291{left:670.400000pt;}
.x10a_c00291{left:672.800000pt;}
.xe3_c00291{left:674.533333pt;}
.xbc_c00291{left:675.866667pt;}
.xcd_c00291{left:677.333333pt;}
.xdd_c00291{left:679.333333pt;}
.xd8_c00291{left:682.533333pt;}
.x139_c00291{left:684.266667pt;}
.x144_c00291{left:685.200000pt;}
.x13d_c00291{left:686.133333pt;}
.xaf_c00291{left:687.066667pt;}
.x118_c00291{left:688.266667pt;}
.xbd_c00291{left:690.000000pt;}
.x133_c00291{left:691.466667pt;}
.x102_c00291{left:693.733333pt;}
.x115_c00291{left:694.666667pt;}
.x128_c00291{left:696.000000pt;}
.xc8_c00291{left:697.466667pt;}
.xd9_c00291{left:702.000000pt;}
.xfd_c00291{left:702.933333pt;}
.x12e_c00291{left:704.266667pt;}
.x124_c00291{left:705.866667pt;}
.xd3_c00291{left:707.466667pt;}
.xc3_c00291{left:708.400000pt;}
.x10b_c00291{left:710.533333pt;}
.xce_c00291{left:714.666667pt;}
.xde_c00291{left:715.866667pt;}
.xfe_c00291{left:717.066667pt;}
.x138_c00291{left:718.133333pt;}
.x11c_c00291{left:719.066667pt;}
.xbe_c00291{left:720.133333pt;}
.x108_c00291{left:721.600000pt;}
.x129_c00291{left:722.933333pt;}
.x13e_c00291{left:725.200000pt;}
.xc9_c00291{left:726.533333pt;}
.xb6_c00291{left:728.133333pt;}
.xed_c00291{left:730.400000pt;}
.xf9_c00291{left:731.600000pt;}
.xb0_c00291{left:734.800000pt;}
.xdf_c00291{left:737.333333pt;}
.xb7_c00291{left:738.666667pt;}
.x110_c00291{left:740.266667pt;}
.x134_c00291{left:742.400000pt;}
.xff_c00291{left:743.600000pt;}
.xf4_c00291{left:745.066667pt;}
.xd4_c00291{left:746.533333pt;}
.x148_c00291{left:747.866667pt;}
.xca_c00291{left:748.933333pt;}
.x116_c00291{left:750.000000pt;}
.x12b_c00291{left:752.666667pt;}
.x125_c00291{left:753.600000pt;}
.x119_c00291{left:754.533333pt;}
.xb1_c00291{left:757.200000pt;}
.xe0_c00291{left:758.133333pt;}
.x143_c00291{left:762.000000pt;}
.x130_c00291{left:763.733333pt;}
}





/* 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_c00292 {
    display:none;
  }
  .loading-indicator_c00292.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00292 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_c00292 { 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_c00292" -> "#page-container .classname_c00292")
 */
.pf_c00292 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00292 { /* 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_c00292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00292 { /* 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_c00292 { /* 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_c00292 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00292 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00292 {overflow:visible;}
  }
}
.c_c00292 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00292 { /* 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_c00292:after { /* webkit #35443 */
  content: '';
}
.t_c00292:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00292 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 */
}
.__c00292 { /* 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_c00292 { /* info for Javascript */
  display:none;
}
.l_c00292 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00292 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00292 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00292: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_c00292 {
    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_c00292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00292.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_c00292 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00292;src:url('chunks/assets/font_939242d5f6d3873aaa85e13c.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00292{transform:matrix(0.022750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022750,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m3_c00292{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m5_c00292{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m7_c00292{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4_c00292{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m6_c00292{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls0_c00292{letter-spacing:0.000000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{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__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00292{word-spacing:0.000000px;}
.fc0_c00292{color:transparent;}
.fs1_c00292{font-size:60.000000px;}
.fs2_c00292{font-size:126.000000px;}
.fs0_c00292{font-size:246.000000px;}
.y0_c00292{bottom:0.000000px;}
.y3_c00292{bottom:717.150000px;}
.y2_c00292{bottom:779.700000px;}
.y1_c00292{bottom:830.550000px;}
.h3_c00292{height:60.000000px;}
.h4_c00292{height:126.000000px;}
.h2_c00292{height:246.000000px;}
.h0_c00292{height:1270.440033px;}
.h1_c00292{height:1270.500000px;}
.w1_c00292{width:961.500000px;}
.w0_c00292{width:961.560058px;}
.x0_c00292{left:0.000000px;}
.x3_c00292{left:77.100000px;}
.x4_c00292{left:98.400000px;}
.x1_c00292{left:285.450000px;}
.x5_c00292{left:331.650000px;}
.x6_c00292{left:402.900000px;}
.x2_c00292{left:450.300000px;}
.x7_c00292{left:546.150000px;}
.x8_c00292{left:602.700000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:0.000000pt;}
.fs1_c00292{font-size:53.333333pt;}
.fs2_c00292{font-size:112.000000pt;}
.fs0_c00292{font-size:218.666667pt;}
.y0_c00292{bottom:0.000000pt;}
.y3_c00292{bottom:637.466667pt;}
.y2_c00292{bottom:693.066667pt;}
.y1_c00292{bottom:738.266667pt;}
.h3_c00292{height:53.333333pt;}
.h4_c00292{height:112.000000pt;}
.h2_c00292{height:218.666667pt;}
.h0_c00292{height:1129.280029pt;}
.h1_c00292{height:1129.333333pt;}
.w1_c00292{width:854.666667pt;}
.w0_c00292{width:854.720052pt;}
.x0_c00292{left:0.000000pt;}
.x3_c00292{left:68.533333pt;}
.x4_c00292{left:87.466667pt;}
.x1_c00292{left:253.733333pt;}
.x5_c00292{left:294.800000pt;}
.x6_c00292{left:358.133333pt;}
.x2_c00292{left:400.266667pt;}
.x7_c00292{left:485.466667pt;}
.x8_c00292{left:535.733333pt;}
}





/* 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_c00293 {
    display:none;
  }
  .loading-indicator_c00293.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00293 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_c00293 { 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_c00293" -> "#page-container .classname_c00293")
 */
.pf_c00293 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00293 { /* 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_c00293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00293 { /* 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_c00293 { /* 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_c00293 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00293 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00293 {overflow:visible;}
  }
}
.c_c00293 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00293 { /* 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_c00293:after { /* webkit #35443 */
  content: '';
}
.t_c00293:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00293 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 */
}
.__c00293 { /* 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_c00293 { /* info for Javascript */
  display:none;
}
.l_c00293 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00293 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00293 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00293: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_c00293 {
    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_c00293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00293.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_c00293 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00293;src:url('chunks/assets/font_e5d142d65758e43414ac09bb.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.000000;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_c00293{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m4_c00293{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5_c00293{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00293{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m7_c00293{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m8_c00293{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m3_c00293{transform:matrix(0.671000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671000,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m6_c00293{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls0_c00293{letter-spacing:0.000000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{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__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:0.000000px;}
.fc0_c00293{color:transparent;}
.fs1_c00293{font-size:12.000000px;}
.fs0_c00293{font-size:48.000000px;}
.y0_c00293{bottom:0.000000px;}
.y6_c00293{bottom:1.350000px;}
.y4_c00293{bottom:1.500000px;}
.y7_c00293{bottom:1.650000px;}
.y2_c00293{bottom:1.800000px;}
.y8_c00293{bottom:1.950000px;}
.y5_c00293{bottom:2.100000px;}
.y3_c00293{bottom:2.850000px;}
.y1_c00293{bottom:5.100000px;}
.h3_c00293{height:12.000000px;}
.h2_c00293{height:48.000000px;}
.h1_c00293{height:1266.750000px;}
.h0_c00293{height:1266.839905px;}
.w1_c00293{width:961.500000px;}
.w0_c00293{width:961.560058px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:231.150000px;}
.x2_c00293{left:751.350000px;}
.x3_c00293{left:777.900000px;}
.x4_c00293{left:784.350000px;}
.x5_c00293{left:846.750000px;}
.x6_c00293{left:862.200000px;}
.x7_c00293{left:886.650000px;}
.x8_c00293{left:908.550000px;}
.x9_c00293{left:921.450000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:0.000000pt;}
.fs1_c00293{font-size:10.666667pt;}
.fs0_c00293{font-size:42.666667pt;}
.y0_c00293{bottom:0.000000pt;}
.y6_c00293{bottom:1.200000pt;}
.y4_c00293{bottom:1.333333pt;}
.y7_c00293{bottom:1.466667pt;}
.y2_c00293{bottom:1.600000pt;}
.y8_c00293{bottom:1.733333pt;}
.y5_c00293{bottom:1.866667pt;}
.y3_c00293{bottom:2.533333pt;}
.y1_c00293{bottom:4.533333pt;}
.h3_c00293{height:10.666667pt;}
.h2_c00293{height:42.666667pt;}
.h1_c00293{height:1126.000000pt;}
.h0_c00293{height:1126.079916pt;}
.w1_c00293{width:854.666667pt;}
.w0_c00293{width:854.720052pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:205.466667pt;}
.x2_c00293{left:667.866667pt;}
.x3_c00293{left:691.466667pt;}
.x4_c00293{left:697.200000pt;}
.x5_c00293{left:752.666667pt;}
.x6_c00293{left:766.400000pt;}
.x7_c00293{left:788.133333pt;}
.x8_c00293{left:807.600000pt;}
.x9_c00293{left:819.066667pt;}
}





/* 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_c00294 {
    display:none;
  }
  .loading-indicator_c00294.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00294 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_c00294 { 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_c00294" -> "#page-container .classname_c00294")
 */
.pf_c00294 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00294 { /* 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_c00294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00294 { /* 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_c00294 { /* 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_c00294 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00294 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00294 {overflow:visible;}
  }
}
.c_c00294 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00294 { /* 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_c00294:after { /* webkit #35443 */
  content: '';
}
.t_c00294:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00294 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 */
}
.__c00294 { /* 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_c00294 { /* info for Javascript */
  display:none;
}
.l_c00294 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00294 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00294 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00294: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_c00294 {
    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_c00294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00294.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_c00294 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00294;src:url('chunks/assets/font_fa2bbdc3a2871d777158af48.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.000000;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;}
.m4c_c00294{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m45_c00294{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m25_c00294{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00294{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00294{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m48_c00294{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m39_c00294{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m21_c00294{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m37_c00294{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m47_c00294{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m23_c00294{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m22_c00294{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m42_c00294{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00294{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m20_c00294{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m34_c00294{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m46_c00294{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00294{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m19_c00294{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m41_c00294{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m43_c00294{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00294{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00294{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m59_c00294{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00294{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m58_c00294{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00294{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m44_c00294{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m31_c00294{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m26_c00294{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00294{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m57_c00294{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00294{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m52_c00294{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m35_c00294{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00294{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m40_c00294{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00294{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m53_c00294{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00294{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m51_c00294{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00294{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m16_c00294{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00294{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m33_c00294{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00294{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m32_c00294{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m50_c00294{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00294{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00294{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m30_c00294{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m28_c00294{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00294{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m36_c00294{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8_c00294{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00294{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m55_c00294{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m17_c00294{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m27_c00294{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00294{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m49_c00294{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00294{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m24_c00294{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m29_c00294{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00294{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m54_c00294{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m15_c00294{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.mf_c00294{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma_c00294{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00294{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc_c00294{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m56_c00294{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00294{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.me_c00294{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m10_c00294{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m4_c00294{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m11_c00294{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.md_c00294{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mb_c00294{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m2_c00294{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m14_c00294{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00294{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m9_c00294{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m13_c00294{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c00294{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m5_c00294{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m12_c00294{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m18_c00294{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls0_c00294{letter-spacing:0.000000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{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__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00294{word-spacing:0.000000px;}
.fc0_c00294{color:transparent;}
.fs4_c00294{font-size:54.000000px;}
.fs1_c00294{font-size:60.000000px;}
.fs6_c00294{font-size:66.000000px;}
.fs5_c00294{font-size:78.000000px;}
.fs8_c00294{font-size:84.000000px;}
.fs3_c00294{font-size:120.000000px;}
.fs2_c00294{font-size:126.000000px;}
.fs7_c00294{font-size:150.000000px;}
.fs0_c00294{font-size:168.000000px;}
.y0_c00294{bottom:0.000000px;}
.yf_c00294{bottom:180.300000px;}
.ye_c00294{bottom:252.000000px;}
.yd_c00294{bottom:285.450000px;}
.yc_c00294{bottom:659.850000px;}
.yb_c00294{bottom:685.050000px;}
.ya_c00294{bottom:709.950000px;}
.y9_c00294{bottom:734.400000px;}
.y8_c00294{bottom:759.600000px;}
.y7_c00294{bottom:801.750000px;}
.y6_c00294{bottom:875.850000px;}
.y5_c00294{bottom:899.250000px;}
.y4_c00294{bottom:936.750000px;}
.y3_c00294{bottom:1022.400000px;}
.y2_c00294{bottom:1078.200000px;}
.y1_c00294{bottom:1124.700000px;}
.h6_c00294{height:54.000000px;}
.h3_c00294{height:60.000000px;}
.h8_c00294{height:66.000000px;}
.h7_c00294{height:78.000000px;}
.ha_c00294{height:84.000000px;}
.h5_c00294{height:120.000000px;}
.h4_c00294{height:126.000000px;}
.h9_c00294{height:150.000000px;}
.h2_c00294{height:168.000000px;}
.h1_c00294{height:1271.250000px;}
.h0_c00294{height:1271.519990px;}
.w1_c00294{width:961.500000px;}
.w0_c00294{width:961.560058px;}
.x0_c00294{left:0.000000px;}
.x3_c00294{left:104.700000px;}
.x1b_c00294{left:106.200000px;}
.xa_c00294{left:117.750000px;}
.x29_c00294{left:123.150000px;}
.x45_c00294{left:124.200000px;}
.x58_c00294{left:133.200000px;}
.x4e_c00294{left:159.900000px;}
.x4f_c00294{left:171.000000px;}
.x1c_c00294{left:183.300000px;}
.x46_c00294{left:190.500000px;}
.x37_c00294{left:194.550000px;}
.x2a_c00294{left:199.500000px;}
.x1d_c00294{left:205.950000px;}
.x50_c00294{left:207.750000px;}
.xb_c00294{left:211.350000px;}
.x38_c00294{left:215.400000px;}
.x59_c00294{left:235.800000px;}
.xc_c00294{left:245.250000px;}
.x2b_c00294{left:247.800000px;}
.x51_c00294{left:262.800000px;}
.x47_c00294{left:264.600000px;}
.x1e_c00294{left:268.950000px;}
.x2c_c00294{left:270.150000px;}
.x1_c00294{left:271.800000px;}
.x1f_c00294{left:281.850000px;}
.x48_c00294{left:287.700000px;}
.x52_c00294{left:289.050000px;}
.x5a_c00294{left:300.300000px;}
.xd_c00294{left:306.750000px;}
.x39_c00294{left:310.800000px;}
.x4_c00294{left:328.650000px;}
.x3a_c00294{left:330.900000px;}
.x20_c00294{left:336.900000px;}
.x8_c00294{left:340.950000px;}
.xe_c00294{left:342.000000px;}
.x2d_c00294{left:347.850000px;}
.x3b_c00294{left:352.500000px;}
.x18_c00294{left:357.900000px;}
.x2e_c00294{left:369.750000px;}
.x21_c00294{left:385.800000px;}
.x2f_c00294{left:388.800000px;}
.x19_c00294{left:396.750000px;}
.x5b_c00294{left:397.800000px;}
.x15_c00294{left:399.450000px;}
.x5_c00294{left:400.650000px;}
.x53_c00294{left:422.550000px;}
.x16_c00294{left:424.650000px;}
.x1a_c00294{left:429.450000px;}
.xf_c00294{left:431.700000px;}
.x57_c00294{left:432.750000px;}
.x3c_c00294{left:439.350000px;}
.x54_c00294{left:442.050000px;}
.x30_c00294{left:443.100000px;}
.x2_c00294{left:446.400000px;}
.x17_c00294{left:457.350000px;}
.x10_c00294{left:467.400000px;}
.x22_c00294{left:471.900000px;}
.x9_c00294{left:476.250000px;}
.x49_c00294{left:486.750000px;}
.x3d_c00294{left:488.700000px;}
.x55_c00294{left:510.150000px;}
.x3e_c00294{left:511.350000px;}
.x23_c00294{left:518.700000px;}
.x3f_c00294{left:530.400000px;}
.x31_c00294{left:535.200000px;}
.x24_c00294{left:540.000000px;}
.x6_c00294{left:543.150000px;}
.x11_c00294{left:548.100000px;}
.x32_c00294{left:557.550000px;}
.x12_c00294{left:582.600000px;}
.x40_c00294{left:583.650000px;}
.x56_c00294{left:586.500000px;}
.x4a_c00294{left:587.550000px;}
.x7_c00294{left:598.950000px;}
.x33_c00294{left:603.300000px;}
.x25_c00294{left:617.400000px;}
.x5c_c00294{left:623.100000px;}
.x34_c00294{left:632.400000px;}
.x5d_c00294{left:660.150000px;}
.x41_c00294{left:682.350000px;}
.x26_c00294{left:684.000000px;}
.x35_c00294{left:690.300000px;}
.x13_c00294{left:697.800000px;}
.x42_c00294{left:701.400000px;}
.x4b_c00294{left:703.950000px;}
.x43_c00294{left:723.300000px;}
.x4c_c00294{left:728.100000px;}
.x14_c00294{left:732.750000px;}
.x27_c00294{left:745.950000px;}
.x36_c00294{left:754.800000px;}
.x5e_c00294{left:759.150000px;}
.x5f_c00294{left:789.450000px;}
.x44_c00294{left:798.900000px;}
.x28_c00294{left:803.850000px;}
.x4d_c00294{left:805.800000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws0_c00294{word-spacing:0.000000pt;}
.fs4_c00294{font-size:48.000000pt;}
.fs1_c00294{font-size:53.333333pt;}
.fs6_c00294{font-size:58.666667pt;}
.fs5_c00294{font-size:69.333333pt;}
.fs8_c00294{font-size:74.666667pt;}
.fs3_c00294{font-size:106.666667pt;}
.fs2_c00294{font-size:112.000000pt;}
.fs7_c00294{font-size:133.333333pt;}
.fs0_c00294{font-size:149.333333pt;}
.y0_c00294{bottom:0.000000pt;}
.yf_c00294{bottom:160.266667pt;}
.ye_c00294{bottom:224.000000pt;}
.yd_c00294{bottom:253.733333pt;}
.yc_c00294{bottom:586.533333pt;}
.yb_c00294{bottom:608.933333pt;}
.ya_c00294{bottom:631.066667pt;}
.y9_c00294{bottom:652.800000pt;}
.y8_c00294{bottom:675.200000pt;}
.y7_c00294{bottom:712.666667pt;}
.y6_c00294{bottom:778.533333pt;}
.y5_c00294{bottom:799.333333pt;}
.y4_c00294{bottom:832.666667pt;}
.y3_c00294{bottom:908.800000pt;}
.y2_c00294{bottom:958.400000pt;}
.y1_c00294{bottom:999.733333pt;}
.h6_c00294{height:48.000000pt;}
.h3_c00294{height:53.333333pt;}
.h8_c00294{height:58.666667pt;}
.h7_c00294{height:69.333333pt;}
.ha_c00294{height:74.666667pt;}
.h5_c00294{height:106.666667pt;}
.h4_c00294{height:112.000000pt;}
.h9_c00294{height:133.333333pt;}
.h2_c00294{height:149.333333pt;}
.h1_c00294{height:1130.000000pt;}
.h0_c00294{height:1130.239991pt;}
.w1_c00294{width:854.666667pt;}
.w0_c00294{width:854.720052pt;}
.x0_c00294{left:0.000000pt;}
.x3_c00294{left:93.066667pt;}
.x1b_c00294{left:94.400000pt;}
.xa_c00294{left:104.666667pt;}
.x29_c00294{left:109.466667pt;}
.x45_c00294{left:110.400000pt;}
.x58_c00294{left:118.400000pt;}
.x4e_c00294{left:142.133333pt;}
.x4f_c00294{left:152.000000pt;}
.x1c_c00294{left:162.933333pt;}
.x46_c00294{left:169.333333pt;}
.x37_c00294{left:172.933333pt;}
.x2a_c00294{left:177.333333pt;}
.x1d_c00294{left:183.066667pt;}
.x50_c00294{left:184.666667pt;}
.xb_c00294{left:187.866667pt;}
.x38_c00294{left:191.466667pt;}
.x59_c00294{left:209.600000pt;}
.xc_c00294{left:218.000000pt;}
.x2b_c00294{left:220.266667pt;}
.x51_c00294{left:233.600000pt;}
.x47_c00294{left:235.200000pt;}
.x1e_c00294{left:239.066667pt;}
.x2c_c00294{left:240.133333pt;}
.x1_c00294{left:241.600000pt;}
.x1f_c00294{left:250.533333pt;}
.x48_c00294{left:255.733333pt;}
.x52_c00294{left:256.933333pt;}
.x5a_c00294{left:266.933333pt;}
.xd_c00294{left:272.666667pt;}
.x39_c00294{left:276.266667pt;}
.x4_c00294{left:292.133333pt;}
.x3a_c00294{left:294.133333pt;}
.x20_c00294{left:299.466667pt;}
.x8_c00294{left:303.066667pt;}
.xe_c00294{left:304.000000pt;}
.x2d_c00294{left:309.200000pt;}
.x3b_c00294{left:313.333333pt;}
.x18_c00294{left:318.133333pt;}
.x2e_c00294{left:328.666667pt;}
.x21_c00294{left:342.933333pt;}
.x2f_c00294{left:345.600000pt;}
.x19_c00294{left:352.666667pt;}
.x5b_c00294{left:353.600000pt;}
.x15_c00294{left:355.066667pt;}
.x5_c00294{left:356.133333pt;}
.x53_c00294{left:375.600000pt;}
.x16_c00294{left:377.466667pt;}
.x1a_c00294{left:381.733333pt;}
.xf_c00294{left:383.733333pt;}
.x57_c00294{left:384.666667pt;}
.x3c_c00294{left:390.533333pt;}
.x54_c00294{left:392.933333pt;}
.x30_c00294{left:393.866667pt;}
.x2_c00294{left:396.800000pt;}
.x17_c00294{left:406.533333pt;}
.x10_c00294{left:415.466667pt;}
.x22_c00294{left:419.466667pt;}
.x9_c00294{left:423.333333pt;}
.x49_c00294{left:432.666667pt;}
.x3d_c00294{left:434.400000pt;}
.x55_c00294{left:453.466667pt;}
.x3e_c00294{left:454.533333pt;}
.x23_c00294{left:461.066667pt;}
.x3f_c00294{left:471.466667pt;}
.x31_c00294{left:475.733333pt;}
.x24_c00294{left:480.000000pt;}
.x6_c00294{left:482.800000pt;}
.x11_c00294{left:487.200000pt;}
.x32_c00294{left:495.600000pt;}
.x12_c00294{left:517.866667pt;}
.x40_c00294{left:518.800000pt;}
.x56_c00294{left:521.333333pt;}
.x4a_c00294{left:522.266667pt;}
.x7_c00294{left:532.400000pt;}
.x33_c00294{left:536.266667pt;}
.x25_c00294{left:548.800000pt;}
.x5c_c00294{left:553.866667pt;}
.x34_c00294{left:562.133333pt;}
.x5d_c00294{left:586.800000pt;}
.x41_c00294{left:606.533333pt;}
.x26_c00294{left:608.000000pt;}
.x35_c00294{left:613.600000pt;}
.x13_c00294{left:620.266667pt;}
.x42_c00294{left:623.466667pt;}
.x4b_c00294{left:625.733333pt;}
.x43_c00294{left:642.933333pt;}
.x4c_c00294{left:647.200000pt;}
.x14_c00294{left:651.333333pt;}
.x27_c00294{left:663.066667pt;}
.x36_c00294{left:670.933333pt;}
.x5e_c00294{left:674.800000pt;}
.x5f_c00294{left:701.733333pt;}
.x44_c00294{left:710.133333pt;}
.x28_c00294{left:714.533333pt;}
.x4d_c00294{left:716.266667pt;}
}





/* 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_c00295 {
    display:none;
  }
  .loading-indicator_c00295.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00295 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_c00295 { 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_c00295" -> "#page-container .classname_c00295")
 */
.pf_c00295 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00295 { /* 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_c00295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00295 { /* 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_c00295 { /* 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_c00295 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00295 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00295 {overflow:visible;}
  }
}
.c_c00295 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00295 { /* 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_c00295:after { /* webkit #35443 */
  content: '';
}
.t_c00295:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00295 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 */
}
.__c00295 { /* 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_c00295 { /* info for Javascript */
  display:none;
}
.l_c00295 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00295 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00295 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00295: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_c00295 {
    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_c00295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00295.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_c00295 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00295;src:url('chunks/assets/font_59ee8bbfbf655175a2a3ebae.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.000000;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;}
.m1a_c00295{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mb_c00295{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m11_c00295{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10_c00295{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me_c00295{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00295{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00295{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00295{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00295{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c00295{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mc_c00295{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7_c00295{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m14_c00295{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.md_c00295{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m13_c00295{transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);}
.m12_c00295{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m9_c00295{transform:matrix(0.544000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544000,0.000000,0.000000,0.250000,0,0);}
.m17_c00295{transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);}
.m18_c00295{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m15_c00295{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m19_c00295{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m16_c00295{transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{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__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:0.000000px;}
.fc0_c00295{color:transparent;}
.fs1_c00295{font-size:12.000000px;}
.fs0_c00295{font-size:18.000000px;}
.fs2_c00295{font-size:24.000000px;}
.fs3_c00295{font-size:48.000000px;}
.y0_c00295{bottom:0.000000px;}
.y40_c00295{bottom:3.600000px;}
.y41_c00295{bottom:5.400000px;}
.y11_c00295{bottom:13.500000px;}
.y1f_c00295{bottom:149.100000px;}
.y1e_c00295{bottom:153.450000px;}
.y3f_c00295{bottom:180.900000px;}
.y3e_c00295{bottom:195.000000px;}
.y1d_c00295{bottom:213.150000px;}
.y3d_c00295{bottom:213.300000px;}
.y3c_c00295{bottom:218.700000px;}
.y1c_c00295{bottom:238.050000px;}
.y3b_c00295{bottom:238.500000px;}
.y10_c00295{bottom:243.600000px;}
.y3a_c00295{bottom:244.200000px;}
.y1b_c00295{bottom:245.250000px;}
.y1a_c00295{bottom:248.100000px;}
.yf_c00295{bottom:251.550000px;}
.y39_c00295{bottom:251.700000px;}
.y19_c00295{bottom:254.550000px;}
.y38_c00295{bottom:255.300000px;}
.ye_c00295{bottom:255.450000px;}
.y36_c00295{bottom:283.800000px;}
.y37_c00295{bottom:284.100000px;}
.y18_c00295{bottom:285.450000px;}
.y35_c00295{bottom:289.200000px;}
.y34_c00295{bottom:300.000000px;}
.y32_c00295{bottom:301.500000px;}
.y33_c00295{bottom:301.800000px;}
.y17_c00295{bottom:352.800000px;}
.yd_c00295{bottom:367.350000px;}
.yc_c00295{bottom:377.100000px;}
.y16_c00295{bottom:406.800000px;}
.y31_c00295{bottom:413.100000px;}
.y30_c00295{bottom:425.700000px;}
.y2f_c00295{bottom:450.900000px;}
.y2e_c00295{bottom:453.750000px;}
.yb_c00295{bottom:514.650000px;}
.y2d_c00295{bottom:516.750000px;}
.y2c_c00295{bottom:541.950000px;}
.y2b_c00295{bottom:640.950000px;}
.ya_c00295{bottom:656.100000px;}
.y2a_c00295{bottom:658.200000px;}
.y29_c00295{bottom:661.800000px;}
.y9_c00295{bottom:673.050000px;}
.y8_c00295{bottom:676.950000px;}
.y28_c00295{bottom:678.750000px;}
.y7_c00295{bottom:680.850000px;}
.y27_c00295{bottom:682.650000px;}
.y6_c00295{bottom:701.700000px;}
.y15_c00295{bottom:726.450000px;}
.y26_c00295{bottom:727.950000px;}
.y5_c00295{bottom:731.550000px;}
.y4_c00295{bottom:754.950000px;}
.y25_c00295{bottom:757.050000px;}
.y14_c00295{bottom:799.500000px;}
.y3_c00295{bottom:799.650000px;}
.y24_c00295{bottom:801.000000px;}
.y23_c00295{bottom:812.100000px;}
.y13_c00295{bottom:874.350000px;}
.y2_c00295{bottom:895.350000px;}
.y22_c00295{bottom:895.650000px;}
.y12_c00295{bottom:900.300000px;}
.y1_c00295{bottom:901.500000px;}
.y21_c00295{bottom:902.100000px;}
.y20_c00295{bottom:948.600000px;}
.h3_c00295{height:12.000000px;}
.h2_c00295{height:18.000000px;}
.h4_c00295{height:24.000000px;}
.h5_c00295{height:48.000000px;}
.h1_c00295{height:1267.500000px;}
.h0_c00295{height:1267.559967px;}
.w1_c00295{width:961.500000px;}
.w0_c00295{width:961.560058px;}
.x0_c00295{left:0.000000px;}
.xc_c00295{left:336.600000px;}
.x5_c00295{left:338.700000px;}
.xd_c00295{left:340.950000px;}
.xb_c00295{left:348.150000px;}
.x2_c00295{left:349.200000px;}
.xa_c00295{left:350.700000px;}
.xe_c00295{left:356.100000px;}
.x9_c00295{left:358.650000px;}
.x7_c00295{left:370.050000px;}
.x1_c00295{left:374.400000px;}
.x6_c00295{left:375.750000px;}
.x4_c00295{left:380.850000px;}
.x8_c00295{left:383.100000px;}
.x3_c00295{left:385.200000px;}
.x18_c00295{left:395.400000px;}
.x15_c00295{left:397.500000px;}
.x17_c00295{left:404.700000px;}
.xf_c00295{left:408.300000px;}
.x11_c00295{left:420.600000px;}
.x19_c00295{left:428.250000px;}
.x1c_c00295{left:430.350000px;}
.x16_c00295{left:431.700000px;}
.x10_c00295{left:436.800000px;}
.x12_c00295{left:438.900000px;}
.x1a_c00295{left:440.850000px;}
.x14_c00295{left:442.800000px;}
.x1b_c00295{left:446.250000px;}
.x13_c00295{left:450.000000px;}
.x21_c00295{left:456.600000px;}
.x32_c00295{left:461.850000px;}
.x29_c00295{left:463.650000px;}
.x38_c00295{left:465.300000px;}
.x3b_c00295{left:468.450000px;}
.x1d_c00295{left:471.600000px;}
.x3d_c00295{left:472.650000px;}
.x30_c00295{left:475.800000px;}
.x34_c00295{left:487.950000px;}
.x22_c00295{left:489.750000px;}
.x25_c00295{left:491.850000px;}
.x2a_c00295{left:494.250000px;}
.x1e_c00295{left:500.400000px;}
.x36_c00295{left:501.600000px;}
.x23_c00295{left:503.400000px;}
.x3c_c00295{left:507.750000px;}
.x26_c00295{left:511.950000px;}
.x28_c00295{left:515.550000px;}
.x33_c00295{left:517.800000px;}
.x39_c00295{left:521.850000px;}
.x2f_c00295{left:523.650000px;}
.x1f_c00295{left:525.300000px;}
.x35_c00295{left:526.500000px;}
.x37_c00295{left:530.400000px;}
.x2b_c00295{left:533.550000px;}
.x2e_c00295{left:536.250000px;}
.x31_c00295{left:538.500000px;}
.x3a_c00295{left:540.900000px;}
.x27_c00295{left:544.350000px;}
.x20_c00295{left:545.850000px;}
.x2c_c00295{left:551.850000px;}
.x24_c00295{left:556.350000px;}
.x2d_c00295{left:557.550000px;}
.x3e_c00295{left:624.300000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws0_c00295{word-spacing:0.000000pt;}
.fs1_c00295{font-size:10.666667pt;}
.fs0_c00295{font-size:16.000000pt;}
.fs2_c00295{font-size:21.333333pt;}
.fs3_c00295{font-size:42.666667pt;}
.y0_c00295{bottom:0.000000pt;}
.y40_c00295{bottom:3.200000pt;}
.y41_c00295{bottom:4.800000pt;}
.y11_c00295{bottom:12.000000pt;}
.y1f_c00295{bottom:132.533333pt;}
.y1e_c00295{bottom:136.400000pt;}
.y3f_c00295{bottom:160.800000pt;}
.y3e_c00295{bottom:173.333333pt;}
.y1d_c00295{bottom:189.466667pt;}
.y3d_c00295{bottom:189.600000pt;}
.y3c_c00295{bottom:194.400000pt;}
.y1c_c00295{bottom:211.600000pt;}
.y3b_c00295{bottom:212.000000pt;}
.y10_c00295{bottom:216.533333pt;}
.y3a_c00295{bottom:217.066667pt;}
.y1b_c00295{bottom:218.000000pt;}
.y1a_c00295{bottom:220.533333pt;}
.yf_c00295{bottom:223.600000pt;}
.y39_c00295{bottom:223.733333pt;}
.y19_c00295{bottom:226.266667pt;}
.y38_c00295{bottom:226.933333pt;}
.ye_c00295{bottom:227.066667pt;}
.y36_c00295{bottom:252.266667pt;}
.y37_c00295{bottom:252.533333pt;}
.y18_c00295{bottom:253.733333pt;}
.y35_c00295{bottom:257.066667pt;}
.y34_c00295{bottom:266.666667pt;}
.y32_c00295{bottom:268.000000pt;}
.y33_c00295{bottom:268.266667pt;}
.y17_c00295{bottom:313.600000pt;}
.yd_c00295{bottom:326.533333pt;}
.yc_c00295{bottom:335.200000pt;}
.y16_c00295{bottom:361.600000pt;}
.y31_c00295{bottom:367.200000pt;}
.y30_c00295{bottom:378.400000pt;}
.y2f_c00295{bottom:400.800000pt;}
.y2e_c00295{bottom:403.333333pt;}
.yb_c00295{bottom:457.466667pt;}
.y2d_c00295{bottom:459.333333pt;}
.y2c_c00295{bottom:481.733333pt;}
.y2b_c00295{bottom:569.733333pt;}
.ya_c00295{bottom:583.200000pt;}
.y2a_c00295{bottom:585.066667pt;}
.y29_c00295{bottom:588.266667pt;}
.y9_c00295{bottom:598.266667pt;}
.y8_c00295{bottom:601.733333pt;}
.y28_c00295{bottom:603.333333pt;}
.y7_c00295{bottom:605.200000pt;}
.y27_c00295{bottom:606.800000pt;}
.y6_c00295{bottom:623.733333pt;}
.y15_c00295{bottom:645.733333pt;}
.y26_c00295{bottom:647.066667pt;}
.y5_c00295{bottom:650.266667pt;}
.y4_c00295{bottom:671.066667pt;}
.y25_c00295{bottom:672.933333pt;}
.y14_c00295{bottom:710.666667pt;}
.y3_c00295{bottom:710.800000pt;}
.y24_c00295{bottom:712.000000pt;}
.y23_c00295{bottom:721.866667pt;}
.y13_c00295{bottom:777.200000pt;}
.y2_c00295{bottom:795.866667pt;}
.y22_c00295{bottom:796.133333pt;}
.y12_c00295{bottom:800.266667pt;}
.y1_c00295{bottom:801.333333pt;}
.y21_c00295{bottom:801.866667pt;}
.y20_c00295{bottom:843.200000pt;}
.h3_c00295{height:10.666667pt;}
.h2_c00295{height:16.000000pt;}
.h4_c00295{height:21.333333pt;}
.h5_c00295{height:42.666667pt;}
.h1_c00295{height:1126.666667pt;}
.h0_c00295{height:1126.719971pt;}
.w1_c00295{width:854.666667pt;}
.w0_c00295{width:854.720052pt;}
.x0_c00295{left:0.000000pt;}
.xc_c00295{left:299.200000pt;}
.x5_c00295{left:301.066667pt;}
.xd_c00295{left:303.066667pt;}
.xb_c00295{left:309.466667pt;}
.x2_c00295{left:310.400000pt;}
.xa_c00295{left:311.733333pt;}
.xe_c00295{left:316.533333pt;}
.x9_c00295{left:318.800000pt;}
.x7_c00295{left:328.933333pt;}
.x1_c00295{left:332.800000pt;}
.x6_c00295{left:334.000000pt;}
.x4_c00295{left:338.533333pt;}
.x8_c00295{left:340.533333pt;}
.x3_c00295{left:342.400000pt;}
.x18_c00295{left:351.466667pt;}
.x15_c00295{left:353.333333pt;}
.x17_c00295{left:359.733333pt;}
.xf_c00295{left:362.933333pt;}
.x11_c00295{left:373.866667pt;}
.x19_c00295{left:380.666667pt;}
.x1c_c00295{left:382.533333pt;}
.x16_c00295{left:383.733333pt;}
.x10_c00295{left:388.266667pt;}
.x12_c00295{left:390.133333pt;}
.x1a_c00295{left:391.866667pt;}
.x14_c00295{left:393.600000pt;}
.x1b_c00295{left:396.666667pt;}
.x13_c00295{left:400.000000pt;}
.x21_c00295{left:405.866667pt;}
.x32_c00295{left:410.533333pt;}
.x29_c00295{left:412.133333pt;}
.x38_c00295{left:413.600000pt;}
.x3b_c00295{left:416.400000pt;}
.x1d_c00295{left:419.200000pt;}
.x3d_c00295{left:420.133333pt;}
.x30_c00295{left:422.933333pt;}
.x34_c00295{left:433.733333pt;}
.x22_c00295{left:435.333333pt;}
.x25_c00295{left:437.200000pt;}
.x2a_c00295{left:439.333333pt;}
.x1e_c00295{left:444.800000pt;}
.x36_c00295{left:445.866667pt;}
.x23_c00295{left:447.466667pt;}
.x3c_c00295{left:451.333333pt;}
.x26_c00295{left:455.066667pt;}
.x28_c00295{left:458.266667pt;}
.x33_c00295{left:460.266667pt;}
.x39_c00295{left:463.866667pt;}
.x2f_c00295{left:465.466667pt;}
.x1f_c00295{left:466.933333pt;}
.x35_c00295{left:468.000000pt;}
.x37_c00295{left:471.466667pt;}
.x2b_c00295{left:474.266667pt;}
.x2e_c00295{left:476.666667pt;}
.x31_c00295{left:478.666667pt;}
.x3a_c00295{left:480.800000pt;}
.x27_c00295{left:483.866667pt;}
.x20_c00295{left:485.200000pt;}
.x2c_c00295{left:490.533333pt;}
.x24_c00295{left:494.533333pt;}
.x2d_c00295{left:495.600000pt;}
.x3e_c00295{left:554.933333pt;}
}





/* 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_c00296 {
    display:none;
  }
  .loading-indicator_c00296.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00296 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_c00296 { 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_c00296" -> "#page-container .classname_c00296")
 */
.pf_c00296 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00296 { /* 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_c00296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00296 { /* 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_c00296 { /* 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_c00296 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00296 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00296 {overflow:visible;}
  }
}
.c_c00296 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00296 { /* 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_c00296:after { /* webkit #35443 */
  content: '';
}
.t_c00296:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00296 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 */
}
.__c00296 { /* 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_c00296 { /* info for Javascript */
  display:none;
}
.l_c00296 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00296 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00296 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00296: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_c00296 {
    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_c00296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00296.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_c00296 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00296;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00296{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00296{transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);}
.md8_c00296{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.me4_c00296{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m87_c00296{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m65_c00296{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00296{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mda_c00296{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.me1_c00296{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m72_c00296{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00296{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m43_c00296{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.md9_c00296{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00296{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00296{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mde_c00296{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00296{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mf_c00296{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.md4_c00296{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md6_c00296{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00296{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m55_c00296{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00296{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00296{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10_c00296{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.md1_c00296{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00296{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00296{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.me0_c00296{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me3_c00296{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00296{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00296{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me2_c00296{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m60_c00296{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m19_c00296{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m79_c00296{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00296{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m67_c00296{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m88_c00296{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00296{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00296{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m14_c00296{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.md7_c00296{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00296{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m73_c00296{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m80_c00296{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00296{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00296{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m63_c00296{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m70_c00296{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00296{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00296{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m58_c00296{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m12_c00296{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00296{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m56_c00296{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00296{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m66_c00296{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m50_c00296{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m61_c00296{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00296{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00296{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m46_c00296{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00296{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m82_c00296{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m31_c00296{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00296{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m34_c00296{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00296{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mb_c00296{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00296{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m96_c00296{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00296{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m57_c00296{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc_c00296{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00296{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m62_c00296{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00296{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m17_c00296{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m24_c00296{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m64_c00296{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m78_c00296{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m39_c00296{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00296{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9_c00296{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m83_c00296{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m76_c00296{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m74_c00296{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m23_c00296{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00296{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m86_c00296{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00296{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m42_c00296{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m59_c00296{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00296{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m81_c00296{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.maa_c00296{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00296{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00296{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00296{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m29_c00296{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00296{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md2_c00296{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mad_c00296{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00296{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00296{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m85_c00296{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m28_c00296{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00296{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m97_c00296{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00296{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00296{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m89_c00296{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00296{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m84_c00296{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00296{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m33_c00296{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00296{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00296{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m37_c00296{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00296{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.me_c00296{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mae_c00296{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00296{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m11_c00296{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m20_c00296{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00296{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00296{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00296{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00296{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00296{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00296{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00296{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00296{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m54_c00296{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m69_c00296{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m16_c00296{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mac_c00296{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00296{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00296{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m25_c00296{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m41_c00296{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m36_c00296{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m51_c00296{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m21_c00296{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m95_c00296{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mce_c00296{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00296{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md_c00296{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00296{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m52_c00296{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m22_c00296{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8_c00296{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md5_c00296{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00296{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m49_c00296{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m75_c00296{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mab_c00296{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00296{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m45_c00296{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00296{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00296{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00296{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m53_c00296{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m26_c00296{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m48_c00296{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m32_c00296{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);}
.m68_c00296{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m38_c00296{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00296{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m15_c00296{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00296{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00296{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m98_c00296{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00296{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00296{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md0_c00296{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.md3_c00296{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m27_c00296{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00296{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m6_c00296{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00296{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00296{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00296{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m7_c00296{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m91_c00296{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.ma_c00296{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m77_c00296{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mba_c00296{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m5_c00296{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00296{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00296{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m44_c00296{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m35_c00296{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00296{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00296{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00296{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m71_c00296{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00296{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00296{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00296{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m47_c00296{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00296{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.me5_c00296{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00296{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m90_c00296{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00296{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00296{transform:matrix(0.293750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00296{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.maf_c00296{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00296{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00296{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mca_c00296{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00296{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00296{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m40_c00296{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00296{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00296{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.m18_c00296{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m92_c00296{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m94_c00296{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.m93_c00296{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m30_c00296{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00296{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m99_c00296{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00296{transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls0_c00296{letter-spacing:0.000000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{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__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00296{word-spacing:0.000000px;}
.ws0_c00296{word-spacing:3.859031px;}
.fc0_c00296{color:transparent;}
.fs1_c00296{font-size:30.000000px;}
.fs4_c00296{font-size:66.000000px;}
.fs2_c00296{font-size:72.000000px;}
.fs3_c00296{font-size:78.000000px;}
.fs5_c00296{font-size:84.000000px;}
.fs6_c00296{font-size:90.000000px;}
.fs0_c00296{font-size:204.000000px;}
.y0_c00296{bottom:0.000000px;}
.y23_c00296{bottom:197.250000px;}
.y22_c00296{bottom:222.450000px;}
.y21_c00296{bottom:246.900000px;}
.y20_c00296{bottom:275.700000px;}
.y1f_c00296{bottom:300.900000px;}
.y1e_c00296{bottom:325.350000px;}
.y1d_c00296{bottom:349.500000px;}
.y1c_c00296{bottom:373.950000px;}
.y1b_c00296{bottom:398.100000px;}
.y1a_c00296{bottom:422.250000px;}
.y19_c00296{bottom:447.150000px;}
.y18_c00296{bottom:476.550000px;}
.y17_c00296{bottom:501.000000px;}
.y16_c00296{bottom:525.900000px;}
.y15_c00296{bottom:550.800000px;}
.y14_c00296{bottom:574.950000px;}
.y13_c00296{bottom:601.650000px;}
.y12_c00296{bottom:624.300000px;}
.y11_c00296{bottom:649.200000px;}
.y10_c00296{bottom:673.650000px;}
.yf_c00296{bottom:698.550000px;}
.ye_c00296{bottom:723.000000px;}
.yd_c00296{bottom:747.450000px;}
.yc_c00296{bottom:771.900000px;}
.yb_c00296{bottom:798.600000px;}
.ya_c00296{bottom:820.950000px;}
.y9_c00296{bottom:845.400000px;}
.y8_c00296{bottom:869.850000px;}
.y7_c00296{bottom:894.300000px;}
.y6_c00296{bottom:918.750000px;}
.y5_c00296{bottom:947.850000px;}
.y4_c00296{bottom:972.300000px;}
.y3_c00296{bottom:997.200000px;}
.y2_c00296{bottom:1049.700000px;}
.y1_c00296{bottom:1088.250000px;}
.h3_c00296{height:30.000000px;}
.h6_c00296{height:66.000000px;}
.h4_c00296{height:72.000000px;}
.h5_c00296{height:78.000000px;}
.h7_c00296{height:84.000000px;}
.h8_c00296{height:90.000000px;}
.h2_c00296{height:204.000000px;}
.h0_c00296{height:1267.200073px;}
.h1_c00296{height:1267.500000px;}
.w1_c00296{width:961.500000px;}
.w0_c00296{width:961.560058px;}
.x0_c00296{left:0.000000px;}
.xfd_c00296{left:64.050000px;}
.xe7_c00296{left:65.100000px;}
.xca_c00296{left:66.150000px;}
.x9b_c00296{left:67.500000px;}
.x60_c00296{left:69.000000px;}
.x4_c00296{left:70.950000px;}
.xf2_c00296{left:83.850000px;}
.xc2_c00296{left:86.700000px;}
.x33_c00296{left:90.900000px;}
.x26_c00296{left:92.100000px;}
.x81_c00296{left:98.700000px;}
.xbf_c00296{left:102.750000px;}
.xe1_c00296{left:104.550000px;}
.xcb_c00296{left:109.050000px;}
.x61_c00296{left:112.200000px;}
.xa5_c00296{left:113.400000px;}
.x6b_c00296{left:115.800000px;}
.x89_c00296{left:118.200000px;}
.x45_c00296{left:122.700000px;}
.x7b_c00296{left:126.300000px;}
.x57_c00296{left:130.800000px;}
.xcc_c00296{left:133.200000px;}
.x1d_c00296{left:135.600000px;}
.x8a_c00296{left:138.000000px;}
.x6c_c00296{left:140.250000px;}
.x11_c00296{left:142.050000px;}
.xa6_c00296{left:143.250000px;}
.x9c_c00296{left:144.600000px;}
.xc0_c00296{left:149.250000px;}
.x46_c00296{left:152.250000px;}
.x62_c00296{left:153.600000px;}
.x3c_c00296{left:155.100000px;}
.xcd_c00296{left:159.150000px;}
.xf1_c00296{left:162.450000px;}
.x8b_c00296{left:165.750000px;}
.x12_c00296{left:168.750000px;}
.x5_c00296{left:170.250000px;}
.x63_c00296{left:172.650000px;}
.x3d_c00296{left:177.000000px;}
.xba_c00296{left:179.850000px;}
.x47_c00296{left:183.150000px;}
.x9d_c00296{left:185.250000px;}
.xb3_c00296{left:188.700000px;}
.x7c_c00296{left:190.050000px;}
.xc3_c00296{left:191.400000px;}
.x75_c00296{left:193.500000px;}
.x13_c00296{left:195.000000px;}
.x27_c00296{left:197.550000px;}
.x95_c00296{left:207.600000px;}
.xae_c00296{left:209.700000px;}
.xfe_c00296{left:211.950000px;}
.x8c_c00296{left:213.300000px;}
.x1_c00296{left:215.250000px;}
.x6_c00296{left:217.350000px;}
.x51_c00296{left:218.850000px;}
.x58_c00296{left:220.500000px;}
.xce_c00296{left:228.300000px;}
.x34_c00296{left:237.450000px;}
.x1e_c00296{left:239.250000px;}
.xed_c00296{left:240.450000px;}
.x28_c00296{left:242.250000px;}
.x7_c00296{left:243.600000px;}
.x8d_c00296{left:245.400000px;}
.x64_c00296{left:248.550000px;}
.xcf_c00296{left:250.950000px;}
.xaf_c00296{left:253.950000px;}
.x59_c00296{left:255.450000px;}
.x48_c00296{left:259.050000px;}
.x76_c00296{left:260.850000px;}
.x1f_c00296{left:264.450000px;}
.x7d_c00296{left:266.700000px;}
.x82_c00296{left:269.700000px;}
.x29_c00296{left:271.050000px;}
.xc4_c00296{left:272.400000px;}
.x8e_c00296{left:275.250000px;}
.x35_c00296{left:279.600000px;}
.x83_c00296{left:286.650000px;}
.x6d_c00296{left:288.150000px;}
.x9e_c00296{left:289.950000px;}
.xe2_c00296{left:291.450000px;}
.x14_c00296{left:292.950000px;}
.x5a_c00296{left:295.350000px;}
.x8_c00296{left:296.550000px;}
.xc5_c00296{left:301.200000px;}
.x36_c00296{left:302.700000px;}
.x77_c00296{left:303.750000px;}
.xd6_c00296{left:309.150000px;}
.x20_c00296{left:310.500000px;}
.x96_c00296{left:312.600000px;}
.xf3_c00296{left:314.250000px;}
.x52_c00296{left:316.350000px;}
.x9_c00296{left:321.000000px;}
.xf6_c00296{left:322.800000px;}
.xa7_c00296{left:324.000000px;}
.x49_c00296{left:326.400000px;}
.x65_c00296{left:331.650000px;}
.xe8_c00296{left:332.700000px;}
.x21_c00296{left:334.650000px;}
.xe3_c00296{left:337.200000px;}
.xd0_c00296{left:338.700000px;}
.x6e_c00296{left:344.250000px;}
.x2a_c00296{left:346.050000px;}
.x8f_c00296{left:348.000000px;}
.x84_c00296{left:350.700000px;}
.x22_c00296{left:354.150000px;}
.x4a_c00296{left:358.500000px;}
.x3e_c00296{left:359.850000px;}
.xbb_c00296{left:361.650000px;}
.x5b_c00296{left:363.000000px;}
.xf7_c00296{left:364.950000px;}
.xa_c00296{left:369.300000px;}
.x90_c00296{left:371.400000px;}
.xd1_c00296{left:374.400000px;}
.x15_c00296{left:378.300000px;}
.x2b_c00296{left:379.950000px;}
.x3f_c00296{left:382.500000px;}
.xb4_c00296{left:389.250000px;}
.x4b_c00296{left:390.900000px;}
.xa8_c00296{left:392.700000px;}
.x85_c00296{left:394.950000px;}
.x37_c00296{left:400.950000px;}
.xc6_c00296{left:402.450000px;}
.xc1_c00296{left:403.800000px;}
.x5c_c00296{left:405.150000px;}
.xd7_c00296{left:408.900000px;}
.xf8_c00296{left:410.250000px;}
.xb5_c00296{left:413.700000px;}
.x6f_c00296{left:415.200000px;}
.x9f_c00296{left:416.400000px;}
.x23_c00296{left:418.200000px;}
.xd2_c00296{left:420.900000px;}
.x66_c00296{left:421.950000px;}
.xb0_c00296{left:426.300000px;}
.x70_c00296{left:429.600000px;}
.x16_c00296{left:431.250000px;}
.xa0_c00296{left:433.350000px;}
.x24_c00296{left:434.400000px;}
.x5d_c00296{left:436.050000px;}
.xb_c00296{left:438.000000px;}
.x2c_c00296{left:441.150000px;}
.x67_c00296{left:442.800000px;}
.xdb_c00296{left:444.300000px;}
.x38_c00296{left:445.950000px;}
.xee_c00296{left:449.700000px;}
.x53_c00296{left:451.650000px;}
.xd8_c00296{left:452.850000px;}
.xc7_c00296{left:454.950000px;}
.x78_c00296{left:457.200000px;}
.x39_c00296{left:458.550000px;}
.x2d_c00296{left:461.250000px;}
.xd3_c00296{left:465.150000px;}
.x97_c00296{left:467.850000px;}
.x71_c00296{left:471.000000px;}
.x91_c00296{left:474.000000px;}
.xf9_c00296{left:475.500000px;}
.xd9_c00296{left:477.750000px;}
.x40_c00296{left:479.100000px;}
.xc_c00296{left:481.200000px;}
.x17_c00296{left:483.450000px;}
.x86_c00296{left:485.700000px;}
.xa9_c00296{left:487.800000px;}
.x3a_c00296{left:492.450000px;}
.xef_c00296{left:495.750000px;}
.xb1_c00296{left:496.800000px;}
.x2_c00296{left:498.300000px;}
.xb6_c00296{left:503.400000px;}
.x4c_c00296{left:505.050000px;}
.xaa_c00296{left:506.850000px;}
.x92_c00296{left:508.200000px;}
.x25_c00296{left:511.500000px;}
.x3_c00296{left:516.000000px;}
.xd4_c00296{left:517.050000px;}
.x72_c00296{left:518.100000px;}
.xf4_c00296{left:520.950000px;}
.x79_c00296{left:525.300000px;}
.x4d_c00296{left:530.550000px;}
.x18_c00296{left:532.800000px;}
.xff_c00296{left:534.600000px;}
.xdc_c00296{left:536.850000px;}
.x93_c00296{left:540.900000px;}
.xe4_c00296{left:542.850000px;}
.x54_c00296{left:544.500000px;}
.x73_c00296{left:548.400000px;}
.x98_c00296{left:550.200000px;}
.x4e_c00296{left:553.200000px;}
.xd_c00296{left:554.250000px;}
.x41_c00296{left:559.800000px;}
.xe9_c00296{left:562.050000px;}
.xdd_c00296{left:563.550000px;}
.x2e_c00296{left:564.600000px;}
.xbc_c00296{left:565.800000px;}
.xb7_c00296{left:568.200000px;}
.x7e_c00296{left:569.550000px;}
.xa1_c00296{left:571.500000px;}
.xf5_c00296{left:573.450000px;}
.x87_c00296{left:574.650000px;}
.x55_c00296{left:579.000000px;}
.x7f_c00296{left:585.000000px;}
.x42_c00296{left:587.100000px;}
.x2f_c00296{left:589.050000px;}
.xc8_c00296{left:593.550000px;}
.xe_c00296{left:597.450000px;}
.x68_c00296{left:598.800000px;}
.x56_c00296{left:599.850000px;}
.xab_c00296{left:601.500000px;}
.x19_c00296{left:603.300000px;}
.x99_c00296{left:604.950000px;}
.xfa_c00296{left:606.600000px;}
.x30_c00296{left:609.150000px;}
.x3b_c00296{left:613.800000px;}
.x1a_c00296{left:618.000000px;}
.xb2_c00296{left:619.950000px;}
.xf_c00296{left:626.550000px;}
.xac_c00296{left:631.050000px;}
.xde_c00296{left:633.000000px;}
.x69_c00296{left:634.500000px;}
.x5e_c00296{left:635.550000px;}
.x9a_c00296{left:640.200000px;}
.xf0_c00296{left:642.600000px;}
.xea_c00296{left:644.400000px;}
.xbd_c00296{left:647.850000px;}
.xb8_c00296{left:650.250000px;}
.x74_c00296{left:653.550000px;}
.xdf_c00296{left:657.450000px;}
.xe5_c00296{left:659.100000px;}
.x4f_c00296{left:660.150000px;}
.x6a_c00296{left:665.100000px;}
.xda_c00296{left:667.200000px;}
.xa2_c00296{left:669.000000px;}
.xad_c00296{left:670.950000px;}
.x5f_c00296{left:672.300000px;}
.xbe_c00296{left:674.850000px;}
.x1b_c00296{left:677.400000px;}
.x80_c00296{left:678.900000px;}
.x50_c00296{left:682.050000px;}
.x88_c00296{left:685.500000px;}
.x31_c00296{left:688.350000px;}
.xeb_c00296{left:689.400000px;}
.xe0_c00296{left:693.750000px;}
.xa3_c00296{left:694.950000px;}
.x100_c00296{left:697.050000px;}
.x43_c00296{left:699.000000px;}
.xb9_c00296{left:705.000000px;}
.xfb_c00296{left:707.400000px;}
.xec_c00296{left:711.300000px;}
.xe6_c00296{left:717.000000px;}
.xc9_c00296{left:720.600000px;}
.x44_c00296{left:722.400000px;}
.x10_c00296{left:727.350000px;}
.xd5_c00296{left:729.750000px;}
.x7a_c00296{left:736.950000px;}
.x101_c00296{left:738.450000px;}
.x1c_c00296{left:741.150000px;}
.x32_c00296{left:743.100000px;}
.x94_c00296{left:746.400000px;}
.xfc_c00296{left:749.850000px;}
.xa4_c00296{left:755.400000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws1_c00296{word-spacing:0.000000pt;}
.ws0_c00296{word-spacing:3.430250pt;}
.fs1_c00296{font-size:26.666667pt;}
.fs4_c00296{font-size:58.666667pt;}
.fs2_c00296{font-size:64.000000pt;}
.fs3_c00296{font-size:69.333333pt;}
.fs5_c00296{font-size:74.666667pt;}
.fs6_c00296{font-size:80.000000pt;}
.fs0_c00296{font-size:181.333333pt;}
.y0_c00296{bottom:0.000000pt;}
.y23_c00296{bottom:175.333333pt;}
.y22_c00296{bottom:197.733333pt;}
.y21_c00296{bottom:219.466667pt;}
.y20_c00296{bottom:245.066667pt;}
.y1f_c00296{bottom:267.466667pt;}
.y1e_c00296{bottom:289.200000pt;}
.y1d_c00296{bottom:310.666667pt;}
.y1c_c00296{bottom:332.400000pt;}
.y1b_c00296{bottom:353.866667pt;}
.y1a_c00296{bottom:375.333333pt;}
.y19_c00296{bottom:397.466667pt;}
.y18_c00296{bottom:423.600000pt;}
.y17_c00296{bottom:445.333333pt;}
.y16_c00296{bottom:467.466667pt;}
.y15_c00296{bottom:489.600000pt;}
.y14_c00296{bottom:511.066667pt;}
.y13_c00296{bottom:534.800000pt;}
.y12_c00296{bottom:554.933333pt;}
.y11_c00296{bottom:577.066667pt;}
.y10_c00296{bottom:598.800000pt;}
.yf_c00296{bottom:620.933333pt;}
.ye_c00296{bottom:642.666667pt;}
.yd_c00296{bottom:664.400000pt;}
.yc_c00296{bottom:686.133333pt;}
.yb_c00296{bottom:709.866667pt;}
.ya_c00296{bottom:729.733333pt;}
.y9_c00296{bottom:751.466667pt;}
.y8_c00296{bottom:773.200000pt;}
.y7_c00296{bottom:794.933333pt;}
.y6_c00296{bottom:816.666667pt;}
.y5_c00296{bottom:842.533333pt;}
.y4_c00296{bottom:864.266667pt;}
.y3_c00296{bottom:886.400000pt;}
.y2_c00296{bottom:933.066667pt;}
.y1_c00296{bottom:967.333333pt;}
.h3_c00296{height:26.666667pt;}
.h6_c00296{height:58.666667pt;}
.h4_c00296{height:64.000000pt;}
.h5_c00296{height:69.333333pt;}
.h7_c00296{height:74.666667pt;}
.h8_c00296{height:80.000000pt;}
.h2_c00296{height:181.333333pt;}
.h0_c00296{height:1126.400065pt;}
.h1_c00296{height:1126.666667pt;}
.w1_c00296{width:854.666667pt;}
.w0_c00296{width:854.720052pt;}
.x0_c00296{left:0.000000pt;}
.xfd_c00296{left:56.933333pt;}
.xe7_c00296{left:57.866667pt;}
.xca_c00296{left:58.800000pt;}
.x9b_c00296{left:60.000000pt;}
.x60_c00296{left:61.333333pt;}
.x4_c00296{left:63.066667pt;}
.xf2_c00296{left:74.533333pt;}
.xc2_c00296{left:77.066667pt;}
.x33_c00296{left:80.800000pt;}
.x26_c00296{left:81.866667pt;}
.x81_c00296{left:87.733333pt;}
.xbf_c00296{left:91.333333pt;}
.xe1_c00296{left:92.933333pt;}
.xcb_c00296{left:96.933333pt;}
.x61_c00296{left:99.733333pt;}
.xa5_c00296{left:100.800000pt;}
.x6b_c00296{left:102.933333pt;}
.x89_c00296{left:105.066667pt;}
.x45_c00296{left:109.066667pt;}
.x7b_c00296{left:112.266667pt;}
.x57_c00296{left:116.266667pt;}
.xcc_c00296{left:118.400000pt;}
.x1d_c00296{left:120.533333pt;}
.x8a_c00296{left:122.666667pt;}
.x6c_c00296{left:124.666667pt;}
.x11_c00296{left:126.266667pt;}
.xa6_c00296{left:127.333333pt;}
.x9c_c00296{left:128.533333pt;}
.xc0_c00296{left:132.666667pt;}
.x46_c00296{left:135.333333pt;}
.x62_c00296{left:136.533333pt;}
.x3c_c00296{left:137.866667pt;}
.xcd_c00296{left:141.466667pt;}
.xf1_c00296{left:144.400000pt;}
.x8b_c00296{left:147.333333pt;}
.x12_c00296{left:150.000000pt;}
.x5_c00296{left:151.333333pt;}
.x63_c00296{left:153.466667pt;}
.x3d_c00296{left:157.333333pt;}
.xba_c00296{left:159.866667pt;}
.x47_c00296{left:162.800000pt;}
.x9d_c00296{left:164.666667pt;}
.xb3_c00296{left:167.733333pt;}
.x7c_c00296{left:168.933333pt;}
.xc3_c00296{left:170.133333pt;}
.x75_c00296{left:172.000000pt;}
.x13_c00296{left:173.333333pt;}
.x27_c00296{left:175.600000pt;}
.x95_c00296{left:184.533333pt;}
.xae_c00296{left:186.400000pt;}
.xfe_c00296{left:188.400000pt;}
.x8c_c00296{left:189.600000pt;}
.x1_c00296{left:191.333333pt;}
.x6_c00296{left:193.200000pt;}
.x51_c00296{left:194.533333pt;}
.x58_c00296{left:196.000000pt;}
.xce_c00296{left:202.933333pt;}
.x34_c00296{left:211.066667pt;}
.x1e_c00296{left:212.666667pt;}
.xed_c00296{left:213.733333pt;}
.x28_c00296{left:215.333333pt;}
.x7_c00296{left:216.533333pt;}
.x8d_c00296{left:218.133333pt;}
.x64_c00296{left:220.933333pt;}
.xcf_c00296{left:223.066667pt;}
.xaf_c00296{left:225.733333pt;}
.x59_c00296{left:227.066667pt;}
.x48_c00296{left:230.266667pt;}
.x76_c00296{left:231.866667pt;}
.x1f_c00296{left:235.066667pt;}
.x7d_c00296{left:237.066667pt;}
.x82_c00296{left:239.733333pt;}
.x29_c00296{left:240.933333pt;}
.xc4_c00296{left:242.133333pt;}
.x8e_c00296{left:244.666667pt;}
.x35_c00296{left:248.533333pt;}
.x83_c00296{left:254.800000pt;}
.x6d_c00296{left:256.133333pt;}
.x9e_c00296{left:257.733333pt;}
.xe2_c00296{left:259.066667pt;}
.x14_c00296{left:260.400000pt;}
.x5a_c00296{left:262.533333pt;}
.x8_c00296{left:263.600000pt;}
.xc5_c00296{left:267.733333pt;}
.x36_c00296{left:269.066667pt;}
.x77_c00296{left:270.000000pt;}
.xd6_c00296{left:274.800000pt;}
.x20_c00296{left:276.000000pt;}
.x96_c00296{left:277.866667pt;}
.xf3_c00296{left:279.333333pt;}
.x52_c00296{left:281.200000pt;}
.x9_c00296{left:285.333333pt;}
.xf6_c00296{left:286.933333pt;}
.xa7_c00296{left:288.000000pt;}
.x49_c00296{left:290.133333pt;}
.x65_c00296{left:294.800000pt;}
.xe8_c00296{left:295.733333pt;}
.x21_c00296{left:297.466667pt;}
.xe3_c00296{left:299.733333pt;}
.xd0_c00296{left:301.066667pt;}
.x6e_c00296{left:306.000000pt;}
.x2a_c00296{left:307.600000pt;}
.x8f_c00296{left:309.333333pt;}
.x84_c00296{left:311.733333pt;}
.x22_c00296{left:314.800000pt;}
.x4a_c00296{left:318.666667pt;}
.x3e_c00296{left:319.866667pt;}
.xbb_c00296{left:321.466667pt;}
.x5b_c00296{left:322.666667pt;}
.xf7_c00296{left:324.400000pt;}
.xa_c00296{left:328.266667pt;}
.x90_c00296{left:330.133333pt;}
.xd1_c00296{left:332.800000pt;}
.x15_c00296{left:336.266667pt;}
.x2b_c00296{left:337.733333pt;}
.x3f_c00296{left:340.000000pt;}
.xb4_c00296{left:346.000000pt;}
.x4b_c00296{left:347.466667pt;}
.xa8_c00296{left:349.066667pt;}
.x85_c00296{left:351.066667pt;}
.x37_c00296{left:356.400000pt;}
.xc6_c00296{left:357.733333pt;}
.xc1_c00296{left:358.933333pt;}
.x5c_c00296{left:360.133333pt;}
.xd7_c00296{left:363.466667pt;}
.xf8_c00296{left:364.666667pt;}
.xb5_c00296{left:367.733333pt;}
.x6f_c00296{left:369.066667pt;}
.x9f_c00296{left:370.133333pt;}
.x23_c00296{left:371.733333pt;}
.xd2_c00296{left:374.133333pt;}
.x66_c00296{left:375.066667pt;}
.xb0_c00296{left:378.933333pt;}
.x70_c00296{left:381.866667pt;}
.x16_c00296{left:383.333333pt;}
.xa0_c00296{left:385.200000pt;}
.x24_c00296{left:386.133333pt;}
.x5d_c00296{left:387.600000pt;}
.xb_c00296{left:389.333333pt;}
.x2c_c00296{left:392.133333pt;}
.x67_c00296{left:393.600000pt;}
.xdb_c00296{left:394.933333pt;}
.x38_c00296{left:396.400000pt;}
.xee_c00296{left:399.733333pt;}
.x53_c00296{left:401.466667pt;}
.xd8_c00296{left:402.533333pt;}
.xc7_c00296{left:404.400000pt;}
.x78_c00296{left:406.400000pt;}
.x39_c00296{left:407.600000pt;}
.x2d_c00296{left:410.000000pt;}
.xd3_c00296{left:413.466667pt;}
.x97_c00296{left:415.866667pt;}
.x71_c00296{left:418.666667pt;}
.x91_c00296{left:421.333333pt;}
.xf9_c00296{left:422.666667pt;}
.xd9_c00296{left:424.666667pt;}
.x40_c00296{left:425.866667pt;}
.xc_c00296{left:427.733333pt;}
.x17_c00296{left:429.733333pt;}
.x86_c00296{left:431.733333pt;}
.xa9_c00296{left:433.600000pt;}
.x3a_c00296{left:437.733333pt;}
.xef_c00296{left:440.666667pt;}
.xb1_c00296{left:441.600000pt;}
.x2_c00296{left:442.933333pt;}
.xb6_c00296{left:447.466667pt;}
.x4c_c00296{left:448.933333pt;}
.xaa_c00296{left:450.533333pt;}
.x92_c00296{left:451.733333pt;}
.x25_c00296{left:454.666667pt;}
.x3_c00296{left:458.666667pt;}
.xd4_c00296{left:459.600000pt;}
.x72_c00296{left:460.533333pt;}
.xf4_c00296{left:463.066667pt;}
.x79_c00296{left:466.933333pt;}
.x4d_c00296{left:471.600000pt;}
.x18_c00296{left:473.600000pt;}
.xff_c00296{left:475.200000pt;}
.xdc_c00296{left:477.200000pt;}
.x93_c00296{left:480.800000pt;}
.xe4_c00296{left:482.533333pt;}
.x54_c00296{left:484.000000pt;}
.x73_c00296{left:487.466667pt;}
.x98_c00296{left:489.066667pt;}
.x4e_c00296{left:491.733333pt;}
.xd_c00296{left:492.666667pt;}
.x41_c00296{left:497.600000pt;}
.xe9_c00296{left:499.600000pt;}
.xdd_c00296{left:500.933333pt;}
.x2e_c00296{left:501.866667pt;}
.xbc_c00296{left:502.933333pt;}
.xb7_c00296{left:505.066667pt;}
.x7e_c00296{left:506.266667pt;}
.xa1_c00296{left:508.000000pt;}
.xf5_c00296{left:509.733333pt;}
.x87_c00296{left:510.800000pt;}
.x55_c00296{left:514.666667pt;}
.x7f_c00296{left:520.000000pt;}
.x42_c00296{left:521.866667pt;}
.x2f_c00296{left:523.600000pt;}
.xc8_c00296{left:527.600000pt;}
.xe_c00296{left:531.066667pt;}
.x68_c00296{left:532.266667pt;}
.x56_c00296{left:533.200000pt;}
.xab_c00296{left:534.666667pt;}
.x19_c00296{left:536.266667pt;}
.x99_c00296{left:537.733333pt;}
.xfa_c00296{left:539.200000pt;}
.x30_c00296{left:541.466667pt;}
.x3b_c00296{left:545.600000pt;}
.x1a_c00296{left:549.333333pt;}
.xb2_c00296{left:551.066667pt;}
.xf_c00296{left:556.933333pt;}
.xac_c00296{left:560.933333pt;}
.xde_c00296{left:562.666667pt;}
.x69_c00296{left:564.000000pt;}
.x5e_c00296{left:564.933333pt;}
.x9a_c00296{left:569.066667pt;}
.xf0_c00296{left:571.200000pt;}
.xea_c00296{left:572.800000pt;}
.xbd_c00296{left:575.866667pt;}
.xb8_c00296{left:578.000000pt;}
.x74_c00296{left:580.933333pt;}
.xdf_c00296{left:584.400000pt;}
.xe5_c00296{left:585.866667pt;}
.x4f_c00296{left:586.800000pt;}
.x6a_c00296{left:591.200000pt;}
.xda_c00296{left:593.066667pt;}
.xa2_c00296{left:594.666667pt;}
.xad_c00296{left:596.400000pt;}
.x5f_c00296{left:597.600000pt;}
.xbe_c00296{left:599.866667pt;}
.x1b_c00296{left:602.133333pt;}
.x80_c00296{left:603.466667pt;}
.x50_c00296{left:606.266667pt;}
.x88_c00296{left:609.333333pt;}
.x31_c00296{left:611.866667pt;}
.xeb_c00296{left:612.800000pt;}
.xe0_c00296{left:616.666667pt;}
.xa3_c00296{left:617.733333pt;}
.x100_c00296{left:619.600000pt;}
.x43_c00296{left:621.333333pt;}
.xb9_c00296{left:626.666667pt;}
.xfb_c00296{left:628.800000pt;}
.xec_c00296{left:632.266667pt;}
.xe6_c00296{left:637.333333pt;}
.xc9_c00296{left:640.533333pt;}
.x44_c00296{left:642.133333pt;}
.x10_c00296{left:646.533333pt;}
.xd5_c00296{left:648.666667pt;}
.x7a_c00296{left:655.066667pt;}
.x101_c00296{left:656.400000pt;}
.x1c_c00296{left:658.800000pt;}
.x32_c00296{left:660.533333pt;}
.x94_c00296{left:663.466667pt;}
.xfc_c00296{left:666.533333pt;}
.xa4_c00296{left:671.466667pt;}
}





/* 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_c00297 {
    display:none;
  }
  .loading-indicator_c00297.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00297 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_c00297 { 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_c00297" -> "#page-container .classname_c00297")
 */
.pf_c00297 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00297 { /* 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_c00297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00297 { /* 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_c00297 { /* 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_c00297 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00297 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00297 {overflow:visible;}
  }
}
.c_c00297 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00297 { /* 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_c00297:after { /* webkit #35443 */
  content: '';
}
.t_c00297:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00297 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 */
}
.__c00297 { /* 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_c00297 { /* info for Javascript */
  display:none;
}
.l_c00297 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00297 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00297 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00297: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_c00297 {
    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_c00297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00297.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_c00297 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00297;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.000000;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;}
.m1d_c00297{transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00297{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00297{transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00297{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m7_c00297{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00297{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00297{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00297{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md0_c00297{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00297{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00297{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00297{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00297{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00297{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00297{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mba_c00297{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00297{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m41_c00297{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m8_c00297{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00297{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m60_c00297{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00297{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00297{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc_c00297{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00297{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m53_c00297{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m83_c00297{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m71_c00297{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00297{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb_c00297{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00297{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6_c00297{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m65_c00297{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00297{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md3_c00297{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00297{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m51_c00297{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00297{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mae_c00297{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00297{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m72_c00297{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00297{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00297{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m13_c00297{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mad_c00297{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00297{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.md8_c00297{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00297{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m48_c00297{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00297{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00297{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00297{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mda_c00297{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m89_c00297{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m86_c00297{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m18_c00297{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00297{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00297{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m40_c00297{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00297{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00297{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m78_c00297{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m70_c00297{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00297{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00297{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00297{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m10_c00297{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00297{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00297{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m80_c00297{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00297{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m92_c00297{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m74_c00297{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4_c00297{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md4_c00297{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m67_c00297{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00297{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mac_c00297{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m16_c00297{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m42_c00297{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md_c00297{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00297{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m29_c00297{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00297{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m54_c00297{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00297{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me_c00297{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00297{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00297{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00297{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m66_c00297{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m30_c00297{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mde_c00297{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m56_c00297{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m82_c00297{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m45_c00297{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m50_c00297{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m31_c00297{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m11_c00297{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m94_c00297{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m58_c00297{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m68_c00297{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00297{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00297{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m95_c00297{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m52_c00297{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m85_c00297{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md5_c00297{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.md2_c00297{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m26_c00297{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m64_c00297{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00297{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m91_c00297{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00297{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00297{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.ma_c00297{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00297{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m20_c00297{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m81_c00297{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00297{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m93_c00297{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00297{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.maa_c00297{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m28_c00297{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9_c00297{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00297{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m99_c00297{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m15_c00297{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00297{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mab_c00297{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m5_c00297{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m63_c00297{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.mca_c00297{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00297{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00297{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m19_c00297{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m12_c00297{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00297{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.md6_c00297{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.md7_c00297{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00297{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00297{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00297{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00297{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m77_c00297{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md1_c00297{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m75_c00297{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00297{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00297{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00297{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m73_c00297{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00297{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00297{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00297{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m37_c00297{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m61_c00297{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m59_c00297{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);}
.mdc_c00297{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00297{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m76_c00297{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00297{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf_c00297{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m62_c00297{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m98_c00297{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m84_c00297{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m97_c00297{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m87_c00297{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00297{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m96_c00297{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00297{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00297{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m23_c00297{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m25_c00297{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md9_c00297{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m47_c00297{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00297{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m24_c00297{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m39_c00297{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mce_c00297{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m79_c00297{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m90_c00297{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00297{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00297{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m21_c00297{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00297{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.maf_c00297{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00297{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m57_c00297{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m55_c00297{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00297{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00297{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00297{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00297{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m34_c00297{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00297{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m38_c00297{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00297{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00297{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00297{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m33_c00297{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m88_c00297{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m36_c00297{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m22_c00297{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00297{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m35_c00297{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m44_c00297{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00297{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00297{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00297{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m69_c00297{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m32_c00297{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00297{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00297{transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);}
.m27_c00297{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m43_c00297{transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00297{transform:matrix(0.433750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433750,0.000000,0.000000,0.250000,0,0);}
.m14_c00297{transform:matrix(0.443000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443000,0.000000,0.000000,0.250000,0,0);}
.m49_c00297{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m17_c00297{transform:matrix(0.461500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461500,0.000000,0.000000,0.250000,0,0);}
.m46_c00297{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls0_c00297{letter-spacing:0.000000px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{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__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00297{word-spacing:-13.738749px;}
.ws3_c00297{word-spacing:-10.777778px;}
.ws0_c00297{word-spacing:-3.396226px;}
.ws4_c00297{word-spacing:-1.304348px;}
.ws5_c00297{word-spacing:0.000000px;}
.ws1_c00297{word-spacing:6.650113px;}
.fc0_c00297{color:transparent;}
.fs3_c00297{font-size:66.000000px;}
.fs2_c00297{font-size:72.000000px;}
.fs1_c00297{font-size:78.000000px;}
.fs4_c00297{font-size:84.000000px;}
.fs0_c00297{font-size:102.000000px;}
.y0_c00297{bottom:0.000000px;}
.y29_c00297{bottom:195.150000px;}
.y28_c00297{bottom:220.050000px;}
.y27_c00297{bottom:244.950000px;}
.y26_c00297{bottom:269.400000px;}
.y25_c00297{bottom:294.300000px;}
.y24_c00297{bottom:319.500000px;}
.y23_c00297{bottom:344.400000px;}
.y22_c00297{bottom:368.850000px;}
.y21_c00297{bottom:405.600000px;}
.y20_c00297{bottom:417.900000px;}
.y1f_c00297{bottom:442.800000px;}
.y1e_c00297{bottom:468.000000px;}
.y1d_c00297{bottom:493.200000px;}
.y1c_c00297{bottom:517.650000px;}
.y1b_c00297{bottom:542.100000px;}
.y1a_c00297{bottom:567.000000px;}
.y19_c00297{bottom:591.900000px;}
.y18_c00297{bottom:616.350000px;}
.y17_c00297{bottom:640.500000px;}
.y16_c00297{bottom:669.150000px;}
.y15_c00297{bottom:694.050000px;}
.y14_c00297{bottom:718.950000px;}
.y13_c00297{bottom:743.400000px;}
.y12_c00297{bottom:767.850000px;}
.y11_c00297{bottom:792.750000px;}
.y10_c00297{bottom:816.750000px;}
.yf_c00297{bottom:841.650000px;}
.ye_c00297{bottom:866.100000px;}
.yd_c00297{bottom:895.200000px;}
.yc_c00297{bottom:920.100000px;}
.yb_c00297{bottom:944.250000px;}
.ya_c00297{bottom:944.850000px;}
.y9_c00297{bottom:969.750000px;}
.y8_c00297{bottom:994.650000px;}
.y7_c00297{bottom:1019.100000px;}
.y6_c00297{bottom:1044.000000px;}
.y5_c00297{bottom:1075.950000px;}
.y4_c00297{bottom:1109.100000px;}
.y3_c00297{bottom:1121.700000px;}
.y1_c00297{bottom:1147.350000px;}
.y2_c00297{bottom:1150.650000px;}
.h5_c00297{height:66.000000px;}
.h4_c00297{height:72.000000px;}
.h3_c00297{height:78.000000px;}
.h6_c00297{height:84.000000px;}
.h2_c00297{height:102.000000px;}
.h0_c00297{height:1266.480010px;}
.h1_c00297{height:1266.750000px;}
.w1_c00297{width:961.500000px;}
.w0_c00297{width:961.560058px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:188.250000px;}
.x5c_c00297{left:189.600000px;}
.x76_c00297{left:191.100000px;}
.xf5_c00297{left:192.450000px;}
.xe5_c00297{left:193.950000px;}
.xf0_c00297{left:195.600000px;}
.x10b_c00297{left:197.100000px;}
.x1e_c00297{left:209.850000px;}
.xa8_c00297{left:211.650000px;}
.x4b_c00297{left:212.700000px;}
.xec_c00297{left:216.150000px;}
.xc8_c00297{left:217.800000px;}
.xb7_c00297{left:219.750000px;}
.xbe_c00297{left:221.700000px;}
.x94_c00297{left:223.950000px;}
.xf6_c00297{left:225.600000px;}
.x3e_c00297{left:229.500000px;}
.xd5_c00297{left:230.550000px;}
.x19_c00297{left:231.900000px;}
.x82_c00297{left:234.300000px;}
.xde_c00297{left:237.600000px;}
.x63_c00297{left:239.700000px;}
.x1f_c00297{left:245.100000px;}
.x103_c00297{left:249.900000px;}
.x29_c00297{left:253.950000px;}
.x77_c00297{left:258.000000px;}
.xcd_c00297{left:260.700000px;}
.x1a_c00297{left:262.800000px;}
.xaf_c00297{left:265.500000px;}
.x7c_c00297{left:267.150000px;}
.x54_c00297{left:268.650000px;}
.x10e_c00297{left:272.700000px;}
.xce_c00297{left:274.050000px;}
.x20_c00297{left:277.800000px;}
.x35_c00297{left:281.250000px;}
.x1b_c00297{left:284.400000px;}
.x2a_c00297{left:286.050000px;}
.x3_c00297{left:288.000000px;}
.x104_c00297{left:289.500000px;}
.xe6_c00297{left:291.150000px;}
.xbf_c00297{left:292.200000px;}
.x78_c00297{left:293.250000px;}
.x7d_c00297{left:295.950000px;}
.x5d_c00297{left:297.600000px;}
.x4c_c00297{left:303.450000px;}
.xcf_c00297{left:305.700000px;}
.xd_c00297{left:308.250000px;}
.x5e_c00297{left:311.250000px;}
.xb0_c00297{left:313.050000px;}
.xc0_c00297{left:314.850000px;}
.x21_c00297{left:316.650000px;}
.x83_c00297{left:320.400000px;}
.x4_c00297{left:321.900000px;}
.x4d_c00297{left:324.750000px;}
.x2b_c00297{left:331.350000px;}
.x64_c00297{left:333.600000px;}
.xe7_c00297{left:337.650000px;}
.xd6_c00297{left:340.650000px;}
.xc9_c00297{left:342.000000px;}
.xed_c00297{left:345.000000px;}
.xe_c00297{left:347.850000px;}
.xdf_c00297{left:349.950000px;}
.x1c_c00297{left:351.300000px;}
.xf1_c00297{left:353.700000px;}
.x105_c00297{left:355.350000px;}
.x84_c00297{left:357.150000px;}
.x7e_c00297{left:361.800000px;}
.xa9_c00297{left:362.850000px;}
.x3f_c00297{left:364.050000px;}
.xca_c00297{left:367.200000px;}
.xf_c00297{left:370.500000px;}
.xff_c00297{left:372.000000px;}
.x95_c00297{left:373.950000px;}
.x6e_c00297{left:376.500000px;}
.xb8_c00297{left:377.700000px;}
.xe8_c00297{left:379.050000px;}
.x36_c00297{left:380.550000px;}
.x100_c00297{left:383.100000px;}
.xb1_c00297{left:384.750000px;}
.x10f_c00297{left:386.400000px;}
.x40_c00297{left:387.750000px;}
.xaa_c00297{left:389.850000px;}
.x22_c00297{left:393.000000px;}
.x65_c00297{left:394.500000px;}
.x79_c00297{left:398.400000px;}
.x9d_c00297{left:400.050000px;}
.x6f_c00297{left:401.700000px;}
.x85_c00297{left:405.750000px;}
.x101_c00297{left:417.000000px;}
.x66_c00297{left:418.950000px;}
.x2_c00297{left:420.450000px;}
.x2c_c00297{left:421.650000px;}
.xf2_c00297{left:423.150000px;}
.xb2_c00297{left:424.650000px;}
.x8d_c00297{left:426.000000px;}
.x37_c00297{left:427.050000px;}
.x5_c00297{left:428.850000px;}
.x2d_c00297{left:432.450000px;}
.xab_c00297{left:435.600000px;}
.xd7_c00297{left:437.550000px;}
.x4e_c00297{left:439.200000px;}
.x41_c00297{left:442.800000px;}
.x7f_c00297{left:444.900000px;}
.x9e_c00297{left:446.550000px;}
.x55_c00297{left:447.750000px;}
.x42_c00297{left:451.800000px;}
.x1d_c00297{left:452.850000px;}
.xb9_c00297{left:454.800000px;}
.x6_c00297{left:456.150000px;}
.x10_c00297{left:459.000000px;}
.x4f_c00297{left:461.850000px;}
.x5f_c00297{left:466.050000px;}
.x96_c00297{left:469.050000px;}
.x23_c00297{left:470.100000px;}
.xee_c00297{left:480.300000px;}
.x50_c00297{left:483.150000px;}
.x38_c00297{left:485.400000px;}
.x106_c00297{left:486.750000px;}
.x60_c00297{left:488.400000px;}
.xe0_c00297{left:491.400000px;}
.xc1_c00297{left:493.500000px;}
.xd8_c00297{left:495.150000px;}
.x7a_c00297{left:497.100000px;}
.x11_c00297{left:500.400000px;}
.xa2_c00297{left:501.900000px;}
.x86_c00297{left:503.250000px;}
.xef_c00297{left:506.250000px;}
.xb3_c00297{left:513.600000px;}
.x67_c00297{left:515.850000px;}
.x9f_c00297{left:517.500000px;}
.x107_c00297{left:520.650000px;}
.xc2_c00297{left:522.000000px;}
.x12_c00297{left:523.500000px;}
.x2e_c00297{left:524.700000px;}
.xd9_c00297{left:526.050000px;}
.xa3_c00297{left:527.400000px;}
.x97_c00297{left:528.450000px;}
.xf7_c00297{left:531.150000px;}
.x56_c00297{left:533.400000px;}
.xf3_c00297{left:537.600000px;}
.x87_c00297{left:539.250000px;}
.x68_c00297{left:541.800000px;}
.x39_c00297{left:544.500000px;}
.x61_c00297{left:547.050000px;}
.x2f_c00297{left:549.150000px;}
.xa4_c00297{left:550.800000px;}
.x70_c00297{left:552.450000px;}
.x8e_c00297{left:554.250000px;}
.xcb_c00297{left:556.500000px;}
.x57_c00297{left:557.850000px;}
.x24_c00297{left:563.700000px;}
.x7_c00297{left:567.000000px;}
.x43_c00297{left:571.350000px;}
.x51_c00297{left:574.200000px;}
.x3a_c00297{left:575.850000px;}
.xd0_c00297{left:578.250000px;}
.xba_c00297{left:580.800000px;}
.x52_c00297{left:583.200000px;}
.xa0_c00297{left:585.300000px;}
.xf8_c00297{left:586.950000px;}
.xd1_c00297{left:588.300000px;}
.x8_c00297{left:591.450000px;}
.xe1_c00297{left:595.800000px;}
.x13_c00297{left:597.000000px;}
.x98_c00297{left:599.400000px;}
.x9_c00297{left:601.200000px;}
.x44_c00297{left:602.250000px;}
.x110_c00297{left:606.300000px;}
.x69_c00297{left:609.900000px;}
.xbb_c00297{left:611.700000px;}
.xa5_c00297{left:613.800000px;}
.x62_c00297{left:615.450000px;}
.x58_c00297{left:619.500000px;}
.x45_c00297{left:622.350000px;}
.x71_c00297{left:624.900000px;}
.x14_c00297{left:626.550000px;}
.xc3_c00297{left:628.200000px;}
.xe9_c00297{left:629.850000px;}
.xac_c00297{left:631.350000px;}
.xb4_c00297{left:632.400000px;}
.x25_c00297{left:636.450000px;}
.x88_c00297{left:637.800000px;}
.xc4_c00297{left:639.300000px;}
.x99_c00297{left:640.800000px;}
.x8f_c00297{left:643.200000px;}
.x30_c00297{left:644.550000px;}
.x15_c00297{left:649.650000px;}
.x108_c00297{left:652.050000px;}
.xa6_c00297{left:653.400000px;}
.x9a_c00297{left:658.800000px;}
.x3b_c00297{left:661.200000px;}
.xbc_c00297{left:664.200000px;}
.xda_c00297{left:667.200000px;}
.x90_c00297{left:668.400000px;}
.x26_c00297{left:669.600000px;}
.xc5_c00297{left:670.650000px;}
.x6a_c00297{left:674.700000px;}
.x31_c00297{left:676.950000px;}
.xe2_c00297{left:679.050000px;}
.xf9_c00297{left:683.850000px;}
.xd2_c00297{left:685.500000px;}
.xfc_c00297{left:688.950000px;}
.xc6_c00297{left:690.150000px;}
.xad_c00297{left:692.250000px;}
.x59_c00297{left:693.300000px;}
.x53_c00297{left:696.300000px;}
.x89_c00297{left:700.500000px;}
.xea_c00297{left:701.850000px;}
.x32_c00297{left:704.250000px;}
.xdb_c00297{left:707.100000px;}
.xa_c00297{left:708.150000px;}
.x6b_c00297{left:709.950000px;}
.x91_c00297{left:711.300000px;}
.x109_c00297{left:712.950000px;}
.x27_c00297{left:717.150000px;}
.x5a_c00297{left:719.550000px;}
.x46_c00297{left:720.600000px;}
.xeb_c00297{left:721.650000px;}
.x8a_c00297{left:723.900000px;}
.x9b_c00297{left:725.700000px;}
.x72_c00297{left:726.750000px;}
.x10a_c00297{left:728.100000px;}
.x111_c00297{left:730.500000px;}
.xfa_c00297{left:731.700000px;}
.xa1_c00297{left:733.350000px;}
.x92_c00297{left:740.850000px;}
.xe3_c00297{left:744.150000px;}
.xb_c00297{left:746.250000px;}
.x47_c00297{left:750.900000px;}
.x6c_c00297{left:754.650000px;}
.xbd_c00297{left:757.050000px;}
.xd3_c00297{left:758.250000px;}
.x112_c00297{left:759.600000px;}
.x73_c00297{left:760.650000px;}
.xae_c00297{left:764.250000px;}
.x48_c00297{left:769.200000px;}
.x16_c00297{left:771.300000px;}
.xdc_c00297{left:772.650000px;}
.x80_c00297{left:774.150000px;}
.xc7_c00297{left:776.550000px;}
.x93_c00297{left:777.900000px;}
.x10c_c00297{left:781.650000px;}
.x5b_c00297{left:786.900000px;}
.x8b_c00297{left:787.950000px;}
.x33_c00297{left:789.600000px;}
.xe4_c00297{left:791.250000px;}
.x74_c00297{left:793.050000px;}
.x9c_c00297{left:796.200000px;}
.x3c_c00297{left:798.300000px;}
.x81_c00297{left:801.900000px;}
.x17_c00297{left:802.950000px;}
.xf4_c00297{left:804.150000px;}
.x49_c00297{left:805.950000px;}
.xb5_c00297{left:809.100000px;}
.xcc_c00297{left:813.300000px;}
.x6d_c00297{left:815.850000px;}
.x28_c00297{left:819.450000px;}
.x18_c00297{left:824.850000px;}
.xfd_c00297{left:828.600000px;}
.xb6_c00297{left:835.350000px;}
.x34_c00297{left:838.200000px;}
.x7b_c00297{left:841.950000px;}
.xc_c00297{left:843.150000px;}
.x3d_c00297{left:845.400000px;}
.x102_c00297{left:846.450000px;}
.x8c_c00297{left:848.100000px;}
.xd4_c00297{left:852.600000px;}
.x4a_c00297{left:854.550000px;}
.x10d_c00297{left:858.750000px;}
.xfb_c00297{left:860.850000px;}
.xa7_c00297{left:864.750000px;}
.x75_c00297{left:867.900000px;}
.xdd_c00297{left:872.700000px;}
.xfe_c00297{left:884.100000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws2_c00297{word-spacing:-12.212221pt;}
.ws3_c00297{word-spacing:-9.580247pt;}
.ws0_c00297{word-spacing:-3.018868pt;}
.ws4_c00297{word-spacing:-1.159420pt;}
.ws5_c00297{word-spacing:0.000000pt;}
.ws1_c00297{word-spacing:5.911211pt;}
.fs3_c00297{font-size:58.666667pt;}
.fs2_c00297{font-size:64.000000pt;}
.fs1_c00297{font-size:69.333333pt;}
.fs4_c00297{font-size:74.666667pt;}
.fs0_c00297{font-size:90.666667pt;}
.y0_c00297{bottom:0.000000pt;}
.y29_c00297{bottom:173.466667pt;}
.y28_c00297{bottom:195.600000pt;}
.y27_c00297{bottom:217.733333pt;}
.y26_c00297{bottom:239.466667pt;}
.y25_c00297{bottom:261.600000pt;}
.y24_c00297{bottom:284.000000pt;}
.y23_c00297{bottom:306.133333pt;}
.y22_c00297{bottom:327.866667pt;}
.y21_c00297{bottom:360.533333pt;}
.y20_c00297{bottom:371.466667pt;}
.y1f_c00297{bottom:393.600000pt;}
.y1e_c00297{bottom:416.000000pt;}
.y1d_c00297{bottom:438.400000pt;}
.y1c_c00297{bottom:460.133333pt;}
.y1b_c00297{bottom:481.866667pt;}
.y1a_c00297{bottom:504.000000pt;}
.y19_c00297{bottom:526.133333pt;}
.y18_c00297{bottom:547.866667pt;}
.y17_c00297{bottom:569.333333pt;}
.y16_c00297{bottom:594.800000pt;}
.y15_c00297{bottom:616.933333pt;}
.y14_c00297{bottom:639.066667pt;}
.y13_c00297{bottom:660.800000pt;}
.y12_c00297{bottom:682.533333pt;}
.y11_c00297{bottom:704.666667pt;}
.y10_c00297{bottom:726.000000pt;}
.yf_c00297{bottom:748.133333pt;}
.ye_c00297{bottom:769.866667pt;}
.yd_c00297{bottom:795.733333pt;}
.yc_c00297{bottom:817.866667pt;}
.yb_c00297{bottom:839.333333pt;}
.ya_c00297{bottom:839.866667pt;}
.y9_c00297{bottom:862.000000pt;}
.y8_c00297{bottom:884.133333pt;}
.y7_c00297{bottom:905.866667pt;}
.y6_c00297{bottom:928.000000pt;}
.y5_c00297{bottom:956.400000pt;}
.y4_c00297{bottom:985.866667pt;}
.y3_c00297{bottom:997.066667pt;}
.y1_c00297{bottom:1019.866667pt;}
.y2_c00297{bottom:1022.800000pt;}
.h5_c00297{height:58.666667pt;}
.h4_c00297{height:64.000000pt;}
.h3_c00297{height:69.333333pt;}
.h6_c00297{height:74.666667pt;}
.h2_c00297{height:90.666667pt;}
.h0_c00297{height:1125.760009pt;}
.h1_c00297{height:1126.000000pt;}
.w1_c00297{width:854.666667pt;}
.w0_c00297{width:854.720052pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:167.333333pt;}
.x5c_c00297{left:168.533333pt;}
.x76_c00297{left:169.866667pt;}
.xf5_c00297{left:171.066667pt;}
.xe5_c00297{left:172.400000pt;}
.xf0_c00297{left:173.866667pt;}
.x10b_c00297{left:175.200000pt;}
.x1e_c00297{left:186.533333pt;}
.xa8_c00297{left:188.133333pt;}
.x4b_c00297{left:189.066667pt;}
.xec_c00297{left:192.133333pt;}
.xc8_c00297{left:193.600000pt;}
.xb7_c00297{left:195.333333pt;}
.xbe_c00297{left:197.066667pt;}
.x94_c00297{left:199.066667pt;}
.xf6_c00297{left:200.533333pt;}
.x3e_c00297{left:204.000000pt;}
.xd5_c00297{left:204.933333pt;}
.x19_c00297{left:206.133333pt;}
.x82_c00297{left:208.266667pt;}
.xde_c00297{left:211.200000pt;}
.x63_c00297{left:213.066667pt;}
.x1f_c00297{left:217.866667pt;}
.x103_c00297{left:222.133333pt;}
.x29_c00297{left:225.733333pt;}
.x77_c00297{left:229.333333pt;}
.xcd_c00297{left:231.733333pt;}
.x1a_c00297{left:233.600000pt;}
.xaf_c00297{left:236.000000pt;}
.x7c_c00297{left:237.466667pt;}
.x54_c00297{left:238.800000pt;}
.x10e_c00297{left:242.400000pt;}
.xce_c00297{left:243.600000pt;}
.x20_c00297{left:246.933333pt;}
.x35_c00297{left:250.000000pt;}
.x1b_c00297{left:252.800000pt;}
.x2a_c00297{left:254.266667pt;}
.x3_c00297{left:256.000000pt;}
.x104_c00297{left:257.333333pt;}
.xe6_c00297{left:258.800000pt;}
.xbf_c00297{left:259.733333pt;}
.x78_c00297{left:260.666667pt;}
.x7d_c00297{left:263.066667pt;}
.x5d_c00297{left:264.533333pt;}
.x4c_c00297{left:269.733333pt;}
.xcf_c00297{left:271.733333pt;}
.xd_c00297{left:274.000000pt;}
.x5e_c00297{left:276.666667pt;}
.xb0_c00297{left:278.266667pt;}
.xc0_c00297{left:279.866667pt;}
.x21_c00297{left:281.466667pt;}
.x83_c00297{left:284.800000pt;}
.x4_c00297{left:286.133333pt;}
.x4d_c00297{left:288.666667pt;}
.x2b_c00297{left:294.533333pt;}
.x64_c00297{left:296.533333pt;}
.xe7_c00297{left:300.133333pt;}
.xd6_c00297{left:302.800000pt;}
.xc9_c00297{left:304.000000pt;}
.xed_c00297{left:306.666667pt;}
.xe_c00297{left:309.200000pt;}
.xdf_c00297{left:311.066667pt;}
.x1c_c00297{left:312.266667pt;}
.xf1_c00297{left:314.400000pt;}
.x105_c00297{left:315.866667pt;}
.x84_c00297{left:317.466667pt;}
.x7e_c00297{left:321.600000pt;}
.xa9_c00297{left:322.533333pt;}
.x3f_c00297{left:323.600000pt;}
.xca_c00297{left:326.400000pt;}
.xf_c00297{left:329.333333pt;}
.xff_c00297{left:330.666667pt;}
.x95_c00297{left:332.400000pt;}
.x6e_c00297{left:334.666667pt;}
.xb8_c00297{left:335.733333pt;}
.xe8_c00297{left:336.933333pt;}
.x36_c00297{left:338.266667pt;}
.x100_c00297{left:340.533333pt;}
.xb1_c00297{left:342.000000pt;}
.x10f_c00297{left:343.466667pt;}
.x40_c00297{left:344.666667pt;}
.xaa_c00297{left:346.533333pt;}
.x22_c00297{left:349.333333pt;}
.x65_c00297{left:350.666667pt;}
.x79_c00297{left:354.133333pt;}
.x9d_c00297{left:355.600000pt;}
.x6f_c00297{left:357.066667pt;}
.x85_c00297{left:360.666667pt;}
.x101_c00297{left:370.666667pt;}
.x66_c00297{left:372.400000pt;}
.x2_c00297{left:373.733333pt;}
.x2c_c00297{left:374.800000pt;}
.xf2_c00297{left:376.133333pt;}
.xb2_c00297{left:377.466667pt;}
.x8d_c00297{left:378.666667pt;}
.x37_c00297{left:379.600000pt;}
.x5_c00297{left:381.200000pt;}
.x2d_c00297{left:384.400000pt;}
.xab_c00297{left:387.200000pt;}
.xd7_c00297{left:388.933333pt;}
.x4e_c00297{left:390.400000pt;}
.x41_c00297{left:393.600000pt;}
.x7f_c00297{left:395.466667pt;}
.x9e_c00297{left:396.933333pt;}
.x55_c00297{left:398.000000pt;}
.x42_c00297{left:401.600000pt;}
.x1d_c00297{left:402.533333pt;}
.xb9_c00297{left:404.266667pt;}
.x6_c00297{left:405.466667pt;}
.x10_c00297{left:408.000000pt;}
.x4f_c00297{left:410.533333pt;}
.x5f_c00297{left:414.266667pt;}
.x96_c00297{left:416.933333pt;}
.x23_c00297{left:417.866667pt;}
.xee_c00297{left:426.933333pt;}
.x50_c00297{left:429.466667pt;}
.x38_c00297{left:431.466667pt;}
.x106_c00297{left:432.666667pt;}
.x60_c00297{left:434.133333pt;}
.xe0_c00297{left:436.800000pt;}
.xc1_c00297{left:438.666667pt;}
.xd8_c00297{left:440.133333pt;}
.x7a_c00297{left:441.866667pt;}
.x11_c00297{left:444.800000pt;}
.xa2_c00297{left:446.133333pt;}
.x86_c00297{left:447.333333pt;}
.xef_c00297{left:450.000000pt;}
.xb3_c00297{left:456.533333pt;}
.x67_c00297{left:458.533333pt;}
.x9f_c00297{left:460.000000pt;}
.x107_c00297{left:462.800000pt;}
.xc2_c00297{left:464.000000pt;}
.x12_c00297{left:465.333333pt;}
.x2e_c00297{left:466.400000pt;}
.xd9_c00297{left:467.600000pt;}
.xa3_c00297{left:468.800000pt;}
.x97_c00297{left:469.733333pt;}
.xf7_c00297{left:472.133333pt;}
.x56_c00297{left:474.133333pt;}
.xf3_c00297{left:477.866667pt;}
.x87_c00297{left:479.333333pt;}
.x68_c00297{left:481.600000pt;}
.x39_c00297{left:484.000000pt;}
.x61_c00297{left:486.266667pt;}
.x2f_c00297{left:488.133333pt;}
.xa4_c00297{left:489.600000pt;}
.x70_c00297{left:491.066667pt;}
.x8e_c00297{left:492.666667pt;}
.xcb_c00297{left:494.666667pt;}
.x57_c00297{left:495.866667pt;}
.x24_c00297{left:501.066667pt;}
.x7_c00297{left:504.000000pt;}
.x43_c00297{left:507.866667pt;}
.x51_c00297{left:510.400000pt;}
.x3a_c00297{left:511.866667pt;}
.xd0_c00297{left:514.000000pt;}
.xba_c00297{left:516.266667pt;}
.x52_c00297{left:518.400000pt;}
.xa0_c00297{left:520.266667pt;}
.xf8_c00297{left:521.733333pt;}
.xd1_c00297{left:522.933333pt;}
.x8_c00297{left:525.733333pt;}
.xe1_c00297{left:529.600000pt;}
.x13_c00297{left:530.666667pt;}
.x98_c00297{left:532.800000pt;}
.x9_c00297{left:534.400000pt;}
.x44_c00297{left:535.333333pt;}
.x110_c00297{left:538.933333pt;}
.x69_c00297{left:542.133333pt;}
.xbb_c00297{left:543.733333pt;}
.xa5_c00297{left:545.600000pt;}
.x62_c00297{left:547.066667pt;}
.x58_c00297{left:550.666667pt;}
.x45_c00297{left:553.200000pt;}
.x71_c00297{left:555.466667pt;}
.x14_c00297{left:556.933333pt;}
.xc3_c00297{left:558.400000pt;}
.xe9_c00297{left:559.866667pt;}
.xac_c00297{left:561.200000pt;}
.xb4_c00297{left:562.133333pt;}
.x25_c00297{left:565.733333pt;}
.x88_c00297{left:566.933333pt;}
.xc4_c00297{left:568.266667pt;}
.x99_c00297{left:569.600000pt;}
.x8f_c00297{left:571.733333pt;}
.x30_c00297{left:572.933333pt;}
.x15_c00297{left:577.466667pt;}
.x108_c00297{left:579.600000pt;}
.xa6_c00297{left:580.800000pt;}
.x9a_c00297{left:585.600000pt;}
.x3b_c00297{left:587.733333pt;}
.xbc_c00297{left:590.400000pt;}
.xda_c00297{left:593.066667pt;}
.x90_c00297{left:594.133333pt;}
.x26_c00297{left:595.200000pt;}
.xc5_c00297{left:596.133333pt;}
.x6a_c00297{left:599.733333pt;}
.x31_c00297{left:601.733333pt;}
.xe2_c00297{left:603.600000pt;}
.xf9_c00297{left:607.866667pt;}
.xd2_c00297{left:609.333333pt;}
.xfc_c00297{left:612.400000pt;}
.xc6_c00297{left:613.466667pt;}
.xad_c00297{left:615.333333pt;}
.x59_c00297{left:616.266667pt;}
.x53_c00297{left:618.933333pt;}
.x89_c00297{left:622.666667pt;}
.xea_c00297{left:623.866667pt;}
.x32_c00297{left:626.000000pt;}
.xdb_c00297{left:628.533333pt;}
.xa_c00297{left:629.466667pt;}
.x6b_c00297{left:631.066667pt;}
.x91_c00297{left:632.266667pt;}
.x109_c00297{left:633.733333pt;}
.x27_c00297{left:637.466667pt;}
.x5a_c00297{left:639.600000pt;}
.x46_c00297{left:640.533333pt;}
.xeb_c00297{left:641.466667pt;}
.x8a_c00297{left:643.466667pt;}
.x9b_c00297{left:645.066667pt;}
.x72_c00297{left:646.000000pt;}
.x10a_c00297{left:647.200000pt;}
.x111_c00297{left:649.333333pt;}
.xfa_c00297{left:650.400000pt;}
.xa1_c00297{left:651.866667pt;}
.x92_c00297{left:658.533333pt;}
.xe3_c00297{left:661.466667pt;}
.xb_c00297{left:663.333333pt;}
.x47_c00297{left:667.466667pt;}
.x6c_c00297{left:670.800000pt;}
.xbd_c00297{left:672.933333pt;}
.xd3_c00297{left:674.000000pt;}
.x112_c00297{left:675.200000pt;}
.x73_c00297{left:676.133333pt;}
.xae_c00297{left:679.333333pt;}
.x48_c00297{left:683.733333pt;}
.x16_c00297{left:685.600000pt;}
.xdc_c00297{left:686.800000pt;}
.x80_c00297{left:688.133333pt;}
.xc7_c00297{left:690.266667pt;}
.x93_c00297{left:691.466667pt;}
.x10c_c00297{left:694.800000pt;}
.x5b_c00297{left:699.466667pt;}
.x8b_c00297{left:700.400000pt;}
.x33_c00297{left:701.866667pt;}
.xe4_c00297{left:703.333333pt;}
.x74_c00297{left:704.933333pt;}
.x9c_c00297{left:707.733333pt;}
.x3c_c00297{left:709.600000pt;}
.x81_c00297{left:712.800000pt;}
.x17_c00297{left:713.733333pt;}
.xf4_c00297{left:714.800000pt;}
.x49_c00297{left:716.400000pt;}
.xb5_c00297{left:719.200000pt;}
.xcc_c00297{left:722.933333pt;}
.x6d_c00297{left:725.200000pt;}
.x28_c00297{left:728.400000pt;}
.x18_c00297{left:733.200000pt;}
.xfd_c00297{left:736.533333pt;}
.xb6_c00297{left:742.533333pt;}
.x34_c00297{left:745.066667pt;}
.x7b_c00297{left:748.400000pt;}
.xc_c00297{left:749.466667pt;}
.x3d_c00297{left:751.466667pt;}
.x102_c00297{left:752.400000pt;}
.x8c_c00297{left:753.866667pt;}
.xd4_c00297{left:757.866667pt;}
.x4a_c00297{left:759.600000pt;}
.x10d_c00297{left:763.333333pt;}
.xfb_c00297{left:765.200000pt;}
.xa7_c00297{left:768.666667pt;}
.x75_c00297{left:771.466667pt;}
.xdd_c00297{left:775.733333pt;}
.xfe_c00297{left:785.866667pt;}
}





/* 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_c00298 {
    display:none;
  }
  .loading-indicator_c00298.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00298 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_c00298 { 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_c00298" -> "#page-container .classname_c00298")
 */
.pf_c00298 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00298 { /* 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_c00298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00298 { /* 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_c00298 { /* 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_c00298 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00298 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00298 {overflow:visible;}
  }
}
.c_c00298 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00298 { /* 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_c00298:after { /* webkit #35443 */
  content: '';
}
.t_c00298:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00298 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 */
}
.__c00298 { /* 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_c00298 { /* info for Javascript */
  display:none;
}
.l_c00298 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00298 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00298 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00298: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_c00298 {
    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_c00298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00298.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_c00298 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00298;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.000000;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;}
.ma2_c00298{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.me6_c00298{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00298{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m64_c00298{transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);}
.me7_c00298{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00298{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.me4_c00298{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00298{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00298{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.me9_c00298{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00298{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mc_c00298{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00298{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m66_c00298{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00298{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m56_c00298{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00298{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mea_c00298{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.med_c00298{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m16_c00298{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00298{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md0_c00298{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.me5_c00298{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.mee_c00298{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00298{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00298{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00298{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00298{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00298{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00298{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m72_c00298{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m95_c00298{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mab_c00298{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00298{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00298{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00298{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m60_c00298{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00298{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m90_c00298{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mde_c00298{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00298{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00298{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mad_c00298{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00298{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m67_c00298{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m38_c00298{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m69_c00298{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m48_c00298{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00298{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m37_c00298{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m93_c00298{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.maa_c00298{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m18_c00298{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00298{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00298{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.md2_c00298{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m43_c00298{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m71_c00298{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m33_c00298{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00298{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m47_c00298{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00298{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00298{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m96_c00298{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00298{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00298{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00298{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00298{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m46_c00298{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00298{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00298{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m34_c00298{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m79_c00298{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00298{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m63_c00298{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m25_c00298{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00298{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m10_c00298{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m36_c00298{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00298{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00298{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m39_c00298{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00298{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m98_c00298{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m77_c00298{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00298{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m92_c00298{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00298{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.md_c00298{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mae_c00298{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00298{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m22_c00298{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00298{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m62_c00298{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00298{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00298{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00298{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m20_c00298{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00298{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00298{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00298{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00298{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m35_c00298{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00298{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m5_c00298{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m75_c00298{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m23_c00298{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m26_c00298{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.maf_c00298{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mef_c00298{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00298{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m41_c00298{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m85_c00298{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00298{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m94_c00298{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00298{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m31_c00298{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me2_c00298{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00298{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.me0_c00298{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00298{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00298{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00298{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m65_c00298{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m76_c00298{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00298{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m11_c00298{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00298{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00298{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m73_c00298{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00298{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m74_c00298{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00298{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mda_c00298{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m87_c00298{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m45_c00298{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00298{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m27_c00298{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m12_c00298{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00298{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me_c00298{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m89_c00298{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00298{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m30_c00298{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00298{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00298{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m59_c00298{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf_c00298{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00298{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00298{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m78_c00298{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m19_c00298{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00298{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m61_c00298{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mec_c00298{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me8_c00298{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md1_c00298{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m80_c00298{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m70_c00298{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00298{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);}
.mca_c00298{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00298{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md3_c00298{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00298{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00298{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00298{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00298{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m15_c00298{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m29_c00298{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m55_c00298{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00298{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m21_c00298{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00298{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00298{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00298{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00298{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.mb_c00298{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.md5_c00298{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.meb_c00298{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m53_c00298{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m17_c00298{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md7_c00298{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00298{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mac_c00298{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m84_c00298{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00298{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00298{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m32_c00298{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mba_c00298{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00298{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m8_c00298{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00298{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00298{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.ma_c00298{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00298{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m42_c00298{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00298{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m99_c00298{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00298{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.md8_c00298{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m24_c00298{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00298{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00298{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00298{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md4_c00298{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m81_c00298{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00298{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m9_c00298{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00298{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m57_c00298{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m91_c00298{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m40_c00298{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m54_c00298{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m13_c00298{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00298{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m51_c00298{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m83_c00298{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m14_c00298{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00298{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.m68_c00298{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m97_c00298{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00298{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m58_c00298{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00298{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m49_c00298{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m82_c00298{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00298{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m52_c00298{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mce_c00298{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me3_c00298{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.md6_c00298{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m0_c00298{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00298{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00298{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m86_c00298{transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);}
.m28_c00298{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m50_c00298{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.me1_c00298{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m88_c00298{transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);}
.m44_c00298{transform:matrix(0.383250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383250,0.000000,0.000000,0.250000,0,0);}
.m7_c00298{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(1.056000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.056000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.056000,0.000000,0.000000,0.250000,0,0);}
.md9_c00298{transform:matrix(2.926750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.926750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.926750,0.000000,0.000000,0.250000,0,0);}
.m6_c00298{transform:matrix(4.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.152000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls0_c00298{letter-spacing:0.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{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__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:-20.000000px;}
.ws7_c00298{word-spacing:-9.995988px;}
.ws6_c00298{word-spacing:-6.460497px;}
.ws5_c00298{word-spacing:-5.875000px;}
.wsa_c00298{word-spacing:0.000000px;}
.ws8_c00298{word-spacing:1.474827px;}
.ws1_c00298{word-spacing:4.250000px;}
.ws4_c00298{word-spacing:4.434783px;}
.ws9_c00298{word-spacing:6.240122px;}
.ws2_c00298{word-spacing:8.571429px;}
.ws3_c00298{word-spacing:22.620321px;}
.fc0_c00298{color:transparent;}
.fs1_c00298{font-size:30.000000px;}
.fs7_c00298{font-size:42.000000px;}
.fs6_c00298{font-size:54.000000px;}
.fs8_c00298{font-size:60.000000px;}
.fs4_c00298{font-size:66.000000px;}
.fs2_c00298{font-size:72.000000px;}
.fs3_c00298{font-size:78.000000px;}
.fs0_c00298{font-size:108.000000px;}
.fs5_c00298{font-size:114.000000px;}
.y0_c00298{bottom:0.000000px;}
.y29_c00298{bottom:210.900000px;}
.y28_c00298{bottom:213.750000px;}
.y27_c00298{bottom:229.650000px;}
.y26_c00298{bottom:248.700000px;}
.y25_c00298{bottom:267.900000px;}
.y24_c00298{bottom:304.200000px;}
.y23_c00298{bottom:327.900000px;}
.y22_c00298{bottom:353.100000px;}
.y21_c00298{bottom:378.300000px;}
.y20_c00298{bottom:402.750000px;}
.y1f_c00298{bottom:426.900000px;}
.y1e_c00298{bottom:451.350000px;}
.y1d_c00298{bottom:476.250000px;}
.y1c_c00298{bottom:500.400000px;}
.y1b_c00298{bottom:525.300000px;}
.y1a_c00298{bottom:550.200000px;}
.y19_c00298{bottom:573.900000px;}
.y18_c00298{bottom:597.600000px;}
.y17_c00298{bottom:627.150000px;}
.y16_c00298{bottom:651.600000px;}
.y15_c00298{bottom:675.750000px;}
.y14_c00298{bottom:705.000000px;}
.y13_c00298{bottom:729.450000px;}
.y12_c00298{bottom:754.650000px;}
.y11_c00298{bottom:778.350000px;}
.y10_c00298{bottom:803.250000px;}
.yf_c00298{bottom:827.400000px;}
.ye_c00298{bottom:851.850000px;}
.yd_c00298{bottom:876.300000px;}
.yc_c00298{bottom:904.650000px;}
.yb_c00298{bottom:929.550000px;}
.ya_c00298{bottom:954.000000px;}
.y9_c00298{bottom:983.400000px;}
.y8_c00298{bottom:1008.300000px;}
.y7_c00298{bottom:1032.750000px;}
.y6_c00298{bottom:1057.200000px;}
.y5_c00298{bottom:1082.100000px;}
.y4_c00298{bottom:1106.250000px;}
.y3_c00298{bottom:1130.700000px;}
.y1_c00298{bottom:1156.350000px;}
.y2_c00298{bottom:1272.600000px;}
.h3_c00298{height:30.000000px;}
.h9_c00298{height:42.000000px;}
.h8_c00298{height:54.000000px;}
.ha_c00298{height:60.000000px;}
.h6_c00298{height:66.000000px;}
.h4_c00298{height:72.000000px;}
.h5_c00298{height:78.000000px;}
.h2_c00298{height:108.000000px;}
.h7_c00298{height:114.000000px;}
.h1_c00298{height:1274.250000px;}
.h0_c00298{height:1274.400056px;}
.w1_c00298{width:961.500000px;}
.w0_c00298{width:961.560058px;}
.x0_c00298{left:0.000000px;}
.x3_c00298{left:40.350000px;}
.x117_c00298{left:51.900000px;}
.x10c_c00298{left:52.950000px;}
.xfa_c00298{left:55.650000px;}
.xe9_c00298{left:57.450000px;}
.xed_c00298{left:58.500000px;}
.xdf_c00298{left:59.850000px;}
.x87_c00298{left:60.900000px;}
.xb5_c00298{left:63.600000px;}
.xa3_c00298{left:65.250000px;}
.x93_c00298{left:67.500000px;}
.x77_c00298{left:69.600000px;}
.x64_c00298{left:70.800000px;}
.x4b_c00298{left:72.900000px;}
.x3c_c00298{left:74.700000px;}
.x18_c00298{left:75.750000px;}
.xa_c00298{left:77.400000px;}
.xc3_c00298{left:83.550000px;}
.xac_c00298{left:84.600000px;}
.x80_c00298{left:86.100000px;}
.xee_c00298{left:88.050000px;}
.xd6_c00298{left:89.100000px;}
.x6b_c00298{left:90.750000px;}
.x103_c00298{left:93.300000px;}
.x54_c00298{left:94.650000px;}
.xbe_c00298{left:97.950000px;}
.x30_c00298{left:99.450000px;}
.xa4_c00298{left:103.800000px;}
.xe0_c00298{left:106.950000px;}
.x94_c00298{left:108.600000px;}
.xbf_c00298{left:114.450000px;}
.xad_c00298{left:115.950000px;}
.x73_c00298{left:118.350000px;}
.x65_c00298{left:119.700000px;}
.x19_c00298{left:121.800000px;}
.xb_c00298{left:123.450000px;}
.xd0_c00298{left:124.650000px;}
.x106_c00298{left:127.800000px;}
.x88_c00298{left:130.800000px;}
.x66_c00298{left:133.050000px;}
.x107_c00298{left:134.550000px;}
.x95_c00298{left:139.500000px;}
.xe1_c00298{left:140.850000px;}
.x4c_c00298{left:142.350000px;}
.xc4_c00298{left:145.800000px;}
.x4_c00298{left:146.850000px;}
.xc_c00298{left:148.950000px;}
.x118_c00298{left:150.450000px;}
.x1a_c00298{left:151.650000px;}
.x9c_c00298{left:152.850000px;}
.x89_c00298{left:155.250000px;}
.xea_c00298{left:157.200000px;}
.x23_c00298{left:159.600000px;}
.xc0_c00298{left:162.000000px;}
.xa5_c00298{left:164.250000px;}
.x5e_c00298{left:165.900000px;}
.x10d_c00298{left:167.700000px;}
.x8a_c00298{left:172.950000px;}
.x78_c00298{left:176.100000px;}
.x100_c00298{left:179.550000px;}
.xc5_c00298{left:183.900000px;}
.x10e_c00298{left:184.950000px;}
.x24_c00298{left:186.900000px;}
.x55_c00298{left:188.250000px;}
.xae_c00298{left:190.800000px;}
.xb6_c00298{left:192.750000px;}
.xc1_c00298{left:194.100000px;}
.x104_c00298{left:196.200000px;}
.x5_c00298{left:201.600000px;}
.xe2_c00298{left:202.800000px;}
.xa6_c00298{left:203.850000px;}
.xca_c00298{left:205.950000px;}
.x74_c00298{left:210.150000px;}
.x1b_c00298{left:211.350000px;}
.x6_c00298{left:213.150000px;}
.x6c_c00298{left:216.450000px;}
.x5f_c00298{left:218.400000px;}
.x8b_c00298{left:220.500000px;}
.x31_c00298{left:222.900000px;}
.x4d_c00298{left:224.400000px;}
.x3d_c00298{left:228.300000px;}
.xd_c00298{left:229.650000px;}
.xe5_c00298{left:231.600000px;}
.xd1_c00298{left:233.400000px;}
.x6d_c00298{left:235.200000px;}
.x10f_c00298{left:238.950000px;}
.xcb_c00298{left:240.900000px;}
.x32_c00298{left:242.400000px;}
.xe_c00298{left:244.350000px;}
.x8c_c00298{left:246.000000px;}
.x25_c00298{left:247.800000px;}
.x56_c00298{left:249.450000px;}
.xef_c00298{left:254.700000px;}
.x119_c00298{left:255.900000px;}
.xfb_c00298{left:259.050000px;}
.xd9_c00298{left:262.650000px;}
.x79_c00298{left:265.800000px;}
.xf_c00298{left:267.750000px;}
.x7_c00298{left:268.950000px;}
.x108_c00298{left:270.600000px;}
.x3e_c00298{left:274.050000px;}
.xa7_c00298{left:275.550000px;}
.xfc_c00298{left:278.100000px;}
.xda_c00298{left:280.950000px;}
.x44_c00298{left:283.050000px;}
.x33_c00298{left:284.100000px;}
.x1c_c00298{left:289.500000px;}
.x67_c00298{left:290.700000px;}
.x3f_c00298{left:294.600000px;}
.xaf_c00298{left:296.550000px;}
.xf0_c00298{left:297.900000px;}
.xf5_c00298{left:299.400000px;}
.x26_c00298{left:302.100000px;}
.x7a_c00298{left:305.700000px;}
.x1_c00298{left:311.100000px;}
.x34_c00298{left:312.150000px;}
.x81_c00298{left:314.250000px;}
.x9d_c00298{left:315.900000px;}
.x57_c00298{left:318.150000px;}
.xf1_c00298{left:321.300000px;}
.xfd_c00298{left:322.800000px;}
.x101_c00298{left:325.650000px;}
.x68_c00298{left:326.700000px;}
.xdb_c00298{left:332.100000px;}
.x40_c00298{left:334.950000px;}
.x1d_c00298{left:337.800000px;}
.xd2_c00298{left:340.050000px;}
.x10_c00298{left:342.300000px;}
.x45_c00298{left:343.950000px;}
.x4e_c00298{left:346.050000px;}
.x35_c00298{left:347.100000px;}
.x27_c00298{left:348.600000px;}
.x96_c00298{left:349.800000px;}
.xfe_c00298{left:351.900000px;}
.x7b_c00298{left:354.000000px;}
.x60_c00298{left:355.200000px;}
.x8d_c00298{left:356.850000px;}
.x110_c00298{left:359.850000px;}
.xdc_c00298{left:363.750000px;}
.xb7_c00298{left:364.800000px;}
.x4f_c00298{left:366.900000px;}
.x97_c00298{left:368.100000px;}
.x111_c00298{left:369.600000px;}
.x8e_c00298{left:372.000000px;}
.xf6_c00298{left:373.200000px;}
.xc6_c00298{left:375.000000px;}
.x11_c00298{left:376.800000px;}
.x112_c00298{left:379.350000px;}
.xa8_c00298{left:384.000000px;}
.x46_c00298{left:387.150000px;}
.x1e_c00298{left:388.500000px;}
.xb8_c00298{left:390.750000px;}
.x9e_c00298{left:393.300000px;}
.x98_c00298{left:394.800000px;}
.x58_c00298{left:399.900000px;}
.x75_c00298{left:402.000000px;}
.xf7_c00298{left:405.600000px;}
.x28_c00298{left:406.950000px;}
.x47_c00298{left:415.650000px;}
.x69_c00298{left:420.600000px;}
.xcc_c00298{left:421.950000px;}
.x8_c00298{left:423.750000px;}
.xb9_c00298{left:424.950000px;}
.x59_c00298{left:427.650000px;}
.xa9_c00298{left:430.050000px;}
.x61_c00298{left:431.850000px;}
.x109_c00298{left:433.050000px;}
.x6a_c00298{left:434.250000px;}
.xdd_c00298{left:436.800000px;}
.xd7_c00298{left:439.200000px;}
.x36_c00298{left:441.750000px;}
.x12_c00298{left:444.900000px;}
.x6e_c00298{left:445.950000px;}
.xc7_c00298{left:449.550000px;}
.xeb_c00298{left:450.600000px;}
.x113_c00298{left:452.850000px;}
.x9_c00298{left:457.200000px;}
.xaa_c00298{left:459.900000px;}
.x114_c00298{left:461.100000px;}
.xe3_c00298{left:462.150000px;}
.xb0_c00298{left:466.050000px;}
.x29_c00298{left:467.400000px;}
.x102_c00298{left:469.650000px;}
.x9f_c00298{left:473.550000px;}
.x48_c00298{left:475.050000px;}
.x41_c00298{left:478.950000px;}
.x1f_c00298{left:481.350000px;}
.x50_c00298{left:491.250000px;}
.xba_c00298{left:493.050000px;}
.x82_c00298{left:494.700000px;}
.xcd_c00298{left:498.750000px;}
.x6f_c00298{left:500.250000px;}
.xb1_c00298{left:502.800000px;}
.x2a_c00298{left:505.200000px;}
.xa0_c00298{left:506.700000px;}
.xd3_c00298{left:509.550000px;}
.xe6_c00298{left:511.200000px;}
.x70_c00298{left:513.900000px;}
.x5a_c00298{left:520.200000px;}
.x105_c00298{left:522.150000px;}
.x76_c00298{left:524.400000px;}
.xd8_c00298{left:528.750000px;}
.xc2_c00298{left:530.250000px;}
.x7c_c00298{left:540.000000px;}
.xab_c00298{left:541.650000px;}
.xff_c00298{left:542.700000px;}
.x49_c00298{left:545.550000px;}
.xf2_c00298{left:547.350000px;}
.x13_c00298{left:551.850000px;}
.x11a_c00298{left:553.350000px;}
.x37_c00298{left:554.400000px;}
.xec_c00298{left:558.900000px;}
.x42_c00298{left:561.000000px;}
.x62_c00298{left:562.200000px;}
.xe4_c00298{left:563.700000px;}
.x7d_c00298{left:564.900000px;}
.xe7_c00298{left:569.550000px;}
.xf3_c00298{left:573.300000px;}
.x115_c00298{left:574.350000px;}
.xbb_c00298{left:579.150000px;}
.x20_c00298{left:582.900000px;}
.x8f_c00298{left:585.150000px;}
.xce_c00298{left:586.650000px;}
.x63_c00298{left:588.150000px;}
.x2b_c00298{left:591.300000px;}
.x14_c00298{left:594.300000px;}
.xe8_c00298{left:600.450000px;}
.x90_c00298{left:606.450000px;}
.x99_c00298{left:609.750000px;}
.x38_c00298{left:610.950000px;}
.xbc_c00298{left:612.300000px;}
.x83_c00298{left:615.300000px;}
.x10a_c00298{left:616.950000px;}
.x15_c00298{left:618.750000px;}
.x5b_c00298{left:621.300000px;}
.x4a_c00298{left:624.150000px;}
.xc8_c00298{left:627.450000px;}
.x21_c00298{left:629.700000px;}
.xd4_c00298{left:634.200000px;}
.x9a_c00298{left:636.000000px;}
.x84_c00298{left:638.400000px;}
.x2c_c00298{left:642.000000px;}
.x10b_c00298{left:643.650000px;}
.xb2_c00298{left:648.600000px;}
.xde_c00298{left:653.100000px;}
.x39_c00298{left:655.200000px;}
.x71_c00298{left:657.900000px;}
.x2d_c00298{left:658.950000px;}
.xbd_c00298{left:660.600000px;}
.xc9_c00298{left:662.400000px;}
.x116_c00298{left:664.350000px;}
.x2e_c00298{left:667.950000px;}
.x51_c00298{left:671.850000px;}
.x7e_c00298{left:672.900000px;}
.x16_c00298{left:676.650000px;}
.x85_c00298{left:680.100000px;}
.x3a_c00298{left:681.900000px;}
.xcf_c00298{left:683.100000px;}
.xa1_c00298{left:684.450000px;}
.xb3_c00298{left:687.450000px;}
.x9b_c00298{left:689.250000px;}
.x2f_c00298{left:691.650000px;}
.xf4_c00298{left:696.000000px;}
.x5c_c00298{left:697.950000px;}
.x7f_c00298{left:701.400000px;}
.x91_c00298{left:703.650000px;}
.xf8_c00298{left:704.700000px;}
.x22_c00298{left:707.400000px;}
.x86_c00298{left:708.600000px;}
.xb4_c00298{left:710.550000px;}
.x52_c00298{left:714.300000px;}
.x11b_c00298{left:715.350000px;}
.x43_c00298{left:720.150000px;}
.xf9_c00298{left:728.850000px;}
.x72_c00298{left:730.950000px;}
.x53_c00298{left:732.000000px;}
.x92_c00298{left:733.500000px;}
.x3b_c00298{left:735.600000px;}
.xa2_c00298{left:739.950000px;}
.x2_c00298{left:752.100000px;}
.x5d_c00298{left:761.700000px;}
.x17_c00298{left:766.950000px;}
.xd5_c00298{left:768.150000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:-17.777778pt;}
.ws7_c00298{word-spacing:-8.885323pt;}
.ws6_c00298{word-spacing:-5.742664pt;}
.ws5_c00298{word-spacing:-5.222222pt;}
.wsa_c00298{word-spacing:0.000000pt;}
.ws8_c00298{word-spacing:1.310958pt;}
.ws1_c00298{word-spacing:3.777778pt;}
.ws4_c00298{word-spacing:3.942029pt;}
.ws9_c00298{word-spacing:5.546775pt;}
.ws2_c00298{word-spacing:7.619048pt;}
.ws3_c00298{word-spacing:20.106952pt;}
.fs1_c00298{font-size:26.666667pt;}
.fs7_c00298{font-size:37.333333pt;}
.fs6_c00298{font-size:48.000000pt;}
.fs8_c00298{font-size:53.333333pt;}
.fs4_c00298{font-size:58.666667pt;}
.fs2_c00298{font-size:64.000000pt;}
.fs3_c00298{font-size:69.333333pt;}
.fs0_c00298{font-size:96.000000pt;}
.fs5_c00298{font-size:101.333333pt;}
.y0_c00298{bottom:0.000000pt;}
.y29_c00298{bottom:187.466667pt;}
.y28_c00298{bottom:190.000000pt;}
.y27_c00298{bottom:204.133333pt;}
.y26_c00298{bottom:221.066667pt;}
.y25_c00298{bottom:238.133333pt;}
.y24_c00298{bottom:270.400000pt;}
.y23_c00298{bottom:291.466667pt;}
.y22_c00298{bottom:313.866667pt;}
.y21_c00298{bottom:336.266667pt;}
.y20_c00298{bottom:358.000000pt;}
.y1f_c00298{bottom:379.466667pt;}
.y1e_c00298{bottom:401.200000pt;}
.y1d_c00298{bottom:423.333333pt;}
.y1c_c00298{bottom:444.800000pt;}
.y1b_c00298{bottom:466.933333pt;}
.y1a_c00298{bottom:489.066667pt;}
.y19_c00298{bottom:510.133333pt;}
.y18_c00298{bottom:531.200000pt;}
.y17_c00298{bottom:557.466667pt;}
.y16_c00298{bottom:579.200000pt;}
.y15_c00298{bottom:600.666667pt;}
.y14_c00298{bottom:626.666667pt;}
.y13_c00298{bottom:648.400000pt;}
.y12_c00298{bottom:670.800000pt;}
.y11_c00298{bottom:691.866667pt;}
.y10_c00298{bottom:714.000000pt;}
.yf_c00298{bottom:735.466667pt;}
.ye_c00298{bottom:757.200000pt;}
.yd_c00298{bottom:778.933333pt;}
.yc_c00298{bottom:804.133333pt;}
.yb_c00298{bottom:826.266667pt;}
.ya_c00298{bottom:848.000000pt;}
.y9_c00298{bottom:874.133333pt;}
.y8_c00298{bottom:896.266667pt;}
.y7_c00298{bottom:918.000000pt;}
.y6_c00298{bottom:939.733333pt;}
.y5_c00298{bottom:961.866667pt;}
.y4_c00298{bottom:983.333333pt;}
.y3_c00298{bottom:1005.066667pt;}
.y1_c00298{bottom:1027.866667pt;}
.y2_c00298{bottom:1131.200000pt;}
.h3_c00298{height:26.666667pt;}
.h9_c00298{height:37.333333pt;}
.h8_c00298{height:48.000000pt;}
.ha_c00298{height:53.333333pt;}
.h6_c00298{height:58.666667pt;}
.h4_c00298{height:64.000000pt;}
.h5_c00298{height:69.333333pt;}
.h2_c00298{height:96.000000pt;}
.h7_c00298{height:101.333333pt;}
.h1_c00298{height:1132.666667pt;}
.h0_c00298{height:1132.800049pt;}
.w1_c00298{width:854.666667pt;}
.w0_c00298{width:854.720052pt;}
.x0_c00298{left:0.000000pt;}
.x3_c00298{left:35.866667pt;}
.x117_c00298{left:46.133333pt;}
.x10c_c00298{left:47.066667pt;}
.xfa_c00298{left:49.466667pt;}
.xe9_c00298{left:51.066667pt;}
.xed_c00298{left:52.000000pt;}
.xdf_c00298{left:53.200000pt;}
.x87_c00298{left:54.133333pt;}
.xb5_c00298{left:56.533333pt;}
.xa3_c00298{left:58.000000pt;}
.x93_c00298{left:60.000000pt;}
.x77_c00298{left:61.866667pt;}
.x64_c00298{left:62.933333pt;}
.x4b_c00298{left:64.800000pt;}
.x3c_c00298{left:66.400000pt;}
.x18_c00298{left:67.333333pt;}
.xa_c00298{left:68.800000pt;}
.xc3_c00298{left:74.266667pt;}
.xac_c00298{left:75.200000pt;}
.x80_c00298{left:76.533333pt;}
.xee_c00298{left:78.266667pt;}
.xd6_c00298{left:79.200000pt;}
.x6b_c00298{left:80.666667pt;}
.x103_c00298{left:82.933333pt;}
.x54_c00298{left:84.133333pt;}
.xbe_c00298{left:87.066667pt;}
.x30_c00298{left:88.400000pt;}
.xa4_c00298{left:92.266667pt;}
.xe0_c00298{left:95.066667pt;}
.x94_c00298{left:96.533333pt;}
.xbf_c00298{left:101.733333pt;}
.xad_c00298{left:103.066667pt;}
.x73_c00298{left:105.200000pt;}
.x65_c00298{left:106.400000pt;}
.x19_c00298{left:108.266667pt;}
.xb_c00298{left:109.733333pt;}
.xd0_c00298{left:110.800000pt;}
.x106_c00298{left:113.600000pt;}
.x88_c00298{left:116.266667pt;}
.x66_c00298{left:118.266667pt;}
.x107_c00298{left:119.600000pt;}
.x95_c00298{left:124.000000pt;}
.xe1_c00298{left:125.200000pt;}
.x4c_c00298{left:126.533333pt;}
.xc4_c00298{left:129.600000pt;}
.x4_c00298{left:130.533333pt;}
.xc_c00298{left:132.400000pt;}
.x118_c00298{left:133.733333pt;}
.x1a_c00298{left:134.800000pt;}
.x9c_c00298{left:135.866667pt;}
.x89_c00298{left:138.000000pt;}
.xea_c00298{left:139.733333pt;}
.x23_c00298{left:141.866667pt;}
.xc0_c00298{left:144.000000pt;}
.xa5_c00298{left:146.000000pt;}
.x5e_c00298{left:147.466667pt;}
.x10d_c00298{left:149.066667pt;}
.x8a_c00298{left:153.733333pt;}
.x78_c00298{left:156.533333pt;}
.x100_c00298{left:159.600000pt;}
.xc5_c00298{left:163.466667pt;}
.x10e_c00298{left:164.400000pt;}
.x24_c00298{left:166.133333pt;}
.x55_c00298{left:167.333333pt;}
.xae_c00298{left:169.600000pt;}
.xb6_c00298{left:171.333333pt;}
.xc1_c00298{left:172.533333pt;}
.x104_c00298{left:174.400000pt;}
.x5_c00298{left:179.200000pt;}
.xe2_c00298{left:180.266667pt;}
.xa6_c00298{left:181.200000pt;}
.xca_c00298{left:183.066667pt;}
.x74_c00298{left:186.800000pt;}
.x1b_c00298{left:187.866667pt;}
.x6_c00298{left:189.466667pt;}
.x6c_c00298{left:192.400000pt;}
.x5f_c00298{left:194.133333pt;}
.x8b_c00298{left:196.000000pt;}
.x31_c00298{left:198.133333pt;}
.x4d_c00298{left:199.466667pt;}
.x3d_c00298{left:202.933333pt;}
.xd_c00298{left:204.133333pt;}
.xe5_c00298{left:205.866667pt;}
.xd1_c00298{left:207.466667pt;}
.x6d_c00298{left:209.066667pt;}
.x10f_c00298{left:212.400000pt;}
.xcb_c00298{left:214.133333pt;}
.x32_c00298{left:215.466667pt;}
.xe_c00298{left:217.200000pt;}
.x8c_c00298{left:218.666667pt;}
.x25_c00298{left:220.266667pt;}
.x56_c00298{left:221.733333pt;}
.xef_c00298{left:226.400000pt;}
.x119_c00298{left:227.466667pt;}
.xfb_c00298{left:230.266667pt;}
.xd9_c00298{left:233.466667pt;}
.x79_c00298{left:236.266667pt;}
.xf_c00298{left:238.000000pt;}
.x7_c00298{left:239.066667pt;}
.x108_c00298{left:240.533333pt;}
.x3e_c00298{left:243.600000pt;}
.xa7_c00298{left:244.933333pt;}
.xfc_c00298{left:247.200000pt;}
.xda_c00298{left:249.733333pt;}
.x44_c00298{left:251.600000pt;}
.x33_c00298{left:252.533333pt;}
.x1c_c00298{left:257.333333pt;}
.x67_c00298{left:258.400000pt;}
.x3f_c00298{left:261.866667pt;}
.xaf_c00298{left:263.600000pt;}
.xf0_c00298{left:264.800000pt;}
.xf5_c00298{left:266.133333pt;}
.x26_c00298{left:268.533333pt;}
.x7a_c00298{left:271.733333pt;}
.x1_c00298{left:276.533333pt;}
.x34_c00298{left:277.466667pt;}
.x81_c00298{left:279.333333pt;}
.x9d_c00298{left:280.800000pt;}
.x57_c00298{left:282.800000pt;}
.xf1_c00298{left:285.600000pt;}
.xfd_c00298{left:286.933333pt;}
.x101_c00298{left:289.466667pt;}
.x68_c00298{left:290.400000pt;}
.xdb_c00298{left:295.200000pt;}
.x40_c00298{left:297.733333pt;}
.x1d_c00298{left:300.266667pt;}
.xd2_c00298{left:302.266667pt;}
.x10_c00298{left:304.266667pt;}
.x45_c00298{left:305.733333pt;}
.x4e_c00298{left:307.600000pt;}
.x35_c00298{left:308.533333pt;}
.x27_c00298{left:309.866667pt;}
.x96_c00298{left:310.933333pt;}
.xfe_c00298{left:312.800000pt;}
.x7b_c00298{left:314.666667pt;}
.x60_c00298{left:315.733333pt;}
.x8d_c00298{left:317.200000pt;}
.x110_c00298{left:319.866667pt;}
.xdc_c00298{left:323.333333pt;}
.xb7_c00298{left:324.266667pt;}
.x4f_c00298{left:326.133333pt;}
.x97_c00298{left:327.200000pt;}
.x111_c00298{left:328.533333pt;}
.x8e_c00298{left:330.666667pt;}
.xf6_c00298{left:331.733333pt;}
.xc6_c00298{left:333.333333pt;}
.x11_c00298{left:334.933333pt;}
.x112_c00298{left:337.200000pt;}
.xa8_c00298{left:341.333333pt;}
.x46_c00298{left:344.133333pt;}
.x1e_c00298{left:345.333333pt;}
.xb8_c00298{left:347.333333pt;}
.x9e_c00298{left:349.600000pt;}
.x98_c00298{left:350.933333pt;}
.x58_c00298{left:355.466667pt;}
.x75_c00298{left:357.333333pt;}
.xf7_c00298{left:360.533333pt;}
.x28_c00298{left:361.733333pt;}
.x47_c00298{left:369.466667pt;}
.x69_c00298{left:373.866667pt;}
.xcc_c00298{left:375.066667pt;}
.x8_c00298{left:376.666667pt;}
.xb9_c00298{left:377.733333pt;}
.x59_c00298{left:380.133333pt;}
.xa9_c00298{left:382.266667pt;}
.x61_c00298{left:383.866667pt;}
.x109_c00298{left:384.933333pt;}
.x6a_c00298{left:386.000000pt;}
.xdd_c00298{left:388.266667pt;}
.xd7_c00298{left:390.400000pt;}
.x36_c00298{left:392.666667pt;}
.x12_c00298{left:395.466667pt;}
.x6e_c00298{left:396.400000pt;}
.xc7_c00298{left:399.600000pt;}
.xeb_c00298{left:400.533333pt;}
.x113_c00298{left:402.533333pt;}
.x9_c00298{left:406.400000pt;}
.xaa_c00298{left:408.800000pt;}
.x114_c00298{left:409.866667pt;}
.xe3_c00298{left:410.800000pt;}
.xb0_c00298{left:414.266667pt;}
.x29_c00298{left:415.466667pt;}
.x102_c00298{left:417.466667pt;}
.x9f_c00298{left:420.933333pt;}
.x48_c00298{left:422.266667pt;}
.x41_c00298{left:425.733333pt;}
.x1f_c00298{left:427.866667pt;}
.x50_c00298{left:436.666667pt;}
.xba_c00298{left:438.266667pt;}
.x82_c00298{left:439.733333pt;}
.xcd_c00298{left:443.333333pt;}
.x6f_c00298{left:444.666667pt;}
.xb1_c00298{left:446.933333pt;}
.x2a_c00298{left:449.066667pt;}
.xa0_c00298{left:450.400000pt;}
.xd3_c00298{left:452.933333pt;}
.xe6_c00298{left:454.400000pt;}
.x70_c00298{left:456.800000pt;}
.x5a_c00298{left:462.400000pt;}
.x105_c00298{left:464.133333pt;}
.x76_c00298{left:466.133333pt;}
.xd8_c00298{left:470.000000pt;}
.xc2_c00298{left:471.333333pt;}
.x7c_c00298{left:480.000000pt;}
.xab_c00298{left:481.466667pt;}
.xff_c00298{left:482.400000pt;}
.x49_c00298{left:484.933333pt;}
.xf2_c00298{left:486.533333pt;}
.x13_c00298{left:490.533333pt;}
.x11a_c00298{left:491.866667pt;}
.x37_c00298{left:492.800000pt;}
.xec_c00298{left:496.800000pt;}
.x42_c00298{left:498.666667pt;}
.x62_c00298{left:499.733333pt;}
.xe4_c00298{left:501.066667pt;}
.x7d_c00298{left:502.133333pt;}
.xe7_c00298{left:506.266667pt;}
.xf3_c00298{left:509.600000pt;}
.x115_c00298{left:510.533333pt;}
.xbb_c00298{left:514.800000pt;}
.x20_c00298{left:518.133333pt;}
.x8f_c00298{left:520.133333pt;}
.xce_c00298{left:521.466667pt;}
.x63_c00298{left:522.800000pt;}
.x2b_c00298{left:525.600000pt;}
.x14_c00298{left:528.266667pt;}
.xe8_c00298{left:533.733333pt;}
.x90_c00298{left:539.066667pt;}
.x99_c00298{left:542.000000pt;}
.x38_c00298{left:543.066667pt;}
.xbc_c00298{left:544.266667pt;}
.x83_c00298{left:546.933333pt;}
.x10a_c00298{left:548.400000pt;}
.x15_c00298{left:550.000000pt;}
.x5b_c00298{left:552.266667pt;}
.x4a_c00298{left:554.800000pt;}
.xc8_c00298{left:557.733333pt;}
.x21_c00298{left:559.733333pt;}
.xd4_c00298{left:563.733333pt;}
.x9a_c00298{left:565.333333pt;}
.x84_c00298{left:567.466667pt;}
.x2c_c00298{left:570.666667pt;}
.x10b_c00298{left:572.133333pt;}
.xb2_c00298{left:576.533333pt;}
.xde_c00298{left:580.533333pt;}
.x39_c00298{left:582.400000pt;}
.x71_c00298{left:584.800000pt;}
.x2d_c00298{left:585.733333pt;}
.xbd_c00298{left:587.200000pt;}
.xc9_c00298{left:588.800000pt;}
.x116_c00298{left:590.533333pt;}
.x2e_c00298{left:593.733333pt;}
.x51_c00298{left:597.200000pt;}
.x7e_c00298{left:598.133333pt;}
.x16_c00298{left:601.466667pt;}
.x85_c00298{left:604.533333pt;}
.x3a_c00298{left:606.133333pt;}
.xcf_c00298{left:607.200000pt;}
.xa1_c00298{left:608.400000pt;}
.xb3_c00298{left:611.066667pt;}
.x9b_c00298{left:612.666667pt;}
.x2f_c00298{left:614.800000pt;}
.xf4_c00298{left:618.666667pt;}
.x5c_c00298{left:620.400000pt;}
.x7f_c00298{left:623.466667pt;}
.x91_c00298{left:625.466667pt;}
.xf8_c00298{left:626.400000pt;}
.x22_c00298{left:628.800000pt;}
.x86_c00298{left:629.866667pt;}
.xb4_c00298{left:631.600000pt;}
.x52_c00298{left:634.933333pt;}
.x11b_c00298{left:635.866667pt;}
.x43_c00298{left:640.133333pt;}
.xf9_c00298{left:647.866667pt;}
.x72_c00298{left:649.733333pt;}
.x53_c00298{left:650.666667pt;}
.x92_c00298{left:652.000000pt;}
.x3b_c00298{left:653.866667pt;}
.xa2_c00298{left:657.733333pt;}
.x2_c00298{left:668.533333pt;}
.x5d_c00298{left:677.066667pt;}
.x17_c00298{left:681.733333pt;}
.xd5_c00298{left:682.800000pt;}
}





/* 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_c00299 {
    display:none;
  }
  .loading-indicator_c00299.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00299 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_c00299 { 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_c00299" -> "#page-container .classname_c00299")
 */
.pf_c00299 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00299 { /* 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_c00299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00299 { /* 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_c00299 { /* 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_c00299 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00299 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00299 {overflow:visible;}
  }
}
.c_c00299 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00299 { /* 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_c00299:after { /* webkit #35443 */
  content: '';
}
.t_c00299:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00299 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 */
}
.__c00299 { /* 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_c00299 { /* info for Javascript */
  display:none;
}
.l_c00299 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00299 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00299 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00299: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_c00299 {
    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_c00299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00299.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_c00299 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00299;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.000000;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;}
.m5a_c00299{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m49_c00299{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00299{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m15_c00299{transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00299{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00299{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m91_c00299{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.mac_c00299{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m42_c00299{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00299{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00299{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00299{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00299{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00299{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mab_c00299{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00299{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00299{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m97_c00299{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m55_c00299{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00299{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m62_c00299{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m58_c00299{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m95_c00299{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00299{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00299{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00299{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00299{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00299{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mf_c00299{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m89_c00299{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m65_c00299{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00299{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.mba_c00299{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00299{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m31_c00299{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00299{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00299{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00299{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m81_c00299{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00299{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m64_c00299{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m46_c00299{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m14_c00299{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00299{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m98_c00299{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00299{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m80_c00299{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00299{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00299{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m90_c00299{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00299{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m99_c00299{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00299{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m77_c00299{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00299{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma_c00299{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mad_c00299{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m39_c00299{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m94_c00299{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m18_c00299{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00299{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00299{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mc_c00299{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00299{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m34_c00299{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m72_c00299{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m21_c00299{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00299{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m17_c00299{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m87_c00299{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m52_c00299{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m88_c00299{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00299{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m92_c00299{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00299{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00299{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00299{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m63_c00299{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00299{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m35_c00299{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00299{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00299{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00299{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00299{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00299{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00299{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m25_c00299{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00299{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m33_c00299{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m23_c00299{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mb_c00299{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m38_c00299{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00299{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m26_c00299{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m13_c00299{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00299{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00299{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m85_c00299{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00299{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m84_c00299{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m79_c00299{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m9_c00299{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.maa_c00299{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m86_c00299{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00299{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00299{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m47_c00299{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m19_c00299{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mae_c00299{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00299{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m96_c00299{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m7_c00299{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00299{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00299{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m54_c00299{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m50_c00299{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m10_c00299{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.maf_c00299{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m27_c00299{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m40_c00299{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m78_c00299{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m30_c00299{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m53_c00299{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m36_c00299{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m83_c00299{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me_c00299{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00299{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m24_c00299{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m93_c00299{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00299{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m74_c00299{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m66_c00299{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m12_c00299{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m29_c00299{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00299{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m56_c00299{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6_c00299{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m69_c00299{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m68_c00299{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m51_c00299{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11_c00299{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00299{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);}
.m32_c00299{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m22_c00299{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00299{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m67_c00299{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m43_c00299{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00299{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md_c00299{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m73_c00299{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00299{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m60_c00299{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m61_c00299{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00299{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00299{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00299{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m70_c00299{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m57_c00299{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m82_c00299{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m75_c00299{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m71_c00299{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m45_c00299{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m20_c00299{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00299{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m28_c00299{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00299{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00299{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00299{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m37_c00299{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00299{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m48_c00299{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m76_c00299{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00299{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m44_c00299{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m16_c00299{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m41_c00299{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00299{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00299{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00299{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m59_c00299{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00299{transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00299{transform:matrix(0.373500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00299{transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421500,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.433750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433750,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls0_c00299{letter-spacing:0.000000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{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__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00299{word-spacing:-11.449348px;}
.ws3_c00299{word-spacing:-7.354062px;}
.ws0_c00299{word-spacing:-6.748549px;}
.ws1_c00299{word-spacing:-2.127753px;}
.ws4_c00299{word-spacing:-1.406504px;}
.ws6_c00299{word-spacing:0.000000px;}
.ws5_c00299{word-spacing:33.055556px;}
.fc0_c00299{color:transparent;}
.fs3_c00299{font-size:60.000000px;}
.fs1_c00299{font-size:72.000000px;}
.fs0_c00299{font-size:78.000000px;}
.fs2_c00299{font-size:84.000000px;}
.y0_c00299{bottom:0.000000px;}
.y21_c00299{bottom:174.600000px;}
.y20_c00299{bottom:357.000000px;}
.y1f_c00299{bottom:376.500000px;}
.y1e_c00299{bottom:396.000000px;}
.y1d_c00299{bottom:451.050000px;}
.y1c_c00299{bottom:475.950000px;}
.y1b_c00299{bottom:501.150000px;}
.y1a_c00299{bottom:525.600000px;}
.y19_c00299{bottom:550.500000px;}
.y18_c00299{bottom:574.950000px;}
.y17_c00299{bottom:599.100000px;}
.y16_c00299{bottom:623.550000px;}
.y15_c00299{bottom:648.000000px;}
.y14_c00299{bottom:672.900000px;}
.y13_c00299{bottom:697.350000px;}
.y12_c00299{bottom:722.550000px;}
.y11_c00299{bottom:747.000000px;}
.y10_c00299{bottom:771.450000px;}
.yf_c00299{bottom:795.900000px;}
.ye_c00299{bottom:820.350000px;}
.yd_c00299{bottom:845.250000px;}
.yc_c00299{bottom:869.700000px;}
.yb_c00299{bottom:898.500000px;}
.ya_c00299{bottom:923.400000px;}
.y9_c00299{bottom:948.300000px;}
.y8_c00299{bottom:972.600000px;}
.y7_c00299{bottom:997.500000px;}
.y6_c00299{bottom:1021.950000px;}
.y5_c00299{bottom:1046.850000px;}
.y4_c00299{bottom:1071.750000px;}
.y3_c00299{bottom:1100.550000px;}
.y2_c00299{bottom:1125.000000px;}
.y1_c00299{bottom:1154.550000px;}
.h5_c00299{height:60.000000px;}
.h3_c00299{height:72.000000px;}
.h2_c00299{height:78.000000px;}
.h4_c00299{height:84.000000px;}
.h1_c00299{height:1268.250000px;}
.h0_c00299{height:1268.279937px;}
.w1_c00299{width:961.500000px;}
.w0_c00299{width:961.560058px;}
.x0_c00299{left:0.000000px;}
.x4f_c00299{left:191.550000px;}
.x1_c00299{left:204.150000px;}
.x42_c00299{left:205.650000px;}
.xb2_c00299{left:206.850000px;}
.xbf_c00299{left:208.050000px;}
.x62_c00299{left:224.700000px;}
.x16_c00299{left:226.050000px;}
.x12_c00299{left:235.950000px;}
.x9b_c00299{left:237.450000px;}
.x7d_c00299{left:244.050000px;}
.x37_c00299{left:247.500000px;}
.x43_c00299{left:250.950000px;}
.x50_c00299{left:252.150000px;}
.x8a_c00299{left:253.200000px;}
.x17_c00299{left:258.450000px;}
.x7e_c00299{left:264.900000px;}
.xb6_c00299{left:267.750000px;}
.x6b_c00299{left:270.750000px;}
.x5f_c00299{left:272.400000px;}
.xdb_c00299{left:276.000000px;}
.x21_c00299{left:277.200000px;}
.x59_c00299{left:279.450000px;}
.x2c_c00299{left:281.400000px;}
.xc6_c00299{left:284.850000px;}
.x73_c00299{left:288.300000px;}
.xe6_c00299{left:289.650000px;}
.xc0_c00299{left:294.450000px;}
.x51_c00299{left:296.100000px;}
.x38_c00299{left:298.650000px;}
.x13_c00299{left:301.500000px;}
.x74_c00299{left:303.450000px;}
.xdc_c00299{left:304.800000px;}
.x2d_c00299{left:305.850000px;}
.x18_c00299{left:308.550000px;}
.xb7_c00299{left:309.900000px;}
.xc7_c00299{left:314.700000px;}
.x6c_c00299{left:316.050000px;}
.x52_c00299{left:317.400000px;}
.x22_c00299{left:321.450000px;}
.x75_c00299{left:322.500000px;}
.x84_c00299{left:323.700000px;}
.x44_c00299{left:326.550000px;}
.xe7_c00299{left:328.950000px;}
.x7f_c00299{left:335.850000px;}
.x14_c00299{left:337.500000px;}
.xb3_c00299{left:339.750000px;}
.x8b_c00299{left:344.400000px;}
.xa3_c00299{left:346.800000px;}
.x7_c00299{left:348.450000px;}
.x63_c00299{left:351.000000px;}
.x96_c00299{left:352.650000px;}
.x53_c00299{left:353.700000px;}
.xb8_c00299{left:354.900000px;}
.x2e_c00299{left:357.300000px;}
.x76_c00299{left:360.300000px;}
.x45_c00299{left:362.850000px;}
.x60_c00299{left:369.300000px;}
.x9c_c00299{left:370.950000px;}
.x23_c00299{left:375.750000px;}
.xd7_c00299{left:377.100000px;}
.x54_c00299{left:378.900000px;}
.xb4_c00299{left:382.950000px;}
.x6d_c00299{left:394.950000px;}
.x19_c00299{left:397.800000px;}
.x15_c00299{left:399.000000px;}
.x91_c00299{left:401.550000px;}
.x39_c00299{left:405.600000px;}
.xdd_c00299{left:409.500000px;}
.x77_c00299{left:410.700000px;}
.xcf_c00299{left:412.800000px;}
.xa4_c00299{left:414.450000px;}
.xab_c00299{left:417.450000px;}
.xb9_c00299{left:420.750000px;}
.x8_c00299{left:422.250000px;}
.x2f_c00299{left:424.200000px;}
.xde_c00299{left:430.650000px;}
.xc8_c00299{left:435.000000px;}
.x24_c00299{left:436.650000px;}
.x2_c00299{left:438.900000px;}
.x85_c00299{left:441.750000px;}
.xa5_c00299{left:442.950000px;}
.x9_c00299{left:445.350000px;}
.xba_c00299{left:448.500000px;}
.x3a_c00299{left:450.300000px;}
.x5a_c00299{left:453.300000px;}
.x9d_c00299{left:455.250000px;}
.x64_c00299{left:457.950000px;}
.x78_c00299{left:460.350000px;}
.x25_c00299{left:463.650000px;}
.x6e_c00299{left:467.250000px;}
.x8c_c00299{left:470.400000px;}
.x92_c00299{left:472.050000px;}
.x80_c00299{left:475.200000px;}
.x3_c00299{left:477.450000px;}
.xa_c00299{left:481.650000px;}
.xac_c00299{left:485.550000px;}
.xc1_c00299{left:489.900000px;}
.xb5_c00299{left:498.900000px;}
.x6f_c00299{left:502.500000px;}
.x65_c00299{left:505.050000px;}
.x1a_c00299{left:511.500000px;}
.x55_c00299{left:512.550000px;}
.xb_c00299{left:522.300000px;}
.xad_c00299{left:523.350000px;}
.xd0_c00299{left:524.700000px;}
.xa6_c00299{left:526.050000px;}
.x4_c00299{left:528.600000px;}
.xdf_c00299{left:530.700000px;}
.x46_c00299{left:532.050000px;}
.x9e_c00299{left:535.500000px;}
.xd1_c00299{left:536.550000px;}
.x26_c00299{left:539.550000px;}
.x97_c00299{left:540.600000px;}
.x81_c00299{left:543.300000px;}
.x47_c00299{left:545.700000px;}
.x8d_c00299{left:548.100000px;}
.x56_c00299{left:549.300000px;}
.x3b_c00299{left:553.200000px;}
.x66_c00299{left:554.400000px;}
.x79_c00299{left:557.250000px;}
.xa7_c00299{left:559.200000px;}
.xd2_c00299{left:560.250000px;}
.xcb_c00299{left:562.350000px;}
.x82_c00299{left:570.000000px;}
.x9f_c00299{left:573.300000px;}
.x5b_c00299{left:574.650000px;}
.x5_c00299{left:584.100000px;}
.x3c_c00299{left:585.900000px;}
.x98_c00299{left:588.150000px;}
.x1b_c00299{left:592.200000px;}
.x30_c00299{left:595.500000px;}
.xbb_c00299{left:600.900000px;}
.xd3_c00299{left:601.950000px;}
.x70_c00299{left:603.300000px;}
.x27_c00299{left:605.100000px;}
.xe0_c00299{left:609.150000px;}
.x86_c00299{left:612.750000px;}
.x48_c00299{left:615.600000px;}
.x31_c00299{left:618.900000px;}
.x67_c00299{left:620.700000px;}
.x6_c00299{left:622.200000px;}
.x99_c00299{left:625.200000px;}
.xc_c00299{left:626.400000px;}
.x49_c00299{left:630.300000px;}
.xa0_c00299{left:631.950000px;}
.xc9_c00299{left:633.000000px;}
.x8e_c00299{left:640.950000px;}
.xbc_c00299{left:643.350000px;}
.x28_c00299{left:649.350000px;}
.x3d_c00299{left:650.400000px;}
.xcc_c00299{left:653.400000px;}
.x5c_c00299{left:655.350000px;}
.xae_c00299{left:661.650000px;}
.x4a_c00299{left:668.100000px;}
.xe1_c00299{left:670.800000px;}
.x7a_c00299{left:673.200000px;}
.xd_c00299{left:676.800000px;}
.x1c_c00299{left:680.400000px;}
.x32_c00299{left:682.200000px;}
.x3e_c00299{left:684.900000px;}
.xc2_c00299{left:687.450000px;}
.x68_c00299{left:689.100000px;}
.xd4_c00299{left:692.700000px;}
.x4b_c00299{left:695.400000px;}
.xaf_c00299{left:697.350000px;}
.x33_c00299{left:705.600000px;}
.x3f_c00299{left:710.400000px;}
.xa1_c00299{left:711.900000px;}
.x87_c00299{left:722.250000px;}
.x8f_c00299{left:723.450000px;}
.xe_c00299{left:724.650000px;}
.xbd_c00299{left:726.450000px;}
.x9a_c00299{left:728.850000px;}
.xc3_c00299{left:729.900000px;}
.x93_c00299{left:731.550000px;}
.xe2_c00299{left:734.850000px;}
.x5d_c00299{left:736.050000px;}
.xe8_c00299{left:742.650000px;}
.xe3_c00299{left:744.600000px;}
.x29_c00299{left:746.850000px;}
.xa8_c00299{left:756.000000px;}
.x40_c00299{left:757.500000px;}
.xd5_c00299{left:760.050000px;}
.x34_c00299{left:761.400000px;}
.x1d_c00299{left:763.500000px;}
.x4c_c00299{left:765.300000px;}
.x5e_c00299{left:768.450000px;}
.x2a_c00299{left:772.350000px;}
.xd8_c00299{left:773.550000px;}
.xf_c00299{left:780.750000px;}
.xcd_c00299{left:782.700000px;}
.x71_c00299{left:787.200000px;}
.xa9_c00299{left:788.700000px;}
.x88_c00299{left:790.650000px;}
.x1e_c00299{left:793.800000px;}
.xd9_c00299{left:795.150000px;}
.xce_c00299{left:797.400000px;}
.x61_c00299{left:801.750000px;}
.x4d_c00299{left:804.150000px;}
.x94_c00299{left:806.400000px;}
.x10_c00299{left:808.050000px;}
.x35_c00299{left:809.700000px;}
.xca_c00299{left:812.700000px;}
.x7b_c00299{left:814.650000px;}
.x90_c00299{left:819.150000px;}
.x57_c00299{left:820.350000px;}
.x2b_c00299{left:822.750000px;}
.xbe_c00299{left:824.400000px;}
.xb0_c00299{left:826.650000px;}
.x69_c00299{left:830.550000px;}
.x83_c00299{left:832.800000px;}
.x89_c00299{left:836.400000px;}
.xc4_c00299{left:837.600000px;}
.xd6_c00299{left:840.300000px;}
.x1f_c00299{left:841.350000px;}
.x11_c00299{left:842.550000px;}
.xa2_c00299{left:846.150000px;}
.x41_c00299{left:850.800000px;}
.x95_c00299{left:852.900000px;}
.x72_c00299{left:857.100000px;}
.x20_c00299{left:858.600000px;}
.x7c_c00299{left:861.450000px;}
.x36_c00299{left:863.400000px;}
.xc5_c00299{left:866.400000px;}
.x58_c00299{left:868.650000px;}
.x4e_c00299{left:871.800000px;}
.xaa_c00299{left:876.900000px;}
.xe4_c00299{left:885.300000px;}
.xda_c00299{left:886.950000px;}
.x6a_c00299{left:895.050000px;}
.xb1_c00299{left:896.550000px;}
.xe5_c00299{left:897.600000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws2_c00299{word-spacing:-10.177198pt;}
.ws3_c00299{word-spacing:-6.536944pt;}
.ws0_c00299{word-spacing:-5.998711pt;}
.ws1_c00299{word-spacing:-1.891336pt;}
.ws4_c00299{word-spacing:-1.250226pt;}
.ws6_c00299{word-spacing:0.000000pt;}
.ws5_c00299{word-spacing:29.382716pt;}
.fs3_c00299{font-size:53.333333pt;}
.fs1_c00299{font-size:64.000000pt;}
.fs0_c00299{font-size:69.333333pt;}
.fs2_c00299{font-size:74.666667pt;}
.y0_c00299{bottom:0.000000pt;}
.y21_c00299{bottom:155.200000pt;}
.y20_c00299{bottom:317.333333pt;}
.y1f_c00299{bottom:334.666667pt;}
.y1e_c00299{bottom:352.000000pt;}
.y1d_c00299{bottom:400.933333pt;}
.y1c_c00299{bottom:423.066667pt;}
.y1b_c00299{bottom:445.466667pt;}
.y1a_c00299{bottom:467.200000pt;}
.y19_c00299{bottom:489.333333pt;}
.y18_c00299{bottom:511.066667pt;}
.y17_c00299{bottom:532.533333pt;}
.y16_c00299{bottom:554.266667pt;}
.y15_c00299{bottom:576.000000pt;}
.y14_c00299{bottom:598.133333pt;}
.y13_c00299{bottom:619.866667pt;}
.y12_c00299{bottom:642.266667pt;}
.y11_c00299{bottom:664.000000pt;}
.y10_c00299{bottom:685.733333pt;}
.yf_c00299{bottom:707.466667pt;}
.ye_c00299{bottom:729.200000pt;}
.yd_c00299{bottom:751.333333pt;}
.yc_c00299{bottom:773.066667pt;}
.yb_c00299{bottom:798.666667pt;}
.ya_c00299{bottom:820.800000pt;}
.y9_c00299{bottom:842.933333pt;}
.y8_c00299{bottom:864.533333pt;}
.y7_c00299{bottom:886.666667pt;}
.y6_c00299{bottom:908.400000pt;}
.y5_c00299{bottom:930.533333pt;}
.y4_c00299{bottom:952.666667pt;}
.y3_c00299{bottom:978.266667pt;}
.y2_c00299{bottom:1000.000000pt;}
.y1_c00299{bottom:1026.266667pt;}
.h5_c00299{height:53.333333pt;}
.h3_c00299{height:64.000000pt;}
.h2_c00299{height:69.333333pt;}
.h4_c00299{height:74.666667pt;}
.h1_c00299{height:1127.333333pt;}
.h0_c00299{height:1127.359944pt;}
.w1_c00299{width:854.666667pt;}
.w0_c00299{width:854.720052pt;}
.x0_c00299{left:0.000000pt;}
.x4f_c00299{left:170.266667pt;}
.x1_c00299{left:181.466667pt;}
.x42_c00299{left:182.800000pt;}
.xb2_c00299{left:183.866667pt;}
.xbf_c00299{left:184.933333pt;}
.x62_c00299{left:199.733333pt;}
.x16_c00299{left:200.933333pt;}
.x12_c00299{left:209.733333pt;}
.x9b_c00299{left:211.066667pt;}
.x7d_c00299{left:216.933333pt;}
.x37_c00299{left:220.000000pt;}
.x43_c00299{left:223.066667pt;}
.x50_c00299{left:224.133333pt;}
.x8a_c00299{left:225.066667pt;}
.x17_c00299{left:229.733333pt;}
.x7e_c00299{left:235.466667pt;}
.xb6_c00299{left:238.000000pt;}
.x6b_c00299{left:240.666667pt;}
.x5f_c00299{left:242.133333pt;}
.xdb_c00299{left:245.333333pt;}
.x21_c00299{left:246.400000pt;}
.x59_c00299{left:248.400000pt;}
.x2c_c00299{left:250.133333pt;}
.xc6_c00299{left:253.200000pt;}
.x73_c00299{left:256.266667pt;}
.xe6_c00299{left:257.466667pt;}
.xc0_c00299{left:261.733333pt;}
.x51_c00299{left:263.200000pt;}
.x38_c00299{left:265.466667pt;}
.x13_c00299{left:268.000000pt;}
.x74_c00299{left:269.733333pt;}
.xdc_c00299{left:270.933333pt;}
.x2d_c00299{left:271.866667pt;}
.x18_c00299{left:274.266667pt;}
.xb7_c00299{left:275.466667pt;}
.xc7_c00299{left:279.733333pt;}
.x6c_c00299{left:280.933333pt;}
.x52_c00299{left:282.133333pt;}
.x22_c00299{left:285.733333pt;}
.x75_c00299{left:286.666667pt;}
.x84_c00299{left:287.733333pt;}
.x44_c00299{left:290.266667pt;}
.xe7_c00299{left:292.400000pt;}
.x7f_c00299{left:298.533333pt;}
.x14_c00299{left:300.000000pt;}
.xb3_c00299{left:302.000000pt;}
.x8b_c00299{left:306.133333pt;}
.xa3_c00299{left:308.266667pt;}
.x7_c00299{left:309.733333pt;}
.x63_c00299{left:312.000000pt;}
.x96_c00299{left:313.466667pt;}
.x53_c00299{left:314.400000pt;}
.xb8_c00299{left:315.466667pt;}
.x2e_c00299{left:317.600000pt;}
.x76_c00299{left:320.266667pt;}
.x45_c00299{left:322.533333pt;}
.x60_c00299{left:328.266667pt;}
.x9c_c00299{left:329.733333pt;}
.x23_c00299{left:334.000000pt;}
.xd7_c00299{left:335.200000pt;}
.x54_c00299{left:336.800000pt;}
.xb4_c00299{left:340.400000pt;}
.x6d_c00299{left:351.066667pt;}
.x19_c00299{left:353.600000pt;}
.x15_c00299{left:354.666667pt;}
.x91_c00299{left:356.933333pt;}
.x39_c00299{left:360.533333pt;}
.xdd_c00299{left:364.000000pt;}
.x77_c00299{left:365.066667pt;}
.xcf_c00299{left:366.933333pt;}
.xa4_c00299{left:368.400000pt;}
.xab_c00299{left:371.066667pt;}
.xb9_c00299{left:374.000000pt;}
.x8_c00299{left:375.333333pt;}
.x2f_c00299{left:377.066667pt;}
.xde_c00299{left:382.800000pt;}
.xc8_c00299{left:386.666667pt;}
.x24_c00299{left:388.133333pt;}
.x2_c00299{left:390.133333pt;}
.x85_c00299{left:392.666667pt;}
.xa5_c00299{left:393.733333pt;}
.x9_c00299{left:395.866667pt;}
.xba_c00299{left:398.666667pt;}
.x3a_c00299{left:400.266667pt;}
.x5a_c00299{left:402.933333pt;}
.x9d_c00299{left:404.666667pt;}
.x64_c00299{left:407.066667pt;}
.x78_c00299{left:409.200000pt;}
.x25_c00299{left:412.133333pt;}
.x6e_c00299{left:415.333333pt;}
.x8c_c00299{left:418.133333pt;}
.x92_c00299{left:419.600000pt;}
.x80_c00299{left:422.400000pt;}
.x3_c00299{left:424.400000pt;}
.xa_c00299{left:428.133333pt;}
.xac_c00299{left:431.600000pt;}
.xc1_c00299{left:435.466667pt;}
.xb5_c00299{left:443.466667pt;}
.x6f_c00299{left:446.666667pt;}
.x65_c00299{left:448.933333pt;}
.x1a_c00299{left:454.666667pt;}
.x55_c00299{left:455.600000pt;}
.xb_c00299{left:464.266667pt;}
.xad_c00299{left:465.200000pt;}
.xd0_c00299{left:466.400000pt;}
.xa6_c00299{left:467.600000pt;}
.x4_c00299{left:469.866667pt;}
.xdf_c00299{left:471.733333pt;}
.x46_c00299{left:472.933333pt;}
.x9e_c00299{left:476.000000pt;}
.xd1_c00299{left:476.933333pt;}
.x26_c00299{left:479.600000pt;}
.x97_c00299{left:480.533333pt;}
.x81_c00299{left:482.933333pt;}
.x47_c00299{left:485.066667pt;}
.x8d_c00299{left:487.200000pt;}
.x56_c00299{left:488.266667pt;}
.x3b_c00299{left:491.733333pt;}
.x66_c00299{left:492.800000pt;}
.x79_c00299{left:495.333333pt;}
.xa7_c00299{left:497.066667pt;}
.xd2_c00299{left:498.000000pt;}
.xcb_c00299{left:499.866667pt;}
.x82_c00299{left:506.666667pt;}
.x9f_c00299{left:509.600000pt;}
.x5b_c00299{left:510.800000pt;}
.x5_c00299{left:519.200000pt;}
.x3c_c00299{left:520.800000pt;}
.x98_c00299{left:522.800000pt;}
.x1b_c00299{left:526.400000pt;}
.x30_c00299{left:529.333333pt;}
.xbb_c00299{left:534.133333pt;}
.xd3_c00299{left:535.066667pt;}
.x70_c00299{left:536.266667pt;}
.x27_c00299{left:537.866667pt;}
.xe0_c00299{left:541.466667pt;}
.x86_c00299{left:544.666667pt;}
.x48_c00299{left:547.200000pt;}
.x31_c00299{left:550.133333pt;}
.x67_c00299{left:551.733333pt;}
.x6_c00299{left:553.066667pt;}
.x99_c00299{left:555.733333pt;}
.xc_c00299{left:556.800000pt;}
.x49_c00299{left:560.266667pt;}
.xa0_c00299{left:561.733333pt;}
.xc9_c00299{left:562.666667pt;}
.x8e_c00299{left:569.733333pt;}
.xbc_c00299{left:571.866667pt;}
.x28_c00299{left:577.200000pt;}
.x3d_c00299{left:578.133333pt;}
.xcc_c00299{left:580.800000pt;}
.x5c_c00299{left:582.533333pt;}
.xae_c00299{left:588.133333pt;}
.x4a_c00299{left:593.866667pt;}
.xe1_c00299{left:596.266667pt;}
.x7a_c00299{left:598.400000pt;}
.xd_c00299{left:601.600000pt;}
.x1c_c00299{left:604.800000pt;}
.x32_c00299{left:606.400000pt;}
.x3e_c00299{left:608.800000pt;}
.xc2_c00299{left:611.066667pt;}
.x68_c00299{left:612.533333pt;}
.xd4_c00299{left:615.733333pt;}
.x4b_c00299{left:618.133333pt;}
.xaf_c00299{left:619.866667pt;}
.x33_c00299{left:627.200000pt;}
.x3f_c00299{left:631.466667pt;}
.xa1_c00299{left:632.800000pt;}
.x87_c00299{left:642.000000pt;}
.x8f_c00299{left:643.066667pt;}
.xe_c00299{left:644.133333pt;}
.xbd_c00299{left:645.733333pt;}
.x9a_c00299{left:647.866667pt;}
.xc3_c00299{left:648.800000pt;}
.x93_c00299{left:650.266667pt;}
.xe2_c00299{left:653.200000pt;}
.x5d_c00299{left:654.266667pt;}
.xe8_c00299{left:660.133333pt;}
.xe3_c00299{left:661.866667pt;}
.x29_c00299{left:663.866667pt;}
.xa8_c00299{left:672.000000pt;}
.x40_c00299{left:673.333333pt;}
.xd5_c00299{left:675.600000pt;}
.x34_c00299{left:676.800000pt;}
.x1d_c00299{left:678.666667pt;}
.x4c_c00299{left:680.266667pt;}
.x5e_c00299{left:683.066667pt;}
.x2a_c00299{left:686.533333pt;}
.xd8_c00299{left:687.600000pt;}
.xf_c00299{left:694.000000pt;}
.xcd_c00299{left:695.733333pt;}
.x71_c00299{left:699.733333pt;}
.xa9_c00299{left:701.066667pt;}
.x88_c00299{left:702.800000pt;}
.x1e_c00299{left:705.600000pt;}
.xd9_c00299{left:706.800000pt;}
.xce_c00299{left:708.800000pt;}
.x61_c00299{left:712.666667pt;}
.x4d_c00299{left:714.800000pt;}
.x94_c00299{left:716.800000pt;}
.x10_c00299{left:718.266667pt;}
.x35_c00299{left:719.733333pt;}
.xca_c00299{left:722.400000pt;}
.x7b_c00299{left:724.133333pt;}
.x90_c00299{left:728.133333pt;}
.x57_c00299{left:729.200000pt;}
.x2b_c00299{left:731.333333pt;}
.xbe_c00299{left:732.800000pt;}
.xb0_c00299{left:734.800000pt;}
.x69_c00299{left:738.266667pt;}
.x83_c00299{left:740.266667pt;}
.x89_c00299{left:743.466667pt;}
.xc4_c00299{left:744.533333pt;}
.xd6_c00299{left:746.933333pt;}
.x1f_c00299{left:747.866667pt;}
.x11_c00299{left:748.933333pt;}
.xa2_c00299{left:752.133333pt;}
.x41_c00299{left:756.266667pt;}
.x95_c00299{left:758.133333pt;}
.x72_c00299{left:761.866667pt;}
.x20_c00299{left:763.200000pt;}
.x7c_c00299{left:765.733333pt;}
.x36_c00299{left:767.466667pt;}
.xc5_c00299{left:770.133333pt;}
.x58_c00299{left:772.133333pt;}
.x4e_c00299{left:774.933333pt;}
.xaa_c00299{left:779.466667pt;}
.xe4_c00299{left:786.933333pt;}
.xda_c00299{left:788.400000pt;}
.x6a_c00299{left:795.600000pt;}
.xb1_c00299{left:796.933333pt;}
.xe5_c00299{left:797.866667pt;}
}





/* 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_c00300 {
    display:none;
  }
  .loading-indicator_c00300.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00300 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_c00300 { 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_c00300" -> "#page-container .classname_c00300")
 */
.pf_c00300 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00300 { /* 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_c00300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00300 { /* 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_c00300 { /* 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_c00300 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00300 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00300 {overflow:visible;}
  }
}
.c_c00300 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00300 { /* 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_c00300:after { /* webkit #35443 */
  content: '';
}
.t_c00300:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00300 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 */
}
.__c00300 { /* 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_c00300 { /* info for Javascript */
  display:none;
}
.l_c00300 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00300 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00300 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00300: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_c00300 {
    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_c00300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00300.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_c00300 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00300;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.000000;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;}
.md7_c00300{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m5_c00300{transform:matrix(0.014000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014000,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00300{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m48_c00300{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00300{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.m54_c00300{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m47_c00300{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00300{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mda_c00300{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m72_c00300{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m55_c00300{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m40_c00300{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md9_c00300{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mde_c00300{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mad_c00300{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m103_c00300{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m59_c00300{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.meb_c00300{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00300{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00300{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m102_c00300{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m83_c00300{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00300{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mee_c00300{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me6_c00300{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m9_c00300{transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);}
.mef_c00300{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.md0_c00300{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mec_c00300{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00300{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md2_c00300{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00300{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00300{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.md5_c00300{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m3_c00300{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mc_c00300{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00300{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00300{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00300{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00300{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m89_c00300{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m53_c00300{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00300{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mea_c00300{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00300{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00300{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00300{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00300{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m75_c00300{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m65_c00300{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00300{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m50_c00300{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00300{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m94_c00300{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00300{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00300{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m95_c00300{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m45_c00300{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00300{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m84_c00300{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00300{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.md8_c00300{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00300{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m51_c00300{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb_c00300{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00300{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m66_c00300{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m10_c00300{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m20_c00300{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m88_c00300{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m77_c00300{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00300{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00300{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00300{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00300{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00300{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m81_c00300{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00300{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00300{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m11_c00300{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00300{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m74_c00300{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00300{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00300{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00300{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m64_c00300{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m56_c00300{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m61_c00300{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4_c00300{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m31_c00300{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me1_c00300{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m34_c00300{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m70_c00300{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00300{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m32_c00300{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00300{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00300{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00300{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m67_c00300{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m29_c00300{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00300{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00300{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00300{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md1_c00300{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00300{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00300{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00300{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00300{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00300{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00300{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00300{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00300{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m52_c00300{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00300{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00300{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00300{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m14_c00300{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m73_c00300{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m69_c00300{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00300{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m16_c00300{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me4_c00300{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00300{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.md4_c00300{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00300{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m15_c00300{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m97_c00300{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00300{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m71_c00300{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m19_c00300{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00300{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m60_c00300{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00300{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00300{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m28_c00300{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m30_c00300{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.me5_c00300{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00300{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mba_c00300{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md3_c00300{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma_c00300{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m36_c00300{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00300{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m17_c00300{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m46_c00300{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00300{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00300{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m78_c00300{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m35_c00300{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00300{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m23_c00300{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m76_c00300{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m25_c00300{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m33_c00300{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00300{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me0_c00300{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m24_c00300{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m58_c00300{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf_c00300{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00300{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00300{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00300{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00300{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m80_c00300{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.med_c00300{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00300{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00300{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m41_c00300{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00300{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m37_c00300{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m22_c00300{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00300{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00300{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mca_c00300{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m86_c00300{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m44_c00300{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00300{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m85_c00300{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00300{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m49_c00300{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00300{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m101_c00300{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m63_c00300{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m21_c00300{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m26_c00300{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m18_c00300{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m13_c00300{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m92_c00300{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m87_c00300{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00300{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m12_c00300{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00300{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me2_c00300{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00300{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00300{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00300{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m27_c00300{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m90_c00300{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m38_c00300{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00300{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m42_c00300{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mce_c00300{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00300{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me3_c00300{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00300{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.maf_c00300{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m100_c00300{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00300{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mab_c00300{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m93_c00300{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m57_c00300{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mac_c00300{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md6_c00300{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00300{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me7_c00300{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00300{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00300{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m91_c00300{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00300{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00300{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m98_c00300{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m39_c00300{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00300{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m62_c00300{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00300{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m79_c00300{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m43_c00300{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00300{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00300{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00300{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m96_c00300{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me9_c00300{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.me_c00300{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m7_c00300{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00300{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00300{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00300{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m99_c00300{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00300{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m8_c00300{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00300{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me8_c00300{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m68_c00300{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m6_c00300{transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00300{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md_c00300{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.mff_c00300{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.maa_c00300{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m82_c00300{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00300{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00300{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00300{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00300{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00300{transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00300{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mae_c00300{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00300{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(7.668000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.668000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.668000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls0_c00300{letter-spacing:0.000000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{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__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00300{word-spacing:-18.706691px;}
.ws1_c00300{word-spacing:-0.753070px;}
.ws7_c00300{word-spacing:0.000000px;}
.ws5_c00300{word-spacing:23.428571px;}
.ws4_c00300{word-spacing:32.000000px;}
.ws6_c00300{word-spacing:117.000000px;}
.ws3_c00300{word-spacing:396.595420px;}
.ws0_c00300{word-spacing:809.862069px;}
.fc0_c00300{color:transparent;}
.fsa_c00300{font-size:24.000000px;}
.fs8_c00300{font-size:36.000000px;}
.fs2_c00300{font-size:42.000000px;}
.fsc_c00300{font-size:48.000000px;}
.fsb_c00300{font-size:54.000000px;}
.fs6_c00300{font-size:60.000000px;}
.fs5_c00300{font-size:66.000000px;}
.fs7_c00300{font-size:72.000000px;}
.fs9_c00300{font-size:78.000000px;}
.fs1_c00300{font-size:90.000000px;}
.fs4_c00300{font-size:96.000000px;}
.fs3_c00300{font-size:102.000000px;}
.fs0_c00300{font-size:240.000000px;}
.y0_c00300{bottom:0.000000px;}
.y5b_c00300{bottom:168.900000px;}
.y5a_c00300{bottom:186.900000px;}
.y2e_c00300{bottom:193.350000px;}
.y59_c00300{bottom:201.300000px;}
.y58_c00300{bottom:216.000000px;}
.y2d_c00300{bottom:219.300000px;}
.y2c_c00300{bottom:243.750000px;}
.y57_c00300{bottom:252.000000px;}
.y56_c00300{bottom:259.200000px;}
.y2b_c00300{bottom:270.300000px;}
.y55_c00300{bottom:277.200000px;}
.y2a_c00300{bottom:288.000000px;}
.y54_c00300{bottom:295.200000px;}
.y29_c00300{bottom:306.000000px;}
.y53_c00300{bottom:317.850000px;}
.y28_c00300{bottom:328.650000px;}
.y52_c00300{bottom:335.100000px;}
.y27_c00300{bottom:346.650000px;}
.y51_c00300{bottom:352.500000px;}
.y26_c00300{bottom:364.650000px;}
.y50_c00300{bottom:370.050000px;}
.y25_c00300{bottom:382.350000px;}
.y4f_c00300{bottom:388.050000px;}
.y24_c00300{bottom:399.900000px;}
.y4e_c00300{bottom:405.000000px;}
.y4d_c00300{bottom:410.100000px;}
.y23_c00300{bottom:417.600000px;}
.y22_c00300{bottom:435.300000px;}
.y4c_c00300{bottom:437.400000px;}
.y4b_c00300{bottom:455.400000px;}
.y21_c00300{bottom:457.050000px;}
.y4a_c00300{bottom:473.400000px;}
.y20_c00300{bottom:475.050000px;}
.y49_c00300{bottom:491.400000px;}
.y1f_c00300{bottom:493.050000px;}
.y1e_c00300{bottom:510.750000px;}
.y48_c00300{bottom:513.300000px;}
.y1d_c00300{bottom:528.750000px;}
.y47_c00300{bottom:531.300000px;}
.y1c_c00300{bottom:546.750000px;}
.y46_c00300{bottom:549.000000px;}
.y1b_c00300{bottom:564.450000px;}
.y45_c00300{bottom:571.500000px;}
.y1a_c00300{bottom:586.350000px;}
.y44_c00300{bottom:589.500000px;}
.y19_c00300{bottom:604.350000px;}
.y43_c00300{bottom:612.150000px;}
.y18_c00300{bottom:618.450000px;}
.y17_c00300{bottom:626.400000px;}
.y42_c00300{bottom:632.250000px;}
.y16_c00300{bottom:644.400000px;}
.y41_c00300{bottom:647.700000px;}
.y15_c00300{bottom:663.450000px;}
.y40_c00300{bottom:669.900000px;}
.y14_c00300{bottom:681.450000px;}
.y3f_c00300{bottom:693.000000px;}
.y13_c00300{bottom:701.250000px;}
.y3e_c00300{bottom:711.000000px;}
.y12_c00300{bottom:718.950000px;}
.y3d_c00300{bottom:728.250000px;}
.y11_c00300{bottom:736.950000px;}
.y3c_c00300{bottom:751.350000px;}
.y10_c00300{bottom:756.000000px;}
.y3b_c00300{bottom:768.600000px;}
.yf_c00300{bottom:775.800000px;}
.y3a_c00300{bottom:786.300000px;}
.ye_c00300{bottom:793.800000px;}
.y39_c00300{bottom:804.600000px;}
.yd_c00300{bottom:813.150000px;}
.y38_c00300{bottom:821.850000px;}
.yc_c00300{bottom:830.850000px;}
.y37_c00300{bottom:839.850000px;}
.yb_c00300{bottom:851.100000px;}
.y36_c00300{bottom:862.200000px;}
.ya_c00300{bottom:870.900000px;}
.y35_c00300{bottom:880.200000px;}
.y9_c00300{bottom:889.200000px;}
.y34_c00300{bottom:907.050000px;}
.y8_c00300{bottom:909.300000px;}
.y33_c00300{bottom:924.000000px;}
.y7_c00300{bottom:927.000000px;}
.y32_c00300{bottom:936.300000px;}
.y6_c00300{bottom:944.700000px;}
.y31_c00300{bottom:962.700000px;}
.y30_c00300{bottom:980.700000px;}
.y5_c00300{bottom:981.450000px;}
.y2f_c00300{bottom:1015.200000px;}
.y4_c00300{bottom:1017.750000px;}
.y3_c00300{bottom:1047.900000px;}
.y1_c00300{bottom:1091.850000px;}
.y2_c00300{bottom:1148.700000px;}
.hc_c00300{height:24.000000px;}
.ha_c00300{height:36.000000px;}
.h4_c00300{height:42.000000px;}
.he_c00300{height:48.000000px;}
.hd_c00300{height:54.000000px;}
.h8_c00300{height:60.000000px;}
.h7_c00300{height:66.000000px;}
.h9_c00300{height:72.000000px;}
.hb_c00300{height:78.000000px;}
.h3_c00300{height:90.000000px;}
.h6_c00300{height:96.000000px;}
.h5_c00300{height:102.000000px;}
.h2_c00300{height:240.000000px;}
.h0_c00300{height:1271.160094px;}
.h1_c00300{height:1271.250000px;}
.w1_c00300{width:961.500000px;}
.w0_c00300{width:961.560058px;}
.x0_c00300{left:0.000000px;}
.x81_c00300{left:88.950000px;}
.x54_c00300{left:90.300000px;}
.x74_c00300{left:91.800000px;}
.x8_c00300{left:93.150000px;}
.x1c_c00300{left:97.950000px;}
.x3_c00300{left:99.750000px;}
.x85_c00300{left:106.500000px;}
.x5f_c00300{left:107.700000px;}
.x3e_c00300{left:109.050000px;}
.x30_c00300{left:110.100000px;}
.x12_c00300{left:111.300000px;}
.x5_c00300{left:126.300000px;}
.x34_c00300{left:128.550000px;}
.x19_c00300{left:129.600000px;}
.x8d_c00300{left:130.650000px;}
.x57_c00300{left:132.750000px;}
.x86_c00300{left:139.200000px;}
.x7c_c00300{left:141.300000px;}
.x6_c00300{left:142.800000px;}
.x75_c00300{left:144.450000px;}
.x66_c00300{left:146.100000px;}
.x3f_c00300{left:148.350000px;}
.x63_c00300{left:152.550000px;}
.x3c_c00300{left:154.350000px;}
.x6c_c00300{left:155.700000px;}
.x25_c00300{left:159.600000px;}
.x21_c00300{left:160.800000px;}
.x7f_c00300{left:162.600000px;}
.x5a_c00300{left:166.800000px;}
.x8c_c00300{left:168.900000px;}
.x70_c00300{left:171.000000px;}
.x1a_c00300{left:172.050000px;}
.x6d_c00300{left:176.550000px;}
.x37_c00300{left:180.000000px;}
.x2d_c00300{left:184.350000px;}
.x13_c00300{left:186.900000px;}
.x4d_c00300{left:188.250000px;}
.x79_c00300{left:190.950000px;}
.x1b_c00300{left:192.600000px;}
.x58_c00300{left:194.700000px;}
.x35_c00300{left:196.200000px;}
.x1d_c00300{left:199.350000px;}
.x55_c00300{left:201.600000px;}
.x49_c00300{left:202.950000px;}
.x2a_c00300{left:204.750000px;}
.x22_c00300{left:207.300000px;}
.xd_c00300{left:209.100000px;}
.x5b_c00300{left:210.300000px;}
.x40_c00300{left:215.400000px;}
.x36_c00300{left:216.750000px;}
.x82_c00300{left:221.400000px;}
.x23_c00300{left:222.450000px;}
.x2b_c00300{left:225.300000px;}
.x9_c00300{left:228.150000px;}
.x38_c00300{left:230.400000px;}
.x31_c00300{left:233.850000px;}
.x4e_c00300{left:235.050000px;}
.x80_c00300{left:236.700000px;}
.x88_c00300{left:240.000000px;}
.x83_c00300{left:242.250000px;}
.x64_c00300{left:243.300000px;}
.x1_c00300{left:245.850000px;}
.x14_c00300{left:247.050000px;}
.x1e_c00300{left:248.700000px;}
.xe_c00300{left:252.600000px;}
.x6e_c00300{left:253.650000px;}
.x44_c00300{left:254.850000px;}
.x39_c00300{left:257.400000px;}
.x5c_c00300{left:259.350000px;}
.x7d_c00300{left:260.850000px;}
.x32_c00300{left:262.350000px;}
.x48_c00300{left:263.850000px;}
.x67_c00300{left:266.400000px;}
.x2e_c00300{left:269.250000px;}
.x2c_c00300{left:272.100000px;}
.x2_c00300{left:274.350000px;}
.x15_c00300{left:275.550000px;}
.x41_c00300{left:276.600000px;}
.x26_c00300{left:277.650000px;}
.xa_c00300{left:285.000000px;}
.x5d_c00300{left:286.650000px;}
.x68_c00300{left:288.300000px;}
.x60_c00300{left:289.800000px;}
.x51_c00300{left:291.900000px;}
.x59_c00300{left:293.400000px;}
.x7a_c00300{left:294.600000px;}
.x24_c00300{left:296.250000px;}
.x7_c00300{left:298.350000px;}
.x3d_c00300{left:299.850000px;}
.x69_c00300{left:301.950000px;}
.x4f_c00300{left:304.500000px;}
.x33_c00300{left:305.550000px;}
.x76_c00300{left:306.900000px;}
.x89_c00300{left:307.950000px;}
.xf_c00300{left:310.500000px;}
.xb_c00300{left:311.700000px;}
.x6a_c00300{left:314.550000px;}
.x3a_c00300{left:317.550000px;}
.x61_c00300{left:318.900000px;}
.x4a_c00300{left:321.000000px;}
.x52_c00300{left:323.550000px;}
.x84_c00300{left:325.050000px;}
.x71_c00300{left:326.850000px;}
.x1f_c00300{left:328.950000px;}
.x45_c00300{left:330.150000px;}
.x8a_c00300{left:333.900000px;}
.x50_c00300{left:335.400000px;}
.x16_c00300{left:337.050000px;}
.x77_c00300{left:340.800000px;}
.x3b_c00300{left:342.450000px;}
.x6f_c00300{left:344.850000px;}
.x27_c00300{left:346.050000px;}
.x5e_c00300{left:348.150000px;}
.x20_c00300{left:352.350000px;}
.x46_c00300{left:355.650000px;}
.x72_c00300{left:360.750000px;}
.x56_c00300{left:363.150000px;}
.x17_c00300{left:366.150000px;}
.x6b_c00300{left:367.500000px;}
.x2f_c00300{left:369.000000px;}
.x10_c00300{left:370.950000px;}
.x28_c00300{left:374.550000px;}
.x47_c00300{left:376.500000px;}
.x78_c00300{left:377.550000px;}
.x4b_c00300{left:378.600000px;}
.x7e_c00300{left:380.100000px;}
.x87_c00300{left:382.950000px;}
.x11_c00300{left:384.600000px;}
.xc_c00300{left:386.250000px;}
.x18_c00300{left:389.550000px;}
.x7b_c00300{left:390.750000px;}
.x29_c00300{left:395.850000px;}
.x8b_c00300{left:397.350000px;}
.x73_c00300{left:398.550000px;}
.x4_c00300{left:400.050000px;}
.x53_c00300{left:402.750000px;}
.x42_c00300{left:404.100000px;}
.x65_c00300{left:405.300000px;}
.x4c_c00300{left:409.350000px;}
.x43_c00300{left:410.550000px;}
.x62_c00300{left:423.300000px;}
.x121_c00300{left:445.350000px;}
.x103_c00300{left:446.400000px;}
.xfb_c00300{left:447.900000px;}
.xe5_c00300{left:449.250000px;}
.xeb_c00300{left:450.300000px;}
.x93_c00300{left:452.850000px;}
.x100_c00300{left:456.450000px;}
.x10a_c00300{left:457.950000px;}
.xf1_c00300{left:459.450000px;}
.xab_c00300{left:462.000000px;}
.xe6_c00300{left:464.700000px;}
.x101_c00300{left:465.900000px;}
.xd9_c00300{left:467.100000px;}
.xb4_c00300{left:468.750000px;}
.x98_c00300{left:470.100000px;}
.xa2_c00300{left:471.450000px;}
.xfc_c00300{left:473.850000px;}
.x104_c00300{left:475.500000px;}
.xcf_c00300{left:480.000000px;}
.xf3_c00300{left:482.700000px;}
.xde_c00300{left:483.900000px;}
.x9b_c00300{left:485.550000px;}
.xa5_c00300{left:487.500000px;}
.xbb_c00300{left:488.850000px;}
.x118_c00300{left:492.600000px;}
.xb5_c00300{left:496.500000px;}
.xc0_c00300{left:501.600000px;}
.x122_c00300{left:502.950000px;}
.x10b_c00300{left:505.200000px;}
.xc9_c00300{left:513.150000px;}
.xf7_c00300{left:514.800000px;}
.xac_c00300{left:516.000000px;}
.xec_c00300{left:519.750000px;}
.xdc_c00300{left:521.700000px;}
.x99_c00300{left:523.800000px;}
.xb6_c00300{left:527.100000px;}
.xf4_c00300{left:529.200000px;}
.x9a_c00300{left:531.300000px;}
.xd2_c00300{left:532.350000px;}
.xad_c00300{left:533.700000px;}
.x8e_c00300{left:536.700000px;}
.x11f_c00300{left:539.700000px;}
.x94_c00300{left:541.800000px;}
.x10c_c00300{left:544.500000px;}
.xae_c00300{left:545.550000px;}
.xf8_c00300{left:547.200000px;}
.xa6_c00300{left:549.000000px;}
.xed_c00300{left:550.050000px;}
.xbc_c00300{left:551.850000px;}
.xdf_c00300{left:554.100000px;}
.xe7_c00300{left:556.950000px;}
.xd4_c00300{left:558.150000px;}
.xa3_c00300{left:559.650000px;}
.xc1_c00300{left:560.700000px;}
.xd0_c00300{left:563.550000px;}
.xb7_c00300{left:564.900000px;}
.xd5_c00300{left:568.650000px;}
.xef_c00300{left:571.350000px;}
.xf9_c00300{left:572.700000px;}
.x105_c00300{left:574.200000px;}
.xbd_c00300{left:576.000000px;}
.xaf_c00300{left:577.200000px;}
.xc2_c00300{left:578.400000px;}
.xb8_c00300{left:582.150000px;}
.xca_c00300{left:583.350000px;}
.x9c_c00300{left:585.600000px;}
.xa4_c00300{left:588.150000px;}
.xd6_c00300{left:590.250000px;}
.xcb_c00300{left:591.600000px;}
.x114_c00300{left:593.100000px;}
.x111_c00300{left:596.400000px;}
.xee_c00300{left:597.600000px;}
.x8f_c00300{left:601.800000px;}
.x106_c00300{left:604.500000px;}
.xcc_c00300{left:607.050000px;}
.xc3_c00300{left:608.250000px;}
.x119_c00300{left:610.350000px;}
.xe0_c00300{left:614.250000px;}
.xdd_c00300{left:617.850000px;}
.xe8_c00300{left:618.900000px;}
.xfd_c00300{left:621.150000px;}
.x115_c00300{left:623.400000px;}
.x124_c00300{left:625.050000px;}
.xa7_c00300{left:626.400000px;}
.xfa_c00300{left:627.750000px;}
.x107_c00300{left:633.000000px;}
.xb0_c00300{left:634.650000px;}
.xe1_c00300{left:636.600000px;}
.x90_c00300{left:638.550000px;}
.xd1_c00300{left:640.200000px;}
.x9d_c00300{left:643.200000px;}
.xda_c00300{left:644.850000px;}
.x95_c00300{left:647.250000px;}
.x9e_c00300{left:652.200000px;}
.x125_c00300{left:654.150000px;}
.x91_c00300{left:656.250000px;}
.xc4_c00300{left:659.400000px;}
.x10d_c00300{left:660.450000px;}
.xf5_c00300{left:663.450000px;}
.xdb_c00300{left:665.400000px;}
.x108_c00300{left:666.900000px;}
.xa8_c00300{left:668.250000px;}
.x11a_c00300{left:669.450000px;}
.xd7_c00300{left:670.500000px;}
.x120_c00300{left:672.150000px;}
.xe2_c00300{left:674.100000px;}
.x116_c00300{left:676.650000px;}
.xb1_c00300{left:679.350000px;}
.xb9_c00300{left:684.150000px;}
.xc5_c00300{left:685.650000px;}
.xe3_c00300{left:687.000000px;}
.x11b_c00300{left:688.950000px;}
.xd8_c00300{left:690.300000px;}
.x92_c00300{left:692.250000px;}
.xfe_c00300{left:694.500000px;}
.x96_c00300{left:695.550000px;}
.x109_c00300{left:697.500000px;}
.xbe_c00300{left:699.150000px;}
.xcd_c00300{left:702.450000px;}
.x10e_c00300{left:705.450000px;}
.xe9_c00300{left:707.700000px;}
.x9f_c00300{left:709.800000px;}
.xb2_c00300{left:712.800000px;}
.x117_c00300{left:715.950000px;}
.xe4_c00300{left:719.700000px;}
.xf2_c00300{left:720.750000px;}
.xc6_c00300{left:724.500000px;}
.x11c_c00300{left:725.700000px;}
.x112_c00300{left:727.500000px;}
.xff_c00300{left:733.050000px;}
.xce_c00300{left:735.600000px;}
.x102_c00300{left:738.000000px;}
.x126_c00300{left:739.050000px;}
.xa9_c00300{left:741.300000px;}
.xbf_c00300{left:743.100000px;}
.xc7_c00300{left:744.600000px;}
.x10f_c00300{left:749.400000px;}
.xf0_c00300{left:750.750000px;}
.x11e_c00300{left:751.800000px;}
.xa0_c00300{left:753.750000px;}
.x97_c00300{left:756.000000px;}
.xea_c00300{left:757.050000px;}
.xd3_c00300{left:759.150000px;}
.xc8_c00300{left:760.800000px;}
.x113_c00300{left:763.800000px;}
.x123_c00300{left:766.500000px;}
.xf6_c00300{left:768.600000px;}
.x11d_c00300{left:769.650000px;}
.x110_c00300{left:771.300000px;}
.xaa_c00300{left:775.500000px;}
.xb3_c00300{left:780.900000px;}
.xa1_c00300{left:783.600000px;}
.xba_c00300{left:792.150000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws2_c00300{word-spacing:-16.628170pt;}
.ws1_c00300{word-spacing:-0.669395pt;}
.ws7_c00300{word-spacing:0.000000pt;}
.ws5_c00300{word-spacing:20.825397pt;}
.ws4_c00300{word-spacing:28.444444pt;}
.ws6_c00300{word-spacing:104.000000pt;}
.ws3_c00300{word-spacing:352.529262pt;}
.ws0_c00300{word-spacing:719.877395pt;}
.fsa_c00300{font-size:21.333333pt;}
.fs8_c00300{font-size:32.000000pt;}
.fs2_c00300{font-size:37.333333pt;}
.fsc_c00300{font-size:42.666667pt;}
.fsb_c00300{font-size:48.000000pt;}
.fs6_c00300{font-size:53.333333pt;}
.fs5_c00300{font-size:58.666667pt;}
.fs7_c00300{font-size:64.000000pt;}
.fs9_c00300{font-size:69.333333pt;}
.fs1_c00300{font-size:80.000000pt;}
.fs4_c00300{font-size:85.333333pt;}
.fs3_c00300{font-size:90.666667pt;}
.fs0_c00300{font-size:213.333333pt;}
.y0_c00300{bottom:0.000000pt;}
.y5b_c00300{bottom:150.133333pt;}
.y5a_c00300{bottom:166.133333pt;}
.y2e_c00300{bottom:171.866667pt;}
.y59_c00300{bottom:178.933333pt;}
.y58_c00300{bottom:192.000000pt;}
.y2d_c00300{bottom:194.933333pt;}
.y2c_c00300{bottom:216.666667pt;}
.y57_c00300{bottom:224.000000pt;}
.y56_c00300{bottom:230.400000pt;}
.y2b_c00300{bottom:240.266667pt;}
.y55_c00300{bottom:246.400000pt;}
.y2a_c00300{bottom:256.000000pt;}
.y54_c00300{bottom:262.400000pt;}
.y29_c00300{bottom:272.000000pt;}
.y53_c00300{bottom:282.533333pt;}
.y28_c00300{bottom:292.133333pt;}
.y52_c00300{bottom:297.866667pt;}
.y27_c00300{bottom:308.133333pt;}
.y51_c00300{bottom:313.333333pt;}
.y26_c00300{bottom:324.133333pt;}
.y50_c00300{bottom:328.933333pt;}
.y25_c00300{bottom:339.866667pt;}
.y4f_c00300{bottom:344.933333pt;}
.y24_c00300{bottom:355.466667pt;}
.y4e_c00300{bottom:360.000000pt;}
.y4d_c00300{bottom:364.533333pt;}
.y23_c00300{bottom:371.200000pt;}
.y22_c00300{bottom:386.933333pt;}
.y4c_c00300{bottom:388.800000pt;}
.y4b_c00300{bottom:404.800000pt;}
.y21_c00300{bottom:406.266667pt;}
.y4a_c00300{bottom:420.800000pt;}
.y20_c00300{bottom:422.266667pt;}
.y49_c00300{bottom:436.800000pt;}
.y1f_c00300{bottom:438.266667pt;}
.y1e_c00300{bottom:454.000000pt;}
.y48_c00300{bottom:456.266667pt;}
.y1d_c00300{bottom:470.000000pt;}
.y47_c00300{bottom:472.266667pt;}
.y1c_c00300{bottom:486.000000pt;}
.y46_c00300{bottom:488.000000pt;}
.y1b_c00300{bottom:501.733333pt;}
.y45_c00300{bottom:508.000000pt;}
.y1a_c00300{bottom:521.200000pt;}
.y44_c00300{bottom:524.000000pt;}
.y19_c00300{bottom:537.200000pt;}
.y43_c00300{bottom:544.133333pt;}
.y18_c00300{bottom:549.733333pt;}
.y17_c00300{bottom:556.800000pt;}
.y42_c00300{bottom:562.000000pt;}
.y16_c00300{bottom:572.800000pt;}
.y41_c00300{bottom:575.733333pt;}
.y15_c00300{bottom:589.733333pt;}
.y40_c00300{bottom:595.466667pt;}
.y14_c00300{bottom:605.733333pt;}
.y3f_c00300{bottom:616.000000pt;}
.y13_c00300{bottom:623.333333pt;}
.y3e_c00300{bottom:632.000000pt;}
.y12_c00300{bottom:639.066667pt;}
.y3d_c00300{bottom:647.333333pt;}
.y11_c00300{bottom:655.066667pt;}
.y3c_c00300{bottom:667.866667pt;}
.y10_c00300{bottom:672.000000pt;}
.y3b_c00300{bottom:683.200000pt;}
.yf_c00300{bottom:689.600000pt;}
.y3a_c00300{bottom:698.933333pt;}
.ye_c00300{bottom:705.600000pt;}
.y39_c00300{bottom:715.200000pt;}
.yd_c00300{bottom:722.800000pt;}
.y38_c00300{bottom:730.533333pt;}
.yc_c00300{bottom:738.533333pt;}
.y37_c00300{bottom:746.533333pt;}
.yb_c00300{bottom:756.533333pt;}
.y36_c00300{bottom:766.400000pt;}
.ya_c00300{bottom:774.133333pt;}
.y35_c00300{bottom:782.400000pt;}
.y9_c00300{bottom:790.400000pt;}
.y34_c00300{bottom:806.266667pt;}
.y8_c00300{bottom:808.266667pt;}
.y33_c00300{bottom:821.333333pt;}
.y7_c00300{bottom:824.000000pt;}
.y32_c00300{bottom:832.266667pt;}
.y6_c00300{bottom:839.733333pt;}
.y31_c00300{bottom:855.733333pt;}
.y30_c00300{bottom:871.733333pt;}
.y5_c00300{bottom:872.400000pt;}
.y2f_c00300{bottom:902.400000pt;}
.y4_c00300{bottom:904.666667pt;}
.y3_c00300{bottom:931.466667pt;}
.y1_c00300{bottom:970.533333pt;}
.y2_c00300{bottom:1021.066667pt;}
.hc_c00300{height:21.333333pt;}
.ha_c00300{height:32.000000pt;}
.h4_c00300{height:37.333333pt;}
.he_c00300{height:42.666667pt;}
.hd_c00300{height:48.000000pt;}
.h8_c00300{height:53.333333pt;}
.h7_c00300{height:58.666667pt;}
.h9_c00300{height:64.000000pt;}
.hb_c00300{height:69.333333pt;}
.h3_c00300{height:80.000000pt;}
.h6_c00300{height:85.333333pt;}
.h5_c00300{height:90.666667pt;}
.h2_c00300{height:213.333333pt;}
.h0_c00300{height:1129.920084pt;}
.h1_c00300{height:1130.000000pt;}
.w1_c00300{width:854.666667pt;}
.w0_c00300{width:854.720052pt;}
.x0_c00300{left:0.000000pt;}
.x81_c00300{left:79.066667pt;}
.x54_c00300{left:80.266667pt;}
.x74_c00300{left:81.600000pt;}
.x8_c00300{left:82.800000pt;}
.x1c_c00300{left:87.066667pt;}
.x3_c00300{left:88.666667pt;}
.x85_c00300{left:94.666667pt;}
.x5f_c00300{left:95.733333pt;}
.x3e_c00300{left:96.933333pt;}
.x30_c00300{left:97.866667pt;}
.x12_c00300{left:98.933333pt;}
.x5_c00300{left:112.266667pt;}
.x34_c00300{left:114.266667pt;}
.x19_c00300{left:115.200000pt;}
.x8d_c00300{left:116.133333pt;}
.x57_c00300{left:118.000000pt;}
.x86_c00300{left:123.733333pt;}
.x7c_c00300{left:125.600000pt;}
.x6_c00300{left:126.933333pt;}
.x75_c00300{left:128.400000pt;}
.x66_c00300{left:129.866667pt;}
.x3f_c00300{left:131.866667pt;}
.x63_c00300{left:135.600000pt;}
.x3c_c00300{left:137.200000pt;}
.x6c_c00300{left:138.400000pt;}
.x25_c00300{left:141.866667pt;}
.x21_c00300{left:142.933333pt;}
.x7f_c00300{left:144.533333pt;}
.x5a_c00300{left:148.266667pt;}
.x8c_c00300{left:150.133333pt;}
.x70_c00300{left:152.000000pt;}
.x1a_c00300{left:152.933333pt;}
.x6d_c00300{left:156.933333pt;}
.x37_c00300{left:160.000000pt;}
.x2d_c00300{left:163.866667pt;}
.x13_c00300{left:166.133333pt;}
.x4d_c00300{left:167.333333pt;}
.x79_c00300{left:169.733333pt;}
.x1b_c00300{left:171.200000pt;}
.x58_c00300{left:173.066667pt;}
.x35_c00300{left:174.400000pt;}
.x1d_c00300{left:177.200000pt;}
.x55_c00300{left:179.200000pt;}
.x49_c00300{left:180.400000pt;}
.x2a_c00300{left:182.000000pt;}
.x22_c00300{left:184.266667pt;}
.xd_c00300{left:185.866667pt;}
.x5b_c00300{left:186.933333pt;}
.x40_c00300{left:191.466667pt;}
.x36_c00300{left:192.666667pt;}
.x82_c00300{left:196.800000pt;}
.x23_c00300{left:197.733333pt;}
.x2b_c00300{left:200.266667pt;}
.x9_c00300{left:202.800000pt;}
.x38_c00300{left:204.800000pt;}
.x31_c00300{left:207.866667pt;}
.x4e_c00300{left:208.933333pt;}
.x80_c00300{left:210.400000pt;}
.x88_c00300{left:213.333333pt;}
.x83_c00300{left:215.333333pt;}
.x64_c00300{left:216.266667pt;}
.x1_c00300{left:218.533333pt;}
.x14_c00300{left:219.600000pt;}
.x1e_c00300{left:221.066667pt;}
.xe_c00300{left:224.533333pt;}
.x6e_c00300{left:225.466667pt;}
.x44_c00300{left:226.533333pt;}
.x39_c00300{left:228.800000pt;}
.x5c_c00300{left:230.533333pt;}
.x7d_c00300{left:231.866667pt;}
.x32_c00300{left:233.200000pt;}
.x48_c00300{left:234.533333pt;}
.x67_c00300{left:236.800000pt;}
.x2e_c00300{left:239.333333pt;}
.x2c_c00300{left:241.866667pt;}
.x2_c00300{left:243.866667pt;}
.x15_c00300{left:244.933333pt;}
.x41_c00300{left:245.866667pt;}
.x26_c00300{left:246.800000pt;}
.xa_c00300{left:253.333333pt;}
.x5d_c00300{left:254.800000pt;}
.x68_c00300{left:256.266667pt;}
.x60_c00300{left:257.600000pt;}
.x51_c00300{left:259.466667pt;}
.x59_c00300{left:260.800000pt;}
.x7a_c00300{left:261.866667pt;}
.x24_c00300{left:263.333333pt;}
.x7_c00300{left:265.200000pt;}
.x3d_c00300{left:266.533333pt;}
.x69_c00300{left:268.400000pt;}
.x4f_c00300{left:270.666667pt;}
.x33_c00300{left:271.600000pt;}
.x76_c00300{left:272.800000pt;}
.x89_c00300{left:273.733333pt;}
.xf_c00300{left:276.000000pt;}
.xb_c00300{left:277.066667pt;}
.x6a_c00300{left:279.600000pt;}
.x3a_c00300{left:282.266667pt;}
.x61_c00300{left:283.466667pt;}
.x4a_c00300{left:285.333333pt;}
.x52_c00300{left:287.600000pt;}
.x84_c00300{left:288.933333pt;}
.x71_c00300{left:290.533333pt;}
.x1f_c00300{left:292.400000pt;}
.x45_c00300{left:293.466667pt;}
.x8a_c00300{left:296.800000pt;}
.x50_c00300{left:298.133333pt;}
.x16_c00300{left:299.600000pt;}
.x77_c00300{left:302.933333pt;}
.x3b_c00300{left:304.400000pt;}
.x6f_c00300{left:306.533333pt;}
.x27_c00300{left:307.600000pt;}
.x5e_c00300{left:309.466667pt;}
.x20_c00300{left:313.200000pt;}
.x46_c00300{left:316.133333pt;}
.x72_c00300{left:320.666667pt;}
.x56_c00300{left:322.800000pt;}
.x17_c00300{left:325.466667pt;}
.x6b_c00300{left:326.666667pt;}
.x2f_c00300{left:328.000000pt;}
.x10_c00300{left:329.733333pt;}
.x28_c00300{left:332.933333pt;}
.x47_c00300{left:334.666667pt;}
.x78_c00300{left:335.600000pt;}
.x4b_c00300{left:336.533333pt;}
.x7e_c00300{left:337.866667pt;}
.x87_c00300{left:340.400000pt;}
.x11_c00300{left:341.866667pt;}
.xc_c00300{left:343.333333pt;}
.x18_c00300{left:346.266667pt;}
.x7b_c00300{left:347.333333pt;}
.x29_c00300{left:351.866667pt;}
.x8b_c00300{left:353.200000pt;}
.x73_c00300{left:354.266667pt;}
.x4_c00300{left:355.600000pt;}
.x53_c00300{left:358.000000pt;}
.x42_c00300{left:359.200000pt;}
.x65_c00300{left:360.266667pt;}
.x4c_c00300{left:363.866667pt;}
.x43_c00300{left:364.933333pt;}
.x62_c00300{left:376.266667pt;}
.x121_c00300{left:395.866667pt;}
.x103_c00300{left:396.800000pt;}
.xfb_c00300{left:398.133333pt;}
.xe5_c00300{left:399.333333pt;}
.xeb_c00300{left:400.266667pt;}
.x93_c00300{left:402.533333pt;}
.x100_c00300{left:405.733333pt;}
.x10a_c00300{left:407.066667pt;}
.xf1_c00300{left:408.400000pt;}
.xab_c00300{left:410.666667pt;}
.xe6_c00300{left:413.066667pt;}
.x101_c00300{left:414.133333pt;}
.xd9_c00300{left:415.200000pt;}
.xb4_c00300{left:416.666667pt;}
.x98_c00300{left:417.866667pt;}
.xa2_c00300{left:419.066667pt;}
.xfc_c00300{left:421.200000pt;}
.x104_c00300{left:422.666667pt;}
.xcf_c00300{left:426.666667pt;}
.xf3_c00300{left:429.066667pt;}
.xde_c00300{left:430.133333pt;}
.x9b_c00300{left:431.600000pt;}
.xa5_c00300{left:433.333333pt;}
.xbb_c00300{left:434.533333pt;}
.x118_c00300{left:437.866667pt;}
.xb5_c00300{left:441.333333pt;}
.xc0_c00300{left:445.866667pt;}
.x122_c00300{left:447.066667pt;}
.x10b_c00300{left:449.066667pt;}
.xc9_c00300{left:456.133333pt;}
.xf7_c00300{left:457.600000pt;}
.xac_c00300{left:458.666667pt;}
.xec_c00300{left:462.000000pt;}
.xdc_c00300{left:463.733333pt;}
.x99_c00300{left:465.600000pt;}
.xb6_c00300{left:468.533333pt;}
.xf4_c00300{left:470.400000pt;}
.x9a_c00300{left:472.266667pt;}
.xd2_c00300{left:473.200000pt;}
.xad_c00300{left:474.400000pt;}
.x8e_c00300{left:477.066667pt;}
.x11f_c00300{left:479.733333pt;}
.x94_c00300{left:481.600000pt;}
.x10c_c00300{left:484.000000pt;}
.xae_c00300{left:484.933333pt;}
.xf8_c00300{left:486.400000pt;}
.xa6_c00300{left:488.000000pt;}
.xed_c00300{left:488.933333pt;}
.xbc_c00300{left:490.533333pt;}
.xdf_c00300{left:492.533333pt;}
.xe7_c00300{left:495.066667pt;}
.xd4_c00300{left:496.133333pt;}
.xa3_c00300{left:497.466667pt;}
.xc1_c00300{left:498.400000pt;}
.xd0_c00300{left:500.933333pt;}
.xb7_c00300{left:502.133333pt;}
.xd5_c00300{left:505.466667pt;}
.xef_c00300{left:507.866667pt;}
.xf9_c00300{left:509.066667pt;}
.x105_c00300{left:510.400000pt;}
.xbd_c00300{left:512.000000pt;}
.xaf_c00300{left:513.066667pt;}
.xc2_c00300{left:514.133333pt;}
.xb8_c00300{left:517.466667pt;}
.xca_c00300{left:518.533333pt;}
.x9c_c00300{left:520.533333pt;}
.xa4_c00300{left:522.800000pt;}
.xd6_c00300{left:524.666667pt;}
.xcb_c00300{left:525.866667pt;}
.x114_c00300{left:527.200000pt;}
.x111_c00300{left:530.133333pt;}
.xee_c00300{left:531.200000pt;}
.x8f_c00300{left:534.933333pt;}
.x106_c00300{left:537.333333pt;}
.xcc_c00300{left:539.600000pt;}
.xc3_c00300{left:540.666667pt;}
.x119_c00300{left:542.533333pt;}
.xe0_c00300{left:546.000000pt;}
.xdd_c00300{left:549.200000pt;}
.xe8_c00300{left:550.133333pt;}
.xfd_c00300{left:552.133333pt;}
.x115_c00300{left:554.133333pt;}
.x124_c00300{left:555.600000pt;}
.xa7_c00300{left:556.800000pt;}
.xfa_c00300{left:558.000000pt;}
.x107_c00300{left:562.666667pt;}
.xb0_c00300{left:564.133333pt;}
.xe1_c00300{left:565.866667pt;}
.x90_c00300{left:567.600000pt;}
.xd1_c00300{left:569.066667pt;}
.x9d_c00300{left:571.733333pt;}
.xda_c00300{left:573.200000pt;}
.x95_c00300{left:575.333333pt;}
.x9e_c00300{left:579.733333pt;}
.x125_c00300{left:581.466667pt;}
.x91_c00300{left:583.333333pt;}
.xc4_c00300{left:586.133333pt;}
.x10d_c00300{left:587.066667pt;}
.xf5_c00300{left:589.733333pt;}
.xdb_c00300{left:591.466667pt;}
.x108_c00300{left:592.800000pt;}
.xa8_c00300{left:594.000000pt;}
.x11a_c00300{left:595.066667pt;}
.xd7_c00300{left:596.000000pt;}
.x120_c00300{left:597.466667pt;}
.xe2_c00300{left:599.200000pt;}
.x116_c00300{left:601.466667pt;}
.xb1_c00300{left:603.866667pt;}
.xb9_c00300{left:608.133333pt;}
.xc5_c00300{left:609.466667pt;}
.xe3_c00300{left:610.666667pt;}
.x11b_c00300{left:612.400000pt;}
.xd8_c00300{left:613.600000pt;}
.x92_c00300{left:615.333333pt;}
.xfe_c00300{left:617.333333pt;}
.x96_c00300{left:618.266667pt;}
.x109_c00300{left:620.000000pt;}
.xbe_c00300{left:621.466667pt;}
.xcd_c00300{left:624.400000pt;}
.x10e_c00300{left:627.066667pt;}
.xe9_c00300{left:629.066667pt;}
.x9f_c00300{left:630.933333pt;}
.xb2_c00300{left:633.600000pt;}
.x117_c00300{left:636.400000pt;}
.xe4_c00300{left:639.733333pt;}
.xf2_c00300{left:640.666667pt;}
.xc6_c00300{left:644.000000pt;}
.x11c_c00300{left:645.066667pt;}
.x112_c00300{left:646.666667pt;}
.xff_c00300{left:651.600000pt;}
.xce_c00300{left:653.866667pt;}
.x102_c00300{left:656.000000pt;}
.x126_c00300{left:656.933333pt;}
.xa9_c00300{left:658.933333pt;}
.xbf_c00300{left:660.533333pt;}
.xc7_c00300{left:661.866667pt;}
.x10f_c00300{left:666.133333pt;}
.xf0_c00300{left:667.333333pt;}
.x11e_c00300{left:668.266667pt;}
.xa0_c00300{left:670.000000pt;}
.x97_c00300{left:672.000000pt;}
.xea_c00300{left:672.933333pt;}
.xd3_c00300{left:674.800000pt;}
.xc8_c00300{left:676.266667pt;}
.x113_c00300{left:678.933333pt;}
.x123_c00300{left:681.333333pt;}
.xf6_c00300{left:683.200000pt;}
.x11d_c00300{left:684.133333pt;}
.x110_c00300{left:685.600000pt;}
.xaa_c00300{left:689.333333pt;}
.xb3_c00300{left:694.133333pt;}
.xa1_c00300{left:696.533333pt;}
.xba_c00300{left:704.133333pt;}
}





/* 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_c00301 {
    display:none;
  }
  .loading-indicator_c00301.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00301 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_c00301 { 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_c00301" -> "#page-container .classname_c00301")
 */
.pf_c00301 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00301 { /* 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_c00301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00301 { /* 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_c00301 { /* 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_c00301 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00301 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00301 {overflow:visible;}
  }
}
.c_c00301 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00301 { /* 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_c00301:after { /* webkit #35443 */
  content: '';
}
.t_c00301:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00301 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 */
}
.__c00301 { /* 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_c00301 { /* info for Javascript */
  display:none;
}
.l_c00301 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00301 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00301 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00301: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_c00301 {
    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_c00301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00301.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_c00301 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00301;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.000000;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;}
.mb5_c00301{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00301{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00301{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m110_c00301{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m54_c00301{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.maa_c00301{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m65_c00301{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m22_c00301{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m40_c00301{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me8_c00301{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m15_c00301{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00301{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00301{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mac_c00301{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m20_c00301{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00301{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m68_c00301{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc_c00301{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9_c00301{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00301{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00301{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00301{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.me3_c00301{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m10_c00301{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m23_c00301{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m115_c00301{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.med_c00301{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m34_c00301{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00301{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m33_c00301{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00301{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m81_c00301{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m118_c00301{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00301{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.md1_c00301{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00301{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7_c00301{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m76_c00301{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m79_c00301{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m13_c00301{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m21_c00301{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00301{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m114_c00301{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00301{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m117_c00301{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me5_c00301{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00301{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00301{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m11_c00301{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00301{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00301{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.maf_c00301{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00301{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m71_c00301{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00301{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00301{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00301{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00301{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m45_c00301{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00301{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00301{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m51_c00301{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m70_c00301{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m8_c00301{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m116_c00301{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00301{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00301{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m85_c00301{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m52_c00301{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m17_c00301{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00301{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m53_c00301{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mca_c00301{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00301{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00301{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m74_c00301{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m62_c00301{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m47_c00301{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m56_c00301{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md2_c00301{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me7_c00301{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00301{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m36_c00301{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00301{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m67_c00301{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m113_c00301{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m101_c00301{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00301{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00301{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m24_c00301{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00301{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m72_c00301{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mde_c00301{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m55_c00301{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m90_c00301{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m92_c00301{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00301{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m84_c00301{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m82_c00301{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m25_c00301{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00301{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m91_c00301{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00301{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00301{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.md5_c00301{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.md3_c00301{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m93_c00301{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00301{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00301{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m87_c00301{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m32_c00301{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00301{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00301{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m59_c00301{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00301{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00301{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00301{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m109_c00301{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md6_c00301{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m75_c00301{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00301{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00301{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00301{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00301{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00301{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00301{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m60_c00301{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m95_c00301{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00301{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00301{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m29_c00301{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m78_c00301{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m50_c00301{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma_c00301{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.me9_c00301{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00301{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m42_c00301{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00301{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00301{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00301{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00301{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00301{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00301{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m44_c00301{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m57_c00301{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.me4_c00301{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mce_c00301{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00301{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00301{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00301{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m58_c00301{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00301{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00301{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mda_c00301{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00301{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00301{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00301{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m19_c00301{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00301{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m63_c00301{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m43_c00301{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00301{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m12_c00301{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00301{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m83_c00301{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m48_c00301{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m39_c00301{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m103_c00301{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00301{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m46_c00301{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00301{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00301{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m86_c00301{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m27_c00301{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00301{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m80_c00301{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m88_c00301{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00301{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mab_c00301{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6_c00301{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00301{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m102_c00301{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m37_c00301{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00301{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00301{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mae_c00301{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m89_c00301{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00301{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md8_c00301{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mec_c00301{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m77_c00301{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m111_c00301{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m64_c00301{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m18_c00301{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00301{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m108_c00301{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00301{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb_c00301{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00301{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00301{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00301{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00301{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00301{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me6_c00301{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00301{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me_c00301{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m26_c00301{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m96_c00301{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me2_c00301{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00301{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m99_c00301{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m14_c00301{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00301{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m66_c00301{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m94_c00301{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4_c00301{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00301{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mef_c00301{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m112_c00301{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me0_c00301{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m16_c00301{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00301{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00301{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m35_c00301{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m69_c00301{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m0_c00301{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00301{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00301{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m73_c00301{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md4_c00301{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m106_c00301{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00301{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00301{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me1_c00301{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m61_c00301{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00301{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md9_c00301{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00301{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mba_c00301{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00301{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.meb_c00301{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00301{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mf_c00301{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00301{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md_c00301{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m30_c00301{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00301{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m49_c00301{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m97_c00301{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00301{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md7_c00301{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00301{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00301{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00301{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mff_c00301{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00301{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00301{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00301{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mad_c00301{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m31_c00301{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m41_c00301{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m107_c00301{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m98_c00301{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00301{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mee_c00301{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m104_c00301{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m100_c00301{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00301{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m105_c00301{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00301{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00301{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mea_c00301{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00301{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00301{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.md0_c00301{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m38_c00301{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m28_c00301{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls0_c00301{letter-spacing:0.000000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{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__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00301{word-spacing:-13.120275px;}
.ws8_c00301{word-spacing:-10.277778px;}
.ws3_c00301{word-spacing:-10.166667px;}
.ws7_c00301{word-spacing:-9.725086px;}
.ws9_c00301{word-spacing:-4.444126px;}
.ws4_c00301{word-spacing:-3.333333px;}
.ws5_c00301{word-spacing:-1.676218px;}
.wsc_c00301{word-spacing:0.000000px;}
.ws6_c00301{word-spacing:5.279330px;}
.wsa_c00301{word-spacing:8.529412px;}
.ws1_c00301{word-spacing:15.000000px;}
.ws2_c00301{word-spacing:25.714286px;}
.ws0_c00301{word-spacing:60.000000px;}
._0_c00301{width:48.125000px;}
._1_c00301{width:59.285714px;}
.fc0_c00301{color:transparent;}
.fs6_c00301{font-size:18.000000px;}
.fs5_c00301{font-size:30.000000px;}
.fs2_c00301{font-size:54.000000px;}
.fs1_c00301{font-size:60.000000px;}
.fs3_c00301{font-size:66.000000px;}
.fs4_c00301{font-size:72.000000px;}
.fs0_c00301{font-size:84.000000px;}
.y0_c00301{bottom:0.000000px;}
.y6f_c00301{bottom:189.000000px;}
.y39_c00301{bottom:190.350000px;}
.y6e_c00301{bottom:207.300000px;}
.y38_c00301{bottom:208.350000px;}
.y37_c00301{bottom:226.050000px;}
.y6d_c00301{bottom:229.350000px;}
.y36_c00301{bottom:244.050000px;}
.y6c_c00301{bottom:247.350000px;}
.y6b_c00301{bottom:259.950000px;}
.y35_c00301{bottom:261.300000px;}
.y6a_c00301{bottom:265.350000px;}
.y34_c00301{bottom:279.300000px;}
.y69_c00301{bottom:283.350000px;}
.y33_c00301{bottom:295.950000px;}
.y68_c00301{bottom:300.900000px;}
.y32_c00301{bottom:301.200000px;}
.y31_c00301{bottom:318.900000px;}
.y67_c00301{bottom:323.550000px;}
.y30_c00301{bottom:341.250000px;}
.y66_c00301{bottom:341.550000px;}
.y65_c00301{bottom:359.550000px;}
.y2f_c00301{bottom:360.000000px;}
.y64_c00301{bottom:377.250000px;}
.y2e_c00301{bottom:381.150000px;}
.y63_c00301{bottom:395.550000px;}
.y2d_c00301{bottom:399.900000px;}
.y62_c00301{bottom:413.250000px;}
.y2c_c00301{bottom:420.450000px;}
.y61_c00301{bottom:435.600000px;}
.y2b_c00301{bottom:439.950000px;}
.y60_c00301{bottom:453.600000px;}
.y2a_c00301{bottom:461.850000px;}
.y5f_c00301{bottom:471.600000px;}
.y29_c00301{bottom:480.300000px;}
.y5e_c00301{bottom:489.300000px;}
.y28_c00301{bottom:497.550000px;}
.y5d_c00301{bottom:507.300000px;}
.y27_c00301{bottom:519.750000px;}
.y5c_c00301{bottom:524.100000px;}
.y26_c00301{bottom:538.500000px;}
.y5b_c00301{bottom:542.100000px;}
.y25_c00301{bottom:556.050000px;}
.y5a_c00301{bottom:559.800000px;}
.y24_c00301{bottom:574.050000px;}
.y59_c00301{bottom:577.800000px;}
.y23_c00301{bottom:592.050000px;}
.y58_c00301{bottom:595.800000px;}
.y22_c00301{bottom:610.050000px;}
.y57_c00301{bottom:613.500000px;}
.y21_c00301{bottom:627.750000px;}
.y56_c00301{bottom:631.500000px;}
.y20_c00301{bottom:646.050000px;}
.y55_c00301{bottom:649.500000px;}
.y1f_c00301{bottom:663.300000px;}
.y54_c00301{bottom:667.500000px;}
.y1e_c00301{bottom:681.300000px;}
.y53_c00301{bottom:685.200000px;}
.y1d_c00301{bottom:699.300000px;}
.y52_c00301{bottom:703.200000px;}
.y1c_c00301{bottom:717.300000px;}
.y51_c00301{bottom:720.900000px;}
.y1b_c00301{bottom:735.000000px;}
.y50_c00301{bottom:739.200000px;}
.y1a_c00301{bottom:753.000000px;}
.y4f_c00301{bottom:756.900000px;}
.y19_c00301{bottom:770.700000px;}
.y4e_c00301{bottom:774.600000px;}
.y18_c00301{bottom:788.700000px;}
.y4d_c00301{bottom:792.900000px;}
.y17_c00301{bottom:806.700000px;}
.y4c_c00301{bottom:810.600000px;}
.y16_c00301{bottom:824.700000px;}
.y4b_c00301{bottom:828.300000px;}
.y15_c00301{bottom:842.400000px;}
.y4a_c00301{bottom:846.600000px;}
.y14_c00301{bottom:860.400000px;}
.y49_c00301{bottom:864.300000px;}
.y48_c00301{bottom:882.300000px;}
.y13_c00301{bottom:884.100000px;}
.y12_c00301{bottom:899.250000px;}
.y47_c00301{bottom:900.300000px;}
.y46_c00301{bottom:918.300000px;}
.y11_c00301{bottom:919.050000px;}
.y10_c00301{bottom:933.450000px;}
.y45_c00301{bottom:936.000000px;}
.yf_c00301{bottom:946.500000px;}
.y44_c00301{bottom:954.000000px;}
.ye_c00301{bottom:961.950000px;}
.y43_c00301{bottom:972.000000px;}
.yd_c00301{bottom:975.300000px;}
.y42_c00301{bottom:990.000000px;}
.yc_c00301{bottom:990.600000px;}
.yb_c00301{bottom:1003.950000px;}
.y41_c00301{bottom:1008.000000px;}
.ya_c00301{bottom:1019.850000px;}
.y40_c00301{bottom:1028.850000px;}
.y9_c00301{bottom:1032.450000px;}
.y8_c00301{bottom:1047.600000px;}
.y7_c00301{bottom:1062.300000px;}
.y3f_c00301{bottom:1065.300000px;}
.y6_c00301{bottom:1076.700000px;}
.y3e_c00301{bottom:1083.300000px;}
.y5_c00301{bottom:1090.800000px;}
.y3d_c00301{bottom:1101.300000px;}
.y4_c00301{bottom:1105.950000px;}
.y3c_c00301{bottom:1108.350000px;}
.y3b_c00301{bottom:1110.150000px;}
.y3a_c00301{bottom:1118.850000px;}
.y3_c00301{bottom:1121.100000px;}
.y1_c00301{bottom:1142.250000px;}
.y2_c00301{bottom:1144.800000px;}
.h8_c00301{height:18.000000px;}
.h7_c00301{height:30.000000px;}
.h4_c00301{height:54.000000px;}
.h3_c00301{height:60.000000px;}
.h5_c00301{height:66.000000px;}
.h6_c00301{height:72.000000px;}
.h2_c00301{height:84.000000px;}
.h1_c00301{height:1261.500000px;}
.h0_c00301{height:1261.800018px;}
.w1_c00301{width:961.500000px;}
.w0_c00301{width:961.560058px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:174.300000px;}
.x46_c00301{left:176.400000px;}
.xc_c00301{left:188.250000px;}
.x28_c00301{left:189.300000px;}
.x98_c00301{left:191.550000px;}
.x4d_c00301{left:194.700000px;}
.x62_c00301{left:196.050000px;}
.x6d_c00301{left:197.100000px;}
.x77_c00301{left:198.750000px;}
.x87_c00301{left:200.100000px;}
.x91_c00301{left:201.300000px;}
.x4_c00301{left:203.100000px;}
.x1b_c00301{left:204.150000px;}
.x2e_c00301{left:205.200000px;}
.x4e_c00301{left:211.650000px;}
.x60_c00301{left:216.900000px;}
.x89_c00301{left:219.900000px;}
.x95_c00301{left:221.100000px;}
.x9d_c00301{left:224.250000px;}
.x7f_c00301{left:225.300000px;}
.x35_c00301{left:226.800000px;}
.x65_c00301{left:231.750000px;}
.x29_c00301{left:233.850000px;}
.x58_c00301{left:234.900000px;}
.xd_c00301{left:236.100000px;}
.xa1_c00301{left:237.900000px;}
.x54_c00301{left:240.300000px;}
.x40_c00301{left:242.850000px;}
.x2f_c00301{left:244.800000px;}
.x36_c00301{left:246.300000px;}
.x6e_c00301{left:249.000000px;}
.x3a_c00301{left:250.350000px;}
.x8b_c00301{left:251.550000px;}
.x9f_c00301{left:253.950000px;}
.x82_c00301{left:255.000000px;}
.x74_c00301{left:256.050000px;}
.x16_c00301{left:257.100000px;}
.x1c_c00301{left:258.900000px;}
.x8d_c00301{left:259.950000px;}
.xe_c00301{left:261.600000px;}
.x47_c00301{left:264.300000px;}
.x5_c00301{left:265.350000px;}
.x25_c00301{left:267.150000px;}
.x68_c00301{left:269.100000px;}
.x2a_c00301{left:270.900000px;}
.x59_c00301{left:273.450000px;}
.x17_c00301{left:275.400000px;}
.x75_c00301{left:276.900000px;}
.x1d_c00301{left:278.400000px;}
.x3b_c00301{left:279.900000px;}
.x8a_c00301{left:281.550000px;}
.x14_c00301{left:283.500000px;}
.x8e_c00301{left:285.900000px;}
.x93_c00301{left:287.700000px;}
.x26_c00301{left:288.750000px;}
.x66_c00301{left:290.400000px;}
.x4f_c00301{left:293.850000px;}
.x6_c00301{left:295.200000px;}
.x30_c00301{left:297.000000px;}
.x15_c00301{left:298.200000px;}
.x45_c00301{left:299.550000px;}
.x5d_c00301{left:302.250000px;}
.x41_c00301{left:304.350000px;}
.x18_c00301{left:306.300000px;}
.x69_c00301{left:307.950000px;}
.x1e_c00301{left:310.500000px;}
.x67_c00301{left:315.600000px;}
.x83_c00301{left:317.550000px;}
.x99_c00301{left:318.600000px;}
.x48_c00301{left:320.850000px;}
.x3c_c00301{left:322.050000px;}
.x19_c00301{left:324.000000px;}
.x37_c00301{left:326.550000px;}
.x50_c00301{left:328.050000px;}
.x1f_c00301{left:329.550000px;}
.x78_c00301{left:330.900000px;}
.x6a_c00301{left:332.400000px;}
.x6f_c00301{left:334.350000px;}
.x88_c00301{left:337.200000px;}
.x8f_c00301{left:338.400000px;}
.x2b_c00301{left:340.800000px;}
.x7_c00301{left:342.000000px;}
.x84_c00301{left:343.500000px;}
.x55_c00301{left:345.300000px;}
.x97_c00301{left:347.100000px;}
.x31_c00301{left:349.200000px;}
.x5e_c00301{left:350.850000px;}
.x9e_c00301{left:352.800000px;}
.x49_c00301{left:354.000000px;}
.x94_c00301{left:356.100000px;}
.x79_c00301{left:357.600000px;}
.x76_c00301{left:358.650000px;}
.x70_c00301{left:361.650000px;}
.x32_c00301{left:363.600000px;}
.x42_c00301{left:365.850000px;}
.x7a_c00301{left:366.900000px;}
.x27_c00301{left:370.050000px;}
.x5a_c00301{left:372.150000px;}
.x7c_c00301{left:374.400000px;}
.x38_c00301{left:376.650000px;}
.x96_c00301{left:377.700000px;}
.x71_c00301{left:379.350000px;}
.xa0_c00301{left:380.400000px;}
.x8_c00301{left:382.650000px;}
.x20_c00301{left:383.850000px;}
.x85_c00301{left:387.000000px;}
.x80_c00301{left:389.400000px;}
.x21_c00301{left:390.750000px;}
.x3d_c00301{left:392.250000px;}
.x5f_c00301{left:393.300000px;}
.x2c_c00301{left:397.350000px;}
.x3e_c00301{left:399.450000px;}
.x33_c00301{left:403.500000px;}
.x61_c00301{left:405.150000px;}
.x3f_c00301{left:406.950000px;}
.x51_c00301{left:411.300000px;}
.x22_c00301{left:412.650000px;}
.x2_c00301{left:415.200000px;}
.x4a_c00301{left:417.300000px;}
.x23_c00301{left:419.850000px;}
.x63_c00301{left:421.800000px;}
.x5b_c00301{left:423.600000px;}
.x72_c00301{left:425.400000px;}
.x9_c00301{left:428.700000px;}
.x52_c00301{left:431.400000px;}
.x92_c00301{left:433.200000px;}
.x43_c00301{left:436.350000px;}
.x12_c00301{left:438.300000px;}
.xf_c00301{left:440.100000px;}
.x39_c00301{left:441.450000px;}
.x56_c00301{left:442.500000px;}
.x7b_c00301{left:451.500000px;}
.x6b_c00301{left:453.300000px;}
.x4b_c00301{left:456.150000px;}
.x5c_c00301{left:457.800000px;}
.xa_c00301{left:460.050000px;}
.x1a_c00301{left:461.850000px;}
.x24_c00301{left:463.050000px;}
.x10_c00301{left:466.800000px;}
.x2d_c00301{left:469.050000px;}
.x57_c00301{left:471.000000px;}
.x7e_c00301{left:473.700000px;}
.x90_c00301{left:475.650000px;}
.x4c_c00301{left:476.700000px;}
.x7d_c00301{left:480.600000px;}
.x6c_c00301{left:483.600000px;}
.x53_c00301{left:485.100000px;}
.x44_c00301{left:486.750000px;}
.x86_c00301{left:489.600000px;}
.x8c_c00301{left:491.250000px;}
.xb_c00301{left:493.950000px;}
.x11_c00301{left:495.900000px;}
.x13_c00301{left:497.400000px;}
.x34_c00301{left:498.900000px;}
.x73_c00301{left:500.400000px;}
.x64_c00301{left:502.800000px;}
.x9c_c00301{left:505.050000px;}
.x81_c00301{left:513.900000px;}
.x9a_c00301{left:531.300000px;}
.x9b_c00301{left:540.600000px;}
.xa2_c00301{left:547.500000px;}
.xac_c00301{left:548.700000px;}
.xd2_c00301{left:549.750000px;}
.xef_c00301{left:551.100000px;}
.x100_c00301{left:552.900000px;}
.x11d_c00301{left:553.950000px;}
.x125_c00301{left:555.300000px;}
.x12b_c00301{left:556.500000px;}
.xcc_c00301{left:558.450000px;}
.xbb_c00301{left:570.600000px;}
.x121_c00301{left:572.250000px;}
.x13d_c00301{left:574.200000px;}
.xf0_c00301{left:576.000000px;}
.xaa_c00301{left:578.550000px;}
.xe0_c00301{left:580.050000px;}
.xfb_c00301{left:583.200000px;}
.x12c_c00301{left:584.550000px;}
.xe6_c00301{left:587.250000px;}
.xcd_c00301{left:588.750000px;}
.xc9_c00301{left:591.000000px;}
.x13a_c00301{left:592.350000px;}
.xf5_c00301{left:593.550000px;}
.x12f_c00301{left:595.350000px;}
.xda_c00301{left:597.000000px;}
.xa3_c00301{left:598.650000px;}
.x10b_c00301{left:601.800000px;}
.x101_c00301{left:603.000000px;}
.x11a_c00301{left:605.850000px;}
.x134_c00301{left:608.550000px;}
.x107_c00301{left:609.900000px;}
.x12d_c00301{left:611.850000px;}
.x10e_c00301{left:614.100000px;}
.xd3_c00301{left:615.300000px;}
.xe1_c00301{left:617.100000px;}
.x138_c00301{left:618.150000px;}
.x13b_c00301{left:620.550000px;}
.xb6_c00301{left:622.350000px;}
.x136_c00301{left:624.600000px;}
.x116_c00301{left:626.100000px;}
.x127_c00301{left:628.050000px;}
.xc2_c00301{left:629.550000px;}
.x108_c00301{left:631.800000px;}
.xad_c00301{left:635.850000px;}
.xca_c00301{left:638.100000px;}
.xdb_c00301{left:640.200000px;}
.xd4_c00301{left:642.300000px;}
.xf1_c00301{left:643.350000px;}
.xe2_c00301{left:645.150000px;}
.xe7_c00301{left:646.950000px;}
.xc3_c00301{left:648.600000px;}
.xbc_c00301{left:651.300000px;}
.xd5_c00301{left:654.900000px;}
.x137_c00301{left:656.250000px;}
.xdc_c00301{left:660.000000px;}
.xce_c00301{left:661.500000px;}
.xec_c00301{left:662.700000px;}
.xc4_c00301{left:664.800000px;}
.x135_c00301{left:666.150000px;}
.xae_c00301{left:669.000000px;}
.x10f_c00301{left:670.200000px;}
.x12e_c00301{left:672.000000px;}
.xa4_c00301{left:673.950000px;}
.x141_c00301{left:675.750000px;}
.xbd_c00301{left:677.550000px;}
.x102_c00301{left:678.600000px;}
.xcf_c00301{left:681.300000px;}
.xaf_c00301{left:684.900000px;}
.xe8_c00301{left:686.550000px;}
.x13e_c00301{left:687.900000px;}
.xcb_c00301{left:688.950000px;}
.xf6_c00301{left:692.850000px;}
.x110_c00301{left:693.900000px;}
.x13f_c00301{left:695.250000px;}
.x11e_c00301{left:697.650000px;}
.x109_c00301{left:698.700000px;}
.x13c_c00301{left:699.750000px;}
.x122_c00301{left:701.400000px;}
.x126_c00301{left:702.750000px;}
.xb7_c00301{left:704.850000px;}
.x10d_c00301{left:705.900000px;}
.x114_c00301{left:708.300000px;}
.xdd_c00301{left:710.700000px;}
.xa5_c00301{left:712.500000px;}
.xfc_c00301{left:713.550000px;}
.x140_c00301{left:715.050000px;}
.xb8_c00301{left:716.700000px;}
.xe9_c00301{left:717.900000px;}
.x105_c00301{left:718.950000px;}
.xf7_c00301{left:722.700000px;}
.x103_c00301{left:724.650000px;}
.x113_c00301{left:725.700000px;}
.xb0_c00301{left:727.350000px;}
.xf2_c00301{left:728.400000px;}
.x132_c00301{left:729.600000px;}
.xd0_c00301{left:730.650000px;}
.xa6_c00301{left:733.050000px;}
.xbe_c00301{left:734.850000px;}
.xab_c00301{left:736.200000px;}
.x130_c00301{left:737.850000px;}
.x123_c00301{left:739.200000px;}
.xb1_c00301{left:740.250000px;}
.x133_c00301{left:743.400000px;}
.xfd_c00301{left:747.750000px;}
.xb9_c00301{left:748.800000px;}
.xd6_c00301{left:752.550000px;}
.xc5_c00301{left:753.750000px;}
.xe3_c00301{left:755.700000px;}
.x115_c00301{left:757.200000px;}
.x111_c00301{left:758.700000px;}
.xde_c00301{left:760.350000px;}
.xf8_c00301{left:762.000000px;}
.xed_c00301{left:764.850000px;}
.x11b_c00301{left:767.550000px;}
.xfe_c00301{left:770.400000px;}
.xf3_c00301{left:771.900000px;}
.xc6_c00301{left:775.050000px;}
.x139_c00301{left:777.000000px;}
.x117_c00301{left:778.200000px;}
.x10a_c00301{left:779.400000px;}
.xbf_c00301{left:781.350000px;}
.xa7_c00301{left:782.700000px;}
.x112_c00301{left:783.900000px;}
.xd7_c00301{left:787.050000px;}
.x11f_c00301{left:789.000000px;}
.xb2_c00301{left:791.700000px;}
.xe4_c00301{left:793.200000px;}
.xea_c00301{left:794.850000px;}
.xff_c00301{left:795.900000px;}
.x128_c00301{left:797.250000px;}
.x12a_c00301{left:798.750000px;}
.xb3_c00301{left:800.400000px;}
.xc0_c00301{left:801.450000px;}
.x120_c00301{left:802.950000px;}
.xdf_c00301{left:804.600000px;}
.x106_c00301{left:806.400000px;}
.xa8_c00301{left:807.900000px;}
.xe5_c00301{left:809.700000px;}
.xc7_c00301{left:811.800000px;}
.xf9_c00301{left:813.150000px;}
.xd8_c00301{left:815.100000px;}
.xb4_c00301{left:816.600000px;}
.xf4_c00301{left:820.800000px;}
.x118_c00301{left:825.300000px;}
.xba_c00301{left:828.750000px;}
.x11c_c00301{left:829.800000px;}
.x10c_c00301{left:831.150000px;}
.xd1_c00301{left:832.800000px;}
.xfa_c00301{left:835.500000px;}
.x104_c00301{left:837.600000px;}
.xc1_c00301{left:839.250000px;}
.xa9_c00301{left:841.350000px;}
.xee_c00301{left:843.750000px;}
.xc8_c00301{left:847.800000px;}
.xb5_c00301{left:850.050000px;}
.x131_c00301{left:851.700000px;}
.x129_c00301{left:854.250000px;}
.x119_c00301{left:856.650000px;}
.x3_c00301{left:858.300000px;}
.x124_c00301{left:860.550000px;}
.xeb_c00301{left:863.250000px;}
.xd9_c00301{left:865.200000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.wsb_c00301{word-spacing:-11.662467pt;}
.ws8_c00301{word-spacing:-9.135802pt;}
.ws3_c00301{word-spacing:-9.037037pt;}
.ws7_c00301{word-spacing:-8.644521pt;}
.ws9_c00301{word-spacing:-3.950334pt;}
.ws4_c00301{word-spacing:-2.962963pt;}
.ws5_c00301{word-spacing:-1.489971pt;}
.wsc_c00301{word-spacing:0.000000pt;}
.ws6_c00301{word-spacing:4.692737pt;}
.wsa_c00301{word-spacing:7.581699pt;}
.ws1_c00301{word-spacing:13.333333pt;}
.ws2_c00301{word-spacing:22.857143pt;}
.ws0_c00301{word-spacing:53.333333pt;}
._0_c00301{width:42.777778pt;}
._1_c00301{width:52.698413pt;}
.fs6_c00301{font-size:16.000000pt;}
.fs5_c00301{font-size:26.666667pt;}
.fs2_c00301{font-size:48.000000pt;}
.fs1_c00301{font-size:53.333333pt;}
.fs3_c00301{font-size:58.666667pt;}
.fs4_c00301{font-size:64.000000pt;}
.fs0_c00301{font-size:74.666667pt;}
.y0_c00301{bottom:0.000000pt;}
.y6f_c00301{bottom:168.000000pt;}
.y39_c00301{bottom:169.200000pt;}
.y6e_c00301{bottom:184.266667pt;}
.y38_c00301{bottom:185.200000pt;}
.y37_c00301{bottom:200.933333pt;}
.y6d_c00301{bottom:203.866667pt;}
.y36_c00301{bottom:216.933333pt;}
.y6c_c00301{bottom:219.866667pt;}
.y6b_c00301{bottom:231.066667pt;}
.y35_c00301{bottom:232.266667pt;}
.y6a_c00301{bottom:235.866667pt;}
.y34_c00301{bottom:248.266667pt;}
.y69_c00301{bottom:251.866667pt;}
.y33_c00301{bottom:263.066667pt;}
.y68_c00301{bottom:267.466667pt;}
.y32_c00301{bottom:267.733333pt;}
.y31_c00301{bottom:283.466667pt;}
.y67_c00301{bottom:287.600000pt;}
.y30_c00301{bottom:303.333333pt;}
.y66_c00301{bottom:303.600000pt;}
.y65_c00301{bottom:319.600000pt;}
.y2f_c00301{bottom:320.000000pt;}
.y64_c00301{bottom:335.333333pt;}
.y2e_c00301{bottom:338.800000pt;}
.y63_c00301{bottom:351.600000pt;}
.y2d_c00301{bottom:355.466667pt;}
.y62_c00301{bottom:367.333333pt;}
.y2c_c00301{bottom:373.733333pt;}
.y61_c00301{bottom:387.200000pt;}
.y2b_c00301{bottom:391.066667pt;}
.y60_c00301{bottom:403.200000pt;}
.y2a_c00301{bottom:410.533333pt;}
.y5f_c00301{bottom:419.200000pt;}
.y29_c00301{bottom:426.933333pt;}
.y5e_c00301{bottom:434.933333pt;}
.y28_c00301{bottom:442.266667pt;}
.y5d_c00301{bottom:450.933333pt;}
.y27_c00301{bottom:462.000000pt;}
.y5c_c00301{bottom:465.866667pt;}
.y26_c00301{bottom:478.666667pt;}
.y5b_c00301{bottom:481.866667pt;}
.y25_c00301{bottom:494.266667pt;}
.y5a_c00301{bottom:497.600000pt;}
.y24_c00301{bottom:510.266667pt;}
.y59_c00301{bottom:513.600000pt;}
.y23_c00301{bottom:526.266667pt;}
.y58_c00301{bottom:529.600000pt;}
.y22_c00301{bottom:542.266667pt;}
.y57_c00301{bottom:545.333333pt;}
.y21_c00301{bottom:558.000000pt;}
.y56_c00301{bottom:561.333333pt;}
.y20_c00301{bottom:574.266667pt;}
.y55_c00301{bottom:577.333333pt;}
.y1f_c00301{bottom:589.600000pt;}
.y54_c00301{bottom:593.333333pt;}
.y1e_c00301{bottom:605.600000pt;}
.y53_c00301{bottom:609.066667pt;}
.y1d_c00301{bottom:621.600000pt;}
.y52_c00301{bottom:625.066667pt;}
.y1c_c00301{bottom:637.600000pt;}
.y51_c00301{bottom:640.800000pt;}
.y1b_c00301{bottom:653.333333pt;}
.y50_c00301{bottom:657.066667pt;}
.y1a_c00301{bottom:669.333333pt;}
.y4f_c00301{bottom:672.800000pt;}
.y19_c00301{bottom:685.066667pt;}
.y4e_c00301{bottom:688.533333pt;}
.y18_c00301{bottom:701.066667pt;}
.y4d_c00301{bottom:704.800000pt;}
.y17_c00301{bottom:717.066667pt;}
.y4c_c00301{bottom:720.533333pt;}
.y16_c00301{bottom:733.066667pt;}
.y4b_c00301{bottom:736.266667pt;}
.y15_c00301{bottom:748.800000pt;}
.y4a_c00301{bottom:752.533333pt;}
.y14_c00301{bottom:764.800000pt;}
.y49_c00301{bottom:768.266667pt;}
.y48_c00301{bottom:784.266667pt;}
.y13_c00301{bottom:785.866667pt;}
.y12_c00301{bottom:799.333333pt;}
.y47_c00301{bottom:800.266667pt;}
.y46_c00301{bottom:816.266667pt;}
.y11_c00301{bottom:816.933333pt;}
.y10_c00301{bottom:829.733333pt;}
.y45_c00301{bottom:832.000000pt;}
.yf_c00301{bottom:841.333333pt;}
.y44_c00301{bottom:848.000000pt;}
.ye_c00301{bottom:855.066667pt;}
.y43_c00301{bottom:864.000000pt;}
.yd_c00301{bottom:866.933333pt;}
.y42_c00301{bottom:880.000000pt;}
.yc_c00301{bottom:880.533333pt;}
.yb_c00301{bottom:892.400000pt;}
.y41_c00301{bottom:896.000000pt;}
.ya_c00301{bottom:906.533333pt;}
.y40_c00301{bottom:914.533333pt;}
.y9_c00301{bottom:917.733333pt;}
.y8_c00301{bottom:931.200000pt;}
.y7_c00301{bottom:944.266667pt;}
.y3f_c00301{bottom:946.933333pt;}
.y6_c00301{bottom:957.066667pt;}
.y3e_c00301{bottom:962.933333pt;}
.y5_c00301{bottom:969.600000pt;}
.y3d_c00301{bottom:978.933333pt;}
.y4_c00301{bottom:983.066667pt;}
.y3c_c00301{bottom:985.200000pt;}
.y3b_c00301{bottom:986.800000pt;}
.y3a_c00301{bottom:994.533333pt;}
.y3_c00301{bottom:996.533333pt;}
.y1_c00301{bottom:1015.333333pt;}
.y2_c00301{bottom:1017.600000pt;}
.h8_c00301{height:16.000000pt;}
.h7_c00301{height:26.666667pt;}
.h4_c00301{height:48.000000pt;}
.h3_c00301{height:53.333333pt;}
.h5_c00301{height:58.666667pt;}
.h6_c00301{height:64.000000pt;}
.h2_c00301{height:74.666667pt;}
.h1_c00301{height:1121.333333pt;}
.h0_c00301{height:1121.600016pt;}
.w1_c00301{width:854.666667pt;}
.w0_c00301{width:854.720052pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:154.933333pt;}
.x46_c00301{left:156.800000pt;}
.xc_c00301{left:167.333333pt;}
.x28_c00301{left:168.266667pt;}
.x98_c00301{left:170.266667pt;}
.x4d_c00301{left:173.066667pt;}
.x62_c00301{left:174.266667pt;}
.x6d_c00301{left:175.200000pt;}
.x77_c00301{left:176.666667pt;}
.x87_c00301{left:177.866667pt;}
.x91_c00301{left:178.933333pt;}
.x4_c00301{left:180.533333pt;}
.x1b_c00301{left:181.466667pt;}
.x2e_c00301{left:182.400000pt;}
.x4e_c00301{left:188.133333pt;}
.x60_c00301{left:192.800000pt;}
.x89_c00301{left:195.466667pt;}
.x95_c00301{left:196.533333pt;}
.x9d_c00301{left:199.333333pt;}
.x7f_c00301{left:200.266667pt;}
.x35_c00301{left:201.600000pt;}
.x65_c00301{left:206.000000pt;}
.x29_c00301{left:207.866667pt;}
.x58_c00301{left:208.800000pt;}
.xd_c00301{left:209.866667pt;}
.xa1_c00301{left:211.466667pt;}
.x54_c00301{left:213.600000pt;}
.x40_c00301{left:215.866667pt;}
.x2f_c00301{left:217.600000pt;}
.x36_c00301{left:218.933333pt;}
.x6e_c00301{left:221.333333pt;}
.x3a_c00301{left:222.533333pt;}
.x8b_c00301{left:223.600000pt;}
.x9f_c00301{left:225.733333pt;}
.x82_c00301{left:226.666667pt;}
.x74_c00301{left:227.600000pt;}
.x16_c00301{left:228.533333pt;}
.x1c_c00301{left:230.133333pt;}
.x8d_c00301{left:231.066667pt;}
.xe_c00301{left:232.533333pt;}
.x47_c00301{left:234.933333pt;}
.x5_c00301{left:235.866667pt;}
.x25_c00301{left:237.466667pt;}
.x68_c00301{left:239.200000pt;}
.x2a_c00301{left:240.800000pt;}
.x59_c00301{left:243.066667pt;}
.x17_c00301{left:244.800000pt;}
.x75_c00301{left:246.133333pt;}
.x1d_c00301{left:247.466667pt;}
.x3b_c00301{left:248.800000pt;}
.x8a_c00301{left:250.266667pt;}
.x14_c00301{left:252.000000pt;}
.x8e_c00301{left:254.133333pt;}
.x93_c00301{left:255.733333pt;}
.x26_c00301{left:256.666667pt;}
.x66_c00301{left:258.133333pt;}
.x4f_c00301{left:261.200000pt;}
.x6_c00301{left:262.400000pt;}
.x30_c00301{left:264.000000pt;}
.x15_c00301{left:265.066667pt;}
.x45_c00301{left:266.266667pt;}
.x5d_c00301{left:268.666667pt;}
.x41_c00301{left:270.533333pt;}
.x18_c00301{left:272.266667pt;}
.x69_c00301{left:273.733333pt;}
.x1e_c00301{left:276.000000pt;}
.x67_c00301{left:280.533333pt;}
.x83_c00301{left:282.266667pt;}
.x99_c00301{left:283.200000pt;}
.x48_c00301{left:285.200000pt;}
.x3c_c00301{left:286.266667pt;}
.x19_c00301{left:288.000000pt;}
.x37_c00301{left:290.266667pt;}
.x50_c00301{left:291.600000pt;}
.x1f_c00301{left:292.933333pt;}
.x78_c00301{left:294.133333pt;}
.x6a_c00301{left:295.466667pt;}
.x6f_c00301{left:297.200000pt;}
.x88_c00301{left:299.733333pt;}
.x8f_c00301{left:300.800000pt;}
.x2b_c00301{left:302.933333pt;}
.x7_c00301{left:304.000000pt;}
.x84_c00301{left:305.333333pt;}
.x55_c00301{left:306.933333pt;}
.x97_c00301{left:308.533333pt;}
.x31_c00301{left:310.400000pt;}
.x5e_c00301{left:311.866667pt;}
.x9e_c00301{left:313.600000pt;}
.x49_c00301{left:314.666667pt;}
.x94_c00301{left:316.533333pt;}
.x79_c00301{left:317.866667pt;}
.x76_c00301{left:318.800000pt;}
.x70_c00301{left:321.466667pt;}
.x32_c00301{left:323.200000pt;}
.x42_c00301{left:325.200000pt;}
.x7a_c00301{left:326.133333pt;}
.x27_c00301{left:328.933333pt;}
.x5a_c00301{left:330.800000pt;}
.x7c_c00301{left:332.800000pt;}
.x38_c00301{left:334.800000pt;}
.x96_c00301{left:335.733333pt;}
.x71_c00301{left:337.200000pt;}
.xa0_c00301{left:338.133333pt;}
.x8_c00301{left:340.133333pt;}
.x20_c00301{left:341.200000pt;}
.x85_c00301{left:344.000000pt;}
.x80_c00301{left:346.133333pt;}
.x21_c00301{left:347.333333pt;}
.x3d_c00301{left:348.666667pt;}
.x5f_c00301{left:349.600000pt;}
.x2c_c00301{left:353.200000pt;}
.x3e_c00301{left:355.066667pt;}
.x33_c00301{left:358.666667pt;}
.x61_c00301{left:360.133333pt;}
.x3f_c00301{left:361.733333pt;}
.x51_c00301{left:365.600000pt;}
.x22_c00301{left:366.800000pt;}
.x2_c00301{left:369.066667pt;}
.x4a_c00301{left:370.933333pt;}
.x23_c00301{left:373.200000pt;}
.x63_c00301{left:374.933333pt;}
.x5b_c00301{left:376.533333pt;}
.x72_c00301{left:378.133333pt;}
.x9_c00301{left:381.066667pt;}
.x52_c00301{left:383.466667pt;}
.x92_c00301{left:385.066667pt;}
.x43_c00301{left:387.866667pt;}
.x12_c00301{left:389.600000pt;}
.xf_c00301{left:391.200000pt;}
.x39_c00301{left:392.400000pt;}
.x56_c00301{left:393.333333pt;}
.x7b_c00301{left:401.333333pt;}
.x6b_c00301{left:402.933333pt;}
.x4b_c00301{left:405.466667pt;}
.x5c_c00301{left:406.933333pt;}
.xa_c00301{left:408.933333pt;}
.x1a_c00301{left:410.533333pt;}
.x24_c00301{left:411.600000pt;}
.x10_c00301{left:414.933333pt;}
.x2d_c00301{left:416.933333pt;}
.x57_c00301{left:418.666667pt;}
.x7e_c00301{left:421.066667pt;}
.x90_c00301{left:422.800000pt;}
.x4c_c00301{left:423.733333pt;}
.x7d_c00301{left:427.200000pt;}
.x6c_c00301{left:429.866667pt;}
.x53_c00301{left:431.200000pt;}
.x44_c00301{left:432.666667pt;}
.x86_c00301{left:435.200000pt;}
.x8c_c00301{left:436.666667pt;}
.xb_c00301{left:439.066667pt;}
.x11_c00301{left:440.800000pt;}
.x13_c00301{left:442.133333pt;}
.x34_c00301{left:443.466667pt;}
.x73_c00301{left:444.800000pt;}
.x64_c00301{left:446.933333pt;}
.x9c_c00301{left:448.933333pt;}
.x81_c00301{left:456.800000pt;}
.x9a_c00301{left:472.266667pt;}
.x9b_c00301{left:480.533333pt;}
.xa2_c00301{left:486.666667pt;}
.xac_c00301{left:487.733333pt;}
.xd2_c00301{left:488.666667pt;}
.xef_c00301{left:489.866667pt;}
.x100_c00301{left:491.466667pt;}
.x11d_c00301{left:492.400000pt;}
.x125_c00301{left:493.600000pt;}
.x12b_c00301{left:494.666667pt;}
.xcc_c00301{left:496.400000pt;}
.xbb_c00301{left:507.200000pt;}
.x121_c00301{left:508.666667pt;}
.x13d_c00301{left:510.400000pt;}
.xf0_c00301{left:512.000000pt;}
.xaa_c00301{left:514.266667pt;}
.xe0_c00301{left:515.600000pt;}
.xfb_c00301{left:518.400000pt;}
.x12c_c00301{left:519.600000pt;}
.xe6_c00301{left:522.000000pt;}
.xcd_c00301{left:523.333333pt;}
.xc9_c00301{left:525.333333pt;}
.x13a_c00301{left:526.533333pt;}
.xf5_c00301{left:527.600000pt;}
.x12f_c00301{left:529.200000pt;}
.xda_c00301{left:530.666667pt;}
.xa3_c00301{left:532.133333pt;}
.x10b_c00301{left:534.933333pt;}
.x101_c00301{left:536.000000pt;}
.x11a_c00301{left:538.533333pt;}
.x134_c00301{left:540.933333pt;}
.x107_c00301{left:542.133333pt;}
.x12d_c00301{left:543.866667pt;}
.x10e_c00301{left:545.866667pt;}
.xd3_c00301{left:546.933333pt;}
.xe1_c00301{left:548.533333pt;}
.x138_c00301{left:549.466667pt;}
.x13b_c00301{left:551.600000pt;}
.xb6_c00301{left:553.200000pt;}
.x136_c00301{left:555.200000pt;}
.x116_c00301{left:556.533333pt;}
.x127_c00301{left:558.266667pt;}
.xc2_c00301{left:559.600000pt;}
.x108_c00301{left:561.600000pt;}
.xad_c00301{left:565.200000pt;}
.xca_c00301{left:567.200000pt;}
.xdb_c00301{left:569.066667pt;}
.xd4_c00301{left:570.933333pt;}
.xf1_c00301{left:571.866667pt;}
.xe2_c00301{left:573.466667pt;}
.xe7_c00301{left:575.066667pt;}
.xc3_c00301{left:576.533333pt;}
.xbc_c00301{left:578.933333pt;}
.xd5_c00301{left:582.133333pt;}
.x137_c00301{left:583.333333pt;}
.xdc_c00301{left:586.666667pt;}
.xce_c00301{left:588.000000pt;}
.xec_c00301{left:589.066667pt;}
.xc4_c00301{left:590.933333pt;}
.x135_c00301{left:592.133333pt;}
.xae_c00301{left:594.666667pt;}
.x10f_c00301{left:595.733333pt;}
.x12e_c00301{left:597.333333pt;}
.xa4_c00301{left:599.066667pt;}
.x141_c00301{left:600.666667pt;}
.xbd_c00301{left:602.266667pt;}
.x102_c00301{left:603.200000pt;}
.xcf_c00301{left:605.600000pt;}
.xaf_c00301{left:608.800000pt;}
.xe8_c00301{left:610.266667pt;}
.x13e_c00301{left:611.466667pt;}
.xcb_c00301{left:612.400000pt;}
.xf6_c00301{left:615.866667pt;}
.x110_c00301{left:616.800000pt;}
.x13f_c00301{left:618.000000pt;}
.x11e_c00301{left:620.133333pt;}
.x109_c00301{left:621.066667pt;}
.x13c_c00301{left:622.000000pt;}
.x122_c00301{left:623.466667pt;}
.x126_c00301{left:624.666667pt;}
.xb7_c00301{left:626.533333pt;}
.x10d_c00301{left:627.466667pt;}
.x114_c00301{left:629.600000pt;}
.xdd_c00301{left:631.733333pt;}
.xa5_c00301{left:633.333333pt;}
.xfc_c00301{left:634.266667pt;}
.x140_c00301{left:635.600000pt;}
.xb8_c00301{left:637.066667pt;}
.xe9_c00301{left:638.133333pt;}
.x105_c00301{left:639.066667pt;}
.xf7_c00301{left:642.400000pt;}
.x103_c00301{left:644.133333pt;}
.x113_c00301{left:645.066667pt;}
.xb0_c00301{left:646.533333pt;}
.xf2_c00301{left:647.466667pt;}
.x132_c00301{left:648.533333pt;}
.xd0_c00301{left:649.466667pt;}
.xa6_c00301{left:651.600000pt;}
.xbe_c00301{left:653.200000pt;}
.xab_c00301{left:654.400000pt;}
.x130_c00301{left:655.866667pt;}
.x123_c00301{left:657.066667pt;}
.xb1_c00301{left:658.000000pt;}
.x133_c00301{left:660.800000pt;}
.xfd_c00301{left:664.666667pt;}
.xb9_c00301{left:665.600000pt;}
.xd6_c00301{left:668.933333pt;}
.xc5_c00301{left:670.000000pt;}
.xe3_c00301{left:671.733333pt;}
.x115_c00301{left:673.066667pt;}
.x111_c00301{left:674.400000pt;}
.xde_c00301{left:675.866667pt;}
.xf8_c00301{left:677.333333pt;}
.xed_c00301{left:679.866667pt;}
.x11b_c00301{left:682.266667pt;}
.xfe_c00301{left:684.800000pt;}
.xf3_c00301{left:686.133333pt;}
.xc6_c00301{left:688.933333pt;}
.x139_c00301{left:690.666667pt;}
.x117_c00301{left:691.733333pt;}
.x10a_c00301{left:692.800000pt;}
.xbf_c00301{left:694.533333pt;}
.xa7_c00301{left:695.733333pt;}
.x112_c00301{left:696.800000pt;}
.xd7_c00301{left:699.600000pt;}
.x11f_c00301{left:701.333333pt;}
.xb2_c00301{left:703.733333pt;}
.xe4_c00301{left:705.066667pt;}
.xea_c00301{left:706.533333pt;}
.xff_c00301{left:707.466667pt;}
.x128_c00301{left:708.666667pt;}
.x12a_c00301{left:710.000000pt;}
.xb3_c00301{left:711.466667pt;}
.xc0_c00301{left:712.400000pt;}
.x120_c00301{left:713.733333pt;}
.xdf_c00301{left:715.200000pt;}
.x106_c00301{left:716.800000pt;}
.xa8_c00301{left:718.133333pt;}
.xe5_c00301{left:719.733333pt;}
.xc7_c00301{left:721.600000pt;}
.xf9_c00301{left:722.800000pt;}
.xd8_c00301{left:724.533333pt;}
.xb4_c00301{left:725.866667pt;}
.xf4_c00301{left:729.600000pt;}
.x118_c00301{left:733.600000pt;}
.xba_c00301{left:736.666667pt;}
.x11c_c00301{left:737.600000pt;}
.x10c_c00301{left:738.800000pt;}
.xd1_c00301{left:740.266667pt;}
.xfa_c00301{left:742.666667pt;}
.x104_c00301{left:744.533333pt;}
.xc1_c00301{left:746.000000pt;}
.xa9_c00301{left:747.866667pt;}
.xee_c00301{left:750.000000pt;}
.xc8_c00301{left:753.600000pt;}
.xb5_c00301{left:755.600000pt;}
.x131_c00301{left:757.066667pt;}
.x129_c00301{left:759.333333pt;}
.x119_c00301{left:761.466667pt;}
.x3_c00301{left:762.933333pt;}
.x124_c00301{left:764.933333pt;}
.xeb_c00301{left:767.333333pt;}
.xd9_c00301{left:769.066667pt;}
}





/* 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_c00302 {
    display:none;
  }
  .loading-indicator_c00302.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00302 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_c00302 { 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_c00302" -> "#page-container .classname_c00302")
 */
.pf_c00302 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00302 { /* 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_c00302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00302 { /* 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_c00302 { /* 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_c00302 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00302 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00302 {overflow:visible;}
  }
}
.c_c00302 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00302 { /* 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_c00302:after { /* webkit #35443 */
  content: '';
}
.t_c00302:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00302 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 */
}
.__c00302 { /* 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_c00302 { /* info for Javascript */
  display:none;
}
.l_c00302 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00302 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00302 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00302: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_c00302 {
    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_c00302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00302.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_c00302 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00302;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.000000;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;}
.md7_c00302{transform:matrix(0.008000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008000,0.000000,0.000000,0.250000,0,0);}
.m10_c00302{transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00302{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m25_c00302{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.maa_c00302{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m104_c00302{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00302{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.md6_c00302{transform:matrix(0.032000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032000,0.000000,0.000000,0.250000,0,0);}
.mee_c00302{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00302{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mda_c00302{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m54_c00302{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m116_c00302{transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);}
.m102_c00302{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m108_c00302{transform:matrix(0.058500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058500,0.000000,0.000000,0.250000,0,0);}
.m100_c00302{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00302{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.md8_c00302{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md9_c00302{transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);}
.md0_c00302{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00302{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m113_c00302{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00302{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m121_c00302{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00302{transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);}
.m135_c00302{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m115_c00302{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m130_c00302{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00302{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m128_c00302{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00302{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00302{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m134_c00302{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m114_c00302{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m95_c00302{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m149_c00302{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.meb_c00302{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.med_c00302{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m117_c00302{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m91_c00302{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00302{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.me4_c00302{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m129_c00302{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m105_c00302{transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);}
.mec_c00302{transform:matrix(0.129750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129750,0.000000,0.000000,0.250000,0,0);}
.md1_c00302{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m55_c00302{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m122_c00302{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00302{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00302{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00302{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00302{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00302{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00302{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m77_c00302{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m60_c00302{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00302{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mea_c00302{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.m76_c00302{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m20_c00302{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m14c_c00302{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.ma_c00302{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m83_c00302{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00302{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00302{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00302{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00302{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00302{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m107_c00302{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.md_c00302{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00302{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m124_c00302{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00302{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00302{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00302{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00302{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m22_c00302{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00302{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m147_c00302{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00302{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m14b_c00302{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m24_c00302{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00302{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00302{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00302{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m74_c00302{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m92_c00302{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m8_c00302{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00302{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m14_c00302{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00302{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00302{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m136_c00302{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m30_c00302{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me_c00302{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m9_c00302{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md3_c00302{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00302{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m28_c00302{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m145_c00302{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00302{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.me7_c00302{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m63_c00302{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00302{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m75_c00302{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m14d_c00302{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m103_c00302{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00302{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00302{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00302{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m53_c00302{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m90_c00302{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m15_c00302{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m37_c00302{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m112_c00302{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m142_c00302{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m40_c00302{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me5_c00302{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00302{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00302{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m44_c00302{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00302{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m89_c00302{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m32_c00302{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m146_c00302{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00302{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m35_c00302{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mf_c00302{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m80_c00302{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00302{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00302{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m36_c00302{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00302{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mff_c00302{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m96_c00302{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m140_c00302{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m68_c00302{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m39_c00302{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m125_c00302{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m18_c00302{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00302{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m81_c00302{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m31_c00302{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mae_c00302{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.me8_c00302{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00302{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me2_c00302{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00302{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m61_c00302{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m126_c00302{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m118_c00302{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00302{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m56_c00302{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.me0_c00302{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m45_c00302{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00302{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00302{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mad_c00302{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m73_c00302{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m14a_c00302{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m111_c00302{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m71_c00302{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m131_c00302{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00302{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m38_c00302{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00302{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m70_c00302{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m57_c00302{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m41_c00302{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00302{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m50_c00302{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m11_c00302{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m93_c00302{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m33_c00302{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00302{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00302{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00302{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00302{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m29_c00302{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mca_c00302{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m144_c00302{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m137_c00302{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m84_c00302{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00302{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m16_c00302{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00302{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00302{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00302{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00302{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m7_c00302{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00302{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m17_c00302{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m46_c00302{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00302{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00302{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00302{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00302{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00302{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m86_c00302{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00302{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00302{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m127_c00302{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m62_c00302{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me6_c00302{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00302{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00302{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m58_c00302{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m79_c00302{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00302{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m64_c00302{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m148_c00302{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m13_c00302{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m14e_c00302{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00302{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00302{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m47_c00302{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m141_c00302{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m43_c00302{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00302{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m26_c00302{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m52_c00302{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00302{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00302{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00302{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6_c00302{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00302{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m51_c00302{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00302{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m85_c00302{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00302{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m97_c00302{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5_c00302{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00302{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00302{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00302{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00302{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m94_c00302{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00302{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m34_c00302{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00302{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mc_c00302{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m42_c00302{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mde_c00302{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m19_c00302{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me3_c00302{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00302{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m101_c00302{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md2_c00302{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m48_c00302{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00302{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00302{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00302{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m13d_c00302{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00302{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mab_c00302{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m143_c00302{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m59_c00302{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00302{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m13b_c00302{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00302{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00302{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m13f_c00302{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m139_c00302{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00302{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m110_c00302{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m133_c00302{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00302{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m88_c00302{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00302{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m138_c00302{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00302{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00302{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m21_c00302{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m49_c00302{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me9_c00302{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);}
.m8b_c00302{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m66_c00302{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00302{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m98_c00302{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00302{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00302{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00302{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md5_c00302{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.maf_c00302{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m87_c00302{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m132_c00302{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m69_c00302{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.me1_c00302{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00302{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m23_c00302{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m99_c00302{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00302{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m82_c00302{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00302{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mef_c00302{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md4_c00302{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m109_c00302{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m72_c00302{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m106_c00302{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mce_c00302{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00302{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00302{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00302{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m78_c00302{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00302{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00302{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00302{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m119_c00302{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00302{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00302{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m120_c00302{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00302{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00302{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m65_c00302{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m27_c00302{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00302{transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00302{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00302{transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);}
.m67_c00302{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00302{transform:matrix(0.373000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373000,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00302{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m0_c00302{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00302{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m123_c00302{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00302{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00302{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00302{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.mba_c00302{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.mac_c00302{transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls0_c00302{letter-spacing:0.000000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{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__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00302{word-spacing:-14.166667px;}
.ws0_c00302{word-spacing:-13.860335px;}
.ws12_c00302{word-spacing:-10.500000px;}
.ws7_c00302{word-spacing:-9.000000px;}
.ws1_c00302{word-spacing:-5.441176px;}
.wsa_c00302{word-spacing:-4.861111px;}
.ws16_c00302{word-spacing:0.000000px;}
.ws14_c00302{word-spacing:3.029740px;}
.ws3_c00302{word-spacing:7.255730px;}
.ws15_c00302{word-spacing:10.010782px;}
.wse_c00302{word-spacing:11.875000px;}
.ws13_c00302{word-spacing:12.467532px;}
.ws8_c00302{word-spacing:16.785714px;}
.wsb_c00302{word-spacing:17.714286px;}
.wsf_c00302{word-spacing:18.125000px;}
.wsc_c00302{word-spacing:18.250000px;}
.ws11_c00302{word-spacing:19.994638px;}
.wsd_c00302{word-spacing:22.142857px;}
.ws10_c00302{word-spacing:25.714286px;}
.ws9_c00302{word-spacing:69.605263px;}
.ws4_c00302{word-spacing:228.857143px;}
.ws2_c00302{word-spacing:396.068966px;}
.ws5_c00302{word-spacing:1003.750000px;}
._2_c00302{width:47.428571px;}
._0_c00302{width:55.714286px;}
._1_c00302{width:59.285714px;}
._3_c00302{width:63.928571px;}
.fc0_c00302{color:transparent;}
.fs5_c00302{font-size:30.000000px;}
.fs9_c00302{font-size:36.000000px;}
.fs8_c00302{font-size:42.000000px;}
.fs7_c00302{font-size:48.000000px;}
.fsb_c00302{font-size:54.000000px;}
.fs4_c00302{font-size:60.000000px;}
.fs3_c00302{font-size:66.000000px;}
.fs2_c00302{font-size:72.000000px;}
.fs1_c00302{font-size:78.000000px;}
.fs0_c00302{font-size:84.000000px;}
.fs6_c00302{font-size:90.000000px;}
.fsa_c00302{font-size:108.000000px;}
.y0_c00302{bottom:0.000000px;}
.y6b_c00302{bottom:168.150000px;}
.y6a_c00302{bottom:186.150000px;}
.y36_c00302{bottom:188.250000px;}
.y69_c00302{bottom:204.450000px;}
.y35_c00302{bottom:210.600000px;}
.y68_c00302{bottom:222.450000px;}
.y34_c00302{bottom:228.600000px;}
.y67_c00302{bottom:240.450000px;}
.y33_c00302{bottom:246.600000px;}
.y66_c00302{bottom:258.450000px;}
.y2f_c00302{bottom:268.200000px;}
.y65_c00302{bottom:276.450000px;}
.y2e_c00302{bottom:286.200000px;}
.y64_c00302{bottom:294.300000px;}
.y2d_c00302{bottom:304.200000px;}
.y63_c00302{bottom:312.000000px;}
.y62_c00302{bottom:330.000000px;}
.y2c_c00302{bottom:332.250000px;}
.y2b_c00302{bottom:332.550000px;}
.y2a_c00302{bottom:343.050000px;}
.y61_c00302{bottom:347.700000px;}
.y32_c00302{bottom:351.000000px;}
.y31_c00302{bottom:355.200000px;}
.y29_c00302{bottom:362.550000px;}
.y60_c00302{bottom:365.400000px;}
.y30_c00302{bottom:367.500000px;}
.y5f_c00302{bottom:383.100000px;}
.y28_c00302{bottom:388.800000px;}
.y5e_c00302{bottom:400.350000px;}
.y27_c00302{bottom:411.150000px;}
.y5d_c00302{bottom:418.350000px;}
.y26_c00302{bottom:433.200000px;}
.y5c_c00302{bottom:436.350000px;}
.y25_c00302{bottom:455.100000px;}
.y5b_c00302{bottom:456.900000px;}
.y5a_c00302{bottom:472.650000px;}
.y59_c00302{bottom:485.700000px;}
.y24_c00302{bottom:489.900000px;}
.y58_c00302{bottom:500.100000px;}
.y57_c00302{bottom:516.300000px;}
.y23_c00302{bottom:525.600000px;}
.y56_c00302{bottom:528.900000px;}
.y55_c00302{bottom:543.300000px;}
.y22_c00302{bottom:543.900000px;}
.y54_c00302{bottom:557.700000px;}
.y21_c00302{bottom:561.600000px;}
.y53_c00302{bottom:572.100000px;}
.y20_c00302{bottom:579.300000px;}
.y52_c00302{bottom:586.800000px;}
.y1e_c00302{bottom:597.300000px;}
.y51_c00302{bottom:600.750000px;}
.y1d_c00302{bottom:614.550000px;}
.y1f_c00302{bottom:615.300000px;}
.y50_c00302{bottom:617.700000px;}
.y4f_c00302{bottom:630.000000px;}
.y1c_c00302{bottom:632.850000px;}
.y4e_c00302{bottom:646.500000px;}
.y1b_c00302{bottom:650.850000px;}
.y4d_c00302{bottom:658.050000px;}
.y1a_c00302{bottom:668.550000px;}
.y4c_c00302{bottom:673.200000px;}
.y19_c00302{bottom:686.550000px;}
.y4b_c00302{bottom:699.450000px;}
.y4a_c00302{bottom:707.400000px;}
.y18_c00302{bottom:708.150000px;}
.y49_c00302{bottom:725.100000px;}
.y17_c00302{bottom:726.450000px;}
.y16_c00302{bottom:743.700000px;}
.y48_c00302{bottom:747.000000px;}
.y47_c00302{bottom:765.000000px;}
.y15_c00302{bottom:769.650000px;}
.y14_c00302{bottom:778.650000px;}
.y46_c00302{bottom:783.000000px;}
.y45_c00302{bottom:800.700000px;}
.y44_c00302{bottom:818.700000px;}
.y13_c00302{bottom:823.350000px;}
.y12_c00302{bottom:835.950000px;}
.y43_c00302{bottom:860.400000px;}
.y10_c00302{bottom:871.500000px;}
.y42_c00302{bottom:875.850000px;}
.yf_c00302{bottom:889.650000px;}
.y41_c00302{bottom:903.900000px;}
.y40_c00302{bottom:907.200000px;}
.ye_c00302{bottom:907.950000px;}
.y3f_c00302{bottom:924.600000px;}
.yd_c00302{bottom:925.200000px;}
.yc_c00302{bottom:942.450000px;}
.y3e_c00302{bottom:942.900000px;}
.y3d_c00302{bottom:960.900000px;}
.yb_c00302{bottom:964.800000px;}
.y3c_c00302{bottom:979.950000px;}
.ya_c00302{bottom:983.100000px;}
.y3b_c00302{bottom:999.600000px;}
.y9_c00302{bottom:1000.350000px;}
.y8_c00302{bottom:1018.050000px;}
.y3a_c00302{bottom:1018.350000px;}
.y39_c00302{bottom:1036.050000px;}
.y11_c00302{bottom:1041.900000px;}
.y7_c00302{bottom:1044.750000px;}
.y6_c00302{bottom:1058.250000px;}
.y38_c00302{bottom:1059.900000px;}
.y5_c00302{bottom:1075.950000px;}
.y4_c00302{bottom:1093.650000px;}
.y37_c00302{bottom:1111.350000px;}
.y3_c00302{bottom:1111.650000px;}
.y2_c00302{bottom:1134.750000px;}
.y1_c00302{bottom:1137.600000px;}
.h7_c00302{height:30.000000px;}
.hb_c00302{height:36.000000px;}
.ha_c00302{height:42.000000px;}
.h9_c00302{height:48.000000px;}
.hd_c00302{height:54.000000px;}
.h6_c00302{height:60.000000px;}
.h5_c00302{height:66.000000px;}
.h4_c00302{height:72.000000px;}
.h3_c00302{height:78.000000px;}
.h2_c00302{height:84.000000px;}
.h8_c00302{height:90.000000px;}
.hc_c00302{height:108.000000px;}
.h1_c00302{height:1267.500000px;}
.h0_c00302{height:1267.559967px;}
.w1_c00302{width:961.500000px;}
.w0_c00302{width:961.560058px;}
.x0_c00302{left:0.000000px;}
.x4d_c00302{left:94.650000px;}
.x60_c00302{left:96.150000px;}
.x6c_c00302{left:97.350000px;}
.x80_c00302{left:102.450000px;}
.x11_c00302{left:104.250000px;}
.x9_c00302{left:112.350000px;}
.x17_c00302{left:113.850000px;}
.x5c_c00302{left:115.200000px;}
.x8a_c00302{left:116.250000px;}
.x28_c00302{left:131.400000px;}
.x39_c00302{left:132.450000px;}
.x57_c00302{left:133.500000px;}
.x84_c00302{left:134.700000px;}
.x90_c00302{left:135.750000px;}
.x53_c00302{left:140.100000px;}
.x81_c00302{left:144.150000px;}
.x12_c00302{left:145.950000px;}
.x3e_c00302{left:147.900000px;}
.x47_c00302{left:150.300000px;}
.x1d_c00302{left:153.000000px;}
.x82_c00302{left:154.200000px;}
.x8d_c00302{left:160.050000px;}
.x37_c00302{left:161.100000px;}
.x63_c00302{left:165.450000px;}
.x13_c00302{left:167.250000px;}
.x7c_c00302{left:169.200000px;}
.x24_c00302{left:170.250000px;}
.xa_c00302{left:173.250000px;}
.x87_c00302{left:175.650000px;}
.x18_c00302{left:178.350000px;}
.x1e_c00302{left:179.700000px;}
.x69_c00302{left:181.500000px;}
.x25_c00302{left:184.950000px;}
.x38_c00302{left:186.600000px;}
.x2e_c00302{left:187.950000px;}
.x85_c00302{left:190.050000px;}
.x6f_c00302{left:191.400000px;}
.x7d_c00302{left:192.600000px;}
.x34_c00302{left:195.750000px;}
.xb_c00302{left:197.700000px;}
.x29_c00302{left:200.850000px;}
.x3a_c00302{left:202.950000px;}
.x42_c00302{left:205.800000px;}
.x7a_c00302{left:209.100000px;}
.x2f_c00302{left:210.600000px;}
.x2a_c00302{left:213.450000px;}
.xc_c00302{left:215.400000px;}
.x35_c00302{left:217.350000px;}
.x70_c00302{left:219.450000px;}
.x4e_c00302{left:225.300000px;}
.x3f_c00302{left:226.350000px;}
.x30_c00302{left:228.600000px;}
.x1f_c00302{left:231.900000px;}
.x58_c00302{left:233.100000px;}
.x64_c00302{left:234.900000px;}
.x5a_c00302{left:238.200000px;}
.x71_c00302{left:241.350000px;}
.x14_c00302{left:243.600000px;}
.x89_c00302{left:245.850000px;}
.xd_c00302{left:247.800000px;}
.x48_c00302{left:249.000000px;}
.x40_c00302{left:250.050000px;}
.x26_c00302{left:253.050000px;}
.x65_c00302{left:254.700000px;}
.x2b_c00302{left:260.250000px;}
.x6a_c00302{left:262.500000px;}
.x5d_c00302{left:265.350000px;}
.x5b_c00302{left:266.700000px;}
.xe_c00302{left:269.400000px;}
.x86_c00302{left:272.400000px;}
.x19_c00302{left:277.350000px;}
.x4f_c00302{left:279.300000px;}
.x27_c00302{left:281.550000px;}
.x88_c00302{left:282.600000px;}
.x3b_c00302{left:283.650000px;}
.x43_c00302{left:285.000000px;}
.x77_c00302{left:287.400000px;}
.x55_c00302{left:288.750000px;}
.x20_c00302{left:292.350000px;}
.x31_c00302{left:294.450000px;}
.x1a_c00302{left:297.150000px;}
.x7e_c00302{left:298.500000px;}
.x56_c00302{left:299.850000px;}
.x5e_c00302{left:302.100000px;}
.x49_c00302{left:303.300000px;}
.x6d_c00302{left:307.200000px;}
.x41_c00302{left:310.200000px;}
.x72_c00302{left:312.000000px;}
.x15_c00302{left:314.850000px;}
.x3c_c00302{left:316.350000px;}
.x2c_c00302{left:319.650000px;}
.x44_c00302{left:321.300000px;}
.x32_c00302{left:322.950000px;}
.x76_c00302{left:325.800000px;}
.x66_c00302{left:327.450000px;}
.x3d_c00302{left:329.700000px;}
.x1_c00302{left:336.300000px;}
.x4a_c00302{left:337.500000px;}
.x51_c00302{left:339.150000px;}
.x8b_c00302{left:340.350000px;}
.x78_c00302{left:343.200000px;}
.x50_c00302{left:346.200000px;}
.x36_c00302{left:347.700000px;}
.x52_c00302{left:348.900000px;}
.x21_c00302{left:349.950000px;}
.x5f_c00302{left:351.450000px;}
.x6b_c00302{left:354.000000px;}
.x61_c00302{left:355.500000px;}
.x4b_c00302{left:358.350000px;}
.x2_c00302{left:359.700000px;}
.xf_c00302{left:362.700000px;}
.x45_c00302{left:367.050000px;}
.x59_c00302{left:368.100000px;}
.x22_c00302{left:369.450000px;}
.x6e_c00302{left:370.950000px;}
.x1b_c00302{left:372.750000px;}
.x8e_c00302{left:374.550000px;}
.x67_c00302{left:376.800000px;}
.x3_c00302{left:378.450000px;}
.x79_c00302{left:380.250000px;}
.x62_c00302{left:384.000000px;}
.x16_c00302{left:385.350000px;}
.x8f_c00302{left:387.900000px;}
.x2d_c00302{left:389.850000px;}
.x1c_c00302{left:391.050000px;}
.x8c_c00302{left:392.550000px;}
.x54_c00302{left:394.650000px;}
.x68_c00302{left:395.850000px;}
.x46_c00302{left:396.900000px;}
.x4_c00302{left:401.100000px;}
.x7f_c00302{left:403.350000px;}
.x4c_c00302{left:406.200000px;}
.x73_c00302{left:409.200000px;}
.x10_c00302{left:410.550000px;}
.x7b_c00302{left:411.750000px;}
.x83_c00302{left:413.700000px;}
.x33_c00302{left:415.800000px;}
.x23_c00302{left:419.850000px;}
.x74_c00302{left:421.050000px;}
.x5_c00302{left:427.050000px;}
.x75_c00302{left:440.550000px;}
.xd0_c00302{left:451.500000px;}
.xea_c00302{left:452.550000px;}
.x11e_c00302{left:453.900000px;}
.xd6_c00302{left:460.350000px;}
.xa8_c00302{left:465.450000px;}
.xf0_c00302{left:466.950000px;}
.x91_c00302{left:468.000000px;}
.xdc_c00302{left:471.300000px;}
.xd7_c00302{left:473.250000px;}
.x103_c00302{left:481.350000px;}
.xbe_c00302{left:482.700000px;}
.xeb_c00302{left:483.900000px;}
.xe3_c00302{left:486.000000px;}
.xa9_c00302{left:487.650000px;}
.x6_c00302{left:490.050000px;}
.xd1_c00302{left:496.500000px;}
.xf3_c00302{left:498.000000px;}
.x11a_c00302{left:500.850000px;}
.xe4_c00302{left:501.900000px;}
.xa3_c00302{left:503.700000px;}
.x122_c00302{left:506.400000px;}
.x124_c00302{left:507.450000px;}
.xe5_c00302{left:510.600000px;}
.xcd_c00302{left:512.700000px;}
.xc4_c00302{left:514.950000px;}
.xae_c00302{left:517.350000px;}
.xf4_c00302{left:519.900000px;}
.xd3_c00302{left:521.850000px;}
.x12f_c00302{left:522.900000px;}
.xca_c00302{left:523.950000px;}
.x7_c00302{left:525.300000px;}
.xaf_c00302{left:528.900000px;}
.xb5_c00302{left:530.550000px;}
.x11f_c00302{left:531.750000px;}
.xaa_c00302{left:532.950000px;}
.xe6_c00302{left:534.300000px;}
.x104_c00302{left:536.400000px;}
.x10e_c00302{left:538.200000px;}
.x126_c00302{left:539.250000px;}
.xc1_c00302{left:541.350000px;}
.xcb_c00302{left:544.050000px;}
.xc5_c00302{left:545.850000px;}
.x9f_c00302{left:547.200000px;}
.xdd_c00302{left:548.400000px;}
.x98_c00302{left:550.650000px;}
.x10f_c00302{left:552.000000px;}
.x118_c00302{left:554.850000px;}
.xf5_c00302{left:556.200000px;}
.xc6_c00302{left:557.700000px;}
.x12a_c00302{left:558.750000px;}
.xa0_c00302{left:560.850000px;}
.x92_c00302{left:562.350000px;}
.xe7_c00302{left:563.400000px;}
.xb0_c00302{left:565.200000px;}
.xde_c00302{left:567.450000px;}
.x111_c00302{left:569.250000px;}
.xbf_c00302{left:571.950000px;}
.xfa_c00302{left:573.450000px;}
.xce_c00302{left:575.400000px;}
.x119_c00302{left:576.750000px;}
.x10b_c00302{left:577.800000px;}
.xec_c00302{left:578.850000px;}
.x99_c00302{left:581.550000px;}
.xfd_c00302{left:583.500000px;}
.x93_c00302{left:586.800000px;}
.xab_c00302{left:588.000000px;}
.xf1_c00302{left:589.350000px;}
.xf6_c00302{left:590.400000px;}
.xa4_c00302{left:591.600000px;}
.xb1_c00302{left:595.050000px;}
.x110_c00302{left:596.250000px;}
.x125_c00302{left:599.100000px;}
.x137_c00302{left:601.200000px;}
.x105_c00302{left:603.000000px;}
.x129_c00302{left:604.200000px;}
.xd8_c00302{left:605.250000px;}
.x11c_c00302{left:606.600000px;}
.x12b_c00302{left:609.600000px;}
.xb6_c00302{left:611.550000px;}
.xb2_c00302{left:613.350000px;}
.xcc_c00302{left:614.850000px;}
.x9a_c00302{left:616.500000px;}
.xdf_c00302{left:617.850000px;}
.xfe_c00302{left:619.200000px;}
.x113_c00302{left:620.850000px;}
.x130_c00302{left:622.050000px;}
.xc7_c00302{left:624.300000px;}
.xb7_c00302{left:626.250000px;}
.x10c_c00302{left:627.450000px;}
.xa5_c00302{left:629.400000px;}
.xed_c00302{left:631.800000px;}
.xd9_c00302{left:633.000000px;}
.xb8_c00302{left:634.950000px;}
.x12d_c00302{left:636.600000px;}
.xa1_c00302{left:639.300000px;}
.xff_c00302{left:640.350000px;}
.xc2_c00302{left:641.850000px;}
.x10a_c00302{left:643.200000px;}
.x123_c00302{left:644.250000px;}
.xb9_c00302{left:646.500000px;}
.x100_c00302{left:648.300000px;}
.xac_c00302{left:650.700000px;}
.x135_c00302{left:653.250000px;}
.x9b_c00302{left:655.800000px;}
.x12e_c00302{left:657.900000px;}
.xda_c00302{left:658.950000px;}
.x106_c00302{left:661.350000px;}
.x101_c00302{left:662.400000px;}
.x94_c00302{left:665.250000px;}
.xba_c00302{left:666.300000px;}
.xe0_c00302{left:670.050000px;}
.x114_c00302{left:671.550000px;}
.x131_c00302{left:672.750000px;}
.xc3_c00302{left:675.000000px;}
.x95_c00302{left:676.350000px;}
.xd4_c00302{left:677.400000px;}
.xe8_c00302{left:678.600000px;}
.x136_c00302{left:681.000000px;}
.xf2_c00302{left:682.650000px;}
.x108_c00302{left:683.700000px;}
.xee_c00302{left:686.100000px;}
.xa6_c00302{left:687.750000px;}
.xe1_c00302{left:690.150000px;}
.x112_c00302{left:693.450000px;}
.xe9_c00302{left:696.300000px;}
.x127_c00302{left:697.350000px;}
.x9c_c00302{left:698.700000px;}
.xb3_c00302{left:699.750000px;}
.xa2_c00302{left:700.800000px;}
.xa7_c00302{left:702.150000px;}
.x133_c00302{left:703.950000px;}
.xc0_c00302{left:708.000000px;}
.x96_c00302{left:709.050000px;}
.xd5_c00302{left:714.450000px;}
.x116_c00302{left:715.650000px;}
.x9d_c00302{left:716.700000px;}
.xcf_c00302{left:718.650000px;}
.xf7_c00302{left:720.000000px;}
.xc8_c00302{left:721.200000px;}
.x128_c00302{left:723.300000px;}
.x11b_c00302{left:724.800000px;}
.x11d_c00302{left:726.150000px;}
.x132_c00302{left:728.250000px;}
.xad_c00302{left:730.950000px;}
.x120_c00302{left:732.150000px;}
.xbb_c00302{left:734.250000px;}
.xfb_c00302{left:737.250000px;}
.xf8_c00302{left:739.800000px;}
.x10d_c00302{left:740.850000px;}
.x9e_c00302{left:741.900000px;}
.x138_c00302{left:742.950000px;}
.x117_c00302{left:744.150000px;}
.x107_c00302{left:746.250000px;}
.xdb_c00302{left:747.750000px;}
.xbc_c00302{left:749.400000px;}
.xe2_c00302{left:751.650000px;}
.xef_c00302{left:753.450000px;}
.x8_c00302{left:754.950000px;}
.xd2_c00302{left:756.900000px;}
.xc9_c00302{left:757.950000px;}
.x97_c00302{left:759.750000px;}
.x134_c00302{left:761.250000px;}
.x12c_c00302{left:763.350000px;}
.xbd_c00302{left:768.450000px;}
.xb4_c00302{left:769.950000px;}
.x109_c00302{left:771.750000px;}
.xfc_c00302{left:773.550000px;}
.x102_c00302{left:775.500000px;}
.xf9_c00302{left:776.550000px;}
.x115_c00302{left:777.750000px;}
.x121_c00302{left:784.650000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws6_c00302{word-spacing:-12.592593pt;}
.ws0_c00302{word-spacing:-12.320298pt;}
.ws12_c00302{word-spacing:-9.333333pt;}
.ws7_c00302{word-spacing:-8.000000pt;}
.ws1_c00302{word-spacing:-4.836601pt;}
.wsa_c00302{word-spacing:-4.320988pt;}
.ws16_c00302{word-spacing:0.000000pt;}
.ws14_c00302{word-spacing:2.693102pt;}
.ws3_c00302{word-spacing:6.449538pt;}
.ws15_c00302{word-spacing:8.898473pt;}
.wse_c00302{word-spacing:10.555556pt;}
.ws13_c00302{word-spacing:11.082251pt;}
.ws8_c00302{word-spacing:14.920635pt;}
.wsb_c00302{word-spacing:15.746032pt;}
.wsf_c00302{word-spacing:16.111111pt;}
.wsc_c00302{word-spacing:16.222222pt;}
.ws11_c00302{word-spacing:17.773012pt;}
.wsd_c00302{word-spacing:19.682540pt;}
.ws10_c00302{word-spacing:22.857143pt;}
.ws9_c00302{word-spacing:61.871345pt;}
.ws4_c00302{word-spacing:203.428571pt;}
.ws2_c00302{word-spacing:352.061303pt;}
.ws5_c00302{word-spacing:892.222222pt;}
._2_c00302{width:42.158730pt;}
._0_c00302{width:49.523810pt;}
._1_c00302{width:52.698413pt;}
._3_c00302{width:56.825397pt;}
.fs5_c00302{font-size:26.666667pt;}
.fs9_c00302{font-size:32.000000pt;}
.fs8_c00302{font-size:37.333333pt;}
.fs7_c00302{font-size:42.666667pt;}
.fsb_c00302{font-size:48.000000pt;}
.fs4_c00302{font-size:53.333333pt;}
.fs3_c00302{font-size:58.666667pt;}
.fs2_c00302{font-size:64.000000pt;}
.fs1_c00302{font-size:69.333333pt;}
.fs0_c00302{font-size:74.666667pt;}
.fs6_c00302{font-size:80.000000pt;}
.fsa_c00302{font-size:96.000000pt;}
.y0_c00302{bottom:0.000000pt;}
.y6b_c00302{bottom:149.466667pt;}
.y6a_c00302{bottom:165.466667pt;}
.y36_c00302{bottom:167.333333pt;}
.y69_c00302{bottom:181.733333pt;}
.y35_c00302{bottom:187.200000pt;}
.y68_c00302{bottom:197.733333pt;}
.y34_c00302{bottom:203.200000pt;}
.y67_c00302{bottom:213.733333pt;}
.y33_c00302{bottom:219.200000pt;}
.y66_c00302{bottom:229.733333pt;}
.y2f_c00302{bottom:238.400000pt;}
.y65_c00302{bottom:245.733333pt;}
.y2e_c00302{bottom:254.400000pt;}
.y64_c00302{bottom:261.600000pt;}
.y2d_c00302{bottom:270.400000pt;}
.y63_c00302{bottom:277.333333pt;}
.y62_c00302{bottom:293.333333pt;}
.y2c_c00302{bottom:295.333333pt;}
.y2b_c00302{bottom:295.600000pt;}
.y2a_c00302{bottom:304.933333pt;}
.y61_c00302{bottom:309.066667pt;}
.y32_c00302{bottom:312.000000pt;}
.y31_c00302{bottom:315.733333pt;}
.y29_c00302{bottom:322.266667pt;}
.y60_c00302{bottom:324.800000pt;}
.y30_c00302{bottom:326.666667pt;}
.y5f_c00302{bottom:340.533333pt;}
.y28_c00302{bottom:345.600000pt;}
.y5e_c00302{bottom:355.866667pt;}
.y27_c00302{bottom:365.466667pt;}
.y5d_c00302{bottom:371.866667pt;}
.y26_c00302{bottom:385.066667pt;}
.y5c_c00302{bottom:387.866667pt;}
.y25_c00302{bottom:404.533333pt;}
.y5b_c00302{bottom:406.133333pt;}
.y5a_c00302{bottom:420.133333pt;}
.y59_c00302{bottom:431.733333pt;}
.y24_c00302{bottom:435.466667pt;}
.y58_c00302{bottom:444.533333pt;}
.y57_c00302{bottom:458.933333pt;}
.y23_c00302{bottom:467.200000pt;}
.y56_c00302{bottom:470.133333pt;}
.y55_c00302{bottom:482.933333pt;}
.y22_c00302{bottom:483.466667pt;}
.y54_c00302{bottom:495.733333pt;}
.y21_c00302{bottom:499.200000pt;}
.y53_c00302{bottom:508.533333pt;}
.y20_c00302{bottom:514.933333pt;}
.y52_c00302{bottom:521.600000pt;}
.y1e_c00302{bottom:530.933333pt;}
.y51_c00302{bottom:534.000000pt;}
.y1d_c00302{bottom:546.266667pt;}
.y1f_c00302{bottom:546.933333pt;}
.y50_c00302{bottom:549.066667pt;}
.y4f_c00302{bottom:560.000000pt;}
.y1c_c00302{bottom:562.533333pt;}
.y4e_c00302{bottom:574.666667pt;}
.y1b_c00302{bottom:578.533333pt;}
.y4d_c00302{bottom:584.933333pt;}
.y1a_c00302{bottom:594.266667pt;}
.y4c_c00302{bottom:598.400000pt;}
.y19_c00302{bottom:610.266667pt;}
.y4b_c00302{bottom:621.733333pt;}
.y4a_c00302{bottom:628.800000pt;}
.y18_c00302{bottom:629.466667pt;}
.y49_c00302{bottom:644.533333pt;}
.y17_c00302{bottom:645.733333pt;}
.y16_c00302{bottom:661.066667pt;}
.y48_c00302{bottom:664.000000pt;}
.y47_c00302{bottom:680.000000pt;}
.y15_c00302{bottom:684.133333pt;}
.y14_c00302{bottom:692.133333pt;}
.y46_c00302{bottom:696.000000pt;}
.y45_c00302{bottom:711.733333pt;}
.y44_c00302{bottom:727.733333pt;}
.y13_c00302{bottom:731.866667pt;}
.y12_c00302{bottom:743.066667pt;}
.y43_c00302{bottom:764.800000pt;}
.y10_c00302{bottom:774.666667pt;}
.y42_c00302{bottom:778.533333pt;}
.yf_c00302{bottom:790.800000pt;}
.y41_c00302{bottom:803.466667pt;}
.y40_c00302{bottom:806.400000pt;}
.ye_c00302{bottom:807.066667pt;}
.y3f_c00302{bottom:821.866667pt;}
.yd_c00302{bottom:822.400000pt;}
.yc_c00302{bottom:837.733333pt;}
.y3e_c00302{bottom:838.133333pt;}
.y3d_c00302{bottom:854.133333pt;}
.yb_c00302{bottom:857.600000pt;}
.y3c_c00302{bottom:871.066667pt;}
.ya_c00302{bottom:873.866667pt;}
.y3b_c00302{bottom:888.533333pt;}
.y9_c00302{bottom:889.200000pt;}
.y8_c00302{bottom:904.933333pt;}
.y3a_c00302{bottom:905.200000pt;}
.y39_c00302{bottom:920.933333pt;}
.y11_c00302{bottom:926.133333pt;}
.y7_c00302{bottom:928.666667pt;}
.y6_c00302{bottom:940.666667pt;}
.y38_c00302{bottom:942.133333pt;}
.y5_c00302{bottom:956.400000pt;}
.y4_c00302{bottom:972.133333pt;}
.y37_c00302{bottom:987.866667pt;}
.y3_c00302{bottom:988.133333pt;}
.y2_c00302{bottom:1008.666667pt;}
.y1_c00302{bottom:1011.200000pt;}
.h7_c00302{height:26.666667pt;}
.hb_c00302{height:32.000000pt;}
.ha_c00302{height:37.333333pt;}
.h9_c00302{height:42.666667pt;}
.hd_c00302{height:48.000000pt;}
.h6_c00302{height:53.333333pt;}
.h5_c00302{height:58.666667pt;}
.h4_c00302{height:64.000000pt;}
.h3_c00302{height:69.333333pt;}
.h2_c00302{height:74.666667pt;}
.h8_c00302{height:80.000000pt;}
.hc_c00302{height:96.000000pt;}
.h1_c00302{height:1126.666667pt;}
.h0_c00302{height:1126.719971pt;}
.w1_c00302{width:854.666667pt;}
.w0_c00302{width:854.720052pt;}
.x0_c00302{left:0.000000pt;}
.x4d_c00302{left:84.133333pt;}
.x60_c00302{left:85.466667pt;}
.x6c_c00302{left:86.533333pt;}
.x80_c00302{left:91.066667pt;}
.x11_c00302{left:92.666667pt;}
.x9_c00302{left:99.866667pt;}
.x17_c00302{left:101.200000pt;}
.x5c_c00302{left:102.400000pt;}
.x8a_c00302{left:103.333333pt;}
.x28_c00302{left:116.800000pt;}
.x39_c00302{left:117.733333pt;}
.x57_c00302{left:118.666667pt;}
.x84_c00302{left:119.733333pt;}
.x90_c00302{left:120.666667pt;}
.x53_c00302{left:124.533333pt;}
.x81_c00302{left:128.133333pt;}
.x12_c00302{left:129.733333pt;}
.x3e_c00302{left:131.466667pt;}
.x47_c00302{left:133.600000pt;}
.x1d_c00302{left:136.000000pt;}
.x82_c00302{left:137.066667pt;}
.x8d_c00302{left:142.266667pt;}
.x37_c00302{left:143.200000pt;}
.x63_c00302{left:147.066667pt;}
.x13_c00302{left:148.666667pt;}
.x7c_c00302{left:150.400000pt;}
.x24_c00302{left:151.333333pt;}
.xa_c00302{left:154.000000pt;}
.x87_c00302{left:156.133333pt;}
.x18_c00302{left:158.533333pt;}
.x1e_c00302{left:159.733333pt;}
.x69_c00302{left:161.333333pt;}
.x25_c00302{left:164.400000pt;}
.x38_c00302{left:165.866667pt;}
.x2e_c00302{left:167.066667pt;}
.x85_c00302{left:168.933333pt;}
.x6f_c00302{left:170.133333pt;}
.x7d_c00302{left:171.200000pt;}
.x34_c00302{left:174.000000pt;}
.xb_c00302{left:175.733333pt;}
.x29_c00302{left:178.533333pt;}
.x3a_c00302{left:180.400000pt;}
.x42_c00302{left:182.933333pt;}
.x7a_c00302{left:185.866667pt;}
.x2f_c00302{left:187.200000pt;}
.x2a_c00302{left:189.733333pt;}
.xc_c00302{left:191.466667pt;}
.x35_c00302{left:193.200000pt;}
.x70_c00302{left:195.066667pt;}
.x4e_c00302{left:200.266667pt;}
.x3f_c00302{left:201.200000pt;}
.x30_c00302{left:203.200000pt;}
.x1f_c00302{left:206.133333pt;}
.x58_c00302{left:207.200000pt;}
.x64_c00302{left:208.800000pt;}
.x5a_c00302{left:211.733333pt;}
.x71_c00302{left:214.533333pt;}
.x14_c00302{left:216.533333pt;}
.x89_c00302{left:218.533333pt;}
.xd_c00302{left:220.266667pt;}
.x48_c00302{left:221.333333pt;}
.x40_c00302{left:222.266667pt;}
.x26_c00302{left:224.933333pt;}
.x65_c00302{left:226.400000pt;}
.x2b_c00302{left:231.333333pt;}
.x6a_c00302{left:233.333333pt;}
.x5d_c00302{left:235.866667pt;}
.x5b_c00302{left:237.066667pt;}
.xe_c00302{left:239.466667pt;}
.x86_c00302{left:242.133333pt;}
.x19_c00302{left:246.533333pt;}
.x4f_c00302{left:248.266667pt;}
.x27_c00302{left:250.266667pt;}
.x88_c00302{left:251.200000pt;}
.x3b_c00302{left:252.133333pt;}
.x43_c00302{left:253.333333pt;}
.x77_c00302{left:255.466667pt;}
.x55_c00302{left:256.666667pt;}
.x20_c00302{left:259.866667pt;}
.x31_c00302{left:261.733333pt;}
.x1a_c00302{left:264.133333pt;}
.x7e_c00302{left:265.333333pt;}
.x56_c00302{left:266.533333pt;}
.x5e_c00302{left:268.533333pt;}
.x49_c00302{left:269.600000pt;}
.x6d_c00302{left:273.066667pt;}
.x41_c00302{left:275.733333pt;}
.x72_c00302{left:277.333333pt;}
.x15_c00302{left:279.866667pt;}
.x3c_c00302{left:281.200000pt;}
.x2c_c00302{left:284.133333pt;}
.x44_c00302{left:285.600000pt;}
.x32_c00302{left:287.066667pt;}
.x76_c00302{left:289.600000pt;}
.x66_c00302{left:291.066667pt;}
.x3d_c00302{left:293.066667pt;}
.x1_c00302{left:298.933333pt;}
.x4a_c00302{left:300.000000pt;}
.x51_c00302{left:301.466667pt;}
.x8b_c00302{left:302.533333pt;}
.x78_c00302{left:305.066667pt;}
.x50_c00302{left:307.733333pt;}
.x36_c00302{left:309.066667pt;}
.x52_c00302{left:310.133333pt;}
.x21_c00302{left:311.066667pt;}
.x5f_c00302{left:312.400000pt;}
.x6b_c00302{left:314.666667pt;}
.x61_c00302{left:316.000000pt;}
.x4b_c00302{left:318.533333pt;}
.x2_c00302{left:319.733333pt;}
.xf_c00302{left:322.400000pt;}
.x45_c00302{left:326.266667pt;}
.x59_c00302{left:327.200000pt;}
.x22_c00302{left:328.400000pt;}
.x6e_c00302{left:329.733333pt;}
.x1b_c00302{left:331.333333pt;}
.x8e_c00302{left:332.933333pt;}
.x67_c00302{left:334.933333pt;}
.x3_c00302{left:336.400000pt;}
.x79_c00302{left:338.000000pt;}
.x62_c00302{left:341.333333pt;}
.x16_c00302{left:342.533333pt;}
.x8f_c00302{left:344.800000pt;}
.x2d_c00302{left:346.533333pt;}
.x1c_c00302{left:347.600000pt;}
.x8c_c00302{left:348.933333pt;}
.x54_c00302{left:350.800000pt;}
.x68_c00302{left:351.866667pt;}
.x46_c00302{left:352.800000pt;}
.x4_c00302{left:356.533333pt;}
.x7f_c00302{left:358.533333pt;}
.x4c_c00302{left:361.066667pt;}
.x73_c00302{left:363.733333pt;}
.x10_c00302{left:364.933333pt;}
.x7b_c00302{left:366.000000pt;}
.x83_c00302{left:367.733333pt;}
.x33_c00302{left:369.600000pt;}
.x23_c00302{left:373.200000pt;}
.x74_c00302{left:374.266667pt;}
.x5_c00302{left:379.600000pt;}
.x75_c00302{left:391.600000pt;}
.xd0_c00302{left:401.333333pt;}
.xea_c00302{left:402.266667pt;}
.x11e_c00302{left:403.466667pt;}
.xd6_c00302{left:409.200000pt;}
.xa8_c00302{left:413.733333pt;}
.xf0_c00302{left:415.066667pt;}
.x91_c00302{left:416.000000pt;}
.xdc_c00302{left:418.933333pt;}
.xd7_c00302{left:420.666667pt;}
.x103_c00302{left:427.866667pt;}
.xbe_c00302{left:429.066667pt;}
.xeb_c00302{left:430.133333pt;}
.xe3_c00302{left:432.000000pt;}
.xa9_c00302{left:433.466667pt;}
.x6_c00302{left:435.600000pt;}
.xd1_c00302{left:441.333333pt;}
.xf3_c00302{left:442.666667pt;}
.x11a_c00302{left:445.200000pt;}
.xe4_c00302{left:446.133333pt;}
.xa3_c00302{left:447.733333pt;}
.x122_c00302{left:450.133333pt;}
.x124_c00302{left:451.066667pt;}
.xe5_c00302{left:453.866667pt;}
.xcd_c00302{left:455.733333pt;}
.xc4_c00302{left:457.733333pt;}
.xae_c00302{left:459.866667pt;}
.xf4_c00302{left:462.133333pt;}
.xd3_c00302{left:463.866667pt;}
.x12f_c00302{left:464.800000pt;}
.xca_c00302{left:465.733333pt;}
.x7_c00302{left:466.933333pt;}
.xaf_c00302{left:470.133333pt;}
.xb5_c00302{left:471.600000pt;}
.x11f_c00302{left:472.666667pt;}
.xaa_c00302{left:473.733333pt;}
.xe6_c00302{left:474.933333pt;}
.x104_c00302{left:476.800000pt;}
.x10e_c00302{left:478.400000pt;}
.x126_c00302{left:479.333333pt;}
.xc1_c00302{left:481.200000pt;}
.xcb_c00302{left:483.600000pt;}
.xc5_c00302{left:485.200000pt;}
.x9f_c00302{left:486.400000pt;}
.xdd_c00302{left:487.466667pt;}
.x98_c00302{left:489.466667pt;}
.x10f_c00302{left:490.666667pt;}
.x118_c00302{left:493.200000pt;}
.xf5_c00302{left:494.400000pt;}
.xc6_c00302{left:495.733333pt;}
.x12a_c00302{left:496.666667pt;}
.xa0_c00302{left:498.533333pt;}
.x92_c00302{left:499.866667pt;}
.xe7_c00302{left:500.800000pt;}
.xb0_c00302{left:502.400000pt;}
.xde_c00302{left:504.400000pt;}
.x111_c00302{left:506.000000pt;}
.xbf_c00302{left:508.400000pt;}
.xfa_c00302{left:509.733333pt;}
.xce_c00302{left:511.466667pt;}
.x119_c00302{left:512.666667pt;}
.x10b_c00302{left:513.600000pt;}
.xec_c00302{left:514.533333pt;}
.x99_c00302{left:516.933333pt;}
.xfd_c00302{left:518.666667pt;}
.x93_c00302{left:521.600000pt;}
.xab_c00302{left:522.666667pt;}
.xf1_c00302{left:523.866667pt;}
.xf6_c00302{left:524.800000pt;}
.xa4_c00302{left:525.866667pt;}
.xb1_c00302{left:528.933333pt;}
.x110_c00302{left:530.000000pt;}
.x125_c00302{left:532.533333pt;}
.x137_c00302{left:534.400000pt;}
.x105_c00302{left:536.000000pt;}
.x129_c00302{left:537.066667pt;}
.xd8_c00302{left:538.000000pt;}
.x11c_c00302{left:539.200000pt;}
.x12b_c00302{left:541.866667pt;}
.xb6_c00302{left:543.600000pt;}
.xb2_c00302{left:545.200000pt;}
.xcc_c00302{left:546.533333pt;}
.x9a_c00302{left:548.000000pt;}
.xdf_c00302{left:549.200000pt;}
.xfe_c00302{left:550.400000pt;}
.x113_c00302{left:551.866667pt;}
.x130_c00302{left:552.933333pt;}
.xc7_c00302{left:554.933333pt;}
.xb7_c00302{left:556.666667pt;}
.x10c_c00302{left:557.733333pt;}
.xa5_c00302{left:559.466667pt;}
.xed_c00302{left:561.600000pt;}
.xd9_c00302{left:562.666667pt;}
.xb8_c00302{left:564.400000pt;}
.x12d_c00302{left:565.866667pt;}
.xa1_c00302{left:568.266667pt;}
.xff_c00302{left:569.200000pt;}
.xc2_c00302{left:570.533333pt;}
.x10a_c00302{left:571.733333pt;}
.x123_c00302{left:572.666667pt;}
.xb9_c00302{left:574.666667pt;}
.x100_c00302{left:576.266667pt;}
.xac_c00302{left:578.400000pt;}
.x135_c00302{left:580.666667pt;}
.x9b_c00302{left:582.933333pt;}
.x12e_c00302{left:584.800000pt;}
.xda_c00302{left:585.733333pt;}
.x106_c00302{left:587.866667pt;}
.x101_c00302{left:588.800000pt;}
.x94_c00302{left:591.333333pt;}
.xba_c00302{left:592.266667pt;}
.xe0_c00302{left:595.600000pt;}
.x114_c00302{left:596.933333pt;}
.x131_c00302{left:598.000000pt;}
.xc3_c00302{left:600.000000pt;}
.x95_c00302{left:601.200000pt;}
.xd4_c00302{left:602.133333pt;}
.xe8_c00302{left:603.200000pt;}
.x136_c00302{left:605.333333pt;}
.xf2_c00302{left:606.800000pt;}
.x108_c00302{left:607.733333pt;}
.xee_c00302{left:609.866667pt;}
.xa6_c00302{left:611.333333pt;}
.xe1_c00302{left:613.466667pt;}
.x112_c00302{left:616.400000pt;}
.xe9_c00302{left:618.933333pt;}
.x127_c00302{left:619.866667pt;}
.x9c_c00302{left:621.066667pt;}
.xb3_c00302{left:622.000000pt;}
.xa2_c00302{left:622.933333pt;}
.xa7_c00302{left:624.133333pt;}
.x133_c00302{left:625.733333pt;}
.xc0_c00302{left:629.333333pt;}
.x96_c00302{left:630.266667pt;}
.xd5_c00302{left:635.066667pt;}
.x116_c00302{left:636.133333pt;}
.x9d_c00302{left:637.066667pt;}
.xcf_c00302{left:638.800000pt;}
.xf7_c00302{left:640.000000pt;}
.xc8_c00302{left:641.066667pt;}
.x128_c00302{left:642.933333pt;}
.x11b_c00302{left:644.266667pt;}
.x11d_c00302{left:645.466667pt;}
.x132_c00302{left:647.333333pt;}
.xad_c00302{left:649.733333pt;}
.x120_c00302{left:650.800000pt;}
.xbb_c00302{left:652.666667pt;}
.xfb_c00302{left:655.333333pt;}
.xf8_c00302{left:657.600000pt;}
.x10d_c00302{left:658.533333pt;}
.x9e_c00302{left:659.466667pt;}
.x138_c00302{left:660.400000pt;}
.x117_c00302{left:661.466667pt;}
.x107_c00302{left:663.333333pt;}
.xdb_c00302{left:664.666667pt;}
.xbc_c00302{left:666.133333pt;}
.xe2_c00302{left:668.133333pt;}
.xef_c00302{left:669.733333pt;}
.x8_c00302{left:671.066667pt;}
.xd2_c00302{left:672.800000pt;}
.xc9_c00302{left:673.733333pt;}
.x97_c00302{left:675.333333pt;}
.x134_c00302{left:676.666667pt;}
.x12c_c00302{left:678.533333pt;}
.xbd_c00302{left:683.066667pt;}
.xb4_c00302{left:684.400000pt;}
.x109_c00302{left:686.000000pt;}
.xfc_c00302{left:687.600000pt;}
.x102_c00302{left:689.333333pt;}
.xf9_c00302{left:690.266667pt;}
.x115_c00302{left:691.333333pt;}
.x121_c00302{left:697.466667pt;}
}





/* 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_c00303 {
    display:none;
  }
  .loading-indicator_c00303.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00303 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_c00303 { 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_c00303" -> "#page-container .classname_c00303")
 */
.pf_c00303 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00303 { /* 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_c00303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00303 { /* 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_c00303 { /* 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_c00303 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00303 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00303 {overflow:visible;}
  }
}
.c_c00303 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00303 { /* 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_c00303:after { /* webkit #35443 */
  content: '';
}
.t_c00303:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00303 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 */
}
.__c00303 { /* 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_c00303 { /* info for Javascript */
  display:none;
}
.l_c00303 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00303 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00303 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00303: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_c00303 {
    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_c00303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00303.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_c00303 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00303;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.000000;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;}
.m10c_c00303{transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00303{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00303{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00303{transform:matrix(0.018000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00303{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.me2_c00303{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00303{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00303{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mab_c00303{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00303{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.md3_c00303{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00303{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mee_c00303{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00303{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00303{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m80_c00303{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00303{transform:matrix(0.056000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00303{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mac_c00303{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m102_c00303{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m101_c00303{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00303{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m17_c00303{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mca_c00303{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.mb_c00303{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.me8_c00303{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00303{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m133_c00303{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00303{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mef_c00303{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00303{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00303{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m26_c00303{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m134_c00303{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m128_c00303{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00303{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m61_c00303{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.me1_c00303{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m71_c00303{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m52_c00303{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00303{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m43_c00303{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00303{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00303{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00303{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m85_c00303{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00303{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md6_c00303{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m76_c00303{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00303{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00303{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m86_c00303{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00303{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m72_c00303{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.md9_c00303{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00303{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00303{transform:matrix(0.145250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145250,0.000000,0.000000,0.250000,0,0);}
.m89_c00303{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00303{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m122_c00303{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m100_c00303{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m7_c00303{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m124_c00303{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m29_c00303{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m3_c00303{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m137_c00303{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00303{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00303{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00303{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00303{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m4_c00303{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m99_c00303{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00303{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.md_c00303{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m103_c00303{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00303{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m67_c00303{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00303{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00303{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m75_c00303{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00303{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00303{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m123_c00303{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00303{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m37_c00303{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m111_c00303{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m98_c00303{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00303{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mde_c00303{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00303{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00303{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m105_c00303{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m27_c00303{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00303{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00303{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m53_c00303{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00303{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.me7_c00303{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00303{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00303{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00303{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m15_c00303{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me9_c00303{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00303{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m96_c00303{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00303{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m109_c00303{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00303{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00303{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00303{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00303{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00303{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m35_c00303{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m68_c00303{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00303{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m82_c00303{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m14_c00303{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00303{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma_c00303{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5_c00303{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m78_c00303{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00303{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00303{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m70_c00303{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m32_c00303{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00303{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m62_c00303{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00303{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00303{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00303{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m33_c00303{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m0_c00303{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00303{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m23_c00303{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00303{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m22_c00303{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf_c00303{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00303{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m25_c00303{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m79_c00303{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m107_c00303{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m13a_c00303{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8_c00303{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m54_c00303{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m97_c00303{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m74_c00303{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m34_c00303{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00303{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m48_c00303{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m104_c00303{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00303{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m45_c00303{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m116_c00303{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m58_c00303{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00303{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m20_c00303{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2_c00303{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00303{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00303{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m24_c00303{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00303{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m91_c00303{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mad_c00303{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m41_c00303{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00303{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m19_c00303{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00303{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00303{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00303{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m16_c00303{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6_c00303{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m130_c00303{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m118_c00303{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00303{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m93_c00303{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00303{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m21_c00303{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m77_c00303{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m57_c00303{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00303{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me4_c00303{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m42_c00303{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00303{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m94_c00303{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mff_c00303{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00303{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00303{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00303{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m88_c00303{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mec_c00303{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m131_c00303{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00303{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m10_c00303{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m39_c00303{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00303{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00303{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m38_c00303{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.md0_c00303{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m13_c00303{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me_c00303{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00303{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m51_c00303{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00303{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00303{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mae_c00303{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m36_c00303{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.me5_c00303{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.maf_c00303{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.meb_c00303{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m12_c00303{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00303{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m84_c00303{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00303{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m31_c00303{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00303{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00303{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00303{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m69_c00303{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m95_c00303{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m9_c00303{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00303{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00303{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m117_c00303{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00303{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00303{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m108_c00303{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00303{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00303{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mba_c00303{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m18_c00303{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00303{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m60_c00303{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m90_c00303{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m83_c00303{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m112_c00303{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00303{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00303{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m110_c00303{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md8_c00303{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m113_c00303{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc_c00303{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m119_c00303{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m106_c00303{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m55_c00303{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00303{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00303{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11_c00303{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md5_c00303{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.med_c00303{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m92_c00303{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00303{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00303{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);}
.m30_c00303{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00303{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m115_c00303{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md7_c00303{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m28_c00303{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00303{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m139_c00303{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00303{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00303{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m46_c00303{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00303{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.maa_c00303{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00303{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m44_c00303{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00303{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m129_c00303{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m40_c00303{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m135_c00303{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m73_c00303{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m138_c00303{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m47_c00303{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m81_c00303{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00303{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mea_c00303{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m56_c00303{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m136_c00303{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mce_c00303{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00303{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00303{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me6_c00303{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m49_c00303{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00303{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00303{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00303{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me0_c00303{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m114_c00303{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00303{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m65_c00303{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m127_c00303{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m66_c00303{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m125_c00303{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m132_c00303{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m50_c00303{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m64_c00303{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m59_c00303{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00303{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m126_c00303{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00303{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m63_c00303{transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00303{transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00303{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m120_c00303{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.mda_c00303{transform:matrix(0.379750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00303{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.m121_c00303{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00303{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.md1_c00303{transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);}
.me3_c00303{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.md2_c00303{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00303{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.md4_c00303{transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);}
.m87_c00303{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls0_c00303{letter-spacing:0.000000px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{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__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00303{word-spacing:-8.166667px;}
.ws14_c00303{word-spacing:0.000000px;}
.ws13_c00303{word-spacing:7.375796px;}
.ws11_c00303{word-spacing:14.916031px;}
.wsd_c00303{word-spacing:22.142857px;}
.ws6_c00303{word-spacing:25.714286px;}
.ws1_c00303{word-spacing:33.250000px;}
.wsc_c00303{word-spacing:40.000000px;}
.ws4_c00303{word-spacing:65.000000px;}
.ws8_c00303{word-spacing:187.500000px;}
.ws9_c00303{word-spacing:204.790378px;}
.ws10_c00303{word-spacing:304.583333px;}
.ws2_c00303{word-spacing:345.125000px;}
.ws7_c00303{word-spacing:448.333333px;}
.ws5_c00303{word-spacing:450.416667px;}
.ws12_c00303{word-spacing:561.480916px;}
.wsb_c00303{word-spacing:681.666667px;}
.ws0_c00303{word-spacing:685.833333px;}
.wse_c00303{word-spacing:1269.166667px;}
.wsf_c00303{word-spacing:1769.166667px;}
.wsa_c00303{word-spacing:3920.206897px;}
._1_c00303{width:59.285714px;}
._0_c00303{width:1099.166667px;}
.fc0_c00303{color:transparent;}
.fs4_c00303{font-size:18.000000px;}
.fs5_c00303{font-size:30.000000px;}
.fs9_c00303{font-size:42.000000px;}
.fs8_c00303{font-size:48.000000px;}
.fs6_c00303{font-size:54.000000px;}
.fs3_c00303{font-size:60.000000px;}
.fs2_c00303{font-size:66.000000px;}
.fs1_c00303{font-size:72.000000px;}
.fs0_c00303{font-size:78.000000px;}
.fs7_c00303{font-size:120.000000px;}
.y0_c00303{bottom:0.000000px;}
.y4a_c00303{bottom:188.250000px;}
.y49_c00303{bottom:205.200000px;}
.y48_c00303{bottom:208.050000px;}
.y47_c00303{bottom:219.600000px;}
.y46_c00303{bottom:223.200000px;}
.y41_c00303{bottom:241.350000px;}
.y45_c00303{bottom:248.400000px;}
.y44_c00303{bottom:253.800000px;}
.y40_c00303{bottom:260.850000px;}
.y43_c00303{bottom:270.750000px;}
.y3f_c00303{bottom:281.400000px;}
.y42_c00303{bottom:285.450000px;}
.y3e_c00303{bottom:291.150000px;}
.y3d_c00303{bottom:299.100000px;}
.y3c_c00303{bottom:316.650000px;}
.y3b_c00303{bottom:334.350000px;}
.y3a_c00303{bottom:356.250000px;}
.y39_c00303{bottom:373.200000px;}
.y38_c00303{bottom:393.750000px;}
.y37_c00303{bottom:409.200000px;}
.y36_c00303{bottom:426.900000px;}
.y34_c00303{bottom:436.650000px;}
.y35_c00303{bottom:448.950000px;}
.y32_c00303{bottom:454.650000px;}
.y33_c00303{bottom:467.250000px;}
.y31_c00303{bottom:472.650000px;}
.y30_c00303{bottom:496.650000px;}
.y2f_c00303{bottom:521.550000px;}
.y2e_c00303{bottom:527.700000px;}
.y2d_c00303{bottom:541.350000px;}
.y2c_c00303{bottom:556.050000px;}
.y2b_c00303{bottom:578.400000px;}
.y2a_c00303{bottom:586.650000px;}
.y29_c00303{bottom:610.350000px;}
.y28_c00303{bottom:622.200000px;}
.y27_c00303{bottom:639.900000px;}
.y26_c00303{bottom:645.600000px;}
.y25_c00303{bottom:655.650000px;}
.y24_c00303{bottom:668.250000px;}
.y23_c00303{bottom:693.750000px;}
.y22_c00303{bottom:711.750000px;}
.y21_c00303{bottom:723.300000px;}
.y20_c00303{bottom:737.700000px;}
.y19_c00303{bottom:755.550000px;}
.y18_c00303{bottom:773.550000px;}
.y1f_c00303{bottom:776.850000px;}
.y17_c00303{bottom:791.250000px;}
.y1e_c00303{bottom:795.000000px;}
.y16_c00303{bottom:809.250000px;}
.y1d_c00303{bottom:812.250000px;}
.y1c_c00303{bottom:823.350000px;}
.y15_c00303{bottom:827.250000px;}
.y1b_c00303{bottom:830.550000px;}
.y14_c00303{bottom:845.250000px;}
.y1a_c00303{bottom:856.800000px;}
.y13_c00303{bottom:862.500000px;}
.y12_c00303{bottom:896.850000px;}
.y11_c00303{bottom:898.650000px;}
.y10_c00303{bottom:915.900000px;}
.yf_c00303{bottom:936.300000px;}
.ye_c00303{bottom:952.950000px;}
.yd_c00303{bottom:960.450000px;}
.yc_c00303{bottom:971.250000px;}
.yb_c00303{bottom:987.150000px;}
.ya_c00303{bottom:997.950000px;}
.y9_c00303{bottom:1006.650000px;}
.y8_c00303{bottom:1011.300000px;}
.y7_c00303{bottom:1030.650000px;}
.y6_c00303{bottom:1048.650000px;}
.y5_c00303{bottom:1066.650000px;}
.y4_c00303{bottom:1084.650000px;}
.y3_c00303{bottom:1101.900000px;}
.y2_c00303{bottom:1119.900000px;}
.y1_c00303{bottom:1145.100000px;}
.h6_c00303{height:18.000000px;}
.h7_c00303{height:30.000000px;}
.hb_c00303{height:42.000000px;}
.ha_c00303{height:48.000000px;}
.h8_c00303{height:54.000000px;}
.h5_c00303{height:60.000000px;}
.h4_c00303{height:66.000000px;}
.h3_c00303{height:72.000000px;}
.h2_c00303{height:78.000000px;}
.h9_c00303{height:120.000000px;}
.h0_c00303{height:1274.759949px;}
.h1_c00303{height:1275.000000px;}
.w1_c00303{width:961.500000px;}
.w0_c00303{width:961.560058px;}
.x0_c00303{left:0.000000px;}
.x147_c00303{left:167.550000px;}
.x138_c00303{left:168.750000px;}
.xfa_c00303{left:172.950000px;}
.xe5_c00303{left:175.650000px;}
.x10d_c00303{left:177.900000px;}
.x4c_c00303{left:179.550000px;}
.x1_c00303{left:181.800000px;}
.x146_c00303{left:183.150000px;}
.xf8_c00303{left:188.850000px;}
.x12f_c00303{left:190.650000px;}
.xa2_c00303{left:191.700000px;}
.xb7_c00303{left:193.200000px;}
.x9b_c00303{left:194.400000px;}
.x5d_c00303{left:195.600000px;}
.x3_c00303{left:196.950000px;}
.x28_c00303{left:198.000000px;}
.x141_c00303{left:200.850000px;}
.x124_c00303{left:207.000000px;}
.x129_c00303{left:208.350000px;}
.x9c_c00303{left:209.550000px;}
.x8b_c00303{left:211.800000px;}
.x148_c00303{left:213.000000px;}
.xad_c00303{left:214.500000px;}
.x5e_c00303{left:218.700000px;}
.x130_c00303{left:223.050000px;}
.x29_c00303{left:225.750000px;}
.xaa_c00303{left:228.000000px;}
.xae_c00303{left:229.950000px;}
.x8c_c00303{left:232.650000px;}
.x127_c00303{left:235.350000px;}
.xa3_c00303{left:236.400000px;}
.x4d_c00303{left:237.900000px;}
.xe6_c00303{left:239.700000px;}
.x4_c00303{left:241.200000px;}
.x151_c00303{left:245.700000px;}
.xb8_c00303{left:247.200000px;}
.x81_c00303{left:249.600000px;}
.x36_c00303{left:250.950000px;}
.x76_c00303{left:252.750000px;}
.x13d_c00303{left:254.100000px;}
.xa7_c00303{left:261.150000px;}
.x2a_c00303{left:262.500000px;}
.x5_c00303{left:265.350000px;}
.x68_c00303{left:268.650000px;}
.x5f_c00303{left:270.150000px;}
.x9d_c00303{left:271.500000px;}
.xf0_c00303{left:272.850000px;}
.xa4_c00303{left:276.750000px;}
.x142_c00303{left:279.000000px;}
.x55_c00303{left:281.850000px;}
.x128_c00303{left:282.900000px;}
.x42_c00303{left:285.900000px;}
.x73_c00303{left:287.100000px;}
.x12_c00303{left:288.450000px;}
.x37_c00303{left:289.500000px;}
.xab_c00303{left:290.550000px;}
.x60_c00303{left:295.350000px;}
.x6_c00303{left:299.250000px;}
.x140_c00303{left:301.350000px;}
.x77_c00303{left:302.400000px;}
.x2b_c00303{left:306.750000px;}
.x106_c00303{left:307.800000px;}
.x4e_c00303{left:311.250000px;}
.x131_c00303{left:312.750000px;}
.xb9_c00303{left:315.300000px;}
.xe7_c00303{left:316.500000px;}
.x82_c00303{left:318.600000px;}
.x56_c00303{left:319.950000px;}
.x143_c00303{left:323.550000px;}
.x38_c00303{left:324.750000px;}
.xac_c00303{left:326.850000px;}
.xb2_c00303{left:328.950000px;}
.x10e_c00303{left:331.650000px;}
.xe8_c00303{left:333.000000px;}
.x112_c00303{left:334.500000px;}
.xf1_c00303{left:337.650000px;}
.xaf_c00303{left:339.750000px;}
.x8d_c00303{left:340.950000px;}
.x69_c00303{left:342.450000px;}
.xdb_c00303{left:344.100000px;}
.x7_c00303{left:345.300000px;}
.x110_c00303{left:346.650000px;}
.x14d_c00303{left:348.450000px;}
.x1e_c00303{left:350.100000px;}
.x78_c00303{left:351.750000px;}
.x13_c00303{left:353.550000px;}
.xa8_c00303{left:355.200000px;}
.x57_c00303{left:356.700000px;}
.xdc_c00303{left:358.800000px;}
.x4f_c00303{left:360.150000px;}
.x107_c00303{left:362.100000px;}
.x144_c00303{left:363.150000px;}
.xb0_c00303{left:364.200000px;}
.x39_c00303{left:365.400000px;}
.x8_c00303{left:367.650000px;}
.x6a_c00303{left:368.700000px;}
.x61_c00303{left:371.700000px;}
.xfb_c00303{left:373.350000px;}
.x14c_c00303{left:374.550000px;}
.xfe_c00303{left:376.200000px;}
.x14_c00303{left:378.750000px;}
.x2c_c00303{left:380.250000px;}
.x139_c00303{left:383.250000px;}
.x9_c00303{left:385.650000px;}
.x3a_c00303{left:387.750000px;}
.x74_c00303{left:388.800000px;}
.x79_c00303{left:390.600000px;}
.x9e_c00303{left:393.900000px;}
.x43_c00303{left:397.200000px;}
.xff_c00303{left:398.850000px;}
.x13e_c00303{left:399.900000px;}
.x83_c00303{left:402.600000px;}
.x9f_c00303{left:405.000000px;}
.x2d_c00303{left:406.200000px;}
.xa5_c00303{left:407.850000px;}
.x8e_c00303{left:409.650000px;}
.x7a_c00303{left:411.150000px;}
.x58_c00303{left:415.050000px;}
.x1f_c00303{left:416.700000px;}
.x6b_c00303{left:419.400000px;}
.xb3_c00303{left:420.750000px;}
.x84_c00303{left:422.100000px;}
.x2_c00303{left:425.100000px;}
.x2e_c00303{left:427.050000px;}
.x113_c00303{left:428.850000px;}
.x15_c00303{left:430.200000px;}
.xa6_c00303{left:433.800000px;}
.x59_c00303{left:435.150000px;}
.xba_c00303{left:436.500000px;}
.xb1_c00303{left:438.000000px;}
.x50_c00303{left:439.650000px;}
.xd8_c00303{left:442.800000px;}
.x8f_c00303{left:445.650000px;}
.xa_c00303{left:447.150000px;}
.x12a_c00303{left:448.350000px;}
.x100_c00303{left:450.000000px;}
.xa9_c00303{left:451.650000px;}
.x62_c00303{left:452.700000px;}
.xb4_c00303{left:454.200000px;}
.x51_c00303{left:456.150000px;}
.x85_c00303{left:457.350000px;}
.xa0_c00303{left:459.300000px;}
.xbb_c00303{left:460.950000px;}
.x2f_c00303{left:463.350000px;}
.x114_c00303{left:466.650000px;}
.x20_c00303{left:467.850000px;}
.x12b_c00303{left:469.650000px;}
.xb_c00303{left:471.600000px;}
.xd9_c00303{left:472.800000px;}
.xb5_c00303{left:474.300000px;}
.xf2_c00303{left:475.500000px;}
.x145_c00303{left:478.650000px;}
.xa1_c00303{left:481.200000px;}
.x30_c00303{left:483.150000px;}
.xe9_c00303{left:484.950000px;}
.x16_c00303{left:486.300000px;}
.x6c_c00303{left:488.850000px;}
.x118_c00303{left:490.200000px;}
.x52_c00303{left:492.450000px;}
.x132_c00303{left:493.500000px;}
.x21_c00303{left:494.550000px;}
.x3b_c00303{left:497.550000px;}
.x115_c00303{left:505.500000px;}
.x90_c00303{left:506.850000px;}
.xc_c00303{left:510.150000px;}
.x125_c00303{left:514.050000px;}
.x149_c00303{left:522.750000px;}
.x133_c00303{left:524.850000px;}
.xf9_c00303{left:528.600000px;}
.xbc_c00303{left:529.650000px;}
.xc6_c00303{left:531.450000px;}
.x5a_c00303{left:532.650000px;}
.xd_c00303{left:534.300000px;}
.x22_c00303{left:535.650000px;}
.x13a_c00303{left:538.500000px;}
.x17_c00303{left:542.850000px;}
.xdd_c00303{left:544.500000px;}
.x75_c00303{left:545.550000px;}
.x134_c00303{left:546.750000px;}
.xd2_c00303{left:547.950000px;}
.x86_c00303{left:549.150000px;}
.x18_c00303{left:551.850000px;}
.x14b_c00303{left:554.100000px;}
.xea_c00303{left:555.900000px;}
.x101_c00303{left:558.000000px;}
.x63_c00303{left:559.200000px;}
.x13b_c00303{left:561.900000px;}
.x11d_c00303{left:563.700000px;}
.x6d_c00303{left:565.500000px;}
.x48_c00303{left:568.500000px;}
.x154_c00303{left:569.550000px;}
.xc9_c00303{left:571.050000px;}
.x119_c00303{left:573.600000px;}
.xc7_c00303{left:575.400000px;}
.x102_c00303{left:576.750000px;}
.x7b_c00303{left:577.800000px;}
.x6e_c00303{left:578.850000px;}
.x91_c00303{left:581.100000px;}
.x3c_c00303{left:583.200000px;}
.x49_c00303{left:586.500000px;}
.x44_c00303{left:588.450000px;}
.xbd_c00303{left:589.800000px;}
.x122_c00303{left:591.150000px;}
.x13c_c00303{left:595.050000px;}
.xd5_c00303{left:598.650000px;}
.x11a_c00303{left:600.600000px;}
.x5b_c00303{left:602.100000px;}
.xde_c00303{left:603.150000px;}
.x3d_c00303{left:605.550000px;}
.x23_c00303{left:607.650000px;}
.x11e_c00303{left:608.700000px;}
.xdf_c00303{left:610.650000px;}
.x4a_c00303{left:613.800000px;}
.x6f_c00303{left:615.150000px;}
.x152_c00303{left:616.200000px;}
.x31_c00303{left:617.700000px;}
.xd3_c00303{left:619.650000px;}
.x92_c00303{left:621.450000px;}
.xda_c00303{left:623.100000px;}
.xc1_c00303{left:624.900000px;}
.xe_c00303{left:626.100000px;}
.x32_c00303{left:631.350000px;}
.xcc_c00303{left:632.850000px;}
.x12c_c00303{left:635.400000px;}
.x19_c00303{left:637.500000px;}
.x53_c00303{left:639.600000px;}
.xfc_c00303{left:643.650000px;}
.xd6_c00303{left:644.700000px;}
.xcd_c00303{left:646.950000px;}
.x87_c00303{left:648.450000px;}
.x7c_c00303{left:651.300000px;}
.xf3_c00303{left:653.250000px;}
.xc2_c00303{left:655.200000px;}
.xd7_c00303{left:656.250000px;}
.x103_c00303{left:658.500000px;}
.x24_c00303{left:661.650000px;}
.x11b_c00303{left:662.850000px;}
.xf_c00303{left:664.950000px;}
.x5c_c00303{left:666.150000px;}
.x123_c00303{left:668.550000px;}
.xf5_c00303{left:670.800000px;}
.xbe_c00303{left:671.850000px;}
.x45_c00303{left:674.100000px;}
.x7d_c00303{left:676.800000px;}
.xce_c00303{left:679.350000px;}
.xca_c00303{left:681.150000px;}
.x11c_c00303{left:682.650000px;}
.x11f_c00303{left:684.000000px;}
.xf4_c00303{left:687.150000px;}
.x108_c00303{left:689.550000px;}
.x33_c00303{left:690.750000px;}
.xc3_c00303{left:691.950000px;}
.xeb_c00303{left:693.150000px;}
.x3e_c00303{left:694.800000px;}
.x4b_c00303{left:696.150000px;}
.xe0_c00303{left:697.500000px;}
.xcb_c00303{left:699.450000px;}
.x54_c00303{left:700.800000px;}
.x88_c00303{left:702.750000px;}
.x109_c00303{left:703.950000px;}
.xe1_c00303{left:705.000000px;}
.x93_c00303{left:707.100000px;}
.xbf_c00303{left:709.350000px;}
.x3f_c00303{left:712.500000px;}
.x1a_c00303{left:714.150000px;}
.x14e_c00303{left:715.500000px;}
.x104_c00303{left:717.450000px;}
.x70_c00303{left:719.250000px;}
.x120_c00303{left:723.300000px;}
.x10_c00303{left:725.100000px;}
.x7e_c00303{left:726.750000px;}
.xf6_c00303{left:727.950000px;}
.x10f_c00303{left:729.600000px;}
.xc4_c00303{left:731.850000px;}
.x25_c00303{left:733.350000px;}
.x12d_c00303{left:734.850000px;}
.x155_c00303{left:736.050000px;}
.xec_c00303{left:740.700000px;}
.x89_c00303{left:742.050000px;}
.x94_c00303{left:743.850000px;}
.xf7_c00303{left:744.900000px;}
.x10a_c00303{left:748.050000px;}
.x34_c00303{left:749.850000px;}
.x40_c00303{left:751.050000px;}
.xfd_c00303{left:753.750000px;}
.x1b_c00303{left:757.350000px;}
.x105_c00303{left:758.850000px;}
.x7f_c00303{left:760.200000px;}
.x95_c00303{left:761.550000px;}
.x10b_c00303{left:762.750000px;}
.x121_c00303{left:764.250000px;}
.x135_c00303{left:765.600000px;}
.x8a_c00303{left:766.950000px;}
.x64_c00303{left:768.300000px;}
.x96_c00303{left:770.550000px;}
.x71_c00303{left:771.750000px;}
.x11_c00303{left:773.400000px;}
.x97_c00303{left:777.750000px;}
.xc8_c00303{left:778.800000px;}
.x116_c00303{left:780.150000px;}
.xcf_c00303{left:783.000000px;}
.x136_c00303{left:785.400000px;}
.x41_c00303{left:787.050000px;}
.x1c_c00303{left:788.700000px;}
.x13f_c00303{left:789.900000px;}
.x46_c00303{left:791.400000px;}
.xe2_c00303{left:792.450000px;}
.xed_c00303{left:795.300000px;}
.x10c_c00303{left:796.650000px;}
.x65_c00303{left:797.850000px;}
.x98_c00303{left:799.350000px;}
.x26_c00303{left:800.700000px;}
.x47_c00303{left:802.500000px;}
.xd0_c00303{left:803.850000px;}
.x66_c00303{left:806.100000px;}
.xb6_c00303{left:807.300000px;}
.x137_c00303{left:809.250000px;}
.x111_c00303{left:810.300000px;}
.x12e_c00303{left:813.000000px;}
.x14f_c00303{left:815.550000px;}
.x153_c00303{left:816.600000px;}
.xc0_c00303{left:817.650000px;}
.x72_c00303{left:820.050000px;}
.xd1_c00303{left:822.150000px;}
.x35_c00303{left:823.650000px;}
.xee_c00303{left:825.150000px;}
.xe3_c00303{left:826.650000px;}
.x99_c00303{left:828.900000px;}
.xd4_c00303{left:830.100000px;}
.x27_c00303{left:831.600000px;}
.x80_c00303{left:834.300000px;}
.xc5_c00303{left:837.450000px;}
.x117_c00303{left:840.000000px;}
.x67_c00303{left:843.150000px;}
.x156_c00303{left:845.550000px;}
.x14a_c00303{left:847.050000px;}
.x1d_c00303{left:852.750000px;}
.xef_c00303{left:854.250000px;}
.xe4_c00303{left:855.750000px;}
.x150_c00303{left:860.850000px;}
.x126_c00303{left:862.950000px;}
.x9a_c00303{left:865.950000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws3_c00303{word-spacing:-7.259259pt;}
.ws14_c00303{word-spacing:0.000000pt;}
.ws13_c00303{word-spacing:6.556263pt;}
.ws11_c00303{word-spacing:13.258694pt;}
.wsd_c00303{word-spacing:19.682540pt;}
.ws6_c00303{word-spacing:22.857143pt;}
.ws1_c00303{word-spacing:29.555556pt;}
.wsc_c00303{word-spacing:35.555556pt;}
.ws4_c00303{word-spacing:57.777778pt;}
.ws8_c00303{word-spacing:166.666667pt;}
.ws9_c00303{word-spacing:182.035892pt;}
.ws10_c00303{word-spacing:270.740741pt;}
.ws2_c00303{word-spacing:306.777778pt;}
.ws7_c00303{word-spacing:398.518519pt;}
.ws5_c00303{word-spacing:400.370370pt;}
.ws12_c00303{word-spacing:499.094148pt;}
.wsb_c00303{word-spacing:605.925926pt;}
.ws0_c00303{word-spacing:609.629630pt;}
.wse_c00303{word-spacing:1128.148148pt;}
.wsf_c00303{word-spacing:1572.592593pt;}
.wsa_c00303{word-spacing:3484.628352pt;}
._1_c00303{width:52.698413pt;}
._0_c00303{width:977.037037pt;}
.fs4_c00303{font-size:16.000000pt;}
.fs5_c00303{font-size:26.666667pt;}
.fs9_c00303{font-size:37.333333pt;}
.fs8_c00303{font-size:42.666667pt;}
.fs6_c00303{font-size:48.000000pt;}
.fs3_c00303{font-size:53.333333pt;}
.fs2_c00303{font-size:58.666667pt;}
.fs1_c00303{font-size:64.000000pt;}
.fs0_c00303{font-size:69.333333pt;}
.fs7_c00303{font-size:106.666667pt;}
.y0_c00303{bottom:0.000000pt;}
.y4a_c00303{bottom:167.333333pt;}
.y49_c00303{bottom:182.400000pt;}
.y48_c00303{bottom:184.933333pt;}
.y47_c00303{bottom:195.200000pt;}
.y46_c00303{bottom:198.400000pt;}
.y41_c00303{bottom:214.533333pt;}
.y45_c00303{bottom:220.800000pt;}
.y44_c00303{bottom:225.600000pt;}
.y40_c00303{bottom:231.866667pt;}
.y43_c00303{bottom:240.666667pt;}
.y3f_c00303{bottom:250.133333pt;}
.y42_c00303{bottom:253.733333pt;}
.y3e_c00303{bottom:258.800000pt;}
.y3d_c00303{bottom:265.866667pt;}
.y3c_c00303{bottom:281.466667pt;}
.y3b_c00303{bottom:297.200000pt;}
.y3a_c00303{bottom:316.666667pt;}
.y39_c00303{bottom:331.733333pt;}
.y38_c00303{bottom:350.000000pt;}
.y37_c00303{bottom:363.733333pt;}
.y36_c00303{bottom:379.466667pt;}
.y34_c00303{bottom:388.133333pt;}
.y35_c00303{bottom:399.066667pt;}
.y32_c00303{bottom:404.133333pt;}
.y33_c00303{bottom:415.333333pt;}
.y31_c00303{bottom:420.133333pt;}
.y30_c00303{bottom:441.466667pt;}
.y2f_c00303{bottom:463.600000pt;}
.y2e_c00303{bottom:469.066667pt;}
.y2d_c00303{bottom:481.200000pt;}
.y2c_c00303{bottom:494.266667pt;}
.y2b_c00303{bottom:514.133333pt;}
.y2a_c00303{bottom:521.466667pt;}
.y29_c00303{bottom:542.533333pt;}
.y28_c00303{bottom:553.066667pt;}
.y27_c00303{bottom:568.800000pt;}
.y26_c00303{bottom:573.866667pt;}
.y25_c00303{bottom:582.800000pt;}
.y24_c00303{bottom:594.000000pt;}
.y23_c00303{bottom:616.666667pt;}
.y22_c00303{bottom:632.666667pt;}
.y21_c00303{bottom:642.933333pt;}
.y20_c00303{bottom:655.733333pt;}
.y19_c00303{bottom:671.600000pt;}
.y18_c00303{bottom:687.600000pt;}
.y1f_c00303{bottom:690.533333pt;}
.y17_c00303{bottom:703.333333pt;}
.y1e_c00303{bottom:706.666667pt;}
.y16_c00303{bottom:719.333333pt;}
.y1d_c00303{bottom:722.000000pt;}
.y1c_c00303{bottom:731.866667pt;}
.y15_c00303{bottom:735.333333pt;}
.y1b_c00303{bottom:738.266667pt;}
.y14_c00303{bottom:751.333333pt;}
.y1a_c00303{bottom:761.600000pt;}
.y13_c00303{bottom:766.666667pt;}
.y12_c00303{bottom:797.200000pt;}
.y11_c00303{bottom:798.800000pt;}
.y10_c00303{bottom:814.133333pt;}
.yf_c00303{bottom:832.266667pt;}
.ye_c00303{bottom:847.066667pt;}
.yd_c00303{bottom:853.733333pt;}
.yc_c00303{bottom:863.333333pt;}
.yb_c00303{bottom:877.466667pt;}
.ya_c00303{bottom:887.066667pt;}
.y9_c00303{bottom:894.800000pt;}
.y8_c00303{bottom:898.933333pt;}
.y7_c00303{bottom:916.133333pt;}
.y6_c00303{bottom:932.133333pt;}
.y5_c00303{bottom:948.133333pt;}
.y4_c00303{bottom:964.133333pt;}
.y3_c00303{bottom:979.466667pt;}
.y2_c00303{bottom:995.466667pt;}
.y1_c00303{bottom:1017.866667pt;}
.h6_c00303{height:16.000000pt;}
.h7_c00303{height:26.666667pt;}
.hb_c00303{height:37.333333pt;}
.ha_c00303{height:42.666667pt;}
.h8_c00303{height:48.000000pt;}
.h5_c00303{height:53.333333pt;}
.h4_c00303{height:58.666667pt;}
.h3_c00303{height:64.000000pt;}
.h2_c00303{height:69.333333pt;}
.h9_c00303{height:106.666667pt;}
.h0_c00303{height:1133.119955pt;}
.h1_c00303{height:1133.333333pt;}
.w1_c00303{width:854.666667pt;}
.w0_c00303{width:854.720052pt;}
.x0_c00303{left:0.000000pt;}
.x147_c00303{left:148.933333pt;}
.x138_c00303{left:150.000000pt;}
.xfa_c00303{left:153.733333pt;}
.xe5_c00303{left:156.133333pt;}
.x10d_c00303{left:158.133333pt;}
.x4c_c00303{left:159.600000pt;}
.x1_c00303{left:161.600000pt;}
.x146_c00303{left:162.800000pt;}
.xf8_c00303{left:167.866667pt;}
.x12f_c00303{left:169.466667pt;}
.xa2_c00303{left:170.400000pt;}
.xb7_c00303{left:171.733333pt;}
.x9b_c00303{left:172.800000pt;}
.x5d_c00303{left:173.866667pt;}
.x3_c00303{left:175.066667pt;}
.x28_c00303{left:176.000000pt;}
.x141_c00303{left:178.533333pt;}
.x124_c00303{left:184.000000pt;}
.x129_c00303{left:185.200000pt;}
.x9c_c00303{left:186.266667pt;}
.x8b_c00303{left:188.266667pt;}
.x148_c00303{left:189.333333pt;}
.xad_c00303{left:190.666667pt;}
.x5e_c00303{left:194.400000pt;}
.x130_c00303{left:198.266667pt;}
.x29_c00303{left:200.666667pt;}
.xaa_c00303{left:202.666667pt;}
.xae_c00303{left:204.400000pt;}
.x8c_c00303{left:206.800000pt;}
.x127_c00303{left:209.200000pt;}
.xa3_c00303{left:210.133333pt;}
.x4d_c00303{left:211.466667pt;}
.xe6_c00303{left:213.066667pt;}
.x4_c00303{left:214.400000pt;}
.x151_c00303{left:218.400000pt;}
.xb8_c00303{left:219.733333pt;}
.x81_c00303{left:221.866667pt;}
.x36_c00303{left:223.066667pt;}
.x76_c00303{left:224.666667pt;}
.x13d_c00303{left:225.866667pt;}
.xa7_c00303{left:232.133333pt;}
.x2a_c00303{left:233.333333pt;}
.x5_c00303{left:235.866667pt;}
.x68_c00303{left:238.800000pt;}
.x5f_c00303{left:240.133333pt;}
.x9d_c00303{left:241.333333pt;}
.xf0_c00303{left:242.533333pt;}
.xa4_c00303{left:246.000000pt;}
.x142_c00303{left:248.000000pt;}
.x55_c00303{left:250.533333pt;}
.x128_c00303{left:251.466667pt;}
.x42_c00303{left:254.133333pt;}
.x73_c00303{left:255.200000pt;}
.x12_c00303{left:256.400000pt;}
.x37_c00303{left:257.333333pt;}
.xab_c00303{left:258.266667pt;}
.x60_c00303{left:262.533333pt;}
.x6_c00303{left:266.000000pt;}
.x140_c00303{left:267.866667pt;}
.x77_c00303{left:268.800000pt;}
.x2b_c00303{left:272.666667pt;}
.x106_c00303{left:273.600000pt;}
.x4e_c00303{left:276.666667pt;}
.x131_c00303{left:278.000000pt;}
.xb9_c00303{left:280.266667pt;}
.xe7_c00303{left:281.333333pt;}
.x82_c00303{left:283.200000pt;}
.x56_c00303{left:284.400000pt;}
.x143_c00303{left:287.600000pt;}
.x38_c00303{left:288.666667pt;}
.xac_c00303{left:290.533333pt;}
.xb2_c00303{left:292.400000pt;}
.x10e_c00303{left:294.800000pt;}
.xe8_c00303{left:296.000000pt;}
.x112_c00303{left:297.333333pt;}
.xf1_c00303{left:300.133333pt;}
.xaf_c00303{left:302.000000pt;}
.x8d_c00303{left:303.066667pt;}
.x69_c00303{left:304.400000pt;}
.xdb_c00303{left:305.866667pt;}
.x7_c00303{left:306.933333pt;}
.x110_c00303{left:308.133333pt;}
.x14d_c00303{left:309.733333pt;}
.x1e_c00303{left:311.200000pt;}
.x78_c00303{left:312.666667pt;}
.x13_c00303{left:314.266667pt;}
.xa8_c00303{left:315.733333pt;}
.x57_c00303{left:317.066667pt;}
.xdc_c00303{left:318.933333pt;}
.x4f_c00303{left:320.133333pt;}
.x107_c00303{left:321.866667pt;}
.x144_c00303{left:322.800000pt;}
.xb0_c00303{left:323.733333pt;}
.x39_c00303{left:324.800000pt;}
.x8_c00303{left:326.800000pt;}
.x6a_c00303{left:327.733333pt;}
.x61_c00303{left:330.400000pt;}
.xfb_c00303{left:331.866667pt;}
.x14c_c00303{left:332.933333pt;}
.xfe_c00303{left:334.400000pt;}
.x14_c00303{left:336.666667pt;}
.x2c_c00303{left:338.000000pt;}
.x139_c00303{left:340.666667pt;}
.x9_c00303{left:342.800000pt;}
.x3a_c00303{left:344.666667pt;}
.x74_c00303{left:345.600000pt;}
.x79_c00303{left:347.200000pt;}
.x9e_c00303{left:350.133333pt;}
.x43_c00303{left:353.066667pt;}
.xff_c00303{left:354.533333pt;}
.x13e_c00303{left:355.466667pt;}
.x83_c00303{left:357.866667pt;}
.x9f_c00303{left:360.000000pt;}
.x2d_c00303{left:361.066667pt;}
.xa5_c00303{left:362.533333pt;}
.x8e_c00303{left:364.133333pt;}
.x7a_c00303{left:365.466667pt;}
.x58_c00303{left:368.933333pt;}
.x1f_c00303{left:370.400000pt;}
.x6b_c00303{left:372.800000pt;}
.xb3_c00303{left:374.000000pt;}
.x84_c00303{left:375.200000pt;}
.x2_c00303{left:377.866667pt;}
.x2e_c00303{left:379.600000pt;}
.x113_c00303{left:381.200000pt;}
.x15_c00303{left:382.400000pt;}
.xa6_c00303{left:385.600000pt;}
.x59_c00303{left:386.800000pt;}
.xba_c00303{left:388.000000pt;}
.xb1_c00303{left:389.333333pt;}
.x50_c00303{left:390.800000pt;}
.xd8_c00303{left:393.600000pt;}
.x8f_c00303{left:396.133333pt;}
.xa_c00303{left:397.466667pt;}
.x12a_c00303{left:398.533333pt;}
.x100_c00303{left:400.000000pt;}
.xa9_c00303{left:401.466667pt;}
.x62_c00303{left:402.400000pt;}
.xb4_c00303{left:403.733333pt;}
.x51_c00303{left:405.466667pt;}
.x85_c00303{left:406.533333pt;}
.xa0_c00303{left:408.266667pt;}
.xbb_c00303{left:409.733333pt;}
.x2f_c00303{left:411.866667pt;}
.x114_c00303{left:414.800000pt;}
.x20_c00303{left:415.866667pt;}
.x12b_c00303{left:417.466667pt;}
.xb_c00303{left:419.200000pt;}
.xd9_c00303{left:420.266667pt;}
.xb5_c00303{left:421.600000pt;}
.xf2_c00303{left:422.666667pt;}
.x145_c00303{left:425.466667pt;}
.xa1_c00303{left:427.733333pt;}
.x30_c00303{left:429.466667pt;}
.xe9_c00303{left:431.066667pt;}
.x16_c00303{left:432.266667pt;}
.x6c_c00303{left:434.533333pt;}
.x118_c00303{left:435.733333pt;}
.x52_c00303{left:437.733333pt;}
.x132_c00303{left:438.666667pt;}
.x21_c00303{left:439.600000pt;}
.x3b_c00303{left:442.266667pt;}
.x115_c00303{left:449.333333pt;}
.x90_c00303{left:450.533333pt;}
.xc_c00303{left:453.466667pt;}
.x125_c00303{left:456.933333pt;}
.x149_c00303{left:464.666667pt;}
.x133_c00303{left:466.533333pt;}
.xf9_c00303{left:469.866667pt;}
.xbc_c00303{left:470.800000pt;}
.xc6_c00303{left:472.400000pt;}
.x5a_c00303{left:473.466667pt;}
.xd_c00303{left:474.933333pt;}
.x22_c00303{left:476.133333pt;}
.x13a_c00303{left:478.666667pt;}
.x17_c00303{left:482.533333pt;}
.xdd_c00303{left:484.000000pt;}
.x75_c00303{left:484.933333pt;}
.x134_c00303{left:486.000000pt;}
.xd2_c00303{left:487.066667pt;}
.x86_c00303{left:488.133333pt;}
.x18_c00303{left:490.533333pt;}
.x14b_c00303{left:492.533333pt;}
.xea_c00303{left:494.133333pt;}
.x101_c00303{left:496.000000pt;}
.x63_c00303{left:497.066667pt;}
.x13b_c00303{left:499.466667pt;}
.x11d_c00303{left:501.066667pt;}
.x6d_c00303{left:502.666667pt;}
.x48_c00303{left:505.333333pt;}
.x154_c00303{left:506.266667pt;}
.xc9_c00303{left:507.600000pt;}
.x119_c00303{left:509.866667pt;}
.xc7_c00303{left:511.466667pt;}
.x102_c00303{left:512.666667pt;}
.x7b_c00303{left:513.600000pt;}
.x6e_c00303{left:514.533333pt;}
.x91_c00303{left:516.533333pt;}
.x3c_c00303{left:518.400000pt;}
.x49_c00303{left:521.333333pt;}
.x44_c00303{left:523.066667pt;}
.xbd_c00303{left:524.266667pt;}
.x122_c00303{left:525.466667pt;}
.x13c_c00303{left:528.933333pt;}
.xd5_c00303{left:532.133333pt;}
.x11a_c00303{left:533.866667pt;}
.x5b_c00303{left:535.200000pt;}
.xde_c00303{left:536.133333pt;}
.x3d_c00303{left:538.266667pt;}
.x23_c00303{left:540.133333pt;}
.x11e_c00303{left:541.066667pt;}
.xdf_c00303{left:542.800000pt;}
.x4a_c00303{left:545.600000pt;}
.x6f_c00303{left:546.800000pt;}
.x152_c00303{left:547.733333pt;}
.x31_c00303{left:549.066667pt;}
.xd3_c00303{left:550.800000pt;}
.x92_c00303{left:552.400000pt;}
.xda_c00303{left:553.866667pt;}
.xc1_c00303{left:555.466667pt;}
.xe_c00303{left:556.533333pt;}
.x32_c00303{left:561.200000pt;}
.xcc_c00303{left:562.533333pt;}
.x12c_c00303{left:564.800000pt;}
.x19_c00303{left:566.666667pt;}
.x53_c00303{left:568.533333pt;}
.xfc_c00303{left:572.133333pt;}
.xd6_c00303{left:573.066667pt;}
.xcd_c00303{left:575.066667pt;}
.x87_c00303{left:576.400000pt;}
.x7c_c00303{left:578.933333pt;}
.xf3_c00303{left:580.666667pt;}
.xc2_c00303{left:582.400000pt;}
.xd7_c00303{left:583.333333pt;}
.x103_c00303{left:585.333333pt;}
.x24_c00303{left:588.133333pt;}
.x11b_c00303{left:589.200000pt;}
.xf_c00303{left:591.066667pt;}
.x5c_c00303{left:592.133333pt;}
.x123_c00303{left:594.266667pt;}
.xf5_c00303{left:596.266667pt;}
.xbe_c00303{left:597.200000pt;}
.x45_c00303{left:599.200000pt;}
.x7d_c00303{left:601.600000pt;}
.xce_c00303{left:603.866667pt;}
.xca_c00303{left:605.466667pt;}
.x11c_c00303{left:606.800000pt;}
.x11f_c00303{left:608.000000pt;}
.xf4_c00303{left:610.800000pt;}
.x108_c00303{left:612.933333pt;}
.x33_c00303{left:614.000000pt;}
.xc3_c00303{left:615.066667pt;}
.xeb_c00303{left:616.133333pt;}
.x3e_c00303{left:617.600000pt;}
.x4b_c00303{left:618.800000pt;}
.xe0_c00303{left:620.000000pt;}
.xcb_c00303{left:621.733333pt;}
.x54_c00303{left:622.933333pt;}
.x88_c00303{left:624.666667pt;}
.x109_c00303{left:625.733333pt;}
.xe1_c00303{left:626.666667pt;}
.x93_c00303{left:628.533333pt;}
.xbf_c00303{left:630.533333pt;}
.x3f_c00303{left:633.333333pt;}
.x1a_c00303{left:634.800000pt;}
.x14e_c00303{left:636.000000pt;}
.x104_c00303{left:637.733333pt;}
.x70_c00303{left:639.333333pt;}
.x120_c00303{left:642.933333pt;}
.x10_c00303{left:644.533333pt;}
.x7e_c00303{left:646.000000pt;}
.xf6_c00303{left:647.066667pt;}
.x10f_c00303{left:648.533333pt;}
.xc4_c00303{left:650.533333pt;}
.x25_c00303{left:651.866667pt;}
.x12d_c00303{left:653.200000pt;}
.x155_c00303{left:654.266667pt;}
.xec_c00303{left:658.400000pt;}
.x89_c00303{left:659.600000pt;}
.x94_c00303{left:661.200000pt;}
.xf7_c00303{left:662.133333pt;}
.x10a_c00303{left:664.933333pt;}
.x34_c00303{left:666.533333pt;}
.x40_c00303{left:667.600000pt;}
.xfd_c00303{left:670.000000pt;}
.x1b_c00303{left:673.200000pt;}
.x105_c00303{left:674.533333pt;}
.x7f_c00303{left:675.733333pt;}
.x95_c00303{left:676.933333pt;}
.x10b_c00303{left:678.000000pt;}
.x121_c00303{left:679.333333pt;}
.x135_c00303{left:680.533333pt;}
.x8a_c00303{left:681.733333pt;}
.x64_c00303{left:682.933333pt;}
.x96_c00303{left:684.933333pt;}
.x71_c00303{left:686.000000pt;}
.x11_c00303{left:687.466667pt;}
.x97_c00303{left:691.333333pt;}
.xc8_c00303{left:692.266667pt;}
.x116_c00303{left:693.466667pt;}
.xcf_c00303{left:696.000000pt;}
.x136_c00303{left:698.133333pt;}
.x41_c00303{left:699.600000pt;}
.x1c_c00303{left:701.066667pt;}
.x13f_c00303{left:702.133333pt;}
.x46_c00303{left:703.466667pt;}
.xe2_c00303{left:704.400000pt;}
.xed_c00303{left:706.933333pt;}
.x10c_c00303{left:708.133333pt;}
.x65_c00303{left:709.200000pt;}
.x98_c00303{left:710.533333pt;}
.x26_c00303{left:711.733333pt;}
.x47_c00303{left:713.333333pt;}
.xd0_c00303{left:714.533333pt;}
.x66_c00303{left:716.533333pt;}
.xb6_c00303{left:717.600000pt;}
.x137_c00303{left:719.333333pt;}
.x111_c00303{left:720.266667pt;}
.x12e_c00303{left:722.666667pt;}
.x14f_c00303{left:724.933333pt;}
.x153_c00303{left:725.866667pt;}
.xc0_c00303{left:726.800000pt;}
.x72_c00303{left:728.933333pt;}
.xd1_c00303{left:730.800000pt;}
.x35_c00303{left:732.133333pt;}
.xee_c00303{left:733.466667pt;}
.xe3_c00303{left:734.800000pt;}
.x99_c00303{left:736.800000pt;}
.xd4_c00303{left:737.866667pt;}
.x27_c00303{left:739.200000pt;}
.x80_c00303{left:741.600000pt;}
.xc5_c00303{left:744.400000pt;}
.x117_c00303{left:746.666667pt;}
.x67_c00303{left:749.466667pt;}
.x156_c00303{left:751.600000pt;}
.x14a_c00303{left:752.933333pt;}
.x1d_c00303{left:758.000000pt;}
.xef_c00303{left:759.333333pt;}
.xe4_c00303{left:760.666667pt;}
.x150_c00303{left:765.200000pt;}
.x126_c00303{left:767.066667pt;}
.x9a_c00303{left:769.733333pt;}
}





/* 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_c00304 {
    display:none;
  }
  .loading-indicator_c00304.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00304 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_c00304 { 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_c00304" -> "#page-container .classname_c00304")
 */
.pf_c00304 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00304 { /* 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_c00304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00304 { /* 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_c00304 { /* 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_c00304 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00304 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00304 {overflow:visible;}
  }
}
.c_c00304 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00304 { /* 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_c00304:after { /* webkit #35443 */
  content: '';
}
.t_c00304:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00304 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 */
}
.__c00304 { /* 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_c00304 { /* info for Javascript */
  display:none;
}
.l_c00304 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00304 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00304 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00304: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_c00304 {
    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_c00304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00304.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_c00304 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00304;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.000000;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;}
.mff_c00304{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00304{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m93_c00304{transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00304{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00304{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mef_c00304{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m49_c00304{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m91_c00304{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00304{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m86_c00304{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00304{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00304{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00304{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00304{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.med_c00304{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00304{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m95_c00304{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.maa_c00304{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m71_c00304{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00304{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m96_c00304{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.mee_c00304{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mab_c00304{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00304{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m122_c00304{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00304{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00304{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00304{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m94_c00304{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00304{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m60_c00304{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00304{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m54_c00304{transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);}
.m112_c00304{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00304{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m88_c00304{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00304{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m57_c00304{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00304{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.me0_c00304{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m19_c00304{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00304{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00304{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m43_c00304{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00304{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00304{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mea_c00304{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00304{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me3_c00304{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m52_c00304{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m111_c00304{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00304{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m21_c00304{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00304{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00304{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00304{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m12_c00304{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00304{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m16_c00304{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m92_c00304{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00304{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00304{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m97_c00304{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md_c00304{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m22_c00304{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9_c00304{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m37_c00304{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00304{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00304{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00304{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m39_c00304{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md3_c00304{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m20_c00304{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7_c00304{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00304{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m25_c00304{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00304{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m56_c00304{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md1_c00304{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m38_c00304{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00304{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m18_c00304{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8_c00304{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m26_c00304{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00304{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00304{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma_c00304{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00304{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00304{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m35_c00304{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m55_c00304{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m53_c00304{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00304{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m70_c00304{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m110_c00304{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00304{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m100_c00304{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00304{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mf_c00304{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m41_c00304{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00304{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m24_c00304{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00304{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00304{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m119_c00304{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m59_c00304{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00304{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m11_c00304{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me5_c00304{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00304{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m23_c00304{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m67_c00304{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m66_c00304{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m31_c00304{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00304{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00304{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m103_c00304{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m51_c00304{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m116_c00304{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00304{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md0_c00304{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00304{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00304{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m109_c00304{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m129_c00304{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00304{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mba_c00304{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m40_c00304{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.md4_c00304{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00304{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00304{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.meb_c00304{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m65_c00304{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00304{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00304{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m105_c00304{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m14_c00304{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m83_c00304{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00304{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00304{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mca_c00304{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mce_c00304{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4_c00304{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m113_c00304{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m15_c00304{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00304{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m50_c00304{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00304{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00304{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m6_c00304{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00304{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m81_c00304{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00304{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m58_c00304{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m127_c00304{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00304{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00304{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00304{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me1_c00304{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00304{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m126_c00304{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00304{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m124_c00304{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mda_c00304{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m125_c00304{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00304{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me2_c00304{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m128_c00304{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m48_c00304{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m61_c00304{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m68_c00304{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5_c00304{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m63_c00304{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00304{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00304{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m17_c00304{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m29_c00304{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00304{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00304{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.maf_c00304{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00304{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00304{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m80_c00304{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00304{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00304{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00304{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m85_c00304{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m117_c00304{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m44_c00304{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m72_c00304{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m46_c00304{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m62_c00304{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00304{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m84_c00304{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00304{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m33_c00304{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m73_c00304{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00304{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m98_c00304{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m87_c00304{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00304{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m47_c00304{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md6_c00304{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m10_c00304{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mac_c00304{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00304{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00304{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m82_c00304{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m74_c00304{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m45_c00304{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m79_c00304{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m102_c00304{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00304{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me9_c00304{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m118_c00304{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m99_c00304{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.md5_c00304{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00304{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m32_c00304{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m36_c00304{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00304{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00304{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m123_c00304{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m28_c00304{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00304{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00304{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00304{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m30_c00304{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00304{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m64_c00304{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me8_c00304{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md9_c00304{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00304{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m101_c00304{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00304{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md7_c00304{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m90_c00304{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00304{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00304{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mae_c00304{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00304{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00304{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m89_c00304{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m78_c00304{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);}
.m2c_c00304{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00304{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00304{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00304{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00304{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00304{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00304{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m27_c00304{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2_c00304{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00304{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00304{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00304{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m69_c00304{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.mad_c00304{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me4_c00304{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00304{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00304{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00304{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mc_c00304{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mec_c00304{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m77_c00304{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me7_c00304{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00304{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00304{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00304{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00304{transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00304{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00304{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m107_c00304{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m34_c00304{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00304{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mde_c00304{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m42_c00304{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m114_c00304{transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);}
.md2_c00304{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m76_c00304{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00304{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m104_c00304{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me_c00304{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00304{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb_c00304{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00304{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me6_c00304{transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00304{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m75_c00304{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.md8_c00304{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m121_c00304{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00304{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m115_c00304{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00304{transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00304{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m106_c00304{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m120_c00304{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m108_c00304{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00304{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls2_c00304{letter-spacing:0.000000px;}
.ls0_c00304{letter-spacing:44.571429px;}
.ls1_c00304{letter-spacing:55.714286px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{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__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c00304{word-spacing:-85.714286px;}
.ws3_c00304{word-spacing:-68.571429px;}
.ws0_c00304{word-spacing:-4.390244px;}
.ws17_c00304{word-spacing:-1.842105px;}
.wsf_c00304{word-spacing:-1.676218px;}
.ws19_c00304{word-spacing:0.000000px;}
.wsa_c00304{word-spacing:0.363057px;}
.ws11_c00304{word-spacing:7.471338px;}
.ws18_c00304{word-spacing:8.750000px;}
.wsb_c00304{word-spacing:11.652921px;}
.ws10_c00304{word-spacing:11.666667px;}
.wsc_c00304{word-spacing:12.500000px;}
.ws6_c00304{word-spacing:15.000000px;}
.ws9_c00304{word-spacing:16.521490px;}
.ws15_c00304{word-spacing:16.785714px;}
.ws1_c00304{word-spacing:20.571429px;}
.ws4_c00304{word-spacing:22.142857px;}
.wse_c00304{word-spacing:23.211796px;}
.ws16_c00304{word-spacing:24.750000px;}
.ws5_c00304{word-spacing:25.714286px;}
.ws13_c00304{word-spacing:29.583333px;}
.ws7_c00304{word-spacing:32.360656px;}
.ws8_c00304{word-spacing:38.262295px;}
.ws14_c00304{word-spacing:40.000000px;}
.ws2_c00304{word-spacing:40.333333px;}
.wsd_c00304{word-spacing:45.375000px;}
._2_c00304{margin-left:-55.714286px;}
._0_c00304{margin-left:-44.571429px;}
._6_c00304{width:52.142857px;}
._1_c00304{width:59.285714px;}
._7_c00304{width:64.642857px;}
._5_c00304{width:70.000000px;}
._3_c00304{width:74.166667px;}
._4_c00304{width:80.416667px;}
._8_c00304{width:582.500000px;}
.fc0_c00304{color:transparent;}
.fs8_c00304{font-size:24.000000px;}
.fs2_c00304{font-size:30.000000px;}
.fs9_c00304{font-size:36.000000px;}
.fs7_c00304{font-size:48.000000px;}
.fs5_c00304{font-size:54.000000px;}
.fs4_c00304{font-size:60.000000px;}
.fs1_c00304{font-size:66.000000px;}
.fs3_c00304{font-size:72.000000px;}
.fs6_c00304{font-size:78.000000px;}
.fs0_c00304{font-size:102.000000px;}
.y0_c00304{bottom:0.000000px;}
.y6a_c00304{bottom:183.900000px;}
.y69_c00304{bottom:199.050000px;}
.y61_c00304{bottom:210.900000px;}
.y68_c00304{bottom:212.400000px;}
.y67_c00304{bottom:227.100000px;}
.y60_c00304{bottom:229.050000px;}
.y66_c00304{bottom:241.500000px;}
.y5f_c00304{bottom:247.050000px;}
.y2_c00304{bottom:255.600000px;}
.y5e_c00304{bottom:265.350000px;}
.y65_c00304{bottom:270.300000px;}
.y5d_c00304{bottom:283.350000px;}
.y64_c00304{bottom:291.900000px;}
.y5c_c00304{bottom:304.950000px;}
.y63_c00304{bottom:306.000000px;}
.y5b_c00304{bottom:308.100000px;}
.y62_c00304{bottom:316.500000px;}
.y4d_c00304{bottom:321.450000px;}
.y5a_c00304{bottom:322.650000px;}
.y4c_c00304{bottom:336.600000px;}
.y59_c00304{bottom:337.050000px;}
.y58_c00304{bottom:351.750000px;}
.y4b_c00304{bottom:354.600000px;}
.y4a_c00304{bottom:372.300000px;}
.y57_c00304{bottom:375.900000px;}
.y49_c00304{bottom:390.000000px;}
.y56_c00304{bottom:397.800000px;}
.y48_c00304{bottom:407.700000px;}
.y55_c00304{bottom:410.700000px;}
.y47_c00304{bottom:425.400000px;}
.y53_c00304{bottom:437.700000px;}
.y46_c00304{bottom:443.400000px;}
.y52_c00304{bottom:455.700000px;}
.y45_c00304{bottom:461.100000px;}
.y51_c00304{bottom:473.400000px;}
.y44_c00304{bottom:478.800000px;}
.y50_c00304{bottom:491.100000px;}
.y43_c00304{bottom:499.650000px;}
.y54_c00304{bottom:500.100000px;}
.y4f_c00304{bottom:513.600000px;}
.y42_c00304{bottom:514.050000px;}
.y41_c00304{bottom:528.450000px;}
.y4e_c00304{bottom:531.300000px;}
.y40_c00304{bottom:544.350000px;}
.y34_c00304{bottom:558.300000px;}
.y3f_c00304{bottom:563.100000px;}
.y33_c00304{bottom:580.650000px;}
.y3e_c00304{bottom:581.400000px;}
.y3d_c00304{bottom:599.100000px;}
.y32_c00304{bottom:603.150000px;}
.y3c_c00304{bottom:617.400000px;}
.y31_c00304{bottom:621.150000px;}
.y3b_c00304{bottom:635.100000px;}
.y30_c00304{bottom:639.150000px;}
.y2f_c00304{bottom:656.850000px;}
.y3a_c00304{bottom:657.000000px;}
.y2e_c00304{bottom:674.550000px;}
.y39_c00304{bottom:675.000000px;}
.y2d_c00304{bottom:692.550000px;}
.y38_c00304{bottom:693.000000px;}
.y2c_c00304{bottom:710.550000px;}
.y37_c00304{bottom:714.900000px;}
.y2b_c00304{bottom:728.550000px;}
.y36_c00304{bottom:732.600000px;}
.y2a_c00304{bottom:746.250000px;}
.y35_c00304{bottom:763.500000px;}
.y29_c00304{bottom:764.250000px;}
.y28_c00304{bottom:784.500000px;}
.y27_c00304{bottom:812.250000px;}
.y26_c00304{bottom:813.300000px;}
.y1a_c00304{bottom:821.250000px;}
.y25_c00304{bottom:827.550000px;}
.y24_c00304{bottom:838.350000px;}
.y19_c00304{bottom:838.950000px;}
.y23_c00304{bottom:844.500000px;}
.y18_c00304{bottom:856.650000px;}
.y22_c00304{bottom:862.050000px;}
.y17_c00304{bottom:874.650000px;}
.y21_c00304{bottom:879.750000px;}
.y16_c00304{bottom:892.650000px;}
.y20_c00304{bottom:897.750000px;}
.y15_c00304{bottom:910.650000px;}
.y1f_c00304{bottom:915.450000px;}
.y14_c00304{bottom:928.350000px;}
.y1e_c00304{bottom:937.800000px;}
.y13_c00304{bottom:946.350000px;}
.y1d_c00304{bottom:955.500000px;}
.y12_c00304{bottom:964.050000px;}
.y1c_c00304{bottom:977.700000px;}
.y11_c00304{bottom:982.050000px;}
.y1b_c00304{bottom:995.700000px;}
.y10_c00304{bottom:1000.050000px;}
.yf_c00304{bottom:1021.500000px;}
.y9_c00304{bottom:1022.100000px;}
.ye_c00304{bottom:1039.500000px;}
.y8_c00304{bottom:1040.100000px;}
.yd_c00304{bottom:1057.500000px;}
.y7_c00304{bottom:1062.300000px;}
.yc_c00304{bottom:1075.200000px;}
.y6_c00304{bottom:1080.300000px;}
.yb_c00304{bottom:1092.900000px;}
.y5_c00304{bottom:1098.000000px;}
.ya_c00304{bottom:1115.250000px;}
.y4_c00304{bottom:1116.000000px;}
.y1_c00304{bottom:1163.850000px;}
.y3_c00304{bottom:1184.100000px;}
.ha_c00304{height:24.000000px;}
.h4_c00304{height:30.000000px;}
.hb_c00304{height:36.000000px;}
.h9_c00304{height:48.000000px;}
.h7_c00304{height:54.000000px;}
.h6_c00304{height:60.000000px;}
.h3_c00304{height:66.000000px;}
.h5_c00304{height:72.000000px;}
.h8_c00304{height:78.000000px;}
.h2_c00304{height:102.000000px;}
.h1_c00304{height:1269.750000px;}
.h0_c00304{height:1270.080048px;}
.w1_c00304{width:961.500000px;}
.w0_c00304{width:961.560058px;}
.x0_c00304{left:0.000000px;}
.x3_c00304{left:72.750000px;}
.x145_c00304{left:76.350000px;}
.x104_c00304{left:78.150000px;}
.x56_c00304{left:79.950000px;}
.x142_c00304{left:92.550000px;}
.x107_c00304{left:93.600000px;}
.x101_c00304{left:95.550000px;}
.x6c_c00304{left:97.500000px;}
.x32_c00304{left:98.700000px;}
.x10f_c00304{left:107.250000px;}
.xfd_c00304{left:112.650000px;}
.x143_c00304{left:113.850000px;}
.x14a_c00304{left:115.500000px;}
.x39_c00304{left:117.300000px;}
.x84_c00304{left:118.950000px;}
.x4_c00304{left:121.350000px;}
.xfa_c00304{left:122.850000px;}
.xc0_c00304{left:125.250000px;}
.x14d_c00304{left:126.450000px;}
.x144_c00304{left:127.950000px;}
.x69_c00304{left:129.150000px;}
.x87_c00304{left:130.950000px;}
.x46_c00304{left:132.600000px;}
.x5e_c00304{left:133.650000px;}
.x10c_c00304{left:135.000000px;}
.x4c_c00304{left:137.400000px;}
.x57_c00304{left:139.650000px;}
.x7a_c00304{left:141.150000px;}
.xef_c00304{left:143.250000px;}
.xc7_c00304{left:144.300000px;}
.x5_c00304{left:145.500000px;}
.x6d_c00304{left:146.850000px;}
.x10d_c00304{left:149.850000px;}
.x108_c00304{left:151.950000px;}
.xf1_c00304{left:154.050000px;}
.x3a_c00304{left:155.100000px;}
.x75_c00304{left:156.900000px;}
.x5f_c00304{left:158.550000px;}
.x113_c00304{left:159.900000px;}
.x146_c00304{left:160.950000px;}
.x118_c00304{left:163.350000px;}
.xf2_c00304{left:164.550000px;}
.x52_c00304{left:166.200000px;}
.x41_c00304{left:167.250000px;}
.x33_c00304{left:168.900000px;}
.xfe_c00304{left:170.550000px;}
.x10e_c00304{left:172.200000px;}
.x122_c00304{left:174.150000px;}
.x71_c00304{left:176.100000px;}
.x58_c00304{left:177.450000px;}
.x3b_c00304{left:178.800000px;}
.xc1_c00304{left:181.350000px;}
.x88_c00304{left:182.700000px;}
.x119_c00304{left:183.900000px;}
.xf6_c00304{left:184.950000px;}
.x81_c00304{left:186.900000px;}
.x103_c00304{left:188.550000px;}
.xc8_c00304{left:189.600000px;}
.x6_c00304{left:191.250000px;}
.x150_c00304{left:193.200000px;}
.x76_c00304{left:195.000000px;}
.x147_c00304{left:196.650000px;}
.x109_c00304{left:197.700000px;}
.x4d_c00304{left:199.650000px;}
.x59_c00304{left:201.150000px;}
.x116_c00304{left:203.250000px;}
.x34_c00304{left:204.900000px;}
.x47_c00304{left:206.400000px;}
.x64_c00304{left:210.150000px;}
.x77_c00304{left:212.250000px;}
.x7b_c00304{left:214.200000px;}
.x111_c00304{left:215.250000px;}
.x7_c00304{left:217.200000px;}
.x4e_c00304{left:220.200000px;}
.x60_c00304{left:222.750000px;}
.x11d_c00304{left:224.100000px;}
.x6e_c00304{left:226.050000px;}
.x78_c00304{left:227.700000px;}
.x120_c00304{left:229.650000px;}
.xf3_c00304{left:230.700000px;}
.x3c_c00304{left:232.500000px;}
.xf0_c00304{left:234.300000px;}
.x53_c00304{left:235.650000px;}
.x115_c00304{left:236.700000px;}
.x102_c00304{left:237.750000px;}
.x14b_c00304{left:238.950000px;}
.xf4_c00304{left:240.450000px;}
.x42_c00304{left:241.800000px;}
.x48_c00304{left:243.150000px;}
.x10a_c00304{left:244.500000px;}
.x7c_c00304{left:245.550000px;}
.xc9_c00304{left:250.050000px;}
.x54_c00304{left:251.850000px;}
.x35_c00304{left:255.600000px;}
.x65_c00304{left:259.500000px;}
.x114_c00304{left:260.700000px;}
.xff_c00304{left:261.900000px;}
.x3d_c00304{left:263.400000px;}
.x8_c00304{left:265.500000px;}
.x85_c00304{left:267.750000px;}
.x36_c00304{left:269.250000px;}
.x14e_c00304{left:270.300000px;}
.x7d_c00304{left:272.250000px;}
.x49_c00304{left:274.800000px;}
.x5a_c00304{left:276.750000px;}
.x121_c00304{left:280.050000px;}
.x117_c00304{left:282.750000px;}
.x55_c00304{left:283.950000px;}
.x43_c00304{left:285.000000px;}
.x14c_c00304{left:287.250000px;}
.xf7_c00304{left:289.050000px;}
.x7e_c00304{left:292.800000px;}
.x37_c00304{left:295.200000px;}
.x61_c00304{left:297.300000px;}
.x11a_c00304{left:299.100000px;}
.x6a_c00304{left:300.150000px;}
.xca_c00304{left:301.200000px;}
.x79_c00304{left:303.750000px;}
.x3e_c00304{left:306.600000px;}
.x4f_c00304{left:308.100000px;}
.x66_c00304{left:311.250000px;}
.xf8_c00304{left:313.950000px;}
.xf5_c00304{left:315.000000px;}
.x4a_c00304{left:316.950000px;}
.x105_c00304{left:318.300000px;}
.x10b_c00304{left:320.100000px;}
.x5b_c00304{left:322.050000px;}
.x1_c00304{left:323.250000px;}
.x82_c00304{left:325.200000px;}
.x148_c00304{left:329.400000px;}
.x67_c00304{left:332.550000px;}
.x72_c00304{left:334.050000px;}
.x3f_c00304{left:335.700000px;}
.xfb_c00304{left:336.900000px;}
.x5c_c00304{left:338.550000px;}
.xc_c00304{left:340.200000px;}
.x11e_c00304{left:341.850000px;}
.x83_c00304{left:344.700000px;}
.x112_c00304{left:346.050000px;}
.x7f_c00304{left:347.100000px;}
.x44_c00304{left:348.300000px;}
.x9_c00304{left:349.350000px;}
.x14f_c00304{left:350.550000px;}
.x6f_c00304{left:353.550000px;}
.x149_c00304{left:354.600000px;}
.x50_c00304{left:355.950000px;}
.x11b_c00304{left:357.450000px;}
.x11f_c00304{left:358.800000px;}
.x5d_c00304{left:364.500000px;}
.x68_c00304{left:366.750000px;}
.x45_c00304{left:369.150000px;}
.x100_c00304{left:370.500000px;}
.x70_c00304{left:373.350000px;}
.xa_c00304{left:374.550000px;}
.x62_c00304{left:376.200000px;}
.x51_c00304{left:377.550000px;}
.x86_c00304{left:382.500000px;}
.x73_c00304{left:384.150000px;}
.x80_c00304{left:390.000000px;}
.xfc_c00304{left:392.400000px;}
.x40_c00304{left:393.600000px;}
.x38_c00304{left:394.950000px;}
.xb_c00304{left:396.450000px;}
.x63_c00304{left:397.500000px;}
.x106_c00304{left:400.350000px;}
.x74_c00304{left:402.450000px;}
.x11c_c00304{left:403.950000px;}
.xf9_c00304{left:405.000000px;}
.x6b_c00304{left:406.350000px;}
.x110_c00304{left:409.650000px;}
.x4b_c00304{left:414.150000px;}
.x151_c00304{left:432.750000px;}
.x12d_c00304{left:434.550000px;}
.x123_c00304{left:436.350000px;}
.x89_c00304{left:437.700000px;}
.xd_c00304{left:439.200000px;}
.x140_c00304{left:447.150000px;}
.x131_c00304{left:449.550000px;}
.x139_c00304{left:451.650000px;}
.x93_c00304{left:452.850000px;}
.xa1_c00304{left:453.900000px;}
.x2d_c00304{left:455.700000px;}
.x17_c00304{left:456.900000px;}
.xc2_c00304{left:460.050000px;}
.x135_c00304{left:462.900000px;}
.xcb_c00304{left:465.450000px;}
.xab_c00304{left:467.550000px;}
.xb5_c00304{left:470.850000px;}
.x8e_c00304{left:473.700000px;}
.xd6_c00304{left:475.500000px;}
.x132_c00304{left:478.350000px;}
.xb0_c00304{left:480.600000px;}
.x8a_c00304{left:481.950000px;}
.xcc_c00304{left:487.800000px;}
.x9a_c00304{left:489.000000px;}
.xe9_c00304{left:490.200000px;}
.x152_c00304{left:492.150000px;}
.x18_c00304{left:493.650000px;}
.xb1_c00304{left:495.750000px;}
.xe_c00304{left:497.850000px;}
.xed_c00304{left:499.350000px;}
.x129_c00304{left:501.600000px;}
.x13d_c00304{left:503.700000px;}
.x94_c00304{left:504.750000px;}
.xa2_c00304{left:505.800000px;}
.x27_c00304{left:507.600000px;}
.xcd_c00304{left:508.650000px;}
.xd7_c00304{left:510.450000px;}
.xe5_c00304{left:511.500000px;}
.x13e_c00304{left:513.750000px;}
.xf_c00304{left:515.100000px;}
.x20_c00304{left:516.300000px;}
.x124_c00304{left:517.650000px;}
.xd4_c00304{left:520.500000px;}
.xac_c00304{left:521.550000px;}
.xd2_c00304{left:523.350000px;}
.xb6_c00304{left:524.850000px;}
.x2e_c00304{left:526.950000px;}
.xa5_c00304{left:528.900000px;}
.x13f_c00304{left:530.700000px;}
.xdb_c00304{left:532.950000px;}
.xe6_c00304{left:534.600000px;}
.xa3_c00304{left:536.400000px;}
.x10_c00304{left:537.750000px;}
.x12c_c00304{left:540.150000px;}
.xd5_c00304{left:541.800000px;}
.x2f_c00304{left:544.650000px;}
.xb2_c00304{left:546.150000px;}
.xa4_c00304{left:548.700000px;}
.xd8_c00304{left:550.050000px;}
.x13a_c00304{left:551.400000px;}
.x19_c00304{left:553.050000px;}
.x8f_c00304{left:555.450000px;}
.x13c_c00304{left:558.450000px;}
.xa6_c00304{left:561.000000px;}
.xde_c00304{left:562.500000px;}
.xa0_c00304{left:566.250000px;}
.xce_c00304{left:567.450000px;}
.x95_c00304{left:569.250000px;}
.x136_c00304{left:570.900000px;}
.xee_c00304{left:572.250000px;}
.xcf_c00304{left:574.650000px;}
.x125_c00304{left:575.700000px;}
.x9b_c00304{left:576.900000px;}
.x133_c00304{left:577.950000px;}
.xd0_c00304{left:582.150000px;}
.xdc_c00304{left:583.350000px;}
.x21_c00304{left:584.700000px;}
.x127_c00304{left:587.100000px;}
.xb7_c00304{left:588.150000px;}
.x90_c00304{left:589.350000px;}
.x11_c00304{left:591.450000px;}
.x1a_c00304{left:592.650000px;}
.xad_c00304{left:593.850000px;}
.x9c_c00304{left:595.650000px;}
.x28_c00304{left:598.650000px;}
.xa7_c00304{left:599.850000px;}
.x30_c00304{left:601.500000px;}
.xb8_c00304{left:603.300000px;}
.x22_c00304{left:606.000000px;}
.xdf_c00304{left:608.250000px;}
.xe2_c00304{left:609.300000px;}
.xb9_c00304{left:610.500000px;}
.x1b_c00304{left:612.450000px;}
.x12_c00304{left:614.550000px;}
.x8b_c00304{left:616.200000px;}
.xba_c00304{left:617.400000px;}
.x29_c00304{left:618.750000px;}
.xeb_c00304{left:621.600000px;}
.x23_c00304{left:623.250000px;}
.xae_c00304{left:625.200000px;}
.x31_c00304{left:627.750000px;}
.xb3_c00304{left:629.700000px;}
.xbb_c00304{left:632.550000px;}
.xea_c00304{left:634.200000px;}
.xe3_c00304{left:636.000000px;}
.xd3_c00304{left:638.550000px;}
.xbc_c00304{left:639.750000px;}
.x1c_c00304{left:641.550000px;}
.x8c_c00304{left:643.200000px;}
.x9d_c00304{left:645.750000px;}
.xb4_c00304{left:646.950000px;}
.x97_c00304{left:651.750000px;}
.x12e_c00304{left:652.950000px;}
.xbd_c00304{left:654.600000px;}
.x9e_c00304{left:656.250000px;}
.x134_c00304{left:657.750000px;}
.x91_c00304{left:660.300000px;}
.xc3_c00304{left:661.500000px;}
.x96_c00304{left:663.600000px;}
.x24_c00304{left:665.400000px;}
.xa8_c00304{left:667.050000px;}
.x98_c00304{left:668.250000px;}
.x1d_c00304{left:670.350000px;}
.xe8_c00304{left:673.050000px;}
.x13_c00304{left:674.700000px;}
.xc4_c00304{left:676.650000px;}
.x13b_c00304{left:679.200000px;}
.xd9_c00304{left:682.350000px;}
.xc5_c00304{left:683.550000px;}
.x8d_c00304{left:685.650000px;}
.xe7_c00304{left:687.600000px;}
.xe4_c00304{left:689.700000px;}
.x12f_c00304{left:691.200000px;}
.xa9_c00304{left:694.350000px;}
.x25_c00304{left:695.700000px;}
.xe0_c00304{left:698.850000px;}
.x14_c00304{left:701.400000px;}
.xbe_c00304{left:702.450000px;}
.x2a_c00304{left:704.100000px;}
.x99_c00304{left:708.900000px;}
.xe1_c00304{left:714.750000px;}
.x92_c00304{left:716.100000px;}
.x15_c00304{left:718.650000px;}
.xdd_c00304{left:720.900000px;}
.x130_c00304{left:722.100000px;}
.x1e_c00304{left:723.600000px;}
.xaa_c00304{left:725.250000px;}
.x126_c00304{left:727.200000px;}
.x2b_c00304{left:728.550000px;}
.x141_c00304{left:729.750000px;}
.xc6_c00304{left:732.150000px;}
.x9f_c00304{left:733.350000px;}
.x138_c00304{left:735.750000px;}
.xda_c00304{left:737.400000px;}
.x128_c00304{left:739.050000px;}
.x12b_c00304{left:741.000000px;}
.x2c_c00304{left:742.950000px;}
.x26_c00304{left:745.050000px;}
.x2_c00304{left:747.750000px;}
.xd1_c00304{left:749.550000px;}
.xec_c00304{left:753.750000px;}
.x16_c00304{left:755.400000px;}
.x137_c00304{left:757.350000px;}
.x1f_c00304{left:759.600000px;}
.xbf_c00304{left:761.100000px;}
.x12a_c00304{left:763.650000px;}
.xaf_c00304{left:766.350000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls2_c00304{letter-spacing:0.000000pt;}
.ls0_c00304{letter-spacing:39.619048pt;}
.ls1_c00304{letter-spacing:49.523810pt;}
.ws12_c00304{word-spacing:-76.190476pt;}
.ws3_c00304{word-spacing:-60.952381pt;}
.ws0_c00304{word-spacing:-3.902439pt;}
.ws17_c00304{word-spacing:-1.637427pt;}
.wsf_c00304{word-spacing:-1.489971pt;}
.ws19_c00304{word-spacing:0.000000pt;}
.wsa_c00304{word-spacing:0.322718pt;}
.ws11_c00304{word-spacing:6.641189pt;}
.ws18_c00304{word-spacing:7.777778pt;}
.wsb_c00304{word-spacing:10.358152pt;}
.ws10_c00304{word-spacing:10.370370pt;}
.wsc_c00304{word-spacing:11.111111pt;}
.ws6_c00304{word-spacing:13.333333pt;}
.ws9_c00304{word-spacing:14.685769pt;}
.ws15_c00304{word-spacing:14.920635pt;}
.ws1_c00304{word-spacing:18.285714pt;}
.ws4_c00304{word-spacing:19.682540pt;}
.wse_c00304{word-spacing:20.632708pt;}
.ws16_c00304{word-spacing:22.000000pt;}
.ws5_c00304{word-spacing:22.857143pt;}
.ws13_c00304{word-spacing:26.296296pt;}
.ws7_c00304{word-spacing:28.765027pt;}
.ws8_c00304{word-spacing:34.010929pt;}
.ws14_c00304{word-spacing:35.555556pt;}
.ws2_c00304{word-spacing:35.851852pt;}
.wsd_c00304{word-spacing:40.333333pt;}
._2_c00304{margin-left:-49.523810pt;}
._0_c00304{margin-left:-39.619048pt;}
._6_c00304{width:46.349206pt;}
._1_c00304{width:52.698413pt;}
._7_c00304{width:57.460317pt;}
._5_c00304{width:62.222222pt;}
._3_c00304{width:65.925926pt;}
._4_c00304{width:71.481481pt;}
._8_c00304{width:517.777778pt;}
.fs8_c00304{font-size:21.333333pt;}
.fs2_c00304{font-size:26.666667pt;}
.fs9_c00304{font-size:32.000000pt;}
.fs7_c00304{font-size:42.666667pt;}
.fs5_c00304{font-size:48.000000pt;}
.fs4_c00304{font-size:53.333333pt;}
.fs1_c00304{font-size:58.666667pt;}
.fs3_c00304{font-size:64.000000pt;}
.fs6_c00304{font-size:69.333333pt;}
.fs0_c00304{font-size:90.666667pt;}
.y0_c00304{bottom:0.000000pt;}
.y6a_c00304{bottom:163.466667pt;}
.y69_c00304{bottom:176.933333pt;}
.y61_c00304{bottom:187.466667pt;}
.y68_c00304{bottom:188.800000pt;}
.y67_c00304{bottom:201.866667pt;}
.y60_c00304{bottom:203.600000pt;}
.y66_c00304{bottom:214.666667pt;}
.y5f_c00304{bottom:219.600000pt;}
.y2_c00304{bottom:227.200000pt;}
.y5e_c00304{bottom:235.866667pt;}
.y65_c00304{bottom:240.266667pt;}
.y5d_c00304{bottom:251.866667pt;}
.y64_c00304{bottom:259.466667pt;}
.y5c_c00304{bottom:271.066667pt;}
.y63_c00304{bottom:272.000000pt;}
.y5b_c00304{bottom:273.866667pt;}
.y62_c00304{bottom:281.333333pt;}
.y4d_c00304{bottom:285.733333pt;}
.y5a_c00304{bottom:286.800000pt;}
.y4c_c00304{bottom:299.200000pt;}
.y59_c00304{bottom:299.600000pt;}
.y58_c00304{bottom:312.666667pt;}
.y4b_c00304{bottom:315.200000pt;}
.y4a_c00304{bottom:330.933333pt;}
.y57_c00304{bottom:334.133333pt;}
.y49_c00304{bottom:346.666667pt;}
.y56_c00304{bottom:353.600000pt;}
.y48_c00304{bottom:362.400000pt;}
.y55_c00304{bottom:365.066667pt;}
.y47_c00304{bottom:378.133333pt;}
.y53_c00304{bottom:389.066667pt;}
.y46_c00304{bottom:394.133333pt;}
.y52_c00304{bottom:405.066667pt;}
.y45_c00304{bottom:409.866667pt;}
.y51_c00304{bottom:420.800000pt;}
.y44_c00304{bottom:425.600000pt;}
.y50_c00304{bottom:436.533333pt;}
.y43_c00304{bottom:444.133333pt;}
.y54_c00304{bottom:444.533333pt;}
.y4f_c00304{bottom:456.533333pt;}
.y42_c00304{bottom:456.933333pt;}
.y41_c00304{bottom:469.733333pt;}
.y4e_c00304{bottom:472.266667pt;}
.y40_c00304{bottom:483.866667pt;}
.y34_c00304{bottom:496.266667pt;}
.y3f_c00304{bottom:500.533333pt;}
.y33_c00304{bottom:516.133333pt;}
.y3e_c00304{bottom:516.800000pt;}
.y3d_c00304{bottom:532.533333pt;}
.y32_c00304{bottom:536.133333pt;}
.y3c_c00304{bottom:548.800000pt;}
.y31_c00304{bottom:552.133333pt;}
.y3b_c00304{bottom:564.533333pt;}
.y30_c00304{bottom:568.133333pt;}
.y2f_c00304{bottom:583.866667pt;}
.y3a_c00304{bottom:584.000000pt;}
.y2e_c00304{bottom:599.600000pt;}
.y39_c00304{bottom:600.000000pt;}
.y2d_c00304{bottom:615.600000pt;}
.y38_c00304{bottom:616.000000pt;}
.y2c_c00304{bottom:631.600000pt;}
.y37_c00304{bottom:635.466667pt;}
.y2b_c00304{bottom:647.600000pt;}
.y36_c00304{bottom:651.200000pt;}
.y2a_c00304{bottom:663.333333pt;}
.y35_c00304{bottom:678.666667pt;}
.y29_c00304{bottom:679.333333pt;}
.y28_c00304{bottom:697.333333pt;}
.y27_c00304{bottom:722.000000pt;}
.y26_c00304{bottom:722.933333pt;}
.y1a_c00304{bottom:730.000000pt;}
.y25_c00304{bottom:735.600000pt;}
.y24_c00304{bottom:745.200000pt;}
.y19_c00304{bottom:745.733333pt;}
.y23_c00304{bottom:750.666667pt;}
.y18_c00304{bottom:761.466667pt;}
.y22_c00304{bottom:766.266667pt;}
.y17_c00304{bottom:777.466667pt;}
.y21_c00304{bottom:782.000000pt;}
.y16_c00304{bottom:793.466667pt;}
.y20_c00304{bottom:798.000000pt;}
.y15_c00304{bottom:809.466667pt;}
.y1f_c00304{bottom:813.733333pt;}
.y14_c00304{bottom:825.200000pt;}
.y1e_c00304{bottom:833.600000pt;}
.y13_c00304{bottom:841.200000pt;}
.y1d_c00304{bottom:849.333333pt;}
.y12_c00304{bottom:856.933333pt;}
.y1c_c00304{bottom:869.066667pt;}
.y11_c00304{bottom:872.933333pt;}
.y1b_c00304{bottom:885.066667pt;}
.y10_c00304{bottom:888.933333pt;}
.yf_c00304{bottom:908.000000pt;}
.y9_c00304{bottom:908.533333pt;}
.ye_c00304{bottom:924.000000pt;}
.y8_c00304{bottom:924.533333pt;}
.yd_c00304{bottom:940.000000pt;}
.y7_c00304{bottom:944.266667pt;}
.yc_c00304{bottom:955.733333pt;}
.y6_c00304{bottom:960.266667pt;}
.yb_c00304{bottom:971.466667pt;}
.y5_c00304{bottom:976.000000pt;}
.ya_c00304{bottom:991.333333pt;}
.y4_c00304{bottom:992.000000pt;}
.y1_c00304{bottom:1034.533333pt;}
.y3_c00304{bottom:1052.533333pt;}
.ha_c00304{height:21.333333pt;}
.h4_c00304{height:26.666667pt;}
.hb_c00304{height:32.000000pt;}
.h9_c00304{height:42.666667pt;}
.h7_c00304{height:48.000000pt;}
.h6_c00304{height:53.333333pt;}
.h3_c00304{height:58.666667pt;}
.h5_c00304{height:64.000000pt;}
.h8_c00304{height:69.333333pt;}
.h2_c00304{height:90.666667pt;}
.h1_c00304{height:1128.666667pt;}
.h0_c00304{height:1128.960043pt;}
.w1_c00304{width:854.666667pt;}
.w0_c00304{width:854.720052pt;}
.x0_c00304{left:0.000000pt;}
.x3_c00304{left:64.666667pt;}
.x145_c00304{left:67.866667pt;}
.x104_c00304{left:69.466667pt;}
.x56_c00304{left:71.066667pt;}
.x142_c00304{left:82.266667pt;}
.x107_c00304{left:83.200000pt;}
.x101_c00304{left:84.933333pt;}
.x6c_c00304{left:86.666667pt;}
.x32_c00304{left:87.733333pt;}
.x10f_c00304{left:95.333333pt;}
.xfd_c00304{left:100.133333pt;}
.x143_c00304{left:101.200000pt;}
.x14a_c00304{left:102.666667pt;}
.x39_c00304{left:104.266667pt;}
.x84_c00304{left:105.733333pt;}
.x4_c00304{left:107.866667pt;}
.xfa_c00304{left:109.200000pt;}
.xc0_c00304{left:111.333333pt;}
.x14d_c00304{left:112.400000pt;}
.x144_c00304{left:113.733333pt;}
.x69_c00304{left:114.800000pt;}
.x87_c00304{left:116.400000pt;}
.x46_c00304{left:117.866667pt;}
.x5e_c00304{left:118.800000pt;}
.x10c_c00304{left:120.000000pt;}
.x4c_c00304{left:122.133333pt;}
.x57_c00304{left:124.133333pt;}
.x7a_c00304{left:125.466667pt;}
.xef_c00304{left:127.333333pt;}
.xc7_c00304{left:128.266667pt;}
.x5_c00304{left:129.333333pt;}
.x6d_c00304{left:130.533333pt;}
.x10d_c00304{left:133.200000pt;}
.x108_c00304{left:135.066667pt;}
.xf1_c00304{left:136.933333pt;}
.x3a_c00304{left:137.866667pt;}
.x75_c00304{left:139.466667pt;}
.x5f_c00304{left:140.933333pt;}
.x113_c00304{left:142.133333pt;}
.x146_c00304{left:143.066667pt;}
.x118_c00304{left:145.200000pt;}
.xf2_c00304{left:146.266667pt;}
.x52_c00304{left:147.733333pt;}
.x41_c00304{left:148.666667pt;}
.x33_c00304{left:150.133333pt;}
.xfe_c00304{left:151.600000pt;}
.x10e_c00304{left:153.066667pt;}
.x122_c00304{left:154.800000pt;}
.x71_c00304{left:156.533333pt;}
.x58_c00304{left:157.733333pt;}
.x3b_c00304{left:158.933333pt;}
.xc1_c00304{left:161.200000pt;}
.x88_c00304{left:162.400000pt;}
.x119_c00304{left:163.466667pt;}
.xf6_c00304{left:164.400000pt;}
.x81_c00304{left:166.133333pt;}
.x103_c00304{left:167.600000pt;}
.xc8_c00304{left:168.533333pt;}
.x6_c00304{left:170.000000pt;}
.x150_c00304{left:171.733333pt;}
.x76_c00304{left:173.333333pt;}
.x147_c00304{left:174.800000pt;}
.x109_c00304{left:175.733333pt;}
.x4d_c00304{left:177.466667pt;}
.x59_c00304{left:178.800000pt;}
.x116_c00304{left:180.666667pt;}
.x34_c00304{left:182.133333pt;}
.x47_c00304{left:183.466667pt;}
.x64_c00304{left:186.800000pt;}
.x77_c00304{left:188.666667pt;}
.x7b_c00304{left:190.400000pt;}
.x111_c00304{left:191.333333pt;}
.x7_c00304{left:193.066667pt;}
.x4e_c00304{left:195.733333pt;}
.x60_c00304{left:198.000000pt;}
.x11d_c00304{left:199.200000pt;}
.x6e_c00304{left:200.933333pt;}
.x78_c00304{left:202.400000pt;}
.x120_c00304{left:204.133333pt;}
.xf3_c00304{left:205.066667pt;}
.x3c_c00304{left:206.666667pt;}
.xf0_c00304{left:208.266667pt;}
.x53_c00304{left:209.466667pt;}
.x115_c00304{left:210.400000pt;}
.x102_c00304{left:211.333333pt;}
.x14b_c00304{left:212.400000pt;}
.xf4_c00304{left:213.733333pt;}
.x42_c00304{left:214.933333pt;}
.x48_c00304{left:216.133333pt;}
.x10a_c00304{left:217.333333pt;}
.x7c_c00304{left:218.266667pt;}
.xc9_c00304{left:222.266667pt;}
.x54_c00304{left:223.866667pt;}
.x35_c00304{left:227.200000pt;}
.x65_c00304{left:230.666667pt;}
.x114_c00304{left:231.733333pt;}
.xff_c00304{left:232.800000pt;}
.x3d_c00304{left:234.133333pt;}
.x8_c00304{left:236.000000pt;}
.x85_c00304{left:238.000000pt;}
.x36_c00304{left:239.333333pt;}
.x14e_c00304{left:240.266667pt;}
.x7d_c00304{left:242.000000pt;}
.x49_c00304{left:244.266667pt;}
.x5a_c00304{left:246.000000pt;}
.x121_c00304{left:248.933333pt;}
.x117_c00304{left:251.333333pt;}
.x55_c00304{left:252.400000pt;}
.x43_c00304{left:253.333333pt;}
.x14c_c00304{left:255.333333pt;}
.xf7_c00304{left:256.933333pt;}
.x7e_c00304{left:260.266667pt;}
.x37_c00304{left:262.400000pt;}
.x61_c00304{left:264.266667pt;}
.x11a_c00304{left:265.866667pt;}
.x6a_c00304{left:266.800000pt;}
.xca_c00304{left:267.733333pt;}
.x79_c00304{left:270.000000pt;}
.x3e_c00304{left:272.533333pt;}
.x4f_c00304{left:273.866667pt;}
.x66_c00304{left:276.666667pt;}
.xf8_c00304{left:279.066667pt;}
.xf5_c00304{left:280.000000pt;}
.x4a_c00304{left:281.733333pt;}
.x105_c00304{left:282.933333pt;}
.x10b_c00304{left:284.533333pt;}
.x5b_c00304{left:286.266667pt;}
.x1_c00304{left:287.333333pt;}
.x82_c00304{left:289.066667pt;}
.x148_c00304{left:292.800000pt;}
.x67_c00304{left:295.600000pt;}
.x72_c00304{left:296.933333pt;}
.x3f_c00304{left:298.400000pt;}
.xfb_c00304{left:299.466667pt;}
.x5c_c00304{left:300.933333pt;}
.xc_c00304{left:302.400000pt;}
.x11e_c00304{left:303.866667pt;}
.x83_c00304{left:306.400000pt;}
.x112_c00304{left:307.600000pt;}
.x7f_c00304{left:308.533333pt;}
.x44_c00304{left:309.600000pt;}
.x9_c00304{left:310.533333pt;}
.x14f_c00304{left:311.600000pt;}
.x6f_c00304{left:314.266667pt;}
.x149_c00304{left:315.200000pt;}
.x50_c00304{left:316.400000pt;}
.x11b_c00304{left:317.733333pt;}
.x11f_c00304{left:318.933333pt;}
.x5d_c00304{left:324.000000pt;}
.x68_c00304{left:326.000000pt;}
.x45_c00304{left:328.133333pt;}
.x100_c00304{left:329.333333pt;}
.x70_c00304{left:331.866667pt;}
.xa_c00304{left:332.933333pt;}
.x62_c00304{left:334.400000pt;}
.x51_c00304{left:335.600000pt;}
.x86_c00304{left:340.000000pt;}
.x73_c00304{left:341.466667pt;}
.x80_c00304{left:346.666667pt;}
.xfc_c00304{left:348.800000pt;}
.x40_c00304{left:349.866667pt;}
.x38_c00304{left:351.066667pt;}
.xb_c00304{left:352.400000pt;}
.x63_c00304{left:353.333333pt;}
.x106_c00304{left:355.866667pt;}
.x74_c00304{left:357.733333pt;}
.x11c_c00304{left:359.066667pt;}
.xf9_c00304{left:360.000000pt;}
.x6b_c00304{left:361.200000pt;}
.x110_c00304{left:364.133333pt;}
.x4b_c00304{left:368.133333pt;}
.x151_c00304{left:384.666667pt;}
.x12d_c00304{left:386.266667pt;}
.x123_c00304{left:387.866667pt;}
.x89_c00304{left:389.066667pt;}
.xd_c00304{left:390.400000pt;}
.x140_c00304{left:397.466667pt;}
.x131_c00304{left:399.600000pt;}
.x139_c00304{left:401.466667pt;}
.x93_c00304{left:402.533333pt;}
.xa1_c00304{left:403.466667pt;}
.x2d_c00304{left:405.066667pt;}
.x17_c00304{left:406.133333pt;}
.xc2_c00304{left:408.933333pt;}
.x135_c00304{left:411.466667pt;}
.xcb_c00304{left:413.733333pt;}
.xab_c00304{left:415.600000pt;}
.xb5_c00304{left:418.533333pt;}
.x8e_c00304{left:421.066667pt;}
.xd6_c00304{left:422.666667pt;}
.x132_c00304{left:425.200000pt;}
.xb0_c00304{left:427.200000pt;}
.x8a_c00304{left:428.400000pt;}
.xcc_c00304{left:433.600000pt;}
.x9a_c00304{left:434.666667pt;}
.xe9_c00304{left:435.733333pt;}
.x152_c00304{left:437.466667pt;}
.x18_c00304{left:438.800000pt;}
.xb1_c00304{left:440.666667pt;}
.xe_c00304{left:442.533333pt;}
.xed_c00304{left:443.866667pt;}
.x129_c00304{left:445.866667pt;}
.x13d_c00304{left:447.733333pt;}
.x94_c00304{left:448.666667pt;}
.xa2_c00304{left:449.600000pt;}
.x27_c00304{left:451.200000pt;}
.xcd_c00304{left:452.133333pt;}
.xd7_c00304{left:453.733333pt;}
.xe5_c00304{left:454.666667pt;}
.x13e_c00304{left:456.666667pt;}
.xf_c00304{left:457.866667pt;}
.x20_c00304{left:458.933333pt;}
.x124_c00304{left:460.133333pt;}
.xd4_c00304{left:462.666667pt;}
.xac_c00304{left:463.600000pt;}
.xd2_c00304{left:465.200000pt;}
.xb6_c00304{left:466.533333pt;}
.x2e_c00304{left:468.400000pt;}
.xa5_c00304{left:470.133333pt;}
.x13f_c00304{left:471.733333pt;}
.xdb_c00304{left:473.733333pt;}
.xe6_c00304{left:475.200000pt;}
.xa3_c00304{left:476.800000pt;}
.x10_c00304{left:478.000000pt;}
.x12c_c00304{left:480.133333pt;}
.xd5_c00304{left:481.600000pt;}
.x2f_c00304{left:484.133333pt;}
.xb2_c00304{left:485.466667pt;}
.xa4_c00304{left:487.733333pt;}
.xd8_c00304{left:488.933333pt;}
.x13a_c00304{left:490.133333pt;}
.x19_c00304{left:491.600000pt;}
.x8f_c00304{left:493.733333pt;}
.x13c_c00304{left:496.400000pt;}
.xa6_c00304{left:498.666667pt;}
.xde_c00304{left:500.000000pt;}
.xa0_c00304{left:503.333333pt;}
.xce_c00304{left:504.400000pt;}
.x95_c00304{left:506.000000pt;}
.x136_c00304{left:507.466667pt;}
.xee_c00304{left:508.666667pt;}
.xcf_c00304{left:510.800000pt;}
.x125_c00304{left:511.733333pt;}
.x9b_c00304{left:512.800000pt;}
.x133_c00304{left:513.733333pt;}
.xd0_c00304{left:517.466667pt;}
.xdc_c00304{left:518.533333pt;}
.x21_c00304{left:519.733333pt;}
.x127_c00304{left:521.866667pt;}
.xb7_c00304{left:522.800000pt;}
.x90_c00304{left:523.866667pt;}
.x11_c00304{left:525.733333pt;}
.x1a_c00304{left:526.800000pt;}
.xad_c00304{left:527.866667pt;}
.x9c_c00304{left:529.466667pt;}
.x28_c00304{left:532.133333pt;}
.xa7_c00304{left:533.200000pt;}
.x30_c00304{left:534.666667pt;}
.xb8_c00304{left:536.266667pt;}
.x22_c00304{left:538.666667pt;}
.xdf_c00304{left:540.666667pt;}
.xe2_c00304{left:541.600000pt;}
.xb9_c00304{left:542.666667pt;}
.x1b_c00304{left:544.400000pt;}
.x12_c00304{left:546.266667pt;}
.x8b_c00304{left:547.733333pt;}
.xba_c00304{left:548.800000pt;}
.x29_c00304{left:550.000000pt;}
.xeb_c00304{left:552.533333pt;}
.x23_c00304{left:554.000000pt;}
.xae_c00304{left:555.733333pt;}
.x31_c00304{left:558.000000pt;}
.xb3_c00304{left:559.733333pt;}
.xbb_c00304{left:562.266667pt;}
.xea_c00304{left:563.733333pt;}
.xe3_c00304{left:565.333333pt;}
.xd3_c00304{left:567.600000pt;}
.xbc_c00304{left:568.666667pt;}
.x1c_c00304{left:570.266667pt;}
.x8c_c00304{left:571.733333pt;}
.x9d_c00304{left:574.000000pt;}
.xb4_c00304{left:575.066667pt;}
.x97_c00304{left:579.333333pt;}
.x12e_c00304{left:580.400000pt;}
.xbd_c00304{left:581.866667pt;}
.x9e_c00304{left:583.333333pt;}
.x134_c00304{left:584.666667pt;}
.x91_c00304{left:586.933333pt;}
.xc3_c00304{left:588.000000pt;}
.x96_c00304{left:589.866667pt;}
.x24_c00304{left:591.466667pt;}
.xa8_c00304{left:592.933333pt;}
.x98_c00304{left:594.000000pt;}
.x1d_c00304{left:595.866667pt;}
.xe8_c00304{left:598.266667pt;}
.x13_c00304{left:599.733333pt;}
.xc4_c00304{left:601.466667pt;}
.x13b_c00304{left:603.733333pt;}
.xd9_c00304{left:606.533333pt;}
.xc5_c00304{left:607.600000pt;}
.x8d_c00304{left:609.466667pt;}
.xe7_c00304{left:611.200000pt;}
.xe4_c00304{left:613.066667pt;}
.x12f_c00304{left:614.400000pt;}
.xa9_c00304{left:617.200000pt;}
.x25_c00304{left:618.400000pt;}
.xe0_c00304{left:621.200000pt;}
.x14_c00304{left:623.466667pt;}
.xbe_c00304{left:624.400000pt;}
.x2a_c00304{left:625.866667pt;}
.x99_c00304{left:630.133333pt;}
.xe1_c00304{left:635.333333pt;}
.x92_c00304{left:636.533333pt;}
.x15_c00304{left:638.800000pt;}
.xdd_c00304{left:640.800000pt;}
.x130_c00304{left:641.866667pt;}
.x1e_c00304{left:643.200000pt;}
.xaa_c00304{left:644.666667pt;}
.x126_c00304{left:646.400000pt;}
.x2b_c00304{left:647.600000pt;}
.x141_c00304{left:648.666667pt;}
.xc6_c00304{left:650.800000pt;}
.x9f_c00304{left:651.866667pt;}
.x138_c00304{left:654.000000pt;}
.xda_c00304{left:655.466667pt;}
.x128_c00304{left:656.933333pt;}
.x12b_c00304{left:658.666667pt;}
.x2c_c00304{left:660.400000pt;}
.x26_c00304{left:662.266667pt;}
.x2_c00304{left:664.666667pt;}
.xd1_c00304{left:666.266667pt;}
.xec_c00304{left:670.000000pt;}
.x16_c00304{left:671.466667pt;}
.x137_c00304{left:673.200000pt;}
.x1f_c00304{left:675.200000pt;}
.xbf_c00304{left:676.533333pt;}
.x12a_c00304{left:678.800000pt;}
.xaf_c00304{left:681.200000pt;}
}





/* 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_c00305 {
    display:none;
  }
  .loading-indicator_c00305.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00305 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_c00305 { 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_c00305" -> "#page-container .classname_c00305")
 */
.pf_c00305 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00305 { /* 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_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00305 { /* 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_c00305 { /* 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_c00305 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00305 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00305 {overflow:visible;}
  }
}
.c_c00305 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00305 { /* 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_c00305:after { /* webkit #35443 */
  content: '';
}
.t_c00305:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00305 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 */
}
.__c00305 { /* 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_c00305 { /* info for Javascript */
  display:none;
}
.l_c00305 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00305 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00305 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00305: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_c00305 {
    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_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00305.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_c00305 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00305;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.000000;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_c00305{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma_c00305{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00305{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m58_c00305{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb_c00305{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m28_c00305{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m47_c00305{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m76_c00305{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m59_c00305{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00305{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m78_c00305{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m57_c00305{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m25_c00305{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00305{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m77_c00305{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m66_c00305{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7_c00305{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00305{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mab_c00305{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00305{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.me_c00305{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m19_c00305{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00305{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00305{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00305{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.me2_c00305{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mee_c00305{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00305{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m40_c00305{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00305{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00305{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m43_c00305{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m89_c00305{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00305{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m35_c00305{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.maf_c00305{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00305{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m101_c00305{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00305{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m87_c00305{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00305{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00305{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00305{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m55_c00305{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me7_c00305{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00305{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00305{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00305{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00305{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.maa_c00305{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m120_c00305{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m50_c00305{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00305{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m90_c00305{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00305{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mca_c00305{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md9_c00305{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md8_c00305{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00305{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00305{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00305{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00305{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00305{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00305{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m83_c00305{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00305{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00305{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m100_c00305{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mae_c00305{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m26_c00305{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00305{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m10_c00305{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m45_c00305{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00305{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md7_c00305{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m38_c00305{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8_c00305{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m84_c00305{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00305{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00305{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00305{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00305{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00305{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m91_c00305{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mad_c00305{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m96_c00305{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00305{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00305{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m27_c00305{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00305{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00305{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m53_c00305{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00305{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me1_c00305{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.meb_c00305{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00305{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00305{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m24_c00305{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m41_c00305{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m23_c00305{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00305{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m68_c00305{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m33_c00305{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00305{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00305{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00305{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m32_c00305{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m42_c00305{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md0_c00305{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m15_c00305{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00305{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m34_c00305{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mac_c00305{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00305{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mce_c00305{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m71_c00305{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00305{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00305{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m52_c00305{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00305{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m73_c00305{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mef_c00305{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md4_c00305{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00305{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m85_c00305{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m72_c00305{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00305{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9_c00305{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00305{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00305{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m44_c00305{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m82_c00305{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m115_c00305{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00305{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00305{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00305{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m80_c00305{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m37_c00305{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00305{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00305{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00305{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m97_c00305{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00305{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00305{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mda_c00305{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m109_c00305{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m117_c00305{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m70_c00305{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.md_c00305{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m62_c00305{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m69_c00305{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00305{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00305{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00305{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4_c00305{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00305{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00305{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00305{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m11_c00305{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00305{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m22_c00305{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me9_c00305{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m86_c00305{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me5_c00305{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.med_c00305{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m121_c00305{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m99_c00305{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m88_c00305{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m118_c00305{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00305{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00305{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00305{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00305{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m46_c00305{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00305{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00305{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m13_c00305{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m18_c00305{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00305{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc_c00305{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md5_c00305{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00305{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00305{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m54_c00305{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00305{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m94_c00305{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m20_c00305{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mec_c00305{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mea_c00305{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00305{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mba_c00305{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00305{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m39_c00305{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m3_c00305{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00305{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m65_c00305{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m123_c00305{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m92_c00305{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m64_c00305{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m36_c00305{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md2_c00305{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00305{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00305{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m95_c00305{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00305{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00305{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00305{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00305{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mff_c00305{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m108_c00305{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m106_c00305{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00305{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m81_c00305{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m107_c00305{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00305{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m74_c00305{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00305{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m56_c00305{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00305{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m63_c00305{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00305{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m14_c00305{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00305{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m116_c00305{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me4_c00305{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m17_c00305{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m98_c00305{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m112_c00305{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m102_c00305{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.md6_c00305{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m51_c00305{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00305{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00305{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md3_c00305{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me6_c00305{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m93_c00305{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m48_c00305{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m30_c00305{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m113_c00305{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00305{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m29_c00305{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m79_c00305{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me0_c00305{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00305{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00305{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m75_c00305{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m31_c00305{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m49_c00305{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m125_c00305{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me8_c00305{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m16_c00305{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mde_c00305{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00305{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00305{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00305{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00305{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00305{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00305{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m114_c00305{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00305{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m122_c00305{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m119_c00305{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00305{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00305{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00305{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6_c00305{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00305{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mf_c00305{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00305{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m111_c00305{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m1_c00305{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.me3_c00305{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m124_c00305{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00305{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m103_c00305{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m104_c00305{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00305{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m110_c00305{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00305{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md1_c00305{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00305{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m12_c00305{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m5_c00305{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m105_c00305{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m60_c00305{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c00305{transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00305{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00305{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m67_c00305{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00305{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m61_c00305{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00305{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m21_c00305{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00305{transform:matrix(15.754250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(15.754250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(15.754250,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls1_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:55.714286px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{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__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00305{word-spacing:-85.714286px;}
.ws0_c00305{word-spacing:-13.780488px;}
.wsa_c00305{word-spacing:-3.676471px;}
.wsb_c00305{word-spacing:0.000000px;}
.ws8_c00305{word-spacing:4.687500px;}
.ws6_c00305{word-spacing:16.257611px;}
.ws2_c00305{word-spacing:16.785714px;}
.ws1_c00305{word-spacing:18.125000px;}
.ws9_c00305{word-spacing:29.285714px;}
.ws5_c00305{word-spacing:40.000000px;}
.ws7_c00305{word-spacing:55.090909px;}
.ws3_c00305{word-spacing:61.250000px;}
._1_c00305{margin-left:-55.714286px;}
._0_c00305{width:55.714286px;}
.fc0_c00305{color:transparent;}
.fs7_c00305{font-size:24.000000px;}
.fs3_c00305{font-size:36.000000px;}
.fs6_c00305{font-size:42.000000px;}
.fs4_c00305{font-size:54.000000px;}
.fs2_c00305{font-size:60.000000px;}
.fs0_c00305{font-size:66.000000px;}
.fs5_c00305{font-size:72.000000px;}
.fs1_c00305{font-size:102.000000px;}
.y0_c00305{bottom:0.000000px;}
.y68_c00305{bottom:192.150000px;}
.y66_c00305{bottom:196.500000px;}
.y65_c00305{bottom:210.900000px;}
.y67_c00305{bottom:214.500000px;}
.y64_c00305{bottom:225.000000px;}
.y62_c00305{bottom:238.950000px;}
.y63_c00305{bottom:239.100000px;}
.y61_c00305{bottom:253.050000px;}
.y60_c00305{bottom:258.450000px;}
.y33_c00305{bottom:272.100000px;}
.y5f_c00305{bottom:280.500000px;}
.y5e_c00305{bottom:298.500000px;}
.y32_c00305{bottom:299.100000px;}
.y31_c00305{bottom:316.800000px;}
.y30_c00305{bottom:333.750000px;}
.y5d_c00305{bottom:341.700000px;}
.y2f_c00305{bottom:350.850000px;}
.y5c_c00305{bottom:355.350000px;}
.y2e_c00305{bottom:368.550000px;}
.y5b_c00305{bottom:374.100000px;}
.y2d_c00305{bottom:386.250000px;}
.y5a_c00305{bottom:392.100000px;}
.y2c_c00305{bottom:403.950000px;}
.y59_c00305{bottom:414.000000px;}
.y2b_c00305{bottom:421.950000px;}
.y58_c00305{bottom:431.700000px;}
.y2a_c00305{bottom:439.200000px;}
.y57_c00305{bottom:453.900000px;}
.y29_c00305{bottom:457.050000px;}
.y56_c00305{bottom:471.900000px;}
.y28_c00305{bottom:474.750000px;}
.y27_c00305{bottom:492.450000px;}
.y55_c00305{bottom:502.650000px;}
.y26_c00305{bottom:518.700000px;}
.y54_c00305{bottom:525.300000px;}
.y25_c00305{bottom:536.700000px;}
.y53_c00305{bottom:547.650000px;}
.y24_c00305{bottom:553.800000px;}
.y52_c00305{bottom:565.950000px;}
.y23_c00305{bottom:571.500000px;}
.y51_c00305{bottom:583.950000px;}
.y22_c00305{bottom:589.200000px;}
.y50_c00305{bottom:601.950000px;}
.y21_c00305{bottom:606.450000px;}
.y4f_c00305{bottom:619.950000px;}
.y20_c00305{bottom:623.700000px;}
.y1f_c00305{bottom:641.400000px;}
.y4e_c00305{bottom:644.700000px;}
.y1e_c00305{bottom:659.100000px;}
.y4d_c00305{bottom:660.300000px;}
.y4c_c00305{bottom:675.000000px;}
.y1d_c00305{bottom:677.400000px;}
.y4b_c00305{bottom:692.700000px;}
.y1c_c00305{bottom:695.100000px;}
.y4a_c00305{bottom:711.450000px;}
.y1b_c00305{bottom:716.700000px;}
.y1a_c00305{bottom:729.600000px;}
.y49_c00305{bottom:729.750000px;}
.y19_c00305{bottom:745.500000px;}
.y48_c00305{bottom:754.500000px;}
.y18_c00305{bottom:758.550000px;}
.y47_c00305{bottom:774.000000px;}
.y17_c00305{bottom:774.450000px;}
.y16_c00305{bottom:787.350000px;}
.y46_c00305{bottom:791.700000px;}
.y15_c00305{bottom:802.800000px;}
.y45_c00305{bottom:811.500000px;}
.y14_c00305{bottom:816.150000px;}
.y44_c00305{bottom:831.300000px;}
.y13_c00305{bottom:831.600000px;}
.y12_c00305{bottom:846.000000px;}
.y11_c00305{bottom:860.700000px;}
.y43_c00305{bottom:861.900000px;}
.y10_c00305{bottom:874.800000px;}
.y42_c00305{bottom:880.650000px;}
.yf_c00305{bottom:888.150000px;}
.y41_c00305{bottom:898.950000px;}
.ye_c00305{bottom:905.100000px;}
.y40_c00305{bottom:916.200000px;}
.yd_c00305{bottom:927.600000px;}
.y3f_c00305{bottom:934.200000px;}
.yc_c00305{bottom:945.300000px;}
.y3e_c00305{bottom:958.800000px;}
.yb_c00305{bottom:963.300000px;}
.y3d_c00305{bottom:978.300000px;}
.ya_c00305{bottom:981.000000px;}
.y3c_c00305{bottom:996.300000px;}
.y9_c00305{bottom:1006.950000px;}
.y3b_c00305{bottom:1015.800000px;}
.y8_c00305{bottom:1025.250000px;}
.y3a_c00305{bottom:1032.000000px;}
.y7_c00305{bottom:1042.500000px;}
.y39_c00305{bottom:1050.300000px;}
.y6_c00305{bottom:1060.500000px;}
.y38_c00305{bottom:1068.300000px;}
.y5_c00305{bottom:1078.500000px;}
.y37_c00305{bottom:1086.300000px;}
.y4_c00305{bottom:1099.350000px;}
.y36_c00305{bottom:1104.000000px;}
.y3_c00305{bottom:1118.100000px;}
.y35_c00305{bottom:1121.700000px;}
.y1_c00305{bottom:1141.950000px;}
.y2_c00305{bottom:1145.250000px;}
.y34_c00305{bottom:1188.000000px;}
.h9_c00305{height:24.000000px;}
.h5_c00305{height:36.000000px;}
.h8_c00305{height:42.000000px;}
.h6_c00305{height:54.000000px;}
.h4_c00305{height:60.000000px;}
.h2_c00305{height:66.000000px;}
.h7_c00305{height:72.000000px;}
.h3_c00305{height:102.000000px;}
.h0_c00305{height:1271.879975px;}
.h1_c00305{height:1272.000000px;}
.w1_c00305{width:961.500000px;}
.w0_c00305{width:961.560058px;}
.x0_c00305{left:0.000000px;}
.x1_c00305{left:183.900000px;}
.x2_c00305{left:191.100000px;}
.x32_c00305{left:193.650000px;}
.x6d_c00305{left:196.950000px;}
.x90_c00305{left:200.100000px;}
.x14b_c00305{left:202.500000px;}
.x147_c00305{left:203.700000px;}
.xa7_c00305{left:205.950000px;}
.x4c_c00305{left:208.800000px;}
.x9_c00305{left:210.000000px;}
.x13_c00305{left:211.800000px;}
.x1a_c00305{left:213.150000px;}
.x73_c00305{left:214.650000px;}
.x77_c00305{left:215.700000px;}
.x88_c00305{left:217.800000px;}
.x9e_c00305{left:219.600000px;}
.x1b_c00305{left:220.650000px;}
.x53_c00305{left:223.200000px;}
.x59_c00305{left:224.700000px;}
.x60_c00305{left:227.100000px;}
.x98_c00305{left:228.300000px;}
.xc_c00305{left:229.950000px;}
.x89_c00305{left:235.500000px;}
.x33_c00305{left:237.600000px;}
.x4_c00305{left:238.650000px;}
.x38_c00305{left:241.350000px;}
.xa6_c00305{left:243.000000px;}
.x24_c00305{left:245.100000px;}
.x1c_c00305{left:246.900000px;}
.x14_c00305{left:248.550000px;}
.x7f_c00305{left:251.700000px;}
.x3d_c00305{left:252.750000px;}
.x8a_c00305{left:256.050000px;}
.x8e_c00305{left:258.450000px;}
.x74_c00305{left:261.450000px;}
.x91_c00305{left:263.100000px;}
.x5a_c00305{left:264.300000px;}
.x1d_c00305{left:265.950000px;}
.x7b_c00305{left:267.750000px;}
.xa_c00305{left:270.150000px;}
.x3e_c00305{left:271.500000px;}
.x1e_c00305{left:273.900000px;}
.x9c_c00305{left:276.900000px;}
.x5_c00305{left:277.950000px;}
.x6e_c00305{left:281.250000px;}
.x49_c00305{left:282.750000px;}
.x41_c00305{left:283.950000px;}
.x7c_c00305{left:285.000000px;}
.x4d_c00305{left:286.650000px;}
.x6b_c00305{left:288.150000px;}
.x1f_c00305{left:290.100000px;}
.x5e_c00305{left:291.900000px;}
.xa3_c00305{left:293.700000px;}
.x92_c00305{left:295.500000px;}
.x2d_c00305{left:298.650000px;}
.x25_c00305{left:301.200000px;}
.x64_c00305{left:303.150000px;}
.x8f_c00305{left:304.950000px;}
.xd_c00305{left:308.400000px;}
.x5f_c00305{left:309.900000px;}
.x20_c00305{left:312.000000px;}
.x8b_c00305{left:314.400000px;}
.x45_c00305{left:316.350000px;}
.x65_c00305{left:318.150000px;}
.x6f_c00305{left:319.800000px;}
.x15_c00305{left:322.050000px;}
.x66_c00305{left:324.600000px;}
.xb_c00305{left:325.650000px;}
.x96_c00305{left:329.100000px;}
.x4a_c00305{left:332.100000px;}
.x42_c00305{left:333.600000px;}
.xe_c00305{left:334.650000px;}
.x2e_c00305{left:337.200000px;}
.x34_c00305{left:339.000000px;}
.x26_c00305{left:342.300000px;}
.x21_c00305{left:345.150000px;}
.x5b_c00305{left:346.800000px;}
.x27_c00305{left:351.300000px;}
.x80_c00305{left:354.300000px;}
.x78_c00305{left:355.800000px;}
.x3f_c00305{left:357.150000px;}
.x4e_c00305{left:358.650000px;}
.xf_c00305{left:360.150000px;}
.x6c_c00305{left:361.200000px;}
.x70_c00305{left:363.000000px;}
.x93_c00305{left:364.650000px;}
.x4f_c00305{left:366.150000px;}
.x35_c00305{left:367.500000px;}
.x7d_c00305{left:370.650000px;}
.x16_c00305{left:371.700000px;}
.x50_c00305{left:373.350000px;}
.x2f_c00305{left:375.300000px;}
.x84_c00305{left:377.850000px;}
.x57_c00305{left:379.200000px;}
.x51_c00305{left:380.550000px;}
.x6_c00305{left:381.600000px;}
.x10_c00305{left:382.800000px;}
.x97_c00305{left:384.600000px;}
.x148_c00305{left:385.800000px;}
.x54_c00305{left:387.300000px;}
.x8c_c00305{left:388.500000px;}
.x61_c00305{left:389.700000px;}
.x5c_c00305{left:391.500000px;}
.x43_c00305{left:393.750000px;}
.x67_c00305{left:396.900000px;}
.x85_c00305{left:398.400000px;}
.x7e_c00305{left:399.750000px;}
.x4b_c00305{left:402.000000px;}
.xa4_c00305{left:403.650000px;}
.x28_c00305{left:405.600000px;}
.x5d_c00305{left:406.650000px;}
.x62_c00305{left:407.700000px;}
.x75_c00305{left:409.800000px;}
.x68_c00305{left:411.300000px;}
.xa2_c00305{left:413.250000px;}
.x17_c00305{left:415.200000px;}
.x11_c00305{left:416.700000px;}
.x46_c00305{left:418.800000px;}
.x94_c00305{left:420.450000px;}
.x87_c00305{left:421.500000px;}
.x79_c00305{left:422.850000px;}
.x39_c00305{left:424.800000px;}
.x69_c00305{left:426.450000px;}
.x9a_c00305{left:430.200000px;}
.x6a_c00305{left:433.950000px;}
.x29_c00305{left:435.150000px;}
.x3_c00305{left:436.950000px;}
.x71_c00305{left:439.350000px;}
.x30_c00305{left:441.150000px;}
.x2a_c00305{left:442.650000px;}
.x7a_c00305{left:443.700000px;}
.x9b_c00305{left:447.900000px;}
.x47_c00305{left:449.100000px;}
.x63_c00305{left:450.900000px;}
.x2b_c00305{left:453.150000px;}
.x44_c00305{left:456.000000px;}
.x55_c00305{left:457.500000px;}
.x22_c00305{left:458.550000px;}
.x18_c00305{left:460.500000px;}
.x7_c00305{left:462.300000px;}
.x81_c00305{left:466.200000px;}
.x2c_c00305{left:468.300000px;}
.x8d_c00305{left:469.500000px;}
.x3a_c00305{left:471.300000px;}
.x12_c00305{left:473.550000px;}
.x8_c00305{left:474.600000px;}
.x36_c00305{left:476.700000px;}
.x40_c00305{left:477.750000px;}
.x31_c00305{left:480.750000px;}
.xa5_c00305{left:484.350000px;}
.x82_c00305{left:486.300000px;}
.x56_c00305{left:487.350000px;}
.x3b_c00305{left:489.300000px;}
.x76_c00305{left:490.800000px;}
.x86_c00305{left:493.050000px;}
.x9d_c00305{left:496.500000px;}
.x14c_c00305{left:498.300000px;}
.xa0_c00305{left:499.800000px;}
.x72_c00305{left:500.850000px;}
.x19_c00305{left:501.900000px;}
.x99_c00305{left:503.250000px;}
.x3c_c00305{left:505.800000px;}
.xa1_c00305{left:507.750000px;}
.x9f_c00305{left:509.100000px;}
.x23_c00305{left:510.750000px;}
.x48_c00305{left:514.200000px;}
.x58_c00305{left:516.300000px;}
.x52_c00305{left:517.650000px;}
.x37_c00305{left:519.600000px;}
.x83_c00305{left:521.550000px;}
.x95_c00305{left:524.400000px;}
.x149_c00305{left:525.450000px;}
.x14a_c00305{left:532.950000px;}
.xeb_c00305{left:549.000000px;}
.xfe_c00305{left:551.100000px;}
.x10c_c00305{left:552.300000px;}
.x115_c00305{left:553.650000px;}
.x128_c00305{left:555.450000px;}
.x132_c00305{left:557.250000px;}
.x13b_c00305{left:558.300000px;}
.x14d_c00305{left:560.850000px;}
.xb2_c00305{left:565.350000px;}
.xd5_c00305{left:566.550000px;}
.xf5_c00305{left:567.900000px;}
.x106_c00305{left:569.700000px;}
.x11a_c00305{left:571.350000px;}
.x125_c00305{left:573.000000px;}
.x12a_c00305{left:574.200000px;}
.x13e_c00305{left:576.000000px;}
.x141_c00305{left:577.200000px;}
.x145_c00305{left:578.700000px;}
.x113_c00305{left:581.400000px;}
.xa9_c00305{left:583.950000px;}
.xe5_c00305{left:585.600000px;}
.xff_c00305{left:586.800000px;}
.x104_c00305{left:588.450000px;}
.x12b_c00305{left:592.500000px;}
.x107_c00305{left:594.000000px;}
.x142_c00305{left:595.800000px;}
.xd0_c00305{left:597.150000px;}
.xf2_c00305{left:598.800000px;}
.xaa_c00305{left:600.150000px;}
.xc9_c00305{left:602.550000px;}
.xba_c00305{left:604.500000px;}
.xdc_c00305{left:611.550000px;}
.xe6_c00305{left:612.600000px;}
.xec_c00305{left:615.600000px;}
.x10d_c00305{left:617.100000px;}
.xa8_c00305{left:618.450000px;}
.x14e_c00305{left:619.500000px;}
.xd6_c00305{left:621.900000px;}
.x10a_c00305{left:624.150000px;}
.xe7_c00305{left:625.950000px;}
.xab_c00305{left:627.450000px;}
.x12f_c00305{left:629.100000px;}
.xf3_c00305{left:631.500000px;}
.x100_c00305{left:632.550000px;}
.xd1_c00305{left:635.700000px;}
.x12c_c00305{left:636.750000px;}
.xb3_c00305{left:639.150000px;}
.xc1_c00305{left:642.300000px;}
.xca_c00305{left:644.250000px;}
.x110_c00305{left:645.900000px;}
.x11e_c00305{left:647.250000px;}
.xac_c00305{left:649.800000px;}
.x111_c00305{left:653.100000px;}
.xe8_c00305{left:654.450000px;}
.xdd_c00305{left:655.500000px;}
.xe0_c00305{left:658.950000px;}
.xbb_c00305{left:660.750000px;}
.x133_c00305{left:662.700000px;}
.x116_c00305{left:665.700000px;}
.x13f_c00305{left:666.750000px;}
.xfb_c00305{left:668.250000px;}
.xe9_c00305{left:673.950000px;}
.x11b_c00305{left:675.000000px;}
.x138_c00305{left:676.950000px;}
.x12d_c00305{left:678.450000px;}
.x126_c00305{left:680.250000px;}
.x10e_c00305{left:683.700000px;}
.xe1_c00305{left:685.950000px;}
.xb4_c00305{left:688.500000px;}
.x11f_c00305{left:689.700000px;}
.xc2_c00305{left:691.200000px;}
.xad_c00305{left:692.250000px;}
.xcb_c00305{left:695.700000px;}
.xd7_c00305{left:697.800000px;}
.x11c_c00305{left:699.900000px;}
.xd2_c00305{left:701.550000px;}
.x134_c00305{left:708.000000px;}
.xea_c00305{left:710.250000px;}
.xf6_c00305{left:713.250000px;}
.x123_c00305{left:714.600000px;}
.x120_c00305{left:715.650000px;}
.xde_c00305{left:718.500000px;}
.x14f_c00305{left:720.450000px;}
.x143_c00305{left:723.150000px;}
.xc3_c00305{left:726.900000px;}
.x117_c00305{left:727.950000px;}
.x146_c00305{left:731.700000px;}
.x121_c00305{left:733.650000px;}
.xb5_c00305{left:735.000000px;}
.xed_c00305{left:736.950000px;}
.xbc_c00305{left:738.900000px;}
.xfc_c00305{left:741.000000px;}
.x108_c00305{left:742.200000px;}
.xae_c00305{left:743.700000px;}
.x101_c00305{left:745.650000px;}
.xee_c00305{left:747.750000px;}
.x13c_c00305{left:748.800000px;}
.xf7_c00305{left:750.750000px;}
.xe2_c00305{left:752.100000px;}
.xfa_c00305{left:753.300000px;}
.xc4_c00305{left:755.400000px;}
.xd8_c00305{left:756.450000px;}
.xb6_c00305{left:757.650000px;}
.x135_c00305{left:759.000000px;}
.xbd_c00305{left:762.300000px;}
.xcc_c00305{left:763.350000px;}
.xef_c00305{left:766.500000px;}
.x150_c00305{left:768.750000px;}
.x118_c00305{left:771.900000px;}
.x144_c00305{left:773.550000px;}
.x130_c00305{left:775.950000px;}
.x124_c00305{left:777.150000px;}
.xdf_c00305{left:778.950000px;}
.xc5_c00305{left:780.900000px;}
.x129_c00305{left:782.250000px;}
.x127_c00305{left:784.650000px;}
.xcd_c00305{left:786.450000px;}
.xf8_c00305{left:788.250000px;}
.xbe_c00305{left:792.150000px;}
.x140_c00305{left:794.250000px;}
.x136_c00305{left:795.750000px;}
.x102_c00305{left:799.350000px;}
.xc6_c00305{left:800.400000px;}
.x119_c00305{left:801.750000px;}
.x105_c00305{left:802.950000px;}
.xd3_c00305{left:804.900000px;}
.xd9_c00305{left:806.850000px;}
.xc7_c00305{left:810.900000px;}
.xfd_c00305{left:812.700000px;}
.xf0_c00305{left:815.400000px;}
.xbf_c00305{left:817.350000px;}
.xb7_c00305{left:820.350000px;}
.xce_c00305{left:823.950000px;}
.x139_c00305{left:825.900000px;}
.x11d_c00305{left:829.350000px;}
.x131_c00305{left:830.700000px;}
.xaf_c00305{left:832.200000px;}
.xc8_c00305{left:833.250000px;}
.xc0_c00305{left:835.650000px;}
.xb8_c00305{left:837.600000px;}
.xe3_c00305{left:838.950000px;}
.xb0_c00305{left:841.500000px;}
.x12e_c00305{left:845.400000px;}
.x13d_c00305{left:847.050000px;}
.x103_c00305{left:848.700000px;}
.x114_c00305{left:850.350000px;}
.xf1_c00305{left:852.150000px;}
.x109_c00305{left:853.500000px;}
.xda_c00305{left:855.900000px;}
.xb9_c00305{left:857.700000px;}
.xf9_c00305{left:861.600000px;}
.x122_c00305{left:862.950000px;}
.xe4_c00305{left:864.150000px;}
.xd4_c00305{left:866.100000px;}
.xb1_c00305{left:868.500000px;}
.xf4_c00305{left:872.400000px;}
.xcf_c00305{left:873.600000px;}
.x10f_c00305{left:875.550000px;}
.x112_c00305{left:878.400000px;}
.x10b_c00305{left:879.450000px;}
.xdb_c00305{left:880.800000px;}
.x137_c00305{left:882.300000px;}
.x13a_c00305{left:883.500000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls1_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:49.523810pt;}
.ws4_c00305{word-spacing:-76.190476pt;}
.ws0_c00305{word-spacing:-12.249322pt;}
.wsa_c00305{word-spacing:-3.267974pt;}
.wsb_c00305{word-spacing:0.000000pt;}
.ws8_c00305{word-spacing:4.166667pt;}
.ws6_c00305{word-spacing:14.451210pt;}
.ws2_c00305{word-spacing:14.920635pt;}
.ws1_c00305{word-spacing:16.111111pt;}
.ws9_c00305{word-spacing:26.031746pt;}
.ws5_c00305{word-spacing:35.555556pt;}
.ws7_c00305{word-spacing:48.969697pt;}
.ws3_c00305{word-spacing:54.444444pt;}
._1_c00305{margin-left:-49.523810pt;}
._0_c00305{width:49.523810pt;}
.fs7_c00305{font-size:21.333333pt;}
.fs3_c00305{font-size:32.000000pt;}
.fs6_c00305{font-size:37.333333pt;}
.fs4_c00305{font-size:48.000000pt;}
.fs2_c00305{font-size:53.333333pt;}
.fs0_c00305{font-size:58.666667pt;}
.fs5_c00305{font-size:64.000000pt;}
.fs1_c00305{font-size:90.666667pt;}
.y0_c00305{bottom:0.000000pt;}
.y68_c00305{bottom:170.800000pt;}
.y66_c00305{bottom:174.666667pt;}
.y65_c00305{bottom:187.466667pt;}
.y67_c00305{bottom:190.666667pt;}
.y64_c00305{bottom:200.000000pt;}
.y62_c00305{bottom:212.400000pt;}
.y63_c00305{bottom:212.533333pt;}
.y61_c00305{bottom:224.933333pt;}
.y60_c00305{bottom:229.733333pt;}
.y33_c00305{bottom:241.866667pt;}
.y5f_c00305{bottom:249.333333pt;}
.y5e_c00305{bottom:265.333333pt;}
.y32_c00305{bottom:265.866667pt;}
.y31_c00305{bottom:281.600000pt;}
.y30_c00305{bottom:296.666667pt;}
.y5d_c00305{bottom:303.733333pt;}
.y2f_c00305{bottom:311.866667pt;}
.y5c_c00305{bottom:315.866667pt;}
.y2e_c00305{bottom:327.600000pt;}
.y5b_c00305{bottom:332.533333pt;}
.y2d_c00305{bottom:343.333333pt;}
.y5a_c00305{bottom:348.533333pt;}
.y2c_c00305{bottom:359.066667pt;}
.y59_c00305{bottom:368.000000pt;}
.y2b_c00305{bottom:375.066667pt;}
.y58_c00305{bottom:383.733333pt;}
.y2a_c00305{bottom:390.400000pt;}
.y57_c00305{bottom:403.466667pt;}
.y29_c00305{bottom:406.266667pt;}
.y56_c00305{bottom:419.466667pt;}
.y28_c00305{bottom:422.000000pt;}
.y27_c00305{bottom:437.733333pt;}
.y55_c00305{bottom:446.800000pt;}
.y26_c00305{bottom:461.066667pt;}
.y54_c00305{bottom:466.933333pt;}
.y25_c00305{bottom:477.066667pt;}
.y53_c00305{bottom:486.800000pt;}
.y24_c00305{bottom:492.266667pt;}
.y52_c00305{bottom:503.066667pt;}
.y23_c00305{bottom:508.000000pt;}
.y51_c00305{bottom:519.066667pt;}
.y22_c00305{bottom:523.733333pt;}
.y50_c00305{bottom:535.066667pt;}
.y21_c00305{bottom:539.066667pt;}
.y4f_c00305{bottom:551.066667pt;}
.y20_c00305{bottom:554.400000pt;}
.y1f_c00305{bottom:570.133333pt;}
.y4e_c00305{bottom:573.066667pt;}
.y1e_c00305{bottom:585.866667pt;}
.y4d_c00305{bottom:586.933333pt;}
.y4c_c00305{bottom:600.000000pt;}
.y1d_c00305{bottom:602.133333pt;}
.y4b_c00305{bottom:615.733333pt;}
.y1c_c00305{bottom:617.866667pt;}
.y4a_c00305{bottom:632.400000pt;}
.y1b_c00305{bottom:637.066667pt;}
.y1a_c00305{bottom:648.533333pt;}
.y49_c00305{bottom:648.666667pt;}
.y19_c00305{bottom:662.666667pt;}
.y48_c00305{bottom:670.666667pt;}
.y18_c00305{bottom:674.266667pt;}
.y47_c00305{bottom:688.000000pt;}
.y17_c00305{bottom:688.400000pt;}
.y16_c00305{bottom:699.866667pt;}
.y46_c00305{bottom:703.733333pt;}
.y15_c00305{bottom:713.600000pt;}
.y45_c00305{bottom:721.333333pt;}
.y14_c00305{bottom:725.466667pt;}
.y44_c00305{bottom:738.933333pt;}
.y13_c00305{bottom:739.200000pt;}
.y12_c00305{bottom:752.000000pt;}
.y11_c00305{bottom:765.066667pt;}
.y43_c00305{bottom:766.133333pt;}
.y10_c00305{bottom:777.600000pt;}
.y42_c00305{bottom:782.800000pt;}
.yf_c00305{bottom:789.466667pt;}
.y41_c00305{bottom:799.066667pt;}
.ye_c00305{bottom:804.533333pt;}
.y40_c00305{bottom:814.400000pt;}
.yd_c00305{bottom:824.533333pt;}
.y3f_c00305{bottom:830.400000pt;}
.yc_c00305{bottom:840.266667pt;}
.y3e_c00305{bottom:852.266667pt;}
.yb_c00305{bottom:856.266667pt;}
.y3d_c00305{bottom:869.600000pt;}
.ya_c00305{bottom:872.000000pt;}
.y3c_c00305{bottom:885.600000pt;}
.y9_c00305{bottom:895.066667pt;}
.y3b_c00305{bottom:902.933333pt;}
.y8_c00305{bottom:911.333333pt;}
.y3a_c00305{bottom:917.333333pt;}
.y7_c00305{bottom:926.666667pt;}
.y39_c00305{bottom:933.600000pt;}
.y6_c00305{bottom:942.666667pt;}
.y38_c00305{bottom:949.600000pt;}
.y5_c00305{bottom:958.666667pt;}
.y37_c00305{bottom:965.600000pt;}
.y4_c00305{bottom:977.200000pt;}
.y36_c00305{bottom:981.333333pt;}
.y3_c00305{bottom:993.866667pt;}
.y35_c00305{bottom:997.066667pt;}
.y1_c00305{bottom:1015.066667pt;}
.y2_c00305{bottom:1018.000000pt;}
.y34_c00305{bottom:1056.000000pt;}
.h9_c00305{height:21.333333pt;}
.h5_c00305{height:32.000000pt;}
.h8_c00305{height:37.333333pt;}
.h6_c00305{height:48.000000pt;}
.h4_c00305{height:53.333333pt;}
.h2_c00305{height:58.666667pt;}
.h7_c00305{height:64.000000pt;}
.h3_c00305{height:90.666667pt;}
.h0_c00305{height:1130.559977pt;}
.h1_c00305{height:1130.666667pt;}
.w1_c00305{width:854.666667pt;}
.w0_c00305{width:854.720052pt;}
.x0_c00305{left:0.000000pt;}
.x1_c00305{left:163.466667pt;}
.x2_c00305{left:169.866667pt;}
.x32_c00305{left:172.133333pt;}
.x6d_c00305{left:175.066667pt;}
.x90_c00305{left:177.866667pt;}
.x14b_c00305{left:180.000000pt;}
.x147_c00305{left:181.066667pt;}
.xa7_c00305{left:183.066667pt;}
.x4c_c00305{left:185.600000pt;}
.x9_c00305{left:186.666667pt;}
.x13_c00305{left:188.266667pt;}
.x1a_c00305{left:189.466667pt;}
.x73_c00305{left:190.800000pt;}
.x77_c00305{left:191.733333pt;}
.x88_c00305{left:193.600000pt;}
.x9e_c00305{left:195.200000pt;}
.x1b_c00305{left:196.133333pt;}
.x53_c00305{left:198.400000pt;}
.x59_c00305{left:199.733333pt;}
.x60_c00305{left:201.866667pt;}
.x98_c00305{left:202.933333pt;}
.xc_c00305{left:204.400000pt;}
.x89_c00305{left:209.333333pt;}
.x33_c00305{left:211.200000pt;}
.x4_c00305{left:212.133333pt;}
.x38_c00305{left:214.533333pt;}
.xa6_c00305{left:216.000000pt;}
.x24_c00305{left:217.866667pt;}
.x1c_c00305{left:219.466667pt;}
.x14_c00305{left:220.933333pt;}
.x7f_c00305{left:223.733333pt;}
.x3d_c00305{left:224.666667pt;}
.x8a_c00305{left:227.600000pt;}
.x8e_c00305{left:229.733333pt;}
.x74_c00305{left:232.400000pt;}
.x91_c00305{left:233.866667pt;}
.x5a_c00305{left:234.933333pt;}
.x1d_c00305{left:236.400000pt;}
.x7b_c00305{left:238.000000pt;}
.xa_c00305{left:240.133333pt;}
.x3e_c00305{left:241.333333pt;}
.x1e_c00305{left:243.466667pt;}
.x9c_c00305{left:246.133333pt;}
.x5_c00305{left:247.066667pt;}
.x6e_c00305{left:250.000000pt;}
.x49_c00305{left:251.333333pt;}
.x41_c00305{left:252.400000pt;}
.x7c_c00305{left:253.333333pt;}
.x4d_c00305{left:254.800000pt;}
.x6b_c00305{left:256.133333pt;}
.x1f_c00305{left:257.866667pt;}
.x5e_c00305{left:259.466667pt;}
.xa3_c00305{left:261.066667pt;}
.x92_c00305{left:262.666667pt;}
.x2d_c00305{left:265.466667pt;}
.x25_c00305{left:267.733333pt;}
.x64_c00305{left:269.466667pt;}
.x8f_c00305{left:271.066667pt;}
.xd_c00305{left:274.133333pt;}
.x5f_c00305{left:275.466667pt;}
.x20_c00305{left:277.333333pt;}
.x8b_c00305{left:279.466667pt;}
.x45_c00305{left:281.200000pt;}
.x65_c00305{left:282.800000pt;}
.x6f_c00305{left:284.266667pt;}
.x15_c00305{left:286.266667pt;}
.x66_c00305{left:288.533333pt;}
.xb_c00305{left:289.466667pt;}
.x96_c00305{left:292.533333pt;}
.x4a_c00305{left:295.200000pt;}
.x42_c00305{left:296.533333pt;}
.xe_c00305{left:297.466667pt;}
.x2e_c00305{left:299.733333pt;}
.x34_c00305{left:301.333333pt;}
.x26_c00305{left:304.266667pt;}
.x21_c00305{left:306.800000pt;}
.x5b_c00305{left:308.266667pt;}
.x27_c00305{left:312.266667pt;}
.x80_c00305{left:314.933333pt;}
.x78_c00305{left:316.266667pt;}
.x3f_c00305{left:317.466667pt;}
.x4e_c00305{left:318.800000pt;}
.xf_c00305{left:320.133333pt;}
.x6c_c00305{left:321.066667pt;}
.x70_c00305{left:322.666667pt;}
.x93_c00305{left:324.133333pt;}
.x4f_c00305{left:325.466667pt;}
.x35_c00305{left:326.666667pt;}
.x7d_c00305{left:329.466667pt;}
.x16_c00305{left:330.400000pt;}
.x50_c00305{left:331.866667pt;}
.x2f_c00305{left:333.600000pt;}
.x84_c00305{left:335.866667pt;}
.x57_c00305{left:337.066667pt;}
.x51_c00305{left:338.266667pt;}
.x6_c00305{left:339.200000pt;}
.x10_c00305{left:340.266667pt;}
.x97_c00305{left:341.866667pt;}
.x148_c00305{left:342.933333pt;}
.x54_c00305{left:344.266667pt;}
.x8c_c00305{left:345.333333pt;}
.x61_c00305{left:346.400000pt;}
.x5c_c00305{left:348.000000pt;}
.x43_c00305{left:350.000000pt;}
.x67_c00305{left:352.800000pt;}
.x85_c00305{left:354.133333pt;}
.x7e_c00305{left:355.333333pt;}
.x4b_c00305{left:357.333333pt;}
.xa4_c00305{left:358.800000pt;}
.x28_c00305{left:360.533333pt;}
.x5d_c00305{left:361.466667pt;}
.x62_c00305{left:362.400000pt;}
.x75_c00305{left:364.266667pt;}
.x68_c00305{left:365.600000pt;}
.xa2_c00305{left:367.333333pt;}
.x17_c00305{left:369.066667pt;}
.x11_c00305{left:370.400000pt;}
.x46_c00305{left:372.266667pt;}
.x94_c00305{left:373.733333pt;}
.x87_c00305{left:374.666667pt;}
.x79_c00305{left:375.866667pt;}
.x39_c00305{left:377.600000pt;}
.x69_c00305{left:379.066667pt;}
.x9a_c00305{left:382.400000pt;}
.x6a_c00305{left:385.733333pt;}
.x29_c00305{left:386.800000pt;}
.x3_c00305{left:388.400000pt;}
.x71_c00305{left:390.533333pt;}
.x30_c00305{left:392.133333pt;}
.x2a_c00305{left:393.466667pt;}
.x7a_c00305{left:394.400000pt;}
.x9b_c00305{left:398.133333pt;}
.x47_c00305{left:399.200000pt;}
.x63_c00305{left:400.800000pt;}
.x2b_c00305{left:402.800000pt;}
.x44_c00305{left:405.333333pt;}
.x55_c00305{left:406.666667pt;}
.x22_c00305{left:407.600000pt;}
.x18_c00305{left:409.333333pt;}
.x7_c00305{left:410.933333pt;}
.x81_c00305{left:414.400000pt;}
.x2c_c00305{left:416.266667pt;}
.x8d_c00305{left:417.333333pt;}
.x3a_c00305{left:418.933333pt;}
.x12_c00305{left:420.933333pt;}
.x8_c00305{left:421.866667pt;}
.x36_c00305{left:423.733333pt;}
.x40_c00305{left:424.666667pt;}
.x31_c00305{left:427.333333pt;}
.xa5_c00305{left:430.533333pt;}
.x82_c00305{left:432.266667pt;}
.x56_c00305{left:433.200000pt;}
.x3b_c00305{left:434.933333pt;}
.x76_c00305{left:436.266667pt;}
.x86_c00305{left:438.266667pt;}
.x9d_c00305{left:441.333333pt;}
.x14c_c00305{left:442.933333pt;}
.xa0_c00305{left:444.266667pt;}
.x72_c00305{left:445.200000pt;}
.x19_c00305{left:446.133333pt;}
.x99_c00305{left:447.333333pt;}
.x3c_c00305{left:449.600000pt;}
.xa1_c00305{left:451.333333pt;}
.x9f_c00305{left:452.533333pt;}
.x23_c00305{left:454.000000pt;}
.x48_c00305{left:457.066667pt;}
.x58_c00305{left:458.933333pt;}
.x52_c00305{left:460.133333pt;}
.x37_c00305{left:461.866667pt;}
.x83_c00305{left:463.600000pt;}
.x95_c00305{left:466.133333pt;}
.x149_c00305{left:467.066667pt;}
.x14a_c00305{left:473.733333pt;}
.xeb_c00305{left:488.000000pt;}
.xfe_c00305{left:489.866667pt;}
.x10c_c00305{left:490.933333pt;}
.x115_c00305{left:492.133333pt;}
.x128_c00305{left:493.733333pt;}
.x132_c00305{left:495.333333pt;}
.x13b_c00305{left:496.266667pt;}
.x14d_c00305{left:498.533333pt;}
.xb2_c00305{left:502.533333pt;}
.xd5_c00305{left:503.600000pt;}
.xf5_c00305{left:504.800000pt;}
.x106_c00305{left:506.400000pt;}
.x11a_c00305{left:507.866667pt;}
.x125_c00305{left:509.333333pt;}
.x12a_c00305{left:510.400000pt;}
.x13e_c00305{left:512.000000pt;}
.x141_c00305{left:513.066667pt;}
.x145_c00305{left:514.400000pt;}
.x113_c00305{left:516.800000pt;}
.xa9_c00305{left:519.066667pt;}
.xe5_c00305{left:520.533333pt;}
.xff_c00305{left:521.600000pt;}
.x104_c00305{left:523.066667pt;}
.x12b_c00305{left:526.666667pt;}
.x107_c00305{left:528.000000pt;}
.x142_c00305{left:529.600000pt;}
.xd0_c00305{left:530.800000pt;}
.xf2_c00305{left:532.266667pt;}
.xaa_c00305{left:533.466667pt;}
.xc9_c00305{left:535.600000pt;}
.xba_c00305{left:537.333333pt;}
.xdc_c00305{left:543.600000pt;}
.xe6_c00305{left:544.533333pt;}
.xec_c00305{left:547.200000pt;}
.x10d_c00305{left:548.533333pt;}
.xa8_c00305{left:549.733333pt;}
.x14e_c00305{left:550.666667pt;}
.xd6_c00305{left:552.800000pt;}
.x10a_c00305{left:554.800000pt;}
.xe7_c00305{left:556.400000pt;}
.xab_c00305{left:557.733333pt;}
.x12f_c00305{left:559.200000pt;}
.xf3_c00305{left:561.333333pt;}
.x100_c00305{left:562.266667pt;}
.xd1_c00305{left:565.066667pt;}
.x12c_c00305{left:566.000000pt;}
.xb3_c00305{left:568.133333pt;}
.xc1_c00305{left:570.933333pt;}
.xca_c00305{left:572.666667pt;}
.x110_c00305{left:574.133333pt;}
.x11e_c00305{left:575.333333pt;}
.xac_c00305{left:577.600000pt;}
.x111_c00305{left:580.533333pt;}
.xe8_c00305{left:581.733333pt;}
.xdd_c00305{left:582.666667pt;}
.xe0_c00305{left:585.733333pt;}
.xbb_c00305{left:587.333333pt;}
.x133_c00305{left:589.066667pt;}
.x116_c00305{left:591.733333pt;}
.x13f_c00305{left:592.666667pt;}
.xfb_c00305{left:594.000000pt;}
.xe9_c00305{left:599.066667pt;}
.x11b_c00305{left:600.000000pt;}
.x138_c00305{left:601.733333pt;}
.x12d_c00305{left:603.066667pt;}
.x126_c00305{left:604.666667pt;}
.x10e_c00305{left:607.733333pt;}
.xe1_c00305{left:609.733333pt;}
.xb4_c00305{left:612.000000pt;}
.x11f_c00305{left:613.066667pt;}
.xc2_c00305{left:614.400000pt;}
.xad_c00305{left:615.333333pt;}
.xcb_c00305{left:618.400000pt;}
.xd7_c00305{left:620.266667pt;}
.x11c_c00305{left:622.133333pt;}
.xd2_c00305{left:623.600000pt;}
.x134_c00305{left:629.333333pt;}
.xea_c00305{left:631.333333pt;}
.xf6_c00305{left:634.000000pt;}
.x123_c00305{left:635.200000pt;}
.x120_c00305{left:636.133333pt;}
.xde_c00305{left:638.666667pt;}
.x14f_c00305{left:640.400000pt;}
.x143_c00305{left:642.800000pt;}
.xc3_c00305{left:646.133333pt;}
.x117_c00305{left:647.066667pt;}
.x146_c00305{left:650.400000pt;}
.x121_c00305{left:652.133333pt;}
.xb5_c00305{left:653.333333pt;}
.xed_c00305{left:655.066667pt;}
.xbc_c00305{left:656.800000pt;}
.xfc_c00305{left:658.666667pt;}
.x108_c00305{left:659.733333pt;}
.xae_c00305{left:661.066667pt;}
.x101_c00305{left:662.800000pt;}
.xee_c00305{left:664.666667pt;}
.x13c_c00305{left:665.600000pt;}
.xf7_c00305{left:667.333333pt;}
.xe2_c00305{left:668.533333pt;}
.xfa_c00305{left:669.600000pt;}
.xc4_c00305{left:671.466667pt;}
.xd8_c00305{left:672.400000pt;}
.xb6_c00305{left:673.466667pt;}
.x135_c00305{left:674.666667pt;}
.xbd_c00305{left:677.600000pt;}
.xcc_c00305{left:678.533333pt;}
.xef_c00305{left:681.333333pt;}
.x150_c00305{left:683.333333pt;}
.x118_c00305{left:686.133333pt;}
.x144_c00305{left:687.600000pt;}
.x130_c00305{left:689.733333pt;}
.x124_c00305{left:690.800000pt;}
.xdf_c00305{left:692.400000pt;}
.xc5_c00305{left:694.133333pt;}
.x129_c00305{left:695.333333pt;}
.x127_c00305{left:697.466667pt;}
.xcd_c00305{left:699.066667pt;}
.xf8_c00305{left:700.666667pt;}
.xbe_c00305{left:704.133333pt;}
.x140_c00305{left:706.000000pt;}
.x136_c00305{left:707.333333pt;}
.x102_c00305{left:710.533333pt;}
.xc6_c00305{left:711.466667pt;}
.x119_c00305{left:712.666667pt;}
.x105_c00305{left:713.733333pt;}
.xd3_c00305{left:715.466667pt;}
.xd9_c00305{left:717.200000pt;}
.xc7_c00305{left:720.800000pt;}
.xfd_c00305{left:722.400000pt;}
.xf0_c00305{left:724.800000pt;}
.xbf_c00305{left:726.533333pt;}
.xb7_c00305{left:729.200000pt;}
.xce_c00305{left:732.400000pt;}
.x139_c00305{left:734.133333pt;}
.x11d_c00305{left:737.200000pt;}
.x131_c00305{left:738.400000pt;}
.xaf_c00305{left:739.733333pt;}
.xc8_c00305{left:740.666667pt;}
.xc0_c00305{left:742.800000pt;}
.xb8_c00305{left:744.533333pt;}
.xe3_c00305{left:745.733333pt;}
.xb0_c00305{left:748.000000pt;}
.x12e_c00305{left:751.466667pt;}
.x13d_c00305{left:752.933333pt;}
.x103_c00305{left:754.400000pt;}
.x114_c00305{left:755.866667pt;}
.xf1_c00305{left:757.466667pt;}
.x109_c00305{left:758.666667pt;}
.xda_c00305{left:760.800000pt;}
.xb9_c00305{left:762.400000pt;}
.xf9_c00305{left:765.866667pt;}
.x122_c00305{left:767.066667pt;}
.xe4_c00305{left:768.133333pt;}
.xd4_c00305{left:769.866667pt;}
.xb1_c00305{left:772.000000pt;}
.xf4_c00305{left:775.466667pt;}
.xcf_c00305{left:776.533333pt;}
.x10f_c00305{left:778.266667pt;}
.x112_c00305{left:780.800000pt;}
.x10b_c00305{left:781.733333pt;}
.xdb_c00305{left:782.933333pt;}
.x137_c00305{left:784.266667pt;}
.x13a_c00305{left:785.333333pt;}
}





/* 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_c00306 {
    display:none;
  }
  .loading-indicator_c00306.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00306 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_c00306 { 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_c00306" -> "#page-container .classname_c00306")
 */
.pf_c00306 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00306 { /* 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_c00306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00306 { /* 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_c00306 { /* 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_c00306 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00306 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00306 {overflow:visible;}
  }
}
.c_c00306 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00306 { /* 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_c00306:after { /* webkit #35443 */
  content: '';
}
.t_c00306:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00306 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 */
}
.__c00306 { /* 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_c00306 { /* info for Javascript */
  display:none;
}
.l_c00306 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00306 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00306 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00306: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_c00306 {
    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_c00306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00306.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_c00306 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00306;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.000000;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;}
.m9a_c00306{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00306{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.maf_c00306{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00306{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00306{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00306{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m72_c00306{transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);}
.m87_c00306{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00306{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00306{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m98_c00306{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00306{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00306{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00306{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m61_c00306{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m115_c00306{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m52_c00306{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m132_c00306{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00306{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m92_c00306{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00306{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m59_c00306{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m51_c00306{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00306{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m28_c00306{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00306{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00306{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m57_c00306{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m53_c00306{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m46_c00306{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00306{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m127_c00306{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.me_c00306{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00306{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00306{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m128_c00306{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m107_c00306{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00306{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m24_c00306{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m102_c00306{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m104_c00306{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m58_c00306{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mff_c00306{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m135_c00306{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00306{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00306{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m48_c00306{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md8_c00306{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m60_c00306{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m83_c00306{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00306{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md9_c00306{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m78_c00306{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.meb_c00306{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m16_c00306{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m93_c00306{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00306{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.me4_c00306{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m39_c00306{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m49_c00306{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00306{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m129_c00306{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mce_c00306{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00306{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00306{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m86_c00306{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m12_c00306{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m23_c00306{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m101_c00306{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.md5_c00306{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m119_c00306{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00306{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.me6_c00306{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00306{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m22_c00306{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9_c00306{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m85_c00306{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00306{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00306{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m118_c00306{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m29_c00306{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00306{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m81_c00306{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00306{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00306{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m14_c00306{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m134_c00306{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00306{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00306{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00306{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m76_c00306{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m40_c00306{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me7_c00306{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m126_c00306{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00306{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00306{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00306{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m99_c00306{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00306{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.me8_c00306{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m19_c00306{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md1_c00306{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00306{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00306{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m95_c00306{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m113_c00306{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m42_c00306{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m94_c00306{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00306{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00306{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m130_c00306{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00306{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00306{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me5_c00306{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m88_c00306{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m91_c00306{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m82_c00306{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00306{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mab_c00306{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00306{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00306{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6_c00306{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m26_c00306{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4_c00306{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00306{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00306{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m96_c00306{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m43_c00306{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m21_c00306{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00306{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00306{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00306{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m123_c00306{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00306{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md4_c00306{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m124_c00306{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m36_c00306{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00306{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m89_c00306{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md7_c00306{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me0_c00306{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00306{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00306{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00306{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00306{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00306{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m15_c00306{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00306{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00306{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m10_c00306{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mae_c00306{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m90_c00306{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00306{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00306{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m84_c00306{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md3_c00306{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00306{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m114_c00306{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00306{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m30_c00306{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00306{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m11_c00306{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m38_c00306{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mca_c00306{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00306{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00306{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00306{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m75_c00306{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00306{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00306{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00306{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m112_c00306{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00306{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00306{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m116_c00306{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00306{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00306{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00306{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m111_c00306{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00306{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00306{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mda_c00306{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m27_c00306{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m67_c00306{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m105_c00306{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mb_c00306{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m31_c00306{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00306{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m35_c00306{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m97_c00306{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00306{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m50_c00306{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00306{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m34_c00306{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00306{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00306{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m77_c00306{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00306{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m66_c00306{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00306{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.ma_c00306{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00306{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m45_c00306{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m79_c00306{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00306{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5_c00306{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00306{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00306{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf_c00306{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00306{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00306{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mee_c00306{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me3_c00306{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00306{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00306{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00306{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8_c00306{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m18_c00306{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00306{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m109_c00306{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m37_c00306{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m41_c00306{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00306{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00306{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m54_c00306{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m25_c00306{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m13_c00306{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m20_c00306{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00306{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m100_c00306{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00306{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00306{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00306{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m106_c00306{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m47_c00306{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00306{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m33_c00306{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00306{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.med_c00306{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00306{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00306{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00306{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7_c00306{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00306{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00306{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m32_c00306{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m70_c00306{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m121_c00306{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3_c00306{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m73_c00306{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me2_c00306{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00306{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m69_c00306{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m131_c00306{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00306{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00306{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m80_c00306{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00306{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m117_c00306{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m120_c00306{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00306{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00306{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mba_c00306{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m133_c00306{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);}
.mad_c00306{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m71_c00306{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m64_c00306{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m63_c00306{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m122_c00306{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md2_c00306{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00306{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00306{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2_c00306{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00306{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me9_c00306{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m110_c00306{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m55_c00306{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mde_c00306{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m62_c00306{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00306{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mac_c00306{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00306{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m44_c00306{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00306{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00306{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mef_c00306{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md6_c00306{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mec_c00306{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m17_c00306{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00306{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00306{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mea_c00306{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m125_c00306{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00306{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me1_c00306{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m74_c00306{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00306{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00306{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.md_c00306{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mc_c00306{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m56_c00306{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.md0_c00306{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00306{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00306{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.maa_c00306{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m108_c00306{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m103_c00306{transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);}
.m0_c00306{transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);}
.m65_c00306{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m68_c00306{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls1_c00306{letter-spacing:0.000000px;}
.ls0_c00306{letter-spacing:55.714286px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{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__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00306{word-spacing:-85.714286px;}
.wsa_c00306{word-spacing:-11.489960px;}
.ws7_c00306{word-spacing:-8.207547px;}
.ws10_c00306{word-spacing:-4.166667px;}
.ws1_c00306{word-spacing:-3.125000px;}
.ws11_c00306{word-spacing:0.000000px;}
.wsd_c00306{word-spacing:6.052632px;}
.ws0_c00306{word-spacing:9.562500px;}
.ws5_c00306{word-spacing:10.637002px;}
.ws4_c00306{word-spacing:13.447307px;}
.ws2_c00306{word-spacing:15.000000px;}
.wsf_c00306{word-spacing:16.673307px;}
.wse_c00306{word-spacing:22.142857px;}
.ws8_c00306{word-spacing:22.812500px;}
.ws9_c00306{word-spacing:25.714286px;}
.wsb_c00306{word-spacing:28.426230px;}
.wsc_c00306{word-spacing:67.333333px;}
.ws6_c00306{word-spacing:148.643527px;}
._0_c00306{margin-left:-55.714286px;}
._2_c00306{width:52.142857px;}
._3_c00306{width:59.285714px;}
._1_c00306{width:71.562500px;}
.fc0_c00306{color:transparent;}
.fs5_c00306{font-size:36.000000px;}
.fs6_c00306{font-size:48.000000px;}
.fs4_c00306{font-size:54.000000px;}
.fs3_c00306{font-size:60.000000px;}
.fs2_c00306{font-size:66.000000px;}
.fs1_c00306{font-size:72.000000px;}
.fs0_c00306{font-size:84.000000px;}
.y0_c00306{bottom:0.000000px;}
.y6a_c00306{bottom:184.650000px;}
.y39_c00306{bottom:185.700000px;}
.y38_c00306{bottom:203.400000px;}
.y69_c00306{bottom:207.300000px;}
.y37_c00306{bottom:221.100000px;}
.y68_c00306{bottom:225.300000px;}
.y36_c00306{bottom:239.100000px;}
.y67_c00306{bottom:243.300000px;}
.y3b_c00306{bottom:256.650000px;}
.y35_c00306{bottom:257.100000px;}
.y66_c00306{bottom:261.300000px;}
.y34_c00306{bottom:275.100000px;}
.y65_c00306{bottom:283.950000px;}
.y33_c00306{bottom:292.650000px;}
.y64_c00306{bottom:301.650000px;}
.y32_c00306{bottom:310.350000px;}
.y31_c00306{bottom:328.350000px;}
.y30_c00306{bottom:345.900000px;}
.y63_c00306{bottom:346.350000px;}
.y2f_c00306{bottom:363.600000px;}
.y62_c00306{bottom:363.900000px;}
.y2e_c00306{bottom:381.600000px;}
.y61_c00306{bottom:385.800000px;}
.y2d_c00306{bottom:399.300000px;}
.y60_c00306{bottom:403.500000px;}
.y2c_c00306{bottom:417.300000px;}
.y5f_c00306{bottom:421.200000px;}
.y2b_c00306{bottom:434.850000px;}
.y5e_c00306{bottom:443.250000px;}
.y2a_c00306{bottom:452.850000px;}
.y5d_c00306{bottom:461.250000px;}
.y29_c00306{bottom:470.850000px;}
.y5c_c00306{bottom:479.250000px;}
.y5b_c00306{bottom:497.250000px;}
.y28_c00306{bottom:497.550000px;}
.y5a_c00306{bottom:515.250000px;}
.y27_c00306{bottom:515.550000px;}
.y59_c00306{bottom:533.250000px;}
.y26_c00306{bottom:533.550000px;}
.y58_c00306{bottom:550.950000px;}
.y25_c00306{bottom:551.100000px;}
.y57_c00306{bottom:568.950000px;}
.y24_c00306{bottom:569.100000px;}
.y56_c00306{bottom:586.950000px;}
.y23_c00306{bottom:587.100000px;}
.y55_c00306{bottom:604.950000px;}
.y22_c00306{bottom:605.100000px;}
.y21_c00306{bottom:622.650000px;}
.y54_c00306{bottom:640.350000px;}
.y20_c00306{bottom:640.650000px;}
.y1f_c00306{bottom:658.350000px;}
.y1e_c00306{bottom:676.050000px;}
.y53_c00306{bottom:676.350000px;}
.y1d_c00306{bottom:694.050000px;}
.y1c_c00306{bottom:711.750000px;}
.y52_c00306{bottom:714.600000px;}
.y51_c00306{bottom:728.700000px;}
.y1b_c00306{bottom:729.750000px;}
.y50_c00306{bottom:743.400000px;}
.y19_c00306{bottom:756.150000px;}
.y4f_c00306{bottom:757.800000px;}
.y18_c00306{bottom:769.050000px;}
.y4e_c00306{bottom:772.500000px;}
.y17_c00306{bottom:785.250000px;}
.y4d_c00306{bottom:786.600000px;}
.y16_c00306{bottom:799.950000px;}
.y4c_c00306{bottom:801.300000px;}
.y15_c00306{bottom:811.050000px;}
.y4b_c00306{bottom:813.900000px;}
.y14_c00306{bottom:828.000000px;}
.y4a_c00306{bottom:829.050000px;}
.y13_c00306{bottom:841.650000px;}
.y49_c00306{bottom:846.750000px;}
.y12_c00306{bottom:856.050000px;}
.y48_c00306{bottom:864.750000px;}
.y1a_c00306{bottom:870.150000px;}
.y11_c00306{bottom:870.450000px;}
.y47_c00306{bottom:882.750000px;}
.y10_c00306{bottom:883.350000px;}
.yf_c00306{bottom:901.050000px;}
.y46_c00306{bottom:904.200000px;}
.y45_c00306{bottom:921.900000px;}
.ye_c00306{bottom:922.200000px;}
.y44_c00306{bottom:939.600000px;}
.yd_c00306{bottom:942.750000px;}
.y43_c00306{bottom:957.600000px;}
.yc_c00306{bottom:960.450000px;}
.yb_c00306{bottom:978.450000px;}
.y42_c00306{bottom:978.750000px;}
.y3a_c00306{bottom:982.800000px;}
.y41_c00306{bottom:997.500000px;}
.ya_c00306{bottom:1000.500000px;}
.y9_c00306{bottom:1022.100000px;}
.y40_c00306{bottom:1023.450000px;}
.y8_c00306{bottom:1040.400000px;}
.y3f_c00306{bottom:1042.200000px;}
.y7_c00306{bottom:1057.650000px;}
.y3e_c00306{bottom:1059.900000px;}
.y6_c00306{bottom:1075.650000px;}
.y3d_c00306{bottom:1082.100000px;}
.y5_c00306{bottom:1092.900000px;}
.y3c_c00306{bottom:1100.100000px;}
.y4_c00306{bottom:1115.250000px;}
.y3_c00306{bottom:1118.100000px;}
.y1_c00306{bottom:1143.300000px;}
.y2_c00306{bottom:1144.800000px;}
.h7_c00306{height:36.000000px;}
.h8_c00306{height:48.000000px;}
.h6_c00306{height:54.000000px;}
.h5_c00306{height:60.000000px;}
.h4_c00306{height:66.000000px;}
.h3_c00306{height:72.000000px;}
.h2_c00306{height:84.000000px;}
.h1_c00306{height:1269.750000px;}
.h0_c00306{height:1270.080048px;}
.w1_c00306{width:961.500000px;}
.w0_c00306{width:961.560058px;}
.x0_c00306{left:0.000000px;}
.xb_c00306{left:66.300000px;}
.x30_c00306{left:68.100000px;}
.x68_c00306{left:71.250000px;}
.x90_c00306{left:75.600000px;}
.x11_c00306{left:83.850000px;}
.x29_c00306{left:85.050000px;}
.x44_c00306{left:86.100000px;}
.x71_c00306{left:88.350000px;}
.x6c_c00306{left:89.550000px;}
.x80_c00306{left:90.600000px;}
.x31_c00306{left:91.800000px;}
.x8e_c00306{left:93.150000px;}
.x9d_c00306{left:94.650000px;}
.x63_c00306{left:96.450000px;}
.x55_c00306{left:97.950000px;}
.x12_c00306{left:103.650000px;}
.x45_c00306{left:105.600000px;}
.x81_c00306{left:109.650000px;}
.x32_c00306{left:111.600000px;}
.xab_c00306{left:112.650000px;}
.xc_c00306{left:113.850000px;}
.xa6_c00306{left:115.500000px;}
.x1b_c00306{left:118.650000px;}
.x5c_c00306{left:120.150000px;}
.x5e_c00306{left:121.200000px;}
.x22_c00306{left:122.550000px;}
.x2d_c00306{left:124.800000px;}
.x91_c00306{left:127.500000px;}
.x48_c00306{left:128.550000px;}
.xa1_c00306{left:130.650000px;}
.x87_c00306{left:135.150000px;}
.x1c_c00306{left:136.350000px;}
.x5d_c00306{left:139.500000px;}
.x5f_c00306{left:141.000000px;}
.x9a_c00306{left:143.550000px;}
.x2e_c00306{left:145.950000px;}
.x39_c00306{left:147.300000px;}
.xd_c00306{left:150.900000px;}
.x46_c00306{left:153.150000px;}
.x69_c00306{left:154.800000px;}
.xa9_c00306{left:156.450000px;}
.x1d_c00306{left:158.250000px;}
.x72_c00306{left:159.600000px;}
.x13_c00306{left:160.950000px;}
.x9e_c00306{left:164.550000px;}
.x23_c00306{left:168.600000px;}
.x7a_c00306{left:170.250000px;}
.x96_c00306{left:173.850000px;}
.x33_c00306{left:176.700000px;}
.x56_c00306{left:178.200000px;}
.x2f_c00306{left:179.400000px;}
.xa5_c00306{left:181.050000px;}
.x60_c00306{left:182.100000px;}
.x14_c00306{left:183.300000px;}
.x50_c00306{left:184.950000px;}
.x98_c00306{left:187.650000px;}
.x89_c00306{left:189.300000px;}
.x1e_c00306{left:190.350000px;}
.x15_c00306{left:192.300000px;}
.x6d_c00306{left:195.300000px;}
.x58_c00306{left:198.750000px;}
.x57_c00306{left:199.800000px;}
.x76_c00306{left:201.750000px;}
.x47_c00306{left:202.800000px;}
.x24_c00306{left:204.600000px;}
.xad_c00306{left:205.800000px;}
.x51_c00306{left:207.000000px;}
.x16_c00306{left:208.500000px;}
.xac_c00306{left:210.300000px;}
.x99_c00306{left:211.350000px;}
.x6a_c00306{left:212.400000px;}
.x52_c00306{left:213.900000px;}
.x83_c00306{left:214.950000px;}
.x92_c00306{left:217.050000px;}
.x3f_c00306{left:218.550000px;}
.x3a_c00306{left:220.800000px;}
.x7d_c00306{left:223.800000px;}
.x34_c00306{left:226.800000px;}
.x59_c00306{left:228.600000px;}
.x49_c00306{left:229.650000px;}
.x25_c00306{left:231.900000px;}
.x40_c00306{left:233.700000px;}
.x17_c00306{left:235.200000px;}
.x53_c00306{left:236.250000px;}
.x84_c00306{left:240.900000px;}
.x1f_c00306{left:243.000000px;}
.x97_c00306{left:244.800000px;}
.x73_c00306{left:246.300000px;}
.x7e_c00306{left:247.500000px;}
.x4a_c00306{left:248.700000px;}
.x5a_c00306{left:250.200000px;}
.x7b_c00306{left:252.450000px;}
.x93_c00306{left:253.800000px;}
.x9f_c00306{left:254.850000px;}
.x18_c00306{left:256.500000px;}
.xe_c00306{left:258.150000px;}
.xaa_c00306{left:259.950000px;}
.x35_c00306{left:261.750000px;}
.xa2_c00306{left:263.700000px;}
.x61_c00306{left:265.650000px;}
.x74_c00306{left:267.600000px;}
.x64_c00306{left:272.700000px;}
.x3b_c00306{left:274.350000px;}
.x6e_c00306{left:275.850000px;}
.x4f_c00306{left:277.050000px;}
.x2a_c00306{left:279.450000px;}
.x36_c00306{left:280.800000px;}
.xae_c00306{left:282.000000px;}
.xb1_c00306{left:283.350000px;}
.x8f_c00306{left:284.550000px;}
.x20_c00306{left:286.500000px;}
.x77_c00306{left:287.850000px;}
.xa7_c00306{left:289.500000px;}
.x19_c00306{left:290.700000px;}
.x41_c00306{left:294.150000px;}
.x4b_c00306{left:295.500000px;}
.x85_c00306{left:300.000000px;}
.x62_c00306{left:301.650000px;}
.x8a_c00306{left:303.450000px;}
.x26_c00306{left:307.500000px;}
.x1_c00306{left:308.850000px;}
.x42_c00306{left:311.100000px;}
.xaf_c00306{left:313.350000px;}
.x3c_c00306{left:315.750000px;}
.x6b_c00306{left:318.600000px;}
.x37_c00306{left:322.200000px;}
.x4c_c00306{left:325.350000px;}
.x9b_c00306{left:326.550000px;}
.x7c_c00306{left:330.150000px;}
.x7f_c00306{left:332.550000px;}
.x38_c00306{left:333.750000px;}
.xf_c00306{left:335.550000px;}
.x65_c00306{left:337.050000px;}
.x27_c00306{left:338.400000px;}
.x2b_c00306{left:340.650000px;}
.x78_c00306{left:341.850000px;}
.x8b_c00306{left:344.100000px;}
.xa3_c00306{left:345.150000px;}
.x28_c00306{left:346.350000px;}
.x9c_c00306{left:348.150000px;}
.x82_c00306{left:349.200000px;}
.x10_c00306{left:351.750000px;}
.x6f_c00306{left:353.700000px;}
.x88_c00306{left:355.050000px;}
.x4d_c00306{left:356.250000px;}
.xa8_c00306{left:358.650000px;}
.x3d_c00306{left:359.700000px;}
.x1a_c00306{left:361.200000px;}
.x21_c00306{left:362.400000px;}
.x54_c00306{left:364.050000px;}
.x5b_c00306{left:365.100000px;}
.x2c_c00306{left:366.600000px;}
.x79_c00306{left:367.650000px;}
.x70_c00306{left:369.150000px;}
.x43_c00306{left:370.500000px;}
.x3e_c00306{left:371.550000px;}
.x86_c00306{left:374.550000px;}
.x8c_c00306{left:378.600000px;}
.x75_c00306{left:383.100000px;}
.xa0_c00306{left:385.800000px;}
.x4e_c00306{left:389.700000px;}
.x8d_c00306{left:390.900000px;}
.x67_c00306{left:392.400000px;}
.x66_c00306{left:394.350000px;}
.x94_c00306{left:396.300000px;}
.xb3_c00306{left:398.550000px;}
.xb0_c00306{left:402.600000px;}
.xb2_c00306{left:412.200000px;}
.x3_c00306{left:423.000000px;}
.x95_c00306{left:424.050000px;}
.xa4_c00306{left:425.100000px;}
.x14e_c00306{left:426.600000px;}
.xee_c00306{left:427.650000px;}
.x102_c00306{left:429.900000px;}
.x13b_c00306{left:432.300000px;}
.x143_c00306{left:433.500000px;}
.x14f_c00306{left:435.300000px;}
.xb4_c00306{left:441.300000px;}
.xc6_c00306{left:443.100000px;}
.xd7_c00306{left:444.150000px;}
.xf9_c00306{left:445.350000px;}
.x118_c00306{left:446.700000px;}
.x127_c00306{left:448.350000px;}
.x130_c00306{left:449.700000px;}
.x142_c00306{left:451.050000px;}
.x14b_c00306{left:452.550000px;}
.x12d_c00306{left:453.750000px;}
.x107_c00306{left:456.450000px;}
.x10d_c00306{left:458.250000px;}
.xc0_c00306{left:459.750000px;}
.xd0_c00306{left:462.600000px;}
.xcc_c00306{left:468.000000px;}
.xef_c00306{left:469.350000px;}
.xf6_c00306{left:470.850000px;}
.x144_c00306{left:474.600000px;}
.x11e_c00306{left:476.100000px;}
.xd8_c00306{left:477.600000px;}
.x131_c00306{left:478.800000px;}
.xcb_c00306{left:479.850000px;}
.x100_c00306{left:484.950000px;}
.x104_c00306{left:486.750000px;}
.x124_c00306{left:487.800000px;}
.x12e_c00306{left:490.050000px;}
.x4_c00306{left:492.150000px;}
.xfa_c00306{left:495.000000px;}
.xbb_c00306{left:496.650000px;}
.x10e_c00306{left:499.200000px;}
.xb5_c00306{left:500.400000px;}
.xe0_c00306{left:502.650000px;}
.xcd_c00306{left:504.300000px;}
.xbc_c00306{left:507.750000px;}
.x14c_c00306{left:509.100000px;}
.xe1_c00306{left:511.350000px;}
.x10f_c00306{left:512.850000px;}
.xd9_c00306{left:516.150000px;}
.xd1_c00306{left:521.250000px;}
.x5_c00306{left:523.050000px;}
.xbd_c00306{left:525.000000px;}
.x140_c00306{left:526.050000px;}
.x132_c00306{left:527.100000px;}
.x129_c00306{left:530.700000px;}
.x11f_c00306{left:532.950000px;}
.xf0_c00306{left:534.900000px;}
.x114_c00306{left:537.300000px;}
.x12f_c00306{left:540.450000px;}
.x150_c00306{left:541.800000px;}
.xd2_c00306{left:543.150000px;}
.x110_c00306{left:544.200000px;}
.xb6_c00306{left:546.450000px;}
.xc7_c00306{left:548.550000px;}
.x115_c00306{left:551.550000px;}
.x111_c00306{left:552.900000px;}
.xda_c00306{left:555.000000px;}
.x12b_c00306{left:556.650000px;}
.xe2_c00306{left:558.150000px;}
.x125_c00306{left:559.200000px;}
.xb7_c00306{left:563.700000px;}
.xbe_c00306{left:565.650000px;}
.x121_c00306{left:567.000000px;}
.x13e_c00306{left:568.050000px;}
.xd3_c00306{left:569.100000px;}
.x11b_c00306{left:570.450000px;}
.xc8_c00306{left:573.000000px;}
.x6_c00306{left:574.200000px;}
.xf1_c00306{left:575.550000px;}
.x12c_c00306{left:577.200000px;}
.xc1_c00306{left:578.250000px;}
.xdb_c00306{left:579.450000px;}
.x101_c00306{left:582.900000px;}
.x105_c00306{left:585.150000px;}
.x108_c00306{left:586.800000px;}
.xbf_c00306{left:588.000000px;}
.x133_c00306{left:591.450000px;}
.x109_c00306{left:594.300000px;}
.xc2_c00306{left:595.500000px;}
.x148_c00306{left:597.750000px;}
.x138_c00306{left:598.800000px;}
.xdc_c00306{left:600.750000px;}
.x10a_c00306{left:602.250000px;}
.xea_c00306{left:603.600000px;}
.x13f_c00306{left:604.800000px;}
.xce_c00306{left:606.600000px;}
.xb8_c00306{left:608.400000px;}
.xf2_c00306{left:610.050000px;}
.x136_c00306{left:611.250000px;}
.xe3_c00306{left:613.200000px;}
.x11c_c00306{left:614.700000px;}
.x10b_c00306{left:616.350000px;}
.xf7_c00306{left:617.400000px;}
.xd4_c00306{left:618.750000px;}
.x149_c00306{left:620.400000px;}
.x119_c00306{left:621.600000px;}
.xeb_c00306{left:628.050000px;}
.xfb_c00306{left:629.550000px;}
.x145_c00306{left:631.950000px;}
.x13a_c00306{left:636.300000px;}
.xf8_c00306{left:637.500000px;}
.xfc_c00306{left:641.850000px;}
.xe4_c00306{left:643.500000px;}
.xf3_c00306{left:644.550000px;}
.x7_c00306{left:646.200000px;}
.x11a_c00306{left:647.550000px;}
.x134_c00306{left:650.100000px;}
.xd5_c00306{left:651.900000px;}
.x120_c00306{left:654.000000px;}
.xb9_c00306{left:657.300000px;}
.xfd_c00306{left:659.850000px;}
.x122_c00306{left:662.100000px;}
.x146_c00306{left:663.300000px;}
.x8_c00306{left:664.500000px;}
.xcf_c00306{left:666.750000px;}
.xe5_c00306{left:668.700000px;}
.xdd_c00306{left:672.750000px;}
.x106_c00306{left:674.700000px;}
.xe6_c00306{left:676.650000px;}
.x13c_c00306{left:677.700000px;}
.x116_c00306{left:679.950000px;}
.x137_c00306{left:681.000000px;}
.x151_c00306{left:682.950000px;}
.x135_c00306{left:684.300000px;}
.xc3_c00306{left:685.800000px;}
.x11d_c00306{left:687.750000px;}
.x112_c00306{left:692.550000px;}
.xc9_c00306{left:693.600000px;}
.xf4_c00306{left:695.700000px;}
.xe7_c00306{left:697.950000px;}
.x14d_c00306{left:700.200000px;}
.xec_c00306{left:704.700000px;}
.xc4_c00306{left:706.650000px;}
.xba_c00306{left:709.500000px;}
.xde_c00306{left:712.650000px;}
.xf5_c00306{left:716.250000px;}
.xd6_c00306{left:718.500000px;}
.xe8_c00306{left:720.600000px;}
.x113_c00306{left:721.650000px;}
.xfe_c00306{left:723.300000px;}
.x10c_c00306{left:724.650000px;}
.x9_c00306{left:726.000000px;}
.x126_c00306{left:727.050000px;}
.x123_c00306{left:729.000000px;}
.x2_c00306{left:730.800000px;}
.x141_c00306{left:732.300000px;}
.xdf_c00306{left:734.550000px;}
.x14a_c00306{left:735.900000px;}
.x117_c00306{left:738.600000px;}
.xff_c00306{left:740.550000px;}
.x13d_c00306{left:741.900000px;}
.xc5_c00306{left:746.250000px;}
.x128_c00306{left:748.200000px;}
.xa_c00306{left:749.400000px;}
.x103_c00306{left:750.600000px;}
.xed_c00306{left:752.550000px;}
.xca_c00306{left:755.550000px;}
.xe9_c00306{left:758.400000px;}
.x12a_c00306{left:763.950000px;}
.x139_c00306{left:765.150000px;}
.x147_c00306{left:767.400000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls1_c00306{letter-spacing:0.000000pt;}
.ls0_c00306{letter-spacing:49.523810pt;}
.ws3_c00306{word-spacing:-76.190476pt;}
.wsa_c00306{word-spacing:-10.213298pt;}
.ws7_c00306{word-spacing:-7.295597pt;}
.ws10_c00306{word-spacing:-3.703704pt;}
.ws1_c00306{word-spacing:-2.777778pt;}
.ws11_c00306{word-spacing:0.000000pt;}
.wsd_c00306{word-spacing:5.380117pt;}
.ws0_c00306{word-spacing:8.500000pt;}
.ws5_c00306{word-spacing:9.455113pt;}
.ws4_c00306{word-spacing:11.953162pt;}
.ws2_c00306{word-spacing:13.333333pt;}
.wsf_c00306{word-spacing:14.820717pt;}
.wse_c00306{word-spacing:19.682540pt;}
.ws8_c00306{word-spacing:20.277778pt;}
.ws9_c00306{word-spacing:22.857143pt;}
.wsb_c00306{word-spacing:25.267760pt;}
.wsc_c00306{word-spacing:59.851852pt;}
.ws6_c00306{word-spacing:132.127580pt;}
._0_c00306{margin-left:-49.523810pt;}
._2_c00306{width:46.349206pt;}
._3_c00306{width:52.698413pt;}
._1_c00306{width:63.611111pt;}
.fs5_c00306{font-size:32.000000pt;}
.fs6_c00306{font-size:42.666667pt;}
.fs4_c00306{font-size:48.000000pt;}
.fs3_c00306{font-size:53.333333pt;}
.fs2_c00306{font-size:58.666667pt;}
.fs1_c00306{font-size:64.000000pt;}
.fs0_c00306{font-size:74.666667pt;}
.y0_c00306{bottom:0.000000pt;}
.y6a_c00306{bottom:164.133333pt;}
.y39_c00306{bottom:165.066667pt;}
.y38_c00306{bottom:180.800000pt;}
.y69_c00306{bottom:184.266667pt;}
.y37_c00306{bottom:196.533333pt;}
.y68_c00306{bottom:200.266667pt;}
.y36_c00306{bottom:212.533333pt;}
.y67_c00306{bottom:216.266667pt;}
.y3b_c00306{bottom:228.133333pt;}
.y35_c00306{bottom:228.533333pt;}
.y66_c00306{bottom:232.266667pt;}
.y34_c00306{bottom:244.533333pt;}
.y65_c00306{bottom:252.400000pt;}
.y33_c00306{bottom:260.133333pt;}
.y64_c00306{bottom:268.133333pt;}
.y32_c00306{bottom:275.866667pt;}
.y31_c00306{bottom:291.866667pt;}
.y30_c00306{bottom:307.466667pt;}
.y63_c00306{bottom:307.866667pt;}
.y2f_c00306{bottom:323.200000pt;}
.y62_c00306{bottom:323.466667pt;}
.y2e_c00306{bottom:339.200000pt;}
.y61_c00306{bottom:342.933333pt;}
.y2d_c00306{bottom:354.933333pt;}
.y60_c00306{bottom:358.666667pt;}
.y2c_c00306{bottom:370.933333pt;}
.y5f_c00306{bottom:374.400000pt;}
.y2b_c00306{bottom:386.533333pt;}
.y5e_c00306{bottom:394.000000pt;}
.y2a_c00306{bottom:402.533333pt;}
.y5d_c00306{bottom:410.000000pt;}
.y29_c00306{bottom:418.533333pt;}
.y5c_c00306{bottom:426.000000pt;}
.y5b_c00306{bottom:442.000000pt;}
.y28_c00306{bottom:442.266667pt;}
.y5a_c00306{bottom:458.000000pt;}
.y27_c00306{bottom:458.266667pt;}
.y59_c00306{bottom:474.000000pt;}
.y26_c00306{bottom:474.266667pt;}
.y58_c00306{bottom:489.733333pt;}
.y25_c00306{bottom:489.866667pt;}
.y57_c00306{bottom:505.733333pt;}
.y24_c00306{bottom:505.866667pt;}
.y56_c00306{bottom:521.733333pt;}
.y23_c00306{bottom:521.866667pt;}
.y55_c00306{bottom:537.733333pt;}
.y22_c00306{bottom:537.866667pt;}
.y21_c00306{bottom:553.466667pt;}
.y54_c00306{bottom:569.200000pt;}
.y20_c00306{bottom:569.466667pt;}
.y1f_c00306{bottom:585.200000pt;}
.y1e_c00306{bottom:600.933333pt;}
.y53_c00306{bottom:601.200000pt;}
.y1d_c00306{bottom:616.933333pt;}
.y1c_c00306{bottom:632.666667pt;}
.y52_c00306{bottom:635.200000pt;}
.y51_c00306{bottom:647.733333pt;}
.y1b_c00306{bottom:648.666667pt;}
.y50_c00306{bottom:660.800000pt;}
.y19_c00306{bottom:672.133333pt;}
.y4f_c00306{bottom:673.600000pt;}
.y18_c00306{bottom:683.600000pt;}
.y4e_c00306{bottom:686.666667pt;}
.y17_c00306{bottom:698.000000pt;}
.y4d_c00306{bottom:699.200000pt;}
.y16_c00306{bottom:711.066667pt;}
.y4c_c00306{bottom:712.266667pt;}
.y15_c00306{bottom:720.933333pt;}
.y4b_c00306{bottom:723.466667pt;}
.y14_c00306{bottom:736.000000pt;}
.y4a_c00306{bottom:736.933333pt;}
.y13_c00306{bottom:748.133333pt;}
.y49_c00306{bottom:752.666667pt;}
.y12_c00306{bottom:760.933333pt;}
.y48_c00306{bottom:768.666667pt;}
.y1a_c00306{bottom:773.466667pt;}
.y11_c00306{bottom:773.733333pt;}
.y47_c00306{bottom:784.666667pt;}
.y10_c00306{bottom:785.200000pt;}
.yf_c00306{bottom:800.933333pt;}
.y46_c00306{bottom:803.733333pt;}
.y45_c00306{bottom:819.466667pt;}
.ye_c00306{bottom:819.733333pt;}
.y44_c00306{bottom:835.200000pt;}
.yd_c00306{bottom:838.000000pt;}
.y43_c00306{bottom:851.200000pt;}
.yc_c00306{bottom:853.733333pt;}
.yb_c00306{bottom:869.733333pt;}
.y42_c00306{bottom:870.000000pt;}
.y3a_c00306{bottom:873.600000pt;}
.y41_c00306{bottom:886.666667pt;}
.ya_c00306{bottom:889.333333pt;}
.y9_c00306{bottom:908.533333pt;}
.y40_c00306{bottom:909.733333pt;}
.y8_c00306{bottom:924.800000pt;}
.y3f_c00306{bottom:926.400000pt;}
.y7_c00306{bottom:940.133333pt;}
.y3e_c00306{bottom:942.133333pt;}
.y6_c00306{bottom:956.133333pt;}
.y3d_c00306{bottom:961.866667pt;}
.y5_c00306{bottom:971.466667pt;}
.y3c_c00306{bottom:977.866667pt;}
.y4_c00306{bottom:991.333333pt;}
.y3_c00306{bottom:993.866667pt;}
.y1_c00306{bottom:1016.266667pt;}
.y2_c00306{bottom:1017.600000pt;}
.h7_c00306{height:32.000000pt;}
.h8_c00306{height:42.666667pt;}
.h6_c00306{height:48.000000pt;}
.h5_c00306{height:53.333333pt;}
.h4_c00306{height:58.666667pt;}
.h3_c00306{height:64.000000pt;}
.h2_c00306{height:74.666667pt;}
.h1_c00306{height:1128.666667pt;}
.h0_c00306{height:1128.960043pt;}
.w1_c00306{width:854.666667pt;}
.w0_c00306{width:854.720052pt;}
.x0_c00306{left:0.000000pt;}
.xb_c00306{left:58.933333pt;}
.x30_c00306{left:60.533333pt;}
.x68_c00306{left:63.333333pt;}
.x90_c00306{left:67.200000pt;}
.x11_c00306{left:74.533333pt;}
.x29_c00306{left:75.600000pt;}
.x44_c00306{left:76.533333pt;}
.x71_c00306{left:78.533333pt;}
.x6c_c00306{left:79.600000pt;}
.x80_c00306{left:80.533333pt;}
.x31_c00306{left:81.600000pt;}
.x8e_c00306{left:82.800000pt;}
.x9d_c00306{left:84.133333pt;}
.x63_c00306{left:85.733333pt;}
.x55_c00306{left:87.066667pt;}
.x12_c00306{left:92.133333pt;}
.x45_c00306{left:93.866667pt;}
.x81_c00306{left:97.466667pt;}
.x32_c00306{left:99.200000pt;}
.xab_c00306{left:100.133333pt;}
.xc_c00306{left:101.200000pt;}
.xa6_c00306{left:102.666667pt;}
.x1b_c00306{left:105.466667pt;}
.x5c_c00306{left:106.800000pt;}
.x5e_c00306{left:107.733333pt;}
.x22_c00306{left:108.933333pt;}
.x2d_c00306{left:110.933333pt;}
.x91_c00306{left:113.333333pt;}
.x48_c00306{left:114.266667pt;}
.xa1_c00306{left:116.133333pt;}
.x87_c00306{left:120.133333pt;}
.x1c_c00306{left:121.200000pt;}
.x5d_c00306{left:124.000000pt;}
.x5f_c00306{left:125.333333pt;}
.x9a_c00306{left:127.600000pt;}
.x2e_c00306{left:129.733333pt;}
.x39_c00306{left:130.933333pt;}
.xd_c00306{left:134.133333pt;}
.x46_c00306{left:136.133333pt;}
.x69_c00306{left:137.600000pt;}
.xa9_c00306{left:139.066667pt;}
.x1d_c00306{left:140.666667pt;}
.x72_c00306{left:141.866667pt;}
.x13_c00306{left:143.066667pt;}
.x9e_c00306{left:146.266667pt;}
.x23_c00306{left:149.866667pt;}
.x7a_c00306{left:151.333333pt;}
.x96_c00306{left:154.533333pt;}
.x33_c00306{left:157.066667pt;}
.x56_c00306{left:158.400000pt;}
.x2f_c00306{left:159.466667pt;}
.xa5_c00306{left:160.933333pt;}
.x60_c00306{left:161.866667pt;}
.x14_c00306{left:162.933333pt;}
.x50_c00306{left:164.400000pt;}
.x98_c00306{left:166.800000pt;}
.x89_c00306{left:168.266667pt;}
.x1e_c00306{left:169.200000pt;}
.x15_c00306{left:170.933333pt;}
.x6d_c00306{left:173.600000pt;}
.x58_c00306{left:176.666667pt;}
.x57_c00306{left:177.600000pt;}
.x76_c00306{left:179.333333pt;}
.x47_c00306{left:180.266667pt;}
.x24_c00306{left:181.866667pt;}
.xad_c00306{left:182.933333pt;}
.x51_c00306{left:184.000000pt;}
.x16_c00306{left:185.333333pt;}
.xac_c00306{left:186.933333pt;}
.x99_c00306{left:187.866667pt;}
.x6a_c00306{left:188.800000pt;}
.x52_c00306{left:190.133333pt;}
.x83_c00306{left:191.066667pt;}
.x92_c00306{left:192.933333pt;}
.x3f_c00306{left:194.266667pt;}
.x3a_c00306{left:196.266667pt;}
.x7d_c00306{left:198.933333pt;}
.x34_c00306{left:201.600000pt;}
.x59_c00306{left:203.200000pt;}
.x49_c00306{left:204.133333pt;}
.x25_c00306{left:206.133333pt;}
.x40_c00306{left:207.733333pt;}
.x17_c00306{left:209.066667pt;}
.x53_c00306{left:210.000000pt;}
.x84_c00306{left:214.133333pt;}
.x1f_c00306{left:216.000000pt;}
.x97_c00306{left:217.600000pt;}
.x73_c00306{left:218.933333pt;}
.x7e_c00306{left:220.000000pt;}
.x4a_c00306{left:221.066667pt;}
.x5a_c00306{left:222.400000pt;}
.x7b_c00306{left:224.400000pt;}
.x93_c00306{left:225.600000pt;}
.x9f_c00306{left:226.533333pt;}
.x18_c00306{left:228.000000pt;}
.xe_c00306{left:229.466667pt;}
.xaa_c00306{left:231.066667pt;}
.x35_c00306{left:232.666667pt;}
.xa2_c00306{left:234.400000pt;}
.x61_c00306{left:236.133333pt;}
.x74_c00306{left:237.866667pt;}
.x64_c00306{left:242.400000pt;}
.x3b_c00306{left:243.866667pt;}
.x6e_c00306{left:245.200000pt;}
.x4f_c00306{left:246.266667pt;}
.x2a_c00306{left:248.400000pt;}
.x36_c00306{left:249.600000pt;}
.xae_c00306{left:250.666667pt;}
.xb1_c00306{left:251.866667pt;}
.x8f_c00306{left:252.933333pt;}
.x20_c00306{left:254.666667pt;}
.x77_c00306{left:255.866667pt;}
.xa7_c00306{left:257.333333pt;}
.x19_c00306{left:258.400000pt;}
.x41_c00306{left:261.466667pt;}
.x4b_c00306{left:262.666667pt;}
.x85_c00306{left:266.666667pt;}
.x62_c00306{left:268.133333pt;}
.x8a_c00306{left:269.733333pt;}
.x26_c00306{left:273.333333pt;}
.x1_c00306{left:274.533333pt;}
.x42_c00306{left:276.533333pt;}
.xaf_c00306{left:278.533333pt;}
.x3c_c00306{left:280.666667pt;}
.x6b_c00306{left:283.200000pt;}
.x37_c00306{left:286.400000pt;}
.x4c_c00306{left:289.200000pt;}
.x9b_c00306{left:290.266667pt;}
.x7c_c00306{left:293.466667pt;}
.x7f_c00306{left:295.600000pt;}
.x38_c00306{left:296.666667pt;}
.xf_c00306{left:298.266667pt;}
.x65_c00306{left:299.600000pt;}
.x27_c00306{left:300.800000pt;}
.x2b_c00306{left:302.800000pt;}
.x78_c00306{left:303.866667pt;}
.x8b_c00306{left:305.866667pt;}
.xa3_c00306{left:306.800000pt;}
.x28_c00306{left:307.866667pt;}
.x9c_c00306{left:309.466667pt;}
.x82_c00306{left:310.400000pt;}
.x10_c00306{left:312.666667pt;}
.x6f_c00306{left:314.400000pt;}
.x88_c00306{left:315.600000pt;}
.x4d_c00306{left:316.666667pt;}
.xa8_c00306{left:318.800000pt;}
.x3d_c00306{left:319.733333pt;}
.x1a_c00306{left:321.066667pt;}
.x21_c00306{left:322.133333pt;}
.x54_c00306{left:323.600000pt;}
.x5b_c00306{left:324.533333pt;}
.x2c_c00306{left:325.866667pt;}
.x79_c00306{left:326.800000pt;}
.x70_c00306{left:328.133333pt;}
.x43_c00306{left:329.333333pt;}
.x3e_c00306{left:330.266667pt;}
.x86_c00306{left:332.933333pt;}
.x8c_c00306{left:336.533333pt;}
.x75_c00306{left:340.533333pt;}
.xa0_c00306{left:342.933333pt;}
.x4e_c00306{left:346.400000pt;}
.x8d_c00306{left:347.466667pt;}
.x67_c00306{left:348.800000pt;}
.x66_c00306{left:350.533333pt;}
.x94_c00306{left:352.266667pt;}
.xb3_c00306{left:354.266667pt;}
.xb0_c00306{left:357.866667pt;}
.xb2_c00306{left:366.400000pt;}
.x3_c00306{left:376.000000pt;}
.x95_c00306{left:376.933333pt;}
.xa4_c00306{left:377.866667pt;}
.x14e_c00306{left:379.200000pt;}
.xee_c00306{left:380.133333pt;}
.x102_c00306{left:382.133333pt;}
.x13b_c00306{left:384.266667pt;}
.x143_c00306{left:385.333333pt;}
.x14f_c00306{left:386.933333pt;}
.xb4_c00306{left:392.266667pt;}
.xc6_c00306{left:393.866667pt;}
.xd7_c00306{left:394.800000pt;}
.xf9_c00306{left:395.866667pt;}
.x118_c00306{left:397.066667pt;}
.x127_c00306{left:398.533333pt;}
.x130_c00306{left:399.733333pt;}
.x142_c00306{left:400.933333pt;}
.x14b_c00306{left:402.266667pt;}
.x12d_c00306{left:403.333333pt;}
.x107_c00306{left:405.733333pt;}
.x10d_c00306{left:407.333333pt;}
.xc0_c00306{left:408.666667pt;}
.xd0_c00306{left:411.200000pt;}
.xcc_c00306{left:416.000000pt;}
.xef_c00306{left:417.200000pt;}
.xf6_c00306{left:418.533333pt;}
.x144_c00306{left:421.866667pt;}
.x11e_c00306{left:423.200000pt;}
.xd8_c00306{left:424.533333pt;}
.x131_c00306{left:425.600000pt;}
.xcb_c00306{left:426.533333pt;}
.x100_c00306{left:431.066667pt;}
.x104_c00306{left:432.666667pt;}
.x124_c00306{left:433.600000pt;}
.x12e_c00306{left:435.600000pt;}
.x4_c00306{left:437.466667pt;}
.xfa_c00306{left:440.000000pt;}
.xbb_c00306{left:441.466667pt;}
.x10e_c00306{left:443.733333pt;}
.xb5_c00306{left:444.800000pt;}
.xe0_c00306{left:446.800000pt;}
.xcd_c00306{left:448.266667pt;}
.xbc_c00306{left:451.333333pt;}
.x14c_c00306{left:452.533333pt;}
.xe1_c00306{left:454.533333pt;}
.x10f_c00306{left:455.866667pt;}
.xd9_c00306{left:458.800000pt;}
.xd1_c00306{left:463.333333pt;}
.x5_c00306{left:464.933333pt;}
.xbd_c00306{left:466.666667pt;}
.x140_c00306{left:467.600000pt;}
.x132_c00306{left:468.533333pt;}
.x129_c00306{left:471.733333pt;}
.x11f_c00306{left:473.733333pt;}
.xf0_c00306{left:475.466667pt;}
.x114_c00306{left:477.600000pt;}
.x12f_c00306{left:480.400000pt;}
.x150_c00306{left:481.600000pt;}
.xd2_c00306{left:482.800000pt;}
.x110_c00306{left:483.733333pt;}
.xb6_c00306{left:485.733333pt;}
.xc7_c00306{left:487.600000pt;}
.x115_c00306{left:490.266667pt;}
.x111_c00306{left:491.466667pt;}
.xda_c00306{left:493.333333pt;}
.x12b_c00306{left:494.800000pt;}
.xe2_c00306{left:496.133333pt;}
.x125_c00306{left:497.066667pt;}
.xb7_c00306{left:501.066667pt;}
.xbe_c00306{left:502.800000pt;}
.x121_c00306{left:504.000000pt;}
.x13e_c00306{left:504.933333pt;}
.xd3_c00306{left:505.866667pt;}
.x11b_c00306{left:507.066667pt;}
.xc8_c00306{left:509.333333pt;}
.x6_c00306{left:510.400000pt;}
.xf1_c00306{left:511.600000pt;}
.x12c_c00306{left:513.066667pt;}
.xc1_c00306{left:514.000000pt;}
.xdb_c00306{left:515.066667pt;}
.x101_c00306{left:518.133333pt;}
.x105_c00306{left:520.133333pt;}
.x108_c00306{left:521.600000pt;}
.xbf_c00306{left:522.666667pt;}
.x133_c00306{left:525.733333pt;}
.x109_c00306{left:528.266667pt;}
.xc2_c00306{left:529.333333pt;}
.x148_c00306{left:531.333333pt;}
.x138_c00306{left:532.266667pt;}
.xdc_c00306{left:534.000000pt;}
.x10a_c00306{left:535.333333pt;}
.xea_c00306{left:536.533333pt;}
.x13f_c00306{left:537.600000pt;}
.xce_c00306{left:539.200000pt;}
.xb8_c00306{left:540.800000pt;}
.xf2_c00306{left:542.266667pt;}
.x136_c00306{left:543.333333pt;}
.xe3_c00306{left:545.066667pt;}
.x11c_c00306{left:546.400000pt;}
.x10b_c00306{left:547.866667pt;}
.xf7_c00306{left:548.800000pt;}
.xd4_c00306{left:550.000000pt;}
.x149_c00306{left:551.466667pt;}
.x119_c00306{left:552.533333pt;}
.xeb_c00306{left:558.266667pt;}
.xfb_c00306{left:559.600000pt;}
.x145_c00306{left:561.733333pt;}
.x13a_c00306{left:565.600000pt;}
.xf8_c00306{left:566.666667pt;}
.xfc_c00306{left:570.533333pt;}
.xe4_c00306{left:572.000000pt;}
.xf3_c00306{left:572.933333pt;}
.x7_c00306{left:574.400000pt;}
.x11a_c00306{left:575.600000pt;}
.x134_c00306{left:577.866667pt;}
.xd5_c00306{left:579.466667pt;}
.x120_c00306{left:581.333333pt;}
.xb9_c00306{left:584.266667pt;}
.xfd_c00306{left:586.533333pt;}
.x122_c00306{left:588.533333pt;}
.x146_c00306{left:589.600000pt;}
.x8_c00306{left:590.666667pt;}
.xcf_c00306{left:592.666667pt;}
.xe5_c00306{left:594.400000pt;}
.xdd_c00306{left:598.000000pt;}
.x106_c00306{left:599.733333pt;}
.xe6_c00306{left:601.466667pt;}
.x13c_c00306{left:602.400000pt;}
.x116_c00306{left:604.400000pt;}
.x137_c00306{left:605.333333pt;}
.x151_c00306{left:607.066667pt;}
.x135_c00306{left:608.266667pt;}
.xc3_c00306{left:609.600000pt;}
.x11d_c00306{left:611.333333pt;}
.x112_c00306{left:615.600000pt;}
.xc9_c00306{left:616.533333pt;}
.xf4_c00306{left:618.400000pt;}
.xe7_c00306{left:620.400000pt;}
.x14d_c00306{left:622.400000pt;}
.xec_c00306{left:626.400000pt;}
.xc4_c00306{left:628.133333pt;}
.xba_c00306{left:630.666667pt;}
.xde_c00306{left:633.466667pt;}
.xf5_c00306{left:636.666667pt;}
.xd6_c00306{left:638.666667pt;}
.xe8_c00306{left:640.533333pt;}
.x113_c00306{left:641.466667pt;}
.xfe_c00306{left:642.933333pt;}
.x10c_c00306{left:644.133333pt;}
.x9_c00306{left:645.333333pt;}
.x126_c00306{left:646.266667pt;}
.x123_c00306{left:648.000000pt;}
.x2_c00306{left:649.600000pt;}
.x141_c00306{left:650.933333pt;}
.xdf_c00306{left:652.933333pt;}
.x14a_c00306{left:654.133333pt;}
.x117_c00306{left:656.533333pt;}
.xff_c00306{left:658.266667pt;}
.x13d_c00306{left:659.466667pt;}
.xc5_c00306{left:663.333333pt;}
.x128_c00306{left:665.066667pt;}
.xa_c00306{left:666.133333pt;}
.x103_c00306{left:667.200000pt;}
.xed_c00306{left:668.933333pt;}
.xca_c00306{left:671.600000pt;}
.xe9_c00306{left:674.133333pt;}
.x12a_c00306{left:679.066667pt;}
.x139_c00306{left:680.133333pt;}
.x147_c00306{left:682.133333pt;}
}





/* 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_c00307 {
    display:none;
  }
  .loading-indicator_c00307.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00307 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_c00307 { 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_c00307" -> "#page-container .classname_c00307")
 */
.pf_c00307 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00307 { /* 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_c00307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00307 { /* 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_c00307 { /* 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_c00307 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00307 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00307 {overflow:visible;}
  }
}
.c_c00307 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00307 { /* 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_c00307:after { /* webkit #35443 */
  content: '';
}
.t_c00307:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00307 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 */
}
.__c00307 { /* 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_c00307 { /* info for Javascript */
  display:none;
}
.l_c00307 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00307 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00307 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00307: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_c00307 {
    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_c00307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00307.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_c00307 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00307;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.000000;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;}
.m108_c00307{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00307{transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);}
.m13_c00307{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00307{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m84_c00307{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m97_c00307{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m119_c00307{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m126_c00307{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.md7_c00307{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00307{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m57_c00307{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00307{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.m21_c00307{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00307{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m58_c00307{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m20_c00307{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.md1_c00307{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00307{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00307{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00307{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00307{transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00307{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m40_c00307{transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00307{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00307{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m69_c00307{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00307{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m75_c00307{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m41_c00307{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00307{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m59_c00307{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00307{transform:matrix(0.115250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115250,0.000000,0.000000,0.250000,0,0);}
.m91_c00307{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9_c00307{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m125_c00307{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00307{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00307{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m61_c00307{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00307{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m48_c00307{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m50_c00307{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00307{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m12_c00307{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00307{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.m82_c00307{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00307{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00307{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00307{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00307{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m99_c00307{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m28_c00307{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me8_c00307{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m11_c00307{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me1_c00307{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me0_c00307{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m65_c00307{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m109_c00307{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00307{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mce_c00307{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m29_c00307{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m31_c00307{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m17_c00307{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md2_c00307{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m18_c00307{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00307{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00307{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00307{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00307{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00307{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m25_c00307{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m115_c00307{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf_c00307{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00307{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00307{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7_c00307{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m47_c00307{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00307{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m14_c00307{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00307{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00307{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00307{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m42_c00307{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mef_c00307{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m104_c00307{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m101_c00307{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00307{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc_c00307{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me4_c00307{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m98_c00307{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m128_c00307{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00307{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m80_c00307{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00307{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00307{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00307{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00307{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00307{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00307{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m87_c00307{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m66_c00307{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00307{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m67_c00307{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m26_c00307{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma_c00307{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me7_c00307{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00307{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00307{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m54_c00307{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m16_c00307{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00307{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m129_c00307{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00307{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m27_c00307{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m63_c00307{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m34_c00307{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m56_c00307{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00307{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.maa_c00307{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00307{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m64_c00307{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m107_c00307{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m55_c00307{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mad_c00307{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mec_c00307{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m106_c00307{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m30_c00307{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00307{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00307{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m23_c00307{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mff_c00307{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00307{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00307{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00307{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8_c00307{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00307{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mae_c00307{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00307{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00307{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m71_c00307{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5_c00307{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00307{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00307{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m77_c00307{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m102_c00307{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m103_c00307{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00307{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m83_c00307{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m85_c00307{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m45_c00307{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00307{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00307{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m122_c00307{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.me_c00307{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00307{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00307{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m24_c00307{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00307{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m86_c00307{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00307{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m124_c00307{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m53_c00307{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00307{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m88_c00307{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00307{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mba_c00307{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m49_c00307{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00307{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00307{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m94_c00307{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m15_c00307{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00307{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00307{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.maf_c00307{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m19_c00307{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m33_c00307{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mde_c00307{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m38_c00307{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m79_c00307{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00307{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m43_c00307{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m62_c00307{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.meb_c00307{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00307{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m100_c00307{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3_c00307{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m22_c00307{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m76_c00307{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m118_c00307{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m90_c00307{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mee_c00307{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m32_c00307{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m127_c00307{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m70_c00307{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00307{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00307{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.med_c00307{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m81_c00307{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00307{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2_c00307{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00307{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00307{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00307{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m113_c00307{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00307{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4_c00307{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m96_c00307{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00307{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m121_c00307{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00307{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00307{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m0_c00307{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mea_c00307{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m110_c00307{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m52_c00307{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00307{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md6_c00307{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m44_c00307{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m74_c00307{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md5_c00307{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m93_c00307{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00307{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m39_c00307{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md_c00307{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6_c00307{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m112_c00307{transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00307{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m95_c00307{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m10_c00307{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb_c00307{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00307{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m78_c00307{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mca_c00307{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00307{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m72_c00307{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00307{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00307{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00307{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mab_c00307{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m92_c00307{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m123_c00307{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mda_c00307{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00307{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);}
.m3e_c00307{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m36_c00307{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m120_c00307{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00307{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00307{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00307{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m117_c00307{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00307{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mac_c00307{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m60_c00307{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00307{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00307{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m73_c00307{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m51_c00307{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m37_c00307{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m89_c00307{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00307{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m105_c00307{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m116_c00307{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00307{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00307{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me9_c00307{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md0_c00307{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00307{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00307{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00307{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00307{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00307{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00307{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m68_c00307{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m35_c00307{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.md3_c00307{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00307{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.md4_c00307{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me5_c00307{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.me2_c00307{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00307{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00307{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00307{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00307{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00307{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00307{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.md8_c00307{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.me6_c00307{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00307{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00307{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.md9_c00307{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00307{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00307{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00307{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m114_c00307{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00307{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m111_c00307{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.me3_c00307{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00307{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m46_c00307{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00307{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls3_c00307{letter-spacing:0.000000px;}
.ls0_c00307{letter-spacing:59.285714px;}
.ls1_c00307{letter-spacing:61.426230px;}
.ls2_c00307{letter-spacing:65.360656px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{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__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18_c00307{word-spacing:-98.360656px;}
.ws12_c00307{word-spacing:-94.426230px;}
.ws8_c00307{word-spacing:-89.285714px;}
.wsf_c00307{word-spacing:-8.452381px;}
.ws13_c00307{word-spacing:-1.961538px;}
.ws1c_c00307{word-spacing:0.000000px;}
.ws1b_c00307{word-spacing:8.904459px;}
.ws14_c00307{word-spacing:13.447307px;}
.wse_c00307{word-spacing:17.352941px;}
.ws16_c00307{word-spacing:20.473068px;}
.ws4_c00307{word-spacing:24.491803px;}
.ws15_c00307{word-spacing:26.428954px;}
.ws19_c00307{word-spacing:28.426230px;}
.ws0_c00307{word-spacing:32.360656px;}
.ws10_c00307{word-spacing:34.642857px;}
.ws3_c00307{word-spacing:39.343511px;}
.ws5_c00307{word-spacing:43.923664px;}
.ws7_c00307{word-spacing:44.166667px;}
.ws6_c00307{word-spacing:48.503817px;}
.ws17_c00307{word-spacing:58.537019px;}
.ws11_c00307{word-spacing:63.026316px;}
.ws1a_c00307{word-spacing:64.584192px;}
.ws2_c00307{word-spacing:66.110092px;}
.ws9_c00307{word-spacing:67.631579px;}
.ws1_c00307{word-spacing:74.410133px;}
.wsc_c00307{word-spacing:80.751592px;}
.wsb_c00307{word-spacing:87.638814px;}
.wsd_c00307{word-spacing:996.068966px;}
.wsa_c00307{word-spacing:1697.358779px;}
._8_c00307{margin-left:-65.360656px;}
._6_c00307{margin-left:-61.426230px;}
._4_c00307{margin-left:-59.285714px;}
._7_c00307{width:50.211796px;}
._0_c00307{width:61.426230px;}
._3_c00307{width:65.360656px;}
._2_c00307{width:81.503817px;}
._1_c00307{width:104.614679px;}
._5_c00307{width:115.280255px;}
.fc0_c00307{color:transparent;}
.fs5_c00307{font-size:54.000000px;}
.fs1_c00307{font-size:60.000000px;}
.fs2_c00307{font-size:66.000000px;}
.fs3_c00307{font-size:72.000000px;}
.fs4_c00307{font-size:78.000000px;}
.fs0_c00307{font-size:84.000000px;}
.y0_c00307{bottom:0.000000px;}
.y3c_c00307{bottom:172.650000px;}
.y3b_c00307{bottom:186.750000px;}
.y3a_c00307{bottom:206.550000px;}
.y39_c00307{bottom:218.850000px;}
.y38_c00307{bottom:235.800000px;}
.y37_c00307{bottom:249.900000px;}
.y36_c00307{bottom:264.300000px;}
.y35_c00307{bottom:279.000000px;}
.y34_c00307{bottom:292.650000px;}
.y33_c00307{bottom:306.750000px;}
.y32_c00307{bottom:334.800000px;}
.y31_c00307{bottom:336.600000px;}
.y30_c00307{bottom:350.700000px;}
.y2f_c00307{bottom:366.000000px;}
.y2e_c00307{bottom:383.700000px;}
.y2d_c00307{bottom:405.000000px;}
.y2c_c00307{bottom:411.150000px;}
.y2b_c00307{bottom:429.150000px;}
.y2a_c00307{bottom:446.400000px;}
.y29_c00307{bottom:464.400000px;}
.y28_c00307{bottom:485.250000px;}
.y27_c00307{bottom:504.300000px;}
.y26_c00307{bottom:522.750000px;}
.y25_c00307{bottom:540.300000px;}
.y24_c00307{bottom:563.700000px;}
.y23_c00307{bottom:581.700000px;}
.y22_c00307{bottom:603.000000px;}
.y21_c00307{bottom:626.400000px;}
.y20_c00307{bottom:640.050000px;}
.y1f_c00307{bottom:657.750000px;}
.y1e_c00307{bottom:675.750000px;}
.y1d_c00307{bottom:693.750000px;}
.y19_c00307{bottom:702.600000px;}
.y1c_c00307{bottom:711.750000px;}
.y18_c00307{bottom:720.600000px;}
.y1b_c00307{bottom:729.750000px;}
.y17_c00307{bottom:738.600000px;}
.y1a_c00307{bottom:751.350000px;}
.y16_c00307{bottom:756.300000px;}
.y15_c00307{bottom:774.450000px;}
.y14_c00307{bottom:792.450000px;}
.y13_c00307{bottom:810.750000px;}
.y12_c00307{bottom:828.450000px;}
.y11_c00307{bottom:846.150000px;}
.y10_c00307{bottom:863.850000px;}
.yf_c00307{bottom:883.350000px;}
.ye_c00307{bottom:899.550000px;}
.yd_c00307{bottom:917.550000px;}
.yc_c00307{bottom:939.450000px;}
.yb_c00307{bottom:962.850000px;}
.ya_c00307{bottom:970.800000px;}
.y9_c00307{bottom:988.800000px;}
.y8_c00307{bottom:1007.100000px;}
.y7_c00307{bottom:1026.150000px;}
.y6_c00307{bottom:1043.100000px;}
.y5_c00307{bottom:1060.800000px;}
.y4_c00307{bottom:1082.400000px;}
.y3_c00307{bottom:1108.350000px;}
.y2_c00307{bottom:1127.100000px;}
.y1_c00307{bottom:1147.650000px;}
.h7_c00307{height:54.000000px;}
.h3_c00307{height:60.000000px;}
.h4_c00307{height:66.000000px;}
.h5_c00307{height:72.000000px;}
.h6_c00307{height:78.000000px;}
.h2_c00307{height:84.000000px;}
.h1_c00307{height:1269.000000px;}
.h0_c00307{height:1269.359985px;}
.w1_c00307{width:961.500000px;}
.w0_c00307{width:961.560058px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:182.100000px;}
.x27_c00307{left:191.550000px;}
.xa4_c00307{left:193.500000px;}
.xdc_c00307{left:197.250000px;}
.x101_c00307{left:198.750000px;}
.x16_c00307{left:201.000000px;}
.x44_c00307{left:202.500000px;}
.x39_c00307{left:205.050000px;}
.x123_c00307{left:206.250000px;}
.x3_c00307{left:208.050000px;}
.x23_c00307{left:209.400000px;}
.x12f_c00307{left:211.500000px;}
.xad_c00307{left:212.850000px;}
.xc4_c00307{left:214.500000px;}
.xfc_c00307{left:216.750000px;}
.x115_c00307{left:218.250000px;}
.x52_c00307{left:220.500000px;}
.x78_c00307{left:221.850000px;}
.x146_c00307{left:224.100000px;}
.x4_c00307{left:226.800000px;}
.x143_c00307{left:232.050000px;}
.xe3_c00307{left:233.400000px;}
.x3a_c00307{left:237.150000px;}
.xc3_c00307{left:238.200000px;}
.xef_c00307{left:239.400000px;}
.x17_c00307{left:240.600000px;}
.x53_c00307{left:242.100000px;}
.x79_c00307{left:243.450000px;}
.x8c_c00307{left:244.800000px;}
.xc8_c00307{left:248.100000px;}
.xcd_c00307{left:249.300000px;}
.xc6_c00307{left:250.500000px;}
.x28_c00307{left:251.700000px;}
.x3b_c00307{left:254.400000px;}
.x111_c00307{left:256.350000px;}
.x130_c00307{left:259.350000px;}
.x54_c00307{left:261.600000px;}
.x98_c00307{left:262.800000px;}
.x18_c00307{left:264.750000px;}
.x6b_c00307{left:266.700000px;}
.xf9_c00307{left:267.900000px;}
.xe4_c00307{left:270.450000px;}
.x14f_c00307{left:273.450000px;}
.x149_c00307{left:274.500000px;}
.x85_c00307{left:276.150000px;}
.xba_c00307{left:281.400000px;}
.xdd_c00307{left:283.650000px;}
.xa5_c00307{left:285.300000px;}
.x5_c00307{left:286.500000px;}
.x3c_c00307{left:288.900000px;}
.xb7_c00307{left:292.650000px;}
.xfa_c00307{left:294.600000px;}
.xe5_c00307{left:299.550000px;}
.x60_c00307{left:300.900000px;}
.x19_c00307{left:302.250000px;}
.xae_c00307{left:303.900000px;}
.x45_c00307{left:306.150000px;}
.xce_c00307{left:307.650000px;}
.x61_c00307{left:309.150000px;}
.xf0_c00307{left:310.650000px;}
.x3d_c00307{left:312.600000px;}
.x9d_c00307{left:313.800000px;}
.x29_c00307{left:315.000000px;}
.x131_c00307{left:316.500000px;}
.x1a_c00307{left:318.450000px;}
.x6c_c00307{left:319.950000px;}
.x86_c00307{left:321.900000px;}
.xa6_c00307{left:325.200000px;}
.x6_c00307{left:326.400000px;}
.x46_c00307{left:328.350000px;}
.x55_c00307{left:330.000000px;}
.xea_c00307{left:332.700000px;}
.x6d_c00307{left:333.750000px;}
.x8d_c00307{left:337.350000px;}
.x3e_c00307{left:339.900000px;}
.x62_c00307{left:342.300000px;}
.x56_c00307{left:344.100000px;}
.x107_c00307{left:346.950000px;}
.x6e_c00307{left:348.600000px;}
.x47_c00307{left:349.650000px;}
.x8e_c00307{left:351.750000px;}
.x14a_c00307{left:352.950000px;}
.xfd_c00307{left:354.300000px;}
.xc9_c00307{left:355.800000px;}
.x2a_c00307{left:357.450000px;}
.x10a_c00307{left:359.700000px;}
.x7_c00307{left:362.400000px;}
.x87_c00307{left:363.600000px;}
.x8f_c00307{left:366.450000px;}
.x127_c00307{left:367.500000px;}
.xc7_c00307{left:368.700000px;}
.x6f_c00307{left:370.500000px;}
.xaf_c00307{left:372.150000px;}
.x1b_c00307{left:373.200000px;}
.x116_c00307{left:375.150000px;}
.x2b_c00307{left:377.250000px;}
.x48_c00307{left:378.750000px;}
.x13e_c00307{left:380.550000px;}
.x108_c00307{left:382.200000px;}
.x8_c00307{left:383.250000px;}
.x112_c00307{left:384.900000px;}
.x57_c00307{left:386.550000px;}
.x90_c00307{left:387.750000px;}
.xc5_c00307{left:389.700000px;}
.x3f_c00307{left:392.100000px;}
.x58_c00307{left:393.750000px;}
.x10b_c00307{left:394.950000px;}
.xf1_c00307{left:398.250000px;}
.x70_c00307{left:399.300000px;}
.x59_c00307{left:400.650000px;}
.x91_c00307{left:402.450000px;}
.xfe_c00307{left:404.700000px;}
.x71_c00307{left:406.500000px;}
.x49_c00307{left:407.550000px;}
.x92_c00307{left:409.950000px;}
.x11e_c00307{left:411.750000px;}
.x1c_c00307{left:414.300000px;}
.x9_c00307{left:415.350000px;}
.xff_c00307{left:417.000000px;}
.x10c_c00307{left:418.050000px;}
.x132_c00307{left:419.100000px;}
.x63_c00307{left:420.750000px;}
.x2c_c00307{left:423.750000px;}
.x154_c00307{left:426.300000px;}
.x12d_c00307{left:427.800000px;}
.x4a_c00307{left:429.150000px;}
.xa_c00307{left:433.050000px;}
.x2_c00307{left:435.600000px;}
.x5a_c00307{left:436.950000px;}
.x93_c00307{left:438.750000px;}
.x147_c00307{left:441.150000px;}
.xca_c00307{left:442.950000px;}
.xbb_c00307{left:445.500000px;}
.xb_c00307{left:451.350000px;}
.x128_c00307{left:453.900000px;}
.x5b_c00307{left:455.700000px;}
.x7a_c00307{left:456.900000px;}
.x94_c00307{left:458.250000px;}
.x11f_c00307{left:462.150000px;}
.xe6_c00307{left:463.650000px;}
.x144_c00307{left:466.050000px;}
.x148_c00307{left:467.400000px;}
.x138_c00307{left:469.350000px;}
.xeb_c00307{left:473.250000px;}
.xa7_c00307{left:475.350000px;}
.x2d_c00307{left:477.750000px;}
.xb0_c00307{left:479.100000px;}
.x1d_c00307{left:480.900000px;}
.x4b_c00307{left:484.200000px;}
.x5c_c00307{left:486.600000px;}
.xb1_c00307{left:489.600000px;}
.x102_c00307{left:492.150000px;}
.x129_c00307{left:493.800000px;}
.xcb_c00307{left:495.450000px;}
.x145_c00307{left:497.400000px;}
.x14d_c00307{left:499.050000px;}
.x113_c00307{left:500.550000px;}
.xbc_c00307{left:502.650000px;}
.xb2_c00307{left:504.750000px;}
.x117_c00307{left:505.800000px;}
.xcc_c00307{left:507.000000px;}
.x64_c00307{left:509.100000px;}
.xc_c00307{left:510.750000px;}
.x2e_c00307{left:511.950000px;}
.x4c_c00307{left:514.500000px;}
.x95_c00307{left:515.850000px;}
.xa8_c00307{left:517.800000px;}
.x13f_c00307{left:523.200000px;}
.x12a_c00307{left:524.700000px;}
.x152_c00307{left:525.750000px;}
.x13a_c00307{left:526.950000px;}
.x109_c00307{left:531.750000px;}
.x150_c00307{left:535.500000px;}
.x96_c00307{left:542.850000px;}
.x2f_c00307{left:549.750000px;}
.xbd_c00307{left:550.950000px;}
.x151_c00307{left:552.750000px;}
.xf4_c00307{left:554.100000px;}
.x118_c00307{left:556.500000px;}
.x133_c00307{left:558.450000px;}
.x155_c00307{left:560.250000px;}
.xd_c00307{left:564.000000px;}
.x40_c00307{left:566.700000px;}
.x7b_c00307{left:568.200000px;}
.xcf_c00307{left:569.550000px;}
.xde_c00307{left:571.650000px;}
.x103_c00307{left:572.850000px;}
.x114_c00307{left:574.350000px;}
.x1e_c00307{left:577.350000px;}
.x153_c00307{left:582.000000px;}
.x7c_c00307{left:584.100000px;}
.x65_c00307{left:588.300000px;}
.xd8_c00307{left:589.950000px;}
.x72_c00307{left:591.450000px;}
.x83_c00307{left:595.800000px;}
.xf5_c00307{left:597.600000px;}
.x119_c00307{left:600.450000px;}
.x41_c00307{left:601.950000px;}
.xe7_c00307{left:603.600000px;}
.x5d_c00307{left:606.750000px;}
.xbe_c00307{left:610.350000px;}
.x88_c00307{left:612.750000px;}
.x7d_c00307{left:615.750000px;}
.x13b_c00307{left:617.400000px;}
.x134_c00307{left:619.650000px;}
.x9e_c00307{left:620.850000px;}
.x4d_c00307{left:622.500000px;}
.xa9_c00307{left:625.050000px;}
.xe_c00307{left:627.000000px;}
.x73_c00307{left:628.200000px;}
.xfb_c00307{left:629.400000px;}
.x7e_c00307{left:631.200000px;}
.x30_c00307{left:632.850000px;}
.x125_c00307{left:634.800000px;}
.xd0_c00307{left:637.950000px;}
.xe8_c00307{left:639.900000px;}
.xdf_c00307{left:641.550000px;}
.x140_c00307{left:642.750000px;}
.xaa_c00307{left:643.800000px;}
.x99_c00307{left:645.750000px;}
.x74_c00307{left:646.950000px;}
.x13c_c00307{left:650.550000px;}
.x5e_c00307{left:651.750000px;}
.xb3_c00307{left:653.400000px;}
.x4e_c00307{left:654.900000px;}
.xd1_c00307{left:656.250000px;}
.xf_c00307{left:657.900000px;}
.x89_c00307{left:659.850000px;}
.x104_c00307{left:661.350000px;}
.x84_c00307{left:663.750000px;}
.x66_c00307{left:665.250000px;}
.x11a_c00307{left:666.300000px;}
.x31_c00307{left:668.850000px;}
.x24_c00307{left:671.400000px;}
.x10d_c00307{left:673.050000px;}
.xb8_c00307{left:674.850000px;}
.xd3_c00307{left:676.950000px;}
.x126_c00307{left:680.100000px;}
.x7f_c00307{left:681.900000px;}
.x135_c00307{left:682.950000px;}
.x9f_c00307{left:684.600000px;}
.x100_c00307{left:685.950000px;}
.xd9_c00307{left:691.800000px;}
.x67_c00307{left:695.100000px;}
.x120_c00307{left:696.900000px;}
.x1f_c00307{left:700.050000px;}
.x25_c00307{left:701.100000px;}
.x105_c00307{left:702.750000px;}
.x14b_c00307{left:703.950000px;}
.x10_c00307{left:705.750000px;}
.x9a_c00307{left:706.950000px;}
.xd2_c00307{left:709.200000px;}
.xda_c00307{left:711.300000px;}
.x32_c00307{left:713.100000px;}
.xd4_c00307{left:714.450000px;}
.x4f_c00307{left:715.800000px;}
.xe0_c00307{left:718.200000px;}
.x20_c00307{left:720.600000px;}
.xa0_c00307{left:723.900000px;}
.x75_c00307{left:725.100000px;}
.x14e_c00307{left:727.500000px;}
.x8a_c00307{left:728.550000px;}
.x156_c00307{left:729.600000px;}
.xb4_c00307{left:731.550000px;}
.xf6_c00307{left:733.200000px;}
.xbf_c00307{left:734.250000px;}
.xdb_c00307{left:736.500000px;}
.x33_c00307{left:738.300000px;}
.x68_c00307{left:739.800000px;}
.xe9_c00307{left:741.750000px;}
.x80_c00307{left:743.100000px;}
.xb5_c00307{left:745.950000px;}
.x141_c00307{left:747.600000px;}
.x11_c00307{left:748.650000px;}
.xc0_c00307{left:751.500000px;}
.x11b_c00307{left:753.150000px;}
.x34_c00307{left:756.300000px;}
.xf2_c00307{left:758.700000px;}
.x69_c00307{left:761.850000px;}
.x12_c00307{left:763.350000px;}
.x50_c00307{left:767.700000px;}
.x142_c00307{left:769.950000px;}
.x12b_c00307{left:771.750000px;}
.x10e_c00307{left:773.400000px;}
.x106_c00307{left:775.950000px;}
.xec_c00307{left:777.750000px;}
.xa1_c00307{left:778.950000px;}
.xd5_c00307{left:781.500000px;}
.x6a_c00307{left:782.700000px;}
.x42_c00307{left:784.950000px;}
.x8b_c00307{left:786.900000px;}
.xe1_c00307{left:788.100000px;}
.xa2_c00307{left:790.800000px;}
.x35_c00307{left:794.100000px;}
.x9b_c00307{left:795.900000px;}
.xc1_c00307{left:797.550000px;}
.x76_c00307{left:799.200000px;}
.x10f_c00307{left:801.450000px;}
.x81_c00307{left:803.550000px;}
.xf7_c00307{left:805.200000px;}
.x13_c00307{left:806.250000px;}
.x14c_c00307{left:807.450000px;}
.x121_c00307{left:809.250000px;}
.x36_c00307{left:811.350000px;}
.x21_c00307{left:815.250000px;}
.x12e_c00307{left:816.600000px;}
.xa3_c00307{left:819.600000px;}
.x11c_c00307{left:820.800000px;}
.x43_c00307{left:825.600000px;}
.x136_c00307{left:826.650000px;}
.x82_c00307{left:828.450000px;}
.x5f_c00307{left:830.700000px;}
.xab_c00307{left:831.750000px;}
.x77_c00307{left:833.100000px;}
.x122_c00307{left:834.450000px;}
.x14_c00307{left:837.150000px;}
.x37_c00307{left:839.100000px;}
.x12c_c00307{left:841.200000px;}
.xed_c00307{left:842.250000px;}
.x22_c00307{left:844.050000px;}
.xd6_c00307{left:846.300000px;}
.x11d_c00307{left:847.800000px;}
.xee_c00307{left:850.950000px;}
.x51_c00307{left:852.000000px;}
.x97_c00307{left:853.950000px;}
.x13d_c00307{left:855.000000px;}
.x137_c00307{left:856.500000px;}
.xe2_c00307{left:859.050000px;}
.x38_c00307{left:862.800000px;}
.xd7_c00307{left:864.600000px;}
.xb9_c00307{left:865.950000px;}
.xac_c00307{left:869.850000px;}
.xf8_c00307{left:871.050000px;}
.x15_c00307{left:872.100000px;}
.x26_c00307{left:873.450000px;}
.x9c_c00307{left:875.400000px;}
.xf3_c00307{left:876.450000px;}
.xc2_c00307{left:878.250000px;}
.xb6_c00307{left:880.200000px;}
.x124_c00307{left:882.450000px;}
.x110_c00307{left:883.800000px;}
.x139_c00307{left:885.150000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls3_c00307{letter-spacing:0.000000pt;}
.ls0_c00307{letter-spacing:52.698413pt;}
.ls1_c00307{letter-spacing:54.601093pt;}
.ls2_c00307{letter-spacing:58.098361pt;}
.ws18_c00307{word-spacing:-87.431694pt;}
.ws12_c00307{word-spacing:-83.934426pt;}
.ws8_c00307{word-spacing:-79.365079pt;}
.wsf_c00307{word-spacing:-7.513228pt;}
.ws13_c00307{word-spacing:-1.743590pt;}
.ws1c_c00307{word-spacing:0.000000pt;}
.ws1b_c00307{word-spacing:7.915074pt;}
.ws14_c00307{word-spacing:11.953162pt;}
.wse_c00307{word-spacing:15.424837pt;}
.ws16_c00307{word-spacing:18.198283pt;}
.ws4_c00307{word-spacing:21.770492pt;}
.ws15_c00307{word-spacing:23.492404pt;}
.ws19_c00307{word-spacing:25.267760pt;}
.ws0_c00307{word-spacing:28.765027pt;}
.ws10_c00307{word-spacing:30.793651pt;}
.ws3_c00307{word-spacing:34.972010pt;}
.ws5_c00307{word-spacing:39.043257pt;}
.ws7_c00307{word-spacing:39.259259pt;}
.ws6_c00307{word-spacing:43.114504pt;}
.ws17_c00307{word-spacing:52.032906pt;}
.ws11_c00307{word-spacing:56.023392pt;}
.ws1a_c00307{word-spacing:57.408171pt;}
.ws2_c00307{word-spacing:58.764526pt;}
.ws9_c00307{word-spacing:60.116959pt;}
.ws1_c00307{word-spacing:66.142340pt;}
.wsc_c00307{word-spacing:71.779193pt;}
.wsb_c00307{word-spacing:77.901168pt;}
.wsd_c00307{word-spacing:885.394636pt;}
.wsa_c00307{word-spacing:1508.763359pt;}
._8_c00307{margin-left:-58.098361pt;}
._6_c00307{margin-left:-54.601093pt;}
._4_c00307{margin-left:-52.698413pt;}
._7_c00307{width:44.632708pt;}
._0_c00307{width:54.601093pt;}
._3_c00307{width:58.098361pt;}
._2_c00307{width:72.447837pt;}
._1_c00307{width:92.990826pt;}
._5_c00307{width:102.471338pt;}
.fs5_c00307{font-size:48.000000pt;}
.fs1_c00307{font-size:53.333333pt;}
.fs2_c00307{font-size:58.666667pt;}
.fs3_c00307{font-size:64.000000pt;}
.fs4_c00307{font-size:69.333333pt;}
.fs0_c00307{font-size:74.666667pt;}
.y0_c00307{bottom:0.000000pt;}
.y3c_c00307{bottom:153.466667pt;}
.y3b_c00307{bottom:166.000000pt;}
.y3a_c00307{bottom:183.600000pt;}
.y39_c00307{bottom:194.533333pt;}
.y38_c00307{bottom:209.600000pt;}
.y37_c00307{bottom:222.133333pt;}
.y36_c00307{bottom:234.933333pt;}
.y35_c00307{bottom:248.000000pt;}
.y34_c00307{bottom:260.133333pt;}
.y33_c00307{bottom:272.666667pt;}
.y32_c00307{bottom:297.600000pt;}
.y31_c00307{bottom:299.200000pt;}
.y30_c00307{bottom:311.733333pt;}
.y2f_c00307{bottom:325.333333pt;}
.y2e_c00307{bottom:341.066667pt;}
.y2d_c00307{bottom:360.000000pt;}
.y2c_c00307{bottom:365.466667pt;}
.y2b_c00307{bottom:381.466667pt;}
.y2a_c00307{bottom:396.800000pt;}
.y29_c00307{bottom:412.800000pt;}
.y28_c00307{bottom:431.333333pt;}
.y27_c00307{bottom:448.266667pt;}
.y26_c00307{bottom:464.666667pt;}
.y25_c00307{bottom:480.266667pt;}
.y24_c00307{bottom:501.066667pt;}
.y23_c00307{bottom:517.066667pt;}
.y22_c00307{bottom:536.000000pt;}
.y21_c00307{bottom:556.800000pt;}
.y20_c00307{bottom:568.933333pt;}
.y1f_c00307{bottom:584.666667pt;}
.y1e_c00307{bottom:600.666667pt;}
.y1d_c00307{bottom:616.666667pt;}
.y19_c00307{bottom:624.533333pt;}
.y1c_c00307{bottom:632.666667pt;}
.y18_c00307{bottom:640.533333pt;}
.y1b_c00307{bottom:648.666667pt;}
.y17_c00307{bottom:656.533333pt;}
.y1a_c00307{bottom:667.866667pt;}
.y16_c00307{bottom:672.266667pt;}
.y15_c00307{bottom:688.400000pt;}
.y14_c00307{bottom:704.400000pt;}
.y13_c00307{bottom:720.666667pt;}
.y12_c00307{bottom:736.400000pt;}
.y11_c00307{bottom:752.133333pt;}
.y10_c00307{bottom:767.866667pt;}
.yf_c00307{bottom:785.200000pt;}
.ye_c00307{bottom:799.600000pt;}
.yd_c00307{bottom:815.600000pt;}
.yc_c00307{bottom:835.066667pt;}
.yb_c00307{bottom:855.866667pt;}
.ya_c00307{bottom:862.933333pt;}
.y9_c00307{bottom:878.933333pt;}
.y8_c00307{bottom:895.200000pt;}
.y7_c00307{bottom:912.133333pt;}
.y6_c00307{bottom:927.200000pt;}
.y5_c00307{bottom:942.933333pt;}
.y4_c00307{bottom:962.133333pt;}
.y3_c00307{bottom:985.200000pt;}
.y2_c00307{bottom:1001.866667pt;}
.y1_c00307{bottom:1020.133333pt;}
.h7_c00307{height:48.000000pt;}
.h3_c00307{height:53.333333pt;}
.h4_c00307{height:58.666667pt;}
.h5_c00307{height:64.000000pt;}
.h6_c00307{height:69.333333pt;}
.h2_c00307{height:74.666667pt;}
.h1_c00307{height:1128.000000pt;}
.h0_c00307{height:1128.319987pt;}
.w1_c00307{width:854.666667pt;}
.w0_c00307{width:854.720052pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:161.866667pt;}
.x27_c00307{left:170.266667pt;}
.xa4_c00307{left:172.000000pt;}
.xdc_c00307{left:175.333333pt;}
.x101_c00307{left:176.666667pt;}
.x16_c00307{left:178.666667pt;}
.x44_c00307{left:180.000000pt;}
.x39_c00307{left:182.266667pt;}
.x123_c00307{left:183.333333pt;}
.x3_c00307{left:184.933333pt;}
.x23_c00307{left:186.133333pt;}
.x12f_c00307{left:188.000000pt;}
.xad_c00307{left:189.200000pt;}
.xc4_c00307{left:190.666667pt;}
.xfc_c00307{left:192.666667pt;}
.x115_c00307{left:194.000000pt;}
.x52_c00307{left:196.000000pt;}
.x78_c00307{left:197.200000pt;}
.x146_c00307{left:199.200000pt;}
.x4_c00307{left:201.600000pt;}
.x143_c00307{left:206.266667pt;}
.xe3_c00307{left:207.466667pt;}
.x3a_c00307{left:210.800000pt;}
.xc3_c00307{left:211.733333pt;}
.xef_c00307{left:212.800000pt;}
.x17_c00307{left:213.866667pt;}
.x53_c00307{left:215.200000pt;}
.x79_c00307{left:216.400000pt;}
.x8c_c00307{left:217.600000pt;}
.xc8_c00307{left:220.533333pt;}
.xcd_c00307{left:221.600000pt;}
.xc6_c00307{left:222.666667pt;}
.x28_c00307{left:223.733333pt;}
.x3b_c00307{left:226.133333pt;}
.x111_c00307{left:227.866667pt;}
.x130_c00307{left:230.533333pt;}
.x54_c00307{left:232.533333pt;}
.x98_c00307{left:233.600000pt;}
.x18_c00307{left:235.333333pt;}
.x6b_c00307{left:237.066667pt;}
.xf9_c00307{left:238.133333pt;}
.xe4_c00307{left:240.400000pt;}
.x14f_c00307{left:243.066667pt;}
.x149_c00307{left:244.000000pt;}
.x85_c00307{left:245.466667pt;}
.xba_c00307{left:250.133333pt;}
.xdd_c00307{left:252.133333pt;}
.xa5_c00307{left:253.600000pt;}
.x5_c00307{left:254.666667pt;}
.x3c_c00307{left:256.800000pt;}
.xb7_c00307{left:260.133333pt;}
.xfa_c00307{left:261.866667pt;}
.xe5_c00307{left:266.266667pt;}
.x60_c00307{left:267.466667pt;}
.x19_c00307{left:268.666667pt;}
.xae_c00307{left:270.133333pt;}
.x45_c00307{left:272.133333pt;}
.xce_c00307{left:273.466667pt;}
.x61_c00307{left:274.800000pt;}
.xf0_c00307{left:276.133333pt;}
.x3d_c00307{left:277.866667pt;}
.x9d_c00307{left:278.933333pt;}
.x29_c00307{left:280.000000pt;}
.x131_c00307{left:281.333333pt;}
.x1a_c00307{left:283.066667pt;}
.x6c_c00307{left:284.400000pt;}
.x86_c00307{left:286.133333pt;}
.xa6_c00307{left:289.066667pt;}
.x6_c00307{left:290.133333pt;}
.x46_c00307{left:291.866667pt;}
.x55_c00307{left:293.333333pt;}
.xea_c00307{left:295.733333pt;}
.x6d_c00307{left:296.666667pt;}
.x8d_c00307{left:299.866667pt;}
.x3e_c00307{left:302.133333pt;}
.x62_c00307{left:304.266667pt;}
.x56_c00307{left:305.866667pt;}
.x107_c00307{left:308.400000pt;}
.x6e_c00307{left:309.866667pt;}
.x47_c00307{left:310.800000pt;}
.x8e_c00307{left:312.666667pt;}
.x14a_c00307{left:313.733333pt;}
.xfd_c00307{left:314.933333pt;}
.xc9_c00307{left:316.266667pt;}
.x2a_c00307{left:317.733333pt;}
.x10a_c00307{left:319.733333pt;}
.x7_c00307{left:322.133333pt;}
.x87_c00307{left:323.200000pt;}
.x8f_c00307{left:325.733333pt;}
.x127_c00307{left:326.666667pt;}
.xc7_c00307{left:327.733333pt;}
.x6f_c00307{left:329.333333pt;}
.xaf_c00307{left:330.800000pt;}
.x1b_c00307{left:331.733333pt;}
.x116_c00307{left:333.466667pt;}
.x2b_c00307{left:335.333333pt;}
.x48_c00307{left:336.666667pt;}
.x13e_c00307{left:338.266667pt;}
.x108_c00307{left:339.733333pt;}
.x8_c00307{left:340.666667pt;}
.x112_c00307{left:342.133333pt;}
.x57_c00307{left:343.600000pt;}
.x90_c00307{left:344.666667pt;}
.xc5_c00307{left:346.400000pt;}
.x3f_c00307{left:348.533333pt;}
.x58_c00307{left:350.000000pt;}
.x10b_c00307{left:351.066667pt;}
.xf1_c00307{left:354.000000pt;}
.x70_c00307{left:354.933333pt;}
.x59_c00307{left:356.133333pt;}
.x91_c00307{left:357.733333pt;}
.xfe_c00307{left:359.733333pt;}
.x71_c00307{left:361.333333pt;}
.x49_c00307{left:362.266667pt;}
.x92_c00307{left:364.400000pt;}
.x11e_c00307{left:366.000000pt;}
.x1c_c00307{left:368.266667pt;}
.x9_c00307{left:369.200000pt;}
.xff_c00307{left:370.666667pt;}
.x10c_c00307{left:371.600000pt;}
.x132_c00307{left:372.533333pt;}
.x63_c00307{left:374.000000pt;}
.x2c_c00307{left:376.666667pt;}
.x154_c00307{left:378.933333pt;}
.x12d_c00307{left:380.266667pt;}
.x4a_c00307{left:381.466667pt;}
.xa_c00307{left:384.933333pt;}
.x2_c00307{left:387.200000pt;}
.x5a_c00307{left:388.400000pt;}
.x93_c00307{left:390.000000pt;}
.x147_c00307{left:392.133333pt;}
.xca_c00307{left:393.733333pt;}
.xbb_c00307{left:396.000000pt;}
.xb_c00307{left:401.200000pt;}
.x128_c00307{left:403.466667pt;}
.x5b_c00307{left:405.066667pt;}
.x7a_c00307{left:406.133333pt;}
.x94_c00307{left:407.333333pt;}
.x11f_c00307{left:410.800000pt;}
.xe6_c00307{left:412.133333pt;}
.x144_c00307{left:414.266667pt;}
.x148_c00307{left:415.466667pt;}
.x138_c00307{left:417.200000pt;}
.xeb_c00307{left:420.666667pt;}
.xa7_c00307{left:422.533333pt;}
.x2d_c00307{left:424.666667pt;}
.xb0_c00307{left:425.866667pt;}
.x1d_c00307{left:427.466667pt;}
.x4b_c00307{left:430.400000pt;}
.x5c_c00307{left:432.533333pt;}
.xb1_c00307{left:435.200000pt;}
.x102_c00307{left:437.466667pt;}
.x129_c00307{left:438.933333pt;}
.xcb_c00307{left:440.400000pt;}
.x145_c00307{left:442.133333pt;}
.x14d_c00307{left:443.600000pt;}
.x113_c00307{left:444.933333pt;}
.xbc_c00307{left:446.800000pt;}
.xb2_c00307{left:448.666667pt;}
.x117_c00307{left:449.600000pt;}
.xcc_c00307{left:450.666667pt;}
.x64_c00307{left:452.533333pt;}
.xc_c00307{left:454.000000pt;}
.x2e_c00307{left:455.066667pt;}
.x4c_c00307{left:457.333333pt;}
.x95_c00307{left:458.533333pt;}
.xa8_c00307{left:460.266667pt;}
.x13f_c00307{left:465.066667pt;}
.x12a_c00307{left:466.400000pt;}
.x152_c00307{left:467.333333pt;}
.x13a_c00307{left:468.400000pt;}
.x109_c00307{left:472.666667pt;}
.x150_c00307{left:476.000000pt;}
.x96_c00307{left:482.533333pt;}
.x2f_c00307{left:488.666667pt;}
.xbd_c00307{left:489.733333pt;}
.x151_c00307{left:491.333333pt;}
.xf4_c00307{left:492.533333pt;}
.x118_c00307{left:494.666667pt;}
.x133_c00307{left:496.400000pt;}
.x155_c00307{left:498.000000pt;}
.xd_c00307{left:501.333333pt;}
.x40_c00307{left:503.733333pt;}
.x7b_c00307{left:505.066667pt;}
.xcf_c00307{left:506.266667pt;}
.xde_c00307{left:508.133333pt;}
.x103_c00307{left:509.200000pt;}
.x114_c00307{left:510.533333pt;}
.x1e_c00307{left:513.200000pt;}
.x153_c00307{left:517.333333pt;}
.x7c_c00307{left:519.200000pt;}
.x65_c00307{left:522.933333pt;}
.xd8_c00307{left:524.400000pt;}
.x72_c00307{left:525.733333pt;}
.x83_c00307{left:529.600000pt;}
.xf5_c00307{left:531.200000pt;}
.x119_c00307{left:533.733333pt;}
.x41_c00307{left:535.066667pt;}
.xe7_c00307{left:536.533333pt;}
.x5d_c00307{left:539.333333pt;}
.xbe_c00307{left:542.533333pt;}
.x88_c00307{left:544.666667pt;}
.x7d_c00307{left:547.333333pt;}
.x13b_c00307{left:548.800000pt;}
.x134_c00307{left:550.800000pt;}
.x9e_c00307{left:551.866667pt;}
.x4d_c00307{left:553.333333pt;}
.xa9_c00307{left:555.600000pt;}
.xe_c00307{left:557.333333pt;}
.x73_c00307{left:558.400000pt;}
.xfb_c00307{left:559.466667pt;}
.x7e_c00307{left:561.066667pt;}
.x30_c00307{left:562.533333pt;}
.x125_c00307{left:564.266667pt;}
.xd0_c00307{left:567.066667pt;}
.xe8_c00307{left:568.800000pt;}
.xdf_c00307{left:570.266667pt;}
.x140_c00307{left:571.333333pt;}
.xaa_c00307{left:572.266667pt;}
.x99_c00307{left:574.000000pt;}
.x74_c00307{left:575.066667pt;}
.x13c_c00307{left:578.266667pt;}
.x5e_c00307{left:579.333333pt;}
.xb3_c00307{left:580.800000pt;}
.x4e_c00307{left:582.133333pt;}
.xd1_c00307{left:583.333333pt;}
.xf_c00307{left:584.800000pt;}
.x89_c00307{left:586.533333pt;}
.x104_c00307{left:587.866667pt;}
.x84_c00307{left:590.000000pt;}
.x66_c00307{left:591.333333pt;}
.x11a_c00307{left:592.266667pt;}
.x31_c00307{left:594.533333pt;}
.x24_c00307{left:596.800000pt;}
.x10d_c00307{left:598.266667pt;}
.xb8_c00307{left:599.866667pt;}
.xd3_c00307{left:601.733333pt;}
.x126_c00307{left:604.533333pt;}
.x7f_c00307{left:606.133333pt;}
.x135_c00307{left:607.066667pt;}
.x9f_c00307{left:608.533333pt;}
.x100_c00307{left:609.733333pt;}
.xd9_c00307{left:614.933333pt;}
.x67_c00307{left:617.866667pt;}
.x120_c00307{left:619.466667pt;}
.x1f_c00307{left:622.266667pt;}
.x25_c00307{left:623.200000pt;}
.x105_c00307{left:624.666667pt;}
.x14b_c00307{left:625.733333pt;}
.x10_c00307{left:627.333333pt;}
.x9a_c00307{left:628.400000pt;}
.xd2_c00307{left:630.400000pt;}
.xda_c00307{left:632.266667pt;}
.x32_c00307{left:633.866667pt;}
.xd4_c00307{left:635.066667pt;}
.x4f_c00307{left:636.266667pt;}
.xe0_c00307{left:638.400000pt;}
.x20_c00307{left:640.533333pt;}
.xa0_c00307{left:643.466667pt;}
.x75_c00307{left:644.533333pt;}
.x14e_c00307{left:646.666667pt;}
.x8a_c00307{left:647.600000pt;}
.x156_c00307{left:648.533333pt;}
.xb4_c00307{left:650.266667pt;}
.xf6_c00307{left:651.733333pt;}
.xbf_c00307{left:652.666667pt;}
.xdb_c00307{left:654.666667pt;}
.x33_c00307{left:656.266667pt;}
.x68_c00307{left:657.600000pt;}
.xe9_c00307{left:659.333333pt;}
.x80_c00307{left:660.533333pt;}
.xb5_c00307{left:663.066667pt;}
.x141_c00307{left:664.533333pt;}
.x11_c00307{left:665.466667pt;}
.xc0_c00307{left:668.000000pt;}
.x11b_c00307{left:669.466667pt;}
.x34_c00307{left:672.266667pt;}
.xf2_c00307{left:674.400000pt;}
.x69_c00307{left:677.200000pt;}
.x12_c00307{left:678.533333pt;}
.x50_c00307{left:682.400000pt;}
.x142_c00307{left:684.400000pt;}
.x12b_c00307{left:686.000000pt;}
.x10e_c00307{left:687.466667pt;}
.x106_c00307{left:689.733333pt;}
.xec_c00307{left:691.333333pt;}
.xa1_c00307{left:692.400000pt;}
.xd5_c00307{left:694.666667pt;}
.x6a_c00307{left:695.733333pt;}
.x42_c00307{left:697.733333pt;}
.x8b_c00307{left:699.466667pt;}
.xe1_c00307{left:700.533333pt;}
.xa2_c00307{left:702.933333pt;}
.x35_c00307{left:705.866667pt;}
.x9b_c00307{left:707.466667pt;}
.xc1_c00307{left:708.933333pt;}
.x76_c00307{left:710.400000pt;}
.x10f_c00307{left:712.400000pt;}
.x81_c00307{left:714.266667pt;}
.xf7_c00307{left:715.733333pt;}
.x13_c00307{left:716.666667pt;}
.x14c_c00307{left:717.733333pt;}
.x121_c00307{left:719.333333pt;}
.x36_c00307{left:721.200000pt;}
.x21_c00307{left:724.666667pt;}
.x12e_c00307{left:725.866667pt;}
.xa3_c00307{left:728.533333pt;}
.x11c_c00307{left:729.600000pt;}
.x43_c00307{left:733.866667pt;}
.x136_c00307{left:734.800000pt;}
.x82_c00307{left:736.400000pt;}
.x5f_c00307{left:738.400000pt;}
.xab_c00307{left:739.333333pt;}
.x77_c00307{left:740.533333pt;}
.x122_c00307{left:741.733333pt;}
.x14_c00307{left:744.133333pt;}
.x37_c00307{left:745.866667pt;}
.x12c_c00307{left:747.733333pt;}
.xed_c00307{left:748.666667pt;}
.x22_c00307{left:750.266667pt;}
.xd6_c00307{left:752.266667pt;}
.x11d_c00307{left:753.600000pt;}
.xee_c00307{left:756.400000pt;}
.x51_c00307{left:757.333333pt;}
.x97_c00307{left:759.066667pt;}
.x13d_c00307{left:760.000000pt;}
.x137_c00307{left:761.333333pt;}
.xe2_c00307{left:763.600000pt;}
.x38_c00307{left:766.933333pt;}
.xd7_c00307{left:768.533333pt;}
.xb9_c00307{left:769.733333pt;}
.xac_c00307{left:773.200000pt;}
.xf8_c00307{left:774.266667pt;}
.x15_c00307{left:775.200000pt;}
.x26_c00307{left:776.400000pt;}
.x9c_c00307{left:778.133333pt;}
.xf3_c00307{left:779.066667pt;}
.xc2_c00307{left:780.666667pt;}
.xb6_c00307{left:782.400000pt;}
.x124_c00307{left:784.400000pt;}
.x110_c00307{left:785.600000pt;}
.x139_c00307{left:786.800000pt;}
}





/* 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_c00308 {
    display:none;
  }
  .loading-indicator_c00308.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00308 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_c00308 { 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_c00308" -> "#page-container .classname_c00308")
 */
.pf_c00308 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00308 { /* 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_c00308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00308 { /* 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_c00308 { /* 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_c00308 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00308 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00308 {overflow:visible;}
  }
}
.c_c00308 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00308 { /* 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_c00308:after { /* webkit #35443 */
  content: '';
}
.t_c00308:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00308 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 */
}
.__c00308 { /* 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_c00308 { /* info for Javascript */
  display:none;
}
.l_c00308 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00308 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00308 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00308: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_c00308 {
    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_c00308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00308.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_c00308 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00308;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.000000;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;}
.mc0_c00308{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m71_c00308{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00308{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00308{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m48_c00308{transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);}
.mec_c00308{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00308{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m96_c00308{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m54_c00308{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00308{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00308{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.maa_c00308{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00308{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00308{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m119_c00308{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00308{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m5_c00308{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00308{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m30_c00308{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mce_c00308{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00308{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00308{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00308{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00308{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00308{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00308{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.me6_c00308{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.maf_c00308{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00308{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m8_c00308{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m19_c00308{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9_c00308{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m116_c00308{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m121_c00308{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m87_c00308{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00308{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00308{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md3_c00308{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00308{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m135_c00308{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mac_c00308{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00308{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00308{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00308{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00308{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00308{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m63_c00308{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m86_c00308{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md1_c00308{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00308{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m7_c00308{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m101_c00308{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00308{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m46_c00308{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m26_c00308{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00308{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m68_c00308{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00308{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m82_c00308{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m20_c00308{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m13d_c00308{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00308{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m23_c00308{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00308{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m120_c00308{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.md5_c00308{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m66_c00308{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m39_c00308{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m134_c00308{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00308{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m40_c00308{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00308{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m138_c00308{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00308{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00308{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.ma_c00308{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2_c00308{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00308{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m65_c00308{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00308{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00308{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00308{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m127_c00308{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m28_c00308{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00308{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m12_c00308{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m80_c00308{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m6_c00308{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00308{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00308{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m4_c00308{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m33_c00308{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00308{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m107_c00308{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00308{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m88_c00308{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m43_c00308{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m41_c00308{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m81_c00308{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.me4_c00308{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md6_c00308{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m67_c00308{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m24_c00308{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00308{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md4_c00308{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.meb_c00308{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m108_c00308{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00308{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00308{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m36_c00308{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00308{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m34_c00308{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m13a_c00308{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m31_c00308{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me1_c00308{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.md_c00308{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m112_c00308{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00308{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00308{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m60_c00308{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00308{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00308{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00308{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00308{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m106_c00308{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m62_c00308{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m79_c00308{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00308{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mae_c00308{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00308{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00308{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m115_c00308{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m85_c00308{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m111_c00308{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00308{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb_c00308{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m29_c00308{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00308{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00308{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00308{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m95_c00308{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m126_c00308{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m103_c00308{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m17_c00308{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m61_c00308{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00308{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m94_c00308{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m139_c00308{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m44_c00308{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00308{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m32_c00308{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m18_c00308{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00308{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md9_c00308{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00308{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00308{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md7_c00308{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00308{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m75_c00308{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00308{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m14_c00308{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00308{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00308{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m104_c00308{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me_c00308{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00308{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00308{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md0_c00308{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00308{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00308{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00308{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md2_c00308{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00308{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m69_c00308{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m21_c00308{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00308{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00308{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m59_c00308{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m27_c00308{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m137_c00308{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00308{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m22_c00308{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m109_c00308{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m45_c00308{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00308{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00308{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00308{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00308{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m132_c00308{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00308{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00308{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00308{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00308{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m76_c00308{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m10_c00308{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mff_c00308{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m11_c00308{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m74_c00308{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m13b_c00308{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00308{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00308{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00308{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m91_c00308{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m131_c00308{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m125_c00308{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m100_c00308{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m35_c00308{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00308{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m16_c00308{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00308{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m13_c00308{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md8_c00308{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.me5_c00308{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.me9_c00308{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00308{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m37_c00308{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m70_c00308{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00308{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m50_c00308{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me3_c00308{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m47_c00308{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m123_c00308{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00308{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m99_c00308{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.med_c00308{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m25_c00308{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mc_c00308{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00308{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mad_c00308{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00308{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00308{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00308{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00308{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m53_c00308{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m58_c00308{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m118_c00308{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00308{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m42_c00308{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m136_c00308{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m51_c00308{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me8_c00308{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00308{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00308{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00308{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m124_c00308{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m89_c00308{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m122_c00308{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m105_c00308{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m97_c00308{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00308{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m90_c00308{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m49_c00308{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00308{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me7_c00308{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m64_c00308{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m133_c00308{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00308{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mde_c00308{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);}
.mf4_c00308{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf_c00308{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m57_c00308{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00308{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me0_c00308{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00308{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00308{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m110_c00308{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00308{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m38_c00308{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00308{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me2_c00308{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m15_c00308{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m93_c00308{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mea_c00308{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m98_c00308{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m78_c00308{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m128_c00308{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m55_c00308{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00308{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00308{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00308{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mca_c00308{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m84_c00308{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00308{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m56_c00308{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m130_c00308{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m129_c00308{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mef_c00308{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00308{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00308{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00308{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m92_c00308{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00308{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m117_c00308{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m52_c00308{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mda_c00308{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.mba_c00308{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m114_c00308{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00308{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00308{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00308{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m102_c00308{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m72_c00308{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m73_c00308{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00308{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00308{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00308{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00308{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.mee_c00308{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m77_c00308{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m113_c00308{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m83_c00308{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00308{transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00308{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00308{transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);}
.mab_c00308{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00308{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00308{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00308{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls3_c00308{letter-spacing:0.000000px;}
.ls0_c00308{letter-spacing:45.000000px;}
.ls2_c00308{letter-spacing:61.426230px;}
.ls1_c00308{letter-spacing:70.000000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{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__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c00308{word-spacing:-94.426230px;}
.ws7_c00308{word-spacing:-75.000000px;}
.ws4_c00308{word-spacing:-16.525773px;}
.ws14_c00308{word-spacing:-14.250000px;}
.ws19_c00308{word-spacing:-9.355030px;}
.ws0_c00308{word-spacing:-6.846626px;}
.ws1_c00308{word-spacing:-6.664122px;}
.ws16_c00308{word-spacing:-5.069100px;}
.ws15_c00308{word-spacing:-3.593750px;}
.ws3_c00308{word-spacing:-1.899906px;}
.ws1c_c00308{word-spacing:0.000000px;}
.ws2_c00308{word-spacing:9.000000px;}
.ws18_c00308{word-spacing:10.000000px;}
.wsf_c00308{word-spacing:11.875000px;}
.ws1a_c00308{word-spacing:14.500000px;}
.ws5_c00308{word-spacing:18.125000px;}
.ws6_c00308{word-spacing:22.142857px;}
.wsa_c00308{word-spacing:23.211796px;}
.ws8_c00308{word-spacing:25.714286px;}
.ws13_c00308{word-spacing:28.426230px;}
.ws1b_c00308{word-spacing:32.000000px;}
.wsb_c00308{word-spacing:32.250000px;}
.wsd_c00308{word-spacing:36.000000px;}
.wsc_c00308{word-spacing:39.750000px;}
.wse_c00308{word-spacing:40.000000px;}
.ws11_c00308{word-spacing:43.923664px;}
.ws17_c00308{word-spacing:44.166667px;}
.ws9_c00308{word-spacing:158.181818px;}
.ws10_c00308{word-spacing:204.166667px;}
._6_c00308{margin-left:-70.000000px;}
._7_c00308{margin-left:-61.426230px;}
._1_c00308{margin-left:-45.000000px;}
._0_c00308{width:23.316151px;}
._3_c00308{width:53.428954px;}
._5_c00308{width:59.285714px;}
._2_c00308{width:66.750000px;}
._4_c00308{width:74.166667px;}
.fc0_c00308{color:transparent;}
.fs6_c00308{font-size:30.000000px;}
.fs5_c00308{font-size:48.000000px;}
.fs4_c00308{font-size:54.000000px;}
.fs2_c00308{font-size:60.000000px;}
.fs3_c00308{font-size:66.000000px;}
.fs1_c00308{font-size:72.000000px;}
.fs0_c00308{font-size:78.000000px;}
.y0_c00308{bottom:0.000000px;}
.y6c_c00308{bottom:174.600000px;}
.y6a_c00308{bottom:192.300000px;}
.y38_c00308{bottom:196.200000px;}
.y69_c00308{bottom:210.300000px;}
.y37_c00308{bottom:213.750000px;}
.y68_c00308{bottom:230.700000px;}
.y36_c00308{bottom:231.450000px;}
.y67_c00308{bottom:244.800000px;}
.y35_c00308{bottom:249.150000px;}
.y66_c00308{bottom:259.950000px;}
.y34_c00308{bottom:266.700000px;}
.y65_c00308{bottom:278.700000px;}
.y33_c00308{bottom:287.250000px;}
.y64_c00308{bottom:293.100000px;}
.y32_c00308{bottom:301.350000px;}
.y63_c00308{bottom:305.550000px;}
.y31_c00308{bottom:315.750000px;}
.y62_c00308{bottom:325.050000px;}
.y30_c00308{bottom:330.150000px;}
.y2f_c00308{bottom:344.550000px;}
.y61_c00308{bottom:348.900000px;}
.y2e_c00308{bottom:358.650000px;}
.y60_c00308{bottom:364.200000px;}
.y2d_c00308{bottom:373.350000px;}
.y5f_c00308{bottom:381.900000px;}
.y2c_c00308{bottom:387.750000px;}
.y5e_c00308{bottom:399.150000px;}
.y2b_c00308{bottom:401.700000px;}
.y2a_c00308{bottom:416.100000px;}
.y5d_c00308{bottom:416.400000px;}
.y29_c00308{bottom:430.200000px;}
.y5c_c00308{bottom:434.100000px;}
.y28_c00308{bottom:444.300000px;}
.y5b_c00308{bottom:451.800000px;}
.y27_c00308{bottom:458.700000px;}
.y5a_c00308{bottom:469.500000px;}
.y26_c00308{bottom:473.100000px;}
.y59_c00308{bottom:491.700000px;}
.y25_c00308{bottom:493.050000px;}
.y58_c00308{bottom:509.400000px;}
.y24_c00308{bottom:511.050000px;}
.y23_c00308{bottom:528.750000px;}
.y57_c00308{bottom:536.100000px;}
.y22_c00308{bottom:546.450000px;}
.y56_c00308{bottom:554.100000px;}
.y21_c00308{bottom:567.900000px;}
.y55_c00308{bottom:572.100000px;}
.y20_c00308{bottom:585.600000px;}
.y54_c00308{bottom:594.000000px;}
.y1f_c00308{bottom:603.300000px;}
.y53_c00308{bottom:611.700000px;}
.y1e_c00308{bottom:621.300000px;}
.y52_c00308{bottom:629.250000px;}
.y1d_c00308{bottom:639.000000px;}
.y51_c00308{bottom:647.250000px;}
.y1c_c00308{bottom:656.250000px;}
.y50_c00308{bottom:664.950000px;}
.y1b_c00308{bottom:679.050000px;}
.y4f_c00308{bottom:682.200000px;}
.y1a_c00308{bottom:696.300000px;}
.y4e_c00308{bottom:702.750000px;}
.y4d_c00308{bottom:717.150000px;}
.y19_c00308{bottom:722.850000px;}
.y4c_c00308{bottom:729.300000px;}
.y18_c00308{bottom:744.750000px;}
.y4b_c00308{bottom:745.200000px;}
.y17_c00308{bottom:762.450000px;}
.y4a_c00308{bottom:762.900000px;}
.y16_c00308{bottom:780.450000px;}
.y15_c00308{bottom:797.700000px;}
.y49_c00308{bottom:803.100000px;}
.y14_c00308{bottom:815.400000px;}
.y48_c00308{bottom:820.800000px;}
.y13_c00308{bottom:833.400000px;}
.y47_c00308{bottom:838.500000px;}
.y12_c00308{bottom:851.100000px;}
.y46_c00308{bottom:855.750000px;}
.y11_c00308{bottom:873.300000px;}
.y45_c00308{bottom:878.100000px;}
.y10_c00308{bottom:891.300000px;}
.y44_c00308{bottom:895.350000px;}
.yf_c00308{bottom:909.150000px;}
.y43_c00308{bottom:922.650000px;}
.ye_c00308{bottom:926.850000px;}
.y6b_c00308{bottom:931.350000px;}
.y42_c00308{bottom:940.650000px;}
.yd_c00308{bottom:944.100000px;}
.y41_c00308{bottom:957.600000px;}
.yc_c00308{bottom:962.100000px;}
.yb_c00308{bottom:979.800000px;}
.y40_c00308{bottom:979.950000px;}
.ya_c00308{bottom:997.500000px;}
.y3f_c00308{bottom:997.950000px;}
.y9_c00308{bottom:1015.200000px;}
.y3e_c00308{bottom:1023.750000px;}
.y8_c00308{bottom:1033.200000px;}
.y3d_c00308{bottom:1041.450000px;}
.y7_c00308{bottom:1050.450000px;}
.y3c_c00308{bottom:1059.150000px;}
.y6_c00308{bottom:1077.450000px;}
.y3b_c00308{bottom:1081.500000px;}
.y5_c00308{bottom:1086.150000px;}
.y3a_c00308{bottom:1098.750000px;}
.y4_c00308{bottom:1106.700000px;}
.y39_c00308{bottom:1116.750000px;}
.y3_c00308{bottom:1121.100000px;}
.y2_c00308{bottom:1140.150000px;}
.y1_c00308{bottom:1143.750000px;}
.h8_c00308{height:30.000000px;}
.h7_c00308{height:48.000000px;}
.h6_c00308{height:54.000000px;}
.h4_c00308{height:60.000000px;}
.h5_c00308{height:66.000000px;}
.h3_c00308{height:72.000000px;}
.h2_c00308{height:78.000000px;}
.h1_c00308{height:1270.500000px;}
.h0_c00308{height:1270.799927px;}
.w1_c00308{width:961.500000px;}
.w0_c00308{width:961.560058px;}
.x0_c00308{left:0.000000px;}
.x86_c00308{left:88.950000px;}
.x68_c00308{left:90.000000px;}
.x52_c00308{left:91.050000px;}
.x11_c00308{left:92.100000px;}
.x4e_c00308{left:97.200000px;}
.x89_c00308{left:103.350000px;}
.xd_c00308{left:105.750000px;}
.x66_c00308{left:107.550000px;}
.x39_c00308{left:108.750000px;}
.x17_c00308{left:109.800000px;}
.x9e_c00308{left:116.700000px;}
.x8f_c00308{left:118.500000px;}
.x3_c00308{left:120.300000px;}
.x8a_c00308{left:123.150000px;}
.x80_c00308{left:124.500000px;}
.x6f_c00308{left:126.300000px;}
.x84_c00308{left:127.500000px;}
.x2c_c00308{left:128.550000px;}
.x67_c00308{left:130.200000px;}
.x79_c00308{left:131.250000px;}
.x6b_c00308{left:134.700000px;}
.x5a_c00308{left:137.700000px;}
.x3a_c00308{left:139.650000px;}
.x73_c00308{left:141.150000px;}
.x1d_c00308{left:142.350000px;}
.x65_c00308{left:144.900000px;}
.x40_c00308{left:147.600000px;}
.x5f_c00308{left:149.550000px;}
.x53_c00308{left:152.250000px;}
.x46_c00308{left:154.200000px;}
.x9f_c00308{left:156.600000px;}
.x4_c00308{left:157.800000px;}
.x9b_c00308{left:159.900000px;}
.xa1_c00308{left:161.250000px;}
.x82_c00308{left:163.800000px;}
.xe_c00308{left:165.150000px;}
.x33_c00308{left:168.300000px;}
.x25_c00308{left:169.500000px;}
.x1e_c00308{left:170.850000px;}
.x5_c00308{left:171.900000px;}
.x2d_c00308{left:173.250000px;}
.x69_c00308{left:176.100000px;}
.x85_c00308{left:178.650000px;}
.x97_c00308{left:180.750000px;}
.x81_c00308{left:182.400000px;}
.xf_c00308{left:183.450000px;}
.x6_c00308{left:186.300000px;}
.x70_c00308{left:188.250000px;}
.x48_c00308{left:189.300000px;}
.x5b_c00308{left:190.950000px;}
.x8b_c00308{left:194.400000px;}
.x7_c00308{left:197.850000px;}
.x26_c00308{left:199.800000px;}
.x34_c00308{left:203.250000px;}
.x1f_c00308{left:204.300000px;}
.x2e_c00308{left:208.200000px;}
.x71_c00308{left:209.850000px;}
.x90_c00308{left:212.400000px;}
.x3b_c00308{left:214.500000px;}
.x2f_c00308{left:216.450000px;}
.x10_c00308{left:217.650000px;}
.x95_c00308{left:218.850000px;}
.xa7_c00308{left:221.100000px;}
.x27_c00308{left:222.150000px;}
.x60_c00308{left:223.650000px;}
.x12_c00308{left:225.000000px;}
.x57_c00308{left:227.250000px;}
.x6a_c00308{left:228.600000px;}
.x20_c00308{left:231.000000px;}
.x41_c00308{left:233.700000px;}
.x63_c00308{left:235.650000px;}
.x4f_c00308{left:237.750000px;}
.x6e_c00308{left:240.000000px;}
.x3c_c00308{left:244.800000px;}
.x98_c00308{left:245.850000px;}
.x21_c00308{left:247.950000px;}
.x5c_c00308{left:249.150000px;}
.x76_c00308{left:251.100000px;}
.x9c_c00308{left:253.200000px;}
.x58_c00308{left:255.000000px;}
.x8_c00308{left:256.950000px;}
.x99_c00308{left:260.550000px;}
.x18_c00308{left:262.050000px;}
.x42_c00308{left:263.250000px;}
.x30_c00308{left:265.050000px;}
.x35_c00308{left:267.000000px;}
.x8c_c00308{left:269.550000px;}
.x28_c00308{left:271.800000px;}
.xa2_c00308{left:272.850000px;}
.x74_c00308{left:274.050000px;}
.x6c_c00308{left:276.450000px;}
.x7e_c00308{left:277.800000px;}
.x54_c00308{left:279.000000px;}
.x3d_c00308{left:280.800000px;}
.x22_c00308{left:281.850000px;}
.xa5_c00308{left:283.950000px;}
.x77_c00308{left:285.600000px;}
.x36_c00308{left:287.100000px;}
.xa3_c00308{left:288.300000px;}
.x5d_c00308{left:289.500000px;}
.x29_c00308{left:290.550000px;}
.x96_c00308{left:291.750000px;}
.x4b_c00308{left:293.100000px;}
.xa0_c00308{left:296.250000px;}
.x13_c00308{left:297.300000px;}
.x31_c00308{left:298.950000px;}
.x43_c00308{left:301.050000px;}
.x50_c00308{left:302.250000px;}
.x3e_c00308{left:304.500000px;}
.x59_c00308{left:306.450000px;}
.xa8_c00308{left:307.950000px;}
.x23_c00308{left:310.650000px;}
.x91_c00308{left:311.850000px;}
.x4c_c00308{left:312.900000px;}
.x61_c00308{left:314.700000px;}
.x55_c00308{left:316.200000px;}
.x49_c00308{left:317.850000px;}
.x93_c00308{left:318.900000px;}
.x72_c00308{left:320.400000px;}
.x37_c00308{left:323.400000px;}
.x9_c00308{left:325.050000px;}
.x92_c00308{left:326.700000px;}
.x9a_c00308{left:332.550000px;}
.x14_c00308{left:333.600000px;}
.x7f_c00308{left:336.450000px;}
.x1_c00308{left:337.650000px;}
.x4d_c00308{left:340.950000px;}
.x7b_c00308{left:343.050000px;}
.x19_c00308{left:345.150000px;}
.x83_c00308{left:347.100000px;}
.x78_c00308{left:348.300000px;}
.xa4_c00308{left:349.800000px;}
.x64_c00308{left:351.150000px;}
.x9d_c00308{left:352.200000px;}
.x62_c00308{left:353.250000px;}
.x1a_c00308{left:355.200000px;}
.xa_c00308{left:357.150000px;}
.x7c_c00308{left:359.250000px;}
.x15_c00308{left:360.300000px;}
.x51_c00308{left:361.950000px;}
.x75_c00308{left:363.750000px;}
.x38_c00308{left:365.850000px;}
.x2a_c00308{left:366.900000px;}
.x56_c00308{left:368.100000px;}
.x32_c00308{left:370.200000px;}
.xb_c00308{left:374.400000px;}
.x87_c00308{left:376.050000px;}
.x24_c00308{left:378.000000px;}
.x4a_c00308{left:379.800000px;}
.x94_c00308{left:381.150000px;}
.x3f_c00308{left:382.650000px;}
.x8d_c00308{left:384.150000px;}
.x47_c00308{left:385.200000px;}
.x7a_c00308{left:387.000000px;}
.x7d_c00308{left:390.600000px;}
.x1b_c00308{left:393.000000px;}
.x44_c00308{left:395.100000px;}
.x5e_c00308{left:398.700000px;}
.x2b_c00308{left:400.350000px;}
.xa6_c00308{left:403.200000px;}
.x6d_c00308{left:405.600000px;}
.xc_c00308{left:408.900000px;}
.x88_c00308{left:409.950000px;}
.x8e_c00308{left:411.900000px;}
.x16_c00308{left:413.250000px;}
.x45_c00308{left:415.650000px;}
.x1c_c00308{left:422.850000px;}
.x136_c00308{left:444.900000px;}
.x10a_c00308{left:446.100000px;}
.xb5_c00308{left:447.150000px;}
.xe1_c00308{left:448.200000px;}
.x143_c00308{left:459.300000px;}
.x12e_c00308{left:462.300000px;}
.x118_c00308{left:463.650000px;}
.xa9_c00308{left:464.700000px;}
.x141_c00308{left:472.650000px;}
.x109_c00308{left:474.900000px;}
.xcf_c00308{left:480.900000px;}
.xea_c00308{left:482.250000px;}
.xdc_c00308{left:484.350000px;}
.x120_c00308{left:486.150000px;}
.xbd_c00308{left:487.500000px;}
.x137_c00308{left:489.150000px;}
.xf4_c00308{left:490.950000px;}
.x146_c00308{left:492.300000px;}
.xe2_c00308{left:494.250000px;}
.xe4_c00308{left:496.800000px;}
.x132_c00308{left:502.650000px;}
.xb6_c00308{left:504.450000px;}
.x101_c00308{left:506.100000px;}
.x110_c00308{left:507.750000px;}
.xb0_c00308{left:508.800000px;}
.xc7_c00308{left:511.500000px;}
.xaa_c00308{left:513.600000px;}
.xfa_c00308{left:515.850000px;}
.xd5_c00308{left:517.500000px;}
.xb7_c00308{left:519.900000px;}
.x121_c00308{left:521.850000px;}
.xdd_c00308{left:523.650000px;}
.xd0_c00308{left:525.150000px;}
.x119_c00308{left:526.350000px;}
.x111_c00308{left:528.300000px;}
.xe6_c00308{left:529.500000px;}
.xfb_c00308{left:531.000000px;}
.xc4_c00308{left:533.100000px;}
.xb8_c00308{left:536.100000px;}
.xc8_c00308{left:540.000000px;}
.xab_c00308{left:542.100000px;}
.x10e_c00308{left:543.300000px;}
.x116_c00308{left:544.500000px;}
.x13d_c00308{left:545.850000px;}
.xbe_c00308{left:546.900000px;}
.x122_c00308{left:548.850000px;}
.xde_c00308{left:550.650000px;}
.xeb_c00308{left:552.150000px;}
.x11d_c00308{left:553.800000px;}
.xf5_c00308{left:556.200000px;}
.xac_c00308{left:562.200000px;}
.xb1_c00308{left:564.900000px;}
.xcb_c00308{left:566.400000px;}
.x102_c00308{left:568.050000px;}
.x112_c00308{left:569.400000px;}
.xd6_c00308{left:570.450000px;}
.xf0_c00308{left:572.100000px;}
.xe7_c00308{left:574.800000px;}
.x126_c00308{left:576.450000px;}
.x12d_c00308{left:578.100000px;}
.x11e_c00308{left:579.300000px;}
.x10b_c00308{left:581.850000px;}
.xc5_c00308{left:583.200000px;}
.x147_c00308{left:584.400000px;}
.x123_c00308{left:585.600000px;}
.xb9_c00308{left:586.800000px;}
.x142_c00308{left:587.850000px;}
.x113_c00308{left:590.250000px;}
.xec_c00308{left:591.450000px;}
.x12b_c00308{left:594.450000px;}
.x11a_c00308{left:595.500000px;}
.x11f_c00308{left:597.000000px;}
.x13a_c00308{left:598.050000px;}
.xcc_c00308{left:599.550000px;}
.x12f_c00308{left:602.700000px;}
.xd7_c00308{left:603.900000px;}
.xdf_c00308{left:604.950000px;}
.xba_c00308{left:606.600000px;}
.xc6_c00308{left:608.700000px;}
.xe8_c00308{left:610.500000px;}
.xd1_c00308{left:613.350000px;}
.xfc_c00308{left:615.000000px;}
.xbf_c00308{left:618.900000px;}
.x144_c00308{left:622.650000px;}
.xad_c00308{left:623.700000px;}
.xf1_c00308{left:625.350000px;}
.xd8_c00308{left:627.000000px;}
.x114_c00308{left:631.950000px;}
.x133_c00308{left:633.600000px;}
.xcd_c00308{left:635.250000px;}
.x124_c00308{left:636.450000px;}
.xd2_c00308{left:637.500000px;}
.xc9_c00308{left:639.300000px;}
.xb2_c00308{left:640.500000px;}
.xed_c00308{left:641.850000px;}
.xe3_c00308{left:643.350000px;}
.xc0_c00308{left:644.850000px;}
.x11b_c00308{left:646.650000px;}
.x103_c00308{left:648.000000px;}
.xf6_c00308{left:649.050000px;}
.x134_c00308{left:650.250000px;}
.x149_c00308{left:652.050000px;}
.x148_c00308{left:653.250000px;}
.x13e_c00308{left:654.300000px;}
.xbb_c00308{left:655.500000px;}
.xae_c00308{left:659.700000px;}
.x13f_c00308{left:661.500000px;}
.xf2_c00308{left:663.150000px;}
.xf7_c00308{left:669.900000px;}
.x10c_c00308{left:672.150000px;}
.x138_c00308{left:673.800000px;}
.xbc_c00308{left:675.600000px;}
.xca_c00308{left:676.650000px;}
.xb3_c00308{left:679.350000px;}
.x12c_c00308{left:680.850000px;}
.xe9_c00308{left:683.250000px;}
.x104_c00308{left:684.600000px;}
.xfd_c00308{left:685.950000px;}
.x135_c00308{left:688.050000px;}
.x105_c00308{left:691.500000px;}
.x139_c00308{left:692.850000px;}
.x11c_c00308{left:694.200000px;}
.x130_c00308{left:696.000000px;}
.xd9_c00308{left:697.500000px;}
.xc1_c00308{left:698.550000px;}
.xce_c00308{left:700.800000px;}
.x13b_c00308{left:702.000000px;}
.xfe_c00308{left:703.050000px;}
.xb4_c00308{left:708.450000px;}
.x140_c00308{left:709.650000px;}
.x106_c00308{left:711.000000px;}
.x127_c00308{left:712.050000px;}
.xc2_c00308{left:715.500000px;}
.x145_c00308{left:717.000000px;}
.x129_c00308{left:720.300000px;}
.xf3_c00308{left:721.500000px;}
.xf8_c00308{left:723.150000px;}
.x117_c00308{left:724.650000px;}
.xe0_c00308{left:726.300000px;}
.xd3_c00308{left:731.400000px;}
.xee_c00308{left:733.050000px;}
.xff_c00308{left:734.400000px;}
.x115_c00308{left:735.600000px;}
.x131_c00308{left:737.100000px;}
.x107_c00308{left:739.800000px;}
.xda_c00308{left:741.000000px;}
.x14a_c00308{left:742.050000px;}
.x10d_c00308{left:744.900000px;}
.xaf_c00308{left:747.150000px;}
.xd4_c00308{left:751.500000px;}
.xdb_c00308{left:753.300000px;}
.xef_c00308{left:754.950000px;}
.x2_c00308{left:756.000000px;}
.x10f_c00308{left:758.700000px;}
.x125_c00308{left:760.200000px;}
.xc3_c00308{left:762.300000px;}
.x13c_c00308{left:766.800000px;}
.x100_c00308{left:768.300000px;}
.xf9_c00308{left:770.250000px;}
.x12a_c00308{left:771.450000px;}
.x128_c00308{left:778.950000px;}
.xe5_c00308{left:783.300000px;}
.x108_c00308{left:785.100000px;}
.x14b_c00308{left:790.200000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls3_c00308{letter-spacing:0.000000pt;}
.ls0_c00308{letter-spacing:40.000000pt;}
.ls2_c00308{letter-spacing:54.601093pt;}
.ls1_c00308{letter-spacing:62.222222pt;}
.ws12_c00308{word-spacing:-83.934426pt;}
.ws7_c00308{word-spacing:-66.666667pt;}
.ws4_c00308{word-spacing:-14.689576pt;}
.ws14_c00308{word-spacing:-12.666667pt;}
.ws19_c00308{word-spacing:-8.315582pt;}
.ws0_c00308{word-spacing:-6.085890pt;}
.ws1_c00308{word-spacing:-5.923664pt;}
.ws16_c00308{word-spacing:-4.505867pt;}
.ws15_c00308{word-spacing:-3.194444pt;}
.ws3_c00308{word-spacing:-1.688806pt;}
.ws1c_c00308{word-spacing:0.000000pt;}
.ws2_c00308{word-spacing:8.000000pt;}
.ws18_c00308{word-spacing:8.888889pt;}
.wsf_c00308{word-spacing:10.555556pt;}
.ws1a_c00308{word-spacing:12.888889pt;}
.ws5_c00308{word-spacing:16.111111pt;}
.ws6_c00308{word-spacing:19.682540pt;}
.wsa_c00308{word-spacing:20.632708pt;}
.ws8_c00308{word-spacing:22.857143pt;}
.ws13_c00308{word-spacing:25.267760pt;}
.ws1b_c00308{word-spacing:28.444444pt;}
.wsb_c00308{word-spacing:28.666667pt;}
.wsd_c00308{word-spacing:32.000000pt;}
.wsc_c00308{word-spacing:35.333333pt;}
.wse_c00308{word-spacing:35.555556pt;}
.ws11_c00308{word-spacing:39.043257pt;}
.ws17_c00308{word-spacing:39.259259pt;}
.ws9_c00308{word-spacing:140.606061pt;}
.ws10_c00308{word-spacing:181.481481pt;}
._6_c00308{margin-left:-62.222222pt;}
._7_c00308{margin-left:-54.601093pt;}
._1_c00308{margin-left:-40.000000pt;}
._0_c00308{width:20.725468pt;}
._3_c00308{width:47.492404pt;}
._5_c00308{width:52.698413pt;}
._2_c00308{width:59.333333pt;}
._4_c00308{width:65.925926pt;}
.fs6_c00308{font-size:26.666667pt;}
.fs5_c00308{font-size:42.666667pt;}
.fs4_c00308{font-size:48.000000pt;}
.fs2_c00308{font-size:53.333333pt;}
.fs3_c00308{font-size:58.666667pt;}
.fs1_c00308{font-size:64.000000pt;}
.fs0_c00308{font-size:69.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.y6c_c00308{bottom:155.200000pt;}
.y6a_c00308{bottom:170.933333pt;}
.y38_c00308{bottom:174.400000pt;}
.y69_c00308{bottom:186.933333pt;}
.y37_c00308{bottom:190.000000pt;}
.y68_c00308{bottom:205.066667pt;}
.y36_c00308{bottom:205.733333pt;}
.y67_c00308{bottom:217.600000pt;}
.y35_c00308{bottom:221.466667pt;}
.y66_c00308{bottom:231.066667pt;}
.y34_c00308{bottom:237.066667pt;}
.y65_c00308{bottom:247.733333pt;}
.y33_c00308{bottom:255.333333pt;}
.y64_c00308{bottom:260.533333pt;}
.y32_c00308{bottom:267.866667pt;}
.y63_c00308{bottom:271.600000pt;}
.y31_c00308{bottom:280.666667pt;}
.y62_c00308{bottom:288.933333pt;}
.y30_c00308{bottom:293.466667pt;}
.y2f_c00308{bottom:306.266667pt;}
.y61_c00308{bottom:310.133333pt;}
.y2e_c00308{bottom:318.800000pt;}
.y60_c00308{bottom:323.733333pt;}
.y2d_c00308{bottom:331.866667pt;}
.y5f_c00308{bottom:339.466667pt;}
.y2c_c00308{bottom:344.666667pt;}
.y5e_c00308{bottom:354.800000pt;}
.y2b_c00308{bottom:357.066667pt;}
.y2a_c00308{bottom:369.866667pt;}
.y5d_c00308{bottom:370.133333pt;}
.y29_c00308{bottom:382.400000pt;}
.y5c_c00308{bottom:385.866667pt;}
.y28_c00308{bottom:394.933333pt;}
.y5b_c00308{bottom:401.600000pt;}
.y27_c00308{bottom:407.733333pt;}
.y5a_c00308{bottom:417.333333pt;}
.y26_c00308{bottom:420.533333pt;}
.y59_c00308{bottom:437.066667pt;}
.y25_c00308{bottom:438.266667pt;}
.y58_c00308{bottom:452.800000pt;}
.y24_c00308{bottom:454.266667pt;}
.y23_c00308{bottom:470.000000pt;}
.y57_c00308{bottom:476.533333pt;}
.y22_c00308{bottom:485.733333pt;}
.y56_c00308{bottom:492.533333pt;}
.y21_c00308{bottom:504.800000pt;}
.y55_c00308{bottom:508.533333pt;}
.y20_c00308{bottom:520.533333pt;}
.y54_c00308{bottom:528.000000pt;}
.y1f_c00308{bottom:536.266667pt;}
.y53_c00308{bottom:543.733333pt;}
.y1e_c00308{bottom:552.266667pt;}
.y52_c00308{bottom:559.333333pt;}
.y1d_c00308{bottom:568.000000pt;}
.y51_c00308{bottom:575.333333pt;}
.y1c_c00308{bottom:583.333333pt;}
.y50_c00308{bottom:591.066667pt;}
.y1b_c00308{bottom:603.600000pt;}
.y4f_c00308{bottom:606.400000pt;}
.y1a_c00308{bottom:618.933333pt;}
.y4e_c00308{bottom:624.666667pt;}
.y4d_c00308{bottom:637.466667pt;}
.y19_c00308{bottom:642.533333pt;}
.y4c_c00308{bottom:648.266667pt;}
.y18_c00308{bottom:662.000000pt;}
.y4b_c00308{bottom:662.400000pt;}
.y17_c00308{bottom:677.733333pt;}
.y4a_c00308{bottom:678.133333pt;}
.y16_c00308{bottom:693.733333pt;}
.y15_c00308{bottom:709.066667pt;}
.y49_c00308{bottom:713.866667pt;}
.y14_c00308{bottom:724.800000pt;}
.y48_c00308{bottom:729.600000pt;}
.y13_c00308{bottom:740.800000pt;}
.y47_c00308{bottom:745.333333pt;}
.y12_c00308{bottom:756.533333pt;}
.y46_c00308{bottom:760.666667pt;}
.y11_c00308{bottom:776.266667pt;}
.y45_c00308{bottom:780.533333pt;}
.y10_c00308{bottom:792.266667pt;}
.y44_c00308{bottom:795.866667pt;}
.yf_c00308{bottom:808.133333pt;}
.y43_c00308{bottom:820.133333pt;}
.ye_c00308{bottom:823.866667pt;}
.y6b_c00308{bottom:827.866667pt;}
.y42_c00308{bottom:836.133333pt;}
.yd_c00308{bottom:839.200000pt;}
.y41_c00308{bottom:851.200000pt;}
.yc_c00308{bottom:855.200000pt;}
.yb_c00308{bottom:870.933333pt;}
.y40_c00308{bottom:871.066667pt;}
.ya_c00308{bottom:886.666667pt;}
.y3f_c00308{bottom:887.066667pt;}
.y9_c00308{bottom:902.400000pt;}
.y3e_c00308{bottom:910.000000pt;}
.y8_c00308{bottom:918.400000pt;}
.y3d_c00308{bottom:925.733333pt;}
.y7_c00308{bottom:933.733333pt;}
.y3c_c00308{bottom:941.466667pt;}
.y6_c00308{bottom:957.733333pt;}
.y3b_c00308{bottom:961.333333pt;}
.y5_c00308{bottom:965.466667pt;}
.y3a_c00308{bottom:976.666667pt;}
.y4_c00308{bottom:983.733333pt;}
.y39_c00308{bottom:992.666667pt;}
.y3_c00308{bottom:996.533333pt;}
.y2_c00308{bottom:1013.466667pt;}
.y1_c00308{bottom:1016.666667pt;}
.h8_c00308{height:26.666667pt;}
.h7_c00308{height:42.666667pt;}
.h6_c00308{height:48.000000pt;}
.h4_c00308{height:53.333333pt;}
.h5_c00308{height:58.666667pt;}
.h3_c00308{height:64.000000pt;}
.h2_c00308{height:69.333333pt;}
.h1_c00308{height:1129.333333pt;}
.h0_c00308{height:1129.599935pt;}
.w1_c00308{width:854.666667pt;}
.w0_c00308{width:854.720052pt;}
.x0_c00308{left:0.000000pt;}
.x86_c00308{left:79.066667pt;}
.x68_c00308{left:80.000000pt;}
.x52_c00308{left:80.933333pt;}
.x11_c00308{left:81.866667pt;}
.x4e_c00308{left:86.400000pt;}
.x89_c00308{left:91.866667pt;}
.xd_c00308{left:94.000000pt;}
.x66_c00308{left:95.600000pt;}
.x39_c00308{left:96.666667pt;}
.x17_c00308{left:97.600000pt;}
.x9e_c00308{left:103.733333pt;}
.x8f_c00308{left:105.333333pt;}
.x3_c00308{left:106.933333pt;}
.x8a_c00308{left:109.466667pt;}
.x80_c00308{left:110.666667pt;}
.x6f_c00308{left:112.266667pt;}
.x84_c00308{left:113.333333pt;}
.x2c_c00308{left:114.266667pt;}
.x67_c00308{left:115.733333pt;}
.x79_c00308{left:116.666667pt;}
.x6b_c00308{left:119.733333pt;}
.x5a_c00308{left:122.400000pt;}
.x3a_c00308{left:124.133333pt;}
.x73_c00308{left:125.466667pt;}
.x1d_c00308{left:126.533333pt;}
.x65_c00308{left:128.800000pt;}
.x40_c00308{left:131.200000pt;}
.x5f_c00308{left:132.933333pt;}
.x53_c00308{left:135.333333pt;}
.x46_c00308{left:137.066667pt;}
.x9f_c00308{left:139.200000pt;}
.x4_c00308{left:140.266667pt;}
.x9b_c00308{left:142.133333pt;}
.xa1_c00308{left:143.333333pt;}
.x82_c00308{left:145.600000pt;}
.xe_c00308{left:146.800000pt;}
.x33_c00308{left:149.600000pt;}
.x25_c00308{left:150.666667pt;}
.x1e_c00308{left:151.866667pt;}
.x5_c00308{left:152.800000pt;}
.x2d_c00308{left:154.000000pt;}
.x69_c00308{left:156.533333pt;}
.x85_c00308{left:158.800000pt;}
.x97_c00308{left:160.666667pt;}
.x81_c00308{left:162.133333pt;}
.xf_c00308{left:163.066667pt;}
.x6_c00308{left:165.600000pt;}
.x70_c00308{left:167.333333pt;}
.x48_c00308{left:168.266667pt;}
.x5b_c00308{left:169.733333pt;}
.x8b_c00308{left:172.800000pt;}
.x7_c00308{left:175.866667pt;}
.x26_c00308{left:177.600000pt;}
.x34_c00308{left:180.666667pt;}
.x1f_c00308{left:181.600000pt;}
.x2e_c00308{left:185.066667pt;}
.x71_c00308{left:186.533333pt;}
.x90_c00308{left:188.800000pt;}
.x3b_c00308{left:190.666667pt;}
.x2f_c00308{left:192.400000pt;}
.x10_c00308{left:193.466667pt;}
.x95_c00308{left:194.533333pt;}
.xa7_c00308{left:196.533333pt;}
.x27_c00308{left:197.466667pt;}
.x60_c00308{left:198.800000pt;}
.x12_c00308{left:200.000000pt;}
.x57_c00308{left:202.000000pt;}
.x6a_c00308{left:203.200000pt;}
.x20_c00308{left:205.333333pt;}
.x41_c00308{left:207.733333pt;}
.x63_c00308{left:209.466667pt;}
.x4f_c00308{left:211.333333pt;}
.x6e_c00308{left:213.333333pt;}
.x3c_c00308{left:217.600000pt;}
.x98_c00308{left:218.533333pt;}
.x21_c00308{left:220.400000pt;}
.x5c_c00308{left:221.466667pt;}
.x76_c00308{left:223.200000pt;}
.x9c_c00308{left:225.066667pt;}
.x58_c00308{left:226.666667pt;}
.x8_c00308{left:228.400000pt;}
.x99_c00308{left:231.600000pt;}
.x18_c00308{left:232.933333pt;}
.x42_c00308{left:234.000000pt;}
.x30_c00308{left:235.600000pt;}
.x35_c00308{left:237.333333pt;}
.x8c_c00308{left:239.600000pt;}
.x28_c00308{left:241.600000pt;}
.xa2_c00308{left:242.533333pt;}
.x74_c00308{left:243.600000pt;}
.x6c_c00308{left:245.733333pt;}
.x7e_c00308{left:246.933333pt;}
.x54_c00308{left:248.000000pt;}
.x3d_c00308{left:249.600000pt;}
.x22_c00308{left:250.533333pt;}
.xa5_c00308{left:252.400000pt;}
.x77_c00308{left:253.866667pt;}
.x36_c00308{left:255.200000pt;}
.xa3_c00308{left:256.266667pt;}
.x5d_c00308{left:257.333333pt;}
.x29_c00308{left:258.266667pt;}
.x96_c00308{left:259.333333pt;}
.x4b_c00308{left:260.533333pt;}
.xa0_c00308{left:263.333333pt;}
.x13_c00308{left:264.266667pt;}
.x31_c00308{left:265.733333pt;}
.x43_c00308{left:267.600000pt;}
.x50_c00308{left:268.666667pt;}
.x3e_c00308{left:270.666667pt;}
.x59_c00308{left:272.400000pt;}
.xa8_c00308{left:273.733333pt;}
.x23_c00308{left:276.133333pt;}
.x91_c00308{left:277.200000pt;}
.x4c_c00308{left:278.133333pt;}
.x61_c00308{left:279.733333pt;}
.x55_c00308{left:281.066667pt;}
.x49_c00308{left:282.533333pt;}
.x93_c00308{left:283.466667pt;}
.x72_c00308{left:284.800000pt;}
.x37_c00308{left:287.466667pt;}
.x9_c00308{left:288.933333pt;}
.x92_c00308{left:290.400000pt;}
.x9a_c00308{left:295.600000pt;}
.x14_c00308{left:296.533333pt;}
.x7f_c00308{left:299.066667pt;}
.x1_c00308{left:300.133333pt;}
.x4d_c00308{left:303.066667pt;}
.x7b_c00308{left:304.933333pt;}
.x19_c00308{left:306.800000pt;}
.x83_c00308{left:308.533333pt;}
.x78_c00308{left:309.600000pt;}
.xa4_c00308{left:310.933333pt;}
.x64_c00308{left:312.133333pt;}
.x9d_c00308{left:313.066667pt;}
.x62_c00308{left:314.000000pt;}
.x1a_c00308{left:315.733333pt;}
.xa_c00308{left:317.466667pt;}
.x7c_c00308{left:319.333333pt;}
.x15_c00308{left:320.266667pt;}
.x51_c00308{left:321.733333pt;}
.x75_c00308{left:323.333333pt;}
.x38_c00308{left:325.200000pt;}
.x2a_c00308{left:326.133333pt;}
.x56_c00308{left:327.200000pt;}
.x32_c00308{left:329.066667pt;}
.xb_c00308{left:332.800000pt;}
.x87_c00308{left:334.266667pt;}
.x24_c00308{left:336.000000pt;}
.x4a_c00308{left:337.600000pt;}
.x94_c00308{left:338.800000pt;}
.x3f_c00308{left:340.133333pt;}
.x8d_c00308{left:341.466667pt;}
.x47_c00308{left:342.400000pt;}
.x7a_c00308{left:344.000000pt;}
.x7d_c00308{left:347.200000pt;}
.x1b_c00308{left:349.333333pt;}
.x44_c00308{left:351.200000pt;}
.x5e_c00308{left:354.400000pt;}
.x2b_c00308{left:355.866667pt;}
.xa6_c00308{left:358.400000pt;}
.x6d_c00308{left:360.533333pt;}
.xc_c00308{left:363.466667pt;}
.x88_c00308{left:364.400000pt;}
.x8e_c00308{left:366.133333pt;}
.x16_c00308{left:367.333333pt;}
.x45_c00308{left:369.466667pt;}
.x1c_c00308{left:375.866667pt;}
.x136_c00308{left:395.466667pt;}
.x10a_c00308{left:396.533333pt;}
.xb5_c00308{left:397.466667pt;}
.xe1_c00308{left:398.400000pt;}
.x143_c00308{left:408.266667pt;}
.x12e_c00308{left:410.933333pt;}
.x118_c00308{left:412.133333pt;}
.xa9_c00308{left:413.066667pt;}
.x141_c00308{left:420.133333pt;}
.x109_c00308{left:422.133333pt;}
.xcf_c00308{left:427.466667pt;}
.xea_c00308{left:428.666667pt;}
.xdc_c00308{left:430.533333pt;}
.x120_c00308{left:432.133333pt;}
.xbd_c00308{left:433.333333pt;}
.x137_c00308{left:434.800000pt;}
.xf4_c00308{left:436.400000pt;}
.x146_c00308{left:437.600000pt;}
.xe2_c00308{left:439.333333pt;}
.xe4_c00308{left:441.600000pt;}
.x132_c00308{left:446.800000pt;}
.xb6_c00308{left:448.400000pt;}
.x101_c00308{left:449.866667pt;}
.x110_c00308{left:451.333333pt;}
.xb0_c00308{left:452.266667pt;}
.xc7_c00308{left:454.666667pt;}
.xaa_c00308{left:456.533333pt;}
.xfa_c00308{left:458.533333pt;}
.xd5_c00308{left:460.000000pt;}
.xb7_c00308{left:462.133333pt;}
.x121_c00308{left:463.866667pt;}
.xdd_c00308{left:465.466667pt;}
.xd0_c00308{left:466.800000pt;}
.x119_c00308{left:467.866667pt;}
.x111_c00308{left:469.600000pt;}
.xe6_c00308{left:470.666667pt;}
.xfb_c00308{left:472.000000pt;}
.xc4_c00308{left:473.866667pt;}
.xb8_c00308{left:476.533333pt;}
.xc8_c00308{left:480.000000pt;}
.xab_c00308{left:481.866667pt;}
.x10e_c00308{left:482.933333pt;}
.x116_c00308{left:484.000000pt;}
.x13d_c00308{left:485.200000pt;}
.xbe_c00308{left:486.133333pt;}
.x122_c00308{left:487.866667pt;}
.xde_c00308{left:489.466667pt;}
.xeb_c00308{left:490.800000pt;}
.x11d_c00308{left:492.266667pt;}
.xf5_c00308{left:494.400000pt;}
.xac_c00308{left:499.733333pt;}
.xb1_c00308{left:502.133333pt;}
.xcb_c00308{left:503.466667pt;}
.x102_c00308{left:504.933333pt;}
.x112_c00308{left:506.133333pt;}
.xd6_c00308{left:507.066667pt;}
.xf0_c00308{left:508.533333pt;}
.xe7_c00308{left:510.933333pt;}
.x126_c00308{left:512.400000pt;}
.x12d_c00308{left:513.866667pt;}
.x11e_c00308{left:514.933333pt;}
.x10b_c00308{left:517.200000pt;}
.xc5_c00308{left:518.400000pt;}
.x147_c00308{left:519.466667pt;}
.x123_c00308{left:520.533333pt;}
.xb9_c00308{left:521.600000pt;}
.x142_c00308{left:522.533333pt;}
.x113_c00308{left:524.666667pt;}
.xec_c00308{left:525.733333pt;}
.x12b_c00308{left:528.400000pt;}
.x11a_c00308{left:529.333333pt;}
.x11f_c00308{left:530.666667pt;}
.x13a_c00308{left:531.600000pt;}
.xcc_c00308{left:532.933333pt;}
.x12f_c00308{left:535.733333pt;}
.xd7_c00308{left:536.800000pt;}
.xdf_c00308{left:537.733333pt;}
.xba_c00308{left:539.200000pt;}
.xc6_c00308{left:541.066667pt;}
.xe8_c00308{left:542.666667pt;}
.xd1_c00308{left:545.200000pt;}
.xfc_c00308{left:546.666667pt;}
.xbf_c00308{left:550.133333pt;}
.x144_c00308{left:553.466667pt;}
.xad_c00308{left:554.400000pt;}
.xf1_c00308{left:555.866667pt;}
.xd8_c00308{left:557.333333pt;}
.x114_c00308{left:561.733333pt;}
.x133_c00308{left:563.200000pt;}
.xcd_c00308{left:564.666667pt;}
.x124_c00308{left:565.733333pt;}
.xd2_c00308{left:566.666667pt;}
.xc9_c00308{left:568.266667pt;}
.xb2_c00308{left:569.333333pt;}
.xed_c00308{left:570.533333pt;}
.xe3_c00308{left:571.866667pt;}
.xc0_c00308{left:573.200000pt;}
.x11b_c00308{left:574.800000pt;}
.x103_c00308{left:576.000000pt;}
.xf6_c00308{left:576.933333pt;}
.x134_c00308{left:578.000000pt;}
.x149_c00308{left:579.600000pt;}
.x148_c00308{left:580.666667pt;}
.x13e_c00308{left:581.600000pt;}
.xbb_c00308{left:582.666667pt;}
.xae_c00308{left:586.400000pt;}
.x13f_c00308{left:588.000000pt;}
.xf2_c00308{left:589.466667pt;}
.xf7_c00308{left:595.466667pt;}
.x10c_c00308{left:597.466667pt;}
.x138_c00308{left:598.933333pt;}
.xbc_c00308{left:600.533333pt;}
.xca_c00308{left:601.466667pt;}
.xb3_c00308{left:603.866667pt;}
.x12c_c00308{left:605.200000pt;}
.xe9_c00308{left:607.333333pt;}
.x104_c00308{left:608.533333pt;}
.xfd_c00308{left:609.733333pt;}
.x135_c00308{left:611.600000pt;}
.x105_c00308{left:614.666667pt;}
.x139_c00308{left:615.866667pt;}
.x11c_c00308{left:617.066667pt;}
.x130_c00308{left:618.666667pt;}
.xd9_c00308{left:620.000000pt;}
.xc1_c00308{left:620.933333pt;}
.xce_c00308{left:622.933333pt;}
.x13b_c00308{left:624.000000pt;}
.xfe_c00308{left:624.933333pt;}
.xb4_c00308{left:629.733333pt;}
.x140_c00308{left:630.800000pt;}
.x106_c00308{left:632.000000pt;}
.x127_c00308{left:632.933333pt;}
.xc2_c00308{left:636.000000pt;}
.x145_c00308{left:637.333333pt;}
.x129_c00308{left:640.266667pt;}
.xf3_c00308{left:641.333333pt;}
.xf8_c00308{left:642.800000pt;}
.x117_c00308{left:644.133333pt;}
.xe0_c00308{left:645.600000pt;}
.xd3_c00308{left:650.133333pt;}
.xee_c00308{left:651.600000pt;}
.xff_c00308{left:652.800000pt;}
.x115_c00308{left:653.866667pt;}
.x131_c00308{left:655.200000pt;}
.x107_c00308{left:657.600000pt;}
.xda_c00308{left:658.666667pt;}
.x14a_c00308{left:659.600000pt;}
.x10d_c00308{left:662.133333pt;}
.xaf_c00308{left:664.133333pt;}
.xd4_c00308{left:668.000000pt;}
.xdb_c00308{left:669.600000pt;}
.xef_c00308{left:671.066667pt;}
.x2_c00308{left:672.000000pt;}
.x10f_c00308{left:674.400000pt;}
.x125_c00308{left:675.733333pt;}
.xc3_c00308{left:677.600000pt;}
.x13c_c00308{left:681.600000pt;}
.x100_c00308{left:682.933333pt;}
.xf9_c00308{left:684.666667pt;}
.x12a_c00308{left:685.733333pt;}
.x128_c00308{left:692.400000pt;}
.xe5_c00308{left:696.266667pt;}
.x108_c00308{left:697.866667pt;}
.x14b_c00308{left:702.400000pt;}
}





/* 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_c00309 {
    display:none;
  }
  .loading-indicator_c00309.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00309 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_c00309 { 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_c00309" -> "#page-container .classname_c00309")
 */
.pf_c00309 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00309 { /* 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_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00309 { /* 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_c00309 { /* 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_c00309 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00309 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00309 {overflow:visible;}
  }
}
.c_c00309 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00309 { /* 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_c00309:after { /* webkit #35443 */
  content: '';
}
.t_c00309:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00309 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 */
}
.__c00309 { /* 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_c00309 { /* info for Javascript */
  display:none;
}
.l_c00309 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00309 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00309 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00309: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_c00309 {
    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_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00309.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_c00309 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00309;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.000000;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;}
.m1_c00309{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m28_c00309{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00309{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m24_c00309{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m129_c00309{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m10_c00309{transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);}
.m11_c00309{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me4_c00309{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00309{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00309{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mec_c00309{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md4_c00309{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00309{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00309{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00309{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m59_c00309{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m77_c00309{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00309{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00309{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m37_c00309{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00309{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00309{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m84_c00309{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00309{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00309{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00309{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00309{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m75_c00309{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00309{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m66_c00309{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00309{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mce_c00309{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.me_c00309{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m34_c00309{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00309{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mb_c00309{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00309{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m79_c00309{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m127_c00309{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md6_c00309{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me6_c00309{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m63_c00309{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m14_c00309{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m111_c00309{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m60_c00309{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00309{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m61_c00309{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m91_c00309{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00309{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00309{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m110_c00309{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00309{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00309{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md0_c00309{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00309{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00309{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m23_c00309{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m21_c00309{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m68_c00309{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m85_c00309{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00309{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma_c00309{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mac_c00309{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mef_c00309{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00309{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00309{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mea_c00309{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m16_c00309{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00309{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00309{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m80_c00309{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m18_c00309{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m54_c00309{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m117_c00309{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m92_c00309{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m101_c00309{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m124_c00309{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00309{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00309{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m72_c00309{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m7_c00309{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m53_c00309{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00309{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00309{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc_c00309{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m104_c00309{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00309{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00309{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00309{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m15_c00309{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m67_c00309{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00309{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m78_c00309{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me1_c00309{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.med_c00309{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m17_c00309{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m65_c00309{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00309{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00309{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m90_c00309{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m118_c00309{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00309{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00309{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m128_c00309{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00309{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m58_c00309{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m119_c00309{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m103_c00309{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8_c00309{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m99_c00309{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md_c00309{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m64_c00309{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mab_c00309{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me3_c00309{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me5_c00309{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00309{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m41_c00309{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00309{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00309{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m73_c00309{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m70_c00309{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00309{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mee_c00309{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00309{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00309{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m93_c00309{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md5_c00309{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00309{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m81_c00309{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.maa_c00309{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00309{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.me0_c00309{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00309{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9_c00309{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m22_c00309{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00309{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m42_c00309{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m112_c00309{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00309{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md1_c00309{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m89_c00309{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00309{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m95_c00309{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m19_c00309{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00309{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m12_c00309{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf_c00309{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00309{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00309{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m39_c00309{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m88_c00309{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m38_c00309{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m51_c00309{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00309{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m83_c00309{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00309{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m48_c00309{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m29_c00309{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m122_c00309{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00309{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m71_c00309{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m45_c00309{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m50_c00309{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00309{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00309{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m55_c00309{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00309{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m69_c00309{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m105_c00309{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00309{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00309{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00309{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m62_c00309{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m40_c00309{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m97_c00309{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00309{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m113_c00309{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00309{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mca_c00309{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00309{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00309{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m43_c00309{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md7_c00309{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00309{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00309{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m56_c00309{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m82_c00309{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m116_c00309{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00309{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00309{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00309{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00309{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m20_c00309{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m46_c00309{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00309{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00309{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00309{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00309{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m57_c00309{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00309{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00309{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00309{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mba_c00309{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00309{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00309{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md9_c00309{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00309{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00309{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m114_c00309{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m100_c00309{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00309{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00309{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00309{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m76_c00309{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00309{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m123_c00309{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00309{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me9_c00309{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00309{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00309{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00309{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00309{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);}
.m11e_c00309{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00309{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.meb_c00309{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00309{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00309{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md2_c00309{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m44_c00309{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00309{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m36_c00309{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m121_c00309{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mff_c00309{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00309{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m32_c00309{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m98_c00309{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m52_c00309{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00309{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00309{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00309{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.mda_c00309{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m102_c00309{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m27_c00309{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m96_c00309{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m33_c00309{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.me2_c00309{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m49_c00309{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00309{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m109_c00309{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00309{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00309{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00309{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m94_c00309{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m25_c00309{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00309{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m125_c00309{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00309{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m31_c00309{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00309{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mde_c00309{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00309{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00309{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00309{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00309{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00309{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m120_c00309{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.md8_c00309{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m115_c00309{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00309{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.maf_c00309{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00309{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m87_c00309{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00309{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m106_c00309{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.md3_c00309{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00309{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00309{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m47_c00309{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mad_c00309{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00309{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00309{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m74_c00309{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m126_c00309{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00309{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me7_c00309{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00309{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m108_c00309{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m26_c00309{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m86_c00309{transform:matrix(0.335750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00309{transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);}
.mae_c00309{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m107_c00309{transform:matrix(0.344750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344750,0.000000,0.000000,0.250000,0,0);}
.m30_c00309{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.me8_c00309{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00309{transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls0_c00309{letter-spacing:0.000000px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{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__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00309{word-spacing:-11.849162px;}
.ws9_c00309{word-spacing:-8.392892px;}
.wsf_c00309{word-spacing:-8.333333px;}
.ws4_c00309{word-spacing:-6.184211px;}
.ws2_c00309{word-spacing:-4.625000px;}
.wsd_c00309{word-spacing:-3.918919px;}
.ws10_c00309{word-spacing:0.000000px;}
.wsc_c00309{word-spacing:2.193548px;}
.ws3_c00309{word-spacing:3.289474px;}
.ws5_c00309{word-spacing:3.961722px;}
.wsa_c00309{word-spacing:4.838710px;}
.wse_c00309{word-spacing:7.934783px;}
.ws7_c00309{word-spacing:9.373083px;}
.wsb_c00309{word-spacing:11.562500px;}
.ws8_c00309{word-spacing:13.760391px;}
.ws6_c00309{word-spacing:435.887640px;}
.ws0_c00309{word-spacing:2106.000000px;}
._1_c00309{width:588.730337px;}
._0_c00309{width:1483.112360px;}
.fc0_c00309{color:transparent;}
.fs7_c00309{font-size:30.000000px;}
.fs1_c00309{font-size:48.000000px;}
.fs6_c00309{font-size:54.000000px;}
.fs4_c00309{font-size:60.000000px;}
.fs2_c00309{font-size:66.000000px;}
.fs3_c00309{font-size:72.000000px;}
.fs0_c00309{font-size:78.000000px;}
.fs5_c00309{font-size:84.000000px;}
.yd_c00309{bottom:-0.300000px;}
.y0_c00309{bottom:0.000000px;}
.yad_c00309{bottom:185.700000px;}
.yac_c00309{bottom:210.600000px;}
.yab_c00309{bottom:225.150000px;}
.y93_c00309{bottom:226.050000px;}
.y92_c00309{bottom:230.700000px;}
.yaa_c00309{bottom:239.550000px;}
.y91_c00309{bottom:240.450000px;}
.ya9_c00309{bottom:253.200000px;}
.y90_c00309{bottom:254.550000px;}
.y8f_c00309{bottom:259.200000px;}
.ya8_c00309{bottom:267.300000px;}
.ya7_c00309{bottom:281.400000px;}
.y8e_c00309{bottom:287.700000px;}
.ya6_c00309{bottom:295.500000px;}
.y8d_c00309{bottom:302.100000px;}
.ya5_c00309{bottom:312.750000px;}
.y8c_c00309{bottom:316.500000px;}
.ya4_c00309{bottom:323.550000px;}
.ya0_c00309{bottom:327.600000px;}
.y8b_c00309{bottom:331.200000px;}
.ya3_c00309{bottom:335.850000px;}
.y9f_c00309{bottom:341.550000px;}
.y8a_c00309{bottom:345.600000px;}
.ya2_c00309{bottom:349.500000px;}
.y9e_c00309{bottom:355.950000px;}
.y89_c00309{bottom:359.700000px;}
.y6d_c00309{bottom:361.050000px;}
.y9d_c00309{bottom:370.350000px;}
.y6c_c00309{bottom:372.900000px;}
.y88_c00309{bottom:374.100000px;}
.y87_c00309{bottom:380.100000px;}
.y9c_c00309{bottom:384.450000px;}
.y6b_c00309{bottom:386.550000px;}
.y86_c00309{bottom:388.050000px;}
.y9b_c00309{bottom:398.850000px;}
.y6a_c00309{bottom:401.700000px;}
.y85_c00309{bottom:402.450000px;}
.ya1_c00309{bottom:407.100000px;}
.y9a_c00309{bottom:413.250000px;}
.y84_c00309{bottom:417.900000px;}
.y69_c00309{bottom:420.450000px;}
.y99_c00309{bottom:427.350000px;}
.y83_c00309{bottom:428.400000px;}
.y98_c00309{bottom:440.700000px;}
.y68_c00309{bottom:443.550000px;}
.y82_c00309{bottom:445.950000px;}
.y97_c00309{bottom:448.950000px;}
.y67_c00309{bottom:459.300000px;}
.y81_c00309{bottom:460.050000px;}
.y96_c00309{bottom:469.500000px;}
.y66_c00309{bottom:473.400000px;}
.y80_c00309{bottom:474.750000px;}
.y95_c00309{bottom:483.900000px;}
.y7f_c00309{bottom:488.850000px;}
.y65_c00309{bottom:497.550000px;}
.y94_c00309{bottom:498.300000px;}
.y7e_c00309{bottom:498.900000px;}
.y74_c00309{bottom:503.250000px;}
.y7d_c00309{bottom:506.850000px;}
.y73_c00309{bottom:517.650000px;}
.y64_c00309{bottom:520.950000px;}
.y7c_c00309{bottom:521.250000px;}
.y78_c00309{bottom:526.650000px;}
.y63_c00309{bottom:528.150000px;}
.y72_c00309{bottom:530.700000px;}
.y7b_c00309{bottom:535.350000px;}
.y77_c00309{bottom:541.050000px;}
.y62_c00309{bottom:543.600000px;}
.y71_c00309{bottom:547.200000px;}
.y7a_c00309{bottom:551.850000px;}
.y76_c00309{bottom:554.850000px;}
.y61_c00309{bottom:557.250000px;}
.y70_c00309{bottom:560.850000px;}
.y79_c00309{bottom:561.900000px;}
.y6f_c00309{bottom:568.800000px;}
.y75_c00309{bottom:569.550000px;}
.y60_c00309{bottom:571.650000px;}
.y5f_c00309{bottom:580.050000px;}
.y6e_c00309{bottom:582.150000px;}
.y5e_c00309{bottom:594.750000px;}
.y5d_c00309{bottom:608.400000px;}
.y5b_c00309{bottom:612.000000px;}
.y5c_c00309{bottom:615.300000px;}
.y5a_c00309{bottom:617.100000px;}
.y4d_c00309{bottom:623.100000px;}
.y59_c00309{bottom:624.300000px;}
.y53_c00309{bottom:625.800000px;}
.y44_c00309{bottom:626.100000px;}
.y58_c00309{bottom:635.700000px;}
.y4c_c00309{bottom:637.500000px;}
.y43_c00309{bottom:639.750000px;}
.y52_c00309{bottom:639.900000px;}
.y57_c00309{bottom:649.800000px;}
.y4b_c00309{bottom:651.450000px;}
.y51_c00309{bottom:654.300000px;}
.y42_c00309{bottom:655.800000px;}
.y56_c00309{bottom:663.450000px;}
.y4a_c00309{bottom:665.850000px;}
.y50_c00309{bottom:668.400000px;}
.y41_c00309{bottom:669.900000px;}
.y55_c00309{bottom:678.150000px;}
.y40_c00309{bottom:678.600000px;}
.y49_c00309{bottom:679.200000px;}
.y4f_c00309{bottom:682.500000px;}
.y54_c00309{bottom:687.900000px;}
.y48_c00309{bottom:695.100000px;}
.y4e_c00309{bottom:696.600000px;}
.y3f_c00309{bottom:701.550000px;}
.y3e_c00309{bottom:713.100000px;}
.y47_c00309{bottom:715.800000px;}
.y46_c00309{bottom:719.700000px;}
.y3d_c00309{bottom:732.600000px;}
.y45_c00309{bottom:735.450000px;}
.y3c_c00309{bottom:747.300000px;}
.y3b_c00309{bottom:761.400000px;}
.y3a_c00309{bottom:774.750000px;}
.y39_c00309{bottom:775.500000px;}
.y38_c00309{bottom:776.850000px;}
.y34_c00309{bottom:779.400000px;}
.y1d_c00309{bottom:784.500000px;}
.y37_c00309{bottom:786.600000px;}
.y2b_c00309{bottom:790.200000px;}
.y33_c00309{bottom:792.300000px;}
.y36_c00309{bottom:801.000000px;}
.y1c_c00309{bottom:801.300000px;}
.y2a_c00309{bottom:804.600000px;}
.y32_c00309{bottom:806.700000px;}
.y1b_c00309{bottom:811.050000px;}
.y35_c00309{bottom:815.400000px;}
.y29_c00309{bottom:818.700000px;}
.y31_c00309{bottom:819.750000px;}
.y1a_c00309{bottom:829.950000px;}
.y28_c00309{bottom:833.100000px;}
.y30_c00309{bottom:839.850000px;}
.y19_c00309{bottom:842.850000px;}
.y27_c00309{bottom:845.700000px;}
.y26_c00309{bottom:853.950000px;}
.y2f_c00309{bottom:854.250000px;}
.y18_c00309{bottom:856.500000px;}
.y2e_c00309{bottom:857.850000px;}
.y25_c00309{bottom:861.450000px;}
.y17_c00309{bottom:870.900000px;}
.y24_c00309{bottom:871.650000px;}
.y2d_c00309{bottom:871.950000px;}
.y20_c00309{bottom:880.200000px;}
.y16_c00309{bottom:883.500000px;}
.y2c_c00309{bottom:885.900000px;}
.y1f_c00309{bottom:892.500000px;}
.y23_c00309{bottom:895.350000px;}
.y22_c00309{bottom:898.950000px;}
.y15_c00309{bottom:906.150000px;}
.y21_c00309{bottom:909.300000px;}
.y14_c00309{bottom:914.400000px;}
.y1e_c00309{bottom:923.100000px;}
.y13_c00309{bottom:923.400000px;}
.y12_c00309{bottom:929.550000px;}
.y11_c00309{bottom:951.450000px;}
.y10_c00309{bottom:966.600000px;}
.yf_c00309{bottom:980.250000px;}
.yb_c00309{bottom:992.850000px;}
.yc_c00309{bottom:1006.950000px;}
.ya_c00309{bottom:1016.100000px;}
.ye_c00309{bottom:1023.150000px;}
.y9_c00309{bottom:1047.450000px;}
.y8_c00309{bottom:1061.550000px;}
.y7_c00309{bottom:1082.400000px;}
.y5_c00309{bottom:1111.950000px;}
.y6_c00309{bottom:1116.300000px;}
.y4_c00309{bottom:1119.900000px;}
.y3_c00309{bottom:1129.650000px;}
.y1_c00309{bottom:1134.000000px;}
.y2_c00309{bottom:1141.500000px;}
.h9_c00309{height:30.000000px;}
.h3_c00309{height:48.000000px;}
.h8_c00309{height:54.000000px;}
.h6_c00309{height:60.000000px;}
.h4_c00309{height:66.000000px;}
.h5_c00309{height:72.000000px;}
.h2_c00309{height:78.000000px;}
.h7_c00309{height:84.000000px;}
.h0_c00309{height:1303.920044px;}
.h1_c00309{height:1304.250000px;}
.w1_c00309{width:961.500000px;}
.w0_c00309{width:961.560058px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:149.400000px;}
.x29_c00309{left:159.450000px;}
.x2e_c00309{left:162.000000px;}
.x7b_c00309{left:167.700000px;}
.x7f_c00309{left:168.900000px;}
.x7_c00309{left:170.700000px;}
.x88_c00309{left:172.050000px;}
.xa_c00309{left:173.250000px;}
.x8e_c00309{left:174.900000px;}
.x20_c00309{left:176.400000px;}
.xea_c00309{left:178.200000px;}
.xfb_c00309{left:180.000000px;}
.x3c_c00309{left:181.050000px;}
.x47_c00309{left:182.100000px;}
.xff_c00309{left:183.150000px;}
.x128_c00309{left:184.350000px;}
.x12c_c00309{left:186.300000px;}
.x85_c00309{left:187.500000px;}
.x80_c00309{left:188.700000px;}
.x13c_c00309{left:189.750000px;}
.x89_c00309{left:191.400000px;}
.xf9_c00309{left:192.600000px;}
.x140_c00309{left:193.650000px;}
.xfa_c00309{left:195.150000px;}
.x146_c00309{left:196.500000px;}
.x7c_c00309{left:198.300000px;}
.x18c_c00309{left:200.550000px;}
.x18f_c00309{left:201.750000px;}
.x8f_c00309{left:202.950000px;}
.x21_c00309{left:205.200000px;}
.x129_c00309{left:207.000000px;}
.x53_c00309{left:208.350000px;}
.xb_c00309{left:209.550000px;}
.x13d_c00309{left:210.600000px;}
.xe4_c00309{left:212.100000px;}
.x48_c00309{left:214.200000px;}
.xeb_c00309{left:215.250000px;}
.x8_c00309{left:216.450000px;}
.x2a_c00309{left:218.100000px;}
.x22_c00309{left:221.700000px;}
.x8a_c00309{left:223.800000px;}
.x100_c00309{left:225.600000px;}
.x8c_c00309{left:226.800000px;}
.x86_c00309{left:227.850000px;}
.x14_c00309{left:231.900000px;}
.x197_c00309{left:232.950000px;}
.x49_c00309{left:234.750000px;}
.x142_c00309{left:235.800000px;}
.x84_c00309{left:237.900000px;}
.x23_c00309{left:241.800000px;}
.x8b_c00309{left:243.300000px;}
.xce_c00309{left:245.250000px;}
.xfc_c00309{left:246.600000px;}
.xfe_c00309{left:247.650000px;}
.x15_c00309{left:249.600000px;}
.x7d_c00309{left:250.950000px;}
.xdb_c00309{left:252.300000px;}
.x81_c00309{left:255.600000px;}
.x93_c00309{left:257.400000px;}
.x141_c00309{left:258.450000px;}
.xd1_c00309{left:259.650000px;}
.x3d_c00309{left:261.750000px;}
.xdf_c00309{left:263.250000px;}
.x143_c00309{left:267.450000px;}
.x101_c00309{left:268.500000px;}
.x3e_c00309{left:272.550000px;}
.xdc_c00309{left:274.200000px;}
.x9_c00309{left:276.150000px;}
.xcf_c00309{left:277.350000px;}
.x13b_c00309{left:279.450000px;}
.xc6_c00309{left:280.800000px;}
.x191_c00309{left:282.600000px;}
.x87_c00309{left:283.650000px;}
.x3f_c00309{left:285.900000px;}
.x82_c00309{left:286.950000px;}
.xe5_c00309{left:288.150000px;}
.xfd_c00309{left:289.800000px;}
.x8d_c00309{left:290.850000px;}
.x24_c00309{left:293.250000px;}
.x54_c00309{left:294.300000px;}
.xcb_c00309{left:296.250000px;}
.x144_c00309{left:298.050000px;}
.x7e_c00309{left:299.550000px;}
.x16_c00309{left:300.750000px;}
.x40_c00309{left:302.100000px;}
.x126_c00309{left:303.900000px;}
.x183_c00309{left:304.950000px;}
.x2f_c00309{left:306.000000px;}
.xc_c00309{left:307.500000px;}
.x198_c00309{left:308.550000px;}
.x11e_c00309{left:311.100000px;}
.x95_c00309{left:312.300000px;}
.xd0_c00309{left:314.700000px;}
.x13e_c00309{left:315.750000px;}
.x12a_c00309{left:317.550000px;}
.x153_c00309{left:319.500000px;}
.x41_c00309{left:321.150000px;}
.xcc_c00309{left:322.500000px;}
.xd_c00309{left:324.750000px;}
.x120_c00309{left:327.750000px;}
.x11f_c00309{left:329.100000px;}
.x30_c00309{left:330.900000px;}
.x94_c00309{left:333.450000px;}
.x145_c00309{left:335.100000px;}
.x17_c00309{left:336.450000px;}
.xdd_c00309{left:339.000000px;}
.xe0_c00309{left:341.700000px;}
.x3_c00309{left:344.100000px;}
.x13f_c00309{left:345.300000px;}
.x18b_c00309{left:346.350000px;}
.x192_c00309{left:347.700000px;}
.xcd_c00309{left:348.750000px;}
.x193_c00309{left:355.200000px;}
.x123_c00309{left:356.850000px;}
.x124_c00309{left:358.200000px;}
.xec_c00309{left:359.250000px;}
.x155_c00309{left:360.300000px;}
.x83_c00309{left:362.250000px;}
.x152_c00309{left:363.750000px;}
.xe6_c00309{left:366.600000px;}
.x96_c00309{left:367.800000px;}
.xd2_c00309{left:369.150000px;}
.x5f_c00309{left:372.300000px;}
.x180_c00309{left:373.350000px;}
.x25_c00309{left:374.550000px;}
.x4_c00309{left:376.200000px;}
.x127_c00309{left:377.250000px;}
.xe_c00309{left:379.800000px;}
.x19a_c00309{left:381.000000px;}
.x31_c00309{left:382.050000px;}
.x125_c00309{left:383.400000px;}
.x147_c00309{left:384.450000px;}
.x182_c00309{left:385.650000px;}
.xd3_c00309{left:386.700000px;}
.xd6_c00309{left:388.650000px;}
.x55_c00309{left:389.700000px;}
.x195_c00309{left:390.750000px;}
.x184_c00309{left:392.100000px;}
.x18e_c00309{left:393.600000px;}
.x18_c00309{left:395.100000px;}
.x121_c00309{left:396.150000px;}
.x18d_c00309{left:397.200000px;}
.xd9_c00309{left:398.400000px;}
.xf_c00309{left:401.700000px;}
.x91_c00309{left:404.400000px;}
.x60_c00309{left:405.750000px;}
.xe1_c00309{left:406.800000px;}
.x188_c00309{left:408.450000px;}
.xd4_c00309{left:410.400000px;}
.xe7_c00309{left:414.900000px;}
.x122_c00309{left:415.950000px;}
.x10_c00309{left:418.200000px;}
.x32_c00309{left:420.150000px;}
.x17e_c00309{left:422.700000px;}
.x12d_c00309{left:424.350000px;}
.x42_c00309{left:425.550000px;}
.x92_c00309{left:427.800000px;}
.x56_c00309{left:430.050000px;}
.x5_c00309{left:432.300000px;}
.xde_c00309{left:433.650000px;}
.x61_c00309{left:436.050000px;}
.x43_c00309{left:437.100000px;}
.x11b_c00309{left:438.150000px;}
.x19_c00309{left:440.100000px;}
.x11c_c00309{left:442.500000px;}
.xc4_c00309{left:444.300000px;}
.xc8_c00309{left:445.350000px;}
.xc7_c00309{left:446.850000px;}
.x44_c00309{left:448.650000px;}
.x132_c00309{left:450.000000px;}
.x18a_c00309{left:451.800000px;}
.x57_c00309{left:453.150000px;}
.x190_c00309{left:454.350000px;}
.xc9_c00309{left:456.450000px;}
.x17f_c00309{left:458.400000px;}
.xd7_c00309{left:459.600000px;}
.xe8_c00309{left:460.650000px;}
.x11d_c00309{left:462.600000px;}
.x11_c00309{left:464.700000px;}
.x62_c00309{left:467.400000px;}
.x6_c00309{left:471.150000px;}
.x194_c00309{left:472.800000px;}
.xc5_c00309{left:474.900000px;}
.x12e_c00309{left:475.950000px;}
.x12_c00309{left:477.300000px;}
.x181_c00309{left:478.800000px;}
.x33_c00309{left:479.850000px;}
.x186_c00309{left:481.050000px;}
.x187_c00309{left:482.400000px;}
.xda_c00309{left:484.200000px;}
.xed_c00309{left:486.000000px;}
.xd5_c00309{left:487.350000px;}
.x12b_c00309{left:489.150000px;}
.xca_c00309{left:490.350000px;}
.xd8_c00309{left:492.000000px;}
.x2_c00309{left:494.700000px;}
.x19b_c00309{left:495.900000px;}
.xe9_c00309{left:497.700000px;}
.x196_c00309{left:499.800000px;}
.x46_c00309{left:501.150000px;}
.x154_c00309{left:503.100000px;}
.x189_c00309{left:505.050000px;}
.x185_c00309{left:506.250000px;}
.x90_c00309{left:507.600000px;}
.x1a_c00309{left:510.300000px;}
.x11a_c00309{left:511.950000px;}
.x156_c00309{left:515.400000px;}
.x4a_c00309{left:518.400000px;}
.x58_c00309{left:519.750000px;}
.x6e_c00309{left:521.250000px;}
.xa3_c00309{left:522.750000px;}
.xb3_c00309{left:525.000000px;}
.x199_c00309{left:526.050000px;}
.xb6_c00309{left:527.400000px;}
.xe2_c00309{left:529.350000px;}
.xf3_c00309{left:532.050000px;}
.xae_c00309{left:533.100000px;}
.x97_c00309{left:535.350000px;}
.x10e_c00309{left:536.400000px;}
.x111_c00309{left:538.200000px;}
.x12f_c00309{left:539.250000px;}
.x45_c00309{left:541.050000px;}
.x157_c00309{left:542.550000px;}
.x9f_c00309{left:544.350000px;}
.x159_c00309{left:545.400000px;}
.x26_c00309{left:547.050000px;}
.x2b_c00309{left:548.850000px;}
.x34_c00309{left:550.350000px;}
.x39_c00309{left:552.600000px;}
.x6f_c00309{left:554.400000px;}
.x158_c00309{left:556.200000px;}
.x4b_c00309{left:557.700000px;}
.x59_c00309{left:559.650000px;}
.x63_c00309{left:561.600000px;}
.xac_c00309{left:562.650000px;}
.x17b_c00309{left:563.700000px;}
.xee_c00309{left:567.300000px;}
.xa0_c00309{left:570.600000px;}
.x116_c00309{left:573.150000px;}
.x64_c00309{left:574.500000px;}
.xbb_c00309{left:576.600000px;}
.x112_c00309{left:577.800000px;}
.x70_c00309{left:579.600000px;}
.x3a_c00309{left:582.450000px;}
.x102_c00309{left:584.400000px;}
.xe3_c00309{left:585.450000px;}
.x10a_c00309{left:586.650000px;}
.x15e_c00309{left:587.700000px;}
.xa7_c00309{left:590.250000px;}
.x35_c00309{left:591.450000px;}
.x3b_c00309{left:592.950000px;}
.xb7_c00309{left:594.450000px;}
.x164_c00309{left:595.950000px;}
.x65_c00309{left:598.200000px;}
.xaf_c00309{left:599.700000px;}
.xa4_c00309{left:603.000000px;}
.x173_c00309{left:604.950000px;}
.x98_c00309{left:606.600000px;}
.x171_c00309{left:607.800000px;}
.x71_c00309{left:609.450000px;}
.x138_c00309{left:610.800000px;}
.x1b_c00309{left:612.600000px;}
.x27_c00309{left:613.650000px;}
.xa8_c00309{left:615.750000px;}
.x2c_c00309{left:616.950000px;}
.x4c_c00309{left:618.900000px;}
.x103_c00309{left:620.400000px;}
.x17c_c00309{left:622.800000px;}
.x28_c00309{left:624.150000px;}
.x2d_c00309{left:625.650000px;}
.x175_c00309{left:626.850000px;}
.x148_c00309{left:628.200000px;}
.xa1_c00309{left:629.250000px;}
.xef_c00309{left:630.600000px;}
.x72_c00309{left:632.550000px;}
.x36_c00309{left:633.600000px;}
.x4d_c00309{left:634.800000px;}
.x5a_c00309{left:637.350000px;}
.x99_c00309{left:639.000000px;}
.x73_c00309{left:640.800000px;}
.x77_c00309{left:643.950000px;}
.x104_c00309{left:646.350000px;}
.xb8_c00309{left:647.850000px;}
.x66_c00309{left:649.650000px;}
.x10b_c00309{left:651.000000px;}
.x5b_c00309{left:652.500000px;}
.xf0_c00309{left:654.000000px;}
.x78_c00309{left:655.050000px;}
.x133_c00309{left:656.550000px;}
.x16f_c00309{left:659.250000px;}
.x1c_c00309{left:662.700000px;}
.x130_c00309{left:664.050000px;}
.x15f_c00309{left:665.100000px;}
.x15a_c00309{left:666.600000px;}
.x74_c00309{left:667.800000px;}
.x16b_c00309{left:668.850000px;}
.x10f_c00309{left:671.550000px;}
.x1d_c00309{left:672.750000px;}
.x16c_c00309{left:675.750000px;}
.xc1_c00309{left:679.200000px;}
.x172_c00309{left:680.850000px;}
.x37_c00309{left:681.900000px;}
.x13_c00309{left:684.300000px;}
.xbc_c00309{left:686.700000px;}
.x67_c00309{left:687.750000px;}
.x9a_c00309{left:690.450000px;}
.x160_c00309{left:691.800000px;}
.x75_c00309{left:693.000000px;}
.x14c_c00309{left:694.350000px;}
.xf6_c00309{left:695.550000px;}
.x117_c00309{left:696.600000px;}
.x134_c00309{left:698.700000px;}
.x166_c00309{left:700.950000px;}
.x149_c00309{left:702.450000px;}
.x68_c00309{left:705.450000px;}
.x79_c00309{left:707.250000px;}
.x4e_c00309{left:708.600000px;}
.x9b_c00309{left:709.950000px;}
.x14b_c00309{left:711.750000px;}
.xad_c00309{left:712.800000px;}
.x135_c00309{left:714.150000px;}
.xf7_c00309{left:715.650000px;}
.x76_c00309{left:717.450000px;}
.x1e_c00309{left:718.500000px;}
.x131_c00309{left:719.550000px;}
.xf1_c00309{left:721.350000px;}
.x15b_c00309{left:722.400000px;}
.x9c_c00309{left:724.050000px;}
.x14e_c00309{left:725.850000px;}
.x14d_c00309{left:727.800000px;}
.x38_c00309{left:729.750000px;}
.xa9_c00309{left:732.300000px;}
.xb0_c00309{left:733.500000px;}
.xa5_c00309{left:734.850000px;}
.x5c_c00309{left:736.800000px;}
.x168_c00309{left:738.300000px;}
.xb9_c00309{left:739.950000px;}
.x139_c00309{left:742.050000px;}
.x69_c00309{left:743.250000px;}
.xbd_c00309{left:744.300000px;}
.x14a_c00309{left:745.650000px;}
.x179_c00309{left:746.850000px;}
.x4f_c00309{left:747.900000px;}
.x5d_c00309{left:749.700000px;}
.x105_c00309{left:750.900000px;}
.x118_c00309{left:752.100000px;}
.x107_c00309{left:754.200000px;}
.x1f_c00309{left:756.300000px;}
.x177_c00309{left:757.650000px;}
.xaa_c00309{left:759.000000px;}
.x170_c00309{left:760.050000px;}
.xf4_c00309{left:761.700000px;}
.x16d_c00309{left:763.650000px;}
.x169_c00309{left:765.000000px;}
.x6a_c00309{left:766.650000px;}
.x50_c00309{left:767.700000px;}
.x161_c00309{left:768.900000px;}
.xb4_c00309{left:770.100000px;}
.xc2_c00309{left:772.500000px;}
.xa2_c00309{left:775.050000px;}
.x174_c00309{left:777.450000px;}
.x15c_c00309{left:779.250000px;}
.x9d_c00309{left:782.400000px;}
.xba_c00309{left:784.200000px;}
.x6b_c00309{left:786.150000px;}
.x7a_c00309{left:787.200000px;}
.x16a_c00309{left:788.400000px;}
.x136_c00309{left:789.750000px;}
.x5e_c00309{left:792.150000px;}
.xf8_c00309{left:793.350000px;}
.x162_c00309{left:797.100000px;}
.x113_c00309{left:799.500000px;}
.x106_c00309{left:803.100000px;}
.x6c_c00309{left:806.250000px;}
.xb1_c00309{left:808.350000px;}
.x163_c00309{left:809.700000px;}
.x150_c00309{left:810.900000px;}
.x114_c00309{left:812.400000px;}
.xab_c00309{left:814.800000px;}
.x108_c00309{left:816.750000px;}
.xf2_c00309{left:817.800000px;}
.x51_c00309{left:820.650000px;}
.xc3_c00309{left:822.900000px;}
.x9e_c00309{left:824.850000px;}
.x10c_c00309{left:826.800000px;}
.xbe_c00309{left:827.850000px;}
.xb2_c00309{left:828.900000px;}
.xb5_c00309{left:830.100000px;}
.x52_c00309{left:831.750000px;}
.x176_c00309{left:833.850000px;}
.x115_c00309{left:835.500000px;}
.xbf_c00309{left:837.150000px;}
.x119_c00309{left:840.300000px;}
.x165_c00309{left:842.100000px;}
.x137_c00309{left:844.800000px;}
.xa6_c00309{left:846.900000px;}
.xf5_c00309{left:850.350000px;}
.x16e_c00309{left:851.550000px;}
.x6d_c00309{left:852.750000px;}
.x151_c00309{left:854.100000px;}
.xc0_c00309{left:855.900000px;}
.x167_c00309{left:856.950000px;}
.x14f_c00309{left:859.200000px;}
.x17d_c00309{left:860.400000px;}
.x10d_c00309{left:862.500000px;}
.x13a_c00309{left:865.050000px;}
.x109_c00309{left:871.050000px;}
.x110_c00309{left:873.000000px;}
.x178_c00309{left:875.400000px;}
.x15d_c00309{left:881.850000px;}
.x17a_c00309{left:885.600000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws1_c00309{word-spacing:-10.532588pt;}
.ws9_c00309{word-spacing:-7.460349pt;}
.wsf_c00309{word-spacing:-7.407407pt;}
.ws4_c00309{word-spacing:-5.497076pt;}
.ws2_c00309{word-spacing:-4.111111pt;}
.wsd_c00309{word-spacing:-3.483483pt;}
.ws10_c00309{word-spacing:0.000000pt;}
.wsc_c00309{word-spacing:1.949821pt;}
.ws3_c00309{word-spacing:2.923977pt;}
.ws5_c00309{word-spacing:3.521531pt;}
.wsa_c00309{word-spacing:4.301075pt;}
.wse_c00309{word-spacing:7.053140pt;}
.ws7_c00309{word-spacing:8.331630pt;}
.wsb_c00309{word-spacing:10.277778pt;}
.ws8_c00309{word-spacing:12.231459pt;}
.ws6_c00309{word-spacing:387.455680pt;}
.ws0_c00309{word-spacing:1872.000000pt;}
._1_c00309{width:523.315855pt;}
._0_c00309{width:1318.322097pt;}
.fs7_c00309{font-size:26.666667pt;}
.fs1_c00309{font-size:42.666667pt;}
.fs6_c00309{font-size:48.000000pt;}
.fs4_c00309{font-size:53.333333pt;}
.fs2_c00309{font-size:58.666667pt;}
.fs3_c00309{font-size:64.000000pt;}
.fs0_c00309{font-size:69.333333pt;}
.fs5_c00309{font-size:74.666667pt;}
.yd_c00309{bottom:-0.266667pt;}
.y0_c00309{bottom:0.000000pt;}
.yad_c00309{bottom:165.066667pt;}
.yac_c00309{bottom:187.200000pt;}
.yab_c00309{bottom:200.133333pt;}
.y93_c00309{bottom:200.933333pt;}
.y92_c00309{bottom:205.066667pt;}
.yaa_c00309{bottom:212.933333pt;}
.y91_c00309{bottom:213.733333pt;}
.ya9_c00309{bottom:225.066667pt;}
.y90_c00309{bottom:226.266667pt;}
.y8f_c00309{bottom:230.400000pt;}
.ya8_c00309{bottom:237.600000pt;}
.ya7_c00309{bottom:250.133333pt;}
.y8e_c00309{bottom:255.733333pt;}
.ya6_c00309{bottom:262.666667pt;}
.y8d_c00309{bottom:268.533333pt;}
.ya5_c00309{bottom:278.000000pt;}
.y8c_c00309{bottom:281.333333pt;}
.ya4_c00309{bottom:287.600000pt;}
.ya0_c00309{bottom:291.200000pt;}
.y8b_c00309{bottom:294.400000pt;}
.ya3_c00309{bottom:298.533333pt;}
.y9f_c00309{bottom:303.600000pt;}
.y8a_c00309{bottom:307.200000pt;}
.ya2_c00309{bottom:310.666667pt;}
.y9e_c00309{bottom:316.400000pt;}
.y89_c00309{bottom:319.733333pt;}
.y6d_c00309{bottom:320.933333pt;}
.y9d_c00309{bottom:329.200000pt;}
.y6c_c00309{bottom:331.466667pt;}
.y88_c00309{bottom:332.533333pt;}
.y87_c00309{bottom:337.866667pt;}
.y9c_c00309{bottom:341.733333pt;}
.y6b_c00309{bottom:343.600000pt;}
.y86_c00309{bottom:344.933333pt;}
.y9b_c00309{bottom:354.533333pt;}
.y6a_c00309{bottom:357.066667pt;}
.y85_c00309{bottom:357.733333pt;}
.ya1_c00309{bottom:361.866667pt;}
.y9a_c00309{bottom:367.333333pt;}
.y84_c00309{bottom:371.466667pt;}
.y69_c00309{bottom:373.733333pt;}
.y99_c00309{bottom:379.866667pt;}
.y83_c00309{bottom:380.800000pt;}
.y98_c00309{bottom:391.733333pt;}
.y68_c00309{bottom:394.266667pt;}
.y82_c00309{bottom:396.400000pt;}
.y97_c00309{bottom:399.066667pt;}
.y67_c00309{bottom:408.266667pt;}
.y81_c00309{bottom:408.933333pt;}
.y96_c00309{bottom:417.333333pt;}
.y66_c00309{bottom:420.800000pt;}
.y80_c00309{bottom:422.000000pt;}
.y95_c00309{bottom:430.133333pt;}
.y7f_c00309{bottom:434.533333pt;}
.y65_c00309{bottom:442.266667pt;}
.y94_c00309{bottom:442.933333pt;}
.y7e_c00309{bottom:443.466667pt;}
.y74_c00309{bottom:447.333333pt;}
.y7d_c00309{bottom:450.533333pt;}
.y73_c00309{bottom:460.133333pt;}
.y64_c00309{bottom:463.066667pt;}
.y7c_c00309{bottom:463.333333pt;}
.y78_c00309{bottom:468.133333pt;}
.y63_c00309{bottom:469.466667pt;}
.y72_c00309{bottom:471.733333pt;}
.y7b_c00309{bottom:475.866667pt;}
.y77_c00309{bottom:480.933333pt;}
.y62_c00309{bottom:483.200000pt;}
.y71_c00309{bottom:486.400000pt;}
.y7a_c00309{bottom:490.533333pt;}
.y76_c00309{bottom:493.200000pt;}
.y61_c00309{bottom:495.333333pt;}
.y70_c00309{bottom:498.533333pt;}
.y79_c00309{bottom:499.466667pt;}
.y6f_c00309{bottom:505.600000pt;}
.y75_c00309{bottom:506.266667pt;}
.y60_c00309{bottom:508.133333pt;}
.y5f_c00309{bottom:515.600000pt;}
.y6e_c00309{bottom:517.466667pt;}
.y5e_c00309{bottom:528.666667pt;}
.y5d_c00309{bottom:540.800000pt;}
.y5b_c00309{bottom:544.000000pt;}
.y5c_c00309{bottom:546.933333pt;}
.y5a_c00309{bottom:548.533333pt;}
.y4d_c00309{bottom:553.866667pt;}
.y59_c00309{bottom:554.933333pt;}
.y53_c00309{bottom:556.266667pt;}
.y44_c00309{bottom:556.533333pt;}
.y58_c00309{bottom:565.066667pt;}
.y4c_c00309{bottom:566.666667pt;}
.y43_c00309{bottom:568.666667pt;}
.y52_c00309{bottom:568.800000pt;}
.y57_c00309{bottom:577.600000pt;}
.y4b_c00309{bottom:579.066667pt;}
.y51_c00309{bottom:581.600000pt;}
.y42_c00309{bottom:582.933333pt;}
.y56_c00309{bottom:589.733333pt;}
.y4a_c00309{bottom:591.866667pt;}
.y50_c00309{bottom:594.133333pt;}
.y41_c00309{bottom:595.466667pt;}
.y55_c00309{bottom:602.800000pt;}
.y40_c00309{bottom:603.200000pt;}
.y49_c00309{bottom:603.733333pt;}
.y4f_c00309{bottom:606.666667pt;}
.y54_c00309{bottom:611.466667pt;}
.y48_c00309{bottom:617.866667pt;}
.y4e_c00309{bottom:619.200000pt;}
.y3f_c00309{bottom:623.600000pt;}
.y3e_c00309{bottom:633.866667pt;}
.y47_c00309{bottom:636.266667pt;}
.y46_c00309{bottom:639.733333pt;}
.y3d_c00309{bottom:651.200000pt;}
.y45_c00309{bottom:653.733333pt;}
.y3c_c00309{bottom:664.266667pt;}
.y3b_c00309{bottom:676.800000pt;}
.y3a_c00309{bottom:688.666667pt;}
.y39_c00309{bottom:689.333333pt;}
.y38_c00309{bottom:690.533333pt;}
.y34_c00309{bottom:692.800000pt;}
.y1d_c00309{bottom:697.333333pt;}
.y37_c00309{bottom:699.200000pt;}
.y2b_c00309{bottom:702.400000pt;}
.y33_c00309{bottom:704.266667pt;}
.y36_c00309{bottom:712.000000pt;}
.y1c_c00309{bottom:712.266667pt;}
.y2a_c00309{bottom:715.200000pt;}
.y32_c00309{bottom:717.066667pt;}
.y1b_c00309{bottom:720.933333pt;}
.y35_c00309{bottom:724.800000pt;}
.y29_c00309{bottom:727.733333pt;}
.y31_c00309{bottom:728.666667pt;}
.y1a_c00309{bottom:737.733333pt;}
.y28_c00309{bottom:740.533333pt;}
.y30_c00309{bottom:746.533333pt;}
.y19_c00309{bottom:749.200000pt;}
.y27_c00309{bottom:751.733333pt;}
.y26_c00309{bottom:759.066667pt;}
.y2f_c00309{bottom:759.333333pt;}
.y18_c00309{bottom:761.333333pt;}
.y2e_c00309{bottom:762.533333pt;}
.y25_c00309{bottom:765.733333pt;}
.y17_c00309{bottom:774.133333pt;}
.y24_c00309{bottom:774.800000pt;}
.y2d_c00309{bottom:775.066667pt;}
.y20_c00309{bottom:782.400000pt;}
.y16_c00309{bottom:785.333333pt;}
.y2c_c00309{bottom:787.466667pt;}
.y1f_c00309{bottom:793.333333pt;}
.y23_c00309{bottom:795.866667pt;}
.y22_c00309{bottom:799.066667pt;}
.y15_c00309{bottom:805.466667pt;}
.y21_c00309{bottom:808.266667pt;}
.y14_c00309{bottom:812.800000pt;}
.y1e_c00309{bottom:820.533333pt;}
.y13_c00309{bottom:820.800000pt;}
.y12_c00309{bottom:826.266667pt;}
.y11_c00309{bottom:845.733333pt;}
.y10_c00309{bottom:859.200000pt;}
.yf_c00309{bottom:871.333333pt;}
.yb_c00309{bottom:882.533333pt;}
.yc_c00309{bottom:895.066667pt;}
.ya_c00309{bottom:903.200000pt;}
.ye_c00309{bottom:909.466667pt;}
.y9_c00309{bottom:931.066667pt;}
.y8_c00309{bottom:943.600000pt;}
.y7_c00309{bottom:962.133333pt;}
.y5_c00309{bottom:988.400000pt;}
.y6_c00309{bottom:992.266667pt;}
.y4_c00309{bottom:995.466667pt;}
.y3_c00309{bottom:1004.133333pt;}
.y1_c00309{bottom:1008.000000pt;}
.y2_c00309{bottom:1014.666667pt;}
.h9_c00309{height:26.666667pt;}
.h3_c00309{height:42.666667pt;}
.h8_c00309{height:48.000000pt;}
.h6_c00309{height:53.333333pt;}
.h4_c00309{height:58.666667pt;}
.h5_c00309{height:64.000000pt;}
.h2_c00309{height:69.333333pt;}
.h7_c00309{height:74.666667pt;}
.h0_c00309{height:1159.040039pt;}
.h1_c00309{height:1159.333333pt;}
.w1_c00309{width:854.666667pt;}
.w0_c00309{width:854.720052pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:132.800000pt;}
.x29_c00309{left:141.733333pt;}
.x2e_c00309{left:144.000000pt;}
.x7b_c00309{left:149.066667pt;}
.x7f_c00309{left:150.133333pt;}
.x7_c00309{left:151.733333pt;}
.x88_c00309{left:152.933333pt;}
.xa_c00309{left:154.000000pt;}
.x8e_c00309{left:155.466667pt;}
.x20_c00309{left:156.800000pt;}
.xea_c00309{left:158.400000pt;}
.xfb_c00309{left:160.000000pt;}
.x3c_c00309{left:160.933333pt;}
.x47_c00309{left:161.866667pt;}
.xff_c00309{left:162.800000pt;}
.x128_c00309{left:163.866667pt;}
.x12c_c00309{left:165.600000pt;}
.x85_c00309{left:166.666667pt;}
.x80_c00309{left:167.733333pt;}
.x13c_c00309{left:168.666667pt;}
.x89_c00309{left:170.133333pt;}
.xf9_c00309{left:171.200000pt;}
.x140_c00309{left:172.133333pt;}
.xfa_c00309{left:173.466667pt;}
.x146_c00309{left:174.666667pt;}
.x7c_c00309{left:176.266667pt;}
.x18c_c00309{left:178.266667pt;}
.x18f_c00309{left:179.333333pt;}
.x8f_c00309{left:180.400000pt;}
.x21_c00309{left:182.400000pt;}
.x129_c00309{left:184.000000pt;}
.x53_c00309{left:185.200000pt;}
.xb_c00309{left:186.266667pt;}
.x13d_c00309{left:187.200000pt;}
.xe4_c00309{left:188.533333pt;}
.x48_c00309{left:190.400000pt;}
.xeb_c00309{left:191.333333pt;}
.x8_c00309{left:192.400000pt;}
.x2a_c00309{left:193.866667pt;}
.x22_c00309{left:197.066667pt;}
.x8a_c00309{left:198.933333pt;}
.x100_c00309{left:200.533333pt;}
.x8c_c00309{left:201.600000pt;}
.x86_c00309{left:202.533333pt;}
.x14_c00309{left:206.133333pt;}
.x197_c00309{left:207.066667pt;}
.x49_c00309{left:208.666667pt;}
.x142_c00309{left:209.600000pt;}
.x84_c00309{left:211.466667pt;}
.x23_c00309{left:214.933333pt;}
.x8b_c00309{left:216.266667pt;}
.xce_c00309{left:218.000000pt;}
.xfc_c00309{left:219.200000pt;}
.xfe_c00309{left:220.133333pt;}
.x15_c00309{left:221.866667pt;}
.x7d_c00309{left:223.066667pt;}
.xdb_c00309{left:224.266667pt;}
.x81_c00309{left:227.200000pt;}
.x93_c00309{left:228.800000pt;}
.x141_c00309{left:229.733333pt;}
.xd1_c00309{left:230.800000pt;}
.x3d_c00309{left:232.666667pt;}
.xdf_c00309{left:234.000000pt;}
.x143_c00309{left:237.733333pt;}
.x101_c00309{left:238.666667pt;}
.x3e_c00309{left:242.266667pt;}
.xdc_c00309{left:243.733333pt;}
.x9_c00309{left:245.466667pt;}
.xcf_c00309{left:246.533333pt;}
.x13b_c00309{left:248.400000pt;}
.xc6_c00309{left:249.600000pt;}
.x191_c00309{left:251.200000pt;}
.x87_c00309{left:252.133333pt;}
.x3f_c00309{left:254.133333pt;}
.x82_c00309{left:255.066667pt;}
.xe5_c00309{left:256.133333pt;}
.xfd_c00309{left:257.600000pt;}
.x8d_c00309{left:258.533333pt;}
.x24_c00309{left:260.666667pt;}
.x54_c00309{left:261.600000pt;}
.xcb_c00309{left:263.333333pt;}
.x144_c00309{left:264.933333pt;}
.x7e_c00309{left:266.266667pt;}
.x16_c00309{left:267.333333pt;}
.x40_c00309{left:268.533333pt;}
.x126_c00309{left:270.133333pt;}
.x183_c00309{left:271.066667pt;}
.x2f_c00309{left:272.000000pt;}
.xc_c00309{left:273.333333pt;}
.x198_c00309{left:274.266667pt;}
.x11e_c00309{left:276.533333pt;}
.x95_c00309{left:277.600000pt;}
.xd0_c00309{left:279.733333pt;}
.x13e_c00309{left:280.666667pt;}
.x12a_c00309{left:282.266667pt;}
.x153_c00309{left:284.000000pt;}
.x41_c00309{left:285.466667pt;}
.xcc_c00309{left:286.666667pt;}
.xd_c00309{left:288.666667pt;}
.x120_c00309{left:291.333333pt;}
.x11f_c00309{left:292.533333pt;}
.x30_c00309{left:294.133333pt;}
.x94_c00309{left:296.400000pt;}
.x145_c00309{left:297.866667pt;}
.x17_c00309{left:299.066667pt;}
.xdd_c00309{left:301.333333pt;}
.xe0_c00309{left:303.733333pt;}
.x3_c00309{left:305.866667pt;}
.x13f_c00309{left:306.933333pt;}
.x18b_c00309{left:307.866667pt;}
.x192_c00309{left:309.066667pt;}
.xcd_c00309{left:310.000000pt;}
.x193_c00309{left:315.733333pt;}
.x123_c00309{left:317.200000pt;}
.x124_c00309{left:318.400000pt;}
.xec_c00309{left:319.333333pt;}
.x155_c00309{left:320.266667pt;}
.x83_c00309{left:322.000000pt;}
.x152_c00309{left:323.333333pt;}
.xe6_c00309{left:325.866667pt;}
.x96_c00309{left:326.933333pt;}
.xd2_c00309{left:328.133333pt;}
.x5f_c00309{left:330.933333pt;}
.x180_c00309{left:331.866667pt;}
.x25_c00309{left:332.933333pt;}
.x4_c00309{left:334.400000pt;}
.x127_c00309{left:335.333333pt;}
.xe_c00309{left:337.600000pt;}
.x19a_c00309{left:338.666667pt;}
.x31_c00309{left:339.600000pt;}
.x125_c00309{left:340.800000pt;}
.x147_c00309{left:341.733333pt;}
.x182_c00309{left:342.800000pt;}
.xd3_c00309{left:343.733333pt;}
.xd6_c00309{left:345.466667pt;}
.x55_c00309{left:346.400000pt;}
.x195_c00309{left:347.333333pt;}
.x184_c00309{left:348.533333pt;}
.x18e_c00309{left:349.866667pt;}
.x18_c00309{left:351.200000pt;}
.x121_c00309{left:352.133333pt;}
.x18d_c00309{left:353.066667pt;}
.xd9_c00309{left:354.133333pt;}
.xf_c00309{left:357.066667pt;}
.x91_c00309{left:359.466667pt;}
.x60_c00309{left:360.666667pt;}
.xe1_c00309{left:361.600000pt;}
.x188_c00309{left:363.066667pt;}
.xd4_c00309{left:364.800000pt;}
.xe7_c00309{left:368.800000pt;}
.x122_c00309{left:369.733333pt;}
.x10_c00309{left:371.733333pt;}
.x32_c00309{left:373.466667pt;}
.x17e_c00309{left:375.733333pt;}
.x12d_c00309{left:377.200000pt;}
.x42_c00309{left:378.266667pt;}
.x92_c00309{left:380.266667pt;}
.x56_c00309{left:382.266667pt;}
.x5_c00309{left:384.266667pt;}
.xde_c00309{left:385.466667pt;}
.x61_c00309{left:387.600000pt;}
.x43_c00309{left:388.533333pt;}
.x11b_c00309{left:389.466667pt;}
.x19_c00309{left:391.200000pt;}
.x11c_c00309{left:393.333333pt;}
.xc4_c00309{left:394.933333pt;}
.xc8_c00309{left:395.866667pt;}
.xc7_c00309{left:397.200000pt;}
.x44_c00309{left:398.800000pt;}
.x132_c00309{left:400.000000pt;}
.x18a_c00309{left:401.600000pt;}
.x57_c00309{left:402.800000pt;}
.x190_c00309{left:403.866667pt;}
.xc9_c00309{left:405.733333pt;}
.x17f_c00309{left:407.466667pt;}
.xd7_c00309{left:408.533333pt;}
.xe8_c00309{left:409.466667pt;}
.x11d_c00309{left:411.200000pt;}
.x11_c00309{left:413.066667pt;}
.x62_c00309{left:415.466667pt;}
.x6_c00309{left:418.800000pt;}
.x194_c00309{left:420.266667pt;}
.xc5_c00309{left:422.133333pt;}
.x12e_c00309{left:423.066667pt;}
.x12_c00309{left:424.266667pt;}
.x181_c00309{left:425.600000pt;}
.x33_c00309{left:426.533333pt;}
.x186_c00309{left:427.600000pt;}
.x187_c00309{left:428.800000pt;}
.xda_c00309{left:430.400000pt;}
.xed_c00309{left:432.000000pt;}
.xd5_c00309{left:433.200000pt;}
.x12b_c00309{left:434.800000pt;}
.xca_c00309{left:435.866667pt;}
.xd8_c00309{left:437.333333pt;}
.x2_c00309{left:439.733333pt;}
.x19b_c00309{left:440.800000pt;}
.xe9_c00309{left:442.400000pt;}
.x196_c00309{left:444.266667pt;}
.x46_c00309{left:445.466667pt;}
.x154_c00309{left:447.200000pt;}
.x189_c00309{left:448.933333pt;}
.x185_c00309{left:450.000000pt;}
.x90_c00309{left:451.200000pt;}
.x1a_c00309{left:453.600000pt;}
.x11a_c00309{left:455.066667pt;}
.x156_c00309{left:458.133333pt;}
.x4a_c00309{left:460.800000pt;}
.x58_c00309{left:462.000000pt;}
.x6e_c00309{left:463.333333pt;}
.xa3_c00309{left:464.666667pt;}
.xb3_c00309{left:466.666667pt;}
.x199_c00309{left:467.600000pt;}
.xb6_c00309{left:468.800000pt;}
.xe2_c00309{left:470.533333pt;}
.xf3_c00309{left:472.933333pt;}
.xae_c00309{left:473.866667pt;}
.x97_c00309{left:475.866667pt;}
.x10e_c00309{left:476.800000pt;}
.x111_c00309{left:478.400000pt;}
.x12f_c00309{left:479.333333pt;}
.x45_c00309{left:480.933333pt;}
.x157_c00309{left:482.266667pt;}
.x9f_c00309{left:483.866667pt;}
.x159_c00309{left:484.800000pt;}
.x26_c00309{left:486.266667pt;}
.x2b_c00309{left:487.866667pt;}
.x34_c00309{left:489.200000pt;}
.x39_c00309{left:491.200000pt;}
.x6f_c00309{left:492.800000pt;}
.x158_c00309{left:494.400000pt;}
.x4b_c00309{left:495.733333pt;}
.x59_c00309{left:497.466667pt;}
.x63_c00309{left:499.200000pt;}
.xac_c00309{left:500.133333pt;}
.x17b_c00309{left:501.066667pt;}
.xee_c00309{left:504.266667pt;}
.xa0_c00309{left:507.200000pt;}
.x116_c00309{left:509.466667pt;}
.x64_c00309{left:510.666667pt;}
.xbb_c00309{left:512.533333pt;}
.x112_c00309{left:513.600000pt;}
.x70_c00309{left:515.200000pt;}
.x3a_c00309{left:517.733333pt;}
.x102_c00309{left:519.466667pt;}
.xe3_c00309{left:520.400000pt;}
.x10a_c00309{left:521.466667pt;}
.x15e_c00309{left:522.400000pt;}
.xa7_c00309{left:524.666667pt;}
.x35_c00309{left:525.733333pt;}
.x3b_c00309{left:527.066667pt;}
.xb7_c00309{left:528.400000pt;}
.x164_c00309{left:529.733333pt;}
.x65_c00309{left:531.733333pt;}
.xaf_c00309{left:533.066667pt;}
.xa4_c00309{left:536.000000pt;}
.x173_c00309{left:537.733333pt;}
.x98_c00309{left:539.200000pt;}
.x171_c00309{left:540.266667pt;}
.x71_c00309{left:541.733333pt;}
.x138_c00309{left:542.933333pt;}
.x1b_c00309{left:544.533333pt;}
.x27_c00309{left:545.466667pt;}
.xa8_c00309{left:547.333333pt;}
.x2c_c00309{left:548.400000pt;}
.x4c_c00309{left:550.133333pt;}
.x103_c00309{left:551.466667pt;}
.x17c_c00309{left:553.600000pt;}
.x28_c00309{left:554.800000pt;}
.x2d_c00309{left:556.133333pt;}
.x175_c00309{left:557.200000pt;}
.x148_c00309{left:558.400000pt;}
.xa1_c00309{left:559.333333pt;}
.xef_c00309{left:560.533333pt;}
.x72_c00309{left:562.266667pt;}
.x36_c00309{left:563.200000pt;}
.x4d_c00309{left:564.266667pt;}
.x5a_c00309{left:566.533333pt;}
.x99_c00309{left:568.000000pt;}
.x73_c00309{left:569.600000pt;}
.x77_c00309{left:572.400000pt;}
.x104_c00309{left:574.533333pt;}
.xb8_c00309{left:575.866667pt;}
.x66_c00309{left:577.466667pt;}
.x10b_c00309{left:578.666667pt;}
.x5b_c00309{left:580.000000pt;}
.xf0_c00309{left:581.333333pt;}
.x78_c00309{left:582.266667pt;}
.x133_c00309{left:583.600000pt;}
.x16f_c00309{left:586.000000pt;}
.x1c_c00309{left:589.066667pt;}
.x130_c00309{left:590.266667pt;}
.x15f_c00309{left:591.200000pt;}
.x15a_c00309{left:592.533333pt;}
.x74_c00309{left:593.600000pt;}
.x16b_c00309{left:594.533333pt;}
.x10f_c00309{left:596.933333pt;}
.x1d_c00309{left:598.000000pt;}
.x16c_c00309{left:600.666667pt;}
.xc1_c00309{left:603.733333pt;}
.x172_c00309{left:605.200000pt;}
.x37_c00309{left:606.133333pt;}
.x13_c00309{left:608.266667pt;}
.xbc_c00309{left:610.400000pt;}
.x67_c00309{left:611.333333pt;}
.x9a_c00309{left:613.733333pt;}
.x160_c00309{left:614.933333pt;}
.x75_c00309{left:616.000000pt;}
.x14c_c00309{left:617.200000pt;}
.xf6_c00309{left:618.266667pt;}
.x117_c00309{left:619.200000pt;}
.x134_c00309{left:621.066667pt;}
.x166_c00309{left:623.066667pt;}
.x149_c00309{left:624.400000pt;}
.x68_c00309{left:627.066667pt;}
.x79_c00309{left:628.666667pt;}
.x4e_c00309{left:629.866667pt;}
.x9b_c00309{left:631.066667pt;}
.x14b_c00309{left:632.666667pt;}
.xad_c00309{left:633.600000pt;}
.x135_c00309{left:634.800000pt;}
.xf7_c00309{left:636.133333pt;}
.x76_c00309{left:637.733333pt;}
.x1e_c00309{left:638.666667pt;}
.x131_c00309{left:639.600000pt;}
.xf1_c00309{left:641.200000pt;}
.x15b_c00309{left:642.133333pt;}
.x9c_c00309{left:643.600000pt;}
.x14e_c00309{left:645.200000pt;}
.x14d_c00309{left:646.933333pt;}
.x38_c00309{left:648.666667pt;}
.xa9_c00309{left:650.933333pt;}
.xb0_c00309{left:652.000000pt;}
.xa5_c00309{left:653.200000pt;}
.x5c_c00309{left:654.933333pt;}
.x168_c00309{left:656.266667pt;}
.xb9_c00309{left:657.733333pt;}
.x139_c00309{left:659.600000pt;}
.x69_c00309{left:660.666667pt;}
.xbd_c00309{left:661.600000pt;}
.x14a_c00309{left:662.800000pt;}
.x179_c00309{left:663.866667pt;}
.x4f_c00309{left:664.800000pt;}
.x5d_c00309{left:666.400000pt;}
.x105_c00309{left:667.466667pt;}
.x118_c00309{left:668.533333pt;}
.x107_c00309{left:670.400000pt;}
.x1f_c00309{left:672.266667pt;}
.x177_c00309{left:673.466667pt;}
.xaa_c00309{left:674.666667pt;}
.x170_c00309{left:675.600000pt;}
.xf4_c00309{left:677.066667pt;}
.x16d_c00309{left:678.800000pt;}
.x169_c00309{left:680.000000pt;}
.x6a_c00309{left:681.466667pt;}
.x50_c00309{left:682.400000pt;}
.x161_c00309{left:683.466667pt;}
.xb4_c00309{left:684.533333pt;}
.xc2_c00309{left:686.666667pt;}
.xa2_c00309{left:688.933333pt;}
.x174_c00309{left:691.066667pt;}
.x15c_c00309{left:692.666667pt;}
.x9d_c00309{left:695.466667pt;}
.xba_c00309{left:697.066667pt;}
.x6b_c00309{left:698.800000pt;}
.x7a_c00309{left:699.733333pt;}
.x16a_c00309{left:700.800000pt;}
.x136_c00309{left:702.000000pt;}
.x5e_c00309{left:704.133333pt;}
.xf8_c00309{left:705.200000pt;}
.x162_c00309{left:708.533333pt;}
.x113_c00309{left:710.666667pt;}
.x106_c00309{left:713.866667pt;}
.x6c_c00309{left:716.666667pt;}
.xb1_c00309{left:718.533333pt;}
.x163_c00309{left:719.733333pt;}
.x150_c00309{left:720.800000pt;}
.x114_c00309{left:722.133333pt;}
.xab_c00309{left:724.266667pt;}
.x108_c00309{left:726.000000pt;}
.xf2_c00309{left:726.933333pt;}
.x51_c00309{left:729.466667pt;}
.xc3_c00309{left:731.466667pt;}
.x9e_c00309{left:733.200000pt;}
.x10c_c00309{left:734.933333pt;}
.xbe_c00309{left:735.866667pt;}
.xb2_c00309{left:736.800000pt;}
.xb5_c00309{left:737.866667pt;}
.x52_c00309{left:739.333333pt;}
.x176_c00309{left:741.200000pt;}
.x115_c00309{left:742.666667pt;}
.xbf_c00309{left:744.133333pt;}
.x119_c00309{left:746.933333pt;}
.x165_c00309{left:748.533333pt;}
.x137_c00309{left:750.933333pt;}
.xa6_c00309{left:752.800000pt;}
.xf5_c00309{left:755.866667pt;}
.x16e_c00309{left:756.933333pt;}
.x6d_c00309{left:758.000000pt;}
.x151_c00309{left:759.200000pt;}
.xc0_c00309{left:760.800000pt;}
.x167_c00309{left:761.733333pt;}
.x14f_c00309{left:763.733333pt;}
.x17d_c00309{left:764.800000pt;}
.x10d_c00309{left:766.666667pt;}
.x13a_c00309{left:768.933333pt;}
.x109_c00309{left:774.266667pt;}
.x110_c00309{left:776.000000pt;}
.x178_c00309{left:778.133333pt;}
.x15d_c00309{left:783.866667pt;}
.x17a_c00309{left:787.200000pt;}
}





/* 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_c00310 {
    display:none;
  }
  .loading-indicator_c00310.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00310 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_c00310 { 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_c00310" -> "#page-container .classname_c00310")
 */
.pf_c00310 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00310 { /* 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_c00310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00310 { /* 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_c00310 { /* 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_c00310 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00310 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00310 {overflow:visible;}
  }
}
.c_c00310 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00310 { /* 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_c00310:after { /* webkit #35443 */
  content: '';
}
.t_c00310:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00310 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 */
}
.__c00310 { /* 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_c00310 { /* info for Javascript */
  display:none;
}
.l_c00310 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00310 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00310 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00310: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_c00310 {
    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_c00310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00310.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_c00310 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00310;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.000000;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;}
.m6e_c00310{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00310{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.maa_c00310{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00310{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00310{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00310{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00310{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m6_c00310{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00310{transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00310{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md7_c00310{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.me_c00310{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00310{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mb_c00310{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00310{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mac_c00310{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mad_c00310{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00310{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00310{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00310{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00310{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mab_c00310{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00310{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m67_c00310{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mff_c00310{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00310{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m63_c00310{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m117_c00310{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m37_c00310{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m92_c00310{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00310{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00310{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00310{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00310{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m93_c00310{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m96_c00310{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m107_c00310{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00310{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00310{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m89_c00310{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00310{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00310{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00310{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m61_c00310{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m110_c00310{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m7_c00310{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m46_c00310{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m29_c00310{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00310{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m119_c00310{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00310{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00310{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00310{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00310{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m105_c00310{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m19_c00310{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m109_c00310{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.me0_c00310{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00310{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mea_c00310{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00310{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00310{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00310{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m113_c00310{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m43_c00310{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00310{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m111_c00310{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00310{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00310{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m78_c00310{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m80_c00310{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00310{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m31_c00310{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m28_c00310{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.maf_c00310{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m118_c00310{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00310{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mef_c00310{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00310{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m21_c00310{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m106_c00310{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m114_c00310{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00310{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me2_c00310{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m35_c00310{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00310{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m39_c00310{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m65_c00310{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00310{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.md8_c00310{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m90_c00310{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m70_c00310{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m94_c00310{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me5_c00310{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m84_c00310{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mda_c00310{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m12_c00310{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00310{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m33_c00310{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00310{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00310{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00310{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mec_c00310{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m115_c00310{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00310{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00310{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8_c00310{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00310{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m32_c00310{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m48_c00310{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m59_c00310{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m73_c00310{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00310{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00310{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00310{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m99_c00310{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m26_c00310{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m69_c00310{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00310{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5_c00310{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00310{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00310{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m51_c00310{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m23_c00310{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m15_c00310{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9_c00310{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m42_c00310{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00310{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m14_c00310{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md9_c00310{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m34_c00310{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00310{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00310{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m13_c00310{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m95_c00310{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mf_c00310{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mba_c00310{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m116_c00310{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00310{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me1_c00310{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.me7_c00310{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00310{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m30_c00310{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me4_c00310{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m16_c00310{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me8_c00310{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00310{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00310{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m47_c00310{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00310{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00310{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m45_c00310{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00310{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m88_c00310{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mca_c00310{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00310{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md6_c00310{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m71_c00310{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me6_c00310{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m41_c00310{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00310{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00310{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00310{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00310{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m38_c00310{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m52_c00310{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m87_c00310{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00310{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m27_c00310{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00310{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me3_c00310{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m76_c00310{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m36_c00310{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m17_c00310{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mee_c00310{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00310{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00310{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00310{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m55_c00310{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mde_c00310{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m100_c00310{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00310{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md1_c00310{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m62_c00310{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00310{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m24_c00310{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00310{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m56_c00310{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m49_c00310{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.med_c00310{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m103_c00310{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00310{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m97_c00310{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00310{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00310{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m74_c00310{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00310{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00310{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md0_c00310{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m22_c00310{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m75_c00310{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00310{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00310{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m20_c00310{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m72_c00310{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mae_c00310{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m81_c00310{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m108_c00310{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00310{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md3_c00310{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m83_c00310{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00310{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m53_c00310{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m40_c00310{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00310{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m82_c00310{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m91_c00310{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00310{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m79_c00310{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00310{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00310{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m98_c00310{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m25_c00310{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00310{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00310{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00310{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00310{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00310{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00310{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00310{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m54_c00310{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m101_c00310{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mce_c00310{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00310{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00310{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00310{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m86_c00310{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00310{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);}
.m18_c00310{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00310{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00310{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00310{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m102_c00310{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md2_c00310{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.meb_c00310{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00310{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m120_c00310{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00310{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m58_c00310{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m66_c00310{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00310{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m104_c00310{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m50_c00310{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00310{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.md4_c00310{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m64_c00310{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me9_c00310{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.md_c00310{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00310{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00310{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00310{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m60_c00310{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m85_c00310{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m10_c00310{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00310{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m57_c00310{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m3_c00310{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00310{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00310{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00310{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m44_c00310{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00310{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m112_c00310{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m122_c00310{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m11_c00310{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00310{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.ma_c00310{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00310{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00310{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md5_c00310{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m123_c00310{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m0_c00310{transform:matrix(0.453000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00310{transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);}
.m121_c00310{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m77_c00310{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00310{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00310{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m68_c00310{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00310{transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls0_c00310{letter-spacing:0.000000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{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__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00310{word-spacing:-4.375000px;}
.ws7_c00310{word-spacing:-1.500000px;}
.ws8_c00310{word-spacing:0.000000px;}
.ws3_c00310{word-spacing:2.076923px;}
.ws6_c00310{word-spacing:2.976190px;}
.ws5_c00310{word-spacing:5.619946px;}
.ws1_c00310{word-spacing:7.242038px;}
.ws4_c00310{word-spacing:58.750000px;}
.ws0_c00310{word-spacing:339.250000px;}
._0_c00310{width:42.000000px;}
.fc0_c00310{color:transparent;}
.fs2_c00310{font-size:30.000000px;}
.fs8_c00310{font-size:36.000000px;}
.fs4_c00310{font-size:42.000000px;}
.fs6_c00310{font-size:54.000000px;}
.fs5_c00310{font-size:60.000000px;}
.fs3_c00310{font-size:66.000000px;}
.fs7_c00310{font-size:72.000000px;}
.fs0_c00310{font-size:78.000000px;}
.fs1_c00310{font-size:84.000000px;}
.y0_c00310{bottom:0.000000px;}
.y70_c00310{bottom:171.750000px;}
.y3b_c00310{bottom:185.700000px;}
.y6f_c00310{bottom:189.750000px;}
.y3a_c00310{bottom:200.100000px;}
.y6e_c00310{bottom:207.750000px;}
.y39_c00310{bottom:214.500000px;}
.y38_c00310{bottom:228.900000px;}
.y6d_c00310{bottom:229.500000px;}
.y37_c00310{bottom:243.300000px;}
.y6c_c00310{bottom:247.500000px;}
.y36_c00310{bottom:258.450000px;}
.y6b_c00310{bottom:265.500000px;}
.y35_c00310{bottom:271.800000px;}
.y6a_c00310{bottom:283.200000px;}
.y34_c00310{bottom:286.200000px;}
.y69_c00310{bottom:300.900000px;}
.y68_c00310{bottom:318.900000px;}
.y2f_c00310{bottom:326.700000px;}
.y67_c00310{bottom:335.550000px;}
.y2e_c00310{bottom:340.800000px;}
.y33_c00310{bottom:342.750000px;}
.y66_c00310{bottom:354.300000px;}
.y2d_c00310{bottom:354.900000px;}
.y2c_c00310{bottom:369.600000px;}
.y65_c00310{bottom:372.000000px;}
.y31_c00310{bottom:379.800000px;}
.y2b_c00310{bottom:383.700000px;}
.y64_c00310{bottom:389.700000px;}
.y32_c00310{bottom:393.450000px;}
.y2a_c00310{bottom:397.500000px;}
.y30_c00310{bottom:398.100000px;}
.y63_c00310{bottom:407.400000px;}
.y29_c00310{bottom:412.200000px;}
.y62_c00310{bottom:424.650000px;}
.y28_c00310{bottom:428.400000px;}
.y61_c00310{bottom:442.350000px;}
.y27_c00310{bottom:445.950000px;}
.y60_c00310{bottom:460.050000px;}
.y26_c00310{bottom:465.000000px;}
.y5f_c00310{bottom:477.750000px;}
.y25_c00310{bottom:482.700000px;}
.y5e_c00310{bottom:495.750000px;}
.y24_c00310{bottom:505.050000px;}
.y5d_c00310{bottom:518.100000px;}
.y23_c00310{bottom:522.300000px;}
.y5c_c00310{bottom:534.900000px;}
.y22_c00310{bottom:542.100000px;}
.y5b_c00310{bottom:552.600000px;}
.y21_c00310{bottom:558.300000px;}
.y5a_c00310{bottom:570.600000px;}
.y20_c00310{bottom:576.600000px;}
.y59_c00310{bottom:588.600000px;}
.y1f_c00310{bottom:594.300000px;}
.y58_c00310{bottom:606.300000px;}
.y1e_c00310{bottom:612.000000px;}
.y57_c00310{bottom:624.000000px;}
.y1d_c00310{bottom:629.700000px;}
.y56_c00310{bottom:642.000000px;}
.y1c_c00310{bottom:647.700000px;}
.y55_c00310{bottom:659.700000px;}
.y1b_c00310{bottom:668.550000px;}
.y54_c00310{bottom:677.400000px;}
.y1a_c00310{bottom:686.850000px;}
.y53_c00310{bottom:695.400000px;}
.y19_c00310{bottom:708.750000px;}
.y52_c00310{bottom:713.100000px;}
.y18_c00310{bottom:726.450000px;}
.y51_c00310{bottom:730.800000px;}
.y17_c00310{bottom:748.500000px;}
.y50_c00310{bottom:748.800000px;}
.y16_c00310{bottom:766.500000px;}
.y15_c00310{bottom:784.500000px;}
.y4f_c00310{bottom:802.200000px;}
.y4e_c00310{bottom:819.900000px;}
.y14_c00310{bottom:822.300000px;}
.y13_c00310{bottom:824.400000px;}
.y4d_c00310{bottom:837.600000px;}
.y12_c00310{bottom:842.400000px;}
.y4c_c00310{bottom:855.300000px;}
.y11_c00310{bottom:859.650000px;}
.y4b_c00310{bottom:873.000000px;}
.y10_c00310{bottom:880.950000px;}
.y4a_c00310{bottom:890.700000px;}
.yf_c00310{bottom:902.850000px;}
.y49_c00310{bottom:908.400000px;}
.ye_c00310{bottom:922.650000px;}
.y48_c00310{bottom:926.100000px;}
.yd_c00310{bottom:940.350000px;}
.y47_c00310{bottom:944.100000px;}
.yc_c00310{bottom:959.100000px;}
.y46_c00310{bottom:961.350000px;}
.yb_c00310{bottom:979.200000px;}
.y45_c00310{bottom:979.350000px;}
.y44_c00310{bottom:999.450000px;}
.ya_c00310{bottom:1001.100000px;}
.y43_c00310{bottom:1013.550000px;}
.y9_c00310{bottom:1019.100000px;}
.y42_c00310{bottom:1027.950000px;}
.y8_c00310{bottom:1040.700000px;}
.y41_c00310{bottom:1042.050000px;}
.y40_c00310{bottom:1056.450000px;}
.y7_c00310{bottom:1058.400000px;}
.y3f_c00310{bottom:1071.600000px;}
.y6_c00310{bottom:1084.650000px;}
.y3e_c00310{bottom:1084.950000px;}
.y5_c00310{bottom:1091.550000px;}
.y3d_c00310{bottom:1099.350000px;}
.y4_c00310{bottom:1112.400000px;}
.y3c_c00310{bottom:1115.250000px;}
.y3_c00310{bottom:1122.150000px;}
.y2_c00310{bottom:1137.900000px;}
.y1_c00310{bottom:1138.650000px;}
.h4_c00310{height:30.000000px;}
.ha_c00310{height:36.000000px;}
.h6_c00310{height:42.000000px;}
.h8_c00310{height:54.000000px;}
.h7_c00310{height:60.000000px;}
.h5_c00310{height:66.000000px;}
.h9_c00310{height:72.000000px;}
.h2_c00310{height:78.000000px;}
.h3_c00310{height:84.000000px;}
.h0_c00310{height:1265.039977px;}
.h1_c00310{height:1265.250000px;}
.w1_c00310{width:961.500000px;}
.w0_c00310{width:961.560058px;}
.x0_c00310{left:0.000000px;}
.x4_c00310{left:98.250000px;}
.x49_c00310{left:99.300000px;}
.x65_c00310{left:105.900000px;}
.xf_c00310{left:107.850000px;}
.x8a_c00310{left:112.950000px;}
.x82_c00310{left:114.000000px;}
.xb_c00310{left:116.100000px;}
.x31_c00310{left:117.450000px;}
.x43_c00310{left:124.950000px;}
.x32_c00310{left:127.950000px;}
.x19_c00310{left:132.450000px;}
.x13_c00310{left:134.250000px;}
.x26_c00310{left:135.750000px;}
.x3a_c00310{left:136.800000px;}
.x8d_c00310{left:138.900000px;}
.x61_c00310{left:140.100000px;}
.x7a_c00310{left:144.750000px;}
.x55_c00310{left:145.800000px;}
.x98_c00310{left:147.000000px;}
.xc_c00310{left:149.250000px;}
.x85_c00310{left:150.450000px;}
.x6e_c00310{left:151.500000px;}
.x62_c00310{left:153.000000px;}
.x91_c00310{left:154.950000px;}
.x4a_c00310{left:156.900000px;}
.x7f_c00310{left:158.100000px;}
.x94_c00310{left:160.200000px;}
.x10_c00310{left:161.850000px;}
.x1a_c00310{left:163.800000px;}
.x51_c00310{left:165.600000px;}
.x23_c00310{left:167.550000px;}
.x95_c00310{left:169.050000px;}
.x99_c00310{left:170.100000px;}
.x7d_c00310{left:171.300000px;}
.x5_c00310{left:174.150000px;}
.x74_c00310{left:175.650000px;}
.x33_c00310{left:177.300000px;}
.x3c_c00310{left:178.500000px;}
.x2b_c00310{left:181.800000px;}
.x56_c00310{left:183.600000px;}
.x66_c00310{left:184.800000px;}
.x8e_c00310{left:186.300000px;}
.x83_c00310{left:188.100000px;}
.x63_c00310{left:190.050000px;}
.x24_c00310{left:193.050000px;}
.x14_c00310{left:195.150000px;}
.x1f_c00310{left:196.950000px;}
.x92_c00310{left:198.450000px;}
.x76_c00310{left:199.500000px;}
.x59_c00310{left:200.850000px;}
.x3d_c00310{left:203.400000px;}
.x1b_c00310{left:204.450000px;}
.x67_c00310{left:206.700000px;}
.x9b_c00310{left:209.700000px;}
.x39_c00310{left:212.100000px;}
.x1c_c00310{left:214.200000px;}
.x3f_c00310{left:216.750000px;}
.x27_c00310{left:220.050000px;}
.x5a_c00310{left:222.450000px;}
.xd_c00310{left:223.500000px;}
.x4b_c00310{left:225.600000px;}
.x8f_c00310{left:228.150000px;}
.x88_c00310{left:230.250000px;}
.x6f_c00310{left:234.300000px;}
.x1d_c00310{left:235.500000px;}
.x75_c00310{left:237.900000px;}
.x77_c00310{left:239.100000px;}
.x6_c00310{left:241.050000px;}
.x44_c00310{left:242.550000px;}
.x3e_c00310{left:244.500000px;}
.x52_c00310{left:246.900000px;}
.x34_c00310{left:248.550000px;}
.x9a_c00310{left:251.850000px;}
.x2c_c00310{left:253.500000px;}
.x70_c00310{left:254.850000px;}
.x11_c00310{left:256.500000px;}
.xe_c00310{left:258.000000px;}
.x6b_c00310{left:259.950000px;}
.x45_c00310{left:262.350000px;}
.x5d_c00310{left:263.550000px;}
.x35_c00310{left:264.750000px;}
.x57_c00310{left:266.700000px;}
.x15_c00310{left:267.900000px;}
.x78_c00310{left:269.700000px;}
.x3b_c00310{left:272.550000px;}
.x5b_c00310{left:274.350000px;}
.x16_c00310{left:279.750000px;}
.x68_c00310{left:282.000000px;}
.x80_c00310{left:283.050000px;}
.x12_c00310{left:285.600000px;}
.x4c_c00310{left:287.550000px;}
.x9c_c00310{left:288.600000px;}
.x28_c00310{left:290.850000px;}
.x20_c00310{left:293.100000px;}
.x5e_c00310{left:295.200000px;}
.x71_c00310{left:296.550000px;}
.x2d_c00310{left:298.500000px;}
.x5c_c00310{left:300.600000px;}
.x7_c00310{left:302.250000px;}
.x1e_c00310{left:304.650000px;}
.x25_c00310{left:306.150000px;}
.x84_c00310{left:307.200000px;}
.x17_c00310{left:310.050000px;}
.x2e_c00310{left:311.400000px;}
.x8_c00310{left:313.050000px;}
.x36_c00310{left:318.000000px;}
.x96_c00310{left:319.650000px;}
.x46_c00310{left:321.000000px;}
.x9d_c00310{left:325.350000px;}
.x81_c00310{left:328.050000px;}
.x37_c00310{left:329.100000px;}
.x79_c00310{left:332.250000px;}
.x1_c00310{left:333.300000px;}
.x90_c00310{left:337.950000px;}
.x40_c00310{left:340.350000px;}
.x6c_c00310{left:342.000000px;}
.x3_c00310{left:343.050000px;}
.x2f_c00310{left:344.850000px;}
.x7e_c00310{left:347.850000px;}
.x69_c00310{left:349.650000px;}
.x5f_c00310{left:351.450000px;}
.x4d_c00310{left:353.100000px;}
.x53_c00310{left:354.150000px;}
.x29_c00310{left:355.650000px;}
.x47_c00310{left:358.350000px;}
.x21_c00310{left:359.400000px;}
.x86_c00310{left:362.850000px;}
.x4e_c00310{left:364.200000px;}
.x9_c00310{left:365.250000px;}
.x41_c00310{left:368.850000px;}
.x38_c00310{left:372.300000px;}
.x54_c00310{left:374.250000px;}
.x93_c00310{left:375.600000px;}
.x97_c00310{left:379.650000px;}
.x18_c00310{left:382.350000px;}
.x60_c00310{left:383.550000px;}
.x7b_c00310{left:384.750000px;}
.xa_c00310{left:387.600000px;}
.x58_c00310{left:390.150000px;}
.x87_c00310{left:391.650000px;}
.x89_c00310{left:392.700000px;}
.x9e_c00310{left:395.100000px;}
.x30_c00310{left:396.750000px;}
.x2a_c00310{left:406.050000px;}
.x22_c00310{left:408.000000px;}
.x72_c00310{left:409.950000px;}
.x42_c00310{left:412.800000px;}
.x50_c00310{left:415.050000px;}
.x64_c00310{left:416.700000px;}
.x6d_c00310{left:418.650000px;}
.x8c_c00310{left:420.600000px;}
.x48_c00310{left:421.650000px;}
.x7c_c00310{left:422.850000px;}
.x73_c00310{left:426.150000px;}
.x8b_c00310{left:429.900000px;}
.x6a_c00310{left:432.450000px;}
.x4f_c00310{left:433.650000px;}
.xc1_c00310{left:455.400000px;}
.x120_c00310{left:465.450000px;}
.xa9_c00310{left:469.200000px;}
.xc5_c00310{left:473.550000px;}
.xee_c00310{left:474.600000px;}
.x9f_c00310{left:483.900000px;}
.x132_c00310{left:490.800000px;}
.x121_c00310{left:492.450000px;}
.xaa_c00310{left:494.400000px;}
.x130_c00310{left:496.200000px;}
.xc0_c00310{left:502.500000px;}
.x125_c00310{left:504.000000px;}
.xb4_c00310{left:505.200000px;}
.xb8_c00310{left:507.750000px;}
.xe9_c00310{left:509.400000px;}
.xd3_c00310{left:512.400000px;}
.x123_c00310{left:514.050000px;}
.xca_c00310{left:515.100000px;}
.xd9_c00310{left:516.750000px;}
.x115_c00310{left:518.850000px;}
.x111_c00310{left:520.200000px;}
.xdf_c00310{left:522.150000px;}
.xa0_c00310{left:523.200000px;}
.xbb_c00310{left:524.400000px;}
.xad_c00310{left:525.900000px;}
.x117_c00310{left:527.100000px;}
.xe6_c00310{left:528.750000px;}
.x10e_c00310{left:530.250000px;}
.x12d_c00310{left:531.300000px;}
.x105_c00310{left:532.500000px;}
.xb2_c00310{left:534.000000px;}
.xe2_c00310{left:535.350000px;}
.x118_c00310{left:536.400000px;}
.xa1_c00310{left:537.600000px;}
.xfb_c00310{left:538.650000px;}
.xda_c00310{left:540.900000px;}
.xf2_c00310{left:543.750000px;}
.x10a_c00310{left:544.800000px;}
.xeb_c00310{left:546.450000px;}
.xf7_c00310{left:547.650000px;}
.x101_c00310{left:549.150000px;}
.x12e_c00310{left:551.850000px;}
.xcf_c00310{left:553.350000px;}
.xbc_c00310{left:554.700000px;}
.x12a_c00310{left:555.900000px;}
.x136_c00310{left:558.750000px;}
.xe3_c00310{left:559.800000px;}
.x133_c00310{left:562.800000px;}
.xb3_c00310{left:564.600000px;}
.xa2_c00310{left:566.400000px;}
.x12f_c00310{left:567.750000px;}
.xcb_c00310{left:570.900000px;}
.x119_c00310{left:572.100000px;}
.xc2_c00310{left:573.600000px;}
.xd4_c00310{left:577.200000px;}
.xf5_c00310{left:578.250000px;}
.xa3_c00310{left:580.800000px;}
.x10b_c00310{left:583.350000px;}
.x134_c00310{left:584.400000px;}
.xb5_c00310{left:585.600000px;}
.x131_c00310{left:587.700000px;}
.x106_c00310{left:591.600000px;}
.x11a_c00310{left:593.400000px;}
.xc6_c00310{left:594.450000px;}
.xd5_c00310{left:596.700000px;}
.xae_c00310{left:602.250000px;}
.xc7_c00310{left:603.750000px;}
.x11c_c00310{left:605.100000px;}
.xbd_c00310{left:606.150000px;}
.x128_c00310{left:607.350000px;}
.x107_c00310{left:610.350000px;}
.xfc_c00310{left:611.400000px;}
.xdb_c00310{left:612.900000px;}
.xef_c00310{left:614.250000px;}
.x13b_c00310{left:617.700000px;}
.x13c_c00310{left:618.900000px;}
.xaf_c00310{left:619.950000px;}
.xec_c00310{left:621.000000px;}
.xbe_c00310{left:622.050000px;}
.xcc_c00310{left:623.100000px;}
.xd0_c00310{left:624.600000px;}
.xc3_c00310{left:625.800000px;}
.xf8_c00310{left:627.600000px;}
.xa4_c00310{left:629.100000px;}
.xe0_c00310{left:633.000000px;}
.xfd_c00310{left:634.500000px;}
.x11b_c00310{left:635.850000px;}
.xb0_c00310{left:637.650000px;}
.xc8_c00310{left:638.700000px;}
.xb6_c00310{left:643.500000px;}
.x122_c00310{left:645.450000px;}
.x10f_c00310{left:646.650000px;}
.x12b_c00310{left:647.850000px;}
.xe4_c00310{left:649.050000px;}
.xf0_c00310{left:652.050000px;}
.xd1_c00310{left:653.100000px;}
.xbf_c00310{left:654.750000px;}
.xe1_c00310{left:656.400000px;}
.xd6_c00310{left:657.900000px;}
.x13e_c00310{left:659.100000px;}
.xf9_c00310{left:660.750000px;}
.x112_c00310{left:663.450000px;}
.xf6_c00310{left:666.450000px;}
.xfe_c00310{left:672.300000px;}
.x138_c00310{left:673.950000px;}
.xcd_c00310{left:675.300000px;}
.xb1_c00310{left:679.050000px;}
.x10c_c00310{left:680.250000px;}
.x129_c00310{left:681.750000px;}
.xa5_c00310{left:683.100000px;}
.xb7_c00310{left:684.600000px;}
.xff_c00310{left:687.750000px;}
.x108_c00310{left:693.150000px;}
.x11d_c00310{left:695.100000px;}
.x12c_c00310{left:696.450000px;}
.x13d_c00310{left:697.800000px;}
.x113_c00310{left:699.750000px;}
.x135_c00310{left:701.100000px;}
.xc4_c00310{left:703.200000px;}
.xf3_c00310{left:705.000000px;}
.x11e_c00310{left:706.650000px;}
.x102_c00310{left:708.600000px;}
.xed_c00310{left:709.800000px;}
.xdc_c00310{left:711.150000px;}
.x13f_c00310{left:712.800000px;}
.xd7_c00310{left:714.000000px;}
.xa6_c00310{left:715.800000px;}
.x126_c00310{left:717.150000px;}
.xab_c00310{left:718.650000px;}
.xb9_c00310{left:720.150000px;}
.x137_c00310{left:722.400000px;}
.x100_c00310{left:724.050000px;}
.x124_c00310{left:725.100000px;}
.xea_c00310{left:726.750000px;}
.x139_c00310{left:728.100000px;}
.xd2_c00310{left:729.750000px;}
.xe7_c00310{left:732.900000px;}
.x11f_c00310{left:735.450000px;}
.x116_c00310{left:738.150000px;}
.xa7_c00310{left:742.050000px;}
.xfa_c00310{left:745.650000px;}
.xac_c00310{left:747.450000px;}
.x103_c00310{left:748.950000px;}
.xdd_c00310{left:750.000000px;}
.x114_c00310{left:751.650000px;}
.xce_c00310{left:753.450000px;}
.xf4_c00310{left:755.100000px;}
.x10d_c00310{left:757.050000px;}
.x109_c00310{left:761.100000px;}
.x13a_c00310{left:762.300000px;}
.xd8_c00310{left:763.350000px;}
.x2_c00310{left:765.300000px;}
.xe8_c00310{left:767.100000px;}
.xe5_c00310{left:768.900000px;}
.xc9_c00310{left:770.400000px;}
.xba_c00310{left:772.050000px;}
.xde_c00310{left:773.100000px;}
.x127_c00310{left:774.750000px;}
.xa8_c00310{left:775.950000px;}
.xf1_c00310{left:777.000000px;}
.x110_c00310{left:780.150000px;}
.x104_c00310{left:781.650000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws2_c00310{word-spacing:-3.888889pt;}
.ws7_c00310{word-spacing:-1.333333pt;}
.ws8_c00310{word-spacing:0.000000pt;}
.ws3_c00310{word-spacing:1.846154pt;}
.ws6_c00310{word-spacing:2.645503pt;}
.ws5_c00310{word-spacing:4.995508pt;}
.ws1_c00310{word-spacing:6.437367pt;}
.ws4_c00310{word-spacing:52.222222pt;}
.ws0_c00310{word-spacing:301.555556pt;}
._0_c00310{width:37.333333pt;}
.fs2_c00310{font-size:26.666667pt;}
.fs8_c00310{font-size:32.000000pt;}
.fs4_c00310{font-size:37.333333pt;}
.fs6_c00310{font-size:48.000000pt;}
.fs5_c00310{font-size:53.333333pt;}
.fs3_c00310{font-size:58.666667pt;}
.fs7_c00310{font-size:64.000000pt;}
.fs0_c00310{font-size:69.333333pt;}
.fs1_c00310{font-size:74.666667pt;}
.y0_c00310{bottom:0.000000pt;}
.y70_c00310{bottom:152.666667pt;}
.y3b_c00310{bottom:165.066667pt;}
.y6f_c00310{bottom:168.666667pt;}
.y3a_c00310{bottom:177.866667pt;}
.y6e_c00310{bottom:184.666667pt;}
.y39_c00310{bottom:190.666667pt;}
.y38_c00310{bottom:203.466667pt;}
.y6d_c00310{bottom:204.000000pt;}
.y37_c00310{bottom:216.266667pt;}
.y6c_c00310{bottom:220.000000pt;}
.y36_c00310{bottom:229.733333pt;}
.y6b_c00310{bottom:236.000000pt;}
.y35_c00310{bottom:241.600000pt;}
.y6a_c00310{bottom:251.733333pt;}
.y34_c00310{bottom:254.400000pt;}
.y69_c00310{bottom:267.466667pt;}
.y68_c00310{bottom:283.466667pt;}
.y2f_c00310{bottom:290.400000pt;}
.y67_c00310{bottom:298.266667pt;}
.y2e_c00310{bottom:302.933333pt;}
.y33_c00310{bottom:304.666667pt;}
.y66_c00310{bottom:314.933333pt;}
.y2d_c00310{bottom:315.466667pt;}
.y2c_c00310{bottom:328.533333pt;}
.y65_c00310{bottom:330.666667pt;}
.y31_c00310{bottom:337.600000pt;}
.y2b_c00310{bottom:341.066667pt;}
.y64_c00310{bottom:346.400000pt;}
.y32_c00310{bottom:349.733333pt;}
.y2a_c00310{bottom:353.333333pt;}
.y30_c00310{bottom:353.866667pt;}
.y63_c00310{bottom:362.133333pt;}
.y29_c00310{bottom:366.400000pt;}
.y62_c00310{bottom:377.466667pt;}
.y28_c00310{bottom:380.800000pt;}
.y61_c00310{bottom:393.200000pt;}
.y27_c00310{bottom:396.400000pt;}
.y60_c00310{bottom:408.933333pt;}
.y26_c00310{bottom:413.333333pt;}
.y5f_c00310{bottom:424.666667pt;}
.y25_c00310{bottom:429.066667pt;}
.y5e_c00310{bottom:440.666667pt;}
.y24_c00310{bottom:448.933333pt;}
.y5d_c00310{bottom:460.533333pt;}
.y23_c00310{bottom:464.266667pt;}
.y5c_c00310{bottom:475.466667pt;}
.y22_c00310{bottom:481.866667pt;}
.y5b_c00310{bottom:491.200000pt;}
.y21_c00310{bottom:496.266667pt;}
.y5a_c00310{bottom:507.200000pt;}
.y20_c00310{bottom:512.533333pt;}
.y59_c00310{bottom:523.200000pt;}
.y1f_c00310{bottom:528.266667pt;}
.y58_c00310{bottom:538.933333pt;}
.y1e_c00310{bottom:544.000000pt;}
.y57_c00310{bottom:554.666667pt;}
.y1d_c00310{bottom:559.733333pt;}
.y56_c00310{bottom:570.666667pt;}
.y1c_c00310{bottom:575.733333pt;}
.y55_c00310{bottom:586.400000pt;}
.y1b_c00310{bottom:594.266667pt;}
.y54_c00310{bottom:602.133333pt;}
.y1a_c00310{bottom:610.533333pt;}
.y53_c00310{bottom:618.133333pt;}
.y19_c00310{bottom:630.000000pt;}
.y52_c00310{bottom:633.866667pt;}
.y18_c00310{bottom:645.733333pt;}
.y51_c00310{bottom:649.600000pt;}
.y17_c00310{bottom:665.333333pt;}
.y50_c00310{bottom:665.600000pt;}
.y16_c00310{bottom:681.333333pt;}
.y15_c00310{bottom:697.333333pt;}
.y4f_c00310{bottom:713.066667pt;}
.y4e_c00310{bottom:728.800000pt;}
.y14_c00310{bottom:730.933333pt;}
.y13_c00310{bottom:732.800000pt;}
.y4d_c00310{bottom:744.533333pt;}
.y12_c00310{bottom:748.800000pt;}
.y4c_c00310{bottom:760.266667pt;}
.y11_c00310{bottom:764.133333pt;}
.y4b_c00310{bottom:776.000000pt;}
.y10_c00310{bottom:783.066667pt;}
.y4a_c00310{bottom:791.733333pt;}
.yf_c00310{bottom:802.533333pt;}
.y49_c00310{bottom:807.466667pt;}
.ye_c00310{bottom:820.133333pt;}
.y48_c00310{bottom:823.200000pt;}
.yd_c00310{bottom:835.866667pt;}
.y47_c00310{bottom:839.200000pt;}
.yc_c00310{bottom:852.533333pt;}
.y46_c00310{bottom:854.533333pt;}
.yb_c00310{bottom:870.400000pt;}
.y45_c00310{bottom:870.533333pt;}
.y44_c00310{bottom:888.400000pt;}
.ya_c00310{bottom:889.866667pt;}
.y43_c00310{bottom:900.933333pt;}
.y9_c00310{bottom:905.866667pt;}
.y42_c00310{bottom:913.733333pt;}
.y8_c00310{bottom:925.066667pt;}
.y41_c00310{bottom:926.266667pt;}
.y40_c00310{bottom:939.066667pt;}
.y7_c00310{bottom:940.800000pt;}
.y3f_c00310{bottom:952.533333pt;}
.y6_c00310{bottom:964.133333pt;}
.y3e_c00310{bottom:964.400000pt;}
.y5_c00310{bottom:970.266667pt;}
.y3d_c00310{bottom:977.200000pt;}
.y4_c00310{bottom:988.800000pt;}
.y3c_c00310{bottom:991.333333pt;}
.y3_c00310{bottom:997.466667pt;}
.y2_c00310{bottom:1011.466667pt;}
.y1_c00310{bottom:1012.133333pt;}
.h4_c00310{height:26.666667pt;}
.ha_c00310{height:32.000000pt;}
.h6_c00310{height:37.333333pt;}
.h8_c00310{height:48.000000pt;}
.h7_c00310{height:53.333333pt;}
.h5_c00310{height:58.666667pt;}
.h9_c00310{height:64.000000pt;}
.h2_c00310{height:69.333333pt;}
.h3_c00310{height:74.666667pt;}
.h0_c00310{height:1124.479980pt;}
.h1_c00310{height:1124.666667pt;}
.w1_c00310{width:854.666667pt;}
.w0_c00310{width:854.720052pt;}
.x0_c00310{left:0.000000pt;}
.x4_c00310{left:87.333333pt;}
.x49_c00310{left:88.266667pt;}
.x65_c00310{left:94.133333pt;}
.xf_c00310{left:95.866667pt;}
.x8a_c00310{left:100.400000pt;}
.x82_c00310{left:101.333333pt;}
.xb_c00310{left:103.200000pt;}
.x31_c00310{left:104.400000pt;}
.x43_c00310{left:111.066667pt;}
.x32_c00310{left:113.733333pt;}
.x19_c00310{left:117.733333pt;}
.x13_c00310{left:119.333333pt;}
.x26_c00310{left:120.666667pt;}
.x3a_c00310{left:121.600000pt;}
.x8d_c00310{left:123.466667pt;}
.x61_c00310{left:124.533333pt;}
.x7a_c00310{left:128.666667pt;}
.x55_c00310{left:129.600000pt;}
.x98_c00310{left:130.666667pt;}
.xc_c00310{left:132.666667pt;}
.x85_c00310{left:133.733333pt;}
.x6e_c00310{left:134.666667pt;}
.x62_c00310{left:136.000000pt;}
.x91_c00310{left:137.733333pt;}
.x4a_c00310{left:139.466667pt;}
.x7f_c00310{left:140.533333pt;}
.x94_c00310{left:142.400000pt;}
.x10_c00310{left:143.866667pt;}
.x1a_c00310{left:145.600000pt;}
.x51_c00310{left:147.200000pt;}
.x23_c00310{left:148.933333pt;}
.x95_c00310{left:150.266667pt;}
.x99_c00310{left:151.200000pt;}
.x7d_c00310{left:152.266667pt;}
.x5_c00310{left:154.800000pt;}
.x74_c00310{left:156.133333pt;}
.x33_c00310{left:157.600000pt;}
.x3c_c00310{left:158.666667pt;}
.x2b_c00310{left:161.600000pt;}
.x56_c00310{left:163.200000pt;}
.x66_c00310{left:164.266667pt;}
.x8e_c00310{left:165.600000pt;}
.x83_c00310{left:167.200000pt;}
.x63_c00310{left:168.933333pt;}
.x24_c00310{left:171.600000pt;}
.x14_c00310{left:173.466667pt;}
.x1f_c00310{left:175.066667pt;}
.x92_c00310{left:176.400000pt;}
.x76_c00310{left:177.333333pt;}
.x59_c00310{left:178.533333pt;}
.x3d_c00310{left:180.800000pt;}
.x1b_c00310{left:181.733333pt;}
.x67_c00310{left:183.733333pt;}
.x9b_c00310{left:186.400000pt;}
.x39_c00310{left:188.533333pt;}
.x1c_c00310{left:190.400000pt;}
.x3f_c00310{left:192.666667pt;}
.x27_c00310{left:195.600000pt;}
.x5a_c00310{left:197.733333pt;}
.xd_c00310{left:198.666667pt;}
.x4b_c00310{left:200.533333pt;}
.x8f_c00310{left:202.800000pt;}
.x88_c00310{left:204.666667pt;}
.x6f_c00310{left:208.266667pt;}
.x1d_c00310{left:209.333333pt;}
.x75_c00310{left:211.466667pt;}
.x77_c00310{left:212.533333pt;}
.x6_c00310{left:214.266667pt;}
.x44_c00310{left:215.600000pt;}
.x3e_c00310{left:217.333333pt;}
.x52_c00310{left:219.466667pt;}
.x34_c00310{left:220.933333pt;}
.x9a_c00310{left:223.866667pt;}
.x2c_c00310{left:225.333333pt;}
.x70_c00310{left:226.533333pt;}
.x11_c00310{left:228.000000pt;}
.xe_c00310{left:229.333333pt;}
.x6b_c00310{left:231.066667pt;}
.x45_c00310{left:233.200000pt;}
.x5d_c00310{left:234.266667pt;}
.x35_c00310{left:235.333333pt;}
.x57_c00310{left:237.066667pt;}
.x15_c00310{left:238.133333pt;}
.x78_c00310{left:239.733333pt;}
.x3b_c00310{left:242.266667pt;}
.x5b_c00310{left:243.866667pt;}
.x16_c00310{left:248.666667pt;}
.x68_c00310{left:250.666667pt;}
.x80_c00310{left:251.600000pt;}
.x12_c00310{left:253.866667pt;}
.x4c_c00310{left:255.600000pt;}
.x9c_c00310{left:256.533333pt;}
.x28_c00310{left:258.533333pt;}
.x20_c00310{left:260.533333pt;}
.x5e_c00310{left:262.400000pt;}
.x71_c00310{left:263.600000pt;}
.x2d_c00310{left:265.333333pt;}
.x5c_c00310{left:267.200000pt;}
.x7_c00310{left:268.666667pt;}
.x1e_c00310{left:270.800000pt;}
.x25_c00310{left:272.133333pt;}
.x84_c00310{left:273.066667pt;}
.x17_c00310{left:275.600000pt;}
.x2e_c00310{left:276.800000pt;}
.x8_c00310{left:278.266667pt;}
.x36_c00310{left:282.666667pt;}
.x96_c00310{left:284.133333pt;}
.x46_c00310{left:285.333333pt;}
.x9d_c00310{left:289.200000pt;}
.x81_c00310{left:291.600000pt;}
.x37_c00310{left:292.533333pt;}
.x79_c00310{left:295.333333pt;}
.x1_c00310{left:296.266667pt;}
.x90_c00310{left:300.400000pt;}
.x40_c00310{left:302.533333pt;}
.x6c_c00310{left:304.000000pt;}
.x3_c00310{left:304.933333pt;}
.x2f_c00310{left:306.533333pt;}
.x7e_c00310{left:309.200000pt;}
.x69_c00310{left:310.800000pt;}
.x5f_c00310{left:312.400000pt;}
.x4d_c00310{left:313.866667pt;}
.x53_c00310{left:314.800000pt;}
.x29_c00310{left:316.133333pt;}
.x47_c00310{left:318.533333pt;}
.x21_c00310{left:319.466667pt;}
.x86_c00310{left:322.533333pt;}
.x4e_c00310{left:323.733333pt;}
.x9_c00310{left:324.666667pt;}
.x41_c00310{left:327.866667pt;}
.x38_c00310{left:330.933333pt;}
.x54_c00310{left:332.666667pt;}
.x93_c00310{left:333.866667pt;}
.x97_c00310{left:337.466667pt;}
.x18_c00310{left:339.866667pt;}
.x60_c00310{left:340.933333pt;}
.x7b_c00310{left:342.000000pt;}
.xa_c00310{left:344.533333pt;}
.x58_c00310{left:346.800000pt;}
.x87_c00310{left:348.133333pt;}
.x89_c00310{left:349.066667pt;}
.x9e_c00310{left:351.200000pt;}
.x30_c00310{left:352.666667pt;}
.x2a_c00310{left:360.933333pt;}
.x22_c00310{left:362.666667pt;}
.x72_c00310{left:364.400000pt;}
.x42_c00310{left:366.933333pt;}
.x50_c00310{left:368.933333pt;}
.x64_c00310{left:370.400000pt;}
.x6d_c00310{left:372.133333pt;}
.x8c_c00310{left:373.866667pt;}
.x48_c00310{left:374.800000pt;}
.x7c_c00310{left:375.866667pt;}
.x73_c00310{left:378.800000pt;}
.x8b_c00310{left:382.133333pt;}
.x6a_c00310{left:384.400000pt;}
.x4f_c00310{left:385.466667pt;}
.xc1_c00310{left:404.800000pt;}
.x120_c00310{left:413.733333pt;}
.xa9_c00310{left:417.066667pt;}
.xc5_c00310{left:420.933333pt;}
.xee_c00310{left:421.866667pt;}
.x9f_c00310{left:430.133333pt;}
.x132_c00310{left:436.266667pt;}
.x121_c00310{left:437.733333pt;}
.xaa_c00310{left:439.466667pt;}
.x130_c00310{left:441.066667pt;}
.xc0_c00310{left:446.666667pt;}
.x125_c00310{left:448.000000pt;}
.xb4_c00310{left:449.066667pt;}
.xb8_c00310{left:451.333333pt;}
.xe9_c00310{left:452.800000pt;}
.xd3_c00310{left:455.466667pt;}
.x123_c00310{left:456.933333pt;}
.xca_c00310{left:457.866667pt;}
.xd9_c00310{left:459.333333pt;}
.x115_c00310{left:461.200000pt;}
.x111_c00310{left:462.400000pt;}
.xdf_c00310{left:464.133333pt;}
.xa0_c00310{left:465.066667pt;}
.xbb_c00310{left:466.133333pt;}
.xad_c00310{left:467.466667pt;}
.x117_c00310{left:468.533333pt;}
.xe6_c00310{left:470.000000pt;}
.x10e_c00310{left:471.333333pt;}
.x12d_c00310{left:472.266667pt;}
.x105_c00310{left:473.333333pt;}
.xb2_c00310{left:474.666667pt;}
.xe2_c00310{left:475.866667pt;}
.x118_c00310{left:476.800000pt;}
.xa1_c00310{left:477.866667pt;}
.xfb_c00310{left:478.800000pt;}
.xda_c00310{left:480.800000pt;}
.xf2_c00310{left:483.333333pt;}
.x10a_c00310{left:484.266667pt;}
.xeb_c00310{left:485.733333pt;}
.xf7_c00310{left:486.800000pt;}
.x101_c00310{left:488.133333pt;}
.x12e_c00310{left:490.533333pt;}
.xcf_c00310{left:491.866667pt;}
.xbc_c00310{left:493.066667pt;}
.x12a_c00310{left:494.133333pt;}
.x136_c00310{left:496.666667pt;}
.xe3_c00310{left:497.600000pt;}
.x133_c00310{left:500.266667pt;}
.xb3_c00310{left:501.866667pt;}
.xa2_c00310{left:503.466667pt;}
.x12f_c00310{left:504.666667pt;}
.xcb_c00310{left:507.466667pt;}
.x119_c00310{left:508.533333pt;}
.xc2_c00310{left:509.866667pt;}
.xd4_c00310{left:513.066667pt;}
.xf5_c00310{left:514.000000pt;}
.xa3_c00310{left:516.266667pt;}
.x10b_c00310{left:518.533333pt;}
.x134_c00310{left:519.466667pt;}
.xb5_c00310{left:520.533333pt;}
.x131_c00310{left:522.400000pt;}
.x106_c00310{left:525.866667pt;}
.x11a_c00310{left:527.466667pt;}
.xc6_c00310{left:528.400000pt;}
.xd5_c00310{left:530.400000pt;}
.xae_c00310{left:535.333333pt;}
.xc7_c00310{left:536.666667pt;}
.x11c_c00310{left:537.866667pt;}
.xbd_c00310{left:538.800000pt;}
.x128_c00310{left:539.866667pt;}
.x107_c00310{left:542.533333pt;}
.xfc_c00310{left:543.466667pt;}
.xdb_c00310{left:544.800000pt;}
.xef_c00310{left:546.000000pt;}
.x13b_c00310{left:549.066667pt;}
.x13c_c00310{left:550.133333pt;}
.xaf_c00310{left:551.066667pt;}
.xec_c00310{left:552.000000pt;}
.xbe_c00310{left:552.933333pt;}
.xcc_c00310{left:553.866667pt;}
.xd0_c00310{left:555.200000pt;}
.xc3_c00310{left:556.266667pt;}
.xf8_c00310{left:557.866667pt;}
.xa4_c00310{left:559.200000pt;}
.xe0_c00310{left:562.666667pt;}
.xfd_c00310{left:564.000000pt;}
.x11b_c00310{left:565.200000pt;}
.xb0_c00310{left:566.800000pt;}
.xc8_c00310{left:567.733333pt;}
.xb6_c00310{left:572.000000pt;}
.x122_c00310{left:573.733333pt;}
.x10f_c00310{left:574.800000pt;}
.x12b_c00310{left:575.866667pt;}
.xe4_c00310{left:576.933333pt;}
.xf0_c00310{left:579.600000pt;}
.xd1_c00310{left:580.533333pt;}
.xbf_c00310{left:582.000000pt;}
.xe1_c00310{left:583.466667pt;}
.xd6_c00310{left:584.800000pt;}
.x13e_c00310{left:585.866667pt;}
.xf9_c00310{left:587.333333pt;}
.x112_c00310{left:589.733333pt;}
.xf6_c00310{left:592.400000pt;}
.xfe_c00310{left:597.600000pt;}
.x138_c00310{left:599.066667pt;}
.xcd_c00310{left:600.266667pt;}
.xb1_c00310{left:603.600000pt;}
.x10c_c00310{left:604.666667pt;}
.x129_c00310{left:606.000000pt;}
.xa5_c00310{left:607.200000pt;}
.xb7_c00310{left:608.533333pt;}
.xff_c00310{left:611.333333pt;}
.x108_c00310{left:616.133333pt;}
.x11d_c00310{left:617.866667pt;}
.x12c_c00310{left:619.066667pt;}
.x13d_c00310{left:620.266667pt;}
.x113_c00310{left:622.000000pt;}
.x135_c00310{left:623.200000pt;}
.xc4_c00310{left:625.066667pt;}
.xf3_c00310{left:626.666667pt;}
.x11e_c00310{left:628.133333pt;}
.x102_c00310{left:629.866667pt;}
.xed_c00310{left:630.933333pt;}
.xdc_c00310{left:632.133333pt;}
.x13f_c00310{left:633.600000pt;}
.xd7_c00310{left:634.666667pt;}
.xa6_c00310{left:636.266667pt;}
.x126_c00310{left:637.466667pt;}
.xab_c00310{left:638.800000pt;}
.xb9_c00310{left:640.133333pt;}
.x137_c00310{left:642.133333pt;}
.x100_c00310{left:643.600000pt;}
.x124_c00310{left:644.533333pt;}
.xea_c00310{left:646.000000pt;}
.x139_c00310{left:647.200000pt;}
.xd2_c00310{left:648.666667pt;}
.xe7_c00310{left:651.466667pt;}
.x11f_c00310{left:653.733333pt;}
.x116_c00310{left:656.133333pt;}
.xa7_c00310{left:659.600000pt;}
.xfa_c00310{left:662.800000pt;}
.xac_c00310{left:664.400000pt;}
.x103_c00310{left:665.733333pt;}
.xdd_c00310{left:666.666667pt;}
.x114_c00310{left:668.133333pt;}
.xce_c00310{left:669.733333pt;}
.xf4_c00310{left:671.200000pt;}
.x10d_c00310{left:672.933333pt;}
.x109_c00310{left:676.533333pt;}
.x13a_c00310{left:677.600000pt;}
.xd8_c00310{left:678.533333pt;}
.x2_c00310{left:680.266667pt;}
.xe8_c00310{left:681.866667pt;}
.xe5_c00310{left:683.466667pt;}
.xc9_c00310{left:684.800000pt;}
.xba_c00310{left:686.266667pt;}
.xde_c00310{left:687.200000pt;}
.x127_c00310{left:688.666667pt;}
.xa8_c00310{left:689.733333pt;}
.xf1_c00310{left:690.666667pt;}
.x110_c00310{left:693.466667pt;}
.x104_c00310{left:694.800000pt;}
}





/* 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_c00311 {
    display:none;
  }
  .loading-indicator_c00311.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00311 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_c00311 { 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_c00311" -> "#page-container .classname_c00311")
 */
.pf_c00311 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00311 { /* 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_c00311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00311 { /* 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_c00311 { /* 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_c00311 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00311 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00311 {overflow:visible;}
  }
}
.c_c00311 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00311 { /* 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_c00311:after { /* webkit #35443 */
  content: '';
}
.t_c00311:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00311 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 */
}
.__c00311 { /* 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_c00311 { /* info for Javascript */
  display:none;
}
.l_c00311 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00311 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00311 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00311: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_c00311 {
    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_c00311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00311.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_c00311 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00311;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.000000;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;}
.m84_c00311{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.med_c00311{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m106_c00311{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00311{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00311{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00311{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00311{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mad_c00311{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00311{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00311{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00311{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m89_c00311{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00311{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m79_c00311{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00311{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00311{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00311{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00311{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00311{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m115_c00311{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m27_c00311{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00311{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00311{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m73_c00311{transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00311{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m8_c00311{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00311{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m4_c00311{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00311{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.maa_c00311{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m105_c00311{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.mff_c00311{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00311{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00311{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m69_c00311{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00311{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m95_c00311{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m15_c00311{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00311{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00311{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me8_c00311{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.me1_c00311{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m18_c00311{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m104_c00311{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m78_c00311{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00311{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m116_c00311{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00311{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00311{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00311{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m39_c00311{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00311{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00311{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m88_c00311{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00311{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00311{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m64_c00311{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00311{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md2_c00311{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m52_c00311{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m30_c00311{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00311{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m82_c00311{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m21_c00311{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00311{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00311{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00311{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.me2_c00311{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00311{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00311{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m25_c00311{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11_c00311{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m33_c00311{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m42_c00311{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md3_c00311{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m23_c00311{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00311{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m19_c00311{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00311{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m17_c00311{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m29_c00311{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m37_c00311{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00311{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00311{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00311{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.md_c00311{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00311{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me0_c00311{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00311{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m87_c00311{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m71_c00311{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00311{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m53_c00311{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00311{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mf_c00311{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00311{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m55_c00311{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00311{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m83_c00311{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb_c00311{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m26_c00311{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00311{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00311{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00311{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00311{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mef_c00311{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m22_c00311{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m94_c00311{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m61_c00311{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m10_c00311{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mee_c00311{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m100_c00311{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00311{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00311{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md1_c00311{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m49_c00311{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m80_c00311{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m14_c00311{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00311{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00311{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m76_c00311{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m65_c00311{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me5_c00311{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m57_c00311{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m54_c00311{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m96_c00311{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m48_c00311{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00311{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6_c00311{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m99_c00311{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m3_c00311{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m109_c00311{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00311{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md9_c00311{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m60_c00311{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m34_c00311{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m51_c00311{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00311{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00311{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5_c00311{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00311{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m31_c00311{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m43_c00311{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00311{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md7_c00311{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m50_c00311{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m59_c00311{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00311{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00311{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m41_c00311{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00311{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00311{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m9_c00311{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me7_c00311{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m111_c00311{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00311{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m81_c00311{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m62_c00311{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m13_c00311{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00311{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m91_c00311{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00311{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m45_c00311{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7_c00311{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me_c00311{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m56_c00311{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00311{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m67_c00311{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00311{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mae_c00311{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m103_c00311{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.ma_c00311{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m68_c00311{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc_c00311{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m35_c00311{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m47_c00311{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00311{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m24_c00311{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m28_c00311{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00311{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m12_c00311{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md5_c00311{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mce_c00311{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.me3_c00311{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md0_c00311{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.maf_c00311{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mba_c00311{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.me4_c00311{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00311{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mda_c00311{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00311{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m72_c00311{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00311{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00311{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m86_c00311{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00311{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00311{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m101_c00311{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00311{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m38_c00311{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00311{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m70_c00311{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m97_c00311{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.meb_c00311{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m32_c00311{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00311{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00311{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m112_c00311{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00311{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00311{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m44_c00311{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00311{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mca_c00311{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00311{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m66_c00311{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m98_c00311{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00311{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m46_c00311{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00311{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00311{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mec_c00311{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m20_c00311{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00311{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00311{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00311{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md6_c00311{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me9_c00311{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00311{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m107_c00311{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m63_c00311{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m85_c00311{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mde_c00311{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mab_c00311{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m102_c00311{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00311{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00311{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md4_c00311{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00311{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00311{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00311{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m58_c00311{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00311{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m36_c00311{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00311{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m0_c00311{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00311{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00311{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00311{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00311{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00311{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m92_c00311{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00311{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m93_c00311{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00311{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m77_c00311{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m90_c00311{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m40_c00311{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00311{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.m113_c00311{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.me6_c00311{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m75_c00311{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m16_c00311{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00311{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m74_c00311{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00311{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00311{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md8_c00311{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00311{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.mea_c00311{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00311{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mac_c00311{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);}
.m110_c00311{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00311{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00311{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00311{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m108_c00311{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m114_c00311{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls2_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:61.426230px;}
.ls1_c00311{letter-spacing:63.000000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{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__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c00311{word-spacing:-94.426230px;}
.ws1b_c00311{word-spacing:-90.000000px;}
.ws3_c00311{word-spacing:-14.026538px;}
.ws2_c00311{word-spacing:-13.613181px;}
.ws13_c00311{word-spacing:-11.875000px;}
.ws11_c00311{word-spacing:-7.156425px;}
.ws10_c00311{word-spacing:-2.562867px;}
.ws1_c00311{word-spacing:-1.595331px;}
.ws1d_c00311{word-spacing:0.000000px;}
.ws12_c00311{word-spacing:1.388889px;}
.ws1c_c00311{word-spacing:8.648649px;}
.ws18_c00311{word-spacing:11.875000px;}
.wsa_c00311{word-spacing:13.447307px;}
.wsd_c00311{word-spacing:16.785714px;}
.ws0_c00311{word-spacing:17.817869px;}
.ws6_c00311{word-spacing:18.125000px;}
.ws8_c00311{word-spacing:19.994638px;}
.ws5_c00311{word-spacing:22.142857px;}
.ws17_c00311{word-spacing:25.714286px;}
.ws14_c00311{word-spacing:29.285714px;}
.ws7_c00311{word-spacing:32.250000px;}
.ws16_c00311{word-spacing:34.642857px;}
.ws4_c00311{word-spacing:35.833333px;}
.ws9_c00311{word-spacing:36.000000px;}
.wsb_c00311{word-spacing:39.750000px;}
.wsc_c00311{word-spacing:40.000000px;}
.wse_c00311{word-spacing:43.923664px;}
.ws1a_c00311{word-spacing:45.375000px;}
.ws15_c00311{word-spacing:55.000000px;}
.ws19_c00311{word-spacing:150.000000px;}
._8_c00311{margin-left:-63.000000px;}
._4_c00311{margin-left:-61.426230px;}
._2_c00311{width:53.428954px;}
._3_c00311{width:55.714286px;}
._6_c00311{width:59.285714px;}
._9_c00311{width:61.471850px;}
._7_c00311{width:63.196046px;}
._1_c00311{width:66.750000px;}
._0_c00311{width:80.416667px;}
._5_c00311{width:90.000000px;}
.fc0_c00311{color:transparent;}
.fs5_c00311{font-size:36.000000px;}
.fs4_c00311{font-size:54.000000px;}
.fs3_c00311{font-size:60.000000px;}
.fs2_c00311{font-size:66.000000px;}
.fs0_c00311{font-size:72.000000px;}
.fs1_c00311{font-size:84.000000px;}
.y0_c00311{bottom:0.000000px;}
.y6d_c00311{bottom:183.300000px;}
.y38_c00311{bottom:187.200000px;}
.y6c_c00311{bottom:198.000000px;}
.y37_c00311{bottom:205.200000px;}
.y6b_c00311{bottom:212.100000px;}
.y36_c00311{bottom:224.700000px;}
.y6a_c00311{bottom:226.050000px;}
.y69_c00311{bottom:240.450000px;}
.y35_c00311{bottom:244.500000px;}
.y68_c00311{bottom:254.850000px;}
.y34_c00311{bottom:257.400000px;}
.y67_c00311{bottom:269.250000px;}
.y33_c00311{bottom:272.100000px;}
.y66_c00311{bottom:283.350000px;}
.y32_c00311{bottom:285.450000px;}
.y65_c00311{bottom:297.750000px;}
.y31_c00311{bottom:300.600000px;}
.y64_c00311{bottom:312.150000px;}
.y30_c00311{bottom:315.000000px;}
.y63_c00311{bottom:326.850000px;}
.y2f_c00311{bottom:328.950000px;}
.y62_c00311{bottom:341.700000px;}
.y2e_c00311{bottom:344.100000px;}
.y2d_c00311{bottom:357.450000px;}
.y61_c00311{bottom:361.650000px;}
.y2c_c00311{bottom:372.900000px;}
.y60_c00311{bottom:379.350000px;}
.y2b_c00311{bottom:386.250000px;}
.y5f_c00311{bottom:397.050000px;}
.y2a_c00311{bottom:401.400000px;}
.y5e_c00311{bottom:414.750000px;}
.y29_c00311{bottom:415.800000px;}
.y28_c00311{bottom:429.150000px;}
.y5d_c00311{bottom:441.300000px;}
.y27_c00311{bottom:445.350000px;}
.y5c_c00311{bottom:459.000000px;}
.y26_c00311{bottom:463.200000px;}
.y5b_c00311{bottom:477.000000px;}
.y25_c00311{bottom:481.200000px;}
.y5a_c00311{bottom:495.000000px;}
.y24_c00311{bottom:499.200000px;}
.y59_c00311{bottom:512.250000px;}
.y23_c00311{bottom:517.200000px;}
.y58_c00311{bottom:529.950000px;}
.y22_c00311{bottom:534.900000px;}
.y57_c00311{bottom:552.300000px;}
.y21_c00311{bottom:556.500000px;}
.y56_c00311{bottom:569.550000px;}
.y20_c00311{bottom:574.500000px;}
.y1f_c00311{bottom:592.200000px;}
.y55_c00311{bottom:601.200000px;}
.y1e_c00311{bottom:610.200000px;}
.y54_c00311{bottom:618.900000px;}
.y1d_c00311{bottom:631.500000px;}
.y53_c00311{bottom:645.000000px;}
.y1c_c00311{bottom:649.800000px;}
.y1b_c00311{bottom:676.350000px;}
.y52_c00311{bottom:680.250000px;}
.y51_c00311{bottom:681.000000px;}
.y1a_c00311{bottom:694.350000px;}
.y50_c00311{bottom:698.700000px;}
.y19_c00311{bottom:712.050000px;}
.y4f_c00311{bottom:716.400000px;}
.y18_c00311{bottom:729.750000px;}
.y4e_c00311{bottom:734.100000px;}
.y17_c00311{bottom:751.650000px;}
.y4d_c00311{bottom:755.850000px;}
.y16_c00311{bottom:769.350000px;}
.y4c_c00311{bottom:773.550000px;}
.y15_c00311{bottom:787.350000px;}
.y4b_c00311{bottom:791.550000px;}
.y14_c00311{bottom:805.350000px;}
.y4a_c00311{bottom:808.800000px;}
.y13_c00311{bottom:823.050000px;}
.y49_c00311{bottom:826.800000px;}
.y12_c00311{bottom:840.750000px;}
.y48_c00311{bottom:844.800000px;}
.y11_c00311{bottom:858.450000px;}
.y47_c00311{bottom:862.500000px;}
.y10_c00311{bottom:876.150000px;}
.y46_c00311{bottom:880.500000px;}
.yf_c00311{bottom:893.850000px;}
.y45_c00311{bottom:898.200000px;}
.ye_c00311{bottom:911.550000px;}
.y44_c00311{bottom:916.500000px;}
.yd_c00311{bottom:933.000000px;}
.y43_c00311{bottom:933.750000px;}
.yc_c00311{bottom:951.000000px;}
.y42_c00311{bottom:951.450000px;}
.yb_c00311{bottom:968.700000px;}
.y41_c00311{bottom:969.150000px;}
.ya_c00311{bottom:986.400000px;}
.y40_c00311{bottom:986.850000px;}
.y9_c00311{bottom:1004.100000px;}
.y3f_c00311{bottom:1004.550000px;}
.y8_c00311{bottom:1021.800000px;}
.y3e_c00311{bottom:1022.550000px;}
.y7_c00311{bottom:1039.800000px;}
.y3d_c00311{bottom:1040.250000px;}
.y6_c00311{bottom:1057.500000px;}
.y3c_c00311{bottom:1057.950000px;}
.y5_c00311{bottom:1075.200000px;}
.y3b_c00311{bottom:1075.650000px;}
.y4_c00311{bottom:1092.900000px;}
.y3a_c00311{bottom:1093.650000px;}
.y3_c00311{bottom:1110.900000px;}
.y39_c00311{bottom:1111.350000px;}
.y1_c00311{bottom:1137.300000px;}
.y2_c00311{bottom:1137.600000px;}
.h7_c00311{height:36.000000px;}
.h6_c00311{height:54.000000px;}
.h5_c00311{height:60.000000px;}
.h4_c00311{height:66.000000px;}
.h2_c00311{height:72.000000px;}
.h3_c00311{height:84.000000px;}
.h1_c00311{height:1266.000000px;}
.h0_c00311{height:1266.120025px;}
.w1_c00311{width:961.500000px;}
.w0_c00311{width:961.560058px;}
.x0_c00311{left:0.000000px;}
.xa8_c00311{left:169.200000px;}
.x75_c00311{left:174.900000px;}
.x6e_c00311{left:176.400000px;}
.x1_c00311{left:180.750000px;}
.xa7_c00311{left:187.500000px;}
.x9e_c00311{left:189.000000px;}
.x94_c00311{left:190.200000px;}
.x92_c00311{left:191.250000px;}
.x6c_c00311{left:194.100000px;}
.x4f_c00311{left:195.300000px;}
.x49_c00311{left:196.350000px;}
.x34_c00311{left:197.550000px;}
.x1d_c00311{left:199.050000px;}
.xc_c00311{left:200.250000px;}
.xa2_c00311{left:201.750000px;}
.x97_c00311{left:204.450000px;}
.x96_c00311{left:205.800000px;}
.x3_c00311{left:208.800000px;}
.x7a_c00311{left:211.650000px;}
.x43_c00311{left:214.950000px;}
.x3a_c00311{left:219.000000px;}
.x22_c00311{left:220.050000px;}
.x83_c00311{left:222.600000px;}
.x2f_c00311{left:224.550000px;}
.xa3_c00311{left:225.900000px;}
.x98_c00311{left:227.100000px;}
.x73_c00311{left:228.150000px;}
.x57_c00311{left:229.650000px;}
.x35_c00311{left:232.500000px;}
.x60_c00311{left:235.500000px;}
.x8e_c00311{left:236.850000px;}
.x8a_c00311{left:240.300000px;}
.x44_c00311{left:242.250000px;}
.x6f_c00311{left:243.750000px;}
.x9f_c00311{left:244.800000px;}
.x99_c00311{left:246.600000px;}
.x23_c00311{left:248.100000px;}
.x50_c00311{left:250.350000px;}
.x4_c00311{left:251.700000px;}
.x9c_c00311{left:252.750000px;}
.xa4_c00311{left:254.250000px;}
.x61_c00311{left:255.300000px;}
.x4a_c00311{left:256.500000px;}
.x76_c00311{left:257.700000px;}
.x12_c00311{left:258.750000px;}
.x88_c00311{left:259.800000px;}
.x5a_c00311{left:261.150000px;}
.x68_c00311{left:262.950000px;}
.x93_c00311{left:264.750000px;}
.x3b_c00311{left:266.100000px;}
.x30_c00311{left:267.750000px;}
.xa1_c00311{left:268.950000px;}
.x47_c00311{left:272.100000px;}
.x17_c00311{left:273.900000px;}
.x6d_c00311{left:275.850000px;}
.x1e_c00311{left:277.200000px;}
.xd_c00311{left:278.250000px;}
.x58_c00311{left:281.850000px;}
.x69_c00311{left:283.500000px;}
.x95_c00311{left:284.700000px;}
.x5_c00311{left:287.400000px;}
.x51_c00311{left:288.450000px;}
.x3c_c00311{left:291.750000px;}
.x8b_c00311{left:293.250000px;}
.x5b_c00311{left:295.050000px;}
.x9a_c00311{left:298.050000px;}
.x13_c00311{left:299.100000px;}
.x8f_c00311{left:300.150000px;}
.x2a_c00311{left:301.200000px;}
.xa5_c00311{left:303.150000px;}
.xa9_c00311{left:304.500000px;}
.x62_c00311{left:306.450000px;}
.x6_c00311{left:308.250000px;}
.x36_c00311{left:309.600000px;}
.x45_c00311{left:310.650000px;}
.x24_c00311{left:312.150000px;}
.x18_c00311{left:313.200000px;}
.x41_c00311{left:314.400000px;}
.x5c_c00311{left:316.650000px;}
.x31_c00311{left:318.150000px;}
.x71_c00311{left:321.000000px;}
.x9d_c00311{left:325.500000px;}
.x5f_c00311{left:327.000000px;}
.x7_c00311{left:328.350000px;}
.x37_c00311{left:329.700000px;}
.x63_c00311{left:331.350000px;}
.x7c_c00311{left:334.350000px;}
.x4b_c00311{left:336.000000px;}
.x77_c00311{left:337.650000px;}
.x2b_c00311{left:341.550000px;}
.x52_c00311{left:342.750000px;}
.xa0_c00311{left:344.100000px;}
.xe_c00311{left:345.900000px;}
.x3d_c00311{left:347.550000px;}
.x25_c00311{left:349.650000px;}
.x14_c00311{left:352.050000px;}
.x74_c00311{left:355.950000px;}
.x4c_c00311{left:357.900000px;}
.x38_c00311{left:359.250000px;}
.xa6_c00311{left:360.450000px;}
.x64_c00311{left:361.650000px;}
.x85_c00311{left:362.700000px;}
.x8c_c00311{left:363.750000px;}
.x3e_c00311{left:368.100000px;}
.x19_c00311{left:370.050000px;}
.x53_c00311{left:371.850000px;}
.x6a_c00311{left:373.950000px;}
.x2c_c00311{left:376.500000px;}
.x80_c00311{left:377.850000px;}
.x8d_c00311{left:378.900000px;}
.x42_c00311{left:382.050000px;}
.x15_c00311{left:384.450000px;}
.x26_c00311{left:388.500000px;}
.x5d_c00311{left:390.750000px;}
.x78_c00311{left:391.950000px;}
.x86_c00311{left:394.350000px;}
.xf_c00311{left:397.800000px;}
.x7d_c00311{left:399.150000px;}
.x39_c00311{left:400.950000px;}
.x79_c00311{left:402.750000px;}
.x8_c00311{left:405.450000px;}
.x72_c00311{left:406.800000px;}
.x59_c00311{left:409.200000px;}
.x4d_c00311{left:411.150000px;}
.x1a_c00311{left:412.200000px;}
.x6b_c00311{left:413.250000px;}
.x81_c00311{left:414.600000px;}
.x27_c00311{left:420.150000px;}
.x10_c00311{left:422.250000px;}
.x1f_c00311{left:424.800000px;}
.x9_c00311{left:427.350000px;}
.x2_c00311{left:429.150000px;}
.x28_c00311{left:434.850000px;}
.x90_c00311{left:436.650000px;}
.x2d_c00311{left:438.450000px;}
.x54_c00311{left:440.250000px;}
.xa_c00311{left:441.450000px;}
.x65_c00311{left:442.650000px;}
.x20_c00311{left:444.300000px;}
.x32_c00311{left:450.600000px;}
.x48_c00311{left:453.150000px;}
.x3f_c00311{left:456.000000px;}
.x89_c00311{left:457.350000px;}
.x46_c00311{left:459.300000px;}
.x11_c00311{left:461.850000px;}
.x91_c00311{left:463.650000px;}
.x21_c00311{left:465.150000px;}
.x1b_c00311{left:467.250000px;}
.x9b_c00311{left:470.550000px;}
.x55_c00311{left:471.600000px;}
.x7f_c00311{left:473.100000px;}
.x16_c00311{left:477.300000px;}
.x7e_c00311{left:478.650000px;}
.x66_c00311{left:480.750000px;}
.x84_c00311{left:481.800000px;}
.x82_c00311{left:483.000000px;}
.xb_c00311{left:484.650000px;}
.x29_c00311{left:486.300000px;}
.x33_c00311{left:487.650000px;}
.x67_c00311{left:490.800000px;}
.x1c_c00311{left:492.750000px;}
.x4e_c00311{left:494.100000px;}
.x5e_c00311{left:497.700000px;}
.x2e_c00311{left:499.650000px;}
.x70_c00311{left:502.800000px;}
.x87_c00311{left:508.200000px;}
.x7b_c00311{left:509.250000px;}
.x56_c00311{left:510.450000px;}
.x40_c00311{left:511.800000px;}
.x13e_c00311{left:532.800000px;}
.x115_c00311{left:533.850000px;}
.x150_c00311{left:543.600000px;}
.x149_c00311{left:545.100000px;}
.x141_c00311{left:546.150000px;}
.xc0_c00311{left:547.650000px;}
.x12d_c00311{left:550.050000px;}
.x110_c00311{left:551.400000px;}
.xe3_c00311{left:552.600000px;}
.xc7_c00311{left:554.700000px;}
.xaa_c00311{left:555.900000px;}
.x144_c00311{left:560.550000px;}
.xf3_c00311{left:570.600000px;}
.xe4_c00311{left:572.100000px;}
.x104_c00311{left:577.650000px;}
.x13f_c00311{left:578.850000px;}
.xf8_c00311{left:580.950000px;}
.x142_c00311{left:582.150000px;}
.xc8_c00311{left:583.800000px;}
.xab_c00311{left:585.450000px;}
.xd3_c00311{left:586.800000px;}
.x121_c00311{left:588.000000px;}
.xc1_c00311{left:589.350000px;}
.xb2_c00311{left:590.550000px;}
.xf4_c00311{left:591.900000px;}
.xd8_c00311{left:594.900000px;}
.xe8_c00311{left:596.250000px;}
.x123_c00311{left:599.700000px;}
.x13c_c00311{left:600.750000px;}
.xbb_c00311{left:603.300000px;}
.xc9_c00311{left:608.250000px;}
.x13d_c00311{left:610.500000px;}
.xef_c00311{left:612.000000px;}
.x116_c00311{left:613.650000px;}
.x11d_c00311{left:615.000000px;}
.xb3_c00311{left:617.550000px;}
.xdc_c00311{left:619.350000px;}
.xce_c00311{left:622.050000px;}
.xc2_c00311{left:623.850000px;}
.xff_c00311{left:625.200000px;}
.xf9_c00311{left:626.250000px;}
.x14b_c00311{left:628.200000px;}
.x111_c00311{left:631.350000px;}
.xd4_c00311{left:634.350000px;}
.x128_c00311{left:635.400000px;}
.x117_c00311{left:638.100000px;}
.xbc_c00311{left:639.600000px;}
.xdd_c00311{left:640.950000px;}
.xb4_c00311{left:642.750000px;}
.xd9_c00311{left:644.550000px;}
.x136_c00311{left:646.350000px;}
.xe5_c00311{left:648.750000px;}
.x139_c00311{left:649.800000px;}
.x130_c00311{left:650.850000px;}
.x12e_c00311{left:651.900000px;}
.xca_c00311{left:652.950000px;}
.xeb_c00311{left:654.150000px;}
.xc3_c00311{left:655.950000px;}
.xd5_c00311{left:657.450000px;}
.xfa_c00311{left:658.950000px;}
.x101_c00311{left:660.000000px;}
.xf0_c00311{left:661.650000px;}
.xda_c00311{left:663.600000px;}
.x109_c00311{left:664.650000px;}
.xde_c00311{left:668.250000px;}
.xe6_c00311{left:670.050000px;}
.x118_c00311{left:672.300000px;}
.x10a_c00311{left:675.450000px;}
.xfb_c00311{left:677.700000px;}
.xbd_c00311{left:681.000000px;}
.x14e_c00311{left:682.200000px;}
.x124_c00311{left:684.000000px;}
.x129_c00311{left:686.400000px;}
.xac_c00311{left:689.100000px;}
.x105_c00311{left:690.300000px;}
.x145_c00311{left:692.550000px;}
.xc4_c00311{left:694.800000px;}
.xcf_c00311{left:696.150000px;}
.x14c_c00311{left:697.350000px;}
.xd6_c00311{left:702.450000px;}
.x11b_c00311{left:704.850000px;}
.xcb_c00311{left:705.900000px;}
.x112_c00311{left:707.550000px;}
.x10b_c00311{left:709.350000px;}
.x114_c00311{left:711.000000px;}
.xb5_c00311{left:712.650000px;}
.xad_c00311{left:714.300000px;}
.x12a_c00311{left:715.500000px;}
.xdf_c00311{left:717.150000px;}
.x146_c00311{left:718.650000px;}
.xfc_c00311{left:719.850000px;}
.xf5_c00311{left:723.600000px;}
.x11e_c00311{left:725.100000px;}
.x147_c00311{left:726.150000px;}
.xcc_c00311{left:727.200000px;}
.xae_c00311{left:728.400000px;}
.x10c_c00311{left:729.900000px;}
.xb6_c00311{left:731.400000px;}
.x133_c00311{left:732.750000px;}
.x12b_c00311{left:733.800000px;}
.x100_c00311{left:735.000000px;}
.xfd_c00311{left:736.350000px;}
.x140_c00311{left:740.250000px;}
.xf1_c00311{left:742.650000px;}
.xd0_c00311{left:744.750000px;}
.x148_c00311{left:746.100000px;}
.xec_c00311{left:747.450000px;}
.x11f_c00311{left:748.800000px;}
.x131_c00311{left:750.900000px;}
.xb7_c00311{left:752.250000px;}
.x14d_c00311{left:753.450000px;}
.x14a_c00311{left:755.250000px;}
.xcd_c00311{left:756.750000px;}
.x119_c00311{left:758.550000px;}
.xe0_c00311{left:759.750000px;}
.x106_c00311{left:761.250000px;}
.xdb_c00311{left:762.900000px;}
.xf2_c00311{left:763.950000px;}
.xd1_c00311{left:767.100000px;}
.x125_c00311{left:769.350000px;}
.xaf_c00311{left:770.550000px;}
.x10d_c00311{left:772.350000px;}
.xc5_c00311{left:774.300000px;}
.xed_c00311{left:776.550000px;}
.x11c_c00311{left:778.350000px;}
.xf6_c00311{left:781.950000px;}
.x12c_c00311{left:783.750000px;}
.x122_c00311{left:786.150000px;}
.x126_c00311{left:787.350000px;}
.xe1_c00311{left:789.600000px;}
.xb0_c00311{left:790.650000px;}
.xd7_c00311{left:792.150000px;}
.x13a_c00311{left:794.850000px;}
.xee_c00311{left:796.050000px;}
.x134_c00311{left:799.050000px;}
.x132_c00311{left:800.100000px;}
.xf7_c00311{left:802.050000px;}
.x113_c00311{left:803.700000px;}
.xe9_c00311{left:807.900000px;}
.x102_c00311{left:809.100000px;}
.x10e_c00311{left:811.200000px;}
.x120_c00311{left:812.250000px;}
.xb1_c00311{left:813.750000px;}
.x137_c00311{left:816.000000px;}
.xbe_c00311{left:819.150000px;}
.x107_c00311{left:820.200000px;}
.x135_c00311{left:821.700000px;}
.xd2_c00311{left:822.900000px;}
.x14f_c00311{left:824.250000px;}
.xb8_c00311{left:825.300000px;}
.x143_c00311{left:827.250000px;}
.x103_c00311{left:828.900000px;}
.xfe_c00311{left:831.000000px;}
.xe7_c00311{left:836.100000px;}
.x108_c00311{left:837.900000px;}
.x13b_c00311{left:839.850000px;}
.xb9_c00311{left:841.200000px;}
.xc6_c00311{left:842.700000px;}
.xe2_c00311{left:843.900000px;}
.x127_c00311{left:846.300000px;}
.xea_c00311{left:847.500000px;}
.x10f_c00311{left:850.500000px;}
.x151_c00311{left:852.750000px;}
.xbf_c00311{left:854.400000px;}
.x11a_c00311{left:855.450000px;}
.x138_c00311{left:857.400000px;}
.xba_c00311{left:861.000000px;}
.x12f_c00311{left:864.300000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls2_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:54.601093pt;}
.ls1_c00311{letter-spacing:56.000000pt;}
.wsf_c00311{word-spacing:-83.934426pt;}
.ws1b_c00311{word-spacing:-80.000000pt;}
.ws3_c00311{word-spacing:-12.468034pt;}
.ws2_c00311{word-spacing:-12.100605pt;}
.ws13_c00311{word-spacing:-10.555556pt;}
.ws11_c00311{word-spacing:-6.361266pt;}
.ws10_c00311{word-spacing:-2.278104pt;}
.ws1_c00311{word-spacing:-1.418072pt;}
.ws1d_c00311{word-spacing:0.000000pt;}
.ws12_c00311{word-spacing:1.234568pt;}
.ws1c_c00311{word-spacing:7.687688pt;}
.ws18_c00311{word-spacing:10.555556pt;}
.wsa_c00311{word-spacing:11.953162pt;}
.wsd_c00311{word-spacing:14.920635pt;}
.ws0_c00311{word-spacing:15.838106pt;}
.ws6_c00311{word-spacing:16.111111pt;}
.ws8_c00311{word-spacing:17.773012pt;}
.ws5_c00311{word-spacing:19.682540pt;}
.ws17_c00311{word-spacing:22.857143pt;}
.ws14_c00311{word-spacing:26.031746pt;}
.ws7_c00311{word-spacing:28.666667pt;}
.ws16_c00311{word-spacing:30.793651pt;}
.ws4_c00311{word-spacing:31.851852pt;}
.ws9_c00311{word-spacing:32.000000pt;}
.wsb_c00311{word-spacing:35.333333pt;}
.wsc_c00311{word-spacing:35.555556pt;}
.wse_c00311{word-spacing:39.043257pt;}
.ws1a_c00311{word-spacing:40.333333pt;}
.ws15_c00311{word-spacing:48.888889pt;}
.ws19_c00311{word-spacing:133.333333pt;}
._8_c00311{margin-left:-56.000000pt;}
._4_c00311{margin-left:-54.601093pt;}
._2_c00311{width:47.492404pt;}
._3_c00311{width:49.523810pt;}
._6_c00311{width:52.698413pt;}
._9_c00311{width:54.641644pt;}
._7_c00311{width:56.174263pt;}
._1_c00311{width:59.333333pt;}
._0_c00311{width:71.481481pt;}
._5_c00311{width:80.000000pt;}
.fs5_c00311{font-size:32.000000pt;}
.fs4_c00311{font-size:48.000000pt;}
.fs3_c00311{font-size:53.333333pt;}
.fs2_c00311{font-size:58.666667pt;}
.fs0_c00311{font-size:64.000000pt;}
.fs1_c00311{font-size:74.666667pt;}
.y0_c00311{bottom:0.000000pt;}
.y6d_c00311{bottom:162.933333pt;}
.y38_c00311{bottom:166.400000pt;}
.y6c_c00311{bottom:176.000000pt;}
.y37_c00311{bottom:182.400000pt;}
.y6b_c00311{bottom:188.533333pt;}
.y36_c00311{bottom:199.733333pt;}
.y6a_c00311{bottom:200.933333pt;}
.y69_c00311{bottom:213.733333pt;}
.y35_c00311{bottom:217.333333pt;}
.y68_c00311{bottom:226.533333pt;}
.y34_c00311{bottom:228.800000pt;}
.y67_c00311{bottom:239.333333pt;}
.y33_c00311{bottom:241.866667pt;}
.y66_c00311{bottom:251.866667pt;}
.y32_c00311{bottom:253.733333pt;}
.y65_c00311{bottom:264.666667pt;}
.y31_c00311{bottom:267.200000pt;}
.y64_c00311{bottom:277.466667pt;}
.y30_c00311{bottom:280.000000pt;}
.y63_c00311{bottom:290.533333pt;}
.y2f_c00311{bottom:292.400000pt;}
.y62_c00311{bottom:303.733333pt;}
.y2e_c00311{bottom:305.866667pt;}
.y2d_c00311{bottom:317.733333pt;}
.y61_c00311{bottom:321.466667pt;}
.y2c_c00311{bottom:331.466667pt;}
.y60_c00311{bottom:337.200000pt;}
.y2b_c00311{bottom:343.333333pt;}
.y5f_c00311{bottom:352.933333pt;}
.y2a_c00311{bottom:356.800000pt;}
.y5e_c00311{bottom:368.666667pt;}
.y29_c00311{bottom:369.600000pt;}
.y28_c00311{bottom:381.466667pt;}
.y5d_c00311{bottom:392.266667pt;}
.y27_c00311{bottom:395.866667pt;}
.y5c_c00311{bottom:408.000000pt;}
.y26_c00311{bottom:411.733333pt;}
.y5b_c00311{bottom:424.000000pt;}
.y25_c00311{bottom:427.733333pt;}
.y5a_c00311{bottom:440.000000pt;}
.y24_c00311{bottom:443.733333pt;}
.y59_c00311{bottom:455.333333pt;}
.y23_c00311{bottom:459.733333pt;}
.y58_c00311{bottom:471.066667pt;}
.y22_c00311{bottom:475.466667pt;}
.y57_c00311{bottom:490.933333pt;}
.y21_c00311{bottom:494.666667pt;}
.y56_c00311{bottom:506.266667pt;}
.y20_c00311{bottom:510.666667pt;}
.y1f_c00311{bottom:526.400000pt;}
.y55_c00311{bottom:534.400000pt;}
.y1e_c00311{bottom:542.400000pt;}
.y54_c00311{bottom:550.133333pt;}
.y1d_c00311{bottom:561.333333pt;}
.y53_c00311{bottom:573.333333pt;}
.y1c_c00311{bottom:577.600000pt;}
.y1b_c00311{bottom:601.200000pt;}
.y52_c00311{bottom:604.666667pt;}
.y51_c00311{bottom:605.333333pt;}
.y1a_c00311{bottom:617.200000pt;}
.y50_c00311{bottom:621.066667pt;}
.y19_c00311{bottom:632.933333pt;}
.y4f_c00311{bottom:636.800000pt;}
.y18_c00311{bottom:648.666667pt;}
.y4e_c00311{bottom:652.533333pt;}
.y17_c00311{bottom:668.133333pt;}
.y4d_c00311{bottom:671.866667pt;}
.y16_c00311{bottom:683.866667pt;}
.y4c_c00311{bottom:687.600000pt;}
.y15_c00311{bottom:699.866667pt;}
.y4b_c00311{bottom:703.600000pt;}
.y14_c00311{bottom:715.866667pt;}
.y4a_c00311{bottom:718.933333pt;}
.y13_c00311{bottom:731.600000pt;}
.y49_c00311{bottom:734.933333pt;}
.y12_c00311{bottom:747.333333pt;}
.y48_c00311{bottom:750.933333pt;}
.y11_c00311{bottom:763.066667pt;}
.y47_c00311{bottom:766.666667pt;}
.y10_c00311{bottom:778.800000pt;}
.y46_c00311{bottom:782.666667pt;}
.yf_c00311{bottom:794.533333pt;}
.y45_c00311{bottom:798.400000pt;}
.ye_c00311{bottom:810.266667pt;}
.y44_c00311{bottom:814.666667pt;}
.yd_c00311{bottom:829.333333pt;}
.y43_c00311{bottom:830.000000pt;}
.yc_c00311{bottom:845.333333pt;}
.y42_c00311{bottom:845.733333pt;}
.yb_c00311{bottom:861.066667pt;}
.y41_c00311{bottom:861.466667pt;}
.ya_c00311{bottom:876.800000pt;}
.y40_c00311{bottom:877.200000pt;}
.y9_c00311{bottom:892.533333pt;}
.y3f_c00311{bottom:892.933333pt;}
.y8_c00311{bottom:908.266667pt;}
.y3e_c00311{bottom:908.933333pt;}
.y7_c00311{bottom:924.266667pt;}
.y3d_c00311{bottom:924.666667pt;}
.y6_c00311{bottom:940.000000pt;}
.y3c_c00311{bottom:940.400000pt;}
.y5_c00311{bottom:955.733333pt;}
.y3b_c00311{bottom:956.133333pt;}
.y4_c00311{bottom:971.466667pt;}
.y3a_c00311{bottom:972.133333pt;}
.y3_c00311{bottom:987.466667pt;}
.y39_c00311{bottom:987.866667pt;}
.y1_c00311{bottom:1010.933333pt;}
.y2_c00311{bottom:1011.200000pt;}
.h7_c00311{height:32.000000pt;}
.h6_c00311{height:48.000000pt;}
.h5_c00311{height:53.333333pt;}
.h4_c00311{height:58.666667pt;}
.h2_c00311{height:64.000000pt;}
.h3_c00311{height:74.666667pt;}
.h1_c00311{height:1125.333333pt;}
.h0_c00311{height:1125.440023pt;}
.w1_c00311{width:854.666667pt;}
.w0_c00311{width:854.720052pt;}
.x0_c00311{left:0.000000pt;}
.xa8_c00311{left:150.400000pt;}
.x75_c00311{left:155.466667pt;}
.x6e_c00311{left:156.800000pt;}
.x1_c00311{left:160.666667pt;}
.xa7_c00311{left:166.666667pt;}
.x9e_c00311{left:168.000000pt;}
.x94_c00311{left:169.066667pt;}
.x92_c00311{left:170.000000pt;}
.x6c_c00311{left:172.533333pt;}
.x4f_c00311{left:173.600000pt;}
.x49_c00311{left:174.533333pt;}
.x34_c00311{left:175.600000pt;}
.x1d_c00311{left:176.933333pt;}
.xc_c00311{left:178.000000pt;}
.xa2_c00311{left:179.333333pt;}
.x97_c00311{left:181.733333pt;}
.x96_c00311{left:182.933333pt;}
.x3_c00311{left:185.600000pt;}
.x7a_c00311{left:188.133333pt;}
.x43_c00311{left:191.066667pt;}
.x3a_c00311{left:194.666667pt;}
.x22_c00311{left:195.600000pt;}
.x83_c00311{left:197.866667pt;}
.x2f_c00311{left:199.600000pt;}
.xa3_c00311{left:200.800000pt;}
.x98_c00311{left:201.866667pt;}
.x73_c00311{left:202.800000pt;}
.x57_c00311{left:204.133333pt;}
.x35_c00311{left:206.666667pt;}
.x60_c00311{left:209.333333pt;}
.x8e_c00311{left:210.533333pt;}
.x8a_c00311{left:213.600000pt;}
.x44_c00311{left:215.333333pt;}
.x6f_c00311{left:216.666667pt;}
.x9f_c00311{left:217.600000pt;}
.x99_c00311{left:219.200000pt;}
.x23_c00311{left:220.533333pt;}
.x50_c00311{left:222.533333pt;}
.x4_c00311{left:223.733333pt;}
.x9c_c00311{left:224.666667pt;}
.xa4_c00311{left:226.000000pt;}
.x61_c00311{left:226.933333pt;}
.x4a_c00311{left:228.000000pt;}
.x76_c00311{left:229.066667pt;}
.x12_c00311{left:230.000000pt;}
.x88_c00311{left:230.933333pt;}
.x5a_c00311{left:232.133333pt;}
.x68_c00311{left:233.733333pt;}
.x93_c00311{left:235.333333pt;}
.x3b_c00311{left:236.533333pt;}
.x30_c00311{left:238.000000pt;}
.xa1_c00311{left:239.066667pt;}
.x47_c00311{left:241.866667pt;}
.x17_c00311{left:243.466667pt;}
.x6d_c00311{left:245.200000pt;}
.x1e_c00311{left:246.400000pt;}
.xd_c00311{left:247.333333pt;}
.x58_c00311{left:250.533333pt;}
.x69_c00311{left:252.000000pt;}
.x95_c00311{left:253.066667pt;}
.x5_c00311{left:255.466667pt;}
.x51_c00311{left:256.400000pt;}
.x3c_c00311{left:259.333333pt;}
.x8b_c00311{left:260.666667pt;}
.x5b_c00311{left:262.266667pt;}
.x9a_c00311{left:264.933333pt;}
.x13_c00311{left:265.866667pt;}
.x8f_c00311{left:266.800000pt;}
.x2a_c00311{left:267.733333pt;}
.xa5_c00311{left:269.466667pt;}
.xa9_c00311{left:270.666667pt;}
.x62_c00311{left:272.400000pt;}
.x6_c00311{left:274.000000pt;}
.x36_c00311{left:275.200000pt;}
.x45_c00311{left:276.133333pt;}
.x24_c00311{left:277.466667pt;}
.x18_c00311{left:278.400000pt;}
.x41_c00311{left:279.466667pt;}
.x5c_c00311{left:281.466667pt;}
.x31_c00311{left:282.800000pt;}
.x71_c00311{left:285.333333pt;}
.x9d_c00311{left:289.333333pt;}
.x5f_c00311{left:290.666667pt;}
.x7_c00311{left:291.866667pt;}
.x37_c00311{left:293.066667pt;}
.x63_c00311{left:294.533333pt;}
.x7c_c00311{left:297.200000pt;}
.x4b_c00311{left:298.666667pt;}
.x77_c00311{left:300.133333pt;}
.x2b_c00311{left:303.600000pt;}
.x52_c00311{left:304.666667pt;}
.xa0_c00311{left:305.866667pt;}
.xe_c00311{left:307.466667pt;}
.x3d_c00311{left:308.933333pt;}
.x25_c00311{left:310.800000pt;}
.x14_c00311{left:312.933333pt;}
.x74_c00311{left:316.400000pt;}
.x4c_c00311{left:318.133333pt;}
.x38_c00311{left:319.333333pt;}
.xa6_c00311{left:320.400000pt;}
.x64_c00311{left:321.466667pt;}
.x85_c00311{left:322.400000pt;}
.x8c_c00311{left:323.333333pt;}
.x3e_c00311{left:327.200000pt;}
.x19_c00311{left:328.933333pt;}
.x53_c00311{left:330.533333pt;}
.x6a_c00311{left:332.400000pt;}
.x2c_c00311{left:334.666667pt;}
.x80_c00311{left:335.866667pt;}
.x8d_c00311{left:336.800000pt;}
.x42_c00311{left:339.600000pt;}
.x15_c00311{left:341.733333pt;}
.x26_c00311{left:345.333333pt;}
.x5d_c00311{left:347.333333pt;}
.x78_c00311{left:348.400000pt;}
.x86_c00311{left:350.533333pt;}
.xf_c00311{left:353.600000pt;}
.x7d_c00311{left:354.800000pt;}
.x39_c00311{left:356.400000pt;}
.x79_c00311{left:358.000000pt;}
.x8_c00311{left:360.400000pt;}
.x72_c00311{left:361.600000pt;}
.x59_c00311{left:363.733333pt;}
.x4d_c00311{left:365.466667pt;}
.x1a_c00311{left:366.400000pt;}
.x6b_c00311{left:367.333333pt;}
.x81_c00311{left:368.533333pt;}
.x27_c00311{left:373.466667pt;}
.x10_c00311{left:375.333333pt;}
.x1f_c00311{left:377.600000pt;}
.x9_c00311{left:379.866667pt;}
.x2_c00311{left:381.466667pt;}
.x28_c00311{left:386.533333pt;}
.x90_c00311{left:388.133333pt;}
.x2d_c00311{left:389.733333pt;}
.x54_c00311{left:391.333333pt;}
.xa_c00311{left:392.400000pt;}
.x65_c00311{left:393.466667pt;}
.x20_c00311{left:394.933333pt;}
.x32_c00311{left:400.533333pt;}
.x48_c00311{left:402.800000pt;}
.x3f_c00311{left:405.333333pt;}
.x89_c00311{left:406.533333pt;}
.x46_c00311{left:408.266667pt;}
.x11_c00311{left:410.533333pt;}
.x91_c00311{left:412.133333pt;}
.x21_c00311{left:413.466667pt;}
.x1b_c00311{left:415.333333pt;}
.x9b_c00311{left:418.266667pt;}
.x55_c00311{left:419.200000pt;}
.x7f_c00311{left:420.533333pt;}
.x16_c00311{left:424.266667pt;}
.x7e_c00311{left:425.466667pt;}
.x66_c00311{left:427.333333pt;}
.x84_c00311{left:428.266667pt;}
.x82_c00311{left:429.333333pt;}
.xb_c00311{left:430.800000pt;}
.x29_c00311{left:432.266667pt;}
.x33_c00311{left:433.466667pt;}
.x67_c00311{left:436.266667pt;}
.x1c_c00311{left:438.000000pt;}
.x4e_c00311{left:439.200000pt;}
.x5e_c00311{left:442.400000pt;}
.x2e_c00311{left:444.133333pt;}
.x70_c00311{left:446.933333pt;}
.x87_c00311{left:451.733333pt;}
.x7b_c00311{left:452.666667pt;}
.x56_c00311{left:453.733333pt;}
.x40_c00311{left:454.933333pt;}
.x13e_c00311{left:473.600000pt;}
.x115_c00311{left:474.533333pt;}
.x150_c00311{left:483.200000pt;}
.x149_c00311{left:484.533333pt;}
.x141_c00311{left:485.466667pt;}
.xc0_c00311{left:486.800000pt;}
.x12d_c00311{left:488.933333pt;}
.x110_c00311{left:490.133333pt;}
.xe3_c00311{left:491.200000pt;}
.xc7_c00311{left:493.066667pt;}
.xaa_c00311{left:494.133333pt;}
.x144_c00311{left:498.266667pt;}
.xf3_c00311{left:507.200000pt;}
.xe4_c00311{left:508.533333pt;}
.x104_c00311{left:513.466667pt;}
.x13f_c00311{left:514.533333pt;}
.xf8_c00311{left:516.400000pt;}
.x142_c00311{left:517.466667pt;}
.xc8_c00311{left:518.933333pt;}
.xab_c00311{left:520.400000pt;}
.xd3_c00311{left:521.600000pt;}
.x121_c00311{left:522.666667pt;}
.xc1_c00311{left:523.866667pt;}
.xb2_c00311{left:524.933333pt;}
.xf4_c00311{left:526.133333pt;}
.xd8_c00311{left:528.800000pt;}
.xe8_c00311{left:530.000000pt;}
.x123_c00311{left:533.066667pt;}
.x13c_c00311{left:534.000000pt;}
.xbb_c00311{left:536.266667pt;}
.xc9_c00311{left:540.666667pt;}
.x13d_c00311{left:542.666667pt;}
.xef_c00311{left:544.000000pt;}
.x116_c00311{left:545.466667pt;}
.x11d_c00311{left:546.666667pt;}
.xb3_c00311{left:548.933333pt;}
.xdc_c00311{left:550.533333pt;}
.xce_c00311{left:552.933333pt;}
.xc2_c00311{left:554.533333pt;}
.xff_c00311{left:555.733333pt;}
.xf9_c00311{left:556.666667pt;}
.x14b_c00311{left:558.400000pt;}
.x111_c00311{left:561.200000pt;}
.xd4_c00311{left:563.866667pt;}
.x128_c00311{left:564.800000pt;}
.x117_c00311{left:567.200000pt;}
.xbc_c00311{left:568.533333pt;}
.xdd_c00311{left:569.733333pt;}
.xb4_c00311{left:571.333333pt;}
.xd9_c00311{left:572.933333pt;}
.x136_c00311{left:574.533333pt;}
.xe5_c00311{left:576.666667pt;}
.x139_c00311{left:577.600000pt;}
.x130_c00311{left:578.533333pt;}
.x12e_c00311{left:579.466667pt;}
.xca_c00311{left:580.400000pt;}
.xeb_c00311{left:581.466667pt;}
.xc3_c00311{left:583.066667pt;}
.xd5_c00311{left:584.400000pt;}
.xfa_c00311{left:585.733333pt;}
.x101_c00311{left:586.666667pt;}
.xf0_c00311{left:588.133333pt;}
.xda_c00311{left:589.866667pt;}
.x109_c00311{left:590.800000pt;}
.xde_c00311{left:594.000000pt;}
.xe6_c00311{left:595.600000pt;}
.x118_c00311{left:597.600000pt;}
.x10a_c00311{left:600.400000pt;}
.xfb_c00311{left:602.400000pt;}
.xbd_c00311{left:605.333333pt;}
.x14e_c00311{left:606.400000pt;}
.x124_c00311{left:608.000000pt;}
.x129_c00311{left:610.133333pt;}
.xac_c00311{left:612.533333pt;}
.x105_c00311{left:613.600000pt;}
.x145_c00311{left:615.600000pt;}
.xc4_c00311{left:617.600000pt;}
.xcf_c00311{left:618.800000pt;}
.x14c_c00311{left:619.866667pt;}
.xd6_c00311{left:624.400000pt;}
.x11b_c00311{left:626.533333pt;}
.xcb_c00311{left:627.466667pt;}
.x112_c00311{left:628.933333pt;}
.x10b_c00311{left:630.533333pt;}
.x114_c00311{left:632.000000pt;}
.xb5_c00311{left:633.466667pt;}
.xad_c00311{left:634.933333pt;}
.x12a_c00311{left:636.000000pt;}
.xdf_c00311{left:637.466667pt;}
.x146_c00311{left:638.800000pt;}
.xfc_c00311{left:639.866667pt;}
.xf5_c00311{left:643.200000pt;}
.x11e_c00311{left:644.533333pt;}
.x147_c00311{left:645.466667pt;}
.xcc_c00311{left:646.400000pt;}
.xae_c00311{left:647.466667pt;}
.x10c_c00311{left:648.800000pt;}
.xb6_c00311{left:650.133333pt;}
.x133_c00311{left:651.333333pt;}
.x12b_c00311{left:652.266667pt;}
.x100_c00311{left:653.333333pt;}
.xfd_c00311{left:654.533333pt;}
.x140_c00311{left:658.000000pt;}
.xf1_c00311{left:660.133333pt;}
.xd0_c00311{left:662.000000pt;}
.x148_c00311{left:663.200000pt;}
.xec_c00311{left:664.400000pt;}
.x11f_c00311{left:665.600000pt;}
.x131_c00311{left:667.466667pt;}
.xb7_c00311{left:668.666667pt;}
.x14d_c00311{left:669.733333pt;}
.x14a_c00311{left:671.333333pt;}
.xcd_c00311{left:672.666667pt;}
.x119_c00311{left:674.266667pt;}
.xe0_c00311{left:675.333333pt;}
.x106_c00311{left:676.666667pt;}
.xdb_c00311{left:678.133333pt;}
.xf2_c00311{left:679.066667pt;}
.xd1_c00311{left:681.866667pt;}
.x125_c00311{left:683.866667pt;}
.xaf_c00311{left:684.933333pt;}
.x10d_c00311{left:686.533333pt;}
.xc5_c00311{left:688.266667pt;}
.xed_c00311{left:690.266667pt;}
.x11c_c00311{left:691.866667pt;}
.xf6_c00311{left:695.066667pt;}
.x12c_c00311{left:696.666667pt;}
.x122_c00311{left:698.800000pt;}
.x126_c00311{left:699.866667pt;}
.xe1_c00311{left:701.866667pt;}
.xb0_c00311{left:702.800000pt;}
.xd7_c00311{left:704.133333pt;}
.x13a_c00311{left:706.533333pt;}
.xee_c00311{left:707.600000pt;}
.x134_c00311{left:710.266667pt;}
.x132_c00311{left:711.200000pt;}
.xf7_c00311{left:712.933333pt;}
.x113_c00311{left:714.400000pt;}
.xe9_c00311{left:718.133333pt;}
.x102_c00311{left:719.200000pt;}
.x10e_c00311{left:721.066667pt;}
.x120_c00311{left:722.000000pt;}
.xb1_c00311{left:723.333333pt;}
.x137_c00311{left:725.333333pt;}
.xbe_c00311{left:728.133333pt;}
.x107_c00311{left:729.066667pt;}
.x135_c00311{left:730.400000pt;}
.xd2_c00311{left:731.466667pt;}
.x14f_c00311{left:732.666667pt;}
.xb8_c00311{left:733.600000pt;}
.x143_c00311{left:735.333333pt;}
.x103_c00311{left:736.800000pt;}
.xfe_c00311{left:738.666667pt;}
.xe7_c00311{left:743.200000pt;}
.x108_c00311{left:744.800000pt;}
.x13b_c00311{left:746.533333pt;}
.xb9_c00311{left:747.733333pt;}
.xc6_c00311{left:749.066667pt;}
.xe2_c00311{left:750.133333pt;}
.x127_c00311{left:752.266667pt;}
.xea_c00311{left:753.333333pt;}
.x10f_c00311{left:756.000000pt;}
.x151_c00311{left:758.000000pt;}
.xbf_c00311{left:759.466667pt;}
.x11a_c00311{left:760.400000pt;}
.x138_c00311{left:762.133333pt;}
.xba_c00311{left:765.333333pt;}
.x12f_c00311{left:768.266667pt;}
}





/* 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_c00312 {
    display:none;
  }
  .loading-indicator_c00312.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00312 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_c00312 { 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_c00312" -> "#page-container .classname_c00312")
 */
.pf_c00312 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00312 { /* 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_c00312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00312 { /* 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_c00312 { /* 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_c00312 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00312 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00312 {overflow:visible;}
  }
}
.c_c00312 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00312 { /* 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_c00312:after { /* webkit #35443 */
  content: '';
}
.t_c00312:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00312 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 */
}
.__c00312 { /* 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_c00312 { /* info for Javascript */
  display:none;
}
.l_c00312 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00312 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00312 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00312: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_c00312 {
    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_c00312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00312.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_c00312 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00312;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.000000;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;}
.mdb_c00312{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m107_c00312{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.me8_c00312{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m115_c00312{transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);}
.m116_c00312{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00312{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00312{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m117_c00312{transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);}
.m85_c00312{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00312{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00312{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00312{transform:matrix(0.084500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00312{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00312{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m97_c00312{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.me_c00312{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m32_c00312{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mef_c00312{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00312{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m20_c00312{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m93_c00312{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m23_c00312{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m102_c00312{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m67_c00312{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00312{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m111_c00312{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.me9_c00312{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m98_c00312{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m122_c00312{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00312{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mee_c00312{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00312{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m101_c00312{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mec_c00312{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00312{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00312{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00312{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00312{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m17_c00312{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m106_c00312{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md8_c00312{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m121_c00312{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.med_c00312{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m52_c00312{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00312{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mce_c00312{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00312{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m9_c00312{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m11_c00312{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m92_c00312{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m124_c00312{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m38_c00312{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m74_c00312{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md7_c00312{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00312{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m29_c00312{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00312{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00312{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m34_c00312{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m43_c00312{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00312{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00312{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00312{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m75_c00312{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md9_c00312{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00312{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00312{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m8_c00312{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00312{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00312{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00312{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00312{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m25_c00312{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m90_c00312{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00312{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m15_c00312{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m19_c00312{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00312{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m72_c00312{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me5_c00312{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00312{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7_c00312{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00312{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m91_c00312{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00312{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00312{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00312{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m87_c00312{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00312{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00312{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.me1_c00312{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00312{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.ma_c00312{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.meb_c00312{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m28_c00312{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m60_c00312{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.md3_c00312{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m36_c00312{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00312{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00312{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00312{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m77_c00312{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m70_c00312{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m22_c00312{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00312{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m24_c00312{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00312{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m56_c00312{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00312{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m88_c00312{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00312{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00312{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m31_c00312{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m120_c00312{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00312{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m41_c00312{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00312{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00312{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me0_c00312{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00312{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m73_c00312{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m45_c00312{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m86_c00312{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00312{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00312{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m84_c00312{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00312{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md4_c00312{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00312{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m104_c00312{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00312{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m105_c00312{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m47_c00312{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md2_c00312{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m99_c00312{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m71_c00312{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00312{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00312{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.me3_c00312{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m50_c00312{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m26_c00312{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mde_c00312{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m39_c00312{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m76_c00312{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m80_c00312{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00312{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00312{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00312{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00312{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00312{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m44_c00312{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00312{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m112_c00312{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00312{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00312{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00312{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00312{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m96_c00312{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m83_c00312{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m14_c00312{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m62_c00312{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00312{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m33_c00312{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00312{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00312{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m49_c00312{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00312{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00312{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb_c00312{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00312{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m69_c00312{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00312{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00312{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me2_c00312{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m58_c00312{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m78_c00312{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m53_c00312{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m27_c00312{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m16_c00312{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00312{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00312{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.md1_c00312{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2_c00312{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00312{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00312{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m123_c00312{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.md6_c00312{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m89_c00312{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m18_c00312{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.maa_c00312{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00312{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00312{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m54_c00312{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00312{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m42_c00312{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00312{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00312{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00312{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00312{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m30_c00312{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m66_c00312{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00312{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00312{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00312{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m48_c00312{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m63_c00312{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00312{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m51_c00312{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00312{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00312{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00312{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.md5_c00312{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m10_c00312{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m12_c00312{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m110_c00312{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00312{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md_c00312{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc_c00312{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m46_c00312{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me4_c00312{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m57_c00312{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00312{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m94_c00312{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m35_c00312{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00312{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m100_c00312{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mca_c00312{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00312{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00312{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00312{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00312{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m68_c00312{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00312{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m59_c00312{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00312{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m55_c00312{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00312{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.md0_c00312{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00312{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00312{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m113_c00312{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00312{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00312{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m21_c00312{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m64_c00312{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mff_c00312{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00312{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00312{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m103_c00312{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me7_c00312{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00312{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mba_c00312{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00312{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m61_c00312{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf_c00312{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00312{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m125_c00312{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m65_c00312{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m95_c00312{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.maf_c00312{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00312{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00312{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m119_c00312{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00312{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mea_c00312{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m81_c00312{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00312{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m82_c00312{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00312{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m37_c00312{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00312{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m79_c00312{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m114_c00312{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.me6_c00312{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mae_c00312{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mac_c00312{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mad_c00312{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m13_c00312{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00312{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00312{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.mab_c00312{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mda_c00312{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00312{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m40_c00312{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m108_c00312{transform:matrix(0.393500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393500,0.000000,0.000000,0.250000,0,0);}
.m109_c00312{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00312{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m118_c00312{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls1_c00312{letter-spacing:0.000000px;}
.ls0_c00312{letter-spacing:55.714286px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{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__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c00312{word-spacing:-85.714286px;}
.ws6_c00312{word-spacing:-8.333333px;}
.ws2_c00312{word-spacing:-5.476190px;}
.ws13_c00312{word-spacing:0.000000px;}
.ws7_c00312{word-spacing:1.250000px;}
.ws5_c00312{word-spacing:3.636912px;}
.ws0_c00312{word-spacing:4.928830px;}
.ws3_c00312{word-spacing:7.272727px;}
.ws12_c00312{word-spacing:8.529412px;}
.ws1_c00312{word-spacing:10.358166px;}
.ws4_c00312{word-spacing:21.000000px;}
.ws8_c00312{word-spacing:22.142857px;}
.wsd_c00312{word-spacing:25.714286px;}
.wse_c00312{word-spacing:29.285714px;}
.wsc_c00312{word-spacing:34.642857px;}
.wsa_c00312{word-spacing:35.833333px;}
.wsb_c00312{word-spacing:40.000000px;}
.ws9_c00312{word-spacing:61.250000px;}
.ws10_c00312{word-spacing:65.000000px;}
.wsf_c00312{word-spacing:73.333333px;}
._6_c00312{margin-left:-55.714286px;}
._0_c00312{width:41.703257px;}
._4_c00312{width:55.714286px;}
._1_c00312{width:59.285714px;}
._3_c00312{width:64.642857px;}
._2_c00312{width:70.000000px;}
._5_c00312{width:80.416667px;}
.fc0_c00312{color:transparent;}
.fs8_c00312{font-size:24.000000px;}
.fs7_c00312{font-size:30.000000px;}
.fs6_c00312{font-size:36.000000px;}
.fs5_c00312{font-size:48.000000px;}
.fs4_c00312{font-size:54.000000px;}
.fs2_c00312{font-size:60.000000px;}
.fs1_c00312{font-size:66.000000px;}
.fs3_c00312{font-size:72.000000px;}
.fs0_c00312{font-size:84.000000px;}
.y0_c00312{bottom:0.000000px;}
.y6b_c00312{bottom:183.150000px;}
.y35_c00312{bottom:188.550000px;}
.y6a_c00312{bottom:201.450000px;}
.y34_c00312{bottom:206.250000px;}
.y69_c00312{bottom:219.450000px;}
.y33_c00312{bottom:228.600000px;}
.y68_c00312{bottom:237.150000px;}
.y32_c00312{bottom:246.300000px;}
.y67_c00312{bottom:255.150000px;}
.y31_c00312{bottom:263.850000px;}
.y66_c00312{bottom:273.150000px;}
.y30_c00312{bottom:281.550000px;}
.y65_c00312{bottom:290.850000px;}
.y2f_c00312{bottom:303.900000px;}
.y64_c00312{bottom:308.550000px;}
.y2e_c00312{bottom:321.150000px;}
.y63_c00312{bottom:329.100000px;}
.y2d_c00312{bottom:343.500000px;}
.y62_c00312{bottom:357.150000px;}
.y2c_c00312{bottom:361.500000px;}
.y61_c00312{bottom:372.600000px;}
.y2b_c00312{bottom:379.050000px;}
.y60_c00312{bottom:386.250000px;}
.y5f_c00312{bottom:400.650000px;}
.y2a_c00312{bottom:401.400000px;}
.y5c_c00312{bottom:413.850000px;}
.y29_c00312{bottom:419.400000px;}
.y5b_c00312{bottom:429.000000px;}
.y5e_c00312{bottom:434.550000px;}
.y28_c00312{bottom:436.350000px;}
.y5a_c00312{bottom:442.350000px;}
.y5d_c00312{bottom:452.100000px;}
.y59_c00312{bottom:457.050000px;}
.y27_c00312{bottom:457.950000px;}
.y58_c00312{bottom:471.450000px;}
.y26_c00312{bottom:475.950000px;}
.y57_c00312{bottom:485.850000px;}
.y25_c00312{bottom:493.800000px;}
.y56_c00312{bottom:500.250000px;}
.y24_c00312{bottom:511.800000px;}
.y55_c00312{bottom:514.350000px;}
.y23_c00312{bottom:529.500000px;}
.y54_c00312{bottom:530.250000px;}
.y22_c00312{bottom:547.200000px;}
.y53_c00312{bottom:549.300000px;}
.y21_c00312{bottom:565.200000px;}
.y52_c00312{bottom:567.300000px;}
.y20_c00312{bottom:582.900000px;}
.y51_c00312{bottom:585.000000px;}
.y50_c00312{bottom:603.000000px;}
.y1f_c00312{bottom:605.100000px;}
.y4f_c00312{bottom:620.700000px;}
.y1e_c00312{bottom:622.800000px;}
.y1d_c00312{bottom:640.050000px;}
.y4e_c00312{bottom:642.450000px;}
.y4d_c00312{bottom:662.250000px;}
.y1c_c00312{bottom:662.400000px;}
.y4c_c00312{bottom:678.150000px;}
.y1b_c00312{bottom:684.900000px;}
.y4b_c00312{bottom:695.850000px;}
.y1a_c00312{bottom:702.600000px;}
.y4a_c00312{bottom:717.750000px;}
.y19_c00312{bottom:720.300000px;}
.y49_c00312{bottom:735.450000px;}
.y18_c00312{bottom:741.750000px;}
.y17_c00312{bottom:759.450000px;}
.y48_c00312{bottom:762.750000px;}
.y16_c00312{bottom:777.450000px;}
.y47_c00312{bottom:780.450000px;}
.y15_c00312{bottom:794.700000px;}
.y46_c00312{bottom:802.050000px;}
.y14_c00312{bottom:812.400000px;}
.y45_c00312{bottom:820.050000px;}
.y13_c00312{bottom:830.100000px;}
.y44_c00312{bottom:841.950000px;}
.y12_c00312{bottom:848.100000px;}
.y43_c00312{bottom:859.650000px;}
.y11_c00312{bottom:865.350000px;}
.y42_c00312{bottom:877.350000px;}
.y10_c00312{bottom:883.050000px;}
.y41_c00312{bottom:894.900000px;}
.yf_c00312{bottom:900.750000px;}
.y40_c00312{bottom:912.450000px;}
.ye_c00312{bottom:918.450000px;}
.y3f_c00312{bottom:930.150000px;}
.yd_c00312{bottom:936.150000px;}
.y3e_c00312{bottom:947.850000px;}
.yc_c00312{bottom:953.850000px;}
.y3d_c00312{bottom:965.850000px;}
.yb_c00312{bottom:971.550000px;}
.y3c_c00312{bottom:983.100000px;}
.ya_c00312{bottom:989.250000px;}
.y3b_c00312{bottom:1001.100000px;}
.y9_c00312{bottom:1006.950000px;}
.y8_c00312{bottom:1024.950000px;}
.y3a_c00312{bottom:1025.400000px;}
.y39_c00312{bottom:1040.100000px;}
.y7_c00312{bottom:1042.200000px;}
.y6_c00312{bottom:1059.900000px;}
.y38_c00312{bottom:1074.300000px;}
.y5_c00312{bottom:1078.200000px;}
.y37_c00312{bottom:1092.300000px;}
.y4_c00312{bottom:1098.000000px;}
.y36_c00312{bottom:1109.850000px;}
.y3_c00312{bottom:1112.700000px;}
.y2_c00312{bottom:1134.300000px;}
.y1_c00312{bottom:1136.100000px;}
.ha_c00312{height:24.000000px;}
.h9_c00312{height:30.000000px;}
.h8_c00312{height:36.000000px;}
.h7_c00312{height:48.000000px;}
.h6_c00312{height:54.000000px;}
.h4_c00312{height:60.000000px;}
.h3_c00312{height:66.000000px;}
.h5_c00312{height:72.000000px;}
.h2_c00312{height:84.000000px;}
.h0_c00312{height:1263.599944px;}
.h1_c00312{height:1263.750000px;}
.w1_c00312{width:961.500000px;}
.w0_c00312{width:961.560058px;}
.x0_c00312{left:0.000000px;}
.x92_c00312{left:68.100000px;}
.x75_c00312{left:69.150000px;}
.x13_c00312{left:70.200000px;}
.x72_c00312{left:74.850000px;}
.xd_c00312{left:88.500000px;}
.x88_c00312{left:91.800000px;}
.x19_c00312{left:92.850000px;}
.x36_c00312{left:101.400000px;}
.x3_c00312{left:102.900000px;}
.x89_c00312{left:104.700000px;}
.x57_c00312{left:110.700000px;}
.x6b_c00312{left:112.650000px;}
.x33_c00312{left:115.350000px;}
.x2d_c00312{left:116.700000px;}
.x25_c00312{left:117.900000px;}
.x1a_c00312{left:119.550000px;}
.x90_c00312{left:120.600000px;}
.x68_c00312{left:123.300000px;}
.x3b_c00312{left:124.650000px;}
.xe_c00312{left:126.000000px;}
.x22_c00312{left:127.950000px;}
.x4c_c00312{left:130.500000px;}
.x80_c00312{left:132.150000px;}
.x47_c00312{left:133.500000px;}
.x98_c00312{left:136.800000px;}
.x26_c00312{left:139.800000px;}
.x23_c00312{left:142.050000px;}
.x2e_c00312{left:144.450000px;}
.x81_c00312{left:145.500000px;}
.x66_c00312{left:147.600000px;}
.x34_c00312{left:149.250000px;}
.x7d_c00312{left:150.300000px;}
.x70_c00312{left:151.500000px;}
.x61_c00312{left:153.750000px;}
.x73_c00312{left:155.100000px;}
.x51_c00312{left:156.600000px;}
.x1b_c00312{left:157.650000px;}
.xf_c00312{left:159.150000px;}
.x76_c00312{left:160.350000px;}
.x14_c00312{left:162.000000px;}
.x4f_c00312{left:164.400000px;}
.x4_c00312{left:165.900000px;}
.x37_c00312{left:169.050000px;}
.x1c_c00312{left:171.300000px;}
.x8d_c00312{left:172.800000px;}
.x62_c00312{left:173.850000px;}
.x27_c00312{left:175.800000px;}
.x3c_c00312{left:177.900000px;}
.x2f_c00312{left:179.400000px;}
.x69_c00312{left:181.650000px;}
.x58_c00312{left:183.000000px;}
.x5_c00312{left:184.950000px;}
.x43_c00312{left:186.750000px;}
.x8f_c00312{left:187.950000px;}
.x48_c00312{left:190.350000px;}
.x15_c00312{left:191.850000px;}
.x6c_c00312{left:194.400000px;}
.x83_c00312{left:195.750000px;}
.x50_c00312{left:199.350000px;}
.x7a_c00312{left:201.000000px;}
.x1d_c00312{left:204.450000px;}
.x87_c00312{left:208.050000px;}
.x63_c00312{left:210.150000px;}
.x5a_c00312{left:211.350000px;}
.x84_c00312{left:213.750000px;}
.x6_c00312{left:215.550000px;}
.x71_c00312{left:217.050000px;}
.x77_c00312{left:220.350000px;}
.x24_c00312{left:221.550000px;}
.x16_c00312{left:222.750000px;}
.x10_c00312{left:227.850000px;}
.x40_c00312{left:230.700000px;}
.x55_c00312{left:232.650000px;}
.x52_c00312{left:234.000000px;}
.x5b_c00312{left:235.500000px;}
.x35_c00312{left:239.550000px;}
.x28_c00312{left:240.600000px;}
.x38_c00312{left:241.650000px;}
.x44_c00312{left:243.900000px;}
.x82_c00312{left:245.550000px;}
.x56_c00312{left:246.750000px;}
.x30_c00312{left:248.550000px;}
.x8e_c00312{left:249.900000px;}
.x1e_c00312{left:252.750000px;}
.x99_c00312{left:254.250000px;}
.x7b_c00312{left:256.500000px;}
.x7_c00312{left:258.000000px;}
.x31_c00312{left:259.350000px;}
.x6a_c00312{left:262.950000px;}
.x64_c00312{left:264.450000px;}
.x6e_c00312{left:265.800000px;}
.x29_c00312{left:267.600000px;}
.x7e_c00312{left:269.400000px;}
.x53_c00312{left:270.750000px;}
.x8_c00312{left:272.400000px;}
.x41_c00312{left:274.950000px;}
.x1f_c00312{left:276.150000px;}
.x8b_c00312{left:278.700000px;}
.x78_c00312{left:280.050000px;}
.x4d_c00312{left:284.100000px;}
.x85_c00312{left:287.850000px;}
.x74_c00312{left:289.800000px;}
.x17_c00312{left:292.650000px;}
.x49_c00312{left:295.050000px;}
.x5d_c00312{left:296.700000px;}
.x32_c00312{left:298.200000px;}
.x9a_c00312{left:299.250000px;}
.x59_c00312{left:300.450000px;}
.x93_c00312{left:302.400000px;}
.x9_c00312{left:305.550000px;}
.x65_c00312{left:310.650000px;}
.x39_c00312{left:312.600000px;}
.x2a_c00312{left:313.650000px;}
.x86_c00312{left:316.200000px;}
.x3d_c00312{left:317.550000px;}
.x4a_c00312{left:318.750000px;}
.x94_c00312{left:320.400000px;}
.x1_c00312{left:321.900000px;}
.x91_c00312{left:325.350000px;}
.x67_c00312{left:329.850000px;}
.x2b_c00312{left:331.650000px;}
.x4e_c00312{left:333.000000px;}
.xa_c00312{left:334.650000px;}
.x3e_c00312{left:336.600000px;}
.x11_c00312{left:337.650000px;}
.x96_c00312{left:338.700000px;}
.x18_c00312{left:339.750000px;}
.x5e_c00312{left:341.700000px;}
.x6f_c00312{left:342.900000px;}
.x20_c00312{left:348.900000px;}
.x45_c00312{left:351.150000px;}
.x5f_c00312{left:354.000000px;}
.x6d_c00312{left:358.200000px;}
.xb_c00312{left:361.350000px;}
.x21_c00312{left:363.000000px;}
.x5c_c00312{left:364.950000px;}
.x12_c00312{left:367.200000px;}
.x2c_c00312{left:368.700000px;}
.x3a_c00312{left:370.650000px;}
.x97_c00312{left:371.850000px;}
.x42_c00312{left:374.250000px;}
.x4b_c00312{left:375.600000px;}
.x95_c00312{left:377.100000px;}
.x7c_c00312{left:378.150000px;}
.x46_c00312{left:379.650000px;}
.x3f_c00312{left:387.750000px;}
.x54_c00312{left:389.550000px;}
.x9b_c00312{left:391.350000px;}
.x79_c00312{left:392.400000px;}
.xc_c00312{left:395.250000px;}
.x8a_c00312{left:397.050000px;}
.x8c_c00312{left:399.300000px;}
.x7f_c00312{left:400.350000px;}
.x60_c00312{left:407.250000px;}
.xaf_c00312{left:430.200000px;}
.x11c_c00312{left:435.750000px;}
.xa5_c00312{left:444.900000px;}
.x10a_c00312{left:446.550000px;}
.x9c_c00312{left:448.200000px;}
.x126_c00312{left:449.400000px;}
.xba_c00312{left:459.000000px;}
.xdf_c00312{left:464.700000px;}
.xdc_c00312{left:466.650000px;}
.x119_c00312{left:469.350000px;}
.x132_c00312{left:470.550000px;}
.xce_c00312{left:473.550000px;}
.xea_c00312{left:474.600000px;}
.xf3_c00312{left:476.250000px;}
.x120_c00312{left:477.300000px;}
.x12b_c00312{left:478.800000px;}
.x9d_c00312{left:479.850000px;}
.x114_c00312{left:481.500000px;}
.xd3_c00312{left:482.550000px;}
.xcb_c00312{left:486.000000px;}
.x12d_c00312{left:487.500000px;}
.xb0_c00312{left:488.550000px;}
.xed_c00312{left:490.950000px;}
.x9e_c00312{left:493.950000px;}
.x10c_c00312{left:498.300000px;}
.xf0_c00312{left:499.650000px;}
.xbb_c00312{left:501.450000px;}
.xab_c00312{left:504.000000px;}
.x100_c00312{left:505.650000px;}
.x12c_c00312{left:507.300000px;}
.xe0_c00312{left:510.450000px;}
.x129_c00312{left:511.800000px;}
.xf4_c00312{left:514.350000px;}
.xc4_c00312{left:515.850000px;}
.xeb_c00312{left:517.800000px;}
.x9f_c00312{left:519.150000px;}
.xdd_c00312{left:522.450000px;}
.xbc_c00312{left:524.850000px;}
.xe1_c00312{left:527.400000px;}
.x133_c00312{left:528.450000px;}
.x11f_c00312{left:529.500000px;}
.xd4_c00312{left:530.850000px;}
.xcf_c00312{left:536.550000px;}
.x105_c00312{left:539.250000px;}
.x12e_c00312{left:540.450000px;}
.x101_c00312{left:541.650000px;}
.xec_c00312{left:544.500000px;}
.xf7_c00312{left:546.750000px;}
.x10f_c00312{left:547.950000px;}
.x131_c00312{left:550.800000px;}
.xb1_c00312{left:552.300000px;}
.x11a_c00312{left:553.350000px;}
.xa0_c00312{left:556.650000px;}
.xf1_c00312{left:559.500000px;}
.xbd_c00312{left:560.850000px;}
.xe2_c00312{left:562.650000px;}
.xc5_c00312{left:564.150000px;}
.xee_c00312{left:566.400000px;}
.xd5_c00312{left:567.900000px;}
.xcc_c00312{left:569.100000px;}
.xd8_c00312{left:571.350000px;}
.xf8_c00312{left:572.700000px;}
.xd0_c00312{left:575.100000px;}
.x102_c00312{left:577.650000px;}
.xf2_c00312{left:581.100000px;}
.x127_c00312{left:582.900000px;}
.xbe_c00312{left:585.000000px;}
.xe5_c00312{left:586.800000px;}
.xd6_c00312{left:588.450000px;}
.x11b_c00312{left:589.800000px;}
.xa6_c00312{left:591.750000px;}
.x110_c00312{left:594.450000px;}
.xd9_c00312{left:595.500000px;}
.xfb_c00312{left:597.900000px;}
.xb2_c00312{left:600.600000px;}
.x103_c00312{left:602.550000px;}
.xa1_c00312{left:604.500000px;}
.xfd_c00312{left:605.700000px;}
.xc6_c00312{left:607.050000px;}
.xbf_c00312{left:608.400000px;}
.xa7_c00312{left:610.500000px;}
.xf5_c00312{left:612.600000px;}
.x11e_c00312{left:616.800000px;}
.x115_c00312{left:619.800000px;}
.xf9_c00312{left:621.600000px;}
.x121_c00312{left:625.050000px;}
.x123_c00312{left:626.100000px;}
.xc7_c00312{left:628.650000px;}
.xfe_c00312{left:629.850000px;}
.xe8_c00312{left:631.050000px;}
.x124_c00312{left:632.250000px;}
.xe6_c00312{left:633.900000px;}
.xd7_c00312{left:635.250000px;}
.xc0_c00312{left:637.500000px;}
.x112_c00312{left:639.150000px;}
.x116_c00312{left:642.000000px;}
.xef_c00312{left:644.850000px;}
.x122_c00312{left:646.350000px;}
.x12f_c00312{left:650.400000px;}
.xda_c00312{left:652.500000px;}
.xb3_c00312{left:654.300000px;}
.xd1_c00312{left:655.500000px;}
.xe9_c00312{left:657.000000px;}
.xa8_c00312{left:659.100000px;}
.xfc_c00312{left:660.150000px;}
.xb4_c00312{left:661.800000px;}
.xa2_c00312{left:662.850000px;}
.xc1_c00312{left:666.000000px;}
.xb5_c00312{left:669.000000px;}
.xc8_c00312{left:670.350000px;}
.xa9_c00312{left:672.000000px;}
.xff_c00312{left:675.150000px;}
.xb6_c00312{left:676.200000px;}
.x107_c00312{left:679.350000px;}
.xf6_c00312{left:680.700000px;}
.x10b_c00312{left:682.650000px;}
.xde_c00312{left:683.700000px;}
.xc9_c00312{left:685.500000px;}
.xac_c00312{left:687.300000px;}
.x10d_c00312{left:688.800000px;}
.xcd_c00312{left:690.000000px;}
.xdb_c00312{left:692.400000px;}
.x128_c00312{left:693.450000px;}
.x113_c00312{left:694.800000px;}
.xb7_c00312{left:696.000000px;}
.x108_c00312{left:697.200000px;}
.x104_c00312{left:698.550000px;}
.xc2_c00312{left:704.850000px;}
.xa3_c00312{left:709.350000px;}
.xaa_c00312{left:710.850000px;}
.xd2_c00312{left:715.950000px;}
.x10e_c00312{left:717.150000px;}
.xad_c00312{left:718.200000px;}
.xca_c00312{left:719.400000px;}
.x11d_c00312{left:722.700000px;}
.xfa_c00312{left:723.900000px;}
.xb8_c00312{left:725.100000px;}
.xe3_c00312{left:726.450000px;}
.xa4_c00312{left:727.650000px;}
.x125_c00312{left:729.150000px;}
.x2_c00312{left:731.550000px;}
.xe7_c00312{left:732.600000px;}
.xc3_c00312{left:735.150000px;}
.x106_c00312{left:737.250000px;}
.x130_c00312{left:742.650000px;}
.x109_c00312{left:744.300000px;}
.x12a_c00312{left:746.700000px;}
.xae_c00312{left:751.650000px;}
.xb9_c00312{left:753.600000px;}
.x111_c00312{left:755.400000px;}
.x118_c00312{left:761.700000px;}
.x117_c00312{left:762.750000px;}
.xe4_c00312{left:773.250000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls1_c00312{letter-spacing:0.000000pt;}
.ls0_c00312{letter-spacing:49.523810pt;}
.ws11_c00312{word-spacing:-76.190476pt;}
.ws6_c00312{word-spacing:-7.407407pt;}
.ws2_c00312{word-spacing:-4.867725pt;}
.ws13_c00312{word-spacing:0.000000pt;}
.ws7_c00312{word-spacing:1.111111pt;}
.ws5_c00312{word-spacing:3.232811pt;}
.ws0_c00312{word-spacing:4.381182pt;}
.ws3_c00312{word-spacing:6.464646pt;}
.ws12_c00312{word-spacing:7.581699pt;}
.ws1_c00312{word-spacing:9.207259pt;}
.ws4_c00312{word-spacing:18.666667pt;}
.ws8_c00312{word-spacing:19.682540pt;}
.wsd_c00312{word-spacing:22.857143pt;}
.wse_c00312{word-spacing:26.031746pt;}
.wsc_c00312{word-spacing:30.793651pt;}
.wsa_c00312{word-spacing:31.851852pt;}
.wsb_c00312{word-spacing:35.555556pt;}
.ws9_c00312{word-spacing:54.444444pt;}
.ws10_c00312{word-spacing:57.777778pt;}
.wsf_c00312{word-spacing:65.185185pt;}
._6_c00312{margin-left:-49.523810pt;}
._0_c00312{width:37.069562pt;}
._4_c00312{width:49.523810pt;}
._1_c00312{width:52.698413pt;}
._3_c00312{width:57.460317pt;}
._2_c00312{width:62.222222pt;}
._5_c00312{width:71.481481pt;}
.fs8_c00312{font-size:21.333333pt;}
.fs7_c00312{font-size:26.666667pt;}
.fs6_c00312{font-size:32.000000pt;}
.fs5_c00312{font-size:42.666667pt;}
.fs4_c00312{font-size:48.000000pt;}
.fs2_c00312{font-size:53.333333pt;}
.fs1_c00312{font-size:58.666667pt;}
.fs3_c00312{font-size:64.000000pt;}
.fs0_c00312{font-size:74.666667pt;}
.y0_c00312{bottom:0.000000pt;}
.y6b_c00312{bottom:162.800000pt;}
.y35_c00312{bottom:167.600000pt;}
.y6a_c00312{bottom:179.066667pt;}
.y34_c00312{bottom:183.333333pt;}
.y69_c00312{bottom:195.066667pt;}
.y33_c00312{bottom:203.200000pt;}
.y68_c00312{bottom:210.800000pt;}
.y32_c00312{bottom:218.933333pt;}
.y67_c00312{bottom:226.800000pt;}
.y31_c00312{bottom:234.533333pt;}
.y66_c00312{bottom:242.800000pt;}
.y30_c00312{bottom:250.266667pt;}
.y65_c00312{bottom:258.533333pt;}
.y2f_c00312{bottom:270.133333pt;}
.y64_c00312{bottom:274.266667pt;}
.y2e_c00312{bottom:285.466667pt;}
.y63_c00312{bottom:292.533333pt;}
.y2d_c00312{bottom:305.333333pt;}
.y62_c00312{bottom:317.466667pt;}
.y2c_c00312{bottom:321.333333pt;}
.y61_c00312{bottom:331.200000pt;}
.y2b_c00312{bottom:336.933333pt;}
.y60_c00312{bottom:343.333333pt;}
.y5f_c00312{bottom:356.133333pt;}
.y2a_c00312{bottom:356.800000pt;}
.y5c_c00312{bottom:367.866667pt;}
.y29_c00312{bottom:372.800000pt;}
.y5b_c00312{bottom:381.333333pt;}
.y5e_c00312{bottom:386.266667pt;}
.y28_c00312{bottom:387.866667pt;}
.y5a_c00312{bottom:393.200000pt;}
.y5d_c00312{bottom:401.866667pt;}
.y59_c00312{bottom:406.266667pt;}
.y27_c00312{bottom:407.066667pt;}
.y58_c00312{bottom:419.066667pt;}
.y26_c00312{bottom:423.066667pt;}
.y57_c00312{bottom:431.866667pt;}
.y25_c00312{bottom:438.933333pt;}
.y56_c00312{bottom:444.666667pt;}
.y24_c00312{bottom:454.933333pt;}
.y55_c00312{bottom:457.200000pt;}
.y23_c00312{bottom:470.666667pt;}
.y54_c00312{bottom:471.333333pt;}
.y22_c00312{bottom:486.400000pt;}
.y53_c00312{bottom:488.266667pt;}
.y21_c00312{bottom:502.400000pt;}
.y52_c00312{bottom:504.266667pt;}
.y20_c00312{bottom:518.133333pt;}
.y51_c00312{bottom:520.000000pt;}
.y50_c00312{bottom:536.000000pt;}
.y1f_c00312{bottom:537.866667pt;}
.y4f_c00312{bottom:551.733333pt;}
.y1e_c00312{bottom:553.600000pt;}
.y1d_c00312{bottom:568.933333pt;}
.y4e_c00312{bottom:571.066667pt;}
.y4d_c00312{bottom:588.666667pt;}
.y1c_c00312{bottom:588.800000pt;}
.y4c_c00312{bottom:602.800000pt;}
.y1b_c00312{bottom:608.800000pt;}
.y4b_c00312{bottom:618.533333pt;}
.y1a_c00312{bottom:624.533333pt;}
.y4a_c00312{bottom:638.000000pt;}
.y19_c00312{bottom:640.266667pt;}
.y49_c00312{bottom:653.733333pt;}
.y18_c00312{bottom:659.333333pt;}
.y17_c00312{bottom:675.066667pt;}
.y48_c00312{bottom:678.000000pt;}
.y16_c00312{bottom:691.066667pt;}
.y47_c00312{bottom:693.733333pt;}
.y15_c00312{bottom:706.400000pt;}
.y46_c00312{bottom:712.933333pt;}
.y14_c00312{bottom:722.133333pt;}
.y45_c00312{bottom:728.933333pt;}
.y13_c00312{bottom:737.866667pt;}
.y44_c00312{bottom:748.400000pt;}
.y12_c00312{bottom:753.866667pt;}
.y43_c00312{bottom:764.133333pt;}
.y11_c00312{bottom:769.200000pt;}
.y42_c00312{bottom:779.866667pt;}
.y10_c00312{bottom:784.933333pt;}
.y41_c00312{bottom:795.466667pt;}
.yf_c00312{bottom:800.666667pt;}
.y40_c00312{bottom:811.066667pt;}
.ye_c00312{bottom:816.400000pt;}
.y3f_c00312{bottom:826.800000pt;}
.yd_c00312{bottom:832.133333pt;}
.y3e_c00312{bottom:842.533333pt;}
.yc_c00312{bottom:847.866667pt;}
.y3d_c00312{bottom:858.533333pt;}
.yb_c00312{bottom:863.600000pt;}
.y3c_c00312{bottom:873.866667pt;}
.ya_c00312{bottom:879.333333pt;}
.y3b_c00312{bottom:889.866667pt;}
.y9_c00312{bottom:895.066667pt;}
.y8_c00312{bottom:911.066667pt;}
.y3a_c00312{bottom:911.466667pt;}
.y39_c00312{bottom:924.533333pt;}
.y7_c00312{bottom:926.400000pt;}
.y6_c00312{bottom:942.133333pt;}
.y38_c00312{bottom:954.933333pt;}
.y5_c00312{bottom:958.400000pt;}
.y37_c00312{bottom:970.933333pt;}
.y4_c00312{bottom:976.000000pt;}
.y36_c00312{bottom:986.533333pt;}
.y3_c00312{bottom:989.066667pt;}
.y2_c00312{bottom:1008.266667pt;}
.y1_c00312{bottom:1009.866667pt;}
.ha_c00312{height:21.333333pt;}
.h9_c00312{height:26.666667pt;}
.h8_c00312{height:32.000000pt;}
.h7_c00312{height:42.666667pt;}
.h6_c00312{height:48.000000pt;}
.h4_c00312{height:53.333333pt;}
.h3_c00312{height:58.666667pt;}
.h5_c00312{height:64.000000pt;}
.h2_c00312{height:74.666667pt;}
.h0_c00312{height:1123.199951pt;}
.h1_c00312{height:1123.333333pt;}
.w1_c00312{width:854.666667pt;}
.w0_c00312{width:854.720052pt;}
.x0_c00312{left:0.000000pt;}
.x92_c00312{left:60.533333pt;}
.x75_c00312{left:61.466667pt;}
.x13_c00312{left:62.400000pt;}
.x72_c00312{left:66.533333pt;}
.xd_c00312{left:78.666667pt;}
.x88_c00312{left:81.600000pt;}
.x19_c00312{left:82.533333pt;}
.x36_c00312{left:90.133333pt;}
.x3_c00312{left:91.466667pt;}
.x89_c00312{left:93.066667pt;}
.x57_c00312{left:98.400000pt;}
.x6b_c00312{left:100.133333pt;}
.x33_c00312{left:102.533333pt;}
.x2d_c00312{left:103.733333pt;}
.x25_c00312{left:104.800000pt;}
.x1a_c00312{left:106.266667pt;}
.x90_c00312{left:107.200000pt;}
.x68_c00312{left:109.600000pt;}
.x3b_c00312{left:110.800000pt;}
.xe_c00312{left:112.000000pt;}
.x22_c00312{left:113.733333pt;}
.x4c_c00312{left:116.000000pt;}
.x80_c00312{left:117.466667pt;}
.x47_c00312{left:118.666667pt;}
.x98_c00312{left:121.600000pt;}
.x26_c00312{left:124.266667pt;}
.x23_c00312{left:126.266667pt;}
.x2e_c00312{left:128.400000pt;}
.x81_c00312{left:129.333333pt;}
.x66_c00312{left:131.200000pt;}
.x34_c00312{left:132.666667pt;}
.x7d_c00312{left:133.600000pt;}
.x70_c00312{left:134.666667pt;}
.x61_c00312{left:136.666667pt;}
.x73_c00312{left:137.866667pt;}
.x51_c00312{left:139.200000pt;}
.x1b_c00312{left:140.133333pt;}
.xf_c00312{left:141.466667pt;}
.x76_c00312{left:142.533333pt;}
.x14_c00312{left:144.000000pt;}
.x4f_c00312{left:146.133333pt;}
.x4_c00312{left:147.466667pt;}
.x37_c00312{left:150.266667pt;}
.x1c_c00312{left:152.266667pt;}
.x8d_c00312{left:153.600000pt;}
.x62_c00312{left:154.533333pt;}
.x27_c00312{left:156.266667pt;}
.x3c_c00312{left:158.133333pt;}
.x2f_c00312{left:159.466667pt;}
.x69_c00312{left:161.466667pt;}
.x58_c00312{left:162.666667pt;}
.x5_c00312{left:164.400000pt;}
.x43_c00312{left:166.000000pt;}
.x8f_c00312{left:167.066667pt;}
.x48_c00312{left:169.200000pt;}
.x15_c00312{left:170.533333pt;}
.x6c_c00312{left:172.800000pt;}
.x83_c00312{left:174.000000pt;}
.x50_c00312{left:177.200000pt;}
.x7a_c00312{left:178.666667pt;}
.x1d_c00312{left:181.733333pt;}
.x87_c00312{left:184.933333pt;}
.x63_c00312{left:186.800000pt;}
.x5a_c00312{left:187.866667pt;}
.x84_c00312{left:190.000000pt;}
.x6_c00312{left:191.600000pt;}
.x71_c00312{left:192.933333pt;}
.x77_c00312{left:195.866667pt;}
.x24_c00312{left:196.933333pt;}
.x16_c00312{left:198.000000pt;}
.x10_c00312{left:202.533333pt;}
.x40_c00312{left:205.066667pt;}
.x55_c00312{left:206.800000pt;}
.x52_c00312{left:208.000000pt;}
.x5b_c00312{left:209.333333pt;}
.x35_c00312{left:212.933333pt;}
.x28_c00312{left:213.866667pt;}
.x38_c00312{left:214.800000pt;}
.x44_c00312{left:216.800000pt;}
.x82_c00312{left:218.266667pt;}
.x56_c00312{left:219.333333pt;}
.x30_c00312{left:220.933333pt;}
.x8e_c00312{left:222.133333pt;}
.x1e_c00312{left:224.666667pt;}
.x99_c00312{left:226.000000pt;}
.x7b_c00312{left:228.000000pt;}
.x7_c00312{left:229.333333pt;}
.x31_c00312{left:230.533333pt;}
.x6a_c00312{left:233.733333pt;}
.x64_c00312{left:235.066667pt;}
.x6e_c00312{left:236.266667pt;}
.x29_c00312{left:237.866667pt;}
.x7e_c00312{left:239.466667pt;}
.x53_c00312{left:240.666667pt;}
.x8_c00312{left:242.133333pt;}
.x41_c00312{left:244.400000pt;}
.x1f_c00312{left:245.466667pt;}
.x8b_c00312{left:247.733333pt;}
.x78_c00312{left:248.933333pt;}
.x4d_c00312{left:252.533333pt;}
.x85_c00312{left:255.866667pt;}
.x74_c00312{left:257.600000pt;}
.x17_c00312{left:260.133333pt;}
.x49_c00312{left:262.266667pt;}
.x5d_c00312{left:263.733333pt;}
.x32_c00312{left:265.066667pt;}
.x9a_c00312{left:266.000000pt;}
.x59_c00312{left:267.066667pt;}
.x93_c00312{left:268.800000pt;}
.x9_c00312{left:271.600000pt;}
.x65_c00312{left:276.133333pt;}
.x39_c00312{left:277.866667pt;}
.x2a_c00312{left:278.800000pt;}
.x86_c00312{left:281.066667pt;}
.x3d_c00312{left:282.266667pt;}
.x4a_c00312{left:283.333333pt;}
.x94_c00312{left:284.800000pt;}
.x1_c00312{left:286.133333pt;}
.x91_c00312{left:289.200000pt;}
.x67_c00312{left:293.200000pt;}
.x2b_c00312{left:294.800000pt;}
.x4e_c00312{left:296.000000pt;}
.xa_c00312{left:297.466667pt;}
.x3e_c00312{left:299.200000pt;}
.x11_c00312{left:300.133333pt;}
.x96_c00312{left:301.066667pt;}
.x18_c00312{left:302.000000pt;}
.x5e_c00312{left:303.733333pt;}
.x6f_c00312{left:304.800000pt;}
.x20_c00312{left:310.133333pt;}
.x45_c00312{left:312.133333pt;}
.x5f_c00312{left:314.666667pt;}
.x6d_c00312{left:318.400000pt;}
.xb_c00312{left:321.200000pt;}
.x21_c00312{left:322.666667pt;}
.x5c_c00312{left:324.400000pt;}
.x12_c00312{left:326.400000pt;}
.x2c_c00312{left:327.733333pt;}
.x3a_c00312{left:329.466667pt;}
.x97_c00312{left:330.533333pt;}
.x42_c00312{left:332.666667pt;}
.x4b_c00312{left:333.866667pt;}
.x95_c00312{left:335.200000pt;}
.x7c_c00312{left:336.133333pt;}
.x46_c00312{left:337.466667pt;}
.x3f_c00312{left:344.666667pt;}
.x54_c00312{left:346.266667pt;}
.x9b_c00312{left:347.866667pt;}
.x79_c00312{left:348.800000pt;}
.xc_c00312{left:351.333333pt;}
.x8a_c00312{left:352.933333pt;}
.x8c_c00312{left:354.933333pt;}
.x7f_c00312{left:355.866667pt;}
.x60_c00312{left:362.000000pt;}
.xaf_c00312{left:382.400000pt;}
.x11c_c00312{left:387.333333pt;}
.xa5_c00312{left:395.466667pt;}
.x10a_c00312{left:396.933333pt;}
.x9c_c00312{left:398.400000pt;}
.x126_c00312{left:399.466667pt;}
.xba_c00312{left:408.000000pt;}
.xdf_c00312{left:413.066667pt;}
.xdc_c00312{left:414.800000pt;}
.x119_c00312{left:417.200000pt;}
.x132_c00312{left:418.266667pt;}
.xce_c00312{left:420.933333pt;}
.xea_c00312{left:421.866667pt;}
.xf3_c00312{left:423.333333pt;}
.x120_c00312{left:424.266667pt;}
.x12b_c00312{left:425.600000pt;}
.x9d_c00312{left:426.533333pt;}
.x114_c00312{left:428.000000pt;}
.xd3_c00312{left:428.933333pt;}
.xcb_c00312{left:432.000000pt;}
.x12d_c00312{left:433.333333pt;}
.xb0_c00312{left:434.266667pt;}
.xed_c00312{left:436.400000pt;}
.x9e_c00312{left:439.066667pt;}
.x10c_c00312{left:442.933333pt;}
.xf0_c00312{left:444.133333pt;}
.xbb_c00312{left:445.733333pt;}
.xab_c00312{left:448.000000pt;}
.x100_c00312{left:449.466667pt;}
.x12c_c00312{left:450.933333pt;}
.xe0_c00312{left:453.733333pt;}
.x129_c00312{left:454.933333pt;}
.xf4_c00312{left:457.200000pt;}
.xc4_c00312{left:458.533333pt;}
.xeb_c00312{left:460.266667pt;}
.x9f_c00312{left:461.466667pt;}
.xdd_c00312{left:464.400000pt;}
.xbc_c00312{left:466.533333pt;}
.xe1_c00312{left:468.800000pt;}
.x133_c00312{left:469.733333pt;}
.x11f_c00312{left:470.666667pt;}
.xd4_c00312{left:471.866667pt;}
.xcf_c00312{left:476.933333pt;}
.x105_c00312{left:479.333333pt;}
.x12e_c00312{left:480.400000pt;}
.x101_c00312{left:481.466667pt;}
.xec_c00312{left:484.000000pt;}
.xf7_c00312{left:486.000000pt;}
.x10f_c00312{left:487.066667pt;}
.x131_c00312{left:489.600000pt;}
.xb1_c00312{left:490.933333pt;}
.x11a_c00312{left:491.866667pt;}
.xa0_c00312{left:494.800000pt;}
.xf1_c00312{left:497.333333pt;}
.xbd_c00312{left:498.533333pt;}
.xe2_c00312{left:500.133333pt;}
.xc5_c00312{left:501.466667pt;}
.xee_c00312{left:503.466667pt;}
.xd5_c00312{left:504.800000pt;}
.xcc_c00312{left:505.866667pt;}
.xd8_c00312{left:507.866667pt;}
.xf8_c00312{left:509.066667pt;}
.xd0_c00312{left:511.200000pt;}
.x102_c00312{left:513.466667pt;}
.xf2_c00312{left:516.533333pt;}
.x127_c00312{left:518.133333pt;}
.xbe_c00312{left:520.000000pt;}
.xe5_c00312{left:521.600000pt;}
.xd6_c00312{left:523.066667pt;}
.x11b_c00312{left:524.266667pt;}
.xa6_c00312{left:526.000000pt;}
.x110_c00312{left:528.400000pt;}
.xd9_c00312{left:529.333333pt;}
.xfb_c00312{left:531.466667pt;}
.xb2_c00312{left:533.866667pt;}
.x103_c00312{left:535.600000pt;}
.xa1_c00312{left:537.333333pt;}
.xfd_c00312{left:538.400000pt;}
.xc6_c00312{left:539.600000pt;}
.xbf_c00312{left:540.800000pt;}
.xa7_c00312{left:542.666667pt;}
.xf5_c00312{left:544.533333pt;}
.x11e_c00312{left:548.266667pt;}
.x115_c00312{left:550.933333pt;}
.xf9_c00312{left:552.533333pt;}
.x121_c00312{left:555.600000pt;}
.x123_c00312{left:556.533333pt;}
.xc7_c00312{left:558.800000pt;}
.xfe_c00312{left:559.866667pt;}
.xe8_c00312{left:560.933333pt;}
.x124_c00312{left:562.000000pt;}
.xe6_c00312{left:563.466667pt;}
.xd7_c00312{left:564.666667pt;}
.xc0_c00312{left:566.666667pt;}
.x112_c00312{left:568.133333pt;}
.x116_c00312{left:570.666667pt;}
.xef_c00312{left:573.200000pt;}
.x122_c00312{left:574.533333pt;}
.x12f_c00312{left:578.133333pt;}
.xda_c00312{left:580.000000pt;}
.xb3_c00312{left:581.600000pt;}
.xd1_c00312{left:582.666667pt;}
.xe9_c00312{left:584.000000pt;}
.xa8_c00312{left:585.866667pt;}
.xfc_c00312{left:586.800000pt;}
.xb4_c00312{left:588.266667pt;}
.xa2_c00312{left:589.200000pt;}
.xc1_c00312{left:592.000000pt;}
.xb5_c00312{left:594.666667pt;}
.xc8_c00312{left:595.866667pt;}
.xa9_c00312{left:597.333333pt;}
.xff_c00312{left:600.133333pt;}
.xb6_c00312{left:601.066667pt;}
.x107_c00312{left:603.866667pt;}
.xf6_c00312{left:605.066667pt;}
.x10b_c00312{left:606.800000pt;}
.xde_c00312{left:607.733333pt;}
.xc9_c00312{left:609.333333pt;}
.xac_c00312{left:610.933333pt;}
.x10d_c00312{left:612.266667pt;}
.xcd_c00312{left:613.333333pt;}
.xdb_c00312{left:615.466667pt;}
.x128_c00312{left:616.400000pt;}
.x113_c00312{left:617.600000pt;}
.xb7_c00312{left:618.666667pt;}
.x108_c00312{left:619.733333pt;}
.x104_c00312{left:620.933333pt;}
.xc2_c00312{left:626.533333pt;}
.xa3_c00312{left:630.533333pt;}
.xaa_c00312{left:631.866667pt;}
.xd2_c00312{left:636.400000pt;}
.x10e_c00312{left:637.466667pt;}
.xad_c00312{left:638.400000pt;}
.xca_c00312{left:639.466667pt;}
.x11d_c00312{left:642.400000pt;}
.xfa_c00312{left:643.466667pt;}
.xb8_c00312{left:644.533333pt;}
.xe3_c00312{left:645.733333pt;}
.xa4_c00312{left:646.800000pt;}
.x125_c00312{left:648.133333pt;}
.x2_c00312{left:650.266667pt;}
.xe7_c00312{left:651.200000pt;}
.xc3_c00312{left:653.466667pt;}
.x106_c00312{left:655.333333pt;}
.x130_c00312{left:660.133333pt;}
.x109_c00312{left:661.600000pt;}
.x12a_c00312{left:663.733333pt;}
.xae_c00312{left:668.133333pt;}
.xb9_c00312{left:669.866667pt;}
.x111_c00312{left:671.466667pt;}
.x118_c00312{left:677.066667pt;}
.x117_c00312{left:678.000000pt;}
.xe4_c00312{left:687.333333pt;}
}





/* 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_c00313 {
    display:none;
  }
  .loading-indicator_c00313.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00313 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_c00313 { 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_c00313" -> "#page-container .classname_c00313")
 */
.pf_c00313 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00313 { /* 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_c00313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00313 { /* 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_c00313 { /* 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_c00313 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00313 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00313 {overflow:visible;}
  }
}
.c_c00313 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00313 { /* 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_c00313:after { /* webkit #35443 */
  content: '';
}
.t_c00313:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00313 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 */
}
.__c00313 { /* 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_c00313 { /* info for Javascript */
  display:none;
}
.l_c00313 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00313 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00313 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00313: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_c00313 {
    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_c00313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00313.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_c00313 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00313;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.000000;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;}
.m113_c00313{transform:matrix(0.019250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00313{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00313{transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);}
.m114_c00313{transform:matrix(0.045750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045750,0.000000,0.000000,0.250000,0,0);}
.mee_c00313{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m110_c00313{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.m112_c00313{transform:matrix(0.064250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064250,0.000000,0.000000,0.250000,0,0);}
.m111_c00313{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m92_c00313{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00313{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00313{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m93_c00313{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mae_c00313{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00313{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m66_c00313{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m86_c00313{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00313{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00313{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mc_c00313{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00313{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m35_c00313{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m88_c00313{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00313{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m89_c00313{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m84_c00313{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00313{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m82_c00313{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00313{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00313{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00313{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m76_c00313{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m40_c00313{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.me1_c00313{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m56_c00313{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m9_c00313{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m52_c00313{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00313{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00313{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m6_c00313{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00313{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00313{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m77_c00313{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00313{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00313{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m12_c00313{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md9_c00313{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00313{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00313{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m18_c00313{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00313{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00313{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m60_c00313{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00313{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00313{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00313{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00313{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m105_c00313{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md0_c00313{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m97_c00313{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4_c00313{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me3_c00313{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m38_c00313{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me6_c00313{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m57_c00313{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md7_c00313{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00313{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00313{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m26_c00313{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mba_c00313{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m32_c00313{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md1_c00313{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m81_c00313{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m95_c00313{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00313{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00313{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m102_c00313{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00313{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.md6_c00313{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m15_c00313{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00313{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m29_c00313{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mb_c00313{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00313{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00313{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m14_c00313{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00313{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00313{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00313{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m83_c00313{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m106_c00313{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m28_c00313{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00313{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m104_c00313{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00313{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00313{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m58_c00313{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00313{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00313{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m36_c00313{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m11_c00313{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m54_c00313{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m75_c00313{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mac_c00313{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00313{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.maf_c00313{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00313{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00313{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00313{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5_c00313{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00313{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00313{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m24_c00313{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md5_c00313{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00313{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me4_c00313{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00313{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00313{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00313{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00313{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00313{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mad_c00313{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00313{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00313{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m47_c00313{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00313{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mce_c00313{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m55_c00313{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m85_c00313{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m50_c00313{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md_c00313{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me_c00313{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m78_c00313{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00313{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m72_c00313{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me0_c00313{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00313{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00313{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m100_c00313{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m13_c00313{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00313{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00313{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00313{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7_c00313{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md2_c00313{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00313{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00313{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m96_c00313{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma_c00313{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00313{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00313{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00313{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00313{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m71_c00313{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00313{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m70_c00313{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m39_c00313{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00313{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00313{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00313{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00313{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m90_c00313{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m10_c00313{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m45_c00313{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m98_c00313{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m80_c00313{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00313{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00313{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m53_c00313{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00313{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00313{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00313{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m46_c00313{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m17_c00313{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00313{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8_c00313{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md3_c00313{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00313{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m21_c00313{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m64_c00313{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00313{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m16_c00313{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m51_c00313{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m22_c00313{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m65_c00313{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00313{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m48_c00313{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m37_c00313{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m63_c00313{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00313{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m23_c00313{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m19_c00313{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.meb_c00313{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00313{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00313{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00313{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m30_c00313{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m34_c00313{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m25_c00313{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m62_c00313{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m73_c00313{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m103_c00313{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m42_c00313{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00313{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mf_c00313{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00313{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.me2_c00313{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m33_c00313{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md8_c00313{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00313{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me5_c00313{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m20_c00313{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00313{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mea_c00313{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m67_c00313{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md4_c00313{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00313{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00313{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00313{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00313{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mde_c00313{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m74_c00313{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00313{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m49_c00313{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.maa_c00313{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00313{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00313{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mff_c00313{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00313{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m91_c00313{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m31_c00313{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m101_c00313{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00313{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00313{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m27_c00313{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mab_c00313{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m107_c00313{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m109_c00313{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00313{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mda_c00313{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00313{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m61_c00313{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m99_c00313{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00313{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00313{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m69_c00313{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00313{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m59_c00313{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00313{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00313{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m43_c00313{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mca_c00313{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00313{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m44_c00313{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m79_c00313{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m87_c00313{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m41_c00313{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00313{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00313{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m68_c00313{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00313{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mef_c00313{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m108_c00313{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00313{transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00313{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00313{transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);}
.me9_c00313{transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00313{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.me8_c00313{transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);}
.me7_c00313{transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);}
.m94_c00313{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00313{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.mec_c00313{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.med_c00313{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00313{transform:matrix(9.768000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.768000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.768000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls1_c00313{letter-spacing:0.000000px;}
.ls0_c00313{letter-spacing:55.714286px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{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__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00313{word-spacing:-85.714286px;}
.ws0_c00313{word-spacing:-14.342105px;}
.ws7_c00313{word-spacing:-9.590296px;}
.ws8_c00313{word-spacing:0.000000px;}
.ws3_c00313{word-spacing:26.428954px;}
.ws4_c00313{word-spacing:58.537019px;}
.ws2_c00313{word-spacing:69.605263px;}
.ws5_c00313{word-spacing:69.861111px;}
.ws1_c00313{word-spacing:148.626642px;}
._1_c00313{margin-left:-55.714286px;}
._0_c00313{width:3.571429px;}
.fc0_c00313{color:transparent;}
.fs6_c00313{font-size:30.000000px;}
.fs7_c00313{font-size:36.000000px;}
.fs8_c00313{font-size:42.000000px;}
.fs4_c00313{font-size:54.000000px;}
.fs2_c00313{font-size:60.000000px;}
.fs1_c00313{font-size:66.000000px;}
.fs3_c00313{font-size:72.000000px;}
.fs5_c00313{font-size:84.000000px;}
.fs0_c00313{font-size:114.000000px;}
.y0_c00313{bottom:0.000000px;}
.y67_c00313{bottom:189.750000px;}
.y68_c00313{bottom:196.200000px;}
.y3b_c00313{bottom:197.400000px;}
.y66_c00313{bottom:204.450000px;}
.y3a_c00313{bottom:214.650000px;}
.y65_c00313{bottom:222.450000px;}
.y39_c00313{bottom:231.600000px;}
.y64_c00313{bottom:248.700000px;}
.y38_c00313{bottom:248.850000px;}
.y37_c00313{bottom:266.550000px;}
.y63_c00313{bottom:266.700000px;}
.y36_c00313{bottom:284.250000px;}
.y62_c00313{bottom:284.700000px;}
.y35_c00313{bottom:301.950000px;}
.y61_c00313{bottom:306.450000px;}
.y34_c00313{bottom:319.200000px;}
.y60_c00313{bottom:323.700000px;}
.y33_c00313{bottom:336.450000px;}
.y5f_c00313{bottom:346.800000px;}
.y32_c00313{bottom:354.150000px;}
.y5e_c00313{bottom:365.100000px;}
.y31_c00313{bottom:371.850000px;}
.y5d_c00313{bottom:381.600000px;}
.y30_c00313{bottom:396.600000px;}
.y5c_c00313{bottom:403.950000px;}
.y2f_c00313{bottom:410.700000px;}
.y28_c00313{bottom:423.300000px;}
.y2e_c00313{bottom:425.100000px;}
.y5b_c00313{bottom:426.300000px;}
.y2d_c00313{bottom:439.500000px;}
.y5a_c00313{bottom:448.200000px;}
.y27_c00313{bottom:453.600000px;}
.y26_c00313{bottom:468.300000px;}
.y59_c00313{bottom:469.800000px;}
.y2c_c00313{bottom:478.200000px;}
.y25_c00313{bottom:482.700000px;}
.y2b_c00313{bottom:483.900000px;}
.y58_c00313{bottom:492.000000px;}
.y24_c00313{bottom:497.100000px;}
.y57_c00313{bottom:509.700000px;}
.y23_c00313{bottom:511.500000px;}
.y22_c00313{bottom:525.600000px;}
.y56_c00313{bottom:527.700000px;}
.y21_c00313{bottom:540.000000px;}
.y55_c00313{bottom:545.700000px;}
.y20_c00313{bottom:554.700000px;}
.y54_c00313{bottom:563.400000px;}
.y1f_c00313{bottom:568.800000px;}
.y53_c00313{bottom:580.650000px;}
.y1e_c00313{bottom:583.200000px;}
.y2a_c00313{bottom:592.500000px;}
.y1d_c00313{bottom:597.600000px;}
.y29_c00313{bottom:598.650000px;}
.y52_c00313{bottom:603.300000px;}
.y1c_c00313{bottom:612.750000px;}
.y51_c00313{bottom:621.000000px;}
.y1b_c00313{bottom:634.650000px;}
.y50_c00313{bottom:637.500000px;}
.y4f_c00313{bottom:647.700000px;}
.y1a_c00313{bottom:653.400000px;}
.y4e_c00313{bottom:668.550000px;}
.y19_c00313{bottom:670.650000px;}
.y3c_c00313{bottom:680.100000px;}
.y18_c00313{bottom:688.650000px;}
.y17_c00313{bottom:706.350000px;}
.y4d_c00313{bottom:706.650000px;}
.y4c_c00313{bottom:729.000000px;}
.y16_c00313{bottom:732.300000px;}
.y4b_c00313{bottom:750.600000px;}
.y15_c00313{bottom:750.900000px;}
.y14_c00313{bottom:768.600000px;}
.y4a_c00313{bottom:785.100000px;}
.y13_c00313{bottom:786.600000px;}
.y12_c00313{bottom:804.300000px;}
.y49_c00313{bottom:820.350000px;}
.y11_c00313{bottom:821.850000px;}
.y48_c00313{bottom:838.350000px;}
.y10_c00313{bottom:843.150000px;}
.y47_c00313{bottom:856.050000px;}
.yf_c00313{bottom:861.900000px;}
.y46_c00313{bottom:874.050000px;}
.y45_c00313{bottom:891.750000px;}
.ye_c00313{bottom:896.100000px;}
.yd_c00313{bottom:914.100000px;}
.y44_c00313{bottom:932.100000px;}
.yc_c00313{bottom:936.000000px;}
.y43_c00313{bottom:950.100000px;}
.yb_c00313{bottom:958.200000px;}
.y42_c00313{bottom:972.000000px;}
.ya_c00313{bottom:975.900000px;}
.y41_c00313{bottom:990.000000px;}
.y9_c00313{bottom:993.900000px;}
.y40_c00313{bottom:1007.700000px;}
.y8_c00313{bottom:1011.600000px;}
.y7_c00313{bottom:1029.300000px;}
.y3f_c00313{bottom:1029.750000px;}
.y6_c00313{bottom:1047.000000px;}
.y3e_c00313{bottom:1047.750000px;}
.y5_c00313{bottom:1064.700000px;}
.y3d_c00313{bottom:1065.000000px;}
.y4_c00313{bottom:1082.700000px;}
.y3_c00313{bottom:1100.400000px;}
.y2_c00313{bottom:1118.100000px;}
.y1_c00313{bottom:1144.800000px;}
.h8_c00313{height:30.000000px;}
.h9_c00313{height:36.000000px;}
.ha_c00313{height:42.000000px;}
.h6_c00313{height:54.000000px;}
.h4_c00313{height:60.000000px;}
.h3_c00313{height:66.000000px;}
.h5_c00313{height:72.000000px;}
.h7_c00313{height:84.000000px;}
.h2_c00313{height:114.000000px;}
.h0_c00313{height:1274.759949px;}
.h1_c00313{height:1275.000000px;}
.w1_c00313{width:961.500000px;}
.w0_c00313{width:961.560058px;}
.x0_c00313{left:0.000000px;}
.x48_c00313{left:198.750000px;}
.x1_c00313{left:199.800000px;}
.x94_c00313{left:200.850000px;}
.x84_c00313{left:212.400000px;}
.x8b_c00313{left:213.450000px;}
.x6c_c00313{left:214.500000px;}
.x3_c00313{left:217.500000px;}
.xd_c00313{left:218.550000px;}
.x73_c00313{left:227.550000px;}
.x75_c00313{left:228.600000px;}
.x8c_c00313{left:229.650000px;}
.x6d_c00313{left:234.000000px;}
.x23_c00313{left:236.250000px;}
.x4c_c00313{left:237.600000px;}
.x3b_c00313{left:238.950000px;}
.x16_c00313{left:240.150000px;}
.x49_c00313{left:241.200000px;}
.x5d_c00313{left:244.800000px;}
.x90_c00313{left:247.050000px;}
.x76_c00313{left:250.200000px;}
.x5c_c00313{left:252.300000px;}
.x4_c00313{left:253.800000px;}
.x1d_c00313{left:255.450000px;}
.x55_c00313{left:258.000000px;}
.x64_c00313{left:259.950000px;}
.x51_c00313{left:261.000000px;}
.x3e_c00313{left:262.350000px;}
.x9a_c00313{left:265.950000px;}
.xe_c00313{left:267.150000px;}
.x8d_c00313{left:268.200000px;}
.x3f_c00313{left:269.250000px;}
.x82_c00313{left:270.300000px;}
.x77_c00313{left:271.800000px;}
.x66_c00313{left:273.750000px;}
.x35_c00313{left:274.950000px;}
.x46_c00313{left:276.300000px;}
.x30_c00313{left:278.850000px;}
.x52_c00313{left:280.800000px;}
.x6e_c00313{left:282.300000px;}
.xa0_c00313{left:284.700000px;}
.x17_c00313{left:286.200000px;}
.x95_c00313{left:289.800000px;}
.x40_c00313{left:292.950000px;}
.x7b_c00313{left:294.300000px;}
.x5_c00313{left:297.000000px;}
.x9d_c00313{left:298.200000px;}
.x1e_c00313{left:299.700000px;}
.x91_c00313{left:301.350000px;}
.xa5_c00313{left:303.900000px;}
.x7f_c00313{left:306.300000px;}
.x24_c00313{left:308.250000px;}
.x31_c00313{left:312.000000px;}
.x85_c00313{left:313.950000px;}
.x56_c00313{left:316.650000px;}
.x7c_c00313{left:317.700000px;}
.x1f_c00313{left:319.500000px;}
.x47_c00313{left:321.600000px;}
.x8e_c00313{left:322.800000px;}
.x36_c00313{left:325.350000px;}
.x4e_c00313{left:326.400000px;}
.x6_c00313{left:328.350000px;}
.x9e_c00313{left:329.400000px;}
.xa3_c00313{left:332.400000px;}
.xf_c00313{left:333.450000px;}
.x67_c00313{left:334.650000px;}
.x61_c00313{left:337.050000px;}
.x18_c00313{left:338.400000px;}
.x65_c00313{left:340.200000px;}
.x6f_c00313{left:342.750000px;}
.x10_c00313{left:345.000000px;}
.x4d_c00313{left:346.200000px;}
.x68_c00313{left:348.750000px;}
.x29_c00313{left:350.400000px;}
.x41_c00313{left:354.150000px;}
.x5a_c00313{left:355.350000px;}
.x25_c00313{left:356.550000px;}
.x32_c00313{left:359.850000px;}
.x5e_c00313{left:362.250000px;}
.x7_c00313{left:363.300000px;}
.x20_c00313{left:364.500000px;}
.x80_c00313{left:366.750000px;}
.x78_c00313{left:367.950000px;}
.x37_c00313{left:370.050000px;}
.x70_c00313{left:373.050000px;}
.x21_c00313{left:376.350000px;}
.x19_c00313{left:378.300000px;}
.x11_c00313{left:380.250000px;}
.x8_c00313{left:382.350000px;}
.x26_c00313{left:384.600000px;}
.x62_c00313{left:385.650000px;}
.x57_c00313{left:389.400000px;}
.x42_c00313{left:391.950000px;}
.x8f_c00313{left:393.300000px;}
.x5f_c00313{left:394.350000px;}
.x33_c00313{left:396.600000px;}
.x38_c00313{left:398.100000px;}
.x2a_c00313{left:399.300000px;}
.x1a_c00313{left:401.700000px;}
.x92_c00313{left:403.200000px;}
.x22_c00313{left:405.150000px;}
.x6a_c00313{left:406.800000px;}
.x97_c00313{left:409.950000px;}
.x83_c00313{left:411.150000px;}
.x43_c00313{left:413.850000px;}
.x53_c00313{left:414.900000px;}
.x58_c00313{left:416.700000px;}
.x1b_c00313{left:417.900000px;}
.x3c_c00313{left:419.700000px;}
.x12_c00313{left:420.900000px;}
.x9b_c00313{left:422.550000px;}
.x8a_c00313{left:423.750000px;}
.x2d_c00313{left:425.250000px;}
.x4a_c00313{left:426.300000px;}
.x7d_c00313{left:427.650000px;}
.x9_c00313{left:429.450000px;}
.x81_c00313{left:433.350000px;}
.x7e_c00313{left:435.150000px;}
.x98_c00313{left:436.650000px;}
.x39_c00313{left:438.450000px;}
.x3d_c00313{left:439.500000px;}
.x2b_c00313{left:440.700000px;}
.x79_c00313{left:442.800000px;}
.x5b_c00313{left:443.850000px;}
.x2_c00313{left:445.350000px;}
.xa_c00313{left:447.150000px;}
.xa1_c00313{left:448.200000px;}
.x4f_c00313{left:450.450000px;}
.x96_c00313{left:452.850000px;}
.x6b_c00313{left:454.650000px;}
.x13_c00313{left:457.650000px;}
.x2e_c00313{left:459.450000px;}
.xa2_c00313{left:460.800000px;}
.x7a_c00313{left:461.850000px;}
.x71_c00313{left:463.050000px;}
.x3a_c00313{left:464.400000px;}
.x27_c00313{left:467.100000px;}
.x99_c00313{left:469.350000px;}
.x50_c00313{left:471.300000px;}
.x44_c00313{left:474.000000px;}
.x14_c00313{left:479.550000px;}
.xa4_c00313{left:481.800000px;}
.xb_c00313{left:483.900000px;}
.x69_c00313{left:485.700000px;}
.x59_c00313{left:487.950000px;}
.x4b_c00313{left:489.300000px;}
.x63_c00313{left:490.350000px;}
.x72_c00313{left:492.150000px;}
.x74_c00313{left:493.200000px;}
.x34_c00313{left:498.150000px;}
.x1c_c00313{left:499.200000px;}
.x54_c00313{left:501.300000px;}
.x9c_c00313{left:502.350000px;}
.x9f_c00313{left:504.000000px;}
.x86_c00313{left:508.500000px;}
.x2f_c00313{left:512.400000px;}
.x60_c00313{left:513.900000px;}
.x15_c00313{left:516.600000px;}
.x93_c00313{left:517.650000px;}
.x28_c00313{left:519.300000px;}
.x45_c00313{left:521.100000px;}
.x2c_c00313{left:523.200000px;}
.xc_c00313{left:525.600000px;}
.x89_c00313{left:527.400000px;}
.x87_c00313{left:528.900000px;}
.x88_c00313{left:529.950000px;}
.x12d_c00313{left:550.500000px;}
.xa6_c00313{left:554.100000px;}
.xe3_c00313{left:556.200000px;}
.x129_c00313{left:567.000000px;}
.x11a_c00313{left:568.650000px;}
.x10e_c00313{left:570.450000px;}
.x104_c00313{left:571.650000px;}
.xe0_c00313{left:573.000000px;}
.xae_c00313{left:574.200000px;}
.x12e_c00313{left:579.300000px;}
.x116_c00313{left:580.650000px;}
.xfe_c00313{left:584.250000px;}
.x109_c00313{left:585.300000px;}
.x117_c00313{left:588.300000px;}
.x100_c00313{left:589.350000px;}
.xfd_c00313{left:590.400000px;}
.xd6_c00313{left:591.450000px;}
.xaf_c00313{left:596.100000px;}
.xba_c00313{left:597.450000px;}
.x11b_c00313{left:599.250000px;}
.xf9_c00313{left:606.750000px;}
.xff_c00313{left:607.950000px;}
.xe1_c00313{left:609.750000px;}
.xc6_c00313{left:611.100000px;}
.x10f_c00313{left:612.150000px;}
.xe4_c00313{left:614.550000px;}
.x114_c00313{left:618.150000px;}
.x115_c00313{left:622.050000px;}
.x10a_c00313{left:623.100000px;}
.xee_c00313{left:625.650000px;}
.xa7_c00313{left:627.600000px;}
.xec_c00313{left:631.500000px;}
.xe2_c00313{left:632.850000px;}
.xd7_c00313{left:634.950000px;}
.xe6_c00313{left:636.150000px;}
.xb0_c00313{left:637.500000px;}
.xd2_c00313{left:639.000000px;}
.xc7_c00313{left:640.650000px;}
.xdb_c00313{left:643.800000px;}
.xc1_c00313{left:646.500000px;}
.x101_c00313{left:650.550000px;}
.xed_c00313{left:652.050000px;}
.xb1_c00313{left:655.500000px;}
.xc8_c00313{left:656.850000px;}
.xbb_c00313{left:660.750000px;}
.xd3_c00313{left:663.450000px;}
.x11c_c00313{left:664.500000px;}
.xdc_c00313{left:668.250000px;}
.x105_c00313{left:671.100000px;}
.xfa_c00313{left:673.050000px;}
.x107_c00313{left:675.600000px;}
.xd8_c00313{left:678.450000px;}
.x110_c00313{left:682.650000px;}
.x12a_c00313{left:687.300000px;}
.xc9_c00313{left:691.050000px;}
.xa8_c00313{left:692.100000px;}
.xe7_c00313{left:693.750000px;}
.xd4_c00313{left:697.350000px;}
.xbc_c00313{left:700.650000px;}
.xd9_c00313{left:702.150000px;}
.xf2_c00313{left:704.250000px;}
.x11e_c00313{left:706.050000px;}
.xe5_c00313{left:707.850000px;}
.xb2_c00313{left:712.050000px;}
.x124_c00313{left:713.100000px;}
.xc2_c00313{left:715.350000px;}
.xca_c00313{left:718.050000px;}
.xf3_c00313{left:719.700000px;}
.x10b_c00313{left:721.350000px;}
.xb3_c00313{left:723.600000px;}
.x102_c00313{left:724.650000px;}
.x120_c00313{left:727.500000px;}
.x123_c00313{left:730.050000px;}
.xbd_c00313{left:736.950000px;}
.xf5_c00313{left:738.300000px;}
.xb4_c00313{left:739.800000px;}
.xdd_c00313{left:741.750000px;}
.x10c_c00313{left:743.700000px;}
.xfb_c00313{left:745.050000px;}
.x128_c00313{left:747.300000px;}
.x106_c00313{left:749.700000px;}
.xa9_c00313{left:752.250000px;}
.xd5_c00313{left:754.200000px;}
.x121_c00313{left:756.600000px;}
.xcb_c00313{left:759.150000px;}
.xaa_c00313{left:760.950000px;}
.xc3_c00313{left:763.200000px;}
.xbe_c00313{left:765.000000px;}
.xe8_c00313{left:766.200000px;}
.xcf_c00313{left:767.700000px;}
.xcc_c00313{left:768.900000px;}
.x12b_c00313{left:772.650000px;}
.xb5_c00313{left:776.100000px;}
.x125_c00313{left:778.950000px;}
.xfc_c00313{left:781.350000px;}
.x118_c00313{left:784.200000px;}
.x113_c00313{left:786.300000px;}
.x111_c00313{left:792.450000px;}
.xe9_c00313{left:794.700000px;}
.xde_c00313{left:795.750000px;}
.xef_c00313{left:797.250000px;}
.xb6_c00313{left:798.750000px;}
.xab_c00313{left:802.350000px;}
.xf4_c00313{left:804.600000px;}
.x126_c00313{left:806.250000px;}
.x108_c00313{left:808.200000px;}
.x122_c00313{left:810.300000px;}
.xf6_c00313{left:811.800000px;}
.xbf_c00313{left:815.400000px;}
.xb7_c00313{left:817.050000px;}
.xf0_c00313{left:818.850000px;}
.x12f_c00313{left:821.250000px;}
.xac_c00313{left:824.250000px;}
.xda_c00313{left:828.450000px;}
.xf7_c00313{left:834.900000px;}
.xc4_c00313{left:835.950000px;}
.x127_c00313{left:837.900000px;}
.x103_c00313{left:840.150000px;}
.xc0_c00313{left:844.500000px;}
.x12c_c00313{left:846.450000px;}
.xd0_c00313{left:848.100000px;}
.xf8_c00313{left:850.050000px;}
.xcd_c00313{left:852.900000px;}
.x112_c00313{left:853.950000px;}
.x119_c00313{left:855.150000px;}
.xc5_c00313{left:856.500000px;}
.xad_c00313{left:858.150000px;}
.xea_c00313{left:859.500000px;}
.xb8_c00313{left:861.750000px;}
.x10d_c00313{left:864.900000px;}
.xd1_c00313{left:866.100000px;}
.x11f_c00313{left:870.600000px;}
.xdf_c00313{left:872.850000px;}
.xf1_c00313{left:876.750000px;}
.xb9_c00313{left:880.050000px;}
.xeb_c00313{left:882.900000px;}
.xce_c00313{left:885.300000px;}
.x11d_c00313{left:887.700000px;}
.x130_c00313{left:947.850000px;}
.x131_c00313{left:948.900000px;}
.x132_c00313{left:951.150000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls1_c00313{letter-spacing:0.000000pt;}
.ls0_c00313{letter-spacing:49.523810pt;}
.ws6_c00313{word-spacing:-76.190476pt;}
.ws0_c00313{word-spacing:-12.748538pt;}
.ws7_c00313{word-spacing:-8.524708pt;}
.ws8_c00313{word-spacing:0.000000pt;}
.ws3_c00313{word-spacing:23.492404pt;}
.ws4_c00313{word-spacing:52.032906pt;}
.ws2_c00313{word-spacing:61.871345pt;}
.ws5_c00313{word-spacing:62.098765pt;}
.ws1_c00313{word-spacing:132.112570pt;}
._1_c00313{margin-left:-49.523810pt;}
._0_c00313{width:3.174603pt;}
.fs6_c00313{font-size:26.666667pt;}
.fs7_c00313{font-size:32.000000pt;}
.fs8_c00313{font-size:37.333333pt;}
.fs4_c00313{font-size:48.000000pt;}
.fs2_c00313{font-size:53.333333pt;}
.fs1_c00313{font-size:58.666667pt;}
.fs3_c00313{font-size:64.000000pt;}
.fs5_c00313{font-size:74.666667pt;}
.fs0_c00313{font-size:101.333333pt;}
.y0_c00313{bottom:0.000000pt;}
.y67_c00313{bottom:168.666667pt;}
.y68_c00313{bottom:174.400000pt;}
.y3b_c00313{bottom:175.466667pt;}
.y66_c00313{bottom:181.733333pt;}
.y3a_c00313{bottom:190.800000pt;}
.y65_c00313{bottom:197.733333pt;}
.y39_c00313{bottom:205.866667pt;}
.y64_c00313{bottom:221.066667pt;}
.y38_c00313{bottom:221.200000pt;}
.y37_c00313{bottom:236.933333pt;}
.y63_c00313{bottom:237.066667pt;}
.y36_c00313{bottom:252.666667pt;}
.y62_c00313{bottom:253.066667pt;}
.y35_c00313{bottom:268.400000pt;}
.y61_c00313{bottom:272.400000pt;}
.y34_c00313{bottom:283.733333pt;}
.y60_c00313{bottom:287.733333pt;}
.y33_c00313{bottom:299.066667pt;}
.y5f_c00313{bottom:308.266667pt;}
.y32_c00313{bottom:314.800000pt;}
.y5e_c00313{bottom:324.533333pt;}
.y31_c00313{bottom:330.533333pt;}
.y5d_c00313{bottom:339.200000pt;}
.y30_c00313{bottom:352.533333pt;}
.y5c_c00313{bottom:359.066667pt;}
.y2f_c00313{bottom:365.066667pt;}
.y28_c00313{bottom:376.266667pt;}
.y2e_c00313{bottom:377.866667pt;}
.y5b_c00313{bottom:378.933333pt;}
.y2d_c00313{bottom:390.666667pt;}
.y5a_c00313{bottom:398.400000pt;}
.y27_c00313{bottom:403.200000pt;}
.y26_c00313{bottom:416.266667pt;}
.y59_c00313{bottom:417.600000pt;}
.y2c_c00313{bottom:425.066667pt;}
.y25_c00313{bottom:429.066667pt;}
.y2b_c00313{bottom:430.133333pt;}
.y58_c00313{bottom:437.333333pt;}
.y24_c00313{bottom:441.866667pt;}
.y57_c00313{bottom:453.066667pt;}
.y23_c00313{bottom:454.666667pt;}
.y22_c00313{bottom:467.200000pt;}
.y56_c00313{bottom:469.066667pt;}
.y21_c00313{bottom:480.000000pt;}
.y55_c00313{bottom:485.066667pt;}
.y20_c00313{bottom:493.066667pt;}
.y54_c00313{bottom:500.800000pt;}
.y1f_c00313{bottom:505.600000pt;}
.y53_c00313{bottom:516.133333pt;}
.y1e_c00313{bottom:518.400000pt;}
.y2a_c00313{bottom:526.666667pt;}
.y1d_c00313{bottom:531.200000pt;}
.y29_c00313{bottom:532.133333pt;}
.y52_c00313{bottom:536.266667pt;}
.y1c_c00313{bottom:544.666667pt;}
.y51_c00313{bottom:552.000000pt;}
.y1b_c00313{bottom:564.133333pt;}
.y50_c00313{bottom:566.666667pt;}
.y4f_c00313{bottom:575.733333pt;}
.y1a_c00313{bottom:580.800000pt;}
.y4e_c00313{bottom:594.266667pt;}
.y19_c00313{bottom:596.133333pt;}
.y3c_c00313{bottom:604.533333pt;}
.y18_c00313{bottom:612.133333pt;}
.y17_c00313{bottom:627.866667pt;}
.y4d_c00313{bottom:628.133333pt;}
.y4c_c00313{bottom:648.000000pt;}
.y16_c00313{bottom:650.933333pt;}
.y4b_c00313{bottom:667.200000pt;}
.y15_c00313{bottom:667.466667pt;}
.y14_c00313{bottom:683.200000pt;}
.y4a_c00313{bottom:697.866667pt;}
.y13_c00313{bottom:699.200000pt;}
.y12_c00313{bottom:714.933333pt;}
.y49_c00313{bottom:729.200000pt;}
.y11_c00313{bottom:730.533333pt;}
.y48_c00313{bottom:745.200000pt;}
.y10_c00313{bottom:749.466667pt;}
.y47_c00313{bottom:760.933333pt;}
.yf_c00313{bottom:766.133333pt;}
.y46_c00313{bottom:776.933333pt;}
.y45_c00313{bottom:792.666667pt;}
.ye_c00313{bottom:796.533333pt;}
.yd_c00313{bottom:812.533333pt;}
.y44_c00313{bottom:828.533333pt;}
.yc_c00313{bottom:832.000000pt;}
.y43_c00313{bottom:844.533333pt;}
.yb_c00313{bottom:851.733333pt;}
.y42_c00313{bottom:864.000000pt;}
.ya_c00313{bottom:867.466667pt;}
.y41_c00313{bottom:880.000000pt;}
.y9_c00313{bottom:883.466667pt;}
.y40_c00313{bottom:895.733333pt;}
.y8_c00313{bottom:899.200000pt;}
.y7_c00313{bottom:914.933333pt;}
.y3f_c00313{bottom:915.333333pt;}
.y6_c00313{bottom:930.666667pt;}
.y3e_c00313{bottom:931.333333pt;}
.y5_c00313{bottom:946.400000pt;}
.y3d_c00313{bottom:946.666667pt;}
.y4_c00313{bottom:962.400000pt;}
.y3_c00313{bottom:978.133333pt;}
.y2_c00313{bottom:993.866667pt;}
.y1_c00313{bottom:1017.600000pt;}
.h8_c00313{height:26.666667pt;}
.h9_c00313{height:32.000000pt;}
.ha_c00313{height:37.333333pt;}
.h6_c00313{height:48.000000pt;}
.h4_c00313{height:53.333333pt;}
.h3_c00313{height:58.666667pt;}
.h5_c00313{height:64.000000pt;}
.h7_c00313{height:74.666667pt;}
.h2_c00313{height:101.333333pt;}
.h0_c00313{height:1133.119955pt;}
.h1_c00313{height:1133.333333pt;}
.w1_c00313{width:854.666667pt;}
.w0_c00313{width:854.720052pt;}
.x0_c00313{left:0.000000pt;}
.x48_c00313{left:176.666667pt;}
.x1_c00313{left:177.600000pt;}
.x94_c00313{left:178.533333pt;}
.x84_c00313{left:188.800000pt;}
.x8b_c00313{left:189.733333pt;}
.x6c_c00313{left:190.666667pt;}
.x3_c00313{left:193.333333pt;}
.xd_c00313{left:194.266667pt;}
.x73_c00313{left:202.266667pt;}
.x75_c00313{left:203.200000pt;}
.x8c_c00313{left:204.133333pt;}
.x6d_c00313{left:208.000000pt;}
.x23_c00313{left:210.000000pt;}
.x4c_c00313{left:211.200000pt;}
.x3b_c00313{left:212.400000pt;}
.x16_c00313{left:213.466667pt;}
.x49_c00313{left:214.400000pt;}
.x5d_c00313{left:217.600000pt;}
.x90_c00313{left:219.600000pt;}
.x76_c00313{left:222.400000pt;}
.x5c_c00313{left:224.266667pt;}
.x4_c00313{left:225.600000pt;}
.x1d_c00313{left:227.066667pt;}
.x55_c00313{left:229.333333pt;}
.x64_c00313{left:231.066667pt;}
.x51_c00313{left:232.000000pt;}
.x3e_c00313{left:233.200000pt;}
.x9a_c00313{left:236.400000pt;}
.xe_c00313{left:237.466667pt;}
.x8d_c00313{left:238.400000pt;}
.x3f_c00313{left:239.333333pt;}
.x82_c00313{left:240.266667pt;}
.x77_c00313{left:241.600000pt;}
.x66_c00313{left:243.333333pt;}
.x35_c00313{left:244.400000pt;}
.x46_c00313{left:245.600000pt;}
.x30_c00313{left:247.866667pt;}
.x52_c00313{left:249.600000pt;}
.x6e_c00313{left:250.933333pt;}
.xa0_c00313{left:253.066667pt;}
.x17_c00313{left:254.400000pt;}
.x95_c00313{left:257.600000pt;}
.x40_c00313{left:260.400000pt;}
.x7b_c00313{left:261.600000pt;}
.x5_c00313{left:264.000000pt;}
.x9d_c00313{left:265.066667pt;}
.x1e_c00313{left:266.400000pt;}
.x91_c00313{left:267.866667pt;}
.xa5_c00313{left:270.133333pt;}
.x7f_c00313{left:272.266667pt;}
.x24_c00313{left:274.000000pt;}
.x31_c00313{left:277.333333pt;}
.x85_c00313{left:279.066667pt;}
.x56_c00313{left:281.466667pt;}
.x7c_c00313{left:282.400000pt;}
.x1f_c00313{left:284.000000pt;}
.x47_c00313{left:285.866667pt;}
.x8e_c00313{left:286.933333pt;}
.x36_c00313{left:289.200000pt;}
.x4e_c00313{left:290.133333pt;}
.x6_c00313{left:291.866667pt;}
.x9e_c00313{left:292.800000pt;}
.xa3_c00313{left:295.466667pt;}
.xf_c00313{left:296.400000pt;}
.x67_c00313{left:297.466667pt;}
.x61_c00313{left:299.600000pt;}
.x18_c00313{left:300.800000pt;}
.x65_c00313{left:302.400000pt;}
.x6f_c00313{left:304.666667pt;}
.x10_c00313{left:306.666667pt;}
.x4d_c00313{left:307.733333pt;}
.x68_c00313{left:310.000000pt;}
.x29_c00313{left:311.466667pt;}
.x41_c00313{left:314.800000pt;}
.x5a_c00313{left:315.866667pt;}
.x25_c00313{left:316.933333pt;}
.x32_c00313{left:319.866667pt;}
.x5e_c00313{left:322.000000pt;}
.x7_c00313{left:322.933333pt;}
.x20_c00313{left:324.000000pt;}
.x80_c00313{left:326.000000pt;}
.x78_c00313{left:327.066667pt;}
.x37_c00313{left:328.933333pt;}
.x70_c00313{left:331.600000pt;}
.x21_c00313{left:334.533333pt;}
.x19_c00313{left:336.266667pt;}
.x11_c00313{left:338.000000pt;}
.x8_c00313{left:339.866667pt;}
.x26_c00313{left:341.866667pt;}
.x62_c00313{left:342.800000pt;}
.x57_c00313{left:346.133333pt;}
.x42_c00313{left:348.400000pt;}
.x8f_c00313{left:349.600000pt;}
.x5f_c00313{left:350.533333pt;}
.x33_c00313{left:352.533333pt;}
.x38_c00313{left:353.866667pt;}
.x2a_c00313{left:354.933333pt;}
.x1a_c00313{left:357.066667pt;}
.x92_c00313{left:358.400000pt;}
.x22_c00313{left:360.133333pt;}
.x6a_c00313{left:361.600000pt;}
.x97_c00313{left:364.400000pt;}
.x83_c00313{left:365.466667pt;}
.x43_c00313{left:367.866667pt;}
.x53_c00313{left:368.800000pt;}
.x58_c00313{left:370.400000pt;}
.x1b_c00313{left:371.466667pt;}
.x3c_c00313{left:373.066667pt;}
.x12_c00313{left:374.133333pt;}
.x9b_c00313{left:375.600000pt;}
.x8a_c00313{left:376.666667pt;}
.x2d_c00313{left:378.000000pt;}
.x4a_c00313{left:378.933333pt;}
.x7d_c00313{left:380.133333pt;}
.x9_c00313{left:381.733333pt;}
.x81_c00313{left:385.200000pt;}
.x7e_c00313{left:386.800000pt;}
.x98_c00313{left:388.133333pt;}
.x39_c00313{left:389.733333pt;}
.x3d_c00313{left:390.666667pt;}
.x2b_c00313{left:391.733333pt;}
.x79_c00313{left:393.600000pt;}
.x5b_c00313{left:394.533333pt;}
.x2_c00313{left:395.866667pt;}
.xa_c00313{left:397.466667pt;}
.xa1_c00313{left:398.400000pt;}
.x4f_c00313{left:400.400000pt;}
.x96_c00313{left:402.533333pt;}
.x6b_c00313{left:404.133333pt;}
.x13_c00313{left:406.800000pt;}
.x2e_c00313{left:408.400000pt;}
.xa2_c00313{left:409.600000pt;}
.x7a_c00313{left:410.533333pt;}
.x71_c00313{left:411.600000pt;}
.x3a_c00313{left:412.800000pt;}
.x27_c00313{left:415.200000pt;}
.x99_c00313{left:417.200000pt;}
.x50_c00313{left:418.933333pt;}
.x44_c00313{left:421.333333pt;}
.x14_c00313{left:426.266667pt;}
.xa4_c00313{left:428.266667pt;}
.xb_c00313{left:430.133333pt;}
.x69_c00313{left:431.733333pt;}
.x59_c00313{left:433.733333pt;}
.x4b_c00313{left:434.933333pt;}
.x63_c00313{left:435.866667pt;}
.x72_c00313{left:437.466667pt;}
.x74_c00313{left:438.400000pt;}
.x34_c00313{left:442.800000pt;}
.x1c_c00313{left:443.733333pt;}
.x54_c00313{left:445.600000pt;}
.x9c_c00313{left:446.533333pt;}
.x9f_c00313{left:448.000000pt;}
.x86_c00313{left:452.000000pt;}
.x2f_c00313{left:455.466667pt;}
.x60_c00313{left:456.800000pt;}
.x15_c00313{left:459.200000pt;}
.x93_c00313{left:460.133333pt;}
.x28_c00313{left:461.600000pt;}
.x45_c00313{left:463.200000pt;}
.x2c_c00313{left:465.066667pt;}
.xc_c00313{left:467.200000pt;}
.x89_c00313{left:468.800000pt;}
.x87_c00313{left:470.133333pt;}
.x88_c00313{left:471.066667pt;}
.x12d_c00313{left:489.333333pt;}
.xa6_c00313{left:492.533333pt;}
.xe3_c00313{left:494.400000pt;}
.x129_c00313{left:504.000000pt;}
.x11a_c00313{left:505.466667pt;}
.x10e_c00313{left:507.066667pt;}
.x104_c00313{left:508.133333pt;}
.xe0_c00313{left:509.333333pt;}
.xae_c00313{left:510.400000pt;}
.x12e_c00313{left:514.933333pt;}
.x116_c00313{left:516.133333pt;}
.xfe_c00313{left:519.333333pt;}
.x109_c00313{left:520.266667pt;}
.x117_c00313{left:522.933333pt;}
.x100_c00313{left:523.866667pt;}
.xfd_c00313{left:524.800000pt;}
.xd6_c00313{left:525.733333pt;}
.xaf_c00313{left:529.866667pt;}
.xba_c00313{left:531.066667pt;}
.x11b_c00313{left:532.666667pt;}
.xf9_c00313{left:539.333333pt;}
.xff_c00313{left:540.400000pt;}
.xe1_c00313{left:542.000000pt;}
.xc6_c00313{left:543.200000pt;}
.x10f_c00313{left:544.133333pt;}
.xe4_c00313{left:546.266667pt;}
.x114_c00313{left:549.466667pt;}
.x115_c00313{left:552.933333pt;}
.x10a_c00313{left:553.866667pt;}
.xee_c00313{left:556.133333pt;}
.xa7_c00313{left:557.866667pt;}
.xec_c00313{left:561.333333pt;}
.xe2_c00313{left:562.533333pt;}
.xd7_c00313{left:564.400000pt;}
.xe6_c00313{left:565.466667pt;}
.xb0_c00313{left:566.666667pt;}
.xd2_c00313{left:568.000000pt;}
.xc7_c00313{left:569.466667pt;}
.xdb_c00313{left:572.266667pt;}
.xc1_c00313{left:574.666667pt;}
.x101_c00313{left:578.266667pt;}
.xed_c00313{left:579.600000pt;}
.xb1_c00313{left:582.666667pt;}
.xc8_c00313{left:583.866667pt;}
.xbb_c00313{left:587.333333pt;}
.xd3_c00313{left:589.733333pt;}
.x11c_c00313{left:590.666667pt;}
.xdc_c00313{left:594.000000pt;}
.x105_c00313{left:596.533333pt;}
.xfa_c00313{left:598.266667pt;}
.x107_c00313{left:600.533333pt;}
.xd8_c00313{left:603.066667pt;}
.x110_c00313{left:606.800000pt;}
.x12a_c00313{left:610.933333pt;}
.xc9_c00313{left:614.266667pt;}
.xa8_c00313{left:615.200000pt;}
.xe7_c00313{left:616.666667pt;}
.xd4_c00313{left:619.866667pt;}
.xbc_c00313{left:622.800000pt;}
.xd9_c00313{left:624.133333pt;}
.xf2_c00313{left:626.000000pt;}
.x11e_c00313{left:627.600000pt;}
.xe5_c00313{left:629.200000pt;}
.xb2_c00313{left:632.933333pt;}
.x124_c00313{left:633.866667pt;}
.xc2_c00313{left:635.866667pt;}
.xca_c00313{left:638.266667pt;}
.xf3_c00313{left:639.733333pt;}
.x10b_c00313{left:641.200000pt;}
.xb3_c00313{left:643.200000pt;}
.x102_c00313{left:644.133333pt;}
.x120_c00313{left:646.666667pt;}
.x123_c00313{left:648.933333pt;}
.xbd_c00313{left:655.066667pt;}
.xf5_c00313{left:656.266667pt;}
.xb4_c00313{left:657.600000pt;}
.xdd_c00313{left:659.333333pt;}
.x10c_c00313{left:661.066667pt;}
.xfb_c00313{left:662.266667pt;}
.x128_c00313{left:664.266667pt;}
.x106_c00313{left:666.400000pt;}
.xa9_c00313{left:668.666667pt;}
.xd5_c00313{left:670.400000pt;}
.x121_c00313{left:672.533333pt;}
.xcb_c00313{left:674.800000pt;}
.xaa_c00313{left:676.400000pt;}
.xc3_c00313{left:678.400000pt;}
.xbe_c00313{left:680.000000pt;}
.xe8_c00313{left:681.066667pt;}
.xcf_c00313{left:682.400000pt;}
.xcc_c00313{left:683.466667pt;}
.x12b_c00313{left:686.800000pt;}
.xb5_c00313{left:689.866667pt;}
.x125_c00313{left:692.400000pt;}
.xfc_c00313{left:694.533333pt;}
.x118_c00313{left:697.066667pt;}
.x113_c00313{left:698.933333pt;}
.x111_c00313{left:704.400000pt;}
.xe9_c00313{left:706.400000pt;}
.xde_c00313{left:707.333333pt;}
.xef_c00313{left:708.666667pt;}
.xb6_c00313{left:710.000000pt;}
.xab_c00313{left:713.200000pt;}
.xf4_c00313{left:715.200000pt;}
.x126_c00313{left:716.666667pt;}
.x108_c00313{left:718.400000pt;}
.x122_c00313{left:720.266667pt;}
.xf6_c00313{left:721.600000pt;}
.xbf_c00313{left:724.800000pt;}
.xb7_c00313{left:726.266667pt;}
.xf0_c00313{left:727.866667pt;}
.x12f_c00313{left:730.000000pt;}
.xac_c00313{left:732.666667pt;}
.xda_c00313{left:736.400000pt;}
.xf7_c00313{left:742.133333pt;}
.xc4_c00313{left:743.066667pt;}
.x127_c00313{left:744.800000pt;}
.x103_c00313{left:746.800000pt;}
.xc0_c00313{left:750.666667pt;}
.x12c_c00313{left:752.400000pt;}
.xd0_c00313{left:753.866667pt;}
.xf8_c00313{left:755.600000pt;}
.xcd_c00313{left:758.133333pt;}
.x112_c00313{left:759.066667pt;}
.x119_c00313{left:760.133333pt;}
.xc5_c00313{left:761.333333pt;}
.xad_c00313{left:762.800000pt;}
.xea_c00313{left:764.000000pt;}
.xb8_c00313{left:766.000000pt;}
.x10d_c00313{left:768.800000pt;}
.xd1_c00313{left:769.866667pt;}
.x11f_c00313{left:773.866667pt;}
.xdf_c00313{left:775.866667pt;}
.xf1_c00313{left:779.333333pt;}
.xb9_c00313{left:782.266667pt;}
.xeb_c00313{left:784.800000pt;}
.xce_c00313{left:786.933333pt;}
.x11d_c00313{left:789.066667pt;}
.x130_c00313{left:842.533333pt;}
.x131_c00313{left:843.466667pt;}
.x132_c00313{left:845.466667pt;}
}





/* 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_c00314 {
    display:none;
  }
  .loading-indicator_c00314.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00314 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_c00314 { 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_c00314" -> "#page-container .classname_c00314")
 */
.pf_c00314 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00314 { /* 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_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00314 { /* 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_c00314 { /* 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_c00314 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00314 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00314 {overflow:visible;}
  }
}
.c_c00314 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00314 { /* 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_c00314:after { /* webkit #35443 */
  content: '';
}
.t_c00314:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00314 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 */
}
.__c00314 { /* 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_c00314 { /* info for Javascript */
  display:none;
}
.l_c00314 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00314 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00314 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00314: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_c00314 {
    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_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00314.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_c00314 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00314;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.000000;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;}
.m15_c00314{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m70_c00314{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00314{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m46_c00314{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m65_c00314{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m64_c00314{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00314{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7_c00314{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m106_c00314{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m66_c00314{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m83_c00314{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me3_c00314{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m52_c00314{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00314{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mba_c00314{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m68_c00314{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m29_c00314{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m73_c00314{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.md3_c00314{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00314{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.m72_c00314{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me0_c00314{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.me7_c00314{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m30_c00314{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m100_c00314{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00314{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00314{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00314{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00314{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00314{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00314{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m102_c00314{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m28_c00314{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m87_c00314{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00314{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00314{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00314{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md2_c00314{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m18_c00314{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8_c00314{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00314{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00314{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00314{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.mae_c00314{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m78_c00314{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m79_c00314{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m97_c00314{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m109_c00314{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m101_c00314{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m6_c00314{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m67_c00314{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m80_c00314{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m13_c00314{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m55_c00314{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00314{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00314{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00314{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00314{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m76_c00314{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mab_c00314{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00314{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11_c00314{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5_c00314{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m54_c00314{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00314{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00314{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00314{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mda_c00314{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m82_c00314{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00314{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m75_c00314{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00314{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00314{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m34_c00314{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m88_c00314{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m12_c00314{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00314{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00314{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00314{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.meb_c00314{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m14_c00314{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m84_c00314{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00314{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m86_c00314{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m16_c00314{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00314{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00314{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma_c00314{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00314{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m95_c00314{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00314{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00314{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md9_c00314{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4_c00314{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md6_c00314{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00314{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00314{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00314{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00314{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m27_c00314{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00314{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mea_c00314{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m77_c00314{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m81_c00314{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m36_c00314{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00314{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m38_c00314{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9_c00314{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00314{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00314{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00314{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m24_c00314{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m61_c00314{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m85_c00314{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m23_c00314{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00314{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m53_c00314{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m32_c00314{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00314{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00314{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00314{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00314{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m90_c00314{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m94_c00314{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00314{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00314{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m96_c00314{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00314{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m19_c00314{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m105_c00314{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00314{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc_c00314{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00314{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.me5_c00314{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00314{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00314{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mff_c00314{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00314{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00314{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m89_c00314{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00314{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00314{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00314{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mad_c00314{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00314{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m45_c00314{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m37_c00314{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mac_c00314{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m17_c00314{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m44_c00314{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.med_c00314{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00314{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me9_c00314{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m31_c00314{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10_c00314{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00314{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m99_c00314{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00314{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00314{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00314{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.maf_c00314{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m91_c00314{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00314{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00314{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m60_c00314{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf_c00314{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m56_c00314{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00314{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00314{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00314{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00314{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00314{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00314{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m35_c00314{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mef_c00314{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00314{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m39_c00314{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m47_c00314{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00314{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m51_c00314{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m62_c00314{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00314{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m63_c00314{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m22_c00314{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m74_c00314{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mec_c00314{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00314{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mee_c00314{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00314{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mca_c00314{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m59_c00314{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00314{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m98_c00314{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00314{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m108_c00314{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.md_c00314{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m50_c00314{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00314{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m42_c00314{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.maa_c00314{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m33_c00314{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mde_c00314{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00314{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00314{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00314{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md5_c00314{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me_c00314{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me6_c00314{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00314{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00314{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00314{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00314{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26_c00314{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me8_c00314{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00314{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00314{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me4_c00314{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m49_c00314{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00314{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m43_c00314{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);}
.mb_c00314{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md1_c00314{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m48_c00314{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00314{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00314{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.me1_c00314{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00314{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00314{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00314{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00314{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m92_c00314{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00314{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00314{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m104_c00314{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md0_c00314{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00314{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m58_c00314{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00314{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m21_c00314{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m41_c00314{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00314{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m93_c00314{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00314{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.me2_c00314{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00314{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m103_c00314{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00314{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00314{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m57_c00314{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m20_c00314{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mce_c00314{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00314{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00314{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00314{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.md8_c00314{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m107_c00314{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00314{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md4_c00314{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m71_c00314{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m25_c00314{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00314{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00314{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00314{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m40_c00314{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);}
.m69_c00314{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.md7_c00314{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls1_c00314{letter-spacing:0.000000px;}
.ls0_c00314{letter-spacing:55.714286px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{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__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00314{word-spacing:-85.714286px;}
.ws6_c00314{word-spacing:-9.210526px;}
.ws7_c00314{word-spacing:-7.948328px;}
.ws0_c00314{word-spacing:-6.732523px;}
.wsc_c00314{word-spacing:-5.986900px;}
.ws12_c00314{word-spacing:-5.030157px;}
.ws8_c00314{word-spacing:-4.189189px;}
.ws13_c00314{word-spacing:0.000000px;}
.wsd_c00314{word-spacing:5.927224px;}
.ws9_c00314{word-spacing:9.339623px;}
.ws11_c00314{word-spacing:22.142857px;}
.wsa_c00314{word-spacing:25.714286px;}
.wse_c00314{word-spacing:26.428954px;}
.ws1_c00314{word-spacing:29.285714px;}
.ws5_c00314{word-spacing:29.583333px;}
.ws10_c00314{word-spacing:35.833333px;}
.ws2_c00314{word-spacing:40.000000px;}
.ws3_c00314{word-spacing:44.166667px;}
.wsf_c00314{word-spacing:60.906219px;}
.ws4_c00314{word-spacing:66.315789px;}
._3_c00314{margin-left:-55.714286px;}
._2_c00314{width:35.675676px;}
._4_c00314{width:46.994638px;}
._7_c00314{width:55.714286px;}
._6_c00314{width:59.285714px;}
._0_c00314{width:74.166667px;}
._1_c00314{width:80.416667px;}
._5_c00314{width:487.857143px;}
.fc0_c00314{color:transparent;}
.fs6_c00314{font-size:30.000000px;}
.fs7_c00314{font-size:48.000000px;}
.fs5_c00314{font-size:54.000000px;}
.fs3_c00314{font-size:60.000000px;}
.fs4_c00314{font-size:66.000000px;}
.fs2_c00314{font-size:72.000000px;}
.fs0_c00314{font-size:84.000000px;}
.fs1_c00314{font-size:90.000000px;}
.y0_c00314{bottom:0.000000px;}
.y36_c00314{bottom:164.550000px;}
.y35_c00314{bottom:193.650000px;}
.y34_c00314{bottom:208.350000px;}
.y67_c00314{bottom:211.650000px;}
.y33_c00314{bottom:222.450000px;}
.y66_c00314{bottom:229.350000px;}
.y32_c00314{bottom:236.550000px;}
.y65_c00314{bottom:247.650000px;}
.y31_c00314{bottom:251.400000px;}
.y30_c00314{bottom:266.100000px;}
.y64_c00314{bottom:270.750000px;}
.y2f_c00314{bottom:280.500000px;}
.y63_c00314{bottom:282.600000px;}
.y62_c00314{bottom:294.150000px;}
.y61_c00314{bottom:315.300000px;}
.y2e_c00314{bottom:320.400000px;}
.y60_c00314{bottom:333.000000px;}
.y2d_c00314{bottom:342.000000px;}
.y5f_c00314{bottom:350.700000px;}
.y2c_c00314{bottom:359.700000px;}
.y5e_c00314{bottom:367.950000px;}
.y2b_c00314{bottom:377.400000px;}
.y5d_c00314{bottom:394.500000px;}
.y2a_c00314{bottom:395.400000px;}
.y5c_c00314{bottom:412.500000px;}
.y29_c00314{bottom:413.100000px;}
.y5b_c00314{bottom:430.500000px;}
.y28_c00314{bottom:430.800000px;}
.y5a_c00314{bottom:448.200000px;}
.y27_c00314{bottom:448.800000px;}
.y59_c00314{bottom:466.200000px;}
.y26_c00314{bottom:466.500000px;}
.y58_c00314{bottom:483.450000px;}
.y25_c00314{bottom:484.500000px;}
.y24_c00314{bottom:502.200000px;}
.y57_c00314{bottom:505.800000px;}
.y23_c00314{bottom:520.950000px;}
.y56_c00314{bottom:523.050000px;}
.y22_c00314{bottom:538.200000px;}
.y55_c00314{bottom:554.700000px;}
.y21_c00314{bottom:555.900000px;}
.y54_c00314{bottom:572.400000px;}
.y20_c00314{bottom:573.900000px;}
.y53_c00314{bottom:590.400000px;}
.y1f_c00314{bottom:591.900000px;}
.y1e_c00314{bottom:609.600000px;}
.y52_c00314{bottom:612.300000px;}
.y1d_c00314{bottom:627.600000px;}
.y51_c00314{bottom:633.900000px;}
.y1c_c00314{bottom:645.300000px;}
.y50_c00314{bottom:656.100000px;}
.y1b_c00314{bottom:663.300000px;}
.y4f_c00314{bottom:674.400000px;}
.y1a_c00314{bottom:681.000000px;}
.y4e_c00314{bottom:692.100000px;}
.y19_c00314{bottom:698.700000px;}
.y4d_c00314{bottom:710.100000px;}
.y18_c00314{bottom:716.700000px;}
.y4c_c00314{bottom:727.800000px;}
.y17_c00314{bottom:742.200000px;}
.y4b_c00314{bottom:745.500000px;}
.y16_c00314{bottom:756.300000px;}
.y4a_c00314{bottom:763.500000px;}
.y15_c00314{bottom:769.350000px;}
.y49_c00314{bottom:781.500000px;}
.y14_c00314{bottom:785.550000px;}
.y13_c00314{bottom:798.000000px;}
.y48_c00314{bottom:799.200000px;}
.y12_c00314{bottom:813.900000px;}
.y47_c00314{bottom:816.900000px;}
.y11_c00314{bottom:832.200000px;}
.y46_c00314{bottom:834.900000px;}
.y10_c00314{bottom:849.900000px;}
.y45_c00314{bottom:854.250000px;}
.yf_c00314{bottom:867.900000px;}
.y44_c00314{bottom:869.100000px;}
.y43_c00314{bottom:883.200000px;}
.ye_c00314{bottom:885.600000px;}
.y42_c00314{bottom:897.900000px;}
.yd_c00314{bottom:907.200000px;}
.y41_c00314{bottom:918.000000px;}
.yc_c00314{bottom:925.200000px;}
.y40_c00314{bottom:936.000000px;}
.yb_c00314{bottom:943.500000px;}
.y3f_c00314{bottom:953.700000px;}
.ya_c00314{bottom:961.200000px;}
.y3e_c00314{bottom:970.950000px;}
.y9_c00314{bottom:982.500000px;}
.y3d_c00314{bottom:988.950000px;}
.y3c_c00314{bottom:1010.850000px;}
.y8_c00314{bottom:1012.350000px;}
.y3b_c00314{bottom:1028.850000px;}
.y7_c00314{bottom:1038.900000px;}
.y3a_c00314{bottom:1046.100000px;}
.y6_c00314{bottom:1057.050000px;}
.y39_c00314{bottom:1068.450000px;}
.y5_c00314{bottom:1074.300000px;}
.y38_c00314{bottom:1086.150000px;}
.y4_c00314{bottom:1100.850000px;}
.y37_c00314{bottom:1116.750000px;}
.y3_c00314{bottom:1118.550000px;}
.y2_c00314{bottom:1141.200000px;}
.y1_c00314{bottom:1144.800000px;}
.h8_c00314{height:30.000000px;}
.h9_c00314{height:48.000000px;}
.h7_c00314{height:54.000000px;}
.h5_c00314{height:60.000000px;}
.h6_c00314{height:66.000000px;}
.h4_c00314{height:72.000000px;}
.h2_c00314{height:84.000000px;}
.h3_c00314{height:90.000000px;}
.h0_c00314{height:1267.919952px;}
.h1_c00314{height:1268.250000px;}
.w1_c00314{width:961.500000px;}
.w0_c00314{width:961.560058px;}
.x0_c00314{left:0.000000px;}
.xb1_c00314{left:65.850000px;}
.x54_c00314{left:70.500000px;}
.x1f_c00314{left:72.000000px;}
.xf_c00314{left:73.800000px;}
.x67_c00314{left:76.350000px;}
.x14_c00314{left:78.300000px;}
.xb7_c00314{left:80.700000px;}
.xaf_c00314{left:84.150000px;}
.x5a_c00314{left:85.200000px;}
.x85_c00314{left:86.400000px;}
.x48_c00314{left:88.050000px;}
.x32_c00314{left:89.100000px;}
.x1c_c00314{left:90.750000px;}
.x3_c00314{left:92.100000px;}
.x3a_c00314{left:96.450000px;}
.x72_c00314{left:97.950000px;}
.x68_c00314{left:99.450000px;}
.xbb_c00314{left:103.050000px;}
.xb8_c00314{left:104.850000px;}
.x1d_c00314{left:107.250000px;}
.x25_c00314{left:108.600000px;}
.xb2_c00314{left:110.700000px;}
.x7a_c00314{left:111.750000px;}
.x49_c00314{left:115.050000px;}
.x3b_c00314{left:116.250000px;}
.x21_c00314{left:117.300000px;}
.x5e_c00314{left:118.350000px;}
.x8f_c00314{left:120.450000px;}
.xd_c00314{left:121.950000px;}
.xa2_c00314{left:123.600000px;}
.x4f_c00314{left:124.800000px;}
.x9c_c00314{left:126.150000px;}
.x4_c00314{left:128.100000px;}
.x8a_c00314{left:130.050000px;}
.x10_c00314{left:132.450000px;}
.x5b_c00314{left:134.550000px;}
.x7e_c00314{left:137.250000px;}
.x20_c00314{left:138.600000px;}
.x69_c00314{left:139.650000px;}
.x6e_c00314{left:141.000000px;}
.xb9_c00314{left:142.500000px;}
.x9d_c00314{left:143.850000px;}
.x5_c00314{left:145.050000px;}
.xbc_c00314{left:147.000000px;}
.xa8_c00314{left:148.050000px;}
.x83_c00314{left:150.150000px;}
.x1e_c00314{left:152.550000px;}
.xe_c00314{left:154.050000px;}
.x75_c00314{left:155.100000px;}
.x33_c00314{left:158.550000px;}
.x98_c00314{left:159.600000px;}
.x15_c00314{left:161.850000px;}
.x6_c00314{left:164.100000px;}
.x37_c00314{left:165.300000px;}
.xac_c00314{left:166.500000px;}
.x4a_c00314{left:168.750000px;}
.x26_c00314{left:170.550000px;}
.x41_c00314{left:171.600000px;}
.x2c_c00314{left:175.050000px;}
.x5f_c00314{left:178.500000px;}
.x16_c00314{left:183.450000px;}
.x60_c00314{left:185.700000px;}
.x6a_c00314{left:187.800000px;}
.x7f_c00314{left:189.150000px;}
.xa3_c00314{left:190.800000px;}
.x27_c00314{left:192.150000px;}
.x9f_c00314{left:193.500000px;}
.x5c_c00314{left:195.000000px;}
.x55_c00314{left:196.950000px;}
.x38_c00314{left:198.450000px;}
.x50_c00314{left:199.650000px;}
.x9e_c00314{left:200.700000px;}
.x79_c00314{left:201.750000px;}
.x86_c00314{left:204.150000px;}
.x42_c00314{left:205.800000px;}
.xa4_c00314{left:207.750000px;}
.xbd_c00314{left:209.100000px;}
.x84_c00314{left:210.900000px;}
.x2d_c00314{left:212.850000px;}
.x76_c00314{left:214.500000px;}
.x17_c00314{left:215.850000px;}
.x28_c00314{left:217.050000px;}
.xa9_c00314{left:218.250000px;}
.x6f_c00314{left:220.500000px;}
.x39_c00314{left:221.850000px;}
.x11_c00314{left:224.700000px;}
.x92_c00314{left:226.500000px;}
.x7_c00314{left:227.850000px;}
.x61_c00314{left:228.900000px;}
.x70_c00314{left:229.950000px;}
.x22_c00314{left:231.450000px;}
.x2e_c00314{left:232.650000px;}
.x43_c00314{left:234.600000px;}
.x56_c00314{left:236.550000px;}
.x7b_c00314{left:238.800000px;}
.xb3_c00314{left:240.750000px;}
.x29_c00314{left:241.950000px;}
.x34_c00314{left:243.150000px;}
.x6b_c00314{left:244.800000px;}
.x51_c00314{left:246.750000px;}
.x95_c00314{left:248.400000px;}
.x8_c00314{left:251.550000px;}
.xb5_c00314{left:254.850000px;}
.x57_c00314{left:257.850000px;}
.x90_c00314{left:260.850000px;}
.xa5_c00314{left:262.050000px;}
.x2f_c00314{left:265.800000px;}
.x2a_c00314{left:266.850000px;}
.x44_c00314{left:268.800000px;}
.x18_c00314{left:269.850000px;}
.x5d_c00314{left:272.100000px;}
.xa0_c00314{left:273.150000px;}
.x8e_c00314{left:275.850000px;}
.x6c_c00314{left:277.950000px;}
.xb0_c00314{left:279.000000px;}
.x62_c00314{left:280.200000px;}
.x3c_c00314{left:281.850000px;}
.x77_c00314{left:282.900000px;}
.x96_c00314{left:285.450000px;}
.x63_c00314{left:287.400000px;}
.x80_c00314{left:288.750000px;}
.x87_c00314{left:289.800000px;}
.x19_c00314{left:291.150000px;}
.x23_c00314{left:292.950000px;}
.xb6_c00314{left:294.450000px;}
.x9_c00314{left:295.500000px;}
.x6d_c00314{left:297.450000px;}
.x52_c00314{left:298.950000px;}
.x3d_c00314{left:300.150000px;}
.x58_c00314{left:301.800000px;}
.xa_c00314{left:303.450000px;}
.x81_c00314{left:304.950000px;}
.x99_c00314{left:306.150000px;}
.x4b_c00314{left:307.200000px;}
.x64_c00314{left:308.550000px;}
.x45_c00314{left:310.950000px;}
.x35_c00314{left:312.600000px;}
.x1_c00314{left:316.050000px;}
.x53_c00314{left:317.700000px;}
.xb_c00314{left:321.450000px;}
.x4c_c00314{left:322.650000px;}
.x46_c00314{left:324.300000px;}
.x30_c00314{left:326.700000px;}
.x59_c00314{left:327.750000px;}
.x97_c00314{left:328.950000px;}
.xa1_c00314{left:330.450000px;}
.xad_c00314{left:331.950000px;}
.x93_c00314{left:333.000000px;}
.x1a_c00314{left:334.350000px;}
.x65_c00314{left:335.550000px;}
.x71_c00314{left:336.600000px;}
.x12_c00314{left:337.800000px;}
.x7c_c00314{left:338.850000px;}
.x9a_c00314{left:340.050000px;}
.x3e_c00314{left:343.350000px;}
.x8b_c00314{left:346.050000px;}
.xb4_c00314{left:348.300000px;}
.xa6_c00314{left:351.000000px;}
.x24_c00314{left:352.650000px;}
.x3f_c00314{left:353.850000px;}
.xab_c00314{left:355.500000px;}
.x31_c00314{left:356.550000px;}
.x36_c00314{left:357.600000px;}
.x88_c00314{left:358.650000px;}
.xaa_c00314{left:362.550000px;}
.x73_c00314{left:363.600000px;}
.x66_c00314{left:364.650000px;}
.x8c_c00314{left:367.350000px;}
.x4d_c00314{left:368.850000px;}
.x13_c00314{left:369.900000px;}
.x2b_c00314{left:371.250000px;}
.xba_c00314{left:372.300000px;}
.xa7_c00314{left:373.350000px;}
.x7d_c00314{left:374.850000px;}
.x91_c00314{left:376.350000px;}
.x89_c00314{left:377.700000px;}
.x47_c00314{left:379.350000px;}
.x40_c00314{left:381.150000px;}
.x94_c00314{left:382.350000px;}
.x82_c00314{left:385.950000px;}
.x9b_c00314{left:387.150000px;}
.xc_c00314{left:391.350000px;}
.x74_c00314{left:392.700000px;}
.x8d_c00314{left:394.050000px;}
.x1b_c00314{left:395.550000px;}
.xae_c00314{left:398.100000px;}
.x78_c00314{left:400.650000px;}
.x4e_c00314{left:402.000000px;}
.x15a_c00314{left:420.600000px;}
.x14b_c00314{left:422.250000px;}
.x142_c00314{left:424.500000px;}
.x137_c00314{left:426.300000px;}
.xf3_c00314{left:428.400000px;}
.xd8_c00314{left:430.200000px;}
.xbe_c00314{left:431.250000px;}
.x161_c00314{left:436.650000px;}
.x153_c00314{left:438.300000px;}
.x14a_c00314{left:439.800000px;}
.x144_c00314{left:441.450000px;}
.x139_c00314{left:443.100000px;}
.x134_c00314{left:444.300000px;}
.x117_c00314{left:445.650000px;}
.xdf_c00314{left:447.150000px;}
.xd6_c00314{left:448.200000px;}
.xc5_c00314{left:449.250000px;}
.xf9_c00314{left:450.600000px;}
.x10c_c00314{left:456.900000px;}
.x135_c00314{left:460.500000px;}
.x12b_c00314{left:462.000000px;}
.x147_c00314{left:463.950000px;}
.x14c_c00314{left:465.150000px;}
.xc6_c00314{left:467.250000px;}
.x156_c00314{left:469.500000px;}
.xe5_c00314{left:471.150000px;}
.x154_c00314{left:472.500000px;}
.x13e_c00314{left:473.550000px;}
.xc0_c00314{left:474.600000px;}
.xc7_c00314{left:475.950000px;}
.x13a_c00314{left:477.000000px;}
.x160_c00314{left:479.400000px;}
.xd7_c00314{left:481.350000px;}
.x11f_c00314{left:482.700000px;}
.xfa_c00314{left:486.300000px;}
.xf4_c00314{left:490.350000px;}
.x162_c00314{left:491.700000px;}
.xf1_c00314{left:493.950000px;}
.xcf_c00314{left:496.950000px;}
.x13b_c00314{left:498.300000px;}
.x118_c00314{left:499.350000px;}
.xbf_c00314{left:500.700000px;}
.x138_c00314{left:503.250000px;}
.xff_c00314{left:507.450000px;}
.xc1_c00314{left:508.500000px;}
.xe6_c00314{left:509.700000px;}
.xc8_c00314{left:511.650000px;}
.x100_c00314{left:513.900000px;}
.xfb_c00314{left:517.950000px;}
.xf2_c00314{left:522.000000px;}
.x14f_c00314{left:524.550000px;}
.x12c_c00314{left:526.050000px;}
.x119_c00314{left:527.100000px;}
.x101_c00314{left:528.600000px;}
.x14d_c00314{left:529.950000px;}
.x112_c00314{left:533.550000px;}
.x13c_c00314{left:534.600000px;}
.x102_c00314{left:535.800000px;}
.xd0_c00314{left:538.050000px;}
.xd9_c00314{left:540.750000px;}
.x15b_c00314{left:541.950000px;}
.x103_c00314{left:543.300000px;}
.x123_c00314{left:544.650000px;}
.xec_c00314{left:545.850000px;}
.x11a_c00314{left:547.200000px;}
.xe0_c00314{left:549.300000px;}
.x104_c00314{left:550.500000px;}
.x157_c00314{left:553.050000px;}
.xf5_c00314{left:554.400000px;}
.xe7_c00314{left:555.450000px;}
.xc9_c00314{left:556.650000px;}
.x105_c00314{left:557.700000px;}
.x15d_c00314{left:560.550000px;}
.x130_c00314{left:561.900000px;}
.xfc_c00314{left:563.250000px;}
.x10d_c00314{left:564.450000px;}
.xca_c00314{left:566.400000px;}
.x126_c00314{left:567.900000px;}
.x120_c00314{left:569.550000px;}
.x12d_c00314{left:573.900000px;}
.xd1_c00314{left:576.600000px;}
.x10e_c00314{left:578.850000px;}
.xe8_c00314{left:579.900000px;}
.x155_c00314{left:582.000000px;}
.xc2_c00314{left:583.800000px;}
.x148_c00314{left:584.850000px;}
.x10f_c00314{left:586.050000px;}
.xed_c00314{left:587.550000px;}
.x11b_c00314{left:588.900000px;}
.x150_c00314{left:590.100000px;}
.xda_c00314{left:592.200000px;}
.x113_c00314{left:596.100000px;}
.x131_c00314{left:597.600000px;}
.x11c_c00314{left:598.650000px;}
.x106_c00314{left:601.500000px;}
.xf6_c00314{left:603.300000px;}
.xe1_c00314{left:604.800000px;}
.x127_c00314{left:606.000000px;}
.x124_c00314{left:607.350000px;}
.x107_c00314{left:608.400000px;}
.xfd_c00314{left:609.750000px;}
.x15e_c00314{left:613.500000px;}
.xee_c00314{left:615.600000px;}
.x125_c00314{left:617.100000px;}
.x132_c00314{left:618.150000px;}
.x114_c00314{left:621.000000px;}
.x13f_c00314{left:622.950000px;}
.x110_c00314{left:625.650000px;}
.xcb_c00314{left:627.300000px;}
.x108_c00314{left:630.000000px;}
.x109_c00314{left:637.500000px;}
.xef_c00314{left:641.550000px;}
.x11d_c00314{left:645.750000px;}
.x133_c00314{left:646.950000px;}
.x151_c00314{left:648.450000px;}
.x14e_c00314{left:649.950000px;}
.x10a_c00314{left:651.900000px;}
.xe9_c00314{left:654.150000px;}
.xd2_c00314{left:656.250000px;}
.xf7_c00314{left:657.600000px;}
.x12e_c00314{left:658.800000px;}
.x145_c00314{left:662.700000px;}
.xfe_c00314{left:663.750000px;}
.xdb_c00314{left:664.950000px;}
.xe2_c00314{left:668.550000px;}
.x115_c00314{left:670.650000px;}
.xc3_c00314{left:671.700000px;}
.x121_c00314{left:672.750000px;}
.x143_c00314{left:674.400000px;}
.x149_c00314{left:677.100000px;}
.xd3_c00314{left:678.600000px;}
.x152_c00314{left:680.550000px;}
.x11e_c00314{left:682.500000px;}
.xf8_c00314{left:684.300000px;}
.x140_c00314{left:685.950000px;}
.x128_c00314{left:687.000000px;}
.x136_c00314{left:688.950000px;}
.x163_c00314{left:690.750000px;}
.x10b_c00314{left:693.000000px;}
.xcc_c00314{left:694.950000px;}
.xf0_c00314{left:697.350000px;}
.x13d_c00314{left:699.450000px;}
.xdc_c00314{left:702.000000px;}
.xea_c00314{left:703.050000px;}
.xcd_c00314{left:704.700000px;}
.x141_c00314{left:706.050000px;}
.x158_c00314{left:707.100000px;}
.xd4_c00314{left:711.300000px;}
.x15c_c00314{left:712.350000px;}
.xe3_c00314{left:714.600000px;}
.x12f_c00314{left:716.400000px;}
.x129_c00314{left:719.700000px;}
.xdd_c00314{left:722.550000px;}
.xeb_c00314{left:724.350000px;}
.xc4_c00314{left:726.750000px;}
.x111_c00314{left:728.250000px;}
.x15f_c00314{left:732.000000px;}
.x122_c00314{left:734.700000px;}
.x2_c00314{left:738.000000px;}
.x116_c00314{left:739.050000px;}
.x159_c00314{left:741.000000px;}
.x12a_c00314{left:742.050000px;}
.x146_c00314{left:743.700000px;}
.xd5_c00314{left:747.300000px;}
.xce_c00314{left:749.700000px;}
.xde_c00314{left:754.950000px;}
.xe4_c00314{left:759.900000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls1_c00314{letter-spacing:0.000000pt;}
.ls0_c00314{letter-spacing:49.523810pt;}
.wsb_c00314{word-spacing:-76.190476pt;}
.ws6_c00314{word-spacing:-8.187135pt;}
.ws7_c00314{word-spacing:-7.065181pt;}
.ws0_c00314{word-spacing:-5.984465pt;}
.wsc_c00314{word-spacing:-5.321689pt;}
.ws12_c00314{word-spacing:-4.471251pt;}
.ws8_c00314{word-spacing:-3.723724pt;}
.ws13_c00314{word-spacing:0.000000pt;}
.wsd_c00314{word-spacing:5.268643pt;}
.ws9_c00314{word-spacing:8.301887pt;}
.ws11_c00314{word-spacing:19.682540pt;}
.wsa_c00314{word-spacing:22.857143pt;}
.wse_c00314{word-spacing:23.492404pt;}
.ws1_c00314{word-spacing:26.031746pt;}
.ws5_c00314{word-spacing:26.296296pt;}
.ws10_c00314{word-spacing:31.851852pt;}
.ws2_c00314{word-spacing:35.555556pt;}
.ws3_c00314{word-spacing:39.259259pt;}
.wsf_c00314{word-spacing:54.138861pt;}
.ws4_c00314{word-spacing:58.947368pt;}
._3_c00314{margin-left:-49.523810pt;}
._2_c00314{width:31.711712pt;}
._4_c00314{width:41.773012pt;}
._7_c00314{width:49.523810pt;}
._6_c00314{width:52.698413pt;}
._0_c00314{width:65.925926pt;}
._1_c00314{width:71.481481pt;}
._5_c00314{width:433.650794pt;}
.fs6_c00314{font-size:26.666667pt;}
.fs7_c00314{font-size:42.666667pt;}
.fs5_c00314{font-size:48.000000pt;}
.fs3_c00314{font-size:53.333333pt;}
.fs4_c00314{font-size:58.666667pt;}
.fs2_c00314{font-size:64.000000pt;}
.fs0_c00314{font-size:74.666667pt;}
.fs1_c00314{font-size:80.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.y36_c00314{bottom:146.266667pt;}
.y35_c00314{bottom:172.133333pt;}
.y34_c00314{bottom:185.200000pt;}
.y67_c00314{bottom:188.133333pt;}
.y33_c00314{bottom:197.733333pt;}
.y66_c00314{bottom:203.866667pt;}
.y32_c00314{bottom:210.266667pt;}
.y65_c00314{bottom:220.133333pt;}
.y31_c00314{bottom:223.466667pt;}
.y30_c00314{bottom:236.533333pt;}
.y64_c00314{bottom:240.666667pt;}
.y2f_c00314{bottom:249.333333pt;}
.y63_c00314{bottom:251.200000pt;}
.y62_c00314{bottom:261.466667pt;}
.y61_c00314{bottom:280.266667pt;}
.y2e_c00314{bottom:284.800000pt;}
.y60_c00314{bottom:296.000000pt;}
.y2d_c00314{bottom:304.000000pt;}
.y5f_c00314{bottom:311.733333pt;}
.y2c_c00314{bottom:319.733333pt;}
.y5e_c00314{bottom:327.066667pt;}
.y2b_c00314{bottom:335.466667pt;}
.y5d_c00314{bottom:350.666667pt;}
.y2a_c00314{bottom:351.466667pt;}
.y5c_c00314{bottom:366.666667pt;}
.y29_c00314{bottom:367.200000pt;}
.y5b_c00314{bottom:382.666667pt;}
.y28_c00314{bottom:382.933333pt;}
.y5a_c00314{bottom:398.400000pt;}
.y27_c00314{bottom:398.933333pt;}
.y59_c00314{bottom:414.400000pt;}
.y26_c00314{bottom:414.666667pt;}
.y58_c00314{bottom:429.733333pt;}
.y25_c00314{bottom:430.666667pt;}
.y24_c00314{bottom:446.400000pt;}
.y57_c00314{bottom:449.600000pt;}
.y23_c00314{bottom:463.066667pt;}
.y56_c00314{bottom:464.933333pt;}
.y22_c00314{bottom:478.400000pt;}
.y55_c00314{bottom:493.066667pt;}
.y21_c00314{bottom:494.133333pt;}
.y54_c00314{bottom:508.800000pt;}
.y20_c00314{bottom:510.133333pt;}
.y53_c00314{bottom:524.800000pt;}
.y1f_c00314{bottom:526.133333pt;}
.y1e_c00314{bottom:541.866667pt;}
.y52_c00314{bottom:544.266667pt;}
.y1d_c00314{bottom:557.866667pt;}
.y51_c00314{bottom:563.466667pt;}
.y1c_c00314{bottom:573.600000pt;}
.y50_c00314{bottom:583.200000pt;}
.y1b_c00314{bottom:589.600000pt;}
.y4f_c00314{bottom:599.466667pt;}
.y1a_c00314{bottom:605.333333pt;}
.y4e_c00314{bottom:615.200000pt;}
.y19_c00314{bottom:621.066667pt;}
.y4d_c00314{bottom:631.200000pt;}
.y18_c00314{bottom:637.066667pt;}
.y4c_c00314{bottom:646.933333pt;}
.y17_c00314{bottom:659.733333pt;}
.y4b_c00314{bottom:662.666667pt;}
.y16_c00314{bottom:672.266667pt;}
.y4a_c00314{bottom:678.666667pt;}
.y15_c00314{bottom:683.866667pt;}
.y49_c00314{bottom:694.666667pt;}
.y14_c00314{bottom:698.266667pt;}
.y13_c00314{bottom:709.333333pt;}
.y48_c00314{bottom:710.400000pt;}
.y12_c00314{bottom:723.466667pt;}
.y47_c00314{bottom:726.133333pt;}
.y11_c00314{bottom:739.733333pt;}
.y46_c00314{bottom:742.133333pt;}
.y10_c00314{bottom:755.466667pt;}
.y45_c00314{bottom:759.333333pt;}
.yf_c00314{bottom:771.466667pt;}
.y44_c00314{bottom:772.533333pt;}
.y43_c00314{bottom:785.066667pt;}
.ye_c00314{bottom:787.200000pt;}
.y42_c00314{bottom:798.133333pt;}
.yd_c00314{bottom:806.400000pt;}
.y41_c00314{bottom:816.000000pt;}
.yc_c00314{bottom:822.400000pt;}
.y40_c00314{bottom:832.000000pt;}
.yb_c00314{bottom:838.666667pt;}
.y3f_c00314{bottom:847.733333pt;}
.ya_c00314{bottom:854.400000pt;}
.y3e_c00314{bottom:863.066667pt;}
.y9_c00314{bottom:873.333333pt;}
.y3d_c00314{bottom:879.066667pt;}
.y3c_c00314{bottom:898.533333pt;}
.y8_c00314{bottom:899.866667pt;}
.y3b_c00314{bottom:914.533333pt;}
.y7_c00314{bottom:923.466667pt;}
.y3a_c00314{bottom:929.866667pt;}
.y6_c00314{bottom:939.600000pt;}
.y39_c00314{bottom:949.733333pt;}
.y5_c00314{bottom:954.933333pt;}
.y38_c00314{bottom:965.466667pt;}
.y4_c00314{bottom:978.533333pt;}
.y37_c00314{bottom:992.666667pt;}
.y3_c00314{bottom:994.266667pt;}
.y2_c00314{bottom:1014.400000pt;}
.y1_c00314{bottom:1017.600000pt;}
.h8_c00314{height:26.666667pt;}
.h9_c00314{height:42.666667pt;}
.h7_c00314{height:48.000000pt;}
.h5_c00314{height:53.333333pt;}
.h6_c00314{height:58.666667pt;}
.h4_c00314{height:64.000000pt;}
.h2_c00314{height:74.666667pt;}
.h3_c00314{height:80.000000pt;}
.h0_c00314{height:1127.039957pt;}
.h1_c00314{height:1127.333333pt;}
.w1_c00314{width:854.666667pt;}
.w0_c00314{width:854.720052pt;}
.x0_c00314{left:0.000000pt;}
.xb1_c00314{left:58.533333pt;}
.x54_c00314{left:62.666667pt;}
.x1f_c00314{left:64.000000pt;}
.xf_c00314{left:65.600000pt;}
.x67_c00314{left:67.866667pt;}
.x14_c00314{left:69.600000pt;}
.xb7_c00314{left:71.733333pt;}
.xaf_c00314{left:74.800000pt;}
.x5a_c00314{left:75.733333pt;}
.x85_c00314{left:76.800000pt;}
.x48_c00314{left:78.266667pt;}
.x32_c00314{left:79.200000pt;}
.x1c_c00314{left:80.666667pt;}
.x3_c00314{left:81.866667pt;}
.x3a_c00314{left:85.733333pt;}
.x72_c00314{left:87.066667pt;}
.x68_c00314{left:88.400000pt;}
.xbb_c00314{left:91.600000pt;}
.xb8_c00314{left:93.200000pt;}
.x1d_c00314{left:95.333333pt;}
.x25_c00314{left:96.533333pt;}
.xb2_c00314{left:98.400000pt;}
.x7a_c00314{left:99.333333pt;}
.x49_c00314{left:102.266667pt;}
.x3b_c00314{left:103.333333pt;}
.x21_c00314{left:104.266667pt;}
.x5e_c00314{left:105.200000pt;}
.x8f_c00314{left:107.066667pt;}
.xd_c00314{left:108.400000pt;}
.xa2_c00314{left:109.866667pt;}
.x4f_c00314{left:110.933333pt;}
.x9c_c00314{left:112.133333pt;}
.x4_c00314{left:113.866667pt;}
.x8a_c00314{left:115.600000pt;}
.x10_c00314{left:117.733333pt;}
.x5b_c00314{left:119.600000pt;}
.x7e_c00314{left:122.000000pt;}
.x20_c00314{left:123.200000pt;}
.x69_c00314{left:124.133333pt;}
.x6e_c00314{left:125.333333pt;}
.xb9_c00314{left:126.666667pt;}
.x9d_c00314{left:127.866667pt;}
.x5_c00314{left:128.933333pt;}
.xbc_c00314{left:130.666667pt;}
.xa8_c00314{left:131.600000pt;}
.x83_c00314{left:133.466667pt;}
.x1e_c00314{left:135.600000pt;}
.xe_c00314{left:136.933333pt;}
.x75_c00314{left:137.866667pt;}
.x33_c00314{left:140.933333pt;}
.x98_c00314{left:141.866667pt;}
.x15_c00314{left:143.866667pt;}
.x6_c00314{left:145.866667pt;}
.x37_c00314{left:146.933333pt;}
.xac_c00314{left:148.000000pt;}
.x4a_c00314{left:150.000000pt;}
.x26_c00314{left:151.600000pt;}
.x41_c00314{left:152.533333pt;}
.x2c_c00314{left:155.600000pt;}
.x5f_c00314{left:158.666667pt;}
.x16_c00314{left:163.066667pt;}
.x60_c00314{left:165.066667pt;}
.x6a_c00314{left:166.933333pt;}
.x7f_c00314{left:168.133333pt;}
.xa3_c00314{left:169.600000pt;}
.x27_c00314{left:170.800000pt;}
.x9f_c00314{left:172.000000pt;}
.x5c_c00314{left:173.333333pt;}
.x55_c00314{left:175.066667pt;}
.x38_c00314{left:176.400000pt;}
.x50_c00314{left:177.466667pt;}
.x9e_c00314{left:178.400000pt;}
.x79_c00314{left:179.333333pt;}
.x86_c00314{left:181.466667pt;}
.x42_c00314{left:182.933333pt;}
.xa4_c00314{left:184.666667pt;}
.xbd_c00314{left:185.866667pt;}
.x84_c00314{left:187.466667pt;}
.x2d_c00314{left:189.200000pt;}
.x76_c00314{left:190.666667pt;}
.x17_c00314{left:191.866667pt;}
.x28_c00314{left:192.933333pt;}
.xa9_c00314{left:194.000000pt;}
.x6f_c00314{left:196.000000pt;}
.x39_c00314{left:197.200000pt;}
.x11_c00314{left:199.733333pt;}
.x92_c00314{left:201.333333pt;}
.x7_c00314{left:202.533333pt;}
.x61_c00314{left:203.466667pt;}
.x70_c00314{left:204.400000pt;}
.x22_c00314{left:205.733333pt;}
.x2e_c00314{left:206.800000pt;}
.x43_c00314{left:208.533333pt;}
.x56_c00314{left:210.266667pt;}
.x7b_c00314{left:212.266667pt;}
.xb3_c00314{left:214.000000pt;}
.x29_c00314{left:215.066667pt;}
.x34_c00314{left:216.133333pt;}
.x6b_c00314{left:217.600000pt;}
.x51_c00314{left:219.333333pt;}
.x95_c00314{left:220.800000pt;}
.x8_c00314{left:223.600000pt;}
.xb5_c00314{left:226.533333pt;}
.x57_c00314{left:229.200000pt;}
.x90_c00314{left:231.866667pt;}
.xa5_c00314{left:232.933333pt;}
.x2f_c00314{left:236.266667pt;}
.x2a_c00314{left:237.200000pt;}
.x44_c00314{left:238.933333pt;}
.x18_c00314{left:239.866667pt;}
.x5d_c00314{left:241.866667pt;}
.xa0_c00314{left:242.800000pt;}
.x8e_c00314{left:245.200000pt;}
.x6c_c00314{left:247.066667pt;}
.xb0_c00314{left:248.000000pt;}
.x62_c00314{left:249.066667pt;}
.x3c_c00314{left:250.533333pt;}
.x77_c00314{left:251.466667pt;}
.x96_c00314{left:253.733333pt;}
.x63_c00314{left:255.466667pt;}
.x80_c00314{left:256.666667pt;}
.x87_c00314{left:257.600000pt;}
.x19_c00314{left:258.800000pt;}
.x23_c00314{left:260.400000pt;}
.xb6_c00314{left:261.733333pt;}
.x9_c00314{left:262.666667pt;}
.x6d_c00314{left:264.400000pt;}
.x52_c00314{left:265.733333pt;}
.x3d_c00314{left:266.800000pt;}
.x58_c00314{left:268.266667pt;}
.xa_c00314{left:269.733333pt;}
.x81_c00314{left:271.066667pt;}
.x99_c00314{left:272.133333pt;}
.x4b_c00314{left:273.066667pt;}
.x64_c00314{left:274.266667pt;}
.x45_c00314{left:276.400000pt;}
.x35_c00314{left:277.866667pt;}
.x1_c00314{left:280.933333pt;}
.x53_c00314{left:282.400000pt;}
.xb_c00314{left:285.733333pt;}
.x4c_c00314{left:286.800000pt;}
.x46_c00314{left:288.266667pt;}
.x30_c00314{left:290.400000pt;}
.x59_c00314{left:291.333333pt;}
.x97_c00314{left:292.400000pt;}
.xa1_c00314{left:293.733333pt;}
.xad_c00314{left:295.066667pt;}
.x93_c00314{left:296.000000pt;}
.x1a_c00314{left:297.200000pt;}
.x65_c00314{left:298.266667pt;}
.x71_c00314{left:299.200000pt;}
.x12_c00314{left:300.266667pt;}
.x7c_c00314{left:301.200000pt;}
.x9a_c00314{left:302.266667pt;}
.x3e_c00314{left:305.200000pt;}
.x8b_c00314{left:307.600000pt;}
.xb4_c00314{left:309.600000pt;}
.xa6_c00314{left:312.000000pt;}
.x24_c00314{left:313.466667pt;}
.x3f_c00314{left:314.533333pt;}
.xab_c00314{left:316.000000pt;}
.x31_c00314{left:316.933333pt;}
.x36_c00314{left:317.866667pt;}
.x88_c00314{left:318.800000pt;}
.xaa_c00314{left:322.266667pt;}
.x73_c00314{left:323.200000pt;}
.x66_c00314{left:324.133333pt;}
.x8c_c00314{left:326.533333pt;}
.x4d_c00314{left:327.866667pt;}
.x13_c00314{left:328.800000pt;}
.x2b_c00314{left:330.000000pt;}
.xba_c00314{left:330.933333pt;}
.xa7_c00314{left:331.866667pt;}
.x7d_c00314{left:333.200000pt;}
.x91_c00314{left:334.533333pt;}
.x89_c00314{left:335.733333pt;}
.x47_c00314{left:337.200000pt;}
.x40_c00314{left:338.800000pt;}
.x94_c00314{left:339.866667pt;}
.x82_c00314{left:343.066667pt;}
.x9b_c00314{left:344.133333pt;}
.xc_c00314{left:347.866667pt;}
.x74_c00314{left:349.066667pt;}
.x8d_c00314{left:350.266667pt;}
.x1b_c00314{left:351.600000pt;}
.xae_c00314{left:353.866667pt;}
.x78_c00314{left:356.133333pt;}
.x4e_c00314{left:357.333333pt;}
.x15a_c00314{left:373.866667pt;}
.x14b_c00314{left:375.333333pt;}
.x142_c00314{left:377.333333pt;}
.x137_c00314{left:378.933333pt;}
.xf3_c00314{left:380.800000pt;}
.xd8_c00314{left:382.400000pt;}
.xbe_c00314{left:383.333333pt;}
.x161_c00314{left:388.133333pt;}
.x153_c00314{left:389.600000pt;}
.x14a_c00314{left:390.933333pt;}
.x144_c00314{left:392.400000pt;}
.x139_c00314{left:393.866667pt;}
.x134_c00314{left:394.933333pt;}
.x117_c00314{left:396.133333pt;}
.xdf_c00314{left:397.466667pt;}
.xd6_c00314{left:398.400000pt;}
.xc5_c00314{left:399.333333pt;}
.xf9_c00314{left:400.533333pt;}
.x10c_c00314{left:406.133333pt;}
.x135_c00314{left:409.333333pt;}
.x12b_c00314{left:410.666667pt;}
.x147_c00314{left:412.400000pt;}
.x14c_c00314{left:413.466667pt;}
.xc6_c00314{left:415.333333pt;}
.x156_c00314{left:417.333333pt;}
.xe5_c00314{left:418.800000pt;}
.x154_c00314{left:420.000000pt;}
.x13e_c00314{left:420.933333pt;}
.xc0_c00314{left:421.866667pt;}
.xc7_c00314{left:423.066667pt;}
.x13a_c00314{left:424.000000pt;}
.x160_c00314{left:426.133333pt;}
.xd7_c00314{left:427.866667pt;}
.x11f_c00314{left:429.066667pt;}
.xfa_c00314{left:432.266667pt;}
.xf4_c00314{left:435.866667pt;}
.x162_c00314{left:437.066667pt;}
.xf1_c00314{left:439.066667pt;}
.xcf_c00314{left:441.733333pt;}
.x13b_c00314{left:442.933333pt;}
.x118_c00314{left:443.866667pt;}
.xbf_c00314{left:445.066667pt;}
.x138_c00314{left:447.333333pt;}
.xff_c00314{left:451.066667pt;}
.xc1_c00314{left:452.000000pt;}
.xe6_c00314{left:453.066667pt;}
.xc8_c00314{left:454.800000pt;}
.x100_c00314{left:456.800000pt;}
.xfb_c00314{left:460.400000pt;}
.xf2_c00314{left:464.000000pt;}
.x14f_c00314{left:466.266667pt;}
.x12c_c00314{left:467.600000pt;}
.x119_c00314{left:468.533333pt;}
.x101_c00314{left:469.866667pt;}
.x14d_c00314{left:471.066667pt;}
.x112_c00314{left:474.266667pt;}
.x13c_c00314{left:475.200000pt;}
.x102_c00314{left:476.266667pt;}
.xd0_c00314{left:478.266667pt;}
.xd9_c00314{left:480.666667pt;}
.x15b_c00314{left:481.733333pt;}
.x103_c00314{left:482.933333pt;}
.x123_c00314{left:484.133333pt;}
.xec_c00314{left:485.200000pt;}
.x11a_c00314{left:486.400000pt;}
.xe0_c00314{left:488.266667pt;}
.x104_c00314{left:489.333333pt;}
.x157_c00314{left:491.600000pt;}
.xf5_c00314{left:492.800000pt;}
.xe7_c00314{left:493.733333pt;}
.xc9_c00314{left:494.800000pt;}
.x105_c00314{left:495.733333pt;}
.x15d_c00314{left:498.266667pt;}
.x130_c00314{left:499.466667pt;}
.xfc_c00314{left:500.666667pt;}
.x10d_c00314{left:501.733333pt;}
.xca_c00314{left:503.466667pt;}
.x126_c00314{left:504.800000pt;}
.x120_c00314{left:506.266667pt;}
.x12d_c00314{left:510.133333pt;}
.xd1_c00314{left:512.533333pt;}
.x10e_c00314{left:514.533333pt;}
.xe8_c00314{left:515.466667pt;}
.x155_c00314{left:517.333333pt;}
.xc2_c00314{left:518.933333pt;}
.x148_c00314{left:519.866667pt;}
.x10f_c00314{left:520.933333pt;}
.xed_c00314{left:522.266667pt;}
.x11b_c00314{left:523.466667pt;}
.x150_c00314{left:524.533333pt;}
.xda_c00314{left:526.400000pt;}
.x113_c00314{left:529.866667pt;}
.x131_c00314{left:531.200000pt;}
.x11c_c00314{left:532.133333pt;}
.x106_c00314{left:534.666667pt;}
.xf6_c00314{left:536.266667pt;}
.xe1_c00314{left:537.600000pt;}
.x127_c00314{left:538.666667pt;}
.x124_c00314{left:539.866667pt;}
.x107_c00314{left:540.800000pt;}
.xfd_c00314{left:542.000000pt;}
.x15e_c00314{left:545.333333pt;}
.xee_c00314{left:547.200000pt;}
.x125_c00314{left:548.533333pt;}
.x132_c00314{left:549.466667pt;}
.x114_c00314{left:552.000000pt;}
.x13f_c00314{left:553.733333pt;}
.x110_c00314{left:556.133333pt;}
.xcb_c00314{left:557.600000pt;}
.x108_c00314{left:560.000000pt;}
.x109_c00314{left:566.666667pt;}
.xef_c00314{left:570.266667pt;}
.x11d_c00314{left:574.000000pt;}
.x133_c00314{left:575.066667pt;}
.x151_c00314{left:576.400000pt;}
.x14e_c00314{left:577.733333pt;}
.x10a_c00314{left:579.466667pt;}
.xe9_c00314{left:581.466667pt;}
.xd2_c00314{left:583.333333pt;}
.xf7_c00314{left:584.533333pt;}
.x12e_c00314{left:585.600000pt;}
.x145_c00314{left:589.066667pt;}
.xfe_c00314{left:590.000000pt;}
.xdb_c00314{left:591.066667pt;}
.xe2_c00314{left:594.266667pt;}
.x115_c00314{left:596.133333pt;}
.xc3_c00314{left:597.066667pt;}
.x121_c00314{left:598.000000pt;}
.x143_c00314{left:599.466667pt;}
.x149_c00314{left:601.866667pt;}
.xd3_c00314{left:603.200000pt;}
.x152_c00314{left:604.933333pt;}
.x11e_c00314{left:606.666667pt;}
.xf8_c00314{left:608.266667pt;}
.x140_c00314{left:609.733333pt;}
.x128_c00314{left:610.666667pt;}
.x136_c00314{left:612.400000pt;}
.x163_c00314{left:614.000000pt;}
.x10b_c00314{left:616.000000pt;}
.xcc_c00314{left:617.733333pt;}
.xf0_c00314{left:619.866667pt;}
.x13d_c00314{left:621.733333pt;}
.xdc_c00314{left:624.000000pt;}
.xea_c00314{left:624.933333pt;}
.xcd_c00314{left:626.400000pt;}
.x141_c00314{left:627.600000pt;}
.x158_c00314{left:628.533333pt;}
.xd4_c00314{left:632.266667pt;}
.x15c_c00314{left:633.200000pt;}
.xe3_c00314{left:635.200000pt;}
.x12f_c00314{left:636.800000pt;}
.x129_c00314{left:639.733333pt;}
.xdd_c00314{left:642.266667pt;}
.xeb_c00314{left:643.866667pt;}
.xc4_c00314{left:646.000000pt;}
.x111_c00314{left:647.333333pt;}
.x15f_c00314{left:650.666667pt;}
.x122_c00314{left:653.066667pt;}
.x2_c00314{left:656.000000pt;}
.x116_c00314{left:656.933333pt;}
.x159_c00314{left:658.666667pt;}
.x12a_c00314{left:659.600000pt;}
.x146_c00314{left:661.066667pt;}
.xd5_c00314{left:664.266667pt;}
.xce_c00314{left:666.400000pt;}
.xde_c00314{left:671.066667pt;}
.xe4_c00314{left:675.466667pt;}
}





/* 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_c00315 {
    display:none;
  }
  .loading-indicator_c00315.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00315 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_c00315 { 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_c00315" -> "#page-container .classname_c00315")
 */
.pf_c00315 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00315 { /* 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_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00315 { /* 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_c00315 { /* 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_c00315 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00315 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00315 {overflow:visible;}
  }
}
.c_c00315 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00315 { /* 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_c00315:after { /* webkit #35443 */
  content: '';
}
.t_c00315:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00315 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 */
}
.__c00315 { /* 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_c00315 { /* info for Javascript */
  display:none;
}
.l_c00315 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00315 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00315 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00315: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_c00315 {
    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_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00315.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_c00315 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00315;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.000000;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;}
.mc0_c00315{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m85_c00315{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00315{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00315{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.md1_c00315{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md0_c00315{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m92_c00315{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.md2_c00315{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00315{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00315{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00315{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m23_c00315{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00315{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.meb_c00315{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00315{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00315{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m83_c00315{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m30_c00315{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00315{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00315{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00315{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00315{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m70_c00315{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m0_c00315{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00315{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00315{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m113_c00315{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00315{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m38_c00315{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mca_c00315{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00315{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00315{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00315{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mce_c00315{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md7_c00315{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00315{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00315{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m4_c00315{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00315{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00315{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m11_c00315{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m34_c00315{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00315{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m106_c00315{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00315{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00315{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m18_c00315{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00315{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00315{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00315{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m82_c00315{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.maf_c00315{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00315{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m74_c00315{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m28_c00315{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m84_c00315{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00315{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00315{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m39_c00315{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00315{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00315{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mba_c00315{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00315{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00315{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m13_c00315{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m8_c00315{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m50_c00315{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mea_c00315{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m37_c00315{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00315{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mad_c00315{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00315{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m32_c00315{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00315{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00315{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.md6_c00315{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m16_c00315{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00315{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m49_c00315{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3_c00315{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m62_c00315{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00315{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00315{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m67_c00315{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m25_c00315{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00315{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m14_c00315{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m61_c00315{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m58_c00315{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00315{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00315{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00315{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00315{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m15_c00315{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb_c00315{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9_c00315{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00315{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m17_c00315{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m26_c00315{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m60_c00315{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md8_c00315{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00315{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00315{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m102_c00315{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00315{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m12_c00315{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00315{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00315{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7_c00315{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00315{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m101_c00315{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00315{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m46_c00315{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m112_c00315{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m27_c00315{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6_c00315{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mda_c00315{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m43_c00315{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00315{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m81_c00315{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m107_c00315{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m36_c00315{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00315{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00315{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m79_c00315{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00315{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m33_c00315{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mef_c00315{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00315{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.med_c00315{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m71_c00315{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00315{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m22_c00315{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00315{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m19_c00315{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m95_c00315{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5_c00315{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00315{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00315{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00315{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00315{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00315{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00315{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m44_c00315{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m63_c00315{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m52_c00315{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m98_c00315{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00315{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00315{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m29_c00315{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00315{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00315{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00315{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me3_c00315{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m55_c00315{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m65_c00315{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m93_c00315{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mab_c00315{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mee_c00315{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m51_c00315{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.me_c00315{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me4_c00315{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mde_c00315{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma_c00315{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m47_c00315{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00315{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m59_c00315{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md9_c00315{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m54_c00315{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m75_c00315{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m109_c00315{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m42_c00315{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me0_c00315{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me5_c00315{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m110_c00315{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00315{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00315{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00315{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m103_c00315{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.me7_c00315{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00315{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m94_c00315{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me6_c00315{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mac_c00315{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m89_c00315{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m80_c00315{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00315{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00315{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00315{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m40_c00315{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00315{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m31_c00315{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md_c00315{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10_c00315{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mae_c00315{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m57_c00315{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m45_c00315{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m53_c00315{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m48_c00315{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00315{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m88_c00315{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00315{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2_c00315{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m91_c00315{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00315{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00315{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.maa_c00315{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md5_c00315{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me9_c00315{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00315{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00315{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00315{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00315{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me8_c00315{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00315{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00315{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m24_c00315{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m41_c00315{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00315{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m100_c00315{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00315{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00315{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m68_c00315{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00315{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00315{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mec_c00315{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00315{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m35_c00315{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m20_c00315{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00315{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00315{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00315{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf_c00315{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00315{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);}
.m111_c00315{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m64_c00315{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me2_c00315{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m21_c00315{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m56_c00315{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00315{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00315{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00315{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc_c00315{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00315{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m99_c00315{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00315{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m78_c00315{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m69_c00315{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m97_c00315{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m90_c00315{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00315{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m114_c00315{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00315{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m73_c00315{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m77_c00315{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.me1_c00315{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m87_c00315{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00315{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m115_c00315{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00315{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00315{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m66_c00315{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m105_c00315{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m76_c00315{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m104_c00315{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m96_c00315{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00315{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md3_c00315{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mff_c00315{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00315{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00315{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m86_c00315{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m108_c00315{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00315{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m1_c00315{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00315{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.md4_c00315{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m72_c00315{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls0_c00315{letter-spacing:0.000000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{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__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00315{word-spacing:-9.951220px;}
.ws0_c00315{word-spacing:-1.136364px;}
.ws9_c00315{word-spacing:0.000000px;}
.ws7_c00315{word-spacing:8.157895px;}
.ws6_c00315{word-spacing:12.955414px;}
.ws2_c00315{word-spacing:25.714286px;}
.ws8_c00315{word-spacing:31.099237px;}
.ws3_c00315{word-spacing:40.000000px;}
.ws4_c00315{word-spacing:44.166667px;}
.ws1_c00315{word-spacing:58.750000px;}
._1_c00315{width:74.166667px;}
._2_c00315{width:80.416667px;}
._0_c00315{width:90.000000px;}
.fc0_c00315{color:transparent;}
.fs5_c00315{font-size:54.000000px;}
.fs2_c00315{font-size:60.000000px;}
.fs1_c00315{font-size:66.000000px;}
.fs3_c00315{font-size:72.000000px;}
.fs4_c00315{font-size:78.000000px;}
.fs0_c00315{font-size:108.000000px;}
.y0_c00315{bottom:0.000000px;}
.y67_c00315{bottom:181.500000px;}
.y66_c00315{bottom:203.100000px;}
.y32_c00315{bottom:221.100000px;}
.y65_c00315{bottom:223.800000px;}
.y31_c00315{bottom:241.200000px;}
.y64_c00315{bottom:241.500000px;}
.y63_c00315{bottom:258.900000px;}
.y30_c00315{bottom:259.500000px;}
.y62_c00315{bottom:276.600000px;}
.y2f_c00315{bottom:277.200000px;}
.y61_c00315{bottom:294.600000px;}
.y2e_c00315{bottom:298.350000px;}
.y60_c00315{bottom:312.300000px;}
.y2d_c00315{bottom:316.050000px;}
.y5f_c00315{bottom:330.000000px;}
.y2c_c00315{bottom:342.750000px;}
.y5e_c00315{bottom:347.700000px;}
.y2b_c00315{bottom:364.650000px;}
.y5d_c00315{bottom:365.700000px;}
.y2a_c00315{bottom:386.550000px;}
.y5c_c00315{bottom:390.900000px;}
.y29_c00315{bottom:404.850000px;}
.y5b_c00315{bottom:405.300000px;}
.y5a_c00315{bottom:419.250000px;}
.y28_c00315{bottom:422.550000px;}
.y59_c00315{bottom:434.400000px;}
.y27_c00315{bottom:440.250000px;}
.y58_c00315{bottom:448.800000px;}
.y26_c00315{bottom:458.250000px;}
.y57_c00315{bottom:462.150000px;}
.y56_c00315{bottom:477.300000px;}
.y25_c00315{bottom:479.550000px;}
.y24_c00315{bottom:494.400000px;}
.y55_c00315{bottom:497.100000px;}
.y23_c00315{bottom:507.000000px;}
.y54_c00315{bottom:515.100000px;}
.y22_c00315{bottom:523.500000px;}
.y53_c00315{bottom:532.800000px;}
.y21_c00315{bottom:539.550000px;}
.y52_c00315{bottom:550.500000px;}
.y20_c00315{bottom:560.100000px;}
.y51_c00315{bottom:568.500000px;}
.y1f_c00315{bottom:577.800000px;}
.y50_c00315{bottom:590.400000px;}
.y1e_c00315{bottom:595.800000px;}
.y4f_c00315{bottom:608.100000px;}
.y1d_c00315{bottom:613.800000px;}
.y4e_c00315{bottom:625.950000px;}
.y1c_c00315{bottom:635.700000px;}
.y4d_c00315{bottom:643.650000px;}
.y1b_c00315{bottom:652.650000px;}
.y4c_c00315{bottom:665.550000px;}
.y1a_c00315{bottom:671.700000px;}
.y4b_c00315{bottom:683.250000px;}
.y19_c00315{bottom:693.300000px;}
.y4a_c00315{bottom:713.850000px;}
.y18_c00315{bottom:718.950000px;}
.y49_c00315{bottom:736.200000px;}
.y17_c00315{bottom:737.700000px;}
.y48_c00315{bottom:758.550000px;}
.y16_c00315{bottom:759.600000px;}
.y47_c00315{bottom:775.800000px;}
.y15_c00315{bottom:778.350000px;}
.y46_c00315{bottom:793.350000px;}
.y14_c00315{bottom:795.600000px;}
.y45_c00315{bottom:811.050000px;}
.y13_c00315{bottom:813.900000px;}
.y44_c00315{bottom:828.750000px;}
.y12_c00315{bottom:831.150000px;}
.y43_c00315{bottom:846.450000px;}
.y11_c00315{bottom:848.850000px;}
.y42_c00315{bottom:864.450000px;}
.y10_c00315{bottom:866.850000px;}
.y41_c00315{bottom:882.150000px;}
.yf_c00315{bottom:888.450000px;}
.y40_c00315{bottom:900.150000px;}
.ye_c00315{bottom:907.200000px;}
.y3f_c00315{bottom:917.850000px;}
.yd_c00315{bottom:928.500000px;}
.y3e_c00315{bottom:935.550000px;}
.yc_c00315{bottom:946.500000px;}
.y3d_c00315{bottom:953.250000px;}
.yb_c00315{bottom:964.500000px;}
.y3c_c00315{bottom:970.950000px;}
.ya_c00315{bottom:982.200000px;}
.y3b_c00315{bottom:988.950000px;}
.y9_c00315{bottom:999.900000px;}
.y3a_c00315{bottom:1014.900000px;}
.y8_c00315{bottom:1017.600000px;}
.y39_c00315{bottom:1029.300000px;}
.y7_c00315{bottom:1035.300000px;}
.y38_c00315{bottom:1043.400000px;}
.y6_c00315{bottom:1053.300000px;}
.y37_c00315{bottom:1056.300000px;}
.y5_c00315{bottom:1070.550000px;}
.y36_c00315{bottom:1072.050000px;}
.y4_c00315{bottom:1088.250000px;}
.y35_c00315{bottom:1090.800000px;}
.y3_c00315{bottom:1106.250000px;}
.y34_c00315{bottom:1108.800000px;}
.y2_c00315{bottom:1123.500000px;}
.y33_c00315{bottom:1126.500000px;}
.y1_c00315{bottom:1152.300000px;}
.h7_c00315{height:54.000000px;}
.h4_c00315{height:60.000000px;}
.h3_c00315{height:66.000000px;}
.h5_c00315{height:72.000000px;}
.h6_c00315{height:78.000000px;}
.h2_c00315{height:108.000000px;}
.h1_c00315{height:1273.500000px;}
.h0_c00315{height:1273.679993px;}
.w1_c00315{width:961.500000px;}
.w0_c00315{width:961.560058px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:190.800000px;}
.x53_c00315{left:192.900000px;}
.x6e_c00315{left:194.700000px;}
.x8b_c00315{left:196.950000px;}
.x8d_c00315{left:198.750000px;}
.x96_c00315{left:199.800000px;}
.x99_c00315{left:201.600000px;}
.xa1_c00315{left:203.700000px;}
.x13_c00315{left:204.750000px;}
.x3_c00315{left:208.500000px;}
.x3d_c00315{left:209.550000px;}
.x5b_c00315{left:211.350000px;}
.x7a_c00315{left:212.400000px;}
.x7d_c00315{left:213.450000px;}
.x85_c00315{left:214.650000px;}
.x8f_c00315{left:216.750000px;}
.x9a_c00315{left:219.600000px;}
.x14e_c00315{left:220.650000px;}
.x9f_c00315{left:222.600000px;}
.x71_c00315{left:227.100000px;}
.x1a_c00315{left:228.600000px;}
.x77_c00315{left:230.700000px;}
.x81_c00315{left:232.200000px;}
.x1f_c00315{left:233.700000px;}
.x5c_c00315{left:235.800000px;}
.x27_c00315{left:237.150000px;}
.x78_c00315{left:239.400000px;}
.x34_c00315{left:241.050000px;}
.x9d_c00315{left:242.250000px;}
.x4_c00315{left:244.500000px;}
.x7e_c00315{left:245.550000px;}
.x14_c00315{left:248.250000px;}
.x28_c00315{left:249.750000px;}
.x54_c00315{left:253.800000px;}
.xc_c00315{left:257.400000px;}
.x1b_c00315{left:258.450000px;}
.x8c_c00315{left:259.500000px;}
.x48_c00315{left:261.150000px;}
.x35_c00315{left:264.450000px;}
.x97_c00315{left:268.650000px;}
.x93_c00315{left:270.900000px;}
.x50_c00315{left:272.550000px;}
.x55_c00315{left:273.900000px;}
.xd_c00315{left:275.700000px;}
.x30_c00315{left:276.750000px;}
.x42_c00315{left:278.550000px;}
.x36_c00315{left:280.350000px;}
.xa0_c00315{left:281.700000px;}
.x82_c00315{left:283.650000px;}
.x29_c00315{left:285.000000px;}
.x20_c00315{left:287.700000px;}
.x90_c00315{left:290.100000px;}
.x5d_c00315{left:292.050000px;}
.x86_c00315{left:293.850000px;}
.x5_c00315{left:294.900000px;}
.x58_c00315{left:297.000000px;}
.x43_c00315{left:299.100000px;}
.xe_c00315{left:302.400000px;}
.x49_c00315{left:304.350000px;}
.x7f_c00315{left:305.700000px;}
.x94_c00315{left:307.650000px;}
.x37_c00315{left:309.150000px;}
.x61_c00315{left:310.650000px;}
.x15_c00315{left:312.000000px;}
.x6d_c00315{left:314.850000px;}
.x69_c00315{left:316.800000px;}
.x59_c00315{left:318.300000px;}
.x6_c00315{left:319.350000px;}
.x4a_c00315{left:320.850000px;}
.x72_c00315{left:322.950000px;}
.x1c_c00315{left:324.000000px;}
.x21_c00315{left:326.250000px;}
.x3e_c00315{left:328.350000px;}
.x65_c00315{left:330.300000px;}
.x31_c00315{left:335.850000px;}
.x73_c00315{left:338.850000px;}
.x9b_c00315{left:339.900000px;}
.x2a_c00315{left:341.100000px;}
.x5e_c00315{left:344.250000px;}
.x7_c00315{left:345.600000px;}
.xf_c00315{left:349.950000px;}
.x87_c00315{left:351.000000px;}
.x8e_c00315{left:352.500000px;}
.x51_c00315{left:353.550000px;}
.x6a_c00315{left:356.100000px;}
.x98_c00315{left:357.900000px;}
.x32_c00315{left:358.950000px;}
.x2b_c00315{left:362.700000px;}
.x95_c00315{left:363.900000px;}
.x22_c00315{left:365.550000px;}
.x88_c00315{left:367.200000px;}
.x16_c00315{left:369.900000px;}
.x38_c00315{left:371.850000px;}
.x2e_c00315{left:373.200000px;}
.x5f_c00315{left:375.150000px;}
.x6b_c00315{left:377.400000px;}
.x4b_c00315{left:379.050000px;}
.x3f_c00315{left:380.850000px;}
.x44_c00315{left:382.950000px;}
.x66_c00315{left:384.300000px;}
.x23_c00315{left:385.650000px;}
.x5a_c00315{left:386.700000px;}
.x80_c00315{left:388.800000px;}
.x8_c00315{left:391.650000px;}
.x17_c00315{left:393.600000px;}
.x62_c00315{left:397.350000px;}
.x14f_c00315{left:398.850000px;}
.x10_c00315{left:400.650000px;}
.x45_c00315{left:402.750000px;}
.x67_c00315{left:404.100000px;}
.x74_c00315{left:405.900000px;}
.x60_c00315{left:407.550000px;}
.x4c_c00315{left:411.450000px;}
.x39_c00315{left:415.050000px;}
.x11_c00315{left:416.100000px;}
.x24_c00315{left:419.550000px;}
.x1d_c00315{left:420.900000px;}
.x75_c00315{left:422.100000px;}
.x18_c00315{left:423.450000px;}
.x46_c00315{left:425.100000px;}
.x6f_c00315{left:426.600000px;}
.x2_c00315{left:429.450000px;}
.x52_c00315{left:431.250000px;}
.x6c_c00315{left:434.250000px;}
.x89_c00315{left:435.900000px;}
.xa2_c00315{left:438.450000px;}
.x3a_c00315{left:439.500000px;}
.x7b_c00315{left:441.750000px;}
.x9_c00315{left:444.900000px;}
.x1e_c00315{left:446.100000px;}
.x40_c00315{left:448.200000px;}
.x91_c00315{left:449.550000px;}
.x4d_c00315{left:450.750000px;}
.x2c_c00315{left:452.250000px;}
.x19_c00315{left:454.350000px;}
.x12_c00315{left:455.700000px;}
.x25_c00315{left:461.250000px;}
.x83_c00315{left:463.350000px;}
.xa_c00315{left:464.400000px;}
.x2f_c00315{left:466.050000px;}
.x79_c00315{left:467.250000px;}
.x26_c00315{left:470.550000px;}
.x8a_c00315{left:471.900000px;}
.xa3_c00315{left:474.450000px;}
.x7c_c00315{left:475.950000px;}
.x68_c00315{left:477.450000px;}
.x4e_c00315{left:479.250000px;}
.x76_c00315{left:480.300000px;}
.x70_c00315{left:481.650000px;}
.x63_c00315{left:484.200000px;}
.xb_c00315{left:487.050000px;}
.x4f_c00315{left:489.000000px;}
.x56_c00315{left:491.100000px;}
.x3b_c00315{left:492.150000px;}
.x9c_c00315{left:495.000000px;}
.x92_c00315{left:496.350000px;}
.x47_c00315{left:499.950000px;}
.x33_c00315{left:503.100000px;}
.x9e_c00315{left:506.250000px;}
.x3c_c00315{left:508.350000px;}
.x57_c00315{left:509.850000px;}
.x64_c00315{left:511.500000px;}
.x41_c00315{left:515.100000px;}
.x84_c00315{left:518.850000px;}
.x2d_c00315{left:520.950000px;}
.x150_c00315{left:525.150000px;}
.xb5_c00315{left:544.650000px;}
.xd9_c00315{left:546.150000px;}
.x118_c00315{left:549.300000px;}
.x11a_c00315{left:550.500000px;}
.x126_c00315{left:551.550000px;}
.x130_c00315{left:552.900000px;}
.x13e_c00315{left:554.700000px;}
.x151_c00315{left:556.800000px;}
.xbe_c00315{left:559.050000px;}
.xa4_c00315{left:562.350000px;}
.xdf_c00315{left:564.150000px;}
.xf3_c00315{left:565.800000px;}
.x109_c00315{left:567.150000px;}
.x11d_c00315{left:568.800000px;}
.x12e_c00315{left:570.000000px;}
.x141_c00315{left:572.400000px;}
.xc4_c00315{left:574.200000px;}
.xee_c00315{left:580.800000px;}
.x139_c00315{left:581.850000px;}
.x11e_c00315{left:587.550000px;}
.xbf_c00315{left:588.600000px;}
.xac_c00315{left:591.150000px;}
.x129_c00315{left:592.650000px;}
.xd5_c00315{left:596.550000px;}
.x122_c00315{left:600.600000px;}
.xf7_c00315{left:602.250000px;}
.xc5_c00315{left:604.050000px;}
.xb6_c00315{left:605.100000px;}
.xe8_c00315{left:607.650000px;}
.x12f_c00315{left:609.300000px;}
.xe4_c00315{left:611.550000px;}
.x13d_c00315{left:612.600000px;}
.xd6_c00315{left:615.300000px;}
.xfe_c00315{left:617.250000px;}
.x120_c00315{left:619.350000px;}
.x136_c00315{left:620.700000px;}
.xc6_c00315{left:623.100000px;}
.xa5_c00315{left:625.050000px;}
.xe9_c00315{left:628.200000px;}
.x142_c00315{left:629.250000px;}
.xda_c00315{left:631.050000px;}
.xc0_c00315{left:632.550000px;}
.x14b_c00315{left:633.600000px;}
.xe0_c00315{left:635.100000px;}
.x121_c00315{left:637.050000px;}
.xad_c00315{left:638.250000px;}
.x103_c00315{left:640.350000px;}
.x134_c00315{left:644.100000px;}
.x131_c00315{left:645.750000px;}
.xf8_c00315{left:647.250000px;}
.xa6_c00315{left:648.750000px;}
.xae_c00315{left:651.150000px;}
.xf4_c00315{left:652.200000px;}
.xff_c00315{left:653.250000px;}
.x10a_c00315{left:654.600000px;}
.xea_c00315{left:655.950000px;}
.x135_c00315{left:657.000000px;}
.xd1_c00315{left:660.000000px;}
.x143_c00315{left:662.400000px;}
.xb7_c00315{left:666.600000px;}
.x13f_c00315{left:669.900000px;}
.xdb_c00315{left:672.150000px;}
.xaf_c00315{left:674.550000px;}
.xe5_c00315{left:676.350000px;}
.x12a_c00315{left:677.850000px;}
.x132_c00315{left:679.200000px;}
.xc7_c00315{left:681.000000px;}
.xc1_c00315{left:684.450000px;}
.xf9_c00315{left:685.800000px;}
.xb0_c00315{left:687.900000px;}
.x100_c00315{left:689.550000px;}
.xe1_c00315{left:691.200000px;}
.x112_c00315{left:693.150000px;}
.x147_c00315{left:694.500000px;}
.xc8_c00315{left:696.150000px;}
.xef_c00315{left:698.850000px;}
.xa7_c00315{left:700.950000px;}
.xeb_c00315{left:702.750000px;}
.xc2_c00315{left:705.000000px;}
.xb8_c00315{left:706.950000px;}
.x127_c00315{left:708.450000px;}
.xc9_c00315{left:710.550000px;}
.x11b_c00315{left:711.750000px;}
.x10b_c00315{left:713.700000px;}
.xca_c00315{left:717.450000px;}
.xd2_c00315{left:718.650000px;}
.xec_c00315{left:720.450000px;}
.x113_c00315{left:721.950000px;}
.xf5_c00315{left:723.150000px;}
.xcb_c00315{left:724.950000px;}
.xb9_c00315{left:726.750000px;}
.x13c_c00315{left:728.850000px;}
.xe6_c00315{left:731.400000px;}
.x123_c00315{left:733.500000px;}
.x14d_c00315{left:735.150000px;}
.x133_c00315{left:737.100000px;}
.x145_c00315{left:738.750000px;}
.xfa_c00315{left:739.800000px;}
.x114_c00315{left:741.000000px;}
.xa8_c00315{left:742.350000px;}
.xdc_c00315{left:743.400000px;}
.x13a_c00315{left:745.050000px;}
.xcc_c00315{left:746.850000px;}
.xe2_c00315{left:750.600000px;}
.xb1_c00315{left:751.950000px;}
.xc3_c00315{left:753.900000px;}
.x12b_c00315{left:755.100000px;}
.xd7_c00315{left:757.050000px;}
.x10f_c00315{left:758.250000px;}
.x107_c00315{left:761.550000px;}
.xf0_c00315{left:762.600000px;}
.x10c_c00315{left:765.900000px;}
.xb2_c00315{left:767.850000px;}
.xfb_c00315{left:768.900000px;}
.x104_c00315{left:772.200000px;}
.xba_c00315{left:773.550000px;}
.xed_c00315{left:774.750000px;}
.x14c_c00315{left:777.450000px;}
.x11f_c00315{left:779.100000px;}
.xa9_c00315{left:781.650000px;}
.xcd_c00315{left:783.450000px;}
.xdd_c00315{left:784.500000px;}
.x13b_c00315{left:787.500000px;}
.x101_c00315{left:789.300000px;}
.x12c_c00315{left:791.850000px;}
.xe3_c00315{left:793.050000px;}
.x110_c00315{left:794.550000px;}
.x14a_c00315{left:797.700000px;}
.x128_c00315{left:799.800000px;}
.x108_c00315{left:801.150000px;}
.xbb_c00315{left:802.350000px;}
.xaa_c00315{left:807.600000px;}
.x115_c00315{left:808.650000px;}
.xce_c00315{left:809.700000px;}
.xd3_c00315{left:810.750000px;}
.xd8_c00315{left:811.800000px;}
.x124_c00315{left:814.800000px;}
.x148_c00315{left:817.200000px;}
.xf6_c00315{left:818.250000px;}
.x137_c00315{left:819.450000px;}
.xf1_c00315{left:821.700000px;}
.x146_c00315{left:823.350000px;}
.x144_c00315{left:825.300000px;}
.xfc_c00315{left:826.500000px;}
.xe7_c00315{left:828.300000px;}
.x105_c00315{left:831.300000px;}
.xbc_c00315{left:832.950000px;}
.x119_c00315{left:834.450000px;}
.xb3_c00315{left:835.500000px;}
.x12d_c00315{left:836.850000px;}
.x11c_c00315{left:838.500000px;}
.xcf_c00315{left:840.000000px;}
.x10d_c00315{left:841.050000px;}
.xd4_c00315{left:842.100000px;}
.x102_c00315{left:845.850000px;}
.x10e_c00315{left:849.300000px;}
.xfd_c00315{left:851.700000px;}
.xde_c00315{left:855.000000px;}
.x106_c00315{left:857.250000px;}
.x149_c00315{left:858.900000px;}
.x111_c00315{left:861.150000px;}
.xf2_c00315{left:862.800000px;}
.x116_c00315{left:864.150000px;}
.x125_c00315{left:866.250000px;}
.xbd_c00315{left:868.200000px;}
.xd0_c00315{left:869.550000px;}
.xab_c00315{left:871.650000px;}
.xb4_c00315{left:874.350000px;}
.x117_c00315{left:877.500000px;}
.x138_c00315{left:880.650000px;}
.x140_c00315{left:884.100000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws5_c00315{word-spacing:-8.845528pt;}
.ws0_c00315{word-spacing:-1.010101pt;}
.ws9_c00315{word-spacing:0.000000pt;}
.ws7_c00315{word-spacing:7.251462pt;}
.ws6_c00315{word-spacing:11.515924pt;}
.ws2_c00315{word-spacing:22.857143pt;}
.ws8_c00315{word-spacing:27.643766pt;}
.ws3_c00315{word-spacing:35.555556pt;}
.ws4_c00315{word-spacing:39.259259pt;}
.ws1_c00315{word-spacing:52.222222pt;}
._1_c00315{width:65.925926pt;}
._2_c00315{width:71.481481pt;}
._0_c00315{width:80.000000pt;}
.fs5_c00315{font-size:48.000000pt;}
.fs2_c00315{font-size:53.333333pt;}
.fs1_c00315{font-size:58.666667pt;}
.fs3_c00315{font-size:64.000000pt;}
.fs4_c00315{font-size:69.333333pt;}
.fs0_c00315{font-size:96.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y67_c00315{bottom:161.333333pt;}
.y66_c00315{bottom:180.533333pt;}
.y32_c00315{bottom:196.533333pt;}
.y65_c00315{bottom:198.933333pt;}
.y31_c00315{bottom:214.400000pt;}
.y64_c00315{bottom:214.666667pt;}
.y63_c00315{bottom:230.133333pt;}
.y30_c00315{bottom:230.666667pt;}
.y62_c00315{bottom:245.866667pt;}
.y2f_c00315{bottom:246.400000pt;}
.y61_c00315{bottom:261.866667pt;}
.y2e_c00315{bottom:265.200000pt;}
.y60_c00315{bottom:277.600000pt;}
.y2d_c00315{bottom:280.933333pt;}
.y5f_c00315{bottom:293.333333pt;}
.y2c_c00315{bottom:304.666667pt;}
.y5e_c00315{bottom:309.066667pt;}
.y2b_c00315{bottom:324.133333pt;}
.y5d_c00315{bottom:325.066667pt;}
.y2a_c00315{bottom:343.600000pt;}
.y5c_c00315{bottom:347.466667pt;}
.y29_c00315{bottom:359.866667pt;}
.y5b_c00315{bottom:360.266667pt;}
.y5a_c00315{bottom:372.666667pt;}
.y28_c00315{bottom:375.600000pt;}
.y59_c00315{bottom:386.133333pt;}
.y27_c00315{bottom:391.333333pt;}
.y58_c00315{bottom:398.933333pt;}
.y26_c00315{bottom:407.333333pt;}
.y57_c00315{bottom:410.800000pt;}
.y56_c00315{bottom:424.266667pt;}
.y25_c00315{bottom:426.266667pt;}
.y24_c00315{bottom:439.466667pt;}
.y55_c00315{bottom:441.866667pt;}
.y23_c00315{bottom:450.666667pt;}
.y54_c00315{bottom:457.866667pt;}
.y22_c00315{bottom:465.333333pt;}
.y53_c00315{bottom:473.600000pt;}
.y21_c00315{bottom:479.600000pt;}
.y52_c00315{bottom:489.333333pt;}
.y20_c00315{bottom:497.866667pt;}
.y51_c00315{bottom:505.333333pt;}
.y1f_c00315{bottom:513.600000pt;}
.y50_c00315{bottom:524.800000pt;}
.y1e_c00315{bottom:529.600000pt;}
.y4f_c00315{bottom:540.533333pt;}
.y1d_c00315{bottom:545.600000pt;}
.y4e_c00315{bottom:556.400000pt;}
.y1c_c00315{bottom:565.066667pt;}
.y4d_c00315{bottom:572.133333pt;}
.y1b_c00315{bottom:580.133333pt;}
.y4c_c00315{bottom:591.600000pt;}
.y1a_c00315{bottom:597.066667pt;}
.y4b_c00315{bottom:607.333333pt;}
.y19_c00315{bottom:616.266667pt;}
.y4a_c00315{bottom:634.533333pt;}
.y18_c00315{bottom:639.066667pt;}
.y49_c00315{bottom:654.400000pt;}
.y17_c00315{bottom:655.733333pt;}
.y48_c00315{bottom:674.266667pt;}
.y16_c00315{bottom:675.200000pt;}
.y47_c00315{bottom:689.600000pt;}
.y15_c00315{bottom:691.866667pt;}
.y46_c00315{bottom:705.200000pt;}
.y14_c00315{bottom:707.200000pt;}
.y45_c00315{bottom:720.933333pt;}
.y13_c00315{bottom:723.466667pt;}
.y44_c00315{bottom:736.666667pt;}
.y12_c00315{bottom:738.800000pt;}
.y43_c00315{bottom:752.400000pt;}
.y11_c00315{bottom:754.533333pt;}
.y42_c00315{bottom:768.400000pt;}
.y10_c00315{bottom:770.533333pt;}
.y41_c00315{bottom:784.133333pt;}
.yf_c00315{bottom:789.733333pt;}
.y40_c00315{bottom:800.133333pt;}
.ye_c00315{bottom:806.400000pt;}
.y3f_c00315{bottom:815.866667pt;}
.yd_c00315{bottom:825.333333pt;}
.y3e_c00315{bottom:831.600000pt;}
.yc_c00315{bottom:841.333333pt;}
.y3d_c00315{bottom:847.333333pt;}
.yb_c00315{bottom:857.333333pt;}
.y3c_c00315{bottom:863.066667pt;}
.ya_c00315{bottom:873.066667pt;}
.y3b_c00315{bottom:879.066667pt;}
.y9_c00315{bottom:888.800000pt;}
.y3a_c00315{bottom:902.133333pt;}
.y8_c00315{bottom:904.533333pt;}
.y39_c00315{bottom:914.933333pt;}
.y7_c00315{bottom:920.266667pt;}
.y38_c00315{bottom:927.466667pt;}
.y6_c00315{bottom:936.266667pt;}
.y37_c00315{bottom:938.933333pt;}
.y5_c00315{bottom:951.600000pt;}
.y36_c00315{bottom:952.933333pt;}
.y4_c00315{bottom:967.333333pt;}
.y35_c00315{bottom:969.600000pt;}
.y3_c00315{bottom:983.333333pt;}
.y34_c00315{bottom:985.600000pt;}
.y2_c00315{bottom:998.666667pt;}
.y33_c00315{bottom:1001.333333pt;}
.y1_c00315{bottom:1024.266667pt;}
.h7_c00315{height:48.000000pt;}
.h4_c00315{height:53.333333pt;}
.h3_c00315{height:58.666667pt;}
.h5_c00315{height:64.000000pt;}
.h6_c00315{height:69.333333pt;}
.h2_c00315{height:96.000000pt;}
.h1_c00315{height:1132.000000pt;}
.h0_c00315{height:1132.159993pt;}
.w1_c00315{width:854.666667pt;}
.w0_c00315{width:854.720052pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:169.600000pt;}
.x53_c00315{left:171.466667pt;}
.x6e_c00315{left:173.066667pt;}
.x8b_c00315{left:175.066667pt;}
.x8d_c00315{left:176.666667pt;}
.x96_c00315{left:177.600000pt;}
.x99_c00315{left:179.200000pt;}
.xa1_c00315{left:181.066667pt;}
.x13_c00315{left:182.000000pt;}
.x3_c00315{left:185.333333pt;}
.x3d_c00315{left:186.266667pt;}
.x5b_c00315{left:187.866667pt;}
.x7a_c00315{left:188.800000pt;}
.x7d_c00315{left:189.733333pt;}
.x85_c00315{left:190.800000pt;}
.x8f_c00315{left:192.666667pt;}
.x9a_c00315{left:195.200000pt;}
.x14e_c00315{left:196.133333pt;}
.x9f_c00315{left:197.866667pt;}
.x71_c00315{left:201.866667pt;}
.x1a_c00315{left:203.200000pt;}
.x77_c00315{left:205.066667pt;}
.x81_c00315{left:206.400000pt;}
.x1f_c00315{left:207.733333pt;}
.x5c_c00315{left:209.600000pt;}
.x27_c00315{left:210.800000pt;}
.x78_c00315{left:212.800000pt;}
.x34_c00315{left:214.266667pt;}
.x9d_c00315{left:215.333333pt;}
.x4_c00315{left:217.333333pt;}
.x7e_c00315{left:218.266667pt;}
.x14_c00315{left:220.666667pt;}
.x28_c00315{left:222.000000pt;}
.x54_c00315{left:225.600000pt;}
.xc_c00315{left:228.800000pt;}
.x1b_c00315{left:229.733333pt;}
.x8c_c00315{left:230.666667pt;}
.x48_c00315{left:232.133333pt;}
.x35_c00315{left:235.066667pt;}
.x97_c00315{left:238.800000pt;}
.x93_c00315{left:240.800000pt;}
.x50_c00315{left:242.266667pt;}
.x55_c00315{left:243.466667pt;}
.xd_c00315{left:245.066667pt;}
.x30_c00315{left:246.000000pt;}
.x42_c00315{left:247.600000pt;}
.x36_c00315{left:249.200000pt;}
.xa0_c00315{left:250.400000pt;}
.x82_c00315{left:252.133333pt;}
.x29_c00315{left:253.333333pt;}
.x20_c00315{left:255.733333pt;}
.x90_c00315{left:257.866667pt;}
.x5d_c00315{left:259.600000pt;}
.x86_c00315{left:261.200000pt;}
.x5_c00315{left:262.133333pt;}
.x58_c00315{left:264.000000pt;}
.x43_c00315{left:265.866667pt;}
.xe_c00315{left:268.800000pt;}
.x49_c00315{left:270.533333pt;}
.x7f_c00315{left:271.733333pt;}
.x94_c00315{left:273.466667pt;}
.x37_c00315{left:274.800000pt;}
.x61_c00315{left:276.133333pt;}
.x15_c00315{left:277.333333pt;}
.x6d_c00315{left:279.866667pt;}
.x69_c00315{left:281.600000pt;}
.x59_c00315{left:282.933333pt;}
.x6_c00315{left:283.866667pt;}
.x4a_c00315{left:285.200000pt;}
.x72_c00315{left:287.066667pt;}
.x1c_c00315{left:288.000000pt;}
.x21_c00315{left:290.000000pt;}
.x3e_c00315{left:291.866667pt;}
.x65_c00315{left:293.600000pt;}
.x31_c00315{left:298.533333pt;}
.x73_c00315{left:301.200000pt;}
.x9b_c00315{left:302.133333pt;}
.x2a_c00315{left:303.200000pt;}
.x5e_c00315{left:306.000000pt;}
.x7_c00315{left:307.200000pt;}
.xf_c00315{left:311.066667pt;}
.x87_c00315{left:312.000000pt;}
.x8e_c00315{left:313.333333pt;}
.x51_c00315{left:314.266667pt;}
.x6a_c00315{left:316.533333pt;}
.x98_c00315{left:318.133333pt;}
.x32_c00315{left:319.066667pt;}
.x2b_c00315{left:322.400000pt;}
.x95_c00315{left:323.466667pt;}
.x22_c00315{left:324.933333pt;}
.x88_c00315{left:326.400000pt;}
.x16_c00315{left:328.800000pt;}
.x38_c00315{left:330.533333pt;}
.x2e_c00315{left:331.733333pt;}
.x5f_c00315{left:333.466667pt;}
.x6b_c00315{left:335.466667pt;}
.x4b_c00315{left:336.933333pt;}
.x3f_c00315{left:338.533333pt;}
.x44_c00315{left:340.400000pt;}
.x66_c00315{left:341.600000pt;}
.x23_c00315{left:342.800000pt;}
.x5a_c00315{left:343.733333pt;}
.x80_c00315{left:345.600000pt;}
.x8_c00315{left:348.133333pt;}
.x17_c00315{left:349.866667pt;}
.x62_c00315{left:353.200000pt;}
.x14f_c00315{left:354.533333pt;}
.x10_c00315{left:356.133333pt;}
.x45_c00315{left:358.000000pt;}
.x67_c00315{left:359.200000pt;}
.x74_c00315{left:360.800000pt;}
.x60_c00315{left:362.266667pt;}
.x4c_c00315{left:365.733333pt;}
.x39_c00315{left:368.933333pt;}
.x11_c00315{left:369.866667pt;}
.x24_c00315{left:372.933333pt;}
.x1d_c00315{left:374.133333pt;}
.x75_c00315{left:375.200000pt;}
.x18_c00315{left:376.400000pt;}
.x46_c00315{left:377.866667pt;}
.x6f_c00315{left:379.200000pt;}
.x2_c00315{left:381.733333pt;}
.x52_c00315{left:383.333333pt;}
.x6c_c00315{left:386.000000pt;}
.x89_c00315{left:387.466667pt;}
.xa2_c00315{left:389.733333pt;}
.x3a_c00315{left:390.666667pt;}
.x7b_c00315{left:392.666667pt;}
.x9_c00315{left:395.466667pt;}
.x1e_c00315{left:396.533333pt;}
.x40_c00315{left:398.400000pt;}
.x91_c00315{left:399.600000pt;}
.x4d_c00315{left:400.666667pt;}
.x2c_c00315{left:402.000000pt;}
.x19_c00315{left:403.866667pt;}
.x12_c00315{left:405.066667pt;}
.x25_c00315{left:410.000000pt;}
.x83_c00315{left:411.866667pt;}
.xa_c00315{left:412.800000pt;}
.x2f_c00315{left:414.266667pt;}
.x79_c00315{left:415.333333pt;}
.x26_c00315{left:418.266667pt;}
.x8a_c00315{left:419.466667pt;}
.xa3_c00315{left:421.733333pt;}
.x7c_c00315{left:423.066667pt;}
.x68_c00315{left:424.400000pt;}
.x4e_c00315{left:426.000000pt;}
.x76_c00315{left:426.933333pt;}
.x70_c00315{left:428.133333pt;}
.x63_c00315{left:430.400000pt;}
.xb_c00315{left:432.933333pt;}
.x4f_c00315{left:434.666667pt;}
.x56_c00315{left:436.533333pt;}
.x3b_c00315{left:437.466667pt;}
.x9c_c00315{left:440.000000pt;}
.x92_c00315{left:441.200000pt;}
.x47_c00315{left:444.400000pt;}
.x33_c00315{left:447.200000pt;}
.x9e_c00315{left:450.000000pt;}
.x3c_c00315{left:451.866667pt;}
.x57_c00315{left:453.200000pt;}
.x64_c00315{left:454.666667pt;}
.x41_c00315{left:457.866667pt;}
.x84_c00315{left:461.200000pt;}
.x2d_c00315{left:463.066667pt;}
.x150_c00315{left:466.800000pt;}
.xb5_c00315{left:484.133333pt;}
.xd9_c00315{left:485.466667pt;}
.x118_c00315{left:488.266667pt;}
.x11a_c00315{left:489.333333pt;}
.x126_c00315{left:490.266667pt;}
.x130_c00315{left:491.466667pt;}
.x13e_c00315{left:493.066667pt;}
.x151_c00315{left:494.933333pt;}
.xbe_c00315{left:496.933333pt;}
.xa4_c00315{left:499.866667pt;}
.xdf_c00315{left:501.466667pt;}
.xf3_c00315{left:502.933333pt;}
.x109_c00315{left:504.133333pt;}
.x11d_c00315{left:505.600000pt;}
.x12e_c00315{left:506.666667pt;}
.x141_c00315{left:508.800000pt;}
.xc4_c00315{left:510.400000pt;}
.xee_c00315{left:516.266667pt;}
.x139_c00315{left:517.200000pt;}
.x11e_c00315{left:522.266667pt;}
.xbf_c00315{left:523.200000pt;}
.xac_c00315{left:525.466667pt;}
.x129_c00315{left:526.800000pt;}
.xd5_c00315{left:530.266667pt;}
.x122_c00315{left:533.866667pt;}
.xf7_c00315{left:535.333333pt;}
.xc5_c00315{left:536.933333pt;}
.xb6_c00315{left:537.866667pt;}
.xe8_c00315{left:540.133333pt;}
.x12f_c00315{left:541.600000pt;}
.xe4_c00315{left:543.600000pt;}
.x13d_c00315{left:544.533333pt;}
.xd6_c00315{left:546.933333pt;}
.xfe_c00315{left:548.666667pt;}
.x120_c00315{left:550.533333pt;}
.x136_c00315{left:551.733333pt;}
.xc6_c00315{left:553.866667pt;}
.xa5_c00315{left:555.600000pt;}
.xe9_c00315{left:558.400000pt;}
.x142_c00315{left:559.333333pt;}
.xda_c00315{left:560.933333pt;}
.xc0_c00315{left:562.266667pt;}
.x14b_c00315{left:563.200000pt;}
.xe0_c00315{left:564.533333pt;}
.x121_c00315{left:566.266667pt;}
.xad_c00315{left:567.333333pt;}
.x103_c00315{left:569.200000pt;}
.x134_c00315{left:572.533333pt;}
.x131_c00315{left:574.000000pt;}
.xf8_c00315{left:575.333333pt;}
.xa6_c00315{left:576.666667pt;}
.xae_c00315{left:578.800000pt;}
.xf4_c00315{left:579.733333pt;}
.xff_c00315{left:580.666667pt;}
.x10a_c00315{left:581.866667pt;}
.xea_c00315{left:583.066667pt;}
.x135_c00315{left:584.000000pt;}
.xd1_c00315{left:586.666667pt;}
.x143_c00315{left:588.800000pt;}
.xb7_c00315{left:592.533333pt;}
.x13f_c00315{left:595.466667pt;}
.xdb_c00315{left:597.466667pt;}
.xaf_c00315{left:599.600000pt;}
.xe5_c00315{left:601.200000pt;}
.x12a_c00315{left:602.533333pt;}
.x132_c00315{left:603.733333pt;}
.xc7_c00315{left:605.333333pt;}
.xc1_c00315{left:608.400000pt;}
.xf9_c00315{left:609.600000pt;}
.xb0_c00315{left:611.466667pt;}
.x100_c00315{left:612.933333pt;}
.xe1_c00315{left:614.400000pt;}
.x112_c00315{left:616.133333pt;}
.x147_c00315{left:617.333333pt;}
.xc8_c00315{left:618.800000pt;}
.xef_c00315{left:621.200000pt;}
.xa7_c00315{left:623.066667pt;}
.xeb_c00315{left:624.666667pt;}
.xc2_c00315{left:626.666667pt;}
.xb8_c00315{left:628.400000pt;}
.x127_c00315{left:629.733333pt;}
.xc9_c00315{left:631.600000pt;}
.x11b_c00315{left:632.666667pt;}
.x10b_c00315{left:634.400000pt;}
.xca_c00315{left:637.733333pt;}
.xd2_c00315{left:638.800000pt;}
.xec_c00315{left:640.400000pt;}
.x113_c00315{left:641.733333pt;}
.xf5_c00315{left:642.800000pt;}
.xcb_c00315{left:644.400000pt;}
.xb9_c00315{left:646.000000pt;}
.x13c_c00315{left:647.866667pt;}
.xe6_c00315{left:650.133333pt;}
.x123_c00315{left:652.000000pt;}
.x14d_c00315{left:653.466667pt;}
.x133_c00315{left:655.200000pt;}
.x145_c00315{left:656.666667pt;}
.xfa_c00315{left:657.600000pt;}
.x114_c00315{left:658.666667pt;}
.xa8_c00315{left:659.866667pt;}
.xdc_c00315{left:660.800000pt;}
.x13a_c00315{left:662.266667pt;}
.xcc_c00315{left:663.866667pt;}
.xe2_c00315{left:667.200000pt;}
.xb1_c00315{left:668.400000pt;}
.xc3_c00315{left:670.133333pt;}
.x12b_c00315{left:671.200000pt;}
.xd7_c00315{left:672.933333pt;}
.x10f_c00315{left:674.000000pt;}
.x107_c00315{left:676.933333pt;}
.xf0_c00315{left:677.866667pt;}
.x10c_c00315{left:680.800000pt;}
.xb2_c00315{left:682.533333pt;}
.xfb_c00315{left:683.466667pt;}
.x104_c00315{left:686.400000pt;}
.xba_c00315{left:687.600000pt;}
.xed_c00315{left:688.666667pt;}
.x14c_c00315{left:691.066667pt;}
.x11f_c00315{left:692.533333pt;}
.xa9_c00315{left:694.800000pt;}
.xcd_c00315{left:696.400000pt;}
.xdd_c00315{left:697.333333pt;}
.x13b_c00315{left:700.000000pt;}
.x101_c00315{left:701.600000pt;}
.x12c_c00315{left:703.866667pt;}
.xe3_c00315{left:704.933333pt;}
.x110_c00315{left:706.266667pt;}
.x14a_c00315{left:709.066667pt;}
.x128_c00315{left:710.933333pt;}
.x108_c00315{left:712.133333pt;}
.xbb_c00315{left:713.200000pt;}
.xaa_c00315{left:717.866667pt;}
.x115_c00315{left:718.800000pt;}
.xce_c00315{left:719.733333pt;}
.xd3_c00315{left:720.666667pt;}
.xd8_c00315{left:721.600000pt;}
.x124_c00315{left:724.266667pt;}
.x148_c00315{left:726.400000pt;}
.xf6_c00315{left:727.333333pt;}
.x137_c00315{left:728.400000pt;}
.xf1_c00315{left:730.400000pt;}
.x146_c00315{left:731.866667pt;}
.x144_c00315{left:733.600000pt;}
.xfc_c00315{left:734.666667pt;}
.xe7_c00315{left:736.266667pt;}
.x105_c00315{left:738.933333pt;}
.xbc_c00315{left:740.400000pt;}
.x119_c00315{left:741.733333pt;}
.xb3_c00315{left:742.666667pt;}
.x12d_c00315{left:743.866667pt;}
.x11c_c00315{left:745.333333pt;}
.xcf_c00315{left:746.666667pt;}
.x10d_c00315{left:747.600000pt;}
.xd4_c00315{left:748.533333pt;}
.x102_c00315{left:751.866667pt;}
.x10e_c00315{left:754.933333pt;}
.xfd_c00315{left:757.066667pt;}
.xde_c00315{left:760.000000pt;}
.x106_c00315{left:762.000000pt;}
.x149_c00315{left:763.466667pt;}
.x111_c00315{left:765.466667pt;}
.xf2_c00315{left:766.933333pt;}
.x116_c00315{left:768.133333pt;}
.x125_c00315{left:770.000000pt;}
.xbd_c00315{left:771.733333pt;}
.xd0_c00315{left:772.933333pt;}
.xab_c00315{left:774.800000pt;}
.xb4_c00315{left:777.200000pt;}
.x117_c00315{left:780.000000pt;}
.x138_c00315{left:782.800000pt;}
.x140_c00315{left:785.866667pt;}
}





/* 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_c00316 {
    display:none;
  }
  .loading-indicator_c00316.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00316 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_c00316 { 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_c00316" -> "#page-container .classname_c00316")
 */
.pf_c00316 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00316 { /* 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_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00316 { /* 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_c00316 { /* 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_c00316 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00316 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00316 {overflow:visible;}
  }
}
.c_c00316 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00316 { /* 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_c00316:after { /* webkit #35443 */
  content: '';
}
.t_c00316:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00316 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 */
}
.__c00316 { /* 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_c00316 { /* info for Javascript */
  display:none;
}
.l_c00316 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00316 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00316 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00316: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_c00316 {
    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_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00316.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_c00316 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00316;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.000000;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;}
.mb1_c00316{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00316{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m49_c00316{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m48_c00316{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00316{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma_c00316{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00316{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00316{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00316{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m115_c00316{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.me4_c00316{transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00316{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md9_c00316{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00316{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00316{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m65_c00316{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00316{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00316{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me3_c00316{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.me5_c00316{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m93_c00316{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m64_c00316{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.m43_c00316{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.md2_c00316{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m92_c00316{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mea_c00316{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00316{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m0_c00316{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m117_c00316{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00316{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00316{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00316{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mca_c00316{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m71_c00316{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00316{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m77_c00316{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m66_c00316{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00316{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00316{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00316{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00316{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00316{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00316{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00316{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m113_c00316{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m15_c00316{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m94_c00316{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00316{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m16_c00316{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00316{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m34_c00316{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m21_c00316{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m63_c00316{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m116_c00316{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m103_c00316{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.maa_c00316{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md4_c00316{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00316{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m111_c00316{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md3_c00316{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00316{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m114_c00316{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mda_c00316{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00316{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mc_c00316{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00316{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m23_c00316{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m100_c00316{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.maf_c00316{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00316{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mde_c00316{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00316{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.md8_c00316{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00316{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m11_c00316{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00316{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m18_c00316{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00316{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m91_c00316{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mff_c00316{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m84_c00316{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00316{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mef_c00316{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00316{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m83_c00316{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mba_c00316{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00316{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m88_c00316{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m42_c00316{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m39_c00316{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m90_c00316{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m51_c00316{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00316{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00316{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m28_c00316{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00316{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00316{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00316{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00316{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m72_c00316{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m105_c00316{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00316{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00316{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m36_c00316{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m112_c00316{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00316{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m10_c00316{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00316{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00316{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00316{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m89_c00316{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00316{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00316{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00316{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m19_c00316{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m27_c00316{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m110_c00316{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00316{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00316{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00316{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m29_c00316{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m26_c00316{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m24_c00316{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00316{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00316{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m95_c00316{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00316{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m87_c00316{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m53_c00316{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md7_c00316{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00316{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m55_c00316{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00316{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00316{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00316{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m58_c00316{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00316{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m50_c00316{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m14_c00316{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m37_c00316{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00316{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5_c00316{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m104_c00316{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7_c00316{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m102_c00316{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00316{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m82_c00316{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00316{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mae_c00316{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m57_c00316{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.me_c00316{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00316{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00316{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.me8_c00316{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00316{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m81_c00316{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00316{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00316{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m107_c00316{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb_c00316{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mce_c00316{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m101_c00316{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m59_c00316{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00316{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m80_c00316{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m78_c00316{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00316{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6_c00316{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00316{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00316{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m25_c00316{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mab_c00316{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00316{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00316{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00316{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00316{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00316{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00316{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00316{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mad_c00316{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m32_c00316{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00316{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m61_c00316{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m30_c00316{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md5_c00316{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00316{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00316{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m31_c00316{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00316{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m17_c00316{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m38_c00316{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m96_c00316{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m44_c00316{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m85_c00316{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.meb_c00316{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mec_c00316{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.md1_c00316{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00316{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m45_c00316{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00316{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00316{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00316{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m62_c00316{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m73_c00316{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00316{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf_c00316{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00316{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.me9_c00316{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m54_c00316{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00316{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mee_c00316{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00316{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m97_c00316{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00316{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00316{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m86_c00316{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m99_c00316{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00316{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m69_c00316{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m33_c00316{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00316{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m46_c00316{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m47_c00316{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00316{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4_c00316{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m70_c00316{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m22_c00316{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m41_c00316{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2_c00316{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m109_c00316{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me2_c00316{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mac_c00316{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m35_c00316{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.med_c00316{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m20_c00316{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3_c00316{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m98_c00316{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m56_c00316{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me1_c00316{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me0_c00316{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m40_c00316{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m52_c00316{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00316{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m13_c00316{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md0_c00316{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00316{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md6_c00316{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00316{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m106_c00316{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00316{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00316{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m108_c00316{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m8_c00316{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00316{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00316{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00316{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00316{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00316{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.md_c00316{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me7_c00316{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00316{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m67_c00316{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m68_c00316{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00316{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00316{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m60_c00316{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00316{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00316{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m74_c00316{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00316{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m79_c00316{transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00316{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00316{transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00316{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.me6_c00316{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00316{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m12_c00316{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00316{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m76_c00316{transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);}
.m75_c00316{transform:matrix(0.948000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.948000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.948000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls0_c00316{letter-spacing:0.000000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{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__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00316{word-spacing:-11.849162px;}
.ws7_c00316{word-spacing:-7.500000px;}
.ws6_c00316{word-spacing:-6.423948px;}
.ws4_c00316{word-spacing:-3.663073px;}
.ws5_c00316{word-spacing:-3.382353px;}
.wsd_c00316{word-spacing:-1.676218px;}
.ws10_c00316{word-spacing:0.000000px;}
.wsf_c00316{word-spacing:3.428571px;}
.wse_c00316{word-spacing:5.871060px;}
.wsb_c00316{word-spacing:6.052632px;}
.ws8_c00316{word-spacing:6.527778px;}
.wsa_c00316{word-spacing:7.297297px;}
.ws1_c00316{word-spacing:22.142857px;}
.ws0_c00316{word-spacing:25.714286px;}
.wsc_c00316{word-spacing:29.285714px;}
.ws9_c00316{word-spacing:34.642857px;}
.ws2_c00316{word-spacing:66.315789px;}
._0_c00316{width:55.714286px;}
._1_c00316{width:59.285714px;}
.fc0_c00316{color:transparent;}
.fs9_c00316{font-size:24.000000px;}
.fs6_c00316{font-size:30.000000px;}
.fs7_c00316{font-size:48.000000px;}
.fs3_c00316{font-size:54.000000px;}
.fs2_c00316{font-size:60.000000px;}
.fs1_c00316{font-size:66.000000px;}
.fs8_c00316{font-size:72.000000px;}
.fs0_c00316{font-size:78.000000px;}
.fs5_c00316{font-size:84.000000px;}
.fs4_c00316{font-size:90.000000px;}
.fsa_c00316{font-size:96.000000px;}
.y0_c00316{bottom:0.000000px;}
.y37_c00316{bottom:11.850000px;}
.y35_c00316{bottom:13.350000px;}
.y36_c00316{bottom:15.150000px;}
.y6c_c00316{bottom:175.350000px;}
.y6b_c00316{bottom:195.450000px;}
.y34_c00316{bottom:200.100000px;}
.y33_c00316{bottom:213.450000px;}
.y6a_c00316{bottom:231.150000px;}
.y69_c00316{bottom:249.150000px;}
.y32_c00316{bottom:256.650000px;}
.y68_c00316{bottom:267.150000px;}
.y31_c00316{bottom:274.350000px;}
.y67_c00316{bottom:284.850000px;}
.y30_c00316{bottom:296.550000px;}
.y66_c00316{bottom:302.850000px;}
.y2f_c00316{bottom:318.900000px;}
.y65_c00316{bottom:320.550000px;}
.y64_c00316{bottom:338.250000px;}
.y2e_c00316{bottom:340.800000px;}
.y63_c00316{bottom:355.950000px;}
.y2d_c00316{bottom:358.800000px;}
.y62_c00316{bottom:373.200000px;}
.y2c_c00316{bottom:376.500000px;}
.y61_c00316{bottom:390.900000px;}
.y2b_c00316{bottom:394.200000px;}
.y60_c00316{bottom:408.900000px;}
.y2a_c00316{bottom:416.100000px;}
.y5f_c00316{bottom:426.600000px;}
.y29_c00316{bottom:433.800000px;}
.y5e_c00316{bottom:444.300000px;}
.y28_c00316{bottom:451.200000px;}
.y5d_c00316{bottom:462.300000px;}
.y27_c00316{bottom:473.100000px;}
.y5c_c00316{bottom:486.000000px;}
.y26_c00316{bottom:494.700000px;}
.y5b_c00316{bottom:500.700000px;}
.y25_c00316{bottom:512.700000px;}
.y5a_c00316{bottom:515.250000px;}
.y59_c00316{bottom:529.950000px;}
.y24_c00316{bottom:534.300000px;}
.y58_c00316{bottom:543.900000px;}
.y23_c00316{bottom:552.600000px;}
.y57_c00316{bottom:558.300000px;}
.y22_c00316{bottom:569.850000px;}
.y56_c00316{bottom:572.700000px;}
.y55_c00316{bottom:586.800000px;}
.y21_c00316{bottom:592.200000px;}
.y54_c00316{bottom:600.900000px;}
.y20_c00316{bottom:609.900000px;}
.y53_c00316{bottom:615.300000px;}
.y1d_c00316{bottom:627.000000px;}
.y52_c00316{bottom:630.000000px;}
.y1c_c00316{bottom:635.700000px;}
.y1b_c00316{bottom:642.600000px;}
.y51_c00316{bottom:644.100000px;}
.y1f_c00316{bottom:654.150000px;}
.y50_c00316{bottom:658.200000px;}
.y1a_c00316{bottom:665.700000px;}
.y1e_c00316{bottom:670.650000px;}
.y4f_c00316{bottom:672.900000px;}
.y19_c00316{bottom:691.500000px;}
.y4e_c00316{bottom:696.900000px;}
.y18_c00316{bottom:713.400000px;}
.y4d_c00316{bottom:714.600000px;}
.y4c_c00316{bottom:732.300000px;}
.y17_c00316{bottom:735.750000px;}
.y4b_c00316{bottom:750.300000px;}
.y16_c00316{bottom:753.450000px;}
.y4a_c00316{bottom:767.850000px;}
.y49_c00316{bottom:776.850000px;}
.y15_c00316{bottom:782.250000px;}
.y48_c00316{bottom:794.550000px;}
.y47_c00316{bottom:811.800000px;}
.y14_c00316{bottom:813.150000px;}
.y46_c00316{bottom:829.500000px;}
.y13_c00316{bottom:831.150000px;}
.y45_c00316{bottom:847.500000px;}
.y12_c00316{bottom:848.850000px;}
.y44_c00316{bottom:864.750000px;}
.y11_c00316{bottom:866.100000px;}
.y10_c00316{bottom:887.400000px;}
.y43_c00316{bottom:890.700000px;}
.yf_c00316{bottom:901.050000px;}
.ye_c00316{bottom:915.150000px;}
.y42_c00316{bottom:917.700000px;}
.yd_c00316{bottom:930.600000px;}
.y41_c00316{bottom:936.000000px;}
.yc_c00316{bottom:948.600000px;}
.y40_c00316{bottom:960.450000px;}
.yb_c00316{bottom:966.600000px;}
.y3f_c00316{bottom:978.450000px;}
.ya_c00316{bottom:983.850000px;}
.y3e_c00316{bottom:996.150000px;}
.y9_c00316{bottom:1001.550000px;}
.y3d_c00316{bottom:1013.850000px;}
.y8_c00316{bottom:1019.550000px;}
.y3c_c00316{bottom:1031.850000px;}
.y7_c00316{bottom:1041.450000px;}
.y3b_c00316{bottom:1049.550000px;}
.y6_c00316{bottom:1058.700000px;}
.y3a_c00316{bottom:1067.250000px;}
.y5_c00316{bottom:1075.650000px;}
.y39_c00316{bottom:1084.950000px;}
.y4_c00316{bottom:1098.450000px;}
.y38_c00316{bottom:1102.650000px;}
.y3_c00316{bottom:1120.350000px;}
.y2_c00316{bottom:1146.150000px;}
.y1_c00316{bottom:1146.900000px;}
.hb_c00316{height:24.000000px;}
.h8_c00316{height:30.000000px;}
.h9_c00316{height:48.000000px;}
.h5_c00316{height:54.000000px;}
.h4_c00316{height:60.000000px;}
.h3_c00316{height:66.000000px;}
.ha_c00316{height:72.000000px;}
.h2_c00316{height:78.000000px;}
.h7_c00316{height:84.000000px;}
.h6_c00316{height:90.000000px;}
.hc_c00316{height:96.000000px;}
.h1_c00316{height:1271.250000px;}
.h0_c00316{height:1271.519990px;}
.w1_c00316{width:961.500000px;}
.w0_c00316{width:961.560058px;}
.x0_c00316{left:0.000000px;}
.x4_c00316{left:97.500000px;}
.x63_c00316{left:99.000000px;}
.x8f_c00316{left:108.750000px;}
.x45_c00316{left:111.450000px;}
.x27_c00316{left:112.950000px;}
.x13_c00316{left:114.900000px;}
.x55_c00316{left:116.250000px;}
.x70_c00316{left:117.300000px;}
.x92_c00316{left:122.250000px;}
.x4b_c00316{left:126.300000px;}
.x6a_c00316{left:130.350000px;}
.xd_c00316{left:133.500000px;}
.x35_c00316{left:134.850000px;}
.x77_c00316{left:136.050000px;}
.x83_c00316{left:137.100000px;}
.x7_c00316{left:138.900000px;}
.x40_c00316{left:141.000000px;}
.x1a_c00316{left:142.800000px;}
.x6b_c00316{left:146.550000px;}
.x19_c00316{left:148.950000px;}
.x28_c00316{left:150.000000px;}
.x22_c00316{left:152.250000px;}
.x5c_c00316{left:153.300000px;}
.x2d_c00316{left:154.800000px;}
.x38_c00316{left:160.200000px;}
.x5a_c00316{left:161.250000px;}
.x5_c00316{left:164.100000px;}
.x7e_c00316{left:166.650000px;}
.x8b_c00316{left:168.450000px;}
.x64_c00316{left:169.950000px;}
.x23_c00316{left:172.050000px;}
.x8_c00316{left:174.600000px;}
.x6c_c00316{left:175.650000px;}
.x36_c00316{left:177.750000px;}
.x5b_c00316{left:178.950000px;}
.xe_c00316{left:181.800000px;}
.x7b_c00316{left:182.850000px;}
.x1_c00316{left:183.900000px;}
.x7c_c00316{left:185.100000px;}
.x41_c00316{left:188.550000px;}
.x80_c00316{left:189.600000px;}
.x39_c00316{left:192.300000px;}
.x56_c00316{left:193.650000px;}
.x61_c00316{left:195.000000px;}
.x29_c00316{left:198.300000px;}
.x6d_c00316{left:199.800000px;}
.x42_c00316{left:201.150000px;}
.x8c_c00316{left:202.350000px;}
.x14_c00316{left:204.450000px;}
.x78_c00316{left:208.050000px;}
.x1b_c00316{left:210.150000px;}
.x69_c00316{left:212.400000px;}
.x4d_c00316{left:216.150000px;}
.x75_c00316{left:217.500000px;}
.x5f_c00316{left:219.450000px;}
.x71_c00316{left:220.500000px;}
.x3a_c00316{left:223.650000px;}
.x2e_c00316{left:225.000000px;}
.x84_c00316{left:230.400000px;}
.x65_c00316{left:232.200000px;}
.x87_c00316{left:233.550000px;}
.x2a_c00316{left:235.800000px;}
.x51_c00316{left:237.150000px;}
.x57_c00316{left:238.650000px;}
.x24_c00316{left:240.750000px;}
.xf_c00316{left:243.000000px;}
.x62_c00316{left:245.400000px;}
.x9_c00316{left:247.650000px;}
.x88_c00316{left:250.800000px;}
.x6_c00316{left:253.350000px;}
.x2f_c00316{left:254.550000px;}
.x46_c00316{left:255.750000px;}
.x43_c00316{left:257.250000px;}
.x1c_c00316{left:260.850000px;}
.x47_c00316{left:262.650000px;}
.x37_c00316{left:265.200000px;}
.x60_c00316{left:267.000000px;}
.x48_c00316{left:269.550000px;}
.x76_c00316{left:270.750000px;}
.x66_c00316{left:273.300000px;}
.x72_c00316{left:275.250000px;}
.x2b_c00316{left:277.650000px;}
.x81_c00316{left:280.050000px;}
.x67_c00316{left:283.050000px;}
.x49_c00316{left:284.250000px;}
.x3b_c00316{left:285.900000px;}
.x79_c00316{left:288.450000px;}
.x30_c00316{left:290.550000px;}
.x15_c00316{left:292.650000px;}
.x1d_c00316{left:295.350000px;}
.x8a_c00316{left:296.850000px;}
.x25_c00316{left:298.050000px;}
.x4e_c00316{left:301.800000px;}
.x31_c00316{left:303.150000px;}
.x5d_c00316{left:305.100000px;}
.x44_c00316{left:306.150000px;}
.x10_c00316{left:307.500000px;}
.x1e_c00316{left:309.000000px;}
.xa_c00316{left:310.350000px;}
.x82_c00316{left:312.750000px;}
.x6e_c00316{left:315.300000px;}
.x58_c00316{left:316.350000px;}
.x85_c00316{left:318.000000px;}
.xb_c00316{left:320.850000px;}
.x16_c00316{left:322.200000px;}
.x52_c00316{left:324.000000px;}
.x73_c00316{left:325.950000px;}
.x86_c00316{left:328.650000px;}
.x3c_c00316{left:330.150000px;}
.x68_c00316{left:337.050000px;}
.x32_c00316{left:338.100000px;}
.x2_c00316{left:339.450000px;}
.x17_c00316{left:344.100000px;}
.x74_c00316{left:346.050000px;}
.x4f_c00316{left:347.550000px;}
.x7f_c00316{left:351.300000px;}
.x1f_c00316{left:352.500000px;}
.x3d_c00316{left:356.850000px;}
.x33_c00316{left:360.450000px;}
.x59_c00316{left:363.150000px;}
.x11_c00316{left:367.650000px;}
.x89_c00316{left:375.450000px;}
.xc_c00316{left:377.400000px;}
.x26_c00316{left:379.350000px;}
.x8d_c00316{left:380.550000px;}
.x90_c00316{left:381.750000px;}
.x3e_c00316{left:383.550000px;}
.x5e_c00316{left:385.050000px;}
.x53_c00316{left:387.750000px;}
.x4c_c00316{left:390.450000px;}
.x20_c00316{left:392.400000px;}
.x34_c00316{left:396.150000px;}
.x54_c00316{left:398.550000px;}
.x8e_c00316{left:400.650000px;}
.x7d_c00316{left:401.850000px;}
.x6f_c00316{left:405.600000px;}
.x50_c00316{left:407.250000px;}
.x91_c00316{left:408.450000px;}
.x21_c00316{left:410.700000px;}
.x18_c00316{left:414.750000px;}
.x12_c00316{left:416.550000px;}
.x3f_c00316{left:417.750000px;}
.x4a_c00316{left:420.000000px;}
.x2c_c00316{left:427.350000px;}
.x7a_c00316{left:430.500000px;}
.xd1_c00316{left:452.550000px;}
.xf4_c00316{left:454.350000px;}
.x106_c00316{left:468.300000px;}
.xa8_c00316{left:469.800000px;}
.x93_c00316{left:471.300000px;}
.xe8_c00316{left:472.350000px;}
.x10a_c00316{left:481.650000px;}
.x110_c00316{left:482.850000px;}
.x10d_c00316{left:484.350000px;}
.x11a_c00316{left:485.700000px;}
.xda_c00316{left:489.450000px;}
.xa3_c00316{left:491.400000px;}
.xfe_c00316{left:493.200000px;}
.xa9_c00316{left:494.700000px;}
.xd6_c00316{left:495.750000px;}
.xc5_c00316{left:497.700000px;}
.xb6_c00316{left:501.450000px;}
.x10b_c00316{left:503.550000px;}
.xec_c00316{left:504.600000px;}
.xf8_c00316{left:507.150000px;}
.xef_c00316{left:508.650000px;}
.xc6_c00316{left:510.000000px;}
.xde_c00316{left:512.250000px;}
.x11b_c00316{left:514.200000px;}
.x9b_c00316{left:519.300000px;}
.xd2_c00316{left:521.700000px;}
.x94_c00316{left:523.200000px;}
.x114_c00316{left:524.250000px;}
.x103_c00316{left:528.300000px;}
.xcc_c00316{left:529.800000px;}
.xbd_c00316{left:530.850000px;}
.x133_c00316{left:531.900000px;}
.xdf_c00316{left:533.850000px;}
.x12e_c00316{left:535.650000px;}
.x131_c00316{left:537.150000px;}
.xbe_c00316{left:539.100000px;}
.x126_c00316{left:540.150000px;}
.x118_c00316{left:541.350000px;}
.x107_c00316{left:543.600000px;}
.xb7_c00316{left:545.400000px;}
.x95_c00316{left:547.350000px;}
.x122_c00316{left:549.600000px;}
.x134_c00316{left:550.950000px;}
.x12b_c00316{left:552.300000px;}
.xdb_c00316{left:553.950000px;}
.xf0_c00316{left:555.450000px;}
.xaa_c00316{left:557.700000px;}
.xb2_c00316{left:559.950000px;}
.x115_c00316{left:562.050000px;}
.xa4_c00316{left:563.700000px;}
.xbf_c00316{left:565.050000px;}
.x9c_c00316{left:566.100000px;}
.x135_c00316{left:567.150000px;}
.x119_c00316{left:568.650000px;}
.xc7_c00316{left:569.700000px;}
.x12c_c00316{left:571.950000px;}
.xd7_c00316{left:573.600000px;}
.x11c_c00316{left:575.550000px;}
.xdc_c00316{left:576.600000px;}
.xf9_c00316{left:578.850000px;}
.xff_c00316{left:581.400000px;}
.xab_c00316{left:582.600000px;}
.xe0_c00316{left:585.300000px;}
.xcd_c00316{left:586.950000px;}
.x129_c00316{left:588.600000px;}
.xd3_c00316{left:592.200000px;}
.x111_c00316{left:594.600000px;}
.xc0_c00316{left:596.700000px;}
.x9d_c00316{left:598.800000px;}
.xb3_c00316{left:600.600000px;}
.x123_c00316{left:602.100000px;}
.xc8_c00316{left:603.900000px;}
.xc1_c00316{left:605.400000px;}
.xf5_c00316{left:607.650000px;}
.x12d_c00316{left:608.850000px;}
.x96_c00316{left:610.650000px;}
.x100_c00316{left:612.300000px;}
.xe9_c00316{left:613.650000px;}
.xd8_c00316{left:615.000000px;}
.x9e_c00316{left:616.800000px;}
.xe5_c00316{left:619.950000px;}
.xe1_c00316{left:622.350000px;}
.xac_c00316{left:625.800000px;}
.x11d_c00316{left:627.450000px;}
.x127_c00316{left:628.650000px;}
.xf1_c00316{left:631.050000px;}
.xc2_c00316{left:632.100000px;}
.xb8_c00316{left:633.600000px;}
.x9f_c00316{left:635.100000px;}
.x12f_c00316{left:637.200000px;}
.x97_c00316{left:638.400000px;}
.xf6_c00316{left:640.350000px;}
.x120_c00316{left:641.400000px;}
.xad_c00316{left:642.750000px;}
.xc9_c00316{left:643.800000px;}
.x124_c00316{left:645.300000px;}
.x113_c00316{left:646.650000px;}
.xfa_c00316{left:648.750000px;}
.xce_c00316{left:650.250000px;}
.xd9_c00316{left:652.800000px;}
.x112_c00316{left:655.500000px;}
.xed_c00316{left:656.550000px;}
.xae_c00316{left:658.650000px;}
.xdd_c00316{left:660.900000px;}
.xe2_c00316{left:662.250000px;}
.xe6_c00316{left:664.950000px;}
.x10e_c00316{left:666.000000px;}
.xb4_c00316{left:671.100000px;}
.xb9_c00316{left:672.450000px;}
.xee_c00316{left:673.500000px;}
.x136_c00316{left:675.450000px;}
.xd4_c00316{left:676.800000px;}
.x104_c00316{left:679.650000px;}
.xf2_c00316{left:681.150000px;}
.x101_c00316{left:683.100000px;}
.x117_c00316{left:684.450000px;}
.xca_c00316{left:686.700000px;}
.xea_c00316{left:692.550000px;}
.xa0_c00316{left:694.500000px;}
.xfb_c00316{left:695.550000px;}
.xe7_c00316{left:696.600000px;}
.xe3_c00316{left:698.250000px;}
.x130_c00316{left:699.900000px;}
.xf7_c00316{left:701.250000px;}
.xaf_c00316{left:704.400000px;}
.xa1_c00316{left:705.600000px;}
.xb5_c00316{left:707.400000px;}
.x98_c00316{left:708.900000px;}
.xba_c00316{left:710.250000px;}
.xb0_c00316{left:713.400000px;}
.xa5_c00316{left:715.350000px;}
.xfc_c00316{left:716.400000px;}
.x108_c00316{left:717.450000px;}
.x10f_c00316{left:718.650000px;}
.x102_c00316{left:722.400000px;}
.x132_c00316{left:724.800000px;}
.xe4_c00316{left:728.550000px;}
.x125_c00316{left:729.900000px;}
.xb1_c00316{left:731.400000px;}
.xeb_c00316{left:733.950000px;}
.xcf_c00316{left:736.350000px;}
.xbb_c00316{left:737.550000px;}
.xa2_c00316{left:739.800000px;}
.x11e_c00316{left:742.650000px;}
.x99_c00316{left:743.850000px;}
.xa6_c00316{left:745.200000px;}
.x10c_c00316{left:746.850000px;}
.xc3_c00316{left:748.200000px;}
.x128_c00316{left:749.550000px;}
.xfd_c00316{left:750.600000px;}
.x137_c00316{left:752.850000px;}
.x121_c00316{left:754.800000px;}
.xd0_c00316{left:757.200000px;}
.x3_c00316{left:759.600000px;}
.xd5_c00316{left:760.950000px;}
.xf3_c00316{left:762.150000px;}
.x9a_c00316{left:763.350000px;}
.x11f_c00316{left:765.000000px;}
.xbc_c00316{left:767.100000px;}
.xcb_c00316{left:768.450000px;}
.x109_c00316{left:770.400000px;}
.x12a_c00316{left:771.600000px;}
.x105_c00316{left:774.000000px;}
.xa7_c00316{left:775.800000px;}
.x116_c00316{left:776.850000px;}
.xc4_c00316{left:784.200000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws3_c00316{word-spacing:-10.532588pt;}
.ws7_c00316{word-spacing:-6.666667pt;}
.ws6_c00316{word-spacing:-5.710176pt;}
.ws4_c00316{word-spacing:-3.256065pt;}
.ws5_c00316{word-spacing:-3.006536pt;}
.wsd_c00316{word-spacing:-1.489971pt;}
.ws10_c00316{word-spacing:0.000000pt;}
.wsf_c00316{word-spacing:3.047619pt;}
.wse_c00316{word-spacing:5.218720pt;}
.wsb_c00316{word-spacing:5.380117pt;}
.ws8_c00316{word-spacing:5.802469pt;}
.wsa_c00316{word-spacing:6.486486pt;}
.ws1_c00316{word-spacing:19.682540pt;}
.ws0_c00316{word-spacing:22.857143pt;}
.wsc_c00316{word-spacing:26.031746pt;}
.ws9_c00316{word-spacing:30.793651pt;}
.ws2_c00316{word-spacing:58.947368pt;}
._0_c00316{width:49.523810pt;}
._1_c00316{width:52.698413pt;}
.fs9_c00316{font-size:21.333333pt;}
.fs6_c00316{font-size:26.666667pt;}
.fs7_c00316{font-size:42.666667pt;}
.fs3_c00316{font-size:48.000000pt;}
.fs2_c00316{font-size:53.333333pt;}
.fs1_c00316{font-size:58.666667pt;}
.fs8_c00316{font-size:64.000000pt;}
.fs0_c00316{font-size:69.333333pt;}
.fs5_c00316{font-size:74.666667pt;}
.fs4_c00316{font-size:80.000000pt;}
.fsa_c00316{font-size:85.333333pt;}
.y0_c00316{bottom:0.000000pt;}
.y37_c00316{bottom:10.533333pt;}
.y35_c00316{bottom:11.866667pt;}
.y36_c00316{bottom:13.466667pt;}
.y6c_c00316{bottom:155.866667pt;}
.y6b_c00316{bottom:173.733333pt;}
.y34_c00316{bottom:177.866667pt;}
.y33_c00316{bottom:189.733333pt;}
.y6a_c00316{bottom:205.466667pt;}
.y69_c00316{bottom:221.466667pt;}
.y32_c00316{bottom:228.133333pt;}
.y68_c00316{bottom:237.466667pt;}
.y31_c00316{bottom:243.866667pt;}
.y67_c00316{bottom:253.200000pt;}
.y30_c00316{bottom:263.600000pt;}
.y66_c00316{bottom:269.200000pt;}
.y2f_c00316{bottom:283.466667pt;}
.y65_c00316{bottom:284.933333pt;}
.y64_c00316{bottom:300.666667pt;}
.y2e_c00316{bottom:302.933333pt;}
.y63_c00316{bottom:316.400000pt;}
.y2d_c00316{bottom:318.933333pt;}
.y62_c00316{bottom:331.733333pt;}
.y2c_c00316{bottom:334.666667pt;}
.y61_c00316{bottom:347.466667pt;}
.y2b_c00316{bottom:350.400000pt;}
.y60_c00316{bottom:363.466667pt;}
.y2a_c00316{bottom:369.866667pt;}
.y5f_c00316{bottom:379.200000pt;}
.y29_c00316{bottom:385.600000pt;}
.y5e_c00316{bottom:394.933333pt;}
.y28_c00316{bottom:401.066667pt;}
.y5d_c00316{bottom:410.933333pt;}
.y27_c00316{bottom:420.533333pt;}
.y5c_c00316{bottom:432.000000pt;}
.y26_c00316{bottom:439.733333pt;}
.y5b_c00316{bottom:445.066667pt;}
.y25_c00316{bottom:455.733333pt;}
.y5a_c00316{bottom:458.000000pt;}
.y59_c00316{bottom:471.066667pt;}
.y24_c00316{bottom:474.933333pt;}
.y58_c00316{bottom:483.466667pt;}
.y23_c00316{bottom:491.200000pt;}
.y57_c00316{bottom:496.266667pt;}
.y22_c00316{bottom:506.533333pt;}
.y56_c00316{bottom:509.066667pt;}
.y55_c00316{bottom:521.600000pt;}
.y21_c00316{bottom:526.400000pt;}
.y54_c00316{bottom:534.133333pt;}
.y20_c00316{bottom:542.133333pt;}
.y53_c00316{bottom:546.933333pt;}
.y1d_c00316{bottom:557.333333pt;}
.y52_c00316{bottom:560.000000pt;}
.y1c_c00316{bottom:565.066667pt;}
.y1b_c00316{bottom:571.200000pt;}
.y51_c00316{bottom:572.533333pt;}
.y1f_c00316{bottom:581.466667pt;}
.y50_c00316{bottom:585.066667pt;}
.y1a_c00316{bottom:591.733333pt;}
.y1e_c00316{bottom:596.133333pt;}
.y4f_c00316{bottom:598.133333pt;}
.y19_c00316{bottom:614.666667pt;}
.y4e_c00316{bottom:619.466667pt;}
.y18_c00316{bottom:634.133333pt;}
.y4d_c00316{bottom:635.200000pt;}
.y4c_c00316{bottom:650.933333pt;}
.y17_c00316{bottom:654.000000pt;}
.y4b_c00316{bottom:666.933333pt;}
.y16_c00316{bottom:669.733333pt;}
.y4a_c00316{bottom:682.533333pt;}
.y49_c00316{bottom:690.533333pt;}
.y15_c00316{bottom:695.333333pt;}
.y48_c00316{bottom:706.266667pt;}
.y47_c00316{bottom:721.600000pt;}
.y14_c00316{bottom:722.800000pt;}
.y46_c00316{bottom:737.333333pt;}
.y13_c00316{bottom:738.800000pt;}
.y45_c00316{bottom:753.333333pt;}
.y12_c00316{bottom:754.533333pt;}
.y44_c00316{bottom:768.666667pt;}
.y11_c00316{bottom:769.866667pt;}
.y10_c00316{bottom:788.800000pt;}
.y43_c00316{bottom:791.733333pt;}
.yf_c00316{bottom:800.933333pt;}
.ye_c00316{bottom:813.466667pt;}
.y42_c00316{bottom:815.733333pt;}
.yd_c00316{bottom:827.200000pt;}
.y41_c00316{bottom:832.000000pt;}
.yc_c00316{bottom:843.200000pt;}
.y40_c00316{bottom:853.733333pt;}
.yb_c00316{bottom:859.200000pt;}
.y3f_c00316{bottom:869.733333pt;}
.ya_c00316{bottom:874.533333pt;}
.y3e_c00316{bottom:885.466667pt;}
.y9_c00316{bottom:890.266667pt;}
.y3d_c00316{bottom:901.200000pt;}
.y8_c00316{bottom:906.266667pt;}
.y3c_c00316{bottom:917.200000pt;}
.y7_c00316{bottom:925.733333pt;}
.y3b_c00316{bottom:932.933333pt;}
.y6_c00316{bottom:941.066667pt;}
.y3a_c00316{bottom:948.666667pt;}
.y5_c00316{bottom:956.133333pt;}
.y39_c00316{bottom:964.400000pt;}
.y4_c00316{bottom:976.400000pt;}
.y38_c00316{bottom:980.133333pt;}
.y3_c00316{bottom:995.866667pt;}
.y2_c00316{bottom:1018.800000pt;}
.y1_c00316{bottom:1019.466667pt;}
.hb_c00316{height:21.333333pt;}
.h8_c00316{height:26.666667pt;}
.h9_c00316{height:42.666667pt;}
.h5_c00316{height:48.000000pt;}
.h4_c00316{height:53.333333pt;}
.h3_c00316{height:58.666667pt;}
.ha_c00316{height:64.000000pt;}
.h2_c00316{height:69.333333pt;}
.h7_c00316{height:74.666667pt;}
.h6_c00316{height:80.000000pt;}
.hc_c00316{height:85.333333pt;}
.h1_c00316{height:1130.000000pt;}
.h0_c00316{height:1130.239991pt;}
.w1_c00316{width:854.666667pt;}
.w0_c00316{width:854.720052pt;}
.x0_c00316{left:0.000000pt;}
.x4_c00316{left:86.666667pt;}
.x63_c00316{left:88.000000pt;}
.x8f_c00316{left:96.666667pt;}
.x45_c00316{left:99.066667pt;}
.x27_c00316{left:100.400000pt;}
.x13_c00316{left:102.133333pt;}
.x55_c00316{left:103.333333pt;}
.x70_c00316{left:104.266667pt;}
.x92_c00316{left:108.666667pt;}
.x4b_c00316{left:112.266667pt;}
.x6a_c00316{left:115.866667pt;}
.xd_c00316{left:118.666667pt;}
.x35_c00316{left:119.866667pt;}
.x77_c00316{left:120.933333pt;}
.x83_c00316{left:121.866667pt;}
.x7_c00316{left:123.466667pt;}
.x40_c00316{left:125.333333pt;}
.x1a_c00316{left:126.933333pt;}
.x6b_c00316{left:130.266667pt;}
.x19_c00316{left:132.400000pt;}
.x28_c00316{left:133.333333pt;}
.x22_c00316{left:135.333333pt;}
.x5c_c00316{left:136.266667pt;}
.x2d_c00316{left:137.600000pt;}
.x38_c00316{left:142.400000pt;}
.x5a_c00316{left:143.333333pt;}
.x5_c00316{left:145.866667pt;}
.x7e_c00316{left:148.133333pt;}
.x8b_c00316{left:149.733333pt;}
.x64_c00316{left:151.066667pt;}
.x23_c00316{left:152.933333pt;}
.x8_c00316{left:155.200000pt;}
.x6c_c00316{left:156.133333pt;}
.x36_c00316{left:158.000000pt;}
.x5b_c00316{left:159.066667pt;}
.xe_c00316{left:161.600000pt;}
.x7b_c00316{left:162.533333pt;}
.x1_c00316{left:163.466667pt;}
.x7c_c00316{left:164.533333pt;}
.x41_c00316{left:167.600000pt;}
.x80_c00316{left:168.533333pt;}
.x39_c00316{left:170.933333pt;}
.x56_c00316{left:172.133333pt;}
.x61_c00316{left:173.333333pt;}
.x29_c00316{left:176.266667pt;}
.x6d_c00316{left:177.600000pt;}
.x42_c00316{left:178.800000pt;}
.x8c_c00316{left:179.866667pt;}
.x14_c00316{left:181.733333pt;}
.x78_c00316{left:184.933333pt;}
.x1b_c00316{left:186.800000pt;}
.x69_c00316{left:188.800000pt;}
.x4d_c00316{left:192.133333pt;}
.x75_c00316{left:193.333333pt;}
.x5f_c00316{left:195.066667pt;}
.x71_c00316{left:196.000000pt;}
.x3a_c00316{left:198.800000pt;}
.x2e_c00316{left:200.000000pt;}
.x84_c00316{left:204.800000pt;}
.x65_c00316{left:206.400000pt;}
.x87_c00316{left:207.600000pt;}
.x2a_c00316{left:209.600000pt;}
.x51_c00316{left:210.800000pt;}
.x57_c00316{left:212.133333pt;}
.x24_c00316{left:214.000000pt;}
.xf_c00316{left:216.000000pt;}
.x62_c00316{left:218.133333pt;}
.x9_c00316{left:220.133333pt;}
.x88_c00316{left:222.933333pt;}
.x6_c00316{left:225.200000pt;}
.x2f_c00316{left:226.266667pt;}
.x46_c00316{left:227.333333pt;}
.x43_c00316{left:228.666667pt;}
.x1c_c00316{left:231.866667pt;}
.x47_c00316{left:233.466667pt;}
.x37_c00316{left:235.733333pt;}
.x60_c00316{left:237.333333pt;}
.x48_c00316{left:239.600000pt;}
.x76_c00316{left:240.666667pt;}
.x66_c00316{left:242.933333pt;}
.x72_c00316{left:244.666667pt;}
.x2b_c00316{left:246.800000pt;}
.x81_c00316{left:248.933333pt;}
.x67_c00316{left:251.600000pt;}
.x49_c00316{left:252.666667pt;}
.x3b_c00316{left:254.133333pt;}
.x79_c00316{left:256.400000pt;}
.x30_c00316{left:258.266667pt;}
.x15_c00316{left:260.133333pt;}
.x1d_c00316{left:262.533333pt;}
.x8a_c00316{left:263.866667pt;}
.x25_c00316{left:264.933333pt;}
.x4e_c00316{left:268.266667pt;}
.x31_c00316{left:269.466667pt;}
.x5d_c00316{left:271.200000pt;}
.x44_c00316{left:272.133333pt;}
.x10_c00316{left:273.333333pt;}
.x1e_c00316{left:274.666667pt;}
.xa_c00316{left:275.866667pt;}
.x82_c00316{left:278.000000pt;}
.x6e_c00316{left:280.266667pt;}
.x58_c00316{left:281.200000pt;}
.x85_c00316{left:282.666667pt;}
.xb_c00316{left:285.200000pt;}
.x16_c00316{left:286.400000pt;}
.x52_c00316{left:288.000000pt;}
.x73_c00316{left:289.733333pt;}
.x86_c00316{left:292.133333pt;}
.x3c_c00316{left:293.466667pt;}
.x68_c00316{left:299.600000pt;}
.x32_c00316{left:300.533333pt;}
.x2_c00316{left:301.733333pt;}
.x17_c00316{left:305.866667pt;}
.x74_c00316{left:307.600000pt;}
.x4f_c00316{left:308.933333pt;}
.x7f_c00316{left:312.266667pt;}
.x1f_c00316{left:313.333333pt;}
.x3d_c00316{left:317.200000pt;}
.x33_c00316{left:320.400000pt;}
.x59_c00316{left:322.800000pt;}
.x11_c00316{left:326.800000pt;}
.x89_c00316{left:333.733333pt;}
.xc_c00316{left:335.466667pt;}
.x26_c00316{left:337.200000pt;}
.x8d_c00316{left:338.266667pt;}
.x90_c00316{left:339.333333pt;}
.x3e_c00316{left:340.933333pt;}
.x5e_c00316{left:342.266667pt;}
.x53_c00316{left:344.666667pt;}
.x4c_c00316{left:347.066667pt;}
.x20_c00316{left:348.800000pt;}
.x34_c00316{left:352.133333pt;}
.x54_c00316{left:354.266667pt;}
.x8e_c00316{left:356.133333pt;}
.x7d_c00316{left:357.200000pt;}
.x6f_c00316{left:360.533333pt;}
.x50_c00316{left:362.000000pt;}
.x91_c00316{left:363.066667pt;}
.x21_c00316{left:365.066667pt;}
.x18_c00316{left:368.666667pt;}
.x12_c00316{left:370.266667pt;}
.x3f_c00316{left:371.333333pt;}
.x4a_c00316{left:373.333333pt;}
.x2c_c00316{left:379.866667pt;}
.x7a_c00316{left:382.666667pt;}
.xd1_c00316{left:402.266667pt;}
.xf4_c00316{left:403.866667pt;}
.x106_c00316{left:416.266667pt;}
.xa8_c00316{left:417.600000pt;}
.x93_c00316{left:418.933333pt;}
.xe8_c00316{left:419.866667pt;}
.x10a_c00316{left:428.133333pt;}
.x110_c00316{left:429.200000pt;}
.x10d_c00316{left:430.533333pt;}
.x11a_c00316{left:431.733333pt;}
.xda_c00316{left:435.066667pt;}
.xa3_c00316{left:436.800000pt;}
.xfe_c00316{left:438.400000pt;}
.xa9_c00316{left:439.733333pt;}
.xd6_c00316{left:440.666667pt;}
.xc5_c00316{left:442.400000pt;}
.xb6_c00316{left:445.733333pt;}
.x10b_c00316{left:447.600000pt;}
.xec_c00316{left:448.533333pt;}
.xf8_c00316{left:450.800000pt;}
.xef_c00316{left:452.133333pt;}
.xc6_c00316{left:453.333333pt;}
.xde_c00316{left:455.333333pt;}
.x11b_c00316{left:457.066667pt;}
.x9b_c00316{left:461.600000pt;}
.xd2_c00316{left:463.733333pt;}
.x94_c00316{left:465.066667pt;}
.x114_c00316{left:466.000000pt;}
.x103_c00316{left:469.600000pt;}
.xcc_c00316{left:470.933333pt;}
.xbd_c00316{left:471.866667pt;}
.x133_c00316{left:472.800000pt;}
.xdf_c00316{left:474.533333pt;}
.x12e_c00316{left:476.133333pt;}
.x131_c00316{left:477.466667pt;}
.xbe_c00316{left:479.200000pt;}
.x126_c00316{left:480.133333pt;}
.x118_c00316{left:481.200000pt;}
.x107_c00316{left:483.200000pt;}
.xb7_c00316{left:484.800000pt;}
.x95_c00316{left:486.533333pt;}
.x122_c00316{left:488.533333pt;}
.x134_c00316{left:489.733333pt;}
.x12b_c00316{left:490.933333pt;}
.xdb_c00316{left:492.400000pt;}
.xf0_c00316{left:493.733333pt;}
.xaa_c00316{left:495.733333pt;}
.xb2_c00316{left:497.733333pt;}
.x115_c00316{left:499.600000pt;}
.xa4_c00316{left:501.066667pt;}
.xbf_c00316{left:502.266667pt;}
.x9c_c00316{left:503.200000pt;}
.x135_c00316{left:504.133333pt;}
.x119_c00316{left:505.466667pt;}
.xc7_c00316{left:506.400000pt;}
.x12c_c00316{left:508.400000pt;}
.xd7_c00316{left:509.866667pt;}
.x11c_c00316{left:511.600000pt;}
.xdc_c00316{left:512.533333pt;}
.xf9_c00316{left:514.533333pt;}
.xff_c00316{left:516.800000pt;}
.xab_c00316{left:517.866667pt;}
.xe0_c00316{left:520.266667pt;}
.xcd_c00316{left:521.733333pt;}
.x129_c00316{left:523.200000pt;}
.xd3_c00316{left:526.400000pt;}
.x111_c00316{left:528.533333pt;}
.xc0_c00316{left:530.400000pt;}
.x9d_c00316{left:532.266667pt;}
.xb3_c00316{left:533.866667pt;}
.x123_c00316{left:535.200000pt;}
.xc8_c00316{left:536.800000pt;}
.xc1_c00316{left:538.133333pt;}
.xf5_c00316{left:540.133333pt;}
.x12d_c00316{left:541.200000pt;}
.x96_c00316{left:542.800000pt;}
.x100_c00316{left:544.266667pt;}
.xe9_c00316{left:545.466667pt;}
.xd8_c00316{left:546.666667pt;}
.x9e_c00316{left:548.266667pt;}
.xe5_c00316{left:551.066667pt;}
.xe1_c00316{left:553.200000pt;}
.xac_c00316{left:556.266667pt;}
.x11d_c00316{left:557.733333pt;}
.x127_c00316{left:558.800000pt;}
.xf1_c00316{left:560.933333pt;}
.xc2_c00316{left:561.866667pt;}
.xb8_c00316{left:563.200000pt;}
.x9f_c00316{left:564.533333pt;}
.x12f_c00316{left:566.400000pt;}
.x97_c00316{left:567.466667pt;}
.xf6_c00316{left:569.200000pt;}
.x120_c00316{left:570.133333pt;}
.xad_c00316{left:571.333333pt;}
.xc9_c00316{left:572.266667pt;}
.x124_c00316{left:573.600000pt;}
.x113_c00316{left:574.800000pt;}
.xfa_c00316{left:576.666667pt;}
.xce_c00316{left:578.000000pt;}
.xd9_c00316{left:580.266667pt;}
.x112_c00316{left:582.666667pt;}
.xed_c00316{left:583.600000pt;}
.xae_c00316{left:585.466667pt;}
.xdd_c00316{left:587.466667pt;}
.xe2_c00316{left:588.666667pt;}
.xe6_c00316{left:591.066667pt;}
.x10e_c00316{left:592.000000pt;}
.xb4_c00316{left:596.533333pt;}
.xb9_c00316{left:597.733333pt;}
.xee_c00316{left:598.666667pt;}
.x136_c00316{left:600.400000pt;}
.xd4_c00316{left:601.600000pt;}
.x104_c00316{left:604.133333pt;}
.xf2_c00316{left:605.466667pt;}
.x101_c00316{left:607.200000pt;}
.x117_c00316{left:608.400000pt;}
.xca_c00316{left:610.400000pt;}
.xea_c00316{left:615.600000pt;}
.xa0_c00316{left:617.333333pt;}
.xfb_c00316{left:618.266667pt;}
.xe7_c00316{left:619.200000pt;}
.xe3_c00316{left:620.666667pt;}
.x130_c00316{left:622.133333pt;}
.xf7_c00316{left:623.333333pt;}
.xaf_c00316{left:626.133333pt;}
.xa1_c00316{left:627.200000pt;}
.xb5_c00316{left:628.800000pt;}
.x98_c00316{left:630.133333pt;}
.xba_c00316{left:631.333333pt;}
.xb0_c00316{left:634.133333pt;}
.xa5_c00316{left:635.866667pt;}
.xfc_c00316{left:636.800000pt;}
.x108_c00316{left:637.733333pt;}
.x10f_c00316{left:638.800000pt;}
.x102_c00316{left:642.133333pt;}
.x132_c00316{left:644.266667pt;}
.xe4_c00316{left:647.600000pt;}
.x125_c00316{left:648.800000pt;}
.xb1_c00316{left:650.133333pt;}
.xeb_c00316{left:652.400000pt;}
.xcf_c00316{left:654.533333pt;}
.xbb_c00316{left:655.600000pt;}
.xa2_c00316{left:657.600000pt;}
.x11e_c00316{left:660.133333pt;}
.x99_c00316{left:661.200000pt;}
.xa6_c00316{left:662.400000pt;}
.x10c_c00316{left:663.866667pt;}
.xc3_c00316{left:665.066667pt;}
.x128_c00316{left:666.266667pt;}
.xfd_c00316{left:667.200000pt;}
.x137_c00316{left:669.200000pt;}
.x121_c00316{left:670.933333pt;}
.xd0_c00316{left:673.066667pt;}
.x3_c00316{left:675.200000pt;}
.xd5_c00316{left:676.400000pt;}
.xf3_c00316{left:677.466667pt;}
.x9a_c00316{left:678.533333pt;}
.x11f_c00316{left:680.000000pt;}
.xbc_c00316{left:681.866667pt;}
.xcb_c00316{left:683.066667pt;}
.x109_c00316{left:684.800000pt;}
.x12a_c00316{left:685.866667pt;}
.x105_c00316{left:688.000000pt;}
.xa7_c00316{left:689.600000pt;}
.x116_c00316{left:690.533333pt;}
.xc4_c00316{left:697.066667pt;}
}





/* 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_c00317 {
    display:none;
  }
  .loading-indicator_c00317.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00317 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_c00317 { 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_c00317" -> "#page-container .classname_c00317")
 */
.pf_c00317 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00317 { /* 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_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00317 { /* 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_c00317 { /* 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_c00317 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00317 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00317 {overflow:visible;}
  }
}
.c_c00317 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00317 { /* 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_c00317:after { /* webkit #35443 */
  content: '';
}
.t_c00317:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00317 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 */
}
.__c00317 { /* 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_c00317 { /* info for Javascript */
  display:none;
}
.l_c00317 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00317 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00317 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00317: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_c00317 {
    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_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00317.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_c00317 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00317;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.000000;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;}
.mc0_c00317{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00317{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00317{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mea_c00317{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.me0_c00317{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md8_c00317{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me6_c00317{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.md7_c00317{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00317{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.me7_c00317{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.md6_c00317{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00317{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m106_c00317{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.me8_c00317{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00317{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mf_c00317{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me9_c00317{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00317{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m8_c00317{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md9_c00317{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00317{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m74_c00317{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00317{transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00317{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00317{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mba_c00317{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00317{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00317{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.md1_c00317{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00317{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00317{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00317{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m57_c00317{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00317{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00317{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00317{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m39_c00317{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00317{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00317{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m64_c00317{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00317{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00317{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00317{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m24_c00317{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00317{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00317{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m73_c00317{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00317{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00317{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m32_c00317{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m101_c00317{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00317{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m109_c00317{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00317{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00317{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00317{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m45_c00317{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m62_c00317{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00317{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m60_c00317{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00317{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m67_c00317{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00317{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00317{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00317{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00317{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m53_c00317{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m36_c00317{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m96_c00317{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mde_c00317{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00317{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.mc_c00317{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m105_c00317{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb_c00317{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m12_c00317{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00317{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m55_c00317{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00317{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00317{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m83_c00317{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00317{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m13_c00317{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00317{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m31_c00317{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00317{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m89_c00317{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m66_c00317{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m99_c00317{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m65_c00317{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00317{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m104_c00317{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m77_c00317{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m43_c00317{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m41_c00317{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m103_c00317{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00317{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m90_c00317{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m58_c00317{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00317{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00317{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00317{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.maf_c00317{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m18_c00317{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m2_c00317{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00317{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00317{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00317{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m59_c00317{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00317{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m80_c00317{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m23_c00317{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00317{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m56_c00317{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m7_c00317{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m16_c00317{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00317{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00317{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m69_c00317{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m100_c00317{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m114_c00317{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10_c00317{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m14_c00317{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m28_c00317{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00317{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m123_c00317{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00317{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00317{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00317{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m107_c00317{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m110_c00317{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m6_c00317{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m52_c00317{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m42_c00317{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00317{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m82_c00317{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m27_c00317{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00317{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m15_c00317{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m49_c00317{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mff_c00317{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m51_c00317{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m111_c00317{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m125_c00317{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00317{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m61_c00317{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00317{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m44_c00317{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md_c00317{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m22_c00317{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m76_c00317{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m87_c00317{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m78_c00317{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00317{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00317{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00317{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma_c00317{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m20_c00317{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00317{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m79_c00317{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m108_c00317{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m113_c00317{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m35_c00317{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m33_c00317{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.md0_c00317{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m50_c00317{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m85_c00317{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m112_c00317{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00317{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00317{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m29_c00317{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.maa_c00317{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00317{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m126_c00317{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m19_c00317{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m63_c00317{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m26_c00317{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00317{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00317{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00317{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m17_c00317{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m98_c00317{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m5_c00317{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00317{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9_c00317{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00317{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m68_c00317{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mac_c00317{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m92_c00317{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00317{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m47_c00317{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m40_c00317{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00317{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m81_c00317{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m116_c00317{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00317{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00317{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4_c00317{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00317{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m71_c00317{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00317{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mca_c00317{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m25_c00317{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00317{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m30_c00317{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mce_c00317{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00317{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00317{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00317{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00317{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.med_c00317{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00317{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m93_c00317{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00317{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00317{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m95_c00317{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m72_c00317{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00317{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00317{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00317{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.me_c00317{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00317{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m21_c00317{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00317{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m70_c00317{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md2_c00317{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00317{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00317{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m122_c00317{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00317{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mad_c00317{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me3_c00317{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m88_c00317{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00317{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00317{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md5_c00317{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00317{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m11_c00317{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md3_c00317{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00317{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m102_c00317{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m86_c00317{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00317{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00317{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m54_c00317{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m118_c00317{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mae_c00317{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00317{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00317{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);}
.m75_c00317{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mda_c00317{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me4_c00317{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m37_c00317{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m84_c00317{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00317{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me5_c00317{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m115_c00317{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m91_c00317{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m119_c00317{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00317{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00317{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.md4_c00317{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mec_c00317{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m46_c00317{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m38_c00317{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mee_c00317{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me2_c00317{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00317{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00317{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m117_c00317{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00317{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00317{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m121_c00317{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00317{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00317{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00317{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m34_c00317{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00317{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m120_c00317{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m48_c00317{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m124_c00317{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00317{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mab_c00317{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m97_c00317{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m94_c00317{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00317{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00317{transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00317{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.mef_c00317{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.me1_c00317{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00317{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.meb_c00317{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00317{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls1_c00317{letter-spacing:0.000000px;}
.ls0_c00317{letter-spacing:70.000000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{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__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00317{word-spacing:-100.000000px;}
.ws6_c00317{word-spacing:-11.538462px;}
.ws1_c00317{word-spacing:-11.210526px;}
.wsd_c00317{word-spacing:-8.181818px;}
.ws2_c00317{word-spacing:-8.000000px;}
.ws3_c00317{word-spacing:-5.405405px;}
.wse_c00317{word-spacing:-4.036247px;}
.ws10_c00317{word-spacing:0.000000px;}
.ws0_c00317{word-spacing:0.706806px;}
.wsc_c00317{word-spacing:4.196319px;}
.wsf_c00317{word-spacing:15.917031px;}
.ws9_c00317{word-spacing:19.994638px;}
.ws4_c00317{word-spacing:22.142857px;}
.wsb_c00317{word-spacing:23.211796px;}
.wsa_c00317{word-spacing:39.750000px;}
.ws7_c00317{word-spacing:40.000000px;}
.ws8_c00317{word-spacing:67.631579px;}
._1_c00317{margin-left:-70.000000px;}
._2_c00317{width:50.211796px;}
._0_c00317{width:59.285714px;}
.fc0_c00317{color:transparent;}
.fs4_c00317{font-size:54.000000px;}
.fs3_c00317{font-size:60.000000px;}
.fs2_c00317{font-size:66.000000px;}
.fs0_c00317{font-size:72.000000px;}
.fs1_c00317{font-size:102.000000px;}
.y0_c00317{bottom:0.000000px;}
.y68_c00317{bottom:200.100000px;}
.y35_c00317{bottom:200.850000px;}
.y67_c00317{bottom:217.800000px;}
.y34_c00317{bottom:222.900000px;}
.y66_c00317{bottom:235.800000px;}
.y33_c00317{bottom:240.900000px;}
.y65_c00317{bottom:253.500000px;}
.y32_c00317{bottom:258.150000px;}
.y31_c00317{bottom:275.700000px;}
.y30_c00317{bottom:293.700000px;}
.y2f_c00317{bottom:311.400000px;}
.y2e_c00317{bottom:329.100000px;}
.y64_c00317{bottom:329.400000px;}
.y63_c00317{bottom:347.100000px;}
.y2d_c00317{bottom:351.000000px;}
.y62_c00317{bottom:365.100000px;}
.y2c_c00317{bottom:377.700000px;}
.y61_c00317{bottom:383.100000px;}
.y2b_c00317{bottom:395.700000px;}
.y60_c00317{bottom:404.400000px;}
.y2a_c00317{bottom:413.700000px;}
.y5f_c00317{bottom:422.400000px;}
.y29_c00317{bottom:431.400000px;}
.y5e_c00317{bottom:440.100000px;}
.y28_c00317{bottom:449.100000px;}
.y5d_c00317{bottom:457.800000px;}
.y27_c00317{bottom:467.100000px;}
.y5c_c00317{bottom:475.500000px;}
.y26_c00317{bottom:485.100000px;}
.y5b_c00317{bottom:493.200000px;}
.y25_c00317{bottom:502.800000px;}
.y5a_c00317{bottom:511.200000px;}
.y24_c00317{bottom:520.800000px;}
.y59_c00317{bottom:528.900000px;}
.y23_c00317{bottom:538.500000px;}
.y58_c00317{bottom:546.600000px;}
.y22_c00317{bottom:556.500000px;}
.y57_c00317{bottom:564.600000px;}
.y21_c00317{bottom:578.400000px;}
.y56_c00317{bottom:582.300000px;}
.y20_c00317{bottom:596.400000px;}
.y55_c00317{bottom:600.300000px;}
.y1f_c00317{bottom:614.100000px;}
.y54_c00317{bottom:618.000000px;}
.y1e_c00317{bottom:631.800000px;}
.y53_c00317{bottom:636.000000px;}
.y1d_c00317{bottom:649.050000px;}
.y52_c00317{bottom:653.700000px;}
.y1c_c00317{bottom:667.050000px;}
.y51_c00317{bottom:671.400000px;}
.y1b_c00317{bottom:685.050000px;}
.y50_c00317{bottom:689.100000px;}
.y1a_c00317{bottom:702.750000px;}
.y4f_c00317{bottom:707.100000px;}
.y19_c00317{bottom:720.750000px;}
.y4e_c00317{bottom:724.800000px;}
.y18_c00317{bottom:738.000000px;}
.y4d_c00317{bottom:742.800000px;}
.y17_c00317{bottom:760.350000px;}
.y4c_c00317{bottom:760.500000px;}
.y4b_c00317{bottom:778.200000px;}
.y16_c00317{bottom:778.350000px;}
.y4a_c00317{bottom:795.900000px;}
.y15_c00317{bottom:796.050000px;}
.y49_c00317{bottom:813.600000px;}
.y14_c00317{bottom:813.750000px;}
.y13_c00317{bottom:831.750000px;}
.y48_c00317{bottom:838.500000px;}
.y12_c00317{bottom:849.450000px;}
.y47_c00317{bottom:852.900000px;}
.y11_c00317{bottom:866.700000px;}
.y46_c00317{bottom:868.350000px;}
.y45_c00317{bottom:881.250000px;}
.y10_c00317{bottom:884.700000px;}
.y44_c00317{bottom:896.700000px;}
.yf_c00317{bottom:902.400000px;}
.y43_c00317{bottom:910.050000px;}
.ye_c00317{bottom:920.100000px;}
.y42_c00317{bottom:925.950000px;}
.yd_c00317{bottom:938.100000px;}
.y41_c00317{bottom:938.850000px;}
.y40_c00317{bottom:954.000000px;}
.yc_c00317{bottom:960.150000px;}
.y3f_c00317{bottom:968.400000px;}
.yb_c00317{bottom:978.150000px;}
.y3e_c00317{bottom:982.500000px;}
.ya_c00317{bottom:995.400000px;}
.y3d_c00317{bottom:996.150000px;}
.y3c_c00317{bottom:1010.850000px;}
.y9_c00317{bottom:1013.250000px;}
.y3b_c00317{bottom:1024.500000px;}
.y8_c00317{bottom:1030.950000px;}
.y3a_c00317{bottom:1040.100000px;}
.y7_c00317{bottom:1048.950000px;}
.y39_c00317{bottom:1063.800000px;}
.y6_c00317{bottom:1066.200000px;}
.y38_c00317{bottom:1081.800000px;}
.y5_c00317{bottom:1084.200000px;}
.y37_c00317{bottom:1099.050000px;}
.y4_c00317{bottom:1101.900000px;}
.y36_c00317{bottom:1117.050000px;}
.y3_c00317{bottom:1119.600000px;}
.y2_c00317{bottom:1144.500000px;}
.y1_c00317{bottom:1146.600000px;}
.h6_c00317{height:54.000000px;}
.h5_c00317{height:60.000000px;}
.h4_c00317{height:66.000000px;}
.h2_c00317{height:72.000000px;}
.h3_c00317{height:102.000000px;}
.h1_c00317{height:1265.250000px;}
.h0_c00317{height:1265.399964px;}
.w1_c00317{width:961.500000px;}
.w0_c00317{width:961.560058px;}
.x0_c00317{left:0.000000px;}
.xaa_c00317{left:160.950000px;}
.xa0_c00317{left:173.100000px;}
.x8c_c00317{left:174.900000px;}
.x1_c00317{left:179.250000px;}
.xa7_c00317{left:184.350000px;}
.xa5_c00317{left:189.900000px;}
.x82_c00317{left:191.850000px;}
.x73_c00317{left:192.900000px;}
.x2d_c00317{left:194.100000px;}
.x3_c00317{left:196.500000px;}
.x1b_c00317{left:197.550000px;}
.x13_c00317{left:198.750000px;}
.x97_c00317{left:200.250000px;}
.xa3_c00317{left:210.300000px;}
.x61_c00317{left:211.500000px;}
.x94_c00317{left:213.450000px;}
.x8e_c00317{left:215.250000px;}
.x7f_c00317{left:216.300000px;}
.x9b_c00317{left:219.150000px;}
.x2e_c00317{left:221.850000px;}
.x83_c00317{left:223.200000px;}
.xa6_c00317{left:226.200000px;}
.x58_c00317{left:227.250000px;}
.x69_c00317{left:229.350000px;}
.xb_c00317{left:231.600000px;}
.x32_c00317{left:232.950000px;}
.x63_c00317{left:235.800000px;}
.x8f_c00317{left:237.600000px;}
.x3d_c00317{left:238.650000px;}
.x14_c00317{left:241.650000px;}
.x4d_c00317{left:243.600000px;}
.x28_c00317{left:246.300000px;}
.x38_c00317{left:251.400000px;}
.x54_c00317{left:253.800000px;}
.x3e_c00317{left:256.350000px;}
.xc_c00317{left:257.550000px;}
.x20_c00317{left:258.750000px;}
.x15_c00317{left:261.750000px;}
.x78_c00317{left:264.900000px;}
.x59_c00317{left:266.100000px;}
.x9f_c00317{left:267.150000px;}
.x80_c00317{left:268.500000px;}
.x6a_c00317{left:270.450000px;}
.x99_c00317{left:272.400000px;}
.x7b_c00317{left:274.050000px;}
.x48_c00317{left:275.850000px;}
.x95_c00317{left:278.550000px;}
.x33_c00317{left:280.500000px;}
.x5a_c00317{left:282.300000px;}
.x4_c00317{left:283.950000px;}
.x4e_c00317{left:285.300000px;}
.x84_c00317{left:287.250000px;}
.x6e_c00317{left:289.800000px;}
.x34_c00317{left:291.300000px;}
.x29_c00317{left:292.350000px;}
.xa1_c00317{left:295.500000px;}
.x1c_c00317{left:296.850000px;}
.x24_c00317{left:299.250000px;}
.x55_c00317{left:300.300000px;}
.x2f_c00317{left:301.800000px;}
.x8a_c00317{left:302.850000px;}
.xd_c00317{left:304.350000px;}
.x44_c00317{left:305.550000px;}
.x9c_c00317{left:307.650000px;}
.x74_c00317{left:309.150000px;}
.x2a_c00317{left:310.350000px;}
.x41_c00317{left:311.850000px;}
.x6f_c00317{left:313.200000px;}
.x52_c00317{left:315.000000px;}
.x21_c00317{left:316.350000px;}
.x39_c00317{left:320.400000px;}
.x5_c00317{left:321.450000px;}
.xe_c00317{left:323.850000px;}
.x45_c00317{left:325.050000px;}
.x2b_c00317{left:326.850000px;}
.x9d_c00317{left:328.500000px;}
.x87_c00317{left:330.900000px;}
.x16_c00317{left:332.250000px;}
.x79_c00317{left:333.300000px;}
.x5b_c00317{left:336.000000px;}
.x49_c00317{left:337.350000px;}
.x25_c00317{left:339.600000px;}
.x6_c00317{left:342.000000px;}
.x64_c00317{left:343.050000px;}
.xa4_c00317{left:344.250000px;}
.x75_c00317{left:346.650000px;}
.xa2_c00317{left:347.700000px;}
.xf_c00317{left:348.750000px;}
.x4a_c00317{left:353.850000px;}
.x60_c00317{left:355.800000px;}
.x98_c00317{left:357.750000px;}
.x85_c00317{left:359.700000px;}
.x56_c00317{left:361.500000px;}
.x35_c00317{left:364.350000px;}
.x3a_c00317{left:365.400000px;}
.x76_c00317{left:367.500000px;}
.x17_c00317{left:369.000000px;}
.x88_c00317{left:370.500000px;}
.x42_c00317{left:371.550000px;}
.x65_c00317{left:372.600000px;}
.x7e_c00317{left:373.950000px;}
.x1d_c00317{left:377.550000px;}
.x5c_c00317{left:379.200000px;}
.x70_c00317{left:380.850000px;}
.x8b_c00317{left:382.650000px;}
.x90_c00317{left:384.900000px;}
.x3b_c00317{left:386.250000px;}
.x18_c00317{left:389.100000px;}
.x91_c00317{left:390.150000px;}
.x22_c00317{left:391.950000px;}
.x7a_c00317{left:394.200000px;}
.x46_c00317{left:395.250000px;}
.x7_c00317{left:396.300000px;}
.x4f_c00317{left:397.350000px;}
.x10_c00317{left:398.850000px;}
.x9e_c00317{left:400.050000px;}
.x71_c00317{left:401.700000px;}
.x5d_c00317{left:405.450000px;}
.x36_c00317{left:407.550000px;}
.x11_c00317{left:408.600000px;}
.x6b_c00317{left:410.400000px;}
.x50_c00317{left:413.550000px;}
.x23_c00317{left:414.600000px;}
.x7c_c00317{left:416.850000px;}
.xa9_c00317{left:417.900000px;}
.x2_c00317{left:418.950000px;}
.x1e_c00317{left:422.250000px;}
.x81_c00317{left:425.100000px;}
.x66_c00317{left:426.600000px;}
.x92_c00317{left:430.500000px;}
.x86_c00317{left:433.800000px;}
.x4b_c00317{left:435.150000px;}
.xa8_c00317{left:436.950000px;}
.x67_c00317{left:438.150000px;}
.x26_c00317{left:439.650000px;}
.x30_c00317{left:442.500000px;}
.x19_c00317{left:444.900000px;}
.x8_c00317{left:447.450000px;}
.x47_c00317{left:450.000000px;}
.x62_c00317{left:451.200000px;}
.x89_c00317{left:453.300000px;}
.x3c_c00317{left:454.950000px;}
.x5e_c00317{left:456.600000px;}
.x51_c00317{left:458.250000px;}
.x53_c00317{left:459.300000px;}
.x68_c00317{left:460.800000px;}
.x37_c00317{left:462.300000px;}
.x2c_c00317{left:463.350000px;}
.x57_c00317{left:466.650000px;}
.x27_c00317{left:467.700000px;}
.x3f_c00317{left:470.250000px;}
.x6c_c00317{left:471.300000px;}
.x9a_c00317{left:472.350000px;}
.x96_c00317{left:474.150000px;}
.x93_c00317{left:475.950000px;}
.x12_c00317{left:477.000000px;}
.x7d_c00317{left:478.800000px;}
.x72_c00317{left:481.950000px;}
.x9_c00317{left:483.150000px;}
.x1f_c00317{left:485.250000px;}
.x1a_c00317{left:486.300000px;}
.x77_c00317{left:488.100000px;}
.x43_c00317{left:490.500000px;}
.xa_c00317{left:492.150000px;}
.x6d_c00317{left:493.950000px;}
.x40_c00317{left:495.150000px;}
.x31_c00317{left:499.350000px;}
.x5f_c00317{left:500.550000px;}
.x4c_c00317{left:501.750000px;}
.x8d_c00317{left:506.100000px;}
.x139_c00317{left:528.450000px;}
.x102_c00317{left:532.500000px;}
.xc4_c00317{left:534.900000px;}
.x143_c00317{left:545.250000px;}
.xee_c00317{left:546.450000px;}
.xf5_c00317{left:547.500000px;}
.xcb_c00317{left:549.000000px;}
.x106_c00317{left:550.050000px;}
.xab_c00317{left:552.600000px;}
.xf6_c00317{left:561.450000px;}
.xd9_c00317{left:562.950000px;}
.x110_c00317{left:565.200000px;}
.x14d_c00317{left:566.400000px;}
.x12f_c00317{left:569.250000px;}
.x114_c00317{left:570.900000px;}
.x127_c00317{left:572.550000px;}
.x134_c00317{left:575.550000px;}
.x124_c00317{left:577.650000px;}
.xcc_c00317{left:578.850000px;}
.x126_c00317{left:580.500000px;}
.xbf_c00317{left:582.000000px;}
.xf1_c00317{left:584.100000px;}
.xe5_c00317{left:585.150000px;}
.xb2_c00317{left:586.200000px;}
.x13a_c00317{left:588.150000px;}
.x11d_c00317{left:589.650000px;}
.xc0_c00317{left:592.500000px;}
.x14f_c00317{left:594.300000px;}
.xc5_c00317{left:595.350000px;}
.xcd_c00317{left:596.850000px;}
.x144_c00317{left:599.250000px;}
.xf7_c00317{left:601.050000px;}
.x120_c00317{left:602.400000px;}
.xb3_c00317{left:603.900000px;}
.xe6_c00317{left:605.700000px;}
.x145_c00317{left:607.950000px;}
.x12a_c00317{left:609.900000px;}
.x122_c00317{left:611.250000px;}
.x128_c00317{left:613.650000px;}
.xf8_c00317{left:615.450000px;}
.x103_c00317{left:616.800000px;}
.xda_c00317{left:618.300000px;}
.xfb_c00317{left:619.650000px;}
.xac_c00317{left:623.100000px;}
.xfc_c00317{left:626.550000px;}
.xf2_c00317{left:629.100000px;}
.xce_c00317{left:630.300000px;}
.x10a_c00317{left:632.100000px;}
.xfd_c00317{left:633.750000px;}
.xc1_c00317{left:636.750000px;}
.x135_c00317{left:639.450000px;}
.x12b_c00317{left:640.500000px;}
.xad_c00317{left:642.150000px;}
.xd3_c00317{left:643.800000px;}
.x118_c00317{left:646.200000px;}
.xf3_c00317{left:648.150000px;}
.xb9_c00317{left:649.500000px;}
.x13b_c00317{left:651.150000px;}
.x149_c00317{left:652.650000px;}
.xdb_c00317{left:654.300000px;}
.xe1_c00317{left:655.800000px;}
.xc6_c00317{left:658.050000px;}
.x107_c00317{left:660.600000px;}
.xe2_c00317{left:663.000000px;}
.x10d_c00317{left:666.600000px;}
.x123_c00317{left:667.800000px;}
.xc2_c00317{left:669.150000px;}
.xe7_c00317{left:674.400000px;}
.xfe_c00317{left:676.200000px;}
.xc7_c00317{left:677.550000px;}
.xcf_c00317{left:678.900000px;}
.x13e_c00317{left:680.100000px;}
.x131_c00317{left:681.150000px;}
.xb4_c00317{left:684.150000px;}
.xd4_c00317{left:685.200000px;}
.x111_c00317{left:686.550000px;}
.x136_c00317{left:688.350000px;}
.xba_c00317{left:689.400000px;}
.xe3_c00317{left:691.500000px;}
.xd5_c00317{left:692.700000px;}
.x108_c00317{left:694.350000px;}
.xdc_c00317{left:696.450000px;}
.xe4_c00317{left:698.400000px;}
.xd6_c00317{left:699.900000px;}
.x11e_c00317{left:701.250000px;}
.x12c_c00317{left:702.450000px;}
.xb5_c00317{left:704.700000px;}
.xae_c00317{left:706.650000px;}
.x10b_c00317{left:709.800000px;}
.xdd_c00317{left:711.600000px;}
.x14b_c00317{left:713.850000px;}
.xc8_c00317{left:715.350000px;}
.x11a_c00317{left:717.600000px;}
.x13f_c00317{left:720.000000px;}
.xd0_c00317{left:721.350000px;}
.x146_c00317{left:724.950000px;}
.x121_c00317{left:726.600000px;}
.xe8_c00317{left:728.400000px;}
.x137_c00317{left:730.650000px;}
.xef_c00317{left:731.850000px;}
.xbb_c00317{left:732.900000px;}
.xaf_c00317{left:735.150000px;}
.xd1_c00317{left:737.250000px;}
.x129_c00317{left:738.450000px;}
.xc3_c00317{left:741.450000px;}
.xbc_c00317{left:743.400000px;}
.x104_c00317{left:745.350000px;}
.x130_c00317{left:746.400000px;}
.xf0_c00317{left:747.750000px;}
.xe9_c00317{left:749.700000px;}
.x112_c00317{left:751.050000px;}
.x116_c00317{left:752.400000px;}
.x140_c00317{left:754.200000px;}
.xf4_c00317{left:756.600000px;}
.xea_c00317{left:757.650000px;}
.xf9_c00317{left:759.450000px;}
.xc9_c00317{left:761.850000px;}
.x119_c00317{left:763.200000px;}
.xd7_c00317{left:765.300000px;}
.x14a_c00317{left:766.500000px;}
.xd2_c00317{left:768.150000px;}
.x13c_c00317{left:770.250000px;}
.xd8_c00317{left:772.500000px;}
.xb0_c00317{left:774.750000px;}
.x132_c00317{left:776.100000px;}
.x147_c00317{left:777.150000px;}
.xeb_c00317{left:778.950000px;}
.x12d_c00317{left:781.950000px;}
.x11c_c00317{left:784.350000px;}
.x11b_c00317{left:785.700000px;}
.xb6_c00317{left:788.250000px;}
.x13d_c00317{left:789.300000px;}
.xbd_c00317{left:790.500000px;}
.x105_c00317{left:792.450000px;}
.x141_c00317{left:793.650000px;}
.x100_c00317{left:796.500000px;}
.xde_c00317{left:798.000000px;}
.xb7_c00317{left:799.050000px;}
.x125_c00317{left:800.550000px;}
.x12e_c00317{left:802.050000px;}
.x10c_c00317{left:805.200000px;}
.x10e_c00317{left:807.750000px;}
.xb1_c00317{left:812.250000px;}
.x14c_c00317{left:813.750000px;}
.x11f_c00317{left:815.400000px;}
.x14e_c00317{left:816.600000px;}
.x133_c00317{left:818.550000px;}
.xca_c00317{left:821.550000px;}
.x113_c00317{left:825.150000px;}
.xec_c00317{left:827.250000px;}
.xdf_c00317{left:828.900000px;}
.x138_c00317{left:832.050000px;}
.x148_c00317{left:833.700000px;}
.xfa_c00317{left:837.150000px;}
.x117_c00317{left:838.800000px;}
.x109_c00317{left:840.450000px;}
.xff_c00317{left:842.550000px;}
.xb8_c00317{left:847.350000px;}
.x115_c00317{left:850.650000px;}
.x10f_c00317{left:852.450000px;}
.x101_c00317{left:854.400000px;}
.xed_c00317{left:856.050000px;}
.xbe_c00317{left:857.100000px;}
.x142_c00317{left:858.750000px;}
.xe0_c00317{left:873.600000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls1_c00317{letter-spacing:0.000000pt;}
.ls0_c00317{letter-spacing:62.222222pt;}
.ws5_c00317{word-spacing:-88.888889pt;}
.ws6_c00317{word-spacing:-10.256410pt;}
.ws1_c00317{word-spacing:-9.964912pt;}
.wsd_c00317{word-spacing:-7.272727pt;}
.ws2_c00317{word-spacing:-7.111111pt;}
.ws3_c00317{word-spacing:-4.804805pt;}
.wse_c00317{word-spacing:-3.587775pt;}
.ws10_c00317{word-spacing:0.000000pt;}
.ws0_c00317{word-spacing:0.628272pt;}
.wsc_c00317{word-spacing:3.730061pt;}
.wsf_c00317{word-spacing:14.148472pt;}
.ws9_c00317{word-spacing:17.773012pt;}
.ws4_c00317{word-spacing:19.682540pt;}
.wsb_c00317{word-spacing:20.632708pt;}
.wsa_c00317{word-spacing:35.333333pt;}
.ws7_c00317{word-spacing:35.555556pt;}
.ws8_c00317{word-spacing:60.116959pt;}
._1_c00317{margin-left:-62.222222pt;}
._2_c00317{width:44.632708pt;}
._0_c00317{width:52.698413pt;}
.fs4_c00317{font-size:48.000000pt;}
.fs3_c00317{font-size:53.333333pt;}
.fs2_c00317{font-size:58.666667pt;}
.fs0_c00317{font-size:64.000000pt;}
.fs1_c00317{font-size:90.666667pt;}
.y0_c00317{bottom:0.000000pt;}
.y68_c00317{bottom:177.866667pt;}
.y35_c00317{bottom:178.533333pt;}
.y67_c00317{bottom:193.600000pt;}
.y34_c00317{bottom:198.133333pt;}
.y66_c00317{bottom:209.600000pt;}
.y33_c00317{bottom:214.133333pt;}
.y65_c00317{bottom:225.333333pt;}
.y32_c00317{bottom:229.466667pt;}
.y31_c00317{bottom:245.066667pt;}
.y30_c00317{bottom:261.066667pt;}
.y2f_c00317{bottom:276.800000pt;}
.y2e_c00317{bottom:292.533333pt;}
.y64_c00317{bottom:292.800000pt;}
.y63_c00317{bottom:308.533333pt;}
.y2d_c00317{bottom:312.000000pt;}
.y62_c00317{bottom:324.533333pt;}
.y2c_c00317{bottom:335.733333pt;}
.y61_c00317{bottom:340.533333pt;}
.y2b_c00317{bottom:351.733333pt;}
.y60_c00317{bottom:359.466667pt;}
.y2a_c00317{bottom:367.733333pt;}
.y5f_c00317{bottom:375.466667pt;}
.y29_c00317{bottom:383.466667pt;}
.y5e_c00317{bottom:391.200000pt;}
.y28_c00317{bottom:399.200000pt;}
.y5d_c00317{bottom:406.933333pt;}
.y27_c00317{bottom:415.200000pt;}
.y5c_c00317{bottom:422.666667pt;}
.y26_c00317{bottom:431.200000pt;}
.y5b_c00317{bottom:438.400000pt;}
.y25_c00317{bottom:446.933333pt;}
.y5a_c00317{bottom:454.400000pt;}
.y24_c00317{bottom:462.933333pt;}
.y59_c00317{bottom:470.133333pt;}
.y23_c00317{bottom:478.666667pt;}
.y58_c00317{bottom:485.866667pt;}
.y22_c00317{bottom:494.666667pt;}
.y57_c00317{bottom:501.866667pt;}
.y21_c00317{bottom:514.133333pt;}
.y56_c00317{bottom:517.600000pt;}
.y20_c00317{bottom:530.133333pt;}
.y55_c00317{bottom:533.600000pt;}
.y1f_c00317{bottom:545.866667pt;}
.y54_c00317{bottom:549.333333pt;}
.y1e_c00317{bottom:561.600000pt;}
.y53_c00317{bottom:565.333333pt;}
.y1d_c00317{bottom:576.933333pt;}
.y52_c00317{bottom:581.066667pt;}
.y1c_c00317{bottom:592.933333pt;}
.y51_c00317{bottom:596.800000pt;}
.y1b_c00317{bottom:608.933333pt;}
.y50_c00317{bottom:612.533333pt;}
.y1a_c00317{bottom:624.666667pt;}
.y4f_c00317{bottom:628.533333pt;}
.y19_c00317{bottom:640.666667pt;}
.y4e_c00317{bottom:644.266667pt;}
.y18_c00317{bottom:656.000000pt;}
.y4d_c00317{bottom:660.266667pt;}
.y17_c00317{bottom:675.866667pt;}
.y4c_c00317{bottom:676.000000pt;}
.y4b_c00317{bottom:691.733333pt;}
.y16_c00317{bottom:691.866667pt;}
.y4a_c00317{bottom:707.466667pt;}
.y15_c00317{bottom:707.600000pt;}
.y49_c00317{bottom:723.200000pt;}
.y14_c00317{bottom:723.333333pt;}
.y13_c00317{bottom:739.333333pt;}
.y48_c00317{bottom:745.333333pt;}
.y12_c00317{bottom:755.066667pt;}
.y47_c00317{bottom:758.133333pt;}
.y11_c00317{bottom:770.400000pt;}
.y46_c00317{bottom:771.866667pt;}
.y45_c00317{bottom:783.333333pt;}
.y10_c00317{bottom:786.400000pt;}
.y44_c00317{bottom:797.066667pt;}
.yf_c00317{bottom:802.133333pt;}
.y43_c00317{bottom:808.933333pt;}
.ye_c00317{bottom:817.866667pt;}
.y42_c00317{bottom:823.066667pt;}
.yd_c00317{bottom:833.866667pt;}
.y41_c00317{bottom:834.533333pt;}
.y40_c00317{bottom:848.000000pt;}
.yc_c00317{bottom:853.466667pt;}
.y3f_c00317{bottom:860.800000pt;}
.yb_c00317{bottom:869.466667pt;}
.y3e_c00317{bottom:873.333333pt;}
.ya_c00317{bottom:884.800000pt;}
.y3d_c00317{bottom:885.466667pt;}
.y3c_c00317{bottom:898.533333pt;}
.y9_c00317{bottom:900.666667pt;}
.y3b_c00317{bottom:910.666667pt;}
.y8_c00317{bottom:916.400000pt;}
.y3a_c00317{bottom:924.533333pt;}
.y7_c00317{bottom:932.400000pt;}
.y39_c00317{bottom:945.600000pt;}
.y6_c00317{bottom:947.733333pt;}
.y38_c00317{bottom:961.600000pt;}
.y5_c00317{bottom:963.733333pt;}
.y37_c00317{bottom:976.933333pt;}
.y4_c00317{bottom:979.466667pt;}
.y36_c00317{bottom:992.933333pt;}
.y3_c00317{bottom:995.200000pt;}
.y2_c00317{bottom:1017.333333pt;}
.y1_c00317{bottom:1019.200000pt;}
.h6_c00317{height:48.000000pt;}
.h5_c00317{height:53.333333pt;}
.h4_c00317{height:58.666667pt;}
.h2_c00317{height:64.000000pt;}
.h3_c00317{height:90.666667pt;}
.h1_c00317{height:1124.666667pt;}
.h0_c00317{height:1124.799968pt;}
.w1_c00317{width:854.666667pt;}
.w0_c00317{width:854.720052pt;}
.x0_c00317{left:0.000000pt;}
.xaa_c00317{left:143.066667pt;}
.xa0_c00317{left:153.866667pt;}
.x8c_c00317{left:155.466667pt;}
.x1_c00317{left:159.333333pt;}
.xa7_c00317{left:163.866667pt;}
.xa5_c00317{left:168.800000pt;}
.x82_c00317{left:170.533333pt;}
.x73_c00317{left:171.466667pt;}
.x2d_c00317{left:172.533333pt;}
.x3_c00317{left:174.666667pt;}
.x1b_c00317{left:175.600000pt;}
.x13_c00317{left:176.666667pt;}
.x97_c00317{left:178.000000pt;}
.xa3_c00317{left:186.933333pt;}
.x61_c00317{left:188.000000pt;}
.x94_c00317{left:189.733333pt;}
.x8e_c00317{left:191.333333pt;}
.x7f_c00317{left:192.266667pt;}
.x9b_c00317{left:194.800000pt;}
.x2e_c00317{left:197.200000pt;}
.x83_c00317{left:198.400000pt;}
.xa6_c00317{left:201.066667pt;}
.x58_c00317{left:202.000000pt;}
.x69_c00317{left:203.866667pt;}
.xb_c00317{left:205.866667pt;}
.x32_c00317{left:207.066667pt;}
.x63_c00317{left:209.600000pt;}
.x8f_c00317{left:211.200000pt;}
.x3d_c00317{left:212.133333pt;}
.x14_c00317{left:214.800000pt;}
.x4d_c00317{left:216.533333pt;}
.x28_c00317{left:218.933333pt;}
.x38_c00317{left:223.466667pt;}
.x54_c00317{left:225.600000pt;}
.x3e_c00317{left:227.866667pt;}
.xc_c00317{left:228.933333pt;}
.x20_c00317{left:230.000000pt;}
.x15_c00317{left:232.666667pt;}
.x78_c00317{left:235.466667pt;}
.x59_c00317{left:236.533333pt;}
.x9f_c00317{left:237.466667pt;}
.x80_c00317{left:238.666667pt;}
.x6a_c00317{left:240.400000pt;}
.x99_c00317{left:242.133333pt;}
.x7b_c00317{left:243.600000pt;}
.x48_c00317{left:245.200000pt;}
.x95_c00317{left:247.600000pt;}
.x33_c00317{left:249.333333pt;}
.x5a_c00317{left:250.933333pt;}
.x4_c00317{left:252.400000pt;}
.x4e_c00317{left:253.600000pt;}
.x84_c00317{left:255.333333pt;}
.x6e_c00317{left:257.600000pt;}
.x34_c00317{left:258.933333pt;}
.x29_c00317{left:259.866667pt;}
.xa1_c00317{left:262.666667pt;}
.x1c_c00317{left:263.866667pt;}
.x24_c00317{left:266.000000pt;}
.x55_c00317{left:266.933333pt;}
.x2f_c00317{left:268.266667pt;}
.x8a_c00317{left:269.200000pt;}
.xd_c00317{left:270.533333pt;}
.x44_c00317{left:271.600000pt;}
.x9c_c00317{left:273.466667pt;}
.x74_c00317{left:274.800000pt;}
.x2a_c00317{left:275.866667pt;}
.x41_c00317{left:277.200000pt;}
.x6f_c00317{left:278.400000pt;}
.x52_c00317{left:280.000000pt;}
.x21_c00317{left:281.200000pt;}
.x39_c00317{left:284.800000pt;}
.x5_c00317{left:285.733333pt;}
.xe_c00317{left:287.866667pt;}
.x45_c00317{left:288.933333pt;}
.x2b_c00317{left:290.533333pt;}
.x9d_c00317{left:292.000000pt;}
.x87_c00317{left:294.133333pt;}
.x16_c00317{left:295.333333pt;}
.x79_c00317{left:296.266667pt;}
.x5b_c00317{left:298.666667pt;}
.x49_c00317{left:299.866667pt;}
.x25_c00317{left:301.866667pt;}
.x6_c00317{left:304.000000pt;}
.x64_c00317{left:304.933333pt;}
.xa4_c00317{left:306.000000pt;}
.x75_c00317{left:308.133333pt;}
.xa2_c00317{left:309.066667pt;}
.xf_c00317{left:310.000000pt;}
.x4a_c00317{left:314.533333pt;}
.x60_c00317{left:316.266667pt;}
.x98_c00317{left:318.000000pt;}
.x85_c00317{left:319.733333pt;}
.x56_c00317{left:321.333333pt;}
.x35_c00317{left:323.866667pt;}
.x3a_c00317{left:324.800000pt;}
.x76_c00317{left:326.666667pt;}
.x17_c00317{left:328.000000pt;}
.x88_c00317{left:329.333333pt;}
.x42_c00317{left:330.266667pt;}
.x65_c00317{left:331.200000pt;}
.x7e_c00317{left:332.400000pt;}
.x1d_c00317{left:335.600000pt;}
.x5c_c00317{left:337.066667pt;}
.x70_c00317{left:338.533333pt;}
.x8b_c00317{left:340.133333pt;}
.x90_c00317{left:342.133333pt;}
.x3b_c00317{left:343.333333pt;}
.x18_c00317{left:345.866667pt;}
.x91_c00317{left:346.800000pt;}
.x22_c00317{left:348.400000pt;}
.x7a_c00317{left:350.400000pt;}
.x46_c00317{left:351.333333pt;}
.x7_c00317{left:352.266667pt;}
.x4f_c00317{left:353.200000pt;}
.x10_c00317{left:354.533333pt;}
.x9e_c00317{left:355.600000pt;}
.x71_c00317{left:357.066667pt;}
.x5d_c00317{left:360.400000pt;}
.x36_c00317{left:362.266667pt;}
.x11_c00317{left:363.200000pt;}
.x6b_c00317{left:364.800000pt;}
.x50_c00317{left:367.600000pt;}
.x23_c00317{left:368.533333pt;}
.x7c_c00317{left:370.533333pt;}
.xa9_c00317{left:371.466667pt;}
.x2_c00317{left:372.400000pt;}
.x1e_c00317{left:375.333333pt;}
.x81_c00317{left:377.866667pt;}
.x66_c00317{left:379.200000pt;}
.x92_c00317{left:382.666667pt;}
.x86_c00317{left:385.600000pt;}
.x4b_c00317{left:386.800000pt;}
.xa8_c00317{left:388.400000pt;}
.x67_c00317{left:389.466667pt;}
.x26_c00317{left:390.800000pt;}
.x30_c00317{left:393.333333pt;}
.x19_c00317{left:395.466667pt;}
.x8_c00317{left:397.733333pt;}
.x47_c00317{left:400.000000pt;}
.x62_c00317{left:401.066667pt;}
.x89_c00317{left:402.933333pt;}
.x3c_c00317{left:404.400000pt;}
.x5e_c00317{left:405.866667pt;}
.x51_c00317{left:407.333333pt;}
.x53_c00317{left:408.266667pt;}
.x68_c00317{left:409.600000pt;}
.x37_c00317{left:410.933333pt;}
.x2c_c00317{left:411.866667pt;}
.x57_c00317{left:414.800000pt;}
.x27_c00317{left:415.733333pt;}
.x3f_c00317{left:418.000000pt;}
.x6c_c00317{left:418.933333pt;}
.x9a_c00317{left:419.866667pt;}
.x96_c00317{left:421.466667pt;}
.x93_c00317{left:423.066667pt;}
.x12_c00317{left:424.000000pt;}
.x7d_c00317{left:425.600000pt;}
.x72_c00317{left:428.400000pt;}
.x9_c00317{left:429.466667pt;}
.x1f_c00317{left:431.333333pt;}
.x1a_c00317{left:432.266667pt;}
.x77_c00317{left:433.866667pt;}
.x43_c00317{left:436.000000pt;}
.xa_c00317{left:437.466667pt;}
.x6d_c00317{left:439.066667pt;}
.x40_c00317{left:440.133333pt;}
.x31_c00317{left:443.866667pt;}
.x5f_c00317{left:444.933333pt;}
.x4c_c00317{left:446.000000pt;}
.x8d_c00317{left:449.866667pt;}
.x139_c00317{left:469.733333pt;}
.x102_c00317{left:473.333333pt;}
.xc4_c00317{left:475.466667pt;}
.x143_c00317{left:484.666667pt;}
.xee_c00317{left:485.733333pt;}
.xf5_c00317{left:486.666667pt;}
.xcb_c00317{left:488.000000pt;}
.x106_c00317{left:488.933333pt;}
.xab_c00317{left:491.200000pt;}
.xf6_c00317{left:499.066667pt;}
.xd9_c00317{left:500.400000pt;}
.x110_c00317{left:502.400000pt;}
.x14d_c00317{left:503.466667pt;}
.x12f_c00317{left:506.000000pt;}
.x114_c00317{left:507.466667pt;}
.x127_c00317{left:508.933333pt;}
.x134_c00317{left:511.600000pt;}
.x124_c00317{left:513.466667pt;}
.xcc_c00317{left:514.533333pt;}
.x126_c00317{left:516.000000pt;}
.xbf_c00317{left:517.333333pt;}
.xf1_c00317{left:519.200000pt;}
.xe5_c00317{left:520.133333pt;}
.xb2_c00317{left:521.066667pt;}
.x13a_c00317{left:522.800000pt;}
.x11d_c00317{left:524.133333pt;}
.xc0_c00317{left:526.666667pt;}
.x14f_c00317{left:528.266667pt;}
.xc5_c00317{left:529.200000pt;}
.xcd_c00317{left:530.533333pt;}
.x144_c00317{left:532.666667pt;}
.xf7_c00317{left:534.266667pt;}
.x120_c00317{left:535.466667pt;}
.xb3_c00317{left:536.800000pt;}
.xe6_c00317{left:538.400000pt;}
.x145_c00317{left:540.400000pt;}
.x12a_c00317{left:542.133333pt;}
.x122_c00317{left:543.333333pt;}
.x128_c00317{left:545.466667pt;}
.xf8_c00317{left:547.066667pt;}
.x103_c00317{left:548.266667pt;}
.xda_c00317{left:549.600000pt;}
.xfb_c00317{left:550.800000pt;}
.xac_c00317{left:553.866667pt;}
.xfc_c00317{left:556.933333pt;}
.xf2_c00317{left:559.200000pt;}
.xce_c00317{left:560.266667pt;}
.x10a_c00317{left:561.866667pt;}
.xfd_c00317{left:563.333333pt;}
.xc1_c00317{left:566.000000pt;}
.x135_c00317{left:568.400000pt;}
.x12b_c00317{left:569.333333pt;}
.xad_c00317{left:570.800000pt;}
.xd3_c00317{left:572.266667pt;}
.x118_c00317{left:574.400000pt;}
.xf3_c00317{left:576.133333pt;}
.xb9_c00317{left:577.333333pt;}
.x13b_c00317{left:578.800000pt;}
.x149_c00317{left:580.133333pt;}
.xdb_c00317{left:581.600000pt;}
.xe1_c00317{left:582.933333pt;}
.xc6_c00317{left:584.933333pt;}
.x107_c00317{left:587.200000pt;}
.xe2_c00317{left:589.333333pt;}
.x10d_c00317{left:592.533333pt;}
.x123_c00317{left:593.600000pt;}
.xc2_c00317{left:594.800000pt;}
.xe7_c00317{left:599.466667pt;}
.xfe_c00317{left:601.066667pt;}
.xc7_c00317{left:602.266667pt;}
.xcf_c00317{left:603.466667pt;}
.x13e_c00317{left:604.533333pt;}
.x131_c00317{left:605.466667pt;}
.xb4_c00317{left:608.133333pt;}
.xd4_c00317{left:609.066667pt;}
.x111_c00317{left:610.266667pt;}
.x136_c00317{left:611.866667pt;}
.xba_c00317{left:612.800000pt;}
.xe3_c00317{left:614.666667pt;}
.xd5_c00317{left:615.733333pt;}
.x108_c00317{left:617.200000pt;}
.xdc_c00317{left:619.066667pt;}
.xe4_c00317{left:620.800000pt;}
.xd6_c00317{left:622.133333pt;}
.x11e_c00317{left:623.333333pt;}
.x12c_c00317{left:624.400000pt;}
.xb5_c00317{left:626.400000pt;}
.xae_c00317{left:628.133333pt;}
.x10b_c00317{left:630.933333pt;}
.xdd_c00317{left:632.533333pt;}
.x14b_c00317{left:634.533333pt;}
.xc8_c00317{left:635.866667pt;}
.x11a_c00317{left:637.866667pt;}
.x13f_c00317{left:640.000000pt;}
.xd0_c00317{left:641.200000pt;}
.x146_c00317{left:644.400000pt;}
.x121_c00317{left:645.866667pt;}
.xe8_c00317{left:647.466667pt;}
.x137_c00317{left:649.466667pt;}
.xef_c00317{left:650.533333pt;}
.xbb_c00317{left:651.466667pt;}
.xaf_c00317{left:653.466667pt;}
.xd1_c00317{left:655.333333pt;}
.x129_c00317{left:656.400000pt;}
.xc3_c00317{left:659.066667pt;}
.xbc_c00317{left:660.800000pt;}
.x104_c00317{left:662.533333pt;}
.x130_c00317{left:663.466667pt;}
.xf0_c00317{left:664.666667pt;}
.xe9_c00317{left:666.400000pt;}
.x112_c00317{left:667.600000pt;}
.x116_c00317{left:668.800000pt;}
.x140_c00317{left:670.400000pt;}
.xf4_c00317{left:672.533333pt;}
.xea_c00317{left:673.466667pt;}
.xf9_c00317{left:675.066667pt;}
.xc9_c00317{left:677.200000pt;}
.x119_c00317{left:678.400000pt;}
.xd7_c00317{left:680.266667pt;}
.x14a_c00317{left:681.333333pt;}
.xd2_c00317{left:682.800000pt;}
.x13c_c00317{left:684.666667pt;}
.xd8_c00317{left:686.666667pt;}
.xb0_c00317{left:688.666667pt;}
.x132_c00317{left:689.866667pt;}
.x147_c00317{left:690.800000pt;}
.xeb_c00317{left:692.400000pt;}
.x12d_c00317{left:695.066667pt;}
.x11c_c00317{left:697.200000pt;}
.x11b_c00317{left:698.400000pt;}
.xb6_c00317{left:700.666667pt;}
.x13d_c00317{left:701.600000pt;}
.xbd_c00317{left:702.666667pt;}
.x105_c00317{left:704.400000pt;}
.x141_c00317{left:705.466667pt;}
.x100_c00317{left:708.000000pt;}
.xde_c00317{left:709.333333pt;}
.xb7_c00317{left:710.266667pt;}
.x125_c00317{left:711.600000pt;}
.x12e_c00317{left:712.933333pt;}
.x10c_c00317{left:715.733333pt;}
.x10e_c00317{left:718.000000pt;}
.xb1_c00317{left:722.000000pt;}
.x14c_c00317{left:723.333333pt;}
.x11f_c00317{left:724.800000pt;}
.x14e_c00317{left:725.866667pt;}
.x133_c00317{left:727.600000pt;}
.xca_c00317{left:730.266667pt;}
.x113_c00317{left:733.466667pt;}
.xec_c00317{left:735.333333pt;}
.xdf_c00317{left:736.800000pt;}
.x138_c00317{left:739.600000pt;}
.x148_c00317{left:741.066667pt;}
.xfa_c00317{left:744.133333pt;}
.x117_c00317{left:745.600000pt;}
.x109_c00317{left:747.066667pt;}
.xff_c00317{left:748.933333pt;}
.xb8_c00317{left:753.200000pt;}
.x115_c00317{left:756.133333pt;}
.x10f_c00317{left:757.733333pt;}
.x101_c00317{left:759.466667pt;}
.xed_c00317{left:760.933333pt;}
.xbe_c00317{left:761.866667pt;}
.x142_c00317{left:763.333333pt;}
.xe0_c00317{left:776.533333pt;}
}





/* 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_c00318 {
    display:none;
  }
  .loading-indicator_c00318.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00318 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_c00318 { 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_c00318" -> "#page-container .classname_c00318")
 */
.pf_c00318 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00318 { /* 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_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00318 { /* 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_c00318 { /* 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_c00318 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00318 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00318 {overflow:visible;}
  }
}
.c_c00318 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00318 { /* 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_c00318:after { /* webkit #35443 */
  content: '';
}
.t_c00318:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00318 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 */
}
.__c00318 { /* 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_c00318 { /* info for Javascript */
  display:none;
}
.l_c00318 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00318 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00318 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00318: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_c00318 {
    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_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00318.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_c00318 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00318;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.000000;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;}
.md_c00318{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m73_c00318{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m130_c00318{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00318{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m91_c00318{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.me9_c00318{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00318{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m116_c00318{transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00318{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m112_c00318{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.me_c00318{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m6_c00318{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mce_c00318{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00318{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00318{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00318{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mae_c00318{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00318{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00318{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00318{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m87_c00318{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m21_c00318{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00318{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.med_c00318{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00318{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m125_c00318{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.md2_c00318{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m111_c00318{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m66_c00318{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m27_c00318{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.md5_c00318{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m104_c00318{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00318{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m127_c00318{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m2_c00318{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m121_c00318{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00318{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m95_c00318{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m45_c00318{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m97_c00318{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m78_c00318{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00318{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m117_c00318{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m48_c00318{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00318{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00318{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m93_c00318{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m31_c00318{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00318{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m58_c00318{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m109_c00318{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.me1_c00318{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00318{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m37_c00318{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m75_c00318{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m36_c00318{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m140_c00318{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00318{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00318{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m128_c00318{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m113_c00318{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m124_c00318{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00318{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m13f_c00318{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00318{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00318{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m131_c00318{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00318{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m98_c00318{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m84_c00318{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m7_c00318{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m57_c00318{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m82_c00318{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m11_c00318{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m102_c00318{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00318{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m90_c00318{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00318{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00318{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00318{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m68_c00318{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00318{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3_c00318{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me4_c00318{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00318{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m99_c00318{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00318{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m106_c00318{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m74_c00318{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00318{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m122_c00318{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00318{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mba_c00318{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00318{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me2_c00318{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00318{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m96_c00318{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m15_c00318{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m71_c00318{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m79_c00318{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m46_c00318{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00318{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10_c00318{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00318{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m86_c00318{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m115_c00318{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m132_c00318{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mc_c00318{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00318{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00318{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00318{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m25_c00318{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m110_c00318{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00318{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00318{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00318{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m55_c00318{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00318{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00318{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00318{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m56_c00318{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00318{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m85_c00318{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00318{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m41_c00318{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00318{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m28_c00318{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00318{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00318{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me3_c00318{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me6_c00318{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00318{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00318{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m14_c00318{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m105_c00318{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m107_c00318{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mf_c00318{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m29_c00318{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md3_c00318{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m69_c00318{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m47_c00318{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00318{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m114_c00318{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m59_c00318{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m60_c00318{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00318{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m30_c00318{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mef_c00318{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m50_c00318{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00318{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9_c00318{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m63_c00318{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m13_c00318{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m135_c00318{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00318{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00318{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00318{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.maf_c00318{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00318{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m35_c00318{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m20_c00318{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00318{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00318{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8_c00318{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00318{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00318{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.me0_c00318{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m100_c00318{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4_c00318{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m129_c00318{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m33_c00318{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.md9_c00318{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m39_c00318{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m138_c00318{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00318{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb_c00318{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m17_c00318{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.md0_c00318{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me7_c00318{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00318{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m139_c00318{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00318{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00318{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00318{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00318{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00318{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00318{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00318{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00318{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md1_c00318{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m89_c00318{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m77_c00318{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m83_c00318{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mde_c00318{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m51_c00318{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m76_c00318{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00318{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m136_c00318{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m133_c00318{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m16_c00318{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00318{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00318{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m123_c00318{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5_c00318{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00318{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mea_c00318{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m26_c00318{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00318{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m80_c00318{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m53_c00318{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00318{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00318{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma_c00318{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m101_c00318{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m12_c00318{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mec_c00318{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m44_c00318{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00318{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00318{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00318{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m52_c00318{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m34_c00318{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m54_c00318{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00318{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m23_c00318{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00318{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mee_c00318{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m134_c00318{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md4_c00318{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m88_c00318{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00318{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m19_c00318{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m103_c00318{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00318{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m43_c00318{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00318{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00318{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m65_c00318{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00318{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00318{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00318{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md7_c00318{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m72_c00318{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00318{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m24_c00318{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m42_c00318{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m13b_c00318{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00318{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00318{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00318{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00318{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00318{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00318{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00318{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me8_c00318{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m18_c00318{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00318{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00318{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00318{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00318{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m137_c00318{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);}
.mfe_c00318{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00318{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mca_c00318{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mab_c00318{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m13d_c00318{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00318{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m32_c00318{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13e_c00318{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.meb_c00318{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00318{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.maa_c00318{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m64_c00318{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00318{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00318{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m38_c00318{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00318{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00318{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m62_c00318{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md6_c00318{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m40_c00318{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mff_c00318{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00318{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mda_c00318{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00318{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00318{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00318{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00318{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00318{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00318{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.me5_c00318{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00318{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m70_c00318{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m119_c00318{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m49_c00318{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00318{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00318{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00318{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m67_c00318{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m61_c00318{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mac_c00318{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m108_c00318{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m81_c00318{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m126_c00318{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00318{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00318{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m94_c00318{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m22_c00318{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mad_c00318{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00318{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m92_c00318{transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);}
.m120_c00318{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.m118_c00318{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00318{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.md8_c00318{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00318{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00318{transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00318{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00318{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls1_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:55.714286px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{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__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00318{word-spacing:-85.714286px;}
.wsd_c00318{word-spacing:-7.432432px;}
.ws7_c00318{word-spacing:-7.051282px;}
.wsf_c00318{word-spacing:0.000000px;}
.wse_c00318{word-spacing:5.294118px;}
.ws0_c00318{word-spacing:5.871060px;}
.ws8_c00318{word-spacing:22.142857px;}
.wsc_c00318{word-spacing:23.211796px;}
.ws4_c00318{word-spacing:25.714286px;}
.ws5_c00318{word-spacing:26.625000px;}
.wsa_c00318{word-spacing:29.285714px;}
.ws2_c00318{word-spacing:35.833333px;}
.ws3_c00318{word-spacing:44.166667px;}
.ws6_c00318{word-spacing:59.721619px;}
.wsb_c00318{word-spacing:66.315789px;}
.ws1_c00318{word-spacing:80.340909px;}
._6_c00318{margin-left:-55.714286px;}
._0_c00318{width:45.601719px;}
._7_c00318{width:46.994638px;}
._5_c00318{width:59.285714px;}
._4_c00318{width:72.375000px;}
._3_c00318{width:74.166667px;}
._1_c00318{width:80.416667px;}
._2_c00318{width:370.000000px;}
.fc0_c00318{color:transparent;}
.fs8_c00318{font-size:18.000000px;}
.fs1_c00318{font-size:30.000000px;}
.fs9_c00318{font-size:42.000000px;}
.fs6_c00318{font-size:54.000000px;}
.fs5_c00318{font-size:60.000000px;}
.fs3_c00318{font-size:66.000000px;}
.fs4_c00318{font-size:72.000000px;}
.fs7_c00318{font-size:78.000000px;}
.fs2_c00318{font-size:84.000000px;}
.fs0_c00318{font-size:126.000000px;}
.y0_c00318{bottom:0.000000px;}
.y5b_c00318{bottom:190.800000px;}
.y6d_c00318{bottom:196.500000px;}
.y5a_c00318{bottom:198.000000px;}
.y59_c00318{bottom:212.400000px;}
.y6c_c00318{bottom:215.250000px;}
.y58_c00318{bottom:226.800000px;}
.y6b_c00318{bottom:230.100000px;}
.y57_c00318{bottom:240.000000px;}
.y6a_c00318{bottom:244.500000px;}
.y56_c00318{bottom:255.900000px;}
.y69_c00318{bottom:258.900000px;}
.y55_c00318{bottom:269.250000px;}
.y68_c00318{bottom:273.300000px;}
.y54_c00318{bottom:285.900000px;}
.y67_c00318{bottom:287.700000px;}
.y66_c00318{bottom:302.100000px;}
.y32_c00318{bottom:303.750000px;}
.y65_c00318{bottom:316.800000px;}
.y31_c00318{bottom:317.400000px;}
.y30_c00318{bottom:321.750000px;}
.y64_c00318{bottom:335.850000px;}
.y2f_c00318{bottom:339.750000px;}
.y63_c00318{bottom:350.250000px;}
.y2e_c00318{bottom:356.700000px;}
.y2d_c00318{bottom:357.450000px;}
.y62_c00318{bottom:367.200000px;}
.y2c_c00318{bottom:379.800000px;}
.y61_c00318{bottom:383.400000px;}
.y2b_c00318{bottom:398.850000px;}
.y60_c00318{bottom:402.150000px;}
.y2a_c00318{bottom:415.200000px;}
.y5f_c00318{bottom:416.550000px;}
.y29_c00318{bottom:432.900000px;}
.y5e_c00318{bottom:433.050000px;}
.y28_c00318{bottom:450.600000px;}
.y5d_c00318{bottom:450.750000px;}
.y5c_c00318{bottom:463.350000px;}
.y27_c00318{bottom:468.300000px;}
.y26_c00318{bottom:486.300000px;}
.y25_c00318{bottom:507.600000px;}
.y53_c00318{bottom:513.300000px;}
.y24_c00318{bottom:525.600000px;}
.y52_c00318{bottom:531.000000px;}
.y23_c00318{bottom:548.250000px;}
.y51_c00318{bottom:548.700000px;}
.y22_c00318{bottom:565.950000px;}
.y50_c00318{bottom:570.450000px;}
.y21_c00318{bottom:588.300000px;}
.y4f_c00318{bottom:588.450000px;}
.y20_c00318{bottom:606.300000px;}
.y4e_c00318{bottom:606.450000px;}
.y1f_c00318{bottom:624.000000px;}
.y4d_c00318{bottom:624.150000px;}
.y1e_c00318{bottom:641.700000px;}
.y4c_c00318{bottom:641.850000px;}
.y1d_c00318{bottom:659.400000px;}
.y4b_c00318{bottom:659.850000px;}
.y1c_c00318{bottom:677.400000px;}
.y4a_c00318{bottom:677.550000px;}
.y49_c00318{bottom:694.800000px;}
.y1b_c00318{bottom:695.100000px;}
.y1a_c00318{bottom:712.800000px;}
.y19_c00318{bottom:730.500000px;}
.y48_c00318{bottom:748.500000px;}
.y18_c00318{bottom:751.350000px;}
.y17_c00318{bottom:765.750000px;}
.y16_c00318{bottom:779.850000px;}
.y47_c00318{bottom:787.500000px;}
.y15_c00318{bottom:795.300000px;}
.y46_c00318{bottom:805.500000px;}
.y14_c00318{bottom:813.900000px;}
.y45_c00318{bottom:823.200000px;}
.y13_c00318{bottom:831.600000px;}
.y44_c00318{bottom:840.900000px;}
.y12_c00318{bottom:849.300000px;}
.y43_c00318{bottom:858.900000px;}
.y11_c00318{bottom:866.850000px;}
.y42_c00318{bottom:876.600000px;}
.y10_c00318{bottom:888.900000px;}
.y41_c00318{bottom:894.300000px;}
.yf_c00318{bottom:907.200000px;}
.y40_c00318{bottom:912.300000px;}
.ye_c00318{bottom:924.900000px;}
.y3f_c00318{bottom:929.700000px;}
.yd_c00318{bottom:941.850000px;}
.y3e_c00318{bottom:947.400000px;}
.yc_c00318{bottom:963.750000px;}
.y3d_c00318{bottom:965.100000px;}
.y3c_c00318{bottom:982.800000px;}
.yb_c00318{bottom:991.050000px;}
.y3b_c00318{bottom:1000.050000px;}
.ya_c00318{bottom:1008.300000px;}
.y3a_c00318{bottom:1021.500000px;}
.y9_c00318{bottom:1026.000000px;}
.y39_c00318{bottom:1034.400000px;}
.y8_c00318{bottom:1044.000000px;}
.y38_c00318{bottom:1049.850000px;}
.y37_c00318{bottom:1062.750000px;}
.y7_c00318{bottom:1066.350000px;}
.y36_c00318{bottom:1078.650000px;}
.y6_c00318{bottom:1083.600000px;}
.y35_c00318{bottom:1091.550000px;}
.y5_c00318{bottom:1101.600000px;}
.y34_c00318{bottom:1107.000000px;}
.y4_c00318{bottom:1119.300000px;}
.y33_c00318{bottom:1122.150000px;}
.y1_c00318{bottom:1144.500000px;}
.y3_c00318{bottom:1145.250000px;}
.y2_c00318{bottom:1155.300000px;}
.ha_c00318{height:18.000000px;}
.h3_c00318{height:30.000000px;}
.hb_c00318{height:42.000000px;}
.h8_c00318{height:54.000000px;}
.h7_c00318{height:60.000000px;}
.h5_c00318{height:66.000000px;}
.h6_c00318{height:72.000000px;}
.h9_c00318{height:78.000000px;}
.h4_c00318{height:84.000000px;}
.h2_c00318{height:126.000000px;}
.h1_c00318{height:1267.500000px;}
.h0_c00318{height:1267.559967px;}
.w1_c00318{width:961.500000px;}
.w0_c00318{width:961.560058px;}
.x0_c00318{left:0.000000px;}
.xf_c00318{left:98.700000px;}
.x4c_c00318{left:100.500000px;}
.x68_c00318{left:102.300000px;}
.x52_c00318{left:104.700000px;}
.x10_c00318{left:109.200000px;}
.x4_c00318{left:115.500000px;}
.x28_c00318{left:117.000000px;}
.x44_c00318{left:118.050000px;}
.x12c_c00318{left:119.850000px;}
.x4a_c00318{left:120.900000px;}
.x91_c00318{left:122.100000px;}
.x65_c00318{left:131.100000px;}
.x90_c00318{left:132.150000px;}
.x130_c00318{left:134.100000px;}
.x20_c00318{left:135.900000px;}
.x75_c00318{left:139.050000px;}
.x12d_c00318{left:140.250000px;}
.x33_c00318{left:141.450000px;}
.x5_c00318{left:142.800000px;}
.x4d_c00318{left:145.500000px;}
.x98_c00318{left:146.550000px;}
.x83_c00318{left:147.900000px;}
.x32_c00318{left:149.400000px;}
.x53_c00318{left:151.500000px;}
.x6d_c00318{left:152.700000px;}
.x11_c00318{left:154.500000px;}
.x5a_c00318{left:158.400000px;}
.x29_c00318{left:160.500000px;}
.x6_c00318{left:162.300000px;}
.x1a_c00318{left:163.800000px;}
.x45_c00318{left:167.250000px;}
.x4b_c00318{left:169.500000px;}
.x95_c00318{left:171.300000px;}
.x6e_c00318{left:173.250000px;}
.x86_c00318{left:174.300000px;}
.x55_c00318{left:176.550000px;}
.x34_c00318{left:177.750000px;}
.x12_c00318{left:180.000000px;}
.x21_c00318{left:183.450000px;}
.x2a_c00318{left:185.400000px;}
.x69_c00318{left:187.200000px;}
.x131_c00318{left:188.400000px;}
.x46_c00318{left:190.350000px;}
.x35_c00318{left:191.850000px;}
.x7a_c00318{left:193.350000px;}
.x39_c00318{left:194.850000px;}
.x16_c00318{left:199.650000px;}
.x76_c00318{left:201.750000px;}
.x1b_c00318{left:203.400000px;}
.x22_c00318{left:206.550000px;}
.x5b_c00318{left:209.100000px;}
.x4e_c00318{left:211.350000px;}
.x3a_c00318{left:214.950000px;}
.x92_c00318{left:217.500000px;}
.x2b_c00318{left:221.400000px;}
.x1c_c00318{left:223.500000px;}
.x47_c00318{left:225.300000px;}
.x56_c00318{left:226.950000px;}
.x7_c00318{left:232.500000px;}
.x6f_c00318{left:233.850000px;}
.x2c_c00318{left:236.100000px;}
.x36_c00318{left:237.600000px;}
.x3b_c00318{left:239.100000px;}
.x62_c00318{left:240.150000px;}
.x8_c00318{left:242.250000px;}
.x6a_c00318{left:243.300000px;}
.x77_c00318{left:244.950000px;}
.x99_c00318{left:247.050000px;}
.x87_c00318{left:250.650000px;}
.x7b_c00318{left:253.050000px;}
.x3e_c00318{left:257.100000px;}
.x9c_c00318{left:258.150000px;}
.x2d_c00318{left:259.800000px;}
.x5f_c00318{left:261.750000px;}
.x9_c00318{left:263.550000px;}
.x81_c00318{left:264.750000px;}
.x93_c00318{left:265.800000px;}
.x23_c00318{left:267.750000px;}
.x73_c00318{left:269.100000px;}
.x7c_c00318{left:271.500000px;}
.x17_c00318{left:276.750000px;}
.x57_c00318{left:277.800000px;}
.x88_c00318{left:279.750000px;}
.x5c_c00318{left:281.550000px;}
.x3c_c00318{left:283.350000px;}
.x2e_c00318{left:285.300000px;}
.x24_c00318{left:287.250000px;}
.x72_c00318{left:290.400000px;}
.x3f_c00318{left:292.050000px;}
.x4f_c00318{left:294.150000px;}
.x58_c00318{left:295.500000px;}
.x132_c00318{left:297.300000px;}
.x8c_c00318{left:300.900000px;}
.x94_c00318{left:304.350000px;}
.x96_c00318{left:306.300000px;}
.x25_c00318{left:307.350000px;}
.x6b_c00318{left:308.400000px;}
.x37_c00318{left:312.150000px;}
.x7d_c00318{left:314.100000px;}
.x97_c00318{left:315.300000px;}
.x8e_c00318{left:316.650000px;}
.xa_c00318{left:317.850000px;}
.x48_c00318{left:319.650000px;}
.x40_c00318{left:321.150000px;}
.x7f_c00318{left:322.350000px;}
.x84_c00318{left:323.700000px;}
.x60_c00318{left:325.500000px;}
.x59_c00318{left:328.200000px;}
.x89_c00318{left:330.150000px;}
.x74_c00318{left:331.350000px;}
.x12e_c00318{left:333.450000px;}
.x71_c00318{left:335.100000px;}
.x80_c00318{left:336.450000px;}
.x8d_c00318{left:337.500000px;}
.x3d_c00318{left:339.150000px;}
.x1d_c00318{left:342.300000px;}
.x1_c00318{left:343.800000px;}
.x13_c00318{left:345.300000px;}
.x78_c00318{left:347.250000px;}
.xb_c00318{left:350.550000px;}
.x8a_c00318{left:353.550000px;}
.x18_c00318{left:356.250000px;}
.x41_c00318{left:358.200000px;}
.x66_c00318{left:359.400000px;}
.x85_c00318{left:361.500000px;}
.x49_c00318{left:362.850000px;}
.x2f_c00318{left:364.200000px;}
.x1e_c00318{left:365.700000px;}
.x12f_c00318{left:367.350000px;}
.x38_c00318{left:368.700000px;}
.xc_c00318{left:370.350000px;}
.x42_c00318{left:372.900000px;}
.x82_c00318{left:375.300000px;}
.x5d_c00318{left:376.650000px;}
.x14_c00318{left:379.200000px;}
.x9a_c00318{left:380.250000px;}
.x50_c00318{left:381.750000px;}
.x30_c00318{left:383.700000px;}
.x19_c00318{left:387.150000px;}
.x67_c00318{left:390.000000px;}
.x7e_c00318{left:392.550000px;}
.x63_c00318{left:394.050000px;}
.x70_c00318{left:395.850000px;}
.x5e_c00318{left:397.200000px;}
.x79_c00318{left:398.850000px;}
.x26_c00318{left:402.450000px;}
.xd_c00318{left:403.800000px;}
.x43_c00318{left:406.350000px;}
.x54_c00318{left:408.450000px;}
.x15_c00318{left:414.150000px;}
.xe_c00318{left:415.350000px;}
.x31_c00318{left:417.600000px;}
.x27_c00318{left:418.650000px;}
.x61_c00318{left:420.450000px;}
.x8f_c00318{left:422.100000px;}
.x64_c00318{left:423.150000px;}
.x51_c00318{left:425.250000px;}
.x9b_c00318{left:426.300000px;}
.x1f_c00318{left:429.000000px;}
.x8b_c00318{left:433.800000px;}
.x6c_c00318{left:442.800000px;}
.x148_c00318{left:452.550000px;}
.xc6_c00318{left:454.650000px;}
.x107_c00318{left:457.200000px;}
.x135_c00318{left:458.700000px;}
.x125_c00318{left:459.750000px;}
.xa5_c00318{left:467.550000px;}
.xbe_c00318{left:468.750000px;}
.xcd_c00318{left:472.650000px;}
.xf0_c00318{left:474.150000px;}
.x103_c00318{left:475.200000px;}
.x11a_c00318{left:476.850000px;}
.x13e_c00318{left:480.300000px;}
.x9d_c00318{left:482.100000px;}
.xb2_c00318{left:483.150000px;}
.xd8_c00318{left:484.500000px;}
.x138_c00318{left:489.000000px;}
.x140_c00318{left:491.100000px;}
.x147_c00318{left:492.600000px;}
.xb6_c00318{left:493.800000px;}
.xf9_c00318{left:495.750000px;}
.x129_c00318{left:498.300000px;}
.x10d_c00318{left:499.650000px;}
.x136_c00318{left:501.150000px;}
.xde_c00318{left:502.350000px;}
.x14a_c00318{left:503.550000px;}
.xb7_c00318{left:504.750000px;}
.x144_c00318{left:508.650000px;}
.x110_c00318{left:509.700000px;}
.xb3_c00318{left:511.650000px;}
.x113_c00318{left:513.600000px;}
.x108_c00318{left:514.800000px;}
.x12a_c00318{left:516.000000px;}
.xff_c00318{left:517.350000px;}
.x118_c00318{left:519.150000px;}
.x141_c00318{left:520.650000px;}
.xb8_c00318{left:523.050000px;}
.x100_c00318{left:525.300000px;}
.xf6_c00318{left:526.650000px;}
.xe5_c00318{left:528.900000px;}
.xce_c00318{left:531.750000px;}
.xea_c00318{left:533.850000px;}
.xb9_c00318{left:536.400000px;}
.xc7_c00318{left:537.450000px;}
.xf1_c00318{left:538.950000px;}
.xd3_c00318{left:540.150000px;}
.xdf_c00318{left:541.950000px;}
.xd9_c00318{left:543.900000px;}
.xfa_c00318{left:546.150000px;}
.x9e_c00318{left:547.200000px;}
.xb4_c00318{left:548.700000px;}
.x13f_c00318{left:551.250000px;}
.x119_c00318{left:552.300000px;}
.x126_c00318{left:554.400000px;}
.x139_c00318{left:555.450000px;}
.x104_c00318{left:556.950000px;}
.x122_c00318{left:558.150000px;}
.xda_c00318{left:559.800000px;}
.xa6_c00318{left:561.450000px;}
.xe0_c00318{left:563.250000px;}
.x109_c00318{left:565.200000px;}
.x9f_c00318{left:566.250000px;}
.x133_c00318{left:568.650000px;}
.x11b_c00318{left:570.150000px;}
.x127_c00318{left:572.100000px;}
.xc8_c00318{left:573.450000px;}
.xd4_c00318{left:575.850000px;}
.xcf_c00318{left:577.800000px;}
.xf2_c00318{left:579.600000px;}
.x142_c00318{left:582.300000px;}
.xba_c00318{left:585.000000px;}
.x10e_c00318{left:587.100000px;}
.xeb_c00318{left:588.600000px;}
.x111_c00318{left:589.950000px;}
.xd0_c00318{left:591.900000px;}
.xc4_c00318{left:596.250000px;}
.x14b_c00318{left:597.750000px;}
.x120_c00318{left:598.800000px;}
.xe1_c00318{left:600.750000px;}
.xc9_c00318{left:602.550000px;}
.xbf_c00318{left:604.500000px;}
.xdb_c00318{left:606.600000px;}
.x112_c00318{left:607.950000px;}
.x105_c00318{left:609.900000px;}
.xa7_c00318{left:611.100000px;}
.xfb_c00318{left:613.800000px;}
.x114_c00318{left:616.200000px;}
.xa8_c00318{left:618.000000px;}
.xc0_c00318{left:619.200000px;}
.xee_c00318{left:621.450000px;}
.x13a_c00318{left:623.550000px;}
.xbb_c00318{left:626.700000px;}
.x101_c00318{left:628.200000px;}
.xec_c00318{left:629.250000px;}
.x11c_c00318{left:630.900000px;}
.xe6_c00318{left:632.550000px;}
.x13c_c00318{left:634.050000px;}
.xf3_c00318{left:636.450000px;}
.xca_c00318{left:637.500000px;}
.xa9_c00318{left:640.050000px;}
.xbc_c00318{left:641.850000px;}
.x10c_c00318{left:643.350000px;}
.xe2_c00318{left:644.700000px;}
.xcb_c00318{left:646.200000px;}
.xa0_c00318{left:647.250000px;}
.xc5_c00318{left:649.950000px;}
.xd5_c00318{left:652.050000px;}
.x11e_c00318{left:660.300000px;}
.xaa_c00318{left:661.950000px;}
.x143_c00318{left:663.750000px;}
.x134_c00318{left:668.100000px;}
.xab_c00318{left:669.150000px;}
.x115_c00318{left:673.500000px;}
.xb5_c00318{left:675.600000px;}
.xc1_c00318{left:676.800000px;}
.x124_c00318{left:679.800000px;}
.xbd_c00318{left:681.150000px;}
.xac_c00318{left:683.550000px;}
.xdc_c00318{left:685.500000px;}
.x145_c00318{left:689.400000px;}
.xad_c00318{left:690.450000px;}
.xa1_c00318{left:691.500000px;}
.x12b_c00318{left:693.450000px;}
.xef_c00318{left:694.500000px;}
.xd6_c00318{left:695.550000px;}
.xae_c00318{left:697.650000px;}
.x102_c00318{left:699.450000px;}
.xe3_c00318{left:702.300000px;}
.x10a_c00318{left:703.500000px;}
.x137_c00318{left:705.150000px;}
.xa2_c00318{left:708.000000px;}
.x11f_c00318{left:709.650000px;}
.x13b_c00318{left:711.300000px;}
.x10f_c00318{left:713.100000px;}
.xf4_c00318{left:714.900000px;}
.xaf_c00318{left:717.150000px;}
.x121_c00318{left:718.950000px;}
.x106_c00318{left:720.750000px;}
.x123_c00318{left:722.400000px;}
.xfc_c00318{left:724.950000px;}
.xd1_c00318{left:726.150000px;}
.xe7_c00318{left:727.350000px;}
.xf7_c00318{left:728.550000px;}
.x10b_c00318{left:729.750000px;}
.xdd_c00318{left:731.250000px;}
.x149_c00318{left:732.600000px;}
.xed_c00318{left:735.450000px;}
.xa3_c00318{left:738.600000px;}
.xcc_c00318{left:740.850000px;}
.xb0_c00318{left:745.650000px;}
.xc2_c00318{left:747.150000px;}
.xf5_c00318{left:748.800000px;}
.x128_c00318{left:750.300000px;}
.x117_c00318{left:751.650000px;}
.xd7_c00318{left:753.450000px;}
.x146_c00318{left:754.500000px;}
.xfd_c00318{left:758.850000px;}
.x3_c00318{left:760.650000px;}
.xe4_c00318{left:762.450000px;}
.xd2_c00318{left:763.950000px;}
.x11d_c00318{left:765.450000px;}
.xf8_c00318{left:767.100000px;}
.x14c_c00318{left:769.200000px;}
.xa4_c00318{left:772.050000px;}
.xe8_c00318{left:773.400000px;}
.xb1_c00318{left:774.450000px;}
.xc3_c00318{left:775.650000px;}
.xfe_c00318{left:779.700000px;}
.x116_c00318{left:780.750000px;}
.x2_c00318{left:781.950000px;}
.x13d_c00318{left:787.800000px;}
.xe9_c00318{left:797.100000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls1_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:49.523810pt;}
.ws9_c00318{word-spacing:-76.190476pt;}
.wsd_c00318{word-spacing:-6.606607pt;}
.ws7_c00318{word-spacing:-6.267806pt;}
.wsf_c00318{word-spacing:0.000000pt;}
.wse_c00318{word-spacing:4.705882pt;}
.ws0_c00318{word-spacing:5.218720pt;}
.ws8_c00318{word-spacing:19.682540pt;}
.wsc_c00318{word-spacing:20.632708pt;}
.ws4_c00318{word-spacing:22.857143pt;}
.ws5_c00318{word-spacing:23.666667pt;}
.wsa_c00318{word-spacing:26.031746pt;}
.ws2_c00318{word-spacing:31.851852pt;}
.ws3_c00318{word-spacing:39.259259pt;}
.ws6_c00318{word-spacing:53.085884pt;}
.wsb_c00318{word-spacing:58.947368pt;}
.ws1_c00318{word-spacing:71.414141pt;}
._6_c00318{margin-left:-49.523810pt;}
._0_c00318{width:40.534862pt;}
._7_c00318{width:41.773012pt;}
._5_c00318{width:52.698413pt;}
._4_c00318{width:64.333333pt;}
._3_c00318{width:65.925926pt;}
._1_c00318{width:71.481481pt;}
._2_c00318{width:328.888889pt;}
.fs8_c00318{font-size:16.000000pt;}
.fs1_c00318{font-size:26.666667pt;}
.fs9_c00318{font-size:37.333333pt;}
.fs6_c00318{font-size:48.000000pt;}
.fs5_c00318{font-size:53.333333pt;}
.fs3_c00318{font-size:58.666667pt;}
.fs4_c00318{font-size:64.000000pt;}
.fs7_c00318{font-size:69.333333pt;}
.fs2_c00318{font-size:74.666667pt;}
.fs0_c00318{font-size:112.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y5b_c00318{bottom:169.600000pt;}
.y6d_c00318{bottom:174.666667pt;}
.y5a_c00318{bottom:176.000000pt;}
.y59_c00318{bottom:188.800000pt;}
.y6c_c00318{bottom:191.333333pt;}
.y58_c00318{bottom:201.600000pt;}
.y6b_c00318{bottom:204.533333pt;}
.y57_c00318{bottom:213.333333pt;}
.y6a_c00318{bottom:217.333333pt;}
.y56_c00318{bottom:227.466667pt;}
.y69_c00318{bottom:230.133333pt;}
.y55_c00318{bottom:239.333333pt;}
.y68_c00318{bottom:242.933333pt;}
.y54_c00318{bottom:254.133333pt;}
.y67_c00318{bottom:255.733333pt;}
.y66_c00318{bottom:268.533333pt;}
.y32_c00318{bottom:270.000000pt;}
.y65_c00318{bottom:281.600000pt;}
.y31_c00318{bottom:282.133333pt;}
.y30_c00318{bottom:286.000000pt;}
.y64_c00318{bottom:298.533333pt;}
.y2f_c00318{bottom:302.000000pt;}
.y63_c00318{bottom:311.333333pt;}
.y2e_c00318{bottom:317.066667pt;}
.y2d_c00318{bottom:317.733333pt;}
.y62_c00318{bottom:326.400000pt;}
.y2c_c00318{bottom:337.600000pt;}
.y61_c00318{bottom:340.800000pt;}
.y2b_c00318{bottom:354.533333pt;}
.y60_c00318{bottom:357.466667pt;}
.y2a_c00318{bottom:369.066667pt;}
.y5f_c00318{bottom:370.266667pt;}
.y29_c00318{bottom:384.800000pt;}
.y5e_c00318{bottom:384.933333pt;}
.y28_c00318{bottom:400.533333pt;}
.y5d_c00318{bottom:400.666667pt;}
.y5c_c00318{bottom:411.866667pt;}
.y27_c00318{bottom:416.266667pt;}
.y26_c00318{bottom:432.266667pt;}
.y25_c00318{bottom:451.200000pt;}
.y53_c00318{bottom:456.266667pt;}
.y24_c00318{bottom:467.200000pt;}
.y52_c00318{bottom:472.000000pt;}
.y23_c00318{bottom:487.333333pt;}
.y51_c00318{bottom:487.733333pt;}
.y22_c00318{bottom:503.066667pt;}
.y50_c00318{bottom:507.066667pt;}
.y21_c00318{bottom:522.933333pt;}
.y4f_c00318{bottom:523.066667pt;}
.y20_c00318{bottom:538.933333pt;}
.y4e_c00318{bottom:539.066667pt;}
.y1f_c00318{bottom:554.666667pt;}
.y4d_c00318{bottom:554.800000pt;}
.y1e_c00318{bottom:570.400000pt;}
.y4c_c00318{bottom:570.533333pt;}
.y1d_c00318{bottom:586.133333pt;}
.y4b_c00318{bottom:586.533333pt;}
.y1c_c00318{bottom:602.133333pt;}
.y4a_c00318{bottom:602.266667pt;}
.y49_c00318{bottom:617.600000pt;}
.y1b_c00318{bottom:617.866667pt;}
.y1a_c00318{bottom:633.600000pt;}
.y19_c00318{bottom:649.333333pt;}
.y48_c00318{bottom:665.333333pt;}
.y18_c00318{bottom:667.866667pt;}
.y17_c00318{bottom:680.666667pt;}
.y16_c00318{bottom:693.200000pt;}
.y47_c00318{bottom:700.000000pt;}
.y15_c00318{bottom:706.933333pt;}
.y46_c00318{bottom:716.000000pt;}
.y14_c00318{bottom:723.466667pt;}
.y45_c00318{bottom:731.733333pt;}
.y13_c00318{bottom:739.200000pt;}
.y44_c00318{bottom:747.466667pt;}
.y12_c00318{bottom:754.933333pt;}
.y43_c00318{bottom:763.466667pt;}
.y11_c00318{bottom:770.533333pt;}
.y42_c00318{bottom:779.200000pt;}
.y10_c00318{bottom:790.133333pt;}
.y41_c00318{bottom:794.933333pt;}
.yf_c00318{bottom:806.400000pt;}
.y40_c00318{bottom:810.933333pt;}
.ye_c00318{bottom:822.133333pt;}
.y3f_c00318{bottom:826.400000pt;}
.yd_c00318{bottom:837.200000pt;}
.y3e_c00318{bottom:842.133333pt;}
.yc_c00318{bottom:856.666667pt;}
.y3d_c00318{bottom:857.866667pt;}
.y3c_c00318{bottom:873.600000pt;}
.yb_c00318{bottom:880.933333pt;}
.y3b_c00318{bottom:888.933333pt;}
.ya_c00318{bottom:896.266667pt;}
.y3a_c00318{bottom:908.000000pt;}
.y9_c00318{bottom:912.000000pt;}
.y39_c00318{bottom:919.466667pt;}
.y8_c00318{bottom:928.000000pt;}
.y38_c00318{bottom:933.200000pt;}
.y37_c00318{bottom:944.666667pt;}
.y7_c00318{bottom:947.866667pt;}
.y36_c00318{bottom:958.800000pt;}
.y6_c00318{bottom:963.200000pt;}
.y35_c00318{bottom:970.266667pt;}
.y5_c00318{bottom:979.200000pt;}
.y34_c00318{bottom:984.000000pt;}
.y4_c00318{bottom:994.933333pt;}
.y33_c00318{bottom:997.466667pt;}
.y1_c00318{bottom:1017.333333pt;}
.y3_c00318{bottom:1018.000000pt;}
.y2_c00318{bottom:1026.933333pt;}
.ha_c00318{height:16.000000pt;}
.h3_c00318{height:26.666667pt;}
.hb_c00318{height:37.333333pt;}
.h8_c00318{height:48.000000pt;}
.h7_c00318{height:53.333333pt;}
.h5_c00318{height:58.666667pt;}
.h6_c00318{height:64.000000pt;}
.h9_c00318{height:69.333333pt;}
.h4_c00318{height:74.666667pt;}
.h2_c00318{height:112.000000pt;}
.h1_c00318{height:1126.666667pt;}
.h0_c00318{height:1126.719971pt;}
.w1_c00318{width:854.666667pt;}
.w0_c00318{width:854.720052pt;}
.x0_c00318{left:0.000000pt;}
.xf_c00318{left:87.733333pt;}
.x4c_c00318{left:89.333333pt;}
.x68_c00318{left:90.933333pt;}
.x52_c00318{left:93.066667pt;}
.x10_c00318{left:97.066667pt;}
.x4_c00318{left:102.666667pt;}
.x28_c00318{left:104.000000pt;}
.x44_c00318{left:104.933333pt;}
.x12c_c00318{left:106.533333pt;}
.x4a_c00318{left:107.466667pt;}
.x91_c00318{left:108.533333pt;}
.x65_c00318{left:116.533333pt;}
.x90_c00318{left:117.466667pt;}
.x130_c00318{left:119.200000pt;}
.x20_c00318{left:120.800000pt;}
.x75_c00318{left:123.600000pt;}
.x12d_c00318{left:124.666667pt;}
.x33_c00318{left:125.733333pt;}
.x5_c00318{left:126.933333pt;}
.x4d_c00318{left:129.333333pt;}
.x98_c00318{left:130.266667pt;}
.x83_c00318{left:131.466667pt;}
.x32_c00318{left:132.800000pt;}
.x53_c00318{left:134.666667pt;}
.x6d_c00318{left:135.733333pt;}
.x11_c00318{left:137.333333pt;}
.x5a_c00318{left:140.800000pt;}
.x29_c00318{left:142.666667pt;}
.x6_c00318{left:144.266667pt;}
.x1a_c00318{left:145.600000pt;}
.x45_c00318{left:148.666667pt;}
.x4b_c00318{left:150.666667pt;}
.x95_c00318{left:152.266667pt;}
.x6e_c00318{left:154.000000pt;}
.x86_c00318{left:154.933333pt;}
.x55_c00318{left:156.933333pt;}
.x34_c00318{left:158.000000pt;}
.x12_c00318{left:160.000000pt;}
.x21_c00318{left:163.066667pt;}
.x2a_c00318{left:164.800000pt;}
.x69_c00318{left:166.400000pt;}
.x131_c00318{left:167.466667pt;}
.x46_c00318{left:169.200000pt;}
.x35_c00318{left:170.533333pt;}
.x7a_c00318{left:171.866667pt;}
.x39_c00318{left:173.200000pt;}
.x16_c00318{left:177.466667pt;}
.x76_c00318{left:179.333333pt;}
.x1b_c00318{left:180.800000pt;}
.x22_c00318{left:183.600000pt;}
.x5b_c00318{left:185.866667pt;}
.x4e_c00318{left:187.866667pt;}
.x3a_c00318{left:191.066667pt;}
.x92_c00318{left:193.333333pt;}
.x2b_c00318{left:196.800000pt;}
.x1c_c00318{left:198.666667pt;}
.x47_c00318{left:200.266667pt;}
.x56_c00318{left:201.733333pt;}
.x7_c00318{left:206.666667pt;}
.x6f_c00318{left:207.866667pt;}
.x2c_c00318{left:209.866667pt;}
.x36_c00318{left:211.200000pt;}
.x3b_c00318{left:212.533333pt;}
.x62_c00318{left:213.466667pt;}
.x8_c00318{left:215.333333pt;}
.x6a_c00318{left:216.266667pt;}
.x77_c00318{left:217.733333pt;}
.x99_c00318{left:219.600000pt;}
.x87_c00318{left:222.800000pt;}
.x7b_c00318{left:224.933333pt;}
.x3e_c00318{left:228.533333pt;}
.x9c_c00318{left:229.466667pt;}
.x2d_c00318{left:230.933333pt;}
.x5f_c00318{left:232.666667pt;}
.x9_c00318{left:234.266667pt;}
.x81_c00318{left:235.333333pt;}
.x93_c00318{left:236.266667pt;}
.x23_c00318{left:238.000000pt;}
.x73_c00318{left:239.200000pt;}
.x7c_c00318{left:241.333333pt;}
.x17_c00318{left:246.000000pt;}
.x57_c00318{left:246.933333pt;}
.x88_c00318{left:248.666667pt;}
.x5c_c00318{left:250.266667pt;}
.x3c_c00318{left:251.866667pt;}
.x2e_c00318{left:253.600000pt;}
.x24_c00318{left:255.333333pt;}
.x72_c00318{left:258.133333pt;}
.x3f_c00318{left:259.600000pt;}
.x4f_c00318{left:261.466667pt;}
.x58_c00318{left:262.666667pt;}
.x132_c00318{left:264.266667pt;}
.x8c_c00318{left:267.466667pt;}
.x94_c00318{left:270.533333pt;}
.x96_c00318{left:272.266667pt;}
.x25_c00318{left:273.200000pt;}
.x6b_c00318{left:274.133333pt;}
.x37_c00318{left:277.466667pt;}
.x7d_c00318{left:279.200000pt;}
.x97_c00318{left:280.266667pt;}
.x8e_c00318{left:281.466667pt;}
.xa_c00318{left:282.533333pt;}
.x48_c00318{left:284.133333pt;}
.x40_c00318{left:285.466667pt;}
.x7f_c00318{left:286.533333pt;}
.x84_c00318{left:287.733333pt;}
.x60_c00318{left:289.333333pt;}
.x59_c00318{left:291.733333pt;}
.x89_c00318{left:293.466667pt;}
.x74_c00318{left:294.533333pt;}
.x12e_c00318{left:296.400000pt;}
.x71_c00318{left:297.866667pt;}
.x80_c00318{left:299.066667pt;}
.x8d_c00318{left:300.000000pt;}
.x3d_c00318{left:301.466667pt;}
.x1d_c00318{left:304.266667pt;}
.x1_c00318{left:305.600000pt;}
.x13_c00318{left:306.933333pt;}
.x78_c00318{left:308.666667pt;}
.xb_c00318{left:311.600000pt;}
.x8a_c00318{left:314.266667pt;}
.x18_c00318{left:316.666667pt;}
.x41_c00318{left:318.400000pt;}
.x66_c00318{left:319.466667pt;}
.x85_c00318{left:321.333333pt;}
.x49_c00318{left:322.533333pt;}
.x2f_c00318{left:323.733333pt;}
.x1e_c00318{left:325.066667pt;}
.x12f_c00318{left:326.533333pt;}
.x38_c00318{left:327.733333pt;}
.xc_c00318{left:329.200000pt;}
.x42_c00318{left:331.466667pt;}
.x82_c00318{left:333.600000pt;}
.x5d_c00318{left:334.800000pt;}
.x14_c00318{left:337.066667pt;}
.x9a_c00318{left:338.000000pt;}
.x50_c00318{left:339.333333pt;}
.x30_c00318{left:341.066667pt;}
.x19_c00318{left:344.133333pt;}
.x67_c00318{left:346.666667pt;}
.x7e_c00318{left:348.933333pt;}
.x63_c00318{left:350.266667pt;}
.x70_c00318{left:351.866667pt;}
.x5e_c00318{left:353.066667pt;}
.x79_c00318{left:354.533333pt;}
.x26_c00318{left:357.733333pt;}
.xd_c00318{left:358.933333pt;}
.x43_c00318{left:361.200000pt;}
.x54_c00318{left:363.066667pt;}
.x15_c00318{left:368.133333pt;}
.xe_c00318{left:369.200000pt;}
.x31_c00318{left:371.200000pt;}
.x27_c00318{left:372.133333pt;}
.x61_c00318{left:373.733333pt;}
.x8f_c00318{left:375.200000pt;}
.x64_c00318{left:376.133333pt;}
.x51_c00318{left:378.000000pt;}
.x9b_c00318{left:378.933333pt;}
.x1f_c00318{left:381.333333pt;}
.x8b_c00318{left:385.600000pt;}
.x6c_c00318{left:393.600000pt;}
.x148_c00318{left:402.266667pt;}
.xc6_c00318{left:404.133333pt;}
.x107_c00318{left:406.400000pt;}
.x135_c00318{left:407.733333pt;}
.x125_c00318{left:408.666667pt;}
.xa5_c00318{left:415.600000pt;}
.xbe_c00318{left:416.666667pt;}
.xcd_c00318{left:420.133333pt;}
.xf0_c00318{left:421.466667pt;}
.x103_c00318{left:422.400000pt;}
.x11a_c00318{left:423.866667pt;}
.x13e_c00318{left:426.933333pt;}
.x9d_c00318{left:428.533333pt;}
.xb2_c00318{left:429.466667pt;}
.xd8_c00318{left:430.666667pt;}
.x138_c00318{left:434.666667pt;}
.x140_c00318{left:436.533333pt;}
.x147_c00318{left:437.866667pt;}
.xb6_c00318{left:438.933333pt;}
.xf9_c00318{left:440.666667pt;}
.x129_c00318{left:442.933333pt;}
.x10d_c00318{left:444.133333pt;}
.x136_c00318{left:445.466667pt;}
.xde_c00318{left:446.533333pt;}
.x14a_c00318{left:447.600000pt;}
.xb7_c00318{left:448.666667pt;}
.x144_c00318{left:452.133333pt;}
.x110_c00318{left:453.066667pt;}
.xb3_c00318{left:454.800000pt;}
.x113_c00318{left:456.533333pt;}
.x108_c00318{left:457.600000pt;}
.x12a_c00318{left:458.666667pt;}
.xff_c00318{left:459.866667pt;}
.x118_c00318{left:461.466667pt;}
.x141_c00318{left:462.800000pt;}
.xb8_c00318{left:464.933333pt;}
.x100_c00318{left:466.933333pt;}
.xf6_c00318{left:468.133333pt;}
.xe5_c00318{left:470.133333pt;}
.xce_c00318{left:472.666667pt;}
.xea_c00318{left:474.533333pt;}
.xb9_c00318{left:476.800000pt;}
.xc7_c00318{left:477.733333pt;}
.xf1_c00318{left:479.066667pt;}
.xd3_c00318{left:480.133333pt;}
.xdf_c00318{left:481.733333pt;}
.xd9_c00318{left:483.466667pt;}
.xfa_c00318{left:485.466667pt;}
.x9e_c00318{left:486.400000pt;}
.xb4_c00318{left:487.733333pt;}
.x13f_c00318{left:490.000000pt;}
.x119_c00318{left:490.933333pt;}
.x126_c00318{left:492.800000pt;}
.x139_c00318{left:493.733333pt;}
.x104_c00318{left:495.066667pt;}
.x122_c00318{left:496.133333pt;}
.xda_c00318{left:497.600000pt;}
.xa6_c00318{left:499.066667pt;}
.xe0_c00318{left:500.666667pt;}
.x109_c00318{left:502.400000pt;}
.x9f_c00318{left:503.333333pt;}
.x133_c00318{left:505.466667pt;}
.x11b_c00318{left:506.800000pt;}
.x127_c00318{left:508.533333pt;}
.xc8_c00318{left:509.733333pt;}
.xd4_c00318{left:511.866667pt;}
.xcf_c00318{left:513.600000pt;}
.xf2_c00318{left:515.200000pt;}
.x142_c00318{left:517.600000pt;}
.xba_c00318{left:520.000000pt;}
.x10e_c00318{left:521.866667pt;}
.xeb_c00318{left:523.200000pt;}
.x111_c00318{left:524.400000pt;}
.xd0_c00318{left:526.133333pt;}
.xc4_c00318{left:530.000000pt;}
.x14b_c00318{left:531.333333pt;}
.x120_c00318{left:532.266667pt;}
.xe1_c00318{left:534.000000pt;}
.xc9_c00318{left:535.600000pt;}
.xbf_c00318{left:537.333333pt;}
.xdb_c00318{left:539.200000pt;}
.x112_c00318{left:540.400000pt;}
.x105_c00318{left:542.133333pt;}
.xa7_c00318{left:543.200000pt;}
.xfb_c00318{left:545.600000pt;}
.x114_c00318{left:547.733333pt;}
.xa8_c00318{left:549.333333pt;}
.xc0_c00318{left:550.400000pt;}
.xee_c00318{left:552.400000pt;}
.x13a_c00318{left:554.266667pt;}
.xbb_c00318{left:557.066667pt;}
.x101_c00318{left:558.400000pt;}
.xec_c00318{left:559.333333pt;}
.x11c_c00318{left:560.800000pt;}
.xe6_c00318{left:562.266667pt;}
.x13c_c00318{left:563.600000pt;}
.xf3_c00318{left:565.733333pt;}
.xca_c00318{left:566.666667pt;}
.xa9_c00318{left:568.933333pt;}
.xbc_c00318{left:570.533333pt;}
.x10c_c00318{left:571.866667pt;}
.xe2_c00318{left:573.066667pt;}
.xcb_c00318{left:574.400000pt;}
.xa0_c00318{left:575.333333pt;}
.xc5_c00318{left:577.733333pt;}
.xd5_c00318{left:579.600000pt;}
.x11e_c00318{left:586.933333pt;}
.xaa_c00318{left:588.400000pt;}
.x143_c00318{left:590.000000pt;}
.x134_c00318{left:593.866667pt;}
.xab_c00318{left:594.800000pt;}
.x115_c00318{left:598.666667pt;}
.xb5_c00318{left:600.533333pt;}
.xc1_c00318{left:601.600000pt;}
.x124_c00318{left:604.266667pt;}
.xbd_c00318{left:605.466667pt;}
.xac_c00318{left:607.600000pt;}
.xdc_c00318{left:609.333333pt;}
.x145_c00318{left:612.800000pt;}
.xad_c00318{left:613.733333pt;}
.xa1_c00318{left:614.666667pt;}
.x12b_c00318{left:616.400000pt;}
.xef_c00318{left:617.333333pt;}
.xd6_c00318{left:618.266667pt;}
.xae_c00318{left:620.133333pt;}
.x102_c00318{left:621.733333pt;}
.xe3_c00318{left:624.266667pt;}
.x10a_c00318{left:625.333333pt;}
.x137_c00318{left:626.800000pt;}
.xa2_c00318{left:629.333333pt;}
.x11f_c00318{left:630.800000pt;}
.x13b_c00318{left:632.266667pt;}
.x10f_c00318{left:633.866667pt;}
.xf4_c00318{left:635.466667pt;}
.xaf_c00318{left:637.466667pt;}
.x121_c00318{left:639.066667pt;}
.x106_c00318{left:640.666667pt;}
.x123_c00318{left:642.133333pt;}
.xfc_c00318{left:644.400000pt;}
.xd1_c00318{left:645.466667pt;}
.xe7_c00318{left:646.533333pt;}
.xf7_c00318{left:647.600000pt;}
.x10b_c00318{left:648.666667pt;}
.xdd_c00318{left:650.000000pt;}
.x149_c00318{left:651.200000pt;}
.xed_c00318{left:653.733333pt;}
.xa3_c00318{left:656.533333pt;}
.xcc_c00318{left:658.533333pt;}
.xb0_c00318{left:662.800000pt;}
.xc2_c00318{left:664.133333pt;}
.xf5_c00318{left:665.600000pt;}
.x128_c00318{left:666.933333pt;}
.x117_c00318{left:668.133333pt;}
.xd7_c00318{left:669.733333pt;}
.x146_c00318{left:670.666667pt;}
.xfd_c00318{left:674.533333pt;}
.x3_c00318{left:676.133333pt;}
.xe4_c00318{left:677.733333pt;}
.xd2_c00318{left:679.066667pt;}
.x11d_c00318{left:680.400000pt;}
.xf8_c00318{left:681.866667pt;}
.x14c_c00318{left:683.733333pt;}
.xa4_c00318{left:686.266667pt;}
.xe8_c00318{left:687.466667pt;}
.xb1_c00318{left:688.400000pt;}
.xc3_c00318{left:689.466667pt;}
.xfe_c00318{left:693.066667pt;}
.x116_c00318{left:694.000000pt;}
.x2_c00318{left:695.066667pt;}
.x13d_c00318{left:700.266667pt;}
.xe9_c00318{left:708.533333pt;}
}





/* 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_c00319 {
    display:none;
  }
  .loading-indicator_c00319.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00319 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_c00319 { 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_c00319" -> "#page-container .classname_c00319")
 */
.pf_c00319 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00319 { /* 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_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00319 { /* 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_c00319 { /* 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_c00319 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00319 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00319 {overflow:visible;}
  }
}
.c_c00319 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00319 { /* 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_c00319:after { /* webkit #35443 */
  content: '';
}
.t_c00319:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00319 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 */
}
.__c00319 { /* 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_c00319 { /* info for Javascript */
  display:none;
}
.l_c00319 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00319 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00319 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00319: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_c00319 {
    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_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00319.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_c00319 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00319{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00319;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.000000;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;}
.m9d_c00319{transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00319{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mec_c00319{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00319{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.m123_c00319{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.me0_c00319{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m103_c00319{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00319{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m122_c00319{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m29_c00319{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00319{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m73_c00319{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00319{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m67_c00319{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5_c00319{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m28_c00319{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00319{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mda_c00319{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00319{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00319{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md9_c00319{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m23_c00319{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00319{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m19_c00319{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00319{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.md3_c00319{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00319{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00319{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m104_c00319{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.md4_c00319{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m93_c00319{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.md6_c00319{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00319{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00319{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00319{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00319{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.mde_c00319{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00319{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m109_c00319{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m119_c00319{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00319{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m27_c00319{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8_c00319{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m79_c00319{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00319{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00319{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m125_c00319{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mef_c00319{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m71_c00319{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m78_c00319{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00319{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m130_c00319{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00319{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00319{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.me9_c00319{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m92_c00319{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00319{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m126_c00319{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00319{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m132_c00319{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00319{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m49_c00319{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00319{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00319{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m21_c00319{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m128_c00319{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m70_c00319{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m35_c00319{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m138_c00319{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.md7_c00319{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mff_c00319{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m84_c00319{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00319{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m113_c00319{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m38_c00319{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m127_c00319{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m63_c00319{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00319{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m75_c00319{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m59_c00319{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m101_c00319{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.me1_c00319{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00319{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m52_c00319{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00319{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00319{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00319{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mce_c00319{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00319{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m54_c00319{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me8_c00319{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m53_c00319{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.meb_c00319{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md2_c00319{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00319{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m135_c00319{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00319{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00319{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m16_c00319{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md8_c00319{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m68_c00319{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00319{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m20_c00319{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m98_c00319{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00319{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00319{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m25_c00319{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m90_c00319{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00319{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m69_c00319{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m42_c00319{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mca_c00319{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me3_c00319{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m76_c00319{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00319{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00319{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00319{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00319{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00319{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m66_c00319{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00319{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m30_c00319{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m43_c00319{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m40_c00319{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.med_c00319{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00319{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00319{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m99_c00319{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m77_c00319{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m131_c00319{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m118_c00319{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m56_c00319{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mea_c00319{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m64_c00319{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00319{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m13_c00319{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11_c00319{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me4_c00319{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00319{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m134_c00319{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7_c00319{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.maa_c00319{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00319{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00319{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00319{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00319{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00319{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00319{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m24_c00319{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00319{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m61_c00319{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00319{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m34_c00319{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00319{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m72_c00319{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00319{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mee_c00319{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00319{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00319{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00319{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m39_c00319{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00319{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m55_c00319{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00319{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00319{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m108_c00319{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m44_c00319{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00319{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m82_c00319{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m51_c00319{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00319{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m80_c00319{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mab_c00319{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m60_c00319{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mac_c00319{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m57_c00319{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md5_c00319{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m81_c00319{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00319{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00319{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m45_c00319{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00319{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00319{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00319{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00319{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m41_c00319{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m37_c00319{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00319{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m102_c00319{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m100_c00319{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m96_c00319{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00319{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m12_c00319{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00319{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00319{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00319{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m94_c00319{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00319{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00319{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00319{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00319{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00319{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00319{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m133_c00319{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m50_c00319{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00319{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m116_c00319{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m32_c00319{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00319{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me6_c00319{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00319{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00319{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m137_c00319{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00319{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me5_c00319{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00319{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00319{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00319{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m62_c00319{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9_c00319{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m124_c00319{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.maf_c00319{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00319{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6_c00319{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00319{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00319{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m129_c00319{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m91_c00319{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m97_c00319{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00319{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mae_c00319{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m58_c00319{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00319{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00319{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m74_c00319{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26_c00319{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma_c00319{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10_c00319{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00319{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m117_c00319{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mad_c00319{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m86_c00319{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);}
.m11e_c00319{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00319{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md_c00319{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m95_c00319{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m48_c00319{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m36_c00319{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00319{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m83_c00319{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.me7_c00319{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00319{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.me2_c00319{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m31_c00319{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m22_c00319{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00319{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m111_c00319{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00319{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.me_c00319{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m17_c00319{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00319{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m46_c00319{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.md0_c00319{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00319{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc_c00319{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m87_c00319{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m114_c00319{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00319{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m112_c00319{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m139_c00319{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m33_c00319{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m136_c00319{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mf_c00319{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00319{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m115_c00319{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.md1_c00319{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m110_c00319{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00319{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m89_c00319{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14_c00319{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00319{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m105_c00319{transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);}
.mb_c00319{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m88_c00319{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00319{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00319{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00319{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00319{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00319{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m107_c00319{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mba_c00319{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00319{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00319{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00319{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00319{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00319{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00319{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m121_c00319{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m47_c00319{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00319{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m106_c00319{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00319{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00319{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00319{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00319{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m2_c00319{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.m4_c00319{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m85_c00319{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m3_c00319{transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00319{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m120_c00319{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m18_c00319{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m15_c00319{transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls0_c00319{letter-spacing:0.000000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{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__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00319{word-spacing:-14.606557px;}
.ws2_c00319{word-spacing:-7.352941px;}
.ws6_c00319{word-spacing:-5.147059px;}
.ws0_c00319{word-spacing:-3.193435px;}
.ws4_c00319{word-spacing:-0.183206px;}
.wsc_c00319{word-spacing:0.000000px;}
.ws7_c00319{word-spacing:4.375000px;}
.ws3_c00319{word-spacing:6.641337px;}
.ws1_c00319{word-spacing:7.205882px;}
.ws9_c00319{word-spacing:25.714286px;}
.wsa_c00319{word-spacing:40.000000px;}
.wsb_c00319{word-spacing:60.000000px;}
.ws8_c00319{word-spacing:3417.854015px;}
._0_c00319{width:42.058824px;}
.fc0_c00319{color:transparent;}
.fs4_c00319{font-size:30.000000px;}
.fs8_c00319{font-size:42.000000px;}
.fs7_c00319{font-size:48.000000px;}
.fs6_c00319{font-size:54.000000px;}
.fs2_c00319{font-size:60.000000px;}
.fs3_c00319{font-size:66.000000px;}
.fs5_c00319{font-size:72.000000px;}
.fs0_c00319{font-size:78.000000px;}
.fs1_c00319{font-size:114.000000px;}
.y0_c00319{bottom:0.000000px;}
.y70_c00319{bottom:191.100000px;}
.y3f_c00319{bottom:191.550000px;}
.y6f_c00319{bottom:205.200000px;}
.y3e_c00319{bottom:206.700000px;}
.y3d_c00319{bottom:221.100000px;}
.y3c_c00319{bottom:235.800000px;}
.y3b_c00319{bottom:248.400000px;}
.y6e_c00319{bottom:251.100000px;}
.y3a_c00319{bottom:263.550000px;}
.y6d_c00319{bottom:269.100000px;}
.y39_c00319{bottom:277.950000px;}
.y6c_c00319{bottom:287.100000px;}
.y38_c00319{bottom:293.100000px;}
.y6b_c00319{bottom:304.800000px;}
.y37_c00319{bottom:306.000000px;}
.y36_c00319{bottom:320.400000px;}
.y6a_c00319{bottom:322.500000px;}
.y35_c00319{bottom:334.800000px;}
.y69_c00319{bottom:340.800000px;}
.y34_c00319{bottom:349.500000px;}
.y68_c00319{bottom:358.500000px;}
.y33_c00319{bottom:363.900000px;}
.y67_c00319{bottom:376.200000px;}
.y32_c00319{bottom:379.050000px;}
.y31_c00319{bottom:392.700000px;}
.y66_c00319{bottom:397.800000px;}
.y30_c00319{bottom:406.800000px;}
.y65_c00319{bottom:410.700000px;}
.y2f_c00319{bottom:421.200000px;}
.y64_c00319{bottom:426.300000px;}
.y2e_c00319{bottom:435.600000px;}
.y63_c00319{bottom:439.950000px;}
.y2d_c00319{bottom:450.000000px;}
.y62_c00319{bottom:453.600000px;}
.y2c_c00319{bottom:465.900000px;}
.y61_c00319{bottom:472.350000px;}
.y2b_c00319{bottom:479.550000px;}
.y60_c00319{bottom:490.350000px;}
.y2a_c00319{bottom:493.200000px;}
.y29_c00319{bottom:508.350000px;}
.y5e_c00319{bottom:512.250000px;}
.y28_c00319{bottom:520.650000px;}
.y5d_c00319{bottom:530.250000px;}
.y27_c00319{bottom:536.100000px;}
.y5c_c00319{bottom:547.500000px;}
.y26_c00319{bottom:550.950000px;}
.y25_c00319{bottom:564.600000px;}
.y5b_c00319{bottom:565.200000px;}
.y24_c00319{bottom:579.300000px;}
.y5a_c00319{bottom:583.500000px;}
.y23_c00319{bottom:594.000000px;}
.y59_c00319{bottom:601.200000px;}
.y22_c00319{bottom:609.150000px;}
.y58_c00319{bottom:618.900000px;}
.y21_c00319{bottom:621.600000px;}
.y20_c00319{bottom:635.700000px;}
.y57_c00319{bottom:640.500000px;}
.y1f_c00319{bottom:650.100000px;}
.y5f_c00319{bottom:658.050000px;}
.y56_c00319{bottom:658.500000px;}
.y1e_c00319{bottom:664.500000px;}
.y1d_c00319{bottom:677.100000px;}
.y55_c00319{bottom:689.400000px;}
.y1c_c00319{bottom:693.300000px;}
.y1b_c00319{bottom:707.700000px;}
.y1a_c00319{bottom:722.100000px;}
.y54_c00319{bottom:729.300000px;}
.y19_c00319{bottom:736.200000px;}
.y53_c00319{bottom:747.300000px;}
.y18_c00319{bottom:750.600000px;}
.y17_c00319{bottom:764.700000px;}
.y52_c00319{bottom:769.200000px;}
.y16_c00319{bottom:779.100000px;}
.y51_c00319{bottom:786.900000px;}
.y15_c00319{bottom:793.500000px;}
.y14_c00319{bottom:807.900000px;}
.y50_c00319{bottom:809.250000px;}
.y13_c00319{bottom:822.300000px;}
.y4f_c00319{bottom:826.950000px;}
.y12_c00319{bottom:836.700000px;}
.y4e_c00319{bottom:844.950000px;}
.y11_c00319{bottom:850.800000px;}
.y10_c00319{bottom:865.500000px;}
.y4d_c00319{bottom:866.850000px;}
.yf_c00319{bottom:880.200000px;}
.y4c_c00319{bottom:884.850000px;}
.ye_c00319{bottom:893.100000px;}
.y4b_c00319{bottom:902.400000px;}
.yd_c00319{bottom:907.500000px;}
.y4a_c00319{bottom:920.400000px;}
.yc_c00319{bottom:921.600000px;}
.yb_c00319{bottom:936.300000px;}
.y49_c00319{bottom:938.100000px;}
.y48_c00319{bottom:955.800000px;}
.ya_c00319{bottom:977.100000px;}
.y47_c00319{bottom:978.150000px;}
.y9_c00319{bottom:985.350000px;}
.y46_c00319{bottom:999.750000px;}
.y8_c00319{bottom:1003.650000px;}
.y7_c00319{bottom:1013.400000px;}
.y45_c00319{bottom:1021.650000px;}
.y44_c00319{bottom:1039.950000px;}
.y6_c00319{bottom:1040.100000px;}
.y43_c00319{bottom:1057.650000px;}
.y5_c00319{bottom:1062.000000px;}
.y42_c00319{bottom:1075.350000px;}
.y4_c00319{bottom:1085.700000px;}
.y41_c00319{bottom:1101.600000px;}
.y3_c00319{bottom:1114.200000px;}
.y40_c00319{bottom:1114.950000px;}
.y2_c00319{bottom:1141.200000px;}
.y1_c00319{bottom:1141.950000px;}
.h6_c00319{height:30.000000px;}
.ha_c00319{height:42.000000px;}
.h9_c00319{height:48.000000px;}
.h8_c00319{height:54.000000px;}
.h4_c00319{height:60.000000px;}
.h5_c00319{height:66.000000px;}
.h7_c00319{height:72.000000px;}
.h2_c00319{height:78.000000px;}
.h3_c00319{height:114.000000px;}
.h1_c00319{height:1264.500000px;}
.h0_c00319{height:1264.679993px;}
.w1_c00319{width:961.500000px;}
.w0_c00319{width:961.560058px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:173.100000px;}
.xd_c00319{left:174.300000px;}
.x88_c00319{left:175.350000px;}
.x93_c00319{left:176.850000px;}
.x9d_c00319{left:178.200000px;}
.xaf_c00319{left:179.550000px;}
.xb3_c00319{left:180.600000px;}
.x26_c00319{left:187.950000px;}
.x82_c00319{left:189.000000px;}
.x6c_c00319{left:190.800000px;}
.x13_c00319{left:193.050000px;}
.xb1_c00319{left:194.700000px;}
.x80_c00319{left:196.050000px;}
.x51_c00319{left:197.100000px;}
.xad_c00319{left:198.750000px;}
.xaa_c00319{left:201.000000px;}
.x20_c00319{left:204.600000px;}
.x5e_c00319{left:207.000000px;}
.x9_c00319{left:209.400000px;}
.x27_c00319{left:211.050000px;}
.x94_c00319{left:212.100000px;}
.x21_c00319{left:213.300000px;}
.x42_c00319{left:215.100000px;}
.x36_c00319{left:217.350000px;}
.x4c_c00319{left:218.550000px;}
.xe_c00319{left:220.350000px;}
.x8d_c00319{left:223.800000px;}
.x37_c00319{left:224.850000px;}
.x83_c00319{left:226.800000px;}
.x71_c00319{left:229.950000px;}
.x30_c00319{left:232.350000px;}
.x3c_c00319{left:233.550000px;}
.x38_c00319{left:235.350000px;}
.x4d_c00319{left:237.300000px;}
.x17_c00319{left:238.350000px;}
.x97_c00319{left:240.450000px;}
.x66_c00319{left:241.950000px;}
.x90_c00319{left:243.000000px;}
.x73_c00319{left:244.050000px;}
.x52_c00319{left:245.400000px;}
.x72_c00319{left:246.450000px;}
.x3_c00319{left:247.650000px;}
.x28_c00319{left:250.950000px;}
.x7c_c00319{left:252.300000px;}
.xa_c00319{left:253.650000px;}
.x14_c00319{left:255.300000px;}
.x8a_c00319{left:258.600000px;}
.x57_c00319{left:259.950000px;}
.x5f_c00319{left:261.000000px;}
.x22_c00319{left:262.200000px;}
.x3d_c00319{left:265.650000px;}
.x86_c00319{left:268.950000px;}
.x18_c00319{left:270.450000px;}
.x7a_c00319{left:272.100000px;}
.x8b_c00319{left:274.500000px;}
.x7d_c00319{left:275.700000px;}
.x95_c00319{left:277.650000px;}
.x76_c00319{left:279.000000px;}
.x43_c00319{left:280.500000px;}
.x19_c00319{left:282.000000px;}
.xb4_c00319{left:283.650000px;}
.x5_c00319{left:284.850000px;}
.xf_c00319{left:286.200000px;}
.x98_c00319{left:287.250000px;}
.x44_c00319{left:288.450000px;}
.x15_c00319{left:289.500000px;}
.x81_c00319{left:291.000000px;}
.x29_c00319{left:292.650000px;}
.x31_c00319{left:294.300000px;}
.x6_c00319{left:295.350000px;}
.x77_c00319{left:297.750000px;}
.xab_c00319{left:298.800000px;}
.x49_c00319{left:300.150000px;}
.x58_c00319{left:302.400000px;}
.x23_c00319{left:305.700000px;}
.xc_c00319{left:307.950000px;}
.x53_c00319{left:309.150000px;}
.x8c_c00319{left:311.550000px;}
.x9e_c00319{left:312.750000px;}
.x24_c00319{left:314.400000px;}
.x70_c00319{left:316.050000px;}
.x87_c00319{left:317.550000px;}
.x16_c00319{left:319.050000px;}
.x7e_c00319{left:320.700000px;}
.x1a_c00319{left:322.650000px;}
.x3e_c00319{left:324.750000px;}
.x74_c00319{left:326.850000px;}
.xb0_c00319{left:329.400000px;}
.x39_c00319{left:330.750000px;}
.x60_c00319{left:333.000000px;}
.x45_c00319{left:335.250000px;}
.xa0_c00319{left:336.750000px;}
.x2a_c00319{left:337.950000px;}
.x1b_c00319{left:340.650000px;}
.x59_c00319{left:341.700000px;}
.x4a_c00319{left:343.800000px;}
.x67_c00319{left:345.300000px;}
.x32_c00319{left:346.500000px;}
.x2b_c00319{left:348.450000px;}
.x5a_c00319{left:349.950000px;}
.x75_c00319{left:352.050000px;}
.x25_c00319{left:354.000000px;}
.xa5_c00319{left:355.800000px;}
.x10_c00319{left:357.900000px;}
.x54_c00319{left:359.250000px;}
.xa8_c00319{left:360.600000px;}
.x61_c00319{left:362.850000px;}
.x4e_c00319{left:364.050000px;}
.x5b_c00319{left:365.850000px;}
.x4_c00319{left:367.200000px;}
.x33_c00319{left:369.600000px;}
.x7_c00319{left:370.650000px;}
.x2c_c00319{left:373.350000px;}
.x55_c00319{left:377.550000px;}
.x99_c00319{left:379.050000px;}
.x62_c00319{left:380.550000px;}
.x8e_c00319{left:383.250000px;}
.x1c_c00319{left:385.950000px;}
.x46_c00319{left:387.000000px;}
.x84_c00319{left:389.850000px;}
.x6d_c00319{left:391.050000px;}
.xa3_c00319{left:393.600000px;}
.x2d_c00319{left:396.450000px;}
.x9a_c00319{left:397.800000px;}
.xa7_c00319{left:400.200000px;}
.x3f_c00319{left:401.400000px;}
.xa1_c00319{left:404.400000px;}
.x8f_c00319{left:407.700000px;}
.x78_c00319{left:409.800000px;}
.x68_c00319{left:411.150000px;}
.xb_c00319{left:412.350000px;}
.x4f_c00319{left:414.150000px;}
.x11_c00319{left:417.300000px;}
.x6e_c00319{left:418.350000px;}
.x2_c00319{left:419.700000px;}
.x89_c00319{left:421.350000px;}
.x69_c00319{left:423.000000px;}
.x2e_c00319{left:426.000000px;}
.x47_c00319{left:428.100000px;}
.x4b_c00319{left:431.550000px;}
.x7f_c00319{left:434.700000px;}
.x85_c00319{left:436.650000px;}
.x63_c00319{left:437.700000px;}
.x1d_c00319{left:439.950000px;}
.x9b_c00319{left:441.000000px;}
.x9f_c00319{left:442.050000px;}
.x91_c00319{left:443.700000px;}
.x34_c00319{left:445.950000px;}
.x50_c00319{left:447.300000px;}
.xa6_c00319{left:449.400000px;}
.x48_c00319{left:451.800000px;}
.x40_c00319{left:453.900000px;}
.x6a_c00319{left:455.400000px;}
.x5c_c00319{left:456.900000px;}
.x8_c00319{left:458.100000px;}
.x6f_c00319{left:462.600000px;}
.x79_c00319{left:464.250000px;}
.x9c_c00319{left:465.900000px;}
.x92_c00319{left:467.400000px;}
.x64_c00319{left:470.850000px;}
.x3a_c00319{left:472.500000px;}
.x12_c00319{left:474.150000px;}
.x1e_c00319{left:475.200000px;}
.x35_c00319{left:477.300000px;}
.x7b_c00319{left:479.100000px;}
.x56_c00319{left:480.150000px;}
.x6b_c00319{left:481.650000px;}
.x96_c00319{left:483.000000px;}
.x1f_c00319{left:485.700000px;}
.xa9_c00319{left:486.900000px;}
.xb5_c00319{left:488.400000px;}
.x2f_c00319{left:489.750000px;}
.x5d_c00319{left:491.400000px;}
.x3b_c00319{left:492.600000px;}
.xa4_c00319{left:494.400000px;}
.x65_c00319{left:495.450000px;}
.x41_c00319{left:497.400000px;}
.xac_c00319{left:499.200000px;}
.xa2_c00319{left:502.200000px;}
.xae_c00319{left:508.950000px;}
.xb2_c00319{left:510.000000px;}
.x139_c00319{left:523.200000px;}
.x108_c00319{left:531.750000px;}
.x135_c00319{left:532.800000px;}
.x155_c00319{left:535.050000px;}
.x150_c00319{left:547.200000px;}
.xbe_c00319{left:548.700000px;}
.x10e_c00319{left:549.750000px;}
.x149_c00319{left:550.800000px;}
.x151_c00319{left:554.700000px;}
.xde_c00319{left:559.050000px;}
.x13c_c00319{left:560.850000px;}
.xb6_c00319{left:566.700000px;}
.xd6_c00319{left:567.750000px;}
.x11a_c00319{left:568.800000px;}
.x14b_c00319{left:571.350000px;}
.x136_c00319{left:573.900000px;}
.xf6_c00319{left:574.950000px;}
.xd0_c00319{left:576.900000px;}
.x128_c00319{left:579.750000px;}
.x118_c00319{left:581.400000px;}
.xcd_c00319{left:582.600000px;}
.x12c_c00319{left:583.650000px;}
.xe5_c00319{left:585.000000px;}
.x105_c00319{left:587.100000px;}
.x11e_c00319{left:588.450000px;}
.x109_c00319{left:590.400000px;}
.xc5_c00319{left:592.200000px;}
.x152_c00319{left:593.250000px;}
.xf2_c00319{left:594.300000px;}
.x114_c00319{left:595.800000px;}
.x111_c00319{left:598.350000px;}
.x10f_c00319{left:599.400000px;}
.xd7_c00319{left:600.450000px;}
.xe7_c00319{left:604.350000px;}
.xfd_c00319{left:606.000000px;}
.xdf_c00319{left:609.450000px;}
.xf7_c00319{left:610.950000px;}
.x115_c00319{left:612.000000px;}
.xe8_c00319{left:613.650000px;}
.x100_c00319{left:615.900000px;}
.xee_c00319{left:616.950000px;}
.xce_c00319{left:618.300000px;}
.xe0_c00319{left:622.800000px;}
.xbf_c00319{left:624.000000px;}
.x129_c00319{left:625.800000px;}
.x11f_c00319{left:628.350000px;}
.xb7_c00319{left:630.000000px;}
.xb8_c00319{left:632.850000px;}
.x142_c00319{left:636.000000px;}
.xd8_c00319{left:637.500000px;}
.xef_c00319{left:638.550000px;}
.x106_c00319{left:641.400000px;}
.x12d_c00319{left:643.200000px;}
.x124_c00319{left:645.300000px;}
.x116_c00319{left:646.950000px;}
.x12a_c00319{left:648.900000px;}
.xe9_c00319{left:651.450000px;}
.x11b_c00319{left:654.150000px;}
.xd9_c00319{left:655.200000px;}
.x107_c00319{left:658.650000px;}
.xfe_c00319{left:660.000000px;}
.x13f_c00319{left:662.700000px;}
.x10a_c00319{left:664.200000px;}
.xb9_c00319{left:665.250000px;}
.x117_c00319{left:666.750000px;}
.xf3_c00319{left:667.800000px;}
.xc6_c00319{left:669.300000px;}
.x145_c00319{left:671.100000px;}
.xdc_c00319{left:672.150000px;}
.x14a_c00319{left:673.500000px;}
.x12e_c00319{left:674.550000px;}
.x101_c00319{left:677.100000px;}
.x10b_c00319{left:680.400000px;}
.xd1_c00319{left:682.050000px;}
.xf8_c00319{left:687.300000px;}
.xf4_c00319{left:688.350000px;}
.xdd_c00319{left:689.400000px;}
.x13a_c00319{left:690.900000px;}
.xe6_c00319{left:692.550000px;}
.xea_c00319{left:694.350000px;}
.xba_c00319{left:696.150000px;}
.xf0_c00319{left:698.250000px;}
.x125_c00319{left:701.850000px;}
.xf9_c00319{left:703.200000px;}
.x14c_c00319{left:705.300000px;}
.x12f_c00319{left:707.400000px;}
.x110_c00319{left:709.050000px;}
.xe1_c00319{left:711.000000px;}
.xc7_c00319{left:713.550000px;}
.x10c_c00319{left:715.650000px;}
.x143_c00319{left:717.000000px;}
.xd2_c00319{left:718.800000px;}
.xda_c00319{left:720.300000px;}
.x119_c00319{left:723.300000px;}
.x130_c00319{left:724.350000px;}
.x11c_c00319{left:725.400000px;}
.x140_c00319{left:726.750000px;}
.x120_c00319{left:729.300000px;}
.xbb_c00319{left:730.650000px;}
.xc8_c00319{left:733.050000px;}
.x153_c00319{left:736.200000px;}
.xeb_c00319{left:739.050000px;}
.xd3_c00319{left:740.100000px;}
.xc0_c00319{left:741.750000px;}
.x144_c00319{left:742.950000px;}
.x126_c00319{left:747.150000px;}
.x141_c00319{left:748.350000px;}
.x11d_c00319{left:750.900000px;}
.xf5_c00319{left:753.150000px;}
.x131_c00319{left:755.250000px;}
.xd4_c00319{left:758.850000px;}
.x13b_c00319{left:761.700000px;}
.xfa_c00319{left:764.700000px;}
.x147_c00319{left:765.750000px;}
.xc1_c00319{left:766.950000px;}
.x146_c00319{left:768.750000px;}
.xe2_c00319{left:770.100000px;}
.xff_c00319{left:772.800000px;}
.x121_c00319{left:775.350000px;}
.xec_c00319{left:777.150000px;}
.xc9_c00319{left:778.800000px;}
.x132_c00319{left:780.750000px;}
.x112_c00319{left:781.950000px;}
.xdb_c00319{left:783.300000px;}
.xfb_c00319{left:785.550000px;}
.xbc_c00319{left:788.550000px;}
.xc2_c00319{left:790.650000px;}
.x14e_c00319{left:791.850000px;}
.xcf_c00319{left:794.250000px;}
.x13d_c00319{left:795.900000px;}
.x122_c00319{left:797.250000px;}
.x102_c00319{left:798.450000px;}
.xca_c00319{left:800.400000px;}
.x113_c00319{left:803.850000px;}
.xd5_c00319{left:805.650000px;}
.x133_c00319{left:806.700000px;}
.x12b_c00319{left:811.200000px;}
.x148_c00319{left:814.350000px;}
.x103_c00319{left:815.700000px;}
.x134_c00319{left:817.200000px;}
.x123_c00319{left:819.150000px;}
.xbd_c00319{left:820.200000px;}
.xed_c00319{left:821.400000px;}
.xe3_c00319{left:823.350000px;}
.xf1_c00319{left:825.300000px;}
.x127_c00319{left:827.400000px;}
.xc3_c00319{left:829.200000px;}
.xfc_c00319{left:831.600000px;}
.x154_c00319{left:833.100000px;}
.x104_c00319{left:836.250000px;}
.x10d_c00319{left:838.050000px;}
.xc4_c00319{left:842.100000px;}
.xe4_c00319{left:845.250000px;}
.x14d_c00319{left:849.750000px;}
.xcb_c00319{left:850.800000px;}
.x138_c00319{left:852.300000px;}
.x13e_c00319{left:855.300000px;}
.x14f_c00319{left:856.350000px;}
.xcc_c00319{left:861.600000px;}
.x137_c00319{left:876.000000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws5_c00319{word-spacing:-12.983607pt;}
.ws2_c00319{word-spacing:-6.535948pt;}
.ws6_c00319{word-spacing:-4.575163pt;}
.ws0_c00319{word-spacing:-2.838609pt;}
.ws4_c00319{word-spacing:-0.162850pt;}
.wsc_c00319{word-spacing:0.000000pt;}
.ws7_c00319{word-spacing:3.888889pt;}
.ws3_c00319{word-spacing:5.903411pt;}
.ws1_c00319{word-spacing:6.405229pt;}
.ws9_c00319{word-spacing:22.857143pt;}
.wsa_c00319{word-spacing:35.555556pt;}
.wsb_c00319{word-spacing:53.333333pt;}
.ws8_c00319{word-spacing:3038.092457pt;}
._0_c00319{width:37.385621pt;}
.fs4_c00319{font-size:26.666667pt;}
.fs8_c00319{font-size:37.333333pt;}
.fs7_c00319{font-size:42.666667pt;}
.fs6_c00319{font-size:48.000000pt;}
.fs2_c00319{font-size:53.333333pt;}
.fs3_c00319{font-size:58.666667pt;}
.fs5_c00319{font-size:64.000000pt;}
.fs0_c00319{font-size:69.333333pt;}
.fs1_c00319{font-size:101.333333pt;}
.y0_c00319{bottom:0.000000pt;}
.y70_c00319{bottom:169.866667pt;}
.y3f_c00319{bottom:170.266667pt;}
.y6f_c00319{bottom:182.400000pt;}
.y3e_c00319{bottom:183.733333pt;}
.y3d_c00319{bottom:196.533333pt;}
.y3c_c00319{bottom:209.600000pt;}
.y3b_c00319{bottom:220.800000pt;}
.y6e_c00319{bottom:223.200000pt;}
.y3a_c00319{bottom:234.266667pt;}
.y6d_c00319{bottom:239.200000pt;}
.y39_c00319{bottom:247.066667pt;}
.y6c_c00319{bottom:255.200000pt;}
.y38_c00319{bottom:260.533333pt;}
.y6b_c00319{bottom:270.933333pt;}
.y37_c00319{bottom:272.000000pt;}
.y36_c00319{bottom:284.800000pt;}
.y6a_c00319{bottom:286.666667pt;}
.y35_c00319{bottom:297.600000pt;}
.y69_c00319{bottom:302.933333pt;}
.y34_c00319{bottom:310.666667pt;}
.y68_c00319{bottom:318.666667pt;}
.y33_c00319{bottom:323.466667pt;}
.y67_c00319{bottom:334.400000pt;}
.y32_c00319{bottom:336.933333pt;}
.y31_c00319{bottom:349.066667pt;}
.y66_c00319{bottom:353.600000pt;}
.y30_c00319{bottom:361.600000pt;}
.y65_c00319{bottom:365.066667pt;}
.y2f_c00319{bottom:374.400000pt;}
.y64_c00319{bottom:378.933333pt;}
.y2e_c00319{bottom:387.200000pt;}
.y63_c00319{bottom:391.066667pt;}
.y2d_c00319{bottom:400.000000pt;}
.y62_c00319{bottom:403.200000pt;}
.y2c_c00319{bottom:414.133333pt;}
.y61_c00319{bottom:419.866667pt;}
.y2b_c00319{bottom:426.266667pt;}
.y60_c00319{bottom:435.866667pt;}
.y2a_c00319{bottom:438.400000pt;}
.y29_c00319{bottom:451.866667pt;}
.y5e_c00319{bottom:455.333333pt;}
.y28_c00319{bottom:462.800000pt;}
.y5d_c00319{bottom:471.333333pt;}
.y27_c00319{bottom:476.533333pt;}
.y5c_c00319{bottom:486.666667pt;}
.y26_c00319{bottom:489.733333pt;}
.y25_c00319{bottom:501.866667pt;}
.y5b_c00319{bottom:502.400000pt;}
.y24_c00319{bottom:514.933333pt;}
.y5a_c00319{bottom:518.666667pt;}
.y23_c00319{bottom:528.000000pt;}
.y59_c00319{bottom:534.400000pt;}
.y22_c00319{bottom:541.466667pt;}
.y58_c00319{bottom:550.133333pt;}
.y21_c00319{bottom:552.533333pt;}
.y20_c00319{bottom:565.066667pt;}
.y57_c00319{bottom:569.333333pt;}
.y1f_c00319{bottom:577.866667pt;}
.y5f_c00319{bottom:584.933333pt;}
.y56_c00319{bottom:585.333333pt;}
.y1e_c00319{bottom:590.666667pt;}
.y1d_c00319{bottom:601.866667pt;}
.y55_c00319{bottom:612.800000pt;}
.y1c_c00319{bottom:616.266667pt;}
.y1b_c00319{bottom:629.066667pt;}
.y1a_c00319{bottom:641.866667pt;}
.y54_c00319{bottom:648.266667pt;}
.y19_c00319{bottom:654.400000pt;}
.y53_c00319{bottom:664.266667pt;}
.y18_c00319{bottom:667.200000pt;}
.y17_c00319{bottom:679.733333pt;}
.y52_c00319{bottom:683.733333pt;}
.y16_c00319{bottom:692.533333pt;}
.y51_c00319{bottom:699.466667pt;}
.y15_c00319{bottom:705.333333pt;}
.y14_c00319{bottom:718.133333pt;}
.y50_c00319{bottom:719.333333pt;}
.y13_c00319{bottom:730.933333pt;}
.y4f_c00319{bottom:735.066667pt;}
.y12_c00319{bottom:743.733333pt;}
.y4e_c00319{bottom:751.066667pt;}
.y11_c00319{bottom:756.266667pt;}
.y10_c00319{bottom:769.333333pt;}
.y4d_c00319{bottom:770.533333pt;}
.yf_c00319{bottom:782.400000pt;}
.y4c_c00319{bottom:786.533333pt;}
.ye_c00319{bottom:793.866667pt;}
.y4b_c00319{bottom:802.133333pt;}
.yd_c00319{bottom:806.666667pt;}
.y4a_c00319{bottom:818.133333pt;}
.yc_c00319{bottom:819.200000pt;}
.yb_c00319{bottom:832.266667pt;}
.y49_c00319{bottom:833.866667pt;}
.y48_c00319{bottom:849.600000pt;}
.ya_c00319{bottom:868.533333pt;}
.y47_c00319{bottom:869.466667pt;}
.y9_c00319{bottom:875.866667pt;}
.y46_c00319{bottom:888.666667pt;}
.y8_c00319{bottom:892.133333pt;}
.y7_c00319{bottom:900.800000pt;}
.y45_c00319{bottom:908.133333pt;}
.y44_c00319{bottom:924.400000pt;}
.y6_c00319{bottom:924.533333pt;}
.y43_c00319{bottom:940.133333pt;}
.y5_c00319{bottom:944.000000pt;}
.y42_c00319{bottom:955.866667pt;}
.y4_c00319{bottom:965.066667pt;}
.y41_c00319{bottom:979.200000pt;}
.y3_c00319{bottom:990.400000pt;}
.y40_c00319{bottom:991.066667pt;}
.y2_c00319{bottom:1014.400000pt;}
.y1_c00319{bottom:1015.066667pt;}
.h6_c00319{height:26.666667pt;}
.ha_c00319{height:37.333333pt;}
.h9_c00319{height:42.666667pt;}
.h8_c00319{height:48.000000pt;}
.h4_c00319{height:53.333333pt;}
.h5_c00319{height:58.666667pt;}
.h7_c00319{height:64.000000pt;}
.h2_c00319{height:69.333333pt;}
.h3_c00319{height:101.333333pt;}
.h1_c00319{height:1124.000000pt;}
.h0_c00319{height:1124.159993pt;}
.w1_c00319{width:854.666667pt;}
.w0_c00319{width:854.720052pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:153.866667pt;}
.xd_c00319{left:154.933333pt;}
.x88_c00319{left:155.866667pt;}
.x93_c00319{left:157.200000pt;}
.x9d_c00319{left:158.400000pt;}
.xaf_c00319{left:159.600000pt;}
.xb3_c00319{left:160.533333pt;}
.x26_c00319{left:167.066667pt;}
.x82_c00319{left:168.000000pt;}
.x6c_c00319{left:169.600000pt;}
.x13_c00319{left:171.600000pt;}
.xb1_c00319{left:173.066667pt;}
.x80_c00319{left:174.266667pt;}
.x51_c00319{left:175.200000pt;}
.xad_c00319{left:176.666667pt;}
.xaa_c00319{left:178.666667pt;}
.x20_c00319{left:181.866667pt;}
.x5e_c00319{left:184.000000pt;}
.x9_c00319{left:186.133333pt;}
.x27_c00319{left:187.600000pt;}
.x94_c00319{left:188.533333pt;}
.x21_c00319{left:189.600000pt;}
.x42_c00319{left:191.200000pt;}
.x36_c00319{left:193.200000pt;}
.x4c_c00319{left:194.266667pt;}
.xe_c00319{left:195.866667pt;}
.x8d_c00319{left:198.933333pt;}
.x37_c00319{left:199.866667pt;}
.x83_c00319{left:201.600000pt;}
.x71_c00319{left:204.400000pt;}
.x30_c00319{left:206.533333pt;}
.x3c_c00319{left:207.600000pt;}
.x38_c00319{left:209.200000pt;}
.x4d_c00319{left:210.933333pt;}
.x17_c00319{left:211.866667pt;}
.x97_c00319{left:213.733333pt;}
.x66_c00319{left:215.066667pt;}
.x90_c00319{left:216.000000pt;}
.x73_c00319{left:216.933333pt;}
.x52_c00319{left:218.133333pt;}
.x72_c00319{left:219.066667pt;}
.x3_c00319{left:220.133333pt;}
.x28_c00319{left:223.066667pt;}
.x7c_c00319{left:224.266667pt;}
.xa_c00319{left:225.466667pt;}
.x14_c00319{left:226.933333pt;}
.x8a_c00319{left:229.866667pt;}
.x57_c00319{left:231.066667pt;}
.x5f_c00319{left:232.000000pt;}
.x22_c00319{left:233.066667pt;}
.x3d_c00319{left:236.133333pt;}
.x86_c00319{left:239.066667pt;}
.x18_c00319{left:240.400000pt;}
.x7a_c00319{left:241.866667pt;}
.x8b_c00319{left:244.000000pt;}
.x7d_c00319{left:245.066667pt;}
.x95_c00319{left:246.800000pt;}
.x76_c00319{left:248.000000pt;}
.x43_c00319{left:249.333333pt;}
.x19_c00319{left:250.666667pt;}
.xb4_c00319{left:252.133333pt;}
.x5_c00319{left:253.200000pt;}
.xf_c00319{left:254.400000pt;}
.x98_c00319{left:255.333333pt;}
.x44_c00319{left:256.400000pt;}
.x15_c00319{left:257.333333pt;}
.x81_c00319{left:258.666667pt;}
.x29_c00319{left:260.133333pt;}
.x31_c00319{left:261.600000pt;}
.x6_c00319{left:262.533333pt;}
.x77_c00319{left:264.666667pt;}
.xab_c00319{left:265.600000pt;}
.x49_c00319{left:266.800000pt;}
.x58_c00319{left:268.800000pt;}
.x23_c00319{left:271.733333pt;}
.xc_c00319{left:273.733333pt;}
.x53_c00319{left:274.800000pt;}
.x8c_c00319{left:276.933333pt;}
.x9e_c00319{left:278.000000pt;}
.x24_c00319{left:279.466667pt;}
.x70_c00319{left:280.933333pt;}
.x87_c00319{left:282.266667pt;}
.x16_c00319{left:283.600000pt;}
.x7e_c00319{left:285.066667pt;}
.x1a_c00319{left:286.800000pt;}
.x3e_c00319{left:288.666667pt;}
.x74_c00319{left:290.533333pt;}
.xb0_c00319{left:292.800000pt;}
.x39_c00319{left:294.000000pt;}
.x60_c00319{left:296.000000pt;}
.x45_c00319{left:298.000000pt;}
.xa0_c00319{left:299.333333pt;}
.x2a_c00319{left:300.400000pt;}
.x1b_c00319{left:302.800000pt;}
.x59_c00319{left:303.733333pt;}
.x4a_c00319{left:305.600000pt;}
.x67_c00319{left:306.933333pt;}
.x32_c00319{left:308.000000pt;}
.x2b_c00319{left:309.733333pt;}
.x5a_c00319{left:311.066667pt;}
.x75_c00319{left:312.933333pt;}
.x25_c00319{left:314.666667pt;}
.xa5_c00319{left:316.266667pt;}
.x10_c00319{left:318.133333pt;}
.x54_c00319{left:319.333333pt;}
.xa8_c00319{left:320.533333pt;}
.x61_c00319{left:322.533333pt;}
.x4e_c00319{left:323.600000pt;}
.x5b_c00319{left:325.200000pt;}
.x4_c00319{left:326.400000pt;}
.x33_c00319{left:328.533333pt;}
.x7_c00319{left:329.466667pt;}
.x2c_c00319{left:331.866667pt;}
.x55_c00319{left:335.600000pt;}
.x99_c00319{left:336.933333pt;}
.x62_c00319{left:338.266667pt;}
.x8e_c00319{left:340.666667pt;}
.x1c_c00319{left:343.066667pt;}
.x46_c00319{left:344.000000pt;}
.x84_c00319{left:346.533333pt;}
.x6d_c00319{left:347.600000pt;}
.xa3_c00319{left:349.866667pt;}
.x2d_c00319{left:352.400000pt;}
.x9a_c00319{left:353.600000pt;}
.xa7_c00319{left:355.733333pt;}
.x3f_c00319{left:356.800000pt;}
.xa1_c00319{left:359.466667pt;}
.x8f_c00319{left:362.400000pt;}
.x78_c00319{left:364.266667pt;}
.x68_c00319{left:365.466667pt;}
.xb_c00319{left:366.533333pt;}
.x4f_c00319{left:368.133333pt;}
.x11_c00319{left:370.933333pt;}
.x6e_c00319{left:371.866667pt;}
.x2_c00319{left:373.066667pt;}
.x89_c00319{left:374.533333pt;}
.x69_c00319{left:376.000000pt;}
.x2e_c00319{left:378.666667pt;}
.x47_c00319{left:380.533333pt;}
.x4b_c00319{left:383.600000pt;}
.x7f_c00319{left:386.400000pt;}
.x85_c00319{left:388.133333pt;}
.x63_c00319{left:389.066667pt;}
.x1d_c00319{left:391.066667pt;}
.x9b_c00319{left:392.000000pt;}
.x9f_c00319{left:392.933333pt;}
.x91_c00319{left:394.400000pt;}
.x34_c00319{left:396.400000pt;}
.x50_c00319{left:397.600000pt;}
.xa6_c00319{left:399.466667pt;}
.x48_c00319{left:401.600000pt;}
.x40_c00319{left:403.466667pt;}
.x6a_c00319{left:404.800000pt;}
.x5c_c00319{left:406.133333pt;}
.x8_c00319{left:407.200000pt;}
.x6f_c00319{left:411.200000pt;}
.x79_c00319{left:412.666667pt;}
.x9c_c00319{left:414.133333pt;}
.x92_c00319{left:415.466667pt;}
.x64_c00319{left:418.533333pt;}
.x3a_c00319{left:420.000000pt;}
.x12_c00319{left:421.466667pt;}
.x1e_c00319{left:422.400000pt;}
.x35_c00319{left:424.266667pt;}
.x7b_c00319{left:425.866667pt;}
.x56_c00319{left:426.800000pt;}
.x6b_c00319{left:428.133333pt;}
.x96_c00319{left:429.333333pt;}
.x1f_c00319{left:431.733333pt;}
.xa9_c00319{left:432.800000pt;}
.xb5_c00319{left:434.133333pt;}
.x2f_c00319{left:435.333333pt;}
.x5d_c00319{left:436.800000pt;}
.x3b_c00319{left:437.866667pt;}
.xa4_c00319{left:439.466667pt;}
.x65_c00319{left:440.400000pt;}
.x41_c00319{left:442.133333pt;}
.xac_c00319{left:443.733333pt;}
.xa2_c00319{left:446.400000pt;}
.xae_c00319{left:452.400000pt;}
.xb2_c00319{left:453.333333pt;}
.x139_c00319{left:465.066667pt;}
.x108_c00319{left:472.666667pt;}
.x135_c00319{left:473.600000pt;}
.x155_c00319{left:475.600000pt;}
.x150_c00319{left:486.400000pt;}
.xbe_c00319{left:487.733333pt;}
.x10e_c00319{left:488.666667pt;}
.x149_c00319{left:489.600000pt;}
.x151_c00319{left:493.066667pt;}
.xde_c00319{left:496.933333pt;}
.x13c_c00319{left:498.533333pt;}
.xb6_c00319{left:503.733333pt;}
.xd6_c00319{left:504.666667pt;}
.x11a_c00319{left:505.600000pt;}
.x14b_c00319{left:507.866667pt;}
.x136_c00319{left:510.133333pt;}
.xf6_c00319{left:511.066667pt;}
.xd0_c00319{left:512.800000pt;}
.x128_c00319{left:515.333333pt;}
.x118_c00319{left:516.800000pt;}
.xcd_c00319{left:517.866667pt;}
.x12c_c00319{left:518.800000pt;}
.xe5_c00319{left:520.000000pt;}
.x105_c00319{left:521.866667pt;}
.x11e_c00319{left:523.066667pt;}
.x109_c00319{left:524.800000pt;}
.xc5_c00319{left:526.400000pt;}
.x152_c00319{left:527.333333pt;}
.xf2_c00319{left:528.266667pt;}
.x114_c00319{left:529.600000pt;}
.x111_c00319{left:531.866667pt;}
.x10f_c00319{left:532.800000pt;}
.xd7_c00319{left:533.733333pt;}
.xe7_c00319{left:537.200000pt;}
.xfd_c00319{left:538.666667pt;}
.xdf_c00319{left:541.733333pt;}
.xf7_c00319{left:543.066667pt;}
.x115_c00319{left:544.000000pt;}
.xe8_c00319{left:545.466667pt;}
.x100_c00319{left:547.466667pt;}
.xee_c00319{left:548.400000pt;}
.xce_c00319{left:549.600000pt;}
.xe0_c00319{left:553.600000pt;}
.xbf_c00319{left:554.666667pt;}
.x129_c00319{left:556.266667pt;}
.x11f_c00319{left:558.533333pt;}
.xb7_c00319{left:560.000000pt;}
.xb8_c00319{left:562.533333pt;}
.x142_c00319{left:565.333333pt;}
.xd8_c00319{left:566.666667pt;}
.xef_c00319{left:567.600000pt;}
.x106_c00319{left:570.133333pt;}
.x12d_c00319{left:571.733333pt;}
.x124_c00319{left:573.600000pt;}
.x116_c00319{left:575.066667pt;}
.x12a_c00319{left:576.800000pt;}
.xe9_c00319{left:579.066667pt;}
.x11b_c00319{left:581.466667pt;}
.xd9_c00319{left:582.400000pt;}
.x107_c00319{left:585.466667pt;}
.xfe_c00319{left:586.666667pt;}
.x13f_c00319{left:589.066667pt;}
.x10a_c00319{left:590.400000pt;}
.xb9_c00319{left:591.333333pt;}
.x117_c00319{left:592.666667pt;}
.xf3_c00319{left:593.600000pt;}
.xc6_c00319{left:594.933333pt;}
.x145_c00319{left:596.533333pt;}
.xdc_c00319{left:597.466667pt;}
.x14a_c00319{left:598.666667pt;}
.x12e_c00319{left:599.600000pt;}
.x101_c00319{left:601.866667pt;}
.x10b_c00319{left:604.800000pt;}
.xd1_c00319{left:606.266667pt;}
.xf8_c00319{left:610.933333pt;}
.xf4_c00319{left:611.866667pt;}
.xdd_c00319{left:612.800000pt;}
.x13a_c00319{left:614.133333pt;}
.xe6_c00319{left:615.600000pt;}
.xea_c00319{left:617.200000pt;}
.xba_c00319{left:618.800000pt;}
.xf0_c00319{left:620.666667pt;}
.x125_c00319{left:623.866667pt;}
.xf9_c00319{left:625.066667pt;}
.x14c_c00319{left:626.933333pt;}
.x12f_c00319{left:628.800000pt;}
.x110_c00319{left:630.266667pt;}
.xe1_c00319{left:632.000000pt;}
.xc7_c00319{left:634.266667pt;}
.x10c_c00319{left:636.133333pt;}
.x143_c00319{left:637.333333pt;}
.xd2_c00319{left:638.933333pt;}
.xda_c00319{left:640.266667pt;}
.x119_c00319{left:642.933333pt;}
.x130_c00319{left:643.866667pt;}
.x11c_c00319{left:644.800000pt;}
.x140_c00319{left:646.000000pt;}
.x120_c00319{left:648.266667pt;}
.xbb_c00319{left:649.466667pt;}
.xc8_c00319{left:651.600000pt;}
.x153_c00319{left:654.400000pt;}
.xeb_c00319{left:656.933333pt;}
.xd3_c00319{left:657.866667pt;}
.xc0_c00319{left:659.333333pt;}
.x144_c00319{left:660.400000pt;}
.x126_c00319{left:664.133333pt;}
.x141_c00319{left:665.200000pt;}
.x11d_c00319{left:667.466667pt;}
.xf5_c00319{left:669.466667pt;}
.x131_c00319{left:671.333333pt;}
.xd4_c00319{left:674.533333pt;}
.x13b_c00319{left:677.066667pt;}
.xfa_c00319{left:679.733333pt;}
.x147_c00319{left:680.666667pt;}
.xc1_c00319{left:681.733333pt;}
.x146_c00319{left:683.333333pt;}
.xe2_c00319{left:684.533333pt;}
.xff_c00319{left:686.933333pt;}
.x121_c00319{left:689.200000pt;}
.xec_c00319{left:690.800000pt;}
.xc9_c00319{left:692.266667pt;}
.x132_c00319{left:694.000000pt;}
.x112_c00319{left:695.066667pt;}
.xdb_c00319{left:696.266667pt;}
.xfb_c00319{left:698.266667pt;}
.xbc_c00319{left:700.933333pt;}
.xc2_c00319{left:702.800000pt;}
.x14e_c00319{left:703.866667pt;}
.xcf_c00319{left:706.000000pt;}
.x13d_c00319{left:707.466667pt;}
.x122_c00319{left:708.666667pt;}
.x102_c00319{left:709.733333pt;}
.xca_c00319{left:711.466667pt;}
.x113_c00319{left:714.533333pt;}
.xd5_c00319{left:716.133333pt;}
.x133_c00319{left:717.066667pt;}
.x12b_c00319{left:721.066667pt;}
.x148_c00319{left:723.866667pt;}
.x103_c00319{left:725.066667pt;}
.x134_c00319{left:726.400000pt;}
.x123_c00319{left:728.133333pt;}
.xbd_c00319{left:729.066667pt;}
.xed_c00319{left:730.133333pt;}
.xe3_c00319{left:731.866667pt;}
.xf1_c00319{left:733.600000pt;}
.x127_c00319{left:735.466667pt;}
.xc3_c00319{left:737.066667pt;}
.xfc_c00319{left:739.200000pt;}
.x154_c00319{left:740.533333pt;}
.x104_c00319{left:743.333333pt;}
.x10d_c00319{left:744.933333pt;}
.xc4_c00319{left:748.533333pt;}
.xe4_c00319{left:751.333333pt;}
.x14d_c00319{left:755.333333pt;}
.xcb_c00319{left:756.266667pt;}
.x138_c00319{left:757.600000pt;}
.x13e_c00319{left:760.266667pt;}
.x14f_c00319{left:761.200000pt;}
.xcc_c00319{left:765.866667pt;}
.x137_c00319{left:778.666667pt;}
}





/* 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_c00320 {
    display:none;
  }
  .loading-indicator_c00320.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00320 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_c00320 { 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_c00320" -> "#page-container .classname_c00320")
 */
.pf_c00320 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00320 { /* 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_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00320 { /* 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_c00320 { /* 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_c00320 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00320 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00320 {overflow:visible;}
  }
}
.c_c00320 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00320 { /* 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_c00320:after { /* webkit #35443 */
  content: '';
}
.t_c00320:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00320 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 */
}
.__c00320 { /* 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_c00320 { /* info for Javascript */
  display:none;
}
.l_c00320 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00320 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00320 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00320: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_c00320 {
    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_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00320.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_c00320 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00320;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.000000;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;}
.m117_c00320{transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00320{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m110_c00320{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00320{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00320{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m118_c00320{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00320{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00320{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.med_c00320{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m104_c00320{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00320{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00320{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00320{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00320{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m30_c00320{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m114_c00320{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00320{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00320{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m48_c00320{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00320{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m10_c00320{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m119_c00320{transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);}
.m40_c00320{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00320{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00320{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00320{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00320{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m98_c00320{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00320{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00320{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00320{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m101_c00320{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m115_c00320{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.md0_c00320{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00320{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.maf_c00320{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m96_c00320{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m53_c00320{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m61_c00320{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00320{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00320{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00320{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m15_c00320{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00320{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me5_c00320{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m105_c00320{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m64_c00320{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00320{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m25_c00320{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00320{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m77_c00320{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00320{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mac_c00320{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md4_c00320{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m84_c00320{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m35_c00320{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00320{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00320{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m97_c00320{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m39_c00320{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00320{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m67_c00320{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me6_c00320{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m102_c00320{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2_c00320{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mab_c00320{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m33_c00320{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mba_c00320{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00320{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m4_c00320{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00320{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00320{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mec_c00320{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m50_c00320{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mff_c00320{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m106_c00320{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m45_c00320{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m103_c00320{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00320{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m7_c00320{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m29_c00320{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00320{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00320{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00320{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m113_c00320{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00320{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00320{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m90_c00320{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00320{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00320{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf_c00320{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m94_c00320{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00320{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00320{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc_c00320{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00320{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m82_c00320{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00320{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00320{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m52_c00320{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00320{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00320{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m63_c00320{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m8_c00320{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m54_c00320{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00320{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00320{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00320{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00320{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00320{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m42_c00320{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m26_c00320{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mae_c00320{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00320{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m75_c00320{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00320{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00320{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m69_c00320{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00320{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m24_c00320{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m22_c00320{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mce_c00320{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00320{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00320{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00320{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb_c00320{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00320{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m32_c00320{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m20_c00320{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m27_c00320{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00320{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00320{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m83_c00320{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma_c00320{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00320{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00320{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m95_c00320{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00320{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m41_c00320{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m62_c00320{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mef_c00320{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me0_c00320{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me8_c00320{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00320{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m71_c00320{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00320{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me7_c00320{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00320{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00320{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m14_c00320{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m23_c00320{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00320{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00320{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m65_c00320{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m60_c00320{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5_c00320{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00320{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00320{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m44_c00320{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00320{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6_c00320{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m36_c00320{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00320{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mad_c00320{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mca_c00320{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00320{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m51_c00320{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00320{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00320{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00320{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00320{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m86_c00320{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m58_c00320{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00320{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00320{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m49_c00320{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00320{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00320{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00320{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00320{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m28_c00320{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00320{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m116_c00320{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9_c00320{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m74_c00320{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md_c00320{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mde_c00320{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m99_c00320{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00320{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m87_c00320{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m47_c00320{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mee_c00320{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00320{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m91_c00320{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m31_c00320{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m85_c00320{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md5_c00320{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.me4_c00320{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m16_c00320{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m56_c00320{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m43_c00320{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00320{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00320{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00320{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mea_c00320{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00320{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m13_c00320{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m17_c00320{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m37_c00320{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00320{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md6_c00320{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.meb_c00320{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md2_c00320{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m34_c00320{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m38_c00320{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00320{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m111_c00320{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00320{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m93_c00320{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00320{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m68_c00320{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m79_c00320{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00320{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.maa_c00320{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00320{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00320{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00320{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m66_c00320{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00320{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me_c00320{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00320{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me3_c00320{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me1_c00320{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00320{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00320{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);}
.m72_c00320{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m108_c00320{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m59_c00320{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00320{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m78_c00320{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m81_c00320{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md3_c00320{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00320{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m21_c00320{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m107_c00320{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00320{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m73_c00320{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.me9_c00320{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00320{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md8_c00320{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m92_c00320{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m112_c00320{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m12_c00320{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m100_c00320{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00320{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m88_c00320{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m46_c00320{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00320{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m89_c00320{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m57_c00320{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.me2_c00320{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m109_c00320{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m80_c00320{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00320{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00320{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m19_c00320{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.md1_c00320{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00320{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mda_c00320{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00320{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m70_c00320{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m76_c00320{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m55_c00320{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00320{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md9_c00320{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.md7_c00320{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m11_c00320{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00320{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00320{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00320{transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(0.380750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00320{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00320{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00320{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls0_c00320{letter-spacing:0.000000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{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__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00320{word-spacing:-15.671533px;}
.ws6_c00320{word-spacing:-5.833333px;}
.ws4_c00320{word-spacing:-5.526316px;}
.ws9_c00320{word-spacing:0.000000px;}
.ws0_c00320{word-spacing:1.295858px;}
.ws7_c00320{word-spacing:4.630350px;}
.ws5_c00320{word-spacing:5.942675px;}
.ws3_c00320{word-spacing:23.211796px;}
.ws1_c00320{word-spacing:25.714286px;}
.ws2_c00320{word-spacing:40.000000px;}
._1_c00320{width:54.307393px;}
._0_c00320{width:59.285714px;}
.fc0_c00320{color:transparent;}
.fs5_c00320{font-size:54.000000px;}
.fs3_c00320{font-size:60.000000px;}
.fs2_c00320{font-size:66.000000px;}
.fs4_c00320{font-size:72.000000px;}
.fs1_c00320{font-size:78.000000px;}
.fs0_c00320{font-size:90.000000px;}
.y0_c00320{bottom:0.000000px;}
.y67_c00320{bottom:195.000000px;}
.y35_c00320{bottom:195.300000px;}
.y66_c00320{bottom:212.700000px;}
.y34_c00320{bottom:213.600000px;}
.y33_c00320{bottom:231.600000px;}
.y65_c00320{bottom:234.750000px;}
.y64_c00320{bottom:249.150000px;}
.y32_c00320{bottom:249.600000px;}
.y63_c00320{bottom:255.300000px;}
.y62_c00320{bottom:263.550000px;}
.y31_c00320{bottom:267.300000px;}
.y30_c00320{bottom:285.000000px;}
.y61_c00320{bottom:289.950000px;}
.y2f_c00320{bottom:302.700000px;}
.y60_c00320{bottom:311.850000px;}
.y2e_c00320{bottom:320.700000px;}
.y2d_c00320{bottom:338.700000px;}
.y5f_c00320{bottom:343.500000px;}
.y5e_c00320{bottom:356.100000px;}
.y2c_c00320{bottom:356.400000px;}
.y2b_c00320{bottom:376.950000px;}
.y5d_c00320{bottom:384.150000px;}
.y2a_c00320{bottom:391.350000px;}
.y5c_c00320{bottom:402.450000px;}
.y29_c00320{bottom:405.750000px;}
.y28_c00320{bottom:420.150000px;}
.y5b_c00320{bottom:423.750000px;}
.y27_c00320{bottom:435.600000px;}
.y5a_c00320{bottom:445.650000px;}
.y26_c00320{bottom:453.900000px;}
.y59_c00320{bottom:463.650000px;}
.y25_c00320{bottom:471.900000px;}
.y58_c00320{bottom:481.350000px;}
.y24_c00320{bottom:493.650000px;}
.y57_c00320{bottom:503.100000px;}
.y23_c00320{bottom:511.950000px;}
.y56_c00320{bottom:521.100000px;}
.y22_c00320{bottom:529.950000px;}
.y55_c00320{bottom:538.800000px;}
.y21_c00320{bottom:551.850000px;}
.y54_c00320{bottom:556.500000px;}
.y20_c00320{bottom:569.550000px;}
.y53_c00320{bottom:574.500000px;}
.y52_c00320{bottom:592.200000px;}
.y1f_c00320{bottom:596.100000px;}
.y51_c00320{bottom:609.900000px;}
.y1e_c00320{bottom:614.100000px;}
.y50_c00320{bottom:627.900000px;}
.y1d_c00320{bottom:632.100000px;}
.y4f_c00320{bottom:645.900000px;}
.y1c_c00320{bottom:649.800000px;}
.y4e_c00320{bottom:663.600000px;}
.y1b_c00320{bottom:671.400000px;}
.y4d_c00320{bottom:681.300000px;}
.y1a_c00320{bottom:689.700000px;}
.y4c_c00320{bottom:699.000000px;}
.y19_c00320{bottom:707.700000px;}
.y4b_c00320{bottom:716.700000px;}
.y18_c00320{bottom:728.550000px;}
.y4a_c00320{bottom:737.250000px;}
.y17_c00320{bottom:747.300000px;}
.y49_c00320{bottom:751.350000px;}
.y16_c00320{bottom:765.000000px;}
.y48_c00320{bottom:771.450000px;}
.y15_c00320{bottom:783.000000px;}
.y47_c00320{bottom:789.450000px;}
.y14_c00320{bottom:800.250000px;}
.y46_c00320{bottom:811.350000px;}
.y13_c00320{bottom:818.250000px;}
.y12_c00320{bottom:835.500000px;}
.y45_c00320{bottom:841.200000px;}
.y44_c00320{bottom:848.100000px;}
.y11_c00320{bottom:853.200000px;}
.y43_c00320{bottom:868.650000px;}
.y10_c00320{bottom:870.900000px;}
.y42_c00320{bottom:885.900000px;}
.yf_c00320{bottom:892.200000px;}
.ye_c00320{bottom:910.500000px;}
.y41_c00320{bottom:912.150000px;}
.y40_c00320{bottom:930.150000px;}
.yd_c00320{bottom:932.550000px;}
.y3f_c00320{bottom:947.850000px;}
.yc_c00320{bottom:950.250000px;}
.yb_c00320{bottom:968.250000px;}
.y3e_c00320{bottom:969.900000px;}
.ya_c00320{bottom:985.500000px;}
.y3d_c00320{bottom:991.200000px;}
.y9_c00320{bottom:1003.200000px;}
.y3c_c00320{bottom:1009.200000px;}
.y8_c00320{bottom:1020.900000px;}
.y3b_c00320{bottom:1026.900000px;}
.y7_c00320{bottom:1043.100000px;}
.y3a_c00320{bottom:1044.600000px;}
.y6_c00320{bottom:1061.100000px;}
.y39_c00320{bottom:1062.300000px;}
.y5_c00320{bottom:1078.800000px;}
.y38_c00320{bottom:1080.000000px;}
.y4_c00320{bottom:1096.800000px;}
.y37_c00320{bottom:1097.250000px;}
.y3_c00320{bottom:1114.500000px;}
.y36_c00320{bottom:1115.250000px;}
.y2_c00320{bottom:1139.400000px;}
.y1_c00320{bottom:1141.500000px;}
.h7_c00320{height:54.000000px;}
.h5_c00320{height:60.000000px;}
.h4_c00320{height:66.000000px;}
.h6_c00320{height:72.000000px;}
.h3_c00320{height:78.000000px;}
.h2_c00320{height:90.000000px;}
.h0_c00320{height:1267.919952px;}
.h1_c00320{height:1268.250000px;}
.w1_c00320{width:961.500000px;}
.w0_c00320{width:961.560058px;}
.x0_c00320{left:0.000000px;}
.x4c_c00320{left:68.700000px;}
.x84_c00320{left:83.850000px;}
.x2b_c00320{left:85.200000px;}
.x34_c00320{left:87.150000px;}
.x4_c00320{left:88.200000px;}
.x76_c00320{left:89.250000px;}
.x9d_c00320{left:93.450000px;}
.x8b_c00320{left:98.250000px;}
.x26_c00320{left:104.100000px;}
.x46_c00320{left:106.200000px;}
.x61_c00320{left:109.800000px;}
.x85_c00320{left:112.650000px;}
.x3c_c00320{left:113.700000px;}
.x41_c00320{left:114.750000px;}
.x53_c00320{left:117.600000px;}
.x2c_c00320{left:122.250000px;}
.x15_c00320{left:125.250000px;}
.x5d_c00320{left:126.450000px;}
.x4d_c00320{left:128.850000px;}
.x81_c00320{left:129.900000px;}
.x47_c00320{left:131.400000px;}
.x38_c00320{left:132.600000px;}
.x5_c00320{left:134.700000px;}
.x9a_c00320{left:136.050000px;}
.x1_c00320{left:137.850000px;}
.xd_c00320{left:139.050000px;}
.x1c_c00320{left:142.050000px;}
.x16_c00320{left:143.550000px;}
.x5e_c00320{left:144.750000px;}
.x4e_c00320{left:146.100000px;}
.x27_c00320{left:148.050000px;}
.x6f_c00320{left:149.400000px;}
.x6_c00320{left:153.750000px;}
.x9b_c00320{left:155.100000px;}
.x62_c00320{left:156.300000px;}
.x2d_c00320{left:157.500000px;}
.x3d_c00320{left:158.700000px;}
.x1d_c00320{left:160.800000px;}
.x57_c00320{left:163.050000px;}
.x69_c00320{left:164.550000px;}
.x94_c00320{left:165.600000px;}
.x28_c00320{left:166.800000px;}
.x48_c00320{left:168.150000px;}
.x42_c00320{left:169.500000px;}
.x70_c00320{left:172.500000px;}
.x97_c00320{left:174.900000px;}
.x86_c00320{left:176.100000px;}
.x88_c00320{left:177.150000px;}
.x4a_c00320{left:179.550000px;}
.x8c_c00320{left:183.900000px;}
.x72_c00320{left:185.550000px;}
.x21_c00320{left:188.700000px;}
.x7_c00320{left:189.750000px;}
.x8e_c00320{left:190.800000px;}
.xe_c00320{left:192.000000px;}
.x54_c00320{left:193.500000px;}
.x63_c00320{left:195.600000px;}
.x58_c00320{left:198.000000px;}
.x73_c00320{left:202.500000px;}
.x2e_c00320{left:204.000000px;}
.x22_c00320{left:206.400000px;}
.x7d_c00320{left:209.100000px;}
.x39_c00320{left:210.750000px;}
.xf_c00320{left:211.800000px;}
.x43_c00320{left:213.000000px;}
.x17_c00320{left:214.800000px;}
.x2f_c00320{left:216.900000px;}
.x91_c00320{left:217.950000px;}
.x35_c00320{left:219.450000px;}
.x77_c00320{left:222.000000px;}
.x87_c00320{left:224.400000px;}
.x8_c00320{left:226.050000px;}
.x4b_c00320{left:227.400000px;}
.x59_c00320{left:230.400000px;}
.x1e_c00320{left:231.750000px;}
.x44_c00320{left:233.550000px;}
.x3a_c00320{left:235.950000px;}
.x78_c00320{left:238.500000px;}
.x18_c00320{left:239.700000px;}
.x89_c00320{left:241.950000px;}
.x5f_c00320{left:243.750000px;}
.x9e_c00320{left:247.950000px;}
.x8d_c00320{left:249.000000px;}
.x45_c00320{left:250.050000px;}
.x3e_c00320{left:252.000000px;}
.x92_c00320{left:253.650000px;}
.x1f_c00320{left:254.850000px;}
.x8a_c00320{left:256.650000px;}
.x23_c00320{left:257.850000px;}
.x71_c00320{left:258.900000px;}
.x9_c00320{left:261.300000px;}
.x67_c00320{left:263.250000px;}
.x4f_c00320{left:265.950000px;}
.x30_c00320{left:267.300000px;}
.x7a_c00320{left:269.850000px;}
.x64_c00320{left:271.800000px;}
.x29_c00320{left:273.000000px;}
.x6c_c00320{left:274.050000px;}
.x24_c00320{left:275.100000px;}
.x90_c00320{left:276.150000px;}
.x10_c00320{left:277.650000px;}
.x9c_c00320{left:279.300000px;}
.x11_c00320{left:285.900000px;}
.x5a_c00320{left:286.950000px;}
.x7b_c00320{left:290.400000px;}
.x50_c00320{left:291.450000px;}
.x55_c00320{left:295.050000px;}
.x6d_c00320{left:296.400000px;}
.x60_c00320{left:297.750000px;}
.x80_c00320{left:299.850000px;}
.x7e_c00320{left:301.350000px;}
.x31_c00320{left:305.400000px;}
.x96_c00320{left:306.600000px;}
.x93_c00320{left:308.400000px;}
.x2_c00320{left:309.600000px;}
.xa_c00320{left:310.950000px;}
.x19_c00320{left:312.750000px;}
.x6a_c00320{left:314.700000px;}
.x98_c00320{left:316.050000px;}
.x65_c00320{left:317.100000px;}
.x7c_c00320{left:319.650000px;}
.x3f_c00320{left:321.150000px;}
.x9f_c00320{left:322.200000px;}
.x51_c00320{left:323.550000px;}
.x82_c00320{left:325.500000px;}
.x25_c00320{left:327.000000px;}
.x36_c00320{left:328.500000px;}
.x5b_c00320{left:329.850000px;}
.xb_c00320{left:331.050000px;}
.x74_c00320{left:332.100000px;}
.x3b_c00320{left:333.600000px;}
.x7f_c00320{left:337.050000px;}
.x12_c00320{left:339.150000px;}
.x75_c00320{left:343.650000px;}
.x8f_c00320{left:346.950000px;}
.x95_c00320{left:348.450000px;}
.x52_c00320{left:349.800000px;}
.x49_c00320{left:351.300000px;}
.x2a_c00320{left:353.400000px;}
.x56_c00320{left:355.950000px;}
.x66_c00320{left:357.900000px;}
.x32_c00320{left:359.700000px;}
.x13_c00320{left:360.750000px;}
.x5c_c00320{left:362.550000px;}
.x20_c00320{left:364.350000px;}
.x1a_c00320{left:370.350000px;}
.x99_c00320{left:372.300000px;}
.x6e_c00320{left:373.500000px;}
.x6b_c00320{left:376.650000px;}
.x14_c00320{left:379.800000px;}
.x68_c00320{left:381.000000px;}
.x33_c00320{left:382.350000px;}
.xc_c00320{left:385.050000px;}
.x37_c00320{left:389.250000px;}
.x83_c00320{left:390.300000px;}
.x40_c00320{left:393.450000px;}
.x1b_c00320{left:394.500000px;}
.x79_c00320{left:401.250000px;}
.x127_c00320{left:419.550000px;}
.xca_c00320{left:424.500000px;}
.x11a_c00320{left:425.850000px;}
.xea_c00320{left:439.050000px;}
.xa0_c00320{left:442.800000px;}
.x129_c00320{left:443.850000px;}
.x128_c00320{left:448.500000px;}
.xd8_c00320{left:459.450000px;}
.x120_c00320{left:460.950000px;}
.xf1_c00320{left:462.000000px;}
.xa1_c00320{left:464.700000px;}
.x113_c00320{left:466.350000px;}
.xd4_c00320{left:467.700000px;}
.xe2_c00320{left:469.800000px;}
.xfe_c00320{left:472.950000px;}
.xf5_c00320{left:477.150000px;}
.xad_c00320{left:478.650000px;}
.x10a_c00320{left:479.850000px;}
.xc9_c00320{left:481.350000px;}
.xf9_c00320{left:482.700000px;}
.xcb_c00320{left:483.900000px;}
.x119_c00320{left:485.850000px;}
.xe1_c00320{left:488.700000px;}
.x11b_c00320{left:490.050000px;}
.xbd_c00320{left:492.900000px;}
.xcc_c00320{left:496.200000px;}
.xa2_c00320{left:500.700000px;}
.x10f_c00320{left:503.550000px;}
.xc2_c00320{left:504.750000px;}
.x10c_c00320{left:506.400000px;}
.x121_c00320{left:507.450000px;}
.xb2_c00320{left:509.700000px;}
.xec_c00320{left:511.800000px;}
.xa8_c00320{left:514.050000px;}
.xb6_c00320{left:518.550000px;}
.x114_c00320{left:520.350000px;}
.x117_c00320{left:521.550000px;}
.x122_c00320{left:522.600000px;}
.xe6_c00320{left:523.800000px;}
.xdc_c00320{left:525.450000px;}
.x10b_c00320{left:526.650000px;}
.x106_c00320{left:528.900000px;}
.xbe_c00320{left:533.250000px;}
.xcd_c00320{left:536.850000px;}
.x12a_c00320{left:540.000000px;}
.xd9_c00320{left:541.200000px;}
.xe7_c00320{left:542.850000px;}
.xc3_c00320{left:544.350000px;}
.xfa_c00320{left:546.450000px;}
.x101_c00320{left:547.500000px;}
.xb3_c00320{left:549.300000px;}
.xa3_c00320{left:551.850000px;}
.xa9_c00320{left:552.900000px;}
.x104_c00320{left:557.700000px;}
.xae_c00320{left:558.900000px;}
.xc4_c00320{left:560.250000px;}
.x107_c00320{left:561.300000px;}
.xd0_c00320{left:564.450000px;}
.xb7_c00320{left:565.650000px;}
.x112_c00320{left:566.700000px;}
.x123_c00320{left:567.750000px;}
.x118_c00320{left:570.150000px;}
.xa4_c00320{left:573.750000px;}
.xf6_c00320{left:575.850000px;}
.xf2_c00320{left:577.800000px;}
.xed_c00320{left:579.450000px;}
.xc5_c00320{left:585.150000px;}
.xff_c00320{left:587.400000px;}
.xce_c00320{left:589.050000px;}
.xbf_c00320{left:593.400000px;}
.x115_c00320{left:595.950000px;}
.x12b_c00320{left:597.300000px;}
.xf3_c00320{left:598.650000px;}
.x105_c00320{left:599.850000px;}
.xc6_c00320{left:601.650000px;}
.xb4_c00320{left:605.550000px;}
.xd5_c00320{left:609.600000px;}
.x110_c00320{left:610.800000px;}
.xfb_c00320{left:613.350000px;}
.xdd_c00320{left:615.750000px;}
.x10d_c00320{left:617.700000px;}
.xaf_c00320{left:619.050000px;}
.xb8_c00320{left:620.400000px;}
.x100_c00320{left:622.350000px;}
.xe3_c00320{left:625.050000px;}
.xee_c00320{left:626.250000px;}
.xaa_c00320{left:629.100000px;}
.x10e_c00320{left:631.350000px;}
.x116_c00320{left:632.700000px;}
.x124_c00320{left:639.300000px;}
.xeb_c00320{left:640.650000px;}
.xe8_c00320{left:642.150000px;}
.xd1_c00320{left:643.200000px;}
.xb0_c00320{left:644.250000px;}
.xc0_c00320{left:647.400000px;}
.xb5_c00320{left:648.450000px;}
.xa5_c00320{left:650.400000px;}
.xf4_c00320{left:652.350000px;}
.xef_c00320{left:656.550000px;}
.xde_c00320{left:657.900000px;}
.xa6_c00320{left:660.150000px;}
.xb9_c00320{left:661.800000px;}
.xc7_c00320{left:663.600000px;}
.xd2_c00320{left:665.550000px;}
.x108_c00320{left:668.250000px;}
.xe9_c00320{left:669.450000px;}
.xba_c00320{left:671.850000px;}
.xab_c00320{left:674.100000px;}
.xd6_c00320{left:676.950000px;}
.xd7_c00320{left:678.750000px;}
.xfc_c00320{left:682.050000px;}
.x111_c00320{left:684.300000px;}
.x102_c00320{left:685.650000px;}
.xc1_c00320{left:693.450000px;}
.x11c_c00320{left:695.100000px;}
.xdf_c00320{left:696.450000px;}
.xf7_c00320{left:700.200000px;}
.xd3_c00320{left:703.650000px;}
.xe4_c00320{left:705.000000px;}
.xbb_c00320{left:706.350000px;}
.xfd_c00320{left:709.800000px;}
.x11d_c00320{left:711.600000px;}
.xda_c00320{left:714.750000px;}
.xcf_c00320{left:717.150000px;}
.x11f_c00320{left:720.150000px;}
.x109_c00320{left:721.800000px;}
.xb1_c00320{left:723.150000px;}
.xf0_c00320{left:724.200000px;}
.x125_c00320{left:727.050000px;}
.xc8_c00320{left:728.700000px;}
.xbc_c00320{left:730.800000px;}
.x3_c00320{left:731.850000px;}
.x103_c00320{left:733.200000px;}
.xf8_c00320{left:735.900000px;}
.xac_c00320{left:737.100000px;}
.xa7_c00320{left:739.650000px;}
.xe0_c00320{left:741.450000px;}
.x11e_c00320{left:745.800000px;}
.xe5_c00320{left:748.200000px;}
.xdb_c00320{left:755.100000px;}
.x126_c00320{left:756.150000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.ws8_c00320{word-spacing:-13.930251pt;}
.ws6_c00320{word-spacing:-5.185185pt;}
.ws4_c00320{word-spacing:-4.912281pt;}
.ws9_c00320{word-spacing:0.000000pt;}
.ws0_c00320{word-spacing:1.151874pt;}
.ws7_c00320{word-spacing:4.115867pt;}
.ws5_c00320{word-spacing:5.282378pt;}
.ws3_c00320{word-spacing:20.632708pt;}
.ws1_c00320{word-spacing:22.857143pt;}
.ws2_c00320{word-spacing:35.555556pt;}
._1_c00320{width:48.273238pt;}
._0_c00320{width:52.698413pt;}
.fs5_c00320{font-size:48.000000pt;}
.fs3_c00320{font-size:53.333333pt;}
.fs2_c00320{font-size:58.666667pt;}
.fs4_c00320{font-size:64.000000pt;}
.fs1_c00320{font-size:69.333333pt;}
.fs0_c00320{font-size:80.000000pt;}
.y0_c00320{bottom:0.000000pt;}
.y67_c00320{bottom:173.333333pt;}
.y35_c00320{bottom:173.600000pt;}
.y66_c00320{bottom:189.066667pt;}
.y34_c00320{bottom:189.866667pt;}
.y33_c00320{bottom:205.866667pt;}
.y65_c00320{bottom:208.666667pt;}
.y64_c00320{bottom:221.466667pt;}
.y32_c00320{bottom:221.866667pt;}
.y63_c00320{bottom:226.933333pt;}
.y62_c00320{bottom:234.266667pt;}
.y31_c00320{bottom:237.600000pt;}
.y30_c00320{bottom:253.333333pt;}
.y61_c00320{bottom:257.733333pt;}
.y2f_c00320{bottom:269.066667pt;}
.y60_c00320{bottom:277.200000pt;}
.y2e_c00320{bottom:285.066667pt;}
.y2d_c00320{bottom:301.066667pt;}
.y5f_c00320{bottom:305.333333pt;}
.y5e_c00320{bottom:316.533333pt;}
.y2c_c00320{bottom:316.800000pt;}
.y2b_c00320{bottom:335.066667pt;}
.y5d_c00320{bottom:341.466667pt;}
.y2a_c00320{bottom:347.866667pt;}
.y5c_c00320{bottom:357.733333pt;}
.y29_c00320{bottom:360.666667pt;}
.y28_c00320{bottom:373.466667pt;}
.y5b_c00320{bottom:376.666667pt;}
.y27_c00320{bottom:387.200000pt;}
.y5a_c00320{bottom:396.133333pt;}
.y26_c00320{bottom:403.466667pt;}
.y59_c00320{bottom:412.133333pt;}
.y25_c00320{bottom:419.466667pt;}
.y58_c00320{bottom:427.866667pt;}
.y24_c00320{bottom:438.800000pt;}
.y57_c00320{bottom:447.200000pt;}
.y23_c00320{bottom:455.066667pt;}
.y56_c00320{bottom:463.200000pt;}
.y22_c00320{bottom:471.066667pt;}
.y55_c00320{bottom:478.933333pt;}
.y21_c00320{bottom:490.533333pt;}
.y54_c00320{bottom:494.666667pt;}
.y20_c00320{bottom:506.266667pt;}
.y53_c00320{bottom:510.666667pt;}
.y52_c00320{bottom:526.400000pt;}
.y1f_c00320{bottom:529.866667pt;}
.y51_c00320{bottom:542.133333pt;}
.y1e_c00320{bottom:545.866667pt;}
.y50_c00320{bottom:558.133333pt;}
.y1d_c00320{bottom:561.866667pt;}
.y4f_c00320{bottom:574.133333pt;}
.y1c_c00320{bottom:577.600000pt;}
.y4e_c00320{bottom:589.866667pt;}
.y1b_c00320{bottom:596.800000pt;}
.y4d_c00320{bottom:605.600000pt;}
.y1a_c00320{bottom:613.066667pt;}
.y4c_c00320{bottom:621.333333pt;}
.y19_c00320{bottom:629.066667pt;}
.y4b_c00320{bottom:637.066667pt;}
.y18_c00320{bottom:647.600000pt;}
.y4a_c00320{bottom:655.333333pt;}
.y17_c00320{bottom:664.266667pt;}
.y49_c00320{bottom:667.866667pt;}
.y16_c00320{bottom:680.000000pt;}
.y48_c00320{bottom:685.733333pt;}
.y15_c00320{bottom:696.000000pt;}
.y47_c00320{bottom:701.733333pt;}
.y14_c00320{bottom:711.333333pt;}
.y46_c00320{bottom:721.200000pt;}
.y13_c00320{bottom:727.333333pt;}
.y12_c00320{bottom:742.666667pt;}
.y45_c00320{bottom:747.733333pt;}
.y44_c00320{bottom:753.866667pt;}
.y11_c00320{bottom:758.400000pt;}
.y43_c00320{bottom:772.133333pt;}
.y10_c00320{bottom:774.133333pt;}
.y42_c00320{bottom:787.466667pt;}
.yf_c00320{bottom:793.066667pt;}
.ye_c00320{bottom:809.333333pt;}
.y41_c00320{bottom:810.800000pt;}
.y40_c00320{bottom:826.800000pt;}
.yd_c00320{bottom:828.933333pt;}
.y3f_c00320{bottom:842.533333pt;}
.yc_c00320{bottom:844.666667pt;}
.yb_c00320{bottom:860.666667pt;}
.y3e_c00320{bottom:862.133333pt;}
.ya_c00320{bottom:876.000000pt;}
.y3d_c00320{bottom:881.066667pt;}
.y9_c00320{bottom:891.733333pt;}
.y3c_c00320{bottom:897.066667pt;}
.y8_c00320{bottom:907.466667pt;}
.y3b_c00320{bottom:912.800000pt;}
.y7_c00320{bottom:927.200000pt;}
.y3a_c00320{bottom:928.533333pt;}
.y6_c00320{bottom:943.200000pt;}
.y39_c00320{bottom:944.266667pt;}
.y5_c00320{bottom:958.933333pt;}
.y38_c00320{bottom:960.000000pt;}
.y4_c00320{bottom:974.933333pt;}
.y37_c00320{bottom:975.333333pt;}
.y3_c00320{bottom:990.666667pt;}
.y36_c00320{bottom:991.333333pt;}
.y2_c00320{bottom:1012.800000pt;}
.y1_c00320{bottom:1014.666667pt;}
.h7_c00320{height:48.000000pt;}
.h5_c00320{height:53.333333pt;}
.h4_c00320{height:58.666667pt;}
.h6_c00320{height:64.000000pt;}
.h3_c00320{height:69.333333pt;}
.h2_c00320{height:80.000000pt;}
.h0_c00320{height:1127.039957pt;}
.h1_c00320{height:1127.333333pt;}
.w1_c00320{width:854.666667pt;}
.w0_c00320{width:854.720052pt;}
.x0_c00320{left:0.000000pt;}
.x4c_c00320{left:61.066667pt;}
.x84_c00320{left:74.533333pt;}
.x2b_c00320{left:75.733333pt;}
.x34_c00320{left:77.466667pt;}
.x4_c00320{left:78.400000pt;}
.x76_c00320{left:79.333333pt;}
.x9d_c00320{left:83.066667pt;}
.x8b_c00320{left:87.333333pt;}
.x26_c00320{left:92.533333pt;}
.x46_c00320{left:94.400000pt;}
.x61_c00320{left:97.600000pt;}
.x85_c00320{left:100.133333pt;}
.x3c_c00320{left:101.066667pt;}
.x41_c00320{left:102.000000pt;}
.x53_c00320{left:104.533333pt;}
.x2c_c00320{left:108.666667pt;}
.x15_c00320{left:111.333333pt;}
.x5d_c00320{left:112.400000pt;}
.x4d_c00320{left:114.533333pt;}
.x81_c00320{left:115.466667pt;}
.x47_c00320{left:116.800000pt;}
.x38_c00320{left:117.866667pt;}
.x5_c00320{left:119.733333pt;}
.x9a_c00320{left:120.933333pt;}
.x1_c00320{left:122.533333pt;}
.xd_c00320{left:123.600000pt;}
.x1c_c00320{left:126.266667pt;}
.x16_c00320{left:127.600000pt;}
.x5e_c00320{left:128.666667pt;}
.x4e_c00320{left:129.866667pt;}
.x27_c00320{left:131.600000pt;}
.x6f_c00320{left:132.800000pt;}
.x6_c00320{left:136.666667pt;}
.x9b_c00320{left:137.866667pt;}
.x62_c00320{left:138.933333pt;}
.x2d_c00320{left:140.000000pt;}
.x3d_c00320{left:141.066667pt;}
.x1d_c00320{left:142.933333pt;}
.x57_c00320{left:144.933333pt;}
.x69_c00320{left:146.266667pt;}
.x94_c00320{left:147.200000pt;}
.x28_c00320{left:148.266667pt;}
.x48_c00320{left:149.466667pt;}
.x42_c00320{left:150.666667pt;}
.x70_c00320{left:153.333333pt;}
.x97_c00320{left:155.466667pt;}
.x86_c00320{left:156.533333pt;}
.x88_c00320{left:157.466667pt;}
.x4a_c00320{left:159.600000pt;}
.x8c_c00320{left:163.466667pt;}
.x72_c00320{left:164.933333pt;}
.x21_c00320{left:167.733333pt;}
.x7_c00320{left:168.666667pt;}
.x8e_c00320{left:169.600000pt;}
.xe_c00320{left:170.666667pt;}
.x54_c00320{left:172.000000pt;}
.x63_c00320{left:173.866667pt;}
.x58_c00320{left:176.000000pt;}
.x73_c00320{left:180.000000pt;}
.x2e_c00320{left:181.333333pt;}
.x22_c00320{left:183.466667pt;}
.x7d_c00320{left:185.866667pt;}
.x39_c00320{left:187.333333pt;}
.xf_c00320{left:188.266667pt;}
.x43_c00320{left:189.333333pt;}
.x17_c00320{left:190.933333pt;}
.x2f_c00320{left:192.800000pt;}
.x91_c00320{left:193.733333pt;}
.x35_c00320{left:195.066667pt;}
.x77_c00320{left:197.333333pt;}
.x87_c00320{left:199.466667pt;}
.x8_c00320{left:200.933333pt;}
.x4b_c00320{left:202.133333pt;}
.x59_c00320{left:204.800000pt;}
.x1e_c00320{left:206.000000pt;}
.x44_c00320{left:207.600000pt;}
.x3a_c00320{left:209.733333pt;}
.x78_c00320{left:212.000000pt;}
.x18_c00320{left:213.066667pt;}
.x89_c00320{left:215.066667pt;}
.x5f_c00320{left:216.666667pt;}
.x9e_c00320{left:220.400000pt;}
.x8d_c00320{left:221.333333pt;}
.x45_c00320{left:222.266667pt;}
.x3e_c00320{left:224.000000pt;}
.x92_c00320{left:225.466667pt;}
.x1f_c00320{left:226.533333pt;}
.x8a_c00320{left:228.133333pt;}
.x23_c00320{left:229.200000pt;}
.x71_c00320{left:230.133333pt;}
.x9_c00320{left:232.266667pt;}
.x67_c00320{left:234.000000pt;}
.x4f_c00320{left:236.400000pt;}
.x30_c00320{left:237.600000pt;}
.x7a_c00320{left:239.866667pt;}
.x64_c00320{left:241.600000pt;}
.x29_c00320{left:242.666667pt;}
.x6c_c00320{left:243.600000pt;}
.x24_c00320{left:244.533333pt;}
.x90_c00320{left:245.466667pt;}
.x10_c00320{left:246.800000pt;}
.x9c_c00320{left:248.266667pt;}
.x11_c00320{left:254.133333pt;}
.x5a_c00320{left:255.066667pt;}
.x7b_c00320{left:258.133333pt;}
.x50_c00320{left:259.066667pt;}
.x55_c00320{left:262.266667pt;}
.x6d_c00320{left:263.466667pt;}
.x60_c00320{left:264.666667pt;}
.x80_c00320{left:266.533333pt;}
.x7e_c00320{left:267.866667pt;}
.x31_c00320{left:271.466667pt;}
.x96_c00320{left:272.533333pt;}
.x93_c00320{left:274.133333pt;}
.x2_c00320{left:275.200000pt;}
.xa_c00320{left:276.400000pt;}
.x19_c00320{left:278.000000pt;}
.x6a_c00320{left:279.733333pt;}
.x98_c00320{left:280.933333pt;}
.x65_c00320{left:281.866667pt;}
.x7c_c00320{left:284.133333pt;}
.x3f_c00320{left:285.466667pt;}
.x9f_c00320{left:286.400000pt;}
.x51_c00320{left:287.600000pt;}
.x82_c00320{left:289.333333pt;}
.x25_c00320{left:290.666667pt;}
.x36_c00320{left:292.000000pt;}
.x5b_c00320{left:293.200000pt;}
.xb_c00320{left:294.266667pt;}
.x74_c00320{left:295.200000pt;}
.x3b_c00320{left:296.533333pt;}
.x7f_c00320{left:299.600000pt;}
.x12_c00320{left:301.466667pt;}
.x75_c00320{left:305.466667pt;}
.x8f_c00320{left:308.400000pt;}
.x95_c00320{left:309.733333pt;}
.x52_c00320{left:310.933333pt;}
.x49_c00320{left:312.266667pt;}
.x2a_c00320{left:314.133333pt;}
.x56_c00320{left:316.400000pt;}
.x66_c00320{left:318.133333pt;}
.x32_c00320{left:319.733333pt;}
.x13_c00320{left:320.666667pt;}
.x5c_c00320{left:322.266667pt;}
.x20_c00320{left:323.866667pt;}
.x1a_c00320{left:329.200000pt;}
.x99_c00320{left:330.933333pt;}
.x6e_c00320{left:332.000000pt;}
.x6b_c00320{left:334.800000pt;}
.x14_c00320{left:337.600000pt;}
.x68_c00320{left:338.666667pt;}
.x33_c00320{left:339.866667pt;}
.xc_c00320{left:342.266667pt;}
.x37_c00320{left:346.000000pt;}
.x83_c00320{left:346.933333pt;}
.x40_c00320{left:349.733333pt;}
.x1b_c00320{left:350.666667pt;}
.x79_c00320{left:356.666667pt;}
.x127_c00320{left:372.933333pt;}
.xca_c00320{left:377.333333pt;}
.x11a_c00320{left:378.533333pt;}
.xea_c00320{left:390.266667pt;}
.xa0_c00320{left:393.600000pt;}
.x129_c00320{left:394.533333pt;}
.x128_c00320{left:398.666667pt;}
.xd8_c00320{left:408.400000pt;}
.x120_c00320{left:409.733333pt;}
.xf1_c00320{left:410.666667pt;}
.xa1_c00320{left:413.066667pt;}
.x113_c00320{left:414.533333pt;}
.xd4_c00320{left:415.733333pt;}
.xe2_c00320{left:417.600000pt;}
.xfe_c00320{left:420.400000pt;}
.xf5_c00320{left:424.133333pt;}
.xad_c00320{left:425.466667pt;}
.x10a_c00320{left:426.533333pt;}
.xc9_c00320{left:427.866667pt;}
.xf9_c00320{left:429.066667pt;}
.xcb_c00320{left:430.133333pt;}
.x119_c00320{left:431.866667pt;}
.xe1_c00320{left:434.400000pt;}
.x11b_c00320{left:435.600000pt;}
.xbd_c00320{left:438.133333pt;}
.xcc_c00320{left:441.066667pt;}
.xa2_c00320{left:445.066667pt;}
.x10f_c00320{left:447.600000pt;}
.xc2_c00320{left:448.666667pt;}
.x10c_c00320{left:450.133333pt;}
.x121_c00320{left:451.066667pt;}
.xb2_c00320{left:453.066667pt;}
.xec_c00320{left:454.933333pt;}
.xa8_c00320{left:456.933333pt;}
.xb6_c00320{left:460.933333pt;}
.x114_c00320{left:462.533333pt;}
.x117_c00320{left:463.600000pt;}
.x122_c00320{left:464.533333pt;}
.xe6_c00320{left:465.600000pt;}
.xdc_c00320{left:467.066667pt;}
.x10b_c00320{left:468.133333pt;}
.x106_c00320{left:470.133333pt;}
.xbe_c00320{left:474.000000pt;}
.xcd_c00320{left:477.200000pt;}
.x12a_c00320{left:480.000000pt;}
.xd9_c00320{left:481.066667pt;}
.xe7_c00320{left:482.533333pt;}
.xc3_c00320{left:483.866667pt;}
.xfa_c00320{left:485.733333pt;}
.x101_c00320{left:486.666667pt;}
.xb3_c00320{left:488.266667pt;}
.xa3_c00320{left:490.533333pt;}
.xa9_c00320{left:491.466667pt;}
.x104_c00320{left:495.733333pt;}
.xae_c00320{left:496.800000pt;}
.xc4_c00320{left:498.000000pt;}
.x107_c00320{left:498.933333pt;}
.xd0_c00320{left:501.733333pt;}
.xb7_c00320{left:502.800000pt;}
.x112_c00320{left:503.733333pt;}
.x123_c00320{left:504.666667pt;}
.x118_c00320{left:506.800000pt;}
.xa4_c00320{left:510.000000pt;}
.xf6_c00320{left:511.866667pt;}
.xf2_c00320{left:513.600000pt;}
.xed_c00320{left:515.066667pt;}
.xc5_c00320{left:520.133333pt;}
.xff_c00320{left:522.133333pt;}
.xce_c00320{left:523.600000pt;}
.xbf_c00320{left:527.466667pt;}
.x115_c00320{left:529.733333pt;}
.x12b_c00320{left:530.933333pt;}
.xf3_c00320{left:532.133333pt;}
.x105_c00320{left:533.200000pt;}
.xc6_c00320{left:534.800000pt;}
.xb4_c00320{left:538.266667pt;}
.xd5_c00320{left:541.866667pt;}
.x110_c00320{left:542.933333pt;}
.xfb_c00320{left:545.200000pt;}
.xdd_c00320{left:547.333333pt;}
.x10d_c00320{left:549.066667pt;}
.xaf_c00320{left:550.266667pt;}
.xb8_c00320{left:551.466667pt;}
.x100_c00320{left:553.200000pt;}
.xe3_c00320{left:555.600000pt;}
.xee_c00320{left:556.666667pt;}
.xaa_c00320{left:559.200000pt;}
.x10e_c00320{left:561.200000pt;}
.x116_c00320{left:562.400000pt;}
.x124_c00320{left:568.266667pt;}
.xeb_c00320{left:569.466667pt;}
.xe8_c00320{left:570.800000pt;}
.xd1_c00320{left:571.733333pt;}
.xb0_c00320{left:572.666667pt;}
.xc0_c00320{left:575.466667pt;}
.xb5_c00320{left:576.400000pt;}
.xa5_c00320{left:578.133333pt;}
.xf4_c00320{left:579.866667pt;}
.xef_c00320{left:583.600000pt;}
.xde_c00320{left:584.800000pt;}
.xa6_c00320{left:586.800000pt;}
.xb9_c00320{left:588.266667pt;}
.xc7_c00320{left:589.866667pt;}
.xd2_c00320{left:591.600000pt;}
.x108_c00320{left:594.000000pt;}
.xe9_c00320{left:595.066667pt;}
.xba_c00320{left:597.200000pt;}
.xab_c00320{left:599.200000pt;}
.xd6_c00320{left:601.733333pt;}
.xd7_c00320{left:603.333333pt;}
.xfc_c00320{left:606.266667pt;}
.x111_c00320{left:608.266667pt;}
.x102_c00320{left:609.466667pt;}
.xc1_c00320{left:616.400000pt;}
.x11c_c00320{left:617.866667pt;}
.xdf_c00320{left:619.066667pt;}
.xf7_c00320{left:622.400000pt;}
.xd3_c00320{left:625.466667pt;}
.xe4_c00320{left:626.666667pt;}
.xbb_c00320{left:627.866667pt;}
.xfd_c00320{left:630.933333pt;}
.x11d_c00320{left:632.533333pt;}
.xda_c00320{left:635.333333pt;}
.xcf_c00320{left:637.466667pt;}
.x11f_c00320{left:640.133333pt;}
.x109_c00320{left:641.600000pt;}
.xb1_c00320{left:642.800000pt;}
.xf0_c00320{left:643.733333pt;}
.x125_c00320{left:646.266667pt;}
.xc8_c00320{left:647.733333pt;}
.xbc_c00320{left:649.600000pt;}
.x3_c00320{left:650.533333pt;}
.x103_c00320{left:651.733333pt;}
.xf8_c00320{left:654.133333pt;}
.xac_c00320{left:655.200000pt;}
.xa7_c00320{left:657.466667pt;}
.xe0_c00320{left:659.066667pt;}
.x11e_c00320{left:662.933333pt;}
.xe5_c00320{left:665.066667pt;}
.xdb_c00320{left:671.200000pt;}
.x126_c00320{left:672.133333pt;}
}





/* 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_c00321 {
    display:none;
  }
  .loading-indicator_c00321.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00321 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_c00321 { 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_c00321" -> "#page-container .classname_c00321")
 */
.pf_c00321 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00321 { /* 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_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00321 { /* 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_c00321 { /* 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_c00321 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00321 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00321 {overflow:visible;}
  }
}
.c_c00321 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00321 { /* 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_c00321:after { /* webkit #35443 */
  content: '';
}
.t_c00321:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00321 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 */
}
.__c00321 { /* 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_c00321 { /* info for Javascript */
  display:none;
}
.l_c00321 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00321 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00321 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00321: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_c00321 {
    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_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00321.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_c00321 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00321;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.000000;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;}
.m4c_c00321{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m12_c00321{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m113_c00321{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m39_c00321{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mee_c00321{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00321{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00321{transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065000,0.000000,0.000000,0.250000,0,0);}
.m108_c00321{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m91_c00321{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.md5_c00321{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.me7_c00321{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m92_c00321{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00321{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00321{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m46_c00321{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md4_c00321{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m93_c00321{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00321{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m79_c00321{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m90_c00321{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00321{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m11_c00321{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00321{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m98_c00321{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m76_c00321{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00321{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m96_c00321{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00321{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00321{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mff_c00321{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.md8_c00321{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m82_c00321{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00321{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m94_c00321{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m81_c00321{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00321{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m107_c00321{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00321{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m60_c00321{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m85_c00321{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8_c00321{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m54_c00321{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00321{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00321{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me6_c00321{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m83_c00321{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me_c00321{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m27_c00321{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00321{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.me8_c00321{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00321{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00321{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00321{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00321{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m22_c00321{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m99_c00321{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m77_c00321{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m55_c00321{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00321{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00321{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00321{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5_c00321{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m37_c00321{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00321{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00321{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00321{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m45_c00321{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m23_c00321{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00321{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m47_c00321{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00321{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m78_c00321{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00321{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m38_c00321{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m16_c00321{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m25_c00321{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.meb_c00321{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00321{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m33_c00321{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m32_c00321{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.ma_c00321{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mde_c00321{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00321{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00321{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mc_c00321{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m104_c00321{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m50_c00321{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf_c00321{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00321{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m40_c00321{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00321{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00321{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m26_c00321{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00321{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m13_c00321{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00321{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m24_c00321{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m44_c00321{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m31_c00321{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m106_c00321{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00321{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me3_c00321{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00321{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m18_c00321{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m20_c00321{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00321{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00321{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m114_c00321{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mab_c00321{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m87_c00321{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m30_c00321{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md9_c00321{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00321{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00321{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m58_c00321{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00321{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00321{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m109_c00321{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m36_c00321{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00321{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00321{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m59_c00321{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md_c00321{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md7_c00321{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mba_c00321{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m48_c00321{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me5_c00321{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9_c00321{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00321{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00321{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m21_c00321{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mac_c00321{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00321{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00321{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m80_c00321{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00321{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m65_c00321{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m29_c00321{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m84_c00321{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00321{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m89_c00321{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00321{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m41_c00321{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00321{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m14_c00321{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00321{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m19_c00321{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00321{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mea_c00321{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7_c00321{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00321{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00321{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mec_c00321{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mca_c00321{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00321{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m15_c00321{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00321{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00321{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00321{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m49_c00321{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m86_c00321{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00321{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00321{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00321{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00321{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m74_c00321{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00321{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00321{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m35_c00321{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m111_c00321{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00321{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m105_c00321{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m42_c00321{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00321{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m75_c00321{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00321{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00321{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb_c00321{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10_c00321{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.med_c00321{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00321{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00321{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00321{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6_c00321{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00321{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00321{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00321{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mef_c00321{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m53_c00321{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me4_c00321{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mae_c00321{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m103_c00321{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m43_c00321{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00321{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00321{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00321{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m28_c00321{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00321{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.maa_c00321{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m34_c00321{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m72_c00321{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00321{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m61_c00321{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00321{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00321{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m112_c00321{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00321{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00321{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00321{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00321{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00321{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00321{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mda_c00321{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00321{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m100_c00321{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);}
.m68_c00321{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m116_c00321{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00321{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00321{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c00321{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m97_c00321{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00321{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00321{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m73_c00321{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mad_c00321{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me1_c00321{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.me0_c00321{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me9_c00321{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m88_c00321{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m57_c00321{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m101_c00321{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m52_c00321{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00321{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m56_c00321{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md1_c00321{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00321{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00321{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00321{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00321{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m51_c00321{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m115_c00321{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m62_c00321{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00321{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.maf_c00321{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m64_c00321{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.md0_c00321{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00321{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.md3_c00321{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00321{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00321{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.md2_c00321{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00321{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00321{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00321{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00321{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m63_c00321{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00321{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00321{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m67_c00321{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m70_c00321{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00321{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m69_c00321{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m95_c00321{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00321{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m110_c00321{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m71_c00321{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00321{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mce_c00321{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me2_c00321{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m66_c00321{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00321{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00321{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);}
.md6_c00321{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m102_c00321{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls1_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:63.000000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{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__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00321{word-spacing:-90.000000px;}
.ws5_c00321{word-spacing:-7.467933px;}
.ws9_c00321{word-spacing:0.000000px;}
.ws6_c00321{word-spacing:1.624204px;}
.ws4_c00321{word-spacing:7.108280px;}
.ws8_c00321{word-spacing:19.994638px;}
.ws0_c00321{word-spacing:23.211796px;}
.ws7_c00321{word-spacing:26.428954px;}
.ws1_c00321{word-spacing:39.750000px;}
.ws2_c00321{word-spacing:126.000000px;}
._1_c00321{margin-left:-63.000000px;}
._0_c00321{width:3.750000px;}
._2_c00321{width:50.211796px;}
._3_c00321{width:58.254692px;}
.fc0_c00321{color:transparent;}
.fs4_c00321{font-size:54.000000px;}
.fs3_c00321{font-size:60.000000px;}
.fs0_c00321{font-size:66.000000px;}
.fs2_c00321{font-size:72.000000px;}
.fs1_c00321{font-size:84.000000px;}
.y0_c00321{bottom:0.000000px;}
.y31_c00321{bottom:195.450000px;}
.y63_c00321{bottom:196.950000px;}
.y62_c00321{bottom:211.650000px;}
.y30_c00321{bottom:213.450000px;}
.y61_c00321{bottom:225.000000px;}
.y2f_c00321{bottom:231.150000px;}
.y60_c00321{bottom:240.150000px;}
.y2e_c00321{bottom:253.050000px;}
.y5f_c00321{bottom:255.600000px;}
.y2d_c00321{bottom:270.300000px;}
.y5e_c00321{bottom:272.400000px;}
.y2c_c00321{bottom:288.000000px;}
.y5d_c00321{bottom:291.900000px;}
.y2b_c00321{bottom:306.000000px;}
.y5c_c00321{bottom:309.900000px;}
.y2a_c00321{bottom:324.000000px;}
.y5b_c00321{bottom:327.600000px;}
.y29_c00321{bottom:342.000000px;}
.y5a_c00321{bottom:345.600000px;}
.y28_c00321{bottom:361.800000px;}
.y59_c00321{bottom:369.600000px;}
.y27_c00321{bottom:384.900000px;}
.y58_c00321{bottom:389.400000px;}
.y26_c00321{bottom:400.800000px;}
.y57_c00321{bottom:406.350000px;}
.y25_c00321{bottom:413.700000px;}
.y56_c00321{bottom:424.050000px;}
.y24_c00321{bottom:430.500000px;}
.y55_c00321{bottom:441.750000px;}
.y23_c00321{bottom:448.650000px;}
.y54_c00321{bottom:464.100000px;}
.y22_c00321{bottom:466.950000px;}
.y21_c00321{bottom:487.500000px;}
.y53_c00321{bottom:493.500000px;}
.y20_c00321{bottom:506.550000px;}
.y52_c00321{bottom:515.100000px;}
.y1f_c00321{bottom:524.100000px;}
.y51_c00321{bottom:537.000000px;}
.y1e_c00321{bottom:541.800000px;}
.y50_c00321{bottom:556.500000px;}
.y1d_c00321{bottom:559.800000px;}
.y4f_c00321{bottom:574.500000px;}
.y1c_c00321{bottom:581.400000px;}
.y4e_c00321{bottom:592.200000px;}
.y4d_c00321{bottom:610.200000px;}
.y1b_c00321{bottom:616.350000px;}
.y4c_c00321{bottom:627.900000px;}
.y4b_c00321{bottom:645.600000px;}
.y1a_c00321{bottom:650.850000px;}
.y4a_c00321{bottom:663.600000px;}
.y49_c00321{bottom:681.300000px;}
.y19_c00321{bottom:684.000000px;}
.y48_c00321{bottom:699.000000px;}
.y18_c00321{bottom:704.850000px;}
.y47_c00321{bottom:716.700000px;}
.y17_c00321{bottom:722.550000px;}
.y46_c00321{bottom:734.400000px;}
.y16_c00321{bottom:741.900000px;}
.y45_c00321{bottom:752.100000px;}
.y15_c00321{bottom:762.450000px;}
.y44_c00321{bottom:772.950000px;}
.y14_c00321{bottom:783.000000px;}
.y43_c00321{bottom:791.700000px;}
.y13_c00321{bottom:805.350000px;}
.y42_c00321{bottom:810.750000px;}
.y12_c00321{bottom:824.400000px;}
.y41_c00321{bottom:828.750000px;}
.y11_c00321{bottom:842.100000px;}
.y40_c00321{bottom:849.600000px;}
.y10_c00321{bottom:860.100000px;}
.y3f_c00321{bottom:868.650000px;}
.yf_c00321{bottom:878.400000px;}
.y3e_c00321{bottom:885.900000px;}
.ye_c00321{bottom:901.050000px;}
.y3d_c00321{bottom:907.950000px;}
.yd_c00321{bottom:920.850000px;}
.y3c_c00321{bottom:933.600000px;}
.yc_c00321{bottom:940.950000px;}
.y3b_c00321{bottom:951.900000px;}
.yb_c00321{bottom:958.200000px;}
.y3a_c00321{bottom:970.650000px;}
.ya_c00321{bottom:975.900000px;}
.y39_c00321{bottom:987.900000px;}
.y9_c00321{bottom:994.650000px;}
.y38_c00321{bottom:1008.000000px;}
.y8_c00321{bottom:1014.150000px;}
.y37_c00321{bottom:1027.800000px;}
.y7_c00321{bottom:1036.800000px;}
.y36_c00321{bottom:1045.050000px;}
.y6_c00321{bottom:1056.300000px;}
.y35_c00321{bottom:1063.050000px;}
.y5_c00321{bottom:1077.900000px;}
.y34_c00321{bottom:1080.750000px;}
.y4_c00321{bottom:1098.750000px;}
.y33_c00321{bottom:1102.650000px;}
.y3_c00321{bottom:1116.750000px;}
.y32_c00321{bottom:1122.450000px;}
.y1_c00321{bottom:1138.650000px;}
.y2_c00321{bottom:1144.350000px;}
.h6_c00321{height:54.000000px;}
.h5_c00321{height:60.000000px;}
.h2_c00321{height:66.000000px;}
.h4_c00321{height:72.000000px;}
.h3_c00321{height:84.000000px;}
.h0_c00321{height:1265.760040px;}
.h1_c00321{height:1266.000000px;}
.w1_c00321{width:961.500000px;}
.w0_c00321{width:961.560058px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:200.550000px;}
.x5f_c00321{left:204.900000px;}
.x52_c00321{left:205.950000px;}
.x13_c00321{left:207.000000px;}
.x75_c00321{left:210.300000px;}
.x86_c00321{left:211.350000px;}
.xb_c00321{left:219.150000px;}
.x25_c00321{left:221.100000px;}
.x35_c00321{left:222.150000px;}
.x50_c00321{left:224.550000px;}
.x67_c00321{left:226.050000px;}
.x6c_c00321{left:227.250000px;}
.x8c_c00321{left:228.750000px;}
.x36_c00321{left:230.700000px;}
.x90_c00321{left:231.750000px;}
.x93_c00321{left:233.250000px;}
.x3_c00321{left:237.300000px;}
.x1e_c00321{left:238.650000px;}
.x7c_c00321{left:239.850000px;}
.x30_c00321{left:240.900000px;}
.x4a_c00321{left:242.250000px;}
.x59_c00321{left:243.450000px;}
.x63_c00321{left:245.250000px;}
.x94_c00321{left:246.600000px;}
.x68_c00321{left:248.700000px;}
.x14_c00321{left:250.500000px;}
.x26_c00321{left:252.000000px;}
.xc_c00321{left:255.900000px;}
.x2b_c00321{left:262.800000px;}
.x47_c00321{left:264.300000px;}
.x4c_c00321{left:265.350000px;}
.x5c_c00321{left:267.900000px;}
.x3e_c00321{left:269.550000px;}
.x15_c00321{left:271.050000px;}
.x53_c00321{left:274.050000px;}
.x20_c00321{left:279.000000px;}
.x48_c00321{left:280.800000px;}
.x1f_c00321{left:281.850000px;}
.x5a_c00321{left:283.350000px;}
.x2c_c00321{left:284.400000px;}
.x5e_c00321{left:286.500000px;}
.x37_c00321{left:288.750000px;}
.x42_c00321{left:290.100000px;}
.x64_c00321{left:292.050000px;}
.x18_c00321{left:293.850000px;}
.x71_c00321{left:296.100000px;}
.x1a_c00321{left:297.300000px;}
.x4_c00321{left:299.250000px;}
.x27_c00321{left:302.400000px;}
.x16_c00321{left:304.200000px;}
.x51_c00321{left:306.150000px;}
.x8d_c00321{left:309.300000px;}
.x54_c00321{left:313.650000px;}
.x84_c00321{left:315.300000px;}
.x4b_c00321{left:316.800000px;}
.x49_c00321{left:320.100000px;}
.x72_c00321{left:321.300000px;}
.xd_c00321{left:322.800000px;}
.x60_c00321{left:325.500000px;}
.x3f_c00321{left:327.150000px;}
.x91_c00321{left:329.400000px;}
.x4d_c00321{left:330.450000px;}
.x19_c00321{left:332.700000px;}
.x55_c00321{left:335.250000px;}
.x96_c00321{left:337.500000px;}
.x69_c00321{left:338.700000px;}
.x2d_c00321{left:342.300000px;}
.x92_c00321{left:343.500000px;}
.x43_c00321{left:345.150000px;}
.x17_c00321{left:346.350000px;}
.x5_c00321{left:351.750000px;}
.x31_c00321{left:354.150000px;}
.x73_c00321{left:357.300000px;}
.x21_c00321{left:358.500000px;}
.x6_c00321{left:361.050000px;}
.x95_c00321{left:363.000000px;}
.x88_c00321{left:365.550000px;}
.x2e_c00321{left:367.200000px;}
.x85_c00321{left:369.300000px;}
.x38_c00321{left:370.500000px;}
.x7_c00321{left:371.550000px;}
.x74_c00321{left:373.500000px;}
.x1b_c00321{left:376.500000px;}
.x28_c00321{left:377.700000px;}
.x40_c00321{left:381.900000px;}
.x6e_c00321{left:382.950000px;}
.x7d_c00321{left:384.150000px;}
.x56_c00321{left:387.450000px;}
.x61_c00321{left:389.250000px;}
.x44_c00321{left:390.900000px;}
.x39_c00321{left:396.450000px;}
.x6f_c00321{left:399.150000px;}
.x45_c00321{left:400.200000px;}
.xe_c00321{left:402.750000px;}
.x5d_c00321{left:404.250000px;}
.x1c_c00321{left:405.300000px;}
.x22_c00321{left:406.800000px;}
.x87_c00321{left:408.300000px;}
.x29_c00321{left:411.150000px;}
.x7e_c00321{left:413.550000px;}
.x70_c00321{left:417.450000px;}
.x62_c00321{left:419.850000px;}
.x4e_c00321{left:427.200000px;}
.x7a_c00321{left:428.850000px;}
.x32_c00321{left:430.500000px;}
.x3a_c00321{left:431.700000px;}
.x89_c00321{left:433.650000px;}
.x76_c00321{left:435.000000px;}
.x8_c00321{left:436.650000px;}
.x6d_c00321{left:438.600000px;}
.xf_c00321{left:442.050000px;}
.x65_c00321{left:445.050000px;}
.x2f_c00321{left:446.400000px;}
.x57_c00321{left:448.650000px;}
.x7f_c00321{left:449.850000px;}
.x2_c00321{left:451.050000px;}
.x8f_c00321{left:452.400000px;}
.x23_c00321{left:454.350000px;}
.x80_c00321{left:456.750000px;}
.x10_c00321{left:457.950000px;}
.x8e_c00321{left:459.450000px;}
.x3b_c00321{left:461.250000px;}
.x8a_c00321{left:463.500000px;}
.x41_c00321{left:466.800000px;}
.x58_c00321{left:470.250000px;}
.x4f_c00321{left:476.850000px;}
.x82_c00321{left:477.900000px;}
.x66_c00321{left:478.950000px;}
.x9_c00321{left:482.700000px;}
.x5b_c00321{left:484.650000px;}
.x11_c00321{left:487.500000px;}
.x6a_c00321{left:489.450000px;}
.x1d_c00321{left:490.650000px;}
.x33_c00321{left:493.200000px;}
.x7b_c00321{left:497.250000px;}
.x3c_c00321{left:501.150000px;}
.xa_c00321{left:502.500000px;}
.x77_c00321{left:503.850000px;}
.x81_c00321{left:506.400000px;}
.x6b_c00321{left:508.950000px;}
.x46_c00321{left:516.000000px;}
.x3d_c00321{left:517.650000px;}
.x78_c00321{left:519.000000px;}
.x2a_c00321{left:526.650000px;}
.x24_c00321{left:529.650000px;}
.x34_c00321{left:530.700000px;}
.x83_c00321{left:534.150000px;}
.x12_c00321{left:536.400000px;}
.x8b_c00321{left:538.050000px;}
.x79_c00321{left:542.100000px;}
.xaa_c00321{left:560.550000px;}
.xd4_c00321{left:562.350000px;}
.xe9_c00321{left:563.400000px;}
.xf9_c00321{left:564.450000px;}
.x124_c00321{left:567.300000px;}
.x132_c00321{left:569.100000px;}
.x140_c00321{left:570.300000px;}
.x9f_c00321{left:577.950000px;}
.xc4_c00321{left:579.000000px;}
.xd1_c00321{left:580.050000px;}
.xef_c00321{left:581.700000px;}
.x105_c00321{left:582.900000px;}
.x120_c00321{left:583.950000px;}
.x116_c00321{left:585.600000px;}
.x139_c00321{left:586.800000px;}
.xdb_c00321{left:592.500000px;}
.x97_c00321{left:596.100000px;}
.x10b_c00321{left:599.100000px;}
.xa0_c00321{left:602.100000px;}
.x127_c00321{left:603.750000px;}
.xc9_c00321{left:604.800000px;}
.xd5_c00321{left:605.850000px;}
.xea_c00321{left:607.350000px;}
.xfd_c00321{left:608.700000px;}
.x126_c00321{left:609.900000px;}
.xe7_c00321{left:611.250000px;}
.x133_c00321{left:612.300000px;}
.xe1_c00321{left:614.250000px;}
.x10f_c00321{left:616.650000px;}
.xab_c00321{left:618.450000px;}
.xd2_c00321{left:619.650000px;}
.x13a_c00321{left:621.000000px;}
.x12e_c00321{left:622.800000px;}
.xc0_c00321{left:623.850000px;}
.x123_c00321{left:625.050000px;}
.xa1_c00321{left:627.000000px;}
.x101_c00321{left:628.650000px;}
.xb4_c00321{left:630.750000px;}
.xe8_c00321{left:633.900000px;}
.xf5_c00321{left:636.900000px;}
.x110_c00321{left:637.950000px;}
.xac_c00321{left:639.000000px;}
.x98_c00321{left:640.800000px;}
.xa2_c00321{left:642.450000px;}
.xf0_c00321{left:643.650000px;}
.xc1_c00321{left:645.750000px;}
.x145_c00321{left:647.550000px;}
.xe2_c00321{left:649.950000px;}
.xc5_c00321{left:651.300000px;}
.x141_c00321{left:652.650000px;}
.xd6_c00321{left:654.150000px;}
.xfe_c00321{left:655.200000px;}
.xb5_c00321{left:657.300000px;}
.xce_c00321{left:658.350000px;}
.x12a_c00321{left:659.550000px;}
.xca_c00321{left:660.600000px;}
.xf6_c00321{left:662.100000px;}
.x121_c00321{left:663.150000px;}
.x111_c00321{left:664.950000px;}
.xf4_c00321{left:666.000000px;}
.x106_c00321{left:667.950000px;}
.xa3_c00321{left:669.450000px;}
.x125_c00321{left:670.800000px;}
.x102_c00321{left:672.150000px;}
.xeb_c00321{left:675.450000px;}
.x107_c00321{left:676.950000px;}
.x134_c00321{left:678.150000px;}
.xe3_c00321{left:680.850000px;}
.xad_c00321{left:682.500000px;}
.xa4_c00321{left:685.650000px;}
.xf1_c00321{left:687.150000px;}
.xf7_c00321{left:690.900000px;}
.xb9_c00321{left:692.100000px;}
.xd7_c00321{left:693.750000px;}
.x112_c00321{left:694.800000px;}
.xcf_c00321{left:695.850000px;}
.xdc_c00321{left:697.650000px;}
.xd3_c00321{left:699.600000px;}
.x142_c00321{left:700.950000px;}
.xc6_c00321{left:702.300000px;}
.x13d_c00321{left:703.650000px;}
.xe4_c00321{left:706.050000px;}
.xae_c00321{left:708.000000px;}
.x146_c00321{left:710.250000px;}
.xb6_c00321{left:711.600000px;}
.x122_c00321{left:714.300000px;}
.x99_c00321{left:716.700000px;}
.xd8_c00321{left:718.200000px;}
.xba_c00321{left:723.450000px;}
.xa5_c00321{left:726.000000px;}
.x108_c00321{left:728.400000px;}
.x131_c00321{left:729.450000px;}
.xdd_c00321{left:730.800000px;}
.xff_c00321{left:735.150000px;}
.xfa_c00321{left:736.500000px;}
.xc2_c00321{left:741.750000px;}
.xb7_c00321{left:745.500000px;}
.x13b_c00321{left:746.700000px;}
.xec_c00321{left:749.250000px;}
.x9a_c00321{left:751.650000px;}
.xcb_c00321{left:754.500000px;}
.x114_c00321{left:756.750000px;}
.xaf_c00321{left:758.100000px;}
.x11d_c00321{left:759.150000px;}
.xd0_c00321{left:760.650000px;}
.xbb_c00321{left:762.750000px;}
.x143_c00321{left:764.850000px;}
.xb8_c00321{left:766.050000px;}
.xa6_c00321{left:768.450000px;}
.xd9_c00321{left:770.700000px;}
.x128_c00321{left:772.200000px;}
.xe5_c00321{left:773.400000px;}
.xf8_c00321{left:775.500000px;}
.x12f_c00321{left:776.550000px;}
.xbc_c00321{left:777.900000px;}
.x144_c00321{left:779.250000px;}
.x136_c00321{left:780.300000px;}
.xc7_c00321{left:781.800000px;}
.xcc_c00321{left:784.050000px;}
.xed_c00321{left:785.550000px;}
.x117_c00321{left:788.250000px;}
.x115_c00321{left:789.450000px;}
.x9b_c00321{left:790.950000px;}
.xb0_c00321{left:792.000000px;}
.x13c_c00321{left:793.800000px;}
.x11e_c00321{left:794.850000px;}
.xde_c00321{left:796.050000px;}
.x10c_c00321{left:797.850000px;}
.x9c_c00321{left:799.650000px;}
.xda_c00321{left:801.000000px;}
.xa7_c00321{left:803.700000px;}
.x129_c00321{left:806.100000px;}
.xee_c00321{left:807.150000px;}
.xbd_c00321{left:810.300000px;}
.x135_c00321{left:811.350000px;}
.xb1_c00321{left:812.550000px;}
.xe6_c00321{left:813.750000px;}
.x12b_c00321{left:815.550000px;}
.x11f_c00321{left:818.250000px;}
.xfb_c00321{left:821.100000px;}
.xf2_c00321{left:824.400000px;}
.x137_c00321{left:826.500000px;}
.x11a_c00321{left:828.900000px;}
.x10d_c00321{left:830.550000px;}
.x9d_c00321{left:831.750000px;}
.x119_c00321{left:833.550000px;}
.xa8_c00321{left:835.350000px;}
.x109_c00321{left:836.400000px;}
.x12c_c00321{left:838.200000px;}
.x11b_c00321{left:839.400000px;}
.x113_c00321{left:842.100000px;}
.xc8_c00321{left:843.750000px;}
.xfc_c00321{left:847.050000px;}
.x13e_c00321{left:849.900000px;}
.xa9_c00321{left:851.250000px;}
.x103_c00321{left:853.650000px;}
.x11c_c00321{left:856.650000px;}
.xb2_c00321{left:859.650000px;}
.xbe_c00321{left:861.750000px;}
.xdf_c00321{left:864.150000px;}
.x9e_c00321{left:865.650000px;}
.xb3_c00321{left:867.600000px;}
.x138_c00321{left:869.700000px;}
.xe0_c00321{left:873.150000px;}
.x130_c00321{left:875.250000px;}
.x100_c00321{left:876.600000px;}
.xbf_c00321{left:877.650000px;}
.xc3_c00321{left:880.350000px;}
.x118_c00321{left:882.900000px;}
.x10e_c00321{left:886.650000px;}
.xcd_c00321{left:888.450000px;}
.x104_c00321{left:889.950000px;}
.xf3_c00321{left:892.800000px;}
.x12d_c00321{left:896.400000px;}
.x148_c00321{left:897.900000px;}
.x10a_c00321{left:898.950000px;}
.x13f_c00321{left:902.400000px;}
.x147_c00321{left:916.500000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls1_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:56.000000pt;}
.ws3_c00321{word-spacing:-80.000000pt;}
.ws5_c00321{word-spacing:-6.638163pt;}
.ws9_c00321{word-spacing:0.000000pt;}
.ws6_c00321{word-spacing:1.443737pt;}
.ws4_c00321{word-spacing:6.318471pt;}
.ws8_c00321{word-spacing:17.773012pt;}
.ws0_c00321{word-spacing:20.632708pt;}
.ws7_c00321{word-spacing:23.492404pt;}
.ws1_c00321{word-spacing:35.333333pt;}
.ws2_c00321{word-spacing:112.000000pt;}
._1_c00321{margin-left:-56.000000pt;}
._0_c00321{width:3.333333pt;}
._2_c00321{width:44.632708pt;}
._3_c00321{width:51.781948pt;}
.fs4_c00321{font-size:48.000000pt;}
.fs3_c00321{font-size:53.333333pt;}
.fs0_c00321{font-size:58.666667pt;}
.fs2_c00321{font-size:64.000000pt;}
.fs1_c00321{font-size:74.666667pt;}
.y0_c00321{bottom:0.000000pt;}
.y31_c00321{bottom:173.733333pt;}
.y63_c00321{bottom:175.066667pt;}
.y62_c00321{bottom:188.133333pt;}
.y30_c00321{bottom:189.733333pt;}
.y61_c00321{bottom:200.000000pt;}
.y2f_c00321{bottom:205.466667pt;}
.y60_c00321{bottom:213.466667pt;}
.y2e_c00321{bottom:224.933333pt;}
.y5f_c00321{bottom:227.200000pt;}
.y2d_c00321{bottom:240.266667pt;}
.y5e_c00321{bottom:242.133333pt;}
.y2c_c00321{bottom:256.000000pt;}
.y5d_c00321{bottom:259.466667pt;}
.y2b_c00321{bottom:272.000000pt;}
.y5c_c00321{bottom:275.466667pt;}
.y2a_c00321{bottom:288.000000pt;}
.y5b_c00321{bottom:291.200000pt;}
.y29_c00321{bottom:304.000000pt;}
.y5a_c00321{bottom:307.200000pt;}
.y28_c00321{bottom:321.600000pt;}
.y59_c00321{bottom:328.533333pt;}
.y27_c00321{bottom:342.133333pt;}
.y58_c00321{bottom:346.133333pt;}
.y26_c00321{bottom:356.266667pt;}
.y57_c00321{bottom:361.200000pt;}
.y25_c00321{bottom:367.733333pt;}
.y56_c00321{bottom:376.933333pt;}
.y24_c00321{bottom:382.666667pt;}
.y55_c00321{bottom:392.666667pt;}
.y23_c00321{bottom:398.800000pt;}
.y54_c00321{bottom:412.533333pt;}
.y22_c00321{bottom:415.066667pt;}
.y21_c00321{bottom:433.333333pt;}
.y53_c00321{bottom:438.666667pt;}
.y20_c00321{bottom:450.266667pt;}
.y52_c00321{bottom:457.866667pt;}
.y1f_c00321{bottom:465.866667pt;}
.y51_c00321{bottom:477.333333pt;}
.y1e_c00321{bottom:481.600000pt;}
.y50_c00321{bottom:494.666667pt;}
.y1d_c00321{bottom:497.600000pt;}
.y4f_c00321{bottom:510.666667pt;}
.y1c_c00321{bottom:516.800000pt;}
.y4e_c00321{bottom:526.400000pt;}
.y4d_c00321{bottom:542.400000pt;}
.y1b_c00321{bottom:547.866667pt;}
.y4c_c00321{bottom:558.133333pt;}
.y4b_c00321{bottom:573.866667pt;}
.y1a_c00321{bottom:578.533333pt;}
.y4a_c00321{bottom:589.866667pt;}
.y49_c00321{bottom:605.600000pt;}
.y19_c00321{bottom:608.000000pt;}
.y48_c00321{bottom:621.333333pt;}
.y18_c00321{bottom:626.533333pt;}
.y47_c00321{bottom:637.066667pt;}
.y17_c00321{bottom:642.266667pt;}
.y46_c00321{bottom:652.800000pt;}
.y16_c00321{bottom:659.466667pt;}
.y45_c00321{bottom:668.533333pt;}
.y15_c00321{bottom:677.733333pt;}
.y44_c00321{bottom:687.066667pt;}
.y14_c00321{bottom:696.000000pt;}
.y43_c00321{bottom:703.733333pt;}
.y13_c00321{bottom:715.866667pt;}
.y42_c00321{bottom:720.666667pt;}
.y12_c00321{bottom:732.800000pt;}
.y41_c00321{bottom:736.666667pt;}
.y11_c00321{bottom:748.533333pt;}
.y40_c00321{bottom:755.200000pt;}
.y10_c00321{bottom:764.533333pt;}
.y3f_c00321{bottom:772.133333pt;}
.yf_c00321{bottom:780.800000pt;}
.y3e_c00321{bottom:787.466667pt;}
.ye_c00321{bottom:800.933333pt;}
.y3d_c00321{bottom:807.066667pt;}
.yd_c00321{bottom:818.533333pt;}
.y3c_c00321{bottom:829.866667pt;}
.yc_c00321{bottom:836.400000pt;}
.y3b_c00321{bottom:846.133333pt;}
.yb_c00321{bottom:851.733333pt;}
.y3a_c00321{bottom:862.800000pt;}
.ya_c00321{bottom:867.466667pt;}
.y39_c00321{bottom:878.133333pt;}
.y9_c00321{bottom:884.133333pt;}
.y38_c00321{bottom:896.000000pt;}
.y8_c00321{bottom:901.466667pt;}
.y37_c00321{bottom:913.600000pt;}
.y7_c00321{bottom:921.600000pt;}
.y36_c00321{bottom:928.933333pt;}
.y6_c00321{bottom:938.933333pt;}
.y35_c00321{bottom:944.933333pt;}
.y5_c00321{bottom:958.133333pt;}
.y34_c00321{bottom:960.666667pt;}
.y4_c00321{bottom:976.666667pt;}
.y33_c00321{bottom:980.133333pt;}
.y3_c00321{bottom:992.666667pt;}
.y32_c00321{bottom:997.733333pt;}
.y1_c00321{bottom:1012.133333pt;}
.y2_c00321{bottom:1017.200000pt;}
.h6_c00321{height:48.000000pt;}
.h5_c00321{height:53.333333pt;}
.h2_c00321{height:58.666667pt;}
.h4_c00321{height:64.000000pt;}
.h3_c00321{height:74.666667pt;}
.h0_c00321{height:1125.120036pt;}
.h1_c00321{height:1125.333333pt;}
.w1_c00321{width:854.666667pt;}
.w0_c00321{width:854.720052pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:178.266667pt;}
.x5f_c00321{left:182.133333pt;}
.x52_c00321{left:183.066667pt;}
.x13_c00321{left:184.000000pt;}
.x75_c00321{left:186.933333pt;}
.x86_c00321{left:187.866667pt;}
.xb_c00321{left:194.800000pt;}
.x25_c00321{left:196.533333pt;}
.x35_c00321{left:197.466667pt;}
.x50_c00321{left:199.600000pt;}
.x67_c00321{left:200.933333pt;}
.x6c_c00321{left:202.000000pt;}
.x8c_c00321{left:203.333333pt;}
.x36_c00321{left:205.066667pt;}
.x90_c00321{left:206.000000pt;}
.x93_c00321{left:207.333333pt;}
.x3_c00321{left:210.933333pt;}
.x1e_c00321{left:212.133333pt;}
.x7c_c00321{left:213.200000pt;}
.x30_c00321{left:214.133333pt;}
.x4a_c00321{left:215.333333pt;}
.x59_c00321{left:216.400000pt;}
.x63_c00321{left:218.000000pt;}
.x94_c00321{left:219.200000pt;}
.x68_c00321{left:221.066667pt;}
.x14_c00321{left:222.666667pt;}
.x26_c00321{left:224.000000pt;}
.xc_c00321{left:227.466667pt;}
.x2b_c00321{left:233.600000pt;}
.x47_c00321{left:234.933333pt;}
.x4c_c00321{left:235.866667pt;}
.x5c_c00321{left:238.133333pt;}
.x3e_c00321{left:239.600000pt;}
.x15_c00321{left:240.933333pt;}
.x53_c00321{left:243.600000pt;}
.x20_c00321{left:248.000000pt;}
.x48_c00321{left:249.600000pt;}
.x1f_c00321{left:250.533333pt;}
.x5a_c00321{left:251.866667pt;}
.x2c_c00321{left:252.800000pt;}
.x5e_c00321{left:254.666667pt;}
.x37_c00321{left:256.666667pt;}
.x42_c00321{left:257.866667pt;}
.x64_c00321{left:259.600000pt;}
.x18_c00321{left:261.200000pt;}
.x71_c00321{left:263.200000pt;}
.x1a_c00321{left:264.266667pt;}
.x4_c00321{left:266.000000pt;}
.x27_c00321{left:268.800000pt;}
.x16_c00321{left:270.400000pt;}
.x51_c00321{left:272.133333pt;}
.x8d_c00321{left:274.933333pt;}
.x54_c00321{left:278.800000pt;}
.x84_c00321{left:280.266667pt;}
.x4b_c00321{left:281.600000pt;}
.x49_c00321{left:284.533333pt;}
.x72_c00321{left:285.600000pt;}
.xd_c00321{left:286.933333pt;}
.x60_c00321{left:289.333333pt;}
.x3f_c00321{left:290.800000pt;}
.x91_c00321{left:292.800000pt;}
.x4d_c00321{left:293.733333pt;}
.x19_c00321{left:295.733333pt;}
.x55_c00321{left:298.000000pt;}
.x96_c00321{left:300.000000pt;}
.x69_c00321{left:301.066667pt;}
.x2d_c00321{left:304.266667pt;}
.x92_c00321{left:305.333333pt;}
.x43_c00321{left:306.800000pt;}
.x17_c00321{left:307.866667pt;}
.x5_c00321{left:312.666667pt;}
.x31_c00321{left:314.800000pt;}
.x73_c00321{left:317.600000pt;}
.x21_c00321{left:318.666667pt;}
.x6_c00321{left:320.933333pt;}
.x95_c00321{left:322.666667pt;}
.x88_c00321{left:324.933333pt;}
.x2e_c00321{left:326.400000pt;}
.x85_c00321{left:328.266667pt;}
.x38_c00321{left:329.333333pt;}
.x7_c00321{left:330.266667pt;}
.x74_c00321{left:332.000000pt;}
.x1b_c00321{left:334.666667pt;}
.x28_c00321{left:335.733333pt;}
.x40_c00321{left:339.466667pt;}
.x6e_c00321{left:340.400000pt;}
.x7d_c00321{left:341.466667pt;}
.x56_c00321{left:344.400000pt;}
.x61_c00321{left:346.000000pt;}
.x44_c00321{left:347.466667pt;}
.x39_c00321{left:352.400000pt;}
.x6f_c00321{left:354.800000pt;}
.x45_c00321{left:355.733333pt;}
.xe_c00321{left:358.000000pt;}
.x5d_c00321{left:359.333333pt;}
.x1c_c00321{left:360.266667pt;}
.x22_c00321{left:361.600000pt;}
.x87_c00321{left:362.933333pt;}
.x29_c00321{left:365.466667pt;}
.x7e_c00321{left:367.600000pt;}
.x70_c00321{left:371.066667pt;}
.x62_c00321{left:373.200000pt;}
.x4e_c00321{left:379.733333pt;}
.x7a_c00321{left:381.200000pt;}
.x32_c00321{left:382.666667pt;}
.x3a_c00321{left:383.733333pt;}
.x89_c00321{left:385.466667pt;}
.x76_c00321{left:386.666667pt;}
.x8_c00321{left:388.133333pt;}
.x6d_c00321{left:389.866667pt;}
.xf_c00321{left:392.933333pt;}
.x65_c00321{left:395.600000pt;}
.x2f_c00321{left:396.800000pt;}
.x57_c00321{left:398.800000pt;}
.x7f_c00321{left:399.866667pt;}
.x2_c00321{left:400.933333pt;}
.x8f_c00321{left:402.133333pt;}
.x23_c00321{left:403.866667pt;}
.x80_c00321{left:406.000000pt;}
.x10_c00321{left:407.066667pt;}
.x8e_c00321{left:408.400000pt;}
.x3b_c00321{left:410.000000pt;}
.x8a_c00321{left:412.000000pt;}
.x41_c00321{left:414.933333pt;}
.x58_c00321{left:418.000000pt;}
.x4f_c00321{left:423.866667pt;}
.x82_c00321{left:424.800000pt;}
.x66_c00321{left:425.733333pt;}
.x9_c00321{left:429.066667pt;}
.x5b_c00321{left:430.800000pt;}
.x11_c00321{left:433.333333pt;}
.x6a_c00321{left:435.066667pt;}
.x1d_c00321{left:436.133333pt;}
.x33_c00321{left:438.400000pt;}
.x7b_c00321{left:442.000000pt;}
.x3c_c00321{left:445.466667pt;}
.xa_c00321{left:446.666667pt;}
.x77_c00321{left:447.866667pt;}
.x81_c00321{left:450.133333pt;}
.x6b_c00321{left:452.400000pt;}
.x46_c00321{left:458.666667pt;}
.x3d_c00321{left:460.133333pt;}
.x78_c00321{left:461.333333pt;}
.x2a_c00321{left:468.133333pt;}
.x24_c00321{left:470.800000pt;}
.x34_c00321{left:471.733333pt;}
.x83_c00321{left:474.800000pt;}
.x12_c00321{left:476.800000pt;}
.x8b_c00321{left:478.266667pt;}
.x79_c00321{left:481.866667pt;}
.xaa_c00321{left:498.266667pt;}
.xd4_c00321{left:499.866667pt;}
.xe9_c00321{left:500.800000pt;}
.xf9_c00321{left:501.733333pt;}
.x124_c00321{left:504.266667pt;}
.x132_c00321{left:505.866667pt;}
.x140_c00321{left:506.933333pt;}
.x9f_c00321{left:513.733333pt;}
.xc4_c00321{left:514.666667pt;}
.xd1_c00321{left:515.600000pt;}
.xef_c00321{left:517.066667pt;}
.x105_c00321{left:518.133333pt;}
.x120_c00321{left:519.066667pt;}
.x116_c00321{left:520.533333pt;}
.x139_c00321{left:521.600000pt;}
.xdb_c00321{left:526.666667pt;}
.x97_c00321{left:529.866667pt;}
.x10b_c00321{left:532.533333pt;}
.xa0_c00321{left:535.200000pt;}
.x127_c00321{left:536.666667pt;}
.xc9_c00321{left:537.600000pt;}
.xd5_c00321{left:538.533333pt;}
.xea_c00321{left:539.866667pt;}
.xfd_c00321{left:541.066667pt;}
.x126_c00321{left:542.133333pt;}
.xe7_c00321{left:543.333333pt;}
.x133_c00321{left:544.266667pt;}
.xe1_c00321{left:546.000000pt;}
.x10f_c00321{left:548.133333pt;}
.xab_c00321{left:549.733333pt;}
.xd2_c00321{left:550.800000pt;}
.x13a_c00321{left:552.000000pt;}
.x12e_c00321{left:553.600000pt;}
.xc0_c00321{left:554.533333pt;}
.x123_c00321{left:555.600000pt;}
.xa1_c00321{left:557.333333pt;}
.x101_c00321{left:558.800000pt;}
.xb4_c00321{left:560.666667pt;}
.xe8_c00321{left:563.466667pt;}
.xf5_c00321{left:566.133333pt;}
.x110_c00321{left:567.066667pt;}
.xac_c00321{left:568.000000pt;}
.x98_c00321{left:569.600000pt;}
.xa2_c00321{left:571.066667pt;}
.xf0_c00321{left:572.133333pt;}
.xc1_c00321{left:574.000000pt;}
.x145_c00321{left:575.600000pt;}
.xe2_c00321{left:577.733333pt;}
.xc5_c00321{left:578.933333pt;}
.x141_c00321{left:580.133333pt;}
.xd6_c00321{left:581.466667pt;}
.xfe_c00321{left:582.400000pt;}
.xb5_c00321{left:584.266667pt;}
.xce_c00321{left:585.200000pt;}
.x12a_c00321{left:586.266667pt;}
.xca_c00321{left:587.200000pt;}
.xf6_c00321{left:588.533333pt;}
.x121_c00321{left:589.466667pt;}
.x111_c00321{left:591.066667pt;}
.xf4_c00321{left:592.000000pt;}
.x106_c00321{left:593.733333pt;}
.xa3_c00321{left:595.066667pt;}
.x125_c00321{left:596.266667pt;}
.x102_c00321{left:597.466667pt;}
.xeb_c00321{left:600.400000pt;}
.x107_c00321{left:601.733333pt;}
.x134_c00321{left:602.800000pt;}
.xe3_c00321{left:605.200000pt;}
.xad_c00321{left:606.666667pt;}
.xa4_c00321{left:609.466667pt;}
.xf1_c00321{left:610.800000pt;}
.xf7_c00321{left:614.133333pt;}
.xb9_c00321{left:615.200000pt;}
.xd7_c00321{left:616.666667pt;}
.x112_c00321{left:617.600000pt;}
.xcf_c00321{left:618.533333pt;}
.xdc_c00321{left:620.133333pt;}
.xd3_c00321{left:621.866667pt;}
.x142_c00321{left:623.066667pt;}
.xc6_c00321{left:624.266667pt;}
.x13d_c00321{left:625.466667pt;}
.xe4_c00321{left:627.600000pt;}
.xae_c00321{left:629.333333pt;}
.x146_c00321{left:631.333333pt;}
.xb6_c00321{left:632.533333pt;}
.x122_c00321{left:634.933333pt;}
.x99_c00321{left:637.066667pt;}
.xd8_c00321{left:638.400000pt;}
.xba_c00321{left:643.066667pt;}
.xa5_c00321{left:645.333333pt;}
.x108_c00321{left:647.466667pt;}
.x131_c00321{left:648.400000pt;}
.xdd_c00321{left:649.600000pt;}
.xff_c00321{left:653.466667pt;}
.xfa_c00321{left:654.666667pt;}
.xc2_c00321{left:659.333333pt;}
.xb7_c00321{left:662.666667pt;}
.x13b_c00321{left:663.733333pt;}
.xec_c00321{left:666.000000pt;}
.x9a_c00321{left:668.133333pt;}
.xcb_c00321{left:670.666667pt;}
.x114_c00321{left:672.666667pt;}
.xaf_c00321{left:673.866667pt;}
.x11d_c00321{left:674.800000pt;}
.xd0_c00321{left:676.133333pt;}
.xbb_c00321{left:678.000000pt;}
.x143_c00321{left:679.866667pt;}
.xb8_c00321{left:680.933333pt;}
.xa6_c00321{left:683.066667pt;}
.xd9_c00321{left:685.066667pt;}
.x128_c00321{left:686.400000pt;}
.xe5_c00321{left:687.466667pt;}
.xf8_c00321{left:689.333333pt;}
.x12f_c00321{left:690.266667pt;}
.xbc_c00321{left:691.466667pt;}
.x144_c00321{left:692.666667pt;}
.x136_c00321{left:693.600000pt;}
.xc7_c00321{left:694.933333pt;}
.xcc_c00321{left:696.933333pt;}
.xed_c00321{left:698.266667pt;}
.x117_c00321{left:700.666667pt;}
.x115_c00321{left:701.733333pt;}
.x9b_c00321{left:703.066667pt;}
.xb0_c00321{left:704.000000pt;}
.x13c_c00321{left:705.600000pt;}
.x11e_c00321{left:706.533333pt;}
.xde_c00321{left:707.600000pt;}
.x10c_c00321{left:709.200000pt;}
.x9c_c00321{left:710.800000pt;}
.xda_c00321{left:712.000000pt;}
.xa7_c00321{left:714.400000pt;}
.x129_c00321{left:716.533333pt;}
.xee_c00321{left:717.466667pt;}
.xbd_c00321{left:720.266667pt;}
.x135_c00321{left:721.200000pt;}
.xb1_c00321{left:722.266667pt;}
.xe6_c00321{left:723.333333pt;}
.x12b_c00321{left:724.933333pt;}
.x11f_c00321{left:727.333333pt;}
.xfb_c00321{left:729.866667pt;}
.xf2_c00321{left:732.800000pt;}
.x137_c00321{left:734.666667pt;}
.x11a_c00321{left:736.800000pt;}
.x10d_c00321{left:738.266667pt;}
.x9d_c00321{left:739.333333pt;}
.x119_c00321{left:740.933333pt;}
.xa8_c00321{left:742.533333pt;}
.x109_c00321{left:743.466667pt;}
.x12c_c00321{left:745.066667pt;}
.x11b_c00321{left:746.133333pt;}
.x113_c00321{left:748.533333pt;}
.xc8_c00321{left:750.000000pt;}
.xfc_c00321{left:752.933333pt;}
.x13e_c00321{left:755.466667pt;}
.xa9_c00321{left:756.666667pt;}
.x103_c00321{left:758.800000pt;}
.x11c_c00321{left:761.466667pt;}
.xb2_c00321{left:764.133333pt;}
.xbe_c00321{left:766.000000pt;}
.xdf_c00321{left:768.133333pt;}
.x9e_c00321{left:769.466667pt;}
.xb3_c00321{left:771.200000pt;}
.x138_c00321{left:773.066667pt;}
.xe0_c00321{left:776.133333pt;}
.x130_c00321{left:778.000000pt;}
.x100_c00321{left:779.200000pt;}
.xbf_c00321{left:780.133333pt;}
.xc3_c00321{left:782.533333pt;}
.x118_c00321{left:784.800000pt;}
.x10e_c00321{left:788.133333pt;}
.xcd_c00321{left:789.733333pt;}
.x104_c00321{left:791.066667pt;}
.xf3_c00321{left:793.600000pt;}
.x12d_c00321{left:796.800000pt;}
.x148_c00321{left:798.133333pt;}
.x10a_c00321{left:799.066667pt;}
.x13f_c00321{left:802.133333pt;}
.x147_c00321{left:814.666667pt;}
}





/* 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_c00322 {
    display:none;
  }
  .loading-indicator_c00322.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00322 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_c00322 { 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_c00322" -> "#page-container .classname_c00322")
 */
.pf_c00322 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00322 { /* 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_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00322 { /* 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_c00322 { /* 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_c00322 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00322 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00322 {overflow:visible;}
  }
}
.c_c00322 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00322 { /* 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_c00322:after { /* webkit #35443 */
  content: '';
}
.t_c00322:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00322 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 */
}
.__c00322 { /* 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_c00322 { /* info for Javascript */
  display:none;
}
.l_c00322 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00322 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00322 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00322: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_c00322 {
    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_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00322.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_c00322 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00322;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.000000;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;}
.m8e_c00322{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m21_c00322{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m128_c00322{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m67_c00322{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.maf_c00322{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m129_c00322{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00322{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00322{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.me_c00322{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00322{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00322{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.md_c00322{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m15_c00322{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00322{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00322{transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00322{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00322{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00322{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00322{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00322{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m16_c00322{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m10_c00322{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00322{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00322{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m69_c00322{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mf_c00322{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9_c00322{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00322{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00322{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m47_c00322{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00322{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m17_c00322{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00322{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mea_c00322{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m125_c00322{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00322{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mef_c00322{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00322{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.meb_c00322{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00322{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m7_c00322{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m84_c00322{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00322{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m56_c00322{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00322{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mca_c00322{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.maa_c00322{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m35_c00322{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m118_c00322{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.md6_c00322{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00322{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00322{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m38_c00322{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m116_c00322{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m6_c00322{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m27_c00322{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m25_c00322{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m100_c00322{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m59_c00322{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.me3_c00322{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me4_c00322{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00322{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00322{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m74_c00322{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m33_c00322{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m124_c00322{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.md3_c00322{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mce_c00322{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m86_c00322{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00322{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mff_c00322{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m30_c00322{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00322{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00322{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m95_c00322{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m50_c00322{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m26_c00322{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mde_c00322{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m99_c00322{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md2_c00322{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8_c00322{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m54_c00322{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00322{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md7_c00322{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.me5_c00322{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00322{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m11_c00322{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m108_c00322{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00322{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00322{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m32_c00322{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m60_c00322{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00322{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00322{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00322{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mad_c00322{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00322{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m92_c00322{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00322{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m61_c00322{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m31_c00322{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m126_c00322{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.md8_c00322{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m70_c00322{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00322{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m91_c00322{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md1_c00322{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m4_c00322{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m71_c00322{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m102_c00322{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.med_c00322{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00322{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00322{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00322{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mee_c00322{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.me6_c00322{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m58_c00322{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00322{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m75_c00322{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mda_c00322{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m97_c00322{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00322{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00322{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00322{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m19_c00322{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00322{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00322{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m122_c00322{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00322{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00322{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00322{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00322{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb_c00322{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00322{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00322{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00322{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m39_c00322{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md9_c00322{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m40_c00322{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m36_c00322{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00322{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00322{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5_c00322{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me7_c00322{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00322{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00322{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00322{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00322{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00322{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m57_c00322{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m28_c00322{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00322{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m46_c00322{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m94_c00322{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00322{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00322{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00322{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00322{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00322{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc_c00322{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00322{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m119_c00322{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m106_c00322{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00322{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m104_c00322{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m34_c00322{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00322{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m41_c00322{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00322{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.md0_c00322{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00322{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m79_c00322{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00322{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md5_c00322{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m103_c00322{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m107_c00322{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m127_c00322{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00322{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m52_c00322{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00322{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m23_c00322{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m66_c00322{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00322{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00322{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00322{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00322{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m73_c00322{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m62_c00322{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00322{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m111_c00322{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m24_c00322{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00322{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m29_c00322{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m43_c00322{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00322{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00322{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mac_c00322{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m63_c00322{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mec_c00322{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m68_c00322{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00322{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m90_c00322{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m98_c00322{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md4_c00322{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3_c00322{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m49_c00322{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m114_c00322{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00322{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mae_c00322{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m80_c00322{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00322{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me1_c00322{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma_c00322{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me8_c00322{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m115_c00322{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mab_c00322{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m51_c00322{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00322{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00322{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m76_c00322{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00322{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00322{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00322{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m42_c00322{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2_c00322{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m72_c00322{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m110_c00322{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m45_c00322{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m55_c00322{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00322{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00322{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00322{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m37_c00322{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00322{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00322{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me9_c00322{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m88_c00322{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00322{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m53_c00322{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m48_c00322{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00322{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m120_c00322{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);}
.m121_c00322{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m83_c00322{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m44_c00322{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mba_c00322{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00322{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m109_c00322{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m20_c00322{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m123_c00322{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m105_c00322{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00322{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me2_c00322{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00322{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00322{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00322{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00322{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me0_c00322{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00322{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00322{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m87_c00322{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00322{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m96_c00322{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00322{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m78_c00322{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m22_c00322{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m113_c00322{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00322{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00322{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m77_c00322{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00322{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00322{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00322{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00322{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m85_c00322{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m82_c00322{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m13_c00322{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00322{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m89_c00322{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m14_c00322{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m117_c00322{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m112_c00322{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m101_c00322{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m64_c00322{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m18_c00322{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m93_c00322{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00322{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00322{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00322{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m81_c00322{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00322{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m0_c00322{transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00322{transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00322{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00322{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00322{transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00322{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00322{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m12_c00322{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls4_c00322{letter-spacing:0.000000px;}
.ls1_c00322{letter-spacing:44.571429px;}
.ls2_c00322{letter-spacing:55.714286px;}
.ls0_c00322{letter-spacing:56.000000px;}
.ls3_c00322{letter-spacing:70.000000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{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__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00322{word-spacing:-100.000000px;}
.ws7_c00322{word-spacing:-85.714286px;}
.ws1_c00322{word-spacing:-80.000000px;}
.ws2_c00322{word-spacing:-68.571429px;}
.ws13_c00322{word-spacing:-9.310214px;}
.ws11_c00322{word-spacing:-8.452086px;}
.ws10_c00322{word-spacing:-6.903780px;}
.ws5_c00322{word-spacing:-5.121019px;}
.ws4_c00322{word-spacing:-1.122905px;}
.ws15_c00322{word-spacing:0.000000px;}
.ws14_c00322{word-spacing:2.500000px;}
.ws12_c00322{word-spacing:5.847134px;}
.wsf_c00322{word-spacing:6.896552px;}
.ws3_c00322{word-spacing:20.571429px;}
.wsd_c00322{word-spacing:22.142857px;}
.wsa_c00322{word-spacing:23.211796px;}
.ws0_c00322{word-spacing:25.714286px;}
.ws8_c00322{word-spacing:34.642857px;}
.ws6_c00322{word-spacing:35.833333px;}
.wsb_c00322{word-spacing:50.416667px;}
.ws9_c00322{word-spacing:66.315789px;}
.wsc_c00322{word-spacing:209.444444px;}
._a_c00322{margin-left:-70.000000px;}
._4_c00322{margin-left:-56.000000px;}
._6_c00322{margin-left:-44.571429px;}
._5_c00322{width:2.857143px;}
._9_c00322{width:4.166667px;}
._1_c00322{width:46.785714px;}
._3_c00322{width:52.142857px;}
._7_c00322{width:53.428954px;}
._8_c00322{width:55.714286px;}
._2_c00322{width:59.285714px;}
._0_c00322{width:64.642857px;}
.fc0_c00322{color:transparent;}
.fs5_c00322{font-size:30.000000px;}
.fs3_c00322{font-size:48.000000px;}
.fs6_c00322{font-size:54.000000px;}
.fs2_c00322{font-size:60.000000px;}
.fs4_c00322{font-size:66.000000px;}
.fs7_c00322{font-size:72.000000px;}
.fs1_c00322{font-size:78.000000px;}
.fs0_c00322{font-size:108.000000px;}
.y0_c00322{bottom:0.000000px;}
.y72_c00322{bottom:106.950000px;}
.y71_c00322{bottom:199.500000px;}
.y6f_c00322{bottom:204.150000px;}
.y70_c00322{bottom:207.000000px;}
.y6e_c00322{bottom:225.000000px;}
.y6d_c00322{bottom:225.300000px;}
.y6b_c00322{bottom:242.550000px;}
.y3a_c00322{bottom:246.900000px;}
.y39_c00322{bottom:259.800000px;}
.y6a_c00322{bottom:260.250000px;}
.y38_c00322{bottom:275.700000px;}
.y69_c00322{bottom:282.600000px;}
.y37_c00322{bottom:288.750000px;}
.y68_c00322{bottom:300.900000px;}
.y36_c00322{bottom:304.200000px;}
.y33_c00322{bottom:317.550000px;}
.y67_c00322{bottom:322.500000px;}
.y32_c00322{bottom:332.700000px;}
.y31_c00322{bottom:345.750000px;}
.y66_c00322{bottom:348.750000px;}
.y30_c00322{bottom:361.200000px;}
.y65_c00322{bottom:366.000000px;}
.y2f_c00322{bottom:375.600000px;}
.y64_c00322{bottom:383.700000px;}
.y35_c00322{bottom:388.050000px;}
.y34_c00322{bottom:389.550000px;}
.y2e_c00322{bottom:390.000000px;}
.y63_c00322{bottom:401.400000px;}
.y2d_c00322{bottom:402.900000px;}
.y2c_c00322{bottom:417.300000px;}
.y62_c00322{bottom:418.650000px;}
.y2b_c00322{bottom:430.950000px;}
.y61_c00322{bottom:436.350000px;}
.y2a_c00322{bottom:446.700000px;}
.y60_c00322{bottom:454.050000px;}
.y29_c00322{bottom:465.000000px;}
.y5f_c00322{bottom:471.750000px;}
.y28_c00322{bottom:483.000000px;}
.y5e_c00322{bottom:489.450000px;}
.y27_c00322{bottom:500.700000px;}
.y5d_c00322{bottom:507.450000px;}
.y5c_c00322{bottom:525.150000px;}
.y26_c00322{bottom:526.350000px;}
.y5b_c00322{bottom:542.850000px;}
.y25_c00322{bottom:544.650000px;}
.y24_c00322{bottom:562.650000px;}
.y5a_c00322{bottom:568.350000px;}
.y23_c00322{bottom:579.900000px;}
.y59_c00322{bottom:586.350000px;}
.y22_c00322{bottom:597.900000px;}
.y58_c00322{bottom:604.050000px;}
.y21_c00322{bottom:615.600000px;}
.y57_c00322{bottom:621.750000px;}
.y20_c00322{bottom:632.850000px;}
.y56_c00322{bottom:639.750000px;}
.y1f_c00322{bottom:650.850000px;}
.y55_c00322{bottom:657.000000px;}
.y1e_c00322{bottom:668.100000px;}
.y54_c00322{bottom:674.700000px;}
.y1d_c00322{bottom:689.700000px;}
.y53_c00322{bottom:692.400000px;}
.y52_c00322{bottom:710.100000px;}
.y1b_c00322{bottom:720.450000px;}
.y51_c00322{bottom:727.800000px;}
.y6c_c00322{bottom:728.250000px;}
.y1a_c00322{bottom:738.150000px;}
.y50_c00322{bottom:745.500000px;}
.y1c_c00322{bottom:746.250000px;}
.y19_c00322{bottom:756.150000px;}
.y4f_c00322{bottom:763.200000px;}
.y18_c00322{bottom:773.400000px;}
.y4e_c00322{bottom:780.900000px;}
.y17_c00322{bottom:795.300000px;}
.y4d_c00322{bottom:798.600000px;}
.y16_c00322{bottom:812.850000px;}
.y4c_c00322{bottom:816.300000px;}
.y15_c00322{bottom:830.550000px;}
.y4b_c00322{bottom:834.000000px;}
.y14_c00322{bottom:849.600000px;}
.y4a_c00322{bottom:851.700000px;}
.y13_c00322{bottom:867.750000px;}
.y49_c00322{bottom:869.700000px;}
.y12_c00322{bottom:887.250000px;}
.y48_c00322{bottom:895.650000px;}
.y11_c00322{bottom:904.950000px;}
.y47_c00322{bottom:913.350000px;}
.y10_c00322{bottom:922.650000px;}
.y46_c00322{bottom:931.050000px;}
.yf_c00322{bottom:940.350000px;}
.y45_c00322{bottom:948.750000px;}
.ye_c00322{bottom:958.050000px;}
.y44_c00322{bottom:966.000000px;}
.yd_c00322{bottom:975.750000px;}
.y43_c00322{bottom:984.000000px;}
.yc_c00322{bottom:993.450000px;}
.y42_c00322{bottom:1001.250000px;}
.yb_c00322{bottom:1011.150000px;}
.y41_c00322{bottom:1019.250000px;}
.ya_c00322{bottom:1028.850000px;}
.y40_c00322{bottom:1036.950000px;}
.y9_c00322{bottom:1046.550000px;}
.y3f_c00322{bottom:1054.650000px;}
.y8_c00322{bottom:1064.550000px;}
.y7_c00322{bottom:1067.400000px;}
.y3e_c00322{bottom:1072.350000px;}
.y6_c00322{bottom:1081.800000px;}
.y3d_c00322{bottom:1090.050000px;}
.y5_c00322{bottom:1096.500000px;}
.y3c_c00322{bottom:1108.050000px;}
.y4_c00322{bottom:1110.600000px;}
.y3b_c00322{bottom:1125.300000px;}
.y3_c00322{bottom:1126.800000px;}
.y2_c00322{bottom:1150.950000px;}
.y1_c00322{bottom:1151.250000px;}
.h7_c00322{height:30.000000px;}
.h5_c00322{height:48.000000px;}
.h8_c00322{height:54.000000px;}
.h4_c00322{height:60.000000px;}
.h6_c00322{height:66.000000px;}
.h9_c00322{height:72.000000px;}
.h3_c00322{height:78.000000px;}
.h2_c00322{height:108.000000px;}
.h0_c00322{height:1267.200073px;}
.h1_c00322{height:1267.500000px;}
.w1_c00322{width:961.500000px;}
.w0_c00322{width:961.560058px;}
.x0_c00322{left:0.000000px;}
.x153_c00322{left:59.100000px;}
.x90_c00322{left:62.250000px;}
.x74_c00322{left:64.500000px;}
.x2e_c00322{left:65.850000px;}
.x5f_c00322{left:67.350000px;}
.x85_c00322{left:73.500000px;}
.x9b_c00322{left:77.100000px;}
.x95_c00322{left:78.450000px;}
.xa_c00322{left:80.250000px;}
.x15a_c00322{left:81.300000px;}
.x49_c00322{left:82.500000px;}
.x35_c00322{left:84.150000px;}
.x44_c00322{left:85.350000px;}
.x97_c00322{left:92.550000px;}
.x21_c00322{left:94.050000px;}
.x3_c00322{left:95.100000px;}
.x76_c00322{left:100.800000px;}
.x42_c00322{left:109.500000px;}
.x4e_c00322{left:110.700000px;}
.x89_c00322{left:113.400000px;}
.x98_c00322{left:114.900000px;}
.x14_c00322{left:117.150000px;}
.xb_c00322{left:119.550000px;}
.x8e_c00322{left:121.050000px;}
.x91_c00322{left:122.400000px;}
.x53_c00322{left:124.350000px;}
.x60_c00322{left:125.700000px;}
.x3c_c00322{left:127.350000px;}
.x81_c00322{left:129.300000px;}
.x59_c00322{left:131.700000px;}
.x99_c00322{left:133.200000px;}
.xa7_c00322{left:134.550000px;}
.x15_c00322{left:136.950000px;}
.x8f_c00322{left:139.350000px;}
.x6b_c00322{left:141.450000px;}
.x69_c00322{left:142.650000px;}
.x3d_c00322{left:144.300000px;}
.x6f_c00322{left:145.950000px;}
.x54_c00322{left:147.450000px;}
.x8a_c00322{left:150.150000px;}
.x16_c00322{left:151.350000px;}
.x45_c00322{left:154.500000px;}
.x36_c00322{left:156.900000px;}
.xa5_c00322{left:157.950000px;}
.x4_c00322{left:159.600000px;}
.x5c_c00322{left:161.700000px;}
.x77_c00322{left:163.500000px;}
.x6d_c00322{left:165.450000px;}
.x86_c00322{left:168.000000px;}
.x7d_c00322{left:169.050000px;}
.xc_c00322{left:172.050000px;}
.x82_c00322{left:173.250000px;}
.x64_c00322{left:174.750000px;}
.x3e_c00322{left:176.700000px;}
.x8c_c00322{left:177.900000px;}
.x5_c00322{left:180.900000px;}
.x154_c00322{left:182.100000px;}
.x78_c00322{left:184.350000px;}
.x92_c00322{left:185.400000px;}
.x17_c00322{left:186.600000px;}
.x22_c00322{left:188.700000px;}
.x37_c00322{left:191.100000px;}
.x8b_c00322{left:192.750000px;}
.x18_c00322{left:194.100000px;}
.x15b_c00322{left:195.750000px;}
.x70_c00322{left:198.150000px;}
.x2f_c00322{left:199.800000px;}
.x19_c00322{left:201.300000px;}
.x87_c00322{left:203.700000px;}
.x43_c00322{left:206.400000px;}
.x9d_c00322{left:207.750000px;}
.x1a_c00322{left:208.800000px;}
.x79_c00322{left:209.850000px;}
.x30_c00322{left:210.900000px;}
.x61_c00322{left:213.450000px;}
.x9e_c00322{left:214.650000px;}
.x1b_c00322{left:216.000000px;}
.x23_c00322{left:218.100000px;}
.x55_c00322{left:219.450000px;}
.x96_c00322{left:222.150000px;}
.xd_c00322{left:223.950000px;}
.x24_c00322{left:225.000000px;}
.x155_c00322{left:227.400000px;}
.x9f_c00322{left:228.750000px;}
.x8d_c00322{left:229.800000px;}
.x15c_c00322{left:231.450000px;}
.x25_c00322{left:232.500000px;}
.x46_c00322{left:234.750000px;}
.x4a_c00322{left:235.800000px;}
.x88_c00322{left:236.850000px;}
.x26_c00322{left:239.400000px;}
.x3f_c00322{left:241.500000px;}
.x9c_c00322{left:243.750000px;}
.x1c_c00322{left:245.100000px;}
.x27_c00322{left:246.900000px;}
.x31_c00322{left:249.000000px;}
.xa0_c00322{left:251.100000px;}
.x1d_c00322{left:252.600000px;}
.x4f_c00322{left:255.000000px;}
.x83_c00322{left:256.800000px;}
.x6c_c00322{left:257.850000px;}
.x1e_c00322{left:259.500000px;}
.x6_c00322{left:261.900000px;}
.x40_c00322{left:264.150000px;}
.xa6_c00322{left:265.200000px;}
.x71_c00322{left:266.250000px;}
.x7e_c00322{left:268.200000px;}
.x47_c00322{left:271.500000px;}
.x75_c00322{left:272.850000px;}
.x9a_c00322{left:274.500000px;}
.x50_c00322{left:275.550000px;}
.x4b_c00322{left:279.300000px;}
.x93_c00322{left:280.350000px;}
.x84_c00322{left:282.300000px;}
.x5d_c00322{left:283.500000px;}
.x56_c00322{left:285.000000px;}
.xa2_c00322{left:286.650000px;}
.x72_c00322{left:288.150000px;}
.xe_c00322{left:289.500000px;}
.x6a_c00322{left:293.100000px;}
.x7a_c00322{left:294.900000px;}
.xf_c00322{left:296.400000px;}
.x4c_c00322{left:299.400000px;}
.x65_c00322{left:301.350000px;}
.x1f_c00322{left:303.300000px;}
.x1_c00322{left:304.500000px;}
.x62_c00322{left:306.300000px;}
.x32_c00322{left:307.350000px;}
.x10_c00322{left:311.100000px;}
.x5a_c00322{left:313.200000px;}
.x51_c00322{left:314.400000px;}
.x6e_c00322{left:315.900000px;}
.x57_c00322{left:317.100000px;}
.x66_c00322{left:320.100000px;}
.x7_c00322{left:321.600000px;}
.x7f_c00322{left:323.250000px;}
.x38_c00322{left:324.450000px;}
.xa4_c00322{left:326.100000px;}
.x33_c00322{left:327.450000px;}
.xa1_c00322{left:328.800000px;}
.x11_c00322{left:330.150000px;}
.x2a_c00322{left:331.500000px;}
.x39_c00322{left:334.200000px;}
.x67_c00322{left:336.600000px;}
.x58_c00322{left:338.400000px;}
.x2d_c00322{left:339.450000px;}
.x4d_c00322{left:341.100000px;}
.x48_c00322{left:345.000000px;}
.x34_c00322{left:346.950000px;}
.x3a_c00322{left:350.100000px;}
.x8_c00322{left:352.200000px;}
.x5b_c00322{left:354.600000px;}
.x7b_c00322{left:356.850000px;}
.x20_c00322{left:358.650000px;}
.x12_c00322{left:359.700000px;}
.x28_c00322{left:360.750000px;}
.x2b_c00322{left:362.400000px;}
.x5e_c00322{left:364.050000px;}
.x7c_c00322{left:367.350000px;}
.x63_c00322{left:370.050000px;}
.x73_c00322{left:373.500000px;}
.x3b_c00322{left:378.600000px;}
.x52_c00322{left:380.250000px;}
.x13_c00322{left:382.800000px;}
.x94_c00322{left:384.600000px;}
.xa3_c00322{left:385.950000px;}
.x9_c00322{left:387.150000px;}
.x29_c00322{left:388.800000px;}
.x2c_c00322{left:390.900000px;}
.x41_c00322{left:392.400000px;}
.x15d_c00322{left:393.750000px;}
.x80_c00322{left:396.750000px;}
.x15e_c00322{left:404.850000px;}
.x68_c00322{left:411.150000px;}
.x157_c00322{left:418.350000px;}
.x147_c00322{left:420.150000px;}
.x12e_c00322{left:421.950000px;}
.xf4_c00322{left:423.750000px;}
.x14e_c00322{left:434.250000px;}
.x14c_c00322{left:436.950000px;}
.x12d_c00322{left:438.750000px;}
.x128_c00322{left:439.800000px;}
.xf7_c00322{left:441.000000px;}
.xa8_c00322{left:442.050000px;}
.xb4_c00322{left:453.000000px;}
.x142_c00322{left:455.550000px;}
.x114_c00322{left:457.800000px;}
.x133_c00322{left:459.300000px;}
.x120_c00322{left:460.800000px;}
.x125_c00322{left:462.150000px;}
.xb9_c00322{left:465.450000px;}
.xe9_c00322{left:470.550000px;}
.xc5_c00322{left:471.900000px;}
.x116_c00322{left:473.550000px;}
.xe3_c00322{left:474.900000px;}
.x111_c00322{left:477.000000px;}
.xa9_c00322{left:478.050000px;}
.xb5_c00322{left:481.500000px;}
.xcd_c00322{left:482.700000px;}
.x106_c00322{left:484.800000px;}
.x140_c00322{left:485.850000px;}
.x12f_c00322{left:487.800000px;}
.x112_c00322{left:491.700000px;}
.xd9_c00322{left:493.200000px;}
.x118_c00322{left:494.400000px;}
.x148_c00322{left:496.050000px;}
.xf5_c00322{left:497.550000px;}
.xd1_c00322{left:499.350000px;}
.x149_c00322{left:500.850000px;}
.x14f_c00322{left:501.900000px;}
.xe4_c00322{left:502.950000px;}
.xc6_c00322{left:504.300000px;}
.xbf_c00322{left:507.150000px;}
.xee_c00322{left:508.500000px;}
.x113_c00322{left:510.450000px;}
.xba_c00322{left:513.000000px;}
.x121_c00322{left:514.050000px;}
.x158_c00322{left:515.850000px;}
.xce_c00322{left:517.200000px;}
.xaf_c00322{left:518.400000px;}
.x126_c00322{left:519.750000px;}
.x11d_c00322{left:522.000000px;}
.xe5_c00322{left:523.050000px;}
.xfd_c00322{left:524.700000px;}
.x130_c00322{left:526.800000px;}
.xc7_c00322{left:528.450000px;}
.x107_c00322{left:531.600000px;}
.x100_c00322{left:533.100000px;}
.x134_c00322{left:534.900000px;}
.x127_c00322{left:537.000000px;}
.xaa_c00322{left:538.200000px;}
.x119_c00322{left:542.250000px;}
.x143_c00322{left:543.600000px;}
.x146_c00322{left:544.650000px;}
.xb0_c00322{left:546.900000px;}
.xb6_c00322{left:549.150000px;}
.xd2_c00322{left:552.600000px;}
.xda_c00322{left:554.700000px;}
.xf8_c00322{left:557.250000px;}
.xb7_c00322{left:558.900000px;}
.x138_c00322{left:561.150000px;}
.x129_c00322{left:562.200000px;}
.xea_c00322{left:563.400000px;}
.x159_c00322{left:564.900000px;}
.x13e_c00322{left:566.550000px;}
.xde_c00322{left:569.250000px;}
.xe6_c00322{left:570.600000px;}
.x11a_c00322{left:572.100000px;}
.xbb_c00322{left:573.900000px;}
.xef_c00322{left:575.100000px;}
.x122_c00322{left:576.750000px;}
.xf9_c00322{left:577.800000px;}
.x135_c00322{left:578.850000px;}
.x144_c00322{left:580.650000px;}
.xc0_c00322{left:582.450000px;}
.xeb_c00322{left:583.500000px;}
.xdf_c00322{left:584.700000px;}
.xf3_c00322{left:585.900000px;}
.xab_c00322{left:588.600000px;}
.xc8_c00322{left:589.650000px;}
.x10a_c00322{left:592.050000px;}
.x14a_c00322{left:594.150000px;}
.x11e_c00322{left:595.500000px;}
.x123_c00322{left:597.300000px;}
.x141_c00322{left:599.100000px;}
.xb1_c00322{left:600.150000px;}
.x145_c00322{left:601.200000px;}
.x156_c00322{left:602.250000px;}
.x13a_c00322{left:603.300000px;}
.x104_c00322{left:605.100000px;}
.xc9_c00322{left:606.150000px;}
.x13c_c00322{left:607.500000px;}
.x151_c00322{left:608.700000px;}
.xd3_c00322{left:610.950000px;}
.x150_c00322{left:612.150000px;}
.x12a_c00322{left:614.100000px;}
.xfe_c00322{left:615.450000px;}
.x11b_c00322{left:616.650000px;}
.xcf_c00322{left:617.700000px;}
.xec_c00322{left:619.800000px;}
.xc1_c00322{left:621.000000px;}
.xe0_c00322{left:622.200000px;}
.x101_c00322{left:623.550000px;}
.x11f_c00322{left:624.600000px;}
.xd4_c00322{left:625.650000px;}
.xe7_c00322{left:627.450000px;}
.xbc_c00322{left:631.800000px;}
.xf0_c00322{left:634.500000px;}
.x13f_c00322{left:636.450000px;}
.x10b_c00322{left:638.850000px;}
.x108_c00322{left:640.050000px;}
.xe1_c00322{left:641.250000px;}
.xac_c00322{left:642.900000px;}
.xd5_c00322{left:644.400000px;}
.x102_c00322{left:646.200000px;}
.xdb_c00322{left:649.050000px;}
.xfa_c00322{left:650.100000px;}
.x11c_c00322{left:651.150000px;}
.xe8_c00322{left:652.350000px;}
.x10e_c00322{left:653.700000px;}
.xc2_c00322{left:655.200000px;}
.xb2_c00322{left:656.700000px;}
.x13b_c00322{left:658.350000px;}
.xf6_c00322{left:659.850000px;}
.xad_c00322{left:662.400000px;}
.x12b_c00322{left:664.500000px;}
.x136_c00322{left:666.600000px;}
.xf1_c00322{left:670.500000px;}
.xed_c00322{left:672.000000px;}
.xdc_c00322{left:674.250000px;}
.xca_c00322{left:675.600000px;}
.xd6_c00322{left:678.300000px;}
.xfb_c00322{left:681.300000px;}
.xc3_c00322{left:685.050000px;}
.x13d_c00322{left:686.400000px;}
.x15f_c00322{left:687.600000px;}
.xbd_c00322{left:688.650000px;}
.x105_c00322{left:690.450000px;}
.xb8_c00322{left:691.500000px;}
.xdd_c00322{left:693.000000px;}
.x124_c00322{left:695.550000px;}
.xd7_c00322{left:696.600000px;}
.xb3_c00322{left:698.850000px;}
.x10f_c00322{left:701.550000px;}
.x10c_c00322{left:706.650000px;}
.x137_c00322{left:707.700000px;}
.x12c_c00322{left:709.500000px;}
.x110_c00322{left:710.550000px;}
.xae_c00322{left:712.500000px;}
.xd0_c00322{left:713.850000px;}
.xcb_c00322{left:715.200000px;}
.x131_c00322{left:716.400000px;}
.x117_c00322{left:718.350000px;}
.xe2_c00322{left:720.000000px;}
.xf2_c00322{left:721.650000px;}
.x139_c00322{left:722.850000px;}
.x10d_c00322{left:724.950000px;}
.xbe_c00322{left:726.450000px;}
.xff_c00322{left:728.100000px;}
.x2_c00322{left:729.600000px;}
.x103_c00322{left:731.850000px;}
.xcc_c00322{left:734.250000px;}
.x115_c00322{left:736.050000px;}
.x109_c00322{left:738.750000px;}
.x14b_c00322{left:740.400000px;}
.xfc_c00322{left:741.750000px;}
.x14d_c00322{left:743.550000px;}
.xd8_c00322{left:748.050000px;}
.x132_c00322{left:753.450000px;}
.xc4_c00322{left:755.250000px;}
.x152_c00322{left:764.100000px;}
.x160_c00322{left:805.650000px;}
.x161_c00322{left:814.650000px;}
.x162_c00322{left:845.550000px;}
.x163_c00322{left:867.150000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls4_c00322{letter-spacing:0.000000pt;}
.ls1_c00322{letter-spacing:39.619048pt;}
.ls2_c00322{letter-spacing:49.523810pt;}
.ls0_c00322{letter-spacing:49.777778pt;}
.ls3_c00322{letter-spacing:62.222222pt;}
.wse_c00322{word-spacing:-88.888889pt;}
.ws7_c00322{word-spacing:-76.190476pt;}
.ws1_c00322{word-spacing:-71.111111pt;}
.ws2_c00322{word-spacing:-60.952381pt;}
.ws13_c00322{word-spacing:-8.275746pt;}
.ws11_c00322{word-spacing:-7.512965pt;}
.ws10_c00322{word-spacing:-6.136693pt;}
.ws5_c00322{word-spacing:-4.552017pt;}
.ws4_c00322{word-spacing:-0.998138pt;}
.ws15_c00322{word-spacing:0.000000pt;}
.ws14_c00322{word-spacing:2.222222pt;}
.ws12_c00322{word-spacing:5.197452pt;}
.wsf_c00322{word-spacing:6.130268pt;}
.ws3_c00322{word-spacing:18.285714pt;}
.wsd_c00322{word-spacing:19.682540pt;}
.wsa_c00322{word-spacing:20.632708pt;}
.ws0_c00322{word-spacing:22.857143pt;}
.ws8_c00322{word-spacing:30.793651pt;}
.ws6_c00322{word-spacing:31.851852pt;}
.wsb_c00322{word-spacing:44.814815pt;}
.ws9_c00322{word-spacing:58.947368pt;}
.wsc_c00322{word-spacing:186.172840pt;}
._a_c00322{margin-left:-62.222222pt;}
._4_c00322{margin-left:-49.777778pt;}
._6_c00322{margin-left:-39.619048pt;}
._5_c00322{width:2.539683pt;}
._9_c00322{width:3.703704pt;}
._1_c00322{width:41.587302pt;}
._3_c00322{width:46.349206pt;}
._7_c00322{width:47.492404pt;}
._8_c00322{width:49.523810pt;}
._2_c00322{width:52.698413pt;}
._0_c00322{width:57.460317pt;}
.fs5_c00322{font-size:26.666667pt;}
.fs3_c00322{font-size:42.666667pt;}
.fs6_c00322{font-size:48.000000pt;}
.fs2_c00322{font-size:53.333333pt;}
.fs4_c00322{font-size:58.666667pt;}
.fs7_c00322{font-size:64.000000pt;}
.fs1_c00322{font-size:69.333333pt;}
.fs0_c00322{font-size:96.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y72_c00322{bottom:95.066667pt;}
.y71_c00322{bottom:177.333333pt;}
.y6f_c00322{bottom:181.466667pt;}
.y70_c00322{bottom:184.000000pt;}
.y6e_c00322{bottom:200.000000pt;}
.y6d_c00322{bottom:200.266667pt;}
.y6b_c00322{bottom:215.600000pt;}
.y3a_c00322{bottom:219.466667pt;}
.y39_c00322{bottom:230.933333pt;}
.y6a_c00322{bottom:231.333333pt;}
.y38_c00322{bottom:245.066667pt;}
.y69_c00322{bottom:251.200000pt;}
.y37_c00322{bottom:256.666667pt;}
.y68_c00322{bottom:267.466667pt;}
.y36_c00322{bottom:270.400000pt;}
.y33_c00322{bottom:282.266667pt;}
.y67_c00322{bottom:286.666667pt;}
.y32_c00322{bottom:295.733333pt;}
.y31_c00322{bottom:307.333333pt;}
.y66_c00322{bottom:310.000000pt;}
.y30_c00322{bottom:321.066667pt;}
.y65_c00322{bottom:325.333333pt;}
.y2f_c00322{bottom:333.866667pt;}
.y64_c00322{bottom:341.066667pt;}
.y35_c00322{bottom:344.933333pt;}
.y34_c00322{bottom:346.266667pt;}
.y2e_c00322{bottom:346.666667pt;}
.y63_c00322{bottom:356.800000pt;}
.y2d_c00322{bottom:358.133333pt;}
.y2c_c00322{bottom:370.933333pt;}
.y62_c00322{bottom:372.133333pt;}
.y2b_c00322{bottom:383.066667pt;}
.y61_c00322{bottom:387.866667pt;}
.y2a_c00322{bottom:397.066667pt;}
.y60_c00322{bottom:403.600000pt;}
.y29_c00322{bottom:413.333333pt;}
.y5f_c00322{bottom:419.333333pt;}
.y28_c00322{bottom:429.333333pt;}
.y5e_c00322{bottom:435.066667pt;}
.y27_c00322{bottom:445.066667pt;}
.y5d_c00322{bottom:451.066667pt;}
.y5c_c00322{bottom:466.800000pt;}
.y26_c00322{bottom:467.866667pt;}
.y5b_c00322{bottom:482.533333pt;}
.y25_c00322{bottom:484.133333pt;}
.y24_c00322{bottom:500.133333pt;}
.y5a_c00322{bottom:505.200000pt;}
.y23_c00322{bottom:515.466667pt;}
.y59_c00322{bottom:521.200000pt;}
.y22_c00322{bottom:531.466667pt;}
.y58_c00322{bottom:536.933333pt;}
.y21_c00322{bottom:547.200000pt;}
.y57_c00322{bottom:552.666667pt;}
.y20_c00322{bottom:562.533333pt;}
.y56_c00322{bottom:568.666667pt;}
.y1f_c00322{bottom:578.533333pt;}
.y55_c00322{bottom:584.000000pt;}
.y1e_c00322{bottom:593.866667pt;}
.y54_c00322{bottom:599.733333pt;}
.y1d_c00322{bottom:613.066667pt;}
.y53_c00322{bottom:615.466667pt;}
.y52_c00322{bottom:631.200000pt;}
.y1b_c00322{bottom:640.400000pt;}
.y51_c00322{bottom:646.933333pt;}
.y6c_c00322{bottom:647.333333pt;}
.y1a_c00322{bottom:656.133333pt;}
.y50_c00322{bottom:662.666667pt;}
.y1c_c00322{bottom:663.333333pt;}
.y19_c00322{bottom:672.133333pt;}
.y4f_c00322{bottom:678.400000pt;}
.y18_c00322{bottom:687.466667pt;}
.y4e_c00322{bottom:694.133333pt;}
.y17_c00322{bottom:706.933333pt;}
.y4d_c00322{bottom:709.866667pt;}
.y16_c00322{bottom:722.533333pt;}
.y4c_c00322{bottom:725.600000pt;}
.y15_c00322{bottom:738.266667pt;}
.y4b_c00322{bottom:741.333333pt;}
.y14_c00322{bottom:755.200000pt;}
.y4a_c00322{bottom:757.066667pt;}
.y13_c00322{bottom:771.333333pt;}
.y49_c00322{bottom:773.066667pt;}
.y12_c00322{bottom:788.666667pt;}
.y48_c00322{bottom:796.133333pt;}
.y11_c00322{bottom:804.400000pt;}
.y47_c00322{bottom:811.866667pt;}
.y10_c00322{bottom:820.133333pt;}
.y46_c00322{bottom:827.600000pt;}
.yf_c00322{bottom:835.866667pt;}
.y45_c00322{bottom:843.333333pt;}
.ye_c00322{bottom:851.600000pt;}
.y44_c00322{bottom:858.666667pt;}
.yd_c00322{bottom:867.333333pt;}
.y43_c00322{bottom:874.666667pt;}
.yc_c00322{bottom:883.066667pt;}
.y42_c00322{bottom:890.000000pt;}
.yb_c00322{bottom:898.800000pt;}
.y41_c00322{bottom:906.000000pt;}
.ya_c00322{bottom:914.533333pt;}
.y40_c00322{bottom:921.733333pt;}
.y9_c00322{bottom:930.266667pt;}
.y3f_c00322{bottom:937.466667pt;}
.y8_c00322{bottom:946.266667pt;}
.y7_c00322{bottom:948.800000pt;}
.y3e_c00322{bottom:953.200000pt;}
.y6_c00322{bottom:961.600000pt;}
.y3d_c00322{bottom:968.933333pt;}
.y5_c00322{bottom:974.666667pt;}
.y3c_c00322{bottom:984.933333pt;}
.y4_c00322{bottom:987.200000pt;}
.y3b_c00322{bottom:1000.266667pt;}
.y3_c00322{bottom:1001.600000pt;}
.y2_c00322{bottom:1023.066667pt;}
.y1_c00322{bottom:1023.333333pt;}
.h7_c00322{height:26.666667pt;}
.h5_c00322{height:42.666667pt;}
.h8_c00322{height:48.000000pt;}
.h4_c00322{height:53.333333pt;}
.h6_c00322{height:58.666667pt;}
.h9_c00322{height:64.000000pt;}
.h3_c00322{height:69.333333pt;}
.h2_c00322{height:96.000000pt;}
.h0_c00322{height:1126.400065pt;}
.h1_c00322{height:1126.666667pt;}
.w1_c00322{width:854.666667pt;}
.w0_c00322{width:854.720052pt;}
.x0_c00322{left:0.000000pt;}
.x153_c00322{left:52.533333pt;}
.x90_c00322{left:55.333333pt;}
.x74_c00322{left:57.333333pt;}
.x2e_c00322{left:58.533333pt;}
.x5f_c00322{left:59.866667pt;}
.x85_c00322{left:65.333333pt;}
.x9b_c00322{left:68.533333pt;}
.x95_c00322{left:69.733333pt;}
.xa_c00322{left:71.333333pt;}
.x15a_c00322{left:72.266667pt;}
.x49_c00322{left:73.333333pt;}
.x35_c00322{left:74.800000pt;}
.x44_c00322{left:75.866667pt;}
.x97_c00322{left:82.266667pt;}
.x21_c00322{left:83.600000pt;}
.x3_c00322{left:84.533333pt;}
.x76_c00322{left:89.600000pt;}
.x42_c00322{left:97.333333pt;}
.x4e_c00322{left:98.400000pt;}
.x89_c00322{left:100.800000pt;}
.x98_c00322{left:102.133333pt;}
.x14_c00322{left:104.133333pt;}
.xb_c00322{left:106.266667pt;}
.x8e_c00322{left:107.600000pt;}
.x91_c00322{left:108.800000pt;}
.x53_c00322{left:110.533333pt;}
.x60_c00322{left:111.733333pt;}
.x3c_c00322{left:113.200000pt;}
.x81_c00322{left:114.933333pt;}
.x59_c00322{left:117.066667pt;}
.x99_c00322{left:118.400000pt;}
.xa7_c00322{left:119.600000pt;}
.x15_c00322{left:121.733333pt;}
.x8f_c00322{left:123.866667pt;}
.x6b_c00322{left:125.733333pt;}
.x69_c00322{left:126.800000pt;}
.x3d_c00322{left:128.266667pt;}
.x6f_c00322{left:129.733333pt;}
.x54_c00322{left:131.066667pt;}
.x8a_c00322{left:133.466667pt;}
.x16_c00322{left:134.533333pt;}
.x45_c00322{left:137.333333pt;}
.x36_c00322{left:139.466667pt;}
.xa5_c00322{left:140.400000pt;}
.x4_c00322{left:141.866667pt;}
.x5c_c00322{left:143.733333pt;}
.x77_c00322{left:145.333333pt;}
.x6d_c00322{left:147.066667pt;}
.x86_c00322{left:149.333333pt;}
.x7d_c00322{left:150.266667pt;}
.xc_c00322{left:152.933333pt;}
.x82_c00322{left:154.000000pt;}
.x64_c00322{left:155.333333pt;}
.x3e_c00322{left:157.066667pt;}
.x8c_c00322{left:158.133333pt;}
.x5_c00322{left:160.800000pt;}
.x154_c00322{left:161.866667pt;}
.x78_c00322{left:163.866667pt;}
.x92_c00322{left:164.800000pt;}
.x17_c00322{left:165.866667pt;}
.x22_c00322{left:167.733333pt;}
.x37_c00322{left:169.866667pt;}
.x8b_c00322{left:171.333333pt;}
.x18_c00322{left:172.533333pt;}
.x15b_c00322{left:174.000000pt;}
.x70_c00322{left:176.133333pt;}
.x2f_c00322{left:177.600000pt;}
.x19_c00322{left:178.933333pt;}
.x87_c00322{left:181.066667pt;}
.x43_c00322{left:183.466667pt;}
.x9d_c00322{left:184.666667pt;}
.x1a_c00322{left:185.600000pt;}
.x79_c00322{left:186.533333pt;}
.x30_c00322{left:187.466667pt;}
.x61_c00322{left:189.733333pt;}
.x9e_c00322{left:190.800000pt;}
.x1b_c00322{left:192.000000pt;}
.x23_c00322{left:193.866667pt;}
.x55_c00322{left:195.066667pt;}
.x96_c00322{left:197.466667pt;}
.xd_c00322{left:199.066667pt;}
.x24_c00322{left:200.000000pt;}
.x155_c00322{left:202.133333pt;}
.x9f_c00322{left:203.333333pt;}
.x8d_c00322{left:204.266667pt;}
.x15c_c00322{left:205.733333pt;}
.x25_c00322{left:206.666667pt;}
.x46_c00322{left:208.666667pt;}
.x4a_c00322{left:209.600000pt;}
.x88_c00322{left:210.533333pt;}
.x26_c00322{left:212.800000pt;}
.x3f_c00322{left:214.666667pt;}
.x9c_c00322{left:216.666667pt;}
.x1c_c00322{left:217.866667pt;}
.x27_c00322{left:219.466667pt;}
.x31_c00322{left:221.333333pt;}
.xa0_c00322{left:223.200000pt;}
.x1d_c00322{left:224.533333pt;}
.x4f_c00322{left:226.666667pt;}
.x83_c00322{left:228.266667pt;}
.x6c_c00322{left:229.200000pt;}
.x1e_c00322{left:230.666667pt;}
.x6_c00322{left:232.800000pt;}
.x40_c00322{left:234.800000pt;}
.xa6_c00322{left:235.733333pt;}
.x71_c00322{left:236.666667pt;}
.x7e_c00322{left:238.400000pt;}
.x47_c00322{left:241.333333pt;}
.x75_c00322{left:242.533333pt;}
.x9a_c00322{left:244.000000pt;}
.x50_c00322{left:244.933333pt;}
.x4b_c00322{left:248.266667pt;}
.x93_c00322{left:249.200000pt;}
.x84_c00322{left:250.933333pt;}
.x5d_c00322{left:252.000000pt;}
.x56_c00322{left:253.333333pt;}
.xa2_c00322{left:254.800000pt;}
.x72_c00322{left:256.133333pt;}
.xe_c00322{left:257.333333pt;}
.x6a_c00322{left:260.533333pt;}
.x7a_c00322{left:262.133333pt;}
.xf_c00322{left:263.466667pt;}
.x4c_c00322{left:266.133333pt;}
.x65_c00322{left:267.866667pt;}
.x1f_c00322{left:269.600000pt;}
.x1_c00322{left:270.666667pt;}
.x62_c00322{left:272.266667pt;}
.x32_c00322{left:273.200000pt;}
.x10_c00322{left:276.533333pt;}
.x5a_c00322{left:278.400000pt;}
.x51_c00322{left:279.466667pt;}
.x6e_c00322{left:280.800000pt;}
.x57_c00322{left:281.866667pt;}
.x66_c00322{left:284.533333pt;}
.x7_c00322{left:285.866667pt;}
.x7f_c00322{left:287.333333pt;}
.x38_c00322{left:288.400000pt;}
.xa4_c00322{left:289.866667pt;}
.x33_c00322{left:291.066667pt;}
.xa1_c00322{left:292.266667pt;}
.x11_c00322{left:293.466667pt;}
.x2a_c00322{left:294.666667pt;}
.x39_c00322{left:297.066667pt;}
.x67_c00322{left:299.200000pt;}
.x58_c00322{left:300.800000pt;}
.x2d_c00322{left:301.733333pt;}
.x4d_c00322{left:303.200000pt;}
.x48_c00322{left:306.666667pt;}
.x34_c00322{left:308.400000pt;}
.x3a_c00322{left:311.200000pt;}
.x8_c00322{left:313.066667pt;}
.x5b_c00322{left:315.200000pt;}
.x7b_c00322{left:317.200000pt;}
.x20_c00322{left:318.800000pt;}
.x12_c00322{left:319.733333pt;}
.x28_c00322{left:320.666667pt;}
.x2b_c00322{left:322.133333pt;}
.x5e_c00322{left:323.600000pt;}
.x7c_c00322{left:326.533333pt;}
.x63_c00322{left:328.933333pt;}
.x73_c00322{left:332.000000pt;}
.x3b_c00322{left:336.533333pt;}
.x52_c00322{left:338.000000pt;}
.x13_c00322{left:340.266667pt;}
.x94_c00322{left:341.866667pt;}
.xa3_c00322{left:343.066667pt;}
.x9_c00322{left:344.133333pt;}
.x29_c00322{left:345.600000pt;}
.x2c_c00322{left:347.466667pt;}
.x41_c00322{left:348.800000pt;}
.x15d_c00322{left:350.000000pt;}
.x80_c00322{left:352.666667pt;}
.x15e_c00322{left:359.866667pt;}
.x68_c00322{left:365.466667pt;}
.x157_c00322{left:371.866667pt;}
.x147_c00322{left:373.466667pt;}
.x12e_c00322{left:375.066667pt;}
.xf4_c00322{left:376.666667pt;}
.x14e_c00322{left:386.000000pt;}
.x14c_c00322{left:388.400000pt;}
.x12d_c00322{left:390.000000pt;}
.x128_c00322{left:390.933333pt;}
.xf7_c00322{left:392.000000pt;}
.xa8_c00322{left:392.933333pt;}
.xb4_c00322{left:402.666667pt;}
.x142_c00322{left:404.933333pt;}
.x114_c00322{left:406.933333pt;}
.x133_c00322{left:408.266667pt;}
.x120_c00322{left:409.600000pt;}
.x125_c00322{left:410.800000pt;}
.xb9_c00322{left:413.733333pt;}
.xe9_c00322{left:418.266667pt;}
.xc5_c00322{left:419.466667pt;}
.x116_c00322{left:420.933333pt;}
.xe3_c00322{left:422.133333pt;}
.x111_c00322{left:424.000000pt;}
.xa9_c00322{left:424.933333pt;}
.xb5_c00322{left:428.000000pt;}
.xcd_c00322{left:429.066667pt;}
.x106_c00322{left:430.933333pt;}
.x140_c00322{left:431.866667pt;}
.x12f_c00322{left:433.600000pt;}
.x112_c00322{left:437.066667pt;}
.xd9_c00322{left:438.400000pt;}
.x118_c00322{left:439.466667pt;}
.x148_c00322{left:440.933333pt;}
.xf5_c00322{left:442.266667pt;}
.xd1_c00322{left:443.866667pt;}
.x149_c00322{left:445.200000pt;}
.x14f_c00322{left:446.133333pt;}
.xe4_c00322{left:447.066667pt;}
.xc6_c00322{left:448.266667pt;}
.xbf_c00322{left:450.800000pt;}
.xee_c00322{left:452.000000pt;}
.x113_c00322{left:453.733333pt;}
.xba_c00322{left:456.000000pt;}
.x121_c00322{left:456.933333pt;}
.x158_c00322{left:458.533333pt;}
.xce_c00322{left:459.733333pt;}
.xaf_c00322{left:460.800000pt;}
.x126_c00322{left:462.000000pt;}
.x11d_c00322{left:464.000000pt;}
.xe5_c00322{left:464.933333pt;}
.xfd_c00322{left:466.400000pt;}
.x130_c00322{left:468.266667pt;}
.xc7_c00322{left:469.733333pt;}
.x107_c00322{left:472.533333pt;}
.x100_c00322{left:473.866667pt;}
.x134_c00322{left:475.466667pt;}
.x127_c00322{left:477.333333pt;}
.xaa_c00322{left:478.400000pt;}
.x119_c00322{left:482.000000pt;}
.x143_c00322{left:483.200000pt;}
.x146_c00322{left:484.133333pt;}
.xb0_c00322{left:486.133333pt;}
.xb6_c00322{left:488.133333pt;}
.xd2_c00322{left:491.200000pt;}
.xda_c00322{left:493.066667pt;}
.xf8_c00322{left:495.333333pt;}
.xb7_c00322{left:496.800000pt;}
.x138_c00322{left:498.800000pt;}
.x129_c00322{left:499.733333pt;}
.xea_c00322{left:500.800000pt;}
.x159_c00322{left:502.133333pt;}
.x13e_c00322{left:503.600000pt;}
.xde_c00322{left:506.000000pt;}
.xe6_c00322{left:507.200000pt;}
.x11a_c00322{left:508.533333pt;}
.xbb_c00322{left:510.133333pt;}
.xef_c00322{left:511.200000pt;}
.x122_c00322{left:512.666667pt;}
.xf9_c00322{left:513.600000pt;}
.x135_c00322{left:514.533333pt;}
.x144_c00322{left:516.133333pt;}
.xc0_c00322{left:517.733333pt;}
.xeb_c00322{left:518.666667pt;}
.xdf_c00322{left:519.733333pt;}
.xf3_c00322{left:520.800000pt;}
.xab_c00322{left:523.200000pt;}
.xc8_c00322{left:524.133333pt;}
.x10a_c00322{left:526.266667pt;}
.x14a_c00322{left:528.133333pt;}
.x11e_c00322{left:529.333333pt;}
.x123_c00322{left:530.933333pt;}
.x141_c00322{left:532.533333pt;}
.xb1_c00322{left:533.466667pt;}
.x145_c00322{left:534.400000pt;}
.x156_c00322{left:535.333333pt;}
.x13a_c00322{left:536.266667pt;}
.x104_c00322{left:537.866667pt;}
.xc9_c00322{left:538.800000pt;}
.x13c_c00322{left:540.000000pt;}
.x151_c00322{left:541.066667pt;}
.xd3_c00322{left:543.066667pt;}
.x150_c00322{left:544.133333pt;}
.x12a_c00322{left:545.866667pt;}
.xfe_c00322{left:547.066667pt;}
.x11b_c00322{left:548.133333pt;}
.xcf_c00322{left:549.066667pt;}
.xec_c00322{left:550.933333pt;}
.xc1_c00322{left:552.000000pt;}
.xe0_c00322{left:553.066667pt;}
.x101_c00322{left:554.266667pt;}
.x11f_c00322{left:555.200000pt;}
.xd4_c00322{left:556.133333pt;}
.xe7_c00322{left:557.733333pt;}
.xbc_c00322{left:561.600000pt;}
.xf0_c00322{left:564.000000pt;}
.x13f_c00322{left:565.733333pt;}
.x10b_c00322{left:567.866667pt;}
.x108_c00322{left:568.933333pt;}
.xe1_c00322{left:570.000000pt;}
.xac_c00322{left:571.466667pt;}
.xd5_c00322{left:572.800000pt;}
.x102_c00322{left:574.400000pt;}
.xdb_c00322{left:576.933333pt;}
.xfa_c00322{left:577.866667pt;}
.x11c_c00322{left:578.800000pt;}
.xe8_c00322{left:579.866667pt;}
.x10e_c00322{left:581.066667pt;}
.xc2_c00322{left:582.400000pt;}
.xb2_c00322{left:583.733333pt;}
.x13b_c00322{left:585.200000pt;}
.xf6_c00322{left:586.533333pt;}
.xad_c00322{left:588.800000pt;}
.x12b_c00322{left:590.666667pt;}
.x136_c00322{left:592.533333pt;}
.xf1_c00322{left:596.000000pt;}
.xed_c00322{left:597.333333pt;}
.xdc_c00322{left:599.333333pt;}
.xca_c00322{left:600.533333pt;}
.xd6_c00322{left:602.933333pt;}
.xfb_c00322{left:605.600000pt;}
.xc3_c00322{left:608.933333pt;}
.x13d_c00322{left:610.133333pt;}
.x15f_c00322{left:611.200000pt;}
.xbd_c00322{left:612.133333pt;}
.x105_c00322{left:613.733333pt;}
.xb8_c00322{left:614.666667pt;}
.xdd_c00322{left:616.000000pt;}
.x124_c00322{left:618.266667pt;}
.xd7_c00322{left:619.200000pt;}
.xb3_c00322{left:621.200000pt;}
.x10f_c00322{left:623.600000pt;}
.x10c_c00322{left:628.133333pt;}
.x137_c00322{left:629.066667pt;}
.x12c_c00322{left:630.666667pt;}
.x110_c00322{left:631.600000pt;}
.xae_c00322{left:633.333333pt;}
.xd0_c00322{left:634.533333pt;}
.xcb_c00322{left:635.733333pt;}
.x131_c00322{left:636.800000pt;}
.x117_c00322{left:638.533333pt;}
.xe2_c00322{left:640.000000pt;}
.xf2_c00322{left:641.466667pt;}
.x139_c00322{left:642.533333pt;}
.x10d_c00322{left:644.400000pt;}
.xbe_c00322{left:645.733333pt;}
.xff_c00322{left:647.200000pt;}
.x2_c00322{left:648.533333pt;}
.x103_c00322{left:650.533333pt;}
.xcc_c00322{left:652.666667pt;}
.x115_c00322{left:654.266667pt;}
.x109_c00322{left:656.666667pt;}
.x14b_c00322{left:658.133333pt;}
.xfc_c00322{left:659.333333pt;}
.x14d_c00322{left:660.933333pt;}
.xd8_c00322{left:664.933333pt;}
.x132_c00322{left:669.733333pt;}
.xc4_c00322{left:671.333333pt;}
.x152_c00322{left:679.200000pt;}
.x160_c00322{left:716.133333pt;}
.x161_c00322{left:724.133333pt;}
.x162_c00322{left:751.600000pt;}
.x163_c00322{left:770.800000pt;}
}





/* 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_c00323 {
    display:none;
  }
  .loading-indicator_c00323.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00323 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_c00323 { 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_c00323" -> "#page-container .classname_c00323")
 */
.pf_c00323 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00323 { /* 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_c00323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00323 { /* 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_c00323 { /* 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_c00323 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00323 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00323 {overflow:visible;}
  }
}
.c_c00323 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00323 { /* 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_c00323:after { /* webkit #35443 */
  content: '';
}
.t_c00323:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00323 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 */
}
.__c00323 { /* 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_c00323 { /* info for Javascript */
  display:none;
}
.l_c00323 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00323 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00323 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00323: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_c00323 {
    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_c00323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00323.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_c00323 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00323;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.000000;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;}
.mfb_c00323{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00323{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m87_c00323{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m58_c00323{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00323{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00323{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00323{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00323{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md2_c00323{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00323{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m81_c00323{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00323{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00323{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m107_c00323{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00323{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m63_c00323{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me7_c00323{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00323{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m49_c00323{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mce_c00323{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00323{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m3_c00323{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.maa_c00323{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.maf_c00323{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00323{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m62_c00323{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00323{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00323{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00323{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00323{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00323{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m17_c00323{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m98_c00323{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m69_c00323{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m86_c00323{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m110_c00323{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m71_c00323{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m109_c00323{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00323{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00323{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00323{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00323{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00323{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mba_c00323{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00323{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m53_c00323{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m104_c00323{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00323{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m76_c00323{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m99_c00323{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m56_c00323{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m14_c00323{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00323{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m73_c00323{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00323{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00323{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m95_c00323{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m26_c00323{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00323{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00323{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00323{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m42_c00323{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00323{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md3_c00323{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m88_c00323{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00323{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00323{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m90_c00323{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00323{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m12_c00323{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00323{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m60_c00323{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m35_c00323{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00323{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m16_c00323{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m108_c00323{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00323{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m83_c00323{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m34_c00323{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00323{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00323{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mec_c00323{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mb_c00323{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00323{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m96_c00323{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00323{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m91_c00323{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mf_c00323{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m92_c00323{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m41_c00323{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00323{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m45_c00323{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00323{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00323{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m13_c00323{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me5_c00323{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00323{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m5_c00323{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m61_c00323{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00323{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m85_c00323{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00323{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m30_c00323{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m55_c00323{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md6_c00323{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m72_c00323{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m33_c00323{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mab_c00323{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00323{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00323{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00323{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00323{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m54_c00323{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00323{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00323{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00323{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mca_c00323{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m11_c00323{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m50_c00323{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m21_c00323{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00323{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00323{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00323{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m78_c00323{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00323{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m80_c00323{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00323{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00323{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00323{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00323{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00323{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.me8_c00323{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma_c00323{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00323{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m52_c00323{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m23_c00323{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m48_c00323{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m74_c00323{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m101_c00323{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00323{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m57_c00323{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00323{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m24_c00323{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mde_c00323{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.md_c00323{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md5_c00323{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m70_c00323{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7_c00323{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m18_c00323{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00323{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc_c00323{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m32_c00323{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m51_c00323{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00323{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00323{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00323{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00323{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m105_c00323{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6_c00323{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m59_c00323{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00323{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m25_c00323{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00323{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m44_c00323{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00323{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me_c00323{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m15_c00323{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00323{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me9_c00323{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m79_c00323{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m27_c00323{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8_c00323{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00323{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mea_c00323{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mee_c00323{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00323{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m84_c00323{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m82_c00323{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m22_c00323{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m97_c00323{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m68_c00323{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m19_c00323{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00323{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m100_c00323{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00323{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00323{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md0_c00323{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10_c00323{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00323{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.med_c00323{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00323{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00323{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m31_c00323{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00323{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m40_c00323{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00323{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m103_c00323{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m20_c00323{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00323{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m37_c00323{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00323{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m93_c00323{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00323{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m75_c00323{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00323{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me6_c00323{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9_c00323{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00323{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00323{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m77_c00323{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.md1_c00323{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00323{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mff_c00323{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m29_c00323{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m94_c00323{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00323{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m106_c00323{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00323{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mae_c00323{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00323{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00323{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00323{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);}
.m5a_c00323{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mef_c00323{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00323{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00323{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m89_c00323{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00323{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00323{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00323{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m102_c00323{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.md9_c00323{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4_c00323{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m39_c00323{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00323{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m0_c00323{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00323{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me3_c00323{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me4_c00323{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00323{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.md7_c00323{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00323{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m28_c00323{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m47_c00323{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m46_c00323{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00323{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m38_c00323{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m36_c00323{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00323{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00323{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.meb_c00323{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m43_c00323{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.md4_c00323{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00323{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00323{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mac_c00323{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mad_c00323{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m111_c00323{transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);}
.me0_c00323{transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);}
.me1_c00323{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md8_c00323{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m66_c00323{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2_c00323{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m64_c00323{transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00323{transform:matrix(0.388250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388250,0.000000,0.000000,0.250000,0,0);}
.m112_c00323{transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);}
.me2_c00323{transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);}
.m65_c00323{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mda_c00323{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00323{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m67_c00323{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00323{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00323{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00323{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00323{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls3_c00323{letter-spacing:0.000000px;}
.ls2_c00323{letter-spacing:42.000000px;}
.ls0_c00323{letter-spacing:55.714286px;}
.ls1_c00323{letter-spacing:70.000000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{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__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00323{word-spacing:-100.000000px;}
.ws4_c00323{word-spacing:-85.714286px;}
.wsc_c00323{word-spacing:-60.000000px;}
.ws10_c00323{word-spacing:-7.219542px;}
.wse_c00323{word-spacing:-7.156425px;}
.wsf_c00323{word-spacing:-6.904762px;}
.ws11_c00323{word-spacing:-3.382353px;}
.ws6_c00323{word-spacing:-2.918216px;}
.ws12_c00323{word-spacing:0.000000px;}
.ws0_c00323{word-spacing:5.267516px;}
.ws1_c00323{word-spacing:15.428571px;}
.ws2_c00323{word-spacing:17.750000px;}
.ws7_c00323{word-spacing:22.142857px;}
.ws3_c00323{word-spacing:25.714286px;}
.ws8_c00323{word-spacing:35.833333px;}
.ws9_c00323{word-spacing:57.261905px;}
.wsa_c00323{word-spacing:57.902530px;}
.wsb_c00323{word-spacing:64.375000px;}
.wsd_c00323{word-spacing:130.687500px;}
._4_c00323{margin-left:-70.000000px;}
._3_c00323{margin-left:-55.714286px;}
._7_c00323{margin-left:-42.000000px;}
._0_c00323{width:35.571429px;}
._1_c00323{width:44.500000px;}
._2_c00323{width:48.250000px;}
._6_c00323{width:74.166667px;}
._5_c00323{width:487.857143px;}
.fc0_c00323{color:transparent;}
.fs2_c00323{font-size:30.000000px;}
.fs6_c00323{font-size:36.000000px;}
.fs5_c00323{font-size:54.000000px;}
.fs4_c00323{font-size:60.000000px;}
.fs3_c00323{font-size:66.000000px;}
.fs0_c00323{font-size:72.000000px;}
.fs1_c00323{font-size:78.000000px;}
.y0_c00323{bottom:0.000000px;}
.y6f_c00323{bottom:59.400000px;}
.y70_c00323{bottom:59.700000px;}
.y37_c00323{bottom:67.650000px;}
.y36_c00323{bottom:68.700000px;}
.y3_c00323{bottom:100.800000px;}
.y6e_c00323{bottom:178.950000px;}
.y6d_c00323{bottom:197.400000px;}
.y35_c00323{bottom:201.600000px;}
.y6c_c00323{bottom:215.400000px;}
.y34_c00323{bottom:219.300000px;}
.y6b_c00323{bottom:233.700000px;}
.y33_c00323{bottom:236.550000px;}
.y6a_c00323{bottom:251.400000px;}
.y32_c00323{bottom:253.800000px;}
.y69_c00323{bottom:269.100000px;}
.y31_c00323{bottom:271.050000px;}
.y68_c00323{bottom:287.100000px;}
.y30_c00323{bottom:292.650000px;}
.y67_c00323{bottom:304.800000px;}
.y2f_c00323{bottom:319.350000px;}
.y66_c00323{bottom:322.800000px;}
.y2e_c00323{bottom:336.600000px;}
.y65_c00323{bottom:340.050000px;}
.y2d_c00323{bottom:354.300000px;}
.y64_c00323{bottom:358.050000px;}
.y63_c00323{bottom:375.750000px;}
.y2c_c00323{bottom:380.550000px;}
.y62_c00323{bottom:393.450000px;}
.y2b_c00323{bottom:402.450000px;}
.y61_c00323{bottom:411.450000px;}
.y2a_c00323{bottom:420.750000px;}
.y60_c00323{bottom:433.050000px;}
.y29_c00323{bottom:438.450000px;}
.y5f_c00323{bottom:451.050000px;}
.y28_c00323{bottom:456.450000px;}
.y5e_c00323{bottom:469.350000px;}
.y27_c00323{bottom:477.900000px;}
.y5d_c00323{bottom:487.050000px;}
.y26_c00323{bottom:495.900000px;}
.y5c_c00323{bottom:509.100000px;}
.y25_c00323{bottom:513.900000px;}
.y5b_c00323{bottom:527.100000px;}
.y24_c00323{bottom:531.600000px;}
.y5a_c00323{bottom:548.400000px;}
.y23_c00323{bottom:549.300000px;}
.y59_c00323{bottom:566.100000px;}
.y22_c00323{bottom:567.000000px;}
.y58_c00323{bottom:584.100000px;}
.y21_c00323{bottom:584.700000px;}
.y57_c00323{bottom:601.800000px;}
.y20_c00323{bottom:602.400000px;}
.y56_c00323{bottom:619.500000px;}
.y1f_c00323{bottom:620.100000px;}
.y55_c00323{bottom:637.200000px;}
.y1e_c00323{bottom:637.800000px;}
.y54_c00323{bottom:654.900000px;}
.y1d_c00323{bottom:655.500000px;}
.y53_c00323{bottom:672.900000px;}
.y1c_c00323{bottom:673.500000px;}
.y52_c00323{bottom:690.600000px;}
.y1b_c00323{bottom:691.200000px;}
.y51_c00323{bottom:708.300000px;}
.y1a_c00323{bottom:708.900000px;}
.y50_c00323{bottom:726.300000px;}
.y19_c00323{bottom:729.750000px;}
.y4f_c00323{bottom:744.000000px;}
.y18_c00323{bottom:744.450000px;}
.y17_c00323{bottom:758.850000px;}
.y4e_c00323{bottom:761.700000px;}
.y16_c00323{bottom:777.900000px;}
.y4d_c00323{bottom:779.400000px;}
.y15_c00323{bottom:795.600000px;}
.y4c_c00323{bottom:797.100000px;}
.y14_c00323{bottom:812.850000px;}
.y4b_c00323{bottom:822.600000px;}
.y13_c00323{bottom:834.900000px;}
.y4a_c00323{bottom:835.950000px;}
.y49_c00323{bottom:850.350000px;}
.y12_c00323{bottom:852.900000px;}
.y48_c00323{bottom:864.300000px;}
.y11_c00323{bottom:870.900000px;}
.y47_c00323{bottom:880.200000px;}
.y10_c00323{bottom:888.450000px;}
.y46_c00323{bottom:892.800000px;}
.yf_c00323{bottom:906.150000px;}
.y45_c00323{bottom:907.200000px;}
.y44_c00323{bottom:921.450000px;}
.ye_c00323{bottom:933.900000px;}
.y43_c00323{bottom:936.900000px;}
.y42_c00323{bottom:951.000000px;}
.yd_c00323{bottom:955.800000px;}
.y41_c00323{bottom:965.100000px;}
.yc_c00323{bottom:978.000000px;}
.y40_c00323{bottom:978.450000px;}
.y3f_c00323{bottom:993.900000px;}
.yb_c00323{bottom:995.700000px;}
.y3e_c00323{bottom:1006.950000px;}
.ya_c00323{bottom:1013.700000px;}
.y3d_c00323{bottom:1023.450000px;}
.y9_c00323{bottom:1031.400000px;}
.y3c_c00323{bottom:1045.050000px;}
.y8_c00323{bottom:1049.400000px;}
.y3b_c00323{bottom:1063.800000px;}
.y7_c00323{bottom:1066.650000px;}
.y3a_c00323{bottom:1081.800000px;}
.y6_c00323{bottom:1084.350000px;}
.y5_c00323{bottom:1101.600000px;}
.y39_c00323{bottom:1102.800000px;}
.y4_c00323{bottom:1119.600000px;}
.y38_c00323{bottom:1121.100000px;}
.y1_c00323{bottom:1145.100000px;}
.y2_c00323{bottom:1146.600000px;}
.h4_c00323{height:30.000000px;}
.h8_c00323{height:36.000000px;}
.h7_c00323{height:54.000000px;}
.h6_c00323{height:60.000000px;}
.h5_c00323{height:66.000000px;}
.h2_c00323{height:72.000000px;}
.h3_c00323{height:78.000000px;}
.h1_c00323{height:1262.250000px;}
.h0_c00323{height:1262.519990px;}
.w1_c00323{width:961.500000px;}
.w0_c00323{width:961.560058px;}
.x0_c00323{left:0.000000px;}
.x3_c00323{left:81.300000px;}
.x4_c00323{left:129.600000px;}
.x1_c00323{left:204.450000px;}
.x3b_c00323{left:205.500000px;}
.x4e_c00323{left:207.000000px;}
.x6a_c00323{left:208.050000px;}
.x99_c00323{left:210.600000px;}
.x9f_c00323{left:213.900000px;}
.xa_c00323{left:222.300000px;}
.x10_c00323{left:223.350000px;}
.x53_c00323{left:225.600000px;}
.x75_c00323{left:226.650000px;}
.x82_c00323{left:228.750000px;}
.x8f_c00323{left:229.800000px;}
.x9e_c00323{left:231.150000px;}
.x4c_c00323{left:232.500000px;}
.xa6_c00323{left:233.700000px;}
.x64_c00323{left:235.500000px;}
.x16_c00323{left:236.700000px;}
.x5a_c00323{left:240.750000px;}
.x41_c00323{left:243.000000px;}
.x83_c00323{left:245.250000px;}
.x90_c00323{left:247.500000px;}
.x4f_c00323{left:249.150000px;}
.x20_c00323{left:251.550000px;}
.x4d_c00323{left:252.600000px;}
.x38_c00323{left:255.150000px;}
.x61_c00323{left:256.650000px;}
.x28_c00323{left:258.750000px;}
.x46_c00323{left:261.000000px;}
.x7b_c00323{left:262.950000px;}
.x17_c00323{left:264.750000px;}
.xa9_c00323{left:266.250000px;}
.x11_c00323{left:268.350000px;}
.x5f_c00323{left:270.000000px;}
.x33_c00323{left:271.050000px;}
.x88_c00323{left:272.100000px;}
.xa7_c00323{left:273.300000px;}
.x7a_c00323{left:275.700000px;}
.x5b_c00323{left:277.050000px;}
.x2d_c00323{left:278.850000px;}
.x72_c00323{left:280.500000px;}
.x95_c00323{left:282.000000px;}
.x39_c00323{left:283.650000px;}
.xb_c00323{left:285.300000px;}
.x5c_c00323{left:286.800000px;}
.x3e_c00323{left:288.750000px;}
.x5_c00323{left:290.250000px;}
.xaa_c00323{left:291.750000px;}
.x7e_c00323{left:293.850000px;}
.x18_c00323{left:295.050000px;}
.x73_c00323{left:296.700000px;}
.xa4_c00323{left:298.050000px;}
.x3c_c00323{left:300.150000px;}
.x21_c00323{left:301.950000px;}
.x2e_c00323{left:303.300000px;}
.x70_c00323{left:304.650000px;}
.x76_c00323{left:305.850000px;}
.xc_c00323{left:306.900000px;}
.x62_c00323{left:307.950000px;}
.x47_c00323{left:309.900000px;}
.x12_c00323{left:311.550000px;}
.x7f_c00323{left:313.650000px;}
.x63_c00323{left:315.450000px;}
.x19_c00323{left:316.650000px;}
.x8e_c00323{left:321.300000px;}
.x5d_c00323{left:324.900000px;}
.x3a_c00323{left:326.100000px;}
.x65_c00323{left:328.950000px;}
.x3f_c00323{left:330.450000px;}
.x42_c00323{left:331.500000px;}
.x1a_c00323{left:332.850000px;}
.x96_c00323{left:334.200000px;}
.x77_c00323{left:341.550000px;}
.x54_c00323{left:343.050000px;}
.x22_c00323{left:344.850000px;}
.x29_c00323{left:345.900000px;}
.x34_c00323{left:347.700000px;}
.x74_c00323{left:348.900000px;}
.x6_c00323{left:351.150000px;}
.x5e_c00323{left:352.650000px;}
.xa0_c00323{left:354.300000px;}
.x6b_c00323{left:355.350000px;}
.x66_c00323{left:358.050000px;}
.x48_c00323{left:359.250000px;}
.x84_c00323{left:360.900000px;}
.x23_c00323{left:362.100000px;}
.xd_c00323{left:364.800000px;}
.x6d_c00323{left:366.150000px;}
.x43_c00323{left:367.800000px;}
.x91_c00323{left:369.750000px;}
.x9b_c00323{left:373.350000px;}
.x35_c00323{left:375.000000px;}
.xa1_c00323{left:376.200000px;}
.x2a_c00323{left:378.300000px;}
.x8a_c00323{left:379.800000px;}
.x55_c00323{left:380.850000px;}
.x71_c00323{left:382.050000px;}
.x3d_c00323{left:383.700000px;}
.x8d_c00323{left:385.500000px;}
.x89_c00323{left:388.800000px;}
.x50_c00323{left:390.900000px;}
.xa8_c00323{left:392.250000px;}
.x1b_c00323{left:394.800000px;}
.x13_c00323{left:398.250000px;}
.x9c_c00323{left:399.300000px;}
.x97_c00323{left:400.800000px;}
.x24_c00323{left:402.450000px;}
.x2f_c00323{left:404.850000px;}
.xa2_c00323{left:407.550000px;}
.x36_c00323{left:408.900000px;}
.x56_c00323{left:412.200000px;}
.x1c_c00323{left:415.350000px;}
.x92_c00323{left:416.550000px;}
.x7_c00323{left:418.500000px;}
.x85_c00323{left:419.700000px;}
.x78_c00323{left:423.300000px;}
.x25_c00323{left:424.350000px;}
.x49_c00323{left:426.900000px;}
.x2b_c00323{left:429.750000px;}
.x98_c00323{left:432.750000px;}
.x37_c00323{left:434.400000px;}
.x67_c00323{left:437.850000px;}
.x44_c00323{left:439.800000px;}
.x26_c00323{left:441.300000px;}
.xe_c00323{left:442.950000px;}
.x68_c00323{left:445.050000px;}
.x93_c00323{left:446.400000px;}
.x57_c00323{left:447.900000px;}
.x2_c00323{left:448.950000px;}
.x30_c00323{left:450.900000px;}
.x1d_c00323{left:453.150000px;}
.x8b_c00323{left:454.950000px;}
.x6e_c00323{left:456.150000px;}
.x6c_c00323{left:459.300000px;}
.x40_c00323{left:460.350000px;}
.x86_c00323{left:461.400000px;}
.x1e_c00323{left:464.700000px;}
.x60_c00323{left:466.950000px;}
.x69_c00323{left:470.550000px;}
.x14_c00323{left:471.750000px;}
.x7c_c00323{left:472.800000px;}
.x45_c00323{left:475.050000px;}
.x8_c00323{left:477.900000px;}
.x58_c00323{left:479.550000px;}
.x51_c00323{left:481.200000px;}
.x31_c00323{left:484.050000px;}
.x2c_c00323{left:485.850000px;}
.x6f_c00323{left:487.500000px;}
.x8c_c00323{left:489.900000px;}
.x87_c00323{left:491.700000px;}
.x27_c00323{left:492.750000px;}
.x52_c00323{left:498.900000px;}
.x9_c00323{left:501.000000px;}
.xab_c00323{left:502.050000px;}
.x4a_c00323{left:503.550000px;}
.x7d_c00323{left:505.500000px;}
.x80_c00323{left:510.300000px;}
.x9d_c00323{left:511.350000px;}
.x1f_c00323{left:513.000000px;}
.x79_c00323{left:514.500000px;}
.x94_c00323{left:516.300000px;}
.xa3_c00323{left:519.150000px;}
.x32_c00323{left:520.800000px;}
.x59_c00323{left:523.050000px;}
.xf_c00323{left:525.000000px;}
.x15_c00323{left:528.600000px;}
.x4b_c00323{left:530.550000px;}
.xa5_c00323{left:538.650000px;}
.x81_c00323{left:541.650000px;}
.x9a_c00323{left:543.900000px;}
.x14f_c00323{left:548.700000px;}
.xb9_c00323{left:559.800000px;}
.xfb_c00323{left:563.100000px;}
.x139_c00323{left:568.050000px;}
.x150_c00323{left:573.150000px;}
.xc0_c00323{left:574.350000px;}
.xf2_c00323{left:576.000000px;}
.xac_c00323{left:578.100000px;}
.x100_c00323{left:580.350000px;}
.x108_c00323{left:581.400000px;}
.x120_c00323{left:582.600000px;}
.x127_c00323{left:583.800000px;}
.x138_c00323{left:585.600000px;}
.x13e_c00323{left:586.800000px;}
.xde_c00323{left:588.750000px;}
.xea_c00323{left:590.550000px;}
.xf7_c00323{left:591.600000px;}
.x110_c00323{left:602.700000px;}
.xba_c00323{left:604.050000px;}
.xce_c00323{left:606.150000px;}
.x149_c00323{left:607.650000px;}
.x12d_c00323{left:608.700000px;}
.xdf_c00323{left:610.650000px;}
.xd3_c00323{left:611.700000px;}
.xf8_c00323{left:612.900000px;}
.xad_c00323{left:615.600000px;}
.xd4_c00323{left:618.600000px;}
.xc7_c00323{left:619.650000px;}
.x144_c00323{left:620.700000px;}
.xb6_c00323{left:621.900000px;}
.x133_c00323{left:625.050000px;}
.xd5_c00323{left:626.100000px;}
.xf4_c00323{left:627.450000px;}
.x101_c00323{left:628.650000px;}
.xe0_c00323{left:630.150000px;}
.xd6_c00323{left:633.000000px;}
.xc1_c00323{left:634.050000px;}
.x11b_c00323{left:636.600000px;}
.x105_c00323{left:638.550000px;}
.xd7_c00323{left:640.500000px;}
.x146_c00323{left:643.350000px;}
.xe1_c00323{left:644.850000px;}
.x140_c00323{left:645.900000px;}
.xfc_c00323{left:648.750000px;}
.xcf_c00323{left:651.150000px;}
.x128_c00323{left:652.500000px;}
.xae_c00323{left:654.150000px;}
.xe5_c00323{left:655.200000px;}
.xb7_c00323{left:656.400000px;}
.x10c_c00323{left:660.300000px;}
.xd8_c00323{left:661.800000px;}
.x148_c00323{left:664.500000px;}
.x122_c00323{left:665.550000px;}
.xd0_c00323{left:667.050000px;}
.x141_c00323{left:668.250000px;}
.xbb_c00323{left:669.900000px;}
.xf9_c00323{left:671.250000px;}
.x14d_c00323{left:672.750000px;}
.xef_c00323{left:675.150000px;}
.x109_c00323{left:676.200000px;}
.xe2_c00323{left:679.050000px;}
.x13d_c00323{left:680.850000px;}
.xc8_c00323{left:681.900000px;}
.xaf_c00323{left:684.000000px;}
.x12a_c00323{left:685.050000px;}
.x116_c00323{left:686.550000px;}
.xfd_c00323{left:688.350000px;}
.xf5_c00323{left:689.700000px;}
.xc2_c00323{left:694.200000px;}
.x130_c00323{left:695.400000px;}
.x102_c00323{left:697.800000px;}
.xc9_c00323{left:701.700000px;}
.x11c_c00323{left:703.200000px;}
.xfa_c00323{left:704.700000px;}
.x134_c00323{left:708.150000px;}
.xeb_c00323{left:710.550000px;}
.x13a_c00323{left:712.350000px;}
.x117_c00323{left:715.050000px;}
.x10d_c00323{left:716.100000px;}
.xb0_c00323{left:720.300000px;}
.xd1_c00323{left:721.800000px;}
.x111_c00323{left:723.600000px;}
.x14a_c00323{left:725.100000px;}
.xf0_c00323{left:727.350000px;}
.x129_c00323{left:729.900000px;}
.x123_c00323{left:731.100000px;}
.xc3_c00323{left:733.050000px;}
.x14b_c00323{left:734.850000px;}
.xb8_c00323{left:736.350000px;}
.xb1_c00323{left:738.300000px;}
.xd9_c00323{left:741.300000px;}
.x131_c00323{left:745.500000px;}
.x11f_c00323{left:746.850000px;}
.xf3_c00323{left:748.500000px;}
.x124_c00323{left:751.200000px;}
.xc4_c00323{left:753.900000px;}
.xda_c00323{left:755.400000px;}
.x142_c00323{left:756.450000px;}
.xec_c00323{left:757.650000px;}
.x135_c00323{left:760.050000px;}
.xb2_c00323{left:761.400000px;}
.xdb_c00323{left:763.350000px;}
.xe3_c00323{left:767.850000px;}
.x119_c00323{left:768.900000px;}
.xd2_c00323{left:770.100000px;}
.x103_c00323{left:773.100000px;}
.xed_c00323{left:774.150000px;}
.xbc_c00323{left:777.450000px;}
.xca_c00323{left:778.650000px;}
.xc5_c00323{left:780.150000px;}
.x12b_c00323{left:781.950000px;}
.xf1_c00323{left:783.900000px;}
.x10a_c00323{left:785.250000px;}
.xb3_c00323{left:786.600000px;}
.xe4_c00323{left:787.650000px;}
.xf6_c00323{left:788.700000px;}
.x114_c00323{left:789.750000px;}
.x104_c00323{left:791.850000px;}
.xe6_c00323{left:793.500000px;}
.x106_c00323{left:795.900000px;}
.x125_c00323{left:798.000000px;}
.x13b_c00323{left:799.500000px;}
.xbd_c00323{left:801.150000px;}
.x10b_c00323{left:804.300000px;}
.xb4_c00323{left:808.500000px;}
.xfe_c00323{left:813.300000px;}
.xcb_c00323{left:816.150000px;}
.x136_c00323{left:820.950000px;}
.x12e_c00323{left:822.150000px;}
.xdc_c00323{left:825.300000px;}
.xe7_c00323{left:826.650000px;}
.x107_c00323{left:828.000000px;}
.x11d_c00323{left:829.950000px;}
.x132_c00323{left:831.600000px;}
.x11a_c00323{left:834.000000px;}
.x12f_c00323{left:835.500000px;}
.x112_c00323{left:839.550000px;}
.x10e_c00323{left:841.050000px;}
.x147_c00323{left:842.700000px;}
.xbe_c00323{left:844.350000px;}
.xcc_c00323{left:847.050000px;}
.x113_c00323{left:848.850000px;}
.x11e_c00323{left:850.500000px;}
.x137_c00323{left:852.600000px;}
.xee_c00323{left:856.650000px;}
.xb5_c00323{left:858.150000px;}
.xbf_c00323{left:859.500000px;}
.x14c_c00323{left:860.550000px;}
.x118_c00323{left:863.100000px;}
.x10f_c00323{left:867.000000px;}
.x12c_c00323{left:868.350000px;}
.x143_c00323{left:870.600000px;}
.x121_c00323{left:873.000000px;}
.xff_c00323{left:875.550000px;}
.x126_c00323{left:877.500000px;}
.xe9_c00323{left:879.900000px;}
.xcd_c00323{left:881.550000px;}
.xdd_c00323{left:883.950000px;}
.xe8_c00323{left:885.000000px;}
.xc6_c00323{left:886.950000px;}
.x145_c00323{left:889.950000px;}
.x13f_c00323{left:893.100000px;}
.x115_c00323{left:896.700000px;}
.x14e_c00323{left:899.250000px;}
.x13c_c00323{left:900.450000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls3_c00323{letter-spacing:0.000000pt;}
.ls2_c00323{letter-spacing:37.333333pt;}
.ls0_c00323{letter-spacing:49.523810pt;}
.ls1_c00323{letter-spacing:62.222222pt;}
.ws5_c00323{word-spacing:-88.888889pt;}
.ws4_c00323{word-spacing:-76.190476pt;}
.wsc_c00323{word-spacing:-53.333333pt;}
.ws10_c00323{word-spacing:-6.417370pt;}
.wse_c00323{word-spacing:-6.361266pt;}
.wsf_c00323{word-spacing:-6.137566pt;}
.ws11_c00323{word-spacing:-3.006536pt;}
.ws6_c00323{word-spacing:-2.593969pt;}
.ws12_c00323{word-spacing:0.000000pt;}
.ws0_c00323{word-spacing:4.682236pt;}
.ws1_c00323{word-spacing:13.714286pt;}
.ws2_c00323{word-spacing:15.777778pt;}
.ws7_c00323{word-spacing:19.682540pt;}
.ws3_c00323{word-spacing:22.857143pt;}
.ws8_c00323{word-spacing:31.851852pt;}
.ws9_c00323{word-spacing:50.899471pt;}
.wsa_c00323{word-spacing:51.468916pt;}
.wsb_c00323{word-spacing:57.222222pt;}
.wsd_c00323{word-spacing:116.166667pt;}
._4_c00323{margin-left:-62.222222pt;}
._3_c00323{margin-left:-49.523810pt;}
._7_c00323{margin-left:-37.333333pt;}
._0_c00323{width:31.619048pt;}
._1_c00323{width:39.555556pt;}
._2_c00323{width:42.888889pt;}
._6_c00323{width:65.925926pt;}
._5_c00323{width:433.650794pt;}
.fs2_c00323{font-size:26.666667pt;}
.fs6_c00323{font-size:32.000000pt;}
.fs5_c00323{font-size:48.000000pt;}
.fs4_c00323{font-size:53.333333pt;}
.fs3_c00323{font-size:58.666667pt;}
.fs0_c00323{font-size:64.000000pt;}
.fs1_c00323{font-size:69.333333pt;}
.y0_c00323{bottom:0.000000pt;}
.y6f_c00323{bottom:52.800000pt;}
.y70_c00323{bottom:53.066667pt;}
.y37_c00323{bottom:60.133333pt;}
.y36_c00323{bottom:61.066667pt;}
.y3_c00323{bottom:89.600000pt;}
.y6e_c00323{bottom:159.066667pt;}
.y6d_c00323{bottom:175.466667pt;}
.y35_c00323{bottom:179.200000pt;}
.y6c_c00323{bottom:191.466667pt;}
.y34_c00323{bottom:194.933333pt;}
.y6b_c00323{bottom:207.733333pt;}
.y33_c00323{bottom:210.266667pt;}
.y6a_c00323{bottom:223.466667pt;}
.y32_c00323{bottom:225.600000pt;}
.y69_c00323{bottom:239.200000pt;}
.y31_c00323{bottom:240.933333pt;}
.y68_c00323{bottom:255.200000pt;}
.y30_c00323{bottom:260.133333pt;}
.y67_c00323{bottom:270.933333pt;}
.y2f_c00323{bottom:283.866667pt;}
.y66_c00323{bottom:286.933333pt;}
.y2e_c00323{bottom:299.200000pt;}
.y65_c00323{bottom:302.266667pt;}
.y2d_c00323{bottom:314.933333pt;}
.y64_c00323{bottom:318.266667pt;}
.y63_c00323{bottom:334.000000pt;}
.y2c_c00323{bottom:338.266667pt;}
.y62_c00323{bottom:349.733333pt;}
.y2b_c00323{bottom:357.733333pt;}
.y61_c00323{bottom:365.733333pt;}
.y2a_c00323{bottom:374.000000pt;}
.y60_c00323{bottom:384.933333pt;}
.y29_c00323{bottom:389.733333pt;}
.y5f_c00323{bottom:400.933333pt;}
.y28_c00323{bottom:405.733333pt;}
.y5e_c00323{bottom:417.200000pt;}
.y27_c00323{bottom:424.800000pt;}
.y5d_c00323{bottom:432.933333pt;}
.y26_c00323{bottom:440.800000pt;}
.y5c_c00323{bottom:452.533333pt;}
.y25_c00323{bottom:456.800000pt;}
.y5b_c00323{bottom:468.533333pt;}
.y24_c00323{bottom:472.533333pt;}
.y5a_c00323{bottom:487.466667pt;}
.y23_c00323{bottom:488.266667pt;}
.y59_c00323{bottom:503.200000pt;}
.y22_c00323{bottom:504.000000pt;}
.y58_c00323{bottom:519.200000pt;}
.y21_c00323{bottom:519.733333pt;}
.y57_c00323{bottom:534.933333pt;}
.y20_c00323{bottom:535.466667pt;}
.y56_c00323{bottom:550.666667pt;}
.y1f_c00323{bottom:551.200000pt;}
.y55_c00323{bottom:566.400000pt;}
.y1e_c00323{bottom:566.933333pt;}
.y54_c00323{bottom:582.133333pt;}
.y1d_c00323{bottom:582.666667pt;}
.y53_c00323{bottom:598.133333pt;}
.y1c_c00323{bottom:598.666667pt;}
.y52_c00323{bottom:613.866667pt;}
.y1b_c00323{bottom:614.400000pt;}
.y51_c00323{bottom:629.600000pt;}
.y1a_c00323{bottom:630.133333pt;}
.y50_c00323{bottom:645.600000pt;}
.y19_c00323{bottom:648.666667pt;}
.y4f_c00323{bottom:661.333333pt;}
.y18_c00323{bottom:661.733333pt;}
.y17_c00323{bottom:674.533333pt;}
.y4e_c00323{bottom:677.066667pt;}
.y16_c00323{bottom:691.466667pt;}
.y4d_c00323{bottom:692.800000pt;}
.y15_c00323{bottom:707.200000pt;}
.y4c_c00323{bottom:708.533333pt;}
.y14_c00323{bottom:722.533333pt;}
.y4b_c00323{bottom:731.200000pt;}
.y13_c00323{bottom:742.133333pt;}
.y4a_c00323{bottom:743.066667pt;}
.y49_c00323{bottom:755.866667pt;}
.y12_c00323{bottom:758.133333pt;}
.y48_c00323{bottom:768.266667pt;}
.y11_c00323{bottom:774.133333pt;}
.y47_c00323{bottom:782.400000pt;}
.y10_c00323{bottom:789.733333pt;}
.y46_c00323{bottom:793.600000pt;}
.yf_c00323{bottom:805.466667pt;}
.y45_c00323{bottom:806.400000pt;}
.y44_c00323{bottom:819.066667pt;}
.ye_c00323{bottom:830.133333pt;}
.y43_c00323{bottom:832.800000pt;}
.y42_c00323{bottom:845.333333pt;}
.yd_c00323{bottom:849.600000pt;}
.y41_c00323{bottom:857.866667pt;}
.yc_c00323{bottom:869.333333pt;}
.y40_c00323{bottom:869.733333pt;}
.y3f_c00323{bottom:883.466667pt;}
.yb_c00323{bottom:885.066667pt;}
.y3e_c00323{bottom:895.066667pt;}
.ya_c00323{bottom:901.066667pt;}
.y3d_c00323{bottom:909.733333pt;}
.y9_c00323{bottom:916.800000pt;}
.y3c_c00323{bottom:928.933333pt;}
.y8_c00323{bottom:932.800000pt;}
.y3b_c00323{bottom:945.600000pt;}
.y7_c00323{bottom:948.133333pt;}
.y3a_c00323{bottom:961.600000pt;}
.y6_c00323{bottom:963.866667pt;}
.y5_c00323{bottom:979.200000pt;}
.y39_c00323{bottom:980.266667pt;}
.y4_c00323{bottom:995.200000pt;}
.y38_c00323{bottom:996.533333pt;}
.y1_c00323{bottom:1017.866667pt;}
.y2_c00323{bottom:1019.200000pt;}
.h4_c00323{height:26.666667pt;}
.h8_c00323{height:32.000000pt;}
.h7_c00323{height:48.000000pt;}
.h6_c00323{height:53.333333pt;}
.h5_c00323{height:58.666667pt;}
.h2_c00323{height:64.000000pt;}
.h3_c00323{height:69.333333pt;}
.h1_c00323{height:1122.000000pt;}
.h0_c00323{height:1122.239991pt;}
.w1_c00323{width:854.666667pt;}
.w0_c00323{width:854.720052pt;}
.x0_c00323{left:0.000000pt;}
.x3_c00323{left:72.266667pt;}
.x4_c00323{left:115.200000pt;}
.x1_c00323{left:181.733333pt;}
.x3b_c00323{left:182.666667pt;}
.x4e_c00323{left:184.000000pt;}
.x6a_c00323{left:184.933333pt;}
.x99_c00323{left:187.200000pt;}
.x9f_c00323{left:190.133333pt;}
.xa_c00323{left:197.600000pt;}
.x10_c00323{left:198.533333pt;}
.x53_c00323{left:200.533333pt;}
.x75_c00323{left:201.466667pt;}
.x82_c00323{left:203.333333pt;}
.x8f_c00323{left:204.266667pt;}
.x9e_c00323{left:205.466667pt;}
.x4c_c00323{left:206.666667pt;}
.xa6_c00323{left:207.733333pt;}
.x64_c00323{left:209.333333pt;}
.x16_c00323{left:210.400000pt;}
.x5a_c00323{left:214.000000pt;}
.x41_c00323{left:216.000000pt;}
.x83_c00323{left:218.000000pt;}
.x90_c00323{left:220.000000pt;}
.x4f_c00323{left:221.466667pt;}
.x20_c00323{left:223.600000pt;}
.x4d_c00323{left:224.533333pt;}
.x38_c00323{left:226.800000pt;}
.x61_c00323{left:228.133333pt;}
.x28_c00323{left:230.000000pt;}
.x46_c00323{left:232.000000pt;}
.x7b_c00323{left:233.733333pt;}
.x17_c00323{left:235.333333pt;}
.xa9_c00323{left:236.666667pt;}
.x11_c00323{left:238.533333pt;}
.x5f_c00323{left:240.000000pt;}
.x33_c00323{left:240.933333pt;}
.x88_c00323{left:241.866667pt;}
.xa7_c00323{left:242.933333pt;}
.x7a_c00323{left:245.066667pt;}
.x5b_c00323{left:246.266667pt;}
.x2d_c00323{left:247.866667pt;}
.x72_c00323{left:249.333333pt;}
.x95_c00323{left:250.666667pt;}
.x39_c00323{left:252.133333pt;}
.xb_c00323{left:253.600000pt;}
.x5c_c00323{left:254.933333pt;}
.x3e_c00323{left:256.666667pt;}
.x5_c00323{left:258.000000pt;}
.xaa_c00323{left:259.333333pt;}
.x7e_c00323{left:261.200000pt;}
.x18_c00323{left:262.266667pt;}
.x73_c00323{left:263.733333pt;}
.xa4_c00323{left:264.933333pt;}
.x3c_c00323{left:266.800000pt;}
.x21_c00323{left:268.400000pt;}
.x2e_c00323{left:269.600000pt;}
.x70_c00323{left:270.800000pt;}
.x76_c00323{left:271.866667pt;}
.xc_c00323{left:272.800000pt;}
.x62_c00323{left:273.733333pt;}
.x47_c00323{left:275.466667pt;}
.x12_c00323{left:276.933333pt;}
.x7f_c00323{left:278.800000pt;}
.x63_c00323{left:280.400000pt;}
.x19_c00323{left:281.466667pt;}
.x8e_c00323{left:285.600000pt;}
.x5d_c00323{left:288.800000pt;}
.x3a_c00323{left:289.866667pt;}
.x65_c00323{left:292.400000pt;}
.x3f_c00323{left:293.733333pt;}
.x42_c00323{left:294.666667pt;}
.x1a_c00323{left:295.866667pt;}
.x96_c00323{left:297.066667pt;}
.x77_c00323{left:303.600000pt;}
.x54_c00323{left:304.933333pt;}
.x22_c00323{left:306.533333pt;}
.x29_c00323{left:307.466667pt;}
.x34_c00323{left:309.066667pt;}
.x74_c00323{left:310.133333pt;}
.x6_c00323{left:312.133333pt;}
.x5e_c00323{left:313.466667pt;}
.xa0_c00323{left:314.933333pt;}
.x6b_c00323{left:315.866667pt;}
.x66_c00323{left:318.266667pt;}
.x48_c00323{left:319.333333pt;}
.x84_c00323{left:320.800000pt;}
.x23_c00323{left:321.866667pt;}
.xd_c00323{left:324.266667pt;}
.x6d_c00323{left:325.466667pt;}
.x43_c00323{left:326.933333pt;}
.x91_c00323{left:328.666667pt;}
.x9b_c00323{left:331.866667pt;}
.x35_c00323{left:333.333333pt;}
.xa1_c00323{left:334.400000pt;}
.x2a_c00323{left:336.266667pt;}
.x8a_c00323{left:337.600000pt;}
.x55_c00323{left:338.533333pt;}
.x71_c00323{left:339.600000pt;}
.x3d_c00323{left:341.066667pt;}
.x8d_c00323{left:342.666667pt;}
.x89_c00323{left:345.600000pt;}
.x50_c00323{left:347.466667pt;}
.xa8_c00323{left:348.666667pt;}
.x1b_c00323{left:350.933333pt;}
.x13_c00323{left:354.000000pt;}
.x9c_c00323{left:354.933333pt;}
.x97_c00323{left:356.266667pt;}
.x24_c00323{left:357.733333pt;}
.x2f_c00323{left:359.866667pt;}
.xa2_c00323{left:362.266667pt;}
.x36_c00323{left:363.466667pt;}
.x56_c00323{left:366.400000pt;}
.x1c_c00323{left:369.200000pt;}
.x92_c00323{left:370.266667pt;}
.x7_c00323{left:372.000000pt;}
.x85_c00323{left:373.066667pt;}
.x78_c00323{left:376.266667pt;}
.x25_c00323{left:377.200000pt;}
.x49_c00323{left:379.466667pt;}
.x2b_c00323{left:382.000000pt;}
.x98_c00323{left:384.666667pt;}
.x37_c00323{left:386.133333pt;}
.x67_c00323{left:389.200000pt;}
.x44_c00323{left:390.933333pt;}
.x26_c00323{left:392.266667pt;}
.xe_c00323{left:393.733333pt;}
.x68_c00323{left:395.600000pt;}
.x93_c00323{left:396.800000pt;}
.x57_c00323{left:398.133333pt;}
.x2_c00323{left:399.066667pt;}
.x30_c00323{left:400.800000pt;}
.x1d_c00323{left:402.800000pt;}
.x8b_c00323{left:404.400000pt;}
.x6e_c00323{left:405.466667pt;}
.x6c_c00323{left:408.266667pt;}
.x40_c00323{left:409.200000pt;}
.x86_c00323{left:410.133333pt;}
.x1e_c00323{left:413.066667pt;}
.x60_c00323{left:415.066667pt;}
.x69_c00323{left:418.266667pt;}
.x14_c00323{left:419.333333pt;}
.x7c_c00323{left:420.266667pt;}
.x45_c00323{left:422.266667pt;}
.x8_c00323{left:424.800000pt;}
.x58_c00323{left:426.266667pt;}
.x51_c00323{left:427.733333pt;}
.x31_c00323{left:430.266667pt;}
.x2c_c00323{left:431.866667pt;}
.x6f_c00323{left:433.333333pt;}
.x8c_c00323{left:435.466667pt;}
.x87_c00323{left:437.066667pt;}
.x27_c00323{left:438.000000pt;}
.x52_c00323{left:443.466667pt;}
.x9_c00323{left:445.333333pt;}
.xab_c00323{left:446.266667pt;}
.x4a_c00323{left:447.600000pt;}
.x7d_c00323{left:449.333333pt;}
.x80_c00323{left:453.600000pt;}
.x9d_c00323{left:454.533333pt;}
.x1f_c00323{left:456.000000pt;}
.x79_c00323{left:457.333333pt;}
.x94_c00323{left:458.933333pt;}
.xa3_c00323{left:461.466667pt;}
.x32_c00323{left:462.933333pt;}
.x59_c00323{left:464.933333pt;}
.xf_c00323{left:466.666667pt;}
.x15_c00323{left:469.866667pt;}
.x4b_c00323{left:471.600000pt;}
.xa5_c00323{left:478.800000pt;}
.x81_c00323{left:481.466667pt;}
.x9a_c00323{left:483.466667pt;}
.x14f_c00323{left:487.733333pt;}
.xb9_c00323{left:497.600000pt;}
.xfb_c00323{left:500.533333pt;}
.x139_c00323{left:504.933333pt;}
.x150_c00323{left:509.466667pt;}
.xc0_c00323{left:510.533333pt;}
.xf2_c00323{left:512.000000pt;}
.xac_c00323{left:513.866667pt;}
.x100_c00323{left:515.866667pt;}
.x108_c00323{left:516.800000pt;}
.x120_c00323{left:517.866667pt;}
.x127_c00323{left:518.933333pt;}
.x138_c00323{left:520.533333pt;}
.x13e_c00323{left:521.600000pt;}
.xde_c00323{left:523.333333pt;}
.xea_c00323{left:524.933333pt;}
.xf7_c00323{left:525.866667pt;}
.x110_c00323{left:535.733333pt;}
.xba_c00323{left:536.933333pt;}
.xce_c00323{left:538.800000pt;}
.x149_c00323{left:540.133333pt;}
.x12d_c00323{left:541.066667pt;}
.xdf_c00323{left:542.800000pt;}
.xd3_c00323{left:543.733333pt;}
.xf8_c00323{left:544.800000pt;}
.xad_c00323{left:547.200000pt;}
.xd4_c00323{left:549.866667pt;}
.xc7_c00323{left:550.800000pt;}
.x144_c00323{left:551.733333pt;}
.xb6_c00323{left:552.800000pt;}
.x133_c00323{left:555.600000pt;}
.xd5_c00323{left:556.533333pt;}
.xf4_c00323{left:557.733333pt;}
.x101_c00323{left:558.800000pt;}
.xe0_c00323{left:560.133333pt;}
.xd6_c00323{left:562.666667pt;}
.xc1_c00323{left:563.600000pt;}
.x11b_c00323{left:565.866667pt;}
.x105_c00323{left:567.600000pt;}
.xd7_c00323{left:569.333333pt;}
.x146_c00323{left:571.866667pt;}
.xe1_c00323{left:573.200000pt;}
.x140_c00323{left:574.133333pt;}
.xfc_c00323{left:576.666667pt;}
.xcf_c00323{left:578.800000pt;}
.x128_c00323{left:580.000000pt;}
.xae_c00323{left:581.466667pt;}
.xe5_c00323{left:582.400000pt;}
.xb7_c00323{left:583.466667pt;}
.x10c_c00323{left:586.933333pt;}
.xd8_c00323{left:588.266667pt;}
.x148_c00323{left:590.666667pt;}
.x122_c00323{left:591.600000pt;}
.xd0_c00323{left:592.933333pt;}
.x141_c00323{left:594.000000pt;}
.xbb_c00323{left:595.466667pt;}
.xf9_c00323{left:596.666667pt;}
.x14d_c00323{left:598.000000pt;}
.xef_c00323{left:600.133333pt;}
.x109_c00323{left:601.066667pt;}
.xe2_c00323{left:603.600000pt;}
.x13d_c00323{left:605.200000pt;}
.xc8_c00323{left:606.133333pt;}
.xaf_c00323{left:608.000000pt;}
.x12a_c00323{left:608.933333pt;}
.x116_c00323{left:610.266667pt;}
.xfd_c00323{left:611.866667pt;}
.xf5_c00323{left:613.066667pt;}
.xc2_c00323{left:617.066667pt;}
.x130_c00323{left:618.133333pt;}
.x102_c00323{left:620.266667pt;}
.xc9_c00323{left:623.733333pt;}
.x11c_c00323{left:625.066667pt;}
.xfa_c00323{left:626.400000pt;}
.x134_c00323{left:629.466667pt;}
.xeb_c00323{left:631.600000pt;}
.x13a_c00323{left:633.200000pt;}
.x117_c00323{left:635.600000pt;}
.x10d_c00323{left:636.533333pt;}
.xb0_c00323{left:640.266667pt;}
.xd1_c00323{left:641.600000pt;}
.x111_c00323{left:643.200000pt;}
.x14a_c00323{left:644.533333pt;}
.xf0_c00323{left:646.533333pt;}
.x129_c00323{left:648.800000pt;}
.x123_c00323{left:649.866667pt;}
.xc3_c00323{left:651.600000pt;}
.x14b_c00323{left:653.200000pt;}
.xb8_c00323{left:654.533333pt;}
.xb1_c00323{left:656.266667pt;}
.xd9_c00323{left:658.933333pt;}
.x131_c00323{left:662.666667pt;}
.x11f_c00323{left:663.866667pt;}
.xf3_c00323{left:665.333333pt;}
.x124_c00323{left:667.733333pt;}
.xc4_c00323{left:670.133333pt;}
.xda_c00323{left:671.466667pt;}
.x142_c00323{left:672.400000pt;}
.xec_c00323{left:673.466667pt;}
.x135_c00323{left:675.600000pt;}
.xb2_c00323{left:676.800000pt;}
.xdb_c00323{left:678.533333pt;}
.xe3_c00323{left:682.533333pt;}
.x119_c00323{left:683.466667pt;}
.xd2_c00323{left:684.533333pt;}
.x103_c00323{left:687.200000pt;}
.xed_c00323{left:688.133333pt;}
.xbc_c00323{left:691.066667pt;}
.xca_c00323{left:692.133333pt;}
.xc5_c00323{left:693.466667pt;}
.x12b_c00323{left:695.066667pt;}
.xf1_c00323{left:696.800000pt;}
.x10a_c00323{left:698.000000pt;}
.xb3_c00323{left:699.200000pt;}
.xe4_c00323{left:700.133333pt;}
.xf6_c00323{left:701.066667pt;}
.x114_c00323{left:702.000000pt;}
.x104_c00323{left:703.866667pt;}
.xe6_c00323{left:705.333333pt;}
.x106_c00323{left:707.466667pt;}
.x125_c00323{left:709.333333pt;}
.x13b_c00323{left:710.666667pt;}
.xbd_c00323{left:712.133333pt;}
.x10b_c00323{left:714.933333pt;}
.xb4_c00323{left:718.666667pt;}
.xfe_c00323{left:722.933333pt;}
.xcb_c00323{left:725.466667pt;}
.x136_c00323{left:729.733333pt;}
.x12e_c00323{left:730.800000pt;}
.xdc_c00323{left:733.600000pt;}
.xe7_c00323{left:734.800000pt;}
.x107_c00323{left:736.000000pt;}
.x11d_c00323{left:737.733333pt;}
.x132_c00323{left:739.200000pt;}
.x11a_c00323{left:741.333333pt;}
.x12f_c00323{left:742.666667pt;}
.x112_c00323{left:746.266667pt;}
.x10e_c00323{left:747.600000pt;}
.x147_c00323{left:749.066667pt;}
.xbe_c00323{left:750.533333pt;}
.xcc_c00323{left:752.933333pt;}
.x113_c00323{left:754.533333pt;}
.x11e_c00323{left:756.000000pt;}
.x137_c00323{left:757.866667pt;}
.xee_c00323{left:761.466667pt;}
.xb5_c00323{left:762.800000pt;}
.xbf_c00323{left:764.000000pt;}
.x14c_c00323{left:764.933333pt;}
.x118_c00323{left:767.200000pt;}
.x10f_c00323{left:770.666667pt;}
.x12c_c00323{left:771.866667pt;}
.x143_c00323{left:773.866667pt;}
.x121_c00323{left:776.000000pt;}
.xff_c00323{left:778.266667pt;}
.x126_c00323{left:780.000000pt;}
.xe9_c00323{left:782.133333pt;}
.xcd_c00323{left:783.600000pt;}
.xdd_c00323{left:785.733333pt;}
.xe8_c00323{left:786.666667pt;}
.xc6_c00323{left:788.400000pt;}
.x145_c00323{left:791.066667pt;}
.x13f_c00323{left:793.866667pt;}
.x115_c00323{left:797.066667pt;}
.x14e_c00323{left:799.333333pt;}
.x13c_c00323{left:800.400000pt;}
}





/* 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_c00324 {
    display:none;
  }
  .loading-indicator_c00324.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00324 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_c00324 { 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_c00324" -> "#page-container .classname_c00324")
 */
.pf_c00324 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00324 { /* 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_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00324 { /* 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_c00324 { /* 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_c00324 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00324 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00324 {overflow:visible;}
  }
}
.c_c00324 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00324 { /* 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_c00324:after { /* webkit #35443 */
  content: '';
}
.t_c00324:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00324 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 */
}
.__c00324 { /* 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_c00324 { /* info for Javascript */
  display:none;
}
.l_c00324 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00324 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00324 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00324: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_c00324 {
    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_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00324.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_c00324 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00324;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.000000;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;}
.m114_c00324{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mca_c00324{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.md0_c00324{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m116_c00324{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m97_c00324{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00324{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m96_c00324{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.meb_c00324{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00324{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m98_c00324{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00324{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00324{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00324{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m94_c00324{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00324{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00324{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m115_c00324{transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);}
.m54_c00324{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.maa_c00324{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00324{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00324{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m33_c00324{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00324{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m6_c00324{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7_c00324{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.md4_c00324{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md3_c00324{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m93_c00324{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m112_c00324{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00324{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m67_c00324{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00324{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m87_c00324{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00324{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9_c00324{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m31_c00324{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m17_c00324{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m26_c00324{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m100_c00324{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m77_c00324{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00324{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00324{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00324{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00324{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00324{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mce_c00324{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00324{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00324{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00324{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00324{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00324{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00324{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m46_c00324{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00324{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.md5_c00324{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00324{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m37_c00324{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mec_c00324{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma_c00324{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me8_c00324{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md1_c00324{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m73_c00324{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00324{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me5_c00324{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m4_c00324{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m85_c00324{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m24_c00324{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me9_c00324{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m19_c00324{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m60_c00324{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00324{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00324{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3_c00324{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m55_c00324{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00324{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00324{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.med_c00324{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m39_c00324{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m90_c00324{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m35_c00324{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00324{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m95_c00324{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.md7_c00324{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m52_c00324{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m14_c00324{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00324{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m18_c00324{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md8_c00324{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00324{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00324{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00324{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m41_c00324{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00324{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mda_c00324{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m84_c00324{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00324{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mab_c00324{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00324{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me6_c00324{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mee_c00324{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me_c00324{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00324{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m53_c00324{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00324{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00324{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00324{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00324{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md6_c00324{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00324{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00324{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.me0_c00324{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00324{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00324{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8_c00324{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m103_c00324{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mac_c00324{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00324{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md2_c00324{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m36_c00324{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00324{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me2_c00324{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00324{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m56_c00324{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00324{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m21_c00324{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m61_c00324{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m111_c00324{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m119_c00324{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00324{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m47_c00324{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00324{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me7_c00324{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.maf_c00324{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00324{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00324{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m13_c00324{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m32_c00324{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00324{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me4_c00324{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mea_c00324{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00324{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00324{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m62_c00324{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m57_c00324{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m20_c00324{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00324{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md9_c00324{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00324{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5_c00324{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00324{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me3_c00324{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m49_c00324{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb_c00324{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m69_c00324{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00324{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00324{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00324{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf_c00324{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m83_c00324{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m25_c00324{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m71_c00324{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00324{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mff_c00324{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m10_c00324{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc_c00324{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00324{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00324{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00324{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m76_c00324{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m82_c00324{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m30_c00324{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m59_c00324{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m50_c00324{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m86_c00324{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m45_c00324{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m75_c00324{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m22_c00324{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00324{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00324{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00324{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m40_c00324{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m12_c00324{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m29_c00324{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00324{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00324{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00324{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m11_c00324{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00324{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00324{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00324{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m34_c00324{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mae_c00324{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00324{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00324{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00324{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00324{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00324{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mef_c00324{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m16_c00324{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mad_c00324{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00324{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m38_c00324{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m15_c00324{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m99_c00324{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m81_c00324{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m51_c00324{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00324{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m43_c00324{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m74_c00324{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00324{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00324{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m118_c00324{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00324{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00324{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m107_c00324{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md_c00324{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00324{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mba_c00324{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m79_c00324{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00324{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mde_c00324{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00324{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m91_c00324{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00324{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m66_c00324{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me1_c00324{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m23_c00324{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00324{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m113_c00324{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00324{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m117_c00324{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00324{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m72_c00324{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00324{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00324{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m58_c00324{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m42_c00324{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m102_c00324{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00324{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m108_c00324{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m89_c00324{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m27_c00324{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00324{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00324{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00324{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00324{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m28_c00324{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m63_c00324{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m64_c00324{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00324{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00324{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00324{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00324{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00324{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00324{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m70_c00324{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m78_c00324{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m80_c00324{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00324{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00324{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m104_c00324{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m88_c00324{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m106_c00324{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m68_c00324{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00324{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m44_c00324{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1_c00324{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00324{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m48_c00324{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00324{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00324{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00324{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m110_c00324{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m2_c00324{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00324{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m65_c00324{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m109_c00324{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m105_c00324{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m101_c00324{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m92_c00324{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00324{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00324{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00324{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00324{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00324{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00324{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00324{transform:matrix(1.008000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.008000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.008000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls1_c00324{letter-spacing:0.000000px;}
.ls0_c00324{letter-spacing:50.211796px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{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__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00324{word-spacing:-77.211796px;}
.ws5_c00324{word-spacing:-6.578947px;}
.ws9_c00324{word-spacing:0.000000px;}
.ws1_c00324{word-spacing:25.714286px;}
.ws6_c00324{word-spacing:29.285714px;}
.ws0_c00324{word-spacing:40.000000px;}
.ws4_c00324{word-spacing:44.166667px;}
.ws8_c00324{word-spacing:55.476190px;}
.ws2_c00324{word-spacing:61.250000px;}
.ws7_c00324{word-spacing:150.000000px;}
._1_c00324{margin-left:-50.211796px;}
._0_c00324{width:59.285714px;}
._2_c00324{width:227.142857px;}
.fc0_c00324{color:transparent;}
.fs5_c00324{font-size:30.000000px;}
.fs4_c00324{font-size:54.000000px;}
.fs3_c00324{font-size:60.000000px;}
.fs1_c00324{font-size:66.000000px;}
.fs2_c00324{font-size:72.000000px;}
.fs0_c00324{font-size:84.000000px;}
.y0_c00324{bottom:0.000000px;}
.y38_c00324{bottom:196.200000px;}
.y37_c00324{bottom:202.350000px;}
.y6d_c00324{bottom:204.600000px;}
.y6c_c00324{bottom:218.250000px;}
.y36_c00324{bottom:220.650000px;}
.y6b_c00324{bottom:232.950000px;}
.y35_c00324{bottom:238.350000px;}
.y6a_c00324{bottom:245.850000px;}
.y34_c00324{bottom:256.350000px;}
.y69_c00324{bottom:261.300000px;}
.y68_c00324{bottom:274.800000px;}
.y33_c00324{bottom:275.550000px;}
.y32_c00324{bottom:290.700000px;}
.y67_c00324{bottom:291.300000px;}
.y31_c00324{bottom:305.100000px;}
.y66_c00324{bottom:308.550000px;}
.y30_c00324{bottom:319.200000px;}
.y65_c00324{bottom:327.600000px;}
.y2f_c00324{bottom:333.300000px;}
.y64_c00324{bottom:345.600000px;}
.y2e_c00324{bottom:347.700000px;}
.y63_c00324{bottom:367.950000px;}
.y2d_c00324{bottom:380.550000px;}
.y62_c00324{bottom:385.500000px;}
.y2c_c00324{bottom:395.550000px;}
.y61_c00324{bottom:403.200000px;}
.y2b_c00324{bottom:409.200000px;}
.y60_c00324{bottom:420.750000px;}
.y2a_c00324{bottom:424.350000px;}
.y29_c00324{bottom:437.700000px;}
.y5f_c00324{bottom:438.000000px;}
.y28_c00324{bottom:452.850000px;}
.y5e_c00324{bottom:455.700000px;}
.y27_c00324{bottom:466.200000px;}
.y5d_c00324{bottom:473.400000px;}
.y26_c00324{bottom:481.350000px;}
.y5c_c00324{bottom:495.000000px;}
.y25_c00324{bottom:496.050000px;}
.y24_c00324{bottom:510.150000px;}
.y5b_c00324{bottom:521.250000px;}
.y23_c00324{bottom:523.500000px;}
.y22_c00324{bottom:538.950000px;}
.y5a_c00324{bottom:543.900000px;}
.y21_c00324{bottom:552.300000px;}
.y59_c00324{bottom:561.900000px;}
.y20_c00324{bottom:568.500000px;}
.y58_c00324{bottom:579.600000px;}
.y1f_c00324{bottom:586.500000px;}
.y57_c00324{bottom:597.600000px;}
.y1e_c00324{bottom:604.500000px;}
.y56_c00324{bottom:615.600000px;}
.y1d_c00324{bottom:622.500000px;}
.y55_c00324{bottom:633.300000px;}
.y1c_c00324{bottom:643.800000px;}
.y54_c00324{bottom:651.000000px;}
.y1b_c00324{bottom:662.100000px;}
.y53_c00324{bottom:669.000000px;}
.y1a_c00324{bottom:679.800000px;}
.y52_c00324{bottom:686.700000px;}
.y19_c00324{bottom:697.500000px;}
.y51_c00324{bottom:704.400000px;}
.y18_c00324{bottom:715.500000px;}
.y50_c00324{bottom:722.100000px;}
.y17_c00324{bottom:733.200000px;}
.y4f_c00324{bottom:739.800000px;}
.y16_c00324{bottom:750.900000px;}
.y4e_c00324{bottom:761.700000px;}
.y15_c00324{bottom:772.950000px;}
.y4d_c00324{bottom:779.400000px;}
.y4c_c00324{bottom:797.700000px;}
.y14_c00324{bottom:799.350000px;}
.y4b_c00324{bottom:815.400000px;}
.y13_c00324{bottom:817.050000px;}
.y12_c00324{bottom:835.350000px;}
.y4a_c00324{bottom:836.850000px;}
.y11_c00324{bottom:853.050000px;}
.y49_c00324{bottom:854.550000px;}
.y10_c00324{bottom:870.300000px;}
.y48_c00324{bottom:872.550000px;}
.yf_c00324{bottom:888.300000px;}
.y47_c00324{bottom:890.250000px;}
.ye_c00324{bottom:906.000000px;}
.y46_c00324{bottom:907.950000px;}
.yd_c00324{bottom:924.000000px;}
.y45_c00324{bottom:925.650000px;}
.yc_c00324{bottom:942.000000px;}
.y44_c00324{bottom:943.350000px;}
.yb_c00324{bottom:959.700000px;}
.y43_c00324{bottom:961.050000px;}
.ya_c00324{bottom:977.400000px;}
.y42_c00324{bottom:978.750000px;}
.y9_c00324{bottom:995.400000px;}
.y41_c00324{bottom:997.050000px;}
.y8_c00324{bottom:1013.400000px;}
.y40_c00324{bottom:1014.000000px;}
.y3f_c00324{bottom:1032.000000px;}
.y7_c00324{bottom:1034.850000px;}
.y3e_c00324{bottom:1049.700000px;}
.y6_c00324{bottom:1052.100000px;}
.y3d_c00324{bottom:1067.700000px;}
.y5_c00324{bottom:1070.100000px;}
.y3c_c00324{bottom:1085.400000px;}
.y4_c00324{bottom:1088.400000px;}
.y3b_c00324{bottom:1103.100000px;}
.y3_c00324{bottom:1105.650000px;}
.y3a_c00324{bottom:1121.100000px;}
.y2_c00324{bottom:1122.900000px;}
.y1_c00324{bottom:1148.100000px;}
.y39_c00324{bottom:1271.100000px;}
.h7_c00324{height:30.000000px;}
.h6_c00324{height:54.000000px;}
.h5_c00324{height:60.000000px;}
.h3_c00324{height:66.000000px;}
.h4_c00324{height:72.000000px;}
.h2_c00324{height:84.000000px;}
.h0_c00324{height:1276.199982px;}
.h1_c00324{height:1276.500000px;}
.w1_c00324{width:961.500000px;}
.w0_c00324{width:961.560058px;}
.x0_c00324{left:0.000000px;}
.x29_c00324{left:80.700000px;}
.x5f_c00324{left:82.050000px;}
.x89_c00324{left:83.700000px;}
.x7d_c00324{left:96.150000px;}
.x79_c00324{left:97.350000px;}
.xc_c00324{left:99.150000px;}
.x5c_c00324{left:100.200000px;}
.x76_c00324{left:101.400000px;}
.x85_c00324{left:109.350000px;}
.x82_c00324{left:110.700000px;}
.x27_c00324{left:112.200000px;}
.x9c_c00324{left:113.700000px;}
.x3_c00324{left:117.750000px;}
.x61_c00324{left:119.850000px;}
.x5d_c00324{left:123.600000px;}
.x49_c00324{left:127.800000px;}
.xd_c00324{left:131.250000px;}
.x6c_c00324{left:132.900000px;}
.x28_c00324{left:134.850000px;}
.x4_c00324{left:136.500000px;}
.x43_c00324{left:137.850000px;}
.x97_c00324{left:139.050000px;}
.x8a_c00324{left:140.700000px;}
.x32_c00324{left:142.650000px;}
.x6f_c00324{left:144.000000px;}
.x55_c00324{left:145.500000px;}
.x2a_c00324{left:147.300000px;}
.x51_c00324{left:148.500000px;}
.x86_c00324{left:151.500000px;}
.x34_c00324{left:152.850000px;}
.x7b_c00324{left:154.050000px;}
.x4a_c00324{left:156.900000px;}
.x1a_c00324{left:158.100000px;}
.x3d_c00324{left:164.400000px;}
.x56_c00324{left:165.600000px;}
.x4f_c00324{left:166.650000px;}
.x3b_c00324{left:168.000000px;}
.x98_c00324{left:169.350000px;}
.x2b_c00324{left:171.750000px;}
.x14_c00324{left:173.100000px;}
.x95_c00324{left:174.450000px;}
.x8d_c00324{left:175.950000px;}
.x23_c00324{left:177.750000px;}
.x1b_c00324{left:180.450000px;}
.x2f_c00324{left:181.800000px;}
.x62_c00324{left:183.150000px;}
.x35_c00324{left:185.550000px;}
.x57_c00324{left:187.500000px;}
.x69_c00324{left:188.700000px;}
.xe_c00324{left:192.450000px;}
.x15_c00324{left:194.400000px;}
.x60_c00324{left:195.450000px;}
.x5_c00324{left:196.650000px;}
.x24_c00324{left:199.050000px;}
.x3e_c00324{left:200.400000px;}
.x7c_c00324{left:201.900000px;}
.x5e_c00324{left:204.300000px;}
.x63_c00324{left:206.550000px;}
.x44_c00324{left:208.050000px;}
.x73_c00324{left:209.100000px;}
.x8b_c00324{left:211.950000px;}
.x99_c00324{left:214.200000px;}
.x7a_c00324{left:216.450000px;}
.x3f_c00324{left:218.700000px;}
.x6d_c00324{left:220.050000px;}
.x6_c00324{left:222.150000px;}
.x50_c00324{left:224.550000px;}
.x1c_c00324{left:225.750000px;}
.x52_c00324{left:226.950000px;}
.xf_c00324{left:230.250000px;}
.x2c_c00324{left:232.200000px;}
.x87_c00324{left:233.550000px;}
.x9b_c00324{left:236.550000px;}
.x83_c00324{left:238.950000px;}
.x36_c00324{left:240.600000px;}
.x30_c00324{left:242.700000px;}
.x45_c00324{left:244.350000px;}
.x58_c00324{left:247.950000px;}
.x10_c00324{left:249.750000px;}
.x6e_c00324{left:252.150000px;}
.x70_c00324{left:254.850000px;}
.x1d_c00324{left:256.050000px;}
.x46_c00324{left:257.700000px;}
.x96_c00324{left:259.050000px;}
.x8e_c00324{left:260.550000px;}
.x33_c00324{left:263.100000px;}
.x6a_c00324{left:264.300000px;}
.x68_c00324{left:265.350000px;}
.x38_c00324{left:266.550000px;}
.x8f_c00324{left:267.750000px;}
.x40_c00324{left:268.800000px;}
.x8c_c00324{left:270.300000px;}
.x59_c00324{left:273.450000px;}
.x90_c00324{left:275.250000px;}
.x7e_c00324{left:277.200000px;}
.x16_c00324{left:279.300000px;}
.x66_c00324{left:281.100000px;}
.x7_c00324{left:282.300000px;}
.x53_c00324{left:283.800000px;}
.x3c_c00324{left:286.050000px;}
.x5a_c00324{left:289.950000px;}
.x7f_c00324{left:291.600000px;}
.x92_c00324{left:292.650000px;}
.x88_c00324{left:295.800000px;}
.x37_c00324{left:297.900000px;}
.x41_c00324{left:300.150000px;}
.x17_c00324{left:301.200000px;}
.x8_c00324{left:303.900000px;}
.x84_c00324{left:306.150000px;}
.x77_c00324{left:309.000000px;}
.x11_c00324{left:310.200000px;}
.x25_c00324{left:312.150000px;}
.x6b_c00324{left:314.700000px;}
.x2d_c00324{left:316.800000px;}
.x75_c00324{left:318.450000px;}
.x80_c00324{left:320.700000px;}
.x64_c00324{left:322.950000px;}
.x1_c00324{left:324.000000px;}
.x1e_c00324{left:325.950000px;}
.x12_c00324{left:327.900000px;}
.x4b_c00324{left:329.700000px;}
.x9_c00324{left:331.650000px;}
.x5b_c00324{left:332.850000px;}
.x1f_c00324{left:335.700000px;}
.x39_c00324{left:336.750000px;}
.x47_c00324{left:338.250000px;}
.x67_c00324{left:340.500000px;}
.x4c_c00324{left:343.050000px;}
.x91_c00324{left:344.700000px;}
.x74_c00324{left:346.350000px;}
.x71_c00324{left:348.750000px;}
.x9a_c00324{left:350.250000px;}
.x20_c00324{left:354.450000px;}
.x4d_c00324{left:357.150000px;}
.x48_c00324{left:359.550000px;}
.x93_c00324{left:361.350000px;}
.x18_c00324{left:364.200000px;}
.x31_c00324{left:369.000000px;}
.x42_c00324{left:370.050000px;}
.x21_c00324{left:372.150000px;}
.xa_c00324{left:373.800000px;}
.x65_c00324{left:375.150000px;}
.x81_c00324{left:377.550000px;}
.x9d_c00324{left:379.050000px;}
.x4e_c00324{left:381.300000px;}
.x19_c00324{left:382.500000px;}
.x72_c00324{left:384.750000px;}
.xb_c00324{left:391.500000px;}
.x94_c00324{left:393.300000px;}
.x13_c00324{left:398.100000px;}
.x26_c00324{left:401.400000px;}
.x78_c00324{left:403.050000px;}
.x54_c00324{left:404.700000px;}
.x3a_c00324{left:406.350000px;}
.x22_c00324{left:407.850000px;}
.x2e_c00324{left:413.250000px;}
.x139_c00324{left:436.350000px;}
.x112_c00324{left:438.450000px;}
.x135_c00324{left:446.550000px;}
.xf1_c00324{left:449.100000px;}
.x13b_c00324{left:450.900000px;}
.xe8_c00324{left:454.500000px;}
.xa1_c00324{left:455.700000px;}
.x10a_c00324{left:456.750000px;}
.x137_c00324{left:458.700000px;}
.x142_c00324{left:465.300000px;}
.x138_c00324{left:471.600000px;}
.x101_c00324{left:473.700000px;}
.xa8_c00324{left:475.800000px;}
.x11e_c00324{left:476.850000px;}
.xd1_c00324{left:478.350000px;}
.x13c_c00324{left:479.400000px;}
.x119_c00324{left:480.450000px;}
.xdc_c00324{left:484.200000px;}
.xa2_c00324{left:485.550000px;}
.xfe_c00324{left:487.050000px;}
.xb7_c00324{left:490.200000px;}
.xa9_c00324{left:492.000000px;}
.xee_c00324{left:496.050000px;}
.xd7_c00324{left:498.600000px;}
.xfa_c00324{left:499.950000px;}
.xdd_c00324{left:501.450000px;}
.xbf_c00324{left:502.950000px;}
.x11c_c00324{left:504.900000px;}
.xe5_c00324{left:506.700000px;}
.x10b_c00324{left:508.200000px;}
.xb1_c00324{left:510.000000px;}
.xc5_c00324{left:511.800000px;}
.xe9_c00324{left:513.600000px;}
.xf2_c00324{left:514.650000px;}
.x12b_c00324{left:515.850000px;}
.xb8_c00324{left:516.900000px;}
.x116_c00324{left:519.000000px;}
.xcd_c00324{left:520.350000px;}
.xaa_c00324{left:521.550000px;}
.xde_c00324{left:523.350000px;}
.xd2_c00324{left:524.400000px;}
.xa3_c00324{left:526.950000px;}
.x105_c00324{left:528.750000px;}
.xf6_c00324{left:530.250000px;}
.xf3_c00324{left:531.900000px;}
.xb9_c00324{left:533.100000px;}
.xa4_c00324{left:535.950000px;}
.xea_c00324{left:538.050000px;}
.x117_c00324{left:539.100000px;}
.xab_c00324{left:540.300000px;}
.xd3_c00324{left:541.650000px;}
.xd8_c00324{left:543.300000px;}
.x122_c00324{left:544.800000px;}
.x12d_c00324{left:546.600000px;}
.x11a_c00324{left:549.900000px;}
.x110_c00324{left:551.550000px;}
.xc6_c00324{left:552.750000px;}
.x127_c00324{left:555.600000px;}
.xff_c00324{left:557.250000px;}
.x13a_c00324{left:558.750000px;}
.xc0_c00324{left:559.800000px;}
.xdf_c00324{left:560.850000px;}
.x106_c00324{left:562.200000px;}
.xac_c00324{left:563.700000px;}
.xb2_c00324{left:565.500000px;}
.x12f_c00324{left:566.700000px;}
.xfb_c00324{left:568.350000px;}
.x131_c00324{left:570.450000px;}
.xe0_c00324{left:571.650000px;}
.xc1_c00324{left:572.700000px;}
.x10c_c00324{left:574.350000px;}
.x102_c00324{left:577.050000px;}
.x13d_c00324{left:578.700000px;}
.xba_c00324{left:579.900000px;}
.xc7_c00324{left:581.850000px;}
.x12c_c00324{left:583.500000px;}
.x111_c00324{left:585.000000px;}
.x13e_c00324{left:586.650000px;}
.x11f_c00324{left:590.250000px;}
.xb3_c00324{left:593.550000px;}
.xe6_c00324{left:594.900000px;}
.x136_c00324{left:598.350000px;}
.xbb_c00324{left:599.400000px;}
.xad_c00324{left:601.500000px;}
.xf7_c00324{left:603.000000px;}
.x11b_c00324{left:604.950000px;}
.xce_c00324{left:606.000000px;}
.x125_c00324{left:609.000000px;}
.xf4_c00324{left:610.350000px;}
.xfc_c00324{left:612.300000px;}
.x103_c00324{left:614.100000px;}
.x107_c00324{left:615.900000px;}
.xa5_c00324{left:617.700000px;}
.xd4_c00324{left:619.350000px;}
.x128_c00324{left:620.550000px;}
.x13f_c00324{left:623.100000px;}
.xc2_c00324{left:624.600000px;}
.x134_c00324{left:625.650000px;}
.x124_c00324{left:629.400000px;}
.xc8_c00324{left:630.750000px;}
.x129_c00324{left:633.900000px;}
.xe1_c00324{left:636.000000px;}
.xd9_c00324{left:637.650000px;}
.x10d_c00324{left:641.700000px;}
.xb4_c00324{left:642.900000px;}
.xf8_c00324{left:644.100000px;}
.x126_c00324{left:645.450000px;}
.xae_c00324{left:646.500000px;}
.x100_c00324{left:647.550000px;}
.x12e_c00324{left:649.650000px;}
.xbc_c00324{left:651.600000px;}
.xe2_c00324{left:654.300000px;}
.xc3_c00324{left:657.750000px;}
.xe7_c00324{left:659.400000px;}
.x9e_c00324{left:660.600000px;}
.xf5_c00324{left:662.250000px;}
.x104_c00324{left:663.450000px;}
.x114_c00324{left:665.100000px;}
.x12a_c00324{left:666.600000px;}
.x123_c00324{left:667.950000px;}
.xda_c00324{left:669.000000px;}
.xcf_c00324{left:670.500000px;}
.xc9_c00324{left:673.200000px;}
.x9f_c00324{left:675.300000px;}
.x132_c00324{left:676.650000px;}
.x11d_c00324{left:678.450000px;}
.xd5_c00324{left:681.900000px;}
.x108_c00324{left:685.650000px;}
.x118_c00324{left:688.200000px;}
.xca_c00324{left:690.450000px;}
.xeb_c00324{left:691.950000px;}
.x10e_c00324{left:693.300000px;}
.xbd_c00324{left:695.550000px;}
.xb5_c00324{left:696.900000px;}
.xef_c00324{left:697.950000px;}
.xe3_c00324{left:699.600000px;}
.xc4_c00324{left:701.250000px;}
.xa0_c00324{left:702.300000px;}
.x121_c00324{left:703.950000px;}
.xcb_c00324{left:706.650000px;}
.xd0_c00324{left:710.850000px;}
.x120_c00324{left:712.950000px;}
.x133_c00324{left:714.150000px;}
.x115_c00324{left:715.800000px;}
.xaf_c00324{left:718.500000px;}
.xd6_c00324{left:720.750000px;}
.xec_c00324{left:722.550000px;}
.xa6_c00324{left:725.400000px;}
.xf0_c00324{left:727.050000px;}
.x140_c00324{left:729.900000px;}
.xf9_c00324{left:736.200000px;}
.xbe_c00324{left:738.450000px;}
.xb0_c00324{left:740.100000px;}
.xa7_c00324{left:741.600000px;}
.x2_c00324{left:744.900000px;}
.xed_c00324{left:747.000000px;}
.x10f_c00324{left:749.850000px;}
.xe4_c00324{left:751.500000px;}
.x109_c00324{left:753.750000px;}
.x130_c00324{left:754.950000px;}
.x113_c00324{left:756.450000px;}
.x141_c00324{left:757.650000px;}
.xb6_c00324{left:759.150000px;}
.xfd_c00324{left:760.650000px;}
.xdb_c00324{left:761.850000px;}
.xcc_c00324{left:768.900000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls1_c00324{letter-spacing:0.000000pt;}
.ls0_c00324{letter-spacing:44.632708pt;}
.ws3_c00324{word-spacing:-68.632708pt;}
.ws5_c00324{word-spacing:-5.847953pt;}
.ws9_c00324{word-spacing:0.000000pt;}
.ws1_c00324{word-spacing:22.857143pt;}
.ws6_c00324{word-spacing:26.031746pt;}
.ws0_c00324{word-spacing:35.555556pt;}
.ws4_c00324{word-spacing:39.259259pt;}
.ws8_c00324{word-spacing:49.312169pt;}
.ws2_c00324{word-spacing:54.444444pt;}
.ws7_c00324{word-spacing:133.333333pt;}
._1_c00324{margin-left:-44.632708pt;}
._0_c00324{width:52.698413pt;}
._2_c00324{width:201.904762pt;}
.fs5_c00324{font-size:26.666667pt;}
.fs4_c00324{font-size:48.000000pt;}
.fs3_c00324{font-size:53.333333pt;}
.fs1_c00324{font-size:58.666667pt;}
.fs2_c00324{font-size:64.000000pt;}
.fs0_c00324{font-size:74.666667pt;}
.y0_c00324{bottom:0.000000pt;}
.y38_c00324{bottom:174.400000pt;}
.y37_c00324{bottom:179.866667pt;}
.y6d_c00324{bottom:181.866667pt;}
.y6c_c00324{bottom:194.000000pt;}
.y36_c00324{bottom:196.133333pt;}
.y6b_c00324{bottom:207.066667pt;}
.y35_c00324{bottom:211.866667pt;}
.y6a_c00324{bottom:218.533333pt;}
.y34_c00324{bottom:227.866667pt;}
.y69_c00324{bottom:232.266667pt;}
.y68_c00324{bottom:244.266667pt;}
.y33_c00324{bottom:244.933333pt;}
.y32_c00324{bottom:258.400000pt;}
.y67_c00324{bottom:258.933333pt;}
.y31_c00324{bottom:271.200000pt;}
.y66_c00324{bottom:274.266667pt;}
.y30_c00324{bottom:283.733333pt;}
.y65_c00324{bottom:291.200000pt;}
.y2f_c00324{bottom:296.266667pt;}
.y64_c00324{bottom:307.200000pt;}
.y2e_c00324{bottom:309.066667pt;}
.y63_c00324{bottom:327.066667pt;}
.y2d_c00324{bottom:338.266667pt;}
.y62_c00324{bottom:342.666667pt;}
.y2c_c00324{bottom:351.600000pt;}
.y61_c00324{bottom:358.400000pt;}
.y2b_c00324{bottom:363.733333pt;}
.y60_c00324{bottom:374.000000pt;}
.y2a_c00324{bottom:377.200000pt;}
.y29_c00324{bottom:389.066667pt;}
.y5f_c00324{bottom:389.333333pt;}
.y28_c00324{bottom:402.533333pt;}
.y5e_c00324{bottom:405.066667pt;}
.y27_c00324{bottom:414.400000pt;}
.y5d_c00324{bottom:420.800000pt;}
.y26_c00324{bottom:427.866667pt;}
.y5c_c00324{bottom:440.000000pt;}
.y25_c00324{bottom:440.933333pt;}
.y24_c00324{bottom:453.466667pt;}
.y5b_c00324{bottom:463.333333pt;}
.y23_c00324{bottom:465.333333pt;}
.y22_c00324{bottom:479.066667pt;}
.y5a_c00324{bottom:483.466667pt;}
.y21_c00324{bottom:490.933333pt;}
.y59_c00324{bottom:499.466667pt;}
.y20_c00324{bottom:505.333333pt;}
.y58_c00324{bottom:515.200000pt;}
.y1f_c00324{bottom:521.333333pt;}
.y57_c00324{bottom:531.200000pt;}
.y1e_c00324{bottom:537.333333pt;}
.y56_c00324{bottom:547.200000pt;}
.y1d_c00324{bottom:553.333333pt;}
.y55_c00324{bottom:562.933333pt;}
.y1c_c00324{bottom:572.266667pt;}
.y54_c00324{bottom:578.666667pt;}
.y1b_c00324{bottom:588.533333pt;}
.y53_c00324{bottom:594.666667pt;}
.y1a_c00324{bottom:604.266667pt;}
.y52_c00324{bottom:610.400000pt;}
.y19_c00324{bottom:620.000000pt;}
.y51_c00324{bottom:626.133333pt;}
.y18_c00324{bottom:636.000000pt;}
.y50_c00324{bottom:641.866667pt;}
.y17_c00324{bottom:651.733333pt;}
.y4f_c00324{bottom:657.600000pt;}
.y16_c00324{bottom:667.466667pt;}
.y4e_c00324{bottom:677.066667pt;}
.y15_c00324{bottom:687.066667pt;}
.y4d_c00324{bottom:692.800000pt;}
.y4c_c00324{bottom:709.066667pt;}
.y14_c00324{bottom:710.533333pt;}
.y4b_c00324{bottom:724.800000pt;}
.y13_c00324{bottom:726.266667pt;}
.y12_c00324{bottom:742.533333pt;}
.y4a_c00324{bottom:743.866667pt;}
.y11_c00324{bottom:758.266667pt;}
.y49_c00324{bottom:759.600000pt;}
.y10_c00324{bottom:773.600000pt;}
.y48_c00324{bottom:775.600000pt;}
.yf_c00324{bottom:789.600000pt;}
.y47_c00324{bottom:791.333333pt;}
.ye_c00324{bottom:805.333333pt;}
.y46_c00324{bottom:807.066667pt;}
.yd_c00324{bottom:821.333333pt;}
.y45_c00324{bottom:822.800000pt;}
.yc_c00324{bottom:837.333333pt;}
.y44_c00324{bottom:838.533333pt;}
.yb_c00324{bottom:853.066667pt;}
.y43_c00324{bottom:854.266667pt;}
.ya_c00324{bottom:868.800000pt;}
.y42_c00324{bottom:870.000000pt;}
.y9_c00324{bottom:884.800000pt;}
.y41_c00324{bottom:886.266667pt;}
.y8_c00324{bottom:900.800000pt;}
.y40_c00324{bottom:901.333333pt;}
.y3f_c00324{bottom:917.333333pt;}
.y7_c00324{bottom:919.866667pt;}
.y3e_c00324{bottom:933.066667pt;}
.y6_c00324{bottom:935.200000pt;}
.y3d_c00324{bottom:949.066667pt;}
.y5_c00324{bottom:951.200000pt;}
.y3c_c00324{bottom:964.800000pt;}
.y4_c00324{bottom:967.466667pt;}
.y3b_c00324{bottom:980.533333pt;}
.y3_c00324{bottom:982.800000pt;}
.y3a_c00324{bottom:996.533333pt;}
.y2_c00324{bottom:998.133333pt;}
.y1_c00324{bottom:1020.533333pt;}
.y39_c00324{bottom:1129.866667pt;}
.h7_c00324{height:26.666667pt;}
.h6_c00324{height:48.000000pt;}
.h5_c00324{height:53.333333pt;}
.h3_c00324{height:58.666667pt;}
.h4_c00324{height:64.000000pt;}
.h2_c00324{height:74.666667pt;}
.h0_c00324{height:1134.399984pt;}
.h1_c00324{height:1134.666667pt;}
.w1_c00324{width:854.666667pt;}
.w0_c00324{width:854.720052pt;}
.x0_c00324{left:0.000000pt;}
.x29_c00324{left:71.733333pt;}
.x5f_c00324{left:72.933333pt;}
.x89_c00324{left:74.400000pt;}
.x7d_c00324{left:85.466667pt;}
.x79_c00324{left:86.533333pt;}
.xc_c00324{left:88.133333pt;}
.x5c_c00324{left:89.066667pt;}
.x76_c00324{left:90.133333pt;}
.x85_c00324{left:97.200000pt;}
.x82_c00324{left:98.400000pt;}
.x27_c00324{left:99.733333pt;}
.x9c_c00324{left:101.066667pt;}
.x3_c00324{left:104.666667pt;}
.x61_c00324{left:106.533333pt;}
.x5d_c00324{left:109.866667pt;}
.x49_c00324{left:113.600000pt;}
.xd_c00324{left:116.666667pt;}
.x6c_c00324{left:118.133333pt;}
.x28_c00324{left:119.866667pt;}
.x4_c00324{left:121.333333pt;}
.x43_c00324{left:122.533333pt;}
.x97_c00324{left:123.600000pt;}
.x8a_c00324{left:125.066667pt;}
.x32_c00324{left:126.800000pt;}
.x6f_c00324{left:128.000000pt;}
.x55_c00324{left:129.333333pt;}
.x2a_c00324{left:130.933333pt;}
.x51_c00324{left:132.000000pt;}
.x86_c00324{left:134.666667pt;}
.x34_c00324{left:135.866667pt;}
.x7b_c00324{left:136.933333pt;}
.x4a_c00324{left:139.466667pt;}
.x1a_c00324{left:140.533333pt;}
.x3d_c00324{left:146.133333pt;}
.x56_c00324{left:147.200000pt;}
.x4f_c00324{left:148.133333pt;}
.x3b_c00324{left:149.333333pt;}
.x98_c00324{left:150.533333pt;}
.x2b_c00324{left:152.666667pt;}
.x14_c00324{left:153.866667pt;}
.x95_c00324{left:155.066667pt;}
.x8d_c00324{left:156.400000pt;}
.x23_c00324{left:158.000000pt;}
.x1b_c00324{left:160.400000pt;}
.x2f_c00324{left:161.600000pt;}
.x62_c00324{left:162.800000pt;}
.x35_c00324{left:164.933333pt;}
.x57_c00324{left:166.666667pt;}
.x69_c00324{left:167.733333pt;}
.xe_c00324{left:171.066667pt;}
.x15_c00324{left:172.800000pt;}
.x60_c00324{left:173.733333pt;}
.x5_c00324{left:174.800000pt;}
.x24_c00324{left:176.933333pt;}
.x3e_c00324{left:178.133333pt;}
.x7c_c00324{left:179.466667pt;}
.x5e_c00324{left:181.600000pt;}
.x63_c00324{left:183.600000pt;}
.x44_c00324{left:184.933333pt;}
.x73_c00324{left:185.866667pt;}
.x8b_c00324{left:188.400000pt;}
.x99_c00324{left:190.400000pt;}
.x7a_c00324{left:192.400000pt;}
.x3f_c00324{left:194.400000pt;}
.x6d_c00324{left:195.600000pt;}
.x6_c00324{left:197.466667pt;}
.x50_c00324{left:199.600000pt;}
.x1c_c00324{left:200.666667pt;}
.x52_c00324{left:201.733333pt;}
.xf_c00324{left:204.666667pt;}
.x2c_c00324{left:206.400000pt;}
.x87_c00324{left:207.600000pt;}
.x9b_c00324{left:210.266667pt;}
.x83_c00324{left:212.400000pt;}
.x36_c00324{left:213.866667pt;}
.x30_c00324{left:215.733333pt;}
.x45_c00324{left:217.200000pt;}
.x58_c00324{left:220.400000pt;}
.x10_c00324{left:222.000000pt;}
.x6e_c00324{left:224.133333pt;}
.x70_c00324{left:226.533333pt;}
.x1d_c00324{left:227.600000pt;}
.x46_c00324{left:229.066667pt;}
.x96_c00324{left:230.266667pt;}
.x8e_c00324{left:231.600000pt;}
.x33_c00324{left:233.866667pt;}
.x6a_c00324{left:234.933333pt;}
.x68_c00324{left:235.866667pt;}
.x38_c00324{left:236.933333pt;}
.x8f_c00324{left:238.000000pt;}
.x40_c00324{left:238.933333pt;}
.x8c_c00324{left:240.266667pt;}
.x59_c00324{left:243.066667pt;}
.x90_c00324{left:244.666667pt;}
.x7e_c00324{left:246.400000pt;}
.x16_c00324{left:248.266667pt;}
.x66_c00324{left:249.866667pt;}
.x7_c00324{left:250.933333pt;}
.x53_c00324{left:252.266667pt;}
.x3c_c00324{left:254.266667pt;}
.x5a_c00324{left:257.733333pt;}
.x7f_c00324{left:259.200000pt;}
.x92_c00324{left:260.133333pt;}
.x88_c00324{left:262.933333pt;}
.x37_c00324{left:264.800000pt;}
.x41_c00324{left:266.800000pt;}
.x17_c00324{left:267.733333pt;}
.x8_c00324{left:270.133333pt;}
.x84_c00324{left:272.133333pt;}
.x77_c00324{left:274.666667pt;}
.x11_c00324{left:275.733333pt;}
.x25_c00324{left:277.466667pt;}
.x6b_c00324{left:279.733333pt;}
.x2d_c00324{left:281.600000pt;}
.x75_c00324{left:283.066667pt;}
.x80_c00324{left:285.066667pt;}
.x64_c00324{left:287.066667pt;}
.x1_c00324{left:288.000000pt;}
.x1e_c00324{left:289.733333pt;}
.x12_c00324{left:291.466667pt;}
.x4b_c00324{left:293.066667pt;}
.x9_c00324{left:294.800000pt;}
.x5b_c00324{left:295.866667pt;}
.x1f_c00324{left:298.400000pt;}
.x39_c00324{left:299.333333pt;}
.x47_c00324{left:300.666667pt;}
.x67_c00324{left:302.666667pt;}
.x4c_c00324{left:304.933333pt;}
.x91_c00324{left:306.400000pt;}
.x74_c00324{left:307.866667pt;}
.x71_c00324{left:310.000000pt;}
.x9a_c00324{left:311.333333pt;}
.x20_c00324{left:315.066667pt;}
.x4d_c00324{left:317.466667pt;}
.x48_c00324{left:319.600000pt;}
.x93_c00324{left:321.200000pt;}
.x18_c00324{left:323.733333pt;}
.x31_c00324{left:328.000000pt;}
.x42_c00324{left:328.933333pt;}
.x21_c00324{left:330.800000pt;}
.xa_c00324{left:332.266667pt;}
.x65_c00324{left:333.466667pt;}
.x81_c00324{left:335.600000pt;}
.x9d_c00324{left:336.933333pt;}
.x4e_c00324{left:338.933333pt;}
.x19_c00324{left:340.000000pt;}
.x72_c00324{left:342.000000pt;}
.xb_c00324{left:348.000000pt;}
.x94_c00324{left:349.600000pt;}
.x13_c00324{left:353.866667pt;}
.x26_c00324{left:356.800000pt;}
.x78_c00324{left:358.266667pt;}
.x54_c00324{left:359.733333pt;}
.x3a_c00324{left:361.200000pt;}
.x22_c00324{left:362.533333pt;}
.x2e_c00324{left:367.333333pt;}
.x139_c00324{left:387.866667pt;}
.x112_c00324{left:389.733333pt;}
.x135_c00324{left:396.933333pt;}
.xf1_c00324{left:399.200000pt;}
.x13b_c00324{left:400.800000pt;}
.xe8_c00324{left:404.000000pt;}
.xa1_c00324{left:405.066667pt;}
.x10a_c00324{left:406.000000pt;}
.x137_c00324{left:407.733333pt;}
.x142_c00324{left:413.600000pt;}
.x138_c00324{left:419.200000pt;}
.x101_c00324{left:421.066667pt;}
.xa8_c00324{left:422.933333pt;}
.x11e_c00324{left:423.866667pt;}
.xd1_c00324{left:425.200000pt;}
.x13c_c00324{left:426.133333pt;}
.x119_c00324{left:427.066667pt;}
.xdc_c00324{left:430.400000pt;}
.xa2_c00324{left:431.600000pt;}
.xfe_c00324{left:432.933333pt;}
.xb7_c00324{left:435.733333pt;}
.xa9_c00324{left:437.333333pt;}
.xee_c00324{left:440.933333pt;}
.xd7_c00324{left:443.200000pt;}
.xfa_c00324{left:444.400000pt;}
.xdd_c00324{left:445.733333pt;}
.xbf_c00324{left:447.066667pt;}
.x11c_c00324{left:448.800000pt;}
.xe5_c00324{left:450.400000pt;}
.x10b_c00324{left:451.733333pt;}
.xb1_c00324{left:453.333333pt;}
.xc5_c00324{left:454.933333pt;}
.xe9_c00324{left:456.533333pt;}
.xf2_c00324{left:457.466667pt;}
.x12b_c00324{left:458.533333pt;}
.xb8_c00324{left:459.466667pt;}
.x116_c00324{left:461.333333pt;}
.xcd_c00324{left:462.533333pt;}
.xaa_c00324{left:463.600000pt;}
.xde_c00324{left:465.200000pt;}
.xd2_c00324{left:466.133333pt;}
.xa3_c00324{left:468.400000pt;}
.x105_c00324{left:470.000000pt;}
.xf6_c00324{left:471.333333pt;}
.xf3_c00324{left:472.800000pt;}
.xb9_c00324{left:473.866667pt;}
.xa4_c00324{left:476.400000pt;}
.xea_c00324{left:478.266667pt;}
.x117_c00324{left:479.200000pt;}
.xab_c00324{left:480.266667pt;}
.xd3_c00324{left:481.466667pt;}
.xd8_c00324{left:482.933333pt;}
.x122_c00324{left:484.266667pt;}
.x12d_c00324{left:485.866667pt;}
.x11a_c00324{left:488.800000pt;}
.x110_c00324{left:490.266667pt;}
.xc6_c00324{left:491.333333pt;}
.x127_c00324{left:493.866667pt;}
.xff_c00324{left:495.333333pt;}
.x13a_c00324{left:496.666667pt;}
.xc0_c00324{left:497.600000pt;}
.xdf_c00324{left:498.533333pt;}
.x106_c00324{left:499.733333pt;}
.xac_c00324{left:501.066667pt;}
.xb2_c00324{left:502.666667pt;}
.x12f_c00324{left:503.733333pt;}
.xfb_c00324{left:505.200000pt;}
.x131_c00324{left:507.066667pt;}
.xe0_c00324{left:508.133333pt;}
.xc1_c00324{left:509.066667pt;}
.x10c_c00324{left:510.533333pt;}
.x102_c00324{left:512.933333pt;}
.x13d_c00324{left:514.400000pt;}
.xba_c00324{left:515.466667pt;}
.xc7_c00324{left:517.200000pt;}
.x12c_c00324{left:518.666667pt;}
.x111_c00324{left:520.000000pt;}
.x13e_c00324{left:521.466667pt;}
.x11f_c00324{left:524.666667pt;}
.xb3_c00324{left:527.600000pt;}
.xe6_c00324{left:528.800000pt;}
.x136_c00324{left:531.866667pt;}
.xbb_c00324{left:532.800000pt;}
.xad_c00324{left:534.666667pt;}
.xf7_c00324{left:536.000000pt;}
.x11b_c00324{left:537.733333pt;}
.xce_c00324{left:538.666667pt;}
.x125_c00324{left:541.333333pt;}
.xf4_c00324{left:542.533333pt;}
.xfc_c00324{left:544.266667pt;}
.x103_c00324{left:545.866667pt;}
.x107_c00324{left:547.466667pt;}
.xa5_c00324{left:549.066667pt;}
.xd4_c00324{left:550.533333pt;}
.x128_c00324{left:551.600000pt;}
.x13f_c00324{left:553.866667pt;}
.xc2_c00324{left:555.200000pt;}
.x134_c00324{left:556.133333pt;}
.x124_c00324{left:559.466667pt;}
.xc8_c00324{left:560.666667pt;}
.x129_c00324{left:563.466667pt;}
.xe1_c00324{left:565.333333pt;}
.xd9_c00324{left:566.800000pt;}
.x10d_c00324{left:570.400000pt;}
.xb4_c00324{left:571.466667pt;}
.xf8_c00324{left:572.533333pt;}
.x126_c00324{left:573.733333pt;}
.xae_c00324{left:574.666667pt;}
.x100_c00324{left:575.600000pt;}
.x12e_c00324{left:577.466667pt;}
.xbc_c00324{left:579.200000pt;}
.xe2_c00324{left:581.600000pt;}
.xc3_c00324{left:584.666667pt;}
.xe7_c00324{left:586.133333pt;}
.x9e_c00324{left:587.200000pt;}
.xf5_c00324{left:588.666667pt;}
.x104_c00324{left:589.733333pt;}
.x114_c00324{left:591.200000pt;}
.x12a_c00324{left:592.533333pt;}
.x123_c00324{left:593.733333pt;}
.xda_c00324{left:594.666667pt;}
.xcf_c00324{left:596.000000pt;}
.xc9_c00324{left:598.400000pt;}
.x9f_c00324{left:600.266667pt;}
.x132_c00324{left:601.466667pt;}
.x11d_c00324{left:603.066667pt;}
.xd5_c00324{left:606.133333pt;}
.x108_c00324{left:609.466667pt;}
.x118_c00324{left:611.733333pt;}
.xca_c00324{left:613.733333pt;}
.xeb_c00324{left:615.066667pt;}
.x10e_c00324{left:616.266667pt;}
.xbd_c00324{left:618.266667pt;}
.xb5_c00324{left:619.466667pt;}
.xef_c00324{left:620.400000pt;}
.xe3_c00324{left:621.866667pt;}
.xc4_c00324{left:623.333333pt;}
.xa0_c00324{left:624.266667pt;}
.x121_c00324{left:625.733333pt;}
.xcb_c00324{left:628.133333pt;}
.xd0_c00324{left:631.866667pt;}
.x120_c00324{left:633.733333pt;}
.x133_c00324{left:634.800000pt;}
.x115_c00324{left:636.266667pt;}
.xaf_c00324{left:638.666667pt;}
.xd6_c00324{left:640.666667pt;}
.xec_c00324{left:642.266667pt;}
.xa6_c00324{left:644.800000pt;}
.xf0_c00324{left:646.266667pt;}
.x140_c00324{left:648.800000pt;}
.xf9_c00324{left:654.400000pt;}
.xbe_c00324{left:656.400000pt;}
.xb0_c00324{left:657.866667pt;}
.xa7_c00324{left:659.200000pt;}
.x2_c00324{left:662.133333pt;}
.xed_c00324{left:664.000000pt;}
.x10f_c00324{left:666.533333pt;}
.xe4_c00324{left:668.000000pt;}
.x109_c00324{left:670.000000pt;}
.x130_c00324{left:671.066667pt;}
.x113_c00324{left:672.400000pt;}
.x141_c00324{left:673.466667pt;}
.xb6_c00324{left:674.800000pt;}
.xfd_c00324{left:676.133333pt;}
.xdb_c00324{left:677.200000pt;}
.xcc_c00324{left:683.466667pt;}
}





/* 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_c00325 {
    display:none;
  }
  .loading-indicator_c00325.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00325 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_c00325 { 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_c00325" -> "#page-container .classname_c00325")
 */
.pf_c00325 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00325 { /* 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_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00325 { /* 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_c00325 { /* 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_c00325 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00325 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00325 {overflow:visible;}
  }
}
.c_c00325 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00325 { /* 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_c00325:after { /* webkit #35443 */
  content: '';
}
.t_c00325:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00325 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 */
}
.__c00325 { /* 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_c00325 { /* info for Javascript */
  display:none;
}
.l_c00325 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00325 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00325 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00325: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_c00325 {
    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_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00325.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_c00325 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00325;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.000000;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;}
.mbb_c00325{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m43_c00325{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00325{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00325{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00325{transform:matrix(0.046750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00325{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.md_c00325{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00325{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mf_c00325{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me_c00325{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m83_c00325{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m104_c00325{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mac_c00325{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m112_c00325{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m34_c00325{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10_c00325{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00325{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m54_c00325{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m61_c00325{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00325{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00325{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9_c00325{transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);}
.m7_c00325{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m113_c00325{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m120_c00325{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00325{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00325{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m103_c00325{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mba_c00325{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md6_c00325{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m105_c00325{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.me9_c00325{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m110_c00325{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00325{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00325{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00325{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m16_c00325{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m95_c00325{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00325{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00325{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m79_c00325{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00325{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m91_c00325{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m39_c00325{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00325{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00325{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00325{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m76_c00325{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m65_c00325{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m60_c00325{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m106_c00325{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00325{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m11_c00325{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00325{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m78_c00325{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00325{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m75_c00325{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m29_c00325{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m84_c00325{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00325{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m108_c00325{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m6_c00325{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m30_c00325{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m94_c00325{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m124_c00325{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00325{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00325{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m8_c00325{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mef_c00325{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m99_c00325{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00325{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00325{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00325{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mee_c00325{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m89_c00325{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m36_c00325{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m33_c00325{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00325{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me7_c00325{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m98_c00325{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00325{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00325{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mea_c00325{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m38_c00325{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00325{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m18_c00325{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me8_c00325{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m122_c00325{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4_c00325{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00325{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m70_c00325{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00325{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m15_c00325{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00325{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00325{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md5_c00325{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m32_c00325{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00325{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00325{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m71_c00325{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00325{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mce_c00325{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m81_c00325{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00325{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00325{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m23_c00325{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m17_c00325{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m58_c00325{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m123_c00325{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m63_c00325{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m88_c00325{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m46_c00325{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m24_c00325{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m48_c00325{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00325{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m67_c00325{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00325{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb_c00325{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00325{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me3_c00325{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00325{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m119_c00325{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00325{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.me0_c00325{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00325{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m52_c00325{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00325{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m55_c00325{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00325{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00325{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00325{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00325{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m44_c00325{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m19_c00325{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00325{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00325{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00325{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m72_c00325{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m31_c00325{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00325{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m50_c00325{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m37_c00325{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00325{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m22_c00325{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00325{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00325{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00325{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m80_c00325{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m59_c00325{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5_c00325{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m101_c00325{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.me2_c00325{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m49_c00325{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m82_c00325{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m42_c00325{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m25_c00325{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc_c00325{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m14_c00325{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.maa_c00325{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m68_c00325{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00325{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00325{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00325{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m47_c00325{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00325{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00325{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m13_c00325{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m66_c00325{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m64_c00325{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00325{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m87_c00325{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00325{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m28_c00325{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m74_c00325{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00325{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.meb_c00325{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m27_c00325{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.me5_c00325{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00325{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m0_c00325{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00325{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m57_c00325{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00325{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00325{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.md0_c00325{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m35_c00325{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00325{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m20_c00325{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.md4_c00325{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.med_c00325{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00325{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me1_c00325{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00325{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m41_c00325{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mde_c00325{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00325{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00325{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m86_c00325{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00325{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00325{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mca_c00325{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m56_c00325{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mae_c00325{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00325{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00325{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00325{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00325{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m62_c00325{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m77_c00325{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00325{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00325{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00325{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00325{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md7_c00325{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mad_c00325{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00325{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mab_c00325{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mda_c00325{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m45_c00325{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00325{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m12_c00325{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m114_c00325{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m53_c00325{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00325{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m40_c00325{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00325{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md3_c00325{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00325{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m85_c00325{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00325{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.ma_c00325{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m73_c00325{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m90_c00325{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00325{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00325{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mff_c00325{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00325{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00325{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m121_c00325{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m51_c00325{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mec_c00325{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me4_c00325{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00325{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m21_c00325{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00325{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md1_c00325{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00325{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00325{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00325{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m96_c00325{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00325{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m69_c00325{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m92_c00325{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.md2_c00325{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m26_c00325{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00325{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00325{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.md8_c00325{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m111_c00325{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00325{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00325{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m93_c00325{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m97_c00325{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me6_c00325{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m100_c00325{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00325{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00325{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00325{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00325{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00325{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00325{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00325{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md9_c00325{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m107_c00325{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m118_c00325{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00325{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00325{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00325{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00325{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00325{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m102_c00325{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00325{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.maf_c00325{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00325{transform:matrix(0.353750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00325{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m109_c00325{transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);}
.m115_c00325{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00325{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m116_c00325{transform:matrix(0.470500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470500,0.000000,0.000000,0.250000,0,0);}
.m117_c00325{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls0_c00325{letter-spacing:0.000000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{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__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00325{word-spacing:-15.151203px;}
.ws4_c00325{word-spacing:-2.345725px;}
.ws6_c00325{word-spacing:0.000000px;}
.ws5_c00325{word-spacing:7.297297px;}
.ws0_c00325{word-spacing:40.000000px;}
.ws1_c00325{word-spacing:65.000000px;}
.ws3_c00325{word-spacing:1599.137615px;}
.fc0_c00325{color:transparent;}
.fs5_c00325{font-size:30.000000px;}
.fs6_c00325{font-size:48.000000px;}
.fs4_c00325{font-size:54.000000px;}
.fs2_c00325{font-size:60.000000px;}
.fs0_c00325{font-size:66.000000px;}
.fs3_c00325{font-size:72.000000px;}
.fs1_c00325{font-size:84.000000px;}
.y0_c00325{bottom:0.000000px;}
.y38_c00325{bottom:173.850000px;}
.y6f_c00325{bottom:189.000000px;}
.y37_c00325{bottom:190.800000px;}
.y36_c00325{bottom:202.350000px;}
.y6e_c00325{bottom:203.700000px;}
.y35_c00325{bottom:211.050000px;}
.y6d_c00325{bottom:218.100000px;}
.y34_c00325{bottom:227.550000px;}
.y6c_c00325{bottom:232.200000px;}
.y33_c00325{bottom:247.350000px;}
.y32_c00325{bottom:276.150000px;}
.y6b_c00325{bottom:276.900000px;}
.y69_c00325{bottom:280.050000px;}
.y6a_c00325{bottom:281.550000px;}
.y31_c00325{bottom:295.200000px;}
.y68_c00325{bottom:295.500000px;}
.y67_c00325{bottom:310.350000px;}
.y30_c00325{bottom:313.050000px;}
.y66_c00325{bottom:324.750000px;}
.y2f_c00325{bottom:330.750000px;}
.y65_c00325{bottom:339.150000px;}
.y2e_c00325{bottom:348.750000px;}
.y64_c00325{bottom:353.250000px;}
.y2d_c00325{bottom:366.450000px;}
.y63_c00325{bottom:367.950000px;}
.y62_c00325{bottom:381.600000px;}
.y2c_c00325{bottom:391.650000px;}
.y61_c00325{bottom:397.800000px;}
.y2b_c00325{bottom:410.400000px;}
.y60_c00325{bottom:416.100000px;}
.y2a_c00325{bottom:428.400000px;}
.y5f_c00325{bottom:434.400000px;}
.y29_c00325{bottom:446.100000px;}
.y5e_c00325{bottom:452.400000px;}
.y28_c00325{bottom:464.100000px;}
.y5d_c00325{bottom:470.100000px;}
.y27_c00325{bottom:481.950000px;}
.y5c_c00325{bottom:492.000000px;}
.y26_c00325{bottom:499.650000px;}
.y5b_c00325{bottom:510.300000px;}
.y25_c00325{bottom:517.650000px;}
.y5a_c00325{bottom:528.000000px;}
.y24_c00325{bottom:535.650000px;}
.y59_c00325{bottom:546.000000px;}
.y23_c00325{bottom:553.350000px;}
.y58_c00325{bottom:563.700000px;}
.y22_c00325{bottom:574.500000px;}
.y57_c00325{bottom:585.750000px;}
.y21_c00325{bottom:593.400000px;}
.y20_c00325{bottom:611.100000px;}
.y56_c00325{bottom:617.400000px;}
.y1f_c00325{bottom:629.100000px;}
.y55_c00325{bottom:635.400000px;}
.y1e_c00325{bottom:646.800000px;}
.y54_c00325{bottom:653.400000px;}
.y1d_c00325{bottom:664.500000px;}
.y53_c00325{bottom:671.100000px;}
.y1c_c00325{bottom:684.900000px;}
.y52_c00325{bottom:696.900000px;}
.y1b_c00325{bottom:704.400000px;}
.y51_c00325{bottom:715.200000px;}
.y1a_c00325{bottom:722.400000px;}
.y50_c00325{bottom:733.200000px;}
.y19_c00325{bottom:740.100000px;}
.y4f_c00325{bottom:751.500000px;}
.y18_c00325{bottom:758.100000px;}
.y4e_c00325{bottom:769.200000px;}
.y17_c00325{bottom:775.800000px;}
.y4d_c00325{bottom:787.200000px;}
.y16_c00325{bottom:793.050000px;}
.y4c_c00325{bottom:804.900000px;}
.y15_c00325{bottom:811.050000px;}
.y4b_c00325{bottom:822.600000px;}
.y39_c00325{bottom:824.400000px;}
.y14_c00325{bottom:829.050000px;}
.y4a_c00325{bottom:840.600000px;}
.y13_c00325{bottom:846.750000px;}
.y49_c00325{bottom:862.500000px;}
.y12_c00325{bottom:865.050000px;}
.y48_c00325{bottom:880.500000px;}
.y11_c00325{bottom:882.300000px;}
.y47_c00325{bottom:898.500000px;}
.y10_c00325{bottom:901.800000px;}
.y46_c00325{bottom:916.500000px;}
.yf_c00325{bottom:922.200000px;}
.y45_c00325{bottom:934.200000px;}
.ye_c00325{bottom:939.900000px;}
.y44_c00325{bottom:951.900000px;}
.yd_c00325{bottom:957.600000px;}
.y43_c00325{bottom:969.900000px;}
.yc_c00325{bottom:975.600000px;}
.y42_c00325{bottom:992.250000px;}
.yb_c00325{bottom:993.300000px;}
.y41_c00325{bottom:1005.150000px;}
.ya_c00325{bottom:1014.450000px;}
.y40_c00325{bottom:1022.100000px;}
.y9_c00325{bottom:1026.300000px;}
.y3f_c00325{bottom:1038.900000px;}
.y8_c00325{bottom:1042.500000px;}
.y3e_c00325{bottom:1053.300000px;}
.y7_c00325{bottom:1055.100000px;}
.y3d_c00325{bottom:1058.400000px;}
.y3c_c00325{bottom:1068.900000px;}
.y6_c00325{bottom:1071.300000px;}
.y3b_c00325{bottom:1076.100000px;}
.y5_c00325{bottom:1083.600000px;}
.y3a_c00325{bottom:1095.150000px;}
.y4_c00325{bottom:1099.800000px;}
.y3_c00325{bottom:1115.700000px;}
.y1_c00325{bottom:1135.050000px;}
.y2_c00325{bottom:1139.700000px;}
.h7_c00325{height:30.000000px;}
.h8_c00325{height:48.000000px;}
.h6_c00325{height:54.000000px;}
.h4_c00325{height:60.000000px;}
.h2_c00325{height:66.000000px;}
.h5_c00325{height:72.000000px;}
.h3_c00325{height:84.000000px;}
.h0_c00325{height:1268.640015px;}
.h1_c00325{height:1269.000000px;}
.w1_c00325{width:961.500000px;}
.w0_c00325{width:961.560058px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:168.900000px;}
.x28_c00325{left:173.550000px;}
.x46_c00325{left:179.250000px;}
.x51_c00325{left:181.800000px;}
.xb_c00325{left:184.050000px;}
.x1b_c00325{left:185.100000px;}
.x26_c00325{left:186.900000px;}
.xa1_c00325{left:189.000000px;}
.x40_c00325{left:190.500000px;}
.x2e_c00325{left:191.550000px;}
.x64_c00325{left:192.750000px;}
.x80_c00325{left:194.700000px;}
.x8a_c00325{left:196.650000px;}
.x9a_c00325{left:197.700000px;}
.x3_c00325{left:199.050000px;}
.x1e_c00325{left:200.550000px;}
.xb3_c00325{left:202.950000px;}
.x48_c00325{left:209.100000px;}
.x7c_c00325{left:211.650000px;}
.x52_c00325{left:216.000000px;}
.x41_c00325{left:220.050000px;}
.x16_c00325{left:221.400000px;}
.x22_c00325{left:222.450000px;}
.x39_c00325{left:224.250000px;}
.xc_c00325{left:226.200000px;}
.x4d_c00325{left:228.000000px;}
.x65_c00325{left:230.250000px;}
.x73_c00325{left:232.050000px;}
.xa7_c00325{left:235.350000px;}
.x92_c00325{left:236.550000px;}
.x34_c00325{left:237.750000px;}
.x53_c00325{left:239.400000px;}
.x5d_c00325{left:240.600000px;}
.x6f_c00325{left:241.800000px;}
.x1f_c00325{left:244.500000px;}
.x66_c00325{left:246.750000px;}
.x35_c00325{left:247.800000px;}
.x42_c00325{left:250.350000px;}
.x81_c00325{left:252.150000px;}
.x5e_c00325{left:254.250000px;}
.x29_c00325{left:255.600000px;}
.x8b_c00325{left:258.600000px;}
.x49_c00325{left:261.000000px;}
.x4_c00325{left:262.050000px;}
.x23_c00325{left:264.150000px;}
.xb0_c00325{left:266.100000px;}
.x17_c00325{left:267.150000px;}
.x82_c00325{left:269.400000px;}
.x9e_c00325{left:271.350000px;}
.x54_c00325{left:272.550000px;}
.x98_c00325{left:274.350000px;}
.x5f_c00325{left:275.550000px;}
.x3a_c00325{left:276.750000px;}
.xd_c00325{left:278.700000px;}
.x7d_c00325{left:280.350000px;}
.x5_c00325{left:283.350000px;}
.x18_c00325{left:285.150000px;}
.x8d_c00325{left:288.000000px;}
.x47_c00325{left:289.500000px;}
.x4a_c00325{left:290.550000px;}
.x8c_c00325{left:293.100000px;}
.x9f_c00325{left:295.050000px;}
.x43_c00325{left:296.850000px;}
.x74_c00325{left:297.900000px;}
.x67_c00325{left:298.950000px;}
.x86_c00325{left:300.600000px;}
.x55_c00325{left:301.650000px;}
.x2f_c00325{left:303.900000px;}
.x70_c00325{left:306.900000px;}
.xb1_c00325{left:308.850000px;}
.xae_c00325{left:312.450000px;}
.x24_c00325{left:313.800000px;}
.x6d_c00325{left:315.000000px;}
.x60_c00325{left:316.950000px;}
.x20_c00325{left:318.000000px;}
.x30_c00325{left:319.350000px;}
.xa2_c00325{left:320.400000px;}
.x3b_c00325{left:324.000000px;}
.xaf_c00325{left:325.200000px;}
.x44_c00325{left:326.400000px;}
.xe_c00325{left:328.800000px;}
.x61_c00325{left:331.350000px;}
.x93_c00325{left:333.000000px;}
.x68_c00325{left:334.200000px;}
.x19_c00325{left:336.300000px;}
.x31_c00325{left:338.400000px;}
.xaa_c00325{left:340.350000px;}
.x4b_c00325{left:341.700000px;}
.xb2_c00325{left:342.750000px;}
.x75_c00325{left:344.400000px;}
.xa8_c00325{left:345.450000px;}
.x78_c00325{left:351.300000px;}
.x83_c00325{left:353.250000px;}
.x56_c00325{left:355.350000px;}
.x99_c00325{left:356.400000px;}
.x9b_c00325{left:358.200000px;}
.xad_c00325{left:360.000000px;}
.x94_c00325{left:361.050000px;}
.x2a_c00325{left:362.550000px;}
.x6_c00325{left:363.600000px;}
.x25_c00325{left:366.300000px;}
.x87_c00325{left:367.950000px;}
.x8e_c00325{left:369.000000px;}
.x3c_c00325{left:370.050000px;}
.xf_c00325{left:372.000000px;}
.xa3_c00325{left:374.100000px;}
.x4e_c00325{left:378.150000px;}
.x10_c00325{left:379.200000px;}
.xab_c00325{left:381.150000px;}
.x2b_c00325{left:382.350000px;}
.x21_c00325{left:384.150000px;}
.x11_c00325{left:386.400000px;}
.x57_c00325{left:387.750000px;}
.x79_c00325{left:389.850000px;}
.x36_c00325{left:391.650000px;}
.x1a_c00325{left:392.850000px;}
.x69_c00325{left:394.350000px;}
.x59_c00325{left:396.000000px;}
.x12_c00325{left:400.800000px;}
.xac_c00325{left:402.450000px;}
.x62_c00325{left:404.400000px;}
.x2c_c00325{left:405.450000px;}
.x7a_c00325{left:407.100000px;}
.x7_c00325{left:408.300000px;}
.x37_c00325{left:410.700000px;}
.x7e_c00325{left:412.500000px;}
.x6a_c00325{left:414.450000px;}
.x2_c00325{left:415.500000px;}
.x32_c00325{left:418.350000px;}
.x8f_c00325{left:419.850000px;}
.x4c_c00325{left:421.950000px;}
.x88_c00325{left:423.000000px;}
.x58_c00325{left:424.050000px;}
.x8_c00325{left:425.250000px;}
.x5a_c00325{left:426.300000px;}
.x90_c00325{left:429.150000px;}
.x9c_c00325{left:430.200000px;}
.x6e_c00325{left:431.400000px;}
.x76_c00325{left:432.900000px;}
.x1c_c00325{left:434.250000px;}
.x13_c00325{left:435.300000px;}
.x27_c00325{left:436.350000px;}
.x6b_c00325{left:439.950000px;}
.x95_c00325{left:441.000000px;}
.x3d_c00325{left:442.500000px;}
.x71_c00325{left:446.550000px;}
.x38_c00325{left:448.200000px;}
.x6c_c00325{left:449.250000px;}
.x84_c00325{left:450.750000px;}
.x7b_c00325{left:451.800000px;}
.xa0_c00325{left:454.200000px;}
.x9_c00325{left:455.850000px;}
.x33_c00325{left:457.650000px;}
.x89_c00325{left:460.050000px;}
.x3e_c00325{left:461.250000px;}
.x14_c00325{left:463.050000px;}
.xa4_c00325{left:466.200000px;}
.x4f_c00325{left:467.700000px;}
.x63_c00325{left:469.200000px;}
.xa5_c00325{left:471.150000px;}
.x7f_c00325{left:472.200000px;}
.x45_c00325{left:473.700000px;}
.x96_c00325{left:475.950000px;}
.x72_c00325{left:477.900000px;}
.x9d_c00325{left:479.100000px;}
.x85_c00325{left:481.350000px;}
.x5b_c00325{left:482.850000px;}
.x2d_c00325{left:484.650000px;}
.x3f_c00325{left:486.750000px;}
.x50_c00325{left:488.550000px;}
.xa_c00325{left:489.750000px;}
.x15_c00325{left:492.150000px;}
.x1d_c00325{left:493.200000px;}
.x5c_c00325{left:494.400000px;}
.x91_c00325{left:499.950000px;}
.xa6_c00325{left:502.800000px;}
.x77_c00325{left:508.200000px;}
.x97_c00325{left:510.450000px;}
.xa9_c00325{left:511.950000px;}
.xb4_c00325{left:514.350000px;}
.xb5_c00325{left:517.350000px;}
.xc3_c00325{left:527.400000px;}
.xe6_c00325{left:529.200000px;}
.x12b_c00325{left:533.100000px;}
.x136_c00325{left:534.300000px;}
.x145_c00325{left:535.350000px;}
.x14e_c00325{left:536.400000px;}
.x15d_c00325{left:539.400000px;}
.xd6_c00325{left:542.250000px;}
.xb6_c00325{left:544.350000px;}
.xed_c00325{left:545.700000px;}
.xce_c00325{left:547.500000px;}
.x119_c00325{left:548.550000px;}
.x126_c00325{left:549.750000px;}
.x131_c00325{left:551.400000px;}
.x104_c00325{left:552.900000px;}
.xe5_c00325{left:557.100000px;}
.x146_c00325{left:559.500000px;}
.x160_c00325{left:561.750000px;}
.xda_c00325{left:562.800000px;}
.x114_c00325{left:565.050000px;}
.x11a_c00325{left:566.550000px;}
.xf2_c00325{left:568.800000px;}
.xc4_c00325{left:571.650000px;}
.xd7_c00325{left:576.150000px;}
.xee_c00325{left:578.100000px;}
.x144_c00325{left:579.300000px;}
.x120_c00325{left:581.250000px;}
.x140_c00325{left:583.800000px;}
.x105_c00325{left:585.000000px;}
.xf8_c00325{left:587.250000px;}
.x10a_c00325{left:589.050000px;}
.xb7_c00325{left:592.650000px;}
.x127_c00325{left:594.000000px;}
.x123_c00325{left:595.500000px;}
.x121_c00325{left:598.500000px;}
.x100_c00325{left:599.700000px;}
.x10f_c00325{left:601.200000px;}
.xcf_c00325{left:603.300000px;}
.x106_c00325{left:605.100000px;}
.x132_c00325{left:606.450000px;}
.x137_c00325{left:608.850000px;}
.x110_c00325{left:610.500000px;}
.xe7_c00325{left:613.800000px;}
.x14c_c00325{left:615.300000px;}
.xdb_c00325{left:616.500000px;}
.x141_c00325{left:618.000000px;}
.xc2_c00325{left:620.550000px;}
.xd0_c00325{left:621.600000px;}
.x15e_c00325{left:626.850000px;}
.xfd_c00325{left:627.900000px;}
.xb8_c00325{left:629.700000px;}
.x13a_c00325{left:634.200000px;}
.xc5_c00325{left:636.450000px;}
.x161_c00325{left:638.100000px;}
.x10b_c00325{left:640.950000px;}
.x147_c00325{left:642.600000px;}
.x149_c00325{left:644.100000px;}
.x150_c00325{left:645.600000px;}
.x11b_c00325{left:647.100000px;}
.x133_c00325{left:648.600000px;}
.xdc_c00325{left:649.650000px;}
.xf9_c00325{left:651.300000px;}
.xe8_c00325{left:653.400000px;}
.x13b_c00325{left:655.500000px;}
.x153_c00325{left:657.150000px;}
.x12a_c00325{left:658.350000px;}
.xdf_c00325{left:660.300000px;}
.x107_c00325{left:663.000000px;}
.x11c_c00325{left:664.050000px;}
.xf3_c00325{left:665.250000px;}
.xb9_c00325{left:666.450000px;}
.x122_c00325{left:668.400000px;}
.xef_c00325{left:671.250000px;}
.xc6_c00325{left:673.500000px;}
.x134_c00325{left:674.850000px;}
.xd1_c00325{left:676.650000px;}
.x14a_c00325{left:678.300000px;}
.x159_c00325{left:680.100000px;}
.x13c_c00325{left:681.750000px;}
.xc7_c00325{left:684.000000px;}
.x156_c00325{left:685.950000px;}
.xf4_c00325{left:688.350000px;}
.x148_c00325{left:689.700000px;}
.xdd_c00325{left:691.050000px;}
.xf0_c00325{left:693.150000px;}
.x12e_c00325{left:694.200000px;}
.x115_c00325{left:695.400000px;}
.xba_c00325{left:697.350000px;}
.x108_c00325{left:698.700000px;}
.x154_c00325{left:700.050000px;}
.xe0_c00325{left:702.750000px;}
.x158_c00325{left:704.100000px;}
.xf5_c00325{left:706.050000px;}
.xe9_c00325{left:707.100000px;}
.x138_c00325{left:708.150000px;}
.x11d_c00325{left:711.900000px;}
.xbb_c00325{left:713.850000px;}
.x14d_c00325{left:715.350000px;}
.xcd_c00325{left:716.400000px;}
.xd2_c00325{left:719.850000px;}
.xfa_c00325{left:721.800000px;}
.x109_c00325{left:723.600000px;}
.xc8_c00325{left:725.100000px;}
.xe1_c00325{left:726.450000px;}
.x13d_c00325{left:727.500000px;}
.xfe_c00325{left:729.000000px;}
.x14b_c00325{left:730.500000px;}
.x128_c00325{left:731.850000px;}
.xde_c00325{left:733.800000px;}
.xd8_c00325{left:735.600000px;}
.xff_c00325{left:737.250000px;}
.x139_c00325{left:738.450000px;}
.xea_c00325{left:742.800000px;}
.xd3_c00325{left:745.050000px;}
.xc9_c00325{left:746.400000px;}
.x12c_c00325{left:748.350000px;}
.xbc_c00325{left:750.900000px;}
.x101_c00325{left:751.950000px;}
.x151_c00325{left:753.300000px;}
.x111_c00325{left:754.500000px;}
.x124_c00325{left:756.150000px;}
.xf6_c00325{left:759.000000px;}
.x116_c00325{left:760.500000px;}
.x135_c00325{left:762.600000px;}
.xca_c00325{left:763.650000px;}
.xbd_c00325{left:766.350000px;}
.x10c_c00325{left:767.850000px;}
.x117_c00325{left:770.250000px;}
.xd4_c00325{left:774.150000px;}
.x152_c00325{left:775.950000px;}
.x12f_c00325{left:777.450000px;}
.xf7_c00325{left:780.900000px;}
.xe2_c00325{left:784.350000px;}
.x15b_c00325{left:786.300000px;}
.x11e_c00325{left:787.500000px;}
.x10d_c00325{left:789.150000px;}
.xf1_c00325{left:790.350000px;}
.xe3_c00325{left:792.450000px;}
.x15f_c00325{left:793.500000px;}
.x162_c00325{left:795.000000px;}
.xbe_c00325{left:798.000000px;}
.x143_c00325{left:799.950000px;}
.x13f_c00325{left:801.150000px;}
.xfb_c00325{left:806.400000px;}
.xbf_c00325{left:807.750000px;}
.x112_c00325{left:809.550000px;}
.x102_c00325{left:812.100000px;}
.xcb_c00325{left:816.150000px;}
.xeb_c00325{left:818.850000px;}
.x142_c00325{left:821.100000px;}
.x14f_c00325{left:822.300000px;}
.xc0_c00325{left:823.950000px;}
.x11f_c00325{left:825.000000px;}
.x125_c00325{left:826.950000px;}
.x155_c00325{left:828.600000px;}
.xd9_c00325{left:830.700000px;}
.x129_c00325{left:835.800000px;}
.x12d_c00325{left:837.300000px;}
.xd5_c00325{left:839.250000px;}
.x13e_c00325{left:840.600000px;}
.x130_c00325{left:842.700000px;}
.x103_c00325{left:843.750000px;}
.xfc_c00325{left:845.250000px;}
.x10e_c00325{left:847.050000px;}
.xc1_c00325{left:848.850000px;}
.xcc_c00325{left:852.150000px;}
.xe4_c00325{left:853.350000px;}
.xec_c00325{left:855.600000px;}
.x157_c00325{left:858.750000px;}
.x15a_c00325{left:860.400000px;}
.x118_c00325{left:862.050000px;}
.x113_c00325{left:863.850000px;}
.x15c_c00325{left:864.900000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws2_c00325{word-spacing:-13.467736pt;}
.ws4_c00325{word-spacing:-2.085089pt;}
.ws6_c00325{word-spacing:0.000000pt;}
.ws5_c00325{word-spacing:6.486486pt;}
.ws0_c00325{word-spacing:35.555556pt;}
.ws1_c00325{word-spacing:57.777778pt;}
.ws3_c00325{word-spacing:1421.455657pt;}
.fs5_c00325{font-size:26.666667pt;}
.fs6_c00325{font-size:42.666667pt;}
.fs4_c00325{font-size:48.000000pt;}
.fs2_c00325{font-size:53.333333pt;}
.fs0_c00325{font-size:58.666667pt;}
.fs3_c00325{font-size:64.000000pt;}
.fs1_c00325{font-size:74.666667pt;}
.y0_c00325{bottom:0.000000pt;}
.y38_c00325{bottom:154.533333pt;}
.y6f_c00325{bottom:168.000000pt;}
.y37_c00325{bottom:169.600000pt;}
.y36_c00325{bottom:179.866667pt;}
.y6e_c00325{bottom:181.066667pt;}
.y35_c00325{bottom:187.600000pt;}
.y6d_c00325{bottom:193.866667pt;}
.y34_c00325{bottom:202.266667pt;}
.y6c_c00325{bottom:206.400000pt;}
.y33_c00325{bottom:219.866667pt;}
.y32_c00325{bottom:245.466667pt;}
.y6b_c00325{bottom:246.133333pt;}
.y69_c00325{bottom:248.933333pt;}
.y6a_c00325{bottom:250.266667pt;}
.y31_c00325{bottom:262.400000pt;}
.y68_c00325{bottom:262.666667pt;}
.y67_c00325{bottom:275.866667pt;}
.y30_c00325{bottom:278.266667pt;}
.y66_c00325{bottom:288.666667pt;}
.y2f_c00325{bottom:294.000000pt;}
.y65_c00325{bottom:301.466667pt;}
.y2e_c00325{bottom:310.000000pt;}
.y64_c00325{bottom:314.000000pt;}
.y2d_c00325{bottom:325.733333pt;}
.y63_c00325{bottom:327.066667pt;}
.y62_c00325{bottom:339.200000pt;}
.y2c_c00325{bottom:348.133333pt;}
.y61_c00325{bottom:353.600000pt;}
.y2b_c00325{bottom:364.800000pt;}
.y60_c00325{bottom:369.866667pt;}
.y2a_c00325{bottom:380.800000pt;}
.y5f_c00325{bottom:386.133333pt;}
.y29_c00325{bottom:396.533333pt;}
.y5e_c00325{bottom:402.133333pt;}
.y28_c00325{bottom:412.533333pt;}
.y5d_c00325{bottom:417.866667pt;}
.y27_c00325{bottom:428.400000pt;}
.y5c_c00325{bottom:437.333333pt;}
.y26_c00325{bottom:444.133333pt;}
.y5b_c00325{bottom:453.600000pt;}
.y25_c00325{bottom:460.133333pt;}
.y5a_c00325{bottom:469.333333pt;}
.y24_c00325{bottom:476.133333pt;}
.y59_c00325{bottom:485.333333pt;}
.y23_c00325{bottom:491.866667pt;}
.y58_c00325{bottom:501.066667pt;}
.y22_c00325{bottom:510.666667pt;}
.y57_c00325{bottom:520.666667pt;}
.y21_c00325{bottom:527.466667pt;}
.y20_c00325{bottom:543.200000pt;}
.y56_c00325{bottom:548.800000pt;}
.y1f_c00325{bottom:559.200000pt;}
.y55_c00325{bottom:564.800000pt;}
.y1e_c00325{bottom:574.933333pt;}
.y54_c00325{bottom:580.800000pt;}
.y1d_c00325{bottom:590.666667pt;}
.y53_c00325{bottom:596.533333pt;}
.y1c_c00325{bottom:608.800000pt;}
.y52_c00325{bottom:619.466667pt;}
.y1b_c00325{bottom:626.133333pt;}
.y51_c00325{bottom:635.733333pt;}
.y1a_c00325{bottom:642.133333pt;}
.y50_c00325{bottom:651.733333pt;}
.y19_c00325{bottom:657.866667pt;}
.y4f_c00325{bottom:668.000000pt;}
.y18_c00325{bottom:673.866667pt;}
.y4e_c00325{bottom:683.733333pt;}
.y17_c00325{bottom:689.600000pt;}
.y4d_c00325{bottom:699.733333pt;}
.y16_c00325{bottom:704.933333pt;}
.y4c_c00325{bottom:715.466667pt;}
.y15_c00325{bottom:720.933333pt;}
.y4b_c00325{bottom:731.200000pt;}
.y39_c00325{bottom:732.800000pt;}
.y14_c00325{bottom:736.933333pt;}
.y4a_c00325{bottom:747.200000pt;}
.y13_c00325{bottom:752.666667pt;}
.y49_c00325{bottom:766.666667pt;}
.y12_c00325{bottom:768.933333pt;}
.y48_c00325{bottom:782.666667pt;}
.y11_c00325{bottom:784.266667pt;}
.y47_c00325{bottom:798.666667pt;}
.y10_c00325{bottom:801.600000pt;}
.y46_c00325{bottom:814.666667pt;}
.yf_c00325{bottom:819.733333pt;}
.y45_c00325{bottom:830.400000pt;}
.ye_c00325{bottom:835.466667pt;}
.y44_c00325{bottom:846.133333pt;}
.yd_c00325{bottom:851.200000pt;}
.y43_c00325{bottom:862.133333pt;}
.yc_c00325{bottom:867.200000pt;}
.y42_c00325{bottom:882.000000pt;}
.yb_c00325{bottom:882.933333pt;}
.y41_c00325{bottom:893.466667pt;}
.ya_c00325{bottom:901.733333pt;}
.y40_c00325{bottom:908.533333pt;}
.y9_c00325{bottom:912.266667pt;}
.y3f_c00325{bottom:923.466667pt;}
.y8_c00325{bottom:926.666667pt;}
.y3e_c00325{bottom:936.266667pt;}
.y7_c00325{bottom:937.866667pt;}
.y3d_c00325{bottom:940.800000pt;}
.y3c_c00325{bottom:950.133333pt;}
.y6_c00325{bottom:952.266667pt;}
.y3b_c00325{bottom:956.533333pt;}
.y5_c00325{bottom:963.200000pt;}
.y3a_c00325{bottom:973.466667pt;}
.y4_c00325{bottom:977.600000pt;}
.y3_c00325{bottom:991.733333pt;}
.y1_c00325{bottom:1008.933333pt;}
.y2_c00325{bottom:1013.066667pt;}
.h7_c00325{height:26.666667pt;}
.h8_c00325{height:42.666667pt;}
.h6_c00325{height:48.000000pt;}
.h4_c00325{height:53.333333pt;}
.h2_c00325{height:58.666667pt;}
.h5_c00325{height:64.000000pt;}
.h3_c00325{height:74.666667pt;}
.h0_c00325{height:1127.680013pt;}
.h1_c00325{height:1128.000000pt;}
.w1_c00325{width:854.666667pt;}
.w0_c00325{width:854.720052pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:150.133333pt;}
.x28_c00325{left:154.266667pt;}
.x46_c00325{left:159.333333pt;}
.x51_c00325{left:161.600000pt;}
.xb_c00325{left:163.600000pt;}
.x1b_c00325{left:164.533333pt;}
.x26_c00325{left:166.133333pt;}
.xa1_c00325{left:168.000000pt;}
.x40_c00325{left:169.333333pt;}
.x2e_c00325{left:170.266667pt;}
.x64_c00325{left:171.333333pt;}
.x80_c00325{left:173.066667pt;}
.x8a_c00325{left:174.800000pt;}
.x9a_c00325{left:175.733333pt;}
.x3_c00325{left:176.933333pt;}
.x1e_c00325{left:178.266667pt;}
.xb3_c00325{left:180.400000pt;}
.x48_c00325{left:185.866667pt;}
.x7c_c00325{left:188.133333pt;}
.x52_c00325{left:192.000000pt;}
.x41_c00325{left:195.600000pt;}
.x16_c00325{left:196.800000pt;}
.x22_c00325{left:197.733333pt;}
.x39_c00325{left:199.333333pt;}
.xc_c00325{left:201.066667pt;}
.x4d_c00325{left:202.666667pt;}
.x65_c00325{left:204.666667pt;}
.x73_c00325{left:206.266667pt;}
.xa7_c00325{left:209.200000pt;}
.x92_c00325{left:210.266667pt;}
.x34_c00325{left:211.333333pt;}
.x53_c00325{left:212.800000pt;}
.x5d_c00325{left:213.866667pt;}
.x6f_c00325{left:214.933333pt;}
.x1f_c00325{left:217.333333pt;}
.x66_c00325{left:219.333333pt;}
.x35_c00325{left:220.266667pt;}
.x42_c00325{left:222.533333pt;}
.x81_c00325{left:224.133333pt;}
.x5e_c00325{left:226.000000pt;}
.x29_c00325{left:227.200000pt;}
.x8b_c00325{left:229.866667pt;}
.x49_c00325{left:232.000000pt;}
.x4_c00325{left:232.933333pt;}
.x23_c00325{left:234.800000pt;}
.xb0_c00325{left:236.533333pt;}
.x17_c00325{left:237.466667pt;}
.x82_c00325{left:239.466667pt;}
.x9e_c00325{left:241.200000pt;}
.x54_c00325{left:242.266667pt;}
.x98_c00325{left:243.866667pt;}
.x5f_c00325{left:244.933333pt;}
.x3a_c00325{left:246.000000pt;}
.xd_c00325{left:247.733333pt;}
.x7d_c00325{left:249.200000pt;}
.x5_c00325{left:251.866667pt;}
.x18_c00325{left:253.466667pt;}
.x8d_c00325{left:256.000000pt;}
.x47_c00325{left:257.333333pt;}
.x4a_c00325{left:258.266667pt;}
.x8c_c00325{left:260.533333pt;}
.x9f_c00325{left:262.266667pt;}
.x43_c00325{left:263.866667pt;}
.x74_c00325{left:264.800000pt;}
.x67_c00325{left:265.733333pt;}
.x86_c00325{left:267.200000pt;}
.x55_c00325{left:268.133333pt;}
.x2f_c00325{left:270.133333pt;}
.x70_c00325{left:272.800000pt;}
.xb1_c00325{left:274.533333pt;}
.xae_c00325{left:277.733333pt;}
.x24_c00325{left:278.933333pt;}
.x6d_c00325{left:280.000000pt;}
.x60_c00325{left:281.733333pt;}
.x20_c00325{left:282.666667pt;}
.x30_c00325{left:283.866667pt;}
.xa2_c00325{left:284.800000pt;}
.x3b_c00325{left:288.000000pt;}
.xaf_c00325{left:289.066667pt;}
.x44_c00325{left:290.133333pt;}
.xe_c00325{left:292.266667pt;}
.x61_c00325{left:294.533333pt;}
.x93_c00325{left:296.000000pt;}
.x68_c00325{left:297.066667pt;}
.x19_c00325{left:298.933333pt;}
.x31_c00325{left:300.800000pt;}
.xaa_c00325{left:302.533333pt;}
.x4b_c00325{left:303.733333pt;}
.xb2_c00325{left:304.666667pt;}
.x75_c00325{left:306.133333pt;}
.xa8_c00325{left:307.066667pt;}
.x78_c00325{left:312.266667pt;}
.x83_c00325{left:314.000000pt;}
.x56_c00325{left:315.866667pt;}
.x99_c00325{left:316.800000pt;}
.x9b_c00325{left:318.400000pt;}
.xad_c00325{left:320.000000pt;}
.x94_c00325{left:320.933333pt;}
.x2a_c00325{left:322.266667pt;}
.x6_c00325{left:323.200000pt;}
.x25_c00325{left:325.600000pt;}
.x87_c00325{left:327.066667pt;}
.x8e_c00325{left:328.000000pt;}
.x3c_c00325{left:328.933333pt;}
.xf_c00325{left:330.666667pt;}
.xa3_c00325{left:332.533333pt;}
.x4e_c00325{left:336.133333pt;}
.x10_c00325{left:337.066667pt;}
.xab_c00325{left:338.800000pt;}
.x2b_c00325{left:339.866667pt;}
.x21_c00325{left:341.466667pt;}
.x11_c00325{left:343.466667pt;}
.x57_c00325{left:344.666667pt;}
.x79_c00325{left:346.533333pt;}
.x36_c00325{left:348.133333pt;}
.x1a_c00325{left:349.200000pt;}
.x69_c00325{left:350.533333pt;}
.x59_c00325{left:352.000000pt;}
.x12_c00325{left:356.266667pt;}
.xac_c00325{left:357.733333pt;}
.x62_c00325{left:359.466667pt;}
.x2c_c00325{left:360.400000pt;}
.x7a_c00325{left:361.866667pt;}
.x7_c00325{left:362.933333pt;}
.x37_c00325{left:365.066667pt;}
.x7e_c00325{left:366.666667pt;}
.x6a_c00325{left:368.400000pt;}
.x2_c00325{left:369.333333pt;}
.x32_c00325{left:371.866667pt;}
.x8f_c00325{left:373.200000pt;}
.x4c_c00325{left:375.066667pt;}
.x88_c00325{left:376.000000pt;}
.x58_c00325{left:376.933333pt;}
.x8_c00325{left:378.000000pt;}
.x5a_c00325{left:378.933333pt;}
.x90_c00325{left:381.466667pt;}
.x9c_c00325{left:382.400000pt;}
.x6e_c00325{left:383.466667pt;}
.x76_c00325{left:384.800000pt;}
.x1c_c00325{left:386.000000pt;}
.x13_c00325{left:386.933333pt;}
.x27_c00325{left:387.866667pt;}
.x6b_c00325{left:391.066667pt;}
.x95_c00325{left:392.000000pt;}
.x3d_c00325{left:393.333333pt;}
.x71_c00325{left:396.933333pt;}
.x38_c00325{left:398.400000pt;}
.x6c_c00325{left:399.333333pt;}
.x84_c00325{left:400.666667pt;}
.x7b_c00325{left:401.600000pt;}
.xa0_c00325{left:403.733333pt;}
.x9_c00325{left:405.200000pt;}
.x33_c00325{left:406.800000pt;}
.x89_c00325{left:408.933333pt;}
.x3e_c00325{left:410.000000pt;}
.x14_c00325{left:411.600000pt;}
.xa4_c00325{left:414.400000pt;}
.x4f_c00325{left:415.733333pt;}
.x63_c00325{left:417.066667pt;}
.xa5_c00325{left:418.800000pt;}
.x7f_c00325{left:419.733333pt;}
.x45_c00325{left:421.066667pt;}
.x96_c00325{left:423.066667pt;}
.x72_c00325{left:424.800000pt;}
.x9d_c00325{left:425.866667pt;}
.x85_c00325{left:427.866667pt;}
.x5b_c00325{left:429.200000pt;}
.x2d_c00325{left:430.800000pt;}
.x3f_c00325{left:432.666667pt;}
.x50_c00325{left:434.266667pt;}
.xa_c00325{left:435.333333pt;}
.x15_c00325{left:437.466667pt;}
.x1d_c00325{left:438.400000pt;}
.x5c_c00325{left:439.466667pt;}
.x91_c00325{left:444.400000pt;}
.xa6_c00325{left:446.933333pt;}
.x77_c00325{left:451.733333pt;}
.x97_c00325{left:453.733333pt;}
.xa9_c00325{left:455.066667pt;}
.xb4_c00325{left:457.200000pt;}
.xb5_c00325{left:459.866667pt;}
.xc3_c00325{left:468.800000pt;}
.xe6_c00325{left:470.400000pt;}
.x12b_c00325{left:473.866667pt;}
.x136_c00325{left:474.933333pt;}
.x145_c00325{left:475.866667pt;}
.x14e_c00325{left:476.800000pt;}
.x15d_c00325{left:479.466667pt;}
.xd6_c00325{left:482.000000pt;}
.xb6_c00325{left:483.866667pt;}
.xed_c00325{left:485.066667pt;}
.xce_c00325{left:486.666667pt;}
.x119_c00325{left:487.600000pt;}
.x126_c00325{left:488.666667pt;}
.x131_c00325{left:490.133333pt;}
.x104_c00325{left:491.466667pt;}
.xe5_c00325{left:495.200000pt;}
.x146_c00325{left:497.333333pt;}
.x160_c00325{left:499.333333pt;}
.xda_c00325{left:500.266667pt;}
.x114_c00325{left:502.266667pt;}
.x11a_c00325{left:503.600000pt;}
.xf2_c00325{left:505.600000pt;}
.xc4_c00325{left:508.133333pt;}
.xd7_c00325{left:512.133333pt;}
.xee_c00325{left:513.866667pt;}
.x144_c00325{left:514.933333pt;}
.x120_c00325{left:516.666667pt;}
.x140_c00325{left:518.933333pt;}
.x105_c00325{left:520.000000pt;}
.xf8_c00325{left:522.000000pt;}
.x10a_c00325{left:523.600000pt;}
.xb7_c00325{left:526.800000pt;}
.x127_c00325{left:528.000000pt;}
.x123_c00325{left:529.333333pt;}
.x121_c00325{left:532.000000pt;}
.x100_c00325{left:533.066667pt;}
.x10f_c00325{left:534.400000pt;}
.xcf_c00325{left:536.266667pt;}
.x106_c00325{left:537.866667pt;}
.x132_c00325{left:539.066667pt;}
.x137_c00325{left:541.200000pt;}
.x110_c00325{left:542.666667pt;}
.xe7_c00325{left:545.600000pt;}
.x14c_c00325{left:546.933333pt;}
.xdb_c00325{left:548.000000pt;}
.x141_c00325{left:549.333333pt;}
.xc2_c00325{left:551.600000pt;}
.xd0_c00325{left:552.533333pt;}
.x15e_c00325{left:557.200000pt;}
.xfd_c00325{left:558.133333pt;}
.xb8_c00325{left:559.733333pt;}
.x13a_c00325{left:563.733333pt;}
.xc5_c00325{left:565.733333pt;}
.x161_c00325{left:567.200000pt;}
.x10b_c00325{left:569.733333pt;}
.x147_c00325{left:571.200000pt;}
.x149_c00325{left:572.533333pt;}
.x150_c00325{left:573.866667pt;}
.x11b_c00325{left:575.200000pt;}
.x133_c00325{left:576.533333pt;}
.xdc_c00325{left:577.466667pt;}
.xf9_c00325{left:578.933333pt;}
.xe8_c00325{left:580.800000pt;}
.x13b_c00325{left:582.666667pt;}
.x153_c00325{left:584.133333pt;}
.x12a_c00325{left:585.200000pt;}
.xdf_c00325{left:586.933333pt;}
.x107_c00325{left:589.333333pt;}
.x11c_c00325{left:590.266667pt;}
.xf3_c00325{left:591.333333pt;}
.xb9_c00325{left:592.400000pt;}
.x122_c00325{left:594.133333pt;}
.xef_c00325{left:596.666667pt;}
.xc6_c00325{left:598.666667pt;}
.x134_c00325{left:599.866667pt;}
.xd1_c00325{left:601.466667pt;}
.x14a_c00325{left:602.933333pt;}
.x159_c00325{left:604.533333pt;}
.x13c_c00325{left:606.000000pt;}
.xc7_c00325{left:608.000000pt;}
.x156_c00325{left:609.733333pt;}
.xf4_c00325{left:611.866667pt;}
.x148_c00325{left:613.066667pt;}
.xdd_c00325{left:614.266667pt;}
.xf0_c00325{left:616.133333pt;}
.x12e_c00325{left:617.066667pt;}
.x115_c00325{left:618.133333pt;}
.xba_c00325{left:619.866667pt;}
.x108_c00325{left:621.066667pt;}
.x154_c00325{left:622.266667pt;}
.xe0_c00325{left:624.666667pt;}
.x158_c00325{left:625.866667pt;}
.xf5_c00325{left:627.600000pt;}
.xe9_c00325{left:628.533333pt;}
.x138_c00325{left:629.466667pt;}
.x11d_c00325{left:632.800000pt;}
.xbb_c00325{left:634.533333pt;}
.x14d_c00325{left:635.866667pt;}
.xcd_c00325{left:636.800000pt;}
.xd2_c00325{left:639.866667pt;}
.xfa_c00325{left:641.600000pt;}
.x109_c00325{left:643.200000pt;}
.xc8_c00325{left:644.533333pt;}
.xe1_c00325{left:645.733333pt;}
.x13d_c00325{left:646.666667pt;}
.xfe_c00325{left:648.000000pt;}
.x14b_c00325{left:649.333333pt;}
.x128_c00325{left:650.533333pt;}
.xde_c00325{left:652.266667pt;}
.xd8_c00325{left:653.866667pt;}
.xff_c00325{left:655.333333pt;}
.x139_c00325{left:656.400000pt;}
.xea_c00325{left:660.266667pt;}
.xd3_c00325{left:662.266667pt;}
.xc9_c00325{left:663.466667pt;}
.x12c_c00325{left:665.200000pt;}
.xbc_c00325{left:667.466667pt;}
.x101_c00325{left:668.400000pt;}
.x151_c00325{left:669.600000pt;}
.x111_c00325{left:670.666667pt;}
.x124_c00325{left:672.133333pt;}
.xf6_c00325{left:674.666667pt;}
.x116_c00325{left:676.000000pt;}
.x135_c00325{left:677.866667pt;}
.xca_c00325{left:678.800000pt;}
.xbd_c00325{left:681.200000pt;}
.x10c_c00325{left:682.533333pt;}
.x117_c00325{left:684.666667pt;}
.xd4_c00325{left:688.133333pt;}
.x152_c00325{left:689.733333pt;}
.x12f_c00325{left:691.066667pt;}
.xf7_c00325{left:694.133333pt;}
.xe2_c00325{left:697.200000pt;}
.x15b_c00325{left:698.933333pt;}
.x11e_c00325{left:700.000000pt;}
.x10d_c00325{left:701.466667pt;}
.xf1_c00325{left:702.533333pt;}
.xe3_c00325{left:704.400000pt;}
.x15f_c00325{left:705.333333pt;}
.x162_c00325{left:706.666667pt;}
.xbe_c00325{left:709.333333pt;}
.x143_c00325{left:711.066667pt;}
.x13f_c00325{left:712.133333pt;}
.xfb_c00325{left:716.800000pt;}
.xbf_c00325{left:718.000000pt;}
.x112_c00325{left:719.600000pt;}
.x102_c00325{left:721.866667pt;}
.xcb_c00325{left:725.466667pt;}
.xeb_c00325{left:727.866667pt;}
.x142_c00325{left:729.866667pt;}
.x14f_c00325{left:730.933333pt;}
.xc0_c00325{left:732.400000pt;}
.x11f_c00325{left:733.333333pt;}
.x125_c00325{left:735.066667pt;}
.x155_c00325{left:736.533333pt;}
.xd9_c00325{left:738.400000pt;}
.x129_c00325{left:742.933333pt;}
.x12d_c00325{left:744.266667pt;}
.xd5_c00325{left:746.000000pt;}
.x13e_c00325{left:747.200000pt;}
.x130_c00325{left:749.066667pt;}
.x103_c00325{left:750.000000pt;}
.xfc_c00325{left:751.333333pt;}
.x10e_c00325{left:752.933333pt;}
.xc1_c00325{left:754.533333pt;}
.xcc_c00325{left:757.466667pt;}
.xe4_c00325{left:758.533333pt;}
.xec_c00325{left:760.533333pt;}
.x157_c00325{left:763.333333pt;}
.x15a_c00325{left:764.800000pt;}
.x118_c00325{left:766.266667pt;}
.x113_c00325{left:767.866667pt;}
.x15c_c00325{left:768.800000pt;}
}





/* 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_c00326 {
    display:none;
  }
  .loading-indicator_c00326.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00326 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_c00326 { 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_c00326" -> "#page-container .classname_c00326")
 */
.pf_c00326 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00326 { /* 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_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00326 { /* 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_c00326 { /* 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_c00326 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00326 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00326 {overflow:visible;}
  }
}
.c_c00326 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00326 { /* 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_c00326:after { /* webkit #35443 */
  content: '';
}
.t_c00326:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00326 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 */
}
.__c00326 { /* 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_c00326 { /* info for Javascript */
  display:none;
}
.l_c00326 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00326 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00326 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00326: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_c00326 {
    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_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00326.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_c00326 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00326;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.000000;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;}
.m6b_c00326{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m2_c00326{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m49_c00326{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.ma_c00326{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00326{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00326{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mb_c00326{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m20_c00326{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00326{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m17_c00326{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m21_c00326{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m40_c00326{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc_c00326{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m16_c00326{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00326{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00326{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m65_c00326{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00326{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00326{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00326{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m18_c00326{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m109_c00326{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.mab_c00326{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00326{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00326{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m95_c00326{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00326{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00326{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m61_c00326{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m8_c00326{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00326{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00326{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mce_c00326{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m22_c00326{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00326{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m66_c00326{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m92_c00326{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.me1_c00326{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m43_c00326{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m85_c00326{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5_c00326{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mba_c00326{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00326{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m30_c00326{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me5_c00326{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00326{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00326{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00326{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00326{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00326{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m101_c00326{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m94_c00326{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00326{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mee_c00326{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00326{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00326{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00326{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00326{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m69_c00326{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m10_c00326{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00326{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m51_c00326{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md0_c00326{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m89_c00326{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m104_c00326{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00326{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m119_c00326{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00326{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m98_c00326{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m28_c00326{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00326{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m60_c00326{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00326{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m56_c00326{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mef_c00326{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00326{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m48_c00326{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00326{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00326{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m93_c00326{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00326{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00326{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m78_c00326{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00326{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m62_c00326{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m42_c00326{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.maa_c00326{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m68_c00326{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m26_c00326{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00326{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00326{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00326{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00326{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m108_c00326{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00326{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.med_c00326{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00326{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00326{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md2_c00326{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00326{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m47_c00326{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00326{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.md5_c00326{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m36_c00326{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md4_c00326{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.me7_c00326{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00326{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m41_c00326{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m59_c00326{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00326{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md3_c00326{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00326{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me0_c00326{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00326{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m50_c00326{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m122_c00326{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m72_c00326{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m106_c00326{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m34_c00326{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m67_c00326{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00326{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m83_c00326{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m33_c00326{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m112_c00326{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m11_c00326{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00326{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9_c00326{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m29_c00326{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00326{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00326{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00326{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.md1_c00326{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00326{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m75_c00326{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m91_c00326{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m77_c00326{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00326{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m12_c00326{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m27_c00326{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00326{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m118_c00326{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m57_c00326{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m63_c00326{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00326{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00326{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.me3_c00326{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7_c00326{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00326{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00326{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00326{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md8_c00326{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00326{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00326{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00326{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mf_c00326{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00326{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m111_c00326{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00326{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me2_c00326{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00326{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m84_c00326{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m88_c00326{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m64_c00326{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00326{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.me4_c00326{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m114_c00326{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00326{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00326{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m100_c00326{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00326{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m14_c00326{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md6_c00326{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m55_c00326{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mea_c00326{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.meb_c00326{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00326{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m24_c00326{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m35_c00326{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m32_c00326{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00326{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m107_c00326{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m39_c00326{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00326{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00326{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m58_c00326{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m46_c00326{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mde_c00326{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m37_c00326{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00326{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00326{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00326{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00326{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m76_c00326{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00326{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00326{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mda_c00326{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m113_c00326{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.me_c00326{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m102_c00326{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.md_c00326{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00326{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00326{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mca_c00326{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md9_c00326{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00326{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00326{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mae_c00326{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m79_c00326{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md7_c00326{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m13_c00326{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m45_c00326{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me9_c00326{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00326{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m73_c00326{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m44_c00326{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m121_c00326{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m31_c00326{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00326{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00326{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00326{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00326{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00326{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00326{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m82_c00326{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m71_c00326{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m87_c00326{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00326{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mff_c00326{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m54_c00326{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00326{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00326{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.me8_c00326{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00326{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m25_c00326{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00326{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00326{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m116_c00326{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m70_c00326{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m86_c00326{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m74_c00326{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00326{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00326{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00326{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m53_c00326{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00326{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m103_c00326{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m120_c00326{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00326{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m15_c00326{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00326{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00326{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m23_c00326{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me6_c00326{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m38_c00326{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00326{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m80_c00326{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.maf_c00326{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mec_c00326{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m115_c00326{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00326{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00326{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m105_c00326{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m90_c00326{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m19_c00326{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00326{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m97_c00326{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00326{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00326{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00326{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00326{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00326{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00326{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mad_c00326{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m117_c00326{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00326{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.mac_c00326{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00326{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m81_c00326{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00326{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m99_c00326{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m52_c00326{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m123_c00326{transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00326{transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00326{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m96_c00326{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00326{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.m110_c00326{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls4_c00326{letter-spacing:0.000000px;}
.ls1_c00326{letter-spacing:44.571429px;}
.ls2_c00326{letter-spacing:55.714286px;}
.ls3_c00326{letter-spacing:59.285714px;}
.ls0_c00326{letter-spacing:61.426230px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{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__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00326{word-spacing:-94.426230px;}
.ws12_c00326{word-spacing:-89.285714px;}
.wsb_c00326{word-spacing:-85.714286px;}
.ws8_c00326{word-spacing:-68.571429px;}
.wsf_c00326{word-spacing:-17.500000px;}
.ws19_c00326{word-spacing:-10.250000px;}
.wse_c00326{word-spacing:-7.804878px;}
.ws16_c00326{word-spacing:-1.894737px;}
.ws1a_c00326{word-spacing:0.000000px;}
.ws17_c00326{word-spacing:3.076923px;}
.ws14_c00326{word-spacing:12.000000px;}
.ws15_c00326{word-spacing:17.714286px;}
.ws10_c00326{word-spacing:20.571429px;}
.ws13_c00326{word-spacing:22.142857px;}
.ws5_c00326{word-spacing:23.428571px;}
.ws11_c00326{word-spacing:25.714286px;}
.ws1_c00326{word-spacing:28.426230px;}
.ws6_c00326{word-spacing:28.666667px;}
.wsc_c00326{word-spacing:29.285714px;}
.ws7_c00326{word-spacing:32.000000px;}
.ws9_c00326{word-spacing:35.333333px;}
.wsd_c00326{word-spacing:40.000000px;}
.ws0_c00326{word-spacing:43.923664px;}
.wsa_c00326{word-spacing:44.166667px;}
.ws2_c00326{word-spacing:48.503817px;}
.ws4_c00326{word-spacing:175.698795px;}
.ws18_c00326{word-spacing:515.679389px;}
._1_c00326{margin-left:-61.426230px;}
._a_c00326{margin-left:-59.285714px;}
._6_c00326{margin-left:-55.714286px;}
._5_c00326{margin-left:-44.571429px;}
._4_c00326{width:2.857143px;}
._9_c00326{width:41.714286px;}
._8_c00326{width:47.428571px;}
._2_c00326{width:56.000000px;}
._3_c00326{width:59.333333px;}
._7_c00326{width:74.166667px;}
._0_c00326{width:76.923664px;}
.fc0_c00326{color:transparent;}
.fs5_c00326{font-size:30.000000px;}
.fs2_c00326{font-size:48.000000px;}
.fs4_c00326{font-size:60.000000px;}
.fs3_c00326{font-size:66.000000px;}
.fs1_c00326{font-size:72.000000px;}
.fs0_c00326{font-size:78.000000px;}
.y0_c00326{bottom:0.000000px;}
.y6b_c00326{bottom:180.750000px;}
.y39_c00326{bottom:187.950000px;}
.y6a_c00326{bottom:196.950000px;}
.y38_c00326{bottom:198.750000px;}
.y37_c00326{bottom:216.450000px;}
.y69_c00326{bottom:225.750000px;}
.y36_c00326{bottom:234.450000px;}
.y68_c00326{bottom:243.750000px;}
.y35_c00326{bottom:252.750000px;}
.y67_c00326{bottom:261.750000px;}
.y34_c00326{bottom:270.300000px;}
.y66_c00326{bottom:279.750000px;}
.y33_c00326{bottom:292.200000px;}
.y65_c00326{bottom:297.600000px;}
.y32_c00326{bottom:306.300000px;}
.y64_c00326{bottom:315.300000px;}
.y31_c00326{bottom:321.000000px;}
.y63_c00326{bottom:333.300000px;}
.y30_c00326{bottom:333.900000px;}
.y2f_c00326{bottom:348.600000px;}
.y62_c00326{bottom:351.000000px;}
.y2e_c00326{bottom:363.300000px;}
.y61_c00326{bottom:371.850000px;}
.y2d_c00326{bottom:377.700000px;}
.y2c_c00326{bottom:391.350000px;}
.y2b_c00326{bottom:406.500000px;}
.y60_c00326{bottom:411.450000px;}
.y2a_c00326{bottom:420.900000px;}
.y5f_c00326{bottom:426.900000px;}
.y29_c00326{bottom:434.550000px;}
.y5e_c00326{bottom:444.600000px;}
.y28_c00326{bottom:450.300000px;}
.y5d_c00326{bottom:466.050000px;}
.y27_c00326{bottom:469.050000px;}
.y5c_c00326{bottom:484.800000px;}
.y26_c00326{bottom:486.750000px;}
.y5b_c00326{bottom:502.500000px;}
.y25_c00326{bottom:504.300000px;}
.y5a_c00326{bottom:520.800000px;}
.y24_c00326{bottom:525.450000px;}
.y59_c00326{bottom:538.500000px;}
.y23_c00326{bottom:544.500000px;}
.y58_c00326{bottom:556.200000px;}
.y22_c00326{bottom:562.200000px;}
.y21_c00326{bottom:580.200000px;}
.y57_c00326{bottom:583.950000px;}
.y20_c00326{bottom:597.900000px;}
.y56_c00326{bottom:602.400000px;}
.y1f_c00326{bottom:616.050000px;}
.y55_c00326{bottom:620.400000px;}
.y1e_c00326{bottom:633.300000px;}
.y54_c00326{bottom:638.100000px;}
.y1d_c00326{bottom:651.600000px;}
.y53_c00326{bottom:655.800000px;}
.y1c_c00326{bottom:673.200000px;}
.y52_c00326{bottom:673.800000px;}
.y51_c00326{bottom:691.500000px;}
.y1b_c00326{bottom:703.800000px;}
.y50_c00326{bottom:709.200000px;}
.y1a_c00326{bottom:721.800000px;}
.y4f_c00326{bottom:731.100000px;}
.y19_c00326{bottom:743.400000px;}
.y4e_c00326{bottom:749.100000px;}
.y18_c00326{bottom:761.400000px;}
.y4d_c00326{bottom:767.100000px;}
.y17_c00326{bottom:779.400000px;}
.y4c_c00326{bottom:784.800000px;}
.y16_c00326{bottom:797.100000px;}
.y4b_c00326{bottom:802.800000px;}
.y4a_c00326{bottom:824.250000px;}
.y15_c00326{bottom:828.000000px;}
.y14_c00326{bottom:836.250000px;}
.y49_c00326{bottom:842.250000px;}
.y13_c00326{bottom:854.250000px;}
.y48_c00326{bottom:859.950000px;}
.y12_c00326{bottom:872.250000px;}
.y47_c00326{bottom:877.650000px;}
.y11_c00326{bottom:889.950000px;}
.y46_c00326{bottom:895.650000px;}
.y10_c00326{bottom:907.950000px;}
.y45_c00326{bottom:913.350000px;}
.yf_c00326{bottom:925.650000px;}
.y44_c00326{bottom:934.500000px;}
.ye_c00326{bottom:943.350000px;}
.y43_c00326{bottom:952.200000px;}
.yd_c00326{bottom:961.050000px;}
.y42_c00326{bottom:969.900000px;}
.yc_c00326{bottom:979.050000px;}
.y41_c00326{bottom:987.900000px;}
.yb_c00326{bottom:997.050000px;}
.y40_c00326{bottom:1009.800000px;}
.ya_c00326{bottom:1014.750000px;}
.y3f_c00326{bottom:1027.500000px;}
.y9_c00326{bottom:1032.450000px;}
.y3e_c00326{bottom:1049.250000px;}
.y8_c00326{bottom:1050.150000px;}
.y3d_c00326{bottom:1067.250000px;}
.y7_c00326{bottom:1071.600000px;}
.y3c_c00326{bottom:1084.950000px;}
.y6_c00326{bottom:1085.700000px;}
.y5_c00326{bottom:1098.450000px;}
.y3b_c00326{bottom:1102.650000px;}
.y4_c00326{bottom:1114.950000px;}
.y3a_c00326{bottom:1120.350000px;}
.y3_c00326{bottom:1127.550000px;}
.y2_c00326{bottom:1146.600000px;}
.y1_c00326{bottom:1147.350000px;}
.h7_c00326{height:30.000000px;}
.h4_c00326{height:48.000000px;}
.h6_c00326{height:60.000000px;}
.h5_c00326{height:66.000000px;}
.h3_c00326{height:72.000000px;}
.h2_c00326{height:78.000000px;}
.h1_c00326{height:1266.750000px;}
.h0_c00326{height:1266.839905px;}
.w1_c00326{width:961.500000px;}
.w0_c00326{width:961.560058px;}
.x0_c00326{left:0.000000px;}
.xab_c00326{left:97.500000px;}
.x2c_c00326{left:98.700000px;}
.x8f_c00326{left:102.600000px;}
.xac_c00326{left:105.450000px;}
.x6e_c00326{left:110.850000px;}
.x16_c00326{left:112.650000px;}
.xb4_c00326{left:114.150000px;}
.x33_c00326{left:117.000000px;}
.x5b_c00326{left:118.050000px;}
.x86_c00326{left:119.400000px;}
.x79_c00326{left:120.600000px;}
.xb0_c00326{left:121.950000px;}
.xaf_c00326{left:123.450000px;}
.x24_c00326{left:126.150000px;}
.x7_c00326{left:127.800000px;}
.x9a_c00326{left:130.950000px;}
.x54_c00326{left:133.050000px;}
.x75_c00326{left:135.900000px;}
.x5f_c00326{left:138.750000px;}
.xa6_c00326{left:142.200000px;}
.x7a_c00326{left:143.250000px;}
.x7b_c00326{left:145.500000px;}
.x95_c00326{left:147.600000px;}
.x11_c00326{left:149.100000px;}
.x89_c00326{left:150.450000px;}
.x17_c00326{left:152.250000px;}
.x55_c00326{left:153.600000px;}
.x40_c00326{left:155.850000px;}
.x4b_c00326{left:157.350000px;}
.x34_c00326{left:159.450000px;}
.x83_c00326{left:161.400000px;}
.x5c_c00326{left:163.800000px;}
.x66_c00326{left:165.000000px;}
.x18_c00326{left:167.250000px;}
.x46_c00326{left:168.450000px;}
.x39_c00326{left:169.800000px;}
.x58_c00326{left:171.900000px;}
.x25_c00326{left:172.950000px;}
.x60_c00326{left:174.450000px;}
.x6b_c00326{left:177.150000px;}
.xa3_c00326{left:178.650000px;}
.x35_c00326{left:180.300000px;}
.x2d_c00326{left:182.250000px;}
.x6f_c00326{left:183.600000px;}
.x67_c00326{left:185.550000px;}
.xa0_c00326{left:186.750000px;}
.x47_c00326{left:189.000000px;}
.x8_c00326{left:190.500000px;}
.x12_c00326{left:192.000000px;}
.xa7_c00326{left:193.950000px;}
.x19_c00326{left:196.050000px;}
.x7c_c00326{left:199.200000px;}
.x62_c00326{left:200.850000px;}
.x1a_c00326{left:203.550000px;}
.x3a_c00326{left:206.100000px;}
.x13_c00326{left:207.450000px;}
.x9_c00326{left:209.250000px;}
.x50_c00326{left:210.600000px;}
.xa1_c00326{left:213.000000px;}
.x76_c00326{left:214.500000px;}
.xa8_c00326{left:215.550000px;}
.x41_c00326{left:216.750000px;}
.x84_c00326{left:218.550000px;}
.x61_c00326{left:220.950000px;}
.xa_c00326{left:222.600000px;}
.x5d_c00326{left:223.950000px;}
.x1b_c00326{left:225.150000px;}
.x48_c00326{left:226.800000px;}
.x3b_c00326{left:228.450000px;}
.xad_c00326{left:229.650000px;}
.x2e_c00326{left:230.850000px;}
.x1c_c00326{left:233.100000px;}
.x6c_c00326{left:236.850000px;}
.x26_c00326{left:238.800000px;}
.x70_c00326{left:239.850000px;}
.x96_c00326{left:240.900000px;}
.x14_c00326{left:242.400000px;}
.x68_c00326{left:243.750000px;}
.x87_c00326{left:244.800000px;}
.x98_c00326{left:245.850000px;}
.x1d_c00326{left:247.200000px;}
.x36_c00326{left:248.700000px;}
.x80_c00326{left:250.200000px;}
.x9b_c00326{left:252.000000px;}
.x78_c00326{left:253.800000px;}
.x8a_c00326{left:255.150000px;}
.x56_c00326{left:257.250000px;}
.x90_c00326{left:258.450000px;}
.x9c_c00326{left:259.500000px;}
.x27_c00326{left:260.700000px;}
.x1e_c00326{left:261.900000px;}
.x42_c00326{left:263.850000px;}
.x28_c00326{left:267.900000px;}
.x1f_c00326{left:269.400000px;}
.xb_c00326{left:270.900000px;}
.x63_c00326{left:273.600000px;}
.xa2_c00326{left:275.100000px;}
.x20_c00326{left:276.600000px;}
.x88_c00326{left:278.250000px;}
.x4c_c00326{left:279.450000px;}
.x9d_c00326{left:281.700000px;}
.x51_c00326{left:283.650000px;}
.xc_c00326{left:285.300000px;}
.x7d_c00326{left:286.650000px;}
.x5e_c00326{left:288.450000px;}
.x81_c00326{left:289.500000px;}
.x2f_c00326{left:293.100000px;}
.x3c_c00326{left:294.750000px;}
.x15_c00326{left:296.700000px;}
.xd_c00326{left:300.000000px;}
.xae_c00326{left:301.350000px;}
.x91_c00326{left:302.700000px;}
.x8b_c00326{left:303.750000px;}
.x4d_c00326{left:304.950000px;}
.x71_c00326{left:306.900000px;}
.x97_c00326{left:310.650000px;}
.x30_c00326{left:312.150000px;}
.x93_c00326{left:313.200000px;}
.x59_c00326{left:314.550000px;}
.x37_c00326{left:315.600000px;}
.x8e_c00326{left:317.100000px;}
.xa9_c00326{left:318.150000px;}
.x29_c00326{left:319.500000px;}
.x43_c00326{left:321.750000px;}
.x8c_c00326{left:322.800000px;}
.x72_c00326{left:324.150000px;}
.xaa_c00326{left:325.350000px;}
.x2a_c00326{left:326.700000px;}
.x21_c00326{left:327.900000px;}
.xe_c00326{left:329.400000px;}
.x7e_c00326{left:330.450000px;}
.x9e_c00326{left:332.100000px;}
.x85_c00326{left:333.450000px;}
.x2b_c00326{left:334.650000px;}
.x69_c00326{left:337.350000px;}
.x52_c00326{left:339.750000px;}
.xa4_c00326{left:341.100000px;}
.x1_c00326{left:343.800000px;}
.x3_c00326{left:347.100000px;}
.x31_c00326{left:348.150000px;}
.x6a_c00326{left:350.250000px;}
.x64_c00326{left:352.200000px;}
.x4_c00326{left:354.300000px;}
.xb3_c00326{left:355.950000px;}
.x5a_c00326{left:357.750000px;}
.x3d_c00326{left:359.250000px;}
.x44_c00326{left:360.300000px;}
.x22_c00326{left:361.950000px;}
.xf_c00326{left:363.300000px;}
.x9f_c00326{left:366.000000px;}
.x99_c00326{left:367.050000px;}
.x49_c00326{left:368.550000px;}
.x92_c00326{left:369.900000px;}
.x65_c00326{left:374.100000px;}
.x4e_c00326{left:376.200000px;}
.x6d_c00326{left:378.150000px;}
.x73_c00326{left:379.200000px;}
.x32_c00326{left:380.850000px;}
.x5_c00326{left:385.200000px;}
.x38_c00326{left:386.850000px;}
.x7f_c00326{left:389.100000px;}
.x23_c00326{left:391.050000px;}
.x45_c00326{left:393.450000px;}
.x53_c00326{left:395.250000px;}
.x4a_c00326{left:396.300000px;}
.x4f_c00326{left:401.400000px;}
.x57_c00326{left:405.300000px;}
.x74_c00326{left:406.950000px;}
.x77_c00326{left:408.900000px;}
.xb2_c00326{left:410.700000px;}
.x3e_c00326{left:411.750000px;}
.xb1_c00326{left:413.100000px;}
.x82_c00326{left:417.000000px;}
.x6_c00326{left:419.100000px;}
.x10_c00326{left:420.900000px;}
.x8d_c00326{left:422.850000px;}
.x3f_c00326{left:424.050000px;}
.xa5_c00326{left:425.550000px;}
.x94_c00326{left:434.250000px;}
.x109_c00326{left:455.700000px;}
.x11c_c00326{left:456.900000px;}
.x12f_c00326{left:458.700000px;}
.x147_c00326{left:464.700000px;}
.x14f_c00326{left:467.250000px;}
.xdb_c00326{left:471.750000px;}
.xb5_c00326{left:473.100000px;}
.x106_c00326{left:474.600000px;}
.x123_c00326{left:476.850000px;}
.x150_c00326{left:478.050000px;}
.xf4_c00326{left:490.650000px;}
.xd4_c00326{left:491.700000px;}
.xcc_c00326{left:493.800000px;}
.x131_c00326{left:495.000000px;}
.x116_c00326{left:496.050000px;}
.x12b_c00326{left:498.000000px;}
.x141_c00326{left:499.800000px;}
.xec_c00326{left:500.850000px;}
.x142_c00326{left:501.900000px;}
.xc4_c00326{left:503.550000px;}
.xdc_c00326{left:506.250000px;}
.x124_c00326{left:507.450000px;}
.x10d_c00326{left:510.450000px;}
.x107_c00326{left:511.650000px;}
.xd2_c00326{left:513.450000px;}
.xb6_c00326{left:514.500000px;}
.xfd_c00326{left:516.600000px;}
.xe4_c00326{left:518.400000px;}
.xc5_c00326{left:521.250000px;}
.x10e_c00326{left:524.100000px;}
.xbd_c00326{left:526.350000px;}
.xd5_c00326{left:527.700000px;}
.xf8_c00326{left:528.750000px;}
.x145_c00326{left:529.950000px;}
.xf3_c00326{left:531.450000px;}
.xf5_c00326{left:534.900000px;}
.x108_c00326{left:537.600000px;}
.xcd_c00326{left:539.100000px;}
.x10a_c00326{left:540.300000px;}
.xe5_c00326{left:542.550000px;}
.x14a_c00326{left:543.600000px;}
.x11a_c00326{left:544.950000px;}
.xdd_c00326{left:547.350000px;}
.xe0_c00326{left:548.400000px;}
.x13a_c00326{left:550.350000px;}
.x153_c00326{left:551.550000px;}
.xd6_c00326{left:552.900000px;}
.x12c_c00326{left:556.050000px;}
.xce_c00326{left:557.100000px;}
.x12e_c00326{left:558.600000px;}
.x11e_c00326{left:560.250000px;}
.xed_c00326{left:561.750000px;}
.xb7_c00326{left:564.900000px;}
.x134_c00326{left:566.700000px;}
.xde_c00326{left:567.900000px;}
.x100_c00326{left:569.100000px;}
.xbe_c00326{left:570.300000px;}
.xc6_c00326{left:571.350000px;}
.x11f_c00326{left:574.950000px;}
.x125_c00326{left:577.650000px;}
.x130_c00326{left:580.500000px;}
.x12a_c00326{left:583.050000px;}
.x10f_c00326{left:584.100000px;}
.x13b_c00326{left:585.600000px;}
.x103_c00326{left:587.550000px;}
.xcf_c00326{left:589.800000px;}
.xe6_c00326{left:590.850000px;}
.xe1_c00326{left:592.350000px;}
.xd3_c00326{left:594.150000px;}
.xd7_c00326{left:597.150000px;}
.xf9_c00326{left:600.300000px;}
.x10b_c00326{left:604.050000px;}
.x13f_c00326{left:606.750000px;}
.x110_c00326{left:608.250000px;}
.xb8_c00326{left:610.200000px;}
.xe7_c00326{left:611.700000px;}
.x143_c00326{left:612.750000px;}
.x11b_c00326{left:615.450000px;}
.xbf_c00326{left:617.850000px;}
.x137_c00326{left:618.900000px;}
.x113_c00326{left:619.950000px;}
.xd8_c00326{left:621.600000px;}
.x132_c00326{left:623.400000px;}
.x154_c00326{left:624.600000px;}
.xee_c00326{left:625.800000px;}
.x13c_c00326{left:627.750000px;}
.x14d_c00326{left:629.100000px;}
.xd0_c00326{left:632.250000px;}
.xdf_c00326{left:634.050000px;}
.xc7_c00326{left:635.850000px;}
.x120_c00326{left:637.200000px;}
.x135_c00326{left:640.950000px;}
.xfa_c00326{left:642.450000px;}
.x151_c00326{left:643.650000px;}
.xb9_c00326{left:645.450000px;}
.xef_c00326{left:647.100000px;}
.x117_c00326{left:648.300000px;}
.xe8_c00326{left:650.550000px;}
.xfb_c00326{left:652.200000px;}
.xd1_c00326{left:654.600000px;}
.xc8_c00326{left:657.150000px;}
.x127_c00326{left:658.200000px;}
.x148_c00326{left:660.150000px;}
.xc0_c00326{left:661.800000px;}
.xf0_c00326{left:663.600000px;}
.x104_c00326{left:666.150000px;}
.x136_c00326{left:668.250000px;}
.xd9_c00326{left:669.450000px;}
.x138_c00326{left:672.600000px;}
.xe9_c00326{left:673.650000px;}
.xba_c00326{left:676.050000px;}
.x10c_c00326{left:677.100000px;}
.x114_c00326{left:680.400000px;}
.x111_c00326{left:681.750000px;}
.xfe_c00326{left:683.250000px;}
.xc1_c00326{left:685.500000px;}
.x14e_c00326{left:687.000000px;}
.x139_c00326{left:688.050000px;}
.x128_c00326{left:689.550000px;}
.x14c_c00326{left:691.650000px;}
.xf6_c00326{left:692.850000px;}
.x118_c00326{left:694.350000px;}
.x149_c00326{left:695.400000px;}
.xc9_c00326{left:698.250000px;}
.xe2_c00326{left:700.650000px;}
.x115_c00326{left:702.300000px;}
.xfc_c00326{left:705.150000px;}
.xff_c00326{left:706.950000px;}
.xda_c00326{left:708.300000px;}
.x144_c00326{left:709.650000px;}
.x129_c00326{left:710.850000px;}
.xc2_c00326{left:712.800000px;}
.xf1_c00326{left:714.000000px;}
.x14b_c00326{left:715.050000px;}
.x13d_c00326{left:716.250000px;}
.xf7_c00326{left:719.100000px;}
.xca_c00326{left:720.600000px;}
.x121_c00326{left:725.250000px;}
.x133_c00326{left:726.450000px;}
.x126_c00326{left:728.400000px;}
.xbb_c00326{left:729.750000px;}
.x105_c00326{left:732.000000px;}
.x112_c00326{left:733.650000px;}
.xea_c00326{left:737.400000px;}
.x13e_c00326{left:738.600000px;}
.x101_c00326{left:741.900000px;}
.xc3_c00326{left:745.500000px;}
.x12d_c00326{left:750.750000px;}
.xe3_c00326{left:752.850000px;}
.xcb_c00326{left:754.050000px;}
.x152_c00326{left:757.800000px;}
.x119_c00326{left:759.150000px;}
.x2_c00326{left:763.200000px;}
.x11d_c00326{left:766.950000px;}
.xbc_c00326{left:768.300000px;}
.xf2_c00326{left:773.100000px;}
.xeb_c00326{left:775.500000px;}
.x122_c00326{left:776.700000px;}
.x102_c00326{left:779.400000px;}
.x140_c00326{left:783.450000px;}
.x146_c00326{left:788.550000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls4_c00326{letter-spacing:0.000000pt;}
.ls1_c00326{letter-spacing:39.619048pt;}
.ls2_c00326{letter-spacing:49.523810pt;}
.ls3_c00326{letter-spacing:52.698413pt;}
.ls0_c00326{letter-spacing:54.601093pt;}
.ws3_c00326{word-spacing:-83.934426pt;}
.ws12_c00326{word-spacing:-79.365079pt;}
.wsb_c00326{word-spacing:-76.190476pt;}
.ws8_c00326{word-spacing:-60.952381pt;}
.wsf_c00326{word-spacing:-15.555556pt;}
.ws19_c00326{word-spacing:-9.111111pt;}
.wse_c00326{word-spacing:-6.937669pt;}
.ws16_c00326{word-spacing:-1.684211pt;}
.ws1a_c00326{word-spacing:0.000000pt;}
.ws17_c00326{word-spacing:2.735043pt;}
.ws14_c00326{word-spacing:10.666667pt;}
.ws15_c00326{word-spacing:15.746032pt;}
.ws10_c00326{word-spacing:18.285714pt;}
.ws13_c00326{word-spacing:19.682540pt;}
.ws5_c00326{word-spacing:20.825397pt;}
.ws11_c00326{word-spacing:22.857143pt;}
.ws1_c00326{word-spacing:25.267760pt;}
.ws6_c00326{word-spacing:25.481481pt;}
.wsc_c00326{word-spacing:26.031746pt;}
.ws7_c00326{word-spacing:28.444444pt;}
.ws9_c00326{word-spacing:31.407407pt;}
.wsd_c00326{word-spacing:35.555556pt;}
.ws0_c00326{word-spacing:39.043257pt;}
.wsa_c00326{word-spacing:39.259259pt;}
.ws2_c00326{word-spacing:43.114504pt;}
.ws4_c00326{word-spacing:156.176707pt;}
.ws18_c00326{word-spacing:458.381679pt;}
._1_c00326{margin-left:-54.601093pt;}
._a_c00326{margin-left:-52.698413pt;}
._6_c00326{margin-left:-49.523810pt;}
._5_c00326{margin-left:-39.619048pt;}
._4_c00326{width:2.539683pt;}
._9_c00326{width:37.079365pt;}
._8_c00326{width:42.158730pt;}
._2_c00326{width:49.777778pt;}
._3_c00326{width:52.740741pt;}
._7_c00326{width:65.925926pt;}
._0_c00326{width:68.376590pt;}
.fs5_c00326{font-size:26.666667pt;}
.fs2_c00326{font-size:42.666667pt;}
.fs4_c00326{font-size:53.333333pt;}
.fs3_c00326{font-size:58.666667pt;}
.fs1_c00326{font-size:64.000000pt;}
.fs0_c00326{font-size:69.333333pt;}
.y0_c00326{bottom:0.000000pt;}
.y6b_c00326{bottom:160.666667pt;}
.y39_c00326{bottom:167.066667pt;}
.y6a_c00326{bottom:175.066667pt;}
.y38_c00326{bottom:176.666667pt;}
.y37_c00326{bottom:192.400000pt;}
.y69_c00326{bottom:200.666667pt;}
.y36_c00326{bottom:208.400000pt;}
.y68_c00326{bottom:216.666667pt;}
.y35_c00326{bottom:224.666667pt;}
.y67_c00326{bottom:232.666667pt;}
.y34_c00326{bottom:240.266667pt;}
.y66_c00326{bottom:248.666667pt;}
.y33_c00326{bottom:259.733333pt;}
.y65_c00326{bottom:264.533333pt;}
.y32_c00326{bottom:272.266667pt;}
.y64_c00326{bottom:280.266667pt;}
.y31_c00326{bottom:285.333333pt;}
.y63_c00326{bottom:296.266667pt;}
.y30_c00326{bottom:296.800000pt;}
.y2f_c00326{bottom:309.866667pt;}
.y62_c00326{bottom:312.000000pt;}
.y2e_c00326{bottom:322.933333pt;}
.y61_c00326{bottom:330.533333pt;}
.y2d_c00326{bottom:335.733333pt;}
.y2c_c00326{bottom:347.866667pt;}
.y2b_c00326{bottom:361.333333pt;}
.y60_c00326{bottom:365.733333pt;}
.y2a_c00326{bottom:374.133333pt;}
.y5f_c00326{bottom:379.466667pt;}
.y29_c00326{bottom:386.266667pt;}
.y5e_c00326{bottom:395.200000pt;}
.y28_c00326{bottom:400.266667pt;}
.y5d_c00326{bottom:414.266667pt;}
.y27_c00326{bottom:416.933333pt;}
.y5c_c00326{bottom:430.933333pt;}
.y26_c00326{bottom:432.666667pt;}
.y5b_c00326{bottom:446.666667pt;}
.y25_c00326{bottom:448.266667pt;}
.y5a_c00326{bottom:462.933333pt;}
.y24_c00326{bottom:467.066667pt;}
.y59_c00326{bottom:478.666667pt;}
.y23_c00326{bottom:484.000000pt;}
.y58_c00326{bottom:494.400000pt;}
.y22_c00326{bottom:499.733333pt;}
.y21_c00326{bottom:515.733333pt;}
.y57_c00326{bottom:519.066667pt;}
.y20_c00326{bottom:531.466667pt;}
.y56_c00326{bottom:535.466667pt;}
.y1f_c00326{bottom:547.600000pt;}
.y55_c00326{bottom:551.466667pt;}
.y1e_c00326{bottom:562.933333pt;}
.y54_c00326{bottom:567.200000pt;}
.y1d_c00326{bottom:579.200000pt;}
.y53_c00326{bottom:582.933333pt;}
.y1c_c00326{bottom:598.400000pt;}
.y52_c00326{bottom:598.933333pt;}
.y51_c00326{bottom:614.666667pt;}
.y1b_c00326{bottom:625.600000pt;}
.y50_c00326{bottom:630.400000pt;}
.y1a_c00326{bottom:641.600000pt;}
.y4f_c00326{bottom:649.866667pt;}
.y19_c00326{bottom:660.800000pt;}
.y4e_c00326{bottom:665.866667pt;}
.y18_c00326{bottom:676.800000pt;}
.y4d_c00326{bottom:681.866667pt;}
.y17_c00326{bottom:692.800000pt;}
.y4c_c00326{bottom:697.600000pt;}
.y16_c00326{bottom:708.533333pt;}
.y4b_c00326{bottom:713.600000pt;}
.y4a_c00326{bottom:732.666667pt;}
.y15_c00326{bottom:736.000000pt;}
.y14_c00326{bottom:743.333333pt;}
.y49_c00326{bottom:748.666667pt;}
.y13_c00326{bottom:759.333333pt;}
.y48_c00326{bottom:764.400000pt;}
.y12_c00326{bottom:775.333333pt;}
.y47_c00326{bottom:780.133333pt;}
.y11_c00326{bottom:791.066667pt;}
.y46_c00326{bottom:796.133333pt;}
.y10_c00326{bottom:807.066667pt;}
.y45_c00326{bottom:811.866667pt;}
.yf_c00326{bottom:822.800000pt;}
.y44_c00326{bottom:830.666667pt;}
.ye_c00326{bottom:838.533333pt;}
.y43_c00326{bottom:846.400000pt;}
.yd_c00326{bottom:854.266667pt;}
.y42_c00326{bottom:862.133333pt;}
.yc_c00326{bottom:870.266667pt;}
.y41_c00326{bottom:878.133333pt;}
.yb_c00326{bottom:886.266667pt;}
.y40_c00326{bottom:897.600000pt;}
.ya_c00326{bottom:902.000000pt;}
.y3f_c00326{bottom:913.333333pt;}
.y9_c00326{bottom:917.733333pt;}
.y3e_c00326{bottom:932.666667pt;}
.y8_c00326{bottom:933.466667pt;}
.y3d_c00326{bottom:948.666667pt;}
.y7_c00326{bottom:952.533333pt;}
.y3c_c00326{bottom:964.400000pt;}
.y6_c00326{bottom:965.066667pt;}
.y5_c00326{bottom:976.400000pt;}
.y3b_c00326{bottom:980.133333pt;}
.y4_c00326{bottom:991.066667pt;}
.y3a_c00326{bottom:995.866667pt;}
.y3_c00326{bottom:1002.266667pt;}
.y2_c00326{bottom:1019.200000pt;}
.y1_c00326{bottom:1019.866667pt;}
.h7_c00326{height:26.666667pt;}
.h4_c00326{height:42.666667pt;}
.h6_c00326{height:53.333333pt;}
.h5_c00326{height:58.666667pt;}
.h3_c00326{height:64.000000pt;}
.h2_c00326{height:69.333333pt;}
.h1_c00326{height:1126.000000pt;}
.h0_c00326{height:1126.079916pt;}
.w1_c00326{width:854.666667pt;}
.w0_c00326{width:854.720052pt;}
.x0_c00326{left:0.000000pt;}
.xab_c00326{left:86.666667pt;}
.x2c_c00326{left:87.733333pt;}
.x8f_c00326{left:91.200000pt;}
.xac_c00326{left:93.733333pt;}
.x6e_c00326{left:98.533333pt;}
.x16_c00326{left:100.133333pt;}
.xb4_c00326{left:101.466667pt;}
.x33_c00326{left:104.000000pt;}
.x5b_c00326{left:104.933333pt;}
.x86_c00326{left:106.133333pt;}
.x79_c00326{left:107.200000pt;}
.xb0_c00326{left:108.400000pt;}
.xaf_c00326{left:109.733333pt;}
.x24_c00326{left:112.133333pt;}
.x7_c00326{left:113.600000pt;}
.x9a_c00326{left:116.400000pt;}
.x54_c00326{left:118.266667pt;}
.x75_c00326{left:120.800000pt;}
.x5f_c00326{left:123.333333pt;}
.xa6_c00326{left:126.400000pt;}
.x7a_c00326{left:127.333333pt;}
.x7b_c00326{left:129.333333pt;}
.x95_c00326{left:131.200000pt;}
.x11_c00326{left:132.533333pt;}
.x89_c00326{left:133.733333pt;}
.x17_c00326{left:135.333333pt;}
.x55_c00326{left:136.533333pt;}
.x40_c00326{left:138.533333pt;}
.x4b_c00326{left:139.866667pt;}
.x34_c00326{left:141.733333pt;}
.x83_c00326{left:143.466667pt;}
.x5c_c00326{left:145.600000pt;}
.x66_c00326{left:146.666667pt;}
.x18_c00326{left:148.666667pt;}
.x46_c00326{left:149.733333pt;}
.x39_c00326{left:150.933333pt;}
.x58_c00326{left:152.800000pt;}
.x25_c00326{left:153.733333pt;}
.x60_c00326{left:155.066667pt;}
.x6b_c00326{left:157.466667pt;}
.xa3_c00326{left:158.800000pt;}
.x35_c00326{left:160.266667pt;}
.x2d_c00326{left:162.000000pt;}
.x6f_c00326{left:163.200000pt;}
.x67_c00326{left:164.933333pt;}
.xa0_c00326{left:166.000000pt;}
.x47_c00326{left:168.000000pt;}
.x8_c00326{left:169.333333pt;}
.x12_c00326{left:170.666667pt;}
.xa7_c00326{left:172.400000pt;}
.x19_c00326{left:174.266667pt;}
.x7c_c00326{left:177.066667pt;}
.x62_c00326{left:178.533333pt;}
.x1a_c00326{left:180.933333pt;}
.x3a_c00326{left:183.200000pt;}
.x13_c00326{left:184.400000pt;}
.x9_c00326{left:186.000000pt;}
.x50_c00326{left:187.200000pt;}
.xa1_c00326{left:189.333333pt;}
.x76_c00326{left:190.666667pt;}
.xa8_c00326{left:191.600000pt;}
.x41_c00326{left:192.666667pt;}
.x84_c00326{left:194.266667pt;}
.x61_c00326{left:196.400000pt;}
.xa_c00326{left:197.866667pt;}
.x5d_c00326{left:199.066667pt;}
.x1b_c00326{left:200.133333pt;}
.x48_c00326{left:201.600000pt;}
.x3b_c00326{left:203.066667pt;}
.xad_c00326{left:204.133333pt;}
.x2e_c00326{left:205.200000pt;}
.x1c_c00326{left:207.200000pt;}
.x6c_c00326{left:210.533333pt;}
.x26_c00326{left:212.266667pt;}
.x70_c00326{left:213.200000pt;}
.x96_c00326{left:214.133333pt;}
.x14_c00326{left:215.466667pt;}
.x68_c00326{left:216.666667pt;}
.x87_c00326{left:217.600000pt;}
.x98_c00326{left:218.533333pt;}
.x1d_c00326{left:219.733333pt;}
.x36_c00326{left:221.066667pt;}
.x80_c00326{left:222.400000pt;}
.x9b_c00326{left:224.000000pt;}
.x78_c00326{left:225.600000pt;}
.x8a_c00326{left:226.800000pt;}
.x56_c00326{left:228.666667pt;}
.x90_c00326{left:229.733333pt;}
.x9c_c00326{left:230.666667pt;}
.x27_c00326{left:231.733333pt;}
.x1e_c00326{left:232.800000pt;}
.x42_c00326{left:234.533333pt;}
.x28_c00326{left:238.133333pt;}
.x1f_c00326{left:239.466667pt;}
.xb_c00326{left:240.800000pt;}
.x63_c00326{left:243.200000pt;}
.xa2_c00326{left:244.533333pt;}
.x20_c00326{left:245.866667pt;}
.x88_c00326{left:247.333333pt;}
.x4c_c00326{left:248.400000pt;}
.x9d_c00326{left:250.400000pt;}
.x51_c00326{left:252.133333pt;}
.xc_c00326{left:253.600000pt;}
.x7d_c00326{left:254.800000pt;}
.x5e_c00326{left:256.400000pt;}
.x81_c00326{left:257.333333pt;}
.x2f_c00326{left:260.533333pt;}
.x3c_c00326{left:262.000000pt;}
.x15_c00326{left:263.733333pt;}
.xd_c00326{left:266.666667pt;}
.xae_c00326{left:267.866667pt;}
.x91_c00326{left:269.066667pt;}
.x8b_c00326{left:270.000000pt;}
.x4d_c00326{left:271.066667pt;}
.x71_c00326{left:272.800000pt;}
.x97_c00326{left:276.133333pt;}
.x30_c00326{left:277.466667pt;}
.x93_c00326{left:278.400000pt;}
.x59_c00326{left:279.600000pt;}
.x37_c00326{left:280.533333pt;}
.x8e_c00326{left:281.866667pt;}
.xa9_c00326{left:282.800000pt;}
.x29_c00326{left:284.000000pt;}
.x43_c00326{left:286.000000pt;}
.x8c_c00326{left:286.933333pt;}
.x72_c00326{left:288.133333pt;}
.xaa_c00326{left:289.200000pt;}
.x2a_c00326{left:290.400000pt;}
.x21_c00326{left:291.466667pt;}
.xe_c00326{left:292.800000pt;}
.x7e_c00326{left:293.733333pt;}
.x9e_c00326{left:295.200000pt;}
.x85_c00326{left:296.400000pt;}
.x2b_c00326{left:297.466667pt;}
.x69_c00326{left:299.866667pt;}
.x52_c00326{left:302.000000pt;}
.xa4_c00326{left:303.200000pt;}
.x1_c00326{left:305.600000pt;}
.x3_c00326{left:308.533333pt;}
.x31_c00326{left:309.466667pt;}
.x6a_c00326{left:311.333333pt;}
.x64_c00326{left:313.066667pt;}
.x4_c00326{left:314.933333pt;}
.xb3_c00326{left:316.400000pt;}
.x5a_c00326{left:318.000000pt;}
.x3d_c00326{left:319.333333pt;}
.x44_c00326{left:320.266667pt;}
.x22_c00326{left:321.733333pt;}
.xf_c00326{left:322.933333pt;}
.x9f_c00326{left:325.333333pt;}
.x99_c00326{left:326.266667pt;}
.x49_c00326{left:327.600000pt;}
.x92_c00326{left:328.800000pt;}
.x65_c00326{left:332.533333pt;}
.x4e_c00326{left:334.400000pt;}
.x6d_c00326{left:336.133333pt;}
.x73_c00326{left:337.066667pt;}
.x32_c00326{left:338.533333pt;}
.x5_c00326{left:342.400000pt;}
.x38_c00326{left:343.866667pt;}
.x7f_c00326{left:345.866667pt;}
.x23_c00326{left:347.600000pt;}
.x45_c00326{left:349.733333pt;}
.x53_c00326{left:351.333333pt;}
.x4a_c00326{left:352.266667pt;}
.x4f_c00326{left:356.800000pt;}
.x57_c00326{left:360.266667pt;}
.x74_c00326{left:361.733333pt;}
.x77_c00326{left:363.466667pt;}
.xb2_c00326{left:365.066667pt;}
.x3e_c00326{left:366.000000pt;}
.xb1_c00326{left:367.200000pt;}
.x82_c00326{left:370.666667pt;}
.x6_c00326{left:372.533333pt;}
.x10_c00326{left:374.133333pt;}
.x8d_c00326{left:375.866667pt;}
.x3f_c00326{left:376.933333pt;}
.xa5_c00326{left:378.266667pt;}
.x94_c00326{left:386.000000pt;}
.x109_c00326{left:405.066667pt;}
.x11c_c00326{left:406.133333pt;}
.x12f_c00326{left:407.733333pt;}
.x147_c00326{left:413.066667pt;}
.x14f_c00326{left:415.333333pt;}
.xdb_c00326{left:419.333333pt;}
.xb5_c00326{left:420.533333pt;}
.x106_c00326{left:421.866667pt;}
.x123_c00326{left:423.866667pt;}
.x150_c00326{left:424.933333pt;}
.xf4_c00326{left:436.133333pt;}
.xd4_c00326{left:437.066667pt;}
.xcc_c00326{left:438.933333pt;}
.x131_c00326{left:440.000000pt;}
.x116_c00326{left:440.933333pt;}
.x12b_c00326{left:442.666667pt;}
.x141_c00326{left:444.266667pt;}
.xec_c00326{left:445.200000pt;}
.x142_c00326{left:446.133333pt;}
.xc4_c00326{left:447.600000pt;}
.xdc_c00326{left:450.000000pt;}
.x124_c00326{left:451.066667pt;}
.x10d_c00326{left:453.733333pt;}
.x107_c00326{left:454.800000pt;}
.xd2_c00326{left:456.400000pt;}
.xb6_c00326{left:457.333333pt;}
.xfd_c00326{left:459.200000pt;}
.xe4_c00326{left:460.800000pt;}
.xc5_c00326{left:463.333333pt;}
.x10e_c00326{left:465.866667pt;}
.xbd_c00326{left:467.866667pt;}
.xd5_c00326{left:469.066667pt;}
.xf8_c00326{left:470.000000pt;}
.x145_c00326{left:471.066667pt;}
.xf3_c00326{left:472.400000pt;}
.xf5_c00326{left:475.466667pt;}
.x108_c00326{left:477.866667pt;}
.xcd_c00326{left:479.200000pt;}
.x10a_c00326{left:480.266667pt;}
.xe5_c00326{left:482.266667pt;}
.x14a_c00326{left:483.200000pt;}
.x11a_c00326{left:484.400000pt;}
.xdd_c00326{left:486.533333pt;}
.xe0_c00326{left:487.466667pt;}
.x13a_c00326{left:489.200000pt;}
.x153_c00326{left:490.266667pt;}
.xd6_c00326{left:491.466667pt;}
.x12c_c00326{left:494.266667pt;}
.xce_c00326{left:495.200000pt;}
.x12e_c00326{left:496.533333pt;}
.x11e_c00326{left:498.000000pt;}
.xed_c00326{left:499.333333pt;}
.xb7_c00326{left:502.133333pt;}
.x134_c00326{left:503.733333pt;}
.xde_c00326{left:504.800000pt;}
.x100_c00326{left:505.866667pt;}
.xbe_c00326{left:506.933333pt;}
.xc6_c00326{left:507.866667pt;}
.x11f_c00326{left:511.066667pt;}
.x125_c00326{left:513.466667pt;}
.x130_c00326{left:516.000000pt;}
.x12a_c00326{left:518.266667pt;}
.x10f_c00326{left:519.200000pt;}
.x13b_c00326{left:520.533333pt;}
.x103_c00326{left:522.266667pt;}
.xcf_c00326{left:524.266667pt;}
.xe6_c00326{left:525.200000pt;}
.xe1_c00326{left:526.533333pt;}
.xd3_c00326{left:528.133333pt;}
.xd7_c00326{left:530.800000pt;}
.xf9_c00326{left:533.600000pt;}
.x10b_c00326{left:536.933333pt;}
.x13f_c00326{left:539.333333pt;}
.x110_c00326{left:540.666667pt;}
.xb8_c00326{left:542.400000pt;}
.xe7_c00326{left:543.733333pt;}
.x143_c00326{left:544.666667pt;}
.x11b_c00326{left:547.066667pt;}
.xbf_c00326{left:549.200000pt;}
.x137_c00326{left:550.133333pt;}
.x113_c00326{left:551.066667pt;}
.xd8_c00326{left:552.533333pt;}
.x132_c00326{left:554.133333pt;}
.x154_c00326{left:555.200000pt;}
.xee_c00326{left:556.266667pt;}
.x13c_c00326{left:558.000000pt;}
.x14d_c00326{left:559.200000pt;}
.xd0_c00326{left:562.000000pt;}
.xdf_c00326{left:563.600000pt;}
.xc7_c00326{left:565.200000pt;}
.x120_c00326{left:566.400000pt;}
.x135_c00326{left:569.733333pt;}
.xfa_c00326{left:571.066667pt;}
.x151_c00326{left:572.133333pt;}
.xb9_c00326{left:573.733333pt;}
.xef_c00326{left:575.200000pt;}
.x117_c00326{left:576.266667pt;}
.xe8_c00326{left:578.266667pt;}
.xfb_c00326{left:579.733333pt;}
.xd1_c00326{left:581.866667pt;}
.xc8_c00326{left:584.133333pt;}
.x127_c00326{left:585.066667pt;}
.x148_c00326{left:586.800000pt;}
.xc0_c00326{left:588.266667pt;}
.xf0_c00326{left:589.866667pt;}
.x104_c00326{left:592.133333pt;}
.x136_c00326{left:594.000000pt;}
.xd9_c00326{left:595.066667pt;}
.x138_c00326{left:597.866667pt;}
.xe9_c00326{left:598.800000pt;}
.xba_c00326{left:600.933333pt;}
.x10c_c00326{left:601.866667pt;}
.x114_c00326{left:604.800000pt;}
.x111_c00326{left:606.000000pt;}
.xfe_c00326{left:607.333333pt;}
.xc1_c00326{left:609.333333pt;}
.x14e_c00326{left:610.666667pt;}
.x139_c00326{left:611.600000pt;}
.x128_c00326{left:612.933333pt;}
.x14c_c00326{left:614.800000pt;}
.xf6_c00326{left:615.866667pt;}
.x118_c00326{left:617.200000pt;}
.x149_c00326{left:618.133333pt;}
.xc9_c00326{left:620.666667pt;}
.xe2_c00326{left:622.800000pt;}
.x115_c00326{left:624.266667pt;}
.xfc_c00326{left:626.800000pt;}
.xff_c00326{left:628.400000pt;}
.xda_c00326{left:629.600000pt;}
.x144_c00326{left:630.800000pt;}
.x129_c00326{left:631.866667pt;}
.xc2_c00326{left:633.600000pt;}
.xf1_c00326{left:634.666667pt;}
.x14b_c00326{left:635.600000pt;}
.x13d_c00326{left:636.666667pt;}
.xf7_c00326{left:639.200000pt;}
.xca_c00326{left:640.533333pt;}
.x121_c00326{left:644.666667pt;}
.x133_c00326{left:645.733333pt;}
.x126_c00326{left:647.466667pt;}
.xbb_c00326{left:648.666667pt;}
.x105_c00326{left:650.666667pt;}
.x112_c00326{left:652.133333pt;}
.xea_c00326{left:655.466667pt;}
.x13e_c00326{left:656.533333pt;}
.x101_c00326{left:659.466667pt;}
.xc3_c00326{left:662.666667pt;}
.x12d_c00326{left:667.333333pt;}
.xe3_c00326{left:669.200000pt;}
.xcb_c00326{left:670.266667pt;}
.x152_c00326{left:673.600000pt;}
.x119_c00326{left:674.800000pt;}
.x2_c00326{left:678.400000pt;}
.x11d_c00326{left:681.733333pt;}
.xbc_c00326{left:682.933333pt;}
.xf2_c00326{left:687.200000pt;}
.xeb_c00326{left:689.333333pt;}
.x122_c00326{left:690.400000pt;}
.x102_c00326{left:692.800000pt;}
.x140_c00326{left:696.400000pt;}
.x146_c00326{left:700.933333pt;}
}





/* 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_c00327 {
    display:none;
  }
  .loading-indicator_c00327.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00327 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_c00327 { 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_c00327" -> "#page-container .classname_c00327")
 */
.pf_c00327 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00327 { /* 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_c00327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00327 { /* 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_c00327 { /* 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_c00327 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00327 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00327 {overflow:visible;}
  }
}
.c_c00327 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00327 { /* 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_c00327:after { /* webkit #35443 */
  content: '';
}
.t_c00327:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00327 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 */
}
.__c00327 { /* 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_c00327 { /* info for Javascript */
  display:none;
}
.l_c00327 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00327 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00327 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00327: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_c00327 {
    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_c00327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00327.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_c00327 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00327;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.000000;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;}
.mdb_c00327{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m91_c00327{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00327{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m97_c00327{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00327{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00327{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00327{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00327{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00327{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mec_c00327{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00327{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10_c00327{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00327{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.maf_c00327{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.med_c00327{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7_c00327{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mee_c00327{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00327{transform:matrix(0.116500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116500,0.000000,0.000000,0.250000,0,0);}
.m29_c00327{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md0_c00327{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00327{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00327{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00327{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.me1_c00327{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00327{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me5_c00327{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m112_c00327{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m21_c00327{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00327{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00327{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m75_c00327{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00327{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00327{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m108_c00327{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00327{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00327{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00327{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m41_c00327{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00327{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me2_c00327{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00327{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m24_c00327{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me6_c00327{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m83_c00327{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc_c00327{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00327{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m67_c00327{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00327{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m42_c00327{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mde_c00327{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m49_c00327{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me4_c00327{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m56_c00327{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00327{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m12_c00327{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m81_c00327{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m79_c00327{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m70_c00327{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00327{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m54_c00327{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m80_c00327{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m109_c00327{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00327{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m28_c00327{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m122_c00327{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m18_c00327{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m51_c00327{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00327{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m119_c00327{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m19_c00327{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00327{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2_c00327{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00327{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m110_c00327{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6_c00327{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m111_c00327{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00327{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00327{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m45_c00327{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00327{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md1_c00327{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.meb_c00327{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00327{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me0_c00327{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m47_c00327{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m27_c00327{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00327{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mb_c00327{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00327{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00327{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00327{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00327{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00327{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00327{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00327{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00327{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m118_c00327{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00327{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m88_c00327{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00327{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.me3_c00327{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m69_c00327{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m66_c00327{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00327{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m22_c00327{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m57_c00327{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00327{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m76_c00327{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00327{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00327{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m33_c00327{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m127_c00327{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00327{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00327{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m32_c00327{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m39_c00327{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m95_c00327{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m94_c00327{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m63_c00327{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma_c00327{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m31_c00327{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m128_c00327{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m8_c00327{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m106_c00327{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mac_c00327{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m68_c00327{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00327{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m124_c00327{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m104_c00327{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00327{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00327{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00327{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m87_c00327{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m64_c00327{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m86_c00327{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00327{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mda_c00327{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m23_c00327{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m14_c00327{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mab_c00327{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m30_c00327{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00327{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9_c00327{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m16_c00327{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mef_c00327{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m48_c00327{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m102_c00327{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00327{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00327{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md2_c00327{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md4_c00327{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00327{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00327{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00327{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00327{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m36_c00327{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00327{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m61_c00327{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00327{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m121_c00327{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00327{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m17_c00327{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00327{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m93_c00327{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m89_c00327{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5_c00327{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m50_c00327{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00327{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00327{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00327{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mad_c00327{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m96_c00327{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00327{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m25_c00327{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m11_c00327{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00327{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m78_c00327{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m40_c00327{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mae_c00327{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m120_c00327{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m59_c00327{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m52_c00327{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m82_c00327{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00327{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m71_c00327{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m62_c00327{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mba_c00327{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00327{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00327{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m38_c00327{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m99_c00327{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m105_c00327{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m123_c00327{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m37_c00327{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00327{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00327{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00327{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00327{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m65_c00327{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m46_c00327{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00327{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00327{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00327{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m60_c00327{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m103_c00327{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00327{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00327{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00327{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00327{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00327{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m58_c00327{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m101_c00327{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00327{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00327{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00327{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00327{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m90_c00327{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00327{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m98_c00327{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00327{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md6_c00327{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m126_c00327{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00327{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00327{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m26_c00327{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m55_c00327{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00327{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m116_c00327{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m34_c00327{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m74_c00327{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m53_c00327{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m35_c00327{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mff_c00327{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00327{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);}
.m129_c00327{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00327{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00327{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00327{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m107_c00327{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md5_c00327{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m20_c00327{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00327{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00327{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf_c00327{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md9_c00327{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m115_c00327{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00327{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00327{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me_c00327{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00327{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m44_c00327{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m43_c00327{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00327{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m85_c00327{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00327{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m73_c00327{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00327{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m0_c00327{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00327{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00327{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00327{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m92_c00327{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00327{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m113_c00327{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m15_c00327{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m84_c00327{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mca_c00327{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00327{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md3_c00327{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00327{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00327{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m77_c00327{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.md_c00327{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00327{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00327{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m13_c00327{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00327{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m100_c00327{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00327{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.md8_c00327{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m125_c00327{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00327{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00327{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m72_c00327{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00327{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.md7_c00327{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.me8_c00327{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.me9_c00327{transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);}
.mea_c00327{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m114_c00327{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00327{transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00327{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.maa_c00327{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.me7_c00327{transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);}
.mce_c00327{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00327{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00327{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m117_c00327{transform:matrix(18.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(18.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(18.700000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls1_c00327{letter-spacing:0.000000px;}
.ls0_c00327{letter-spacing:55.714286px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{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__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00327{word-spacing:-85.714286px;}
.ws10_c00327{word-spacing:-4.375000px;}
.ws11_c00327{word-spacing:0.000000px;}
.wsf_c00327{word-spacing:12.666667px;}
.wsb_c00327{word-spacing:13.447307px;}
.ws9_c00327{word-spacing:15.000000px;}
.ws7_c00327{word-spacing:22.142857px;}
.wsd_c00327{word-spacing:23.211796px;}
.ws6_c00327{word-spacing:25.714286px;}
.wsa_c00327{word-spacing:29.285714px;}
.wsc_c00327{word-spacing:31.254692px;}
.ws8_c00327{word-spacing:34.642857px;}
.ws0_c00327{word-spacing:36.000000px;}
.ws1_c00327{word-spacing:44.166667px;}
.wse_c00327{word-spacing:49.928571px;}
.ws4_c00327{word-spacing:52.841612px;}
.ws5_c00327{word-spacing:63.125000px;}
.ws2_c00327{word-spacing:279.285714px;}
._1_c00327{margin-left:-55.714286px;}
._3_c00327{width:3.571429px;}
._5_c00327{width:43.257611px;}
._4_c00327{width:59.285714px;}
._0_c00327{width:80.416667px;}
._2_c00327{width:333.000000px;}
.fc0_c00327{color:transparent;}
.fs7_c00327{font-size:18.000000px;}
.fs6_c00327{font-size:42.000000px;}
.fs4_c00327{font-size:54.000000px;}
.fs5_c00327{font-size:60.000000px;}
.fs3_c00327{font-size:66.000000px;}
.fs0_c00327{font-size:72.000000px;}
.fs2_c00327{font-size:78.000000px;}
.fs1_c00327{font-size:84.000000px;}
.y0_c00327{bottom:0.000000px;}
.y6d_c00327{bottom:192.900000px;}
.y5f_c00327{bottom:198.000000px;}
.y6c_c00327{bottom:207.300000px;}
.y5e_c00327{bottom:212.100000px;}
.y6b_c00327{bottom:221.400000px;}
.y5d_c00327{bottom:226.800000px;}
.y6a_c00327{bottom:235.800000px;}
.y5c_c00327{bottom:240.450000px;}
.y69_c00327{bottom:250.200000px;}
.y5b_c00327{bottom:254.250000px;}
.y68_c00327{bottom:264.150000px;}
.y5a_c00327{bottom:267.900000px;}
.y67_c00327{bottom:278.250000px;}
.y59_c00327{bottom:282.300000px;}
.y66_c00327{bottom:292.650000px;}
.y58_c00327{bottom:296.700000px;}
.y65_c00327{bottom:307.050000px;}
.y64_c00327{bottom:324.600000px;}
.y2e_c00327{bottom:337.350000px;}
.y63_c00327{bottom:348.300000px;}
.y2d_c00327{bottom:357.450000px;}
.y62_c00327{bottom:366.000000px;}
.y2c_c00327{bottom:371.100000px;}
.y2b_c00327{bottom:385.200000px;}
.y61_c00327{bottom:389.100000px;}
.y2a_c00327{bottom:399.300000px;}
.y60_c00327{bottom:406.050000px;}
.y29_c00327{bottom:414.000000px;}
.y57_c00327{bottom:423.900000px;}
.y28_c00327{bottom:428.400000px;}
.y27_c00327{bottom:441.300000px;}
.y56_c00327{bottom:441.600000px;}
.y26_c00327{bottom:455.700000px;}
.y55_c00327{bottom:459.300000px;}
.y25_c00327{bottom:473.700000px;}
.y54_c00327{bottom:481.950000px;}
.y24_c00327{bottom:491.100000px;}
.y53_c00327{bottom:499.650000px;}
.y23_c00327{bottom:508.800000px;}
.y52_c00327{bottom:522.150000px;}
.y22_c00327{bottom:530.100000px;}
.y51_c00327{bottom:540.150000px;}
.y21_c00327{bottom:547.800000px;}
.y50_c00327{bottom:557.850000px;}
.y20_c00327{bottom:565.800000px;}
.y4f_c00327{bottom:575.550000px;}
.y1f_c00327{bottom:583.500000px;}
.y4e_c00327{bottom:593.550000px;}
.y1e_c00327{bottom:601.200000px;}
.y4d_c00327{bottom:611.250000px;}
.y1d_c00327{bottom:618.450000px;}
.y4c_c00327{bottom:628.950000px;}
.y1c_c00327{bottom:636.150000px;}
.y4b_c00327{bottom:649.050000px;}
.y4a_c00327{bottom:649.500000px;}
.y1b_c00327{bottom:658.050000px;}
.y49_c00327{bottom:663.900000px;}
.y48_c00327{bottom:678.000000px;}
.y1a_c00327{bottom:679.650000px;}
.y47_c00327{bottom:692.700000px;}
.y19_c00327{bottom:701.550000px;}
.y46_c00327{bottom:706.650000px;}
.y18_c00327{bottom:719.850000px;}
.y45_c00327{bottom:721.050000px;}
.y44_c00327{bottom:735.450000px;}
.y17_c00327{bottom:737.550000px;}
.y43_c00327{bottom:749.850000px;}
.y16_c00327{bottom:755.250000px;}
.y42_c00327{bottom:763.650000px;}
.y15_c00327{bottom:773.250000px;}
.y41_c00327{bottom:780.150000px;}
.y14_c00327{bottom:790.950000px;}
.y40_c00327{bottom:794.550000px;}
.y13_c00327{bottom:808.950000px;}
.y3f_c00327{bottom:812.250000px;}
.y12_c00327{bottom:826.200000px;}
.y3e_c00327{bottom:830.550000px;}
.y11_c00327{bottom:844.500000px;}
.y3d_c00327{bottom:848.550000px;}
.y10_c00327{bottom:861.750000px;}
.y3c_c00327{bottom:869.700000px;}
.yf_c00327{bottom:879.750000px;}
.y3b_c00327{bottom:888.450000px;}
.ye_c00327{bottom:897.450000px;}
.y3a_c00327{bottom:906.450000px;}
.yd_c00327{bottom:917.250000px;}
.y39_c00327{bottom:924.150000px;}
.yc_c00327{bottom:937.050000px;}
.y38_c00327{bottom:942.150000px;}
.yb_c00327{bottom:955.800000px;}
.y37_c00327{bottom:960.150000px;}
.ya_c00327{bottom:973.500000px;}
.y36_c00327{bottom:977.400000px;}
.y9_c00327{bottom:994.200000px;}
.y35_c00327{bottom:998.700000px;}
.y8_c00327{bottom:1012.200000px;}
.y34_c00327{bottom:1020.150000px;}
.y7_c00327{bottom:1030.200000px;}
.y33_c00327{bottom:1038.900000px;}
.y6_c00327{bottom:1047.900000px;}
.y32_c00327{bottom:1056.600000px;}
.y5_c00327{bottom:1069.200000px;}
.y31_c00327{bottom:1077.450000px;}
.y4_c00327{bottom:1095.150000px;}
.y30_c00327{bottom:1100.850000px;}
.y3_c00327{bottom:1116.000000px;}
.y2f_c00327{bottom:1118.850000px;}
.y1_c00327{bottom:1143.000000px;}
.y2_c00327{bottom:1144.050000px;}
.h9_c00327{height:18.000000px;}
.h8_c00327{height:42.000000px;}
.h6_c00327{height:54.000000px;}
.h7_c00327{height:60.000000px;}
.h5_c00327{height:66.000000px;}
.h2_c00327{height:72.000000px;}
.h4_c00327{height:78.000000px;}
.h3_c00327{height:84.000000px;}
.h1_c00327{height:1267.500000px;}
.h0_c00327{height:1267.559967px;}
.w1_c00327{width:961.500000px;}
.w0_c00327{width:961.560058px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:175.650000px;}
.x4_c00327{left:177.150000px;}
.x30_c00327{left:178.500000px;}
.x93_c00327{left:181.050000px;}
.x18_c00327{left:195.450000px;}
.x22_c00327{left:197.100000px;}
.x88_c00327{left:208.800000px;}
.x72_c00327{left:210.300000px;}
.x120_c00327{left:212.550000px;}
.x13_c00327{left:214.200000px;}
.xb_c00327{left:219.300000px;}
.x69_c00327{left:221.100000px;}
.x80_c00327{left:223.650000px;}
.x31_c00327{left:225.300000px;}
.x11b_c00327{left:227.850000px;}
.x19_c00327{left:229.350000px;}
.x8a_c00327{left:230.700000px;}
.x125_c00327{left:232.200000px;}
.x29_c00327{left:234.600000px;}
.x3_c00327{left:235.800000px;}
.x3c_c00327{left:237.150000px;}
.x63_c00327{left:239.400000px;}
.x3a_c00327{left:241.650000px;}
.x5_c00327{left:244.050000px;}
.x46_c00327{left:247.500000px;}
.x37_c00327{left:248.700000px;}
.x56_c00327{left:250.800000px;}
.xc_c00327{left:252.000000px;}
.x11c_c00327{left:254.100000px;}
.x6a_c00327{left:255.600000px;}
.x4d_c00327{left:256.650000px;}
.x73_c00327{left:258.900000px;}
.x42_c00327{left:260.250000px;}
.xd_c00327{left:263.100000px;}
.x51_c00327{left:264.600000px;}
.x3d_c00327{left:265.650000px;}
.x23_c00327{left:267.300000px;}
.x1a_c00327{left:268.650000px;}
.x2a_c00327{left:270.900000px;}
.x6_c00327{left:272.100000px;}
.x8d_c00327{left:273.450000px;}
.x8b_c00327{left:276.450000px;}
.x91_c00327{left:278.400000px;}
.x6c_c00327{left:279.750000px;}
.x57_c00327{left:281.400000px;}
.x11d_c00327{left:283.350000px;}
.x4e_c00327{left:285.750000px;}
.x8f_c00327{left:287.700000px;}
.x32_c00327{left:289.800000px;}
.x58_c00327{left:292.200000px;}
.x38_c00327{left:294.000000px;}
.x6b_c00327{left:295.200000px;}
.x78_c00327{left:296.250000px;}
.x1b_c00327{left:297.450000px;}
.x3f_c00327{left:298.800000px;}
.x86_c00327{left:300.600000px;}
.xe_c00327{left:301.650000px;}
.x47_c00327{left:305.850000px;}
.x24_c00327{left:307.200000px;}
.x5f_c00327{left:308.850000px;}
.x2b_c00327{left:312.300000px;}
.x7_c00327{left:313.800000px;}
.x3b_c00327{left:316.500000px;}
.x121_c00327{left:317.700000px;}
.x59_c00327{left:319.200000px;}
.x90_c00327{left:321.900000px;}
.x14_c00327{left:322.950000px;}
.x25_c00327{left:324.450000px;}
.xf_c00327{left:326.100000px;}
.x48_c00327{left:327.150000px;}
.x2c_c00327{left:328.200000px;}
.x7d_c00327{left:330.000000px;}
.x79_c00327{left:331.200000px;}
.x6d_c00327{left:332.250000px;}
.x74_c00327{left:333.450000px;}
.x3e_c00327{left:336.000000px;}
.x1c_c00327{left:338.100000px;}
.x84_c00327{left:339.900000px;}
.x81_c00327{left:341.100000px;}
.x52_c00327{left:342.900000px;}
.x66_c00327{left:344.550000px;}
.x62_c00327{left:345.600000px;}
.x11e_c00327{left:346.650000px;}
.x5a_c00327{left:350.100000px;}
.x8e_c00327{left:352.500000px;}
.x1d_c00327{left:356.850000px;}
.x6e_c00327{left:358.950000px;}
.x26_c00327{left:360.450000px;}
.x15_c00327{left:361.800000px;}
.x2d_c00327{left:364.950000px;}
.x43_c00327{left:366.750000px;}
.x40_c00327{left:367.950000px;}
.x75_c00327{left:369.150000px;}
.x53_c00327{left:370.950000px;}
.x33_c00327{left:372.600000px;}
.x83_c00327{left:374.550000px;}
.x4f_c00327{left:376.800000px;}
.x8_c00327{left:379.650000px;}
.x2e_c00327{left:380.850000px;}
.x6f_c00327{left:381.900000px;}
.x7a_c00327{left:383.100000px;}
.x5b_c00327{left:384.300000px;}
.x54_c00327{left:386.400000px;}
.x89_c00327{left:387.750000px;}
.x9_c00327{left:388.950000px;}
.x1e_c00327{left:391.050000px;}
.x64_c00327{left:392.400000px;}
.x34_c00327{left:393.450000px;}
.x7e_c00327{left:395.100000px;}
.x27_c00327{left:396.750000px;}
.x94_c00327{left:400.050000px;}
.x8c_c00327{left:401.850000px;}
.x124_c00327{left:403.350000px;}
.x10_c00327{left:404.550000px;}
.x49_c00327{left:406.650000px;}
.x1f_c00327{left:409.350000px;}
.x2f_c00327{left:411.750000px;}
.x11_c00327{left:413.850000px;}
.x126_c00327{left:415.200000px;}
.x70_c00327{left:417.150000px;}
.x2_c00327{left:419.700000px;}
.x41_c00327{left:420.900000px;}
.x60_c00327{left:423.000000px;}
.x28_c00327{left:424.800000px;}
.x95_c00327{left:427.350000px;}
.xa_c00327{left:428.550000px;}
.x50_c00327{left:431.250000px;}
.x5c_c00327{left:432.900000px;}
.x4a_c00327{left:434.700000px;}
.x16_c00327{left:436.350000px;}
.x11f_c00327{left:438.900000px;}
.x76_c00327{left:441.450000px;}
.x12_c00327{left:443.400000px;}
.x20_c00327{left:445.050000px;}
.x7b_c00327{left:449.250000px;}
.x35_c00327{left:450.300000px;}
.x61_c00327{left:451.500000px;}
.x67_c00327{left:453.750000px;}
.x4b_c00327{left:456.600000px;}
.x65_c00327{left:458.700000px;}
.x5d_c00327{left:460.200000px;}
.x55_c00327{left:461.250000px;}
.x85_c00327{left:464.400000px;}
.x36_c00327{left:468.000000px;}
.x122_c00327{left:469.500000px;}
.x21_c00327{left:471.000000px;}
.x87_c00327{left:472.050000px;}
.x44_c00327{left:473.250000px;}
.x5e_c00327{left:475.350000px;}
.x7c_c00327{left:480.150000px;}
.x17_c00327{left:482.400000px;}
.x68_c00327{left:484.050000px;}
.x39_c00327{left:485.850000px;}
.x82_c00327{left:488.400000px;}
.x7f_c00327{left:493.350000px;}
.x71_c00327{left:496.200000px;}
.x4c_c00327{left:498.300000px;}
.x92_c00327{left:499.800000px;}
.x123_c00327{left:501.150000px;}
.x45_c00327{left:502.350000px;}
.x77_c00327{left:510.600000px;}
.xa6_c00327{left:532.500000px;}
.xde_c00327{left:533.550000px;}
.x12a_c00327{left:534.600000px;}
.xe2_c00327{left:544.350000px;}
.xef_c00327{left:546.300000px;}
.xc3_c00327{left:548.400000px;}
.x96_c00327{left:550.050000px;}
.xc7_c00327{left:551.400000px;}
.x114_c00327{left:552.450000px;}
.xfe_c00327{left:555.600000px;}
.x135_c00327{left:556.950000px;}
.xf7_c00327{left:562.050000px;}
.x131_c00327{left:565.650000px;}
.xf0_c00327{left:566.850000px;}
.xe7_c00327{left:568.500000px;}
.x97_c00327{left:569.850000px;}
.x106_c00327{left:570.900000px;}
.x12f_c00327{left:573.150000px;}
.xb7_c00327{left:574.800000px;}
.xdf_c00327{left:577.050000px;}
.xa1_c00327{left:580.350000px;}
.xdc_c00327{left:582.750000px;}
.x104_c00327{left:584.550000px;}
.xcd_c00327{left:585.750000px;}
.xaf_c00327{left:587.100000px;}
.x12c_c00327{left:589.350000px;}
.xa7_c00327{left:591.150000px;}
.xe8_c00327{left:595.200000px;}
.xe3_c00327{left:597.300000px;}
.xa8_c00327{left:599.400000px;}
.x12d_c00327{left:600.450000px;}
.xb0_c00327{left:602.250000px;}
.xff_c00327{left:604.200000px;}
.xb6_c00327{left:605.550000px;}
.x98_c00327{left:606.600000px;}
.xb8_c00327{left:607.950000px;}
.xdd_c00327{left:609.000000px;}
.x107_c00327{left:611.250000px;}
.x127_c00327{left:612.750000px;}
.xf1_c00327{left:614.400000px;}
.xf8_c00327{left:615.600000px;}
.x118_c00327{left:617.250000px;}
.xc8_c00327{left:618.750000px;}
.xfc_c00327{left:620.550000px;}
.xa2_c00327{left:622.350000px;}
.xe9_c00327{left:626.850000px;}
.xa9_c00327{left:628.500000px;}
.x105_c00327{left:631.350000px;}
.xbb_c00327{left:632.850000px;}
.x110_c00327{left:639.150000px;}
.xd7_c00327{left:640.200000px;}
.x99_c00327{left:641.550000px;}
.xc4_c00327{left:643.500000px;}
.xb9_c00327{left:646.050000px;}
.xce_c00327{left:648.750000px;}
.xc9_c00327{left:651.450000px;}
.xeb_c00327{left:655.500000px;}
.xbc_c00327{left:657.000000px;}
.xcf_c00327{left:658.050000px;}
.xf2_c00327{left:660.450000px;}
.x10a_c00327{left:663.000000px;}
.x119_c00327{left:664.050000px;}
.x128_c00327{left:665.550000px;}
.xa3_c00327{left:666.600000px;}
.xe4_c00327{left:668.550000px;}
.x10b_c00327{left:669.900000px;}
.xd0_c00327{left:672.750000px;}
.xca_c00327{left:674.100000px;}
.x111_c00327{left:676.200000px;}
.x9a_c00327{left:677.550000px;}
.x136_c00327{left:679.050000px;}
.xc5_c00327{left:680.250000px;}
.x117_c00327{left:681.600000px;}
.x100_c00327{left:684.600000px;}
.xa4_c00327{left:686.700000px;}
.xaa_c00327{left:689.700000px;}
.xf9_c00327{left:691.500000px;}
.xea_c00327{left:693.450000px;}
.xcb_c00327{left:695.700000px;}
.x116_c00327{left:697.500000px;}
.x9b_c00327{left:699.450000px;}
.x115_c00327{left:703.950000px;}
.xfa_c00327{left:705.150000px;}
.x101_c00327{left:706.650000px;}
.xb1_c00327{left:707.700000px;}
.x139_c00327{left:709.500000px;}
.xab_c00327{left:710.550000px;}
.xd4_c00327{left:711.750000px;}
.x108_c00327{left:712.950000px;}
.xa5_c00327{left:714.450000px;}
.xbd_c00327{left:716.400000px;}
.x13a_c00327{left:717.450000px;}
.x133_c00327{left:719.250000px;}
.x9c_c00327{left:720.750000px;}
.x138_c00327{left:721.800000px;}
.xbe_c00327{left:725.400000px;}
.xd1_c00327{left:728.550000px;}
.xd8_c00327{left:729.750000px;}
.xd5_c00327{left:733.350000px;}
.xb2_c00327{left:735.450000px;}
.xfb_c00327{left:736.800000px;}
.x132_c00327{left:738.300000px;}
.xcc_c00327{left:739.500000px;}
.xba_c00327{left:740.700000px;}
.xf3_c00327{left:743.250000px;}
.x12b_c00327{left:744.300000px;}
.xbf_c00327{left:745.950000px;}
.x9d_c00327{left:747.750000px;}
.x102_c00327{left:749.550000px;}
.x10e_c00327{left:752.850000px;}
.xec_c00327{left:755.850000px;}
.xd9_c00327{left:757.800000px;}
.x137_c00327{left:758.850000px;}
.xb3_c00327{left:762.450000px;}
.xe5_c00327{left:763.650000px;}
.xe0_c00327{left:765.300000px;}
.x103_c00327{left:771.450000px;}
.x10c_c00327{left:774.000000px;}
.x12e_c00327{left:775.050000px;}
.xc0_c00327{left:777.600000px;}
.x109_c00327{left:779.100000px;}
.x130_c00327{left:781.950000px;}
.xe1_c00327{left:783.000000px;}
.x13b_c00327{left:784.800000px;}
.xed_c00327{left:789.750000px;}
.xac_c00327{left:794.100000px;}
.xc1_c00327{left:795.300000px;}
.xd2_c00327{left:796.650000px;}
.xf4_c00327{left:798.300000px;}
.xc6_c00327{left:801.150000px;}
.x13c_c00327{left:803.100000px;}
.x10d_c00327{left:806.400000px;}
.x113_c00327{left:808.500000px;}
.x9e_c00327{left:810.450000px;}
.xda_c00327{left:811.800000px;}
.x11a_c00327{left:813.450000px;}
.xad_c00327{left:816.000000px;}
.x129_c00327{left:817.500000px;}
.xd6_c00327{left:819.450000px;}
.x9f_c00327{left:821.550000px;}
.xe6_c00327{left:824.100000px;}
.xf5_c00327{left:827.400000px;}
.xfd_c00327{left:829.500000px;}
.x10f_c00327{left:830.550000px;}
.xc2_c00327{left:832.800000px;}
.x112_c00327{left:833.850000px;}
.xb4_c00327{left:837.000000px;}
.xa0_c00327{left:844.650000px;}
.x134_c00327{left:847.350000px;}
.xdb_c00327{left:849.900000px;}
.xae_c00327{left:853.800000px;}
.xee_c00327{left:854.850000px;}
.xf6_c00327{left:856.950000px;}
.xb5_c00327{left:858.900000px;}
.xd3_c00327{left:867.600000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls1_c00327{letter-spacing:0.000000pt;}
.ls0_c00327{letter-spacing:49.523810pt;}
.ws3_c00327{word-spacing:-76.190476pt;}
.ws10_c00327{word-spacing:-3.888889pt;}
.ws11_c00327{word-spacing:0.000000pt;}
.wsf_c00327{word-spacing:11.259259pt;}
.wsb_c00327{word-spacing:11.953162pt;}
.ws9_c00327{word-spacing:13.333333pt;}
.ws7_c00327{word-spacing:19.682540pt;}
.wsd_c00327{word-spacing:20.632708pt;}
.ws6_c00327{word-spacing:22.857143pt;}
.wsa_c00327{word-spacing:26.031746pt;}
.wsc_c00327{word-spacing:27.781948pt;}
.ws8_c00327{word-spacing:30.793651pt;}
.ws0_c00327{word-spacing:32.000000pt;}
.ws1_c00327{word-spacing:39.259259pt;}
.wse_c00327{word-spacing:44.380952pt;}
.ws4_c00327{word-spacing:46.970322pt;}
.ws5_c00327{word-spacing:56.111111pt;}
.ws2_c00327{word-spacing:248.253968pt;}
._1_c00327{margin-left:-49.523810pt;}
._3_c00327{width:3.174603pt;}
._5_c00327{width:38.451210pt;}
._4_c00327{width:52.698413pt;}
._0_c00327{width:71.481481pt;}
._2_c00327{width:296.000000pt;}
.fs7_c00327{font-size:16.000000pt;}
.fs6_c00327{font-size:37.333333pt;}
.fs4_c00327{font-size:48.000000pt;}
.fs5_c00327{font-size:53.333333pt;}
.fs3_c00327{font-size:58.666667pt;}
.fs0_c00327{font-size:64.000000pt;}
.fs2_c00327{font-size:69.333333pt;}
.fs1_c00327{font-size:74.666667pt;}
.y0_c00327{bottom:0.000000pt;}
.y6d_c00327{bottom:171.466667pt;}
.y5f_c00327{bottom:176.000000pt;}
.y6c_c00327{bottom:184.266667pt;}
.y5e_c00327{bottom:188.533333pt;}
.y6b_c00327{bottom:196.800000pt;}
.y5d_c00327{bottom:201.600000pt;}
.y6a_c00327{bottom:209.600000pt;}
.y5c_c00327{bottom:213.733333pt;}
.y69_c00327{bottom:222.400000pt;}
.y5b_c00327{bottom:226.000000pt;}
.y68_c00327{bottom:234.800000pt;}
.y5a_c00327{bottom:238.133333pt;}
.y67_c00327{bottom:247.333333pt;}
.y59_c00327{bottom:250.933333pt;}
.y66_c00327{bottom:260.133333pt;}
.y58_c00327{bottom:263.733333pt;}
.y65_c00327{bottom:272.933333pt;}
.y64_c00327{bottom:288.533333pt;}
.y2e_c00327{bottom:299.866667pt;}
.y63_c00327{bottom:309.600000pt;}
.y2d_c00327{bottom:317.733333pt;}
.y62_c00327{bottom:325.333333pt;}
.y2c_c00327{bottom:329.866667pt;}
.y2b_c00327{bottom:342.400000pt;}
.y61_c00327{bottom:345.866667pt;}
.y2a_c00327{bottom:354.933333pt;}
.y60_c00327{bottom:360.933333pt;}
.y29_c00327{bottom:368.000000pt;}
.y57_c00327{bottom:376.800000pt;}
.y28_c00327{bottom:380.800000pt;}
.y27_c00327{bottom:392.266667pt;}
.y56_c00327{bottom:392.533333pt;}
.y26_c00327{bottom:405.066667pt;}
.y55_c00327{bottom:408.266667pt;}
.y25_c00327{bottom:421.066667pt;}
.y54_c00327{bottom:428.400000pt;}
.y24_c00327{bottom:436.533333pt;}
.y53_c00327{bottom:444.133333pt;}
.y23_c00327{bottom:452.266667pt;}
.y52_c00327{bottom:464.133333pt;}
.y22_c00327{bottom:471.200000pt;}
.y51_c00327{bottom:480.133333pt;}
.y21_c00327{bottom:486.933333pt;}
.y50_c00327{bottom:495.866667pt;}
.y20_c00327{bottom:502.933333pt;}
.y4f_c00327{bottom:511.600000pt;}
.y1f_c00327{bottom:518.666667pt;}
.y4e_c00327{bottom:527.600000pt;}
.y1e_c00327{bottom:534.400000pt;}
.y4d_c00327{bottom:543.333333pt;}
.y1d_c00327{bottom:549.733333pt;}
.y4c_c00327{bottom:559.066667pt;}
.y1c_c00327{bottom:565.466667pt;}
.y4b_c00327{bottom:576.933333pt;}
.y4a_c00327{bottom:577.333333pt;}
.y1b_c00327{bottom:584.933333pt;}
.y49_c00327{bottom:590.133333pt;}
.y48_c00327{bottom:602.666667pt;}
.y1a_c00327{bottom:604.133333pt;}
.y47_c00327{bottom:615.733333pt;}
.y19_c00327{bottom:623.600000pt;}
.y46_c00327{bottom:628.133333pt;}
.y18_c00327{bottom:639.866667pt;}
.y45_c00327{bottom:640.933333pt;}
.y44_c00327{bottom:653.733333pt;}
.y17_c00327{bottom:655.600000pt;}
.y43_c00327{bottom:666.533333pt;}
.y16_c00327{bottom:671.333333pt;}
.y42_c00327{bottom:678.800000pt;}
.y15_c00327{bottom:687.333333pt;}
.y41_c00327{bottom:693.466667pt;}
.y14_c00327{bottom:703.066667pt;}
.y40_c00327{bottom:706.266667pt;}
.y13_c00327{bottom:719.066667pt;}
.y3f_c00327{bottom:722.000000pt;}
.y12_c00327{bottom:734.400000pt;}
.y3e_c00327{bottom:738.266667pt;}
.y11_c00327{bottom:750.666667pt;}
.y3d_c00327{bottom:754.266667pt;}
.y10_c00327{bottom:766.000000pt;}
.y3c_c00327{bottom:773.066667pt;}
.yf_c00327{bottom:782.000000pt;}
.y3b_c00327{bottom:789.733333pt;}
.ye_c00327{bottom:797.733333pt;}
.y3a_c00327{bottom:805.733333pt;}
.yd_c00327{bottom:815.333333pt;}
.y39_c00327{bottom:821.466667pt;}
.yc_c00327{bottom:832.933333pt;}
.y38_c00327{bottom:837.466667pt;}
.yb_c00327{bottom:849.600000pt;}
.y37_c00327{bottom:853.466667pt;}
.ya_c00327{bottom:865.333333pt;}
.y36_c00327{bottom:868.800000pt;}
.y9_c00327{bottom:883.733333pt;}
.y35_c00327{bottom:887.733333pt;}
.y8_c00327{bottom:899.733333pt;}
.y34_c00327{bottom:906.800000pt;}
.y7_c00327{bottom:915.733333pt;}
.y33_c00327{bottom:923.466667pt;}
.y6_c00327{bottom:931.466667pt;}
.y32_c00327{bottom:939.200000pt;}
.y5_c00327{bottom:950.400000pt;}
.y31_c00327{bottom:957.733333pt;}
.y4_c00327{bottom:973.466667pt;}
.y30_c00327{bottom:978.533333pt;}
.y3_c00327{bottom:992.000000pt;}
.y2f_c00327{bottom:994.533333pt;}
.y1_c00327{bottom:1016.000000pt;}
.y2_c00327{bottom:1016.933333pt;}
.h9_c00327{height:16.000000pt;}
.h8_c00327{height:37.333333pt;}
.h6_c00327{height:48.000000pt;}
.h7_c00327{height:53.333333pt;}
.h5_c00327{height:58.666667pt;}
.h2_c00327{height:64.000000pt;}
.h4_c00327{height:69.333333pt;}
.h3_c00327{height:74.666667pt;}
.h1_c00327{height:1126.666667pt;}
.h0_c00327{height:1126.719971pt;}
.w1_c00327{width:854.666667pt;}
.w0_c00327{width:854.720052pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:156.133333pt;}
.x4_c00327{left:157.466667pt;}
.x30_c00327{left:158.666667pt;}
.x93_c00327{left:160.933333pt;}
.x18_c00327{left:173.733333pt;}
.x22_c00327{left:175.200000pt;}
.x88_c00327{left:185.600000pt;}
.x72_c00327{left:186.933333pt;}
.x120_c00327{left:188.933333pt;}
.x13_c00327{left:190.400000pt;}
.xb_c00327{left:194.933333pt;}
.x69_c00327{left:196.533333pt;}
.x80_c00327{left:198.800000pt;}
.x31_c00327{left:200.266667pt;}
.x11b_c00327{left:202.533333pt;}
.x19_c00327{left:203.866667pt;}
.x8a_c00327{left:205.066667pt;}
.x125_c00327{left:206.400000pt;}
.x29_c00327{left:208.533333pt;}
.x3_c00327{left:209.600000pt;}
.x3c_c00327{left:210.800000pt;}
.x63_c00327{left:212.800000pt;}
.x3a_c00327{left:214.800000pt;}
.x5_c00327{left:216.933333pt;}
.x46_c00327{left:220.000000pt;}
.x37_c00327{left:221.066667pt;}
.x56_c00327{left:222.933333pt;}
.xc_c00327{left:224.000000pt;}
.x11c_c00327{left:225.866667pt;}
.x6a_c00327{left:227.200000pt;}
.x4d_c00327{left:228.133333pt;}
.x73_c00327{left:230.133333pt;}
.x42_c00327{left:231.333333pt;}
.xd_c00327{left:233.866667pt;}
.x51_c00327{left:235.200000pt;}
.x3d_c00327{left:236.133333pt;}
.x23_c00327{left:237.600000pt;}
.x1a_c00327{left:238.800000pt;}
.x2a_c00327{left:240.800000pt;}
.x6_c00327{left:241.866667pt;}
.x8d_c00327{left:243.066667pt;}
.x8b_c00327{left:245.733333pt;}
.x91_c00327{left:247.466667pt;}
.x6c_c00327{left:248.666667pt;}
.x57_c00327{left:250.133333pt;}
.x11d_c00327{left:251.866667pt;}
.x4e_c00327{left:254.000000pt;}
.x8f_c00327{left:255.733333pt;}
.x32_c00327{left:257.600000pt;}
.x58_c00327{left:259.733333pt;}
.x38_c00327{left:261.333333pt;}
.x6b_c00327{left:262.400000pt;}
.x78_c00327{left:263.333333pt;}
.x1b_c00327{left:264.400000pt;}
.x3f_c00327{left:265.600000pt;}
.x86_c00327{left:267.200000pt;}
.xe_c00327{left:268.133333pt;}
.x47_c00327{left:271.866667pt;}
.x24_c00327{left:273.066667pt;}
.x5f_c00327{left:274.533333pt;}
.x2b_c00327{left:277.600000pt;}
.x7_c00327{left:278.933333pt;}
.x3b_c00327{left:281.333333pt;}
.x121_c00327{left:282.400000pt;}
.x59_c00327{left:283.733333pt;}
.x90_c00327{left:286.133333pt;}
.x14_c00327{left:287.066667pt;}
.x25_c00327{left:288.400000pt;}
.xf_c00327{left:289.866667pt;}
.x48_c00327{left:290.800000pt;}
.x2c_c00327{left:291.733333pt;}
.x7d_c00327{left:293.333333pt;}
.x79_c00327{left:294.400000pt;}
.x6d_c00327{left:295.333333pt;}
.x74_c00327{left:296.400000pt;}
.x3e_c00327{left:298.666667pt;}
.x1c_c00327{left:300.533333pt;}
.x84_c00327{left:302.133333pt;}
.x81_c00327{left:303.200000pt;}
.x52_c00327{left:304.800000pt;}
.x66_c00327{left:306.266667pt;}
.x62_c00327{left:307.200000pt;}
.x11e_c00327{left:308.133333pt;}
.x5a_c00327{left:311.200000pt;}
.x8e_c00327{left:313.333333pt;}
.x1d_c00327{left:317.200000pt;}
.x6e_c00327{left:319.066667pt;}
.x26_c00327{left:320.400000pt;}
.x15_c00327{left:321.600000pt;}
.x2d_c00327{left:324.400000pt;}
.x43_c00327{left:326.000000pt;}
.x40_c00327{left:327.066667pt;}
.x75_c00327{left:328.133333pt;}
.x53_c00327{left:329.733333pt;}
.x33_c00327{left:331.200000pt;}
.x83_c00327{left:332.933333pt;}
.x4f_c00327{left:334.933333pt;}
.x8_c00327{left:337.466667pt;}
.x2e_c00327{left:338.533333pt;}
.x6f_c00327{left:339.466667pt;}
.x7a_c00327{left:340.533333pt;}
.x5b_c00327{left:341.600000pt;}
.x54_c00327{left:343.466667pt;}
.x89_c00327{left:344.666667pt;}
.x9_c00327{left:345.733333pt;}
.x1e_c00327{left:347.600000pt;}
.x64_c00327{left:348.800000pt;}
.x34_c00327{left:349.733333pt;}
.x7e_c00327{left:351.200000pt;}
.x27_c00327{left:352.666667pt;}
.x94_c00327{left:355.600000pt;}
.x8c_c00327{left:357.200000pt;}
.x124_c00327{left:358.533333pt;}
.x10_c00327{left:359.600000pt;}
.x49_c00327{left:361.466667pt;}
.x1f_c00327{left:363.866667pt;}
.x2f_c00327{left:366.000000pt;}
.x11_c00327{left:367.866667pt;}
.x126_c00327{left:369.066667pt;}
.x70_c00327{left:370.800000pt;}
.x2_c00327{left:373.066667pt;}
.x41_c00327{left:374.133333pt;}
.x60_c00327{left:376.000000pt;}
.x28_c00327{left:377.600000pt;}
.x95_c00327{left:379.866667pt;}
.xa_c00327{left:380.933333pt;}
.x50_c00327{left:383.333333pt;}
.x5c_c00327{left:384.800000pt;}
.x4a_c00327{left:386.400000pt;}
.x16_c00327{left:387.866667pt;}
.x11f_c00327{left:390.133333pt;}
.x76_c00327{left:392.400000pt;}
.x12_c00327{left:394.133333pt;}
.x20_c00327{left:395.600000pt;}
.x7b_c00327{left:399.333333pt;}
.x35_c00327{left:400.266667pt;}
.x61_c00327{left:401.333333pt;}
.x67_c00327{left:403.333333pt;}
.x4b_c00327{left:405.866667pt;}
.x65_c00327{left:407.733333pt;}
.x5d_c00327{left:409.066667pt;}
.x55_c00327{left:410.000000pt;}
.x85_c00327{left:412.800000pt;}
.x36_c00327{left:416.000000pt;}
.x122_c00327{left:417.333333pt;}
.x21_c00327{left:418.666667pt;}
.x87_c00327{left:419.600000pt;}
.x44_c00327{left:420.666667pt;}
.x5e_c00327{left:422.533333pt;}
.x7c_c00327{left:426.800000pt;}
.x17_c00327{left:428.800000pt;}
.x68_c00327{left:430.266667pt;}
.x39_c00327{left:431.866667pt;}
.x82_c00327{left:434.133333pt;}
.x7f_c00327{left:438.533333pt;}
.x71_c00327{left:441.066667pt;}
.x4c_c00327{left:442.933333pt;}
.x92_c00327{left:444.266667pt;}
.x123_c00327{left:445.466667pt;}
.x45_c00327{left:446.533333pt;}
.x77_c00327{left:453.866667pt;}
.xa6_c00327{left:473.333333pt;}
.xde_c00327{left:474.266667pt;}
.x12a_c00327{left:475.200000pt;}
.xe2_c00327{left:483.866667pt;}
.xef_c00327{left:485.600000pt;}
.xc3_c00327{left:487.466667pt;}
.x96_c00327{left:488.933333pt;}
.xc7_c00327{left:490.133333pt;}
.x114_c00327{left:491.066667pt;}
.xfe_c00327{left:493.866667pt;}
.x135_c00327{left:495.066667pt;}
.xf7_c00327{left:499.600000pt;}
.x131_c00327{left:502.800000pt;}
.xf0_c00327{left:503.866667pt;}
.xe7_c00327{left:505.333333pt;}
.x97_c00327{left:506.533333pt;}
.x106_c00327{left:507.466667pt;}
.x12f_c00327{left:509.466667pt;}
.xb7_c00327{left:510.933333pt;}
.xdf_c00327{left:512.933333pt;}
.xa1_c00327{left:515.866667pt;}
.xdc_c00327{left:518.000000pt;}
.x104_c00327{left:519.600000pt;}
.xcd_c00327{left:520.666667pt;}
.xaf_c00327{left:521.866667pt;}
.x12c_c00327{left:523.866667pt;}
.xa7_c00327{left:525.466667pt;}
.xe8_c00327{left:529.066667pt;}
.xe3_c00327{left:530.933333pt;}
.xa8_c00327{left:532.800000pt;}
.x12d_c00327{left:533.733333pt;}
.xb0_c00327{left:535.333333pt;}
.xff_c00327{left:537.066667pt;}
.xb6_c00327{left:538.266667pt;}
.x98_c00327{left:539.200000pt;}
.xb8_c00327{left:540.400000pt;}
.xdd_c00327{left:541.333333pt;}
.x107_c00327{left:543.333333pt;}
.x127_c00327{left:544.666667pt;}
.xf1_c00327{left:546.133333pt;}
.xf8_c00327{left:547.200000pt;}
.x118_c00327{left:548.666667pt;}
.xc8_c00327{left:550.000000pt;}
.xfc_c00327{left:551.600000pt;}
.xa2_c00327{left:553.200000pt;}
.xe9_c00327{left:557.200000pt;}
.xa9_c00327{left:558.666667pt;}
.x105_c00327{left:561.200000pt;}
.xbb_c00327{left:562.533333pt;}
.x110_c00327{left:568.133333pt;}
.xd7_c00327{left:569.066667pt;}
.x99_c00327{left:570.266667pt;}
.xc4_c00327{left:572.000000pt;}
.xb9_c00327{left:574.266667pt;}
.xce_c00327{left:576.666667pt;}
.xc9_c00327{left:579.066667pt;}
.xeb_c00327{left:582.666667pt;}
.xbc_c00327{left:584.000000pt;}
.xcf_c00327{left:584.933333pt;}
.xf2_c00327{left:587.066667pt;}
.x10a_c00327{left:589.333333pt;}
.x119_c00327{left:590.266667pt;}
.x128_c00327{left:591.600000pt;}
.xa3_c00327{left:592.533333pt;}
.xe4_c00327{left:594.266667pt;}
.x10b_c00327{left:595.466667pt;}
.xd0_c00327{left:598.000000pt;}
.xca_c00327{left:599.200000pt;}
.x111_c00327{left:601.066667pt;}
.x9a_c00327{left:602.266667pt;}
.x136_c00327{left:603.600000pt;}
.xc5_c00327{left:604.666667pt;}
.x117_c00327{left:605.866667pt;}
.x100_c00327{left:608.533333pt;}
.xa4_c00327{left:610.400000pt;}
.xaa_c00327{left:613.066667pt;}
.xf9_c00327{left:614.666667pt;}
.xea_c00327{left:616.400000pt;}
.xcb_c00327{left:618.400000pt;}
.x116_c00327{left:620.000000pt;}
.x9b_c00327{left:621.733333pt;}
.x115_c00327{left:625.733333pt;}
.xfa_c00327{left:626.800000pt;}
.x101_c00327{left:628.133333pt;}
.xb1_c00327{left:629.066667pt;}
.x139_c00327{left:630.666667pt;}
.xab_c00327{left:631.600000pt;}
.xd4_c00327{left:632.666667pt;}
.x108_c00327{left:633.733333pt;}
.xa5_c00327{left:635.066667pt;}
.xbd_c00327{left:636.800000pt;}
.x13a_c00327{left:637.733333pt;}
.x133_c00327{left:639.333333pt;}
.x9c_c00327{left:640.666667pt;}
.x138_c00327{left:641.600000pt;}
.xbe_c00327{left:644.800000pt;}
.xd1_c00327{left:647.600000pt;}
.xd8_c00327{left:648.666667pt;}
.xd5_c00327{left:651.866667pt;}
.xb2_c00327{left:653.733333pt;}
.xfb_c00327{left:654.933333pt;}
.x132_c00327{left:656.266667pt;}
.xcc_c00327{left:657.333333pt;}
.xba_c00327{left:658.400000pt;}
.xf3_c00327{left:660.666667pt;}
.x12b_c00327{left:661.600000pt;}
.xbf_c00327{left:663.066667pt;}
.x9d_c00327{left:664.666667pt;}
.x102_c00327{left:666.266667pt;}
.x10e_c00327{left:669.200000pt;}
.xec_c00327{left:671.866667pt;}
.xd9_c00327{left:673.600000pt;}
.x137_c00327{left:674.533333pt;}
.xb3_c00327{left:677.733333pt;}
.xe5_c00327{left:678.800000pt;}
.xe0_c00327{left:680.266667pt;}
.x103_c00327{left:685.733333pt;}
.x10c_c00327{left:688.000000pt;}
.x12e_c00327{left:688.933333pt;}
.xc0_c00327{left:691.200000pt;}
.x109_c00327{left:692.533333pt;}
.x130_c00327{left:695.066667pt;}
.xe1_c00327{left:696.000000pt;}
.x13b_c00327{left:697.600000pt;}
.xed_c00327{left:702.000000pt;}
.xac_c00327{left:705.866667pt;}
.xc1_c00327{left:706.933333pt;}
.xd2_c00327{left:708.133333pt;}
.xf4_c00327{left:709.600000pt;}
.xc6_c00327{left:712.133333pt;}
.x13c_c00327{left:713.866667pt;}
.x10d_c00327{left:716.800000pt;}
.x113_c00327{left:718.666667pt;}
.x9e_c00327{left:720.400000pt;}
.xda_c00327{left:721.600000pt;}
.x11a_c00327{left:723.066667pt;}
.xad_c00327{left:725.333333pt;}
.x129_c00327{left:726.666667pt;}
.xd6_c00327{left:728.400000pt;}
.x9f_c00327{left:730.266667pt;}
.xe6_c00327{left:732.533333pt;}
.xf5_c00327{left:735.466667pt;}
.xfd_c00327{left:737.333333pt;}
.x10f_c00327{left:738.266667pt;}
.xc2_c00327{left:740.266667pt;}
.x112_c00327{left:741.200000pt;}
.xb4_c00327{left:744.000000pt;}
.xa0_c00327{left:750.800000pt;}
.x134_c00327{left:753.200000pt;}
.xdb_c00327{left:755.466667pt;}
.xae_c00327{left:758.933333pt;}
.xee_c00327{left:759.866667pt;}
.xf6_c00327{left:761.733333pt;}
.xb5_c00327{left:763.466667pt;}
.xd3_c00327{left:771.200000pt;}
}





/* 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_c00328 {
    display:none;
  }
  .loading-indicator_c00328.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00328 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_c00328 { 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_c00328" -> "#page-container .classname_c00328")
 */
.pf_c00328 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00328 { /* 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_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00328 { /* 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_c00328 { /* 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_c00328 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00328 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00328 {overflow:visible;}
  }
}
.c_c00328 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00328 { /* 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_c00328:after { /* webkit #35443 */
  content: '';
}
.t_c00328:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00328 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 */
}
.__c00328 { /* 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_c00328 { /* info for Javascript */
  display:none;
}
.l_c00328 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00328 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00328 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00328: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_c00328 {
    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_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00328.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_c00328 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00328;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.000000;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;}
.m10e_c00328{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m46_c00328{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00328{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00328{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md2_c00328{transform:matrix(0.093000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093000,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m113_c00328{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00328{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.md4_c00328{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m114_c00328{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00328{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m69_c00328{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00328{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00328{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.me6_c00328{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m95_c00328{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00328{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00328{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m121_c00328{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m29_c00328{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00328{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m103_c00328{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m51_c00328{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00328{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m45_c00328{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m115_c00328{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00328{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00328{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m76_c00328{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00328{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m80_c00328{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m48_c00328{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m98_c00328{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md0_c00328{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m108_c00328{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00328{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00328{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00328{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.maa_c00328{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00328{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00328{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.md5_c00328{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00328{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00328{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00328{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m21_c00328{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00328{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m47_c00328{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m100_c00328{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00328{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00328{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m77_c00328{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m79_c00328{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00328{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00328{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m37_c00328{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m96_c00328{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m101_c00328{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m11_c00328{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md1_c00328{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m72_c00328{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m22_c00328{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00328{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m91_c00328{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00328{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m58_c00328{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00328{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00328{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mea_c00328{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00328{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00328{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00328{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mde_c00328{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00328{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m16_c00328{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00328{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00328{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00328{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00328{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m50_c00328{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m17_c00328{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00328{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m107_c00328{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00328{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00328{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mba_c00328{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mef_c00328{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00328{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me7_c00328{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m88_c00328{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m81_c00328{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m15_c00328{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00328{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m61_c00328{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00328{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m62_c00328{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me3_c00328{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.maf_c00328{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.med_c00328{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00328{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m13_c00328{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m112_c00328{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.meb_c00328{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mca_c00328{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00328{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m83_c00328{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m68_c00328{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00328{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m97_c00328{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m12_c00328{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00328{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00328{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m24_c00328{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m40_c00328{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m110_c00328{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00328{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00328{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m84_c00328{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00328{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m124_c00328{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00328{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m31_c00328{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m33_c00328{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m105_c00328{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00328{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m32_c00328{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m75_c00328{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00328{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m74_c00328{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me5_c00328{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00328{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m18_c00328{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00328{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m30_c00328{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m28_c00328{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00328{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m23_c00328{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00328{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00328{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.me4_c00328{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m44_c00328{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00328{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00328{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m104_c00328{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md_c00328{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00328{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00328{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m57_c00328{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00328{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00328{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00328{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00328{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m93_c00328{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00328{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00328{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m90_c00328{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m41_c00328{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m56_c00328{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m70_c00328{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00328{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00328{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00328{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7_c00328{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me8_c00328{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m5_c00328{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00328{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mee_c00328{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m117_c00328{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00328{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6_c00328{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m92_c00328{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00328{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00328{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00328{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m73_c00328{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00328{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00328{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00328{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00328{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md8_c00328{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00328{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m42_c00328{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mce_c00328{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00328{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m94_c00328{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m71_c00328{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00328{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00328{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m63_c00328{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mff_c00328{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00328{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00328{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m89_c00328{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m78_c00328{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m59_c00328{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m25_c00328{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00328{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00328{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m99_c00328{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00328{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf_c00328{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00328{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00328{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m26_c00328{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00328{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00328{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10_c00328{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00328{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mae_c00328{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me1_c00328{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00328{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me0_c00328{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m119_c00328{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mab_c00328{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00328{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00328{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m43_c00328{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m120_c00328{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00328{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m34_c00328{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m39_c00328{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m36_c00328{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00328{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00328{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m111_c00328{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2_c00328{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m35_c00328{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me_c00328{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m67_c00328{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00328{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m106_c00328{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);}
.m19_c00328{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m66_c00328{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00328{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00328{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb_c00328{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m49_c00328{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00328{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md6_c00328{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00328{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00328{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m64_c00328{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00328{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00328{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mda_c00328{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mad_c00328{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m27_c00328{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m122_c00328{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m116_c00328{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m65_c00328{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md3_c00328{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m87_c00328{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m60_c00328{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00328{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m55_c00328{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m82_c00328{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m109_c00328{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00328{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00328{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m54_c00328{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mac_c00328{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.me2_c00328{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m38_c00328{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00328{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m123_c00328{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00328{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc_c00328{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00328{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00328{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00328{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mec_c00328{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m52_c00328{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m86_c00328{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00328{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00328{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.me9_c00328{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00328{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m85_c00328{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m102_c00328{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m9_c00328{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m118_c00328{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.md7_c00328{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m0_c00328{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00328{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m53_c00328{transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);}
.md9_c00328{transform:matrix(0.471000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00328{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m20_c00328{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls0_c00328{letter-spacing:0.000000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{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__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00328{word-spacing:-16.546392px;}
.ws9_c00328{word-spacing:-8.333333px;}
.ws4_c00328{word-spacing:-7.414013px;}
.ws1_c00328{word-spacing:-5.772908px;}
.ws0_c00328{word-spacing:-3.165644px;}
.ws8_c00328{word-spacing:-3.055556px;}
.wsb_c00328{word-spacing:-1.865330px;}
.wsf_c00328{word-spacing:0.000000px;}
.wsc_c00328{word-spacing:1.323024px;}
.ws2_c00328{word-spacing:3.125000px;}
.ws6_c00328{word-spacing:10.581423px;}
.wsd_c00328{word-spacing:15.540541px;}
.ws5_c00328{word-spacing:17.857143px;}
.ws3_c00328{word-spacing:23.847584px;}
.wse_c00328{word-spacing:58.750000px;}
.wsa_c00328{word-spacing:67.333333px;}
.fc0_c00328{color:transparent;}
.fs6_c00328{font-size:30.000000px;}
.fs5_c00328{font-size:42.000000px;}
.fs4_c00328{font-size:54.000000px;}
.fs2_c00328{font-size:60.000000px;}
.fs3_c00328{font-size:66.000000px;}
.fs1_c00328{font-size:72.000000px;}
.fs7_c00328{font-size:78.000000px;}
.fs0_c00328{font-size:114.000000px;}
.y0_c00328{bottom:0.000000px;}
.y37_c00328{bottom:186.600000px;}
.y69_c00328{bottom:187.200000px;}
.y36_c00328{bottom:201.000000px;}
.y68_c00328{bottom:201.600000px;}
.y35_c00328{bottom:215.400000px;}
.y67_c00328{bottom:216.000000px;}
.y34_c00328{bottom:230.100000px;}
.y66_c00328{bottom:230.700000px;}
.y33_c00328{bottom:244.800000px;}
.y65_c00328{bottom:255.600000px;}
.y32_c00328{bottom:259.200000px;}
.y31_c00328{bottom:273.600000px;}
.y30_c00328{bottom:288.000000px;}
.y64_c00328{bottom:291.600000px;}
.y2f_c00328{bottom:302.400000px;}
.y63_c00328{bottom:308.850000px;}
.y2e_c00328{bottom:316.800000px;}
.y2d_c00328{bottom:329.850000px;}
.y62_c00328{bottom:335.700000px;}
.y2c_c00328{bottom:344.550000px;}
.y61_c00328{bottom:352.650000px;}
.y2b_c00328{bottom:358.650000px;}
.y60_c00328{bottom:370.350000px;}
.y2a_c00328{bottom:373.050000px;}
.y29_c00328{bottom:387.750000px;}
.y5f_c00328{bottom:388.050000px;}
.y28_c00328{bottom:401.400000px;}
.y5e_c00328{bottom:405.750000px;}
.y5d_c00328{bottom:428.100000px;}
.y27_c00328{bottom:444.150000px;}
.y5c_c00328{bottom:445.350000px;}
.y26_c00328{bottom:465.750000px;}
.y5b_c00328{bottom:475.950000px;}
.y25_c00328{bottom:491.700000px;}
.y5a_c00328{bottom:497.850000px;}
.y24_c00328{bottom:510.450000px;}
.y59_c00328{bottom:520.200000px;}
.y23_c00328{bottom:528.450000px;}
.y58_c00328{bottom:538.200000px;}
.y57_c00328{bottom:555.900000px;}
.y22_c00328{bottom:564.900000px;}
.y21_c00328{bottom:573.000000px;}
.y56_c00328{bottom:573.900000px;}
.y20_c00328{bottom:591.000000px;}
.y55_c00328{bottom:591.150000px;}
.y1f_c00328{bottom:608.700000px;}
.y54_c00328{bottom:612.750000px;}
.y1e_c00328{bottom:626.400000px;}
.y53_c00328{bottom:630.750000px;}
.y1d_c00328{bottom:648.000000px;}
.y52_c00328{bottom:648.450000px;}
.y1c_c00328{bottom:666.300000px;}
.y51_c00328{bottom:666.450000px;}
.y50_c00328{bottom:684.150000px;}
.y1b_c00328{bottom:684.300000px;}
.y1a_c00328{bottom:702.000000px;}
.y4f_c00328{bottom:702.150000px;}
.y4e_c00328{bottom:719.400000px;}
.y19_c00328{bottom:720.000000px;}
.y18_c00328{bottom:737.250000px;}
.y4d_c00328{bottom:737.400000px;}
.y17_c00328{bottom:755.250000px;}
.y4c_c00328{bottom:755.700000px;}
.y16_c00328{bottom:772.950000px;}
.y4b_c00328{bottom:790.950000px;}
.y15_c00328{bottom:792.300000px;}
.y4a_c00328{bottom:808.650000px;}
.y14_c00328{bottom:808.800000px;}
.y13_c00328{bottom:822.900000px;}
.y49_c00328{bottom:826.650000px;}
.y12_c00328{bottom:837.000000px;}
.y48_c00328{bottom:844.350000px;}
.y11_c00328{bottom:848.850000px;}
.y47_c00328{bottom:862.050000px;}
.y10_c00328{bottom:866.550000px;}
.y46_c00328{bottom:879.750000px;}
.yf_c00328{bottom:883.350000px;}
.y45_c00328{bottom:897.450000px;}
.ye_c00328{bottom:902.400000px;}
.yd_c00328{bottom:920.100000px;}
.y43_c00328{bottom:922.200000px;}
.y42_c00328{bottom:936.300000px;}
.yc_c00328{bottom:937.800000px;}
.y44_c00328{bottom:950.700000px;}
.y41_c00328{bottom:951.000000px;}
.yb_c00328{bottom:955.500000px;}
.y40_c00328{bottom:965.100000px;}
.ya_c00328{bottom:976.350000px;}
.y3f_c00328{bottom:985.500000px;}
.y9_c00328{bottom:995.100000px;}
.y3e_c00328{bottom:1003.200000px;}
.y8_c00328{bottom:1012.800000px;}
.y3d_c00328{bottom:1021.200000px;}
.y7_c00328{bottom:1030.500000px;}
.y3c_c00328{bottom:1038.900000px;}
.y6_c00328{bottom:1051.800000px;}
.y3b_c00328{bottom:1060.800000px;}
.y5_c00328{bottom:1066.200000px;}
.y3a_c00328{bottom:1078.800000px;}
.y4_c00328{bottom:1083.900000px;}
.y39_c00328{bottom:1096.500000px;}
.y38_c00328{bottom:1114.200000px;}
.y3_c00328{bottom:1114.500000px;}
.y2_c00328{bottom:1138.650000px;}
.y1_c00328{bottom:1141.200000px;}
.h7_c00328{height:30.000000px;}
.h6_c00328{height:42.000000px;}
.h5_c00328{height:54.000000px;}
.h3_c00328{height:60.000000px;}
.h4_c00328{height:66.000000px;}
.h2_c00328{height:72.000000px;}
.h8_c00328{height:78.000000px;}
.h1_c00328{height:114.000000px;}
.h0_c00328{height:1269.000000px;}
.w1_c00328{width:961.500000px;}
.w0_c00328{width:961.560058px;}
.x0_c00328{left:0.000000px;}
.x94_c00328{left:65.550000px;}
.x80_c00328{left:67.650000px;}
.x79_c00328{left:69.900000px;}
.x32_c00328{left:71.700000px;}
.x8_c00328{left:73.050000px;}
.x9b_c00328{left:78.150000px;}
.xa3_c00328{left:84.900000px;}
.x4d_c00328{left:86.700000px;}
.x43_c00328{left:87.900000px;}
.x6f_c00328{left:89.250000px;}
.x16_c00328{left:90.300000px;}
.x62_c00328{left:91.350000px;}
.x89_c00328{left:99.750000px;}
.x51_c00328{left:101.250000px;}
.x53_c00328{left:102.300000px;}
.x9d_c00328{left:104.100000px;}
.x9c_c00328{left:105.450000px;}
.xf_c00328{left:108.750000px;}
.x8f_c00328{left:112.050000px;}
.x29_c00328{left:113.250000px;}
.x9_c00328{left:114.450000px;}
.x7f_c00328{left:116.400000px;}
.x33_c00328{left:118.200000px;}
.x86_c00328{left:119.700000px;}
.x57_c00328{left:122.700000px;}
.x90_c00328{left:124.050000px;}
.x95_c00328{left:126.450000px;}
.x87_c00328{left:128.400000px;}
.x3_c00328{left:129.600000px;}
.x2f_c00328{left:130.650000px;}
.x3c_c00328{left:132.450000px;}
.x7a_c00328{left:134.400000px;}
.x8d_c00328{left:136.650000px;}
.x23_c00328{left:139.950000px;}
.x68_c00328{left:141.600000px;}
.x5d_c00328{left:143.400000px;}
.x82_c00328{left:144.900000px;}
.x1b_c00328{left:145.950000px;}
.x7b_c00328{left:147.150000px;}
.xa_c00328{left:148.950000px;}
.x70_c00328{left:150.450000px;}
.x10_c00328{left:153.000000px;}
.x4_c00328{left:154.500000px;}
.x58_c00328{left:155.550000px;}
.x17_c00328{left:156.900000px;}
.x63_c00328{left:158.700000px;}
.x77_c00328{left:160.050000px;}
.xb_c00328{left:161.850000px;}
.x3d_c00328{left:163.050000px;}
.x37_c00328{left:164.100000px;}
.x5f_c00328{left:165.450000px;}
.xa4_c00328{left:166.950000px;}
.x24_c00328{left:168.450000px;}
.x8e_c00328{left:171.150000px;}
.xa1_c00328{left:173.400000px;}
.x30_c00328{left:175.200000px;}
.x44_c00328{left:177.150000px;}
.x88_c00328{left:179.250000px;}
.x1c_c00328{left:180.450000px;}
.x34_c00328{left:183.300000px;}
.x38_c00328{left:184.950000px;}
.x18_c00328{left:187.500000px;}
.x59_c00328{left:192.300000px;}
.x31_c00328{left:193.950000px;}
.x98_c00328{left:195.450000px;}
.x72_c00328{left:199.350000px;}
.xc_c00328{left:200.700000px;}
.x2a_c00328{left:204.000000px;}
.x3e_c00328{left:205.500000px;}
.x11_c00328{left:207.300000px;}
.x45_c00328{left:208.800000px;}
.x64_c00328{left:210.900000px;}
.x5_c00328{left:212.400000px;}
.x54_c00328{left:214.650000px;}
.x84_c00328{left:216.000000px;}
.x60_c00328{left:219.150000px;}
.x65_c00328{left:220.200000px;}
.x1d_c00328{left:223.350000px;}
.x5a_c00328{left:227.250000px;}
.x81_c00328{left:228.450000px;}
.x46_c00328{left:231.450000px;}
.x6_c00328{left:233.250000px;}
.x7c_c00328{left:235.650000px;}
.x12_c00328{left:237.150000px;}
.x3f_c00328{left:239.400000px;}
.x66_c00328{left:241.050000px;}
.x2b_c00328{left:243.300000px;}
.x25_c00328{left:249.150000px;}
.x39_c00328{left:251.250000px;}
.x8a_c00328{left:252.300000px;}
.x83_c00328{left:253.350000px;}
.x91_c00328{left:256.950000px;}
.x40_c00328{left:258.150000px;}
.x19_c00328{left:260.100000px;}
.x55_c00328{left:262.950000px;}
.x49_c00328{left:264.900000px;}
.x78_c00328{left:266.250000px;}
.x35_c00328{left:267.900000px;}
.x47_c00328{left:268.950000px;}
.x73_c00328{left:270.900000px;}
.x69_c00328{left:272.250000px;}
.x5b_c00328{left:275.550000px;}
.x1e_c00328{left:277.050000px;}
.x61_c00328{left:279.600000px;}
.x56_c00328{left:281.250000px;}
.x6c_c00328{left:283.050000px;}
.xa5_c00328{left:286.050000px;}
.xd_c00328{left:288.150000px;}
.x7_c00328{left:290.850000px;}
.x4a_c00328{left:292.650000px;}
.x26_c00328{left:294.450000px;}
.x13_c00328{left:296.250000px;}
.x7d_c00328{left:298.650000px;}
.xa2_c00328{left:301.200000px;}
.x74_c00328{left:305.100000px;}
.x85_c00328{left:306.300000px;}
.x96_c00328{left:307.500000px;}
.x4b_c00328{left:308.550000px;}
.x6a_c00328{left:309.750000px;}
.x1f_c00328{left:311.550000px;}
.x9e_c00328{left:316.350000px;}
.x1_c00328{left:317.850000px;}
.x71_c00328{left:319.650000px;}
.x14_c00328{left:320.700000px;}
.xe_c00328{left:322.650000px;}
.x3a_c00328{left:325.050000px;}
.x41_c00328{left:326.250000px;}
.x2c_c00328{left:328.650000px;}
.x7e_c00328{left:330.000000px;}
.x5c_c00328{left:333.150000px;}
.x76_c00328{left:334.350000px;}
.x6b_c00328{left:335.700000px;}
.x4e_c00328{left:337.650000px;}
.x52_c00328{left:338.850000px;}
.x20_c00328{left:340.050000px;}
.x36_c00328{left:342.000000px;}
.x15_c00328{left:344.100000px;}
.x99_c00328{left:346.350000px;}
.x92_c00328{left:347.700000px;}
.x97_c00328{left:349.200000px;}
.x27_c00328{left:350.250000px;}
.x75_c00328{left:351.600000px;}
.x2d_c00328{left:352.800000px;}
.x8b_c00328{left:353.850000px;}
.x9a_c00328{left:355.350000px;}
.x5e_c00328{left:358.350000px;}
.x4c_c00328{left:360.000000px;}
.x1a_c00328{left:362.400000px;}
.x9f_c00328{left:363.900000px;}
.x21_c00328{left:364.950000px;}
.x42_c00328{left:366.150000px;}
.x4f_c00328{left:367.950000px;}
.x67_c00328{left:369.150000px;}
.x28_c00328{left:371.100000px;}
.x6d_c00328{left:373.050000px;}
.x93_c00328{left:381.150000px;}
.xa0_c00328{left:382.950000px;}
.x2e_c00328{left:387.300000px;}
.x8c_c00328{left:390.900000px;}
.x6e_c00328{left:393.150000px;}
.x22_c00328{left:394.800000px;}
.x50_c00328{left:396.750000px;}
.x3b_c00328{left:398.100000px;}
.x48_c00328{left:404.700000px;}
.x12c_c00328{left:429.450000px;}
.xbf_c00328{left:430.500000px;}
.xda_c00328{left:444.000000px;}
.xd0_c00328{left:446.400000px;}
.xa6_c00328{left:447.900000px;}
.xe7_c00328{left:448.950000px;}
.xdb_c00328{left:458.100000px;}
.x122_c00328{left:463.350000px;}
.x135_c00328{left:465.900000px;}
.x123_c00328{left:468.300000px;}
.x110_c00328{left:471.300000px;}
.x113_c00328{left:472.950000px;}
.x13b_c00328{left:475.950000px;}
.xca_c00328{left:477.000000px;}
.xc0_c00328{left:478.350000px;}
.x10b_c00328{left:479.700000px;}
.xeb_c00328{left:481.650000px;}
.xfb_c00328{left:482.850000px;}
.xf6_c00328{left:484.200000px;}
.x145_c00328{left:485.550000px;}
.xe3_c00328{left:487.350000px;}
.xd6_c00328{left:491.400000px;}
.xfc_c00328{left:492.600000px;}
.x13e_c00328{left:493.650000px;}
.xd1_c00328{left:495.000000px;}
.x114_c00328{left:496.350000px;}
.x11d_c00328{left:497.700000px;}
.xb4_c00328{left:500.400000px;}
.xdc_c00328{left:502.350000px;}
.x103_c00328{left:505.050000px;}
.x132_c00328{left:506.550000px;}
.xc5_c00328{left:508.350000px;}
.xe0_c00328{left:509.400000px;}
.x136_c00328{left:510.900000px;}
.xcb_c00328{left:512.250000px;}
.xfd_c00328{left:513.900000px;}
.x141_c00328{left:515.100000px;}
.xa7_c00328{left:517.800000px;}
.xad_c00328{left:519.750000px;}
.x131_c00328{left:520.800000px;}
.xec_c00328{left:522.300000px;}
.x128_c00328{left:525.000000px;}
.x142_c00328{left:526.950000px;}
.x12b_c00328{left:528.600000px;}
.x118_c00328{left:530.250000px;}
.x10c_c00328{left:531.900000px;}
.xba_c00328{left:533.250000px;}
.x13a_c00328{left:535.500000px;}
.xf7_c00328{left:538.500000px;}
.x125_c00328{left:539.550000px;}
.x111_c00328{left:541.650000px;}
.x12d_c00328{left:543.900000px;}
.xc1_c00328{left:546.450000px;}
.xed_c00328{left:547.800000px;}
.x107_c00328{left:549.450000px;}
.x13f_c00328{left:552.300000px;}
.xe8_c00328{left:553.350000px;}
.xa8_c00328{left:555.300000px;}
.xbb_c00328{left:556.650000px;}
.x11e_c00328{left:558.150000px;}
.x108_c00328{left:559.200000px;}
.xfe_c00328{left:561.000000px;}
.x104_c00328{left:564.750000px;}
.x138_c00328{left:566.250000px;}
.x143_c00328{left:567.600000px;}
.x115_c00328{left:569.400000px;}
.xd2_c00328{left:572.700000px;}
.xb5_c00328{left:573.900000px;}
.xcc_c00328{left:576.000000px;}
.x126_c00328{left:578.100000px;}
.xe1_c00328{left:579.900000px;}
.x119_c00328{left:581.250000px;}
.xc6_c00328{left:582.900000px;}
.xf2_c00328{left:584.550000px;}
.xa9_c00328{left:585.900000px;}
.xd3_c00328{left:588.900000px;}
.xff_c00328{left:591.300000px;}
.xbc_c00328{left:593.700000px;}
.x127_c00328{left:595.350000px;}
.xf8_c00328{left:596.850000px;}
.xc2_c00328{left:597.900000px;}
.xe4_c00328{left:600.450000px;}
.xae_c00328{left:601.500000px;}
.xb6_c00328{left:603.450000px;}
.x137_c00328{left:604.500000px;}
.x105_c00328{left:606.450000px;}
.x10d_c00328{left:607.500000px;}
.x124_c00328{left:608.700000px;}
.x10e_c00328{left:609.900000px;}
.x12e_c00328{left:611.550000px;}
.xd7_c00328{left:612.750000px;}
.x144_c00328{left:613.950000px;}
.x129_c00328{left:615.450000px;}
.xcd_c00328{left:617.100000px;}
.x11a_c00328{left:619.050000px;}
.xbd_c00328{left:621.450000px;}
.x146_c00328{left:624.300000px;}
.x100_c00328{left:625.500000px;}
.xc7_c00328{left:628.650000px;}
.xe5_c00328{left:631.800000px;}
.x12f_c00328{left:634.650000px;}
.xee_c00328{left:636.000000px;}
.xaa_c00328{left:637.800000px;}
.x116_c00328{left:639.600000px;}
.xaf_c00328{left:641.850000px;}
.xb7_c00328{left:644.100000px;}
.xd4_c00328{left:648.000000px;}
.xd8_c00328{left:650.550000px;}
.x11f_c00328{left:652.500000px;}
.x101_c00328{left:655.350000px;}
.x10f_c00328{left:656.700000px;}
.xf9_c00328{left:658.500000px;}
.xb0_c00328{left:659.550000px;}
.xbe_c00328{left:661.050000px;}
.xf3_c00328{left:662.700000px;}
.x147_c00328{left:666.450000px;}
.xd5_c00328{left:667.800000px;}
.x109_c00328{left:669.000000px;}
.x13c_c00328{left:670.050000px;}
.xab_c00328{left:672.000000px;}
.xce_c00328{left:675.750000px;}
.xfa_c00328{left:679.050000px;}
.xef_c00328{left:680.700000px;}
.x112_c00328{left:683.850000px;}
.x11b_c00328{left:684.900000px;}
.x148_c00328{left:685.950000px;}
.xc8_c00328{left:687.000000px;}
.xc3_c00328{left:689.400000px;}
.x133_c00328{left:690.450000px;}
.xb8_c00328{left:692.700000px;}
.xb1_c00328{left:693.750000px;}
.xde_c00328{left:695.100000px;}
.xdd_c00328{left:696.450000px;}
.x120_c00328{left:697.500000px;}
.xf0_c00328{left:701.250000px;}
.x140_c00328{left:702.900000px;}
.x130_c00328{left:705.150000px;}
.x106_c00328{left:707.250000px;}
.xe9_c00328{left:709.650000px;}
.x102_c00328{left:710.850000px;}
.xf4_c00328{left:713.550000px;}
.xe2_c00328{left:715.950000px;}
.xd9_c00328{left:717.900000px;}
.xb2_c00328{left:721.050000px;}
.xdf_c00328{left:724.200000px;}
.xc4_c00328{left:725.400000px;}
.x134_c00328{left:726.450000px;}
.x121_c00328{left:727.800000px;}
.xe6_c00328{left:729.000000px;}
.xcf_c00328{left:731.550000px;}
.xb9_c00328{left:734.100000px;}
.x11c_c00328{left:735.300000px;}
.x2_c00328{left:737.550000px;}
.x117_c00328{left:739.050000px;}
.x10a_c00328{left:741.000000px;}
.xea_c00328{left:742.350000px;}
.xb3_c00328{left:743.400000px;}
.x12a_c00328{left:745.050000px;}
.xf1_c00328{left:746.550000px;}
.x139_c00328{left:749.550000px;}
.x149_c00328{left:750.750000px;}
.xac_c00328{left:751.950000px;}
.xc9_c00328{left:753.600000px;}
.xf5_c00328{left:756.750000px;}
.x13d_c00328{left:761.100000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ws7_c00328{word-spacing:-14.707904pt;}
.ws9_c00328{word-spacing:-7.407407pt;}
.ws4_c00328{word-spacing:-6.590234pt;}
.ws1_c00328{word-spacing:-5.131474pt;}
.ws0_c00328{word-spacing:-2.813906pt;}
.ws8_c00328{word-spacing:-2.716049pt;}
.wsb_c00328{word-spacing:-1.658071pt;}
.wsf_c00328{word-spacing:0.000000pt;}
.wsc_c00328{word-spacing:1.176021pt;}
.ws2_c00328{word-spacing:2.777778pt;}
.ws6_c00328{word-spacing:9.405710pt;}
.wsd_c00328{word-spacing:13.813814pt;}
.ws5_c00328{word-spacing:15.873016pt;}
.ws3_c00328{word-spacing:21.197852pt;}
.wse_c00328{word-spacing:52.222222pt;}
.wsa_c00328{word-spacing:59.851852pt;}
.fs6_c00328{font-size:26.666667pt;}
.fs5_c00328{font-size:37.333333pt;}
.fs4_c00328{font-size:48.000000pt;}
.fs2_c00328{font-size:53.333333pt;}
.fs3_c00328{font-size:58.666667pt;}
.fs1_c00328{font-size:64.000000pt;}
.fs7_c00328{font-size:69.333333pt;}
.fs0_c00328{font-size:101.333333pt;}
.y0_c00328{bottom:0.000000pt;}
.y37_c00328{bottom:165.866667pt;}
.y69_c00328{bottom:166.400000pt;}
.y36_c00328{bottom:178.666667pt;}
.y68_c00328{bottom:179.200000pt;}
.y35_c00328{bottom:191.466667pt;}
.y67_c00328{bottom:192.000000pt;}
.y34_c00328{bottom:204.533333pt;}
.y66_c00328{bottom:205.066667pt;}
.y33_c00328{bottom:217.600000pt;}
.y65_c00328{bottom:227.200000pt;}
.y32_c00328{bottom:230.400000pt;}
.y31_c00328{bottom:243.200000pt;}
.y30_c00328{bottom:256.000000pt;}
.y64_c00328{bottom:259.200000pt;}
.y2f_c00328{bottom:268.800000pt;}
.y63_c00328{bottom:274.533333pt;}
.y2e_c00328{bottom:281.600000pt;}
.y2d_c00328{bottom:293.200000pt;}
.y62_c00328{bottom:298.400000pt;}
.y2c_c00328{bottom:306.266667pt;}
.y61_c00328{bottom:313.466667pt;}
.y2b_c00328{bottom:318.800000pt;}
.y60_c00328{bottom:329.200000pt;}
.y2a_c00328{bottom:331.600000pt;}
.y29_c00328{bottom:344.666667pt;}
.y5f_c00328{bottom:344.933333pt;}
.y28_c00328{bottom:356.800000pt;}
.y5e_c00328{bottom:360.666667pt;}
.y5d_c00328{bottom:380.533333pt;}
.y27_c00328{bottom:394.800000pt;}
.y5c_c00328{bottom:395.866667pt;}
.y26_c00328{bottom:414.000000pt;}
.y5b_c00328{bottom:423.066667pt;}
.y25_c00328{bottom:437.066667pt;}
.y5a_c00328{bottom:442.533333pt;}
.y24_c00328{bottom:453.733333pt;}
.y59_c00328{bottom:462.400000pt;}
.y23_c00328{bottom:469.733333pt;}
.y58_c00328{bottom:478.400000pt;}
.y57_c00328{bottom:494.133333pt;}
.y22_c00328{bottom:502.133333pt;}
.y21_c00328{bottom:509.333333pt;}
.y56_c00328{bottom:510.133333pt;}
.y20_c00328{bottom:525.333333pt;}
.y55_c00328{bottom:525.466667pt;}
.y1f_c00328{bottom:541.066667pt;}
.y54_c00328{bottom:544.666667pt;}
.y1e_c00328{bottom:556.800000pt;}
.y53_c00328{bottom:560.666667pt;}
.y1d_c00328{bottom:576.000000pt;}
.y52_c00328{bottom:576.400000pt;}
.y1c_c00328{bottom:592.266667pt;}
.y51_c00328{bottom:592.400000pt;}
.y50_c00328{bottom:608.133333pt;}
.y1b_c00328{bottom:608.266667pt;}
.y1a_c00328{bottom:624.000000pt;}
.y4f_c00328{bottom:624.133333pt;}
.y4e_c00328{bottom:639.466667pt;}
.y19_c00328{bottom:640.000000pt;}
.y18_c00328{bottom:655.333333pt;}
.y4d_c00328{bottom:655.466667pt;}
.y17_c00328{bottom:671.333333pt;}
.y4c_c00328{bottom:671.733333pt;}
.y16_c00328{bottom:687.066667pt;}
.y4b_c00328{bottom:703.066667pt;}
.y15_c00328{bottom:704.266667pt;}
.y4a_c00328{bottom:718.800000pt;}
.y14_c00328{bottom:718.933333pt;}
.y13_c00328{bottom:731.466667pt;}
.y49_c00328{bottom:734.800000pt;}
.y12_c00328{bottom:744.000000pt;}
.y48_c00328{bottom:750.533333pt;}
.y11_c00328{bottom:754.533333pt;}
.y47_c00328{bottom:766.266667pt;}
.y10_c00328{bottom:770.266667pt;}
.y46_c00328{bottom:782.000000pt;}
.yf_c00328{bottom:785.200000pt;}
.y45_c00328{bottom:797.733333pt;}
.ye_c00328{bottom:802.133333pt;}
.yd_c00328{bottom:817.866667pt;}
.y43_c00328{bottom:819.733333pt;}
.y42_c00328{bottom:832.266667pt;}
.yc_c00328{bottom:833.600000pt;}
.y44_c00328{bottom:845.066667pt;}
.y41_c00328{bottom:845.333333pt;}
.yb_c00328{bottom:849.333333pt;}
.y40_c00328{bottom:857.866667pt;}
.ya_c00328{bottom:867.866667pt;}
.y3f_c00328{bottom:876.000000pt;}
.y9_c00328{bottom:884.533333pt;}
.y3e_c00328{bottom:891.733333pt;}
.y8_c00328{bottom:900.266667pt;}
.y3d_c00328{bottom:907.733333pt;}
.y7_c00328{bottom:916.000000pt;}
.y3c_c00328{bottom:923.466667pt;}
.y6_c00328{bottom:934.933333pt;}
.y3b_c00328{bottom:942.933333pt;}
.y5_c00328{bottom:947.733333pt;}
.y3a_c00328{bottom:958.933333pt;}
.y4_c00328{bottom:963.466667pt;}
.y39_c00328{bottom:974.666667pt;}
.y38_c00328{bottom:990.400000pt;}
.y3_c00328{bottom:990.666667pt;}
.y2_c00328{bottom:1012.133333pt;}
.y1_c00328{bottom:1014.400000pt;}
.h7_c00328{height:26.666667pt;}
.h6_c00328{height:37.333333pt;}
.h5_c00328{height:48.000000pt;}
.h3_c00328{height:53.333333pt;}
.h4_c00328{height:58.666667pt;}
.h2_c00328{height:64.000000pt;}
.h8_c00328{height:69.333333pt;}
.h1_c00328{height:101.333333pt;}
.h0_c00328{height:1128.000000pt;}
.w1_c00328{width:854.666667pt;}
.w0_c00328{width:854.720052pt;}
.x0_c00328{left:0.000000pt;}
.x94_c00328{left:58.266667pt;}
.x80_c00328{left:60.133333pt;}
.x79_c00328{left:62.133333pt;}
.x32_c00328{left:63.733333pt;}
.x8_c00328{left:64.933333pt;}
.x9b_c00328{left:69.466667pt;}
.xa3_c00328{left:75.466667pt;}
.x4d_c00328{left:77.066667pt;}
.x43_c00328{left:78.133333pt;}
.x6f_c00328{left:79.333333pt;}
.x16_c00328{left:80.266667pt;}
.x62_c00328{left:81.200000pt;}
.x89_c00328{left:88.666667pt;}
.x51_c00328{left:90.000000pt;}
.x53_c00328{left:90.933333pt;}
.x9d_c00328{left:92.533333pt;}
.x9c_c00328{left:93.733333pt;}
.xf_c00328{left:96.666667pt;}
.x8f_c00328{left:99.600000pt;}
.x29_c00328{left:100.666667pt;}
.x9_c00328{left:101.733333pt;}
.x7f_c00328{left:103.466667pt;}
.x33_c00328{left:105.066667pt;}
.x86_c00328{left:106.400000pt;}
.x57_c00328{left:109.066667pt;}
.x90_c00328{left:110.266667pt;}
.x95_c00328{left:112.400000pt;}
.x87_c00328{left:114.133333pt;}
.x3_c00328{left:115.200000pt;}
.x2f_c00328{left:116.133333pt;}
.x3c_c00328{left:117.733333pt;}
.x7a_c00328{left:119.466667pt;}
.x8d_c00328{left:121.466667pt;}
.x23_c00328{left:124.400000pt;}
.x68_c00328{left:125.866667pt;}
.x5d_c00328{left:127.466667pt;}
.x82_c00328{left:128.800000pt;}
.x1b_c00328{left:129.733333pt;}
.x7b_c00328{left:130.800000pt;}
.xa_c00328{left:132.400000pt;}
.x70_c00328{left:133.733333pt;}
.x10_c00328{left:136.000000pt;}
.x4_c00328{left:137.333333pt;}
.x58_c00328{left:138.266667pt;}
.x17_c00328{left:139.466667pt;}
.x63_c00328{left:141.066667pt;}
.x77_c00328{left:142.266667pt;}
.xb_c00328{left:143.866667pt;}
.x3d_c00328{left:144.933333pt;}
.x37_c00328{left:145.866667pt;}
.x5f_c00328{left:147.066667pt;}
.xa4_c00328{left:148.400000pt;}
.x24_c00328{left:149.733333pt;}
.x8e_c00328{left:152.133333pt;}
.xa1_c00328{left:154.133333pt;}
.x30_c00328{left:155.733333pt;}
.x44_c00328{left:157.466667pt;}
.x88_c00328{left:159.333333pt;}
.x1c_c00328{left:160.400000pt;}
.x34_c00328{left:162.933333pt;}
.x38_c00328{left:164.400000pt;}
.x18_c00328{left:166.666667pt;}
.x59_c00328{left:170.933333pt;}
.x31_c00328{left:172.400000pt;}
.x98_c00328{left:173.733333pt;}
.x72_c00328{left:177.200000pt;}
.xc_c00328{left:178.400000pt;}
.x2a_c00328{left:181.333333pt;}
.x3e_c00328{left:182.666667pt;}
.x11_c00328{left:184.266667pt;}
.x45_c00328{left:185.600000pt;}
.x64_c00328{left:187.466667pt;}
.x5_c00328{left:188.800000pt;}
.x54_c00328{left:190.800000pt;}
.x84_c00328{left:192.000000pt;}
.x60_c00328{left:194.800000pt;}
.x65_c00328{left:195.733333pt;}
.x1d_c00328{left:198.533333pt;}
.x5a_c00328{left:202.000000pt;}
.x81_c00328{left:203.066667pt;}
.x46_c00328{left:205.733333pt;}
.x6_c00328{left:207.333333pt;}
.x7c_c00328{left:209.466667pt;}
.x12_c00328{left:210.800000pt;}
.x3f_c00328{left:212.800000pt;}
.x66_c00328{left:214.266667pt;}
.x2b_c00328{left:216.266667pt;}
.x25_c00328{left:221.466667pt;}
.x39_c00328{left:223.333333pt;}
.x8a_c00328{left:224.266667pt;}
.x83_c00328{left:225.200000pt;}
.x91_c00328{left:228.400000pt;}
.x40_c00328{left:229.466667pt;}
.x19_c00328{left:231.200000pt;}
.x55_c00328{left:233.733333pt;}
.x49_c00328{left:235.466667pt;}
.x78_c00328{left:236.666667pt;}
.x35_c00328{left:238.133333pt;}
.x47_c00328{left:239.066667pt;}
.x73_c00328{left:240.800000pt;}
.x69_c00328{left:242.000000pt;}
.x5b_c00328{left:244.933333pt;}
.x1e_c00328{left:246.266667pt;}
.x61_c00328{left:248.533333pt;}
.x56_c00328{left:250.000000pt;}
.x6c_c00328{left:251.600000pt;}
.xa5_c00328{left:254.266667pt;}
.xd_c00328{left:256.133333pt;}
.x7_c00328{left:258.533333pt;}
.x4a_c00328{left:260.133333pt;}
.x26_c00328{left:261.733333pt;}
.x13_c00328{left:263.333333pt;}
.x7d_c00328{left:265.466667pt;}
.xa2_c00328{left:267.733333pt;}
.x74_c00328{left:271.200000pt;}
.x85_c00328{left:272.266667pt;}
.x96_c00328{left:273.333333pt;}
.x4b_c00328{left:274.266667pt;}
.x6a_c00328{left:275.333333pt;}
.x1f_c00328{left:276.933333pt;}
.x9e_c00328{left:281.200000pt;}
.x1_c00328{left:282.533333pt;}
.x71_c00328{left:284.133333pt;}
.x14_c00328{left:285.066667pt;}
.xe_c00328{left:286.800000pt;}
.x3a_c00328{left:288.933333pt;}
.x41_c00328{left:290.000000pt;}
.x2c_c00328{left:292.133333pt;}
.x7e_c00328{left:293.333333pt;}
.x5c_c00328{left:296.133333pt;}
.x76_c00328{left:297.200000pt;}
.x6b_c00328{left:298.400000pt;}
.x4e_c00328{left:300.133333pt;}
.x52_c00328{left:301.200000pt;}
.x20_c00328{left:302.266667pt;}
.x36_c00328{left:304.000000pt;}
.x15_c00328{left:305.866667pt;}
.x99_c00328{left:307.866667pt;}
.x92_c00328{left:309.066667pt;}
.x97_c00328{left:310.400000pt;}
.x27_c00328{left:311.333333pt;}
.x75_c00328{left:312.533333pt;}
.x2d_c00328{left:313.600000pt;}
.x8b_c00328{left:314.533333pt;}
.x9a_c00328{left:315.866667pt;}
.x5e_c00328{left:318.533333pt;}
.x4c_c00328{left:320.000000pt;}
.x1a_c00328{left:322.133333pt;}
.x9f_c00328{left:323.466667pt;}
.x21_c00328{left:324.400000pt;}
.x42_c00328{left:325.466667pt;}
.x4f_c00328{left:327.066667pt;}
.x67_c00328{left:328.133333pt;}
.x28_c00328{left:329.866667pt;}
.x6d_c00328{left:331.600000pt;}
.x93_c00328{left:338.800000pt;}
.xa0_c00328{left:340.400000pt;}
.x2e_c00328{left:344.266667pt;}
.x8c_c00328{left:347.466667pt;}
.x6e_c00328{left:349.466667pt;}
.x22_c00328{left:350.933333pt;}
.x50_c00328{left:352.666667pt;}
.x3b_c00328{left:353.866667pt;}
.x48_c00328{left:359.733333pt;}
.x12c_c00328{left:381.733333pt;}
.xbf_c00328{left:382.666667pt;}
.xda_c00328{left:394.666667pt;}
.xd0_c00328{left:396.800000pt;}
.xa6_c00328{left:398.133333pt;}
.xe7_c00328{left:399.066667pt;}
.xdb_c00328{left:407.200000pt;}
.x122_c00328{left:411.866667pt;}
.x135_c00328{left:414.133333pt;}
.x123_c00328{left:416.266667pt;}
.x110_c00328{left:418.933333pt;}
.x113_c00328{left:420.400000pt;}
.x13b_c00328{left:423.066667pt;}
.xca_c00328{left:424.000000pt;}
.xc0_c00328{left:425.200000pt;}
.x10b_c00328{left:426.400000pt;}
.xeb_c00328{left:428.133333pt;}
.xfb_c00328{left:429.200000pt;}
.xf6_c00328{left:430.400000pt;}
.x145_c00328{left:431.600000pt;}
.xe3_c00328{left:433.200000pt;}
.xd6_c00328{left:436.800000pt;}
.xfc_c00328{left:437.866667pt;}
.x13e_c00328{left:438.800000pt;}
.xd1_c00328{left:440.000000pt;}
.x114_c00328{left:441.200000pt;}
.x11d_c00328{left:442.400000pt;}
.xb4_c00328{left:444.800000pt;}
.xdc_c00328{left:446.533333pt;}
.x103_c00328{left:448.933333pt;}
.x132_c00328{left:450.266667pt;}
.xc5_c00328{left:451.866667pt;}
.xe0_c00328{left:452.800000pt;}
.x136_c00328{left:454.133333pt;}
.xcb_c00328{left:455.333333pt;}
.xfd_c00328{left:456.800000pt;}
.x141_c00328{left:457.866667pt;}
.xa7_c00328{left:460.266667pt;}
.xad_c00328{left:462.000000pt;}
.x131_c00328{left:462.933333pt;}
.xec_c00328{left:464.266667pt;}
.x128_c00328{left:466.666667pt;}
.x142_c00328{left:468.400000pt;}
.x12b_c00328{left:469.866667pt;}
.x118_c00328{left:471.333333pt;}
.x10c_c00328{left:472.800000pt;}
.xba_c00328{left:474.000000pt;}
.x13a_c00328{left:476.000000pt;}
.xf7_c00328{left:478.666667pt;}
.x125_c00328{left:479.600000pt;}
.x111_c00328{left:481.466667pt;}
.x12d_c00328{left:483.466667pt;}
.xc1_c00328{left:485.733333pt;}
.xed_c00328{left:486.933333pt;}
.x107_c00328{left:488.400000pt;}
.x13f_c00328{left:490.933333pt;}
.xe8_c00328{left:491.866667pt;}
.xa8_c00328{left:493.600000pt;}
.xbb_c00328{left:494.800000pt;}
.x11e_c00328{left:496.133333pt;}
.x108_c00328{left:497.066667pt;}
.xfe_c00328{left:498.666667pt;}
.x104_c00328{left:502.000000pt;}
.x138_c00328{left:503.333333pt;}
.x143_c00328{left:504.533333pt;}
.x115_c00328{left:506.133333pt;}
.xd2_c00328{left:509.066667pt;}
.xb5_c00328{left:510.133333pt;}
.xcc_c00328{left:512.000000pt;}
.x126_c00328{left:513.866667pt;}
.xe1_c00328{left:515.466667pt;}
.x119_c00328{left:516.666667pt;}
.xc6_c00328{left:518.133333pt;}
.xf2_c00328{left:519.600000pt;}
.xa9_c00328{left:520.800000pt;}
.xd3_c00328{left:523.466667pt;}
.xff_c00328{left:525.600000pt;}
.xbc_c00328{left:527.733333pt;}
.x127_c00328{left:529.200000pt;}
.xf8_c00328{left:530.533333pt;}
.xc2_c00328{left:531.466667pt;}
.xe4_c00328{left:533.733333pt;}
.xae_c00328{left:534.666667pt;}
.xb6_c00328{left:536.400000pt;}
.x137_c00328{left:537.333333pt;}
.x105_c00328{left:539.066667pt;}
.x10d_c00328{left:540.000000pt;}
.x124_c00328{left:541.066667pt;}
.x10e_c00328{left:542.133333pt;}
.x12e_c00328{left:543.600000pt;}
.xd7_c00328{left:544.666667pt;}
.x144_c00328{left:545.733333pt;}
.x129_c00328{left:547.066667pt;}
.xcd_c00328{left:548.533333pt;}
.x11a_c00328{left:550.266667pt;}
.xbd_c00328{left:552.400000pt;}
.x146_c00328{left:554.933333pt;}
.x100_c00328{left:556.000000pt;}
.xc7_c00328{left:558.800000pt;}
.xe5_c00328{left:561.600000pt;}
.x12f_c00328{left:564.133333pt;}
.xee_c00328{left:565.333333pt;}
.xaa_c00328{left:566.933333pt;}
.x116_c00328{left:568.533333pt;}
.xaf_c00328{left:570.533333pt;}
.xb7_c00328{left:572.533333pt;}
.xd4_c00328{left:576.000000pt;}
.xd8_c00328{left:578.266667pt;}
.x11f_c00328{left:580.000000pt;}
.x101_c00328{left:582.533333pt;}
.x10f_c00328{left:583.733333pt;}
.xf9_c00328{left:585.333333pt;}
.xb0_c00328{left:586.266667pt;}
.xbe_c00328{left:587.600000pt;}
.xf3_c00328{left:589.066667pt;}
.x147_c00328{left:592.400000pt;}
.xd5_c00328{left:593.600000pt;}
.x109_c00328{left:594.666667pt;}
.x13c_c00328{left:595.600000pt;}
.xab_c00328{left:597.333333pt;}
.xce_c00328{left:600.666667pt;}
.xfa_c00328{left:603.600000pt;}
.xef_c00328{left:605.066667pt;}
.x112_c00328{left:607.866667pt;}
.x11b_c00328{left:608.800000pt;}
.x148_c00328{left:609.733333pt;}
.xc8_c00328{left:610.666667pt;}
.xc3_c00328{left:612.800000pt;}
.x133_c00328{left:613.733333pt;}
.xb8_c00328{left:615.733333pt;}
.xb1_c00328{left:616.666667pt;}
.xde_c00328{left:617.866667pt;}
.xdd_c00328{left:619.066667pt;}
.x120_c00328{left:620.000000pt;}
.xf0_c00328{left:623.333333pt;}
.x140_c00328{left:624.800000pt;}
.x130_c00328{left:626.800000pt;}
.x106_c00328{left:628.666667pt;}
.xe9_c00328{left:630.800000pt;}
.x102_c00328{left:631.866667pt;}
.xf4_c00328{left:634.266667pt;}
.xe2_c00328{left:636.400000pt;}
.xd9_c00328{left:638.133333pt;}
.xb2_c00328{left:640.933333pt;}
.xdf_c00328{left:643.733333pt;}
.xc4_c00328{left:644.800000pt;}
.x134_c00328{left:645.733333pt;}
.x121_c00328{left:646.933333pt;}
.xe6_c00328{left:648.000000pt;}
.xcf_c00328{left:650.266667pt;}
.xb9_c00328{left:652.533333pt;}
.x11c_c00328{left:653.600000pt;}
.x2_c00328{left:655.600000pt;}
.x117_c00328{left:656.933333pt;}
.x10a_c00328{left:658.666667pt;}
.xea_c00328{left:659.866667pt;}
.xb3_c00328{left:660.800000pt;}
.x12a_c00328{left:662.266667pt;}
.xf1_c00328{left:663.600000pt;}
.x139_c00328{left:666.266667pt;}
.x149_c00328{left:667.333333pt;}
.xac_c00328{left:668.400000pt;}
.xc9_c00328{left:669.866667pt;}
.xf5_c00328{left:672.666667pt;}
.x13d_c00328{left:676.533333pt;}
}





/* 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_c00329 {
    display:none;
  }
  .loading-indicator_c00329.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00329 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_c00329 { 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_c00329" -> "#page-container .classname_c00329")
 */
.pf_c00329 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00329 { /* 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_c00329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00329 { /* 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_c00329 { /* 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_c00329 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00329 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00329 {overflow:visible;}
  }
}
.c_c00329 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00329 { /* 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_c00329:after { /* webkit #35443 */
  content: '';
}
.t_c00329:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00329 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 */
}
.__c00329 { /* 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_c00329 { /* info for Javascript */
  display:none;
}
.l_c00329 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00329 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00329 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00329: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_c00329 {
    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_c00329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00329.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_c00329 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00329;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.000000;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;}
.m33_c00329{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00329{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mff_c00329{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.me_c00329{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00329{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m92_c00329{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m87_c00329{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00329{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m113_c00329{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m46_c00329{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m109_c00329{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m83_c00329{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m43_c00329{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00329{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m73_c00329{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m27_c00329{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m76_c00329{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me7_c00329{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mda_c00329{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m86_c00329{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mce_c00329{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.me2_c00329{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00329{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md6_c00329{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m60_c00329{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00329{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00329{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00329{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m56_c00329{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m61_c00329{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me5_c00329{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m108_c00329{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00329{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00329{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m34_c00329{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m111_c00329{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00329{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.maa_c00329{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m0_c00329{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00329{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m11_c00329{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m94_c00329{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00329{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m18_c00329{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md_c00329{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00329{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mba_c00329{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00329{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mf_c00329{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00329{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00329{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00329{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00329{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00329{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m19_c00329{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m85_c00329{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m13_c00329{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m107_c00329{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb_c00329{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00329{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00329{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m7_c00329{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00329{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00329{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00329{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m37_c00329{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00329{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m53_c00329{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mac_c00329{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00329{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m63_c00329{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00329{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.me6_c00329{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m16_c00329{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me3_c00329{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma_c00329{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00329{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me1_c00329{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00329{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me0_c00329{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.md5_c00329{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00329{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m69_c00329{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00329{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mde_c00329{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00329{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m110_c00329{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00329{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m25_c00329{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00329{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00329{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00329{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.md2_c00329{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m52_c00329{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m36_c00329{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00329{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00329{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00329{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m40_c00329{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m30_c00329{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00329{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m58_c00329{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m17_c00329{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc_c00329{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00329{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00329{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00329{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m89_c00329{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m59_c00329{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00329{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m91_c00329{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m75_c00329{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00329{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00329{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00329{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m42_c00329{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m23_c00329{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m95_c00329{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m82_c00329{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m47_c00329{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m93_c00329{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00329{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m57_c00329{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.md4_c00329{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00329{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00329{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m50_c00329{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mef_c00329{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00329{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00329{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m98_c00329{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00329{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00329{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00329{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m78_c00329{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m66_c00329{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00329{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m45_c00329{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00329{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00329{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00329{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m51_c00329{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m68_c00329{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00329{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00329{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m44_c00329{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00329{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00329{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m39_c00329{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m55_c00329{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00329{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m31_c00329{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00329{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m20_c00329{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00329{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m54_c00329{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mca_c00329{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00329{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m103_c00329{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m28_c00329{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00329{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00329{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00329{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m64_c00329{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00329{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mad_c00329{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m79_c00329{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m22_c00329{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00329{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00329{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m29_c00329{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00329{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00329{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m90_c00329{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00329{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00329{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m14_c00329{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mab_c00329{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m102_c00329{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00329{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00329{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m15_c00329{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.me4_c00329{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m116_c00329{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m10_c00329{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00329{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m24_c00329{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m48_c00329{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00329{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m26_c00329{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00329{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00329{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9_c00329{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00329{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00329{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m32_c00329{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mae_c00329{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00329{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m38_c00329{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00329{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m49_c00329{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8_c00329{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m35_c00329{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m77_c00329{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md3_c00329{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00329{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m41_c00329{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00329{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m114_c00329{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00329{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00329{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00329{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00329{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00329{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m62_c00329{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00329{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m115_c00329{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m101_c00329{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md9_c00329{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md0_c00329{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);}
.mdc_c00329{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m72_c00329{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00329{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00329{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00329{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00329{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00329{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m112_c00329{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00329{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m65_c00329{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00329{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m21_c00329{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m100_c00329{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.maf_c00329{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m67_c00329{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00329{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m81_c00329{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mee_c00329{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m97_c00329{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00329{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00329{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00329{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.med_c00329{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m106_c00329{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00329{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00329{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.md7_c00329{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.md8_c00329{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00329{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m12_c00329{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m71_c00329{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m6_c00329{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m88_c00329{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.meb_c00329{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m117_c00329{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00329{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m96_c00329{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00329{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m84_c00329{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00329{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md1_c00329{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00329{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m74_c00329{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m99_c00329{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00329{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m105_c00329{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m70_c00329{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m104_c00329{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m4_c00329{transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);}
.mec_c00329{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.me9_c00329{transform:matrix(0.377750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377750,0.000000,0.000000,0.250000,0,0);}
.me8_c00329{transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);}
.mea_c00329{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3_c00329{transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);}
.m5_c00329{transform:matrix(0.447750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447750,0.000000,0.000000,0.250000,0,0);}
.m2_c00329{transform:matrix(0.452250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00329{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00329{transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00329{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.m118_c00329{transform:matrix(0.469500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469500,0.000000,0.000000,0.250000,0,0);}
.m80_c00329{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls1_c00329{letter-spacing:0.000000px;}
.ls0_c00329{letter-spacing:33.428571px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{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__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00329{word-spacing:-51.428571px;}
.ws0_c00329{word-spacing:-18.406321px;}
.ws9_c00329{word-spacing:-9.167598px;}
.ws4_c00329{word-spacing:-8.804584px;}
.ws2_c00329{word-spacing:-5.522293px;}
.wsc_c00329{word-spacing:0.000000px;}
.wsb_c00329{word-spacing:1.250000px;}
.ws3_c00329{word-spacing:2.878788px;}
.ws5_c00329{word-spacing:3.343788px;}
.wsa_c00329{word-spacing:5.454545px;}
.ws1_c00329{word-spacing:8.944444px;}
.ws7_c00329{word-spacing:22.142857px;}
.ws8_c00329{word-spacing:53.966261px;}
._1_c00329{margin-left:-33.428571px;}
._0_c00329{width:2.142857px;}
._2_c00329{width:55.714286px;}
._3_c00329{width:64.642857px;}
.fc0_c00329{color:transparent;}
.fs2_c00329{font-size:24.000000px;}
.fs6_c00329{font-size:30.000000px;}
.fs7_c00329{font-size:36.000000px;}
.fs5_c00329{font-size:54.000000px;}
.fs4_c00329{font-size:60.000000px;}
.fs3_c00329{font-size:66.000000px;}
.fs0_c00329{font-size:72.000000px;}
.fs1_c00329{font-size:78.000000px;}
.y0_c00329{bottom:0.000000px;}
.y69_c00329{bottom:189.750000px;}
.y37_c00329{bottom:195.150000px;}
.y68_c00329{bottom:195.450000px;}
.y67_c00329{bottom:209.850000px;}
.y36_c00329{bottom:213.300000px;}
.y66_c00329{bottom:223.200000px;}
.y35_c00329{bottom:230.550000px;}
.y65_c00329{bottom:237.600000px;}
.y34_c00329{bottom:248.250000px;}
.y64_c00329{bottom:251.700000px;}
.y6a_c00329{bottom:252.300000px;}
.y33_c00329{bottom:265.950000px;}
.y63_c00329{bottom:267.900000px;}
.y32_c00329{bottom:283.650000px;}
.y62_c00329{bottom:286.950000px;}
.y31_c00329{bottom:300.900000px;}
.y61_c00329{bottom:304.950000px;}
.y30_c00329{bottom:318.900000px;}
.y60_c00329{bottom:322.950000px;}
.y2f_c00329{bottom:336.900000px;}
.y5f_c00329{bottom:344.100000px;}
.y2e_c00329{bottom:354.900000px;}
.y5e_c00329{bottom:362.850000px;}
.y2d_c00329{bottom:372.600000px;}
.y5d_c00329{bottom:380.850000px;}
.y2c_c00329{bottom:390.600000px;}
.y5c_c00329{bottom:398.850000px;}
.y2a_c00329{bottom:416.100000px;}
.y5b_c00329{bottom:416.550000px;}
.y29_c00329{bottom:435.900000px;}
.y5a_c00329{bottom:439.200000px;}
.y28_c00329{bottom:441.750000px;}
.y2b_c00329{bottom:442.500000px;}
.y27_c00329{bottom:460.500000px;}
.y59_c00329{bottom:469.500000px;}
.y58_c00329{bottom:469.800000px;}
.y26_c00329{bottom:476.550000px;}
.y57_c00329{bottom:488.100000px;}
.y25_c00329{bottom:497.100000px;}
.y56_c00329{bottom:506.100000px;}
.y24_c00329{bottom:515.100000px;}
.y55_c00329{bottom:532.650000px;}
.y23_c00329{bottom:532.800000px;}
.y54_c00329{bottom:550.650000px;}
.y22_c00329{bottom:551.850000px;}
.y53_c00329{bottom:568.650000px;}
.y21_c00329{bottom:572.700000px;}
.y52_c00329{bottom:586.650000px;}
.y20_c00329{bottom:590.700000px;}
.y51_c00329{bottom:604.650000px;}
.y1f_c00329{bottom:608.400000px;}
.y50_c00329{bottom:622.350000px;}
.y1e_c00329{bottom:626.100000px;}
.y4f_c00329{bottom:640.350000px;}
.y1d_c00329{bottom:647.550000px;}
.y4e_c00329{bottom:658.050000px;}
.y1c_c00329{bottom:670.650000px;}
.y4d_c00329{bottom:676.800000px;}
.y1b_c00329{bottom:692.250000px;}
.y4c_c00329{bottom:694.050000px;}
.y1a_c00329{bottom:709.950000px;}
.y4b_c00329{bottom:711.750000px;}
.y19_c00329{bottom:727.950000px;}
.y4a_c00329{bottom:729.750000px;}
.y49_c00329{bottom:747.750000px;}
.y18_c00329{bottom:751.650000px;}
.y48_c00329{bottom:765.750000px;}
.y3_c00329{bottom:766.500000px;}
.y17_c00329{bottom:771.900000px;}
.y47_c00329{bottom:783.750000px;}
.y16_c00329{bottom:790.950000px;}
.y46_c00329{bottom:805.350000px;}
.y15_c00329{bottom:811.500000px;}
.y45_c00329{bottom:818.700000px;}
.y14_c00329{bottom:829.050000px;}
.y44_c00329{bottom:832.950000px;}
.y13_c00329{bottom:847.050000px;}
.y43_c00329{bottom:849.900000px;}
.y12_c00329{bottom:864.750000px;}
.y42_c00329{bottom:868.650000px;}
.y11_c00329{bottom:882.750000px;}
.y41_c00329{bottom:886.350000px;}
.y10_c00329{bottom:904.350000px;}
.yf_c00329{bottom:922.350000px;}
.ye_c00329{bottom:939.600000px;}
.y40_c00329{bottom:940.650000px;}
.yd_c00329{bottom:957.600000px;}
.y3f_c00329{bottom:961.500000px;}
.yc_c00329{bottom:974.850000px;}
.y3e_c00329{bottom:979.500000px;}
.yb_c00329{bottom:992.550000px;}
.y3d_c00329{bottom:997.500000px;}
.ya_c00329{bottom:1010.550000px;}
.y3c_c00329{bottom:1015.500000px;}
.y9_c00329{bottom:1028.250000px;}
.y3b_c00329{bottom:1033.500000px;}
.y8_c00329{bottom:1045.950000px;}
.y3a_c00329{bottom:1054.800000px;}
.y7_c00329{bottom:1063.650000px;}
.y39_c00329{bottom:1079.700000px;}
.y6_c00329{bottom:1081.350000px;}
.y5_c00329{bottom:1099.050000px;}
.y4_c00329{bottom:1116.750000px;}
.y38_c00329{bottom:1118.550000px;}
.y1_c00329{bottom:1139.700000px;}
.y2_c00329{bottom:1144.050000px;}
.h3_c00329{height:24.000000px;}
.h7_c00329{height:30.000000px;}
.h8_c00329{height:36.000000px;}
.h6_c00329{height:54.000000px;}
.h5_c00329{height:60.000000px;}
.h4_c00329{height:66.000000px;}
.h1_c00329{height:72.000000px;}
.h2_c00329{height:78.000000px;}
.h0_c00329{height:1269.000000px;}
.w1_c00329{width:961.500000px;}
.w0_c00329{width:961.560058px;}
.x0_c00329{left:0.000000px;}
.x8_c00329{left:177.150000px;}
.x1_c00329{left:195.900000px;}
.x9_c00329{left:196.950000px;}
.xf_c00329{left:198.450000px;}
.x64_c00329{left:201.600000px;}
.x77_c00329{left:203.700000px;}
.x89_c00329{left:205.200000px;}
.x91_c00329{left:206.700000px;}
.x3b_c00329{left:207.900000px;}
.xae_c00329{left:213.150000px;}
.x10_c00329{left:215.400000px;}
.x1f_c00329{left:216.600000px;}
.x53_c00329{left:218.250000px;}
.x63_c00329{left:219.300000px;}
.x6a_c00329{left:220.350000px;}
.x70_c00329{left:221.550000px;}
.x7a_c00329{left:223.200000px;}
.x81_c00329{left:224.400000px;}
.x90_c00329{left:225.450000px;}
.x98_c00329{left:226.650000px;}
.x9c_c00329{left:228.450000px;}
.xa7_c00329{left:229.950000px;}
.xaf_c00329{left:231.450000px;}
.x54_c00329{left:234.750000px;}
.x93_c00329{left:235.950000px;}
.x71_c00329{left:237.000000px;}
.x5e_c00329{left:239.100000px;}
.x79_c00329{left:240.450000px;}
.x76_c00329{left:243.000000px;}
.x2f_c00329{left:245.850000px;}
.x17_c00329{left:247.200000px;}
.x58_c00329{left:248.700000px;}
.x3c_c00329{left:250.350000px;}
.x86_c00329{left:252.150000px;}
.x11_c00329{left:254.700000px;}
.x99_c00329{left:256.500000px;}
.x9f_c00329{left:257.850000px;}
.x65_c00329{left:260.700000px;}
.x20_c00329{left:261.900000px;}
.x4a_c00329{left:264.300000px;}
.x36_c00329{left:266.400000px;}
.x8b_c00329{left:268.050000px;}
.xa2_c00329{left:270.000000px;}
.x6b_c00329{left:271.500000px;}
.x3d_c00329{left:273.000000px;}
.x12_c00329{left:275.250000px;}
.x66_c00329{left:277.200000px;}
.x2b_c00329{left:278.850000px;}
.xa_c00329{left:282.300000px;}
.x55_c00329{left:285.450000px;}
.x7b_c00329{left:288.750000px;}
.x95_c00329{left:291.000000px;}
.x25_c00329{left:292.650000px;}
.xb0_c00329{left:294.150000px;}
.x18_c00329{left:295.500000px;}
.x13_c00329{left:297.600000px;}
.x6c_c00329{left:300.600000px;}
.xa3_c00329{left:303.150000px;}
.x59_c00329{left:307.350000px;}
.x30_c00329{left:309.150000px;}
.x19_c00329{left:310.200000px;}
.x8e_c00329{left:311.400000px;}
.x43_c00329{left:312.750000px;}
.x50_c00329{left:314.250000px;}
.x4b_c00329{left:316.500000px;}
.xa0_c00329{left:317.550000px;}
.x87_c00329{left:320.550000px;}
.xac_c00329{left:322.650000px;}
.x67_c00329{left:323.700000px;}
.x21_c00329{left:325.650000px;}
.x82_c00329{left:327.450000px;}
.x9b_c00329{left:328.650000px;}
.x3e_c00329{left:329.850000px;}
.x96_c00329{left:336.000000px;}
.x88_c00329{left:338.250000px;}
.xa8_c00329{left:339.450000px;}
.xb_c00329{left:340.650000px;}
.x26_c00329{left:344.100000px;}
.x4c_c00329{left:345.300000px;}
.x1a_c00329{left:347.250000px;}
.x44_c00329{left:349.950000px;}
.x31_c00329{left:352.650000px;}
.x8c_c00329{left:354.450000px;}
.xa4_c00329{left:357.150000px;}
.xa6_c00329{left:358.650000px;}
.x9a_c00329{left:360.150000px;}
.x37_c00329{left:361.200000px;}
.x9d_c00329{left:362.250000px;}
.x27_c00329{left:364.650000px;}
.x45_c00329{left:365.850000px;}
.x14_c00329{left:367.800000px;}
.x83_c00329{left:368.850000px;}
.x51_c00329{left:371.550000px;}
.x97_c00329{left:373.500000px;}
.xa9_c00329{left:376.950000px;}
.x22_c00329{left:378.600000px;}
.x5f_c00329{left:381.450000px;}
.x32_c00329{left:382.950000px;}
.x3f_c00329{left:384.900000px;}
.x6d_c00329{left:387.000000px;}
.x5b_c00329{left:388.200000px;}
.x72_c00329{left:389.250000px;}
.x7c_c00329{left:393.150000px;}
.x46_c00329{left:394.950000px;}
.x15_c00329{left:398.100000px;}
.x28_c00329{left:399.150000px;}
.x68_c00329{left:400.350000px;}
.x2c_c00329{left:402.300000px;}
.x73_c00329{left:403.350000px;}
.x1b_c00329{left:405.600000px;}
.x8d_c00329{left:407.400000px;}
.x84_c00329{left:408.450000px;}
.xc_c00329{left:409.800000px;}
.x9e_c00329{left:413.400000px;}
.x5a_c00329{left:415.200000px;}
.x2d_c00329{left:416.700000px;}
.xb1_c00329{left:419.100000px;}
.x33_c00329{left:420.450000px;}
.x7d_c00329{left:423.000000px;}
.xad_c00329{left:424.500000px;}
.x23_c00329{left:426.150000px;}
.x47_c00329{left:429.900000px;}
.x74_c00329{left:431.850000px;}
.x6e_c00329{left:436.350000px;}
.x5c_c00329{left:437.550000px;}
.x34_c00329{left:438.750000px;}
.x2_c00329{left:439.950000px;}
.x52_c00329{left:441.450000px;}
.x1c_c00329{left:444.150000px;}
.x38_c00329{left:445.500000px;}
.x40_c00329{left:447.150000px;}
.xd_c00329{left:448.650000px;}
.xaa_c00329{left:449.700000px;}
.x75_c00329{left:450.900000px;}
.x60_c00329{left:453.150000px;}
.x69_c00329{left:454.650000px;}
.x78_c00329{left:456.150000px;}
.x4d_c00329{left:457.200000px;}
.x2e_c00329{left:458.850000px;}
.x56_c00329{left:460.050000px;}
.x61_c00329{left:461.400000px;}
.x29_c00329{left:462.450000px;}
.x6f_c00329{left:464.100000px;}
.x39_c00329{left:465.600000px;}
.x4e_c00329{left:467.250000px;}
.x41_c00329{left:469.050000px;}
.x94_c00329{left:470.250000px;}
.x16_c00329{left:472.200000px;}
.x4f_c00329{left:473.700000px;}
.x48_c00329{left:475.950000px;}
.x1d_c00329{left:478.650000px;}
.x3_c00329{left:481.650000px;}
.xa5_c00329{left:485.700000px;}
.x42_c00329{left:487.350000px;}
.xab_c00329{left:488.550000px;}
.x85_c00329{left:490.200000px;}
.x24_c00329{left:492.450000px;}
.x57_c00329{left:493.500000px;}
.x35_c00329{left:497.850000px;}
.x7e_c00329{left:498.900000px;}
.x92_c00329{left:500.250000px;}
.x5d_c00329{left:502.650000px;}
.x4_c00329{left:505.800000px;}
.x49_c00329{left:510.900000px;}
.x80_c00329{left:512.400000px;}
.x3a_c00329{left:514.200000px;}
.x8f_c00329{left:516.000000px;}
.x2a_c00329{left:518.250000px;}
.x7f_c00329{left:519.750000px;}
.x1e_c00329{left:520.800000px;}
.xe_c00329{left:526.350000px;}
.x5_c00329{left:528.900000px;}
.xa1_c00329{left:534.000000px;}
.x8a_c00329{left:536.700000px;}
.x62_c00329{left:544.200000px;}
.xbb_c00329{left:550.050000px;}
.xb2_c00329{left:552.600000px;}
.xc0_c00329{left:553.650000px;}
.xe4_c00329{left:555.900000px;}
.x105_c00329{left:557.700000px;}
.x131_c00329{left:562.350000px;}
.x136_c00329{left:563.400000px;}
.x141_c00329{left:565.500000px;}
.x6_c00329{left:568.500000px;}
.xc8_c00329{left:569.850000px;}
.xbc_c00329{left:570.900000px;}
.xd8_c00329{left:573.150000px;}
.xed_c00329{left:574.200000px;}
.x108_c00329{left:576.000000px;}
.x115_c00329{left:577.050000px;}
.x119_c00329{left:578.250000px;}
.x12e_c00329{left:579.450000px;}
.x139_c00329{left:582.000000px;}
.x145_c00329{left:583.200000px;}
.x101_c00329{left:585.750000px;}
.xbd_c00329{left:590.700000px;}
.x150_c00329{left:594.000000px;}
.xc1_c00329{left:595.800000px;}
.x10b_c00329{left:598.050000px;}
.xe3_c00329{left:600.900000px;}
.x123_c00329{left:603.150000px;}
.x137_c00329{left:604.500000px;}
.x140_c00329{left:606.900000px;}
.x142_c00329{left:607.950000px;}
.x128_c00329{left:610.050000px;}
.x7_c00329{left:611.400000px;}
.xb3_c00329{left:613.050000px;}
.xbe_c00329{left:615.900000px;}
.xee_c00329{left:617.100000px;}
.xb4_c00329{left:620.850000px;}
.x11f_c00329{left:623.100000px;}
.xd1_c00329{left:625.650000px;}
.xd9_c00329{left:627.450000px;}
.x14b_c00329{left:628.500000px;}
.x104_c00329{left:629.550000px;}
.xca_c00329{left:631.500000px;}
.xe9_c00329{left:633.450000px;}
.xd2_c00329{left:635.700000px;}
.xbf_c00329{left:637.200000px;}
.x13c_c00329{left:638.550000px;}
.xc2_c00329{left:640.050000px;}
.x156_c00329{left:643.050000px;}
.x114_c00329{left:644.250000px;}
.x12b_c00329{left:646.200000px;}
.x106_c00329{left:648.000000px;}
.x10f_c00329{left:649.350000px;}
.xb5_c00329{left:651.750000px;}
.x151_c00329{left:654.150000px;}
.x11b_c00329{left:658.650000px;}
.x149_c00329{left:664.350000px;}
.xd3_c00329{left:666.300000px;}
.xe5_c00329{left:669.900000px;}
.x120_c00329{left:672.750000px;}
.x13d_c00329{left:675.300000px;}
.xc3_c00329{left:677.850000px;}
.xda_c00329{left:681.750000px;}
.xcb_c00329{left:682.950000px;}
.x124_c00329{left:685.950000px;}
.xe0_c00329{left:691.200000px;}
.xf4_c00329{left:693.150000px;}
.x130_c00329{left:694.200000px;}
.x109_c00329{left:695.550000px;}
.x110_c00329{left:696.900000px;}
.xef_c00329{left:698.400000px;}
.x10c_c00329{left:701.400000px;}
.xb6_c00329{left:703.200000px;}
.x143_c00329{left:705.150000px;}
.x102_c00329{left:708.150000px;}
.xfc_c00329{left:709.650000px;}
.xcc_c00329{left:712.500000px;}
.x11c_c00329{left:714.750000px;}
.xc4_c00329{left:715.950000px;}
.xea_c00329{left:717.300000px;}
.x13e_c00329{left:720.000000px;}
.xf9_c00329{left:721.050000px;}
.x129_c00329{left:723.150000px;}
.xb7_c00329{left:724.500000px;}
.x133_c00329{left:726.450000px;}
.xdb_c00329{left:727.800000px;}
.xf5_c00329{left:729.150000px;}
.x144_c00329{left:731.100000px;}
.x12c_c00329{left:732.150000px;}
.x10a_c00329{left:735.150000px;}
.xe1_c00329{left:736.950000px;}
.x14c_c00329{left:738.600000px;}
.xd4_c00329{left:739.800000px;}
.x12f_c00329{left:741.450000px;}
.xfd_c00329{left:746.250000px;}
.x13a_c00329{left:747.300000px;}
.x14a_c00329{left:751.500000px;}
.x10d_c00329{left:752.550000px;}
.x125_c00329{left:755.850000px;}
.x146_c00329{left:757.500000px;}
.x116_c00329{left:758.850000px;}
.xe6_c00329{left:760.650000px;}
.xcd_c00329{left:762.150000px;}
.xf0_c00329{left:763.200000px;}
.xdc_c00329{left:764.850000px;}
.x118_c00329{left:766.500000px;}
.xc9_c00329{left:768.150000px;}
.x121_c00329{left:771.000000px;}
.xd5_c00329{left:772.500000px;}
.x11d_c00329{left:774.450000px;}
.x147_c00329{left:776.250000px;}
.xfa_c00329{left:777.600000px;}
.xc5_c00329{left:780.000000px;}
.xdd_c00329{left:781.350000px;}
.x153_c00329{left:782.400000px;}
.xf1_c00329{left:785.550000px;}
.xb8_c00329{left:787.500000px;}
.xeb_c00329{left:791.400000px;}
.xce_c00329{left:793.050000px;}
.x126_c00329{left:794.700000px;}
.x107_c00329{left:796.200000px;}
.x138_c00329{left:798.900000px;}
.x111_c00329{left:802.950000px;}
.xf6_c00329{left:804.450000px;}
.x13b_c00329{left:805.500000px;}
.xec_c00329{left:809.400000px;}
.xe7_c00329{left:812.550000px;}
.xcf_c00329{left:813.900000px;}
.xb9_c00329{left:815.250000px;}
.x134_c00329{left:818.250000px;}
.x148_c00329{left:821.250000px;}
.xfe_c00329{left:823.650000px;}
.x117_c00329{left:825.750000px;}
.x132_c00329{left:828.900000px;}
.xf2_c00329{left:830.550000px;}
.x12a_c00329{left:832.650000px;}
.x14e_c00329{left:833.700000px;}
.xe2_c00329{left:835.350000px;}
.xd0_c00329{left:837.300000px;}
.xc6_c00329{left:839.400000px;}
.xde_c00329{left:841.050000px;}
.x112_c00329{left:842.250000px;}
.x12d_c00329{left:843.300000px;}
.xf7_c00329{left:844.500000px;}
.xd6_c00329{left:847.050000px;}
.xba_c00329{left:849.150000px;}
.xf3_c00329{left:850.350000px;}
.x122_c00329{left:853.050000px;}
.xff_c00329{left:854.250000px;}
.x14d_c00329{left:855.900000px;}
.x11e_c00329{left:858.000000px;}
.x10e_c00329{left:860.250000px;}
.xe8_c00329{left:861.450000px;}
.x154_c00329{left:862.650000px;}
.xdf_c00329{left:864.150000px;}
.x152_c00329{left:865.500000px;}
.xd7_c00329{left:867.900000px;}
.x127_c00329{left:869.250000px;}
.xc7_c00329{left:872.550000px;}
.x13f_c00329{left:874.500000px;}
.xfb_c00329{left:880.650000px;}
.x100_c00329{left:882.750000px;}
.x103_c00329{left:884.550000px;}
.x113_c00329{left:885.750000px;}
.x11a_c00329{left:888.750000px;}
.xf8_c00329{left:890.250000px;}
.x155_c00329{left:892.950000px;}
.x14f_c00329{left:894.300000px;}
.x135_c00329{left:895.350000px;}
.x157_c00329{left:896.550000px;}
.x158_c00329{left:906.300000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls1_c00329{letter-spacing:0.000000pt;}
.ls0_c00329{letter-spacing:29.714286pt;}
.ws6_c00329{word-spacing:-45.714286pt;}
.ws0_c00329{word-spacing:-16.361174pt;}
.ws9_c00329{word-spacing:-8.148976pt;}
.ws4_c00329{word-spacing:-7.826297pt;}
.ws2_c00329{word-spacing:-4.908705pt;}
.wsc_c00329{word-spacing:0.000000pt;}
.wsb_c00329{word-spacing:1.111111pt;}
.ws3_c00329{word-spacing:2.558923pt;}
.ws5_c00329{word-spacing:2.972256pt;}
.wsa_c00329{word-spacing:4.848485pt;}
.ws1_c00329{word-spacing:7.950617pt;}
.ws7_c00329{word-spacing:19.682540pt;}
.ws8_c00329{word-spacing:47.970009pt;}
._1_c00329{margin-left:-29.714286pt;}
._0_c00329{width:1.904762pt;}
._2_c00329{width:49.523810pt;}
._3_c00329{width:57.460317pt;}
.fs2_c00329{font-size:21.333333pt;}
.fs6_c00329{font-size:26.666667pt;}
.fs7_c00329{font-size:32.000000pt;}
.fs5_c00329{font-size:48.000000pt;}
.fs4_c00329{font-size:53.333333pt;}
.fs3_c00329{font-size:58.666667pt;}
.fs0_c00329{font-size:64.000000pt;}
.fs1_c00329{font-size:69.333333pt;}
.y0_c00329{bottom:0.000000pt;}
.y69_c00329{bottom:168.666667pt;}
.y37_c00329{bottom:173.466667pt;}
.y68_c00329{bottom:173.733333pt;}
.y67_c00329{bottom:186.533333pt;}
.y36_c00329{bottom:189.600000pt;}
.y66_c00329{bottom:198.400000pt;}
.y35_c00329{bottom:204.933333pt;}
.y65_c00329{bottom:211.200000pt;}
.y34_c00329{bottom:220.666667pt;}
.y64_c00329{bottom:223.733333pt;}
.y6a_c00329{bottom:224.266667pt;}
.y33_c00329{bottom:236.400000pt;}
.y63_c00329{bottom:238.133333pt;}
.y32_c00329{bottom:252.133333pt;}
.y62_c00329{bottom:255.066667pt;}
.y31_c00329{bottom:267.466667pt;}
.y61_c00329{bottom:271.066667pt;}
.y30_c00329{bottom:283.466667pt;}
.y60_c00329{bottom:287.066667pt;}
.y2f_c00329{bottom:299.466667pt;}
.y5f_c00329{bottom:305.866667pt;}
.y2e_c00329{bottom:315.466667pt;}
.y5e_c00329{bottom:322.533333pt;}
.y2d_c00329{bottom:331.200000pt;}
.y5d_c00329{bottom:338.533333pt;}
.y2c_c00329{bottom:347.200000pt;}
.y5c_c00329{bottom:354.533333pt;}
.y2a_c00329{bottom:369.866667pt;}
.y5b_c00329{bottom:370.266667pt;}
.y29_c00329{bottom:387.466667pt;}
.y5a_c00329{bottom:390.400000pt;}
.y28_c00329{bottom:392.666667pt;}
.y2b_c00329{bottom:393.333333pt;}
.y27_c00329{bottom:409.333333pt;}
.y59_c00329{bottom:417.333333pt;}
.y58_c00329{bottom:417.600000pt;}
.y26_c00329{bottom:423.600000pt;}
.y57_c00329{bottom:433.866667pt;}
.y25_c00329{bottom:441.866667pt;}
.y56_c00329{bottom:449.866667pt;}
.y24_c00329{bottom:457.866667pt;}
.y55_c00329{bottom:473.466667pt;}
.y23_c00329{bottom:473.600000pt;}
.y54_c00329{bottom:489.466667pt;}
.y22_c00329{bottom:490.533333pt;}
.y53_c00329{bottom:505.466667pt;}
.y21_c00329{bottom:509.066667pt;}
.y52_c00329{bottom:521.466667pt;}
.y20_c00329{bottom:525.066667pt;}
.y51_c00329{bottom:537.466667pt;}
.y1f_c00329{bottom:540.800000pt;}
.y50_c00329{bottom:553.200000pt;}
.y1e_c00329{bottom:556.533333pt;}
.y4f_c00329{bottom:569.200000pt;}
.y1d_c00329{bottom:575.600000pt;}
.y4e_c00329{bottom:584.933333pt;}
.y1c_c00329{bottom:596.133333pt;}
.y4d_c00329{bottom:601.600000pt;}
.y1b_c00329{bottom:615.333333pt;}
.y4c_c00329{bottom:616.933333pt;}
.y1a_c00329{bottom:631.066667pt;}
.y4b_c00329{bottom:632.666667pt;}
.y19_c00329{bottom:647.066667pt;}
.y4a_c00329{bottom:648.666667pt;}
.y49_c00329{bottom:664.666667pt;}
.y18_c00329{bottom:668.133333pt;}
.y48_c00329{bottom:680.666667pt;}
.y3_c00329{bottom:681.333333pt;}
.y17_c00329{bottom:686.133333pt;}
.y47_c00329{bottom:696.666667pt;}
.y16_c00329{bottom:703.066667pt;}
.y46_c00329{bottom:715.866667pt;}
.y15_c00329{bottom:721.333333pt;}
.y45_c00329{bottom:727.733333pt;}
.y14_c00329{bottom:736.933333pt;}
.y44_c00329{bottom:740.400000pt;}
.y13_c00329{bottom:752.933333pt;}
.y43_c00329{bottom:755.466667pt;}
.y12_c00329{bottom:768.666667pt;}
.y42_c00329{bottom:772.133333pt;}
.y11_c00329{bottom:784.666667pt;}
.y41_c00329{bottom:787.866667pt;}
.y10_c00329{bottom:803.866667pt;}
.yf_c00329{bottom:819.866667pt;}
.ye_c00329{bottom:835.200000pt;}
.y40_c00329{bottom:836.133333pt;}
.yd_c00329{bottom:851.200000pt;}
.y3f_c00329{bottom:854.666667pt;}
.yc_c00329{bottom:866.533333pt;}
.y3e_c00329{bottom:870.666667pt;}
.yb_c00329{bottom:882.266667pt;}
.y3d_c00329{bottom:886.666667pt;}
.ya_c00329{bottom:898.266667pt;}
.y3c_c00329{bottom:902.666667pt;}
.y9_c00329{bottom:914.000000pt;}
.y3b_c00329{bottom:918.666667pt;}
.y8_c00329{bottom:929.733333pt;}
.y3a_c00329{bottom:937.600000pt;}
.y7_c00329{bottom:945.466667pt;}
.y39_c00329{bottom:959.733333pt;}
.y6_c00329{bottom:961.200000pt;}
.y5_c00329{bottom:976.933333pt;}
.y4_c00329{bottom:992.666667pt;}
.y38_c00329{bottom:994.266667pt;}
.y1_c00329{bottom:1013.066667pt;}
.y2_c00329{bottom:1016.933333pt;}
.h3_c00329{height:21.333333pt;}
.h7_c00329{height:26.666667pt;}
.h8_c00329{height:32.000000pt;}
.h6_c00329{height:48.000000pt;}
.h5_c00329{height:53.333333pt;}
.h4_c00329{height:58.666667pt;}
.h1_c00329{height:64.000000pt;}
.h2_c00329{height:69.333333pt;}
.h0_c00329{height:1128.000000pt;}
.w1_c00329{width:854.666667pt;}
.w0_c00329{width:854.720052pt;}
.x0_c00329{left:0.000000pt;}
.x8_c00329{left:157.466667pt;}
.x1_c00329{left:174.133333pt;}
.x9_c00329{left:175.066667pt;}
.xf_c00329{left:176.400000pt;}
.x64_c00329{left:179.200000pt;}
.x77_c00329{left:181.066667pt;}
.x89_c00329{left:182.400000pt;}
.x91_c00329{left:183.733333pt;}
.x3b_c00329{left:184.800000pt;}
.xae_c00329{left:189.466667pt;}
.x10_c00329{left:191.466667pt;}
.x1f_c00329{left:192.533333pt;}
.x53_c00329{left:194.000000pt;}
.x63_c00329{left:194.933333pt;}
.x6a_c00329{left:195.866667pt;}
.x70_c00329{left:196.933333pt;}
.x7a_c00329{left:198.400000pt;}
.x81_c00329{left:199.466667pt;}
.x90_c00329{left:200.400000pt;}
.x98_c00329{left:201.466667pt;}
.x9c_c00329{left:203.066667pt;}
.xa7_c00329{left:204.400000pt;}
.xaf_c00329{left:205.733333pt;}
.x54_c00329{left:208.666667pt;}
.x93_c00329{left:209.733333pt;}
.x71_c00329{left:210.666667pt;}
.x5e_c00329{left:212.533333pt;}
.x79_c00329{left:213.733333pt;}
.x76_c00329{left:216.000000pt;}
.x2f_c00329{left:218.533333pt;}
.x17_c00329{left:219.733333pt;}
.x58_c00329{left:221.066667pt;}
.x3c_c00329{left:222.533333pt;}
.x86_c00329{left:224.133333pt;}
.x11_c00329{left:226.400000pt;}
.x99_c00329{left:228.000000pt;}
.x9f_c00329{left:229.200000pt;}
.x65_c00329{left:231.733333pt;}
.x20_c00329{left:232.800000pt;}
.x4a_c00329{left:234.933333pt;}
.x36_c00329{left:236.800000pt;}
.x8b_c00329{left:238.266667pt;}
.xa2_c00329{left:240.000000pt;}
.x6b_c00329{left:241.333333pt;}
.x3d_c00329{left:242.666667pt;}
.x12_c00329{left:244.666667pt;}
.x66_c00329{left:246.400000pt;}
.x2b_c00329{left:247.866667pt;}
.xa_c00329{left:250.933333pt;}
.x55_c00329{left:253.733333pt;}
.x7b_c00329{left:256.666667pt;}
.x95_c00329{left:258.666667pt;}
.x25_c00329{left:260.133333pt;}
.xb0_c00329{left:261.466667pt;}
.x18_c00329{left:262.666667pt;}
.x13_c00329{left:264.533333pt;}
.x6c_c00329{left:267.200000pt;}
.xa3_c00329{left:269.466667pt;}
.x59_c00329{left:273.200000pt;}
.x30_c00329{left:274.800000pt;}
.x19_c00329{left:275.733333pt;}
.x8e_c00329{left:276.800000pt;}
.x43_c00329{left:278.000000pt;}
.x50_c00329{left:279.333333pt;}
.x4b_c00329{left:281.333333pt;}
.xa0_c00329{left:282.266667pt;}
.x87_c00329{left:284.933333pt;}
.xac_c00329{left:286.800000pt;}
.x67_c00329{left:287.733333pt;}
.x21_c00329{left:289.466667pt;}
.x82_c00329{left:291.066667pt;}
.x9b_c00329{left:292.133333pt;}
.x3e_c00329{left:293.200000pt;}
.x96_c00329{left:298.666667pt;}
.x88_c00329{left:300.666667pt;}
.xa8_c00329{left:301.733333pt;}
.xb_c00329{left:302.800000pt;}
.x26_c00329{left:305.866667pt;}
.x4c_c00329{left:306.933333pt;}
.x1a_c00329{left:308.666667pt;}
.x44_c00329{left:311.066667pt;}
.x31_c00329{left:313.466667pt;}
.x8c_c00329{left:315.066667pt;}
.xa4_c00329{left:317.466667pt;}
.xa6_c00329{left:318.800000pt;}
.x9a_c00329{left:320.133333pt;}
.x37_c00329{left:321.066667pt;}
.x9d_c00329{left:322.000000pt;}
.x27_c00329{left:324.133333pt;}
.x45_c00329{left:325.200000pt;}
.x14_c00329{left:326.933333pt;}
.x83_c00329{left:327.866667pt;}
.x51_c00329{left:330.266667pt;}
.x97_c00329{left:332.000000pt;}
.xa9_c00329{left:335.066667pt;}
.x22_c00329{left:336.533333pt;}
.x5f_c00329{left:339.066667pt;}
.x32_c00329{left:340.400000pt;}
.x3f_c00329{left:342.133333pt;}
.x6d_c00329{left:344.000000pt;}
.x5b_c00329{left:345.066667pt;}
.x72_c00329{left:346.000000pt;}
.x7c_c00329{left:349.466667pt;}
.x46_c00329{left:351.066667pt;}
.x15_c00329{left:353.866667pt;}
.x28_c00329{left:354.800000pt;}
.x68_c00329{left:355.866667pt;}
.x2c_c00329{left:357.600000pt;}
.x73_c00329{left:358.533333pt;}
.x1b_c00329{left:360.533333pt;}
.x8d_c00329{left:362.133333pt;}
.x84_c00329{left:363.066667pt;}
.xc_c00329{left:364.266667pt;}
.x9e_c00329{left:367.466667pt;}
.x5a_c00329{left:369.066667pt;}
.x2d_c00329{left:370.400000pt;}
.xb1_c00329{left:372.533333pt;}
.x33_c00329{left:373.733333pt;}
.x7d_c00329{left:376.000000pt;}
.xad_c00329{left:377.333333pt;}
.x23_c00329{left:378.800000pt;}
.x47_c00329{left:382.133333pt;}
.x74_c00329{left:383.866667pt;}
.x6e_c00329{left:387.866667pt;}
.x5c_c00329{left:388.933333pt;}
.x34_c00329{left:390.000000pt;}
.x2_c00329{left:391.066667pt;}
.x52_c00329{left:392.400000pt;}
.x1c_c00329{left:394.800000pt;}
.x38_c00329{left:396.000000pt;}
.x40_c00329{left:397.466667pt;}
.xd_c00329{left:398.800000pt;}
.xaa_c00329{left:399.733333pt;}
.x75_c00329{left:400.800000pt;}
.x60_c00329{left:402.800000pt;}
.x69_c00329{left:404.133333pt;}
.x78_c00329{left:405.466667pt;}
.x4d_c00329{left:406.400000pt;}
.x2e_c00329{left:407.866667pt;}
.x56_c00329{left:408.933333pt;}
.x61_c00329{left:410.133333pt;}
.x29_c00329{left:411.066667pt;}
.x6f_c00329{left:412.533333pt;}
.x39_c00329{left:413.866667pt;}
.x4e_c00329{left:415.333333pt;}
.x41_c00329{left:416.933333pt;}
.x94_c00329{left:418.000000pt;}
.x16_c00329{left:419.733333pt;}
.x4f_c00329{left:421.066667pt;}
.x48_c00329{left:423.066667pt;}
.x1d_c00329{left:425.466667pt;}
.x3_c00329{left:428.133333pt;}
.xa5_c00329{left:431.733333pt;}
.x42_c00329{left:433.200000pt;}
.xab_c00329{left:434.266667pt;}
.x85_c00329{left:435.733333pt;}
.x24_c00329{left:437.733333pt;}
.x57_c00329{left:438.666667pt;}
.x35_c00329{left:442.533333pt;}
.x7e_c00329{left:443.466667pt;}
.x92_c00329{left:444.666667pt;}
.x5d_c00329{left:446.800000pt;}
.x4_c00329{left:449.600000pt;}
.x49_c00329{left:454.133333pt;}
.x80_c00329{left:455.466667pt;}
.x3a_c00329{left:457.066667pt;}
.x8f_c00329{left:458.666667pt;}
.x2a_c00329{left:460.666667pt;}
.x7f_c00329{left:462.000000pt;}
.x1e_c00329{left:462.933333pt;}
.xe_c00329{left:467.866667pt;}
.x5_c00329{left:470.133333pt;}
.xa1_c00329{left:474.666667pt;}
.x8a_c00329{left:477.066667pt;}
.x62_c00329{left:483.733333pt;}
.xbb_c00329{left:488.933333pt;}
.xb2_c00329{left:491.200000pt;}
.xc0_c00329{left:492.133333pt;}
.xe4_c00329{left:494.133333pt;}
.x105_c00329{left:495.733333pt;}
.x131_c00329{left:499.866667pt;}
.x136_c00329{left:500.800000pt;}
.x141_c00329{left:502.666667pt;}
.x6_c00329{left:505.333333pt;}
.xc8_c00329{left:506.533333pt;}
.xbc_c00329{left:507.466667pt;}
.xd8_c00329{left:509.466667pt;}
.xed_c00329{left:510.400000pt;}
.x108_c00329{left:512.000000pt;}
.x115_c00329{left:512.933333pt;}
.x119_c00329{left:514.000000pt;}
.x12e_c00329{left:515.066667pt;}
.x139_c00329{left:517.333333pt;}
.x145_c00329{left:518.400000pt;}
.x101_c00329{left:520.666667pt;}
.xbd_c00329{left:525.066667pt;}
.x150_c00329{left:528.000000pt;}
.xc1_c00329{left:529.600000pt;}
.x10b_c00329{left:531.600000pt;}
.xe3_c00329{left:534.133333pt;}
.x123_c00329{left:536.133333pt;}
.x137_c00329{left:537.333333pt;}
.x140_c00329{left:539.466667pt;}
.x142_c00329{left:540.400000pt;}
.x128_c00329{left:542.266667pt;}
.x7_c00329{left:543.466667pt;}
.xb3_c00329{left:544.933333pt;}
.xbe_c00329{left:547.466667pt;}
.xee_c00329{left:548.533333pt;}
.xb4_c00329{left:551.866667pt;}
.x11f_c00329{left:553.866667pt;}
.xd1_c00329{left:556.133333pt;}
.xd9_c00329{left:557.733333pt;}
.x14b_c00329{left:558.666667pt;}
.x104_c00329{left:559.600000pt;}
.xca_c00329{left:561.333333pt;}
.xe9_c00329{left:563.066667pt;}
.xd2_c00329{left:565.066667pt;}
.xbf_c00329{left:566.400000pt;}
.x13c_c00329{left:567.600000pt;}
.xc2_c00329{left:568.933333pt;}
.x156_c00329{left:571.600000pt;}
.x114_c00329{left:572.666667pt;}
.x12b_c00329{left:574.400000pt;}
.x106_c00329{left:576.000000pt;}
.x10f_c00329{left:577.200000pt;}
.xb5_c00329{left:579.333333pt;}
.x151_c00329{left:581.466667pt;}
.x11b_c00329{left:585.466667pt;}
.x149_c00329{left:590.533333pt;}
.xd3_c00329{left:592.266667pt;}
.xe5_c00329{left:595.466667pt;}
.x120_c00329{left:598.000000pt;}
.x13d_c00329{left:600.266667pt;}
.xc3_c00329{left:602.533333pt;}
.xda_c00329{left:606.000000pt;}
.xcb_c00329{left:607.066667pt;}
.x124_c00329{left:609.733333pt;}
.xe0_c00329{left:614.400000pt;}
.xf4_c00329{left:616.133333pt;}
.x130_c00329{left:617.066667pt;}
.x109_c00329{left:618.266667pt;}
.x110_c00329{left:619.466667pt;}
.xef_c00329{left:620.800000pt;}
.x10c_c00329{left:623.466667pt;}
.xb6_c00329{left:625.066667pt;}
.x143_c00329{left:626.800000pt;}
.x102_c00329{left:629.466667pt;}
.xfc_c00329{left:630.800000pt;}
.xcc_c00329{left:633.333333pt;}
.x11c_c00329{left:635.333333pt;}
.xc4_c00329{left:636.400000pt;}
.xea_c00329{left:637.600000pt;}
.x13e_c00329{left:640.000000pt;}
.xf9_c00329{left:640.933333pt;}
.x129_c00329{left:642.800000pt;}
.xb7_c00329{left:644.000000pt;}
.x133_c00329{left:645.733333pt;}
.xdb_c00329{left:646.933333pt;}
.xf5_c00329{left:648.133333pt;}
.x144_c00329{left:649.866667pt;}
.x12c_c00329{left:650.800000pt;}
.x10a_c00329{left:653.466667pt;}
.xe1_c00329{left:655.066667pt;}
.x14c_c00329{left:656.533333pt;}
.xd4_c00329{left:657.600000pt;}
.x12f_c00329{left:659.066667pt;}
.xfd_c00329{left:663.333333pt;}
.x13a_c00329{left:664.266667pt;}
.x14a_c00329{left:668.000000pt;}
.x10d_c00329{left:668.933333pt;}
.x125_c00329{left:671.866667pt;}
.x146_c00329{left:673.333333pt;}
.x116_c00329{left:674.533333pt;}
.xe6_c00329{left:676.133333pt;}
.xcd_c00329{left:677.466667pt;}
.xf0_c00329{left:678.400000pt;}
.xdc_c00329{left:679.866667pt;}
.x118_c00329{left:681.333333pt;}
.xc9_c00329{left:682.800000pt;}
.x121_c00329{left:685.333333pt;}
.xd5_c00329{left:686.666667pt;}
.x11d_c00329{left:688.400000pt;}
.x147_c00329{left:690.000000pt;}
.xfa_c00329{left:691.200000pt;}
.xc5_c00329{left:693.333333pt;}
.xdd_c00329{left:694.533333pt;}
.x153_c00329{left:695.466667pt;}
.xf1_c00329{left:698.266667pt;}
.xb8_c00329{left:700.000000pt;}
.xeb_c00329{left:703.466667pt;}
.xce_c00329{left:704.933333pt;}
.x126_c00329{left:706.400000pt;}
.x107_c00329{left:707.733333pt;}
.x138_c00329{left:710.133333pt;}
.x111_c00329{left:713.733333pt;}
.xf6_c00329{left:715.066667pt;}
.x13b_c00329{left:716.000000pt;}
.xec_c00329{left:719.466667pt;}
.xe7_c00329{left:722.266667pt;}
.xcf_c00329{left:723.466667pt;}
.xb9_c00329{left:724.666667pt;}
.x134_c00329{left:727.333333pt;}
.x148_c00329{left:730.000000pt;}
.xfe_c00329{left:732.133333pt;}
.x117_c00329{left:734.000000pt;}
.x132_c00329{left:736.800000pt;}
.xf2_c00329{left:738.266667pt;}
.x12a_c00329{left:740.133333pt;}
.x14e_c00329{left:741.066667pt;}
.xe2_c00329{left:742.533333pt;}
.xd0_c00329{left:744.266667pt;}
.xc6_c00329{left:746.133333pt;}
.xde_c00329{left:747.600000pt;}
.x112_c00329{left:748.666667pt;}
.x12d_c00329{left:749.600000pt;}
.xf7_c00329{left:750.666667pt;}
.xd6_c00329{left:752.933333pt;}
.xba_c00329{left:754.800000pt;}
.xf3_c00329{left:755.866667pt;}
.x122_c00329{left:758.266667pt;}
.xff_c00329{left:759.333333pt;}
.x14d_c00329{left:760.800000pt;}
.x11e_c00329{left:762.666667pt;}
.x10e_c00329{left:764.666667pt;}
.xe8_c00329{left:765.733333pt;}
.x154_c00329{left:766.800000pt;}
.xdf_c00329{left:768.133333pt;}
.x152_c00329{left:769.333333pt;}
.xd7_c00329{left:771.466667pt;}
.x127_c00329{left:772.666667pt;}
.xc7_c00329{left:775.600000pt;}
.x13f_c00329{left:777.333333pt;}
.xfb_c00329{left:782.800000pt;}
.x100_c00329{left:784.666667pt;}
.x103_c00329{left:786.266667pt;}
.x113_c00329{left:787.333333pt;}
.x11a_c00329{left:790.000000pt;}
.xf8_c00329{left:791.333333pt;}
.x155_c00329{left:793.733333pt;}
.x14f_c00329{left:794.933333pt;}
.x135_c00329{left:795.866667pt;}
.x157_c00329{left:796.933333pt;}
.x158_c00329{left:805.600000pt;}
}





/* 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_c00330 {
    display:none;
  }
  .loading-indicator_c00330.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00330 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_c00330 { 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_c00330" -> "#page-container .classname_c00330")
 */
.pf_c00330 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00330 { /* 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_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00330 { /* 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_c00330 { /* 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_c00330 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00330 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00330 {overflow:visible;}
  }
}
.c_c00330 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00330 { /* 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_c00330:after { /* webkit #35443 */
  content: '';
}
.t_c00330:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00330 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 */
}
.__c00330 { /* 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_c00330 { /* info for Javascript */
  display:none;
}
.l_c00330 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00330 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00330 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00330: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_c00330 {
    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_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00330.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_c00330 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00330;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.000000;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;}
.m8f_c00330{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00330{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00330{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00330{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m28_c00330{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.md7_c00330{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00330{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00330{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m68_c00330{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00330{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m86_c00330{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.maf_c00330{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m75_c00330{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m51_c00330{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00330{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00330{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m22_c00330{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma_c00330{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m123_c00330{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00330{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m18_c00330{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m89_c00330{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m115_c00330{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m87_c00330{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m109_c00330{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00330{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00330{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00330{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00330{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mee_c00330{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m118_c00330{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m33_c00330{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m8_c00330{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00330{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md9_c00330{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00330{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m84_c00330{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m61_c00330{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00330{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mae_c00330{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00330{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00330{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m66_c00330{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00330{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00330{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00330{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00330{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mda_c00330{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m52_c00330{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00330{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m72_c00330{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m50_c00330{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.med_c00330{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m35_c00330{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m25_c00330{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00330{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00330{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m104_c00330{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mac_c00330{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m16_c00330{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00330{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m6_c00330{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m36_c00330{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00330{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m108_c00330{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00330{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m122_c00330{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m80_c00330{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00330{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m20_c00330{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.md6_c00330{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m7_c00330{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00330{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mad_c00330{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m27_c00330{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m120_c00330{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m99_c00330{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb_c00330{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m116_c00330{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m121_c00330{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m69_c00330{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m70_c00330{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m32_c00330{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m54_c00330{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00330{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00330{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9_c00330{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00330{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.me6_c00330{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m126_c00330{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m31_c00330{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mba_c00330{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m98_c00330{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00330{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m42_c00330{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00330{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m23_c00330{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m107_c00330{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00330{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00330{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m62_c00330{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00330{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m38_c00330{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m47_c00330{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m97_c00330{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00330{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3_c00330{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00330{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00330{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00330{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00330{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00330{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00330{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00330{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m34_c00330{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00330{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m81_c00330{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00330{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00330{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me0_c00330{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00330{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m91_c00330{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m94_c00330{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00330{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m19_c00330{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00330{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m114_c00330{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.me9_c00330{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00330{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00330{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m43_c00330{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00330{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m46_c00330{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00330{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00330{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m92_c00330{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m49_c00330{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00330{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m12_c00330{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00330{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m102_c00330{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m37_c00330{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00330{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00330{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00330{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m11_c00330{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00330{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m17_c00330{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00330{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.meb_c00330{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m13_c00330{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m40_c00330{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00330{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00330{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m44_c00330{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00330{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md8_c00330{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00330{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m96_c00330{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m21_c00330{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00330{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m41_c00330{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00330{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00330{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m63_c00330{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00330{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00330{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00330{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mea_c00330{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00330{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00330{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00330{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mce_c00330{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00330{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5_c00330{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m53_c00330{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m48_c00330{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m15_c00330{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mab_c00330{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10_c00330{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00330{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m95_c00330{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00330{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m76_c00330{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m24_c00330{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m85_c00330{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00330{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m55_c00330{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4_c00330{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m26_c00330{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00330{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00330{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m90_c00330{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m93_c00330{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m14_c00330{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00330{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me3_c00330{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m71_c00330{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00330{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md5_c00330{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m74_c00330{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.me1_c00330{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maa_c00330{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00330{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m125_c00330{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m60_c00330{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m82_c00330{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m77_c00330{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00330{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00330{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00330{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m112_c00330{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00330{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m106_c00330{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me7_c00330{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m103_c00330{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00330{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00330{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf_c00330{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00330{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.me_c00330{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00330{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.md1_c00330{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mff_c00330{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m64_c00330{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00330{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m78_c00330{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me4_c00330{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00330{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00330{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00330{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00330{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m39_c00330{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc_c00330{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m30_c00330{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m117_c00330{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00330{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00330{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);}
.me2_c00330{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mca_c00330{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m110_c00330{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m79_c00330{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00330{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m105_c00330{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m29_c00330{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md2_c00330{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00330{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00330{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00330{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00330{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me8_c00330{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m119_c00330{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00330{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me5_c00330{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mef_c00330{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00330{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00330{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m113_c00330{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m45_c00330{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00330{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m67_c00330{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00330{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00330{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m65_c00330{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00330{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m58_c00330{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m101_c00330{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m124_c00330{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00330{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m88_c00330{transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);}
.mec_c00330{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00330{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00330{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00330{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m59_c00330{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.md4_c00330{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00330{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00330{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00330{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m57_c00330{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00330{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.md0_c00330{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.md3_c00330{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m111_c00330{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00330{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.m73_c00330{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00330{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00330{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m56_c00330{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m83_c00330{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m100_c00330{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.mde_c00330{transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);}
.m0_c00330{transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00330{transform:matrix(0.454000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls1_c00330{letter-spacing:0.000000px;}
.ls0_c00330{letter-spacing:63.000000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{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__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00330{word-spacing:-90.000000px;}
.ws3_c00330{word-spacing:-8.750000px;}
.ws2_c00330{word-spacing:-7.219542px;}
.wsc_c00330{word-spacing:-6.732523px;}
.ws8_c00330{word-spacing:-4.954128px;}
.ws6_c00330{word-spacing:-4.166667px;}
.wse_c00330{word-spacing:0.000000px;}
.ws4_c00330{word-spacing:5.138889px;}
.ws7_c00330{word-spacing:6.052632px;}
.ws1_c00330{word-spacing:9.315364px;}
.ws5_c00330{word-spacing:16.718750px;}
.ws0_c00330{word-spacing:25.714286px;}
.ws9_c00330{word-spacing:26.428954px;}
.wsb_c00330{word-spacing:36.000000px;}
.wsd_c00330{word-spacing:50.416667px;}
._0_c00330{margin-left:-63.000000px;}
._1_c00330{width:66.750000px;}
.fc0_c00330{color:transparent;}
.fs5_c00330{font-size:30.000000px;}
.fs6_c00330{font-size:42.000000px;}
.fs4_c00330{font-size:54.000000px;}
.fs3_c00330{font-size:60.000000px;}
.fs1_c00330{font-size:66.000000px;}
.fs2_c00330{font-size:72.000000px;}
.fs0_c00330{font-size:84.000000px;}
.y0_c00330{bottom:0.000000px;}
.y37_c00330{bottom:185.700000px;}
.y67_c00330{bottom:186.000000px;}
.y36_c00330{bottom:200.400000px;}
.y66_c00330{bottom:201.150000px;}
.y35_c00330{bottom:214.800000px;}
.y65_c00330{bottom:215.550000px;}
.y34_c00330{bottom:228.900000px;}
.y64_c00330{bottom:229.650000px;}
.y33_c00330{bottom:244.050000px;}
.y32_c00330{bottom:257.700000px;}
.y31_c00330{bottom:272.400000px;}
.y30_c00330{bottom:286.500000px;}
.y63_c00330{bottom:287.250000px;}
.y62_c00330{bottom:308.850000px;}
.y61_c00330{bottom:326.850000px;}
.y2e_c00330{bottom:336.300000px;}
.y2d_c00330{bottom:354.600000px;}
.y60_c00330{bottom:358.200000px;}
.y2c_c00330{bottom:372.300000px;}
.y5f_c00330{bottom:387.750000px;}
.y2b_c00330{bottom:390.300000px;}
.y5e_c00330{bottom:406.500000px;}
.y2a_c00330{bottom:408.300000px;}
.y29_c00330{bottom:425.550000px;}
.y5d_c00330{bottom:428.100000px;}
.y28_c00330{bottom:443.250000px;}
.y5c_c00330{bottom:446.400000px;}
.y27_c00330{bottom:460.950000px;}
.y5b_c00330{bottom:468.300000px;}
.y26_c00330{bottom:478.950000px;}
.y5a_c00330{bottom:486.300000px;}
.y25_c00330{bottom:496.950000px;}
.y59_c00330{bottom:507.150000px;}
.y24_c00330{bottom:514.650000px;}
.y58_c00330{bottom:521.250000px;}
.y23_c00330{bottom:532.650000px;}
.y57_c00330{bottom:536.100000px;}
.y22_c00330{bottom:550.350000px;}
.y56_c00330{bottom:556.200000px;}
.y21_c00330{bottom:568.350000px;}
.y55_c00330{bottom:574.950000px;}
.y20_c00330{bottom:586.050000px;}
.y54_c00330{bottom:591.900000px;}
.y1f_c00330{bottom:604.050000px;}
.y53_c00330{bottom:613.950000px;}
.y1e_c00330{bottom:621.750000px;}
.y52_c00330{bottom:631.650000px;}
.y1d_c00330{bottom:641.550000px;}
.y2f_c00330{bottom:641.850000px;}
.y51_c00330{bottom:649.350000px;}
.y1c_c00330{bottom:655.950000px;}
.y50_c00330{bottom:667.050000px;}
.y1b_c00330{bottom:670.200000px;}
.y4f_c00330{bottom:685.050000px;}
.y1a_c00330{bottom:686.100000px;}
.y19_c00330{bottom:704.700000px;}
.y4e_c00330{bottom:707.400000px;}
.y18_c00330{bottom:722.700000px;}
.y4d_c00330{bottom:737.700000px;}
.y17_c00330{bottom:740.400000px;}
.y16_c00330{bottom:758.100000px;}
.y4c_c00330{bottom:758.250000px;}
.y4b_c00330{bottom:772.950000px;}
.y15_c00330{bottom:776.100000px;}
.y4a_c00330{bottom:791.400000px;}
.y14_c00330{bottom:796.950000px;}
.y49_c00330{bottom:806.100000px;}
.y13_c00330{bottom:816.000000px;}
.y48_c00330{bottom:826.200000px;}
.y12_c00330{bottom:833.700000px;}
.y47_c00330{bottom:843.750000px;}
.y11_c00330{bottom:854.700000px;}
.y46_c00330{bottom:861.750000px;}
.y10_c00330{bottom:873.300000px;}
.y45_c00330{bottom:879.000000px;}
.y44_c00330{bottom:896.700000px;}
.yf_c00330{bottom:898.950000px;}
.ye_c00330{bottom:917.700000px;}
.y43_c00330{bottom:918.600000px;}
.y41_c00330{bottom:934.650000px;}
.yd_c00330{bottom:935.700000px;}
.y42_c00330{bottom:936.300000px;}
.yc_c00330{bottom:953.550000px;}
.y40_c00330{bottom:954.750000px;}
.yb_c00330{bottom:971.250000px;}
.y3f_c00330{bottom:972.000000px;}
.y3e_c00330{bottom:989.250000px;}
.ya_c00330{bottom:992.100000px;}
.y9_c00330{bottom:1010.850000px;}
.y3d_c00330{bottom:1011.600000px;}
.y8_c00330{bottom:1028.850000px;}
.y3c_c00330{bottom:1029.300000px;}
.y7_c00330{bottom:1046.400000px;}
.y3b_c00330{bottom:1060.200000px;}
.y6_c00330{bottom:1064.400000px;}
.y5_c00330{bottom:1082.100000px;}
.y3a_c00330{bottom:1082.700000px;}
.y4_c00330{bottom:1099.800000px;}
.y39_c00330{bottom:1100.400000px;}
.y3_c00330{bottom:1117.500000px;}
.y38_c00330{bottom:1118.100000px;}
.y2_c00330{bottom:1142.700000px;}
.y1_c00330{bottom:1144.800000px;}
.h7_c00330{height:30.000000px;}
.h8_c00330{height:42.000000px;}
.h6_c00330{height:54.000000px;}
.h5_c00330{height:60.000000px;}
.h3_c00330{height:66.000000px;}
.h4_c00330{height:72.000000px;}
.h2_c00330{height:84.000000px;}
.h1_c00330{height:1268.250000px;}
.h0_c00330{height:1268.279937px;}
.w1_c00330{width:961.500000px;}
.w0_c00330{width:961.560058px;}
.x0_c00330{left:0.000000px;}
.xa3_c00330{left:64.200000px;}
.x71_c00330{left:65.850000px;}
.x3_c00330{left:66.900000px;}
.x38_c00330{left:68.400000px;}
.x28_c00330{left:71.700000px;}
.x75_c00330{left:74.550000px;}
.x79_c00330{left:79.950000px;}
.x3f_c00330{left:81.150000px;}
.x69_c00330{left:83.400000px;}
.xd_c00330{left:85.050000px;}
.x35_c00330{left:86.100000px;}
.x4a_c00330{left:87.900000px;}
.x9f_c00330{left:89.550000px;}
.x7d_c00330{left:95.100000px;}
.x9a_c00330{left:98.100000px;}
.x64_c00330{left:100.800000px;}
.xa4_c00330{left:102.750000px;}
.x57_c00330{left:104.100000px;}
.x70_c00330{left:106.050000px;}
.x44_c00330{left:107.700000px;}
.xaf_c00330{left:109.500000px;}
.xa6_c00330{left:111.450000px;}
.x4_c00330{left:112.950000px;}
.xe_c00330{left:115.650000px;}
.xaa_c00330{left:117.600000px;}
.x86_c00330{left:119.700000px;}
.x36_c00330{left:121.050000px;}
.x2f_c00330{left:124.650000px;}
.x39_c00330{left:126.750000px;}
.x72_c00330{left:128.850000px;}
.xb0_c00330{left:131.100000px;}
.x5e_c00330{left:133.050000px;}
.x20_c00330{left:134.100000px;}
.x95_c00330{left:135.450000px;}
.x29_c00330{left:137.250000px;}
.x80_c00330{left:140.700000px;}
.x21_c00330{left:142.800000px;}
.x3a_c00330{left:144.450000px;}
.x90_c00330{left:145.500000px;}
.x30_c00330{left:147.300000px;}
.x58_c00330{left:148.350000px;}
.x51_c00330{left:151.500000px;}
.x5_c00330{left:154.650000px;}
.x65_c00330{left:155.850000px;}
.xa0_c00330{left:157.200000px;}
.x6a_c00330{left:158.250000px;}
.x37_c00330{left:160.350000px;}
.x93_c00330{left:161.550000px;}
.x52_c00330{left:164.850000px;}
.x15_c00330{left:167.100000px;}
.x82_c00330{left:168.300000px;}
.xa5_c00330{left:169.350000px;}
.x40_c00330{left:170.850000px;}
.x8d_c00330{left:171.900000px;}
.x7a_c00330{left:175.350000px;}
.x4b_c00330{left:177.600000px;}
.xf_c00330{left:178.650000px;}
.x22_c00330{left:180.600000px;}
.x6b_c00330{left:182.400000px;}
.x31_c00330{left:183.600000px;}
.x91_c00330{left:185.400000px;}
.xa7_c00330{left:188.850000px;}
.x59_c00330{left:190.500000px;}
.x6_c00330{left:192.750000px;}
.x73_c00330{left:193.950000px;}
.x6e_c00330{left:197.550000px;}
.x7e_c00330{left:199.800000px;}
.x1c_c00330{left:201.000000px;}
.x76_c00330{left:202.800000px;}
.x32_c00330{left:204.150000px;}
.x16_c00330{left:205.200000px;}
.x45_c00330{left:206.700000px;}
.x2a_c00330{left:207.900000px;}
.x98_c00330{left:209.700000px;}
.x3b_c00330{left:212.550000px;}
.x87_c00330{left:215.400000px;}
.x83_c00330{left:216.600000px;}
.x5f_c00330{left:217.950000px;}
.xa1_c00330{left:220.500000px;}
.x41_c00330{left:222.000000px;}
.x17_c00330{left:224.250000px;}
.x9b_c00330{left:228.000000px;}
.x4c_c00330{left:229.050000px;}
.x1d_c00330{left:230.100000px;}
.x10_c00330{left:232.350000px;}
.x53_c00330{left:234.000000px;}
.xae_c00330{left:235.350000px;}
.x9d_c00330{left:236.550000px;}
.x7_c00330{left:237.750000px;}
.x4d_c00330{left:239.100000px;}
.x23_c00330{left:241.500000px;}
.x46_c00330{left:242.700000px;}
.x5b_c00330{left:244.200000px;}
.x7b_c00330{left:247.050000px;}
.x84_c00330{left:249.000000px;}
.x77_c00330{left:250.350000px;}
.x94_c00330{left:252.900000px;}
.x2b_c00330{left:253.950000px;}
.x42_c00330{left:255.900000px;}
.x11_c00330{left:257.250000px;}
.x88_c00330{left:258.750000px;}
.x54_c00330{left:260.250000px;}
.x4e_c00330{left:261.750000px;}
.xab_c00330{left:263.400000px;}
.x5c_c00330{left:266.550000px;}
.x78_c00330{left:268.650000px;}
.x9c_c00330{left:270.150000px;}
.x8b_c00330{left:271.950000px;}
.x8_c00330{left:276.300000px;}
.x2c_c00330{left:277.650000px;}
.x60_c00330{left:280.200000px;}
.x8e_c00330{left:282.450000px;}
.x5d_c00330{left:283.800000px;}
.x12_c00330{left:286.050000px;}
.xa8_c00330{left:288.300000px;}
.x9e_c00330{left:289.500000px;}
.x66_c00330{left:291.150000px;}
.x1e_c00330{left:294.600000px;}
.x61_c00330{left:295.650000px;}
.x33_c00330{left:297.750000px;}
.x18_c00330{left:299.400000px;}
.x6c_c00330{left:301.500000px;}
.x4f_c00330{left:303.900000px;}
.x24_c00330{left:305.550000px;}
.x9_c00330{left:306.900000px;}
.x67_c00330{left:308.400000px;}
.x81_c00330{left:309.750000px;}
.x1_c00330{left:311.100000px;}
.x99_c00330{left:313.800000px;}
.x92_c00330{left:315.750000px;}
.xac_c00330{left:317.100000px;}
.x62_c00330{left:320.550000px;}
.x6f_c00330{left:322.500000px;}
.xa_c00330{left:324.150000px;}
.x3c_c00330{left:325.200000px;}
.x8f_c00330{left:327.450000px;}
.x19_c00330{left:328.500000px;}
.x13_c00330{left:329.550000px;}
.x55_c00330{left:331.500000px;}
.x7c_c00330{left:332.700000px;}
.x25_c00330{left:334.350000px;}
.x7f_c00330{left:336.150000px;}
.x2d_c00330{left:337.350000px;}
.xa2_c00330{left:338.850000px;}
.x47_c00330{left:340.950000px;}
.x1f_c00330{left:342.450000px;}
.x56_c00330{left:343.800000px;}
.x3d_c00330{left:348.300000px;}
.xa9_c00330{left:349.500000px;}
.x43_c00330{left:350.850000px;}
.x74_c00330{left:354.150000px;}
.x26_c00330{left:355.200000px;}
.x1a_c00330{left:357.300000px;}
.xad_c00330{left:359.250000px;}
.x48_c00330{left:361.050000px;}
.xb_c00330{left:363.000000px;}
.x34_c00330{left:365.100000px;}
.x85_c00330{left:367.050000px;}
.x89_c00330{left:369.000000px;}
.x6d_c00330{left:370.650000px;}
.xc_c00330{left:373.050000px;}
.x8a_c00330{left:374.250000px;}
.x2e_c00330{left:376.200000px;}
.x96_c00330{left:378.150000px;}
.x50_c00330{left:379.200000px;}
.x63_c00330{left:381.000000px;}
.x14_c00330{left:385.350000px;}
.x3e_c00330{left:387.150000px;}
.x8c_c00330{left:388.650000px;}
.x27_c00330{left:390.450000px;}
.x97_c00330{left:391.800000px;}
.x1b_c00330{left:393.600000px;}
.x68_c00330{left:394.800000px;}
.x5a_c00330{left:400.050000px;}
.x49_c00330{left:415.350000px;}
.x146_c00330{left:419.700000px;}
.x139_c00330{left:422.700000px;}
.x129_c00330{left:423.750000px;}
.xfb_c00330{left:425.100000px;}
.xb1_c00330{left:426.300000px;}
.x14a_c00330{left:436.650000px;}
.x12c_c00330{left:437.700000px;}
.x103_c00330{left:439.650000px;}
.x123_c00330{left:440.700000px;}
.xe8_c00330{left:441.900000px;}
.xd2_c00330{left:443.250000px;}
.xb9_c00330{left:444.300000px;}
.x14d_c00330{left:446.550000px;}
.x11f_c00330{left:448.950000px;}
.x108_c00330{left:453.300000px;}
.xba_c00330{left:456.900000px;}
.xe9_c00330{left:459.150000px;}
.xce_c00330{left:462.300000px;}
.x11b_c00330{left:463.950000px;}
.xf6_c00330{left:465.750000px;}
.x120_c00330{left:466.950000px;}
.xe5_c00330{left:468.450000px;}
.xde_c00330{left:471.150000px;}
.x113_c00330{left:472.350000px;}
.x110_c00330{left:473.700000px;}
.x14e_c00330{left:475.050000px;}
.xd7_c00330{left:477.900000px;}
.xe2_c00330{left:479.700000px;}
.xbb_c00330{left:482.400000px;}
.xb2_c00330{left:484.650000px;}
.xc2_c00330{left:487.350000px;}
.xfc_c00330{left:488.400000px;}
.x12a_c00330{left:490.350000px;}
.x13e_c00330{left:491.400000px;}
.xc6_c00330{left:492.450000px;}
.xd3_c00330{left:493.650000px;}
.x119_c00330{left:497.100000px;}
.xea_c00330{left:499.500000px;}
.x124_c00330{left:502.350000px;}
.xc8_c00330{left:504.300000px;}
.xcf_c00330{left:505.800000px;}
.xb3_c00330{left:507.750000px;}
.x11c_c00330{left:508.950000px;}
.xf7_c00330{left:511.050000px;}
.xc9_c00330{left:515.850000px;}
.xc7_c00330{left:516.900000px;}
.xeb_c00330{left:519.600000px;}
.x114_c00330{left:521.400000px;}
.x112_c00330{left:522.450000px;}
.xf0_c00330{left:523.500000px;}
.x111_c00330{left:525.600000px;}
.xbc_c00330{left:529.200000px;}
.x13f_c00330{left:530.700000px;}
.xe3_c00330{left:532.950000px;}
.x14f_c00330{left:534.150000px;}
.xb4_c00330{left:537.600000px;}
.x11e_c00330{left:539.850000px;}
.x13a_c00330{left:541.500000px;}
.xd8_c00330{left:543.000000px;}
.x148_c00330{left:545.100000px;}
.x109_c00330{left:547.950000px;}
.xdf_c00330{left:550.650000px;}
.x144_c00330{left:551.850000px;}
.x130_c00330{left:553.050000px;}
.xca_c00330{left:554.400000px;}
.xfd_c00330{left:556.500000px;}
.x125_c00330{left:557.700000px;}
.x12b_c00330{left:558.750000px;}
.x14b_c00330{left:559.800000px;}
.xd0_c00330{left:561.300000px;}
.x13b_c00330{left:562.350000px;}
.xbd_c00330{left:563.700000px;}
.xd9_c00330{left:564.900000px;}
.xf8_c00330{left:567.600000px;}
.x126_c00330{left:568.800000px;}
.xf1_c00330{left:570.600000px;}
.xc3_c00330{left:577.350000px;}
.x140_c00330{left:578.550000px;}
.xe6_c00330{left:580.050000px;}
.xec_c00330{left:581.850000px;}
.xbe_c00330{left:584.550000px;}
.x12d_c00330{left:588.750000px;}
.xcb_c00330{left:591.450000px;}
.x10a_c00330{left:593.250000px;}
.xb5_c00330{left:597.300000px;}
.xfe_c00330{left:598.950000px;}
.xe4_c00330{left:601.350000px;}
.x131_c00330{left:603.750000px;}
.xed_c00330{left:607.050000px;}
.x116_c00330{left:608.400000px;}
.xe0_c00330{left:610.050000px;}
.x11a_c00330{left:612.600000px;}
.x104_c00330{left:614.100000px;}
.xf2_c00330{left:615.600000px;}
.xda_c00330{left:616.800000px;}
.x132_c00330{left:617.850000px;}
.x14c_c00330{left:620.250000px;}
.xff_c00330{left:623.100000px;}
.x10b_c00330{left:624.150000px;}
.xd1_c00330{left:627.600000px;}
.x105_c00330{left:629.100000px;}
.x13c_c00330{left:630.750000px;}
.x117_c00330{left:633.150000px;}
.xbf_c00330{left:634.200000px;}
.x121_c00330{left:637.200000px;}
.xb6_c00330{left:639.450000px;}
.x133_c00330{left:640.500000px;}
.xdb_c00330{left:643.050000px;}
.x10c_c00330{left:645.000000px;}
.x134_c00330{left:646.950000px;}
.xd4_c00330{left:648.750000px;}
.x127_c00330{left:650.250000px;}
.xf3_c00330{left:652.350000px;}
.xf9_c00330{left:656.100000px;}
.xee_c00330{left:657.750000px;}
.xb7_c00330{left:661.050000px;}
.x135_c00330{left:662.400000px;}
.x100_c00330{left:663.450000px;}
.x12e_c00330{left:664.650000px;}
.xc4_c00330{left:665.850000px;}
.xdc_c00330{left:671.550000px;}
.x142_c00330{left:673.500000px;}
.x10d_c00330{left:678.150000px;}
.xfa_c00330{left:680.250000px;}
.x115_c00330{left:682.950000px;}
.x101_c00330{left:684.000000px;}
.xc0_c00330{left:686.400000px;}
.x136_c00330{left:689.100000px;}
.x13d_c00330{left:690.900000px;}
.x106_c00330{left:691.950000px;}
.x122_c00330{left:693.750000px;}
.xc5_c00330{left:694.950000px;}
.xcc_c00330{left:697.950000px;}
.x147_c00330{left:699.450000px;}
.xf4_c00330{left:702.000000px;}
.x10e_c00330{left:703.350000px;}
.x143_c00330{left:705.150000px;}
.xef_c00330{left:706.350000px;}
.xe7_c00330{left:707.550000px;}
.xb8_c00330{left:708.900000px;}
.xd5_c00330{left:710.250000px;}
.xe1_c00330{left:714.150000px;}
.x137_c00330{left:718.200000px;}
.x149_c00330{left:720.750000px;}
.x107_c00330{left:722.550000px;}
.xdd_c00330{left:725.850000px;}
.x10f_c00330{left:727.050000px;}
.xc1_c00330{left:728.550000px;}
.x11d_c00330{left:731.100000px;}
.x141_c00330{left:732.600000px;}
.x2_c00330{left:734.850000px;}
.xf5_c00330{left:737.250000px;}
.xcd_c00330{left:740.550000px;}
.x145_c00330{left:744.000000px;}
.x118_c00330{left:745.200000px;}
.x138_c00330{left:746.700000px;}
.x102_c00330{left:748.500000px;}
.xd6_c00330{left:749.550000px;}
.x128_c00330{left:752.850000px;}
.x12f_c00330{left:757.200000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls1_c00330{letter-spacing:0.000000pt;}
.ls0_c00330{letter-spacing:56.000000pt;}
.wsa_c00330{word-spacing:-80.000000pt;}
.ws3_c00330{word-spacing:-7.777778pt;}
.ws2_c00330{word-spacing:-6.417370pt;}
.wsc_c00330{word-spacing:-5.984465pt;}
.ws8_c00330{word-spacing:-4.403670pt;}
.ws6_c00330{word-spacing:-3.703704pt;}
.wse_c00330{word-spacing:0.000000pt;}
.ws4_c00330{word-spacing:4.567901pt;}
.ws7_c00330{word-spacing:5.380117pt;}
.ws1_c00330{word-spacing:8.280323pt;}
.ws5_c00330{word-spacing:14.861111pt;}
.ws0_c00330{word-spacing:22.857143pt;}
.ws9_c00330{word-spacing:23.492404pt;}
.wsb_c00330{word-spacing:32.000000pt;}
.wsd_c00330{word-spacing:44.814815pt;}
._0_c00330{margin-left:-56.000000pt;}
._1_c00330{width:59.333333pt;}
.fs5_c00330{font-size:26.666667pt;}
.fs6_c00330{font-size:37.333333pt;}
.fs4_c00330{font-size:48.000000pt;}
.fs3_c00330{font-size:53.333333pt;}
.fs1_c00330{font-size:58.666667pt;}
.fs2_c00330{font-size:64.000000pt;}
.fs0_c00330{font-size:74.666667pt;}
.y0_c00330{bottom:0.000000pt;}
.y37_c00330{bottom:165.066667pt;}
.y67_c00330{bottom:165.333333pt;}
.y36_c00330{bottom:178.133333pt;}
.y66_c00330{bottom:178.800000pt;}
.y35_c00330{bottom:190.933333pt;}
.y65_c00330{bottom:191.600000pt;}
.y34_c00330{bottom:203.466667pt;}
.y64_c00330{bottom:204.133333pt;}
.y33_c00330{bottom:216.933333pt;}
.y32_c00330{bottom:229.066667pt;}
.y31_c00330{bottom:242.133333pt;}
.y30_c00330{bottom:254.666667pt;}
.y63_c00330{bottom:255.333333pt;}
.y62_c00330{bottom:274.533333pt;}
.y61_c00330{bottom:290.533333pt;}
.y2e_c00330{bottom:298.933333pt;}
.y2d_c00330{bottom:315.200000pt;}
.y60_c00330{bottom:318.400000pt;}
.y2c_c00330{bottom:330.933333pt;}
.y5f_c00330{bottom:344.666667pt;}
.y2b_c00330{bottom:346.933333pt;}
.y5e_c00330{bottom:361.333333pt;}
.y2a_c00330{bottom:362.933333pt;}
.y29_c00330{bottom:378.266667pt;}
.y5d_c00330{bottom:380.533333pt;}
.y28_c00330{bottom:394.000000pt;}
.y5c_c00330{bottom:396.800000pt;}
.y27_c00330{bottom:409.733333pt;}
.y5b_c00330{bottom:416.266667pt;}
.y26_c00330{bottom:425.733333pt;}
.y5a_c00330{bottom:432.266667pt;}
.y25_c00330{bottom:441.733333pt;}
.y59_c00330{bottom:450.800000pt;}
.y24_c00330{bottom:457.466667pt;}
.y58_c00330{bottom:463.333333pt;}
.y23_c00330{bottom:473.466667pt;}
.y57_c00330{bottom:476.533333pt;}
.y22_c00330{bottom:489.200000pt;}
.y56_c00330{bottom:494.400000pt;}
.y21_c00330{bottom:505.200000pt;}
.y55_c00330{bottom:511.066667pt;}
.y20_c00330{bottom:520.933333pt;}
.y54_c00330{bottom:526.133333pt;}
.y1f_c00330{bottom:536.933333pt;}
.y53_c00330{bottom:545.733333pt;}
.y1e_c00330{bottom:552.666667pt;}
.y52_c00330{bottom:561.466667pt;}
.y1d_c00330{bottom:570.266667pt;}
.y2f_c00330{bottom:570.533333pt;}
.y51_c00330{bottom:577.200000pt;}
.y1c_c00330{bottom:583.066667pt;}
.y50_c00330{bottom:592.933333pt;}
.y1b_c00330{bottom:595.733333pt;}
.y4f_c00330{bottom:608.933333pt;}
.y1a_c00330{bottom:609.866667pt;}
.y19_c00330{bottom:626.400000pt;}
.y4e_c00330{bottom:628.800000pt;}
.y18_c00330{bottom:642.400000pt;}
.y4d_c00330{bottom:655.733333pt;}
.y17_c00330{bottom:658.133333pt;}
.y16_c00330{bottom:673.866667pt;}
.y4c_c00330{bottom:674.000000pt;}
.y4b_c00330{bottom:687.066667pt;}
.y15_c00330{bottom:689.866667pt;}
.y4a_c00330{bottom:703.466667pt;}
.y14_c00330{bottom:708.400000pt;}
.y49_c00330{bottom:716.533333pt;}
.y13_c00330{bottom:725.333333pt;}
.y48_c00330{bottom:734.400000pt;}
.y12_c00330{bottom:741.066667pt;}
.y47_c00330{bottom:750.000000pt;}
.y11_c00330{bottom:759.733333pt;}
.y46_c00330{bottom:766.000000pt;}
.y10_c00330{bottom:776.266667pt;}
.y45_c00330{bottom:781.333333pt;}
.y44_c00330{bottom:797.066667pt;}
.yf_c00330{bottom:799.066667pt;}
.ye_c00330{bottom:815.733333pt;}
.y43_c00330{bottom:816.533333pt;}
.y41_c00330{bottom:830.800000pt;}
.yd_c00330{bottom:831.733333pt;}
.y42_c00330{bottom:832.266667pt;}
.yc_c00330{bottom:847.600000pt;}
.y40_c00330{bottom:848.666667pt;}
.yb_c00330{bottom:863.333333pt;}
.y3f_c00330{bottom:864.000000pt;}
.y3e_c00330{bottom:879.333333pt;}
.ya_c00330{bottom:881.866667pt;}
.y9_c00330{bottom:898.533333pt;}
.y3d_c00330{bottom:899.200000pt;}
.y8_c00330{bottom:914.533333pt;}
.y3c_c00330{bottom:914.933333pt;}
.y7_c00330{bottom:930.133333pt;}
.y3b_c00330{bottom:942.400000pt;}
.y6_c00330{bottom:946.133333pt;}
.y5_c00330{bottom:961.866667pt;}
.y3a_c00330{bottom:962.400000pt;}
.y4_c00330{bottom:977.600000pt;}
.y39_c00330{bottom:978.133333pt;}
.y3_c00330{bottom:993.333333pt;}
.y38_c00330{bottom:993.866667pt;}
.y2_c00330{bottom:1015.733333pt;}
.y1_c00330{bottom:1017.600000pt;}
.h7_c00330{height:26.666667pt;}
.h8_c00330{height:37.333333pt;}
.h6_c00330{height:48.000000pt;}
.h5_c00330{height:53.333333pt;}
.h3_c00330{height:58.666667pt;}
.h4_c00330{height:64.000000pt;}
.h2_c00330{height:74.666667pt;}
.h1_c00330{height:1127.333333pt;}
.h0_c00330{height:1127.359944pt;}
.w1_c00330{width:854.666667pt;}
.w0_c00330{width:854.720052pt;}
.x0_c00330{left:0.000000pt;}
.xa3_c00330{left:57.066667pt;}
.x71_c00330{left:58.533333pt;}
.x3_c00330{left:59.466667pt;}
.x38_c00330{left:60.800000pt;}
.x28_c00330{left:63.733333pt;}
.x75_c00330{left:66.266667pt;}
.x79_c00330{left:71.066667pt;}
.x3f_c00330{left:72.133333pt;}
.x69_c00330{left:74.133333pt;}
.xd_c00330{left:75.600000pt;}
.x35_c00330{left:76.533333pt;}
.x4a_c00330{left:78.133333pt;}
.x9f_c00330{left:79.600000pt;}
.x7d_c00330{left:84.533333pt;}
.x9a_c00330{left:87.200000pt;}
.x64_c00330{left:89.600000pt;}
.xa4_c00330{left:91.333333pt;}
.x57_c00330{left:92.533333pt;}
.x70_c00330{left:94.266667pt;}
.x44_c00330{left:95.733333pt;}
.xaf_c00330{left:97.333333pt;}
.xa6_c00330{left:99.066667pt;}
.x4_c00330{left:100.400000pt;}
.xe_c00330{left:102.800000pt;}
.xaa_c00330{left:104.533333pt;}
.x86_c00330{left:106.400000pt;}
.x36_c00330{left:107.600000pt;}
.x2f_c00330{left:110.800000pt;}
.x39_c00330{left:112.666667pt;}
.x72_c00330{left:114.533333pt;}
.xb0_c00330{left:116.533333pt;}
.x5e_c00330{left:118.266667pt;}
.x20_c00330{left:119.200000pt;}
.x95_c00330{left:120.400000pt;}
.x29_c00330{left:122.000000pt;}
.x80_c00330{left:125.066667pt;}
.x21_c00330{left:126.933333pt;}
.x3a_c00330{left:128.400000pt;}
.x90_c00330{left:129.333333pt;}
.x30_c00330{left:130.933333pt;}
.x58_c00330{left:131.866667pt;}
.x51_c00330{left:134.666667pt;}
.x5_c00330{left:137.466667pt;}
.x65_c00330{left:138.533333pt;}
.xa0_c00330{left:139.733333pt;}
.x6a_c00330{left:140.666667pt;}
.x37_c00330{left:142.533333pt;}
.x93_c00330{left:143.600000pt;}
.x52_c00330{left:146.533333pt;}
.x15_c00330{left:148.533333pt;}
.x82_c00330{left:149.600000pt;}
.xa5_c00330{left:150.533333pt;}
.x40_c00330{left:151.866667pt;}
.x8d_c00330{left:152.800000pt;}
.x7a_c00330{left:155.866667pt;}
.x4b_c00330{left:157.866667pt;}
.xf_c00330{left:158.800000pt;}
.x22_c00330{left:160.533333pt;}
.x6b_c00330{left:162.133333pt;}
.x31_c00330{left:163.200000pt;}
.x91_c00330{left:164.800000pt;}
.xa7_c00330{left:167.866667pt;}
.x59_c00330{left:169.333333pt;}
.x6_c00330{left:171.333333pt;}
.x73_c00330{left:172.400000pt;}
.x6e_c00330{left:175.600000pt;}
.x7e_c00330{left:177.600000pt;}
.x1c_c00330{left:178.666667pt;}
.x76_c00330{left:180.266667pt;}
.x32_c00330{left:181.466667pt;}
.x16_c00330{left:182.400000pt;}
.x45_c00330{left:183.733333pt;}
.x2a_c00330{left:184.800000pt;}
.x98_c00330{left:186.400000pt;}
.x3b_c00330{left:188.933333pt;}
.x87_c00330{left:191.466667pt;}
.x83_c00330{left:192.533333pt;}
.x5f_c00330{left:193.733333pt;}
.xa1_c00330{left:196.000000pt;}
.x41_c00330{left:197.333333pt;}
.x17_c00330{left:199.333333pt;}
.x9b_c00330{left:202.666667pt;}
.x4c_c00330{left:203.600000pt;}
.x1d_c00330{left:204.533333pt;}
.x10_c00330{left:206.533333pt;}
.x53_c00330{left:208.000000pt;}
.xae_c00330{left:209.200000pt;}
.x9d_c00330{left:210.266667pt;}
.x7_c00330{left:211.333333pt;}
.x4d_c00330{left:212.533333pt;}
.x23_c00330{left:214.666667pt;}
.x46_c00330{left:215.733333pt;}
.x5b_c00330{left:217.066667pt;}
.x7b_c00330{left:219.600000pt;}
.x84_c00330{left:221.333333pt;}
.x77_c00330{left:222.533333pt;}
.x94_c00330{left:224.800000pt;}
.x2b_c00330{left:225.733333pt;}
.x42_c00330{left:227.466667pt;}
.x11_c00330{left:228.666667pt;}
.x88_c00330{left:230.000000pt;}
.x54_c00330{left:231.333333pt;}
.x4e_c00330{left:232.666667pt;}
.xab_c00330{left:234.133333pt;}
.x5c_c00330{left:236.933333pt;}
.x78_c00330{left:238.800000pt;}
.x9c_c00330{left:240.133333pt;}
.x8b_c00330{left:241.733333pt;}
.x8_c00330{left:245.600000pt;}
.x2c_c00330{left:246.800000pt;}
.x60_c00330{left:249.066667pt;}
.x8e_c00330{left:251.066667pt;}
.x5d_c00330{left:252.266667pt;}
.x12_c00330{left:254.266667pt;}
.xa8_c00330{left:256.266667pt;}
.x9e_c00330{left:257.333333pt;}
.x66_c00330{left:258.800000pt;}
.x1e_c00330{left:261.866667pt;}
.x61_c00330{left:262.800000pt;}
.x33_c00330{left:264.666667pt;}
.x18_c00330{left:266.133333pt;}
.x6c_c00330{left:268.000000pt;}
.x4f_c00330{left:270.133333pt;}
.x24_c00330{left:271.600000pt;}
.x9_c00330{left:272.800000pt;}
.x67_c00330{left:274.133333pt;}
.x81_c00330{left:275.333333pt;}
.x1_c00330{left:276.533333pt;}
.x99_c00330{left:278.933333pt;}
.x92_c00330{left:280.666667pt;}
.xac_c00330{left:281.866667pt;}
.x62_c00330{left:284.933333pt;}
.x6f_c00330{left:286.666667pt;}
.xa_c00330{left:288.133333pt;}
.x3c_c00330{left:289.066667pt;}
.x8f_c00330{left:291.066667pt;}
.x19_c00330{left:292.000000pt;}
.x13_c00330{left:292.933333pt;}
.x55_c00330{left:294.666667pt;}
.x7c_c00330{left:295.733333pt;}
.x25_c00330{left:297.200000pt;}
.x7f_c00330{left:298.800000pt;}
.x2d_c00330{left:299.866667pt;}
.xa2_c00330{left:301.200000pt;}
.x47_c00330{left:303.066667pt;}
.x1f_c00330{left:304.400000pt;}
.x56_c00330{left:305.600000pt;}
.x3d_c00330{left:309.600000pt;}
.xa9_c00330{left:310.666667pt;}
.x43_c00330{left:311.866667pt;}
.x74_c00330{left:314.800000pt;}
.x26_c00330{left:315.733333pt;}
.x1a_c00330{left:317.600000pt;}
.xad_c00330{left:319.333333pt;}
.x48_c00330{left:320.933333pt;}
.xb_c00330{left:322.666667pt;}
.x34_c00330{left:324.533333pt;}
.x85_c00330{left:326.266667pt;}
.x89_c00330{left:328.000000pt;}
.x6d_c00330{left:329.466667pt;}
.xc_c00330{left:331.600000pt;}
.x8a_c00330{left:332.666667pt;}
.x2e_c00330{left:334.400000pt;}
.x96_c00330{left:336.133333pt;}
.x50_c00330{left:337.066667pt;}
.x63_c00330{left:338.666667pt;}
.x14_c00330{left:342.533333pt;}
.x3e_c00330{left:344.133333pt;}
.x8c_c00330{left:345.466667pt;}
.x27_c00330{left:347.066667pt;}
.x97_c00330{left:348.266667pt;}
.x1b_c00330{left:349.866667pt;}
.x68_c00330{left:350.933333pt;}
.x5a_c00330{left:355.600000pt;}
.x49_c00330{left:369.200000pt;}
.x146_c00330{left:373.066667pt;}
.x139_c00330{left:375.733333pt;}
.x129_c00330{left:376.666667pt;}
.xfb_c00330{left:377.866667pt;}
.xb1_c00330{left:378.933333pt;}
.x14a_c00330{left:388.133333pt;}
.x12c_c00330{left:389.066667pt;}
.x103_c00330{left:390.800000pt;}
.x123_c00330{left:391.733333pt;}
.xe8_c00330{left:392.800000pt;}
.xd2_c00330{left:394.000000pt;}
.xb9_c00330{left:394.933333pt;}
.x14d_c00330{left:396.933333pt;}
.x11f_c00330{left:399.066667pt;}
.x108_c00330{left:402.933333pt;}
.xba_c00330{left:406.133333pt;}
.xe9_c00330{left:408.133333pt;}
.xce_c00330{left:410.933333pt;}
.x11b_c00330{left:412.400000pt;}
.xf6_c00330{left:414.000000pt;}
.x120_c00330{left:415.066667pt;}
.xe5_c00330{left:416.400000pt;}
.xde_c00330{left:418.800000pt;}
.x113_c00330{left:419.866667pt;}
.x110_c00330{left:421.066667pt;}
.x14e_c00330{left:422.266667pt;}
.xd7_c00330{left:424.800000pt;}
.xe2_c00330{left:426.400000pt;}
.xbb_c00330{left:428.800000pt;}
.xb2_c00330{left:430.800000pt;}
.xc2_c00330{left:433.200000pt;}
.xfc_c00330{left:434.133333pt;}
.x12a_c00330{left:435.866667pt;}
.x13e_c00330{left:436.800000pt;}
.xc6_c00330{left:437.733333pt;}
.xd3_c00330{left:438.800000pt;}
.x119_c00330{left:441.866667pt;}
.xea_c00330{left:444.000000pt;}
.x124_c00330{left:446.533333pt;}
.xc8_c00330{left:448.266667pt;}
.xcf_c00330{left:449.600000pt;}
.xb3_c00330{left:451.333333pt;}
.x11c_c00330{left:452.400000pt;}
.xf7_c00330{left:454.266667pt;}
.xc9_c00330{left:458.533333pt;}
.xc7_c00330{left:459.466667pt;}
.xeb_c00330{left:461.866667pt;}
.x114_c00330{left:463.466667pt;}
.x112_c00330{left:464.400000pt;}
.xf0_c00330{left:465.333333pt;}
.x111_c00330{left:467.200000pt;}
.xbc_c00330{left:470.400000pt;}
.x13f_c00330{left:471.733333pt;}
.xe3_c00330{left:473.733333pt;}
.x14f_c00330{left:474.800000pt;}
.xb4_c00330{left:477.866667pt;}
.x11e_c00330{left:479.866667pt;}
.x13a_c00330{left:481.333333pt;}
.xd8_c00330{left:482.666667pt;}
.x148_c00330{left:484.533333pt;}
.x109_c00330{left:487.066667pt;}
.xdf_c00330{left:489.466667pt;}
.x144_c00330{left:490.533333pt;}
.x130_c00330{left:491.600000pt;}
.xca_c00330{left:492.800000pt;}
.xfd_c00330{left:494.666667pt;}
.x125_c00330{left:495.733333pt;}
.x12b_c00330{left:496.666667pt;}
.x14b_c00330{left:497.600000pt;}
.xd0_c00330{left:498.933333pt;}
.x13b_c00330{left:499.866667pt;}
.xbd_c00330{left:501.066667pt;}
.xd9_c00330{left:502.133333pt;}
.xf8_c00330{left:504.533333pt;}
.x126_c00330{left:505.600000pt;}
.xf1_c00330{left:507.200000pt;}
.xc3_c00330{left:513.200000pt;}
.x140_c00330{left:514.266667pt;}
.xe6_c00330{left:515.600000pt;}
.xec_c00330{left:517.200000pt;}
.xbe_c00330{left:519.600000pt;}
.x12d_c00330{left:523.333333pt;}
.xcb_c00330{left:525.733333pt;}
.x10a_c00330{left:527.333333pt;}
.xb5_c00330{left:530.933333pt;}
.xfe_c00330{left:532.400000pt;}
.xe4_c00330{left:534.533333pt;}
.x131_c00330{left:536.666667pt;}
.xed_c00330{left:539.600000pt;}
.x116_c00330{left:540.800000pt;}
.xe0_c00330{left:542.266667pt;}
.x11a_c00330{left:544.533333pt;}
.x104_c00330{left:545.866667pt;}
.xf2_c00330{left:547.200000pt;}
.xda_c00330{left:548.266667pt;}
.x132_c00330{left:549.200000pt;}
.x14c_c00330{left:551.333333pt;}
.xff_c00330{left:553.866667pt;}
.x10b_c00330{left:554.800000pt;}
.xd1_c00330{left:557.866667pt;}
.x105_c00330{left:559.200000pt;}
.x13c_c00330{left:560.666667pt;}
.x117_c00330{left:562.800000pt;}
.xbf_c00330{left:563.733333pt;}
.x121_c00330{left:566.400000pt;}
.xb6_c00330{left:568.400000pt;}
.x133_c00330{left:569.333333pt;}
.xdb_c00330{left:571.600000pt;}
.x10c_c00330{left:573.333333pt;}
.x134_c00330{left:575.066667pt;}
.xd4_c00330{left:576.666667pt;}
.x127_c00330{left:578.000000pt;}
.xf3_c00330{left:579.866667pt;}
.xf9_c00330{left:583.200000pt;}
.xee_c00330{left:584.666667pt;}
.xb7_c00330{left:587.600000pt;}
.x135_c00330{left:588.800000pt;}
.x100_c00330{left:589.733333pt;}
.x12e_c00330{left:590.800000pt;}
.xc4_c00330{left:591.866667pt;}
.xdc_c00330{left:596.933333pt;}
.x142_c00330{left:598.666667pt;}
.x10d_c00330{left:602.800000pt;}
.xfa_c00330{left:604.666667pt;}
.x115_c00330{left:607.066667pt;}
.x101_c00330{left:608.000000pt;}
.xc0_c00330{left:610.133333pt;}
.x136_c00330{left:612.533333pt;}
.x13d_c00330{left:614.133333pt;}
.x106_c00330{left:615.066667pt;}
.x122_c00330{left:616.666667pt;}
.xc5_c00330{left:617.733333pt;}
.xcc_c00330{left:620.400000pt;}
.x147_c00330{left:621.733333pt;}
.xf4_c00330{left:624.000000pt;}
.x10e_c00330{left:625.200000pt;}
.x143_c00330{left:626.800000pt;}
.xef_c00330{left:627.866667pt;}
.xe7_c00330{left:628.933333pt;}
.xb8_c00330{left:630.133333pt;}
.xd5_c00330{left:631.333333pt;}
.xe1_c00330{left:634.800000pt;}
.x137_c00330{left:638.400000pt;}
.x149_c00330{left:640.666667pt;}
.x107_c00330{left:642.266667pt;}
.xdd_c00330{left:645.200000pt;}
.x10f_c00330{left:646.266667pt;}
.xc1_c00330{left:647.600000pt;}
.x11d_c00330{left:649.866667pt;}
.x141_c00330{left:651.200000pt;}
.x2_c00330{left:653.200000pt;}
.xf5_c00330{left:655.333333pt;}
.xcd_c00330{left:658.266667pt;}
.x145_c00330{left:661.333333pt;}
.x118_c00330{left:662.400000pt;}
.x138_c00330{left:663.733333pt;}
.x102_c00330{left:665.333333pt;}
.xd6_c00330{left:666.266667pt;}
.x128_c00330{left:669.200000pt;}
.x12f_c00330{left:673.066667pt;}
}





/* 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_c00331 {
    display:none;
  }
  .loading-indicator_c00331.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00331 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_c00331 { 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_c00331" -> "#page-container .classname_c00331")
 */
.pf_c00331 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00331 { /* 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_c00331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00331 { /* 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_c00331 { /* 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_c00331 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00331 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00331 {overflow:visible;}
  }
}
.c_c00331 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00331 { /* 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_c00331:after { /* webkit #35443 */
  content: '';
}
.t_c00331:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00331 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 */
}
.__c00331 { /* 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_c00331 { /* info for Javascript */
  display:none;
}
.l_c00331 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00331 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00331 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00331: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_c00331 {
    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_c00331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00331.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_c00331 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00331;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.000000;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;}
.mef_c00331{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m115_c00331{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mb_c00331{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00331{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00331{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00331{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m74_c00331{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mca_c00331{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m91_c00331{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m12_c00331{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00331{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00331{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00331{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00331{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00331{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m16_c00331{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.md1_c00331{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m110_c00331{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m57_c00331{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m36_c00331{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00331{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m14_c00331{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mee_c00331{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00331{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me3_c00331{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00331{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00331{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00331{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00331{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00331{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00331{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m9_c00331{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m25_c00331{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m37_c00331{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00331{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00331{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00331{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mad_c00331{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m18_c00331{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md5_c00331{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00331{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6_c00331{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m49_c00331{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m103_c00331{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m42_c00331{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md8_c00331{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00331{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00331{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00331{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m106_c00331{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00331{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m10_c00331{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m27_c00331{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.maa_c00331{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00331{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m2_c00331{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mce_c00331{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mda_c00331{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00331{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m79_c00331{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m50_c00331{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m60_c00331{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m29_c00331{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m99_c00331{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m75_c00331{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00331{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00331{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m13_c00331{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00331{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m62_c00331{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m100_c00331{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00331{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.med_c00331{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00331{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00331{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00331{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md9_c00331{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m56_c00331{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.md_c00331{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m45_c00331{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md3_c00331{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m47_c00331{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3_c00331{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00331{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00331{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m41_c00331{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00331{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m38_c00331{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00331{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00331{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00331{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m23_c00331{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m90_c00331{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00331{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00331{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00331{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m73_c00331{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00331{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00331{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m108_c00331{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00331{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m15_c00331{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00331{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m89_c00331{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00331{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.meb_c00331{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m61_c00331{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m92_c00331{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7_c00331{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m77_c00331{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00331{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m40_c00331{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00331{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m71_c00331{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00331{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m26_c00331{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00331{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m114_c00331{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m76_c00331{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m94_c00331{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00331{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4_c00331{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m67_c00331{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00331{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m104_c00331{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m17_c00331{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00331{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mea_c00331{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me9_c00331{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00331{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00331{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m70_c00331{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00331{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m80_c00331{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m53_c00331{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m11_c00331{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m72_c00331{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m93_c00331{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m97_c00331{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00331{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m59_c00331{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00331{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m64_c00331{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma_c00331{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00331{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m105_c00331{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m66_c00331{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me2_c00331{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00331{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8_c00331{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m109_c00331{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00331{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mba_c00331{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00331{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m95_c00331{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00331{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00331{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m33_c00331{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00331{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00331{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00331{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m116_c00331{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m81_c00331{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m112_c00331{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m28_c00331{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00331{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00331{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m35_c00331{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00331{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00331{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m86_c00331{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00331{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00331{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00331{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00331{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.me_c00331{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m34_c00331{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mab_c00331{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00331{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m83_c00331{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5_c00331{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00331{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m98_c00331{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m22_c00331{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf_c00331{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00331{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m88_c00331{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00331{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m113_c00331{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00331{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m78_c00331{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00331{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m46_c00331{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m65_c00331{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00331{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00331{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m102_c00331{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m69_c00331{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m111_c00331{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00331{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maf_c00331{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md6_c00331{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mec_c00331{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m20_c00331{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m55_c00331{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00331{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m54_c00331{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.me8_c00331{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m48_c00331{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00331{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m63_c00331{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00331{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m58_c00331{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m85_c00331{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m68_c00331{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m52_c00331{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00331{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mff_c00331{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00331{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m44_c00331{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc_c00331{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mde_c00331{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m32_c00331{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00331{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00331{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00331{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m30_c00331{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00331{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00331{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00331{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00331{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00331{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00331{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me6_c00331{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00331{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m82_c00331{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00331{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00331{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00331{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m31_c00331{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00331{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mac_c00331{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00331{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.me0_c00331{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m39_c00331{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00331{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md0_c00331{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m96_c00331{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m21_c00331{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00331{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m43_c00331{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m87_c00331{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m51_c00331{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m84_c00331{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00331{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00331{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me1_c00331{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.md2_c00331{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00331{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m19_c00331{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00331{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00331{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00331{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00331{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m101_c00331{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.me5_c00331{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00331{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m24_c00331{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mae_c00331{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me4_c00331{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md4_c00331{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00331{transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);}
.m107_c00331{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00331{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md7_c00331{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m117_c00331{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me7_c00331{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00331{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls2_c00331{letter-spacing:0.000000px;}
.ls0_c00331{letter-spacing:55.714286px;}
.ls1_c00331{letter-spacing:70.000000px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{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__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00331{word-spacing:-100.000000px;}
.ws1_c00331{word-spacing:-85.714286px;}
.ws7_c00331{word-spacing:-10.142857px;}
.wsd_c00331{word-spacing:0.000000px;}
.ws0_c00331{word-spacing:2.750000px;}
.ws6_c00331{word-spacing:5.000000px;}
.ws3_c00331{word-spacing:7.187500px;}
.wsc_c00331{word-spacing:10.796178px;}
.ws8_c00331{word-spacing:14.842105px;}
.ws2_c00331{word-spacing:16.785714px;}
.ws9_c00331{word-spacing:25.714286px;}
.wsa_c00331{word-spacing:40.000000px;}
.ws5_c00331{word-spacing:65.000000px;}
.wsb_c00331{word-spacing:67.631579px;}
._3_c00331{margin-left:-69.404762px;}
._1_c00331{margin-left:-55.714286px;}
._0_c00331{width:3.571429px;}
._2_c00331{width:52.812500px;}
._4_c00331{width:59.285714px;}
._5_c00331{width:74.166667px;}
.fc0_c00331{color:transparent;}
.fs5_c00331{font-size:48.000000px;}
.fs3_c00331{font-size:54.000000px;}
.fs4_c00331{font-size:60.000000px;}
.fs2_c00331{font-size:66.000000px;}
.fs0_c00331{font-size:72.000000px;}
.fs1_c00331{font-size:78.000000px;}
.y0_c00331{bottom:0.000000px;}
.y6c_c00331{bottom:175.050000px;}
.y6b_c00331{bottom:191.550000px;}
.y36_c00331{bottom:192.900000px;}
.y6a_c00331{bottom:206.250000px;}
.y35_c00331{bottom:210.900000px;}
.y69_c00331{bottom:220.650000px;}
.y34_c00331{bottom:232.500000px;}
.y68_c00331{bottom:235.050000px;}
.y33_c00331{bottom:246.900000px;}
.y67_c00331{bottom:249.450000px;}
.y32_c00331{bottom:259.200000px;}
.y66_c00331{bottom:263.550000px;}
.y31_c00331{bottom:277.650000px;}
.y65_c00331{bottom:277.950000px;}
.y64_c00331{bottom:292.350000px;}
.y30_c00331{bottom:294.900000px;}
.y63_c00331{bottom:306.750000px;}
.y2f_c00331{bottom:312.900000px;}
.y62_c00331{bottom:321.150000px;}
.y2e_c00331{bottom:330.900000px;}
.y61_c00331{bottom:335.100000px;}
.y2d_c00331{bottom:348.900000px;}
.y60_c00331{bottom:349.500000px;}
.y5f_c00331{bottom:363.900000px;}
.y2c_c00331{bottom:371.100000px;}
.y2b_c00331{bottom:389.100000px;}
.y5e_c00331{bottom:405.450000px;}
.y2a_c00331{bottom:407.100000px;}
.y5d_c00331{bottom:423.750000px;}
.y29_c00331{bottom:424.800000px;}
.y5c_c00331{bottom:441.750000px;}
.y28_c00331{bottom:442.800000px;}
.y27_c00331{bottom:460.800000px;}
.y5b_c00331{bottom:463.650000px;}
.y5a_c00331{bottom:481.650000px;}
.y26_c00331{bottom:482.400000px;}
.y59_c00331{bottom:503.400000px;}
.y25_c00331{bottom:504.600000px;}
.y58_c00331{bottom:521.400000px;}
.y24_c00331{bottom:525.900000px;}
.y57_c00331{bottom:539.100000px;}
.y23_c00331{bottom:545.850000px;}
.y56_c00331{bottom:557.100000px;}
.y22_c00331{bottom:565.350000px;}
.y55_c00331{bottom:574.800000px;}
.y21_c00331{bottom:583.050000px;}
.y54_c00331{bottom:592.800000px;}
.y20_c00331{bottom:600.750000px;}
.y53_c00331{bottom:610.500000px;}
.y1f_c00331{bottom:618.450000px;}
.y52_c00331{bottom:628.500000px;}
.y1e_c00331{bottom:639.000000px;}
.y51_c00331{bottom:646.200000px;}
.y1d_c00331{bottom:658.050000px;}
.y50_c00331{bottom:664.200000px;}
.y1c_c00331{bottom:676.350000px;}
.y4f_c00331{bottom:681.900000px;}
.y1b_c00331{bottom:693.600000px;}
.y4e_c00331{bottom:703.800000px;}
.y1a_c00331{bottom:711.300000px;}
.y4d_c00331{bottom:718.200000px;}
.y19_c00331{bottom:729.000000px;}
.y4c_c00331{bottom:731.850000px;}
.y18_c00331{bottom:747.000000px;}
.y4b_c00331{bottom:748.050000px;}
.y17_c00331{bottom:765.000000px;}
.y4a_c00331{bottom:766.650000px;}
.y16_c00331{bottom:782.250000px;}
.y49_c00331{bottom:784.350000px;}
.y15_c00331{bottom:800.250000px;}
.y48_c00331{bottom:802.050000px;}
.y14_c00331{bottom:817.500000px;}
.y47_c00331{bottom:823.350000px;}
.y13_c00331{bottom:835.500000px;}
.y46_c00331{bottom:841.650000px;}
.y12_c00331{bottom:853.500000px;}
.y45_c00331{bottom:859.650000px;}
.y11_c00331{bottom:870.750000px;}
.y44_c00331{bottom:877.350000px;}
.y10_c00331{bottom:888.750000px;}
.y43_c00331{bottom:899.700000px;}
.yf_c00331{bottom:906.450000px;}
.y42_c00331{bottom:921.300000px;}
.ye_c00331{bottom:927.000000px;}
.yd_c00331{bottom:939.600000px;}
.y41_c00331{bottom:942.150000px;}
.yc_c00331{bottom:957.300000px;}
.y40_c00331{bottom:965.850000px;}
.yb_c00331{bottom:974.550000px;}
.y3f_c00331{bottom:984.000000px;}
.ya_c00331{bottom:993.600000px;}
.y3e_c00331{bottom:1002.000000px;}
.y9_c00331{bottom:1011.600000px;}
.y3d_c00331{bottom:1019.700000px;}
.y8_c00331{bottom:1028.850000px;}
.y3c_c00331{bottom:1036.950000px;}
.y7_c00331{bottom:1046.550000px;}
.y3b_c00331{bottom:1054.950000px;}
.y3a_c00331{bottom:1072.650000px;}
.y6_c00331{bottom:1075.350000px;}
.y5_c00331{bottom:1083.600000px;}
.y39_c00331{bottom:1090.350000px;}
.y4_c00331{bottom:1103.400000px;}
.y38_c00331{bottom:1108.050000px;}
.y3_c00331{bottom:1121.400000px;}
.y37_c00331{bottom:1126.050000px;}
.y1_c00331{bottom:1142.250000px;}
.y2_c00331{bottom:1149.750000px;}
.h7_c00331{height:48.000000px;}
.h5_c00331{height:54.000000px;}
.h6_c00331{height:60.000000px;}
.h4_c00331{height:66.000000px;}
.h2_c00331{height:72.000000px;}
.h3_c00331{height:78.000000px;}
.h1_c00331{height:1270.500000px;}
.h0_c00331{height:1270.799927px;}
.w1_c00331{width:961.500000px;}
.w0_c00331{width:961.560058px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:191.550000px;}
.x4b_c00331{left:192.900000px;}
.x80_c00331{left:198.000000px;}
.x8b_c00331{left:200.550000px;}
.x8f_c00331{left:201.600000px;}
.x9e_c00331{left:204.450000px;}
.x42_c00331{left:206.100000px;}
.xa8_c00331{left:207.300000px;}
.x3_c00331{left:208.500000px;}
.x39_c00331{left:209.550000px;}
.x4e_c00331{left:211.650000px;}
.x58_c00331{left:213.300000px;}
.x64_c00331{left:214.500000px;}
.x7e_c00331{left:216.150000px;}
.x87_c00331{left:217.200000px;}
.x8d_c00331{left:219.000000px;}
.x95_c00331{left:220.050000px;}
.x48_c00331{left:221.400000px;}
.xa1_c00331{left:223.200000px;}
.xa6_c00331{left:224.700000px;}
.xad_c00331{left:228.000000px;}
.xd_c00331{left:230.400000px;}
.x4f_c00331{left:235.350000px;}
.x82_c00331{left:236.550000px;}
.x19_c00331{left:237.600000px;}
.x8e_c00331{left:241.350000px;}
.x65_c00331{left:243.300000px;}
.x25_c00331{left:244.500000px;}
.x13_c00331{left:247.350000px;}
.x1e_c00331{left:250.650000px;}
.x2a_c00331{left:252.600000px;}
.x43_c00331{left:256.500000px;}
.x3a_c00331{left:261.300000px;}
.x14_c00331{left:262.800000px;}
.x71_c00331{left:265.500000px;}
.x59_c00331{left:266.550000px;}
.x96_c00331{left:268.350000px;}
.x2b_c00331{left:269.550000px;}
.x32_c00331{left:271.200000px;}
.x75_c00331{left:272.850000px;}
.x9c_c00331{left:275.100000px;}
.x4_c00331{left:278.700000px;}
.x4c_c00331{left:280.800000px;}
.xa4_c00331{left:282.150000px;}
.x52_c00331{left:284.250000px;}
.x44_c00331{left:285.300000px;}
.x5a_c00331{left:287.100000px;}
.x97_c00331{left:288.450000px;}
.x60_c00331{left:291.150000px;}
.x98_c00331{left:292.350000px;}
.x78_c00331{left:293.850000px;}
.x83_c00331{left:295.650000px;}
.x15_c00331{left:296.700000px;}
.x89_c00331{left:298.950000px;}
.x7c_c00331{left:300.600000px;}
.x33_c00331{left:301.800000px;}
.x2c_c00331{left:303.450000px;}
.x16_c00331{left:306.000000px;}
.x3b_c00331{left:307.350000px;}
.x1f_c00331{left:309.600000px;}
.x9d_c00331{left:310.800000px;}
.x34_c00331{left:311.850000px;}
.x5_c00331{left:315.000000px;}
.x79_c00331{left:317.550000px;}
.x4d_c00331{left:319.650000px;}
.x26_c00331{left:322.200000px;}
.x2d_c00331{left:324.000000px;}
.x3c_c00331{left:325.050000px;}
.x66_c00331{left:326.100000px;}
.x35_c00331{left:327.750000px;}
.x45_c00331{left:329.100000px;}
.x6f_c00331{left:331.050000px;}
.x72_c00331{left:333.900000px;}
.x7a_c00331{left:337.350000px;}
.x5b_c00331{left:340.050000px;}
.x2e_c00331{left:343.050000px;}
.xae_c00331{left:345.000000px;}
.x17_c00331{left:346.650000px;}
.x6b_c00331{left:348.150000px;}
.x53_c00331{left:350.100000px;}
.xab_c00331{left:352.050000px;}
.x84_c00331{left:354.000000px;}
.x3f_c00331{left:355.050000px;}
.xe_c00331{left:356.700000px;}
.x61_c00331{left:358.050000px;}
.x99_c00331{left:359.250000px;}
.x6_c00331{left:361.050000px;}
.x1a_c00331{left:362.400000px;}
.x55_c00331{left:364.350000px;}
.xa2_c00331{left:365.700000px;}
.x3d_c00331{left:367.950000px;}
.x9f_c00331{left:369.750000px;}
.x81_c00331{left:371.100000px;}
.x20_c00331{left:374.100000px;}
.x5c_c00331{left:376.050000px;}
.x6c_c00331{left:378.000000px;}
.x8a_c00331{left:379.950000px;}
.x7f_c00331{left:381.000000px;}
.x36_c00331{left:384.600000px;}
.x18_c00331{left:385.950000px;}
.x3e_c00331{left:387.450000px;}
.x91_c00331{left:391.500000px;}
.x56_c00331{left:394.350000px;}
.x21_c00331{left:395.400000px;}
.x62_c00331{left:397.350000px;}
.x7_c00331{left:398.550000px;}
.x27_c00331{left:399.900000px;}
.x8c_c00331{left:401.100000px;}
.x2f_c00331{left:403.950000px;}
.x94_c00331{left:406.950000px;}
.xf_c00331{left:408.600000px;}
.xa3_c00331{left:409.650000px;}
.x37_c00331{left:411.900000px;}
.x67_c00331{left:413.250000px;}
.x5d_c00331{left:414.900000px;}
.x8_c00331{left:416.850000px;}
.x85_c00331{left:418.500000px;}
.x73_c00331{left:420.900000px;}
.x7d_c00331{left:422.100000px;}
.x6d_c00331{left:423.300000px;}
.x30_c00331{left:425.250000px;}
.x22_c00331{left:426.750000px;}
.x63_c00331{left:429.450000px;}
.x28_c00331{left:432.000000px;}
.x2_c00331{left:433.500000px;}
.x92_c00331{left:435.450000px;}
.x1b_c00331{left:436.500000px;}
.x9a_c00331{left:437.700000px;}
.x76_c00331{left:439.200000px;}
.xa5_c00331{left:440.700000px;}
.xaa_c00331{left:444.450000px;}
.x10_c00331{left:445.650000px;}
.x90_c00331{left:446.700000px;}
.x93_c00331{left:448.350000px;}
.x9_c00331{left:450.300000px;}
.x40_c00331{left:452.550000px;}
.x50_c00331{left:454.950000px;}
.x49_c00331{left:457.200000px;}
.x1c_c00331{left:459.600000px;}
.xa7_c00331{left:461.100000px;}
.x68_c00331{left:462.900000px;}
.x74_c00331{left:465.150000px;}
.x77_c00331{left:469.050000px;}
.x31_c00331{left:470.250000px;}
.x5e_c00331{left:471.450000px;}
.x57_c00331{left:473.850000px;}
.x23_c00331{left:477.450000px;}
.x38_c00331{left:478.800000px;}
.x11_c00331{left:481.350000px;}
.x7b_c00331{left:483.150000px;}
.xa_c00331{left:484.500000px;}
.x46_c00331{left:485.700000px;}
.x4a_c00331{left:486.750000px;}
.x51_c00331{left:488.400000px;}
.x5f_c00331{left:490.950000px;}
.x9b_c00331{left:492.450000px;}
.x29_c00331{left:494.250000px;}
.x24_c00331{left:496.200000px;}
.x6e_c00331{left:498.150000px;}
.x1d_c00331{left:499.950000px;}
.x70_c00331{left:502.050000px;}
.x86_c00331{left:504.900000px;}
.xb_c00331{left:506.400000px;}
.x69_c00331{left:507.900000px;}
.xaf_c00331{left:509.850000px;}
.xa0_c00331{left:511.950000px;}
.x41_c00331{left:513.150000px;}
.x47_c00331{left:514.800000px;}
.x12_c00331{left:516.300000px;}
.x88_c00331{left:518.550000px;}
.x6a_c00331{left:520.200000px;}
.x54_c00331{left:525.300000px;}
.xa9_c00331{left:526.950000px;}
.xac_c00331{left:530.400000px;}
.xc_c00331{left:545.700000px;}
.xe5_c00331{left:548.700000px;}
.xea_c00331{left:549.750000px;}
.x100_c00331{left:550.800000px;}
.x119_c00331{left:552.900000px;}
.xfc_c00331{left:556.500000px;}
.x14f_c00331{left:557.850000px;}
.x155_c00331{left:559.050000px;}
.x159_c00331{left:560.250000px;}
.xb0_c00331{left:564.900000px;}
.xf2_c00331{left:566.250000px;}
.xf7_c00331{left:568.350000px;}
.xfd_c00331{left:569.850000px;}
.x120_c00331{left:570.900000px;}
.x12d_c00331{left:572.400000px;}
.x13a_c00331{left:573.900000px;}
.x14b_c00331{left:575.400000px;}
.x15b_c00331{left:576.450000px;}
.x156_c00331{left:578.100000px;}
.x115_c00331{left:580.800000px;}
.x111_c00331{left:583.200000px;}
.xe3_c00331{left:587.100000px;}
.x132_c00331{left:588.450000px;}
.x104_c00331{left:590.100000px;}
.xc1_c00331{left:591.600000px;}
.x13c_c00331{left:594.600000px;}
.x101_c00331{left:596.100000px;}
.xf8_c00331{left:597.150000px;}
.xd0_c00331{left:598.350000px;}
.x15d_c00331{left:600.450000px;}
.x127_c00331{left:603.000000px;}
.x105_c00331{left:605.550000px;}
.xf3_c00331{left:607.650000px;}
.xe6_c00331{left:609.150000px;}
.xe2_c00331{left:611.100000px;}
.xc2_c00331{left:613.200000px;}
.xb8_c00331{left:615.300000px;}
.x123_c00331{left:617.550000px;}
.x13f_c00331{left:620.250000px;}
.xe4_c00331{left:622.050000px;}
.xf9_c00331{left:624.900000px;}
.xeb_c00331{left:627.900000px;}
.xfe_c00331{left:629.250000px;}
.xbc_c00331{left:630.450000px;}
.xd1_c00331{left:632.250000px;}
.xdc_c00331{left:633.750000px;}
.x11a_c00331{left:637.200000px;}
.x128_c00331{left:638.250000px;}
.xc3_c00331{left:639.450000px;}
.x137_c00331{left:640.500000px;}
.xb1_c00331{left:641.550000px;}
.xe7_c00331{left:643.800000px;}
.x151_c00331{left:646.200000px;}
.x121_c00331{left:647.250000px;}
.xfa_c00331{left:649.800000px;}
.xb2_c00331{left:650.850000px;}
.x109_c00331{left:651.900000px;}
.x147_c00331{left:653.100000px;}
.x13b_c00331{left:654.150000px;}
.x133_c00331{left:655.800000px;}
.x129_c00331{left:659.100000px;}
.xc4_c00331{left:663.150000px;}
.xb9_c00331{left:665.700000px;}
.xec_c00331{left:667.500000px;}
.x12e_c00331{left:671.700000px;}
.x10c_c00331{left:673.200000px;}
.xee_c00331{left:674.400000px;}
.xc9_c00331{left:676.800000px;}
.x12a_c00331{left:677.850000px;}
.xba_c00331{left:680.400000px;}
.x148_c00331{left:682.650000px;}
.xd7_c00331{left:684.450000px;}
.xe8_c00331{left:685.500000px;}
.x144_c00331{left:686.700000px;}
.xb3_c00331{left:688.650000px;}
.xfb_c00331{left:689.700000px;}
.xca_c00331{left:691.500000px;}
.xff_c00331{left:694.050000px;}
.x152_c00331{left:695.550000px;}
.x10a_c00331{left:696.600000px;}
.xc5_c00331{left:699.450000px;}
.x15e_c00331{left:700.500000px;}
.x117_c00331{left:702.750000px;}
.xdd_c00331{left:704.700000px;}
.x145_c00331{left:706.200000px;}
.x134_c00331{left:707.700000px;}
.xcb_c00331{left:710.250000px;}
.x138_c00331{left:711.450000px;}
.xbd_c00331{left:712.500000px;}
.x124_c00331{left:714.750000px;}
.xd2_c00331{left:715.800000px;}
.x118_c00331{left:717.450000px;}
.x116_c00331{left:718.650000px;}
.x106_c00331{left:720.300000px;}
.x140_c00331{left:722.850000px;}
.xd8_c00331{left:724.800000px;}
.x12b_c00331{left:726.450000px;}
.x135_c00331{left:728.250000px;}
.xc6_c00331{left:729.300000px;}
.x142_c00331{left:731.700000px;}
.xef_c00331{left:734.400000px;}
.x15a_c00331{left:738.150000px;}
.xb4_c00331{left:741.900000px;}
.x11b_c00331{left:743.700000px;}
.xde_c00331{left:745.350000px;}
.xcc_c00331{left:747.300000px;}
.xbe_c00331{left:748.500000px;}
.x11d_c00331{left:751.950000px;}
.x157_c00331{left:753.000000px;}
.x13d_c00331{left:754.350000px;}
.xe9_c00331{left:756.750000px;}
.x107_c00331{left:759.600000px;}
.xb5_c00331{left:761.400000px;}
.xd3_c00331{left:763.350000px;}
.xf4_c00331{left:765.600000px;}
.xcd_c00331{left:768.600000px;}
.x153_c00331{left:770.100000px;}
.xdf_c00331{left:771.600000px;}
.x108_c00331{left:772.950000px;}
.x10d_c00331{left:774.750000px;}
.xd9_c00331{left:777.300000px;}
.x12f_c00331{left:778.350000px;}
.xed_c00331{left:779.550000px;}
.x15f_c00331{left:780.750000px;}
.x150_c00331{left:781.800000px;}
.x14c_c00331{left:785.100000px;}
.x10b_c00331{left:786.300000px;}
.xd4_c00331{left:788.550000px;}
.x149_c00331{left:789.600000px;}
.xf0_c00331{left:790.800000px;}
.x141_c00331{left:793.350000px;}
.x13e_c00331{left:798.600000px;}
.xc7_c00331{left:801.000000px;}
.xda_c00331{left:804.000000px;}
.x136_c00331{left:805.350000px;}
.xbf_c00331{left:806.850000px;}
.x10e_c00331{left:809.250000px;}
.x126_c00331{left:812.100000px;}
.x11e_c00331{left:814.200000px;}
.xd5_c00331{left:815.550000px;}
.xb6_c00331{left:816.900000px;}
.x112_c00331{left:818.400000px;}
.x143_c00331{left:822.750000px;}
.xf5_c00331{left:824.400000px;}
.xce_c00331{left:825.600000px;}
.xc0_c00331{left:827.700000px;}
.x14e_c00331{left:829.650000px;}
.x130_c00331{left:833.100000px;}
.x11f_c00331{left:838.350000px;}
.x122_c00331{left:839.400000px;}
.x10f_c00331{left:840.600000px;}
.x154_c00331{left:843.600000px;}
.xdb_c00331{left:846.150000px;}
.x102_c00331{left:847.500000px;}
.x113_c00331{left:848.700000px;}
.x131_c00331{left:850.050000px;}
.x11c_c00331{left:851.700000px;}
.xe0_c00331{left:852.900000px;}
.x15c_c00331{left:854.250000px;}
.x14a_c00331{left:855.450000px;}
.xd6_c00331{left:857.250000px;}
.xf1_c00331{left:858.900000px;}
.xf6_c00331{left:861.450000px;}
.x103_c00331{left:868.050000px;}
.xbb_c00331{left:872.700000px;}
.xc8_c00331{left:873.750000px;}
.x110_c00331{left:875.100000px;}
.x114_c00331{left:876.300000px;}
.xe1_c00331{left:878.850000px;}
.x12c_c00331{left:882.300000px;}
.xcf_c00331{left:883.500000px;}
.x158_c00331{left:884.550000px;}
.xb7_c00331{left:885.600000px;}
.x125_c00331{left:887.700000px;}
.x139_c00331{left:889.200000px;}
.x146_c00331{left:893.100000px;}
.x14d_c00331{left:895.500000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls2_c00331{letter-spacing:0.000000pt;}
.ls0_c00331{letter-spacing:49.523810pt;}
.ls1_c00331{letter-spacing:62.222222pt;}
.ws4_c00331{word-spacing:-88.888889pt;}
.ws1_c00331{word-spacing:-76.190476pt;}
.ws7_c00331{word-spacing:-9.015873pt;}
.wsd_c00331{word-spacing:0.000000pt;}
.ws0_c00331{word-spacing:2.444444pt;}
.ws6_c00331{word-spacing:4.444444pt;}
.ws3_c00331{word-spacing:6.388889pt;}
.wsc_c00331{word-spacing:9.596603pt;}
.ws8_c00331{word-spacing:13.192982pt;}
.ws2_c00331{word-spacing:14.920635pt;}
.ws9_c00331{word-spacing:22.857143pt;}
.wsa_c00331{word-spacing:35.555556pt;}
.ws5_c00331{word-spacing:57.777778pt;}
.wsb_c00331{word-spacing:60.116959pt;}
._3_c00331{margin-left:-61.693122pt;}
._1_c00331{margin-left:-49.523810pt;}
._0_c00331{width:3.174603pt;}
._2_c00331{width:46.944444pt;}
._4_c00331{width:52.698413pt;}
._5_c00331{width:65.925926pt;}
.fs5_c00331{font-size:42.666667pt;}
.fs3_c00331{font-size:48.000000pt;}
.fs4_c00331{font-size:53.333333pt;}
.fs2_c00331{font-size:58.666667pt;}
.fs0_c00331{font-size:64.000000pt;}
.fs1_c00331{font-size:69.333333pt;}
.y0_c00331{bottom:0.000000pt;}
.y6c_c00331{bottom:155.600000pt;}
.y6b_c00331{bottom:170.266667pt;}
.y36_c00331{bottom:171.466667pt;}
.y6a_c00331{bottom:183.333333pt;}
.y35_c00331{bottom:187.466667pt;}
.y69_c00331{bottom:196.133333pt;}
.y34_c00331{bottom:206.666667pt;}
.y68_c00331{bottom:208.933333pt;}
.y33_c00331{bottom:219.466667pt;}
.y67_c00331{bottom:221.733333pt;}
.y32_c00331{bottom:230.400000pt;}
.y66_c00331{bottom:234.266667pt;}
.y31_c00331{bottom:246.800000pt;}
.y65_c00331{bottom:247.066667pt;}
.y64_c00331{bottom:259.866667pt;}
.y30_c00331{bottom:262.133333pt;}
.y63_c00331{bottom:272.666667pt;}
.y2f_c00331{bottom:278.133333pt;}
.y62_c00331{bottom:285.466667pt;}
.y2e_c00331{bottom:294.133333pt;}
.y61_c00331{bottom:297.866667pt;}
.y2d_c00331{bottom:310.133333pt;}
.y60_c00331{bottom:310.666667pt;}
.y5f_c00331{bottom:323.466667pt;}
.y2c_c00331{bottom:329.866667pt;}
.y2b_c00331{bottom:345.866667pt;}
.y5e_c00331{bottom:360.400000pt;}
.y2a_c00331{bottom:361.866667pt;}
.y5d_c00331{bottom:376.666667pt;}
.y29_c00331{bottom:377.600000pt;}
.y5c_c00331{bottom:392.666667pt;}
.y28_c00331{bottom:393.600000pt;}
.y27_c00331{bottom:409.600000pt;}
.y5b_c00331{bottom:412.133333pt;}
.y5a_c00331{bottom:428.133333pt;}
.y26_c00331{bottom:428.800000pt;}
.y59_c00331{bottom:447.466667pt;}
.y25_c00331{bottom:448.533333pt;}
.y58_c00331{bottom:463.466667pt;}
.y24_c00331{bottom:467.466667pt;}
.y57_c00331{bottom:479.200000pt;}
.y23_c00331{bottom:485.200000pt;}
.y56_c00331{bottom:495.200000pt;}
.y22_c00331{bottom:502.533333pt;}
.y55_c00331{bottom:510.933333pt;}
.y21_c00331{bottom:518.266667pt;}
.y54_c00331{bottom:526.933333pt;}
.y20_c00331{bottom:534.000000pt;}
.y53_c00331{bottom:542.666667pt;}
.y1f_c00331{bottom:549.733333pt;}
.y52_c00331{bottom:558.666667pt;}
.y1e_c00331{bottom:568.000000pt;}
.y51_c00331{bottom:574.400000pt;}
.y1d_c00331{bottom:584.933333pt;}
.y50_c00331{bottom:590.400000pt;}
.y1c_c00331{bottom:601.200000pt;}
.y4f_c00331{bottom:606.133333pt;}
.y1b_c00331{bottom:616.533333pt;}
.y4e_c00331{bottom:625.600000pt;}
.y1a_c00331{bottom:632.266667pt;}
.y4d_c00331{bottom:638.400000pt;}
.y19_c00331{bottom:648.000000pt;}
.y4c_c00331{bottom:650.533333pt;}
.y18_c00331{bottom:664.000000pt;}
.y4b_c00331{bottom:664.933333pt;}
.y17_c00331{bottom:680.000000pt;}
.y4a_c00331{bottom:681.466667pt;}
.y16_c00331{bottom:695.333333pt;}
.y49_c00331{bottom:697.200000pt;}
.y15_c00331{bottom:711.333333pt;}
.y48_c00331{bottom:712.933333pt;}
.y14_c00331{bottom:726.666667pt;}
.y47_c00331{bottom:731.866667pt;}
.y13_c00331{bottom:742.666667pt;}
.y46_c00331{bottom:748.133333pt;}
.y12_c00331{bottom:758.666667pt;}
.y45_c00331{bottom:764.133333pt;}
.y11_c00331{bottom:774.000000pt;}
.y44_c00331{bottom:779.866667pt;}
.y10_c00331{bottom:790.000000pt;}
.y43_c00331{bottom:799.733333pt;}
.yf_c00331{bottom:805.733333pt;}
.y42_c00331{bottom:818.933333pt;}
.ye_c00331{bottom:824.000000pt;}
.yd_c00331{bottom:835.200000pt;}
.y41_c00331{bottom:837.466667pt;}
.yc_c00331{bottom:850.933333pt;}
.y40_c00331{bottom:858.533333pt;}
.yb_c00331{bottom:866.266667pt;}
.y3f_c00331{bottom:874.666667pt;}
.ya_c00331{bottom:883.200000pt;}
.y3e_c00331{bottom:890.666667pt;}
.y9_c00331{bottom:899.200000pt;}
.y3d_c00331{bottom:906.400000pt;}
.y8_c00331{bottom:914.533333pt;}
.y3c_c00331{bottom:921.733333pt;}
.y7_c00331{bottom:930.266667pt;}
.y3b_c00331{bottom:937.733333pt;}
.y3a_c00331{bottom:953.466667pt;}
.y6_c00331{bottom:955.866667pt;}
.y5_c00331{bottom:963.200000pt;}
.y39_c00331{bottom:969.200000pt;}
.y4_c00331{bottom:980.800000pt;}
.y38_c00331{bottom:984.933333pt;}
.y3_c00331{bottom:996.800000pt;}
.y37_c00331{bottom:1000.933333pt;}
.y1_c00331{bottom:1015.333333pt;}
.y2_c00331{bottom:1022.000000pt;}
.h7_c00331{height:42.666667pt;}
.h5_c00331{height:48.000000pt;}
.h6_c00331{height:53.333333pt;}
.h4_c00331{height:58.666667pt;}
.h2_c00331{height:64.000000pt;}
.h3_c00331{height:69.333333pt;}
.h1_c00331{height:1129.333333pt;}
.h0_c00331{height:1129.599935pt;}
.w1_c00331{width:854.666667pt;}
.w0_c00331{width:854.720052pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:170.266667pt;}
.x4b_c00331{left:171.466667pt;}
.x80_c00331{left:176.000000pt;}
.x8b_c00331{left:178.266667pt;}
.x8f_c00331{left:179.200000pt;}
.x9e_c00331{left:181.733333pt;}
.x42_c00331{left:183.200000pt;}
.xa8_c00331{left:184.266667pt;}
.x3_c00331{left:185.333333pt;}
.x39_c00331{left:186.266667pt;}
.x4e_c00331{left:188.133333pt;}
.x58_c00331{left:189.600000pt;}
.x64_c00331{left:190.666667pt;}
.x7e_c00331{left:192.133333pt;}
.x87_c00331{left:193.066667pt;}
.x8d_c00331{left:194.666667pt;}
.x95_c00331{left:195.600000pt;}
.x48_c00331{left:196.800000pt;}
.xa1_c00331{left:198.400000pt;}
.xa6_c00331{left:199.733333pt;}
.xad_c00331{left:202.666667pt;}
.xd_c00331{left:204.800000pt;}
.x4f_c00331{left:209.200000pt;}
.x82_c00331{left:210.266667pt;}
.x19_c00331{left:211.200000pt;}
.x8e_c00331{left:214.533333pt;}
.x65_c00331{left:216.266667pt;}
.x25_c00331{left:217.333333pt;}
.x13_c00331{left:219.866667pt;}
.x1e_c00331{left:222.800000pt;}
.x2a_c00331{left:224.533333pt;}
.x43_c00331{left:228.000000pt;}
.x3a_c00331{left:232.266667pt;}
.x14_c00331{left:233.600000pt;}
.x71_c00331{left:236.000000pt;}
.x59_c00331{left:236.933333pt;}
.x96_c00331{left:238.533333pt;}
.x2b_c00331{left:239.600000pt;}
.x32_c00331{left:241.066667pt;}
.x75_c00331{left:242.533333pt;}
.x9c_c00331{left:244.533333pt;}
.x4_c00331{left:247.733333pt;}
.x4c_c00331{left:249.600000pt;}
.xa4_c00331{left:250.800000pt;}
.x52_c00331{left:252.666667pt;}
.x44_c00331{left:253.600000pt;}
.x5a_c00331{left:255.200000pt;}
.x97_c00331{left:256.400000pt;}
.x60_c00331{left:258.800000pt;}
.x98_c00331{left:259.866667pt;}
.x78_c00331{left:261.200000pt;}
.x83_c00331{left:262.800000pt;}
.x15_c00331{left:263.733333pt;}
.x89_c00331{left:265.733333pt;}
.x7c_c00331{left:267.200000pt;}
.x33_c00331{left:268.266667pt;}
.x2c_c00331{left:269.733333pt;}
.x16_c00331{left:272.000000pt;}
.x3b_c00331{left:273.200000pt;}
.x1f_c00331{left:275.200000pt;}
.x9d_c00331{left:276.266667pt;}
.x34_c00331{left:277.200000pt;}
.x5_c00331{left:280.000000pt;}
.x79_c00331{left:282.266667pt;}
.x4d_c00331{left:284.133333pt;}
.x26_c00331{left:286.400000pt;}
.x2d_c00331{left:288.000000pt;}
.x3c_c00331{left:288.933333pt;}
.x66_c00331{left:289.866667pt;}
.x35_c00331{left:291.333333pt;}
.x45_c00331{left:292.533333pt;}
.x6f_c00331{left:294.266667pt;}
.x72_c00331{left:296.800000pt;}
.x7a_c00331{left:299.866667pt;}
.x5b_c00331{left:302.266667pt;}
.x2e_c00331{left:304.933333pt;}
.xae_c00331{left:306.666667pt;}
.x17_c00331{left:308.133333pt;}
.x6b_c00331{left:309.466667pt;}
.x53_c00331{left:311.200000pt;}
.xab_c00331{left:312.933333pt;}
.x84_c00331{left:314.666667pt;}
.x3f_c00331{left:315.600000pt;}
.xe_c00331{left:317.066667pt;}
.x61_c00331{left:318.266667pt;}
.x99_c00331{left:319.333333pt;}
.x6_c00331{left:320.933333pt;}
.x1a_c00331{left:322.133333pt;}
.x55_c00331{left:323.866667pt;}
.xa2_c00331{left:325.066667pt;}
.x3d_c00331{left:327.066667pt;}
.x9f_c00331{left:328.666667pt;}
.x81_c00331{left:329.866667pt;}
.x20_c00331{left:332.533333pt;}
.x5c_c00331{left:334.266667pt;}
.x6c_c00331{left:336.000000pt;}
.x8a_c00331{left:337.733333pt;}
.x7f_c00331{left:338.666667pt;}
.x36_c00331{left:341.866667pt;}
.x18_c00331{left:343.066667pt;}
.x3e_c00331{left:344.400000pt;}
.x91_c00331{left:348.000000pt;}
.x56_c00331{left:350.533333pt;}
.x21_c00331{left:351.466667pt;}
.x62_c00331{left:353.200000pt;}
.x7_c00331{left:354.266667pt;}
.x27_c00331{left:355.466667pt;}
.x8c_c00331{left:356.533333pt;}
.x2f_c00331{left:359.066667pt;}
.x94_c00331{left:361.733333pt;}
.xf_c00331{left:363.200000pt;}
.xa3_c00331{left:364.133333pt;}
.x37_c00331{left:366.133333pt;}
.x67_c00331{left:367.333333pt;}
.x5d_c00331{left:368.800000pt;}
.x8_c00331{left:370.533333pt;}
.x85_c00331{left:372.000000pt;}
.x73_c00331{left:374.133333pt;}
.x7d_c00331{left:375.200000pt;}
.x6d_c00331{left:376.266667pt;}
.x30_c00331{left:378.000000pt;}
.x22_c00331{left:379.333333pt;}
.x63_c00331{left:381.733333pt;}
.x28_c00331{left:384.000000pt;}
.x2_c00331{left:385.333333pt;}
.x92_c00331{left:387.066667pt;}
.x1b_c00331{left:388.000000pt;}
.x9a_c00331{left:389.066667pt;}
.x76_c00331{left:390.400000pt;}
.xa5_c00331{left:391.733333pt;}
.xaa_c00331{left:395.066667pt;}
.x10_c00331{left:396.133333pt;}
.x90_c00331{left:397.066667pt;}
.x93_c00331{left:398.533333pt;}
.x9_c00331{left:400.266667pt;}
.x40_c00331{left:402.266667pt;}
.x50_c00331{left:404.400000pt;}
.x49_c00331{left:406.400000pt;}
.x1c_c00331{left:408.533333pt;}
.xa7_c00331{left:409.866667pt;}
.x68_c00331{left:411.466667pt;}
.x74_c00331{left:413.466667pt;}
.x77_c00331{left:416.933333pt;}
.x31_c00331{left:418.000000pt;}
.x5e_c00331{left:419.066667pt;}
.x57_c00331{left:421.200000pt;}
.x23_c00331{left:424.400000pt;}
.x38_c00331{left:425.600000pt;}
.x11_c00331{left:427.866667pt;}
.x7b_c00331{left:429.466667pt;}
.xa_c00331{left:430.666667pt;}
.x46_c00331{left:431.733333pt;}
.x4a_c00331{left:432.666667pt;}
.x51_c00331{left:434.133333pt;}
.x5f_c00331{left:436.400000pt;}
.x9b_c00331{left:437.733333pt;}
.x29_c00331{left:439.333333pt;}
.x24_c00331{left:441.066667pt;}
.x6e_c00331{left:442.800000pt;}
.x1d_c00331{left:444.400000pt;}
.x70_c00331{left:446.266667pt;}
.x86_c00331{left:448.800000pt;}
.xb_c00331{left:450.133333pt;}
.x69_c00331{left:451.466667pt;}
.xaf_c00331{left:453.200000pt;}
.xa0_c00331{left:455.066667pt;}
.x41_c00331{left:456.133333pt;}
.x47_c00331{left:457.600000pt;}
.x12_c00331{left:458.933333pt;}
.x88_c00331{left:460.933333pt;}
.x6a_c00331{left:462.400000pt;}
.x54_c00331{left:466.933333pt;}
.xa9_c00331{left:468.400000pt;}
.xac_c00331{left:471.466667pt;}
.xc_c00331{left:485.066667pt;}
.xe5_c00331{left:487.733333pt;}
.xea_c00331{left:488.666667pt;}
.x100_c00331{left:489.600000pt;}
.x119_c00331{left:491.466667pt;}
.xfc_c00331{left:494.666667pt;}
.x14f_c00331{left:495.866667pt;}
.x155_c00331{left:496.933333pt;}
.x159_c00331{left:498.000000pt;}
.xb0_c00331{left:502.133333pt;}
.xf2_c00331{left:503.333333pt;}
.xf7_c00331{left:505.200000pt;}
.xfd_c00331{left:506.533333pt;}
.x120_c00331{left:507.466667pt;}
.x12d_c00331{left:508.800000pt;}
.x13a_c00331{left:510.133333pt;}
.x14b_c00331{left:511.466667pt;}
.x15b_c00331{left:512.400000pt;}
.x156_c00331{left:513.866667pt;}
.x115_c00331{left:516.266667pt;}
.x111_c00331{left:518.400000pt;}
.xe3_c00331{left:521.866667pt;}
.x132_c00331{left:523.066667pt;}
.x104_c00331{left:524.533333pt;}
.xc1_c00331{left:525.866667pt;}
.x13c_c00331{left:528.533333pt;}
.x101_c00331{left:529.866667pt;}
.xf8_c00331{left:530.800000pt;}
.xd0_c00331{left:531.866667pt;}
.x15d_c00331{left:533.733333pt;}
.x127_c00331{left:536.000000pt;}
.x105_c00331{left:538.266667pt;}
.xf3_c00331{left:540.133333pt;}
.xe6_c00331{left:541.466667pt;}
.xe2_c00331{left:543.200000pt;}
.xc2_c00331{left:545.066667pt;}
.xb8_c00331{left:546.933333pt;}
.x123_c00331{left:548.933333pt;}
.x13f_c00331{left:551.333333pt;}
.xe4_c00331{left:552.933333pt;}
.xf9_c00331{left:555.466667pt;}
.xeb_c00331{left:558.133333pt;}
.xfe_c00331{left:559.333333pt;}
.xbc_c00331{left:560.400000pt;}
.xd1_c00331{left:562.000000pt;}
.xdc_c00331{left:563.333333pt;}
.x11a_c00331{left:566.400000pt;}
.x128_c00331{left:567.333333pt;}
.xc3_c00331{left:568.400000pt;}
.x137_c00331{left:569.333333pt;}
.xb1_c00331{left:570.266667pt;}
.xe7_c00331{left:572.266667pt;}
.x151_c00331{left:574.400000pt;}
.x121_c00331{left:575.333333pt;}
.xfa_c00331{left:577.600000pt;}
.xb2_c00331{left:578.533333pt;}
.x109_c00331{left:579.466667pt;}
.x147_c00331{left:580.533333pt;}
.x13b_c00331{left:581.466667pt;}
.x133_c00331{left:582.933333pt;}
.x129_c00331{left:585.866667pt;}
.xc4_c00331{left:589.466667pt;}
.xb9_c00331{left:591.733333pt;}
.xec_c00331{left:593.333333pt;}
.x12e_c00331{left:597.066667pt;}
.x10c_c00331{left:598.400000pt;}
.xee_c00331{left:599.466667pt;}
.xc9_c00331{left:601.600000pt;}
.x12a_c00331{left:602.533333pt;}
.xba_c00331{left:604.800000pt;}
.x148_c00331{left:606.800000pt;}
.xd7_c00331{left:608.400000pt;}
.xe8_c00331{left:609.333333pt;}
.x144_c00331{left:610.400000pt;}
.xb3_c00331{left:612.133333pt;}
.xfb_c00331{left:613.066667pt;}
.xca_c00331{left:614.666667pt;}
.xff_c00331{left:616.933333pt;}
.x152_c00331{left:618.266667pt;}
.x10a_c00331{left:619.200000pt;}
.xc5_c00331{left:621.733333pt;}
.x15e_c00331{left:622.666667pt;}
.x117_c00331{left:624.666667pt;}
.xdd_c00331{left:626.400000pt;}
.x145_c00331{left:627.733333pt;}
.x134_c00331{left:629.066667pt;}
.xcb_c00331{left:631.333333pt;}
.x138_c00331{left:632.400000pt;}
.xbd_c00331{left:633.333333pt;}
.x124_c00331{left:635.333333pt;}
.xd2_c00331{left:636.266667pt;}
.x118_c00331{left:637.733333pt;}
.x116_c00331{left:638.800000pt;}
.x106_c00331{left:640.266667pt;}
.x140_c00331{left:642.533333pt;}
.xd8_c00331{left:644.266667pt;}
.x12b_c00331{left:645.733333pt;}
.x135_c00331{left:647.333333pt;}
.xc6_c00331{left:648.266667pt;}
.x142_c00331{left:650.400000pt;}
.xef_c00331{left:652.800000pt;}
.x15a_c00331{left:656.133333pt;}
.xb4_c00331{left:659.466667pt;}
.x11b_c00331{left:661.066667pt;}
.xde_c00331{left:662.533333pt;}
.xcc_c00331{left:664.266667pt;}
.xbe_c00331{left:665.333333pt;}
.x11d_c00331{left:668.400000pt;}
.x157_c00331{left:669.333333pt;}
.x13d_c00331{left:670.533333pt;}
.xe9_c00331{left:672.666667pt;}
.x107_c00331{left:675.200000pt;}
.xb5_c00331{left:676.800000pt;}
.xd3_c00331{left:678.533333pt;}
.xf4_c00331{left:680.533333pt;}
.xcd_c00331{left:683.200000pt;}
.x153_c00331{left:684.533333pt;}
.xdf_c00331{left:685.866667pt;}
.x108_c00331{left:687.066667pt;}
.x10d_c00331{left:688.666667pt;}
.xd9_c00331{left:690.933333pt;}
.x12f_c00331{left:691.866667pt;}
.xed_c00331{left:692.933333pt;}
.x15f_c00331{left:694.000000pt;}
.x150_c00331{left:694.933333pt;}
.x14c_c00331{left:697.866667pt;}
.x10b_c00331{left:698.933333pt;}
.xd4_c00331{left:700.933333pt;}
.x149_c00331{left:701.866667pt;}
.xf0_c00331{left:702.933333pt;}
.x141_c00331{left:705.200000pt;}
.x13e_c00331{left:709.866667pt;}
.xc7_c00331{left:712.000000pt;}
.xda_c00331{left:714.666667pt;}
.x136_c00331{left:715.866667pt;}
.xbf_c00331{left:717.200000pt;}
.x10e_c00331{left:719.333333pt;}
.x126_c00331{left:721.866667pt;}
.x11e_c00331{left:723.733333pt;}
.xd5_c00331{left:724.933333pt;}
.xb6_c00331{left:726.133333pt;}
.x112_c00331{left:727.466667pt;}
.x143_c00331{left:731.333333pt;}
.xf5_c00331{left:732.800000pt;}
.xce_c00331{left:733.866667pt;}
.xc0_c00331{left:735.733333pt;}
.x14e_c00331{left:737.466667pt;}
.x130_c00331{left:740.533333pt;}
.x11f_c00331{left:745.200000pt;}
.x122_c00331{left:746.133333pt;}
.x10f_c00331{left:747.200000pt;}
.x154_c00331{left:749.866667pt;}
.xdb_c00331{left:752.133333pt;}
.x102_c00331{left:753.333333pt;}
.x113_c00331{left:754.400000pt;}
.x131_c00331{left:755.600000pt;}
.x11c_c00331{left:757.066667pt;}
.xe0_c00331{left:758.133333pt;}
.x15c_c00331{left:759.333333pt;}
.x14a_c00331{left:760.400000pt;}
.xd6_c00331{left:762.000000pt;}
.xf1_c00331{left:763.466667pt;}
.xf6_c00331{left:765.733333pt;}
.x103_c00331{left:771.600000pt;}
.xbb_c00331{left:775.733333pt;}
.xc8_c00331{left:776.666667pt;}
.x110_c00331{left:777.866667pt;}
.x114_c00331{left:778.933333pt;}
.xe1_c00331{left:781.200000pt;}
.x12c_c00331{left:784.266667pt;}
.xcf_c00331{left:785.333333pt;}
.x158_c00331{left:786.266667pt;}
.xb7_c00331{left:787.200000pt;}
.x125_c00331{left:789.066667pt;}
.x139_c00331{left:790.400000pt;}
.x146_c00331{left:793.866667pt;}
.x14d_c00331{left:796.000000pt;}
}





/* 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_c00332 {
    display:none;
  }
  .loading-indicator_c00332.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00332 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_c00332 { 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_c00332" -> "#page-container .classname_c00332")
 */
.pf_c00332 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00332 { /* 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_c00332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00332 { /* 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_c00332 { /* 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_c00332 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00332 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00332 {overflow:visible;}
  }
}
.c_c00332 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00332 { /* 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_c00332:after { /* webkit #35443 */
  content: '';
}
.t_c00332:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00332 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 */
}
.__c00332 { /* 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_c00332 { /* info for Javascript */
  display:none;
}
.l_c00332 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00332 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00332 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00332: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_c00332 {
    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_c00332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00332.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_c00332 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00332;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.000000;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;}
.me1_c00332{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00332{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00332{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m32_c00332{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m48_c00332{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00332{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m47_c00332{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m84_c00332{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m40_c00332{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m57_c00332{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m46_c00332{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mae_c00332{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7_c00332{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m24_c00332{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00332{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m49_c00332{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00332{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00332{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m112_c00332{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00332{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00332{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m119_c00332{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m108_c00332{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00332{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m22_c00332{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00332{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m19_c00332{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m21_c00332{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m39_c00332{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00332{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.me5_c00332{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00332{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m125_c00332{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00332{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00332{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m12_c00332{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00332{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m51_c00332{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m67_c00332{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mad_c00332{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00332{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00332{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00332{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me7_c00332{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m31_c00332{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00332{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m9_c00332{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.maa_c00332{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00332{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00332{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m20_c00332{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00332{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m36_c00332{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00332{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00332{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m127_c00332{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m120_c00332{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m28_c00332{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00332{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m38_c00332{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m114_c00332{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00332{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00332{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m52_c00332{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00332{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00332{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m78_c00332{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.md_c00332{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m23_c00332{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m117_c00332{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me6_c00332{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00332{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m30_c00332{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m98_c00332{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00332{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m68_c00332{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00332{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00332{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m59_c00332{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m60_c00332{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00332{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m101_c00332{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00332{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m126_c00332{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mde_c00332{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.md8_c00332{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00332{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mda_c00332{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mac_c00332{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00332{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md7_c00332{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00332{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00332{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m11_c00332{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mf_c00332{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m37_c00332{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00332{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00332{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m116_c00332{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00332{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00332{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00332{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00332{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m102_c00332{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m14_c00332{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00332{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00332{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00332{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00332{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m121_c00332{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00332{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00332{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00332{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m122_c00332{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m65_c00332{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00332{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00332{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mc_c00332{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00332{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00332{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m70_c00332{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me8_c00332{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m115_c00332{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m29_c00332{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb_c00332{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00332{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00332{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00332{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00332{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m53_c00332{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00332{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m82_c00332{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m27_c00332{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m81_c00332{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m54_c00332{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00332{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00332{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00332{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00332{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00332{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00332{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m33_c00332{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m74_c00332{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m94_c00332{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00332{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00332{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00332{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00332{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00332{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3_c00332{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m58_c00332{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00332{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00332{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00332{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00332{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00332{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mef_c00332{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m55_c00332{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md4_c00332{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.maf_c00332{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m13_c00332{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.md6_c00332{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me2_c00332{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00332{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mba_c00332{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00332{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md9_c00332{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mab_c00332{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m18_c00332{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md0_c00332{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00332{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mce_c00332{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00332{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00332{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00332{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m35_c00332{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00332{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00332{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m90_c00332{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mff_c00332{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m56_c00332{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00332{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me0_c00332{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m15_c00332{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m92_c00332{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00332{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m93_c00332{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00332{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m63_c00332{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m111_c00332{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.med_c00332{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m64_c00332{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m66_c00332{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00332{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00332{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me_c00332{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00332{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00332{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m109_c00332{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m86_c00332{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m69_c00332{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00332{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00332{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md3_c00332{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00332{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00332{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m34_c00332{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00332{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m73_c00332{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00332{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00332{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m97_c00332{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md5_c00332{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m89_c00332{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m123_c00332{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md1_c00332{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m79_c00332{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m72_c00332{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00332{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m96_c00332{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m113_c00332{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00332{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m50_c00332{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m62_c00332{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00332{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mee_c00332{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m110_c00332{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00332{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m95_c00332{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8_c00332{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m80_c00332{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00332{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m26_c00332{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00332{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);}
.m61_c00332{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00332{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00332{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10_c00332{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00332{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00332{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m91_c00332{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m17_c00332{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mec_c00332{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m44_c00332{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m45_c00332{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00332{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mca_c00332{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00332{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00332{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.ma_c00332{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mea_c00332{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00332{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me4_c00332{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.meb_c00332{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m25_c00332{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00332{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00332{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00332{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m100_c00332{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00332{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00332{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6_c00332{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m16_c00332{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00332{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5_c00332{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m118_c00332{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m71_c00332{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.md2_c00332{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00332{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00332{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m85_c00332{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00332{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m87_c00332{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00332{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m103_c00332{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.me3_c00332{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m4_c00332{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42_c00332{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00332{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m41_c00332{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m88_c00332{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m99_c00332{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m75_c00332{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m77_c00332{transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);}
.m76_c00332{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m83_c00332{transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);}
.m0_c00332{transform:matrix(0.403500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403500,0.000000,0.000000,0.250000,0,0);}
.m128_c00332{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me9_c00332{transform:matrix(0.429000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429000,0.000000,0.000000,0.250000,0,0);}
.m104_c00332{transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);}
.m105_c00332{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m107_c00332{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m106_c00332{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m43_c00332{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m124_c00332{transform:matrix(0.807000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls1_c00332{letter-spacing:0.000000px;}
.ls0_c00332{letter-spacing:55.714286px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{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__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c00332{word-spacing:-85.714286px;}
.ws6_c00332{word-spacing:-5.540541px;}
.ws19_c00332{word-spacing:-3.165644px;}
.ws1a_c00332{word-spacing:0.000000px;}
.ws13_c00332{word-spacing:4.736842px;}
.ws7_c00332{word-spacing:8.750000px;}
.ws18_c00332{word-spacing:10.443908px;}
.ws5_c00332{word-spacing:11.284404px;}
.ws10_c00332{word-spacing:11.875000px;}
.ws9_c00332{word-spacing:13.500000px;}
.ws2_c00332{word-spacing:15.168901px;}
.ws0_c00332{word-spacing:15.500000px;}
.ws8_c00332{word-spacing:15.527550px;}
.wsf_c00332{word-spacing:16.785714px;}
.ws1_c00332{word-spacing:18.000000px;}
.wsa_c00332{word-spacing:19.994638px;}
.wse_c00332{word-spacing:22.142857px;}
.wsc_c00332{word-spacing:22.812500px;}
.ws3_c00332{word-spacing:23.211796px;}
.wsd_c00332{word-spacing:25.714286px;}
.ws16_c00332{word-spacing:29.285714px;}
.wsb_c00332{word-spacing:33.157895px;}
.ws14_c00332{word-spacing:35.833333px;}
.ws4_c00332{word-spacing:36.000000px;}
.ws17_c00332{word-spacing:40.000000px;}
.ws11_c00332{word-spacing:126.538462px;}
.ws15_c00332{word-spacing:740.000000px;}
._6_c00332{margin-left:-55.714286px;}
._0_c00332{width:45.250000px;}
._1_c00332{width:50.211796px;}
._3_c00332{width:53.428954px;}
._5_c00332{width:55.714286px;}
._2_c00332{width:58.254692px;}
._9_c00332{width:59.285714px;}
._4_c00332{width:64.642857px;}
._7_c00332{width:70.000000px;}
._8_c00332{width:74.166667px;}
.fc0_c00332{color:transparent;}
.fs7_c00332{font-size:30.000000px;}
.fs8_c00332{font-size:36.000000px;}
.fs3_c00332{font-size:42.000000px;}
.fs6_c00332{font-size:48.000000px;}
.fs4_c00332{font-size:54.000000px;}
.fs5_c00332{font-size:60.000000px;}
.fs2_c00332{font-size:66.000000px;}
.fs1_c00332{font-size:72.000000px;}
.fs0_c00332{font-size:84.000000px;}
.y0_c00332{bottom:0.000000px;}
.y6e_c00332{bottom:171.600000px;}
.y6d_c00332{bottom:188.550000px;}
.y33_c00332{bottom:192.600000px;}
.y6c_c00332{bottom:203.700000px;}
.y32_c00332{bottom:207.600000px;}
.y31_c00332{bottom:221.700000px;}
.y6b_c00332{bottom:223.500000px;}
.y30_c00332{bottom:236.100000px;}
.y6a_c00332{bottom:248.100000px;}
.y2f_c00332{bottom:250.200000px;}
.y2e_c00332{bottom:264.600000px;}
.y69_c00332{bottom:265.800000px;}
.y2d_c00332{bottom:279.000000px;}
.y68_c00332{bottom:283.500000px;}
.y2c_c00332{bottom:293.100000px;}
.y67_c00332{bottom:301.800000px;}
.y66_c00332{bottom:319.500000px;}
.y2b_c00332{bottom:331.500000px;}
.y65_c00332{bottom:337.200000px;}
.y2a_c00332{bottom:353.850000px;}
.y64_c00332{bottom:354.900000px;}
.y29_c00332{bottom:371.850000px;}
.y63_c00332{bottom:372.600000px;}
.y62_c00332{bottom:389.700000px;}
.y28_c00332{bottom:389.850000px;}
.y61_c00332{bottom:407.400000px;}
.y27_c00332{bottom:411.450000px;}
.y60_c00332{bottom:425.700000px;}
.y26_c00332{bottom:433.050000px;}
.y5f_c00332{bottom:443.400000px;}
.y25_c00332{bottom:455.400000px;}
.y5e_c00332{bottom:461.400000px;}
.y24_c00332{bottom:473.100000px;}
.y5d_c00332{bottom:479.100000px;}
.y23_c00332{bottom:495.300000px;}
.y5c_c00332{bottom:497.100000px;}
.y22_c00332{bottom:513.300000px;}
.y5b_c00332{bottom:517.350000px;}
.y5a_c00332{bottom:532.500000px;}
.y21_c00332{bottom:541.500000px;}
.y59_c00332{bottom:546.150000px;}
.y20_c00332{bottom:549.000000px;}
.y1f_c00332{bottom:558.750000px;}
.y58_c00332{bottom:560.850000px;}
.y1e_c00332{bottom:569.550000px;}
.y57_c00332{bottom:574.950000px;}
.y56_c00332{bottom:589.650000px;}
.y1d_c00332{bottom:596.250000px;}
.y55_c00332{bottom:603.750000px;}
.y54_c00332{bottom:618.450000px;}
.y1c_c00332{bottom:618.600000px;}
.y53_c00332{bottom:632.550000px;}
.y1b_c00332{bottom:640.500000px;}
.y52_c00332{bottom:646.950000px;}
.y51_c00332{bottom:661.350000px;}
.y50_c00332{bottom:673.950000px;}
.y1a_c00332{bottom:675.300000px;}
.y4f_c00332{bottom:675.450000px;}
.y4e_c00332{bottom:690.150000px;}
.y4d_c00332{bottom:709.950000px;}
.y19_c00332{bottom:711.300000px;}
.y4c_c00332{bottom:723.600000px;}
.y4b_c00332{bottom:727.500000px;}
.y18_c00332{bottom:733.650000px;}
.y4a_c00332{bottom:745.500000px;}
.y17_c00332{bottom:755.400000px;}
.y49_c00332{bottom:757.800000px;}
.y48_c00332{bottom:763.200000px;}
.y16_c00332{bottom:773.100000px;}
.y47_c00332{bottom:780.900000px;}
.y15_c00332{bottom:790.800000px;}
.y46_c00332{bottom:803.400000px;}
.y14_c00332{bottom:808.500000px;}
.y45_c00332{bottom:821.100000px;}
.y13_c00332{bottom:826.200000px;}
.y44_c00332{bottom:838.800000px;}
.y12_c00332{bottom:844.200000px;}
.y43_c00332{bottom:856.500000px;}
.y11_c00332{bottom:861.900000px;}
.y42_c00332{bottom:874.500000px;}
.y10_c00332{bottom:879.600000px;}
.y41_c00332{bottom:891.750000px;}
.yf_c00332{bottom:897.900000px;}
.y40_c00332{bottom:909.000000px;}
.ye_c00332{bottom:915.150000px;}
.y3f_c00332{bottom:930.900000px;}
.yd_c00332{bottom:935.700000px;}
.y3e_c00332{bottom:948.600000px;}
.yc_c00332{bottom:950.400000px;}
.yb_c00332{bottom:965.850000px;}
.y3d_c00332{bottom:974.850000px;}
.ya_c00332{bottom:989.250000px;}
.y3c_c00332{bottom:992.700000px;}
.y9_c00332{bottom:1007.250000px;}
.y3b_c00332{bottom:1010.700000px;}
.y8_c00332{bottom:1024.950000px;}
.y3a_c00332{bottom:1028.400000px;}
.y39_c00332{bottom:1046.100000px;}
.y7_c00332{bottom:1046.700000px;}
.y6_c00332{bottom:1064.700000px;}
.y38_c00332{bottom:1068.450000px;}
.y5_c00332{bottom:1082.400000px;}
.y37_c00332{bottom:1086.150000px;}
.y4_c00332{bottom:1100.100000px;}
.y36_c00332{bottom:1104.150000px;}
.y3_c00332{bottom:1121.700000px;}
.y35_c00332{bottom:1131.900000px;}
.y34_c00332{bottom:1140.450000px;}
.y2_c00332{bottom:1145.100000px;}
.y1_c00332{bottom:1148.700000px;}
.h9_c00332{height:30.000000px;}
.ha_c00332{height:36.000000px;}
.h5_c00332{height:42.000000px;}
.h8_c00332{height:48.000000px;}
.h6_c00332{height:54.000000px;}
.h7_c00332{height:60.000000px;}
.h4_c00332{height:66.000000px;}
.h3_c00332{height:72.000000px;}
.h2_c00332{height:84.000000px;}
.h1_c00332{height:1268.250000px;}
.h0_c00332{height:1268.279937px;}
.w1_c00332{width:961.500000px;}
.w0_c00332{width:961.560058px;}
.x0_c00332{left:0.000000px;}
.x32_c00332{left:97.500000px;}
.x3_c00332{left:98.700000px;}
.x38_c00332{left:111.900000px;}
.x2b_c00332{left:113.850000px;}
.x12_c00332{left:115.800000px;}
.x90_c00332{left:118.950000px;}
.x8d_c00332{left:121.950000px;}
.x44_c00332{left:127.350000px;}
.x53_c00332{left:132.300000px;}
.x23_c00332{left:133.800000px;}
.xb_c00332{left:135.000000px;}
.x92_c00332{left:137.250000px;}
.x5f_c00332{left:138.600000px;}
.x4_c00332{left:139.800000px;}
.x1e_c00332{left:141.450000px;}
.x74_c00332{left:143.700000px;}
.x80_c00332{left:145.050000px;}
.x13_c00332{left:146.100000px;}
.x45_c00332{left:148.950000px;}
.x6b_c00332{left:150.000000px;}
.x54_c00332{left:152.100000px;}
.x39_c00332{left:154.800000px;}
.x60_c00332{left:155.850000px;}
.x98_c00332{left:157.050000px;}
.x1a_c00332{left:159.300000px;}
.x3a_c00332{left:162.300000px;}
.x83_c00332{left:163.650000px;}
.x81_c00332{left:165.150000px;}
.x46_c00332{left:166.950000px;}
.x3b_c00332{left:169.500000px;}
.x50_c00332{left:171.750000px;}
.x5_c00332{left:173.700000px;}
.x91_c00332{left:174.750000px;}
.x24_c00332{left:177.300000px;}
.x84_c00332{left:179.850000px;}
.xc_c00332{left:182.100000px;}
.x3c_c00332{left:184.200000px;}
.x4c_c00332{left:187.950000px;}
.x66_c00332{left:189.900000px;}
.x82_c00332{left:191.550000px;}
.x7b_c00332{left:193.200000px;}
.x77_c00332{left:195.750000px;}
.x6f_c00332{left:200.100000px;}
.x94_c00332{left:201.150000px;}
.x59_c00332{left:202.350000px;}
.x55_c00332{left:203.550000px;}
.x14_c00332{left:205.800000px;}
.x78_c00332{left:208.050000px;}
.x1f_c00332{left:209.100000px;}
.x6_c00332{left:211.800000px;}
.x3d_c00332{left:213.450000px;}
.x73_c00332{left:215.250000px;}
.x15_c00332{left:216.900000px;}
.x72_c00332{left:219.600000px;}
.x33_c00332{left:220.650000px;}
.x2c_c00332{left:222.300000px;}
.x61_c00332{left:223.500000px;}
.x6c_c00332{left:225.150000px;}
.xd_c00332{left:226.350000px;}
.x6d_c00332{left:228.300000px;}
.x4d_c00332{left:230.100000px;}
.x88_c00332{left:231.150000px;}
.x7c_c00332{left:232.800000px;}
.x67_c00332{left:233.850000px;}
.x3e_c00332{left:235.650000px;}
.x7_c00332{left:237.750000px;}
.x76_c00332{left:240.000000px;}
.x1b_c00332{left:241.350000px;}
.x3f_c00332{left:242.850000px;}
.x97_c00332{left:244.500000px;}
.x56_c00332{left:245.700000px;}
.x63_c00332{left:246.900000px;}
.x47_c00332{left:249.000000px;}
.x40_c00332{left:250.050000px;}
.x8e_c00332{left:251.100000px;}
.x89_c00332{left:253.650000px;}
.x57_c00332{left:256.200000px;}
.x20_c00332{left:257.400000px;}
.x34_c00332{left:259.500000px;}
.x2d_c00332{left:261.150000px;}
.xe_c00332{left:262.650000px;}
.x16_c00332{left:264.000000px;}
.x8a_c00332{left:265.500000px;}
.x25_c00332{left:267.300000px;}
.x5c_c00332{left:268.950000px;}
.x48_c00332{left:271.350000px;}
.x4e_c00332{left:273.600000px;}
.x6e_c00332{left:275.400000px;}
.x26_c00332{left:277.800000px;}
.x2e_c00332{left:279.450000px;}
.x1c_c00332{left:280.650000px;}
.x58_c00332{left:282.150000px;}
.x49_c00332{left:285.750000px;}
.x8_c00332{left:289.650000px;}
.x21_c00332{left:290.850000px;}
.x4a_c00332{left:292.950000px;}
.x2f_c00332{left:296.700000px;}
.x9_c00332{left:300.150000px;}
.x8c_c00332{left:301.800000px;}
.x93_c00332{left:305.400000px;}
.x1d_c00332{left:306.900000px;}
.x18_c00332{left:308.550000px;}
.x70_c00332{left:310.650000px;}
.x7d_c00332{left:311.700000px;}
.x5d_c00332{left:313.200000px;}
.x4b_c00332{left:314.850000px;}
.x35_c00332{left:317.100000px;}
.x4f_c00332{left:318.300000px;}
.x17_c00332{left:321.600000px;}
.x8b_c00332{left:322.800000px;}
.x19_c00332{left:329.100000px;}
.xa_c00332{left:332.250000px;}
.x27_c00332{left:335.100000px;}
.xf_c00332{left:336.150000px;}
.x68_c00332{left:337.200000px;}
.x75_c00332{left:339.600000px;}
.x1_c00332{left:341.700000px;}
.x85_c00332{left:343.200000px;}
.x71_c00332{left:345.900000px;}
.x79_c00332{left:348.300000px;}
.x51_c00332{left:349.350000px;}
.x64_c00332{left:351.000000px;}
.x28_c00332{left:353.100000px;}
.x30_c00332{left:355.050000px;}
.x5a_c00332{left:356.700000px;}
.x62_c00332{left:358.800000px;}
.x7e_c00332{left:360.300000px;}
.x41_c00332{left:363.150000px;}
.x7a_c00332{left:364.800000px;}
.x86_c00332{left:366.900000px;}
.x95_c00332{left:367.950000px;}
.x10_c00332{left:369.300000px;}
.x31_c00332{left:375.900000px;}
.x8f_c00332{left:379.950000px;}
.x36_c00332{left:384.750000px;}
.x5e_c00332{left:387.000000px;}
.x29_c00332{left:389.850000px;}
.x42_c00332{left:391.650000px;}
.x11_c00332{left:393.000000px;}
.x5b_c00332{left:396.300000px;}
.x69_c00332{left:397.350000px;}
.x22_c00332{left:400.650000px;}
.x65_c00332{left:404.250000px;}
.x52_c00332{left:406.950000px;}
.x6a_c00332{left:409.950000px;}
.x96_c00332{left:414.300000px;}
.x37_c00332{left:418.200000px;}
.x43_c00332{left:420.750000px;}
.x7f_c00332{left:422.550000px;}
.x87_c00332{left:426.600000px;}
.x2a_c00332{left:429.150000px;}
.x102_c00332{left:453.600000px;}
.x9a_c00332{left:455.100000px;}
.xcc_c00332{left:461.100000px;}
.x10d_c00332{left:466.950000px;}
.x105_c00332{left:468.300000px;}
.xbe_c00332{left:470.550000px;}
.xa2_c00332{left:472.650000px;}
.x10b_c00332{left:475.950000px;}
.xf6_c00332{left:478.800000px;}
.x108_c00332{left:481.650000px;}
.x10c_c00332{left:483.300000px;}
.x138_c00332{left:484.350000px;}
.x135_c00332{left:486.900000px;}
.xd6_c00332{left:491.400000px;}
.xb2_c00332{left:497.250000px;}
.xd1_c00332{left:498.300000px;}
.x100_c00332{left:499.500000px;}
.x131_c00332{left:502.200000px;}
.xf2_c00332{left:504.000000px;}
.xbf_c00332{left:505.800000px;}
.xab_c00332{left:507.000000px;}
.x124_c00332{left:509.100000px;}
.xf7_c00332{left:510.900000px;}
.xa3_c00332{left:512.250000px;}
.x9b_c00332{left:514.500000px;}
.x103_c00332{left:516.300000px;}
.xe8_c00332{left:519.750000px;}
.x10e_c00332{left:522.000000px;}
.xb7_c00332{left:523.350000px;}
.x116_c00332{left:526.350000px;}
.xc3_c00332{left:527.850000px;}
.xa4_c00332{left:529.500000px;}
.xd2_c00332{left:533.250000px;}
.xf3_c00332{left:534.900000px;}
.x11e_c00332{left:536.700000px;}
.xca_c00332{left:537.750000px;}
.xe2_c00332{left:539.700000px;}
.x11b_c00332{left:540.900000px;}
.xac_c00332{left:541.950000px;}
.x137_c00332{left:543.000000px;}
.xe5_c00332{left:544.050000px;}
.xec_c00332{left:546.600000px;}
.x106_c00332{left:548.250000px;}
.xa5_c00332{left:549.600000px;}
.xfe_c00332{left:553.500000px;}
.xb8_c00332{left:555.000000px;}
.xb3_c00332{left:557.400000px;}
.xcb_c00332{left:559.050000px;}
.xe9_c00332{left:562.200000px;}
.x128_c00332{left:563.700000px;}
.xe3_c00332{left:564.900000px;}
.xf8_c00332{left:566.400000px;}
.x113_c00332{left:567.750000px;}
.x10f_c00332{left:569.100000px;}
.x101_c00332{left:571.200000px;}
.xda_c00332{left:577.050000px;}
.x132_c00332{left:578.550000px;}
.x104_c00332{left:579.600000px;}
.x9c_c00332{left:581.850000px;}
.xcd_c00332{left:583.500000px;}
.x117_c00332{left:585.000000px;}
.x12c_c00332{left:586.650000px;}
.xf4_c00332{left:588.900000px;}
.xed_c00332{left:591.300000px;}
.xb4_c00332{left:592.650000px;}
.xf9_c00332{left:594.450000px;}
.xc4_c00332{left:595.500000px;}
.x118_c00332{left:597.300000px;}
.xad_c00332{left:599.850000px;}
.xea_c00332{left:601.800000px;}
.xa6_c00332{left:602.850000px;}
.xc0_c00332{left:604.500000px;}
.x11f_c00332{left:605.850000px;}
.xce_c00332{left:607.950000px;}
.xb9_c00332{left:609.300000px;}
.x109_c00332{left:612.450000px;}
.x122_c00332{left:613.950000px;}
.xd3_c00332{left:615.750000px;}
.xc1_c00332{left:617.850000px;}
.xee_c00332{left:619.800000px;}
.xae_c00332{left:621.150000px;}
.xff_c00332{left:622.650000px;}
.xdf_c00332{left:624.450000px;}
.xe6_c00332{left:626.100000px;}
.xf5_c00332{left:629.250000px;}
.xba_c00332{left:631.950000px;}
.xfa_c00332{left:633.750000px;}
.xd7_c00332{left:634.950000px;}
.x12e_c00332{left:636.000000px;}
.x125_c00332{left:637.500000px;}
.x114_c00332{left:639.750000px;}
.xa7_c00332{left:641.400000px;}
.xaf_c00332{left:643.050000px;}
.xc5_c00332{left:644.400000px;}
.x119_c00332{left:645.900000px;}
.x9d_c00332{left:647.700000px;}
.x120_c00332{left:649.650000px;}
.x11a_c00332{left:651.750000px;}
.xbb_c00332{left:652.800000px;}
.xe0_c00332{left:654.300000px;}
.x110_c00332{left:656.400000px;}
.x9e_c00332{left:657.750000px;}
.x115_c00332{left:662.100000px;}
.xa8_c00332{left:663.300000px;}
.x11c_c00332{left:664.350000px;}
.xd8_c00332{left:665.850000px;}
.xcf_c00332{left:667.350000px;}
.xc6_c00332{left:669.600000px;}
.xb5_c00332{left:672.150000px;}
.x123_c00332{left:673.650000px;}
.x126_c00332{left:675.600000px;}
.x9f_c00332{left:676.800000px;}
.x11d_c00332{left:678.450000px;}
.x136_c00332{left:679.800000px;}
.x12b_c00332{left:683.100000px;}
.x111_c00332{left:684.450000px;}
.x130_c00332{left:686.100000px;}
.xd0_c00332{left:687.900000px;}
.x12d_c00332{left:689.100000px;}
.x112_c00332{left:691.650000px;}
.x121_c00332{left:692.850000px;}
.xb6_c00332{left:694.500000px;}
.xbc_c00332{left:696.300000px;}
.xa9_c00332{left:697.500000px;}
.xd9_c00332{left:699.000000px;}
.x133_c00332{left:703.800000px;}
.x12f_c00332{left:706.950000px;}
.xdb_c00332{left:708.150000px;}
.xe7_c00332{left:712.500000px;}
.xd4_c00332{left:713.700000px;}
.xde_c00332{left:715.200000px;}
.x134_c00332{left:716.250000px;}
.xef_c00332{left:718.500000px;}
.xfb_c00332{left:721.650000px;}
.x139_c00332{left:722.850000px;}
.xaa_c00332{left:724.500000px;}
.xb0_c00332{left:726.900000px;}
.xbd_c00332{left:731.250000px;}
.xc7_c00332{left:738.000000px;}
.xdc_c00332{left:740.550000px;}
.x127_c00332{left:741.900000px;}
.x129_c00332{left:744.150000px;}
.xb1_c00332{left:745.950000px;}
.xc8_c00332{left:748.800000px;}
.xc2_c00332{left:750.000000px;}
.xa0_c00332{left:753.150000px;}
.xf0_c00332{left:754.200000px;}
.xe1_c00332{left:758.400000px;}
.x12a_c00332{left:759.750000px;}
.x2_c00332{left:762.600000px;}
.xdd_c00332{left:763.950000px;}
.xeb_c00332{left:765.900000px;}
.xd5_c00332{left:766.950000px;}
.xfc_c00332{left:768.750000px;}
.x10a_c00332{left:770.100000px;}
.xc9_c00332{left:771.150000px;}
.xa1_c00332{left:774.000000px;}
.x107_c00332{left:775.800000px;}
.xe4_c00332{left:777.300000px;}
.xfd_c00332{left:780.600000px;}
.x99_c00332{left:783.000000px;}
.xf1_c00332{left:785.100000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls1_c00332{letter-spacing:0.000000pt;}
.ls0_c00332{letter-spacing:49.523810pt;}
.ws12_c00332{word-spacing:-76.190476pt;}
.ws6_c00332{word-spacing:-4.924925pt;}
.ws19_c00332{word-spacing:-2.813906pt;}
.ws1a_c00332{word-spacing:0.000000pt;}
.ws13_c00332{word-spacing:4.210526pt;}
.ws7_c00332{word-spacing:7.777778pt;}
.ws18_c00332{word-spacing:9.283474pt;}
.ws5_c00332{word-spacing:10.030581pt;}
.ws10_c00332{word-spacing:10.555556pt;}
.ws9_c00332{word-spacing:12.000000pt;}
.ws2_c00332{word-spacing:13.483467pt;}
.ws0_c00332{word-spacing:13.777778pt;}
.ws8_c00332{word-spacing:13.802267pt;}
.wsf_c00332{word-spacing:14.920635pt;}
.ws1_c00332{word-spacing:16.000000pt;}
.wsa_c00332{word-spacing:17.773012pt;}
.wse_c00332{word-spacing:19.682540pt;}
.wsc_c00332{word-spacing:20.277778pt;}
.ws3_c00332{word-spacing:20.632708pt;}
.wsd_c00332{word-spacing:22.857143pt;}
.ws16_c00332{word-spacing:26.031746pt;}
.wsb_c00332{word-spacing:29.473684pt;}
.ws14_c00332{word-spacing:31.851852pt;}
.ws4_c00332{word-spacing:32.000000pt;}
.ws17_c00332{word-spacing:35.555556pt;}
.ws11_c00332{word-spacing:112.478632pt;}
.ws15_c00332{word-spacing:657.777778pt;}
._6_c00332{margin-left:-49.523810pt;}
._0_c00332{width:40.222222pt;}
._1_c00332{width:44.632708pt;}
._3_c00332{width:47.492404pt;}
._5_c00332{width:49.523810pt;}
._2_c00332{width:51.781948pt;}
._9_c00332{width:52.698413pt;}
._4_c00332{width:57.460317pt;}
._7_c00332{width:62.222222pt;}
._8_c00332{width:65.925926pt;}
.fs7_c00332{font-size:26.666667pt;}
.fs8_c00332{font-size:32.000000pt;}
.fs3_c00332{font-size:37.333333pt;}
.fs6_c00332{font-size:42.666667pt;}
.fs4_c00332{font-size:48.000000pt;}
.fs5_c00332{font-size:53.333333pt;}
.fs2_c00332{font-size:58.666667pt;}
.fs1_c00332{font-size:64.000000pt;}
.fs0_c00332{font-size:74.666667pt;}
.y0_c00332{bottom:0.000000pt;}
.y6e_c00332{bottom:152.533333pt;}
.y6d_c00332{bottom:167.600000pt;}
.y33_c00332{bottom:171.200000pt;}
.y6c_c00332{bottom:181.066667pt;}
.y32_c00332{bottom:184.533333pt;}
.y31_c00332{bottom:197.066667pt;}
.y6b_c00332{bottom:198.666667pt;}
.y30_c00332{bottom:209.866667pt;}
.y6a_c00332{bottom:220.533333pt;}
.y2f_c00332{bottom:222.400000pt;}
.y2e_c00332{bottom:235.200000pt;}
.y69_c00332{bottom:236.266667pt;}
.y2d_c00332{bottom:248.000000pt;}
.y68_c00332{bottom:252.000000pt;}
.y2c_c00332{bottom:260.533333pt;}
.y67_c00332{bottom:268.266667pt;}
.y66_c00332{bottom:284.000000pt;}
.y2b_c00332{bottom:294.666667pt;}
.y65_c00332{bottom:299.733333pt;}
.y2a_c00332{bottom:314.533333pt;}
.y64_c00332{bottom:315.466667pt;}
.y29_c00332{bottom:330.533333pt;}
.y63_c00332{bottom:331.200000pt;}
.y62_c00332{bottom:346.400000pt;}
.y28_c00332{bottom:346.533333pt;}
.y61_c00332{bottom:362.133333pt;}
.y27_c00332{bottom:365.733333pt;}
.y60_c00332{bottom:378.400000pt;}
.y26_c00332{bottom:384.933333pt;}
.y5f_c00332{bottom:394.133333pt;}
.y25_c00332{bottom:404.800000pt;}
.y5e_c00332{bottom:410.133333pt;}
.y24_c00332{bottom:420.533333pt;}
.y5d_c00332{bottom:425.866667pt;}
.y23_c00332{bottom:440.266667pt;}
.y5c_c00332{bottom:441.866667pt;}
.y22_c00332{bottom:456.266667pt;}
.y5b_c00332{bottom:459.866667pt;}
.y5a_c00332{bottom:473.333333pt;}
.y21_c00332{bottom:481.333333pt;}
.y59_c00332{bottom:485.466667pt;}
.y20_c00332{bottom:488.000000pt;}
.y1f_c00332{bottom:496.666667pt;}
.y58_c00332{bottom:498.533333pt;}
.y1e_c00332{bottom:506.266667pt;}
.y57_c00332{bottom:511.066667pt;}
.y56_c00332{bottom:524.133333pt;}
.y1d_c00332{bottom:530.000000pt;}
.y55_c00332{bottom:536.666667pt;}
.y54_c00332{bottom:549.733333pt;}
.y1c_c00332{bottom:549.866667pt;}
.y53_c00332{bottom:562.266667pt;}
.y1b_c00332{bottom:569.333333pt;}
.y52_c00332{bottom:575.066667pt;}
.y51_c00332{bottom:587.866667pt;}
.y50_c00332{bottom:599.066667pt;}
.y1a_c00332{bottom:600.266667pt;}
.y4f_c00332{bottom:600.400000pt;}
.y4e_c00332{bottom:613.466667pt;}
.y4d_c00332{bottom:631.066667pt;}
.y19_c00332{bottom:632.266667pt;}
.y4c_c00332{bottom:643.200000pt;}
.y4b_c00332{bottom:646.666667pt;}
.y18_c00332{bottom:652.133333pt;}
.y4a_c00332{bottom:662.666667pt;}
.y17_c00332{bottom:671.466667pt;}
.y49_c00332{bottom:673.600000pt;}
.y48_c00332{bottom:678.400000pt;}
.y16_c00332{bottom:687.200000pt;}
.y47_c00332{bottom:694.133333pt;}
.y15_c00332{bottom:702.933333pt;}
.y46_c00332{bottom:714.133333pt;}
.y14_c00332{bottom:718.666667pt;}
.y45_c00332{bottom:729.866667pt;}
.y13_c00332{bottom:734.400000pt;}
.y44_c00332{bottom:745.600000pt;}
.y12_c00332{bottom:750.400000pt;}
.y43_c00332{bottom:761.333333pt;}
.y11_c00332{bottom:766.133333pt;}
.y42_c00332{bottom:777.333333pt;}
.y10_c00332{bottom:781.866667pt;}
.y41_c00332{bottom:792.666667pt;}
.yf_c00332{bottom:798.133333pt;}
.y40_c00332{bottom:808.000000pt;}
.ye_c00332{bottom:813.466667pt;}
.y3f_c00332{bottom:827.466667pt;}
.yd_c00332{bottom:831.733333pt;}
.y3e_c00332{bottom:843.200000pt;}
.yc_c00332{bottom:844.800000pt;}
.yb_c00332{bottom:858.533333pt;}
.y3d_c00332{bottom:866.533333pt;}
.ya_c00332{bottom:879.333333pt;}
.y3c_c00332{bottom:882.400000pt;}
.y9_c00332{bottom:895.333333pt;}
.y3b_c00332{bottom:898.400000pt;}
.y8_c00332{bottom:911.066667pt;}
.y3a_c00332{bottom:914.133333pt;}
.y39_c00332{bottom:929.866667pt;}
.y7_c00332{bottom:930.400000pt;}
.y6_c00332{bottom:946.400000pt;}
.y38_c00332{bottom:949.733333pt;}
.y5_c00332{bottom:962.133333pt;}
.y37_c00332{bottom:965.466667pt;}
.y4_c00332{bottom:977.866667pt;}
.y36_c00332{bottom:981.466667pt;}
.y3_c00332{bottom:997.066667pt;}
.y35_c00332{bottom:1006.133333pt;}
.y34_c00332{bottom:1013.733333pt;}
.y2_c00332{bottom:1017.866667pt;}
.y1_c00332{bottom:1021.066667pt;}
.h9_c00332{height:26.666667pt;}
.ha_c00332{height:32.000000pt;}
.h5_c00332{height:37.333333pt;}
.h8_c00332{height:42.666667pt;}
.h6_c00332{height:48.000000pt;}
.h7_c00332{height:53.333333pt;}
.h4_c00332{height:58.666667pt;}
.h3_c00332{height:64.000000pt;}
.h2_c00332{height:74.666667pt;}
.h1_c00332{height:1127.333333pt;}
.h0_c00332{height:1127.359944pt;}
.w1_c00332{width:854.666667pt;}
.w0_c00332{width:854.720052pt;}
.x0_c00332{left:0.000000pt;}
.x32_c00332{left:86.666667pt;}
.x3_c00332{left:87.733333pt;}
.x38_c00332{left:99.466667pt;}
.x2b_c00332{left:101.200000pt;}
.x12_c00332{left:102.933333pt;}
.x90_c00332{left:105.733333pt;}
.x8d_c00332{left:108.400000pt;}
.x44_c00332{left:113.200000pt;}
.x53_c00332{left:117.600000pt;}
.x23_c00332{left:118.933333pt;}
.xb_c00332{left:120.000000pt;}
.x92_c00332{left:122.000000pt;}
.x5f_c00332{left:123.200000pt;}
.x4_c00332{left:124.266667pt;}
.x1e_c00332{left:125.733333pt;}
.x74_c00332{left:127.733333pt;}
.x80_c00332{left:128.933333pt;}
.x13_c00332{left:129.866667pt;}
.x45_c00332{left:132.400000pt;}
.x6b_c00332{left:133.333333pt;}
.x54_c00332{left:135.200000pt;}
.x39_c00332{left:137.600000pt;}
.x60_c00332{left:138.533333pt;}
.x98_c00332{left:139.600000pt;}
.x1a_c00332{left:141.600000pt;}
.x3a_c00332{left:144.266667pt;}
.x83_c00332{left:145.466667pt;}
.x81_c00332{left:146.800000pt;}
.x46_c00332{left:148.400000pt;}
.x3b_c00332{left:150.666667pt;}
.x50_c00332{left:152.666667pt;}
.x5_c00332{left:154.400000pt;}
.x91_c00332{left:155.333333pt;}
.x24_c00332{left:157.600000pt;}
.x84_c00332{left:159.866667pt;}
.xc_c00332{left:161.866667pt;}
.x3c_c00332{left:163.733333pt;}
.x4c_c00332{left:167.066667pt;}
.x66_c00332{left:168.800000pt;}
.x82_c00332{left:170.266667pt;}
.x7b_c00332{left:171.733333pt;}
.x77_c00332{left:174.000000pt;}
.x6f_c00332{left:177.866667pt;}
.x94_c00332{left:178.800000pt;}
.x59_c00332{left:179.866667pt;}
.x55_c00332{left:180.933333pt;}
.x14_c00332{left:182.933333pt;}
.x78_c00332{left:184.933333pt;}
.x1f_c00332{left:185.866667pt;}
.x6_c00332{left:188.266667pt;}
.x3d_c00332{left:189.733333pt;}
.x73_c00332{left:191.333333pt;}
.x15_c00332{left:192.800000pt;}
.x72_c00332{left:195.200000pt;}
.x33_c00332{left:196.133333pt;}
.x2c_c00332{left:197.600000pt;}
.x61_c00332{left:198.666667pt;}
.x6c_c00332{left:200.133333pt;}
.xd_c00332{left:201.200000pt;}
.x6d_c00332{left:202.933333pt;}
.x4d_c00332{left:204.533333pt;}
.x88_c00332{left:205.466667pt;}
.x7c_c00332{left:206.933333pt;}
.x67_c00332{left:207.866667pt;}
.x3e_c00332{left:209.466667pt;}
.x7_c00332{left:211.333333pt;}
.x76_c00332{left:213.333333pt;}
.x1b_c00332{left:214.533333pt;}
.x3f_c00332{left:215.866667pt;}
.x97_c00332{left:217.333333pt;}
.x56_c00332{left:218.400000pt;}
.x63_c00332{left:219.466667pt;}
.x47_c00332{left:221.333333pt;}
.x40_c00332{left:222.266667pt;}
.x8e_c00332{left:223.200000pt;}
.x89_c00332{left:225.466667pt;}
.x57_c00332{left:227.733333pt;}
.x20_c00332{left:228.800000pt;}
.x34_c00332{left:230.666667pt;}
.x2d_c00332{left:232.133333pt;}
.xe_c00332{left:233.466667pt;}
.x16_c00332{left:234.666667pt;}
.x8a_c00332{left:236.000000pt;}
.x25_c00332{left:237.600000pt;}
.x5c_c00332{left:239.066667pt;}
.x48_c00332{left:241.200000pt;}
.x4e_c00332{left:243.200000pt;}
.x6e_c00332{left:244.800000pt;}
.x26_c00332{left:246.933333pt;}
.x2e_c00332{left:248.400000pt;}
.x1c_c00332{left:249.466667pt;}
.x58_c00332{left:250.800000pt;}
.x49_c00332{left:254.000000pt;}
.x8_c00332{left:257.466667pt;}
.x21_c00332{left:258.533333pt;}
.x4a_c00332{left:260.400000pt;}
.x2f_c00332{left:263.733333pt;}
.x9_c00332{left:266.800000pt;}
.x8c_c00332{left:268.266667pt;}
.x93_c00332{left:271.466667pt;}
.x1d_c00332{left:272.800000pt;}
.x18_c00332{left:274.266667pt;}
.x70_c00332{left:276.133333pt;}
.x7d_c00332{left:277.066667pt;}
.x5d_c00332{left:278.400000pt;}
.x4b_c00332{left:279.866667pt;}
.x35_c00332{left:281.866667pt;}
.x4f_c00332{left:282.933333pt;}
.x17_c00332{left:285.866667pt;}
.x8b_c00332{left:286.933333pt;}
.x19_c00332{left:292.533333pt;}
.xa_c00332{left:295.333333pt;}
.x27_c00332{left:297.866667pt;}
.xf_c00332{left:298.800000pt;}
.x68_c00332{left:299.733333pt;}
.x75_c00332{left:301.866667pt;}
.x1_c00332{left:303.733333pt;}
.x85_c00332{left:305.066667pt;}
.x71_c00332{left:307.466667pt;}
.x79_c00332{left:309.600000pt;}
.x51_c00332{left:310.533333pt;}
.x64_c00332{left:312.000000pt;}
.x28_c00332{left:313.866667pt;}
.x30_c00332{left:315.600000pt;}
.x5a_c00332{left:317.066667pt;}
.x62_c00332{left:318.933333pt;}
.x7e_c00332{left:320.266667pt;}
.x41_c00332{left:322.800000pt;}
.x7a_c00332{left:324.266667pt;}
.x86_c00332{left:326.133333pt;}
.x95_c00332{left:327.066667pt;}
.x10_c00332{left:328.266667pt;}
.x31_c00332{left:334.133333pt;}
.x8f_c00332{left:337.733333pt;}
.x36_c00332{left:342.000000pt;}
.x5e_c00332{left:344.000000pt;}
.x29_c00332{left:346.533333pt;}
.x42_c00332{left:348.133333pt;}
.x11_c00332{left:349.333333pt;}
.x5b_c00332{left:352.266667pt;}
.x69_c00332{left:353.200000pt;}
.x22_c00332{left:356.133333pt;}
.x65_c00332{left:359.333333pt;}
.x52_c00332{left:361.733333pt;}
.x6a_c00332{left:364.400000pt;}
.x96_c00332{left:368.266667pt;}
.x37_c00332{left:371.733333pt;}
.x43_c00332{left:374.000000pt;}
.x7f_c00332{left:375.600000pt;}
.x87_c00332{left:379.200000pt;}
.x2a_c00332{left:381.466667pt;}
.x102_c00332{left:403.200000pt;}
.x9a_c00332{left:404.533333pt;}
.xcc_c00332{left:409.866667pt;}
.x10d_c00332{left:415.066667pt;}
.x105_c00332{left:416.266667pt;}
.xbe_c00332{left:418.266667pt;}
.xa2_c00332{left:420.133333pt;}
.x10b_c00332{left:423.066667pt;}
.xf6_c00332{left:425.600000pt;}
.x108_c00332{left:428.133333pt;}
.x10c_c00332{left:429.600000pt;}
.x138_c00332{left:430.533333pt;}
.x135_c00332{left:432.800000pt;}
.xd6_c00332{left:436.800000pt;}
.xb2_c00332{left:442.000000pt;}
.xd1_c00332{left:442.933333pt;}
.x100_c00332{left:444.000000pt;}
.x131_c00332{left:446.400000pt;}
.xf2_c00332{left:448.000000pt;}
.xbf_c00332{left:449.600000pt;}
.xab_c00332{left:450.666667pt;}
.x124_c00332{left:452.533333pt;}
.xf7_c00332{left:454.133333pt;}
.xa3_c00332{left:455.333333pt;}
.x9b_c00332{left:457.333333pt;}
.x103_c00332{left:458.933333pt;}
.xe8_c00332{left:462.000000pt;}
.x10e_c00332{left:464.000000pt;}
.xb7_c00332{left:465.200000pt;}
.x116_c00332{left:467.866667pt;}
.xc3_c00332{left:469.200000pt;}
.xa4_c00332{left:470.666667pt;}
.xd2_c00332{left:474.000000pt;}
.xf3_c00332{left:475.466667pt;}
.x11e_c00332{left:477.066667pt;}
.xca_c00332{left:478.000000pt;}
.xe2_c00332{left:479.733333pt;}
.x11b_c00332{left:480.800000pt;}
.xac_c00332{left:481.733333pt;}
.x137_c00332{left:482.666667pt;}
.xe5_c00332{left:483.600000pt;}
.xec_c00332{left:485.866667pt;}
.x106_c00332{left:487.333333pt;}
.xa5_c00332{left:488.533333pt;}
.xfe_c00332{left:492.000000pt;}
.xb8_c00332{left:493.333333pt;}
.xb3_c00332{left:495.466667pt;}
.xcb_c00332{left:496.933333pt;}
.xe9_c00332{left:499.733333pt;}
.x128_c00332{left:501.066667pt;}
.xe3_c00332{left:502.133333pt;}
.xf8_c00332{left:503.466667pt;}
.x113_c00332{left:504.666667pt;}
.x10f_c00332{left:505.866667pt;}
.x101_c00332{left:507.733333pt;}
.xda_c00332{left:512.933333pt;}
.x132_c00332{left:514.266667pt;}
.x104_c00332{left:515.200000pt;}
.x9c_c00332{left:517.200000pt;}
.xcd_c00332{left:518.666667pt;}
.x117_c00332{left:520.000000pt;}
.x12c_c00332{left:521.466667pt;}
.xf4_c00332{left:523.466667pt;}
.xed_c00332{left:525.600000pt;}
.xb4_c00332{left:526.800000pt;}
.xf9_c00332{left:528.400000pt;}
.xc4_c00332{left:529.333333pt;}
.x118_c00332{left:530.933333pt;}
.xad_c00332{left:533.200000pt;}
.xea_c00332{left:534.933333pt;}
.xa6_c00332{left:535.866667pt;}
.xc0_c00332{left:537.333333pt;}
.x11f_c00332{left:538.533333pt;}
.xce_c00332{left:540.400000pt;}
.xb9_c00332{left:541.600000pt;}
.x109_c00332{left:544.400000pt;}
.x122_c00332{left:545.733333pt;}
.xd3_c00332{left:547.333333pt;}
.xc1_c00332{left:549.200000pt;}
.xee_c00332{left:550.933333pt;}
.xae_c00332{left:552.133333pt;}
.xff_c00332{left:553.466667pt;}
.xdf_c00332{left:555.066667pt;}
.xe6_c00332{left:556.533333pt;}
.xf5_c00332{left:559.333333pt;}
.xba_c00332{left:561.733333pt;}
.xfa_c00332{left:563.333333pt;}
.xd7_c00332{left:564.400000pt;}
.x12e_c00332{left:565.333333pt;}
.x125_c00332{left:566.666667pt;}
.x114_c00332{left:568.666667pt;}
.xa7_c00332{left:570.133333pt;}
.xaf_c00332{left:571.600000pt;}
.xc5_c00332{left:572.800000pt;}
.x119_c00332{left:574.133333pt;}
.x9d_c00332{left:575.733333pt;}
.x120_c00332{left:577.466667pt;}
.x11a_c00332{left:579.333333pt;}
.xbb_c00332{left:580.266667pt;}
.xe0_c00332{left:581.600000pt;}
.x110_c00332{left:583.466667pt;}
.x9e_c00332{left:584.666667pt;}
.x115_c00332{left:588.533333pt;}
.xa8_c00332{left:589.600000pt;}
.x11c_c00332{left:590.533333pt;}
.xd8_c00332{left:591.866667pt;}
.xcf_c00332{left:593.200000pt;}
.xc6_c00332{left:595.200000pt;}
.xb5_c00332{left:597.466667pt;}
.x123_c00332{left:598.800000pt;}
.x126_c00332{left:600.533333pt;}
.x9f_c00332{left:601.600000pt;}
.x11d_c00332{left:603.066667pt;}
.x136_c00332{left:604.266667pt;}
.x12b_c00332{left:607.200000pt;}
.x111_c00332{left:608.400000pt;}
.x130_c00332{left:609.866667pt;}
.xd0_c00332{left:611.466667pt;}
.x12d_c00332{left:612.533333pt;}
.x112_c00332{left:614.800000pt;}
.x121_c00332{left:615.866667pt;}
.xb6_c00332{left:617.333333pt;}
.xbc_c00332{left:618.933333pt;}
.xa9_c00332{left:620.000000pt;}
.xd9_c00332{left:621.333333pt;}
.x133_c00332{left:625.600000pt;}
.x12f_c00332{left:628.400000pt;}
.xdb_c00332{left:629.466667pt;}
.xe7_c00332{left:633.333333pt;}
.xd4_c00332{left:634.400000pt;}
.xde_c00332{left:635.733333pt;}
.x134_c00332{left:636.666667pt;}
.xef_c00332{left:638.666667pt;}
.xfb_c00332{left:641.466667pt;}
.x139_c00332{left:642.533333pt;}
.xaa_c00332{left:644.000000pt;}
.xb0_c00332{left:646.133333pt;}
.xbd_c00332{left:650.000000pt;}
.xc7_c00332{left:656.000000pt;}
.xdc_c00332{left:658.266667pt;}
.x127_c00332{left:659.466667pt;}
.x129_c00332{left:661.466667pt;}
.xb1_c00332{left:663.066667pt;}
.xc8_c00332{left:665.600000pt;}
.xc2_c00332{left:666.666667pt;}
.xa0_c00332{left:669.466667pt;}
.xf0_c00332{left:670.400000pt;}
.xe1_c00332{left:674.133333pt;}
.x12a_c00332{left:675.333333pt;}
.x2_c00332{left:677.866667pt;}
.xdd_c00332{left:679.066667pt;}
.xeb_c00332{left:680.800000pt;}
.xd5_c00332{left:681.733333pt;}
.xfc_c00332{left:683.333333pt;}
.x10a_c00332{left:684.533333pt;}
.xc9_c00332{left:685.466667pt;}
.xa1_c00332{left:688.000000pt;}
.x107_c00332{left:689.600000pt;}
.xe4_c00332{left:690.933333pt;}
.xfd_c00332{left:693.866667pt;}
.x99_c00332{left:696.000000pt;}
.xf1_c00332{left:697.866667pt;}
}





/* 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_c00333 {
    display:none;
  }
  .loading-indicator_c00333.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00333 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_c00333 { 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_c00333" -> "#page-container .classname_c00333")
 */
.pf_c00333 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00333 { /* 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_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00333 { /* 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_c00333 { /* 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_c00333 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00333 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00333 {overflow:visible;}
  }
}
.c_c00333 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00333 { /* 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_c00333:after { /* webkit #35443 */
  content: '';
}
.t_c00333:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00333 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 */
}
.__c00333 { /* 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_c00333 { /* info for Javascript */
  display:none;
}
.l_c00333 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00333 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00333 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00333: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_c00333 {
    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_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00333.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_c00333 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00333;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.000000;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;}
.mb6_c00333{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00333{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m112_c00333{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.md1_c00333{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00333{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00333{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00333{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00333{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00333{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00333{transform:matrix(0.073000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00333{transform:matrix(0.075250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00333{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00333{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m71_c00333{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00333{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m5_c00333{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00333{transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);}
.m99_c00333{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m114_c00333{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.maa_c00333{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m24_c00333{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m7_c00333{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00333{transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00333{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m29_c00333{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00333{transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00333{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m32_c00333{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00333{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00333{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md5_c00333{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m100_c00333{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m16_c00333{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00333{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m105_c00333{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m113_c00333{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.ma_c00333{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00333{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m50_c00333{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00333{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m30_c00333{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3_c00333{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00333{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m27_c00333{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m59_c00333{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00333{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m104_c00333{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m42_c00333{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00333{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00333{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m25_c00333{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m97_c00333{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md8_c00333{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md2_c00333{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9_c00333{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00333{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00333{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m68_c00333{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m74_c00333{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m78_c00333{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m92_c00333{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me2_c00333{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mba_c00333{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m107_c00333{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m80_c00333{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00333{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m85_c00333{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00333{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00333{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00333{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00333{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6_c00333{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00333{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00333{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m43_c00333{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00333{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m23_c00333{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00333{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00333{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00333{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00333{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00333{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m88_c00333{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m98_c00333{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m4_c00333{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00333{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m81_c00333{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00333{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m91_c00333{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00333{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00333{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00333{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mff_c00333{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00333{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me3_c00333{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00333{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1_c00333{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m77_c00333{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m108_c00333{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00333{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00333{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00333{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00333{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00333{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00333{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00333{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m106_c00333{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00333{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m36_c00333{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m49_c00333{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00333{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m95_c00333{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m37_c00333{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me9_c00333{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2_c00333{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m76_c00333{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00333{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m13_c00333{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00333{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00333{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m26_c00333{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00333{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m73_c00333{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mac_c00333{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m20_c00333{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00333{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m12_c00333{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.med_c00333{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m54_c00333{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m35_c00333{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00333{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00333{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m45_c00333{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mf_c00333{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m46_c00333{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m40_c00333{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m109_c00333{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m8_c00333{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00333{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00333{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m82_c00333{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m48_c00333{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00333{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00333{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00333{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00333{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00333{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m94_c00333{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m53_c00333{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mce_c00333{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00333{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00333{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mec_c00333{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m21_c00333{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00333{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m83_c00333{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m86_c00333{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m102_c00333{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md_c00333{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00333{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m93_c00333{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m87_c00333{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m62_c00333{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00333{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00333{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m22_c00333{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00333{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00333{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.meb_c00333{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m79_c00333{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m55_c00333{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00333{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00333{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00333{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00333{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m65_c00333{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m28_c00333{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc_c00333{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00333{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m18_c00333{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me_c00333{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00333{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.me6_c00333{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00333{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00333{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00333{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00333{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m103_c00333{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md3_c00333{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00333{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mca_c00333{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00333{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00333{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00333{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00333{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00333{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me4_c00333{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00333{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m84_c00333{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m47_c00333{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m11_c00333{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00333{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m17_c00333{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mee_c00333{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00333{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00333{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00333{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me0_c00333{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.me8_c00333{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m58_c00333{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me5_c00333{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m89_c00333{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m70_c00333{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m14_c00333{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md0_c00333{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m64_c00333{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00333{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m63_c00333{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m31_c00333{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m69_c00333{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me7_c00333{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00333{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m75_c00333{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m56_c00333{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15_c00333{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m111_c00333{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mae_c00333{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m101_c00333{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m110_c00333{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m34_c00333{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00333{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mea_c00333{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00333{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m66_c00333{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m19_c00333{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00333{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00333{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00333{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mad_c00333{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00333{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00333{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mab_c00333{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00333{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00333{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m90_c00333{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.maf_c00333{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00333{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m57_c00333{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me1_c00333{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m51_c00333{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00333{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00333{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00333{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m96_c00333{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m10_c00333{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m61_c00333{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md7_c00333{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb_c00333{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m118_c00333{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m33_c00333{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m39_c00333{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m72_c00333{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m67_c00333{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m52_c00333{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m44_c00333{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00333{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md9_c00333{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m38_c00333{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00333{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m115_c00333{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00333{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m60_c00333{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m116_c00333{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m41_c00333{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00333{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00333{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m119_c00333{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mef_c00333{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00333{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m0_c00333{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00333{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m117_c00333{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.mda_c00333{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00333{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00333{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.md6_c00333{transform:matrix(0.433000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433000,0.000000,0.000000,0.250000,0,0);}
.mde_c00333{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.md4_c00333{transform:matrix(0.589750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589750,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls1_c00333{letter-spacing:0.000000px;}
.ls0_c00333{letter-spacing:61.426230px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{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__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00333{word-spacing:-94.426230px;}
.wsc_c00333{word-spacing:-8.798883px;}
.wsf_c00333{word-spacing:0.000000px;}
.ws9_c00333{word-spacing:9.591065px;}
.ws1_c00333{word-spacing:12.666667px;}
.ws0_c00333{word-spacing:16.186246px;}
.wsa_c00333{word-spacing:16.521490px;}
.wse_c00333{word-spacing:20.061069px;}
.ws3_c00333{word-spacing:24.491803px;}
.ws2_c00333{word-spacing:28.426230px;}
.ws4_c00333{word-spacing:32.360656px;}
.ws5_c00333{word-spacing:43.923664px;}
.wsb_c00333{word-spacing:63.039301px;}
.ws8_c00333{word-spacing:144.523810px;}
.ws7_c00333{word-spacing:625.416667px;}
.wsd_c00333{word-spacing:752.500000px;}
._5_c00333{margin-left:-61.426230px;}
._4_c00333{width:3.934426px;}
._1_c00333{width:57.491803px;}
._3_c00333{width:61.426230px;}
._2_c00333{width:65.360656px;}
._0_c00333{width:250.278689px;}
._6_c00333{width:254.213115px;}
._7_c00333{width:1288.750000px;}
.fc0_c00333{color:transparent;}
.fs6_c00333{font-size:30.000000px;}
.fs7_c00333{font-size:42.000000px;}
.fs5_c00333{font-size:48.000000px;}
.fs4_c00333{font-size:54.000000px;}
.fs2_c00333{font-size:60.000000px;}
.fs3_c00333{font-size:66.000000px;}
.fs1_c00333{font-size:72.000000px;}
.fs0_c00333{font-size:120.000000px;}
.fs9_c00333{font-size:132.000000px;}
.fs8_c00333{font-size:204.000000px;}
.y0_c00333{bottom:0.000000px;}
.y63_c00333{bottom:193.650000px;}
.y4f_c00333{bottom:198.750000px;}
.y62_c00333{bottom:211.800000px;}
.y4e_c00333{bottom:219.600000px;}
.y61_c00333{bottom:229.050000px;}
.y4d_c00333{bottom:239.550000px;}
.y60_c00333{bottom:247.050000px;}
.y4c_c00333{bottom:260.400000px;}
.y5f_c00333{bottom:264.000000px;}
.y5e_c00333{bottom:277.650000px;}
.y4b_c00333{bottom:278.400000px;}
.y5d_c00333{bottom:281.550000px;}
.y4a_c00333{bottom:296.400000px;}
.y5c_c00333{bottom:297.000000px;}
.y49_c00333{bottom:314.400000px;}
.y5b_c00333{bottom:317.550000px;}
.y48_c00333{bottom:332.700000px;}
.y5a_c00333{bottom:335.850000px;}
.y47_c00333{bottom:352.350000px;}
.y59_c00333{bottom:353.550000px;}
.y58_c00333{bottom:371.850000px;}
.y46_c00333{bottom:372.900000px;}
.y57_c00333{bottom:389.550000px;}
.y45_c00333{bottom:390.900000px;}
.y56_c00333{bottom:406.500000px;}
.y44_c00333{bottom:408.900000px;}
.y55_c00333{bottom:424.500000px;}
.y43_c00333{bottom:426.900000px;}
.y42_c00333{bottom:444.600000px;}
.y54_c00333{bottom:446.400000px;}
.y41_c00333{bottom:462.900000px;}
.y53_c00333{bottom:464.400000px;}
.y40_c00333{bottom:480.600000px;}
.y52_c00333{bottom:483.150000px;}
.y3f_c00333{bottom:498.900000px;}
.y51_c00333{bottom:500.850000px;}
.y3e_c00333{bottom:518.700000px;}
.y50_c00333{bottom:519.150000px;}
.y3d_c00333{bottom:531.000000px;}
.y3c_c00333{bottom:548.250000px;}
.y3b_c00333{bottom:560.100000px;}
.y3a_c00333{bottom:574.500000px;}
.y39_c00333{bottom:587.850000px;}
.y38_c00333{bottom:597.900000px;}
.y37_c00333{bottom:617.700000px;}
.y36_c00333{bottom:627.150000px;}
.y35_c00333{bottom:649.800000px;}
.y34_c00333{bottom:663.450000px;}
.y33_c00333{bottom:677.850000px;}
.y31_c00333{bottom:679.050000px;}
.y19_c00333{bottom:690.150000px;}
.y30_c00333{bottom:696.750000px;}
.y18_c00333{bottom:703.800000px;}
.y32_c00333{bottom:709.500000px;}
.y2f_c00333{bottom:714.750000px;}
.y17_c00333{bottom:718.050000px;}
.y2e_c00333{bottom:732.750000px;}
.y16_c00333{bottom:746.550000px;}
.y2d_c00333{bottom:750.450000px;}
.y15_c00333{bottom:764.250000px;}
.y2c_c00333{bottom:768.150000px;}
.y14_c00333{bottom:781.500000px;}
.y2b_c00333{bottom:786.150000px;}
.y13_c00333{bottom:796.650000px;}
.y2a_c00333{bottom:804.150000px;}
.y12_c00333{bottom:821.850000px;}
.y11_c00333{bottom:839.850000px;}
.y29_c00333{bottom:855.000000px;}
.y10_c00333{bottom:857.550000px;}
.yf_c00333{bottom:875.550000px;}
.y28_c00333{bottom:878.700000px;}
.ye_c00333{bottom:893.850000px;}
.y27_c00333{bottom:896.400000px;}
.yd_c00333{bottom:911.550000px;}
.y26_c00333{bottom:914.400000px;}
.yc_c00333{bottom:921.600000px;}
.y25_c00333{bottom:932.700000px;}
.y24_c00333{bottom:946.950000px;}
.yb_c00333{bottom:951.150000px;}
.ya_c00333{bottom:969.150000px;}
.y23_c00333{bottom:972.150000px;}
.y22_c00333{bottom:990.150000px;}
.y9_c00333{bottom:999.000000px;}
.y21_c00333{bottom:1008.150000px;}
.y8_c00333{bottom:1017.750000px;}
.y20_c00333{bottom:1025.850000px;}
.y7_c00333{bottom:1035.450000px;}
.y1f_c00333{bottom:1044.150000px;}
.y6_c00333{bottom:1053.750000px;}
.y1e_c00333{bottom:1061.850000px;}
.y5_c00333{bottom:1075.350000px;}
.y1d_c00333{bottom:1079.850000px;}
.y1c_c00333{bottom:1097.550000px;}
.y4_c00333{bottom:1098.000000px;}
.y1b_c00333{bottom:1115.250000px;}
.y3_c00333{bottom:1116.000000px;}
.y1a_c00333{bottom:1129.650000px;}
.y2_c00333{bottom:1133.250000px;}
.y1_c00333{bottom:1158.150000px;}
.h8_c00333{height:30.000000px;}
.h9_c00333{height:42.000000px;}
.h7_c00333{height:48.000000px;}
.h6_c00333{height:54.000000px;}
.h4_c00333{height:60.000000px;}
.h5_c00333{height:66.000000px;}
.h3_c00333{height:72.000000px;}
.h2_c00333{height:120.000000px;}
.hb_c00333{height:132.000000px;}
.ha_c00333{height:204.000000px;}
.h0_c00333{height:1273.320007px;}
.h1_c00333{height:1273.500000px;}
.w1_c00333{width:961.500000px;}
.w0_c00333{width:961.560058px;}
.x0_c00333{left:0.000000px;}
.x70_c00333{left:144.000000px;}
.xca_c00333{left:160.500000px;}
.x71_c00333{left:164.100000px;}
.x79_c00333{left:165.600000px;}
.x81_c00333{left:167.250000px;}
.x88_c00333{left:169.050000px;}
.x9b_c00333{left:170.400000px;}
.xa1_c00333{left:171.900000px;}
.xac_c00333{left:173.250000px;}
.xb7_c00333{left:176.250000px;}
.xc2_c00333{left:177.750000px;}
.xcd_c00333{left:180.300000px;}
.xd3_c00333{left:181.950000px;}
.xd7_c00333{left:183.300000px;}
.xda_c00333{left:184.350000px;}
.xe7_c00333{left:186.000000px;}
.x82_c00333{left:187.350000px;}
.x10c_c00333{left:189.300000px;}
.x89_c00333{left:190.350000px;}
.x121_c00333{left:191.550000px;}
.x14c_c00333{left:193.050000px;}
.x93_c00333{left:194.700000px;}
.x159_c00333{left:196.500000px;}
.xb8_c00333{left:197.550000px;}
.x15c_c00333{left:198.900000px;}
.x164_c00333{left:200.700000px;}
.x120_c00333{left:201.750000px;}
.x72_c00333{left:203.700000px;}
.xde_c00333{left:207.900000px;}
.x9c_c00333{left:210.000000px;}
.xa2_c00333{left:211.200000px;}
.x103_c00333{left:212.400000px;}
.x94_c00333{left:213.750000px;}
.xad_c00333{left:216.750000px;}
.xc7_c00333{left:217.950000px;}
.xd4_c00333{left:219.000000px;}
.x7a_c00333{left:221.400000px;}
.xb0_c00333{left:222.600000px;}
.x109_c00333{left:226.050000px;}
.x73_c00333{left:227.100000px;}
.xa6_c00333{left:229.350000px;}
.xe8_c00333{left:231.000000px;}
.x83_c00333{left:232.350000px;}
.x104_c00333{left:234.000000px;}
.xc8_c00333{left:235.200000px;}
.xcb_c00333{left:237.150000px;}
.xb9_c00333{left:238.200000px;}
.xd6_c00333{left:239.550000px;}
.x8a_c00333{left:241.800000px;}
.x74_c00333{left:243.600000px;}
.x95_c00333{left:245.400000px;}
.xd8_c00333{left:248.850000px;}
.x151_c00333{left:250.200000px;}
.xb1_c00333{left:251.700000px;}
.x10a_c00333{left:253.350000px;}
.xb3_c00333{left:256.800000px;}
.x14e_c00333{left:258.450000px;}
.xc3_c00333{left:259.500000px;}
.xdb_c00333{left:261.750000px;}
.x8b_c00333{left:263.100000px;}
.xe1_c00333{left:264.300000px;}
.x7b_c00333{left:266.400000px;}
.xef_c00333{left:267.600000px;}
.xe9_c00333{left:269.550000px;}
.xd0_c00333{left:271.350000px;}
.xb2_c00333{left:274.350000px;}
.x15e_c00333{left:276.150000px;}
.x152_c00333{left:277.650000px;}
.xa3_c00333{left:278.850000px;}
.xa7_c00333{left:280.050000px;}
.x105_c00333{left:281.850000px;}
.x9d_c00333{left:283.500000px;}
.xba_c00333{left:284.700000px;}
.xc9_c00333{left:288.150000px;}
.x8c_c00333{left:290.850000px;}
.x15f_c00333{left:292.050000px;}
.x156_c00333{left:293.700000px;}
.x15a_c00333{left:295.800000px;}
.x96_c00333{left:296.850000px;}
.x10f_c00333{left:298.950000px;}
.x75_c00333{left:300.150000px;}
.x84_c00333{left:304.050000px;}
.xbb_c00333{left:306.000000px;}
.x8d_c00333{left:308.100000px;}
.x16c_c00333{left:309.300000px;}
.xe2_c00333{left:310.350000px;}
.x157_c00333{left:311.700000px;}
.x14f_c00333{left:313.200000px;}
.xea_c00333{left:314.550000px;}
.xd1_c00333{left:317.100000px;}
.xdc_c00333{left:318.150000px;}
.x165_c00333{left:320.250000px;}
.x76_c00333{left:321.450000px;}
.x97_c00333{left:323.100000px;}
.xa8_c00333{left:324.750000px;}
.xc4_c00333{left:325.800000px;}
.x85_c00333{left:327.450000px;}
.x8e_c00333{left:328.950000px;}
.xeb_c00333{left:330.750000px;}
.x119_c00333{left:331.950000px;}
.xcc_c00333{left:333.600000px;}
.x14d_c00333{left:334.950000px;}
.xe3_c00333{left:337.650000px;}
.x160_c00333{left:338.850000px;}
.xb4_c00333{left:341.100000px;}
.x11a_c00333{left:343.050000px;}
.x8f_c00333{left:345.450000px;}
.xdd_c00333{left:346.500000px;}
.xbf_c00333{left:350.550000px;}
.x154_c00333{left:352.350000px;}
.xb5_c00333{left:353.700000px;}
.x7c_c00333{left:355.650000px;}
.xae_c00333{left:357.600000px;}
.x110_c00333{left:359.100000px;}
.x168_c00333{left:362.550000px;}
.x9e_c00333{left:366.000000px;}
.x122_c00333{left:367.200000px;}
.x155_c00333{left:371.550000px;}
.x77_c00333{left:372.600000px;}
.xbc_c00333{left:374.100000px;}
.xce_c00333{left:375.750000px;}
.x86_c00333{left:378.150000px;}
.xd9_c00333{left:380.250000px;}
.xd2_c00333{left:381.300000px;}
.x106_c00333{left:382.650000px;}
.x90_c00333{left:385.050000px;}
.x7d_c00333{left:386.250000px;}
.x1_c00333{left:388.500000px;}
.xc5_c00333{left:389.550000px;}
.xdf_c00333{left:392.700000px;}
.x91_c00333{left:393.750000px;}
.x169_c00333{left:394.950000px;}
.xa9_c00333{left:396.450000px;}
.x98_c00333{left:397.950000px;}
.xe4_c00333{left:399.900000px;}
.x15d_c00333{left:401.250000px;}
.x10b_c00333{left:402.750000px;}
.xa4_c00333{left:405.150000px;}
.xc0_c00333{left:407.400000px;}
.x7e_c00333{left:408.900000px;}
.x161_c00333{left:412.650000px;}
.x9f_c00333{left:414.900000px;}
.x99_c00333{left:415.950000px;}
.x166_c00333{left:417.450000px;}
.xe5_c00333{left:418.950000px;}
.xc1_c00333{left:420.750000px;}
.xaa_c00333{left:425.250000px;}
.x15b_c00333{left:426.750000px;}
.xec_c00333{left:428.250000px;}
.x7f_c00333{left:429.750000px;}
.xaf_c00333{left:431.700000px;}
.x10d_c00333{left:433.350000px;}
.xbd_c00333{left:435.000000px;}
.xd5_c00333{left:437.100000px;}
.x123_c00333{left:439.200000px;}
.x87_c00333{left:440.850000px;}
.x9a_c00333{left:442.950000px;}
.xc6_c00333{left:445.050000px;}
.x163_c00333{left:446.250000px;}
.xcf_c00333{left:448.500000px;}
.xab_c00333{left:451.200000px;}
.x78_c00333{left:452.550000px;}
.x92_c00333{left:456.000000px;}
.xf0_c00333{left:457.200000px;}
.x111_c00333{left:459.150000px;}
.xa5_c00333{left:463.800000px;}
.x80_c00333{left:466.800000px;}
.xb6_c00333{left:468.150000px;}
.xa0_c00333{left:470.700000px;}
.x16d_c00333{left:472.650000px;}
.x16a_c00333{left:474.450000px;}
.x167_c00333{left:475.650000px;}
.xbe_c00333{left:476.700000px;}
.x158_c00333{left:479.400000px;}
.x162_c00333{left:480.750000px;}
.x11b_c00333{left:482.400000px;}
.xe0_c00333{left:483.900000px;}
.xed_c00333{left:487.800000px;}
.xe6_c00333{left:489.150000px;}
.x14b_c00333{left:491.850000px;}
.x124_c00333{left:493.050000px;}
.x150_c00333{left:494.250000px;}
.xf9_c00333{left:496.500000px;}
.x16b_c00333{left:499.950000px;}
.x1f_c00333{left:504.750000px;}
.x153_c00333{left:507.450000px;}
.x38_c00333{left:510.450000px;}
.x61_c00333{left:516.900000px;}
.x3_c00333{left:518.400000px;}
.x14_c00333{left:519.600000px;}
.x23_c00333{left:522.600000px;}
.x37_c00333{left:525.600000px;}
.x3e_c00333{left:527.100000px;}
.x46_c00333{left:529.200000px;}
.x55_c00333{left:531.000000px;}
.x51_c00333{left:532.200000px;}
.x5a_c00333{left:533.250000px;}
.x63_c00333{left:534.450000px;}
.x6a_c00333{left:535.650000px;}
.x112_c00333{left:538.350000px;}
.x11c_c00333{left:540.000000px;}
.x12a_c00333{left:542.100000px;}
.x24_c00333{left:544.200000px;}
.x2f_c00333{left:545.400000px;}
.x3f_c00333{left:546.900000px;}
.xc_c00333{left:549.300000px;}
.x107_c00333{left:550.350000px;}
.x10e_c00333{left:552.150000px;}
.x39_c00333{left:554.400000px;}
.x128_c00333{left:555.900000px;}
.x30_c00333{left:557.700000px;}
.x4_c00333{left:559.800000px;}
.x149_c00333{left:561.750000px;}
.x5b_c00333{left:563.550000px;}
.x1c_c00333{left:568.350000px;}
.x49_c00333{left:569.550000px;}
.x52_c00333{left:571.500000px;}
.x20_c00333{left:573.450000px;}
.x5_c00333{left:577.050000px;}
.x6b_c00333{left:578.250000px;}
.x31_c00333{left:579.600000px;}
.x134_c00333{left:582.300000px;}
.xf1_c00333{left:586.050000px;}
.x15_c00333{left:587.550000px;}
.x3a_c00333{left:590.700000px;}
.xd_c00333{left:592.500000px;}
.xfa_c00333{left:593.700000px;}
.x5c_c00333{left:597.000000px;}
.x1d_c00333{left:598.950000px;}
.xf2_c00333{left:600.150000px;}
.x21_c00333{left:602.550000px;}
.x13a_c00333{left:603.600000px;}
.x25_c00333{left:607.200000px;}
.x6f_c00333{left:608.550000px;}
.x40_c00333{left:609.600000px;}
.x16_c00333{left:610.950000px;}
.x145_c00333{left:612.750000px;}
.x56_c00333{left:614.850000px;}
.x2b_c00333{left:616.050000px;}
.x5d_c00333{left:617.850000px;}
.x4a_c00333{left:620.250000px;}
.x11d_c00333{left:621.450000px;}
.x53_c00333{left:622.950000px;}
.xe_c00333{left:625.200000px;}
.x2_c00333{left:629.400000px;}
.x13b_c00333{left:632.400000px;}
.x41_c00333{left:634.500000px;}
.xf3_c00333{left:636.150000px;}
.x5f_c00333{left:638.700000px;}
.x146_c00333{left:639.750000px;}
.x32_c00333{left:641.100000px;}
.xf4_c00333{left:643.050000px;}
.x26_c00333{left:645.600000px;}
.x17_c00333{left:647.700000px;}
.xfb_c00333{left:649.500000px;}
.xf5_c00333{left:650.550000px;}
.x57_c00333{left:653.400000px;}
.x6_c00333{left:654.750000px;}
.x33_c00333{left:656.250000px;}
.xfc_c00333{left:657.450000px;}
.x47_c00333{left:659.850000px;}
.x1e_c00333{left:661.650000px;}
.x7_c00333{left:663.000000px;}
.xfd_c00333{left:664.650000px;}
.x4b_c00333{left:665.700000px;}
.x113_c00333{left:669.000000px;}
.x3b_c00333{left:671.400000px;}
.x62_c00333{left:673.800000px;}
.x34_c00333{left:675.750000px;}
.xf_c00333{left:678.450000px;}
.x6c_c00333{left:679.500000px;}
.x135_c00333{left:681.000000px;}
.x67_c00333{left:684.150000px;}
.x5e_c00333{left:685.950000px;}
.x27_c00333{left:687.750000px;}
.x60_c00333{left:689.100000px;}
.x42_c00333{left:690.300000px;}
.x11e_c00333{left:691.650000px;}
.x125_c00333{left:692.850000px;}
.xfe_c00333{left:694.350000px;}
.x2c_c00333{left:696.300000px;}
.x130_c00333{left:697.950000px;}
.x28_c00333{left:699.600000px;}
.xf6_c00333{left:700.950000px;}
.x142_c00333{left:703.650000px;}
.x10_c00333{left:704.700000px;}
.x8_c00333{left:706.500000px;}
.x43_c00333{left:709.050000px;}
.x54_c00333{left:710.550000px;}
.x58_c00333{left:712.500000px;}
.x64_c00333{left:714.150000px;}
.x9_c00333{left:715.500000px;}
.x131_c00333{left:718.050000px;}
.x18_c00333{left:721.500000px;}
.x22_c00333{left:723.900000px;}
.x59_c00333{left:725.100000px;}
.x11f_c00333{left:727.650000px;}
.x4c_c00333{left:728.700000px;}
.x129_c00333{left:730.050000px;}
.x138_c00333{left:732.450000px;}
.xa_c00333{left:734.250000px;}
.x6d_c00333{left:735.900000px;}
.x11_c00333{left:737.100000px;}
.x147_c00333{left:738.150000px;}
.x44_c00333{left:741.150000px;}
.x19_c00333{left:742.800000px;}
.x6e_c00333{left:743.850000px;}
.x13d_c00333{left:745.350000px;}
.x136_c00333{left:747.600000px;}
.x114_c00333{left:748.950000px;}
.x35_c00333{left:750.600000px;}
.xff_c00333{left:752.250000px;}
.x12d_c00333{left:754.050000px;}
.x4d_c00333{left:756.750000px;}
.x3c_c00333{left:757.800000px;}
.x100_c00333{left:759.750000px;}
.x68_c00333{left:760.800000px;}
.x115_c00333{left:763.350000px;}
.x1a_c00333{left:765.150000px;}
.xf7_c00333{left:766.350000px;}
.x132_c00333{left:767.700000px;}
.xb_c00333{left:771.000000px;}
.xee_c00333{left:774.000000px;}
.x12_c00333{left:775.200000px;}
.x4e_c00333{left:778.050000px;}
.x65_c00333{left:779.250000px;}
.x1b_c00333{left:784.200000px;}
.x101_c00333{left:786.000000px;}
.x108_c00333{left:787.200000px;}
.x116_c00333{left:789.750000px;}
.x29_c00333{left:790.950000px;}
.x126_c00333{left:792.300000px;}
.x2d_c00333{left:793.500000px;}
.x143_c00333{left:796.200000px;}
.x137_c00333{left:798.000000px;}
.x13f_c00333{left:800.400000px;}
.x13_c00333{left:803.250000px;}
.x4f_c00333{left:805.800000px;}
.x12f_c00333{left:809.250000px;}
.x2e_c00333{left:811.800000px;}
.x133_c00333{left:813.000000px;}
.x45_c00333{left:815.400000px;}
.xf8_c00333{left:817.200000px;}
.x117_c00333{left:819.300000px;}
.x48_c00333{left:821.100000px;}
.x12b_c00333{left:822.450000px;}
.x50_c00333{left:824.100000px;}
.x3d_c00333{left:825.450000px;}
.x13e_c00333{left:828.450000px;}
.x141_c00333{left:830.100000px;}
.x144_c00333{left:832.500000px;}
.x69_c00333{left:834.150000px;}
.x66_c00333{left:836.400000px;}
.x2a_c00333{left:839.250000px;}
.x36_c00333{left:840.900000px;}
.x102_c00333{left:846.900000px;}
.x118_c00333{left:849.150000px;}
.x127_c00333{left:850.950000px;}
.x12c_c00333{left:853.350000px;}
.x139_c00333{left:854.850000px;}
.x13c_c00333{left:859.200000px;}
.x140_c00333{left:860.250000px;}
.x12e_c00333{left:863.700000px;}
.x148_c00333{left:872.850000px;}
.x14a_c00333{left:882.900000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls1_c00333{letter-spacing:0.000000pt;}
.ls0_c00333{letter-spacing:54.601093pt;}
.ws6_c00333{word-spacing:-83.934426pt;}
.wsc_c00333{word-spacing:-7.821229pt;}
.wsf_c00333{word-spacing:0.000000pt;}
.ws9_c00333{word-spacing:8.525391pt;}
.ws1_c00333{word-spacing:11.259259pt;}
.ws0_c00333{word-spacing:14.387775pt;}
.wsa_c00333{word-spacing:14.685769pt;}
.wse_c00333{word-spacing:17.832061pt;}
.ws3_c00333{word-spacing:21.770492pt;}
.ws2_c00333{word-spacing:25.267760pt;}
.ws4_c00333{word-spacing:28.765027pt;}
.ws5_c00333{word-spacing:39.043257pt;}
.wsb_c00333{word-spacing:56.034934pt;}
.ws8_c00333{word-spacing:128.465608pt;}
.ws7_c00333{word-spacing:555.925926pt;}
.wsd_c00333{word-spacing:668.888889pt;}
._5_c00333{margin-left:-54.601093pt;}
._4_c00333{width:3.497268pt;}
._1_c00333{width:51.103825pt;}
._3_c00333{width:54.601093pt;}
._2_c00333{width:58.098361pt;}
._0_c00333{width:222.469945pt;}
._6_c00333{width:225.967213pt;}
._7_c00333{width:1145.555556pt;}
.fs6_c00333{font-size:26.666667pt;}
.fs7_c00333{font-size:37.333333pt;}
.fs5_c00333{font-size:42.666667pt;}
.fs4_c00333{font-size:48.000000pt;}
.fs2_c00333{font-size:53.333333pt;}
.fs3_c00333{font-size:58.666667pt;}
.fs1_c00333{font-size:64.000000pt;}
.fs0_c00333{font-size:106.666667pt;}
.fs9_c00333{font-size:117.333333pt;}
.fs8_c00333{font-size:181.333333pt;}
.y0_c00333{bottom:0.000000pt;}
.y63_c00333{bottom:172.133333pt;}
.y4f_c00333{bottom:176.666667pt;}
.y62_c00333{bottom:188.266667pt;}
.y4e_c00333{bottom:195.200000pt;}
.y61_c00333{bottom:203.600000pt;}
.y4d_c00333{bottom:212.933333pt;}
.y60_c00333{bottom:219.600000pt;}
.y4c_c00333{bottom:231.466667pt;}
.y5f_c00333{bottom:234.666667pt;}
.y5e_c00333{bottom:246.800000pt;}
.y4b_c00333{bottom:247.466667pt;}
.y5d_c00333{bottom:250.266667pt;}
.y4a_c00333{bottom:263.466667pt;}
.y5c_c00333{bottom:264.000000pt;}
.y49_c00333{bottom:279.466667pt;}
.y5b_c00333{bottom:282.266667pt;}
.y48_c00333{bottom:295.733333pt;}
.y5a_c00333{bottom:298.533333pt;}
.y47_c00333{bottom:313.200000pt;}
.y59_c00333{bottom:314.266667pt;}
.y58_c00333{bottom:330.533333pt;}
.y46_c00333{bottom:331.466667pt;}
.y57_c00333{bottom:346.266667pt;}
.y45_c00333{bottom:347.466667pt;}
.y56_c00333{bottom:361.333333pt;}
.y44_c00333{bottom:363.466667pt;}
.y55_c00333{bottom:377.333333pt;}
.y43_c00333{bottom:379.466667pt;}
.y42_c00333{bottom:395.200000pt;}
.y54_c00333{bottom:396.800000pt;}
.y41_c00333{bottom:411.466667pt;}
.y53_c00333{bottom:412.800000pt;}
.y40_c00333{bottom:427.200000pt;}
.y52_c00333{bottom:429.466667pt;}
.y3f_c00333{bottom:443.466667pt;}
.y51_c00333{bottom:445.200000pt;}
.y3e_c00333{bottom:461.066667pt;}
.y50_c00333{bottom:461.466667pt;}
.y3d_c00333{bottom:472.000000pt;}
.y3c_c00333{bottom:487.333333pt;}
.y3b_c00333{bottom:497.866667pt;}
.y3a_c00333{bottom:510.666667pt;}
.y39_c00333{bottom:522.533333pt;}
.y38_c00333{bottom:531.466667pt;}
.y37_c00333{bottom:549.066667pt;}
.y36_c00333{bottom:557.466667pt;}
.y35_c00333{bottom:577.600000pt;}
.y34_c00333{bottom:589.733333pt;}
.y33_c00333{bottom:602.533333pt;}
.y31_c00333{bottom:603.600000pt;}
.y19_c00333{bottom:613.466667pt;}
.y30_c00333{bottom:619.333333pt;}
.y18_c00333{bottom:625.600000pt;}
.y32_c00333{bottom:630.666667pt;}
.y2f_c00333{bottom:635.333333pt;}
.y17_c00333{bottom:638.266667pt;}
.y2e_c00333{bottom:651.333333pt;}
.y16_c00333{bottom:663.600000pt;}
.y2d_c00333{bottom:667.066667pt;}
.y15_c00333{bottom:679.333333pt;}
.y2c_c00333{bottom:682.800000pt;}
.y14_c00333{bottom:694.666667pt;}
.y2b_c00333{bottom:698.800000pt;}
.y13_c00333{bottom:708.133333pt;}
.y2a_c00333{bottom:714.800000pt;}
.y12_c00333{bottom:730.533333pt;}
.y11_c00333{bottom:746.533333pt;}
.y29_c00333{bottom:760.000000pt;}
.y10_c00333{bottom:762.266667pt;}
.yf_c00333{bottom:778.266667pt;}
.y28_c00333{bottom:781.066667pt;}
.ye_c00333{bottom:794.533333pt;}
.y27_c00333{bottom:796.800000pt;}
.yd_c00333{bottom:810.266667pt;}
.y26_c00333{bottom:812.800000pt;}
.yc_c00333{bottom:819.200000pt;}
.y25_c00333{bottom:829.066667pt;}
.y24_c00333{bottom:841.733333pt;}
.yb_c00333{bottom:845.466667pt;}
.ya_c00333{bottom:861.466667pt;}
.y23_c00333{bottom:864.133333pt;}
.y22_c00333{bottom:880.133333pt;}
.y9_c00333{bottom:888.000000pt;}
.y21_c00333{bottom:896.133333pt;}
.y8_c00333{bottom:904.666667pt;}
.y20_c00333{bottom:911.866667pt;}
.y7_c00333{bottom:920.400000pt;}
.y1f_c00333{bottom:928.133333pt;}
.y6_c00333{bottom:936.666667pt;}
.y1e_c00333{bottom:943.866667pt;}
.y5_c00333{bottom:955.866667pt;}
.y1d_c00333{bottom:959.866667pt;}
.y1c_c00333{bottom:975.600000pt;}
.y4_c00333{bottom:976.000000pt;}
.y1b_c00333{bottom:991.333333pt;}
.y3_c00333{bottom:992.000000pt;}
.y1a_c00333{bottom:1004.133333pt;}
.y2_c00333{bottom:1007.333333pt;}
.y1_c00333{bottom:1029.466667pt;}
.h8_c00333{height:26.666667pt;}
.h9_c00333{height:37.333333pt;}
.h7_c00333{height:42.666667pt;}
.h6_c00333{height:48.000000pt;}
.h4_c00333{height:53.333333pt;}
.h5_c00333{height:58.666667pt;}
.h3_c00333{height:64.000000pt;}
.h2_c00333{height:106.666667pt;}
.hb_c00333{height:117.333333pt;}
.ha_c00333{height:181.333333pt;}
.h0_c00333{height:1131.840007pt;}
.h1_c00333{height:1132.000000pt;}
.w1_c00333{width:854.666667pt;}
.w0_c00333{width:854.720052pt;}
.x0_c00333{left:0.000000pt;}
.x70_c00333{left:128.000000pt;}
.xca_c00333{left:142.666667pt;}
.x71_c00333{left:145.866667pt;}
.x79_c00333{left:147.200000pt;}
.x81_c00333{left:148.666667pt;}
.x88_c00333{left:150.266667pt;}
.x9b_c00333{left:151.466667pt;}
.xa1_c00333{left:152.800000pt;}
.xac_c00333{left:154.000000pt;}
.xb7_c00333{left:156.666667pt;}
.xc2_c00333{left:158.000000pt;}
.xcd_c00333{left:160.266667pt;}
.xd3_c00333{left:161.733333pt;}
.xd7_c00333{left:162.933333pt;}
.xda_c00333{left:163.866667pt;}
.xe7_c00333{left:165.333333pt;}
.x82_c00333{left:166.533333pt;}
.x10c_c00333{left:168.266667pt;}
.x89_c00333{left:169.200000pt;}
.x121_c00333{left:170.266667pt;}
.x14c_c00333{left:171.600000pt;}
.x93_c00333{left:173.066667pt;}
.x159_c00333{left:174.666667pt;}
.xb8_c00333{left:175.600000pt;}
.x15c_c00333{left:176.800000pt;}
.x164_c00333{left:178.400000pt;}
.x120_c00333{left:179.333333pt;}
.x72_c00333{left:181.066667pt;}
.xde_c00333{left:184.800000pt;}
.x9c_c00333{left:186.666667pt;}
.xa2_c00333{left:187.733333pt;}
.x103_c00333{left:188.800000pt;}
.x94_c00333{left:190.000000pt;}
.xad_c00333{left:192.666667pt;}
.xc7_c00333{left:193.733333pt;}
.xd4_c00333{left:194.666667pt;}
.x7a_c00333{left:196.800000pt;}
.xb0_c00333{left:197.866667pt;}
.x109_c00333{left:200.933333pt;}
.x73_c00333{left:201.866667pt;}
.xa6_c00333{left:203.866667pt;}
.xe8_c00333{left:205.333333pt;}
.x83_c00333{left:206.533333pt;}
.x104_c00333{left:208.000000pt;}
.xc8_c00333{left:209.066667pt;}
.xcb_c00333{left:210.800000pt;}
.xb9_c00333{left:211.733333pt;}
.xd6_c00333{left:212.933333pt;}
.x8a_c00333{left:214.933333pt;}
.x74_c00333{left:216.533333pt;}
.x95_c00333{left:218.133333pt;}
.xd8_c00333{left:221.200000pt;}
.x151_c00333{left:222.400000pt;}
.xb1_c00333{left:223.733333pt;}
.x10a_c00333{left:225.200000pt;}
.xb3_c00333{left:228.266667pt;}
.x14e_c00333{left:229.733333pt;}
.xc3_c00333{left:230.666667pt;}
.xdb_c00333{left:232.666667pt;}
.x8b_c00333{left:233.866667pt;}
.xe1_c00333{left:234.933333pt;}
.x7b_c00333{left:236.800000pt;}
.xef_c00333{left:237.866667pt;}
.xe9_c00333{left:239.600000pt;}
.xd0_c00333{left:241.200000pt;}
.xb2_c00333{left:243.866667pt;}
.x15e_c00333{left:245.466667pt;}
.x152_c00333{left:246.800000pt;}
.xa3_c00333{left:247.866667pt;}
.xa7_c00333{left:248.933333pt;}
.x105_c00333{left:250.533333pt;}
.x9d_c00333{left:252.000000pt;}
.xba_c00333{left:253.066667pt;}
.xc9_c00333{left:256.133333pt;}
.x8c_c00333{left:258.533333pt;}
.x15f_c00333{left:259.600000pt;}
.x156_c00333{left:261.066667pt;}
.x15a_c00333{left:262.933333pt;}
.x96_c00333{left:263.866667pt;}
.x10f_c00333{left:265.733333pt;}
.x75_c00333{left:266.800000pt;}
.x84_c00333{left:270.266667pt;}
.xbb_c00333{left:272.000000pt;}
.x8d_c00333{left:273.866667pt;}
.x16c_c00333{left:274.933333pt;}
.xe2_c00333{left:275.866667pt;}
.x157_c00333{left:277.066667pt;}
.x14f_c00333{left:278.400000pt;}
.xea_c00333{left:279.600000pt;}
.xd1_c00333{left:281.866667pt;}
.xdc_c00333{left:282.800000pt;}
.x165_c00333{left:284.666667pt;}
.x76_c00333{left:285.733333pt;}
.x97_c00333{left:287.200000pt;}
.xa8_c00333{left:288.666667pt;}
.xc4_c00333{left:289.600000pt;}
.x85_c00333{left:291.066667pt;}
.x8e_c00333{left:292.400000pt;}
.xeb_c00333{left:294.000000pt;}
.x119_c00333{left:295.066667pt;}
.xcc_c00333{left:296.533333pt;}
.x14d_c00333{left:297.733333pt;}
.xe3_c00333{left:300.133333pt;}
.x160_c00333{left:301.200000pt;}
.xb4_c00333{left:303.200000pt;}
.x11a_c00333{left:304.933333pt;}
.x8f_c00333{left:307.066667pt;}
.xdd_c00333{left:308.000000pt;}
.xbf_c00333{left:311.600000pt;}
.x154_c00333{left:313.200000pt;}
.xb5_c00333{left:314.400000pt;}
.x7c_c00333{left:316.133333pt;}
.xae_c00333{left:317.866667pt;}
.x110_c00333{left:319.200000pt;}
.x168_c00333{left:322.266667pt;}
.x9e_c00333{left:325.333333pt;}
.x122_c00333{left:326.400000pt;}
.x155_c00333{left:330.266667pt;}
.x77_c00333{left:331.200000pt;}
.xbc_c00333{left:332.533333pt;}
.xce_c00333{left:334.000000pt;}
.x86_c00333{left:336.133333pt;}
.xd9_c00333{left:338.000000pt;}
.xd2_c00333{left:338.933333pt;}
.x106_c00333{left:340.133333pt;}
.x90_c00333{left:342.266667pt;}
.x7d_c00333{left:343.333333pt;}
.x1_c00333{left:345.333333pt;}
.xc5_c00333{left:346.266667pt;}
.xdf_c00333{left:349.066667pt;}
.x91_c00333{left:350.000000pt;}
.x169_c00333{left:351.066667pt;}
.xa9_c00333{left:352.400000pt;}
.x98_c00333{left:353.733333pt;}
.xe4_c00333{left:355.466667pt;}
.x15d_c00333{left:356.666667pt;}
.x10b_c00333{left:358.000000pt;}
.xa4_c00333{left:360.133333pt;}
.xc0_c00333{left:362.133333pt;}
.x7e_c00333{left:363.466667pt;}
.x161_c00333{left:366.800000pt;}
.x9f_c00333{left:368.800000pt;}
.x99_c00333{left:369.733333pt;}
.x166_c00333{left:371.066667pt;}
.xe5_c00333{left:372.400000pt;}
.xc1_c00333{left:374.000000pt;}
.xaa_c00333{left:378.000000pt;}
.x15b_c00333{left:379.333333pt;}
.xec_c00333{left:380.666667pt;}
.x7f_c00333{left:382.000000pt;}
.xaf_c00333{left:383.733333pt;}
.x10d_c00333{left:385.200000pt;}
.xbd_c00333{left:386.666667pt;}
.xd5_c00333{left:388.533333pt;}
.x123_c00333{left:390.400000pt;}
.x87_c00333{left:391.866667pt;}
.x9a_c00333{left:393.733333pt;}
.xc6_c00333{left:395.600000pt;}
.x163_c00333{left:396.666667pt;}
.xcf_c00333{left:398.666667pt;}
.xab_c00333{left:401.066667pt;}
.x78_c00333{left:402.266667pt;}
.x92_c00333{left:405.333333pt;}
.xf0_c00333{left:406.400000pt;}
.x111_c00333{left:408.133333pt;}
.xa5_c00333{left:412.266667pt;}
.x80_c00333{left:414.933333pt;}
.xb6_c00333{left:416.133333pt;}
.xa0_c00333{left:418.400000pt;}
.x16d_c00333{left:420.133333pt;}
.x16a_c00333{left:421.733333pt;}
.x167_c00333{left:422.800000pt;}
.xbe_c00333{left:423.733333pt;}
.x158_c00333{left:426.133333pt;}
.x162_c00333{left:427.333333pt;}
.x11b_c00333{left:428.800000pt;}
.xe0_c00333{left:430.133333pt;}
.xed_c00333{left:433.600000pt;}
.xe6_c00333{left:434.800000pt;}
.x14b_c00333{left:437.200000pt;}
.x124_c00333{left:438.266667pt;}
.x150_c00333{left:439.333333pt;}
.xf9_c00333{left:441.333333pt;}
.x16b_c00333{left:444.400000pt;}
.x1f_c00333{left:448.666667pt;}
.x153_c00333{left:451.066667pt;}
.x38_c00333{left:453.733333pt;}
.x61_c00333{left:459.466667pt;}
.x3_c00333{left:460.800000pt;}
.x14_c00333{left:461.866667pt;}
.x23_c00333{left:464.533333pt;}
.x37_c00333{left:467.200000pt;}
.x3e_c00333{left:468.533333pt;}
.x46_c00333{left:470.400000pt;}
.x55_c00333{left:472.000000pt;}
.x51_c00333{left:473.066667pt;}
.x5a_c00333{left:474.000000pt;}
.x63_c00333{left:475.066667pt;}
.x6a_c00333{left:476.133333pt;}
.x112_c00333{left:478.533333pt;}
.x11c_c00333{left:480.000000pt;}
.x12a_c00333{left:481.866667pt;}
.x24_c00333{left:483.733333pt;}
.x2f_c00333{left:484.800000pt;}
.x3f_c00333{left:486.133333pt;}
.xc_c00333{left:488.266667pt;}
.x107_c00333{left:489.200000pt;}
.x10e_c00333{left:490.800000pt;}
.x39_c00333{left:492.800000pt;}
.x128_c00333{left:494.133333pt;}
.x30_c00333{left:495.733333pt;}
.x4_c00333{left:497.600000pt;}
.x149_c00333{left:499.333333pt;}
.x5b_c00333{left:500.933333pt;}
.x1c_c00333{left:505.200000pt;}
.x49_c00333{left:506.266667pt;}
.x52_c00333{left:508.000000pt;}
.x20_c00333{left:509.733333pt;}
.x5_c00333{left:512.933333pt;}
.x6b_c00333{left:514.000000pt;}
.x31_c00333{left:515.200000pt;}
.x134_c00333{left:517.600000pt;}
.xf1_c00333{left:520.933333pt;}
.x15_c00333{left:522.266667pt;}
.x3a_c00333{left:525.066667pt;}
.xd_c00333{left:526.666667pt;}
.xfa_c00333{left:527.733333pt;}
.x5c_c00333{left:530.666667pt;}
.x1d_c00333{left:532.400000pt;}
.xf2_c00333{left:533.466667pt;}
.x21_c00333{left:535.600000pt;}
.x13a_c00333{left:536.533333pt;}
.x25_c00333{left:539.733333pt;}
.x6f_c00333{left:540.933333pt;}
.x40_c00333{left:541.866667pt;}
.x16_c00333{left:543.066667pt;}
.x145_c00333{left:544.666667pt;}
.x56_c00333{left:546.533333pt;}
.x2b_c00333{left:547.600000pt;}
.x5d_c00333{left:549.200000pt;}
.x4a_c00333{left:551.333333pt;}
.x11d_c00333{left:552.400000pt;}
.x53_c00333{left:553.733333pt;}
.xe_c00333{left:555.733333pt;}
.x2_c00333{left:559.466667pt;}
.x13b_c00333{left:562.133333pt;}
.x41_c00333{left:564.000000pt;}
.xf3_c00333{left:565.466667pt;}
.x5f_c00333{left:567.733333pt;}
.x146_c00333{left:568.666667pt;}
.x32_c00333{left:569.866667pt;}
.xf4_c00333{left:571.600000pt;}
.x26_c00333{left:573.866667pt;}
.x17_c00333{left:575.733333pt;}
.xfb_c00333{left:577.333333pt;}
.xf5_c00333{left:578.266667pt;}
.x57_c00333{left:580.800000pt;}
.x6_c00333{left:582.000000pt;}
.x33_c00333{left:583.333333pt;}
.xfc_c00333{left:584.400000pt;}
.x47_c00333{left:586.533333pt;}
.x1e_c00333{left:588.133333pt;}
.x7_c00333{left:589.333333pt;}
.xfd_c00333{left:590.800000pt;}
.x4b_c00333{left:591.733333pt;}
.x113_c00333{left:594.666667pt;}
.x3b_c00333{left:596.800000pt;}
.x62_c00333{left:598.933333pt;}
.x34_c00333{left:600.666667pt;}
.xf_c00333{left:603.066667pt;}
.x6c_c00333{left:604.000000pt;}
.x135_c00333{left:605.333333pt;}
.x67_c00333{left:608.133333pt;}
.x5e_c00333{left:609.733333pt;}
.x27_c00333{left:611.333333pt;}
.x60_c00333{left:612.533333pt;}
.x42_c00333{left:613.600000pt;}
.x11e_c00333{left:614.800000pt;}
.x125_c00333{left:615.866667pt;}
.xfe_c00333{left:617.200000pt;}
.x2c_c00333{left:618.933333pt;}
.x130_c00333{left:620.400000pt;}
.x28_c00333{left:621.866667pt;}
.xf6_c00333{left:623.066667pt;}
.x142_c00333{left:625.466667pt;}
.x10_c00333{left:626.400000pt;}
.x8_c00333{left:628.000000pt;}
.x43_c00333{left:630.266667pt;}
.x54_c00333{left:631.600000pt;}
.x58_c00333{left:633.333333pt;}
.x64_c00333{left:634.800000pt;}
.x9_c00333{left:636.000000pt;}
.x131_c00333{left:638.266667pt;}
.x18_c00333{left:641.333333pt;}
.x22_c00333{left:643.466667pt;}
.x59_c00333{left:644.533333pt;}
.x11f_c00333{left:646.800000pt;}
.x4c_c00333{left:647.733333pt;}
.x129_c00333{left:648.933333pt;}
.x138_c00333{left:651.066667pt;}
.xa_c00333{left:652.666667pt;}
.x6d_c00333{left:654.133333pt;}
.x11_c00333{left:655.200000pt;}
.x147_c00333{left:656.133333pt;}
.x44_c00333{left:658.800000pt;}
.x19_c00333{left:660.266667pt;}
.x6e_c00333{left:661.200000pt;}
.x13d_c00333{left:662.533333pt;}
.x136_c00333{left:664.533333pt;}
.x114_c00333{left:665.733333pt;}
.x35_c00333{left:667.200000pt;}
.xff_c00333{left:668.666667pt;}
.x12d_c00333{left:670.266667pt;}
.x4d_c00333{left:672.666667pt;}
.x3c_c00333{left:673.600000pt;}
.x100_c00333{left:675.333333pt;}
.x68_c00333{left:676.266667pt;}
.x115_c00333{left:678.533333pt;}
.x1a_c00333{left:680.133333pt;}
.xf7_c00333{left:681.200000pt;}
.x132_c00333{left:682.400000pt;}
.xb_c00333{left:685.333333pt;}
.xee_c00333{left:688.000000pt;}
.x12_c00333{left:689.066667pt;}
.x4e_c00333{left:691.600000pt;}
.x65_c00333{left:692.666667pt;}
.x1b_c00333{left:697.066667pt;}
.x101_c00333{left:698.666667pt;}
.x108_c00333{left:699.733333pt;}
.x116_c00333{left:702.000000pt;}
.x29_c00333{left:703.066667pt;}
.x126_c00333{left:704.266667pt;}
.x2d_c00333{left:705.333333pt;}
.x143_c00333{left:707.733333pt;}
.x137_c00333{left:709.333333pt;}
.x13f_c00333{left:711.466667pt;}
.x13_c00333{left:714.000000pt;}
.x4f_c00333{left:716.266667pt;}
.x12f_c00333{left:719.333333pt;}
.x2e_c00333{left:721.600000pt;}
.x133_c00333{left:722.666667pt;}
.x45_c00333{left:724.800000pt;}
.xf8_c00333{left:726.400000pt;}
.x117_c00333{left:728.266667pt;}
.x48_c00333{left:729.866667pt;}
.x12b_c00333{left:731.066667pt;}
.x50_c00333{left:732.533333pt;}
.x3d_c00333{left:733.733333pt;}
.x13e_c00333{left:736.400000pt;}
.x141_c00333{left:737.866667pt;}
.x144_c00333{left:740.000000pt;}
.x69_c00333{left:741.466667pt;}
.x66_c00333{left:743.466667pt;}
.x2a_c00333{left:746.000000pt;}
.x36_c00333{left:747.466667pt;}
.x102_c00333{left:752.800000pt;}
.x118_c00333{left:754.800000pt;}
.x127_c00333{left:756.400000pt;}
.x12c_c00333{left:758.533333pt;}
.x139_c00333{left:759.866667pt;}
.x13c_c00333{left:763.733333pt;}
.x140_c00333{left:764.666667pt;}
.x12e_c00333{left:767.733333pt;}
.x148_c00333{left:775.866667pt;}
.x14a_c00333{left:784.800000pt;}
}





/* 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_c00334 {
    display:none;
  }
  .loading-indicator_c00334.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00334 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_c00334 { 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_c00334" -> "#page-container .classname_c00334")
 */
.pf_c00334 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00334 { /* 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_c00334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00334 { /* 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_c00334 { /* 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_c00334 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00334 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00334 {overflow:visible;}
  }
}
.c_c00334 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00334 { /* 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_c00334:after { /* webkit #35443 */
  content: '';
}
.t_c00334:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00334 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 */
}
.__c00334 { /* 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_c00334 { /* info for Javascript */
  display:none;
}
.l_c00334 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00334 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00334 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00334: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_c00334 {
    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_c00334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00334.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_c00334 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00334;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.000000;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;}
.m8b_c00334{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m124_c00334{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m114_c00334{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00334{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m127_c00334{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m96_c00334{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00334{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me8_c00334{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m58_c00334{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me1_c00334{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m126_c00334{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mec_c00334{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m57_c00334{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m104_c00334{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me2_c00334{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00334{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.me9_c00334{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m29_c00334{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00334{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mba_c00334{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me0_c00334{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m49_c00334{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m54_c00334{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m32_c00334{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m125_c00334{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m63_c00334{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m116_c00334{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m19_c00334{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.med_c00334{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m122_c00334{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m2_c00334{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m52_c00334{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00334{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00334{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00334{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00334{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb_c00334{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00334{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00334{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00334{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00334{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00334{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.md4_c00334{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma_c00334{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3_c00334{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00334{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7_c00334{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00334{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00334{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00334{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00334{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.md_c00334{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me4_c00334{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m99_c00334{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m118_c00334{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m66_c00334{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00334{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m40_c00334{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00334{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00334{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m103_c00334{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00334{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m11_c00334{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m107_c00334{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m8_c00334{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00334{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00334{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00334{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00334{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00334{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00334{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mad_c00334{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00334{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m15_c00334{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m119_c00334{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00334{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m10_c00334{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m115_c00334{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m109_c00334{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00334{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00334{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mae_c00334{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00334{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m90_c00334{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00334{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md2_c00334{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00334{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00334{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00334{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.md6_c00334{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00334{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m43_c00334{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00334{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00334{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00334{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00334{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00334{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mef_c00334{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m98_c00334{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00334{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00334{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00334{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m18_c00334{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00334{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m77_c00334{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00334{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m101_c00334{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00334{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m79_c00334{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m83_c00334{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m120_c00334{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m16_c00334{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00334{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mab_c00334{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00334{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00334{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00334{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m28_c00334{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m69_c00334{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00334{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m33_c00334{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m123_c00334{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mde_c00334{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m17_c00334{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m85_c00334{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.meb_c00334{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m81_c00334{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m13_c00334{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mc_c00334{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00334{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md5_c00334{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4_c00334{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00334{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00334{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00334{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m105_c00334{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00334{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m38_c00334{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00334{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00334{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00334{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m39_c00334{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00334{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00334{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m51_c00334{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00334{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m12_c00334{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00334{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00334{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00334{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00334{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m37_c00334{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00334{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00334{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00334{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m97_c00334{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md8_c00334{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00334{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m60_c00334{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00334{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m61_c00334{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00334{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m93_c00334{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00334{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m45_c00334{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00334{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m20_c00334{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m106_c00334{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m44_c00334{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00334{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md0_c00334{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00334{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m36_c00334{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m91_c00334{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00334{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00334{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mca_c00334{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m50_c00334{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.md3_c00334{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9_c00334{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m26_c00334{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00334{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m78_c00334{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m84_c00334{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m41_c00334{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m95_c00334{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00334{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1_c00334{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00334{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00334{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m30_c00334{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m113_c00334{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00334{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mf_c00334{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00334{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00334{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m110_c00334{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00334{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m100_c00334{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m31_c00334{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00334{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m70_c00334{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m89_c00334{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.maf_c00334{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m42_c00334{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m82_c00334{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m108_c00334{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m94_c00334{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m88_c00334{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m76_c00334{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m27_c00334{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00334{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00334{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m62_c00334{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m73_c00334{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00334{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m80_c00334{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mda_c00334{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00334{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m68_c00334{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00334{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m102_c00334{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m111_c00334{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00334{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m21_c00334{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m75_c00334{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00334{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00334{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6_c00334{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m22_c00334{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00334{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00334{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me7_c00334{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m53_c00334{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mac_c00334{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00334{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00334{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m55_c00334{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00334{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00334{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m65_c00334{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00334{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m35_c00334{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mce_c00334{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00334{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m112_c00334{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me5_c00334{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mff_c00334{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m47_c00334{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.me6_c00334{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00334{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md1_c00334{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m87_c00334{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00334{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m117_c00334{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00334{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00334{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m67_c00334{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00334{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m23_c00334{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00334{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.md9_c00334{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00334{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.maa_c00334{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m56_c00334{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md7_c00334{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m34_c00334{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m48_c00334{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00334{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00334{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00334{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m14_c00334{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me3_c00334{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m46_c00334{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m5_c00334{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00334{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m121_c00334{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m92_c00334{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00334{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00334{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me_c00334{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m74_c00334{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m128_c00334{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m25_c00334{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m71_c00334{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00334{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m72_c00334{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m59_c00334{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m0_c00334{transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);}
.mee_c00334{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m86_c00334{transform:matrix(0.459750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00334{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00334{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mea_c00334{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00334{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m64_c00334{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m24_c00334{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls1_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:55.714286px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{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__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00334{word-spacing:-85.714286px;}
.wse_c00334{word-spacing:-6.388889px;}
.ws16_c00334{word-spacing:-2.118598px;}
.ws6_c00334{word-spacing:-0.277778px;}
.ws17_c00334{word-spacing:0.000000px;}
.ws5_c00334{word-spacing:1.000000px;}
.ws7_c00334{word-spacing:2.210526px;}
.ws13_c00334{word-spacing:18.125000px;}
.wsc_c00334{word-spacing:19.994638px;}
.ws0_c00334{word-spacing:22.142857px;}
.wsb_c00334{word-spacing:23.211796px;}
.ws3_c00334{word-spacing:25.714286px;}
.ws1_c00334{word-spacing:29.285714px;}
.wsf_c00334{word-spacing:34.642857px;}
.wsa_c00334{word-spacing:36.000000px;}
.ws2_c00334{word-spacing:40.000000px;}
.ws11_c00334{word-spacing:44.166667px;}
.ws8_c00334{word-spacing:48.000000px;}
.ws14_c00334{word-spacing:58.750000px;}
.ws15_c00334{word-spacing:60.000000px;}
.ws9_c00334{word-spacing:67.250000px;}
.ws4_c00334{word-spacing:67.631579px;}
.ws12_c00334{word-spacing:69.861111px;}
.wsd_c00334{word-spacing:148.585799px;}
._6_c00334{margin-left:-55.714286px;}
._4_c00334{width:42.168901px;}
._8_c00334{width:52.142857px;}
._5_c00334{width:53.428954px;}
._0_c00334{width:59.285714px;}
._1_c00334{width:64.642857px;}
._3_c00334{width:80.416667px;}
._7_c00334{width:101.944444px;}
._2_c00334{width:398.571429px;}
.fc0_c00334{color:transparent;}
.fs6_c00334{font-size:30.000000px;}
.fs7_c00334{font-size:48.000000px;}
.fs5_c00334{font-size:54.000000px;}
.fs4_c00334{font-size:60.000000px;}
.fs3_c00334{font-size:66.000000px;}
.fs2_c00334{font-size:72.000000px;}
.fs1_c00334{font-size:78.000000px;}
.fs0_c00334{font-size:84.000000px;}
.y0_c00334{bottom:0.000000px;}
.y6e_c00334{bottom:165.900000px;}
.y38_c00334{bottom:181.800000px;}
.y6d_c00334{bottom:183.600000px;}
.y37_c00334{bottom:199.500000px;}
.y6c_c00334{bottom:203.700000px;}
.y36_c00334{bottom:221.400000px;}
.y6b_c00334{bottom:223.200000px;}
.y35_c00334{bottom:252.750000px;}
.y6a_c00334{bottom:254.100000px;}
.y34_c00334{bottom:271.500000px;}
.y69_c00334{bottom:272.550000px;}
.y33_c00334{bottom:289.500000px;}
.y68_c00334{bottom:290.550000px;}
.y67_c00334{bottom:308.550000px;}
.y32_c00334{bottom:310.800000px;}
.y66_c00334{bottom:326.550000px;}
.y31_c00334{bottom:329.100000px;}
.y30_c00334{bottom:346.800000px;}
.y65_c00334{bottom:352.050000px;}
.y2f_c00334{bottom:364.800000px;}
.y64_c00334{bottom:370.800000px;}
.y2e_c00334{bottom:382.500000px;}
.y63_c00334{bottom:388.800000px;}
.y2d_c00334{bottom:400.200000px;}
.y62_c00334{bottom:406.800000px;}
.y2c_c00334{bottom:417.900000px;}
.y61_c00334{bottom:424.500000px;}
.y2b_c00334{bottom:435.900000px;}
.y60_c00334{bottom:444.300000px;}
.y2a_c00334{bottom:457.050000px;}
.y5f_c00334{bottom:462.300000px;}
.y29_c00334{bottom:475.800000px;}
.y5e_c00334{bottom:480.300000px;}
.y28_c00334{bottom:493.800000px;}
.y5d_c00334{bottom:498.300000px;}
.y27_c00334{bottom:511.800000px;}
.y5c_c00334{bottom:516.000000px;}
.y26_c00334{bottom:529.500000px;}
.y5b_c00334{bottom:534.000000px;}
.y25_c00334{bottom:547.500000px;}
.y5a_c00334{bottom:552.300000px;}
.y24_c00334{bottom:565.200000px;}
.y59_c00334{bottom:570.300000px;}
.y23_c00334{bottom:583.200000px;}
.y58_c00334{bottom:588.000000px;}
.y21_c00334{bottom:600.900000px;}
.y57_c00334{bottom:606.000000px;}
.y20_c00334{bottom:618.600000px;}
.y56_c00334{bottom:624.000000px;}
.y1f_c00334{bottom:636.600000px;}
.y55_c00334{bottom:641.700000px;}
.y1e_c00334{bottom:654.300000px;}
.y54_c00334{bottom:659.700000px;}
.y1d_c00334{bottom:672.000000px;}
.y53_c00334{bottom:677.400000px;}
.y1c_c00334{bottom:690.000000px;}
.y52_c00334{bottom:695.400000px;}
.y1b_c00334{bottom:707.700000px;}
.y51_c00334{bottom:713.100000px;}
.y22_c00334{bottom:728.700000px;}
.y1a_c00334{bottom:729.300000px;}
.y50_c00334{bottom:737.250000px;}
.y19_c00334{bottom:742.650000px;}
.y4f_c00334{bottom:751.650000px;}
.y18_c00334{bottom:758.100000px;}
.y4e_c00334{bottom:766.050000px;}
.y17_c00334{bottom:771.150000px;}
.y4d_c00334{bottom:780.600000px;}
.y16_c00334{bottom:786.600000px;}
.y4c_c00334{bottom:795.300000px;}
.y15_c00334{bottom:799.950000px;}
.y4b_c00334{bottom:808.950000px;}
.y14_c00334{bottom:815.400000px;}
.y4a_c00334{bottom:823.350000px;}
.y13_c00334{bottom:828.750000px;}
.y49_c00334{bottom:837.750000px;}
.y12_c00334{bottom:844.200000px;}
.y48_c00334{bottom:852.150000px;}
.y11_c00334{bottom:858.300000px;}
.y47_c00334{bottom:866.850000px;}
.y10_c00334{bottom:872.700000px;}
.y46_c00334{bottom:880.500000px;}
.yf_c00334{bottom:887.100000px;}
.y45_c00334{bottom:894.900000px;}
.ye_c00334{bottom:902.550000px;}
.y44_c00334{bottom:909.300000px;}
.yd_c00334{bottom:921.150000px;}
.y43_c00334{bottom:923.400000px;}
.yc_c00334{bottom:938.850000px;}
.y42_c00334{bottom:943.050000px;}
.yb_c00334{bottom:956.850000px;}
.y41_c00334{bottom:960.750000px;}
.ya_c00334{bottom:974.550000px;}
.y40_c00334{bottom:978.750000px;}
.y9_c00334{bottom:996.300000px;}
.y3f_c00334{bottom:996.450000px;}
.y8_c00334{bottom:1014.000000px;}
.y3e_c00334{bottom:1014.450000px;}
.y7_c00334{bottom:1032.000000px;}
.y3d_c00334{bottom:1036.350000px;}
.y6_c00334{bottom:1049.700000px;}
.y3c_c00334{bottom:1054.050000px;}
.y5_c00334{bottom:1067.400000px;}
.y3b_c00334{bottom:1071.750000px;}
.y4_c00334{bottom:1085.100000px;}
.y3a_c00334{bottom:1089.750000px;}
.y39_c00334{bottom:1107.750000px;}
.y3_c00334{bottom:1121.100000px;}
.y2_c00334{bottom:1131.150000px;}
.y1_c00334{bottom:1134.750000px;}
.h8_c00334{height:30.000000px;}
.h9_c00334{height:48.000000px;}
.h7_c00334{height:54.000000px;}
.h6_c00334{height:60.000000px;}
.h5_c00334{height:66.000000px;}
.h4_c00334{height:72.000000px;}
.h3_c00334{height:78.000000px;}
.h2_c00334{height:84.000000px;}
.h1_c00334{height:1265.250000px;}
.h0_c00334{height:1265.399964px;}
.w1_c00334{width:961.500000px;}
.w0_c00334{width:961.560058px;}
.x0_c00334{left:0.000000px;}
.xa0_c00334{left:93.600000px;}
.xa7_c00334{left:97.350000px;}
.x93_c00334{left:98.700000px;}
.x45_c00334{left:101.850000px;}
.x36_c00334{left:103.350000px;}
.x4_c00334{left:107.250000px;}
.x4a_c00334{left:112.350000px;}
.x55_c00334{left:114.900000px;}
.x7e_c00334{left:116.250000px;}
.x6d_c00334{left:118.200000px;}
.x1a_c00334{left:120.450000px;}
.x13_c00334{left:122.400000px;}
.x5c_c00334{left:129.150000px;}
.x4f_c00334{left:130.650000px;}
.x98_c00334{left:133.200000px;}
.xaa_c00334{left:134.250000px;}
.xa6_c00334{left:137.700000px;}
.xa_c00334{left:141.450000px;}
.x23_c00334{left:145.800000px;}
.x5_c00334{left:148.350000px;}
.x62_c00334{left:150.750000px;}
.x52_c00334{left:152.250000px;}
.x77_c00334{left:154.350000px;}
.x7f_c00334{left:155.550000px;}
.x1b_c00334{left:158.250000px;}
.x91_c00334{left:160.050000px;}
.x83_c00334{left:161.550000px;}
.x24_c00334{left:162.750000px;}
.x3b_c00334{left:164.400000px;}
.x5d_c00334{left:166.950000px;}
.x14_c00334{left:169.200000px;}
.x4b_c00334{left:171.750000px;}
.x71_c00334{left:174.450000px;}
.x8f_c00334{left:176.850000px;}
.x30_c00334{left:178.050000px;}
.x3c_c00334{left:180.600000px;}
.x6_c00334{left:182.250000px;}
.x15_c00334{left:185.100000px;}
.x63_c00334{left:187.050000px;}
.x69_c00334{left:189.000000px;}
.x43_c00334{left:190.650000px;}
.x29_c00334{left:192.000000px;}
.x67_c00334{left:193.800000px;}
.x88_c00334{left:195.750000px;}
.x25_c00334{left:197.700000px;}
.x3f_c00334{left:199.950000px;}
.x1c_c00334{left:202.200000px;}
.x44_c00334{left:203.250000px;}
.x9b_c00334{left:204.300000px;}
.x7b_c00334{left:206.550000px;}
.xb_c00334{left:207.750000px;}
.x80_c00334{left:208.800000px;}
.x3d_c00334{left:210.150000px;}
.x78_c00334{left:212.250000px;}
.x31_c00334{left:214.050000px;}
.x37_c00334{left:216.450000px;}
.x89_c00334{left:217.650000px;}
.x5e_c00334{left:219.150000px;}
.x4c_c00334{left:220.650000px;}
.x64_c00334{left:223.050000px;}
.x92_c00334{left:226.500000px;}
.x16_c00334{left:227.550000px;}
.x5f_c00334{left:228.900000px;}
.xc_c00334{left:230.400000px;}
.x79_c00334{left:233.550000px;}
.x26_c00334{left:235.500000px;}
.x65_c00334{left:237.150000px;}
.x6a_c00334{left:238.200000px;}
.x53_c00334{left:241.500000px;}
.x68_c00334{left:243.150000px;}
.x66_c00334{left:245.100000px;}
.x2a_c00334{left:246.300000px;}
.x94_c00334{left:247.350000px;}
.xa3_c00334{left:249.000000px;}
.x1d_c00334{left:250.050000px;}
.x3e_c00334{left:251.850000px;}
.x8a_c00334{left:254.700000px;}
.xd_c00334{left:257.100000px;}
.x46_c00334{left:258.450000px;}
.x56_c00334{left:260.250000px;}
.x81_c00334{left:262.050000px;}
.x7_c00334{left:264.000000px;}
.x1e_c00334{left:265.500000px;}
.x57_c00334{left:267.450000px;}
.x38_c00334{left:268.650000px;}
.x60_c00334{left:271.800000px;}
.x5a_c00334{left:273.600000px;}
.x58_c00334{left:274.650000px;}
.x2b_c00334{left:276.600000px;}
.x95_c00334{left:277.950000px;}
.x5b_c00334{left:280.800000px;}
.x8d_c00334{left:283.500000px;}
.x2c_c00334{left:284.550000px;}
.xe_c00334{left:285.600000px;}
.x8b_c00334{left:286.650000px;}
.x61_c00334{left:287.700000px;}
.x40_c00334{left:289.200000px;}
.xab_c00334{left:290.400000px;}
.x90_c00334{left:292.050000px;}
.x6e_c00334{left:293.100000px;}
.x17_c00334{left:294.450000px;}
.x47_c00334{left:297.000000px;}
.x9d_c00334{left:298.950000px;}
.x1f_c00334{left:300.000000px;}
.x9f_c00334{left:301.050000px;}
.x41_c00334{left:303.900000px;}
.xa8_c00334{left:305.250000px;}
.x39_c00334{left:307.950000px;}
.x27_c00334{left:309.600000px;}
.xf_c00334{left:310.800000px;}
.x9c_c00334{left:312.300000px;}
.x54_c00334{left:315.150000px;}
.x82_c00334{left:316.350000px;}
.x32_c00334{left:320.700000px;}
.xac_c00334{left:322.050000px;}
.x99_c00334{left:324.000000px;}
.x8_c00334{left:325.200000px;}
.x18_c00334{left:327.900000px;}
.xa4_c00334{left:328.950000px;}
.x2d_c00334{left:330.750000px;}
.x59_c00334{left:332.700000px;}
.x20_c00334{left:334.200000px;}
.x84_c00334{left:336.900000px;}
.xa1_c00334{left:338.550000px;}
.x42_c00334{left:340.650000px;}
.x72_c00334{left:342.300000px;}
.xa5_c00334{left:343.650000px;}
.x6b_c00334{left:344.700000px;}
.x1_c00334{left:346.650000px;}
.x96_c00334{left:348.600000px;}
.x73_c00334{left:351.300000px;}
.x2e_c00334{left:352.350000px;}
.x75_c00334{left:353.400000px;}
.x9a_c00334{left:355.350000px;}
.xa9_c00334{left:356.400000px;}
.x48_c00334{left:357.750000px;}
.x33_c00334{left:359.250000px;}
.x6f_c00334{left:362.250000px;}
.x10_c00334{left:364.050000px;}
.x50_c00334{left:365.250000px;}
.x21_c00334{left:366.900000px;}
.x85_c00334{left:370.800000px;}
.x28_c00334{left:372.600000px;}
.x34_c00334{left:374.700000px;}
.xa2_c00334{left:376.650000px;}
.x7a_c00334{left:377.850000px;}
.x9_c00334{left:378.900000px;}
.x8e_c00334{left:381.750000px;}
.x9e_c00334{left:382.800000px;}
.x7c_c00334{left:385.800000px;}
.x49_c00334{left:388.050000px;}
.x70_c00334{left:390.750000px;}
.x86_c00334{left:392.400000px;}
.x19_c00334{left:394.800000px;}
.x4d_c00334{left:397.050000px;}
.x7d_c00334{left:398.100000px;}
.x2f_c00334{left:399.450000px;}
.x11_c00334{left:401.100000px;}
.x74_c00334{left:402.450000px;}
.x6c_c00334{left:404.400000px;}
.x76_c00334{left:407.100000px;}
.x35_c00334{left:408.600000px;}
.x97_c00334{left:411.600000px;}
.xad_c00334{left:414.600000px;}
.x51_c00334{left:417.900000px;}
.x22_c00334{left:419.100000px;}
.x12_c00334{left:422.700000px;}
.x4e_c00334{left:424.350000px;}
.x3a_c00334{left:425.700000px;}
.x8c_c00334{left:431.100000px;}
.x87_c00334{left:442.500000px;}
.x147_c00334{left:454.350000px;}
.x122_c00334{left:456.900000px;}
.xec_c00334{left:458.250000px;}
.xd0_c00334{left:459.300000px;}
.x114_c00334{left:470.550000px;}
.xf2_c00334{left:472.200000px;}
.x128_c00334{left:474.000000px;}
.xe8_c00334{left:475.950000px;}
.xc7_c00334{left:477.150000px;}
.xae_c00334{left:478.500000px;}
.xfe_c00334{left:486.300000px;}
.x142_c00334{left:490.950000px;}
.xe4_c00334{left:492.900000px;}
.x129_c00334{left:494.550000px;}
.x11c_c00334{left:496.800000px;}
.xb9_c00334{left:499.950000px;}
.xd1_c00334{left:501.450000px;}
.xca_c00334{left:502.650000px;}
.x111_c00334{left:505.050000px;}
.x121_c00334{left:507.000000px;}
.x103_c00334{left:508.200000px;}
.xaf_c00334{left:509.400000px;}
.xe5_c00334{left:510.900000px;}
.x146_c00334{left:514.500000px;}
.xc0_c00334{left:516.450000px;}
.x13e_c00334{left:517.500000px;}
.xe9_c00334{left:518.850000px;}
.xf7_c00334{left:522.300000px;}
.x13b_c00334{left:523.950000px;}
.xdc_c00334{left:525.000000px;}
.x115_c00334{left:526.050000px;}
.x104_c00334{left:527.250000px;}
.x112_c00334{left:529.500000px;}
.xea_c00334{left:530.700000px;}
.x108_c00334{left:532.950000px;}
.x153_c00334{left:534.150000px;}
.xba_c00334{left:535.200000px;}
.x11d_c00334{left:537.150000px;}
.x11f_c00334{left:538.950000px;}
.x123_c00334{left:540.450000px;}
.xb0_c00334{left:541.500000px;}
.x139_c00334{left:543.000000px;}
.xcb_c00334{left:544.350000px;}
.xf3_c00334{left:546.750000px;}
.xc8_c00334{left:547.800000px;}
.x14b_c00334{left:549.300000px;}
.x144_c00334{left:550.350000px;}
.xf8_c00334{left:551.850000px;}
.xc1_c00334{left:553.950000px;}
.xd7_c00334{left:555.450000px;}
.x14c_c00334{left:556.650000px;}
.xf4_c00334{left:561.150000px;}
.x12b_c00334{left:562.350000px;}
.xdd_c00334{left:563.550000px;}
.xd2_c00334{left:566.550000px;}
.xb1_c00334{left:573.150000px;}
.x124_c00334{left:574.350000px;}
.x156_c00334{left:576.000000px;}
.xc2_c00334{left:579.450000px;}
.xcc_c00334{left:581.100000px;}
.x134_c00334{left:583.950000px;}
.x109_c00334{left:585.900000px;}
.xf9_c00334{left:587.850000px;}
.x105_c00334{left:589.050000px;}
.xde_c00334{left:591.600000px;}
.xbb_c00334{left:593.550000px;}
.x116_c00334{left:594.600000px;}
.xf5_c00334{left:596.100000px;}
.xcd_c00334{left:597.600000px;}
.xb2_c00334{left:598.650000px;}
.xeb_c00334{left:601.650000px;}
.x12c_c00334{left:603.000000px;}
.x148_c00334{left:604.500000px;}
.xe6_c00334{left:605.850000px;}
.x10a_c00334{left:607.500000px;}
.xfa_c00334{left:609.750000px;}
.x113_c00334{left:611.700000px;}
.x13f_c00334{left:614.100000px;}
.xc3_c00334{left:615.150000px;}
.xd3_c00334{left:617.250000px;}
.xed_c00334{left:619.800000px;}
.xb3_c00334{left:621.000000px;}
.x117_c00334{left:623.400000px;}
.x135_c00334{left:624.600000px;}
.x154_c00334{left:626.700000px;}
.xdf_c00334{left:628.650000px;}
.xce_c00334{left:629.700000px;}
.xc9_c00334{left:633.750000px;}
.x10b_c00334{left:635.850000px;}
.x11e_c00334{left:637.950000px;}
.xee_c00334{left:639.600000px;}
.x106_c00334{left:641.550000px;}
.x10c_c00334{left:643.050000px;}
.x125_c00334{left:644.250000px;}
.xe0_c00334{left:645.600000px;}
.x10d_c00334{left:650.250000px;}
.xff_c00334{left:652.200000px;}
.xd4_c00334{left:653.250000px;}
.xbc_c00334{left:655.050000px;}
.x10e_c00334{left:658.200000px;}
.x100_c00334{left:659.400000px;}
.x126_c00334{left:660.750000px;}
.xb4_c00334{left:662.100000px;}
.x10f_c00334{left:665.100000px;}
.xf6_c00334{left:666.300000px;}
.x14d_c00334{left:668.550000px;}
.xc4_c00334{left:670.200000px;}
.x157_c00334{left:672.000000px;}
.x101_c00334{left:673.500000px;}
.xbd_c00334{left:675.600000px;}
.x136_c00334{left:677.550000px;}
.xe1_c00334{left:678.750000px;}
.xd8_c00334{left:679.950000px;}
.x102_c00334{left:681.450000px;}
.x133_c00334{left:682.500000px;}
.xef_c00334{left:684.600000px;}
.x107_c00334{left:686.250000px;}
.x118_c00334{left:688.500000px;}
.x131_c00334{left:690.300000px;}
.x14e_c00334{left:692.550000px;}
.xb5_c00334{left:694.800000px;}
.x12d_c00334{left:697.050000px;}
.x151_c00334{left:698.550000px;}
.xbe_c00334{left:699.750000px;}
.x110_c00334{left:701.100000px;}
.x119_c00334{left:702.600000px;}
.x137_c00334{left:705.900000px;}
.x140_c00334{left:706.950000px;}
.x130_c00334{left:711.000000px;}
.xd9_c00334{left:712.050000px;}
.xf0_c00334{left:714.150000px;}
.x14f_c00334{left:715.650000px;}
.x12a_c00334{left:717.300000px;}
.x143_c00334{left:718.350000px;}
.xc5_c00334{left:720.900000px;}
.xfb_c00334{left:722.850000px;}
.x11a_c00334{left:723.900000px;}
.xda_c00334{left:727.200000px;}
.xb6_c00334{left:729.000000px;}
.x152_c00334{left:730.950000px;}
.x150_c00334{left:734.400000px;}
.x127_c00334{left:737.100000px;}
.x13c_c00334{left:738.450000px;}
.xcf_c00334{left:740.250000px;}
.xe2_c00334{left:741.450000px;}
.x149_c00334{left:743.700000px;}
.xf1_c00334{left:745.050000px;}
.xc6_c00334{left:747.150000px;}
.xbf_c00334{left:748.650000px;}
.xe7_c00334{left:750.600000px;}
.x11b_c00334{left:751.650000px;}
.xfc_c00334{left:752.700000px;}
.x12e_c00334{left:754.950000px;}
.xd5_c00334{left:757.350000px;}
.x13d_c00334{left:759.300000px;}
.xb7_c00334{left:760.350000px;}
.x138_c00334{left:762.300000px;}
.xe3_c00334{left:763.350000px;}
.x141_c00334{left:764.550000px;}
.x2_c00334{left:768.150000px;}
.x145_c00334{left:769.200000px;}
.x14a_c00334{left:770.700000px;}
.x13a_c00334{left:772.050000px;}
.x132_c00334{left:775.350000px;}
.x155_c00334{left:776.550000px;}
.xdb_c00334{left:778.350000px;}
.x120_c00334{left:779.850000px;}
.xb8_c00334{left:781.200000px;}
.xfd_c00334{left:782.550000px;}
.xd6_c00334{left:786.150000px;}
.x12f_c00334{left:788.400000px;}
.x3_c00334{left:790.800000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls1_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:49.523810pt;}
.ws10_c00334{word-spacing:-76.190476pt;}
.wse_c00334{word-spacing:-5.679012pt;}
.ws16_c00334{word-spacing:-1.883199pt;}
.ws6_c00334{word-spacing:-0.246914pt;}
.ws17_c00334{word-spacing:0.000000pt;}
.ws5_c00334{word-spacing:0.888889pt;}
.ws7_c00334{word-spacing:1.964912pt;}
.ws13_c00334{word-spacing:16.111111pt;}
.wsc_c00334{word-spacing:17.773012pt;}
.ws0_c00334{word-spacing:19.682540pt;}
.wsb_c00334{word-spacing:20.632708pt;}
.ws3_c00334{word-spacing:22.857143pt;}
.ws1_c00334{word-spacing:26.031746pt;}
.wsf_c00334{word-spacing:30.793651pt;}
.wsa_c00334{word-spacing:32.000000pt;}
.ws2_c00334{word-spacing:35.555556pt;}
.ws11_c00334{word-spacing:39.259259pt;}
.ws8_c00334{word-spacing:42.666667pt;}
.ws14_c00334{word-spacing:52.222222pt;}
.ws15_c00334{word-spacing:53.333333pt;}
.ws9_c00334{word-spacing:59.777778pt;}
.ws4_c00334{word-spacing:60.116959pt;}
.ws12_c00334{word-spacing:62.098765pt;}
.wsd_c00334{word-spacing:132.076266pt;}
._6_c00334{margin-left:-49.523810pt;}
._4_c00334{width:37.483467pt;}
._8_c00334{width:46.349206pt;}
._5_c00334{width:47.492404pt;}
._0_c00334{width:52.698413pt;}
._1_c00334{width:57.460317pt;}
._3_c00334{width:71.481481pt;}
._7_c00334{width:90.617284pt;}
._2_c00334{width:354.285714pt;}
.fs6_c00334{font-size:26.666667pt;}
.fs7_c00334{font-size:42.666667pt;}
.fs5_c00334{font-size:48.000000pt;}
.fs4_c00334{font-size:53.333333pt;}
.fs3_c00334{font-size:58.666667pt;}
.fs2_c00334{font-size:64.000000pt;}
.fs1_c00334{font-size:69.333333pt;}
.fs0_c00334{font-size:74.666667pt;}
.y0_c00334{bottom:0.000000pt;}
.y6e_c00334{bottom:147.466667pt;}
.y38_c00334{bottom:161.600000pt;}
.y6d_c00334{bottom:163.200000pt;}
.y37_c00334{bottom:177.333333pt;}
.y6c_c00334{bottom:181.066667pt;}
.y36_c00334{bottom:196.800000pt;}
.y6b_c00334{bottom:198.400000pt;}
.y35_c00334{bottom:224.666667pt;}
.y6a_c00334{bottom:225.866667pt;}
.y34_c00334{bottom:241.333333pt;}
.y69_c00334{bottom:242.266667pt;}
.y33_c00334{bottom:257.333333pt;}
.y68_c00334{bottom:258.266667pt;}
.y67_c00334{bottom:274.266667pt;}
.y32_c00334{bottom:276.266667pt;}
.y66_c00334{bottom:290.266667pt;}
.y31_c00334{bottom:292.533333pt;}
.y30_c00334{bottom:308.266667pt;}
.y65_c00334{bottom:312.933333pt;}
.y2f_c00334{bottom:324.266667pt;}
.y64_c00334{bottom:329.600000pt;}
.y2e_c00334{bottom:340.000000pt;}
.y63_c00334{bottom:345.600000pt;}
.y2d_c00334{bottom:355.733333pt;}
.y62_c00334{bottom:361.600000pt;}
.y2c_c00334{bottom:371.466667pt;}
.y61_c00334{bottom:377.333333pt;}
.y2b_c00334{bottom:387.466667pt;}
.y60_c00334{bottom:394.933333pt;}
.y2a_c00334{bottom:406.266667pt;}
.y5f_c00334{bottom:410.933333pt;}
.y29_c00334{bottom:422.933333pt;}
.y5e_c00334{bottom:426.933333pt;}
.y28_c00334{bottom:438.933333pt;}
.y5d_c00334{bottom:442.933333pt;}
.y27_c00334{bottom:454.933333pt;}
.y5c_c00334{bottom:458.666667pt;}
.y26_c00334{bottom:470.666667pt;}
.y5b_c00334{bottom:474.666667pt;}
.y25_c00334{bottom:486.666667pt;}
.y5a_c00334{bottom:490.933333pt;}
.y24_c00334{bottom:502.400000pt;}
.y59_c00334{bottom:506.933333pt;}
.y23_c00334{bottom:518.400000pt;}
.y58_c00334{bottom:522.666667pt;}
.y21_c00334{bottom:534.133333pt;}
.y57_c00334{bottom:538.666667pt;}
.y20_c00334{bottom:549.866667pt;}
.y56_c00334{bottom:554.666667pt;}
.y1f_c00334{bottom:565.866667pt;}
.y55_c00334{bottom:570.400000pt;}
.y1e_c00334{bottom:581.600000pt;}
.y54_c00334{bottom:586.400000pt;}
.y1d_c00334{bottom:597.333333pt;}
.y53_c00334{bottom:602.133333pt;}
.y1c_c00334{bottom:613.333333pt;}
.y52_c00334{bottom:618.133333pt;}
.y1b_c00334{bottom:629.066667pt;}
.y51_c00334{bottom:633.866667pt;}
.y22_c00334{bottom:647.733333pt;}
.y1a_c00334{bottom:648.266667pt;}
.y50_c00334{bottom:655.333333pt;}
.y19_c00334{bottom:660.133333pt;}
.y4f_c00334{bottom:668.133333pt;}
.y18_c00334{bottom:673.866667pt;}
.y4e_c00334{bottom:680.933333pt;}
.y17_c00334{bottom:685.466667pt;}
.y4d_c00334{bottom:693.866667pt;}
.y16_c00334{bottom:699.200000pt;}
.y4c_c00334{bottom:706.933333pt;}
.y15_c00334{bottom:711.066667pt;}
.y4b_c00334{bottom:719.066667pt;}
.y14_c00334{bottom:724.800000pt;}
.y4a_c00334{bottom:731.866667pt;}
.y13_c00334{bottom:736.666667pt;}
.y49_c00334{bottom:744.666667pt;}
.y12_c00334{bottom:750.400000pt;}
.y48_c00334{bottom:757.466667pt;}
.y11_c00334{bottom:762.933333pt;}
.y47_c00334{bottom:770.533333pt;}
.y10_c00334{bottom:775.733333pt;}
.y46_c00334{bottom:782.666667pt;}
.yf_c00334{bottom:788.533333pt;}
.y45_c00334{bottom:795.466667pt;}
.ye_c00334{bottom:802.266667pt;}
.y44_c00334{bottom:808.266667pt;}
.yd_c00334{bottom:818.800000pt;}
.y43_c00334{bottom:820.800000pt;}
.yc_c00334{bottom:834.533333pt;}
.y42_c00334{bottom:838.266667pt;}
.yb_c00334{bottom:850.533333pt;}
.y41_c00334{bottom:854.000000pt;}
.ya_c00334{bottom:866.266667pt;}
.y40_c00334{bottom:870.000000pt;}
.y9_c00334{bottom:885.600000pt;}
.y3f_c00334{bottom:885.733333pt;}
.y8_c00334{bottom:901.333333pt;}
.y3e_c00334{bottom:901.733333pt;}
.y7_c00334{bottom:917.333333pt;}
.y3d_c00334{bottom:921.200000pt;}
.y6_c00334{bottom:933.066667pt;}
.y3c_c00334{bottom:936.933333pt;}
.y5_c00334{bottom:948.800000pt;}
.y3b_c00334{bottom:952.666667pt;}
.y4_c00334{bottom:964.533333pt;}
.y3a_c00334{bottom:968.666667pt;}
.y39_c00334{bottom:984.666667pt;}
.y3_c00334{bottom:996.533333pt;}
.y2_c00334{bottom:1005.466667pt;}
.y1_c00334{bottom:1008.666667pt;}
.h8_c00334{height:26.666667pt;}
.h9_c00334{height:42.666667pt;}
.h7_c00334{height:48.000000pt;}
.h6_c00334{height:53.333333pt;}
.h5_c00334{height:58.666667pt;}
.h4_c00334{height:64.000000pt;}
.h3_c00334{height:69.333333pt;}
.h2_c00334{height:74.666667pt;}
.h1_c00334{height:1124.666667pt;}
.h0_c00334{height:1124.799968pt;}
.w1_c00334{width:854.666667pt;}
.w0_c00334{width:854.720052pt;}
.x0_c00334{left:0.000000pt;}
.xa0_c00334{left:83.200000pt;}
.xa7_c00334{left:86.533333pt;}
.x93_c00334{left:87.733333pt;}
.x45_c00334{left:90.533333pt;}
.x36_c00334{left:91.866667pt;}
.x4_c00334{left:95.333333pt;}
.x4a_c00334{left:99.866667pt;}
.x55_c00334{left:102.133333pt;}
.x7e_c00334{left:103.333333pt;}
.x6d_c00334{left:105.066667pt;}
.x1a_c00334{left:107.066667pt;}
.x13_c00334{left:108.800000pt;}
.x5c_c00334{left:114.800000pt;}
.x4f_c00334{left:116.133333pt;}
.x98_c00334{left:118.400000pt;}
.xaa_c00334{left:119.333333pt;}
.xa6_c00334{left:122.400000pt;}
.xa_c00334{left:125.733333pt;}
.x23_c00334{left:129.600000pt;}
.x5_c00334{left:131.866667pt;}
.x62_c00334{left:134.000000pt;}
.x52_c00334{left:135.333333pt;}
.x77_c00334{left:137.200000pt;}
.x7f_c00334{left:138.266667pt;}
.x1b_c00334{left:140.666667pt;}
.x91_c00334{left:142.266667pt;}
.x83_c00334{left:143.600000pt;}
.x24_c00334{left:144.666667pt;}
.x3b_c00334{left:146.133333pt;}
.x5d_c00334{left:148.400000pt;}
.x14_c00334{left:150.400000pt;}
.x4b_c00334{left:152.666667pt;}
.x71_c00334{left:155.066667pt;}
.x8f_c00334{left:157.200000pt;}
.x30_c00334{left:158.266667pt;}
.x3c_c00334{left:160.533333pt;}
.x6_c00334{left:162.000000pt;}
.x15_c00334{left:164.533333pt;}
.x63_c00334{left:166.266667pt;}
.x69_c00334{left:168.000000pt;}
.x43_c00334{left:169.466667pt;}
.x29_c00334{left:170.666667pt;}
.x67_c00334{left:172.266667pt;}
.x88_c00334{left:174.000000pt;}
.x25_c00334{left:175.733333pt;}
.x3f_c00334{left:177.733333pt;}
.x1c_c00334{left:179.733333pt;}
.x44_c00334{left:180.666667pt;}
.x9b_c00334{left:181.600000pt;}
.x7b_c00334{left:183.600000pt;}
.xb_c00334{left:184.666667pt;}
.x80_c00334{left:185.600000pt;}
.x3d_c00334{left:186.800000pt;}
.x78_c00334{left:188.666667pt;}
.x31_c00334{left:190.266667pt;}
.x37_c00334{left:192.400000pt;}
.x89_c00334{left:193.466667pt;}
.x5e_c00334{left:194.800000pt;}
.x4c_c00334{left:196.133333pt;}
.x64_c00334{left:198.266667pt;}
.x92_c00334{left:201.333333pt;}
.x16_c00334{left:202.266667pt;}
.x5f_c00334{left:203.466667pt;}
.xc_c00334{left:204.800000pt;}
.x79_c00334{left:207.600000pt;}
.x26_c00334{left:209.333333pt;}
.x65_c00334{left:210.800000pt;}
.x6a_c00334{left:211.733333pt;}
.x53_c00334{left:214.666667pt;}
.x68_c00334{left:216.133333pt;}
.x66_c00334{left:217.866667pt;}
.x2a_c00334{left:218.933333pt;}
.x94_c00334{left:219.866667pt;}
.xa3_c00334{left:221.333333pt;}
.x1d_c00334{left:222.266667pt;}
.x3e_c00334{left:223.866667pt;}
.x8a_c00334{left:226.400000pt;}
.xd_c00334{left:228.533333pt;}
.x46_c00334{left:229.733333pt;}
.x56_c00334{left:231.333333pt;}
.x81_c00334{left:232.933333pt;}
.x7_c00334{left:234.666667pt;}
.x1e_c00334{left:236.000000pt;}
.x57_c00334{left:237.733333pt;}
.x38_c00334{left:238.800000pt;}
.x60_c00334{left:241.600000pt;}
.x5a_c00334{left:243.200000pt;}
.x58_c00334{left:244.133333pt;}
.x2b_c00334{left:245.866667pt;}
.x95_c00334{left:247.066667pt;}
.x5b_c00334{left:249.600000pt;}
.x8d_c00334{left:252.000000pt;}
.x2c_c00334{left:252.933333pt;}
.xe_c00334{left:253.866667pt;}
.x8b_c00334{left:254.800000pt;}
.x61_c00334{left:255.733333pt;}
.x40_c00334{left:257.066667pt;}
.xab_c00334{left:258.133333pt;}
.x90_c00334{left:259.600000pt;}
.x6e_c00334{left:260.533333pt;}
.x17_c00334{left:261.733333pt;}
.x47_c00334{left:264.000000pt;}
.x9d_c00334{left:265.733333pt;}
.x1f_c00334{left:266.666667pt;}
.x9f_c00334{left:267.600000pt;}
.x41_c00334{left:270.133333pt;}
.xa8_c00334{left:271.333333pt;}
.x39_c00334{left:273.733333pt;}
.x27_c00334{left:275.200000pt;}
.xf_c00334{left:276.266667pt;}
.x9c_c00334{left:277.600000pt;}
.x54_c00334{left:280.133333pt;}
.x82_c00334{left:281.200000pt;}
.x32_c00334{left:285.066667pt;}
.xac_c00334{left:286.266667pt;}
.x99_c00334{left:288.000000pt;}
.x8_c00334{left:289.066667pt;}
.x18_c00334{left:291.466667pt;}
.xa4_c00334{left:292.400000pt;}
.x2d_c00334{left:294.000000pt;}
.x59_c00334{left:295.733333pt;}
.x20_c00334{left:297.066667pt;}
.x84_c00334{left:299.466667pt;}
.xa1_c00334{left:300.933333pt;}
.x42_c00334{left:302.800000pt;}
.x72_c00334{left:304.266667pt;}
.xa5_c00334{left:305.466667pt;}
.x6b_c00334{left:306.400000pt;}
.x1_c00334{left:308.133333pt;}
.x96_c00334{left:309.866667pt;}
.x73_c00334{left:312.266667pt;}
.x2e_c00334{left:313.200000pt;}
.x75_c00334{left:314.133333pt;}
.x9a_c00334{left:315.866667pt;}
.xa9_c00334{left:316.800000pt;}
.x48_c00334{left:318.000000pt;}
.x33_c00334{left:319.333333pt;}
.x6f_c00334{left:322.000000pt;}
.x10_c00334{left:323.600000pt;}
.x50_c00334{left:324.666667pt;}
.x21_c00334{left:326.133333pt;}
.x85_c00334{left:329.600000pt;}
.x28_c00334{left:331.200000pt;}
.x34_c00334{left:333.066667pt;}
.xa2_c00334{left:334.800000pt;}
.x7a_c00334{left:335.866667pt;}
.x9_c00334{left:336.800000pt;}
.x8e_c00334{left:339.333333pt;}
.x9e_c00334{left:340.266667pt;}
.x7c_c00334{left:342.933333pt;}
.x49_c00334{left:344.933333pt;}
.x70_c00334{left:347.333333pt;}
.x86_c00334{left:348.800000pt;}
.x19_c00334{left:350.933333pt;}
.x4d_c00334{left:352.933333pt;}
.x7d_c00334{left:353.866667pt;}
.x2f_c00334{left:355.066667pt;}
.x11_c00334{left:356.533333pt;}
.x74_c00334{left:357.733333pt;}
.x6c_c00334{left:359.466667pt;}
.x76_c00334{left:361.866667pt;}
.x35_c00334{left:363.200000pt;}
.x97_c00334{left:365.866667pt;}
.xad_c00334{left:368.533333pt;}
.x51_c00334{left:371.466667pt;}
.x22_c00334{left:372.533333pt;}
.x12_c00334{left:375.733333pt;}
.x4e_c00334{left:377.200000pt;}
.x3a_c00334{left:378.400000pt;}
.x8c_c00334{left:383.200000pt;}
.x87_c00334{left:393.333333pt;}
.x147_c00334{left:403.866667pt;}
.x122_c00334{left:406.133333pt;}
.xec_c00334{left:407.333333pt;}
.xd0_c00334{left:408.266667pt;}
.x114_c00334{left:418.266667pt;}
.xf2_c00334{left:419.733333pt;}
.x128_c00334{left:421.333333pt;}
.xe8_c00334{left:423.066667pt;}
.xc7_c00334{left:424.133333pt;}
.xae_c00334{left:425.333333pt;}
.xfe_c00334{left:432.266667pt;}
.x142_c00334{left:436.400000pt;}
.xe4_c00334{left:438.133333pt;}
.x129_c00334{left:439.600000pt;}
.x11c_c00334{left:441.600000pt;}
.xb9_c00334{left:444.400000pt;}
.xd1_c00334{left:445.733333pt;}
.xca_c00334{left:446.800000pt;}
.x111_c00334{left:448.933333pt;}
.x121_c00334{left:450.666667pt;}
.x103_c00334{left:451.733333pt;}
.xaf_c00334{left:452.800000pt;}
.xe5_c00334{left:454.133333pt;}
.x146_c00334{left:457.333333pt;}
.xc0_c00334{left:459.066667pt;}
.x13e_c00334{left:460.000000pt;}
.xe9_c00334{left:461.200000pt;}
.xf7_c00334{left:464.266667pt;}
.x13b_c00334{left:465.733333pt;}
.xdc_c00334{left:466.666667pt;}
.x115_c00334{left:467.600000pt;}
.x104_c00334{left:468.666667pt;}
.x112_c00334{left:470.666667pt;}
.xea_c00334{left:471.733333pt;}
.x108_c00334{left:473.733333pt;}
.x153_c00334{left:474.800000pt;}
.xba_c00334{left:475.733333pt;}
.x11d_c00334{left:477.466667pt;}
.x11f_c00334{left:479.066667pt;}
.x123_c00334{left:480.400000pt;}
.xb0_c00334{left:481.333333pt;}
.x139_c00334{left:482.666667pt;}
.xcb_c00334{left:483.866667pt;}
.xf3_c00334{left:486.000000pt;}
.xc8_c00334{left:486.933333pt;}
.x14b_c00334{left:488.266667pt;}
.x144_c00334{left:489.200000pt;}
.xf8_c00334{left:490.533333pt;}
.xc1_c00334{left:492.400000pt;}
.xd7_c00334{left:493.733333pt;}
.x14c_c00334{left:494.800000pt;}
.xf4_c00334{left:498.800000pt;}
.x12b_c00334{left:499.866667pt;}
.xdd_c00334{left:500.933333pt;}
.xd2_c00334{left:503.600000pt;}
.xb1_c00334{left:509.466667pt;}
.x124_c00334{left:510.533333pt;}
.x156_c00334{left:512.000000pt;}
.xc2_c00334{left:515.066667pt;}
.xcc_c00334{left:516.533333pt;}
.x134_c00334{left:519.066667pt;}
.x109_c00334{left:520.800000pt;}
.xf9_c00334{left:522.533333pt;}
.x105_c00334{left:523.600000pt;}
.xde_c00334{left:525.866667pt;}
.xbb_c00334{left:527.600000pt;}
.x116_c00334{left:528.533333pt;}
.xf5_c00334{left:529.866667pt;}
.xcd_c00334{left:531.200000pt;}
.xb2_c00334{left:532.133333pt;}
.xeb_c00334{left:534.800000pt;}
.x12c_c00334{left:536.000000pt;}
.x148_c00334{left:537.333333pt;}
.xe6_c00334{left:538.533333pt;}
.x10a_c00334{left:540.000000pt;}
.xfa_c00334{left:542.000000pt;}
.x113_c00334{left:543.733333pt;}
.x13f_c00334{left:545.866667pt;}
.xc3_c00334{left:546.800000pt;}
.xd3_c00334{left:548.666667pt;}
.xed_c00334{left:550.933333pt;}
.xb3_c00334{left:552.000000pt;}
.x117_c00334{left:554.133333pt;}
.x135_c00334{left:555.200000pt;}
.x154_c00334{left:557.066667pt;}
.xdf_c00334{left:558.800000pt;}
.xce_c00334{left:559.733333pt;}
.xc9_c00334{left:563.333333pt;}
.x10b_c00334{left:565.200000pt;}
.x11e_c00334{left:567.066667pt;}
.xee_c00334{left:568.533333pt;}
.x106_c00334{left:570.266667pt;}
.x10c_c00334{left:571.600000pt;}
.x125_c00334{left:572.666667pt;}
.xe0_c00334{left:573.866667pt;}
.x10d_c00334{left:578.000000pt;}
.xff_c00334{left:579.733333pt;}
.xd4_c00334{left:580.666667pt;}
.xbc_c00334{left:582.266667pt;}
.x10e_c00334{left:585.066667pt;}
.x100_c00334{left:586.133333pt;}
.x126_c00334{left:587.333333pt;}
.xb4_c00334{left:588.533333pt;}
.x10f_c00334{left:591.200000pt;}
.xf6_c00334{left:592.266667pt;}
.x14d_c00334{left:594.266667pt;}
.xc4_c00334{left:595.733333pt;}
.x157_c00334{left:597.333333pt;}
.x101_c00334{left:598.666667pt;}
.xbd_c00334{left:600.533333pt;}
.x136_c00334{left:602.266667pt;}
.xe1_c00334{left:603.333333pt;}
.xd8_c00334{left:604.400000pt;}
.x102_c00334{left:605.733333pt;}
.x133_c00334{left:606.666667pt;}
.xef_c00334{left:608.533333pt;}
.x107_c00334{left:610.000000pt;}
.x118_c00334{left:612.000000pt;}
.x131_c00334{left:613.600000pt;}
.x14e_c00334{left:615.600000pt;}
.xb5_c00334{left:617.600000pt;}
.x12d_c00334{left:619.600000pt;}
.x151_c00334{left:620.933333pt;}
.xbe_c00334{left:622.000000pt;}
.x110_c00334{left:623.200000pt;}
.x119_c00334{left:624.533333pt;}
.x137_c00334{left:627.466667pt;}
.x140_c00334{left:628.400000pt;}
.x130_c00334{left:632.000000pt;}
.xd9_c00334{left:632.933333pt;}
.xf0_c00334{left:634.800000pt;}
.x14f_c00334{left:636.133333pt;}
.x12a_c00334{left:637.600000pt;}
.x143_c00334{left:638.533333pt;}
.xc5_c00334{left:640.800000pt;}
.xfb_c00334{left:642.533333pt;}
.x11a_c00334{left:643.466667pt;}
.xda_c00334{left:646.400000pt;}
.xb6_c00334{left:648.000000pt;}
.x152_c00334{left:649.733333pt;}
.x150_c00334{left:652.800000pt;}
.x127_c00334{left:655.200000pt;}
.x13c_c00334{left:656.400000pt;}
.xcf_c00334{left:658.000000pt;}
.xe2_c00334{left:659.066667pt;}
.x149_c00334{left:661.066667pt;}
.xf1_c00334{left:662.266667pt;}
.xc6_c00334{left:664.133333pt;}
.xbf_c00334{left:665.466667pt;}
.xe7_c00334{left:667.200000pt;}
.x11b_c00334{left:668.133333pt;}
.xfc_c00334{left:669.066667pt;}
.x12e_c00334{left:671.066667pt;}
.xd5_c00334{left:673.200000pt;}
.x13d_c00334{left:674.933333pt;}
.xb7_c00334{left:675.866667pt;}
.x138_c00334{left:677.600000pt;}
.xe3_c00334{left:678.533333pt;}
.x141_c00334{left:679.600000pt;}
.x2_c00334{left:682.800000pt;}
.x145_c00334{left:683.733333pt;}
.x14a_c00334{left:685.066667pt;}
.x13a_c00334{left:686.266667pt;}
.x132_c00334{left:689.200000pt;}
.x155_c00334{left:690.266667pt;}
.xdb_c00334{left:691.866667pt;}
.x120_c00334{left:693.200000pt;}
.xb8_c00334{left:694.400000pt;}
.xfd_c00334{left:695.600000pt;}
.xd6_c00334{left:698.800000pt;}
.x12f_c00334{left:700.800000pt;}
.x3_c00334{left:702.933333pt;}
}





/* 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_c00335 {
    display:none;
  }
  .loading-indicator_c00335.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00335 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_c00335 { 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_c00335" -> "#page-container .classname_c00335")
 */
.pf_c00335 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00335 { /* 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_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00335 { /* 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_c00335 { /* 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_c00335 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00335 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00335 {overflow:visible;}
  }
}
.c_c00335 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00335 { /* 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_c00335:after { /* webkit #35443 */
  content: '';
}
.t_c00335:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00335 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 */
}
.__c00335 { /* 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_c00335 { /* info for Javascript */
  display:none;
}
.l_c00335 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00335 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00335 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00335: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_c00335 {
    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_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00335.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_c00335 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00335;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.000000;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;}
.md6_c00335{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.md1_c00335{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00335{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.md9_c00335{transform:matrix(0.027250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027250,0.000000,0.000000,0.250000,0,0);}
.md8_c00335{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00335{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m57_c00335{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m59_c00335{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00335{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m66_c00335{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m10_c00335{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m52_c00335{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m123_c00335{transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);}
.m60_c00335{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00335{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m67_c00335{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m85_c00335{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m49_c00335{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00335{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00335{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00335{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m13_c00335{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00335{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00335{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mef_c00335{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m48_c00335{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00335{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mf_c00335{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00335{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00335{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m40_c00335{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md4_c00335{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00335{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m118_c00335{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m63_c00335{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m62_c00335{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m88_c00335{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma_c00335{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m5_c00335{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00335{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me2_c00335{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00335{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m72_c00335{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00335{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00335{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00335{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m76_c00335{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00335{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00335{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00335{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mba_c00335{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00335{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00335{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md5_c00335{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me_c00335{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00335{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m122_c00335{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00335{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00335{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m71_c00335{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00335{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00335{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00335{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00335{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m33_c00335{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m125_c00335{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00335{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m124_c00335{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m8_c00335{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00335{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00335{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m90_c00335{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m18_c00335{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00335{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00335{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00335{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00335{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m11_c00335{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m12_c00335{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md0_c00335{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00335{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00335{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00335{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me0_c00335{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00335{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00335{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00335{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mca_c00335{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00335{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m30_c00335{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mad_c00335{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md3_c00335{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m25_c00335{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m110_c00335{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00335{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m74_c00335{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m84_c00335{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m95_c00335{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m109_c00335{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m114_c00335{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00335{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc_c00335{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m107_c00335{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00335{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00335{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mce_c00335{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00335{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00335{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.me5_c00335{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m22_c00335{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me1_c00335{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00335{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m28_c00335{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m39_c00335{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00335{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m86_c00335{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m51_c00335{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9_c00335{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00335{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m80_c00335{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00335{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.maa_c00335{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mae_c00335{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00335{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00335{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00335{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb_c00335{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00335{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00335{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md_c00335{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00335{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m91_c00335{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.med_c00335{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00335{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00335{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00335{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00335{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00335{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m69_c00335{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00335{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m89_c00335{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m32_c00335{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m31_c00335{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m73_c00335{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m65_c00335{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00335{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m44_c00335{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m102_c00335{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00335{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m101_c00335{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m17_c00335{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me7_c00335{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m55_c00335{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00335{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m29_c00335{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00335{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m117_c00335{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mac_c00335{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mda_c00335{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00335{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00335{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m99_c00335{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m50_c00335{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00335{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md7_c00335{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m54_c00335{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00335{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00335{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00335{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m36_c00335{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00335{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00335{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m98_c00335{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mab_c00335{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00335{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m113_c00335{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m96_c00335{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m14_c00335{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00335{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00335{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00335{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00335{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00335{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m111_c00335{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m43_c00335{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00335{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m100_c00335{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m79_c00335{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00335{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m112_c00335{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00335{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00335{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6_c00335{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m75_c00335{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m26_c00335{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m20_c00335{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m27_c00335{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00335{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m19_c00335{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m106_c00335{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00335{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.maf_c00335{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00335{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00335{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m21_c00335{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00335{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m38_c00335{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00335{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mec_c00335{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m82_c00335{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m64_c00335{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00335{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00335{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00335{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7_c00335{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.md2_c00335{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m77_c00335{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m97_c00335{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00335{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00335{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00335{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00335{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m58_c00335{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m56_c00335{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m70_c00335{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m105_c00335{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00335{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00335{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m68_c00335{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00335{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m120_c00335{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m121_c00335{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00335{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00335{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00335{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00335{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00335{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me8_c00335{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m93_c00335{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m78_c00335{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00335{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m94_c00335{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00335{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00335{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00335{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m92_c00335{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m47_c00335{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m104_c00335{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m0_c00335{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m37_c00335{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m81_c00335{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mde_c00335{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m108_c00335{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00335{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m35_c00335{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m16_c00335{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00335{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m42_c00335{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c00335{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00335{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00335{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m87_c00335{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m53_c00335{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m34_c00335{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m115_c00335{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me9_c00335{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.me4_c00335{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mea_c00335{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m41_c00335{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m116_c00335{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m103_c00335{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m23_c00335{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00335{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m46_c00335{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m15_c00335{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00335{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m3_c00335{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m61_c00335{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00335{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.me3_c00335{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m83_c00335{transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);}
.mff_c00335{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00335{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00335{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00335{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00335{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.me6_c00335{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mee_c00335{transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);}
.meb_c00335{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m119_c00335{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.m45_c00335{transform:matrix(0.651500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651500,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls3_c00335{letter-spacing:0.000000px;}
.ls0_c00335{letter-spacing:39.000000px;}
.ls2_c00335{letter-spacing:45.000000px;}
.ls1_c00335{letter-spacing:55.714286px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{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__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00335{word-spacing:-85.714286px;}
.ws15_c00335{word-spacing:-75.000000px;}
.ws1_c00335{word-spacing:-60.000000px;}
.wse_c00335{word-spacing:-7.500000px;}
.ws17_c00335{word-spacing:0.000000px;}
.ws10_c00335{word-spacing:2.432665px;}
.ws11_c00335{word-spacing:5.294118px;}
.ws12_c00335{word-spacing:7.605096px;}
.ws4_c00335{word-spacing:8.273224px;}
.ws13_c00335{word-spacing:9.733198px;}
.ws3_c00335{word-spacing:15.500000px;}
.ws5_c00335{word-spacing:16.785714px;}
.ws7_c00335{word-spacing:17.714286px;}
.ws16_c00335{word-spacing:22.000000px;}
.wsf_c00335{word-spacing:22.142857px;}
.ws2_c00335{word-spacing:25.153285px;}
.wsa_c00335{word-spacing:25.714286px;}
.ws14_c00335{word-spacing:29.285714px;}
.wsc_c00335{word-spacing:29.583333px;}
.ws8_c00335{word-spacing:32.000000px;}
.wsb_c00335{word-spacing:35.833333px;}
.ws6_c00335{word-spacing:38.262295px;}
.ws9_c00335{word-spacing:40.000000px;}
.ws0_c00335{word-spacing:195.467890px;}
._a_c00335{margin-left:-55.714286px;}
._d_c00335{margin-left:-45.000000px;}
._1_c00335{margin-left:-39.000000px;}
._0_c00335{margin-left:-2.500000px;}
._c_c00335{width:3.571429px;}
._3_c00335{width:39.000000px;}
._4_c00335{width:41.500000px;}
._7_c00335{width:44.571429px;}
._8_c00335{width:47.428571px;}
._2_c00335{width:51.992701px;}
._5_c00335{width:55.714286px;}
._6_c00335{width:59.285714px;}
._b_c00335{width:65.833333px;}
._9_c00335{width:74.166667px;}
.fc0_c00335{color:transparent;}
.fs5_c00335{font-size:24.000000px;}
.fs6_c00335{font-size:42.000000px;}
.fs7_c00335{font-size:48.000000px;}
.fs4_c00335{font-size:54.000000px;}
.fs2_c00335{font-size:60.000000px;}
.fs3_c00335{font-size:66.000000px;}
.fs0_c00335{font-size:72.000000px;}
.fs1_c00335{font-size:84.000000px;}
.fs8_c00335{font-size:132.000000px;}
.y0_c00335{bottom:0.000000px;}
.y6c_c00335{bottom:187.200000px;}
.y38_c00335{bottom:191.250000px;}
.y6b_c00335{bottom:204.750000px;}
.y37_c00335{bottom:210.300000px;}
.y6a_c00335{bottom:222.450000px;}
.y36_c00335{bottom:230.100000px;}
.y35_c00335{bottom:248.100000px;}
.y69_c00335{bottom:248.400000px;}
.y34_c00335{bottom:265.350000px;}
.y68_c00335{bottom:266.400000px;}
.y33_c00335{bottom:283.350000px;}
.y67_c00335{bottom:284.100000px;}
.y32_c00335{bottom:301.350000px;}
.y66_c00335{bottom:302.400000px;}
.y31_c00335{bottom:318.750000px;}
.y65_c00335{bottom:320.100000px;}
.y30_c00335{bottom:336.450000px;}
.y64_c00335{bottom:338.100000px;}
.y3a_c00335{bottom:341.550000px;}
.y2f_c00335{bottom:354.150000px;}
.y63_c00335{bottom:355.650000px;}
.y39_c00335{bottom:364.650000px;}
.y2e_c00335{bottom:371.850000px;}
.y62_c00335{bottom:378.000000px;}
.y2d_c00335{bottom:389.550000px;}
.y61_c00335{bottom:395.700000px;}
.y2c_c00335{bottom:411.750000px;}
.y60_c00335{bottom:426.450000px;}
.y2b_c00335{bottom:429.750000px;}
.y2a_c00335{bottom:447.450000px;}
.y5f_c00335{bottom:451.650000px;}
.y5e_c00335{bottom:462.150000px;}
.y29_c00335{bottom:465.750000px;}
.y5d_c00335{bottom:479.850000px;}
.y28_c00335{bottom:483.450000px;}
.y5c_c00335{bottom:497.550000px;}
.y27_c00335{bottom:500.850000px;}
.y26_c00335{bottom:518.550000px;}
.y5b_c00335{bottom:524.100000px;}
.y25_c00335{bottom:536.250000px;}
.y5a_c00335{bottom:541.800000px;}
.y24_c00335{bottom:554.250000px;}
.y59_c00335{bottom:559.500000px;}
.y23_c00335{bottom:571.950000px;}
.y58_c00335{bottom:577.500000px;}
.y22_c00335{bottom:589.650000px;}
.y57_c00335{bottom:595.500000px;}
.y21_c00335{bottom:607.350000px;}
.y56_c00335{bottom:613.200000px;}
.y20_c00335{bottom:625.050000px;}
.y55_c00335{bottom:630.900000px;}
.y1f_c00335{bottom:643.050000px;}
.y54_c00335{bottom:648.600000px;}
.y1e_c00335{bottom:660.750000px;}
.y53_c00335{bottom:666.600000px;}
.y1d_c00335{bottom:678.450000px;}
.y52_c00335{bottom:684.300000px;}
.y1c_c00335{bottom:696.750000px;}
.y51_c00335{bottom:702.300000px;}
.y1b_c00335{bottom:714.450000px;}
.y50_c00335{bottom:727.200000px;}
.y1a_c00335{bottom:740.400000px;}
.y4f_c00335{bottom:740.850000px;}
.y19_c00335{bottom:750.900000px;}
.y4e_c00335{bottom:755.550000px;}
.y18_c00335{bottom:767.850000px;}
.y4d_c00335{bottom:769.650000px;}
.y4c_c00335{bottom:784.350000px;}
.y17_c00335{bottom:793.200000px;}
.y4b_c00335{bottom:798.450000px;}
.y16_c00335{bottom:806.850000px;}
.y4a_c00335{bottom:812.850000px;}
.y15_c00335{bottom:822.000000px;}
.y49_c00335{bottom:828.300000px;}
.y14_c00335{bottom:835.350000px;}
.y13_c00335{bottom:850.050000px;}
.y48_c00335{bottom:850.950000px;}
.y12_c00335{bottom:863.700000px;}
.y47_c00335{bottom:869.700000px;}
.y11_c00335{bottom:878.100000px;}
.y46_c00335{bottom:887.400000px;}
.y10_c00335{bottom:892.500000px;}
.y45_c00335{bottom:905.100000px;}
.yf_c00335{bottom:921.600000px;}
.y44_c00335{bottom:930.300000px;}
.ye_c00335{bottom:935.700000px;}
.y43_c00335{bottom:948.600000px;}
.yc_c00335{bottom:949.650000px;}
.yd_c00335{bottom:950.100000px;}
.yb_c00335{bottom:965.550000px;}
.y42_c00335{bottom:966.600000px;}
.ya_c00335{bottom:983.850000px;}
.y41_c00335{bottom:984.900000px;}
.y9_c00335{bottom:1001.550000px;}
.y40_c00335{bottom:1002.600000px;}
.y8_c00335{bottom:1019.550000px;}
.y3f_c00335{bottom:1019.850000px;}
.y3e_c00335{bottom:1037.850000px;}
.y7_c00335{bottom:1041.150000px;}
.y3d_c00335{bottom:1055.550000px;}
.y6_c00335{bottom:1059.450000px;}
.y3c_c00335{bottom:1073.550000px;}
.y5_c00335{bottom:1076.700000px;}
.y4_c00335{bottom:1094.400000px;}
.y3_c00335{bottom:1112.400000px;}
.y3b_c00335{bottom:1113.450000px;}
.y1_c00335{bottom:1138.650000px;}
.y2_c00335{bottom:1138.950000px;}
.h7_c00335{height:24.000000px;}
.h8_c00335{height:42.000000px;}
.h9_c00335{height:48.000000px;}
.h6_c00335{height:54.000000px;}
.h4_c00335{height:60.000000px;}
.h5_c00335{height:66.000000px;}
.h2_c00335{height:72.000000px;}
.h3_c00335{height:84.000000px;}
.ha_c00335{height:132.000000px;}
.h1_c00335{height:1269.000000px;}
.h0_c00335{height:1269.359985px;}
.w1_c00335{width:961.500000px;}
.w0_c00335{width:961.560058px;}
.x0_c00335{left:0.000000px;}
.x96_c00335{left:168.900000px;}
.x1_c00335{left:170.700000px;}
.x9f_c00335{left:174.300000px;}
.x15_c00335{left:180.750000px;}
.x47_c00335{left:183.600000px;}
.x37_c00335{left:184.800000px;}
.x95_c00335{left:186.150000px;}
.x3_c00335{left:187.500000px;}
.x16_c00335{left:188.700000px;}
.x53_c00335{left:191.550000px;}
.x8b_c00335{left:196.200000px;}
.x60_c00335{left:197.550000px;}
.x3c_c00335{left:198.750000px;}
.x93_c00335{left:202.350000px;}
.x98_c00335{left:204.450000px;}
.x4b_c00335{left:207.900000px;}
.x26_c00335{left:212.100000px;}
.x7f_c00335{left:213.600000px;}
.x43_c00335{left:216.600000px;}
.x72_c00335{left:217.650000px;}
.x17_c00335{left:219.300000px;}
.x8d_c00335{left:220.350000px;}
.x8f_c00335{left:222.900000px;}
.x2a_c00335{left:224.550000px;}
.x20_c00335{left:226.350000px;}
.x38_c00335{left:227.700000px;}
.x79_c00335{left:229.650000px;}
.x75_c00335{left:231.000000px;}
.x30_c00335{left:232.050000px;}
.xa_c00335{left:234.000000px;}
.xa9_c00335{left:235.200000px;}
.x48_c00335{left:236.850000px;}
.x58_c00335{left:238.200000px;}
.x18_c00335{left:239.850000px;}
.x61_c00335{left:242.250000px;}
.x87_c00335{left:243.450000px;}
.x3d_c00335{left:244.500000px;}
.xb_c00335{left:245.850000px;}
.x80_c00335{left:247.050000px;}
.x44_c00335{left:250.050000px;}
.x59_c00335{left:251.550000px;}
.x65_c00335{left:253.200000px;}
.x54_c00335{left:254.550000px;}
.x68_c00335{left:256.650000px;}
.x9c_c00335{left:258.600000px;}
.x4_c00335{left:259.800000px;}
.x55_c00335{left:261.750000px;}
.xa5_c00335{left:263.100000px;}
.x4f_c00335{left:264.300000px;}
.x90_c00335{left:265.350000px;}
.x81_c00335{left:267.150000px;}
.x56_c00335{left:268.650000px;}
.x73_c00335{left:269.850000px;}
.x1d_c00335{left:270.900000px;}
.x62_c00335{left:273.600000px;}
.xc_c00335{left:276.150000px;}
.x39_c00335{left:277.800000px;}
.x50_c00335{left:281.550000px;}
.x4c_c00335{left:283.950000px;}
.xa0_c00335{left:285.600000px;}
.x63_c00335{left:287.250000px;}
.x45_c00335{left:288.600000px;}
.x83_c00335{left:289.950000px;}
.x4d_c00335{left:291.150000px;}
.x3e_c00335{left:292.800000px;}
.x32_c00335{left:295.950000px;}
.x5_c00335{left:298.350000px;}
.x5a_c00335{left:299.850000px;}
.x6b_c00335{left:301.950000px;}
.x97_c00335{left:303.150000px;}
.x5c_c00335{left:304.950000px;}
.x7b_c00335{left:307.350000px;}
.xd_c00335{left:308.850000px;}
.x21_c00335{left:310.200000px;}
.x4e_c00335{left:312.450000px;}
.x84_c00335{left:314.400000px;}
.xa6_c00335{left:315.750000px;}
.x5d_c00335{left:319.350000px;}
.x1e_c00335{left:322.050000px;}
.x19_c00335{left:324.150000px;}
.x31_c00335{left:325.650000px;}
.x2b_c00335{left:327.450000px;}
.x3f_c00335{left:328.500000px;}
.x88_c00335{left:330.600000px;}
.x51_c00335{left:333.450000px;}
.x64_c00335{left:335.550000px;}
.x76_c00335{left:338.250000px;}
.xe_c00335{left:342.300000px;}
.x33_c00335{left:344.250000px;}
.x1a_c00335{left:346.050000px;}
.x57_c00335{left:348.300000px;}
.x40_c00335{left:350.100000px;}
.xa4_c00335{left:351.150000px;}
.x6c_c00335{left:352.350000px;}
.xa3_c00335{left:353.550000px;}
.x22_c00335{left:354.900000px;}
.x5b_c00335{left:356.700000px;}
.x91_c00335{left:357.900000px;}
.x6_c00335{left:359.550000px;}
.x69_c00335{left:360.750000px;}
.x82_c00335{left:361.800000px;}
.x66_c00335{left:363.000000px;}
.x2c_c00335{left:365.550000px;}
.x1f_c00335{left:366.750000px;}
.xf_c00335{left:369.600000px;}
.x9d_c00335{left:373.050000px;}
.x7_c00335{left:374.250000px;}
.x6d_c00335{left:376.050000px;}
.x5e_c00335{left:377.250000px;}
.x49_c00335{left:381.150000px;}
.x5f_c00335{left:384.150000px;}
.x7c_c00335{left:385.800000px;}
.x6f_c00335{left:387.450000px;}
.xa1_c00335{left:388.950000px;}
.x52_c00335{left:390.300000px;}
.x46_c00335{left:391.350000px;}
.x23_c00335{left:393.000000px;}
.x6e_c00335{left:394.800000px;}
.x10_c00335{left:395.850000px;}
.x1b_c00335{left:400.050000px;}
.x89_c00335{left:401.250000px;}
.x99_c00335{left:402.300000px;}
.x8e_c00335{left:404.400000px;}
.x67_c00335{left:406.350000px;}
.x9e_c00335{left:407.550000px;}
.x24_c00335{left:410.700000px;}
.x2_c00335{left:411.900000px;}
.x11_c00335{left:413.100000px;}
.x41_c00335{left:414.600000px;}
.x7d_c00335{left:417.150000px;}
.x12_c00335{left:421.800000px;}
.x9a_c00335{left:423.300000px;}
.x34_c00335{left:424.950000px;}
.x8_c00335{left:428.250000px;}
.x1c_c00335{left:429.600000px;}
.x2d_c00335{left:431.850000px;}
.x3b_c00335{left:433.800000px;}
.x27_c00335{left:436.800000px;}
.x7e_c00335{left:438.000000px;}
.x13_c00335{left:439.500000px;}
.xa2_c00335{left:441.150000px;}
.x8a_c00335{left:442.350000px;}
.x25_c00335{left:443.850000px;}
.x7a_c00335{left:448.050000px;}
.x28_c00335{left:449.700000px;}
.x70_c00335{left:451.200000px;}
.x6a_c00335{left:452.700000px;}
.x35_c00335{left:455.550000px;}
.x71_c00335{left:457.350000px;}
.x77_c00335{left:459.600000px;}
.x42_c00335{left:461.400000px;}
.x3a_c00335{left:463.950000px;}
.x9b_c00335{left:465.150000px;}
.x86_c00335{left:466.350000px;}
.x94_c00335{left:467.700000px;}
.x9_c00335{left:469.350000px;}
.x78_c00335{left:472.200000px;}
.x2e_c00335{left:473.250000px;}
.x14_c00335{left:474.450000px;}
.x74_c00335{left:477.150000px;}
.x8c_c00335{left:479.250000px;}
.x85_c00335{left:480.600000px;}
.x29_c00335{left:484.200000px;}
.x92_c00335{left:487.200000px;}
.x36_c00335{left:489.000000px;}
.x4a_c00335{left:490.200000px;}
.x2f_c00335{left:492.000000px;}
.xa7_c00335{left:511.950000px;}
.xa8_c00335{left:519.900000px;}
.x154_c00335{left:521.250000px;}
.x13b_c00335{left:522.300000px;}
.xaa_c00335{left:524.550000px;}
.xd9_c00335{left:528.450000px;}
.x104_c00335{left:537.450000px;}
.xf6_c00335{left:539.100000px;}
.xfb_c00335{left:540.450000px;}
.xb0_c00335{left:541.650000px;}
.xd1_c00335{left:542.850000px;}
.x14c_c00335{left:547.350000px;}
.x142_c00335{left:548.550000px;}
.x118_c00335{left:550.800000px;}
.x111_c00335{left:551.850000px;}
.x14f_c00335{left:554.250000px;}
.xfc_c00335{left:555.900000px;}
.x109_c00335{left:556.950000px;}
.x135_c00335{left:559.500000px;}
.xb1_c00335{left:560.850000px;}
.xec_c00335{left:562.650000px;}
.x155_c00335{left:564.750000px;}
.xe5_c00335{left:565.950000px;}
.xab_c00335{left:569.850000px;}
.x10a_c00335{left:572.100000px;}
.xed_c00335{left:573.450000px;}
.xc9_c00335{left:574.500000px;}
.xe4_c00335{left:577.500000px;}
.x105_c00335{left:578.550000px;}
.x128_c00335{left:580.050000px;}
.x149_c00335{left:581.400000px;}
.xca_c00335{left:582.450000px;}
.xfe_c00335{left:585.000000px;}
.xda_c00335{left:587.400000px;}
.xc1_c00335{left:589.500000px;}
.x11e_c00335{left:591.000000px;}
.x112_c00335{left:592.050000px;}
.x14a_c00335{left:594.750000px;}
.xcb_c00335{left:595.800000px;}
.x13c_c00335{left:598.350000px;}
.xfd_c00335{left:600.600000px;}
.xc2_c00335{left:602.100000px;}
.x119_c00335{left:606.150000px;}
.xee_c00335{left:607.350000px;}
.xac_c00335{left:608.700000px;}
.x125_c00335{left:609.750000px;}
.xbc_c00335{left:610.950000px;}
.x10b_c00335{left:615.600000px;}
.x138_c00335{left:617.850000px;}
.x150_c00335{left:622.650000px;}
.x131_c00335{left:624.000000px;}
.xf7_c00335{left:625.050000px;}
.xb2_c00335{left:626.700000px;}
.x106_c00335{left:628.650000px;}
.x144_c00335{left:630.450000px;}
.xe6_c00335{left:631.500000px;}
.xc3_c00335{left:634.200000px;}
.xef_c00335{left:635.400000px;}
.x143_c00335{left:636.450000px;}
.x10c_c00335{left:637.800000px;}
.xe0_c00335{left:639.450000px;}
.xd7_c00335{left:640.800000px;}
.xd2_c00335{left:642.150000px;}
.x10d_c00335{left:644.700000px;}
.xbd_c00335{left:646.650000px;}
.xff_c00335{left:648.750000px;}
.x11a_c00335{left:651.150000px;}
.xb3_c00335{left:652.650000px;}
.x12b_c00335{left:654.300000px;}
.xdb_c00335{left:656.850000px;}
.x11b_c00335{left:658.350000px;}
.x10e_c00335{left:659.400000px;}
.x139_c00335{left:660.750000px;}
.xd3_c00335{left:662.700000px;}
.x136_c00335{left:664.350000px;}
.xcc_c00335{left:666.300000px;}
.xc4_c00335{left:668.100000px;}
.x14d_c00335{left:669.600000px;}
.x129_c00335{left:670.800000px;}
.xf0_c00335{left:672.150000px;}
.x11f_c00335{left:673.800000px;}
.xe1_c00335{left:675.150000px;}
.x107_c00335{left:676.950000px;}
.xe7_c00335{left:678.300000px;}
.xb4_c00335{left:680.400000px;}
.x120_c00335{left:682.950000px;}
.x140_c00335{left:684.300000px;}
.x157_c00335{left:685.800000px;}
.x113_c00335{left:687.900000px;}
.x12e_c00335{left:689.700000px;}
.x12c_c00335{left:690.900000px;}
.xad_c00335{left:693.000000px;}
.xd8_c00335{left:694.800000px;}
.x100_c00335{left:698.850000px;}
.x11c_c00335{left:701.850000px;}
.xc5_c00335{left:703.050000px;}
.xb5_c00335{left:707.400000px;}
.x114_c00335{left:709.800000px;}
.x153_c00335{left:711.450000px;}
.xdc_c00335{left:713.700000px;}
.x126_c00335{left:715.350000px;}
.xe8_c00335{left:716.400000px;}
.xb6_c00335{left:718.500000px;}
.x13d_c00335{left:720.600000px;}
.x108_c00335{left:722.250000px;}
.xf1_c00335{left:723.600000px;}
.x146_c00335{left:725.100000px;}
.x12d_c00335{left:726.600000px;}
.xb7_c00335{left:729.000000px;}
.xc6_c00335{left:730.350000px;}
.xbe_c00335{left:732.000000px;}
.xcd_c00335{left:733.950000px;}
.xe2_c00335{left:735.300000px;}
.xd4_c00335{left:737.250000px;}
.x10f_c00335{left:739.200000px;}
.x145_c00335{left:742.950000px;}
.xce_c00335{left:744.450000px;}
.xdd_c00335{left:746.400000px;}
.x141_c00335{left:748.650000px;}
.x121_c00335{left:752.100000px;}
.x101_c00335{left:753.150000px;}
.xc7_c00335{left:754.500000px;}
.x158_c00335{left:756.750000px;}
.xf2_c00335{left:758.100000px;}
.x122_c00335{left:759.300000px;}
.x115_c00335{left:760.800000px;}
.xb8_c00335{left:763.200000px;}
.xae_c00335{left:764.250000px;}
.xe9_c00335{left:765.300000px;}
.x123_c00335{left:766.500000px;}
.xf3_c00335{left:768.150000px;}
.x127_c00335{left:770.100000px;}
.x12f_c00335{left:771.450000px;}
.xf8_c00335{left:774.150000px;}
.x102_c00335{left:778.650000px;}
.xde_c00335{left:779.850000px;}
.xb9_c00335{left:781.200000px;}
.x147_c00335{left:783.450000px;}
.x124_c00335{left:785.550000px;}
.x116_c00335{left:786.750000px;}
.xbf_c00335{left:787.800000px;}
.xd5_c00335{left:791.550000px;}
.xf4_c00335{left:792.600000px;}
.xcf_c00335{left:794.550000px;}
.x14e_c00335{left:795.750000px;}
.x132_c00335{left:797.700000px;}
.x130_c00335{left:799.950000px;}
.xdf_c00335{left:801.150000px;}
.xd6_c00335{left:802.350000px;}
.x13a_c00335{left:804.450000px;}
.x13e_c00335{left:805.950000px;}
.xe3_c00335{left:809.100000px;}
.xf9_c00335{left:810.150000px;}
.x12a_c00335{left:812.400000px;}
.x134_c00335{left:814.350000px;}
.xea_c00335{left:815.700000px;}
.x110_c00335{left:816.900000px;}
.xaf_c00335{left:818.550000px;}
.xba_c00335{left:819.750000px;}
.x148_c00335{left:821.550000px;}
.xfa_c00335{left:823.050000px;}
.xc0_c00335{left:825.600000px;}
.x133_c00335{left:827.250000px;}
.x13f_c00335{left:828.300000px;}
.xc8_c00335{left:831.150000px;}
.xeb_c00335{left:834.450000px;}
.x156_c00335{left:836.550000px;}
.x11d_c00335{left:838.950000px;}
.xf5_c00335{left:841.200000px;}
.xbb_c00335{left:842.400000px;}
.x103_c00335{left:844.200000px;}
.x117_c00335{left:845.400000px;}
.xd0_c00335{left:848.850000px;}
.x14b_c00335{left:850.050000px;}
.x151_c00335{left:852.000000px;}
.x137_c00335{left:857.250000px;}
.x152_c00335{left:860.700000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls3_c00335{letter-spacing:0.000000pt;}
.ls0_c00335{letter-spacing:34.666667pt;}
.ls2_c00335{letter-spacing:40.000000pt;}
.ls1_c00335{letter-spacing:49.523810pt;}
.wsd_c00335{word-spacing:-76.190476pt;}
.ws15_c00335{word-spacing:-66.666667pt;}
.ws1_c00335{word-spacing:-53.333333pt;}
.wse_c00335{word-spacing:-6.666667pt;}
.ws17_c00335{word-spacing:0.000000pt;}
.ws10_c00335{word-spacing:2.162369pt;}
.ws11_c00335{word-spacing:4.705882pt;}
.ws12_c00335{word-spacing:6.760085pt;}
.ws4_c00335{word-spacing:7.353977pt;}
.ws13_c00335{word-spacing:8.651731pt;}
.ws3_c00335{word-spacing:13.777778pt;}
.ws5_c00335{word-spacing:14.920635pt;}
.ws7_c00335{word-spacing:15.746032pt;}
.ws16_c00335{word-spacing:19.555556pt;}
.wsf_c00335{word-spacing:19.682540pt;}
.ws2_c00335{word-spacing:22.358475pt;}
.wsa_c00335{word-spacing:22.857143pt;}
.ws14_c00335{word-spacing:26.031746pt;}
.wsc_c00335{word-spacing:26.296296pt;}
.ws8_c00335{word-spacing:28.444444pt;}
.wsb_c00335{word-spacing:31.851852pt;}
.ws6_c00335{word-spacing:34.010929pt;}
.ws9_c00335{word-spacing:35.555556pt;}
.ws0_c00335{word-spacing:173.749235pt;}
._a_c00335{margin-left:-49.523810pt;}
._d_c00335{margin-left:-40.000000pt;}
._1_c00335{margin-left:-34.666667pt;}
._0_c00335{margin-left:-2.222222pt;}
._c_c00335{width:3.174603pt;}
._3_c00335{width:34.666667pt;}
._4_c00335{width:36.888889pt;}
._7_c00335{width:39.619048pt;}
._8_c00335{width:42.158730pt;}
._2_c00335{width:46.215734pt;}
._5_c00335{width:49.523810pt;}
._6_c00335{width:52.698413pt;}
._b_c00335{width:58.518519pt;}
._9_c00335{width:65.925926pt;}
.fs5_c00335{font-size:21.333333pt;}
.fs6_c00335{font-size:37.333333pt;}
.fs7_c00335{font-size:42.666667pt;}
.fs4_c00335{font-size:48.000000pt;}
.fs2_c00335{font-size:53.333333pt;}
.fs3_c00335{font-size:58.666667pt;}
.fs0_c00335{font-size:64.000000pt;}
.fs1_c00335{font-size:74.666667pt;}
.fs8_c00335{font-size:117.333333pt;}
.y0_c00335{bottom:0.000000pt;}
.y6c_c00335{bottom:166.400000pt;}
.y38_c00335{bottom:170.000000pt;}
.y6b_c00335{bottom:182.000000pt;}
.y37_c00335{bottom:186.933333pt;}
.y6a_c00335{bottom:197.733333pt;}
.y36_c00335{bottom:204.533333pt;}
.y35_c00335{bottom:220.533333pt;}
.y69_c00335{bottom:220.800000pt;}
.y34_c00335{bottom:235.866667pt;}
.y68_c00335{bottom:236.800000pt;}
.y33_c00335{bottom:251.866667pt;}
.y67_c00335{bottom:252.533333pt;}
.y32_c00335{bottom:267.866667pt;}
.y66_c00335{bottom:268.800000pt;}
.y31_c00335{bottom:283.333333pt;}
.y65_c00335{bottom:284.533333pt;}
.y30_c00335{bottom:299.066667pt;}
.y64_c00335{bottom:300.533333pt;}
.y3a_c00335{bottom:303.600000pt;}
.y2f_c00335{bottom:314.800000pt;}
.y63_c00335{bottom:316.133333pt;}
.y39_c00335{bottom:324.133333pt;}
.y2e_c00335{bottom:330.533333pt;}
.y62_c00335{bottom:336.000000pt;}
.y2d_c00335{bottom:346.266667pt;}
.y61_c00335{bottom:351.733333pt;}
.y2c_c00335{bottom:366.000000pt;}
.y60_c00335{bottom:379.066667pt;}
.y2b_c00335{bottom:382.000000pt;}
.y2a_c00335{bottom:397.733333pt;}
.y5f_c00335{bottom:401.466667pt;}
.y5e_c00335{bottom:410.800000pt;}
.y29_c00335{bottom:414.000000pt;}
.y5d_c00335{bottom:426.533333pt;}
.y28_c00335{bottom:429.733333pt;}
.y5c_c00335{bottom:442.266667pt;}
.y27_c00335{bottom:445.200000pt;}
.y26_c00335{bottom:460.933333pt;}
.y5b_c00335{bottom:465.866667pt;}
.y25_c00335{bottom:476.666667pt;}
.y5a_c00335{bottom:481.600000pt;}
.y24_c00335{bottom:492.666667pt;}
.y59_c00335{bottom:497.333333pt;}
.y23_c00335{bottom:508.400000pt;}
.y58_c00335{bottom:513.333333pt;}
.y22_c00335{bottom:524.133333pt;}
.y57_c00335{bottom:529.333333pt;}
.y21_c00335{bottom:539.866667pt;}
.y56_c00335{bottom:545.066667pt;}
.y20_c00335{bottom:555.600000pt;}
.y55_c00335{bottom:560.800000pt;}
.y1f_c00335{bottom:571.600000pt;}
.y54_c00335{bottom:576.533333pt;}
.y1e_c00335{bottom:587.333333pt;}
.y53_c00335{bottom:592.533333pt;}
.y1d_c00335{bottom:603.066667pt;}
.y52_c00335{bottom:608.266667pt;}
.y1c_c00335{bottom:619.333333pt;}
.y51_c00335{bottom:624.266667pt;}
.y1b_c00335{bottom:635.066667pt;}
.y50_c00335{bottom:646.400000pt;}
.y1a_c00335{bottom:658.133333pt;}
.y4f_c00335{bottom:658.533333pt;}
.y19_c00335{bottom:667.466667pt;}
.y4e_c00335{bottom:671.600000pt;}
.y18_c00335{bottom:682.533333pt;}
.y4d_c00335{bottom:684.133333pt;}
.y4c_c00335{bottom:697.200000pt;}
.y17_c00335{bottom:705.066667pt;}
.y4b_c00335{bottom:709.733333pt;}
.y16_c00335{bottom:717.200000pt;}
.y4a_c00335{bottom:722.533333pt;}
.y15_c00335{bottom:730.666667pt;}
.y49_c00335{bottom:736.266667pt;}
.y14_c00335{bottom:742.533333pt;}
.y13_c00335{bottom:755.600000pt;}
.y48_c00335{bottom:756.400000pt;}
.y12_c00335{bottom:767.733333pt;}
.y47_c00335{bottom:773.066667pt;}
.y11_c00335{bottom:780.533333pt;}
.y46_c00335{bottom:788.800000pt;}
.y10_c00335{bottom:793.333333pt;}
.y45_c00335{bottom:804.533333pt;}
.yf_c00335{bottom:819.200000pt;}
.y44_c00335{bottom:826.933333pt;}
.ye_c00335{bottom:831.733333pt;}
.y43_c00335{bottom:843.200000pt;}
.yc_c00335{bottom:844.133333pt;}
.yd_c00335{bottom:844.533333pt;}
.yb_c00335{bottom:858.266667pt;}
.y42_c00335{bottom:859.200000pt;}
.ya_c00335{bottom:874.533333pt;}
.y41_c00335{bottom:875.466667pt;}
.y9_c00335{bottom:890.266667pt;}
.y40_c00335{bottom:891.200000pt;}
.y8_c00335{bottom:906.266667pt;}
.y3f_c00335{bottom:906.533333pt;}
.y3e_c00335{bottom:922.533333pt;}
.y7_c00335{bottom:925.466667pt;}
.y3d_c00335{bottom:938.266667pt;}
.y6_c00335{bottom:941.733333pt;}
.y3c_c00335{bottom:954.266667pt;}
.y5_c00335{bottom:957.066667pt;}
.y4_c00335{bottom:972.800000pt;}
.y3_c00335{bottom:988.800000pt;}
.y3b_c00335{bottom:989.733333pt;}
.y1_c00335{bottom:1012.133333pt;}
.y2_c00335{bottom:1012.400000pt;}
.h7_c00335{height:21.333333pt;}
.h8_c00335{height:37.333333pt;}
.h9_c00335{height:42.666667pt;}
.h6_c00335{height:48.000000pt;}
.h4_c00335{height:53.333333pt;}
.h5_c00335{height:58.666667pt;}
.h2_c00335{height:64.000000pt;}
.h3_c00335{height:74.666667pt;}
.ha_c00335{height:117.333333pt;}
.h1_c00335{height:1128.000000pt;}
.h0_c00335{height:1128.319987pt;}
.w1_c00335{width:854.666667pt;}
.w0_c00335{width:854.720052pt;}
.x0_c00335{left:0.000000pt;}
.x96_c00335{left:150.133333pt;}
.x1_c00335{left:151.733333pt;}
.x9f_c00335{left:154.933333pt;}
.x15_c00335{left:160.666667pt;}
.x47_c00335{left:163.200000pt;}
.x37_c00335{left:164.266667pt;}
.x95_c00335{left:165.466667pt;}
.x3_c00335{left:166.666667pt;}
.x16_c00335{left:167.733333pt;}
.x53_c00335{left:170.266667pt;}
.x8b_c00335{left:174.400000pt;}
.x60_c00335{left:175.600000pt;}
.x3c_c00335{left:176.666667pt;}
.x93_c00335{left:179.866667pt;}
.x98_c00335{left:181.733333pt;}
.x4b_c00335{left:184.800000pt;}
.x26_c00335{left:188.533333pt;}
.x7f_c00335{left:189.866667pt;}
.x43_c00335{left:192.533333pt;}
.x72_c00335{left:193.466667pt;}
.x17_c00335{left:194.933333pt;}
.x8d_c00335{left:195.866667pt;}
.x8f_c00335{left:198.133333pt;}
.x2a_c00335{left:199.600000pt;}
.x20_c00335{left:201.200000pt;}
.x38_c00335{left:202.400000pt;}
.x79_c00335{left:204.133333pt;}
.x75_c00335{left:205.333333pt;}
.x30_c00335{left:206.266667pt;}
.xa_c00335{left:208.000000pt;}
.xa9_c00335{left:209.066667pt;}
.x48_c00335{left:210.533333pt;}
.x58_c00335{left:211.733333pt;}
.x18_c00335{left:213.200000pt;}
.x61_c00335{left:215.333333pt;}
.x87_c00335{left:216.400000pt;}
.x3d_c00335{left:217.333333pt;}
.xb_c00335{left:218.533333pt;}
.x80_c00335{left:219.600000pt;}
.x44_c00335{left:222.266667pt;}
.x59_c00335{left:223.600000pt;}
.x65_c00335{left:225.066667pt;}
.x54_c00335{left:226.266667pt;}
.x68_c00335{left:228.133333pt;}
.x9c_c00335{left:229.866667pt;}
.x4_c00335{left:230.933333pt;}
.x55_c00335{left:232.666667pt;}
.xa5_c00335{left:233.866667pt;}
.x4f_c00335{left:234.933333pt;}
.x90_c00335{left:235.866667pt;}
.x81_c00335{left:237.466667pt;}
.x56_c00335{left:238.800000pt;}
.x73_c00335{left:239.866667pt;}
.x1d_c00335{left:240.800000pt;}
.x62_c00335{left:243.200000pt;}
.xc_c00335{left:245.466667pt;}
.x39_c00335{left:246.933333pt;}
.x50_c00335{left:250.266667pt;}
.x4c_c00335{left:252.400000pt;}
.xa0_c00335{left:253.866667pt;}
.x63_c00335{left:255.333333pt;}
.x45_c00335{left:256.533333pt;}
.x83_c00335{left:257.733333pt;}
.x4d_c00335{left:258.800000pt;}
.x3e_c00335{left:260.266667pt;}
.x32_c00335{left:263.066667pt;}
.x5_c00335{left:265.200000pt;}
.x5a_c00335{left:266.533333pt;}
.x6b_c00335{left:268.400000pt;}
.x97_c00335{left:269.466667pt;}
.x5c_c00335{left:271.066667pt;}
.x7b_c00335{left:273.200000pt;}
.xd_c00335{left:274.533333pt;}
.x21_c00335{left:275.733333pt;}
.x4e_c00335{left:277.733333pt;}
.x84_c00335{left:279.466667pt;}
.xa6_c00335{left:280.666667pt;}
.x5d_c00335{left:283.866667pt;}
.x1e_c00335{left:286.266667pt;}
.x19_c00335{left:288.133333pt;}
.x31_c00335{left:289.466667pt;}
.x2b_c00335{left:291.066667pt;}
.x3f_c00335{left:292.000000pt;}
.x88_c00335{left:293.866667pt;}
.x51_c00335{left:296.400000pt;}
.x64_c00335{left:298.266667pt;}
.x76_c00335{left:300.666667pt;}
.xe_c00335{left:304.266667pt;}
.x33_c00335{left:306.000000pt;}
.x1a_c00335{left:307.600000pt;}
.x57_c00335{left:309.600000pt;}
.x40_c00335{left:311.200000pt;}
.xa4_c00335{left:312.133333pt;}
.x6c_c00335{left:313.200000pt;}
.xa3_c00335{left:314.266667pt;}
.x22_c00335{left:315.466667pt;}
.x5b_c00335{left:317.066667pt;}
.x91_c00335{left:318.133333pt;}
.x6_c00335{left:319.600000pt;}
.x69_c00335{left:320.666667pt;}
.x82_c00335{left:321.600000pt;}
.x66_c00335{left:322.666667pt;}
.x2c_c00335{left:324.933333pt;}
.x1f_c00335{left:326.000000pt;}
.xf_c00335{left:328.533333pt;}
.x9d_c00335{left:331.600000pt;}
.x7_c00335{left:332.666667pt;}
.x6d_c00335{left:334.266667pt;}
.x5e_c00335{left:335.333333pt;}
.x49_c00335{left:338.800000pt;}
.x5f_c00335{left:341.466667pt;}
.x7c_c00335{left:342.933333pt;}
.x6f_c00335{left:344.400000pt;}
.xa1_c00335{left:345.733333pt;}
.x52_c00335{left:346.933333pt;}
.x46_c00335{left:347.866667pt;}
.x23_c00335{left:349.333333pt;}
.x6e_c00335{left:350.933333pt;}
.x10_c00335{left:351.866667pt;}
.x1b_c00335{left:355.600000pt;}
.x89_c00335{left:356.666667pt;}
.x99_c00335{left:357.600000pt;}
.x8e_c00335{left:359.466667pt;}
.x67_c00335{left:361.200000pt;}
.x9e_c00335{left:362.266667pt;}
.x24_c00335{left:365.066667pt;}
.x2_c00335{left:366.133333pt;}
.x11_c00335{left:367.200000pt;}
.x41_c00335{left:368.533333pt;}
.x7d_c00335{left:370.800000pt;}
.x12_c00335{left:374.933333pt;}
.x9a_c00335{left:376.266667pt;}
.x34_c00335{left:377.733333pt;}
.x8_c00335{left:380.666667pt;}
.x1c_c00335{left:381.866667pt;}
.x2d_c00335{left:383.866667pt;}
.x3b_c00335{left:385.600000pt;}
.x27_c00335{left:388.266667pt;}
.x7e_c00335{left:389.333333pt;}
.x13_c00335{left:390.666667pt;}
.xa2_c00335{left:392.133333pt;}
.x8a_c00335{left:393.200000pt;}
.x25_c00335{left:394.533333pt;}
.x7a_c00335{left:398.266667pt;}
.x28_c00335{left:399.733333pt;}
.x70_c00335{left:401.066667pt;}
.x6a_c00335{left:402.400000pt;}
.x35_c00335{left:404.933333pt;}
.x71_c00335{left:406.533333pt;}
.x77_c00335{left:408.533333pt;}
.x42_c00335{left:410.133333pt;}
.x3a_c00335{left:412.400000pt;}
.x9b_c00335{left:413.466667pt;}
.x86_c00335{left:414.533333pt;}
.x94_c00335{left:415.733333pt;}
.x9_c00335{left:417.200000pt;}
.x78_c00335{left:419.733333pt;}
.x2e_c00335{left:420.666667pt;}
.x14_c00335{left:421.733333pt;}
.x74_c00335{left:424.133333pt;}
.x8c_c00335{left:426.000000pt;}
.x85_c00335{left:427.200000pt;}
.x29_c00335{left:430.400000pt;}
.x92_c00335{left:433.066667pt;}
.x36_c00335{left:434.666667pt;}
.x4a_c00335{left:435.733333pt;}
.x2f_c00335{left:437.333333pt;}
.xa7_c00335{left:455.066667pt;}
.xa8_c00335{left:462.133333pt;}
.x154_c00335{left:463.333333pt;}
.x13b_c00335{left:464.266667pt;}
.xaa_c00335{left:466.266667pt;}
.xd9_c00335{left:469.733333pt;}
.x104_c00335{left:477.733333pt;}
.xf6_c00335{left:479.200000pt;}
.xfb_c00335{left:480.400000pt;}
.xb0_c00335{left:481.466667pt;}
.xd1_c00335{left:482.533333pt;}
.x14c_c00335{left:486.533333pt;}
.x142_c00335{left:487.600000pt;}
.x118_c00335{left:489.600000pt;}
.x111_c00335{left:490.533333pt;}
.x14f_c00335{left:492.666667pt;}
.xfc_c00335{left:494.133333pt;}
.x109_c00335{left:495.066667pt;}
.x135_c00335{left:497.333333pt;}
.xb1_c00335{left:498.533333pt;}
.xec_c00335{left:500.133333pt;}
.x155_c00335{left:502.000000pt;}
.xe5_c00335{left:503.066667pt;}
.xab_c00335{left:506.533333pt;}
.x10a_c00335{left:508.533333pt;}
.xed_c00335{left:509.733333pt;}
.xc9_c00335{left:510.666667pt;}
.xe4_c00335{left:513.333333pt;}
.x105_c00335{left:514.266667pt;}
.x128_c00335{left:515.600000pt;}
.x149_c00335{left:516.800000pt;}
.xca_c00335{left:517.733333pt;}
.xfe_c00335{left:520.000000pt;}
.xda_c00335{left:522.133333pt;}
.xc1_c00335{left:524.000000pt;}
.x11e_c00335{left:525.333333pt;}
.x112_c00335{left:526.266667pt;}
.x14a_c00335{left:528.666667pt;}
.xcb_c00335{left:529.600000pt;}
.x13c_c00335{left:531.866667pt;}
.xfd_c00335{left:533.866667pt;}
.xc2_c00335{left:535.200000pt;}
.x119_c00335{left:538.800000pt;}
.xee_c00335{left:539.866667pt;}
.xac_c00335{left:541.066667pt;}
.x125_c00335{left:542.000000pt;}
.xbc_c00335{left:543.066667pt;}
.x10b_c00335{left:547.200000pt;}
.x138_c00335{left:549.200000pt;}
.x150_c00335{left:553.466667pt;}
.x131_c00335{left:554.666667pt;}
.xf7_c00335{left:555.600000pt;}
.xb2_c00335{left:557.066667pt;}
.x106_c00335{left:558.800000pt;}
.x144_c00335{left:560.400000pt;}
.xe6_c00335{left:561.333333pt;}
.xc3_c00335{left:563.733333pt;}
.xef_c00335{left:564.800000pt;}
.x143_c00335{left:565.733333pt;}
.x10c_c00335{left:566.933333pt;}
.xe0_c00335{left:568.400000pt;}
.xd7_c00335{left:569.600000pt;}
.xd2_c00335{left:570.800000pt;}
.x10d_c00335{left:573.066667pt;}
.xbd_c00335{left:574.800000pt;}
.xff_c00335{left:576.666667pt;}
.x11a_c00335{left:578.800000pt;}
.xb3_c00335{left:580.133333pt;}
.x12b_c00335{left:581.600000pt;}
.xdb_c00335{left:583.866667pt;}
.x11b_c00335{left:585.200000pt;}
.x10e_c00335{left:586.133333pt;}
.x139_c00335{left:587.333333pt;}
.xd3_c00335{left:589.066667pt;}
.x136_c00335{left:590.533333pt;}
.xcc_c00335{left:592.266667pt;}
.xc4_c00335{left:593.866667pt;}
.x14d_c00335{left:595.200000pt;}
.x129_c00335{left:596.266667pt;}
.xf0_c00335{left:597.466667pt;}
.x11f_c00335{left:598.933333pt;}
.xe1_c00335{left:600.133333pt;}
.x107_c00335{left:601.733333pt;}
.xe7_c00335{left:602.933333pt;}
.xb4_c00335{left:604.800000pt;}
.x120_c00335{left:607.066667pt;}
.x140_c00335{left:608.266667pt;}
.x157_c00335{left:609.600000pt;}
.x113_c00335{left:611.466667pt;}
.x12e_c00335{left:613.066667pt;}
.x12c_c00335{left:614.133333pt;}
.xad_c00335{left:616.000000pt;}
.xd8_c00335{left:617.600000pt;}
.x100_c00335{left:621.200000pt;}
.x11c_c00335{left:623.866667pt;}
.xc5_c00335{left:624.933333pt;}
.xb5_c00335{left:628.800000pt;}
.x114_c00335{left:630.933333pt;}
.x153_c00335{left:632.400000pt;}
.xdc_c00335{left:634.400000pt;}
.x126_c00335{left:635.866667pt;}
.xe8_c00335{left:636.800000pt;}
.xb6_c00335{left:638.666667pt;}
.x13d_c00335{left:640.533333pt;}
.x108_c00335{left:642.000000pt;}
.xf1_c00335{left:643.200000pt;}
.x146_c00335{left:644.533333pt;}
.x12d_c00335{left:645.866667pt;}
.xb7_c00335{left:648.000000pt;}
.xc6_c00335{left:649.200000pt;}
.xbe_c00335{left:650.666667pt;}
.xcd_c00335{left:652.400000pt;}
.xe2_c00335{left:653.600000pt;}
.xd4_c00335{left:655.333333pt;}
.x10f_c00335{left:657.066667pt;}
.x145_c00335{left:660.400000pt;}
.xce_c00335{left:661.733333pt;}
.xdd_c00335{left:663.466667pt;}
.x141_c00335{left:665.466667pt;}
.x121_c00335{left:668.533333pt;}
.x101_c00335{left:669.466667pt;}
.xc7_c00335{left:670.666667pt;}
.x158_c00335{left:672.666667pt;}
.xf2_c00335{left:673.866667pt;}
.x122_c00335{left:674.933333pt;}
.x115_c00335{left:676.266667pt;}
.xb8_c00335{left:678.400000pt;}
.xae_c00335{left:679.333333pt;}
.xe9_c00335{left:680.266667pt;}
.x123_c00335{left:681.333333pt;}
.xf3_c00335{left:682.800000pt;}
.x127_c00335{left:684.533333pt;}
.x12f_c00335{left:685.733333pt;}
.xf8_c00335{left:688.133333pt;}
.x102_c00335{left:692.133333pt;}
.xde_c00335{left:693.200000pt;}
.xb9_c00335{left:694.400000pt;}
.x147_c00335{left:696.400000pt;}
.x124_c00335{left:698.266667pt;}
.x116_c00335{left:699.333333pt;}
.xbf_c00335{left:700.266667pt;}
.xd5_c00335{left:703.600000pt;}
.xf4_c00335{left:704.533333pt;}
.xcf_c00335{left:706.266667pt;}
.x14e_c00335{left:707.333333pt;}
.x132_c00335{left:709.066667pt;}
.x130_c00335{left:711.066667pt;}
.xdf_c00335{left:712.133333pt;}
.xd6_c00335{left:713.200000pt;}
.x13a_c00335{left:715.066667pt;}
.x13e_c00335{left:716.400000pt;}
.xe3_c00335{left:719.200000pt;}
.xf9_c00335{left:720.133333pt;}
.x12a_c00335{left:722.133333pt;}
.x134_c00335{left:723.866667pt;}
.xea_c00335{left:725.066667pt;}
.x110_c00335{left:726.133333pt;}
.xaf_c00335{left:727.600000pt;}
.xba_c00335{left:728.666667pt;}
.x148_c00335{left:730.266667pt;}
.xfa_c00335{left:731.600000pt;}
.xc0_c00335{left:733.866667pt;}
.x133_c00335{left:735.333333pt;}
.x13f_c00335{left:736.266667pt;}
.xc8_c00335{left:738.800000pt;}
.xeb_c00335{left:741.733333pt;}
.x156_c00335{left:743.600000pt;}
.x11d_c00335{left:745.733333pt;}
.xf5_c00335{left:747.733333pt;}
.xbb_c00335{left:748.800000pt;}
.x103_c00335{left:750.400000pt;}
.x117_c00335{left:751.466667pt;}
.xd0_c00335{left:754.533333pt;}
.x14b_c00335{left:755.600000pt;}
.x151_c00335{left:757.333333pt;}
.x137_c00335{left:762.000000pt;}
.x152_c00335{left:765.066667pt;}
}





/* 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_c00336 {
    display:none;
  }
  .loading-indicator_c00336.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00336 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_c00336 { 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_c00336" -> "#page-container .classname_c00336")
 */
.pf_c00336 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00336 { /* 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_c00336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00336 { /* 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_c00336 { /* 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_c00336 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00336 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00336 {overflow:visible;}
  }
}
.c_c00336 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00336 { /* 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_c00336:after { /* webkit #35443 */
  content: '';
}
.t_c00336:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00336 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 */
}
.__c00336 { /* 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_c00336 { /* info for Javascript */
  display:none;
}
.l_c00336 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00336 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00336 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00336: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_c00336 {
    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_c00336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00336.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_c00336 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00336;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.000000;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;}
.mab_c00336{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00336{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m86_c00336{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00336{transform:matrix(0.052000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00336{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00336{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m101_c00336{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m71_c00336{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00336{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m47_c00336{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me8_c00336{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m44_c00336{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m72_c00336{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.me_c00336{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00336{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00336{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m96_c00336{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00336{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.md_c00336{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m43_c00336{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mea_c00336{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00336{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m75_c00336{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00336{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00336{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00336{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00336{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00336{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.med_c00336{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00336{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m73_c00336{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00336{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m104_c00336{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m42_c00336{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m111_c00336{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m29_c00336{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.md1_c00336{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m9_c00336{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00336{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m38_c00336{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m70_c00336{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00336{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00336{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00336{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00336{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.me1_c00336{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m24_c00336{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m63_c00336{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m53_c00336{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00336{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mde_c00336{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00336{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00336{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00336{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m13_c00336{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m74_c00336{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.md2_c00336{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m40_c00336{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00336{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m51_c00336{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m110_c00336{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m81_c00336{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00336{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00336{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00336{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.mf_c00336{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00336{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m65_c00336{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00336{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00336{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00336{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00336{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m37_c00336{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00336{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00336{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md4_c00336{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m39_c00336{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00336{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m98_c00336{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00336{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m113_c00336{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m4_c00336{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m35_c00336{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mad_c00336{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00336{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.ma_c00336{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mef_c00336{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m26_c00336{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m114_c00336{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m60_c00336{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00336{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m89_c00336{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m50_c00336{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00336{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00336{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me9_c00336{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00336{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m16_c00336{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00336{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00336{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00336{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00336{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m41_c00336{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m34_c00336{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m27_c00336{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00336{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m84_c00336{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m64_c00336{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00336{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m12_c00336{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m62_c00336{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m77_c00336{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m20_c00336{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m83_c00336{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m82_c00336{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m55_c00336{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00336{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00336{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00336{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m19_c00336{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00336{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00336{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00336{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m61_c00336{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md6_c00336{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m80_c00336{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00336{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m56_c00336{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00336{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m25_c00336{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m17_c00336{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00336{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00336{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mca_c00336{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc_c00336{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m54_c00336{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00336{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.meb_c00336{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m18_c00336{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m67_c00336{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m76_c00336{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00336{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00336{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m36_c00336{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00336{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m14_c00336{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m33_c00336{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mba_c00336{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mce_c00336{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00336{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00336{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mae_c00336{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m58_c00336{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00336{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00336{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m94_c00336{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00336{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me4_c00336{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m28_c00336{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m52_c00336{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00336{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m6_c00336{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00336{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00336{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00336{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00336{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00336{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.maf_c00336{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00336{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m100_c00336{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md7_c00336{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m23_c00336{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me0_c00336{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m92_c00336{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00336{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m91_c00336{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00336{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mda_c00336{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mec_c00336{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me7_c00336{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.md0_c00336{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00336{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00336{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m31_c00336{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md8_c00336{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m30_c00336{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00336{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m21_c00336{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md9_c00336{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m46_c00336{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m32_c00336{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.maa_c00336{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00336{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00336{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me2_c00336{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8_c00336{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00336{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00336{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00336{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m95_c00336{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00336{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m109_c00336{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m57_c00336{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00336{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md5_c00336{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m68_c00336{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5_c00336{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00336{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m93_c00336{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3_c00336{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m11_c00336{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00336{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00336{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00336{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00336{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m90_c00336{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00336{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00336{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m15_c00336{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m66_c00336{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m45_c00336{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m49_c00336{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me5_c00336{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m108_c00336{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00336{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m48_c00336{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00336{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00336{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00336{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00336{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m99_c00336{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m78_c00336{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00336{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mee_c00336{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00336{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00336{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md3_c00336{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00336{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00336{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);}
.me3_c00336{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00336{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m59_c00336{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00336{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00336{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m117_c00336{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m22_c00336{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00336{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m119_c00336{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00336{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mac_c00336{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00336{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m79_c00336{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m10_c00336{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m115_c00336{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m69_c00336{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00336{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00336{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m112_c00336{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mff_c00336{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00336{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me6_c00336{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00336{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m107_c00336{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m118_c00336{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00336{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m103_c00336{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m88_c00336{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00336{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m87_c00336{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m106_c00336{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m102_c00336{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m85_c00336{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00336{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m105_c00336{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00336{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00336{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m116_c00336{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00336{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m0_c00336{transform:matrix(0.470750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470750,0.000000,0.000000,0.250000,0,0);}
.m97_c00336{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls0_c00336{letter-spacing:0.000000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{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__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00336{word-spacing:-11.849162px;}
.ws4_c00336{word-spacing:-8.288660px;}
.ws5_c00336{word-spacing:-7.756098px;}
.ws3_c00336{word-spacing:-3.750000px;}
.ws8_c00336{word-spacing:-0.798817px;}
.ws9_c00336{word-spacing:0.000000px;}
.ws0_c00336{word-spacing:3.127490px;}
.ws2_c00336{word-spacing:5.368421px;}
.ws7_c00336{word-spacing:6.458515px;}
.ws1_c00336{word-spacing:22.916905px;}
.fc0_c00336{color:transparent;}
.fs5_c00336{font-size:48.000000px;}
.fs4_c00336{font-size:54.000000px;}
.fs2_c00336{font-size:60.000000px;}
.fs1_c00336{font-size:66.000000px;}
.fs3_c00336{font-size:72.000000px;}
.fs0_c00336{font-size:78.000000px;}
.y0_c00336{bottom:0.000000px;}
.y67_c00336{bottom:190.800000px;}
.y35_c00336{bottom:193.950000px;}
.y66_c00336{bottom:205.200000px;}
.y34_c00336{bottom:209.400000px;}
.y65_c00336{bottom:218.850000px;}
.y33_c00336{bottom:227.400000px;}
.y32_c00336{bottom:245.400000px;}
.y31_c00336{bottom:263.100000px;}
.y64_c00336{bottom:268.500000px;}
.y30_c00336{bottom:281.100000px;}
.y63_c00336{bottom:286.200000px;}
.y2f_c00336{bottom:298.800000px;}
.y62_c00336{bottom:304.500000px;}
.y2e_c00336{bottom:316.800000px;}
.y61_c00336{bottom:322.200000px;}
.y2d_c00336{bottom:336.600000px;}
.y60_c00336{bottom:339.900000px;}
.y2c_c00336{bottom:355.950000px;}
.y5f_c00336{bottom:361.800000px;}
.y2b_c00336{bottom:375.450000px;}
.y5e_c00336{bottom:379.800000px;}
.y2a_c00336{bottom:392.700000px;}
.y5d_c00336{bottom:397.800000px;}
.y29_c00336{bottom:410.400000px;}
.y5c_c00336{bottom:418.800000px;}
.y28_c00336{bottom:428.400000px;}
.y5b_c00336{bottom:437.100000px;}
.y27_c00336{bottom:450.000000px;}
.y5a_c00336{bottom:462.900000px;}
.y26_c00336{bottom:468.000000px;}
.y59_c00336{bottom:481.200000px;}
.y25_c00336{bottom:485.700000px;}
.y58_c00336{bottom:499.500000px;}
.y24_c00336{bottom:503.700000px;}
.y57_c00336{bottom:517.200000px;}
.y23_c00336{bottom:525.300000px;}
.y56_c00336{bottom:534.450000px;}
.y22_c00336{bottom:543.600000px;}
.y55_c00336{bottom:552.450000px;}
.y54_c00336{bottom:570.150000px;}
.y21_c00336{bottom:570.300000px;}
.y20_c00336{bottom:588.300000px;}
.y53_c00336{bottom:589.650000px;}
.y52_c00336{bottom:606.150000px;}
.y1f_c00336{bottom:609.750000px;}
.y51_c00336{bottom:623.850000px;}
.y1e_c00336{bottom:628.500000px;}
.y50_c00336{bottom:646.050000px;}
.y1d_c00336{bottom:646.200000px;}
.y4f_c00336{bottom:663.750000px;}
.y1c_c00336{bottom:664.200000px;}
.y4e_c00336{bottom:681.750000px;}
.y1b_c00336{bottom:681.900000px;}
.y4d_c00336{bottom:699.450000px;}
.y1a_c00336{bottom:702.750000px;}
.y4c_c00336{bottom:717.150000px;}
.y19_c00336{bottom:721.500000px;}
.y4b_c00336{bottom:738.900000px;}
.y18_c00336{bottom:739.500000px;}
.y4a_c00336{bottom:756.600000px;}
.y17_c00336{bottom:757.500000px;}
.y49_c00336{bottom:774.600000px;}
.y16_c00336{bottom:775.200000px;}
.y48_c00336{bottom:792.600000px;}
.y15_c00336{bottom:792.900000px;}
.y47_c00336{bottom:810.300000px;}
.y14_c00336{bottom:810.600000px;}
.y46_c00336{bottom:828.000000px;}
.y13_c00336{bottom:828.300000px;}
.y45_c00336{bottom:845.700000px;}
.y12_c00336{bottom:846.300000px;}
.y44_c00336{bottom:863.400000px;}
.y11_c00336{bottom:864.000000px;}
.y43_c00336{bottom:881.400000px;}
.y10_c00336{bottom:882.000000px;}
.y42_c00336{bottom:898.650000px;}
.yf_c00336{bottom:899.700000px;}
.y41_c00336{bottom:916.650000px;}
.ye_c00336{bottom:917.700000px;}
.y40_c00336{bottom:934.350000px;}
.yd_c00336{bottom:935.400000px;}
.y3f_c00336{bottom:952.350000px;}
.yc_c00336{bottom:953.400000px;}
.y3e_c00336{bottom:970.050000px;}
.yb_c00336{bottom:971.100000px;}
.y3d_c00336{bottom:987.750000px;}
.ya_c00336{bottom:988.800000px;}
.y3c_c00336{bottom:1005.450000px;}
.y9_c00336{bottom:1006.800000px;}
.y8_c00336{bottom:1024.500000px;}
.y3b_c00336{bottom:1027.650000px;}
.y7_c00336{bottom:1042.500000px;}
.y3a_c00336{bottom:1045.350000px;}
.y6_c00336{bottom:1060.200000px;}
.y39_c00336{bottom:1063.350000px;}
.y5_c00336{bottom:1078.200000px;}
.y38_c00336{bottom:1081.050000px;}
.y37_c00336{bottom:1099.050000px;}
.y4_c00336{bottom:1102.350000px;}
.y36_c00336{bottom:1116.750000px;}
.y3_c00336{bottom:1117.050000px;}
.y2_c00336{bottom:1142.550000px;}
.y1_c00336{bottom:1143.300000px;}
.h7_c00336{height:48.000000px;}
.h6_c00336{height:54.000000px;}
.h4_c00336{height:60.000000px;}
.h3_c00336{height:66.000000px;}
.h5_c00336{height:72.000000px;}
.h2_c00336{height:78.000000px;}
.h1_c00336{height:1273.500000px;}
.h0_c00336{height:1273.679993px;}
.w1_c00336{width:961.500000px;}
.w0_c00336{width:961.560058px;}
.x0_c00336{left:0.000000px;}
.x3_c00336{left:61.950000px;}
.x7f_c00336{left:64.500000px;}
.x92_c00336{left:65.550000px;}
.x8b_c00336{left:66.600000px;}
.xd_c00336{left:76.950000px;}
.x1a_c00336{left:79.800000px;}
.x50_c00336{left:81.150000px;}
.x69_c00336{left:82.500000px;}
.x8d_c00336{left:83.700000px;}
.x89_c00336{left:85.500000px;}
.xab_c00336{left:87.000000px;}
.x93_c00336{left:90.450000px;}
.x8f_c00336{left:93.450000px;}
.x20_c00336{left:97.800000px;}
.x30_c00336{left:99.900000px;}
.x5d_c00336{left:102.000000px;}
.x7e_c00336{left:103.800000px;}
.xe_c00336{left:105.750000px;}
.x8c_c00336{left:108.300000px;}
.x8a_c00336{left:109.650000px;}
.x94_c00336{left:111.300000px;}
.x57_c00336{left:112.650000px;}
.x6a_c00336{left:114.900000px;}
.x21_c00336{left:116.850000px;}
.x90_c00336{left:117.900000px;}
.x79_c00336{left:119.100000px;}
.xac_c00336{left:120.900000px;}
.x35_c00336{left:121.950000px;}
.x4_c00336{left:124.650000px;}
.x80_c00336{left:126.750000px;}
.x1b_c00336{left:128.700000px;}
.x4b_c00336{left:129.900000px;}
.x36_c00336{left:132.450000px;}
.x84_c00336{left:134.100000px;}
.x31_c00336{left:135.150000px;}
.x2c_c00336{left:136.350000px;}
.x8e_c00336{left:137.400000px;}
.x6b_c00336{left:139.050000px;}
.xa1_c00336{left:141.600000px;}
.x22_c00336{left:142.800000px;}
.x15_c00336{left:144.000000px;}
.x28_c00336{left:145.950000px;}
.x3d_c00336{left:148.650000px;}
.x58_c00336{left:150.750000px;}
.x9d_c00336{left:152.250000px;}
.x23_c00336{left:153.600000px;}
.xf_c00336{left:155.850000px;}
.x53_c00336{left:157.800000px;}
.x83_c00336{left:160.050000px;}
.x3e_c00336{left:162.750000px;}
.x10_c00336{left:164.100000px;}
.x37_c00336{left:165.600000px;}
.x64_c00336{left:167.700000px;}
.x5e_c00336{left:170.700000px;}
.x11_c00336{left:173.400000px;}
.xa2_c00336{left:175.050000px;}
.x95_c00336{left:176.100000px;}
.x73_c00336{left:177.300000px;}
.x6e_c00336{left:179.850000px;}
.x32_c00336{left:181.200000px;}
.x81_c00336{left:183.150000px;}
.x97_c00336{left:184.350000px;}
.x12_c00336{left:186.300000px;}
.x5_c00336{left:187.350000px;}
.x99_c00336{left:188.550000px;}
.x1c_c00336{left:190.950000px;}
.x38_c00336{left:192.600000px;}
.x2d_c00336{left:193.650000px;}
.x29_c00336{left:194.850000px;}
.x47_c00336{left:196.800000px;}
.x13_c00336{left:198.900000px;}
.x5f_c00336{left:200.550000px;}
.x4c_c00336{left:202.200000px;}
.x6f_c00336{left:204.000000px;}
.x65_c00336{left:205.200000px;}
.x82_c00336{left:208.350000px;}
.x7a_c00336{left:210.900000px;}
.x39_c00336{left:212.400000px;}
.x66_c00336{left:213.900000px;}
.x59_c00336{left:215.250000px;}
.x14_c00336{left:217.200000px;}
.x6c_c00336{left:219.000000px;}
.x4d_c00336{left:222.750000px;}
.x6_c00336{left:226.200000px;}
.x54_c00336{left:228.000000px;}
.x24_c00336{left:230.250000px;}
.x16_c00336{left:232.200000px;}
.x60_c00336{left:234.450000px;}
.x70_c00336{left:236.700000px;}
.x96_c00336{left:238.050000px;}
.x5a_c00336{left:239.400000px;}
.x48_c00336{left:241.500000px;}
.x2a_c00336{left:242.700000px;}
.x7_c00336{left:245.700000px;}
.x55_c00336{left:247.050000px;}
.x3f_c00336{left:248.700000px;}
.x49_c00336{left:250.500000px;}
.xa7_c00336{left:251.550000px;}
.x5b_c00336{left:256.350000px;}
.x7b_c00336{left:258.450000px;}
.x17_c00336{left:259.500000px;}
.xa5_c00336{left:260.700000px;}
.x25_c00336{left:262.650000px;}
.x86_c00336{left:263.700000px;}
.x2b_c00336{left:265.350000px;}
.x3a_c00336{left:268.500000px;}
.x2e_c00336{left:269.550000px;}
.x42_c00336{left:270.900000px;}
.x85_c00336{left:272.100000px;}
.x74_c00336{left:275.550000px;}
.x33_c00336{left:276.600000px;}
.x2f_c00336{left:278.550000px;}
.xa4_c00336{left:280.050000px;}
.x43_c00336{left:282.000000px;}
.x9c_c00336{left:283.200000px;}
.x8_c00336{left:284.250000px;}
.x4a_c00336{left:285.750000px;}
.x3b_c00336{left:288.000000px;}
.x61_c00336{left:289.500000px;}
.x40_c00336{left:291.150000px;}
.x4e_c00336{left:292.500000px;}
.x56_c00336{left:294.600000px;}
.x67_c00336{left:296.100000px;}
.x71_c00336{left:297.900000px;}
.x9a_c00336{left:300.150000px;}
.x9_c00336{left:302.250000px;}
.x51_c00336{left:303.600000px;}
.x3c_c00336{left:305.250000px;}
.x1_c00336{left:306.750000px;}
.x77_c00336{left:309.300000px;}
.x62_c00336{left:310.800000px;}
.x18_c00336{left:314.250000px;}
.x87_c00336{left:315.600000px;}
.x68_c00336{left:316.950000px;}
.xa8_c00336{left:319.200000px;}
.xa_c00336{left:321.300000px;}
.x26_c00336{left:322.800000px;}
.x5c_c00336{left:325.500000px;}
.xa6_c00336{left:326.700000px;}
.x9e_c00336{left:327.900000px;}
.xa3_c00336{left:332.400000px;}
.x91_c00336{left:334.350000px;}
.xb_c00336{left:336.750000px;}
.x7c_c00336{left:338.850000px;}
.x44_c00336{left:340.650000px;}
.x75_c00336{left:342.150000px;}
.x63_c00336{left:343.950000px;}
.x1d_c00336{left:345.450000px;}
.x4f_c00336{left:348.600000px;}
.x27_c00336{left:351.600000px;}
.x52_c00336{left:354.000000px;}
.x45_c00336{left:356.100000px;}
.x1e_c00336{left:357.300000px;}
.x76_c00336{left:358.650000px;}
.x41_c00336{left:361.050000px;}
.x34_c00336{left:362.700000px;}
.xa9_c00336{left:363.900000px;}
.x19_c00336{left:365.700000px;}
.xc_c00336{left:367.050000px;}
.x98_c00336{left:368.250000px;}
.x7d_c00336{left:369.450000px;}
.x78_c00336{left:371.100000px;}
.x72_c00336{left:372.450000px;}
.x1f_c00336{left:373.500000px;}
.xaa_c00336{left:375.000000px;}
.x9f_c00336{left:379.350000px;}
.x6d_c00336{left:383.250000px;}
.x88_c00336{left:384.600000px;}
.xa0_c00336{left:386.550000px;}
.x9b_c00336{left:391.950000px;}
.x46_c00336{left:393.600000px;}
.x150_c00336{left:416.550000px;}
.x129_c00336{left:420.900000px;}
.x13d_c00336{left:423.750000px;}
.xad_c00336{left:435.300000px;}
.x103_c00336{left:436.950000px;}
.x120_c00336{left:438.150000px;}
.x135_c00336{left:440.100000px;}
.x145_c00336{left:446.700000px;}
.x151_c00336{left:448.650000px;}
.xd7_c00336{left:452.550000px;}
.x119_c00336{left:455.700000px;}
.xae_c00336{left:458.700000px;}
.x126_c00336{left:459.900000px;}
.xd0_c00336{left:461.250000px;}
.x12c_c00336{left:463.500000px;}
.x13e_c00336{left:465.450000px;}
.x14e_c00336{left:466.500000px;}
.xc4_c00336{left:467.700000px;}
.xe4_c00336{left:470.850000px;}
.xbd_c00336{left:472.050000px;}
.xdb_c00336{left:473.100000px;}
.x107_c00336{left:474.900000px;}
.xe9_c00336{left:477.450000px;}
.x14d_c00336{left:479.100000px;}
.x14a_c00336{left:480.450000px;}
.xf3_c00336{left:482.400000px;}
.xe5_c00336{left:487.350000px;}
.x14b_c00336{left:488.400000px;}
.xd1_c00336{left:489.750000px;}
.xdc_c00336{left:491.100000px;}
.xbe_c00336{left:492.900000px;}
.x130_c00336{left:494.100000px;}
.x121_c00336{left:495.150000px;}
.x11c_c00336{left:496.350000px;}
.xd8_c00336{left:499.350000px;}
.xc5_c00336{left:500.400000px;}
.xdf_c00336{left:502.500000px;}
.xfc_c00336{left:503.850000px;}
.xed_c00336{left:505.500000px;}
.x13f_c00336{left:507.300000px;}
.xb7_c00336{left:508.350000px;}
.xd2_c00336{left:511.050000px;}
.x131_c00336{left:513.150000px;}
.xaf_c00336{left:514.500000px;}
.x128_c00336{left:515.700000px;}
.x12d_c00336{left:517.950000px;}
.x104_c00336{left:519.000000px;}
.x143_c00336{left:520.950000px;}
.xb0_c00336{left:525.000000px;}
.xf4_c00336{left:526.350000px;}
.x146_c00336{left:528.450000px;}
.x117_c00336{left:529.650000px;}
.x12e_c00336{left:530.850000px;}
.x10d_c00336{left:532.650000px;}
.x13a_c00336{left:533.850000px;}
.x111_c00336{left:534.900000px;}
.x136_c00336{left:535.950000px;}
.xe0_c00336{left:537.450000px;}
.xbf_c00336{left:539.400000px;}
.xfd_c00336{left:540.900000px;}
.xc6_c00336{left:543.900000px;}
.x122_c00336{left:546.300000px;}
.x12a_c00336{left:549.150000px;}
.xdd_c00336{left:550.200000px;}
.x140_c00336{left:552.300000px;}
.xb8_c00336{left:553.650000px;}
.xf5_c00336{left:554.850000px;}
.x132_c00336{left:556.050000px;}
.x11d_c00336{left:557.250000px;}
.x113_c00336{left:559.200000px;}
.xfa_c00336{left:560.400000px;}
.xb1_c00336{left:561.750000px;}
.x108_c00336{left:564.900000px;}
.xee_c00336{left:567.000000px;}
.x123_c00336{left:569.700000px;}
.xde_c00336{left:573.300000px;}
.x11a_c00336{left:574.800000px;}
.xb9_c00336{left:576.000000px;}
.x147_c00336{left:577.350000px;}
.xcc_c00336{left:579.450000px;}
.xd3_c00336{left:580.950000px;}
.xe1_c00336{left:582.150000px;}
.xfe_c00336{left:584.850000px;}
.xb2_c00336{left:586.950000px;}
.x124_c00336{left:589.500000px;}
.xf6_c00336{left:591.600000px;}
.x109_c00336{left:592.650000px;}
.x13b_c00336{left:593.850000px;}
.x105_c00336{left:596.400000px;}
.xc7_c00336{left:597.600000px;}
.xd4_c00336{left:599.700000px;}
.x10e_c00336{left:601.050000px;}
.xc0_c00336{left:602.400000px;}
.x100_c00336{left:604.050000px;}
.x138_c00336{left:605.550000px;}
.xea_c00336{left:609.150000px;}
.xe2_c00336{left:610.200000px;}
.xc8_c00336{left:612.300000px;}
.x10a_c00336{left:614.250000px;}
.xef_c00336{left:619.950000px;}
.xd5_c00336{left:621.300000px;}
.xc1_c00336{left:622.500000px;}
.x10f_c00336{left:625.500000px;}
.x114_c00336{left:626.850000px;}
.xba_c00336{left:627.900000px;}
.xe6_c00336{left:630.900000px;}
.xeb_c00336{left:633.600000px;}
.x137_c00336{left:634.650000px;}
.x142_c00336{left:639.600000px;}
.xf0_c00336{left:642.300000px;}
.xcd_c00336{left:643.500000px;}
.x127_c00336{left:645.600000px;}
.x139_c00336{left:648.000000px;}
.x152_c00336{left:649.950000px;}
.x133_c00336{left:651.150000px;}
.x106_c00336{left:653.700000px;}
.xe7_c00336{left:655.350000px;}
.xc9_c00336{left:657.600000px;}
.x13c_c00336{left:659.400000px;}
.x11e_c00336{left:660.900000px;}
.xf7_c00336{left:663.000000px;}
.x144_c00336{left:664.650000px;}
.xd6_c00336{left:666.300000px;}
.xca_c00336{left:667.650000px;}
.xb3_c00336{left:668.700000px;}
.xfb_c00336{left:670.650000px;}
.x134_c00336{left:671.700000px;}
.xd9_c00336{left:675.450000px;}
.xc2_c00336{left:676.800000px;}
.x101_c00336{left:678.900000px;}
.xbb_c00336{left:680.850000px;}
.xff_c00336{left:682.050000px;}
.xce_c00336{left:683.850000px;}
.x12b_c00336{left:685.200000px;}
.x110_c00336{left:686.400000px;}
.x115_c00336{left:688.050000px;}
.x10b_c00336{left:692.700000px;}
.x148_c00336{left:694.350000px;}
.xf1_c00336{left:696.600000px;}
.xb4_c00336{left:697.800000px;}
.x14f_c00336{left:698.850000px;}
.xda_c00336{left:701.700000px;}
.xec_c00336{left:703.800000px;}
.x153_c00336{left:707.250000px;}
.xcb_c00336{left:709.050000px;}
.x118_c00336{left:710.700000px;}
.x149_c00336{left:712.650000px;}
.xe3_c00336{left:713.850000px;}
.xf8_c00336{left:715.200000px;}
.xe8_c00336{left:716.550000px;}
.xbc_c00336{left:717.900000px;}
.x102_c00336{left:720.300000px;}
.xc3_c00336{left:722.100000px;}
.x2_c00336{left:724.350000px;}
.xf9_c00336{left:726.300000px;}
.x116_c00336{left:728.400000px;}
.x10c_c00336{left:730.200000px;}
.x12f_c00336{left:732.750000px;}
.x112_c00336{left:735.300000px;}
.xcf_c00336{left:738.900000px;}
.x11f_c00336{left:740.850000px;}
.x11b_c00336{left:745.050000px;}
.xf2_c00336{left:747.000000px;}
.x14c_c00336{left:748.350000px;}
.xb5_c00336{left:750.750000px;}
.x125_c00336{left:752.250000px;}
.x141_c00336{left:754.650000px;}
.xb6_c00336{left:759.750000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws6_c00336{word-spacing:-10.532588pt;}
.ws4_c00336{word-spacing:-7.367698pt;}
.ws5_c00336{word-spacing:-6.894309pt;}
.ws3_c00336{word-spacing:-3.333333pt;}
.ws8_c00336{word-spacing:-0.710059pt;}
.ws9_c00336{word-spacing:0.000000pt;}
.ws0_c00336{word-spacing:2.779991pt;}
.ws2_c00336{word-spacing:4.771930pt;}
.ws7_c00336{word-spacing:5.740902pt;}
.ws1_c00336{word-spacing:20.370583pt;}
.fs5_c00336{font-size:42.666667pt;}
.fs4_c00336{font-size:48.000000pt;}
.fs2_c00336{font-size:53.333333pt;}
.fs1_c00336{font-size:58.666667pt;}
.fs3_c00336{font-size:64.000000pt;}
.fs0_c00336{font-size:69.333333pt;}
.y0_c00336{bottom:0.000000pt;}
.y67_c00336{bottom:169.600000pt;}
.y35_c00336{bottom:172.400000pt;}
.y66_c00336{bottom:182.400000pt;}
.y34_c00336{bottom:186.133333pt;}
.y65_c00336{bottom:194.533333pt;}
.y33_c00336{bottom:202.133333pt;}
.y32_c00336{bottom:218.133333pt;}
.y31_c00336{bottom:233.866667pt;}
.y64_c00336{bottom:238.666667pt;}
.y30_c00336{bottom:249.866667pt;}
.y63_c00336{bottom:254.400000pt;}
.y2f_c00336{bottom:265.600000pt;}
.y62_c00336{bottom:270.666667pt;}
.y2e_c00336{bottom:281.600000pt;}
.y61_c00336{bottom:286.400000pt;}
.y2d_c00336{bottom:299.200000pt;}
.y60_c00336{bottom:302.133333pt;}
.y2c_c00336{bottom:316.400000pt;}
.y5f_c00336{bottom:321.600000pt;}
.y2b_c00336{bottom:333.733333pt;}
.y5e_c00336{bottom:337.600000pt;}
.y2a_c00336{bottom:349.066667pt;}
.y5d_c00336{bottom:353.600000pt;}
.y29_c00336{bottom:364.800000pt;}
.y5c_c00336{bottom:372.266667pt;}
.y28_c00336{bottom:380.800000pt;}
.y5b_c00336{bottom:388.533333pt;}
.y27_c00336{bottom:400.000000pt;}
.y5a_c00336{bottom:411.466667pt;}
.y26_c00336{bottom:416.000000pt;}
.y59_c00336{bottom:427.733333pt;}
.y25_c00336{bottom:431.733333pt;}
.y58_c00336{bottom:444.000000pt;}
.y24_c00336{bottom:447.733333pt;}
.y57_c00336{bottom:459.733333pt;}
.y23_c00336{bottom:466.933333pt;}
.y56_c00336{bottom:475.066667pt;}
.y22_c00336{bottom:483.200000pt;}
.y55_c00336{bottom:491.066667pt;}
.y54_c00336{bottom:506.800000pt;}
.y21_c00336{bottom:506.933333pt;}
.y20_c00336{bottom:522.933333pt;}
.y53_c00336{bottom:524.133333pt;}
.y52_c00336{bottom:538.800000pt;}
.y1f_c00336{bottom:542.000000pt;}
.y51_c00336{bottom:554.533333pt;}
.y1e_c00336{bottom:558.666667pt;}
.y50_c00336{bottom:574.266667pt;}
.y1d_c00336{bottom:574.400000pt;}
.y4f_c00336{bottom:590.000000pt;}
.y1c_c00336{bottom:590.400000pt;}
.y4e_c00336{bottom:606.000000pt;}
.y1b_c00336{bottom:606.133333pt;}
.y4d_c00336{bottom:621.733333pt;}
.y1a_c00336{bottom:624.666667pt;}
.y4c_c00336{bottom:637.466667pt;}
.y19_c00336{bottom:641.333333pt;}
.y4b_c00336{bottom:656.800000pt;}
.y18_c00336{bottom:657.333333pt;}
.y4a_c00336{bottom:672.533333pt;}
.y17_c00336{bottom:673.333333pt;}
.y49_c00336{bottom:688.533333pt;}
.y16_c00336{bottom:689.066667pt;}
.y48_c00336{bottom:704.533333pt;}
.y15_c00336{bottom:704.800000pt;}
.y47_c00336{bottom:720.266667pt;}
.y14_c00336{bottom:720.533333pt;}
.y46_c00336{bottom:736.000000pt;}
.y13_c00336{bottom:736.266667pt;}
.y45_c00336{bottom:751.733333pt;}
.y12_c00336{bottom:752.266667pt;}
.y44_c00336{bottom:767.466667pt;}
.y11_c00336{bottom:768.000000pt;}
.y43_c00336{bottom:783.466667pt;}
.y10_c00336{bottom:784.000000pt;}
.y42_c00336{bottom:798.800000pt;}
.yf_c00336{bottom:799.733333pt;}
.y41_c00336{bottom:814.800000pt;}
.ye_c00336{bottom:815.733333pt;}
.y40_c00336{bottom:830.533333pt;}
.yd_c00336{bottom:831.466667pt;}
.y3f_c00336{bottom:846.533333pt;}
.yc_c00336{bottom:847.466667pt;}
.y3e_c00336{bottom:862.266667pt;}
.yb_c00336{bottom:863.200000pt;}
.y3d_c00336{bottom:878.000000pt;}
.ya_c00336{bottom:878.933333pt;}
.y3c_c00336{bottom:893.733333pt;}
.y9_c00336{bottom:894.933333pt;}
.y8_c00336{bottom:910.666667pt;}
.y3b_c00336{bottom:913.466667pt;}
.y7_c00336{bottom:926.666667pt;}
.y3a_c00336{bottom:929.200000pt;}
.y6_c00336{bottom:942.400000pt;}
.y39_c00336{bottom:945.200000pt;}
.y5_c00336{bottom:958.400000pt;}
.y38_c00336{bottom:960.933333pt;}
.y37_c00336{bottom:976.933333pt;}
.y4_c00336{bottom:979.866667pt;}
.y36_c00336{bottom:992.666667pt;}
.y3_c00336{bottom:992.933333pt;}
.y2_c00336{bottom:1015.600000pt;}
.y1_c00336{bottom:1016.266667pt;}
.h7_c00336{height:42.666667pt;}
.h6_c00336{height:48.000000pt;}
.h4_c00336{height:53.333333pt;}
.h3_c00336{height:58.666667pt;}
.h5_c00336{height:64.000000pt;}
.h2_c00336{height:69.333333pt;}
.h1_c00336{height:1132.000000pt;}
.h0_c00336{height:1132.159993pt;}
.w1_c00336{width:854.666667pt;}
.w0_c00336{width:854.720052pt;}
.x0_c00336{left:0.000000pt;}
.x3_c00336{left:55.066667pt;}
.x7f_c00336{left:57.333333pt;}
.x92_c00336{left:58.266667pt;}
.x8b_c00336{left:59.200000pt;}
.xd_c00336{left:68.400000pt;}
.x1a_c00336{left:70.933333pt;}
.x50_c00336{left:72.133333pt;}
.x69_c00336{left:73.333333pt;}
.x8d_c00336{left:74.400000pt;}
.x89_c00336{left:76.000000pt;}
.xab_c00336{left:77.333333pt;}
.x93_c00336{left:80.400000pt;}
.x8f_c00336{left:83.066667pt;}
.x20_c00336{left:86.933333pt;}
.x30_c00336{left:88.800000pt;}
.x5d_c00336{left:90.666667pt;}
.x7e_c00336{left:92.266667pt;}
.xe_c00336{left:94.000000pt;}
.x8c_c00336{left:96.266667pt;}
.x8a_c00336{left:97.466667pt;}
.x94_c00336{left:98.933333pt;}
.x57_c00336{left:100.133333pt;}
.x6a_c00336{left:102.133333pt;}
.x21_c00336{left:103.866667pt;}
.x90_c00336{left:104.800000pt;}
.x79_c00336{left:105.866667pt;}
.xac_c00336{left:107.466667pt;}
.x35_c00336{left:108.400000pt;}
.x4_c00336{left:110.800000pt;}
.x80_c00336{left:112.666667pt;}
.x1b_c00336{left:114.400000pt;}
.x4b_c00336{left:115.466667pt;}
.x36_c00336{left:117.733333pt;}
.x84_c00336{left:119.200000pt;}
.x31_c00336{left:120.133333pt;}
.x2c_c00336{left:121.200000pt;}
.x8e_c00336{left:122.133333pt;}
.x6b_c00336{left:123.600000pt;}
.xa1_c00336{left:125.866667pt;}
.x22_c00336{left:126.933333pt;}
.x15_c00336{left:128.000000pt;}
.x28_c00336{left:129.733333pt;}
.x3d_c00336{left:132.133333pt;}
.x58_c00336{left:134.000000pt;}
.x9d_c00336{left:135.333333pt;}
.x23_c00336{left:136.533333pt;}
.xf_c00336{left:138.533333pt;}
.x53_c00336{left:140.266667pt;}
.x83_c00336{left:142.266667pt;}
.x3e_c00336{left:144.666667pt;}
.x10_c00336{left:145.866667pt;}
.x37_c00336{left:147.200000pt;}
.x64_c00336{left:149.066667pt;}
.x5e_c00336{left:151.733333pt;}
.x11_c00336{left:154.133333pt;}
.xa2_c00336{left:155.600000pt;}
.x95_c00336{left:156.533333pt;}
.x73_c00336{left:157.600000pt;}
.x6e_c00336{left:159.866667pt;}
.x32_c00336{left:161.066667pt;}
.x81_c00336{left:162.800000pt;}
.x97_c00336{left:163.866667pt;}
.x12_c00336{left:165.600000pt;}
.x5_c00336{left:166.533333pt;}
.x99_c00336{left:167.600000pt;}
.x1c_c00336{left:169.733333pt;}
.x38_c00336{left:171.200000pt;}
.x2d_c00336{left:172.133333pt;}
.x29_c00336{left:173.200000pt;}
.x47_c00336{left:174.933333pt;}
.x13_c00336{left:176.800000pt;}
.x5f_c00336{left:178.266667pt;}
.x4c_c00336{left:179.733333pt;}
.x6f_c00336{left:181.333333pt;}
.x65_c00336{left:182.400000pt;}
.x82_c00336{left:185.200000pt;}
.x7a_c00336{left:187.466667pt;}
.x39_c00336{left:188.800000pt;}
.x66_c00336{left:190.133333pt;}
.x59_c00336{left:191.333333pt;}
.x14_c00336{left:193.066667pt;}
.x6c_c00336{left:194.666667pt;}
.x4d_c00336{left:198.000000pt;}
.x6_c00336{left:201.066667pt;}
.x54_c00336{left:202.666667pt;}
.x24_c00336{left:204.666667pt;}
.x16_c00336{left:206.400000pt;}
.x60_c00336{left:208.400000pt;}
.x70_c00336{left:210.400000pt;}
.x96_c00336{left:211.600000pt;}
.x5a_c00336{left:212.800000pt;}
.x48_c00336{left:214.666667pt;}
.x2a_c00336{left:215.733333pt;}
.x7_c00336{left:218.400000pt;}
.x55_c00336{left:219.600000pt;}
.x3f_c00336{left:221.066667pt;}
.x49_c00336{left:222.666667pt;}
.xa7_c00336{left:223.600000pt;}
.x5b_c00336{left:227.866667pt;}
.x7b_c00336{left:229.733333pt;}
.x17_c00336{left:230.666667pt;}
.xa5_c00336{left:231.733333pt;}
.x25_c00336{left:233.466667pt;}
.x86_c00336{left:234.400000pt;}
.x2b_c00336{left:235.866667pt;}
.x3a_c00336{left:238.666667pt;}
.x2e_c00336{left:239.600000pt;}
.x42_c00336{left:240.800000pt;}
.x85_c00336{left:241.866667pt;}
.x74_c00336{left:244.933333pt;}
.x33_c00336{left:245.866667pt;}
.x2f_c00336{left:247.600000pt;}
.xa4_c00336{left:248.933333pt;}
.x43_c00336{left:250.666667pt;}
.x9c_c00336{left:251.733333pt;}
.x8_c00336{left:252.666667pt;}
.x4a_c00336{left:254.000000pt;}
.x3b_c00336{left:256.000000pt;}
.x61_c00336{left:257.333333pt;}
.x40_c00336{left:258.800000pt;}
.x4e_c00336{left:260.000000pt;}
.x56_c00336{left:261.866667pt;}
.x67_c00336{left:263.200000pt;}
.x71_c00336{left:264.800000pt;}
.x9a_c00336{left:266.800000pt;}
.x9_c00336{left:268.666667pt;}
.x51_c00336{left:269.866667pt;}
.x3c_c00336{left:271.333333pt;}
.x1_c00336{left:272.666667pt;}
.x77_c00336{left:274.933333pt;}
.x62_c00336{left:276.266667pt;}
.x18_c00336{left:279.333333pt;}
.x87_c00336{left:280.533333pt;}
.x68_c00336{left:281.733333pt;}
.xa8_c00336{left:283.733333pt;}
.xa_c00336{left:285.600000pt;}
.x26_c00336{left:286.933333pt;}
.x5c_c00336{left:289.333333pt;}
.xa6_c00336{left:290.400000pt;}
.x9e_c00336{left:291.466667pt;}
.xa3_c00336{left:295.466667pt;}
.x91_c00336{left:297.200000pt;}
.xb_c00336{left:299.333333pt;}
.x7c_c00336{left:301.200000pt;}
.x44_c00336{left:302.800000pt;}
.x75_c00336{left:304.133333pt;}
.x63_c00336{left:305.733333pt;}
.x1d_c00336{left:307.066667pt;}
.x4f_c00336{left:309.866667pt;}
.x27_c00336{left:312.533333pt;}
.x52_c00336{left:314.666667pt;}
.x45_c00336{left:316.533333pt;}
.x1e_c00336{left:317.600000pt;}
.x76_c00336{left:318.800000pt;}
.x41_c00336{left:320.933333pt;}
.x34_c00336{left:322.400000pt;}
.xa9_c00336{left:323.466667pt;}
.x19_c00336{left:325.066667pt;}
.xc_c00336{left:326.266667pt;}
.x98_c00336{left:327.333333pt;}
.x7d_c00336{left:328.400000pt;}
.x78_c00336{left:329.866667pt;}
.x72_c00336{left:331.066667pt;}
.x1f_c00336{left:332.000000pt;}
.xaa_c00336{left:333.333333pt;}
.x9f_c00336{left:337.200000pt;}
.x6d_c00336{left:340.666667pt;}
.x88_c00336{left:341.866667pt;}
.xa0_c00336{left:343.600000pt;}
.x9b_c00336{left:348.400000pt;}
.x46_c00336{left:349.866667pt;}
.x150_c00336{left:370.266667pt;}
.x129_c00336{left:374.133333pt;}
.x13d_c00336{left:376.666667pt;}
.xad_c00336{left:386.933333pt;}
.x103_c00336{left:388.400000pt;}
.x120_c00336{left:389.466667pt;}
.x135_c00336{left:391.200000pt;}
.x145_c00336{left:397.066667pt;}
.x151_c00336{left:398.800000pt;}
.xd7_c00336{left:402.266667pt;}
.x119_c00336{left:405.066667pt;}
.xae_c00336{left:407.733333pt;}
.x126_c00336{left:408.800000pt;}
.xd0_c00336{left:410.000000pt;}
.x12c_c00336{left:412.000000pt;}
.x13e_c00336{left:413.733333pt;}
.x14e_c00336{left:414.666667pt;}
.xc4_c00336{left:415.733333pt;}
.xe4_c00336{left:418.533333pt;}
.xbd_c00336{left:419.600000pt;}
.xdb_c00336{left:420.533333pt;}
.x107_c00336{left:422.133333pt;}
.xe9_c00336{left:424.400000pt;}
.x14d_c00336{left:425.866667pt;}
.x14a_c00336{left:427.066667pt;}
.xf3_c00336{left:428.800000pt;}
.xe5_c00336{left:433.200000pt;}
.x14b_c00336{left:434.133333pt;}
.xd1_c00336{left:435.333333pt;}
.xdc_c00336{left:436.533333pt;}
.xbe_c00336{left:438.133333pt;}
.x130_c00336{left:439.200000pt;}
.x121_c00336{left:440.133333pt;}
.x11c_c00336{left:441.200000pt;}
.xd8_c00336{left:443.866667pt;}
.xc5_c00336{left:444.800000pt;}
.xdf_c00336{left:446.666667pt;}
.xfc_c00336{left:447.866667pt;}
.xed_c00336{left:449.333333pt;}
.x13f_c00336{left:450.933333pt;}
.xb7_c00336{left:451.866667pt;}
.xd2_c00336{left:454.266667pt;}
.x131_c00336{left:456.133333pt;}
.xaf_c00336{left:457.333333pt;}
.x128_c00336{left:458.400000pt;}
.x12d_c00336{left:460.400000pt;}
.x104_c00336{left:461.333333pt;}
.x143_c00336{left:463.066667pt;}
.xb0_c00336{left:466.666667pt;}
.xf4_c00336{left:467.866667pt;}
.x146_c00336{left:469.733333pt;}
.x117_c00336{left:470.800000pt;}
.x12e_c00336{left:471.866667pt;}
.x10d_c00336{left:473.466667pt;}
.x13a_c00336{left:474.533333pt;}
.x111_c00336{left:475.466667pt;}
.x136_c00336{left:476.400000pt;}
.xe0_c00336{left:477.733333pt;}
.xbf_c00336{left:479.466667pt;}
.xfd_c00336{left:480.800000pt;}
.xc6_c00336{left:483.466667pt;}
.x122_c00336{left:485.600000pt;}
.x12a_c00336{left:488.133333pt;}
.xdd_c00336{left:489.066667pt;}
.x140_c00336{left:490.933333pt;}
.xb8_c00336{left:492.133333pt;}
.xf5_c00336{left:493.200000pt;}
.x132_c00336{left:494.266667pt;}
.x11d_c00336{left:495.333333pt;}
.x113_c00336{left:497.066667pt;}
.xfa_c00336{left:498.133333pt;}
.xb1_c00336{left:499.333333pt;}
.x108_c00336{left:502.133333pt;}
.xee_c00336{left:504.000000pt;}
.x123_c00336{left:506.400000pt;}
.xde_c00336{left:509.600000pt;}
.x11a_c00336{left:510.933333pt;}
.xb9_c00336{left:512.000000pt;}
.x147_c00336{left:513.200000pt;}
.xcc_c00336{left:515.066667pt;}
.xd3_c00336{left:516.400000pt;}
.xe1_c00336{left:517.466667pt;}
.xfe_c00336{left:519.866667pt;}
.xb2_c00336{left:521.733333pt;}
.x124_c00336{left:524.000000pt;}
.xf6_c00336{left:525.866667pt;}
.x109_c00336{left:526.800000pt;}
.x13b_c00336{left:527.866667pt;}
.x105_c00336{left:530.133333pt;}
.xc7_c00336{left:531.200000pt;}
.xd4_c00336{left:533.066667pt;}
.x10e_c00336{left:534.266667pt;}
.xc0_c00336{left:535.466667pt;}
.x100_c00336{left:536.933333pt;}
.x138_c00336{left:538.266667pt;}
.xea_c00336{left:541.466667pt;}
.xe2_c00336{left:542.400000pt;}
.xc8_c00336{left:544.266667pt;}
.x10a_c00336{left:546.000000pt;}
.xef_c00336{left:551.066667pt;}
.xd5_c00336{left:552.266667pt;}
.xc1_c00336{left:553.333333pt;}
.x10f_c00336{left:556.000000pt;}
.x114_c00336{left:557.200000pt;}
.xba_c00336{left:558.133333pt;}
.xe6_c00336{left:560.800000pt;}
.xeb_c00336{left:563.200000pt;}
.x137_c00336{left:564.133333pt;}
.x142_c00336{left:568.533333pt;}
.xf0_c00336{left:570.933333pt;}
.xcd_c00336{left:572.000000pt;}
.x127_c00336{left:573.866667pt;}
.x139_c00336{left:576.000000pt;}
.x152_c00336{left:577.733333pt;}
.x133_c00336{left:578.800000pt;}
.x106_c00336{left:581.066667pt;}
.xe7_c00336{left:582.533333pt;}
.xc9_c00336{left:584.533333pt;}
.x13c_c00336{left:586.133333pt;}
.x11e_c00336{left:587.466667pt;}
.xf7_c00336{left:589.333333pt;}
.x144_c00336{left:590.800000pt;}
.xd6_c00336{left:592.266667pt;}
.xca_c00336{left:593.466667pt;}
.xb3_c00336{left:594.400000pt;}
.xfb_c00336{left:596.133333pt;}
.x134_c00336{left:597.066667pt;}
.xd9_c00336{left:600.400000pt;}
.xc2_c00336{left:601.600000pt;}
.x101_c00336{left:603.466667pt;}
.xbb_c00336{left:605.200000pt;}
.xff_c00336{left:606.266667pt;}
.xce_c00336{left:607.866667pt;}
.x12b_c00336{left:609.066667pt;}
.x110_c00336{left:610.133333pt;}
.x115_c00336{left:611.600000pt;}
.x10b_c00336{left:615.733333pt;}
.x148_c00336{left:617.200000pt;}
.xf1_c00336{left:619.200000pt;}
.xb4_c00336{left:620.266667pt;}
.x14f_c00336{left:621.200000pt;}
.xda_c00336{left:623.733333pt;}
.xec_c00336{left:625.600000pt;}
.x153_c00336{left:628.666667pt;}
.xcb_c00336{left:630.266667pt;}
.x118_c00336{left:631.733333pt;}
.x149_c00336{left:633.466667pt;}
.xe3_c00336{left:634.533333pt;}
.xf8_c00336{left:635.733333pt;}
.xe8_c00336{left:636.933333pt;}
.xbc_c00336{left:638.133333pt;}
.x102_c00336{left:640.266667pt;}
.xc3_c00336{left:641.866667pt;}
.x2_c00336{left:643.866667pt;}
.xf9_c00336{left:645.600000pt;}
.x116_c00336{left:647.466667pt;}
.x10c_c00336{left:649.066667pt;}
.x12f_c00336{left:651.333333pt;}
.x112_c00336{left:653.600000pt;}
.xcf_c00336{left:656.800000pt;}
.x11f_c00336{left:658.533333pt;}
.x11b_c00336{left:662.266667pt;}
.xf2_c00336{left:664.000000pt;}
.x14c_c00336{left:665.200000pt;}
.xb5_c00336{left:667.333333pt;}
.x125_c00336{left:668.666667pt;}
.x141_c00336{left:670.800000pt;}
.xb6_c00336{left:675.333333pt;}
}





/* 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_c00337 {
    display:none;
  }
  .loading-indicator_c00337.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00337 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_c00337 { 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_c00337" -> "#page-container .classname_c00337")
 */
.pf_c00337 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00337 { /* 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_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00337 { /* 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_c00337 { /* 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_c00337 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00337 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00337 {overflow:visible;}
  }
}
.c_c00337 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00337 { /* 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_c00337:after { /* webkit #35443 */
  content: '';
}
.t_c00337:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00337 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 */
}
.__c00337 { /* 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_c00337 { /* info for Javascript */
  display:none;
}
.l_c00337 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00337 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00337 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00337: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_c00337 {
    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_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00337.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_c00337 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00337;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.000000;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;}
.m110_c00337{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.md2_c00337{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00337{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m67_c00337{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00337{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00337{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00337{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m115_c00337{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m83_c00337{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00337{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m27_c00337{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00337{transform:matrix(0.104500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00337{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m58_c00337{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m17_c00337{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00337{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.meb_c00337{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00337{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mac_c00337{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.m106_c00337{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mea_c00337{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00337{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00337{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m68_c00337{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m34_c00337{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m77_c00337{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00337{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00337{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m32_c00337{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7_c00337{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00337{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m76_c00337{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00337{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m99_c00337{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00337{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m10_c00337{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m42_c00337{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m30_c00337{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m120_c00337{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00337{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00337{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00337{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m109_c00337{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m15_c00337{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mff_c00337{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m37_c00337{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m122_c00337{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m46_c00337{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00337{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00337{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m52_c00337{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m125_c00337{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00337{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m48_c00337{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m69_c00337{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00337{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00337{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00337{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m28_c00337{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00337{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00337{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00337{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00337{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m66_c00337{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m124_c00337{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00337{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00337{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m64_c00337{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m72_c00337{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m44_c00337{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m38_c00337{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.me3_c00337{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00337{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00337{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00337{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me5_c00337{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.md5_c00337{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00337{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m96_c00337{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m36_c00337{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m116_c00337{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00337{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00337{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00337{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m33_c00337{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m126_c00337{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00337{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00337{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m13_c00337{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m35_c00337{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m61_c00337{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m22_c00337{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00337{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00337{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00337{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m29_c00337{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m40_c00337{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00337{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m92_c00337{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m123_c00337{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00337{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m97_c00337{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m20_c00337{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m98_c00337{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00337{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00337{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00337{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m45_c00337{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m39_c00337{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00337{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m49_c00337{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m50_c00337{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m70_c00337{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m24_c00337{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m43_c00337{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m73_c00337{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00337{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m78_c00337{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.med_c00337{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m18_c00337{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m117_c00337{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mec_c00337{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m79_c00337{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00337{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m71_c00337{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00337{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m59_c00337{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m80_c00337{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m54_c00337{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00337{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m53_c00337{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00337{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00337{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00337{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mad_c00337{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00337{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m16_c00337{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00337{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00337{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00337{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00337{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00337{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me2_c00337{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m41_c00337{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m60_c00337{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m62_c00337{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00337{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md0_c00337{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00337{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00337{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mef_c00337{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m63_c00337{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00337{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00337{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m14_c00337{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m51_c00337{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me9_c00337{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m118_c00337{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc_c00337{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m75_c00337{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m57_c00337{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00337{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mca_c00337{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m131_c00337{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.me0_c00337{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00337{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00337{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.me_c00337{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00337{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m56_c00337{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00337{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m114_c00337{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m21_c00337{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00337{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00337{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00337{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00337{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m95_c00337{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mab_c00337{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m47_c00337{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m91_c00337{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00337{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00337{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me1_c00337{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00337{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00337{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.md6_c00337{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md1_c00337{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m23_c00337{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00337{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m87_c00337{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00337{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00337{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00337{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m5_c00337{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.maa_c00337{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mf_c00337{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00337{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m55_c00337{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mba_c00337{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00337{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00337{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00337{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m19_c00337{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00337{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m94_c00337{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md3_c00337{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00337{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m86_c00337{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3_c00337{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m103_c00337{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m65_c00337{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00337{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00337{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m119_c00337{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m82_c00337{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00337{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00337{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00337{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m89_c00337{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m25_c00337{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00337{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00337{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m31_c00337{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9_c00337{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6_c00337{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00337{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00337{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00337{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00337{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00337{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00337{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m12_c00337{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m100_c00337{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma_c00337{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m85_c00337{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00337{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00337{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00337{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m84_c00337{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11_c00337{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m90_c00337{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00337{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00337{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mda_c00337{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m105_c00337{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m129_c00337{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4_c00337{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb_c00337{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00337{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m113_c00337{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00337{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00337{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m8_c00337{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00337{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00337{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2_c00337{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00337{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.me6_c00337{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m104_c00337{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mae_c00337{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00337{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me8_c00337{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.me7_c00337{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m74_c00337{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mce_c00337{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m128_c00337{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00337{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m93_c00337{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00337{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mde_c00337{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m26_c00337{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00337{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00337{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m88_c00337{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m130_c00337{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m111_c00337{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m127_c00337{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m101_c00337{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00337{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00337{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00337{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00337{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.md9_c00337{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me4_c00337{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m108_c00337{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00337{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m107_c00337{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00337{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00337{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00337{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.maf_c00337{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.md8_c00337{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00337{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m102_c00337{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.md4_c00337{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m112_c00337{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00337{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.mee_c00337{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.md7_c00337{transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00337{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.m121_c00337{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00337{transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(0.475750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475750,0.000000,0.000000,0.250000,0,0);}
.m81_c00337{transform:matrix(1.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.587500,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls0_c00337{letter-spacing:0.000000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{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__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00337{word-spacing:-11.052632px;}
.wsd_c00337{word-spacing:-10.042373px;}
.ws7_c00337{word-spacing:-9.736842px;}
.ws1_c00337{word-spacing:-7.156425px;}
.wsa_c00337{word-spacing:-7.058824px;}
.ws2_c00337{word-spacing:-6.846626px;}
.ws6_c00337{word-spacing:-6.428571px;}
.wsb_c00337{word-spacing:-4.062500px;}
.wsc_c00337{word-spacing:-3.382353px;}
.wse_c00337{word-spacing:0.000000px;}
.ws8_c00337{word-spacing:1.666667px;}
.ws4_c00337{word-spacing:2.426516px;}
.ws0_c00337{word-spacing:6.923077px;}
.ws3_c00337{word-spacing:8.365385px;}
.ws5_c00337{word-spacing:12.519294px;}
.fc0_c00337{color:transparent;}
.fs6_c00337{font-size:30.000000px;}
.fs0_c00337{font-size:36.000000px;}
.fs3_c00337{font-size:54.000000px;}
.fs2_c00337{font-size:60.000000px;}
.fs4_c00337{font-size:66.000000px;}
.fs5_c00337{font-size:72.000000px;}
.fs1_c00337{font-size:78.000000px;}
.y0_c00337{bottom:0.000000px;}
.y77_c00337{bottom:185.550000px;}
.y3e_c00337{bottom:187.200000px;}
.y76_c00337{bottom:199.650000px;}
.y3d_c00337{bottom:201.900000px;}
.y75_c00337{bottom:213.750000px;}
.y3c_c00337{bottom:214.950000px;}
.y74_c00337{bottom:227.850000px;}
.y3b_c00337{bottom:229.650000px;}
.y73_c00337{bottom:242.550000px;}
.y3a_c00337{bottom:243.750000px;}
.y72_c00337{bottom:256.650000px;}
.y39_c00337{bottom:257.850000px;}
.y71_c00337{bottom:270.300000px;}
.y38_c00337{bottom:271.500000px;}
.y70_c00337{bottom:284.400000px;}
.y37_c00337{bottom:284.700000px;}
.y36_c00337{bottom:298.800000px;}
.y6f_c00337{bottom:300.600000px;}
.y35_c00337{bottom:312.900000px;}
.y6e_c00337{bottom:313.200000px;}
.y34_c00337{bottom:327.000000px;}
.y6d_c00337{bottom:327.600000px;}
.y33_c00337{bottom:341.100000px;}
.y6c_c00337{bottom:342.000000px;}
.y32_c00337{bottom:355.500000px;}
.y6b_c00337{bottom:360.450000px;}
.y31_c00337{bottom:369.900000px;}
.y6a_c00337{bottom:374.850000px;}
.y30_c00337{bottom:384.000000px;}
.y69_c00337{bottom:389.250000px;}
.y2f_c00337{bottom:398.100000px;}
.y68_c00337{bottom:403.950000px;}
.y2e_c00337{bottom:412.200000px;}
.y67_c00337{bottom:417.600000px;}
.y2d_c00337{bottom:426.900000px;}
.y66_c00337{bottom:432.000000px;}
.y2c_c00337{bottom:441.300000px;}
.y65_c00337{bottom:446.400000px;}
.y2b_c00337{bottom:455.400000px;}
.y64_c00337{bottom:460.800000px;}
.y2a_c00337{bottom:470.100000px;}
.y63_c00337{bottom:475.500000px;}
.y29_c00337{bottom:484.200000px;}
.y62_c00337{bottom:489.600000px;}
.y28_c00337{bottom:498.600000px;}
.y61_c00337{bottom:504.300000px;}
.y27_c00337{bottom:512.700000px;}
.y60_c00337{bottom:526.350000px;}
.y26_c00337{bottom:526.650000px;}
.y25_c00337{bottom:541.050000px;}
.y5f_c00337{bottom:541.800000px;}
.y24_c00337{bottom:555.450000px;}
.y5e_c00337{bottom:556.950000px;}
.y5d_c00337{bottom:569.850000px;}
.y5c_c00337{bottom:585.000000px;}
.y1f_c00337{bottom:599.400000px;}
.y5b_c00337{bottom:600.150000px;}
.y5a_c00337{bottom:617.100000px;}
.y1e_c00337{bottom:619.500000px;}
.y59_c00337{bottom:632.550000px;}
.y1d_c00337{bottom:639.000000px;}
.y58_c00337{bottom:647.250000px;}
.y1c_c00337{bottom:661.050000px;}
.y57_c00337{bottom:662.700000px;}
.y56_c00337{bottom:674.700000px;}
.y1b_c00337{bottom:681.900000px;}
.y55_c00337{bottom:690.600000px;}
.y1a_c00337{bottom:699.150000px;}
.y54_c00337{bottom:705.300000px;}
.y19_c00337{bottom:717.150000px;}
.y53_c00337{bottom:721.800000px;}
.y18_c00337{bottom:734.850000px;}
.y52_c00337{bottom:738.300000px;}
.y17_c00337{bottom:752.100000px;}
.y51_c00337{bottom:752.700000px;}
.y50_c00337{bottom:767.100000px;}
.y16_c00337{bottom:769.800000px;}
.y4f_c00337{bottom:781.200000px;}
.y15_c00337{bottom:787.800000px;}
.y4e_c00337{bottom:795.600000px;}
.y14_c00337{bottom:805.500000px;}
.y4d_c00337{bottom:810.000000px;}
.y13_c00337{bottom:823.200000px;}
.y4c_c00337{bottom:824.400000px;}
.y12_c00337{bottom:840.900000px;}
.y4b_c00337{bottom:844.950000px;}
.y11_c00337{bottom:858.150000px;}
.y4a_c00337{bottom:862.200000px;}
.y10_c00337{bottom:876.150000px;}
.y49_c00337{bottom:876.600000px;}
.y48_c00337{bottom:891.750000px;}
.yf_c00337{bottom:893.850000px;}
.y47_c00337{bottom:903.750000px;}
.ye_c00337{bottom:911.850000px;}
.y46_c00337{bottom:919.950000px;}
.yd_c00337{bottom:929.550000px;}
.y45_c00337{bottom:934.350000px;}
.yc_c00337{bottom:947.550000px;}
.y44_c00337{bottom:949.050000px;}
.y43_c00337{bottom:962.700000px;}
.yb_c00337{bottom:965.250000px;}
.y42_c00337{bottom:976.800000px;}
.ya_c00337{bottom:982.950000px;}
.y41_c00337{bottom:991.200000px;}
.y9_c00337{bottom:1000.650000px;}
.y40_c00337{bottom:1005.600000px;}
.y8_c00337{bottom:1018.650000px;}
.y3f_c00337{bottom:1020.300000px;}
.y7_c00337{bottom:1036.350000px;}
.y23_c00337{bottom:1042.500000px;}
.y6_c00337{bottom:1054.050000px;}
.y22_c00337{bottom:1062.000000px;}
.y5_c00337{bottom:1072.050000px;}
.y21_c00337{bottom:1084.350000px;}
.y4_c00337{bottom:1091.550000px;}
.y3_c00337{bottom:1106.700000px;}
.y20_c00337{bottom:1112.700000px;}
.y1_c00337{bottom:1131.150000px;}
.y2_c00337{bottom:1137.300000px;}
.h8_c00337{height:30.000000px;}
.h2_c00337{height:36.000000px;}
.h5_c00337{height:54.000000px;}
.h4_c00337{height:60.000000px;}
.h6_c00337{height:66.000000px;}
.h7_c00337{height:72.000000px;}
.h3_c00337{height:78.000000px;}
.h0_c00337{height:1269.720063px;}
.h1_c00337{height:1269.750000px;}
.w0_c00337{width:960.480010px;}
.w1_c00337{width:960.750000px;}
.x0_c00337{left:0.000000px;}
.x1_c00337{left:200.100000px;}
.x7a_c00337{left:203.400000px;}
.x6c_c00337{left:204.900000px;}
.x94_c00337{left:206.100000px;}
.xa2_c00337{left:208.050000px;}
.x5a_c00337{left:215.100000px;}
.x9_c00337{left:216.150000px;}
.x3e_c00337{left:218.550000px;}
.x13_c00337{left:220.050000px;}
.x68_c00337{left:221.700000px;}
.x70_c00337{left:222.750000px;}
.x9a_c00337{left:224.400000px;}
.x9f_c00337{left:226.200000px;}
.xb6_c00337{left:227.250000px;}
.xb5_c00337{left:228.900000px;}
.xb1_c00337{left:230.850000px;}
.x95_c00337{left:234.600000px;}
.x61_c00337{left:235.800000px;}
.x8e_c00337{left:239.250000px;}
.x90_c00337{left:240.750000px;}
.x92_c00337{left:243.450000px;}
.x9d_c00337{left:245.250000px;}
.x43_c00337{left:248.400000px;}
.x38_c00337{left:250.050000px;}
.x47_c00337{left:251.100000px;}
.xa5_c00337{left:252.900000px;}
.x89_c00337{left:254.550000px;}
.x1f_c00337{left:257.700000px;}
.x64_c00337{left:259.800000px;}
.x3_c00337{left:261.300000px;}
.xa_c00337{left:262.650000px;}
.x79_c00337{left:263.850000px;}
.x51_c00337{left:265.050000px;}
.x73_c00337{left:266.700000px;}
.x9b_c00337{left:268.950000px;}
.x19_c00337{left:271.500000px;}
.xb_c00337{left:273.450000px;}
.x74_c00337{left:275.400000px;}
.x39_c00337{left:277.800000px;}
.x14_c00337{left:279.450000px;}
.xae_c00337{left:280.500000px;}
.x2a_c00337{left:281.700000px;}
.x30_c00337{left:283.350000px;}
.x24_c00337{left:286.050000px;}
.xe_c00337{left:288.750000px;}
.xac_c00337{left:290.250000px;}
.x52_c00337{left:292.350000px;}
.xa6_c00337{left:294.300000px;}
.x25_c00337{left:297.600000px;}
.xb7_c00337{left:299.400000px;}
.x8f_c00337{left:300.750000px;}
.x44_c00337{left:302.700000px;}
.x5b_c00337{left:304.050000px;}
.xa3_c00337{left:305.850000px;}
.x98_c00337{left:307.050000px;}
.x31_c00337{left:308.850000px;}
.x6d_c00337{left:310.950000px;}
.x45_c00337{left:312.000000px;}
.x20_c00337{left:314.250000px;}
.x56_c00337{left:316.950000px;}
.xc_c00337{left:318.450000px;}
.xa7_c00337{left:321.300000px;}
.x9e_c00337{left:322.650000px;}
.x8a_c00337{left:324.000000px;}
.xf_c00337{left:325.500000px;}
.xa9_c00337{left:328.350000px;}
.x32_c00337{left:330.750000px;}
.x4c_c00337{left:332.100000px;}
.xa0_c00337{left:333.150000px;}
.x3a_c00337{left:334.200000px;}
.x15_c00337{left:335.250000px;}
.x7b_c00337{left:336.900000px;}
.x21_c00337{left:339.450000px;}
.xaf_c00337{left:340.650000px;}
.x57_c00337{left:345.000000px;}
.x3f_c00337{left:346.050000px;}
.x4_c00337{left:349.800000px;}
.x1a_c00337{left:351.450000px;}
.x48_c00337{left:353.100000px;}
.x4d_c00337{left:355.800000px;}
.xa1_c00337{left:357.300000px;}
.x2b_c00337{left:360.900000px;}
.x3b_c00337{left:362.700000px;}
.x58_c00337{left:364.500000px;}
.xb2_c00337{left:365.850000px;}
.x16_c00337{left:367.650000px;}
.x69_c00337{left:369.600000px;}
.xd_c00337{left:370.950000px;}
.x5_c00337{left:372.900000px;}
.x10_c00337{left:376.650000px;}
.x26_c00337{left:378.900000px;}
.x17_c00337{left:380.550000px;}
.x67_c00337{left:382.950000px;}
.x91_c00337{left:384.450000px;}
.x49_c00337{left:387.000000px;}
.x75_c00337{left:388.350000px;}
.x33_c00337{left:389.400000px;}
.xb0_c00337{left:390.750000px;}
.x6e_c00337{left:393.000000px;}
.x53_c00337{left:396.150000px;}
.xaa_c00337{left:397.800000px;}
.x40_c00337{left:398.850000px;}
.x71_c00337{left:399.900000px;}
.x93_c00337{left:402.600000px;}
.x62_c00337{left:404.850000px;}
.x34_c00337{left:406.350000px;}
.x76_c00337{left:408.150000px;}
.x1b_c00337{left:409.800000px;}
.x2c_c00337{left:412.050000px;}
.x54_c00337{left:414.450000px;}
.x59_c00337{left:415.950000px;}
.xab_c00337{left:417.900000px;}
.x5c_c00337{left:419.250000px;}
.x27_c00337{left:420.300000px;}
.x8b_c00337{left:421.500000px;}
.x7c_c00337{left:423.600000px;}
.x3c_c00337{left:424.950000px;}
.x4e_c00337{left:427.350000px;}
.x1c_c00337{left:429.900000px;}
.x6_c00337{left:433.800000px;}
.x41_c00337{left:435.600000px;}
.x35_c00337{left:437.250000px;}
.x5e_c00337{left:439.050000px;}
.x8c_c00337{left:440.550000px;}
.xb3_c00337{left:441.750000px;}
.x77_c00337{left:443.850000px;}
.x22_c00337{left:445.950000px;}
.x2_c00337{left:447.750000px;}
.x3d_c00337{left:451.200000px;}
.x11_c00337{left:452.550000px;}
.x5d_c00337{left:454.200000px;}
.x4a_c00337{left:456.150000px;}
.x4f_c00337{left:457.950000px;}
.x18_c00337{left:459.000000px;}
.x6a_c00337{left:460.650000px;}
.x7d_c00337{left:462.900000px;}
.x1d_c00337{left:465.150000px;}
.xa8_c00337{left:466.350000px;}
.x2d_c00337{left:467.850000px;}
.xb8_c00337{left:468.900000px;}
.x65_c00337{left:470.250000px;}
.x42_c00337{left:471.300000px;}
.x23_c00337{left:473.250000px;}
.x5f_c00337{left:477.600000px;}
.xad_c00337{left:478.800000px;}
.x46_c00337{left:480.000000px;}
.x28_c00337{left:482.550000px;}
.x55_c00337{left:486.000000px;}
.x72_c00337{left:487.050000px;}
.x36_c00337{left:488.700000px;}
.x99_c00337{left:490.200000px;}
.x96_c00337{left:492.600000px;}
.x63_c00337{left:494.100000px;}
.x50_c00337{left:496.050000px;}
.xa4_c00337{left:499.500000px;}
.x7_c00337{left:501.900000px;}
.x78_c00337{left:502.950000px;}
.x37_c00337{left:506.700000px;}
.x1e_c00337{left:509.100000px;}
.x12_c00337{left:510.150000px;}
.x2e_c00337{left:511.350000px;}
.x8d_c00337{left:512.850000px;}
.x29_c00337{left:514.950000px;}
.x97_c00337{left:516.300000px;}
.x60_c00337{left:517.950000px;}
.x6f_c00337{left:519.000000px;}
.x6b_c00337{left:521.400000px;}
.x2f_c00337{left:524.250000px;}
.x8_c00337{left:526.050000px;}
.xb4_c00337{left:528.450000px;}
.x9c_c00337{left:530.100000px;}
.x4b_c00337{left:532.050000px;}
.x66_c00337{left:533.250000px;}
.x7f_c00337{left:556.200000px;}
.x101_c00337{left:557.250000px;}
.x11e_c00337{left:559.200000px;}
.x107_c00337{left:560.850000px;}
.x88_c00337{left:562.650000px;}
.x13d_c00337{left:569.100000px;}
.xb9_c00337{left:570.600000px;}
.xf3_c00337{left:571.650000px;}
.xf9_c00337{left:573.600000px;}
.xcd_c00337{left:576.600000px;}
.x10d_c00337{left:580.350000px;}
.x15d_c00337{left:581.850000px;}
.xd6_c00337{left:583.500000px;}
.x134_c00337{left:585.900000px;}
.x108_c00337{left:587.100000px;}
.x86_c00337{left:589.050000px;}
.xf4_c00337{left:590.400000px;}
.x11f_c00337{left:591.900000px;}
.x102_c00337{left:593.250000px;}
.x158_c00337{left:594.450000px;}
.x142_c00337{left:596.100000px;}
.x152_c00337{left:598.050000px;}
.xf0_c00337{left:599.700000px;}
.xfd_c00337{left:601.200000px;}
.x150_c00337{left:602.850000px;}
.xe4_c00337{left:604.350000px;}
.xc0_c00337{left:605.400000px;}
.x13e_c00337{left:606.600000px;}
.x137_c00337{left:609.150000px;}
.x115_c00337{left:610.650000px;}
.x109_c00337{left:612.000000px;}
.xe5_c00337{left:613.050000px;}
.x11b_c00337{left:614.250000px;}
.x116_c00337{left:619.350000px;}
.x10e_c00337{left:620.700000px;}
.x148_c00337{left:621.900000px;}
.x87_c00337{left:623.250000px;}
.xd7_c00337{left:624.900000px;}
.x120_c00337{left:627.900000px;}
.x13f_c00337{left:629.250000px;}
.xf5_c00337{left:630.750000px;}
.x153_c00337{left:632.550000px;}
.xce_c00337{left:633.900000px;}
.x7e_c00337{left:635.700000px;}
.xc8_c00337{left:637.500000px;}
.x11c_c00337{left:638.700000px;}
.x145_c00337{left:639.900000px;}
.xfa_c00337{left:641.400000px;}
.x117_c00337{left:642.750000px;}
.xba_c00337{left:644.100000px;}
.xea_c00337{left:645.150000px;}
.xde_c00337{left:646.350000px;}
.x155_c00337{left:647.550000px;}
.x80_c00337{left:650.550000px;}
.x125_c00337{left:652.650000px;}
.xe6_c00337{left:654.150000px;}
.x135_c00337{left:656.400000px;}
.xbb_c00337{left:658.800000px;}
.x81_c00337{left:661.050000px;}
.xeb_c00337{left:662.100000px;}
.xd8_c00337{left:664.050000px;}
.xf1_c00337{left:666.300000px;}
.x103_c00337{left:668.850000px;}
.xe7_c00337{left:670.350000px;}
.x121_c00337{left:673.500000px;}
.x14a_c00337{left:675.150000px;}
.x10a_c00337{left:676.500000px;}
.xc1_c00337{left:678.450000px;}
.x12d_c00337{left:680.550000px;}
.x126_c00337{left:682.200000px;}
.xcf_c00337{left:683.550000px;}
.x118_c00337{left:684.900000px;}
.x15a_c00337{left:687.000000px;}
.xf2_c00337{left:688.200000px;}
.xdf_c00337{left:689.850000px;}
.x12e_c00337{left:692.400000px;}
.xc2_c00337{left:694.350000px;}
.xf6_c00337{left:695.550000px;}
.x136_c00337{left:698.100000px;}
.xc9_c00337{left:700.800000px;}
.x122_c00337{left:702.000000px;}
.xd9_c00337{left:708.000000px;}
.x82_c00337{left:709.350000px;}
.xec_c00337{left:711.000000px;}
.x143_c00337{left:712.050000px;}
.xe0_c00337{left:714.750000px;}
.xca_c00337{left:715.950000px;}
.xc3_c00337{left:718.050000px;}
.xd0_c00337{left:719.850000px;}
.xbc_c00337{left:722.100000px;}
.x13b_c00337{left:725.400000px;}
.x15b_c00337{left:727.650000px;}
.x123_c00337{left:730.500000px;}
.xfb_c00337{left:732.450000px;}
.x13c_c00337{left:734.400000px;}
.x10f_c00337{left:736.350000px;}
.x131_c00337{left:739.500000px;}
.xf7_c00337{left:741.600000px;}
.x139_c00337{left:743.700000px;}
.x112_c00337{left:745.350000px;}
.xda_c00337{left:746.550000px;}
.x10b_c00337{left:748.500000px;}
.xcb_c00337{left:750.450000px;}
.x157_c00337{left:752.850000px;}
.xdb_c00337{left:754.050000px;}
.x149_c00337{left:755.850000px;}
.x119_c00337{left:757.650000px;}
.x132_c00337{left:759.000000px;}
.x104_c00337{left:760.200000px;}
.xc4_c00337{left:761.250000px;}
.x83_c00337{left:763.350000px;}
.x13a_c00337{left:765.000000px;}
.xd1_c00337{left:766.650000px;}
.xbd_c00337{left:767.850000px;}
.xfe_c00337{left:769.050000px;}
.x127_c00337{left:770.700000px;}
.xf8_c00337{left:772.200000px;}
.xff_c00337{left:778.350000px;}
.x110_c00337{left:781.050000px;}
.xe1_c00337{left:782.400000px;}
.x14d_c00337{left:783.600000px;}
.xdc_c00337{left:784.950000px;}
.xd2_c00337{left:787.200000px;}
.x100_c00337{left:791.250000px;}
.xc5_c00337{left:792.600000px;}
.x156_c00337{left:795.450000px;}
.x124_c00337{left:797.850000px;}
.xed_c00337{left:799.500000px;}
.x146_c00337{left:804.750000px;}
.xfc_c00337{left:807.750000px;}
.xdd_c00337{left:809.400000px;}
.x11d_c00337{left:810.450000px;}
.x84_c00337{left:811.950000px;}
.x111_c00337{left:813.750000px;}
.x140_c00337{left:816.450000px;}
.x105_c00337{left:817.500000px;}
.x128_c00337{left:819.300000px;}
.x12b_c00337{left:821.400000px;}
.x151_c00337{left:823.650000px;}
.x138_c00337{left:824.700000px;}
.x113_c00337{left:827.100000px;}
.xe2_c00337{left:829.200000px;}
.xd3_c00337{left:830.400000px;}
.x12f_c00337{left:831.900000px;}
.xbe_c00337{left:832.950000px;}
.x15e_c00337{left:834.450000px;}
.xcc_c00337{left:837.900000px;}
.x154_c00337{left:839.550000px;}
.xe8_c00337{left:841.350000px;}
.x114_c00337{left:843.300000px;}
.x14b_c00337{left:844.350000px;}
.xc6_c00337{left:846.300000px;}
.x12c_c00337{left:847.650000px;}
.x14e_c00337{left:848.850000px;}
.x144_c00337{left:851.550000px;}
.xe3_c00337{left:853.350000px;}
.xd4_c00337{left:854.550000px;}
.x14f_c00337{left:856.350000px;}
.xee_c00337{left:858.150000px;}
.x129_c00337{left:859.200000px;}
.x15c_c00337{left:860.400000px;}
.x85_c00337{left:861.600000px;}
.x130_c00337{left:862.650000px;}
.x106_c00337{left:864.000000px;}
.x133_c00337{left:867.150000px;}
.xc7_c00337{left:868.650000px;}
.xe9_c00337{left:869.850000px;}
.x10c_c00337{left:872.700000px;}
.xd5_c00337{left:874.050000px;}
.xef_c00337{left:876.900000px;}
.x141_c00337{left:879.150000px;}
.x11a_c00337{left:880.350000px;}
.xbf_c00337{left:882.300000px;}
.x15f_c00337{left:883.350000px;}
.x12a_c00337{left:885.900000px;}
.x14c_c00337{left:888.600000px;}
.x159_c00337{left:891.900000px;}
.x147_c00337{left:893.250000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ws9_c00337{word-spacing:-9.824561pt;}
.wsd_c00337{word-spacing:-8.926554pt;}
.ws7_c00337{word-spacing:-8.654971pt;}
.ws1_c00337{word-spacing:-6.361266pt;}
.wsa_c00337{word-spacing:-6.274510pt;}
.ws2_c00337{word-spacing:-6.085890pt;}
.ws6_c00337{word-spacing:-5.714286pt;}
.wsb_c00337{word-spacing:-3.611111pt;}
.wsc_c00337{word-spacing:-3.006536pt;}
.wse_c00337{word-spacing:0.000000pt;}
.ws8_c00337{word-spacing:1.481481pt;}
.ws4_c00337{word-spacing:2.156903pt;}
.ws0_c00337{word-spacing:6.153846pt;}
.ws3_c00337{word-spacing:7.435897pt;}
.ws5_c00337{word-spacing:11.128262pt;}
.fs6_c00337{font-size:26.666667pt;}
.fs0_c00337{font-size:32.000000pt;}
.fs3_c00337{font-size:48.000000pt;}
.fs2_c00337{font-size:53.333333pt;}
.fs4_c00337{font-size:58.666667pt;}
.fs5_c00337{font-size:64.000000pt;}
.fs1_c00337{font-size:69.333333pt;}
.y0_c00337{bottom:0.000000pt;}
.y77_c00337{bottom:164.933333pt;}
.y3e_c00337{bottom:166.400000pt;}
.y76_c00337{bottom:177.466667pt;}
.y3d_c00337{bottom:179.466667pt;}
.y75_c00337{bottom:190.000000pt;}
.y3c_c00337{bottom:191.066667pt;}
.y74_c00337{bottom:202.533333pt;}
.y3b_c00337{bottom:204.133333pt;}
.y73_c00337{bottom:215.600000pt;}
.y3a_c00337{bottom:216.666667pt;}
.y72_c00337{bottom:228.133333pt;}
.y39_c00337{bottom:229.200000pt;}
.y71_c00337{bottom:240.266667pt;}
.y38_c00337{bottom:241.333333pt;}
.y70_c00337{bottom:252.800000pt;}
.y37_c00337{bottom:253.066667pt;}
.y36_c00337{bottom:265.600000pt;}
.y6f_c00337{bottom:267.200000pt;}
.y35_c00337{bottom:278.133333pt;}
.y6e_c00337{bottom:278.400000pt;}
.y34_c00337{bottom:290.666667pt;}
.y6d_c00337{bottom:291.200000pt;}
.y33_c00337{bottom:303.200000pt;}
.y6c_c00337{bottom:304.000000pt;}
.y32_c00337{bottom:316.000000pt;}
.y6b_c00337{bottom:320.400000pt;}
.y31_c00337{bottom:328.800000pt;}
.y6a_c00337{bottom:333.200000pt;}
.y30_c00337{bottom:341.333333pt;}
.y69_c00337{bottom:346.000000pt;}
.y2f_c00337{bottom:353.866667pt;}
.y68_c00337{bottom:359.066667pt;}
.y2e_c00337{bottom:366.400000pt;}
.y67_c00337{bottom:371.200000pt;}
.y2d_c00337{bottom:379.466667pt;}
.y66_c00337{bottom:384.000000pt;}
.y2c_c00337{bottom:392.266667pt;}
.y65_c00337{bottom:396.800000pt;}
.y2b_c00337{bottom:404.800000pt;}
.y64_c00337{bottom:409.600000pt;}
.y2a_c00337{bottom:417.866667pt;}
.y63_c00337{bottom:422.666667pt;}
.y29_c00337{bottom:430.400000pt;}
.y62_c00337{bottom:435.200000pt;}
.y28_c00337{bottom:443.200000pt;}
.y61_c00337{bottom:448.266667pt;}
.y27_c00337{bottom:455.733333pt;}
.y60_c00337{bottom:467.866667pt;}
.y26_c00337{bottom:468.133333pt;}
.y25_c00337{bottom:480.933333pt;}
.y5f_c00337{bottom:481.600000pt;}
.y24_c00337{bottom:493.733333pt;}
.y5e_c00337{bottom:495.066667pt;}
.y5d_c00337{bottom:506.533333pt;}
.y5c_c00337{bottom:520.000000pt;}
.y1f_c00337{bottom:532.800000pt;}
.y5b_c00337{bottom:533.466667pt;}
.y5a_c00337{bottom:548.533333pt;}
.y1e_c00337{bottom:550.666667pt;}
.y59_c00337{bottom:562.266667pt;}
.y1d_c00337{bottom:568.000000pt;}
.y58_c00337{bottom:575.333333pt;}
.y1c_c00337{bottom:587.600000pt;}
.y57_c00337{bottom:589.066667pt;}
.y56_c00337{bottom:599.733333pt;}
.y1b_c00337{bottom:606.133333pt;}
.y55_c00337{bottom:613.866667pt;}
.y1a_c00337{bottom:621.466667pt;}
.y54_c00337{bottom:626.933333pt;}
.y19_c00337{bottom:637.466667pt;}
.y53_c00337{bottom:641.600000pt;}
.y18_c00337{bottom:653.200000pt;}
.y52_c00337{bottom:656.266667pt;}
.y17_c00337{bottom:668.533333pt;}
.y51_c00337{bottom:669.066667pt;}
.y50_c00337{bottom:681.866667pt;}
.y16_c00337{bottom:684.266667pt;}
.y4f_c00337{bottom:694.400000pt;}
.y15_c00337{bottom:700.266667pt;}
.y4e_c00337{bottom:707.200000pt;}
.y14_c00337{bottom:716.000000pt;}
.y4d_c00337{bottom:720.000000pt;}
.y13_c00337{bottom:731.733333pt;}
.y4c_c00337{bottom:732.800000pt;}
.y12_c00337{bottom:747.466667pt;}
.y4b_c00337{bottom:751.066667pt;}
.y11_c00337{bottom:762.800000pt;}
.y4a_c00337{bottom:766.400000pt;}
.y10_c00337{bottom:778.800000pt;}
.y49_c00337{bottom:779.200000pt;}
.y48_c00337{bottom:792.666667pt;}
.yf_c00337{bottom:794.533333pt;}
.y47_c00337{bottom:803.333333pt;}
.ye_c00337{bottom:810.533333pt;}
.y46_c00337{bottom:817.733333pt;}
.yd_c00337{bottom:826.266667pt;}
.y45_c00337{bottom:830.533333pt;}
.yc_c00337{bottom:842.266667pt;}
.y44_c00337{bottom:843.600000pt;}
.y43_c00337{bottom:855.733333pt;}
.yb_c00337{bottom:858.000000pt;}
.y42_c00337{bottom:868.266667pt;}
.ya_c00337{bottom:873.733333pt;}
.y41_c00337{bottom:881.066667pt;}
.y9_c00337{bottom:889.466667pt;}
.y40_c00337{bottom:893.866667pt;}
.y8_c00337{bottom:905.466667pt;}
.y3f_c00337{bottom:906.933333pt;}
.y7_c00337{bottom:921.200000pt;}
.y23_c00337{bottom:926.666667pt;}
.y6_c00337{bottom:936.933333pt;}
.y22_c00337{bottom:944.000000pt;}
.y5_c00337{bottom:952.933333pt;}
.y21_c00337{bottom:963.866667pt;}
.y4_c00337{bottom:970.266667pt;}
.y3_c00337{bottom:983.733333pt;}
.y20_c00337{bottom:989.066667pt;}
.y1_c00337{bottom:1005.466667pt;}
.y2_c00337{bottom:1010.933333pt;}
.h8_c00337{height:26.666667pt;}
.h2_c00337{height:32.000000pt;}
.h5_c00337{height:48.000000pt;}
.h4_c00337{height:53.333333pt;}
.h6_c00337{height:58.666667pt;}
.h7_c00337{height:64.000000pt;}
.h3_c00337{height:69.333333pt;}
.h0_c00337{height:1128.640056pt;}
.h1_c00337{height:1128.666667pt;}
.w0_c00337{width:853.760009pt;}
.w1_c00337{width:854.000000pt;}
.x0_c00337{left:0.000000pt;}
.x1_c00337{left:177.866667pt;}
.x7a_c00337{left:180.800000pt;}
.x6c_c00337{left:182.133333pt;}
.x94_c00337{left:183.200000pt;}
.xa2_c00337{left:184.933333pt;}
.x5a_c00337{left:191.200000pt;}
.x9_c00337{left:192.133333pt;}
.x3e_c00337{left:194.266667pt;}
.x13_c00337{left:195.600000pt;}
.x68_c00337{left:197.066667pt;}
.x70_c00337{left:198.000000pt;}
.x9a_c00337{left:199.466667pt;}
.x9f_c00337{left:201.066667pt;}
.xb6_c00337{left:202.000000pt;}
.xb5_c00337{left:203.466667pt;}
.xb1_c00337{left:205.200000pt;}
.x95_c00337{left:208.533333pt;}
.x61_c00337{left:209.600000pt;}
.x8e_c00337{left:212.666667pt;}
.x90_c00337{left:214.000000pt;}
.x92_c00337{left:216.400000pt;}
.x9d_c00337{left:218.000000pt;}
.x43_c00337{left:220.800000pt;}
.x38_c00337{left:222.266667pt;}
.x47_c00337{left:223.200000pt;}
.xa5_c00337{left:224.800000pt;}
.x89_c00337{left:226.266667pt;}
.x1f_c00337{left:229.066667pt;}
.x64_c00337{left:230.933333pt;}
.x3_c00337{left:232.266667pt;}
.xa_c00337{left:233.466667pt;}
.x79_c00337{left:234.533333pt;}
.x51_c00337{left:235.600000pt;}
.x73_c00337{left:237.066667pt;}
.x9b_c00337{left:239.066667pt;}
.x19_c00337{left:241.333333pt;}
.xb_c00337{left:243.066667pt;}
.x74_c00337{left:244.800000pt;}
.x39_c00337{left:246.933333pt;}
.x14_c00337{left:248.400000pt;}
.xae_c00337{left:249.333333pt;}
.x2a_c00337{left:250.400000pt;}
.x30_c00337{left:251.866667pt;}
.x24_c00337{left:254.266667pt;}
.xe_c00337{left:256.666667pt;}
.xac_c00337{left:258.000000pt;}
.x52_c00337{left:259.866667pt;}
.xa6_c00337{left:261.600000pt;}
.x25_c00337{left:264.533333pt;}
.xb7_c00337{left:266.133333pt;}
.x8f_c00337{left:267.333333pt;}
.x44_c00337{left:269.066667pt;}
.x5b_c00337{left:270.266667pt;}
.xa3_c00337{left:271.866667pt;}
.x98_c00337{left:272.933333pt;}
.x31_c00337{left:274.533333pt;}
.x6d_c00337{left:276.400000pt;}
.x45_c00337{left:277.333333pt;}
.x20_c00337{left:279.333333pt;}
.x56_c00337{left:281.733333pt;}
.xc_c00337{left:283.066667pt;}
.xa7_c00337{left:285.600000pt;}
.x9e_c00337{left:286.800000pt;}
.x8a_c00337{left:288.000000pt;}
.xf_c00337{left:289.333333pt;}
.xa9_c00337{left:291.866667pt;}
.x32_c00337{left:294.000000pt;}
.x4c_c00337{left:295.200000pt;}
.xa0_c00337{left:296.133333pt;}
.x3a_c00337{left:297.066667pt;}
.x15_c00337{left:298.000000pt;}
.x7b_c00337{left:299.466667pt;}
.x21_c00337{left:301.733333pt;}
.xaf_c00337{left:302.800000pt;}
.x57_c00337{left:306.666667pt;}
.x3f_c00337{left:307.600000pt;}
.x4_c00337{left:310.933333pt;}
.x1a_c00337{left:312.400000pt;}
.x48_c00337{left:313.866667pt;}
.x4d_c00337{left:316.266667pt;}
.xa1_c00337{left:317.600000pt;}
.x2b_c00337{left:320.800000pt;}
.x3b_c00337{left:322.400000pt;}
.x58_c00337{left:324.000000pt;}
.xb2_c00337{left:325.200000pt;}
.x16_c00337{left:326.800000pt;}
.x69_c00337{left:328.533333pt;}
.xd_c00337{left:329.733333pt;}
.x5_c00337{left:331.466667pt;}
.x10_c00337{left:334.800000pt;}
.x26_c00337{left:336.800000pt;}
.x17_c00337{left:338.266667pt;}
.x67_c00337{left:340.400000pt;}
.x91_c00337{left:341.733333pt;}
.x49_c00337{left:344.000000pt;}
.x75_c00337{left:345.200000pt;}
.x33_c00337{left:346.133333pt;}
.xb0_c00337{left:347.333333pt;}
.x6e_c00337{left:349.333333pt;}
.x53_c00337{left:352.133333pt;}
.xaa_c00337{left:353.600000pt;}
.x40_c00337{left:354.533333pt;}
.x71_c00337{left:355.466667pt;}
.x93_c00337{left:357.866667pt;}
.x62_c00337{left:359.866667pt;}
.x34_c00337{left:361.200000pt;}
.x76_c00337{left:362.800000pt;}
.x1b_c00337{left:364.266667pt;}
.x2c_c00337{left:366.266667pt;}
.x54_c00337{left:368.400000pt;}
.x59_c00337{left:369.733333pt;}
.xab_c00337{left:371.466667pt;}
.x5c_c00337{left:372.666667pt;}
.x27_c00337{left:373.600000pt;}
.x8b_c00337{left:374.666667pt;}
.x7c_c00337{left:376.533333pt;}
.x3c_c00337{left:377.733333pt;}
.x4e_c00337{left:379.866667pt;}
.x1c_c00337{left:382.133333pt;}
.x6_c00337{left:385.600000pt;}
.x41_c00337{left:387.200000pt;}
.x35_c00337{left:388.666667pt;}
.x5e_c00337{left:390.266667pt;}
.x8c_c00337{left:391.600000pt;}
.xb3_c00337{left:392.666667pt;}
.x77_c00337{left:394.533333pt;}
.x22_c00337{left:396.400000pt;}
.x2_c00337{left:398.000000pt;}
.x3d_c00337{left:401.066667pt;}
.x11_c00337{left:402.266667pt;}
.x5d_c00337{left:403.733333pt;}
.x4a_c00337{left:405.466667pt;}
.x4f_c00337{left:407.066667pt;}
.x18_c00337{left:408.000000pt;}
.x6a_c00337{left:409.466667pt;}
.x7d_c00337{left:411.466667pt;}
.x1d_c00337{left:413.466667pt;}
.xa8_c00337{left:414.533333pt;}
.x2d_c00337{left:415.866667pt;}
.xb8_c00337{left:416.800000pt;}
.x65_c00337{left:418.000000pt;}
.x42_c00337{left:418.933333pt;}
.x23_c00337{left:420.666667pt;}
.x5f_c00337{left:424.533333pt;}
.xad_c00337{left:425.600000pt;}
.x46_c00337{left:426.666667pt;}
.x28_c00337{left:428.933333pt;}
.x55_c00337{left:432.000000pt;}
.x72_c00337{left:432.933333pt;}
.x36_c00337{left:434.400000pt;}
.x99_c00337{left:435.733333pt;}
.x96_c00337{left:437.866667pt;}
.x63_c00337{left:439.200000pt;}
.x50_c00337{left:440.933333pt;}
.xa4_c00337{left:444.000000pt;}
.x7_c00337{left:446.133333pt;}
.x78_c00337{left:447.066667pt;}
.x37_c00337{left:450.400000pt;}
.x1e_c00337{left:452.533333pt;}
.x12_c00337{left:453.466667pt;}
.x2e_c00337{left:454.533333pt;}
.x8d_c00337{left:455.866667pt;}
.x29_c00337{left:457.733333pt;}
.x97_c00337{left:458.933333pt;}
.x60_c00337{left:460.400000pt;}
.x6f_c00337{left:461.333333pt;}
.x6b_c00337{left:463.466667pt;}
.x2f_c00337{left:466.000000pt;}
.x8_c00337{left:467.600000pt;}
.xb4_c00337{left:469.733333pt;}
.x9c_c00337{left:471.200000pt;}
.x4b_c00337{left:472.933333pt;}
.x66_c00337{left:474.000000pt;}
.x7f_c00337{left:494.400000pt;}
.x101_c00337{left:495.333333pt;}
.x11e_c00337{left:497.066667pt;}
.x107_c00337{left:498.533333pt;}
.x88_c00337{left:500.133333pt;}
.x13d_c00337{left:505.866667pt;}
.xb9_c00337{left:507.200000pt;}
.xf3_c00337{left:508.133333pt;}
.xf9_c00337{left:509.866667pt;}
.xcd_c00337{left:512.533333pt;}
.x10d_c00337{left:515.866667pt;}
.x15d_c00337{left:517.200000pt;}
.xd6_c00337{left:518.666667pt;}
.x134_c00337{left:520.800000pt;}
.x108_c00337{left:521.866667pt;}
.x86_c00337{left:523.600000pt;}
.xf4_c00337{left:524.800000pt;}
.x11f_c00337{left:526.133333pt;}
.x102_c00337{left:527.333333pt;}
.x158_c00337{left:528.400000pt;}
.x142_c00337{left:529.866667pt;}
.x152_c00337{left:531.600000pt;}
.xf0_c00337{left:533.066667pt;}
.xfd_c00337{left:534.400000pt;}
.x150_c00337{left:535.866667pt;}
.xe4_c00337{left:537.200000pt;}
.xc0_c00337{left:538.133333pt;}
.x13e_c00337{left:539.200000pt;}
.x137_c00337{left:541.466667pt;}
.x115_c00337{left:542.800000pt;}
.x109_c00337{left:544.000000pt;}
.xe5_c00337{left:544.933333pt;}
.x11b_c00337{left:546.000000pt;}
.x116_c00337{left:550.533333pt;}
.x10e_c00337{left:551.733333pt;}
.x148_c00337{left:552.800000pt;}
.x87_c00337{left:554.000000pt;}
.xd7_c00337{left:555.466667pt;}
.x120_c00337{left:558.133333pt;}
.x13f_c00337{left:559.333333pt;}
.xf5_c00337{left:560.666667pt;}
.x153_c00337{left:562.266667pt;}
.xce_c00337{left:563.466667pt;}
.x7e_c00337{left:565.066667pt;}
.xc8_c00337{left:566.666667pt;}
.x11c_c00337{left:567.733333pt;}
.x145_c00337{left:568.800000pt;}
.xfa_c00337{left:570.133333pt;}
.x117_c00337{left:571.333333pt;}
.xba_c00337{left:572.533333pt;}
.xea_c00337{left:573.466667pt;}
.xde_c00337{left:574.533333pt;}
.x155_c00337{left:575.600000pt;}
.x80_c00337{left:578.266667pt;}
.x125_c00337{left:580.133333pt;}
.xe6_c00337{left:581.466667pt;}
.x135_c00337{left:583.466667pt;}
.xbb_c00337{left:585.600000pt;}
.x81_c00337{left:587.600000pt;}
.xeb_c00337{left:588.533333pt;}
.xd8_c00337{left:590.266667pt;}
.xf1_c00337{left:592.266667pt;}
.x103_c00337{left:594.533333pt;}
.xe7_c00337{left:595.866667pt;}
.x121_c00337{left:598.666667pt;}
.x14a_c00337{left:600.133333pt;}
.x10a_c00337{left:601.333333pt;}
.xc1_c00337{left:603.066667pt;}
.x12d_c00337{left:604.933333pt;}
.x126_c00337{left:606.400000pt;}
.xcf_c00337{left:607.600000pt;}
.x118_c00337{left:608.800000pt;}
.x15a_c00337{left:610.666667pt;}
.xf2_c00337{left:611.733333pt;}
.xdf_c00337{left:613.200000pt;}
.x12e_c00337{left:615.466667pt;}
.xc2_c00337{left:617.200000pt;}
.xf6_c00337{left:618.266667pt;}
.x136_c00337{left:620.533333pt;}
.xc9_c00337{left:622.933333pt;}
.x122_c00337{left:624.000000pt;}
.xd9_c00337{left:629.333333pt;}
.x82_c00337{left:630.533333pt;}
.xec_c00337{left:632.000000pt;}
.x143_c00337{left:632.933333pt;}
.xe0_c00337{left:635.333333pt;}
.xca_c00337{left:636.400000pt;}
.xc3_c00337{left:638.266667pt;}
.xd0_c00337{left:639.866667pt;}
.xbc_c00337{left:641.866667pt;}
.x13b_c00337{left:644.800000pt;}
.x15b_c00337{left:646.800000pt;}
.x123_c00337{left:649.333333pt;}
.xfb_c00337{left:651.066667pt;}
.x13c_c00337{left:652.800000pt;}
.x10f_c00337{left:654.533333pt;}
.x131_c00337{left:657.333333pt;}
.xf7_c00337{left:659.200000pt;}
.x139_c00337{left:661.066667pt;}
.x112_c00337{left:662.533333pt;}
.xda_c00337{left:663.600000pt;}
.x10b_c00337{left:665.333333pt;}
.xcb_c00337{left:667.066667pt;}
.x157_c00337{left:669.200000pt;}
.xdb_c00337{left:670.266667pt;}
.x149_c00337{left:671.866667pt;}
.x119_c00337{left:673.466667pt;}
.x132_c00337{left:674.666667pt;}
.x104_c00337{left:675.733333pt;}
.xc4_c00337{left:676.666667pt;}
.x83_c00337{left:678.533333pt;}
.x13a_c00337{left:680.000000pt;}
.xd1_c00337{left:681.466667pt;}
.xbd_c00337{left:682.533333pt;}
.xfe_c00337{left:683.600000pt;}
.x127_c00337{left:685.066667pt;}
.xf8_c00337{left:686.400000pt;}
.xff_c00337{left:691.866667pt;}
.x110_c00337{left:694.266667pt;}
.xe1_c00337{left:695.466667pt;}
.x14d_c00337{left:696.533333pt;}
.xdc_c00337{left:697.733333pt;}
.xd2_c00337{left:699.733333pt;}
.x100_c00337{left:703.333333pt;}
.xc5_c00337{left:704.533333pt;}
.x156_c00337{left:707.066667pt;}
.x124_c00337{left:709.200000pt;}
.xed_c00337{left:710.666667pt;}
.x146_c00337{left:715.333333pt;}
.xfc_c00337{left:718.000000pt;}
.xdd_c00337{left:719.466667pt;}
.x11d_c00337{left:720.400000pt;}
.x84_c00337{left:721.733333pt;}
.x111_c00337{left:723.333333pt;}
.x140_c00337{left:725.733333pt;}
.x105_c00337{left:726.666667pt;}
.x128_c00337{left:728.266667pt;}
.x12b_c00337{left:730.133333pt;}
.x151_c00337{left:732.133333pt;}
.x138_c00337{left:733.066667pt;}
.x113_c00337{left:735.200000pt;}
.xe2_c00337{left:737.066667pt;}
.xd3_c00337{left:738.133333pt;}
.x12f_c00337{left:739.466667pt;}
.xbe_c00337{left:740.400000pt;}
.x15e_c00337{left:741.733333pt;}
.xcc_c00337{left:744.800000pt;}
.x154_c00337{left:746.266667pt;}
.xe8_c00337{left:747.866667pt;}
.x114_c00337{left:749.600000pt;}
.x14b_c00337{left:750.533333pt;}
.xc6_c00337{left:752.266667pt;}
.x12c_c00337{left:753.466667pt;}
.x14e_c00337{left:754.533333pt;}
.x144_c00337{left:756.933333pt;}
.xe3_c00337{left:758.533333pt;}
.xd4_c00337{left:759.600000pt;}
.x14f_c00337{left:761.200000pt;}
.xee_c00337{left:762.800000pt;}
.x129_c00337{left:763.733333pt;}
.x15c_c00337{left:764.800000pt;}
.x85_c00337{left:765.866667pt;}
.x130_c00337{left:766.800000pt;}
.x106_c00337{left:768.000000pt;}
.x133_c00337{left:770.800000pt;}
.xc7_c00337{left:772.133333pt;}
.xe9_c00337{left:773.200000pt;}
.x10c_c00337{left:775.733333pt;}
.xd5_c00337{left:776.933333pt;}
.xef_c00337{left:779.466667pt;}
.x141_c00337{left:781.466667pt;}
.x11a_c00337{left:782.533333pt;}
.xbf_c00337{left:784.266667pt;}
.x15f_c00337{left:785.200000pt;}
.x12a_c00337{left:787.466667pt;}
.x14c_c00337{left:789.866667pt;}
.x159_c00337{left:792.800000pt;}
.x147_c00337{left:794.000000pt;}
}





/* 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_c00338 {
    display:none;
  }
  .loading-indicator_c00338.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00338 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_c00338 { 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_c00338" -> "#page-container .classname_c00338")
 */
.pf_c00338 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00338 { /* 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_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00338 { /* 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_c00338 { /* 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_c00338 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00338 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00338 {overflow:visible;}
  }
}
.c_c00338 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00338 { /* 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_c00338:after { /* webkit #35443 */
  content: '';
}
.t_c00338:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00338 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 */
}
.__c00338 { /* 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_c00338 { /* info for Javascript */
  display:none;
}
.l_c00338 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00338 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00338 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00338: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_c00338 {
    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_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00338.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_c00338 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00338;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.000000;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;}
.m31_c00338{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mda_c00338{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mac_c00338{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m13_c00338{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m96_c00338{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.md9_c00338{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m0_c00338{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.m104_c00338{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m119_c00338{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.mc_c00338{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m11_c00338{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00338{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00338{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00338{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00338{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00338{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00338{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00338{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m107_c00338{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00338{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m112_c00338{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m35_c00338{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00338{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m127_c00338{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00338{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00338{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00338{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m92_c00338{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00338{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m25_c00338{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m89_c00338{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me_c00338{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.md_c00338{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m45_c00338{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m17_c00338{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00338{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.md6_c00338{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00338{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m22_c00338{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m26_c00338{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00338{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m86_c00338{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00338{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00338{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mea_c00338{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m37_c00338{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m129_c00338{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m77_c00338{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m38_c00338{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m23_c00338{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m84_c00338{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m110_c00338{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m72_c00338{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00338{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00338{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m78_c00338{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.me2_c00338{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md4_c00338{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m111_c00338{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00338{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00338{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00338{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf_c00338{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m53_c00338{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00338{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00338{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m134_c00338{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m40_c00338{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00338{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00338{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mec_c00338{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m33_c00338{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m126_c00338{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00338{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m27_c00338{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m29_c00338{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00338{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00338{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00338{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00338{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m121_c00338{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mb_c00338{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00338{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00338{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00338{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me7_c00338{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00338{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m34_c00338{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me3_c00338{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00338{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00338{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m123_c00338{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00338{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m117_c00338{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md3_c00338{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m101_c00338{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me0_c00338{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m56_c00338{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m124_c00338{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m42_c00338{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m28_c00338{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00338{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m68_c00338{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00338{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00338{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mde_c00338{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.maa_c00338{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00338{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00338{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mff_c00338{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m41_c00338{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00338{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00338{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00338{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00338{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00338{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.md8_c00338{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m95_c00338{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m24_c00338{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.med_c00338{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00338{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m135_c00338{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m32_c00338{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mae_c00338{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.me6_c00338{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00338{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00338{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00338{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00338{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00338{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00338{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m108_c00338{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m30_c00338{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m52_c00338{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m113_c00338{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m132_c00338{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m114_c00338{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00338{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.meb_c00338{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m100_c00338{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me4_c00338{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00338{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00338{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00338{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mab_c00338{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m125_c00338{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m44_c00338{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00338{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md7_c00338{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00338{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m103_c00338{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00338{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m120_c00338{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00338{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00338{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m59_c00338{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m82_c00338{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00338{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m16_c00338{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m115_c00338{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00338{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m80_c00338{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m85_c00338{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00338{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00338{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00338{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m21_c00338{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m79_c00338{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m20_c00338{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mad_c00338{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00338{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00338{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00338{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8_c00338{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me1_c00338{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00338{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00338{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00338{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m138_c00338{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00338{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m69_c00338{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.me9_c00338{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m81_c00338{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m73_c00338{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.md5_c00338{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m98_c00338{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mee_c00338{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m83_c00338{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m88_c00338{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m118_c00338{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00338{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.maf_c00338{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00338{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4_c00338{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m43_c00338{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m60_c00338{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00338{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00338{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00338{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00338{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00338{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00338{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00338{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m51_c00338{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00338{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m116_c00338{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7_c00338{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m93_c00338{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m136_c00338{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma_c00338{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m67_c00338{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m36_c00338{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00338{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00338{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00338{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00338{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00338{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md1_c00338{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m54_c00338{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m128_c00338{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m87_c00338{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m62_c00338{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m66_c00338{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mef_c00338{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00338{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m91_c00338{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00338{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00338{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00338{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m12_c00338{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mba_c00338{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00338{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.md2_c00338{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m65_c00338{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6_c00338{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00338{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00338{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m74_c00338{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m90_c00338{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m131_c00338{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m48_c00338{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m14_c00338{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m46_c00338{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m75_c00338{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me5_c00338{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00338{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m58_c00338{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m63_c00338{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00338{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m70_c00338{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m133_c00338{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m71_c00338{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m109_c00338{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00338{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);}
.ma8_c00338{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m61_c00338{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00338{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00338{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00338{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00338{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00338{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00338{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m76_c00338{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m64_c00338{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00338{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m39_c00338{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m47_c00338{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00338{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00338{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m55_c00338{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00338{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00338{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m99_c00338{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9_c00338{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00338{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00338{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00338{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m102_c00338{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m122_c00338{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00338{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m57_c00338{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00338{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00338{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mce_c00338{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m105_c00338{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00338{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00338{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00338{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00338{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md0_c00338{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.mca_c00338{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00338{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m130_c00338{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m50_c00338{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00338{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m19_c00338{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m94_c00338{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m106_c00338{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m49_c00338{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.me8_c00338{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m15_c00338{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00338{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m137_c00338{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m5_c00338{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00338{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m97_c00338{transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00338{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10_c00338{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00338{transform:matrix(0.589000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589000,0.000000,0.000000,0.250000,0,0);}
.m18_c00338{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls0_c00338{letter-spacing:0.000000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{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__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00338{word-spacing:-9.285714px;}
.ws0_c00338{word-spacing:-3.804469px;}
.ws6_c00338{word-spacing:-1.805556px;}
.ws9_c00338{word-spacing:-0.666667px;}
.ws5_c00338{word-spacing:-0.294118px;}
.wsb_c00338{word-spacing:0.000000px;}
.ws7_c00338{word-spacing:1.805556px;}
.ws8_c00338{word-spacing:5.937500px;}
.ws3_c00338{word-spacing:6.786114px;}
.ws4_c00338{word-spacing:16.718750px;}
.ws2_c00338{word-spacing:90.000000px;}
.ws1_c00338{word-spacing:3375.379310px;}
.fc0_c00338{color:transparent;}
.fs6_c00338{font-size:18.000000px;}
.fs4_c00338{font-size:48.000000px;}
.fs5_c00338{font-size:54.000000px;}
.fs1_c00338{font-size:60.000000px;}
.fs3_c00338{font-size:66.000000px;}
.fs2_c00338{font-size:72.000000px;}
.fs0_c00338{font-size:78.000000px;}
.y0_c00338{bottom:0.000000px;}
.y6d_c00338{bottom:189.150000px;}
.y3c_c00338{bottom:194.100000px;}
.y6c_c00338{bottom:207.450000px;}
.y3b_c00338{bottom:208.500000px;}
.y3a_c00338{bottom:222.450000px;}
.y6b_c00338{bottom:225.150000px;}
.y39_c00338{bottom:236.850000px;}
.y6a_c00338{bottom:243.450000px;}
.y38_c00338{bottom:250.950000px;}
.y69_c00338{bottom:261.150000px;}
.y37_c00338{bottom:265.350000px;}
.y68_c00338{bottom:279.150000px;}
.y36_c00338{bottom:279.750000px;}
.y67_c00338{bottom:296.850000px;}
.y35_c00338{bottom:298.200000px;}
.y34_c00338{bottom:312.900000px;}
.y66_c00338{bottom:314.850000px;}
.y33_c00338{bottom:332.250000px;}
.y65_c00338{bottom:332.550000px;}
.y32_c00338{bottom:345.900000px;}
.y64_c00338{bottom:349.800000px;}
.y31_c00338{bottom:360.300000px;}
.y63_c00338{bottom:367.500000px;}
.y30_c00338{bottom:374.700000px;}
.y62_c00338{bottom:385.200000px;}
.y2f_c00338{bottom:389.100000px;}
.y61_c00338{bottom:403.200000px;}
.y2e_c00338{bottom:403.800000px;}
.y2d_c00338{bottom:417.900000px;}
.y60_c00338{bottom:421.200000px;}
.y2c_c00338{bottom:432.300000px;}
.y5f_c00338{bottom:438.900000px;}
.y2b_c00338{bottom:451.050000px;}
.y5e_c00338{bottom:456.900000px;}
.y2a_c00338{bottom:465.450000px;}
.y5d_c00338{bottom:475.200000px;}
.y29_c00338{bottom:479.850000px;}
.y5c_c00338{bottom:492.450000px;}
.y28_c00338{bottom:494.250000px;}
.y27_c00338{bottom:508.650000px;}
.y5b_c00338{bottom:522.300000px;}
.y26_c00338{bottom:523.050000px;}
.y25_c00338{bottom:537.150000px;}
.y5a_c00338{bottom:541.950000px;}
.y24_c00338{bottom:551.850000px;}
.y59_c00338{bottom:560.250000px;}
.y23_c00338{bottom:565.950000px;}
.y58_c00338{bottom:577.950000px;}
.y22_c00338{bottom:588.900000px;}
.y57_c00338{bottom:596.250000px;}
.y21_c00338{bottom:603.300000px;}
.y56_c00338{bottom:613.500000px;}
.y20_c00338{bottom:617.700000px;}
.y1f_c00338{bottom:632.400000px;}
.y55_c00338{bottom:640.350000px;}
.y1e_c00338{bottom:646.800000px;}
.y54_c00338{bottom:658.050000px;}
.y1d_c00338{bottom:660.900000px;}
.y1c_c00338{bottom:675.300000px;}
.y53_c00338{bottom:675.750000px;}
.y1b_c00338{bottom:689.700000px;}
.y52_c00338{bottom:693.000000px;}
.y51_c00338{bottom:697.650000px;}
.y1a_c00338{bottom:704.100000px;}
.y19_c00338{bottom:718.200000px;}
.y50_c00338{bottom:729.300000px;}
.y18_c00338{bottom:736.650000px;}
.y4f_c00338{bottom:747.000000px;}
.y17_c00338{bottom:751.350000px;}
.y16_c00338{bottom:765.300000px;}
.y15_c00338{bottom:773.250000px;}
.y4e_c00338{bottom:773.850000px;}
.y14_c00338{bottom:779.700000px;}
.y4d_c00338{bottom:792.150000px;}
.y13_c00338{bottom:793.500000px;}
.y4c_c00338{bottom:809.850000px;}
.y12_c00338{bottom:812.100000px;}
.y4b_c00338{bottom:827.550000px;}
.y11_c00338{bottom:828.000000px;}
.y10_c00338{bottom:840.600000px;}
.y4a_c00338{bottom:845.250000px;}
.yf_c00338{bottom:855.300000px;}
.y49_c00338{bottom:862.950000px;}
.y48_c00338{bottom:880.950000px;}
.ye_c00338{bottom:897.450000px;}
.y47_c00338{bottom:903.300000px;}
.yd_c00338{bottom:919.800000px;}
.y46_c00338{bottom:924.900000px;}
.yc_c00338{bottom:942.150000px;}
.y45_c00338{bottom:947.100000px;}
.yb_c00338{bottom:960.150000px;}
.y44_c00338{bottom:965.100000px;}
.ya_c00338{bottom:982.050000px;}
.y43_c00338{bottom:982.800000px;}
.y9_c00338{bottom:999.750000px;}
.y42_c00338{bottom:1005.000000px;}
.y8_c00338{bottom:1017.750000px;}
.y41_c00338{bottom:1022.700000px;}
.y7_c00338{bottom:1045.050000px;}
.y6_c00338{bottom:1053.000000px;}
.y40_c00338{bottom:1063.050000px;}
.y5_c00338{bottom:1073.100000px;}
.y3f_c00338{bottom:1081.050000px;}
.y3e_c00338{bottom:1098.750000px;}
.y4_c00338{bottom:1099.050000px;}
.y3d_c00338{bottom:1121.100000px;}
.y3_c00338{bottom:1121.400000px;}
.y2_c00338{bottom:1144.500000px;}
.y1_c00338{bottom:1148.100000px;}
.h8_c00338{height:18.000000px;}
.h6_c00338{height:48.000000px;}
.h7_c00338{height:54.000000px;}
.h3_c00338{height:60.000000px;}
.h5_c00338{height:66.000000px;}
.h4_c00338{height:72.000000px;}
.h2_c00338{height:78.000000px;}
.h0_c00338{height:1266.480010px;}
.h1_c00338{height:1266.750000px;}
.w0_c00338{width:960.480010px;}
.w1_c00338{width:960.750000px;}
.x0_c00338{left:0.000000px;}
.x9c_c00338{left:56.700000px;}
.x40_c00338{left:57.900000px;}
.x9_c00338{left:58.950000px;}
.x94_c00338{left:65.550000px;}
.x98_c00338{left:72.300000px;}
.x46_c00338{left:73.500000px;}
.xa3_c00338{left:74.550000px;}
.x15_c00338{left:76.500000px;}
.x9e_c00338{left:78.450000px;}
.xa9_c00338{left:80.100000px;}
.x42_c00338{left:82.050000px;}
.x72_c00338{left:83.100000px;}
.x80_c00338{left:85.650000px;}
.xac_c00338{left:87.450000px;}
.x47_c00338{left:88.650000px;}
.xaa_c00338{left:90.600000px;}
.x39_c00338{left:92.700000px;}
.x63_c00338{left:93.750000px;}
.x6_c00338{left:95.400000px;}
.x2e_c00338{left:96.900000px;}
.x5d_c00338{left:97.950000px;}
.x84_c00338{left:99.000000px;}
.x59_c00338{left:100.050000px;}
.x34_c00338{left:103.350000px;}
.x73_c00338{left:105.000000px;}
.x55_c00338{left:106.800000px;}
.x1f_c00338{left:108.750000px;}
.x11_c00338{left:109.950000px;}
.x7b_c00338{left:111.600000px;}
.x3a_c00338{left:113.550000px;}
.x4a_c00338{left:115.800000px;}
.x8b_c00338{left:118.800000px;}
.x20_c00338{left:120.600000px;}
.x51_c00338{left:124.950000px;}
.x6c_c00338{left:126.900000px;}
.x2f_c00338{left:129.300000px;}
.x43_c00338{left:130.350000px;}
.xa_c00338{left:132.450000px;}
.x33_c00338{left:133.500000px;}
.x87_c00338{left:135.300000px;}
.x9d_c00338{left:136.950000px;}
.xa6_c00338{left:138.000000px;}
.x7_c00338{left:139.350000px;}
.x56_c00338{left:141.750000px;}
.x9f_c00338{left:145.050000px;}
.x89_c00338{left:146.550000px;}
.x21_c00338{left:151.500000px;}
.x26_c00338{left:152.550000px;}
.x7c_c00338{left:154.500000px;}
.x19_c00338{left:155.550000px;}
.x8_c00338{left:157.650000px;}
.xa8_c00338{left:159.450000px;}
.x30_c00338{left:160.650000px;}
.x28_c00338{left:162.000000px;}
.x6e_c00338{left:163.500000px;}
.x27_c00338{left:164.850000px;}
.x99_c00338{left:166.950000px;}
.x16_c00338{left:168.300000px;}
.x81_c00338{left:172.050000px;}
.x4b_c00338{left:174.150000px;}
.x1_c00338{left:175.350000px;}
.x12_c00338{left:177.300000px;}
.x6f_c00338{left:179.400000px;}
.x8d_c00338{left:181.050000px;}
.xa7_c00338{left:182.100000px;}
.x57_c00338{left:183.450000px;}
.x35_c00338{left:185.100000px;}
.x74_c00338{left:186.750000px;}
.x13_c00338{left:188.400000px;}
.x78_c00338{left:190.350000px;}
.x44_c00338{left:191.550000px;}
.x95_c00338{left:193.050000px;}
.xb_c00338{left:195.150000px;}
.x4c_c00338{left:196.500000px;}
.x64_c00338{left:198.150000px;}
.x5e_c00338{left:199.500000px;}
.x9a_c00338{left:201.150000px;}
.x82_c00338{left:202.350000px;}
.x8c_c00338{left:204.750000px;}
.x31_c00338{left:206.400000px;}
.x79_c00338{left:208.050000px;}
.xad_c00338{left:209.100000px;}
.x66_c00338{left:211.500000px;}
.x36_c00338{left:214.650000px;}
.x14_c00338{left:217.950000px;}
.x4d_c00338{left:219.150000px;}
.x8e_c00338{left:220.650000px;}
.x29_c00338{left:225.300000px;}
.x75_c00338{left:226.350000px;}
.xa0_c00338{left:227.550000px;}
.x1a_c00338{left:228.600000px;}
.x7d_c00338{left:229.650000px;}
.x22_c00338{left:231.000000px;}
.x91_c00338{left:235.800000px;}
.xa4_c00338{left:237.600000px;}
.x2a_c00338{left:239.400000px;}
.x88_c00338{left:241.200000px;}
.x3b_c00338{left:243.450000px;}
.x4e_c00338{left:245.400000px;}
.x37_c00338{left:246.750000px;}
.x17_c00338{left:248.250000px;}
.x83_c00338{left:249.750000px;}
.x23_c00338{left:253.650000px;}
.xc_c00338{left:255.300000px;}
.x2d_c00338{left:257.400000px;}
.x5a_c00338{left:258.900000px;}
.x4f_c00338{left:261.300000px;}
.xd_c00338{left:264.300000px;}
.x7a_c00338{left:265.650000px;}
.x5f_c00338{left:266.850000px;}
.x45_c00338{left:268.950000px;}
.x1b_c00338{left:270.000000px;}
.x67_c00338{left:271.650000px;}
.x8f_c00338{left:274.650000px;}
.x52_c00338{left:276.900000px;}
.x6d_c00338{left:278.400000px;}
.x3c_c00338{left:279.750000px;}
.x85_c00338{left:280.800000px;}
.x32_c00338{left:282.000000px;}
.x90_c00338{left:283.650000px;}
.x7e_c00338{left:286.200000px;}
.x1c_c00338{left:287.700000px;}
.x48_c00338{left:290.700000px;}
.x18_c00338{left:292.200000px;}
.x3d_c00338{left:294.450000px;}
.x70_c00338{left:295.800000px;}
.x5b_c00338{left:297.750000px;}
.x2_c00338{left:300.600000px;}
.x76_c00338{left:301.950000px;}
.xe_c00338{left:303.600000px;}
.x96_c00338{left:305.400000px;}
.x2b_c00338{left:307.800000px;}
.xab_c00338{left:311.400000px;}
.x60_c00338{left:313.350000px;}
.x71_c00338{left:315.900000px;}
.x68_c00338{left:317.400000px;}
.x6a_c00338{left:319.200000px;}
.x97_c00338{left:320.550000px;}
.x41_c00338{left:322.200000px;}
.x50_c00338{left:323.250000px;}
.x24_c00338{left:324.600000px;}
.xa1_c00338{left:326.850000px;}
.xf_c00338{left:329.100000px;}
.x77_c00338{left:331.800000px;}
.x5c_c00338{left:333.750000px;}
.xa2_c00338{left:334.800000px;}
.x69_c00338{left:336.150000px;}
.x92_c00338{left:337.350000px;}
.x53_c00338{left:338.850000px;}
.x65_c00338{left:341.700000px;}
.x9b_c00338{left:342.900000px;}
.xa5_c00338{left:345.300000px;}
.x86_c00338{left:346.950000px;}
.x3e_c00338{left:350.250000px;}
.x61_c00338{left:353.250000px;}
.x58_c00338{left:354.900000px;}
.x1d_c00338{left:356.850000px;}
.x54_c00338{left:359.400000px;}
.x10_c00338{left:363.000000px;}
.x6b_c00338{left:365.250000px;}
.x3f_c00338{left:367.500000px;}
.x49_c00338{left:369.150000px;}
.x38_c00338{left:370.200000px;}
.x8a_c00338{left:372.300000px;}
.xae_c00338{left:374.700000px;}
.x62_c00338{left:375.900000px;}
.x1e_c00338{left:377.700000px;}
.x7f_c00338{left:379.050000px;}
.x93_c00338{left:380.850000px;}
.x25_c00338{left:384.750000px;}
.x2c_c00338{left:392.100000px;}
.xee_c00338{left:415.800000px;}
.x110_c00338{left:424.800000px;}
.x124_c00338{left:430.050000px;}
.x142_c00338{left:431.100000px;}
.x120_c00338{left:432.300000px;}
.xc3_c00338{left:433.350000px;}
.xbb_c00338{left:435.300000px;}
.xaf_c00338{left:442.800000px;}
.xea_c00338{left:451.350000px;}
.x137_c00338{left:452.850000px;}
.xb0_c00338{left:453.900000px;}
.xdc_c00338{left:455.850000px;}
.x111_c00338{left:457.950000px;}
.xf3_c00338{left:460.200000px;}
.x143_c00338{left:462.750000px;}
.x13e_c00338{left:463.800000px;}
.x108_c00338{left:465.900000px;}
.xbc_c00338{left:466.950000px;}
.x11b_c00338{left:469.500000px;}
.x102_c00338{left:471.750000px;}
.x13f_c00338{left:473.550000px;}
.xef_c00338{left:474.900000px;}
.xfc_c00338{left:479.250000px;}
.xf7_c00338{left:480.450000px;}
.xd2_c00338{left:482.100000px;}
.x10b_c00338{left:485.250000px;}
.xcb_c00338{left:487.800000px;}
.x126_c00338{left:489.000000px;}
.xdd_c00338{left:490.350000px;}
.xfd_c00338{left:492.150000px;}
.xe6_c00338{left:494.250000px;}
.x129_c00338{left:495.300000px;}
.xb4_c00338{left:496.500000px;}
.x114_c00338{left:497.550000px;}
.x12d_c00338{left:499.350000px;}
.xe3_c00338{left:500.550000px;}
.x131_c00338{left:504.300000px;}
.x146_c00338{left:505.350000px;}
.xd9_c00338{left:506.850000px;}
.xc4_c00338{left:507.900000px;}
.xf4_c00338{left:509.100000px;}
.xb1_c00338{left:510.450000px;}
.xbd_c00338{left:513.000000px;}
.xd3_c00338{left:514.500000px;}
.x10c_c00338{left:515.550000px;}
.xe7_c00338{left:516.600000px;}
.xe4_c00338{left:519.600000px;}
.x147_c00338{left:522.300000px;}
.x11c_c00338{left:523.500000px;}
.x117_c00338{left:530.100000px;}
.xf8_c00338{left:531.600000px;}
.x135_c00338{left:533.850000px;}
.xde_c00338{left:535.350000px;}
.xeb_c00338{left:537.450000px;}
.x141_c00338{left:539.400000px;}
.xc5_c00338{left:542.850000px;}
.x103_c00338{left:545.250000px;}
.x13c_c00338{left:547.050000px;}
.x13b_c00338{left:548.400000px;}
.x115_c00338{left:550.800000px;}
.xe8_c00338{left:552.900000px;}
.x138_c00338{left:554.700000px;}
.xfe_c00338{left:556.500000px;}
.xcc_c00338{left:558.300000px;}
.x132_c00338{left:559.350000px;}
.x136_c00338{left:560.550000px;}
.xb5_c00338{left:562.800000px;}
.xb2_c00338{left:564.450000px;}
.xe5_c00338{left:567.900000px;}
.xdf_c00338{left:569.250000px;}
.x12e_c00338{left:573.450000px;}
.x10d_c00338{left:574.950000px;}
.x11d_c00338{left:576.750000px;}
.xb3_c00338{left:579.900000px;}
.x12c_c00338{left:581.400000px;}
.xcd_c00338{left:584.250000px;}
.xc6_c00338{left:586.050000px;}
.x121_c00338{left:587.400000px;}
.xbe_c00338{left:588.600000px;}
.x104_c00338{left:591.300000px;}
.xec_c00338{left:592.950000px;}
.x109_c00338{left:594.450000px;}
.xe0_c00338{left:596.250000px;}
.x105_c00338{left:597.300000px;}
.xd4_c00338{left:598.350000px;}
.x144_c00338{left:600.300000px;}
.x127_c00338{left:601.350000px;}
.xda_c00338{left:603.450000px;}
.xb6_c00338{left:604.950000px;}
.x116_c00338{left:606.900000px;}
.xbf_c00338{left:609.900000px;}
.x13d_c00338{left:611.100000px;}
.xed_c00338{left:612.750000px;}
.xb7_c00338{left:614.250000px;}
.x133_c00338{left:615.450000px;}
.xce_c00338{left:618.150000px;}
.xf0_c00338{left:620.400000px;}
.x122_c00338{left:624.150000px;}
.xb8_c00338{left:626.100000px;}
.x12a_c00338{left:627.450000px;}
.xf9_c00338{left:631.050000px;}
.x134_c00338{left:632.400000px;}
.xd5_c00338{left:633.600000px;}
.x128_c00338{left:634.800000px;}
.xe9_c00338{left:636.000000px;}
.xf5_c00338{left:637.350000px;}
.xcf_c00338{left:638.700000px;}
.x10e_c00338{left:639.750000px;}
.x11e_c00338{left:642.600000px;}
.x118_c00338{left:644.100000px;}
.xc7_c00338{left:645.450000px;}
.xc0_c00338{left:647.400000px;}
.xff_c00338{left:649.500000px;}
.x123_c00338{left:650.850000px;}
.xe1_c00338{left:652.350000px;}
.xfa_c00338{left:653.700000px;}
.x145_c00338{left:655.500000px;}
.xd6_c00338{left:657.000000px;}
.x130_c00338{left:659.850000px;}
.x148_c00338{left:660.900000px;}
.x113_c00338{left:662.550000px;}
.xd0_c00338{left:663.600000px;}
.x106_c00338{left:667.200000px;}
.xc1_c00338{left:668.700000px;}
.xe2_c00338{left:670.050000px;}
.xb9_c00338{left:671.400000px;}
.x139_c00338{left:672.900000px;}
.xf6_c00338{left:674.850000px;}
.xf1_c00338{left:680.550000px;}
.xdb_c00338{left:682.950000px;}
.xc8_c00338{left:684.000000px;}
.x10a_c00338{left:685.950000px;}
.x112_c00338{left:690.300000px;}
.xd7_c00338{left:691.950000px;}
.xfb_c00338{left:693.000000px;}
.x119_c00338{left:694.500000px;}
.xd1_c00338{left:697.500000px;}
.xf2_c00338{left:699.600000px;}
.x100_c00338{left:702.450000px;}
.x12b_c00338{left:703.800000px;}
.x107_c00338{left:706.800000px;}
.x13a_c00338{left:710.400000px;}
.xc9_c00338{left:712.500000px;}
.xba_c00338{left:714.600000px;}
.x12f_c00338{left:715.650000px;}
.x10f_c00338{left:719.700000px;}
.xc2_c00338{left:721.650000px;}
.x101_c00338{left:724.050000px;}
.x3_c00338{left:726.900000px;}
.x125_c00338{left:728.100000px;}
.x11a_c00338{left:731.550000px;}
.x140_c00338{left:733.050000px;}
.xca_c00338{left:734.100000px;}
.xd8_c00338{left:738.000000px;}
.x4_c00338{left:739.200000px;}
.x11f_c00338{left:746.250000px;}
.x5_c00338{left:747.900000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.wsa_c00338{word-spacing:-8.253968pt;}
.ws0_c00338{word-spacing:-3.381750pt;}
.ws6_c00338{word-spacing:-1.604938pt;}
.ws9_c00338{word-spacing:-0.592593pt;}
.ws5_c00338{word-spacing:-0.261438pt;}
.wsb_c00338{word-spacing:0.000000pt;}
.ws7_c00338{word-spacing:1.604938pt;}
.ws8_c00338{word-spacing:5.277778pt;}
.ws3_c00338{word-spacing:6.032102pt;}
.ws4_c00338{word-spacing:14.861111pt;}
.ws2_c00338{word-spacing:80.000000pt;}
.ws1_c00338{word-spacing:3000.337165pt;}
.fs6_c00338{font-size:16.000000pt;}
.fs4_c00338{font-size:42.666667pt;}
.fs5_c00338{font-size:48.000000pt;}
.fs1_c00338{font-size:53.333333pt;}
.fs3_c00338{font-size:58.666667pt;}
.fs2_c00338{font-size:64.000000pt;}
.fs0_c00338{font-size:69.333333pt;}
.y0_c00338{bottom:0.000000pt;}
.y6d_c00338{bottom:168.133333pt;}
.y3c_c00338{bottom:172.533333pt;}
.y6c_c00338{bottom:184.400000pt;}
.y3b_c00338{bottom:185.333333pt;}
.y3a_c00338{bottom:197.733333pt;}
.y6b_c00338{bottom:200.133333pt;}
.y39_c00338{bottom:210.533333pt;}
.y6a_c00338{bottom:216.400000pt;}
.y38_c00338{bottom:223.066667pt;}
.y69_c00338{bottom:232.133333pt;}
.y37_c00338{bottom:235.866667pt;}
.y68_c00338{bottom:248.133333pt;}
.y36_c00338{bottom:248.666667pt;}
.y67_c00338{bottom:263.866667pt;}
.y35_c00338{bottom:265.066667pt;}
.y34_c00338{bottom:278.133333pt;}
.y66_c00338{bottom:279.866667pt;}
.y33_c00338{bottom:295.333333pt;}
.y65_c00338{bottom:295.600000pt;}
.y32_c00338{bottom:307.466667pt;}
.y64_c00338{bottom:310.933333pt;}
.y31_c00338{bottom:320.266667pt;}
.y63_c00338{bottom:326.666667pt;}
.y30_c00338{bottom:333.066667pt;}
.y62_c00338{bottom:342.400000pt;}
.y2f_c00338{bottom:345.866667pt;}
.y61_c00338{bottom:358.400000pt;}
.y2e_c00338{bottom:358.933333pt;}
.y2d_c00338{bottom:371.466667pt;}
.y60_c00338{bottom:374.400000pt;}
.y2c_c00338{bottom:384.266667pt;}
.y5f_c00338{bottom:390.133333pt;}
.y2b_c00338{bottom:400.933333pt;}
.y5e_c00338{bottom:406.133333pt;}
.y2a_c00338{bottom:413.733333pt;}
.y5d_c00338{bottom:422.400000pt;}
.y29_c00338{bottom:426.533333pt;}
.y5c_c00338{bottom:437.733333pt;}
.y28_c00338{bottom:439.333333pt;}
.y27_c00338{bottom:452.133333pt;}
.y5b_c00338{bottom:464.266667pt;}
.y26_c00338{bottom:464.933333pt;}
.y25_c00338{bottom:477.466667pt;}
.y5a_c00338{bottom:481.733333pt;}
.y24_c00338{bottom:490.533333pt;}
.y59_c00338{bottom:498.000000pt;}
.y23_c00338{bottom:503.066667pt;}
.y58_c00338{bottom:513.733333pt;}
.y22_c00338{bottom:523.466667pt;}
.y57_c00338{bottom:530.000000pt;}
.y21_c00338{bottom:536.266667pt;}
.y56_c00338{bottom:545.333333pt;}
.y20_c00338{bottom:549.066667pt;}
.y1f_c00338{bottom:562.133333pt;}
.y55_c00338{bottom:569.200000pt;}
.y1e_c00338{bottom:574.933333pt;}
.y54_c00338{bottom:584.933333pt;}
.y1d_c00338{bottom:587.466667pt;}
.y1c_c00338{bottom:600.266667pt;}
.y53_c00338{bottom:600.666667pt;}
.y1b_c00338{bottom:613.066667pt;}
.y52_c00338{bottom:616.000000pt;}
.y51_c00338{bottom:620.133333pt;}
.y1a_c00338{bottom:625.866667pt;}
.y19_c00338{bottom:638.400000pt;}
.y50_c00338{bottom:648.266667pt;}
.y18_c00338{bottom:654.800000pt;}
.y4f_c00338{bottom:664.000000pt;}
.y17_c00338{bottom:667.866667pt;}
.y16_c00338{bottom:680.266667pt;}
.y15_c00338{bottom:687.333333pt;}
.y4e_c00338{bottom:687.866667pt;}
.y14_c00338{bottom:693.066667pt;}
.y4d_c00338{bottom:704.133333pt;}
.y13_c00338{bottom:705.333333pt;}
.y4c_c00338{bottom:719.866667pt;}
.y12_c00338{bottom:721.866667pt;}
.y4b_c00338{bottom:735.600000pt;}
.y11_c00338{bottom:736.000000pt;}
.y10_c00338{bottom:747.200000pt;}
.y4a_c00338{bottom:751.333333pt;}
.yf_c00338{bottom:760.266667pt;}
.y49_c00338{bottom:767.066667pt;}
.y48_c00338{bottom:783.066667pt;}
.ye_c00338{bottom:797.733333pt;}
.y47_c00338{bottom:802.933333pt;}
.yd_c00338{bottom:817.600000pt;}
.y46_c00338{bottom:822.133333pt;}
.yc_c00338{bottom:837.466667pt;}
.y45_c00338{bottom:841.866667pt;}
.yb_c00338{bottom:853.466667pt;}
.y44_c00338{bottom:857.866667pt;}
.ya_c00338{bottom:872.933333pt;}
.y43_c00338{bottom:873.600000pt;}
.y9_c00338{bottom:888.666667pt;}
.y42_c00338{bottom:893.333333pt;}
.y8_c00338{bottom:904.666667pt;}
.y41_c00338{bottom:909.066667pt;}
.y7_c00338{bottom:928.933333pt;}
.y6_c00338{bottom:936.000000pt;}
.y40_c00338{bottom:944.933333pt;}
.y5_c00338{bottom:953.866667pt;}
.y3f_c00338{bottom:960.933333pt;}
.y3e_c00338{bottom:976.666667pt;}
.y4_c00338{bottom:976.933333pt;}
.y3d_c00338{bottom:996.533333pt;}
.y3_c00338{bottom:996.800000pt;}
.y2_c00338{bottom:1017.333333pt;}
.y1_c00338{bottom:1020.533333pt;}
.h8_c00338{height:16.000000pt;}
.h6_c00338{height:42.666667pt;}
.h7_c00338{height:48.000000pt;}
.h3_c00338{height:53.333333pt;}
.h5_c00338{height:58.666667pt;}
.h4_c00338{height:64.000000pt;}
.h2_c00338{height:69.333333pt;}
.h0_c00338{height:1125.760009pt;}
.h1_c00338{height:1126.000000pt;}
.w0_c00338{width:853.760009pt;}
.w1_c00338{width:854.000000pt;}
.x0_c00338{left:0.000000pt;}
.x9c_c00338{left:50.400000pt;}
.x40_c00338{left:51.466667pt;}
.x9_c00338{left:52.400000pt;}
.x94_c00338{left:58.266667pt;}
.x98_c00338{left:64.266667pt;}
.x46_c00338{left:65.333333pt;}
.xa3_c00338{left:66.266667pt;}
.x15_c00338{left:68.000000pt;}
.x9e_c00338{left:69.733333pt;}
.xa9_c00338{left:71.200000pt;}
.x42_c00338{left:72.933333pt;}
.x72_c00338{left:73.866667pt;}
.x80_c00338{left:76.133333pt;}
.xac_c00338{left:77.733333pt;}
.x47_c00338{left:78.800000pt;}
.xaa_c00338{left:80.533333pt;}
.x39_c00338{left:82.400000pt;}
.x63_c00338{left:83.333333pt;}
.x6_c00338{left:84.800000pt;}
.x2e_c00338{left:86.133333pt;}
.x5d_c00338{left:87.066667pt;}
.x84_c00338{left:88.000000pt;}
.x59_c00338{left:88.933333pt;}
.x34_c00338{left:91.866667pt;}
.x73_c00338{left:93.333333pt;}
.x55_c00338{left:94.933333pt;}
.x1f_c00338{left:96.666667pt;}
.x11_c00338{left:97.733333pt;}
.x7b_c00338{left:99.200000pt;}
.x3a_c00338{left:100.933333pt;}
.x4a_c00338{left:102.933333pt;}
.x8b_c00338{left:105.600000pt;}
.x20_c00338{left:107.200000pt;}
.x51_c00338{left:111.066667pt;}
.x6c_c00338{left:112.800000pt;}
.x2f_c00338{left:114.933333pt;}
.x43_c00338{left:115.866667pt;}
.xa_c00338{left:117.733333pt;}
.x33_c00338{left:118.666667pt;}
.x87_c00338{left:120.266667pt;}
.x9d_c00338{left:121.733333pt;}
.xa6_c00338{left:122.666667pt;}
.x7_c00338{left:123.866667pt;}
.x56_c00338{left:126.000000pt;}
.x9f_c00338{left:128.933333pt;}
.x89_c00338{left:130.266667pt;}
.x21_c00338{left:134.666667pt;}
.x26_c00338{left:135.600000pt;}
.x7c_c00338{left:137.333333pt;}
.x19_c00338{left:138.266667pt;}
.x8_c00338{left:140.133333pt;}
.xa8_c00338{left:141.733333pt;}
.x30_c00338{left:142.800000pt;}
.x28_c00338{left:144.000000pt;}
.x6e_c00338{left:145.333333pt;}
.x27_c00338{left:146.533333pt;}
.x99_c00338{left:148.400000pt;}
.x16_c00338{left:149.600000pt;}
.x81_c00338{left:152.933333pt;}
.x4b_c00338{left:154.800000pt;}
.x1_c00338{left:155.866667pt;}
.x12_c00338{left:157.600000pt;}
.x6f_c00338{left:159.466667pt;}
.x8d_c00338{left:160.933333pt;}
.xa7_c00338{left:161.866667pt;}
.x57_c00338{left:163.066667pt;}
.x35_c00338{left:164.533333pt;}
.x74_c00338{left:166.000000pt;}
.x13_c00338{left:167.466667pt;}
.x78_c00338{left:169.200000pt;}
.x44_c00338{left:170.266667pt;}
.x95_c00338{left:171.600000pt;}
.xb_c00338{left:173.466667pt;}
.x4c_c00338{left:174.666667pt;}
.x64_c00338{left:176.133333pt;}
.x5e_c00338{left:177.333333pt;}
.x9a_c00338{left:178.800000pt;}
.x82_c00338{left:179.866667pt;}
.x8c_c00338{left:182.000000pt;}
.x31_c00338{left:183.466667pt;}
.x79_c00338{left:184.933333pt;}
.xad_c00338{left:185.866667pt;}
.x66_c00338{left:188.000000pt;}
.x36_c00338{left:190.800000pt;}
.x14_c00338{left:193.733333pt;}
.x4d_c00338{left:194.800000pt;}
.x8e_c00338{left:196.133333pt;}
.x29_c00338{left:200.266667pt;}
.x75_c00338{left:201.200000pt;}
.xa0_c00338{left:202.266667pt;}
.x1a_c00338{left:203.200000pt;}
.x7d_c00338{left:204.133333pt;}
.x22_c00338{left:205.333333pt;}
.x91_c00338{left:209.600000pt;}
.xa4_c00338{left:211.200000pt;}
.x2a_c00338{left:212.800000pt;}
.x88_c00338{left:214.400000pt;}
.x3b_c00338{left:216.400000pt;}
.x4e_c00338{left:218.133333pt;}
.x37_c00338{left:219.333333pt;}
.x17_c00338{left:220.666667pt;}
.x83_c00338{left:222.000000pt;}
.x23_c00338{left:225.466667pt;}
.xc_c00338{left:226.933333pt;}
.x2d_c00338{left:228.800000pt;}
.x5a_c00338{left:230.133333pt;}
.x4f_c00338{left:232.266667pt;}
.xd_c00338{left:234.933333pt;}
.x7a_c00338{left:236.133333pt;}
.x5f_c00338{left:237.200000pt;}
.x45_c00338{left:239.066667pt;}
.x1b_c00338{left:240.000000pt;}
.x67_c00338{left:241.466667pt;}
.x8f_c00338{left:244.133333pt;}
.x52_c00338{left:246.133333pt;}
.x6d_c00338{left:247.466667pt;}
.x3c_c00338{left:248.666667pt;}
.x85_c00338{left:249.600000pt;}
.x32_c00338{left:250.666667pt;}
.x90_c00338{left:252.133333pt;}
.x7e_c00338{left:254.400000pt;}
.x1c_c00338{left:255.733333pt;}
.x48_c00338{left:258.400000pt;}
.x18_c00338{left:259.733333pt;}
.x3d_c00338{left:261.733333pt;}
.x70_c00338{left:262.933333pt;}
.x5b_c00338{left:264.666667pt;}
.x2_c00338{left:267.200000pt;}
.x76_c00338{left:268.400000pt;}
.xe_c00338{left:269.866667pt;}
.x96_c00338{left:271.466667pt;}
.x2b_c00338{left:273.600000pt;}
.xab_c00338{left:276.800000pt;}
.x60_c00338{left:278.533333pt;}
.x71_c00338{left:280.800000pt;}
.x68_c00338{left:282.133333pt;}
.x6a_c00338{left:283.733333pt;}
.x97_c00338{left:284.933333pt;}
.x41_c00338{left:286.400000pt;}
.x50_c00338{left:287.333333pt;}
.x24_c00338{left:288.533333pt;}
.xa1_c00338{left:290.533333pt;}
.xf_c00338{left:292.533333pt;}
.x77_c00338{left:294.933333pt;}
.x5c_c00338{left:296.666667pt;}
.xa2_c00338{left:297.600000pt;}
.x69_c00338{left:298.800000pt;}
.x92_c00338{left:299.866667pt;}
.x53_c00338{left:301.200000pt;}
.x65_c00338{left:303.733333pt;}
.x9b_c00338{left:304.800000pt;}
.xa5_c00338{left:306.933333pt;}
.x86_c00338{left:308.400000pt;}
.x3e_c00338{left:311.333333pt;}
.x61_c00338{left:314.000000pt;}
.x58_c00338{left:315.466667pt;}
.x1d_c00338{left:317.200000pt;}
.x54_c00338{left:319.466667pt;}
.x10_c00338{left:322.666667pt;}
.x6b_c00338{left:324.666667pt;}
.x3f_c00338{left:326.666667pt;}
.x49_c00338{left:328.133333pt;}
.x38_c00338{left:329.066667pt;}
.x8a_c00338{left:330.933333pt;}
.xae_c00338{left:333.066667pt;}
.x62_c00338{left:334.133333pt;}
.x1e_c00338{left:335.733333pt;}
.x7f_c00338{left:336.933333pt;}
.x93_c00338{left:338.533333pt;}
.x25_c00338{left:342.000000pt;}
.x2c_c00338{left:348.533333pt;}
.xee_c00338{left:369.600000pt;}
.x110_c00338{left:377.600000pt;}
.x124_c00338{left:382.266667pt;}
.x142_c00338{left:383.200000pt;}
.x120_c00338{left:384.266667pt;}
.xc3_c00338{left:385.200000pt;}
.xbb_c00338{left:386.933333pt;}
.xaf_c00338{left:393.600000pt;}
.xea_c00338{left:401.200000pt;}
.x137_c00338{left:402.533333pt;}
.xb0_c00338{left:403.466667pt;}
.xdc_c00338{left:405.200000pt;}
.x111_c00338{left:407.066667pt;}
.xf3_c00338{left:409.066667pt;}
.x143_c00338{left:411.333333pt;}
.x13e_c00338{left:412.266667pt;}
.x108_c00338{left:414.133333pt;}
.xbc_c00338{left:415.066667pt;}
.x11b_c00338{left:417.333333pt;}
.x102_c00338{left:419.333333pt;}
.x13f_c00338{left:420.933333pt;}
.xef_c00338{left:422.133333pt;}
.xfc_c00338{left:426.000000pt;}
.xf7_c00338{left:427.066667pt;}
.xd2_c00338{left:428.533333pt;}
.x10b_c00338{left:431.333333pt;}
.xcb_c00338{left:433.600000pt;}
.x126_c00338{left:434.666667pt;}
.xdd_c00338{left:435.866667pt;}
.xfd_c00338{left:437.466667pt;}
.xe6_c00338{left:439.333333pt;}
.x129_c00338{left:440.266667pt;}
.xb4_c00338{left:441.333333pt;}
.x114_c00338{left:442.266667pt;}
.x12d_c00338{left:443.866667pt;}
.xe3_c00338{left:444.933333pt;}
.x131_c00338{left:448.266667pt;}
.x146_c00338{left:449.200000pt;}
.xd9_c00338{left:450.533333pt;}
.xc4_c00338{left:451.466667pt;}
.xf4_c00338{left:452.533333pt;}
.xb1_c00338{left:453.733333pt;}
.xbd_c00338{left:456.000000pt;}
.xd3_c00338{left:457.333333pt;}
.x10c_c00338{left:458.266667pt;}
.xe7_c00338{left:459.200000pt;}
.xe4_c00338{left:461.866667pt;}
.x147_c00338{left:464.266667pt;}
.x11c_c00338{left:465.333333pt;}
.x117_c00338{left:471.200000pt;}
.xf8_c00338{left:472.533333pt;}
.x135_c00338{left:474.533333pt;}
.xde_c00338{left:475.866667pt;}
.xeb_c00338{left:477.733333pt;}
.x141_c00338{left:479.466667pt;}
.xc5_c00338{left:482.533333pt;}
.x103_c00338{left:484.666667pt;}
.x13c_c00338{left:486.266667pt;}
.x13b_c00338{left:487.466667pt;}
.x115_c00338{left:489.600000pt;}
.xe8_c00338{left:491.466667pt;}
.x138_c00338{left:493.066667pt;}
.xfe_c00338{left:494.666667pt;}
.xcc_c00338{left:496.266667pt;}
.x132_c00338{left:497.200000pt;}
.x136_c00338{left:498.266667pt;}
.xb5_c00338{left:500.266667pt;}
.xb2_c00338{left:501.733333pt;}
.xe5_c00338{left:504.800000pt;}
.xdf_c00338{left:506.000000pt;}
.x12e_c00338{left:509.733333pt;}
.x10d_c00338{left:511.066667pt;}
.x11d_c00338{left:512.666667pt;}
.xb3_c00338{left:515.466667pt;}
.x12c_c00338{left:516.800000pt;}
.xcd_c00338{left:519.333333pt;}
.xc6_c00338{left:520.933333pt;}
.x121_c00338{left:522.133333pt;}
.xbe_c00338{left:523.200000pt;}
.x104_c00338{left:525.600000pt;}
.xec_c00338{left:527.066667pt;}
.x109_c00338{left:528.400000pt;}
.xe0_c00338{left:530.000000pt;}
.x105_c00338{left:530.933333pt;}
.xd4_c00338{left:531.866667pt;}
.x144_c00338{left:533.600000pt;}
.x127_c00338{left:534.533333pt;}
.xda_c00338{left:536.400000pt;}
.xb6_c00338{left:537.733333pt;}
.x116_c00338{left:539.466667pt;}
.xbf_c00338{left:542.133333pt;}
.x13d_c00338{left:543.200000pt;}
.xed_c00338{left:544.666667pt;}
.xb7_c00338{left:546.000000pt;}
.x133_c00338{left:547.066667pt;}
.xce_c00338{left:549.466667pt;}
.xf0_c00338{left:551.466667pt;}
.x122_c00338{left:554.800000pt;}
.xb8_c00338{left:556.533333pt;}
.x12a_c00338{left:557.733333pt;}
.xf9_c00338{left:560.933333pt;}
.x134_c00338{left:562.133333pt;}
.xd5_c00338{left:563.200000pt;}
.x128_c00338{left:564.266667pt;}
.xe9_c00338{left:565.333333pt;}
.xf5_c00338{left:566.533333pt;}
.xcf_c00338{left:567.733333pt;}
.x10e_c00338{left:568.666667pt;}
.x11e_c00338{left:571.200000pt;}
.x118_c00338{left:572.533333pt;}
.xc7_c00338{left:573.733333pt;}
.xc0_c00338{left:575.466667pt;}
.xff_c00338{left:577.333333pt;}
.x123_c00338{left:578.533333pt;}
.xe1_c00338{left:579.866667pt;}
.xfa_c00338{left:581.066667pt;}
.x145_c00338{left:582.666667pt;}
.xd6_c00338{left:584.000000pt;}
.x130_c00338{left:586.533333pt;}
.x148_c00338{left:587.466667pt;}
.x113_c00338{left:588.933333pt;}
.xd0_c00338{left:589.866667pt;}
.x106_c00338{left:593.066667pt;}
.xc1_c00338{left:594.400000pt;}
.xe2_c00338{left:595.600000pt;}
.xb9_c00338{left:596.800000pt;}
.x139_c00338{left:598.133333pt;}
.xf6_c00338{left:599.866667pt;}
.xf1_c00338{left:604.933333pt;}
.xdb_c00338{left:607.066667pt;}
.xc8_c00338{left:608.000000pt;}
.x10a_c00338{left:609.733333pt;}
.x112_c00338{left:613.600000pt;}
.xd7_c00338{left:615.066667pt;}
.xfb_c00338{left:616.000000pt;}
.x119_c00338{left:617.333333pt;}
.xd1_c00338{left:620.000000pt;}
.xf2_c00338{left:621.866667pt;}
.x100_c00338{left:624.400000pt;}
.x12b_c00338{left:625.600000pt;}
.x107_c00338{left:628.266667pt;}
.x13a_c00338{left:631.466667pt;}
.xc9_c00338{left:633.333333pt;}
.xba_c00338{left:635.200000pt;}
.x12f_c00338{left:636.133333pt;}
.x10f_c00338{left:639.733333pt;}
.xc2_c00338{left:641.466667pt;}
.x101_c00338{left:643.600000pt;}
.x3_c00338{left:646.133333pt;}
.x125_c00338{left:647.200000pt;}
.x11a_c00338{left:650.266667pt;}
.x140_c00338{left:651.600000pt;}
.xca_c00338{left:652.533333pt;}
.xd8_c00338{left:656.000000pt;}
.x4_c00338{left:657.066667pt;}
.x11f_c00338{left:663.333333pt;}
.x5_c00338{left:664.800000pt;}
}





/* 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_c00339 {
    display:none;
  }
  .loading-indicator_c00339.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00339 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_c00339 { 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_c00339" -> "#page-container .classname_c00339")
 */
.pf_c00339 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00339 { /* 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_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00339 { /* 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_c00339 { /* 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_c00339 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00339 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00339 {overflow:visible;}
  }
}
.c_c00339 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00339 { /* 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_c00339:after { /* webkit #35443 */
  content: '';
}
.t_c00339:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00339 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 */
}
.__c00339 { /* 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_c00339 { /* info for Javascript */
  display:none;
}
.l_c00339 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00339 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00339 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00339: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_c00339 {
    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_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00339.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_c00339 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00339;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.000000;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;}
.m1_c00339{transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00339{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m3_c00339{transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00339{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00339{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m111_c00339{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m64_c00339{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.me1_c00339{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00339{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00339{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00339{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00339{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m58_c00339{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m114_c00339{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.me0_c00339{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mba_c00339{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m49_c00339{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00339{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00339{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00339{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mac_c00339{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m102_c00339{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me2_c00339{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.md0_c00339{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00339{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00339{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00339{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.meb_c00339{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m106_c00339{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00339{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me3_c00339{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.me9_c00339{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md4_c00339{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00339{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m63_c00339{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m59_c00339{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00339{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.me7_c00339{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m112_c00339{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m27_c00339{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m107_c00339{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.me6_c00339{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m60_c00339{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00339{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mea_c00339{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m86_c00339{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mae_c00339{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m40_c00339{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m91_c00339{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m38_c00339{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mad_c00339{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m62_c00339{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m34_c00339{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.maf_c00339{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00339{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00339{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m83_c00339{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00339{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m71_c00339{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00339{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m65_c00339{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00339{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m21_c00339{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00339{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m26_c00339{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00339{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m8_c00339{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00339{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m15_c00339{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00339{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me4_c00339{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00339{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00339{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m92_c00339{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00339{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m110_c00339{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.me5_c00339{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00339{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me8_c00339{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00339{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00339{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00339{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00339{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00339{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00339{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00339{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00339{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00339{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00339{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00339{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00339{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.med_c00339{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m56_c00339{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00339{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00339{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m72_c00339{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00339{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00339{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m25_c00339{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00339{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m61_c00339{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mec_c00339{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m85_c00339{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00339{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m88_c00339{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5_c00339{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m14_c00339{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m87_c00339{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m22_c00339{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mee_c00339{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00339{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me_c00339{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m28_c00339{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00339{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00339{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00339{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m76_c00339{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m31_c00339{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00339{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00339{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m77_c00339{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m47_c00339{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m66_c00339{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00339{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00339{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00339{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m113_c00339{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mff_c00339{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00339{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m29_c00339{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb_c00339{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00339{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m17_c00339{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00339{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00339{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m37_c00339{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00339{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00339{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mce_c00339{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m44_c00339{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m57_c00339{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00339{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00339{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m84_c00339{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00339{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00339{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m103_c00339{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m68_c00339{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mc_c00339{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m18_c00339{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m101_c00339{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m13_c00339{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00339{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00339{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00339{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m32_c00339{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00339{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10_c00339{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00339{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md_c00339{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00339{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m23_c00339{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00339{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m105_c00339{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m30_c00339{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00339{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m81_c00339{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00339{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m96_c00339{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00339{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mf_c00339{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mca_c00339{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00339{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m20_c00339{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m39_c00339{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m6_c00339{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00339{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00339{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m70_c00339{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00339{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m55_c00339{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m45_c00339{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00339{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m74_c00339{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00339{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00339{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m104_c00339{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00339{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m90_c00339{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00339{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00339{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9_c00339{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m35_c00339{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m43_c00339{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m100_c00339{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00339{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m73_c00339{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md8_c00339{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.md9_c00339{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m12_c00339{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m51_c00339{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m93_c00339{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00339{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m108_c00339{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00339{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m94_c00339{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m11_c00339{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m46_c00339{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m16_c00339{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m67_c00339{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m7_c00339{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m24_c00339{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00339{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00339{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md1_c00339{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00339{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00339{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m41_c00339{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma_c00339{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m82_c00339{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00339{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m48_c00339{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00339{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00339{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mab_c00339{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00339{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m54_c00339{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m19_c00339{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00339{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00339{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00339{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m50_c00339{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mef_c00339{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m36_c00339{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m75_c00339{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00339{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m95_c00339{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00339{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md7_c00339{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00339{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m0_c00339{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m78_c00339{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m33_c00339{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m98_c00339{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4_c00339{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m97_c00339{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00339{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mde_c00339{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m52_c00339{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00339{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m42_c00339{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00339{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00339{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m89_c00339{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00339{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00339{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00339{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.md6_c00339{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00339{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.maa_c00339{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m79_c00339{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m80_c00339{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m109_c00339{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00339{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m69_c00339{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00339{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.md5_c00339{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m99_c00339{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m53_c00339{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00339{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00339{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00339{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.md2_c00339{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mda_c00339{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.479250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479250,0.000000,0.000000,0.250000,0,0);}
.md3_c00339{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00339{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls0_c00339{letter-spacing:0.000000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{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__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00339{word-spacing:-24.000000px;}
.ws6_c00339{word-spacing:-7.500000px;}
.ws3_c00339{word-spacing:-2.956469px;}
.ws0_c00339{word-spacing:-0.666667px;}
.ws7_c00339{word-spacing:0.000000px;}
.ws1_c00339{word-spacing:2.254777px;}
.ws2_c00339{word-spacing:6.008658px;}
.ws4_c00339{word-spacing:152.500000px;}
._0_c00339{margin-left:-45.777778px;}
.fc0_c00339{color:transparent;}
.fs7_c00339{font-size:24.000000px;}
.fs6_c00339{font-size:30.000000px;}
.fs5_c00339{font-size:48.000000px;}
.fs4_c00339{font-size:54.000000px;}
.fs1_c00339{font-size:60.000000px;}
.fs2_c00339{font-size:66.000000px;}
.fs3_c00339{font-size:72.000000px;}
.fs0_c00339{font-size:78.000000px;}
.y0_c00339{bottom:0.000000px;}
.y6e_c00339{bottom:177.450000px;}
.y34_c00339{bottom:194.250000px;}
.y6d_c00339{bottom:195.150000px;}
.y33_c00339{bottom:212.250000px;}
.y6c_c00339{bottom:213.450000px;}
.y32_c00339{bottom:229.950000px;}
.y6b_c00339{bottom:231.150000px;}
.y31_c00339{bottom:247.650000px;}
.y6a_c00339{bottom:248.850000px;}
.y30_c00339{bottom:265.350000px;}
.y69_c00339{bottom:266.850000px;}
.y2f_c00339{bottom:283.050000px;}
.y68_c00339{bottom:284.550000px;}
.y2e_c00339{bottom:300.300000px;}
.y67_c00339{bottom:302.550000px;}
.y66_c00339{bottom:320.550000px;}
.y2d_c00339{bottom:321.900000px;}
.y65_c00339{bottom:338.250000px;}
.y2c_c00339{bottom:351.000000px;}
.y64_c00339{bottom:356.250000px;}
.y2b_c00339{bottom:371.550000px;}
.y63_c00339{bottom:373.950000px;}
.y2a_c00339{bottom:389.550000px;}
.y62_c00339{bottom:392.250000px;}
.y61_c00339{bottom:409.500000px;}
.y29_c00339{bottom:414.000000px;}
.y60_c00339{bottom:427.500000px;}
.y28_c00339{bottom:433.050000px;}
.y5f_c00339{bottom:445.200000px;}
.y27_c00339{bottom:450.750000px;}
.y5e_c00339{bottom:463.200000px;}
.y26_c00339{bottom:468.750000px;}
.y5d_c00339{bottom:481.200000px;}
.y25_c00339{bottom:486.300000px;}
.y5c_c00339{bottom:498.900000px;}
.y24_c00339{bottom:504.300000px;}
.y5b_c00339{bottom:516.600000px;}
.y23_c00339{bottom:522.300000px;}
.y5a_c00339{bottom:534.600000px;}
.y22_c00339{bottom:540.000000px;}
.y59_c00339{bottom:552.600000px;}
.y21_c00339{bottom:557.700000px;}
.y58_c00339{bottom:570.300000px;}
.y20_c00339{bottom:576.000000px;}
.y57_c00339{bottom:588.300000px;}
.y1f_c00339{bottom:600.150000px;}
.y56_c00339{bottom:606.300000px;}
.y1e_c00339{bottom:619.200000px;}
.y55_c00339{bottom:624.000000px;}
.y1d_c00339{bottom:636.900000px;}
.y54_c00339{bottom:642.000000px;}
.y1c_c00339{bottom:655.200000px;}
.y53_c00339{bottom:660.000000px;}
.y1b_c00339{bottom:672.900000px;}
.y52_c00339{bottom:678.000000px;}
.y1a_c00339{bottom:690.600000px;}
.y51_c00339{bottom:695.700000px;}
.y19_c00339{bottom:708.600000px;}
.y50_c00339{bottom:713.700000px;}
.y18_c00339{bottom:726.300000px;}
.y4f_c00339{bottom:731.400000px;}
.y17_c00339{bottom:744.300000px;}
.y4e_c00339{bottom:749.700000px;}
.y16_c00339{bottom:762.300000px;}
.y4d_c00339{bottom:767.400000px;}
.y15_c00339{bottom:780.000000px;}
.y4c_c00339{bottom:785.100000px;}
.y14_c00339{bottom:798.000000px;}
.y4b_c00339{bottom:803.100000px;}
.y13_c00339{bottom:815.700000px;}
.y47_c00339{bottom:826.500000px;}
.y12_c00339{bottom:833.400000px;}
.y46_c00339{bottom:841.650000px;}
.y11_c00339{bottom:851.100000px;}
.y45_c00339{bottom:857.850000px;}
.y10_c00339{bottom:869.100000px;}
.y44_c00339{bottom:872.250000px;}
.y4a_c00339{bottom:874.800000px;}
.y43_c00339{bottom:884.850000px;}
.yf_c00339{bottom:886.800000px;}
.y42_c00339{bottom:901.350000px;}
.y48_c00339{bottom:903.600000px;}
.ye_c00339{bottom:904.800000px;}
.y41_c00339{bottom:912.900000px;}
.yd_c00339{bottom:922.500000px;}
.y40_c00339{bottom:928.050000px;}
.y49_c00339{bottom:939.900000px;}
.yc_c00339{bottom:940.200000px;}
.y3f_c00339{bottom:944.550000px;}
.y3e_c00339{bottom:957.150000px;}
.yb_c00339{bottom:958.500000px;}
.y3d_c00339{bottom:973.050000px;}
.ya_c00339{bottom:976.200000px;}
.y3c_c00339{bottom:988.200000px;}
.y9_c00339{bottom:994.200000px;}
.y3b_c00339{bottom:1009.800000px;}
.y8_c00339{bottom:1011.450000px;}
.y3a_c00339{bottom:1029.300000px;}
.y7_c00339{bottom:1029.450000px;}
.y6_c00339{bottom:1047.150000px;}
.y39_c00339{bottom:1047.300000px;}
.y38_c00339{bottom:1064.550000px;}
.y5_c00339{bottom:1065.150000px;}
.y37_c00339{bottom:1082.100000px;}
.y4_c00339{bottom:1082.850000px;}
.y3_c00339{bottom:1101.300000px;}
.y36_c00339{bottom:1108.050000px;}
.y2_c00339{bottom:1122.900000px;}
.y35_c00339{bottom:1126.050000px;}
.y1_c00339{bottom:1150.500000px;}
.h9_c00339{height:24.000000px;}
.h8_c00339{height:30.000000px;}
.h7_c00339{height:48.000000px;}
.h6_c00339{height:54.000000px;}
.h3_c00339{height:60.000000px;}
.h4_c00339{height:66.000000px;}
.h5_c00339{height:72.000000px;}
.h2_c00339{height:78.000000px;}
.h1_c00339{height:1270.500000px;}
.h0_c00339{height:1270.799927px;}
.w0_c00339{width:960.480010px;}
.w1_c00339{width:960.750000px;}
.x0_c00339{left:0.000000px;}
.x1_c00339{left:201.900000px;}
.x80_c00339{left:207.750000px;}
.x9a_c00339{left:209.550000px;}
.x9d_c00339{left:210.600000px;}
.x9e_c00339{left:218.100000px;}
.x5_c00339{left:221.400000px;}
.x1e_c00339{left:222.750000px;}
.x59_c00339{left:224.100000px;}
.x83_c00339{left:226.050000px;}
.x9c_c00339{left:227.100000px;}
.xa6_c00339{left:228.450000px;}
.xe_c00339{left:234.300000px;}
.x84_c00339{left:237.900000px;}
.x18_c00339{left:239.250000px;}
.x4e_c00339{left:240.600000px;}
.x6_c00339{left:241.950000px;}
.x7a_c00339{left:244.650000px;}
.x67_c00339{left:246.000000px;}
.xa4_c00339{left:249.900000px;}
.x71_c00339{left:251.250000px;}
.x2_c00339{left:254.100000px;}
.x76_c00339{left:255.600000px;}
.x60_c00339{left:257.700000px;}
.x19_c00339{left:259.350000px;}
.x42_c00339{left:260.700000px;}
.x3b_c00339{left:262.050000px;}
.x57_c00339{left:263.100000px;}
.x5a_c00339{left:264.450000px;}
.xa8_c00339{left:266.250000px;}
.x1f_c00339{left:267.450000px;}
.x13_c00339{left:272.250000px;}
.x9b_c00339{left:273.600000px;}
.x4f_c00339{left:274.800000px;}
.x52_c00339{left:276.150000px;}
.x98_c00339{left:277.200000px;}
.x43_c00339{left:279.750000px;}
.x8a_c00339{left:282.900000px;}
.x7_c00339{left:284.100000px;}
.x94_c00339{left:285.150000px;}
.x37_c00339{left:286.200000px;}
.x72_c00339{left:288.300000px;}
.xf_c00339{left:290.100000px;}
.x6b_c00339{left:292.350000px;}
.xa5_c00339{left:294.900000px;}
.x44_c00339{left:298.050000px;}
.xaa_c00339{left:299.400000px;}
.x32_c00339{left:300.750000px;}
.x38_c00339{left:302.700000px;}
.x2b_c00339{left:303.900000px;}
.x9f_c00339{left:306.000000px;}
.x68_c00339{left:307.800000px;}
.x64_c00339{left:309.450000px;}
.x1a_c00339{left:310.500000px;}
.x4a_c00339{left:312.300000px;}
.x10_c00339{left:313.500000px;}
.x14_c00339{left:316.200000px;}
.x23_c00339{left:317.400000px;}
.x33_c00339{left:320.250000px;}
.x81_c00339{left:322.050000px;}
.x85_c00339{left:324.750000px;}
.x73_c00339{left:326.400000px;}
.x3c_c00339{left:327.600000px;}
.x45_c00339{left:328.950000px;}
.xab_c00339{left:330.300000px;}
.x65_c00339{left:332.100000px;}
.xa7_c00339{left:333.900000px;}
.x5b_c00339{left:337.950000px;}
.x95_c00339{left:339.150000px;}
.x88_c00339{left:340.350000px;}
.x91_c00339{left:342.450000px;}
.x77_c00339{left:344.100000px;}
.x2c_c00339{left:345.300000px;}
.x8f_c00339{left:347.400000px;}
.x99_c00339{left:349.500000px;}
.x6c_c00339{left:351.450000px;}
.x74_c00339{left:354.900000px;}
.x20_c00339{left:357.150000px;}
.x39_c00339{left:358.800000px;}
.x26_c00339{left:360.300000px;}
.x92_c00339{left:361.500000px;}
.x61_c00339{left:363.150000px;}
.x7e_c00339{left:364.200000px;}
.x4b_c00339{left:366.300000px;}
.x8_c00339{left:367.950000px;}
.x2d_c00339{left:369.450000px;}
.x69_c00339{left:370.800000px;}
.x3d_c00339{left:371.850000px;}
.x86_c00339{left:373.650000px;}
.x7b_c00339{left:375.300000px;}
.x50_c00339{left:377.400000px;}
.x21_c00339{left:379.050000px;}
.x8d_c00339{left:380.250000px;}
.x15_c00339{left:382.500000px;}
.x2e_c00339{left:384.600000px;}
.x78_c00339{left:387.600000px;}
.x7f_c00339{left:389.400000px;}
.x46_c00339{left:391.200000px;}
.x27_c00339{left:394.200000px;}
.x24_c00339{left:398.100000px;}
.x96_c00339{left:400.350000px;}
.x9_c00339{left:401.850000px;}
.x3a_c00339{left:403.800000px;}
.x2f_c00339{left:408.300000px;}
.x6d_c00339{left:409.650000px;}
.x47_c00339{left:413.100000px;}
.x3e_c00339{left:414.750000px;}
.x93_c00339{left:416.250000px;}
.xa_c00339{left:418.350000px;}
.x25_c00339{left:419.700000px;}
.x28_c00339{left:421.200000px;}
.x7c_c00339{left:423.150000px;}
.x6e_c00339{left:424.800000px;}
.x8e_c00339{left:426.000000px;}
.x16_c00339{left:427.800000px;}
.x3f_c00339{left:431.700000px;}
.x79_c00339{left:433.650000px;}
.x34_c00339{left:434.850000px;}
.x62_c00339{left:435.900000px;}
.x53_c00339{left:437.400000px;}
.x8b_c00339{left:439.500000px;}
.x82_c00339{left:440.550000px;}
.x29_c00339{left:442.050000px;}
.x3_c00339{left:445.200000px;}
.x56_c00339{left:448.350000px;}
.x87_c00339{left:449.550000px;}
.x48_c00339{left:450.600000px;}
.x22_c00339{left:453.900000px;}
.x30_c00339{left:456.900000px;}
.x7d_c00339{left:459.150000px;}
.x58_c00339{left:460.950000px;}
.xa1_c00339{left:462.300000px;}
.x54_c00339{left:463.350000px;}
.xb_c00339{left:464.850000px;}
.x4c_c00339{left:466.650000px;}
.x5c_c00339{left:468.600000px;}
.x11_c00339{left:469.800000px;}
.x1b_c00339{left:471.900000px;}
.x51_c00339{left:473.250000px;}
.x97_c00339{left:475.950000px;}
.x8c_c00339{left:477.000000px;}
.x49_c00339{left:482.250000px;}
.x4d_c00339{left:483.900000px;}
.xc_c00339{left:484.950000px;}
.x5e_c00339{left:486.300000px;}
.x17_c00339{left:491.550000px;}
.x1c_c00339{left:493.800000px;}
.xa0_c00339{left:495.300000px;}
.x66_c00339{left:497.700000px;}
.x6f_c00339{left:498.900000px;}
.x40_c00339{left:500.850000px;}
.x31_c00339{left:501.900000px;}
.x55_c00339{left:503.700000px;}
.x35_c00339{left:505.800000px;}
.x70_c00339{left:507.600000px;}
.x5f_c00339{left:510.750000px;}
.x6a_c00339{left:513.000000px;}
.xd_c00339{left:514.050000px;}
.x5d_c00339{left:515.700000px;}
.x41_c00339{left:516.750000px;}
.x2a_c00339{left:520.200000px;}
.x12_c00339{left:524.550000px;}
.xa2_c00339{left:526.350000px;}
.x90_c00339{left:528.900000px;}
.x36_c00339{left:530.250000px;}
.x63_c00339{left:531.600000px;}
.x89_c00339{left:532.650000px;}
.xa3_c00339{left:534.300000px;}
.x1d_c00339{left:535.950000px;}
.x75_c00339{left:538.650000px;}
.xa9_c00339{left:541.650000px;}
.xba_c00339{left:560.100000px;}
.xfd_c00339{left:562.350000px;}
.xe3_c00339{left:574.200000px;}
.xb3_c00339{left:575.250000px;}
.xac_c00339{left:577.800000px;}
.x101_c00339{left:579.600000px;}
.x10b_c00339{left:580.950000px;}
.x125_c00339{left:582.000000px;}
.x118_c00339{left:583.650000px;}
.xe5_c00339{left:588.750000px;}
.xc2_c00339{left:592.950000px;}
.x12b_c00339{left:595.350000px;}
.xc9_c00339{left:597.450000px;}
.x119_c00339{left:600.900000px;}
.x11c_c00339{left:602.850000px;}
.xbb_c00339{left:604.800000px;}
.x10e_c00339{left:608.400000px;}
.xe6_c00339{left:610.650000px;}
.xf4_c00339{left:611.850000px;}
.x130_c00339{left:614.100000px;}
.x111_c00339{left:616.500000px;}
.xd0_c00339{left:619.200000px;}
.xdc_c00339{left:620.700000px;}
.x135_c00339{left:621.900000px;}
.x143_c00339{left:623.550000px;}
.x131_c00339{left:624.900000px;}
.x126_c00339{left:625.950000px;}
.x102_c00339{left:627.900000px;}
.xe7_c00339{left:628.950000px;}
.xf5_c00339{left:630.600000px;}
.x10c_c00339{left:633.150000px;}
.x112_c00339{left:634.200000px;}
.xca_c00339{left:635.250000px;}
.xc3_c00339{left:636.450000px;}
.x116_c00339{left:637.650000px;}
.xd7_c00339{left:640.800000px;}
.xe8_c00339{left:643.050000px;}
.x127_c00339{left:644.700000px;}
.xfe_c00339{left:647.250000px;}
.xd1_c00339{left:652.350000px;}
.xc4_c00339{left:654.150000px;}
.x11d_c00339{left:655.800000px;}
.xee_c00339{left:656.850000px;}
.xf6_c00339{left:659.700000px;}
.xd8_c00339{left:662.700000px;}
.x107_c00339{left:664.650000px;}
.xb4_c00339{left:666.000000px;}
.x12c_c00339{left:667.350000px;}
.x103_c00339{left:668.550000px;}
.xbc_c00339{left:669.600000px;}
.x11e_c00339{left:673.800000px;}
.xb5_c00339{left:675.000000px;}
.xd9_c00339{left:677.400000px;}
.x132_c00339{left:679.350000px;}
.xdd_c00339{left:682.200000px;}
.xcb_c00339{left:684.600000px;}
.x11a_c00339{left:688.050000px;}
.xe9_c00339{left:690.600000px;}
.xd2_c00339{left:694.800000px;}
.x128_c00339{left:696.900000px;}
.xad_c00339{left:698.400000px;}
.x14a_c00339{left:700.500000px;}
.x14c_c00339{left:701.700000px;}
.x12e_c00339{left:703.200000px;}
.xf7_c00339{left:706.050000px;}
.xf1_c00339{left:708.300000px;}
.xda_c00339{left:710.850000px;}
.x13a_c00339{left:715.050000px;}
.xc5_c00339{left:716.100000px;}
.x11b_c00339{left:717.900000px;}
.xff_c00339{left:718.950000px;}
.xbd_c00339{left:720.750000px;}
.xcc_c00339{left:722.700000px;}
.x129_c00339{left:724.200000px;}
.x113_c00339{left:725.250000px;}
.xef_c00339{left:727.800000px;}
.x11f_c00339{left:728.850000px;}
.xb6_c00339{left:731.550000px;}
.x140_c00339{left:733.050000px;}
.xae_c00339{left:734.400000px;}
.x13c_c00339{left:737.550000px;}
.xde_c00339{left:740.550000px;}
.xea_c00339{left:742.800000px;}
.x137_c00339{left:747.900000px;}
.xf2_c00339{left:749.400000px;}
.x108_c00339{left:751.350000px;}
.xbe_c00339{left:752.850000px;}
.x144_c00339{left:754.350000px;}
.xdf_c00339{left:756.750000px;}
.x147_c00339{left:758.250000px;}
.xd3_c00339{left:759.300000px;}
.x104_c00339{left:760.650000px;}
.x13d_c00339{left:761.700000px;}
.xaf_c00339{left:763.200000px;}
.xcd_c00339{left:764.400000px;}
.x12f_c00339{left:765.450000px;}
.xf3_c00339{left:767.400000px;}
.xc6_c00339{left:768.600000px;}
.x122_c00339{left:770.250000px;}
.x12a_c00339{left:772.500000px;}
.x114_c00339{left:774.150000px;}
.xeb_c00339{left:776.250000px;}
.xd4_c00339{left:777.300000px;}
.x117_c00339{left:779.100000px;}
.xb7_c00339{left:780.900000px;}
.x4_c00339{left:782.100000px;}
.xf8_c00339{left:783.150000px;}
.xf0_c00339{left:784.650000px;}
.x120_c00339{left:788.250000px;}
.x14b_c00339{left:789.450000px;}
.x115_c00339{left:791.100000px;}
.x10f_c00339{left:792.750000px;}
.xbf_c00339{left:796.050000px;}
.xb0_c00339{left:798.150000px;}
.xe0_c00339{left:799.500000px;}
.xb8_c00339{left:801.750000px;}
.xc7_c00339{left:804.900000px;}
.x138_c00339{left:806.550000px;}
.x133_c00339{left:807.750000px;}
.x148_c00339{left:808.950000px;}
.x136_c00339{left:810.900000px;}
.x109_c00339{left:811.950000px;}
.x105_c00339{left:813.600000px;}
.xb1_c00339{left:815.400000px;}
.x141_c00339{left:818.700000px;}
.xe1_c00339{left:820.800000px;}
.x13e_c00339{left:822.150000px;}
.x123_c00339{left:823.950000px;}
.xe4_c00339{left:825.150000px;}
.xf9_c00339{left:826.350000px;}
.xce_c00339{left:827.400000px;}
.x12d_c00339{left:829.650000px;}
.xc0_c00339{left:831.000000px;}
.x110_c00339{left:834.600000px;}
.xd5_c00339{left:836.400000px;}
.xc8_c00339{left:840.150000px;}
.x100_c00339{left:842.400000px;}
.x10d_c00339{left:844.500000px;}
.xb9_c00339{left:846.750000px;}
.x13b_c00339{left:848.400000px;}
.xc1_c00339{left:849.750000px;}
.x145_c00339{left:853.500000px;}
.xcf_c00339{left:854.700000px;}
.xec_c00339{left:855.750000px;}
.xed_c00339{left:856.800000px;}
.x139_c00339{left:859.800000px;}
.x13f_c00339{left:861.300000px;}
.x134_c00339{left:862.800000px;}
.x106_c00339{left:864.450000px;}
.x121_c00339{left:865.950000px;}
.xd6_c00339{left:869.100000px;}
.x124_c00339{left:873.300000px;}
.x142_c00339{left:874.800000px;}
.x10a_c00339{left:876.450000px;}
.xdb_c00339{left:877.500000px;}
.xe2_c00339{left:882.000000px;}
.xfc_c00339{left:883.500000px;}
.xfa_c00339{left:885.300000px;}
.x149_c00339{left:886.350000px;}
.xb2_c00339{left:891.750000px;}
.xfb_c00339{left:893.550000px;}
.x146_c00339{left:899.550000px;}
.x14d_c00339{left:901.050000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.ws5_c00339{word-spacing:-21.333333pt;}
.ws6_c00339{word-spacing:-6.666667pt;}
.ws3_c00339{word-spacing:-2.627973pt;}
.ws0_c00339{word-spacing:-0.592593pt;}
.ws7_c00339{word-spacing:0.000000pt;}
.ws1_c00339{word-spacing:2.004246pt;}
.ws2_c00339{word-spacing:5.341029pt;}
.ws4_c00339{word-spacing:135.555556pt;}
._0_c00339{margin-left:-40.691358pt;}
.fs7_c00339{font-size:21.333333pt;}
.fs6_c00339{font-size:26.666667pt;}
.fs5_c00339{font-size:42.666667pt;}
.fs4_c00339{font-size:48.000000pt;}
.fs1_c00339{font-size:53.333333pt;}
.fs2_c00339{font-size:58.666667pt;}
.fs3_c00339{font-size:64.000000pt;}
.fs0_c00339{font-size:69.333333pt;}
.y0_c00339{bottom:0.000000pt;}
.y6e_c00339{bottom:157.733333pt;}
.y34_c00339{bottom:172.666667pt;}
.y6d_c00339{bottom:173.466667pt;}
.y33_c00339{bottom:188.666667pt;}
.y6c_c00339{bottom:189.733333pt;}
.y32_c00339{bottom:204.400000pt;}
.y6b_c00339{bottom:205.466667pt;}
.y31_c00339{bottom:220.133333pt;}
.y6a_c00339{bottom:221.200000pt;}
.y30_c00339{bottom:235.866667pt;}
.y69_c00339{bottom:237.200000pt;}
.y2f_c00339{bottom:251.600000pt;}
.y68_c00339{bottom:252.933333pt;}
.y2e_c00339{bottom:266.933333pt;}
.y67_c00339{bottom:268.933333pt;}
.y66_c00339{bottom:284.933333pt;}
.y2d_c00339{bottom:286.133333pt;}
.y65_c00339{bottom:300.666667pt;}
.y2c_c00339{bottom:312.000000pt;}
.y64_c00339{bottom:316.666667pt;}
.y2b_c00339{bottom:330.266667pt;}
.y63_c00339{bottom:332.400000pt;}
.y2a_c00339{bottom:346.266667pt;}
.y62_c00339{bottom:348.666667pt;}
.y61_c00339{bottom:364.000000pt;}
.y29_c00339{bottom:368.000000pt;}
.y60_c00339{bottom:380.000000pt;}
.y28_c00339{bottom:384.933333pt;}
.y5f_c00339{bottom:395.733333pt;}
.y27_c00339{bottom:400.666667pt;}
.y5e_c00339{bottom:411.733333pt;}
.y26_c00339{bottom:416.666667pt;}
.y5d_c00339{bottom:427.733333pt;}
.y25_c00339{bottom:432.266667pt;}
.y5c_c00339{bottom:443.466667pt;}
.y24_c00339{bottom:448.266667pt;}
.y5b_c00339{bottom:459.200000pt;}
.y23_c00339{bottom:464.266667pt;}
.y5a_c00339{bottom:475.200000pt;}
.y22_c00339{bottom:480.000000pt;}
.y59_c00339{bottom:491.200000pt;}
.y21_c00339{bottom:495.733333pt;}
.y58_c00339{bottom:506.933333pt;}
.y20_c00339{bottom:512.000000pt;}
.y57_c00339{bottom:522.933333pt;}
.y1f_c00339{bottom:533.466667pt;}
.y56_c00339{bottom:538.933333pt;}
.y1e_c00339{bottom:550.400000pt;}
.y55_c00339{bottom:554.666667pt;}
.y1d_c00339{bottom:566.133333pt;}
.y54_c00339{bottom:570.666667pt;}
.y1c_c00339{bottom:582.400000pt;}
.y53_c00339{bottom:586.666667pt;}
.y1b_c00339{bottom:598.133333pt;}
.y52_c00339{bottom:602.666667pt;}
.y1a_c00339{bottom:613.866667pt;}
.y51_c00339{bottom:618.400000pt;}
.y19_c00339{bottom:629.866667pt;}
.y50_c00339{bottom:634.400000pt;}
.y18_c00339{bottom:645.600000pt;}
.y4f_c00339{bottom:650.133333pt;}
.y17_c00339{bottom:661.600000pt;}
.y4e_c00339{bottom:666.400000pt;}
.y16_c00339{bottom:677.600000pt;}
.y4d_c00339{bottom:682.133333pt;}
.y15_c00339{bottom:693.333333pt;}
.y4c_c00339{bottom:697.866667pt;}
.y14_c00339{bottom:709.333333pt;}
.y4b_c00339{bottom:713.866667pt;}
.y13_c00339{bottom:725.066667pt;}
.y47_c00339{bottom:734.666667pt;}
.y12_c00339{bottom:740.800000pt;}
.y46_c00339{bottom:748.133333pt;}
.y11_c00339{bottom:756.533333pt;}
.y45_c00339{bottom:762.533333pt;}
.y10_c00339{bottom:772.533333pt;}
.y44_c00339{bottom:775.333333pt;}
.y4a_c00339{bottom:777.600000pt;}
.y43_c00339{bottom:786.533333pt;}
.yf_c00339{bottom:788.266667pt;}
.y42_c00339{bottom:801.200000pt;}
.y48_c00339{bottom:803.200000pt;}
.ye_c00339{bottom:804.266667pt;}
.y41_c00339{bottom:811.466667pt;}
.yd_c00339{bottom:820.000000pt;}
.y40_c00339{bottom:824.933333pt;}
.y49_c00339{bottom:835.466667pt;}
.yc_c00339{bottom:835.733333pt;}
.y3f_c00339{bottom:839.600000pt;}
.y3e_c00339{bottom:850.800000pt;}
.yb_c00339{bottom:852.000000pt;}
.y3d_c00339{bottom:864.933333pt;}
.ya_c00339{bottom:867.733333pt;}
.y3c_c00339{bottom:878.400000pt;}
.y9_c00339{bottom:883.733333pt;}
.y3b_c00339{bottom:897.600000pt;}
.y8_c00339{bottom:899.066667pt;}
.y3a_c00339{bottom:914.933333pt;}
.y7_c00339{bottom:915.066667pt;}
.y6_c00339{bottom:930.800000pt;}
.y39_c00339{bottom:930.933333pt;}
.y38_c00339{bottom:946.266667pt;}
.y5_c00339{bottom:946.800000pt;}
.y37_c00339{bottom:961.866667pt;}
.y4_c00339{bottom:962.533333pt;}
.y3_c00339{bottom:978.933333pt;}
.y36_c00339{bottom:984.933333pt;}
.y2_c00339{bottom:998.133333pt;}
.y35_c00339{bottom:1000.933333pt;}
.y1_c00339{bottom:1022.666667pt;}
.h9_c00339{height:21.333333pt;}
.h8_c00339{height:26.666667pt;}
.h7_c00339{height:42.666667pt;}
.h6_c00339{height:48.000000pt;}
.h3_c00339{height:53.333333pt;}
.h4_c00339{height:58.666667pt;}
.h5_c00339{height:64.000000pt;}
.h2_c00339{height:69.333333pt;}
.h1_c00339{height:1129.333333pt;}
.h0_c00339{height:1129.599935pt;}
.w0_c00339{width:853.760009pt;}
.w1_c00339{width:854.000000pt;}
.x0_c00339{left:0.000000pt;}
.x1_c00339{left:179.466667pt;}
.x80_c00339{left:184.666667pt;}
.x9a_c00339{left:186.266667pt;}
.x9d_c00339{left:187.200000pt;}
.x9e_c00339{left:193.866667pt;}
.x5_c00339{left:196.800000pt;}
.x1e_c00339{left:198.000000pt;}
.x59_c00339{left:199.200000pt;}
.x83_c00339{left:200.933333pt;}
.x9c_c00339{left:201.866667pt;}
.xa6_c00339{left:203.066667pt;}
.xe_c00339{left:208.266667pt;}
.x84_c00339{left:211.466667pt;}
.x18_c00339{left:212.666667pt;}
.x4e_c00339{left:213.866667pt;}
.x6_c00339{left:215.066667pt;}
.x7a_c00339{left:217.466667pt;}
.x67_c00339{left:218.666667pt;}
.xa4_c00339{left:222.133333pt;}
.x71_c00339{left:223.333333pt;}
.x2_c00339{left:225.866667pt;}
.x76_c00339{left:227.200000pt;}
.x60_c00339{left:229.066667pt;}
.x19_c00339{left:230.533333pt;}
.x42_c00339{left:231.733333pt;}
.x3b_c00339{left:232.933333pt;}
.x57_c00339{left:233.866667pt;}
.x5a_c00339{left:235.066667pt;}
.xa8_c00339{left:236.666667pt;}
.x1f_c00339{left:237.733333pt;}
.x13_c00339{left:242.000000pt;}
.x9b_c00339{left:243.200000pt;}
.x4f_c00339{left:244.266667pt;}
.x52_c00339{left:245.466667pt;}
.x98_c00339{left:246.400000pt;}
.x43_c00339{left:248.666667pt;}
.x8a_c00339{left:251.466667pt;}
.x7_c00339{left:252.533333pt;}
.x94_c00339{left:253.466667pt;}
.x37_c00339{left:254.400000pt;}
.x72_c00339{left:256.266667pt;}
.xf_c00339{left:257.866667pt;}
.x6b_c00339{left:259.866667pt;}
.xa5_c00339{left:262.133333pt;}
.x44_c00339{left:264.933333pt;}
.xaa_c00339{left:266.133333pt;}
.x32_c00339{left:267.333333pt;}
.x38_c00339{left:269.066667pt;}
.x2b_c00339{left:270.133333pt;}
.x9f_c00339{left:272.000000pt;}
.x68_c00339{left:273.600000pt;}
.x64_c00339{left:275.066667pt;}
.x1a_c00339{left:276.000000pt;}
.x4a_c00339{left:277.600000pt;}
.x10_c00339{left:278.666667pt;}
.x14_c00339{left:281.066667pt;}
.x23_c00339{left:282.133333pt;}
.x33_c00339{left:284.666667pt;}
.x81_c00339{left:286.266667pt;}
.x85_c00339{left:288.666667pt;}
.x73_c00339{left:290.133333pt;}
.x3c_c00339{left:291.200000pt;}
.x45_c00339{left:292.400000pt;}
.xab_c00339{left:293.600000pt;}
.x65_c00339{left:295.200000pt;}
.xa7_c00339{left:296.800000pt;}
.x5b_c00339{left:300.400000pt;}
.x95_c00339{left:301.466667pt;}
.x88_c00339{left:302.533333pt;}
.x91_c00339{left:304.400000pt;}
.x77_c00339{left:305.866667pt;}
.x2c_c00339{left:306.933333pt;}
.x8f_c00339{left:308.800000pt;}
.x99_c00339{left:310.666667pt;}
.x6c_c00339{left:312.400000pt;}
.x74_c00339{left:315.466667pt;}
.x20_c00339{left:317.466667pt;}
.x39_c00339{left:318.933333pt;}
.x26_c00339{left:320.266667pt;}
.x92_c00339{left:321.333333pt;}
.x61_c00339{left:322.800000pt;}
.x7e_c00339{left:323.733333pt;}
.x4b_c00339{left:325.600000pt;}
.x8_c00339{left:327.066667pt;}
.x2d_c00339{left:328.400000pt;}
.x69_c00339{left:329.600000pt;}
.x3d_c00339{left:330.533333pt;}
.x86_c00339{left:332.133333pt;}
.x7b_c00339{left:333.600000pt;}
.x50_c00339{left:335.466667pt;}
.x21_c00339{left:336.933333pt;}
.x8d_c00339{left:338.000000pt;}
.x15_c00339{left:340.000000pt;}
.x2e_c00339{left:341.866667pt;}
.x78_c00339{left:344.533333pt;}
.x7f_c00339{left:346.133333pt;}
.x46_c00339{left:347.733333pt;}
.x27_c00339{left:350.400000pt;}
.x24_c00339{left:353.866667pt;}
.x96_c00339{left:355.866667pt;}
.x9_c00339{left:357.200000pt;}
.x3a_c00339{left:358.933333pt;}
.x2f_c00339{left:362.933333pt;}
.x6d_c00339{left:364.133333pt;}
.x47_c00339{left:367.200000pt;}
.x3e_c00339{left:368.666667pt;}
.x93_c00339{left:370.000000pt;}
.xa_c00339{left:371.866667pt;}
.x25_c00339{left:373.066667pt;}
.x28_c00339{left:374.400000pt;}
.x7c_c00339{left:376.133333pt;}
.x6e_c00339{left:377.600000pt;}
.x8e_c00339{left:378.666667pt;}
.x16_c00339{left:380.266667pt;}
.x3f_c00339{left:383.733333pt;}
.x79_c00339{left:385.466667pt;}
.x34_c00339{left:386.533333pt;}
.x62_c00339{left:387.466667pt;}
.x53_c00339{left:388.800000pt;}
.x8b_c00339{left:390.666667pt;}
.x82_c00339{left:391.600000pt;}
.x29_c00339{left:392.933333pt;}
.x3_c00339{left:395.733333pt;}
.x56_c00339{left:398.533333pt;}
.x87_c00339{left:399.600000pt;}
.x48_c00339{left:400.533333pt;}
.x22_c00339{left:403.466667pt;}
.x30_c00339{left:406.133333pt;}
.x7d_c00339{left:408.133333pt;}
.x58_c00339{left:409.733333pt;}
.xa1_c00339{left:410.933333pt;}
.x54_c00339{left:411.866667pt;}
.xb_c00339{left:413.200000pt;}
.x4c_c00339{left:414.800000pt;}
.x5c_c00339{left:416.533333pt;}
.x11_c00339{left:417.600000pt;}
.x1b_c00339{left:419.466667pt;}
.x51_c00339{left:420.666667pt;}
.x97_c00339{left:423.066667pt;}
.x8c_c00339{left:424.000000pt;}
.x49_c00339{left:428.666667pt;}
.x4d_c00339{left:430.133333pt;}
.xc_c00339{left:431.066667pt;}
.x5e_c00339{left:432.266667pt;}
.x17_c00339{left:436.933333pt;}
.x1c_c00339{left:438.933333pt;}
.xa0_c00339{left:440.266667pt;}
.x66_c00339{left:442.400000pt;}
.x6f_c00339{left:443.466667pt;}
.x40_c00339{left:445.200000pt;}
.x31_c00339{left:446.133333pt;}
.x55_c00339{left:447.733333pt;}
.x35_c00339{left:449.600000pt;}
.x70_c00339{left:451.200000pt;}
.x5f_c00339{left:454.000000pt;}
.x6a_c00339{left:456.000000pt;}
.xd_c00339{left:456.933333pt;}
.x5d_c00339{left:458.400000pt;}
.x41_c00339{left:459.333333pt;}
.x2a_c00339{left:462.400000pt;}
.x12_c00339{left:466.266667pt;}
.xa2_c00339{left:467.866667pt;}
.x90_c00339{left:470.133333pt;}
.x36_c00339{left:471.333333pt;}
.x63_c00339{left:472.533333pt;}
.x89_c00339{left:473.466667pt;}
.xa3_c00339{left:474.933333pt;}
.x1d_c00339{left:476.400000pt;}
.x75_c00339{left:478.800000pt;}
.xa9_c00339{left:481.466667pt;}
.xba_c00339{left:497.866667pt;}
.xfd_c00339{left:499.866667pt;}
.xe3_c00339{left:510.400000pt;}
.xb3_c00339{left:511.333333pt;}
.xac_c00339{left:513.600000pt;}
.x101_c00339{left:515.200000pt;}
.x10b_c00339{left:516.400000pt;}
.x125_c00339{left:517.333333pt;}
.x118_c00339{left:518.800000pt;}
.xe5_c00339{left:523.333333pt;}
.xc2_c00339{left:527.066667pt;}
.x12b_c00339{left:529.200000pt;}
.xc9_c00339{left:531.066667pt;}
.x119_c00339{left:534.133333pt;}
.x11c_c00339{left:535.866667pt;}
.xbb_c00339{left:537.600000pt;}
.x10e_c00339{left:540.800000pt;}
.xe6_c00339{left:542.800000pt;}
.xf4_c00339{left:543.866667pt;}
.x130_c00339{left:545.866667pt;}
.x111_c00339{left:548.000000pt;}
.xd0_c00339{left:550.400000pt;}
.xdc_c00339{left:551.733333pt;}
.x135_c00339{left:552.800000pt;}
.x143_c00339{left:554.266667pt;}
.x131_c00339{left:555.466667pt;}
.x126_c00339{left:556.400000pt;}
.x102_c00339{left:558.133333pt;}
.xe7_c00339{left:559.066667pt;}
.xf5_c00339{left:560.533333pt;}
.x10c_c00339{left:562.800000pt;}
.x112_c00339{left:563.733333pt;}
.xca_c00339{left:564.666667pt;}
.xc3_c00339{left:565.733333pt;}
.x116_c00339{left:566.800000pt;}
.xd7_c00339{left:569.600000pt;}
.xe8_c00339{left:571.600000pt;}
.x127_c00339{left:573.066667pt;}
.xfe_c00339{left:575.333333pt;}
.xd1_c00339{left:579.866667pt;}
.xc4_c00339{left:581.466667pt;}
.x11d_c00339{left:582.933333pt;}
.xee_c00339{left:583.866667pt;}
.xf6_c00339{left:586.400000pt;}
.xd8_c00339{left:589.066667pt;}
.x107_c00339{left:590.800000pt;}
.xb4_c00339{left:592.000000pt;}
.x12c_c00339{left:593.200000pt;}
.x103_c00339{left:594.266667pt;}
.xbc_c00339{left:595.200000pt;}
.x11e_c00339{left:598.933333pt;}
.xb5_c00339{left:600.000000pt;}
.xd9_c00339{left:602.133333pt;}
.x132_c00339{left:603.866667pt;}
.xdd_c00339{left:606.400000pt;}
.xcb_c00339{left:608.533333pt;}
.x11a_c00339{left:611.600000pt;}
.xe9_c00339{left:613.866667pt;}
.xd2_c00339{left:617.600000pt;}
.x128_c00339{left:619.466667pt;}
.xad_c00339{left:620.800000pt;}
.x14a_c00339{left:622.666667pt;}
.x14c_c00339{left:623.733333pt;}
.x12e_c00339{left:625.066667pt;}
.xf7_c00339{left:627.600000pt;}
.xf1_c00339{left:629.600000pt;}
.xda_c00339{left:631.866667pt;}
.x13a_c00339{left:635.600000pt;}
.xc5_c00339{left:636.533333pt;}
.x11b_c00339{left:638.133333pt;}
.xff_c00339{left:639.066667pt;}
.xbd_c00339{left:640.666667pt;}
.xcc_c00339{left:642.400000pt;}
.x129_c00339{left:643.733333pt;}
.x113_c00339{left:644.666667pt;}
.xef_c00339{left:646.933333pt;}
.x11f_c00339{left:647.866667pt;}
.xb6_c00339{left:650.266667pt;}
.x140_c00339{left:651.600000pt;}
.xae_c00339{left:652.800000pt;}
.x13c_c00339{left:655.600000pt;}
.xde_c00339{left:658.266667pt;}
.xea_c00339{left:660.266667pt;}
.x137_c00339{left:664.800000pt;}
.xf2_c00339{left:666.133333pt;}
.x108_c00339{left:667.866667pt;}
.xbe_c00339{left:669.200000pt;}
.x144_c00339{left:670.533333pt;}
.xdf_c00339{left:672.666667pt;}
.x147_c00339{left:674.000000pt;}
.xd3_c00339{left:674.933333pt;}
.x104_c00339{left:676.133333pt;}
.x13d_c00339{left:677.066667pt;}
.xaf_c00339{left:678.400000pt;}
.xcd_c00339{left:679.466667pt;}
.x12f_c00339{left:680.400000pt;}
.xf3_c00339{left:682.133333pt;}
.xc6_c00339{left:683.200000pt;}
.x122_c00339{left:684.666667pt;}
.x12a_c00339{left:686.666667pt;}
.x114_c00339{left:688.133333pt;}
.xeb_c00339{left:690.000000pt;}
.xd4_c00339{left:690.933333pt;}
.x117_c00339{left:692.533333pt;}
.xb7_c00339{left:694.133333pt;}
.x4_c00339{left:695.200000pt;}
.xf8_c00339{left:696.133333pt;}
.xf0_c00339{left:697.466667pt;}
.x120_c00339{left:700.666667pt;}
.x14b_c00339{left:701.733333pt;}
.x115_c00339{left:703.200000pt;}
.x10f_c00339{left:704.666667pt;}
.xbf_c00339{left:707.600000pt;}
.xb0_c00339{left:709.466667pt;}
.xe0_c00339{left:710.666667pt;}
.xb8_c00339{left:712.666667pt;}
.xc7_c00339{left:715.466667pt;}
.x138_c00339{left:716.933333pt;}
.x133_c00339{left:718.000000pt;}
.x148_c00339{left:719.066667pt;}
.x136_c00339{left:720.800000pt;}
.x109_c00339{left:721.733333pt;}
.x105_c00339{left:723.200000pt;}
.xb1_c00339{left:724.800000pt;}
.x141_c00339{left:727.733333pt;}
.xe1_c00339{left:729.600000pt;}
.x13e_c00339{left:730.800000pt;}
.x123_c00339{left:732.400000pt;}
.xe4_c00339{left:733.466667pt;}
.xf9_c00339{left:734.533333pt;}
.xce_c00339{left:735.466667pt;}
.x12d_c00339{left:737.466667pt;}
.xc0_c00339{left:738.666667pt;}
.x110_c00339{left:741.866667pt;}
.xd5_c00339{left:743.466667pt;}
.xc8_c00339{left:746.800000pt;}
.x100_c00339{left:748.800000pt;}
.x10d_c00339{left:750.666667pt;}
.xb9_c00339{left:752.666667pt;}
.x13b_c00339{left:754.133333pt;}
.xc1_c00339{left:755.333333pt;}
.x145_c00339{left:758.666667pt;}
.xcf_c00339{left:759.733333pt;}
.xec_c00339{left:760.666667pt;}
.xed_c00339{left:761.600000pt;}
.x139_c00339{left:764.266667pt;}
.x13f_c00339{left:765.600000pt;}
.x134_c00339{left:766.933333pt;}
.x106_c00339{left:768.400000pt;}
.x121_c00339{left:769.733333pt;}
.xd6_c00339{left:772.533333pt;}
.x124_c00339{left:776.266667pt;}
.x142_c00339{left:777.600000pt;}
.x10a_c00339{left:779.066667pt;}
.xdb_c00339{left:780.000000pt;}
.xe2_c00339{left:784.000000pt;}
.xfc_c00339{left:785.333333pt;}
.xfa_c00339{left:786.933333pt;}
.x149_c00339{left:787.866667pt;}
.xb2_c00339{left:792.666667pt;}
.xfb_c00339{left:794.266667pt;}
.x146_c00339{left:799.600000pt;}
.x14d_c00339{left:800.933333pt;}
}





/* 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_c00340 {
    display:none;
  }
  .loading-indicator_c00340.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00340 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_c00340 { 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_c00340" -> "#page-container .classname_c00340")
 */
.pf_c00340 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00340 { /* 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_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00340 { /* 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_c00340 { /* 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_c00340 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00340 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00340 {overflow:visible;}
  }
}
.c_c00340 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00340 { /* 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_c00340:after { /* webkit #35443 */
  content: '';
}
.t_c00340:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00340 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 */
}
.__c00340 { /* 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_c00340 { /* info for Javascript */
  display:none;
}
.l_c00340 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00340 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00340 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00340: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_c00340 {
    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_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00340.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_c00340 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00340;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.000000;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;}
.m27_c00340{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.md3_c00340{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m112_c00340{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m103_c00340{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.me3_c00340{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00340{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00340{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m108_c00340{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mce_c00340{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m13_c00340{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m21_c00340{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00340{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00340{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00340{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.me7_c00340{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00340{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me8_c00340{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00340{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00340{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00340{transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);}
.m106_c00340{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m113_c00340{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00340{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m70_c00340{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00340{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m4_c00340{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m94_c00340{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m97_c00340{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00340{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00340{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m5_c00340{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me0_c00340{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m71_c00340{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m93_c00340{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00340{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00340{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00340{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m56_c00340{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00340{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00340{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me2_c00340{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00340{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8_c00340{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00340{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00340{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m104_c00340{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00340{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m34_c00340{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m116_c00340{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m66_c00340{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00340{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mab_c00340{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m78_c00340{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2_c00340{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00340{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00340{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m11_c00340{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m57_c00340{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m48_c00340{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00340{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00340{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m26_c00340{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00340{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m118_c00340{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6_c00340{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m81_c00340{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00340{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00340{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m107_c00340{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00340{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00340{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me4_c00340{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00340{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m45_c00340{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00340{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mda_c00340{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.md2_c00340{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m84_c00340{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m29_c00340{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00340{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00340{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00340{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00340{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb_c00340{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m35_c00340{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m46_c00340{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00340{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m105_c00340{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00340{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m20_c00340{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00340{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00340{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00340{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00340{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mae_c00340{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m25_c00340{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m49_c00340{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00340{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mde_c00340{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00340{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m58_c00340{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m65_c00340{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00340{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00340{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00340{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00340{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m82_c00340{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m77_c00340{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.maa_c00340{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.meb_c00340{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00340{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me1_c00340{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00340{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m31_c00340{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m99_c00340{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me5_c00340{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m101_c00340{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m75_c00340{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m39_c00340{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00340{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m28_c00340{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m68_c00340{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00340{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.me_c00340{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00340{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m63_c00340{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m19_c00340{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m98_c00340{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m92_c00340{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00340{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m32_c00340{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00340{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00340{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m64_c00340{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00340{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00340{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00340{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00340{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00340{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m16_c00340{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00340{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m86_c00340{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m23_c00340{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7_c00340{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00340{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m100_c00340{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m54_c00340{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m50_c00340{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00340{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m36_c00340{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m91_c00340{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m12_c00340{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m109_c00340{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mca_c00340{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00340{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mba_c00340{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00340{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00340{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m80_c00340{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m41_c00340{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m33_c00340{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m18_c00340{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m62_c00340{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00340{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m96_c00340{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00340{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m59_c00340{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00340{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00340{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00340{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.md4_c00340{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00340{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00340{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.md5_c00340{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3_c00340{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00340{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m79_c00340{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m69_c00340{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m30_c00340{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00340{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m22_c00340{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00340{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m40_c00340{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00340{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00340{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00340{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m43_c00340{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00340{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m15_c00340{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m47_c00340{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00340{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m61_c00340{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00340{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m53_c00340{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m44_c00340{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m55_c00340{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00340{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m88_c00340{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m102_c00340{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma_c00340{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m24_c00340{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me6_c00340{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9_c00340{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00340{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00340{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00340{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00340{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00340{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00340{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m83_c00340{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m51_c00340{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00340{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00340{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00340{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m115_c00340{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m119_c00340{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m42_c00340{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m95_c00340{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00340{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m85_c00340{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m38_c00340{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00340{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00340{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m67_c00340{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m17_c00340{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m76_c00340{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00340{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00340{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m110_c00340{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md7_c00340{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.md6_c00340{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m74_c00340{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mea_c00340{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.md1_c00340{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00340{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc_c00340{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m60_c00340{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md8_c00340{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf_c00340{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md_c00340{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00340{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mad_c00340{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m52_c00340{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00340{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);}
.m87_c00340{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m10_c00340{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mec_c00340{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00340{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m89_c00340{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00340{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m14_c00340{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00340{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m117_c00340{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00340{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m37_c00340{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00340{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00340{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.me9_c00340{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00340{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00340{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m90_c00340{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00340{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m111_c00340{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mac_c00340{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md0_c00340{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00340{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.md9_c00340{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00340{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00340{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00340{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00340{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.maf_c00340{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mee_c00340{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m114_c00340{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00340{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00340{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.mff_c00340{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.med_c00340{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m72_c00340{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00340{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m73_c00340{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m0_c00340{transform:matrix(0.409750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409750,0.000000,0.000000,0.250000,0,0);}
.mef_c00340{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00340{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls0_c00340{letter-spacing:0.000000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{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__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00340{word-spacing:-14.164053px;}
.wsb_c00340{word-spacing:-10.508380px;}
.ws2_c00340{word-spacing:-8.904110px;}
.ws3_c00340{word-spacing:-4.722222px;}
.ws1_c00340{word-spacing:-4.166667px;}
.wsa_c00340{word-spacing:-3.929919px;}
.ws8_c00340{word-spacing:-3.170084px;}
.ws0_c00340{word-spacing:-1.718750px;}
.wsd_c00340{word-spacing:0.000000px;}
.ws7_c00340{word-spacing:6.052632px;}
.ws9_c00340{word-spacing:6.962606px;}
.ws4_c00340{word-spacing:14.292453px;}
.ws5_c00340{word-spacing:52.000000px;}
.ws6_c00340{word-spacing:165.000000px;}
.fc0_c00340{color:transparent;}
.fs5_c00340{font-size:48.000000px;}
.fs4_c00340{font-size:54.000000px;}
.fs2_c00340{font-size:60.000000px;}
.fs3_c00340{font-size:66.000000px;}
.fs1_c00340{font-size:72.000000px;}
.fs0_c00340{font-size:96.000000px;}
.y0_c00340{bottom:0.000000px;}
.y6c_c00340{bottom:162.300000px;}
.y6b_c00340{bottom:182.250000px;}
.y34_c00340{bottom:186.900000px;}
.y6a_c00340{bottom:200.550000px;}
.y33_c00340{bottom:201.900000px;}
.y32_c00340{bottom:216.000000px;}
.y69_c00340{bottom:218.250000px;}
.y31_c00340{bottom:230.400000px;}
.y68_c00340{bottom:237.000000px;}
.y30_c00340{bottom:244.800000px;}
.y67_c00340{bottom:254.700000px;}
.y2f_c00340{bottom:259.200000px;}
.y66_c00340{bottom:273.000000px;}
.y2e_c00340{bottom:273.600000px;}
.y2d_c00340{bottom:287.700000px;}
.y65_c00340{bottom:291.000000px;}
.y2c_c00340{bottom:302.400000px;}
.y64_c00340{bottom:309.000000px;}
.y2b_c00340{bottom:316.050000px;}
.y63_c00340{bottom:327.300000px;}
.y62_c00340{bottom:344.550000px;}
.y2a_c00340{bottom:363.450000px;}
.y61_c00340{bottom:365.700000px;}
.y29_c00340{bottom:381.450000px;}
.y60_c00340{bottom:383.700000px;}
.y28_c00340{bottom:399.450000px;}
.y5f_c00340{bottom:401.400000px;}
.y27_c00340{bottom:416.700000px;}
.y5e_c00340{bottom:419.400000px;}
.y26_c00340{bottom:434.400000px;}
.y5d_c00340{bottom:437.100000px;}
.y25_c00340{bottom:452.100000px;}
.y5c_c00340{bottom:455.100000px;}
.y24_c00340{bottom:470.100000px;}
.y5b_c00340{bottom:473.100000px;}
.y23_c00340{bottom:487.800000px;}
.y5a_c00340{bottom:491.400000px;}
.y59_c00340{bottom:509.400000px;}
.y22_c00340{bottom:510.000000px;}
.y21_c00340{bottom:527.700000px;}
.y58_c00340{bottom:542.550000px;}
.y20_c00340{bottom:558.900000px;}
.y57_c00340{bottom:562.350000px;}
.y56_c00340{bottom:563.100000px;}
.y1f_c00340{bottom:576.900000px;}
.y55_c00340{bottom:580.950000px;}
.y1e_c00340{bottom:594.600000px;}
.y54_c00340{bottom:598.950000px;}
.y1d_c00340{bottom:612.300000px;}
.y53_c00340{bottom:616.950000px;}
.y52_c00340{bottom:634.650000px;}
.y1c_c00340{bottom:639.600000px;}
.y51_c00340{bottom:652.650000px;}
.y1b_c00340{bottom:657.900000px;}
.y50_c00340{bottom:670.650000px;}
.y1a_c00340{bottom:675.600000px;}
.y4f_c00340{bottom:688.650000px;}
.y19_c00340{bottom:693.300000px;}
.y4e_c00340{bottom:705.900000px;}
.y18_c00340{bottom:711.000000px;}
.y4d_c00340{bottom:723.900000px;}
.y17_c00340{bottom:729.000000px;}
.y4c_c00340{bottom:741.900000px;}
.y16_c00340{bottom:746.700000px;}
.y4b_c00340{bottom:759.600000px;}
.y15_c00340{bottom:764.700000px;}
.y4a_c00340{bottom:780.150000px;}
.y14_c00340{bottom:790.350000px;}
.y49_c00340{bottom:794.550000px;}
.y13_c00340{bottom:808.350000px;}
.y48_c00340{bottom:808.650000px;}
.y47_c00340{bottom:820.500000px;}
.y12_c00340{bottom:826.050000px;}
.y46_c00340{bottom:837.750000px;}
.y11_c00340{bottom:843.750000px;}
.y45_c00340{bottom:852.150000px;}
.y10_c00340{bottom:861.750000px;}
.y44_c00340{bottom:866.100000px;}
.yf_c00340{bottom:879.750000px;}
.y43_c00340{bottom:880.200000px;}
.y42_c00340{bottom:894.600000px;}
.ye_c00340{bottom:897.450000px;}
.y41_c00340{bottom:908.700000px;}
.yd_c00340{bottom:915.150000px;}
.y40_c00340{bottom:923.100000px;}
.yc_c00340{bottom:933.150000px;}
.y3f_c00340{bottom:937.500000px;}
.yb_c00340{bottom:950.850000px;}
.y3e_c00340{bottom:951.450000px;}
.y3d_c00340{bottom:966.600000px;}
.ya_c00340{bottom:968.550000px;}
.y3c_c00340{bottom:986.250000px;}
.y9_c00340{bottom:988.650000px;}
.y3b_c00340{bottom:1003.950000px;}
.y8_c00340{bottom:1004.100000px;}
.y7_c00340{bottom:1021.350000px;}
.y3a_c00340{bottom:1021.950000px;}
.y39_c00340{bottom:1039.650000px;}
.y6_c00340{bottom:1044.000000px;}
.y38_c00340{bottom:1057.650000px;}
.y5_c00340{bottom:1062.000000px;}
.y37_c00340{bottom:1074.900000px;}
.y4_c00340{bottom:1080.000000px;}
.y36_c00340{bottom:1097.250000px;}
.y3_c00340{bottom:1097.700000px;}
.y35_c00340{bottom:1114.950000px;}
.y2_c00340{bottom:1115.700000px;}
.y1_c00340{bottom:1141.950000px;}
.h7_c00340{height:48.000000px;}
.h6_c00340{height:54.000000px;}
.h4_c00340{height:60.000000px;}
.h5_c00340{height:66.000000px;}
.h3_c00340{height:72.000000px;}
.h2_c00340{height:96.000000px;}
.h0_c00340{height:1267.200073px;}
.h1_c00340{height:1267.500000px;}
.w0_c00340{width:960.480010px;}
.w1_c00340{width:960.750000px;}
.x0_c00340{left:0.000000px;}
.x60_c00340{left:91.050000px;}
.x9b_c00340{left:93.000000px;}
.xa1_c00340{left:101.100000px;}
.x84_c00340{left:107.700000px;}
.x1b_c00340{left:109.200000px;}
.x3_c00340{left:110.850000px;}
.x6d_c00340{left:119.850000px;}
.x9e_c00340{left:123.150000px;}
.x4c_c00340{left:126.750000px;}
.x23_c00340{left:128.100000px;}
.x1c_c00340{left:129.300000px;}
.x94_c00340{left:132.750000px;}
.xa5_c00340{left:133.800000px;}
.x67_c00340{left:136.950000px;}
.x9a_c00340{left:138.000000px;}
.x7b_c00340{left:139.950000px;}
.x9c_c00340{left:142.350000px;}
.x5b_c00340{left:144.450000px;}
.x8c_c00340{left:147.000000px;}
.x74_c00340{left:148.200000px;}
.x82_c00340{left:150.000000px;}
.x21_c00340{left:151.650000px;}
.x90_c00340{left:153.150000px;}
.x15_c00340{left:154.200000px;}
.x52_c00340{left:156.000000px;}
.xb_c00340{left:157.800000px;}
.x3e_c00340{left:159.600000px;}
.x50_c00340{left:162.000000px;}
.x3a_c00340{left:163.800000px;}
.x85_c00340{left:165.300000px;}
.x6e_c00340{left:166.650000px;}
.xa9_c00340{left:167.850000px;}
.x57_c00340{left:168.900000px;}
.x62_c00340{left:170.100000px;}
.x7c_c00340{left:172.050000px;}
.x42_c00340{left:173.100000px;}
.x33_c00340{left:174.900000px;}
.x4_c00340{left:175.950000px;}
.x24_c00340{left:178.500000px;}
.xc_c00340{left:180.450000px;}
.x3f_c00340{left:183.000000px;}
.x68_c00340{left:186.300000px;}
.x2d_c00340{left:187.950000px;}
.x6f_c00340{left:191.550000px;}
.x91_c00340{left:193.050000px;}
.x3b_c00340{left:194.100000px;}
.x46_c00340{left:196.650000px;}
.x4d_c00340{left:198.750000px;}
.xd_c00340{left:201.300000px;}
.x86_c00340{left:202.800000px;}
.x2e_c00340{left:205.200000px;}
.x29_c00340{left:206.250000px;}
.x1d_c00340{left:207.450000px;}
.x59_c00340{left:209.100000px;}
.x75_c00340{left:210.450000px;}
.x16_c00340{left:211.500000px;}
.x53_c00340{left:213.900000px;}
.x47_c00340{left:214.950000px;}
.x34_c00340{left:216.600000px;}
.x7d_c00340{left:219.150000px;}
.x69_c00340{left:220.500000px;}
.x5_c00340{left:222.000000px;}
.x22_c00340{left:224.400000px;}
.x40_c00340{left:225.450000px;}
.x5c_c00340{left:226.500000px;}
.x8d_c00340{left:228.300000px;}
.x4e_c00340{left:230.400000px;}
.x5a_c00340{left:232.200000px;}
.xe_c00340{left:234.450000px;}
.x95_c00340{left:237.300000px;}
.x77_c00340{left:238.500000px;}
.x63_c00340{left:240.300000px;}
.x43_c00340{left:241.950000px;}
.x87_c00340{left:244.950000px;}
.x6_c00340{left:246.450000px;}
.x5d_c00340{left:247.800000px;}
.x48_c00340{left:249.900000px;}
.x71_c00340{left:252.300000px;}
.x8a_c00340{left:253.650000px;}
.x6c_c00340{left:254.850000px;}
.x1e_c00340{left:256.350000px;}
.x96_c00340{left:258.150000px;}
.x17_c00340{left:259.350000px;}
.x78_c00340{left:261.150000px;}
.xf_c00340{left:262.200000px;}
.x5e_c00340{left:263.700000px;}
.x6a_c00340{left:265.500000px;}
.x25_c00340{left:267.450000px;}
.x35_c00340{left:268.800000px;}
.x3c_c00340{left:271.500000px;}
.x80_c00340{left:274.200000px;}
.x9d_c00340{left:276.300000px;}
.x64_c00340{left:278.100000px;}
.x97_c00340{left:279.450000px;}
.x36_c00340{left:280.650000px;}
.x92_c00340{left:282.300000px;}
.x7_c00340{left:283.500000px;}
.x8e_c00340{left:285.150000px;}
.x26_c00340{left:286.950000px;}
.xa6_c00340{left:288.300000px;}
.x9f_c00340{left:290.100000px;}
.x10_c00340{left:291.750000px;}
.xa8_c00340{left:294.300000px;}
.x81_c00340{left:295.800000px;}
.x8f_c00340{left:298.200000px;}
.x37_c00340{left:299.700000px;}
.x2f_c00340{left:302.400000px;}
.x2a_c00340{left:303.750000px;}
.x93_c00340{left:304.950000px;}
.x5f_c00340{left:306.150000px;}
.x79_c00340{left:307.200000px;}
.x72_c00340{left:308.400000px;}
.x54_c00340{left:309.600000px;}
.xa0_c00340{left:314.550000px;}
.x88_c00340{left:317.400000px;}
.x44_c00340{left:318.750000px;}
.xa2_c00340{left:321.750000px;}
.x49_c00340{left:322.950000px;}
.x1_c00340{left:326.100000px;}
.x18_c00340{left:327.750000px;}
.x7a_c00340{left:328.800000px;}
.x45_c00340{left:330.300000px;}
.x11_c00340{left:333.900000px;}
.x30_c00340{left:335.550000px;}
.x8_c00340{left:336.750000px;}
.x76_c00340{left:338.250000px;}
.x27_c00340{left:339.450000px;}
.x7e_c00340{left:341.100000px;}
.xa3_c00340{left:342.600000px;}
.x98_c00340{left:343.950000px;}
.x1f_c00340{left:346.350000px;}
.x61_c00340{left:347.700000px;}
.x4a_c00340{left:350.250000px;}
.x2b_c00340{left:352.050000px;}
.x89_c00340{left:355.500000px;}
.x65_c00340{left:357.600000px;}
.x12_c00340{left:361.950000px;}
.x31_c00340{left:364.350000px;}
.x6b_c00340{left:365.550000px;}
.x83_c00340{left:366.900000px;}
.x19_c00340{left:368.100000px;}
.x7f_c00340{left:369.900000px;}
.xa7_c00340{left:371.100000px;}
.x9_c00340{left:374.250000px;}
.x66_c00340{left:375.600000px;}
.x55_c00340{left:377.550000px;}
.x38_c00340{left:379.350000px;}
.x58_c00340{left:380.700000px;}
.x28_c00340{left:381.900000px;}
.x13_c00340{left:383.550000px;}
.x1a_c00340{left:385.350000px;}
.x4b_c00340{left:387.000000px;}
.x51_c00340{left:390.750000px;}
.x3d_c00340{left:391.800000px;}
.x32_c00340{left:393.450000px;}
.x4f_c00340{left:396.000000px;}
.x56_c00340{left:397.050000px;}
.x2c_c00340{left:398.850000px;}
.x20_c00340{left:401.100000px;}
.x73_c00340{left:405.600000px;}
.x41_c00340{left:407.100000px;}
.x99_c00340{left:408.450000px;}
.x39_c00340{left:411.450000px;}
.xa_c00340{left:413.100000px;}
.xa4_c00340{left:418.950000px;}
.x70_c00340{left:421.500000px;}
.x8b_c00340{left:424.200000px;}
.x14_c00340{left:425.250000px;}
.xd2_c00340{left:448.500000px;}
.xb0_c00340{left:449.700000px;}
.xf3_c00340{left:462.600000px;}
.xd1_c00340{left:465.900000px;}
.xaf_c00340{left:467.100000px;}
.xaa_c00340{left:468.300000px;}
.xd9_c00340{left:470.550000px;}
.xe9_c00340{left:476.250000px;}
.xe0_c00340{left:477.450000px;}
.x130_c00340{left:481.650000px;}
.x141_c00340{left:483.150000px;}
.x104_c00340{left:485.250000px;}
.x10c_c00340{left:487.950000px;}
.xda_c00340{left:491.100000px;}
.xb1_c00340{left:492.900000px;}
.xc3_c00340{left:494.850000px;}
.x126_c00340{left:496.800000px;}
.x13e_c00340{left:498.150000px;}
.xe1_c00340{left:499.350000px;}
.x121_c00340{left:502.650000px;}
.x108_c00340{left:503.850000px;}
.x118_c00340{left:507.600000px;}
.xd3_c00340{left:508.950000px;}
.xb8_c00340{left:510.450000px;}
.xf4_c00340{left:511.500000px;}
.x134_c00340{left:512.700000px;}
.xca_c00340{left:514.050000px;}
.xeb_c00340{left:516.600000px;}
.xfd_c00340{left:517.800000px;}
.xe2_c00340{left:518.850000px;}
.xf9_c00340{left:520.050000px;}
.xbf_c00340{left:522.300000px;}
.x12d_c00340{left:524.250000px;}
.x13f_c00340{left:525.900000px;}
.x11c_c00340{left:527.550000px;}
.xec_c00340{left:529.500000px;}
.x147_c00340{left:531.750000px;}
.x105_c00340{left:532.800000px;}
.xe3_c00340{left:534.300000px;}
.xc4_c00340{left:536.250000px;}
.x112_c00340{left:538.050000px;}
.xfe_c00340{left:541.200000px;}
.xdb_c00340{left:542.250000px;}
.xc0_c00340{left:543.900000px;}
.x10d_c00340{left:545.250000px;}
.x119_c00340{left:546.450000px;}
.xb9_c00340{left:550.050000px;}
.xab_c00340{left:552.900000px;}
.x149_c00340{left:554.250000px;}
.xc5_c00340{left:556.050000px;}
.xb2_c00340{left:558.450000px;}
.x13b_c00340{left:560.250000px;}
.xdc_c00340{left:561.750000px;}
.x144_c00340{left:562.800000px;}
.x136_c00340{left:564.300000px;}
.x10e_c00340{left:568.650000px;}
.xba_c00340{left:570.150000px;}
.xd4_c00340{left:572.250000px;}
.x114_c00340{left:574.800000px;}
.xfa_c00340{left:575.850000px;}
.x11f_c00340{left:577.050000px;}
.x127_c00340{left:578.100000px;}
.x131_c00340{left:579.600000px;}
.xe4_c00340{left:583.950000px;}
.xdd_c00340{left:585.900000px;}
.x135_c00340{left:587.700000px;}
.xff_c00340{left:590.850000px;}
.x128_c00340{left:593.250000px;}
.xf5_c00340{left:595.800000px;}
.x116_c00340{left:597.000000px;}
.x109_c00340{left:599.250000px;}
.x138_c00340{left:600.450000px;}
.xf0_c00340{left:601.650000px;}
.x132_c00340{left:603.300000px;}
.x122_c00340{left:605.700000px;}
.xb3_c00340{left:606.750000px;}
.xc1_c00340{left:610.500000px;}
.xcb_c00340{left:611.550000px;}
.xe5_c00340{left:614.550000px;}
.x100_c00340{left:617.100000px;}
.x10f_c00340{left:618.300000px;}
.xc6_c00340{left:619.350000px;}
.xd5_c00340{left:621.900000px;}
.xfb_c00340{left:623.700000px;}
.xcc_c00340{left:625.650000px;}
.x12e_c00340{left:628.950000px;}
.x124_c00340{left:630.000000px;}
.x115_c00340{left:631.350000px;}
.xbb_c00340{left:632.400000px;}
.xe6_c00340{left:634.350000px;}
.x145_c00340{left:635.850000px;}
.x137_c00340{left:637.800000px;}
.xb4_c00340{left:639.150000px;}
.x123_c00340{left:640.200000px;}
.x11d_c00340{left:641.550000px;}
.x142_c00340{left:643.800000px;}
.x106_c00340{left:645.900000px;}
.xf1_c00340{left:648.450000px;}
.x140_c00340{left:650.100000px;}
.xed_c00340{left:652.650000px;}
.xc7_c00340{left:654.600000px;}
.xf6_c00340{left:656.250000px;}
.x117_c00340{left:657.600000px;}
.x13c_c00340{left:658.800000px;}
.xac_c00340{left:660.150000px;}
.xcd_c00340{left:661.350000px;}
.x110_c00340{left:663.000000px;}
.xf2_c00340{left:667.950000px;}
.x113_c00340{left:670.500000px;}
.x10a_c00340{left:674.400000px;}
.x120_c00340{left:675.750000px;}
.xc8_c00340{left:677.250000px;}
.xf7_c00340{left:678.900000px;}
.xb5_c00340{left:681.300000px;}
.x12f_c00340{left:682.650000px;}
.xad_c00340{left:684.300000px;}
.xbc_c00340{left:686.400000px;}
.x12b_c00340{left:688.050000px;}
.x143_c00340{left:690.300000px;}
.xce_c00340{left:692.700000px;}
.x139_c00340{left:694.350000px;}
.x12a_c00340{left:696.000000px;}
.x101_c00340{left:697.350000px;}
.x107_c00340{left:699.600000px;}
.x14a_c00340{left:703.200000px;}
.xd6_c00340{left:704.400000px;}
.xcf_c00340{left:706.350000px;}
.x12c_c00340{left:710.400000px;}
.xea_c00340{left:712.050000px;}
.xf8_c00340{left:713.100000px;}
.xde_c00340{left:714.300000px;}
.xc2_c00340{left:716.250000px;}
.x11e_c00340{left:719.250000px;}
.x148_c00340{left:724.650000px;}
.x133_c00340{left:725.850000px;}
.x10b_c00340{left:727.650000px;}
.x111_c00340{left:729.600000px;}
.x146_c00340{left:731.550000px;}
.x11a_c00340{left:732.900000px;}
.xd7_c00340{left:734.700000px;}
.xbd_c00340{left:735.750000px;}
.xe7_c00340{left:737.250000px;}
.x125_c00340{left:739.050000px;}
.xee_c00340{left:740.850000px;}
.xb6_c00340{left:742.500000px;}
.x11b_c00340{left:744.000000px;}
.x102_c00340{left:745.950000px;}
.xae_c00340{left:749.400000px;}
.x129_c00340{left:751.650000px;}
.x13d_c00340{left:756.300000px;}
.x2_c00340{left:757.800000px;}
.xd0_c00340{left:760.050000px;}
.xb7_c00340{left:762.000000px;}
.xbe_c00340{left:763.500000px;}
.xc9_c00340{left:764.700000px;}
.xfc_c00340{left:766.200000px;}
.xd8_c00340{left:769.650000px;}
.xdf_c00340{left:771.600000px;}
.xe8_c00340{left:772.950000px;}
.x13a_c00340{left:774.000000px;}
.x103_c00340{left:775.050000px;}
.xef_c00340{left:779.400000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.wsc_c00340{word-spacing:-12.590269pt;}
.wsb_c00340{word-spacing:-9.340782pt;}
.ws2_c00340{word-spacing:-7.914764pt;}
.ws3_c00340{word-spacing:-4.197531pt;}
.ws1_c00340{word-spacing:-3.703704pt;}
.wsa_c00340{word-spacing:-3.493261pt;}
.ws8_c00340{word-spacing:-2.817853pt;}
.ws0_c00340{word-spacing:-1.527778pt;}
.wsd_c00340{word-spacing:0.000000pt;}
.ws7_c00340{word-spacing:5.380117pt;}
.ws9_c00340{word-spacing:6.188983pt;}
.ws4_c00340{word-spacing:12.704403pt;}
.ws5_c00340{word-spacing:46.222222pt;}
.ws6_c00340{word-spacing:146.666667pt;}
.fs5_c00340{font-size:42.666667pt;}
.fs4_c00340{font-size:48.000000pt;}
.fs2_c00340{font-size:53.333333pt;}
.fs3_c00340{font-size:58.666667pt;}
.fs1_c00340{font-size:64.000000pt;}
.fs0_c00340{font-size:85.333333pt;}
.y0_c00340{bottom:0.000000pt;}
.y6c_c00340{bottom:144.266667pt;}
.y6b_c00340{bottom:162.000000pt;}
.y34_c00340{bottom:166.133333pt;}
.y6a_c00340{bottom:178.266667pt;}
.y33_c00340{bottom:179.466667pt;}
.y32_c00340{bottom:192.000000pt;}
.y69_c00340{bottom:194.000000pt;}
.y31_c00340{bottom:204.800000pt;}
.y68_c00340{bottom:210.666667pt;}
.y30_c00340{bottom:217.600000pt;}
.y67_c00340{bottom:226.400000pt;}
.y2f_c00340{bottom:230.400000pt;}
.y66_c00340{bottom:242.666667pt;}
.y2e_c00340{bottom:243.200000pt;}
.y2d_c00340{bottom:255.733333pt;}
.y65_c00340{bottom:258.666667pt;}
.y2c_c00340{bottom:268.800000pt;}
.y64_c00340{bottom:274.666667pt;}
.y2b_c00340{bottom:280.933333pt;}
.y63_c00340{bottom:290.933333pt;}
.y62_c00340{bottom:306.266667pt;}
.y2a_c00340{bottom:323.066667pt;}
.y61_c00340{bottom:325.066667pt;}
.y29_c00340{bottom:339.066667pt;}
.y60_c00340{bottom:341.066667pt;}
.y28_c00340{bottom:355.066667pt;}
.y5f_c00340{bottom:356.800000pt;}
.y27_c00340{bottom:370.400000pt;}
.y5e_c00340{bottom:372.800000pt;}
.y26_c00340{bottom:386.133333pt;}
.y5d_c00340{bottom:388.533333pt;}
.y25_c00340{bottom:401.866667pt;}
.y5c_c00340{bottom:404.533333pt;}
.y24_c00340{bottom:417.866667pt;}
.y5b_c00340{bottom:420.533333pt;}
.y23_c00340{bottom:433.600000pt;}
.y5a_c00340{bottom:436.800000pt;}
.y59_c00340{bottom:452.800000pt;}
.y22_c00340{bottom:453.333333pt;}
.y21_c00340{bottom:469.066667pt;}
.y58_c00340{bottom:482.266667pt;}
.y20_c00340{bottom:496.800000pt;}
.y57_c00340{bottom:499.866667pt;}
.y56_c00340{bottom:500.533333pt;}
.y1f_c00340{bottom:512.800000pt;}
.y55_c00340{bottom:516.400000pt;}
.y1e_c00340{bottom:528.533333pt;}
.y54_c00340{bottom:532.400000pt;}
.y1d_c00340{bottom:544.266667pt;}
.y53_c00340{bottom:548.400000pt;}
.y52_c00340{bottom:564.133333pt;}
.y1c_c00340{bottom:568.533333pt;}
.y51_c00340{bottom:580.133333pt;}
.y1b_c00340{bottom:584.800000pt;}
.y50_c00340{bottom:596.133333pt;}
.y1a_c00340{bottom:600.533333pt;}
.y4f_c00340{bottom:612.133333pt;}
.y19_c00340{bottom:616.266667pt;}
.y4e_c00340{bottom:627.466667pt;}
.y18_c00340{bottom:632.000000pt;}
.y4d_c00340{bottom:643.466667pt;}
.y17_c00340{bottom:648.000000pt;}
.y4c_c00340{bottom:659.466667pt;}
.y16_c00340{bottom:663.733333pt;}
.y4b_c00340{bottom:675.200000pt;}
.y15_c00340{bottom:679.733333pt;}
.y4a_c00340{bottom:693.466667pt;}
.y14_c00340{bottom:702.533333pt;}
.y49_c00340{bottom:706.266667pt;}
.y13_c00340{bottom:718.533333pt;}
.y48_c00340{bottom:718.800000pt;}
.y47_c00340{bottom:729.333333pt;}
.y12_c00340{bottom:734.266667pt;}
.y46_c00340{bottom:744.666667pt;}
.y11_c00340{bottom:750.000000pt;}
.y45_c00340{bottom:757.466667pt;}
.y10_c00340{bottom:766.000000pt;}
.y44_c00340{bottom:769.866667pt;}
.yf_c00340{bottom:782.000000pt;}
.y43_c00340{bottom:782.400000pt;}
.y42_c00340{bottom:795.200000pt;}
.ye_c00340{bottom:797.733333pt;}
.y41_c00340{bottom:807.733333pt;}
.yd_c00340{bottom:813.466667pt;}
.y40_c00340{bottom:820.533333pt;}
.yc_c00340{bottom:829.466667pt;}
.y3f_c00340{bottom:833.333333pt;}
.yb_c00340{bottom:845.200000pt;}
.y3e_c00340{bottom:845.733333pt;}
.y3d_c00340{bottom:859.200000pt;}
.ya_c00340{bottom:860.933333pt;}
.y3c_c00340{bottom:876.666667pt;}
.y9_c00340{bottom:878.800000pt;}
.y3b_c00340{bottom:892.400000pt;}
.y8_c00340{bottom:892.533333pt;}
.y7_c00340{bottom:907.866667pt;}
.y3a_c00340{bottom:908.400000pt;}
.y39_c00340{bottom:924.133333pt;}
.y6_c00340{bottom:928.000000pt;}
.y38_c00340{bottom:940.133333pt;}
.y5_c00340{bottom:944.000000pt;}
.y37_c00340{bottom:955.466667pt;}
.y4_c00340{bottom:960.000000pt;}
.y36_c00340{bottom:975.333333pt;}
.y3_c00340{bottom:975.733333pt;}
.y35_c00340{bottom:991.066667pt;}
.y2_c00340{bottom:991.733333pt;}
.y1_c00340{bottom:1015.066667pt;}
.h7_c00340{height:42.666667pt;}
.h6_c00340{height:48.000000pt;}
.h4_c00340{height:53.333333pt;}
.h5_c00340{height:58.666667pt;}
.h3_c00340{height:64.000000pt;}
.h2_c00340{height:85.333333pt;}
.h0_c00340{height:1126.400065pt;}
.h1_c00340{height:1126.666667pt;}
.w0_c00340{width:853.760009pt;}
.w1_c00340{width:854.000000pt;}
.x0_c00340{left:0.000000pt;}
.x60_c00340{left:80.933333pt;}
.x9b_c00340{left:82.666667pt;}
.xa1_c00340{left:89.866667pt;}
.x84_c00340{left:95.733333pt;}
.x1b_c00340{left:97.066667pt;}
.x3_c00340{left:98.533333pt;}
.x6d_c00340{left:106.533333pt;}
.x9e_c00340{left:109.466667pt;}
.x4c_c00340{left:112.666667pt;}
.x23_c00340{left:113.866667pt;}
.x1c_c00340{left:114.933333pt;}
.x94_c00340{left:118.000000pt;}
.xa5_c00340{left:118.933333pt;}
.x67_c00340{left:121.733333pt;}
.x9a_c00340{left:122.666667pt;}
.x7b_c00340{left:124.400000pt;}
.x9c_c00340{left:126.533333pt;}
.x5b_c00340{left:128.400000pt;}
.x8c_c00340{left:130.666667pt;}
.x74_c00340{left:131.733333pt;}
.x82_c00340{left:133.333333pt;}
.x21_c00340{left:134.800000pt;}
.x90_c00340{left:136.133333pt;}
.x15_c00340{left:137.066667pt;}
.x52_c00340{left:138.666667pt;}
.xb_c00340{left:140.266667pt;}
.x3e_c00340{left:141.866667pt;}
.x50_c00340{left:144.000000pt;}
.x3a_c00340{left:145.600000pt;}
.x85_c00340{left:146.933333pt;}
.x6e_c00340{left:148.133333pt;}
.xa9_c00340{left:149.200000pt;}
.x57_c00340{left:150.133333pt;}
.x62_c00340{left:151.200000pt;}
.x7c_c00340{left:152.933333pt;}
.x42_c00340{left:153.866667pt;}
.x33_c00340{left:155.466667pt;}
.x4_c00340{left:156.400000pt;}
.x24_c00340{left:158.666667pt;}
.xc_c00340{left:160.400000pt;}
.x3f_c00340{left:162.666667pt;}
.x68_c00340{left:165.600000pt;}
.x2d_c00340{left:167.066667pt;}
.x6f_c00340{left:170.266667pt;}
.x91_c00340{left:171.600000pt;}
.x3b_c00340{left:172.533333pt;}
.x46_c00340{left:174.800000pt;}
.x4d_c00340{left:176.666667pt;}
.xd_c00340{left:178.933333pt;}
.x86_c00340{left:180.266667pt;}
.x2e_c00340{left:182.400000pt;}
.x29_c00340{left:183.333333pt;}
.x1d_c00340{left:184.400000pt;}
.x59_c00340{left:185.866667pt;}
.x75_c00340{left:187.066667pt;}
.x16_c00340{left:188.000000pt;}
.x53_c00340{left:190.133333pt;}
.x47_c00340{left:191.066667pt;}
.x34_c00340{left:192.533333pt;}
.x7d_c00340{left:194.800000pt;}
.x69_c00340{left:196.000000pt;}
.x5_c00340{left:197.333333pt;}
.x22_c00340{left:199.466667pt;}
.x40_c00340{left:200.400000pt;}
.x5c_c00340{left:201.333333pt;}
.x8d_c00340{left:202.933333pt;}
.x4e_c00340{left:204.800000pt;}
.x5a_c00340{left:206.400000pt;}
.xe_c00340{left:208.400000pt;}
.x95_c00340{left:210.933333pt;}
.x77_c00340{left:212.000000pt;}
.x63_c00340{left:213.600000pt;}
.x43_c00340{left:215.066667pt;}
.x87_c00340{left:217.733333pt;}
.x6_c00340{left:219.066667pt;}
.x5d_c00340{left:220.266667pt;}
.x48_c00340{left:222.133333pt;}
.x71_c00340{left:224.266667pt;}
.x8a_c00340{left:225.466667pt;}
.x6c_c00340{left:226.533333pt;}
.x1e_c00340{left:227.866667pt;}
.x96_c00340{left:229.466667pt;}
.x17_c00340{left:230.533333pt;}
.x78_c00340{left:232.133333pt;}
.xf_c00340{left:233.066667pt;}
.x5e_c00340{left:234.400000pt;}
.x6a_c00340{left:236.000000pt;}
.x25_c00340{left:237.733333pt;}
.x35_c00340{left:238.933333pt;}
.x3c_c00340{left:241.333333pt;}
.x80_c00340{left:243.733333pt;}
.x9d_c00340{left:245.600000pt;}
.x64_c00340{left:247.200000pt;}
.x97_c00340{left:248.400000pt;}
.x36_c00340{left:249.466667pt;}
.x92_c00340{left:250.933333pt;}
.x7_c00340{left:252.000000pt;}
.x8e_c00340{left:253.466667pt;}
.x26_c00340{left:255.066667pt;}
.xa6_c00340{left:256.266667pt;}
.x9f_c00340{left:257.866667pt;}
.x10_c00340{left:259.333333pt;}
.xa8_c00340{left:261.600000pt;}
.x81_c00340{left:262.933333pt;}
.x8f_c00340{left:265.066667pt;}
.x37_c00340{left:266.400000pt;}
.x2f_c00340{left:268.800000pt;}
.x2a_c00340{left:270.000000pt;}
.x93_c00340{left:271.066667pt;}
.x5f_c00340{left:272.133333pt;}
.x79_c00340{left:273.066667pt;}
.x72_c00340{left:274.133333pt;}
.x54_c00340{left:275.200000pt;}
.xa0_c00340{left:279.600000pt;}
.x88_c00340{left:282.133333pt;}
.x44_c00340{left:283.333333pt;}
.xa2_c00340{left:286.000000pt;}
.x49_c00340{left:287.066667pt;}
.x1_c00340{left:289.866667pt;}
.x18_c00340{left:291.333333pt;}
.x7a_c00340{left:292.266667pt;}
.x45_c00340{left:293.600000pt;}
.x11_c00340{left:296.800000pt;}
.x30_c00340{left:298.266667pt;}
.x8_c00340{left:299.333333pt;}
.x76_c00340{left:300.666667pt;}
.x27_c00340{left:301.733333pt;}
.x7e_c00340{left:303.200000pt;}
.xa3_c00340{left:304.533333pt;}
.x98_c00340{left:305.733333pt;}
.x1f_c00340{left:307.866667pt;}
.x61_c00340{left:309.066667pt;}
.x4a_c00340{left:311.333333pt;}
.x2b_c00340{left:312.933333pt;}
.x89_c00340{left:316.000000pt;}
.x65_c00340{left:317.866667pt;}
.x12_c00340{left:321.733333pt;}
.x31_c00340{left:323.866667pt;}
.x6b_c00340{left:324.933333pt;}
.x83_c00340{left:326.133333pt;}
.x19_c00340{left:327.200000pt;}
.x7f_c00340{left:328.800000pt;}
.xa7_c00340{left:329.866667pt;}
.x9_c00340{left:332.666667pt;}
.x66_c00340{left:333.866667pt;}
.x55_c00340{left:335.600000pt;}
.x38_c00340{left:337.200000pt;}
.x58_c00340{left:338.400000pt;}
.x28_c00340{left:339.466667pt;}
.x13_c00340{left:340.933333pt;}
.x1a_c00340{left:342.533333pt;}
.x4b_c00340{left:344.000000pt;}
.x51_c00340{left:347.333333pt;}
.x3d_c00340{left:348.266667pt;}
.x32_c00340{left:349.733333pt;}
.x4f_c00340{left:352.000000pt;}
.x56_c00340{left:352.933333pt;}
.x2c_c00340{left:354.533333pt;}
.x20_c00340{left:356.533333pt;}
.x73_c00340{left:360.533333pt;}
.x41_c00340{left:361.866667pt;}
.x99_c00340{left:363.066667pt;}
.x39_c00340{left:365.733333pt;}
.xa_c00340{left:367.200000pt;}
.xa4_c00340{left:372.400000pt;}
.x70_c00340{left:374.666667pt;}
.x8b_c00340{left:377.066667pt;}
.x14_c00340{left:378.000000pt;}
.xd2_c00340{left:398.666667pt;}
.xb0_c00340{left:399.733333pt;}
.xf3_c00340{left:411.200000pt;}
.xd1_c00340{left:414.133333pt;}
.xaf_c00340{left:415.200000pt;}
.xaa_c00340{left:416.266667pt;}
.xd9_c00340{left:418.266667pt;}
.xe9_c00340{left:423.333333pt;}
.xe0_c00340{left:424.400000pt;}
.x130_c00340{left:428.133333pt;}
.x141_c00340{left:429.466667pt;}
.x104_c00340{left:431.333333pt;}
.x10c_c00340{left:433.733333pt;}
.xda_c00340{left:436.533333pt;}
.xb1_c00340{left:438.133333pt;}
.xc3_c00340{left:439.866667pt;}
.x126_c00340{left:441.600000pt;}
.x13e_c00340{left:442.800000pt;}
.xe1_c00340{left:443.866667pt;}
.x121_c00340{left:446.800000pt;}
.x108_c00340{left:447.866667pt;}
.x118_c00340{left:451.200000pt;}
.xd3_c00340{left:452.400000pt;}
.xb8_c00340{left:453.733333pt;}
.xf4_c00340{left:454.666667pt;}
.x134_c00340{left:455.733333pt;}
.xca_c00340{left:456.933333pt;}
.xeb_c00340{left:459.200000pt;}
.xfd_c00340{left:460.266667pt;}
.xe2_c00340{left:461.200000pt;}
.xf9_c00340{left:462.266667pt;}
.xbf_c00340{left:464.266667pt;}
.x12d_c00340{left:466.000000pt;}
.x13f_c00340{left:467.466667pt;}
.x11c_c00340{left:468.933333pt;}
.xec_c00340{left:470.666667pt;}
.x147_c00340{left:472.666667pt;}
.x105_c00340{left:473.600000pt;}
.xe3_c00340{left:474.933333pt;}
.xc4_c00340{left:476.666667pt;}
.x112_c00340{left:478.266667pt;}
.xfe_c00340{left:481.066667pt;}
.xdb_c00340{left:482.000000pt;}
.xc0_c00340{left:483.466667pt;}
.x10d_c00340{left:484.666667pt;}
.x119_c00340{left:485.733333pt;}
.xb9_c00340{left:488.933333pt;}
.xab_c00340{left:491.466667pt;}
.x149_c00340{left:492.666667pt;}
.xc5_c00340{left:494.266667pt;}
.xb2_c00340{left:496.400000pt;}
.x13b_c00340{left:498.000000pt;}
.xdc_c00340{left:499.333333pt;}
.x144_c00340{left:500.266667pt;}
.x136_c00340{left:501.600000pt;}
.x10e_c00340{left:505.466667pt;}
.xba_c00340{left:506.800000pt;}
.xd4_c00340{left:508.666667pt;}
.x114_c00340{left:510.933333pt;}
.xfa_c00340{left:511.866667pt;}
.x11f_c00340{left:512.933333pt;}
.x127_c00340{left:513.866667pt;}
.x131_c00340{left:515.200000pt;}
.xe4_c00340{left:519.066667pt;}
.xdd_c00340{left:520.800000pt;}
.x135_c00340{left:522.400000pt;}
.xff_c00340{left:525.200000pt;}
.x128_c00340{left:527.333333pt;}
.xf5_c00340{left:529.600000pt;}
.x116_c00340{left:530.666667pt;}
.x109_c00340{left:532.666667pt;}
.x138_c00340{left:533.733333pt;}
.xf0_c00340{left:534.800000pt;}
.x132_c00340{left:536.266667pt;}
.x122_c00340{left:538.400000pt;}
.xb3_c00340{left:539.333333pt;}
.xc1_c00340{left:542.666667pt;}
.xcb_c00340{left:543.600000pt;}
.xe5_c00340{left:546.266667pt;}
.x100_c00340{left:548.533333pt;}
.x10f_c00340{left:549.600000pt;}
.xc6_c00340{left:550.533333pt;}
.xd5_c00340{left:552.800000pt;}
.xfb_c00340{left:554.400000pt;}
.xcc_c00340{left:556.133333pt;}
.x12e_c00340{left:559.066667pt;}
.x124_c00340{left:560.000000pt;}
.x115_c00340{left:561.200000pt;}
.xbb_c00340{left:562.133333pt;}
.xe6_c00340{left:563.866667pt;}
.x145_c00340{left:565.200000pt;}
.x137_c00340{left:566.933333pt;}
.xb4_c00340{left:568.133333pt;}
.x123_c00340{left:569.066667pt;}
.x11d_c00340{left:570.266667pt;}
.x142_c00340{left:572.266667pt;}
.x106_c00340{left:574.133333pt;}
.xf1_c00340{left:576.400000pt;}
.x140_c00340{left:577.866667pt;}
.xed_c00340{left:580.133333pt;}
.xc7_c00340{left:581.866667pt;}
.xf6_c00340{left:583.333333pt;}
.x117_c00340{left:584.533333pt;}
.x13c_c00340{left:585.600000pt;}
.xac_c00340{left:586.800000pt;}
.xcd_c00340{left:587.866667pt;}
.x110_c00340{left:589.333333pt;}
.xf2_c00340{left:593.733333pt;}
.x113_c00340{left:596.000000pt;}
.x10a_c00340{left:599.466667pt;}
.x120_c00340{left:600.666667pt;}
.xc8_c00340{left:602.000000pt;}
.xf7_c00340{left:603.466667pt;}
.xb5_c00340{left:605.600000pt;}
.x12f_c00340{left:606.800000pt;}
.xad_c00340{left:608.266667pt;}
.xbc_c00340{left:610.133333pt;}
.x12b_c00340{left:611.600000pt;}
.x143_c00340{left:613.600000pt;}
.xce_c00340{left:615.733333pt;}
.x139_c00340{left:617.200000pt;}
.x12a_c00340{left:618.666667pt;}
.x101_c00340{left:619.866667pt;}
.x107_c00340{left:621.866667pt;}
.x14a_c00340{left:625.066667pt;}
.xd6_c00340{left:626.133333pt;}
.xcf_c00340{left:627.866667pt;}
.x12c_c00340{left:631.466667pt;}
.xea_c00340{left:632.933333pt;}
.xf8_c00340{left:633.866667pt;}
.xde_c00340{left:634.933333pt;}
.xc2_c00340{left:636.666667pt;}
.x11e_c00340{left:639.333333pt;}
.x148_c00340{left:644.133333pt;}
.x133_c00340{left:645.200000pt;}
.x10b_c00340{left:646.800000pt;}
.x111_c00340{left:648.533333pt;}
.x146_c00340{left:650.266667pt;}
.x11a_c00340{left:651.466667pt;}
.xd7_c00340{left:653.066667pt;}
.xbd_c00340{left:654.000000pt;}
.xe7_c00340{left:655.333333pt;}
.x125_c00340{left:656.933333pt;}
.xee_c00340{left:658.533333pt;}
.xb6_c00340{left:660.000000pt;}
.x11b_c00340{left:661.333333pt;}
.x102_c00340{left:663.066667pt;}
.xae_c00340{left:666.133333pt;}
.x129_c00340{left:668.133333pt;}
.x13d_c00340{left:672.266667pt;}
.x2_c00340{left:673.600000pt;}
.xd0_c00340{left:675.600000pt;}
.xb7_c00340{left:677.333333pt;}
.xbe_c00340{left:678.666667pt;}
.xc9_c00340{left:679.733333pt;}
.xfc_c00340{left:681.066667pt;}
.xd8_c00340{left:684.133333pt;}
.xdf_c00340{left:685.866667pt;}
.xe8_c00340{left:687.066667pt;}
.x13a_c00340{left:688.000000pt;}
.x103_c00340{left:688.933333pt;}
.xef_c00340{left:692.800000pt;}
}





/* 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_c00341 {
    display:none;
  }
  .loading-indicator_c00341.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00341 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_c00341 { 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_c00341" -> "#page-container .classname_c00341")
 */
.pf_c00341 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00341 { /* 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_c00341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00341 { /* 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_c00341 { /* 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_c00341 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00341 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00341 {overflow:visible;}
  }
}
.c_c00341 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00341 { /* 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_c00341:after { /* webkit #35443 */
  content: '';
}
.t_c00341:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00341 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 */
}
.__c00341 { /* 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_c00341 { /* info for Javascript */
  display:none;
}
.l_c00341 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00341 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00341 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00341: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_c00341 {
    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_c00341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00341.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_c00341 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00341;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.000000;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;}
.m129_c00341{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m117_c00341{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00341{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m123_c00341{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m60_c00341{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m127_c00341{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00341{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m49_c00341{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m80_c00341{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00341{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m47_c00341{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00341{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00341{transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);}
.m81_c00341{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00341{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m66_c00341{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mae_c00341{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00341{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00341{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00341{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m61_c00341{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mce_c00341{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00341{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mc_c00341{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me3_c00341{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00341{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m62_c00341{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m56_c00341{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00341{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m116_c00341{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00341{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m67_c00341{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.meb_c00341{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m50_c00341{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00341{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m45_c00341{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00341{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m30_c00341{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.mad_c00341{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md4_c00341{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m9_c00341{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00341{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00341{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00341{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m126_c00341{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m53_c00341{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mee_c00341{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00341{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf_c00341{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m16_c00341{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00341{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00341{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m100_c00341{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m70_c00341{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00341{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m20_c00341{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00341{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m31_c00341{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m24_c00341{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m95_c00341{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m12_c00341{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m40_c00341{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mac_c00341{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.mec_c00341{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m29_c00341{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.maf_c00341{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m34_c00341{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mef_c00341{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m32_c00341{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb_c00341{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m79_c00341{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m13_c00341{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md0_c00341{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00341{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00341{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.md5_c00341{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mea_c00341{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00341{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00341{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00341{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00341{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m55_c00341{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00341{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00341{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00341{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md6_c00341{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00341{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00341{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m2_c00341{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00341{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m111_c00341{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00341{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00341{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m7_c00341{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00341{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m19_c00341{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m112_c00341{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00341{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00341{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00341{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00341{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m63_c00341{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00341{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m59_c00341{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.md_c00341{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m25_c00341{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.me_c00341{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m17_c00341{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00341{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00341{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00341{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m65_c00341{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00341{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m39_c00341{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00341{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00341{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.med_c00341{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00341{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4_c00341{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m128_c00341{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00341{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m35_c00341{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00341{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m92_c00341{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m75_c00341{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m21_c00341{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mab_c00341{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00341{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m23_c00341{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m99_c00341{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00341{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00341{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m41_c00341{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00341{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00341{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.maa_c00341{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.me4_c00341{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00341{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00341{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m36_c00341{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m11_c00341{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00341{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m38_c00341{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m78_c00341{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m22_c00341{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00341{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00341{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m10_c00341{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m125_c00341{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00341{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m42_c00341{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m14_c00341{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m77_c00341{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00341{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m58_c00341{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00341{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m15_c00341{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md7_c00341{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m6_c00341{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00341{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m73_c00341{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m102_c00341{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m44_c00341{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00341{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00341{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00341{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mff_c00341{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m18_c00341{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00341{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00341{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00341{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00341{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m97_c00341{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00341{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00341{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8_c00341{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00341{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m104_c00341{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00341{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5_c00341{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m43_c00341{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3_c00341{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00341{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m109_c00341{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00341{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me8_c00341{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00341{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md8_c00341{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00341{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m72_c00341{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00341{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.md1_c00341{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m26_c00341{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00341{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00341{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00341{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00341{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m122_c00341{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00341{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00341{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m69_c00341{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m57_c00341{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00341{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m103_c00341{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma_c00341{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00341{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m94_c00341{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00341{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me6_c00341{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m124_c00341{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00341{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m52_c00341{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m27_c00341{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me1_c00341{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m108_c00341{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md2_c00341{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m71_c00341{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m101_c00341{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m120_c00341{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m96_c00341{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00341{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m54_c00341{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00341{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m37_c00341{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me5_c00341{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m115_c00341{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00341{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00341{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00341{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.me2_c00341{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me7_c00341{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00341{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00341{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00341{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00341{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00341{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m89_c00341{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m90_c00341{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00341{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mda_c00341{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m98_c00341{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00341{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m119_c00341{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m107_c00341{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.md9_c00341{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00341{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m74_c00341{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m85_c00341{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m105_c00341{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00341{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00341{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m121_c00341{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m28_c00341{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mde_c00341{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00341{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00341{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m33_c00341{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me9_c00341{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00341{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m76_c00341{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m110_c00341{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me0_c00341{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m86_c00341{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00341{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m46_c00341{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m88_c00341{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m114_c00341{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m82_c00341{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00341{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m48_c00341{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00341{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m118_c00341{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00341{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00341{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00341{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m87_c00341{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00341{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00341{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m106_c00341{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00341{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m84_c00341{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.md3_c00341{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mba_c00341{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.mca_c00341{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.m68_c00341{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00341{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00341{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.m93_c00341{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m64_c00341{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00341{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00341{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m91_c00341{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m83_c00341{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00341{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00341{transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);}
.m51_c00341{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00341{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m113_c00341{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls2_c00341{letter-spacing:0.000000px;}
.ls1_c00341{letter-spacing:55.714286px;}
.ls0_c00341{letter-spacing:61.426230px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{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__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00341{word-spacing:-94.426230px;}
.ws9_c00341{word-spacing:-85.714286px;}
.ws14_c00341{word-spacing:-11.992762px;}
.ws13_c00341{word-spacing:-10.250000px;}
.ws12_c00341{word-spacing:-9.602620px;}
.wsd_c00341{word-spacing:-3.500000px;}
.ws1a_c00341{word-spacing:0.000000px;}
.ws16_c00341{word-spacing:3.636912px;}
.wsa_c00341{word-spacing:3.888889px;}
.ws19_c00341{word-spacing:5.084439px;}
.ws10_c00341{word-spacing:6.354086px;}
.wsb_c00341{word-spacing:7.925501px;}
.ws18_c00341{word-spacing:9.355795px;}
.ws17_c00341{word-spacing:11.250000px;}
.ws0_c00341{word-spacing:13.083095px;}
.ws4_c00341{word-spacing:19.959885px;}
.wsf_c00341{word-spacing:19.994638px;}
.ws6_c00341{word-spacing:22.142857px;}
.wsc_c00341{word-spacing:24.491803px;}
.ws8_c00341{word-spacing:25.714286px;}
.wse_c00341{word-spacing:26.428954px;}
.ws2_c00341{word-spacing:28.426230px;}
.ws7_c00341{word-spacing:29.285714px;}
.ws3_c00341{word-spacing:32.360656px;}
.ws11_c00341{word-spacing:67.333333px;}
.ws5_c00341{word-spacing:167.972477px;}
.ws15_c00341{word-spacing:401.833333px;}
._1_c00341{margin-left:-61.426230px;}
._6_c00341{margin-left:-55.714286px;}
._0_c00341{width:49.521490px;}
._3_c00341{width:52.959885px;}
._4_c00341{width:57.491803px;}
._5_c00341{width:59.285714px;}
._2_c00341{width:65.360656px;}
.fc0_c00341{color:transparent;}
.fs5_c00341{font-size:24.000000px;}
.fs6_c00341{font-size:48.000000px;}
.fs4_c00341{font-size:54.000000px;}
.fs3_c00341{font-size:60.000000px;}
.fs2_c00341{font-size:66.000000px;}
.fs1_c00341{font-size:72.000000px;}
.fs0_c00341{font-size:78.000000px;}
.y0_c00341{bottom:0.000000px;}
.y4f_c00341{bottom:109.050000px;}
.y4e_c00341{bottom:195.450000px;}
.y4d_c00341{bottom:213.450000px;}
.y4c_c00341{bottom:229.950000px;}
.y4b_c00341{bottom:247.650000px;}
.y4a_c00341{bottom:264.900000px;}
.y49_c00341{bottom:282.600000px;}
.y48_c00341{bottom:295.800000px;}
.y41_c00341{bottom:304.650000px;}
.y47_c00341{bottom:313.800000px;}
.y40_c00341{bottom:322.650000px;}
.y46_c00341{bottom:331.500000px;}
.y3f_c00341{bottom:340.950000px;}
.y45_c00341{bottom:349.200000px;}
.y3e_c00341{bottom:358.200000px;}
.y44_c00341{bottom:366.450000px;}
.y3d_c00341{bottom:376.200000px;}
.y43_c00341{bottom:388.500000px;}
.y3c_c00341{bottom:394.200000px;}
.y42_c00341{bottom:406.800000px;}
.y3b_c00341{bottom:416.100000px;}
.y3a_c00341{bottom:447.900000px;}
.y39_c00341{bottom:465.450000px;}
.y38_c00341{bottom:483.750000px;}
.y37_c00341{bottom:501.450000px;}
.y36_c00341{bottom:523.050000px;}
.y33_c00341{bottom:532.500000px;}
.y35_c00341{bottom:541.500000px;}
.y32_c00341{bottom:550.500000px;}
.y34_c00341{bottom:559.500000px;}
.y31_c00341{bottom:568.500000px;}
.y30_c00341{bottom:586.050000px;}
.y2f_c00341{bottom:599.400000px;}
.y2e_c00341{bottom:617.400000px;}
.y2d_c00341{bottom:635.400000px;}
.y2c_c00341{bottom:645.900000px;}
.y2b_c00341{bottom:653.100000px;}
.y1e_c00341{bottom:665.550000px;}
.y2a_c00341{bottom:670.800000px;}
.y1d_c00341{bottom:683.250000px;}
.y29_c00341{bottom:688.800000px;}
.y1c_c00341{bottom:701.250000px;}
.y28_c00341{bottom:706.500000px;}
.y1b_c00341{bottom:718.950000px;}
.y27_c00341{bottom:724.800000px;}
.y1a_c00341{bottom:736.950000px;}
.y26_c00341{bottom:742.500000px;}
.y19_c00341{bottom:754.650000px;}
.y25_c00341{bottom:760.200000px;}
.y18_c00341{bottom:772.350000px;}
.y24_c00341{bottom:778.200000px;}
.y17_c00341{bottom:790.350000px;}
.y23_c00341{bottom:796.200000px;}
.y16_c00341{bottom:808.050000px;}
.y22_c00341{bottom:813.900000px;}
.y15_c00341{bottom:826.050000px;}
.y21_c00341{bottom:831.900000px;}
.y14_c00341{bottom:843.750000px;}
.y20_c00341{bottom:849.600000px;}
.y13_c00341{bottom:861.750000px;}
.y1f_c00341{bottom:867.600000px;}
.y12_c00341{bottom:879.450000px;}
.y11_c00341{bottom:897.900000px;}
.y10_c00341{bottom:914.850000px;}
.yf_c00341{bottom:922.050000px;}
.ye_c00341{bottom:936.450000px;}
.yd_c00341{bottom:950.550000px;}
.yc_c00341{bottom:965.250000px;}
.yb_c00341{bottom:979.650000px;}
.ya_c00341{bottom:995.100000px;}
.y9_c00341{bottom:1012.800000px;}
.y8_c00341{bottom:1022.100000px;}
.y7_c00341{bottom:1035.450000px;}
.y6_c00341{bottom:1049.850000px;}
.y5_c00341{bottom:1066.350000px;}
.y4_c00341{bottom:1084.050000px;}
.y3_c00341{bottom:1102.350000px;}
.y2_c00341{bottom:1120.650000px;}
.y1_c00341{bottom:1145.850000px;}
.h7_c00341{height:24.000000px;}
.h8_c00341{height:48.000000px;}
.h6_c00341{height:54.000000px;}
.h5_c00341{height:60.000000px;}
.h4_c00341{height:66.000000px;}
.h3_c00341{height:72.000000px;}
.h2_c00341{height:78.000000px;}
.h0_c00341{height:1268.640015px;}
.h1_c00341{height:1269.000000px;}
.w0_c00341{width:960.480010px;}
.w1_c00341{width:960.750000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:182.100000px;}
.x128_c00341{left:183.300000px;}
.x13c_c00341{left:184.650000px;}
.xb9_c00341{left:198.750000px;}
.x3_c00341{left:199.800000px;}
.x66_c00341{left:201.000000px;}
.x131_c00341{left:202.200000px;}
.x134_c00341{left:203.700000px;}
.x8a_c00341{left:205.650000px;}
.xf4_c00341{left:218.550000px;}
.x102_c00341{left:219.600000px;}
.x15_c00341{left:222.750000px;}
.xba_c00341{left:226.050000px;}
.x135_c00341{left:228.150000px;}
.xa7_c00341{left:229.200000px;}
.x100_c00341{left:231.450000px;}
.xef_c00341{left:232.950000px;}
.x114_c00341{left:235.200000px;}
.x8b_c00341{left:238.350000px;}
.x5c_c00341{left:240.000000px;}
.x3b_c00341{left:241.650000px;}
.x4_c00341{left:244.050000px;}
.x78_c00341{left:246.000000px;}
.xfd_c00341{left:247.050000px;}
.x2c_c00341{left:248.400000px;}
.x43_c00341{left:249.750000px;}
.xac_c00341{left:253.650000px;}
.x95_c00341{left:254.700000px;}
.x70_c00341{left:256.350000px;}
.x16_c00341{left:258.000000px;}
.xb2_c00341{left:259.800000px;}
.x67_c00341{left:261.000000px;}
.x129_c00341{left:262.500000px;}
.x5_c00341{left:264.150000px;}
.x5d_c00341{left:265.200000px;}
.x2d_c00341{left:269.250000px;}
.x23_c00341{left:272.700000px;}
.xbb_c00341{left:273.900000px;}
.x3c_c00341{left:275.850000px;}
.x97_c00341{left:276.900000px;}
.x13e_c00341{left:278.250000px;}
.x7a_c00341{left:280.350000px;}
.x8c_c00341{left:281.850000px;}
.x9c_c00341{left:285.750000px;}
.xa4_c00341{left:287.100000px;}
.x10d_c00341{left:289.500000px;}
.x88_c00341{left:291.300000px;}
.x24_c00341{left:292.800000px;}
.x3d_c00341{left:294.150000px;}
.xb3_c00341{left:295.800000px;}
.x98_c00341{left:297.000000px;}
.xb7_c00341{left:298.500000px;}
.xbc_c00341{left:300.900000px;}
.xaf_c00341{left:302.550000px;}
.xa2_c00341{left:306.450000px;}
.x8d_c00341{left:308.400000px;}
.x6_c00341{left:309.450000px;}
.x53_c00341{left:311.400000px;}
.x44_c00341{left:313.050000px;}
.x25_c00341{left:315.450000px;}
.x71_c00341{left:317.250000px;}
.x12d_c00341{left:319.650000px;}
.xeb_c00341{left:321.000000px;}
.x5e_c00341{left:323.100000px;}
.xa8_c00341{left:324.600000px;}
.x9d_c00341{left:326.100000px;}
.x103_c00341{left:329.700000px;}
.x7f_c00341{left:330.750000px;}
.x12f_c00341{left:331.950000px;}
.x106_c00341{left:334.200000px;}
.x68_c00341{left:335.850000px;}
.x132_c00341{left:338.700000px;}
.xb0_c00341{left:340.050000px;}
.x2e_c00341{left:342.000000px;}
.x7_c00341{left:343.650000px;}
.x118_c00341{left:345.150000px;}
.xa5_c00341{left:346.500000px;}
.x133_c00341{left:348.150000px;}
.xf5_c00341{left:352.200000px;}
.x104_c00341{left:354.600000px;}
.x17_c00341{left:356.250000px;}
.x12b_c00341{left:358.350000px;}
.x45_c00341{left:360.600000px;}
.xbd_c00341{left:362.100000px;}
.x5f_c00341{left:364.500000px;}
.x119_c00341{left:367.800000px;}
.xb4_c00341{left:368.850000px;}
.x80_c00341{left:374.250000px;}
.x26_c00341{left:375.900000px;}
.x54_c00341{left:377.550000px;}
.x9f_c00341{left:379.500000px;}
.x10e_c00341{left:383.100000px;}
.x2f_c00341{left:384.150000px;}
.xa9_c00341{left:385.800000px;}
.x8_c00341{left:387.600000px;}
.x18_c00341{left:388.650000px;}
.x99_c00341{left:389.850000px;}
.xad_c00341{left:391.500000px;}
.xb5_c00341{left:393.750000px;}
.x8e_c00341{left:397.200000px;}
.x81_c00341{left:399.450000px;}
.x30_c00341{left:401.400000px;}
.xbe_c00341{left:406.350000px;}
.x9_c00341{left:408.150000px;}
.x19_c00341{left:409.500000px;}
.x60_c00341{left:411.600000px;}
.xb8_c00341{left:414.750000px;}
.xf0_c00341{left:416.700000px;}
.x27_c00341{left:418.350000px;}
.x3e_c00341{left:419.550000px;}
.xfe_c00341{left:422.400000px;}
.x2_c00341{left:425.100000px;}
.xa0_c00341{left:430.950000px;}
.x72_c00341{left:433.200000px;}
.x46_c00341{left:434.400000px;}
.x1a_c00341{left:439.350000px;}
.xa_c00341{left:440.850000px;}
.x10f_c00341{left:442.500000px;}
.x130_c00341{left:443.850000px;}
.x105_c00341{left:445.350000px;}
.xaa_c00341{left:447.000000px;}
.x12a_c00341{left:448.950000px;}
.x82_c00341{left:450.150000px;}
.x73_c00341{left:451.500000px;}
.x47_c00341{left:453.900000px;}
.x9a_c00341{left:455.700000px;}
.x55_c00341{left:457.500000px;}
.xa6_c00341{left:460.650000px;}
.x61_c00341{left:462.300000px;}
.x31_c00341{left:464.400000px;}
.x13a_c00341{left:466.200000px;}
.x101_c00341{left:467.400000px;}
.xab_c00341{left:468.600000px;}
.xb6_c00341{left:470.400000px;}
.x28_c00341{left:471.600000px;}
.x12e_c00341{left:473.400000px;}
.x48_c00341{left:474.450000px;}
.xa1_c00341{left:475.650000px;}
.x32_c00341{left:477.300000px;}
.xae_c00341{left:480.750000px;}
.x9e_c00341{left:483.150000px;}
.x136_c00341{left:485.100000px;}
.xb_c00341{left:486.150000px;}
.x83_c00341{left:487.650000px;}
.x89_c00341{left:489.600000px;}
.x3f_c00341{left:491.550000px;}
.xff_c00341{left:493.050000px;}
.x62_c00341{left:495.450000px;}
.xa3_c00341{left:498.750000px;}
.x9b_c00341{left:499.950000px;}
.xec_c00341{left:502.200000px;}
.x8f_c00341{left:505.650000px;}
.xb1_c00341{left:508.200000px;}
.x56_c00341{left:512.550000px;}
.x12c_c00341{left:514.650000px;}
.x33_c00341{left:537.450000px;}
.xbf_c00341{left:538.950000px;}
.x40_c00341{left:551.700000px;}
.x110_c00341{left:553.800000px;}
.x1b_c00341{left:554.850000px;}
.xc_c00341{left:556.050000px;}
.x57_c00341{left:565.800000px;}
.x29_c00341{left:571.950000px;}
.xe3_c00341{left:575.100000px;}
.xd1_c00341{left:576.900000px;}
.x137_c00341{left:580.200000px;}
.xca_c00341{left:581.550000px;}
.x41_c00341{left:583.350000px;}
.x49_c00341{left:585.750000px;}
.x58_c00341{left:588.150000px;}
.xe0_c00341{left:590.550000px;}
.xcb_c00341{left:593.100000px;}
.x34_c00341{left:598.950000px;}
.xd8_c00341{left:601.500000px;}
.x111_c00341{left:603.750000px;}
.x4a_c00341{left:605.550000px;}
.x63_c00341{left:606.600000px;}
.x11e_c00341{left:607.650000px;}
.x1c_c00341{left:608.850000px;}
.xe7_c00341{left:610.350000px;}
.xd_c00341{left:612.150000px;}
.x69_c00341{left:613.650000px;}
.xd2_c00341{left:615.750000px;}
.x59_c00341{left:616.950000px;}
.xe4_c00341{left:618.300000px;}
.xc0_c00341{left:619.950000px;}
.x64_c00341{left:621.750000px;}
.x2a_c00341{left:623.400000px;}
.x13d_c00341{left:624.600000px;}
.x13b_c00341{left:625.650000px;}
.x112_c00341{left:628.950000px;}
.xc6_c00341{left:631.200000px;}
.x42_c00341{left:632.400000px;}
.xd3_c00341{left:636.300000px;}
.xde_c00341{left:638.250000px;}
.xe1_c00341{left:640.950000px;}
.x96_c00341{left:642.300000px;}
.x1d_c00341{left:644.850000px;}
.xf1_c00341{left:646.050000px;}
.x122_c00341{left:649.200000px;}
.xc1_c00341{left:650.550000px;}
.x7b_c00341{left:652.500000px;}
.xe_c00341{left:655.650000px;}
.x123_c00341{left:657.450000px;}
.xdb_c00341{left:658.500000px;}
.x6a_c00341{left:659.700000px;}
.x35_c00341{left:661.200000px;}
.x125_c00341{left:663.900000px;}
.xce_c00341{left:665.550000px;}
.x84_c00341{left:666.900000px;}
.x1e_c00341{left:667.950000px;}
.xe5_c00341{left:670.200000px;}
.x85_c00341{left:673.800000px;}
.xf6_c00341{left:675.750000px;}
.x115_c00341{left:677.250000px;}
.x11d_c00341{left:678.600000px;}
.x90_c00341{left:680.100000px;}
.x6b_c00341{left:681.300000px;}
.x2b_c00341{left:682.500000px;}
.xc7_c00341{left:684.150000px;}
.x107_c00341{left:686.250000px;}
.x91_c00341{left:687.300000px;}
.x6c_c00341{left:688.500000px;}
.xc2_c00341{left:690.150000px;}
.x138_c00341{left:691.350000px;}
.x7c_c00341{left:692.850000px;}
.x74_c00341{left:695.250000px;}
.xe8_c00341{left:696.300000px;}
.xf2_c00341{left:697.500000px;}
.x36_c00341{left:701.100000px;}
.xf_c00341{left:703.500000px;}
.x1f_c00341{left:706.050000px;}
.xcc_c00341{left:707.550000px;}
.x65_c00341{left:709.650000px;}
.x5a_c00341{left:712.350000px;}
.x7d_c00341{left:714.450000px;}
.x10_c00341{left:716.100000px;}
.x4b_c00341{left:717.900000px;}
.xdc_c00341{left:718.950000px;}
.x11b_c00341{left:723.450000px;}
.x6d_c00341{left:724.800000px;}
.x108_c00341{left:725.850000px;}
.xd4_c00341{left:727.650000px;}
.x10b_c00341{left:729.600000px;}
.x92_c00341{left:731.100000px;}
.x4c_c00341{left:732.300000px;}
.xc8_c00341{left:733.500000px;}
.x116_c00341{left:734.850000px;}
.x11f_c00341{left:738.000000px;}
.x4d_c00341{left:740.250000px;}
.x11c_c00341{left:741.450000px;}
.xcf_c00341{left:744.450000px;}
.x109_c00341{left:746.400000px;}
.x4e_c00341{left:747.450000px;}
.xfa_c00341{left:749.100000px;}
.xf7_c00341{left:750.600000px;}
.x75_c00341{left:753.150000px;}
.x86_c00341{left:754.200000px;}
.x126_c00341{left:756.300000px;}
.x11_c00341{left:757.500000px;}
.xe6_c00341{left:759.150000px;}
.x93_c00341{left:760.350000px;}
.x6e_c00341{left:761.400000px;}
.xed_c00341{left:763.650000px;}
.x113_c00341{left:764.700000px;}
.x37_c00341{left:766.650000px;}
.x76_c00341{left:768.000000px;}
.x120_c00341{left:770.100000px;}
.x20_c00341{left:773.400000px;}
.x77_c00341{left:775.200000px;}
.x7e_c00341{left:776.700000px;}
.x12_c00341{left:778.350000px;}
.xee_c00341{left:780.600000px;}
.x94_c00341{left:781.950000px;}
.x4f_c00341{left:783.150000px;}
.xfb_c00341{left:785.400000px;}
.xd5_c00341{left:788.850000px;}
.xda_c00341{left:790.350000px;}
.x38_c00341{left:791.850000px;}
.xf3_c00341{left:793.200000px;}
.x21_c00341{left:794.250000px;}
.xe9_c00341{left:796.050000px;}
.xd9_c00341{left:797.250000px;}
.x127_c00341{left:798.750000px;}
.xdd_c00341{left:799.950000px;}
.x6f_c00341{left:802.200000px;}
.x50_c00341{left:803.250000px;}
.x139_c00341{left:806.250000px;}
.x117_c00341{left:808.500000px;}
.xc3_c00341{left:809.700000px;}
.xd0_c00341{left:812.100000px;}
.xea_c00341{left:813.300000px;}
.x121_c00341{left:815.850000px;}
.xc4_c00341{left:817.200000px;}
.x10a_c00341{left:819.000000px;}
.xf8_c00341{left:820.200000px;}
.xd6_c00341{left:821.550000px;}
.x39_c00341{left:824.550000px;}
.x22_c00341{left:825.600000px;}
.xdf_c00341{left:828.150000px;}
.x79_c00341{left:830.700000px;}
.x51_c00341{left:832.350000px;}
.x13_c00341{left:833.400000px;}
.xc5_c00341{left:834.900000px;}
.xf9_c00341{left:836.400000px;}
.x124_c00341{left:839.550000px;}
.x10c_c00341{left:840.600000px;}
.xe2_c00341{left:841.950000px;}
.xd7_c00341{left:846.000000px;}
.xfc_c00341{left:847.950000px;}
.x14_c00341{left:849.900000px;}
.xcd_c00341{left:851.250000px;}
.x13f_c00341{left:852.300000px;}
.xc9_c00341{left:853.650000px;}
.x87_c00341{left:856.050000px;}
.x3a_c00341{left:859.800000px;}
.x5b_c00341{left:861.300000px;}
.x52_c00341{left:862.950000px;}
.x11a_c00341{left:864.300000px;}
.x140_c00341{left:889.050000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls2_c00341{letter-spacing:0.000000pt;}
.ls1_c00341{letter-spacing:49.523810pt;}
.ls0_c00341{letter-spacing:54.601093pt;}
.ws1_c00341{word-spacing:-83.934426pt;}
.ws9_c00341{word-spacing:-76.190476pt;}
.ws14_c00341{word-spacing:-10.660233pt;}
.ws13_c00341{word-spacing:-9.111111pt;}
.ws12_c00341{word-spacing:-8.535662pt;}
.wsd_c00341{word-spacing:-3.111111pt;}
.ws1a_c00341{word-spacing:0.000000pt;}
.ws16_c00341{word-spacing:3.232811pt;}
.wsa_c00341{word-spacing:3.456790pt;}
.ws19_c00341{word-spacing:4.519501pt;}
.ws10_c00341{word-spacing:5.648076pt;}
.wsb_c00341{word-spacing:7.044890pt;}
.ws18_c00341{word-spacing:8.316262pt;}
.ws17_c00341{word-spacing:10.000000pt;}
.ws0_c00341{word-spacing:11.629417pt;}
.ws4_c00341{word-spacing:17.742120pt;}
.wsf_c00341{word-spacing:17.773012pt;}
.ws6_c00341{word-spacing:19.682540pt;}
.wsc_c00341{word-spacing:21.770492pt;}
.ws8_c00341{word-spacing:22.857143pt;}
.wse_c00341{word-spacing:23.492404pt;}
.ws2_c00341{word-spacing:25.267760pt;}
.ws7_c00341{word-spacing:26.031746pt;}
.ws3_c00341{word-spacing:28.765027pt;}
.ws11_c00341{word-spacing:59.851852pt;}
.ws5_c00341{word-spacing:149.308869pt;}
.ws15_c00341{word-spacing:357.185185pt;}
._1_c00341{margin-left:-54.601093pt;}
._6_c00341{margin-left:-49.523810pt;}
._0_c00341{width:44.019102pt;}
._3_c00341{width:47.075454pt;}
._4_c00341{width:51.103825pt;}
._5_c00341{width:52.698413pt;}
._2_c00341{width:58.098361pt;}
.fs5_c00341{font-size:21.333333pt;}
.fs6_c00341{font-size:42.666667pt;}
.fs4_c00341{font-size:48.000000pt;}
.fs3_c00341{font-size:53.333333pt;}
.fs2_c00341{font-size:58.666667pt;}
.fs1_c00341{font-size:64.000000pt;}
.fs0_c00341{font-size:69.333333pt;}
.y0_c00341{bottom:0.000000pt;}
.y4f_c00341{bottom:96.933333pt;}
.y4e_c00341{bottom:173.733333pt;}
.y4d_c00341{bottom:189.733333pt;}
.y4c_c00341{bottom:204.400000pt;}
.y4b_c00341{bottom:220.133333pt;}
.y4a_c00341{bottom:235.466667pt;}
.y49_c00341{bottom:251.200000pt;}
.y48_c00341{bottom:262.933333pt;}
.y41_c00341{bottom:270.800000pt;}
.y47_c00341{bottom:278.933333pt;}
.y40_c00341{bottom:286.800000pt;}
.y46_c00341{bottom:294.666667pt;}
.y3f_c00341{bottom:303.066667pt;}
.y45_c00341{bottom:310.400000pt;}
.y3e_c00341{bottom:318.400000pt;}
.y44_c00341{bottom:325.733333pt;}
.y3d_c00341{bottom:334.400000pt;}
.y43_c00341{bottom:345.333333pt;}
.y3c_c00341{bottom:350.400000pt;}
.y42_c00341{bottom:361.600000pt;}
.y3b_c00341{bottom:369.866667pt;}
.y3a_c00341{bottom:398.133333pt;}
.y39_c00341{bottom:413.733333pt;}
.y38_c00341{bottom:430.000000pt;}
.y37_c00341{bottom:445.733333pt;}
.y36_c00341{bottom:464.933333pt;}
.y33_c00341{bottom:473.333333pt;}
.y35_c00341{bottom:481.333333pt;}
.y32_c00341{bottom:489.333333pt;}
.y34_c00341{bottom:497.333333pt;}
.y31_c00341{bottom:505.333333pt;}
.y30_c00341{bottom:520.933333pt;}
.y2f_c00341{bottom:532.800000pt;}
.y2e_c00341{bottom:548.800000pt;}
.y2d_c00341{bottom:564.800000pt;}
.y2c_c00341{bottom:574.133333pt;}
.y2b_c00341{bottom:580.533333pt;}
.y1e_c00341{bottom:591.600000pt;}
.y2a_c00341{bottom:596.266667pt;}
.y1d_c00341{bottom:607.333333pt;}
.y29_c00341{bottom:612.266667pt;}
.y1c_c00341{bottom:623.333333pt;}
.y28_c00341{bottom:628.000000pt;}
.y1b_c00341{bottom:639.066667pt;}
.y27_c00341{bottom:644.266667pt;}
.y1a_c00341{bottom:655.066667pt;}
.y26_c00341{bottom:660.000000pt;}
.y19_c00341{bottom:670.800000pt;}
.y25_c00341{bottom:675.733333pt;}
.y18_c00341{bottom:686.533333pt;}
.y24_c00341{bottom:691.733333pt;}
.y17_c00341{bottom:702.533333pt;}
.y23_c00341{bottom:707.733333pt;}
.y16_c00341{bottom:718.266667pt;}
.y22_c00341{bottom:723.466667pt;}
.y15_c00341{bottom:734.266667pt;}
.y21_c00341{bottom:739.466667pt;}
.y14_c00341{bottom:750.000000pt;}
.y20_c00341{bottom:755.200000pt;}
.y13_c00341{bottom:766.000000pt;}
.y1f_c00341{bottom:771.200000pt;}
.y12_c00341{bottom:781.733333pt;}
.y11_c00341{bottom:798.133333pt;}
.y10_c00341{bottom:813.200000pt;}
.yf_c00341{bottom:819.600000pt;}
.ye_c00341{bottom:832.400000pt;}
.yd_c00341{bottom:844.933333pt;}
.yc_c00341{bottom:858.000000pt;}
.yb_c00341{bottom:870.800000pt;}
.ya_c00341{bottom:884.533333pt;}
.y9_c00341{bottom:900.266667pt;}
.y8_c00341{bottom:908.533333pt;}
.y7_c00341{bottom:920.400000pt;}
.y6_c00341{bottom:933.200000pt;}
.y5_c00341{bottom:947.866667pt;}
.y4_c00341{bottom:963.600000pt;}
.y3_c00341{bottom:979.866667pt;}
.y2_c00341{bottom:996.133333pt;}
.y1_c00341{bottom:1018.533333pt;}
.h7_c00341{height:21.333333pt;}
.h8_c00341{height:42.666667pt;}
.h6_c00341{height:48.000000pt;}
.h5_c00341{height:53.333333pt;}
.h4_c00341{height:58.666667pt;}
.h3_c00341{height:64.000000pt;}
.h2_c00341{height:69.333333pt;}
.h0_c00341{height:1127.680013pt;}
.h1_c00341{height:1128.000000pt;}
.w0_c00341{width:853.760009pt;}
.w1_c00341{width:854.000000pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:161.866667pt;}
.x128_c00341{left:162.933333pt;}
.x13c_c00341{left:164.133333pt;}
.xb9_c00341{left:176.666667pt;}
.x3_c00341{left:177.600000pt;}
.x66_c00341{left:178.666667pt;}
.x131_c00341{left:179.733333pt;}
.x134_c00341{left:181.066667pt;}
.x8a_c00341{left:182.800000pt;}
.xf4_c00341{left:194.266667pt;}
.x102_c00341{left:195.200000pt;}
.x15_c00341{left:198.000000pt;}
.xba_c00341{left:200.933333pt;}
.x135_c00341{left:202.800000pt;}
.xa7_c00341{left:203.733333pt;}
.x100_c00341{left:205.733333pt;}
.xef_c00341{left:207.066667pt;}
.x114_c00341{left:209.066667pt;}
.x8b_c00341{left:211.866667pt;}
.x5c_c00341{left:213.333333pt;}
.x3b_c00341{left:214.800000pt;}
.x4_c00341{left:216.933333pt;}
.x78_c00341{left:218.666667pt;}
.xfd_c00341{left:219.600000pt;}
.x2c_c00341{left:220.800000pt;}
.x43_c00341{left:222.000000pt;}
.xac_c00341{left:225.466667pt;}
.x95_c00341{left:226.400000pt;}
.x70_c00341{left:227.866667pt;}
.x16_c00341{left:229.333333pt;}
.xb2_c00341{left:230.933333pt;}
.x67_c00341{left:232.000000pt;}
.x129_c00341{left:233.333333pt;}
.x5_c00341{left:234.800000pt;}
.x5d_c00341{left:235.733333pt;}
.x2d_c00341{left:239.333333pt;}
.x23_c00341{left:242.400000pt;}
.xbb_c00341{left:243.466667pt;}
.x3c_c00341{left:245.200000pt;}
.x97_c00341{left:246.133333pt;}
.x13e_c00341{left:247.333333pt;}
.x7a_c00341{left:249.200000pt;}
.x8c_c00341{left:250.533333pt;}
.x9c_c00341{left:254.000000pt;}
.xa4_c00341{left:255.200000pt;}
.x10d_c00341{left:257.333333pt;}
.x88_c00341{left:258.933333pt;}
.x24_c00341{left:260.266667pt;}
.x3d_c00341{left:261.466667pt;}
.xb3_c00341{left:262.933333pt;}
.x98_c00341{left:264.000000pt;}
.xb7_c00341{left:265.333333pt;}
.xbc_c00341{left:267.466667pt;}
.xaf_c00341{left:268.933333pt;}
.xa2_c00341{left:272.400000pt;}
.x8d_c00341{left:274.133333pt;}
.x6_c00341{left:275.066667pt;}
.x53_c00341{left:276.800000pt;}
.x44_c00341{left:278.266667pt;}
.x25_c00341{left:280.400000pt;}
.x71_c00341{left:282.000000pt;}
.x12d_c00341{left:284.133333pt;}
.xeb_c00341{left:285.333333pt;}
.x5e_c00341{left:287.200000pt;}
.xa8_c00341{left:288.533333pt;}
.x9d_c00341{left:289.866667pt;}
.x103_c00341{left:293.066667pt;}
.x7f_c00341{left:294.000000pt;}
.x12f_c00341{left:295.066667pt;}
.x106_c00341{left:297.066667pt;}
.x68_c00341{left:298.533333pt;}
.x132_c00341{left:301.066667pt;}
.xb0_c00341{left:302.266667pt;}
.x2e_c00341{left:304.000000pt;}
.x7_c00341{left:305.466667pt;}
.x118_c00341{left:306.800000pt;}
.xa5_c00341{left:308.000000pt;}
.x133_c00341{left:309.466667pt;}
.xf5_c00341{left:313.066667pt;}
.x104_c00341{left:315.200000pt;}
.x17_c00341{left:316.666667pt;}
.x12b_c00341{left:318.533333pt;}
.x45_c00341{left:320.533333pt;}
.xbd_c00341{left:321.866667pt;}
.x5f_c00341{left:324.000000pt;}
.x119_c00341{left:326.933333pt;}
.xb4_c00341{left:327.866667pt;}
.x80_c00341{left:332.666667pt;}
.x26_c00341{left:334.133333pt;}
.x54_c00341{left:335.600000pt;}
.x9f_c00341{left:337.333333pt;}
.x10e_c00341{left:340.533333pt;}
.x2f_c00341{left:341.466667pt;}
.xa9_c00341{left:342.933333pt;}
.x8_c00341{left:344.533333pt;}
.x18_c00341{left:345.466667pt;}
.x99_c00341{left:346.533333pt;}
.xad_c00341{left:348.000000pt;}
.xb5_c00341{left:350.000000pt;}
.x8e_c00341{left:353.066667pt;}
.x81_c00341{left:355.066667pt;}
.x30_c00341{left:356.800000pt;}
.xbe_c00341{left:361.200000pt;}
.x9_c00341{left:362.800000pt;}
.x19_c00341{left:364.000000pt;}
.x60_c00341{left:365.866667pt;}
.xb8_c00341{left:368.666667pt;}
.xf0_c00341{left:370.400000pt;}
.x27_c00341{left:371.866667pt;}
.x3e_c00341{left:372.933333pt;}
.xfe_c00341{left:375.466667pt;}
.x2_c00341{left:377.866667pt;}
.xa0_c00341{left:383.066667pt;}
.x72_c00341{left:385.066667pt;}
.x46_c00341{left:386.133333pt;}
.x1a_c00341{left:390.533333pt;}
.xa_c00341{left:391.866667pt;}
.x10f_c00341{left:393.333333pt;}
.x130_c00341{left:394.533333pt;}
.x105_c00341{left:395.866667pt;}
.xaa_c00341{left:397.333333pt;}
.x12a_c00341{left:399.066667pt;}
.x82_c00341{left:400.133333pt;}
.x73_c00341{left:401.333333pt;}
.x47_c00341{left:403.466667pt;}
.x9a_c00341{left:405.066667pt;}
.x55_c00341{left:406.666667pt;}
.xa6_c00341{left:409.466667pt;}
.x61_c00341{left:410.933333pt;}
.x31_c00341{left:412.800000pt;}
.x13a_c00341{left:414.400000pt;}
.x101_c00341{left:415.466667pt;}
.xab_c00341{left:416.533333pt;}
.xb6_c00341{left:418.133333pt;}
.x28_c00341{left:419.200000pt;}
.x12e_c00341{left:420.800000pt;}
.x48_c00341{left:421.733333pt;}
.xa1_c00341{left:422.800000pt;}
.x32_c00341{left:424.266667pt;}
.xae_c00341{left:427.333333pt;}
.x9e_c00341{left:429.466667pt;}
.x136_c00341{left:431.200000pt;}
.xb_c00341{left:432.133333pt;}
.x83_c00341{left:433.466667pt;}
.x89_c00341{left:435.200000pt;}
.x3f_c00341{left:436.933333pt;}
.xff_c00341{left:438.266667pt;}
.x62_c00341{left:440.400000pt;}
.xa3_c00341{left:443.333333pt;}
.x9b_c00341{left:444.400000pt;}
.xec_c00341{left:446.400000pt;}
.x8f_c00341{left:449.466667pt;}
.xb1_c00341{left:451.733333pt;}
.x56_c00341{left:455.600000pt;}
.x12c_c00341{left:457.466667pt;}
.x33_c00341{left:477.733333pt;}
.xbf_c00341{left:479.066667pt;}
.x40_c00341{left:490.400000pt;}
.x110_c00341{left:492.266667pt;}
.x1b_c00341{left:493.200000pt;}
.xc_c00341{left:494.266667pt;}
.x57_c00341{left:502.933333pt;}
.x29_c00341{left:508.400000pt;}
.xe3_c00341{left:511.200000pt;}
.xd1_c00341{left:512.800000pt;}
.x137_c00341{left:515.733333pt;}
.xca_c00341{left:516.933333pt;}
.x41_c00341{left:518.533333pt;}
.x49_c00341{left:520.666667pt;}
.x58_c00341{left:522.800000pt;}
.xe0_c00341{left:524.933333pt;}
.xcb_c00341{left:527.200000pt;}
.x34_c00341{left:532.400000pt;}
.xd8_c00341{left:534.666667pt;}
.x111_c00341{left:536.666667pt;}
.x4a_c00341{left:538.266667pt;}
.x63_c00341{left:539.200000pt;}
.x11e_c00341{left:540.133333pt;}
.x1c_c00341{left:541.200000pt;}
.xe7_c00341{left:542.533333pt;}
.xd_c00341{left:544.133333pt;}
.x69_c00341{left:545.466667pt;}
.xd2_c00341{left:547.333333pt;}
.x59_c00341{left:548.400000pt;}
.xe4_c00341{left:549.600000pt;}
.xc0_c00341{left:551.066667pt;}
.x64_c00341{left:552.666667pt;}
.x2a_c00341{left:554.133333pt;}
.x13d_c00341{left:555.200000pt;}
.x13b_c00341{left:556.133333pt;}
.x112_c00341{left:559.066667pt;}
.xc6_c00341{left:561.066667pt;}
.x42_c00341{left:562.133333pt;}
.xd3_c00341{left:565.600000pt;}
.xde_c00341{left:567.333333pt;}
.xe1_c00341{left:569.733333pt;}
.x96_c00341{left:570.933333pt;}
.x1d_c00341{left:573.200000pt;}
.xf1_c00341{left:574.266667pt;}
.x122_c00341{left:577.066667pt;}
.xc1_c00341{left:578.266667pt;}
.x7b_c00341{left:580.000000pt;}
.xe_c00341{left:582.800000pt;}
.x123_c00341{left:584.400000pt;}
.xdb_c00341{left:585.333333pt;}
.x6a_c00341{left:586.400000pt;}
.x35_c00341{left:587.733333pt;}
.x125_c00341{left:590.133333pt;}
.xce_c00341{left:591.600000pt;}
.x84_c00341{left:592.800000pt;}
.x1e_c00341{left:593.733333pt;}
.xe5_c00341{left:595.733333pt;}
.x85_c00341{left:598.933333pt;}
.xf6_c00341{left:600.666667pt;}
.x115_c00341{left:602.000000pt;}
.x11d_c00341{left:603.200000pt;}
.x90_c00341{left:604.533333pt;}
.x6b_c00341{left:605.600000pt;}
.x2b_c00341{left:606.666667pt;}
.xc7_c00341{left:608.133333pt;}
.x107_c00341{left:610.000000pt;}
.x91_c00341{left:610.933333pt;}
.x6c_c00341{left:612.000000pt;}
.xc2_c00341{left:613.466667pt;}
.x138_c00341{left:614.533333pt;}
.x7c_c00341{left:615.866667pt;}
.x74_c00341{left:618.000000pt;}
.xe8_c00341{left:618.933333pt;}
.xf2_c00341{left:620.000000pt;}
.x36_c00341{left:623.200000pt;}
.xf_c00341{left:625.333333pt;}
.x1f_c00341{left:627.600000pt;}
.xcc_c00341{left:628.933333pt;}
.x65_c00341{left:630.800000pt;}
.x5a_c00341{left:633.200000pt;}
.x7d_c00341{left:635.066667pt;}
.x10_c00341{left:636.533333pt;}
.x4b_c00341{left:638.133333pt;}
.xdc_c00341{left:639.066667pt;}
.x11b_c00341{left:643.066667pt;}
.x6d_c00341{left:644.266667pt;}
.x108_c00341{left:645.200000pt;}
.xd4_c00341{left:646.800000pt;}
.x10b_c00341{left:648.533333pt;}
.x92_c00341{left:649.866667pt;}
.x4c_c00341{left:650.933333pt;}
.xc8_c00341{left:652.000000pt;}
.x116_c00341{left:653.200000pt;}
.x11f_c00341{left:656.000000pt;}
.x4d_c00341{left:658.000000pt;}
.x11c_c00341{left:659.066667pt;}
.xcf_c00341{left:661.733333pt;}
.x109_c00341{left:663.466667pt;}
.x4e_c00341{left:664.400000pt;}
.xfa_c00341{left:665.866667pt;}
.xf7_c00341{left:667.200000pt;}
.x75_c00341{left:669.466667pt;}
.x86_c00341{left:670.400000pt;}
.x126_c00341{left:672.266667pt;}
.x11_c00341{left:673.333333pt;}
.xe6_c00341{left:674.800000pt;}
.x93_c00341{left:675.866667pt;}
.x6e_c00341{left:676.800000pt;}
.xed_c00341{left:678.800000pt;}
.x113_c00341{left:679.733333pt;}
.x37_c00341{left:681.466667pt;}
.x76_c00341{left:682.666667pt;}
.x120_c00341{left:684.533333pt;}
.x20_c00341{left:687.466667pt;}
.x77_c00341{left:689.066667pt;}
.x7e_c00341{left:690.400000pt;}
.x12_c00341{left:691.866667pt;}
.xee_c00341{left:693.866667pt;}
.x94_c00341{left:695.066667pt;}
.x4f_c00341{left:696.133333pt;}
.xfb_c00341{left:698.133333pt;}
.xd5_c00341{left:701.200000pt;}
.xda_c00341{left:702.533333pt;}
.x38_c00341{left:703.866667pt;}
.xf3_c00341{left:705.066667pt;}
.x21_c00341{left:706.000000pt;}
.xe9_c00341{left:707.600000pt;}
.xd9_c00341{left:708.666667pt;}
.x127_c00341{left:710.000000pt;}
.xdd_c00341{left:711.066667pt;}
.x6f_c00341{left:713.066667pt;}
.x50_c00341{left:714.000000pt;}
.x139_c00341{left:716.666667pt;}
.x117_c00341{left:718.666667pt;}
.xc3_c00341{left:719.733333pt;}
.xd0_c00341{left:721.866667pt;}
.xea_c00341{left:722.933333pt;}
.x121_c00341{left:725.200000pt;}
.xc4_c00341{left:726.400000pt;}
.x10a_c00341{left:728.000000pt;}
.xf8_c00341{left:729.066667pt;}
.xd6_c00341{left:730.266667pt;}
.x39_c00341{left:732.933333pt;}
.x22_c00341{left:733.866667pt;}
.xdf_c00341{left:736.133333pt;}
.x79_c00341{left:738.400000pt;}
.x51_c00341{left:739.866667pt;}
.x13_c00341{left:740.800000pt;}
.xc5_c00341{left:742.133333pt;}
.xf9_c00341{left:743.466667pt;}
.x124_c00341{left:746.266667pt;}
.x10c_c00341{left:747.200000pt;}
.xe2_c00341{left:748.400000pt;}
.xd7_c00341{left:752.000000pt;}
.xfc_c00341{left:753.733333pt;}
.x14_c00341{left:755.466667pt;}
.xcd_c00341{left:756.666667pt;}
.x13f_c00341{left:757.600000pt;}
.xc9_c00341{left:758.800000pt;}
.x87_c00341{left:760.933333pt;}
.x3a_c00341{left:764.266667pt;}
.x5b_c00341{left:765.600000pt;}
.x52_c00341{left:767.066667pt;}
.x11a_c00341{left:768.266667pt;}
.x140_c00341{left:790.266667pt;}
}





/* 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_c00342 {
    display:none;
  }
  .loading-indicator_c00342.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00342 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_c00342 { 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_c00342" -> "#page-container .classname_c00342")
 */
.pf_c00342 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00342 { /* 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_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00342 { /* 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_c00342 { /* 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_c00342 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00342 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00342 {overflow:visible;}
  }
}
.c_c00342 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00342 { /* 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_c00342:after { /* webkit #35443 */
  content: '';
}
.t_c00342:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00342 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 */
}
.__c00342 { /* 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_c00342 { /* info for Javascript */
  display:none;
}
.l_c00342 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00342 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00342 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00342: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_c00342 {
    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_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00342.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_c00342 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00342;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.000000;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;}
.mde_c00342{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00342{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.me0_c00342{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m16_c00342{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00342{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m22_c00342{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m15_c00342{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00342{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m107_c00342{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m20_c00342{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7_c00342{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m75_c00342{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00342{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m21_c00342{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m31_c00342{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00342{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00342{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md6_c00342{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00342{transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00342{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00342{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.mb_c00342{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00342{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.md5_c00342{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00342{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00342{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.mce_c00342{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00342{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00342{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00342{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m28_c00342{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00342{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00342{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m89_c00342{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m17_c00342{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m101_c00342{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m81_c00342{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m93_c00342{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00342{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m9_c00342{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00342{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m25_c00342{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m100_c00342{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m19_c00342{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m84_c00342{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m65_c00342{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00342{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mea_c00342{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00342{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m61_c00342{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00342{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00342{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m13_c00342{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m82_c00342{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00342{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m56_c00342{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md9_c00342{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00342{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m85_c00342{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00342{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mae_c00342{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m91_c00342{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m92_c00342{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.me_c00342{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md8_c00342{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00342{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00342{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00342{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m44_c00342{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mff_c00342{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma_c00342{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mef_c00342{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m66_c00342{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00342{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m62_c00342{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m33_c00342{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m73_c00342{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m12_c00342{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m83_c00342{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m49_c00342{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m95_c00342{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mec_c00342{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00342{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00342{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00342{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00342{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mee_c00342{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00342{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m42_c00342{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00342{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00342{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00342{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.med_c00342{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00342{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m26_c00342{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m27_c00342{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00342{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.maa_c00342{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00342{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m4_c00342{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m50_c00342{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me7_c00342{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m54_c00342{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00342{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00342{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00342{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00342{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m98_c00342{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00342{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00342{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md2_c00342{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m90_c00342{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00342{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00342{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m87_c00342{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m23_c00342{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00342{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00342{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m67_c00342{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me4_c00342{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00342{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00342{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m47_c00342{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m59_c00342{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00342{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00342{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m53_c00342{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m79_c00342{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m36_c00342{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m96_c00342{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m11_c00342{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00342{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00342{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m48_c00342{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00342{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m68_c00342{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc_c00342{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m64_c00342{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00342{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m55_c00342{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00342{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m40_c00342{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00342{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00342{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00342{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00342{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m51_c00342{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00342{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00342{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m35_c00342{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m34_c00342{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.me1_c00342{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00342{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m69_c00342{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m63_c00342{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00342{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00342{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m43_c00342{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me3_c00342{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md_c00342{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00342{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00342{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me2_c00342{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m94_c00342{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m46_c00342{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00342{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00342{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00342{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6_c00342{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me9_c00342{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m72_c00342{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00342{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00342{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m70_c00342{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m45_c00342{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00342{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m52_c00342{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00342{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00342{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m86_c00342{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mba_c00342{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00342{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m78_c00342{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m41_c00342{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00342{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m38_c00342{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00342{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00342{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m39_c00342{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md7_c00342{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00342{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mda_c00342{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00342{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00342{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m71_c00342{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00342{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me5_c00342{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00342{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00342{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m58_c00342{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me6_c00342{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00342{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00342{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m119_c00342{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00342{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00342{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf_c00342{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00342{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00342{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m76_c00342{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m115_c00342{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00342{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m10_c00342{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m60_c00342{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00342{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m30_c00342{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m77_c00342{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00342{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m117_c00342{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00342{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1_c00342{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m14_c00342{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m103_c00342{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3_c00342{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5_c00342{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00342{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00342{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m104_c00342{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8_c00342{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00342{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00342{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00342{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m111_c00342{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m74_c00342{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00342{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00342{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m114_c00342{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00342{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2_c00342{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00342{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m113_c00342{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m57_c00342{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m105_c00342{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m99_c00342{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00342{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m106_c00342{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.me8_c00342{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00342{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m112_c00342{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.maf_c00342{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mca_c00342{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00342{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m116_c00342{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00342{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.meb_c00342{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00342{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m24_c00342{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m108_c00342{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m97_c00342{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md1_c00342{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m37_c00342{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00342{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m118_c00342{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00342{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00342{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m109_c00342{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00342{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00342{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m88_c00342{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00342{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00342{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m80_c00342{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m110_c00342{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mad_c00342{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00342{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.mac_c00342{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mab_c00342{transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);}
.m0_c00342{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m18_c00342{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00342{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m29_c00342{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.md0_c00342{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m32_c00342{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m102_c00342{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.md4_c00342{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.md3_c00342{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls3_c00342{letter-spacing:0.000000px;}
.ls1_c00342{letter-spacing:50.211796px;}
.ls2_c00342{letter-spacing:55.714286px;}
.ls0_c00342{letter-spacing:59.285714px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{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__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00342{word-spacing:-89.285714px;}
.wse_c00342{word-spacing:-85.714286px;}
.ws5_c00342{word-spacing:-77.211796px;}
.ws10_c00342{word-spacing:-14.030568px;}
.wsf_c00342{word-spacing:-8.398721px;}
.ws12_c00342{word-spacing:0.000000px;}
.ws7_c00342{word-spacing:10.637002px;}
.ws11_c00342{word-spacing:12.135678px;}
.ws4_c00342{word-spacing:15.000000px;}
.ws9_c00342{word-spacing:18.125000px;}
.ws6_c00342{word-spacing:19.994638px;}
.ws0_c00342{word-spacing:22.142857px;}
.wsd_c00342{word-spacing:22.812500px;}
.wsc_c00342{word-spacing:23.211796px;}
.ws2_c00342{word-spacing:25.714286px;}
.ws1_c00342{word-spacing:29.285714px;}
.ws8_c00342{word-spacing:35.833333px;}
.wsb_c00342{word-spacing:39.750000px;}
.wsa_c00342{word-spacing:67.631579px;}
._2_c00342{margin-left:-59.285714px;}
._7_c00342{margin-left:-55.714286px;}
._4_c00342{margin-left:-50.211796px;}
._3_c00342{width:48.125000px;}
._6_c00342{width:53.428954px;}
._1_c00342{width:55.714286px;}
._0_c00342{width:59.285714px;}
._5_c00342{width:281.847185px;}
.fc0_c00342{color:transparent;}
.fs5_c00342{font-size:30.000000px;}
.fs2_c00342{font-size:54.000000px;}
.fs1_c00342{font-size:60.000000px;}
.fs3_c00342{font-size:66.000000px;}
.fs4_c00342{font-size:72.000000px;}
.fs0_c00342{font-size:84.000000px;}
.y0_c00342{bottom:0.000000px;}
.y69_c00342{bottom:178.200000px;}
.y37_c00342{bottom:192.600000px;}
.y68_c00342{bottom:192.900000px;}
.y36_c00342{bottom:206.700000px;}
.y67_c00342{bottom:208.800000px;}
.y35_c00342{bottom:220.800000px;}
.y66_c00342{bottom:223.500000px;}
.y34_c00342{bottom:235.500000px;}
.y65_c00342{bottom:237.900000px;}
.y33_c00342{bottom:249.900000px;}
.y64_c00342{bottom:256.650000px;}
.y32_c00342{bottom:264.000000px;}
.y63_c00342{bottom:270.750000px;}
.y31_c00342{bottom:278.700000px;}
.y30_c00342{bottom:293.100000px;}
.y62_c00342{bottom:309.600000px;}
.y61_c00342{bottom:327.600000px;}
.y2f_c00342{bottom:340.500000px;}
.y60_c00342{bottom:348.600000px;}
.y2e_c00342{bottom:362.100000px;}
.y5f_c00342{bottom:367.650000px;}
.y5e_c00342{bottom:385.650000px;}
.y2d_c00342{bottom:393.150000px;}
.y5d_c00342{bottom:403.350000px;}
.y5c_c00342{bottom:421.050000px;}
.y2c_c00342{bottom:428.100000px;}
.y5b_c00342{bottom:438.300000px;}
.y2b_c00342{bottom:446.100000px;}
.y5a_c00342{bottom:456.000000px;}
.y2a_c00342{bottom:464.100000px;}
.y59_c00342{bottom:473.700000px;}
.y29_c00342{bottom:481.350000px;}
.y58_c00342{bottom:494.550000px;}
.y28_c00342{bottom:504.000000px;}
.y57_c00342{bottom:514.050000px;}
.y27_c00342{bottom:522.300000px;}
.y26_c00342{bottom:540.000000px;}
.y56_c00342{bottom:544.650000px;}
.y25_c00342{bottom:558.000000px;}
.y55_c00342{bottom:562.350000px;}
.y24_c00342{bottom:575.700000px;}
.y23_c00342{bottom:596.550000px;}
.y54_c00342{bottom:600.450000px;}
.y22_c00342{bottom:615.300000px;}
.y53_c00342{bottom:615.900000px;}
.y21_c00342{bottom:633.000000px;}
.y52_c00342{bottom:633.900000px;}
.y20_c00342{bottom:650.700000px;}
.y51_c00342{bottom:651.600000px;}
.y1f_c00342{bottom:668.700000px;}
.y50_c00342{bottom:673.800000px;}
.y1e_c00342{bottom:686.400000px;}
.y4f_c00342{bottom:691.500000px;}
.y1d_c00342{bottom:704.100000px;}
.y4e_c00342{bottom:709.200000px;}
.y1c_c00342{bottom:722.100000px;}
.y4d_c00342{bottom:731.100000px;}
.y1b_c00342{bottom:739.800000px;}
.y4c_c00342{bottom:752.700000px;}
.y1a_c00342{bottom:757.800000px;}
.y4b_c00342{bottom:770.700000px;}
.y19_c00342{bottom:775.500000px;}
.y4a_c00342{bottom:788.700000px;}
.y18_c00342{bottom:793.200000px;}
.y49_c00342{bottom:806.400000px;}
.y17_c00342{bottom:810.900000px;}
.y48_c00342{bottom:824.400000px;}
.y16_c00342{bottom:828.600000px;}
.y47_c00342{bottom:845.550000px;}
.y15_c00342{bottom:846.300000px;}
.y46_c00342{bottom:863.250000px;}
.y14_c00342{bottom:864.300000px;}
.y13_c00342{bottom:882.000000px;}
.y45_c00342{bottom:885.300000px;}
.y12_c00342{bottom:902.100000px;}
.y44_c00342{bottom:906.750000px;}
.y11_c00342{bottom:916.800000px;}
.y43_c00342{bottom:925.500000px;}
.y10_c00342{bottom:931.200000px;}
.y42_c00342{bottom:942.750000px;}
.yf_c00342{bottom:945.600000px;}
.ye_c00342{bottom:959.700000px;}
.y41_c00342{bottom:960.750000px;}
.y40_c00342{bottom:978.450000px;}
.yd_c00342{bottom:979.350000px;}
.yc_c00342{bottom:993.750000px;}
.y3f_c00342{bottom:996.150000px;}
.yb_c00342{bottom:1007.850000px;}
.ya_c00342{bottom:1022.250000px;}
.y3e_c00342{bottom:1022.700000px;}
.y3d_c00342{bottom:1030.350000px;}
.y9_c00342{bottom:1036.650000px;}
.y3c_c00342{bottom:1041.150000px;}
.y3b_c00342{bottom:1050.450000px;}
.y8_c00342{bottom:1050.750000px;}
.y7_c00342{bottom:1064.850000px;}
.y3a_c00342{bottom:1076.700000px;}
.y6_c00342{bottom:1078.650000px;}
.y5_c00342{bottom:1093.350000px;}
.y39_c00342{bottom:1098.750000px;}
.y4_c00342{bottom:1107.000000px;}
.y38_c00342{bottom:1120.350000px;}
.y3_c00342{bottom:1123.500000px;}
.y2_c00342{bottom:1142.250000px;}
.y1_c00342{bottom:1146.900000px;}
.h7_c00342{height:30.000000px;}
.h4_c00342{height:54.000000px;}
.h3_c00342{height:60.000000px;}
.h5_c00342{height:66.000000px;}
.h6_c00342{height:72.000000px;}
.h2_c00342{height:84.000000px;}
.h1_c00342{height:1266.750000px;}
.h0_c00342{height:1266.839905px;}
.w0_c00342{width:960.480010px;}
.w1_c00342{width:960.750000px;}
.x0_c00342{left:0.000000px;}
.x91_c00342{left:84.300000px;}
.x3_c00342{left:85.350000px;}
.x5c_c00342{left:86.400000px;}
.x27_c00342{left:98.250000px;}
.x13_c00342{left:99.300000px;}
.xd_c00342{left:100.950000px;}
.x6e_c00342{left:102.450000px;}
.x60_c00342{left:104.100000px;}
.x21_c00342{left:113.550000px;}
.x9b_c00342{left:115.650000px;}
.xa0_c00342{left:117.000000px;}
.x85_c00342{left:122.400000px;}
.x68_c00342{left:124.500000px;}
.x4f_c00342{left:126.150000px;}
.x76_c00342{left:127.500000px;}
.xe_c00342{left:131.250000px;}
.x98_c00342{left:132.450000px;}
.x28_c00342{left:133.500000px;}
.x22_c00342{left:135.450000px;}
.x46_c00342{left:136.500000px;}
.x82_c00342{left:138.600000px;}
.x7d_c00342{left:139.800000px;}
.x87_c00342{left:142.800000px;}
.x4_c00342{left:144.000000px;}
.x7a_c00342{left:147.000000px;}
.x29_c00342{left:148.500000px;}
.x6f_c00342{left:150.000000px;}
.x4a_c00342{left:152.250000px;}
.x14_c00342{left:153.300000px;}
.x2a_c00342{left:155.400000px;}
.x23_c00342{left:157.800000px;}
.x90_c00342{left:159.450000px;}
.x57_c00342{left:161.100000px;}
.x2b_c00342{left:162.900000px;}
.x7f_c00342{left:166.500000px;}
.x39_c00342{left:167.850000px;}
.x2c_c00342{left:170.100000px;}
.x15_c00342{left:172.050000px;}
.x5d_c00342{left:174.300000px;}
.xf_c00342{left:176.250000px;}
.x77_c00342{left:177.600000px;}
.x66_c00342{left:179.550000px;}
.x5a_c00342{left:181.650000px;}
.x94_c00342{left:183.150000px;}
.x2d_c00342{left:185.250000px;}
.x16_c00342{left:188.250000px;}
.x92_c00342{left:189.300000px;}
.x47_c00342{left:190.800000px;}
.x10_c00342{left:192.150000px;}
.x35_c00342{left:193.950000px;}
.x88_c00342{left:196.800000px;}
.x8a_c00342{left:197.850000px;}
.x5b_c00342{left:202.200000px;}
.x72_c00342{left:203.850000px;}
.x97_c00342{left:204.900000px;}
.x5_c00342{left:206.700000px;}
.x3a_c00342{left:207.750000px;}
.x48_c00342{left:209.100000px;}
.x95_c00342{left:212.850000px;}
.x2e_c00342{left:214.350000px;}
.x24_c00342{left:215.700000px;}
.x3d_c00342{left:216.750000px;}
.x3b_c00342{left:218.850000px;}
.x8b_c00342{left:220.500000px;}
.x2f_c00342{left:221.550000px;}
.x3e_c00342{left:222.900000px;}
.x11_c00342{left:225.600000px;}
.x25_c00342{left:228.300000px;}
.x17_c00342{left:229.950000px;}
.x83_c00342{left:231.450000px;}
.x99_c00342{left:235.200000px;}
.x3c_c00342{left:236.700000px;}
.x61_c00342{left:238.350000px;}
.x54_c00342{left:240.000000px;}
.x8c_c00342{left:242.850000px;}
.x36_c00342{left:244.650000px;}
.x6_c00342{left:246.000000px;}
.x9a_c00342{left:248.100000px;}
.x18_c00342{left:251.550000px;}
.x62_c00342{left:254.250000px;}
.x5e_c00342{left:255.300000px;}
.x73_c00342{left:256.800000px;}
.x19_c00342{left:258.750000px;}
.x8d_c00342{left:261.150000px;}
.x69_c00342{left:262.800000px;}
.x38_c00342{left:264.150000px;}
.x7_c00342{left:265.800000px;}
.x8f_c00342{left:267.300000px;}
.x64_c00342{left:271.050000px;}
.x30_c00342{left:272.550000px;}
.x50_c00342{left:275.850000px;}
.x4b_c00342{left:277.200000px;}
.x6c_c00342{left:279.600000px;}
.x3f_c00342{left:281.400000px;}
.x84_c00342{left:282.600000px;}
.x86_c00342{left:284.100000px;}
.x31_c00342{left:286.500000px;}
.x1a_c00342{left:287.550000px;}
.x40_c00342{left:288.600000px;}
.x7e_c00342{left:291.750000px;}
.x12_c00342{left:293.700000px;}
.x32_c00342{left:294.750000px;}
.x41_c00342{left:295.800000px;}
.x7b_c00342{left:297.900000px;}
.x93_c00342{left:300.900000px;}
.x1b_c00342{left:301.950000px;}
.x8_c00342{left:303.300000px;}
.x55_c00342{left:306.900000px;}
.x1c_c00342{left:309.150000px;}
.x42_c00342{left:310.650000px;}
.x9_c00342{left:312.600000px;}
.x33_c00342{left:315.750000px;}
.x43_c00342{left:317.550000px;}
.x26_c00342{left:319.050000px;}
.x9c_c00342{left:320.100000px;}
.x6a_c00342{left:321.150000px;}
.x34_c00342{left:323.250000px;}
.x44_c00342{left:325.050000px;}
.x51_c00342{left:327.000000px;}
.x96_c00342{left:328.650000px;}
.x1d_c00342{left:330.750000px;}
.x78_c00342{left:331.950000px;}
.x1_c00342{left:335.100000px;}
.x58_c00342{left:336.900000px;}
.x52_c00342{left:338.550000px;}
.xa_c00342{left:342.150000px;}
.x80_c00342{left:343.800000px;}
.x74_c00342{left:345.000000px;}
.x4c_c00342{left:346.050000px;}
.x1e_c00342{left:349.800000px;}
.x45_c00342{left:351.300000px;}
.x5f_c00342{left:353.250000px;}
.x9d_c00342{left:354.300000px;}
.x53_c00342{left:355.500000px;}
.x89_c00342{left:358.800000px;}
.x7c_c00342{left:360.900000px;}
.x81_c00342{left:362.100000px;}
.x65_c00342{left:363.450000px;}
.x71_c00342{left:366.150000px;}
.x9e_c00342{left:368.700000px;}
.xb_c00342{left:373.050000px;}
.x4d_c00342{left:375.600000px;}
.x6b_c00342{left:376.650000px;}
.x1f_c00342{left:378.900000px;}
.x37_c00342{left:380.250000px;}
.x67_c00342{left:381.900000px;}
.x79_c00342{left:385.650000px;}
.x59_c00342{left:387.600000px;}
.x70_c00342{left:392.400000px;}
.x6d_c00342{left:394.350000px;}
.x63_c00342{left:397.050000px;}
.x75_c00342{left:399.300000px;}
.x9f_c00342{left:401.400000px;}
.x8e_c00342{left:403.050000px;}
.x4e_c00342{left:404.100000px;}
.x56_c00342{left:405.450000px;}
.xc_c00342{left:406.950000px;}
.x20_c00342{left:408.750000px;}
.x49_c00342{left:410.400000px;}
.x12c_c00342{left:440.700000px;}
.xac_c00342{left:442.500000px;}
.x10b_c00342{left:444.900000px;}
.x128_c00342{left:454.650000px;}
.x12e_c00342{left:455.700000px;}
.xbf_c00342{left:459.000000px;}
.xb7_c00342{left:460.800000px;}
.x11d_c00342{left:462.750000px;}
.x12d_c00342{left:467.400000px;}
.xd6_c00342{left:476.100000px;}
.xa9_c00342{left:477.300000px;}
.xa1_c00342{left:478.500000px;}
.xf1_c00342{left:479.850000px;}
.x119_c00342{left:482.100000px;}
.x129_c00342{left:483.150000px;}
.x121_c00342{left:486.150000px;}
.x10c_c00342{left:488.100000px;}
.xd7_c00342{left:492.300000px;}
.xc8_c00342{left:494.250000px;}
.x106_c00342{left:497.100000px;}
.x124_c00342{left:498.150000px;}
.xe5_c00342{left:500.400000px;}
.xea_c00342{left:502.200000px;}
.xf5_c00342{left:504.750000px;}
.x12a_c00342{left:506.250000px;}
.xfd_c00342{left:510.150000px;}
.xdc_c00342{left:511.200000px;}
.x102_c00342{left:514.350000px;}
.xad_c00342{left:517.350000px;}
.xe2_c00342{left:519.150000px;}
.xc9_c00342{left:520.500000px;}
.xb5_c00342{left:521.850000px;}
.xa2_c00342{left:523.800000px;}
.xc0_c00342{left:524.850000px;}
.xaa_c00342{left:527.400000px;}
.x107_c00342{left:529.500000px;}
.xa4_c00342{left:532.050000px;}
.xe6_c00342{left:533.550000px;}
.x11e_c00342{left:534.750000px;}
.xca_c00342{left:536.400000px;}
.xab_c00342{left:539.250000px;}
.xb9_c00342{left:540.300000px;}
.xfe_c00342{left:542.250000px;}
.xee_c00342{left:545.100000px;}
.xfb_c00342{left:546.300000px;}
.xf6_c00342{left:547.950000px;}
.x11b_c00342{left:549.750000px;}
.xd0_c00342{left:551.850000px;}
.xe7_c00342{left:554.400000px;}
.xd8_c00342{left:556.350000px;}
.xb8_c00342{left:557.550000px;}
.x112_c00342{left:558.900000px;}
.x110_c00342{left:560.550000px;}
.x103_c00342{left:562.500000px;}
.xc1_c00342{left:565.200000px;}
.xd1_c00342{left:568.350000px;}
.xf2_c00342{left:573.150000px;}
.x108_c00342{left:574.350000px;}
.x115_c00342{left:576.450000px;}
.xa3_c00342{left:577.500000px;}
.x125_c00342{left:579.150000px;}
.xa5_c00342{left:581.400000px;}
.xc2_c00342{left:583.950000px;}
.xae_c00342{left:585.000000px;}
.xb6_c00342{left:587.400000px;}
.xef_c00342{left:590.850000px;}
.xd9_c00342{left:591.900000px;}
.x12b_c00342{left:594.750000px;}
.x122_c00342{left:596.850000px;}
.xf7_c00342{left:598.350000px;}
.x12f_c00342{left:599.400000px;}
.xf8_c00342{left:600.450000px;}
.xcb_c00342{left:602.700000px;}
.xeb_c00342{left:606.300000px;}
.x10d_c00342{left:609.900000px;}
.x11a_c00342{left:611.100000px;}
.x109_c00342{left:612.900000px;}
.xcc_c00342{left:614.550000px;}
.x104_c00342{left:615.750000px;}
.xc3_c00342{left:617.100000px;}
.xba_c00342{left:618.450000px;}
.x126_c00342{left:619.800000px;}
.x113_c00342{left:622.650000px;}
.x116_c00342{left:625.800000px;}
.xa6_c00342{left:627.450000px;}
.xd2_c00342{left:628.800000px;}
.xfc_c00342{left:630.900000px;}
.x127_c00342{left:632.100000px;}
.xe3_c00342{left:635.400000px;}
.x10e_c00342{left:636.600000px;}
.xdf_c00342{left:638.400000px;}
.xcd_c00342{left:641.850000px;}
.xf3_c00342{left:643.350000px;}
.xaf_c00342{left:645.150000px;}
.xbb_c00342{left:646.200000px;}
.x131_c00342{left:647.550000px;}
.xdd_c00342{left:650.550000px;}
.x10a_c00342{left:651.750000px;}
.x111_c00342{left:652.950000px;}
.xf9_c00342{left:654.750000px;}
.xb0_c00342{left:656.700000px;}
.xda_c00342{left:659.550000px;}
.x11f_c00342{left:661.500000px;}
.xf4_c00342{left:663.900000px;}
.xd3_c00342{left:665.100000px;}
.xc4_c00342{left:668.550000px;}
.x130_c00342{left:671.400000px;}
.xec_c00342{left:672.900000px;}
.xce_c00342{left:673.950000px;}
.xde_c00342{left:678.300000px;}
.xff_c00342{left:681.150000px;}
.xa7_c00342{left:683.250000px;}
.xbc_c00342{left:684.300000px;}
.xc5_c00342{left:687.600000px;}
.xe8_c00342{left:690.450000px;}
.xe4_c00342{left:692.700000px;}
.xb1_c00342{left:696.600000px;}
.xc6_c00342{left:700.500000px;}
.xed_c00342{left:701.700000px;}
.xf0_c00342{left:703.050000px;}
.xe0_c00342{left:704.700000px;}
.xd4_c00342{left:709.350000px;}
.xe9_c00342{left:711.000000px;}
.xb2_c00342{left:712.050000px;}
.x123_c00342{left:713.400000px;}
.x120_c00342{left:720.900000px;}
.x105_c00342{left:723.000000px;}
.xa8_c00342{left:724.650000px;}
.x10f_c00342{left:726.600000px;}
.xfa_c00342{left:729.900000px;}
.x117_c00342{left:732.600000px;}
.x132_c00342{left:735.300000px;}
.xc7_c00342{left:737.250000px;}
.xd5_c00342{left:739.950000px;}
.xdb_c00342{left:741.900000px;}
.xb3_c00342{left:744.750000px;}
.xcf_c00342{left:748.800000px;}
.x114_c00342{left:750.450000px;}
.x2_c00342{left:751.950000px;}
.x11c_c00342{left:753.300000px;}
.xbd_c00342{left:755.250000px;}
.x133_c00342{left:757.200000px;}
.x118_c00342{left:759.300000px;}
.x100_c00342{left:763.200000px;}
.xbe_c00342{left:767.100000px;}
.x101_c00342{left:768.150000px;}
.xe1_c00342{left:772.050000px;}
.xb4_c00342{left:774.300000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls3_c00342{letter-spacing:0.000000pt;}
.ls1_c00342{letter-spacing:44.632708pt;}
.ls2_c00342{letter-spacing:49.523810pt;}
.ls0_c00342{letter-spacing:52.698413pt;}
.ws3_c00342{word-spacing:-79.365079pt;}
.wse_c00342{word-spacing:-76.190476pt;}
.ws5_c00342{word-spacing:-68.632708pt;}
.ws10_c00342{word-spacing:-12.471616pt;}
.wsf_c00342{word-spacing:-7.465529pt;}
.ws12_c00342{word-spacing:0.000000pt;}
.ws7_c00342{word-spacing:9.455113pt;}
.ws11_c00342{word-spacing:10.787270pt;}
.ws4_c00342{word-spacing:13.333333pt;}
.ws9_c00342{word-spacing:16.111111pt;}
.ws6_c00342{word-spacing:17.773012pt;}
.ws0_c00342{word-spacing:19.682540pt;}
.wsd_c00342{word-spacing:20.277778pt;}
.wsc_c00342{word-spacing:20.632708pt;}
.ws2_c00342{word-spacing:22.857143pt;}
.ws1_c00342{word-spacing:26.031746pt;}
.ws8_c00342{word-spacing:31.851852pt;}
.wsb_c00342{word-spacing:35.333333pt;}
.wsa_c00342{word-spacing:60.116959pt;}
._2_c00342{margin-left:-52.698413pt;}
._7_c00342{margin-left:-49.523810pt;}
._4_c00342{margin-left:-44.632708pt;}
._3_c00342{width:42.777778pt;}
._6_c00342{width:47.492404pt;}
._1_c00342{width:49.523810pt;}
._0_c00342{width:52.698413pt;}
._5_c00342{width:250.530831pt;}
.fs5_c00342{font-size:26.666667pt;}
.fs2_c00342{font-size:48.000000pt;}
.fs1_c00342{font-size:53.333333pt;}
.fs3_c00342{font-size:58.666667pt;}
.fs4_c00342{font-size:64.000000pt;}
.fs0_c00342{font-size:74.666667pt;}
.y0_c00342{bottom:0.000000pt;}
.y69_c00342{bottom:158.400000pt;}
.y37_c00342{bottom:171.200000pt;}
.y68_c00342{bottom:171.466667pt;}
.y36_c00342{bottom:183.733333pt;}
.y67_c00342{bottom:185.600000pt;}
.y35_c00342{bottom:196.266667pt;}
.y66_c00342{bottom:198.666667pt;}
.y34_c00342{bottom:209.333333pt;}
.y65_c00342{bottom:211.466667pt;}
.y33_c00342{bottom:222.133333pt;}
.y64_c00342{bottom:228.133333pt;}
.y32_c00342{bottom:234.666667pt;}
.y63_c00342{bottom:240.666667pt;}
.y31_c00342{bottom:247.733333pt;}
.y30_c00342{bottom:260.533333pt;}
.y62_c00342{bottom:275.200000pt;}
.y61_c00342{bottom:291.200000pt;}
.y2f_c00342{bottom:302.666667pt;}
.y60_c00342{bottom:309.866667pt;}
.y2e_c00342{bottom:321.866667pt;}
.y5f_c00342{bottom:326.800000pt;}
.y5e_c00342{bottom:342.800000pt;}
.y2d_c00342{bottom:349.466667pt;}
.y5d_c00342{bottom:358.533333pt;}
.y5c_c00342{bottom:374.266667pt;}
.y2c_c00342{bottom:380.533333pt;}
.y5b_c00342{bottom:389.600000pt;}
.y2b_c00342{bottom:396.533333pt;}
.y5a_c00342{bottom:405.333333pt;}
.y2a_c00342{bottom:412.533333pt;}
.y59_c00342{bottom:421.066667pt;}
.y29_c00342{bottom:427.866667pt;}
.y58_c00342{bottom:439.600000pt;}
.y28_c00342{bottom:448.000000pt;}
.y57_c00342{bottom:456.933333pt;}
.y27_c00342{bottom:464.266667pt;}
.y26_c00342{bottom:480.000000pt;}
.y56_c00342{bottom:484.133333pt;}
.y25_c00342{bottom:496.000000pt;}
.y55_c00342{bottom:499.866667pt;}
.y24_c00342{bottom:511.733333pt;}
.y23_c00342{bottom:530.266667pt;}
.y54_c00342{bottom:533.733333pt;}
.y22_c00342{bottom:546.933333pt;}
.y53_c00342{bottom:547.466667pt;}
.y21_c00342{bottom:562.666667pt;}
.y52_c00342{bottom:563.466667pt;}
.y20_c00342{bottom:578.400000pt;}
.y51_c00342{bottom:579.200000pt;}
.y1f_c00342{bottom:594.400000pt;}
.y50_c00342{bottom:598.933333pt;}
.y1e_c00342{bottom:610.133333pt;}
.y4f_c00342{bottom:614.666667pt;}
.y1d_c00342{bottom:625.866667pt;}
.y4e_c00342{bottom:630.400000pt;}
.y1c_c00342{bottom:641.866667pt;}
.y4d_c00342{bottom:649.866667pt;}
.y1b_c00342{bottom:657.600000pt;}
.y4c_c00342{bottom:669.066667pt;}
.y1a_c00342{bottom:673.600000pt;}
.y4b_c00342{bottom:685.066667pt;}
.y19_c00342{bottom:689.333333pt;}
.y4a_c00342{bottom:701.066667pt;}
.y18_c00342{bottom:705.066667pt;}
.y49_c00342{bottom:716.800000pt;}
.y17_c00342{bottom:720.800000pt;}
.y48_c00342{bottom:732.800000pt;}
.y16_c00342{bottom:736.533333pt;}
.y47_c00342{bottom:751.600000pt;}
.y15_c00342{bottom:752.266667pt;}
.y46_c00342{bottom:767.333333pt;}
.y14_c00342{bottom:768.266667pt;}
.y13_c00342{bottom:784.000000pt;}
.y45_c00342{bottom:786.933333pt;}
.y12_c00342{bottom:801.866667pt;}
.y44_c00342{bottom:806.000000pt;}
.y11_c00342{bottom:814.933333pt;}
.y43_c00342{bottom:822.666667pt;}
.y10_c00342{bottom:827.733333pt;}
.y42_c00342{bottom:838.000000pt;}
.yf_c00342{bottom:840.533333pt;}
.ye_c00342{bottom:853.066667pt;}
.y41_c00342{bottom:854.000000pt;}
.y40_c00342{bottom:869.733333pt;}
.yd_c00342{bottom:870.533333pt;}
.yc_c00342{bottom:883.333333pt;}
.y3f_c00342{bottom:885.466667pt;}
.yb_c00342{bottom:895.866667pt;}
.ya_c00342{bottom:908.666667pt;}
.y3e_c00342{bottom:909.066667pt;}
.y3d_c00342{bottom:915.866667pt;}
.y9_c00342{bottom:921.466667pt;}
.y3c_c00342{bottom:925.466667pt;}
.y3b_c00342{bottom:933.733333pt;}
.y8_c00342{bottom:934.000000pt;}
.y7_c00342{bottom:946.533333pt;}
.y3a_c00342{bottom:957.066667pt;}
.y6_c00342{bottom:958.800000pt;}
.y5_c00342{bottom:971.866667pt;}
.y39_c00342{bottom:976.666667pt;}
.y4_c00342{bottom:984.000000pt;}
.y38_c00342{bottom:995.866667pt;}
.y3_c00342{bottom:998.666667pt;}
.y2_c00342{bottom:1015.333333pt;}
.y1_c00342{bottom:1019.466667pt;}
.h7_c00342{height:26.666667pt;}
.h4_c00342{height:48.000000pt;}
.h3_c00342{height:53.333333pt;}
.h5_c00342{height:58.666667pt;}
.h6_c00342{height:64.000000pt;}
.h2_c00342{height:74.666667pt;}
.h1_c00342{height:1126.000000pt;}
.h0_c00342{height:1126.079916pt;}
.w0_c00342{width:853.760009pt;}
.w1_c00342{width:854.000000pt;}
.x0_c00342{left:0.000000pt;}
.x91_c00342{left:74.933333pt;}
.x3_c00342{left:75.866667pt;}
.x5c_c00342{left:76.800000pt;}
.x27_c00342{left:87.333333pt;}
.x13_c00342{left:88.266667pt;}
.xd_c00342{left:89.733333pt;}
.x6e_c00342{left:91.066667pt;}
.x60_c00342{left:92.533333pt;}
.x21_c00342{left:100.933333pt;}
.x9b_c00342{left:102.800000pt;}
.xa0_c00342{left:104.000000pt;}
.x85_c00342{left:108.800000pt;}
.x68_c00342{left:110.666667pt;}
.x4f_c00342{left:112.133333pt;}
.x76_c00342{left:113.333333pt;}
.xe_c00342{left:116.666667pt;}
.x98_c00342{left:117.733333pt;}
.x28_c00342{left:118.666667pt;}
.x22_c00342{left:120.400000pt;}
.x46_c00342{left:121.333333pt;}
.x82_c00342{left:123.200000pt;}
.x7d_c00342{left:124.266667pt;}
.x87_c00342{left:126.933333pt;}
.x4_c00342{left:128.000000pt;}
.x7a_c00342{left:130.666667pt;}
.x29_c00342{left:132.000000pt;}
.x6f_c00342{left:133.333333pt;}
.x4a_c00342{left:135.333333pt;}
.x14_c00342{left:136.266667pt;}
.x2a_c00342{left:138.133333pt;}
.x23_c00342{left:140.266667pt;}
.x90_c00342{left:141.733333pt;}
.x57_c00342{left:143.200000pt;}
.x2b_c00342{left:144.800000pt;}
.x7f_c00342{left:148.000000pt;}
.x39_c00342{left:149.200000pt;}
.x2c_c00342{left:151.200000pt;}
.x15_c00342{left:152.933333pt;}
.x5d_c00342{left:154.933333pt;}
.xf_c00342{left:156.666667pt;}
.x77_c00342{left:157.866667pt;}
.x66_c00342{left:159.600000pt;}
.x5a_c00342{left:161.466667pt;}
.x94_c00342{left:162.800000pt;}
.x2d_c00342{left:164.666667pt;}
.x16_c00342{left:167.333333pt;}
.x92_c00342{left:168.266667pt;}
.x47_c00342{left:169.600000pt;}
.x10_c00342{left:170.800000pt;}
.x35_c00342{left:172.400000pt;}
.x88_c00342{left:174.933333pt;}
.x8a_c00342{left:175.866667pt;}
.x5b_c00342{left:179.733333pt;}
.x72_c00342{left:181.200000pt;}
.x97_c00342{left:182.133333pt;}
.x5_c00342{left:183.733333pt;}
.x3a_c00342{left:184.666667pt;}
.x48_c00342{left:185.866667pt;}
.x95_c00342{left:189.200000pt;}
.x2e_c00342{left:190.533333pt;}
.x24_c00342{left:191.733333pt;}
.x3d_c00342{left:192.666667pt;}
.x3b_c00342{left:194.533333pt;}
.x8b_c00342{left:196.000000pt;}
.x2f_c00342{left:196.933333pt;}
.x3e_c00342{left:198.133333pt;}
.x11_c00342{left:200.533333pt;}
.x25_c00342{left:202.933333pt;}
.x17_c00342{left:204.400000pt;}
.x83_c00342{left:205.733333pt;}
.x99_c00342{left:209.066667pt;}
.x3c_c00342{left:210.400000pt;}
.x61_c00342{left:211.866667pt;}
.x54_c00342{left:213.333333pt;}
.x8c_c00342{left:215.866667pt;}
.x36_c00342{left:217.466667pt;}
.x6_c00342{left:218.666667pt;}
.x9a_c00342{left:220.533333pt;}
.x18_c00342{left:223.600000pt;}
.x62_c00342{left:226.000000pt;}
.x5e_c00342{left:226.933333pt;}
.x73_c00342{left:228.266667pt;}
.x19_c00342{left:230.000000pt;}
.x8d_c00342{left:232.133333pt;}
.x69_c00342{left:233.600000pt;}
.x38_c00342{left:234.800000pt;}
.x7_c00342{left:236.266667pt;}
.x8f_c00342{left:237.600000pt;}
.x64_c00342{left:240.933333pt;}
.x30_c00342{left:242.266667pt;}
.x50_c00342{left:245.200000pt;}
.x4b_c00342{left:246.400000pt;}
.x6c_c00342{left:248.533333pt;}
.x3f_c00342{left:250.133333pt;}
.x84_c00342{left:251.200000pt;}
.x86_c00342{left:252.533333pt;}
.x31_c00342{left:254.666667pt;}
.x1a_c00342{left:255.600000pt;}
.x40_c00342{left:256.533333pt;}
.x7e_c00342{left:259.333333pt;}
.x12_c00342{left:261.066667pt;}
.x32_c00342{left:262.000000pt;}
.x41_c00342{left:262.933333pt;}
.x7b_c00342{left:264.800000pt;}
.x93_c00342{left:267.466667pt;}
.x1b_c00342{left:268.400000pt;}
.x8_c00342{left:269.600000pt;}
.x55_c00342{left:272.800000pt;}
.x1c_c00342{left:274.800000pt;}
.x42_c00342{left:276.133333pt;}
.x9_c00342{left:277.866667pt;}
.x33_c00342{left:280.666667pt;}
.x43_c00342{left:282.266667pt;}
.x26_c00342{left:283.600000pt;}
.x9c_c00342{left:284.533333pt;}
.x6a_c00342{left:285.466667pt;}
.x34_c00342{left:287.333333pt;}
.x44_c00342{left:288.933333pt;}
.x51_c00342{left:290.666667pt;}
.x96_c00342{left:292.133333pt;}
.x1d_c00342{left:294.000000pt;}
.x78_c00342{left:295.066667pt;}
.x1_c00342{left:297.866667pt;}
.x58_c00342{left:299.466667pt;}
.x52_c00342{left:300.933333pt;}
.xa_c00342{left:304.133333pt;}
.x80_c00342{left:305.600000pt;}
.x74_c00342{left:306.666667pt;}
.x4c_c00342{left:307.600000pt;}
.x1e_c00342{left:310.933333pt;}
.x45_c00342{left:312.266667pt;}
.x5f_c00342{left:314.000000pt;}
.x9d_c00342{left:314.933333pt;}
.x53_c00342{left:316.000000pt;}
.x89_c00342{left:318.933333pt;}
.x7c_c00342{left:320.800000pt;}
.x81_c00342{left:321.866667pt;}
.x65_c00342{left:323.066667pt;}
.x71_c00342{left:325.466667pt;}
.x9e_c00342{left:327.733333pt;}
.xb_c00342{left:331.600000pt;}
.x4d_c00342{left:333.866667pt;}
.x6b_c00342{left:334.800000pt;}
.x1f_c00342{left:336.800000pt;}
.x37_c00342{left:338.000000pt;}
.x67_c00342{left:339.466667pt;}
.x79_c00342{left:342.800000pt;}
.x59_c00342{left:344.533333pt;}
.x70_c00342{left:348.800000pt;}
.x6d_c00342{left:350.533333pt;}
.x63_c00342{left:352.933333pt;}
.x75_c00342{left:354.933333pt;}
.x9f_c00342{left:356.800000pt;}
.x8e_c00342{left:358.266667pt;}
.x4e_c00342{left:359.200000pt;}
.x56_c00342{left:360.400000pt;}
.xc_c00342{left:361.733333pt;}
.x20_c00342{left:363.333333pt;}
.x49_c00342{left:364.800000pt;}
.x12c_c00342{left:391.733333pt;}
.xac_c00342{left:393.333333pt;}
.x10b_c00342{left:395.466667pt;}
.x128_c00342{left:404.133333pt;}
.x12e_c00342{left:405.066667pt;}
.xbf_c00342{left:408.000000pt;}
.xb7_c00342{left:409.600000pt;}
.x11d_c00342{left:411.333333pt;}
.x12d_c00342{left:415.466667pt;}
.xd6_c00342{left:423.200000pt;}
.xa9_c00342{left:424.266667pt;}
.xa1_c00342{left:425.333333pt;}
.xf1_c00342{left:426.533333pt;}
.x119_c00342{left:428.533333pt;}
.x129_c00342{left:429.466667pt;}
.x121_c00342{left:432.133333pt;}
.x10c_c00342{left:433.866667pt;}
.xd7_c00342{left:437.600000pt;}
.xc8_c00342{left:439.333333pt;}
.x106_c00342{left:441.866667pt;}
.x124_c00342{left:442.800000pt;}
.xe5_c00342{left:444.800000pt;}
.xea_c00342{left:446.400000pt;}
.xf5_c00342{left:448.666667pt;}
.x12a_c00342{left:450.000000pt;}
.xfd_c00342{left:453.466667pt;}
.xdc_c00342{left:454.400000pt;}
.x102_c00342{left:457.200000pt;}
.xad_c00342{left:459.866667pt;}
.xe2_c00342{left:461.466667pt;}
.xc9_c00342{left:462.666667pt;}
.xb5_c00342{left:463.866667pt;}
.xa2_c00342{left:465.600000pt;}
.xc0_c00342{left:466.533333pt;}
.xaa_c00342{left:468.800000pt;}
.x107_c00342{left:470.666667pt;}
.xa4_c00342{left:472.933333pt;}
.xe6_c00342{left:474.266667pt;}
.x11e_c00342{left:475.333333pt;}
.xca_c00342{left:476.800000pt;}
.xab_c00342{left:479.333333pt;}
.xb9_c00342{left:480.266667pt;}
.xfe_c00342{left:482.000000pt;}
.xee_c00342{left:484.533333pt;}
.xfb_c00342{left:485.600000pt;}
.xf6_c00342{left:487.066667pt;}
.x11b_c00342{left:488.666667pt;}
.xd0_c00342{left:490.533333pt;}
.xe7_c00342{left:492.800000pt;}
.xd8_c00342{left:494.533333pt;}
.xb8_c00342{left:495.600000pt;}
.x112_c00342{left:496.800000pt;}
.x110_c00342{left:498.266667pt;}
.x103_c00342{left:500.000000pt;}
.xc1_c00342{left:502.400000pt;}
.xd1_c00342{left:505.200000pt;}
.xf2_c00342{left:509.466667pt;}
.x108_c00342{left:510.533333pt;}
.x115_c00342{left:512.400000pt;}
.xa3_c00342{left:513.333333pt;}
.x125_c00342{left:514.800000pt;}
.xa5_c00342{left:516.800000pt;}
.xc2_c00342{left:519.066667pt;}
.xae_c00342{left:520.000000pt;}
.xb6_c00342{left:522.133333pt;}
.xef_c00342{left:525.200000pt;}
.xd9_c00342{left:526.133333pt;}
.x12b_c00342{left:528.666667pt;}
.x122_c00342{left:530.533333pt;}
.xf7_c00342{left:531.866667pt;}
.x12f_c00342{left:532.800000pt;}
.xf8_c00342{left:533.733333pt;}
.xcb_c00342{left:535.733333pt;}
.xeb_c00342{left:538.933333pt;}
.x10d_c00342{left:542.133333pt;}
.x11a_c00342{left:543.200000pt;}
.x109_c00342{left:544.800000pt;}
.xcc_c00342{left:546.266667pt;}
.x104_c00342{left:547.333333pt;}
.xc3_c00342{left:548.533333pt;}
.xba_c00342{left:549.733333pt;}
.x126_c00342{left:550.933333pt;}
.x113_c00342{left:553.466667pt;}
.x116_c00342{left:556.266667pt;}
.xa6_c00342{left:557.733333pt;}
.xd2_c00342{left:558.933333pt;}
.xfc_c00342{left:560.800000pt;}
.x127_c00342{left:561.866667pt;}
.xe3_c00342{left:564.800000pt;}
.x10e_c00342{left:565.866667pt;}
.xdf_c00342{left:567.466667pt;}
.xcd_c00342{left:570.533333pt;}
.xf3_c00342{left:571.866667pt;}
.xaf_c00342{left:573.466667pt;}
.xbb_c00342{left:574.400000pt;}
.x131_c00342{left:575.600000pt;}
.xdd_c00342{left:578.266667pt;}
.x10a_c00342{left:579.333333pt;}
.x111_c00342{left:580.400000pt;}
.xf9_c00342{left:582.000000pt;}
.xb0_c00342{left:583.733333pt;}
.xda_c00342{left:586.266667pt;}
.x11f_c00342{left:588.000000pt;}
.xf4_c00342{left:590.133333pt;}
.xd3_c00342{left:591.200000pt;}
.xc4_c00342{left:594.266667pt;}
.x130_c00342{left:596.800000pt;}
.xec_c00342{left:598.133333pt;}
.xce_c00342{left:599.066667pt;}
.xde_c00342{left:602.933333pt;}
.xff_c00342{left:605.466667pt;}
.xa7_c00342{left:607.333333pt;}
.xbc_c00342{left:608.266667pt;}
.xc5_c00342{left:611.200000pt;}
.xe8_c00342{left:613.733333pt;}
.xe4_c00342{left:615.733333pt;}
.xb1_c00342{left:619.200000pt;}
.xc6_c00342{left:622.666667pt;}
.xed_c00342{left:623.733333pt;}
.xf0_c00342{left:624.933333pt;}
.xe0_c00342{left:626.400000pt;}
.xd4_c00342{left:630.533333pt;}
.xe9_c00342{left:632.000000pt;}
.xb2_c00342{left:632.933333pt;}
.x123_c00342{left:634.133333pt;}
.x120_c00342{left:640.800000pt;}
.x105_c00342{left:642.666667pt;}
.xa8_c00342{left:644.133333pt;}
.x10f_c00342{left:645.866667pt;}
.xfa_c00342{left:648.800000pt;}
.x117_c00342{left:651.200000pt;}
.x132_c00342{left:653.600000pt;}
.xc7_c00342{left:655.333333pt;}
.xd5_c00342{left:657.733333pt;}
.xdb_c00342{left:659.466667pt;}
.xb3_c00342{left:662.000000pt;}
.xcf_c00342{left:665.600000pt;}
.x114_c00342{left:667.066667pt;}
.x2_c00342{left:668.400000pt;}
.x11c_c00342{left:669.600000pt;}
.xbd_c00342{left:671.333333pt;}
.x133_c00342{left:673.066667pt;}
.x118_c00342{left:674.933333pt;}
.x100_c00342{left:678.400000pt;}
.xbe_c00342{left:681.866667pt;}
.x101_c00342{left:682.800000pt;}
.xe1_c00342{left:686.266667pt;}
.xb4_c00342{left:688.266667pt;}
}





/* 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_c00343 {
    display:none;
  }
  .loading-indicator_c00343.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00343 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_c00343 { 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_c00343" -> "#page-container .classname_c00343")
 */
.pf_c00343 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00343 { /* 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_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00343 { /* 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_c00343 { /* 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_c00343 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00343 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00343 {overflow:visible;}
  }
}
.c_c00343 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00343 { /* 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_c00343:after { /* webkit #35443 */
  content: '';
}
.t_c00343:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00343 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 */
}
.__c00343 { /* 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_c00343 { /* info for Javascript */
  display:none;
}
.l_c00343 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00343 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00343 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00343: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_c00343 {
    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_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00343.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_c00343 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00343;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.000000;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;}
.mad_c00343{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m41_c00343{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00343{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m83_c00343{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m16_c00343{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00343{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m19_c00343{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m109_c00343{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00343{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m37_c00343{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m127_c00343{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m14_c00343{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00343{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m78_c00343{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m15_c00343{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m38_c00343{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00343{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m71_c00343{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00343{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m30_c00343{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m117_c00343{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m31_c00343{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00343{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00343{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m22_c00343{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m128_c00343{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00343{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00343{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m45_c00343{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m121_c00343{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m12_c00343{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.me4_c00343{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m48_c00343{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m34_c00343{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m135_c00343{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m113_c00343{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00343{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00343{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m120_c00343{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.me0_c00343{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00343{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00343{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00343{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00343{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00343{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m58_c00343{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m72_c00343{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00343{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10_c00343{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00343{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m46_c00343{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me5_c00343{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.me_c00343{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00343{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m77_c00343{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00343{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00343{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m89_c00343{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.med_c00343{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m98_c00343{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00343{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8_c00343{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m87_c00343{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00343{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md8_c00343{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00343{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mde_c00343{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m110_c00343{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m54_c00343{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00343{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m26_c00343{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00343{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00343{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m51_c00343{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00343{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00343{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00343{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m69_c00343{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.me8_c00343{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00343{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.me9_c00343{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m61_c00343{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11_c00343{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md9_c00343{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00343{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00343{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m95_c00343{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m73_c00343{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00343{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m40_c00343{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.md4_c00343{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00343{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00343{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00343{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00343{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc_c00343{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m21_c00343{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00343{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m80_c00343{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00343{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00343{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00343{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m97_c00343{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m86_c00343{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m133_c00343{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m94_c00343{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mff_c00343{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mae_c00343{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me7_c00343{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me1_c00343{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m90_c00343{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf_c00343{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m70_c00343{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m74_c00343{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m96_c00343{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m104_c00343{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00343{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00343{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00343{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00343{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m108_c00343{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m81_c00343{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00343{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m59_c00343{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00343{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00343{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00343{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7_c00343{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me6_c00343{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00343{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00343{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m99_c00343{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00343{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00343{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00343{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00343{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00343{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00343{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00343{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00343{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m132_c00343{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.maa_c00343{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00343{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m64_c00343{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m18_c00343{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m131_c00343{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00343{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m75_c00343{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m50_c00343{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mac_c00343{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m92_c00343{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m42_c00343{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m62_c00343{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00343{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00343{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00343{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00343{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00343{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00343{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9_c00343{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m57_c00343{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00343{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.meb_c00343{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m123_c00343{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00343{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m43_c00343{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m76_c00343{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md3_c00343{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00343{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6_c00343{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md7_c00343{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m106_c00343{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00343{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m44_c00343{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00343{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.maf_c00343{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00343{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m66_c00343{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m103_c00343{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md6_c00343{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m68_c00343{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00343{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m88_c00343{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00343{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md2_c00343{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00343{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00343{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m84_c00343{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m126_c00343{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00343{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m85_c00343{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m27_c00343{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00343{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00343{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00343{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00343{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mab_c00343{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.md1_c00343{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md0_c00343{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m53_c00343{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00343{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m63_c00343{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m100_c00343{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00343{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00343{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md5_c00343{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m20_c00343{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00343{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m52_c00343{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00343{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m79_c00343{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00343{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00343{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00343{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m136_c00343{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00343{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mec_c00343{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m29_c00343{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00343{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.md_c00343{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m56_c00343{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m82_c00343{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m130_c00343{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m105_c00343{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00343{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00343{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb_c00343{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5_c00343{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mba_c00343{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00343{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mce_c00343{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00343{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00343{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00343{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m23_c00343{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00343{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00343{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00343{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m49_c00343{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00343{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mca_c00343{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2_c00343{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m25_c00343{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00343{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m107_c00343{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me2_c00343{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00343{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);}
.m4_c00343{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00343{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m47_c00343{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m65_c00343{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m102_c00343{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m39_c00343{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m17_c00343{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m124_c00343{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00343{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.ma_c00343{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m93_c00343{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mee_c00343{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00343{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m60_c00343{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00343{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mef_c00343{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m28_c00343{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m13_c00343{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00343{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m67_c00343{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00343{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00343{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m36_c00343{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00343{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00343{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00343{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00343{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.me3_c00343{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m101_c00343{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m134_c00343{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m32_c00343{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m0_c00343{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00343{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m55_c00343{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m91_c00343{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00343{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00343{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00343{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m33_c00343{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00343{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00343{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00343{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mea_c00343{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m129_c00343{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m35_c00343{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mda_c00343{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m112_c00343{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00343{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m118_c00343{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00343{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m119_c00343{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m116_c00343{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00343{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00343{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m115_c00343{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m114_c00343{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m122_c00343{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m125_c00343{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m1_c00343{transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00343{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00343{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m111_c00343{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m24_c00343{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls3_c00343{letter-spacing:0.000000px;}
.ls2_c00343{letter-spacing:33.428571px;}
.ls0_c00343{letter-spacing:63.000000px;}
.ls1_c00343{letter-spacing:87.906219px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{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__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00343{word-spacing:-114.906219px;}
.ws5_c00343{word-spacing:-90.000000px;}
.ws17_c00343{word-spacing:-51.428571px;}
.ws10_c00343{word-spacing:-4.505976px;}
.ws14_c00343{word-spacing:-1.315789px;}
.ws1e_c00343{word-spacing:0.000000px;}
.ws7_c00343{word-spacing:4.736842px;}
.wsf_c00343{word-spacing:6.395415px;}
.ws0_c00343{word-spacing:7.812500px;}
.ws12_c00343{word-spacing:10.500000px;}
.ws18_c00343{word-spacing:13.285714px;}
.ws13_c00343{word-spacing:13.769602px;}
.wsc_c00343{word-spacing:15.000000px;}
.ws1c_c00343{word-spacing:15.168901px;}
.ws11_c00343{word-spacing:16.186246px;}
.ws1d_c00343{word-spacing:16.521490px;}
.wsd_c00343{word-spacing:16.785714px;}
.ws4_c00343{word-spacing:19.994638px;}
.ws8_c00343{word-spacing:22.142857px;}
.ws9_c00343{word-spacing:23.211796px;}
.ws19_c00343{word-spacing:24.000000px;}
.wse_c00343{word-spacing:24.332931px;}
.wsa_c00343{word-spacing:25.714286px;}
.ws3_c00343{word-spacing:26.428954px;}
.ws1a_c00343{word-spacing:26.625000px;}
.ws15_c00343{word-spacing:29.285714px;}
.ws2_c00343{word-spacing:32.250000px;}
.wsb_c00343{word-spacing:33.722587px;}
.ws1_c00343{word-spacing:36.000000px;}
.ws1b_c00343{word-spacing:45.375000px;}
.ws16_c00343{word-spacing:131.346154px;}
._2_c00343{margin-left:-87.906219px;}
._0_c00343{margin-left:-63.000000px;}
._8_c00343{margin-left:-33.428571px;}
._7_c00343{margin-left:-2.142857px;}
._a_c00343{width:50.211796px;}
._5_c00343{width:52.142857px;}
._1_c00343{width:53.428954px;}
._3_c00343{width:55.714286px;}
._6_c00343{width:59.285714px;}
._4_c00343{width:64.642857px;}
._9_c00343{width:66.750000px;}
.fc0_c00343{color:transparent;}
.fs6_c00343{font-size:24.000000px;}
.fs5_c00343{font-size:36.000000px;}
.fs3_c00343{font-size:54.000000px;}
.fs2_c00343{font-size:60.000000px;}
.fs4_c00343{font-size:66.000000px;}
.fs0_c00343{font-size:72.000000px;}
.fs1_c00343{font-size:84.000000px;}
.y0_c00343{bottom:0.000000px;}
.y6e_c00343{bottom:196.950000px;}
.y39_c00343{bottom:202.800000px;}
.y6d_c00343{bottom:205.050000px;}
.y6c_c00343{bottom:214.800000px;}
.y38_c00343{bottom:220.500000px;}
.y6b_c00343{bottom:232.500000px;}
.y37_c00343{bottom:237.450000px;}
.y6a_c00343{bottom:250.500000px;}
.y36_c00343{bottom:255.150000px;}
.y69_c00343{bottom:268.500000px;}
.y35_c00343{bottom:273.150000px;}
.y68_c00343{bottom:286.500000px;}
.y34_c00343{bottom:291.150000px;}
.y67_c00343{bottom:304.500000px;}
.y33_c00343{bottom:308.850000px;}
.y66_c00343{bottom:322.500000px;}
.y32_c00343{bottom:326.550000px;}
.y65_c00343{bottom:340.500000px;}
.y31_c00343{bottom:343.500000px;}
.y64_c00343{bottom:358.200000px;}
.y30_c00343{bottom:370.350000px;}
.y63_c00343{bottom:383.400000px;}
.y2f_c00343{bottom:388.050000px;}
.y62_c00343{bottom:398.100000px;}
.y2e_c00343{bottom:405.600000px;}
.y61_c00343{bottom:412.500000px;}
.y2d_c00343{bottom:423.600000px;}
.y60_c00343{bottom:426.900000px;}
.y5f_c00343{bottom:441.000000px;}
.y2c_c00343{bottom:441.600000px;}
.y5e_c00343{bottom:455.850000px;}
.y2b_c00343{bottom:459.300000px;}
.y5d_c00343{bottom:470.250000px;}
.y2a_c00343{bottom:477.300000px;}
.y5c_c00343{bottom:484.950000px;}
.y29_c00343{bottom:494.250000px;}
.y5b_c00343{bottom:499.050000px;}
.y5a_c00343{bottom:512.700000px;}
.y28_c00343{bottom:516.900000px;}
.y59_c00343{bottom:527.850000px;}
.y27_c00343{bottom:534.600000px;}
.y58_c00343{bottom:542.250000px;}
.y26_c00343{bottom:552.600000px;}
.y57_c00343{bottom:555.900000px;}
.y25_c00343{bottom:569.850000px;}
.y56_c00343{bottom:570.900000px;}
.y55_c00343{bottom:586.800000px;}
.y24_c00343{bottom:587.550000px;}
.y23_c00343{bottom:604.800000px;}
.y54_c00343{bottom:623.100000px;}
.y22_c00343{bottom:624.900000px;}
.y21_c00343{bottom:640.050000px;}
.y53_c00343{bottom:641.550000px;}
.y20_c00343{bottom:657.750000px;}
.y52_c00343{bottom:659.550000px;}
.y1f_c00343{bottom:675.150000px;}
.y51_c00343{bottom:676.800000px;}
.y1e_c00343{bottom:693.150000px;}
.y50_c00343{bottom:698.550000px;}
.y1d_c00343{bottom:711.150000px;}
.y4f_c00343{bottom:716.250000px;}
.y1c_c00343{bottom:728.850000px;}
.y4e_c00343{bottom:734.250000px;}
.y1b_c00343{bottom:746.550000px;}
.y4d_c00343{bottom:751.950000px;}
.y1a_c00343{bottom:764.550000px;}
.y4c_c00343{bottom:769.950000px;}
.y19_c00343{bottom:782.550000px;}
.y4b_c00343{bottom:787.650000px;}
.y18_c00343{bottom:800.250000px;}
.y4a_c00343{bottom:809.250000px;}
.y17_c00343{bottom:817.950000px;}
.y49_c00343{bottom:827.700000px;}
.y16_c00343{bottom:836.700000px;}
.y15_c00343{bottom:853.950000px;}
.y48_c00343{bottom:854.250000px;}
.y14_c00343{bottom:871.950000px;}
.y47_c00343{bottom:890.250000px;}
.y13_c00343{bottom:899.700000px;}
.y46_c00343{bottom:911.400000px;}
.y12_c00343{bottom:915.150000px;}
.y11_c00343{bottom:929.550000px;}
.y45_c00343{bottom:930.150000px;}
.y10_c00343{bottom:943.950000px;}
.y44_c00343{bottom:948.150000px;}
.yf_c00343{bottom:956.850000px;}
.y43_c00343{bottom:966.150000px;}
.ye_c00343{bottom:972.300000px;}
.y42_c00343{bottom:983.850000px;}
.yd_c00343{bottom:986.400000px;}
.yc_c00343{bottom:1001.100000px;}
.y41_c00343{bottom:1001.850000px;}
.yb_c00343{bottom:1015.200000px;}
.y40_c00343{bottom:1019.850000px;}
.ya_c00343{bottom:1028.550000px;}
.y3f_c00343{bottom:1040.700000px;}
.y9_c00343{bottom:1043.700000px;}
.y7_c00343{bottom:1055.100000px;}
.y8_c00343{bottom:1058.100000px;}
.y3e_c00343{bottom:1060.200000px;}
.y6_c00343{bottom:1072.050000px;}
.y3d_c00343{bottom:1077.900000px;}
.y5_c00343{bottom:1088.250000px;}
.y3c_c00343{bottom:1095.450000px;}
.y4_c00343{bottom:1108.800000px;}
.y3b_c00343{bottom:1113.150000px;}
.y3_c00343{bottom:1128.900000px;}
.y3a_c00343{bottom:1133.700000px;}
.y1_c00343{bottom:1153.050000px;}
.y2_c00343{bottom:1155.900000px;}
.h8_c00343{height:24.000000px;}
.h7_c00343{height:36.000000px;}
.h5_c00343{height:54.000000px;}
.h4_c00343{height:60.000000px;}
.h6_c00343{height:66.000000px;}
.h2_c00343{height:72.000000px;}
.h3_c00343{height:84.000000px;}
.h1_c00343{height:1269.750000px;}
.h0_c00343{height:1270.080048px;}
.w0_c00343{width:960.480010px;}
.w1_c00343{width:960.750000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:172.500000px;}
.xb_c00343{left:174.300000px;}
.x46_c00343{left:176.100000px;}
.x21_c00343{left:180.750000px;}
.x42_c00343{left:188.700000px;}
.x3_c00343{left:190.050000px;}
.x9_c00343{left:191.100000px;}
.x4b_c00343{left:193.050000px;}
.x50_c00343{left:194.400000px;}
.x64_c00343{left:195.600000px;}
.x6e_c00343{left:196.650000px;}
.x83_c00343{left:197.850000px;}
.x8b_c00343{left:199.050000px;}
.x9e_c00343{left:200.400000px;}
.xa5_c00343{left:201.450000px;}
.x1f_c00343{left:202.650000px;}
.xa_c00343{left:207.600000px;}
.x7b_c00343{left:208.800000px;}
.x4_c00343{left:212.400000px;}
.x84_c00343{left:215.700000px;}
.x59_c00343{left:217.350000px;}
.x8c_c00343{left:219.150000px;}
.x31_c00343{left:222.450000px;}
.x2b_c00343{left:225.600000px;}
.x5c_c00343{left:227.250000px;}
.x88_c00343{left:229.500000px;}
.x9f_c00343{left:230.700000px;}
.x20_c00343{left:232.200000px;}
.x51_c00343{left:235.050000px;}
.xa8_c00343{left:236.400000px;}
.x69_c00343{left:237.600000px;}
.x79_c00343{left:238.650000px;}
.xc_c00343{left:239.850000px;}
.x32_c00343{left:241.200000px;}
.x22_c00343{left:243.450000px;}
.x97_c00343{left:245.100000px;}
.x2c_c00343{left:247.950000px;}
.x9b_c00343{left:252.600000px;}
.x55_c00343{left:255.600000px;}
.x5_c00343{left:257.400000px;}
.x14_c00343{left:259.650000px;}
.x47_c00343{left:260.700000px;}
.x7c_c00343{left:262.500000px;}
.x65_c00343{left:263.700000px;}
.x2d_c00343{left:267.450000px;}
.x72_c00343{left:269.400000px;}
.x5f_c00343{left:272.700000px;}
.x15_c00343{left:274.050000px;}
.x6f_c00343{left:275.250000px;}
.x98_c00343{left:277.200000px;}
.x56_c00343{left:278.700000px;}
.xa3_c00343{left:280.200000px;}
.x16_c00343{left:281.550000px;}
.x43_c00343{left:282.600000px;}
.x90_c00343{left:283.650000px;}
.x94_c00343{left:284.700000px;}
.xab_c00343{left:286.800000px;}
.x73_c00343{left:288.450000px;}
.x33_c00343{left:289.800000px;}
.x3e_c00343{left:291.150000px;}
.x99_c00343{left:293.400000px;}
.x80_c00343{left:294.600000px;}
.x17_c00343{left:296.400000px;}
.x23_c00343{left:299.250000px;}
.x48_c00343{left:300.600000px;}
.x18_c00343{left:303.300000px;}
.xd_c00343{left:304.650000px;}
.xa9_c00343{left:307.350000px;}
.x2e_c00343{left:308.550000px;}
.x19_c00343{left:309.750000px;}
.x8d_c00343{left:311.400000px;}
.x52_c00343{left:313.950000px;}
.x6_c00343{left:315.300000px;}
.x6a_c00343{left:316.800000px;}
.x3c_c00343{left:318.150000px;}
.x87_c00343{left:319.950000px;}
.x91_c00343{left:321.150000px;}
.x4c_c00343{left:322.800000px;}
.x1a_c00343{left:324.450000px;}
.xa0_c00343{left:326.100000px;}
.xa4_c00343{left:328.500000px;}
.x5d_c00343{left:330.600000px;}
.x1b_c00343{left:331.650000px;}
.x60_c00343{left:334.650000px;}
.x34_c00343{left:336.300000px;}
.x24_c00343{left:337.800000px;}
.x3d_c00343{left:339.450000px;}
.xe_c00343{left:342.750000px;}
.x70_c00343{left:345.000000px;}
.x1c_c00343{left:346.050000px;}
.x66_c00343{left:348.000000px;}
.x74_c00343{left:349.950000px;}
.x35_c00343{left:351.000000px;}
.x3f_c00343{left:353.100000px;}
.x71_c00343{left:354.750000px;}
.x25_c00343{left:357.300000px;}
.x81_c00343{left:359.850000px;}
.x38_c00343{left:361.650000px;}
.xf_c00343{left:362.850000px;}
.x2f_c00343{left:366.150000px;}
.x1d_c00343{left:367.650000px;}
.x39_c00343{left:368.850000px;}
.x95_c00343{left:370.050000px;}
.x5a_c00343{left:372.300000px;}
.x67_c00343{left:373.950000px;}
.x3a_c00343{left:376.050000px;}
.x49_c00343{left:377.250000px;}
.x6d_c00343{left:379.050000px;}
.x10_c00343{left:380.550000px;}
.x92_c00343{left:381.600000px;}
.x28_c00343{left:383.700000px;}
.x7_c00343{left:384.750000px;}
.x82_c00343{left:386.550000px;}
.x3b_c00343{left:390.750000px;}
.x4d_c00343{left:391.950000px;}
.x89_c00343{left:393.300000px;}
.x61_c00343{left:394.650000px;}
.x4a_c00343{left:396.000000px;}
.x36_c00343{left:397.500000px;}
.x40_c00343{left:402.750000px;}
.x53_c00343{left:403.950000px;}
.xa2_c00343{left:406.200000px;}
.x57_c00343{left:407.250000px;}
.x75_c00343{left:410.100000px;}
.x44_c00343{left:411.150000px;}
.x30_c00343{left:412.650000px;}
.x9c_c00343{left:413.850000px;}
.x4e_c00343{left:415.050000px;}
.xac_c00343{left:416.100000px;}
.x2_c00343{left:418.050000px;}
.x85_c00343{left:419.400000px;}
.x6b_c00343{left:420.450000px;}
.x8e_c00343{left:421.950000px;}
.x7d_c00343{left:423.750000px;}
.xa6_c00343{left:425.400000px;}
.x11_c00343{left:428.550000px;}
.x5b_c00343{left:431.400000px;}
.x1e_c00343{left:437.100000px;}
.x37_c00343{left:438.300000px;}
.x62_c00343{left:443.250000px;}
.x54_c00343{left:445.050000px;}
.x5e_c00343{left:446.850000px;}
.x9a_c00343{left:448.500000px;}
.x4f_c00343{left:450.300000px;}
.x68_c00343{left:453.150000px;}
.xaa_c00343{left:455.250000px;}
.x8a_c00343{left:456.750000px;}
.x12_c00343{left:459.150000px;}
.x77_c00343{left:461.850000px;}
.x76_c00343{left:464.400000px;}
.x29_c00343{left:466.800000px;}
.x26_c00343{left:467.850000px;}
.x45_c00343{left:469.500000px;}
.x58_c00343{left:472.650000px;}
.x7a_c00343{left:474.150000px;}
.x41_c00343{left:477.300000px;}
.xa7_c00343{left:479.100000px;}
.x63_c00343{left:480.300000px;}
.xa1_c00343{left:482.250000px;}
.x6c_c00343{left:483.450000px;}
.x8_c00343{left:484.800000px;}
.x96_c00343{left:487.650000px;}
.x86_c00343{left:489.600000px;}
.x7e_c00343{left:491.400000px;}
.x13_c00343{left:493.350000px;}
.x2a_c00343{left:495.600000px;}
.x27_c00343{left:497.400000px;}
.x78_c00343{left:498.600000px;}
.x93_c00343{left:499.950000px;}
.x7f_c00343{left:503.250000px;}
.x9d_c00343{left:505.350000px;}
.x8f_c00343{left:509.400000px;}
.x127_c00343{left:525.600000px;}
.xd4_c00343{left:530.250000px;}
.xf8_c00343{left:531.300000px;}
.x106_c00343{left:533.850000px;}
.x147_c00343{left:536.700000px;}
.xad_c00343{left:546.150000px;}
.xb8_c00343{left:547.200000px;}
.xdb_c00343{left:548.700000px;}
.xf5_c00343{left:549.900000px;}
.x124_c00343{left:551.550000px;}
.x130_c00343{left:553.650000px;}
.x149_c00343{left:554.700000px;}
.xd3_c00343{left:556.800000px;}
.x10a_c00343{left:558.300000px;}
.x151_c00343{left:560.700000px;}
.xe8_c00343{left:562.800000px;}
.x140_c00343{left:564.000000px;}
.xae_c00343{left:567.750000px;}
.xeb_c00343{left:569.700000px;}
.x107_c00343{left:574.200000px;}
.x118_c00343{left:575.550000px;}
.x12c_c00343{left:576.750000px;}
.x11b_c00343{left:578.250000px;}
.xff_c00343{left:581.400000px;}
.x115_c00343{left:582.900000px;}
.xc7_c00343{left:584.250000px;}
.xc0_c00343{left:585.750000px;}
.xd5_c00343{left:588.600000px;}
.x12d_c00343{left:591.450000px;}
.x113_c00343{left:594.150000px;}
.xe3_c00343{left:598.500000px;}
.xf9_c00343{left:600.000000px;}
.xf6_c00343{left:601.800000px;}
.x13d_c00343{left:603.300000px;}
.xc8_c00343{left:604.800000px;}
.xd6_c00343{left:606.300000px;}
.xdc_c00343{left:608.100000px;}
.x137_c00343{left:609.150000px;}
.x125_c00343{left:610.950000px;}
.xcf_c00343{left:612.000000px;}
.x114_c00343{left:613.200000px;}
.x134_c00343{left:614.550000px;}
.xec_c00343{left:617.250000px;}
.x138_c00343{left:619.500000px;}
.xc9_c00343{left:620.700000px;}
.x102_c00343{left:622.050000px;}
.x12e_c00343{left:623.850000px;}
.x148_c00343{left:624.900000px;}
.xdd_c00343{left:626.400000px;}
.x139_c00343{left:627.450000px;}
.xaf_c00343{left:629.250000px;}
.xfa_c00343{left:630.300000px;}
.x10c_c00343{left:634.650000px;}
.x152_c00343{left:637.200000px;}
.xf0_c00343{left:638.850000px;}
.x11c_c00343{left:643.350000px;}
.x103_c00343{left:644.400000px;}
.xf7_c00343{left:646.350000px;}
.xde_c00343{left:647.700000px;}
.xb9_c00343{left:649.800000px;}
.xed_c00343{left:651.750000px;}
.x119_c00343{left:654.450000px;}
.x14c_c00343{left:655.950000px;}
.x128_c00343{left:657.750000px;}
.x100_c00343{left:660.300000px;}
.xe4_c00343{left:661.800000px;}
.xca_c00343{left:663.600000px;}
.xb0_c00343{left:666.300000px;}
.xc1_c00343{left:669.300000px;}
.x11a_c00343{left:670.350000px;}
.xcb_c00343{left:672.300000px;}
.x10d_c00343{left:673.950000px;}
.xd7_c00343{left:676.800000px;}
.xe9_c00343{left:678.750000px;}
.x14a_c00343{left:682.950000px;}
.x13a_c00343{left:685.050000px;}
.x13c_c00343{left:686.250000px;}
.x108_c00343{left:687.600000px;}
.xb1_c00343{left:688.950000px;}
.xba_c00343{left:691.200000px;}
.x11d_c00343{left:694.050000px;}
.x129_c00343{left:697.350000px;}
.xd8_c00343{left:699.150000px;}
.x141_c00343{left:701.100000px;}
.x104_c00343{left:703.050000px;}
.xb2_c00343{left:705.450000px;}
.x120_c00343{left:706.950000px;}
.xf1_c00343{left:708.750000px;}
.xcc_c00343{left:709.800000px;}
.x109_c00343{left:712.050000px;}
.xbb_c00343{left:713.100000px;}
.x131_c00343{left:714.900000px;}
.x13e_c00343{left:717.000000px;}
.x123_c00343{left:718.050000px;}
.x10e_c00343{left:720.450000px;}
.xc2_c00343{left:721.800000px;}
.x142_c00343{left:723.000000px;}
.x121_c00343{left:724.950000px;}
.xcd_c00343{left:727.500000px;}
.xbc_c00343{left:729.000000px;}
.x10f_c00343{left:733.050000px;}
.xe5_c00343{left:734.550000px;}
.xb3_c00343{left:735.750000px;}
.x132_c00343{left:737.100000px;}
.x14b_c00343{left:738.450000px;}
.x126_c00343{left:740.250000px;}
.x135_c00343{left:743.850000px;}
.x143_c00343{left:745.050000px;}
.x14f_c00343{left:747.900000px;}
.xdf_c00343{left:748.950000px;}
.xe6_c00343{left:750.750000px;}
.xb4_c00343{left:753.000000px;}
.xd9_c00343{left:755.250000px;}
.xc3_c00343{left:756.300000px;}
.xee_c00343{left:757.650000px;}
.xfb_c00343{left:758.850000px;}
.x116_c00343{left:762.300000px;}
.x110_c00343{left:763.650000px;}
.x145_c00343{left:765.450000px;}
.x101_c00343{left:766.500000px;}
.xf2_c00343{left:768.450000px;}
.x150_c00343{left:770.250000px;}
.x12f_c00343{left:771.450000px;}
.x146_c00343{left:772.650000px;}
.xb5_c00343{left:773.850000px;}
.xfc_c00343{left:777.150000px;}
.x105_c00343{left:778.650000px;}
.xbd_c00343{left:782.250000px;}
.xd0_c00343{left:783.600000px;}
.xc4_c00343{left:786.900000px;}
.xe0_c00343{left:791.850000px;}
.x12a_c00343{left:793.800000px;}
.xce_c00343{left:795.900000px;}
.xbe_c00343{left:798.750000px;}
.x13b_c00343{left:799.800000px;}
.x133_c00343{left:800.850000px;}
.xb6_c00343{left:802.350000px;}
.x153_c00343{left:803.850000px;}
.xc5_c00343{left:804.900000px;}
.xf3_c00343{left:809.400000px;}
.x14d_c00343{left:811.200000px;}
.x14e_c00343{left:813.450000px;}
.xea_c00343{left:814.800000px;}
.xd1_c00343{left:816.750000px;}
.x117_c00343{left:818.400000px;}
.x12b_c00343{left:821.550000px;}
.xe1_c00343{left:822.750000px;}
.x11e_c00343{left:824.700000px;}
.xef_c00343{left:827.550000px;}
.xe7_c00343{left:829.200000px;}
.x136_c00343{left:830.550000px;}
.x111_c00343{left:831.750000px;}
.xc6_c00343{left:835.500000px;}
.xfd_c00343{left:836.550000px;}
.xb7_c00343{left:838.050000px;}
.xe2_c00343{left:840.750000px;}
.x112_c00343{left:842.550000px;}
.x122_c00343{left:845.250000px;}
.x11f_c00343{left:846.300000px;}
.xbf_c00343{left:851.700000px;}
.xda_c00343{left:853.200000px;}
.xd2_c00343{left:855.600000px;}
.xf4_c00343{left:857.700000px;}
.xfe_c00343{left:859.650000px;}
.x10b_c00343{left:866.250000px;}
.x144_c00343{left:867.450000px;}
.x13f_c00343{left:870.000000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls3_c00343{letter-spacing:0.000000pt;}
.ls2_c00343{letter-spacing:29.714286pt;}
.ls0_c00343{letter-spacing:56.000000pt;}
.ls1_c00343{letter-spacing:78.138861pt;}
.ws6_c00343{word-spacing:-102.138861pt;}
.ws5_c00343{word-spacing:-80.000000pt;}
.ws17_c00343{word-spacing:-45.714286pt;}
.ws10_c00343{word-spacing:-4.005312pt;}
.ws14_c00343{word-spacing:-1.169591pt;}
.ws1e_c00343{word-spacing:0.000000pt;}
.ws7_c00343{word-spacing:4.210526pt;}
.wsf_c00343{word-spacing:5.684814pt;}
.ws0_c00343{word-spacing:6.944444pt;}
.ws12_c00343{word-spacing:9.333333pt;}
.ws18_c00343{word-spacing:11.809524pt;}
.ws13_c00343{word-spacing:12.239646pt;}
.wsc_c00343{word-spacing:13.333333pt;}
.ws1c_c00343{word-spacing:13.483467pt;}
.ws11_c00343{word-spacing:14.387775pt;}
.ws1d_c00343{word-spacing:14.685769pt;}
.wsd_c00343{word-spacing:14.920635pt;}
.ws4_c00343{word-spacing:17.773012pt;}
.ws8_c00343{word-spacing:19.682540pt;}
.ws9_c00343{word-spacing:20.632708pt;}
.ws19_c00343{word-spacing:21.333333pt;}
.wse_c00343{word-spacing:21.629272pt;}
.wsa_c00343{word-spacing:22.857143pt;}
.ws3_c00343{word-spacing:23.492404pt;}
.ws1a_c00343{word-spacing:23.666667pt;}
.ws15_c00343{word-spacing:26.031746pt;}
.ws2_c00343{word-spacing:28.666667pt;}
.wsb_c00343{word-spacing:29.975633pt;}
.ws1_c00343{word-spacing:32.000000pt;}
.ws1b_c00343{word-spacing:40.333333pt;}
.ws16_c00343{word-spacing:116.752137pt;}
._2_c00343{margin-left:-78.138861pt;}
._0_c00343{margin-left:-56.000000pt;}
._8_c00343{margin-left:-29.714286pt;}
._7_c00343{margin-left:-1.904762pt;}
._a_c00343{width:44.632708pt;}
._5_c00343{width:46.349206pt;}
._1_c00343{width:47.492404pt;}
._3_c00343{width:49.523810pt;}
._6_c00343{width:52.698413pt;}
._4_c00343{width:57.460317pt;}
._9_c00343{width:59.333333pt;}
.fs6_c00343{font-size:21.333333pt;}
.fs5_c00343{font-size:32.000000pt;}
.fs3_c00343{font-size:48.000000pt;}
.fs2_c00343{font-size:53.333333pt;}
.fs4_c00343{font-size:58.666667pt;}
.fs0_c00343{font-size:64.000000pt;}
.fs1_c00343{font-size:74.666667pt;}
.y0_c00343{bottom:0.000000pt;}
.y6e_c00343{bottom:175.066667pt;}
.y39_c00343{bottom:180.266667pt;}
.y6d_c00343{bottom:182.266667pt;}
.y6c_c00343{bottom:190.933333pt;}
.y38_c00343{bottom:196.000000pt;}
.y6b_c00343{bottom:206.666667pt;}
.y37_c00343{bottom:211.066667pt;}
.y6a_c00343{bottom:222.666667pt;}
.y36_c00343{bottom:226.800000pt;}
.y69_c00343{bottom:238.666667pt;}
.y35_c00343{bottom:242.800000pt;}
.y68_c00343{bottom:254.666667pt;}
.y34_c00343{bottom:258.800000pt;}
.y67_c00343{bottom:270.666667pt;}
.y33_c00343{bottom:274.533333pt;}
.y66_c00343{bottom:286.666667pt;}
.y32_c00343{bottom:290.266667pt;}
.y65_c00343{bottom:302.666667pt;}
.y31_c00343{bottom:305.333333pt;}
.y64_c00343{bottom:318.400000pt;}
.y30_c00343{bottom:329.200000pt;}
.y63_c00343{bottom:340.800000pt;}
.y2f_c00343{bottom:344.933333pt;}
.y62_c00343{bottom:353.866667pt;}
.y2e_c00343{bottom:360.533333pt;}
.y61_c00343{bottom:366.666667pt;}
.y2d_c00343{bottom:376.533333pt;}
.y60_c00343{bottom:379.466667pt;}
.y5f_c00343{bottom:392.000000pt;}
.y2c_c00343{bottom:392.533333pt;}
.y5e_c00343{bottom:405.200000pt;}
.y2b_c00343{bottom:408.266667pt;}
.y5d_c00343{bottom:418.000000pt;}
.y2a_c00343{bottom:424.266667pt;}
.y5c_c00343{bottom:431.066667pt;}
.y29_c00343{bottom:439.333333pt;}
.y5b_c00343{bottom:443.600000pt;}
.y5a_c00343{bottom:455.733333pt;}
.y28_c00343{bottom:459.466667pt;}
.y59_c00343{bottom:469.200000pt;}
.y27_c00343{bottom:475.200000pt;}
.y58_c00343{bottom:482.000000pt;}
.y26_c00343{bottom:491.200000pt;}
.y57_c00343{bottom:494.133333pt;}
.y25_c00343{bottom:506.533333pt;}
.y56_c00343{bottom:507.466667pt;}
.y55_c00343{bottom:521.600000pt;}
.y24_c00343{bottom:522.266667pt;}
.y23_c00343{bottom:537.600000pt;}
.y54_c00343{bottom:553.866667pt;}
.y22_c00343{bottom:555.466667pt;}
.y21_c00343{bottom:568.933333pt;}
.y53_c00343{bottom:570.266667pt;}
.y20_c00343{bottom:584.666667pt;}
.y52_c00343{bottom:586.266667pt;}
.y1f_c00343{bottom:600.133333pt;}
.y51_c00343{bottom:601.600000pt;}
.y1e_c00343{bottom:616.133333pt;}
.y50_c00343{bottom:620.933333pt;}
.y1d_c00343{bottom:632.133333pt;}
.y4f_c00343{bottom:636.666667pt;}
.y1c_c00343{bottom:647.866667pt;}
.y4e_c00343{bottom:652.666667pt;}
.y1b_c00343{bottom:663.600000pt;}
.y4d_c00343{bottom:668.400000pt;}
.y1a_c00343{bottom:679.600000pt;}
.y4c_c00343{bottom:684.400000pt;}
.y19_c00343{bottom:695.600000pt;}
.y4b_c00343{bottom:700.133333pt;}
.y18_c00343{bottom:711.333333pt;}
.y4a_c00343{bottom:719.333333pt;}
.y17_c00343{bottom:727.066667pt;}
.y49_c00343{bottom:735.733333pt;}
.y16_c00343{bottom:743.733333pt;}
.y15_c00343{bottom:759.066667pt;}
.y48_c00343{bottom:759.333333pt;}
.y14_c00343{bottom:775.066667pt;}
.y47_c00343{bottom:791.333333pt;}
.y13_c00343{bottom:799.733333pt;}
.y46_c00343{bottom:810.133333pt;}
.y12_c00343{bottom:813.466667pt;}
.y11_c00343{bottom:826.266667pt;}
.y45_c00343{bottom:826.800000pt;}
.y10_c00343{bottom:839.066667pt;}
.y44_c00343{bottom:842.800000pt;}
.yf_c00343{bottom:850.533333pt;}
.y43_c00343{bottom:858.800000pt;}
.ye_c00343{bottom:864.266667pt;}
.y42_c00343{bottom:874.533333pt;}
.yd_c00343{bottom:876.800000pt;}
.yc_c00343{bottom:889.866667pt;}
.y41_c00343{bottom:890.533333pt;}
.yb_c00343{bottom:902.400000pt;}
.y40_c00343{bottom:906.533333pt;}
.ya_c00343{bottom:914.266667pt;}
.y3f_c00343{bottom:925.066667pt;}
.y9_c00343{bottom:927.733333pt;}
.y7_c00343{bottom:937.866667pt;}
.y8_c00343{bottom:940.533333pt;}
.y3e_c00343{bottom:942.400000pt;}
.y6_c00343{bottom:952.933333pt;}
.y3d_c00343{bottom:958.133333pt;}
.y5_c00343{bottom:967.333333pt;}
.y3c_c00343{bottom:973.733333pt;}
.y4_c00343{bottom:985.600000pt;}
.y3b_c00343{bottom:989.466667pt;}
.y3_c00343{bottom:1003.466667pt;}
.y3a_c00343{bottom:1007.733333pt;}
.y1_c00343{bottom:1024.933333pt;}
.y2_c00343{bottom:1027.466667pt;}
.h8_c00343{height:21.333333pt;}
.h7_c00343{height:32.000000pt;}
.h5_c00343{height:48.000000pt;}
.h4_c00343{height:53.333333pt;}
.h6_c00343{height:58.666667pt;}
.h2_c00343{height:64.000000pt;}
.h3_c00343{height:74.666667pt;}
.h1_c00343{height:1128.666667pt;}
.h0_c00343{height:1128.960043pt;}
.w0_c00343{width:853.760009pt;}
.w1_c00343{width:854.000000pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:153.333333pt;}
.xb_c00343{left:154.933333pt;}
.x46_c00343{left:156.533333pt;}
.x21_c00343{left:160.666667pt;}
.x42_c00343{left:167.733333pt;}
.x3_c00343{left:168.933333pt;}
.x9_c00343{left:169.866667pt;}
.x4b_c00343{left:171.600000pt;}
.x50_c00343{left:172.800000pt;}
.x64_c00343{left:173.866667pt;}
.x6e_c00343{left:174.800000pt;}
.x83_c00343{left:175.866667pt;}
.x8b_c00343{left:176.933333pt;}
.x9e_c00343{left:178.133333pt;}
.xa5_c00343{left:179.066667pt;}
.x1f_c00343{left:180.133333pt;}
.xa_c00343{left:184.533333pt;}
.x7b_c00343{left:185.600000pt;}
.x4_c00343{left:188.800000pt;}
.x84_c00343{left:191.733333pt;}
.x59_c00343{left:193.200000pt;}
.x8c_c00343{left:194.800000pt;}
.x31_c00343{left:197.733333pt;}
.x2b_c00343{left:200.533333pt;}
.x5c_c00343{left:202.000000pt;}
.x88_c00343{left:204.000000pt;}
.x9f_c00343{left:205.066667pt;}
.x20_c00343{left:206.400000pt;}
.x51_c00343{left:208.933333pt;}
.xa8_c00343{left:210.133333pt;}
.x69_c00343{left:211.200000pt;}
.x79_c00343{left:212.133333pt;}
.xc_c00343{left:213.200000pt;}
.x32_c00343{left:214.400000pt;}
.x22_c00343{left:216.400000pt;}
.x97_c00343{left:217.866667pt;}
.x2c_c00343{left:220.400000pt;}
.x9b_c00343{left:224.533333pt;}
.x55_c00343{left:227.200000pt;}
.x5_c00343{left:228.800000pt;}
.x14_c00343{left:230.800000pt;}
.x47_c00343{left:231.733333pt;}
.x7c_c00343{left:233.333333pt;}
.x65_c00343{left:234.400000pt;}
.x2d_c00343{left:237.733333pt;}
.x72_c00343{left:239.466667pt;}
.x5f_c00343{left:242.400000pt;}
.x15_c00343{left:243.600000pt;}
.x6f_c00343{left:244.666667pt;}
.x98_c00343{left:246.400000pt;}
.x56_c00343{left:247.733333pt;}
.xa3_c00343{left:249.066667pt;}
.x16_c00343{left:250.266667pt;}
.x43_c00343{left:251.200000pt;}
.x90_c00343{left:252.133333pt;}
.x94_c00343{left:253.066667pt;}
.xab_c00343{left:254.933333pt;}
.x73_c00343{left:256.400000pt;}
.x33_c00343{left:257.600000pt;}
.x3e_c00343{left:258.800000pt;}
.x99_c00343{left:260.800000pt;}
.x80_c00343{left:261.866667pt;}
.x17_c00343{left:263.466667pt;}
.x23_c00343{left:266.000000pt;}
.x48_c00343{left:267.200000pt;}
.x18_c00343{left:269.600000pt;}
.xd_c00343{left:270.800000pt;}
.xa9_c00343{left:273.200000pt;}
.x2e_c00343{left:274.266667pt;}
.x19_c00343{left:275.333333pt;}
.x8d_c00343{left:276.800000pt;}
.x52_c00343{left:279.066667pt;}
.x6_c00343{left:280.266667pt;}
.x6a_c00343{left:281.600000pt;}
.x3c_c00343{left:282.800000pt;}
.x87_c00343{left:284.400000pt;}
.x91_c00343{left:285.466667pt;}
.x4c_c00343{left:286.933333pt;}
.x1a_c00343{left:288.400000pt;}
.xa0_c00343{left:289.866667pt;}
.xa4_c00343{left:292.000000pt;}
.x5d_c00343{left:293.866667pt;}
.x1b_c00343{left:294.800000pt;}
.x60_c00343{left:297.466667pt;}
.x34_c00343{left:298.933333pt;}
.x24_c00343{left:300.266667pt;}
.x3d_c00343{left:301.733333pt;}
.xe_c00343{left:304.666667pt;}
.x70_c00343{left:306.666667pt;}
.x1c_c00343{left:307.600000pt;}
.x66_c00343{left:309.333333pt;}
.x74_c00343{left:311.066667pt;}
.x35_c00343{left:312.000000pt;}
.x3f_c00343{left:313.866667pt;}
.x71_c00343{left:315.333333pt;}
.x25_c00343{left:317.600000pt;}
.x81_c00343{left:319.866667pt;}
.x38_c00343{left:321.466667pt;}
.xf_c00343{left:322.533333pt;}
.x2f_c00343{left:325.466667pt;}
.x1d_c00343{left:326.800000pt;}
.x39_c00343{left:327.866667pt;}
.x95_c00343{left:328.933333pt;}
.x5a_c00343{left:330.933333pt;}
.x67_c00343{left:332.400000pt;}
.x3a_c00343{left:334.266667pt;}
.x49_c00343{left:335.333333pt;}
.x6d_c00343{left:336.933333pt;}
.x10_c00343{left:338.266667pt;}
.x92_c00343{left:339.200000pt;}
.x28_c00343{left:341.066667pt;}
.x7_c00343{left:342.000000pt;}
.x82_c00343{left:343.600000pt;}
.x3b_c00343{left:347.333333pt;}
.x4d_c00343{left:348.400000pt;}
.x89_c00343{left:349.600000pt;}
.x61_c00343{left:350.800000pt;}
.x4a_c00343{left:352.000000pt;}
.x36_c00343{left:353.333333pt;}
.x40_c00343{left:358.000000pt;}
.x53_c00343{left:359.066667pt;}
.xa2_c00343{left:361.066667pt;}
.x57_c00343{left:362.000000pt;}
.x75_c00343{left:364.533333pt;}
.x44_c00343{left:365.466667pt;}
.x30_c00343{left:366.800000pt;}
.x9c_c00343{left:367.866667pt;}
.x4e_c00343{left:368.933333pt;}
.xac_c00343{left:369.866667pt;}
.x2_c00343{left:371.600000pt;}
.x85_c00343{left:372.800000pt;}
.x6b_c00343{left:373.733333pt;}
.x8e_c00343{left:375.066667pt;}
.x7d_c00343{left:376.666667pt;}
.xa6_c00343{left:378.133333pt;}
.x11_c00343{left:380.933333pt;}
.x5b_c00343{left:383.466667pt;}
.x1e_c00343{left:388.533333pt;}
.x37_c00343{left:389.600000pt;}
.x62_c00343{left:394.000000pt;}
.x54_c00343{left:395.600000pt;}
.x5e_c00343{left:397.200000pt;}
.x9a_c00343{left:398.666667pt;}
.x4f_c00343{left:400.266667pt;}
.x68_c00343{left:402.800000pt;}
.xaa_c00343{left:404.666667pt;}
.x8a_c00343{left:406.000000pt;}
.x12_c00343{left:408.133333pt;}
.x77_c00343{left:410.533333pt;}
.x76_c00343{left:412.800000pt;}
.x29_c00343{left:414.933333pt;}
.x26_c00343{left:415.866667pt;}
.x45_c00343{left:417.333333pt;}
.x58_c00343{left:420.133333pt;}
.x7a_c00343{left:421.466667pt;}
.x41_c00343{left:424.266667pt;}
.xa7_c00343{left:425.866667pt;}
.x63_c00343{left:426.933333pt;}
.xa1_c00343{left:428.666667pt;}
.x6c_c00343{left:429.733333pt;}
.x8_c00343{left:430.933333pt;}
.x96_c00343{left:433.466667pt;}
.x86_c00343{left:435.200000pt;}
.x7e_c00343{left:436.800000pt;}
.x13_c00343{left:438.533333pt;}
.x2a_c00343{left:440.533333pt;}
.x27_c00343{left:442.133333pt;}
.x78_c00343{left:443.200000pt;}
.x93_c00343{left:444.400000pt;}
.x7f_c00343{left:447.333333pt;}
.x9d_c00343{left:449.200000pt;}
.x8f_c00343{left:452.800000pt;}
.x127_c00343{left:467.200000pt;}
.xd4_c00343{left:471.333333pt;}
.xf8_c00343{left:472.266667pt;}
.x106_c00343{left:474.533333pt;}
.x147_c00343{left:477.066667pt;}
.xad_c00343{left:485.466667pt;}
.xb8_c00343{left:486.400000pt;}
.xdb_c00343{left:487.733333pt;}
.xf5_c00343{left:488.800000pt;}
.x124_c00343{left:490.266667pt;}
.x130_c00343{left:492.133333pt;}
.x149_c00343{left:493.066667pt;}
.xd3_c00343{left:494.933333pt;}
.x10a_c00343{left:496.266667pt;}
.x151_c00343{left:498.400000pt;}
.xe8_c00343{left:500.266667pt;}
.x140_c00343{left:501.333333pt;}
.xae_c00343{left:504.666667pt;}
.xeb_c00343{left:506.400000pt;}
.x107_c00343{left:510.400000pt;}
.x118_c00343{left:511.600000pt;}
.x12c_c00343{left:512.666667pt;}
.x11b_c00343{left:514.000000pt;}
.xff_c00343{left:516.800000pt;}
.x115_c00343{left:518.133333pt;}
.xc7_c00343{left:519.333333pt;}
.xc0_c00343{left:520.666667pt;}
.xd5_c00343{left:523.200000pt;}
.x12d_c00343{left:525.733333pt;}
.x113_c00343{left:528.133333pt;}
.xe3_c00343{left:532.000000pt;}
.xf9_c00343{left:533.333333pt;}
.xf6_c00343{left:534.933333pt;}
.x13d_c00343{left:536.266667pt;}
.xc8_c00343{left:537.600000pt;}
.xd6_c00343{left:538.933333pt;}
.xdc_c00343{left:540.533333pt;}
.x137_c00343{left:541.466667pt;}
.x125_c00343{left:543.066667pt;}
.xcf_c00343{left:544.000000pt;}
.x114_c00343{left:545.066667pt;}
.x134_c00343{left:546.266667pt;}
.xec_c00343{left:548.666667pt;}
.x138_c00343{left:550.666667pt;}
.xc9_c00343{left:551.733333pt;}
.x102_c00343{left:552.933333pt;}
.x12e_c00343{left:554.533333pt;}
.x148_c00343{left:555.466667pt;}
.xdd_c00343{left:556.800000pt;}
.x139_c00343{left:557.733333pt;}
.xaf_c00343{left:559.333333pt;}
.xfa_c00343{left:560.266667pt;}
.x10c_c00343{left:564.133333pt;}
.x152_c00343{left:566.400000pt;}
.xf0_c00343{left:567.866667pt;}
.x11c_c00343{left:571.866667pt;}
.x103_c00343{left:572.800000pt;}
.xf7_c00343{left:574.533333pt;}
.xde_c00343{left:575.733333pt;}
.xb9_c00343{left:577.600000pt;}
.xed_c00343{left:579.333333pt;}
.x119_c00343{left:581.733333pt;}
.x14c_c00343{left:583.066667pt;}
.x128_c00343{left:584.666667pt;}
.x100_c00343{left:586.933333pt;}
.xe4_c00343{left:588.266667pt;}
.xca_c00343{left:589.866667pt;}
.xb0_c00343{left:592.266667pt;}
.xc1_c00343{left:594.933333pt;}
.x11a_c00343{left:595.866667pt;}
.xcb_c00343{left:597.600000pt;}
.x10d_c00343{left:599.066667pt;}
.xd7_c00343{left:601.600000pt;}
.xe9_c00343{left:603.333333pt;}
.x14a_c00343{left:607.066667pt;}
.x13a_c00343{left:608.933333pt;}
.x13c_c00343{left:610.000000pt;}
.x108_c00343{left:611.200000pt;}
.xb1_c00343{left:612.400000pt;}
.xba_c00343{left:614.400000pt;}
.x11d_c00343{left:616.933333pt;}
.x129_c00343{left:619.866667pt;}
.xd8_c00343{left:621.466667pt;}
.x141_c00343{left:623.200000pt;}
.x104_c00343{left:624.933333pt;}
.xb2_c00343{left:627.066667pt;}
.x120_c00343{left:628.400000pt;}
.xf1_c00343{left:630.000000pt;}
.xcc_c00343{left:630.933333pt;}
.x109_c00343{left:632.933333pt;}
.xbb_c00343{left:633.866667pt;}
.x131_c00343{left:635.466667pt;}
.x13e_c00343{left:637.333333pt;}
.x123_c00343{left:638.266667pt;}
.x10e_c00343{left:640.400000pt;}
.xc2_c00343{left:641.600000pt;}
.x142_c00343{left:642.666667pt;}
.x121_c00343{left:644.400000pt;}
.xcd_c00343{left:646.666667pt;}
.xbc_c00343{left:648.000000pt;}
.x10f_c00343{left:651.600000pt;}
.xe5_c00343{left:652.933333pt;}
.xb3_c00343{left:654.000000pt;}
.x132_c00343{left:655.200000pt;}
.x14b_c00343{left:656.400000pt;}
.x126_c00343{left:658.000000pt;}
.x135_c00343{left:661.200000pt;}
.x143_c00343{left:662.266667pt;}
.x14f_c00343{left:664.800000pt;}
.xdf_c00343{left:665.733333pt;}
.xe6_c00343{left:667.333333pt;}
.xb4_c00343{left:669.333333pt;}
.xd9_c00343{left:671.333333pt;}
.xc3_c00343{left:672.266667pt;}
.xee_c00343{left:673.466667pt;}
.xfb_c00343{left:674.533333pt;}
.x116_c00343{left:677.600000pt;}
.x110_c00343{left:678.800000pt;}
.x145_c00343{left:680.400000pt;}
.x101_c00343{left:681.333333pt;}
.xf2_c00343{left:683.066667pt;}
.x150_c00343{left:684.666667pt;}
.x12f_c00343{left:685.733333pt;}
.x146_c00343{left:686.800000pt;}
.xb5_c00343{left:687.866667pt;}
.xfc_c00343{left:690.800000pt;}
.x105_c00343{left:692.133333pt;}
.xbd_c00343{left:695.333333pt;}
.xd0_c00343{left:696.533333pt;}
.xc4_c00343{left:699.466667pt;}
.xe0_c00343{left:703.866667pt;}
.x12a_c00343{left:705.600000pt;}
.xce_c00343{left:707.466667pt;}
.xbe_c00343{left:710.000000pt;}
.x13b_c00343{left:710.933333pt;}
.x133_c00343{left:711.866667pt;}
.xb6_c00343{left:713.200000pt;}
.x153_c00343{left:714.533333pt;}
.xc5_c00343{left:715.466667pt;}
.xf3_c00343{left:719.466667pt;}
.x14d_c00343{left:721.066667pt;}
.x14e_c00343{left:723.066667pt;}
.xea_c00343{left:724.266667pt;}
.xd1_c00343{left:726.000000pt;}
.x117_c00343{left:727.466667pt;}
.x12b_c00343{left:730.266667pt;}
.xe1_c00343{left:731.333333pt;}
.x11e_c00343{left:733.066667pt;}
.xef_c00343{left:735.600000pt;}
.xe7_c00343{left:737.066667pt;}
.x136_c00343{left:738.266667pt;}
.x111_c00343{left:739.333333pt;}
.xc6_c00343{left:742.666667pt;}
.xfd_c00343{left:743.600000pt;}
.xb7_c00343{left:744.933333pt;}
.xe2_c00343{left:747.333333pt;}
.x112_c00343{left:748.933333pt;}
.x122_c00343{left:751.333333pt;}
.x11f_c00343{left:752.266667pt;}
.xbf_c00343{left:757.066667pt;}
.xda_c00343{left:758.400000pt;}
.xd2_c00343{left:760.533333pt;}
.xf4_c00343{left:762.400000pt;}
.xfe_c00343{left:764.133333pt;}
.x10b_c00343{left:770.000000pt;}
.x144_c00343{left:771.066667pt;}
.x13f_c00343{left:773.333333pt;}
}





/* 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_c00344 {
    display:none;
  }
  .loading-indicator_c00344.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00344 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_c00344 { 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_c00344" -> "#page-container .classname_c00344")
 */
.pf_c00344 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00344 { /* 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_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00344 { /* 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_c00344 { /* 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_c00344 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00344 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00344 {overflow:visible;}
  }
}
.c_c00344 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00344 { /* 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_c00344:after { /* webkit #35443 */
  content: '';
}
.t_c00344:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00344 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 */
}
.__c00344 { /* 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_c00344 { /* info for Javascript */
  display:none;
}
.l_c00344 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00344 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00344 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00344: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_c00344 {
    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_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00344.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_c00344 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00344;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.000000;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;}
.ma4_c00344{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00344{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m35_c00344{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m103_c00344{transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00344{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00344{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00344{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00344{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00344{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00344{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m11_c00344{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00344{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m40_c00344{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00344{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb_c00344{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00344{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00344{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00344{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00344{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m44_c00344{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m64_c00344{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00344{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m42_c00344{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m51_c00344{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m52_c00344{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00344{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m53_c00344{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00344{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md4_c00344{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.med_c00344{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me0_c00344{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.md6_c00344{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00344{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m50_c00344{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m70_c00344{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m86_c00344{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00344{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m119_c00344{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m100_c00344{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m80_c00344{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md8_c00344{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md5_c00344{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00344{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m17_c00344{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m126_c00344{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m27_c00344{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m78_c00344{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m104_c00344{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00344{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00344{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00344{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00344{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00344{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m83_c00344{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00344{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m22_c00344{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00344{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m6_c00344{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00344{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md2_c00344{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md9_c00344{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00344{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00344{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3_c00344{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00344{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00344{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m110_c00344{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m111_c00344{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.me7_c00344{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me2_c00344{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.me1_c00344{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m32_c00344{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00344{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00344{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md0_c00344{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m95_c00344{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00344{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m77_c00344{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00344{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00344{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00344{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00344{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m87_c00344{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00344{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00344{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00344{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m94_c00344{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m108_c00344{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00344{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00344{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m88_c00344{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m48_c00344{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00344{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00344{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m106_c00344{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mca_c00344{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00344{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00344{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mce_c00344{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00344{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00344{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m125_c00344{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me6_c00344{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md3_c00344{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00344{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.md_c00344{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m12_c00344{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00344{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m37_c00344{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m41_c00344{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m73_c00344{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mee_c00344{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m9_c00344{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m69_c00344{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m57_c00344{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m18_c00344{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00344{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00344{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m10_c00344{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m28_c00344{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00344{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m36_c00344{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m99_c00344{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00344{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00344{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m16_c00344{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m92_c00344{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mc_c00344{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m123_c00344{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00344{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00344{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m13_c00344{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m61_c00344{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00344{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mde_c00344{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00344{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m124_c00344{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma_c00344{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me8_c00344{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m31_c00344{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00344{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00344{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m26_c00344{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mad_c00344{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00344{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00344{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7_c00344{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00344{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00344{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m102_c00344{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m76_c00344{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00344{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00344{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00344{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00344{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5_c00344{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md1_c00344{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m89_c00344{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00344{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m113_c00344{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me5_c00344{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m118_c00344{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00344{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00344{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00344{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mab_c00344{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m96_c00344{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00344{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00344{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m60_c00344{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00344{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00344{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m81_c00344{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m97_c00344{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m46_c00344{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m56_c00344{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00344{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m14_c00344{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.maa_c00344{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00344{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mae_c00344{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00344{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m25_c00344{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.meb_c00344{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m21_c00344{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00344{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m85_c00344{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mba_c00344{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m20_c00344{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m15_c00344{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m59_c00344{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00344{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00344{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00344{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m33_c00344{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00344{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m24_c00344{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00344{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00344{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00344{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m71_c00344{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m30_c00344{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8_c00344{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m127_c00344{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00344{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00344{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m84_c00344{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00344{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00344{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m90_c00344{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m58_c00344{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m72_c00344{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m93_c00344{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00344{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me_c00344{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00344{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m79_c00344{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00344{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf_c00344{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00344{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m98_c00344{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.maf_c00344{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m47_c00344{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m45_c00344{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mac_c00344{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m4_c00344{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m114_c00344{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m128_c00344{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00344{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me4_c00344{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00344{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00344{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md7_c00344{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00344{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mff_c00344{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00344{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00344{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00344{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m62_c00344{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00344{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m55_c00344{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00344{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m105_c00344{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m29_c00344{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m117_c00344{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m65_c00344{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00344{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m101_c00344{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m23_c00344{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m63_c00344{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00344{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00344{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m49_c00344{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mda_c00344{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00344{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00344{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00344{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m38_c00344{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00344{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m67_c00344{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m122_c00344{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00344{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00344{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00344{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00344{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00344{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m34_c00344{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m74_c00344{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m19_c00344{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mec_c00344{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m39_c00344{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m120_c00344{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m54_c00344{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m75_c00344{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mef_c00344{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m109_c00344{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m43_c00344{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00344{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00344{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m107_c00344{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m66_c00344{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00344{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me3_c00344{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m116_c00344{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m82_c00344{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00344{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m68_c00344{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m91_c00344{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m115_c00344{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m121_c00344{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.me9_c00344{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mea_c00344{transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);}
.m0_c00344{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00344{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m112_c00344{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls0_c00344{letter-spacing:0.000000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{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__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00344{word-spacing:-11.756014px;}
.ws9_c00344{word-spacing:-10.114596px;}
.wsc_c00344{word-spacing:-3.472222px;}
.ws5_c00344{word-spacing:-0.040431px;}
.wsd_c00344{word-spacing:0.000000px;}
.ws6_c00344{word-spacing:6.040724px;}
.wsa_c00344{word-spacing:6.511785px;}
.ws8_c00344{word-spacing:7.786517px;}
.wsb_c00344{word-spacing:12.545455px;}
.ws3_c00344{word-spacing:25.714286px;}
.ws4_c00344{word-spacing:29.285714px;}
.ws0_c00344{word-spacing:35.833333px;}
.ws2_c00344{word-spacing:60.000000px;}
.ws1_c00344{word-spacing:67.631579px;}
._2_c00344{width:55.714286px;}
._0_c00344{width:70.000000px;}
._1_c00344{width:74.166667px;}
.fc0_c00344{color:transparent;}
.fs5_c00344{font-size:24.000000px;}
.fs6_c00344{font-size:48.000000px;}
.fs3_c00344{font-size:54.000000px;}
.fs2_c00344{font-size:60.000000px;}
.fs1_c00344{font-size:66.000000px;}
.fs4_c00344{font-size:72.000000px;}
.fs0_c00344{font-size:84.000000px;}
.y0_c00344{bottom:0.000000px;}
.y37_c00344{bottom:195.450000px;}
.y64_c00344{bottom:195.900000px;}
.y63_c00344{bottom:210.300000px;}
.y36_c00344{bottom:213.450000px;}
.y62_c00344{bottom:225.000000px;}
.y34_c00344{bottom:238.950000px;}
.y61_c00344{bottom:239.100000px;}
.y60_c00344{bottom:253.500000px;}
.y33_c00344{bottom:257.700000px;}
.y5f_c00344{bottom:267.750000px;}
.y32_c00344{bottom:276.000000px;}
.y5e_c00344{bottom:282.900000px;}
.y31_c00344{bottom:293.700000px;}
.y30_c00344{bottom:310.950000px;}
.y2f_c00344{bottom:328.650000px;}
.y5d_c00344{bottom:334.350000px;}
.y2e_c00344{bottom:346.650000px;}
.y5c_c00344{bottom:352.350000px;}
.y2d_c00344{bottom:364.350000px;}
.y5b_c00344{bottom:372.900000px;}
.y2c_c00344{bottom:382.050000px;}
.y5a_c00344{bottom:391.650000px;}
.y2b_c00344{bottom:399.750000px;}
.y59_c00344{bottom:409.650000px;}
.y2a_c00344{bottom:417.750000px;}
.y58_c00344{bottom:426.900000px;}
.y29_c00344{bottom:435.450000px;}
.y57_c00344{bottom:444.150000px;}
.y28_c00344{bottom:453.450000px;}
.y56_c00344{bottom:461.850000px;}
.y27_c00344{bottom:471.450000px;}
.y55_c00344{bottom:479.850000px;}
.y26_c00344{bottom:488.700000px;}
.y54_c00344{bottom:502.200000px;}
.y25_c00344{bottom:507.000000px;}
.y53_c00344{bottom:524.100000px;}
.y24_c00344{bottom:524.700000px;}
.y23_c00344{bottom:542.400000px;}
.y52_c00344{bottom:546.150000px;}
.y22_c00344{bottom:560.700000px;}
.y51_c00344{bottom:564.150000px;}
.y21_c00344{bottom:578.400000px;}
.y20_c00344{bottom:596.100000px;}
.y50_c00344{bottom:608.400000px;}
.y1f_c00344{bottom:614.100000px;}
.y4f_c00344{bottom:626.400000px;}
.y1e_c00344{bottom:632.100000px;}
.y4e_c00344{bottom:644.400000px;}
.y1d_c00344{bottom:649.800000px;}
.y4d_c00344{bottom:661.950000px;}
.y1b_c00344{bottom:666.300000px;}
.y1c_c00344{bottom:671.400000px;}
.y4c_c00344{bottom:679.950000px;}
.y1a_c00344{bottom:684.300000px;}
.y35_c00344{bottom:685.500000px;}
.y4b_c00344{bottom:697.650000px;}
.y19_c00344{bottom:698.700000px;}
.y18_c00344{bottom:714.900000px;}
.y4a_c00344{bottom:718.200000px;}
.y17_c00344{bottom:732.900000px;}
.y16_c00344{bottom:750.900000px;}
.y49_c00344{bottom:752.700000px;}
.y15_c00344{bottom:768.600000px;}
.y48_c00344{bottom:770.700000px;}
.y14_c00344{bottom:786.300000px;}
.y47_c00344{bottom:788.700000px;}
.y13_c00344{bottom:804.300000px;}
.y46_c00344{bottom:806.700000px;}
.y12_c00344{bottom:825.600000px;}
.y45_c00344{bottom:838.050000px;}
.y11_c00344{bottom:843.900000px;}
.y44_c00344{bottom:846.300000px;}
.y10_c00344{bottom:861.900000px;}
.y43_c00344{bottom:864.000000px;}
.yf_c00344{bottom:879.900000px;}
.y42_c00344{bottom:882.000000px;}
.y41_c00344{bottom:899.250000px;}
.ye_c00344{bottom:901.050000px;}
.yd_c00344{bottom:919.800000px;}
.y40_c00344{bottom:921.600000px;}
.y3f_c00344{bottom:939.300000px;}
.yc_c00344{bottom:950.700000px;}
.yb_c00344{bottom:968.700000px;}
.y3e_c00344{bottom:973.800000px;}
.ya_c00344{bottom:986.700000px;}
.y3d_c00344{bottom:992.550000px;}
.y9_c00344{bottom:1007.700000px;}
.y8_c00344{bottom:1026.750000px;}
.y7_c00344{bottom:1044.750000px;}
.y3c_c00344{bottom:1049.100000px;}
.y6_c00344{bottom:1065.900000px;}
.y3b_c00344{bottom:1067.100000px;}
.y5_c00344{bottom:1083.900000px;}
.y3a_c00344{bottom:1084.350000px;}
.y4_c00344{bottom:1102.200000px;}
.y39_c00344{bottom:1102.350000px;}
.y3_c00344{bottom:1119.900000px;}
.y38_c00344{bottom:1120.350000px;}
.y2_c00344{bottom:1144.050000px;}
.y1_c00344{bottom:1147.650000px;}
.h7_c00344{height:24.000000px;}
.h8_c00344{height:48.000000px;}
.h5_c00344{height:54.000000px;}
.h4_c00344{height:60.000000px;}
.h3_c00344{height:66.000000px;}
.h6_c00344{height:72.000000px;}
.h2_c00344{height:84.000000px;}
.h1_c00344{height:1266.000000px;}
.h0_c00344{height:1266.120025px;}
.w0_c00344{width:960.480010px;}
.w1_c00344{width:960.750000px;}
.x0_c00344{left:0.000000px;}
.xa3_c00344{left:68.550000px;}
.x1d_c00344{left:69.900000px;}
.x38_c00344{left:70.950000px;}
.xa6_c00344{left:72.300000px;}
.x44_c00344{left:77.100000px;}
.x7e_c00344{left:78.150000px;}
.x8b_c00344{left:80.550000px;}
.xa0_c00344{left:83.850000px;}
.x6b_c00344{left:85.050000px;}
.x3_c00344{left:88.200000px;}
.x4f_c00344{left:89.400000px;}
.xa8_c00344{left:90.450000px;}
.x72_c00344{left:99.000000px;}
.x66_c00344{left:104.850000px;}
.x3e_c00344{left:106.200000px;}
.xd_c00344{left:109.050000px;}
.x50_c00344{left:113.100000px;}
.x6d_c00344{left:115.200000px;}
.x39_c00344{left:116.250000px;}
.x4_c00344{left:117.300000px;}
.x1b_c00344{left:119.400000px;}
.x73_c00344{left:120.600000px;}
.x28_c00344{left:122.100000px;}
.x7b_c00344{left:123.900000px;}
.x9b_c00344{left:125.550000px;}
.x33_c00344{left:127.650000px;}
.x92_c00344{left:129.600000px;}
.x1e_c00344{left:131.400000px;}
.x7f_c00344{left:133.200000px;}
.x1c_c00344{left:135.600000px;}
.x81_c00344{left:136.950000px;}
.x16_c00344{left:138.750000px;}
.x74_c00344{left:140.700000px;}
.x8c_c00344{left:142.350000px;}
.x34_c00344{left:143.850000px;}
.x9d_c00344{left:145.950000px;}
.x17_c00344{left:148.050000px;}
.x1f_c00344{left:149.700000px;}
.x5_c00344{left:151.200000px;}
.x51_c00344{left:155.550000px;}
.x5f_c00344{left:157.200000px;}
.x79_c00344{left:159.750000px;}
.x2d_c00344{left:162.450000px;}
.x6c_c00344{left:164.550000px;}
.x84_c00344{left:166.350000px;}
.x3f_c00344{left:167.400000px;}
.x6e_c00344{left:169.200000px;}
.x60_c00344{left:170.850000px;}
.x6_c00344{left:172.500000px;}
.x8d_c00344{left:174.450000px;}
.x18_c00344{left:176.550000px;}
.xa9_c00344{left:178.350000px;}
.xe_c00344{left:179.550000px;}
.x52_c00344{left:180.600000px;}
.x45_c00344{left:182.250000px;}
.x49_c00344{left:186.750000px;}
.x6f_c00344{left:187.950000px;}
.x35_c00344{left:189.600000px;}
.x25_c00344{left:191.550000px;}
.xf_c00344{left:194.700000px;}
.x56_c00344{left:196.650000px;}
.x75_c00344{left:199.050000px;}
.x97_c00344{left:200.400000px;}
.x9f_c00344{left:201.600000px;}
.x70_c00344{left:203.100000px;}
.x5a_c00344{left:204.750000px;}
.x36_c00344{left:207.900000px;}
.x76_c00344{left:210.150000px;}
.x2e_c00344{left:212.850000px;}
.x19_c00344{left:214.050000px;}
.x61_c00344{left:215.400000px;}
.x91_c00344{left:217.050000px;}
.x20_c00344{left:221.700000px;}
.xa4_c00344{left:224.250000px;}
.x29_c00344{left:225.750000px;}
.x5b_c00344{left:227.400000px;}
.x53_c00344{left:229.950000px;}
.x3a_c00344{left:233.550000px;}
.x68_c00344{left:235.050000px;}
.x46_c00344{left:236.250000px;}
.x94_c00344{left:238.500000px;}
.x57_c00344{left:240.900000px;}
.x40_c00344{left:241.950000px;}
.x71_c00344{left:243.750000px;}
.x82_c00344{left:245.400000px;}
.x7_c00344{left:247.050000px;}
.x21_c00344{left:249.450000px;}
.x10_c00344{left:250.800000px;}
.x9e_c00344{left:252.750000px;}
.x62_c00344{left:253.950000px;}
.x41_c00344{left:255.600000px;}
.x77_c00344{left:257.250000px;}
.x11_c00344{left:258.750000px;}
.x3b_c00344{left:260.550000px;}
.x26_c00344{left:262.950000px;}
.x99_c00344{left:264.750000px;}
.x85_c00344{left:266.550000px;}
.x8_c00344{left:268.950000px;}
.x8e_c00344{left:271.050000px;}
.x47_c00344{left:272.250000px;}
.x7a_c00344{left:273.300000px;}
.x12_c00344{left:275.250000px;}
.x5c_c00344{left:277.800000px;}
.x78_c00344{left:278.850000px;}
.x42_c00344{left:280.050000px;}
.xa7_c00344{left:282.150000px;}
.x87_c00344{left:285.600000px;}
.x9_c00344{left:287.250000px;}
.x7c_c00344{left:290.700000px;}
.x5d_c00344{left:291.900000px;}
.x7d_c00344{left:294.750000px;}
.x2f_c00344{left:295.950000px;}
.x54_c00344{left:298.350000px;}
.x88_c00344{left:302.550000px;}
.x1a_c00344{left:305.550000px;}
.x8f_c00344{left:306.750000px;}
.x2a_c00344{left:308.550000px;}
.x93_c00344{left:309.600000px;}
.x9c_c00344{left:310.950000px;}
.x30_c00344{left:313.650000px;}
.x1_c00344{left:314.700000px;}
.x67_c00344{left:317.850000px;}
.x13_c00344{left:319.500000px;}
.x3d_c00344{left:320.700000px;}
.x4a_c00344{left:321.900000px;}
.x63_c00344{left:323.400000px;}
.x98_c00344{left:324.900000px;}
.x69_c00344{left:326.100000px;}
.x22_c00344{left:327.300000px;}
.x58_c00344{left:328.650000px;}
.x2b_c00344{left:330.450000px;}
.x4b_c00344{left:332.400000px;}
.x5e_c00344{left:333.600000px;}
.x9a_c00344{left:334.650000px;}
.xa5_c00344{left:335.850000px;}
.x31_c00344{left:338.550000px;}
.xa_c00344{left:340.950000px;}
.x27_c00344{left:342.150000px;}
.x8a_c00344{left:343.950000px;}
.x96_c00344{left:345.600000px;}
.x4c_c00344{left:346.800000px;}
.x14_c00344{left:349.050000px;}
.x64_c00344{left:351.150000px;}
.xa1_c00344{left:353.250000px;}
.x23_c00344{left:354.600000px;}
.x55_c00344{left:356.400000px;}
.x37_c00344{left:358.800000px;}
.x43_c00344{left:360.000000px;}
.xb_c00344{left:361.800000px;}
.x83_c00344{left:364.650000px;}
.x65_c00344{left:365.850000px;}
.x89_c00344{left:367.350000px;}
.x15_c00344{left:368.850000px;}
.x59_c00344{left:371.100000px;}
.x32_c00344{left:372.450000px;}
.xa2_c00344{left:376.350000px;}
.x86_c00344{left:378.150000px;}
.x24_c00344{left:379.500000px;}
.x90_c00344{left:380.550000px;}
.x48_c00344{left:381.750000px;}
.x80_c00344{left:383.850000px;}
.x95_c00344{left:385.500000px;}
.x2c_c00344{left:387.000000px;}
.x3c_c00344{left:389.550000px;}
.x6a_c00344{left:392.100000px;}
.xc_c00344{left:396.000000px;}
.x4d_c00344{left:397.500000px;}
.x4e_c00344{left:404.700000px;}
.x115_c00344{left:415.800000px;}
.x118_c00344{left:427.350000px;}
.xcb_c00344{left:428.400000px;}
.xd7_c00344{left:429.900000px;}
.xd1_c00344{left:436.650000px;}
.x103_c00344{left:442.650000px;}
.x122_c00344{left:444.150000px;}
.xaa_c00344{left:446.100000px;}
.xd2_c00344{left:448.500000px;}
.x12b_c00344{left:452.850000px;}
.x12e_c00344{left:457.200000px;}
.x13d_c00344{left:458.400000px;}
.xdb_c00344{left:464.400000px;}
.x108_c00344{left:465.750000px;}
.xd3_c00344{left:466.800000px;}
.x132_c00344{left:469.050000px;}
.x12f_c00344{left:470.100000px;}
.xe9_c00344{left:471.900000px;}
.xf3_c00344{left:473.400000px;}
.x11d_c00344{left:474.450000px;}
.xbb_c00344{left:478.350000px;}
.x10c_c00344{left:480.600000px;}
.xab_c00344{left:482.400000px;}
.x110_c00344{left:484.200000px;}
.x134_c00344{left:486.000000px;}
.xb1_c00344{left:487.500000px;}
.xdf_c00344{left:488.550000px;}
.x100_c00344{left:491.850000px;}
.x10b_c00344{left:492.900000px;}
.x119_c00344{left:493.950000px;}
.xcc_c00344{left:496.800000px;}
.xea_c00344{left:499.200000px;}
.xc6_c00344{left:500.550000px;}
.xb2_c00344{left:502.200000px;}
.x111_c00344{left:504.750000px;}
.xdc_c00344{left:507.900000px;}
.xac_c00344{left:511.200000px;}
.x11e_c00344{left:512.250000px;}
.x104_c00344{left:514.350000px;}
.x11c_c00344{left:518.250000px;}
.xc7_c00344{left:520.350000px;}
.x13e_c00344{left:521.700000px;}
.x11a_c00344{left:525.300000px;}
.xe0_c00344{left:527.100000px;}
.xd4_c00344{left:529.050000px;}
.x12c_c00344{left:530.250000px;}
.xf8_c00344{left:531.450000px;}
.xc0_c00344{left:534.750000px;}
.xf4_c00344{left:538.200000px;}
.xb3_c00344{left:541.050000px;}
.xc8_c00344{left:543.000000px;}
.xeb_c00344{left:544.200000px;}
.x10d_c00344{left:546.000000px;}
.x112_c00344{left:547.650000px;}
.x106_c00344{left:549.450000px;}
.xe1_c00344{left:550.800000px;}
.x123_c00344{left:553.200000px;}
.x126_c00344{left:555.750000px;}
.xbc_c00344{left:558.150000px;}
.xec_c00344{left:560.100000px;}
.xc9_c00344{left:563.100000px;}
.xf1_c00344{left:565.050000px;}
.xad_c00344{left:566.250000px;}
.x113_c00344{left:568.200000px;}
.xb4_c00344{left:570.900000px;}
.xfd_c00344{left:574.500000px;}
.xf2_c00344{left:575.550000px;}
.x116_c00344{left:576.900000px;}
.x124_c00344{left:578.100000px;}
.xed_c00344{left:579.150000px;}
.x13c_c00344{left:580.950000px;}
.xd8_c00344{left:582.150000px;}
.xcd_c00344{left:586.050000px;}
.xd5_c00344{left:587.700000px;}
.xdd_c00344{left:589.650000px;}
.xb5_c00344{left:590.700000px;}
.xf5_c00344{left:591.900000px;}
.xe6_c00344{left:595.050000px;}
.x133_c00344{left:597.900000px;}
.xe2_c00344{left:601.950000px;}
.x117_c00344{left:603.150000px;}
.x105_c00344{left:605.850000px;}
.xb6_c00344{left:606.900000px;}
.x127_c00344{left:609.450000px;}
.x139_c00344{left:610.650000px;}
.xbd_c00344{left:612.150000px;}
.xf6_c00344{left:613.800000px;}
.x12d_c00344{left:618.900000px;}
.x121_c00344{left:622.200000px;}
.x101_c00344{left:623.250000px;}
.xc1_c00344{left:624.750000px;}
.xce_c00344{left:626.400000px;}
.x11f_c00344{left:628.200000px;}
.xae_c00344{left:630.000000px;}
.x128_c00344{left:633.750000px;}
.xee_c00344{left:635.700000px;}
.x137_c00344{left:636.900000px;}
.x130_c00344{left:639.600000px;}
.xca_c00344{left:640.800000px;}
.x109_c00344{left:643.050000px;}
.xe7_c00344{left:645.150000px;}
.xf9_c00344{left:646.350000px;}
.xb7_c00344{left:648.600000px;}
.x135_c00344{left:651.000000px;}
.xf7_c00344{left:653.100000px;}
.xb8_c00344{left:657.600000px;}
.xc2_c00344{left:660.000000px;}
.xbe_c00344{left:661.800000px;}
.x13a_c00344{left:663.900000px;}
.xfa_c00344{left:666.150000px;}
.xd9_c00344{left:668.250000px;}
.xd6_c00344{left:669.750000px;}
.xfe_c00344{left:672.150000px;}
.xb9_c00344{left:674.850000px;}
.xe3_c00344{left:676.500000px;}
.xaf_c00344{left:681.900000px;}
.xe8_c00344{left:684.000000px;}
.xcf_c00344{left:685.050000px;}
.x114_c00344{left:687.000000px;}
.x10e_c00344{left:688.650000px;}
.xfb_c00344{left:692.100000px;}
.xef_c00344{left:693.600000px;}
.x138_c00344{left:694.950000px;}
.xff_c00344{left:696.300000px;}
.xbf_c00344{left:698.100000px;}
.xc3_c00344{left:700.350000px;}
.xe4_c00344{left:702.000000px;}
.x13b_c00344{left:703.050000px;}
.xd0_c00344{left:704.100000px;}
.xde_c00344{left:705.600000px;}
.xf0_c00344{left:707.250000px;}
.x10a_c00344{left:709.350000px;}
.x120_c00344{left:711.750000px;}
.x129_c00344{left:712.950000px;}
.xc4_c00344{left:719.100000px;}
.xe5_c00344{left:722.550000px;}
.xfc_c00344{left:726.300000px;}
.x11b_c00344{left:727.350000px;}
.xda_c00344{left:729.150000px;}
.xba_c00344{left:734.250000px;}
.x2_c00344{left:735.600000px;}
.x107_c00344{left:738.000000px;}
.xb0_c00344{left:741.300000px;}
.x12a_c00344{left:744.300000px;}
.xc5_c00344{left:748.950000px;}
.x131_c00344{left:750.900000px;}
.x102_c00344{left:752.250000px;}
.x125_c00344{left:760.650000px;}
.x136_c00344{left:774.600000px;}
.x10f_c00344{left:776.100000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws7_c00344{word-spacing:-10.449790pt;}
.ws9_c00344{word-spacing:-8.990752pt;}
.wsc_c00344{word-spacing:-3.086420pt;}
.ws5_c00344{word-spacing:-0.035939pt;}
.wsd_c00344{word-spacing:0.000000pt;}
.ws6_c00344{word-spacing:5.369532pt;}
.wsa_c00344{word-spacing:5.788253pt;}
.ws8_c00344{word-spacing:6.921348pt;}
.wsb_c00344{word-spacing:11.151515pt;}
.ws3_c00344{word-spacing:22.857143pt;}
.ws4_c00344{word-spacing:26.031746pt;}
.ws0_c00344{word-spacing:31.851852pt;}
.ws2_c00344{word-spacing:53.333333pt;}
.ws1_c00344{word-spacing:60.116959pt;}
._2_c00344{width:49.523810pt;}
._0_c00344{width:62.222222pt;}
._1_c00344{width:65.925926pt;}
.fs5_c00344{font-size:21.333333pt;}
.fs6_c00344{font-size:42.666667pt;}
.fs3_c00344{font-size:48.000000pt;}
.fs2_c00344{font-size:53.333333pt;}
.fs1_c00344{font-size:58.666667pt;}
.fs4_c00344{font-size:64.000000pt;}
.fs0_c00344{font-size:74.666667pt;}
.y0_c00344{bottom:0.000000pt;}
.y37_c00344{bottom:173.733333pt;}
.y64_c00344{bottom:174.133333pt;}
.y63_c00344{bottom:186.933333pt;}
.y36_c00344{bottom:189.733333pt;}
.y62_c00344{bottom:200.000000pt;}
.y34_c00344{bottom:212.400000pt;}
.y61_c00344{bottom:212.533333pt;}
.y60_c00344{bottom:225.333333pt;}
.y33_c00344{bottom:229.066667pt;}
.y5f_c00344{bottom:238.000000pt;}
.y32_c00344{bottom:245.333333pt;}
.y5e_c00344{bottom:251.466667pt;}
.y31_c00344{bottom:261.066667pt;}
.y30_c00344{bottom:276.400000pt;}
.y2f_c00344{bottom:292.133333pt;}
.y5d_c00344{bottom:297.200000pt;}
.y2e_c00344{bottom:308.133333pt;}
.y5c_c00344{bottom:313.200000pt;}
.y2d_c00344{bottom:323.866667pt;}
.y5b_c00344{bottom:331.466667pt;}
.y2c_c00344{bottom:339.600000pt;}
.y5a_c00344{bottom:348.133333pt;}
.y2b_c00344{bottom:355.333333pt;}
.y59_c00344{bottom:364.133333pt;}
.y2a_c00344{bottom:371.333333pt;}
.y58_c00344{bottom:379.466667pt;}
.y29_c00344{bottom:387.066667pt;}
.y57_c00344{bottom:394.800000pt;}
.y28_c00344{bottom:403.066667pt;}
.y56_c00344{bottom:410.533333pt;}
.y27_c00344{bottom:419.066667pt;}
.y55_c00344{bottom:426.533333pt;}
.y26_c00344{bottom:434.400000pt;}
.y54_c00344{bottom:446.400000pt;}
.y25_c00344{bottom:450.666667pt;}
.y53_c00344{bottom:465.866667pt;}
.y24_c00344{bottom:466.400000pt;}
.y23_c00344{bottom:482.133333pt;}
.y52_c00344{bottom:485.466667pt;}
.y22_c00344{bottom:498.400000pt;}
.y51_c00344{bottom:501.466667pt;}
.y21_c00344{bottom:514.133333pt;}
.y20_c00344{bottom:529.866667pt;}
.y50_c00344{bottom:540.800000pt;}
.y1f_c00344{bottom:545.866667pt;}
.y4f_c00344{bottom:556.800000pt;}
.y1e_c00344{bottom:561.866667pt;}
.y4e_c00344{bottom:572.800000pt;}
.y1d_c00344{bottom:577.600000pt;}
.y4d_c00344{bottom:588.400000pt;}
.y1b_c00344{bottom:592.266667pt;}
.y1c_c00344{bottom:596.800000pt;}
.y4c_c00344{bottom:604.400000pt;}
.y1a_c00344{bottom:608.266667pt;}
.y35_c00344{bottom:609.333333pt;}
.y4b_c00344{bottom:620.133333pt;}
.y19_c00344{bottom:621.066667pt;}
.y18_c00344{bottom:635.466667pt;}
.y4a_c00344{bottom:638.400000pt;}
.y17_c00344{bottom:651.466667pt;}
.y16_c00344{bottom:667.466667pt;}
.y49_c00344{bottom:669.066667pt;}
.y15_c00344{bottom:683.200000pt;}
.y48_c00344{bottom:685.066667pt;}
.y14_c00344{bottom:698.933333pt;}
.y47_c00344{bottom:701.066667pt;}
.y13_c00344{bottom:714.933333pt;}
.y46_c00344{bottom:717.066667pt;}
.y12_c00344{bottom:733.866667pt;}
.y45_c00344{bottom:744.933333pt;}
.y11_c00344{bottom:750.133333pt;}
.y44_c00344{bottom:752.266667pt;}
.y10_c00344{bottom:766.133333pt;}
.y43_c00344{bottom:768.000000pt;}
.yf_c00344{bottom:782.133333pt;}
.y42_c00344{bottom:784.000000pt;}
.y41_c00344{bottom:799.333333pt;}
.ye_c00344{bottom:800.933333pt;}
.yd_c00344{bottom:817.600000pt;}
.y40_c00344{bottom:819.200000pt;}
.y3f_c00344{bottom:834.933333pt;}
.yc_c00344{bottom:845.066667pt;}
.yb_c00344{bottom:861.066667pt;}
.y3e_c00344{bottom:865.600000pt;}
.ya_c00344{bottom:877.066667pt;}
.y3d_c00344{bottom:882.266667pt;}
.y9_c00344{bottom:895.733333pt;}
.y8_c00344{bottom:912.666667pt;}
.y7_c00344{bottom:928.666667pt;}
.y3c_c00344{bottom:932.533333pt;}
.y6_c00344{bottom:947.466667pt;}
.y3b_c00344{bottom:948.533333pt;}
.y5_c00344{bottom:963.466667pt;}
.y3a_c00344{bottom:963.866667pt;}
.y4_c00344{bottom:979.733333pt;}
.y39_c00344{bottom:979.866667pt;}
.y3_c00344{bottom:995.466667pt;}
.y38_c00344{bottom:995.866667pt;}
.y2_c00344{bottom:1016.933333pt;}
.y1_c00344{bottom:1020.133333pt;}
.h7_c00344{height:21.333333pt;}
.h8_c00344{height:42.666667pt;}
.h5_c00344{height:48.000000pt;}
.h4_c00344{height:53.333333pt;}
.h3_c00344{height:58.666667pt;}
.h6_c00344{height:64.000000pt;}
.h2_c00344{height:74.666667pt;}
.h1_c00344{height:1125.333333pt;}
.h0_c00344{height:1125.440023pt;}
.w0_c00344{width:853.760009pt;}
.w1_c00344{width:854.000000pt;}
.x0_c00344{left:0.000000pt;}
.xa3_c00344{left:60.933333pt;}
.x1d_c00344{left:62.133333pt;}
.x38_c00344{left:63.066667pt;}
.xa6_c00344{left:64.266667pt;}
.x44_c00344{left:68.533333pt;}
.x7e_c00344{left:69.466667pt;}
.x8b_c00344{left:71.600000pt;}
.xa0_c00344{left:74.533333pt;}
.x6b_c00344{left:75.600000pt;}
.x3_c00344{left:78.400000pt;}
.x4f_c00344{left:79.466667pt;}
.xa8_c00344{left:80.400000pt;}
.x72_c00344{left:88.000000pt;}
.x66_c00344{left:93.200000pt;}
.x3e_c00344{left:94.400000pt;}
.xd_c00344{left:96.933333pt;}
.x50_c00344{left:100.533333pt;}
.x6d_c00344{left:102.400000pt;}
.x39_c00344{left:103.333333pt;}
.x4_c00344{left:104.266667pt;}
.x1b_c00344{left:106.133333pt;}
.x73_c00344{left:107.200000pt;}
.x28_c00344{left:108.533333pt;}
.x7b_c00344{left:110.133333pt;}
.x9b_c00344{left:111.600000pt;}
.x33_c00344{left:113.466667pt;}
.x92_c00344{left:115.200000pt;}
.x1e_c00344{left:116.800000pt;}
.x7f_c00344{left:118.400000pt;}
.x1c_c00344{left:120.533333pt;}
.x81_c00344{left:121.733333pt;}
.x16_c00344{left:123.333333pt;}
.x74_c00344{left:125.066667pt;}
.x8c_c00344{left:126.533333pt;}
.x34_c00344{left:127.866667pt;}
.x9d_c00344{left:129.733333pt;}
.x17_c00344{left:131.600000pt;}
.x1f_c00344{left:133.066667pt;}
.x5_c00344{left:134.400000pt;}
.x51_c00344{left:138.266667pt;}
.x5f_c00344{left:139.733333pt;}
.x79_c00344{left:142.000000pt;}
.x2d_c00344{left:144.400000pt;}
.x6c_c00344{left:146.266667pt;}
.x84_c00344{left:147.866667pt;}
.x3f_c00344{left:148.800000pt;}
.x6e_c00344{left:150.400000pt;}
.x60_c00344{left:151.866667pt;}
.x6_c00344{left:153.333333pt;}
.x8d_c00344{left:155.066667pt;}
.x18_c00344{left:156.933333pt;}
.xa9_c00344{left:158.533333pt;}
.xe_c00344{left:159.600000pt;}
.x52_c00344{left:160.533333pt;}
.x45_c00344{left:162.000000pt;}
.x49_c00344{left:166.000000pt;}
.x6f_c00344{left:167.066667pt;}
.x35_c00344{left:168.533333pt;}
.x25_c00344{left:170.266667pt;}
.xf_c00344{left:173.066667pt;}
.x56_c00344{left:174.800000pt;}
.x75_c00344{left:176.933333pt;}
.x97_c00344{left:178.133333pt;}
.x9f_c00344{left:179.200000pt;}
.x70_c00344{left:180.533333pt;}
.x5a_c00344{left:182.000000pt;}
.x36_c00344{left:184.800000pt;}
.x76_c00344{left:186.800000pt;}
.x2e_c00344{left:189.200000pt;}
.x19_c00344{left:190.266667pt;}
.x61_c00344{left:191.466667pt;}
.x91_c00344{left:192.933333pt;}
.x20_c00344{left:197.066667pt;}
.xa4_c00344{left:199.333333pt;}
.x29_c00344{left:200.666667pt;}
.x5b_c00344{left:202.133333pt;}
.x53_c00344{left:204.400000pt;}
.x3a_c00344{left:207.600000pt;}
.x68_c00344{left:208.933333pt;}
.x46_c00344{left:210.000000pt;}
.x94_c00344{left:212.000000pt;}
.x57_c00344{left:214.133333pt;}
.x40_c00344{left:215.066667pt;}
.x71_c00344{left:216.666667pt;}
.x82_c00344{left:218.133333pt;}
.x7_c00344{left:219.600000pt;}
.x21_c00344{left:221.733333pt;}
.x10_c00344{left:222.933333pt;}
.x9e_c00344{left:224.666667pt;}
.x62_c00344{left:225.733333pt;}
.x41_c00344{left:227.200000pt;}
.x77_c00344{left:228.666667pt;}
.x11_c00344{left:230.000000pt;}
.x3b_c00344{left:231.600000pt;}
.x26_c00344{left:233.733333pt;}
.x99_c00344{left:235.333333pt;}
.x85_c00344{left:236.933333pt;}
.x8_c00344{left:239.066667pt;}
.x8e_c00344{left:240.933333pt;}
.x47_c00344{left:242.000000pt;}
.x7a_c00344{left:242.933333pt;}
.x12_c00344{left:244.666667pt;}
.x5c_c00344{left:246.933333pt;}
.x78_c00344{left:247.866667pt;}
.x42_c00344{left:248.933333pt;}
.xa7_c00344{left:250.800000pt;}
.x87_c00344{left:253.866667pt;}
.x9_c00344{left:255.333333pt;}
.x7c_c00344{left:258.400000pt;}
.x5d_c00344{left:259.466667pt;}
.x7d_c00344{left:262.000000pt;}
.x2f_c00344{left:263.066667pt;}
.x54_c00344{left:265.200000pt;}
.x88_c00344{left:268.933333pt;}
.x1a_c00344{left:271.600000pt;}
.x8f_c00344{left:272.666667pt;}
.x2a_c00344{left:274.266667pt;}
.x93_c00344{left:275.200000pt;}
.x9c_c00344{left:276.400000pt;}
.x30_c00344{left:278.800000pt;}
.x1_c00344{left:279.733333pt;}
.x67_c00344{left:282.533333pt;}
.x13_c00344{left:284.000000pt;}
.x3d_c00344{left:285.066667pt;}
.x4a_c00344{left:286.133333pt;}
.x63_c00344{left:287.466667pt;}
.x98_c00344{left:288.800000pt;}
.x69_c00344{left:289.866667pt;}
.x22_c00344{left:290.933333pt;}
.x58_c00344{left:292.133333pt;}
.x2b_c00344{left:293.733333pt;}
.x4b_c00344{left:295.466667pt;}
.x5e_c00344{left:296.533333pt;}
.x9a_c00344{left:297.466667pt;}
.xa5_c00344{left:298.533333pt;}
.x31_c00344{left:300.933333pt;}
.xa_c00344{left:303.066667pt;}
.x27_c00344{left:304.133333pt;}
.x8a_c00344{left:305.733333pt;}
.x96_c00344{left:307.200000pt;}
.x4c_c00344{left:308.266667pt;}
.x14_c00344{left:310.266667pt;}
.x64_c00344{left:312.133333pt;}
.xa1_c00344{left:314.000000pt;}
.x23_c00344{left:315.200000pt;}
.x55_c00344{left:316.800000pt;}
.x37_c00344{left:318.933333pt;}
.x43_c00344{left:320.000000pt;}
.xb_c00344{left:321.600000pt;}
.x83_c00344{left:324.133333pt;}
.x65_c00344{left:325.200000pt;}
.x89_c00344{left:326.533333pt;}
.x15_c00344{left:327.866667pt;}
.x59_c00344{left:329.866667pt;}
.x32_c00344{left:331.066667pt;}
.xa2_c00344{left:334.533333pt;}
.x86_c00344{left:336.133333pt;}
.x24_c00344{left:337.333333pt;}
.x90_c00344{left:338.266667pt;}
.x48_c00344{left:339.333333pt;}
.x80_c00344{left:341.200000pt;}
.x95_c00344{left:342.666667pt;}
.x2c_c00344{left:344.000000pt;}
.x3c_c00344{left:346.266667pt;}
.x6a_c00344{left:348.533333pt;}
.xc_c00344{left:352.000000pt;}
.x4d_c00344{left:353.333333pt;}
.x4e_c00344{left:359.733333pt;}
.x115_c00344{left:369.600000pt;}
.x118_c00344{left:379.866667pt;}
.xcb_c00344{left:380.800000pt;}
.xd7_c00344{left:382.133333pt;}
.xd1_c00344{left:388.133333pt;}
.x103_c00344{left:393.466667pt;}
.x122_c00344{left:394.800000pt;}
.xaa_c00344{left:396.533333pt;}
.xd2_c00344{left:398.666667pt;}
.x12b_c00344{left:402.533333pt;}
.x12e_c00344{left:406.400000pt;}
.x13d_c00344{left:407.466667pt;}
.xdb_c00344{left:412.800000pt;}
.x108_c00344{left:414.000000pt;}
.xd3_c00344{left:414.933333pt;}
.x132_c00344{left:416.933333pt;}
.x12f_c00344{left:417.866667pt;}
.xe9_c00344{left:419.466667pt;}
.xf3_c00344{left:420.800000pt;}
.x11d_c00344{left:421.733333pt;}
.xbb_c00344{left:425.200000pt;}
.x10c_c00344{left:427.200000pt;}
.xab_c00344{left:428.800000pt;}
.x110_c00344{left:430.400000pt;}
.x134_c00344{left:432.000000pt;}
.xb1_c00344{left:433.333333pt;}
.xdf_c00344{left:434.266667pt;}
.x100_c00344{left:437.200000pt;}
.x10b_c00344{left:438.133333pt;}
.x119_c00344{left:439.066667pt;}
.xcc_c00344{left:441.600000pt;}
.xea_c00344{left:443.733333pt;}
.xc6_c00344{left:444.933333pt;}
.xb2_c00344{left:446.400000pt;}
.x111_c00344{left:448.666667pt;}
.xdc_c00344{left:451.466667pt;}
.xac_c00344{left:454.400000pt;}
.x11e_c00344{left:455.333333pt;}
.x104_c00344{left:457.200000pt;}
.x11c_c00344{left:460.666667pt;}
.xc7_c00344{left:462.533333pt;}
.x13e_c00344{left:463.733333pt;}
.x11a_c00344{left:466.933333pt;}
.xe0_c00344{left:468.533333pt;}
.xd4_c00344{left:470.266667pt;}
.x12c_c00344{left:471.333333pt;}
.xf8_c00344{left:472.400000pt;}
.xc0_c00344{left:475.333333pt;}
.xf4_c00344{left:478.400000pt;}
.xb3_c00344{left:480.933333pt;}
.xc8_c00344{left:482.666667pt;}
.xeb_c00344{left:483.733333pt;}
.x10d_c00344{left:485.333333pt;}
.x112_c00344{left:486.800000pt;}
.x106_c00344{left:488.400000pt;}
.xe1_c00344{left:489.600000pt;}
.x123_c00344{left:491.733333pt;}
.x126_c00344{left:494.000000pt;}
.xbc_c00344{left:496.133333pt;}
.xec_c00344{left:497.866667pt;}
.xc9_c00344{left:500.533333pt;}
.xf1_c00344{left:502.266667pt;}
.xad_c00344{left:503.333333pt;}
.x113_c00344{left:505.066667pt;}
.xb4_c00344{left:507.466667pt;}
.xfd_c00344{left:510.666667pt;}
.xf2_c00344{left:511.600000pt;}
.x116_c00344{left:512.800000pt;}
.x124_c00344{left:513.866667pt;}
.xed_c00344{left:514.800000pt;}
.x13c_c00344{left:516.400000pt;}
.xd8_c00344{left:517.466667pt;}
.xcd_c00344{left:520.933333pt;}
.xd5_c00344{left:522.400000pt;}
.xdd_c00344{left:524.133333pt;}
.xb5_c00344{left:525.066667pt;}
.xf5_c00344{left:526.133333pt;}
.xe6_c00344{left:528.933333pt;}
.x133_c00344{left:531.466667pt;}
.xe2_c00344{left:535.066667pt;}
.x117_c00344{left:536.133333pt;}
.x105_c00344{left:538.533333pt;}
.xb6_c00344{left:539.466667pt;}
.x127_c00344{left:541.733333pt;}
.x139_c00344{left:542.800000pt;}
.xbd_c00344{left:544.133333pt;}
.xf6_c00344{left:545.600000pt;}
.x12d_c00344{left:550.133333pt;}
.x121_c00344{left:553.066667pt;}
.x101_c00344{left:554.000000pt;}
.xc1_c00344{left:555.333333pt;}
.xce_c00344{left:556.800000pt;}
.x11f_c00344{left:558.400000pt;}
.xae_c00344{left:560.000000pt;}
.x128_c00344{left:563.333333pt;}
.xee_c00344{left:565.066667pt;}
.x137_c00344{left:566.133333pt;}
.x130_c00344{left:568.533333pt;}
.xca_c00344{left:569.600000pt;}
.x109_c00344{left:571.600000pt;}
.xe7_c00344{left:573.466667pt;}
.xf9_c00344{left:574.533333pt;}
.xb7_c00344{left:576.533333pt;}
.x135_c00344{left:578.666667pt;}
.xf7_c00344{left:580.533333pt;}
.xb8_c00344{left:584.533333pt;}
.xc2_c00344{left:586.666667pt;}
.xbe_c00344{left:588.266667pt;}
.x13a_c00344{left:590.133333pt;}
.xfa_c00344{left:592.133333pt;}
.xd9_c00344{left:594.000000pt;}
.xd6_c00344{left:595.333333pt;}
.xfe_c00344{left:597.466667pt;}
.xb9_c00344{left:599.866667pt;}
.xe3_c00344{left:601.333333pt;}
.xaf_c00344{left:606.133333pt;}
.xe8_c00344{left:608.000000pt;}
.xcf_c00344{left:608.933333pt;}
.x114_c00344{left:610.666667pt;}
.x10e_c00344{left:612.133333pt;}
.xfb_c00344{left:615.200000pt;}
.xef_c00344{left:616.533333pt;}
.x138_c00344{left:617.733333pt;}
.xff_c00344{left:618.933333pt;}
.xbf_c00344{left:620.533333pt;}
.xc3_c00344{left:622.533333pt;}
.xe4_c00344{left:624.000000pt;}
.x13b_c00344{left:624.933333pt;}
.xd0_c00344{left:625.866667pt;}
.xde_c00344{left:627.200000pt;}
.xf0_c00344{left:628.666667pt;}
.x10a_c00344{left:630.533333pt;}
.x120_c00344{left:632.666667pt;}
.x129_c00344{left:633.733333pt;}
.xc4_c00344{left:639.200000pt;}
.xe5_c00344{left:642.266667pt;}
.xfc_c00344{left:645.600000pt;}
.x11b_c00344{left:646.533333pt;}
.xda_c00344{left:648.133333pt;}
.xba_c00344{left:652.666667pt;}
.x2_c00344{left:653.866667pt;}
.x107_c00344{left:656.000000pt;}
.xb0_c00344{left:658.933333pt;}
.x12a_c00344{left:661.600000pt;}
.xc5_c00344{left:665.733333pt;}
.x131_c00344{left:667.466667pt;}
.x102_c00344{left:668.666667pt;}
.x125_c00344{left:676.133333pt;}
.x136_c00344{left:688.533333pt;}
.x10f_c00344{left:689.866667pt;}
}





/* 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_c00345 {
    display:none;
  }
  .loading-indicator_c00345.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00345 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_c00345 { 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_c00345" -> "#page-container .classname_c00345")
 */
.pf_c00345 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00345 { /* 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_c00345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00345 { /* 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_c00345 { /* 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_c00345 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00345 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00345 {overflow:visible;}
  }
}
.c_c00345 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00345 { /* 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_c00345:after { /* webkit #35443 */
  content: '';
}
.t_c00345:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00345 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 */
}
.__c00345 { /* 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_c00345 { /* info for Javascript */
  display:none;
}
.l_c00345 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00345 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00345 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00345: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_c00345 {
    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_c00345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00345.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_c00345 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00345;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.000000;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;}
.m48_c00345{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m26_c00345{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00345{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.med_c00345{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me1_c00345{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mba_c00345{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m50_c00345{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m124_c00345{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m118_c00345{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m29_c00345{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00345{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me8_c00345{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00345{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00345{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md0_c00345{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00345{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00345{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mae_c00345{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.me0_c00345{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00345{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.me3_c00345{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.me9_c00345{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00345{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00345{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m102_c00345{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00345{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m94_c00345{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00345{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.m127_c00345{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.me5_c00345{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m92_c00345{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.me2_c00345{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m104_c00345{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mea_c00345{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m16_c00345{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m66_c00345{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00345{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.me4_c00345{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.ma_c00345{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m15_c00345{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00345{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00345{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m35_c00345{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m88_c00345{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00345{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m11_c00345{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00345{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00345{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00345{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00345{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00345{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00345{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00345{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00345{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m8_c00345{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m61_c00345{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m68_c00345{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00345{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00345{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00345{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m44_c00345{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md7_c00345{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m18_c00345{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00345{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00345{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00345{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md1_c00345{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m58_c00345{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00345{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00345{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00345{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m55_c00345{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00345{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00345{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m32_c00345{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mce_c00345{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00345{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00345{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m85_c00345{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mde_c00345{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m119_c00345{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m38_c00345{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m45_c00345{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m23_c00345{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00345{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00345{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00345{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m111_c00345{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m76_c00345{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mca_c00345{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m46_c00345{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m20_c00345{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m96_c00345{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m56_c00345{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m43_c00345{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00345{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00345{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m51_c00345{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00345{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.md6_c00345{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00345{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mad_c00345{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m78_c00345{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m30_c00345{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00345{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m74_c00345{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m101_c00345{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.meb_c00345{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m89_c00345{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00345{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m70_c00345{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mef_c00345{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00345{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m28_c00345{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m37_c00345{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00345{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m36_c00345{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m73_c00345{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00345{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m83_c00345{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00345{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00345{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00345{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00345{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00345{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m57_c00345{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md3_c00345{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00345{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00345{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m107_c00345{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00345{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m34_c00345{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m108_c00345{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md8_c00345{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00345{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m31_c00345{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m77_c00345{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m40_c00345{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00345{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00345{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m33_c00345{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m67_c00345{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00345{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m47_c00345{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me7_c00345{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m110_c00345{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00345{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m65_c00345{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m42_c00345{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00345{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00345{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mf_c00345{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m87_c00345{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m69_c00345{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md2_c00345{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00345{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00345{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m79_c00345{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00345{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m49_c00345{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00345{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m84_c00345{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00345{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00345{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m17_c00345{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m120_c00345{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00345{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m27_c00345{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00345{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00345{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00345{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00345{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m95_c00345{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md4_c00345{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00345{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00345{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me_c00345{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m121_c00345{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m91_c00345{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00345{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00345{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00345{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m116_c00345{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m72_c00345{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00345{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00345{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00345{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m53_c00345{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m81_c00345{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00345{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00345{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m128_c00345{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m39_c00345{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00345{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m54_c00345{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00345{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m106_c00345{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m21_c00345{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00345{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m82_c00345{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.maf_c00345{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00345{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00345{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m52_c00345{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00345{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m115_c00345{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00345{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00345{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m71_c00345{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m105_c00345{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md5_c00345{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00345{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00345{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00345{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00345{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00345{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.md_c00345{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m24_c00345{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00345{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00345{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00345{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m22_c00345{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m122_c00345{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00345{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9_c00345{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.maa_c00345{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00345{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00345{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6_c00345{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00345{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m19_c00345{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m63_c00345{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m129_c00345{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m80_c00345{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00345{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7_c00345{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mda_c00345{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00345{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m60_c00345{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m59_c00345{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00345{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m114_c00345{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00345{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m64_c00345{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00345{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m99_c00345{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10_c00345{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mac_c00345{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00345{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me6_c00345{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m123_c00345{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5_c00345{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00345{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00345{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m117_c00345{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m25_c00345{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00345{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m97_c00345{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00345{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mb_c00345{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m12_c00345{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00345{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00345{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m100_c00345{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00345{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m103_c00345{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mc_c00345{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m113_c00345{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00345{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m41_c00345{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m98_c00345{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m4_c00345{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mff_c00345{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00345{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m109_c00345{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00345{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.md9_c00345{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m126_c00345{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00345{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m112_c00345{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m86_c00345{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mab_c00345{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m14_c00345{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00345{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00345{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mee_c00345{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m93_c00345{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00345{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00345{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m75_c00345{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00345{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00345{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m90_c00345{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m62_c00345{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00345{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.m125_c00345{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00345{transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);}
.mec_c00345{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c00345{transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);}
.m13_c00345{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00345{transform:matrix(0.643750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643750,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls0_c00345{letter-spacing:0.000000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{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__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00345{word-spacing:-10.114596px;}
.ws7_c00345{word-spacing:-7.730769px;}
.ws4_c00345{word-spacing:-6.633293px;}
.ws0_c00345{word-spacing:-4.950920px;}
.ws3_c00345{word-spacing:-4.872852px;}
.ws6_c00345{word-spacing:-4.762016px;}
.ws1_c00345{word-spacing:-3.487973px;}
.ws8_c00345{word-spacing:0.000000px;}
.ws5_c00345{word-spacing:541.470588px;}
._0_c00345{width:27.521110px;}
.fc0_c00345{color:transparent;}
.fs2_c00345{font-size:54.000000px;}
.fs3_c00345{font-size:60.000000px;}
.fs0_c00345{font-size:66.000000px;}
.fs4_c00345{font-size:72.000000px;}
.fs1_c00345{font-size:84.000000px;}
.fs5_c00345{font-size:90.000000px;}
.y0_c00345{bottom:0.000000px;}
.y66_c00345{bottom:194.100000px;}
.y56_c00345{bottom:198.000000px;}
.y65_c00345{bottom:208.800000px;}
.y55_c00345{bottom:212.400000px;}
.y64_c00345{bottom:222.750000px;}
.y54_c00345{bottom:226.350000px;}
.y53_c00345{bottom:240.450000px;}
.y63_c00345{bottom:251.250000px;}
.y52_c00345{bottom:254.100000px;}
.y62_c00345{bottom:265.350000px;}
.y51_c00345{bottom:267.450000px;}
.y50_c00345{bottom:281.850000px;}
.y61_c00345{bottom:283.650000px;}
.y60_c00345{bottom:298.050000px;}
.y4f_c00345{bottom:300.600000px;}
.y5f_c00345{bottom:312.450000px;}
.y4e_c00345{bottom:315.300000px;}
.y5e_c00345{bottom:327.150000px;}
.y4d_c00345{bottom:328.650000px;}
.y5d_c00345{bottom:341.550000px;}
.y4c_c00345{bottom:343.050000px;}
.y5c_c00345{bottom:355.950000px;}
.y4b_c00345{bottom:356.700000px;}
.y5b_c00345{bottom:370.350000px;}
.y4a_c00345{bottom:371.100000px;}
.y5a_c00345{bottom:384.750000px;}
.y49_c00345{bottom:385.500000px;}
.y59_c00345{bottom:398.850000px;}
.y2a_c00345{bottom:403.200000px;}
.y58_c00345{bottom:413.250000px;}
.y29_c00345{bottom:417.900000px;}
.y57_c00345{bottom:428.700000px;}
.y28_c00345{bottom:432.150000px;}
.y48_c00345{bottom:445.950000px;}
.y27_c00345{bottom:446.850000px;}
.y47_c00345{bottom:460.050000px;}
.y26_c00345{bottom:461.250000px;}
.y25_c00345{bottom:474.900000px;}
.y24_c00345{bottom:489.600000px;}
.y23_c00345{bottom:503.700000px;}
.y46_c00345{bottom:508.350000px;}
.y45_c00345{bottom:526.350000px;}
.y44_c00345{bottom:544.050000px;}
.y22_c00345{bottom:549.000000px;}
.y43_c00345{bottom:562.050000px;}
.y21_c00345{bottom:571.500000px;}
.y42_c00345{bottom:579.300000px;}
.y20_c00345{bottom:591.000000px;}
.y41_c00345{bottom:601.500000px;}
.y1f_c00345{bottom:609.000000px;}
.y1e_c00345{bottom:626.250000px;}
.y40_c00345{bottom:632.850000px;}
.y1d_c00345{bottom:643.950000px;}
.y3f_c00345{bottom:659.100000px;}
.y1c_c00345{bottom:661.950000px;}
.y1b_c00345{bottom:679.650000px;}
.y3e_c00345{bottom:680.850000px;}
.y1a_c00345{bottom:700.050000px;}
.y3d_c00345{bottom:703.500000px;}
.y19_c00345{bottom:719.850000px;}
.y3c_c00345{bottom:725.400000px;}
.y18_c00345{bottom:737.550000px;}
.y3b_c00345{bottom:747.000000px;}
.y17_c00345{bottom:755.250000px;}
.y3a_c00345{bottom:765.300000px;}
.y16_c00345{bottom:777.150000px;}
.y39_c00345{bottom:786.600000px;}
.y15_c00345{bottom:795.450000px;}
.y38_c00345{bottom:806.100000px;}
.y14_c00345{bottom:813.450000px;}
.y37_c00345{bottom:828.000000px;}
.y13_c00345{bottom:831.450000px;}
.y12_c00345{bottom:849.150000px;}
.y36_c00345{bottom:850.200000px;}
.y11_c00345{bottom:866.850000px;}
.y35_c00345{bottom:868.200000px;}
.y10_c00345{bottom:884.850000px;}
.y34_c00345{bottom:885.900000px;}
.yf_c00345{bottom:902.850000px;}
.y33_c00345{bottom:903.900000px;}
.ye_c00345{bottom:920.550000px;}
.y32_c00345{bottom:932.850000px;}
.yd_c00345{bottom:938.550000px;}
.yc_c00345{bottom:956.250000px;}
.y31_c00345{bottom:968.100000px;}
.yb_c00345{bottom:974.250000px;}
.ya_c00345{bottom:991.950000px;}
.y30_c00345{bottom:997.200000px;}
.y9_c00345{bottom:1009.950000px;}
.y2f_c00345{bottom:1019.100000px;}
.y8_c00345{bottom:1027.200000px;}
.y2e_c00345{bottom:1041.000000px;}
.y7_c00345{bottom:1045.500000px;}
.y6_c00345{bottom:1063.200000px;}
.y2d_c00345{bottom:1065.900000px;}
.y5_c00345{bottom:1080.450000px;}
.y2c_c00345{bottom:1086.450000px;}
.y4_c00345{bottom:1101.300000px;}
.y3_c00345{bottom:1121.400000px;}
.y2b_c00345{bottom:1130.400000px;}
.y1_c00345{bottom:1141.200000px;}
.y2_c00345{bottom:1149.450000px;}
.h4_c00345{height:54.000000px;}
.h5_c00345{height:60.000000px;}
.h2_c00345{height:66.000000px;}
.h6_c00345{height:72.000000px;}
.h3_c00345{height:84.000000px;}
.h7_c00345{height:90.000000px;}
.h1_c00345{height:1270.500000px;}
.h0_c00345{height:1270.799927px;}
.w0_c00345{width:960.480010px;}
.w1_c00345{width:960.750000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:184.650000px;}
.x12_c00345{left:185.850000px;}
.x70_c00345{left:189.750000px;}
.x100_c00345{left:191.400000px;}
.x10a_c00345{left:193.050000px;}
.x26_c00345{left:195.750000px;}
.x118_c00345{left:197.550000px;}
.xc_c00345{left:198.750000px;}
.x115_c00345{left:201.600000px;}
.x3_c00345{left:203.700000px;}
.x1e_c00345{left:205.050000px;}
.x45_c00345{left:206.850000px;}
.x73_c00345{left:207.900000px;}
.x105_c00345{left:210.900000px;}
.x101_c00345{left:211.950000px;}
.x35_c00345{left:214.650000px;}
.x3c_c00345{left:217.950000px;}
.x91_c00345{left:219.000000px;}
.x114_c00345{left:221.400000px;}
.x90_c00345{left:223.050000px;}
.x80_c00345{left:225.750000px;}
.x2e_c00345{left:227.550000px;}
.x7a_c00345{left:228.600000px;}
.x88_c00345{left:229.950000px;}
.x27_c00345{left:231.000000px;}
.xfd_c00345{left:232.950000px;}
.x2f_c00345{left:235.800000px;}
.x4c_c00345{left:237.750000px;}
.x1f_c00345{left:238.950000px;}
.x6d_c00345{left:241.950000px;}
.x36_c00345{left:243.750000px;}
.x13_c00345{left:246.750000px;}
.x10f_c00345{left:248.400000px;}
.x4_c00345{left:249.750000px;}
.x66_c00345{left:250.800000px;}
.xd_c00345{left:252.750000px;}
.x41_c00345{left:254.100000px;}
.x30_c00345{left:255.600000px;}
.x95_c00345{left:258.150000px;}
.x46_c00345{left:260.850000px;}
.x20_c00345{left:263.100000px;}
.x5f_c00345{left:264.150000px;}
.x14_c00345{left:265.500000px;}
.x8e_c00345{left:267.600000px;}
.x5b_c00345{left:269.100000px;}
.x47_c00345{left:270.150000px;}
.xe_c00345{left:271.500000px;}
.x74_c00345{left:273.750000px;}
.x19_c00345{left:275.100000px;}
.x55_c00345{left:277.650000px;}
.x48_c00345{left:280.650000px;}
.x10b_c00345{left:281.700000px;}
.x28_c00345{left:283.200000px;}
.x5_c00345{left:285.000000px;}
.x15_c00345{left:287.100000px;}
.x21_c00345{left:289.050000px;}
.x75_c00345{left:290.250000px;}
.x4f_c00345{left:291.450000px;}
.x3d_c00345{left:294.300000px;}
.x56_c00345{left:297.150000px;}
.x8b_c00345{left:298.800000px;}
.x110_c00345{left:299.850000px;}
.x16_c00345{left:301.200000px;}
.x7f_c00345{left:302.700000px;}
.x6_c00345{left:304.500000px;}
.x84_c00345{left:306.300000px;}
.xf_c00345{left:308.250000px;}
.x29_c00345{left:310.200000px;}
.x6b_c00345{left:312.600000px;}
.x6e_c00345{left:318.600000px;}
.x5c_c00345{left:320.700000px;}
.x37_c00345{left:323.250000px;}
.x49_c00345{left:324.600000px;}
.x50_c00345{left:325.950000px;}
.x31_c00345{left:328.050000px;}
.x8c_c00345{left:329.100000px;}
.x7_c00345{left:330.450000px;}
.x17_c00345{left:333.900000px;}
.x8d_c00345{left:335.850000px;}
.x60_c00345{left:337.500000px;}
.x22_c00345{left:338.700000px;}
.x2a_c00345{left:339.750000px;}
.x57_c00345{left:341.400000px;}
.x92_c00345{left:343.200000px;}
.x10_c00345{left:345.000000px;}
.x38_c00345{left:346.350000px;}
.x63_c00345{left:348.150000px;}
.x76_c00345{left:349.950000px;}
.x1a_c00345{left:351.900000px;}
.x61_c00345{left:353.700000px;}
.x3e_c00345{left:357.300000px;}
.x11_c00345{left:358.650000px;}
.x102_c00345{left:359.850000px;}
.x71_c00345{left:361.500000px;}
.x8_c00345{left:362.850000px;}
.x32_c00345{left:365.100000px;}
.x42_c00345{left:367.500000px;}
.x23_c00345{left:369.000000px;}
.x18_c00345{left:370.950000px;}
.x1b_c00345{left:372.450000px;}
.xfe_c00345{left:374.100000px;}
.x94_c00345{left:375.150000px;}
.x85_c00345{left:376.800000px;}
.x111_c00345{left:378.000000px;}
.x67_c00345{left:381.150000px;}
.x89_c00345{left:383.250000px;}
.x33_c00345{left:385.200000px;}
.x39_c00345{left:386.250000px;}
.x10e_c00345{left:387.300000px;}
.x83_c00345{left:389.400000px;}
.x8f_c00345{left:392.250000px;}
.x2b_c00345{left:393.450000px;}
.x6f_c00345{left:395.250000px;}
.x7b_c00345{left:396.300000px;}
.x58_c00345{left:398.700000px;}
.x51_c00345{left:400.500000px;}
.x4a_c00345{left:405.000000px;}
.x64_c00345{left:407.100000px;}
.x52_c00345{left:409.200000px;}
.x103_c00345{left:410.250000px;}
.x106_c00345{left:414.450000px;}
.x116_c00345{left:415.650000px;}
.x77_c00345{left:417.300000px;}
.x93_c00345{left:418.950000px;}
.x1c_c00345{left:420.300000px;}
.x62_c00345{left:422.100000px;}
.x68_c00345{left:424.350000px;}
.x4d_c00345{left:425.700000px;}
.x2c_c00345{left:427.350000px;}
.x59_c00345{left:429.300000px;}
.x86_c00345{left:430.500000px;}
.x2_c00345{left:433.050000px;}
.x108_c00345{left:434.550000px;}
.x3f_c00345{left:437.250000px;}
.x81_c00345{left:440.850000px;}
.x5d_c00345{left:444.900000px;}
.x7c_c00345{left:446.700000px;}
.x9_c00345{left:448.200000px;}
.x24_c00345{left:450.000000px;}
.x104_c00345{left:453.450000px;}
.x107_c00345{left:455.100000px;}
.x69_c00345{left:456.750000px;}
.x3a_c00345{left:457.950000px;}
.x7d_c00345{left:459.300000px;}
.x10c_c00345{left:462.300000px;}
.x43_c00345{left:463.950000px;}
.x87_c00345{left:465.000000px;}
.x40_c00345{left:467.550000px;}
.x1d_c00345{left:469.950000px;}
.x25_c00345{left:471.900000px;}
.x7e_c00345{left:474.450000px;}
.x78_c00345{left:475.950000px;}
.x53_c00345{left:477.150000px;}
.x3b_c00345{left:479.250000px;}
.x6c_c00345{left:482.400000px;}
.x72_c00345{left:484.050000px;}
.xa_c00345{left:485.250000px;}
.x4b_c00345{left:486.450000px;}
.x5e_c00345{left:489.150000px;}
.xff_c00345{left:490.500000px;}
.x2d_c00345{left:491.550000px;}
.x112_c00345{left:492.750000px;}
.xb_c00345{left:495.000000px;}
.x82_c00345{left:496.950000px;}
.x44_c00345{left:498.450000px;}
.x8a_c00345{left:499.950000px;}
.x34_c00345{left:501.900000px;}
.x54_c00345{left:503.100000px;}
.x5a_c00345{left:508.500000px;}
.x4e_c00345{left:509.550000px;}
.x6a_c00345{left:511.050000px;}
.x10d_c00345{left:513.000000px;}
.x65_c00345{left:515.100000px;}
.x109_c00345{left:517.350000px;}
.x117_c00345{left:518.700000px;}
.x79_c00345{left:521.250000px;}
.x113_c00345{left:523.050000px;}
.x98_c00345{left:543.900000px;}
.xd7_c00345{left:545.700000px;}
.x11c_c00345{left:547.500000px;}
.xd8_c00345{left:549.000000px;}
.xf5_c00345{left:554.100000px;}
.x12d_c00345{left:556.050000px;}
.xf6_c00345{left:561.600000px;}
.xae_c00345{left:562.800000px;}
.xc9_c00345{left:564.000000px;}
.xea_c00345{left:565.200000px;}
.xfb_c00345{left:566.850000px;}
.x136_c00345{left:568.200000px;}
.x120_c00345{left:575.400000px;}
.x9c_c00345{left:579.900000px;}
.xa1_c00345{left:581.250000px;}
.xc2_c00345{left:583.500000px;}
.xe5_c00345{left:586.050000px;}
.xd9_c00345{left:588.600000px;}
.xcb_c00345{left:590.250000px;}
.x12e_c00345{left:591.450000px;}
.x13d_c00345{left:593.100000px;}
.xe2_c00345{left:598.500000px;}
.x127_c00345{left:599.850000px;}
.xf7_c00345{left:600.900000px;}
.xf0_c00345{left:605.550000px;}
.x131_c00345{left:606.600000px;}
.xcc_c00345{left:608.550000px;}
.x96_c00345{left:611.250000px;}
.xbd_c00345{left:614.250000px;}
.xb6_c00345{left:615.300000px;}
.xa7_c00345{left:616.350000px;}
.xc5_c00345{left:621.300000px;}
.xa2_c00345{left:623.400000px;}
.x11d_c00345{left:625.950000px;}
.xcf_c00345{left:628.500000px;}
.xeb_c00345{left:630.000000px;}
.xd4_c00345{left:631.050000px;}
.xcd_c00345{left:638.400000px;}
.xe6_c00345{left:639.750000px;}
.x9d_c00345{left:641.100000px;}
.xb0_c00345{left:642.600000px;}
.xf8_c00345{left:644.850000px;}
.x126_c00345{left:646.350000px;}
.xa3_c00345{left:647.700000px;}
.xa5_c00345{left:649.500000px;}
.xbe_c00345{left:652.350000px;}
.xb7_c00345{left:654.900000px;}
.x119_c00345{left:656.250000px;}
.xa4_c00345{left:659.250000px;}
.xa6_c00345{left:661.800000px;}
.x99_c00345{left:664.200000px;}
.xfc_c00345{left:665.850000px;}
.xd5_c00345{left:670.350000px;}
.x11a_c00345{left:672.150000px;}
.xc3_c00345{left:673.200000px;}
.xb8_c00345{left:675.450000px;}
.xf1_c00345{left:677.550000px;}
.xa8_c00345{left:679.050000px;}
.x128_c00345{left:680.100000px;}
.xc4_c00345{left:682.950000px;}
.x13b_c00345{left:684.450000px;}
.xaf_c00345{left:686.550000px;}
.xd6_c00345{left:689.400000px;}
.xec_c00345{left:690.450000px;}
.xbf_c00345{left:692.250000px;}
.x132_c00345{left:693.750000px;}
.xbc_c00345{left:696.000000px;}
.xce_c00345{left:698.550000px;}
.xf9_c00345{left:699.900000px;}
.xc6_c00345{left:703.800000px;}
.x124_c00345{left:705.150000px;}
.x137_c00345{left:706.350000px;}
.x12b_c00345{left:707.850000px;}
.xb9_c00345{left:709.350000px;}
.xb1_c00345{left:712.800000px;}
.xd0_c00345{left:717.000000px;}
.xda_c00345{left:718.500000px;}
.xa9_c00345{left:720.450000px;}
.xb2_c00345{left:721.800000px;}
.xde_c00345{left:723.150000px;}
.x13c_c00345{left:724.350000px;}
.xca_c00345{left:727.050000px;}
.x9a_c00345{left:729.300000px;}
.xaa_c00345{left:730.500000px;}
.x12f_c00345{left:731.550000px;}
.xe7_c00345{left:735.450000px;}
.xf2_c00345{left:736.500000px;}
.xdf_c00345{left:739.650000px;}
.x121_c00345{left:741.000000px;}
.x97_c00345{left:743.400000px;}
.x9e_c00345{left:745.200000px;}
.xe8_c00345{left:748.050000px;}
.xba_c00345{left:750.750000px;}
.x13e_c00345{left:752.850000px;}
.x11e_c00345{left:753.900000px;}
.xc0_c00345{left:757.050000px;}
.xd1_c00345{left:762.300000px;}
.xc7_c00345{left:764.250000px;}
.x129_c00345{left:766.800000px;}
.xdb_c00345{left:769.650000px;}
.x9b_c00345{left:770.700000px;}
.x122_c00345{left:771.900000px;}
.xab_c00345{left:773.400000px;}
.xd2_c00345{left:774.600000px;}
.xb3_c00345{left:776.100000px;}
.xdc_c00345{left:778.950000px;}
.x138_c00345{left:785.250000px;}
.xbb_c00345{left:786.750000px;}
.x11b_c00345{left:788.400000px;}
.x139_c00345{left:792.600000px;}
.x12c_c00345{left:793.950000px;}
.xac_c00345{left:796.800000px;}
.xe0_c00345{left:798.300000px;}
.x9f_c00345{left:799.500000px;}
.xf3_c00345{left:804.450000px;}
.xed_c00345{left:807.750000px;}
.xd3_c00345{left:808.800000px;}
.xe3_c00345{left:813.750000px;}
.xc1_c00345{left:815.400000px;}
.x13f_c00345{left:820.650000px;}
.xee_c00345{left:823.950000px;}
.x125_c00345{left:825.300000px;}
.x12a_c00345{left:830.550000px;}
.x133_c00345{left:833.850000px;}
.xdd_c00345{left:835.500000px;}
.xa0_c00345{left:838.350000px;}
.x13a_c00345{left:840.750000px;}
.x123_c00345{left:842.700000px;}
.xfa_c00345{left:844.350000px;}
.xad_c00345{left:845.700000px;}
.x134_c00345{left:847.200000px;}
.xb4_c00345{left:848.400000px;}
.x11f_c00345{left:851.850000px;}
.xe1_c00345{left:855.600000px;}
.xb5_c00345{left:858.900000px;}
.xef_c00345{left:865.800000px;}
.xc8_c00345{left:868.950000px;}
.xf4_c00345{left:870.000000px;}
.x135_c00345{left:874.200000px;}
.xe4_c00345{left:875.400000px;}
.xe9_c00345{left:883.050000px;}
.x130_c00345{left:887.100000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws2_c00345{word-spacing:-8.990752pt;}
.ws7_c00345{word-spacing:-6.871795pt;}
.ws4_c00345{word-spacing:-5.896261pt;}
.ws0_c00345{word-spacing:-4.400818pt;}
.ws3_c00345{word-spacing:-4.331424pt;}
.ws6_c00345{word-spacing:-4.232903pt;}
.ws1_c00345{word-spacing:-3.100420pt;}
.ws8_c00345{word-spacing:0.000000pt;}
.ws5_c00345{word-spacing:481.307190pt;}
._0_c00345{width:24.463209pt;}
.fs2_c00345{font-size:48.000000pt;}
.fs3_c00345{font-size:53.333333pt;}
.fs0_c00345{font-size:58.666667pt;}
.fs4_c00345{font-size:64.000000pt;}
.fs1_c00345{font-size:74.666667pt;}
.fs5_c00345{font-size:80.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y66_c00345{bottom:172.533333pt;}
.y56_c00345{bottom:176.000000pt;}
.y65_c00345{bottom:185.600000pt;}
.y55_c00345{bottom:188.800000pt;}
.y64_c00345{bottom:198.000000pt;}
.y54_c00345{bottom:201.200000pt;}
.y53_c00345{bottom:213.733333pt;}
.y63_c00345{bottom:223.333333pt;}
.y52_c00345{bottom:225.866667pt;}
.y62_c00345{bottom:235.866667pt;}
.y51_c00345{bottom:237.733333pt;}
.y50_c00345{bottom:250.533333pt;}
.y61_c00345{bottom:252.133333pt;}
.y60_c00345{bottom:264.933333pt;}
.y4f_c00345{bottom:267.200000pt;}
.y5f_c00345{bottom:277.733333pt;}
.y4e_c00345{bottom:280.266667pt;}
.y5e_c00345{bottom:290.800000pt;}
.y4d_c00345{bottom:292.133333pt;}
.y5d_c00345{bottom:303.600000pt;}
.y4c_c00345{bottom:304.933333pt;}
.y5c_c00345{bottom:316.400000pt;}
.y4b_c00345{bottom:317.066667pt;}
.y5b_c00345{bottom:329.200000pt;}
.y4a_c00345{bottom:329.866667pt;}
.y5a_c00345{bottom:342.000000pt;}
.y49_c00345{bottom:342.666667pt;}
.y59_c00345{bottom:354.533333pt;}
.y2a_c00345{bottom:358.400000pt;}
.y58_c00345{bottom:367.333333pt;}
.y29_c00345{bottom:371.466667pt;}
.y57_c00345{bottom:381.066667pt;}
.y28_c00345{bottom:384.133333pt;}
.y48_c00345{bottom:396.400000pt;}
.y27_c00345{bottom:397.200000pt;}
.y47_c00345{bottom:408.933333pt;}
.y26_c00345{bottom:410.000000pt;}
.y25_c00345{bottom:422.133333pt;}
.y24_c00345{bottom:435.200000pt;}
.y23_c00345{bottom:447.733333pt;}
.y46_c00345{bottom:451.866667pt;}
.y45_c00345{bottom:467.866667pt;}
.y44_c00345{bottom:483.600000pt;}
.y22_c00345{bottom:488.000000pt;}
.y43_c00345{bottom:499.600000pt;}
.y21_c00345{bottom:508.000000pt;}
.y42_c00345{bottom:514.933333pt;}
.y20_c00345{bottom:525.333333pt;}
.y41_c00345{bottom:534.666667pt;}
.y1f_c00345{bottom:541.333333pt;}
.y1e_c00345{bottom:556.666667pt;}
.y40_c00345{bottom:562.533333pt;}
.y1d_c00345{bottom:572.400000pt;}
.y3f_c00345{bottom:585.866667pt;}
.y1c_c00345{bottom:588.400000pt;}
.y1b_c00345{bottom:604.133333pt;}
.y3e_c00345{bottom:605.200000pt;}
.y1a_c00345{bottom:622.266667pt;}
.y3d_c00345{bottom:625.333333pt;}
.y19_c00345{bottom:639.866667pt;}
.y3c_c00345{bottom:644.800000pt;}
.y18_c00345{bottom:655.600000pt;}
.y3b_c00345{bottom:664.000000pt;}
.y17_c00345{bottom:671.333333pt;}
.y3a_c00345{bottom:680.266667pt;}
.y16_c00345{bottom:690.800000pt;}
.y39_c00345{bottom:699.200000pt;}
.y15_c00345{bottom:707.066667pt;}
.y38_c00345{bottom:716.533333pt;}
.y14_c00345{bottom:723.066667pt;}
.y37_c00345{bottom:736.000000pt;}
.y13_c00345{bottom:739.066667pt;}
.y12_c00345{bottom:754.800000pt;}
.y36_c00345{bottom:755.733333pt;}
.y11_c00345{bottom:770.533333pt;}
.y35_c00345{bottom:771.733333pt;}
.y10_c00345{bottom:786.533333pt;}
.y34_c00345{bottom:787.466667pt;}
.yf_c00345{bottom:802.533333pt;}
.y33_c00345{bottom:803.466667pt;}
.ye_c00345{bottom:818.266667pt;}
.y32_c00345{bottom:829.200000pt;}
.yd_c00345{bottom:834.266667pt;}
.yc_c00345{bottom:850.000000pt;}
.y31_c00345{bottom:860.533333pt;}
.yb_c00345{bottom:866.000000pt;}
.ya_c00345{bottom:881.733333pt;}
.y30_c00345{bottom:886.400000pt;}
.y9_c00345{bottom:897.733333pt;}
.y2f_c00345{bottom:905.866667pt;}
.y8_c00345{bottom:913.066667pt;}
.y2e_c00345{bottom:925.333333pt;}
.y7_c00345{bottom:929.333333pt;}
.y6_c00345{bottom:945.066667pt;}
.y2d_c00345{bottom:947.466667pt;}
.y5_c00345{bottom:960.400000pt;}
.y2c_c00345{bottom:965.733333pt;}
.y4_c00345{bottom:978.933333pt;}
.y3_c00345{bottom:996.800000pt;}
.y2b_c00345{bottom:1004.800000pt;}
.y1_c00345{bottom:1014.400000pt;}
.y2_c00345{bottom:1021.733333pt;}
.h4_c00345{height:48.000000pt;}
.h5_c00345{height:53.333333pt;}
.h2_c00345{height:58.666667pt;}
.h6_c00345{height:64.000000pt;}
.h3_c00345{height:74.666667pt;}
.h7_c00345{height:80.000000pt;}
.h1_c00345{height:1129.333333pt;}
.h0_c00345{height:1129.599935pt;}
.w0_c00345{width:853.760009pt;}
.w1_c00345{width:854.000000pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:164.133333pt;}
.x12_c00345{left:165.200000pt;}
.x70_c00345{left:168.666667pt;}
.x100_c00345{left:170.133333pt;}
.x10a_c00345{left:171.600000pt;}
.x26_c00345{left:174.000000pt;}
.x118_c00345{left:175.600000pt;}
.xc_c00345{left:176.666667pt;}
.x115_c00345{left:179.200000pt;}
.x3_c00345{left:181.066667pt;}
.x1e_c00345{left:182.266667pt;}
.x45_c00345{left:183.866667pt;}
.x73_c00345{left:184.800000pt;}
.x105_c00345{left:187.466667pt;}
.x101_c00345{left:188.400000pt;}
.x35_c00345{left:190.800000pt;}
.x3c_c00345{left:193.733333pt;}
.x91_c00345{left:194.666667pt;}
.x114_c00345{left:196.800000pt;}
.x90_c00345{left:198.266667pt;}
.x80_c00345{left:200.666667pt;}
.x2e_c00345{left:202.266667pt;}
.x7a_c00345{left:203.200000pt;}
.x88_c00345{left:204.400000pt;}
.x27_c00345{left:205.333333pt;}
.xfd_c00345{left:207.066667pt;}
.x2f_c00345{left:209.600000pt;}
.x4c_c00345{left:211.333333pt;}
.x1f_c00345{left:212.400000pt;}
.x6d_c00345{left:215.066667pt;}
.x36_c00345{left:216.666667pt;}
.x13_c00345{left:219.333333pt;}
.x10f_c00345{left:220.800000pt;}
.x4_c00345{left:222.000000pt;}
.x66_c00345{left:222.933333pt;}
.xd_c00345{left:224.666667pt;}
.x41_c00345{left:225.866667pt;}
.x30_c00345{left:227.200000pt;}
.x95_c00345{left:229.466667pt;}
.x46_c00345{left:231.866667pt;}
.x20_c00345{left:233.866667pt;}
.x5f_c00345{left:234.800000pt;}
.x14_c00345{left:236.000000pt;}
.x8e_c00345{left:237.866667pt;}
.x5b_c00345{left:239.200000pt;}
.x47_c00345{left:240.133333pt;}
.xe_c00345{left:241.333333pt;}
.x74_c00345{left:243.333333pt;}
.x19_c00345{left:244.533333pt;}
.x55_c00345{left:246.800000pt;}
.x48_c00345{left:249.466667pt;}
.x10b_c00345{left:250.400000pt;}
.x28_c00345{left:251.733333pt;}
.x5_c00345{left:253.333333pt;}
.x15_c00345{left:255.200000pt;}
.x21_c00345{left:256.933333pt;}
.x75_c00345{left:258.000000pt;}
.x4f_c00345{left:259.066667pt;}
.x3d_c00345{left:261.600000pt;}
.x56_c00345{left:264.133333pt;}
.x8b_c00345{left:265.600000pt;}
.x110_c00345{left:266.533333pt;}
.x16_c00345{left:267.733333pt;}
.x7f_c00345{left:269.066667pt;}
.x6_c00345{left:270.666667pt;}
.x84_c00345{left:272.266667pt;}
.xf_c00345{left:274.000000pt;}
.x29_c00345{left:275.733333pt;}
.x6b_c00345{left:277.866667pt;}
.x6e_c00345{left:283.200000pt;}
.x5c_c00345{left:285.066667pt;}
.x37_c00345{left:287.333333pt;}
.x49_c00345{left:288.533333pt;}
.x50_c00345{left:289.733333pt;}
.x31_c00345{left:291.600000pt;}
.x8c_c00345{left:292.533333pt;}
.x7_c00345{left:293.733333pt;}
.x17_c00345{left:296.800000pt;}
.x8d_c00345{left:298.533333pt;}
.x60_c00345{left:300.000000pt;}
.x22_c00345{left:301.066667pt;}
.x2a_c00345{left:302.000000pt;}
.x57_c00345{left:303.466667pt;}
.x92_c00345{left:305.066667pt;}
.x10_c00345{left:306.666667pt;}
.x38_c00345{left:307.866667pt;}
.x63_c00345{left:309.466667pt;}
.x76_c00345{left:311.066667pt;}
.x1a_c00345{left:312.800000pt;}
.x61_c00345{left:314.400000pt;}
.x3e_c00345{left:317.600000pt;}
.x11_c00345{left:318.800000pt;}
.x102_c00345{left:319.866667pt;}
.x71_c00345{left:321.333333pt;}
.x8_c00345{left:322.533333pt;}
.x32_c00345{left:324.533333pt;}
.x42_c00345{left:326.666667pt;}
.x23_c00345{left:328.000000pt;}
.x18_c00345{left:329.733333pt;}
.x1b_c00345{left:331.066667pt;}
.xfe_c00345{left:332.533333pt;}
.x94_c00345{left:333.466667pt;}
.x85_c00345{left:334.933333pt;}
.x111_c00345{left:336.000000pt;}
.x67_c00345{left:338.800000pt;}
.x89_c00345{left:340.666667pt;}
.x33_c00345{left:342.400000pt;}
.x39_c00345{left:343.333333pt;}
.x10e_c00345{left:344.266667pt;}
.x83_c00345{left:346.133333pt;}
.x8f_c00345{left:348.666667pt;}
.x2b_c00345{left:349.733333pt;}
.x6f_c00345{left:351.333333pt;}
.x7b_c00345{left:352.266667pt;}
.x58_c00345{left:354.400000pt;}
.x51_c00345{left:356.000000pt;}
.x4a_c00345{left:360.000000pt;}
.x64_c00345{left:361.866667pt;}
.x52_c00345{left:363.733333pt;}
.x103_c00345{left:364.666667pt;}
.x106_c00345{left:368.400000pt;}
.x116_c00345{left:369.466667pt;}
.x77_c00345{left:370.933333pt;}
.x93_c00345{left:372.400000pt;}
.x1c_c00345{left:373.600000pt;}
.x62_c00345{left:375.200000pt;}
.x68_c00345{left:377.200000pt;}
.x4d_c00345{left:378.400000pt;}
.x2c_c00345{left:379.866667pt;}
.x59_c00345{left:381.600000pt;}
.x86_c00345{left:382.666667pt;}
.x2_c00345{left:384.933333pt;}
.x108_c00345{left:386.266667pt;}
.x3f_c00345{left:388.666667pt;}
.x81_c00345{left:391.866667pt;}
.x5d_c00345{left:395.466667pt;}
.x7c_c00345{left:397.066667pt;}
.x9_c00345{left:398.400000pt;}
.x24_c00345{left:400.000000pt;}
.x104_c00345{left:403.066667pt;}
.x107_c00345{left:404.533333pt;}
.x69_c00345{left:406.000000pt;}
.x3a_c00345{left:407.066667pt;}
.x7d_c00345{left:408.266667pt;}
.x10c_c00345{left:410.933333pt;}
.x43_c00345{left:412.400000pt;}
.x87_c00345{left:413.333333pt;}
.x40_c00345{left:415.600000pt;}
.x1d_c00345{left:417.733333pt;}
.x25_c00345{left:419.466667pt;}
.x7e_c00345{left:421.733333pt;}
.x78_c00345{left:423.066667pt;}
.x53_c00345{left:424.133333pt;}
.x3b_c00345{left:426.000000pt;}
.x6c_c00345{left:428.800000pt;}
.x72_c00345{left:430.266667pt;}
.xa_c00345{left:431.333333pt;}
.x4b_c00345{left:432.400000pt;}
.x5e_c00345{left:434.800000pt;}
.xff_c00345{left:436.000000pt;}
.x2d_c00345{left:436.933333pt;}
.x112_c00345{left:438.000000pt;}
.xb_c00345{left:440.000000pt;}
.x82_c00345{left:441.733333pt;}
.x44_c00345{left:443.066667pt;}
.x8a_c00345{left:444.400000pt;}
.x34_c00345{left:446.133333pt;}
.x54_c00345{left:447.200000pt;}
.x5a_c00345{left:452.000000pt;}
.x4e_c00345{left:452.933333pt;}
.x6a_c00345{left:454.266667pt;}
.x10d_c00345{left:456.000000pt;}
.x65_c00345{left:457.866667pt;}
.x109_c00345{left:459.866667pt;}
.x117_c00345{left:461.066667pt;}
.x79_c00345{left:463.333333pt;}
.x113_c00345{left:464.933333pt;}
.x98_c00345{left:483.466667pt;}
.xd7_c00345{left:485.066667pt;}
.x11c_c00345{left:486.666667pt;}
.xd8_c00345{left:488.000000pt;}
.xf5_c00345{left:492.533333pt;}
.x12d_c00345{left:494.266667pt;}
.xf6_c00345{left:499.200000pt;}
.xae_c00345{left:500.266667pt;}
.xc9_c00345{left:501.333333pt;}
.xea_c00345{left:502.400000pt;}
.xfb_c00345{left:503.866667pt;}
.x136_c00345{left:505.066667pt;}
.x120_c00345{left:511.466667pt;}
.x9c_c00345{left:515.466667pt;}
.xa1_c00345{left:516.666667pt;}
.xc2_c00345{left:518.666667pt;}
.xe5_c00345{left:520.933333pt;}
.xd9_c00345{left:523.200000pt;}
.xcb_c00345{left:524.666667pt;}
.x12e_c00345{left:525.733333pt;}
.x13d_c00345{left:527.200000pt;}
.xe2_c00345{left:532.000000pt;}
.x127_c00345{left:533.200000pt;}
.xf7_c00345{left:534.133333pt;}
.xf0_c00345{left:538.266667pt;}
.x131_c00345{left:539.200000pt;}
.xcc_c00345{left:540.933333pt;}
.x96_c00345{left:543.333333pt;}
.xbd_c00345{left:546.000000pt;}
.xb6_c00345{left:546.933333pt;}
.xa7_c00345{left:547.866667pt;}
.xc5_c00345{left:552.266667pt;}
.xa2_c00345{left:554.133333pt;}
.x11d_c00345{left:556.400000pt;}
.xcf_c00345{left:558.666667pt;}
.xeb_c00345{left:560.000000pt;}
.xd4_c00345{left:560.933333pt;}
.xcd_c00345{left:567.466667pt;}
.xe6_c00345{left:568.666667pt;}
.x9d_c00345{left:569.866667pt;}
.xb0_c00345{left:571.200000pt;}
.xf8_c00345{left:573.200000pt;}
.x126_c00345{left:574.533333pt;}
.xa3_c00345{left:575.733333pt;}
.xa5_c00345{left:577.333333pt;}
.xbe_c00345{left:579.866667pt;}
.xb7_c00345{left:582.133333pt;}
.x119_c00345{left:583.333333pt;}
.xa4_c00345{left:586.000000pt;}
.xa6_c00345{left:588.266667pt;}
.x99_c00345{left:590.400000pt;}
.xfc_c00345{left:591.866667pt;}
.xd5_c00345{left:595.866667pt;}
.x11a_c00345{left:597.466667pt;}
.xc3_c00345{left:598.400000pt;}
.xb8_c00345{left:600.400000pt;}
.xf1_c00345{left:602.266667pt;}
.xa8_c00345{left:603.600000pt;}
.x128_c00345{left:604.533333pt;}
.xc4_c00345{left:607.066667pt;}
.x13b_c00345{left:608.400000pt;}
.xaf_c00345{left:610.266667pt;}
.xd6_c00345{left:612.800000pt;}
.xec_c00345{left:613.733333pt;}
.xbf_c00345{left:615.333333pt;}
.x132_c00345{left:616.666667pt;}
.xbc_c00345{left:618.666667pt;}
.xce_c00345{left:620.933333pt;}
.xf9_c00345{left:622.133333pt;}
.xc6_c00345{left:625.600000pt;}
.x124_c00345{left:626.800000pt;}
.x137_c00345{left:627.866667pt;}
.x12b_c00345{left:629.200000pt;}
.xb9_c00345{left:630.533333pt;}
.xb1_c00345{left:633.600000pt;}
.xd0_c00345{left:637.333333pt;}
.xda_c00345{left:638.666667pt;}
.xa9_c00345{left:640.400000pt;}
.xb2_c00345{left:641.600000pt;}
.xde_c00345{left:642.800000pt;}
.x13c_c00345{left:643.866667pt;}
.xca_c00345{left:646.266667pt;}
.x9a_c00345{left:648.266667pt;}
.xaa_c00345{left:649.333333pt;}
.x12f_c00345{left:650.266667pt;}
.xe7_c00345{left:653.733333pt;}
.xf2_c00345{left:654.666667pt;}
.xdf_c00345{left:657.466667pt;}
.x121_c00345{left:658.666667pt;}
.x97_c00345{left:660.800000pt;}
.x9e_c00345{left:662.400000pt;}
.xe8_c00345{left:664.933333pt;}
.xba_c00345{left:667.333333pt;}
.x13e_c00345{left:669.200000pt;}
.x11e_c00345{left:670.133333pt;}
.xc0_c00345{left:672.933333pt;}
.xd1_c00345{left:677.600000pt;}
.xc7_c00345{left:679.333333pt;}
.x129_c00345{left:681.600000pt;}
.xdb_c00345{left:684.133333pt;}
.x9b_c00345{left:685.066667pt;}
.x122_c00345{left:686.133333pt;}
.xab_c00345{left:687.466667pt;}
.xd2_c00345{left:688.533333pt;}
.xb3_c00345{left:689.866667pt;}
.xdc_c00345{left:692.400000pt;}
.x138_c00345{left:698.000000pt;}
.xbb_c00345{left:699.333333pt;}
.x11b_c00345{left:700.800000pt;}
.x139_c00345{left:704.533333pt;}
.x12c_c00345{left:705.733333pt;}
.xac_c00345{left:708.266667pt;}
.xe0_c00345{left:709.600000pt;}
.x9f_c00345{left:710.666667pt;}
.xf3_c00345{left:715.066667pt;}
.xed_c00345{left:718.000000pt;}
.xd3_c00345{left:718.933333pt;}
.xe3_c00345{left:723.333333pt;}
.xc1_c00345{left:724.800000pt;}
.x13f_c00345{left:729.466667pt;}
.xee_c00345{left:732.400000pt;}
.x125_c00345{left:733.600000pt;}
.x12a_c00345{left:738.266667pt;}
.x133_c00345{left:741.200000pt;}
.xdd_c00345{left:742.666667pt;}
.xa0_c00345{left:745.200000pt;}
.x13a_c00345{left:747.333333pt;}
.x123_c00345{left:749.066667pt;}
.xfa_c00345{left:750.533333pt;}
.xad_c00345{left:751.733333pt;}
.x134_c00345{left:753.066667pt;}
.xb4_c00345{left:754.133333pt;}
.x11f_c00345{left:757.200000pt;}
.xe1_c00345{left:760.533333pt;}
.xb5_c00345{left:763.466667pt;}
.xef_c00345{left:769.600000pt;}
.xc8_c00345{left:772.400000pt;}
.xf4_c00345{left:773.333333pt;}
.x135_c00345{left:777.066667pt;}
.xe4_c00345{left:778.133333pt;}
.xe9_c00345{left:784.933333pt;}
.x130_c00345{left:788.533333pt;}
}





/* 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_c00346 {
    display:none;
  }
  .loading-indicator_c00346.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00346 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_c00346 { 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_c00346" -> "#page-container .classname_c00346")
 */
.pf_c00346 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00346 { /* 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_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00346 { /* 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_c00346 { /* 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_c00346 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00346 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00346 {overflow:visible;}
  }
}
.c_c00346 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00346 { /* 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_c00346:after { /* webkit #35443 */
  content: '';
}
.t_c00346:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00346 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 */
}
.__c00346 { /* 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_c00346 { /* info for Javascript */
  display:none;
}
.l_c00346 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00346 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00346 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00346: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_c00346 {
    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_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00346.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_c00346 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00346;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.000000;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;}
.mf1_c00346{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.me9_c00346{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m45_c00346{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00346{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m50_c00346{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m37_c00346{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m79_c00346{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m93_c00346{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m43_c00346{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00346{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m46_c00346{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00346{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00346{transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00346{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.md9_c00346{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00346{transform:matrix(0.118000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118000,0.000000,0.000000,0.250000,0,0);}
.m42_c00346{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mca_c00346{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00346{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m6_c00346{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.md6_c00346{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m38_c00346{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m51_c00346{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.meb_c00346{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00346{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m56_c00346{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mea_c00346{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.mad_c00346{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00346{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00346{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma_c00346{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m66_c00346{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00346{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m32_c00346{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m109_c00346{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00346{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00346{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m108_c00346{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m14_c00346{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m23_c00346{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00346{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.me0_c00346{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00346{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mce_c00346{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m59_c00346{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m68_c00346{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00346{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m94_c00346{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md0_c00346{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m103_c00346{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00346{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m27_c00346{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m80_c00346{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me8_c00346{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00346{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mff_c00346{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00346{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00346{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00346{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mec_c00346{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m72_c00346{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00346{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m35_c00346{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00346{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mc_c00346{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00346{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m24_c00346{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00346{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mae_c00346{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00346{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00346{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mba_c00346{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m89_c00346{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00346{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m13_c00346{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md8_c00346{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00346{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me3_c00346{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00346{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m40_c00346{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m78_c00346{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00346{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mab_c00346{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m12_c00346{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m90_c00346{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m20_c00346{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m9_c00346{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m67_c00346{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.md4_c00346{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m7_c00346{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m52_c00346{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00346{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00346{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00346{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00346{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m85_c00346{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00346{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00346{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m48_c00346{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00346{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m87_c00346{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mac_c00346{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00346{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00346{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m95_c00346{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00346{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.maf_c00346{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00346{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m100_c00346{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00346{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m33_c00346{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m76_c00346{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m83_c00346{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m84_c00346{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m91_c00346{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00346{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00346{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00346{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m15_c00346{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00346{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m26_c00346{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m41_c00346{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00346{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m105_c00346{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m82_c00346{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00346{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mf_c00346{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00346{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00346{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00346{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md5_c00346{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m101_c00346{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00346{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00346{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00346{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00346{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00346{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00346{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00346{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00346{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m19_c00346{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m81_c00346{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00346{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00346{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m62_c00346{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00346{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m92_c00346{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00346{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00346{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00346{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m98_c00346{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00346{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00346{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.me7_c00346{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m34_c00346{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00346{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m106_c00346{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m74_c00346{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00346{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00346{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00346{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m22_c00346{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m18_c00346{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m86_c00346{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m107_c00346{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00346{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00346{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.maa_c00346{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00346{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00346{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m25_c00346{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m96_c00346{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00346{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00346{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m77_c00346{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10_c00346{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00346{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00346{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m88_c00346{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m11_c00346{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00346{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00346{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m49_c00346{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00346{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m71_c00346{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m31_c00346{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m73_c00346{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00346{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m70_c00346{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m44_c00346{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m97_c00346{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m99_c00346{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00346{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00346{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00346{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00346{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m102_c00346{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00346{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00346{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me4_c00346{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mee_c00346{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00346{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.md_c00346{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me6_c00346{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m39_c00346{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md2_c00346{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m28_c00346{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m75_c00346{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00346{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00346{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m21_c00346{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00346{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m36_c00346{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00346{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md7_c00346{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00346{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00346{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.md3_c00346{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m47_c00346{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m29_c00346{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m64_c00346{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00346{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00346{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mda_c00346{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.me2_c00346{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00346{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00346{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m17_c00346{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00346{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4_c00346{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me1_c00346{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.md1_c00346{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m69_c00346{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00346{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00346{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m104_c00346{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.me5_c00346{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00346{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00346{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00346{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb_c00346{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m54_c00346{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00346{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00346{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m61_c00346{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m5_c00346{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00346{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m60_c00346{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00346{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00346{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m57_c00346{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00346{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00346{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00346{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m65_c00346{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.med_c00346{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.mde_c00346{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m55_c00346{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m53_c00346{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00346{transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00346{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m63_c00346{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m30_c00346{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m58_c00346{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.mef_c00346{transform:matrix(0.643750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643750,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls1_c00346{letter-spacing:0.000000px;}
.ls0_c00346{letter-spacing:55.714286px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{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__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00346{word-spacing:-85.714286px;}
.ws0_c00346{word-spacing:-24.250000px;}
.ws1_c00346{word-spacing:-11.538462px;}
.wsb_c00346{word-spacing:-3.000000px;}
.wse_c00346{word-spacing:0.000000px;}
.ws9_c00346{word-spacing:10.071429px;}
.ws5_c00346{word-spacing:11.875000px;}
.wsd_c00346{word-spacing:12.486911px;}
.ws2_c00346{word-spacing:15.000000px;}
.wsa_c00346{word-spacing:15.428571px;}
.wsc_c00346{word-spacing:17.323699px;}
.ws4_c00346{word-spacing:22.142857px;}
.ws6_c00346{word-spacing:23.211796px;}
.ws7_c00346{word-spacing:25.714286px;}
.ws8_c00346{word-spacing:124.615385px;}
._0_c00346{margin-left:-55.714286px;}
._1_c00346{width:45.000000px;}
._3_c00346{width:52.142857px;}
._2_c00346{width:53.428954px;}
._4_c00346{width:59.285714px;}
.fc0_c00346{color:transparent;}
.fs7_c00346{font-size:30.000000px;}
.fs5_c00346{font-size:36.000000px;}
.fs3_c00346{font-size:54.000000px;}
.fs4_c00346{font-size:60.000000px;}
.fs2_c00346{font-size:66.000000px;}
.fs1_c00346{font-size:72.000000px;}
.fs8_c00346{font-size:78.000000px;}
.fs6_c00346{font-size:84.000000px;}
.fs0_c00346{font-size:108.000000px;}
.y0_c00346{bottom:0.000000px;}
.y67_c00346{bottom:192.900000px;}
.y3a_c00346{bottom:195.600000px;}
.y66_c00346{bottom:208.350000px;}
.y39_c00346{bottom:213.900000px;}
.y65_c00346{bottom:222.450000px;}
.y38_c00346{bottom:235.650000px;}
.y37_c00346{bottom:253.350000px;}
.y64_c00346{bottom:267.900000px;}
.y36_c00346{bottom:271.650000px;}
.y63_c00346{bottom:285.900000px;}
.y35_c00346{bottom:288.900000px;}
.y34_c00346{bottom:306.900000px;}
.y62_c00346{bottom:308.100000px;}
.y33_c00346{bottom:324.600000px;}
.y61_c00346{bottom:329.400000px;}
.y32_c00346{bottom:342.600000px;}
.y60_c00346{bottom:347.400000px;}
.y31_c00346{bottom:360.300000px;}
.y5f_c00346{bottom:365.400000px;}
.y30_c00346{bottom:378.300000px;}
.y5e_c00346{bottom:386.700000px;}
.y2f_c00346{bottom:396.000000px;}
.y5d_c00346{bottom:407.850000px;}
.y2e_c00346{bottom:413.700000px;}
.y5c_c00346{bottom:430.200000px;}
.y2d_c00346{bottom:431.400000px;}
.y2c_c00346{bottom:449.400000px;}
.y5b_c00346{bottom:452.550000px;}
.y2b_c00346{bottom:467.400000px;}
.y5a_c00346{bottom:474.750000px;}
.y2a_c00346{bottom:485.100000px;}
.y59_c00346{bottom:492.750000px;}
.y29_c00346{bottom:502.800000px;}
.y58_c00346{bottom:510.750000px;}
.y28_c00346{bottom:521.100000px;}
.y57_c00346{bottom:528.450000px;}
.y27_c00346{bottom:539.100000px;}
.y56_c00346{bottom:550.800000px;}
.y26_c00346{bottom:556.800000px;}
.y55_c00346{bottom:568.800000px;}
.y25_c00346{bottom:574.800000px;}
.y54_c00346{bottom:586.800000px;}
.y24_c00346{bottom:592.800000px;}
.y23_c00346{bottom:610.500000px;}
.y53_c00346{bottom:615.150000px;}
.y22_c00346{bottom:640.050000px;}
.y52_c00346{bottom:641.100000px;}
.y21_c00346{bottom:646.500000px;}
.y20_c00346{bottom:663.900000px;}
.y51_c00346{bottom:667.800000px;}
.y1f_c00346{bottom:681.900000px;}
.y50_c00346{bottom:690.000000px;}
.y1e_c00346{bottom:699.900000px;}
.y4f_c00346{bottom:712.350000px;}
.y1d_c00346{bottom:717.900000px;}
.y4e_c00346{bottom:734.700000px;}
.y1c_c00346{bottom:735.600000px;}
.y1b_c00346{bottom:753.300000px;}
.y4d_c00346{bottom:769.350000px;}
.y1a_c00346{bottom:771.000000px;}
.y19_c00346{bottom:788.700000px;}
.y4c_c00346{bottom:804.900000px;}
.y17_c00346{bottom:813.900000px;}
.y4b_c00346{bottom:822.900000px;}
.y18_c00346{bottom:828.300000px;}
.y16_c00346{bottom:829.050000px;}
.y4a_c00346{bottom:840.600000px;}
.y15_c00346{bottom:843.450000px;}
.y14_c00346{bottom:858.000000px;}
.y49_c00346{bottom:862.200000px;}
.y13_c00346{bottom:872.400000px;}
.y48_c00346{bottom:880.200000px;}
.y12_c00346{bottom:887.100000px;}
.y47_c00346{bottom:897.900000px;}
.y11_c00346{bottom:901.500000px;}
.y46_c00346{bottom:915.600000px;}
.y10_c00346{bottom:915.900000px;}
.yf_c00346{bottom:930.000000px;}
.y45_c00346{bottom:933.600000px;}
.ye_c00346{bottom:944.400000px;}
.y44_c00346{bottom:950.850000px;}
.yd_c00346{bottom:958.800000px;}
.y43_c00346{bottom:968.550000px;}
.yc_c00346{bottom:973.200000px;}
.y42_c00346{bottom:986.550000px;}
.yb_c00346{bottom:987.900000px;}
.ya_c00346{bottom:1002.000000px;}
.y41_c00346{bottom:1004.550000px;}
.y9_c00346{bottom:1016.700000px;}
.y40_c00346{bottom:1022.250000px;}
.y8_c00346{bottom:1031.100000px;}
.y3f_c00346{bottom:1039.950000px;}
.y7_c00346{bottom:1055.100000px;}
.y3e_c00346{bottom:1057.650000px;}
.y6_c00346{bottom:1072.800000px;}
.y3d_c00346{bottom:1075.650000px;}
.y3c_c00346{bottom:1097.250000px;}
.y5_c00346{bottom:1099.800000px;}
.y3b_c00346{bottom:1115.250000px;}
.y4_c00346{bottom:1117.050000px;}
.y3_c00346{bottom:1117.500000px;}
.y2_c00346{bottom:1139.400000px;}
.y1_c00346{bottom:1143.000000px;}
.h9_c00346{height:30.000000px;}
.h7_c00346{height:36.000000px;}
.h5_c00346{height:54.000000px;}
.h6_c00346{height:60.000000px;}
.h4_c00346{height:66.000000px;}
.h3_c00346{height:72.000000px;}
.ha_c00346{height:78.000000px;}
.h8_c00346{height:84.000000px;}
.h2_c00346{height:108.000000px;}
.h1_c00346{height:1266.750000px;}
.h0_c00346{height:1266.839905px;}
.w0_c00346{width:960.480010px;}
.w1_c00346{width:960.750000px;}
.x0_c00346{left:0.000000px;}
.x19_c00346{left:72.000000px;}
.x20_c00346{left:73.050000px;}
.xa8_c00346{left:83.700000px;}
.x27_c00346{left:87.000000px;}
.x7b_c00346{left:88.050000px;}
.x69_c00346{left:89.400000px;}
.x11_c00346{left:91.050000px;}
.x7f_c00346{left:97.950000px;}
.x51_c00346{left:100.200000px;}
.x30_c00346{left:101.250000px;}
.x9e_c00346{left:109.200000px;}
.x38_c00346{left:110.850000px;}
.x7d_c00346{left:112.500000px;}
.x28_c00346{left:114.750000px;}
.x93_c00346{left:115.950000px;}
.x1a_c00346{left:117.000000px;}
.x71_c00346{left:120.000000px;}
.x77_c00346{left:121.050000px;}
.x90_c00346{left:122.250000px;}
.x31_c00346{left:123.600000px;}
.x97_c00346{left:126.150000px;}
.x29_c00346{left:128.850000px;}
.x12_c00346{left:129.900000px;}
.x80_c00346{left:131.400000px;}
.x21_c00346{left:133.500000px;}
.x6a_c00346{left:134.700000px;}
.x6e_c00346{left:139.950000px;}
.x54_c00346{left:141.000000px;}
.x32_c00346{left:142.350000px;}
.x78_c00346{left:144.150000px;}
.x9c_c00346{left:145.200000px;}
.x7c_c00346{left:148.200000px;}
.xb_c00346{left:150.450000px;}
.x45_c00346{left:151.950000px;}
.x84_c00346{left:153.150000px;}
.x13_c00346{left:154.650000px;}
.x33_c00346{left:156.750000px;}
.x94_c00346{left:158.550000px;}
.x72_c00346{left:159.600000px;}
.x4f_c00346{left:161.400000px;}
.x52_c00346{left:162.450000px;}
.x43_c00346{left:163.650000px;}
.x4c_c00346{left:165.300000px;}
.x4e_c00346{left:169.500000px;}
.x46_c00346{left:170.700000px;}
.x63_c00346{left:174.300000px;}
.x6b_c00346{left:177.600000px;}
.xc_c00346{left:179.550000px;}
.x14_c00346{left:181.350000px;}
.x1b_c00346{left:182.550000px;}
.x88_c00346{left:184.950000px;}
.x5f_c00346{left:186.450000px;}
.x39_c00346{left:188.250000px;}
.x4d_c00346{left:189.450000px;}
.x34_c00346{left:191.700000px;}
.x47_c00346{left:193.050000px;}
.xd_c00346{left:194.700000px;}
.xa4_c00346{left:196.800000px;}
.x22_c00346{left:198.300000px;}
.x55_c00346{left:200.100000px;}
.x79_c00346{left:201.450000px;}
.x3a_c00346{left:202.950000px;}
.xa0_c00346{left:204.900000px;}
.x60_c00346{left:206.550000px;}
.x56_c00346{left:208.050000px;}
.x3b_c00346{left:209.850000px;}
.x73_c00346{left:211.800000px;}
.x50_c00346{left:216.750000px;}
.x8a_c00346{left:219.000000px;}
.x57_c00346{left:222.450000px;}
.x15_c00346{left:224.250000px;}
.x3f_c00346{left:226.200000px;}
.x2a_c00346{left:227.850000px;}
.x58_c00346{left:229.650000px;}
.x3c_c00346{left:231.450000px;}
.x1c_c00346{left:234.000000px;}
.x35_c00346{left:235.650000px;}
.x59_c00346{left:237.150000px;}
.x74_c00346{left:239.850000px;}
.x40_c00346{left:241.350000px;}
.x44_c00346{left:243.600000px;}
.x23_c00346{left:245.400000px;}
.x85_c00346{left:246.900000px;}
.x5a_c00346{left:251.550000px;}
.x2b_c00346{left:252.750000px;}
.x64_c00346{left:253.950000px;}
.xa5_c00346{left:255.150000px;}
.x36_c00346{left:257.550000px;}
.x53_c00346{left:259.650000px;}
.x82_c00346{left:262.800000px;}
.x89_c00346{left:264.900000px;}
.x62_c00346{left:266.100000px;}
.x48_c00346{left:267.600000px;}
.x8f_c00346{left:268.800000px;}
.x65_c00346{left:270.150000px;}
.x1d_c00346{left:271.800000px;}
.x2c_c00346{left:274.050000px;}
.x8c_c00346{left:275.250000px;}
.x75_c00346{left:276.600000px;}
.xa3_c00346{left:278.550000px;}
.x6c_c00346{left:279.600000px;}
.xa7_c00346{left:280.650000px;}
.x37_c00346{left:282.000000px;}
.xa1_c00346{left:283.050000px;}
.x98_c00346{left:286.500000px;}
.x87_c00346{left:287.550000px;}
.x49_c00346{left:289.200000px;}
.xa9_c00346{left:290.400000px;}
.xa6_c00346{left:291.450000px;}
.x9f_c00346{left:293.100000px;}
.x6f_c00346{left:294.150000px;}
.x4a_c00346{left:296.100000px;}
.x9d_c00346{left:298.800000px;}
.x16_c00346{left:300.900000px;}
.x24_c00346{left:302.250000px;}
.x4b_c00346{left:303.600000px;}
.xa2_c00346{left:305.700000px;}
.x5b_c00346{left:308.850000px;}
.x41_c00346{left:310.500000px;}
.x8d_c00346{left:312.000000px;}
.x91_c00346{left:314.100000px;}
.x1_c00346{left:317.550000px;}
.xe_c00346{left:319.950000px;}
.x99_c00346{left:321.450000px;}
.x17_c00346{left:322.500000px;}
.x86_c00346{left:326.100000px;}
.x25_c00346{left:327.450000px;}
.x66_c00346{left:328.800000px;}
.x6d_c00346{left:331.800000px;}
.x7e_c00346{left:334.200000px;}
.x5c_c00346{left:335.850000px;}
.x2d_c00346{left:337.050000px;}
.x3d_c00346{left:338.400000px;}
.x2_c00346{left:340.650000px;}
.x9a_c00346{left:342.900000px;}
.x70_c00346{left:344.250000px;}
.x95_c00346{left:346.950000px;}
.x92_c00346{left:348.000000px;}
.x67_c00346{left:350.400000px;}
.x18_c00346{left:352.350000px;}
.x1e_c00346{left:354.000000px;}
.xf_c00346{left:355.200000px;}
.x3_c00346{left:358.950000px;}
.x76_c00346{left:362.250000px;}
.x5d_c00346{left:364.650000px;}
.x2e_c00346{left:366.150000px;}
.x3e_c00346{left:368.700000px;}
.x83_c00346{left:371.250000px;}
.x68_c00346{left:373.500000px;}
.x7a_c00346{left:375.300000px;}
.x1f_c00346{left:376.650000px;}
.x81_c00346{left:380.850000px;}
.x4_c00346{left:382.650000px;}
.x96_c00346{left:383.850000px;}
.x8b_c00346{left:386.400000px;}
.x5e_c00346{left:387.750000px;}
.x61_c00346{left:388.800000px;}
.x9b_c00346{left:390.450000px;}
.x10_c00346{left:391.950000px;}
.x26_c00346{left:393.000000px;}
.x2f_c00346{left:394.950000px;}
.x42_c00346{left:396.900000px;}
.x8e_c00346{left:401.550000px;}
.x5_c00346{left:404.550000px;}
.x11f_c00346{left:424.050000px;}
.x105_c00346{left:426.600000px;}
.xf0_c00346{left:428.100000px;}
.xaf_c00346{left:430.500000px;}
.x122_c00346{left:439.200000px;}
.x11b_c00346{left:442.500000px;}
.x10e_c00346{left:444.000000px;}
.x6_c00346{left:445.200000px;}
.xd0_c00346{left:447.150000px;}
.xaa_c00346{left:448.200000px;}
.x12a_c00346{left:450.450000px;}
.x119_c00346{left:461.100000px;}
.x10c_c00346{left:462.300000px;}
.xff_c00346{left:463.500000px;}
.x103_c00346{left:464.700000px;}
.x7_c00346{left:467.550000px;}
.xca_c00346{left:471.000000px;}
.xdc_c00346{left:472.050000px;}
.xc3_c00346{left:473.850000px;}
.x10f_c00346{left:476.400000px;}
.xd1_c00346{left:480.300000px;}
.xf5_c00346{left:484.350000px;}
.x110_c00346{left:486.150000px;}
.x8_c00346{left:488.850000px;}
.xb0_c00346{left:492.000000px;}
.xb7_c00346{left:493.350000px;}
.xf1_c00346{left:495.000000px;}
.x118_c00346{left:499.350000px;}
.xf6_c00346{left:500.550000px;}
.x9_c00346{left:501.750000px;}
.x114_c00346{left:503.250000px;}
.x10a_c00346{left:505.050000px;}
.xee_c00346{left:506.850000px;}
.x11e_c00346{left:508.350000px;}
.xb1_c00346{left:512.100000px;}
.xe5_c00346{left:513.300000px;}
.xd6_c00346{left:516.450000px;}
.xb8_c00346{left:518.850000px;}
.xab_c00346{left:522.750000px;}
.xcb_c00346{left:525.000000px;}
.x10d_c00346{left:526.800000px;}
.xbd_c00346{left:528.450000px;}
.xc4_c00346{left:530.100000px;}
.x123_c00346{left:531.750000px;}
.x101_c00346{left:533.400000px;}
.x106_c00346{left:535.650000px;}
.xb2_c00346{left:538.050000px;}
.x104_c00346{left:540.300000px;}
.x10b_c00346{left:541.800000px;}
.xf2_c00346{left:544.350000px;}
.x102_c00346{left:545.700000px;}
.xe2_c00346{left:548.250000px;}
.xf7_c00346{left:550.200000px;}
.x124_c00346{left:554.400000px;}
.xdd_c00346{left:556.650000px;}
.xc5_c00346{left:558.900000px;}
.xd2_c00346{left:560.250000px;}
.xe9_c00346{left:561.600000px;}
.xbe_c00346{left:564.450000px;}
.xcc_c00346{left:566.400000px;}
.xac_c00346{left:567.450000px;}
.xf8_c00346{left:568.950000px;}
.xb3_c00346{left:574.050000px;}
.xb9_c00346{left:576.150000px;}
.xd3_c00346{left:580.800000px;}
.xea_c00346{left:582.150000px;}
.xd7_c00346{left:583.350000px;}
.xcd_c00346{left:586.500000px;}
.x127_c00346{left:589.050000px;}
.xde_c00346{left:590.100000px;}
.xbf_c00346{left:592.500000px;}
.xc6_c00346{left:595.200000px;}
.xd4_c00346{left:597.000000px;}
.xd8_c00346{left:601.350000px;}
.x107_c00346{left:604.800000px;}
.xe6_c00346{left:606.150000px;}
.x100_c00346{left:607.650000px;}
.xe3_c00346{left:609.450000px;}
.xb4_c00346{left:612.900000px;}
.x116_c00346{left:615.600000px;}
.xf9_c00346{left:619.050000px;}
.xd9_c00346{left:624.750000px;}
.xeb_c00346{left:627.900000px;}
.xf3_c00346{left:628.950000px;}
.x117_c00346{left:635.100000px;}
.xad_c00346{left:637.350000px;}
.xfc_c00346{left:639.750000px;}
.xba_c00346{left:641.550000px;}
.x108_c00346{left:643.650000px;}
.xc0_c00346{left:644.700000px;}
.x120_c00346{left:646.500000px;}
.xd5_c00346{left:649.200000px;}
.xfd_c00346{left:650.250000px;}
.xfb_c00346{left:652.650000px;}
.x128_c00346{left:656.700000px;}
.xdf_c00346{left:658.500000px;}
.xc7_c00346{left:661.800000px;}
.xce_c00346{left:663.150000px;}
.x121_c00346{left:666.300000px;}
.x109_c00346{left:668.100000px;}
.xef_c00346{left:670.800000px;}
.xe4_c00346{left:672.750000px;}
.xe0_c00346{left:676.800000px;}
.xc8_c00346{left:678.750000px;}
.xda_c00346{left:680.550000px;}
.xe7_c00346{left:682.500000px;}
.xec_c00346{left:686.550000px;}
.xfe_c00346{left:687.750000px;}
.xf4_c00346{left:692.550000px;}
.x125_c00346{left:694.050000px;}
.x11c_c00346{left:695.850000px;}
.xb5_c00346{left:698.250000px;}
.x111_c00346{left:700.350000px;}
.x115_c00346{left:702.300000px;}
.xed_c00346{left:706.350000px;}
.xbb_c00346{left:712.800000px;}
.x112_c00346{left:715.950000px;}
.xc1_c00346{left:721.800000px;}
.x11a_c00346{left:723.300000px;}
.xe8_c00346{left:725.400000px;}
.x126_c00346{left:728.550000px;}
.xbc_c00346{left:731.850000px;}
.xc2_c00346{left:733.350000px;}
.x129_c00346{left:734.400000px;}
.xcf_c00346{left:735.900000px;}
.xc9_c00346{left:737.100000px;}
.xdb_c00346{left:738.150000px;}
.xa_c00346{left:739.350000px;}
.xae_c00346{left:744.300000px;}
.x113_c00346{left:746.550000px;}
.xe1_c00346{left:747.750000px;}
.x11d_c00346{left:751.950000px;}
.xfa_c00346{left:753.300000px;}
.xb6_c00346{left:756.600000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls1_c00346{letter-spacing:0.000000pt;}
.ls0_c00346{letter-spacing:49.523810pt;}
.ws3_c00346{word-spacing:-76.190476pt;}
.ws0_c00346{word-spacing:-21.555556pt;}
.ws1_c00346{word-spacing:-10.256410pt;}
.wsb_c00346{word-spacing:-2.666667pt;}
.wse_c00346{word-spacing:0.000000pt;}
.ws9_c00346{word-spacing:8.952381pt;}
.ws5_c00346{word-spacing:10.555556pt;}
.wsd_c00346{word-spacing:11.099476pt;}
.ws2_c00346{word-spacing:13.333333pt;}
.wsa_c00346{word-spacing:13.714286pt;}
.wsc_c00346{word-spacing:15.398844pt;}
.ws4_c00346{word-spacing:19.682540pt;}
.ws6_c00346{word-spacing:20.632708pt;}
.ws7_c00346{word-spacing:22.857143pt;}
.ws8_c00346{word-spacing:110.769231pt;}
._0_c00346{margin-left:-49.523810pt;}
._1_c00346{width:40.000000pt;}
._3_c00346{width:46.349206pt;}
._2_c00346{width:47.492404pt;}
._4_c00346{width:52.698413pt;}
.fs7_c00346{font-size:26.666667pt;}
.fs5_c00346{font-size:32.000000pt;}
.fs3_c00346{font-size:48.000000pt;}
.fs4_c00346{font-size:53.333333pt;}
.fs2_c00346{font-size:58.666667pt;}
.fs1_c00346{font-size:64.000000pt;}
.fs8_c00346{font-size:69.333333pt;}
.fs6_c00346{font-size:74.666667pt;}
.fs0_c00346{font-size:96.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y67_c00346{bottom:171.466667pt;}
.y3a_c00346{bottom:173.866667pt;}
.y66_c00346{bottom:185.200000pt;}
.y39_c00346{bottom:190.133333pt;}
.y65_c00346{bottom:197.733333pt;}
.y38_c00346{bottom:209.466667pt;}
.y37_c00346{bottom:225.200000pt;}
.y64_c00346{bottom:238.133333pt;}
.y36_c00346{bottom:241.466667pt;}
.y63_c00346{bottom:254.133333pt;}
.y35_c00346{bottom:256.800000pt;}
.y34_c00346{bottom:272.800000pt;}
.y62_c00346{bottom:273.866667pt;}
.y33_c00346{bottom:288.533333pt;}
.y61_c00346{bottom:292.800000pt;}
.y32_c00346{bottom:304.533333pt;}
.y60_c00346{bottom:308.800000pt;}
.y31_c00346{bottom:320.266667pt;}
.y5f_c00346{bottom:324.800000pt;}
.y30_c00346{bottom:336.266667pt;}
.y5e_c00346{bottom:343.733333pt;}
.y2f_c00346{bottom:352.000000pt;}
.y5d_c00346{bottom:362.533333pt;}
.y2e_c00346{bottom:367.733333pt;}
.y5c_c00346{bottom:382.400000pt;}
.y2d_c00346{bottom:383.466667pt;}
.y2c_c00346{bottom:399.466667pt;}
.y5b_c00346{bottom:402.266667pt;}
.y2b_c00346{bottom:415.466667pt;}
.y5a_c00346{bottom:422.000000pt;}
.y2a_c00346{bottom:431.200000pt;}
.y59_c00346{bottom:438.000000pt;}
.y29_c00346{bottom:446.933333pt;}
.y58_c00346{bottom:454.000000pt;}
.y28_c00346{bottom:463.200000pt;}
.y57_c00346{bottom:469.733333pt;}
.y27_c00346{bottom:479.200000pt;}
.y56_c00346{bottom:489.600000pt;}
.y26_c00346{bottom:494.933333pt;}
.y55_c00346{bottom:505.600000pt;}
.y25_c00346{bottom:510.933333pt;}
.y54_c00346{bottom:521.600000pt;}
.y24_c00346{bottom:526.933333pt;}
.y23_c00346{bottom:542.666667pt;}
.y53_c00346{bottom:546.800000pt;}
.y22_c00346{bottom:568.933333pt;}
.y52_c00346{bottom:569.866667pt;}
.y21_c00346{bottom:574.666667pt;}
.y20_c00346{bottom:590.133333pt;}
.y51_c00346{bottom:593.600000pt;}
.y1f_c00346{bottom:606.133333pt;}
.y50_c00346{bottom:613.333333pt;}
.y1e_c00346{bottom:622.133333pt;}
.y4f_c00346{bottom:633.200000pt;}
.y1d_c00346{bottom:638.133333pt;}
.y4e_c00346{bottom:653.066667pt;}
.y1c_c00346{bottom:653.866667pt;}
.y1b_c00346{bottom:669.600000pt;}
.y4d_c00346{bottom:683.866667pt;}
.y1a_c00346{bottom:685.333333pt;}
.y19_c00346{bottom:701.066667pt;}
.y4c_c00346{bottom:715.466667pt;}
.y17_c00346{bottom:723.466667pt;}
.y4b_c00346{bottom:731.466667pt;}
.y18_c00346{bottom:736.266667pt;}
.y16_c00346{bottom:736.933333pt;}
.y4a_c00346{bottom:747.200000pt;}
.y15_c00346{bottom:749.733333pt;}
.y14_c00346{bottom:762.666667pt;}
.y49_c00346{bottom:766.400000pt;}
.y13_c00346{bottom:775.466667pt;}
.y48_c00346{bottom:782.400000pt;}
.y12_c00346{bottom:788.533333pt;}
.y47_c00346{bottom:798.133333pt;}
.y11_c00346{bottom:801.333333pt;}
.y46_c00346{bottom:813.866667pt;}
.y10_c00346{bottom:814.133333pt;}
.yf_c00346{bottom:826.666667pt;}
.y45_c00346{bottom:829.866667pt;}
.ye_c00346{bottom:839.466667pt;}
.y44_c00346{bottom:845.200000pt;}
.yd_c00346{bottom:852.266667pt;}
.y43_c00346{bottom:860.933333pt;}
.yc_c00346{bottom:865.066667pt;}
.y42_c00346{bottom:876.933333pt;}
.yb_c00346{bottom:878.133333pt;}
.ya_c00346{bottom:890.666667pt;}
.y41_c00346{bottom:892.933333pt;}
.y9_c00346{bottom:903.733333pt;}
.y40_c00346{bottom:908.666667pt;}
.y8_c00346{bottom:916.533333pt;}
.y3f_c00346{bottom:924.400000pt;}
.y7_c00346{bottom:937.866667pt;}
.y3e_c00346{bottom:940.133333pt;}
.y6_c00346{bottom:953.600000pt;}
.y3d_c00346{bottom:956.133333pt;}
.y3c_c00346{bottom:975.333333pt;}
.y5_c00346{bottom:977.600000pt;}
.y3b_c00346{bottom:991.333333pt;}
.y4_c00346{bottom:992.933333pt;}
.y3_c00346{bottom:993.333333pt;}
.y2_c00346{bottom:1012.800000pt;}
.y1_c00346{bottom:1016.000000pt;}
.h9_c00346{height:26.666667pt;}
.h7_c00346{height:32.000000pt;}
.h5_c00346{height:48.000000pt;}
.h6_c00346{height:53.333333pt;}
.h4_c00346{height:58.666667pt;}
.h3_c00346{height:64.000000pt;}
.ha_c00346{height:69.333333pt;}
.h8_c00346{height:74.666667pt;}
.h2_c00346{height:96.000000pt;}
.h1_c00346{height:1126.000000pt;}
.h0_c00346{height:1126.079916pt;}
.w0_c00346{width:853.760009pt;}
.w1_c00346{width:854.000000pt;}
.x0_c00346{left:0.000000pt;}
.x19_c00346{left:64.000000pt;}
.x20_c00346{left:64.933333pt;}
.xa8_c00346{left:74.400000pt;}
.x27_c00346{left:77.333333pt;}
.x7b_c00346{left:78.266667pt;}
.x69_c00346{left:79.466667pt;}
.x11_c00346{left:80.933333pt;}
.x7f_c00346{left:87.066667pt;}
.x51_c00346{left:89.066667pt;}
.x30_c00346{left:90.000000pt;}
.x9e_c00346{left:97.066667pt;}
.x38_c00346{left:98.533333pt;}
.x7d_c00346{left:100.000000pt;}
.x28_c00346{left:102.000000pt;}
.x93_c00346{left:103.066667pt;}
.x1a_c00346{left:104.000000pt;}
.x71_c00346{left:106.666667pt;}
.x77_c00346{left:107.600000pt;}
.x90_c00346{left:108.666667pt;}
.x31_c00346{left:109.866667pt;}
.x97_c00346{left:112.133333pt;}
.x29_c00346{left:114.533333pt;}
.x12_c00346{left:115.466667pt;}
.x80_c00346{left:116.800000pt;}
.x21_c00346{left:118.666667pt;}
.x6a_c00346{left:119.733333pt;}
.x6e_c00346{left:124.400000pt;}
.x54_c00346{left:125.333333pt;}
.x32_c00346{left:126.533333pt;}
.x78_c00346{left:128.133333pt;}
.x9c_c00346{left:129.066667pt;}
.x7c_c00346{left:131.733333pt;}
.xb_c00346{left:133.733333pt;}
.x45_c00346{left:135.066667pt;}
.x84_c00346{left:136.133333pt;}
.x13_c00346{left:137.466667pt;}
.x33_c00346{left:139.333333pt;}
.x94_c00346{left:140.933333pt;}
.x72_c00346{left:141.866667pt;}
.x4f_c00346{left:143.466667pt;}
.x52_c00346{left:144.400000pt;}
.x43_c00346{left:145.466667pt;}
.x4c_c00346{left:146.933333pt;}
.x4e_c00346{left:150.666667pt;}
.x46_c00346{left:151.733333pt;}
.x63_c00346{left:154.933333pt;}
.x6b_c00346{left:157.866667pt;}
.xc_c00346{left:159.600000pt;}
.x14_c00346{left:161.200000pt;}
.x1b_c00346{left:162.266667pt;}
.x88_c00346{left:164.400000pt;}
.x5f_c00346{left:165.733333pt;}
.x39_c00346{left:167.333333pt;}
.x4d_c00346{left:168.400000pt;}
.x34_c00346{left:170.400000pt;}
.x47_c00346{left:171.600000pt;}
.xd_c00346{left:173.066667pt;}
.xa4_c00346{left:174.933333pt;}
.x22_c00346{left:176.266667pt;}
.x55_c00346{left:177.866667pt;}
.x79_c00346{left:179.066667pt;}
.x3a_c00346{left:180.400000pt;}
.xa0_c00346{left:182.133333pt;}
.x60_c00346{left:183.600000pt;}
.x56_c00346{left:184.933333pt;}
.x3b_c00346{left:186.533333pt;}
.x73_c00346{left:188.266667pt;}
.x50_c00346{left:192.666667pt;}
.x8a_c00346{left:194.666667pt;}
.x57_c00346{left:197.733333pt;}
.x15_c00346{left:199.333333pt;}
.x3f_c00346{left:201.066667pt;}
.x2a_c00346{left:202.533333pt;}
.x58_c00346{left:204.133333pt;}
.x3c_c00346{left:205.733333pt;}
.x1c_c00346{left:208.000000pt;}
.x35_c00346{left:209.466667pt;}
.x59_c00346{left:210.800000pt;}
.x74_c00346{left:213.200000pt;}
.x40_c00346{left:214.533333pt;}
.x44_c00346{left:216.533333pt;}
.x23_c00346{left:218.133333pt;}
.x85_c00346{left:219.466667pt;}
.x5a_c00346{left:223.600000pt;}
.x2b_c00346{left:224.666667pt;}
.x64_c00346{left:225.733333pt;}
.xa5_c00346{left:226.800000pt;}
.x36_c00346{left:228.933333pt;}
.x53_c00346{left:230.800000pt;}
.x82_c00346{left:233.600000pt;}
.x89_c00346{left:235.466667pt;}
.x62_c00346{left:236.533333pt;}
.x48_c00346{left:237.866667pt;}
.x8f_c00346{left:238.933333pt;}
.x65_c00346{left:240.133333pt;}
.x1d_c00346{left:241.600000pt;}
.x2c_c00346{left:243.600000pt;}
.x8c_c00346{left:244.666667pt;}
.x75_c00346{left:245.866667pt;}
.xa3_c00346{left:247.600000pt;}
.x6c_c00346{left:248.533333pt;}
.xa7_c00346{left:249.466667pt;}
.x37_c00346{left:250.666667pt;}
.xa1_c00346{left:251.600000pt;}
.x98_c00346{left:254.666667pt;}
.x87_c00346{left:255.600000pt;}
.x49_c00346{left:257.066667pt;}
.xa9_c00346{left:258.133333pt;}
.xa6_c00346{left:259.066667pt;}
.x9f_c00346{left:260.533333pt;}
.x6f_c00346{left:261.466667pt;}
.x4a_c00346{left:263.200000pt;}
.x9d_c00346{left:265.600000pt;}
.x16_c00346{left:267.466667pt;}
.x24_c00346{left:268.666667pt;}
.x4b_c00346{left:269.866667pt;}
.xa2_c00346{left:271.733333pt;}
.x5b_c00346{left:274.533333pt;}
.x41_c00346{left:276.000000pt;}
.x8d_c00346{left:277.333333pt;}
.x91_c00346{left:279.200000pt;}
.x1_c00346{left:282.266667pt;}
.xe_c00346{left:284.400000pt;}
.x99_c00346{left:285.733333pt;}
.x17_c00346{left:286.666667pt;}
.x86_c00346{left:289.866667pt;}
.x25_c00346{left:291.066667pt;}
.x66_c00346{left:292.266667pt;}
.x6d_c00346{left:294.933333pt;}
.x7e_c00346{left:297.066667pt;}
.x5c_c00346{left:298.533333pt;}
.x2d_c00346{left:299.600000pt;}
.x3d_c00346{left:300.800000pt;}
.x2_c00346{left:302.800000pt;}
.x9a_c00346{left:304.800000pt;}
.x70_c00346{left:306.000000pt;}
.x95_c00346{left:308.400000pt;}
.x92_c00346{left:309.333333pt;}
.x67_c00346{left:311.466667pt;}
.x18_c00346{left:313.200000pt;}
.x1e_c00346{left:314.666667pt;}
.xf_c00346{left:315.733333pt;}
.x3_c00346{left:319.066667pt;}
.x76_c00346{left:322.000000pt;}
.x5d_c00346{left:324.133333pt;}
.x2e_c00346{left:325.466667pt;}
.x3e_c00346{left:327.733333pt;}
.x83_c00346{left:330.000000pt;}
.x68_c00346{left:332.000000pt;}
.x7a_c00346{left:333.600000pt;}
.x1f_c00346{left:334.800000pt;}
.x81_c00346{left:338.533333pt;}
.x4_c00346{left:340.133333pt;}
.x96_c00346{left:341.200000pt;}
.x8b_c00346{left:343.466667pt;}
.x5e_c00346{left:344.666667pt;}
.x61_c00346{left:345.600000pt;}
.x9b_c00346{left:347.066667pt;}
.x10_c00346{left:348.400000pt;}
.x26_c00346{left:349.333333pt;}
.x2f_c00346{left:351.066667pt;}
.x42_c00346{left:352.800000pt;}
.x8e_c00346{left:356.933333pt;}
.x5_c00346{left:359.600000pt;}
.x11f_c00346{left:376.933333pt;}
.x105_c00346{left:379.200000pt;}
.xf0_c00346{left:380.533333pt;}
.xaf_c00346{left:382.666667pt;}
.x122_c00346{left:390.400000pt;}
.x11b_c00346{left:393.333333pt;}
.x10e_c00346{left:394.666667pt;}
.x6_c00346{left:395.733333pt;}
.xd0_c00346{left:397.466667pt;}
.xaa_c00346{left:398.400000pt;}
.x12a_c00346{left:400.400000pt;}
.x119_c00346{left:409.866667pt;}
.x10c_c00346{left:410.933333pt;}
.xff_c00346{left:412.000000pt;}
.x103_c00346{left:413.066667pt;}
.x7_c00346{left:415.600000pt;}
.xca_c00346{left:418.666667pt;}
.xdc_c00346{left:419.600000pt;}
.xc3_c00346{left:421.200000pt;}
.x10f_c00346{left:423.466667pt;}
.xd1_c00346{left:426.933333pt;}
.xf5_c00346{left:430.533333pt;}
.x110_c00346{left:432.133333pt;}
.x8_c00346{left:434.533333pt;}
.xb0_c00346{left:437.333333pt;}
.xb7_c00346{left:438.533333pt;}
.xf1_c00346{left:440.000000pt;}
.x118_c00346{left:443.866667pt;}
.xf6_c00346{left:444.933333pt;}
.x9_c00346{left:446.000000pt;}
.x114_c00346{left:447.333333pt;}
.x10a_c00346{left:448.933333pt;}
.xee_c00346{left:450.533333pt;}
.x11e_c00346{left:451.866667pt;}
.xb1_c00346{left:455.200000pt;}
.xe5_c00346{left:456.266667pt;}
.xd6_c00346{left:459.066667pt;}
.xb8_c00346{left:461.200000pt;}
.xab_c00346{left:464.666667pt;}
.xcb_c00346{left:466.666667pt;}
.x10d_c00346{left:468.266667pt;}
.xbd_c00346{left:469.733333pt;}
.xc4_c00346{left:471.200000pt;}
.x123_c00346{left:472.666667pt;}
.x101_c00346{left:474.133333pt;}
.x106_c00346{left:476.133333pt;}
.xb2_c00346{left:478.266667pt;}
.x104_c00346{left:480.266667pt;}
.x10b_c00346{left:481.600000pt;}
.xf2_c00346{left:483.866667pt;}
.x102_c00346{left:485.066667pt;}
.xe2_c00346{left:487.333333pt;}
.xf7_c00346{left:489.066667pt;}
.x124_c00346{left:492.800000pt;}
.xdd_c00346{left:494.800000pt;}
.xc5_c00346{left:496.800000pt;}
.xd2_c00346{left:498.000000pt;}
.xe9_c00346{left:499.200000pt;}
.xbe_c00346{left:501.733333pt;}
.xcc_c00346{left:503.466667pt;}
.xac_c00346{left:504.400000pt;}
.xf8_c00346{left:505.733333pt;}
.xb3_c00346{left:510.266667pt;}
.xb9_c00346{left:512.133333pt;}
.xd3_c00346{left:516.266667pt;}
.xea_c00346{left:517.466667pt;}
.xd7_c00346{left:518.533333pt;}
.xcd_c00346{left:521.333333pt;}
.x127_c00346{left:523.600000pt;}
.xde_c00346{left:524.533333pt;}
.xbf_c00346{left:526.666667pt;}
.xc6_c00346{left:529.066667pt;}
.xd4_c00346{left:530.666667pt;}
.xd8_c00346{left:534.533333pt;}
.x107_c00346{left:537.600000pt;}
.xe6_c00346{left:538.800000pt;}
.x100_c00346{left:540.133333pt;}
.xe3_c00346{left:541.733333pt;}
.xb4_c00346{left:544.800000pt;}
.x116_c00346{left:547.200000pt;}
.xf9_c00346{left:550.266667pt;}
.xd9_c00346{left:555.333333pt;}
.xeb_c00346{left:558.133333pt;}
.xf3_c00346{left:559.066667pt;}
.x117_c00346{left:564.533333pt;}
.xad_c00346{left:566.533333pt;}
.xfc_c00346{left:568.666667pt;}
.xba_c00346{left:570.266667pt;}
.x108_c00346{left:572.133333pt;}
.xc0_c00346{left:573.066667pt;}
.x120_c00346{left:574.666667pt;}
.xd5_c00346{left:577.066667pt;}
.xfd_c00346{left:578.000000pt;}
.xfb_c00346{left:580.133333pt;}
.x128_c00346{left:583.733333pt;}
.xdf_c00346{left:585.333333pt;}
.xc7_c00346{left:588.266667pt;}
.xce_c00346{left:589.466667pt;}
.x121_c00346{left:592.266667pt;}
.x109_c00346{left:593.866667pt;}
.xef_c00346{left:596.266667pt;}
.xe4_c00346{left:598.000000pt;}
.xe0_c00346{left:601.600000pt;}
.xc8_c00346{left:603.333333pt;}
.xda_c00346{left:604.933333pt;}
.xe7_c00346{left:606.666667pt;}
.xec_c00346{left:610.266667pt;}
.xfe_c00346{left:611.333333pt;}
.xf4_c00346{left:615.600000pt;}
.x125_c00346{left:616.933333pt;}
.x11c_c00346{left:618.533333pt;}
.xb5_c00346{left:620.666667pt;}
.x111_c00346{left:622.533333pt;}
.x115_c00346{left:624.266667pt;}
.xed_c00346{left:627.866667pt;}
.xbb_c00346{left:633.600000pt;}
.x112_c00346{left:636.400000pt;}
.xc1_c00346{left:641.600000pt;}
.x11a_c00346{left:642.933333pt;}
.xe8_c00346{left:644.800000pt;}
.x126_c00346{left:647.600000pt;}
.xbc_c00346{left:650.533333pt;}
.xc2_c00346{left:651.866667pt;}
.x129_c00346{left:652.800000pt;}
.xcf_c00346{left:654.133333pt;}
.xc9_c00346{left:655.200000pt;}
.xdb_c00346{left:656.133333pt;}
.xa_c00346{left:657.200000pt;}
.xae_c00346{left:661.600000pt;}
.x113_c00346{left:663.600000pt;}
.xe1_c00346{left:664.666667pt;}
.x11d_c00346{left:668.400000pt;}
.xfa_c00346{left:669.600000pt;}
.xb6_c00346{left:672.533333pt;}
}





/* 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_c00347 {
    display:none;
  }
  .loading-indicator_c00347.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00347 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_c00347 { 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_c00347" -> "#page-container .classname_c00347")
 */
.pf_c00347 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00347 { /* 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_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00347 { /* 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_c00347 { /* 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_c00347 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00347 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00347 {overflow:visible;}
  }
}
.c_c00347 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00347 { /* 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_c00347:after { /* webkit #35443 */
  content: '';
}
.t_c00347:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00347 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 */
}
.__c00347 { /* 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_c00347 { /* info for Javascript */
  display:none;
}
.l_c00347 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00347 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00347 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00347: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_c00347 {
    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_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00347.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_c00347 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00347;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.000000;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;}
.md8_c00347{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.ma_c00347{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00347{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00347{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mab_c00347{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00347{transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00347{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m64_c00347{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mec_c00347{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.m47_c00347{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m118_c00347{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.mda_c00347{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mea_c00347{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00347{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00347{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m55_c00347{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.m68_c00347{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00347{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m58_c00347{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md9_c00347{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m90_c00347{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00347{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00347{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m59_c00347{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me5_c00347{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me_c00347{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me8_c00347{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00347{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m93_c00347{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00347{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00347{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m35_c00347{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m39_c00347{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00347{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.md3_c00347{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00347{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m144_c00347{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.me4_c00347{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m69_c00347{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m54_c00347{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m110_c00347{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00347{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mef_c00347{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m1_c00347{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00347{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mad_c00347{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mce_c00347{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me9_c00347{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00347{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.mac_c00347{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m37_c00347{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m50_c00347{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m13_c00347{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00347{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m135_c00347{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00347{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m53_c00347{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5_c00347{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m91_c00347{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m115_c00347{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m36_c00347{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00347{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00347{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m81_c00347{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m82_c00347{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.md0_c00347{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m71_c00347{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00347{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00347{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.meb_c00347{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00347{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00347{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00347{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m102_c00347{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00347{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m95_c00347{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mff_c00347{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m105_c00347{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m61_c00347{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00347{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00347{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.mca_c00347{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m41_c00347{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00347{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf_c00347{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00347{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00347{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m92_c00347{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00347{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00347{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md6_c00347{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m25_c00347{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me2_c00347{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m120_c00347{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00347{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m78_c00347{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m80_c00347{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00347{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00347{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9_c00347{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m16_c00347{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00347{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00347{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00347{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m87_c00347{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m38_c00347{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m114_c00347{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.me3_c00347{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00347{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m52_c00347{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00347{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m11_c00347{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00347{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00347{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m72_c00347{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00347{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m51_c00347{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m109_c00347{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.md5_c00347{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00347{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00347{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m46_c00347{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m40_c00347{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00347{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00347{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m28_c00347{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mae_c00347{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00347{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00347{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00347{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m140_c00347{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mde_c00347{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00347{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m104_c00347{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00347{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m15_c00347{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m137_c00347{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00347{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00347{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m34_c00347{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00347{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m112_c00347{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00347{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m60_c00347{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m14_c00347{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00347{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m13f_c00347{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00347{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00347{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00347{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.me1_c00347{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00347{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m88_c00347{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00347{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m77_c00347{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m125_c00347{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m45_c00347{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m48_c00347{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00347{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m133_c00347{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00347{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m139_c00347{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md2_c00347{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m23_c00347{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m13e_c00347{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00347{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00347{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m108_c00347{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.maa_c00347{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00347{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m31_c00347{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00347{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m126_c00347{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m128_c00347{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00347{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m57_c00347{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m13d_c00347{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00347{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00347{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m86_c00347{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m85_c00347{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00347{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m44_c00347{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m103_c00347{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00347{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00347{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m111_c00347{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m106_c00347{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m98_c00347{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m143_c00347{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00347{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m12_c00347{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00347{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m74_c00347{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00347{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m123_c00347{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m101_c00347{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m73_c00347{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00347{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00347{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m76_c00347{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m99_c00347{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m124_c00347{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m63_c00347{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m84_c00347{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m20_c00347{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8_c00347{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00347{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00347{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m70_c00347{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00347{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m127_c00347{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m62_c00347{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m24_c00347{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m141_c00347{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00347{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00347{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m21_c00347{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m113_c00347{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m27_c00347{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m67_c00347{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00347{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m100_c00347{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m142_c00347{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.maf_c00347{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m17_c00347{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00347{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00347{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m13a_c00347{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m75_c00347{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00347{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m56_c00347{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb_c00347{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m79_c00347{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m49_c00347{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m121_c00347{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00347{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m129_c00347{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3_c00347{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m131_c00347{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m138_c00347{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00347{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00347{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m32_c00347{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m66_c00347{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m122_c00347{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00347{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc_c00347{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00347{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00347{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00347{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00347{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m29_c00347{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m33_c00347{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mba_c00347{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00347{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00347{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m43_c00347{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00347{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00347{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00347{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00347{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);}
.mb3_c00347{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10_c00347{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00347{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m65_c00347{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m18_c00347{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00347{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00347{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md1_c00347{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m94_c00347{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m145_c00347{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00347{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m134_c00347{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00347{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00347{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00347{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m30_c00347{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m116_c00347{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m89_c00347{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.md7_c00347{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00347{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m97_c00347{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m136_c00347{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00347{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m19_c00347{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00347{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m22_c00347{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00347{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00347{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m42_c00347{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00347{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m130_c00347{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00347{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00347{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00347{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00347{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00347{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m132_c00347{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md_c00347{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me0_c00347{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.me7_c00347{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m83_c00347{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m107_c00347{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00347{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00347{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.me6_c00347{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00347{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m96_c00347{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.med_c00347{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00347{transform:matrix(0.386000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386000,0.000000,0.000000,0.250000,0,0);}
.mee_c00347{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00347{transform:matrix(0.430250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430250,0.000000,0.000000,0.250000,0,0);}
.m119_c00347{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.md4_c00347{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m0_c00347{transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00347{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m26_c00347{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00347{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00347{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00347{transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);}
.m117_c00347{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls2_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:49.072993px;}
.ls0_c00347{letter-spacing:55.714286px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{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__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00347{word-spacing:-85.714286px;}
.wsd_c00347{word-spacing:-70.072993px;}
.ws10_c00347{word-spacing:-13.200000px;}
.ws11_c00347{word-spacing:0.000000px;}
.ws0_c00347{word-spacing:13.089172px;}
.ws4_c00347{word-spacing:15.000000px;}
.wse_c00347{word-spacing:20.500000px;}
.ws7_c00347{word-spacing:23.211796px;}
.ws5_c00347{word-spacing:25.714286px;}
.wsc_c00347{word-spacing:28.072993px;}
.ws9_c00347{word-spacing:28.426230px;}
.wsa_c00347{word-spacing:32.360656px;}
.ws6_c00347{word-spacing:36.000000px;}
.ws2_c00347{word-spacing:40.000000px;}
.ws1_c00347{word-spacing:44.166667px;}
.wsb_c00347{word-spacing:48.503817px;}
.ws8_c00347{word-spacing:51.500000px;}
.wsf_c00347{word-spacing:113.958525px;}
._1_c00347{margin-left:-55.714286px;}
._5_c00347{margin-left:-49.072993px;}
._6_c00347{width:2.919708px;}
._4_c00347{width:51.992701px;}
._2_c00347{width:59.285714px;}
._3_c00347{width:65.360656px;}
._0_c00347{width:74.166667px;}
.fc0_c00347{color:transparent;}
.fs9_c00347{font-size:30.000000px;}
.fs5_c00347{font-size:42.000000px;}
.fs7_c00347{font-size:48.000000px;}
.fs4_c00347{font-size:54.000000px;}
.fs3_c00347{font-size:60.000000px;}
.fs1_c00347{font-size:66.000000px;}
.fs2_c00347{font-size:72.000000px;}
.fs0_c00347{font-size:78.000000px;}
.fs6_c00347{font-size:84.000000px;}
.fs8_c00347{font-size:90.000000px;}
.fsa_c00347{font-size:96.000000px;}
.y0_c00347{bottom:0.000000px;}
.y6a_c00347{bottom:171.300000px;}
.y69_c00347{bottom:191.400000px;}
.y37_c00347{bottom:192.300000px;}
.y68_c00347{bottom:205.500000px;}
.y36_c00347{bottom:207.000000px;}
.y67_c00347{bottom:219.900000px;}
.y35_c00347{bottom:220.650000px;}
.y66_c00347{bottom:234.300000px;}
.y34_c00347{bottom:234.750000px;}
.y65_c00347{bottom:248.400000px;}
.y33_c00347{bottom:249.900000px;}
.y32_c00347{bottom:261.750000px;}
.y64_c00347{bottom:262.800000px;}
.y31_c00347{bottom:276.900000px;}
.y63_c00347{bottom:277.200000px;}
.y62_c00347{bottom:291.600000px;}
.y30_c00347{bottom:294.600000px;}
.y61_c00347{bottom:306.000000px;}
.y2f_c00347{bottom:312.600000px;}
.y60_c00347{bottom:320.700000px;}
.y2e_c00347{bottom:333.450000px;}
.y5f_c00347{bottom:335.700000px;}
.y5e_c00347{bottom:349.350000px;}
.y2d_c00347{bottom:350.700000px;}
.y5d_c00347{bottom:364.050000px;}
.y2c_c00347{bottom:369.000000px;}
.y5c_c00347{bottom:378.450000px;}
.y2b_c00347{bottom:387.000000px;}
.y5b_c00347{bottom:393.150000px;}
.y2a_c00347{bottom:404.700000px;}
.y29_c00347{bottom:422.700000px;}
.y5a_c00347{bottom:441.150000px;}
.y28_c00347{bottom:443.850000px;}
.y59_c00347{bottom:458.400000px;}
.y27_c00347{bottom:461.850000px;}
.y58_c00347{bottom:476.700000px;}
.y26_c00347{bottom:483.900000px;}
.y57_c00347{bottom:493.950000px;}
.y25_c00347{bottom:502.200000px;}
.y56_c00347{bottom:516.600000px;}
.y24_c00347{bottom:523.800000px;}
.y55_c00347{bottom:534.300000px;}
.y23_c00347{bottom:542.550000px;}
.y54_c00347{bottom:552.300000px;}
.y22_c00347{bottom:560.550000px;}
.y53_c00347{bottom:573.450000px;}
.y21_c00347{bottom:578.100000px;}
.y52_c00347{bottom:583.200000px;}
.y51_c00347{bottom:590.100000px;}
.y20_c00347{bottom:596.100000px;}
.y50_c00347{bottom:602.400000px;}
.y4f_c00347{bottom:613.500000px;}
.y1f_c00347{bottom:613.800000px;}
.y1e_c00347{bottom:630.300000px;}
.y4e_c00347{bottom:639.750000px;}
.y1d_c00347{bottom:649.350000px;}
.y4d_c00347{bottom:661.650000px;}
.y1c_c00347{bottom:667.350000px;}
.y4c_c00347{bottom:684.300000px;}
.y1b_c00347{bottom:685.350000px;}
.y1a_c00347{bottom:703.050000px;}
.y4b_c00347{bottom:706.650000px;}
.y19_c00347{bottom:721.050000px;}
.y4a_c00347{bottom:729.000000px;}
.y18_c00347{bottom:739.050000px;}
.y49_c00347{bottom:751.350000px;}
.y17_c00347{bottom:757.050000px;}
.y16_c00347{bottom:778.350000px;}
.y48_c00347{bottom:789.900000px;}
.y15_c00347{bottom:792.750000px;}
.y14_c00347{bottom:807.450000px;}
.y13_c00347{bottom:820.350000px;}
.y47_c00347{bottom:830.550000px;}
.y12_c00347{bottom:836.250000px;}
.y10_c00347{bottom:852.150000px;}
.yf_c00347{bottom:869.850000px;}
.y46_c00347{bottom:870.450000px;}
.ye_c00347{bottom:888.150000px;}
.y45_c00347{bottom:892.350000px;}
.yd_c00347{bottom:910.050000px;}
.y44_c00347{bottom:910.650000px;}
.yc_c00347{bottom:928.050000px;}
.y43_c00347{bottom:928.650000px;}
.yb_c00347{bottom:945.300000px;}
.y42_c00347{bottom:946.650000px;}
.ya_c00347{bottom:963.600000px;}
.y41_c00347{bottom:964.650000px;}
.y9_c00347{bottom:981.300000px;}
.y40_c00347{bottom:982.650000px;}
.y11_c00347{bottom:987.150000px;}
.y8_c00347{bottom:999.300000px;}
.y3f_c00347{bottom:1000.350000px;}
.y7_c00347{bottom:1017.000000px;}
.y3e_c00347{bottom:1018.350000px;}
.y6_c00347{bottom:1034.700000px;}
.y3d_c00347{bottom:1036.350000px;}
.y3c_c00347{bottom:1054.050000px;}
.y5_c00347{bottom:1056.000000px;}
.y4_c00347{bottom:1075.050000px;}
.y3b_c00347{bottom:1075.200000px;}
.y3a_c00347{bottom:1087.800000px;}
.y3_c00347{bottom:1095.150000px;}
.y39_c00347{bottom:1103.700000px;}
.y2_c00347{bottom:1114.950000px;}
.y38_c00347{bottom:1119.600000px;}
.y1_c00347{bottom:1140.900000px;}
.hb_c00347{height:30.000000px;}
.h7_c00347{height:42.000000px;}
.h9_c00347{height:48.000000px;}
.h6_c00347{height:54.000000px;}
.h5_c00347{height:60.000000px;}
.h3_c00347{height:66.000000px;}
.h4_c00347{height:72.000000px;}
.h2_c00347{height:78.000000px;}
.h8_c00347{height:84.000000px;}
.ha_c00347{height:90.000000px;}
.hc_c00347{height:96.000000px;}
.h1_c00347{height:1266.750000px;}
.h0_c00347{height:1266.839905px;}
.w0_c00347{width:960.480010px;}
.w1_c00347{width:960.750000px;}
.x0_c00347{left:0.000000px;}
.x3_c00347{left:195.150000px;}
.xc_c00347{left:196.500000px;}
.x8f_c00347{left:197.700000px;}
.x77_c00347{left:198.750000px;}
.x96_c00347{left:200.100000px;}
.xaa_c00347{left:202.350000px;}
.xa4_c00347{left:208.200000px;}
.x11_c00347{left:211.500000px;}
.xa_c00347{left:214.200000px;}
.x2b_c00347{left:215.400000px;}
.x82_c00347{left:216.600000px;}
.x7f_c00347{left:218.250000px;}
.x9a_c00347{left:219.300000px;}
.x61_c00347{left:226.200000px;}
.x6c_c00347{left:227.400000px;}
.x51_c00347{left:231.450000px;}
.xb2_c00347{left:232.500000px;}
.x13_c00347{left:234.000000px;}
.x83_c00347{left:237.150000px;}
.x12_c00347{left:241.050000px;}
.x3e_c00347{left:243.150000px;}
.x2f_c00347{left:245.400000px;}
.xab_c00347{left:246.600000px;}
.x48_c00347{left:247.650000px;}
.x24_c00347{left:249.600000px;}
.x1c_c00347{left:251.250000px;}
.x30_c00347{left:252.900000px;}
.xb0_c00347{left:254.250000px;}
.xa0_c00347{left:256.050000px;}
.x4a_c00347{left:257.400000px;}
.x65_c00347{left:259.200000px;}
.x1d_c00347{left:260.250000px;}
.x87_c00347{left:261.300000px;}
.x4_c00347{left:265.350000px;}
.x31_c00347{left:267.300000px;}
.x97_c00347{left:268.500000px;}
.x8a_c00347{left:269.700000px;}
.x80_c00347{left:271.950000px;}
.x52_c00347{left:273.150000px;}
.x93_c00347{left:274.350000px;}
.x90_c00347{left:276.600000px;}
.x66_c00347{left:278.700000px;}
.x53_c00347{left:280.650000px;}
.x42_c00347{left:281.850000px;}
.x78_c00347{left:283.650000px;}
.x99_c00347{left:284.850000px;}
.x9e_c00347{left:285.900000px;}
.x3f_c00347{left:287.100000px;}
.x32_c00347{left:288.600000px;}
.x6d_c00347{left:292.500000px;}
.x54_c00347{left:295.350000px;}
.x25_c00347{left:296.700000px;}
.x14_c00347{left:299.100000px;}
.x5_c00347{left:300.600000px;}
.x43_c00347{left:302.700000px;}
.x9b_c00347{left:304.200000px;}
.x1e_c00347{left:306.300000px;}
.x35_c00347{left:309.150000px;}
.x55_c00347{left:310.200000px;}
.xa2_c00347{left:311.850000px;}
.x6e_c00347{left:313.350000px;}
.x49_c00347{left:315.300000px;}
.x56_c00347{left:317.400000px;}
.x8c_c00347{left:319.050000px;}
.x67_c00347{left:320.400000px;}
.x4b_c00347{left:322.200000px;}
.x15_c00347{left:323.250000px;}
.x57_c00347{left:324.900000px;}
.x70_c00347{left:326.100000px;}
.x44_c00347{left:327.150000px;}
.x9c_c00347{left:330.450000px;}
.x62_c00347{left:331.650000px;}
.x26_c00347{left:332.700000px;}
.x9f_c00347{left:333.750000px;}
.x68_c00347{left:335.100000px;}
.x1f_c00347{left:339.000000px;}
.x2c_c00347{left:341.400000px;}
.x79_c00347{left:343.350000px;}
.x36_c00347{left:345.150000px;}
.xac_c00347{left:347.250000px;}
.x81_c00347{left:348.300000px;}
.x16_c00347{left:350.250000px;}
.x58_c00347{left:353.700000px;}
.x33_c00347{left:355.500000px;}
.x46_c00347{left:357.150000px;}
.x59_c00347{left:360.900000px;}
.x6_c00347{left:362.850000px;}
.x71_c00347{left:364.200000px;}
.x4c_c00347{left:365.700000px;}
.x5a_c00347{left:368.100000px;}
.xad_c00347{left:369.150000px;}
.x20_c00347{left:371.400000px;}
.x63_c00347{left:372.750000px;}
.x5b_c00347{left:375.600000px;}
.x17_c00347{left:376.950000px;}
.x69_c00347{left:378.300000px;}
.xd_c00347{left:381.150000px;}
.x5c_c00347{left:382.500000px;}
.xae_c00347{left:383.550000px;}
.x7a_c00347{left:385.500000px;}
.x4d_c00347{left:387.000000px;}
.x47_c00347{left:388.500000px;}
.x7_c00347{left:389.550000px;}
.x37_c00347{left:390.900000px;}
.x21_c00347{left:393.300000px;}
.x27_c00347{left:395.400000px;}
.x5d_c00347{left:397.650000px;}
.x72_c00347{left:400.500000px;}
.x89_c00347{left:402.600000px;}
.x18_c00347{left:404.700000px;}
.x94_c00347{left:406.650000px;}
.x38_c00347{left:408.150000px;}
.x40_c00347{left:409.950000px;}
.x45_c00347{left:412.500000px;}
.xe_c00347{left:414.600000px;}
.xa7_c00347{left:415.800000px;}
.x28_c00347{left:417.750000px;}
.x2d_c00347{left:419.850000px;}
.x73_c00347{left:422.400000px;}
.x8_c00347{left:423.750000px;}
.x7b_c00347{left:425.400000px;}
.x5e_c00347{left:426.750000px;}
.x8b_c00347{left:428.100000px;}
.x6a_c00347{left:429.750000px;}
.x95_c00347{left:431.100000px;}
.x64_c00347{left:432.450000px;}
.xa3_c00347{left:433.500000px;}
.xa8_c00347{left:434.850000px;}
.x4e_c00347{left:436.350000px;}
.x39_c00347{left:438.000000px;}
.x1_c00347{left:441.300000px;}
.x22_c00347{left:442.950000px;}
.x74_c00347{left:444.000000px;}
.x19_c00347{left:448.200000px;}
.x9d_c00347{left:450.300000px;}
.x7d_c00347{left:452.100000px;}
.x4f_c00347{left:454.050000px;}
.x85_c00347{left:455.550000px;}
.x41_c00347{left:457.800000px;}
.x29_c00347{left:460.200000px;}
.x5f_c00347{left:461.700000px;}
.x6b_c00347{left:463.500000px;}
.xb1_c00347{left:468.000000px;}
.x1a_c00347{left:469.050000px;}
.x88_c00347{left:470.100000px;}
.xf_c00347{left:471.150000px;}
.x3a_c00347{left:474.000000px;}
.xa5_c00347{left:475.650000px;}
.x91_c00347{left:477.450000px;}
.x2e_c00347{left:478.950000px;}
.x10_c00347{left:480.450000px;}
.x7e_c00347{left:482.400000px;}
.x2a_c00347{left:484.650000px;}
.x8d_c00347{left:485.850000px;}
.x34_c00347{left:487.350000px;}
.x3b_c00347{left:488.700000px;}
.xa9_c00347{left:490.350000px;}
.x6f_c00347{left:492.150000px;}
.x75_c00347{left:493.350000px;}
.xb_c00347{left:495.300000px;}
.x86_c00347{left:496.650000px;}
.x92_c00347{left:498.000000px;}
.x23_c00347{left:500.850000px;}
.x84_c00347{left:502.800000px;}
.x3c_c00347{left:504.900000px;}
.xa6_c00347{left:506.250000px;}
.x1b_c00347{left:508.950000px;}
.x8e_c00347{left:510.000000px;}
.x7c_c00347{left:511.500000px;}
.x9_c00347{left:517.350000px;}
.x50_c00347{left:519.150000px;}
.x60_c00347{left:520.350000px;}
.x76_c00347{left:521.400000px;}
.x3d_c00347{left:524.400000px;}
.xaf_c00347{left:526.050000px;}
.xa1_c00347{left:528.000000px;}
.x98_c00347{left:546.750000px;}
.xdc_c00347{left:553.650000px;}
.x111_c00347{left:554.700000px;}
.x11c_c00347{left:556.950000px;}
.xd2_c00347{left:559.050000px;}
.x150_c00347{left:560.100000px;}
.x158_c00347{left:561.600000px;}
.xbd_c00347{left:567.300000px;}
.xe2_c00347{left:571.950000px;}
.x11a_c00347{left:573.750000px;}
.x120_c00347{left:575.400000px;}
.x132_c00347{left:576.900000px;}
.x159_c00347{left:580.650000px;}
.xb3_c00347{left:582.150000px;}
.x13e_c00347{left:584.700000px;}
.x143_c00347{left:585.900000px;}
.xfb_c00347{left:588.000000px;}
.x14a_c00347{left:589.650000px;}
.xbe_c00347{left:591.450000px;}
.xea_c00347{left:592.950000px;}
.x124_c00347{left:594.000000px;}
.xf1_c00347{left:596.400000px;}
.x144_c00347{left:598.050000px;}
.xd3_c00347{left:599.400000px;}
.xf6_c00347{left:601.050000px;}
.x136_c00347{left:602.550000px;}
.xcd_c00347{left:603.750000px;}
.x147_c00347{left:606.600000px;}
.xe3_c00347{left:607.650000px;}
.xeb_c00347{left:609.450000px;}
.x127_c00347{left:611.100000px;}
.xf2_c00347{left:612.900000px;}
.x12e_c00347{left:614.100000px;}
.x112_c00347{left:617.700000px;}
.xf7_c00347{left:621.150000px;}
.xd4_c00347{left:624.300000px;}
.xce_c00347{left:625.650000px;}
.x109_c00347{left:627.900000px;}
.x133_c00347{left:630.150000px;}
.x13f_c00347{left:631.200000px;}
.x113_c00347{left:633.600000px;}
.xdd_c00347{left:634.650000px;}
.xbf_c00347{left:636.450000px;}
.x14b_c00347{left:637.500000px;}
.xf3_c00347{left:640.200000px;}
.x123_c00347{left:641.400000px;}
.xb4_c00347{left:643.350000px;}
.x12a_c00347{left:644.850000px;}
.x11b_c00347{left:646.050000px;}
.xc0_c00347{left:647.250000px;}
.x10e_c00347{left:649.950000px;}
.xec_c00347{left:651.900000px;}
.x125_c00347{left:657.300000px;}
.x141_c00347{left:659.700000px;}
.x140_c00347{left:661.050000px;}
.x100_c00347{left:663.450000px;}
.xb5_c00347{left:664.950000px;}
.x11d_c00347{left:667.050000px;}
.xc1_c00347{left:669.150000px;}
.x145_c00347{left:673.650000px;}
.x121_c00347{left:675.000000px;}
.xc2_c00347{left:676.650000px;}
.xb6_c00347{left:680.100000px;}
.x13a_c00347{left:681.600000px;}
.xd5_c00347{left:682.950000px;}
.x105_c00347{left:685.500000px;}
.xcf_c00347{left:687.300000px;}
.x137_c00347{left:688.950000px;}
.xd6_c00347{left:690.450000px;}
.x12f_c00347{left:693.000000px;}
.x156_c00347{left:695.250000px;}
.x10f_c00347{left:697.800000px;}
.xc3_c00347{left:699.750000px;}
.x115_c00347{left:701.250000px;}
.x122_c00347{left:702.300000px;}
.x119_c00347{left:704.400000px;}
.xc4_c00347{left:706.200000px;}
.x101_c00347{left:708.450000px;}
.x118_c00347{left:709.950000px;}
.xe4_c00347{left:712.500000px;}
.xb7_c00347{left:713.550000px;}
.xd0_c00347{left:715.350000px;}
.x2_c00347{left:717.000000px;}
.xd7_c00347{left:719.550000px;}
.xfc_c00347{left:721.950000px;}
.xb8_c00347{left:723.300000px;}
.x106_c00347{left:724.350000px;}
.x10a_c00347{left:725.850000px;}
.x11e_c00347{left:727.200000px;}
.x102_c00347{left:729.000000px;}
.x154_c00347{left:730.200000px;}
.x128_c00347{left:731.700000px;}
.xd8_c00347{left:734.250000px;}
.xf8_c00347{left:737.100000px;}
.xf4_c00347{left:740.100000px;}
.x117_c00347{left:742.350000px;}
.x13b_c00347{left:744.900000px;}
.xe5_c00347{left:747.750000px;}
.xc5_c00347{left:749.400000px;}
.x12b_c00347{left:751.050000px;}
.x103_c00347{left:753.150000px;}
.xd1_c00347{left:754.950000px;}
.xc6_c00347{left:756.900000px;}
.xe6_c00347{left:758.250000px;}
.xde_c00347{left:760.650000px;}
.xc7_c00347{left:764.100000px;}
.x148_c00347{left:768.450000px;}
.x130_c00347{left:769.950000px;}
.xed_c00347{left:773.250000px;}
.xf9_c00347{left:775.950000px;}
.xb9_c00347{left:777.000000px;}
.xc8_c00347{left:778.800000px;}
.x110_c00347{left:781.650000px;}
.x107_c00347{left:783.450000px;}
.xfd_c00347{left:784.950000px;}
.xfa_c00347{left:786.750000px;}
.xdf_c00347{left:787.950000px;}
.x134_c00347{left:791.100000px;}
.xd9_c00347{left:792.450000px;}
.x13c_c00347{left:794.250000px;}
.xe7_c00347{left:795.300000px;}
.x129_c00347{left:799.350000px;}
.xf5_c00347{left:800.550000px;}
.x114_c00347{left:801.750000px;}
.x14c_c00347{left:802.800000px;}
.x10b_c00347{left:804.000000px;}
.x138_c00347{left:805.200000px;}
.x135_c00347{left:806.550000px;}
.x11f_c00347{left:807.900000px;}
.x12c_c00347{left:808.950000px;}
.xba_c00347{left:810.900000px;}
.xe8_c00347{left:812.550000px;}
.x13d_c00347{left:814.350000px;}
.xee_c00347{left:815.400000px;}
.x14d_c00347{left:817.500000px;}
.xc9_c00347{left:819.450000px;}
.x146_c00347{left:822.300000px;}
.x116_c00347{left:824.400000px;}
.xef_c00347{left:825.900000px;}
.x151_c00347{left:827.850000px;}
.xe0_c00347{left:830.100000px;}
.xfe_c00347{left:832.800000px;}
.x108_c00347{left:835.350000px;}
.x155_c00347{left:836.400000px;}
.x131_c00347{left:840.000000px;}
.xbb_c00347{left:841.500000px;}
.x149_c00347{left:843.450000px;}
.xe1_c00347{left:844.800000px;}
.x152_c00347{left:846.150000px;}
.xda_c00347{left:847.200000px;}
.x14e_c00347{left:850.200000px;}
.xff_c00347{left:854.100000px;}
.xf0_c00347{left:856.200000px;}
.x10c_c00347{left:858.300000px;}
.x139_c00347{left:860.250000px;}
.xca_c00347{left:864.150000px;}
.xe9_c00347{left:865.800000px;}
.x14f_c00347{left:867.150000px;}
.x10d_c00347{left:868.800000px;}
.x126_c00347{left:870.300000px;}
.xdb_c00347{left:871.350000px;}
.x12d_c00347{left:874.050000px;}
.xbc_c00347{left:875.700000px;}
.x104_c00347{left:877.350000px;}
.xcb_c00347{left:878.550000px;}
.x15a_c00347{left:881.250000px;}
.x153_c00347{left:883.200000px;}
.x142_c00347{left:885.150000px;}
.xcc_c00347{left:892.950000px;}
.x157_c00347{left:894.900000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls2_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:43.620438pt;}
.ls0_c00347{letter-spacing:49.523810pt;}
.ws3_c00347{word-spacing:-76.190476pt;}
.wsd_c00347{word-spacing:-62.287105pt;}
.ws10_c00347{word-spacing:-11.733333pt;}
.ws11_c00347{word-spacing:0.000000pt;}
.ws0_c00347{word-spacing:11.634820pt;}
.ws4_c00347{word-spacing:13.333333pt;}
.wse_c00347{word-spacing:18.222222pt;}
.ws7_c00347{word-spacing:20.632708pt;}
.ws5_c00347{word-spacing:22.857143pt;}
.wsc_c00347{word-spacing:24.953771pt;}
.ws9_c00347{word-spacing:25.267760pt;}
.wsa_c00347{word-spacing:28.765027pt;}
.ws6_c00347{word-spacing:32.000000pt;}
.ws2_c00347{word-spacing:35.555556pt;}
.ws1_c00347{word-spacing:39.259259pt;}
.wsb_c00347{word-spacing:43.114504pt;}
.ws8_c00347{word-spacing:45.777778pt;}
.wsf_c00347{word-spacing:101.296467pt;}
._1_c00347{margin-left:-49.523810pt;}
._5_c00347{margin-left:-43.620438pt;}
._6_c00347{width:2.595296pt;}
._4_c00347{width:46.215734pt;}
._2_c00347{width:52.698413pt;}
._3_c00347{width:58.098361pt;}
._0_c00347{width:65.925926pt;}
.fs9_c00347{font-size:26.666667pt;}
.fs5_c00347{font-size:37.333333pt;}
.fs7_c00347{font-size:42.666667pt;}
.fs4_c00347{font-size:48.000000pt;}
.fs3_c00347{font-size:53.333333pt;}
.fs1_c00347{font-size:58.666667pt;}
.fs2_c00347{font-size:64.000000pt;}
.fs0_c00347{font-size:69.333333pt;}
.fs6_c00347{font-size:74.666667pt;}
.fs8_c00347{font-size:80.000000pt;}
.fsa_c00347{font-size:85.333333pt;}
.y0_c00347{bottom:0.000000pt;}
.y6a_c00347{bottom:152.266667pt;}
.y69_c00347{bottom:170.133333pt;}
.y37_c00347{bottom:170.933333pt;}
.y68_c00347{bottom:182.666667pt;}
.y36_c00347{bottom:184.000000pt;}
.y67_c00347{bottom:195.466667pt;}
.y35_c00347{bottom:196.133333pt;}
.y66_c00347{bottom:208.266667pt;}
.y34_c00347{bottom:208.666667pt;}
.y65_c00347{bottom:220.800000pt;}
.y33_c00347{bottom:222.133333pt;}
.y32_c00347{bottom:232.666667pt;}
.y64_c00347{bottom:233.600000pt;}
.y31_c00347{bottom:246.133333pt;}
.y63_c00347{bottom:246.400000pt;}
.y62_c00347{bottom:259.200000pt;}
.y30_c00347{bottom:261.866667pt;}
.y61_c00347{bottom:272.000000pt;}
.y2f_c00347{bottom:277.866667pt;}
.y60_c00347{bottom:285.066667pt;}
.y2e_c00347{bottom:296.400000pt;}
.y5f_c00347{bottom:298.400000pt;}
.y5e_c00347{bottom:310.533333pt;}
.y2d_c00347{bottom:311.733333pt;}
.y5d_c00347{bottom:323.600000pt;}
.y2c_c00347{bottom:328.000000pt;}
.y5c_c00347{bottom:336.400000pt;}
.y2b_c00347{bottom:344.000000pt;}
.y5b_c00347{bottom:349.466667pt;}
.y2a_c00347{bottom:359.733333pt;}
.y29_c00347{bottom:375.733333pt;}
.y5a_c00347{bottom:392.133333pt;}
.y28_c00347{bottom:394.533333pt;}
.y59_c00347{bottom:407.466667pt;}
.y27_c00347{bottom:410.533333pt;}
.y58_c00347{bottom:423.733333pt;}
.y26_c00347{bottom:430.133333pt;}
.y57_c00347{bottom:439.066667pt;}
.y25_c00347{bottom:446.400000pt;}
.y56_c00347{bottom:459.200000pt;}
.y24_c00347{bottom:465.600000pt;}
.y55_c00347{bottom:474.933333pt;}
.y23_c00347{bottom:482.266667pt;}
.y54_c00347{bottom:490.933333pt;}
.y22_c00347{bottom:498.266667pt;}
.y53_c00347{bottom:509.733333pt;}
.y21_c00347{bottom:513.866667pt;}
.y52_c00347{bottom:518.400000pt;}
.y51_c00347{bottom:524.533333pt;}
.y20_c00347{bottom:529.866667pt;}
.y50_c00347{bottom:535.466667pt;}
.y4f_c00347{bottom:545.333333pt;}
.y1f_c00347{bottom:545.600000pt;}
.y1e_c00347{bottom:560.266667pt;}
.y4e_c00347{bottom:568.666667pt;}
.y1d_c00347{bottom:577.200000pt;}
.y4d_c00347{bottom:588.133333pt;}
.y1c_c00347{bottom:593.200000pt;}
.y4c_c00347{bottom:608.266667pt;}
.y1b_c00347{bottom:609.200000pt;}
.y1a_c00347{bottom:624.933333pt;}
.y4b_c00347{bottom:628.133333pt;}
.y19_c00347{bottom:640.933333pt;}
.y4a_c00347{bottom:648.000000pt;}
.y18_c00347{bottom:656.933333pt;}
.y49_c00347{bottom:667.866667pt;}
.y17_c00347{bottom:672.933333pt;}
.y16_c00347{bottom:691.866667pt;}
.y48_c00347{bottom:702.133333pt;}
.y15_c00347{bottom:704.666667pt;}
.y14_c00347{bottom:717.733333pt;}
.y13_c00347{bottom:729.200000pt;}
.y47_c00347{bottom:738.266667pt;}
.y12_c00347{bottom:743.333333pt;}
.y10_c00347{bottom:757.466667pt;}
.yf_c00347{bottom:773.200000pt;}
.y46_c00347{bottom:773.733333pt;}
.ye_c00347{bottom:789.466667pt;}
.y45_c00347{bottom:793.200000pt;}
.yd_c00347{bottom:808.933333pt;}
.y44_c00347{bottom:809.466667pt;}
.yc_c00347{bottom:824.933333pt;}
.y43_c00347{bottom:825.466667pt;}
.yb_c00347{bottom:840.266667pt;}
.y42_c00347{bottom:841.466667pt;}
.ya_c00347{bottom:856.533333pt;}
.y41_c00347{bottom:857.466667pt;}
.y9_c00347{bottom:872.266667pt;}
.y40_c00347{bottom:873.466667pt;}
.y11_c00347{bottom:877.466667pt;}
.y8_c00347{bottom:888.266667pt;}
.y3f_c00347{bottom:889.200000pt;}
.y7_c00347{bottom:904.000000pt;}
.y3e_c00347{bottom:905.200000pt;}
.y6_c00347{bottom:919.733333pt;}
.y3d_c00347{bottom:921.200000pt;}
.y3c_c00347{bottom:936.933333pt;}
.y5_c00347{bottom:938.666667pt;}
.y4_c00347{bottom:955.600000pt;}
.y3b_c00347{bottom:955.733333pt;}
.y3a_c00347{bottom:966.933333pt;}
.y3_c00347{bottom:973.466667pt;}
.y39_c00347{bottom:981.066667pt;}
.y2_c00347{bottom:991.066667pt;}
.y38_c00347{bottom:995.200000pt;}
.y1_c00347{bottom:1014.133333pt;}
.hb_c00347{height:26.666667pt;}
.h7_c00347{height:37.333333pt;}
.h9_c00347{height:42.666667pt;}
.h6_c00347{height:48.000000pt;}
.h5_c00347{height:53.333333pt;}
.h3_c00347{height:58.666667pt;}
.h4_c00347{height:64.000000pt;}
.h2_c00347{height:69.333333pt;}
.h8_c00347{height:74.666667pt;}
.ha_c00347{height:80.000000pt;}
.hc_c00347{height:85.333333pt;}
.h1_c00347{height:1126.000000pt;}
.h0_c00347{height:1126.079916pt;}
.w0_c00347{width:853.760009pt;}
.w1_c00347{width:854.000000pt;}
.x0_c00347{left:0.000000pt;}
.x3_c00347{left:173.466667pt;}
.xc_c00347{left:174.666667pt;}
.x8f_c00347{left:175.733333pt;}
.x77_c00347{left:176.666667pt;}
.x96_c00347{left:177.866667pt;}
.xaa_c00347{left:179.866667pt;}
.xa4_c00347{left:185.066667pt;}
.x11_c00347{left:188.000000pt;}
.xa_c00347{left:190.400000pt;}
.x2b_c00347{left:191.466667pt;}
.x82_c00347{left:192.533333pt;}
.x7f_c00347{left:194.000000pt;}
.x9a_c00347{left:194.933333pt;}
.x61_c00347{left:201.066667pt;}
.x6c_c00347{left:202.133333pt;}
.x51_c00347{left:205.733333pt;}
.xb2_c00347{left:206.666667pt;}
.x13_c00347{left:208.000000pt;}
.x83_c00347{left:210.800000pt;}
.x12_c00347{left:214.266667pt;}
.x3e_c00347{left:216.133333pt;}
.x2f_c00347{left:218.133333pt;}
.xab_c00347{left:219.200000pt;}
.x48_c00347{left:220.133333pt;}
.x24_c00347{left:221.866667pt;}
.x1c_c00347{left:223.333333pt;}
.x30_c00347{left:224.800000pt;}
.xb0_c00347{left:226.000000pt;}
.xa0_c00347{left:227.600000pt;}
.x4a_c00347{left:228.800000pt;}
.x65_c00347{left:230.400000pt;}
.x1d_c00347{left:231.333333pt;}
.x87_c00347{left:232.266667pt;}
.x4_c00347{left:235.866667pt;}
.x31_c00347{left:237.600000pt;}
.x97_c00347{left:238.666667pt;}
.x8a_c00347{left:239.733333pt;}
.x80_c00347{left:241.733333pt;}
.x52_c00347{left:242.800000pt;}
.x93_c00347{left:243.866667pt;}
.x90_c00347{left:245.866667pt;}
.x66_c00347{left:247.733333pt;}
.x53_c00347{left:249.466667pt;}
.x42_c00347{left:250.533333pt;}
.x78_c00347{left:252.133333pt;}
.x99_c00347{left:253.200000pt;}
.x9e_c00347{left:254.133333pt;}
.x3f_c00347{left:255.200000pt;}
.x32_c00347{left:256.533333pt;}
.x6d_c00347{left:260.000000pt;}
.x54_c00347{left:262.533333pt;}
.x25_c00347{left:263.733333pt;}
.x14_c00347{left:265.866667pt;}
.x5_c00347{left:267.200000pt;}
.x43_c00347{left:269.066667pt;}
.x9b_c00347{left:270.400000pt;}
.x1e_c00347{left:272.266667pt;}
.x35_c00347{left:274.800000pt;}
.x55_c00347{left:275.733333pt;}
.xa2_c00347{left:277.200000pt;}
.x6e_c00347{left:278.533333pt;}
.x49_c00347{left:280.266667pt;}
.x56_c00347{left:282.133333pt;}
.x8c_c00347{left:283.600000pt;}
.x67_c00347{left:284.800000pt;}
.x4b_c00347{left:286.400000pt;}
.x15_c00347{left:287.333333pt;}
.x57_c00347{left:288.800000pt;}
.x70_c00347{left:289.866667pt;}
.x44_c00347{left:290.800000pt;}
.x9c_c00347{left:293.733333pt;}
.x62_c00347{left:294.800000pt;}
.x26_c00347{left:295.733333pt;}
.x9f_c00347{left:296.666667pt;}
.x68_c00347{left:297.866667pt;}
.x1f_c00347{left:301.333333pt;}
.x2c_c00347{left:303.466667pt;}
.x79_c00347{left:305.200000pt;}
.x36_c00347{left:306.800000pt;}
.xac_c00347{left:308.666667pt;}
.x81_c00347{left:309.600000pt;}
.x16_c00347{left:311.333333pt;}
.x58_c00347{left:314.400000pt;}
.x33_c00347{left:316.000000pt;}
.x46_c00347{left:317.466667pt;}
.x59_c00347{left:320.800000pt;}
.x6_c00347{left:322.533333pt;}
.x71_c00347{left:323.733333pt;}
.x4c_c00347{left:325.066667pt;}
.x5a_c00347{left:327.200000pt;}
.xad_c00347{left:328.133333pt;}
.x20_c00347{left:330.133333pt;}
.x63_c00347{left:331.333333pt;}
.x5b_c00347{left:333.866667pt;}
.x17_c00347{left:335.066667pt;}
.x69_c00347{left:336.266667pt;}
.xd_c00347{left:338.800000pt;}
.x5c_c00347{left:340.000000pt;}
.xae_c00347{left:340.933333pt;}
.x7a_c00347{left:342.666667pt;}
.x4d_c00347{left:344.000000pt;}
.x47_c00347{left:345.333333pt;}
.x7_c00347{left:346.266667pt;}
.x37_c00347{left:347.466667pt;}
.x21_c00347{left:349.600000pt;}
.x27_c00347{left:351.466667pt;}
.x5d_c00347{left:353.466667pt;}
.x72_c00347{left:356.000000pt;}
.x89_c00347{left:357.866667pt;}
.x18_c00347{left:359.733333pt;}
.x94_c00347{left:361.466667pt;}
.x38_c00347{left:362.800000pt;}
.x40_c00347{left:364.400000pt;}
.x45_c00347{left:366.666667pt;}
.xe_c00347{left:368.533333pt;}
.xa7_c00347{left:369.600000pt;}
.x28_c00347{left:371.333333pt;}
.x2d_c00347{left:373.200000pt;}
.x73_c00347{left:375.466667pt;}
.x8_c00347{left:376.666667pt;}
.x7b_c00347{left:378.133333pt;}
.x5e_c00347{left:379.333333pt;}
.x8b_c00347{left:380.533333pt;}
.x6a_c00347{left:382.000000pt;}
.x95_c00347{left:383.200000pt;}
.x64_c00347{left:384.400000pt;}
.xa3_c00347{left:385.333333pt;}
.xa8_c00347{left:386.533333pt;}
.x4e_c00347{left:387.866667pt;}
.x39_c00347{left:389.333333pt;}
.x1_c00347{left:392.266667pt;}
.x22_c00347{left:393.733333pt;}
.x74_c00347{left:394.666667pt;}
.x19_c00347{left:398.400000pt;}
.x9d_c00347{left:400.266667pt;}
.x7d_c00347{left:401.866667pt;}
.x4f_c00347{left:403.600000pt;}
.x85_c00347{left:404.933333pt;}
.x41_c00347{left:406.933333pt;}
.x29_c00347{left:409.066667pt;}
.x5f_c00347{left:410.400000pt;}
.x6b_c00347{left:412.000000pt;}
.xb1_c00347{left:416.000000pt;}
.x1a_c00347{left:416.933333pt;}
.x88_c00347{left:417.866667pt;}
.xf_c00347{left:418.800000pt;}
.x3a_c00347{left:421.333333pt;}
.xa5_c00347{left:422.800000pt;}
.x91_c00347{left:424.400000pt;}
.x2e_c00347{left:425.733333pt;}
.x10_c00347{left:427.066667pt;}
.x7e_c00347{left:428.800000pt;}
.x2a_c00347{left:430.800000pt;}
.x8d_c00347{left:431.866667pt;}
.x34_c00347{left:433.200000pt;}
.x3b_c00347{left:434.400000pt;}
.xa9_c00347{left:435.866667pt;}
.x6f_c00347{left:437.466667pt;}
.x75_c00347{left:438.533333pt;}
.xb_c00347{left:440.266667pt;}
.x86_c00347{left:441.466667pt;}
.x92_c00347{left:442.666667pt;}
.x23_c00347{left:445.200000pt;}
.x84_c00347{left:446.933333pt;}
.x3c_c00347{left:448.800000pt;}
.xa6_c00347{left:450.000000pt;}
.x1b_c00347{left:452.400000pt;}
.x8e_c00347{left:453.333333pt;}
.x7c_c00347{left:454.666667pt;}
.x9_c00347{left:459.866667pt;}
.x50_c00347{left:461.466667pt;}
.x60_c00347{left:462.533333pt;}
.x76_c00347{left:463.466667pt;}
.x3d_c00347{left:466.133333pt;}
.xaf_c00347{left:467.600000pt;}
.xa1_c00347{left:469.333333pt;}
.x98_c00347{left:486.000000pt;}
.xdc_c00347{left:492.133333pt;}
.x111_c00347{left:493.066667pt;}
.x11c_c00347{left:495.066667pt;}
.xd2_c00347{left:496.933333pt;}
.x150_c00347{left:497.866667pt;}
.x158_c00347{left:499.200000pt;}
.xbd_c00347{left:504.266667pt;}
.xe2_c00347{left:508.400000pt;}
.x11a_c00347{left:510.000000pt;}
.x120_c00347{left:511.466667pt;}
.x132_c00347{left:512.800000pt;}
.x159_c00347{left:516.133333pt;}
.xb3_c00347{left:517.466667pt;}
.x13e_c00347{left:519.733333pt;}
.x143_c00347{left:520.800000pt;}
.xfb_c00347{left:522.666667pt;}
.x14a_c00347{left:524.133333pt;}
.xbe_c00347{left:525.733333pt;}
.xea_c00347{left:527.066667pt;}
.x124_c00347{left:528.000000pt;}
.xf1_c00347{left:530.133333pt;}
.x144_c00347{left:531.600000pt;}
.xd3_c00347{left:532.800000pt;}
.xf6_c00347{left:534.266667pt;}
.x136_c00347{left:535.600000pt;}
.xcd_c00347{left:536.666667pt;}
.x147_c00347{left:539.200000pt;}
.xe3_c00347{left:540.133333pt;}
.xeb_c00347{left:541.733333pt;}
.x127_c00347{left:543.200000pt;}
.xf2_c00347{left:544.800000pt;}
.x12e_c00347{left:545.866667pt;}
.x112_c00347{left:549.066667pt;}
.xf7_c00347{left:552.133333pt;}
.xd4_c00347{left:554.933333pt;}
.xce_c00347{left:556.133333pt;}
.x109_c00347{left:558.133333pt;}
.x133_c00347{left:560.133333pt;}
.x13f_c00347{left:561.066667pt;}
.x113_c00347{left:563.200000pt;}
.xdd_c00347{left:564.133333pt;}
.xbf_c00347{left:565.733333pt;}
.x14b_c00347{left:566.666667pt;}
.xf3_c00347{left:569.066667pt;}
.x123_c00347{left:570.133333pt;}
.xb4_c00347{left:571.866667pt;}
.x12a_c00347{left:573.200000pt;}
.x11b_c00347{left:574.266667pt;}
.xc0_c00347{left:575.333333pt;}
.x10e_c00347{left:577.733333pt;}
.xec_c00347{left:579.466667pt;}
.x125_c00347{left:584.266667pt;}
.x141_c00347{left:586.400000pt;}
.x140_c00347{left:587.600000pt;}
.x100_c00347{left:589.733333pt;}
.xb5_c00347{left:591.066667pt;}
.x11d_c00347{left:592.933333pt;}
.xc1_c00347{left:594.800000pt;}
.x145_c00347{left:598.800000pt;}
.x121_c00347{left:600.000000pt;}
.xc2_c00347{left:601.466667pt;}
.xb6_c00347{left:604.533333pt;}
.x13a_c00347{left:605.866667pt;}
.xd5_c00347{left:607.066667pt;}
.x105_c00347{left:609.333333pt;}
.xcf_c00347{left:610.933333pt;}
.x137_c00347{left:612.400000pt;}
.xd6_c00347{left:613.733333pt;}
.x12f_c00347{left:616.000000pt;}
.x156_c00347{left:618.000000pt;}
.x10f_c00347{left:620.266667pt;}
.xc3_c00347{left:622.000000pt;}
.x115_c00347{left:623.333333pt;}
.x122_c00347{left:624.266667pt;}
.x119_c00347{left:626.133333pt;}
.xc4_c00347{left:627.733333pt;}
.x101_c00347{left:629.733333pt;}
.x118_c00347{left:631.066667pt;}
.xe4_c00347{left:633.333333pt;}
.xb7_c00347{left:634.266667pt;}
.xd0_c00347{left:635.866667pt;}
.x2_c00347{left:637.333333pt;}
.xd7_c00347{left:639.600000pt;}
.xfc_c00347{left:641.733333pt;}
.xb8_c00347{left:642.933333pt;}
.x106_c00347{left:643.866667pt;}
.x10a_c00347{left:645.200000pt;}
.x11e_c00347{left:646.400000pt;}
.x102_c00347{left:648.000000pt;}
.x154_c00347{left:649.066667pt;}
.x128_c00347{left:650.400000pt;}
.xd8_c00347{left:652.666667pt;}
.xf8_c00347{left:655.200000pt;}
.xf4_c00347{left:657.866667pt;}
.x117_c00347{left:659.866667pt;}
.x13b_c00347{left:662.133333pt;}
.xe5_c00347{left:664.666667pt;}
.xc5_c00347{left:666.133333pt;}
.x12b_c00347{left:667.600000pt;}
.x103_c00347{left:669.466667pt;}
.xd1_c00347{left:671.066667pt;}
.xc6_c00347{left:672.800000pt;}
.xe6_c00347{left:674.000000pt;}
.xde_c00347{left:676.133333pt;}
.xc7_c00347{left:679.200000pt;}
.x148_c00347{left:683.066667pt;}
.x130_c00347{left:684.400000pt;}
.xed_c00347{left:687.333333pt;}
.xf9_c00347{left:689.733333pt;}
.xb9_c00347{left:690.666667pt;}
.xc8_c00347{left:692.266667pt;}
.x110_c00347{left:694.800000pt;}
.x107_c00347{left:696.400000pt;}
.xfd_c00347{left:697.733333pt;}
.xfa_c00347{left:699.333333pt;}
.xdf_c00347{left:700.400000pt;}
.x134_c00347{left:703.200000pt;}
.xd9_c00347{left:704.400000pt;}
.x13c_c00347{left:706.000000pt;}
.xe7_c00347{left:706.933333pt;}
.x129_c00347{left:710.533333pt;}
.xf5_c00347{left:711.600000pt;}
.x114_c00347{left:712.666667pt;}
.x14c_c00347{left:713.600000pt;}
.x10b_c00347{left:714.666667pt;}
.x138_c00347{left:715.733333pt;}
.x135_c00347{left:716.933333pt;}
.x11f_c00347{left:718.133333pt;}
.x12c_c00347{left:719.066667pt;}
.xba_c00347{left:720.800000pt;}
.xe8_c00347{left:722.266667pt;}
.x13d_c00347{left:723.866667pt;}
.xee_c00347{left:724.800000pt;}
.x14d_c00347{left:726.666667pt;}
.xc9_c00347{left:728.400000pt;}
.x146_c00347{left:730.933333pt;}
.x116_c00347{left:732.800000pt;}
.xef_c00347{left:734.133333pt;}
.x151_c00347{left:735.866667pt;}
.xe0_c00347{left:737.866667pt;}
.xfe_c00347{left:740.266667pt;}
.x108_c00347{left:742.533333pt;}
.x155_c00347{left:743.466667pt;}
.x131_c00347{left:746.666667pt;}
.xbb_c00347{left:748.000000pt;}
.x149_c00347{left:749.733333pt;}
.xe1_c00347{left:750.933333pt;}
.x152_c00347{left:752.133333pt;}
.xda_c00347{left:753.066667pt;}
.x14e_c00347{left:755.733333pt;}
.xff_c00347{left:759.200000pt;}
.xf0_c00347{left:761.066667pt;}
.x10c_c00347{left:762.933333pt;}
.x139_c00347{left:764.666667pt;}
.xca_c00347{left:768.133333pt;}
.xe9_c00347{left:769.600000pt;}
.x14f_c00347{left:770.800000pt;}
.x10d_c00347{left:772.266667pt;}
.x126_c00347{left:773.600000pt;}
.xdb_c00347{left:774.533333pt;}
.x12d_c00347{left:776.933333pt;}
.xbc_c00347{left:778.400000pt;}
.x104_c00347{left:779.866667pt;}
.xcb_c00347{left:780.933333pt;}
.x15a_c00347{left:783.333333pt;}
.x153_c00347{left:785.066667pt;}
.x142_c00347{left:786.800000pt;}
.xcc_c00347{left:793.733333pt;}
.x157_c00347{left:795.466667pt;}
}





/* 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_c00348 {
    display:none;
  }
  .loading-indicator_c00348.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00348 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_c00348 { 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_c00348" -> "#page-container .classname_c00348")
 */
.pf_c00348 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00348 { /* 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_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00348 { /* 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_c00348 { /* 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_c00348 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00348 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00348 {overflow:visible;}
  }
}
.c_c00348 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00348 { /* 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_c00348:after { /* webkit #35443 */
  content: '';
}
.t_c00348:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00348 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 */
}
.__c00348 { /* 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_c00348 { /* info for Javascript */
  display:none;
}
.l_c00348 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00348 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00348 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00348: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_c00348 {
    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_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00348.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_c00348 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00348;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.000000;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;}
.m73_c00348{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mce_c00348{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m59_c00348{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.me3_c00348{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.med_c00348{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.me2_c00348{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00348{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m29_c00348{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.me6_c00348{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m26_c00348{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00348{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mef_c00348{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m109_c00348{transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00348{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00348{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m115_c00348{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m76_c00348{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00348{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.md8_c00348{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00348{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00348{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00348{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m9_c00348{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00348{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m41_c00348{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00348{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mda_c00348{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00348{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m90_c00348{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m14_c00348{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00348{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mae_c00348{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mf_c00348{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m44_c00348{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m95_c00348{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00348{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md9_c00348{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m46_c00348{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m17_c00348{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00348{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m64_c00348{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00348{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m99_c00348{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m112_c00348{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00348{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m89_c00348{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.maa_c00348{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m62_c00348{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md7_c00348{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m24_c00348{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m63_c00348{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00348{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m12_c00348{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m28_c00348{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00348{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m69_c00348{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00348{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m91_c00348{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00348{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m68_c00348{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00348{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00348{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m8_c00348{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00348{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m52_c00348{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m92_c00348{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m7_c00348{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00348{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m93_c00348{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00348{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m101_c00348{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00348{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00348{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00348{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m47_c00348{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00348{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.me_c00348{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m65_c00348{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00348{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m82_c00348{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00348{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00348{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m77_c00348{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00348{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00348{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m81_c00348{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m67_c00348{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m113_c00348{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00348{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00348{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00348{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m15_c00348{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mff_c00348{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00348{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00348{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m49_c00348{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m13_c00348{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00348{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m57_c00348{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00348{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00348{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00348{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m80_c00348{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma_c00348{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00348{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m19_c00348{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2_c00348{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00348{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00348{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.md_c00348{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00348{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me1_c00348{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m60_c00348{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m96_c00348{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md1_c00348{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.me5_c00348{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m40_c00348{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00348{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m103_c00348{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m11_c00348{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m105_c00348{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00348{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m87_c00348{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00348{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m43_c00348{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00348{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00348{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m22_c00348{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00348{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m100_c00348{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mc_c00348{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m108_c00348{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5_c00348{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me4_c00348{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00348{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m16_c00348{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00348{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md2_c00348{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m32_c00348{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00348{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00348{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00348{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m61_c00348{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m20_c00348{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00348{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m27_c00348{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m97_c00348{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m74_c00348{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m39_c00348{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m42_c00348{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m88_c00348{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m55_c00348{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md4_c00348{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00348{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m58_c00348{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00348{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00348{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m45_c00348{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mad_c00348{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00348{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00348{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00348{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mca_c00348{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m38_c00348{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m54_c00348{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00348{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00348{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00348{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00348{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m72_c00348{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00348{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00348{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m83_c00348{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md0_c00348{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00348{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m94_c00348{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m21_c00348{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00348{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m23_c00348{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m56_c00348{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00348{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00348{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00348{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00348{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00348{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m48_c00348{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m53_c00348{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m18_c00348{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m35_c00348{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m25_c00348{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10_c00348{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00348{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m51_c00348{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00348{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m70_c00348{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m36_c00348{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m75_c00348{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00348{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.me9_c00348{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m50_c00348{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m30_c00348{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m106_c00348{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00348{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m111_c00348{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m66_c00348{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m85_c00348{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m98_c00348{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m104_c00348{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb_c00348{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m33_c00348{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00348{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00348{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m79_c00348{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m110_c00348{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00348{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m31_c00348{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00348{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m71_c00348{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00348{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00348{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00348{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00348{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m37_c00348{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00348{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00348{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00348{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00348{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mab_c00348{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00348{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00348{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m78_c00348{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00348{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m34_c00348{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00348{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.md5_c00348{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00348{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00348{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me8_c00348{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00348{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00348{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00348{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00348{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00348{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md3_c00348{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00348{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mde_c00348{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00348{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00348{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00348{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00348{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.md6_c00348{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.meb_c00348{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00348{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00348{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00348{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00348{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00348{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m107_c00348{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m102_c00348{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.maf_c00348{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.mec_c00348{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m86_c00348{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m114_c00348{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mac_c00348{transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376250,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);}
.mee_c00348{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.me7_c00348{transform:matrix(0.449000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00348{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.me0_c00348{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00348{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00348{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00348{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mea_c00348{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.mba_c00348{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls0_c00348{letter-spacing:0.000000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{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__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00348{word-spacing:-11.855247px;}
.ws9_c00348{word-spacing:-7.951965px;}
.ws4_c00348{word-spacing:-4.519651px;}
.ws2_c00348{word-spacing:-3.690832px;}
.wsa_c00348{word-spacing:-3.366812px;}
.wsb_c00348{word-spacing:0.000000px;}
.ws0_c00348{word-spacing:1.024390px;}
.ws3_c00348{word-spacing:16.977654px;}
.ws8_c00348{word-spacing:25.714286px;}
.ws7_c00348{word-spacing:40.000000px;}
.ws5_c00348{word-spacing:174.627838px;}
.ws6_c00348{word-spacing:177.589339px;}
._0_c00348{width:26.366707px;}
.fc0_c00348{color:transparent;}
.fs6_c00348{font-size:24.000000px;}
.fs5_c00348{font-size:30.000000px;}
.fs8_c00348{font-size:36.000000px;}
.fs7_c00348{font-size:42.000000px;}
.fs4_c00348{font-size:54.000000px;}
.fs3_c00348{font-size:60.000000px;}
.fs2_c00348{font-size:66.000000px;}
.fs1_c00348{font-size:72.000000px;}
.fs0_c00348{font-size:96.000000px;}
.y0_c00348{bottom:0.000000px;}
.y69_c00348{bottom:172.800000px;}
.y31_c00348{bottom:190.800000px;}
.y30_c00348{bottom:208.500000px;}
.y68_c00348{bottom:208.800000px;}
.y67_c00348{bottom:226.500000px;}
.y2f_c00348{bottom:230.700000px;}
.y66_c00348{bottom:248.400000px;}
.y2e_c00348{bottom:248.700000px;}
.y65_c00348{bottom:265.950000px;}
.y2d_c00348{bottom:266.700000px;}
.y64_c00348{bottom:284.250000px;}
.y2c_c00348{bottom:284.400000px;}
.y63_c00348{bottom:302.250000px;}
.y2b_c00348{bottom:306.450000px;}
.y62_c00348{bottom:319.950000px;}
.y2a_c00348{bottom:324.750000px;}
.y61_c00348{bottom:337.950000px;}
.y29_c00348{bottom:343.050000px;}
.y60_c00348{bottom:355.950000px;}
.y28_c00348{bottom:360.750000px;}
.y5f_c00348{bottom:373.650000px;}
.y27_c00348{bottom:378.750000px;}
.y5e_c00348{bottom:391.650000px;}
.y26_c00348{bottom:401.100000px;}
.y5d_c00348{bottom:409.350000px;}
.y25_c00348{bottom:418.500000px;}
.y5c_c00348{bottom:427.350000px;}
.y24_c00348{bottom:436.200000px;}
.y5b_c00348{bottom:445.050000px;}
.y23_c00348{bottom:453.900000px;}
.y5a_c00348{bottom:462.750000px;}
.y22_c00348{bottom:471.900000px;}
.y59_c00348{bottom:480.450000px;}
.y21_c00348{bottom:489.900000px;}
.y58_c00348{bottom:498.150000px;}
.y20_c00348{bottom:511.950000px;}
.y57_c00348{bottom:516.450000px;}
.y1f_c00348{bottom:530.250000px;}
.y56_c00348{bottom:534.450000px;}
.y55_c00348{bottom:552.150000px;}
.y1e_c00348{bottom:556.500000px;}
.y54_c00348{bottom:570.150000px;}
.y1d_c00348{bottom:574.800000px;}
.y53_c00348{bottom:588.150000px;}
.y1c_c00348{bottom:592.500000px;}
.y52_c00348{bottom:605.850000px;}
.y1b_c00348{bottom:614.100000px;}
.y51_c00348{bottom:623.550000px;}
.y1a_c00348{bottom:632.400000px;}
.y4f_c00348{bottom:648.300000px;}
.y4c_c00348{bottom:649.050000px;}
.y19_c00348{bottom:650.100000px;}
.y4e_c00348{bottom:663.900000px;}
.y4b_c00348{bottom:664.200000px;}
.y18_c00348{bottom:668.100000px;}
.y4a_c00348{bottom:677.550000px;}
.y4d_c00348{bottom:678.300000px;}
.y17_c00348{bottom:685.800000px;}
.y49_c00348{bottom:692.700000px;}
.y16_c00348{bottom:704.100000px;}
.y48_c00348{bottom:707.100000px;}
.y50_c00348{bottom:716.700000px;}
.y47_c00348{bottom:721.500000px;}
.y15_c00348{bottom:730.650000px;}
.y46_c00348{bottom:735.150000px;}
.y14_c00348{bottom:748.350000px;}
.y45_c00348{bottom:749.100000px;}
.y44_c00348{bottom:765.000000px;}
.y13_c00348{bottom:766.050000px;}
.y12_c00348{bottom:788.100000px;}
.y43_c00348{bottom:788.400000px;}
.y42_c00348{bottom:806.400000px;}
.y11_c00348{bottom:810.750000px;}
.y41_c00348{bottom:824.400000px;}
.y10_c00348{bottom:828.750000px;}
.y40_c00348{bottom:842.100000px;}
.yf_c00348{bottom:846.000000px;}
.y3f_c00348{bottom:859.650000px;}
.ye_c00348{bottom:867.600000px;}
.y3e_c00348{bottom:880.500000px;}
.yd_c00348{bottom:890.250000px;}
.y3d_c00348{bottom:898.650000px;}
.yc_c00348{bottom:911.850000px;}
.y3c_c00348{bottom:916.650000px;}
.y3b_c00348{bottom:934.350000px;}
.yb_c00348{bottom:934.500000px;}
.y3a_c00348{bottom:952.050000px;}
.ya_c00348{bottom:952.500000px;}
.y39_c00348{bottom:970.050000px;}
.y9_c00348{bottom:979.050000px;}
.y38_c00348{bottom:987.750000px;}
.y8_c00348{bottom:996.750000px;}
.y37_c00348{bottom:1006.050000px;}
.y7_c00348{bottom:1014.450000px;}
.y36_c00348{bottom:1023.300000px;}
.y6_c00348{bottom:1040.400000px;}
.y35_c00348{bottom:1041.000000px;}
.y34_c00348{bottom:1059.000000px;}
.y5_c00348{bottom:1062.900000px;}
.y33_c00348{bottom:1077.000000px;}
.y4_c00348{bottom:1080.900000px;}
.y32_c00348{bottom:1094.700000px;}
.y3_c00348{bottom:1098.600000px;}
.y2_c00348{bottom:1116.300000px;}
.y1_c00348{bottom:1143.300000px;}
.h8_c00348{height:24.000000px;}
.h7_c00348{height:30.000000px;}
.ha_c00348{height:36.000000px;}
.h9_c00348{height:42.000000px;}
.h6_c00348{height:54.000000px;}
.h5_c00348{height:60.000000px;}
.h4_c00348{height:66.000000px;}
.h3_c00348{height:72.000000px;}
.h2_c00348{height:96.000000px;}
.h1_c00348{height:1269.000000px;}
.h0_c00348{height:1269.359985px;}
.w0_c00348{width:960.480010px;}
.w1_c00348{width:960.750000px;}
.x0_c00348{left:0.000000px;}
.x66_c00348{left:107.400000px;}
.x2f_c00348{left:108.450000px;}
.x3_c00348{left:109.500000px;}
.x78_c00348{left:122.700000px;}
.x22_c00348{left:127.050000px;}
.x1a_c00348{left:129.300000px;}
.x4_c00348{left:140.850000px;}
.x4b_c00348{left:142.350000px;}
.x29_c00348{left:145.650000px;}
.x71_c00348{left:148.200000px;}
.x5f_c00348{left:151.350000px;}
.x4c_c00348{left:153.150000px;}
.x73_c00348{left:156.300000px;}
.x82_c00348{left:158.550000px;}
.x1b_c00348{left:161.400000px;}
.x3a_c00348{left:163.800000px;}
.x12_c00348{left:165.450000px;}
.x5_c00348{left:168.150000px;}
.x5b_c00348{left:169.500000px;}
.xb_c00348{left:171.450000px;}
.x52_c00348{left:172.800000px;}
.x4d_c00348{left:174.000000px;}
.x54_c00348{left:175.350000px;}
.x3f_c00348{left:177.300000px;}
.x6a_c00348{left:179.100000px;}
.x79_c00348{left:181.350000px;}
.x13_c00348{left:182.700000px;}
.x74_c00348{left:187.650000px;}
.x62_c00348{left:189.150000px;}
.x7c_c00348{left:191.850000px;}
.x58_c00348{left:194.250000px;}
.x87_c00348{left:195.300000px;}
.xc_c00348{left:197.400000px;}
.x84_c00348{left:198.600000px;}
.x8a_c00348{left:199.800000px;}
.x63_c00348{left:201.000000px;}
.x70_c00348{left:202.350000px;}
.x88_c00348{left:204.600000px;}
.x47_c00348{left:206.850000px;}
.x50_c00348{left:208.050000px;}
.x14_c00348{left:209.400000px;}
.x3b_c00348{left:211.350000px;}
.x72_c00348{left:213.000000px;}
.x1c_c00348{left:214.350000px;}
.x8b_c00348{left:218.850000px;}
.x89_c00348{left:220.050000px;}
.x2a_c00348{left:221.250000px;}
.x34_c00348{left:222.450000px;}
.x6_c00348{left:226.500000px;}
.x3c_c00348{left:229.050000px;}
.x8d_c00348{left:230.400000px;}
.x23_c00348{left:231.450000px;}
.x30_c00348{left:233.400000px;}
.xd_c00348{left:234.900000px;}
.x55_c00348{left:236.250000px;}
.x67_c00348{left:238.800000px;}
.x3d_c00348{left:240.150000px;}
.x43_c00348{left:241.650000px;}
.x35_c00348{left:243.750000px;}
.x32_c00348{left:245.850000px;}
.x1d_c00348{left:251.400000px;}
.x31_c00348{left:254.250000px;}
.x6d_c00348{left:258.900000px;}
.x7a_c00348{left:260.250000px;}
.x15_c00348{left:261.300000px;}
.x85_c00348{left:262.650000px;}
.x59_c00348{left:265.500000px;}
.x1e_c00348{left:268.350000px;}
.x6f_c00348{left:269.850000px;}
.x3e_c00348{left:273.300000px;}
.x5a_c00348{left:277.350000px;}
.x7d_c00348{left:280.350000px;}
.x60_c00348{left:283.050000px;}
.x7_c00348{left:286.950000px;}
.x36_c00348{left:288.000000px;}
.x24_c00348{left:289.050000px;}
.xe_c00348{left:291.450000px;}
.x2b_c00348{left:293.550000px;}
.x6e_c00348{left:294.600000px;}
.x48_c00348{left:295.800000px;}
.x40_c00348{left:298.350000px;}
.x4e_c00348{left:299.700000px;}
.x7e_c00348{left:301.950000px;}
.x33_c00348{left:303.150000px;}
.x1f_c00348{left:304.350000px;}
.x44_c00348{left:306.450000px;}
.xf_c00348{left:308.400000px;}
.x68_c00348{left:309.600000px;}
.x51_c00348{left:311.400000px;}
.x64_c00348{left:313.050000px;}
.x25_c00348{left:314.550000px;}
.x16_c00348{left:315.600000px;}
.x2c_c00348{left:316.950000px;}
.x41_c00348{left:319.650000px;}
.x5c_c00348{left:322.200000px;}
.x37_c00348{left:326.100000px;}
.x75_c00348{left:327.150000px;}
.x17_c00348{left:328.500000px;}
.x10_c00348{left:331.050000px;}
.x26_c00348{left:335.100000px;}
.x1_c00348{left:336.600000px;}
.x8_c00348{left:337.650000px;}
.x7b_c00348{left:339.450000px;}
.x20_c00348{left:343.200000px;}
.x18_c00348{left:345.000000px;}
.x45_c00348{left:346.800000px;}
.x6b_c00348{left:348.000000px;}
.x7f_c00348{left:349.050000px;}
.x53_c00348{left:351.150000px;}
.x2d_c00348{left:354.750000px;}
.x77_c00348{left:357.000000px;}
.x80_c00348{left:359.100000px;}
.x38_c00348{left:360.600000px;}
.x5e_c00348{left:362.400000px;}
.x21_c00348{left:364.800000px;}
.x69_c00348{left:368.250000px;}
.x56_c00348{left:370.350000px;}
.x49_c00348{left:371.700000px;}
.x42_c00348{left:374.400000px;}
.x86_c00348{left:376.050000px;}
.x61_c00348{left:377.100000px;}
.x39_c00348{left:378.300000px;}
.x57_c00348{left:379.350000px;}
.x5d_c00348{left:382.650000px;}
.x4f_c00348{left:387.450000px;}
.x65_c00348{left:390.750000px;}
.x9_c00348{left:393.450000px;}
.x76_c00348{left:396.600000px;}
.x27_c00348{left:398.100000px;}
.x4a_c00348{left:399.750000px;}
.x11_c00348{left:401.250000px;}
.x81_c00348{left:402.300000px;}
.x6c_c00348{left:403.500000px;}
.x83_c00348{left:406.950000px;}
.x2e_c00348{left:409.050000px;}
.x19_c00348{left:411.600000px;}
.x8c_c00348{left:413.250000px;}
.xa_c00348{left:415.050000px;}
.x46_c00348{left:417.450000px;}
.x28_c00348{left:425.400000px;}
.x11e_c00348{left:448.200000px;}
.xd6_c00348{left:450.300000px;}
.x8e_c00348{left:453.600000px;}
.xc7_c00348{left:465.300000px;}
.x102_c00348{left:466.500000px;}
.xa6_c00348{left:467.850000px;}
.x9d_c00348{left:469.500000px;}
.xf3_c00348{left:478.350000px;}
.x95_c00348{left:487.500000px;}
.x110_c00348{left:492.150000px;}
.x8f_c00348{left:494.250000px;}
.xd7_c00348{left:495.300000px;}
.xc8_c00348{left:496.950000px;}
.x11a_c00348{left:499.050000px;}
.xa7_c00348{left:500.250000px;}
.xcf_c00348{left:502.800000px;}
.xbe_c00348{left:504.900000px;}
.x11f_c00348{left:506.100000px;}
.x9e_c00348{left:510.150000px;}
.xb4_c00348{left:512.250000px;}
.x121_c00348{left:513.450000px;}
.x113_c00348{left:516.900000px;}
.xb0_c00348{left:518.100000px;}
.xe3_c00348{left:519.450000px;}
.x9f_c00348{left:521.700000px;}
.xd0_c00348{left:523.650000px;}
.xac_c00348{left:525.900000px;}
.x90_c00348{left:528.450000px;}
.x10a_c00348{left:530.100000px;}
.xb5_c00348{left:533.550000px;}
.xa8_c00348{left:535.500000px;}
.xc9_c00348{left:537.300000px;}
.xee_c00348{left:538.800000px;}
.x104_c00348{left:540.000000px;}
.xbf_c00348{left:544.050000px;}
.x11c_c00348{left:545.550000px;}
.xde_c00348{left:547.500000px;}
.x96_c00348{left:549.000000px;}
.x107_c00348{left:550.800000px;}
.xd3_c00348{left:551.850000px;}
.xb1_c00348{left:554.100000px;}
.xef_c00348{left:556.050000px;}
.xa9_c00348{left:557.100000px;}
.x116_c00348{left:558.150000px;}
.x108_c00348{left:560.850000px;}
.xd8_c00348{left:563.400000px;}
.xbc_c00348{left:565.200000px;}
.xc3_c00348{left:568.200000px;}
.x97_c00348{left:570.300000px;}
.xe9_c00348{left:572.400000px;}
.x11b_c00348{left:575.100000px;}
.xca_c00348{left:576.150000px;}
.x105_c00348{left:578.100000px;}
.xa0_c00348{left:579.300000px;}
.xfe_c00348{left:580.500000px;}
.xfc_c00348{left:585.600000px;}
.xb6_c00348{left:587.550000px;}
.xf0_c00348{left:588.750000px;}
.xf7_c00348{left:589.800000px;}
.xc0_c00348{left:591.150000px;}
.x111_c00348{left:592.950000px;}
.xdb_c00348{left:594.300000px;}
.x98_c00348{left:596.550000px;}
.xa1_c00348{left:599.100000px;}
.x10e_c00348{left:600.600000px;}
.x91_c00348{left:601.950000px;}
.xdf_c00348{left:603.750000px;}
.x10b_c00348{left:606.000000px;}
.xf1_c00348{left:608.250000px;}
.xff_c00348{left:610.800000px;}
.xea_c00348{left:612.000000px;}
.xd9_c00348{left:615.300000px;}
.xcb_c00348{left:616.500000px;}
.xb7_c00348{left:618.150000px;}
.xd1_c00348{left:621.600000px;}
.x99_c00348{left:622.800000px;}
.x106_c00348{left:625.200000px;}
.x92_c00348{left:627.900000px;}
.xeb_c00348{left:631.050000px;}
.xfd_c00348{left:634.500000px;}
.xb8_c00348{left:635.850000px;}
.xaa_c00348{left:638.400000px;}
.xd4_c00348{left:640.050000px;}
.x103_c00348{left:642.000000px;}
.x10c_c00348{left:643.050000px;}
.xcc_c00348{left:644.250000px;}
.x9a_c00348{left:646.200000px;}
.x117_c00348{left:648.750000px;}
.xb2_c00348{left:650.850000px;}
.xc4_c00348{left:652.050000px;}
.x120_c00348{left:654.150000px;}
.x118_c00348{left:655.350000px;}
.xe4_c00348{left:656.550000px;}
.xad_c00348{left:658.050000px;}
.x10f_c00348{left:659.700000px;}
.x100_c00348{left:661.200000px;}
.xa2_c00348{left:663.150000px;}
.x10d_c00348{left:666.150000px;}
.xcd_c00348{left:667.350000px;}
.x109_c00348{left:669.150000px;}
.x93_c00348{left:670.350000px;}
.x122_c00348{left:671.400000px;}
.xb9_c00348{left:672.600000px;}
.xf5_c00348{left:675.000000px;}
.xec_c00348{left:677.850000px;}
.xf8_c00348{left:679.800000px;}
.xc1_c00348{left:681.750000px;}
.xdc_c00348{left:684.000000px;}
.x101_c00348{left:685.350000px;}
.xe0_c00348{left:686.550000px;}
.xe6_c00348{left:689.400000px;}
.x9b_c00348{left:693.000000px;}
.xf9_c00348{left:694.200000px;}
.xb3_c00348{left:695.550000px;}
.xa3_c00348{left:697.650000px;}
.xe1_c00348{left:700.200000px;}
.xdd_c00348{left:702.000000px;}
.xe7_c00348{left:703.800000px;}
.xae_c00348{left:706.650000px;}
.xed_c00348{left:708.150000px;}
.xbd_c00348{left:711.000000px;}
.xc5_c00348{left:712.950000px;}
.xba_c00348{left:715.050000px;}
.xf6_c00348{left:716.100000px;}
.xf2_c00348{left:717.450000px;}
.xfb_c00348{left:718.650000px;}
.x124_c00348{left:721.050000px;}
.xe2_c00348{left:723.300000px;}
.x94_c00348{left:724.650000px;}
.x119_c00348{left:731.700000px;}
.xce_c00348{left:735.000000px;}
.x11d_c00348{left:737.400000px;}
.xd2_c00348{left:738.450000px;}
.xa4_c00348{left:740.100000px;}
.x114_c00348{left:741.600000px;}
.xfa_c00348{left:744.150000px;}
.x123_c00348{left:745.950000px;}
.xaf_c00348{left:747.750000px;}
.xab_c00348{left:750.450000px;}
.xda_c00348{left:752.550000px;}
.x9c_c00348{left:754.200000px;}
.x115_c00348{left:756.750000px;}
.xe8_c00348{left:758.550000px;}
.x2_c00348{left:759.900000px;}
.xc2_c00348{left:763.500000px;}
.xbb_c00348{left:766.950000px;}
.x112_c00348{left:768.900000px;}
.xc6_c00348{left:770.550000px;}
.xd5_c00348{left:772.050000px;}
.xf4_c00348{left:773.700000px;}
.xe5_c00348{left:775.050000px;}
.xa5_c00348{left:777.150000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws1_c00348{word-spacing:-10.537998pt;}
.ws9_c00348{word-spacing:-7.068413pt;}
.ws4_c00348{word-spacing:-4.017467pt;}
.ws2_c00348{word-spacing:-3.280739pt;}
.wsa_c00348{word-spacing:-2.992722pt;}
.wsb_c00348{word-spacing:0.000000pt;}
.ws0_c00348{word-spacing:0.910569pt;}
.ws3_c00348{word-spacing:15.091248pt;}
.ws8_c00348{word-spacing:22.857143pt;}
.ws7_c00348{word-spacing:35.555556pt;}
.ws5_c00348{word-spacing:155.224745pt;}
.ws6_c00348{word-spacing:157.857190pt;}
._0_c00348{width:23.437073pt;}
.fs6_c00348{font-size:21.333333pt;}
.fs5_c00348{font-size:26.666667pt;}
.fs8_c00348{font-size:32.000000pt;}
.fs7_c00348{font-size:37.333333pt;}
.fs4_c00348{font-size:48.000000pt;}
.fs3_c00348{font-size:53.333333pt;}
.fs2_c00348{font-size:58.666667pt;}
.fs1_c00348{font-size:64.000000pt;}
.fs0_c00348{font-size:85.333333pt;}
.y0_c00348{bottom:0.000000pt;}
.y69_c00348{bottom:153.600000pt;}
.y31_c00348{bottom:169.600000pt;}
.y30_c00348{bottom:185.333333pt;}
.y68_c00348{bottom:185.600000pt;}
.y67_c00348{bottom:201.333333pt;}
.y2f_c00348{bottom:205.066667pt;}
.y66_c00348{bottom:220.800000pt;}
.y2e_c00348{bottom:221.066667pt;}
.y65_c00348{bottom:236.400000pt;}
.y2d_c00348{bottom:237.066667pt;}
.y64_c00348{bottom:252.666667pt;}
.y2c_c00348{bottom:252.800000pt;}
.y63_c00348{bottom:268.666667pt;}
.y2b_c00348{bottom:272.400000pt;}
.y62_c00348{bottom:284.400000pt;}
.y2a_c00348{bottom:288.666667pt;}
.y61_c00348{bottom:300.400000pt;}
.y29_c00348{bottom:304.933333pt;}
.y60_c00348{bottom:316.400000pt;}
.y28_c00348{bottom:320.666667pt;}
.y5f_c00348{bottom:332.133333pt;}
.y27_c00348{bottom:336.666667pt;}
.y5e_c00348{bottom:348.133333pt;}
.y26_c00348{bottom:356.533333pt;}
.y5d_c00348{bottom:363.866667pt;}
.y25_c00348{bottom:372.000000pt;}
.y5c_c00348{bottom:379.866667pt;}
.y24_c00348{bottom:387.733333pt;}
.y5b_c00348{bottom:395.600000pt;}
.y23_c00348{bottom:403.466667pt;}
.y5a_c00348{bottom:411.333333pt;}
.y22_c00348{bottom:419.466667pt;}
.y59_c00348{bottom:427.066667pt;}
.y21_c00348{bottom:435.466667pt;}
.y58_c00348{bottom:442.800000pt;}
.y20_c00348{bottom:455.066667pt;}
.y57_c00348{bottom:459.066667pt;}
.y1f_c00348{bottom:471.333333pt;}
.y56_c00348{bottom:475.066667pt;}
.y55_c00348{bottom:490.800000pt;}
.y1e_c00348{bottom:494.666667pt;}
.y54_c00348{bottom:506.800000pt;}
.y1d_c00348{bottom:510.933333pt;}
.y53_c00348{bottom:522.800000pt;}
.y1c_c00348{bottom:526.666667pt;}
.y52_c00348{bottom:538.533333pt;}
.y1b_c00348{bottom:545.866667pt;}
.y51_c00348{bottom:554.266667pt;}
.y1a_c00348{bottom:562.133333pt;}
.y4f_c00348{bottom:576.266667pt;}
.y4c_c00348{bottom:576.933333pt;}
.y19_c00348{bottom:577.866667pt;}
.y4e_c00348{bottom:590.133333pt;}
.y4b_c00348{bottom:590.400000pt;}
.y18_c00348{bottom:593.866667pt;}
.y4a_c00348{bottom:602.266667pt;}
.y4d_c00348{bottom:602.933333pt;}
.y17_c00348{bottom:609.600000pt;}
.y49_c00348{bottom:615.733333pt;}
.y16_c00348{bottom:625.866667pt;}
.y48_c00348{bottom:628.533333pt;}
.y50_c00348{bottom:637.066667pt;}
.y47_c00348{bottom:641.333333pt;}
.y15_c00348{bottom:649.466667pt;}
.y46_c00348{bottom:653.466667pt;}
.y14_c00348{bottom:665.200000pt;}
.y45_c00348{bottom:665.866667pt;}
.y44_c00348{bottom:680.000000pt;}
.y13_c00348{bottom:680.933333pt;}
.y12_c00348{bottom:700.533333pt;}
.y43_c00348{bottom:700.800000pt;}
.y42_c00348{bottom:716.800000pt;}
.y11_c00348{bottom:720.666667pt;}
.y41_c00348{bottom:732.800000pt;}
.y10_c00348{bottom:736.666667pt;}
.y40_c00348{bottom:748.533333pt;}
.yf_c00348{bottom:752.000000pt;}
.y3f_c00348{bottom:764.133333pt;}
.ye_c00348{bottom:771.200000pt;}
.y3e_c00348{bottom:782.666667pt;}
.yd_c00348{bottom:791.333333pt;}
.y3d_c00348{bottom:798.800000pt;}
.yc_c00348{bottom:810.533333pt;}
.y3c_c00348{bottom:814.800000pt;}
.y3b_c00348{bottom:830.533333pt;}
.yb_c00348{bottom:830.666667pt;}
.y3a_c00348{bottom:846.266667pt;}
.ya_c00348{bottom:846.666667pt;}
.y39_c00348{bottom:862.266667pt;}
.y9_c00348{bottom:870.266667pt;}
.y38_c00348{bottom:878.000000pt;}
.y8_c00348{bottom:886.000000pt;}
.y37_c00348{bottom:894.266667pt;}
.y7_c00348{bottom:901.733333pt;}
.y36_c00348{bottom:909.600000pt;}
.y6_c00348{bottom:924.800000pt;}
.y35_c00348{bottom:925.333333pt;}
.y34_c00348{bottom:941.333333pt;}
.y5_c00348{bottom:944.800000pt;}
.y33_c00348{bottom:957.333333pt;}
.y4_c00348{bottom:960.800000pt;}
.y32_c00348{bottom:973.066667pt;}
.y3_c00348{bottom:976.533333pt;}
.y2_c00348{bottom:992.266667pt;}
.y1_c00348{bottom:1016.266667pt;}
.h8_c00348{height:21.333333pt;}
.h7_c00348{height:26.666667pt;}
.ha_c00348{height:32.000000pt;}
.h9_c00348{height:37.333333pt;}
.h6_c00348{height:48.000000pt;}
.h5_c00348{height:53.333333pt;}
.h4_c00348{height:58.666667pt;}
.h3_c00348{height:64.000000pt;}
.h2_c00348{height:85.333333pt;}
.h1_c00348{height:1128.000000pt;}
.h0_c00348{height:1128.319987pt;}
.w0_c00348{width:853.760009pt;}
.w1_c00348{width:854.000000pt;}
.x0_c00348{left:0.000000pt;}
.x66_c00348{left:95.466667pt;}
.x2f_c00348{left:96.400000pt;}
.x3_c00348{left:97.333333pt;}
.x78_c00348{left:109.066667pt;}
.x22_c00348{left:112.933333pt;}
.x1a_c00348{left:114.933333pt;}
.x4_c00348{left:125.200000pt;}
.x4b_c00348{left:126.533333pt;}
.x29_c00348{left:129.466667pt;}
.x71_c00348{left:131.733333pt;}
.x5f_c00348{left:134.533333pt;}
.x4c_c00348{left:136.133333pt;}
.x73_c00348{left:138.933333pt;}
.x82_c00348{left:140.933333pt;}
.x1b_c00348{left:143.466667pt;}
.x3a_c00348{left:145.600000pt;}
.x12_c00348{left:147.066667pt;}
.x5_c00348{left:149.466667pt;}
.x5b_c00348{left:150.666667pt;}
.xb_c00348{left:152.400000pt;}
.x52_c00348{left:153.600000pt;}
.x4d_c00348{left:154.666667pt;}
.x54_c00348{left:155.866667pt;}
.x3f_c00348{left:157.600000pt;}
.x6a_c00348{left:159.200000pt;}
.x79_c00348{left:161.200000pt;}
.x13_c00348{left:162.400000pt;}
.x74_c00348{left:166.800000pt;}
.x62_c00348{left:168.133333pt;}
.x7c_c00348{left:170.533333pt;}
.x58_c00348{left:172.666667pt;}
.x87_c00348{left:173.600000pt;}
.xc_c00348{left:175.466667pt;}
.x84_c00348{left:176.533333pt;}
.x8a_c00348{left:177.600000pt;}
.x63_c00348{left:178.666667pt;}
.x70_c00348{left:179.866667pt;}
.x88_c00348{left:181.866667pt;}
.x47_c00348{left:183.866667pt;}
.x50_c00348{left:184.933333pt;}
.x14_c00348{left:186.133333pt;}
.x3b_c00348{left:187.866667pt;}
.x72_c00348{left:189.333333pt;}
.x1c_c00348{left:190.533333pt;}
.x8b_c00348{left:194.533333pt;}
.x89_c00348{left:195.600000pt;}
.x2a_c00348{left:196.666667pt;}
.x34_c00348{left:197.733333pt;}
.x6_c00348{left:201.333333pt;}
.x3c_c00348{left:203.600000pt;}
.x8d_c00348{left:204.800000pt;}
.x23_c00348{left:205.733333pt;}
.x30_c00348{left:207.466667pt;}
.xd_c00348{left:208.800000pt;}
.x55_c00348{left:210.000000pt;}
.x67_c00348{left:212.266667pt;}
.x3d_c00348{left:213.466667pt;}
.x43_c00348{left:214.800000pt;}
.x35_c00348{left:216.666667pt;}
.x32_c00348{left:218.533333pt;}
.x1d_c00348{left:223.466667pt;}
.x31_c00348{left:226.000000pt;}
.x6d_c00348{left:230.133333pt;}
.x7a_c00348{left:231.333333pt;}
.x15_c00348{left:232.266667pt;}
.x85_c00348{left:233.466667pt;}
.x59_c00348{left:236.000000pt;}
.x1e_c00348{left:238.533333pt;}
.x6f_c00348{left:239.866667pt;}
.x3e_c00348{left:242.933333pt;}
.x5a_c00348{left:246.533333pt;}
.x7d_c00348{left:249.200000pt;}
.x60_c00348{left:251.600000pt;}
.x7_c00348{left:255.066667pt;}
.x36_c00348{left:256.000000pt;}
.x24_c00348{left:256.933333pt;}
.xe_c00348{left:259.066667pt;}
.x2b_c00348{left:260.933333pt;}
.x6e_c00348{left:261.866667pt;}
.x48_c00348{left:262.933333pt;}
.x40_c00348{left:265.200000pt;}
.x4e_c00348{left:266.400000pt;}
.x7e_c00348{left:268.400000pt;}
.x33_c00348{left:269.466667pt;}
.x1f_c00348{left:270.533333pt;}
.x44_c00348{left:272.400000pt;}
.xf_c00348{left:274.133333pt;}
.x68_c00348{left:275.200000pt;}
.x51_c00348{left:276.800000pt;}
.x64_c00348{left:278.266667pt;}
.x25_c00348{left:279.600000pt;}
.x16_c00348{left:280.533333pt;}
.x2c_c00348{left:281.733333pt;}
.x41_c00348{left:284.133333pt;}
.x5c_c00348{left:286.400000pt;}
.x37_c00348{left:289.866667pt;}
.x75_c00348{left:290.800000pt;}
.x17_c00348{left:292.000000pt;}
.x10_c00348{left:294.266667pt;}
.x26_c00348{left:297.866667pt;}
.x1_c00348{left:299.200000pt;}
.x8_c00348{left:300.133333pt;}
.x7b_c00348{left:301.733333pt;}
.x20_c00348{left:305.066667pt;}
.x18_c00348{left:306.666667pt;}
.x45_c00348{left:308.266667pt;}
.x6b_c00348{left:309.333333pt;}
.x7f_c00348{left:310.266667pt;}
.x53_c00348{left:312.133333pt;}
.x2d_c00348{left:315.333333pt;}
.x77_c00348{left:317.333333pt;}
.x80_c00348{left:319.200000pt;}
.x38_c00348{left:320.533333pt;}
.x5e_c00348{left:322.133333pt;}
.x21_c00348{left:324.266667pt;}
.x69_c00348{left:327.333333pt;}
.x56_c00348{left:329.200000pt;}
.x49_c00348{left:330.400000pt;}
.x42_c00348{left:332.800000pt;}
.x86_c00348{left:334.266667pt;}
.x61_c00348{left:335.200000pt;}
.x39_c00348{left:336.266667pt;}
.x57_c00348{left:337.200000pt;}
.x5d_c00348{left:340.133333pt;}
.x4f_c00348{left:344.400000pt;}
.x65_c00348{left:347.333333pt;}
.x9_c00348{left:349.733333pt;}
.x76_c00348{left:352.533333pt;}
.x27_c00348{left:353.866667pt;}
.x4a_c00348{left:355.333333pt;}
.x11_c00348{left:356.666667pt;}
.x81_c00348{left:357.600000pt;}
.x6c_c00348{left:358.666667pt;}
.x83_c00348{left:361.733333pt;}
.x2e_c00348{left:363.600000pt;}
.x19_c00348{left:365.866667pt;}
.x8c_c00348{left:367.333333pt;}
.xa_c00348{left:368.933333pt;}
.x46_c00348{left:371.066667pt;}
.x28_c00348{left:378.133333pt;}
.x11e_c00348{left:398.400000pt;}
.xd6_c00348{left:400.266667pt;}
.x8e_c00348{left:403.200000pt;}
.xc7_c00348{left:413.600000pt;}
.x102_c00348{left:414.666667pt;}
.xa6_c00348{left:415.866667pt;}
.x9d_c00348{left:417.333333pt;}
.xf3_c00348{left:425.200000pt;}
.x95_c00348{left:433.333333pt;}
.x110_c00348{left:437.466667pt;}
.x8f_c00348{left:439.333333pt;}
.xd7_c00348{left:440.266667pt;}
.xc8_c00348{left:441.733333pt;}
.x11a_c00348{left:443.600000pt;}
.xa7_c00348{left:444.666667pt;}
.xcf_c00348{left:446.933333pt;}
.xbe_c00348{left:448.800000pt;}
.x11f_c00348{left:449.866667pt;}
.x9e_c00348{left:453.466667pt;}
.xb4_c00348{left:455.333333pt;}
.x121_c00348{left:456.400000pt;}
.x113_c00348{left:459.466667pt;}
.xb0_c00348{left:460.533333pt;}
.xe3_c00348{left:461.733333pt;}
.x9f_c00348{left:463.733333pt;}
.xd0_c00348{left:465.466667pt;}
.xac_c00348{left:467.466667pt;}
.x90_c00348{left:469.733333pt;}
.x10a_c00348{left:471.200000pt;}
.xb5_c00348{left:474.266667pt;}
.xa8_c00348{left:476.000000pt;}
.xc9_c00348{left:477.600000pt;}
.xee_c00348{left:478.933333pt;}
.x104_c00348{left:480.000000pt;}
.xbf_c00348{left:483.600000pt;}
.x11c_c00348{left:484.933333pt;}
.xde_c00348{left:486.666667pt;}
.x96_c00348{left:488.000000pt;}
.x107_c00348{left:489.600000pt;}
.xd3_c00348{left:490.533333pt;}
.xb1_c00348{left:492.533333pt;}
.xef_c00348{left:494.266667pt;}
.xa9_c00348{left:495.200000pt;}
.x116_c00348{left:496.133333pt;}
.x108_c00348{left:498.533333pt;}
.xd8_c00348{left:500.800000pt;}
.xbc_c00348{left:502.400000pt;}
.xc3_c00348{left:505.066667pt;}
.x97_c00348{left:506.933333pt;}
.xe9_c00348{left:508.800000pt;}
.x11b_c00348{left:511.200000pt;}
.xca_c00348{left:512.133333pt;}
.x105_c00348{left:513.866667pt;}
.xa0_c00348{left:514.933333pt;}
.xfe_c00348{left:516.000000pt;}
.xfc_c00348{left:520.533333pt;}
.xb6_c00348{left:522.266667pt;}
.xf0_c00348{left:523.333333pt;}
.xf7_c00348{left:524.266667pt;}
.xc0_c00348{left:525.466667pt;}
.x111_c00348{left:527.066667pt;}
.xdb_c00348{left:528.266667pt;}
.x98_c00348{left:530.266667pt;}
.xa1_c00348{left:532.533333pt;}
.x10e_c00348{left:533.866667pt;}
.x91_c00348{left:535.066667pt;}
.xdf_c00348{left:536.666667pt;}
.x10b_c00348{left:538.666667pt;}
.xf1_c00348{left:540.666667pt;}
.xff_c00348{left:542.933333pt;}
.xea_c00348{left:544.000000pt;}
.xd9_c00348{left:546.933333pt;}
.xcb_c00348{left:548.000000pt;}
.xb7_c00348{left:549.466667pt;}
.xd1_c00348{left:552.533333pt;}
.x99_c00348{left:553.600000pt;}
.x106_c00348{left:555.733333pt;}
.x92_c00348{left:558.133333pt;}
.xeb_c00348{left:560.933333pt;}
.xfd_c00348{left:564.000000pt;}
.xb8_c00348{left:565.200000pt;}
.xaa_c00348{left:567.466667pt;}
.xd4_c00348{left:568.933333pt;}
.x103_c00348{left:570.666667pt;}
.x10c_c00348{left:571.600000pt;}
.xcc_c00348{left:572.666667pt;}
.x9a_c00348{left:574.400000pt;}
.x117_c00348{left:576.666667pt;}
.xb2_c00348{left:578.533333pt;}
.xc4_c00348{left:579.600000pt;}
.x120_c00348{left:581.466667pt;}
.x118_c00348{left:582.533333pt;}
.xe4_c00348{left:583.600000pt;}
.xad_c00348{left:584.933333pt;}
.x10f_c00348{left:586.400000pt;}
.x100_c00348{left:587.733333pt;}
.xa2_c00348{left:589.466667pt;}
.x10d_c00348{left:592.133333pt;}
.xcd_c00348{left:593.200000pt;}
.x109_c00348{left:594.800000pt;}
.x93_c00348{left:595.866667pt;}
.x122_c00348{left:596.800000pt;}
.xb9_c00348{left:597.866667pt;}
.xf5_c00348{left:600.000000pt;}
.xec_c00348{left:602.533333pt;}
.xf8_c00348{left:604.266667pt;}
.xc1_c00348{left:606.000000pt;}
.xdc_c00348{left:608.000000pt;}
.x101_c00348{left:609.200000pt;}
.xe0_c00348{left:610.266667pt;}
.xe6_c00348{left:612.800000pt;}
.x9b_c00348{left:616.000000pt;}
.xf9_c00348{left:617.066667pt;}
.xb3_c00348{left:618.266667pt;}
.xa3_c00348{left:620.133333pt;}
.xe1_c00348{left:622.400000pt;}
.xdd_c00348{left:624.000000pt;}
.xe7_c00348{left:625.600000pt;}
.xae_c00348{left:628.133333pt;}
.xed_c00348{left:629.466667pt;}
.xbd_c00348{left:632.000000pt;}
.xc5_c00348{left:633.733333pt;}
.xba_c00348{left:635.600000pt;}
.xf6_c00348{left:636.533333pt;}
.xf2_c00348{left:637.733333pt;}
.xfb_c00348{left:638.800000pt;}
.x124_c00348{left:640.933333pt;}
.xe2_c00348{left:642.933333pt;}
.x94_c00348{left:644.133333pt;}
.x119_c00348{left:650.400000pt;}
.xce_c00348{left:653.333333pt;}
.x11d_c00348{left:655.466667pt;}
.xd2_c00348{left:656.400000pt;}
.xa4_c00348{left:657.866667pt;}
.x114_c00348{left:659.200000pt;}
.xfa_c00348{left:661.466667pt;}
.x123_c00348{left:663.066667pt;}
.xaf_c00348{left:664.666667pt;}
.xab_c00348{left:667.066667pt;}
.xda_c00348{left:668.933333pt;}
.x9c_c00348{left:670.400000pt;}
.x115_c00348{left:672.666667pt;}
.xe8_c00348{left:674.266667pt;}
.x2_c00348{left:675.466667pt;}
.xc2_c00348{left:678.666667pt;}
.xbb_c00348{left:681.733333pt;}
.x112_c00348{left:683.466667pt;}
.xc6_c00348{left:684.933333pt;}
.xd5_c00348{left:686.266667pt;}
.xf4_c00348{left:687.733333pt;}
.xe5_c00348{left:688.933333pt;}
.xa5_c00348{left:690.800000pt;}
}





/* 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_c00349 {
    display:none;
  }
  .loading-indicator_c00349.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00349 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_c00349 { 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_c00349" -> "#page-container .classname_c00349")
 */
.pf_c00349 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00349 { /* 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_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00349 { /* 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_c00349 { /* 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_c00349 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00349 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00349 {overflow:visible;}
  }
}
.c_c00349 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00349 { /* 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_c00349:after { /* webkit #35443 */
  content: '';
}
.t_c00349:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00349 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 */
}
.__c00349 { /* 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_c00349 { /* info for Javascript */
  display:none;
}
.l_c00349 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00349 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00349 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00349: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_c00349 {
    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_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00349.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_c00349 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00349;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.000000;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;}
.mdc_c00349{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m79_c00349{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.mee_c00349{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.me7_c00349{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00349{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00349{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.me8_c00349{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00349{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me6_c00349{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m25_c00349{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00349{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00349{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00349{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00349{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m18_c00349{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m44_c00349{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m76_c00349{transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);}
.ma_c00349{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me9_c00349{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m14_c00349{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.mba_c00349{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00349{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me5_c00349{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00349{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.med_c00349{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m100_c00349{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00349{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md2_c00349{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00349{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m108_c00349{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mae_c00349{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.meb_c00349{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mff_c00349{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m65_c00349{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m20_c00349{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00349{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00349{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m15_c00349{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m80_c00349{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m104_c00349{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00349{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m113_c00349{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00349{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m114_c00349{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m54_c00349{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00349{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m52_c00349{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m35_c00349{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m69_c00349{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3_c00349{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m85_c00349{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m107_c00349{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m42_c00349{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m5_c00349{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m106_c00349{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00349{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00349{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m74_c00349{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00349{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m112_c00349{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m89_c00349{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00349{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m10_c00349{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me4_c00349{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m34_c00349{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m7_c00349{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m67_c00349{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00349{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m29_c00349{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m68_c00349{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00349{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m38_c00349{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md_c00349{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00349{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00349{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m116_c00349{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m86_c00349{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m23_c00349{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m11_c00349{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00349{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00349{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m88_c00349{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00349{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m91_c00349{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00349{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m63_c00349{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00349{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00349{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m111_c00349{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m43_c00349{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mac_c00349{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00349{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me3_c00349{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m27_c00349{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00349{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00349{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m110_c00349{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m98_c00349{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00349{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m32_c00349{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00349{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00349{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mb_c00349{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m55_c00349{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00349{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m21_c00349{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m36_c00349{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00349{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m109_c00349{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m81_c00349{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m8_c00349{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00349{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m97_c00349{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m83_c00349{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00349{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00349{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00349{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00349{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00349{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mec_c00349{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m84_c00349{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00349{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00349{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00349{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00349{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00349{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mc_c00349{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00349{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m37_c00349{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me2_c00349{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00349{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf_c00349{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m87_c00349{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md3_c00349{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m41_c00349{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00349{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00349{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m64_c00349{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4_c00349{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m48_c00349{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00349{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m53_c00349{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m101_c00349{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00349{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md8_c00349{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m45_c00349{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m16_c00349{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m30_c00349{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mda_c00349{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00349{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00349{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m49_c00349{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mce_c00349{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6_c00349{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m103_c00349{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00349{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m46_c00349{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00349{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m26_c00349{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m58_c00349{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m47_c00349{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00349{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00349{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m39_c00349{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m61_c00349{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00349{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00349{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00349{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00349{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00349{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m115_c00349{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m66_c00349{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m24_c00349{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m56_c00349{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m119_c00349{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md4_c00349{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m90_c00349{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00349{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00349{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00349{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m92_c00349{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00349{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00349{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m40_c00349{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.maa_c00349{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m31_c00349{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m82_c00349{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9_c00349{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00349{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00349{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md7_c00349{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m22_c00349{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00349{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00349{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00349{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00349{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m51_c00349{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m94_c00349{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00349{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m102_c00349{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m17_c00349{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00349{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mab_c00349{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m50_c00349{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00349{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md9_c00349{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00349{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m118_c00349{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00349{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00349{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md5_c00349{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m93_c00349{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m99_c00349{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00349{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m19_c00349{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00349{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m105_c00349{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.me_c00349{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m28_c00349{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m33_c00349{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00349{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m12_c00349{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me1_c00349{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00349{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00349{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m117_c00349{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00349{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00349{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mad_c00349{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00349{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00349{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m59_c00349{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00349{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00349{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m62_c00349{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00349{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00349{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00349{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me0_c00349{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00349{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00349{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m96_c00349{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m95_c00349{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00349{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00349{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m57_c00349{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00349{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00349{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00349{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00349{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00349{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00349{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00349{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.md1_c00349{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00349{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00349{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m72_c00349{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00349{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md6_c00349{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.md0_c00349{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m75_c00349{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m78_c00349{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m77_c00349{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m73_c00349{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m70_c00349{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.maf_c00349{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00349{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00349{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mde_c00349{transform:matrix(0.405250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00349{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m60_c00349{transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);}
.m0_c00349{transform:matrix(0.452750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452750,0.000000,0.000000,0.250000,0,0);}
.mea_c00349{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m71_c00349{transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462000,0.000000,0.000000,0.250000,0,0);}
.mef_c00349{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00349{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00349{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00349{transform:matrix(0.523000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00349{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00349{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00349{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.mca_c00349{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls0_c00349{letter-spacing:0.000000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{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__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00349{word-spacing:-7.637555px;}
.ws5_c00349{word-spacing:-3.582210px;}
.ws4_c00349{word-spacing:-1.700637px;}
.ws3_c00349{word-spacing:-0.166667px;}
.wsd_c00349{word-spacing:0.000000px;}
.ws7_c00349{word-spacing:5.138889px;}
.ws1_c00349{word-spacing:12.284916px;}
.wsc_c00349{word-spacing:14.054054px;}
.ws6_c00349{word-spacing:15.000000px;}
.ws8_c00349{word-spacing:18.125000px;}
.ws9_c00349{word-spacing:25.714286px;}
.wsa_c00349{word-spacing:32.360656px;}
.wsb_c00349{word-spacing:38.262295px;}
.ws2_c00349{word-spacing:63.384615px;}
.fc0_c00349{color:transparent;}
.fs5_c00349{font-size:30.000000px;}
.fs2_c00349{font-size:36.000000px;}
.fs8_c00349{font-size:42.000000px;}
.fs6_c00349{font-size:48.000000px;}
.fs7_c00349{font-size:54.000000px;}
.fs4_c00349{font-size:60.000000px;}
.fs0_c00349{font-size:66.000000px;}
.fs3_c00349{font-size:72.000000px;}
.fs1_c00349{font-size:78.000000px;}
.y0_c00349{bottom:0.000000px;}
.y6a_c00349{bottom:196.800000px;}
.y35_c00349{bottom:197.250000px;}
.y69_c00349{bottom:214.800000px;}
.y34_c00349{bottom:216.300000px;}
.y68_c00349{bottom:232.500000px;}
.y33_c00349{bottom:238.800000px;}
.y67_c00349{bottom:250.200000px;}
.y32_c00349{bottom:256.050000px;}
.y66_c00349{bottom:268.200000px;}
.y31_c00349{bottom:273.300000px;}
.y65_c00349{bottom:286.200000px;}
.y30_c00349{bottom:294.750000px;}
.y64_c00349{bottom:304.200000px;}
.y2f_c00349{bottom:317.100000px;}
.y63_c00349{bottom:322.200000px;}
.y2e_c00349{bottom:338.700000px;}
.y62_c00349{bottom:339.900000px;}
.y61_c00349{bottom:357.900000px;}
.y2d_c00349{bottom:360.750000px;}
.y2c_c00349{bottom:384.150000px;}
.y60_c00349{bottom:385.200000px;}
.y5f_c00349{bottom:400.350000px;}
.y2b_c00349{bottom:402.450000px;}
.y5e_c00349{bottom:414.000000px;}
.y2a_c00349{bottom:420.450000px;}
.y5d_c00349{bottom:429.000000px;}
.y29_c00349{bottom:442.200000px;}
.y5c_c00349{bottom:443.400000px;}
.y5b_c00349{bottom:457.500000px;}
.y28_c00349{bottom:460.500000px;}
.y5a_c00349{bottom:471.600000px;}
.y27_c00349{bottom:478.500000px;}
.y26_c00349{bottom:487.350000px;}
.y24_c00349{bottom:494.700000px;}
.y25_c00349{bottom:495.300000px;}
.y59_c00349{bottom:501.450000px;}
.y23_c00349{bottom:507.000000px;}
.y58_c00349{bottom:514.800000px;}
.y22_c00349{bottom:516.300000px;}
.y21_c00349{bottom:523.350000px;}
.y57_c00349{bottom:529.200000px;}
.y20_c00349{bottom:542.100000px;}
.y55_c00349{bottom:543.600000px;}
.y56_c00349{bottom:557.250000px;}
.y54_c00349{bottom:559.500000px;}
.y1f_c00349{bottom:564.450000px;}
.y53_c00349{bottom:572.850000px;}
.y1e_c00349{bottom:586.350000px;}
.y52_c00349{bottom:588.300000px;}
.y51_c00349{bottom:603.000000px;}
.y1d_c00349{bottom:609.450000px;}
.y50_c00349{bottom:615.900000px;}
.y4f_c00349{bottom:631.800000px;}
.y1c_c00349{bottom:648.300000px;}
.y4e_c00349{bottom:655.200000px;}
.y4d_c00349{bottom:673.200000px;}
.y1b_c00349{bottom:688.650000px;}
.y4c_c00349{bottom:691.200000px;}
.y1a_c00349{bottom:706.950000px;}
.y4b_c00349{bottom:709.200000px;}
.y19_c00349{bottom:724.950000px;}
.y4a_c00349{bottom:735.450000px;}
.y18_c00349{bottom:742.650000px;}
.y49_c00349{bottom:753.300000px;}
.y17_c00349{bottom:760.650000px;}
.y48_c00349{bottom:771.300000px;}
.y16_c00349{bottom:781.650000px;}
.y47_c00349{bottom:789.300000px;}
.y15_c00349{bottom:800.400000px;}
.y46_c00349{bottom:807.000000px;}
.y14_c00349{bottom:818.400000px;}
.y45_c00349{bottom:825.000000px;}
.y13_c00349{bottom:836.400000px;}
.y44_c00349{bottom:842.700000px;}
.y12_c00349{bottom:854.400000px;}
.y43_c00349{bottom:860.700000px;}
.y11_c00349{bottom:872.100000px;}
.y42_c00349{bottom:878.700000px;}
.y10_c00349{bottom:890.100000px;}
.y41_c00349{bottom:901.050000px;}
.yf_c00349{bottom:908.100000px;}
.ye_c00349{bottom:925.800000px;}
.y40_c00349{bottom:936.300000px;}
.yd_c00349{bottom:944.100000px;}
.y3f_c00349{bottom:954.300000px;}
.yc_c00349{bottom:961.800000px;}
.y3e_c00349{bottom:972.300000px;}
.yb_c00349{bottom:979.500000px;}
.y3d_c00349{bottom:994.500000px;}
.ya_c00349{bottom:1007.550000px;}
.y3c_c00349{bottom:1012.500000px;}
.y9_c00349{bottom:1015.050000px;}
.y3b_c00349{bottom:1030.200000px;}
.y8_c00349{bottom:1033.050000px;}
.y3a_c00349{bottom:1048.200000px;}
.y7_c00349{bottom:1050.750000px;}
.y39_c00349{bottom:1066.200000px;}
.y6_c00349{bottom:1069.050000px;}
.y38_c00349{bottom:1083.900000px;}
.y5_c00349{bottom:1086.750000px;}
.y37_c00349{bottom:1101.900000px;}
.y4_c00349{bottom:1104.450000px;}
.y3_c00349{bottom:1122.450000px;}
.y36_c00349{bottom:1123.200000px;}
.y1_c00349{bottom:1145.100000px;}
.y2_c00349{bottom:1149.000000px;}
.h7_c00349{height:30.000000px;}
.h4_c00349{height:36.000000px;}
.ha_c00349{height:42.000000px;}
.h8_c00349{height:48.000000px;}
.h9_c00349{height:54.000000px;}
.h6_c00349{height:60.000000px;}
.h2_c00349{height:66.000000px;}
.h5_c00349{height:72.000000px;}
.h3_c00349{height:78.000000px;}
.h1_c00349{height:1276.500000px;}
.h0_c00349{height:1276.559967px;}
.w0_c00349{width:960.480010px;}
.w1_c00349{width:960.750000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:165.900000px;}
.x6e_c00349{left:170.250000px;}
.x7b_c00349{left:173.100000px;}
.x38_c00349{left:183.450000px;}
.x3_c00349{left:185.100000px;}
.x3e_c00349{left:186.300000px;}
.x6d_c00349{left:187.350000px;}
.x70_c00349{left:189.000000px;}
.x7c_c00349{left:190.800000px;}
.x85_c00349{left:192.000000px;}
.x88_c00349{left:193.200000px;}
.x91_c00349{left:195.600000px;}
.x4f_c00349{left:203.250000px;}
.x12_c00349{left:208.800000px;}
.x19_c00349{left:210.900000px;}
.x57_c00349{left:212.700000px;}
.x69_c00349{left:216.300000px;}
.x2a_c00349{left:219.450000px;}
.x39_c00349{left:222.750000px;}
.x47_c00349{left:223.800000px;}
.x31_c00349{left:225.600000px;}
.x78_c00349{left:227.400000px;}
.x3f_c00349{left:228.750000px;}
.x4c_c00349{left:234.150000px;}
.x2b_c00349{left:235.650000px;}
.x7d_c00349{left:237.300000px;}
.x50_c00349{left:238.500000px;}
.x1a_c00349{left:239.700000px;}
.x53_c00349{left:242.550000px;}
.x63_c00349{left:243.750000px;}
.x5e_c00349{left:244.950000px;}
.x48_c00349{left:246.450000px;}
.x13_c00349{left:248.700000px;}
.x58_c00349{left:250.800000px;}
.x40_c00349{left:252.900000px;}
.x73_c00349{left:254.700000px;}
.x1b_c00349{left:255.900000px;}
.x89_c00349{left:257.250000px;}
.x3a_c00349{left:259.800000px;}
.x8f_c00349{left:261.450000px;}
.x7e_c00349{left:263.550000px;}
.x2c_c00349{left:266.250000px;}
.x59_c00349{left:268.050000px;}
.x5f_c00349{left:270.450000px;}
.x80_c00349{left:272.400000px;}
.x92_c00349{left:273.450000px;}
.x8a_c00349{left:274.500000px;}
.x2d_c00349{left:275.550000px;}
.x79_c00349{left:277.050000px;}
.x21_c00349{left:278.100000px;}
.xa_c00349{left:282.150000px;}
.x76_c00349{left:283.950000px;}
.x54_c00349{left:286.800000px;}
.x4_c00349{left:289.800000px;}
.x75_c00349{left:291.300000px;}
.x32_c00349{left:292.650000px;}
.x22_c00349{left:294.600000px;}
.x66_c00349{left:296.550000px;}
.x4d_c00349{left:298.200000px;}
.x6a_c00349{left:302.400000px;}
.x7f_c00349{left:303.900000px;}
.x8e_c00349{left:305.250000px;}
.x41_c00349{left:306.900000px;}
.x5_c00349{left:310.650000px;}
.x33_c00349{left:311.700000px;}
.x1c_c00349{left:316.350000px;}
.xb_c00349{left:317.850000px;}
.x56_c00349{left:320.400000px;}
.x14_c00349{left:321.450000px;}
.x60_c00349{left:325.200000px;}
.x8b_c00349{left:326.400000px;}
.x23_c00349{left:328.500000px;}
.x5a_c00349{left:329.550000px;}
.xc_c00349{left:330.750000px;}
.x51_c00349{left:331.950000px;}
.x42_c00349{left:333.600000px;}
.x82_c00349{left:334.650000px;}
.x49_c00349{left:335.700000px;}
.x15_c00349{left:337.650000px;}
.x61_c00349{left:339.600000px;}
.x6b_c00349{left:340.950000px;}
.x34_c00349{left:342.300000px;}
.x2e_c00349{left:343.650000px;}
.x24_c00349{left:346.500000px;}
.x8d_c00349{left:349.200000px;}
.x8c_c00349{left:350.550000px;}
.x81_c00349{left:351.900000px;}
.x1d_c00349{left:353.100000px;}
.x71_c00349{left:355.500000px;}
.x43_c00349{left:359.850000px;}
.x67_c00349{left:361.050000px;}
.x2f_c00349{left:364.200000px;}
.x6_c00349{left:366.150000px;}
.x4e_c00349{left:368.400000px;}
.x64_c00349{left:374.100000px;}
.x4a_c00349{left:376.350000px;}
.x25_c00349{left:377.850000px;}
.x3b_c00349{left:380.400000px;}
.x35_c00349{left:381.900000px;}
.x93_c00349{left:382.950000px;}
.x5b_c00349{left:386.550000px;}
.x7_c00349{left:388.800000px;}
.x16_c00349{left:390.900000px;}
.xd_c00349{left:392.700000px;}
.x26_c00349{left:395.100000px;}
.x44_c00349{left:400.500000px;}
.x1e_c00349{left:402.450000px;}
.x36_c00349{left:404.550000px;}
.x74_c00349{left:406.650000px;}
.x83_c00349{left:407.700000px;}
.x2_c00349{left:412.200000px;}
.x17_c00349{left:413.550000px;}
.x27_c00349{left:415.950000px;}
.x3c_c00349{left:418.500000px;}
.x1f_c00349{left:420.450000px;}
.x45_c00349{left:423.150000px;}
.xe_c00349{left:424.350000px;}
.x5c_c00349{left:426.450000px;}
.x8_c00349{left:428.700000px;}
.x55_c00349{left:430.800000px;}
.x95_c00349{left:432.000000px;}
.x18_c00349{left:435.150000px;}
.x7a_c00349{left:440.850000px;}
.xf_c00349{left:442.350000px;}
.x28_c00349{left:444.750000px;}
.x30_c00349{left:445.950000px;}
.x90_c00349{left:448.650000px;}
.x84_c00349{left:450.150000px;}
.x65_c00349{left:451.500000px;}
.x5d_c00349{left:452.700000px;}
.x6c_c00349{left:454.050000px;}
.x86_c00349{left:456.300000px;}
.x9_c00349{left:457.500000px;}
.x3d_c00349{left:459.150000px;}
.x72_c00349{left:461.250000px;}
.x10_c00349{left:463.650000px;}
.x6f_c00349{left:465.900000px;}
.x77_c00349{left:468.600000px;}
.x62_c00349{left:470.250000px;}
.x29_c00349{left:474.600000px;}
.x37_c00349{left:477.600000px;}
.x11_c00349{left:479.100000px;}
.x46_c00349{left:483.300000px;}
.x20_c00349{left:484.500000px;}
.x4b_c00349{left:489.000000px;}
.x52_c00349{left:490.200000px;}
.x68_c00349{left:493.950000px;}
.x87_c00349{left:495.600000px;}
.x94_c00349{left:498.150000px;}
.x9b_c00349{left:524.100000px;}
.xc4_c00349{left:525.900000px;}
.xd0_c00349{left:527.400000px;}
.xfe_c00349{left:529.500000px;}
.x12b_c00349{left:532.500000px;}
.xa1_c00349{left:542.400000px;}
.xb6_c00349{left:543.450000px;}
.xdc_c00349{left:544.650000px;}
.xf2_c00349{left:546.450000px;}
.x102_c00349{left:547.650000px;}
.x12e_c00349{left:549.000000px;}
.x132_c00349{left:550.800000px;}
.x116_c00349{left:558.900000px;}
.xae_c00349{left:560.550000px;}
.x96_c00349{left:561.600000px;}
.xd6_c00349{left:563.700000px;}
.x11a_c00349{left:565.500000px;}
.xd1_c00349{left:568.500000px;}
.xba_c00349{left:570.750000px;}
.xdd_c00349{left:573.150000px;}
.xa2_c00349{left:575.550000px;}
.x126_c00349{left:579.600000px;}
.xed_c00349{left:581.250000px;}
.xf3_c00349{left:582.750000px;}
.x10c_c00349{left:584.700000px;}
.xfc_c00349{left:585.750000px;}
.x9c_c00349{left:587.100000px;}
.xe2_c00349{left:591.450000px;}
.xc9_c00349{left:593.550000px;}
.x107_c00349{left:596.250000px;}
.xc5_c00349{left:597.600000px;}
.xa3_c00349{left:599.700000px;}
.xbd_c00349{left:602.550000px;}
.x123_c00349{left:604.050000px;}
.xa7_c00349{left:605.100000px;}
.xde_c00349{left:606.300000px;}
.x97_c00349{left:607.350000px;}
.x13b_c00349{left:609.450000px;}
.xfd_c00349{left:610.650000px;}
.xbe_c00349{left:613.050000px;}
.xe3_c00349{left:614.550000px;}
.xf6_c00349{left:615.750000px;}
.x11e_c00349{left:617.400000px;}
.xee_c00349{left:618.750000px;}
.x12f_c00349{left:619.800000px;}
.x124_c00349{left:622.350000px;}
.xb7_c00349{left:624.150000px;}
.xef_c00349{left:627.750000px;}
.xd7_c00349{left:628.800000px;}
.xc6_c00349{left:630.300000px;}
.xce_c00349{left:633.600000px;}
.xaf_c00349{left:635.400000px;}
.x103_c00349{left:638.100000px;}
.x130_c00349{left:640.350000px;}
.xbf_c00349{left:642.150000px;}
.x13c_c00349{left:643.650000px;}
.xb0_c00349{left:644.700000px;}
.xa4_c00349{left:647.550000px;}
.xe4_c00349{left:650.250000px;}
.xd8_c00349{left:652.950000px;}
.xe8_c00349{left:655.500000px;}
.x118_c00349{left:656.550000px;}
.x9d_c00349{left:657.600000px;}
.x10d_c00349{left:658.800000px;}
.x108_c00349{left:661.050000px;}
.xc0_c00349{left:662.250000px;}
.x125_c00349{left:664.050000px;}
.xf4_c00349{left:665.250000px;}
.xb1_c00349{left:666.300000px;}
.xc7_c00349{left:668.400000px;}
.x109_c00349{left:671.100000px;}
.x11f_c00349{left:672.150000px;}
.x98_c00349{left:673.950000px;}
.x11b_c00349{left:675.000000px;}
.xcf_c00349{left:679.200000px;}
.x112_c00349{left:683.250000px;}
.xa8_c00349{left:684.600000px;}
.x136_c00349{left:689.550000px;}
.xf0_c00349{left:690.750000px;}
.x10e_c00349{left:692.850000px;}
.x99_c00349{left:695.250000px;}
.xd2_c00349{left:697.050000px;}
.xca_c00349{left:699.000000px;}
.xb2_c00349{left:700.800000px;}
.x12c_c00349{left:702.150000px;}
.xc1_c00349{left:705.450000px;}
.xd9_c00349{left:706.950000px;}
.xe5_c00349{left:708.150000px;}
.x122_c00349{left:709.650000px;}
.xfa_c00349{left:712.650000px;}
.xf1_c00349{left:713.850000px;}
.xc2_c00349{left:715.200000px;}
.xff_c00349{left:716.400000px;}
.x11c_c00349{left:718.200000px;}
.xe9_c00349{left:719.250000px;}
.x13d_c00349{left:720.600000px;}
.xb3_c00349{left:722.700000px;}
.xfb_c00349{left:725.250000px;}
.x113_c00349{left:726.450000px;}
.xb8_c00349{left:727.800000px;}
.xbb_c00349{left:728.850000px;}
.xe6_c00349{left:731.550000px;}
.x11d_c00349{left:732.900000px;}
.xcb_c00349{left:734.250000px;}
.x119_c00349{left:737.550000px;}
.x9e_c00349{left:739.350000px;}
.x134_c00349{left:741.300000px;}
.xa9_c00349{left:742.500000px;}
.xa5_c00349{left:743.700000px;}
.x104_c00349{left:746.400000px;}
.xd3_c00349{left:748.200000px;}
.x9a_c00349{left:749.250000px;}
.xb9_c00349{left:751.500000px;}
.x114_c00349{left:754.200000px;}
.xcc_c00349{left:756.600000px;}
.xaa_c00349{left:758.400000px;}
.xd4_c00349{left:760.500000px;}
.xf7_c00349{left:762.300000px;}
.x13e_c00349{left:763.500000px;}
.x120_c00349{left:766.050000px;}
.x135_c00349{left:767.250000px;}
.xda_c00349{left:769.200000px;}
.x127_c00349{left:771.600000px;}
.x10a_c00349{left:774.450000px;}
.xdf_c00349{left:776.400000px;}
.x128_c00349{left:778.500000px;}
.x105_c00349{left:782.700000px;}
.x131_c00349{left:783.750000px;}
.x139_c00349{left:784.800000px;}
.xea_c00349{left:786.150000px;}
.xc3_c00349{left:787.500000px;}
.x9f_c00349{left:789.750000px;}
.xe7_c00349{left:793.050000px;}
.xb4_c00349{left:794.700000px;}
.x117_c00349{left:795.750000px;}
.x10f_c00349{left:797.550000px;}
.x100_c00349{left:798.900000px;}
.xf8_c00349{left:800.100000px;}
.xab_c00349{left:801.300000px;}
.xe0_c00349{left:802.350000px;}
.xeb_c00349{left:804.900000px;}
.x101_c00349{left:809.700000px;}
.x137_c00349{left:810.900000px;}
.xa0_c00349{left:813.450000px;}
.x12a_c00349{left:814.950000px;}
.xcd_c00349{left:816.750000px;}
.xc8_c00349{left:818.550000px;}
.xf5_c00349{left:821.100000px;}
.x106_c00349{left:822.300000px;}
.xd5_c00349{left:825.000000px;}
.x110_c00349{left:826.350000px;}
.x129_c00349{left:828.600000px;}
.x12d_c00349{left:831.300000px;}
.xa6_c00349{left:835.500000px;}
.xe1_c00349{left:836.850000px;}
.xdb_c00349{left:840.900000px;}
.xbc_c00349{left:841.950000px;}
.xac_c00349{left:843.750000px;}
.x111_c00349{left:848.700000px;}
.x121_c00349{left:849.750000px;}
.xad_c00349{left:852.450000px;}
.x115_c00349{left:854.850000px;}
.x10b_c00349{left:856.650000px;}
.x138_c00349{left:858.000000px;}
.xb5_c00349{left:860.250000px;}
.xec_c00349{left:861.750000px;}
.xf9_c00349{left:862.800000px;}
.x133_c00349{left:866.850000px;}
.x13a_c00349{left:871.500000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws0_c00349{word-spacing:-6.788937pt;}
.ws5_c00349{word-spacing:-3.184187pt;}
.ws4_c00349{word-spacing:-1.511677pt;}
.ws3_c00349{word-spacing:-0.148148pt;}
.wsd_c00349{word-spacing:0.000000pt;}
.ws7_c00349{word-spacing:4.567901pt;}
.ws1_c00349{word-spacing:10.919926pt;}
.wsc_c00349{word-spacing:12.492492pt;}
.ws6_c00349{word-spacing:13.333333pt;}
.ws8_c00349{word-spacing:16.111111pt;}
.ws9_c00349{word-spacing:22.857143pt;}
.wsa_c00349{word-spacing:28.765027pt;}
.wsb_c00349{word-spacing:34.010929pt;}
.ws2_c00349{word-spacing:56.341880pt;}
.fs5_c00349{font-size:26.666667pt;}
.fs2_c00349{font-size:32.000000pt;}
.fs8_c00349{font-size:37.333333pt;}
.fs6_c00349{font-size:42.666667pt;}
.fs7_c00349{font-size:48.000000pt;}
.fs4_c00349{font-size:53.333333pt;}
.fs0_c00349{font-size:58.666667pt;}
.fs3_c00349{font-size:64.000000pt;}
.fs1_c00349{font-size:69.333333pt;}
.y0_c00349{bottom:0.000000pt;}
.y6a_c00349{bottom:174.933333pt;}
.y35_c00349{bottom:175.333333pt;}
.y69_c00349{bottom:190.933333pt;}
.y34_c00349{bottom:192.266667pt;}
.y68_c00349{bottom:206.666667pt;}
.y33_c00349{bottom:212.266667pt;}
.y67_c00349{bottom:222.400000pt;}
.y32_c00349{bottom:227.600000pt;}
.y66_c00349{bottom:238.400000pt;}
.y31_c00349{bottom:242.933333pt;}
.y65_c00349{bottom:254.400000pt;}
.y30_c00349{bottom:262.000000pt;}
.y64_c00349{bottom:270.400000pt;}
.y2f_c00349{bottom:281.866667pt;}
.y63_c00349{bottom:286.400000pt;}
.y2e_c00349{bottom:301.066667pt;}
.y62_c00349{bottom:302.133333pt;}
.y61_c00349{bottom:318.133333pt;}
.y2d_c00349{bottom:320.666667pt;}
.y2c_c00349{bottom:341.466667pt;}
.y60_c00349{bottom:342.400000pt;}
.y5f_c00349{bottom:355.866667pt;}
.y2b_c00349{bottom:357.733333pt;}
.y5e_c00349{bottom:368.000000pt;}
.y2a_c00349{bottom:373.733333pt;}
.y5d_c00349{bottom:381.333333pt;}
.y29_c00349{bottom:393.066667pt;}
.y5c_c00349{bottom:394.133333pt;}
.y5b_c00349{bottom:406.666667pt;}
.y28_c00349{bottom:409.333333pt;}
.y5a_c00349{bottom:419.200000pt;}
.y27_c00349{bottom:425.333333pt;}
.y26_c00349{bottom:433.200000pt;}
.y24_c00349{bottom:439.733333pt;}
.y25_c00349{bottom:440.266667pt;}
.y59_c00349{bottom:445.733333pt;}
.y23_c00349{bottom:450.666667pt;}
.y58_c00349{bottom:457.600000pt;}
.y22_c00349{bottom:458.933333pt;}
.y21_c00349{bottom:465.200000pt;}
.y57_c00349{bottom:470.400000pt;}
.y20_c00349{bottom:481.866667pt;}
.y55_c00349{bottom:483.200000pt;}
.y56_c00349{bottom:495.333333pt;}
.y54_c00349{bottom:497.333333pt;}
.y1f_c00349{bottom:501.733333pt;}
.y53_c00349{bottom:509.200000pt;}
.y1e_c00349{bottom:521.200000pt;}
.y52_c00349{bottom:522.933333pt;}
.y51_c00349{bottom:536.000000pt;}
.y1d_c00349{bottom:541.733333pt;}
.y50_c00349{bottom:547.466667pt;}
.y4f_c00349{bottom:561.600000pt;}
.y1c_c00349{bottom:576.266667pt;}
.y4e_c00349{bottom:582.400000pt;}
.y4d_c00349{bottom:598.400000pt;}
.y1b_c00349{bottom:612.133333pt;}
.y4c_c00349{bottom:614.400000pt;}
.y1a_c00349{bottom:628.400000pt;}
.y4b_c00349{bottom:630.400000pt;}
.y19_c00349{bottom:644.400000pt;}
.y4a_c00349{bottom:653.733333pt;}
.y18_c00349{bottom:660.133333pt;}
.y49_c00349{bottom:669.600000pt;}
.y17_c00349{bottom:676.133333pt;}
.y48_c00349{bottom:685.600000pt;}
.y16_c00349{bottom:694.800000pt;}
.y47_c00349{bottom:701.600000pt;}
.y15_c00349{bottom:711.466667pt;}
.y46_c00349{bottom:717.333333pt;}
.y14_c00349{bottom:727.466667pt;}
.y45_c00349{bottom:733.333333pt;}
.y13_c00349{bottom:743.466667pt;}
.y44_c00349{bottom:749.066667pt;}
.y12_c00349{bottom:759.466667pt;}
.y43_c00349{bottom:765.066667pt;}
.y11_c00349{bottom:775.200000pt;}
.y42_c00349{bottom:781.066667pt;}
.y10_c00349{bottom:791.200000pt;}
.y41_c00349{bottom:800.933333pt;}
.yf_c00349{bottom:807.200000pt;}
.ye_c00349{bottom:822.933333pt;}
.y40_c00349{bottom:832.266667pt;}
.yd_c00349{bottom:839.200000pt;}
.y3f_c00349{bottom:848.266667pt;}
.yc_c00349{bottom:854.933333pt;}
.y3e_c00349{bottom:864.266667pt;}
.yb_c00349{bottom:870.666667pt;}
.y3d_c00349{bottom:884.000000pt;}
.ya_c00349{bottom:895.600000pt;}
.y3c_c00349{bottom:900.000000pt;}
.y9_c00349{bottom:902.266667pt;}
.y3b_c00349{bottom:915.733333pt;}
.y8_c00349{bottom:918.266667pt;}
.y3a_c00349{bottom:931.733333pt;}
.y7_c00349{bottom:934.000000pt;}
.y39_c00349{bottom:947.733333pt;}
.y6_c00349{bottom:950.266667pt;}
.y38_c00349{bottom:963.466667pt;}
.y5_c00349{bottom:966.000000pt;}
.y37_c00349{bottom:979.466667pt;}
.y4_c00349{bottom:981.733333pt;}
.y3_c00349{bottom:997.733333pt;}
.y36_c00349{bottom:998.400000pt;}
.y1_c00349{bottom:1017.866667pt;}
.y2_c00349{bottom:1021.333333pt;}
.h7_c00349{height:26.666667pt;}
.h4_c00349{height:32.000000pt;}
.ha_c00349{height:37.333333pt;}
.h8_c00349{height:42.666667pt;}
.h9_c00349{height:48.000000pt;}
.h6_c00349{height:53.333333pt;}
.h2_c00349{height:58.666667pt;}
.h5_c00349{height:64.000000pt;}
.h3_c00349{height:69.333333pt;}
.h1_c00349{height:1134.666667pt;}
.h0_c00349{height:1134.719971pt;}
.w0_c00349{width:853.760009pt;}
.w1_c00349{width:854.000000pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:147.466667pt;}
.x6e_c00349{left:151.333333pt;}
.x7b_c00349{left:153.866667pt;}
.x38_c00349{left:163.066667pt;}
.x3_c00349{left:164.533333pt;}
.x3e_c00349{left:165.600000pt;}
.x6d_c00349{left:166.533333pt;}
.x70_c00349{left:168.000000pt;}
.x7c_c00349{left:169.600000pt;}
.x85_c00349{left:170.666667pt;}
.x88_c00349{left:171.733333pt;}
.x91_c00349{left:173.866667pt;}
.x4f_c00349{left:180.666667pt;}
.x12_c00349{left:185.600000pt;}
.x19_c00349{left:187.466667pt;}
.x57_c00349{left:189.066667pt;}
.x69_c00349{left:192.266667pt;}
.x2a_c00349{left:195.066667pt;}
.x39_c00349{left:198.000000pt;}
.x47_c00349{left:198.933333pt;}
.x31_c00349{left:200.533333pt;}
.x78_c00349{left:202.133333pt;}
.x3f_c00349{left:203.333333pt;}
.x4c_c00349{left:208.133333pt;}
.x2b_c00349{left:209.466667pt;}
.x7d_c00349{left:210.933333pt;}
.x50_c00349{left:212.000000pt;}
.x1a_c00349{left:213.066667pt;}
.x53_c00349{left:215.600000pt;}
.x63_c00349{left:216.666667pt;}
.x5e_c00349{left:217.733333pt;}
.x48_c00349{left:219.066667pt;}
.x13_c00349{left:221.066667pt;}
.x58_c00349{left:222.933333pt;}
.x40_c00349{left:224.800000pt;}
.x73_c00349{left:226.400000pt;}
.x1b_c00349{left:227.466667pt;}
.x89_c00349{left:228.666667pt;}
.x3a_c00349{left:230.933333pt;}
.x8f_c00349{left:232.400000pt;}
.x7e_c00349{left:234.266667pt;}
.x2c_c00349{left:236.666667pt;}
.x59_c00349{left:238.266667pt;}
.x5f_c00349{left:240.400000pt;}
.x80_c00349{left:242.133333pt;}
.x92_c00349{left:243.066667pt;}
.x8a_c00349{left:244.000000pt;}
.x2d_c00349{left:244.933333pt;}
.x79_c00349{left:246.266667pt;}
.x21_c00349{left:247.200000pt;}
.xa_c00349{left:250.800000pt;}
.x76_c00349{left:252.400000pt;}
.x54_c00349{left:254.933333pt;}
.x4_c00349{left:257.600000pt;}
.x75_c00349{left:258.933333pt;}
.x32_c00349{left:260.133333pt;}
.x22_c00349{left:261.866667pt;}
.x66_c00349{left:263.600000pt;}
.x4d_c00349{left:265.066667pt;}
.x6a_c00349{left:268.800000pt;}
.x7f_c00349{left:270.133333pt;}
.x8e_c00349{left:271.333333pt;}
.x41_c00349{left:272.800000pt;}
.x5_c00349{left:276.133333pt;}
.x33_c00349{left:277.066667pt;}
.x1c_c00349{left:281.200000pt;}
.xb_c00349{left:282.533333pt;}
.x56_c00349{left:284.800000pt;}
.x14_c00349{left:285.733333pt;}
.x60_c00349{left:289.066667pt;}
.x8b_c00349{left:290.133333pt;}
.x23_c00349{left:292.000000pt;}
.x5a_c00349{left:292.933333pt;}
.xc_c00349{left:294.000000pt;}
.x51_c00349{left:295.066667pt;}
.x42_c00349{left:296.533333pt;}
.x82_c00349{left:297.466667pt;}
.x49_c00349{left:298.400000pt;}
.x15_c00349{left:300.133333pt;}
.x61_c00349{left:301.866667pt;}
.x6b_c00349{left:303.066667pt;}
.x34_c00349{left:304.266667pt;}
.x2e_c00349{left:305.466667pt;}
.x24_c00349{left:308.000000pt;}
.x8d_c00349{left:310.400000pt;}
.x8c_c00349{left:311.600000pt;}
.x81_c00349{left:312.800000pt;}
.x1d_c00349{left:313.866667pt;}
.x71_c00349{left:316.000000pt;}
.x43_c00349{left:319.866667pt;}
.x67_c00349{left:320.933333pt;}
.x2f_c00349{left:323.733333pt;}
.x6_c00349{left:325.466667pt;}
.x4e_c00349{left:327.466667pt;}
.x64_c00349{left:332.533333pt;}
.x4a_c00349{left:334.533333pt;}
.x25_c00349{left:335.866667pt;}
.x3b_c00349{left:338.133333pt;}
.x35_c00349{left:339.466667pt;}
.x93_c00349{left:340.400000pt;}
.x5b_c00349{left:343.600000pt;}
.x7_c00349{left:345.600000pt;}
.x16_c00349{left:347.466667pt;}
.xd_c00349{left:349.066667pt;}
.x26_c00349{left:351.200000pt;}
.x44_c00349{left:356.000000pt;}
.x1e_c00349{left:357.733333pt;}
.x36_c00349{left:359.600000pt;}
.x74_c00349{left:361.466667pt;}
.x83_c00349{left:362.400000pt;}
.x2_c00349{left:366.400000pt;}
.x17_c00349{left:367.600000pt;}
.x27_c00349{left:369.733333pt;}
.x3c_c00349{left:372.000000pt;}
.x1f_c00349{left:373.733333pt;}
.x45_c00349{left:376.133333pt;}
.xe_c00349{left:377.200000pt;}
.x5c_c00349{left:379.066667pt;}
.x8_c00349{left:381.066667pt;}
.x55_c00349{left:382.933333pt;}
.x95_c00349{left:384.000000pt;}
.x18_c00349{left:386.800000pt;}
.x7a_c00349{left:391.866667pt;}
.xf_c00349{left:393.200000pt;}
.x28_c00349{left:395.333333pt;}
.x30_c00349{left:396.400000pt;}
.x90_c00349{left:398.800000pt;}
.x84_c00349{left:400.133333pt;}
.x65_c00349{left:401.333333pt;}
.x5d_c00349{left:402.400000pt;}
.x6c_c00349{left:403.600000pt;}
.x86_c00349{left:405.600000pt;}
.x9_c00349{left:406.666667pt;}
.x3d_c00349{left:408.133333pt;}
.x72_c00349{left:410.000000pt;}
.x10_c00349{left:412.133333pt;}
.x6f_c00349{left:414.133333pt;}
.x77_c00349{left:416.533333pt;}
.x62_c00349{left:418.000000pt;}
.x29_c00349{left:421.866667pt;}
.x37_c00349{left:424.533333pt;}
.x11_c00349{left:425.866667pt;}
.x46_c00349{left:429.600000pt;}
.x20_c00349{left:430.666667pt;}
.x4b_c00349{left:434.666667pt;}
.x52_c00349{left:435.733333pt;}
.x68_c00349{left:439.066667pt;}
.x87_c00349{left:440.533333pt;}
.x94_c00349{left:442.800000pt;}
.x9b_c00349{left:465.866667pt;}
.xc4_c00349{left:467.466667pt;}
.xd0_c00349{left:468.800000pt;}
.xfe_c00349{left:470.666667pt;}
.x12b_c00349{left:473.333333pt;}
.xa1_c00349{left:482.133333pt;}
.xb6_c00349{left:483.066667pt;}
.xdc_c00349{left:484.133333pt;}
.xf2_c00349{left:485.733333pt;}
.x102_c00349{left:486.800000pt;}
.x12e_c00349{left:488.000000pt;}
.x132_c00349{left:489.600000pt;}
.x116_c00349{left:496.800000pt;}
.xae_c00349{left:498.266667pt;}
.x96_c00349{left:499.200000pt;}
.xd6_c00349{left:501.066667pt;}
.x11a_c00349{left:502.666667pt;}
.xd1_c00349{left:505.333333pt;}
.xba_c00349{left:507.333333pt;}
.xdd_c00349{left:509.466667pt;}
.xa2_c00349{left:511.600000pt;}
.x126_c00349{left:515.200000pt;}
.xed_c00349{left:516.666667pt;}
.xf3_c00349{left:518.000000pt;}
.x10c_c00349{left:519.733333pt;}
.xfc_c00349{left:520.666667pt;}
.x9c_c00349{left:521.866667pt;}
.xe2_c00349{left:525.733333pt;}
.xc9_c00349{left:527.600000pt;}
.x107_c00349{left:530.000000pt;}
.xc5_c00349{left:531.200000pt;}
.xa3_c00349{left:533.066667pt;}
.xbd_c00349{left:535.600000pt;}
.x123_c00349{left:536.933333pt;}
.xa7_c00349{left:537.866667pt;}
.xde_c00349{left:538.933333pt;}
.x97_c00349{left:539.866667pt;}
.x13b_c00349{left:541.733333pt;}
.xfd_c00349{left:542.800000pt;}
.xbe_c00349{left:544.933333pt;}
.xe3_c00349{left:546.266667pt;}
.xf6_c00349{left:547.333333pt;}
.x11e_c00349{left:548.800000pt;}
.xee_c00349{left:550.000000pt;}
.x12f_c00349{left:550.933333pt;}
.x124_c00349{left:553.200000pt;}
.xb7_c00349{left:554.800000pt;}
.xef_c00349{left:558.000000pt;}
.xd7_c00349{left:558.933333pt;}
.xc6_c00349{left:560.266667pt;}
.xce_c00349{left:563.200000pt;}
.xaf_c00349{left:564.800000pt;}
.x103_c00349{left:567.200000pt;}
.x130_c00349{left:569.200000pt;}
.xbf_c00349{left:570.800000pt;}
.x13c_c00349{left:572.133333pt;}
.xb0_c00349{left:573.066667pt;}
.xa4_c00349{left:575.600000pt;}
.xe4_c00349{left:578.000000pt;}
.xd8_c00349{left:580.400000pt;}
.xe8_c00349{left:582.666667pt;}
.x118_c00349{left:583.600000pt;}
.x9d_c00349{left:584.533333pt;}
.x10d_c00349{left:585.600000pt;}
.x108_c00349{left:587.600000pt;}
.xc0_c00349{left:588.666667pt;}
.x125_c00349{left:590.266667pt;}
.xf4_c00349{left:591.333333pt;}
.xb1_c00349{left:592.266667pt;}
.xc7_c00349{left:594.133333pt;}
.x109_c00349{left:596.533333pt;}
.x11f_c00349{left:597.466667pt;}
.x98_c00349{left:599.066667pt;}
.x11b_c00349{left:600.000000pt;}
.xcf_c00349{left:603.733333pt;}
.x112_c00349{left:607.333333pt;}
.xa8_c00349{left:608.533333pt;}
.x136_c00349{left:612.933333pt;}
.xf0_c00349{left:614.000000pt;}
.x10e_c00349{left:615.866667pt;}
.x99_c00349{left:618.000000pt;}
.xd2_c00349{left:619.600000pt;}
.xca_c00349{left:621.333333pt;}
.xb2_c00349{left:622.933333pt;}
.x12c_c00349{left:624.133333pt;}
.xc1_c00349{left:627.066667pt;}
.xd9_c00349{left:628.400000pt;}
.xe5_c00349{left:629.466667pt;}
.x122_c00349{left:630.800000pt;}
.xfa_c00349{left:633.466667pt;}
.xf1_c00349{left:634.533333pt;}
.xc2_c00349{left:635.733333pt;}
.xff_c00349{left:636.800000pt;}
.x11c_c00349{left:638.400000pt;}
.xe9_c00349{left:639.333333pt;}
.x13d_c00349{left:640.533333pt;}
.xb3_c00349{left:642.400000pt;}
.xfb_c00349{left:644.666667pt;}
.x113_c00349{left:645.733333pt;}
.xb8_c00349{left:646.933333pt;}
.xbb_c00349{left:647.866667pt;}
.xe6_c00349{left:650.266667pt;}
.x11d_c00349{left:651.466667pt;}
.xcb_c00349{left:652.666667pt;}
.x119_c00349{left:655.600000pt;}
.x9e_c00349{left:657.200000pt;}
.x134_c00349{left:658.933333pt;}
.xa9_c00349{left:660.000000pt;}
.xa5_c00349{left:661.066667pt;}
.x104_c00349{left:663.466667pt;}
.xd3_c00349{left:665.066667pt;}
.x9a_c00349{left:666.000000pt;}
.xb9_c00349{left:668.000000pt;}
.x114_c00349{left:670.400000pt;}
.xcc_c00349{left:672.533333pt;}
.xaa_c00349{left:674.133333pt;}
.xd4_c00349{left:676.000000pt;}
.xf7_c00349{left:677.600000pt;}
.x13e_c00349{left:678.666667pt;}
.x120_c00349{left:680.933333pt;}
.x135_c00349{left:682.000000pt;}
.xda_c00349{left:683.733333pt;}
.x127_c00349{left:685.866667pt;}
.x10a_c00349{left:688.400000pt;}
.xdf_c00349{left:690.133333pt;}
.x128_c00349{left:692.000000pt;}
.x105_c00349{left:695.733333pt;}
.x131_c00349{left:696.666667pt;}
.x139_c00349{left:697.600000pt;}
.xea_c00349{left:698.800000pt;}
.xc3_c00349{left:700.000000pt;}
.x9f_c00349{left:702.000000pt;}
.xe7_c00349{left:704.933333pt;}
.xb4_c00349{left:706.400000pt;}
.x117_c00349{left:707.333333pt;}
.x10f_c00349{left:708.933333pt;}
.x100_c00349{left:710.133333pt;}
.xf8_c00349{left:711.200000pt;}
.xab_c00349{left:712.266667pt;}
.xe0_c00349{left:713.200000pt;}
.xeb_c00349{left:715.466667pt;}
.x101_c00349{left:719.733333pt;}
.x137_c00349{left:720.800000pt;}
.xa0_c00349{left:723.066667pt;}
.x12a_c00349{left:724.400000pt;}
.xcd_c00349{left:726.000000pt;}
.xc8_c00349{left:727.600000pt;}
.xf5_c00349{left:729.866667pt;}
.x106_c00349{left:730.933333pt;}
.xd5_c00349{left:733.333333pt;}
.x110_c00349{left:734.533333pt;}
.x129_c00349{left:736.533333pt;}
.x12d_c00349{left:738.933333pt;}
.xa6_c00349{left:742.666667pt;}
.xe1_c00349{left:743.866667pt;}
.xdb_c00349{left:747.466667pt;}
.xbc_c00349{left:748.400000pt;}
.xac_c00349{left:750.000000pt;}
.x111_c00349{left:754.400000pt;}
.x121_c00349{left:755.333333pt;}
.xad_c00349{left:757.733333pt;}
.x115_c00349{left:759.866667pt;}
.x10b_c00349{left:761.466667pt;}
.x138_c00349{left:762.666667pt;}
.xb5_c00349{left:764.666667pt;}
.xec_c00349{left:766.000000pt;}
.xf9_c00349{left:766.933333pt;}
.x133_c00349{left:770.533333pt;}
.x13a_c00349{left:774.666667pt;}
}





/* 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_c00350 {
    display:none;
  }
  .loading-indicator_c00350.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00350 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_c00350 { 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_c00350" -> "#page-container .classname_c00350")
 */
.pf_c00350 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00350 { /* 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_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00350 { /* 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_c00350 { /* 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_c00350 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00350 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00350 {overflow:visible;}
  }
}
.c_c00350 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00350 { /* 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_c00350:after { /* webkit #35443 */
  content: '';
}
.t_c00350:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00350 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 */
}
.__c00350 { /* 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_c00350 { /* info for Javascript */
  display:none;
}
.l_c00350 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00350 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00350 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00350: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_c00350 {
    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_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00350.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_c00350 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00350;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.000000;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;}
.mce_c00350{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00350{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m18_c00350{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m100_c00350{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00350{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00350{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00350{transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073750,0.000000,0.000000,0.250000,0,0);}
.m69_c00350{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00350{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mde_c00350{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00350{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m34_c00350{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m105_c00350{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00350{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00350{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m88_c00350{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mef_c00350{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m119_c00350{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00350{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00350{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m50_c00350{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00350{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m19_c00350{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m101_c00350{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m64_c00350{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mff_c00350{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m55_c00350{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m85_c00350{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00350{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00350{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m3_c00350{transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);}
.md6_c00350{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m7_c00350{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00350{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.md3_c00350{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m87_c00350{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.md5_c00350{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me3_c00350{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00350{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me5_c00350{transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);}
.me1_c00350{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m59_c00350{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00350{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00350{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mad_c00350{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00350{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.med_c00350{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mc_c00350{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m112_c00350{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00350{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m65_c00350{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m102_c00350{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00350{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m24_c00350{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00350{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m118_c00350{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m4_c00350{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m49_c00350{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mea_c00350{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m117_c00350{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me0_c00350{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00350{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00350{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.maf_c00350{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m28_c00350{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m130_c00350{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mf_c00350{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00350{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00350{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m14_c00350{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m138_c00350{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m113_c00350{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m123_c00350{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m11_c00350{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00350{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00350{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00350{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00350{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m38_c00350{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m109_c00350{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.me_c00350{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00350{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m97_c00350{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00350{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00350{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m129_c00350{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00350{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m86_c00350{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m56_c00350{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m95_c00350{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00350{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00350{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m5_c00350{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00350{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m111_c00350{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m114_c00350{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m63_c00350{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m13a_c00350{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00350{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10_c00350{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma_c00350{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00350{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00350{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mca_c00350{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00350{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mac_c00350{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md_c00350{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00350{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m68_c00350{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me6_c00350{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.me7_c00350{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00350{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me4_c00350{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m39_c00350{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8_c00350{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m57_c00350{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00350{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m42_c00350{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9_c00350{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m79_c00350{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00350{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00350{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m137_c00350{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00350{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00350{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00350{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m44_c00350{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00350{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6_c00350{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m107_c00350{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00350{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m31_c00350{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00350{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb_c00350{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m89_c00350{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00350{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me2_c00350{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00350{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m122_c00350{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m73_c00350{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m17_c00350{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00350{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00350{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m29_c00350{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00350{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m110_c00350{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00350{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m16_c00350{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m99_c00350{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m108_c00350{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00350{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md4_c00350{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00350{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00350{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00350{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m76_c00350{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00350{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m48_c00350{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m58_c00350{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00350{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m72_c00350{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m93_c00350{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m13_c00350{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00350{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m78_c00350{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00350{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00350{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00350{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.meb_c00350{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m54_c00350{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mec_c00350{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m60_c00350{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m52_c00350{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mee_c00350{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00350{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m32_c00350{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md1_c00350{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00350{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m45_c00350{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m116_c00350{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m26_c00350{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m115_c00350{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m15_c00350{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m84_c00350{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m66_c00350{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m12_c00350{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00350{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m104_c00350{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m71_c00350{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m37_c00350{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m94_c00350{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00350{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00350{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m61_c00350{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00350{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00350{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m35_c00350{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00350{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00350{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md9_c00350{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m98_c00350{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00350{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m22_c00350{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00350{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md8_c00350{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00350{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m53_c00350{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00350{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m40_c00350{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m131_c00350{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00350{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m27_c00350{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me8_c00350{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00350{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m134_c00350{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mae_c00350{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00350{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m43_c00350{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m106_c00350{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00350{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00350{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00350{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m133_c00350{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00350{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00350{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m81_c00350{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00350{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m91_c00350{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00350{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00350{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00350{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00350{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00350{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m92_c00350{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m136_c00350{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00350{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00350{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00350{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m46_c00350{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00350{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m30_c00350{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00350{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m41_c00350{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00350{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00350{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00350{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m77_c00350{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00350{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m75_c00350{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00350{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m90_c00350{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00350{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m70_c00350{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mda_c00350{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00350{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00350{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00350{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m51_c00350{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m96_c00350{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m33_c00350{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00350{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m67_c00350{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m74_c00350{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m121_c00350{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00350{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00350{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00350{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m135_c00350{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m83_c00350{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md7_c00350{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mba_c00350{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.md2_c00350{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00350{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md0_c00350{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00350{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m21_c00350{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.maa_c00350{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.mab_c00350{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m124_c00350{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m80_c00350{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00350{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00350{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00350{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m103_c00350{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00350{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m125_c00350{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00350{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me9_c00350{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00350{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m36_c00350{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00350{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m23_c00350{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00350{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00350{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m132_c00350{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m62_c00350{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m128_c00350{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m47_c00350{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m126_c00350{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00350{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m25_c00350{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m0_c00350{transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00350{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m82_c00350{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00350{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m2_c00350{transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);}
.m1_c00350{transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00350{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m20_c00350{transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);}
.m139_c00350{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m13d_c00350{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00350{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00350{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m127_c00350{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00350{transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00350{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m120_c00350{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00350{transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls0_c00350{letter-spacing:0.000000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{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__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00350{word-spacing:-8.309278px;}
.ws13_c00350{word-spacing:-6.924399px;}
.ws11_c00350{word-spacing:-5.986900px;}
.wsc_c00350{word-spacing:-3.582210px;}
.ws2_c00350{word-spacing:-3.498282px;}
.ws1_c00350{word-spacing:-3.366812px;}
.ws0_c00350{word-spacing:-2.390177px;}
.ws17_c00350{word-spacing:0.000000px;}
.ws14_c00350{word-spacing:0.370370px;}
.ws10_c00350{word-spacing:1.097754px;}
.ws3_c00350{word-spacing:3.917197px;}
.ws16_c00350{word-spacing:10.166667px;}
.ws5_c00350{word-spacing:12.726115px;}
.ws12_c00350{word-spacing:14.057592px;}
.wsf_c00350{word-spacing:16.257611px;}
.ws6_c00350{word-spacing:18.055556px;}
.wsa_c00350{word-spacing:19.627119px;}
.ws15_c00350{word-spacing:21.500000px;}
.wse_c00350{word-spacing:23.211796px;}
.ws8_c00350{word-spacing:23.694915px;}
.ws9_c00350{word-spacing:28.976744px;}
.wsb_c00350{word-spacing:33.627907px;}
.ws7_c00350{word-spacing:38.279070px;}
.ws4_c00350{word-spacing:123.142857px;}
._5_c00350{width:46.994638px;}
._4_c00350{width:53.428954px;}
._3_c00350{width:54.559322px;}
._2_c00350{width:58.627119px;}
._6_c00350{width:77.279070px;}
._1_c00350{width:84.255814px;}
._0_c00350{width:193.714286px;}
.fc0_c00350{color:transparent;}
.fs4_c00350{font-size:24.000000px;}
.fs5_c00350{font-size:36.000000px;}
.fs6_c00350{font-size:54.000000px;}
.fs3_c00350{font-size:60.000000px;}
.fs2_c00350{font-size:66.000000px;}
.fs1_c00350{font-size:72.000000px;}
.fs7_c00350{font-size:78.000000px;}
.fs0_c00350{font-size:102.000000px;}
.y0_c00350{bottom:0.000000px;}
.y56_c00350{bottom:173.550000px;}
.y55_c00350{bottom:188.700000px;}
.y54_c00350{bottom:209.250000px;}
.y53_c00350{bottom:229.350000px;}
.y44_c00350{bottom:244.200000px;}
.y52_c00350{bottom:252.000000px;}
.y43_c00350{bottom:262.200000px;}
.y51_c00350{bottom:271.500000px;}
.y42_c00350{bottom:280.500000px;}
.y50_c00350{bottom:289.500000px;}
.y41_c00350{bottom:298.200000px;}
.y4f_c00350{bottom:307.500000px;}
.y40_c00350{bottom:315.900000px;}
.y4e_c00350{bottom:325.200000px;}
.y3f_c00350{bottom:333.600000px;}
.y4d_c00350{bottom:343.200000px;}
.y3e_c00350{bottom:351.600000px;}
.y4c_c00350{bottom:361.200000px;}
.y3d_c00350{bottom:369.600000px;}
.y4b_c00350{bottom:379.200000px;}
.y3c_c00350{bottom:387.900000px;}
.y4a_c00350{bottom:397.200000px;}
.y3b_c00350{bottom:405.900000px;}
.y49_c00350{bottom:415.200000px;}
.y3a_c00350{bottom:423.600000px;}
.y48_c00350{bottom:433.200000px;}
.y39_c00350{bottom:441.600000px;}
.y47_c00350{bottom:450.450000px;}
.y38_c00350{bottom:459.300000px;}
.y46_c00350{bottom:468.450000px;}
.y37_c00350{bottom:480.000000px;}
.y45_c00350{bottom:486.750000px;}
.y36_c00350{bottom:494.700000px;}
.y35_c00350{bottom:509.400000px;}
.y34_c00350{bottom:526.350000px;}
.y33_c00350{bottom:538.950000px;}
.y32_c00350{bottom:553.350000px;}
.y27_c00350{bottom:566.700000px;}
.y26_c00350{bottom:580.950000px;}
.y25_c00350{bottom:597.900000px;}
.y31_c00350{bottom:606.600000px;}
.y24_c00350{bottom:616.350000px;}
.y30_c00350{bottom:624.600000px;}
.y23_c00350{bottom:634.350000px;}
.y2f_c00350{bottom:642.600000px;}
.y22_c00350{bottom:652.350000px;}
.y2e_c00350{bottom:664.500000px;}
.y21_c00350{bottom:674.400000px;}
.y2d_c00350{bottom:683.250000px;}
.y20_c00350{bottom:692.400000px;}
.y2c_c00350{bottom:700.200000px;}
.y1f_c00350{bottom:710.100000px;}
.y2b_c00350{bottom:717.900000px;}
.y1e_c00350{bottom:728.100000px;}
.y2a_c00350{bottom:739.500000px;}
.y1d_c00350{bottom:745.800000px;}
.y29_c00350{bottom:757.800000px;}
.y1c_c00350{bottom:763.500000px;}
.y28_c00350{bottom:775.800000px;}
.y1b_c00350{bottom:781.500000px;}
.y1a_c00350{bottom:799.050000px;}
.y19_c00350{bottom:816.750000px;}
.y18_c00350{bottom:829.350000px;}
.y17_c00350{bottom:839.100000px;}
.y12_c00350{bottom:847.500000px;}
.y16_c00350{bottom:856.800000px;}
.y11_c00350{bottom:865.500000px;}
.y15_c00350{bottom:874.800000px;}
.y10_c00350{bottom:883.050000px;}
.yf_c00350{bottom:891.450000px;}
.y14_c00350{bottom:892.800000px;}
.ye_c00350{bottom:900.750000px;}
.y13_c00350{bottom:910.800000px;}
.yd_c00350{bottom:918.300000px;}
.yc_c00350{bottom:936.300000px;}
.yb_c00350{bottom:954.300000px;}
.ya_c00350{bottom:971.550000px;}
.y9_c00350{bottom:990.300000px;}
.y8_c00350{bottom:1008.000000px;}
.y7_c00350{bottom:1026.000000px;}
.y6_c00350{bottom:1044.000000px;}
.y5_c00350{bottom:1061.700000px;}
.y4_c00350{bottom:1080.000000px;}
.y3_c00350{bottom:1099.050000px;}
.y2_c00350{bottom:1116.750000px;}
.y1_c00350{bottom:1143.000000px;}
.h6_c00350{height:24.000000px;}
.h7_c00350{height:36.000000px;}
.h8_c00350{height:54.000000px;}
.h5_c00350{height:60.000000px;}
.h4_c00350{height:66.000000px;}
.h3_c00350{height:72.000000px;}
.h9_c00350{height:78.000000px;}
.h2_c00350{height:102.000000px;}
.h0_c00350{height:1272.600036px;}
.h1_c00350{height:1272.750000px;}
.w0_c00350{width:960.480010px;}
.w1_c00350{width:960.750000px;}
.x0_c00350{left:0.000000px;}
.xe5_c00350{left:94.350000px;}
.x21_c00350{left:96.300000px;}
.x11c_c00350{left:108.750000px;}
.xf1_c00350{left:109.800000px;}
.xdb_c00350{left:110.850000px;}
.xd6_c00350{left:112.350000px;}
.x77_c00350{left:113.400000px;}
.x5_c00350{left:114.450000px;}
.xbb_c00350{left:122.850000px;}
.xf8_c00350{left:123.900000px;}
.xf2_c00350{left:124.950000px;}
.xbe_c00350{left:129.600000px;}
.x5f_c00350{left:131.550000px;}
.x43_c00350{left:135.750000px;}
.x6_c00350{left:136.800000px;}
.x129_c00350{left:139.200000px;}
.xbf_c00350{left:141.450000px;}
.x78_c00350{left:144.000000px;}
.xf9_c00350{left:146.250000px;}
.x124_c00350{left:147.600000px;}
.x145_c00350{left:148.650000px;}
.xdc_c00350{left:150.750000px;}
.x53_c00350{left:153.900000px;}
.x60_c00350{left:156.000000px;}
.x22_c00350{left:157.500000px;}
.x2c_c00350{left:160.800000px;}
.xac_c00350{left:163.050000px;}
.xec_c00350{left:164.250000px;}
.x146_c00350{left:165.600000px;}
.x6c_c00350{left:166.650000px;}
.x15_c00350{left:170.250000px;}
.xae_c00350{left:172.800000px;}
.x44_c00350{left:176.400000px;}
.x113_c00350{left:177.450000px;}
.x61_c00350{left:179.400000px;}
.x79_c00350{left:180.750000px;}
.x23_c00350{left:182.400000px;}
.x54_c00350{left:185.550000px;}
.x11b_c00350{left:187.350000px;}
.xd7_c00350{left:190.800000px;}
.x38_c00350{left:192.600000px;}
.xaf_c00350{left:194.100000px;}
.x16_c00350{left:195.750000px;}
.x117_c00350{left:197.850000px;}
.x7_c00350{left:199.500000px;}
.xe6_c00350{left:200.550000px;}
.xe8_c00350{left:201.600000px;}
.x14b_c00350{left:203.100000px;}
.x55_c00350{left:204.300000px;}
.x11f_c00350{left:206.550000px;}
.x12c_c00350{left:207.600000px;}
.xce_c00350{left:209.400000px;}
.xb6_c00350{left:212.400000px;}
.xb4_c00350{left:213.750000px;}
.x39_c00350{left:216.750000px;}
.x17_c00350{left:218.400000px;}
.xc9_c00350{left:220.050000px;}
.xed_c00350{left:222.900000px;}
.x6d_c00350{left:223.950000px;}
.x114_c00350{left:226.050000px;}
.xe2_c00350{left:227.250000px;}
.x62_c00350{left:228.750000px;}
.x24_c00350{left:230.700000px;}
.xd8_c00350{left:238.650000px;}
.x6e_c00350{left:241.200000px;}
.xcf_c00350{left:242.850000px;}
.x120_c00350{left:244.050000px;}
.x2d_c00350{left:245.700000px;}
.xca_c00350{left:247.350000px;}
.x63_c00350{left:249.300000px;}
.x125_c00350{left:251.550000px;}
.x8_c00350{left:253.800000px;}
.x127_c00350{left:255.450000px;}
.x3a_c00350{left:256.650000px;}
.x12d_c00350{left:258.150000px;}
.x6f_c00350{left:259.950000px;}
.x45_c00350{left:261.000000px;}
.x56_c00350{left:262.350000px;}
.x7a_c00350{left:265.350000px;}
.xd0_c00350{left:267.000000px;}
.xdf_c00350{left:268.950000px;}
.x11d_c00350{left:271.200000px;}
.xb0_c00350{left:272.250000px;}
.x7b_c00350{left:273.600000px;}
.x9_c00350{left:275.400000px;}
.xc0_c00350{left:276.450000px;}
.xcb_c00350{left:277.650000px;}
.xd3_c00350{left:278.700000px;}
.x12e_c00350{left:279.750000px;}
.xb1_c00350{left:281.550000px;}
.x3b_c00350{left:282.600000px;}
.x18_c00350{left:284.550000px;}
.x2e_c00350{left:286.800000px;}
.x57_c00350{left:289.650000px;}
.x64_c00350{left:291.750000px;}
.xd1_c00350{left:293.250000px;}
.x122_c00350{left:295.800000px;}
.x12a_c00350{left:297.300000px;}
.xb2_c00350{left:298.500000px;}
.xe9_c00350{left:301.650000px;}
.xcc_c00350{left:303.150000px;}
.xfa_c00350{left:304.350000px;}
.x65_c00350{left:306.450000px;}
.x7c_c00350{left:309.900000px;}
.x46_c00350{left:311.100000px;}
.xd9_c00350{left:312.450000px;}
.x2f_c00350{left:313.800000px;}
.xb7_c00350{left:315.000000px;}
.x11e_c00350{left:316.200000px;}
.xb3_c00350{left:318.600000px;}
.xea_c00350{left:320.700000px;}
.x7d_c00350{left:324.000000px;}
.xdd_c00350{left:327.150000px;}
.xa_c00350{left:329.400000px;}
.xef_c00350{left:332.250000px;}
.xe3_c00350{left:334.500000px;}
.x1_c00350{left:336.600000px;}
.x30_c00350{left:337.950000px;}
.xd4_c00350{left:339.900000px;}
.x58_c00350{left:342.150000px;}
.x121_c00350{left:343.650000px;}
.x19_c00350{left:345.750000px;}
.xe0_c00350{left:348.900000px;}
.x7e_c00350{left:350.700000px;}
.xf0_c00350{left:352.800000px;}
.x123_c00350{left:354.150000px;}
.x70_c00350{left:355.350000px;}
.x47_c00350{left:357.600000px;}
.x12f_c00350{left:358.950000px;}
.x2_c00350{left:361.800000px;}
.xf3_c00350{left:362.850000px;}
.xd5_c00350{left:366.600000px;}
.x7f_c00350{left:367.950000px;}
.x66_c00350{left:370.950000px;}
.xe4_c00350{left:373.800000px;}
.xb5_c00350{left:375.000000px;}
.x126_c00350{left:376.350000px;}
.x48_c00350{left:377.400000px;}
.xb8_c00350{left:380.850000px;}
.x12b_c00350{left:381.900000px;}
.xb_c00350{left:383.100000px;}
.x25_c00350{left:384.750000px;}
.x130_c00350{left:385.950000px;}
.x3c_c00350{left:387.000000px;}
.xde_c00350{left:390.150000px;}
.xf4_c00350{left:391.650000px;}
.xe7_c00350{left:393.900000px;}
.xee_c00350{left:394.950000px;}
.xad_c00350{left:397.800000px;}
.xcd_c00350{left:400.650000px;}
.x26_c00350{left:402.750000px;}
.x59_c00350{left:404.400000px;}
.x3_c00350{left:406.800000px;}
.xda_c00350{left:409.650000px;}
.x149_c00350{left:412.500000px;}
.x118_c00350{left:414.000000px;}
.xe1_c00350{left:415.500000px;}
.x128_c00350{left:416.700000px;}
.x49_c00350{left:417.750000px;}
.x71_c00350{left:419.100000px;}
.xc_c00350{left:422.400000px;}
.xeb_c00350{left:423.450000px;}
.xd2_c00350{left:429.300000px;}
.xf5_c00350{left:453.600000px;}
.x119_c00350{left:455.700000px;}
.x105_c00350{left:465.600000px;}
.x13c_c00350{left:470.100000px;}
.xd_c00350{left:471.750000px;}
.x4a_c00350{left:472.800000px;}
.x13d_c00350{left:483.150000px;}
.x80_c00350{left:485.250000px;}
.x5a_c00350{left:488.550000px;}
.xfd_c00350{left:489.600000px;}
.x8b_c00350{left:492.150000px;}
.x4b_c00350{left:494.100000px;}
.xff_c00350{left:496.800000px;}
.xbc_c00350{left:497.850000px;}
.x10f_c00350{left:501.300000px;}
.xaa_c00350{left:502.500000px;}
.x31_c00350{left:503.550000px;}
.x3d_c00350{left:504.750000px;}
.x81_c00350{left:507.150000px;}
.x94_c00350{left:508.650000px;}
.x72_c00350{left:510.600000px;}
.xab_c00350{left:512.250000px;}
.x138_c00350{left:516.150000px;}
.x1a_c00350{left:517.500000px;}
.x9b_c00350{left:518.700000px;}
.x27_c00350{left:521.550000px;}
.xe_c00350{left:524.250000px;}
.x13e_c00350{left:525.300000px;}
.xfb_c00350{left:526.350000px;}
.x106_c00350{left:527.850000px;}
.x90_c00350{left:529.500000px;}
.x110_c00350{left:530.850000px;}
.x95_c00350{left:533.850000px;}
.x11a_c00350{left:534.900000px;}
.x131_c00350{left:539.250000px;}
.x4c_c00350{left:540.900000px;}
.x28_c00350{left:542.850000px;}
.xc3_c00350{left:544.650000px;}
.xf6_c00350{left:546.450000px;}
.x5b_c00350{left:547.650000px;}
.x9c_c00350{left:550.050000px;}
.x91_c00350{left:551.100000px;}
.x107_c00350{left:553.050000px;}
.x3e_c00350{left:554.700000px;}
.x14c_c00350{left:555.900000px;}
.x67_c00350{left:557.100000px;}
.x132_c00350{left:558.300000px;}
.xf_c00350{left:559.500000px;}
.xc4_c00350{left:561.150000px;}
.x9d_c00350{left:564.150000px;}
.x147_c00350{left:565.650000px;}
.x1b_c00350{left:567.150000px;}
.x5c_c00350{left:568.200000px;}
.x142_c00350{left:570.000000px;}
.x111_c00350{left:572.250000px;}
.x4d_c00350{left:573.300000px;}
.x3f_c00350{left:574.500000px;}
.x9e_c00350{left:576.750000px;}
.x32_c00350{left:579.900000px;}
.x68_c00350{left:581.550000px;}
.x96_c00350{left:584.550000px;}
.x8c_c00350{left:585.750000px;}
.x10c_c00350{left:588.450000px;}
.x100_c00350{left:590.400000px;}
.x9f_c00350{left:592.950000px;}
.xfe_c00350{left:594.300000px;}
.x73_c00350{left:596.250000px;}
.x10_c00350{left:598.800000px;}
.x1c_c00350{left:600.300000px;}
.x33_c00350{left:601.500000px;}
.xa6_c00350{left:603.450000px;}
.x5d_c00350{left:604.500000px;}
.x8d_c00350{left:606.300000px;}
.xa0_c00350{left:608.100000px;}
.x133_c00350{left:609.450000px;}
.x139_c00350{left:611.250000px;}
.xc5_c00350{left:613.050000px;}
.x87_c00350{left:614.550000px;}
.x4e_c00350{left:616.200000px;}
.x74_c00350{left:618.150000px;}
.x1d_c00350{left:619.800000px;}
.xb9_c00350{left:622.800000px;}
.x34_c00350{left:624.150000px;}
.x11_c00350{left:626.550000px;}
.x109_c00350{left:627.750000px;}
.x108_c00350{left:630.450000px;}
.x101_c00350{left:633.600000px;}
.x35_c00350{left:635.700000px;}
.x134_c00350{left:636.750000px;}
.x143_c00350{left:640.200000px;}
.x144_c00350{left:641.400000px;}
.x10d_c00350{left:642.750000px;}
.x69_c00350{left:645.300000px;}
.x141_c00350{left:647.550000px;}
.x13a_c00350{left:650.100000px;}
.xc1_c00350{left:651.300000px;}
.x40_c00350{left:653.400000px;}
.x93_c00350{left:655.500000px;}
.x4f_c00350{left:658.050000px;}
.x97_c00350{left:659.850000px;}
.x1e_c00350{left:661.200000px;}
.x41_c00350{left:664.500000px;}
.x82_c00350{left:666.000000px;}
.x88_c00350{left:667.050000px;}
.x12_c00350{left:669.750000px;}
.xa1_c00350{left:671.100000px;}
.x5e_c00350{left:672.150000px;}
.x102_c00350{left:673.800000px;}
.xa7_c00350{left:676.050000px;}
.x8e_c00350{left:678.000000px;}
.x98_c00350{left:679.950000px;}
.x112_c00350{left:681.900000px;}
.x10a_c00350{left:684.600000px;}
.x13_c00350{left:687.450000px;}
.x29_c00350{left:688.500000px;}
.xf7_c00350{left:690.000000px;}
.x75_c00350{left:691.950000px;}
.xc6_c00350{left:693.450000px;}
.x36_c00350{left:694.800000px;}
.x50_c00350{left:696.150000px;}
.x92_c00350{left:698.700000px;}
.xa2_c00350{left:700.650000px;}
.xc2_c00350{left:702.000000px;}
.xa8_c00350{left:704.550000px;}
.x1f_c00350{left:706.500000px;}
.x99_c00350{left:708.750000px;}
.xa3_c00350{left:711.750000px;}
.x115_c00350{left:713.700000px;}
.x83_c00350{left:714.900000px;}
.x51_c00350{left:717.000000px;}
.x10e_c00350{left:718.050000px;}
.x137_c00350{left:719.250000px;}
.x89_c00350{left:722.100000px;}
.x135_c00350{left:724.650000px;}
.x148_c00350{left:725.850000px;}
.xa9_c00350{left:726.900000px;}
.x2a_c00350{left:728.400000px;}
.x37_c00350{left:730.800000px;}
.x13f_c00350{left:733.050000px;}
.x84_c00350{left:736.200000px;}
.x103_c00350{left:739.650000px;}
.x14a_c00350{left:740.700000px;}
.x6a_c00350{left:742.050000px;}
.x52_c00350{left:743.250000px;}
.xc7_c00350{left:744.600000px;}
.x2b_c00350{left:746.100000px;}
.xbd_c00350{left:748.800000px;}
.x76_c00350{left:749.850000px;}
.xa4_c00350{left:753.150000px;}
.x10b_c00350{left:754.350000px;}
.x140_c00350{left:755.700000px;}
.x104_c00350{left:756.900000px;}
.xba_c00350{left:758.550000px;}
.x136_c00350{left:759.900000px;}
.x14_c00350{left:760.950000px;}
.x4_c00350{left:763.950000px;}
.x42_c00350{left:765.750000px;}
.x8f_c00350{left:767.550000px;}
.x85_c00350{left:768.600000px;}
.xfc_c00350{left:770.100000px;}
.xa5_c00350{left:771.150000px;}
.x13b_c00350{left:772.200000px;}
.x20_c00350{left:775.200000px;}
.x6b_c00350{left:776.550000px;}
.x86_c00350{left:777.900000px;}
.x8a_c00350{left:779.700000px;}
.xc8_c00350{left:781.350000px;}
.x116_c00350{left:782.850000px;}
.x9a_c00350{left:786.150000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.wsd_c00350{word-spacing:-7.386025pt;}
.ws13_c00350{word-spacing:-6.155021pt;}
.ws11_c00350{word-spacing:-5.321689pt;}
.wsc_c00350{word-spacing:-3.184187pt;}
.ws2_c00350{word-spacing:-3.109584pt;}
.ws1_c00350{word-spacing:-2.992722pt;}
.ws0_c00350{word-spacing:-2.124602pt;}
.ws17_c00350{word-spacing:0.000000pt;}
.ws14_c00350{word-spacing:0.329218pt;}
.ws10_c00350{word-spacing:0.975782pt;}
.ws3_c00350{word-spacing:3.481953pt;}
.ws16_c00350{word-spacing:9.037037pt;}
.ws5_c00350{word-spacing:11.312102pt;}
.ws12_c00350{word-spacing:12.495637pt;}
.wsf_c00350{word-spacing:14.451210pt;}
.ws6_c00350{word-spacing:16.049383pt;}
.wsa_c00350{word-spacing:17.446328pt;}
.ws15_c00350{word-spacing:19.111111pt;}
.wse_c00350{word-spacing:20.632708pt;}
.ws8_c00350{word-spacing:21.062147pt;}
.ws9_c00350{word-spacing:25.757106pt;}
.wsb_c00350{word-spacing:29.891473pt;}
.ws7_c00350{word-spacing:34.025840pt;}
.ws4_c00350{word-spacing:109.460317pt;}
._5_c00350{width:41.773012pt;}
._4_c00350{width:47.492404pt;}
._3_c00350{width:48.497175pt;}
._2_c00350{width:52.112994pt;}
._6_c00350{width:68.692506pt;}
._1_c00350{width:74.894057pt;}
._0_c00350{width:172.190476pt;}
.fs4_c00350{font-size:21.333333pt;}
.fs5_c00350{font-size:32.000000pt;}
.fs6_c00350{font-size:48.000000pt;}
.fs3_c00350{font-size:53.333333pt;}
.fs2_c00350{font-size:58.666667pt;}
.fs1_c00350{font-size:64.000000pt;}
.fs7_c00350{font-size:69.333333pt;}
.fs0_c00350{font-size:90.666667pt;}
.y0_c00350{bottom:0.000000pt;}
.y56_c00350{bottom:154.266667pt;}
.y55_c00350{bottom:167.733333pt;}
.y54_c00350{bottom:186.000000pt;}
.y53_c00350{bottom:203.866667pt;}
.y44_c00350{bottom:217.066667pt;}
.y52_c00350{bottom:224.000000pt;}
.y43_c00350{bottom:233.066667pt;}
.y51_c00350{bottom:241.333333pt;}
.y42_c00350{bottom:249.333333pt;}
.y50_c00350{bottom:257.333333pt;}
.y41_c00350{bottom:265.066667pt;}
.y4f_c00350{bottom:273.333333pt;}
.y40_c00350{bottom:280.800000pt;}
.y4e_c00350{bottom:289.066667pt;}
.y3f_c00350{bottom:296.533333pt;}
.y4d_c00350{bottom:305.066667pt;}
.y3e_c00350{bottom:312.533333pt;}
.y4c_c00350{bottom:321.066667pt;}
.y3d_c00350{bottom:328.533333pt;}
.y4b_c00350{bottom:337.066667pt;}
.y3c_c00350{bottom:344.800000pt;}
.y4a_c00350{bottom:353.066667pt;}
.y3b_c00350{bottom:360.800000pt;}
.y49_c00350{bottom:369.066667pt;}
.y3a_c00350{bottom:376.533333pt;}
.y48_c00350{bottom:385.066667pt;}
.y39_c00350{bottom:392.533333pt;}
.y47_c00350{bottom:400.400000pt;}
.y38_c00350{bottom:408.266667pt;}
.y46_c00350{bottom:416.400000pt;}
.y37_c00350{bottom:426.666667pt;}
.y45_c00350{bottom:432.666667pt;}
.y36_c00350{bottom:439.733333pt;}
.y35_c00350{bottom:452.800000pt;}
.y34_c00350{bottom:467.866667pt;}
.y33_c00350{bottom:479.066667pt;}
.y32_c00350{bottom:491.866667pt;}
.y27_c00350{bottom:503.733333pt;}
.y26_c00350{bottom:516.400000pt;}
.y25_c00350{bottom:531.466667pt;}
.y31_c00350{bottom:539.200000pt;}
.y24_c00350{bottom:547.866667pt;}
.y30_c00350{bottom:555.200000pt;}
.y23_c00350{bottom:563.866667pt;}
.y2f_c00350{bottom:571.200000pt;}
.y22_c00350{bottom:579.866667pt;}
.y2e_c00350{bottom:590.666667pt;}
.y21_c00350{bottom:599.466667pt;}
.y2d_c00350{bottom:607.333333pt;}
.y20_c00350{bottom:615.466667pt;}
.y2c_c00350{bottom:622.400000pt;}
.y1f_c00350{bottom:631.200000pt;}
.y2b_c00350{bottom:638.133333pt;}
.y1e_c00350{bottom:647.200000pt;}
.y2a_c00350{bottom:657.333333pt;}
.y1d_c00350{bottom:662.933333pt;}
.y29_c00350{bottom:673.600000pt;}
.y1c_c00350{bottom:678.666667pt;}
.y28_c00350{bottom:689.600000pt;}
.y1b_c00350{bottom:694.666667pt;}
.y1a_c00350{bottom:710.266667pt;}
.y19_c00350{bottom:726.000000pt;}
.y18_c00350{bottom:737.200000pt;}
.y17_c00350{bottom:745.866667pt;}
.y12_c00350{bottom:753.333333pt;}
.y16_c00350{bottom:761.600000pt;}
.y11_c00350{bottom:769.333333pt;}
.y15_c00350{bottom:777.600000pt;}
.y10_c00350{bottom:784.933333pt;}
.yf_c00350{bottom:792.400000pt;}
.y14_c00350{bottom:793.600000pt;}
.ye_c00350{bottom:800.666667pt;}
.y13_c00350{bottom:809.600000pt;}
.yd_c00350{bottom:816.266667pt;}
.yc_c00350{bottom:832.266667pt;}
.yb_c00350{bottom:848.266667pt;}
.ya_c00350{bottom:863.600000pt;}
.y9_c00350{bottom:880.266667pt;}
.y8_c00350{bottom:896.000000pt;}
.y7_c00350{bottom:912.000000pt;}
.y6_c00350{bottom:928.000000pt;}
.y5_c00350{bottom:943.733333pt;}
.y4_c00350{bottom:960.000000pt;}
.y3_c00350{bottom:976.933333pt;}
.y2_c00350{bottom:992.666667pt;}
.y1_c00350{bottom:1016.000000pt;}
.h6_c00350{height:21.333333pt;}
.h7_c00350{height:32.000000pt;}
.h8_c00350{height:48.000000pt;}
.h5_c00350{height:53.333333pt;}
.h4_c00350{height:58.666667pt;}
.h3_c00350{height:64.000000pt;}
.h9_c00350{height:69.333333pt;}
.h2_c00350{height:90.666667pt;}
.h0_c00350{height:1131.200032pt;}
.h1_c00350{height:1131.333333pt;}
.w0_c00350{width:853.760009pt;}
.w1_c00350{width:854.000000pt;}
.x0_c00350{left:0.000000pt;}
.xe5_c00350{left:83.866667pt;}
.x21_c00350{left:85.600000pt;}
.x11c_c00350{left:96.666667pt;}
.xf1_c00350{left:97.600000pt;}
.xdb_c00350{left:98.533333pt;}
.xd6_c00350{left:99.866667pt;}
.x77_c00350{left:100.800000pt;}
.x5_c00350{left:101.733333pt;}
.xbb_c00350{left:109.200000pt;}
.xf8_c00350{left:110.133333pt;}
.xf2_c00350{left:111.066667pt;}
.xbe_c00350{left:115.200000pt;}
.x5f_c00350{left:116.933333pt;}
.x43_c00350{left:120.666667pt;}
.x6_c00350{left:121.600000pt;}
.x129_c00350{left:123.733333pt;}
.xbf_c00350{left:125.733333pt;}
.x78_c00350{left:128.000000pt;}
.xf9_c00350{left:130.000000pt;}
.x124_c00350{left:131.200000pt;}
.x145_c00350{left:132.133333pt;}
.xdc_c00350{left:134.000000pt;}
.x53_c00350{left:136.800000pt;}
.x60_c00350{left:138.666667pt;}
.x22_c00350{left:140.000000pt;}
.x2c_c00350{left:142.933333pt;}
.xac_c00350{left:144.933333pt;}
.xec_c00350{left:146.000000pt;}
.x146_c00350{left:147.200000pt;}
.x6c_c00350{left:148.133333pt;}
.x15_c00350{left:151.333333pt;}
.xae_c00350{left:153.600000pt;}
.x44_c00350{left:156.800000pt;}
.x113_c00350{left:157.733333pt;}
.x61_c00350{left:159.466667pt;}
.x79_c00350{left:160.666667pt;}
.x23_c00350{left:162.133333pt;}
.x54_c00350{left:164.933333pt;}
.x11b_c00350{left:166.533333pt;}
.xd7_c00350{left:169.600000pt;}
.x38_c00350{left:171.200000pt;}
.xaf_c00350{left:172.533333pt;}
.x16_c00350{left:174.000000pt;}
.x117_c00350{left:175.866667pt;}
.x7_c00350{left:177.333333pt;}
.xe6_c00350{left:178.266667pt;}
.xe8_c00350{left:179.200000pt;}
.x14b_c00350{left:180.533333pt;}
.x55_c00350{left:181.600000pt;}
.x11f_c00350{left:183.600000pt;}
.x12c_c00350{left:184.533333pt;}
.xce_c00350{left:186.133333pt;}
.xb6_c00350{left:188.800000pt;}
.xb4_c00350{left:190.000000pt;}
.x39_c00350{left:192.666667pt;}
.x17_c00350{left:194.133333pt;}
.xc9_c00350{left:195.600000pt;}
.xed_c00350{left:198.133333pt;}
.x6d_c00350{left:199.066667pt;}
.x114_c00350{left:200.933333pt;}
.xe2_c00350{left:202.000000pt;}
.x62_c00350{left:203.333333pt;}
.x24_c00350{left:205.066667pt;}
.xd8_c00350{left:212.133333pt;}
.x6e_c00350{left:214.400000pt;}
.xcf_c00350{left:215.866667pt;}
.x120_c00350{left:216.933333pt;}
.x2d_c00350{left:218.400000pt;}
.xca_c00350{left:219.866667pt;}
.x63_c00350{left:221.600000pt;}
.x125_c00350{left:223.600000pt;}
.x8_c00350{left:225.600000pt;}
.x127_c00350{left:227.066667pt;}
.x3a_c00350{left:228.133333pt;}
.x12d_c00350{left:229.466667pt;}
.x6f_c00350{left:231.066667pt;}
.x45_c00350{left:232.000000pt;}
.x56_c00350{left:233.200000pt;}
.x7a_c00350{left:235.866667pt;}
.xd0_c00350{left:237.333333pt;}
.xdf_c00350{left:239.066667pt;}
.x11d_c00350{left:241.066667pt;}
.xb0_c00350{left:242.000000pt;}
.x7b_c00350{left:243.200000pt;}
.x9_c00350{left:244.800000pt;}
.xc0_c00350{left:245.733333pt;}
.xcb_c00350{left:246.800000pt;}
.xd3_c00350{left:247.733333pt;}
.x12e_c00350{left:248.666667pt;}
.xb1_c00350{left:250.266667pt;}
.x3b_c00350{left:251.200000pt;}
.x18_c00350{left:252.933333pt;}
.x2e_c00350{left:254.933333pt;}
.x57_c00350{left:257.466667pt;}
.x64_c00350{left:259.333333pt;}
.xd1_c00350{left:260.666667pt;}
.x122_c00350{left:262.933333pt;}
.x12a_c00350{left:264.266667pt;}
.xb2_c00350{left:265.333333pt;}
.xe9_c00350{left:268.133333pt;}
.xcc_c00350{left:269.466667pt;}
.xfa_c00350{left:270.533333pt;}
.x65_c00350{left:272.400000pt;}
.x7c_c00350{left:275.466667pt;}
.x46_c00350{left:276.533333pt;}
.xd9_c00350{left:277.733333pt;}
.x2f_c00350{left:278.933333pt;}
.xb7_c00350{left:280.000000pt;}
.x11e_c00350{left:281.066667pt;}
.xb3_c00350{left:283.200000pt;}
.xea_c00350{left:285.066667pt;}
.x7d_c00350{left:288.000000pt;}
.xdd_c00350{left:290.800000pt;}
.xa_c00350{left:292.800000pt;}
.xef_c00350{left:295.333333pt;}
.xe3_c00350{left:297.333333pt;}
.x1_c00350{left:299.200000pt;}
.x30_c00350{left:300.400000pt;}
.xd4_c00350{left:302.133333pt;}
.x58_c00350{left:304.133333pt;}
.x121_c00350{left:305.466667pt;}
.x19_c00350{left:307.333333pt;}
.xe0_c00350{left:310.133333pt;}
.x7e_c00350{left:311.733333pt;}
.xf0_c00350{left:313.600000pt;}
.x123_c00350{left:314.800000pt;}
.x70_c00350{left:315.866667pt;}
.x47_c00350{left:317.866667pt;}
.x12f_c00350{left:319.066667pt;}
.x2_c00350{left:321.600000pt;}
.xf3_c00350{left:322.533333pt;}
.xd5_c00350{left:325.866667pt;}
.x7f_c00350{left:327.066667pt;}
.x66_c00350{left:329.733333pt;}
.xe4_c00350{left:332.266667pt;}
.xb5_c00350{left:333.333333pt;}
.x126_c00350{left:334.533333pt;}
.x48_c00350{left:335.466667pt;}
.xb8_c00350{left:338.533333pt;}
.x12b_c00350{left:339.466667pt;}
.xb_c00350{left:340.533333pt;}
.x25_c00350{left:342.000000pt;}
.x130_c00350{left:343.066667pt;}
.x3c_c00350{left:344.000000pt;}
.xde_c00350{left:346.800000pt;}
.xf4_c00350{left:348.133333pt;}
.xe7_c00350{left:350.133333pt;}
.xee_c00350{left:351.066667pt;}
.xad_c00350{left:353.600000pt;}
.xcd_c00350{left:356.133333pt;}
.x26_c00350{left:358.000000pt;}
.x59_c00350{left:359.466667pt;}
.x3_c00350{left:361.600000pt;}
.xda_c00350{left:364.133333pt;}
.x149_c00350{left:366.666667pt;}
.x118_c00350{left:368.000000pt;}
.xe1_c00350{left:369.333333pt;}
.x128_c00350{left:370.400000pt;}
.x49_c00350{left:371.333333pt;}
.x71_c00350{left:372.533333pt;}
.xc_c00350{left:375.466667pt;}
.xeb_c00350{left:376.400000pt;}
.xd2_c00350{left:381.600000pt;}
.xf5_c00350{left:403.200000pt;}
.x119_c00350{left:405.066667pt;}
.x105_c00350{left:413.866667pt;}
.x13c_c00350{left:417.866667pt;}
.xd_c00350{left:419.333333pt;}
.x4a_c00350{left:420.266667pt;}
.x13d_c00350{left:429.466667pt;}
.x80_c00350{left:431.333333pt;}
.x5a_c00350{left:434.266667pt;}
.xfd_c00350{left:435.200000pt;}
.x8b_c00350{left:437.466667pt;}
.x4b_c00350{left:439.200000pt;}
.xff_c00350{left:441.600000pt;}
.xbc_c00350{left:442.533333pt;}
.x10f_c00350{left:445.600000pt;}
.xaa_c00350{left:446.666667pt;}
.x31_c00350{left:447.600000pt;}
.x3d_c00350{left:448.666667pt;}
.x81_c00350{left:450.800000pt;}
.x94_c00350{left:452.133333pt;}
.x72_c00350{left:453.866667pt;}
.xab_c00350{left:455.333333pt;}
.x138_c00350{left:458.800000pt;}
.x1a_c00350{left:460.000000pt;}
.x9b_c00350{left:461.066667pt;}
.x27_c00350{left:463.600000pt;}
.xe_c00350{left:466.000000pt;}
.x13e_c00350{left:466.933333pt;}
.xfb_c00350{left:467.866667pt;}
.x106_c00350{left:469.200000pt;}
.x90_c00350{left:470.666667pt;}
.x110_c00350{left:471.866667pt;}
.x95_c00350{left:474.533333pt;}
.x11a_c00350{left:475.466667pt;}
.x131_c00350{left:479.333333pt;}
.x4c_c00350{left:480.800000pt;}
.x28_c00350{left:482.533333pt;}
.xc3_c00350{left:484.133333pt;}
.xf6_c00350{left:485.733333pt;}
.x5b_c00350{left:486.800000pt;}
.x9c_c00350{left:488.933333pt;}
.x91_c00350{left:489.866667pt;}
.x107_c00350{left:491.600000pt;}
.x3e_c00350{left:493.066667pt;}
.x14c_c00350{left:494.133333pt;}
.x67_c00350{left:495.200000pt;}
.x132_c00350{left:496.266667pt;}
.xf_c00350{left:497.333333pt;}
.xc4_c00350{left:498.800000pt;}
.x9d_c00350{left:501.466667pt;}
.x147_c00350{left:502.800000pt;}
.x1b_c00350{left:504.133333pt;}
.x5c_c00350{left:505.066667pt;}
.x142_c00350{left:506.666667pt;}
.x111_c00350{left:508.666667pt;}
.x4d_c00350{left:509.600000pt;}
.x3f_c00350{left:510.666667pt;}
.x9e_c00350{left:512.666667pt;}
.x32_c00350{left:515.466667pt;}
.x68_c00350{left:516.933333pt;}
.x96_c00350{left:519.600000pt;}
.x8c_c00350{left:520.666667pt;}
.x10c_c00350{left:523.066667pt;}
.x100_c00350{left:524.800000pt;}
.x9f_c00350{left:527.066667pt;}
.xfe_c00350{left:528.266667pt;}
.x73_c00350{left:530.000000pt;}
.x10_c00350{left:532.266667pt;}
.x1c_c00350{left:533.600000pt;}
.x33_c00350{left:534.666667pt;}
.xa6_c00350{left:536.400000pt;}
.x5d_c00350{left:537.333333pt;}
.x8d_c00350{left:538.933333pt;}
.xa0_c00350{left:540.533333pt;}
.x133_c00350{left:541.733333pt;}
.x139_c00350{left:543.333333pt;}
.xc5_c00350{left:544.933333pt;}
.x87_c00350{left:546.266667pt;}
.x4e_c00350{left:547.733333pt;}
.x74_c00350{left:549.466667pt;}
.x1d_c00350{left:550.933333pt;}
.xb9_c00350{left:553.600000pt;}
.x34_c00350{left:554.800000pt;}
.x11_c00350{left:556.933333pt;}
.x109_c00350{left:558.000000pt;}
.x108_c00350{left:560.400000pt;}
.x101_c00350{left:563.200000pt;}
.x35_c00350{left:565.066667pt;}
.x134_c00350{left:566.000000pt;}
.x143_c00350{left:569.066667pt;}
.x144_c00350{left:570.133333pt;}
.x10d_c00350{left:571.333333pt;}
.x69_c00350{left:573.600000pt;}
.x141_c00350{left:575.600000pt;}
.x13a_c00350{left:577.866667pt;}
.xc1_c00350{left:578.933333pt;}
.x40_c00350{left:580.800000pt;}
.x93_c00350{left:582.666667pt;}
.x4f_c00350{left:584.933333pt;}
.x97_c00350{left:586.533333pt;}
.x1e_c00350{left:587.733333pt;}
.x41_c00350{left:590.666667pt;}
.x82_c00350{left:592.000000pt;}
.x88_c00350{left:592.933333pt;}
.x12_c00350{left:595.333333pt;}
.xa1_c00350{left:596.533333pt;}
.x5e_c00350{left:597.466667pt;}
.x102_c00350{left:598.933333pt;}
.xa7_c00350{left:600.933333pt;}
.x8e_c00350{left:602.666667pt;}
.x98_c00350{left:604.400000pt;}
.x112_c00350{left:606.133333pt;}
.x10a_c00350{left:608.533333pt;}
.x13_c00350{left:611.066667pt;}
.x29_c00350{left:612.000000pt;}
.xf7_c00350{left:613.333333pt;}
.x75_c00350{left:615.066667pt;}
.xc6_c00350{left:616.400000pt;}
.x36_c00350{left:617.600000pt;}
.x50_c00350{left:618.800000pt;}
.x92_c00350{left:621.066667pt;}
.xa2_c00350{left:622.800000pt;}
.xc2_c00350{left:624.000000pt;}
.xa8_c00350{left:626.266667pt;}
.x1f_c00350{left:628.000000pt;}
.x99_c00350{left:630.000000pt;}
.xa3_c00350{left:632.666667pt;}
.x115_c00350{left:634.400000pt;}
.x83_c00350{left:635.466667pt;}
.x51_c00350{left:637.333333pt;}
.x10e_c00350{left:638.266667pt;}
.x137_c00350{left:639.333333pt;}
.x89_c00350{left:641.866667pt;}
.x135_c00350{left:644.133333pt;}
.x148_c00350{left:645.200000pt;}
.xa9_c00350{left:646.133333pt;}
.x2a_c00350{left:647.466667pt;}
.x37_c00350{left:649.600000pt;}
.x13f_c00350{left:651.600000pt;}
.x84_c00350{left:654.400000pt;}
.x103_c00350{left:657.466667pt;}
.x14a_c00350{left:658.400000pt;}
.x6a_c00350{left:659.600000pt;}
.x52_c00350{left:660.666667pt;}
.xc7_c00350{left:661.866667pt;}
.x2b_c00350{left:663.200000pt;}
.xbd_c00350{left:665.600000pt;}
.x76_c00350{left:666.533333pt;}
.xa4_c00350{left:669.466667pt;}
.x10b_c00350{left:670.533333pt;}
.x140_c00350{left:671.733333pt;}
.x104_c00350{left:672.800000pt;}
.xba_c00350{left:674.266667pt;}
.x136_c00350{left:675.466667pt;}
.x14_c00350{left:676.400000pt;}
.x4_c00350{left:679.066667pt;}
.x42_c00350{left:680.666667pt;}
.x8f_c00350{left:682.266667pt;}
.x85_c00350{left:683.200000pt;}
.xfc_c00350{left:684.533333pt;}
.xa5_c00350{left:685.466667pt;}
.x13b_c00350{left:686.400000pt;}
.x20_c00350{left:689.066667pt;}
.x6b_c00350{left:690.266667pt;}
.x86_c00350{left:691.466667pt;}
.x8a_c00350{left:693.066667pt;}
.xc8_c00350{left:694.533333pt;}
.x116_c00350{left:695.866667pt;}
.x9a_c00350{left:698.800000pt;}
}





/* 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_c00351 {
    display:none;
  }
  .loading-indicator_c00351.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00351 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_c00351 { 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_c00351" -> "#page-container .classname_c00351")
 */
.pf_c00351 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00351 { /* 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_c00351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00351 { /* 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_c00351 { /* 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_c00351 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00351 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00351 {overflow:visible;}
  }
}
.c_c00351 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00351 { /* 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_c00351:after { /* webkit #35443 */
  content: '';
}
.t_c00351:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00351 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 */
}
.__c00351 { /* 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_c00351 { /* info for Javascript */
  display:none;
}
.l_c00351 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00351 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00351 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00351: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_c00351 {
    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_c00351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00351.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_c00351 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00351;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.000000;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;}
.m98_c00351{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m97_c00351{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00351{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m109_c00351{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00351{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00351{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m55_c00351{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m101_c00351{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00351{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m19_c00351{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00351{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m18_c00351{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00351{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m73_c00351{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00351{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00351{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m61_c00351{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me2_c00351{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m48_c00351{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m119_c00351{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m26_c00351{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00351{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m113_c00351{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00351{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00351{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.me0_c00351{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m51_c00351{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m49_c00351{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c00351{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m124_c00351{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m38_c00351{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m70_c00351{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00351{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m117_c00351{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md6_c00351{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m40_c00351{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00351{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00351{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m100_c00351{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00351{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00351{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00351{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mda_c00351{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00351{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00351{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m31_c00351{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00351{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00351{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00351{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m99_c00351{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00351{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00351{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00351{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc_c00351{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m62_c00351{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7_c00351{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00351{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00351{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00351{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mff_c00351{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m105_c00351{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.md1_c00351{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m88_c00351{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00351{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00351{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00351{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00351{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00351{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m71_c00351{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m85_c00351{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m96_c00351{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m58_c00351{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00351{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m112_c00351{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00351{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00351{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00351{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00351{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m95_c00351{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m77_c00351{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00351{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00351{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00351{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00351{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m125_c00351{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00351{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m34_c00351{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m123_c00351{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m15_c00351{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00351{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00351{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00351{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.maf_c00351{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00351{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m106_c00351{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md0_c00351{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00351{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00351{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00351{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00351{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m75_c00351{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00351{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m68_c00351{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m72_c00351{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00351{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m81_c00351{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m63_c00351{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m69_c00351{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m103_c00351{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m8_c00351{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00351{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m10_c00351{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00351{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md3_c00351{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00351{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m104_c00351{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00351{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mad_c00351{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m83_c00351{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00351{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m87_c00351{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mae_c00351{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m74_c00351{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mee_c00351{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00351{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb_c00351{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00351{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00351{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00351{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m60_c00351{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00351{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m42_c00351{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m44_c00351{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m92_c00351{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mba_c00351{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00351{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00351{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m53_c00351{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00351{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00351{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00351{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m90_c00351{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m52_c00351{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00351{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00351{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m27_c00351{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00351{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00351{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m43_c00351{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00351{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m116_c00351{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m37_c00351{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m76_c00351{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00351{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m35_c00351{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00351{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m82_c00351{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m86_c00351{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m67_c00351{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m29_c00351{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00351{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00351{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00351{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5_c00351{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00351{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00351{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00351{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m111_c00351{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00351{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m0_c00351{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mf_c00351{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m64_c00351{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m93_c00351{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00351{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m45_c00351{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00351{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m57_c00351{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mef_c00351{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m33_c00351{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00351{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m89_c00351{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.maa_c00351{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m12_c00351{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00351{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m79_c00351{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m122_c00351{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00351{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md_c00351{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00351{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00351{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m17_c00351{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m39_c00351{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00351{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m91_c00351{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.me_c00351{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00351{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m28_c00351{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m11_c00351{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m110_c00351{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00351{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00351{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m59_c00351{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m94_c00351{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m50_c00351{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00351{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m66_c00351{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00351{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m120_c00351{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00351{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md8_c00351{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00351{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m114_c00351{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00351{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me1_c00351{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00351{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00351{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.md7_c00351{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00351{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m118_c00351{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m54_c00351{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mca_c00351{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m16_c00351{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00351{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00351{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00351{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mec_c00351{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m65_c00351{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m78_c00351{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me4_c00351{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00351{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00351{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m102_c00351{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mab_c00351{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m32_c00351{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me7_c00351{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.md9_c00351{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md2_c00351{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m108_c00351{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00351{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00351{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m13_c00351{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m84_c00351{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00351{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m56_c00351{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m80_c00351{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m46_c00351{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00351{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m47_c00351{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00351{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00351{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00351{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00351{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mce_c00351{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m4_c00351{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.me5_c00351{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00351{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00351{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.md4_c00351{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.me9_c00351{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00351{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m23_c00351{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m25_c00351{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m6_c00351{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.med_c00351{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.me8_c00351{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m24_c00351{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m41_c00351{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mea_c00351{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m30_c00351{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00351{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.meb_c00351{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m115_c00351{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00351{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00351{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mac_c00351{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.md5_c00351{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m121_c00351{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m22_c00351{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m107_c00351{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mde_c00351{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00351{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00351{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m21_c00351{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m36_c00351{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00351{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.me3_c00351{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00351{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.me6_c00351{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00351{transform:matrix(0.589000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589000,0.000000,0.000000,0.250000,0,0);}
.m20_c00351{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls0_c00351{letter-spacing:0.000000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{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__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00351{word-spacing:-16.041667px;}
.ws3_c00351{word-spacing:-9.250000px;}
.ws4_c00351{word-spacing:-8.181818px;}
.ws2_c00351{word-spacing:-3.938883px;}
.wsa_c00351{word-spacing:-3.157895px;}
.ws5_c00351{word-spacing:-3.095238px;}
.wsb_c00351{word-spacing:-2.857143px;}
.wsc_c00351{word-spacing:0.000000px;}
.ws9_c00351{word-spacing:4.107143px;}
.ws6_c00351{word-spacing:6.250000px;}
.ws7_c00351{word-spacing:9.375000px;}
.ws0_c00351{word-spacing:23.211796px;}
.ws1_c00351{word-spacing:39.750000px;}
.fc0_c00351{color:transparent;}
.fs4_c00351{font-size:18.000000px;}
.fs6_c00351{font-size:36.000000px;}
.fs8_c00351{font-size:42.000000px;}
.fs5_c00351{font-size:48.000000px;}
.fs2_c00351{font-size:54.000000px;}
.fs3_c00351{font-size:60.000000px;}
.fs0_c00351{font-size:66.000000px;}
.fs7_c00351{font-size:72.000000px;}
.fs1_c00351{font-size:90.000000px;}
.y0_c00351{bottom:0.000000px;}
.y6d_c00351{bottom:198.300000px;}
.y3c_c00351{bottom:202.050000px;}
.y6c_c00351{bottom:215.550000px;}
.y3b_c00351{bottom:216.750000px;}
.y3a_c00351{bottom:230.400000px;}
.y6b_c00351{bottom:233.250000px;}
.y39_c00351{bottom:244.500000px;}
.y6a_c00351{bottom:250.950000px;}
.y38_c00351{bottom:258.150000px;}
.y69_c00351{bottom:273.150000px;}
.y68_c00351{bottom:290.850000px;}
.y37_c00351{bottom:302.850000px;}
.y67_c00351{bottom:308.850000px;}
.y36_c00351{bottom:321.150000px;}
.y66_c00351{bottom:326.850000px;}
.y35_c00351{bottom:342.450000px;}
.y65_c00351{bottom:344.850000px;}
.y34_c00351{bottom:360.750000px;}
.y64_c00351{bottom:367.200000px;}
.y33_c00351{bottom:378.000000px;}
.y63_c00351{bottom:385.050000px;}
.y32_c00351{bottom:395.700000px;}
.y62_c00351{bottom:402.750000px;}
.y31_c00351{bottom:418.050000px;}
.y61_c00351{bottom:420.750000px;}
.y30_c00351{bottom:436.350000px;}
.y60_c00351{bottom:438.750000px;}
.y2f_c00351{bottom:454.350000px;}
.y5f_c00351{bottom:456.450000px;}
.y2e_c00351{bottom:472.350000px;}
.y5e_c00351{bottom:474.450000px;}
.y5d_c00351{bottom:492.150000px;}
.y2d_c00351{bottom:494.250000px;}
.y5c_c00351{bottom:510.150000px;}
.y2c_c00351{bottom:512.250000px;}
.y2b_c00351{bottom:529.950000px;}
.y5b_c00351{bottom:530.700000px;}
.y5a_c00351{bottom:545.400000px;}
.y2a_c00351{bottom:552.000000px;}
.y59_c00351{bottom:565.500000px;}
.y29_c00351{bottom:569.700000px;}
.y58_c00351{bottom:583.800000px;}
.y28_c00351{bottom:587.700000px;}
.y57_c00351{bottom:601.500000px;}
.y27_c00351{bottom:605.700000px;}
.y56_c00351{bottom:619.500000px;}
.y26_c00351{bottom:623.400000px;}
.y55_c00351{bottom:640.950000px;}
.y25_c00351{bottom:641.100000px;}
.y54_c00351{bottom:658.950000px;}
.y24_c00351{bottom:659.100000px;}
.y53_c00351{bottom:676.650000px;}
.y23_c00351{bottom:677.100000px;}
.y22_c00351{bottom:694.800000px;}
.y52_c00351{bottom:694.950000px;}
.y51_c00351{bottom:712.650000px;}
.y21_c00351{bottom:713.100000px;}
.y50_c00351{bottom:730.350000px;}
.y20_c00351{bottom:730.800000px;}
.y4f_c00351{bottom:748.350000px;}
.y1f_c00351{bottom:748.800000px;}
.y1e_c00351{bottom:766.050000px;}
.y1d_c00351{bottom:784.050000px;}
.y1c_c00351{bottom:802.050000px;}
.y4e_c00351{bottom:806.100000px;}
.y1b_c00351{bottom:820.050000px;}
.y4d_c00351{bottom:824.100000px;}
.y1a_c00351{bottom:837.750000px;}
.y4c_c00351{bottom:850.950000px;}
.y19_c00351{bottom:855.750000px;}
.y4b_c00351{bottom:868.950000px;}
.y17_c00351{bottom:881.700000px;}
.y4a_c00351{bottom:886.950000px;}
.y16_c00351{bottom:895.650000px;}
.y49_c00351{bottom:904.650000px;}
.y15_c00351{bottom:909.300000px;}
.y18_c00351{bottom:912.600000px;}
.y14_c00351{bottom:922.650000px;}
.y48_c00351{bottom:926.400000px;}
.y13_c00351{bottom:937.800000px;}
.y47_c00351{bottom:944.400000px;}
.y12_c00351{bottom:951.900000px;}
.y46_c00351{bottom:962.400000px;}
.y11_c00351{bottom:965.850000px;}
.y45_c00351{bottom:980.400000px;}
.y10_c00351{bottom:981.300000px;}
.yf_c00351{bottom:996.000000px;}
.y44_c00351{bottom:998.100000px;}
.ye_c00351{bottom:1010.100000px;}
.y43_c00351{bottom:1015.800000px;}
.yd_c00351{bottom:1025.250000px;}
.y42_c00351{bottom:1033.800000px;}
.yc_c00351{bottom:1037.400000px;}
.y41_c00351{bottom:1051.500000px;}
.y8_c00351{bottom:1052.250000px;}
.yb_c00351{bottom:1053.300000px;}
.y7_c00351{bottom:1063.050000px;}
.ya_c00351{bottom:1065.900000px;}
.y40_c00351{bottom:1069.500000px;}
.y6_c00351{bottom:1080.750000px;}
.y3f_c00351{bottom:1087.500000px;}
.y5_c00351{bottom:1094.400000px;}
.y9_c00351{bottom:1095.150000px;}
.y3e_c00351{bottom:1105.200000px;}
.y4_c00351{bottom:1109.100000px;}
.y3d_c00351{bottom:1122.900000px;}
.y3_c00351{bottom:1126.050000px;}
.y1_c00351{bottom:1146.300000px;}
.y2_c00351{bottom:1149.600000px;}
.h6_c00351{height:18.000000px;}
.h8_c00351{height:36.000000px;}
.ha_c00351{height:42.000000px;}
.h7_c00351{height:48.000000px;}
.h4_c00351{height:54.000000px;}
.h5_c00351{height:60.000000px;}
.h2_c00351{height:66.000000px;}
.h9_c00351{height:72.000000px;}
.h3_c00351{height:90.000000px;}
.h1_c00351{height:1275.000000px;}
.h0_c00351{height:1275.119934px;}
.w0_c00351{width:960.480010px;}
.w1_c00351{width:960.750000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:169.500000px;}
.x3_c00351{left:170.700000px;}
.xa5_c00351{left:172.500000px;}
.x47_c00351{left:173.850000px;}
.x96_c00351{left:179.250000px;}
.xa6_c00351{left:180.750000px;}
.xb_c00351{left:185.550000px;}
.x3b_c00351{left:187.500000px;}
.x4d_c00351{left:191.550000px;}
.x66_c00351{left:192.900000px;}
.x7f_c00351{left:194.250000px;}
.x8a_c00351{left:195.300000px;}
.x99_c00351{left:197.550000px;}
.x13_c00351{left:200.100000px;}
.x21_c00351{left:201.300000px;}
.x37_c00351{left:203.100000px;}
.x84_c00351{left:210.300000px;}
.xa2_c00351{left:212.100000px;}
.x81_c00351{left:213.450000px;}
.x73_c00351{left:214.650000px;}
.x9e_c00351{left:216.750000px;}
.x5c_c00351{left:219.750000px;}
.x20_c00351{left:222.150000px;}
.x43_c00351{left:223.200000px;}
.xc_c00351{left:224.400000px;}
.x6e_c00351{left:225.900000px;}
.x62_c00351{left:227.700000px;}
.x4_c00351{left:229.800000px;}
.xa9_c00351{left:231.150000px;}
.x93_c00351{left:232.950000px;}
.x5d_c00351{left:234.900000px;}
.x5a_c00351{left:237.000000px;}
.x9a_c00351{left:238.950000px;}
.x34_c00351{left:240.150000px;}
.x2d_c00351{left:241.500000px;}
.x70_c00351{left:242.550000px;}
.x95_c00351{left:244.800000px;}
.x44_c00351{left:246.600000px;}
.x82_c00351{left:247.950000px;}
.x8b_c00351{left:249.000000px;}
.x27_c00351{left:250.950000px;}
.x86_c00351{left:252.750000px;}
.x14_c00351{left:253.800000px;}
.x74_c00351{left:255.000000px;}
.x22_c00351{left:258.450000px;}
.x2e_c00351{left:259.500000px;}
.x48_c00351{left:261.000000px;}
.x5e_c00351{left:263.400000px;}
.x3e_c00351{left:265.650000px;}
.x97_c00351{left:268.200000px;}
.xd_c00351{left:269.700000px;}
.x88_c00351{left:271.500000px;}
.x15_c00351{left:272.850000px;}
.x6c_c00351{left:275.400000px;}
.x23_c00351{left:280.050000px;}
.x3f_c00351{left:281.850000px;}
.x5_c00351{left:285.600000px;}
.x54_c00351{left:286.800000px;}
.xe_c00351{left:289.800000px;}
.x87_c00351{left:291.300000px;}
.xab_c00351{left:293.700000px;}
.x55_c00351{left:295.800000px;}
.x49_c00351{left:300.600000px;}
.x16_c00351{left:303.750000px;}
.x75_c00351{left:305.400000px;}
.x85_c00351{left:309.600000px;}
.x24_c00351{left:311.700000px;}
.x45_c00351{left:312.900000px;}
.x2f_c00351{left:315.300000px;}
.x69_c00351{left:317.100000px;}
.x4e_c00351{left:319.350000px;}
.x38_c00351{left:321.450000px;}
.x17_c00351{left:323.550000px;}
.x89_c00351{left:325.200000px;}
.xf_c00351{left:326.550000px;}
.x28_c00351{left:328.350000px;}
.x39_c00351{left:329.400000px;}
.x5f_c00351{left:333.150000px;}
.x76_c00351{left:335.250000px;}
.x3a_c00351{left:336.300000px;}
.x6f_c00351{left:337.950000px;}
.x4a_c00351{left:339.900000px;}
.x7d_c00351{left:341.250000px;}
.x29_c00351{left:343.350000px;}
.x4f_c00351{left:344.850000px;}
.x63_c00351{left:345.900000px;}
.x6_c00351{left:347.550000px;}
.x10_c00351{left:349.200000px;}
.x2a_c00351{left:350.550000px;}
.x5b_c00351{left:355.050000px;}
.x2b_c00351{left:357.750000px;}
.x52_c00351{left:359.100000px;}
.xa3_c00351{left:360.150000px;}
.xac_c00351{left:361.350000px;}
.x35_c00351{left:363.000000px;}
.x8c_c00351{left:364.200000px;}
.x79_c00351{left:366.600000px;}
.x40_c00351{left:369.600000px;}
.x30_c00351{left:370.800000px;}
.x18_c00351{left:372.450000px;}
.x77_c00351{left:374.100000px;}
.x8e_c00351{left:376.200000px;}
.x25_c00351{left:377.550000px;}
.x11_c00351{left:378.750000px;}
.x67_c00351{left:380.400000px;}
.x36_c00351{left:383.550000px;}
.x19_c00351{left:386.850000px;}
.x71_c00351{left:388.800000px;}
.x7a_c00351{left:390.300000px;}
.x50_c00351{left:392.400000px;}
.x1a_c00351{left:393.750000px;}
.x53_c00351{left:394.800000px;}
.x7_c00351{left:395.850000px;}
.x56_c00351{left:396.900000px;}
.x8f_c00351{left:398.400000px;}
.x26_c00351{left:399.900000px;}
.x1b_c00351{left:401.250000px;}
.x41_c00351{left:403.050000px;}
.xa7_c00351{left:405.150000px;}
.x57_c00351{left:407.250000px;}
.x1c_c00351{left:408.750000px;}
.x94_c00351{left:410.100000px;}
.x83_c00351{left:412.500000px;}
.x6d_c00351{left:413.850000px;}
.x1d_c00351{left:415.950000px;}
.x2_c00351{left:418.650000px;}
.x64_c00351{left:419.700000px;}
.x90_c00351{left:420.750000px;}
.x68_c00351{left:422.850000px;}
.x58_c00351{left:424.200000px;}
.x8_c00351{left:425.400000px;}
.x4b_c00351{left:427.350000px;}
.x7b_c00351{left:429.900000px;}
.x9b_c00351{left:431.700000px;}
.x8d_c00351{left:432.900000px;}
.x1e_c00351{left:435.000000px;}
.x31_c00351{left:436.350000px;}
.x3c_c00351{left:438.000000px;}
.x91_c00351{left:439.500000px;}
.x9f_c00351{left:441.600000px;}
.x60_c00351{left:443.700000px;}
.x4c_c00351{left:445.350000px;}
.xaa_c00351{left:449.250000px;}
.x6a_c00351{left:452.100000px;}
.xa4_c00351{left:453.450000px;}
.x61_c00351{left:454.500000px;}
.x9_c00351{left:456.300000px;}
.x9c_c00351{left:459.750000px;}
.xa0_c00351{left:461.400000px;}
.x12_c00351{left:464.700000px;}
.x32_c00351{left:465.900000px;}
.x3d_c00351{left:468.600000px;}
.x59_c00351{left:470.250000px;}
.x7c_c00351{left:471.300000px;}
.x6b_c00351{left:472.650000px;}
.x51_c00351{left:480.900000px;}
.x72_c00351{left:482.850000px;}
.x65_c00351{left:484.200000px;}
.x92_c00351{left:486.300000px;}
.xa1_c00351{left:487.650000px;}
.x33_c00351{left:489.000000px;}
.xa_c00351{left:490.500000px;}
.x7e_c00351{left:492.000000px;}
.x1f_c00351{left:493.350000px;}
.x2c_c00351{left:495.300000px;}
.x42_c00351{left:496.650000px;}
.x98_c00351{left:498.450000px;}
.xa8_c00351{left:499.800000px;}
.x46_c00351{left:504.000000px;}
.x80_c00351{left:506.700000px;}
.x78_c00351{left:508.800000px;}
.x9d_c00351{left:511.200000px;}
.xf5_c00351{left:530.700000px;}
.x109_c00351{left:531.750000px;}
.x132_c00351{left:533.100000px;}
.x147_c00351{left:535.350000px;}
.xbe_c00351{left:545.850000px;}
.xad_c00351{left:546.900000px;}
.xea_c00351{left:548.400000px;}
.x120_c00351{left:549.450000px;}
.x12a_c00351{left:550.950000px;}
.x13c_c00351{left:552.150000px;}
.x14b_c00351{left:553.350000px;}
.x126_c00351{left:556.950000px;}
.xae_c00351{left:564.900000px;}
.xc6_c00351{left:567.000000px;}
.xf2_c00351{left:568.200000px;}
.x14c_c00351{left:570.900000px;}
.x101_c00351{left:573.900000px;}
.xeb_c00351{left:575.700000px;}
.x10a_c00351{left:576.750000px;}
.xb7_c00351{left:577.950000px;}
.x138_c00351{left:580.500000px;}
.x113_c00351{left:582.150000px;}
.xbf_c00351{left:583.350000px;}
.xaf_c00351{left:584.400000px;}
.x142_c00351{left:587.850000px;}
.x11e_c00351{left:589.050000px;}
.xdc_c00351{left:590.100000px;}
.xe0_c00351{left:592.800000px;}
.xce_c00351{left:594.450000px;}
.x130_c00351{left:596.400000px;}
.xf6_c00351{left:597.600000px;}
.xe6_c00351{left:600.300000px;}
.xfb_c00351{left:601.650000px;}
.xf3_c00351{left:603.150000px;}
.xd4_c00351{left:605.250000px;}
.x102_c00351{left:606.300000px;}
.x121_c00351{left:608.100000px;}
.x106_c00351{left:609.900000px;}
.x152_c00351{left:610.950000px;}
.x11a_c00351{left:612.150000px;}
.x10b_c00351{left:613.500000px;}
.xd5_c00351{left:615.000000px;}
.xe1_c00351{left:616.500000px;}
.x151_c00351{left:618.150000px;}
.xec_c00351{left:619.200000px;}
.xe7_c00351{left:620.850000px;}
.x12b_c00351{left:622.200000px;}
.xcf_c00351{left:623.250000px;}
.xf7_c00351{left:624.900000px;}
.x139_c00351{left:627.600000px;}
.xfc_c00351{left:629.400000px;}
.x10f_c00351{left:631.800000px;}
.xb8_c00351{left:634.500000px;}
.xc7_c00351{left:636.450000px;}
.xc0_c00351{left:638.850000px;}
.x13d_c00351{left:640.050000px;}
.x127_c00351{left:641.850000px;}
.xdd_c00351{left:643.050000px;}
.x114_c00351{left:644.100000px;}
.xb0_c00351{left:645.300000px;}
.xf4_c00351{left:646.350000px;}
.x131_c00351{left:652.200000px;}
.xb1_c00351{left:654.600000px;}
.x11b_c00351{left:656.100000px;}
.xc8_c00351{left:657.300000px;}
.x124_c00351{left:659.250000px;}
.x133_c00351{left:661.350000px;}
.xed_c00351{left:663.450000px;}
.xd6_c00351{left:665.700000px;}
.xe8_c00351{left:667.650000px;}
.xc9_c00351{left:669.600000px;}
.x122_c00351{left:672.600000px;}
.xfd_c00351{left:673.650000px;}
.x107_c00351{left:676.050000px;}
.x125_c00351{left:677.250000px;}
.xb2_c00351{left:680.100000px;}
.xe2_c00351{left:682.050000px;}
.x110_c00351{left:684.600000px;}
.xd7_c00351{left:686.550000px;}
.xf8_c00351{left:688.650000px;}
.xfe_c00351{left:692.400000px;}
.x108_c00351{left:693.750000px;}
.x11f_c00351{left:694.800000px;}
.xc1_c00351{left:699.000000px;}
.x135_c00351{left:700.350000px;}
.x103_c00351{left:701.400000px;}
.x140_c00351{left:703.050000px;}
.xb9_c00351{left:705.000000px;}
.xb3_c00351{left:706.050000px;}
.xd8_c00351{left:707.850000px;}
.x10c_c00351{left:709.950000px;}
.x111_c00351{left:711.300000px;}
.x12c_c00351{left:713.700000px;}
.xe3_c00351{left:715.200000px;}
.x143_c00351{left:717.150000px;}
.xd9_c00351{left:718.650000px;}
.xba_c00351{left:720.450000px;}
.xca_c00351{left:721.800000px;}
.x13a_c00351{left:723.750000px;}
.x11c_c00351{left:725.550000px;}
.x104_c00351{left:726.600000px;}
.xd0_c00351{left:727.950000px;}
.x148_c00351{left:729.300000px;}
.xcb_c00351{left:731.100000px;}
.xc2_c00351{left:732.900000px;}
.x116_c00351{left:736.500000px;}
.x112_c00351{left:738.000000px;}
.x128_c00351{left:739.050000px;}
.x141_c00351{left:740.850000px;}
.xcc_c00351{left:743.400000px;}
.xe4_c00351{left:745.050000px;}
.xef_c00351{left:747.150000px;}
.x119_c00351{left:749.550000px;}
.xff_c00351{left:752.850000px;}
.xb4_c00351{left:754.350000px;}
.x149_c00351{left:756.000000px;}
.xe9_c00351{left:758.700000px;}
.x144_c00351{left:760.050000px;}
.xda_c00351{left:761.100000px;}
.x136_c00351{left:762.300000px;}
.x13e_c00351{left:766.050000px;}
.xc3_c00351{left:767.100000px;}
.xbb_c00351{left:768.750000px;}
.x100_c00351{left:770.850000px;}
.x105_c00351{left:775.200000px;}
.x13f_c00351{left:777.900000px;}
.x12e_c00351{left:778.950000px;}
.x10d_c00351{left:781.200000px;}
.xb5_c00351{left:782.400000px;}
.x117_c00351{left:784.500000px;}
.xf9_c00351{left:786.300000px;}
.x129_c00351{left:789.150000px;}
.x11d_c00351{left:791.100000px;}
.x13b_c00351{left:792.900000px;}
.xc4_c00351{left:795.900000px;}
.xd1_c00351{left:799.200000px;}
.xf0_c00351{left:801.450000px;}
.xbc_c00351{left:802.650000px;}
.x146_c00351{left:806.100000px;}
.x115_c00351{left:810.900000px;}
.x14a_c00351{left:812.550000px;}
.x118_c00351{left:815.850000px;}
.xde_c00351{left:818.550000px;}
.xd2_c00351{left:819.750000px;}
.xbd_c00351{left:820.950000px;}
.x137_c00351{left:822.450000px;}
.x123_c00351{left:824.850000px;}
.xee_c00351{left:825.900000px;}
.x14f_c00351{left:826.950000px;}
.x12f_c00351{left:828.600000px;}
.x14d_c00351{left:830.100000px;}
.xe5_c00351{left:831.900000px;}
.xc5_c00351{left:833.700000px;}
.xdf_c00351{left:835.500000px;}
.x14e_c00351{left:836.700000px;}
.xcd_c00351{left:837.750000px;}
.x134_c00351{left:841.500000px;}
.x145_c00351{left:842.850000px;}
.x10e_c00351{left:845.700000px;}
.xf1_c00351{left:850.800000px;}
.xd3_c00351{left:852.150000px;}
.x150_c00351{left:853.200000px;}
.xfa_c00351{left:857.250000px;}
.x12d_c00351{left:860.250000px;}
.xb6_c00351{left:861.600000px;}
.xdb_c00351{left:862.650000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws8_c00351{word-spacing:-14.259259pt;}
.ws3_c00351{word-spacing:-8.222222pt;}
.ws4_c00351{word-spacing:-7.272727pt;}
.ws2_c00351{word-spacing:-3.501229pt;}
.wsa_c00351{word-spacing:-2.807018pt;}
.ws5_c00351{word-spacing:-2.751323pt;}
.wsb_c00351{word-spacing:-2.539683pt;}
.wsc_c00351{word-spacing:0.000000pt;}
.ws9_c00351{word-spacing:3.650794pt;}
.ws6_c00351{word-spacing:5.555556pt;}
.ws7_c00351{word-spacing:8.333333pt;}
.ws0_c00351{word-spacing:20.632708pt;}
.ws1_c00351{word-spacing:35.333333pt;}
.fs4_c00351{font-size:16.000000pt;}
.fs6_c00351{font-size:32.000000pt;}
.fs8_c00351{font-size:37.333333pt;}
.fs5_c00351{font-size:42.666667pt;}
.fs2_c00351{font-size:48.000000pt;}
.fs3_c00351{font-size:53.333333pt;}
.fs0_c00351{font-size:58.666667pt;}
.fs7_c00351{font-size:64.000000pt;}
.fs1_c00351{font-size:80.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y6d_c00351{bottom:176.266667pt;}
.y3c_c00351{bottom:179.600000pt;}
.y6c_c00351{bottom:191.600000pt;}
.y3b_c00351{bottom:192.666667pt;}
.y3a_c00351{bottom:204.800000pt;}
.y6b_c00351{bottom:207.333333pt;}
.y39_c00351{bottom:217.333333pt;}
.y6a_c00351{bottom:223.066667pt;}
.y38_c00351{bottom:229.466667pt;}
.y69_c00351{bottom:242.800000pt;}
.y68_c00351{bottom:258.533333pt;}
.y37_c00351{bottom:269.200000pt;}
.y67_c00351{bottom:274.533333pt;}
.y36_c00351{bottom:285.466667pt;}
.y66_c00351{bottom:290.533333pt;}
.y35_c00351{bottom:304.400000pt;}
.y65_c00351{bottom:306.533333pt;}
.y34_c00351{bottom:320.666667pt;}
.y64_c00351{bottom:326.400000pt;}
.y33_c00351{bottom:336.000000pt;}
.y63_c00351{bottom:342.266667pt;}
.y32_c00351{bottom:351.733333pt;}
.y62_c00351{bottom:358.000000pt;}
.y31_c00351{bottom:371.600000pt;}
.y61_c00351{bottom:374.000000pt;}
.y30_c00351{bottom:387.866667pt;}
.y60_c00351{bottom:390.000000pt;}
.y2f_c00351{bottom:403.866667pt;}
.y5f_c00351{bottom:405.733333pt;}
.y2e_c00351{bottom:419.866667pt;}
.y5e_c00351{bottom:421.733333pt;}
.y5d_c00351{bottom:437.466667pt;}
.y2d_c00351{bottom:439.333333pt;}
.y5c_c00351{bottom:453.466667pt;}
.y2c_c00351{bottom:455.333333pt;}
.y2b_c00351{bottom:471.066667pt;}
.y5b_c00351{bottom:471.733333pt;}
.y5a_c00351{bottom:484.800000pt;}
.y2a_c00351{bottom:490.666667pt;}
.y59_c00351{bottom:502.666667pt;}
.y29_c00351{bottom:506.400000pt;}
.y58_c00351{bottom:518.933333pt;}
.y28_c00351{bottom:522.400000pt;}
.y57_c00351{bottom:534.666667pt;}
.y27_c00351{bottom:538.400000pt;}
.y56_c00351{bottom:550.666667pt;}
.y26_c00351{bottom:554.133333pt;}
.y55_c00351{bottom:569.733333pt;}
.y25_c00351{bottom:569.866667pt;}
.y54_c00351{bottom:585.733333pt;}
.y24_c00351{bottom:585.866667pt;}
.y53_c00351{bottom:601.466667pt;}
.y23_c00351{bottom:601.866667pt;}
.y22_c00351{bottom:617.600000pt;}
.y52_c00351{bottom:617.733333pt;}
.y51_c00351{bottom:633.466667pt;}
.y21_c00351{bottom:633.866667pt;}
.y50_c00351{bottom:649.200000pt;}
.y20_c00351{bottom:649.600000pt;}
.y4f_c00351{bottom:665.200000pt;}
.y1f_c00351{bottom:665.600000pt;}
.y1e_c00351{bottom:680.933333pt;}
.y1d_c00351{bottom:696.933333pt;}
.y1c_c00351{bottom:712.933333pt;}
.y4e_c00351{bottom:716.533333pt;}
.y1b_c00351{bottom:728.933333pt;}
.y4d_c00351{bottom:732.533333pt;}
.y1a_c00351{bottom:744.666667pt;}
.y4c_c00351{bottom:756.400000pt;}
.y19_c00351{bottom:760.666667pt;}
.y4b_c00351{bottom:772.400000pt;}
.y17_c00351{bottom:783.733333pt;}
.y4a_c00351{bottom:788.400000pt;}
.y16_c00351{bottom:796.133333pt;}
.y49_c00351{bottom:804.133333pt;}
.y15_c00351{bottom:808.266667pt;}
.y18_c00351{bottom:811.200000pt;}
.y14_c00351{bottom:820.133333pt;}
.y48_c00351{bottom:823.466667pt;}
.y13_c00351{bottom:833.600000pt;}
.y47_c00351{bottom:839.466667pt;}
.y12_c00351{bottom:846.133333pt;}
.y46_c00351{bottom:855.466667pt;}
.y11_c00351{bottom:858.533333pt;}
.y45_c00351{bottom:871.466667pt;}
.y10_c00351{bottom:872.266667pt;}
.yf_c00351{bottom:885.333333pt;}
.y44_c00351{bottom:887.200000pt;}
.ye_c00351{bottom:897.866667pt;}
.y43_c00351{bottom:902.933333pt;}
.yd_c00351{bottom:911.333333pt;}
.y42_c00351{bottom:918.933333pt;}
.yc_c00351{bottom:922.133333pt;}
.y41_c00351{bottom:934.666667pt;}
.y8_c00351{bottom:935.333333pt;}
.yb_c00351{bottom:936.266667pt;}
.y7_c00351{bottom:944.933333pt;}
.ya_c00351{bottom:947.466667pt;}
.y40_c00351{bottom:950.666667pt;}
.y6_c00351{bottom:960.666667pt;}
.y3f_c00351{bottom:966.666667pt;}
.y5_c00351{bottom:972.800000pt;}
.y9_c00351{bottom:973.466667pt;}
.y3e_c00351{bottom:982.400000pt;}
.y4_c00351{bottom:985.866667pt;}
.y3d_c00351{bottom:998.133333pt;}
.y3_c00351{bottom:1000.933333pt;}
.y1_c00351{bottom:1018.933333pt;}
.y2_c00351{bottom:1021.866667pt;}
.h6_c00351{height:16.000000pt;}
.h8_c00351{height:32.000000pt;}
.ha_c00351{height:37.333333pt;}
.h7_c00351{height:42.666667pt;}
.h4_c00351{height:48.000000pt;}
.h5_c00351{height:53.333333pt;}
.h2_c00351{height:58.666667pt;}
.h9_c00351{height:64.000000pt;}
.h3_c00351{height:80.000000pt;}
.h1_c00351{height:1133.333333pt;}
.h0_c00351{height:1133.439941pt;}
.w0_c00351{width:853.760009pt;}
.w1_c00351{width:854.000000pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:150.666667pt;}
.x3_c00351{left:151.733333pt;}
.xa5_c00351{left:153.333333pt;}
.x47_c00351{left:154.533333pt;}
.x96_c00351{left:159.333333pt;}
.xa6_c00351{left:160.666667pt;}
.xb_c00351{left:164.933333pt;}
.x3b_c00351{left:166.666667pt;}
.x4d_c00351{left:170.266667pt;}
.x66_c00351{left:171.466667pt;}
.x7f_c00351{left:172.666667pt;}
.x8a_c00351{left:173.600000pt;}
.x99_c00351{left:175.600000pt;}
.x13_c00351{left:177.866667pt;}
.x21_c00351{left:178.933333pt;}
.x37_c00351{left:180.533333pt;}
.x84_c00351{left:186.933333pt;}
.xa2_c00351{left:188.533333pt;}
.x81_c00351{left:189.733333pt;}
.x73_c00351{left:190.800000pt;}
.x9e_c00351{left:192.666667pt;}
.x5c_c00351{left:195.333333pt;}
.x20_c00351{left:197.466667pt;}
.x43_c00351{left:198.400000pt;}
.xc_c00351{left:199.466667pt;}
.x6e_c00351{left:200.800000pt;}
.x62_c00351{left:202.400000pt;}
.x4_c00351{left:204.266667pt;}
.xa9_c00351{left:205.466667pt;}
.x93_c00351{left:207.066667pt;}
.x5d_c00351{left:208.800000pt;}
.x5a_c00351{left:210.666667pt;}
.x9a_c00351{left:212.400000pt;}
.x34_c00351{left:213.466667pt;}
.x2d_c00351{left:214.666667pt;}
.x70_c00351{left:215.600000pt;}
.x95_c00351{left:217.600000pt;}
.x44_c00351{left:219.200000pt;}
.x82_c00351{left:220.400000pt;}
.x8b_c00351{left:221.333333pt;}
.x27_c00351{left:223.066667pt;}
.x86_c00351{left:224.666667pt;}
.x14_c00351{left:225.600000pt;}
.x74_c00351{left:226.666667pt;}
.x22_c00351{left:229.733333pt;}
.x2e_c00351{left:230.666667pt;}
.x48_c00351{left:232.000000pt;}
.x5e_c00351{left:234.133333pt;}
.x3e_c00351{left:236.133333pt;}
.x97_c00351{left:238.400000pt;}
.xd_c00351{left:239.733333pt;}
.x88_c00351{left:241.333333pt;}
.x15_c00351{left:242.533333pt;}
.x6c_c00351{left:244.800000pt;}
.x23_c00351{left:248.933333pt;}
.x3f_c00351{left:250.533333pt;}
.x5_c00351{left:253.866667pt;}
.x54_c00351{left:254.933333pt;}
.xe_c00351{left:257.600000pt;}
.x87_c00351{left:258.933333pt;}
.xab_c00351{left:261.066667pt;}
.x55_c00351{left:262.933333pt;}
.x49_c00351{left:267.200000pt;}
.x16_c00351{left:270.000000pt;}
.x75_c00351{left:271.466667pt;}
.x85_c00351{left:275.200000pt;}
.x24_c00351{left:277.066667pt;}
.x45_c00351{left:278.133333pt;}
.x2f_c00351{left:280.266667pt;}
.x69_c00351{left:281.866667pt;}
.x4e_c00351{left:283.866667pt;}
.x38_c00351{left:285.733333pt;}
.x17_c00351{left:287.600000pt;}
.x89_c00351{left:289.066667pt;}
.xf_c00351{left:290.266667pt;}
.x28_c00351{left:291.866667pt;}
.x39_c00351{left:292.800000pt;}
.x5f_c00351{left:296.133333pt;}
.x76_c00351{left:298.000000pt;}
.x3a_c00351{left:298.933333pt;}
.x6f_c00351{left:300.400000pt;}
.x4a_c00351{left:302.133333pt;}
.x7d_c00351{left:303.333333pt;}
.x29_c00351{left:305.200000pt;}
.x4f_c00351{left:306.533333pt;}
.x63_c00351{left:307.466667pt;}
.x6_c00351{left:308.933333pt;}
.x10_c00351{left:310.400000pt;}
.x2a_c00351{left:311.600000pt;}
.x5b_c00351{left:315.600000pt;}
.x2b_c00351{left:318.000000pt;}
.x52_c00351{left:319.200000pt;}
.xa3_c00351{left:320.133333pt;}
.xac_c00351{left:321.200000pt;}
.x35_c00351{left:322.666667pt;}
.x8c_c00351{left:323.733333pt;}
.x79_c00351{left:325.866667pt;}
.x40_c00351{left:328.533333pt;}
.x30_c00351{left:329.600000pt;}
.x18_c00351{left:331.066667pt;}
.x77_c00351{left:332.533333pt;}
.x8e_c00351{left:334.400000pt;}
.x25_c00351{left:335.600000pt;}
.x11_c00351{left:336.666667pt;}
.x67_c00351{left:338.133333pt;}
.x36_c00351{left:340.933333pt;}
.x19_c00351{left:343.866667pt;}
.x71_c00351{left:345.600000pt;}
.x7a_c00351{left:346.933333pt;}
.x50_c00351{left:348.800000pt;}
.x1a_c00351{left:350.000000pt;}
.x53_c00351{left:350.933333pt;}
.x7_c00351{left:351.866667pt;}
.x56_c00351{left:352.800000pt;}
.x8f_c00351{left:354.133333pt;}
.x26_c00351{left:355.466667pt;}
.x1b_c00351{left:356.666667pt;}
.x41_c00351{left:358.266667pt;}
.xa7_c00351{left:360.133333pt;}
.x57_c00351{left:362.000000pt;}
.x1c_c00351{left:363.333333pt;}
.x94_c00351{left:364.533333pt;}
.x83_c00351{left:366.666667pt;}
.x6d_c00351{left:367.866667pt;}
.x1d_c00351{left:369.733333pt;}
.x2_c00351{left:372.133333pt;}
.x64_c00351{left:373.066667pt;}
.x90_c00351{left:374.000000pt;}
.x68_c00351{left:375.866667pt;}
.x58_c00351{left:377.066667pt;}
.x8_c00351{left:378.133333pt;}
.x4b_c00351{left:379.866667pt;}
.x7b_c00351{left:382.133333pt;}
.x9b_c00351{left:383.733333pt;}
.x8d_c00351{left:384.800000pt;}
.x1e_c00351{left:386.666667pt;}
.x31_c00351{left:387.866667pt;}
.x3c_c00351{left:389.333333pt;}
.x91_c00351{left:390.666667pt;}
.x9f_c00351{left:392.533333pt;}
.x60_c00351{left:394.400000pt;}
.x4c_c00351{left:395.866667pt;}
.xaa_c00351{left:399.333333pt;}
.x6a_c00351{left:401.866667pt;}
.xa4_c00351{left:403.066667pt;}
.x61_c00351{left:404.000000pt;}
.x9_c00351{left:405.600000pt;}
.x9c_c00351{left:408.666667pt;}
.xa0_c00351{left:410.133333pt;}
.x12_c00351{left:413.066667pt;}
.x32_c00351{left:414.133333pt;}
.x3d_c00351{left:416.533333pt;}
.x59_c00351{left:418.000000pt;}
.x7c_c00351{left:418.933333pt;}
.x6b_c00351{left:420.133333pt;}
.x51_c00351{left:427.466667pt;}
.x72_c00351{left:429.200000pt;}
.x65_c00351{left:430.400000pt;}
.x92_c00351{left:432.266667pt;}
.xa1_c00351{left:433.466667pt;}
.x33_c00351{left:434.666667pt;}
.xa_c00351{left:436.000000pt;}
.x7e_c00351{left:437.333333pt;}
.x1f_c00351{left:438.533333pt;}
.x2c_c00351{left:440.266667pt;}
.x42_c00351{left:441.466667pt;}
.x98_c00351{left:443.066667pt;}
.xa8_c00351{left:444.266667pt;}
.x46_c00351{left:448.000000pt;}
.x80_c00351{left:450.400000pt;}
.x78_c00351{left:452.266667pt;}
.x9d_c00351{left:454.400000pt;}
.xf5_c00351{left:471.733333pt;}
.x109_c00351{left:472.666667pt;}
.x132_c00351{left:473.866667pt;}
.x147_c00351{left:475.866667pt;}
.xbe_c00351{left:485.200000pt;}
.xad_c00351{left:486.133333pt;}
.xea_c00351{left:487.466667pt;}
.x120_c00351{left:488.400000pt;}
.x12a_c00351{left:489.733333pt;}
.x13c_c00351{left:490.800000pt;}
.x14b_c00351{left:491.866667pt;}
.x126_c00351{left:495.066667pt;}
.xae_c00351{left:502.133333pt;}
.xc6_c00351{left:504.000000pt;}
.xf2_c00351{left:505.066667pt;}
.x14c_c00351{left:507.466667pt;}
.x101_c00351{left:510.133333pt;}
.xeb_c00351{left:511.733333pt;}
.x10a_c00351{left:512.666667pt;}
.xb7_c00351{left:513.733333pt;}
.x138_c00351{left:516.000000pt;}
.x113_c00351{left:517.466667pt;}
.xbf_c00351{left:518.533333pt;}
.xaf_c00351{left:519.466667pt;}
.x142_c00351{left:522.533333pt;}
.x11e_c00351{left:523.600000pt;}
.xdc_c00351{left:524.533333pt;}
.xe0_c00351{left:526.933333pt;}
.xce_c00351{left:528.400000pt;}
.x130_c00351{left:530.133333pt;}
.xf6_c00351{left:531.200000pt;}
.xe6_c00351{left:533.600000pt;}
.xfb_c00351{left:534.800000pt;}
.xf3_c00351{left:536.133333pt;}
.xd4_c00351{left:538.000000pt;}
.x102_c00351{left:538.933333pt;}
.x121_c00351{left:540.533333pt;}
.x106_c00351{left:542.133333pt;}
.x152_c00351{left:543.066667pt;}
.x11a_c00351{left:544.133333pt;}
.x10b_c00351{left:545.333333pt;}
.xd5_c00351{left:546.666667pt;}
.xe1_c00351{left:548.000000pt;}
.x151_c00351{left:549.466667pt;}
.xec_c00351{left:550.400000pt;}
.xe7_c00351{left:551.866667pt;}
.x12b_c00351{left:553.066667pt;}
.xcf_c00351{left:554.000000pt;}
.xf7_c00351{left:555.466667pt;}
.x139_c00351{left:557.866667pt;}
.xfc_c00351{left:559.466667pt;}
.x10f_c00351{left:561.600000pt;}
.xb8_c00351{left:564.000000pt;}
.xc7_c00351{left:565.733333pt;}
.xc0_c00351{left:567.866667pt;}
.x13d_c00351{left:568.933333pt;}
.x127_c00351{left:570.533333pt;}
.xdd_c00351{left:571.600000pt;}
.x114_c00351{left:572.533333pt;}
.xb0_c00351{left:573.600000pt;}
.xf4_c00351{left:574.533333pt;}
.x131_c00351{left:579.733333pt;}
.xb1_c00351{left:581.866667pt;}
.x11b_c00351{left:583.200000pt;}
.xc8_c00351{left:584.266667pt;}
.x124_c00351{left:586.000000pt;}
.x133_c00351{left:587.866667pt;}
.xed_c00351{left:589.733333pt;}
.xd6_c00351{left:591.733333pt;}
.xe8_c00351{left:593.466667pt;}
.xc9_c00351{left:595.200000pt;}
.x122_c00351{left:597.866667pt;}
.xfd_c00351{left:598.800000pt;}
.x107_c00351{left:600.933333pt;}
.x125_c00351{left:602.000000pt;}
.xb2_c00351{left:604.533333pt;}
.xe2_c00351{left:606.266667pt;}
.x110_c00351{left:608.533333pt;}
.xd7_c00351{left:610.266667pt;}
.xf8_c00351{left:612.133333pt;}
.xfe_c00351{left:615.466667pt;}
.x108_c00351{left:616.666667pt;}
.x11f_c00351{left:617.600000pt;}
.xc1_c00351{left:621.333333pt;}
.x135_c00351{left:622.533333pt;}
.x103_c00351{left:623.466667pt;}
.x140_c00351{left:624.933333pt;}
.xb9_c00351{left:626.666667pt;}
.xb3_c00351{left:627.600000pt;}
.xd8_c00351{left:629.200000pt;}
.x10c_c00351{left:631.066667pt;}
.x111_c00351{left:632.266667pt;}
.x12c_c00351{left:634.400000pt;}
.xe3_c00351{left:635.733333pt;}
.x143_c00351{left:637.466667pt;}
.xd9_c00351{left:638.800000pt;}
.xba_c00351{left:640.400000pt;}
.xca_c00351{left:641.600000pt;}
.x13a_c00351{left:643.333333pt;}
.x11c_c00351{left:644.933333pt;}
.x104_c00351{left:645.866667pt;}
.xd0_c00351{left:647.066667pt;}
.x148_c00351{left:648.266667pt;}
.xcb_c00351{left:649.866667pt;}
.xc2_c00351{left:651.466667pt;}
.x116_c00351{left:654.666667pt;}
.x112_c00351{left:656.000000pt;}
.x128_c00351{left:656.933333pt;}
.x141_c00351{left:658.533333pt;}
.xcc_c00351{left:660.800000pt;}
.xe4_c00351{left:662.266667pt;}
.xef_c00351{left:664.133333pt;}
.x119_c00351{left:666.266667pt;}
.xff_c00351{left:669.200000pt;}
.xb4_c00351{left:670.533333pt;}
.x149_c00351{left:672.000000pt;}
.xe9_c00351{left:674.400000pt;}
.x144_c00351{left:675.600000pt;}
.xda_c00351{left:676.533333pt;}
.x136_c00351{left:677.600000pt;}
.x13e_c00351{left:680.933333pt;}
.xc3_c00351{left:681.866667pt;}
.xbb_c00351{left:683.333333pt;}
.x100_c00351{left:685.200000pt;}
.x105_c00351{left:689.066667pt;}
.x13f_c00351{left:691.466667pt;}
.x12e_c00351{left:692.400000pt;}
.x10d_c00351{left:694.400000pt;}
.xb5_c00351{left:695.466667pt;}
.x117_c00351{left:697.333333pt;}
.xf9_c00351{left:698.933333pt;}
.x129_c00351{left:701.466667pt;}
.x11d_c00351{left:703.200000pt;}
.x13b_c00351{left:704.800000pt;}
.xc4_c00351{left:707.466667pt;}
.xd1_c00351{left:710.400000pt;}
.xf0_c00351{left:712.400000pt;}
.xbc_c00351{left:713.466667pt;}
.x146_c00351{left:716.533333pt;}
.x115_c00351{left:720.800000pt;}
.x14a_c00351{left:722.266667pt;}
.x118_c00351{left:725.200000pt;}
.xde_c00351{left:727.600000pt;}
.xd2_c00351{left:728.666667pt;}
.xbd_c00351{left:729.733333pt;}
.x137_c00351{left:731.066667pt;}
.x123_c00351{left:733.200000pt;}
.xee_c00351{left:734.133333pt;}
.x14f_c00351{left:735.066667pt;}
.x12f_c00351{left:736.533333pt;}
.x14d_c00351{left:737.866667pt;}
.xe5_c00351{left:739.466667pt;}
.xc5_c00351{left:741.066667pt;}
.xdf_c00351{left:742.666667pt;}
.x14e_c00351{left:743.733333pt;}
.xcd_c00351{left:744.666667pt;}
.x134_c00351{left:748.000000pt;}
.x145_c00351{left:749.200000pt;}
.x10e_c00351{left:751.733333pt;}
.xf1_c00351{left:756.266667pt;}
.xd3_c00351{left:757.466667pt;}
.x150_c00351{left:758.400000pt;}
.xfa_c00351{left:762.000000pt;}
.x12d_c00351{left:764.666667pt;}
.xb6_c00351{left:765.866667pt;}
.xdb_c00351{left:766.800000pt;}
}





/* 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_c00352 {
    display:none;
  }
  .loading-indicator_c00352.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00352 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_c00352 { 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_c00352" -> "#page-container .classname_c00352")
 */
.pf_c00352 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00352 { /* 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_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00352 { /* 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_c00352 { /* 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_c00352 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00352 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00352 {overflow:visible;}
  }
}
.c_c00352 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00352 { /* 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_c00352:after { /* webkit #35443 */
  content: '';
}
.t_c00352:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00352 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 */
}
.__c00352 { /* 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_c00352 { /* info for Javascript */
  display:none;
}
.l_c00352 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00352 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00352 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00352: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_c00352 {
    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_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00352.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_c00352 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00352;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.000000;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;}
.m119_c00352{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00352{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md4_c00352{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.meb_c00352{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m107_c00352{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00352{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m51_c00352{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00352{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00352{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m16_c00352{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00352{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m69_c00352{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00352{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m8_c00352{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m48_c00352{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00352{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m66_c00352{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.me7_c00352{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.me5_c00352{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m64_c00352{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00352{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00352{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m31_c00352{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00352{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00352{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m110_c00352{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00352{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m130_c00352{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00352{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m39_c00352{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md6_c00352{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00352{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m26_c00352{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma_c00352{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m45_c00352{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m32_c00352{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m98_c00352{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf_c00352{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m61_c00352{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00352{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00352{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5_c00352{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mde_c00352{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00352{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m21_c00352{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m97_c00352{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me6_c00352{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.me8_c00352{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m86_c00352{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00352{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00352{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m55_c00352{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00352{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3_c00352{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.med_c00352{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.maa_c00352{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00352{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.md1_c00352{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00352{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00352{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00352{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00352{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00352{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mea_c00352{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00352{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m18_c00352{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me1_c00352{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m82_c00352{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mec_c00352{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00352{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00352{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00352{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m79_c00352{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00352{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mee_c00352{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m44_c00352{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00352{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mce_c00352{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m88_c00352{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m106_c00352{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m87_c00352{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00352{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00352{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m126_c00352{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m108_c00352{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00352{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00352{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m27_c00352{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00352{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m22_c00352{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m50_c00352{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m54_c00352{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00352{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m42_c00352{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m116_c00352{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m46_c00352{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m105_c00352{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00352{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00352{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m85_c00352{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md2_c00352{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.maf_c00352{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mb_c00352{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m125_c00352{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m117_c00352{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00352{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mab_c00352{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00352{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m89_c00352{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mda_c00352{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m81_c00352{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m78_c00352{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00352{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m123_c00352{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m93_c00352{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mef_c00352{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m60_c00352{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00352{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00352{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.md_c00352{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m131_c00352{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m90_c00352{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m80_c00352{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m10_c00352{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00352{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m53_c00352{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00352{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m122_c00352{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00352{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m83_c00352{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00352{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00352{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mba_c00352{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m29_c00352{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00352{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00352{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00352{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00352{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m91_c00352{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00352{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m41_c00352{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00352{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m74_c00352{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m17_c00352{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00352{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m99_c00352{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00352{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m13_c00352{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m114_c00352{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m35_c00352{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00352{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m68_c00352{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me9_c00352{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m76_c00352{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m47_c00352{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m25_c00352{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m56_c00352{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m24_c00352{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m73_c00352{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00352{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00352{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00352{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00352{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00352{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m121_c00352{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.md8_c00352{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m71_c00352{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00352{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00352{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m94_c00352{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m57_c00352{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00352{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00352{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m70_c00352{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m59_c00352{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00352{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00352{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00352{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m9_c00352{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00352{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m58_c00352{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00352{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mad_c00352{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00352{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7_c00352{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00352{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00352{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m37_c00352{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m36_c00352{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00352{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00352{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00352{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m15_c00352{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mac_c00352{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00352{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m75_c00352{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m43_c00352{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00352{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m102_c00352{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00352{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md9_c00352{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00352{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mca_c00352{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00352{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m23_c00352{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00352{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m100_c00352{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6_c00352{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00352{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00352{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m30_c00352{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mae_c00352{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00352{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m28_c00352{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m72_c00352{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m112_c00352{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m12_c00352{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m40_c00352{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00352{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m118_c00352{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m20_c00352{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m95_c00352{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00352{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00352{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.me4_c00352{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md3_c00352{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00352{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00352{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00352{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00352{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00352{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00352{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m115_c00352{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me2_c00352{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2_c00352{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00352{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mff_c00352{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19_c00352{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m104_c00352{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me0_c00352{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);}
.m12a_c00352{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m38_c00352{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00352{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m84_c00352{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m111_c00352{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00352{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m77_c00352{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m63_c00352{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00352{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m14_c00352{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00352{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m34_c00352{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m96_c00352{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00352{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00352{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m11_c00352{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m127_c00352{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me3_c00352{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00352{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m113_c00352{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00352{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m92_c00352{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m124_c00352{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m52_c00352{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m67_c00352{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00352{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m128_c00352{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00352{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00352{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00352{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00352{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00352{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00352{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00352{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md5_c00352{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m103_c00352{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00352{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00352{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m33_c00352{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00352{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m132_c00352{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00352{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00352{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m101_c00352{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4_c00352{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m129_c00352{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00352{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.md0_c00352{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.me_c00352{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00352{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00352{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00352{transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00352{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00352{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m120_c00352{transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);}
.m62_c00352{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00352{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00352{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m109_c00352{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00352{transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00352{transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);}
.m65_c00352{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.md7_c00352{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00352{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m0_c00352{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m49_c00352{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls0_c00352{letter-spacing:0.000000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{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__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00352{word-spacing:-15.903930px;}
.ws3_c00352{word-spacing:-5.340909px;}
.ws5_c00352{word-spacing:0.000000px;}
.ws1_c00352{word-spacing:6.921788px;}
.ws2_c00352{word-spacing:7.656250px;}
.ws4_c00352{word-spacing:23.793103px;}
.fc0_c00352{color:transparent;}
.fs6_c00352{font-size:36.000000px;}
.fs4_c00352{font-size:48.000000px;}
.fs5_c00352{font-size:54.000000px;}
.fs2_c00352{font-size:60.000000px;}
.fs1_c00352{font-size:66.000000px;}
.fs3_c00352{font-size:72.000000px;}
.fs0_c00352{font-size:78.000000px;}
.y0_c00352{bottom:0.000000px;}
.y75_c00352{bottom:183.900000px;}
.y3a_c00352{bottom:184.800000px;}
.y74_c00352{bottom:198.300000px;}
.y39_c00352{bottom:199.200000px;}
.y73_c00352{bottom:213.000000px;}
.y38_c00352{bottom:213.600000px;}
.y72_c00352{bottom:227.100000px;}
.y37_c00352{bottom:228.300000px;}
.y71_c00352{bottom:241.800000px;}
.y36_c00352{bottom:247.050000px;}
.y70_c00352{bottom:256.950000px;}
.y35_c00352{bottom:261.750000px;}
.y6f_c00352{bottom:271.050000px;}
.y34_c00352{bottom:276.150000px;}
.y6e_c00352{bottom:287.250000px;}
.y33_c00352{bottom:289.800000px;}
.y6d_c00352{bottom:299.850000px;}
.y32_c00352{bottom:304.500000px;}
.y6c_c00352{bottom:314.250000px;}
.y31_c00352{bottom:318.900000px;}
.y6b_c00352{bottom:328.950000px;}
.y30_c00352{bottom:333.300000px;}
.y6a_c00352{bottom:343.050000px;}
.y2f_c00352{bottom:348.450000px;}
.y69_c00352{bottom:360.600000px;}
.y2e_c00352{bottom:362.550000px;}
.y68_c00352{bottom:376.800000px;}
.y2d_c00352{bottom:381.300000px;}
.y67_c00352{bottom:390.900000px;}
.y2c_c00352{bottom:395.550000px;}
.y66_c00352{bottom:405.000000px;}
.y2b_c00352{bottom:409.950000px;}
.y65_c00352{bottom:419.400000px;}
.y2a_c00352{bottom:424.050000px;}
.y64_c00352{bottom:433.800000px;}
.y29_c00352{bottom:438.150000px;}
.y63_c00352{bottom:447.900000px;}
.y28_c00352{bottom:452.550000px;}
.y62_c00352{bottom:462.300000px;}
.y61_c00352{bottom:485.700000px;}
.y25_c00352{bottom:494.700000px;}
.y60_c00352{bottom:500.400000px;}
.y24_c00352{bottom:512.700000px;}
.y5f_c00352{bottom:515.100000px;}
.y5e_c00352{bottom:529.500000px;}
.y23_c00352{bottom:534.900000px;}
.y5d_c00352{bottom:543.750000px;}
.y22_c00352{bottom:557.700000px;}
.y5c_c00352{bottom:558.150000px;}
.y5b_c00352{bottom:572.550000px;}
.y21_c00352{bottom:575.700000px;}
.y5a_c00352{bottom:586.950000px;}
.y20_c00352{bottom:593.550000px;}
.y59_c00352{bottom:601.350000px;}
.y1f_c00352{bottom:611.850000px;}
.y58_c00352{bottom:616.050000px;}
.y1e_c00352{bottom:629.850000px;}
.y57_c00352{bottom:630.750000px;}
.y1d_c00352{bottom:647.550000px;}
.y56_c00352{bottom:649.050000px;}
.y55_c00352{bottom:663.450000px;}
.y1c_c00352{bottom:665.550000px;}
.y54_c00352{bottom:677.850000px;}
.y1b_c00352{bottom:683.550000px;}
.y53_c00352{bottom:692.250000px;}
.y1a_c00352{bottom:701.250000px;}
.y52_c00352{bottom:706.950000px;}
.y19_c00352{bottom:719.250000px;}
.y51_c00352{bottom:721.050000px;}
.y18_c00352{bottom:736.950000px;}
.y50_c00352{bottom:740.100000px;}
.y4f_c00352{bottom:754.800000px;}
.y17_c00352{bottom:757.200000px;}
.y4e_c00352{bottom:768.900000px;}
.y16_c00352{bottom:771.900000px;}
.y4d_c00352{bottom:783.300000px;}
.y15_c00352{bottom:787.650000px;}
.y4c_c00352{bottom:797.700000px;}
.y14_c00352{bottom:802.050000px;}
.y4b_c00352{bottom:812.850000px;}
.y13_c00352{bottom:814.650000px;}
.y4a_c00352{bottom:826.950000px;}
.y12_c00352{bottom:832.350000px;}
.y49_c00352{bottom:841.650000px;}
.y11_c00352{bottom:851.100000px;}
.y48_c00352{bottom:859.350000px;}
.y10_c00352{bottom:869.100000px;}
.y47_c00352{bottom:873.750000px;}
.y46_c00352{bottom:888.150000px;}
.yf_c00352{bottom:891.000000px;}
.y45_c00352{bottom:902.850000px;}
.ye_c00352{bottom:909.300000px;}
.y44_c00352{bottom:917.250000px;}
.yd_c00352{bottom:927.300000px;}
.y43_c00352{bottom:931.350000px;}
.yc_c00352{bottom:945.000000px;}
.y42_c00352{bottom:945.750000px;}
.y41_c00352{bottom:960.150000px;}
.yb_c00352{bottom:963.000000px;}
.y40_c00352{bottom:974.550000px;}
.ya_c00352{bottom:980.700000px;}
.y3f_c00352{bottom:988.950000px;}
.y9_c00352{bottom:1000.800000px;}
.y3e_c00352{bottom:1003.650000px;}
.y8_c00352{bottom:1020.600000px;}
.y3d_c00352{bottom:1021.650000px;}
.y3c_c00352{bottom:1036.800000px;}
.y7_c00352{bottom:1047.150000px;}
.y3b_c00352{bottom:1051.200000px;}
.y6_c00352{bottom:1064.850000px;}
.y5_c00352{bottom:1082.550000px;}
.y4_c00352{bottom:1100.850000px;}
.y27_c00352{bottom:1102.350000px;}
.y3_c00352{bottom:1118.550000px;}
.y26_c00352{bottom:1120.650000px;}
.y1_c00352{bottom:1146.600000px;}
.y2_c00352{bottom:1147.350000px;}
.h8_c00352{height:36.000000px;}
.h6_c00352{height:48.000000px;}
.h7_c00352{height:54.000000px;}
.h4_c00352{height:60.000000px;}
.h3_c00352{height:66.000000px;}
.h5_c00352{height:72.000000px;}
.h2_c00352{height:78.000000px;}
.h1_c00352{height:1272.000000px;}
.h0_c00352{height:1272.239960px;}
.w0_c00352{width:960.480010px;}
.w1_c00352{width:960.750000px;}
.x0_c00352{left:0.000000px;}
.x2a_c00352{left:78.150000px;}
.x66_c00352{left:79.950000px;}
.x88_c00352{left:81.750000px;}
.xa4_c00352{left:83.400000px;}
.xaa_c00352{left:84.600000px;}
.xb4_c00352{left:85.650000px;}
.xbd_c00352{left:87.900000px;}
.x3_c00352{left:92.550000px;}
.x12_c00352{left:94.200000px;}
.x37_c00352{left:95.550000px;}
.x68_c00352{left:97.800000px;}
.x79_c00352{left:98.850000px;}
.x87_c00352{left:100.350000px;}
.xbe_c00352{left:103.500000px;}
.xa2_c00352{left:105.300000px;}
.x5c_c00352{left:107.700000px;}
.x2f_c00352{left:113.400000px;}
.xa5_c00352{left:115.500000px;}
.x6e_c00352{left:117.300000px;}
.x2b_c00352{left:119.850000px;}
.xb0_c00352{left:121.350000px;}
.x22_c00352{left:123.300000px;}
.x7a_c00352{left:125.250000px;}
.x52_c00352{left:126.300000px;}
.xa8_c00352{left:127.500000px;}
.x38_c00352{left:129.000000px;}
.x65_c00352{left:130.050000px;}
.x1a_c00352{left:131.400000px;}
.x74_c00352{left:135.300000px;}
.x69_c00352{left:138.150000px;}
.x53_c00352{left:139.200000px;}
.x1b_c00352{left:140.700000px;}
.xb_c00352{left:142.350000px;}
.x23_c00352{left:143.850000px;}
.x5f_c00352{left:146.100000px;}
.x49_c00352{left:148.050000px;}
.x43_c00352{left:149.100000px;}
.x13_c00352{left:151.050000px;}
.x6f_c00352{left:153.600000px;}
.x83_c00352{left:154.800000px;}
.x75_c00352{left:156.150000px;}
.x4a_c00352{left:158.100000px;}
.x4_c00352{left:159.150000px;}
.x44_c00352{left:161.400000px;}
.xb9_c00352{left:164.100000px;}
.x39_c00352{left:165.750000px;}
.xc_c00352{left:169.350000px;}
.x8e_c00352{left:172.950000px;}
.x14_c00352{left:175.950000px;}
.x30_c00352{left:177.000000px;}
.x89_c00352{left:178.200000px;}
.x80_c00352{left:179.550000px;}
.x54_c00352{left:180.900000px;}
.xa0_c00352{left:181.950000px;}
.x1c_c00352{left:183.150000px;}
.x5_c00352{left:185.850000px;}
.xbf_c00352{left:187.050000px;}
.x3a_c00352{left:188.100000px;}
.x4d_c00352{left:189.300000px;}
.xba_c00352{left:191.400000px;}
.xd_c00352{left:193.500000px;}
.x45_c00352{left:195.300000px;}
.xa3_c00352{left:198.900000px;}
.x1d_c00352{left:200.100000px;}
.x8f_c00352{left:202.800000px;}
.x7f_c00352{left:204.150000px;}
.x24_c00352{left:206.100000px;}
.x84_c00352{left:207.750000px;}
.xbc_c00352{left:210.600000px;}
.x6a_c00352{left:211.950000px;}
.xbb_c00352{left:213.000000px;}
.x35_c00352{left:217.650000px;}
.xb5_c00352{left:220.350000px;}
.x3b_c00352{left:222.300000px;}
.x25_c00352{left:223.800000px;}
.x50_c00352{left:225.300000px;}
.x40_c00352{left:227.700000px;}
.x31_c00352{left:229.950000px;}
.x55_c00352{left:232.050000px;}
.xa9_c00352{left:234.000000px;}
.x81_c00352{left:235.050000px;}
.x15_c00352{left:236.100000px;}
.x8a_c00352{left:237.600000px;}
.x4e_c00352{left:239.400000px;}
.x60_c00352{left:241.200000px;}
.x6_c00352{left:242.400000px;}
.xb1_c00352{left:245.850000px;}
.x9d_c00352{left:246.900000px;}
.x90_c00352{left:248.850000px;}
.x2c_c00352{left:252.300000px;}
.xe_c00352{left:253.650000px;}
.x32_c00352{left:255.450000px;}
.x6b_c00352{left:256.500000px;}
.x26_c00352{left:258.300000px;}
.x51_c00352{left:259.500000px;}
.x7_c00352{left:260.700000px;}
.x7b_c00352{left:261.750000px;}
.x46_c00352{left:263.700000px;}
.x1e_c00352{left:265.950000px;}
.x61_c00352{left:268.200000px;}
.xab_c00352{left:269.700000px;}
.xb3_c00352{left:271.200000px;}
.x76_c00352{left:274.650000px;}
.x33_c00352{left:276.000000px;}
.x27_c00352{left:277.350000px;}
.x2d_c00352{left:279.300000px;}
.x3c_c00352{left:281.250000px;}
.xae_c00352{left:282.450000px;}
.xc0_c00352{left:284.250000px;}
.x8b_c00352{left:285.450000px;}
.x7c_c00352{left:286.950000px;}
.x56_c00352{left:288.600000px;}
.x70_c00352{left:290.400000px;}
.x47_c00352{left:293.550000px;}
.x16_c00352{left:295.500000px;}
.x85_c00352{left:297.750000px;}
.xb6_c00352{left:299.400000px;}
.x62_c00352{left:300.600000px;}
.xa1_c00352{left:301.800000px;}
.xa6_c00352{left:303.000000px;}
.x17_c00352{left:304.200000px;}
.x7d_c00352{left:306.000000px;}
.x3d_c00352{left:307.950000px;}
.xf_c00352{left:310.200000px;}
.x4b_c00352{left:311.700000px;}
.x48_c00352{left:314.100000px;}
.xc1_c00352{left:315.600000px;}
.x1_c00352{left:317.100000px;}
.x36_c00352{left:318.150000px;}
.x71_c00352{left:321.000000px;}
.x8_c00352{left:322.650000px;}
.x28_c00352{left:324.450000px;}
.xac_c00352{left:326.100000px;}
.x34_c00352{left:327.450000px;}
.x4c_c00352{left:328.650000px;}
.xb7_c00352{left:329.700000px;}
.x41_c00352{left:331.650000px;}
.x82_c00352{left:333.000000px;}
.x1f_c00352{left:336.900000px;}
.x77_c00352{left:338.400000px;}
.x5d_c00352{left:340.200000px;}
.x7e_c00352{left:341.250000px;}
.x29_c00352{left:342.450000px;}
.x67_c00352{left:343.650000px;}
.x59_c00352{left:345.000000px;}
.x3e_c00352{left:346.500000px;}
.x9e_c00352{left:348.300000px;}
.x8c_c00352{left:349.950000px;}
.x63_c00352{left:352.500000px;}
.x18_c00352{left:353.850000px;}
.xaf_c00352{left:355.500000px;}
.x2e_c00352{left:356.700000px;}
.xa7_c00352{left:358.800000px;}
.x10_c00352{left:361.650000px;}
.x6c_c00352{left:362.700000px;}
.x72_c00352{left:365.250000px;}
.x57_c00352{left:367.650000px;}
.x5a_c00352{left:368.700000px;}
.x20_c00352{left:370.350000px;}
.x4f_c00352{left:372.000000px;}
.x5e_c00352{left:374.400000px;}
.x86_c00352{left:375.450000px;}
.x19_c00352{left:376.950000px;}
.x3f_c00352{left:378.600000px;}
.x9f_c00352{left:379.650000px;}
.x91_c00352{left:380.850000px;}
.x9_c00352{left:382.350000px;}
.x21_c00352{left:384.000000px;}
.x42_c00352{left:386.400000px;}
.x6d_c00352{left:387.600000px;}
.x11_c00352{left:389.400000px;}
.x64_c00352{left:390.750000px;}
.x8d_c00352{left:393.150000px;}
.x73_c00352{left:395.550000px;}
.xa_c00352{left:397.500000px;}
.x58_c00352{left:401.550000px;}
.x5b_c00352{left:403.200000px;}
.xad_c00352{left:404.250000px;}
.x78_c00352{left:407.400000px;}
.xb2_c00352{left:410.700000px;}
.xb8_c00352{left:411.750000px;}
.xc2_c00352{left:433.050000px;}
.xd0_c00352{left:434.250000px;}
.x109_c00352{left:435.300000px;}
.x110_c00352{left:436.500000px;}
.x131_c00352{left:437.700000px;}
.x13c_c00352{left:438.750000px;}
.x148_c00352{left:440.100000px;}
.x15c_c00352{left:441.450000px;}
.x138_c00352{left:443.850000px;}
.xd3_c00352{left:449.700000px;}
.x92_c00352{left:451.050000px;}
.x99_c00352{left:452.100000px;}
.x14f_c00352{left:453.900000px;}
.x154_c00352{left:455.400000px;}
.xf3_c00352{left:457.800000px;}
.x11d_c00352{left:460.800000px;}
.xc3_c00352{left:462.600000px;}
.xe2_c00352{left:463.650000px;}
.xe6_c00352{left:467.700000px;}
.x14b_c00352{left:468.750000px;}
.xd1_c00352{left:470.250000px;}
.xd4_c00352{left:472.350000px;}
.x10a_c00352{left:474.900000px;}
.xdb_c00352{left:476.400000px;}
.xf0_c00352{left:477.900000px;}
.x12a_c00352{left:479.550000px;}
.x93_c00352{left:480.600000px;}
.xe7_c00352{left:483.900000px;}
.xc4_c00352{left:484.950000px;}
.x15d_c00352{left:486.450000px;}
.x13d_c00352{left:488.400000px;}
.xd2_c00352{left:489.750000px;}
.x12e_c00352{left:492.000000px;}
.xd5_c00352{left:493.950000px;}
.x16f_c00352{left:495.000000px;}
.x11e_c00352{left:496.500000px;}
.x103_c00352{left:499.200000px;}
.x15e_c00352{left:501.900000px;}
.xf4_c00352{left:505.650000px;}
.x94_c00352{left:508.350000px;}
.xdc_c00352{left:510.900000px;}
.x164_c00352{left:511.950000px;}
.x119_c00352{left:513.450000px;}
.x9a_c00352{left:515.400000px;}
.x135_c00352{left:517.200000px;}
.x104_c00352{left:518.250000px;}
.x132_c00352{left:519.750000px;}
.xfa_c00352{left:522.150000px;}
.x125_c00352{left:523.350000px;}
.xca_c00352{left:526.650000px;}
.x16a_c00352{left:528.900000px;}
.x140_c00352{left:530.700000px;}
.x113_c00352{left:531.750000px;}
.x158_c00352{left:533.250000px;}
.x12f_c00352{left:534.450000px;}
.x14c_c00352{left:536.400000px;}
.xff_c00352{left:538.200000px;}
.xfb_c00352{left:539.400000px;}
.xdd_c00352{left:541.200000px;}
.x11f_c00352{left:543.000000px;}
.x11a_c00352{left:544.800000px;}
.xe8_c00352{left:546.450000px;}
.x165_c00352{left:550.050000px;}
.xf5_c00352{left:551.700000px;}
.xd6_c00352{left:554.100000px;}
.xc5_c00352{left:555.150000px;}
.x111_c00352{left:556.800000px;}
.xe9_c00352{left:559.350000px;}
.xde_c00352{left:560.700000px;}
.x139_c00352{left:562.350000px;}
.x16b_c00352{left:563.550000px;}
.xd7_c00352{left:565.200000px;}
.x100_c00352{left:567.300000px;}
.x168_c00352{left:568.350000px;}
.x162_c00352{left:571.500000px;}
.x10b_c00352{left:572.700000px;}
.x14d_c00352{left:575.400000px;}
.x149_c00352{left:576.900000px;}
.xf1_c00352{left:578.400000px;}
.xc6_c00352{left:579.600000px;}
.xea_c00352{left:582.450000px;}
.x167_c00352{left:583.500000px;}
.x114_c00352{left:585.450000px;}
.x10c_c00352{left:587.100000px;}
.x9b_c00352{left:588.900000px;}
.x13a_c00352{left:590.400000px;}
.x95_c00352{left:591.450000px;}
.xd8_c00352{left:594.300000px;}
.x150_c00352{left:598.650000px;}
.x127_c00352{left:600.450000px;}
.x10e_c00352{left:602.100000px;}
.x163_c00352{left:603.750000px;}
.xf6_c00352{left:604.950000px;}
.xcb_c00352{left:606.900000px;}
.x128_c00352{left:608.400000px;}
.x120_c00352{left:611.400000px;}
.x12b_c00352{left:613.200000px;}
.xdf_c00352{left:615.000000px;}
.xfc_c00352{left:617.100000px;}
.x142_c00352{left:618.150000px;}
.xcc_c00352{left:619.200000px;}
.x152_c00352{left:623.100000px;}
.x105_c00352{left:625.500000px;}
.x153_c00352{left:627.450000px;}
.xf7_c00352{left:628.650000px;}
.xc7_c00352{left:631.050000px;}
.x144_c00352{left:633.300000px;}
.x143_c00352{left:634.350000px;}
.x121_c00352{left:635.550000px;}
.x15f_c00352{left:636.900000px;}
.x12c_c00352{left:638.400000px;}
.xeb_c00352{left:640.500000px;}
.xcd_c00352{left:642.300000px;}
.x10d_c00352{left:643.650000px;}
.x13e_c00352{left:645.000000px;}
.x101_c00352{left:648.300000px;}
.x115_c00352{left:649.950000px;}
.x96_c00352{left:651.900000px;}
.xe3_c00352{left:653.400000px;}
.x15a_c00352{left:655.350000px;}
.x155_c00352{left:657.750000px;}
.x133_c00352{left:658.950000px;}
.x160_c00352{left:660.600000px;}
.x126_c00352{left:661.650000px;}
.xc8_c00352{left:663.450000px;}
.xf8_c00352{left:664.950000px;}
.x11b_c00352{left:666.750000px;}
.xec_c00352{left:668.550000px;}
.x145_c00352{left:670.050000px;}
.x13b_c00352{left:671.400000px;}
.x9c_c00352{left:672.450000px;}
.x97_c00352{left:674.550000px;}
.x16d_c00352{left:676.950000px;}
.x156_c00352{left:679.050000px;}
.x141_c00352{left:680.100000px;}
.x166_c00352{left:681.450000px;}
.x10f_c00352{left:684.150000px;}
.xf2_c00352{left:685.650000px;}
.x14e_c00352{left:687.600000px;}
.xe4_c00352{left:689.400000px;}
.x112_c00352{left:690.750000px;}
.x12d_c00352{left:692.700000px;}
.x136_c00352{left:694.350000px;}
.xce_c00352{left:696.000000px;}
.x124_c00352{left:698.400000px;}
.x106_c00352{left:700.650000px;}
.x129_c00352{left:702.750000px;}
.x122_c00352{left:703.950000px;}
.xed_c00352{left:705.600000px;}
.xfd_c00352{left:706.650000px;}
.x102_c00352{left:708.000000px;}
.x116_c00352{left:710.100000px;}
.x146_c00352{left:711.450000px;}
.xe0_c00352{left:712.500000px;}
.x130_c00352{left:715.200000px;}
.x15b_c00352{left:716.850000px;}
.x134_c00352{left:718.050000px;}
.xd9_c00352{left:719.700000px;}
.x16e_c00352{left:722.250000px;}
.x117_c00352{left:723.750000px;}
.xcf_c00352{left:725.550000px;}
.x161_c00352{left:726.900000px;}
.xee_c00352{left:731.100000px;}
.xf9_c00352{left:732.600000px;}
.x107_c00352{left:734.850000px;}
.x170_c00352{left:736.500000px;}
.x11c_c00352{left:738.450000px;}
.x16c_c00352{left:739.800000px;}
.x159_c00352{left:741.450000px;}
.x2_c00352{left:742.650000px;}
.xef_c00352{left:745.800000px;}
.xc9_c00352{left:747.000000px;}
.x123_c00352{left:749.250000px;}
.xfe_c00352{left:750.900000px;}
.x137_c00352{left:751.950000px;}
.x108_c00352{left:755.400000px;}
.x98_c00352{left:757.050000px;}
.xda_c00352{left:758.250000px;}
.xe1_c00352{left:759.600000px;}
.x14a_c00352{left:761.850000px;}
.x147_c00352{left:763.350000px;}
.x169_c00352{left:765.300000px;}
.xe5_c00352{left:769.350000px;}
.x118_c00352{left:770.550000px;}
.x13f_c00352{left:772.200000px;}
.x157_c00352{left:773.400000px;}
.x151_c00352{left:783.600000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws0_c00352{word-spacing:-14.136827pt;}
.ws3_c00352{word-spacing:-4.747475pt;}
.ws5_c00352{word-spacing:0.000000pt;}
.ws1_c00352{word-spacing:6.152700pt;}
.ws2_c00352{word-spacing:6.805556pt;}
.ws4_c00352{word-spacing:21.149425pt;}
.fs6_c00352{font-size:32.000000pt;}
.fs4_c00352{font-size:42.666667pt;}
.fs5_c00352{font-size:48.000000pt;}
.fs2_c00352{font-size:53.333333pt;}
.fs1_c00352{font-size:58.666667pt;}
.fs3_c00352{font-size:64.000000pt;}
.fs0_c00352{font-size:69.333333pt;}
.y0_c00352{bottom:0.000000pt;}
.y75_c00352{bottom:163.466667pt;}
.y3a_c00352{bottom:164.266667pt;}
.y74_c00352{bottom:176.266667pt;}
.y39_c00352{bottom:177.066667pt;}
.y73_c00352{bottom:189.333333pt;}
.y38_c00352{bottom:189.866667pt;}
.y72_c00352{bottom:201.866667pt;}
.y37_c00352{bottom:202.933333pt;}
.y71_c00352{bottom:214.933333pt;}
.y36_c00352{bottom:219.600000pt;}
.y70_c00352{bottom:228.400000pt;}
.y35_c00352{bottom:232.666667pt;}
.y6f_c00352{bottom:240.933333pt;}
.y34_c00352{bottom:245.466667pt;}
.y6e_c00352{bottom:255.333333pt;}
.y33_c00352{bottom:257.600000pt;}
.y6d_c00352{bottom:266.533333pt;}
.y32_c00352{bottom:270.666667pt;}
.y6c_c00352{bottom:279.333333pt;}
.y31_c00352{bottom:283.466667pt;}
.y6b_c00352{bottom:292.400000pt;}
.y30_c00352{bottom:296.266667pt;}
.y6a_c00352{bottom:304.933333pt;}
.y2f_c00352{bottom:309.733333pt;}
.y69_c00352{bottom:320.533333pt;}
.y2e_c00352{bottom:322.266667pt;}
.y68_c00352{bottom:334.933333pt;}
.y2d_c00352{bottom:338.933333pt;}
.y67_c00352{bottom:347.466667pt;}
.y2c_c00352{bottom:351.600000pt;}
.y66_c00352{bottom:360.000000pt;}
.y2b_c00352{bottom:364.400000pt;}
.y65_c00352{bottom:372.800000pt;}
.y2a_c00352{bottom:376.933333pt;}
.y64_c00352{bottom:385.600000pt;}
.y29_c00352{bottom:389.466667pt;}
.y63_c00352{bottom:398.133333pt;}
.y28_c00352{bottom:402.266667pt;}
.y62_c00352{bottom:410.933333pt;}
.y61_c00352{bottom:431.733333pt;}
.y25_c00352{bottom:439.733333pt;}
.y60_c00352{bottom:444.800000pt;}
.y24_c00352{bottom:455.733333pt;}
.y5f_c00352{bottom:457.866667pt;}
.y5e_c00352{bottom:470.666667pt;}
.y23_c00352{bottom:475.466667pt;}
.y5d_c00352{bottom:483.333333pt;}
.y22_c00352{bottom:495.733333pt;}
.y5c_c00352{bottom:496.133333pt;}
.y5b_c00352{bottom:508.933333pt;}
.y21_c00352{bottom:511.733333pt;}
.y5a_c00352{bottom:521.733333pt;}
.y20_c00352{bottom:527.600000pt;}
.y59_c00352{bottom:534.533333pt;}
.y1f_c00352{bottom:543.866667pt;}
.y58_c00352{bottom:547.600000pt;}
.y1e_c00352{bottom:559.866667pt;}
.y57_c00352{bottom:560.666667pt;}
.y1d_c00352{bottom:575.600000pt;}
.y56_c00352{bottom:576.933333pt;}
.y55_c00352{bottom:589.733333pt;}
.y1c_c00352{bottom:591.600000pt;}
.y54_c00352{bottom:602.533333pt;}
.y1b_c00352{bottom:607.600000pt;}
.y53_c00352{bottom:615.333333pt;}
.y1a_c00352{bottom:623.333333pt;}
.y52_c00352{bottom:628.400000pt;}
.y19_c00352{bottom:639.333333pt;}
.y51_c00352{bottom:640.933333pt;}
.y18_c00352{bottom:655.066667pt;}
.y50_c00352{bottom:657.866667pt;}
.y4f_c00352{bottom:670.933333pt;}
.y17_c00352{bottom:673.066667pt;}
.y4e_c00352{bottom:683.466667pt;}
.y16_c00352{bottom:686.133333pt;}
.y4d_c00352{bottom:696.266667pt;}
.y15_c00352{bottom:700.133333pt;}
.y4c_c00352{bottom:709.066667pt;}
.y14_c00352{bottom:712.933333pt;}
.y4b_c00352{bottom:722.533333pt;}
.y13_c00352{bottom:724.133333pt;}
.y4a_c00352{bottom:735.066667pt;}
.y12_c00352{bottom:739.866667pt;}
.y49_c00352{bottom:748.133333pt;}
.y11_c00352{bottom:756.533333pt;}
.y48_c00352{bottom:763.866667pt;}
.y10_c00352{bottom:772.533333pt;}
.y47_c00352{bottom:776.666667pt;}
.y46_c00352{bottom:789.466667pt;}
.yf_c00352{bottom:792.000000pt;}
.y45_c00352{bottom:802.533333pt;}
.ye_c00352{bottom:808.266667pt;}
.y44_c00352{bottom:815.333333pt;}
.yd_c00352{bottom:824.266667pt;}
.y43_c00352{bottom:827.866667pt;}
.yc_c00352{bottom:840.000000pt;}
.y42_c00352{bottom:840.666667pt;}
.y41_c00352{bottom:853.466667pt;}
.yb_c00352{bottom:856.000000pt;}
.y40_c00352{bottom:866.266667pt;}
.ya_c00352{bottom:871.733333pt;}
.y3f_c00352{bottom:879.066667pt;}
.y9_c00352{bottom:889.600000pt;}
.y3e_c00352{bottom:892.133333pt;}
.y8_c00352{bottom:907.200000pt;}
.y3d_c00352{bottom:908.133333pt;}
.y3c_c00352{bottom:921.600000pt;}
.y7_c00352{bottom:930.800000pt;}
.y3b_c00352{bottom:934.400000pt;}
.y6_c00352{bottom:946.533333pt;}
.y5_c00352{bottom:962.266667pt;}
.y4_c00352{bottom:978.533333pt;}
.y27_c00352{bottom:979.866667pt;}
.y3_c00352{bottom:994.266667pt;}
.y26_c00352{bottom:996.133333pt;}
.y1_c00352{bottom:1019.200000pt;}
.y2_c00352{bottom:1019.866667pt;}
.h8_c00352{height:32.000000pt;}
.h6_c00352{height:42.666667pt;}
.h7_c00352{height:48.000000pt;}
.h4_c00352{height:53.333333pt;}
.h3_c00352{height:58.666667pt;}
.h5_c00352{height:64.000000pt;}
.h2_c00352{height:69.333333pt;}
.h1_c00352{height:1130.666667pt;}
.h0_c00352{height:1130.879964pt;}
.w0_c00352{width:853.760009pt;}
.w1_c00352{width:854.000000pt;}
.x0_c00352{left:0.000000pt;}
.x2a_c00352{left:69.466667pt;}
.x66_c00352{left:71.066667pt;}
.x88_c00352{left:72.666667pt;}
.xa4_c00352{left:74.133333pt;}
.xaa_c00352{left:75.200000pt;}
.xb4_c00352{left:76.133333pt;}
.xbd_c00352{left:78.133333pt;}
.x3_c00352{left:82.266667pt;}
.x12_c00352{left:83.733333pt;}
.x37_c00352{left:84.933333pt;}
.x68_c00352{left:86.933333pt;}
.x79_c00352{left:87.866667pt;}
.x87_c00352{left:89.200000pt;}
.xbe_c00352{left:92.000000pt;}
.xa2_c00352{left:93.600000pt;}
.x5c_c00352{left:95.733333pt;}
.x2f_c00352{left:100.800000pt;}
.xa5_c00352{left:102.666667pt;}
.x6e_c00352{left:104.266667pt;}
.x2b_c00352{left:106.533333pt;}
.xb0_c00352{left:107.866667pt;}
.x22_c00352{left:109.600000pt;}
.x7a_c00352{left:111.333333pt;}
.x52_c00352{left:112.266667pt;}
.xa8_c00352{left:113.333333pt;}
.x38_c00352{left:114.666667pt;}
.x65_c00352{left:115.600000pt;}
.x1a_c00352{left:116.800000pt;}
.x74_c00352{left:120.266667pt;}
.x69_c00352{left:122.800000pt;}
.x53_c00352{left:123.733333pt;}
.x1b_c00352{left:125.066667pt;}
.xb_c00352{left:126.533333pt;}
.x23_c00352{left:127.866667pt;}
.x5f_c00352{left:129.866667pt;}
.x49_c00352{left:131.600000pt;}
.x43_c00352{left:132.533333pt;}
.x13_c00352{left:134.266667pt;}
.x6f_c00352{left:136.533333pt;}
.x83_c00352{left:137.600000pt;}
.x75_c00352{left:138.800000pt;}
.x4a_c00352{left:140.533333pt;}
.x4_c00352{left:141.466667pt;}
.x44_c00352{left:143.466667pt;}
.xb9_c00352{left:145.866667pt;}
.x39_c00352{left:147.333333pt;}
.xc_c00352{left:150.533333pt;}
.x8e_c00352{left:153.733333pt;}
.x14_c00352{left:156.400000pt;}
.x30_c00352{left:157.333333pt;}
.x89_c00352{left:158.400000pt;}
.x80_c00352{left:159.600000pt;}
.x54_c00352{left:160.800000pt;}
.xa0_c00352{left:161.733333pt;}
.x1c_c00352{left:162.800000pt;}
.x5_c00352{left:165.200000pt;}
.xbf_c00352{left:166.266667pt;}
.x3a_c00352{left:167.200000pt;}
.x4d_c00352{left:168.266667pt;}
.xba_c00352{left:170.133333pt;}
.xd_c00352{left:172.000000pt;}
.x45_c00352{left:173.600000pt;}
.xa3_c00352{left:176.800000pt;}
.x1d_c00352{left:177.866667pt;}
.x8f_c00352{left:180.266667pt;}
.x7f_c00352{left:181.466667pt;}
.x24_c00352{left:183.200000pt;}
.x84_c00352{left:184.666667pt;}
.xbc_c00352{left:187.200000pt;}
.x6a_c00352{left:188.400000pt;}
.xbb_c00352{left:189.333333pt;}
.x35_c00352{left:193.466667pt;}
.xb5_c00352{left:195.866667pt;}
.x3b_c00352{left:197.600000pt;}
.x25_c00352{left:198.933333pt;}
.x50_c00352{left:200.266667pt;}
.x40_c00352{left:202.400000pt;}
.x31_c00352{left:204.400000pt;}
.x55_c00352{left:206.266667pt;}
.xa9_c00352{left:208.000000pt;}
.x81_c00352{left:208.933333pt;}
.x15_c00352{left:209.866667pt;}
.x8a_c00352{left:211.200000pt;}
.x4e_c00352{left:212.800000pt;}
.x60_c00352{left:214.400000pt;}
.x6_c00352{left:215.466667pt;}
.xb1_c00352{left:218.533333pt;}
.x9d_c00352{left:219.466667pt;}
.x90_c00352{left:221.200000pt;}
.x2c_c00352{left:224.266667pt;}
.xe_c00352{left:225.466667pt;}
.x32_c00352{left:227.066667pt;}
.x6b_c00352{left:228.000000pt;}
.x26_c00352{left:229.600000pt;}
.x51_c00352{left:230.666667pt;}
.x7_c00352{left:231.733333pt;}
.x7b_c00352{left:232.666667pt;}
.x46_c00352{left:234.400000pt;}
.x1e_c00352{left:236.400000pt;}
.x61_c00352{left:238.400000pt;}
.xab_c00352{left:239.733333pt;}
.xb3_c00352{left:241.066667pt;}
.x76_c00352{left:244.133333pt;}
.x33_c00352{left:245.333333pt;}
.x27_c00352{left:246.533333pt;}
.x2d_c00352{left:248.266667pt;}
.x3c_c00352{left:250.000000pt;}
.xae_c00352{left:251.066667pt;}
.xc0_c00352{left:252.666667pt;}
.x8b_c00352{left:253.733333pt;}
.x7c_c00352{left:255.066667pt;}
.x56_c00352{left:256.533333pt;}
.x70_c00352{left:258.133333pt;}
.x47_c00352{left:260.933333pt;}
.x16_c00352{left:262.666667pt;}
.x85_c00352{left:264.666667pt;}
.xb6_c00352{left:266.133333pt;}
.x62_c00352{left:267.200000pt;}
.xa1_c00352{left:268.266667pt;}
.xa6_c00352{left:269.333333pt;}
.x17_c00352{left:270.400000pt;}
.x7d_c00352{left:272.000000pt;}
.x3d_c00352{left:273.733333pt;}
.xf_c00352{left:275.733333pt;}
.x4b_c00352{left:277.066667pt;}
.x48_c00352{left:279.200000pt;}
.xc1_c00352{left:280.533333pt;}
.x1_c00352{left:281.866667pt;}
.x36_c00352{left:282.800000pt;}
.x71_c00352{left:285.333333pt;}
.x8_c00352{left:286.800000pt;}
.x28_c00352{left:288.400000pt;}
.xac_c00352{left:289.866667pt;}
.x34_c00352{left:291.066667pt;}
.x4c_c00352{left:292.133333pt;}
.xb7_c00352{left:293.066667pt;}
.x41_c00352{left:294.800000pt;}
.x82_c00352{left:296.000000pt;}
.x1f_c00352{left:299.466667pt;}
.x77_c00352{left:300.800000pt;}
.x5d_c00352{left:302.400000pt;}
.x7e_c00352{left:303.333333pt;}
.x29_c00352{left:304.400000pt;}
.x67_c00352{left:305.466667pt;}
.x59_c00352{left:306.666667pt;}
.x3e_c00352{left:308.000000pt;}
.x9e_c00352{left:309.600000pt;}
.x8c_c00352{left:311.066667pt;}
.x63_c00352{left:313.333333pt;}
.x18_c00352{left:314.533333pt;}
.xaf_c00352{left:316.000000pt;}
.x2e_c00352{left:317.066667pt;}
.xa7_c00352{left:318.933333pt;}
.x10_c00352{left:321.466667pt;}
.x6c_c00352{left:322.400000pt;}
.x72_c00352{left:324.666667pt;}
.x57_c00352{left:326.800000pt;}
.x5a_c00352{left:327.733333pt;}
.x20_c00352{left:329.200000pt;}
.x4f_c00352{left:330.666667pt;}
.x5e_c00352{left:332.800000pt;}
.x86_c00352{left:333.733333pt;}
.x19_c00352{left:335.066667pt;}
.x3f_c00352{left:336.533333pt;}
.x9f_c00352{left:337.466667pt;}
.x91_c00352{left:338.533333pt;}
.x9_c00352{left:339.866667pt;}
.x21_c00352{left:341.333333pt;}
.x42_c00352{left:343.466667pt;}
.x6d_c00352{left:344.533333pt;}
.x11_c00352{left:346.133333pt;}
.x64_c00352{left:347.333333pt;}
.x8d_c00352{left:349.466667pt;}
.x73_c00352{left:351.600000pt;}
.xa_c00352{left:353.333333pt;}
.x58_c00352{left:356.933333pt;}
.x5b_c00352{left:358.400000pt;}
.xad_c00352{left:359.333333pt;}
.x78_c00352{left:362.133333pt;}
.xb2_c00352{left:365.066667pt;}
.xb8_c00352{left:366.000000pt;}
.xc2_c00352{left:384.933333pt;}
.xd0_c00352{left:386.000000pt;}
.x109_c00352{left:386.933333pt;}
.x110_c00352{left:388.000000pt;}
.x131_c00352{left:389.066667pt;}
.x13c_c00352{left:390.000000pt;}
.x148_c00352{left:391.200000pt;}
.x15c_c00352{left:392.400000pt;}
.x138_c00352{left:394.533333pt;}
.xd3_c00352{left:399.733333pt;}
.x92_c00352{left:400.933333pt;}
.x99_c00352{left:401.866667pt;}
.x14f_c00352{left:403.466667pt;}
.x154_c00352{left:404.800000pt;}
.xf3_c00352{left:406.933333pt;}
.x11d_c00352{left:409.600000pt;}
.xc3_c00352{left:411.200000pt;}
.xe2_c00352{left:412.133333pt;}
.xe6_c00352{left:415.733333pt;}
.x14b_c00352{left:416.666667pt;}
.xd1_c00352{left:418.000000pt;}
.xd4_c00352{left:419.866667pt;}
.x10a_c00352{left:422.133333pt;}
.xdb_c00352{left:423.466667pt;}
.xf0_c00352{left:424.800000pt;}
.x12a_c00352{left:426.266667pt;}
.x93_c00352{left:427.200000pt;}
.xe7_c00352{left:430.133333pt;}
.xc4_c00352{left:431.066667pt;}
.x15d_c00352{left:432.400000pt;}
.x13d_c00352{left:434.133333pt;}
.xd2_c00352{left:435.333333pt;}
.x12e_c00352{left:437.333333pt;}
.xd5_c00352{left:439.066667pt;}
.x16f_c00352{left:440.000000pt;}
.x11e_c00352{left:441.333333pt;}
.x103_c00352{left:443.733333pt;}
.x15e_c00352{left:446.133333pt;}
.xf4_c00352{left:449.466667pt;}
.x94_c00352{left:451.866667pt;}
.xdc_c00352{left:454.133333pt;}
.x164_c00352{left:455.066667pt;}
.x119_c00352{left:456.400000pt;}
.x9a_c00352{left:458.133333pt;}
.x135_c00352{left:459.733333pt;}
.x104_c00352{left:460.666667pt;}
.x132_c00352{left:462.000000pt;}
.xfa_c00352{left:464.133333pt;}
.x125_c00352{left:465.200000pt;}
.xca_c00352{left:468.133333pt;}
.x16a_c00352{left:470.133333pt;}
.x140_c00352{left:471.733333pt;}
.x113_c00352{left:472.666667pt;}
.x158_c00352{left:474.000000pt;}
.x12f_c00352{left:475.066667pt;}
.x14c_c00352{left:476.800000pt;}
.xff_c00352{left:478.400000pt;}
.xfb_c00352{left:479.466667pt;}
.xdd_c00352{left:481.066667pt;}
.x11f_c00352{left:482.666667pt;}
.x11a_c00352{left:484.266667pt;}
.xe8_c00352{left:485.733333pt;}
.x165_c00352{left:488.933333pt;}
.xf5_c00352{left:490.400000pt;}
.xd6_c00352{left:492.533333pt;}
.xc5_c00352{left:493.466667pt;}
.x111_c00352{left:494.933333pt;}
.xe9_c00352{left:497.200000pt;}
.xde_c00352{left:498.400000pt;}
.x139_c00352{left:499.866667pt;}
.x16b_c00352{left:500.933333pt;}
.xd7_c00352{left:502.400000pt;}
.x100_c00352{left:504.266667pt;}
.x168_c00352{left:505.200000pt;}
.x162_c00352{left:508.000000pt;}
.x10b_c00352{left:509.066667pt;}
.x14d_c00352{left:511.466667pt;}
.x149_c00352{left:512.800000pt;}
.xf1_c00352{left:514.133333pt;}
.xc6_c00352{left:515.200000pt;}
.xea_c00352{left:517.733333pt;}
.x167_c00352{left:518.666667pt;}
.x114_c00352{left:520.400000pt;}
.x10c_c00352{left:521.866667pt;}
.x9b_c00352{left:523.466667pt;}
.x13a_c00352{left:524.800000pt;}
.x95_c00352{left:525.733333pt;}
.xd8_c00352{left:528.266667pt;}
.x150_c00352{left:532.133333pt;}
.x127_c00352{left:533.733333pt;}
.x10e_c00352{left:535.200000pt;}
.x163_c00352{left:536.666667pt;}
.xf6_c00352{left:537.733333pt;}
.xcb_c00352{left:539.466667pt;}
.x128_c00352{left:540.800000pt;}
.x120_c00352{left:543.466667pt;}
.x12b_c00352{left:545.066667pt;}
.xdf_c00352{left:546.666667pt;}
.xfc_c00352{left:548.533333pt;}
.x142_c00352{left:549.466667pt;}
.xcc_c00352{left:550.400000pt;}
.x152_c00352{left:553.866667pt;}
.x105_c00352{left:556.000000pt;}
.x153_c00352{left:557.733333pt;}
.xf7_c00352{left:558.800000pt;}
.xc7_c00352{left:560.933333pt;}
.x144_c00352{left:562.933333pt;}
.x143_c00352{left:563.866667pt;}
.x121_c00352{left:564.933333pt;}
.x15f_c00352{left:566.133333pt;}
.x12c_c00352{left:567.466667pt;}
.xeb_c00352{left:569.333333pt;}
.xcd_c00352{left:570.933333pt;}
.x10d_c00352{left:572.133333pt;}
.x13e_c00352{left:573.333333pt;}
.x101_c00352{left:576.266667pt;}
.x115_c00352{left:577.733333pt;}
.x96_c00352{left:579.466667pt;}
.xe3_c00352{left:580.800000pt;}
.x15a_c00352{left:582.533333pt;}
.x155_c00352{left:584.666667pt;}
.x133_c00352{left:585.733333pt;}
.x160_c00352{left:587.200000pt;}
.x126_c00352{left:588.133333pt;}
.xc8_c00352{left:589.733333pt;}
.xf8_c00352{left:591.066667pt;}
.x11b_c00352{left:592.666667pt;}
.xec_c00352{left:594.266667pt;}
.x145_c00352{left:595.600000pt;}
.x13b_c00352{left:596.800000pt;}
.x9c_c00352{left:597.733333pt;}
.x97_c00352{left:599.600000pt;}
.x16d_c00352{left:601.733333pt;}
.x156_c00352{left:603.600000pt;}
.x141_c00352{left:604.533333pt;}
.x166_c00352{left:605.733333pt;}
.x10f_c00352{left:608.133333pt;}
.xf2_c00352{left:609.466667pt;}
.x14e_c00352{left:611.200000pt;}
.xe4_c00352{left:612.800000pt;}
.x112_c00352{left:614.000000pt;}
.x12d_c00352{left:615.733333pt;}
.x136_c00352{left:617.200000pt;}
.xce_c00352{left:618.666667pt;}
.x124_c00352{left:620.800000pt;}
.x106_c00352{left:622.800000pt;}
.x129_c00352{left:624.666667pt;}
.x122_c00352{left:625.733333pt;}
.xed_c00352{left:627.200000pt;}
.xfd_c00352{left:628.133333pt;}
.x102_c00352{left:629.333333pt;}
.x116_c00352{left:631.200000pt;}
.x146_c00352{left:632.400000pt;}
.xe0_c00352{left:633.333333pt;}
.x130_c00352{left:635.733333pt;}
.x15b_c00352{left:637.200000pt;}
.x134_c00352{left:638.266667pt;}
.xd9_c00352{left:639.733333pt;}
.x16e_c00352{left:642.000000pt;}
.x117_c00352{left:643.333333pt;}
.xcf_c00352{left:644.933333pt;}
.x161_c00352{left:646.133333pt;}
.xee_c00352{left:649.866667pt;}
.xf9_c00352{left:651.200000pt;}
.x107_c00352{left:653.200000pt;}
.x170_c00352{left:654.666667pt;}
.x11c_c00352{left:656.400000pt;}
.x16c_c00352{left:657.600000pt;}
.x159_c00352{left:659.066667pt;}
.x2_c00352{left:660.133333pt;}
.xef_c00352{left:662.933333pt;}
.xc9_c00352{left:664.000000pt;}
.x123_c00352{left:666.000000pt;}
.xfe_c00352{left:667.466667pt;}
.x137_c00352{left:668.400000pt;}
.x108_c00352{left:671.466667pt;}
.x98_c00352{left:672.933333pt;}
.xda_c00352{left:674.000000pt;}
.xe1_c00352{left:675.200000pt;}
.x14a_c00352{left:677.200000pt;}
.x147_c00352{left:678.533333pt;}
.x169_c00352{left:680.266667pt;}
.xe5_c00352{left:683.866667pt;}
.x118_c00352{left:684.933333pt;}
.x13f_c00352{left:686.400000pt;}
.x157_c00352{left:687.466667pt;}
.x151_c00352{left:696.533333pt;}
}





/* 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_c00353 {
    display:none;
  }
  .loading-indicator_c00353.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00353 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_c00353 { 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_c00353" -> "#page-container .classname_c00353")
 */
.pf_c00353 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00353 { /* 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_c00353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00353 { /* 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_c00353 { /* 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_c00353 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00353 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00353 {overflow:visible;}
  }
}
.c_c00353 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00353 { /* 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_c00353:after { /* webkit #35443 */
  content: '';
}
.t_c00353:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00353 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 */
}
.__c00353 { /* 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_c00353 { /* info for Javascript */
  display:none;
}
.l_c00353 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00353 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00353 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00353: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_c00353 {
    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_c00353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00353.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_c00353 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00353;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.000000;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;}
.mf0_c00353{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mb_c00353{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.me7_c00353{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m133_c00353{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00353{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00353{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m117_c00353{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m123_c00353{transform:matrix(0.072750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00353{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00353{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.me9_c00353{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m16_c00353{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00353{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md2_c00353{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m43_c00353{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00353{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mac_c00353{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m92_c00353{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00353{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00353{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00353{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00353{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00353{transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);}
.m102_c00353{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m45_c00353{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m104_c00353{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00353{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.maf_c00353{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00353{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mee_c00353{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00353{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00353{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me_c00353{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7_c00353{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.meb_c00353{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.mca_c00353{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m101_c00353{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.mef_c00353{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.mce_c00353{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mec_c00353{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00353{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00353{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m62_c00353{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m113_c00353{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m12_c00353{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m126_c00353{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m103_c00353{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mea_c00353{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00353{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m66_c00353{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m48_c00353{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00353{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.me5_c00353{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00353{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00353{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00353{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m25_c00353{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m97_c00353{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m63_c00353{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00353{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00353{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me3_c00353{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m134_c00353{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00353{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00353{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00353{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m114_c00353{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m34_c00353{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00353{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md8_c00353{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00353{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00353{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m60_c00353{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m30_c00353{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m44_c00353{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m138_c00353{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m132_c00353{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m89_c00353{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m40_c00353{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m108_c00353{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m137_c00353{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m65_c00353{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m95_c00353{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00353{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mda_c00353{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00353{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00353{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00353{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md_c00353{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00353{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m96_c00353{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m82_c00353{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8_c00353{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00353{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00353{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m135_c00353{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00353{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00353{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m47_c00353{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m22_c00353{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00353{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m130_c00353{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m73_c00353{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00353{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m78_c00353{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m26_c00353{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00353{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me8_c00353{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m90_c00353{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00353{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m64_c00353{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00353{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.md6_c00353{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00353{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00353{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m98_c00353{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00353{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00353{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00353{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md9_c00353{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m55_c00353{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m136_c00353{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00353{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00353{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m61_c00353{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m69_c00353{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00353{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00353{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m46_c00353{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00353{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m91_c00353{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m41_c00353{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m79_c00353{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m52_c00353{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m50_c00353{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m21_c00353{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m31_c00353{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00353{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00353{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00353{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m81_c00353{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m68_c00353{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m131_c00353{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m112_c00353{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00353{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m128_c00353{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m14_c00353{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m28_c00353{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m35_c00353{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m18_c00353{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00353{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m58_c00353{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m83_c00353{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma_c00353{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m20_c00353{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m11_c00353{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m27_c00353{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00353{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00353{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m54_c00353{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m13_c00353{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m24_c00353{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00353{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00353{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m39_c00353{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m127_c00353{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m42_c00353{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.med_c00353{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00353{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00353{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m100_c00353{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00353{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00353{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00353{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00353{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m32_c00353{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00353{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00353{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00353{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m118_c00353{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00353{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00353{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mc_c00353{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m57_c00353{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m49_c00353{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00353{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00353{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00353{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m122_c00353{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00353{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m38_c00353{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.md3_c00353{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m33_c00353{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00353{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m59_c00353{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00353{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m36_c00353{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m80_c00353{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me1_c00353{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00353{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00353{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m71_c00353{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00353{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00353{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m29_c00353{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00353{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m51_c00353{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00353{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00353{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mad_c00353{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m88_c00353{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00353{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00353{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mba_c00353{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m76_c00353{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m125_c00353{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mae_c00353{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m75_c00353{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00353{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.maa_c00353{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00353{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m67_c00353{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m23_c00353{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00353{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m109_c00353{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00353{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m129_c00353{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mab_c00353{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md7_c00353{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me0_c00353{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00353{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m94_c00353{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.me2_c00353{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00353{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00353{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m85_c00353{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md4_c00353{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00353{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m53_c00353{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00353{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00353{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m86_c00353{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m93_c00353{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10_c00353{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00353{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m72_c00353{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00353{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17_c00353{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m124_c00353{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m87_c00353{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.me6_c00353{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00353{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.md0_c00353{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m107_c00353{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mde_c00353{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00353{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m56_c00353{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m106_c00353{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00353{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00353{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m111_c00353{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00353{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00353{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.md1_c00353{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m115_c00353{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00353{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m99_c00353{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m84_c00353{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00353{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m77_c00353{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m37_c00353{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00353{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m110_c00353{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00353{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m74_c00353{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00353{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m116_c00353{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf_c00353{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00353{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.me4_c00353{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mff_c00353{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00353{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00353{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00353{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m70_c00353{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00353{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.md5_c00353{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m121_c00353{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00353{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00353{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00353{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00353{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00353{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00353{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00353{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00353{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m2_c00353{transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00353{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00353{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m5_c00353{transform:matrix(0.372250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00353{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00353{transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m105_c00353{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00353{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m119_c00353{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00353{transform:matrix(0.575500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575500,0.000000,0.000000,0.250000,0,0);}
.m120_c00353{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls5_c00353{letter-spacing:0.000000px;}
.ls2_c00353{letter-spacing:48.125000px;}
.ls3_c00353{letter-spacing:55.714286px;}
.ls1_c00353{letter-spacing:59.285714px;}
.ls4_c00353{letter-spacing:65.360656px;}
.ls0_c00353{letter-spacing:70.000000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{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__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00353{word-spacing:-100.000000px;}
.wsc_c00353{word-spacing:-98.360656px;}
.ws5_c00353{word-spacing:-89.285714px;}
.wsb_c00353{word-spacing:-85.714286px;}
.wsa_c00353{word-spacing:-78.125000px;}
.ws1_c00353{word-spacing:-4.841924px;}
.ws0_c00353{word-spacing:-4.650572px;}
.wsf_c00353{word-spacing:0.000000px;}
.ws2_c00353{word-spacing:6.250000px;}
.ws9_c00353{word-spacing:18.125000px;}
.wse_c00353{word-spacing:25.714286px;}
.ws7_c00353{word-spacing:29.285714px;}
.ws3_c00353{word-spacing:31.598253px;}
.ws6_c00353{word-spacing:44.166667px;}
.wsd_c00353{word-spacing:48.503817px;}
.ws8_c00353{word-spacing:64.375000px;}
._0_c00353{margin-left:-70.000000px;}
._7_c00353{margin-left:-65.360656px;}
._2_c00353{margin-left:-59.285714px;}
._6_c00353{margin-left:-55.714286px;}
._4_c00353{margin-left:-48.125000px;}
._1_c00353{margin-left:-3.571429px;}
._5_c00353{width:3.571429px;}
._3_c00353{width:64.642857px;}
.fc0_c00353{color:transparent;}
.fs8_c00353{font-size:24.000000px;}
.fs6_c00353{font-size:36.000000px;}
.fs5_c00353{font-size:48.000000px;}
.fs4_c00353{font-size:54.000000px;}
.fs3_c00353{font-size:60.000000px;}
.fs2_c00353{font-size:66.000000px;}
.fs0_c00353{font-size:72.000000px;}
.fs1_c00353{font-size:78.000000px;}
.fs7_c00353{font-size:90.000000px;}
.y0_c00353{bottom:0.000000px;}
.y66_c00353{bottom:183.900000px;}
.y33_c00353{bottom:193.650000px;}
.y32_c00353{bottom:200.100000px;}
.y65_c00353{bottom:201.600000px;}
.y31_c00353{bottom:213.450000px;}
.y64_c00353{bottom:219.600000px;}
.y30_c00353{bottom:227.400000px;}
.y63_c00353{bottom:237.600000px;}
.y2f_c00353{bottom:255.450000px;}
.y62_c00353{bottom:255.900000px;}
.y2e_c00353{bottom:270.600000px;}
.y61_c00353{bottom:273.900000px;}
.y2d_c00353{bottom:284.700000px;}
.y60_c00353{bottom:291.900000px;}
.y2c_c00353{bottom:299.100000px;}
.y2b_c00353{bottom:317.400000px;}
.y5f_c00353{bottom:318.900000px;}
.y2a_c00353{bottom:331.500000px;}
.y5e_c00353{bottom:331.800000px;}
.y5d_c00353{bottom:347.700000px;}
.y5c_c00353{bottom:361.050000px;}
.y5b_c00353{bottom:376.950000px;}
.y29_c00353{bottom:383.400000px;}
.y5a_c00353{bottom:390.900000px;}
.y28_c00353{bottom:401.700000px;}
.y59_c00353{bottom:406.050000px;}
.y27_c00353{bottom:419.400000px;}
.y58_c00353{bottom:419.850000px;}
.y57_c00353{bottom:435.300000px;}
.y26_c00353{bottom:437.700000px;}
.y56_c00353{bottom:448.950000px;}
.y25_c00353{bottom:455.400000px;}
.y55_c00353{bottom:465.150000px;}
.y24_c00353{bottom:473.400000px;}
.y54_c00353{bottom:478.500000px;}
.y53_c00353{bottom:494.100000px;}
.y23_c00353{bottom:503.250000px;}
.y52_c00353{bottom:508.800000px;}
.y22_c00353{bottom:522.750000px;}
.y51_c00353{bottom:523.500000px;}
.y50_c00353{bottom:536.700000px;}
.y21_c00353{bottom:543.300000px;}
.y4f_c00353{bottom:552.900000px;}
.y20_c00353{bottom:563.400000px;}
.y4e_c00353{bottom:575.550000px;}
.y1f_c00353{bottom:581.400000px;}
.y4d_c00353{bottom:596.100000px;}
.y1e_c00353{bottom:600.000000px;}
.y4c_c00353{bottom:612.300000px;}
.y1d_c00353{bottom:621.300000px;}
.y4b_c00353{bottom:630.000000px;}
.y1c_c00353{bottom:639.300000px;}
.y1b_c00353{bottom:660.000000px;}
.y4a_c00353{bottom:660.900000px;}
.y1a_c00353{bottom:679.500000px;}
.y49_c00353{bottom:679.650000px;}
.y19_c00353{bottom:697.200000px;}
.y48_c00353{bottom:697.950000px;}
.y18_c00353{bottom:715.200000px;}
.y47_c00353{bottom:715.950000px;}
.y17_c00353{bottom:733.200000px;}
.y46_c00353{bottom:733.650000px;}
.y16_c00353{bottom:750.900000px;}
.y45_c00353{bottom:751.950000px;}
.y44_c00353{bottom:769.650000px;}
.y15_c00353{bottom:770.400000px;}
.y43_c00353{bottom:789.750000px;}
.y14_c00353{bottom:790.950000px;}
.y42_c00353{bottom:810.300000px;}
.y13_c00353{bottom:811.050000px;}
.y12_c00353{bottom:832.800000px;}
.y41_c00353{bottom:846.000000px;}
.y11_c00353{bottom:853.650000px;}
.y10_c00353{bottom:871.950000px;}
.y40_c00353{bottom:880.650000px;}
.yf_c00353{bottom:893.550000px;}
.y3f_c00353{bottom:899.250000px;}
.ye_c00353{bottom:912.300000px;}
.yd_c00353{bottom:930.300000px;}
.y3e_c00353{bottom:932.850000px;}
.yc_c00353{bottom:952.950000px;}
.y3d_c00353{bottom:953.400000px;}
.yb_c00353{bottom:969.150000px;}
.y3c_c00353{bottom:971.700000px;}
.ya_c00353{bottom:983.550000px;}
.y3b_c00353{bottom:994.650000px;}
.y9_c00353{bottom:995.850000px;}
.y8_c00353{bottom:1005.900000px;}
.y7_c00353{bottom:1014.900000px;}
.y3a_c00353{bottom:1015.500000px;}
.y39_c00353{bottom:1033.800000px;}
.y6_c00353{bottom:1037.550000px;}
.y38_c00353{bottom:1051.500000px;}
.y5_c00353{bottom:1062.450000px;}
.y37_c00353{bottom:1069.500000px;}
.y4_c00353{bottom:1083.300000px;}
.y36_c00353{bottom:1087.500000px;}
.y35_c00353{bottom:1105.200000px;}
.y3_c00353{bottom:1117.800000px;}
.y34_c00353{bottom:1123.200000px;}
.y1_c00353{bottom:1140.150000px;}
.y2_c00353{bottom:1147.050000px;}
.ha_c00353{height:24.000000px;}
.h8_c00353{height:36.000000px;}
.h7_c00353{height:48.000000px;}
.h6_c00353{height:54.000000px;}
.h5_c00353{height:60.000000px;}
.h4_c00353{height:66.000000px;}
.h2_c00353{height:72.000000px;}
.h3_c00353{height:78.000000px;}
.h9_c00353{height:90.000000px;}
.h1_c00353{height:1276.500000px;}
.h0_c00353{height:1276.559967px;}
.w0_c00353{width:960.480010px;}
.w1_c00353{width:960.750000px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:181.800000px;}
.x5_c00353{left:184.650000px;}
.x10_c00353{left:186.450000px;}
.xc_c00353{left:190.200000px;}
.x71_c00353{left:193.650000px;}
.x8d_c00353{left:195.000000px;}
.x20_c00353{left:201.750000px;}
.x26_c00353{left:202.800000px;}
.xd_c00353{left:204.600000px;}
.x18_c00353{left:205.650000px;}
.x44_c00353{left:207.000000px;}
.x61_c00353{left:208.350000px;}
.x6b_c00353{left:210.300000px;}
.x78_c00353{left:211.950000px;}
.x1b_c00353{left:216.300000px;}
.x92_c00353{left:221.100000px;}
.x28_c00353{left:222.450000px;}
.x3b_c00353{left:223.500000px;}
.x3c_c00353{left:225.000000px;}
.x3f_c00353{left:226.500000px;}
.x6c_c00353{left:227.850000px;}
.x52_c00353{left:231.300000px;}
.x11_c00353{left:232.950000px;}
.x8e_c00353{left:236.400000px;}
.x16_c00353{left:239.100000px;}
.xe_c00353{left:240.900000px;}
.x55_c00353{left:244.200000px;}
.x72_c00353{left:246.900000px;}
.x62_c00353{left:250.050000px;}
.x21_c00353{left:252.150000px;}
.x1c_c00353{left:254.400000px;}
.x3_c00353{left:256.650000px;}
.x5a_c00353{left:257.850000px;}
.x36_c00353{left:259.500000px;}
.x56_c00353{left:264.000000px;}
.x2f_c00353{left:265.500000px;}
.x17_c00353{left:267.600000px;}
.x65_c00353{left:268.800000px;}
.x1d_c00353{left:273.450000px;}
.x5b_c00353{left:275.550000px;}
.x57_c00353{left:277.650000px;}
.x7d_c00353{left:279.300000px;}
.x69_c00353{left:280.800000px;}
.x29_c00353{left:282.600000px;}
.x74_c00353{left:283.950000px;}
.x8f_c00353{left:285.750000px;}
.xf_c00353{left:287.700000px;}
.x31_c00353{left:289.050000px;}
.x6_c00353{left:291.150000px;}
.x22_c00353{left:292.800000px;}
.x37_c00353{left:294.750000px;}
.x6d_c00353{left:297.300000px;}
.x12_c00353{left:298.500000px;}
.x79_c00353{left:301.500000px;}
.x19_c00353{left:303.300000px;}
.x32_c00353{left:305.250000px;}
.x40_c00353{left:311.850000px;}
.x3d_c00353{left:312.900000px;}
.x58_c00353{left:314.700000px;}
.x38_c00353{left:316.650000px;}
.x5c_c00353{left:320.250000px;}
.x2d_c00353{left:322.650000px;}
.x4e_c00353{left:324.450000px;}
.x27_c00353{left:325.950000px;}
.x8a_c00353{left:329.850000px;}
.x1a_c00353{left:332.100000px;}
.x5e_c00353{left:335.400000px;}
.x81_c00353{left:337.650000px;}
.x7_c00353{left:338.700000px;}
.x45_c00353{left:343.500000px;}
.x7b_c00353{left:345.900000px;}
.x8_c00353{left:347.400000px;}
.x86_c00353{left:348.450000px;}
.x66_c00353{left:350.850000px;}
.x82_c00353{left:354.150000px;}
.x83_c00353{left:357.600000px;}
.x23_c00353{left:360.900000px;}
.x7e_c00353{left:362.850000px;}
.x59_c00353{left:364.050000px;}
.x39_c00353{left:365.250000px;}
.x4a_c00353{left:367.350000px;}
.x30_c00353{left:369.900000px;}
.x13_c00353{left:371.250000px;}
.x6a_c00353{left:373.800000px;}
.x87_c00353{left:375.150000px;}
.x33_c00353{left:377.550000px;}
.x75_c00353{left:378.600000px;}
.x5d_c00353{left:380.400000px;}
.x7f_c00353{left:382.650000px;}
.x4_c00353{left:384.450000px;}
.x9_c00353{left:387.750000px;}
.x94_c00353{left:389.100000px;}
.x46_c00353{left:390.300000px;}
.x53_c00353{left:391.500000px;}
.x4f_c00353{left:393.150000px;}
.x96_c00353{left:395.400000px;}
.x7a_c00353{left:401.700000px;}
.x2a_c00353{left:403.200000px;}
.x90_c00353{left:405.300000px;}
.x3a_c00353{left:406.350000px;}
.x14_c00353{left:409.050000px;}
.x88_c00353{left:410.850000px;}
.x41_c00353{left:418.050000px;}
.x63_c00353{left:419.250000px;}
.x84_c00353{left:420.300000px;}
.x6e_c00353{left:421.500000px;}
.x7c_c00353{left:422.700000px;}
.x24_c00353{left:423.900000px;}
.x67_c00353{left:425.700000px;}
.xa_c00353{left:429.150000px;}
.x2_c00353{left:430.200000px;}
.x73_c00353{left:431.250000px;}
.x47_c00353{left:432.750000px;}
.x50_c00353{left:434.250000px;}
.x80_c00353{left:438.450000px;}
.x76_c00353{left:440.100000px;}
.x5f_c00353{left:442.650000px;}
.x68_c00353{left:447.000000px;}
.x4b_c00353{left:448.350000px;}
.x85_c00353{left:451.650000px;}
.x1e_c00353{left:454.200000px;}
.x2e_c00353{left:456.600000px;}
.x89_c00353{left:457.650000px;}
.x25_c00353{left:459.150000px;}
.x3e_c00353{left:460.200000px;}
.x8b_c00353{left:462.150000px;}
.x6f_c00353{left:464.100000px;}
.x60_c00353{left:465.750000px;}
.x93_c00353{left:466.800000px;}
.x4c_c00353{left:468.450000px;}
.x2b_c00353{left:472.650000px;}
.x91_c00353{left:474.000000px;}
.x48_c00353{left:476.700000px;}
.x34_c00353{left:479.100000px;}
.xb_c00353{left:482.850000px;}
.x15_c00353{left:486.750000px;}
.x42_c00353{left:489.300000px;}
.x2c_c00353{left:490.350000px;}
.x64_c00353{left:492.300000px;}
.x51_c00353{left:493.650000px;}
.x77_c00353{left:494.850000px;}
.x54_c00353{left:497.550000px;}
.x35_c00353{left:498.900000px;}
.x70_c00353{left:500.100000px;}
.x8c_c00353{left:502.050000px;}
.x1f_c00353{left:503.850000px;}
.x43_c00353{left:507.300000px;}
.x49_c00353{left:509.850000px;}
.x4d_c00353{left:522.750000px;}
.x95_c00353{left:525.450000px;}
.xc8_c00353{left:544.350000px;}
.xdc_c00353{left:548.700000px;}
.x125_c00353{left:550.500000px;}
.xa0_c00353{left:561.300000px;}
.x97_c00353{left:562.350000px;}
.xf2_c00353{left:563.850000px;}
.xed_c00353{left:565.050000px;}
.xfb_c00353{left:566.250000px;}
.x127_c00353{left:568.950000px;}
.x118_c00353{left:576.300000px;}
.x111_c00353{left:577.500000px;}
.xcd_c00353{left:578.850000px;}
.xd1_c00353{left:580.350000px;}
.xc1_c00353{left:582.150000px;}
.xf8_c00353{left:587.550000px;}
.xf6_c00353{left:591.150000px;}
.xdd_c00353{left:592.950000px;}
.xee_c00353{left:594.900000px;}
.xaf_c00353{left:596.850000px;}
.x119_c00353{left:598.650000px;}
.x112_c00353{left:599.850000px;}
.xbb_c00353{left:601.800000px;}
.xff_c00353{left:603.900000px;}
.xc2_c00353{left:605.850000px;}
.xef_c00353{left:607.800000px;}
.xc9_c00353{left:608.850000px;}
.x104_c00353{left:609.900000px;}
.x10c_c00353{left:611.400000px;}
.xa1_c00353{left:612.750000px;}
.xb5_c00353{left:614.850000px;}
.xb0_c00353{left:616.650000px;}
.x11a_c00353{left:618.450000px;}
.x12a_c00353{left:622.050000px;}
.xd5_c00353{left:623.250000px;}
.x100_c00353{left:624.750000px;}
.xe8_c00353{left:626.250000px;}
.x134_c00353{left:627.450000px;}
.x114_c00353{left:629.100000px;}
.xd2_c00353{left:631.500000px;}
.xa9_c00353{left:633.450000px;}
.x122_c00353{left:636.000000px;}
.x11e_c00353{left:641.250000px;}
.x124_c00353{left:642.900000px;}
.xe9_c00353{left:643.950000px;}
.xf9_c00353{left:645.150000px;}
.xa2_c00353{left:646.650000px;}
.xfc_c00353{left:647.850000px;}
.xf0_c00353{left:649.200000px;}
.xdb_c00353{left:651.600000px;}
.xb6_c00353{left:652.950000px;}
.xea_c00353{left:654.000000px;}
.xaa_c00353{left:656.550000px;}
.xce_c00353{left:657.600000px;}
.xb1_c00353{left:659.550000px;}
.xf3_c00353{left:661.500000px;}
.xc3_c00353{left:663.150000px;}
.x113_c00353{left:664.500000px;}
.xbc_c00353{left:665.850000px;}
.x98_c00353{left:667.500000px;}
.x131_c00353{left:668.550000px;}
.xca_c00353{left:671.100000px;}
.xd3_c00353{left:672.150000px;}
.x105_c00353{left:674.400000px;}
.x115_c00353{left:677.700000px;}
.x101_c00353{left:679.050000px;}
.x120_c00353{left:680.100000px;}
.xb2_c00353{left:681.150000px;}
.x109_c00353{left:683.850000px;}
.x10e_c00353{left:685.950000px;}
.x99_c00353{left:687.000000px;}
.xbd_c00353{left:688.500000px;}
.x117_c00353{left:691.500000px;}
.x128_c00353{left:693.600000px;}
.xe0_c00353{left:695.250000px;}
.x132_c00353{left:696.600000px;}
.xcf_c00353{left:700.050000px;}
.xd9_c00353{left:701.100000px;}
.xa3_c00353{left:702.900000px;}
.xeb_c00353{left:704.400000px;}
.xcb_c00353{left:705.600000px;}
.xab_c00353{left:706.650000px;}
.xd6_c00353{left:709.350000px;}
.xda_c00353{left:714.000000px;}
.xcc_c00353{left:715.350000px;}
.xde_c00353{left:717.900000px;}
.xc4_c00353{left:721.200000px;}
.xe1_c00353{left:722.550000px;}
.x121_c00353{left:723.600000px;}
.x9a_c00353{left:725.550000px;}
.x130_c00353{left:728.100000px;}
.x106_c00353{left:730.800000px;}
.xb7_c00353{left:732.450000px;}
.x12d_c00353{left:733.500000px;}
.x102_c00353{left:734.550000px;}
.x10a_c00353{left:737.850000px;}
.xd7_c00353{left:738.900000px;}
.xbe_c00353{left:739.950000px;}
.xe2_c00353{left:742.050000px;}
.xa4_c00353{left:746.100000px;}
.x123_c00353{left:749.100000px;}
.x10f_c00353{left:752.250000px;}
.x9b_c00353{left:754.050000px;}
.x103_c00353{left:755.100000px;}
.xa5_c00353{left:757.650000px;}
.xec_c00353{left:759.150000px;}
.x116_c00353{left:760.500000px;}
.x12b_c00353{left:761.700000px;}
.xac_c00353{left:762.750000px;}
.x11b_c00353{left:764.550000px;}
.x9c_c00353{left:766.650000px;}
.xd8_c00353{left:767.700000px;}
.xc5_c00353{left:770.100000px;}
.xf4_c00353{left:771.900000px;}
.xf7_c00353{left:774.000000px;}
.xfd_c00353{left:776.400000px;}
.xa6_c00353{left:777.450000px;}
.x12c_c00353{left:778.950000px;}
.x135_c00353{left:780.150000px;}
.xb3_c00353{left:782.700000px;}
.xad_c00353{left:784.050000px;}
.x133_c00353{left:786.300000px;}
.x10b_c00353{left:787.500000px;}
.xb8_c00353{left:789.750000px;}
.xfa_c00353{left:794.850000px;}
.x110_c00353{left:796.800000px;}
.xb4_c00353{left:799.200000px;}
.xd0_c00353{left:802.050000px;}
.xf1_c00353{left:803.700000px;}
.x9d_c00353{left:806.250000px;}
.x107_c00353{left:807.900000px;}
.xdf_c00353{left:808.950000px;}
.xe3_c00353{left:810.750000px;}
.xbf_c00353{left:815.250000px;}
.xb9_c00353{left:816.750000px;}
.xc6_c00353{left:818.100000px;}
.x129_c00353{left:823.950000px;}
.xae_c00353{left:826.200000px;}
.xe4_c00353{left:828.450000px;}
.xa7_c00353{left:829.950000px;}
.x12e_c00353{left:834.600000px;}
.xf5_c00353{left:835.950000px;}
.xc0_c00353{left:838.350000px;}
.x126_c00353{left:843.900000px;}
.xba_c00353{left:847.350000px;}
.x11f_c00353{left:848.700000px;}
.x11c_c00353{left:849.750000px;}
.xa8_c00353{left:851.550000px;}
.xe5_c00353{left:855.150000px;}
.xd4_c00353{left:859.050000px;}
.x9e_c00353{left:860.550000px;}
.xfe_c00353{left:862.050000px;}
.xc7_c00353{left:863.100000px;}
.xe6_c00353{left:867.000000px;}
.x11d_c00353{left:871.050000px;}
.x9f_c00353{left:872.400000px;}
.x108_c00353{left:873.450000px;}
.x10d_c00353{left:876.150000px;}
.xe7_c00353{left:877.500000px;}
.x12f_c00353{left:887.400000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls5_c00353{letter-spacing:0.000000pt;}
.ls2_c00353{letter-spacing:42.777778pt;}
.ls3_c00353{letter-spacing:49.523810pt;}
.ls1_c00353{letter-spacing:52.698413pt;}
.ls4_c00353{letter-spacing:58.098361pt;}
.ls0_c00353{letter-spacing:62.222222pt;}
.ws4_c00353{word-spacing:-88.888889pt;}
.wsc_c00353{word-spacing:-87.431694pt;}
.ws5_c00353{word-spacing:-79.365079pt;}
.wsb_c00353{word-spacing:-76.190476pt;}
.wsa_c00353{word-spacing:-69.444444pt;}
.ws1_c00353{word-spacing:-4.303933pt;}
.ws0_c00353{word-spacing:-4.133842pt;}
.wsf_c00353{word-spacing:0.000000pt;}
.ws2_c00353{word-spacing:5.555556pt;}
.ws9_c00353{word-spacing:16.111111pt;}
.wse_c00353{word-spacing:22.857143pt;}
.ws7_c00353{word-spacing:26.031746pt;}
.ws3_c00353{word-spacing:28.087336pt;}
.ws6_c00353{word-spacing:39.259259pt;}
.wsd_c00353{word-spacing:43.114504pt;}
.ws8_c00353{word-spacing:57.222222pt;}
._0_c00353{margin-left:-62.222222pt;}
._7_c00353{margin-left:-58.098361pt;}
._2_c00353{margin-left:-52.698413pt;}
._6_c00353{margin-left:-49.523810pt;}
._4_c00353{margin-left:-42.777778pt;}
._1_c00353{margin-left:-3.174603pt;}
._5_c00353{width:3.174603pt;}
._3_c00353{width:57.460317pt;}
.fs8_c00353{font-size:21.333333pt;}
.fs6_c00353{font-size:32.000000pt;}
.fs5_c00353{font-size:42.666667pt;}
.fs4_c00353{font-size:48.000000pt;}
.fs3_c00353{font-size:53.333333pt;}
.fs2_c00353{font-size:58.666667pt;}
.fs0_c00353{font-size:64.000000pt;}
.fs1_c00353{font-size:69.333333pt;}
.fs7_c00353{font-size:80.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y66_c00353{bottom:163.466667pt;}
.y33_c00353{bottom:172.133333pt;}
.y32_c00353{bottom:177.866667pt;}
.y65_c00353{bottom:179.200000pt;}
.y31_c00353{bottom:189.733333pt;}
.y64_c00353{bottom:195.200000pt;}
.y30_c00353{bottom:202.133333pt;}
.y63_c00353{bottom:211.200000pt;}
.y2f_c00353{bottom:227.066667pt;}
.y62_c00353{bottom:227.466667pt;}
.y2e_c00353{bottom:240.533333pt;}
.y61_c00353{bottom:243.466667pt;}
.y2d_c00353{bottom:253.066667pt;}
.y60_c00353{bottom:259.466667pt;}
.y2c_c00353{bottom:265.866667pt;}
.y2b_c00353{bottom:282.133333pt;}
.y5f_c00353{bottom:283.466667pt;}
.y2a_c00353{bottom:294.666667pt;}
.y5e_c00353{bottom:294.933333pt;}
.y5d_c00353{bottom:309.066667pt;}
.y5c_c00353{bottom:320.933333pt;}
.y5b_c00353{bottom:335.066667pt;}
.y29_c00353{bottom:340.800000pt;}
.y5a_c00353{bottom:347.466667pt;}
.y28_c00353{bottom:357.066667pt;}
.y59_c00353{bottom:360.933333pt;}
.y27_c00353{bottom:372.800000pt;}
.y58_c00353{bottom:373.200000pt;}
.y57_c00353{bottom:386.933333pt;}
.y26_c00353{bottom:389.066667pt;}
.y56_c00353{bottom:399.066667pt;}
.y25_c00353{bottom:404.800000pt;}
.y55_c00353{bottom:413.466667pt;}
.y24_c00353{bottom:420.800000pt;}
.y54_c00353{bottom:425.333333pt;}
.y53_c00353{bottom:439.200000pt;}
.y23_c00353{bottom:447.333333pt;}
.y52_c00353{bottom:452.266667pt;}
.y22_c00353{bottom:464.666667pt;}
.y51_c00353{bottom:465.333333pt;}
.y50_c00353{bottom:477.066667pt;}
.y21_c00353{bottom:482.933333pt;}
.y4f_c00353{bottom:491.466667pt;}
.y20_c00353{bottom:500.800000pt;}
.y4e_c00353{bottom:511.600000pt;}
.y1f_c00353{bottom:516.800000pt;}
.y4d_c00353{bottom:529.866667pt;}
.y1e_c00353{bottom:533.333333pt;}
.y4c_c00353{bottom:544.266667pt;}
.y1d_c00353{bottom:552.266667pt;}
.y4b_c00353{bottom:560.000000pt;}
.y1c_c00353{bottom:568.266667pt;}
.y1b_c00353{bottom:586.666667pt;}
.y4a_c00353{bottom:587.466667pt;}
.y1a_c00353{bottom:604.000000pt;}
.y49_c00353{bottom:604.133333pt;}
.y19_c00353{bottom:619.733333pt;}
.y48_c00353{bottom:620.400000pt;}
.y18_c00353{bottom:635.733333pt;}
.y47_c00353{bottom:636.400000pt;}
.y17_c00353{bottom:651.733333pt;}
.y46_c00353{bottom:652.133333pt;}
.y16_c00353{bottom:667.466667pt;}
.y45_c00353{bottom:668.400000pt;}
.y44_c00353{bottom:684.133333pt;}
.y15_c00353{bottom:684.800000pt;}
.y43_c00353{bottom:702.000000pt;}
.y14_c00353{bottom:703.066667pt;}
.y42_c00353{bottom:720.266667pt;}
.y13_c00353{bottom:720.933333pt;}
.y12_c00353{bottom:740.266667pt;}
.y41_c00353{bottom:752.000000pt;}
.y11_c00353{bottom:758.800000pt;}
.y10_c00353{bottom:775.066667pt;}
.y40_c00353{bottom:782.800000pt;}
.yf_c00353{bottom:794.266667pt;}
.y3f_c00353{bottom:799.333333pt;}
.ye_c00353{bottom:810.933333pt;}
.yd_c00353{bottom:826.933333pt;}
.y3e_c00353{bottom:829.200000pt;}
.yc_c00353{bottom:847.066667pt;}
.y3d_c00353{bottom:847.466667pt;}
.yb_c00353{bottom:861.466667pt;}
.y3c_c00353{bottom:863.733333pt;}
.ya_c00353{bottom:874.266667pt;}
.y3b_c00353{bottom:884.133333pt;}
.y9_c00353{bottom:885.200000pt;}
.y8_c00353{bottom:894.133333pt;}
.y7_c00353{bottom:902.133333pt;}
.y3a_c00353{bottom:902.666667pt;}
.y39_c00353{bottom:918.933333pt;}
.y6_c00353{bottom:922.266667pt;}
.y38_c00353{bottom:934.666667pt;}
.y5_c00353{bottom:944.400000pt;}
.y37_c00353{bottom:950.666667pt;}
.y4_c00353{bottom:962.933333pt;}
.y36_c00353{bottom:966.666667pt;}
.y35_c00353{bottom:982.400000pt;}
.y3_c00353{bottom:993.600000pt;}
.y34_c00353{bottom:998.400000pt;}
.y1_c00353{bottom:1013.466667pt;}
.y2_c00353{bottom:1019.600000pt;}
.ha_c00353{height:21.333333pt;}
.h8_c00353{height:32.000000pt;}
.h7_c00353{height:42.666667pt;}
.h6_c00353{height:48.000000pt;}
.h5_c00353{height:53.333333pt;}
.h4_c00353{height:58.666667pt;}
.h2_c00353{height:64.000000pt;}
.h3_c00353{height:69.333333pt;}
.h9_c00353{height:80.000000pt;}
.h1_c00353{height:1134.666667pt;}
.h0_c00353{height:1134.719971pt;}
.w0_c00353{width:853.760009pt;}
.w1_c00353{width:854.000000pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:161.600000pt;}
.x5_c00353{left:164.133333pt;}
.x10_c00353{left:165.733333pt;}
.xc_c00353{left:169.066667pt;}
.x71_c00353{left:172.133333pt;}
.x8d_c00353{left:173.333333pt;}
.x20_c00353{left:179.333333pt;}
.x26_c00353{left:180.266667pt;}
.xd_c00353{left:181.866667pt;}
.x18_c00353{left:182.800000pt;}
.x44_c00353{left:184.000000pt;}
.x61_c00353{left:185.200000pt;}
.x6b_c00353{left:186.933333pt;}
.x78_c00353{left:188.400000pt;}
.x1b_c00353{left:192.266667pt;}
.x92_c00353{left:196.533333pt;}
.x28_c00353{left:197.733333pt;}
.x3b_c00353{left:198.666667pt;}
.x3c_c00353{left:200.000000pt;}
.x3f_c00353{left:201.333333pt;}
.x6c_c00353{left:202.533333pt;}
.x52_c00353{left:205.600000pt;}
.x11_c00353{left:207.066667pt;}
.x8e_c00353{left:210.133333pt;}
.x16_c00353{left:212.533333pt;}
.xe_c00353{left:214.133333pt;}
.x55_c00353{left:217.066667pt;}
.x72_c00353{left:219.466667pt;}
.x62_c00353{left:222.266667pt;}
.x21_c00353{left:224.133333pt;}
.x1c_c00353{left:226.133333pt;}
.x3_c00353{left:228.133333pt;}
.x5a_c00353{left:229.200000pt;}
.x36_c00353{left:230.666667pt;}
.x56_c00353{left:234.666667pt;}
.x2f_c00353{left:236.000000pt;}
.x17_c00353{left:237.866667pt;}
.x65_c00353{left:238.933333pt;}
.x1d_c00353{left:243.066667pt;}
.x5b_c00353{left:244.933333pt;}
.x57_c00353{left:246.800000pt;}
.x7d_c00353{left:248.266667pt;}
.x69_c00353{left:249.600000pt;}
.x29_c00353{left:251.200000pt;}
.x74_c00353{left:252.400000pt;}
.x8f_c00353{left:254.000000pt;}
.xf_c00353{left:255.733333pt;}
.x31_c00353{left:256.933333pt;}
.x6_c00353{left:258.800000pt;}
.x22_c00353{left:260.266667pt;}
.x37_c00353{left:262.000000pt;}
.x6d_c00353{left:264.266667pt;}
.x12_c00353{left:265.333333pt;}
.x79_c00353{left:268.000000pt;}
.x19_c00353{left:269.600000pt;}
.x32_c00353{left:271.333333pt;}
.x40_c00353{left:277.200000pt;}
.x3d_c00353{left:278.133333pt;}
.x58_c00353{left:279.733333pt;}
.x38_c00353{left:281.466667pt;}
.x5c_c00353{left:284.666667pt;}
.x2d_c00353{left:286.800000pt;}
.x4e_c00353{left:288.400000pt;}
.x27_c00353{left:289.733333pt;}
.x8a_c00353{left:293.200000pt;}
.x1a_c00353{left:295.200000pt;}
.x5e_c00353{left:298.133333pt;}
.x81_c00353{left:300.133333pt;}
.x7_c00353{left:301.066667pt;}
.x45_c00353{left:305.333333pt;}
.x7b_c00353{left:307.466667pt;}
.x8_c00353{left:308.800000pt;}
.x86_c00353{left:309.733333pt;}
.x66_c00353{left:311.866667pt;}
.x82_c00353{left:314.800000pt;}
.x83_c00353{left:317.866667pt;}
.x23_c00353{left:320.800000pt;}
.x7e_c00353{left:322.533333pt;}
.x59_c00353{left:323.600000pt;}
.x39_c00353{left:324.666667pt;}
.x4a_c00353{left:326.533333pt;}
.x30_c00353{left:328.800000pt;}
.x13_c00353{left:330.000000pt;}
.x6a_c00353{left:332.266667pt;}
.x87_c00353{left:333.466667pt;}
.x33_c00353{left:335.600000pt;}
.x75_c00353{left:336.533333pt;}
.x5d_c00353{left:338.133333pt;}
.x7f_c00353{left:340.133333pt;}
.x4_c00353{left:341.733333pt;}
.x9_c00353{left:344.666667pt;}
.x94_c00353{left:345.866667pt;}
.x46_c00353{left:346.933333pt;}
.x53_c00353{left:348.000000pt;}
.x4f_c00353{left:349.466667pt;}
.x96_c00353{left:351.466667pt;}
.x7a_c00353{left:357.066667pt;}
.x2a_c00353{left:358.400000pt;}
.x90_c00353{left:360.266667pt;}
.x3a_c00353{left:361.200000pt;}
.x14_c00353{left:363.600000pt;}
.x88_c00353{left:365.200000pt;}
.x41_c00353{left:371.600000pt;}
.x63_c00353{left:372.666667pt;}
.x84_c00353{left:373.600000pt;}
.x6e_c00353{left:374.666667pt;}
.x7c_c00353{left:375.733333pt;}
.x24_c00353{left:376.800000pt;}
.x67_c00353{left:378.400000pt;}
.xa_c00353{left:381.466667pt;}
.x2_c00353{left:382.400000pt;}
.x73_c00353{left:383.333333pt;}
.x47_c00353{left:384.666667pt;}
.x50_c00353{left:386.000000pt;}
.x80_c00353{left:389.733333pt;}
.x76_c00353{left:391.200000pt;}
.x5f_c00353{left:393.466667pt;}
.x68_c00353{left:397.333333pt;}
.x4b_c00353{left:398.533333pt;}
.x85_c00353{left:401.466667pt;}
.x1e_c00353{left:403.733333pt;}
.x2e_c00353{left:405.866667pt;}
.x89_c00353{left:406.800000pt;}
.x25_c00353{left:408.133333pt;}
.x3e_c00353{left:409.066667pt;}
.x8b_c00353{left:410.800000pt;}
.x6f_c00353{left:412.533333pt;}
.x60_c00353{left:414.000000pt;}
.x93_c00353{left:414.933333pt;}
.x4c_c00353{left:416.400000pt;}
.x2b_c00353{left:420.133333pt;}
.x91_c00353{left:421.333333pt;}
.x48_c00353{left:423.733333pt;}
.x34_c00353{left:425.866667pt;}
.xb_c00353{left:429.200000pt;}
.x15_c00353{left:432.666667pt;}
.x42_c00353{left:434.933333pt;}
.x2c_c00353{left:435.866667pt;}
.x64_c00353{left:437.600000pt;}
.x51_c00353{left:438.800000pt;}
.x77_c00353{left:439.866667pt;}
.x54_c00353{left:442.266667pt;}
.x35_c00353{left:443.466667pt;}
.x70_c00353{left:444.533333pt;}
.x8c_c00353{left:446.266667pt;}
.x1f_c00353{left:447.866667pt;}
.x43_c00353{left:450.933333pt;}
.x49_c00353{left:453.200000pt;}
.x4d_c00353{left:464.666667pt;}
.x95_c00353{left:467.066667pt;}
.xc8_c00353{left:483.866667pt;}
.xdc_c00353{left:487.733333pt;}
.x125_c00353{left:489.333333pt;}
.xa0_c00353{left:498.933333pt;}
.x97_c00353{left:499.866667pt;}
.xf2_c00353{left:501.200000pt;}
.xed_c00353{left:502.266667pt;}
.xfb_c00353{left:503.333333pt;}
.x127_c00353{left:505.733333pt;}
.x118_c00353{left:512.266667pt;}
.x111_c00353{left:513.333333pt;}
.xcd_c00353{left:514.533333pt;}
.xd1_c00353{left:515.866667pt;}
.xc1_c00353{left:517.466667pt;}
.xf8_c00353{left:522.266667pt;}
.xf6_c00353{left:525.466667pt;}
.xdd_c00353{left:527.066667pt;}
.xee_c00353{left:528.800000pt;}
.xaf_c00353{left:530.533333pt;}
.x119_c00353{left:532.133333pt;}
.x112_c00353{left:533.200000pt;}
.xbb_c00353{left:534.933333pt;}
.xff_c00353{left:536.800000pt;}
.xc2_c00353{left:538.533333pt;}
.xef_c00353{left:540.266667pt;}
.xc9_c00353{left:541.200000pt;}
.x104_c00353{left:542.133333pt;}
.x10c_c00353{left:543.466667pt;}
.xa1_c00353{left:544.666667pt;}
.xb5_c00353{left:546.533333pt;}
.xb0_c00353{left:548.133333pt;}
.x11a_c00353{left:549.733333pt;}
.x12a_c00353{left:552.933333pt;}
.xd5_c00353{left:554.000000pt;}
.x100_c00353{left:555.333333pt;}
.xe8_c00353{left:556.666667pt;}
.x134_c00353{left:557.733333pt;}
.x114_c00353{left:559.200000pt;}
.xd2_c00353{left:561.333333pt;}
.xa9_c00353{left:563.066667pt;}
.x122_c00353{left:565.333333pt;}
.x11e_c00353{left:570.000000pt;}
.x124_c00353{left:571.466667pt;}
.xe9_c00353{left:572.400000pt;}
.xf9_c00353{left:573.466667pt;}
.xa2_c00353{left:574.800000pt;}
.xfc_c00353{left:575.866667pt;}
.xf0_c00353{left:577.066667pt;}
.xdb_c00353{left:579.200000pt;}
.xb6_c00353{left:580.400000pt;}
.xea_c00353{left:581.333333pt;}
.xaa_c00353{left:583.600000pt;}
.xce_c00353{left:584.533333pt;}
.xb1_c00353{left:586.266667pt;}
.xf3_c00353{left:588.000000pt;}
.xc3_c00353{left:589.466667pt;}
.x113_c00353{left:590.666667pt;}
.xbc_c00353{left:591.866667pt;}
.x98_c00353{left:593.333333pt;}
.x131_c00353{left:594.266667pt;}
.xca_c00353{left:596.533333pt;}
.xd3_c00353{left:597.466667pt;}
.x105_c00353{left:599.466667pt;}
.x115_c00353{left:602.400000pt;}
.x101_c00353{left:603.600000pt;}
.x120_c00353{left:604.533333pt;}
.xb2_c00353{left:605.466667pt;}
.x109_c00353{left:607.866667pt;}
.x10e_c00353{left:609.733333pt;}
.x99_c00353{left:610.666667pt;}
.xbd_c00353{left:612.000000pt;}
.x117_c00353{left:614.666667pt;}
.x128_c00353{left:616.533333pt;}
.xe0_c00353{left:618.000000pt;}
.x132_c00353{left:619.200000pt;}
.xcf_c00353{left:622.266667pt;}
.xd9_c00353{left:623.200000pt;}
.xa3_c00353{left:624.800000pt;}
.xeb_c00353{left:626.133333pt;}
.xcb_c00353{left:627.200000pt;}
.xab_c00353{left:628.133333pt;}
.xd6_c00353{left:630.533333pt;}
.xda_c00353{left:634.666667pt;}
.xcc_c00353{left:635.866667pt;}
.xde_c00353{left:638.133333pt;}
.xc4_c00353{left:641.066667pt;}
.xe1_c00353{left:642.266667pt;}
.x121_c00353{left:643.200000pt;}
.x9a_c00353{left:644.933333pt;}
.x130_c00353{left:647.200000pt;}
.x106_c00353{left:649.600000pt;}
.xb7_c00353{left:651.066667pt;}
.x12d_c00353{left:652.000000pt;}
.x102_c00353{left:652.933333pt;}
.x10a_c00353{left:655.866667pt;}
.xd7_c00353{left:656.800000pt;}
.xbe_c00353{left:657.733333pt;}
.xe2_c00353{left:659.600000pt;}
.xa4_c00353{left:663.200000pt;}
.x123_c00353{left:665.866667pt;}
.x10f_c00353{left:668.666667pt;}
.x9b_c00353{left:670.266667pt;}
.x103_c00353{left:671.200000pt;}
.xa5_c00353{left:673.466667pt;}
.xec_c00353{left:674.800000pt;}
.x116_c00353{left:676.000000pt;}
.x12b_c00353{left:677.066667pt;}
.xac_c00353{left:678.000000pt;}
.x11b_c00353{left:679.600000pt;}
.x9c_c00353{left:681.466667pt;}
.xd8_c00353{left:682.400000pt;}
.xc5_c00353{left:684.533333pt;}
.xf4_c00353{left:686.133333pt;}
.xf7_c00353{left:688.000000pt;}
.xfd_c00353{left:690.133333pt;}
.xa6_c00353{left:691.066667pt;}
.x12c_c00353{left:692.400000pt;}
.x135_c00353{left:693.466667pt;}
.xb3_c00353{left:695.733333pt;}
.xad_c00353{left:696.933333pt;}
.x133_c00353{left:698.933333pt;}
.x10b_c00353{left:700.000000pt;}
.xb8_c00353{left:702.000000pt;}
.xfa_c00353{left:706.533333pt;}
.x110_c00353{left:708.266667pt;}
.xb4_c00353{left:710.400000pt;}
.xd0_c00353{left:712.933333pt;}
.xf1_c00353{left:714.400000pt;}
.x9d_c00353{left:716.666667pt;}
.x107_c00353{left:718.133333pt;}
.xdf_c00353{left:719.066667pt;}
.xe3_c00353{left:720.666667pt;}
.xbf_c00353{left:724.666667pt;}
.xb9_c00353{left:726.000000pt;}
.xc6_c00353{left:727.200000pt;}
.x129_c00353{left:732.400000pt;}
.xae_c00353{left:734.400000pt;}
.xe4_c00353{left:736.400000pt;}
.xa7_c00353{left:737.733333pt;}
.x12e_c00353{left:741.866667pt;}
.xf5_c00353{left:743.066667pt;}
.xc0_c00353{left:745.200000pt;}
.x126_c00353{left:750.133333pt;}
.xba_c00353{left:753.200000pt;}
.x11f_c00353{left:754.400000pt;}
.x11c_c00353{left:755.333333pt;}
.xa8_c00353{left:756.933333pt;}
.xe5_c00353{left:760.133333pt;}
.xd4_c00353{left:763.600000pt;}
.x9e_c00353{left:764.933333pt;}
.xfe_c00353{left:766.266667pt;}
.xc7_c00353{left:767.200000pt;}
.xe6_c00353{left:770.666667pt;}
.x11d_c00353{left:774.266667pt;}
.x9f_c00353{left:775.466667pt;}
.x108_c00353{left:776.400000pt;}
.x10d_c00353{left:778.800000pt;}
.xe7_c00353{left:780.000000pt;}
.x12f_c00353{left:788.800000pt;}
}





/* 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_c00354 {
    display:none;
  }
  .loading-indicator_c00354.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00354 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_c00354 { 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_c00354" -> "#page-container .classname_c00354")
 */
.pf_c00354 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00354 { /* 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_c00354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00354 { /* 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_c00354 { /* 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_c00354 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00354 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00354 {overflow:visible;}
  }
}
.c_c00354 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00354 { /* 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_c00354:after { /* webkit #35443 */
  content: '';
}
.t_c00354:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00354 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 */
}
.__c00354 { /* 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_c00354 { /* info for Javascript */
  display:none;
}
.l_c00354 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00354 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00354 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00354: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_c00354 {
    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_c00354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00354.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_c00354 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00354;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.000000;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;}
.ma0_c00354{transform:matrix(0.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007500,0.000000,0.000000,0.250000,0,0);}
.md3_c00354{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m20_c00354{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00354{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m61_c00354{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me4_c00354{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m91_c00354{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00354{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.me7_c00354{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m16_c00354{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00354{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m32_c00354{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me8_c00354{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m18_c00354{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00354{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mff_c00354{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00354{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.me5_c00354{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00354{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00354{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00354{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mba_c00354{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m63_c00354{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m85_c00354{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00354{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mac_c00354{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00354{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m57_c00354{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m24_c00354{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.meb_c00354{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m28_c00354{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m74_c00354{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m65_c00354{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00354{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00354{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m72_c00354{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m8_c00354{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00354{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00354{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m66_c00354{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00354{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00354{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me1_c00354{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m59_c00354{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00354{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m34_c00354{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00354{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00354{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m14_c00354{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m76_c00354{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.maa_c00354{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00354{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00354{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m67_c00354{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m49_c00354{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me6_c00354{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00354{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.maf_c00354{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00354{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m11_c00354{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00354{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m98_c00354{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00354{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mce_c00354{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m62_c00354{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00354{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m84_c00354{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00354{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m51_c00354{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m25_c00354{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m69_c00354{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m99_c00354{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me0_c00354{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m9_c00354{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mde_c00354{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.ma_c00354{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00354{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m75_c00354{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00354{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00354{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00354{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me2_c00354{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00354{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00354{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00354{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00354{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m27_c00354{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00354{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m36_c00354{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00354{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00354{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m45_c00354{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m56_c00354{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00354{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m26_c00354{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00354{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00354{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00354{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00354{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00354{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m55_c00354{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m58_c00354{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m23_c00354{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m35_c00354{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00354{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00354{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00354{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00354{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m97_c00354{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m73_c00354{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00354{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m33_c00354{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m71_c00354{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00354{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00354{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m46_c00354{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3_c00354{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00354{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m19_c00354{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00354{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00354{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m54_c00354{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mea_c00354{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m96_c00354{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m17_c00354{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mad_c00354{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00354{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m40_c00354{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00354{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00354{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7_c00354{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me3_c00354{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m38_c00354{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m41_c00354{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00354{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mec_c00354{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md7_c00354{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m12_c00354{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf_c00354{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m92_c00354{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00354{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mef_c00354{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m95_c00354{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md0_c00354{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00354{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00354{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m88_c00354{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m94_c00354{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m60_c00354{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m37_c00354{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00354{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00354{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00354{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m50_c00354{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00354{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6_c00354{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m93_c00354{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00354{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m48_c00354{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m77_c00354{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mc_c00354{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00354{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00354{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m90_c00354{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m86_c00354{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me9_c00354{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mb_c00354{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00354{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00354{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m39_c00354{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m5_c00354{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00354{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mae_c00354{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00354{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00354{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m31_c00354{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md8_c00354{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m13_c00354{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m44_c00354{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m10_c00354{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m53_c00354{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00354{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me_c00354{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00354{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00354{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m68_c00354{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md2_c00354{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00354{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mab_c00354{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00354{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m21_c00354{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m22_c00354{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m78_c00354{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m79_c00354{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m82_c00354{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m64_c00354{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00354{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m30_c00354{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00354{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m29_c00354{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md9_c00354{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m70_c00354{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m81_c00354{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00354{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m42_c00354{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.md_c00354{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00354{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00354{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mca_c00354{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m87_c00354{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00354{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00354{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m43_c00354{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00354{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00354{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00354{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m15_c00354{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m52_c00354{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00354{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00354{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00354{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00354{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m83_c00354{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00354{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00354{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m47_c00354{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00354{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md6_c00354{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00354{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00354{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mda_c00354{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m89_c00354{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00354{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m80_c00354{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md1_c00354{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00354{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.md5_c00354{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00354{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00354{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00354{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.md4_c00354{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mee_c00354{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00354{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00354{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00354{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00354{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00354{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00354{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00354{transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);}
.med_c00354{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00354{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00354{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls0_c00354{letter-spacing:0.000000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{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__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00354{word-spacing:-17.178082px;}
.ws1_c00354{word-spacing:-6.926417px;}
.ws5_c00354{word-spacing:-2.526652px;}
.ws0_c00354{word-spacing:-0.030928px;}
.wsa_c00354{word-spacing:0.000000px;}
.ws9_c00354{word-spacing:4.285714px;}
.ws7_c00354{word-spacing:4.736842px;}
.ws3_c00354{word-spacing:7.272727px;}
.ws4_c00354{word-spacing:8.638968px;}
.ws8_c00354{word-spacing:9.218750px;}
.ws6_c00354{word-spacing:17.442049px;}
.fc0_c00354{color:transparent;}
.fs4_c00354{font-size:48.000000px;}
.fs6_c00354{font-size:54.000000px;}
.fs3_c00354{font-size:60.000000px;}
.fs1_c00354{font-size:66.000000px;}
.fs2_c00354{font-size:72.000000px;}
.fs0_c00354{font-size:78.000000px;}
.fs5_c00354{font-size:570.000000px;}
.y0_c00354{bottom:0.000000px;}
.y6c_c00354{bottom:178.500000px;}
.y35_c00354{bottom:181.800000px;}
.y6b_c00354{bottom:196.950000px;}
.y34_c00354{bottom:200.100000px;}
.y6a_c00354{bottom:209.550000px;}
.y33_c00354{bottom:217.800000px;}
.y69_c00354{bottom:223.200000px;}
.y32_c00354{bottom:236.100000px;}
.y68_c00354{bottom:237.900000px;}
.y67_c00354{bottom:252.000000px;}
.y31_c00354{bottom:253.800000px;}
.y66_c00354{bottom:267.450000px;}
.y30_c00354{bottom:271.800000px;}
.y65_c00354{bottom:281.550000px;}
.y2f_c00354{bottom:289.800000px;}
.y64_c00354{bottom:296.700000px;}
.y2e_c00354{bottom:307.500000px;}
.y63_c00354{bottom:310.350000px;}
.y62_c00354{bottom:325.050000px;}
.y2d_c00354{bottom:325.200000px;}
.y61_c00354{bottom:340.500000px;}
.y2c_c00354{bottom:343.500000px;}
.y60_c00354{bottom:354.600000px;}
.y2b_c00354{bottom:368.400000px;}
.y5f_c00354{bottom:369.000000px;}
.y5e_c00354{bottom:382.650000px;}
.y2a_c00354{bottom:386.700000px;}
.y5d_c00354{bottom:397.800000px;}
.y29_c00354{bottom:408.600000px;}
.y28_c00354{bottom:426.300000px;}
.y5c_c00354{bottom:447.450000px;}
.y27_c00354{bottom:450.750000px;}
.y5b_c00354{bottom:465.450000px;}
.y26_c00354{bottom:468.750000px;}
.y5a_c00354{bottom:487.200000px;}
.y25_c00354{bottom:492.900000px;}
.y59_c00354{bottom:505.950000px;}
.y24_c00354{bottom:517.350000px;}
.y58_c00354{bottom:523.950000px;}
.y23_c00354{bottom:541.500000px;}
.y57_c00354{bottom:541.950000px;}
.y22_c00354{bottom:559.500000px;}
.y56_c00354{bottom:559.950000px;}
.y55_c00354{bottom:577.650000px;}
.y21_c00354{bottom:577.800000px;}
.y20_c00354{bottom:595.800000px;}
.y54_c00354{bottom:595.950000px;}
.y1f_c00354{bottom:613.500000px;}
.y53_c00354{bottom:613.950000px;}
.y1e_c00354{bottom:631.500000px;}
.y52_c00354{bottom:631.650000px;}
.y1d_c00354{bottom:649.500000px;}
.y51_c00354{bottom:649.950000px;}
.y1c_c00354{bottom:667.500000px;}
.y50_c00354{bottom:667.650000px;}
.y1b_c00354{bottom:685.500000px;}
.y4f_c00354{bottom:685.650000px;}
.y4e_c00354{bottom:703.350000px;}
.y1a_c00354{bottom:703.500000px;}
.y19_c00354{bottom:721.200000px;}
.y4d_c00354{bottom:721.350000px;}
.y18_c00354{bottom:738.900000px;}
.y4c_c00354{bottom:739.350000px;}
.y17_c00354{bottom:756.900000px;}
.y4b_c00354{bottom:757.350000px;}
.y16_c00354{bottom:774.600000px;}
.y4a_c00354{bottom:775.050000px;}
.y15_c00354{bottom:792.600000px;}
.y49_c00354{bottom:793.350000px;}
.y14_c00354{bottom:810.600000px;}
.y48_c00354{bottom:811.050000px;}
.y13_c00354{bottom:828.600000px;}
.y47_c00354{bottom:829.050000px;}
.y12_c00354{bottom:846.300000px;}
.y46_c00354{bottom:850.950000px;}
.y11_c00354{bottom:864.000000px;}
.y45_c00354{bottom:868.950000px;}
.y10_c00354{bottom:882.000000px;}
.y44_c00354{bottom:886.950000px;}
.yf_c00354{bottom:900.000000px;}
.y43_c00354{bottom:904.650000px;}
.ye_c00354{bottom:918.000000px;}
.y42_c00354{bottom:922.950000px;}
.yd_c00354{bottom:936.300000px;}
.y41_c00354{bottom:940.950000px;}
.y37_c00354{bottom:946.050000px;}
.yc_c00354{bottom:954.000000px;}
.y40_c00354{bottom:958.650000px;}
.yb_c00354{bottom:972.000000px;}
.y3f_c00354{bottom:976.350000px;}
.ya_c00354{bottom:990.000000px;}
.y3e_c00354{bottom:994.350000px;}
.y9_c00354{bottom:1007.700000px;}
.y3d_c00354{bottom:1017.000000px;}
.y8_c00354{bottom:1025.700000px;}
.y3c_c00354{bottom:1034.700000px;}
.y7_c00354{bottom:1043.700000px;}
.y3b_c00354{bottom:1057.200000px;}
.y36_c00354{bottom:1060.950000px;}
.y6_c00354{bottom:1061.250000px;}
.y3a_c00354{bottom:1074.900000px;}
.y5_c00354{bottom:1079.250000px;}
.y4_c00354{bottom:1096.950000px;}
.y39_c00354{bottom:1097.250000px;}
.y3_c00354{bottom:1114.950000px;}
.y38_c00354{bottom:1115.250000px;}
.y2_c00354{bottom:1141.650000px;}
.y1_c00354{bottom:1141.950000px;}
.h6_c00354{height:48.000000px;}
.h8_c00354{height:54.000000px;}
.h5_c00354{height:60.000000px;}
.h3_c00354{height:66.000000px;}
.h4_c00354{height:72.000000px;}
.h2_c00354{height:78.000000px;}
.h7_c00354{height:570.000000px;}
.h1_c00354{height:1272.000000px;}
.h0_c00354{height:1272.239960px;}
.w0_c00354{width:960.480010px;}
.w1_c00354{width:960.750000px;}
.x0_c00354{left:0.000000px;}
.x3_c00354{left:85.650000px;}
.x1b_c00354{left:87.450000px;}
.x7b_c00354{left:88.800000px;}
.xa2_c00354{left:90.900000px;}
.x1c_c00354{left:100.050000px;}
.x4c_c00354{left:102.750000px;}
.xa8_c00354{left:105.600000px;}
.x51_c00354{left:106.650000px;}
.x6b_c00354{left:108.450000px;}
.x8e_c00354{left:109.650000px;}
.x55_c00354{left:110.850000px;}
.x2d_c00354{left:114.300000px;}
.x83_c00354{left:118.350000px;}
.x74_c00354{left:120.150000px;}
.xb_c00354{left:121.950000px;}
.x28_c00354{left:123.450000px;}
.x5a_c00354{left:124.500000px;}
.xa3_c00354{left:128.400000px;}
.x2e_c00354{left:129.750000px;}
.x5e_c00354{left:131.250000px;}
.x7c_c00354{left:132.300000px;}
.x48_c00354{left:133.350000px;}
.x80_c00354{left:137.550000px;}
.x52_c00354{left:138.750000px;}
.xa0_c00354{left:140.250000px;}
.x22_c00354{left:142.200000px;}
.x44_c00354{left:144.150000px;}
.x8f_c00354{left:145.350000px;}
.x92_c00354{left:146.550000px;}
.x4_c00354{left:148.350000px;}
.x32_c00354{left:149.700000px;}
.xa4_c00354{left:151.050000px;}
.x6c_c00354{left:153.150000px;}
.x45_c00354{left:154.200000px;}
.xa9_c00354{left:155.250000px;}
.x12_c00354{left:157.950000px;}
.x8d_c00354{left:159.300000px;}
.x40_c00354{left:160.500000px;}
.x29_c00354{left:162.300000px;}
.xc_c00354{left:163.650000px;}
.x4d_c00354{left:165.000000px;}
.x95_c00354{left:166.500000px;}
.x84_c00354{left:167.700000px;}
.x9a_c00354{left:168.750000px;}
.x6f_c00354{left:170.850000px;}
.x33_c00354{left:173.100000px;}
.x86_c00354{left:174.150000px;}
.x88_c00354{left:175.200000px;}
.x1d_c00354{left:176.400000px;}
.x64_c00354{left:180.000000px;}
.x7a_c00354{left:183.600000px;}
.x2f_c00354{left:184.800000px;}
.x23_c00354{left:187.500000px;}
.x34_c00354{left:189.300000px;}
.x3c_c00354{left:192.450000px;}
.x5f_c00354{left:194.250000px;}
.x99_c00354{left:195.450000px;}
.x1e_c00354{left:196.500000px;}
.x93_c00354{left:197.700000px;}
.x13_c00354{left:199.050000px;}
.x72_c00354{left:201.600000px;}
.x70_c00354{left:202.950000px;}
.xd_c00354{left:205.350000px;}
.x68_c00354{left:206.700000px;}
.x9e_c00354{left:207.900000px;}
.x89_c00354{left:209.700000px;}
.x53_c00354{left:210.750000px;}
.x35_c00354{left:212.700000px;}
.x14_c00354{left:214.950000px;}
.x81_c00354{left:218.250000px;}
.x5_c00354{left:220.350000px;}
.x56_c00354{left:221.850000px;}
.x36_c00354{left:223.200000px;}
.x49_c00354{left:224.850000px;}
.x7d_c00354{left:226.200000px;}
.xe_c00354{left:229.050000px;}
.xa6_c00354{left:230.100000px;}
.x8a_c00354{left:231.300000px;}
.x6d_c00354{left:233.100000px;}
.x4e_c00354{left:235.200000px;}
.x54_c00354{left:237.000000px;}
.x87_c00354{left:238.200000px;}
.x24_c00354{left:239.400000px;}
.x65_c00354{left:241.200000px;}
.x3d_c00354{left:242.250000px;}
.x96_c00354{left:243.900000px;}
.x6_c00354{left:245.250000px;}
.xa1_c00354{left:246.750000px;}
.x8b_c00354{left:247.800000px;}
.x61_c00354{left:250.350000px;}
.x2a_c00354{left:252.000000px;}
.x15_c00354{left:253.500000px;}
.x37_c00354{left:255.300000px;}
.x77_c00354{left:258.450000px;}
.xf_c00354{left:259.950000px;}
.x16_c00354{left:262.500000px;}
.x85_c00354{left:264.600000px;}
.x9b_c00354{left:266.100000px;}
.x7_c00354{left:267.150000px;}
.x41_c00354{left:268.500000px;}
.x69_c00354{left:270.900000px;}
.x82_c00354{left:271.950000px;}
.x30_c00354{left:273.300000px;}
.x38_c00354{left:276.150000px;}
.x9c_c00354{left:277.800000px;}
.x1f_c00354{left:279.000000px;}
.x73_c00354{left:280.500000px;}
.x4f_c00354{left:281.700000px;}
.x6e_c00354{left:284.250000px;}
.x62_c00354{left:285.600000px;}
.x90_c00354{left:286.650000px;}
.x20_c00354{left:288.750000px;}
.x17_c00354{left:289.800000px;}
.x66_c00354{left:291.300000px;}
.x57_c00354{left:292.350000px;}
.x4a_c00354{left:296.100000px;}
.x5b_c00354{left:297.900000px;}
.x94_c00354{left:300.000000px;}
.x7e_c00354{left:302.550000px;}
.x75_c00354{left:305.100000px;}
.x46_c00354{left:306.900000px;}
.x91_c00354{left:308.550000px;}
.x2b_c00354{left:309.600000px;}
.x5c_c00354{left:312.300000px;}
.x1_c00354{left:313.950000px;}
.x97_c00354{left:315.900000px;}
.x3e_c00354{left:317.850000px;}
.x25_c00354{left:319.200000px;}
.x39_c00354{left:320.850000px;}
.x60_c00354{left:323.550000px;}
.x98_c00354{left:325.350000px;}
.x8_c00354{left:327.300000px;}
.x18_c00354{left:328.350000px;}
.x6a_c00354{left:329.550000px;}
.xa5_c00354{left:330.600000px;}
.x58_c00354{left:331.950000px;}
.xa7_c00354{left:333.450000px;}
.x63_c00354{left:336.300000px;}
.x19_c00354{left:337.650000px;}
.x42_c00354{left:338.700000px;}
.x9f_c00354{left:341.100000px;}
.x26_c00354{left:342.300000px;}
.x10_c00354{left:346.350000px;}
.x78_c00354{left:347.400000px;}
.x9_c00354{left:349.200000px;}
.x9d_c00354{left:351.600000px;}
.x71_c00354{left:352.650000px;}
.x2c_c00354{left:353.850000px;}
.x50_c00354{left:356.550000px;}
.x67_c00354{left:357.900000px;}
.x3a_c00354{left:360.150000px;}
.x43_c00354{left:361.350000px;}
.x76_c00354{left:362.700000px;}
.x4b_c00354{left:363.750000px;}
.x79_c00354{left:367.500000px;}
.x31_c00354{left:369.750000px;}
.x27_c00354{left:374.400000px;}
.x1a_c00354{left:375.450000px;}
.x3b_c00354{left:377.100000px;}
.x7f_c00354{left:378.450000px;}
.x8c_c00354{left:380.250000px;}
.x3f_c00354{left:382.650000px;}
.xa_c00354{left:386.250000px;}
.x47_c00354{left:388.200000px;}
.x59_c00354{left:392.400000px;}
.x11_c00354{left:395.250000px;}
.x5d_c00354{left:396.300000px;}
.x21_c00354{left:417.150000px;}
.x148_c00354{left:426.900000px;}
.xf7_c00354{left:428.100000px;}
.x149_c00354{left:435.900000px;}
.x145_c00354{left:441.750000px;}
.x134_c00354{left:443.550000px;}
.xaa_c00354{left:445.650000px;}
.xb4_c00354{left:446.850000px;}
.x141_c00354{left:450.000000px;}
.x139_c00354{left:459.450000px;}
.x13e_c00354{left:460.800000px;}
.xbc_c00354{left:464.100000px;}
.xc5_c00354{left:465.450000px;}
.xc1_c00354{left:466.800000px;}
.xfd_c00354{left:468.450000px;}
.x120_c00354{left:470.250000px;}
.x122_c00354{left:471.600000px;}
.xf9_c00354{left:472.800000px;}
.xcc_c00354{left:474.600000px;}
.x130_c00354{left:475.950000px;}
.xe3_c00354{left:477.600000px;}
.xed_c00354{left:480.150000px;}
.xdb_c00354{left:481.500000px;}
.xc2_c00354{left:482.700000px;}
.x136_c00354{left:484.800000px;}
.xb5_c00354{left:486.450000px;}
.xab_c00354{left:487.800000px;}
.xe8_c00354{left:490.200000px;}
.x124_c00354{left:496.200000px;}
.xe4_c00354{left:498.450000px;}
.x108_c00354{left:499.950000px;}
.xfa_c00354{left:501.300000px;}
.xb6_c00354{left:502.650000px;}
.xac_c00354{left:504.300000px;}
.x102_c00354{left:507.000000px;}
.xcd_c00354{left:510.150000px;}
.xdc_c00354{left:511.800000px;}
.x111_c00354{left:513.750000px;}
.xe9_c00354{left:517.200000px;}
.x117_c00354{left:520.200000px;}
.x138_c00354{left:523.050000px;}
.xf3_c00354{left:525.750000px;}
.x143_c00354{left:527.400000px;}
.xbd_c00354{left:528.600000px;}
.x127_c00354{left:530.100000px;}
.xc6_c00354{left:532.050000px;}
.x137_c00354{left:534.150000px;}
.xad_c00354{left:538.200000px;}
.xc3_c00354{left:539.550000px;}
.x10e_c00354{left:543.000000px;}
.xd6_c00354{left:544.500000px;}
.x109_c00354{left:546.000000px;}
.xd1_c00354{left:548.400000px;}
.xae_c00354{left:550.500000px;}
.xbe_c00354{left:553.800000px;}
.xb7_c00354{left:555.150000px;}
.xc7_c00354{left:556.950000px;}
.x13d_c00354{left:558.000000px;}
.x121_c00354{left:559.200000px;}
.x118_c00354{left:560.250000px;}
.xee_c00354{left:561.450000px;}
.x103_c00354{left:563.550000px;}
.xd2_c00354{left:566.100000px;}
.xb8_c00354{left:567.450000px;}
.xe5_c00354{left:568.950000px;}
.xdd_c00354{left:570.150000px;}
.x146_c00354{left:571.500000px;}
.xea_c00354{left:572.700000px;}
.x131_c00354{left:573.900000px;}
.xfe_c00354{left:576.450000px;}
.xd7_c00354{left:579.000000px;}
.x11f_c00354{left:580.950000px;}
.xef_c00354{left:583.350000px;}
.x119_c00354{left:586.950000px;}
.xc4_c00354{left:588.900000px;}
.xaf_c00354{left:591.150000px;}
.xc8_c00354{left:592.200000px;}
.x115_c00354{left:594.150000px;}
.xce_c00354{left:596.550000px;}
.xde_c00354{left:598.200000px;}
.xff_c00354{left:599.550000px;}
.x128_c00354{left:600.600000px;}
.x13f_c00354{left:601.950000px;}
.xb0_c00354{left:603.450000px;}
.xfb_c00354{left:606.750000px;}
.x147_c00354{left:607.950000px;}
.xb9_c00354{left:609.150000px;}
.x10a_c00354{left:611.250000px;}
.x104_c00354{left:612.900000px;}
.x125_c00354{left:614.250000px;}
.x10f_c00354{left:616.800000px;}
.xdf_c00354{left:618.750000px;}
.x12b_c00354{left:619.950000px;}
.xe6_c00354{left:621.600000px;}
.xeb_c00354{left:623.400000px;}
.x129_c00354{left:624.750000px;}
.xf4_c00354{left:629.100000px;}
.xba_c00354{left:630.450000px;}
.x142_c00354{left:632.250000px;}
.x105_c00354{left:633.450000px;}
.x10b_c00354{left:636.450000px;}
.xc9_c00354{left:638.700000px;}
.xec_c00354{left:642.150000px;}
.xbf_c00354{left:643.200000px;}
.x12e_c00354{left:645.750000px;}
.x11a_c00354{left:647.100000px;}
.xd3_c00354{left:649.650000px;}
.x132_c00354{left:651.000000px;}
.xd8_c00354{left:653.100000px;}
.xf5_c00354{left:655.350000px;}
.xbb_c00354{left:657.450000px;}
.x13c_c00354{left:661.950000px;}
.x13a_c00354{left:664.050000px;}
.x12f_c00354{left:665.250000px;}
.x112_c00354{left:666.450000px;}
.x140_c00354{left:667.500000px;}
.x12c_c00354{left:668.850000px;}
.xb1_c00354{left:670.050000px;}
.xe0_c00354{left:672.000000px;}
.xcf_c00354{left:673.650000px;}
.x126_c00354{left:674.700000px;}
.xca_c00354{left:677.550000px;}
.x113_c00354{left:679.350000px;}
.x135_c00354{left:681.450000px;}
.xd9_c00354{left:684.450000px;}
.x12a_c00354{left:686.250000px;}
.xe1_c00354{left:687.450000px;}
.x11c_c00354{left:690.150000px;}
.xd4_c00354{left:691.350000px;}
.x116_c00354{left:692.400000px;}
.xf0_c00354{left:694.200000px;}
.xe7_c00354{left:697.950000px;}
.x11b_c00354{left:699.000000px;}
.x11d_c00354{left:702.900000px;}
.x106_c00354{left:704.700000px;}
.xcb_c00354{left:707.100000px;}
.x114_c00354{left:708.300000px;}
.x100_c00354{left:709.350000px;}
.x123_c00354{left:710.850000px;}
.xda_c00354{left:712.950000px;}
.xd5_c00354{left:715.500000px;}
.x13b_c00354{left:716.550000px;}
.xc0_c00354{left:717.750000px;}
.xf6_c00354{left:722.400000px;}
.xf1_c00354{left:724.500000px;}
.x144_c00354{left:725.700000px;}
.x10c_c00354{left:727.050000px;}
.xb2_c00354{left:728.400000px;}
.xf8_c00354{left:731.250000px;}
.xe2_c00354{left:732.450000px;}
.x133_c00354{left:734.100000px;}
.x2_c00354{left:737.700000px;}
.x107_c00354{left:740.400000px;}
.xb3_c00354{left:743.100000px;}
.xf2_c00354{left:745.800000px;}
.x10d_c00354{left:747.150000px;}
.xfc_c00354{left:748.500000px;}
.xd0_c00354{left:750.300000px;}
.x101_c00354{left:751.500000px;}
.x11e_c00354{left:753.300000px;}
.x110_c00354{left:755.100000px;}
.x12d_c00354{left:758.550000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws2_c00354{word-spacing:-15.269406pt;}
.ws1_c00354{word-spacing:-6.156815pt;}
.ws5_c00354{word-spacing:-2.245913pt;}
.ws0_c00354{word-spacing:-0.027491pt;}
.wsa_c00354{word-spacing:0.000000pt;}
.ws9_c00354{word-spacing:3.809524pt;}
.ws7_c00354{word-spacing:4.210526pt;}
.ws3_c00354{word-spacing:6.464646pt;}
.ws4_c00354{word-spacing:7.679083pt;}
.ws8_c00354{word-spacing:8.194444pt;}
.ws6_c00354{word-spacing:15.504043pt;}
.fs4_c00354{font-size:42.666667pt;}
.fs6_c00354{font-size:48.000000pt;}
.fs3_c00354{font-size:53.333333pt;}
.fs1_c00354{font-size:58.666667pt;}
.fs2_c00354{font-size:64.000000pt;}
.fs0_c00354{font-size:69.333333pt;}
.fs5_c00354{font-size:506.666667pt;}
.y0_c00354{bottom:0.000000pt;}
.y6c_c00354{bottom:158.666667pt;}
.y35_c00354{bottom:161.600000pt;}
.y6b_c00354{bottom:175.066667pt;}
.y34_c00354{bottom:177.866667pt;}
.y6a_c00354{bottom:186.266667pt;}
.y33_c00354{bottom:193.600000pt;}
.y69_c00354{bottom:198.400000pt;}
.y32_c00354{bottom:209.866667pt;}
.y68_c00354{bottom:211.466667pt;}
.y67_c00354{bottom:224.000000pt;}
.y31_c00354{bottom:225.600000pt;}
.y66_c00354{bottom:237.733333pt;}
.y30_c00354{bottom:241.600000pt;}
.y65_c00354{bottom:250.266667pt;}
.y2f_c00354{bottom:257.600000pt;}
.y64_c00354{bottom:263.733333pt;}
.y2e_c00354{bottom:273.333333pt;}
.y63_c00354{bottom:275.866667pt;}
.y62_c00354{bottom:288.933333pt;}
.y2d_c00354{bottom:289.066667pt;}
.y61_c00354{bottom:302.666667pt;}
.y2c_c00354{bottom:305.333333pt;}
.y60_c00354{bottom:315.200000pt;}
.y2b_c00354{bottom:327.466667pt;}
.y5f_c00354{bottom:328.000000pt;}
.y5e_c00354{bottom:340.133333pt;}
.y2a_c00354{bottom:343.733333pt;}
.y5d_c00354{bottom:353.600000pt;}
.y29_c00354{bottom:363.200000pt;}
.y28_c00354{bottom:378.933333pt;}
.y5c_c00354{bottom:397.733333pt;}
.y27_c00354{bottom:400.666667pt;}
.y5b_c00354{bottom:413.733333pt;}
.y26_c00354{bottom:416.666667pt;}
.y5a_c00354{bottom:433.066667pt;}
.y25_c00354{bottom:438.133333pt;}
.y59_c00354{bottom:449.733333pt;}
.y24_c00354{bottom:459.866667pt;}
.y58_c00354{bottom:465.733333pt;}
.y23_c00354{bottom:481.333333pt;}
.y57_c00354{bottom:481.733333pt;}
.y22_c00354{bottom:497.333333pt;}
.y56_c00354{bottom:497.733333pt;}
.y55_c00354{bottom:513.466667pt;}
.y21_c00354{bottom:513.600000pt;}
.y20_c00354{bottom:529.600000pt;}
.y54_c00354{bottom:529.733333pt;}
.y1f_c00354{bottom:545.333333pt;}
.y53_c00354{bottom:545.733333pt;}
.y1e_c00354{bottom:561.333333pt;}
.y52_c00354{bottom:561.466667pt;}
.y1d_c00354{bottom:577.333333pt;}
.y51_c00354{bottom:577.733333pt;}
.y1c_c00354{bottom:593.333333pt;}
.y50_c00354{bottom:593.466667pt;}
.y1b_c00354{bottom:609.333333pt;}
.y4f_c00354{bottom:609.466667pt;}
.y4e_c00354{bottom:625.200000pt;}
.y1a_c00354{bottom:625.333333pt;}
.y19_c00354{bottom:641.066667pt;}
.y4d_c00354{bottom:641.200000pt;}
.y18_c00354{bottom:656.800000pt;}
.y4c_c00354{bottom:657.200000pt;}
.y17_c00354{bottom:672.800000pt;}
.y4b_c00354{bottom:673.200000pt;}
.y16_c00354{bottom:688.533333pt;}
.y4a_c00354{bottom:688.933333pt;}
.y15_c00354{bottom:704.533333pt;}
.y49_c00354{bottom:705.200000pt;}
.y14_c00354{bottom:720.533333pt;}
.y48_c00354{bottom:720.933333pt;}
.y13_c00354{bottom:736.533333pt;}
.y47_c00354{bottom:736.933333pt;}
.y12_c00354{bottom:752.266667pt;}
.y46_c00354{bottom:756.400000pt;}
.y11_c00354{bottom:768.000000pt;}
.y45_c00354{bottom:772.400000pt;}
.y10_c00354{bottom:784.000000pt;}
.y44_c00354{bottom:788.400000pt;}
.yf_c00354{bottom:800.000000pt;}
.y43_c00354{bottom:804.133333pt;}
.ye_c00354{bottom:816.000000pt;}
.y42_c00354{bottom:820.400000pt;}
.yd_c00354{bottom:832.266667pt;}
.y41_c00354{bottom:836.400000pt;}
.y37_c00354{bottom:840.933333pt;}
.yc_c00354{bottom:848.000000pt;}
.y40_c00354{bottom:852.133333pt;}
.yb_c00354{bottom:864.000000pt;}
.y3f_c00354{bottom:867.866667pt;}
.ya_c00354{bottom:880.000000pt;}
.y3e_c00354{bottom:883.866667pt;}
.y9_c00354{bottom:895.733333pt;}
.y3d_c00354{bottom:904.000000pt;}
.y8_c00354{bottom:911.733333pt;}
.y3c_c00354{bottom:919.733333pt;}
.y7_c00354{bottom:927.733333pt;}
.y3b_c00354{bottom:939.733333pt;}
.y36_c00354{bottom:943.066667pt;}
.y6_c00354{bottom:943.333333pt;}
.y3a_c00354{bottom:955.466667pt;}
.y5_c00354{bottom:959.333333pt;}
.y4_c00354{bottom:975.066667pt;}
.y39_c00354{bottom:975.333333pt;}
.y3_c00354{bottom:991.066667pt;}
.y38_c00354{bottom:991.333333pt;}
.y2_c00354{bottom:1014.800000pt;}
.y1_c00354{bottom:1015.066667pt;}
.h6_c00354{height:42.666667pt;}
.h8_c00354{height:48.000000pt;}
.h5_c00354{height:53.333333pt;}
.h3_c00354{height:58.666667pt;}
.h4_c00354{height:64.000000pt;}
.h2_c00354{height:69.333333pt;}
.h7_c00354{height:506.666667pt;}
.h1_c00354{height:1130.666667pt;}
.h0_c00354{height:1130.879964pt;}
.w0_c00354{width:853.760009pt;}
.w1_c00354{width:854.000000pt;}
.x0_c00354{left:0.000000pt;}
.x3_c00354{left:76.133333pt;}
.x1b_c00354{left:77.733333pt;}
.x7b_c00354{left:78.933333pt;}
.xa2_c00354{left:80.800000pt;}
.x1c_c00354{left:88.933333pt;}
.x4c_c00354{left:91.333333pt;}
.xa8_c00354{left:93.866667pt;}
.x51_c00354{left:94.800000pt;}
.x6b_c00354{left:96.400000pt;}
.x8e_c00354{left:97.466667pt;}
.x55_c00354{left:98.533333pt;}
.x2d_c00354{left:101.600000pt;}
.x83_c00354{left:105.200000pt;}
.x74_c00354{left:106.800000pt;}
.xb_c00354{left:108.400000pt;}
.x28_c00354{left:109.733333pt;}
.x5a_c00354{left:110.666667pt;}
.xa3_c00354{left:114.133333pt;}
.x2e_c00354{left:115.333333pt;}
.x5e_c00354{left:116.666667pt;}
.x7c_c00354{left:117.600000pt;}
.x48_c00354{left:118.533333pt;}
.x80_c00354{left:122.266667pt;}
.x52_c00354{left:123.333333pt;}
.xa0_c00354{left:124.666667pt;}
.x22_c00354{left:126.400000pt;}
.x44_c00354{left:128.133333pt;}
.x8f_c00354{left:129.200000pt;}
.x92_c00354{left:130.266667pt;}
.x4_c00354{left:131.866667pt;}
.x32_c00354{left:133.066667pt;}
.xa4_c00354{left:134.266667pt;}
.x6c_c00354{left:136.133333pt;}
.x45_c00354{left:137.066667pt;}
.xa9_c00354{left:138.000000pt;}
.x12_c00354{left:140.400000pt;}
.x8d_c00354{left:141.600000pt;}
.x40_c00354{left:142.666667pt;}
.x29_c00354{left:144.266667pt;}
.xc_c00354{left:145.466667pt;}
.x4d_c00354{left:146.666667pt;}
.x95_c00354{left:148.000000pt;}
.x84_c00354{left:149.066667pt;}
.x9a_c00354{left:150.000000pt;}
.x6f_c00354{left:151.866667pt;}
.x33_c00354{left:153.866667pt;}
.x86_c00354{left:154.800000pt;}
.x88_c00354{left:155.733333pt;}
.x1d_c00354{left:156.800000pt;}
.x64_c00354{left:160.000000pt;}
.x7a_c00354{left:163.200000pt;}
.x2f_c00354{left:164.266667pt;}
.x23_c00354{left:166.666667pt;}
.x34_c00354{left:168.266667pt;}
.x3c_c00354{left:171.066667pt;}
.x5f_c00354{left:172.666667pt;}
.x99_c00354{left:173.733333pt;}
.x1e_c00354{left:174.666667pt;}
.x93_c00354{left:175.733333pt;}
.x13_c00354{left:176.933333pt;}
.x72_c00354{left:179.200000pt;}
.x70_c00354{left:180.400000pt;}
.xd_c00354{left:182.533333pt;}
.x68_c00354{left:183.733333pt;}
.x9e_c00354{left:184.800000pt;}
.x89_c00354{left:186.400000pt;}
.x53_c00354{left:187.333333pt;}
.x35_c00354{left:189.066667pt;}
.x14_c00354{left:191.066667pt;}
.x81_c00354{left:194.000000pt;}
.x5_c00354{left:195.866667pt;}
.x56_c00354{left:197.200000pt;}
.x36_c00354{left:198.400000pt;}
.x49_c00354{left:199.866667pt;}
.x7d_c00354{left:201.066667pt;}
.xe_c00354{left:203.600000pt;}
.xa6_c00354{left:204.533333pt;}
.x8a_c00354{left:205.600000pt;}
.x6d_c00354{left:207.200000pt;}
.x4e_c00354{left:209.066667pt;}
.x54_c00354{left:210.666667pt;}
.x87_c00354{left:211.733333pt;}
.x24_c00354{left:212.800000pt;}
.x65_c00354{left:214.400000pt;}
.x3d_c00354{left:215.333333pt;}
.x96_c00354{left:216.800000pt;}
.x6_c00354{left:218.000000pt;}
.xa1_c00354{left:219.333333pt;}
.x8b_c00354{left:220.266667pt;}
.x61_c00354{left:222.533333pt;}
.x2a_c00354{left:224.000000pt;}
.x15_c00354{left:225.333333pt;}
.x37_c00354{left:226.933333pt;}
.x77_c00354{left:229.733333pt;}
.xf_c00354{left:231.066667pt;}
.x16_c00354{left:233.333333pt;}
.x85_c00354{left:235.200000pt;}
.x9b_c00354{left:236.533333pt;}
.x7_c00354{left:237.466667pt;}
.x41_c00354{left:238.666667pt;}
.x69_c00354{left:240.800000pt;}
.x82_c00354{left:241.733333pt;}
.x30_c00354{left:242.933333pt;}
.x38_c00354{left:245.466667pt;}
.x9c_c00354{left:246.933333pt;}
.x1f_c00354{left:248.000000pt;}
.x73_c00354{left:249.333333pt;}
.x4f_c00354{left:250.400000pt;}
.x6e_c00354{left:252.666667pt;}
.x62_c00354{left:253.866667pt;}
.x90_c00354{left:254.800000pt;}
.x20_c00354{left:256.666667pt;}
.x17_c00354{left:257.600000pt;}
.x66_c00354{left:258.933333pt;}
.x57_c00354{left:259.866667pt;}
.x4a_c00354{left:263.200000pt;}
.x5b_c00354{left:264.800000pt;}
.x94_c00354{left:266.666667pt;}
.x7e_c00354{left:268.933333pt;}
.x75_c00354{left:271.200000pt;}
.x46_c00354{left:272.800000pt;}
.x91_c00354{left:274.266667pt;}
.x2b_c00354{left:275.200000pt;}
.x5c_c00354{left:277.600000pt;}
.x1_c00354{left:279.066667pt;}
.x97_c00354{left:280.800000pt;}
.x3e_c00354{left:282.533333pt;}
.x25_c00354{left:283.733333pt;}
.x39_c00354{left:285.200000pt;}
.x60_c00354{left:287.600000pt;}
.x98_c00354{left:289.200000pt;}
.x8_c00354{left:290.933333pt;}
.x18_c00354{left:291.866667pt;}
.x6a_c00354{left:292.933333pt;}
.xa5_c00354{left:293.866667pt;}
.x58_c00354{left:295.066667pt;}
.xa7_c00354{left:296.400000pt;}
.x63_c00354{left:298.933333pt;}
.x19_c00354{left:300.133333pt;}
.x42_c00354{left:301.066667pt;}
.x9f_c00354{left:303.200000pt;}
.x26_c00354{left:304.266667pt;}
.x10_c00354{left:307.866667pt;}
.x78_c00354{left:308.800000pt;}
.x9_c00354{left:310.400000pt;}
.x9d_c00354{left:312.533333pt;}
.x71_c00354{left:313.466667pt;}
.x2c_c00354{left:314.533333pt;}
.x50_c00354{left:316.933333pt;}
.x67_c00354{left:318.133333pt;}
.x3a_c00354{left:320.133333pt;}
.x43_c00354{left:321.200000pt;}
.x76_c00354{left:322.400000pt;}
.x4b_c00354{left:323.333333pt;}
.x79_c00354{left:326.666667pt;}
.x31_c00354{left:328.666667pt;}
.x27_c00354{left:332.800000pt;}
.x1a_c00354{left:333.733333pt;}
.x3b_c00354{left:335.200000pt;}
.x7f_c00354{left:336.400000pt;}
.x8c_c00354{left:338.000000pt;}
.x3f_c00354{left:340.133333pt;}
.xa_c00354{left:343.333333pt;}
.x47_c00354{left:345.066667pt;}
.x59_c00354{left:348.800000pt;}
.x11_c00354{left:351.333333pt;}
.x5d_c00354{left:352.266667pt;}
.x21_c00354{left:370.800000pt;}
.x148_c00354{left:379.466667pt;}
.xf7_c00354{left:380.533333pt;}
.x149_c00354{left:387.466667pt;}
.x145_c00354{left:392.666667pt;}
.x134_c00354{left:394.266667pt;}
.xaa_c00354{left:396.133333pt;}
.xb4_c00354{left:397.200000pt;}
.x141_c00354{left:400.000000pt;}
.x139_c00354{left:408.400000pt;}
.x13e_c00354{left:409.600000pt;}
.xbc_c00354{left:412.533333pt;}
.xc5_c00354{left:413.733333pt;}
.xc1_c00354{left:414.933333pt;}
.xfd_c00354{left:416.400000pt;}
.x120_c00354{left:418.000000pt;}
.x122_c00354{left:419.200000pt;}
.xf9_c00354{left:420.266667pt;}
.xcc_c00354{left:421.866667pt;}
.x130_c00354{left:423.066667pt;}
.xe3_c00354{left:424.533333pt;}
.xed_c00354{left:426.800000pt;}
.xdb_c00354{left:428.000000pt;}
.xc2_c00354{left:429.066667pt;}
.x136_c00354{left:430.933333pt;}
.xb5_c00354{left:432.400000pt;}
.xab_c00354{left:433.600000pt;}
.xe8_c00354{left:435.733333pt;}
.x124_c00354{left:441.066667pt;}
.xe4_c00354{left:443.066667pt;}
.x108_c00354{left:444.400000pt;}
.xfa_c00354{left:445.600000pt;}
.xb6_c00354{left:446.800000pt;}
.xac_c00354{left:448.266667pt;}
.x102_c00354{left:450.666667pt;}
.xcd_c00354{left:453.466667pt;}
.xdc_c00354{left:454.933333pt;}
.x111_c00354{left:456.666667pt;}
.xe9_c00354{left:459.733333pt;}
.x117_c00354{left:462.400000pt;}
.x138_c00354{left:464.933333pt;}
.xf3_c00354{left:467.333333pt;}
.x143_c00354{left:468.800000pt;}
.xbd_c00354{left:469.866667pt;}
.x127_c00354{left:471.200000pt;}
.xc6_c00354{left:472.933333pt;}
.x137_c00354{left:474.800000pt;}
.xad_c00354{left:478.400000pt;}
.xc3_c00354{left:479.600000pt;}
.x10e_c00354{left:482.666667pt;}
.xd6_c00354{left:484.000000pt;}
.x109_c00354{left:485.333333pt;}
.xd1_c00354{left:487.466667pt;}
.xae_c00354{left:489.333333pt;}
.xbe_c00354{left:492.266667pt;}
.xb7_c00354{left:493.466667pt;}
.xc7_c00354{left:495.066667pt;}
.x13d_c00354{left:496.000000pt;}
.x121_c00354{left:497.066667pt;}
.x118_c00354{left:498.000000pt;}
.xee_c00354{left:499.066667pt;}
.x103_c00354{left:500.933333pt;}
.xd2_c00354{left:503.200000pt;}
.xb8_c00354{left:504.400000pt;}
.xe5_c00354{left:505.733333pt;}
.xdd_c00354{left:506.800000pt;}
.x146_c00354{left:508.000000pt;}
.xea_c00354{left:509.066667pt;}
.x131_c00354{left:510.133333pt;}
.xfe_c00354{left:512.400000pt;}
.xd7_c00354{left:514.666667pt;}
.x11f_c00354{left:516.400000pt;}
.xef_c00354{left:518.533333pt;}
.x119_c00354{left:521.733333pt;}
.xc4_c00354{left:523.466667pt;}
.xaf_c00354{left:525.466667pt;}
.xc8_c00354{left:526.400000pt;}
.x115_c00354{left:528.133333pt;}
.xce_c00354{left:530.266667pt;}
.xde_c00354{left:531.733333pt;}
.xff_c00354{left:532.933333pt;}
.x128_c00354{left:533.866667pt;}
.x13f_c00354{left:535.066667pt;}
.xb0_c00354{left:536.400000pt;}
.xfb_c00354{left:539.333333pt;}
.x147_c00354{left:540.400000pt;}
.xb9_c00354{left:541.466667pt;}
.x10a_c00354{left:543.333333pt;}
.x104_c00354{left:544.800000pt;}
.x125_c00354{left:546.000000pt;}
.x10f_c00354{left:548.266667pt;}
.xdf_c00354{left:550.000000pt;}
.x12b_c00354{left:551.066667pt;}
.xe6_c00354{left:552.533333pt;}
.xeb_c00354{left:554.133333pt;}
.x129_c00354{left:555.333333pt;}
.xf4_c00354{left:559.200000pt;}
.xba_c00354{left:560.400000pt;}
.x142_c00354{left:562.000000pt;}
.x105_c00354{left:563.066667pt;}
.x10b_c00354{left:565.733333pt;}
.xc9_c00354{left:567.733333pt;}
.xec_c00354{left:570.800000pt;}
.xbf_c00354{left:571.733333pt;}
.x12e_c00354{left:574.000000pt;}
.x11a_c00354{left:575.200000pt;}
.xd3_c00354{left:577.466667pt;}
.x132_c00354{left:578.666667pt;}
.xd8_c00354{left:580.533333pt;}
.xf5_c00354{left:582.533333pt;}
.xbb_c00354{left:584.400000pt;}
.x13c_c00354{left:588.400000pt;}
.x13a_c00354{left:590.266667pt;}
.x12f_c00354{left:591.333333pt;}
.x112_c00354{left:592.400000pt;}
.x140_c00354{left:593.333333pt;}
.x12c_c00354{left:594.533333pt;}
.xb1_c00354{left:595.600000pt;}
.xe0_c00354{left:597.333333pt;}
.xcf_c00354{left:598.800000pt;}
.x126_c00354{left:599.733333pt;}
.xca_c00354{left:602.266667pt;}
.x113_c00354{left:603.866667pt;}
.x135_c00354{left:605.733333pt;}
.xd9_c00354{left:608.400000pt;}
.x12a_c00354{left:610.000000pt;}
.xe1_c00354{left:611.066667pt;}
.x11c_c00354{left:613.466667pt;}
.xd4_c00354{left:614.533333pt;}
.x116_c00354{left:615.466667pt;}
.xf0_c00354{left:617.066667pt;}
.xe7_c00354{left:620.400000pt;}
.x11b_c00354{left:621.333333pt;}
.x11d_c00354{left:624.800000pt;}
.x106_c00354{left:626.400000pt;}
.xcb_c00354{left:628.533333pt;}
.x114_c00354{left:629.600000pt;}
.x100_c00354{left:630.533333pt;}
.x123_c00354{left:631.866667pt;}
.xda_c00354{left:633.733333pt;}
.xd5_c00354{left:636.000000pt;}
.x13b_c00354{left:636.933333pt;}
.xc0_c00354{left:638.000000pt;}
.xf6_c00354{left:642.133333pt;}
.xf1_c00354{left:644.000000pt;}
.x144_c00354{left:645.066667pt;}
.x10c_c00354{left:646.266667pt;}
.xb2_c00354{left:647.466667pt;}
.xf8_c00354{left:650.000000pt;}
.xe2_c00354{left:651.066667pt;}
.x133_c00354{left:652.533333pt;}
.x2_c00354{left:655.733333pt;}
.x107_c00354{left:658.133333pt;}
.xb3_c00354{left:660.533333pt;}
.xf2_c00354{left:662.933333pt;}
.x10d_c00354{left:664.133333pt;}
.xfc_c00354{left:665.333333pt;}
.xd0_c00354{left:666.933333pt;}
.x101_c00354{left:668.000000pt;}
.x11e_c00354{left:669.600000pt;}
.x110_c00354{left:671.200000pt;}
.x12d_c00354{left:674.266667pt;}
}





/* 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_c00355 {
    display:none;
  }
  .loading-indicator_c00355.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00355 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_c00355 { 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_c00355" -> "#page-container .classname_c00355")
 */
.pf_c00355 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00355 { /* 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_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00355 { /* 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_c00355 { /* 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_c00355 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00355 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00355 {overflow:visible;}
  }
}
.c_c00355 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00355 { /* 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_c00355:after { /* webkit #35443 */
  content: '';
}
.t_c00355:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00355 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 */
}
.__c00355 { /* 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_c00355 { /* info for Javascript */
  display:none;
}
.l_c00355 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00355 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00355 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00355: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_c00355 {
    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_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00355.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_c00355 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00355;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.000000;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;}
.md1_c00355{transform:matrix(0.012750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012750,0.000000,0.000000,0.250000,0,0);}
.md0_c00355{transform:matrix(0.015250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015250,0.000000,0.000000,0.250000,0,0);}
.m55_c00355{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m23_c00355{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00355{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00355{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m81_c00355{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m76_c00355{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00355{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m13_c00355{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00355{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m64_c00355{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mce_c00355{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m69_c00355{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m89_c00355{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00355{transform:matrix(0.097000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00355{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m131_c00355{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00355{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00355{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m42_c00355{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m77_c00355{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m135_c00355{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00355{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m18_c00355{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00355{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m73_c00355{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m27_c00355{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m15_c00355{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00355{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00355{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m14_c00355{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m28_c00355{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00355{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00355{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.m17_c00355{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mca_c00355{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00355{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m44_c00355{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00355{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m22_c00355{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00355{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00355{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m74_c00355{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m116_c00355{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00355{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00355{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m38_c00355{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00355{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m10_c00355{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m95_c00355{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m132_c00355{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m63_c00355{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m58_c00355{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.ma_c00355{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00355{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m136_c00355{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m59_c00355{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf_c00355{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00355{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00355{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m91_c00355{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00355{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.meb_c00355{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m137_c00355{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00355{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00355{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m65_c00355{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00355{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m92_c00355{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md6_c00355{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m125_c00355{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00355{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m56_c00355{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00355{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00355{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md4_c00355{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00355{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.md3_c00355{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00355{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m121_c00355{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00355{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9_c00355{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m98_c00355{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m49_c00355{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m97_c00355{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00355{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m26_c00355{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me0_c00355{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00355{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00355{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00355{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00355{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mba_c00355{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m86_c00355{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00355{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00355{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m24_c00355{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00355{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00355{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m41_c00355{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00355{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m128_c00355{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00355{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m12_c00355{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.maa_c00355{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00355{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb_c00355{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00355{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00355{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00355{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00355{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mab_c00355{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md2_c00355{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00355{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m101_c00355{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00355{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m61_c00355{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00355{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m103_c00355{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00355{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00355{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m127_c00355{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00355{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00355{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m133_c00355{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00355{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m102_c00355{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00355{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me6_c00355{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m109_c00355{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00355{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00355{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m20_c00355{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m7_c00355{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mec_c00355{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m57_c00355{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md5_c00355{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00355{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4_c00355{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00355{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m99_c00355{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00355{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00355{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00355{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00355{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m108_c00355{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8_c00355{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00355{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mef_c00355{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00355{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m43_c00355{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m124_c00355{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00355{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00355{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00355{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mad_c00355{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m40_c00355{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m118_c00355{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00355{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00355{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00355{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mac_c00355{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m126_c00355{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6_c00355{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00355{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m134_c00355{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m25_c00355{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00355{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.md_c00355{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m39_c00355{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m72_c00355{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00355{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m46_c00355{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m16_c00355{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00355{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00355{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m113_c00355{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00355{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m130_c00355{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m31_c00355{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00355{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00355{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m88_c00355{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00355{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m119_c00355{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00355{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m107_c00355{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.me_c00355{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00355{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m30_c00355{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m71_c00355{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mee_c00355{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m90_c00355{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m62_c00355{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00355{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m68_c00355{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00355{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m93_c00355{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00355{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00355{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00355{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc_c00355{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m104_c00355{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m112_c00355{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00355{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00355{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m80_c00355{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.me4_c00355{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m66_c00355{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5_c00355{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m120_c00355{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.md9_c00355{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m54_c00355{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m21_c00355{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m94_c00355{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.maf_c00355{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md8_c00355{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m11_c00355{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00355{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00355{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m106_c00355{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00355{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m96_c00355{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m114_c00355{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00355{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me1_c00355{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md7_c00355{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00355{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m122_c00355{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m100_c00355{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00355{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m85_c00355{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00355{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me3_c00355{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00355{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m47_c00355{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m33_c00355{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00355{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00355{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00355{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00355{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me5_c00355{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00355{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m51_c00355{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m53_c00355{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mda_c00355{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00355{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m36_c00355{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00355{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m123_c00355{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00355{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m37_c00355{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00355{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);}
.m105_c00355{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m84_c00355{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00355{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00355{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m115_c00355{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m83_c00355{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mde_c00355{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m50_c00355{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.med_c00355{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m52_c00355{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00355{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00355{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m87_c00355{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mea_c00355{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m75_c00355{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00355{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00355{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00355{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.me7_c00355{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m129_c00355{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m35_c00355{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m34_c00355{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m29_c00355{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mff_c00355{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00355{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00355{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00355{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m110_c00355{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m67_c00355{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.me8_c00355{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m117_c00355{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00355{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c00355{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mae_c00355{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00355{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m70_c00355{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me2_c00355{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00355{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00355{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00355{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m48_c00355{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.m60_c00355{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00355{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00355{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m78_c00355{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00355{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.me9_c00355{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00355{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00355{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m111_c00355{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m79_c00355{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m82_c00355{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m45_c00355{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00355{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls2_c00355{letter-spacing:0.000000px;}
.ls1_c00355{letter-spacing:50.211796px;}
.ls0_c00355{letter-spacing:66.750000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{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__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00355{word-spacing:-93.750000px;}
.ws4_c00355{word-spacing:-77.211796px;}
.ws13_c00355{word-spacing:-13.847162px;}
.wse_c00355{word-spacing:-13.738854px;}
.wsb_c00355{word-spacing:-12.100478px;}
.ws0_c00355{word-spacing:-8.500000px;}
.ws12_c00355{word-spacing:-8.122677px;}
.wsc_c00355{word-spacing:-5.547170px;}
.ws11_c00355{word-spacing:-4.872852px;}
.ws10_c00355{word-spacing:-2.005391px;}
.wsd_c00355{word-spacing:-1.865330px;}
.wsf_c00355{word-spacing:-1.122905px;}
.wsa_c00355{word-spacing:-0.160305px;}
.ws14_c00355{word-spacing:0.000000px;}
.ws8_c00355{word-spacing:25.714286px;}
.ws1_c00355{word-spacing:36.000000px;}
.ws3_c00355{word-spacing:39.750000px;}
.ws6_c00355{word-spacing:40.000000px;}
.ws5_c00355{word-spacing:44.166667px;}
.ws7_c00355{word-spacing:60.000000px;}
.ws9_c00355{word-spacing:66.000000px;}
._1_c00355{margin-left:-66.750000px;}
._2_c00355{margin-left:-50.211796px;}
._6_c00355{width:41.638968px;}
._0_c00355{width:66.750000px;}
._3_c00355{width:70.000000px;}
._5_c00355{width:74.166667px;}
._4_c00355{width:795.000000px;}
.fc0_c00355{color:transparent;}
.fs7_c00355{font-size:36.000000px;}
.fs5_c00355{font-size:48.000000px;}
.fs4_c00355{font-size:54.000000px;}
.fs3_c00355{font-size:60.000000px;}
.fs0_c00355{font-size:66.000000px;}
.fs6_c00355{font-size:72.000000px;}
.fs1_c00355{font-size:78.000000px;}
.fs2_c00355{font-size:84.000000px;}
.fs8_c00355{font-size:282.000000px;}
.y0_c00355{bottom:0.000000px;}
.y74_c00355{bottom:173.850000px;}
.y73_c00355{bottom:191.850000px;}
.y38_c00355{bottom:194.400000px;}
.y72_c00355{bottom:209.850000px;}
.y37_c00355{bottom:211.350000px;}
.y71_c00355{bottom:227.850000px;}
.y36_c00355{bottom:229.050000px;}
.y35_c00355{bottom:245.550000px;}
.y70_c00355{bottom:245.850000px;}
.y34_c00355{bottom:263.550000px;}
.y6f_c00355{bottom:263.850000px;}
.y33_c00355{bottom:281.250000px;}
.y6e_c00355{bottom:281.850000px;}
.y32_c00355{bottom:298.950000px;}
.y6d_c00355{bottom:299.850000px;}
.y31_c00355{bottom:316.650000px;}
.y6c_c00355{bottom:317.850000px;}
.y30_c00355{bottom:333.600000px;}
.y6b_c00355{bottom:335.850000px;}
.y2f_c00355{bottom:351.600000px;}
.y6a_c00355{bottom:353.550000px;}
.y2e_c00355{bottom:369.300000px;}
.y69_c00355{bottom:371.550000px;}
.y2d_c00355{bottom:387.300000px;}
.y68_c00355{bottom:389.850000px;}
.y2c_c00355{bottom:405.300000px;}
.y67_c00355{bottom:407.850000px;}
.y2b_c00355{bottom:423.000000px;}
.y66_c00355{bottom:433.200000px;}
.y2a_c00355{bottom:441.000000px;}
.y65_c00355{bottom:447.900000px;}
.y29_c00355{bottom:459.000000px;}
.y64_c00355{bottom:462.300000px;}
.y28_c00355{bottom:477.000000px;}
.y63_c00355{bottom:483.150000px;}
.y27_c00355{bottom:495.000000px;}
.y62_c00355{bottom:501.150000px;}
.y26_c00355{bottom:513.000000px;}
.y61_c00355{bottom:519.150000px;}
.y25_c00355{bottom:531.300000px;}
.y60_c00355{bottom:541.050000px;}
.y24_c00355{bottom:548.700000px;}
.y5f_c00355{bottom:559.350000px;}
.y23_c00355{bottom:566.700000px;}
.y5e_c00355{bottom:577.050000px;}
.y22_c00355{bottom:588.300000px;}
.y5d_c00355{bottom:595.350000px;}
.y21_c00355{bottom:603.000000px;}
.y5c_c00355{bottom:613.050000px;}
.y20_c00355{bottom:628.200000px;}
.y5b_c00355{bottom:631.500000px;}
.y1f_c00355{bottom:641.100000px;}
.y5a_c00355{bottom:653.100000px;}
.y1e_c00355{bottom:657.300000px;}
.y40_c00355{bottom:667.200000px;}
.y1d_c00355{bottom:669.600000px;}
.y59_c00355{bottom:671.400000px;}
.y1c_c00355{bottom:685.800000px;}
.y58_c00355{bottom:697.950000px;}
.y1b_c00355{bottom:698.700000px;}
.y1a_c00355{bottom:714.600000px;}
.y57_c00355{bottom:716.700000px;}
.y3f_c00355{bottom:725.100000px;}
.y19_c00355{bottom:727.500000px;}
.y56_c00355{bottom:734.400000px;}
.y18_c00355{bottom:743.700000px;}
.y55_c00355{bottom:752.400000px;}
.y17_c00355{bottom:758.100000px;}
.y54_c00355{bottom:770.400000px;}
.y16_c00355{bottom:772.500000px;}
.y15_c00355{bottom:785.850000px;}
.y53_c00355{bottom:788.400000px;}
.y14_c00355{bottom:801.000000px;}
.y52_c00355{bottom:806.400000px;}
.y13_c00355{bottom:814.350000px;}
.y51_c00355{bottom:824.400000px;}
.y12_c00355{bottom:831.300000px;}
.y50_c00355{bottom:845.550000px;}
.y11_c00355{bottom:847.200000px;}
.y4f_c00355{bottom:864.600000px;}
.y10_c00355{bottom:867.300000px;}
.y4e_c00355{bottom:882.900000px;}
.yf_c00355{bottom:884.850000px;}
.y3e_c00355{bottom:885.900000px;}
.y3d_c00355{bottom:890.550000px;}
.y4d_c00355{bottom:900.600000px;}
.y3c_c00355{bottom:902.100000px;}
.ye_c00355{bottom:902.550000px;}
.y3b_c00355{bottom:909.600000px;}
.y3a_c00355{bottom:914.700000px;}
.y4c_c00355{bottom:918.300000px;}
.yd_c00355{bottom:923.400000px;}
.y39_c00355{bottom:929.100000px;}
.y4b_c00355{bottom:936.600000px;}
.yc_c00355{bottom:942.900000px;}
.y4a_c00355{bottom:954.600000px;}
.yb_c00355{bottom:960.900000px;}
.y49_c00355{bottom:972.600000px;}
.ya_c00355{bottom:977.400000px;}
.y48_c00355{bottom:990.300000px;}
.y9_c00355{bottom:996.150000px;}
.y47_c00355{bottom:1008.300000px;}
.y8_c00355{bottom:1014.150000px;}
.y46_c00355{bottom:1026.300000px;}
.y7_c00355{bottom:1032.450000px;}
.y45_c00355{bottom:1047.150000px;}
.y6_c00355{bottom:1049.850000px;}
.y44_c00355{bottom:1066.650000px;}
.y5_c00355{bottom:1071.750000px;}
.y43_c00355{bottom:1084.500000px;}
.y4_c00355{bottom:1101.900000px;}
.y42_c00355{bottom:1106.400000px;}
.y3_c00355{bottom:1120.650000px;}
.y41_c00355{bottom:1124.700000px;}
.y1_c00355{bottom:1144.050000px;}
.y2_c00355{bottom:1148.400000px;}
.h9_c00355{height:36.000000px;}
.h7_c00355{height:48.000000px;}
.h6_c00355{height:54.000000px;}
.h5_c00355{height:60.000000px;}
.h2_c00355{height:66.000000px;}
.h8_c00355{height:72.000000px;}
.h3_c00355{height:78.000000px;}
.h4_c00355{height:84.000000px;}
.ha_c00355{height:282.000000px;}
.h0_c00355{height:1276.199982px;}
.h1_c00355{height:1276.500000px;}
.w0_c00355{width:960.480010px;}
.w1_c00355{width:960.750000px;}
.x0_c00355{left:0.000000px;}
.x1_c00355{left:192.300000px;}
.xf_c00355{left:197.250000px;}
.x83_c00355{left:203.400000px;}
.x4_c00355{left:211.650000px;}
.xb_c00355{left:213.000000px;}
.x26_c00355{left:214.950000px;}
.x45_c00355{left:216.150000px;}
.x85_c00355{left:221.250000px;}
.x8b_c00355{left:222.300000px;}
.x90_c00355{left:224.100000px;}
.xa6_c00355{left:225.150000px;}
.xa9_c00355{left:226.800000px;}
.x66_c00355{left:228.600000px;}
.x7d_c00355{left:230.400000px;}
.x15_c00355{left:232.050000px;}
.xac_c00355{left:234.150000px;}
.xc_c00355{left:237.150000px;}
.x10_c00355{left:240.150000px;}
.x1d_c00355{left:241.200000px;}
.x47_c00355{left:242.250000px;}
.xa1_c00355{left:244.500000px;}
.x6c_c00355{left:245.550000px;}
.x5_c00355{left:246.600000px;}
.xaf_c00355{left:247.800000px;}
.x4a_c00355{left:249.150000px;}
.x71_c00355{left:250.200000px;}
.x1e_c00355{left:252.300000px;}
.xa7_c00355{left:253.650000px;}
.x2d_c00355{left:255.150000px;}
.x4f_c00355{left:256.350000px;}
.x54_c00355{left:258.750000px;}
.x58_c00355{left:259.950000px;}
.x3e_c00355{left:261.150000px;}
.x9d_c00355{left:262.950000px;}
.x32_c00355{left:265.650000px;}
.x67_c00355{left:267.900000px;}
.x72_c00355{left:270.000000px;}
.x77_c00355{left:271.050000px;}
.x4b_c00355{left:272.550000px;}
.x11_c00355{left:274.650000px;}
.x27_c00355{left:276.450000px;}
.x3a_c00355{left:277.650000px;}
.x96_c00355{left:279.000000px;}
.xa2_c00355{left:280.200000px;}
.x68_c00355{left:282.000000px;}
.x88_c00355{left:284.550000px;}
.xb0_c00355{left:285.600000px;}
.x50_c00355{left:286.650000px;}
.xd_c00355{left:288.300000px;}
.xa8_c00355{left:289.350000px;}
.x1f_c00355{left:290.850000px;}
.x99_c00355{left:292.350000px;}
.x59_c00355{left:294.150000px;}
.x16_c00355{left:296.100000px;}
.x3f_c00355{left:298.200000px;}
.x3b_c00355{left:301.050000px;}
.x33_c00355{left:303.150000px;}
.x8c_c00355{left:306.150000px;}
.xaa_c00355{left:307.350000px;}
.x5f_c00355{left:308.550000px;}
.x48_c00355{left:309.900000px;}
.x82_c00355{left:311.700000px;}
.x91_c00355{left:314.100000px;}
.x86_c00355{left:315.450000px;}
.x40_c00355{left:316.500000px;}
.xe_c00355{left:318.150000px;}
.x17_c00355{left:320.550000px;}
.x73_c00355{left:322.950000px;}
.x3c_c00355{left:324.450000px;}
.xb1_c00355{left:327.000000px;}
.x51_c00355{left:328.050000px;}
.x20_c00355{left:330.150000px;}
.x28_c00355{left:331.500000px;}
.x7f_c00355{left:333.600000px;}
.x5a_c00355{left:334.800000px;}
.x46_c00355{left:339.750000px;}
.x5b_c00355{left:341.700000px;}
.x55_c00355{left:342.900000px;}
.x78_c00355{left:344.850000px;}
.x87_c00355{left:346.050000px;}
.x34_c00355{left:348.450000px;}
.x18_c00355{left:350.400000px;}
.x97_c00355{left:352.800000px;}
.x6_c00355{left:354.300000px;}
.xa3_c00355{left:355.500000px;}
.x60_c00355{left:357.750000px;}
.x12_c00355{left:359.550000px;}
.x29_c00355{left:362.400000px;}
.x61_c00355{left:364.950000px;}
.x2e_c00355{left:367.350000px;}
.x7e_c00355{left:368.550000px;}
.xa4_c00355{left:370.200000px;}
.xad_c00355{left:372.300000px;}
.x4c_c00355{left:373.350000px;}
.x69_c00355{left:375.300000px;}
.x7_c00355{left:377.400000px;}
.x19_c00355{left:378.450000px;}
.x41_c00355{left:380.700000px;}
.x2a_c00355{left:381.900000px;}
.x5c_c00355{left:384.900000px;}
.x62_c00355{left:386.850000px;}
.x6d_c00355{left:387.900000px;}
.x2f_c00355{left:390.450000px;}
.x80_c00355{left:391.800000px;}
.xae_c00355{left:392.850000px;}
.x63_c00355{left:394.800000px;}
.x13_c00355{left:396.300000px;}
.x21_c00355{left:397.800000px;}
.x1a_c00355{left:399.000000px;}
.x9e_c00355{left:400.500000px;}
.x5d_c00355{left:402.150000px;}
.x42_c00355{left:404.400000px;}
.x8_c00355{left:405.900000px;}
.x6a_c00355{left:408.000000px;}
.x74_c00355{left:411.000000px;}
.x98_c00355{left:414.000000px;}
.x79_c00355{left:415.500000px;}
.x1b_c00355{left:416.700000px;}
.x84_c00355{left:419.250000px;}
.x2b_c00355{left:420.450000px;}
.x95_c00355{left:422.850000px;}
.x22_c00355{left:424.050000px;}
.x52_c00355{left:425.550000px;}
.x6b_c00355{left:427.500000px;}
.x64_c00355{left:431.100000px;}
.x35_c00355{left:433.050000px;}
.x5e_c00355{left:434.550000px;}
.x89_c00355{left:436.500000px;}
.x70_c00355{left:439.500000px;}
.x3d_c00355{left:442.500000px;}
.x2_c00355{left:444.000000px;}
.x23_c00355{left:445.950000px;}
.x75_c00355{left:447.000000px;}
.x36_c00355{left:448.950000px;}
.x9c_c00355{left:451.350000px;}
.x8d_c00355{left:452.700000px;}
.x14_c00355{left:454.950000px;}
.x9_c00355{left:458.100000px;}
.x43_c00355{left:460.200000px;}
.x4d_c00355{left:461.550000px;}
.x92_c00355{left:463.350000px;}
.x65_c00355{left:464.850000px;}
.x76_c00355{left:466.050000px;}
.x7a_c00355{left:467.700000px;}
.x49_c00355{left:469.650000px;}
.x2c_c00355{left:474.750000px;}
.x8e_c00355{left:476.400000px;}
.x93_c00355{left:477.750000px;}
.x9a_c00355{left:481.350000px;}
.x37_c00355{left:482.400000px;}
.xb2_c00355{left:485.100000px;}
.x56_c00355{left:486.450000px;}
.xa5_c00355{left:487.650000px;}
.x24_c00355{left:488.850000px;}
.x30_c00355{left:493.950000px;}
.x6e_c00355{left:495.450000px;}
.x1c_c00355{left:496.650000px;}
.x7b_c00355{left:498.300000px;}
.x8a_c00355{left:499.500000px;}
.x9f_c00355{left:500.850000px;}
.x38_c00355{left:501.900000px;}
.x8f_c00355{left:503.100000px;}
.x44_c00355{left:504.150000px;}
.x94_c00355{left:507.600000px;}
.x53_c00355{left:509.100000px;}
.x31_c00355{left:511.650000px;}
.xa0_c00355{left:515.550000px;}
.x39_c00355{left:518.100000px;}
.x7c_c00355{left:519.900000px;}
.x57_c00355{left:520.950000px;}
.xa_c00355{left:522.900000px;}
.x6f_c00355{left:525.000000px;}
.x81_c00355{left:526.500000px;}
.x9b_c00355{left:528.150000px;}
.xab_c00355{left:538.650000px;}
.x25_c00355{left:544.350000px;}
.x4e_c00355{left:546.150000px;}
.xb3_c00355{left:547.950000px;}
.xd8_c00355{left:555.450000px;}
.x112_c00355{left:558.000000px;}
.x12c_c00355{left:561.600000px;}
.x149_c00355{left:562.650000px;}
.xb4_c00355{left:572.400000px;}
.xcb_c00355{left:573.450000px;}
.xf7_c00355{left:574.500000px;}
.x111_c00355{left:576.750000px;}
.x119_c00355{left:578.550000px;}
.x135_c00355{left:579.750000px;}
.x13d_c00355{left:580.800000px;}
.x151_c00355{left:582.450000px;}
.x156_c00355{left:584.100000px;}
.x11a_c00355{left:586.500000px;}
.xe4_c00355{left:589.500000px;}
.xc4_c00355{left:592.200000px;}
.x14b_c00355{left:595.950000px;}
.xef_c00355{left:597.900000px;}
.xbc_c00355{left:601.200000px;}
.xd3_c00355{left:603.900000px;}
.x140_c00355{left:607.650000px;}
.xf0_c00355{left:608.700000px;}
.x144_c00355{left:612.600000px;}
.xb5_c00355{left:614.100000px;}
.xd9_c00355{left:615.900000px;}
.x125_c00355{left:617.550000px;}
.x115_c00355{left:619.200000px;}
.x152_c00355{left:623.400000px;}
.xd4_c00355{left:624.450000px;}
.x11b_c00355{left:626.400000px;}
.xbd_c00355{left:627.450000px;}
.x155_c00355{left:628.650000px;}
.x130_c00355{left:631.200000px;}
.xc5_c00355{left:632.550000px;}
.xf8_c00355{left:634.200000px;}
.x102_c00355{left:637.800000px;}
.x145_c00355{left:638.850000px;}
.xcc_c00355{left:640.350000px;}
.x123_c00355{left:641.400000px;}
.x11c_c00355{left:644.100000px;}
.x12a_c00355{left:645.150000px;}
.x14a_c00355{left:648.000000px;}
.xde_c00355{left:649.800000px;}
.x113_c00355{left:651.300000px;}
.xb6_c00355{left:653.400000px;}
.xda_c00355{left:655.800000px;}
.xc6_c00355{left:657.450000px;}
.xf1_c00355{left:659.100000px;}
.x12e_c00355{left:661.650000px;}
.x116_c00355{left:662.700000px;}
.xcd_c00355{left:664.050000px;}
.xe5_c00355{left:665.850000px;}
.xd5_c00355{left:668.700000px;}
.x138_c00355{left:669.750000px;}
.xec_c00355{left:672.450000px;}
.xbe_c00355{left:674.250000px;}
.xdb_c00355{left:676.350000px;}
.xfe_c00355{left:678.900000px;}
.xc7_c00355{left:681.600000px;}
.x146_c00355{left:683.850000px;}
.x139_c00355{left:684.900000px;}
.x117_c00355{left:686.850000px;}
.xf9_c00355{left:687.900000px;}
.xd6_c00355{left:692.850000px;}
.x132_c00355{left:695.400000px;}
.xbf_c00355{left:696.900000px;}
.x108_c00355{left:697.950000px;}
.xe6_c00355{left:701.100000px;}
.x154_c00355{left:703.500000px;}
.xce_c00355{left:706.500000px;}
.x109_c00355{left:707.700000px;}
.xd7_c00355{left:709.350000px;}
.xf2_c00355{left:711.600000px;}
.x114_c00355{left:712.800000px;}
.x14d_c00355{left:714.000000px;}
.x12b_c00355{left:715.050000px;}
.xfa_c00355{left:716.700000px;}
.x103_c00355{left:717.750000px;}
.xb7_c00355{left:719.700000px;}
.x10a_c00355{left:721.350000px;}
.xe7_c00355{left:722.700000px;}
.x12d_c00355{left:724.350000px;}
.xdf_c00355{left:726.450000px;}
.x12f_c00355{left:727.500000px;}
.x10d_c00355{left:728.700000px;}
.x11f_c00355{left:730.500000px;}
.xdc_c00355{left:732.900000px;}
.x104_c00355{left:733.950000px;}
.xc0_c00355{left:735.450000px;}
.xed_c00355{left:737.550000px;}
.x10b_c00355{left:739.350000px;}
.x15a_c00355{left:742.200000px;}
.x126_c00355{left:743.400000px;}
.xc1_c00355{left:745.200000px;}
.xe0_c00355{left:748.050000px;}
.x11d_c00355{left:749.850000px;}
.xb8_c00355{left:752.100000px;}
.x13a_c00355{left:754.350000px;}
.x120_c00355{left:755.400000px;}
.x141_c00355{left:757.350000px;}
.xe8_c00355{left:758.700000px;}
.x136_c00355{left:761.400000px;}
.xcf_c00355{left:764.100000px;}
.xfb_c00355{left:765.600000px;}
.x13e_c00355{left:766.650000px;}
.xe9_c00355{left:768.000000px;}
.x147_c00355{left:769.200000px;}
.xff_c00355{left:770.700000px;}
.x118_c00355{left:772.950000px;}
.x157_c00355{left:774.750000px;}
.x142_c00355{left:776.400000px;}
.x13b_c00355{left:777.750000px;}
.x10e_c00355{left:779.100000px;}
.xf3_c00355{left:781.050000px;}
.x127_c00355{left:787.350000px;}
.xc8_c00355{left:788.550000px;}
.xea_c00355{left:790.350000px;}
.x105_c00355{left:792.300000px;}
.xb9_c00355{left:793.800000px;}
.xf4_c00355{left:796.200000px;}
.xc2_c00355{left:797.700000px;}
.x137_c00355{left:798.900000px;}
.xfc_c00355{left:800.550000px;}
.x143_c00355{left:801.600000px;}
.xd0_c00355{left:803.700000px;}
.xdd_c00355{left:804.900000px;}
.x10f_c00355{left:806.850000px;}
.xee_c00355{left:809.550000px;}
.x10c_c00355{left:812.100000px;}
.x148_c00355{left:813.600000px;}
.x122_c00355{left:815.550000px;}
.xc3_c00355{left:817.500000px;}
.xc9_c00355{left:820.950000px;}
.xd1_c00355{left:823.200000px;}
.xe1_c00355{left:825.750000px;}
.x124_c00355{left:827.400000px;}
.xba_c00355{left:831.600000px;}
.x14e_c00355{left:834.600000px;}
.x13c_c00355{left:836.400000px;}
.x121_c00355{left:838.200000px;}
.x100_c00355{left:841.950000px;}
.x128_c00355{left:844.200000px;}
.xfd_c00355{left:845.550000px;}
.xf5_c00355{left:847.350000px;}
.x131_c00355{left:849.150000px;}
.xeb_c00355{left:851.550000px;}
.x133_c00355{left:857.250000px;}
.x3_c00355{left:859.800000px;}
.xe2_c00355{left:862.050000px;}
.x150_c00355{left:863.250000px;}
.x110_c00355{left:864.450000px;}
.xf6_c00355{left:866.850000px;}
.x153_c00355{left:868.200000px;}
.x101_c00355{left:869.700000px;}
.x158_c00355{left:870.750000px;}
.x106_c00355{left:871.800000px;}
.xd2_c00355{left:873.900000px;}
.xca_c00355{left:875.700000px;}
.x14f_c00355{left:877.800000px;}
.xe3_c00355{left:881.100000px;}
.xbb_c00355{left:882.300000px;}
.x13f_c00355{left:883.650000px;}
.x11e_c00355{left:884.850000px;}
.x134_c00355{left:886.800000px;}
.x129_c00355{left:888.450000px;}
.x15c_c00355{left:891.000000px;}
.x15b_c00355{left:892.800000px;}
.x107_c00355{left:894.900000px;}
.x14c_c00355{left:897.150000px;}
.x159_c00355{left:899.700000px;}
.x15d_c00355{left:905.400000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls2_c00355{letter-spacing:0.000000pt;}
.ls1_c00355{letter-spacing:44.632708pt;}
.ls0_c00355{letter-spacing:59.333333pt;}
.ws2_c00355{word-spacing:-83.333333pt;}
.ws4_c00355{word-spacing:-68.632708pt;}
.ws13_c00355{word-spacing:-12.308588pt;}
.wse_c00355{word-spacing:-12.212314pt;}
.wsb_c00355{word-spacing:-10.755981pt;}
.ws0_c00355{word-spacing:-7.555556pt;}
.ws12_c00355{word-spacing:-7.220157pt;}
.wsc_c00355{word-spacing:-4.930818pt;}
.ws11_c00355{word-spacing:-4.331424pt;}
.ws10_c00355{word-spacing:-1.782570pt;}
.wsd_c00355{word-spacing:-1.658071pt;}
.wsf_c00355{word-spacing:-0.998138pt;}
.wsa_c00355{word-spacing:-0.142494pt;}
.ws14_c00355{word-spacing:0.000000pt;}
.ws8_c00355{word-spacing:22.857143pt;}
.ws1_c00355{word-spacing:32.000000pt;}
.ws3_c00355{word-spacing:35.333333pt;}
.ws6_c00355{word-spacing:35.555556pt;}
.ws5_c00355{word-spacing:39.259259pt;}
.ws7_c00355{word-spacing:53.333333pt;}
.ws9_c00355{word-spacing:58.666667pt;}
._1_c00355{margin-left:-59.333333pt;}
._2_c00355{margin-left:-44.632708pt;}
._6_c00355{width:37.012416pt;}
._0_c00355{width:59.333333pt;}
._3_c00355{width:62.222222pt;}
._5_c00355{width:65.925926pt;}
._4_c00355{width:706.666667pt;}
.fs7_c00355{font-size:32.000000pt;}
.fs5_c00355{font-size:42.666667pt;}
.fs4_c00355{font-size:48.000000pt;}
.fs3_c00355{font-size:53.333333pt;}
.fs0_c00355{font-size:58.666667pt;}
.fs6_c00355{font-size:64.000000pt;}
.fs1_c00355{font-size:69.333333pt;}
.fs2_c00355{font-size:74.666667pt;}
.fs8_c00355{font-size:250.666667pt;}
.y0_c00355{bottom:0.000000pt;}
.y74_c00355{bottom:154.533333pt;}
.y73_c00355{bottom:170.533333pt;}
.y38_c00355{bottom:172.800000pt;}
.y72_c00355{bottom:186.533333pt;}
.y37_c00355{bottom:187.866667pt;}
.y71_c00355{bottom:202.533333pt;}
.y36_c00355{bottom:203.600000pt;}
.y35_c00355{bottom:218.266667pt;}
.y70_c00355{bottom:218.533333pt;}
.y34_c00355{bottom:234.266667pt;}
.y6f_c00355{bottom:234.533333pt;}
.y33_c00355{bottom:250.000000pt;}
.y6e_c00355{bottom:250.533333pt;}
.y32_c00355{bottom:265.733333pt;}
.y6d_c00355{bottom:266.533333pt;}
.y31_c00355{bottom:281.466667pt;}
.y6c_c00355{bottom:282.533333pt;}
.y30_c00355{bottom:296.533333pt;}
.y6b_c00355{bottom:298.533333pt;}
.y2f_c00355{bottom:312.533333pt;}
.y6a_c00355{bottom:314.266667pt;}
.y2e_c00355{bottom:328.266667pt;}
.y69_c00355{bottom:330.266667pt;}
.y2d_c00355{bottom:344.266667pt;}
.y68_c00355{bottom:346.533333pt;}
.y2c_c00355{bottom:360.266667pt;}
.y67_c00355{bottom:362.533333pt;}
.y2b_c00355{bottom:376.000000pt;}
.y66_c00355{bottom:385.066667pt;}
.y2a_c00355{bottom:392.000000pt;}
.y65_c00355{bottom:398.133333pt;}
.y29_c00355{bottom:408.000000pt;}
.y64_c00355{bottom:410.933333pt;}
.y28_c00355{bottom:424.000000pt;}
.y63_c00355{bottom:429.466667pt;}
.y27_c00355{bottom:440.000000pt;}
.y62_c00355{bottom:445.466667pt;}
.y26_c00355{bottom:456.000000pt;}
.y61_c00355{bottom:461.466667pt;}
.y25_c00355{bottom:472.266667pt;}
.y60_c00355{bottom:480.933333pt;}
.y24_c00355{bottom:487.733333pt;}
.y5f_c00355{bottom:497.200000pt;}
.y23_c00355{bottom:503.733333pt;}
.y5e_c00355{bottom:512.933333pt;}
.y22_c00355{bottom:522.933333pt;}
.y5d_c00355{bottom:529.200000pt;}
.y21_c00355{bottom:536.000000pt;}
.y5c_c00355{bottom:544.933333pt;}
.y20_c00355{bottom:558.400000pt;}
.y5b_c00355{bottom:561.333333pt;}
.y1f_c00355{bottom:569.866667pt;}
.y5a_c00355{bottom:580.533333pt;}
.y1e_c00355{bottom:584.266667pt;}
.y40_c00355{bottom:593.066667pt;}
.y1d_c00355{bottom:595.200000pt;}
.y59_c00355{bottom:596.800000pt;}
.y1c_c00355{bottom:609.600000pt;}
.y58_c00355{bottom:620.400000pt;}
.y1b_c00355{bottom:621.066667pt;}
.y1a_c00355{bottom:635.200000pt;}
.y57_c00355{bottom:637.066667pt;}
.y3f_c00355{bottom:644.533333pt;}
.y19_c00355{bottom:646.666667pt;}
.y56_c00355{bottom:652.800000pt;}
.y18_c00355{bottom:661.066667pt;}
.y55_c00355{bottom:668.800000pt;}
.y17_c00355{bottom:673.866667pt;}
.y54_c00355{bottom:684.800000pt;}
.y16_c00355{bottom:686.666667pt;}
.y15_c00355{bottom:698.533333pt;}
.y53_c00355{bottom:700.800000pt;}
.y14_c00355{bottom:712.000000pt;}
.y52_c00355{bottom:716.800000pt;}
.y13_c00355{bottom:723.866667pt;}
.y51_c00355{bottom:732.800000pt;}
.y12_c00355{bottom:738.933333pt;}
.y50_c00355{bottom:751.600000pt;}
.y11_c00355{bottom:753.066667pt;}
.y4f_c00355{bottom:768.533333pt;}
.y10_c00355{bottom:770.933333pt;}
.y4e_c00355{bottom:784.800000pt;}
.yf_c00355{bottom:786.533333pt;}
.y3e_c00355{bottom:787.466667pt;}
.y3d_c00355{bottom:791.600000pt;}
.y4d_c00355{bottom:800.533333pt;}
.y3c_c00355{bottom:801.866667pt;}
.ye_c00355{bottom:802.266667pt;}
.y3b_c00355{bottom:808.533333pt;}
.y3a_c00355{bottom:813.066667pt;}
.y4c_c00355{bottom:816.266667pt;}
.yd_c00355{bottom:820.800000pt;}
.y39_c00355{bottom:825.866667pt;}
.y4b_c00355{bottom:832.533333pt;}
.yc_c00355{bottom:838.133333pt;}
.y4a_c00355{bottom:848.533333pt;}
.yb_c00355{bottom:854.133333pt;}
.y49_c00355{bottom:864.533333pt;}
.ya_c00355{bottom:868.800000pt;}
.y48_c00355{bottom:880.266667pt;}
.y9_c00355{bottom:885.466667pt;}
.y47_c00355{bottom:896.266667pt;}
.y8_c00355{bottom:901.466667pt;}
.y46_c00355{bottom:912.266667pt;}
.y7_c00355{bottom:917.733333pt;}
.y45_c00355{bottom:930.800000pt;}
.y6_c00355{bottom:933.200000pt;}
.y44_c00355{bottom:948.133333pt;}
.y5_c00355{bottom:952.666667pt;}
.y43_c00355{bottom:964.000000pt;}
.y4_c00355{bottom:979.466667pt;}
.y42_c00355{bottom:983.466667pt;}
.y3_c00355{bottom:996.133333pt;}
.y41_c00355{bottom:999.733333pt;}
.y1_c00355{bottom:1016.933333pt;}
.y2_c00355{bottom:1020.800000pt;}
.h9_c00355{height:32.000000pt;}
.h7_c00355{height:42.666667pt;}
.h6_c00355{height:48.000000pt;}
.h5_c00355{height:53.333333pt;}
.h2_c00355{height:58.666667pt;}
.h8_c00355{height:64.000000pt;}
.h3_c00355{height:69.333333pt;}
.h4_c00355{height:74.666667pt;}
.ha_c00355{height:250.666667pt;}
.h0_c00355{height:1134.399984pt;}
.h1_c00355{height:1134.666667pt;}
.w0_c00355{width:853.760009pt;}
.w1_c00355{width:854.000000pt;}
.x0_c00355{left:0.000000pt;}
.x1_c00355{left:170.933333pt;}
.xf_c00355{left:175.333333pt;}
.x83_c00355{left:180.800000pt;}
.x4_c00355{left:188.133333pt;}
.xb_c00355{left:189.333333pt;}
.x26_c00355{left:191.066667pt;}
.x45_c00355{left:192.133333pt;}
.x85_c00355{left:196.666667pt;}
.x8b_c00355{left:197.600000pt;}
.x90_c00355{left:199.200000pt;}
.xa6_c00355{left:200.133333pt;}
.xa9_c00355{left:201.600000pt;}
.x66_c00355{left:203.200000pt;}
.x7d_c00355{left:204.800000pt;}
.x15_c00355{left:206.266667pt;}
.xac_c00355{left:208.133333pt;}
.xc_c00355{left:210.800000pt;}
.x10_c00355{left:213.466667pt;}
.x1d_c00355{left:214.400000pt;}
.x47_c00355{left:215.333333pt;}
.xa1_c00355{left:217.333333pt;}
.x6c_c00355{left:218.266667pt;}
.x5_c00355{left:219.200000pt;}
.xaf_c00355{left:220.266667pt;}
.x4a_c00355{left:221.466667pt;}
.x71_c00355{left:222.400000pt;}
.x1e_c00355{left:224.266667pt;}
.xa7_c00355{left:225.466667pt;}
.x2d_c00355{left:226.800000pt;}
.x4f_c00355{left:227.866667pt;}
.x54_c00355{left:230.000000pt;}
.x58_c00355{left:231.066667pt;}
.x3e_c00355{left:232.133333pt;}
.x9d_c00355{left:233.733333pt;}
.x32_c00355{left:236.133333pt;}
.x67_c00355{left:238.133333pt;}
.x72_c00355{left:240.000000pt;}
.x77_c00355{left:240.933333pt;}
.x4b_c00355{left:242.266667pt;}
.x11_c00355{left:244.133333pt;}
.x27_c00355{left:245.733333pt;}
.x3a_c00355{left:246.800000pt;}
.x96_c00355{left:248.000000pt;}
.xa2_c00355{left:249.066667pt;}
.x68_c00355{left:250.666667pt;}
.x88_c00355{left:252.933333pt;}
.xb0_c00355{left:253.866667pt;}
.x50_c00355{left:254.800000pt;}
.xd_c00355{left:256.266667pt;}
.xa8_c00355{left:257.200000pt;}
.x1f_c00355{left:258.533333pt;}
.x99_c00355{left:259.866667pt;}
.x59_c00355{left:261.466667pt;}
.x16_c00355{left:263.200000pt;}
.x3f_c00355{left:265.066667pt;}
.x3b_c00355{left:267.600000pt;}
.x33_c00355{left:269.466667pt;}
.x8c_c00355{left:272.133333pt;}
.xaa_c00355{left:273.200000pt;}
.x5f_c00355{left:274.266667pt;}
.x48_c00355{left:275.466667pt;}
.x82_c00355{left:277.066667pt;}
.x91_c00355{left:279.200000pt;}
.x86_c00355{left:280.400000pt;}
.x40_c00355{left:281.333333pt;}
.xe_c00355{left:282.800000pt;}
.x17_c00355{left:284.933333pt;}
.x73_c00355{left:287.066667pt;}
.x3c_c00355{left:288.400000pt;}
.xb1_c00355{left:290.666667pt;}
.x51_c00355{left:291.600000pt;}
.x20_c00355{left:293.466667pt;}
.x28_c00355{left:294.666667pt;}
.x7f_c00355{left:296.533333pt;}
.x5a_c00355{left:297.600000pt;}
.x46_c00355{left:302.000000pt;}
.x5b_c00355{left:303.733333pt;}
.x55_c00355{left:304.800000pt;}
.x78_c00355{left:306.533333pt;}
.x87_c00355{left:307.600000pt;}
.x34_c00355{left:309.733333pt;}
.x18_c00355{left:311.466667pt;}
.x97_c00355{left:313.600000pt;}
.x6_c00355{left:314.933333pt;}
.xa3_c00355{left:316.000000pt;}
.x60_c00355{left:318.000000pt;}
.x12_c00355{left:319.600000pt;}
.x29_c00355{left:322.133333pt;}
.x61_c00355{left:324.400000pt;}
.x2e_c00355{left:326.533333pt;}
.x7e_c00355{left:327.600000pt;}
.xa4_c00355{left:329.066667pt;}
.xad_c00355{left:330.933333pt;}
.x4c_c00355{left:331.866667pt;}
.x69_c00355{left:333.600000pt;}
.x7_c00355{left:335.466667pt;}
.x19_c00355{left:336.400000pt;}
.x41_c00355{left:338.400000pt;}
.x2a_c00355{left:339.466667pt;}
.x5c_c00355{left:342.133333pt;}
.x62_c00355{left:343.866667pt;}
.x6d_c00355{left:344.800000pt;}
.x2f_c00355{left:347.066667pt;}
.x80_c00355{left:348.266667pt;}
.xae_c00355{left:349.200000pt;}
.x63_c00355{left:350.933333pt;}
.x13_c00355{left:352.266667pt;}
.x21_c00355{left:353.600000pt;}
.x1a_c00355{left:354.666667pt;}
.x9e_c00355{left:356.000000pt;}
.x5d_c00355{left:357.466667pt;}
.x42_c00355{left:359.466667pt;}
.x8_c00355{left:360.800000pt;}
.x6a_c00355{left:362.666667pt;}
.x74_c00355{left:365.333333pt;}
.x98_c00355{left:368.000000pt;}
.x79_c00355{left:369.333333pt;}
.x1b_c00355{left:370.400000pt;}
.x84_c00355{left:372.666667pt;}
.x2b_c00355{left:373.733333pt;}
.x95_c00355{left:375.866667pt;}
.x22_c00355{left:376.933333pt;}
.x52_c00355{left:378.266667pt;}
.x6b_c00355{left:380.000000pt;}
.x64_c00355{left:383.200000pt;}
.x35_c00355{left:384.933333pt;}
.x5e_c00355{left:386.266667pt;}
.x89_c00355{left:388.000000pt;}
.x70_c00355{left:390.666667pt;}
.x3d_c00355{left:393.333333pt;}
.x2_c00355{left:394.666667pt;}
.x23_c00355{left:396.400000pt;}
.x75_c00355{left:397.333333pt;}
.x36_c00355{left:399.066667pt;}
.x9c_c00355{left:401.200000pt;}
.x8d_c00355{left:402.400000pt;}
.x14_c00355{left:404.400000pt;}
.x9_c00355{left:407.200000pt;}
.x43_c00355{left:409.066667pt;}
.x4d_c00355{left:410.266667pt;}
.x92_c00355{left:411.866667pt;}
.x65_c00355{left:413.200000pt;}
.x76_c00355{left:414.266667pt;}
.x7a_c00355{left:415.733333pt;}
.x49_c00355{left:417.466667pt;}
.x2c_c00355{left:422.000000pt;}
.x8e_c00355{left:423.466667pt;}
.x93_c00355{left:424.666667pt;}
.x9a_c00355{left:427.866667pt;}
.x37_c00355{left:428.800000pt;}
.xb2_c00355{left:431.200000pt;}
.x56_c00355{left:432.400000pt;}
.xa5_c00355{left:433.466667pt;}
.x24_c00355{left:434.533333pt;}
.x30_c00355{left:439.066667pt;}
.x6e_c00355{left:440.400000pt;}
.x1c_c00355{left:441.466667pt;}
.x7b_c00355{left:442.933333pt;}
.x8a_c00355{left:444.000000pt;}
.x9f_c00355{left:445.200000pt;}
.x38_c00355{left:446.133333pt;}
.x8f_c00355{left:447.200000pt;}
.x44_c00355{left:448.133333pt;}
.x94_c00355{left:451.200000pt;}
.x53_c00355{left:452.533333pt;}
.x31_c00355{left:454.800000pt;}
.xa0_c00355{left:458.266667pt;}
.x39_c00355{left:460.533333pt;}
.x7c_c00355{left:462.133333pt;}
.x57_c00355{left:463.066667pt;}
.xa_c00355{left:464.800000pt;}
.x6f_c00355{left:466.666667pt;}
.x81_c00355{left:468.000000pt;}
.x9b_c00355{left:469.466667pt;}
.xab_c00355{left:478.800000pt;}
.x25_c00355{left:483.866667pt;}
.x4e_c00355{left:485.466667pt;}
.xb3_c00355{left:487.066667pt;}
.xd8_c00355{left:493.733333pt;}
.x112_c00355{left:496.000000pt;}
.x12c_c00355{left:499.200000pt;}
.x149_c00355{left:500.133333pt;}
.xb4_c00355{left:508.800000pt;}
.xcb_c00355{left:509.733333pt;}
.xf7_c00355{left:510.666667pt;}
.x111_c00355{left:512.666667pt;}
.x119_c00355{left:514.266667pt;}
.x135_c00355{left:515.333333pt;}
.x13d_c00355{left:516.266667pt;}
.x151_c00355{left:517.733333pt;}
.x156_c00355{left:519.200000pt;}
.x11a_c00355{left:521.333333pt;}
.xe4_c00355{left:524.000000pt;}
.xc4_c00355{left:526.400000pt;}
.x14b_c00355{left:529.733333pt;}
.xef_c00355{left:531.466667pt;}
.xbc_c00355{left:534.400000pt;}
.xd3_c00355{left:536.800000pt;}
.x140_c00355{left:540.133333pt;}
.xf0_c00355{left:541.066667pt;}
.x144_c00355{left:544.533333pt;}
.xb5_c00355{left:545.866667pt;}
.xd9_c00355{left:547.466667pt;}
.x125_c00355{left:548.933333pt;}
.x115_c00355{left:550.400000pt;}
.x152_c00355{left:554.133333pt;}
.xd4_c00355{left:555.066667pt;}
.x11b_c00355{left:556.800000pt;}
.xbd_c00355{left:557.733333pt;}
.x155_c00355{left:558.800000pt;}
.x130_c00355{left:561.066667pt;}
.xc5_c00355{left:562.266667pt;}
.xf8_c00355{left:563.733333pt;}
.x102_c00355{left:566.933333pt;}
.x145_c00355{left:567.866667pt;}
.xcc_c00355{left:569.200000pt;}
.x123_c00355{left:570.133333pt;}
.x11c_c00355{left:572.533333pt;}
.x12a_c00355{left:573.466667pt;}
.x14a_c00355{left:576.000000pt;}
.xde_c00355{left:577.600000pt;}
.x113_c00355{left:578.933333pt;}
.xb6_c00355{left:580.800000pt;}
.xda_c00355{left:582.933333pt;}
.xc6_c00355{left:584.400000pt;}
.xf1_c00355{left:585.866667pt;}
.x12e_c00355{left:588.133333pt;}
.x116_c00355{left:589.066667pt;}
.xcd_c00355{left:590.266667pt;}
.xe5_c00355{left:591.866667pt;}
.xd5_c00355{left:594.400000pt;}
.x138_c00355{left:595.333333pt;}
.xec_c00355{left:597.733333pt;}
.xbe_c00355{left:599.333333pt;}
.xdb_c00355{left:601.200000pt;}
.xfe_c00355{left:603.466667pt;}
.xc7_c00355{left:605.866667pt;}
.x146_c00355{left:607.866667pt;}
.x139_c00355{left:608.800000pt;}
.x117_c00355{left:610.533333pt;}
.xf9_c00355{left:611.466667pt;}
.xd6_c00355{left:615.866667pt;}
.x132_c00355{left:618.133333pt;}
.xbf_c00355{left:619.466667pt;}
.x108_c00355{left:620.400000pt;}
.xe6_c00355{left:623.200000pt;}
.x154_c00355{left:625.333333pt;}
.xce_c00355{left:628.000000pt;}
.x109_c00355{left:629.066667pt;}
.xd7_c00355{left:630.533333pt;}
.xf2_c00355{left:632.533333pt;}
.x114_c00355{left:633.600000pt;}
.x14d_c00355{left:634.666667pt;}
.x12b_c00355{left:635.600000pt;}
.xfa_c00355{left:637.066667pt;}
.x103_c00355{left:638.000000pt;}
.xb7_c00355{left:639.733333pt;}
.x10a_c00355{left:641.200000pt;}
.xe7_c00355{left:642.400000pt;}
.x12d_c00355{left:643.866667pt;}
.xdf_c00355{left:645.733333pt;}
.x12f_c00355{left:646.666667pt;}
.x10d_c00355{left:647.733333pt;}
.x11f_c00355{left:649.333333pt;}
.xdc_c00355{left:651.466667pt;}
.x104_c00355{left:652.400000pt;}
.xc0_c00355{left:653.733333pt;}
.xed_c00355{left:655.600000pt;}
.x10b_c00355{left:657.200000pt;}
.x15a_c00355{left:659.733333pt;}
.x126_c00355{left:660.800000pt;}
.xc1_c00355{left:662.400000pt;}
.xe0_c00355{left:664.933333pt;}
.x11d_c00355{left:666.533333pt;}
.xb8_c00355{left:668.533333pt;}
.x13a_c00355{left:670.533333pt;}
.x120_c00355{left:671.466667pt;}
.x141_c00355{left:673.200000pt;}
.xe8_c00355{left:674.400000pt;}
.x136_c00355{left:676.800000pt;}
.xcf_c00355{left:679.200000pt;}
.xfb_c00355{left:680.533333pt;}
.x13e_c00355{left:681.466667pt;}
.xe9_c00355{left:682.666667pt;}
.x147_c00355{left:683.733333pt;}
.xff_c00355{left:685.066667pt;}
.x118_c00355{left:687.066667pt;}
.x157_c00355{left:688.666667pt;}
.x142_c00355{left:690.133333pt;}
.x13b_c00355{left:691.333333pt;}
.x10e_c00355{left:692.533333pt;}
.xf3_c00355{left:694.266667pt;}
.x127_c00355{left:699.866667pt;}
.xc8_c00355{left:700.933333pt;}
.xea_c00355{left:702.533333pt;}
.x105_c00355{left:704.266667pt;}
.xb9_c00355{left:705.600000pt;}
.xf4_c00355{left:707.733333pt;}
.xc2_c00355{left:709.066667pt;}
.x137_c00355{left:710.133333pt;}
.xfc_c00355{left:711.600000pt;}
.x143_c00355{left:712.533333pt;}
.xd0_c00355{left:714.400000pt;}
.xdd_c00355{left:715.466667pt;}
.x10f_c00355{left:717.200000pt;}
.xee_c00355{left:719.600000pt;}
.x10c_c00355{left:721.866667pt;}
.x148_c00355{left:723.200000pt;}
.x122_c00355{left:724.933333pt;}
.xc3_c00355{left:726.666667pt;}
.xc9_c00355{left:729.733333pt;}
.xd1_c00355{left:731.733333pt;}
.xe1_c00355{left:734.000000pt;}
.x124_c00355{left:735.466667pt;}
.xba_c00355{left:739.200000pt;}
.x14e_c00355{left:741.866667pt;}
.x13c_c00355{left:743.466667pt;}
.x121_c00355{left:745.066667pt;}
.x100_c00355{left:748.400000pt;}
.x128_c00355{left:750.400000pt;}
.xfd_c00355{left:751.600000pt;}
.xf5_c00355{left:753.200000pt;}
.x131_c00355{left:754.800000pt;}
.xeb_c00355{left:756.933333pt;}
.x133_c00355{left:762.000000pt;}
.x3_c00355{left:764.266667pt;}
.xe2_c00355{left:766.266667pt;}
.x150_c00355{left:767.333333pt;}
.x110_c00355{left:768.400000pt;}
.xf6_c00355{left:770.533333pt;}
.x153_c00355{left:771.733333pt;}
.x101_c00355{left:773.066667pt;}
.x158_c00355{left:774.000000pt;}
.x106_c00355{left:774.933333pt;}
.xd2_c00355{left:776.800000pt;}
.xca_c00355{left:778.400000pt;}
.x14f_c00355{left:780.266667pt;}
.xe3_c00355{left:783.200000pt;}
.xbb_c00355{left:784.266667pt;}
.x13f_c00355{left:785.466667pt;}
.x11e_c00355{left:786.533333pt;}
.x134_c00355{left:788.266667pt;}
.x129_c00355{left:789.733333pt;}
.x15c_c00355{left:792.000000pt;}
.x15b_c00355{left:793.600000pt;}
.x107_c00355{left:795.466667pt;}
.x14c_c00355{left:797.466667pt;}
.x159_c00355{left:799.733333pt;}
.x15d_c00355{left:804.800000pt;}
}





/* 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_c00356 {
    display:none;
  }
  .loading-indicator_c00356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00356 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_c00356 { 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_c00356" -> "#page-container .classname_c00356")
 */
.pf_c00356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00356 { /* 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_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00356 { /* 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_c00356 { /* 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_c00356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00356 {overflow:visible;}
  }
}
.c_c00356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00356 { /* 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_c00356:after { /* webkit #35443 */
  content: '';
}
.t_c00356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00356 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 */
}
.__c00356 { /* 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_c00356 { /* info for Javascript */
  display:none;
}
.l_c00356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00356: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_c00356 {
    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_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00356.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_c00356 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00356;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.000000;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;}
.m104_c00356{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00356{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00356{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00356{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00356{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00356{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00356{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00356{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m34_c00356{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00356{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me_c00356{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00356{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00356{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00356{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00356{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00356{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m102_c00356{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m57_c00356{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00356{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00356{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m97_c00356{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00356{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m73_c00356{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00356{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m42_c00356{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m100_c00356{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00356{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.mde_c00356{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00356{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00356{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00356{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00356{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m27_c00356{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me0_c00356{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00356{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00356{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m74_c00356{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m33_c00356{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00356{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m96_c00356{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m16_c00356{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m48_c00356{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.me3_c00356{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00356{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m14_c00356{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m43_c00356{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00356{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m65_c00356{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m30_c00356{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00356{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m21_c00356{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00356{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00356{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.maa_c00356{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00356{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00356{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m29_c00356{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m105_c00356{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mae_c00356{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma_c00356{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00356{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00356{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.me8_c00356{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00356{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00356{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m55_c00356{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00356{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md8_c00356{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00356{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m56_c00356{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00356{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m44_c00356{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m26_c00356{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m59_c00356{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00356{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mda_c00356{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m51_c00356{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00356{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m54_c00356{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m68_c00356{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00356{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00356{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m109_c00356{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00356{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md4_c00356{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m80_c00356{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m89_c00356{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.md9_c00356{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m69_c00356{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m24_c00356{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.md7_c00356{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m47_c00356{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.med_c00356{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m38_c00356{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10_c00356{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00356{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m70_c00356{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md3_c00356{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2_c00356{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00356{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m35_c00356{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m15_c00356{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m45_c00356{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00356{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00356{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00356{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mea_c00356{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00356{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m11_c00356{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00356{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m31_c00356{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me6_c00356{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m106_c00356{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m20_c00356{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m71_c00356{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m94_c00356{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00356{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m63_c00356{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mee_c00356{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m50_c00356{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00356{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00356{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m32_c00356{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me5_c00356{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m28_c00356{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00356{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me4_c00356{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mf_c00356{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00356{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc_c00356{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00356{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00356{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m46_c00356{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md_c00356{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m53_c00356{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m4_c00356{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00356{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00356{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m41_c00356{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00356{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m93_c00356{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00356{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00356{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00356{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m84_c00356{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00356{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mef_c00356{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m58_c00356{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00356{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00356{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m85_c00356{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me9_c00356{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m19_c00356{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m36_c00356{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m86_c00356{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m17_c00356{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m107_c00356{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00356{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m37_c00356{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m90_c00356{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8_c00356{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m87_c00356{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m66_c00356{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00356{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00356{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m49_c00356{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m72_c00356{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00356{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mce_c00356{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m81_c00356{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00356{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.maf_c00356{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m13_c00356{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00356{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00356{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00356{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00356{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00356{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00356{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m82_c00356{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.me7_c00356{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6_c00356{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m83_c00356{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m103_c00356{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m25_c00356{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m23_c00356{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.meb_c00356{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mca_c00356{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00356{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m88_c00356{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00356{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00356{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md6_c00356{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m52_c00356{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00356{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m5_c00356{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m77_c00356{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.md5_c00356{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mab_c00356{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3_c00356{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00356{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00356{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00356{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9_c00356{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00356{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m92_c00356{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00356{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m79_c00356{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m40_c00356{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00356{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00356{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m64_c00356{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m98_c00356{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m91_c00356{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m22_c00356{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb_c00356{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mba_c00356{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00356{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00356{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00356{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m101_c00356{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00356{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m67_c00356{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00356{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m75_c00356{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m99_c00356{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m95_c00356{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00356{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mec_c00356{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00356{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);}
.m3d_c00356{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00356{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00356{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m18_c00356{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00356{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me1_c00356{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m12_c00356{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00356{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00356{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00356{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00356{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m62_c00356{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00356{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m39_c00356{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00356{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00356{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00356{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00356{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mac_c00356{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mff_c00356{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m76_c00356{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.md0_c00356{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m60_c00356{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m108_c00356{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m78_c00356{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00356{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00356{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.md2_c00356{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m61_c00356{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md1_c00356{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00356{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.me2_c00356{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00356{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00356{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mad_c00356{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00356{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00356{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls2_c00356{letter-spacing:0.000000px;}
.ls0_c00356{letter-spacing:55.714286px;}
.ls1_c00356{letter-spacing:70.000000px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{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__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00356{word-spacing:-100.000000px;}
.ws9_c00356{word-spacing:-85.714286px;}
.ws2_c00356{word-spacing:-6.455587px;}
.ws3_c00356{word-spacing:-6.008086px;}
.wsd_c00356{word-spacing:-3.209607px;}
.ws4_c00356{word-spacing:-1.363636px;}
.wse_c00356{word-spacing:0.000000px;}
.ws1_c00356{word-spacing:0.155609px;}
.wsb_c00356{word-spacing:1.098250px;}
.wsc_c00356{word-spacing:7.584906px;}
.ws0_c00356{word-spacing:11.043668px;}
.ws5_c00356{word-spacing:25.714286px;}
.ws8_c00356{word-spacing:29.285714px;}
.ws6_c00356{word-spacing:54.705882px;}
.ws7_c00356{word-spacing:61.250000px;}
._3_c00356{margin-left:-70.000000px;}
._2_c00356{margin-left:-55.714286px;}
._0_c00356{width:59.285714px;}
._1_c00356{width:230.714286px;}
.fc0_c00356{color:transparent;}
.fs6_c00356{font-size:30.000000px;}
.fs5_c00356{font-size:54.000000px;}
.fs4_c00356{font-size:60.000000px;}
.fs2_c00356{font-size:66.000000px;}
.fs3_c00356{font-size:72.000000px;}
.fs1_c00356{font-size:78.000000px;}
.fs0_c00356{font-size:84.000000px;}
.y0_c00356{bottom:0.000000px;}
.y38_c00356{bottom:161.250000px;}
.y68_c00356{bottom:169.950000px;}
.y67_c00356{bottom:187.200000px;}
.y37_c00356{bottom:187.800000px;}
.y66_c00356{bottom:201.600000px;}
.y36_c00356{bottom:205.800000px;}
.y65_c00356{bottom:216.000000px;}
.y35_c00356{bottom:223.500000px;}
.y64_c00356{bottom:230.100000px;}
.y34_c00356{bottom:241.500000px;}
.y63_c00356{bottom:243.750000px;}
.y62_c00356{bottom:258.900000px;}
.y33_c00356{bottom:267.450000px;}
.y32_c00356{bottom:280.800000px;}
.y31_c00356{bottom:296.250000px;}
.y61_c00356{bottom:299.550000px;}
.y30_c00356{bottom:310.350000px;}
.y60_c00356{bottom:317.850000px;}
.y2f_c00356{bottom:324.750000px;}
.y2e_c00356{bottom:339.000000px;}
.y5f_c00356{bottom:339.900000px;}
.y2d_c00356{bottom:353.100000px;}
.y5e_c00356{bottom:357.900000px;}
.y2c_c00356{bottom:367.950000px;}
.y2b_c00356{bottom:382.650000px;}
.y5d_c00356{bottom:389.550000px;}
.y2a_c00356{bottom:396.750000px;}
.y5c_c00356{bottom:410.400000px;}
.y29_c00356{bottom:410.700000px;}
.y28_c00356{bottom:425.100000px;}
.y5b_c00356{bottom:432.150000px;}
.y27_c00356{bottom:439.500000px;}
.y5a_c00356{bottom:451.950000px;}
.y26_c00356{bottom:454.650000px;}
.y59_c00356{bottom:469.200000px;}
.y25_c00356{bottom:474.000000px;}
.y58_c00356{bottom:487.200000px;}
.y24_c00356{bottom:492.000000px;}
.y57_c00356{bottom:504.900000px;}
.y23_c00356{bottom:510.000000px;}
.y56_c00356{bottom:522.900000px;}
.y22_c00356{bottom:527.700000px;}
.y55_c00356{bottom:540.600000px;}
.y21_c00356{bottom:550.050000px;}
.y54_c00356{bottom:558.600000px;}
.y20_c00356{bottom:567.750000px;}
.y53_c00356{bottom:576.600000px;}
.y1f_c00356{bottom:585.750000px;}
.y52_c00356{bottom:594.600000px;}
.y1e_c00356{bottom:608.100000px;}
.y51_c00356{bottom:612.300000px;}
.y1d_c00356{bottom:626.100000px;}
.y50_c00356{bottom:630.300000px;}
.y4f_c00356{bottom:648.000000px;}
.y1c_c00356{bottom:652.650000px;}
.y4e_c00356{bottom:666.000000px;}
.y1b_c00356{bottom:670.650000px;}
.y4d_c00356{bottom:684.000000px;}
.y1a_c00356{bottom:688.650000px;}
.y4c_c00356{bottom:704.850000px;}
.y19_c00356{bottom:710.700000px;}
.y4b_c00356{bottom:725.100000px;}
.y18_c00356{bottom:728.700000px;}
.y4a_c00356{bottom:743.100000px;}
.y17_c00356{bottom:746.700000px;}
.y49_c00356{bottom:760.800000px;}
.y16_c00356{bottom:763.950000px;}
.y48_c00356{bottom:779.100000px;}
.y15_c00356{bottom:781.950000px;}
.y14_c00356{bottom:799.950000px;}
.y47_c00356{bottom:801.300000px;}
.y13_c00356{bottom:817.950000px;}
.y46_c00356{bottom:819.300000px;}
.y12_c00356{bottom:835.200000px;}
.y45_c00356{bottom:837.000000px;}
.y11_c00356{bottom:853.200000px;}
.y44_c00356{bottom:858.900000px;}
.y10_c00356{bottom:871.200000px;}
.y43_c00356{bottom:876.600000px;}
.yf_c00356{bottom:888.900000px;}
.ye_c00356{bottom:906.900000px;}
.y42_c00356{bottom:907.200000px;}
.yd_c00356{bottom:929.100000px;}
.y41_c00356{bottom:933.450000px;}
.yc_c00356{bottom:947.100000px;}
.y40_c00356{bottom:955.200000px;}
.yb_c00356{bottom:965.100000px;}
.y3f_c00356{bottom:973.200000px;}
.ya_c00356{bottom:986.700000px;}
.y3e_c00356{bottom:990.900000px;}
.y9_c00356{bottom:1004.700000px;}
.y3d_c00356{bottom:1008.900000px;}
.y8_c00356{bottom:1022.700000px;}
.y3c_c00356{bottom:1026.900000px;}
.y7_c00356{bottom:1040.700000px;}
.y3b_c00356{bottom:1044.600000px;}
.y6_c00356{bottom:1058.400000px;}
.y3a_c00356{bottom:1062.300000px;}
.y5_c00356{bottom:1076.400000px;}
.y39_c00356{bottom:1080.300000px;}
.y4_c00356{bottom:1098.000000px;}
.y3_c00356{bottom:1116.000000px;}
.y2_c00356{bottom:1141.200000px;}
.y1_c00356{bottom:1143.000000px;}
.h8_c00356{height:30.000000px;}
.h7_c00356{height:54.000000px;}
.h6_c00356{height:60.000000px;}
.h4_c00356{height:66.000000px;}
.h5_c00356{height:72.000000px;}
.h3_c00356{height:78.000000px;}
.h2_c00356{height:84.000000px;}
.h1_c00356{height:1270.500000px;}
.h0_c00356{height:1270.799927px;}
.w0_c00356{width:960.480010px;}
.w1_c00356{width:960.750000px;}
.x0_c00356{left:0.000000px;}
.xa8_c00356{left:91.500000px;}
.x8e_c00356{left:92.550000px;}
.x6c_c00356{left:94.350000px;}
.x3c_c00356{left:96.150000px;}
.xa9_c00356{left:99.000000px;}
.x92_c00356{left:106.350000px;}
.xaa_c00356{left:107.700000px;}
.xad_c00356{left:108.750000px;}
.x89_c00356{left:110.400000px;}
.x34_c00356{left:112.050000px;}
.x66_c00356{left:113.100000px;}
.x9_c00356{left:114.300000px;}
.x3_c00356{left:115.500000px;}
.x99_c00356{left:121.200000px;}
.x47_c00356{left:127.800000px;}
.x7a_c00356{left:129.900000px;}
.x70_c00356{left:131.700000px;}
.xc_c00356{left:133.950000px;}
.x63_c00356{left:135.300000px;}
.x93_c00356{left:136.950000px;}
.x27_c00356{left:140.400000px;}
.xa_c00356{left:142.800000px;}
.x18_c00356{left:148.650000px;}
.x55_c00356{left:149.850000px;}
.x50_c00356{left:151.350000px;}
.x3d_c00356{left:152.700000px;}
.xab_c00356{left:154.500000px;}
.x8a_c00356{left:156.450000px;}
.x2f_c00356{left:158.100000px;}
.xb_c00356{left:160.050000px;}
.x48_c00356{left:161.550000px;}
.x6d_c00356{left:163.800000px;}
.xa2_c00356{left:165.000000px;}
.x20_c00356{left:167.100000px;}
.x3a_c00356{left:168.450000px;}
.x51_c00356{left:170.400000px;}
.x4_c00356{left:171.600000px;}
.x35_c00356{left:173.250000px;}
.x28_c00356{left:174.300000px;}
.x43_c00356{left:175.350000px;}
.x19_c00356{left:178.200000px;}
.x76_c00356{left:179.250000px;}
.x7f_c00356{left:180.750000px;}
.x21_c00356{left:182.250000px;}
.x9a_c00356{left:183.900000px;}
.x6e_c00356{left:186.450000px;}
.x8b_c00356{left:187.800000px;}
.x94_c00356{left:189.150000px;}
.x71_c00356{left:191.400000px;}
.x67_c00356{left:192.750000px;}
.x49_c00356{left:194.250000px;}
.x77_c00356{left:195.450000px;}
.xd_c00356{left:197.700000px;}
.x7b_c00356{left:199.350000px;}
.x97_c00356{left:201.600000px;}
.x1a_c00356{left:203.100000px;}
.xa6_c00356{left:205.050000px;}
.xa1_c00356{left:206.400000px;}
.x56_c00356{left:208.200000px;}
.x4a_c00356{left:210.150000px;}
.x84_c00356{left:212.400000px;}
.xa4_c00356{left:213.450000px;}
.x29_c00356{left:214.650000px;}
.x60_c00356{left:216.750000px;}
.x80_c00356{left:218.550000px;}
.x13_c00356{left:219.600000px;}
.x9e_c00356{left:220.800000px;}
.x5_c00356{left:222.000000px;}
.xe_c00356{left:223.200000px;}
.x44_c00356{left:224.700000px;}
.x7c_c00356{left:226.350000px;}
.x81_c00356{left:227.550000px;}
.x59_c00356{left:229.050000px;}
.x8c_c00356{left:230.250000px;}
.x5d_c00356{left:232.800000px;}
.x22_c00356{left:234.450000px;}
.x3e_c00356{left:235.800000px;}
.x95_c00356{left:237.000000px;}
.xa3_c00356{left:239.250000px;}
.x52_c00356{left:240.600000px;}
.x9f_c00356{left:242.250000px;}
.x3b_c00356{left:243.750000px;}
.x6a_c00356{left:245.250000px;}
.x8d_c00356{left:246.450000px;}
.xa7_c00356{left:248.550000px;}
.x1b_c00356{left:249.900000px;}
.x23_c00356{left:250.950000px;}
.x4b_c00356{left:252.600000px;}
.x64_c00356{left:254.550000px;}
.x7d_c00356{left:255.900000px;}
.x5e_c00356{left:257.700000px;}
.x4c_c00356{left:260.550000px;}
.x6_c00356{left:263.100000px;}
.x82_c00356{left:265.350000px;}
.x2a_c00356{left:268.950000px;}
.x3f_c00356{left:271.500000px;}
.x8f_c00356{left:273.000000px;}
.x45_c00356{left:274.350000px;}
.x57_c00356{left:275.850000px;}
.x85_c00356{left:277.200000px;}
.x4d_c00356{left:278.250000px;}
.x96_c00356{left:279.900000px;}
.x46_c00356{left:283.050000px;}
.x78_c00356{left:284.700000px;}
.x36_c00356{left:286.650000px;}
.x7e_c00356{left:289.050000px;}
.x7_c00356{left:292.200000px;}
.x72_c00356{left:293.250000px;}
.x24_c00356{left:295.200000px;}
.x30_c00356{left:296.250000px;}
.xf_c00356{left:297.750000px;}
.x1c_c00356{left:299.250000px;}
.x40_c00356{left:302.850000px;}
.x2b_c00356{left:304.650000px;}
.xa0_c00356{left:306.000000px;}
.x31_c00356{left:307.800000px;}
.x9b_c00356{left:309.150000px;}
.x14_c00356{left:313.200000px;}
.x73_c00356{left:314.550000px;}
.x5a_c00356{left:316.500000px;}
.x2c_c00356{left:319.800000px;}
.xa5_c00356{left:322.950000px;}
.x65_c00356{left:324.450000px;}
.x5f_c00356{left:326.100000px;}
.x74_c00356{left:327.450000px;}
.x10_c00356{left:330.150000px;}
.x68_c00356{left:331.650000px;}
.x6f_c00356{left:333.000000px;}
.x1d_c00356{left:334.500000px;}
.x41_c00356{left:336.000000px;}
.x5b_c00356{left:338.400000px;}
.xac_c00356{left:342.000000px;}
.x1_c00356{left:343.050000px;}
.x11_c00356{left:344.250000px;}
.x61_c00356{left:346.050000px;}
.x4e_c00356{left:348.150000px;}
.x1e_c00356{left:349.950000px;}
.x15_c00356{left:353.100000px;}
.x32_c00356{left:355.650000px;}
.x9c_c00356{left:357.000000px;}
.x2d_c00356{left:358.350000px;}
.x83_c00356{left:361.050000px;}
.x37_c00356{left:362.250000px;}
.x86_c00356{left:363.300000px;}
.x12_c00356{left:366.900000px;}
.x75_c00356{left:368.100000px;}
.x62_c00356{left:371.550000px;}
.x38_c00356{left:373.350000px;}
.x16_c00356{left:374.700000px;}
.x5c_c00356{left:376.500000px;}
.x2e_c00356{left:378.900000px;}
.x90_c00356{left:380.250000px;}
.x87_c00356{left:381.750000px;}
.x25_c00356{left:383.100000px;}
.x9d_c00356{left:386.850000px;}
.x79_c00356{left:388.350000px;}
.x53_c00356{left:392.100000px;}
.x33_c00356{left:393.150000px;}
.x58_c00356{left:398.250000px;}
.x8_c00356{left:400.200000px;}
.x17_c00356{left:401.400000px;}
.x1f_c00356{left:402.450000px;}
.x26_c00356{left:403.650000px;}
.x6b_c00356{left:408.000000px;}
.x42_c00356{left:409.050000px;}
.x54_c00356{left:411.600000px;}
.xae_c00356{left:412.800000px;}
.x91_c00356{left:414.450000px;}
.x98_c00356{left:416.100000px;}
.x69_c00356{left:417.600000px;}
.x39_c00356{left:419.100000px;}
.x4f_c00356{left:422.700000px;}
.x88_c00356{left:426.450000px;}
.x144_c00356{left:448.800000px;}
.x137_c00356{left:450.000000px;}
.x10f_c00356{left:452.100000px;}
.xf3_c00356{left:453.300000px;}
.xf5_c00356{left:455.100000px;}
.x14a_c00356{left:460.350000px;}
.x141_c00356{left:464.100000px;}
.x13a_c00356{left:466.950000px;}
.x12b_c00356{left:468.300000px;}
.x124_c00356{left:469.350000px;}
.xf8_c00356{left:470.550000px;}
.xe4_c00356{left:472.200000px;}
.xaf_c00356{left:473.700000px;}
.x146_c00356{left:477.750000px;}
.x148_c00356{left:481.200000px;}
.x136_c00356{left:483.150000px;}
.x10e_c00356{left:484.650000px;}
.x142_c00356{left:485.700000px;}
.x145_c00356{left:488.250000px;}
.xea_c00356{left:490.500000px;}
.xc6_c00356{left:492.450000px;}
.xcd_c00356{left:495.450000px;}
.x130_c00356{left:498.900000px;}
.xfd_c00356{left:503.850000px;}
.x128_c00356{left:506.250000px;}
.x105_c00356{left:507.750000px;}
.x102_c00356{left:508.800000px;}
.xd7_c00356{left:510.600000px;}
.xce_c00356{left:512.700000px;}
.xc7_c00356{left:515.100000px;}
.xb8_c00356{left:516.750000px;}
.xc0_c00356{left:518.850000px;}
.xf4_c00356{left:519.900000px;}
.xb0_c00356{left:521.550000px;}
.xfe_c00356{left:524.700000px;}
.xd8_c00356{left:526.050000px;}
.x138_c00356{left:527.400000px;}
.xb9_c00356{left:528.600000px;}
.xde_c00356{left:530.400000px;}
.x13e_c00356{left:531.750000px;}
.x106_c00356{left:533.250000px;}
.xf9_c00356{left:534.300000px;}
.x116_c00356{left:537.450000px;}
.xc1_c00356{left:538.950000px;}
.x109_c00356{left:541.050000px;}
.xb1_c00356{left:542.850000px;}
.xeb_c00356{left:545.250000px;}
.xdf_c00356{left:546.600000px;}
.x11a_c00356{left:549.900000px;}
.xf1_c00356{left:553.500000px;}
.x107_c00356{left:555.150000px;}
.x10a_c00356{left:556.200000px;}
.x14b_c00356{left:557.550000px;}
.xe5_c00356{left:558.600000px;}
.xff_c00356{left:562.200000px;}
.x147_c00356{left:563.700000px;}
.x12c_c00356{left:564.750000px;}
.x121_c00356{left:567.150000px;}
.xcf_c00356{left:568.500000px;}
.x117_c00356{left:570.900000px;}
.xd9_c00356{left:573.150000px;}
.x11e_c00356{left:574.950000px;}
.xc8_c00356{left:577.800000px;}
.xe6_c00356{left:579.900000px;}
.x110_c00356{left:582.000000px;}
.xb2_c00356{left:583.500000px;}
.xe0_c00356{left:585.150000px;}
.xc9_c00356{left:588.300000px;}
.xc2_c00356{left:590.850000px;}
.x10b_c00356{left:592.200000px;}
.x118_c00356{left:595.200000px;}
.x11f_c00356{left:596.550000px;}
.x111_c00356{left:600.000000px;}
.xba_c00356{left:603.450000px;}
.x103_c00356{left:604.950000px;}
.xb3_c00356{left:608.400000px;}
.x149_c00356{left:610.800000px;}
.xe1_c00356{left:612.900000px;}
.x112_c00356{left:614.100000px;}
.x13f_c00356{left:616.350000px;}
.x108_c00356{left:618.150000px;}
.x12d_c00356{left:619.500000px;}
.xf2_c00356{left:620.550000px;}
.xd0_c00356{left:621.750000px;}
.xda_c00356{left:624.600000px;}
.x133_c00356{left:625.800000px;}
.xf6_c00356{left:627.150000px;}
.x119_c00356{left:630.900000px;}
.x100_c00356{left:632.700000px;}
.xe7_c00356{left:634.200000px;}
.xbb_c00356{left:635.850000px;}
.x139_c00356{left:636.900000px;}
.xec_c00356{left:638.850000px;}
.x122_c00356{left:640.650000px;}
.xfa_c00356{left:641.700000px;}
.x13b_c00356{left:642.900000px;}
.xd1_c00356{left:645.150000px;}
.x125_c00356{left:647.250000px;}
.xb4_c00356{left:648.300000px;}
.x113_c00356{left:649.800000px;}
.xca_c00356{left:653.100000px;}
.x140_c00356{left:654.150000px;}
.xc3_c00356{left:655.350000px;}
.x120_c00356{left:657.000000px;}
.x11b_c00356{left:659.100000px;}
.xe2_c00356{left:660.450000px;}
.xd2_c00356{left:663.900000px;}
.x12e_c00356{left:664.950000px;}
.xed_c00356{left:666.900000px;}
.x114_c00356{left:669.300000px;}
.x131_c00356{left:671.400000px;}
.x101_c00356{left:674.100000px;}
.x11c_c00356{left:676.800000px;}
.xe8_c00356{left:678.150000px;}
.x13c_c00356{left:679.200000px;}
.xdb_c00356{left:681.450000px;}
.x134_c00356{left:682.650000px;}
.xb5_c00356{left:686.100000px;}
.x10c_c00356{left:689.400000px;}
.xbc_c00356{left:691.350000px;}
.xd3_c00356{left:692.700000px;}
.xc4_c00356{left:694.650000px;}
.x104_c00356{left:696.000000px;}
.x135_c00356{left:702.750000px;}
.x12f_c00356{left:704.550000px;}
.x132_c00356{left:708.450000px;}
.xd4_c00356{left:709.950000px;}
.xdc_c00356{left:711.000000px;}
.x126_c00356{left:712.500000px;}
.xc5_c00356{left:714.450000px;}
.xfb_c00356{left:715.500000px;}
.xbd_c00356{left:720.450000px;}
.x127_c00356{left:721.500000px;}
.x129_c00356{left:722.550000px;}
.x115_c00356{left:724.800000px;}
.xb6_c00356{left:726.000000px;}
.xd5_c00356{left:730.800000px;}
.xee_c00356{left:732.750000px;}
.x10d_c00356{left:735.150000px;}
.x12a_c00356{left:739.350000px;}
.xcb_c00356{left:740.550000px;}
.xe9_c00356{left:744.000000px;}
.xdd_c00356{left:746.700000px;}
.xf7_c00356{left:747.750000px;}
.xb7_c00356{left:750.450000px;}
.x143_c00356{left:751.500000px;}
.xbe_c00356{left:753.600000px;}
.xef_c00356{left:756.450000px;}
.xe3_c00356{left:759.450000px;}
.xfc_c00356{left:761.250000px;}
.xcc_c00356{left:762.900000px;}
.x2_c00356{left:764.250000px;}
.xd6_c00356{left:766.500000px;}
.x123_c00356{left:770.250000px;}
.xbf_c00356{left:772.650000px;}
.x11d_c00356{left:777.150000px;}
.xf0_c00356{left:787.050000px;}
.x13d_c00356{left:794.700000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls2_c00356{letter-spacing:0.000000pt;}
.ls0_c00356{letter-spacing:49.523810pt;}
.ls1_c00356{letter-spacing:62.222222pt;}
.wsa_c00356{word-spacing:-88.888889pt;}
.ws9_c00356{word-spacing:-76.190476pt;}
.ws2_c00356{word-spacing:-5.738300pt;}
.ws3_c00356{word-spacing:-5.340521pt;}
.wsd_c00356{word-spacing:-2.852984pt;}
.ws4_c00356{word-spacing:-1.212121pt;}
.wse_c00356{word-spacing:0.000000pt;}
.ws1_c00356{word-spacing:0.138319pt;}
.wsb_c00356{word-spacing:0.976223pt;}
.wsc_c00356{word-spacing:6.742138pt;}
.ws0_c00356{word-spacing:9.816594pt;}
.ws5_c00356{word-spacing:22.857143pt;}
.ws8_c00356{word-spacing:26.031746pt;}
.ws6_c00356{word-spacing:48.627451pt;}
.ws7_c00356{word-spacing:54.444444pt;}
._3_c00356{margin-left:-62.222222pt;}
._2_c00356{margin-left:-49.523810pt;}
._0_c00356{width:52.698413pt;}
._1_c00356{width:205.079365pt;}
.fs6_c00356{font-size:26.666667pt;}
.fs5_c00356{font-size:48.000000pt;}
.fs4_c00356{font-size:53.333333pt;}
.fs2_c00356{font-size:58.666667pt;}
.fs3_c00356{font-size:64.000000pt;}
.fs1_c00356{font-size:69.333333pt;}
.fs0_c00356{font-size:74.666667pt;}
.y0_c00356{bottom:0.000000pt;}
.y38_c00356{bottom:143.333333pt;}
.y68_c00356{bottom:151.066667pt;}
.y67_c00356{bottom:166.400000pt;}
.y37_c00356{bottom:166.933333pt;}
.y66_c00356{bottom:179.200000pt;}
.y36_c00356{bottom:182.933333pt;}
.y65_c00356{bottom:192.000000pt;}
.y35_c00356{bottom:198.666667pt;}
.y64_c00356{bottom:204.533333pt;}
.y34_c00356{bottom:214.666667pt;}
.y63_c00356{bottom:216.666667pt;}
.y62_c00356{bottom:230.133333pt;}
.y33_c00356{bottom:237.733333pt;}
.y32_c00356{bottom:249.600000pt;}
.y31_c00356{bottom:263.333333pt;}
.y61_c00356{bottom:266.266667pt;}
.y30_c00356{bottom:275.866667pt;}
.y60_c00356{bottom:282.533333pt;}
.y2f_c00356{bottom:288.666667pt;}
.y2e_c00356{bottom:301.333333pt;}
.y5f_c00356{bottom:302.133333pt;}
.y2d_c00356{bottom:313.866667pt;}
.y5e_c00356{bottom:318.133333pt;}
.y2c_c00356{bottom:327.066667pt;}
.y2b_c00356{bottom:340.133333pt;}
.y5d_c00356{bottom:346.266667pt;}
.y2a_c00356{bottom:352.666667pt;}
.y5c_c00356{bottom:364.800000pt;}
.y29_c00356{bottom:365.066667pt;}
.y28_c00356{bottom:377.866667pt;}
.y5b_c00356{bottom:384.133333pt;}
.y27_c00356{bottom:390.666667pt;}
.y5a_c00356{bottom:401.733333pt;}
.y26_c00356{bottom:404.133333pt;}
.y59_c00356{bottom:417.066667pt;}
.y25_c00356{bottom:421.333333pt;}
.y58_c00356{bottom:433.066667pt;}
.y24_c00356{bottom:437.333333pt;}
.y57_c00356{bottom:448.800000pt;}
.y23_c00356{bottom:453.333333pt;}
.y56_c00356{bottom:464.800000pt;}
.y22_c00356{bottom:469.066667pt;}
.y55_c00356{bottom:480.533333pt;}
.y21_c00356{bottom:488.933333pt;}
.y54_c00356{bottom:496.533333pt;}
.y20_c00356{bottom:504.666667pt;}
.y53_c00356{bottom:512.533333pt;}
.y1f_c00356{bottom:520.666667pt;}
.y52_c00356{bottom:528.533333pt;}
.y1e_c00356{bottom:540.533333pt;}
.y51_c00356{bottom:544.266667pt;}
.y1d_c00356{bottom:556.533333pt;}
.y50_c00356{bottom:560.266667pt;}
.y4f_c00356{bottom:576.000000pt;}
.y1c_c00356{bottom:580.133333pt;}
.y4e_c00356{bottom:592.000000pt;}
.y1b_c00356{bottom:596.133333pt;}
.y4d_c00356{bottom:608.000000pt;}
.y1a_c00356{bottom:612.133333pt;}
.y4c_c00356{bottom:626.533333pt;}
.y19_c00356{bottom:631.733333pt;}
.y4b_c00356{bottom:644.533333pt;}
.y18_c00356{bottom:647.733333pt;}
.y4a_c00356{bottom:660.533333pt;}
.y17_c00356{bottom:663.733333pt;}
.y49_c00356{bottom:676.266667pt;}
.y16_c00356{bottom:679.066667pt;}
.y48_c00356{bottom:692.533333pt;}
.y15_c00356{bottom:695.066667pt;}
.y14_c00356{bottom:711.066667pt;}
.y47_c00356{bottom:712.266667pt;}
.y13_c00356{bottom:727.066667pt;}
.y46_c00356{bottom:728.266667pt;}
.y12_c00356{bottom:742.400000pt;}
.y45_c00356{bottom:744.000000pt;}
.y11_c00356{bottom:758.400000pt;}
.y44_c00356{bottom:763.466667pt;}
.y10_c00356{bottom:774.400000pt;}
.y43_c00356{bottom:779.200000pt;}
.yf_c00356{bottom:790.133333pt;}
.ye_c00356{bottom:806.133333pt;}
.y42_c00356{bottom:806.400000pt;}
.yd_c00356{bottom:825.866667pt;}
.y41_c00356{bottom:829.733333pt;}
.yc_c00356{bottom:841.866667pt;}
.y40_c00356{bottom:849.066667pt;}
.yb_c00356{bottom:857.866667pt;}
.y3f_c00356{bottom:865.066667pt;}
.ya_c00356{bottom:877.066667pt;}
.y3e_c00356{bottom:880.800000pt;}
.y9_c00356{bottom:893.066667pt;}
.y3d_c00356{bottom:896.800000pt;}
.y8_c00356{bottom:909.066667pt;}
.y3c_c00356{bottom:912.800000pt;}
.y7_c00356{bottom:925.066667pt;}
.y3b_c00356{bottom:928.533333pt;}
.y6_c00356{bottom:940.800000pt;}
.y3a_c00356{bottom:944.266667pt;}
.y5_c00356{bottom:956.800000pt;}
.y39_c00356{bottom:960.266667pt;}
.y4_c00356{bottom:976.000000pt;}
.y3_c00356{bottom:992.000000pt;}
.y2_c00356{bottom:1014.400000pt;}
.y1_c00356{bottom:1016.000000pt;}
.h8_c00356{height:26.666667pt;}
.h7_c00356{height:48.000000pt;}
.h6_c00356{height:53.333333pt;}
.h4_c00356{height:58.666667pt;}
.h5_c00356{height:64.000000pt;}
.h3_c00356{height:69.333333pt;}
.h2_c00356{height:74.666667pt;}
.h1_c00356{height:1129.333333pt;}
.h0_c00356{height:1129.599935pt;}
.w0_c00356{width:853.760009pt;}
.w1_c00356{width:854.000000pt;}
.x0_c00356{left:0.000000pt;}
.xa8_c00356{left:81.333333pt;}
.x8e_c00356{left:82.266667pt;}
.x6c_c00356{left:83.866667pt;}
.x3c_c00356{left:85.466667pt;}
.xa9_c00356{left:88.000000pt;}
.x92_c00356{left:94.533333pt;}
.xaa_c00356{left:95.733333pt;}
.xad_c00356{left:96.666667pt;}
.x89_c00356{left:98.133333pt;}
.x34_c00356{left:99.600000pt;}
.x66_c00356{left:100.533333pt;}
.x9_c00356{left:101.600000pt;}
.x3_c00356{left:102.666667pt;}
.x99_c00356{left:107.733333pt;}
.x47_c00356{left:113.600000pt;}
.x7a_c00356{left:115.466667pt;}
.x70_c00356{left:117.066667pt;}
.xc_c00356{left:119.066667pt;}
.x63_c00356{left:120.266667pt;}
.x93_c00356{left:121.733333pt;}
.x27_c00356{left:124.800000pt;}
.xa_c00356{left:126.933333pt;}
.x18_c00356{left:132.133333pt;}
.x55_c00356{left:133.200000pt;}
.x50_c00356{left:134.533333pt;}
.x3d_c00356{left:135.733333pt;}
.xab_c00356{left:137.333333pt;}
.x8a_c00356{left:139.066667pt;}
.x2f_c00356{left:140.533333pt;}
.xb_c00356{left:142.266667pt;}
.x48_c00356{left:143.600000pt;}
.x6d_c00356{left:145.600000pt;}
.xa2_c00356{left:146.666667pt;}
.x20_c00356{left:148.533333pt;}
.x3a_c00356{left:149.733333pt;}
.x51_c00356{left:151.466667pt;}
.x4_c00356{left:152.533333pt;}
.x35_c00356{left:154.000000pt;}
.x28_c00356{left:154.933333pt;}
.x43_c00356{left:155.866667pt;}
.x19_c00356{left:158.400000pt;}
.x76_c00356{left:159.333333pt;}
.x7f_c00356{left:160.666667pt;}
.x21_c00356{left:162.000000pt;}
.x9a_c00356{left:163.466667pt;}
.x6e_c00356{left:165.733333pt;}
.x8b_c00356{left:166.933333pt;}
.x94_c00356{left:168.133333pt;}
.x71_c00356{left:170.133333pt;}
.x67_c00356{left:171.333333pt;}
.x49_c00356{left:172.666667pt;}
.x77_c00356{left:173.733333pt;}
.xd_c00356{left:175.733333pt;}
.x7b_c00356{left:177.200000pt;}
.x97_c00356{left:179.200000pt;}
.x1a_c00356{left:180.533333pt;}
.xa6_c00356{left:182.266667pt;}
.xa1_c00356{left:183.466667pt;}
.x56_c00356{left:185.066667pt;}
.x4a_c00356{left:186.800000pt;}
.x84_c00356{left:188.800000pt;}
.xa4_c00356{left:189.733333pt;}
.x29_c00356{left:190.800000pt;}
.x60_c00356{left:192.666667pt;}
.x80_c00356{left:194.266667pt;}
.x13_c00356{left:195.200000pt;}
.x9e_c00356{left:196.266667pt;}
.x5_c00356{left:197.333333pt;}
.xe_c00356{left:198.400000pt;}
.x44_c00356{left:199.733333pt;}
.x7c_c00356{left:201.200000pt;}
.x81_c00356{left:202.266667pt;}
.x59_c00356{left:203.600000pt;}
.x8c_c00356{left:204.666667pt;}
.x5d_c00356{left:206.933333pt;}
.x22_c00356{left:208.400000pt;}
.x3e_c00356{left:209.600000pt;}
.x95_c00356{left:210.666667pt;}
.xa3_c00356{left:212.666667pt;}
.x52_c00356{left:213.866667pt;}
.x9f_c00356{left:215.333333pt;}
.x3b_c00356{left:216.666667pt;}
.x6a_c00356{left:218.000000pt;}
.x8d_c00356{left:219.066667pt;}
.xa7_c00356{left:220.933333pt;}
.x1b_c00356{left:222.133333pt;}
.x23_c00356{left:223.066667pt;}
.x4b_c00356{left:224.533333pt;}
.x64_c00356{left:226.266667pt;}
.x7d_c00356{left:227.466667pt;}
.x5e_c00356{left:229.066667pt;}
.x4c_c00356{left:231.600000pt;}
.x6_c00356{left:233.866667pt;}
.x82_c00356{left:235.866667pt;}
.x2a_c00356{left:239.066667pt;}
.x3f_c00356{left:241.333333pt;}
.x8f_c00356{left:242.666667pt;}
.x45_c00356{left:243.866667pt;}
.x57_c00356{left:245.200000pt;}
.x85_c00356{left:246.400000pt;}
.x4d_c00356{left:247.333333pt;}
.x96_c00356{left:248.800000pt;}
.x46_c00356{left:251.600000pt;}
.x78_c00356{left:253.066667pt;}
.x36_c00356{left:254.800000pt;}
.x7e_c00356{left:256.933333pt;}
.x7_c00356{left:259.733333pt;}
.x72_c00356{left:260.666667pt;}
.x24_c00356{left:262.400000pt;}
.x30_c00356{left:263.333333pt;}
.xf_c00356{left:264.666667pt;}
.x1c_c00356{left:266.000000pt;}
.x40_c00356{left:269.200000pt;}
.x2b_c00356{left:270.800000pt;}
.xa0_c00356{left:272.000000pt;}
.x31_c00356{left:273.600000pt;}
.x9b_c00356{left:274.800000pt;}
.x14_c00356{left:278.400000pt;}
.x73_c00356{left:279.600000pt;}
.x5a_c00356{left:281.333333pt;}
.x2c_c00356{left:284.266667pt;}
.xa5_c00356{left:287.066667pt;}
.x65_c00356{left:288.400000pt;}
.x5f_c00356{left:289.866667pt;}
.x74_c00356{left:291.066667pt;}
.x10_c00356{left:293.466667pt;}
.x68_c00356{left:294.800000pt;}
.x6f_c00356{left:296.000000pt;}
.x1d_c00356{left:297.333333pt;}
.x41_c00356{left:298.666667pt;}
.x5b_c00356{left:300.800000pt;}
.xac_c00356{left:304.000000pt;}
.x1_c00356{left:304.933333pt;}
.x11_c00356{left:306.000000pt;}
.x61_c00356{left:307.600000pt;}
.x4e_c00356{left:309.466667pt;}
.x1e_c00356{left:311.066667pt;}
.x15_c00356{left:313.866667pt;}
.x32_c00356{left:316.133333pt;}
.x9c_c00356{left:317.333333pt;}
.x2d_c00356{left:318.533333pt;}
.x83_c00356{left:320.933333pt;}
.x37_c00356{left:322.000000pt;}
.x86_c00356{left:322.933333pt;}
.x12_c00356{left:326.133333pt;}
.x75_c00356{left:327.200000pt;}
.x62_c00356{left:330.266667pt;}
.x38_c00356{left:331.866667pt;}
.x16_c00356{left:333.066667pt;}
.x5c_c00356{left:334.666667pt;}
.x2e_c00356{left:336.800000pt;}
.x90_c00356{left:338.000000pt;}
.x87_c00356{left:339.333333pt;}
.x25_c00356{left:340.533333pt;}
.x9d_c00356{left:343.866667pt;}
.x79_c00356{left:345.200000pt;}
.x53_c00356{left:348.533333pt;}
.x33_c00356{left:349.466667pt;}
.x58_c00356{left:354.000000pt;}
.x8_c00356{left:355.733333pt;}
.x17_c00356{left:356.800000pt;}
.x1f_c00356{left:357.733333pt;}
.x26_c00356{left:358.800000pt;}
.x6b_c00356{left:362.666667pt;}
.x42_c00356{left:363.600000pt;}
.x54_c00356{left:365.866667pt;}
.xae_c00356{left:366.933333pt;}
.x91_c00356{left:368.400000pt;}
.x98_c00356{left:369.866667pt;}
.x69_c00356{left:371.200000pt;}
.x39_c00356{left:372.533333pt;}
.x4f_c00356{left:375.733333pt;}
.x88_c00356{left:379.066667pt;}
.x144_c00356{left:398.933333pt;}
.x137_c00356{left:400.000000pt;}
.x10f_c00356{left:401.866667pt;}
.xf3_c00356{left:402.933333pt;}
.xf5_c00356{left:404.533333pt;}
.x14a_c00356{left:409.200000pt;}
.x141_c00356{left:412.533333pt;}
.x13a_c00356{left:415.066667pt;}
.x12b_c00356{left:416.266667pt;}
.x124_c00356{left:417.200000pt;}
.xf8_c00356{left:418.266667pt;}
.xe4_c00356{left:419.733333pt;}
.xaf_c00356{left:421.066667pt;}
.x146_c00356{left:424.666667pt;}
.x148_c00356{left:427.733333pt;}
.x136_c00356{left:429.466667pt;}
.x10e_c00356{left:430.800000pt;}
.x142_c00356{left:431.733333pt;}
.x145_c00356{left:434.000000pt;}
.xea_c00356{left:436.000000pt;}
.xc6_c00356{left:437.733333pt;}
.xcd_c00356{left:440.400000pt;}
.x130_c00356{left:443.466667pt;}
.xfd_c00356{left:447.866667pt;}
.x128_c00356{left:450.000000pt;}
.x105_c00356{left:451.333333pt;}
.x102_c00356{left:452.266667pt;}
.xd7_c00356{left:453.866667pt;}
.xce_c00356{left:455.733333pt;}
.xc7_c00356{left:457.866667pt;}
.xb8_c00356{left:459.333333pt;}
.xc0_c00356{left:461.200000pt;}
.xf4_c00356{left:462.133333pt;}
.xb0_c00356{left:463.600000pt;}
.xfe_c00356{left:466.400000pt;}
.xd8_c00356{left:467.600000pt;}
.x138_c00356{left:468.800000pt;}
.xb9_c00356{left:469.866667pt;}
.xde_c00356{left:471.466667pt;}
.x13e_c00356{left:472.666667pt;}
.x106_c00356{left:474.000000pt;}
.xf9_c00356{left:474.933333pt;}
.x116_c00356{left:477.733333pt;}
.xc1_c00356{left:479.066667pt;}
.x109_c00356{left:480.933333pt;}
.xb1_c00356{left:482.533333pt;}
.xeb_c00356{left:484.666667pt;}
.xdf_c00356{left:485.866667pt;}
.x11a_c00356{left:488.800000pt;}
.xf1_c00356{left:492.000000pt;}
.x107_c00356{left:493.466667pt;}
.x10a_c00356{left:494.400000pt;}
.x14b_c00356{left:495.600000pt;}
.xe5_c00356{left:496.533333pt;}
.xff_c00356{left:499.733333pt;}
.x147_c00356{left:501.066667pt;}
.x12c_c00356{left:502.000000pt;}
.x121_c00356{left:504.133333pt;}
.xcf_c00356{left:505.333333pt;}
.x117_c00356{left:507.466667pt;}
.xd9_c00356{left:509.466667pt;}
.x11e_c00356{left:511.066667pt;}
.xc8_c00356{left:513.600000pt;}
.xe6_c00356{left:515.466667pt;}
.x110_c00356{left:517.333333pt;}
.xb2_c00356{left:518.666667pt;}
.xe0_c00356{left:520.133333pt;}
.xc9_c00356{left:522.933333pt;}
.xc2_c00356{left:525.200000pt;}
.x10b_c00356{left:526.400000pt;}
.x118_c00356{left:529.066667pt;}
.x11f_c00356{left:530.266667pt;}
.x111_c00356{left:533.333333pt;}
.xba_c00356{left:536.400000pt;}
.x103_c00356{left:537.733333pt;}
.xb3_c00356{left:540.800000pt;}
.x149_c00356{left:542.933333pt;}
.xe1_c00356{left:544.800000pt;}
.x112_c00356{left:545.866667pt;}
.x13f_c00356{left:547.866667pt;}
.x108_c00356{left:549.466667pt;}
.x12d_c00356{left:550.666667pt;}
.xf2_c00356{left:551.600000pt;}
.xd0_c00356{left:552.666667pt;}
.xda_c00356{left:555.200000pt;}
.x133_c00356{left:556.266667pt;}
.xf6_c00356{left:557.466667pt;}
.x119_c00356{left:560.800000pt;}
.x100_c00356{left:562.400000pt;}
.xe7_c00356{left:563.733333pt;}
.xbb_c00356{left:565.200000pt;}
.x139_c00356{left:566.133333pt;}
.xec_c00356{left:567.866667pt;}
.x122_c00356{left:569.466667pt;}
.xfa_c00356{left:570.400000pt;}
.x13b_c00356{left:571.466667pt;}
.xd1_c00356{left:573.466667pt;}
.x125_c00356{left:575.333333pt;}
.xb4_c00356{left:576.266667pt;}
.x113_c00356{left:577.600000pt;}
.xca_c00356{left:580.533333pt;}
.x140_c00356{left:581.466667pt;}
.xc3_c00356{left:582.533333pt;}
.x120_c00356{left:584.000000pt;}
.x11b_c00356{left:585.866667pt;}
.xe2_c00356{left:587.066667pt;}
.xd2_c00356{left:590.133333pt;}
.x12e_c00356{left:591.066667pt;}
.xed_c00356{left:592.800000pt;}
.x114_c00356{left:594.933333pt;}
.x131_c00356{left:596.800000pt;}
.x101_c00356{left:599.200000pt;}
.x11c_c00356{left:601.600000pt;}
.xe8_c00356{left:602.800000pt;}
.x13c_c00356{left:603.733333pt;}
.xdb_c00356{left:605.733333pt;}
.x134_c00356{left:606.800000pt;}
.xb5_c00356{left:609.866667pt;}
.x10c_c00356{left:612.800000pt;}
.xbc_c00356{left:614.533333pt;}
.xd3_c00356{left:615.733333pt;}
.xc4_c00356{left:617.466667pt;}
.x104_c00356{left:618.666667pt;}
.x135_c00356{left:624.666667pt;}
.x12f_c00356{left:626.266667pt;}
.x132_c00356{left:629.733333pt;}
.xd4_c00356{left:631.066667pt;}
.xdc_c00356{left:632.000000pt;}
.x126_c00356{left:633.333333pt;}
.xc5_c00356{left:635.066667pt;}
.xfb_c00356{left:636.000000pt;}
.xbd_c00356{left:640.400000pt;}
.x127_c00356{left:641.333333pt;}
.x129_c00356{left:642.266667pt;}
.x115_c00356{left:644.266667pt;}
.xb6_c00356{left:645.333333pt;}
.xd5_c00356{left:649.600000pt;}
.xee_c00356{left:651.333333pt;}
.x10d_c00356{left:653.466667pt;}
.x12a_c00356{left:657.200000pt;}
.xcb_c00356{left:658.266667pt;}
.xe9_c00356{left:661.333333pt;}
.xdd_c00356{left:663.733333pt;}
.xf7_c00356{left:664.666667pt;}
.xb7_c00356{left:667.066667pt;}
.x143_c00356{left:668.000000pt;}
.xbe_c00356{left:669.866667pt;}
.xef_c00356{left:672.400000pt;}
.xe3_c00356{left:675.066667pt;}
.xfc_c00356{left:676.666667pt;}
.xcc_c00356{left:678.133333pt;}
.x2_c00356{left:679.333333pt;}
.xd6_c00356{left:681.333333pt;}
.x123_c00356{left:684.666667pt;}
.xbf_c00356{left:686.800000pt;}
.x11d_c00356{left:690.800000pt;}
.xf0_c00356{left:699.600000pt;}
.x13d_c00356{left:706.400000pt;}
}





/* 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_c00357 {
    display:none;
  }
  .loading-indicator_c00357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00357 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_c00357 { 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_c00357" -> "#page-container .classname_c00357")
 */
.pf_c00357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00357 { /* 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_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00357 { /* 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_c00357 { /* 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_c00357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00357 {overflow:visible;}
  }
}
.c_c00357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00357 { /* 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_c00357:after { /* webkit #35443 */
  content: '';
}
.t_c00357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00357 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 */
}
.__c00357 { /* 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_c00357 { /* info for Javascript */
  display:none;
}
.l_c00357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00357: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_c00357 {
    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_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00357.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_c00357 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00357;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.000000;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;}
.m68_c00357{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00357{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.me4_c00357{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00357{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m59_c00357{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00357{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m75_c00357{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m49_c00357{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00357{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m54_c00357{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md7_c00357{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m50_c00357{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m16_c00357{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mba_c00357{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00357{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00357{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00357{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m45_c00357{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00357{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00357{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00357{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00357{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m103_c00357{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00357{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00357{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m43_c00357{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m81_c00357{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m35_c00357{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00357{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m42_c00357{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00357{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00357{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00357{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00357{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mff_c00357{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.md3_c00357{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m109_c00357{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00357{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m56_c00357{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00357{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m91_c00357{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m102_c00357{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00357{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00357{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m27_c00357{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m22_c00357{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00357{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.med_c00357{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00357{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00357{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00357{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00357{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m69_c00357{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00357{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m74_c00357{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m19_c00357{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m55_c00357{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m80_c00357{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m87_c00357{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mef_c00357{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00357{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7_c00357{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00357{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m92_c00357{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m105_c00357{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m65_c00357{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00357{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m86_c00357{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00357{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00357{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00357{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m82_c00357{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m47_c00357{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m17_c00357{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m70_c00357{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m23_c00357{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.maa_c00357{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00357{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00357{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00357{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m37_c00357{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m52_c00357{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00357{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m18_c00357{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m71_c00357{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00357{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m84_c00357{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m40_c00357{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m25_c00357{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00357{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m12_c00357{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m101_c00357{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.meb_c00357{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00357{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00357{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m100_c00357{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00357{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00357{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00357{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00357{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00357{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc_c00357{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me8_c00357{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mee_c00357{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m21_c00357{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00357{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m33_c00357{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m62_c00357{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00357{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00357{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00357{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m20_c00357{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00357{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m79_c00357{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00357{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m24_c00357{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m108_c00357{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m88_c00357{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m106_c00357{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m39_c00357{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00357{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m78_c00357{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m13_c00357{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m46_c00357{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00357{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00357{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m89_c00357{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me_c00357{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m14_c00357{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m104_c00357{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.me7_c00357{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00357{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00357{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00357{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md1_c00357{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00357{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00357{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00357{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00357{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00357{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m34_c00357{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00357{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00357{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00357{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m10_c00357{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m38_c00357{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m63_c00357{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00357{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m83_c00357{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00357{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me0_c00357{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m61_c00357{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00357{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00357{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00357{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00357{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m58_c00357{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mab_c00357{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00357{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m29_c00357{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00357{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00357{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00357{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m26_c00357{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mf_c00357{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00357{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md_c00357{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m93_c00357{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00357{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m73_c00357{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00357{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00357{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m64_c00357{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m32_c00357{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me6_c00357{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m96_c00357{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m90_c00357{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me1_c00357{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m44_c00357{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m53_c00357{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m77_c00357{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md2_c00357{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m94_c00357{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00357{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma_c00357{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me5_c00357{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m31_c00357{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00357{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00357{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00357{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m66_c00357{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m76_c00357{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mde_c00357{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00357{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m28_c00357{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m85_c00357{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00357{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00357{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me2_c00357{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mca_c00357{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb_c00357{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00357{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m99_c00357{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00357{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00357{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mec_c00357{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m67_c00357{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m11_c00357{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me3_c00357{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00357{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00357{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00357{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00357{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00357{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00357{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md4_c00357{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md6_c00357{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00357{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m95_c00357{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00357{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m60_c00357{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00357{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.maf_c00357{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md8_c00357{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00357{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00357{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me9_c00357{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00357{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m30_c00357{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mad_c00357{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m72_c00357{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mac_c00357{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00357{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00357{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m41_c00357{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mae_c00357{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m48_c00357{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00357{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md9_c00357{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00357{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md5_c00357{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mce_c00357{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00357{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m98_c00357{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8_c00357{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m107_c00357{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.md0_c00357{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00357{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2_c00357{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m15_c00357{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m57_c00357{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00357{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m36_c00357{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00357{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00357{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mea_c00357{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.m51_c00357{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00357{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.mda_c00357{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m97_c00357{transform:matrix(0.752250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752250,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls0_c00357{letter-spacing:0.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{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__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00357{word-spacing:-11.735395px;}
.ws5_c00357{word-spacing:-8.750000px;}
.ws0_c00357{word-spacing:-4.676856px;}
.wsc_c00357{word-spacing:-1.405498px;}
.ws8_c00357{word-spacing:-0.897436px;}
.wse_c00357{word-spacing:0.000000px;}
.wsd_c00357{word-spacing:1.578947px;}
.ws3_c00357{word-spacing:2.750000px;}
.ws4_c00357{word-spacing:4.196319px;}
.ws7_c00357{word-spacing:6.666667px;}
.ws6_c00357{word-spacing:11.500000px;}
.ws1_c00357{word-spacing:12.755725px;}
.ws9_c00357{word-spacing:22.142857px;}
.wsa_c00357{word-spacing:29.285714px;}
.wsb_c00357{word-spacing:79.642857px;}
._0_c00357{width:55.714286px;}
._1_c00357{width:141.428571px;}
.fc0_c00357{color:transparent;}
.fs6_c00357{font-size:30.000000px;}
.fs7_c00357{font-size:48.000000px;}
.fs5_c00357{font-size:54.000000px;}
.fs2_c00357{font-size:60.000000px;}
.fs4_c00357{font-size:66.000000px;}
.fs3_c00357{font-size:72.000000px;}
.fs1_c00357{font-size:78.000000px;}
.fs0_c00357{font-size:102.000000px;}
.y0_c00357{bottom:0.000000px;}
.y69_c00357{bottom:193.950000px;}
.y36_c00357{bottom:196.200000px;}
.y68_c00357{bottom:209.100000px;}
.y35_c00357{bottom:210.600000px;}
.y67_c00357{bottom:222.750000px;}
.y34_c00357{bottom:225.000000px;}
.y66_c00357{bottom:236.850000px;}
.y33_c00357{bottom:239.100000px;}
.y65_c00357{bottom:252.000000px;}
.y32_c00357{bottom:253.200000px;}
.y64_c00357{bottom:265.650000px;}
.y31_c00357{bottom:267.300000px;}
.y63_c00357{bottom:279.750000px;}
.y30_c00357{bottom:281.700000px;}
.y2f_c00357{bottom:295.800000px;}
.y2e_c00357{bottom:310.200000px;}
.y62_c00357{bottom:321.450000px;}
.y2d_c00357{bottom:324.300000px;}
.y61_c00357{bottom:339.750000px;}
.y2c_c00357{bottom:340.200000px;}
.y2b_c00357{bottom:353.100000px;}
.y60_c00357{bottom:357.750000px;}
.y2a_c00357{bottom:373.650000px;}
.y5f_c00357{bottom:376.050000px;}
.y5e_c00357{bottom:394.050000px;}
.y29_c00357{bottom:398.700000px;}
.y5d_c00357{bottom:411.750000px;}
.y28_c00357{bottom:416.400000px;}
.y5c_c00357{bottom:429.750000px;}
.y27_c00357{bottom:434.400000px;}
.y5b_c00357{bottom:447.750000px;}
.y26_c00357{bottom:452.400000px;}
.y5a_c00357{bottom:466.050000px;}
.y25_c00357{bottom:470.400000px;}
.y59_c00357{bottom:483.750000px;}
.y24_c00357{bottom:488.400000px;}
.y58_c00357{bottom:501.750000px;}
.y23_c00357{bottom:506.400000px;}
.y57_c00357{bottom:519.750000px;}
.y22_c00357{bottom:524.400000px;}
.y56_c00357{bottom:537.450000px;}
.y21_c00357{bottom:542.400000px;}
.y55_c00357{bottom:555.450000px;}
.y20_c00357{bottom:560.700000px;}
.y54_c00357{bottom:573.450000px;}
.y1f_c00357{bottom:578.400000px;}
.y53_c00357{bottom:591.450000px;}
.y1e_c00357{bottom:596.100000px;}
.y52_c00357{bottom:609.450000px;}
.y1d_c00357{bottom:614.100000px;}
.y51_c00357{bottom:627.150000px;}
.y1c_c00357{bottom:631.800000px;}
.y50_c00357{bottom:645.150000px;}
.y1b_c00357{bottom:655.950000px;}
.y4f_c00357{bottom:665.700000px;}
.y1a_c00357{bottom:671.100000px;}
.y4e_c00357{bottom:680.100000px;}
.y19_c00357{bottom:686.550000px;}
.y4d_c00357{bottom:694.800000px;}
.y18_c00357{bottom:705.900000px;}
.y4c_c00357{bottom:709.200000px;}
.y4b_c00357{bottom:722.100000px;}
.y17_c00357{bottom:724.650000px;}
.y4a_c00357{bottom:737.550000px;}
.y16_c00357{bottom:742.650000px;}
.y49_c00357{bottom:755.550000px;}
.y15_c00357{bottom:763.500000px;}
.y48_c00357{bottom:773.550000px;}
.y14_c00357{bottom:782.550000px;}
.y47_c00357{bottom:791.250000px;}
.y13_c00357{bottom:800.250000px;}
.y46_c00357{bottom:809.250000px;}
.y12_c00357{bottom:819.000000px;}
.y45_c00357{bottom:831.300000px;}
.y11_c00357{bottom:836.700000px;}
.y44_c00357{bottom:849.150000px;}
.y10_c00357{bottom:855.000000px;}
.y43_c00357{bottom:867.150000px;}
.yf_c00357{bottom:875.850000px;}
.y42_c00357{bottom:884.850000px;}
.ye_c00357{bottom:902.100000px;}
.y41_c00357{bottom:902.850000px;}
.yd_c00357{bottom:924.150000px;}
.y40_c00357{bottom:925.200000px;}
.yc_c00357{bottom:943.200000px;}
.yb_c00357{bottom:961.500000px;}
.y3f_c00357{bottom:965.850000px;}
.ya_c00357{bottom:979.500000px;}
.y3e_c00357{bottom:988.500000px;}
.y9_c00357{bottom:1001.100000px;}
.y3d_c00357{bottom:1011.150000px;}
.y8_c00357{bottom:1019.850000px;}
.y3c_c00357{bottom:1029.150000px;}
.y7_c00357{bottom:1037.550000px;}
.y3b_c00357{bottom:1047.150000px;}
.y6_c00357{bottom:1062.000000px;}
.y3a_c00357{bottom:1064.850000px;}
.y5_c00357{bottom:1084.350000px;}
.y39_c00357{bottom:1086.900000px;}
.y4_c00357{bottom:1104.150000px;}
.y38_c00357{bottom:1105.200000px;}
.y3_c00357{bottom:1122.150000px;}
.y37_c00357{bottom:1122.900000px;}
.y1_c00357{bottom:1146.900000px;}
.y2_c00357{bottom:1149.450000px;}
.h8_c00357{height:30.000000px;}
.h9_c00357{height:48.000000px;}
.h7_c00357{height:54.000000px;}
.h4_c00357{height:60.000000px;}
.h6_c00357{height:66.000000px;}
.h5_c00357{height:72.000000px;}
.h3_c00357{height:78.000000px;}
.h2_c00357{height:102.000000px;}
.h0_c00357{height:1276.920044px;}
.h1_c00357{height:1277.250000px;}
.w0_c00357{width:960.480010px;}
.w1_c00357{width:960.750000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:172.050000px;}
.x3_c00357{left:173.550000px;}
.x95_c00357{left:174.600000px;}
.x90_c00357{left:177.450000px;}
.x69_c00357{left:187.500000px;}
.x91_c00357{left:189.300000px;}
.xc_c00357{left:190.500000px;}
.x22_c00357{left:191.850000px;}
.x16_c00357{left:193.050000px;}
.x98_c00357{left:205.200000px;}
.x46_c00357{left:208.800000px;}
.x84_c00357{left:212.100000px;}
.x33_c00357{left:213.750000px;}
.x42_c00357{left:214.950000px;}
.xd_c00357{left:216.000000px;}
.x4_c00357{left:217.800000px;}
.x9d_c00357{left:219.150000px;}
.xa3_c00357{left:221.250000px;}
.x5d_c00357{left:225.000000px;}
.x34_c00357{left:227.400000px;}
.x3e_c00357{left:228.900000px;}
.x23_c00357{left:229.950000px;}
.x18_c00357{left:232.200000px;}
.x17_c00357{left:234.750000px;}
.x81_c00357{left:236.250000px;}
.x40_c00357{left:239.850000px;}
.x4b_c00357{left:242.250000px;}
.x19_c00357{left:243.750000px;}
.x9f_c00357{left:246.000000px;}
.x62_c00357{left:247.800000px;}
.x43_c00357{left:249.150000px;}
.xe_c00357{left:250.500000px;}
.x2d_c00357{left:251.700000px;}
.x82_c00357{left:253.950000px;}
.x65_c00357{left:255.750000px;}
.x56_c00357{left:257.250000px;}
.x1e_c00357{left:259.200000px;}
.x35_c00357{left:261.900000px;}
.x4c_c00357{left:263.850000px;}
.x1a_c00357{left:265.050000px;}
.x63_c00357{left:266.850000px;}
.x2e_c00357{left:270.750000px;}
.x47_c00357{left:273.300000px;}
.x3f_c00357{left:274.650000px;}
.x24_c00357{left:276.750000px;}
.x36_c00357{left:278.100000px;}
.xa2_c00357{left:281.550000px;}
.x5_c00357{left:283.350000px;}
.x5e_c00357{left:284.400000px;}
.x8d_c00357{left:286.050000px;}
.xa4_c00357{left:287.400000px;}
.x1f_c00357{left:289.500000px;}
.xf_c00357{left:290.850000px;}
.x78_c00357{left:293.250000px;}
.x89_c00357{left:295.050000px;}
.x52_c00357{left:296.100000px;}
.x25_c00357{left:297.300000px;}
.x2a_c00357{left:298.800000px;}
.x80_c00357{left:301.350000px;}
.x72_c00357{left:302.700000px;}
.x66_c00357{left:305.250000px;}
.x6e_c00357{left:306.750000px;}
.xa5_c00357{left:308.250000px;}
.x3b_c00357{left:310.350000px;}
.x92_c00357{left:311.400000px;}
.xa0_c00357{left:313.350000px;}
.x2b_c00357{left:315.000000px;}
.x96_c00357{left:316.350000px;}
.x4d_c00357{left:319.650000px;}
.x1b_c00357{left:320.850000px;}
.x2f_c00357{left:321.900000px;}
.x67_c00357{left:326.100000px;}
.x41_c00357{left:328.050000px;}
.x6_c00357{left:329.400000px;}
.x7e_c00357{left:331.200000px;}
.x44_c00357{left:332.700000px;}
.x5f_c00357{left:334.050000px;}
.x3c_c00357{left:335.850000px;}
.x99_c00357{left:340.950000px;}
.x68_c00357{left:342.600000px;}
.x8e_c00357{left:345.150000px;}
.x1c_c00357{left:346.800000px;}
.x73_c00357{left:348.000000px;}
.x4e_c00357{left:349.500000px;}
.x48_c00357{left:350.700000px;}
.x26_c00357{left:354.150000px;}
.x8a_c00357{left:355.650000px;}
.x7f_c00357{left:356.700000px;}
.x6a_c00357{left:358.500000px;}
.x4f_c00357{left:360.000000px;}
.x2c_c00357{left:361.050000px;}
.x9e_c00357{left:362.400000px;}
.x60_c00357{left:363.600000px;}
.x27_c00357{left:365.700000px;}
.x53_c00357{left:369.150000px;}
.x6f_c00357{left:370.800000px;}
.x87_c00357{left:371.850000px;}
.x10_c00357{left:375.450000px;}
.x49_c00357{left:376.650000px;}
.x37_c00357{left:377.700000px;}
.x20_c00357{left:379.500000px;}
.x7_c00357{left:381.600000px;}
.x50_c00357{left:383.400000px;}
.x93_c00357{left:389.550000px;}
.x6b_c00357{left:391.200000px;}
.x86_c00357{left:393.150000px;}
.x3d_c00357{left:396.000000px;}
.x97_c00357{left:397.350000px;}
.x1d_c00357{left:399.300000px;}
.x11_c00357{left:400.650000px;}
.x38_c00357{left:402.600000px;}
.x54_c00357{left:404.100000px;}
.x51_c00357{left:405.300000px;}
.x8_c00357{left:406.800000px;}
.x30_c00357{left:409.350000px;}
.x9b_c00357{left:410.700000px;}
.x79_c00357{left:411.750000px;}
.x70_c00357{left:413.550000px;}
.x76_c00357{left:414.600000px;}
.x12_c00357{left:415.800000px;}
.x2_c00357{left:417.150000px;}
.x74_c00357{left:419.250000px;}
.x57_c00357{left:421.050000px;}
.x9_c00357{left:424.500000px;}
.x61_c00357{left:425.550000px;}
.x7c_c00357{left:426.900000px;}
.x31_c00357{left:431.250000px;}
.x45_c00357{left:433.050000px;}
.x6c_c00357{left:434.400000px;}
.x88_c00357{left:436.350000px;}
.x28_c00357{left:438.000000px;}
.x39_c00357{left:440.700000px;}
.x58_c00357{left:441.900000px;}
.x7a_c00357{left:443.850000px;}
.x55_c00357{left:446.250000px;}
.x9c_c00357{left:447.450000px;}
.x94_c00357{left:449.250000px;}
.x64_c00357{left:453.600000px;}
.x71_c00357{left:456.750000px;}
.x85_c00357{left:457.800000px;}
.x13_c00357{left:459.000000px;}
.x5b_c00357{left:462.300000px;}
.x59_c00357{left:463.500000px;}
.x7d_c00357{left:466.200000px;}
.x8b_c00357{left:467.250000px;}
.xa_c00357{left:468.750000px;}
.x83_c00357{left:469.950000px;}
.x29_c00357{left:472.200000px;}
.x4a_c00357{left:473.400000px;}
.x7b_c00357{left:475.500000px;}
.x14_c00357{left:478.500000px;}
.xb_c00357{left:481.350000px;}
.x8f_c00357{left:482.700000px;}
.x75_c00357{left:484.500000px;}
.x3a_c00357{left:486.750000px;}
.x32_c00357{left:488.100000px;}
.x21_c00357{left:490.350000px;}
.x5a_c00357{left:492.300000px;}
.x77_c00357{left:495.600000px;}
.x6d_c00357{left:496.650000px;}
.x5c_c00357{left:498.600000px;}
.x9a_c00357{left:501.150000px;}
.x15_c00357{left:502.650000px;}
.x8c_c00357{left:505.350000px;}
.xa1_c00357{left:506.700000px;}
.xa6_c00357{left:507.750000px;}
.xd6_c00357{left:529.200000px;}
.xf0_c00357{left:530.700000px;}
.x145_c00357{left:531.750000px;}
.x139_c00357{left:545.400000px;}
.xa7_c00357{left:546.450000px;}
.xef_c00357{left:548.250000px;}
.x12c_c00357{left:549.300000px;}
.x137_c00357{left:550.800000px;}
.x111_c00357{left:558.000000px;}
.x10d_c00357{left:559.500000px;}
.x146_c00357{left:563.100000px;}
.xba_c00357{left:565.200000px;}
.xf8_c00357{left:567.750000px;}
.x118_c00357{left:570.150000px;}
.xa8_c00357{left:571.350000px;}
.xdd_c00357{left:574.500000px;}
.xf1_c00357{left:575.700000px;}
.x12d_c00357{left:578.100000px;}
.xe9_c00357{left:579.450000px;}
.x10e_c00357{left:581.100000px;}
.x13d_c00357{left:582.450000px;}
.x12f_c00357{left:583.800000px;}
.xc1_c00357{left:585.450000px;}
.xd2_c00357{left:586.650000px;}
.xd7_c00357{left:587.850000px;}
.xb0_c00357{left:589.050000px;}
.xa9_c00357{left:591.150000px;}
.xb7_c00357{left:592.200000px;}
.x102_c00357{left:595.200000px;}
.xd3_c00357{left:597.150000px;}
.x13e_c00357{left:599.250000px;}
.xea_c00357{left:600.750000px;}
.xcc_c00357{left:601.950000px;}
.xff_c00357{left:603.450000px;}
.x121_c00357{left:605.100000px;}
.xc2_c00357{left:607.800000px;}
.xb1_c00357{left:609.150000px;}
.xbb_c00357{left:611.700000px;}
.x112_c00357{left:612.750000px;}
.xb8_c00357{left:613.800000px;}
.xf9_c00357{left:616.650000px;}
.x103_c00357{left:618.300000px;}
.x119_c00357{left:622.800000px;}
.xc3_c00357{left:625.500000px;}
.x133_c00357{left:627.750000px;}
.xde_c00357{left:629.250000px;}
.xb9_c00357{left:632.850000px;}
.x123_c00357{left:634.200000px;}
.xcd_c00357{left:636.900000px;}
.xaa_c00357{left:638.250000px;}
.x114_c00357{left:639.600000px;}
.xf2_c00357{left:641.250000px;}
.x11c_c00357{left:642.750000px;}
.xd4_c00357{left:644.700000px;}
.x126_c00357{left:646.500000px;}
.x115_c00357{left:649.350000px;}
.xdf_c00357{left:651.150000px;}
.x108_c00357{left:652.650000px;}
.x147_c00357{left:653.850000px;}
.x143_c00357{left:655.050000px;}
.xce_c00357{left:657.000000px;}
.xec_c00357{left:658.950000px;}
.x136_c00357{left:661.050000px;}
.xd5_c00357{left:666.600000px;}
.x140_c00357{left:670.800000px;}
.x100_c00357{left:671.850000px;}
.x104_c00357{left:676.650000px;}
.xc4_c00357{left:677.700000px;}
.xbc_c00357{left:684.000000px;}
.xd8_c00357{left:687.450000px;}
.xed_c00357{left:690.300000px;}
.xf3_c00357{left:691.950000px;}
.x141_c00357{left:693.900000px;}
.xe5_c00357{left:695.400000px;}
.xb2_c00357{left:697.650000px;}
.xc5_c00357{left:699.600000px;}
.xda_c00357{left:701.100000px;}
.x11f_c00357{left:702.300000px;}
.x109_c00357{left:704.400000px;}
.x129_c00357{left:706.200000px;}
.x105_c00357{left:707.250000px;}
.xf4_c00357{left:709.950000px;}
.xe0_c00357{left:712.950000px;}
.x11d_c00357{left:715.200000px;}
.xfa_c00357{left:716.700000px;}
.xab_c00357{left:718.950000px;}
.x124_c00357{left:720.300000px;}
.xcf_c00357{left:722.550000px;}
.xf5_c00357{left:725.850000px;}
.xdb_c00357{left:728.100000px;}
.xfb_c00357{left:730.050000px;}
.x144_c00357{left:732.150000px;}
.xe1_c00357{left:733.350000px;}
.x13a_c00357{left:736.050000px;}
.xc6_c00357{left:737.700000px;}
.x10a_c00357{left:740.700000px;}
.xac_c00357{left:744.150000px;}
.xb3_c00357{left:745.500000px;}
.x106_c00357{left:747.150000px;}
.x10b_c00357{left:748.200000px;}
.x12e_c00357{left:749.400000px;}
.xe2_c00357{left:750.600000px;}
.xbd_c00357{left:753.450000px;}
.xfc_c00357{left:755.550000px;}
.x116_c00357{left:757.050000px;}
.x131_c00357{left:758.850000px;}
.x11e_c00357{left:760.200000px;}
.xd0_c00357{left:761.400000px;}
.x10c_c00357{left:762.900000px;}
.xc7_c00357{left:765.750000px;}
.xfe_c00357{left:768.600000px;}
.xe6_c00357{left:770.250000px;}
.x120_c00357{left:771.750000px;}
.xad_c00357{left:773.700000px;}
.x130_c00357{left:774.750000px;}
.x11a_c00357{left:777.300000px;}
.x122_c00357{left:778.350000px;}
.xb4_c00357{left:782.250000px;}
.xbe_c00357{left:784.800000px;}
.x101_c00357{left:786.750000px;}
.x12a_c00357{left:787.950000px;}
.xd9_c00357{left:789.750000px;}
.xc8_c00357{left:790.950000px;}
.xfd_c00357{left:793.050000px;}
.xe3_c00357{left:794.550000px;}
.x10f_c00357{left:796.350000px;}
.xd1_c00357{left:797.700000px;}
.x127_c00357{left:798.900000px;}
.x138_c00357{left:800.100000px;}
.x117_c00357{left:804.300000px;}
.xf6_c00357{left:807.150000px;}
.x13b_c00357{left:808.500000px;}
.xbf_c00357{left:809.700000px;}
.x12b_c00357{left:812.100000px;}
.xb5_c00357{left:813.900000px;}
.xae_c00357{left:815.100000px;}
.x134_c00357{left:816.150000px;}
.x107_c00357{left:819.000000px;}
.x11b_c00357{left:820.500000px;}
.xf7_c00357{left:822.300000px;}
.xdc_c00357{left:824.250000px;}
.xee_c00357{left:825.300000px;}
.x110_c00357{left:826.950000px;}
.x13c_c00357{left:828.600000px;}
.xe7_c00357{left:829.650000px;}
.x13f_c00357{left:830.700000px;}
.xc9_c00357{left:833.400000px;}
.x125_c00357{left:834.750000px;}
.x132_c00357{left:836.250000px;}
.x128_c00357{left:837.450000px;}
.x135_c00357{left:839.250000px;}
.xaf_c00357{left:841.800000px;}
.xca_c00357{left:846.750000px;}
.xe4_c00357{left:849.300000px;}
.xb6_c00357{left:852.450000px;}
.xc0_c00357{left:853.650000px;}
.x113_c00357{left:855.150000px;}
.xe8_c00357{left:856.350000px;}
.xeb_c00357{left:857.700000px;}
.x142_c00357{left:861.000000px;}
.xcb_c00357{left:864.450000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ws2_c00357{word-spacing:-10.431462pt;}
.ws5_c00357{word-spacing:-7.777778pt;}
.ws0_c00357{word-spacing:-4.157205pt;}
.wsc_c00357{word-spacing:-1.249332pt;}
.ws8_c00357{word-spacing:-0.797721pt;}
.wse_c00357{word-spacing:0.000000pt;}
.wsd_c00357{word-spacing:1.403509pt;}
.ws3_c00357{word-spacing:2.444444pt;}
.ws4_c00357{word-spacing:3.730061pt;}
.ws7_c00357{word-spacing:5.925926pt;}
.ws6_c00357{word-spacing:10.222222pt;}
.ws1_c00357{word-spacing:11.338422pt;}
.ws9_c00357{word-spacing:19.682540pt;}
.wsa_c00357{word-spacing:26.031746pt;}
.wsb_c00357{word-spacing:70.793651pt;}
._0_c00357{width:49.523810pt;}
._1_c00357{width:125.714286pt;}
.fs6_c00357{font-size:26.666667pt;}
.fs7_c00357{font-size:42.666667pt;}
.fs5_c00357{font-size:48.000000pt;}
.fs2_c00357{font-size:53.333333pt;}
.fs4_c00357{font-size:58.666667pt;}
.fs3_c00357{font-size:64.000000pt;}
.fs1_c00357{font-size:69.333333pt;}
.fs0_c00357{font-size:90.666667pt;}
.y0_c00357{bottom:0.000000pt;}
.y69_c00357{bottom:172.400000pt;}
.y36_c00357{bottom:174.400000pt;}
.y68_c00357{bottom:185.866667pt;}
.y35_c00357{bottom:187.200000pt;}
.y67_c00357{bottom:198.000000pt;}
.y34_c00357{bottom:200.000000pt;}
.y66_c00357{bottom:210.533333pt;}
.y33_c00357{bottom:212.533333pt;}
.y65_c00357{bottom:224.000000pt;}
.y32_c00357{bottom:225.066667pt;}
.y64_c00357{bottom:236.133333pt;}
.y31_c00357{bottom:237.600000pt;}
.y63_c00357{bottom:248.666667pt;}
.y30_c00357{bottom:250.400000pt;}
.y2f_c00357{bottom:262.933333pt;}
.y2e_c00357{bottom:275.733333pt;}
.y62_c00357{bottom:285.733333pt;}
.y2d_c00357{bottom:288.266667pt;}
.y61_c00357{bottom:302.000000pt;}
.y2c_c00357{bottom:302.400000pt;}
.y2b_c00357{bottom:313.866667pt;}
.y60_c00357{bottom:318.000000pt;}
.y2a_c00357{bottom:332.133333pt;}
.y5f_c00357{bottom:334.266667pt;}
.y5e_c00357{bottom:350.266667pt;}
.y29_c00357{bottom:354.400000pt;}
.y5d_c00357{bottom:366.000000pt;}
.y28_c00357{bottom:370.133333pt;}
.y5c_c00357{bottom:382.000000pt;}
.y27_c00357{bottom:386.133333pt;}
.y5b_c00357{bottom:398.000000pt;}
.y26_c00357{bottom:402.133333pt;}
.y5a_c00357{bottom:414.266667pt;}
.y25_c00357{bottom:418.133333pt;}
.y59_c00357{bottom:430.000000pt;}
.y24_c00357{bottom:434.133333pt;}
.y58_c00357{bottom:446.000000pt;}
.y23_c00357{bottom:450.133333pt;}
.y57_c00357{bottom:462.000000pt;}
.y22_c00357{bottom:466.133333pt;}
.y56_c00357{bottom:477.733333pt;}
.y21_c00357{bottom:482.133333pt;}
.y55_c00357{bottom:493.733333pt;}
.y20_c00357{bottom:498.400000pt;}
.y54_c00357{bottom:509.733333pt;}
.y1f_c00357{bottom:514.133333pt;}
.y53_c00357{bottom:525.733333pt;}
.y1e_c00357{bottom:529.866667pt;}
.y52_c00357{bottom:541.733333pt;}
.y1d_c00357{bottom:545.866667pt;}
.y51_c00357{bottom:557.466667pt;}
.y1c_c00357{bottom:561.600000pt;}
.y50_c00357{bottom:573.466667pt;}
.y1b_c00357{bottom:583.066667pt;}
.y4f_c00357{bottom:591.733333pt;}
.y1a_c00357{bottom:596.533333pt;}
.y4e_c00357{bottom:604.533333pt;}
.y19_c00357{bottom:610.266667pt;}
.y4d_c00357{bottom:617.600000pt;}
.y18_c00357{bottom:627.466667pt;}
.y4c_c00357{bottom:630.400000pt;}
.y4b_c00357{bottom:641.866667pt;}
.y17_c00357{bottom:644.133333pt;}
.y4a_c00357{bottom:655.600000pt;}
.y16_c00357{bottom:660.133333pt;}
.y49_c00357{bottom:671.600000pt;}
.y15_c00357{bottom:678.666667pt;}
.y48_c00357{bottom:687.600000pt;}
.y14_c00357{bottom:695.600000pt;}
.y47_c00357{bottom:703.333333pt;}
.y13_c00357{bottom:711.333333pt;}
.y46_c00357{bottom:719.333333pt;}
.y12_c00357{bottom:728.000000pt;}
.y45_c00357{bottom:738.933333pt;}
.y11_c00357{bottom:743.733333pt;}
.y44_c00357{bottom:754.800000pt;}
.y10_c00357{bottom:760.000000pt;}
.y43_c00357{bottom:770.800000pt;}
.yf_c00357{bottom:778.533333pt;}
.y42_c00357{bottom:786.533333pt;}
.ye_c00357{bottom:801.866667pt;}
.y41_c00357{bottom:802.533333pt;}
.yd_c00357{bottom:821.466667pt;}
.y40_c00357{bottom:822.400000pt;}
.yc_c00357{bottom:838.400000pt;}
.yb_c00357{bottom:854.666667pt;}
.y3f_c00357{bottom:858.533333pt;}
.ya_c00357{bottom:870.666667pt;}
.y3e_c00357{bottom:878.666667pt;}
.y9_c00357{bottom:889.866667pt;}
.y3d_c00357{bottom:898.800000pt;}
.y8_c00357{bottom:906.533333pt;}
.y3c_c00357{bottom:914.800000pt;}
.y7_c00357{bottom:922.266667pt;}
.y3b_c00357{bottom:930.800000pt;}
.y6_c00357{bottom:944.000000pt;}
.y3a_c00357{bottom:946.533333pt;}
.y5_c00357{bottom:963.866667pt;}
.y39_c00357{bottom:966.133333pt;}
.y4_c00357{bottom:981.466667pt;}
.y38_c00357{bottom:982.400000pt;}
.y3_c00357{bottom:997.466667pt;}
.y37_c00357{bottom:998.133333pt;}
.y1_c00357{bottom:1019.466667pt;}
.y2_c00357{bottom:1021.733333pt;}
.h8_c00357{height:26.666667pt;}
.h9_c00357{height:42.666667pt;}
.h7_c00357{height:48.000000pt;}
.h4_c00357{height:53.333333pt;}
.h6_c00357{height:58.666667pt;}
.h5_c00357{height:64.000000pt;}
.h3_c00357{height:69.333333pt;}
.h2_c00357{height:90.666667pt;}
.h0_c00357{height:1135.040039pt;}
.h1_c00357{height:1135.333333pt;}
.w0_c00357{width:853.760009pt;}
.w1_c00357{width:854.000000pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:152.933333pt;}
.x3_c00357{left:154.266667pt;}
.x95_c00357{left:155.200000pt;}
.x90_c00357{left:157.733333pt;}
.x69_c00357{left:166.666667pt;}
.x91_c00357{left:168.266667pt;}
.xc_c00357{left:169.333333pt;}
.x22_c00357{left:170.533333pt;}
.x16_c00357{left:171.600000pt;}
.x98_c00357{left:182.400000pt;}
.x46_c00357{left:185.600000pt;}
.x84_c00357{left:188.533333pt;}
.x33_c00357{left:190.000000pt;}
.x42_c00357{left:191.066667pt;}
.xd_c00357{left:192.000000pt;}
.x4_c00357{left:193.600000pt;}
.x9d_c00357{left:194.800000pt;}
.xa3_c00357{left:196.666667pt;}
.x5d_c00357{left:200.000000pt;}
.x34_c00357{left:202.133333pt;}
.x3e_c00357{left:203.466667pt;}
.x23_c00357{left:204.400000pt;}
.x18_c00357{left:206.400000pt;}
.x17_c00357{left:208.666667pt;}
.x81_c00357{left:210.000000pt;}
.x40_c00357{left:213.200000pt;}
.x4b_c00357{left:215.333333pt;}
.x19_c00357{left:216.666667pt;}
.x9f_c00357{left:218.666667pt;}
.x62_c00357{left:220.266667pt;}
.x43_c00357{left:221.466667pt;}
.xe_c00357{left:222.666667pt;}
.x2d_c00357{left:223.733333pt;}
.x82_c00357{left:225.733333pt;}
.x65_c00357{left:227.333333pt;}
.x56_c00357{left:228.666667pt;}
.x1e_c00357{left:230.400000pt;}
.x35_c00357{left:232.800000pt;}
.x4c_c00357{left:234.533333pt;}
.x1a_c00357{left:235.600000pt;}
.x63_c00357{left:237.200000pt;}
.x2e_c00357{left:240.666667pt;}
.x47_c00357{left:242.933333pt;}
.x3f_c00357{left:244.133333pt;}
.x24_c00357{left:246.000000pt;}
.x36_c00357{left:247.200000pt;}
.xa2_c00357{left:250.266667pt;}
.x5_c00357{left:251.866667pt;}
.x5e_c00357{left:252.800000pt;}
.x8d_c00357{left:254.266667pt;}
.xa4_c00357{left:255.466667pt;}
.x1f_c00357{left:257.333333pt;}
.xf_c00357{left:258.533333pt;}
.x78_c00357{left:260.666667pt;}
.x89_c00357{left:262.266667pt;}
.x52_c00357{left:263.200000pt;}
.x25_c00357{left:264.266667pt;}
.x2a_c00357{left:265.600000pt;}
.x80_c00357{left:267.866667pt;}
.x72_c00357{left:269.066667pt;}
.x66_c00357{left:271.333333pt;}
.x6e_c00357{left:272.666667pt;}
.xa5_c00357{left:274.000000pt;}
.x3b_c00357{left:275.866667pt;}
.x92_c00357{left:276.800000pt;}
.xa0_c00357{left:278.533333pt;}
.x2b_c00357{left:280.000000pt;}
.x96_c00357{left:281.200000pt;}
.x4d_c00357{left:284.133333pt;}
.x1b_c00357{left:285.200000pt;}
.x2f_c00357{left:286.133333pt;}
.x67_c00357{left:289.866667pt;}
.x41_c00357{left:291.600000pt;}
.x6_c00357{left:292.800000pt;}
.x7e_c00357{left:294.400000pt;}
.x44_c00357{left:295.733333pt;}
.x5f_c00357{left:296.933333pt;}
.x3c_c00357{left:298.533333pt;}
.x99_c00357{left:303.066667pt;}
.x68_c00357{left:304.533333pt;}
.x8e_c00357{left:306.800000pt;}
.x1c_c00357{left:308.266667pt;}
.x73_c00357{left:309.333333pt;}
.x4e_c00357{left:310.666667pt;}
.x48_c00357{left:311.733333pt;}
.x26_c00357{left:314.800000pt;}
.x8a_c00357{left:316.133333pt;}
.x7f_c00357{left:317.066667pt;}
.x6a_c00357{left:318.666667pt;}
.x4f_c00357{left:320.000000pt;}
.x2c_c00357{left:320.933333pt;}
.x9e_c00357{left:322.133333pt;}
.x60_c00357{left:323.200000pt;}
.x27_c00357{left:325.066667pt;}
.x53_c00357{left:328.133333pt;}
.x6f_c00357{left:329.600000pt;}
.x87_c00357{left:330.533333pt;}
.x10_c00357{left:333.733333pt;}
.x49_c00357{left:334.800000pt;}
.x37_c00357{left:335.733333pt;}
.x20_c00357{left:337.333333pt;}
.x7_c00357{left:339.200000pt;}
.x50_c00357{left:340.800000pt;}
.x93_c00357{left:346.266667pt;}
.x6b_c00357{left:347.733333pt;}
.x86_c00357{left:349.466667pt;}
.x3d_c00357{left:352.000000pt;}
.x97_c00357{left:353.200000pt;}
.x1d_c00357{left:354.933333pt;}
.x11_c00357{left:356.133333pt;}
.x38_c00357{left:357.866667pt;}
.x54_c00357{left:359.200000pt;}
.x51_c00357{left:360.266667pt;}
.x8_c00357{left:361.600000pt;}
.x30_c00357{left:363.866667pt;}
.x9b_c00357{left:365.066667pt;}
.x79_c00357{left:366.000000pt;}
.x70_c00357{left:367.600000pt;}
.x76_c00357{left:368.533333pt;}
.x12_c00357{left:369.600000pt;}
.x2_c00357{left:370.800000pt;}
.x74_c00357{left:372.666667pt;}
.x57_c00357{left:374.266667pt;}
.x9_c00357{left:377.333333pt;}
.x61_c00357{left:378.266667pt;}
.x7c_c00357{left:379.466667pt;}
.x31_c00357{left:383.333333pt;}
.x45_c00357{left:384.933333pt;}
.x6c_c00357{left:386.133333pt;}
.x88_c00357{left:387.866667pt;}
.x28_c00357{left:389.333333pt;}
.x39_c00357{left:391.733333pt;}
.x58_c00357{left:392.800000pt;}
.x7a_c00357{left:394.533333pt;}
.x55_c00357{left:396.666667pt;}
.x9c_c00357{left:397.733333pt;}
.x94_c00357{left:399.333333pt;}
.x64_c00357{left:403.200000pt;}
.x71_c00357{left:406.000000pt;}
.x85_c00357{left:406.933333pt;}
.x13_c00357{left:408.000000pt;}
.x5b_c00357{left:410.933333pt;}
.x59_c00357{left:412.000000pt;}
.x7d_c00357{left:414.400000pt;}
.x8b_c00357{left:415.333333pt;}
.xa_c00357{left:416.666667pt;}
.x83_c00357{left:417.733333pt;}
.x29_c00357{left:419.733333pt;}
.x4a_c00357{left:420.800000pt;}
.x7b_c00357{left:422.666667pt;}
.x14_c00357{left:425.333333pt;}
.xb_c00357{left:427.866667pt;}
.x8f_c00357{left:429.066667pt;}
.x75_c00357{left:430.666667pt;}
.x3a_c00357{left:432.666667pt;}
.x32_c00357{left:433.866667pt;}
.x21_c00357{left:435.866667pt;}
.x5a_c00357{left:437.600000pt;}
.x77_c00357{left:440.533333pt;}
.x6d_c00357{left:441.466667pt;}
.x5c_c00357{left:443.200000pt;}
.x9a_c00357{left:445.466667pt;}
.x15_c00357{left:446.800000pt;}
.x8c_c00357{left:449.200000pt;}
.xa1_c00357{left:450.400000pt;}
.xa6_c00357{left:451.333333pt;}
.xd6_c00357{left:470.400000pt;}
.xf0_c00357{left:471.733333pt;}
.x145_c00357{left:472.666667pt;}
.x139_c00357{left:484.800000pt;}
.xa7_c00357{left:485.733333pt;}
.xef_c00357{left:487.333333pt;}
.x12c_c00357{left:488.266667pt;}
.x137_c00357{left:489.600000pt;}
.x111_c00357{left:496.000000pt;}
.x10d_c00357{left:497.333333pt;}
.x146_c00357{left:500.533333pt;}
.xba_c00357{left:502.400000pt;}
.xf8_c00357{left:504.666667pt;}
.x118_c00357{left:506.800000pt;}
.xa8_c00357{left:507.866667pt;}
.xdd_c00357{left:510.666667pt;}
.xf1_c00357{left:511.733333pt;}
.x12d_c00357{left:513.866667pt;}
.xe9_c00357{left:515.066667pt;}
.x10e_c00357{left:516.533333pt;}
.x13d_c00357{left:517.733333pt;}
.x12f_c00357{left:518.933333pt;}
.xc1_c00357{left:520.400000pt;}
.xd2_c00357{left:521.466667pt;}
.xd7_c00357{left:522.533333pt;}
.xb0_c00357{left:523.600000pt;}
.xa9_c00357{left:525.466667pt;}
.xb7_c00357{left:526.400000pt;}
.x102_c00357{left:529.066667pt;}
.xd3_c00357{left:530.800000pt;}
.x13e_c00357{left:532.666667pt;}
.xea_c00357{left:534.000000pt;}
.xcc_c00357{left:535.066667pt;}
.xff_c00357{left:536.400000pt;}
.x121_c00357{left:537.866667pt;}
.xc2_c00357{left:540.266667pt;}
.xb1_c00357{left:541.466667pt;}
.xbb_c00357{left:543.733333pt;}
.x112_c00357{left:544.666667pt;}
.xb8_c00357{left:545.600000pt;}
.xf9_c00357{left:548.133333pt;}
.x103_c00357{left:549.600000pt;}
.x119_c00357{left:553.600000pt;}
.xc3_c00357{left:556.000000pt;}
.x133_c00357{left:558.000000pt;}
.xde_c00357{left:559.333333pt;}
.xb9_c00357{left:562.533333pt;}
.x123_c00357{left:563.733333pt;}
.xcd_c00357{left:566.133333pt;}
.xaa_c00357{left:567.333333pt;}
.x114_c00357{left:568.533333pt;}
.xf2_c00357{left:570.000000pt;}
.x11c_c00357{left:571.333333pt;}
.xd4_c00357{left:573.066667pt;}
.x126_c00357{left:574.666667pt;}
.x115_c00357{left:577.200000pt;}
.xdf_c00357{left:578.800000pt;}
.x108_c00357{left:580.133333pt;}
.x147_c00357{left:581.200000pt;}
.x143_c00357{left:582.266667pt;}
.xce_c00357{left:584.000000pt;}
.xec_c00357{left:585.733333pt;}
.x136_c00357{left:587.600000pt;}
.xd5_c00357{left:592.533333pt;}
.x140_c00357{left:596.266667pt;}
.x100_c00357{left:597.200000pt;}
.x104_c00357{left:601.466667pt;}
.xc4_c00357{left:602.400000pt;}
.xbc_c00357{left:608.000000pt;}
.xd8_c00357{left:611.066667pt;}
.xed_c00357{left:613.600000pt;}
.xf3_c00357{left:615.066667pt;}
.x141_c00357{left:616.800000pt;}
.xe5_c00357{left:618.133333pt;}
.xb2_c00357{left:620.133333pt;}
.xc5_c00357{left:621.866667pt;}
.xda_c00357{left:623.200000pt;}
.x11f_c00357{left:624.266667pt;}
.x109_c00357{left:626.133333pt;}
.x129_c00357{left:627.733333pt;}
.x105_c00357{left:628.666667pt;}
.xf4_c00357{left:631.066667pt;}
.xe0_c00357{left:633.733333pt;}
.x11d_c00357{left:635.733333pt;}
.xfa_c00357{left:637.066667pt;}
.xab_c00357{left:639.066667pt;}
.x124_c00357{left:640.266667pt;}
.xcf_c00357{left:642.266667pt;}
.xf5_c00357{left:645.200000pt;}
.xdb_c00357{left:647.200000pt;}
.xfb_c00357{left:648.933333pt;}
.x144_c00357{left:650.800000pt;}
.xe1_c00357{left:651.866667pt;}
.x13a_c00357{left:654.266667pt;}
.xc6_c00357{left:655.733333pt;}
.x10a_c00357{left:658.400000pt;}
.xac_c00357{left:661.466667pt;}
.xb3_c00357{left:662.666667pt;}
.x106_c00357{left:664.133333pt;}
.x10b_c00357{left:665.066667pt;}
.x12e_c00357{left:666.133333pt;}
.xe2_c00357{left:667.200000pt;}
.xbd_c00357{left:669.733333pt;}
.xfc_c00357{left:671.600000pt;}
.x116_c00357{left:672.933333pt;}
.x131_c00357{left:674.533333pt;}
.x11e_c00357{left:675.733333pt;}
.xd0_c00357{left:676.800000pt;}
.x10c_c00357{left:678.133333pt;}
.xc7_c00357{left:680.666667pt;}
.xfe_c00357{left:683.200000pt;}
.xe6_c00357{left:684.666667pt;}
.x120_c00357{left:686.000000pt;}
.xad_c00357{left:687.733333pt;}
.x130_c00357{left:688.666667pt;}
.x11a_c00357{left:690.933333pt;}
.x122_c00357{left:691.866667pt;}
.xb4_c00357{left:695.333333pt;}
.xbe_c00357{left:697.600000pt;}
.x101_c00357{left:699.333333pt;}
.x12a_c00357{left:700.400000pt;}
.xd9_c00357{left:702.000000pt;}
.xc8_c00357{left:703.066667pt;}
.xfd_c00357{left:704.933333pt;}
.xe3_c00357{left:706.266667pt;}
.x10f_c00357{left:707.866667pt;}
.xd1_c00357{left:709.066667pt;}
.x127_c00357{left:710.133333pt;}
.x138_c00357{left:711.200000pt;}
.x117_c00357{left:714.933333pt;}
.xf6_c00357{left:717.466667pt;}
.x13b_c00357{left:718.666667pt;}
.xbf_c00357{left:719.733333pt;}
.x12b_c00357{left:721.866667pt;}
.xb5_c00357{left:723.466667pt;}
.xae_c00357{left:724.533333pt;}
.x134_c00357{left:725.466667pt;}
.x107_c00357{left:728.000000pt;}
.x11b_c00357{left:729.333333pt;}
.xf7_c00357{left:730.933333pt;}
.xdc_c00357{left:732.666667pt;}
.xee_c00357{left:733.600000pt;}
.x110_c00357{left:735.066667pt;}
.x13c_c00357{left:736.533333pt;}
.xe7_c00357{left:737.466667pt;}
.x13f_c00357{left:738.400000pt;}
.xc9_c00357{left:740.800000pt;}
.x125_c00357{left:742.000000pt;}
.x132_c00357{left:743.333333pt;}
.x128_c00357{left:744.400000pt;}
.x135_c00357{left:746.000000pt;}
.xaf_c00357{left:748.266667pt;}
.xca_c00357{left:752.666667pt;}
.xe4_c00357{left:754.933333pt;}
.xb6_c00357{left:757.733333pt;}
.xc0_c00357{left:758.800000pt;}
.x113_c00357{left:760.133333pt;}
.xe8_c00357{left:761.200000pt;}
.xeb_c00357{left:762.400000pt;}
.x142_c00357{left:765.333333pt;}
.xcb_c00357{left:768.400000pt;}
}





/* 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_c00358 {
    display:none;
  }
  .loading-indicator_c00358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00358 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_c00358 { 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_c00358" -> "#page-container .classname_c00358")
 */
.pf_c00358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00358 { /* 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_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00358 { /* 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_c00358 { /* 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_c00358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00358 {overflow:visible;}
  }
}
.c_c00358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00358 { /* 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_c00358:after { /* webkit #35443 */
  content: '';
}
.t_c00358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00358 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 */
}
.__c00358 { /* 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_c00358 { /* info for Javascript */
  display:none;
}
.l_c00358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00358: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_c00358 {
    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_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00358.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_c00358 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00358;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.000000;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;}
.m36_c00358{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m37_c00358{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.me5_c00358{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m38_c00358{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00358{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00358{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00358{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m51_c00358{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);}
.mca_c00358{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00358{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m100_c00358{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00358{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m25_c00358{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md_c00358{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00358{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00358{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00358{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m42_c00358{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.md1_c00358{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m30_c00358{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00358{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00358{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00358{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00358{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00358{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m105_c00358{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00358{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00358{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m34_c00358{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00358{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00358{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00358{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m60_c00358{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf_c00358{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m101_c00358{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00358{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00358{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m50_c00358{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00358{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00358{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00358{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m12_c00358{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00358{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m65_c00358{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m95_c00358{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00358{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.me8_c00358{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00358{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m20_c00358{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m58_c00358{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00358{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m64_c00358{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m23_c00358{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00358{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md6_c00358{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md9_c00358{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.med_c00358{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m5_c00358{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m72_c00358{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m83_c00358{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00358{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m45_c00358{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mef_c00358{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m71_c00358{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m41_c00358{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.md0_c00358{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m102_c00358{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00358{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m35_c00358{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m77_c00358{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m47_c00358{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00358{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m79_c00358{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m88_c00358{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00358{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.me_c00358{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m92_c00358{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00358{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00358{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00358{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m75_c00358{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.md5_c00358{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc_c00358{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m73_c00358{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m97_c00358{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma_c00358{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m63_c00358{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m96_c00358{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00358{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m74_c00358{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m67_c00358{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00358{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m57_c00358{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00358{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10_c00358{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md7_c00358{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00358{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m76_c00358{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00358{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m94_c00358{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mde_c00358{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00358{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m54_c00358{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00358{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m62_c00358{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00358{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00358{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me2_c00358{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md4_c00358{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00358{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m40_c00358{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mee_c00358{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00358{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00358{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m46_c00358{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00358{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00358{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m4_c00358{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00358{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.maf_c00358{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m80_c00358{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00358{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00358{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00358{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m84_c00358{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m6_c00358{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m70_c00358{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00358{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m13_c00358{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m99_c00358{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m90_c00358{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb_c00358{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00358{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m22_c00358{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00358{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m82_c00358{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m21_c00358{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00358{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m18_c00358{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m61_c00358{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00358{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.maa_c00358{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.md3_c00358{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00358{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mda_c00358{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00358{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m81_c00358{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m78_c00358{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00358{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m44_c00358{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mad_c00358{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m26_c00358{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7_c00358{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me4_c00358{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00358{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m11_c00358{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m29_c00358{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mba_c00358{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m89_c00358{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00358{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m68_c00358{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m85_c00358{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00358{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00358{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00358{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m53_c00358{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md8_c00358{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m39_c00358{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m27_c00358{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00358{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me6_c00358{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00358{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m15_c00358{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m91_c00358{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00358{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m48_c00358{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00358{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00358{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m16_c00358{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00358{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m93_c00358{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m31_c00358{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00358{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m17_c00358{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m24_c00358{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me0_c00358{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m32_c00358{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00358{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m69_c00358{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m104_c00358{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m14_c00358{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00358{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m43_c00358{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m28_c00358{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m86_c00358{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m19_c00358{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m87_c00358{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m106_c00358{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m33_c00358{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m107_c00358{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mae_c00358{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00358{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m49_c00358{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00358{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mce_c00358{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00358{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m98_c00358{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m55_c00358{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00358{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mea_c00358{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m103_c00358{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00358{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00358{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00358{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mec_c00358{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00358{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00358{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m56_c00358{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00358{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00358{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00358{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00358{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00358{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00358{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00358{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00358{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00358{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m66_c00358{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me7_c00358{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md2_c00358{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00358{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00358{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00358{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00358{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00358{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me3_c00358{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00358{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00358{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00358{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00358{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mab_c00358{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me9_c00358{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00358{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m109_c00358{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mff_c00358{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00358{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m3_c00358{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00358{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.meb_c00358{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me1_c00358{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00358{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00358{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00358{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00358{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00358{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00358{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00358{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00358{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m108_c00358{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m0_c00358{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.mac_c00358{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00358{transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00358{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00358{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00358{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00358{transform:matrix(0.518500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518500,0.000000,0.000000,0.250000,0,0);}
.m59_c00358{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m52_c00358{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls0_c00358{letter-spacing:0.000000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{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__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00358{word-spacing:-13.285714px;}
.wsa_c00358{word-spacing:-11.840149px;}
.ws8_c00358{word-spacing:-11.076923px;}
.ws4_c00358{word-spacing:-9.840149px;}
.ws0_c00358{word-spacing:-6.463415px;}
.ws2_c00358{word-spacing:-2.518519px;}
.ws6_c00358{word-spacing:-0.030928px;}
.wsb_c00358{word-spacing:0.000000px;}
.ws7_c00358{word-spacing:2.261641px;}
.ws5_c00358{word-spacing:4.857143px;}
.ws1_c00358{word-spacing:331.666667px;}
.ws9_c00358{word-spacing:1455.625000px;}
._0_c00358{width:390.833333px;}
.fc0_c00358{color:transparent;}
.fs7_c00358{font-size:30.000000px;}
.fs2_c00358{font-size:42.000000px;}
.fs8_c00358{font-size:54.000000px;}
.fs5_c00358{font-size:60.000000px;}
.fs4_c00358{font-size:66.000000px;}
.fs3_c00358{font-size:72.000000px;}
.fs1_c00358{font-size:78.000000px;}
.fs6_c00358{font-size:84.000000px;}
.fs0_c00358{font-size:108.000000px;}
.y0_c00358{bottom:0.000000px;}
.y5e_c00358{bottom:177.450000px;}
.y33_c00358{bottom:195.450000px;}
.y5d_c00358{bottom:195.900000px;}
.y32_c00358{bottom:213.750000px;}
.y5c_c00358{bottom:213.900000px;}
.y31_c00358{bottom:231.450000px;}
.y5b_c00358{bottom:236.250000px;}
.y5a_c00358{bottom:254.250000px;}
.y30_c00358{bottom:258.900000px;}
.y59_c00358{bottom:272.550000px;}
.y2f_c00358{bottom:276.600000px;}
.y2e_c00358{bottom:294.600000px;}
.y58_c00358{bottom:294.900000px;}
.y2d_c00358{bottom:312.900000px;}
.y2c_c00358{bottom:335.100000px;}
.y57_c00358{bottom:344.550000px;}
.y2b_c00358{bottom:352.800000px;}
.y56_c00358{bottom:361.950000px;}
.y55_c00358{bottom:379.650000px;}
.y2a_c00358{bottom:384.150000px;}
.y54_c00358{bottom:397.350000px;}
.y29_c00358{bottom:406.800000px;}
.y53_c00358{bottom:415.050000px;}
.y28_c00358{bottom:429.000000px;}
.y52_c00358{bottom:432.750000px;}
.y27_c00358{bottom:446.700000px;}
.y51_c00358{bottom:459.750000px;}
.y26_c00358{bottom:465.000000px;}
.y50_c00358{bottom:482.400000px;}
.y25_c00358{bottom:482.700000px;}
.y24_c00358{bottom:500.700000px;}
.y23_c00358{bottom:518.700000px;}
.y22_c00358{bottom:536.700000px;}
.y21_c00358{bottom:554.700000px;}
.y20_c00358{bottom:572.700000px;}
.y4f_c00358{bottom:591.000000px;}
.y1f_c00358{bottom:595.350000px;}
.y4e_c00358{bottom:608.700000px;}
.y1e_c00358{bottom:613.350000px;}
.y4d_c00358{bottom:626.400000px;}
.y1d_c00358{bottom:631.350000px;}
.y4c_c00358{bottom:644.400000px;}
.y1c_c00358{bottom:649.350000px;}
.y1b_c00358{bottom:667.350000px;}
.y4b_c00358{bottom:669.600000px;}
.y1a_c00358{bottom:685.350000px;}
.y4a_c00358{bottom:694.500000px;}
.y19_c00358{bottom:703.050000px;}
.y49_c00358{bottom:712.800000px;}
.y18_c00358{bottom:721.050000px;}
.y48_c00358{bottom:734.400000px;}
.y17_c00358{bottom:738.750000px;}
.y47_c00358{bottom:757.500000px;}
.y16_c00358{bottom:763.500000px;}
.y46_c00358{bottom:775.500000px;}
.y15_c00358{bottom:788.400000px;}
.y14_c00358{bottom:806.100000px;}
.y45_c00358{bottom:806.700000px;}
.y44_c00358{bottom:829.050000px;}
.y13_c00358{bottom:832.200000px;}
.y12_c00358{bottom:850.200000px;}
.y43_c00358{bottom:850.950000px;}
.y11_c00358{bottom:868.200000px;}
.y10_c00358{bottom:886.200000px;}
.yf_c00358{bottom:904.200000px;}
.ye_c00358{bottom:921.900000px;}
.y42_c00358{bottom:922.200000px;}
.yd_c00358{bottom:939.900000px;}
.y41_c00358{bottom:940.200000px;}
.y40_c00358{bottom:957.900000px;}
.yc_c00358{bottom:964.800000px;}
.y3f_c00358{bottom:975.900000px;}
.yb_c00358{bottom:979.950000px;}
.y3e_c00358{bottom:993.900000px;}
.ya_c00358{bottom:1010.100000px;}
.y3d_c00358{bottom:1011.900000px;}
.y3c_c00358{bottom:1029.900000px;}
.y9_c00358{bottom:1032.450000px;}
.y8_c00358{bottom:1050.450000px;}
.y3b_c00358{bottom:1054.500000px;}
.y3a_c00358{bottom:1069.200000px;}
.y7_c00358{bottom:1072.500000px;}
.y39_c00358{bottom:1083.300000px;}
.y6_c00358{bottom:1090.500000px;}
.y38_c00358{bottom:1098.000000px;}
.y5_c00358{bottom:1108.500000px;}
.y37_c00358{bottom:1112.700000px;}
.y4_c00358{bottom:1126.500000px;}
.y36_c00358{bottom:1126.800000px;}
.y2_c00358{bottom:1147.350000px;}
.y1_c00358{bottom:1152.750000px;}
.y34_c00358{bottom:1261.800000px;}
.y3_c00358{bottom:1264.350000px;}
.y35_c00358{bottom:1265.400000px;}
.h8_c00358{height:30.000000px;}
.h3_c00358{height:42.000000px;}
.h9_c00358{height:54.000000px;}
.h6_c00358{height:60.000000px;}
.h5_c00358{height:66.000000px;}
.h4_c00358{height:72.000000px;}
.h2_c00358{height:78.000000px;}
.h7_c00358{height:84.000000px;}
.h1_c00358{height:108.000000px;}
.h0_c00358{height:1269.000000px;}
.w0_c00358{width:960.480010px;}
.w1_c00358{width:960.750000px;}
.x0_c00358{left:0.000000px;}
.x94_c00358{left:87.900000px;}
.x87_c00358{left:88.950000px;}
.x1f_c00358{left:90.000000px;}
.x30_c00358{left:91.500000px;}
.x36_c00358{left:98.400000px;}
.x78_c00358{left:100.500000px;}
.x5c_c00358{left:105.600000px;}
.x7f_c00358{left:106.950000px;}
.x5_c00358{left:108.000000px;}
.x44_c00358{left:109.050000px;}
.xd_c00358{left:120.900000px;}
.x8b_c00358{left:124.500000px;}
.x74_c00358{left:125.700000px;}
.x1b_c00358{left:126.900000px;}
.x84_c00358{left:128.250000px;}
.x56_c00358{left:132.000000px;}
.x4e_c00358{left:134.250000px;}
.x72_c00358{left:135.450000px;}
.x31_c00358{left:137.250000px;}
.x45_c00358{left:138.900000px;}
.x80_c00358{left:142.200000px;}
.x49_c00358{left:143.550000px;}
.x5f_c00358{left:147.900000px;}
.xe_c00358{left:148.950000px;}
.x6_c00358{left:151.200000px;}
.x51_c00358{left:153.450000px;}
.x5d_c00358{left:154.500000px;}
.x6d_c00358{left:156.750000px;}
.x8a_c00358{left:157.800000px;}
.x28_c00358{left:158.850000px;}
.x2d_c00358{left:159.900000px;}
.x7c_c00358{left:163.800000px;}
.x20_c00358{left:164.850000px;}
.x40_c00358{left:167.400000px;}
.x75_c00358{left:168.900000px;}
.x88_c00358{left:170.250000px;}
.x85_c00358{left:171.750000px;}
.x62_c00358{left:173.100000px;}
.x32_c00358{left:174.750000px;}
.x29_c00358{left:175.800000px;}
.x73_c00358{left:176.850000px;}
.x8d_c00358{left:178.200000px;}
.xf_c00358{left:180.300000px;}
.x52_c00358{left:182.250000px;}
.x1c_c00358{left:183.450000px;}
.x2e_c00358{left:184.800000px;}
.x21_c00358{left:186.150000px;}
.x7_c00358{left:187.950000px;}
.x10_c00358{left:189.300000px;}
.x79_c00358{left:192.000000px;}
.x37_c00358{left:194.850000px;}
.x69_c00358{left:196.950000px;}
.x58_c00358{left:198.900000px;}
.x2a_c00358{left:200.700000px;}
.x93_c00358{left:205.200000px;}
.x6a_c00358{left:206.400000px;}
.x11_c00358{left:207.600000px;}
.x38_c00358{left:209.250000px;}
.x53_c00358{left:210.300000px;}
.x6e_c00358{left:211.350000px;}
.x97_c00358{left:212.400000px;}
.x7a_c00358{left:213.450000px;}
.x8e_c00358{left:214.500000px;}
.x2f_c00358{left:216.900000px;}
.x57_c00358{left:218.100000px;}
.x18_c00358{left:220.050000px;}
.x5e_c00358{left:221.400000px;}
.x22_c00358{left:222.450000px;}
.x54_c00358{left:226.800000px;}
.x12_c00358{left:228.900000px;}
.x64_c00358{left:231.300000px;}
.x3a_c00358{left:232.500000px;}
.x81_c00358{left:234.900000px;}
.x8_c00358{left:238.350000px;}
.x41_c00358{left:244.800000px;}
.x23_c00358{left:246.600000px;}
.x67_c00358{left:247.650000px;}
.x2b_c00358{left:249.600000px;}
.x55_c00358{left:251.250000px;}
.x39_c00358{left:253.200000px;}
.x1d_c00358{left:255.450000px;}
.x6f_c00358{left:257.850000px;}
.x82_c00358{left:260.850000px;}
.x7d_c00358{left:263.550000px;}
.x3b_c00358{left:264.900000px;}
.x13_c00358{left:265.950000px;}
.x9_c00358{left:267.150000px;}
.x59_c00358{left:271.200000px;}
.x24_c00358{left:273.300000px;}
.x1e_c00358{left:275.250000px;}
.x33_c00358{left:277.350000px;}
.x4f_c00358{left:279.750000px;}
.x70_c00358{left:283.800000px;}
.x76_c00358{left:284.850000px;}
.x5a_c00358{left:288.450000px;}
.x98_c00358{left:289.500000px;}
.x3c_c00358{left:292.200000px;}
.x14_c00358{left:293.250000px;}
.x4a_c00358{left:294.450000px;}
.x42_c00358{left:295.950000px;}
.x6b_c00358{left:298.200000px;}
.x60_c00358{left:300.600000px;}
.xa_c00358{left:303.450000px;}
.x3d_c00358{left:304.500000px;}
.x34_c00358{left:306.450000px;}
.x15_c00358{left:309.750000px;}
.x89_c00358{left:310.800000px;}
.x68_c00358{left:313.950000px;}
.x19_c00358{left:316.500000px;}
.x46_c00358{left:317.850000px;}
.x96_c00358{left:324.750000px;}
.x65_c00358{left:326.400000px;}
.x8f_c00358{left:329.400000px;}
.x2c_c00358{left:330.450000px;}
.x25_c00358{left:333.450000px;}
.x3_c00358{left:336.600000px;}
.x1_c00358{left:338.100000px;}
.x77_c00358{left:340.650000px;}
.x16_c00358{left:342.900000px;}
.x91_c00358{left:344.550000px;}
.x26_c00358{left:345.750000px;}
.x4_c00358{left:347.700000px;}
.x63_c00358{left:349.950000px;}
.x95_c00358{left:351.450000px;}
.x92_c00358{left:354.300000px;}
.x61_c00358{left:355.650000px;}
.x43_c00358{left:358.200000px;}
.x5b_c00358{left:359.400000px;}
.x99_c00358{left:360.450000px;}
.xb_c00358{left:362.100000px;}
.x83_c00358{left:363.750000px;}
.x27_c00358{left:365.850000px;}
.x47_c00358{left:368.250000px;}
.x7e_c00358{left:370.800000px;}
.x3e_c00358{left:372.150000px;}
.x6c_c00358{left:374.550000px;}
.x9a_c00358{left:375.900000px;}
.x8c_c00358{left:377.100000px;}
.x1a_c00358{left:379.200000px;}
.x4b_c00358{left:382.350000px;}
.x35_c00358{left:385.650000px;}
.x3f_c00358{left:389.100000px;}
.x50_c00358{left:391.350000px;}
.x7b_c00358{left:392.700000px;}
.x66_c00358{left:393.750000px;}
.xc_c00358{left:397.350000px;}
.x48_c00358{left:398.850000px;}
.x90_c00358{left:405.450000px;}
.x17_c00358{left:406.650000px;}
.x71_c00358{left:410.100000px;}
.x86_c00358{left:412.650000px;}
.x4c_c00358{left:417.600000px;}
.x4d_c00358{left:425.850000px;}
.x12f_c00358{left:446.400000px;}
.x105_c00358{left:447.450000px;}
.x9e_c00358{left:448.950000px;}
.xf8_c00358{left:451.050000px;}
.x100_c00358{left:461.400000px;}
.xa6_c00358{left:463.650000px;}
.x10e_c00358{left:464.850000px;}
.xc3_c00358{left:466.500000px;}
.xad_c00358{left:478.350000px;}
.x12b_c00358{left:482.700000px;}
.xd1_c00358{left:485.400000px;}
.xc9_c00358{left:488.700000px;}
.xf9_c00358{left:489.900000px;}
.xfc_c00358{left:492.450000px;}
.xa7_c00358{left:493.950000px;}
.x113_c00358{left:495.300000px;}
.xd9_c00358{left:496.950000px;}
.xae_c00358{left:499.950000px;}
.x124_c00358{left:501.000000px;}
.xef_c00358{left:502.050000px;}
.x10a_c00358{left:503.850000px;}
.xe9_c00358{left:506.100000px;}
.xf6_c00358{left:508.050000px;}
.x9f_c00358{left:510.900000px;}
.xa8_c00358{left:511.950000px;}
.x111_c00358{left:513.000000px;}
.xda_c00358{left:514.650000px;}
.xd2_c00358{left:516.000000px;}
.xb4_c00358{left:519.600000px;}
.x10f_c00358{left:520.650000px;}
.xc4_c00358{left:522.000000px;}
.xca_c00358{left:523.650000px;}
.xde_c00358{left:525.150000px;}
.x118_c00358{left:527.100000px;}
.xf0_c00358{left:529.350000px;}
.xb7_c00358{left:531.150000px;}
.xbc_c00358{left:532.350000px;}
.xb5_c00358{left:534.000000px;}
.xd3_c00358{left:535.050000px;}
.x10c_c00358{left:536.550000px;}
.xf5_c00358{left:541.950000px;}
.x106_c00358{left:544.650000px;}
.xa9_c00358{left:546.150000px;}
.xdb_c00358{left:548.550000px;}
.x11f_c00358{left:550.500000px;}
.xdf_c00358{left:555.000000px;}
.xfd_c00358{left:556.500000px;}
.xd4_c00358{left:558.150000px;}
.xe2_c00358{left:560.400000px;}
.xec_c00358{left:562.200000px;}
.xaa_c00358{left:569.550000px;}
.x10d_c00358{left:570.750000px;}
.x120_c00358{left:572.400000px;}
.x101_c00358{left:573.600000px;}
.xa0_c00358{left:576.000000px;}
.x114_c00358{left:578.400000px;}
.xbd_c00358{left:580.200000px;}
.xea_c00358{left:581.700000px;}
.x107_c00358{left:583.500000px;}
.x12c_c00358{left:585.600000px;}
.xf7_c00358{left:587.550000px;}
.xcb_c00358{left:589.200000px;}
.x102_c00358{left:592.350000px;}
.xd5_c00358{left:593.400000px;}
.x127_c00358{left:594.450000px;}
.x125_c00358{left:597.450000px;}
.x115_c00358{left:598.950000px;}
.xf1_c00358{left:600.300000px;}
.xdc_c00358{left:601.500000px;}
.x9b_c00358{left:604.500000px;}
.x130_c00358{left:605.550000px;}
.xb8_c00358{left:606.750000px;}
.xaf_c00358{left:608.250000px;}
.xe0_c00358{left:609.750000px;}
.xc5_c00358{left:612.000000px;}
.xbe_c00358{left:613.350000px;}
.xb0_c00358{left:615.750000px;}
.x11b_c00358{left:616.800000px;}
.x11d_c00358{left:619.050000px;}
.x108_c00358{left:620.550000px;}
.xa1_c00358{left:622.050000px;}
.x134_c00358{left:625.200000px;}
.xd6_c00358{left:626.550000px;}
.xb1_c00358{left:629.850000px;}
.x12a_c00358{left:631.500000px;}
.xe3_c00358{left:632.700000px;}
.xe1_c00358{left:633.900000px;}
.xc6_c00358{left:636.150000px;}
.xcc_c00358{left:639.600000px;}
.x12d_c00358{left:640.650000px;}
.xb9_c00358{left:642.450000px;}
.xbf_c00358{left:643.650000px;}
.x119_c00358{left:644.850000px;}
.xf2_c00358{left:646.800000px;}
.xcd_c00358{left:648.600000px;}
.xeb_c00358{left:650.100000px;}
.x103_c00358{left:652.050000px;}
.xc7_c00358{left:653.100000px;}
.x110_c00358{left:654.600000px;}
.xe4_c00358{left:658.650000px;}
.xba_c00358{left:661.500000px;}
.x126_c00358{left:663.300000px;}
.x122_c00358{left:666.300000px;}
.x128_c00358{left:667.500000px;}
.xe5_c00358{left:669.450000px;}
.xfb_c00358{left:670.800000px;}
.xab_c00358{left:672.900000px;}
.x121_c00358{left:676.500000px;}
.x131_c00358{left:677.550000px;}
.x9c_c00358{left:679.050000px;}
.xa2_c00358{left:681.750000px;}
.xc0_c00358{left:683.250000px;}
.xd7_c00358{left:685.650000px;}
.x129_c00358{left:687.000000px;}
.xc8_c00358{left:688.650000px;}
.x104_c00358{left:690.900000px;}
.x12e_c00358{left:693.150000px;}
.x9d_c00358{left:694.200000px;}
.x135_c00358{left:695.700000px;}
.x109_c00358{left:697.200000px;}
.x132_c00358{left:698.850000px;}
.x11e_c00358{left:700.050000px;}
.xc1_c00358{left:703.350000px;}
.xfe_c00358{left:704.400000px;}
.xd8_c00358{left:706.500000px;}
.xa3_c00358{left:708.000000px;}
.xce_c00358{left:710.850000px;}
.xf3_c00358{left:713.700000px;}
.xb2_c00358{left:715.500000px;}
.xb6_c00358{left:716.550000px;}
.xed_c00358{left:719.100000px;}
.xe6_c00358{left:725.250000px;}
.xcf_c00358{left:727.350000px;}
.x11a_c00358{left:730.050000px;}
.xe7_c00358{left:734.550000px;}
.x116_c00358{left:736.950000px;}
.xa4_c00358{left:738.300000px;}
.x133_c00358{left:739.500000px;}
.x10b_c00358{left:741.450000px;}
.xbb_c00358{left:744.000000px;}
.xb3_c00358{left:745.050000px;}
.xff_c00358{left:746.550000px;}
.x123_c00358{left:749.400000px;}
.xf4_c00358{left:751.800000px;}
.xee_c00358{left:754.050000px;}
.xc2_c00358{left:755.550000px;}
.x11c_c00358{left:757.200000px;}
.x2_c00358{left:758.550000px;}
.xfa_c00358{left:759.900000px;}
.x117_c00358{left:762.900000px;}
.x112_c00358{left:764.250000px;}
.xdd_c00358{left:765.600000px;}
.xe8_c00358{left:766.650000px;}
.xd0_c00358{left:770.850000px;}
.xa5_c00358{left:772.500000px;}
.xac_c00358{left:773.550000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ws3_c00358{word-spacing:-11.809524pt;}
.wsa_c00358{word-spacing:-10.524577pt;}
.ws8_c00358{word-spacing:-9.846154pt;}
.ws4_c00358{word-spacing:-8.746799pt;}
.ws0_c00358{word-spacing:-5.745257pt;}
.ws2_c00358{word-spacing:-2.238683pt;}
.ws6_c00358{word-spacing:-0.027491pt;}
.wsb_c00358{word-spacing:0.000000pt;}
.ws7_c00358{word-spacing:2.010347pt;}
.ws5_c00358{word-spacing:4.317460pt;}
.ws1_c00358{word-spacing:294.814815pt;}
.ws9_c00358{word-spacing:1293.888889pt;}
._0_c00358{width:347.407407pt;}
.fs7_c00358{font-size:26.666667pt;}
.fs2_c00358{font-size:37.333333pt;}
.fs8_c00358{font-size:48.000000pt;}
.fs5_c00358{font-size:53.333333pt;}
.fs4_c00358{font-size:58.666667pt;}
.fs3_c00358{font-size:64.000000pt;}
.fs1_c00358{font-size:69.333333pt;}
.fs6_c00358{font-size:74.666667pt;}
.fs0_c00358{font-size:96.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y5e_c00358{bottom:157.733333pt;}
.y33_c00358{bottom:173.733333pt;}
.y5d_c00358{bottom:174.133333pt;}
.y32_c00358{bottom:190.000000pt;}
.y5c_c00358{bottom:190.133333pt;}
.y31_c00358{bottom:205.733333pt;}
.y5b_c00358{bottom:210.000000pt;}
.y5a_c00358{bottom:226.000000pt;}
.y30_c00358{bottom:230.133333pt;}
.y59_c00358{bottom:242.266667pt;}
.y2f_c00358{bottom:245.866667pt;}
.y2e_c00358{bottom:261.866667pt;}
.y58_c00358{bottom:262.133333pt;}
.y2d_c00358{bottom:278.133333pt;}
.y2c_c00358{bottom:297.866667pt;}
.y57_c00358{bottom:306.266667pt;}
.y2b_c00358{bottom:313.600000pt;}
.y56_c00358{bottom:321.733333pt;}
.y55_c00358{bottom:337.466667pt;}
.y2a_c00358{bottom:341.466667pt;}
.y54_c00358{bottom:353.200000pt;}
.y29_c00358{bottom:361.600000pt;}
.y53_c00358{bottom:368.933333pt;}
.y28_c00358{bottom:381.333333pt;}
.y52_c00358{bottom:384.666667pt;}
.y27_c00358{bottom:397.066667pt;}
.y51_c00358{bottom:408.666667pt;}
.y26_c00358{bottom:413.333333pt;}
.y50_c00358{bottom:428.800000pt;}
.y25_c00358{bottom:429.066667pt;}
.y24_c00358{bottom:445.066667pt;}
.y23_c00358{bottom:461.066667pt;}
.y22_c00358{bottom:477.066667pt;}
.y21_c00358{bottom:493.066667pt;}
.y20_c00358{bottom:509.066667pt;}
.y4f_c00358{bottom:525.333333pt;}
.y1f_c00358{bottom:529.200000pt;}
.y4e_c00358{bottom:541.066667pt;}
.y1e_c00358{bottom:545.200000pt;}
.y4d_c00358{bottom:556.800000pt;}
.y1d_c00358{bottom:561.200000pt;}
.y4c_c00358{bottom:572.800000pt;}
.y1c_c00358{bottom:577.200000pt;}
.y1b_c00358{bottom:593.200000pt;}
.y4b_c00358{bottom:595.200000pt;}
.y1a_c00358{bottom:609.200000pt;}
.y4a_c00358{bottom:617.333333pt;}
.y19_c00358{bottom:624.933333pt;}
.y49_c00358{bottom:633.600000pt;}
.y18_c00358{bottom:640.933333pt;}
.y48_c00358{bottom:652.800000pt;}
.y17_c00358{bottom:656.666667pt;}
.y47_c00358{bottom:673.333333pt;}
.y16_c00358{bottom:678.666667pt;}
.y46_c00358{bottom:689.333333pt;}
.y15_c00358{bottom:700.800000pt;}
.y14_c00358{bottom:716.533333pt;}
.y45_c00358{bottom:717.066667pt;}
.y44_c00358{bottom:736.933333pt;}
.y13_c00358{bottom:739.733333pt;}
.y12_c00358{bottom:755.733333pt;}
.y43_c00358{bottom:756.400000pt;}
.y11_c00358{bottom:771.733333pt;}
.y10_c00358{bottom:787.733333pt;}
.yf_c00358{bottom:803.733333pt;}
.ye_c00358{bottom:819.466667pt;}
.y42_c00358{bottom:819.733333pt;}
.yd_c00358{bottom:835.466667pt;}
.y41_c00358{bottom:835.733333pt;}
.y40_c00358{bottom:851.466667pt;}
.yc_c00358{bottom:857.600000pt;}
.y3f_c00358{bottom:867.466667pt;}
.yb_c00358{bottom:871.066667pt;}
.y3e_c00358{bottom:883.466667pt;}
.ya_c00358{bottom:897.866667pt;}
.y3d_c00358{bottom:899.466667pt;}
.y3c_c00358{bottom:915.466667pt;}
.y9_c00358{bottom:917.733333pt;}
.y8_c00358{bottom:933.733333pt;}
.y3b_c00358{bottom:937.333333pt;}
.y3a_c00358{bottom:950.400000pt;}
.y7_c00358{bottom:953.333333pt;}
.y39_c00358{bottom:962.933333pt;}
.y6_c00358{bottom:969.333333pt;}
.y38_c00358{bottom:976.000000pt;}
.y5_c00358{bottom:985.333333pt;}
.y37_c00358{bottom:989.066667pt;}
.y4_c00358{bottom:1001.333333pt;}
.y36_c00358{bottom:1001.600000pt;}
.y2_c00358{bottom:1019.866667pt;}
.y1_c00358{bottom:1024.666667pt;}
.y34_c00358{bottom:1121.600000pt;}
.y3_c00358{bottom:1123.866667pt;}
.y35_c00358{bottom:1124.800000pt;}
.h8_c00358{height:26.666667pt;}
.h3_c00358{height:37.333333pt;}
.h9_c00358{height:48.000000pt;}
.h6_c00358{height:53.333333pt;}
.h5_c00358{height:58.666667pt;}
.h4_c00358{height:64.000000pt;}
.h2_c00358{height:69.333333pt;}
.h7_c00358{height:74.666667pt;}
.h1_c00358{height:96.000000pt;}
.h0_c00358{height:1128.000000pt;}
.w0_c00358{width:853.760009pt;}
.w1_c00358{width:854.000000pt;}
.x0_c00358{left:0.000000pt;}
.x94_c00358{left:78.133333pt;}
.x87_c00358{left:79.066667pt;}
.x1f_c00358{left:80.000000pt;}
.x30_c00358{left:81.333333pt;}
.x36_c00358{left:87.466667pt;}
.x78_c00358{left:89.333333pt;}
.x5c_c00358{left:93.866667pt;}
.x7f_c00358{left:95.066667pt;}
.x5_c00358{left:96.000000pt;}
.x44_c00358{left:96.933333pt;}
.xd_c00358{left:107.466667pt;}
.x8b_c00358{left:110.666667pt;}
.x74_c00358{left:111.733333pt;}
.x1b_c00358{left:112.800000pt;}
.x84_c00358{left:114.000000pt;}
.x56_c00358{left:117.333333pt;}
.x4e_c00358{left:119.333333pt;}
.x72_c00358{left:120.400000pt;}
.x31_c00358{left:122.000000pt;}
.x45_c00358{left:123.466667pt;}
.x80_c00358{left:126.400000pt;}
.x49_c00358{left:127.600000pt;}
.x5f_c00358{left:131.466667pt;}
.xe_c00358{left:132.400000pt;}
.x6_c00358{left:134.400000pt;}
.x51_c00358{left:136.400000pt;}
.x5d_c00358{left:137.333333pt;}
.x6d_c00358{left:139.333333pt;}
.x8a_c00358{left:140.266667pt;}
.x28_c00358{left:141.200000pt;}
.x2d_c00358{left:142.133333pt;}
.x7c_c00358{left:145.600000pt;}
.x20_c00358{left:146.533333pt;}
.x40_c00358{left:148.800000pt;}
.x75_c00358{left:150.133333pt;}
.x88_c00358{left:151.333333pt;}
.x85_c00358{left:152.666667pt;}
.x62_c00358{left:153.866667pt;}
.x32_c00358{left:155.333333pt;}
.x29_c00358{left:156.266667pt;}
.x73_c00358{left:157.200000pt;}
.x8d_c00358{left:158.400000pt;}
.xf_c00358{left:160.266667pt;}
.x52_c00358{left:162.000000pt;}
.x1c_c00358{left:163.066667pt;}
.x2e_c00358{left:164.266667pt;}
.x21_c00358{left:165.466667pt;}
.x7_c00358{left:167.066667pt;}
.x10_c00358{left:168.266667pt;}
.x79_c00358{left:170.666667pt;}
.x37_c00358{left:173.200000pt;}
.x69_c00358{left:175.066667pt;}
.x58_c00358{left:176.800000pt;}
.x2a_c00358{left:178.400000pt;}
.x93_c00358{left:182.400000pt;}
.x6a_c00358{left:183.466667pt;}
.x11_c00358{left:184.533333pt;}
.x38_c00358{left:186.000000pt;}
.x53_c00358{left:186.933333pt;}
.x6e_c00358{left:187.866667pt;}
.x97_c00358{left:188.800000pt;}
.x7a_c00358{left:189.733333pt;}
.x8e_c00358{left:190.666667pt;}
.x2f_c00358{left:192.800000pt;}
.x57_c00358{left:193.866667pt;}
.x18_c00358{left:195.600000pt;}
.x5e_c00358{left:196.800000pt;}
.x22_c00358{left:197.733333pt;}
.x54_c00358{left:201.600000pt;}
.x12_c00358{left:203.466667pt;}
.x64_c00358{left:205.600000pt;}
.x3a_c00358{left:206.666667pt;}
.x81_c00358{left:208.800000pt;}
.x8_c00358{left:211.866667pt;}
.x41_c00358{left:217.600000pt;}
.x23_c00358{left:219.200000pt;}
.x67_c00358{left:220.133333pt;}
.x2b_c00358{left:221.866667pt;}
.x55_c00358{left:223.333333pt;}
.x39_c00358{left:225.066667pt;}
.x1d_c00358{left:227.066667pt;}
.x6f_c00358{left:229.200000pt;}
.x82_c00358{left:231.866667pt;}
.x7d_c00358{left:234.266667pt;}
.x3b_c00358{left:235.466667pt;}
.x13_c00358{left:236.400000pt;}
.x9_c00358{left:237.466667pt;}
.x59_c00358{left:241.066667pt;}
.x24_c00358{left:242.933333pt;}
.x1e_c00358{left:244.666667pt;}
.x33_c00358{left:246.533333pt;}
.x4f_c00358{left:248.666667pt;}
.x70_c00358{left:252.266667pt;}
.x76_c00358{left:253.200000pt;}
.x5a_c00358{left:256.400000pt;}
.x98_c00358{left:257.333333pt;}
.x3c_c00358{left:259.733333pt;}
.x14_c00358{left:260.666667pt;}
.x4a_c00358{left:261.733333pt;}
.x42_c00358{left:263.066667pt;}
.x6b_c00358{left:265.066667pt;}
.x60_c00358{left:267.200000pt;}
.xa_c00358{left:269.733333pt;}
.x3d_c00358{left:270.666667pt;}
.x34_c00358{left:272.400000pt;}
.x15_c00358{left:275.333333pt;}
.x89_c00358{left:276.266667pt;}
.x68_c00358{left:279.066667pt;}
.x19_c00358{left:281.333333pt;}
.x46_c00358{left:282.533333pt;}
.x96_c00358{left:288.666667pt;}
.x65_c00358{left:290.133333pt;}
.x8f_c00358{left:292.800000pt;}
.x2c_c00358{left:293.733333pt;}
.x25_c00358{left:296.400000pt;}
.x3_c00358{left:299.200000pt;}
.x1_c00358{left:300.533333pt;}
.x77_c00358{left:302.800000pt;}
.x16_c00358{left:304.800000pt;}
.x91_c00358{left:306.266667pt;}
.x26_c00358{left:307.333333pt;}
.x4_c00358{left:309.066667pt;}
.x63_c00358{left:311.066667pt;}
.x95_c00358{left:312.400000pt;}
.x92_c00358{left:314.933333pt;}
.x61_c00358{left:316.133333pt;}
.x43_c00358{left:318.400000pt;}
.x5b_c00358{left:319.466667pt;}
.x99_c00358{left:320.400000pt;}
.xb_c00358{left:321.866667pt;}
.x83_c00358{left:323.333333pt;}
.x27_c00358{left:325.200000pt;}
.x47_c00358{left:327.333333pt;}
.x7e_c00358{left:329.600000pt;}
.x3e_c00358{left:330.800000pt;}
.x6c_c00358{left:332.933333pt;}
.x9a_c00358{left:334.133333pt;}
.x8c_c00358{left:335.200000pt;}
.x1a_c00358{left:337.066667pt;}
.x4b_c00358{left:339.866667pt;}
.x35_c00358{left:342.800000pt;}
.x3f_c00358{left:345.866667pt;}
.x50_c00358{left:347.866667pt;}
.x7b_c00358{left:349.066667pt;}
.x66_c00358{left:350.000000pt;}
.xc_c00358{left:353.200000pt;}
.x48_c00358{left:354.533333pt;}
.x90_c00358{left:360.400000pt;}
.x17_c00358{left:361.466667pt;}
.x71_c00358{left:364.533333pt;}
.x86_c00358{left:366.800000pt;}
.x4c_c00358{left:371.200000pt;}
.x4d_c00358{left:378.533333pt;}
.x12f_c00358{left:396.800000pt;}
.x105_c00358{left:397.733333pt;}
.x9e_c00358{left:399.066667pt;}
.xf8_c00358{left:400.933333pt;}
.x100_c00358{left:410.133333pt;}
.xa6_c00358{left:412.133333pt;}
.x10e_c00358{left:413.200000pt;}
.xc3_c00358{left:414.666667pt;}
.xad_c00358{left:425.200000pt;}
.x12b_c00358{left:429.066667pt;}
.xd1_c00358{left:431.466667pt;}
.xc9_c00358{left:434.400000pt;}
.xf9_c00358{left:435.466667pt;}
.xfc_c00358{left:437.733333pt;}
.xa7_c00358{left:439.066667pt;}
.x113_c00358{left:440.266667pt;}
.xd9_c00358{left:441.733333pt;}
.xae_c00358{left:444.400000pt;}
.x124_c00358{left:445.333333pt;}
.xef_c00358{left:446.266667pt;}
.x10a_c00358{left:447.866667pt;}
.xe9_c00358{left:449.866667pt;}
.xf6_c00358{left:451.600000pt;}
.x9f_c00358{left:454.133333pt;}
.xa8_c00358{left:455.066667pt;}
.x111_c00358{left:456.000000pt;}
.xda_c00358{left:457.466667pt;}
.xd2_c00358{left:458.666667pt;}
.xb4_c00358{left:461.866667pt;}
.x10f_c00358{left:462.800000pt;}
.xc4_c00358{left:464.000000pt;}
.xca_c00358{left:465.466667pt;}
.xde_c00358{left:466.800000pt;}
.x118_c00358{left:468.533333pt;}
.xf0_c00358{left:470.533333pt;}
.xb7_c00358{left:472.133333pt;}
.xbc_c00358{left:473.200000pt;}
.xb5_c00358{left:474.666667pt;}
.xd3_c00358{left:475.600000pt;}
.x10c_c00358{left:476.933333pt;}
.xf5_c00358{left:481.733333pt;}
.x106_c00358{left:484.133333pt;}
.xa9_c00358{left:485.466667pt;}
.xdb_c00358{left:487.600000pt;}
.x11f_c00358{left:489.333333pt;}
.xdf_c00358{left:493.333333pt;}
.xfd_c00358{left:494.666667pt;}
.xd4_c00358{left:496.133333pt;}
.xe2_c00358{left:498.133333pt;}
.xec_c00358{left:499.733333pt;}
.xaa_c00358{left:506.266667pt;}
.x10d_c00358{left:507.333333pt;}
.x120_c00358{left:508.800000pt;}
.x101_c00358{left:509.866667pt;}
.xa0_c00358{left:512.000000pt;}
.x114_c00358{left:514.133333pt;}
.xbd_c00358{left:515.733333pt;}
.xea_c00358{left:517.066667pt;}
.x107_c00358{left:518.666667pt;}
.x12c_c00358{left:520.533333pt;}
.xf7_c00358{left:522.266667pt;}
.xcb_c00358{left:523.733333pt;}
.x102_c00358{left:526.533333pt;}
.xd5_c00358{left:527.466667pt;}
.x127_c00358{left:528.400000pt;}
.x125_c00358{left:531.066667pt;}
.x115_c00358{left:532.400000pt;}
.xf1_c00358{left:533.600000pt;}
.xdc_c00358{left:534.666667pt;}
.x9b_c00358{left:537.333333pt;}
.x130_c00358{left:538.266667pt;}
.xb8_c00358{left:539.333333pt;}
.xaf_c00358{left:540.666667pt;}
.xe0_c00358{left:542.000000pt;}
.xc5_c00358{left:544.000000pt;}
.xbe_c00358{left:545.200000pt;}
.xb0_c00358{left:547.333333pt;}
.x11b_c00358{left:548.266667pt;}
.x11d_c00358{left:550.266667pt;}
.x108_c00358{left:551.600000pt;}
.xa1_c00358{left:552.933333pt;}
.x134_c00358{left:555.733333pt;}
.xd6_c00358{left:556.933333pt;}
.xb1_c00358{left:559.866667pt;}
.x12a_c00358{left:561.333333pt;}
.xe3_c00358{left:562.400000pt;}
.xe1_c00358{left:563.466667pt;}
.xc6_c00358{left:565.466667pt;}
.xcc_c00358{left:568.533333pt;}
.x12d_c00358{left:569.466667pt;}
.xb9_c00358{left:571.066667pt;}
.xbf_c00358{left:572.133333pt;}
.x119_c00358{left:573.200000pt;}
.xf2_c00358{left:574.933333pt;}
.xcd_c00358{left:576.533333pt;}
.xeb_c00358{left:577.866667pt;}
.x103_c00358{left:579.600000pt;}
.xc7_c00358{left:580.533333pt;}
.x110_c00358{left:581.866667pt;}
.xe4_c00358{left:585.466667pt;}
.xba_c00358{left:588.000000pt;}
.x126_c00358{left:589.600000pt;}
.x122_c00358{left:592.266667pt;}
.x128_c00358{left:593.333333pt;}
.xe5_c00358{left:595.066667pt;}
.xfb_c00358{left:596.266667pt;}
.xab_c00358{left:598.133333pt;}
.x121_c00358{left:601.333333pt;}
.x131_c00358{left:602.266667pt;}
.x9c_c00358{left:603.600000pt;}
.xa2_c00358{left:606.000000pt;}
.xc0_c00358{left:607.333333pt;}
.xd7_c00358{left:609.466667pt;}
.x129_c00358{left:610.666667pt;}
.xc8_c00358{left:612.133333pt;}
.x104_c00358{left:614.133333pt;}
.x12e_c00358{left:616.133333pt;}
.x9d_c00358{left:617.066667pt;}
.x135_c00358{left:618.400000pt;}
.x109_c00358{left:619.733333pt;}
.x132_c00358{left:621.200000pt;}
.x11e_c00358{left:622.266667pt;}
.xc1_c00358{left:625.200000pt;}
.xfe_c00358{left:626.133333pt;}
.xd8_c00358{left:628.000000pt;}
.xa3_c00358{left:629.333333pt;}
.xce_c00358{left:631.866667pt;}
.xf3_c00358{left:634.400000pt;}
.xb2_c00358{left:636.000000pt;}
.xb6_c00358{left:636.933333pt;}
.xed_c00358{left:639.200000pt;}
.xe6_c00358{left:644.666667pt;}
.xcf_c00358{left:646.533333pt;}
.x11a_c00358{left:648.933333pt;}
.xe7_c00358{left:652.933333pt;}
.x116_c00358{left:655.066667pt;}
.xa4_c00358{left:656.266667pt;}
.x133_c00358{left:657.333333pt;}
.x10b_c00358{left:659.066667pt;}
.xbb_c00358{left:661.333333pt;}
.xb3_c00358{left:662.266667pt;}
.xff_c00358{left:663.600000pt;}
.x123_c00358{left:666.133333pt;}
.xf4_c00358{left:668.266667pt;}
.xee_c00358{left:670.266667pt;}
.xc2_c00358{left:671.600000pt;}
.x11c_c00358{left:673.066667pt;}
.x2_c00358{left:674.266667pt;}
.xfa_c00358{left:675.466667pt;}
.x117_c00358{left:678.133333pt;}
.x112_c00358{left:679.333333pt;}
.xdd_c00358{left:680.533333pt;}
.xe8_c00358{left:681.466667pt;}
.xd0_c00358{left:685.200000pt;}
.xa5_c00358{left:686.666667pt;}
.xac_c00358{left:687.600000pt;}
}





/* 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_c00359 {
    display:none;
  }
  .loading-indicator_c00359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00359 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_c00359 { 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_c00359" -> "#page-container .classname_c00359")
 */
.pf_c00359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00359 { /* 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_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00359 { /* 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_c00359 { /* 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_c00359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00359 {overflow:visible;}
  }
}
.c_c00359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00359 { /* 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_c00359:after { /* webkit #35443 */
  content: '';
}
.t_c00359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00359 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 */
}
.__c00359 { /* 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_c00359 { /* info for Javascript */
  display:none;
}
.l_c00359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00359: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_c00359 {
    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_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00359.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_c00359 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00359;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.000000;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;}
.med_c00359{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00359{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00359{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00359{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00359{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10_c00359{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m105_c00359{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.meb_c00359{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m8_c00359{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00359{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m107_c00359{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00359{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00359{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00359{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m60_c00359{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00359{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00359{transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00359{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.mab_c00359{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m85_c00359{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00359{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00359{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m77_c00359{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00359{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m42_c00359{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m73_c00359{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me3_c00359{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00359{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00359{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.maa_c00359{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mc_c00359{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m76_c00359{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m87_c00359{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m89_c00359{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00359{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m40_c00359{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00359{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m79_c00359{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m54_c00359{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00359{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00359{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me6_c00359{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m37_c00359{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00359{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00359{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md9_c00359{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mce_c00359{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m88_c00359{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m95_c00359{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m106_c00359{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00359{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00359{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m100_c00359{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00359{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m34_c00359{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00359{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mac_c00359{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m96_c00359{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00359{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00359{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m45_c00359{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md1_c00359{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00359{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00359{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m22_c00359{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00359{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m53_c00359{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m26_c00359{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00359{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m46_c00359{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m70_c00359{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00359{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m30_c00359{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m31_c00359{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md7_c00359{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m27_c00359{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m104_c00359{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00359{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00359{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mf_c00359{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m35_c00359{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m57_c00359{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00359{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m90_c00359{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m93_c00359{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00359{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m81_c00359{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m108_c00359{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m71_c00359{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00359{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00359{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m66_c00359{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m19_c00359{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mba_c00359{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00359{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m64_c00359{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md2_c00359{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00359{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00359{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00359{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb_c00359{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m49_c00359{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m55_c00359{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00359{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md8_c00359{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00359{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma_c00359{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m97_c00359{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m44_c00359{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mff_c00359{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m52_c00359{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m63_c00359{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m58_c00359{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m38_c00359{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m36_c00359{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m21_c00359{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00359{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00359{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00359{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m99_c00359{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00359{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.me_c00359{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00359{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00359{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m29_c00359{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md_c00359{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00359{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m51_c00359{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m39_c00359{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00359{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00359{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00359{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m23_c00359{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00359{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00359{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00359{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00359{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m68_c00359{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md6_c00359{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m33_c00359{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me4_c00359{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00359{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m41_c00359{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00359{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m61_c00359{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m17_c00359{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7_c00359{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mea_c00359{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m15_c00359{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m25_c00359{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m56_c00359{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md5_c00359{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00359{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00359{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m43_c00359{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m98_c00359{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md0_c00359{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m4_c00359{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00359{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00359{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m14_c00359{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00359{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mef_c00359{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00359{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00359{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00359{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m50_c00359{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00359{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00359{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mad_c00359{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m32_c00359{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6_c00359{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00359{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00359{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9_c00359{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00359{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md4_c00359{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m72_c00359{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00359{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5_c00359{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m20_c00359{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mec_c00359{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00359{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00359{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m16_c00359{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00359{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00359{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00359{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m103_c00359{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m24_c00359{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m80_c00359{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m59_c00359{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m67_c00359{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m18_c00359{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00359{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m101_c00359{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m13_c00359{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m0_c00359{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m28_c00359{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me0_c00359{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00359{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00359{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00359{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.md3_c00359{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00359{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00359{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m12_c00359{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00359{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m48_c00359{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00359{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00359{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m83_c00359{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00359{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00359{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m102_c00359{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00359{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m86_c00359{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00359{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00359{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mae_c00359{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me5_c00359{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00359{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mca_c00359{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);}
.m94_c00359{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00359{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00359{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00359{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m47_c00359{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00359{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00359{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00359{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00359{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00359{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00359{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m91_c00359{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00359{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00359{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m92_c00359{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00359{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m75_c00359{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00359{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m62_c00359{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00359{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me2_c00359{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m74_c00359{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m65_c00359{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me1_c00359{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mda_c00359{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00359{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.me8_c00359{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m78_c00359{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00359{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00359{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00359{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.mee_c00359{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00359{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m82_c00359{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m69_c00359{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.mde_c00359{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);}
.maf_c00359{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.me9_c00359{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.me7_c00359{transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls0_c00359{letter-spacing:0.000000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{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__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00359{word-spacing:-9.339306px;}
.ws1_c00359{word-spacing:-8.942099px;}
.ws5_c00359{word-spacing:0.000000px;}
.ws2_c00359{word-spacing:29.285714px;}
.ws4_c00359{word-spacing:44.166667px;}
.ws3_c00359{word-spacing:50.714286px;}
._0_c00359{width:55.714286px;}
.fc0_c00359{color:transparent;}
.fs5_c00359{font-size:24.000000px;}
.fs1_c00359{font-size:30.000000px;}
.fs6_c00359{font-size:42.000000px;}
.fs9_c00359{font-size:48.000000px;}
.fs8_c00359{font-size:54.000000px;}
.fs2_c00359{font-size:60.000000px;}
.fs3_c00359{font-size:66.000000px;}
.fs4_c00359{font-size:72.000000px;}
.fs7_c00359{font-size:78.000000px;}
.fs0_c00359{font-size:84.000000px;}
.y0_c00359{bottom:0.000000px;}
.y37_c00359{bottom:200.100000px;}
.y68_c00359{bottom:200.400000px;}
.y67_c00359{bottom:218.100000px;}
.y36_c00359{bottom:218.850000px;}
.y66_c00359{bottom:235.800000px;}
.y35_c00359{bottom:244.500000px;}
.y65_c00359{bottom:253.800000px;}
.y34_c00359{bottom:263.250000px;}
.y64_c00359{bottom:271.500000px;}
.y33_c00359{bottom:285.150000px;}
.y63_c00359{bottom:289.500000px;}
.y32_c00359{bottom:307.500000px;}
.y31_c00359{bottom:325.200000px;}
.y62_c00359{bottom:325.500000px;}
.y30_c00359{bottom:343.200000px;}
.y61_c00359{bottom:343.800000px;}
.y2f_c00359{bottom:360.450000px;}
.y60_c00359{bottom:361.800000px;}
.y2e_c00359{bottom:378.750000px;}
.y5f_c00359{bottom:379.800000px;}
.y2d_c00359{bottom:396.750000px;}
.y5e_c00359{bottom:397.800000px;}
.y2c_c00359{bottom:411.000000px;}
.y2b_c00359{bottom:414.300000px;}
.y5d_c00359{bottom:415.500000px;}
.y2a_c00359{bottom:428.700000px;}
.y29_c00359{bottom:432.300000px;}
.y5c_c00359{bottom:433.800000px;}
.y28_c00359{bottom:450.000000px;}
.y5b_c00359{bottom:451.500000px;}
.y27_c00359{bottom:470.550000px;}
.y5a_c00359{bottom:476.400000px;}
.y26_c00359{bottom:485.250000px;}
.y59_c00359{bottom:491.100000px;}
.y25_c00359{bottom:505.800000px;}
.y58_c00359{bottom:511.200000px;}
.y24_c00359{bottom:523.800000px;}
.y57_c00359{bottom:528.900000px;}
.y23_c00359{bottom:541.800000px;}
.y56_c00359{bottom:546.900000px;}
.y22_c00359{bottom:564.150000px;}
.y55_c00359{bottom:569.400000px;}
.y21_c00359{bottom:581.850000px;}
.y54_c00359{bottom:587.100000px;}
.y20_c00359{bottom:600.150000px;}
.y53_c00359{bottom:605.400000px;}
.y1f_c00359{bottom:621.750000px;}
.y52_c00359{bottom:623.100000px;}
.y51_c00359{bottom:645.450000px;}
.y1e_c00359{bottom:648.000000px;}
.y50_c00359{bottom:663.150000px;}
.y1d_c00359{bottom:665.700000px;}
.y1c_c00359{bottom:684.000000px;}
.y4f_c00359{bottom:690.150000px;}
.y1b_c00359{bottom:702.000000px;}
.y4e_c00359{bottom:708.150000px;}
.y1a_c00359{bottom:720.000000px;}
.y4d_c00359{bottom:730.800000px;}
.y19_c00359{bottom:738.000000px;}
.y4c_c00359{bottom:753.000000px;}
.y18_c00359{bottom:755.700000px;}
.y4b_c00359{bottom:770.700000px;}
.y17_c00359{bottom:777.900000px;}
.y4a_c00359{bottom:788.700000px;}
.y16_c00359{bottom:800.400000px;}
.y49_c00359{bottom:807.000000px;}
.y15_c00359{bottom:818.100000px;}
.y48_c00359{bottom:824.700000px;}
.y14_c00359{bottom:835.800000px;}
.y47_c00359{bottom:841.950000px;}
.y13_c00359{bottom:853.500000px;}
.y46_c00359{bottom:859.950000px;}
.y12_c00359{bottom:871.500000px;}
.y45_c00359{bottom:877.950000px;}
.y11_c00359{bottom:889.200000px;}
.y44_c00359{bottom:895.950000px;}
.y10_c00359{bottom:902.100000px;}
.yf_c00359{bottom:911.400000px;}
.y43_c00359{bottom:913.950000px;}
.ye_c00359{bottom:929.100000px;}
.y42_c00359{bottom:931.950000px;}
.yd_c00359{bottom:947.400000px;}
.y41_c00359{bottom:949.650000px;}
.yc_c00359{bottom:965.400000px;}
.y40_c00359{bottom:969.900000px;}
.yb_c00359{bottom:983.100000px;}
.y3f_c00359{bottom:984.300000px;}
.y3e_c00359{bottom:996.900000px;}
.ya_c00359{bottom:1000.800000px;}
.y3d_c00359{bottom:1016.550000px;}
.y9_c00359{bottom:1018.800000px;}
.y3c_c00359{bottom:1034.550000px;}
.y8_c00359{bottom:1036.800000px;}
.y3b_c00359{bottom:1052.550000px;}
.y7_c00359{bottom:1054.500000px;}
.y3a_c00359{bottom:1070.250000px;}
.y6_c00359{bottom:1073.850000px;}
.y5_c00359{bottom:1089.750000px;}
.y39_c00359{bottom:1092.300000px;}
.y4_c00359{bottom:1110.000000px;}
.y38_c00359{bottom:1110.300000px;}
.y3_c00359{bottom:1128.300000px;}
.y1_c00359{bottom:1155.300000px;}
.y2_c00359{bottom:1191.600000px;}
.h7_c00359{height:24.000000px;}
.h3_c00359{height:30.000000px;}
.h8_c00359{height:42.000000px;}
.hb_c00359{height:48.000000px;}
.ha_c00359{height:54.000000px;}
.h4_c00359{height:60.000000px;}
.h5_c00359{height:66.000000px;}
.h6_c00359{height:72.000000px;}
.h9_c00359{height:78.000000px;}
.h2_c00359{height:84.000000px;}
.h1_c00359{height:1275.750000px;}
.h0_c00359{height:1275.839997px;}
.w0_c00359{width:960.480010px;}
.w1_c00359{width:960.750000px;}
.x0_c00359{left:0.000000px;}
.x87_c00359{left:171.750000px;}
.x60_c00359{left:173.100000px;}
.x1_c00359{left:174.300000px;}
.x12_c00359{left:175.650000px;}
.x8b_c00359{left:186.300000px;}
.x1a_c00359{left:189.750000px;}
.x4_c00359{left:191.100000px;}
.xb_c00359{left:193.200000px;}
.x7f_c00359{left:196.950000px;}
.x50_c00359{left:204.000000px;}
.x7c_c00359{left:209.100000px;}
.xc_c00359{left:211.950000px;}
.x3f_c00359{left:214.200000px;}
.x66_c00359{left:216.300000px;}
.x69_c00359{left:218.250000px;}
.x80_c00359{left:219.300000px;}
.x59_c00359{left:224.250000px;}
.x56_c00359{left:227.100000px;}
.x20_c00359{left:228.600000px;}
.x8f_c00359{left:230.550000px;}
.x40_c00359{left:232.200000px;}
.x2e_c00359{left:234.000000px;}
.x13_c00359{left:236.550000px;}
.x5_c00359{left:240.450000px;}
.x95_c00359{left:241.500000px;}
.x61_c00359{left:242.700000px;}
.x8c_c00359{left:244.050000px;}
.x46_c00359{left:245.250000px;}
.x3d_c00359{left:247.350000px;}
.x5d_c00359{left:249.450000px;}
.x75_c00359{left:250.500000px;}
.x26_c00359{left:251.850000px;}
.x6a_c00359{left:253.200000px;}
.xd_c00359{left:254.850000px;}
.x2f_c00359{left:255.900000px;}
.x7a_c00359{left:256.950000px;}
.x6_c00359{left:258.450000px;}
.x1b_c00359{left:260.250000px;}
.x6c_c00359{left:262.050000px;}
.x33_c00359{left:264.450000px;}
.x47_c00359{left:266.100000px;}
.x72_c00359{left:267.300000px;}
.xe_c00359{left:269.250000px;}
.x45_c00359{left:271.800000px;}
.x97_c00359{left:273.750000px;}
.x27_c00359{left:275.250000px;}
.x9b_c00359{left:279.000000px;}
.x88_c00359{left:280.950000px;}
.x34_c00359{left:282.450000px;}
.x76_c00359{left:283.650000px;}
.x41_c00359{left:286.200000px;}
.x81_c00359{left:287.400000px;}
.x51_c00359{left:288.600000px;}
.x21_c00359{left:290.100000px;}
.x39_c00359{left:291.750000px;}
.x6d_c00359{left:293.250000px;}
.x57_c00359{left:294.750000px;}
.x14_c00359{left:299.250000px;}
.x67_c00359{left:300.600000px;}
.x52_c00359{left:303.000000px;}
.x7_c00359{left:304.200000px;}
.x3a_c00359{left:306.450000px;}
.x5a_c00359{left:308.100000px;}
.x1c_c00359{left:312.750000px;}
.x28_c00359{left:313.800000px;}
.x4c_c00359{left:315.150000px;}
.x15_c00359{left:318.300000px;}
.x68_c00359{left:320.700000px;}
.x42_c00359{left:322.200000px;}
.x6b_c00359{left:325.500000px;}
.xf_c00359{left:326.850000px;}
.x9a_c00359{left:328.200000px;}
.x89_c00359{left:330.300000px;}
.x53_c00359{left:332.100000px;}
.x35_c00359{left:333.900000px;}
.x8_c00359{left:336.300000px;}
.x7b_c00359{left:338.700000px;}
.x93_c00359{left:342.150000px;}
.x6e_c00359{left:343.350000px;}
.x10_c00359{left:345.150000px;}
.x58_c00359{left:348.450000px;}
.x7d_c00359{left:349.500000px;}
.x1d_c00359{left:351.300000px;}
.x62_c00359{left:353.550000px;}
.x5e_c00359{left:354.900000px;}
.x30_c00359{left:356.250000px;}
.x22_c00359{left:357.450000px;}
.x48_c00359{left:358.950000px;}
.x29_c00359{left:360.600000px;}
.x3b_c00359{left:363.000000px;}
.x16_c00359{left:365.400000px;}
.x7e_c00359{left:368.250000px;}
.x84_c00359{left:369.900000px;}
.x82_c00359{left:372.750000px;}
.x1e_c00359{left:375.000000px;}
.x63_c00359{left:376.950000px;}
.x73_c00359{left:381.450000px;}
.x8a_c00359{left:383.250000px;}
.x5b_c00359{left:387.300000px;}
.x77_c00359{left:388.800000px;}
.x85_c00359{left:391.200000px;}
.x92_c00359{left:392.700000px;}
.x49_c00359{left:393.900000px;}
.x43_c00359{left:397.350000px;}
.x23_c00359{left:400.650000px;}
.x2a_c00359{left:402.300000px;}
.x94_c00359{left:404.550000px;}
.x5f_c00359{left:406.350000px;}
.x31_c00359{left:407.400000px;}
.x4d_c00359{left:409.350000px;}
.x36_c00359{left:412.350000px;}
.x6f_c00359{left:413.550000px;}
.x17_c00359{left:415.800000px;}
.x2_c00359{left:419.400000px;}
.x74_c00359{left:421.050000px;}
.x2b_c00359{left:422.400000px;}
.x4e_c00359{left:426.600000px;}
.x9_c00359{left:428.400000px;}
.x78_c00359{left:429.900000px;}
.x5c_c00359{left:431.250000px;}
.x4a_c00359{left:433.200000px;}
.x37_c00359{left:434.250000px;}
.x18_c00359{left:436.350000px;}
.x64_c00359{left:438.000000px;}
.xa_c00359{left:439.500000px;}
.x83_c00359{left:440.850000px;}
.x4b_c00359{left:441.900000px;}
.x8d_c00359{left:442.950000px;}
.x98_c00359{left:444.600000px;}
.x54_c00359{left:447.000000px;}
.x90_c00359{left:450.450000px;}
.x3c_c00359{left:451.500000px;}
.x11_c00359{left:454.650000px;}
.x70_c00359{left:456.000000px;}
.x4f_c00359{left:459.300000px;}
.x24_c00359{left:460.800000px;}
.x1f_c00359{left:462.900000px;}
.x99_c00359{left:464.400000px;}
.x2c_c00359{left:465.900000px;}
.x44_c00359{left:469.950000px;}
.x3e_c00359{left:472.350000px;}
.x32_c00359{left:473.550000px;}
.x19_c00359{left:475.950000px;}
.x79_c00359{left:477.750000px;}
.x8e_c00359{left:478.950000px;}
.x25_c00359{left:480.900000px;}
.x38_c00359{left:482.850000px;}
.x2d_c00359{left:484.950000px;}
.x55_c00359{left:487.350000px;}
.x96_c00359{left:488.400000px;}
.x65_c00359{left:489.900000px;}
.x86_c00359{left:491.400000px;}
.x3_c00359{left:493.200000px;}
.x91_c00359{left:498.300000px;}
.x71_c00359{left:505.650000px;}
.x119_c00359{left:529.500000px;}
.xae_c00359{left:530.700000px;}
.x10b_c00359{left:532.050000px;}
.xab_c00359{left:540.600000px;}
.xbb_c00359{left:543.000000px;}
.xc0_c00359{left:546.300000px;}
.xd7_c00359{left:548.250000px;}
.xa3_c00359{left:549.450000px;}
.x131_c00359{left:552.600000px;}
.xce_c00359{left:558.900000px;}
.xf5_c00359{left:564.600000px;}
.x10d_c00359{left:565.950000px;}
.x9c_c00359{left:568.500000px;}
.xd8_c00359{left:570.150000px;}
.x103_c00359{left:572.700000px;}
.xaf_c00359{left:574.950000px;}
.x10c_c00359{left:576.750000px;}
.xc1_c00359{left:579.000000px;}
.xa4_c00359{left:581.850000px;}
.xb5_c00359{left:585.150000px;}
.x11c_c00359{left:587.400000px;}
.x134_c00359{left:588.750000px;}
.xc8_c00359{left:589.950000px;}
.xbc_c00359{left:593.100000px;}
.xfe_c00359{left:594.150000px;}
.x122_c00359{left:595.650000px;}
.xec_c00359{left:596.850000px;}
.x117_c00359{left:597.900000px;}
.xe7_c00359{left:599.400000px;}
.x139_c00359{left:601.350000px;}
.xa5_c00359{left:602.400000px;}
.xe1_c00359{left:604.800000px;}
.x12d_c00359{left:609.000000px;}
.xac_c00359{left:610.200000px;}
.x109_c00359{left:611.250000px;}
.x9d_c00359{left:612.450000px;}
.xb6_c00359{left:613.950000px;}
.xd2_c00359{left:616.050000px;}
.x125_c00359{left:617.550000px;}
.x128_c00359{left:618.600000px;}
.xc2_c00359{left:620.100000px;}
.xf6_c00359{left:621.150000px;}
.x114_c00359{left:622.200000px;}
.x13f_c00359{left:623.700000px;}
.x12b_c00359{left:625.200000px;}
.x112_c00359{left:629.100000px;}
.xe2_c00359{left:632.550000px;}
.x104_c00359{left:634.650000px;}
.xd9_c00359{left:636.750000px;}
.xfb_c00359{left:638.700000px;}
.xa6_c00359{left:639.900000px;}
.xad_c00359{left:641.100000px;}
.xb0_c00359{left:643.050000px;}
.xdd_c00359{left:644.250000px;}
.xc3_c00359{left:645.300000px;}
.x10e_c00359{left:647.700000px;}
.xd3_c00359{left:649.500000px;}
.xcf_c00359{left:650.700000px;}
.xb7_c00359{left:652.050000px;}
.xe8_c00359{left:653.700000px;}
.x105_c00359{left:656.700000px;}
.x11d_c00359{left:658.500000px;}
.xc4_c00359{left:660.750000px;}
.xa7_c00359{left:662.550000px;}
.x10a_c00359{left:663.900000px;}
.x9e_c00359{left:665.700000px;}
.xd0_c00359{left:667.200000px;}
.xd4_c00359{left:668.250000px;}
.x118_c00359{left:669.600000px;}
.xde_c00359{left:672.000000px;}
.xda_c00359{left:673.050000px;}
.xfa_c00359{left:674.700000px;}
.xe9_c00359{left:677.100000px;}
.x11e_c00359{left:681.600000px;}
.xff_c00359{left:687.150000px;}
.xf1_c00359{left:688.650000px;}
.xc9_c00359{left:690.450000px;}
.xb1_c00359{left:691.950000px;}
.x140_c00359{left:693.150000px;}
.x135_c00359{left:695.400000px;}
.xed_c00359{left:696.600000px;}
.xca_c00359{left:700.200000px;}
.x106_c00359{left:702.000000px;}
.x132_c00359{left:705.150000px;}
.xd5_c00359{left:707.850000px;}
.x123_c00359{left:711.000000px;}
.xa8_c00359{left:712.650000px;}
.xf7_c00359{left:714.750000px;}
.x13b_c00359{left:716.700000px;}
.x9f_c00359{left:717.900000px;}
.x11f_c00359{left:719.100000px;}
.xc5_c00359{left:721.500000px;}
.xf2_c00359{left:723.150000px;}
.x129_c00359{left:724.200000px;}
.xdb_c00359{left:726.000000px;}
.xea_c00359{left:727.500000px;}
.xdf_c00359{left:729.300000px;}
.x120_c00359{left:731.700000px;}
.x13a_c00359{left:735.300000px;}
.xee_c00359{left:736.500000px;}
.x100_c00359{left:737.850000px;}
.x107_c00359{left:739.800000px;}
.xd6_c00359{left:742.350000px;}
.xb8_c00359{left:743.550000px;}
.xeb_c00359{left:747.600000px;}
.xf3_c00359{left:750.150000px;}
.x11a_c00359{left:751.800000px;}
.x13d_c00359{left:752.850000px;}
.xa9_c00359{left:754.350000px;}
.x108_c00359{left:755.700000px;}
.x10f_c00359{left:757.650000px;}
.xb2_c00359{left:762.150000px;}
.xdc_c00359{left:764.850000px;}
.x113_c00359{left:767.100000px;}
.xe0_c00359{left:769.650000px;}
.xe3_c00359{left:770.700000px;}
.xf8_c00359{left:772.950000px;}
.x141_c00359{left:774.000000px;}
.xbd_c00359{left:775.650000px;}
.x137_c00359{left:776.700000px;}
.x126_c00359{left:778.950000px;}
.x115_c00359{left:780.450000px;}
.xa0_c00359{left:782.400000px;}
.xb3_c00359{left:784.050000px;}
.x110_c00359{left:785.400000px;}
.xbe_c00359{left:786.450000px;}
.x138_c00359{left:787.500000px;}
.xfc_c00359{left:789.900000px;}
.xa1_c00359{left:792.450000px;}
.x101_c00359{left:794.700000px;}
.xcb_c00359{left:796.200000px;}
.xf4_c00359{left:798.000000px;}
.xb9_c00359{left:799.650000px;}
.xef_c00359{left:801.300000px;}
.x136_c00359{left:802.350000px;}
.xe4_c00359{left:803.850000px;}
.x13e_c00359{left:805.800000px;}
.x12c_c00359{left:808.050000px;}
.x12a_c00359{left:811.350000px;}
.x102_c00359{left:812.700000px;}
.xf0_c00359{left:815.700000px;}
.x127_c00359{left:817.650000px;}
.xc6_c00359{left:819.000000px;}
.x121_c00359{left:820.650000px;}
.xf9_c00359{left:823.650000px;}
.xcc_c00359{left:825.750000px;}
.xd1_c00359{left:826.950000px;}
.xba_c00359{left:828.150000px;}
.x11b_c00359{left:830.100000px;}
.xb4_c00359{left:831.150000px;}
.x12f_c00359{left:832.650000px;}
.xfd_c00359{left:835.650000px;}
.xe5_c00359{left:837.300000px;}
.xa2_c00359{left:838.950000px;}
.x116_c00359{left:840.900000px;}
.x133_c00359{left:844.050000px;}
.xaa_c00359{left:845.100000px;}
.x124_c00359{left:846.450000px;}
.xbf_c00359{left:847.650000px;}
.xc7_c00359{left:853.500000px;}
.xcd_c00359{left:854.850000px;}
.x130_c00359{left:856.350000px;}
.x12e_c00359{left:857.400000px;}
.xe6_c00359{left:859.650000px;}
.x13c_c00359{left:863.550000px;}
.x111_c00359{left:864.900000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws0_c00359{word-spacing:-8.301605pt;}
.ws1_c00359{word-spacing:-7.948532pt;}
.ws5_c00359{word-spacing:0.000000pt;}
.ws2_c00359{word-spacing:26.031746pt;}
.ws4_c00359{word-spacing:39.259259pt;}
.ws3_c00359{word-spacing:45.079365pt;}
._0_c00359{width:49.523810pt;}
.fs5_c00359{font-size:21.333333pt;}
.fs1_c00359{font-size:26.666667pt;}
.fs6_c00359{font-size:37.333333pt;}
.fs9_c00359{font-size:42.666667pt;}
.fs8_c00359{font-size:48.000000pt;}
.fs2_c00359{font-size:53.333333pt;}
.fs3_c00359{font-size:58.666667pt;}
.fs4_c00359{font-size:64.000000pt;}
.fs7_c00359{font-size:69.333333pt;}
.fs0_c00359{font-size:74.666667pt;}
.y0_c00359{bottom:0.000000pt;}
.y37_c00359{bottom:177.866667pt;}
.y68_c00359{bottom:178.133333pt;}
.y67_c00359{bottom:193.866667pt;}
.y36_c00359{bottom:194.533333pt;}
.y66_c00359{bottom:209.600000pt;}
.y35_c00359{bottom:217.333333pt;}
.y65_c00359{bottom:225.600000pt;}
.y34_c00359{bottom:234.000000pt;}
.y64_c00359{bottom:241.333333pt;}
.y33_c00359{bottom:253.466667pt;}
.y63_c00359{bottom:257.333333pt;}
.y32_c00359{bottom:273.333333pt;}
.y31_c00359{bottom:289.066667pt;}
.y62_c00359{bottom:289.333333pt;}
.y30_c00359{bottom:305.066667pt;}
.y61_c00359{bottom:305.600000pt;}
.y2f_c00359{bottom:320.400000pt;}
.y60_c00359{bottom:321.600000pt;}
.y2e_c00359{bottom:336.666667pt;}
.y5f_c00359{bottom:337.600000pt;}
.y2d_c00359{bottom:352.666667pt;}
.y5e_c00359{bottom:353.600000pt;}
.y2c_c00359{bottom:365.333333pt;}
.y2b_c00359{bottom:368.266667pt;}
.y5d_c00359{bottom:369.333333pt;}
.y2a_c00359{bottom:381.066667pt;}
.y29_c00359{bottom:384.266667pt;}
.y5c_c00359{bottom:385.600000pt;}
.y28_c00359{bottom:400.000000pt;}
.y5b_c00359{bottom:401.333333pt;}
.y27_c00359{bottom:418.266667pt;}
.y5a_c00359{bottom:423.466667pt;}
.y26_c00359{bottom:431.333333pt;}
.y59_c00359{bottom:436.533333pt;}
.y25_c00359{bottom:449.600000pt;}
.y58_c00359{bottom:454.400000pt;}
.y24_c00359{bottom:465.600000pt;}
.y57_c00359{bottom:470.133333pt;}
.y23_c00359{bottom:481.600000pt;}
.y56_c00359{bottom:486.133333pt;}
.y22_c00359{bottom:501.466667pt;}
.y55_c00359{bottom:506.133333pt;}
.y21_c00359{bottom:517.200000pt;}
.y54_c00359{bottom:521.866667pt;}
.y20_c00359{bottom:533.466667pt;}
.y53_c00359{bottom:538.133333pt;}
.y1f_c00359{bottom:552.666667pt;}
.y52_c00359{bottom:553.866667pt;}
.y51_c00359{bottom:573.733333pt;}
.y1e_c00359{bottom:576.000000pt;}
.y50_c00359{bottom:589.466667pt;}
.y1d_c00359{bottom:591.733333pt;}
.y1c_c00359{bottom:608.000000pt;}
.y4f_c00359{bottom:613.466667pt;}
.y1b_c00359{bottom:624.000000pt;}
.y4e_c00359{bottom:629.466667pt;}
.y1a_c00359{bottom:640.000000pt;}
.y4d_c00359{bottom:649.600000pt;}
.y19_c00359{bottom:656.000000pt;}
.y4c_c00359{bottom:669.333333pt;}
.y18_c00359{bottom:671.733333pt;}
.y4b_c00359{bottom:685.066667pt;}
.y17_c00359{bottom:691.466667pt;}
.y4a_c00359{bottom:701.066667pt;}
.y16_c00359{bottom:711.466667pt;}
.y49_c00359{bottom:717.333333pt;}
.y15_c00359{bottom:727.200000pt;}
.y48_c00359{bottom:733.066667pt;}
.y14_c00359{bottom:742.933333pt;}
.y47_c00359{bottom:748.400000pt;}
.y13_c00359{bottom:758.666667pt;}
.y46_c00359{bottom:764.400000pt;}
.y12_c00359{bottom:774.666667pt;}
.y45_c00359{bottom:780.400000pt;}
.y11_c00359{bottom:790.400000pt;}
.y44_c00359{bottom:796.400000pt;}
.y10_c00359{bottom:801.866667pt;}
.yf_c00359{bottom:810.133333pt;}
.y43_c00359{bottom:812.400000pt;}
.ye_c00359{bottom:825.866667pt;}
.y42_c00359{bottom:828.400000pt;}
.yd_c00359{bottom:842.133333pt;}
.y41_c00359{bottom:844.133333pt;}
.yc_c00359{bottom:858.133333pt;}
.y40_c00359{bottom:862.133333pt;}
.yb_c00359{bottom:873.866667pt;}
.y3f_c00359{bottom:874.933333pt;}
.y3e_c00359{bottom:886.133333pt;}
.ya_c00359{bottom:889.600000pt;}
.y3d_c00359{bottom:903.600000pt;}
.y9_c00359{bottom:905.600000pt;}
.y3c_c00359{bottom:919.600000pt;}
.y8_c00359{bottom:921.600000pt;}
.y3b_c00359{bottom:935.600000pt;}
.y7_c00359{bottom:937.333333pt;}
.y3a_c00359{bottom:951.333333pt;}
.y6_c00359{bottom:954.533333pt;}
.y5_c00359{bottom:968.666667pt;}
.y39_c00359{bottom:970.933333pt;}
.y4_c00359{bottom:986.666667pt;}
.y38_c00359{bottom:986.933333pt;}
.y3_c00359{bottom:1002.933333pt;}
.y1_c00359{bottom:1026.933333pt;}
.y2_c00359{bottom:1059.200000pt;}
.h7_c00359{height:21.333333pt;}
.h3_c00359{height:26.666667pt;}
.h8_c00359{height:37.333333pt;}
.hb_c00359{height:42.666667pt;}
.ha_c00359{height:48.000000pt;}
.h4_c00359{height:53.333333pt;}
.h5_c00359{height:58.666667pt;}
.h6_c00359{height:64.000000pt;}
.h9_c00359{height:69.333333pt;}
.h2_c00359{height:74.666667pt;}
.h1_c00359{height:1134.000000pt;}
.h0_c00359{height:1134.079997pt;}
.w0_c00359{width:853.760009pt;}
.w1_c00359{width:854.000000pt;}
.x0_c00359{left:0.000000pt;}
.x87_c00359{left:152.666667pt;}
.x60_c00359{left:153.866667pt;}
.x1_c00359{left:154.933333pt;}
.x12_c00359{left:156.133333pt;}
.x8b_c00359{left:165.600000pt;}
.x1a_c00359{left:168.666667pt;}
.x4_c00359{left:169.866667pt;}
.xb_c00359{left:171.733333pt;}
.x7f_c00359{left:175.066667pt;}
.x50_c00359{left:181.333333pt;}
.x7c_c00359{left:185.866667pt;}
.xc_c00359{left:188.400000pt;}
.x3f_c00359{left:190.400000pt;}
.x66_c00359{left:192.266667pt;}
.x69_c00359{left:194.000000pt;}
.x80_c00359{left:194.933333pt;}
.x59_c00359{left:199.333333pt;}
.x56_c00359{left:201.866667pt;}
.x20_c00359{left:203.200000pt;}
.x8f_c00359{left:204.933333pt;}
.x40_c00359{left:206.400000pt;}
.x2e_c00359{left:208.000000pt;}
.x13_c00359{left:210.266667pt;}
.x5_c00359{left:213.733333pt;}
.x95_c00359{left:214.666667pt;}
.x61_c00359{left:215.733333pt;}
.x8c_c00359{left:216.933333pt;}
.x46_c00359{left:218.000000pt;}
.x3d_c00359{left:219.866667pt;}
.x5d_c00359{left:221.733333pt;}
.x75_c00359{left:222.666667pt;}
.x26_c00359{left:223.866667pt;}
.x6a_c00359{left:225.066667pt;}
.xd_c00359{left:226.533333pt;}
.x2f_c00359{left:227.466667pt;}
.x7a_c00359{left:228.400000pt;}
.x6_c00359{left:229.733333pt;}
.x1b_c00359{left:231.333333pt;}
.x6c_c00359{left:232.933333pt;}
.x33_c00359{left:235.066667pt;}
.x47_c00359{left:236.533333pt;}
.x72_c00359{left:237.600000pt;}
.xe_c00359{left:239.333333pt;}
.x45_c00359{left:241.600000pt;}
.x97_c00359{left:243.333333pt;}
.x27_c00359{left:244.666667pt;}
.x9b_c00359{left:248.000000pt;}
.x88_c00359{left:249.733333pt;}
.x34_c00359{left:251.066667pt;}
.x76_c00359{left:252.133333pt;}
.x41_c00359{left:254.400000pt;}
.x81_c00359{left:255.466667pt;}
.x51_c00359{left:256.533333pt;}
.x21_c00359{left:257.866667pt;}
.x39_c00359{left:259.333333pt;}
.x6d_c00359{left:260.666667pt;}
.x57_c00359{left:262.000000pt;}
.x14_c00359{left:266.000000pt;}
.x67_c00359{left:267.200000pt;}
.x52_c00359{left:269.333333pt;}
.x7_c00359{left:270.400000pt;}
.x3a_c00359{left:272.400000pt;}
.x5a_c00359{left:273.866667pt;}
.x1c_c00359{left:278.000000pt;}
.x28_c00359{left:278.933333pt;}
.x4c_c00359{left:280.133333pt;}
.x15_c00359{left:282.933333pt;}
.x68_c00359{left:285.066667pt;}
.x42_c00359{left:286.400000pt;}
.x6b_c00359{left:289.333333pt;}
.xf_c00359{left:290.533333pt;}
.x9a_c00359{left:291.733333pt;}
.x89_c00359{left:293.600000pt;}
.x53_c00359{left:295.200000pt;}
.x35_c00359{left:296.800000pt;}
.x8_c00359{left:298.933333pt;}
.x7b_c00359{left:301.066667pt;}
.x93_c00359{left:304.133333pt;}
.x6e_c00359{left:305.200000pt;}
.x10_c00359{left:306.800000pt;}
.x58_c00359{left:309.733333pt;}
.x7d_c00359{left:310.666667pt;}
.x1d_c00359{left:312.266667pt;}
.x62_c00359{left:314.266667pt;}
.x5e_c00359{left:315.466667pt;}
.x30_c00359{left:316.666667pt;}
.x22_c00359{left:317.733333pt;}
.x48_c00359{left:319.066667pt;}
.x29_c00359{left:320.533333pt;}
.x3b_c00359{left:322.666667pt;}
.x16_c00359{left:324.800000pt;}
.x7e_c00359{left:327.333333pt;}
.x84_c00359{left:328.800000pt;}
.x82_c00359{left:331.333333pt;}
.x1e_c00359{left:333.333333pt;}
.x63_c00359{left:335.066667pt;}
.x73_c00359{left:339.066667pt;}
.x8a_c00359{left:340.666667pt;}
.x5b_c00359{left:344.266667pt;}
.x77_c00359{left:345.600000pt;}
.x85_c00359{left:347.733333pt;}
.x92_c00359{left:349.066667pt;}
.x49_c00359{left:350.133333pt;}
.x43_c00359{left:353.200000pt;}
.x23_c00359{left:356.133333pt;}
.x2a_c00359{left:357.600000pt;}
.x94_c00359{left:359.600000pt;}
.x5f_c00359{left:361.200000pt;}
.x31_c00359{left:362.133333pt;}
.x4d_c00359{left:363.866667pt;}
.x36_c00359{left:366.533333pt;}
.x6f_c00359{left:367.600000pt;}
.x17_c00359{left:369.600000pt;}
.x2_c00359{left:372.800000pt;}
.x74_c00359{left:374.266667pt;}
.x2b_c00359{left:375.466667pt;}
.x4e_c00359{left:379.200000pt;}
.x9_c00359{left:380.800000pt;}
.x78_c00359{left:382.133333pt;}
.x5c_c00359{left:383.333333pt;}
.x4a_c00359{left:385.066667pt;}
.x37_c00359{left:386.000000pt;}
.x18_c00359{left:387.866667pt;}
.x64_c00359{left:389.333333pt;}
.xa_c00359{left:390.666667pt;}
.x83_c00359{left:391.866667pt;}
.x4b_c00359{left:392.800000pt;}
.x8d_c00359{left:393.733333pt;}
.x98_c00359{left:395.200000pt;}
.x54_c00359{left:397.333333pt;}
.x90_c00359{left:400.400000pt;}
.x3c_c00359{left:401.333333pt;}
.x11_c00359{left:404.133333pt;}
.x70_c00359{left:405.333333pt;}
.x4f_c00359{left:408.266667pt;}
.x24_c00359{left:409.600000pt;}
.x1f_c00359{left:411.466667pt;}
.x99_c00359{left:412.800000pt;}
.x2c_c00359{left:414.133333pt;}
.x44_c00359{left:417.733333pt;}
.x3e_c00359{left:419.866667pt;}
.x32_c00359{left:420.933333pt;}
.x19_c00359{left:423.066667pt;}
.x79_c00359{left:424.666667pt;}
.x8e_c00359{left:425.733333pt;}
.x25_c00359{left:427.466667pt;}
.x38_c00359{left:429.200000pt;}
.x2d_c00359{left:431.066667pt;}
.x55_c00359{left:433.200000pt;}
.x96_c00359{left:434.133333pt;}
.x65_c00359{left:435.466667pt;}
.x86_c00359{left:436.800000pt;}
.x3_c00359{left:438.400000pt;}
.x91_c00359{left:442.933333pt;}
.x71_c00359{left:449.466667pt;}
.x119_c00359{left:470.666667pt;}
.xae_c00359{left:471.733333pt;}
.x10b_c00359{left:472.933333pt;}
.xab_c00359{left:480.533333pt;}
.xbb_c00359{left:482.666667pt;}
.xc0_c00359{left:485.600000pt;}
.xd7_c00359{left:487.333333pt;}
.xa3_c00359{left:488.400000pt;}
.x131_c00359{left:491.200000pt;}
.xce_c00359{left:496.800000pt;}
.xf5_c00359{left:501.866667pt;}
.x10d_c00359{left:503.066667pt;}
.x9c_c00359{left:505.333333pt;}
.xd8_c00359{left:506.800000pt;}
.x103_c00359{left:509.066667pt;}
.xaf_c00359{left:511.066667pt;}
.x10c_c00359{left:512.666667pt;}
.xc1_c00359{left:514.666667pt;}
.xa4_c00359{left:517.200000pt;}
.xb5_c00359{left:520.133333pt;}
.x11c_c00359{left:522.133333pt;}
.x134_c00359{left:523.333333pt;}
.xc8_c00359{left:524.400000pt;}
.xbc_c00359{left:527.200000pt;}
.xfe_c00359{left:528.133333pt;}
.x122_c00359{left:529.466667pt;}
.xec_c00359{left:530.533333pt;}
.x117_c00359{left:531.466667pt;}
.xe7_c00359{left:532.800000pt;}
.x139_c00359{left:534.533333pt;}
.xa5_c00359{left:535.466667pt;}
.xe1_c00359{left:537.600000pt;}
.x12d_c00359{left:541.333333pt;}
.xac_c00359{left:542.400000pt;}
.x109_c00359{left:543.333333pt;}
.x9d_c00359{left:544.400000pt;}
.xb6_c00359{left:545.733333pt;}
.xd2_c00359{left:547.600000pt;}
.x125_c00359{left:548.933333pt;}
.x128_c00359{left:549.866667pt;}
.xc2_c00359{left:551.200000pt;}
.xf6_c00359{left:552.133333pt;}
.x114_c00359{left:553.066667pt;}
.x13f_c00359{left:554.400000pt;}
.x12b_c00359{left:555.733333pt;}
.x112_c00359{left:559.200000pt;}
.xe2_c00359{left:562.266667pt;}
.x104_c00359{left:564.133333pt;}
.xd9_c00359{left:566.000000pt;}
.xfb_c00359{left:567.733333pt;}
.xa6_c00359{left:568.800000pt;}
.xad_c00359{left:569.866667pt;}
.xb0_c00359{left:571.600000pt;}
.xdd_c00359{left:572.666667pt;}
.xc3_c00359{left:573.600000pt;}
.x10e_c00359{left:575.733333pt;}
.xd3_c00359{left:577.333333pt;}
.xcf_c00359{left:578.400000pt;}
.xb7_c00359{left:579.600000pt;}
.xe8_c00359{left:581.066667pt;}
.x105_c00359{left:583.733333pt;}
.x11d_c00359{left:585.333333pt;}
.xc4_c00359{left:587.333333pt;}
.xa7_c00359{left:588.933333pt;}
.x10a_c00359{left:590.133333pt;}
.x9e_c00359{left:591.733333pt;}
.xd0_c00359{left:593.066667pt;}
.xd4_c00359{left:594.000000pt;}
.x118_c00359{left:595.200000pt;}
.xde_c00359{left:597.333333pt;}
.xda_c00359{left:598.266667pt;}
.xfa_c00359{left:599.733333pt;}
.xe9_c00359{left:601.866667pt;}
.x11e_c00359{left:605.866667pt;}
.xff_c00359{left:610.800000pt;}
.xf1_c00359{left:612.133333pt;}
.xc9_c00359{left:613.733333pt;}
.xb1_c00359{left:615.066667pt;}
.x140_c00359{left:616.133333pt;}
.x135_c00359{left:618.133333pt;}
.xed_c00359{left:619.200000pt;}
.xca_c00359{left:622.400000pt;}
.x106_c00359{left:624.000000pt;}
.x132_c00359{left:626.800000pt;}
.xd5_c00359{left:629.200000pt;}
.x123_c00359{left:632.000000pt;}
.xa8_c00359{left:633.466667pt;}
.xf7_c00359{left:635.333333pt;}
.x13b_c00359{left:637.066667pt;}
.x9f_c00359{left:638.133333pt;}
.x11f_c00359{left:639.200000pt;}
.xc5_c00359{left:641.333333pt;}
.xf2_c00359{left:642.800000pt;}
.x129_c00359{left:643.733333pt;}
.xdb_c00359{left:645.333333pt;}
.xea_c00359{left:646.666667pt;}
.xdf_c00359{left:648.266667pt;}
.x120_c00359{left:650.400000pt;}
.x13a_c00359{left:653.600000pt;}
.xee_c00359{left:654.666667pt;}
.x100_c00359{left:655.866667pt;}
.x107_c00359{left:657.600000pt;}
.xd6_c00359{left:659.866667pt;}
.xb8_c00359{left:660.933333pt;}
.xeb_c00359{left:664.533333pt;}
.xf3_c00359{left:666.800000pt;}
.x11a_c00359{left:668.266667pt;}
.x13d_c00359{left:669.200000pt;}
.xa9_c00359{left:670.533333pt;}
.x108_c00359{left:671.733333pt;}
.x10f_c00359{left:673.466667pt;}
.xb2_c00359{left:677.466667pt;}
.xdc_c00359{left:679.866667pt;}
.x113_c00359{left:681.866667pt;}
.xe0_c00359{left:684.133333pt;}
.xe3_c00359{left:685.066667pt;}
.xf8_c00359{left:687.066667pt;}
.x141_c00359{left:688.000000pt;}
.xbd_c00359{left:689.466667pt;}
.x137_c00359{left:690.400000pt;}
.x126_c00359{left:692.400000pt;}
.x115_c00359{left:693.733333pt;}
.xa0_c00359{left:695.466667pt;}
.xb3_c00359{left:696.933333pt;}
.x110_c00359{left:698.133333pt;}
.xbe_c00359{left:699.066667pt;}
.x138_c00359{left:700.000000pt;}
.xfc_c00359{left:702.133333pt;}
.xa1_c00359{left:704.400000pt;}
.x101_c00359{left:706.400000pt;}
.xcb_c00359{left:707.733333pt;}
.xf4_c00359{left:709.333333pt;}
.xb9_c00359{left:710.800000pt;}
.xef_c00359{left:712.266667pt;}
.x136_c00359{left:713.200000pt;}
.xe4_c00359{left:714.533333pt;}
.x13e_c00359{left:716.266667pt;}
.x12c_c00359{left:718.266667pt;}
.x12a_c00359{left:721.200000pt;}
.x102_c00359{left:722.400000pt;}
.xf0_c00359{left:725.066667pt;}
.x127_c00359{left:726.800000pt;}
.xc6_c00359{left:728.000000pt;}
.x121_c00359{left:729.466667pt;}
.xf9_c00359{left:732.133333pt;}
.xcc_c00359{left:734.000000pt;}
.xd1_c00359{left:735.066667pt;}
.xba_c00359{left:736.133333pt;}
.x11b_c00359{left:737.866667pt;}
.xb4_c00359{left:738.800000pt;}
.x12f_c00359{left:740.133333pt;}
.xfd_c00359{left:742.800000pt;}
.xe5_c00359{left:744.266667pt;}
.xa2_c00359{left:745.733333pt;}
.x116_c00359{left:747.466667pt;}
.x133_c00359{left:750.266667pt;}
.xaa_c00359{left:751.200000pt;}
.x124_c00359{left:752.400000pt;}
.xbf_c00359{left:753.466667pt;}
.xc7_c00359{left:758.666667pt;}
.xcd_c00359{left:759.866667pt;}
.x130_c00359{left:761.200000pt;}
.x12e_c00359{left:762.133333pt;}
.xe6_c00359{left:764.133333pt;}
.x13c_c00359{left:767.600000pt;}
.x111_c00359{left:768.800000pt;}
}





/* 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_c00360 {
    display:none;
  }
  .loading-indicator_c00360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00360 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_c00360 { 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_c00360" -> "#page-container .classname_c00360")
 */
.pf_c00360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00360 { /* 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_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00360 { /* 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_c00360 { /* 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_c00360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00360 {overflow:visible;}
  }
}
.c_c00360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00360 { /* 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_c00360:after { /* webkit #35443 */
  content: '';
}
.t_c00360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00360 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 */
}
.__c00360 { /* 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_c00360 { /* info for Javascript */
  display:none;
}
.l_c00360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00360: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_c00360 {
    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_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00360.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_c00360 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00360;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.000000;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;}
.m11c_c00360{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mab_c00360{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.me5_c00360{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.maf_c00360{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.m115_c00360{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.063500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063500,0.000000,0.000000,0.250000,0,0);}
.m108_c00360{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m82_c00360{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mec_c00360{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m77_c00360{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00360{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00360{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5_c00360{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me0_c00360{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00360{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m78_c00360{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m48_c00360{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00360{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00360{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m111_c00360{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00360{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m100_c00360{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m71_c00360{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m47_c00360{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.meb_c00360{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m25_c00360{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00360{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00360{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m22_c00360{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m53_c00360{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00360{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.mca_c00360{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00360{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mff_c00360{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m23_c00360{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00360{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00360{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00360{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m52_c00360{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00360{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.me9_c00360{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00360{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma_c00360{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00360{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m96_c00360{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m86_c00360{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mef_c00360{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00360{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m66_c00360{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00360{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m37_c00360{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m24_c00360{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00360{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m38_c00360{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m80_c00360{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00360{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me8_c00360{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m40_c00360{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00360{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m11_c00360{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m36_c00360{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m109_c00360{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m88_c00360{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m99_c00360{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m18_c00360{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m89_c00360{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m43_c00360{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m94_c00360{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m102_c00360{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb_c00360{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00360{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m20_c00360{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00360{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m98_c00360{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m33_c00360{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m26_c00360{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m70_c00360{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m30_c00360{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00360{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00360{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m76_c00360{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.md0_c00360{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00360{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.mc_c00360{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00360{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m2_c00360{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mae_c00360{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00360{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m83_c00360{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00360{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m41_c00360{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00360{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00360{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m29_c00360{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00360{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6_c00360{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00360{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00360{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00360{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00360{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00360{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.md9_c00360{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m49_c00360{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00360{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m107_c00360{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m51_c00360{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00360{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00360{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m12_c00360{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m81_c00360{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m64_c00360{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00360{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m60_c00360{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00360{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00360{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00360{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00360{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00360{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00360{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m68_c00360{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8_c00360{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.med_c00360{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00360{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00360{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m59_c00360{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00360{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mba_c00360{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00360{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mf_c00360{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00360{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m93_c00360{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.me7_c00360{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m13_c00360{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m97_c00360{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.md7_c00360{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m84_c00360{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.me1_c00360{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9_c00360{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00360{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mea_c00360{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m14_c00360{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m61_c00360{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00360{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m28_c00360{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00360{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00360{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00360{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00360{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00360{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m72_c00360{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m34_c00360{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00360{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m73_c00360{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mad_c00360{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00360{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10_c00360{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00360{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m19_c00360{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m17_c00360{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.md8_c00360{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m90_c00360{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00360{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m15_c00360{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m85_c00360{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00360{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00360{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00360{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00360{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00360{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00360{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00360{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mee_c00360{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m118_c00360{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00360{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00360{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m95_c00360{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m87_c00360{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4_c00360{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00360{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m46_c00360{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00360{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00360{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m92_c00360{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m65_c00360{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00360{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m117_c00360{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00360{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.maa_c00360{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m42_c00360{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m67_c00360{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md3_c00360{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00360{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md4_c00360{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00360{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md5_c00360{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.me4_c00360{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00360{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m45_c00360{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00360{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00360{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m79_c00360{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m39_c00360{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m7_c00360{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m105_c00360{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m74_c00360{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00360{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m106_c00360{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m50_c00360{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m31_c00360{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00360{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00360{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00360{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m27_c00360{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.md_c00360{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m104_c00360{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00360{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md2_c00360{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m21_c00360{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m16_c00360{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md6_c00360{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md1_c00360{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00360{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mce_c00360{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m32_c00360{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m62_c00360{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m44_c00360{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00360{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00360{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00360{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00360{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m119_c00360{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m91_c00360{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00360{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me2_c00360{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00360{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00360{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00360{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00360{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m55_c00360{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m75_c00360{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);}
.m110_c00360{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m58_c00360{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00360{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00360{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.me6_c00360{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m56_c00360{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00360{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00360{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m103_c00360{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m69_c00360{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mda_c00360{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me3_c00360{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m101_c00360{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00360{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m112_c00360{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m116_c00360{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mde_c00360{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00360{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00360{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00360{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00360{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m63_c00360{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mac_c00360{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00360{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m57_c00360{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m113_c00360{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00360{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00360{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00360{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00360{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00360{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00360{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00360{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00360{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00360{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m35_c00360{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00360{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00360{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00360{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.m114_c00360{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m0_c00360{transform:matrix(0.470750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00360{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m54_c00360{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m3_c00360{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00360{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls0_c00360{letter-spacing:0.000000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{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__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00360{word-spacing:-5.405405px;}
.wsb_c00360{word-spacing:0.000000px;}
.ws1_c00360{word-spacing:4.946924px;}
.ws0_c00360{word-spacing:5.084439px;}
.ws7_c00360{word-spacing:15.000000px;}
.ws2_c00360{word-spacing:22.142857px;}
.ws3_c00360{word-spacing:25.714286px;}
.ws8_c00360{word-spacing:29.285714px;}
.ws9_c00360{word-spacing:61.250000px;}
.ws5_c00360{word-spacing:65.000000px;}
.ws6_c00360{word-spacing:73.333333px;}
.wsa_c00360{word-spacing:286.428571px;}
._0_c00360{width:55.714286px;}
._1_c00360{width:59.285714px;}
._2_c00360{width:96.315789px;}
.fc0_c00360{color:transparent;}
.fs2_c00360{font-size:24.000000px;}
.fs6_c00360{font-size:42.000000px;}
.fs8_c00360{font-size:48.000000px;}
.fs9_c00360{font-size:54.000000px;}
.fs7_c00360{font-size:60.000000px;}
.fs3_c00360{font-size:66.000000px;}
.fs4_c00360{font-size:72.000000px;}
.fs0_c00360{font-size:78.000000px;}
.fs5_c00360{font-size:84.000000px;}
.fs1_c00360{font-size:102.000000px;}
.y0_c00360{bottom:0.000000px;}
.y3_c00360{bottom:168.150000px;}
.y34_c00360{bottom:200.850000px;}
.y63_c00360{bottom:203.700000px;}
.y62_c00360{bottom:219.600000px;}
.y33_c00360{bottom:228.300000px;}
.y61_c00360{bottom:237.600000px;}
.y32_c00360{bottom:254.550000px;}
.y60_c00360{bottom:255.600000px;}
.y31_c00360{bottom:273.000000px;}
.y5f_c00360{bottom:273.600000px;}
.y30_c00360{bottom:291.300000px;}
.y5e_c00360{bottom:294.900000px;}
.y5d_c00360{bottom:309.000000px;}
.y2f_c00360{bottom:317.100000px;}
.y5c_c00360{bottom:323.700000px;}
.y2e_c00360{bottom:335.400000px;}
.y5b_c00360{bottom:338.100000px;}
.y5a_c00360{bottom:353.550000px;}
.y2d_c00360{bottom:353.700000px;}
.y2c_c00360{bottom:371.400000px;}
.y59_c00360{bottom:372.000000px;}
.y2b_c00360{bottom:389.400000px;}
.y58_c00360{bottom:390.000000px;}
.y2a_c00360{bottom:407.400000px;}
.y57_c00360{bottom:407.700000px;}
.y29_c00360{bottom:425.100000px;}
.y56_c00360{bottom:425.400000px;}
.y28_c00360{bottom:443.100000px;}
.y27_c00360{bottom:461.100000px;}
.y55_c00360{bottom:465.450000px;}
.y26_c00360{bottom:478.800000px;}
.y54_c00360{bottom:483.450000px;}
.y25_c00360{bottom:496.800000px;}
.y53_c00360{bottom:501.450000px;}
.y24_c00360{bottom:514.800000px;}
.y52_c00360{bottom:523.800000px;}
.y23_c00360{bottom:532.800000px;}
.y22_c00360{bottom:550.800000px;}
.y51_c00360{bottom:555.150000px;}
.y21_c00360{bottom:568.800000px;}
.y50_c00360{bottom:577.800000px;}
.y20_c00360{bottom:586.800000px;}
.y4f_c00360{bottom:595.800000px;}
.y1f_c00360{bottom:604.800000px;}
.y4e_c00360{bottom:613.800000px;}
.y1e_c00360{bottom:622.800000px;}
.y4d_c00360{bottom:631.800000px;}
.y1d_c00360{bottom:649.350000px;}
.y4c_c00360{bottom:654.000000px;}
.y1c_c00360{bottom:663.750000px;}
.y4b_c00360{bottom:671.700000px;}
.y1b_c00360{bottom:677.850000px;}
.y4a_c00360{bottom:689.700000px;}
.y1a_c00360{bottom:691.200000px;}
.y19_c00360{bottom:707.700000px;}
.y49_c00360{bottom:725.400000px;}
.y18_c00360{bottom:729.750000px;}
.y48_c00360{bottom:743.400000px;}
.y17_c00360{bottom:748.050000px;}
.y47_c00360{bottom:761.400000px;}
.y16_c00360{bottom:765.750000px;}
.y46_c00360{bottom:779.400000px;}
.y15_c00360{bottom:783.750000px;}
.y45_c00360{bottom:797.400000px;}
.y14_c00360{bottom:802.050000px;}
.y44_c00360{bottom:815.100000px;}
.y13_c00360{bottom:827.550000px;}
.y43_c00360{bottom:839.100000px;}
.y12_c00360{bottom:845.550000px;}
.y42_c00360{bottom:853.500000px;}
.y11_c00360{bottom:863.550000px;}
.y41_c00360{bottom:867.900000px;}
.y40_c00360{bottom:880.650000px;}
.y10_c00360{bottom:881.250000px;}
.y3f_c00360{bottom:900.750000px;}
.yf_c00360{bottom:903.000000px;}
.y3e_c00360{bottom:918.300000px;}
.ye_c00360{bottom:921.300000px;}
.y3d_c00360{bottom:936.000000px;}
.yd_c00360{bottom:951.450000px;}
.y3c_c00360{bottom:954.000000px;}
.yc_c00360{bottom:970.200000px;}
.y3b_c00360{bottom:980.250000px;}
.yb_c00360{bottom:988.200000px;}
.y3a_c00360{bottom:998.250000px;}
.ya_c00360{bottom:1006.200000px;}
.y39_c00360{bottom:1015.950000px;}
.y9_c00360{bottom:1032.450000px;}
.y38_c00360{bottom:1033.500000px;}
.y8_c00360{bottom:1054.050000px;}
.y37_c00360{bottom:1055.850000px;}
.y7_c00360{bottom:1072.800000px;}
.y36_c00360{bottom:1073.550000px;}
.y6_c00360{bottom:1091.100000px;}
.y35_c00360{bottom:1108.500000px;}
.y5_c00360{bottom:1108.800000px;}
.y4_c00360{bottom:1126.500000px;}
.y2_c00360{bottom:1151.700000px;}
.y1_c00360{bottom:1153.800000px;}
.h4_c00360{height:24.000000px;}
.h8_c00360{height:42.000000px;}
.ha_c00360{height:48.000000px;}
.hb_c00360{height:54.000000px;}
.h9_c00360{height:60.000000px;}
.h5_c00360{height:66.000000px;}
.h6_c00360{height:72.000000px;}
.h2_c00360{height:78.000000px;}
.h7_c00360{height:84.000000px;}
.h3_c00360{height:102.000000px;}
.h1_c00360{height:1273.500000px;}
.h0_c00360{height:1273.679993px;}
.w0_c00360{width:960.480010px;}
.w1_c00360{width:960.750000px;}
.x0_c00360{left:0.000000px;}
.x4_c00360{left:36.750000px;}
.x21_c00360{left:70.500000px;}
.x25_c00360{left:77.400000px;}
.x3a_c00360{left:78.900000px;}
.x97_c00360{left:79.950000px;}
.x60_c00360{left:91.500000px;}
.x16_c00360{left:93.600000px;}
.x5_c00360{left:94.650000px;}
.x39_c00360{left:95.850000px;}
.x65_c00360{left:106.500000px;}
.x7b_c00360{left:111.900000px;}
.xe_c00360{left:113.550000px;}
.x5a_c00360{left:117.150000px;}
.x71_c00360{left:119.400000px;}
.x61_c00360{left:121.050000px;}
.x7d_c00360{left:122.550000px;}
.x3b_c00360{left:123.900000px;}
.x32_c00360{left:127.200000px;}
.x45_c00360{left:128.550000px;}
.x5b_c00360{left:129.750000px;}
.x4a_c00360{left:133.500000px;}
.x53_c00360{left:135.750000px;}
.x8d_c00360{left:136.950000px;}
.xf_c00360{left:138.000000px;}
.x1d_c00360{left:140.700000px;}
.x17_c00360{left:144.300000px;}
.x26_c00360{left:145.500000px;}
.x66_c00360{left:147.450000px;}
.x6_c00360{left:149.400000px;}
.x83_c00360{left:151.800000px;}
.x22_c00360{left:153.300000px;}
.x93_c00360{left:155.700000px;}
.x33_c00360{left:158.100000px;}
.x54_c00360{left:159.450000px;}
.x7_c00360{left:160.500000px;}
.x1e_c00360{left:161.550000px;}
.x3c_c00360{left:162.750000px;}
.x62_c00360{left:165.000000px;}
.x2a_c00360{left:167.100000px;}
.x51_c00360{left:169.650000px;}
.x57_c00360{left:171.600000px;}
.x89_c00360{left:172.800000px;}
.x70_c00360{left:174.450000px;}
.x10_c00360{left:176.100000px;}
.x94_c00360{left:178.350000px;}
.x46_c00360{left:180.750000px;}
.x63_c00360{left:182.250000px;}
.x85_c00360{left:184.350000px;}
.x92_c00360{left:185.850000px;}
.x78_c00360{left:188.550000px;}
.x2b_c00360{left:191.550000px;}
.x4f_c00360{left:193.200000px;}
.x74_c00360{left:194.250000px;}
.x18_c00360{left:196.500000px;}
.x55_c00360{left:197.550000px;}
.x5c_c00360{left:199.500000px;}
.x23_c00360{left:201.900000px;}
.x8b_c00360{left:202.950000px;}
.x8_c00360{left:204.000000px;}
.x3f_c00360{left:205.650000px;}
.x75_c00360{left:210.450000px;}
.x58_c00360{left:211.500000px;}
.x2c_c00360{left:213.900000px;}
.x42_c00360{left:216.150000px;}
.x19_c00360{left:218.100000px;}
.x34_c00360{left:220.050000px;}
.x27_c00360{left:221.850000px;}
.x24_c00360{left:223.500000px;}
.x9_c00360{left:224.550000px;}
.x73_c00360{left:226.650000px;}
.x4b_c00360{left:227.850000px;}
.x8e_c00360{left:232.350000px;}
.x40_c00360{left:234.150000px;}
.x76_c00360{left:235.650000px;}
.x95_c00360{left:237.450000px;}
.x6b_c00360{left:238.650000px;}
.x67_c00360{left:241.350000px;}
.x11_c00360{left:243.750000px;}
.x35_c00360{left:244.950000px;}
.x50_c00360{left:247.500000px;}
.x47_c00360{left:248.550000px;}
.x3d_c00360{left:250.200000px;}
.x79_c00360{left:251.250000px;}
.x2d_c00360{left:252.450000px;}
.x7e_c00360{left:254.250000px;}
.x86_c00360{left:256.350000px;}
.x96_c00360{left:257.550000px;}
.x56_c00360{left:259.050000px;}
.x68_c00360{left:261.900000px;}
.x41_c00360{left:263.250000px;}
.x1a_c00360{left:270.600000px;}
.x77_c00360{left:274.950000px;}
.x87_c00360{left:276.900000px;}
.x4c_c00360{left:279.000000px;}
.x36_c00360{left:281.250000px;}
.x72_c00360{left:284.250000px;}
.x28_c00360{left:285.900000px;}
.x6c_c00360{left:286.950000px;}
.x12_c00360{left:292.650000px;}
.xa_c00360{left:297.600000px;}
.x8a_c00360{left:300.150000px;}
.x37_c00360{left:302.100000px;}
.x69_c00360{left:303.300000px;}
.x7c_c00360{left:304.800000px;}
.x2e_c00360{left:306.150000px;}
.x6a_c00360{left:310.200000px;}
.x13_c00360{left:312.150000px;}
.x48_c00360{left:315.450000px;}
.x7f_c00360{left:316.950000px;}
.x8f_c00360{left:319.500000px;}
.x1_c00360{left:321.900000px;}
.x2f_c00360{left:326.250000px;}
.x8c_c00360{left:328.500000px;}
.x43_c00360{left:329.850000px;}
.x6d_c00360{left:333.000000px;}
.x5d_c00360{left:334.800000px;}
.x3e_c00360{left:337.350000px;}
.x84_c00360{left:338.550000px;}
.x80_c00360{left:341.100000px;}
.x14_c00360{left:343.050000px;}
.x64_c00360{left:344.400000px;}
.x88_c00360{left:345.900000px;}
.x4d_c00360{left:348.150000px;}
.xb_c00360{left:351.300000px;}
.x49_c00360{left:352.500000px;}
.x1b_c00360{left:355.500000px;}
.x81_c00360{left:357.000000px;}
.x4e_c00360{left:360.750000px;}
.x1f_c00360{left:362.850000px;}
.x91_c00360{left:364.200000px;}
.x5e_c00360{left:365.400000px;}
.x30_c00360{left:366.600000px;}
.x90_c00360{left:371.700000px;}
.xc_c00360{left:373.950000px;}
.x38_c00360{left:375.150000px;}
.x44_c00360{left:377.400000px;}
.x52_c00360{left:382.050000px;}
.x6f_c00360{left:383.550000px;}
.x20_c00360{left:386.550000px;}
.x59_c00360{left:388.950000px;}
.xd_c00360{left:391.200000px;}
.x1c_c00360{left:392.250000px;}
.x15_c00360{left:394.950000px;}
.x7a_c00360{left:396.300000px;}
.x82_c00360{left:397.950000px;}
.x5f_c00360{left:399.600000px;}
.x6e_c00360{left:400.650000px;}
.x29_c00360{left:402.900000px;}
.x31_c00360{left:409.500000px;}
.x98_c00360{left:435.600000px;}
.x104_c00360{left:436.650000px;}
.x129_c00360{left:447.150000px;}
.x122_c00360{left:449.400000px;}
.xb0_c00360{left:451.800000px;}
.xa7_c00360{left:453.300000px;}
.x109_c00360{left:454.350000px;}
.xda_c00360{left:463.800000px;}
.x99_c00360{left:465.450000px;}
.x12a_c00360{left:471.450000px;}
.xa8_c00360{left:472.650000px;}
.xf8_c00360{left:474.900000px;}
.x119_c00360{left:478.800000px;}
.xa2_c00360{left:479.850000px;}
.x112_c00360{left:481.650000px;}
.xf1_c00360{left:483.000000px;}
.x10e_c00360{left:484.650000px;}
.x11e_c00360{left:485.700000px;}
.x11c_c00360{left:487.500000px;}
.xcc_c00360{left:489.300000px;}
.xe0_c00360{left:491.550000px;}
.xc7_c00360{left:493.500000px;}
.xd5_c00360{left:495.000000px;}
.x105_c00360{left:496.050000px;}
.xb1_c00360{left:497.550000px;}
.x117_c00360{left:500.100000px;}
.xb8_c00360{left:501.750000px;}
.x110_c00360{left:502.950000px;}
.xcd_c00360{left:505.800000px;}
.x126_c00360{left:510.750000px;}
.x100_c00360{left:512.850000px;}
.xfb_c00360{left:514.500000px;}
.xa3_c00360{left:515.850000px;}
.xb5_c00360{left:517.050000px;}
.x106_c00360{left:518.700000px;}
.xdc_c00360{left:520.500000px;}
.x121_c00360{left:523.050000px;}
.x9a_c00360{left:526.950000px;}
.xed_c00360{left:529.350000px;}
.x123_c00360{left:533.250000px;}
.x9f_c00360{left:534.750000px;}
.xfc_c00360{left:536.100000px;}
.xb2_c00360{left:538.200000px;}
.xb9_c00360{left:539.850000px;}
.xf6_c00360{left:540.900000px;}
.x11a_c00360{left:543.300000px;}
.xe2_c00360{left:544.350000px;}
.xbe_c00360{left:546.750000px;}
.xa0_c00360{left:548.850000px;}
.x124_c00360{left:550.050000px;}
.xa9_c00360{left:552.900000px;}
.xe3_c00360{left:554.400000px;}
.x10a_c00360{left:555.750000px;}
.xd6_c00360{left:559.050000px;}
.xce_c00360{left:561.600000px;}
.xe1_c00360{left:562.800000px;}
.x101_c00360{left:564.750000px;}
.x111_c00360{left:565.950000px;}
.xb6_c00360{left:568.500000px;}
.xdd_c00360{left:570.150000px;}
.x9b_c00360{left:572.250000px;}
.xaa_c00360{left:574.800000px;}
.xba_c00360{left:577.350000px;}
.xf9_c00360{left:583.650000px;}
.x113_c00360{left:585.000000px;}
.xf2_c00360{left:587.400000px;}
.xb3_c00360{left:590.100000px;}
.x107_c00360{left:592.200000px;}
.xc3_c00360{left:593.700000px;}
.xee_c00360{left:595.950000px;}
.xbf_c00360{left:597.450000px;}
.x2_c00360{left:599.400000px;}
.xab_c00360{left:601.800000px;}
.xe8_c00360{left:603.900000px;}
.xcf_c00360{left:607.650000px;}
.x10b_c00360{left:608.700000px;}
.xbb_c00360{left:610.050000px;}
.xe4_c00360{left:611.400000px;}
.xef_c00360{left:613.650000px;}
.xc8_c00360{left:615.150000px;}
.xd7_c00360{left:618.000000px;}
.xa1_c00360{left:620.550000px;}
.xfd_c00360{left:624.600000px;}
.xa4_c00360{left:626.100000px;}
.xac_c00360{left:628.500000px;}
.xb4_c00360{left:630.750000px;}
.xc0_c00360{left:631.950000px;}
.xde_c00360{left:636.300000px;}
.x114_c00360{left:638.700000px;}
.x12b_c00360{left:640.350000px;}
.xc9_c00360{left:641.850000px;}
.x115_c00360{left:642.900000px;}
.x11f_c00360{left:645.300000px;}
.xe9_c00360{left:646.350000px;}
.xe5_c00360{left:648.450000px;}
.x9c_c00360{left:649.650000px;}
.xa5_c00360{left:652.050000px;}
.xad_c00360{left:654.000000px;}
.x127_c00360{left:655.050000px;}
.xca_c00360{left:657.000000px;}
.x102_c00360{left:658.350000px;}
.xc4_c00360{left:660.750000px;}
.xbc_c00360{left:663.000000px;}
.xd0_c00360{left:664.800000px;}
.xd8_c00360{left:667.050000px;}
.xf0_c00360{left:670.500000px;}
.xe6_c00360{left:672.150000px;}
.xea_c00360{left:673.350000px;}
.xd9_c00360{left:675.000000px;}
.xfe_c00360{left:677.100000px;}
.xae_c00360{left:678.450000px;}
.xf3_c00360{left:679.500000px;}
.xd1_c00360{left:680.700000px;}
.x11b_c00360{left:685.200000px;}
.x10f_c00360{left:687.300000px;}
.x11d_c00360{left:689.550000px;}
.xd3_c00360{left:691.800000px;}
.xf4_c00360{left:694.650000px;}
.xc5_c00360{left:696.450000px;}
.x118_c00360{left:699.600000px;}
.x9d_c00360{left:701.550000px;}
.xcb_c00360{left:703.800000px;}
.x10c_c00360{left:706.650000px;}
.xff_c00360{left:710.250000px;}
.xbd_c00360{left:712.350000px;}
.xc6_c00360{left:715.950000px;}
.xaf_c00360{left:722.400000px;}
.x9e_c00360{left:725.250000px;}
.xc1_c00360{left:726.600000px;}
.x103_c00360{left:729.300000px;}
.xa6_c00360{left:730.500000px;}
.xdb_c00360{left:731.700000px;}
.xf5_c00360{left:735.750000px;}
.xf7_c00360{left:737.400000px;}
.xeb_c00360{left:738.450000px;}
.x108_c00360{left:739.500000px;}
.x3_c00360{left:742.650000px;}
.xe7_c00360{left:743.850000px;}
.xd2_c00360{left:747.300000px;}
.xfa_c00360{left:751.350000px;}
.x128_c00360{left:752.700000px;}
.xdf_c00360{left:754.350000px;}
.x10d_c00360{left:755.700000px;}
.xd4_c00360{left:756.900000px;}
.xec_c00360{left:757.950000px;}
.xc2_c00360{left:759.750000px;}
.x120_c00360{left:760.800000px;}
.x125_c00360{left:763.500000px;}
.xb7_c00360{left:768.300000px;}
.x116_c00360{left:769.350000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls0_c00360{letter-spacing:0.000000pt;}
.ws4_c00360{word-spacing:-4.804805pt;}
.wsb_c00360{word-spacing:0.000000pt;}
.ws1_c00360{word-spacing:4.397266pt;}
.ws0_c00360{word-spacing:4.519501pt;}
.ws7_c00360{word-spacing:13.333333pt;}
.ws2_c00360{word-spacing:19.682540pt;}
.ws3_c00360{word-spacing:22.857143pt;}
.ws8_c00360{word-spacing:26.031746pt;}
.ws9_c00360{word-spacing:54.444444pt;}
.ws5_c00360{word-spacing:57.777778pt;}
.ws6_c00360{word-spacing:65.185185pt;}
.wsa_c00360{word-spacing:254.603175pt;}
._0_c00360{width:49.523810pt;}
._1_c00360{width:52.698413pt;}
._2_c00360{width:85.614035pt;}
.fs2_c00360{font-size:21.333333pt;}
.fs6_c00360{font-size:37.333333pt;}
.fs8_c00360{font-size:42.666667pt;}
.fs9_c00360{font-size:48.000000pt;}
.fs7_c00360{font-size:53.333333pt;}
.fs3_c00360{font-size:58.666667pt;}
.fs4_c00360{font-size:64.000000pt;}
.fs0_c00360{font-size:69.333333pt;}
.fs5_c00360{font-size:74.666667pt;}
.fs1_c00360{font-size:90.666667pt;}
.y0_c00360{bottom:0.000000pt;}
.y3_c00360{bottom:149.466667pt;}
.y34_c00360{bottom:178.533333pt;}
.y63_c00360{bottom:181.066667pt;}
.y62_c00360{bottom:195.200000pt;}
.y33_c00360{bottom:202.933333pt;}
.y61_c00360{bottom:211.200000pt;}
.y32_c00360{bottom:226.266667pt;}
.y60_c00360{bottom:227.200000pt;}
.y31_c00360{bottom:242.666667pt;}
.y5f_c00360{bottom:243.200000pt;}
.y30_c00360{bottom:258.933333pt;}
.y5e_c00360{bottom:262.133333pt;}
.y5d_c00360{bottom:274.666667pt;}
.y2f_c00360{bottom:281.866667pt;}
.y5c_c00360{bottom:287.733333pt;}
.y2e_c00360{bottom:298.133333pt;}
.y5b_c00360{bottom:300.533333pt;}
.y5a_c00360{bottom:314.266667pt;}
.y2d_c00360{bottom:314.400000pt;}
.y2c_c00360{bottom:330.133333pt;}
.y59_c00360{bottom:330.666667pt;}
.y2b_c00360{bottom:346.133333pt;}
.y58_c00360{bottom:346.666667pt;}
.y2a_c00360{bottom:362.133333pt;}
.y57_c00360{bottom:362.400000pt;}
.y29_c00360{bottom:377.866667pt;}
.y56_c00360{bottom:378.133333pt;}
.y28_c00360{bottom:393.866667pt;}
.y27_c00360{bottom:409.866667pt;}
.y55_c00360{bottom:413.733333pt;}
.y26_c00360{bottom:425.600000pt;}
.y54_c00360{bottom:429.733333pt;}
.y25_c00360{bottom:441.600000pt;}
.y53_c00360{bottom:445.733333pt;}
.y24_c00360{bottom:457.600000pt;}
.y52_c00360{bottom:465.600000pt;}
.y23_c00360{bottom:473.600000pt;}
.y22_c00360{bottom:489.600000pt;}
.y51_c00360{bottom:493.466667pt;}
.y21_c00360{bottom:505.600000pt;}
.y50_c00360{bottom:513.600000pt;}
.y20_c00360{bottom:521.600000pt;}
.y4f_c00360{bottom:529.600000pt;}
.y1f_c00360{bottom:537.600000pt;}
.y4e_c00360{bottom:545.600000pt;}
.y1e_c00360{bottom:553.600000pt;}
.y4d_c00360{bottom:561.600000pt;}
.y1d_c00360{bottom:577.200000pt;}
.y4c_c00360{bottom:581.333333pt;}
.y1c_c00360{bottom:590.000000pt;}
.y4b_c00360{bottom:597.066667pt;}
.y1b_c00360{bottom:602.533333pt;}
.y4a_c00360{bottom:613.066667pt;}
.y1a_c00360{bottom:614.400000pt;}
.y19_c00360{bottom:629.066667pt;}
.y49_c00360{bottom:644.800000pt;}
.y18_c00360{bottom:648.666667pt;}
.y48_c00360{bottom:660.800000pt;}
.y17_c00360{bottom:664.933333pt;}
.y47_c00360{bottom:676.800000pt;}
.y16_c00360{bottom:680.666667pt;}
.y46_c00360{bottom:692.800000pt;}
.y15_c00360{bottom:696.666667pt;}
.y45_c00360{bottom:708.800000pt;}
.y14_c00360{bottom:712.933333pt;}
.y44_c00360{bottom:724.533333pt;}
.y13_c00360{bottom:735.600000pt;}
.y43_c00360{bottom:745.866667pt;}
.y12_c00360{bottom:751.600000pt;}
.y42_c00360{bottom:758.666667pt;}
.y11_c00360{bottom:767.600000pt;}
.y41_c00360{bottom:771.466667pt;}
.y40_c00360{bottom:782.800000pt;}
.y10_c00360{bottom:783.333333pt;}
.y3f_c00360{bottom:800.666667pt;}
.yf_c00360{bottom:802.666667pt;}
.y3e_c00360{bottom:816.266667pt;}
.ye_c00360{bottom:818.933333pt;}
.y3d_c00360{bottom:832.000000pt;}
.yd_c00360{bottom:845.733333pt;}
.y3c_c00360{bottom:848.000000pt;}
.yc_c00360{bottom:862.400000pt;}
.y3b_c00360{bottom:871.333333pt;}
.yb_c00360{bottom:878.400000pt;}
.y3a_c00360{bottom:887.333333pt;}
.ya_c00360{bottom:894.400000pt;}
.y39_c00360{bottom:903.066667pt;}
.y9_c00360{bottom:917.733333pt;}
.y38_c00360{bottom:918.666667pt;}
.y8_c00360{bottom:936.933333pt;}
.y37_c00360{bottom:938.533333pt;}
.y7_c00360{bottom:953.600000pt;}
.y36_c00360{bottom:954.266667pt;}
.y6_c00360{bottom:969.866667pt;}
.y35_c00360{bottom:985.333333pt;}
.y5_c00360{bottom:985.600000pt;}
.y4_c00360{bottom:1001.333333pt;}
.y2_c00360{bottom:1023.733333pt;}
.y1_c00360{bottom:1025.600000pt;}
.h4_c00360{height:21.333333pt;}
.h8_c00360{height:37.333333pt;}
.ha_c00360{height:42.666667pt;}
.hb_c00360{height:48.000000pt;}
.h9_c00360{height:53.333333pt;}
.h5_c00360{height:58.666667pt;}
.h6_c00360{height:64.000000pt;}
.h2_c00360{height:69.333333pt;}
.h7_c00360{height:74.666667pt;}
.h3_c00360{height:90.666667pt;}
.h1_c00360{height:1132.000000pt;}
.h0_c00360{height:1132.159993pt;}
.w0_c00360{width:853.760009pt;}
.w1_c00360{width:854.000000pt;}
.x0_c00360{left:0.000000pt;}
.x4_c00360{left:32.666667pt;}
.x21_c00360{left:62.666667pt;}
.x25_c00360{left:68.800000pt;}
.x3a_c00360{left:70.133333pt;}
.x97_c00360{left:71.066667pt;}
.x60_c00360{left:81.333333pt;}
.x16_c00360{left:83.200000pt;}
.x5_c00360{left:84.133333pt;}
.x39_c00360{left:85.200000pt;}
.x65_c00360{left:94.666667pt;}
.x7b_c00360{left:99.466667pt;}
.xe_c00360{left:100.933333pt;}
.x5a_c00360{left:104.133333pt;}
.x71_c00360{left:106.133333pt;}
.x61_c00360{left:107.600000pt;}
.x7d_c00360{left:108.933333pt;}
.x3b_c00360{left:110.133333pt;}
.x32_c00360{left:113.066667pt;}
.x45_c00360{left:114.266667pt;}
.x5b_c00360{left:115.333333pt;}
.x4a_c00360{left:118.666667pt;}
.x53_c00360{left:120.666667pt;}
.x8d_c00360{left:121.733333pt;}
.xf_c00360{left:122.666667pt;}
.x1d_c00360{left:125.066667pt;}
.x17_c00360{left:128.266667pt;}
.x26_c00360{left:129.333333pt;}
.x66_c00360{left:131.066667pt;}
.x6_c00360{left:132.800000pt;}
.x83_c00360{left:134.933333pt;}
.x22_c00360{left:136.266667pt;}
.x93_c00360{left:138.400000pt;}
.x33_c00360{left:140.533333pt;}
.x54_c00360{left:141.733333pt;}
.x7_c00360{left:142.666667pt;}
.x1e_c00360{left:143.600000pt;}
.x3c_c00360{left:144.666667pt;}
.x62_c00360{left:146.666667pt;}
.x2a_c00360{left:148.533333pt;}
.x51_c00360{left:150.800000pt;}
.x57_c00360{left:152.533333pt;}
.x89_c00360{left:153.600000pt;}
.x70_c00360{left:155.066667pt;}
.x10_c00360{left:156.533333pt;}
.x94_c00360{left:158.533333pt;}
.x46_c00360{left:160.666667pt;}
.x63_c00360{left:162.000000pt;}
.x85_c00360{left:163.866667pt;}
.x92_c00360{left:165.200000pt;}
.x78_c00360{left:167.600000pt;}
.x2b_c00360{left:170.266667pt;}
.x4f_c00360{left:171.733333pt;}
.x74_c00360{left:172.666667pt;}
.x18_c00360{left:174.666667pt;}
.x55_c00360{left:175.600000pt;}
.x5c_c00360{left:177.333333pt;}
.x23_c00360{left:179.466667pt;}
.x8b_c00360{left:180.400000pt;}
.x8_c00360{left:181.333333pt;}
.x3f_c00360{left:182.800000pt;}
.x75_c00360{left:187.066667pt;}
.x58_c00360{left:188.000000pt;}
.x2c_c00360{left:190.133333pt;}
.x42_c00360{left:192.133333pt;}
.x19_c00360{left:193.866667pt;}
.x34_c00360{left:195.600000pt;}
.x27_c00360{left:197.200000pt;}
.x24_c00360{left:198.666667pt;}
.x9_c00360{left:199.600000pt;}
.x73_c00360{left:201.466667pt;}
.x4b_c00360{left:202.533333pt;}
.x8e_c00360{left:206.533333pt;}
.x40_c00360{left:208.133333pt;}
.x76_c00360{left:209.466667pt;}
.x95_c00360{left:211.066667pt;}
.x6b_c00360{left:212.133333pt;}
.x67_c00360{left:214.533333pt;}
.x11_c00360{left:216.666667pt;}
.x35_c00360{left:217.733333pt;}
.x50_c00360{left:220.000000pt;}
.x47_c00360{left:220.933333pt;}
.x3d_c00360{left:222.400000pt;}
.x79_c00360{left:223.333333pt;}
.x2d_c00360{left:224.400000pt;}
.x7e_c00360{left:226.000000pt;}
.x86_c00360{left:227.866667pt;}
.x96_c00360{left:228.933333pt;}
.x56_c00360{left:230.266667pt;}
.x68_c00360{left:232.800000pt;}
.x41_c00360{left:234.000000pt;}
.x1a_c00360{left:240.533333pt;}
.x77_c00360{left:244.400000pt;}
.x87_c00360{left:246.133333pt;}
.x4c_c00360{left:248.000000pt;}
.x36_c00360{left:250.000000pt;}
.x72_c00360{left:252.666667pt;}
.x28_c00360{left:254.133333pt;}
.x6c_c00360{left:255.066667pt;}
.x12_c00360{left:260.133333pt;}
.xa_c00360{left:264.533333pt;}
.x8a_c00360{left:266.800000pt;}
.x37_c00360{left:268.533333pt;}
.x69_c00360{left:269.600000pt;}
.x7c_c00360{left:270.933333pt;}
.x2e_c00360{left:272.133333pt;}
.x6a_c00360{left:275.733333pt;}
.x13_c00360{left:277.466667pt;}
.x48_c00360{left:280.400000pt;}
.x7f_c00360{left:281.733333pt;}
.x8f_c00360{left:284.000000pt;}
.x1_c00360{left:286.133333pt;}
.x2f_c00360{left:290.000000pt;}
.x8c_c00360{left:292.000000pt;}
.x43_c00360{left:293.200000pt;}
.x6d_c00360{left:296.000000pt;}
.x5d_c00360{left:297.600000pt;}
.x3e_c00360{left:299.866667pt;}
.x84_c00360{left:300.933333pt;}
.x80_c00360{left:303.200000pt;}
.x14_c00360{left:304.933333pt;}
.x64_c00360{left:306.133333pt;}
.x88_c00360{left:307.466667pt;}
.x4d_c00360{left:309.466667pt;}
.xb_c00360{left:312.266667pt;}
.x49_c00360{left:313.333333pt;}
.x1b_c00360{left:316.000000pt;}
.x81_c00360{left:317.333333pt;}
.x4e_c00360{left:320.666667pt;}
.x1f_c00360{left:322.533333pt;}
.x91_c00360{left:323.733333pt;}
.x5e_c00360{left:324.800000pt;}
.x30_c00360{left:325.866667pt;}
.x90_c00360{left:330.400000pt;}
.xc_c00360{left:332.400000pt;}
.x38_c00360{left:333.466667pt;}
.x44_c00360{left:335.466667pt;}
.x52_c00360{left:339.600000pt;}
.x6f_c00360{left:340.933333pt;}
.x20_c00360{left:343.600000pt;}
.x59_c00360{left:345.733333pt;}
.xd_c00360{left:347.733333pt;}
.x1c_c00360{left:348.666667pt;}
.x15_c00360{left:351.066667pt;}
.x7a_c00360{left:352.266667pt;}
.x82_c00360{left:353.733333pt;}
.x5f_c00360{left:355.200000pt;}
.x6e_c00360{left:356.133333pt;}
.x29_c00360{left:358.133333pt;}
.x31_c00360{left:364.000000pt;}
.x98_c00360{left:387.200000pt;}
.x104_c00360{left:388.133333pt;}
.x129_c00360{left:397.466667pt;}
.x122_c00360{left:399.466667pt;}
.xb0_c00360{left:401.600000pt;}
.xa7_c00360{left:402.933333pt;}
.x109_c00360{left:403.866667pt;}
.xda_c00360{left:412.266667pt;}
.x99_c00360{left:413.733333pt;}
.x12a_c00360{left:419.066667pt;}
.xa8_c00360{left:420.133333pt;}
.xf8_c00360{left:422.133333pt;}
.x119_c00360{left:425.600000pt;}
.xa2_c00360{left:426.533333pt;}
.x112_c00360{left:428.133333pt;}
.xf1_c00360{left:429.333333pt;}
.x10e_c00360{left:430.800000pt;}
.x11e_c00360{left:431.733333pt;}
.x11c_c00360{left:433.333333pt;}
.xcc_c00360{left:434.933333pt;}
.xe0_c00360{left:436.933333pt;}
.xc7_c00360{left:438.666667pt;}
.xd5_c00360{left:440.000000pt;}
.x105_c00360{left:440.933333pt;}
.xb1_c00360{left:442.266667pt;}
.x117_c00360{left:444.533333pt;}
.xb8_c00360{left:446.000000pt;}
.x110_c00360{left:447.066667pt;}
.xcd_c00360{left:449.600000pt;}
.x126_c00360{left:454.000000pt;}
.x100_c00360{left:455.866667pt;}
.xfb_c00360{left:457.333333pt;}
.xa3_c00360{left:458.533333pt;}
.xb5_c00360{left:459.600000pt;}
.x106_c00360{left:461.066667pt;}
.xdc_c00360{left:462.666667pt;}
.x121_c00360{left:464.933333pt;}
.x9a_c00360{left:468.400000pt;}
.xed_c00360{left:470.533333pt;}
.x123_c00360{left:474.000000pt;}
.x9f_c00360{left:475.333333pt;}
.xfc_c00360{left:476.533333pt;}
.xb2_c00360{left:478.400000pt;}
.xb9_c00360{left:479.866667pt;}
.xf6_c00360{left:480.800000pt;}
.x11a_c00360{left:482.933333pt;}
.xe2_c00360{left:483.866667pt;}
.xbe_c00360{left:486.000000pt;}
.xa0_c00360{left:487.866667pt;}
.x124_c00360{left:488.933333pt;}
.xa9_c00360{left:491.466667pt;}
.xe3_c00360{left:492.800000pt;}
.x10a_c00360{left:494.000000pt;}
.xd6_c00360{left:496.933333pt;}
.xce_c00360{left:499.200000pt;}
.xe1_c00360{left:500.266667pt;}
.x101_c00360{left:502.000000pt;}
.x111_c00360{left:503.066667pt;}
.xb6_c00360{left:505.333333pt;}
.xdd_c00360{left:506.800000pt;}
.x9b_c00360{left:508.666667pt;}
.xaa_c00360{left:510.933333pt;}
.xba_c00360{left:513.200000pt;}
.xf9_c00360{left:518.800000pt;}
.x113_c00360{left:520.000000pt;}
.xf2_c00360{left:522.133333pt;}
.xb3_c00360{left:524.533333pt;}
.x107_c00360{left:526.400000pt;}
.xc3_c00360{left:527.733333pt;}
.xee_c00360{left:529.733333pt;}
.xbf_c00360{left:531.066667pt;}
.x2_c00360{left:532.800000pt;}
.xab_c00360{left:534.933333pt;}
.xe8_c00360{left:536.800000pt;}
.xcf_c00360{left:540.133333pt;}
.x10b_c00360{left:541.066667pt;}
.xbb_c00360{left:542.266667pt;}
.xe4_c00360{left:543.466667pt;}
.xef_c00360{left:545.466667pt;}
.xc8_c00360{left:546.800000pt;}
.xd7_c00360{left:549.333333pt;}
.xa1_c00360{left:551.600000pt;}
.xfd_c00360{left:555.200000pt;}
.xa4_c00360{left:556.533333pt;}
.xac_c00360{left:558.666667pt;}
.xb4_c00360{left:560.666667pt;}
.xc0_c00360{left:561.733333pt;}
.xde_c00360{left:565.600000pt;}
.x114_c00360{left:567.733333pt;}
.x12b_c00360{left:569.200000pt;}
.xc9_c00360{left:570.533333pt;}
.x115_c00360{left:571.466667pt;}
.x11f_c00360{left:573.600000pt;}
.xe9_c00360{left:574.533333pt;}
.xe5_c00360{left:576.400000pt;}
.x9c_c00360{left:577.466667pt;}
.xa5_c00360{left:579.600000pt;}
.xad_c00360{left:581.333333pt;}
.x127_c00360{left:582.266667pt;}
.xca_c00360{left:584.000000pt;}
.x102_c00360{left:585.200000pt;}
.xc4_c00360{left:587.333333pt;}
.xbc_c00360{left:589.333333pt;}
.xd0_c00360{left:590.933333pt;}
.xd8_c00360{left:592.933333pt;}
.xf0_c00360{left:596.000000pt;}
.xe6_c00360{left:597.466667pt;}
.xea_c00360{left:598.533333pt;}
.xd9_c00360{left:600.000000pt;}
.xfe_c00360{left:601.866667pt;}
.xae_c00360{left:603.066667pt;}
.xf3_c00360{left:604.000000pt;}
.xd1_c00360{left:605.066667pt;}
.x11b_c00360{left:609.066667pt;}
.x10f_c00360{left:610.933333pt;}
.x11d_c00360{left:612.933333pt;}
.xd3_c00360{left:614.933333pt;}
.xf4_c00360{left:617.466667pt;}
.xc5_c00360{left:619.066667pt;}
.x118_c00360{left:621.866667pt;}
.x9d_c00360{left:623.600000pt;}
.xcb_c00360{left:625.600000pt;}
.x10c_c00360{left:628.133333pt;}
.xff_c00360{left:631.333333pt;}
.xbd_c00360{left:633.200000pt;}
.xc6_c00360{left:636.400000pt;}
.xaf_c00360{left:642.133333pt;}
.x9e_c00360{left:644.666667pt;}
.xc1_c00360{left:645.866667pt;}
.x103_c00360{left:648.266667pt;}
.xa6_c00360{left:649.333333pt;}
.xdb_c00360{left:650.400000pt;}
.xf5_c00360{left:654.000000pt;}
.xf7_c00360{left:655.466667pt;}
.xeb_c00360{left:656.400000pt;}
.x108_c00360{left:657.333333pt;}
.x3_c00360{left:660.133333pt;}
.xe7_c00360{left:661.200000pt;}
.xd2_c00360{left:664.266667pt;}
.xfa_c00360{left:667.866667pt;}
.x128_c00360{left:669.066667pt;}
.xdf_c00360{left:670.533333pt;}
.x10d_c00360{left:671.733333pt;}
.xd4_c00360{left:672.800000pt;}
.xec_c00360{left:673.733333pt;}
.xc2_c00360{left:675.333333pt;}
.x120_c00360{left:676.266667pt;}
.x125_c00360{left:678.666667pt;}
.xb7_c00360{left:682.933333pt;}
.x116_c00360{left:683.866667pt;}
}





/* 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_c00361 {
    display:none;
  }
  .loading-indicator_c00361.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00361 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_c00361 { 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_c00361" -> "#page-container .classname_c00361")
 */
.pf_c00361 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00361 { /* 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_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00361 { /* 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_c00361 { /* 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_c00361 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00361 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00361 {overflow:visible;}
  }
}
.c_c00361 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00361 { /* 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_c00361:after { /* webkit #35443 */
  content: '';
}
.t_c00361:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00361 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 */
}
.__c00361 { /* 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_c00361 { /* info for Javascript */
  display:none;
}
.l_c00361 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00361 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00361 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00361: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_c00361 {
    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_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00361.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_c00361 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00361;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.000000;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;}
.m28_c00361{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.maa_c00361{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00361{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m69_c00361{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00361{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00361{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00361{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m19_c00361{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00361{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m34_c00361{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m40_c00361{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m87_c00361{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00361{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m88_c00361{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00361{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m89_c00361{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m53_c00361{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00361{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00361{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me3_c00361{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m78_c00361{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00361{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m43_c00361{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00361{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00361{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00361{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00361{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00361{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m42_c00361{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00361{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00361{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9_c00361{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00361{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m45_c00361{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me0_c00361{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mad_c00361{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m72_c00361{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00361{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00361{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00361{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m22_c00361{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00361{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m49_c00361{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me5_c00361{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00361{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m76_c00361{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00361{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00361{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.mc_c00361{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00361{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mac_c00361{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00361{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m50_c00361{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00361{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00361{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00361{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00361{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mca_c00361{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m24_c00361{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m98_c00361{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00361{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m85_c00361{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00361{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00361{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00361{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00361{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m83_c00361{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00361{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00361{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.med_c00361{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8_c00361{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m105_c00361{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00361{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7_c00361{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me2_c00361{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mee_c00361{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m37_c00361{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m23_c00361{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00361{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m26_c00361{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md7_c00361{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m38_c00361{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m95_c00361{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00361{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m61_c00361{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00361{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md1_c00361{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00361{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m82_c00361{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00361{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00361{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00361{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m36_c00361{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00361{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00361{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m41_c00361{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00361{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m52_c00361{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00361{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mab_c00361{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mba_c00361{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m65_c00361{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00361{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m27_c00361{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m68_c00361{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mec_c00361{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me7_c00361{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m44_c00361{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00361{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mae_c00361{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00361{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mde_c00361{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m77_c00361{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m91_c00361{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m15_c00361{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md0_c00361{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m74_c00361{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md_c00361{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m58_c00361{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m46_c00361{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.maf_c00361{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m92_c00361{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m86_c00361{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00361{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00361{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00361{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m96_c00361{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m79_c00361{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m97_c00361{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m62_c00361{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00361{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00361{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m93_c00361{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me4_c00361{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00361{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me8_c00361{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00361{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m99_c00361{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00361{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me_c00361{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00361{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m90_c00361{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m73_c00361{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf_c00361{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m56_c00361{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00361{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00361{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00361{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00361{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md9_c00361{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00361{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00361{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00361{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m66_c00361{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md4_c00361{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m55_c00361{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m33_c00361{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m60_c00361{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md6_c00361{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m25_c00361{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m13_c00361{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00361{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m67_c00361{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.md2_c00361{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00361{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md8_c00361{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me1_c00361{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m63_c00361{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m39_c00361{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m102_c00361{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00361{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00361{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m32_c00361{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m30_c00361{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m84_c00361{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md5_c00361{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md3_c00361{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m64_c00361{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me6_c00361{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00361{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00361{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.meb_c00361{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m10_c00361{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00361{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mff_c00361{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m20_c00361{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00361{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m18_c00361{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00361{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00361{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m31_c00361{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00361{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00361{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00361{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00361{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00361{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mea_c00361{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00361{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00361{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m101_c00361{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00361{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17_c00361{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m81_c00361{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m94_c00361{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00361{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00361{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mce_c00361{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00361{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00361{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);}
.mb9_c00361{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00361{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11_c00361{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m71_c00361{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mda_c00361{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00361{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m57_c00361{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m100_c00361{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00361{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me9_c00361{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00361{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mef_c00361{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m47_c00361{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m48_c00361{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m14_c00361{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00361{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m21_c00361{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m16_c00361{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00361{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m51_c00361{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m80_c00361{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m70_c00361{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00361{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00361{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m75_c00361{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m12_c00361{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00361{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00361{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00361{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00361{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00361{transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);}
.m104_c00361{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00361{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m35_c00361{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00361{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m29_c00361{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00361{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m54_c00361{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00361{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m59_c00361{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m103_c00361{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00361{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00361{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00361{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls2_c00361{letter-spacing:0.000000px;}
.ls1_c00361{letter-spacing:55.714286px;}
.ls0_c00361{letter-spacing:74.166667px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{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__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00361{word-spacing:-104.166667px;}
.ws7_c00361{word-spacing:-85.714286px;}
.ws10_c00361{word-spacing:-13.863636px;}
.ws0_c00361{word-spacing:-8.055556px;}
.wsf_c00361{word-spacing:-5.270189px;}
.ws11_c00361{word-spacing:-3.467354px;}
.ws1_c00361{word-spacing:-1.064302px;}
.ws12_c00361{word-spacing:0.000000px;}
.wsd_c00361{word-spacing:0.687427px;}
.wsc_c00361{word-spacing:3.289474px;}
.ws2_c00361{word-spacing:8.611111px;}
.ws4_c00361{word-spacing:15.000000px;}
.wse_c00361{word-spacing:20.647303px;}
.wsa_c00361{word-spacing:22.142857px;}
.ws5_c00361{word-spacing:25.714286px;}
.wsb_c00361{word-spacing:29.285714px;}
.ws3_c00361{word-spacing:40.000000px;}
.ws9_c00361{word-spacing:67.631579px;}
.ws8_c00361{word-spacing:74.722222px;}
._0_c00361{margin-left:-74.166667px;}
._1_c00361{margin-left:-55.714286px;}
.fc0_c00361{color:transparent;}
.fs4_c00361{font-size:54.000000px;}
.fs3_c00361{font-size:60.000000px;}
.fs2_c00361{font-size:66.000000px;}
.fs5_c00361{font-size:72.000000px;}
.fs0_c00361{font-size:78.000000px;}
.fs1_c00361{font-size:114.000000px;}
.y0_c00361{bottom:0.000000px;}
.y36_c00361{bottom:200.550000px;}
.y68_c00361{bottom:202.500000px;}
.y35_c00361{bottom:214.950000px;}
.y67_c00361{bottom:220.200000px;}
.y34_c00361{bottom:229.650000px;}
.y66_c00361{bottom:237.900000px;}
.y65_c00361{bottom:255.900000px;}
.y33_c00361{bottom:276.000000px;}
.y64_c00361{bottom:276.900000px;}
.y32_c00361{bottom:293.700000px;}
.y63_c00361{bottom:296.700000px;}
.y31_c00361{bottom:311.700000px;}
.y62_c00361{bottom:315.000000px;}
.y30_c00361{bottom:329.250000px;}
.y61_c00361{bottom:332.700000px;}
.y2f_c00361{bottom:347.250000px;}
.y60_c00361{bottom:350.700000px;}
.y2e_c00361{bottom:365.250000px;}
.y5f_c00361{bottom:377.250000px;}
.y2d_c00361{bottom:383.250000px;}
.y5e_c00361{bottom:395.250000px;}
.y2c_c00361{bottom:400.950000px;}
.y5d_c00361{bottom:417.600000px;}
.y2b_c00361{bottom:419.250000px;}
.y5c_c00361{bottom:435.300000px;}
.y2a_c00361{bottom:436.950000px;}
.y29_c00361{bottom:454.650000px;}
.y5b_c00361{bottom:467.250000px;}
.y28_c00361{bottom:472.650000px;}
.y5a_c00361{bottom:485.250000px;}
.y27_c00361{bottom:490.650000px;}
.y59_c00361{bottom:502.950000px;}
.y26_c00361{bottom:508.650000px;}
.y58_c00361{bottom:520.950000px;}
.y25_c00361{bottom:529.200000px;}
.y57_c00361{bottom:538.950000px;}
.y24_c00361{bottom:543.900000px;}
.y56_c00361{bottom:560.550000px;}
.y23_c00361{bottom:564.150000px;}
.y55_c00361{bottom:583.200000px;}
.y22_c00361{bottom:590.850000px;}
.y21_c00361{bottom:592.950000px;}
.y54_c00361{bottom:601.200000px;}
.y20_c00361{bottom:606.000000px;}
.y53_c00361{bottom:619.200000px;}
.y1f_c00361{bottom:621.450000px;}
.y1e_c00361{bottom:636.150000px;}
.y52_c00361{bottom:637.200000px;}
.y1d_c00361{bottom:650.550000px;}
.y51_c00361{bottom:655.500000px;}
.y1c_c00361{bottom:664.650000px;}
.y50_c00361{bottom:678.000000px;}
.y1b_c00361{bottom:679.350000px;}
.y1a_c00361{bottom:694.050000px;}
.y4f_c00361{bottom:696.300000px;}
.y19_c00361{bottom:712.800000px;}
.y4e_c00361{bottom:714.000000px;}
.y18_c00361{bottom:730.800000px;}
.y4d_c00361{bottom:732.300000px;}
.y17_c00361{bottom:748.800000px;}
.y4c_c00361{bottom:754.200000px;}
.y16_c00361{bottom:766.500000px;}
.y4b_c00361{bottom:772.950000px;}
.y15_c00361{bottom:784.500000px;}
.y4a_c00361{bottom:790.950000px;}
.y14_c00361{bottom:806.400000px;}
.y49_c00361{bottom:809.700000px;}
.y13_c00361{bottom:824.400000px;}
.y48_c00361{bottom:827.400000px;}
.y12_c00361{bottom:842.400000px;}
.y47_c00361{bottom:845.400000px;}
.y11_c00361{bottom:859.650000px;}
.y46_c00361{bottom:863.100000px;}
.y10_c00361{bottom:877.650000px;}
.y45_c00361{bottom:881.100000px;}
.yf_c00361{bottom:895.350000px;}
.y44_c00361{bottom:899.400000px;}
.ye_c00361{bottom:913.350000px;}
.y43_c00361{bottom:917.400000px;}
.yd_c00361{bottom:935.250000px;}
.y42_c00361{bottom:935.400000px;}
.yc_c00361{bottom:953.250000px;}
.y41_c00361{bottom:953.400000px;}
.y40_c00361{bottom:971.100000px;}
.yb_c00361{bottom:979.200000px;}
.y3f_c00361{bottom:989.100000px;}
.ya_c00361{bottom:1001.100000px;}
.y3e_c00361{bottom:1007.100000px;}
.y9_c00361{bottom:1023.450000px;}
.y3d_c00361{bottom:1025.100000px;}
.y8_c00361{bottom:1042.500000px;}
.y3c_c00361{bottom:1043.100000px;}
.y7_c00361{bottom:1060.800000px;}
.y3b_c00361{bottom:1061.100000px;}
.y6_c00361{bottom:1078.500000px;}
.y3a_c00361{bottom:1079.100000px;}
.y5_c00361{bottom:1096.200000px;}
.y39_c00361{bottom:1096.800000px;}
.y38_c00361{bottom:1114.800000px;}
.y4_c00361{bottom:1114.950000px;}
.y3_c00361{bottom:1132.200000px;}
.y37_c00361{bottom:1132.500000px;}
.y1_c00361{bottom:1155.900000px;}
.y2_c00361{bottom:1159.200000px;}
.h6_c00361{height:54.000000px;}
.h5_c00361{height:60.000000px;}
.h4_c00361{height:66.000000px;}
.h7_c00361{height:72.000000px;}
.h2_c00361{height:78.000000px;}
.h3_c00361{height:114.000000px;}
.h0_c00361{height:1276.920044px;}
.h1_c00361{height:1277.250000px;}
.w0_c00361{width:960.480010px;}
.w1_c00361{width:960.750000px;}
.x0_c00361{left:0.000000px;}
.x1_c00361{left:187.200000px;}
.x2f_c00361{left:188.700000px;}
.x95_c00361{left:198.300000px;}
.x65_c00361{left:200.850000px;}
.x6f_c00361{left:202.350000px;}
.x9d_c00361{left:203.700000px;}
.x12_c00361{left:205.650000px;}
.x3_c00361{left:206.700000px;}
.x98_c00361{left:208.050000px;}
.x9e_c00361{left:211.950000px;}
.x68_c00361{left:215.550000px;}
.x48_c00361{left:216.600000px;}
.x79_c00361{left:217.800000px;}
.x36_c00361{left:223.950000px;}
.x13_c00361{left:226.950000px;}
.x9f_c00361{left:229.350000px;}
.x32_c00361{left:230.850000px;}
.x37_c00361{left:232.950000px;}
.x4f_c00361{left:236.100000px;}
.x7b_c00361{left:237.150000px;}
.x28_c00361{left:238.650000px;}
.x1c_c00361{left:240.300000px;}
.x3f_c00361{left:241.350000px;}
.x87_c00361{left:242.850000px;}
.x4e_c00361{left:244.200000px;}
.x30_c00361{left:247.050000px;}
.x1d_c00361{left:250.350000px;}
.x53_c00361{left:253.650000px;}
.x31_c00361{left:256.050000px;}
.x25_c00361{left:258.000000px;}
.x2d_c00361{left:259.800000px;}
.x70_c00361{left:261.750000px;}
.x14_c00361{left:262.950000px;}
.x81_c00361{left:264.600000px;}
.x33_c00361{left:268.350000px;}
.x38_c00361{left:272.850000px;}
.x99_c00361{left:273.900000px;}
.x7c_c00361{left:276.450000px;}
.xc_c00361{left:278.250000px;}
.x8d_c00361{left:279.600000px;}
.x5b_c00361{left:280.800000px;}
.x93_c00361{left:282.150000px;}
.xa2_c00361{left:283.350000px;}
.x1e_c00361{left:286.050000px;}
.x15_c00361{left:287.100000px;}
.x40_c00361{left:290.700000px;}
.x29_c00361{left:292.650000px;}
.x6d_c00361{left:294.600000px;}
.xd_c00361{left:295.950000px;}
.x5c_c00361{left:298.500000px;}
.x4_c00361{left:301.350000px;}
.x50_c00361{left:304.200000px;}
.x5f_c00361{left:306.600000px;}
.x1f_c00361{left:307.950000px;}
.x4b_c00361{left:309.750000px;}
.xe_c00361{left:312.150000px;}
.x7d_c00361{left:314.550000px;}
.x39_c00361{left:315.750000px;}
.x6b_c00361{left:318.750000px;}
.x88_c00361{left:320.250000px;}
.x2a_c00361{left:321.750000px;}
.x20_c00361{left:323.400000px;}
.x96_c00361{left:326.550000px;}
.x9a_c00361{left:327.600000px;}
.x49_c00361{left:330.000000px;}
.x44_c00361{left:332.550000px;}
.x5_c00361{left:334.050000px;}
.x16_c00361{left:335.400000px;}
.x8e_c00361{left:336.900000px;}
.xa0_c00361{left:338.400000px;}
.x82_c00361{left:342.300000px;}
.xf_c00361{left:343.800000px;}
.x41_c00361{left:345.000000px;}
.x60_c00361{left:346.200000px;}
.x6c_c00361{left:350.100000px;}
.x97_c00361{left:352.050000px;}
.x3a_c00361{left:354.300000px;}
.x6_c00361{left:356.400000px;}
.x7e_c00361{left:358.500000px;}
.x54_c00361{left:361.650000px;}
.x26_c00361{left:364.200000px;}
.x45_c00361{left:365.700000px;}
.x74_c00361{left:368.550000px;}
.x21_c00361{left:369.900000px;}
.x17_c00361{left:371.400000px;}
.x90_c00361{left:372.900000px;}
.x34_c00361{left:374.850000px;}
.x4a_c00361{left:376.800000px;}
.x89_c00361{left:377.850000px;}
.x51_c00361{left:379.050000px;}
.x46_c00361{left:382.200000px;}
.x75_c00361{left:383.250000px;}
.x2b_c00361{left:386.550000px;}
.x56_c00361{left:388.350000px;}
.x42_c00361{left:391.200000px;}
.x83_c00361{left:393.000000px;}
.x3c_c00361{left:396.600000px;}
.x7_c00361{left:398.550000px;}
.x57_c00361{left:400.200000px;}
.x27_c00361{left:401.700000px;}
.x18_c00361{left:402.750000px;}
.x76_c00361{left:404.850000px;}
.x61_c00361{left:407.100000px;}
.xa1_c00361{left:409.200000px;}
.x3d_c00361{left:410.250000px;}
.x77_c00361{left:412.050000px;}
.x4c_c00361{left:413.100000px;}
.x8f_c00361{left:414.300000px;}
.x91_c00361{left:416.100000px;}
.x55_c00361{left:417.150000px;}
.x10_c00361{left:418.800000px;}
.x52_c00361{left:420.450000px;}
.x58_c00361{left:421.500000px;}
.x62_c00361{left:423.300000px;}
.x8a_c00361{left:424.350000px;}
.x19_c00361{left:425.400000px;}
.x6e_c00361{left:427.650000px;}
.x84_c00361{left:429.750000px;}
.x8_c00361{left:432.450000px;}
.x2_c00361{left:433.800000px;}
.x71_c00361{left:435.600000px;}
.x22_c00361{left:436.800000px;}
.x5d_c00361{left:437.850000px;}
.x35_c00361{left:440.700000px;}
.x43_c00361{left:442.650000px;}
.x63_c00361{left:444.150000px;}
.x3b_c00361{left:446.100000px;}
.x8b_c00361{left:449.100000px;}
.x9_c00361{left:450.750000px;}
.x85_c00361{left:451.950000px;}
.x69_c00361{left:453.150000px;}
.x66_c00361{left:454.200000px;}
.x23_c00361{left:456.600000px;}
.x92_c00361{left:458.550000px;}
.x59_c00361{left:461.100000px;}
.x2e_c00361{left:463.200000px;}
.xa3_c00361{left:465.150000px;}
.x2c_c00361{left:467.850000px;}
.x1a_c00361{left:471.450000px;}
.x7f_c00361{left:472.650000px;}
.x11_c00361{left:473.850000px;}
.x47_c00361{left:475.050000px;}
.x3e_c00361{left:477.900000px;}
.x9b_c00361{left:480.900000px;}
.x67_c00361{left:482.250000px;}
.x6a_c00361{left:483.450000px;}
.x72_c00361{left:484.650000px;}
.x5e_c00361{left:487.050000px;}
.x8c_c00361{left:488.400000px;}
.xa_c00361{left:490.350000px;}
.x80_c00361{left:491.700000px;}
.x24_c00361{left:493.350000px;}
.x94_c00361{left:495.450000px;}
.x7a_c00361{left:498.900000px;}
.x4d_c00361{left:501.300000px;}
.x86_c00361{left:503.850000px;}
.x64_c00361{left:509.550000px;}
.x1b_c00361{left:511.350000px;}
.x73_c00361{left:512.400000px;}
.x78_c00361{left:513.750000px;}
.xb_c00361{left:515.550000px;}
.x5a_c00361{left:517.650000px;}
.x9c_c00361{left:523.050000px;}
.x129_c00361{left:546.450000px;}
.x135_c00361{left:548.700000px;}
.x13f_c00361{left:553.650000px;}
.xf5_c00361{left:558.750000px;}
.xcb_c00361{left:563.400000px;}
.xa4_c00361{left:564.450000px;}
.x144_c00361{left:565.500000px;}
.x116_c00361{left:580.350000px;}
.xfa_c00361{left:581.850000px;}
.x120_c00361{left:583.500000px;}
.xa5_c00361{left:585.300000px;}
.x119_c00361{left:586.950000px;}
.xc7_c00361{left:588.150000px;}
.x136_c00361{left:591.150000px;}
.x10a_c00361{left:595.650000px;}
.xf6_c00361{left:600.900000px;}
.xd3_c00361{left:603.450000px;}
.xdc_c00361{left:604.500000px;}
.x12a_c00361{left:605.550000px;}
.xe2_c00361{left:606.750000px;}
.xd8_c00361{left:609.300000px;}
.x11e_c00361{left:610.350000px;}
.x102_c00361{left:612.150000px;}
.xf1_c00361{left:614.100000px;}
.x138_c00361{left:615.600000px;}
.xd4_c00361{left:616.800000px;}
.xe3_c00361{left:618.300000px;}
.xf7_c00361{left:619.650000px;}
.x103_c00361{left:621.150000px;}
.x110_c00361{left:624.600000px;}
.xbb_c00361{left:626.550000px;}
.xcc_c00361{left:628.500000px;}
.x124_c00361{left:630.750000px;}
.xc8_c00361{left:632.850000px;}
.xe4_c00361{left:634.200000px;}
.x12b_c00361{left:635.850000px;}
.xb6_c00361{left:636.900000px;}
.xae_c00361{left:638.550000px;}
.xa6_c00361{left:640.050000px;}
.x11a_c00361{left:642.000000px;}
.xc1_c00361{left:643.800000px;}
.x140_c00361{left:645.450000px;}
.x12d_c00361{left:647.250000px;}
.xcd_c00361{left:648.300000px;}
.xa7_c00361{left:649.350000px;}
.xdd_c00361{left:653.100000px;}
.x11f_c00361{left:655.650000px;}
.xd9_c00361{left:658.200000px;}
.xd5_c00361{left:659.700000px;}
.xaf_c00361{left:660.900000px;}
.xeb_c00361{left:663.450000px;}
.x141_c00361{left:664.500000px;}
.xe5_c00361{left:665.550000px;}
.x100_c00361{left:666.600000px;}
.x111_c00361{left:668.100000px;}
.xa8_c00361{left:669.150000px;}
.x104_c00361{left:670.200000px;}
.xbc_c00361{left:671.250000px;}
.xc9_c00361{left:672.750000px;}
.x10b_c00361{left:677.400000px;}
.xb0_c00361{left:679.200000px;}
.xe6_c00361{left:682.050000px;}
.xce_c00361{left:683.550000px;}
.xa9_c00361{left:685.350000px;}
.xfe_c00361{left:686.850000px;}
.x126_c00361{left:687.900000px;}
.xb7_c00361{left:690.150000px;}
.xfb_c00361{left:691.500000px;}
.xf2_c00361{left:694.050000px;}
.x10c_c00361{left:699.750000px;}
.x13b_c00361{left:701.400000px;}
.x115_c00361{left:702.750000px;}
.xf8_c00361{left:704.550000px;}
.xec_c00361{left:706.650000px;}
.x125_c00361{left:708.150000px;}
.xb8_c00361{left:710.250000px;}
.xbd_c00361{left:711.600000px;}
.x105_c00361{left:712.650000px;}
.x143_c00361{left:714.600000px;}
.xde_c00361{left:716.100000px;}
.x137_c00361{left:718.500000px;}
.xed_c00361{left:720.000000px;}
.xb1_c00361{left:722.400000px;}
.x128_c00361{left:725.850000px;}
.x12c_c00361{left:726.900000px;}
.xca_c00361{left:731.100000px;}
.x10d_c00361{left:733.200000px;}
.xfc_c00361{left:735.450000px;}
.xdf_c00361{left:736.650000px;}
.xe7_c00361{left:738.150000px;}
.xda_c00361{left:740.550000px;}
.xb2_c00361{left:741.900000px;}
.xc2_c00361{left:744.300000px;}
.xaa_c00361{left:745.500000px;}
.x10e_c00361{left:746.550000px;}
.x114_c00361{left:749.550000px;}
.x112_c00361{left:751.500000px;}
.x117_c00361{left:752.550000px;}
.xcf_c00361{left:753.750000px;}
.x13d_c00361{left:754.950000px;}
.xd6_c00361{left:756.900000px;}
.xf3_c00361{left:758.550000px;}
.xee_c00361{left:760.650000px;}
.x121_c00361{left:762.450000px;}
.xc3_c00361{left:765.150000px;}
.x118_c00361{left:767.250000px;}
.x11b_c00361{left:768.750000px;}
.xd0_c00361{left:771.450000px;}
.xe8_c00361{left:773.400000px;}
.x101_c00361{left:774.600000px;}
.xb9_c00361{left:776.100000px;}
.x12e_c00361{left:777.300000px;}
.xf4_c00361{left:778.350000px;}
.x106_c00361{left:780.300000px;}
.x122_c00361{left:781.500000px;}
.x142_c00361{left:783.450000px;}
.x13e_c00361{left:784.800000px;}
.xef_c00361{left:787.350000px;}
.xbe_c00361{left:790.050000px;}
.x11c_c00361{left:791.850000px;}
.xb3_c00361{left:794.850000px;}
.x107_c00361{left:798.000000px;}
.xe9_c00361{left:799.650000px;}
.x12f_c00361{left:801.000000px;}
.x132_c00361{left:804.300000px;}
.xba_c00361{left:807.000000px;}
.xc4_c00361{left:811.200000px;}
.xff_c00361{left:813.150000px;}
.x113_c00361{left:815.250000px;}
.xd7_c00361{left:817.050000px;}
.xb4_c00361{left:819.000000px;}
.xbf_c00361{left:821.400000px;}
.xab_c00361{left:823.650000px;}
.xd1_c00361{left:825.750000px;}
.xf0_c00361{left:828.750000px;}
.x139_c00361{left:832.800000px;}
.xe0_c00361{left:834.600000px;}
.xc5_c00361{left:837.150000px;}
.xb5_c00361{left:838.500000px;}
.xfd_c00361{left:839.550000px;}
.xf9_c00361{left:841.050000px;}
.xac_c00361{left:843.450000px;}
.xe1_c00361{left:846.150000px;}
.x133_c00361{left:847.800000px;}
.x130_c00361{left:851.100000px;}
.xea_c00361{left:852.150000px;}
.x108_c00361{left:854.100000px;}
.x10f_c00361{left:856.800000px;}
.xd2_c00361{left:858.450000px;}
.x134_c00361{left:859.650000px;}
.xad_c00361{left:860.700000px;}
.x11d_c00361{left:861.750000px;}
.x127_c00361{left:863.100000px;}
.x109_c00361{left:864.900000px;}
.xdb_c00361{left:866.550000px;}
.x131_c00361{left:869.100000px;}
.x123_c00361{left:871.200000px;}
.x13c_c00361{left:872.400000px;}
.x13a_c00361{left:873.450000px;}
.xc6_c00361{left:874.650000px;}
.x145_c00361{left:876.150000px;}
.xc0_c00361{left:882.900000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls2_c00361{letter-spacing:0.000000pt;}
.ls1_c00361{letter-spacing:49.523810pt;}
.ls0_c00361{letter-spacing:65.925926pt;}
.ws6_c00361{word-spacing:-92.592593pt;}
.ws7_c00361{word-spacing:-76.190476pt;}
.ws10_c00361{word-spacing:-12.323232pt;}
.ws0_c00361{word-spacing:-7.160494pt;}
.wsf_c00361{word-spacing:-4.684613pt;}
.ws11_c00361{word-spacing:-3.082092pt;}
.ws1_c00361{word-spacing:-0.946046pt;}
.ws12_c00361{word-spacing:0.000000pt;}
.wsd_c00361{word-spacing:0.611046pt;}
.wsc_c00361{word-spacing:2.923977pt;}
.ws2_c00361{word-spacing:7.654321pt;}
.ws4_c00361{word-spacing:13.333333pt;}
.wse_c00361{word-spacing:18.353158pt;}
.wsa_c00361{word-spacing:19.682540pt;}
.ws5_c00361{word-spacing:22.857143pt;}
.wsb_c00361{word-spacing:26.031746pt;}
.ws3_c00361{word-spacing:35.555556pt;}
.ws9_c00361{word-spacing:60.116959pt;}
.ws8_c00361{word-spacing:66.419753pt;}
._0_c00361{margin-left:-65.925926pt;}
._1_c00361{margin-left:-49.523810pt;}
.fs4_c00361{font-size:48.000000pt;}
.fs3_c00361{font-size:53.333333pt;}
.fs2_c00361{font-size:58.666667pt;}
.fs5_c00361{font-size:64.000000pt;}
.fs0_c00361{font-size:69.333333pt;}
.fs1_c00361{font-size:101.333333pt;}
.y0_c00361{bottom:0.000000pt;}
.y36_c00361{bottom:178.266667pt;}
.y68_c00361{bottom:180.000000pt;}
.y35_c00361{bottom:191.066667pt;}
.y67_c00361{bottom:195.733333pt;}
.y34_c00361{bottom:204.133333pt;}
.y66_c00361{bottom:211.466667pt;}
.y65_c00361{bottom:227.466667pt;}
.y33_c00361{bottom:245.333333pt;}
.y64_c00361{bottom:246.133333pt;}
.y32_c00361{bottom:261.066667pt;}
.y63_c00361{bottom:263.733333pt;}
.y31_c00361{bottom:277.066667pt;}
.y62_c00361{bottom:280.000000pt;}
.y30_c00361{bottom:292.666667pt;}
.y61_c00361{bottom:295.733333pt;}
.y2f_c00361{bottom:308.666667pt;}
.y60_c00361{bottom:311.733333pt;}
.y2e_c00361{bottom:324.666667pt;}
.y5f_c00361{bottom:335.333333pt;}
.y2d_c00361{bottom:340.666667pt;}
.y5e_c00361{bottom:351.333333pt;}
.y2c_c00361{bottom:356.400000pt;}
.y5d_c00361{bottom:371.200000pt;}
.y2b_c00361{bottom:372.666667pt;}
.y5c_c00361{bottom:386.933333pt;}
.y2a_c00361{bottom:388.400000pt;}
.y29_c00361{bottom:404.133333pt;}
.y5b_c00361{bottom:415.333333pt;}
.y28_c00361{bottom:420.133333pt;}
.y5a_c00361{bottom:431.333333pt;}
.y27_c00361{bottom:436.133333pt;}
.y59_c00361{bottom:447.066667pt;}
.y26_c00361{bottom:452.133333pt;}
.y58_c00361{bottom:463.066667pt;}
.y25_c00361{bottom:470.400000pt;}
.y57_c00361{bottom:479.066667pt;}
.y24_c00361{bottom:483.466667pt;}
.y56_c00361{bottom:498.266667pt;}
.y23_c00361{bottom:501.466667pt;}
.y55_c00361{bottom:518.400000pt;}
.y22_c00361{bottom:525.200000pt;}
.y21_c00361{bottom:527.066667pt;}
.y54_c00361{bottom:534.400000pt;}
.y20_c00361{bottom:538.666667pt;}
.y53_c00361{bottom:550.400000pt;}
.y1f_c00361{bottom:552.400000pt;}
.y1e_c00361{bottom:565.466667pt;}
.y52_c00361{bottom:566.400000pt;}
.y1d_c00361{bottom:578.266667pt;}
.y51_c00361{bottom:582.666667pt;}
.y1c_c00361{bottom:590.800000pt;}
.y50_c00361{bottom:602.666667pt;}
.y1b_c00361{bottom:603.866667pt;}
.y1a_c00361{bottom:616.933333pt;}
.y4f_c00361{bottom:618.933333pt;}
.y19_c00361{bottom:633.600000pt;}
.y4e_c00361{bottom:634.666667pt;}
.y18_c00361{bottom:649.600000pt;}
.y4d_c00361{bottom:650.933333pt;}
.y17_c00361{bottom:665.600000pt;}
.y4c_c00361{bottom:670.400000pt;}
.y16_c00361{bottom:681.333333pt;}
.y4b_c00361{bottom:687.066667pt;}
.y15_c00361{bottom:697.333333pt;}
.y4a_c00361{bottom:703.066667pt;}
.y14_c00361{bottom:716.800000pt;}
.y49_c00361{bottom:719.733333pt;}
.y13_c00361{bottom:732.800000pt;}
.y48_c00361{bottom:735.466667pt;}
.y12_c00361{bottom:748.800000pt;}
.y47_c00361{bottom:751.466667pt;}
.y11_c00361{bottom:764.133333pt;}
.y46_c00361{bottom:767.200000pt;}
.y10_c00361{bottom:780.133333pt;}
.y45_c00361{bottom:783.200000pt;}
.yf_c00361{bottom:795.866667pt;}
.y44_c00361{bottom:799.466667pt;}
.ye_c00361{bottom:811.866667pt;}
.y43_c00361{bottom:815.466667pt;}
.yd_c00361{bottom:831.333333pt;}
.y42_c00361{bottom:831.466667pt;}
.yc_c00361{bottom:847.333333pt;}
.y41_c00361{bottom:847.466667pt;}
.y40_c00361{bottom:863.200000pt;}
.yb_c00361{bottom:870.400000pt;}
.y3f_c00361{bottom:879.200000pt;}
.ya_c00361{bottom:889.866667pt;}
.y3e_c00361{bottom:895.200000pt;}
.y9_c00361{bottom:909.733333pt;}
.y3d_c00361{bottom:911.200000pt;}
.y8_c00361{bottom:926.666667pt;}
.y3c_c00361{bottom:927.200000pt;}
.y7_c00361{bottom:942.933333pt;}
.y3b_c00361{bottom:943.200000pt;}
.y6_c00361{bottom:958.666667pt;}
.y3a_c00361{bottom:959.200000pt;}
.y5_c00361{bottom:974.400000pt;}
.y39_c00361{bottom:974.933333pt;}
.y38_c00361{bottom:990.933333pt;}
.y4_c00361{bottom:991.066667pt;}
.y3_c00361{bottom:1006.400000pt;}
.y37_c00361{bottom:1006.666667pt;}
.y1_c00361{bottom:1027.466667pt;}
.y2_c00361{bottom:1030.400000pt;}
.h6_c00361{height:48.000000pt;}
.h5_c00361{height:53.333333pt;}
.h4_c00361{height:58.666667pt;}
.h7_c00361{height:64.000000pt;}
.h2_c00361{height:69.333333pt;}
.h3_c00361{height:101.333333pt;}
.h0_c00361{height:1135.040039pt;}
.h1_c00361{height:1135.333333pt;}
.w0_c00361{width:853.760009pt;}
.w1_c00361{width:854.000000pt;}
.x0_c00361{left:0.000000pt;}
.x1_c00361{left:166.400000pt;}
.x2f_c00361{left:167.733333pt;}
.x95_c00361{left:176.266667pt;}
.x65_c00361{left:178.533333pt;}
.x6f_c00361{left:179.866667pt;}
.x9d_c00361{left:181.066667pt;}
.x12_c00361{left:182.800000pt;}
.x3_c00361{left:183.733333pt;}
.x98_c00361{left:184.933333pt;}
.x9e_c00361{left:188.400000pt;}
.x68_c00361{left:191.600000pt;}
.x48_c00361{left:192.533333pt;}
.x79_c00361{left:193.600000pt;}
.x36_c00361{left:199.066667pt;}
.x13_c00361{left:201.733333pt;}
.x9f_c00361{left:203.866667pt;}
.x32_c00361{left:205.200000pt;}
.x37_c00361{left:207.066667pt;}
.x4f_c00361{left:209.866667pt;}
.x7b_c00361{left:210.800000pt;}
.x28_c00361{left:212.133333pt;}
.x1c_c00361{left:213.600000pt;}
.x3f_c00361{left:214.533333pt;}
.x87_c00361{left:215.866667pt;}
.x4e_c00361{left:217.066667pt;}
.x30_c00361{left:219.600000pt;}
.x1d_c00361{left:222.533333pt;}
.x53_c00361{left:225.466667pt;}
.x31_c00361{left:227.600000pt;}
.x25_c00361{left:229.333333pt;}
.x2d_c00361{left:230.933333pt;}
.x70_c00361{left:232.666667pt;}
.x14_c00361{left:233.733333pt;}
.x81_c00361{left:235.200000pt;}
.x33_c00361{left:238.533333pt;}
.x38_c00361{left:242.533333pt;}
.x99_c00361{left:243.466667pt;}
.x7c_c00361{left:245.733333pt;}
.xc_c00361{left:247.333333pt;}
.x8d_c00361{left:248.533333pt;}
.x5b_c00361{left:249.600000pt;}
.x93_c00361{left:250.800000pt;}
.xa2_c00361{left:251.866667pt;}
.x1e_c00361{left:254.266667pt;}
.x15_c00361{left:255.200000pt;}
.x40_c00361{left:258.400000pt;}
.x29_c00361{left:260.133333pt;}
.x6d_c00361{left:261.866667pt;}
.xd_c00361{left:263.066667pt;}
.x5c_c00361{left:265.333333pt;}
.x4_c00361{left:267.866667pt;}
.x50_c00361{left:270.400000pt;}
.x5f_c00361{left:272.533333pt;}
.x1f_c00361{left:273.733333pt;}
.x4b_c00361{left:275.333333pt;}
.xe_c00361{left:277.466667pt;}
.x7d_c00361{left:279.600000pt;}
.x39_c00361{left:280.666667pt;}
.x6b_c00361{left:283.333333pt;}
.x88_c00361{left:284.666667pt;}
.x2a_c00361{left:286.000000pt;}
.x20_c00361{left:287.466667pt;}
.x96_c00361{left:290.266667pt;}
.x9a_c00361{left:291.200000pt;}
.x49_c00361{left:293.333333pt;}
.x44_c00361{left:295.600000pt;}
.x5_c00361{left:296.933333pt;}
.x16_c00361{left:298.133333pt;}
.x8e_c00361{left:299.466667pt;}
.xa0_c00361{left:300.800000pt;}
.x82_c00361{left:304.266667pt;}
.xf_c00361{left:305.600000pt;}
.x41_c00361{left:306.666667pt;}
.x60_c00361{left:307.733333pt;}
.x6c_c00361{left:311.200000pt;}
.x97_c00361{left:312.933333pt;}
.x3a_c00361{left:314.933333pt;}
.x6_c00361{left:316.800000pt;}
.x7e_c00361{left:318.666667pt;}
.x54_c00361{left:321.466667pt;}
.x26_c00361{left:323.733333pt;}
.x45_c00361{left:325.066667pt;}
.x74_c00361{left:327.600000pt;}
.x21_c00361{left:328.800000pt;}
.x17_c00361{left:330.133333pt;}
.x90_c00361{left:331.466667pt;}
.x34_c00361{left:333.200000pt;}
.x4a_c00361{left:334.933333pt;}
.x89_c00361{left:335.866667pt;}
.x51_c00361{left:336.933333pt;}
.x46_c00361{left:339.733333pt;}
.x75_c00361{left:340.666667pt;}
.x2b_c00361{left:343.600000pt;}
.x56_c00361{left:345.200000pt;}
.x42_c00361{left:347.733333pt;}
.x83_c00361{left:349.333333pt;}
.x3c_c00361{left:352.533333pt;}
.x7_c00361{left:354.266667pt;}
.x57_c00361{left:355.733333pt;}
.x27_c00361{left:357.066667pt;}
.x18_c00361{left:358.000000pt;}
.x76_c00361{left:359.866667pt;}
.x61_c00361{left:361.866667pt;}
.xa1_c00361{left:363.733333pt;}
.x3d_c00361{left:364.666667pt;}
.x77_c00361{left:366.266667pt;}
.x4c_c00361{left:367.200000pt;}
.x8f_c00361{left:368.266667pt;}
.x91_c00361{left:369.866667pt;}
.x55_c00361{left:370.800000pt;}
.x10_c00361{left:372.266667pt;}
.x52_c00361{left:373.733333pt;}
.x58_c00361{left:374.666667pt;}
.x62_c00361{left:376.266667pt;}
.x8a_c00361{left:377.200000pt;}
.x19_c00361{left:378.133333pt;}
.x6e_c00361{left:380.133333pt;}
.x84_c00361{left:382.000000pt;}
.x8_c00361{left:384.400000pt;}
.x2_c00361{left:385.600000pt;}
.x71_c00361{left:387.200000pt;}
.x22_c00361{left:388.266667pt;}
.x5d_c00361{left:389.200000pt;}
.x35_c00361{left:391.733333pt;}
.x43_c00361{left:393.466667pt;}
.x63_c00361{left:394.800000pt;}
.x3b_c00361{left:396.533333pt;}
.x8b_c00361{left:399.200000pt;}
.x9_c00361{left:400.666667pt;}
.x85_c00361{left:401.733333pt;}
.x69_c00361{left:402.800000pt;}
.x66_c00361{left:403.733333pt;}
.x23_c00361{left:405.866667pt;}
.x92_c00361{left:407.600000pt;}
.x59_c00361{left:409.866667pt;}
.x2e_c00361{left:411.733333pt;}
.xa3_c00361{left:413.466667pt;}
.x2c_c00361{left:415.866667pt;}
.x1a_c00361{left:419.066667pt;}
.x7f_c00361{left:420.133333pt;}
.x11_c00361{left:421.200000pt;}
.x47_c00361{left:422.266667pt;}
.x3e_c00361{left:424.800000pt;}
.x9b_c00361{left:427.466667pt;}
.x67_c00361{left:428.666667pt;}
.x6a_c00361{left:429.733333pt;}
.x72_c00361{left:430.800000pt;}
.x5e_c00361{left:432.933333pt;}
.x8c_c00361{left:434.133333pt;}
.xa_c00361{left:435.866667pt;}
.x80_c00361{left:437.066667pt;}
.x24_c00361{left:438.533333pt;}
.x94_c00361{left:440.400000pt;}
.x7a_c00361{left:443.466667pt;}
.x4d_c00361{left:445.600000pt;}
.x86_c00361{left:447.866667pt;}
.x64_c00361{left:452.933333pt;}
.x1b_c00361{left:454.533333pt;}
.x73_c00361{left:455.466667pt;}
.x78_c00361{left:456.666667pt;}
.xb_c00361{left:458.266667pt;}
.x5a_c00361{left:460.133333pt;}
.x9c_c00361{left:464.933333pt;}
.x129_c00361{left:485.733333pt;}
.x135_c00361{left:487.733333pt;}
.x13f_c00361{left:492.133333pt;}
.xf5_c00361{left:496.666667pt;}
.xcb_c00361{left:500.800000pt;}
.xa4_c00361{left:501.733333pt;}
.x144_c00361{left:502.666667pt;}
.x116_c00361{left:515.866667pt;}
.xfa_c00361{left:517.200000pt;}
.x120_c00361{left:518.666667pt;}
.xa5_c00361{left:520.266667pt;}
.x119_c00361{left:521.733333pt;}
.xc7_c00361{left:522.800000pt;}
.x136_c00361{left:525.466667pt;}
.x10a_c00361{left:529.466667pt;}
.xf6_c00361{left:534.133333pt;}
.xd3_c00361{left:536.400000pt;}
.xdc_c00361{left:537.333333pt;}
.x12a_c00361{left:538.266667pt;}
.xe2_c00361{left:539.333333pt;}
.xd8_c00361{left:541.600000pt;}
.x11e_c00361{left:542.533333pt;}
.x102_c00361{left:544.133333pt;}
.xf1_c00361{left:545.866667pt;}
.x138_c00361{left:547.200000pt;}
.xd4_c00361{left:548.266667pt;}
.xe3_c00361{left:549.600000pt;}
.xf7_c00361{left:550.800000pt;}
.x103_c00361{left:552.133333pt;}
.x110_c00361{left:555.200000pt;}
.xbb_c00361{left:556.933333pt;}
.xcc_c00361{left:558.666667pt;}
.x124_c00361{left:560.666667pt;}
.xc8_c00361{left:562.533333pt;}
.xe4_c00361{left:563.733333pt;}
.x12b_c00361{left:565.200000pt;}
.xb6_c00361{left:566.133333pt;}
.xae_c00361{left:567.600000pt;}
.xa6_c00361{left:568.933333pt;}
.x11a_c00361{left:570.666667pt;}
.xc1_c00361{left:572.266667pt;}
.x140_c00361{left:573.733333pt;}
.x12d_c00361{left:575.333333pt;}
.xcd_c00361{left:576.266667pt;}
.xa7_c00361{left:577.200000pt;}
.xdd_c00361{left:580.533333pt;}
.x11f_c00361{left:582.800000pt;}
.xd9_c00361{left:585.066667pt;}
.xd5_c00361{left:586.400000pt;}
.xaf_c00361{left:587.466667pt;}
.xeb_c00361{left:589.733333pt;}
.x141_c00361{left:590.666667pt;}
.xe5_c00361{left:591.600000pt;}
.x100_c00361{left:592.533333pt;}
.x111_c00361{left:593.866667pt;}
.xa8_c00361{left:594.800000pt;}
.x104_c00361{left:595.733333pt;}
.xbc_c00361{left:596.666667pt;}
.xc9_c00361{left:598.000000pt;}
.x10b_c00361{left:602.133333pt;}
.xb0_c00361{left:603.733333pt;}
.xe6_c00361{left:606.266667pt;}
.xce_c00361{left:607.600000pt;}
.xa9_c00361{left:609.200000pt;}
.xfe_c00361{left:610.533333pt;}
.x126_c00361{left:611.466667pt;}
.xb7_c00361{left:613.466667pt;}
.xfb_c00361{left:614.666667pt;}
.xf2_c00361{left:616.933333pt;}
.x10c_c00361{left:622.000000pt;}
.x13b_c00361{left:623.466667pt;}
.x115_c00361{left:624.666667pt;}
.xf8_c00361{left:626.266667pt;}
.xec_c00361{left:628.133333pt;}
.x125_c00361{left:629.466667pt;}
.xb8_c00361{left:631.333333pt;}
.xbd_c00361{left:632.533333pt;}
.x105_c00361{left:633.466667pt;}
.x143_c00361{left:635.200000pt;}
.xde_c00361{left:636.533333pt;}
.x137_c00361{left:638.666667pt;}
.xed_c00361{left:640.000000pt;}
.xb1_c00361{left:642.133333pt;}
.x128_c00361{left:645.200000pt;}
.x12c_c00361{left:646.133333pt;}
.xca_c00361{left:649.866667pt;}
.x10d_c00361{left:651.733333pt;}
.xfc_c00361{left:653.733333pt;}
.xdf_c00361{left:654.800000pt;}
.xe7_c00361{left:656.133333pt;}
.xda_c00361{left:658.266667pt;}
.xb2_c00361{left:659.466667pt;}
.xc2_c00361{left:661.600000pt;}
.xaa_c00361{left:662.666667pt;}
.x10e_c00361{left:663.600000pt;}
.x114_c00361{left:666.266667pt;}
.x112_c00361{left:668.000000pt;}
.x117_c00361{left:668.933333pt;}
.xcf_c00361{left:670.000000pt;}
.x13d_c00361{left:671.066667pt;}
.xd6_c00361{left:672.800000pt;}
.xf3_c00361{left:674.266667pt;}
.xee_c00361{left:676.133333pt;}
.x121_c00361{left:677.733333pt;}
.xc3_c00361{left:680.133333pt;}
.x118_c00361{left:682.000000pt;}
.x11b_c00361{left:683.333333pt;}
.xd0_c00361{left:685.733333pt;}
.xe8_c00361{left:687.466667pt;}
.x101_c00361{left:688.533333pt;}
.xb9_c00361{left:689.866667pt;}
.x12e_c00361{left:690.933333pt;}
.xf4_c00361{left:691.866667pt;}
.x106_c00361{left:693.600000pt;}
.x122_c00361{left:694.666667pt;}
.x142_c00361{left:696.400000pt;}
.x13e_c00361{left:697.600000pt;}
.xef_c00361{left:699.866667pt;}
.xbe_c00361{left:702.266667pt;}
.x11c_c00361{left:703.866667pt;}
.xb3_c00361{left:706.533333pt;}
.x107_c00361{left:709.333333pt;}
.xe9_c00361{left:710.800000pt;}
.x12f_c00361{left:712.000000pt;}
.x132_c00361{left:714.933333pt;}
.xba_c00361{left:717.333333pt;}
.xc4_c00361{left:721.066667pt;}
.xff_c00361{left:722.800000pt;}
.x113_c00361{left:724.666667pt;}
.xd7_c00361{left:726.266667pt;}
.xb4_c00361{left:728.000000pt;}
.xbf_c00361{left:730.133333pt;}
.xab_c00361{left:732.133333pt;}
.xd1_c00361{left:734.000000pt;}
.xf0_c00361{left:736.666667pt;}
.x139_c00361{left:740.266667pt;}
.xe0_c00361{left:741.866667pt;}
.xc5_c00361{left:744.133333pt;}
.xb5_c00361{left:745.333333pt;}
.xfd_c00361{left:746.266667pt;}
.xf9_c00361{left:747.600000pt;}
.xac_c00361{left:749.733333pt;}
.xe1_c00361{left:752.133333pt;}
.x133_c00361{left:753.600000pt;}
.x130_c00361{left:756.533333pt;}
.xea_c00361{left:757.466667pt;}
.x108_c00361{left:759.200000pt;}
.x10f_c00361{left:761.600000pt;}
.xd2_c00361{left:763.066667pt;}
.x134_c00361{left:764.133333pt;}
.xad_c00361{left:765.066667pt;}
.x11d_c00361{left:766.000000pt;}
.x127_c00361{left:767.200000pt;}
.x109_c00361{left:768.800000pt;}
.xdb_c00361{left:770.266667pt;}
.x131_c00361{left:772.533333pt;}
.x123_c00361{left:774.400000pt;}
.x13c_c00361{left:775.466667pt;}
.x13a_c00361{left:776.400000pt;}
.xc6_c00361{left:777.466667pt;}
.x145_c00361{left:778.800000pt;}
.xc0_c00361{left:784.800000pt;}
}





/* 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_c00362 {
    display:none;
  }
  .loading-indicator_c00362.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00362 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_c00362 { 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_c00362" -> "#page-container .classname_c00362")
 */
.pf_c00362 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00362 { /* 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_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00362 { /* 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_c00362 { /* 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_c00362 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00362 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00362 {overflow:visible;}
  }
}
.c_c00362 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00362 { /* 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_c00362:after { /* webkit #35443 */
  content: '';
}
.t_c00362:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00362 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 */
}
.__c00362 { /* 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_c00362 { /* info for Javascript */
  display:none;
}
.l_c00362 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00362 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00362 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00362: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_c00362 {
    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_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00362.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_c00362 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00362;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.000000;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;}
.m6b_c00362{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00362{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.md9_c00362{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.maf_c00362{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00362{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00362{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m72_c00362{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00362{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m43_c00362{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m39_c00362{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.md5_c00362{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.md_c00362{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m80_c00362{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.md4_c00362{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m23_c00362{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00362{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m84_c00362{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.md1_c00362{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m19_c00362{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.meb_c00362{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m81_c00362{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m55_c00362{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m12_c00362{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mff_c00362{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00362{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00362{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m108_c00362{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m45_c00362{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m63_c00362{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00362{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00362{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m73_c00362{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00362{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00362{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me1_c00362{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m51_c00362{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00362{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m107_c00362{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m67_c00362{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m44_c00362{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m94_c00362{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m66_c00362{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m95_c00362{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00362{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00362{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00362{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.me9_c00362{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m46_c00362{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m32_c00362{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00362{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m87_c00362{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m97_c00362{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me5_c00362{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.me3_c00362{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00362{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00362{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m91_c00362{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00362{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00362{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00362{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m27_c00362{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00362{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00362{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.me_c00362{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00362{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me4_c00362{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m40_c00362{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00362{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m41_c00362{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mab_c00362{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m49_c00362{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00362{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m62_c00362{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.maa_c00362{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.me8_c00362{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00362{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m57_c00362{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m29_c00362{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m89_c00362{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m102_c00362{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.md2_c00362{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00362{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00362{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00362{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mba_c00362{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00362{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mca_c00362{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00362{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00362{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8_c00362{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md0_c00362{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m58_c00362{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mde_c00362{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00362{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m71_c00362{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m47_c00362{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00362{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00362{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00362{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00362{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00362{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mae_c00362{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m25_c00362{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mb_c00362{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m74_c00362{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m28_c00362{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me7_c00362{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00362{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m93_c00362{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m52_c00362{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf_c00362{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00362{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00362{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00362{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m77_c00362{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00362{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00362{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m48_c00362{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00362{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m92_c00362{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me0_c00362{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m17_c00362{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00362{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m42_c00362{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00362{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00362{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00362{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00362{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00362{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00362{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m22_c00362{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m33_c00362{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00362{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m26_c00362{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00362{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00362{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00362{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00362{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00362{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00362{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00362{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m9_c00362{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mea_c00362{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00362{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00362{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00362{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m106_c00362{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc_c00362{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00362{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md6_c00362{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.med_c00362{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m90_c00362{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m70_c00362{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m50_c00362{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma_c00362{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m88_c00362{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m61_c00362{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00362{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m96_c00362{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00362{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00362{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00362{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m36_c00362{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00362{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mad_c00362{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00362{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m105_c00362{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00362{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m14_c00362{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m20_c00362{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00362{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00362{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m24_c00362{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m103_c00362{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.me6_c00362{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md3_c00362{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00362{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00362{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mda_c00362{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00362{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00362{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m79_c00362{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00362{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m10_c00362{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m11_c00362{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00362{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00362{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00362{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m86_c00362{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m59_c00362{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00362{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m13_c00362{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00362{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00362{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m69_c00362{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00362{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00362{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md7_c00362{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00362{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00362{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00362{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00362{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m18_c00362{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m21_c00362{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00362{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00362{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mce_c00362{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00362{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00362{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m65_c00362{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00362{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m16_c00362{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00362{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.md8_c00362{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00362{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00362{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00362{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00362{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m76_c00362{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m99_c00362{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00362{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00362{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m15_c00362{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m83_c00362{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m54_c00362{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m38_c00362{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00362{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m37_c00362{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m101_c00362{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00362{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);}
.m4e_c00362{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00362{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00362{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m98_c00362{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00362{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00362{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6_c00362{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00362{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m53_c00362{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me2_c00362{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m34_c00362{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00362{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m78_c00362{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m75_c00362{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mac_c00362{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m7_c00362{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m85_c00362{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mec_c00362{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00362{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00362{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mef_c00362{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m68_c00362{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m64_c00362{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m109_c00362{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m31_c00362{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00362{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m2_c00362{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m82_c00362{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m56_c00362{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00362{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00362{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m30_c00362{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m104_c00362{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mee_c00362{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m3_c00362{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00362{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m100_c00362{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m4_c00362{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m5_c00362{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m60_c00362{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls0_c00362{letter-spacing:0.000000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{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__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00362{word-spacing:-2.702703px;}
.ws4_c00362{word-spacing:0.000000px;}
.ws2_c00362{word-spacing:3.142857px;}
.ws3_c00362{word-spacing:16.568807px;}
.ws0_c00362{word-spacing:216.088845px;}
.fc0_c00362{color:transparent;}
.fs6_c00362{font-size:30.000000px;}
.fs5_c00362{font-size:54.000000px;}
.fs3_c00362{font-size:60.000000px;}
.fs2_c00362{font-size:66.000000px;}
.fs4_c00362{font-size:72.000000px;}
.fs1_c00362{font-size:78.000000px;}
.fs0_c00362{font-size:84.000000px;}
.y0_c00362{bottom:0.000000px;}
.y35_c00362{bottom:190.350000px;}
.y67_c00362{bottom:192.900000px;}
.y34_c00362{bottom:209.100000px;}
.y66_c00362{bottom:213.150000px;}
.y33_c00362{bottom:227.100000px;}
.y65_c00362{bottom:228.300000px;}
.y32_c00362{bottom:245.100000px;}
.y64_c00362{bottom:248.400000px;}
.y31_c00362{bottom:263.100000px;}
.y63_c00362{bottom:266.700000px;}
.y30_c00362{bottom:281.100000px;}
.y62_c00362{bottom:285.000000px;}
.y2f_c00362{bottom:299.100000px;}
.y61_c00362{bottom:302.700000px;}
.y2e_c00362{bottom:317.100000px;}
.y60_c00362{bottom:320.700000px;}
.y2d_c00362{bottom:335.100000px;}
.y5f_c00362{bottom:338.400000px;}
.y2c_c00362{bottom:352.800000px;}
.y5e_c00362{bottom:359.400000px;}
.y2b_c00362{bottom:371.100000px;}
.y5d_c00362{bottom:378.450000px;}
.y2a_c00362{bottom:388.800000px;}
.y5c_c00362{bottom:396.450000px;}
.y29_c00362{bottom:406.800000px;}
.y5b_c00362{bottom:417.300000px;}
.y28_c00362{bottom:424.500000px;}
.y5a_c00362{bottom:435.600000px;}
.y27_c00362{bottom:442.500000px;}
.y26_c00362{bottom:460.500000px;}
.y59_c00362{bottom:465.900000px;}
.y25_c00362{bottom:478.200000px;}
.y58_c00362{bottom:484.200000px;}
.y24_c00362{bottom:496.200000px;}
.y57_c00362{bottom:502.200000px;}
.y23_c00362{bottom:514.500000px;}
.y56_c00362{bottom:520.200000px;}
.y22_c00362{bottom:532.500000px;}
.y55_c00362{bottom:546.900000px;}
.y21_c00362{bottom:550.200000px;}
.y54_c00362{bottom:565.200000px;}
.y20_c00362{bottom:568.500000px;}
.y53_c00362{bottom:583.500000px;}
.y1f_c00362{bottom:588.600000px;}
.y52_c00362{bottom:601.200000px;}
.y1e_c00362{bottom:604.800000px;}
.y1d_c00362{bottom:619.200000px;}
.y1c_c00362{bottom:632.550000px;}
.y51_c00362{bottom:637.200000px;}
.y1b_c00362{bottom:649.050000px;}
.y50_c00362{bottom:655.500000px;}
.y1a_c00362{bottom:671.850000px;}
.y4f_c00362{bottom:673.200000px;}
.y4e_c00362{bottom:680.400000px;}
.y19_c00362{bottom:690.150000px;}
.y4d_c00362{bottom:694.950000px;}
.y18_c00362{bottom:708.150000px;}
.y4c_c00362{bottom:713.250000px;}
.y17_c00362{bottom:726.150000px;}
.y4b_c00362{bottom:731.550000px;}
.y16_c00362{bottom:744.150000px;}
.y4a_c00362{bottom:749.250000px;}
.y15_c00362{bottom:765.450000px;}
.y49_c00362{bottom:766.950000px;}
.y14_c00362{bottom:784.200000px;}
.y48_c00362{bottom:785.250000px;}
.y13_c00362{bottom:802.200000px;}
.y47_c00362{bottom:803.250000px;}
.y12_c00362{bottom:820.200000px;}
.y46_c00362{bottom:821.250000px;}
.y11_c00362{bottom:838.200000px;}
.y45_c00362{bottom:839.250000px;}
.y10_c00362{bottom:856.500000px;}
.y44_c00362{bottom:856.950000px;}
.yf_c00362{bottom:873.750000px;}
.y43_c00362{bottom:874.650000px;}
.y42_c00362{bottom:892.650000px;}
.ye_c00362{bottom:896.100000px;}
.y41_c00362{bottom:910.650000px;}
.yd_c00362{bottom:927.900000px;}
.y40_c00362{bottom:928.650000px;}
.yc_c00362{bottom:931.800000px;}
.y3f_c00362{bottom:946.350000px;}
.yb_c00362{bottom:950.100000px;}
.y3e_c00362{bottom:964.350000px;}
.y3d_c00362{bottom:982.050000px;}
.ya_c00362{bottom:984.900000px;}
.y3c_c00362{bottom:1000.050000px;}
.y9_c00362{bottom:1007.100000px;}
.y3b_c00362{bottom:1023.000000px;}
.y8_c00362{bottom:1025.100000px;}
.y3a_c00362{bottom:1040.700000px;}
.y7_c00362{bottom:1043.100000px;}
.y39_c00362{bottom:1058.700000px;}
.y6_c00362{bottom:1060.800000px;}
.y38_c00362{bottom:1076.400000px;}
.y5_c00362{bottom:1078.800000px;}
.y37_c00362{bottom:1094.700000px;}
.y4_c00362{bottom:1096.500000px;}
.y36_c00362{bottom:1112.700000px;}
.y3_c00362{bottom:1114.500000px;}
.y2_c00362{bottom:1137.000000px;}
.y1_c00362{bottom:1140.900000px;}
.h8_c00362{height:30.000000px;}
.h7_c00362{height:54.000000px;}
.h5_c00362{height:60.000000px;}
.h4_c00362{height:66.000000px;}
.h6_c00362{height:72.000000px;}
.h3_c00362{height:78.000000px;}
.h2_c00362{height:84.000000px;}
.h0_c00362{height:1272.600036px;}
.h1_c00362{height:1272.750000px;}
.w0_c00362{width:960.480010px;}
.w1_c00362{width:960.750000px;}
.x0_c00362{left:0.000000px;}
.x38_c00362{left:73.800000px;}
.x44_c00362{left:74.850000px;}
.x85_c00362{left:79.950000px;}
.x3a_c00362{left:82.500000px;}
.x6e_c00362{left:88.050000px;}
.xa0_c00362{left:89.250000px;}
.x7f_c00362{left:90.300000px;}
.x9_c00362{left:91.500000px;}
.x29_c00362{left:92.550000px;}
.x8e_c00362{left:100.350000px;}
.x73_c00362{left:103.350000px;}
.x37_c00362{left:109.050000px;}
.x4a_c00362{left:110.850000px;}
.x12_c00362{left:116.400000px;}
.x5f_c00362{left:119.400000px;}
.x21_c00362{left:121.650000px;}
.x89_c00362{left:124.500000px;}
.x42_c00362{left:125.550000px;}
.x2a_c00362{left:126.750000px;}
.x13_c00362{left:127.950000px;}
.x66_c00362{left:130.950000px;}
.xa1_c00362{left:132.150000px;}
.xa_c00362{left:134.400000px;}
.x6c_c00362{left:135.750000px;}
.x1a_c00362{left:138.150000px;}
.x8c_c00362{left:139.350000px;}
.x77_c00362{left:141.000000px;}
.x51_c00362{left:142.500000px;}
.x2b_c00362{left:145.500000px;}
.x31_c00362{left:147.600000px;}
.x93_c00362{left:149.700000px;}
.x45_c00362{left:151.200000px;}
.x39_c00362{left:153.000000px;}
.x62_c00362{left:155.700000px;}
.x54_c00362{left:158.100000px;}
.x74_c00362{left:159.150000px;}
.x5a_c00362{left:163.650000px;}
.x8f_c00362{left:165.150000px;}
.xb_c00362{left:167.100000px;}
.x2c_c00362{left:169.200000px;}
.xa2_c00362{left:170.700000px;}
.x6f_c00362{left:171.900000px;}
.x97_c00362{left:174.300000px;}
.x4b_c00362{left:175.650000px;}
.x67_c00362{left:179.550000px;}
.x90_c00362{left:181.050000px;}
.x3d_c00362{left:182.700000px;}
.x14_c00362{left:184.800000px;}
.x4f_c00362{left:186.000000px;}
.x7b_c00362{left:189.000000px;}
.x1b_c00362{left:191.100000px;}
.x7d_c00362{left:192.750000px;}
.x70_c00362{left:193.800000px;}
.x52_c00362{left:195.750000px;}
.x3b_c00362{left:196.950000px;}
.x22_c00362{left:199.800000px;}
.x6d_c00362{left:200.850000px;}
.x69_c00362{left:202.200000px;}
.xc_c00362{left:206.700000px;}
.x75_c00362{left:208.800000px;}
.x8d_c00362{left:210.150000px;}
.x94_c00362{left:213.750000px;}
.x5c_c00362{left:214.950000px;}
.x2d_c00362{left:216.000000px;}
.x5e_c00362{left:217.650000px;}
.x23_c00362{left:220.350000px;}
.x32_c00362{left:221.700000px;}
.x50_c00362{left:223.050000px;}
.x4c_c00362{left:227.250000px;}
.x15_c00362{left:229.500000px;}
.x98_c00362{left:231.150000px;}
.x33_c00362{left:232.200000px;}
.x9a_c00362{left:236.100000px;}
.x46_c00362{left:237.600000px;}
.x9d_c00362{left:238.650000px;}
.x60_c00362{left:240.000000px;}
.x7c_c00362{left:243.000000px;}
.xd_c00362{left:244.200000px;}
.x80_c00362{left:245.550000px;}
.x71_c00362{left:246.750000px;}
.x87_c00362{left:248.100000px;}
.x16_c00362{left:250.350000px;}
.x4d_c00362{left:252.450000px;}
.x43_c00362{left:253.650000px;}
.x3e_c00362{left:256.200000px;}
.x24_c00362{left:258.150000px;}
.x1c_c00362{left:262.350000px;}
.x8a_c00362{left:263.700000px;}
.x81_c00362{left:266.100000px;}
.x34_c00362{left:267.150000px;}
.x25_c00362{left:268.950000px;}
.xe_c00362{left:270.150000px;}
.x78_c00362{left:271.650000px;}
.x55_c00362{left:273.300000px;}
.x3f_c00362{left:275.250000px;}
.x91_c00362{left:276.750000px;}
.xf_c00362{left:281.250000px;}
.x63_c00362{left:283.050000px;}
.x95_c00362{left:285.000000px;}
.x17_c00362{left:286.050000px;}
.xa3_c00362{left:287.250000px;}
.x47_c00362{left:289.050000px;}
.x2e_c00362{left:290.400000px;}
.x9e_c00362{left:291.600000px;}
.x6a_c00362{left:292.950000px;}
.x5b_c00362{left:295.800000px;}
.xa4_c00362{left:298.050000px;}
.x48_c00362{left:300.900000px;}
.x9b_c00362{left:302.400000px;}
.x1d_c00362{left:303.750000px;}
.x18_c00362{left:305.100000px;}
.x40_c00362{left:307.650000px;}
.x56_c00362{left:309.600000px;}
.x82_c00362{left:313.950000px;}
.x96_c00362{left:315.900000px;}
.x1_c00362{left:317.850000px;}
.x9f_c00362{left:318.900000px;}
.x86_c00362{left:321.900000px;}
.x88_c00362{left:322.950000px;}
.x7a_c00362{left:324.750000px;}
.x26_c00362{left:326.250000px;}
.x1e_c00362{left:328.650000px;}
.x2f_c00362{left:331.500000px;}
.x9c_c00362{left:333.300000px;}
.x10_c00362{left:335.250000px;}
.x61_c00362{left:338.250000px;}
.x5d_c00362{left:340.500000px;}
.x76_c00362{left:341.550000px;}
.x41_c00362{left:343.350000px;}
.x64_c00362{left:345.300000px;}
.x57_c00362{left:346.650000px;}
.x27_c00362{left:347.850000px;}
.x35_c00362{left:351.000000px;}
.x49_c00362{left:352.800000px;}
.x79_c00362{left:353.850000px;}
.x83_c00362{left:355.050000px;}
.x3c_c00362{left:358.350000px;}
.x2_c00362{left:360.000000px;}
.x30_c00362{left:363.600000px;}
.x1f_c00362{left:364.650000px;}
.x92_c00362{left:366.450000px;}
.x6b_c00362{left:368.550000px;}
.x58_c00362{left:370.350000px;}
.x99_c00362{left:373.200000px;}
.x53_c00362{left:374.850000px;}
.x11_c00362{left:375.900000px;}
.x65_c00362{left:378.750000px;}
.x8b_c00362{left:379.950000px;}
.x3_c00362{left:382.650000px;}
.x4e_c00362{left:384.900000px;}
.x36_c00362{left:387.300000px;}
.x20_c00362{left:388.800000px;}
.x84_c00362{left:390.750000px;}
.x59_c00362{left:391.950000px;}
.x7e_c00362{left:395.250000px;}
.x72_c00362{left:397.500000px;}
.x28_c00362{left:398.550000px;}
.x68_c00362{left:407.400000px;}
.x19_c00362{left:409.500000px;}
.x4_c00362{left:426.600000px;}
.x13f_c00362{left:428.700000px;}
.x137_c00362{left:429.900000px;}
.x12c_c00362{left:431.700000px;}
.x115_c00362{left:433.500000px;}
.x142_c00362{left:442.800000px;}
.x13a_c00362{left:446.400000px;}
.x5_c00362{left:447.900000px;}
.x122_c00362{left:449.400000px;}
.xf8_c00362{left:450.450000px;}
.xa5_c00362{left:451.500000px;}
.x138_c00362{left:454.050000px;}
.xd6_c00362{left:462.150000px;}
.x134_c00362{left:466.200000px;}
.x6_c00362{left:469.500000px;}
.x127_c00362{left:472.200000px;}
.xc5_c00362{left:473.550000px;}
.x123_c00362{left:476.700000px;}
.xb5_c00362{left:477.900000px;}
.xe4_c00362{left:479.850000px;}
.xbb_c00362{left:481.200000px;}
.x117_c00362{left:484.650000px;}
.xdf_c00362{left:485.850000px;}
.xfe_c00362{left:487.950000px;}
.xcc_c00362{left:489.300000px;}
.x131_c00362{left:490.950000px;}
.x7_c00362{left:492.150000px;}
.xf0_c00362{left:493.950000px;}
.x106_c00362{left:495.450000px;}
.xd7_c00362{left:497.400000px;}
.x13e_c00362{left:498.600000px;}
.xe5_c00362{left:499.650000px;}
.xf2_c00362{left:500.850000px;}
.xe0_c00362{left:502.050000px;}
.x111_c00362{left:505.200000px;}
.xcd_c00362{left:508.350000px;}
.xaf_c00362{left:510.750000px;}
.xa6_c00362{left:514.500000px;}
.x132_c00362{left:516.600000px;}
.x102_c00362{left:519.300000px;}
.x11c_c00362{left:523.800000px;}
.xa7_c00362{left:525.600000px;}
.x107_c00362{left:527.850000px;}
.x112_c00362{left:530.700000px;}
.x10d_c00362{left:531.750000px;}
.xbc_c00362{left:534.150000px;}
.x103_c00362{left:535.800000px;}
.xc6_c00362{left:537.750000px;}
.x128_c00362{left:539.400000px;}
.x10e_c00362{left:540.450000px;}
.xa8_c00362{left:541.500000px;}
.xd1_c00362{left:543.900000px;}
.xbd_c00362{left:545.700000px;}
.xb0_c00362{left:547.050000px;}
.x140_c00362{left:549.300000px;}
.xe1_c00362{left:550.350000px;}
.x124_c00362{left:551.550000px;}
.xdb_c00362{left:552.750000px;}
.x13b_c00362{left:558.000000px;}
.x120_c00362{left:559.050000px;}
.xbe_c00362{left:560.400000px;}
.x10f_c00362{left:562.350000px;}
.xff_c00362{left:563.850000px;}
.xe6_c00362{left:566.250000px;}
.xf3_c00362{left:568.200000px;}
.xce_c00362{left:570.600000px;}
.xc7_c00362{left:573.450000px;}
.xeb_c00362{left:574.950000px;}
.xa9_c00362{left:576.750000px;}
.xe7_c00362{left:582.450000px;}
.x139_c00362{left:584.100000px;}
.x100_c00362{left:587.250000px;}
.xcf_c00362{left:590.700000px;}
.x104_c00362{left:592.650000px;}
.x110_c00362{left:594.450000px;}
.xc8_c00362{left:596.550000px;}
.xd2_c00362{left:599.700000px;}
.x10b_c00362{left:601.050000px;}
.xd8_c00362{left:602.100000px;}
.x129_c00362{left:603.150000px;}
.xb6_c00362{left:604.200000px;}
.xfb_c00362{left:605.700000px;}
.x13c_c00362{left:609.300000px;}
.xbf_c00362{left:611.550000px;}
.xf4_c00362{left:613.200000px;}
.x11d_c00362{left:615.450000px;}
.x12a_c00362{left:618.600000px;}
.xdc_c00362{left:619.650000px;}
.x105_c00362{left:621.000000px;}
.xd3_c00362{left:622.350000px;}
.x141_c00362{left:623.550000px;}
.xb7_c00362{left:625.500000px;}
.xfc_c00362{left:626.550000px;}
.xd0_c00362{left:630.300000px;}
.xaa_c00362{left:632.850000px;}
.x119_c00362{left:634.050000px;}
.xb1_c00362{left:635.250000px;}
.xf5_c00362{left:636.900000px;}
.xf9_c00362{left:638.100000px;}
.x12b_c00362{left:639.150000px;}
.xf1_c00362{left:642.000000px;}
.x125_c00362{left:643.500000px;}
.xc0_c00362{left:648.300000px;}
.xe8_c00362{left:649.350000px;}
.x143_c00362{left:651.000000px;}
.xab_c00362{left:652.950000px;}
.xec_c00362{left:654.900000px;}
.x11e_c00362{left:658.950000px;}
.x116_c00362{left:660.450000px;}
.xfa_c00362{left:661.800000px;}
.xc9_c00362{left:663.900000px;}
.x130_c00362{left:665.550000px;}
.xe2_c00362{left:667.800000px;}
.xdd_c00362{left:669.000000px;}
.xe9_c00362{left:672.750000px;}
.xb8_c00362{left:674.100000px;}
.x10c_c00362{left:675.150000px;}
.xc1_c00362{left:676.350000px;}
.xb2_c00362{left:678.750000px;}
.xf6_c00362{left:680.400000px;}
.xfd_c00362{left:682.350000px;}
.xed_c00362{left:685.800000px;}
.xc2_c00362{left:687.450000px;}
.x108_c00362{left:690.150000px;}
.xca_c00362{left:691.650000px;}
.x11a_c00362{left:693.750000px;}
.xee_c00362{left:696.600000px;}
.xac_c00362{left:697.650000px;}
.x12f_c00362{left:700.500000px;}
.xd9_c00362{left:702.900000px;}
.xc3_c00362{left:703.950000px;}
.x126_c00362{left:708.600000px;}
.xd4_c00362{left:710.850000px;}
.x12d_c00362{left:712.050000px;}
.x109_c00362{left:713.550000px;}
.xad_c00362{left:714.900000px;}
.x101_c00362{left:716.550000px;}
.xb9_c00362{left:719.100000px;}
.xb3_c00362{left:720.150000px;}
.x121_c00362{left:721.950000px;}
.xda_c00362{left:723.750000px;}
.x118_c00362{left:724.800000px;}
.xf7_c00362{left:726.150000px;}
.xde_c00362{left:727.350000px;}
.x10a_c00362{left:729.000000px;}
.x12e_c00362{left:730.050000px;}
.x11b_c00362{left:731.850000px;}
.xc4_c00362{left:734.850000px;}
.x135_c00362{left:739.500000px;}
.xb4_c00362{left:742.050000px;}
.x8_c00362{left:743.100000px;}
.xef_c00362{left:744.450000px;}
.xcb_c00362{left:745.950000px;}
.xba_c00362{left:748.650000px;}
.x11f_c00362{left:750.000000px;}
.xd5_c00362{left:751.200000px;}
.x113_c00362{left:752.700000px;}
.xea_c00362{left:754.500000px;}
.x136_c00362{left:755.850000px;}
.xae_c00362{left:757.050000px;}
.xe3_c00362{left:758.100000px;}
.x13d_c00362{left:763.500000px;}
.x133_c00362{left:765.450000px;}
.x114_c00362{left:772.200000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws1_c00362{word-spacing:-2.402402pt;}
.ws4_c00362{word-spacing:0.000000pt;}
.ws2_c00362{word-spacing:2.793651pt;}
.ws3_c00362{word-spacing:14.727829pt;}
.ws0_c00362{word-spacing:192.078973pt;}
.fs6_c00362{font-size:26.666667pt;}
.fs5_c00362{font-size:48.000000pt;}
.fs3_c00362{font-size:53.333333pt;}
.fs2_c00362{font-size:58.666667pt;}
.fs4_c00362{font-size:64.000000pt;}
.fs1_c00362{font-size:69.333333pt;}
.fs0_c00362{font-size:74.666667pt;}
.y0_c00362{bottom:0.000000pt;}
.y35_c00362{bottom:169.200000pt;}
.y67_c00362{bottom:171.466667pt;}
.y34_c00362{bottom:185.866667pt;}
.y66_c00362{bottom:189.466667pt;}
.y33_c00362{bottom:201.866667pt;}
.y65_c00362{bottom:202.933333pt;}
.y32_c00362{bottom:217.866667pt;}
.y64_c00362{bottom:220.800000pt;}
.y31_c00362{bottom:233.866667pt;}
.y63_c00362{bottom:237.066667pt;}
.y30_c00362{bottom:249.866667pt;}
.y62_c00362{bottom:253.333333pt;}
.y2f_c00362{bottom:265.866667pt;}
.y61_c00362{bottom:269.066667pt;}
.y2e_c00362{bottom:281.866667pt;}
.y60_c00362{bottom:285.066667pt;}
.y2d_c00362{bottom:297.866667pt;}
.y5f_c00362{bottom:300.800000pt;}
.y2c_c00362{bottom:313.600000pt;}
.y5e_c00362{bottom:319.466667pt;}
.y2b_c00362{bottom:329.866667pt;}
.y5d_c00362{bottom:336.400000pt;}
.y2a_c00362{bottom:345.600000pt;}
.y5c_c00362{bottom:352.400000pt;}
.y29_c00362{bottom:361.600000pt;}
.y5b_c00362{bottom:370.933333pt;}
.y28_c00362{bottom:377.333333pt;}
.y5a_c00362{bottom:387.200000pt;}
.y27_c00362{bottom:393.333333pt;}
.y26_c00362{bottom:409.333333pt;}
.y59_c00362{bottom:414.133333pt;}
.y25_c00362{bottom:425.066667pt;}
.y58_c00362{bottom:430.400000pt;}
.y24_c00362{bottom:441.066667pt;}
.y57_c00362{bottom:446.400000pt;}
.y23_c00362{bottom:457.333333pt;}
.y56_c00362{bottom:462.400000pt;}
.y22_c00362{bottom:473.333333pt;}
.y55_c00362{bottom:486.133333pt;}
.y21_c00362{bottom:489.066667pt;}
.y54_c00362{bottom:502.400000pt;}
.y20_c00362{bottom:505.333333pt;}
.y53_c00362{bottom:518.666667pt;}
.y1f_c00362{bottom:523.200000pt;}
.y52_c00362{bottom:534.400000pt;}
.y1e_c00362{bottom:537.600000pt;}
.y1d_c00362{bottom:550.400000pt;}
.y1c_c00362{bottom:562.266667pt;}
.y51_c00362{bottom:566.400000pt;}
.y1b_c00362{bottom:576.933333pt;}
.y50_c00362{bottom:582.666667pt;}
.y1a_c00362{bottom:597.200000pt;}
.y4f_c00362{bottom:598.400000pt;}
.y4e_c00362{bottom:604.800000pt;}
.y19_c00362{bottom:613.466667pt;}
.y4d_c00362{bottom:617.733333pt;}
.y18_c00362{bottom:629.466667pt;}
.y4c_c00362{bottom:634.000000pt;}
.y17_c00362{bottom:645.466667pt;}
.y4b_c00362{bottom:650.266667pt;}
.y16_c00362{bottom:661.466667pt;}
.y4a_c00362{bottom:666.000000pt;}
.y15_c00362{bottom:680.400000pt;}
.y49_c00362{bottom:681.733333pt;}
.y14_c00362{bottom:697.066667pt;}
.y48_c00362{bottom:698.000000pt;}
.y13_c00362{bottom:713.066667pt;}
.y47_c00362{bottom:714.000000pt;}
.y12_c00362{bottom:729.066667pt;}
.y46_c00362{bottom:730.000000pt;}
.y11_c00362{bottom:745.066667pt;}
.y45_c00362{bottom:746.000000pt;}
.y10_c00362{bottom:761.333333pt;}
.y44_c00362{bottom:761.733333pt;}
.yf_c00362{bottom:776.666667pt;}
.y43_c00362{bottom:777.466667pt;}
.y42_c00362{bottom:793.466667pt;}
.ye_c00362{bottom:796.533333pt;}
.y41_c00362{bottom:809.466667pt;}
.yd_c00362{bottom:824.800000pt;}
.y40_c00362{bottom:825.466667pt;}
.yc_c00362{bottom:828.266667pt;}
.y3f_c00362{bottom:841.200000pt;}
.yb_c00362{bottom:844.533333pt;}
.y3e_c00362{bottom:857.200000pt;}
.y3d_c00362{bottom:872.933333pt;}
.ya_c00362{bottom:875.466667pt;}
.y3c_c00362{bottom:888.933333pt;}
.y9_c00362{bottom:895.200000pt;}
.y3b_c00362{bottom:909.333333pt;}
.y8_c00362{bottom:911.200000pt;}
.y3a_c00362{bottom:925.066667pt;}
.y7_c00362{bottom:927.200000pt;}
.y39_c00362{bottom:941.066667pt;}
.y6_c00362{bottom:942.933333pt;}
.y38_c00362{bottom:956.800000pt;}
.y5_c00362{bottom:958.933333pt;}
.y37_c00362{bottom:973.066667pt;}
.y4_c00362{bottom:974.666667pt;}
.y36_c00362{bottom:989.066667pt;}
.y3_c00362{bottom:990.666667pt;}
.y2_c00362{bottom:1010.666667pt;}
.y1_c00362{bottom:1014.133333pt;}
.h8_c00362{height:26.666667pt;}
.h7_c00362{height:48.000000pt;}
.h5_c00362{height:53.333333pt;}
.h4_c00362{height:58.666667pt;}
.h6_c00362{height:64.000000pt;}
.h3_c00362{height:69.333333pt;}
.h2_c00362{height:74.666667pt;}
.h0_c00362{height:1131.200032pt;}
.h1_c00362{height:1131.333333pt;}
.w0_c00362{width:853.760009pt;}
.w1_c00362{width:854.000000pt;}
.x0_c00362{left:0.000000pt;}
.x38_c00362{left:65.600000pt;}
.x44_c00362{left:66.533333pt;}
.x85_c00362{left:71.066667pt;}
.x3a_c00362{left:73.333333pt;}
.x6e_c00362{left:78.266667pt;}
.xa0_c00362{left:79.333333pt;}
.x7f_c00362{left:80.266667pt;}
.x9_c00362{left:81.333333pt;}
.x29_c00362{left:82.266667pt;}
.x8e_c00362{left:89.200000pt;}
.x73_c00362{left:91.866667pt;}
.x37_c00362{left:96.933333pt;}
.x4a_c00362{left:98.533333pt;}
.x12_c00362{left:103.466667pt;}
.x5f_c00362{left:106.133333pt;}
.x21_c00362{left:108.133333pt;}
.x89_c00362{left:110.666667pt;}
.x42_c00362{left:111.600000pt;}
.x2a_c00362{left:112.666667pt;}
.x13_c00362{left:113.733333pt;}
.x66_c00362{left:116.400000pt;}
.xa1_c00362{left:117.466667pt;}
.xa_c00362{left:119.466667pt;}
.x6c_c00362{left:120.666667pt;}
.x1a_c00362{left:122.800000pt;}
.x8c_c00362{left:123.866667pt;}
.x77_c00362{left:125.333333pt;}
.x51_c00362{left:126.666667pt;}
.x2b_c00362{left:129.333333pt;}
.x31_c00362{left:131.200000pt;}
.x93_c00362{left:133.066667pt;}
.x45_c00362{left:134.400000pt;}
.x39_c00362{left:136.000000pt;}
.x62_c00362{left:138.400000pt;}
.x54_c00362{left:140.533333pt;}
.x74_c00362{left:141.466667pt;}
.x5a_c00362{left:145.466667pt;}
.x8f_c00362{left:146.800000pt;}
.xb_c00362{left:148.533333pt;}
.x2c_c00362{left:150.400000pt;}
.xa2_c00362{left:151.733333pt;}
.x6f_c00362{left:152.800000pt;}
.x97_c00362{left:154.933333pt;}
.x4b_c00362{left:156.133333pt;}
.x67_c00362{left:159.600000pt;}
.x90_c00362{left:160.933333pt;}
.x3d_c00362{left:162.400000pt;}
.x14_c00362{left:164.266667pt;}
.x4f_c00362{left:165.333333pt;}
.x7b_c00362{left:168.000000pt;}
.x1b_c00362{left:169.866667pt;}
.x7d_c00362{left:171.333333pt;}
.x70_c00362{left:172.266667pt;}
.x52_c00362{left:174.000000pt;}
.x3b_c00362{left:175.066667pt;}
.x22_c00362{left:177.600000pt;}
.x6d_c00362{left:178.533333pt;}
.x69_c00362{left:179.733333pt;}
.xc_c00362{left:183.733333pt;}
.x75_c00362{left:185.600000pt;}
.x8d_c00362{left:186.800000pt;}
.x94_c00362{left:190.000000pt;}
.x5c_c00362{left:191.066667pt;}
.x2d_c00362{left:192.000000pt;}
.x5e_c00362{left:193.466667pt;}
.x23_c00362{left:195.866667pt;}
.x32_c00362{left:197.066667pt;}
.x50_c00362{left:198.266667pt;}
.x4c_c00362{left:202.000000pt;}
.x15_c00362{left:204.000000pt;}
.x98_c00362{left:205.466667pt;}
.x33_c00362{left:206.400000pt;}
.x9a_c00362{left:209.866667pt;}
.x46_c00362{left:211.200000pt;}
.x9d_c00362{left:212.133333pt;}
.x60_c00362{left:213.333333pt;}
.x7c_c00362{left:216.000000pt;}
.xd_c00362{left:217.066667pt;}
.x80_c00362{left:218.266667pt;}
.x71_c00362{left:219.333333pt;}
.x87_c00362{left:220.533333pt;}
.x16_c00362{left:222.533333pt;}
.x4d_c00362{left:224.400000pt;}
.x43_c00362{left:225.466667pt;}
.x3e_c00362{left:227.733333pt;}
.x24_c00362{left:229.466667pt;}
.x1c_c00362{left:233.200000pt;}
.x8a_c00362{left:234.400000pt;}
.x81_c00362{left:236.533333pt;}
.x34_c00362{left:237.466667pt;}
.x25_c00362{left:239.066667pt;}
.xe_c00362{left:240.133333pt;}
.x78_c00362{left:241.466667pt;}
.x55_c00362{left:242.933333pt;}
.x3f_c00362{left:244.666667pt;}
.x91_c00362{left:246.000000pt;}
.xf_c00362{left:250.000000pt;}
.x63_c00362{left:251.600000pt;}
.x95_c00362{left:253.333333pt;}
.x17_c00362{left:254.266667pt;}
.xa3_c00362{left:255.333333pt;}
.x47_c00362{left:256.933333pt;}
.x2e_c00362{left:258.133333pt;}
.x9e_c00362{left:259.200000pt;}
.x6a_c00362{left:260.400000pt;}
.x5b_c00362{left:262.933333pt;}
.xa4_c00362{left:264.933333pt;}
.x48_c00362{left:267.466667pt;}
.x9b_c00362{left:268.800000pt;}
.x1d_c00362{left:270.000000pt;}
.x18_c00362{left:271.200000pt;}
.x40_c00362{left:273.466667pt;}
.x56_c00362{left:275.200000pt;}
.x82_c00362{left:279.066667pt;}
.x96_c00362{left:280.800000pt;}
.x1_c00362{left:282.533333pt;}
.x9f_c00362{left:283.466667pt;}
.x86_c00362{left:286.133333pt;}
.x88_c00362{left:287.066667pt;}
.x7a_c00362{left:288.666667pt;}
.x26_c00362{left:290.000000pt;}
.x1e_c00362{left:292.133333pt;}
.x2f_c00362{left:294.666667pt;}
.x9c_c00362{left:296.266667pt;}
.x10_c00362{left:298.000000pt;}
.x61_c00362{left:300.666667pt;}
.x5d_c00362{left:302.666667pt;}
.x76_c00362{left:303.600000pt;}
.x41_c00362{left:305.200000pt;}
.x64_c00362{left:306.933333pt;}
.x57_c00362{left:308.133333pt;}
.x27_c00362{left:309.200000pt;}
.x35_c00362{left:312.000000pt;}
.x49_c00362{left:313.600000pt;}
.x79_c00362{left:314.533333pt;}
.x83_c00362{left:315.600000pt;}
.x3c_c00362{left:318.533333pt;}
.x2_c00362{left:320.000000pt;}
.x30_c00362{left:323.200000pt;}
.x1f_c00362{left:324.133333pt;}
.x92_c00362{left:325.733333pt;}
.x6b_c00362{left:327.600000pt;}
.x58_c00362{left:329.200000pt;}
.x99_c00362{left:331.733333pt;}
.x53_c00362{left:333.200000pt;}
.x11_c00362{left:334.133333pt;}
.x65_c00362{left:336.666667pt;}
.x8b_c00362{left:337.733333pt;}
.x3_c00362{left:340.133333pt;}
.x4e_c00362{left:342.133333pt;}
.x36_c00362{left:344.266667pt;}
.x20_c00362{left:345.600000pt;}
.x84_c00362{left:347.333333pt;}
.x59_c00362{left:348.400000pt;}
.x7e_c00362{left:351.333333pt;}
.x72_c00362{left:353.333333pt;}
.x28_c00362{left:354.266667pt;}
.x68_c00362{left:362.133333pt;}
.x19_c00362{left:364.000000pt;}
.x4_c00362{left:379.200000pt;}
.x13f_c00362{left:381.066667pt;}
.x137_c00362{left:382.133333pt;}
.x12c_c00362{left:383.733333pt;}
.x115_c00362{left:385.333333pt;}
.x142_c00362{left:393.600000pt;}
.x13a_c00362{left:396.800000pt;}
.x5_c00362{left:398.133333pt;}
.x122_c00362{left:399.466667pt;}
.xf8_c00362{left:400.400000pt;}
.xa5_c00362{left:401.333333pt;}
.x138_c00362{left:403.600000pt;}
.xd6_c00362{left:410.800000pt;}
.x134_c00362{left:414.400000pt;}
.x6_c00362{left:417.333333pt;}
.x127_c00362{left:419.733333pt;}
.xc5_c00362{left:420.933333pt;}
.x123_c00362{left:423.733333pt;}
.xb5_c00362{left:424.800000pt;}
.xe4_c00362{left:426.533333pt;}
.xbb_c00362{left:427.733333pt;}
.x117_c00362{left:430.800000pt;}
.xdf_c00362{left:431.866667pt;}
.xfe_c00362{left:433.733333pt;}
.xcc_c00362{left:434.933333pt;}
.x131_c00362{left:436.400000pt;}
.x7_c00362{left:437.466667pt;}
.xf0_c00362{left:439.066667pt;}
.x106_c00362{left:440.400000pt;}
.xd7_c00362{left:442.133333pt;}
.x13e_c00362{left:443.200000pt;}
.xe5_c00362{left:444.133333pt;}
.xf2_c00362{left:445.200000pt;}
.xe0_c00362{left:446.266667pt;}
.x111_c00362{left:449.066667pt;}
.xcd_c00362{left:451.866667pt;}
.xaf_c00362{left:454.000000pt;}
.xa6_c00362{left:457.333333pt;}
.x132_c00362{left:459.200000pt;}
.x102_c00362{left:461.600000pt;}
.x11c_c00362{left:465.600000pt;}
.xa7_c00362{left:467.200000pt;}
.x107_c00362{left:469.200000pt;}
.x112_c00362{left:471.733333pt;}
.x10d_c00362{left:472.666667pt;}
.xbc_c00362{left:474.800000pt;}
.x103_c00362{left:476.266667pt;}
.xc6_c00362{left:478.000000pt;}
.x128_c00362{left:479.466667pt;}
.x10e_c00362{left:480.400000pt;}
.xa8_c00362{left:481.333333pt;}
.xd1_c00362{left:483.466667pt;}
.xbd_c00362{left:485.066667pt;}
.xb0_c00362{left:486.266667pt;}
.x140_c00362{left:488.266667pt;}
.xe1_c00362{left:489.200000pt;}
.x124_c00362{left:490.266667pt;}
.xdb_c00362{left:491.333333pt;}
.x13b_c00362{left:496.000000pt;}
.x120_c00362{left:496.933333pt;}
.xbe_c00362{left:498.133333pt;}
.x10f_c00362{left:499.866667pt;}
.xff_c00362{left:501.200000pt;}
.xe6_c00362{left:503.333333pt;}
.xf3_c00362{left:505.066667pt;}
.xce_c00362{left:507.200000pt;}
.xc7_c00362{left:509.733333pt;}
.xeb_c00362{left:511.066667pt;}
.xa9_c00362{left:512.666667pt;}
.xe7_c00362{left:517.733333pt;}
.x139_c00362{left:519.200000pt;}
.x100_c00362{left:522.000000pt;}
.xcf_c00362{left:525.066667pt;}
.x104_c00362{left:526.800000pt;}
.x110_c00362{left:528.400000pt;}
.xc8_c00362{left:530.266667pt;}
.xd2_c00362{left:533.066667pt;}
.x10b_c00362{left:534.266667pt;}
.xd8_c00362{left:535.200000pt;}
.x129_c00362{left:536.133333pt;}
.xb6_c00362{left:537.066667pt;}
.xfb_c00362{left:538.400000pt;}
.x13c_c00362{left:541.600000pt;}
.xbf_c00362{left:543.600000pt;}
.xf4_c00362{left:545.066667pt;}
.x11d_c00362{left:547.066667pt;}
.x12a_c00362{left:549.866667pt;}
.xdc_c00362{left:550.800000pt;}
.x105_c00362{left:552.000000pt;}
.xd3_c00362{left:553.200000pt;}
.x141_c00362{left:554.266667pt;}
.xb7_c00362{left:556.000000pt;}
.xfc_c00362{left:556.933333pt;}
.xd0_c00362{left:560.266667pt;}
.xaa_c00362{left:562.533333pt;}
.x119_c00362{left:563.600000pt;}
.xb1_c00362{left:564.666667pt;}
.xf5_c00362{left:566.133333pt;}
.xf9_c00362{left:567.200000pt;}
.x12b_c00362{left:568.133333pt;}
.xf1_c00362{left:570.666667pt;}
.x125_c00362{left:572.000000pt;}
.xc0_c00362{left:576.266667pt;}
.xe8_c00362{left:577.200000pt;}
.x143_c00362{left:578.666667pt;}
.xab_c00362{left:580.400000pt;}
.xec_c00362{left:582.133333pt;}
.x11e_c00362{left:585.733333pt;}
.x116_c00362{left:587.066667pt;}
.xfa_c00362{left:588.266667pt;}
.xc9_c00362{left:590.133333pt;}
.x130_c00362{left:591.600000pt;}
.xe2_c00362{left:593.600000pt;}
.xdd_c00362{left:594.666667pt;}
.xe9_c00362{left:598.000000pt;}
.xb8_c00362{left:599.200000pt;}
.x10c_c00362{left:600.133333pt;}
.xc1_c00362{left:601.200000pt;}
.xb2_c00362{left:603.333333pt;}
.xf6_c00362{left:604.800000pt;}
.xfd_c00362{left:606.533333pt;}
.xed_c00362{left:609.600000pt;}
.xc2_c00362{left:611.066667pt;}
.x108_c00362{left:613.466667pt;}
.xca_c00362{left:614.800000pt;}
.x11a_c00362{left:616.666667pt;}
.xee_c00362{left:619.200000pt;}
.xac_c00362{left:620.133333pt;}
.x12f_c00362{left:622.666667pt;}
.xd9_c00362{left:624.800000pt;}
.xc3_c00362{left:625.733333pt;}
.x126_c00362{left:629.866667pt;}
.xd4_c00362{left:631.866667pt;}
.x12d_c00362{left:632.933333pt;}
.x109_c00362{left:634.266667pt;}
.xad_c00362{left:635.466667pt;}
.x101_c00362{left:636.933333pt;}
.xb9_c00362{left:639.200000pt;}
.xb3_c00362{left:640.133333pt;}
.x121_c00362{left:641.733333pt;}
.xda_c00362{left:643.333333pt;}
.x118_c00362{left:644.266667pt;}
.xf7_c00362{left:645.466667pt;}
.xde_c00362{left:646.533333pt;}
.x10a_c00362{left:648.000000pt;}
.x12e_c00362{left:648.933333pt;}
.x11b_c00362{left:650.533333pt;}
.xc4_c00362{left:653.200000pt;}
.x135_c00362{left:657.333333pt;}
.xb4_c00362{left:659.600000pt;}
.x8_c00362{left:660.533333pt;}
.xef_c00362{left:661.733333pt;}
.xcb_c00362{left:663.066667pt;}
.xba_c00362{left:665.466667pt;}
.x11f_c00362{left:666.666667pt;}
.xd5_c00362{left:667.733333pt;}
.x113_c00362{left:669.066667pt;}
.xea_c00362{left:670.666667pt;}
.x136_c00362{left:671.866667pt;}
.xae_c00362{left:672.933333pt;}
.xe3_c00362{left:673.866667pt;}
.x13d_c00362{left:678.666667pt;}
.x133_c00362{left:680.400000pt;}
.x114_c00362{left:686.400000pt;}
}





/* 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_c00363 {
    display:none;
  }
  .loading-indicator_c00363.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00363 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_c00363 { 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_c00363" -> "#page-container .classname_c00363")
 */
.pf_c00363 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00363 { /* 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_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00363 { /* 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_c00363 { /* 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_c00363 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00363 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00363 {overflow:visible;}
  }
}
.c_c00363 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00363 { /* 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_c00363:after { /* webkit #35443 */
  content: '';
}
.t_c00363:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00363 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 */
}
.__c00363 { /* 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_c00363 { /* info for Javascript */
  display:none;
}
.l_c00363 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00363 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00363 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00363: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_c00363 {
    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_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00363.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_c00363 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00363;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.000000;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;}
.m96_c00363{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mba_c00363{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m85_c00363{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.mde_c00363{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m111_c00363{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00363{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00363{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m44_c00363{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00363{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mca_c00363{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00363{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m3_c00363{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mb_c00363{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m26_c00363{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00363{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m90_c00363{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00363{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00363{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m75_c00363{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00363{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00363{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mef_c00363{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00363{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00363{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00363{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md5_c00363{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00363{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00363{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m82_c00363{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00363{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m21_c00363{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mad_c00363{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00363{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m87_c00363{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mae_c00363{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m30_c00363{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m120_c00363{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00363{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00363{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md9_c00363{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m50_c00363{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00363{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00363{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m63_c00363{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.md0_c00363{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mec_c00363{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00363{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc_c00363{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m105_c00363{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m73_c00363{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m13_c00363{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m99_c00363{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m74_c00363{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00363{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00363{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m16_c00363{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m8_c00363{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00363{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00363{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m112_c00363{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00363{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m14_c00363{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md8_c00363{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00363{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00363{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m51_c00363{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m109_c00363{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00363{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00363{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00363{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00363{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m113_c00363{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00363{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m27_c00363{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00363{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00363{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf_c00363{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m52_c00363{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mea_c00363{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00363{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m66_c00363{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00363{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00363{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m35_c00363{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m33_c00363{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m72_c00363{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00363{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00363{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m20_c00363{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m23_c00363{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00363{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00363{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.maf_c00363{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m48_c00363{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md1_c00363{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m19_c00363{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me9_c00363{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m53_c00363{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mce_c00363{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m17_c00363{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m39_c00363{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00363{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m108_c00363{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m83_c00363{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m11_c00363{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m71_c00363{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00363{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.med_c00363{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma_c00363{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m40_c00363{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00363{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m31_c00363{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m15_c00363{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m43_c00363{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00363{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m86_c00363{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00363{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00363{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m119_c00363{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00363{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00363{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00363{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00363{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00363{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m28_c00363{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00363{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00363{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00363{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m118_c00363{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00363{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9_c00363{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m36_c00363{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00363{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m101_c00363{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00363{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m76_c00363{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00363{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md4_c00363{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m7_c00363{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00363{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.me1_c00363{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00363{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m45_c00363{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m68_c00363{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00363{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m46_c00363{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m49_c00363{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m79_c00363{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.me0_c00363{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00363{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00363{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00363{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m47_c00363{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m60_c00363{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m22_c00363{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00363{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00363{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00363{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m69_c00363{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00363{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00363{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m25_c00363{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00363{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00363{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md6_c00363{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me6_c00363{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00363{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00363{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00363{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me8_c00363{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m81_c00363{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00363{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m29_c00363{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m42_c00363{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00363{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00363{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m80_c00363{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00363{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5_c00363{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00363{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12_c00363{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m123_c00363{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00363{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00363{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m62_c00363{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00363{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.me7_c00363{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00363{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m97_c00363{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m124_c00363{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.me_c00363{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m37_c00363{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m58_c00363{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m102_c00363{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m32_c00363{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00363{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m77_c00363{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m61_c00363{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mac_c00363{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00363{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00363{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m92_c00363{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m98_c00363{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00363{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00363{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00363{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m114_c00363{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m121_c00363{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00363{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2_c00363{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m67_c00363{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00363{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m106_c00363{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m38_c00363{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00363{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m55_c00363{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00363{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md3_c00363{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00363{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6_c00363{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m94_c00363{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.me3_c00363{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00363{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m41_c00363{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m115_c00363{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m34_c00363{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m126_c00363{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00363{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00363{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m95_c00363{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00363{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m103_c00363{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md_c00363{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md7_c00363{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00363{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00363{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m122_c00363{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m18_c00363{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00363{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00363{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m70_c00363{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.me4_c00363{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00363{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00363{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00363{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m107_c00363{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m24_c00363{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00363{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00363{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00363{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.meb_c00363{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m116_c00363{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m104_c00363{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mab_c00363{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.me5_c00363{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00363{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m89_c00363{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.maa_c00363{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m110_c00363{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me2_c00363{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00363{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00363{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m100_c00363{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m59_c00363{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00363{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00363{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00363{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m84_c00363{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.md2_c00363{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00363{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m117_c00363{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m56_c00363{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m88_c00363{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00363{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m65_c00363{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m57_c00363{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m64_c00363{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00363{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m128_c00363{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m125_c00363{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00363{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m54_c00363{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00363{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mda_c00363{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00363{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00363{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00363{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00363{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m93_c00363{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mff_c00363{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m127_c00363{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mee_c00363{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m91_c00363{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m78_c00363{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls0_c00363{letter-spacing:0.000000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{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__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00363{word-spacing:-10.238095px;}
.ws0_c00363{word-spacing:-8.026316px;}
.wsb_c00363{word-spacing:-6.447368px;}
.ws8_c00363{word-spacing:-6.327511px;}
.ws7_c00363{word-spacing:-4.862543px;}
.ws1_c00363{word-spacing:-4.833333px;}
.wsa_c00363{word-spacing:-4.062500px;}
.wse_c00363{word-spacing:-2.816387px;}
.ws3_c00363{word-spacing:-1.315789px;}
.wsf_c00363{word-spacing:0.000000px;}
.wsd_c00363{word-spacing:2.282675px;}
.ws9_c00363{word-spacing:3.695418px;}
.wsc_c00363{word-spacing:4.545455px;}
.ws4_c00363{word-spacing:23.211796px;}
.ws5_c00363{word-spacing:53.966261px;}
.ws6_c00363{word-spacing:69.605263px;}
._0_c00363{width:53.428954px;}
.fc0_c00363{color:transparent;}
.fs5_c00363{font-size:48.000000px;}
.fs4_c00363{font-size:54.000000px;}
.fs1_c00363{font-size:60.000000px;}
.fs2_c00363{font-size:66.000000px;}
.fs3_c00363{font-size:72.000000px;}
.fs0_c00363{font-size:78.000000px;}
.y0_c00363{bottom:0.000000px;}
.y70_c00363{bottom:164.550000px;}
.y35_c00363{bottom:181.650000px;}
.y6f_c00363{bottom:182.550000px;}
.y34_c00363{bottom:196.050000px;}
.y6e_c00363{bottom:200.550000px;}
.y33_c00363{bottom:210.450000px;}
.y6d_c00363{bottom:216.750000px;}
.y32_c00363{bottom:224.550000px;}
.y6c_c00363{bottom:229.650000px;}
.y31_c00363{bottom:238.950000px;}
.y6b_c00363{bottom:243.750000px;}
.y30_c00363{bottom:253.050000px;}
.y6a_c00363{bottom:258.150000px;}
.y69_c00363{bottom:272.850000px;}
.y68_c00363{bottom:287.550000px;}
.y2f_c00363{bottom:299.400000px;}
.y67_c00363{bottom:301.650000px;}
.y66_c00363{bottom:316.800000px;}
.y2e_c00363{bottom:317.400000px;}
.y65_c00363{bottom:330.900000px;}
.y2d_c00363{bottom:335.400000px;}
.y64_c00363{bottom:350.400000px;}
.y2c_c00363{bottom:353.400000px;}
.y63_c00363{bottom:364.500000px;}
.y2b_c00363{bottom:371.700000px;}
.y62_c00363{bottom:379.200000px;}
.y2a_c00363{bottom:389.400000px;}
.y61_c00363{bottom:393.900000px;}
.y29_c00363{bottom:407.100000px;}
.y60_c00363{bottom:408.300000px;}
.y5f_c00363{bottom:423.450000px;}
.y28_c00363{bottom:425.100000px;}
.y5e_c00363{bottom:436.350000px;}
.y27_c00363{bottom:442.800000px;}
.y5d_c00363{bottom:455.400000px;}
.y26_c00363{bottom:464.850000px;}
.y5c_c00363{bottom:469.800000px;}
.y25_c00363{bottom:478.500000px;}
.y5b_c00363{bottom:484.500000px;}
.y24_c00363{bottom:493.200000px;}
.y5a_c00363{bottom:498.900000px;}
.y23_c00363{bottom:506.550000px;}
.y59_c00363{bottom:513.000000px;}
.y58_c00363{bottom:527.400000px;}
.y22_c00363{bottom:529.200000px;}
.y57_c00363{bottom:541.800000px;}
.y21_c00363{bottom:547.500000px;}
.y56_c00363{bottom:556.200000px;}
.y20_c00363{bottom:565.500000px;}
.y55_c00363{bottom:570.600000px;}
.y54_c00363{bottom:589.350000px;}
.y1f_c00363{bottom:591.900000px;}
.y53_c00363{bottom:604.050000px;}
.y1e_c00363{bottom:609.900000px;}
.y52_c00363{bottom:618.900000px;}
.y1d_c00363{bottom:627.900000px;}
.y51_c00363{bottom:633.000000px;}
.y1c_c00363{bottom:645.450000px;}
.y50_c00363{bottom:647.400000px;}
.y4f_c00363{bottom:662.100000px;}
.y1b_c00363{bottom:663.450000px;}
.y4e_c00363{bottom:676.500000px;}
.y1a_c00363{bottom:681.450000px;}
.y4d_c00363{bottom:690.900000px;}
.y19_c00363{bottom:703.050000px;}
.y4c_c00363{bottom:705.600000px;}
.y18_c00363{bottom:721.800000px;}
.y4b_c00363{bottom:723.900000px;}
.y4a_c00363{bottom:738.300000px;}
.y17_c00363{bottom:747.300000px;}
.y49_c00363{bottom:752.700000px;}
.y16_c00363{bottom:765.300000px;}
.y48_c00363{bottom:767.100000px;}
.y47_c00363{bottom:781.200000px;}
.y15_c00363{bottom:783.300000px;}
.y46_c00363{bottom:797.700000px;}
.y14_c00363{bottom:801.000000px;}
.y45_c00363{bottom:811.050000px;}
.y13_c00363{bottom:822.600000px;}
.y44_c00363{bottom:833.400000px;}
.y12_c00363{bottom:844.500000px;}
.y43_c00363{bottom:847.800000px;}
.y42_c00363{bottom:862.200000px;}
.y11_c00363{bottom:862.500000px;}
.y41_c00363{bottom:876.900000px;}
.y10_c00363{bottom:880.500000px;}
.y40_c00363{bottom:891.300000px;}
.yf_c00363{bottom:898.500000px;}
.y3f_c00363{bottom:905.400000px;}
.ye_c00363{bottom:916.200000px;}
.yd_c00363{bottom:933.900000px;}
.yc_c00363{bottom:952.200000px;}
.y3e_c00363{bottom:957.600000px;}
.yb_c00363{bottom:970.200000px;}
.y3d_c00363{bottom:975.600000px;}
.ya_c00363{bottom:987.900000px;}
.y3c_c00363{bottom:993.900000px;}
.y9_c00363{bottom:1005.600000px;}
.y3b_c00363{bottom:1011.600000px;}
.y8_c00363{bottom:1023.600000px;}
.y7_c00363{bottom:1041.300000px;}
.y3a_c00363{bottom:1041.450000px;}
.y6_c00363{bottom:1059.600000px;}
.y39_c00363{bottom:1059.750000px;}
.y38_c00363{bottom:1077.750000px;}
.y5_c00363{bottom:1077.900000px;}
.y4_c00363{bottom:1095.150000px;}
.y37_c00363{bottom:1095.750000px;}
.y3_c00363{bottom:1113.150000px;}
.y36_c00363{bottom:1113.450000px;}
.y1_c00363{bottom:1139.100000px;}
.y2_c00363{bottom:1139.850000px;}
.h7_c00363{height:48.000000px;}
.h6_c00363{height:54.000000px;}
.h3_c00363{height:60.000000px;}
.h4_c00363{height:66.000000px;}
.h5_c00363{height:72.000000px;}
.h2_c00363{height:78.000000px;}
.h0_c00363{height:1267.200073px;}
.h1_c00363{height:1267.500000px;}
.w0_c00363{width:960.480010px;}
.w1_c00363{width:960.750000px;}
.x0_c00363{left:0.000000px;}
.x7f_c00363{left:192.300000px;}
.x74_c00363{left:193.350000px;}
.x1_c00363{left:194.400000px;}
.x60_c00363{left:196.200000px;}
.x8e_c00363{left:208.500000px;}
.x69_c00363{left:210.900000px;}
.xb_c00363{left:212.100000px;}
.x3_c00363{left:213.900000px;}
.x97_c00363{left:218.400000px;}
.x7d_c00363{left:223.200000px;}
.x1c_c00363{left:229.500000px;}
.x20_c00363{left:231.000000px;}
.x8f_c00363{left:232.200000px;}
.x37_c00363{left:234.300000px;}
.x83_c00363{left:236.100000px;}
.x58_c00363{left:237.750000px;}
.x61_c00363{left:239.700000px;}
.x77_c00363{left:244.800000px;}
.x28_c00363{left:248.550000px;}
.x32_c00363{left:250.050000px;}
.x6d_c00363{left:251.250000px;}
.x5c_c00363{left:253.500000px;}
.x81_c00363{left:255.900000px;}
.x53_c00363{left:257.400000px;}
.x49_c00363{left:259.350000px;}
.x4_c00363{left:261.450000px;}
.x3c_c00363{left:264.600000px;}
.x91_c00363{left:266.850000px;}
.x29_c00363{left:268.350000px;}
.x90_c00363{left:270.000000px;}
.x5_c00363{left:273.000000px;}
.x5e_c00363{left:274.350000px;}
.x62_c00363{left:275.700000px;}
.x51_c00363{left:277.050000px;}
.x44_c00363{left:278.850000px;}
.x2e_c00363{left:280.200000px;}
.x3d_c00363{left:281.550000px;}
.x1d_c00363{left:283.200000px;}
.x84_c00363{left:284.700000px;}
.x6a_c00363{left:286.200000px;}
.xc_c00363{left:288.450000px;}
.x8b_c00363{left:290.550000px;}
.x21_c00363{left:292.500000px;}
.x5f_c00363{left:293.850000px;}
.x59_c00363{left:295.650000px;}
.x2f_c00363{left:298.500000px;}
.x94_c00363{left:300.000000px;}
.xd_c00363{left:301.800000px;}
.x52_c00363{left:303.300000px;}
.x75_c00363{left:304.500000px;}
.x71_c00363{left:307.500000px;}
.x12_c00363{left:309.900000px;}
.x22_c00363{left:312.600000px;}
.x45_c00363{left:314.100000px;}
.x2a_c00363{left:315.900000px;}
.x1e_c00363{left:317.850000px;}
.x7a_c00363{left:318.900000px;}
.x63_c00363{left:321.450000px;}
.x89_c00363{left:323.700000px;}
.xe_c00363{left:324.900000px;}
.x13_c00363{left:326.850000px;}
.x3e_c00363{left:329.100000px;}
.x8a_c00363{left:333.450000px;}
.x72_c00363{left:334.800000px;}
.x80_c00363{left:335.850000px;}
.x6b_c00363{left:337.650000px;}
.x54_c00363{left:338.700000px;}
.x3f_c00363{left:340.650000px;}
.x64_c00363{left:342.300000px;}
.x8c_c00363{left:344.250000px;}
.x14_c00363{left:345.900000px;}
.x23_c00363{left:349.350000px;}
.x6_c00363{left:351.450000px;}
.x4a_c00363{left:353.700000px;}
.x46_c00363{left:356.550000px;}
.x24_c00363{left:359.100000px;}
.x7b_c00363{left:360.300000px;}
.x55_c00363{left:362.100000px;}
.x33_c00363{left:363.150000px;}
.x19_c00363{left:366.450000px;}
.x38_c00363{left:370.050000px;}
.x4b_c00363{left:371.400000px;}
.x95_c00363{left:373.050000px;}
.x92_c00363{left:374.100000px;}
.x4d_c00363{left:375.750000px;}
.x30_c00363{left:378.150000px;}
.x25_c00363{left:380.400000px;}
.x82_c00363{left:382.950000px;}
.xf_c00363{left:384.000000px;}
.x15_c00363{left:385.200000px;}
.x73_c00363{left:387.450000px;}
.x47_c00363{left:390.000000px;}
.x76_c00363{left:392.100000px;}
.x40_c00363{left:393.900000px;}
.x31_c00363{left:397.200000px;}
.x4e_c00363{left:402.000000px;}
.x7_c00363{left:403.650000px;}
.x16_c00363{left:405.000000px;}
.x65_c00363{left:406.650000px;}
.x26_c00363{left:408.450000px;}
.x10_c00363{left:409.950000px;}
.x48_c00363{left:412.350000px;}
.x6e_c00363{left:417.600000px;}
.x41_c00363{left:418.950000px;}
.x8d_c00363{left:420.600000px;}
.x87_c00363{left:423.750000px;}
.x56_c00363{left:425.100000px;}
.x27_c00363{left:426.150000px;}
.x34_c00363{left:429.000000px;}
.x42_c00363{left:430.500000px;}
.x1a_c00363{left:433.350000px;}
.x2_c00363{left:434.850000px;}
.x5d_c00363{left:436.050000px;}
.x96_c00363{left:437.850000px;}
.x86_c00363{left:438.900000px;}
.x5a_c00363{left:443.100000px;}
.x8_c00363{left:445.050000px;}
.x39_c00363{left:447.450000px;}
.x78_c00363{left:450.450000px;}
.x17_c00363{left:452.850000px;}
.x88_c00363{left:454.050000px;}
.x6f_c00363{left:455.400000px;}
.x11_c00363{left:458.250000px;}
.x2b_c00363{left:459.900000px;}
.x66_c00363{left:463.200000px;}
.x35_c00363{left:464.700000px;}
.x5b_c00363{left:466.500000px;}
.x4f_c00363{left:467.550000px;}
.x9_c00363{left:468.750000px;}
.x2c_c00363{left:470.700000px;}
.x93_c00363{left:474.150000px;}
.x4c_c00363{left:478.200000px;}
.x99_c00363{left:479.850000px;}
.x43_c00363{left:481.200000px;}
.x98_c00363{left:483.750000px;}
.x67_c00363{left:485.550000px;}
.x2d_c00363{left:487.200000px;}
.x7c_c00363{left:489.150000px;}
.xa_c00363{left:490.350000px;}
.x3a_c00363{left:493.500000px;}
.x57_c00363{left:495.600000px;}
.x36_c00363{left:498.150000px;}
.x6c_c00363{left:500.700000px;}
.x50_c00363{left:502.800000px;}
.x18_c00363{left:504.000000px;}
.x70_c00363{left:505.800000px;}
.x68_c00363{left:507.150000px;}
.x3b_c00363{left:509.400000px;}
.x7e_c00363{left:513.000000px;}
.x79_c00363{left:516.300000px;}
.x1f_c00363{left:517.950000px;}
.x85_c00363{left:519.450000px;}
.x1b_c00363{left:527.250000px;}
.x143_c00363{left:550.650000px;}
.x13a_c00363{left:551.700000px;}
.xd2_c00363{left:552.900000px;}
.xb7_c00363{left:554.100000px;}
.x104_c00363{left:560.550000px;}
.x136_c00363{left:562.500000px;}
.x11d_c00363{left:563.700000px;}
.x139_c00363{left:565.950000px;}
.xcb_c00363{left:568.050000px;}
.x13c_c00363{left:569.700000px;}
.xc2_c00363{left:570.900000px;}
.x9a_c00363{left:572.100000px;}
.x147_c00363{left:575.550000px;}
.xee_c00363{left:581.550000px;}
.xeb_c00363{left:583.950000px;}
.xd3_c00363{left:586.050000px;}
.xa8_c00363{left:588.300000px;}
.xf5_c00363{left:590.550000px;}
.xcc_c00363{left:592.200000px;}
.x111_c00363{left:594.150000px;}
.x13b_c00363{left:595.200000px;}
.x124_c00363{left:596.850000px;}
.x11e_c00363{left:600.450000px;}
.xe0_c00363{left:602.100000px;}
.xa2_c00363{left:603.900000px;}
.xd9_c00363{left:606.150000px;}
.xc9_c00363{left:607.950000px;}
.x144_c00363{left:609.750000px;}
.xbe_c00363{left:612.000000px;}
.x130_c00363{left:613.050000px;}
.xb8_c00363{left:614.250000px;}
.x12a_c00363{left:615.300000px;}
.xc3_c00363{left:618.000000px;}
.xe1_c00363{left:620.400000px;}
.x125_c00363{left:622.050000px;}
.xb1_c00363{left:624.300000px;}
.x114_c00363{left:626.700000px;}
.x10b_c00363{left:627.750000px;}
.xfa_c00363{left:630.300000px;}
.xb9_c00363{left:632.550000px;}
.x105_c00363{left:633.600000px;}
.xda_c00363{left:634.950000px;}
.x119_c00363{left:636.600000px;}
.x13f_c00363{left:637.650000px;}
.xa9_c00363{left:640.200000px;}
.x137_c00363{left:642.900000px;}
.xb2_c00363{left:644.850000px;}
.xef_c00363{left:646.350000px;}
.xca_c00363{left:648.600000px;}
.xdc_c00363{left:649.800000px;}
.x11f_c00363{left:650.850000px;}
.x9b_c00363{left:652.800000px;}
.xa3_c00363{left:654.600000px;}
.xec_c00363{left:656.250000px;}
.xb6_c00363{left:658.200000px;}
.x145_c00363{left:659.400000px;}
.xaa_c00363{left:660.750000px;}
.x109_c00363{left:662.400000px;}
.xbf_c00363{left:664.500000px;}
.x120_c00363{left:666.300000px;}
.xe2_c00363{left:668.250000px;}
.x123_c00363{left:669.300000px;}
.x115_c00363{left:671.400000px;}
.xd4_c00363{left:672.600000px;}
.xf6_c00363{left:674.100000px;}
.x132_c00363{left:675.150000px;}
.xa4_c00363{left:677.700000px;}
.x11a_c00363{left:679.800000px;}
.xc4_c00363{left:682.050000px;}
.xcd_c00363{left:684.000000px;}
.xb3_c00363{left:685.200000px;}
.xab_c00363{left:686.250000px;}
.x11b_c00363{left:687.300000px;}
.x148_c00363{left:688.500000px;}
.xc0_c00363{left:689.700000px;}
.x9c_c00363{left:691.350000px;}
.x133_c00363{left:693.150000px;}
.x127_c00363{left:694.800000px;}
.xdd_c00363{left:696.600000px;}
.x117_c00363{left:697.800000px;}
.xba_c00363{left:699.150000px;}
.x12d_c00363{left:701.100000px;}
.xb4_c00363{left:702.450000px;}
.x149_c00363{left:704.400000px;}
.xf0_c00363{left:705.450000px;}
.xac_c00363{left:707.550000px;}
.xc5_c00363{left:709.800000px;}
.x14a_c00363{left:710.850000px;}
.x9d_c00363{left:713.250000px;}
.x121_c00363{left:714.900000px;}
.xbb_c00363{left:716.100000px;}
.xe3_c00363{left:718.350000px;}
.xfe_c00363{left:720.600000px;}
.x10a_c00363{left:722.100000px;}
.x138_c00363{left:724.950000px;}
.xa5_c00363{left:727.350000px;}
.xd5_c00363{left:729.600000px;}
.xe9_c00363{left:731.100000px;}
.x13d_c00363{left:732.450000px;}
.xe4_c00363{left:733.500000px;}
.x10f_c00363{left:735.450000px;}
.xce_c00363{left:736.950000px;}
.x14d_c00363{left:738.000000px;}
.xfb_c00363{left:739.500000px;}
.x13e_c00363{left:740.700000px;}
.xad_c00363{left:741.750000px;}
.xf7_c00363{left:743.550000px;}
.x12e_c00363{left:746.100000px;}
.xd6_c00363{left:751.200000px;}
.xde_c00363{left:753.450000px;}
.x106_c00363{left:754.800000px;}
.x101_c00363{left:756.300000px;}
.x11c_c00363{left:757.500000px;}
.x122_c00363{left:758.850000px;}
.x141_c00363{left:760.500000px;}
.xae_c00363{left:761.550000px;}
.xbc_c00363{left:763.200000px;}
.xfc_c00363{left:764.400000px;}
.xa6_c00363{left:766.950000px;}
.x128_c00363{left:769.350000px;}
.x9e_c00363{left:770.850000px;}
.xb5_c00363{left:774.750000px;}
.x126_c00363{left:777.300000px;}
.x112_c00363{left:778.350000px;}
.xe5_c00363{left:780.000000px;}
.xc6_c00363{left:781.500000px;}
.x9f_c00363{left:784.200000px;}
.xff_c00363{left:786.900000px;}
.x140_c00363{left:789.300000px;}
.x107_c00363{left:790.800000px;}
.xd7_c00363{left:792.900000px;}
.x12b_c00363{left:793.950000px;}
.xc7_c00363{left:795.150000px;}
.x10c_c00363{left:796.650000px;}
.x129_c00363{left:798.300000px;}
.xfd_c00363{left:800.100000px;}
.xdb_c00363{left:801.300000px;}
.x110_c00363{left:802.500000px;}
.xf1_c00363{left:803.850000px;}
.x134_c00363{left:805.500000px;}
.xf8_c00363{left:807.300000px;}
.xcf_c00363{left:810.000000px;}
.xea_c00363{left:811.350000px;}
.xe6_c00363{left:814.950000px;}
.xa0_c00363{left:816.600000px;}
.xd8_c00363{left:817.800000px;}
.x12c_c00363{left:819.450000px;}
.x116_c00363{left:820.800000px;}
.xa7_c00363{left:823.800000px;}
.x113_c00363{left:825.150000px;}
.x10d_c00363{left:827.550000px;}
.x108_c00363{left:829.050000px;}
.x142_c00363{left:832.500000px;}
.x118_c00363{left:834.600000px;}
.xf2_c00363{left:835.950000px;}
.xbd_c00363{left:838.050000px;}
.xd0_c00363{left:839.100000px;}
.xe7_c00363{left:840.900000px;}
.x135_c00363{left:842.250000px;}
.x102_c00363{left:843.450000px;}
.x12f_c00363{left:845.250000px;}
.xdf_c00363{left:846.450000px;}
.x10e_c00363{left:849.450000px;}
.xf3_c00363{left:852.900000px;}
.xc8_c00363{left:854.850000px;}
.xa1_c00363{left:857.700000px;}
.x103_c00363{left:859.650000px;}
.xaf_c00363{left:860.850000px;}
.x14c_c00363{left:862.350000px;}
.xed_c00363{left:863.550000px;}
.xe8_c00363{left:865.350000px;}
.xf4_c00363{left:867.300000px;}
.x14b_c00363{left:868.500000px;}
.xd1_c00363{left:871.800000px;}
.x100_c00363{left:875.100000px;}
.xf9_c00363{left:878.100000px;}
.x146_c00363{left:879.300000px;}
.xc1_c00363{left:880.500000px;}
.xb0_c00363{left:881.700000px;}
.x131_c00363{left:885.150000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws2_c00363{word-spacing:-9.100529pt;}
.ws0_c00363{word-spacing:-7.134503pt;}
.wsb_c00363{word-spacing:-5.730994pt;}
.ws8_c00363{word-spacing:-5.624454pt;}
.ws7_c00363{word-spacing:-4.322260pt;}
.ws1_c00363{word-spacing:-4.296296pt;}
.wsa_c00363{word-spacing:-3.611111pt;}
.wse_c00363{word-spacing:-2.503455pt;}
.ws3_c00363{word-spacing:-1.169591pt;}
.wsf_c00363{word-spacing:0.000000pt;}
.wsd_c00363{word-spacing:2.029044pt;}
.ws9_c00363{word-spacing:3.284816pt;}
.wsc_c00363{word-spacing:4.040404pt;}
.ws4_c00363{word-spacing:20.632708pt;}
.ws5_c00363{word-spacing:47.970009pt;}
.ws6_c00363{word-spacing:61.871345pt;}
._0_c00363{width:47.492404pt;}
.fs5_c00363{font-size:42.666667pt;}
.fs4_c00363{font-size:48.000000pt;}
.fs1_c00363{font-size:53.333333pt;}
.fs2_c00363{font-size:58.666667pt;}
.fs3_c00363{font-size:64.000000pt;}
.fs0_c00363{font-size:69.333333pt;}
.y0_c00363{bottom:0.000000pt;}
.y70_c00363{bottom:146.266667pt;}
.y35_c00363{bottom:161.466667pt;}
.y6f_c00363{bottom:162.266667pt;}
.y34_c00363{bottom:174.266667pt;}
.y6e_c00363{bottom:178.266667pt;}
.y33_c00363{bottom:187.066667pt;}
.y6d_c00363{bottom:192.666667pt;}
.y32_c00363{bottom:199.600000pt;}
.y6c_c00363{bottom:204.133333pt;}
.y31_c00363{bottom:212.400000pt;}
.y6b_c00363{bottom:216.666667pt;}
.y30_c00363{bottom:224.933333pt;}
.y6a_c00363{bottom:229.466667pt;}
.y69_c00363{bottom:242.533333pt;}
.y68_c00363{bottom:255.600000pt;}
.y2f_c00363{bottom:266.133333pt;}
.y67_c00363{bottom:268.133333pt;}
.y66_c00363{bottom:281.600000pt;}
.y2e_c00363{bottom:282.133333pt;}
.y65_c00363{bottom:294.133333pt;}
.y2d_c00363{bottom:298.133333pt;}
.y64_c00363{bottom:311.466667pt;}
.y2c_c00363{bottom:314.133333pt;}
.y63_c00363{bottom:324.000000pt;}
.y2b_c00363{bottom:330.400000pt;}
.y62_c00363{bottom:337.066667pt;}
.y2a_c00363{bottom:346.133333pt;}
.y61_c00363{bottom:350.133333pt;}
.y29_c00363{bottom:361.866667pt;}
.y60_c00363{bottom:362.933333pt;}
.y5f_c00363{bottom:376.400000pt;}
.y28_c00363{bottom:377.866667pt;}
.y5e_c00363{bottom:387.866667pt;}
.y27_c00363{bottom:393.600000pt;}
.y5d_c00363{bottom:404.800000pt;}
.y26_c00363{bottom:413.200000pt;}
.y5c_c00363{bottom:417.600000pt;}
.y25_c00363{bottom:425.333333pt;}
.y5b_c00363{bottom:430.666667pt;}
.y24_c00363{bottom:438.400000pt;}
.y5a_c00363{bottom:443.466667pt;}
.y23_c00363{bottom:450.266667pt;}
.y59_c00363{bottom:456.000000pt;}
.y58_c00363{bottom:468.800000pt;}
.y22_c00363{bottom:470.400000pt;}
.y57_c00363{bottom:481.600000pt;}
.y21_c00363{bottom:486.666667pt;}
.y56_c00363{bottom:494.400000pt;}
.y20_c00363{bottom:502.666667pt;}
.y55_c00363{bottom:507.200000pt;}
.y54_c00363{bottom:523.866667pt;}
.y1f_c00363{bottom:526.133333pt;}
.y53_c00363{bottom:536.933333pt;}
.y1e_c00363{bottom:542.133333pt;}
.y52_c00363{bottom:550.133333pt;}
.y1d_c00363{bottom:558.133333pt;}
.y51_c00363{bottom:562.666667pt;}
.y1c_c00363{bottom:573.733333pt;}
.y50_c00363{bottom:575.466667pt;}
.y4f_c00363{bottom:588.533333pt;}
.y1b_c00363{bottom:589.733333pt;}
.y4e_c00363{bottom:601.333333pt;}
.y1a_c00363{bottom:605.733333pt;}
.y4d_c00363{bottom:614.133333pt;}
.y19_c00363{bottom:624.933333pt;}
.y4c_c00363{bottom:627.200000pt;}
.y18_c00363{bottom:641.600000pt;}
.y4b_c00363{bottom:643.466667pt;}
.y4a_c00363{bottom:656.266667pt;}
.y17_c00363{bottom:664.266667pt;}
.y49_c00363{bottom:669.066667pt;}
.y16_c00363{bottom:680.266667pt;}
.y48_c00363{bottom:681.866667pt;}
.y47_c00363{bottom:694.400000pt;}
.y15_c00363{bottom:696.266667pt;}
.y46_c00363{bottom:709.066667pt;}
.y14_c00363{bottom:712.000000pt;}
.y45_c00363{bottom:720.933333pt;}
.y13_c00363{bottom:731.200000pt;}
.y44_c00363{bottom:740.800000pt;}
.y12_c00363{bottom:750.666667pt;}
.y43_c00363{bottom:753.600000pt;}
.y42_c00363{bottom:766.400000pt;}
.y11_c00363{bottom:766.666667pt;}
.y41_c00363{bottom:779.466667pt;}
.y10_c00363{bottom:782.666667pt;}
.y40_c00363{bottom:792.266667pt;}
.yf_c00363{bottom:798.666667pt;}
.y3f_c00363{bottom:804.800000pt;}
.ye_c00363{bottom:814.400000pt;}
.yd_c00363{bottom:830.133333pt;}
.yc_c00363{bottom:846.400000pt;}
.y3e_c00363{bottom:851.200000pt;}
.yb_c00363{bottom:862.400000pt;}
.y3d_c00363{bottom:867.200000pt;}
.ya_c00363{bottom:878.133333pt;}
.y3c_c00363{bottom:883.466667pt;}
.y9_c00363{bottom:893.866667pt;}
.y3b_c00363{bottom:899.200000pt;}
.y8_c00363{bottom:909.866667pt;}
.y7_c00363{bottom:925.600000pt;}
.y3a_c00363{bottom:925.733333pt;}
.y6_c00363{bottom:941.866667pt;}
.y39_c00363{bottom:942.000000pt;}
.y38_c00363{bottom:958.000000pt;}
.y5_c00363{bottom:958.133333pt;}
.y4_c00363{bottom:973.466667pt;}
.y37_c00363{bottom:974.000000pt;}
.y3_c00363{bottom:989.466667pt;}
.y36_c00363{bottom:989.733333pt;}
.y1_c00363{bottom:1012.533333pt;}
.y2_c00363{bottom:1013.200000pt;}
.h7_c00363{height:42.666667pt;}
.h6_c00363{height:48.000000pt;}
.h3_c00363{height:53.333333pt;}
.h4_c00363{height:58.666667pt;}
.h5_c00363{height:64.000000pt;}
.h2_c00363{height:69.333333pt;}
.h0_c00363{height:1126.400065pt;}
.h1_c00363{height:1126.666667pt;}
.w0_c00363{width:853.760009pt;}
.w1_c00363{width:854.000000pt;}
.x0_c00363{left:0.000000pt;}
.x7f_c00363{left:170.933333pt;}
.x74_c00363{left:171.866667pt;}
.x1_c00363{left:172.800000pt;}
.x60_c00363{left:174.400000pt;}
.x8e_c00363{left:185.333333pt;}
.x69_c00363{left:187.466667pt;}
.xb_c00363{left:188.533333pt;}
.x3_c00363{left:190.133333pt;}
.x97_c00363{left:194.133333pt;}
.x7d_c00363{left:198.400000pt;}
.x1c_c00363{left:204.000000pt;}
.x20_c00363{left:205.333333pt;}
.x8f_c00363{left:206.400000pt;}
.x37_c00363{left:208.266667pt;}
.x83_c00363{left:209.866667pt;}
.x58_c00363{left:211.333333pt;}
.x61_c00363{left:213.066667pt;}
.x77_c00363{left:217.600000pt;}
.x28_c00363{left:220.933333pt;}
.x32_c00363{left:222.266667pt;}
.x6d_c00363{left:223.333333pt;}
.x5c_c00363{left:225.333333pt;}
.x81_c00363{left:227.466667pt;}
.x53_c00363{left:228.800000pt;}
.x49_c00363{left:230.533333pt;}
.x4_c00363{left:232.400000pt;}
.x3c_c00363{left:235.200000pt;}
.x91_c00363{left:237.200000pt;}
.x29_c00363{left:238.533333pt;}
.x90_c00363{left:240.000000pt;}
.x5_c00363{left:242.666667pt;}
.x5e_c00363{left:243.866667pt;}
.x62_c00363{left:245.066667pt;}
.x51_c00363{left:246.266667pt;}
.x44_c00363{left:247.866667pt;}
.x2e_c00363{left:249.066667pt;}
.x3d_c00363{left:250.266667pt;}
.x1d_c00363{left:251.733333pt;}
.x84_c00363{left:253.066667pt;}
.x6a_c00363{left:254.400000pt;}
.xc_c00363{left:256.400000pt;}
.x8b_c00363{left:258.266667pt;}
.x21_c00363{left:260.000000pt;}
.x5f_c00363{left:261.200000pt;}
.x59_c00363{left:262.800000pt;}
.x2f_c00363{left:265.333333pt;}
.x94_c00363{left:266.666667pt;}
.xd_c00363{left:268.266667pt;}
.x52_c00363{left:269.600000pt;}
.x75_c00363{left:270.666667pt;}
.x71_c00363{left:273.333333pt;}
.x12_c00363{left:275.466667pt;}
.x22_c00363{left:277.866667pt;}
.x45_c00363{left:279.200000pt;}
.x2a_c00363{left:280.800000pt;}
.x1e_c00363{left:282.533333pt;}
.x7a_c00363{left:283.466667pt;}
.x63_c00363{left:285.733333pt;}
.x89_c00363{left:287.733333pt;}
.xe_c00363{left:288.800000pt;}
.x13_c00363{left:290.533333pt;}
.x3e_c00363{left:292.533333pt;}
.x8a_c00363{left:296.400000pt;}
.x72_c00363{left:297.600000pt;}
.x80_c00363{left:298.533333pt;}
.x6b_c00363{left:300.133333pt;}
.x54_c00363{left:301.066667pt;}
.x3f_c00363{left:302.800000pt;}
.x64_c00363{left:304.266667pt;}
.x8c_c00363{left:306.000000pt;}
.x14_c00363{left:307.466667pt;}
.x23_c00363{left:310.533333pt;}
.x6_c00363{left:312.400000pt;}
.x4a_c00363{left:314.400000pt;}
.x46_c00363{left:316.933333pt;}
.x24_c00363{left:319.200000pt;}
.x7b_c00363{left:320.266667pt;}
.x55_c00363{left:321.866667pt;}
.x33_c00363{left:322.800000pt;}
.x19_c00363{left:325.733333pt;}
.x38_c00363{left:328.933333pt;}
.x4b_c00363{left:330.133333pt;}
.x95_c00363{left:331.600000pt;}
.x92_c00363{left:332.533333pt;}
.x4d_c00363{left:334.000000pt;}
.x30_c00363{left:336.133333pt;}
.x25_c00363{left:338.133333pt;}
.x82_c00363{left:340.400000pt;}
.xf_c00363{left:341.333333pt;}
.x15_c00363{left:342.400000pt;}
.x73_c00363{left:344.400000pt;}
.x47_c00363{left:346.666667pt;}
.x76_c00363{left:348.533333pt;}
.x40_c00363{left:350.133333pt;}
.x31_c00363{left:353.066667pt;}
.x4e_c00363{left:357.333333pt;}
.x7_c00363{left:358.800000pt;}
.x16_c00363{left:360.000000pt;}
.x65_c00363{left:361.466667pt;}
.x26_c00363{left:363.066667pt;}
.x10_c00363{left:364.400000pt;}
.x48_c00363{left:366.533333pt;}
.x6e_c00363{left:371.200000pt;}
.x41_c00363{left:372.400000pt;}
.x8d_c00363{left:373.866667pt;}
.x87_c00363{left:376.666667pt;}
.x56_c00363{left:377.866667pt;}
.x27_c00363{left:378.800000pt;}
.x34_c00363{left:381.333333pt;}
.x42_c00363{left:382.666667pt;}
.x1a_c00363{left:385.200000pt;}
.x2_c00363{left:386.533333pt;}
.x5d_c00363{left:387.600000pt;}
.x96_c00363{left:389.200000pt;}
.x86_c00363{left:390.133333pt;}
.x5a_c00363{left:393.866667pt;}
.x8_c00363{left:395.600000pt;}
.x39_c00363{left:397.733333pt;}
.x78_c00363{left:400.400000pt;}
.x17_c00363{left:402.533333pt;}
.x88_c00363{left:403.600000pt;}
.x6f_c00363{left:404.800000pt;}
.x11_c00363{left:407.333333pt;}
.x2b_c00363{left:408.800000pt;}
.x66_c00363{left:411.733333pt;}
.x35_c00363{left:413.066667pt;}
.x5b_c00363{left:414.666667pt;}
.x4f_c00363{left:415.600000pt;}
.x9_c00363{left:416.666667pt;}
.x2c_c00363{left:418.400000pt;}
.x93_c00363{left:421.466667pt;}
.x4c_c00363{left:425.066667pt;}
.x99_c00363{left:426.533333pt;}
.x43_c00363{left:427.733333pt;}
.x98_c00363{left:430.000000pt;}
.x67_c00363{left:431.600000pt;}
.x2d_c00363{left:433.066667pt;}
.x7c_c00363{left:434.800000pt;}
.xa_c00363{left:435.866667pt;}
.x3a_c00363{left:438.666667pt;}
.x57_c00363{left:440.533333pt;}
.x36_c00363{left:442.800000pt;}
.x6c_c00363{left:445.066667pt;}
.x50_c00363{left:446.933333pt;}
.x18_c00363{left:448.000000pt;}
.x70_c00363{left:449.600000pt;}
.x68_c00363{left:450.800000pt;}
.x3b_c00363{left:452.800000pt;}
.x7e_c00363{left:456.000000pt;}
.x79_c00363{left:458.933333pt;}
.x1f_c00363{left:460.400000pt;}
.x85_c00363{left:461.733333pt;}
.x1b_c00363{left:468.666667pt;}
.x143_c00363{left:489.466667pt;}
.x13a_c00363{left:490.400000pt;}
.xd2_c00363{left:491.466667pt;}
.xb7_c00363{left:492.533333pt;}
.x104_c00363{left:498.266667pt;}
.x136_c00363{left:500.000000pt;}
.x11d_c00363{left:501.066667pt;}
.x139_c00363{left:503.066667pt;}
.xcb_c00363{left:504.933333pt;}
.x13c_c00363{left:506.400000pt;}
.xc2_c00363{left:507.466667pt;}
.x9a_c00363{left:508.533333pt;}
.x147_c00363{left:511.600000pt;}
.xee_c00363{left:516.933333pt;}
.xeb_c00363{left:519.066667pt;}
.xd3_c00363{left:520.933333pt;}
.xa8_c00363{left:522.933333pt;}
.xf5_c00363{left:524.933333pt;}
.xcc_c00363{left:526.400000pt;}
.x111_c00363{left:528.133333pt;}
.x13b_c00363{left:529.066667pt;}
.x124_c00363{left:530.533333pt;}
.x11e_c00363{left:533.733333pt;}
.xe0_c00363{left:535.200000pt;}
.xa2_c00363{left:536.800000pt;}
.xd9_c00363{left:538.800000pt;}
.xc9_c00363{left:540.400000pt;}
.x144_c00363{left:542.000000pt;}
.xbe_c00363{left:544.000000pt;}
.x130_c00363{left:544.933333pt;}
.xb8_c00363{left:546.000000pt;}
.x12a_c00363{left:546.933333pt;}
.xc3_c00363{left:549.333333pt;}
.xe1_c00363{left:551.466667pt;}
.x125_c00363{left:552.933333pt;}
.xb1_c00363{left:554.933333pt;}
.x114_c00363{left:557.066667pt;}
.x10b_c00363{left:558.000000pt;}
.xfa_c00363{left:560.266667pt;}
.xb9_c00363{left:562.266667pt;}
.x105_c00363{left:563.200000pt;}
.xda_c00363{left:564.400000pt;}
.x119_c00363{left:565.866667pt;}
.x13f_c00363{left:566.800000pt;}
.xa9_c00363{left:569.066667pt;}
.x137_c00363{left:571.466667pt;}
.xb2_c00363{left:573.200000pt;}
.xef_c00363{left:574.533333pt;}
.xca_c00363{left:576.533333pt;}
.xdc_c00363{left:577.600000pt;}
.x11f_c00363{left:578.533333pt;}
.x9b_c00363{left:580.266667pt;}
.xa3_c00363{left:581.866667pt;}
.xec_c00363{left:583.333333pt;}
.xb6_c00363{left:585.066667pt;}
.x145_c00363{left:586.133333pt;}
.xaa_c00363{left:587.333333pt;}
.x109_c00363{left:588.800000pt;}
.xbf_c00363{left:590.666667pt;}
.x120_c00363{left:592.266667pt;}
.xe2_c00363{left:594.000000pt;}
.x123_c00363{left:594.933333pt;}
.x115_c00363{left:596.800000pt;}
.xd4_c00363{left:597.866667pt;}
.xf6_c00363{left:599.200000pt;}
.x132_c00363{left:600.133333pt;}
.xa4_c00363{left:602.400000pt;}
.x11a_c00363{left:604.266667pt;}
.xc4_c00363{left:606.266667pt;}
.xcd_c00363{left:608.000000pt;}
.xb3_c00363{left:609.066667pt;}
.xab_c00363{left:610.000000pt;}
.x11b_c00363{left:610.933333pt;}
.x148_c00363{left:612.000000pt;}
.xc0_c00363{left:613.066667pt;}
.x9c_c00363{left:614.533333pt;}
.x133_c00363{left:616.133333pt;}
.x127_c00363{left:617.600000pt;}
.xdd_c00363{left:619.200000pt;}
.x117_c00363{left:620.266667pt;}
.xba_c00363{left:621.466667pt;}
.x12d_c00363{left:623.200000pt;}
.xb4_c00363{left:624.400000pt;}
.x149_c00363{left:626.133333pt;}
.xf0_c00363{left:627.066667pt;}
.xac_c00363{left:628.933333pt;}
.xc5_c00363{left:630.933333pt;}
.x14a_c00363{left:631.866667pt;}
.x9d_c00363{left:634.000000pt;}
.x121_c00363{left:635.466667pt;}
.xbb_c00363{left:636.533333pt;}
.xe3_c00363{left:638.533333pt;}
.xfe_c00363{left:640.533333pt;}
.x10a_c00363{left:641.866667pt;}
.x138_c00363{left:644.400000pt;}
.xa5_c00363{left:646.533333pt;}
.xd5_c00363{left:648.533333pt;}
.xe9_c00363{left:649.866667pt;}
.x13d_c00363{left:651.066667pt;}
.xe4_c00363{left:652.000000pt;}
.x10f_c00363{left:653.733333pt;}
.xce_c00363{left:655.066667pt;}
.x14d_c00363{left:656.000000pt;}
.xfb_c00363{left:657.333333pt;}
.x13e_c00363{left:658.400000pt;}
.xad_c00363{left:659.333333pt;}
.xf7_c00363{left:660.933333pt;}
.x12e_c00363{left:663.200000pt;}
.xd6_c00363{left:667.733333pt;}
.xde_c00363{left:669.733333pt;}
.x106_c00363{left:670.933333pt;}
.x101_c00363{left:672.266667pt;}
.x11c_c00363{left:673.333333pt;}
.x122_c00363{left:674.533333pt;}
.x141_c00363{left:676.000000pt;}
.xae_c00363{left:676.933333pt;}
.xbc_c00363{left:678.400000pt;}
.xfc_c00363{left:679.466667pt;}
.xa6_c00363{left:681.733333pt;}
.x128_c00363{left:683.866667pt;}
.x9e_c00363{left:685.200000pt;}
.xb5_c00363{left:688.666667pt;}
.x126_c00363{left:690.933333pt;}
.x112_c00363{left:691.866667pt;}
.xe5_c00363{left:693.333333pt;}
.xc6_c00363{left:694.666667pt;}
.x9f_c00363{left:697.066667pt;}
.xff_c00363{left:699.466667pt;}
.x140_c00363{left:701.600000pt;}
.x107_c00363{left:702.933333pt;}
.xd7_c00363{left:704.800000pt;}
.x12b_c00363{left:705.733333pt;}
.xc7_c00363{left:706.800000pt;}
.x10c_c00363{left:708.133333pt;}
.x129_c00363{left:709.600000pt;}
.xfd_c00363{left:711.200000pt;}
.xdb_c00363{left:712.266667pt;}
.x110_c00363{left:713.333333pt;}
.xf1_c00363{left:714.533333pt;}
.x134_c00363{left:716.000000pt;}
.xf8_c00363{left:717.600000pt;}
.xcf_c00363{left:720.000000pt;}
.xea_c00363{left:721.200000pt;}
.xe6_c00363{left:724.400000pt;}
.xa0_c00363{left:725.866667pt;}
.xd8_c00363{left:726.933333pt;}
.x12c_c00363{left:728.400000pt;}
.x116_c00363{left:729.600000pt;}
.xa7_c00363{left:732.266667pt;}
.x113_c00363{left:733.466667pt;}
.x10d_c00363{left:735.600000pt;}
.x108_c00363{left:736.933333pt;}
.x142_c00363{left:740.000000pt;}
.x118_c00363{left:741.866667pt;}
.xf2_c00363{left:743.066667pt;}
.xbd_c00363{left:744.933333pt;}
.xd0_c00363{left:745.866667pt;}
.xe7_c00363{left:747.466667pt;}
.x135_c00363{left:748.666667pt;}
.x102_c00363{left:749.733333pt;}
.x12f_c00363{left:751.333333pt;}
.xdf_c00363{left:752.400000pt;}
.x10e_c00363{left:755.066667pt;}
.xf3_c00363{left:758.133333pt;}
.xc8_c00363{left:759.866667pt;}
.xa1_c00363{left:762.400000pt;}
.x103_c00363{left:764.133333pt;}
.xaf_c00363{left:765.200000pt;}
.x14c_c00363{left:766.533333pt;}
.xed_c00363{left:767.600000pt;}
.xe8_c00363{left:769.200000pt;}
.xf4_c00363{left:770.933333pt;}
.x14b_c00363{left:772.000000pt;}
.xd1_c00363{left:774.933333pt;}
.x100_c00363{left:777.866667pt;}
.xf9_c00363{left:780.533333pt;}
.x146_c00363{left:781.600000pt;}
.xc1_c00363{left:782.666667pt;}
.xb0_c00363{left:783.733333pt;}
.x131_c00363{left:786.800000pt;}
}





/* 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_c00364 {
    display:none;
  }
  .loading-indicator_c00364.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00364 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_c00364 { 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_c00364" -> "#page-container .classname_c00364")
 */
.pf_c00364 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00364 { /* 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_c00364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00364 { /* 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_c00364 { /* 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_c00364 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00364 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00364 {overflow:visible;}
  }
}
.c_c00364 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00364 { /* 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_c00364:after { /* webkit #35443 */
  content: '';
}
.t_c00364:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00364 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 */
}
.__c00364 { /* 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_c00364 { /* info for Javascript */
  display:none;
}
.l_c00364 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00364 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00364 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00364: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_c00364 {
    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_c00364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00364.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_c00364 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00364;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.000000;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;}
.mf1_c00364{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00364{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m123_c00364{transform:matrix(0.046750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046750,0.000000,0.000000,0.250000,0,0);}
.mde_c00364{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m117_c00364{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m122_c00364{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m130_c00364{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m124_c00364{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m14_c00364{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m121_c00364{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00364{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m103_c00364{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mec_c00364{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m127_c00364{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00364{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00364{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00364{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m106_c00364{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m96_c00364{transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00364{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00364{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m69_c00364{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00364{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00364{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m60_c00364{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00364{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m97_c00364{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m112_c00364{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m33_c00364{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m8_c00364{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00364{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m111_c00364{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mef_c00364{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00364{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m31_c00364{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00364{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m26_c00364{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m32_c00364{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00364{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m50_c00364{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m15_c00364{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00364{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m129_c00364{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m95_c00364{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m41_c00364{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m72_c00364{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m71_c00364{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00364{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mee_c00364{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m70_c00364{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00364{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m75_c00364{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00364{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00364{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m76_c00364{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00364{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m100_c00364{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00364{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb_c00364{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mba_c00364{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00364{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00364{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00364{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00364{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00364{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m16_c00364{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m110_c00364{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00364{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00364{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7_c00364{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00364{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m105_c00364{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m78_c00364{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00364{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mae_c00364{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m134_c00364{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m89_c00364{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.maa_c00364{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00364{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00364{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.md1_c00364{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00364{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.med_c00364{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00364{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00364{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00364{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m61_c00364{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00364{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00364{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.maf_c00364{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00364{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m19_c00364{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m38_c00364{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me6_c00364{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m65_c00364{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m36_c00364{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md9_c00364{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00364{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00364{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m24_c00364{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00364{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00364{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me5_c00364{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m73_c00364{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00364{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00364{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mad_c00364{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00364{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me2_c00364{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00364{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m30_c00364{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00364{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.meb_c00364{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00364{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00364{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m5_c00364{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00364{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m135_c00364{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m44_c00364{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m53_c00364{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m47_c00364{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m13_c00364{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00364{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mea_c00364{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m28_c00364{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me1_c00364{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me3_c00364{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md2_c00364{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00364{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m43_c00364{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m9_c00364{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mff_c00364{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m104_c00364{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m37_c00364{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m42_c00364{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00364{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m63_c00364{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00364{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00364{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m85_c00364{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00364{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00364{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md3_c00364{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00364{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m80_c00364{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m39_c00364{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00364{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m88_c00364{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00364{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00364{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00364{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.md0_c00364{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m77_c00364{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00364{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.md6_c00364{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m87_c00364{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m57_c00364{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00364{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m115_c00364{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00364{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00364{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00364{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m83_c00364{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00364{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me9_c00364{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00364{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00364{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6_c00364{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.md5_c00364{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m108_c00364{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.md7_c00364{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m48_c00364{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00364{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m49_c00364{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00364{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00364{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m116_c00364{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00364{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00364{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00364{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me8_c00364{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m25_c00364{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m98_c00364{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf_c00364{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m74_c00364{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m27_c00364{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00364{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m82_c00364{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m45_c00364{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md_c00364{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m79_c00364{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc_c00364{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m35_c00364{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00364{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m58_c00364{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00364{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00364{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m29_c00364{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m67_c00364{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.ma_c00364{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00364{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m131_c00364{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00364{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m66_c00364{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mac_c00364{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me7_c00364{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m99_c00364{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00364{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00364{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1_c00364{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00364{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00364{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m51_c00364{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m136_c00364{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mab_c00364{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m59_c00364{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m55_c00364{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00364{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00364{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m114_c00364{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m64_c00364{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00364{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00364{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m133_c00364{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m12_c00364{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m56_c00364{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m109_c00364{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00364{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00364{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00364{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00364{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md8_c00364{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me0_c00364{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m21_c00364{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00364{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00364{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);}
.m93_c00364{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mda_c00364{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mca_c00364{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00364{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m23_c00364{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00364{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00364{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00364{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00364{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m92_c00364{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md4_c00364{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00364{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m20_c00364{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00364{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m107_c00364{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.me4_c00364{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m68_c00364{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m132_c00364{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00364{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m86_c00364{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00364{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m119_c00364{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.me_c00364{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m120_c00364{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00364{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m34_c00364{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m52_c00364{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m90_c00364{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m18_c00364{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00364{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m10_c00364{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00364{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00364{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m118_c00364{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00364{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m91_c00364{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m46_c00364{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m125_c00364{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00364{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00364{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m94_c00364{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00364{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m81_c00364{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mce_c00364{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00364{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m11_c00364{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m22_c00364{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00364{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00364{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00364{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00364{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00364{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00364{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00364{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m113_c00364{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00364{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m102_c00364{transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00364{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m101_c00364{transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);}
.m62_c00364{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m2_c00364{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m54_c00364{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00364{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m128_c00364{transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00364{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m126_c00364{transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330250,0.000000,0.000000,0.250000,0,0);}
.m4_c00364{transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00364{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m3_c00364{transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00364{transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);}
.m40_c00364{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00364{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m137_c00364{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m0_c00364{transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00364{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00364{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls2_c00364{letter-spacing:0.000000px;}
.ls1_c00364{letter-spacing:49.072993px;}
.ls0_c00364{letter-spacing:63.000000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{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__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00364{word-spacing:-90.000000px;}
.wsa_c00364{word-spacing:-70.072993px;}
.wsb_c00364{word-spacing:-12.322957px;}
.ws3_c00364{word-spacing:-8.333333px;}
.ws8_c00364{word-spacing:-5.913462px;}
.ws9_c00364{word-spacing:-5.540541px;}
.ws1_c00364{word-spacing:-5.303634px;}
.wsc_c00364{word-spacing:0.000000px;}
.ws2_c00364{word-spacing:5.000000px;}
.ws0_c00364{word-spacing:13.333333px;}
.ws4_c00364{word-spacing:17.500000px;}
.ws5_c00364{word-spacing:23.211796px;}
.ws7_c00364{word-spacing:39.750000px;}
._1_c00364{margin-left:-63.000000px;}
._3_c00364{margin-left:-49.072993px;}
._0_c00364{width:53.428954px;}
._2_c00364{width:63.000000px;}
.fc0_c00364{color:transparent;}
.fs6_c00364{font-size:42.000000px;}
.fs4_c00364{font-size:48.000000px;}
.fs5_c00364{font-size:54.000000px;}
.fs3_c00364{font-size:60.000000px;}
.fs2_c00364{font-size:66.000000px;}
.fs1_c00364{font-size:72.000000px;}
.fs0_c00364{font-size:78.000000px;}
.y0_c00364{bottom:0.000000px;}
.y6c_c00364{bottom:186.150000px;}
.y6b_c00364{bottom:204.450000px;}
.y39_c00364{bottom:204.600000px;}
.y38_c00364{bottom:219.300000px;}
.y6a_c00364{bottom:222.450000px;}
.y37_c00364{bottom:234.000000px;}
.y69_c00364{bottom:240.450000px;}
.y36_c00364{bottom:247.650000px;}
.y35_c00364{bottom:262.050000px;}
.y68_c00364{bottom:265.800000px;}
.y34_c00364{bottom:276.150000px;}
.y67_c00364{bottom:280.200000px;}
.y33_c00364{bottom:291.300000px;}
.y66_c00364{bottom:294.900000px;}
.y32_c00364{bottom:305.400000px;}
.y65_c00364{bottom:309.000000px;}
.y31_c00364{bottom:320.100000px;}
.y64_c00364{bottom:323.700000px;}
.y30_c00364{bottom:334.500000px;}
.y63_c00364{bottom:337.650000px;}
.y2f_c00364{bottom:348.600000px;}
.y62_c00364{bottom:352.050000px;}
.y2e_c00364{bottom:362.700000px;}
.y61_c00364{bottom:365.850000px;}
.y2d_c00364{bottom:377.400000px;}
.y60_c00364{bottom:380.550000px;}
.y2c_c00364{bottom:392.100000px;}
.y5f_c00364{bottom:396.750000px;}
.y2b_c00364{bottom:405.600000px;}
.y5e_c00364{bottom:413.400000px;}
.y2a_c00364{bottom:420.300000px;}
.y5d_c00364{bottom:432.150000px;}
.y29_c00364{bottom:434.400000px;}
.y28_c00364{bottom:448.500000px;}
.y5c_c00364{bottom:449.850000px;}
.y27_c00364{bottom:462.900000px;}
.y5b_c00364{bottom:467.550000px;}
.y26_c00364{bottom:477.300000px;}
.y5a_c00364{bottom:485.250000px;}
.y25_c00364{bottom:491.400000px;}
.y59_c00364{bottom:502.950000px;}
.y24_c00364{bottom:506.100000px;}
.y23_c00364{bottom:520.500000px;}
.y58_c00364{bottom:529.650000px;}
.y22_c00364{bottom:534.600000px;}
.y57_c00364{bottom:547.650000px;}
.y21_c00364{bottom:549.000000px;}
.y20_c00364{bottom:564.150000px;}
.y56_c00364{bottom:565.350000px;}
.y1f_c00364{bottom:577.800000px;}
.y55_c00364{bottom:583.050000px;}
.y1e_c00364{bottom:592.200000px;}
.y54_c00364{bottom:602.550000px;}
.y1d_c00364{bottom:606.600000px;}
.y53_c00364{bottom:618.750000px;}
.y1c_c00364{bottom:621.000000px;}
.y1b_c00364{bottom:635.400000px;}
.y52_c00364{bottom:638.250000px;}
.y1a_c00364{bottom:649.050000px;}
.y51_c00364{bottom:658.800000px;}
.y19_c00364{bottom:669.600000px;}
.y50_c00364{bottom:676.050000px;}
.y18_c00364{bottom:678.600000px;}
.y17_c00364{bottom:693.000000px;}
.y16_c00364{bottom:707.100000px;}
.y4f_c00364{bottom:710.550000px;}
.y15_c00364{bottom:721.500000px;}
.y4e_c00364{bottom:729.300000px;}
.y14_c00364{bottom:735.900000px;}
.y13_c00364{bottom:750.300000px;}
.y4d_c00364{bottom:764.550000px;}
.y12_c00364{bottom:764.700000px;}
.y4c_c00364{bottom:782.550000px;}
.y4b_c00364{bottom:800.250000px;}
.y11_c00364{bottom:815.850000px;}
.y4a_c00364{bottom:822.600000px;}
.y10_c00364{bottom:838.500000px;}
.y49_c00364{bottom:840.300000px;}
.y48_c00364{bottom:857.400000px;}
.yf_c00364{bottom:860.400000px;}
.y47_c00364{bottom:875.100000px;}
.ye_c00364{bottom:878.400000px;}
.yd_c00364{bottom:900.300000px;}
.y46_c00364{bottom:901.050000px;}
.yc_c00364{bottom:918.300000px;}
.y45_c00364{bottom:922.650000px;}
.yb_c00364{bottom:936.300000px;}
.y44_c00364{bottom:940.650000px;}
.ya_c00364{bottom:956.250000px;}
.y43_c00364{bottom:962.550000px;}
.y9_c00364{bottom:970.950000px;}
.y42_c00364{bottom:980.250000px;}
.y8_c00364{bottom:995.850000px;}
.y41_c00364{bottom:998.250000px;}
.y7_c00364{bottom:1007.400000px;}
.y40_c00364{bottom:1015.950000px;}
.y6_c00364{bottom:1023.900000px;}
.y3f_c00364{bottom:1033.200000px;}
.y5_c00364{bottom:1050.150000px;}
.y3e_c00364{bottom:1054.950000px;}
.y4_c00364{bottom:1068.450000px;}
.y3d_c00364{bottom:1075.800000px;}
.y3_c00364{bottom:1090.050000px;}
.y3c_c00364{bottom:1090.500000px;}
.y3b_c00364{bottom:1108.500000px;}
.y2_c00364{bottom:1124.250000px;}
.y3a_c00364{bottom:1125.750000px;}
.y1_c00364{bottom:1152.000000px;}
.h8_c00364{height:42.000000px;}
.h6_c00364{height:48.000000px;}
.h7_c00364{height:54.000000px;}
.h5_c00364{height:60.000000px;}
.h4_c00364{height:66.000000px;}
.h3_c00364{height:72.000000px;}
.h2_c00364{height:78.000000px;}
.h0_c00364{height:1271.879975px;}
.h1_c00364{height:1272.000000px;}
.w0_c00364{width:960.480010px;}
.w1_c00364{width:960.750000px;}
.x0_c00364{left:0.000000px;}
.x4c_c00364{left:94.650000px;}
.x5_c00364{left:95.700000px;}
.x5d_c00364{left:96.900000px;}
.x78_c00364{left:105.600000px;}
.x22_c00364{left:109.950000px;}
.x62_c00364{left:111.450000px;}
.xe_c00364{left:114.150000px;}
.xa0_c00364{left:117.750000px;}
.x52_c00364{left:119.400000px;}
.xa9_c00364{left:123.450000px;}
.xab_c00364{left:124.650000px;}
.x1a_c00364{left:126.750000px;}
.x83_c00364{left:129.450000px;}
.xa_c00364{left:131.400000px;}
.x35_c00364{left:132.450000px;}
.x3b_c00364{left:133.950000px;}
.x79_c00364{left:135.450000px;}
.x94_c00364{left:137.100000px;}
.x43_c00364{left:138.600000px;}
.x4d_c00364{left:139.650000px;}
.x7d_c00364{left:141.150000px;}
.x8f_c00364{left:142.200000px;}
.x3c_c00364{left:144.000000px;}
.x7f_c00364{left:146.400000px;}
.xaa_c00364{left:149.100000px;}
.x17_c00364{left:150.300000px;}
.xa4_c00364{left:152.400000px;}
.x8c_c00364{left:153.450000px;}
.x56_c00364{left:154.800000px;}
.x3_c00364{left:155.850000px;}
.x7a_c00364{left:158.550000px;}
.xa5_c00364{left:160.500000px;}
.x6f_c00364{left:162.150000px;}
.x68_c00364{left:163.200000px;}
.x90_c00364{left:164.550000px;}
.x3d_c00364{left:165.600000px;}
.x9c_c00364{left:166.650000px;}
.x57_c00364{left:168.150000px;}
.x10_c00364{left:169.200000px;}
.x1b_c00364{left:170.700000px;}
.xf_c00364{left:172.050000px;}
.xad_c00364{left:174.450000px;}
.x48_c00364{left:175.500000px;}
.x2d_c00364{left:177.900000px;}
.x23_c00364{left:179.400000px;}
.x6c_c00364{left:181.650000px;}
.x18_c00364{left:182.850000px;}
.x3e_c00364{left:186.150000px;}
.x44_c00364{left:187.200000px;}
.x4e_c00364{left:189.600000px;}
.x28_c00364{left:191.400000px;}
.xb_c00364{left:194.100000px;}
.x36_c00364{left:195.450000px;}
.x24_c00364{left:197.100000px;}
.x97_c00364{left:198.450000px;}
.x32_c00364{left:199.650000px;}
.x72_c00364{left:201.000000px;}
.x91_c00364{left:202.650000px;}
.xa1_c00364{left:203.700000px;}
.x1c_c00364{left:205.650000px;}
.x7b_c00364{left:206.700000px;}
.x63_c00364{left:208.200000px;}
.x19_c00364{left:209.550000px;}
.x25_c00364{left:211.500000px;}
.x3f_c00364{left:213.150000px;}
.x58_c00364{left:215.400000px;}
.x53_c00364{left:216.900000px;}
.x98_c00364{left:218.550000px;}
.x45_c00364{left:220.350000px;}
.x70_c00364{left:221.550000px;}
.xae_c00364{left:223.950000px;}
.x64_c00364{left:226.500000px;}
.x1d_c00364{left:227.550000px;}
.x5e_c00364{left:229.800000px;}
.x75_c00364{left:231.150000px;}
.x11_c00364{left:232.950000px;}
.x6_c00364{left:234.600000px;}
.x49_c00364{left:238.200000px;}
.x37_c00364{left:239.700000px;}
.xa3_c00364{left:242.250000px;}
.x46_c00364{left:243.450000px;}
.xa6_c00364{left:245.100000px;}
.x59_c00364{left:246.750000px;}
.x89_c00364{left:248.400000px;}
.x76_c00364{left:250.950000px;}
.x2e_c00364{left:252.450000px;}
.x84_c00364{left:255.450000px;}
.x41_c00364{left:257.100000px;}
.x99_c00364{left:259.950000px;}
.x29_c00364{left:261.900000px;}
.x1e_c00364{left:263.550000px;}
.x65_c00364{left:265.050000px;}
.x5a_c00364{left:268.050000px;}
.x26_c00364{left:269.850000px;}
.x95_c00364{left:271.050000px;}
.x38_c00364{left:272.100000px;}
.x69_c00364{left:276.600000px;}
.x8a_c00364{left:277.950000px;}
.x40_c00364{left:279.750000px;}
.xc_c00364{left:282.000000px;}
.x85_c00364{left:283.200000px;}
.x5f_c00364{left:284.850000px;}
.x9a_c00364{left:286.200000px;}
.x33_c00364{left:288.150000px;}
.x4_c00364{left:289.350000px;}
.x9d_c00364{left:290.850000px;}
.x12_c00364{left:292.350000px;}
.x42_c00364{left:293.850000px;}
.x66_c00364{left:295.650000px;}
.x4f_c00364{left:297.600000px;}
.x2f_c00364{left:299.550000px;}
.x13_c00364{left:301.050000px;}
.x6a_c00364{left:302.550000px;}
.x34_c00364{left:304.650000px;}
.x7_c00364{left:306.300000px;}
.x86_c00364{left:309.150000px;}
.xb1_c00364{left:310.200000px;}
.x4a_c00364{left:311.250000px;}
.xaf_c00364{left:312.300000px;}
.x60_c00364{left:313.350000px;}
.x50_c00364{left:316.350000px;}
.x6d_c00364{left:318.450000px;}
.x73_c00364{left:321.150000px;}
.x5b_c00364{left:322.350000px;}
.x71_c00364{left:323.400000px;}
.x30_c00364{left:325.500000px;}
.xa7_c00364{left:326.850000px;}
.x1f_c00364{left:328.050000px;}
.x2a_c00364{left:330.000000px;}
.x8d_c00364{left:331.500000px;}
.x27_c00364{left:334.950000px;}
.x87_c00364{left:336.450000px;}
.x1_c00364{left:337.650000px;}
.x39_c00364{left:339.750000px;}
.x54_c00364{left:340.800000px;}
.x14_c00364{left:342.150000px;}
.x80_c00364{left:343.200000px;}
.x8_c00364{left:344.850000px;}
.x9e_c00364{left:346.650000px;}
.x20_c00364{left:350.400000px;}
.xa2_c00364{left:352.050000px;}
.x8e_c00364{left:354.600000px;}
.x77_c00364{left:356.100000px;}
.x7e_c00364{left:358.500000px;}
.xb2_c00364{left:361.650000px;}
.x15_c00364{left:362.700000px;}
.x61_c00364{left:363.750000px;}
.x31_c00364{left:367.650000px;}
.x9b_c00364{left:369.450000px;}
.x88_c00364{left:370.950000px;}
.xb0_c00364{left:372.450000px;}
.x81_c00364{left:374.550000px;}
.x9f_c00364{left:377.250000px;}
.x4b_c00364{left:378.600000px;}
.xa8_c00364{left:381.150000px;}
.x21_c00364{left:382.800000px;}
.x92_c00364{left:384.150000px;}
.xd_c00364{left:387.450000px;}
.x74_c00364{left:389.250000px;}
.x6e_c00364{left:391.200000px;}
.x2b_c00364{left:393.000000px;}
.xac_c00364{left:394.050000px;}
.x16_c00364{left:395.100000px;}
.x47_c00364{left:396.150000px;}
.x9_c00364{left:398.100000px;}
.x51_c00364{left:400.500000px;}
.x2c_c00364{left:401.700000px;}
.x5c_c00364{left:403.950000px;}
.x96_c00364{left:405.000000px;}
.x67_c00364{left:406.800000px;}
.x6b_c00364{left:408.000000px;}
.x93_c00364{left:409.350000px;}
.x3a_c00364{left:411.750000px;}
.x55_c00364{left:415.350000px;}
.x82_c00364{left:419.550000px;}
.x8b_c00364{left:421.950000px;}
.x7c_c00364{left:427.050000px;}
.x138_c00364{left:450.300000px;}
.xf3_c00364{left:451.800000px;}
.x10e_c00364{left:454.350000px;}
.x13e_c00364{left:463.350000px;}
.x13c_c00364{left:464.400000px;}
.xc8_c00364{left:467.100000px;}
.x130_c00364{left:468.150000px;}
.xba_c00364{left:469.800000px;}
.x146_c00364{left:477.750000px;}
.x142_c00364{left:479.100000px;}
.xe7_c00364{left:480.450000px;}
.x112_c00364{left:483.150000px;}
.xd1_c00364{left:486.750000px;}
.xb3_c00364{left:488.850000px;}
.x122_c00364{left:490.950000px;}
.x13d_c00364{left:493.950000px;}
.x12b_c00364{left:495.750000px;}
.x10f_c00364{left:499.050000px;}
.x147_c00364{left:500.100000px;}
.xdd_c00364{left:503.550000px;}
.xfe_c00364{left:505.050000px;}
.x119_c00364{left:506.100000px;}
.x139_c00364{left:509.400000px;}
.xd8_c00364{left:510.600000px;}
.x104_c00364{left:512.700000px;}
.xbb_c00364{left:513.750000px;}
.x123_c00364{left:516.150000px;}
.xf4_c00364{left:517.350000px;}
.x128_c00364{left:518.550000px;}
.xf1_c00364{left:519.900000px;}
.xff_c00364{left:522.000000px;}
.xd2_c00364{left:526.050000px;}
.x143_c00364{left:527.400000px;}
.x11d_c00364{left:528.750000px;}
.xf6_c00364{left:529.950000px;}
.xe2_c00364{left:531.900000px;}
.xb4_c00364{left:533.100000px;}
.xeb_c00364{left:534.150000px;}
.xe8_c00364{left:538.350000px;}
.x137_c00364{left:539.400000px;}
.xc9_c00364{left:541.200000px;}
.xce_c00364{left:542.700000px;}
.xd3_c00364{left:545.850000px;}
.x13f_c00364{left:546.900000px;}
.x14b_c00364{left:548.550000px;}
.x100_c00364{left:549.750000px;}
.xc1_c00364{left:551.250000px;}
.xe3_c00364{left:552.750000px;}
.x131_c00364{left:555.000000px;}
.x11e_c00364{left:556.800000px;}
.x11a_c00364{left:559.350000px;}
.xcf_c00364{left:561.450000px;}
.x12c_c00364{left:564.900000px;}
.xd9_c00364{left:569.700000px;}
.x132_c00364{left:571.500000px;}
.x113_c00364{left:573.600000px;}
.x10c_c00364{left:575.100000px;}
.xe9_c00364{left:576.150000px;}
.xbc_c00364{left:577.500000px;}
.xec_c00364{left:580.650000px;}
.x11b_c00364{left:581.700000px;}
.xfa_c00364{left:583.200000px;}
.x129_c00364{left:585.150000px;}
.x107_c00364{left:587.550000px;}
.xed_c00364{left:590.700000px;}
.x13a_c00364{left:592.200000px;}
.xc2_c00364{left:593.400000px;}
.x133_c00364{left:596.400000px;}
.x12a_c00364{left:597.750000px;}
.xca_c00364{left:599.100000px;}
.xde_c00364{left:600.300000px;}
.xb5_c00364{left:602.250000px;}
.x114_c00364{left:603.450000px;}
.x10d_c00364{left:606.450000px;}
.xfb_c00364{left:608.100000px;}
.x124_c00364{left:609.750000px;}
.x11c_c00364{left:612.300000px;}
.xf2_c00364{left:614.250000px;}
.x101_c00364{left:616.350000px;}
.xb6_c00364{left:618.750000px;}
.xe4_c00364{left:621.900000px;}
.x148_c00364{left:623.850000px;}
.x14a_c00364{left:624.900000px;}
.x11f_c00364{left:626.250000px;}
.x121_c00364{left:628.050000px;}
.xda_c00364{left:629.100000px;}
.xc3_c00364{left:630.150000px;}
.xcb_c00364{left:632.250000px;}
.xee_c00364{left:636.750000px;}
.xfc_c00364{left:640.500000px;}
.x108_c00364{left:641.850000px;}
.x115_c00364{left:643.350000px;}
.x105_c00364{left:647.100000px;}
.x12d_c00364{left:648.450000px;}
.x110_c00364{left:650.250000px;}
.xea_c00364{left:651.450000px;}
.xdb_c00364{left:656.100000px;}
.x140_c00364{left:658.050000px;}
.x144_c00364{left:660.450000px;}
.xc4_c00364{left:661.500000px;}
.xbd_c00364{left:663.150000px;}
.x12e_c00364{left:665.700000px;}
.xe5_c00364{left:667.650000px;}
.xb7_c00364{left:669.900000px;}
.x149_c00364{left:671.400000px;}
.xf7_c00364{left:672.900000px;}
.xd4_c00364{left:674.250000px;}
.x125_c00364{left:675.600000px;}
.xdf_c00364{left:677.100000px;}
.x14c_c00364{left:678.150000px;}
.xbe_c00364{left:682.950000px;}
.xd5_c00364{left:685.350000px;}
.x116_c00364{left:687.300000px;}
.xcc_c00364{left:689.850000px;}
.x109_c00364{left:691.500000px;}
.xe6_c00364{left:694.650000px;}
.xf8_c00364{left:698.850000px;}
.xc5_c00364{left:700.800000px;}
.x117_c00364{left:703.050000px;}
.x13b_c00364{left:704.850000px;}
.xe0_c00364{left:706.650000px;}
.x134_c00364{left:708.750000px;}
.x126_c00364{left:710.100000px;}
.x120_c00364{left:711.600000px;}
.xcd_c00364{left:713.250000px;}
.xef_c00364{left:715.200000px;}
.x102_c00364{left:718.950000px;}
.xb8_c00364{left:720.000000px;}
.xdc_c00364{left:722.400000px;}
.xd6_c00364{left:726.450000px;}
.x111_c00364{left:729.750000px;}
.x136_c00364{left:733.350000px;}
.x10a_c00364{left:735.000000px;}
.xbf_c00364{left:736.950000px;}
.xd0_c00364{left:739.950000px;}
.x145_c00364{left:741.300000px;}
.x103_c00364{left:742.350000px;}
.xc6_c00364{left:744.300000px;}
.xe1_c00364{left:745.500000px;}
.x135_c00364{left:746.850000px;}
.xd7_c00364{left:748.800000px;}
.x118_c00364{left:751.650000px;}
.xf5_c00364{left:752.850000px;}
.x12f_c00364{left:754.650000px;}
.x10b_c00364{left:755.850000px;}
.xfd_c00364{left:757.050000px;}
.x2_c00364{left:760.650000px;}
.xf0_c00364{left:762.000000px;}
.xc7_c00364{left:765.150000px;}
.x14d_c00364{left:766.950000px;}
.x106_c00364{left:768.300000px;}
.x127_c00364{left:769.500000px;}
.x141_c00364{left:771.000000px;}
.xc0_c00364{left:772.200000px;}
.xf9_c00364{left:774.450000px;}
.xb9_c00364{left:776.550000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls2_c00364{letter-spacing:0.000000pt;}
.ls1_c00364{letter-spacing:43.620438pt;}
.ls0_c00364{letter-spacing:56.000000pt;}
.ws6_c00364{word-spacing:-80.000000pt;}
.wsa_c00364{word-spacing:-62.287105pt;}
.wsb_c00364{word-spacing:-10.953740pt;}
.ws3_c00364{word-spacing:-7.407407pt;}
.ws8_c00364{word-spacing:-5.256410pt;}
.ws9_c00364{word-spacing:-4.924925pt;}
.ws1_c00364{word-spacing:-4.714342pt;}
.wsc_c00364{word-spacing:0.000000pt;}
.ws2_c00364{word-spacing:4.444444pt;}
.ws0_c00364{word-spacing:11.851852pt;}
.ws4_c00364{word-spacing:15.555556pt;}
.ws5_c00364{word-spacing:20.632708pt;}
.ws7_c00364{word-spacing:35.333333pt;}
._1_c00364{margin-left:-56.000000pt;}
._3_c00364{margin-left:-43.620438pt;}
._0_c00364{width:47.492404pt;}
._2_c00364{width:56.000000pt;}
.fs6_c00364{font-size:37.333333pt;}
.fs4_c00364{font-size:42.666667pt;}
.fs5_c00364{font-size:48.000000pt;}
.fs3_c00364{font-size:53.333333pt;}
.fs2_c00364{font-size:58.666667pt;}
.fs1_c00364{font-size:64.000000pt;}
.fs0_c00364{font-size:69.333333pt;}
.y0_c00364{bottom:0.000000pt;}
.y6c_c00364{bottom:165.466667pt;}
.y6b_c00364{bottom:181.733333pt;}
.y39_c00364{bottom:181.866667pt;}
.y38_c00364{bottom:194.933333pt;}
.y6a_c00364{bottom:197.733333pt;}
.y37_c00364{bottom:208.000000pt;}
.y69_c00364{bottom:213.733333pt;}
.y36_c00364{bottom:220.133333pt;}
.y35_c00364{bottom:232.933333pt;}
.y68_c00364{bottom:236.266667pt;}
.y34_c00364{bottom:245.466667pt;}
.y67_c00364{bottom:249.066667pt;}
.y33_c00364{bottom:258.933333pt;}
.y66_c00364{bottom:262.133333pt;}
.y32_c00364{bottom:271.466667pt;}
.y65_c00364{bottom:274.666667pt;}
.y31_c00364{bottom:284.533333pt;}
.y64_c00364{bottom:287.733333pt;}
.y30_c00364{bottom:297.333333pt;}
.y63_c00364{bottom:300.133333pt;}
.y2f_c00364{bottom:309.866667pt;}
.y62_c00364{bottom:312.933333pt;}
.y2e_c00364{bottom:322.400000pt;}
.y61_c00364{bottom:325.200000pt;}
.y2d_c00364{bottom:335.466667pt;}
.y60_c00364{bottom:338.266667pt;}
.y2c_c00364{bottom:348.533333pt;}
.y5f_c00364{bottom:352.666667pt;}
.y2b_c00364{bottom:360.533333pt;}
.y5e_c00364{bottom:367.466667pt;}
.y2a_c00364{bottom:373.600000pt;}
.y5d_c00364{bottom:384.133333pt;}
.y29_c00364{bottom:386.133333pt;}
.y28_c00364{bottom:398.666667pt;}
.y5c_c00364{bottom:399.866667pt;}
.y27_c00364{bottom:411.466667pt;}
.y5b_c00364{bottom:415.600000pt;}
.y26_c00364{bottom:424.266667pt;}
.y5a_c00364{bottom:431.333333pt;}
.y25_c00364{bottom:436.800000pt;}
.y59_c00364{bottom:447.066667pt;}
.y24_c00364{bottom:449.866667pt;}
.y23_c00364{bottom:462.666667pt;}
.y58_c00364{bottom:470.800000pt;}
.y22_c00364{bottom:475.200000pt;}
.y57_c00364{bottom:486.800000pt;}
.y21_c00364{bottom:488.000000pt;}
.y20_c00364{bottom:501.466667pt;}
.y56_c00364{bottom:502.533333pt;}
.y1f_c00364{bottom:513.600000pt;}
.y55_c00364{bottom:518.266667pt;}
.y1e_c00364{bottom:526.400000pt;}
.y54_c00364{bottom:535.600000pt;}
.y1d_c00364{bottom:539.200000pt;}
.y53_c00364{bottom:550.000000pt;}
.y1c_c00364{bottom:552.000000pt;}
.y1b_c00364{bottom:564.800000pt;}
.y52_c00364{bottom:567.333333pt;}
.y1a_c00364{bottom:576.933333pt;}
.y51_c00364{bottom:585.600000pt;}
.y19_c00364{bottom:595.200000pt;}
.y50_c00364{bottom:600.933333pt;}
.y18_c00364{bottom:603.200000pt;}
.y17_c00364{bottom:616.000000pt;}
.y16_c00364{bottom:628.533333pt;}
.y4f_c00364{bottom:631.600000pt;}
.y15_c00364{bottom:641.333333pt;}
.y4e_c00364{bottom:648.266667pt;}
.y14_c00364{bottom:654.133333pt;}
.y13_c00364{bottom:666.933333pt;}
.y4d_c00364{bottom:679.600000pt;}
.y12_c00364{bottom:679.733333pt;}
.y4c_c00364{bottom:695.600000pt;}
.y4b_c00364{bottom:711.333333pt;}
.y11_c00364{bottom:725.200000pt;}
.y4a_c00364{bottom:731.200000pt;}
.y10_c00364{bottom:745.333333pt;}
.y49_c00364{bottom:746.933333pt;}
.y48_c00364{bottom:762.133333pt;}
.yf_c00364{bottom:764.800000pt;}
.y47_c00364{bottom:777.866667pt;}
.ye_c00364{bottom:780.800000pt;}
.yd_c00364{bottom:800.266667pt;}
.y46_c00364{bottom:800.933333pt;}
.yc_c00364{bottom:816.266667pt;}
.y45_c00364{bottom:820.133333pt;}
.yb_c00364{bottom:832.266667pt;}
.y44_c00364{bottom:836.133333pt;}
.ya_c00364{bottom:850.000000pt;}
.y43_c00364{bottom:855.600000pt;}
.y9_c00364{bottom:863.066667pt;}
.y42_c00364{bottom:871.333333pt;}
.y8_c00364{bottom:885.200000pt;}
.y41_c00364{bottom:887.333333pt;}
.y7_c00364{bottom:895.466667pt;}
.y40_c00364{bottom:903.066667pt;}
.y6_c00364{bottom:910.133333pt;}
.y3f_c00364{bottom:918.400000pt;}
.y5_c00364{bottom:933.466667pt;}
.y3e_c00364{bottom:937.733333pt;}
.y4_c00364{bottom:949.733333pt;}
.y3d_c00364{bottom:956.266667pt;}
.y3_c00364{bottom:968.933333pt;}
.y3c_c00364{bottom:969.333333pt;}
.y3b_c00364{bottom:985.333333pt;}
.y2_c00364{bottom:999.333333pt;}
.y3a_c00364{bottom:1000.666667pt;}
.y1_c00364{bottom:1024.000000pt;}
.h8_c00364{height:37.333333pt;}
.h6_c00364{height:42.666667pt;}
.h7_c00364{height:48.000000pt;}
.h5_c00364{height:53.333333pt;}
.h4_c00364{height:58.666667pt;}
.h3_c00364{height:64.000000pt;}
.h2_c00364{height:69.333333pt;}
.h0_c00364{height:1130.559977pt;}
.h1_c00364{height:1130.666667pt;}
.w0_c00364{width:853.760009pt;}
.w1_c00364{width:854.000000pt;}
.x0_c00364{left:0.000000pt;}
.x4c_c00364{left:84.133333pt;}
.x5_c00364{left:85.066667pt;}
.x5d_c00364{left:86.133333pt;}
.x78_c00364{left:93.866667pt;}
.x22_c00364{left:97.733333pt;}
.x62_c00364{left:99.066667pt;}
.xe_c00364{left:101.466667pt;}
.xa0_c00364{left:104.666667pt;}
.x52_c00364{left:106.133333pt;}
.xa9_c00364{left:109.733333pt;}
.xab_c00364{left:110.800000pt;}
.x1a_c00364{left:112.666667pt;}
.x83_c00364{left:115.066667pt;}
.xa_c00364{left:116.800000pt;}
.x35_c00364{left:117.733333pt;}
.x3b_c00364{left:119.066667pt;}
.x79_c00364{left:120.400000pt;}
.x94_c00364{left:121.866667pt;}
.x43_c00364{left:123.200000pt;}
.x4d_c00364{left:124.133333pt;}
.x7d_c00364{left:125.466667pt;}
.x8f_c00364{left:126.400000pt;}
.x3c_c00364{left:128.000000pt;}
.x7f_c00364{left:130.133333pt;}
.xaa_c00364{left:132.533333pt;}
.x17_c00364{left:133.600000pt;}
.xa4_c00364{left:135.466667pt;}
.x8c_c00364{left:136.400000pt;}
.x56_c00364{left:137.600000pt;}
.x3_c00364{left:138.533333pt;}
.x7a_c00364{left:140.933333pt;}
.xa5_c00364{left:142.666667pt;}
.x6f_c00364{left:144.133333pt;}
.x68_c00364{left:145.066667pt;}
.x90_c00364{left:146.266667pt;}
.x3d_c00364{left:147.200000pt;}
.x9c_c00364{left:148.133333pt;}
.x57_c00364{left:149.466667pt;}
.x10_c00364{left:150.400000pt;}
.x1b_c00364{left:151.733333pt;}
.xf_c00364{left:152.933333pt;}
.xad_c00364{left:155.066667pt;}
.x48_c00364{left:156.000000pt;}
.x2d_c00364{left:158.133333pt;}
.x23_c00364{left:159.466667pt;}
.x6c_c00364{left:161.466667pt;}
.x18_c00364{left:162.533333pt;}
.x3e_c00364{left:165.466667pt;}
.x44_c00364{left:166.400000pt;}
.x4e_c00364{left:168.533333pt;}
.x28_c00364{left:170.133333pt;}
.xb_c00364{left:172.533333pt;}
.x36_c00364{left:173.733333pt;}
.x24_c00364{left:175.200000pt;}
.x97_c00364{left:176.400000pt;}
.x32_c00364{left:177.466667pt;}
.x72_c00364{left:178.666667pt;}
.x91_c00364{left:180.133333pt;}
.xa1_c00364{left:181.066667pt;}
.x1c_c00364{left:182.800000pt;}
.x7b_c00364{left:183.733333pt;}
.x63_c00364{left:185.066667pt;}
.x19_c00364{left:186.266667pt;}
.x25_c00364{left:188.000000pt;}
.x3f_c00364{left:189.466667pt;}
.x58_c00364{left:191.466667pt;}
.x53_c00364{left:192.800000pt;}
.x98_c00364{left:194.266667pt;}
.x45_c00364{left:195.866667pt;}
.x70_c00364{left:196.933333pt;}
.xae_c00364{left:199.066667pt;}
.x64_c00364{left:201.333333pt;}
.x1d_c00364{left:202.266667pt;}
.x5e_c00364{left:204.266667pt;}
.x75_c00364{left:205.466667pt;}
.x11_c00364{left:207.066667pt;}
.x6_c00364{left:208.533333pt;}
.x49_c00364{left:211.733333pt;}
.x37_c00364{left:213.066667pt;}
.xa3_c00364{left:215.333333pt;}
.x46_c00364{left:216.400000pt;}
.xa6_c00364{left:217.866667pt;}
.x59_c00364{left:219.333333pt;}
.x89_c00364{left:220.800000pt;}
.x76_c00364{left:223.066667pt;}
.x2e_c00364{left:224.400000pt;}
.x84_c00364{left:227.066667pt;}
.x41_c00364{left:228.533333pt;}
.x99_c00364{left:231.066667pt;}
.x29_c00364{left:232.800000pt;}
.x1e_c00364{left:234.266667pt;}
.x65_c00364{left:235.600000pt;}
.x5a_c00364{left:238.266667pt;}
.x26_c00364{left:239.866667pt;}
.x95_c00364{left:240.933333pt;}
.x38_c00364{left:241.866667pt;}
.x69_c00364{left:245.866667pt;}
.x8a_c00364{left:247.066667pt;}
.x40_c00364{left:248.666667pt;}
.xc_c00364{left:250.666667pt;}
.x85_c00364{left:251.733333pt;}
.x5f_c00364{left:253.200000pt;}
.x9a_c00364{left:254.400000pt;}
.x33_c00364{left:256.133333pt;}
.x4_c00364{left:257.200000pt;}
.x9d_c00364{left:258.533333pt;}
.x12_c00364{left:259.866667pt;}
.x42_c00364{left:261.200000pt;}
.x66_c00364{left:262.800000pt;}
.x4f_c00364{left:264.533333pt;}
.x2f_c00364{left:266.266667pt;}
.x13_c00364{left:267.600000pt;}
.x6a_c00364{left:268.933333pt;}
.x34_c00364{left:270.800000pt;}
.x7_c00364{left:272.266667pt;}
.x86_c00364{left:274.800000pt;}
.xb1_c00364{left:275.733333pt;}
.x4a_c00364{left:276.666667pt;}
.xaf_c00364{left:277.600000pt;}
.x60_c00364{left:278.533333pt;}
.x50_c00364{left:281.200000pt;}
.x6d_c00364{left:283.066667pt;}
.x73_c00364{left:285.466667pt;}
.x5b_c00364{left:286.533333pt;}
.x71_c00364{left:287.466667pt;}
.x30_c00364{left:289.333333pt;}
.xa7_c00364{left:290.533333pt;}
.x1f_c00364{left:291.600000pt;}
.x2a_c00364{left:293.333333pt;}
.x8d_c00364{left:294.666667pt;}
.x27_c00364{left:297.733333pt;}
.x87_c00364{left:299.066667pt;}
.x1_c00364{left:300.133333pt;}
.x39_c00364{left:302.000000pt;}
.x54_c00364{left:302.933333pt;}
.x14_c00364{left:304.133333pt;}
.x80_c00364{left:305.066667pt;}
.x8_c00364{left:306.533333pt;}
.x9e_c00364{left:308.133333pt;}
.x20_c00364{left:311.466667pt;}
.xa2_c00364{left:312.933333pt;}
.x8e_c00364{left:315.200000pt;}
.x77_c00364{left:316.533333pt;}
.x7e_c00364{left:318.666667pt;}
.xb2_c00364{left:321.466667pt;}
.x15_c00364{left:322.400000pt;}
.x61_c00364{left:323.333333pt;}
.x31_c00364{left:326.800000pt;}
.x9b_c00364{left:328.400000pt;}
.x88_c00364{left:329.733333pt;}
.xb0_c00364{left:331.066667pt;}
.x81_c00364{left:332.933333pt;}
.x9f_c00364{left:335.333333pt;}
.x4b_c00364{left:336.533333pt;}
.xa8_c00364{left:338.800000pt;}
.x21_c00364{left:340.266667pt;}
.x92_c00364{left:341.466667pt;}
.xd_c00364{left:344.400000pt;}
.x74_c00364{left:346.000000pt;}
.x6e_c00364{left:347.733333pt;}
.x2b_c00364{left:349.333333pt;}
.xac_c00364{left:350.266667pt;}
.x16_c00364{left:351.200000pt;}
.x47_c00364{left:352.133333pt;}
.x9_c00364{left:353.866667pt;}
.x51_c00364{left:356.000000pt;}
.x2c_c00364{left:357.066667pt;}
.x5c_c00364{left:359.066667pt;}
.x96_c00364{left:360.000000pt;}
.x67_c00364{left:361.600000pt;}
.x6b_c00364{left:362.666667pt;}
.x93_c00364{left:363.866667pt;}
.x3a_c00364{left:366.000000pt;}
.x55_c00364{left:369.200000pt;}
.x82_c00364{left:372.933333pt;}
.x8b_c00364{left:375.066667pt;}
.x7c_c00364{left:379.600000pt;}
.x138_c00364{left:400.266667pt;}
.xf3_c00364{left:401.600000pt;}
.x10e_c00364{left:403.866667pt;}
.x13e_c00364{left:411.866667pt;}
.x13c_c00364{left:412.800000pt;}
.xc8_c00364{left:415.200000pt;}
.x130_c00364{left:416.133333pt;}
.xba_c00364{left:417.600000pt;}
.x146_c00364{left:424.666667pt;}
.x142_c00364{left:425.866667pt;}
.xe7_c00364{left:427.066667pt;}
.x112_c00364{left:429.466667pt;}
.xd1_c00364{left:432.666667pt;}
.xb3_c00364{left:434.533333pt;}
.x122_c00364{left:436.400000pt;}
.x13d_c00364{left:439.066667pt;}
.x12b_c00364{left:440.666667pt;}
.x10f_c00364{left:443.600000pt;}
.x147_c00364{left:444.533333pt;}
.xdd_c00364{left:447.600000pt;}
.xfe_c00364{left:448.933333pt;}
.x119_c00364{left:449.866667pt;}
.x139_c00364{left:452.800000pt;}
.xd8_c00364{left:453.866667pt;}
.x104_c00364{left:455.733333pt;}
.xbb_c00364{left:456.666667pt;}
.x123_c00364{left:458.800000pt;}
.xf4_c00364{left:459.866667pt;}
.x128_c00364{left:460.933333pt;}
.xf1_c00364{left:462.133333pt;}
.xff_c00364{left:464.000000pt;}
.xd2_c00364{left:467.600000pt;}
.x143_c00364{left:468.800000pt;}
.x11d_c00364{left:470.000000pt;}
.xf6_c00364{left:471.066667pt;}
.xe2_c00364{left:472.800000pt;}
.xb4_c00364{left:473.866667pt;}
.xeb_c00364{left:474.800000pt;}
.xe8_c00364{left:478.533333pt;}
.x137_c00364{left:479.466667pt;}
.xc9_c00364{left:481.066667pt;}
.xce_c00364{left:482.400000pt;}
.xd3_c00364{left:485.200000pt;}
.x13f_c00364{left:486.133333pt;}
.x14b_c00364{left:487.600000pt;}
.x100_c00364{left:488.666667pt;}
.xc1_c00364{left:490.000000pt;}
.xe3_c00364{left:491.333333pt;}
.x131_c00364{left:493.333333pt;}
.x11e_c00364{left:494.933333pt;}
.x11a_c00364{left:497.200000pt;}
.xcf_c00364{left:499.066667pt;}
.x12c_c00364{left:502.133333pt;}
.xd9_c00364{left:506.400000pt;}
.x132_c00364{left:508.000000pt;}
.x113_c00364{left:509.866667pt;}
.x10c_c00364{left:511.200000pt;}
.xe9_c00364{left:512.133333pt;}
.xbc_c00364{left:513.333333pt;}
.xec_c00364{left:516.133333pt;}
.x11b_c00364{left:517.066667pt;}
.xfa_c00364{left:518.400000pt;}
.x129_c00364{left:520.133333pt;}
.x107_c00364{left:522.266667pt;}
.xed_c00364{left:525.066667pt;}
.x13a_c00364{left:526.400000pt;}
.xc2_c00364{left:527.466667pt;}
.x133_c00364{left:530.133333pt;}
.x12a_c00364{left:531.333333pt;}
.xca_c00364{left:532.533333pt;}
.xde_c00364{left:533.600000pt;}
.xb5_c00364{left:535.333333pt;}
.x114_c00364{left:536.400000pt;}
.x10d_c00364{left:539.066667pt;}
.xfb_c00364{left:540.533333pt;}
.x124_c00364{left:542.000000pt;}
.x11c_c00364{left:544.266667pt;}
.xf2_c00364{left:546.000000pt;}
.x101_c00364{left:547.866667pt;}
.xb6_c00364{left:550.000000pt;}
.xe4_c00364{left:552.800000pt;}
.x148_c00364{left:554.533333pt;}
.x14a_c00364{left:555.466667pt;}
.x11f_c00364{left:556.666667pt;}
.x121_c00364{left:558.266667pt;}
.xda_c00364{left:559.200000pt;}
.xc3_c00364{left:560.133333pt;}
.xcb_c00364{left:562.000000pt;}
.xee_c00364{left:566.000000pt;}
.xfc_c00364{left:569.333333pt;}
.x108_c00364{left:570.533333pt;}
.x115_c00364{left:571.866667pt;}
.x105_c00364{left:575.200000pt;}
.x12d_c00364{left:576.400000pt;}
.x110_c00364{left:578.000000pt;}
.xea_c00364{left:579.066667pt;}
.xdb_c00364{left:583.200000pt;}
.x140_c00364{left:584.933333pt;}
.x144_c00364{left:587.066667pt;}
.xc4_c00364{left:588.000000pt;}
.xbd_c00364{left:589.466667pt;}
.x12e_c00364{left:591.733333pt;}
.xe5_c00364{left:593.466667pt;}
.xb7_c00364{left:595.466667pt;}
.x149_c00364{left:596.800000pt;}
.xf7_c00364{left:598.133333pt;}
.xd4_c00364{left:599.333333pt;}
.x125_c00364{left:600.533333pt;}
.xdf_c00364{left:601.866667pt;}
.x14c_c00364{left:602.800000pt;}
.xbe_c00364{left:607.066667pt;}
.xd5_c00364{left:609.200000pt;}
.x116_c00364{left:610.933333pt;}
.xcc_c00364{left:613.200000pt;}
.x109_c00364{left:614.666667pt;}
.xe6_c00364{left:617.466667pt;}
.xf8_c00364{left:621.200000pt;}
.xc5_c00364{left:622.933333pt;}
.x117_c00364{left:624.933333pt;}
.x13b_c00364{left:626.533333pt;}
.xe0_c00364{left:628.133333pt;}
.x134_c00364{left:630.000000pt;}
.x126_c00364{left:631.200000pt;}
.x120_c00364{left:632.533333pt;}
.xcd_c00364{left:634.000000pt;}
.xef_c00364{left:635.733333pt;}
.x102_c00364{left:639.066667pt;}
.xb8_c00364{left:640.000000pt;}
.xdc_c00364{left:642.133333pt;}
.xd6_c00364{left:645.733333pt;}
.x111_c00364{left:648.666667pt;}
.x136_c00364{left:651.866667pt;}
.x10a_c00364{left:653.333333pt;}
.xbf_c00364{left:655.066667pt;}
.xd0_c00364{left:657.733333pt;}
.x145_c00364{left:658.933333pt;}
.x103_c00364{left:659.866667pt;}
.xc6_c00364{left:661.600000pt;}
.xe1_c00364{left:662.666667pt;}
.x135_c00364{left:663.866667pt;}
.xd7_c00364{left:665.600000pt;}
.x118_c00364{left:668.133333pt;}
.xf5_c00364{left:669.200000pt;}
.x12f_c00364{left:670.800000pt;}
.x10b_c00364{left:671.866667pt;}
.xfd_c00364{left:672.933333pt;}
.x2_c00364{left:676.133333pt;}
.xf0_c00364{left:677.333333pt;}
.xc7_c00364{left:680.133333pt;}
.x14d_c00364{left:681.733333pt;}
.x106_c00364{left:682.933333pt;}
.x127_c00364{left:684.000000pt;}
.x141_c00364{left:685.333333pt;}
.xc0_c00364{left:686.400000pt;}
.xf9_c00364{left:688.400000pt;}
.xb9_c00364{left:690.266667pt;}
}





/* 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_c00365 {
    display:none;
  }
  .loading-indicator_c00365.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00365 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_c00365 { 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_c00365" -> "#page-container .classname_c00365")
 */
.pf_c00365 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00365 { /* 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_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00365 { /* 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_c00365 { /* 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_c00365 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00365 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00365 {overflow:visible;}
  }
}
.c_c00365 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00365 { /* 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_c00365:after { /* webkit #35443 */
  content: '';
}
.t_c00365:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00365 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 */
}
.__c00365 { /* 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_c00365 { /* info for Javascript */
  display:none;
}
.l_c00365 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00365 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00365 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00365: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_c00365 {
    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_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00365.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_c00365 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00365;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.000000;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;}
.m42_c00365{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00365{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.meb_c00365{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.md5_c00365{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00365{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.md6_c00365{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m101_c00365{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00365{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00365{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.me9_c00365{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m56_c00365{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00365{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00365{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m92_c00365{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m73_c00365{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me3_c00365{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m84_c00365{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00365{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00365{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mde_c00365{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m53_c00365{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m80_c00365{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m69_c00365{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00365{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me2_c00365{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m89_c00365{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m38_c00365{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md2_c00365{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m100_c00365{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m11_c00365{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00365{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00365{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00365{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.md3_c00365{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00365{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m16_c00365{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me4_c00365{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00365{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m85_c00365{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00365{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m5_c00365{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00365{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me5_c00365{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m77_c00365{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m43_c00365{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me1_c00365{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00365{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00365{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00365{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00365{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m4_c00365{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00365{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m97_c00365{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mac_c00365{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.me_c00365{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00365{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00365{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00365{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mae_c00365{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m22_c00365{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00365{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m48_c00365{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m66_c00365{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me6_c00365{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m60_c00365{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m28_c00365{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m12_c00365{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf_c00365{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m57_c00365{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00365{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00365{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m70_c00365{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00365{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00365{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m82_c00365{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00365{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m96_c00365{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00365{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00365{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00365{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00365{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00365{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m6_c00365{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m45_c00365{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00365{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m68_c00365{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m8_c00365{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m62_c00365{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m24_c00365{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m88_c00365{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mad_c00365{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m72_c00365{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m46_c00365{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00365{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00365{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7_c00365{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00365{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m47_c00365{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m29_c00365{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00365{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mc_c00365{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m52_c00365{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m17_c00365{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00365{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00365{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00365{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00365{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00365{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m25_c00365{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m79_c00365{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m41_c00365{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m35_c00365{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m61_c00365{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m78_c00365{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m32_c00365{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md_c00365{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00365{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00365{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mec_c00365{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00365{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00365{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m34_c00365{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00365{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m75_c00365{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9_c00365{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3_c00365{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00365{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m33_c00365{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m19_c00365{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00365{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00365{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m50_c00365{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m49_c00365{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00365{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00365{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m15_c00365{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00365{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m13_c00365{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00365{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m58_c00365{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m27_c00365{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m26_c00365{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m102_c00365{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m20_c00365{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m30_c00365{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00365{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m18_c00365{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00365{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00365{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00365{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m63_c00365{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m54_c00365{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m39_c00365{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00365{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m44_c00365{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m51_c00365{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00365{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m95_c00365{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00365{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00365{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m99_c00365{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb_c00365{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00365{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m91_c00365{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00365{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m23_c00365{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m36_c00365{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma_c00365{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00365{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00365{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00365{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m64_c00365{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00365{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00365{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00365{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00365{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00365{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00365{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m90_c00365{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00365{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00365{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m76_c00365{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00365{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m31_c00365{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m98_c00365{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00365{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00365{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00365{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mca_c00365{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00365{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00365{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00365{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m59_c00365{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00365{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10_c00365{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md8_c00365{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00365{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m65_c00365{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00365{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00365{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mee_c00365{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m55_c00365{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m71_c00365{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00365{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00365{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md4_c00365{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00365{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mda_c00365{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00365{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00365{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md1_c00365{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m37_c00365{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00365{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m67_c00365{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00365{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m40_c00365{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mff_c00365{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.me8_c00365{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00365{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00365{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00365{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);}
.m7a_c00365{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m94_c00365{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.maf_c00365{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m83_c00365{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mab_c00365{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m103_c00365{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.me0_c00365{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mba_c00365{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00365{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00365{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m74_c00365{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mce_c00365{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00365{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00365{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m21_c00365{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.maa_c00365{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.med_c00365{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00365{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m93_c00365{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m81_c00365{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m87_c00365{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00365{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m86_c00365{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mea_c00365{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00365{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mef_c00365{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00365{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00365{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00365{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md0_c00365{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00365{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.md9_c00365{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00365{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00365{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.me7_c00365{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);}
.md7_c00365{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00365{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls0_c00365{letter-spacing:0.000000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{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__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00365{word-spacing:-12.285887px;}
.ws2_c00365{word-spacing:-4.545455px;}
.ws7_c00365{word-spacing:-3.477663px;}
.ws0_c00365{word-spacing:-3.170084px;}
.ws1_c00365{word-spacing:-1.436426px;}
.ws9_c00365{word-spacing:0.000000px;}
.ws8_c00365{word-spacing:0.283019px;}
.ws3_c00365{word-spacing:16.173594px;}
.ws5_c00365{word-spacing:25.714286px;}
.ws4_c00365{word-spacing:40.000000px;}
.fc0_c00365{color:transparent;}
.fs5_c00365{font-size:54.000000px;}
.fs3_c00365{font-size:60.000000px;}
.fs2_c00365{font-size:66.000000px;}
.fs0_c00365{font-size:72.000000px;}
.fs4_c00365{font-size:78.000000px;}
.fs1_c00365{font-size:84.000000px;}
.y0_c00365{bottom:0.000000px;}
.y64_c00365{bottom:205.800000px;}
.y35_c00365{bottom:206.850000px;}
.y63_c00365{bottom:223.800000px;}
.y34_c00365{bottom:224.850000px;}
.y62_c00365{bottom:241.500000px;}
.y33_c00365{bottom:242.550000px;}
.y61_c00365{bottom:259.500000px;}
.y32_c00365{bottom:260.250000px;}
.y60_c00365{bottom:277.500000px;}
.y31_c00365{bottom:277.950000px;}
.y5f_c00365{bottom:295.500000px;}
.y30_c00365{bottom:295.950000px;}
.y2f_c00365{bottom:313.200000px;}
.y5e_c00365{bottom:331.950000px;}
.y2e_c00365{bottom:333.750000px;}
.y2d_c00365{bottom:348.450000px;}
.y5d_c00365{bottom:352.350000px;}
.y2c_c00365{bottom:368.550000px;}
.y5c_c00365{bottom:370.050000px;}
.y2b_c00365{bottom:386.250000px;}
.y5b_c00365{bottom:396.600000px;}
.y2a_c00365{bottom:403.950000px;}
.y5a_c00365{bottom:418.950000px;}
.y29_c00365{bottom:421.950000px;}
.y59_c00365{bottom:441.300000px;}
.y28_c00365{bottom:445.350000px;}
.y58_c00365{bottom:459.150000px;}
.y27_c00365{bottom:462.300000px;}
.y57_c00365{bottom:476.850000px;}
.y26_c00365{bottom:480.300000px;}
.y56_c00365{bottom:494.850000px;}
.y25_c00365{bottom:502.500000px;}
.y55_c00365{bottom:512.100000px;}
.y24_c00365{bottom:520.200000px;}
.y54_c00365{bottom:529.800000px;}
.y23_c00365{bottom:546.450000px;}
.y53_c00365{bottom:547.500000px;}
.y52_c00365{bottom:565.500000px;}
.y22_c00365{bottom:566.250000px;}
.y51_c00365{bottom:583.200000px;}
.y21_c00365{bottom:586.350000px;}
.y50_c00365{bottom:601.200000px;}
.y20_c00365{bottom:604.050000px;}
.y4f_c00365{bottom:619.200000px;}
.y1f_c00365{bottom:622.050000px;}
.y4e_c00365{bottom:636.900000px;}
.y1e_c00365{bottom:643.950000px;}
.y4d_c00365{bottom:658.800000px;}
.y1d_c00365{bottom:661.650000px;}
.y4c_c00365{bottom:671.850000px;}
.y1c_c00365{bottom:683.700000px;}
.y4b_c00365{bottom:689.100000px;}
.y1b_c00365{bottom:701.700000px;}
.y4a_c00365{bottom:706.200000px;}
.y1a_c00365{bottom:719.700000px;}
.y49_c00365{bottom:725.250000px;}
.y19_c00365{bottom:738.000000px;}
.y48_c00365{bottom:742.950000px;}
.y18_c00365{bottom:754.950000px;}
.y47_c00365{bottom:760.650000px;}
.y17_c00365{bottom:772.950000px;}
.y46_c00365{bottom:781.500000px;}
.y16_c00365{bottom:790.200000px;}
.y45_c00365{bottom:800.250000px;}
.y15_c00365{bottom:808.200000px;}
.y44_c00365{bottom:818.250000px;}
.y14_c00365{bottom:825.900000px;}
.y43_c00365{bottom:835.500000px;}
.y13_c00365{bottom:843.600000px;}
.y42_c00365{bottom:853.500000px;}
.y12_c00365{bottom:861.300000px;}
.y41_c00365{bottom:874.500000px;}
.y11_c00365{bottom:879.000000px;}
.y40_c00365{bottom:892.800000px;}
.y10_c00365{bottom:896.700000px;}
.yf_c00365{bottom:914.700000px;}
.y3f_c00365{bottom:923.400000px;}
.ye_c00365{bottom:932.100000px;}
.y3e_c00365{bottom:941.400000px;}
.yd_c00365{bottom:949.350000px;}
.yc_c00365{bottom:967.050000px;}
.y3d_c00365{bottom:976.650000px;}
.yb_c00365{bottom:984.750000px;}
.y3c_c00365{bottom:998.250000px;}
.ya_c00365{bottom:1002.750000px;}
.y9_c00365{bottom:1020.450000px;}
.y8_c00365{bottom:1038.450000px;}
.y3b_c00365{bottom:1038.750000px;}
.y7_c00365{bottom:1056.150000px;}
.y3a_c00365{bottom:1056.750000px;}
.y6_c00365{bottom:1073.850000px;}
.y39_c00365{bottom:1074.000000px;}
.y5_c00365{bottom:1091.550000px;}
.y38_c00365{bottom:1091.700000px;}
.y4_c00365{bottom:1108.800000px;}
.y37_c00365{bottom:1109.400000px;}
.y3_c00365{bottom:1126.500000px;}
.y36_c00365{bottom:1127.100000px;}
.y1_c00365{bottom:1151.250000px;}
.y2_c00365{bottom:1152.750000px;}
.h7_c00365{height:54.000000px;}
.h5_c00365{height:60.000000px;}
.h4_c00365{height:66.000000px;}
.h2_c00365{height:72.000000px;}
.h6_c00365{height:78.000000px;}
.h3_c00365{height:84.000000px;}
.h0_c00365{height:1269.720063px;}
.h1_c00365{height:1269.750000px;}
.w0_c00365{width:960.480010px;}
.w1_c00365{width:960.750000px;}
.x0_c00365{left:0.000000px;}
.x80_c00365{left:184.350000px;}
.x1_c00365{left:186.450000px;}
.x8c_c00365{left:187.950000px;}
.x53_c00365{left:199.500000px;}
.x9e_c00365{left:200.550000px;}
.x57_c00365{left:203.550000px;}
.x3_c00365{left:204.900000px;}
.x84_c00365{left:205.950000px;}
.x7a_c00365{left:209.550000px;}
.x7d_c00365{left:219.900000px;}
.x7b_c00365{left:221.400000px;}
.x85_c00365{left:222.900000px;}
.x71_c00365{left:224.700000px;}
.x11_c00365{left:226.500000px;}
.x92_c00365{left:229.350000px;}
.xa1_c00365{left:231.600000px;}
.x49_c00365{left:232.650000px;}
.x19_c00365{left:235.500000px;}
.x20_c00365{left:236.550000px;}
.x99_c00365{left:238.800000px;}
.x9_c00365{left:240.450000px;}
.x12_c00365{left:245.250000px;}
.x82_c00365{left:246.600000px;}
.x44_c00365{left:248.400000px;}
.x7f_c00365{left:251.100000px;}
.x64_c00365{left:252.300000px;}
.x60_c00365{left:253.950000px;}
.x72_c00365{left:255.300000px;}
.x21_c00365{left:258.150000px;}
.x9f_c00365{left:261.000000px;}
.x25_c00365{left:262.200000px;}
.x94_c00365{left:263.550000px;}
.x58_c00365{left:265.050000px;}
.x4a_c00365{left:267.150000px;}
.x40_c00365{left:268.950000px;}
.x9d_c00365{left:271.350000px;}
.x2c_c00365{left:273.000000px;}
.x8d_c00365{left:274.050000px;}
.x73_c00365{left:275.100000px;}
.x13_c00365{left:276.150000px;}
.x65_c00365{left:277.200000px;}
.x37_c00365{left:278.250000px;}
.x26_c00365{left:281.250000px;}
.x8a_c00365{left:282.600000px;}
.x1a_c00365{left:283.800000px;}
.x4_c00365{left:284.850000px;}
.xa2_c00365{left:285.900000px;}
.xa_c00365{left:286.950000px;}
.x90_c00365{left:288.300000px;}
.x59_c00365{left:289.500000px;}
.xa4_c00365{left:290.550000px;}
.x41_c00365{left:291.600000px;}
.x22_c00365{left:293.850000px;}
.x32_c00365{left:295.200000px;}
.x93_c00365{left:296.700000px;}
.xa8_c00365{left:297.750000px;}
.x5d_c00365{left:299.700000px;}
.x4b_c00365{left:301.350000px;}
.xa5_c00365{left:303.900000px;}
.x7c_c00365{left:304.950000px;}
.x4f_c00365{left:306.300000px;}
.x61_c00365{left:308.700000px;}
.x54_c00365{left:310.800000px;}
.x2d_c00365{left:311.850000px;}
.x9a_c00365{left:313.800000px;}
.x1b_c00365{left:318.300000px;}
.x5_c00365{left:319.350000px;}
.x14_c00365{left:320.850000px;}
.x66_c00365{left:322.950000px;}
.xb_c00365{left:328.050000px;}
.x95_c00365{left:329.100000px;}
.x27_c00365{left:330.150000px;}
.x86_c00365{left:331.200000px;}
.x38_c00365{left:333.750000px;}
.x2e_c00365{left:335.550000px;}
.x5a_c00365{left:337.350000px;}
.x55_c00365{left:338.850000px;}
.x91_c00365{left:340.350000px;}
.xa3_c00365{left:341.700000px;}
.x6_c00365{left:343.050000px;}
.x6d_c00365{left:344.850000px;}
.x1c_c00365{left:347.100000px;}
.x83_c00365{left:349.650000px;}
.x33_c00365{left:351.450000px;}
.xc_c00365{left:355.800000px;}
.x45_c00365{left:357.750000px;}
.x39_c00365{left:359.250000px;}
.x6a_c00365{left:361.050000px;}
.x70_c00365{left:363.150000px;}
.x6e_c00365{left:367.200000px;}
.x3d_c00365{left:368.550000px;}
.x42_c00365{left:369.750000px;}
.x62_c00365{left:371.100000px;}
.x8b_c00365{left:375.150000px;}
.x9b_c00365{left:376.800000px;}
.xa6_c00365{left:378.750000px;}
.x96_c00365{left:380.250000px;}
.x34_c00365{left:382.350000px;}
.x4c_c00365{left:383.850000px;}
.x77_c00365{left:384.900000px;}
.x3a_c00365{left:389.100000px;}
.x7_c00365{left:390.150000px;}
.xaa_c00365{left:391.650000px;}
.x81_c00365{left:392.700000px;}
.x28_c00365{left:393.900000px;}
.x74_c00365{left:395.250000px;}
.x87_c00365{left:397.050000px;}
.x97_c00365{left:399.300000px;}
.x50_c00365{left:401.400000px;}
.x35_c00365{left:402.450000px;}
.xd_c00365{left:404.100000px;}
.x67_c00365{left:405.150000px;}
.x29_c00365{left:407.550000px;}
.x4d_c00365{left:409.350000px;}
.xa0_c00365{left:410.550000px;}
.x15_c00365{left:412.650000px;}
.x2f_c00365{left:415.500000px;}
.xa7_c00365{left:416.550000px;}
.x68_c00365{left:418.800000px;}
.x5e_c00365{left:420.300000px;}
.x46_c00365{left:421.500000px;}
.x75_c00365{left:422.550000px;}
.x88_c00365{left:423.750000px;}
.x1d_c00365{left:426.600000px;}
.xa9_c00365{left:428.400000px;}
.x16_c00365{left:431.400000px;}
.x3b_c00365{left:433.050000px;}
.x2_c00365{left:434.850000px;}
.x23_c00365{left:436.500000px;}
.x51_c00365{left:438.900000px;}
.x30_c00365{left:441.000000px;}
.xe_c00365{left:442.200000px;}
.x2a_c00365{left:444.600000px;}
.x56_c00365{left:446.250000px;}
.x6f_c00365{left:447.750000px;}
.x6b_c00365{left:448.950000px;}
.x3e_c00365{left:451.350000px;}
.x69_c00365{left:453.600000px;}
.x17_c00365{left:454.800000px;}
.x5b_c00365{left:456.150000px;}
.x98_c00365{left:457.650000px;}
.x8f_c00365{left:458.850000px;}
.x9c_c00365{left:461.100000px;}
.x52_c00365{left:462.300000px;}
.x36_c00365{left:463.950000px;}
.x63_c00365{left:465.450000px;}
.x1e_c00365{left:466.950000px;}
.x3f_c00365{left:469.050000px;}
.x78_c00365{left:470.250000px;}
.xf_c00365{left:471.300000px;}
.x8_c00365{left:472.950000px;}
.x89_c00365{left:474.150000px;}
.x3c_c00365{left:476.250000px;}
.x5c_c00365{left:479.250000px;}
.x2b_c00365{left:480.300000px;}
.x8e_c00365{left:484.950000px;}
.x1f_c00365{left:486.000000px;}
.x4e_c00365{left:487.350000px;}
.x24_c00365{left:489.750000px;}
.x47_c00365{left:492.450000px;}
.x31_c00365{left:494.250000px;}
.x7e_c00365{left:497.400000px;}
.x76_c00365{left:499.650000px;}
.x5f_c00365{left:502.350000px;}
.x18_c00365{left:505.200000px;}
.x10_c00365{left:506.250000px;}
.x43_c00365{left:511.350000px;}
.x79_c00365{left:517.050000px;}
.x6c_c00365{left:518.850000px;}
.x48_c00365{left:533.850000px;}
.xd8_c00365{left:542.100000px;}
.xe2_c00365{left:543.900000px;}
.x13b_c00365{left:545.700000px;}
.xdb_c00365{left:550.800000px;}
.x10c_c00365{left:557.250000px;}
.x106_c00365{left:558.450000px;}
.xab_c00365{left:559.500000px;}
.x116_c00365{left:561.300000px;}
.x12a_c00365{left:562.350000px;}
.xdc_c00365{left:563.400000px;}
.x111_c00365{left:570.900000px;}
.x137_c00365{left:572.400000px;}
.xc7_c00365{left:576.000000px;}
.x123_c00365{left:577.650000px;}
.xe7_c00365{left:579.300000px;}
.x13c_c00365{left:580.650000px;}
.x127_c00365{left:581.850000px;}
.xb4_c00365{left:582.900000px;}
.xac_c00365{left:585.000000px;}
.xf6_c00365{left:586.050000px;}
.xcd_c00365{left:587.850000px;}
.xe3_c00365{left:588.900000px;}
.x11f_c00365{left:591.300000px;}
.xf2_c00365{left:592.950000px;}
.x119_c00365{left:594.600000px;}
.xf4_c00365{left:597.150000px;}
.x138_c00365{left:599.700000px;}
.xd9_c00365{left:601.200000px;}
.xb9_c00365{left:603.750000px;}
.x107_c00365{left:604.800000px;}
.xd5_c00365{left:607.950000px;}
.x139_c00365{left:609.900000px;}
.x124_c00365{left:612.150000px;}
.xec_c00365{left:613.500000px;}
.x146_c00365{left:616.500000px;}
.x100_c00365{left:618.150000px;}
.xc8_c00365{left:621.000000px;}
.xe8_c00365{left:622.800000px;}
.xf5_c00365{left:623.850000px;}
.xce_c00365{left:624.900000px;}
.xc2_c00365{left:626.100000px;}
.x10d_c00365{left:628.200000px;}
.xba_c00365{left:630.450000px;}
.xb5_c00365{left:631.500000px;}
.x142_c00365{left:634.650000px;}
.xed_c00365{left:636.150000px;}
.x140_c00365{left:638.250000px;}
.x134_c00365{left:640.050000px;}
.x10e_c00365{left:642.600000px;}
.xda_c00365{left:643.950000px;}
.xcf_c00365{left:645.000000px;}
.xf7_c00365{left:650.850000px;}
.x130_c00365{left:652.200000px;}
.xbb_c00365{left:655.350000px;}
.xd6_c00365{left:658.650000px;}
.x11a_c00365{left:662.700000px;}
.xad_c00365{left:664.200000px;}
.x13a_c00365{left:665.700000px;}
.xd7_c00365{left:670.950000px;}
.xc9_c00365{left:672.900000px;}
.xd0_c00365{left:675.300000px;}
.x125_c00365{left:676.500000px;}
.x12b_c00365{left:677.850000px;}
.xdd_c00365{left:679.050000px;}
.xe1_c00365{left:680.850000px;}
.x135_c00365{left:682.200000px;}
.xae_c00365{left:684.000000px;}
.xfc_c00365{left:685.950000px;}
.xef_c00365{left:688.350000px;}
.x143_c00365{left:689.400000px;}
.xde_c00365{left:690.600000px;}
.x117_c00365{left:692.400000px;}
.xbc_c00365{left:693.450000px;}
.x120_c00365{left:694.650000px;}
.xf3_c00365{left:698.400000px;}
.x101_c00365{left:699.450000px;}
.x13d_c00365{left:700.500000px;}
.x11b_c00365{left:703.800000px;}
.x131_c00365{left:705.900000px;}
.xca_c00365{left:707.100000px;}
.x112_c00365{left:708.900000px;}
.xc3_c00365{left:712.050000px;}
.x108_c00365{left:713.850000px;}
.xbd_c00365{left:716.100000px;}
.x147_c00365{left:722.850000px;}
.xd1_c00365{left:724.200000px;}
.x12d_c00365{left:725.250000px;}
.xfd_c00365{left:726.300000px;}
.xdf_c00365{left:728.400000px;}
.x144_c00365{left:730.500000px;}
.xe9_c00365{left:732.300000px;}
.x126_c00365{left:733.650000px;}
.xbe_c00365{left:735.150000px;}
.xb6_c00365{left:737.100000px;}
.x12e_c00365{left:739.350000px;}
.xaf_c00365{left:741.900000px;}
.xe4_c00365{left:743.400000px;}
.x113_c00365{left:744.600000px;}
.xee_c00365{left:746.700000px;}
.x132_c00365{left:748.350000px;}
.xf0_c00365{left:749.550000px;}
.x121_c00365{left:751.200000px;}
.x109_c00365{left:754.050000px;}
.xb0_c00365{left:757.350000px;}
.x128_c00365{left:758.850000px;}
.xcb_c00365{left:760.050000px;}
.xf8_c00365{left:763.950000px;}
.x102_c00365{left:765.750000px;}
.x122_c00365{left:767.100000px;}
.x12c_c00365{left:768.600000px;}
.xd2_c00365{left:770.700000px;}
.xc4_c00365{left:772.200000px;}
.x11c_c00365{left:773.250000px;}
.xb7_c00365{left:777.000000px;}
.x133_c00365{left:778.200000px;}
.x13f_c00365{left:781.350000px;}
.xe0_c00365{left:783.150000px;}
.x114_c00365{left:784.500000px;}
.x103_c00365{left:786.300000px;}
.xbf_c00365{left:787.350000px;}
.x118_c00365{left:789.600000px;}
.xea_c00365{left:790.950000px;}
.x11d_c00365{left:792.750000px;}
.xfe_c00365{left:798.600000px;}
.xb1_c00365{left:799.800000px;}
.x10a_c00365{left:801.300000px;}
.xf9_c00365{left:803.250000px;}
.xe5_c00365{left:804.900000px;}
.xd3_c00365{left:807.000000px;}
.x136_c00365{left:808.200000px;}
.x145_c00365{left:814.500000px;}
.xc5_c00365{left:816.150000px;}
.xe6_c00365{left:817.800000px;}
.x129_c00365{left:819.000000px;}
.xfa_c00365{left:820.950000px;}
.xb2_c00365{left:822.900000px;}
.x10b_c00365{left:826.500000px;}
.x104_c00365{left:831.600000px;}
.x13e_c00365{left:832.650000px;}
.x10f_c00365{left:834.450000px;}
.xeb_c00365{left:835.950000px;}
.xf1_c00365{left:837.750000px;}
.x11e_c00365{left:839.100000px;}
.xc0_c00365{left:840.600000px;}
.xb3_c00365{left:842.400000px;}
.xd4_c00365{left:845.100000px;}
.xcc_c00365{left:846.750000px;}
.xb8_c00365{left:851.100000px;}
.x141_c00365{left:854.550000px;}
.x115_c00365{left:857.250000px;}
.xc6_c00365{left:858.600000px;}
.x105_c00365{left:860.100000px;}
.x110_c00365{left:861.150000px;}
.xc1_c00365{left:862.500000px;}
.xfb_c00365{left:863.850000px;}
.xff_c00365{left:867.000000px;}
.x12f_c00365{left:870.000000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws6_c00365{word-spacing:-10.920788pt;}
.ws2_c00365{word-spacing:-4.040404pt;}
.ws7_c00365{word-spacing:-3.091256pt;}
.ws0_c00365{word-spacing:-2.817853pt;}
.ws1_c00365{word-spacing:-1.276823pt;}
.ws9_c00365{word-spacing:0.000000pt;}
.ws8_c00365{word-spacing:0.251572pt;}
.ws3_c00365{word-spacing:14.376528pt;}
.ws5_c00365{word-spacing:22.857143pt;}
.ws4_c00365{word-spacing:35.555556pt;}
.fs5_c00365{font-size:48.000000pt;}
.fs3_c00365{font-size:53.333333pt;}
.fs2_c00365{font-size:58.666667pt;}
.fs0_c00365{font-size:64.000000pt;}
.fs4_c00365{font-size:69.333333pt;}
.fs1_c00365{font-size:74.666667pt;}
.y0_c00365{bottom:0.000000pt;}
.y64_c00365{bottom:182.933333pt;}
.y35_c00365{bottom:183.866667pt;}
.y63_c00365{bottom:198.933333pt;}
.y34_c00365{bottom:199.866667pt;}
.y62_c00365{bottom:214.666667pt;}
.y33_c00365{bottom:215.600000pt;}
.y61_c00365{bottom:230.666667pt;}
.y32_c00365{bottom:231.333333pt;}
.y60_c00365{bottom:246.666667pt;}
.y31_c00365{bottom:247.066667pt;}
.y5f_c00365{bottom:262.666667pt;}
.y30_c00365{bottom:263.066667pt;}
.y2f_c00365{bottom:278.400000pt;}
.y5e_c00365{bottom:295.066667pt;}
.y2e_c00365{bottom:296.666667pt;}
.y2d_c00365{bottom:309.733333pt;}
.y5d_c00365{bottom:313.200000pt;}
.y2c_c00365{bottom:327.600000pt;}
.y5c_c00365{bottom:328.933333pt;}
.y2b_c00365{bottom:343.333333pt;}
.y5b_c00365{bottom:352.533333pt;}
.y2a_c00365{bottom:359.066667pt;}
.y5a_c00365{bottom:372.400000pt;}
.y29_c00365{bottom:375.066667pt;}
.y59_c00365{bottom:392.266667pt;}
.y28_c00365{bottom:395.866667pt;}
.y58_c00365{bottom:408.133333pt;}
.y27_c00365{bottom:410.933333pt;}
.y57_c00365{bottom:423.866667pt;}
.y26_c00365{bottom:426.933333pt;}
.y56_c00365{bottom:439.866667pt;}
.y25_c00365{bottom:446.666667pt;}
.y55_c00365{bottom:455.200000pt;}
.y24_c00365{bottom:462.400000pt;}
.y54_c00365{bottom:470.933333pt;}
.y23_c00365{bottom:485.733333pt;}
.y53_c00365{bottom:486.666667pt;}
.y52_c00365{bottom:502.666667pt;}
.y22_c00365{bottom:503.333333pt;}
.y51_c00365{bottom:518.400000pt;}
.y21_c00365{bottom:521.200000pt;}
.y50_c00365{bottom:534.400000pt;}
.y20_c00365{bottom:536.933333pt;}
.y4f_c00365{bottom:550.400000pt;}
.y1f_c00365{bottom:552.933333pt;}
.y4e_c00365{bottom:566.133333pt;}
.y1e_c00365{bottom:572.400000pt;}
.y4d_c00365{bottom:585.600000pt;}
.y1d_c00365{bottom:588.133333pt;}
.y4c_c00365{bottom:597.200000pt;}
.y1c_c00365{bottom:607.733333pt;}
.y4b_c00365{bottom:612.533333pt;}
.y1b_c00365{bottom:623.733333pt;}
.y4a_c00365{bottom:627.733333pt;}
.y1a_c00365{bottom:639.733333pt;}
.y49_c00365{bottom:644.666667pt;}
.y19_c00365{bottom:656.000000pt;}
.y48_c00365{bottom:660.400000pt;}
.y18_c00365{bottom:671.066667pt;}
.y47_c00365{bottom:676.133333pt;}
.y17_c00365{bottom:687.066667pt;}
.y46_c00365{bottom:694.666667pt;}
.y16_c00365{bottom:702.400000pt;}
.y45_c00365{bottom:711.333333pt;}
.y15_c00365{bottom:718.400000pt;}
.y44_c00365{bottom:727.333333pt;}
.y14_c00365{bottom:734.133333pt;}
.y43_c00365{bottom:742.666667pt;}
.y13_c00365{bottom:749.866667pt;}
.y42_c00365{bottom:758.666667pt;}
.y12_c00365{bottom:765.600000pt;}
.y41_c00365{bottom:777.333333pt;}
.y11_c00365{bottom:781.333333pt;}
.y40_c00365{bottom:793.600000pt;}
.y10_c00365{bottom:797.066667pt;}
.yf_c00365{bottom:813.066667pt;}
.y3f_c00365{bottom:820.800000pt;}
.ye_c00365{bottom:828.533333pt;}
.y3e_c00365{bottom:836.800000pt;}
.yd_c00365{bottom:843.866667pt;}
.yc_c00365{bottom:859.600000pt;}
.y3d_c00365{bottom:868.133333pt;}
.yb_c00365{bottom:875.333333pt;}
.y3c_c00365{bottom:887.333333pt;}
.ya_c00365{bottom:891.333333pt;}
.y9_c00365{bottom:907.066667pt;}
.y8_c00365{bottom:923.066667pt;}
.y3b_c00365{bottom:923.333333pt;}
.y7_c00365{bottom:938.800000pt;}
.y3a_c00365{bottom:939.333333pt;}
.y6_c00365{bottom:954.533333pt;}
.y39_c00365{bottom:954.666667pt;}
.y5_c00365{bottom:970.266667pt;}
.y38_c00365{bottom:970.400000pt;}
.y4_c00365{bottom:985.600000pt;}
.y37_c00365{bottom:986.133333pt;}
.y3_c00365{bottom:1001.333333pt;}
.y36_c00365{bottom:1001.866667pt;}
.y1_c00365{bottom:1023.333333pt;}
.y2_c00365{bottom:1024.666667pt;}
.h7_c00365{height:48.000000pt;}
.h5_c00365{height:53.333333pt;}
.h4_c00365{height:58.666667pt;}
.h2_c00365{height:64.000000pt;}
.h6_c00365{height:69.333333pt;}
.h3_c00365{height:74.666667pt;}
.h0_c00365{height:1128.640056pt;}
.h1_c00365{height:1128.666667pt;}
.w0_c00365{width:853.760009pt;}
.w1_c00365{width:854.000000pt;}
.x0_c00365{left:0.000000pt;}
.x80_c00365{left:163.866667pt;}
.x1_c00365{left:165.733333pt;}
.x8c_c00365{left:167.066667pt;}
.x53_c00365{left:177.333333pt;}
.x9e_c00365{left:178.266667pt;}
.x57_c00365{left:180.933333pt;}
.x3_c00365{left:182.133333pt;}
.x84_c00365{left:183.066667pt;}
.x7a_c00365{left:186.266667pt;}
.x7d_c00365{left:195.466667pt;}
.x7b_c00365{left:196.800000pt;}
.x85_c00365{left:198.133333pt;}
.x71_c00365{left:199.733333pt;}
.x11_c00365{left:201.333333pt;}
.x92_c00365{left:203.866667pt;}
.xa1_c00365{left:205.866667pt;}
.x49_c00365{left:206.800000pt;}
.x19_c00365{left:209.333333pt;}
.x20_c00365{left:210.266667pt;}
.x99_c00365{left:212.266667pt;}
.x9_c00365{left:213.733333pt;}
.x12_c00365{left:218.000000pt;}
.x82_c00365{left:219.200000pt;}
.x44_c00365{left:220.800000pt;}
.x7f_c00365{left:223.200000pt;}
.x64_c00365{left:224.266667pt;}
.x60_c00365{left:225.733333pt;}
.x72_c00365{left:226.933333pt;}
.x21_c00365{left:229.466667pt;}
.x9f_c00365{left:232.000000pt;}
.x25_c00365{left:233.066667pt;}
.x94_c00365{left:234.266667pt;}
.x58_c00365{left:235.600000pt;}
.x4a_c00365{left:237.466667pt;}
.x40_c00365{left:239.066667pt;}
.x9d_c00365{left:241.200000pt;}
.x2c_c00365{left:242.666667pt;}
.x8d_c00365{left:243.600000pt;}
.x73_c00365{left:244.533333pt;}
.x13_c00365{left:245.466667pt;}
.x65_c00365{left:246.400000pt;}
.x37_c00365{left:247.333333pt;}
.x26_c00365{left:250.000000pt;}
.x8a_c00365{left:251.200000pt;}
.x1a_c00365{left:252.266667pt;}
.x4_c00365{left:253.200000pt;}
.xa2_c00365{left:254.133333pt;}
.xa_c00365{left:255.066667pt;}
.x90_c00365{left:256.266667pt;}
.x59_c00365{left:257.333333pt;}
.xa4_c00365{left:258.266667pt;}
.x41_c00365{left:259.200000pt;}
.x22_c00365{left:261.200000pt;}
.x32_c00365{left:262.400000pt;}
.x93_c00365{left:263.733333pt;}
.xa8_c00365{left:264.666667pt;}
.x5d_c00365{left:266.400000pt;}
.x4b_c00365{left:267.866667pt;}
.xa5_c00365{left:270.133333pt;}
.x7c_c00365{left:271.066667pt;}
.x4f_c00365{left:272.266667pt;}
.x61_c00365{left:274.400000pt;}
.x54_c00365{left:276.266667pt;}
.x2d_c00365{left:277.200000pt;}
.x9a_c00365{left:278.933333pt;}
.x1b_c00365{left:282.933333pt;}
.x5_c00365{left:283.866667pt;}
.x14_c00365{left:285.200000pt;}
.x66_c00365{left:287.066667pt;}
.xb_c00365{left:291.600000pt;}
.x95_c00365{left:292.533333pt;}
.x27_c00365{left:293.466667pt;}
.x86_c00365{left:294.400000pt;}
.x38_c00365{left:296.666667pt;}
.x2e_c00365{left:298.266667pt;}
.x5a_c00365{left:299.866667pt;}
.x55_c00365{left:301.200000pt;}
.x91_c00365{left:302.533333pt;}
.xa3_c00365{left:303.733333pt;}
.x6_c00365{left:304.933333pt;}
.x6d_c00365{left:306.533333pt;}
.x1c_c00365{left:308.533333pt;}
.x83_c00365{left:310.800000pt;}
.x33_c00365{left:312.400000pt;}
.xc_c00365{left:316.266667pt;}
.x45_c00365{left:318.000000pt;}
.x39_c00365{left:319.333333pt;}
.x6a_c00365{left:320.933333pt;}
.x70_c00365{left:322.800000pt;}
.x6e_c00365{left:326.400000pt;}
.x3d_c00365{left:327.600000pt;}
.x42_c00365{left:328.666667pt;}
.x62_c00365{left:329.866667pt;}
.x8b_c00365{left:333.466667pt;}
.x9b_c00365{left:334.933333pt;}
.xa6_c00365{left:336.666667pt;}
.x96_c00365{left:338.000000pt;}
.x34_c00365{left:339.866667pt;}
.x4c_c00365{left:341.200000pt;}
.x77_c00365{left:342.133333pt;}
.x3a_c00365{left:345.866667pt;}
.x7_c00365{left:346.800000pt;}
.xaa_c00365{left:348.133333pt;}
.x81_c00365{left:349.066667pt;}
.x28_c00365{left:350.133333pt;}
.x74_c00365{left:351.333333pt;}
.x87_c00365{left:352.933333pt;}
.x97_c00365{left:354.933333pt;}
.x50_c00365{left:356.800000pt;}
.x35_c00365{left:357.733333pt;}
.xd_c00365{left:359.200000pt;}
.x67_c00365{left:360.133333pt;}
.x29_c00365{left:362.266667pt;}
.x4d_c00365{left:363.866667pt;}
.xa0_c00365{left:364.933333pt;}
.x15_c00365{left:366.800000pt;}
.x2f_c00365{left:369.333333pt;}
.xa7_c00365{left:370.266667pt;}
.x68_c00365{left:372.266667pt;}
.x5e_c00365{left:373.600000pt;}
.x46_c00365{left:374.666667pt;}
.x75_c00365{left:375.600000pt;}
.x88_c00365{left:376.666667pt;}
.x1d_c00365{left:379.200000pt;}
.xa9_c00365{left:380.800000pt;}
.x16_c00365{left:383.466667pt;}
.x3b_c00365{left:384.933333pt;}
.x2_c00365{left:386.533333pt;}
.x23_c00365{left:388.000000pt;}
.x51_c00365{left:390.133333pt;}
.x30_c00365{left:392.000000pt;}
.xe_c00365{left:393.066667pt;}
.x2a_c00365{left:395.200000pt;}
.x56_c00365{left:396.666667pt;}
.x6f_c00365{left:398.000000pt;}
.x6b_c00365{left:399.066667pt;}
.x3e_c00365{left:401.200000pt;}
.x69_c00365{left:403.200000pt;}
.x17_c00365{left:404.266667pt;}
.x5b_c00365{left:405.466667pt;}
.x98_c00365{left:406.800000pt;}
.x8f_c00365{left:407.866667pt;}
.x9c_c00365{left:409.866667pt;}
.x52_c00365{left:410.933333pt;}
.x36_c00365{left:412.400000pt;}
.x63_c00365{left:413.733333pt;}
.x1e_c00365{left:415.066667pt;}
.x3f_c00365{left:416.933333pt;}
.x78_c00365{left:418.000000pt;}
.xf_c00365{left:418.933333pt;}
.x8_c00365{left:420.400000pt;}
.x89_c00365{left:421.466667pt;}
.x3c_c00365{left:423.333333pt;}
.x5c_c00365{left:426.000000pt;}
.x2b_c00365{left:426.933333pt;}
.x8e_c00365{left:431.066667pt;}
.x1f_c00365{left:432.000000pt;}
.x4e_c00365{left:433.200000pt;}
.x24_c00365{left:435.333333pt;}
.x47_c00365{left:437.733333pt;}
.x31_c00365{left:439.333333pt;}
.x7e_c00365{left:442.133333pt;}
.x76_c00365{left:444.133333pt;}
.x5f_c00365{left:446.533333pt;}
.x18_c00365{left:449.066667pt;}
.x10_c00365{left:450.000000pt;}
.x43_c00365{left:454.533333pt;}
.x79_c00365{left:459.600000pt;}
.x6c_c00365{left:461.200000pt;}
.x48_c00365{left:474.533333pt;}
.xd8_c00365{left:481.866667pt;}
.xe2_c00365{left:483.466667pt;}
.x13b_c00365{left:485.066667pt;}
.xdb_c00365{left:489.600000pt;}
.x10c_c00365{left:495.333333pt;}
.x106_c00365{left:496.400000pt;}
.xab_c00365{left:497.333333pt;}
.x116_c00365{left:498.933333pt;}
.x12a_c00365{left:499.866667pt;}
.xdc_c00365{left:500.800000pt;}
.x111_c00365{left:507.466667pt;}
.x137_c00365{left:508.800000pt;}
.xc7_c00365{left:512.000000pt;}
.x123_c00365{left:513.466667pt;}
.xe7_c00365{left:514.933333pt;}
.x13c_c00365{left:516.133333pt;}
.x127_c00365{left:517.200000pt;}
.xb4_c00365{left:518.133333pt;}
.xac_c00365{left:520.000000pt;}
.xf6_c00365{left:520.933333pt;}
.xcd_c00365{left:522.533333pt;}
.xe3_c00365{left:523.466667pt;}
.x11f_c00365{left:525.600000pt;}
.xf2_c00365{left:527.066667pt;}
.x119_c00365{left:528.533333pt;}
.xf4_c00365{left:530.800000pt;}
.x138_c00365{left:533.066667pt;}
.xd9_c00365{left:534.400000pt;}
.xb9_c00365{left:536.666667pt;}
.x107_c00365{left:537.600000pt;}
.xd5_c00365{left:540.400000pt;}
.x139_c00365{left:542.133333pt;}
.x124_c00365{left:544.133333pt;}
.xec_c00365{left:545.333333pt;}
.x146_c00365{left:548.000000pt;}
.x100_c00365{left:549.466667pt;}
.xc8_c00365{left:552.000000pt;}
.xe8_c00365{left:553.600000pt;}
.xf5_c00365{left:554.533333pt;}
.xce_c00365{left:555.466667pt;}
.xc2_c00365{left:556.533333pt;}
.x10d_c00365{left:558.400000pt;}
.xba_c00365{left:560.400000pt;}
.xb5_c00365{left:561.333333pt;}
.x142_c00365{left:564.133333pt;}
.xed_c00365{left:565.466667pt;}
.x140_c00365{left:567.333333pt;}
.x134_c00365{left:568.933333pt;}
.x10e_c00365{left:571.200000pt;}
.xda_c00365{left:572.400000pt;}
.xcf_c00365{left:573.333333pt;}
.xf7_c00365{left:578.533333pt;}
.x130_c00365{left:579.733333pt;}
.xbb_c00365{left:582.533333pt;}
.xd6_c00365{left:585.466667pt;}
.x11a_c00365{left:589.066667pt;}
.xad_c00365{left:590.400000pt;}
.x13a_c00365{left:591.733333pt;}
.xd7_c00365{left:596.400000pt;}
.xc9_c00365{left:598.133333pt;}
.xd0_c00365{left:600.266667pt;}
.x125_c00365{left:601.333333pt;}
.x12b_c00365{left:602.533333pt;}
.xdd_c00365{left:603.600000pt;}
.xe1_c00365{left:605.200000pt;}
.x135_c00365{left:606.400000pt;}
.xae_c00365{left:608.000000pt;}
.xfc_c00365{left:609.733333pt;}
.xef_c00365{left:611.866667pt;}
.x143_c00365{left:612.800000pt;}
.xde_c00365{left:613.866667pt;}
.x117_c00365{left:615.466667pt;}
.xbc_c00365{left:616.400000pt;}
.x120_c00365{left:617.466667pt;}
.xf3_c00365{left:620.800000pt;}
.x101_c00365{left:621.733333pt;}
.x13d_c00365{left:622.666667pt;}
.x11b_c00365{left:625.600000pt;}
.x131_c00365{left:627.466667pt;}
.xca_c00365{left:628.533333pt;}
.x112_c00365{left:630.133333pt;}
.xc3_c00365{left:632.933333pt;}
.x108_c00365{left:634.533333pt;}
.xbd_c00365{left:636.533333pt;}
.x147_c00365{left:642.533333pt;}
.xd1_c00365{left:643.733333pt;}
.x12d_c00365{left:644.666667pt;}
.xfd_c00365{left:645.600000pt;}
.xdf_c00365{left:647.466667pt;}
.x144_c00365{left:649.333333pt;}
.xe9_c00365{left:650.933333pt;}
.x126_c00365{left:652.133333pt;}
.xbe_c00365{left:653.466667pt;}
.xb6_c00365{left:655.200000pt;}
.x12e_c00365{left:657.200000pt;}
.xaf_c00365{left:659.466667pt;}
.xe4_c00365{left:660.800000pt;}
.x113_c00365{left:661.866667pt;}
.xee_c00365{left:663.733333pt;}
.x132_c00365{left:665.200000pt;}
.xf0_c00365{left:666.266667pt;}
.x121_c00365{left:667.733333pt;}
.x109_c00365{left:670.266667pt;}
.xb0_c00365{left:673.200000pt;}
.x128_c00365{left:674.533333pt;}
.xcb_c00365{left:675.600000pt;}
.xf8_c00365{left:679.066667pt;}
.x102_c00365{left:680.666667pt;}
.x122_c00365{left:681.866667pt;}
.x12c_c00365{left:683.200000pt;}
.xd2_c00365{left:685.066667pt;}
.xc4_c00365{left:686.400000pt;}
.x11c_c00365{left:687.333333pt;}
.xb7_c00365{left:690.666667pt;}
.x133_c00365{left:691.733333pt;}
.x13f_c00365{left:694.533333pt;}
.xe0_c00365{left:696.133333pt;}
.x114_c00365{left:697.333333pt;}
.x103_c00365{left:698.933333pt;}
.xbf_c00365{left:699.866667pt;}
.x118_c00365{left:701.866667pt;}
.xea_c00365{left:703.066667pt;}
.x11d_c00365{left:704.666667pt;}
.xfe_c00365{left:709.866667pt;}
.xb1_c00365{left:710.933333pt;}
.x10a_c00365{left:712.266667pt;}
.xf9_c00365{left:714.000000pt;}
.xe5_c00365{left:715.466667pt;}
.xd3_c00365{left:717.333333pt;}
.x136_c00365{left:718.400000pt;}
.x145_c00365{left:724.000000pt;}
.xc5_c00365{left:725.466667pt;}
.xe6_c00365{left:726.933333pt;}
.x129_c00365{left:728.000000pt;}
.xfa_c00365{left:729.733333pt;}
.xb2_c00365{left:731.466667pt;}
.x10b_c00365{left:734.666667pt;}
.x104_c00365{left:739.200000pt;}
.x13e_c00365{left:740.133333pt;}
.x10f_c00365{left:741.733333pt;}
.xeb_c00365{left:743.066667pt;}
.xf1_c00365{left:744.666667pt;}
.x11e_c00365{left:745.866667pt;}
.xc0_c00365{left:747.200000pt;}
.xb3_c00365{left:748.800000pt;}
.xd4_c00365{left:751.200000pt;}
.xcc_c00365{left:752.666667pt;}
.xb8_c00365{left:756.533333pt;}
.x141_c00365{left:759.600000pt;}
.x115_c00365{left:762.000000pt;}
.xc6_c00365{left:763.200000pt;}
.x105_c00365{left:764.533333pt;}
.x110_c00365{left:765.466667pt;}
.xc1_c00365{left:766.666667pt;}
.xfb_c00365{left:767.866667pt;}
.xff_c00365{left:770.666667pt;}
.x12f_c00365{left:773.333333pt;}
}





/* 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_c00366 {
    display:none;
  }
  .loading-indicator_c00366.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00366 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_c00366 { 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_c00366" -> "#page-container .classname_c00366")
 */
.pf_c00366 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00366 { /* 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_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00366 { /* 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_c00366 { /* 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_c00366 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00366 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00366 {overflow:visible;}
  }
}
.c_c00366 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00366 { /* 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_c00366:after { /* webkit #35443 */
  content: '';
}
.t_c00366:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00366 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 */
}
.__c00366 { /* 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_c00366 { /* info for Javascript */
  display:none;
}
.l_c00366 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00366 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00366 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00366: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_c00366 {
    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_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00366.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_c00366 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00366;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.000000;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;}
.ma9_c00366{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m130_c00366{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m51_c00366{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m61_c00366{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m52_c00366{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00366{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00366{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m19_c00366{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m45_c00366{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00366{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m53_c00366{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m58_c00366{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00366{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m46_c00366{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m72_c00366{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m77_c00366{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00366{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00366{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mea_c00366{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m59_c00366{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00366{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00366{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mec_c00366{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00366{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00366{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00366{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m54_c00366{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.med_c00366{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m62_c00366{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00366{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.meb_c00366{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00366{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m106_c00366{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00366{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m73_c00366{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13_c00366{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00366{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00366{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00366{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m33_c00366{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.ma_c00366{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m136_c00366{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00366{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00366{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m132_c00366{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m5_c00366{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md1_c00366{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00366{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00366{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m113_c00366{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00366{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00366{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me9_c00366{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00366{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m3_c00366{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mab_c00366{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m133_c00366{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m135_c00366{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m121_c00366{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m11_c00366{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00366{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00366{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mef_c00366{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m36_c00366{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m20_c00366{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00366{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.md6_c00366{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m104_c00366{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00366{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00366{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m66_c00366{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00366{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m117_c00366{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00366{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00366{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4_c00366{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md5_c00366{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m119_c00366{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.me0_c00366{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00366{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00366{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00366{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.me4_c00366{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m108_c00366{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00366{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.me8_c00366{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m17_c00366{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00366{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00366{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6_c00366{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m98_c00366{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00366{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00366{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m122_c00366{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00366{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m120_c00366{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m2_c00366{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m69_c00366{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me2_c00366{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00366{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m129_c00366{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00366{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m134_c00366{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m84_c00366{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00366{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00366{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00366{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m118_c00366{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00366{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00366{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m29_c00366{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00366{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me6_c00366{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.maa_c00366{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00366{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.md2_c00366{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mf_c00366{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00366{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00366{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m64_c00366{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m89_c00366{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m24_c00366{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00366{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00366{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00366{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m85_c00366{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me_c00366{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m68_c00366{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00366{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m43_c00366{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00366{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m18_c00366{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mac_c00366{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m124_c00366{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m105_c00366{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00366{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00366{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m81_c00366{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m26_c00366{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me1_c00366{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.maf_c00366{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m28_c00366{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m21_c00366{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00366{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00366{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00366{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m60_c00366{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m107_c00366{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00366{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m91_c00366{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m87_c00366{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m70_c00366{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00366{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m99_c00366{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m126_c00366{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00366{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mde_c00366{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m22_c00366{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m109_c00366{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00366{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00366{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md3_c00366{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00366{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m34_c00366{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m27_c00366{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00366{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md_c00366{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m25_c00366{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m93_c00366{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m75_c00366{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m97_c00366{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00366{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.md0_c00366{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00366{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00366{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m35_c00366{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00366{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m115_c00366{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m90_c00366{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m67_c00366{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m88_c00366{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00366{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m94_c00366{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8_c00366{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m95_c00366{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mba_c00366{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m50_c00366{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m79_c00366{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m125_c00366{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00366{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00366{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m110_c00366{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00366{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00366{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m12_c00366{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00366{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mae_c00366{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m83_c00366{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m123_c00366{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00366{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00366{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m128_c00366{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m57_c00366{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00366{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m65_c00366{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md8_c00366{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9_c00366{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m44_c00366{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00366{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m82_c00366{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00366{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00366{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m37_c00366{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00366{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md7_c00366{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00366{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m42_c00366{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mce_c00366{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00366{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m78_c00366{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00366{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00366{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me3_c00366{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00366{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m10_c00366{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00366{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m23_c00366{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m116_c00366{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m92_c00366{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m49_c00366{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mad_c00366{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00366{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m114_c00366{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00366{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00366{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00366{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00366{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md4_c00366{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md9_c00366{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00366{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00366{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00366{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m76_c00366{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mff_c00366{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m38_c00366{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00366{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m71_c00366{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m137_c00366{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m31_c00366{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00366{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m74_c00366{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00366{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m131_c00366{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00366{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00366{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m96_c00366{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m39_c00366{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m100_c00366{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00366{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00366{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me5_c00366{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m15_c00366{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00366{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00366{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);}
.mc7_c00366{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00366{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m47_c00366{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00366{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00366{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00366{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m80_c00366{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m30_c00366{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb_c00366{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m111_c00366{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m41_c00366{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m112_c00366{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m16_c00366{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m56_c00366{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00366{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m127_c00366{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00366{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m86_c00366{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m103_c00366{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00366{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m102_c00366{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m14_c00366{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mca_c00366{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m32_c00366{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mda_c00366{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00366{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00366{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00366{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m101_c00366{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00366{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00366{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mee_c00366{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7_c00366{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00366{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00366{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00366{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00366{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me7_c00366{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00366{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00366{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m138_c00366{transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428000,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00366{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00366{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m63_c00366{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m48_c00366{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m40_c00366{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m55_c00366{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls1_c00366{letter-spacing:0.000000px;}
.ls0_c00366{letter-spacing:76.923664px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{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__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00366{word-spacing:-109.923664px;}
.ws10_c00366{word-spacing:-8.970588px;}
.ws12_c00366{word-spacing:-7.058824px;}
.ws11_c00366{word-spacing:-5.833333px;}
.wsf_c00366{word-spacing:-1.250000px;}
.ws13_c00366{word-spacing:0.000000px;}
.ws6_c00366{word-spacing:0.384615px;}
.wse_c00366{word-spacing:3.654987px;}
.wsc_c00366{word-spacing:22.142857px;}
.wsb_c00366{word-spacing:23.428571px;}
.ws0_c00366{word-spacing:25.714286px;}
.ws2_c00366{word-spacing:29.285714px;}
.wsa_c00366{word-spacing:32.000000px;}
.ws7_c00366{word-spacing:32.360656px;}
.ws9_c00366{word-spacing:35.333333px;}
.ws3_c00366{word-spacing:35.833333px;}
.ws5_c00366{word-spacing:36.000000px;}
.ws1_c00366{word-spacing:40.000000px;}
.wsd_c00366{word-spacing:44.166667px;}
.ws4_c00366{word-spacing:60.000000px;}
._5_c00366{margin-left:-76.923664px;}
._4_c00366{width:4.580153px;}
._6_c00366{width:52.666667px;}
._2_c00366{width:55.714286px;}
._0_c00366{width:59.285714px;}
._3_c00366{width:61.426230px;}
._7_c00366{width:65.833333px;}
._1_c00366{width:74.166667px;}
._8_c00366{width:93.125000px;}
.fc0_c00366{color:transparent;}
.fs5_c00366{font-size:48.000000px;}
.fs3_c00366{font-size:54.000000px;}
.fs4_c00366{font-size:60.000000px;}
.fs2_c00366{font-size:66.000000px;}
.fs6_c00366{font-size:72.000000px;}
.fs1_c00366{font-size:78.000000px;}
.fs0_c00366{font-size:84.000000px;}
.y0_c00366{bottom:0.000000px;}
.y6b_c00366{bottom:174.600000px;}
.y37_c00366{bottom:191.100000px;}
.y6a_c00366{bottom:191.850000px;}
.y36_c00366{bottom:206.250000px;}
.y69_c00366{bottom:209.850000px;}
.y35_c00366{bottom:219.900000px;}
.y68_c00366{bottom:227.550000px;}
.y34_c00366{bottom:234.300000px;}
.y67_c00366{bottom:244.800000px;}
.y66_c00366{bottom:270.750000px;}
.y33_c00366{bottom:280.500000px;}
.y65_c00366{bottom:288.450000px;}
.y32_c00366{bottom:302.250000px;}
.y64_c00366{bottom:306.450000px;}
.y31_c00366{bottom:319.950000px;}
.y63_c00366{bottom:324.450000px;}
.y30_c00366{bottom:337.950000px;}
.y62_c00366{bottom:342.150000px;}
.y2f_c00366{bottom:355.650000px;}
.y61_c00366{bottom:359.850000px;}
.y2e_c00366{bottom:373.650000px;}
.y60_c00366{bottom:377.850000px;}
.y2d_c00366{bottom:391.350000px;}
.y5f_c00366{bottom:395.550000px;}
.y2c_c00366{bottom:409.050000px;}
.y5e_c00366{bottom:412.800000px;}
.y2b_c00366{bottom:426.300000px;}
.y5d_c00366{bottom:430.500000px;}
.y2a_c00366{bottom:444.300000px;}
.y5c_c00366{bottom:448.200000px;}
.y29_c00366{bottom:465.900000px;}
.y5b_c00366{bottom:483.600000px;}
.y28_c00366{bottom:483.900000px;}
.y5a_c00366{bottom:501.600000px;}
.y27_c00366{bottom:505.350000px;}
.y59_c00366{bottom:519.300000px;}
.y26_c00366{bottom:523.050000px;}
.y58_c00366{bottom:537.300000px;}
.y25_c00366{bottom:540.900000px;}
.y57_c00366{bottom:555.000000px;}
.y24_c00366{bottom:558.600000px;}
.y56_c00366{bottom:572.700000px;}
.y23_c00366{bottom:576.600000px;}
.y22_c00366{bottom:594.300000px;}
.y55_c00366{bottom:599.100000px;}
.y54_c00366{bottom:612.000000px;}
.y21_c00366{bottom:612.300000px;}
.y53_c00366{bottom:627.450000px;}
.y20_c00366{bottom:630.000000px;}
.y52_c00366{bottom:640.800000px;}
.y1f_c00366{bottom:647.700000px;}
.y51_c00366{bottom:656.250000px;}
.y1e_c00366{bottom:665.400000px;}
.y50_c00366{bottom:669.300000px;}
.y1d_c00366{bottom:683.100000px;}
.y4f_c00366{bottom:684.000000px;}
.y4e_c00366{bottom:697.650000px;}
.y1c_c00366{bottom:700.800000px;}
.y4d_c00366{bottom:712.350000px;}
.y1b_c00366{bottom:718.800000px;}
.y4c_c00366{bottom:726.750000px;}
.y1a_c00366{bottom:736.800000px;}
.y4b_c00366{bottom:740.850000px;}
.y19_c00366{bottom:754.500000px;}
.y4a_c00366{bottom:754.950000px;}
.y49_c00366{bottom:769.350000px;}
.y18_c00366{bottom:772.200000px;}
.y48_c00366{bottom:783.750000px;}
.y17_c00366{bottom:793.800000px;}
.y47_c00366{bottom:797.850000px;}
.y16_c00366{bottom:806.700000px;}
.y46_c00366{bottom:812.550000px;}
.y15_c00366{bottom:822.600000px;}
.y45_c00366{bottom:836.550000px;}
.y14_c00366{bottom:836.700000px;}
.y13_c00366{bottom:849.600000px;}
.y44_c00366{bottom:854.550000px;}
.y12_c00366{bottom:865.500000px;}
.y43_c00366{bottom:871.800000px;}
.y11_c00366{bottom:878.400000px;}
.y42_c00366{bottom:889.500000px;}
.y10_c00366{bottom:893.850000px;}
.yf_c00366{bottom:908.250000px;}
.y41_c00366{bottom:916.050000px;}
.ye_c00366{bottom:921.450000px;}
.y40_c00366{bottom:933.750000px;}
.yd_c00366{bottom:937.350000px;}
.yc_c00366{bottom:951.450000px;}
.yb_c00366{bottom:964.800000px;}
.y3f_c00366{bottom:969.150000px;}
.ya_c00366{bottom:980.700000px;}
.y3e_c00366{bottom:986.850000px;}
.y9_c00366{bottom:999.300000px;}
.y3d_c00366{bottom:1009.500000px;}
.y8_c00366{bottom:1017.300000px;}
.y3c_c00366{bottom:1022.100000px;}
.y7_c00366{bottom:1035.000000px;}
.y3b_c00366{bottom:1044.000000px;}
.y6_c00366{bottom:1052.700000px;}
.y3a_c00366{bottom:1061.700000px;}
.y5_c00366{bottom:1074.150000px;}
.y4_c00366{bottom:1091.850000px;}
.y39_c00366{bottom:1092.600000px;}
.y3_c00366{bottom:1109.850000px;}
.y38_c00366{bottom:1110.600000px;}
.y2_c00366{bottom:1136.250000px;}
.y1_c00366{bottom:1137.300000px;}
.h7_c00366{height:48.000000px;}
.h5_c00366{height:54.000000px;}
.h6_c00366{height:60.000000px;}
.h4_c00366{height:66.000000px;}
.h8_c00366{height:72.000000px;}
.h3_c00366{height:78.000000px;}
.h2_c00366{height:84.000000px;}
.h0_c00366{height:1273.320007px;}
.h1_c00366{height:1273.500000px;}
.w0_c00366{width:960.480010px;}
.w1_c00366{width:960.750000px;}
.x0_c00366{left:0.000000px;}
.x14_c00366{left:87.450000px;}
.x9f_c00366{left:89.100000px;}
.x80_c00366{left:92.550000px;}
.x56_c00366{left:100.800000px;}
.x34_c00366{left:102.000000px;}
.x86_c00366{left:103.500000px;}
.x1a_c00366{left:105.450000px;}
.x3_c00366{left:106.500000px;}
.x43_c00366{left:115.650000px;}
.xa0_c00366{left:119.400000px;}
.x99_c00366{left:122.100000px;}
.x1b_c00366{left:123.450000px;}
.x84_c00366{left:124.500000px;}
.x8b_c00366{left:128.700000px;}
.x9d_c00366{left:130.050000px;}
.x4a_c00366{left:131.100000px;}
.x35_c00366{left:132.300000px;}
.x15_c00366{left:134.250000px;}
.x4_c00366{left:137.100000px;}
.x12_c00366{left:138.450000px;}
.x61_c00366{left:140.700000px;}
.x9a_c00366{left:141.900000px;}
.x67_c00366{left:144.000000px;}
.x87_c00366{left:147.900000px;}
.x2c_c00366{left:149.100000px;}
.x24_c00366{left:152.250000px;}
.x3b_c00366{left:153.750000px;}
.x5_c00366{left:156.150000px;}
.xc_c00366{left:157.800000px;}
.x5e_c00366{left:159.900000px;}
.x50_c00366{left:161.850000px;}
.x7b_c00366{left:164.100000px;}
.x6b_c00366{left:168.450000px;}
.x13_c00366{left:169.800000px;}
.x9b_c00366{left:171.000000px;}
.x1c_c00366{left:172.800000px;}
.xa1_c00366{left:174.450000px;}
.x36_c00366{left:177.600000px;}
.x44_c00366{left:179.400000px;}
.x1d_c00366{left:181.800000px;}
.x28_c00366{left:182.850000px;}
.x3c_c00366{left:184.350000px;}
.x91_c00366{left:186.750000px;}
.x9c_c00366{left:187.950000px;}
.x75_c00366{left:189.600000px;}
.x83_c00366{left:191.700000px;}
.x37_c00366{left:193.050000px;}
.x6_c00366{left:195.000000px;}
.x47_c00366{left:196.650000px;}
.x81_c00366{left:197.700000px;}
.x62_c00366{left:199.800000px;}
.x16_c00366{left:200.850000px;}
.xd_c00366{left:202.050000px;}
.x72_c00366{left:203.250000px;}
.x48_c00366{left:204.900000px;}
.x51_c00366{left:207.150000px;}
.x5f_c00366{left:208.950000px;}
.x2d_c00366{left:210.000000px;}
.x92_c00366{left:212.400000px;}
.x7_c00366{left:213.750000px;}
.x57_c00366{left:216.000000px;}
.x88_c00366{left:218.850000px;}
.x76_c00366{left:219.900000px;}
.x1e_c00366{left:221.100000px;}
.x3d_c00366{left:222.450000px;}
.x7d_c00366{left:223.800000px;}
.x38_c00366{left:225.150000px;}
.x63_c00366{left:226.500000px;}
.x25_c00366{left:228.150000px;}
.x4b_c00366{left:230.100000px;}
.x7f_c00366{left:231.450000px;}
.x8d_c00366{left:232.800000px;}
.x29_c00366{left:234.300000px;}
.x4c_c00366{left:236.250000px;}
.x97_c00366{left:238.200000px;}
.x54_c00366{left:239.250000px;}
.x17_c00366{left:241.200000px;}
.x4d_c00366{left:243.450000px;}
.x39_c00366{left:244.650000px;}
.x8_c00366{left:245.850000px;}
.x2e_c00366{left:248.550000px;}
.x26_c00366{left:250.050000px;}
.x3e_c00366{left:251.550000px;}
.x64_c00366{left:252.750000px;}
.x77_c00366{left:256.950000px;}
.x65_c00366{left:258.000000px;}
.x3f_c00366{left:259.050000px;}
.x49_c00366{left:261.450000px;}
.x1f_c00366{left:262.500000px;}
.xe_c00366{left:264.750000px;}
.x60_c00366{left:266.100000px;}
.x2f_c00366{left:268.650000px;}
.x52_c00366{left:272.550000px;}
.x58_c00366{left:273.900000px;}
.x9e_c00366{left:276.150000px;}
.x20_c00366{left:277.950000px;}
.x4e_c00366{left:280.050000px;}
.x59_c00366{left:281.100000px;}
.x55_c00366{left:283.500000px;}
.x2a_c00366{left:286.200000px;}
.x40_c00366{left:288.150000px;}
.x8e_c00366{left:290.400000px;}
.x3a_c00366{left:294.750000px;}
.x5a_c00366{left:295.800000px;}
.x73_c00366{left:297.600000px;}
.x9_c00366{left:299.550000px;}
.x98_c00366{left:300.900000px;}
.x5b_c00366{left:302.700000px;}
.x78_c00366{left:304.500000px;}
.x6e_c00366{left:306.600000px;}
.x2b_c00366{left:308.100000px;}
.x5c_c00366{left:310.200000px;}
.x30_c00366{left:312.900000px;}
.x45_c00366{left:316.500000px;}
.xf_c00366{left:318.000000px;}
.x21_c00366{left:320.100000px;}
.x68_c00366{left:322.950000px;}
.x53_c00366{left:324.300000px;}
.x66_c00366{left:326.550000px;}
.x85_c00366{left:329.850000px;}
.x1_c00366{left:330.900000px;}
.x5d_c00366{left:332.100000px;}
.x18_c00366{left:335.850000px;}
.x89_c00366{left:336.900000px;}
.x6f_c00366{left:340.050000px;}
.x31_c00366{left:342.750000px;}
.x8f_c00366{left:346.050000px;}
.x93_c00366{left:347.700000px;}
.x7a_c00366{left:349.500000px;}
.x41_c00366{left:350.700000px;}
.x95_c00366{left:351.750000px;}
.x22_c00366{left:352.800000px;}
.x6d_c00366{left:354.150000px;}
.x70_c00366{left:356.550000px;}
.x69_c00366{left:357.900000px;}
.x94_c00366{left:361.050000px;}
.x10_c00366{left:364.050000px;}
.x74_c00366{left:367.800000px;}
.x90_c00366{left:369.750000px;}
.x32_c00366{left:373.350000px;}
.x6c_c00366{left:374.850000px;}
.xa_c00366{left:377.700000px;}
.x42_c00366{left:379.500000px;}
.x4f_c00366{left:380.700000px;}
.x96_c00366{left:382.050000px;}
.x6a_c00366{left:383.400000px;}
.x71_c00366{left:387.150000px;}
.x27_c00366{left:388.800000px;}
.x19_c00366{left:390.600000px;}
.x8c_c00366{left:393.750000px;}
.x82_c00366{left:396.900000px;}
.x7e_c00366{left:400.950000px;}
.x46_c00366{left:402.300000px;}
.x11_c00366{left:403.350000px;}
.x79_c00366{left:405.600000px;}
.x33_c00366{left:407.250000px;}
.x23_c00366{left:408.900000px;}
.x8a_c00366{left:410.250000px;}
.x7c_c00366{left:417.150000px;}
.xb_c00366{left:418.350000px;}
.x139_c00366{left:441.300000px;}
.xd9_c00366{left:442.800000px;}
.xb2_c00366{left:444.600000px;}
.xf7_c00366{left:456.450000px;}
.xe7_c00366{left:458.700000px;}
.xdf_c00366{left:460.200000px;}
.xb5_c00366{left:461.250000px;}
.xa2_c00366{left:462.300000px;}
.x107_c00366{left:466.350000px;}
.x10a_c00366{left:471.150000px;}
.xfb_c00366{left:472.350000px;}
.xe8_c00366{left:475.650000px;}
.xb7_c00366{left:479.850000px;}
.x11e_c00366{left:480.900000px;}
.xda_c00366{left:485.250000px;}
.xf4_c00366{left:487.650000px;}
.xb8_c00366{left:488.850000px;}
.x10b_c00366{left:492.450000px;}
.xc8_c00366{left:494.850000px;}
.x12e_c00366{left:496.500000px;}
.xd0_c00366{left:500.400000px;}
.xe0_c00366{left:501.900000px;}
.xb6_c00366{left:504.450000px;}
.xef_c00366{left:505.500000px;}
.x12a_c00366{left:506.850000px;}
.x10c_c00366{left:511.500000px;}
.xc9_c00366{left:513.150000px;}
.x12b_c00366{left:516.150000px;}
.x13a_c00366{left:518.250000px;}
.xc1_c00366{left:519.900000px;}
.xe9_c00366{left:521.400000px;}
.xe1_c00366{left:524.250000px;}
.xfc_c00366{left:527.400000px;}
.x108_c00366{left:528.450000px;}
.xa3_c00366{left:530.400000px;}
.xd6_c00366{left:533.850000px;}
.xf0_c00366{left:535.050000px;}
.xc2_c00366{left:536.400000px;}
.xd1_c00366{left:537.450000px;}
.xa4_c00366{left:539.400000px;}
.xf5_c00366{left:540.450000px;}
.x131_c00366{left:542.400000px;}
.x123_c00366{left:544.800000px;}
.xfd_c00366{left:546.150000px;}
.xb9_c00366{left:549.000000px;}
.x132_c00366{left:551.400000px;}
.x113_c00366{left:555.900000px;}
.x111_c00366{left:557.400000px;}
.xa5_c00366{left:560.250000px;}
.xba_c00366{left:561.600000px;}
.x114_c00366{left:563.100000px;}
.xae_c00366{left:565.800000px;}
.xd2_c00366{left:567.750000px;}
.x109_c00366{left:569.100000px;}
.xe2_c00366{left:572.100000px;}
.x117_c00366{left:573.450000px;}
.xa6_c00366{left:576.450000px;}
.xfe_c00366{left:577.500000px;}
.x130_c00366{left:581.400000px;}
.x124_c00366{left:582.900000px;}
.xe3_c00366{left:585.000000px;}
.xbb_c00366{left:586.800000px;}
.xca_c00366{left:588.000000px;}
.xea_c00366{left:589.500000px;}
.x12d_c00366{left:590.850000px;}
.xc3_c00366{left:591.900000px;}
.x10d_c00366{left:593.550000px;}
.xdb_c00366{left:594.750000px;}
.xff_c00366{left:596.550000px;}
.x115_c00366{left:599.400000px;}
.xcd_c00366{left:601.650000px;}
.x125_c00366{left:603.450000px;}
.x11b_c00366{left:606.450000px;}
.x120_c00366{left:608.250000px;}
.xeb_c00366{left:609.300000px;}
.xf1_c00366{left:610.350000px;}
.xbc_c00366{left:612.750000px;}
.x118_c00366{left:615.900000px;}
.xaf_c00366{left:616.950000px;}
.xd3_c00366{left:620.550000px;}
.x128_c00366{left:622.350000px;}
.xe4_c00366{left:623.550000px;}
.xbd_c00366{left:624.600000px;}
.xdc_c00366{left:626.100000px;}
.xc4_c00366{left:631.500000px;}
.xa7_c00366{left:632.550000px;}
.xbe_c00366{left:635.100000px;}
.x10e_c00366{left:637.050000px;}
.xa8_c00366{left:641.250000px;}
.xb3_c00366{left:643.050000px;}
.x100_c00366{left:644.850000px;}
.xf6_c00366{left:646.800000px;}
.x12c_c00366{left:648.000000px;}
.xbf_c00366{left:650.250000px;}
.x101_c00366{left:652.050000px;}
.x137_c00366{left:654.000000px;}
.xec_c00366{left:655.050000px;}
.xb0_c00366{left:656.850000px;}
.x102_c00366{left:658.950000px;}
.x126_c00366{left:660.300000px;}
.xa9_c00366{left:662.100000px;}
.x112_c00366{left:665.400000px;}
.x103_c00366{left:666.900000px;}
.xd4_c00366{left:668.100000px;}
.x119_c00366{left:669.450000px;}
.xce_c00366{left:670.500000px;}
.xed_c00366{left:674.100000px;}
.x136_c00366{left:676.350000px;}
.xaa_c00366{left:678.000000px;}
.xd7_c00366{left:681.150000px;}
.x127_c00366{left:682.650000px;}
.x129_c00366{left:684.000000px;}
.xc5_c00366{left:686.550000px;}
.x104_c00366{left:688.200000px;}
.x11f_c00366{left:689.250000px;}
.xb1_c00366{left:694.350000px;}
.xf2_c00366{left:699.600000px;}
.xc6_c00366{left:700.650000px;}
.x134_c00366{left:701.850000px;}
.x121_c00366{left:702.900000px;}
.x116_c00366{left:705.900000px;}
.x10f_c00366{left:707.100000px;}
.xf8_c00366{left:708.450000px;}
.xe5_c00366{left:709.950000px;}
.x138_c00366{left:712.350000px;}
.x133_c00366{left:715.200000px;}
.xcf_c00366{left:717.300000px;}
.x11c_c00366{left:718.500000px;}
.xcb_c00366{left:720.900000px;}
.x12f_c00366{left:722.550000px;}
.xf3_c00366{left:729.900000px;}
.xd5_c00366{left:732.150000px;}
.xc0_c00366{left:733.350000px;}
.xdd_c00366{left:734.850000px;}
.xf9_c00366{left:736.950000px;}
.x110_c00366{left:738.000000px;}
.xc7_c00366{left:739.200000px;}
.xab_c00366{left:740.700000px;}
.x122_c00366{left:741.750000px;}
.xee_c00366{left:744.300000px;}
.x11d_c00366{left:748.050000px;}
.xac_c00366{left:749.700000px;}
.x2_c00366{left:751.800000px;}
.xb4_c00366{left:752.850000px;}
.x135_c00366{left:755.100000px;}
.xe6_c00366{left:758.250000px;}
.xfa_c00366{left:760.650000px;}
.x11a_c00366{left:762.600000px;}
.xd8_c00366{left:763.950000px;}
.x106_c00366{left:765.450000px;}
.x105_c00366{left:766.650000px;}
.xcc_c00366{left:768.300000px;}
.xad_c00366{left:769.800000px;}
.x13b_c00366{left:773.700000px;}
.xde_c00366{left:775.950000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls1_c00366{letter-spacing:0.000000pt;}
.ls0_c00366{letter-spacing:68.376590pt;}
.ws8_c00366{word-spacing:-97.709924pt;}
.ws10_c00366{word-spacing:-7.973856pt;}
.ws12_c00366{word-spacing:-6.274510pt;}
.ws11_c00366{word-spacing:-5.185185pt;}
.wsf_c00366{word-spacing:-1.111111pt;}
.ws13_c00366{word-spacing:0.000000pt;}
.ws6_c00366{word-spacing:0.341880pt;}
.wse_c00366{word-spacing:3.248877pt;}
.wsc_c00366{word-spacing:19.682540pt;}
.wsb_c00366{word-spacing:20.825397pt;}
.ws0_c00366{word-spacing:22.857143pt;}
.ws2_c00366{word-spacing:26.031746pt;}
.wsa_c00366{word-spacing:28.444444pt;}
.ws7_c00366{word-spacing:28.765027pt;}
.ws9_c00366{word-spacing:31.407407pt;}
.ws3_c00366{word-spacing:31.851852pt;}
.ws5_c00366{word-spacing:32.000000pt;}
.ws1_c00366{word-spacing:35.555556pt;}
.wsd_c00366{word-spacing:39.259259pt;}
.ws4_c00366{word-spacing:53.333333pt;}
._5_c00366{margin-left:-68.376590pt;}
._4_c00366{width:4.071247pt;}
._6_c00366{width:46.814815pt;}
._2_c00366{width:49.523810pt;}
._0_c00366{width:52.698413pt;}
._3_c00366{width:54.601093pt;}
._7_c00366{width:58.518519pt;}
._1_c00366{width:65.925926pt;}
._8_c00366{width:82.777778pt;}
.fs5_c00366{font-size:42.666667pt;}
.fs3_c00366{font-size:48.000000pt;}
.fs4_c00366{font-size:53.333333pt;}
.fs2_c00366{font-size:58.666667pt;}
.fs6_c00366{font-size:64.000000pt;}
.fs1_c00366{font-size:69.333333pt;}
.fs0_c00366{font-size:74.666667pt;}
.y0_c00366{bottom:0.000000pt;}
.y6b_c00366{bottom:155.200000pt;}
.y37_c00366{bottom:169.866667pt;}
.y6a_c00366{bottom:170.533333pt;}
.y36_c00366{bottom:183.333333pt;}
.y69_c00366{bottom:186.533333pt;}
.y35_c00366{bottom:195.466667pt;}
.y68_c00366{bottom:202.266667pt;}
.y34_c00366{bottom:208.266667pt;}
.y67_c00366{bottom:217.600000pt;}
.y66_c00366{bottom:240.666667pt;}
.y33_c00366{bottom:249.333333pt;}
.y65_c00366{bottom:256.400000pt;}
.y32_c00366{bottom:268.666667pt;}
.y64_c00366{bottom:272.400000pt;}
.y31_c00366{bottom:284.400000pt;}
.y63_c00366{bottom:288.400000pt;}
.y30_c00366{bottom:300.400000pt;}
.y62_c00366{bottom:304.133333pt;}
.y2f_c00366{bottom:316.133333pt;}
.y61_c00366{bottom:319.866667pt;}
.y2e_c00366{bottom:332.133333pt;}
.y60_c00366{bottom:335.866667pt;}
.y2d_c00366{bottom:347.866667pt;}
.y5f_c00366{bottom:351.600000pt;}
.y2c_c00366{bottom:363.600000pt;}
.y5e_c00366{bottom:366.933333pt;}
.y2b_c00366{bottom:378.933333pt;}
.y5d_c00366{bottom:382.666667pt;}
.y2a_c00366{bottom:394.933333pt;}
.y5c_c00366{bottom:398.400000pt;}
.y29_c00366{bottom:414.133333pt;}
.y5b_c00366{bottom:429.866667pt;}
.y28_c00366{bottom:430.133333pt;}
.y5a_c00366{bottom:445.866667pt;}
.y27_c00366{bottom:449.200000pt;}
.y59_c00366{bottom:461.600000pt;}
.y26_c00366{bottom:464.933333pt;}
.y58_c00366{bottom:477.600000pt;}
.y25_c00366{bottom:480.800000pt;}
.y57_c00366{bottom:493.333333pt;}
.y24_c00366{bottom:496.533333pt;}
.y56_c00366{bottom:509.066667pt;}
.y23_c00366{bottom:512.533333pt;}
.y22_c00366{bottom:528.266667pt;}
.y55_c00366{bottom:532.533333pt;}
.y54_c00366{bottom:544.000000pt;}
.y21_c00366{bottom:544.266667pt;}
.y53_c00366{bottom:557.733333pt;}
.y20_c00366{bottom:560.000000pt;}
.y52_c00366{bottom:569.600000pt;}
.y1f_c00366{bottom:575.733333pt;}
.y51_c00366{bottom:583.333333pt;}
.y1e_c00366{bottom:591.466667pt;}
.y50_c00366{bottom:594.933333pt;}
.y1d_c00366{bottom:607.200000pt;}
.y4f_c00366{bottom:608.000000pt;}
.y4e_c00366{bottom:620.133333pt;}
.y1c_c00366{bottom:622.933333pt;}
.y4d_c00366{bottom:633.200000pt;}
.y1b_c00366{bottom:638.933333pt;}
.y4c_c00366{bottom:646.000000pt;}
.y1a_c00366{bottom:654.933333pt;}
.y4b_c00366{bottom:658.533333pt;}
.y19_c00366{bottom:670.666667pt;}
.y4a_c00366{bottom:671.066667pt;}
.y49_c00366{bottom:683.866667pt;}
.y18_c00366{bottom:686.400000pt;}
.y48_c00366{bottom:696.666667pt;}
.y17_c00366{bottom:705.600000pt;}
.y47_c00366{bottom:709.200000pt;}
.y16_c00366{bottom:717.066667pt;}
.y46_c00366{bottom:722.266667pt;}
.y15_c00366{bottom:731.200000pt;}
.y45_c00366{bottom:743.600000pt;}
.y14_c00366{bottom:743.733333pt;}
.y13_c00366{bottom:755.200000pt;}
.y44_c00366{bottom:759.600000pt;}
.y12_c00366{bottom:769.333333pt;}
.y43_c00366{bottom:774.933333pt;}
.y11_c00366{bottom:780.800000pt;}
.y42_c00366{bottom:790.666667pt;}
.y10_c00366{bottom:794.533333pt;}
.yf_c00366{bottom:807.333333pt;}
.y41_c00366{bottom:814.266667pt;}
.ye_c00366{bottom:819.066667pt;}
.y40_c00366{bottom:830.000000pt;}
.yd_c00366{bottom:833.200000pt;}
.yc_c00366{bottom:845.733333pt;}
.yb_c00366{bottom:857.600000pt;}
.y3f_c00366{bottom:861.466667pt;}
.ya_c00366{bottom:871.733333pt;}
.y3e_c00366{bottom:877.200000pt;}
.y9_c00366{bottom:888.266667pt;}
.y3d_c00366{bottom:897.333333pt;}
.y8_c00366{bottom:904.266667pt;}
.y3c_c00366{bottom:908.533333pt;}
.y7_c00366{bottom:920.000000pt;}
.y3b_c00366{bottom:928.000000pt;}
.y6_c00366{bottom:935.733333pt;}
.y3a_c00366{bottom:943.733333pt;}
.y5_c00366{bottom:954.800000pt;}
.y4_c00366{bottom:970.533333pt;}
.y39_c00366{bottom:971.200000pt;}
.y3_c00366{bottom:986.533333pt;}
.y38_c00366{bottom:987.200000pt;}
.y2_c00366{bottom:1010.000000pt;}
.y1_c00366{bottom:1010.933333pt;}
.h7_c00366{height:42.666667pt;}
.h5_c00366{height:48.000000pt;}
.h6_c00366{height:53.333333pt;}
.h4_c00366{height:58.666667pt;}
.h8_c00366{height:64.000000pt;}
.h3_c00366{height:69.333333pt;}
.h2_c00366{height:74.666667pt;}
.h0_c00366{height:1131.840007pt;}
.h1_c00366{height:1132.000000pt;}
.w0_c00366{width:853.760009pt;}
.w1_c00366{width:854.000000pt;}
.x0_c00366{left:0.000000pt;}
.x14_c00366{left:77.733333pt;}
.x9f_c00366{left:79.200000pt;}
.x80_c00366{left:82.266667pt;}
.x56_c00366{left:89.600000pt;}
.x34_c00366{left:90.666667pt;}
.x86_c00366{left:92.000000pt;}
.x1a_c00366{left:93.733333pt;}
.x3_c00366{left:94.666667pt;}
.x43_c00366{left:102.800000pt;}
.xa0_c00366{left:106.133333pt;}
.x99_c00366{left:108.533333pt;}
.x1b_c00366{left:109.733333pt;}
.x84_c00366{left:110.666667pt;}
.x8b_c00366{left:114.400000pt;}
.x9d_c00366{left:115.600000pt;}
.x4a_c00366{left:116.533333pt;}
.x35_c00366{left:117.600000pt;}
.x15_c00366{left:119.333333pt;}
.x4_c00366{left:121.866667pt;}
.x12_c00366{left:123.066667pt;}
.x61_c00366{left:125.066667pt;}
.x9a_c00366{left:126.133333pt;}
.x67_c00366{left:128.000000pt;}
.x87_c00366{left:131.466667pt;}
.x2c_c00366{left:132.533333pt;}
.x24_c00366{left:135.333333pt;}
.x3b_c00366{left:136.666667pt;}
.x5_c00366{left:138.800000pt;}
.xc_c00366{left:140.266667pt;}
.x5e_c00366{left:142.133333pt;}
.x50_c00366{left:143.866667pt;}
.x7b_c00366{left:145.866667pt;}
.x6b_c00366{left:149.733333pt;}
.x13_c00366{left:150.933333pt;}
.x9b_c00366{left:152.000000pt;}
.x1c_c00366{left:153.600000pt;}
.xa1_c00366{left:155.066667pt;}
.x36_c00366{left:157.866667pt;}
.x44_c00366{left:159.466667pt;}
.x1d_c00366{left:161.600000pt;}
.x28_c00366{left:162.533333pt;}
.x3c_c00366{left:163.866667pt;}
.x91_c00366{left:166.000000pt;}
.x9c_c00366{left:167.066667pt;}
.x75_c00366{left:168.533333pt;}
.x83_c00366{left:170.400000pt;}
.x37_c00366{left:171.600000pt;}
.x6_c00366{left:173.333333pt;}
.x47_c00366{left:174.800000pt;}
.x81_c00366{left:175.733333pt;}
.x62_c00366{left:177.600000pt;}
.x16_c00366{left:178.533333pt;}
.xd_c00366{left:179.600000pt;}
.x72_c00366{left:180.666667pt;}
.x48_c00366{left:182.133333pt;}
.x51_c00366{left:184.133333pt;}
.x5f_c00366{left:185.733333pt;}
.x2d_c00366{left:186.666667pt;}
.x92_c00366{left:188.800000pt;}
.x7_c00366{left:190.000000pt;}
.x57_c00366{left:192.000000pt;}
.x88_c00366{left:194.533333pt;}
.x76_c00366{left:195.466667pt;}
.x1e_c00366{left:196.533333pt;}
.x3d_c00366{left:197.733333pt;}
.x7d_c00366{left:198.933333pt;}
.x38_c00366{left:200.133333pt;}
.x63_c00366{left:201.333333pt;}
.x25_c00366{left:202.800000pt;}
.x4b_c00366{left:204.533333pt;}
.x7f_c00366{left:205.733333pt;}
.x8d_c00366{left:206.933333pt;}
.x29_c00366{left:208.266667pt;}
.x4c_c00366{left:210.000000pt;}
.x97_c00366{left:211.733333pt;}
.x54_c00366{left:212.666667pt;}
.x17_c00366{left:214.400000pt;}
.x4d_c00366{left:216.400000pt;}
.x39_c00366{left:217.466667pt;}
.x8_c00366{left:218.533333pt;}
.x2e_c00366{left:220.933333pt;}
.x26_c00366{left:222.266667pt;}
.x3e_c00366{left:223.600000pt;}
.x64_c00366{left:224.666667pt;}
.x77_c00366{left:228.400000pt;}
.x65_c00366{left:229.333333pt;}
.x3f_c00366{left:230.266667pt;}
.x49_c00366{left:232.400000pt;}
.x1f_c00366{left:233.333333pt;}
.xe_c00366{left:235.333333pt;}
.x60_c00366{left:236.533333pt;}
.x2f_c00366{left:238.800000pt;}
.x52_c00366{left:242.266667pt;}
.x58_c00366{left:243.466667pt;}
.x9e_c00366{left:245.466667pt;}
.x20_c00366{left:247.066667pt;}
.x4e_c00366{left:248.933333pt;}
.x59_c00366{left:249.866667pt;}
.x55_c00366{left:252.000000pt;}
.x2a_c00366{left:254.400000pt;}
.x40_c00366{left:256.133333pt;}
.x8e_c00366{left:258.133333pt;}
.x3a_c00366{left:262.000000pt;}
.x5a_c00366{left:262.933333pt;}
.x73_c00366{left:264.533333pt;}
.x9_c00366{left:266.266667pt;}
.x98_c00366{left:267.466667pt;}
.x5b_c00366{left:269.066667pt;}
.x78_c00366{left:270.666667pt;}
.x6e_c00366{left:272.533333pt;}
.x2b_c00366{left:273.866667pt;}
.x5c_c00366{left:275.733333pt;}
.x30_c00366{left:278.133333pt;}
.x45_c00366{left:281.333333pt;}
.xf_c00366{left:282.666667pt;}
.x21_c00366{left:284.533333pt;}
.x68_c00366{left:287.066667pt;}
.x53_c00366{left:288.266667pt;}
.x66_c00366{left:290.266667pt;}
.x85_c00366{left:293.200000pt;}
.x1_c00366{left:294.133333pt;}
.x5d_c00366{left:295.200000pt;}
.x18_c00366{left:298.533333pt;}
.x89_c00366{left:299.466667pt;}
.x6f_c00366{left:302.266667pt;}
.x31_c00366{left:304.666667pt;}
.x8f_c00366{left:307.600000pt;}
.x93_c00366{left:309.066667pt;}
.x7a_c00366{left:310.666667pt;}
.x41_c00366{left:311.733333pt;}
.x95_c00366{left:312.666667pt;}
.x22_c00366{left:313.600000pt;}
.x6d_c00366{left:314.800000pt;}
.x70_c00366{left:316.933333pt;}
.x69_c00366{left:318.133333pt;}
.x94_c00366{left:320.933333pt;}
.x10_c00366{left:323.600000pt;}
.x74_c00366{left:326.933333pt;}
.x90_c00366{left:328.666667pt;}
.x32_c00366{left:331.866667pt;}
.x6c_c00366{left:333.200000pt;}
.xa_c00366{left:335.733333pt;}
.x42_c00366{left:337.333333pt;}
.x4f_c00366{left:338.400000pt;}
.x96_c00366{left:339.600000pt;}
.x6a_c00366{left:340.800000pt;}
.x71_c00366{left:344.133333pt;}
.x27_c00366{left:345.600000pt;}
.x19_c00366{left:347.200000pt;}
.x8c_c00366{left:350.000000pt;}
.x82_c00366{left:352.800000pt;}
.x7e_c00366{left:356.400000pt;}
.x46_c00366{left:357.600000pt;}
.x11_c00366{left:358.533333pt;}
.x79_c00366{left:360.533333pt;}
.x33_c00366{left:362.000000pt;}
.x23_c00366{left:363.466667pt;}
.x8a_c00366{left:364.666667pt;}
.x7c_c00366{left:370.800000pt;}
.xb_c00366{left:371.866667pt;}
.x139_c00366{left:392.266667pt;}
.xd9_c00366{left:393.600000pt;}
.xb2_c00366{left:395.200000pt;}
.xf7_c00366{left:405.733333pt;}
.xe7_c00366{left:407.733333pt;}
.xdf_c00366{left:409.066667pt;}
.xb5_c00366{left:410.000000pt;}
.xa2_c00366{left:410.933333pt;}
.x107_c00366{left:414.533333pt;}
.x10a_c00366{left:418.800000pt;}
.xfb_c00366{left:419.866667pt;}
.xe8_c00366{left:422.800000pt;}
.xb7_c00366{left:426.533333pt;}
.x11e_c00366{left:427.466667pt;}
.xda_c00366{left:431.333333pt;}
.xf4_c00366{left:433.466667pt;}
.xb8_c00366{left:434.533333pt;}
.x10b_c00366{left:437.733333pt;}
.xc8_c00366{left:439.866667pt;}
.x12e_c00366{left:441.333333pt;}
.xd0_c00366{left:444.800000pt;}
.xe0_c00366{left:446.133333pt;}
.xb6_c00366{left:448.400000pt;}
.xef_c00366{left:449.333333pt;}
.x12a_c00366{left:450.533333pt;}
.x10c_c00366{left:454.666667pt;}
.xc9_c00366{left:456.133333pt;}
.x12b_c00366{left:458.800000pt;}
.x13a_c00366{left:460.666667pt;}
.xc1_c00366{left:462.133333pt;}
.xe9_c00366{left:463.466667pt;}
.xe1_c00366{left:466.000000pt;}
.xfc_c00366{left:468.800000pt;}
.x108_c00366{left:469.733333pt;}
.xa3_c00366{left:471.466667pt;}
.xd6_c00366{left:474.533333pt;}
.xf0_c00366{left:475.600000pt;}
.xc2_c00366{left:476.800000pt;}
.xd1_c00366{left:477.733333pt;}
.xa4_c00366{left:479.466667pt;}
.xf5_c00366{left:480.400000pt;}
.x131_c00366{left:482.133333pt;}
.x123_c00366{left:484.266667pt;}
.xfd_c00366{left:485.466667pt;}
.xb9_c00366{left:488.000000pt;}
.x132_c00366{left:490.133333pt;}
.x113_c00366{left:494.133333pt;}
.x111_c00366{left:495.466667pt;}
.xa5_c00366{left:498.000000pt;}
.xba_c00366{left:499.200000pt;}
.x114_c00366{left:500.533333pt;}
.xae_c00366{left:502.933333pt;}
.xd2_c00366{left:504.666667pt;}
.x109_c00366{left:505.866667pt;}
.xe2_c00366{left:508.533333pt;}
.x117_c00366{left:509.733333pt;}
.xa6_c00366{left:512.400000pt;}
.xfe_c00366{left:513.333333pt;}
.x130_c00366{left:516.800000pt;}
.x124_c00366{left:518.133333pt;}
.xe3_c00366{left:520.000000pt;}
.xbb_c00366{left:521.600000pt;}
.xca_c00366{left:522.666667pt;}
.xea_c00366{left:524.000000pt;}
.x12d_c00366{left:525.200000pt;}
.xc3_c00366{left:526.133333pt;}
.x10d_c00366{left:527.600000pt;}
.xdb_c00366{left:528.666667pt;}
.xff_c00366{left:530.266667pt;}
.x115_c00366{left:532.800000pt;}
.xcd_c00366{left:534.800000pt;}
.x125_c00366{left:536.400000pt;}
.x11b_c00366{left:539.066667pt;}
.x120_c00366{left:540.666667pt;}
.xeb_c00366{left:541.600000pt;}
.xf1_c00366{left:542.533333pt;}
.xbc_c00366{left:544.666667pt;}
.x118_c00366{left:547.466667pt;}
.xaf_c00366{left:548.400000pt;}
.xd3_c00366{left:551.600000pt;}
.x128_c00366{left:553.200000pt;}
.xe4_c00366{left:554.266667pt;}
.xbd_c00366{left:555.200000pt;}
.xdc_c00366{left:556.533333pt;}
.xc4_c00366{left:561.333333pt;}
.xa7_c00366{left:562.266667pt;}
.xbe_c00366{left:564.533333pt;}
.x10e_c00366{left:566.266667pt;}
.xa8_c00366{left:570.000000pt;}
.xb3_c00366{left:571.600000pt;}
.x100_c00366{left:573.200000pt;}
.xf6_c00366{left:574.933333pt;}
.x12c_c00366{left:576.000000pt;}
.xbf_c00366{left:578.000000pt;}
.x101_c00366{left:579.600000pt;}
.x137_c00366{left:581.333333pt;}
.xec_c00366{left:582.266667pt;}
.xb0_c00366{left:583.866667pt;}
.x102_c00366{left:585.733333pt;}
.x126_c00366{left:586.933333pt;}
.xa9_c00366{left:588.533333pt;}
.x112_c00366{left:591.466667pt;}
.x103_c00366{left:592.800000pt;}
.xd4_c00366{left:593.866667pt;}
.x119_c00366{left:595.066667pt;}
.xce_c00366{left:596.000000pt;}
.xed_c00366{left:599.200000pt;}
.x136_c00366{left:601.200000pt;}
.xaa_c00366{left:602.666667pt;}
.xd7_c00366{left:605.466667pt;}
.x127_c00366{left:606.800000pt;}
.x129_c00366{left:608.000000pt;}
.xc5_c00366{left:610.266667pt;}
.x104_c00366{left:611.733333pt;}
.x11f_c00366{left:612.666667pt;}
.xb1_c00366{left:617.200000pt;}
.xf2_c00366{left:621.866667pt;}
.xc6_c00366{left:622.800000pt;}
.x134_c00366{left:623.866667pt;}
.x121_c00366{left:624.800000pt;}
.x116_c00366{left:627.466667pt;}
.x10f_c00366{left:628.533333pt;}
.xf8_c00366{left:629.733333pt;}
.xe5_c00366{left:631.066667pt;}
.x138_c00366{left:633.200000pt;}
.x133_c00366{left:635.733333pt;}
.xcf_c00366{left:637.600000pt;}
.x11c_c00366{left:638.666667pt;}
.xcb_c00366{left:640.800000pt;}
.x12f_c00366{left:642.266667pt;}
.xf3_c00366{left:648.800000pt;}
.xd5_c00366{left:650.800000pt;}
.xc0_c00366{left:651.866667pt;}
.xdd_c00366{left:653.200000pt;}
.xf9_c00366{left:655.066667pt;}
.x110_c00366{left:656.000000pt;}
.xc7_c00366{left:657.066667pt;}
.xab_c00366{left:658.400000pt;}
.x122_c00366{left:659.333333pt;}
.xee_c00366{left:661.600000pt;}
.x11d_c00366{left:664.933333pt;}
.xac_c00366{left:666.400000pt;}
.x2_c00366{left:668.266667pt;}
.xb4_c00366{left:669.200000pt;}
.x135_c00366{left:671.200000pt;}
.xe6_c00366{left:674.000000pt;}
.xfa_c00366{left:676.133333pt;}
.x11a_c00366{left:677.866667pt;}
.xd8_c00366{left:679.066667pt;}
.x106_c00366{left:680.400000pt;}
.x105_c00366{left:681.466667pt;}
.xcc_c00366{left:682.933333pt;}
.xad_c00366{left:684.266667pt;}
.x13b_c00366{left:687.733333pt;}
.xde_c00366{left:689.733333pt;}
}





/* 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_c00367 {
    display:none;
  }
  .loading-indicator_c00367.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00367 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_c00367 { 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_c00367" -> "#page-container .classname_c00367")
 */
.pf_c00367 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00367 { /* 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_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00367 { /* 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_c00367 { /* 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_c00367 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00367 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00367 {overflow:visible;}
  }
}
.c_c00367 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00367 { /* 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_c00367:after { /* webkit #35443 */
  content: '';
}
.t_c00367:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00367 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 */
}
.__c00367 { /* 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_c00367 { /* info for Javascript */
  display:none;
}
.l_c00367 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00367 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00367 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00367: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_c00367 {
    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_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00367.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_c00367 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00367;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.000000;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;}
.m4c_c00367{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00367{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00367{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00367{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m36_c00367{transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00367{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00367{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.me9_c00367{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md3_c00367{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m79_c00367{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m30_c00367{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc_c00367{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00367{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m68_c00367{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m32_c00367{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mce_c00367{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.mef_c00367{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m95_c00367{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00367{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mea_c00367{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00367{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00367{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.me7_c00367{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.meb_c00367{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me0_c00367{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00367{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00367{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00367{transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00367{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00367{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c00367{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00367{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mac_c00367{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00367{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00367{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00367{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m8_c00367{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m28_c00367{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m77_c00367{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m88_c00367{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00367{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.me4_c00367{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m76_c00367{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00367{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00367{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m31_c00367{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00367{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00367{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00367{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00367{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m40_c00367{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m89_c00367{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m117_c00367{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9_c00367{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00367{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00367{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m73_c00367{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mda_c00367{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00367{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m59_c00367{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m115_c00367{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00367{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m21_c00367{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md9_c00367{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00367{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m62_c00367{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m60_c00367{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00367{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m111_c00367{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m63_c00367{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00367{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00367{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00367{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m112_c00367{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m109_c00367{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md4_c00367{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m75_c00367{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m45_c00367{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00367{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00367{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me_c00367{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.maa_c00367{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m20_c00367{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.md_c00367{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00367{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mca_c00367{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m93_c00367{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mba_c00367{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00367{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m54_c00367{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00367{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m57_c00367{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00367{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m46_c00367{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m72_c00367{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m106_c00367{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m25_c00367{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m64_c00367{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb_c00367{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00367{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m120_c00367{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m105_c00367{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mde_c00367{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mab_c00367{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m22_c00367{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md6_c00367{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m110_c00367{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m10_c00367{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m48_c00367{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m33_c00367{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00367{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00367{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m67_c00367{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00367{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m113_c00367{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md7_c00367{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00367{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00367{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00367{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00367{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m99_c00367{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m66_c00367{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m103_c00367{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m56_c00367{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m27_c00367{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00367{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m87_c00367{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00367{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00367{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m55_c00367{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m47_c00367{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00367{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m50_c00367{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00367{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m11_c00367{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00367{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00367{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m61_c00367{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00367{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00367{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m108_c00367{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00367{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m100_c00367{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf_c00367{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m74_c00367{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mad_c00367{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00367{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00367{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.me6_c00367{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m70_c00367{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m53_c00367{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m94_c00367{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00367{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m101_c00367{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m90_c00367{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00367{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m78_c00367{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m119_c00367{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m85_c00367{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00367{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00367{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00367{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00367{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00367{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m37_c00367{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mae_c00367{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00367{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.md5_c00367{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00367{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.md8_c00367{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00367{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00367{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m102_c00367{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00367{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m29_c00367{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m44_c00367{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m98_c00367{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.maf_c00367{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m86_c00367{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m96_c00367{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m107_c00367{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m41_c00367{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00367{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m83_c00367{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me2_c00367{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m71_c00367{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00367{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7_c00367{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m52_c00367{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mff_c00367{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m39_c00367{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m6_c00367{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00367{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m69_c00367{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00367{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m104_c00367{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00367{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md2_c00367{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00367{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00367{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00367{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m114_c00367{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5_c00367{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m82_c00367{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me5_c00367{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m97_c00367{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m51_c00367{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m65_c00367{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00367{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00367{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m42_c00367{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00367{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00367{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00367{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m81_c00367{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m91_c00367{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m49_c00367{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m118_c00367{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00367{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00367{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.med_c00367{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00367{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m80_c00367{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00367{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00367{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00367{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m23_c00367{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me8_c00367{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00367{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00367{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m26_c00367{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00367{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00367{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00367{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m43_c00367{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00367{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m24_c00367{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m92_c00367{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00367{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mec_c00367{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00367{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00367{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00367{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m84_c00367{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00367{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00367{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m116_c00367{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00367{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m58_c00367{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00367{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00367{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md0_c00367{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00367{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m38_c00367{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00367{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m34_c00367{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.md1_c00367{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00367{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00367{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00367{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00367{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00367{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m19_c00367{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00367{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00367{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00367{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00367{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m18_c00367{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00367{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00367{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m14_c00367{transform:matrix(0.348250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348250,0.000000,0.000000,0.250000,0,0);}
.m15_c00367{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m13_c00367{transform:matrix(0.370500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00367{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m16_c00367{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00367{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m2_c00367{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mee_c00367{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m12_c00367{transform:matrix(0.425250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425250,0.000000,0.000000,0.250000,0,0);}
.me1_c00367{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00367{transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);}
.me3_c00367{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);}
.m3_c00367{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00367{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.m35_c00367{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00367{transform:matrix(11.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(11.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(11.172000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{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__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00367{word-spacing:-5.198188px;}
.ws0_c00367{word-spacing:-3.235294px;}
.ws3_c00367{word-spacing:0.000000px;}
.ws1_c00367{word-spacing:40.000000px;}
._0_c00367{width:74.166667px;}
.fc0_c00367{color:transparent;}
.fs7_c00367{font-size:24.000000px;}
.fs0_c00367{font-size:36.000000px;}
.fs5_c00367{font-size:48.000000px;}
.fs6_c00367{font-size:54.000000px;}
.fs4_c00367{font-size:60.000000px;}
.fs3_c00367{font-size:66.000000px;}
.fs2_c00367{font-size:72.000000px;}
.fs1_c00367{font-size:78.000000px;}
.fs8_c00367{font-size:90.000000px;}
.y0_c00367{bottom:0.000000px;}
.y6a_c00367{bottom:195.150000px;}
.y33_c00367{bottom:203.850000px;}
.y69_c00367{bottom:213.150000px;}
.y32_c00367{bottom:218.550000px;}
.y31_c00367{bottom:232.950000px;}
.y68_c00367{bottom:234.150000px;}
.y30_c00367{bottom:246.600000px;}
.y67_c00367{bottom:252.150000px;}
.y2f_c00367{bottom:261.300000px;}
.y66_c00367{bottom:269.850000px;}
.y65_c00367{bottom:287.550000px;}
.y2e_c00367{bottom:288.300000px;}
.y64_c00367{bottom:305.250000px;}
.y2d_c00367{bottom:311.850000px;}
.y63_c00367{bottom:323.550000px;}
.y2c_c00367{bottom:330.900000px;}
.y62_c00367{bottom:341.550000px;}
.y2b_c00367{bottom:356.700000px;}
.y61_c00367{bottom:359.250000px;}
.y2a_c00367{bottom:373.650000px;}
.y60_c00367{bottom:376.950000px;}
.y5f_c00367{bottom:394.950000px;}
.y29_c00367{bottom:395.850000px;}
.y5e_c00367{bottom:412.200000px;}
.y28_c00367{bottom:413.550000px;}
.y5d_c00367{bottom:430.500000px;}
.y27_c00367{bottom:431.250000px;}
.y5c_c00367{bottom:448.500000px;}
.y26_c00367{bottom:449.250000px;}
.y5b_c00367{bottom:465.450000px;}
.y25_c00367{bottom:471.150000px;}
.y5a_c00367{bottom:483.150000px;}
.y24_c00367{bottom:488.850000px;}
.y59_c00367{bottom:501.150000px;}
.y23_c00367{bottom:506.400000px;}
.y58_c00367{bottom:519.150000px;}
.y22_c00367{bottom:524.100000px;}
.y57_c00367{bottom:536.400000px;}
.y21_c00367{bottom:541.650000px;}
.y56_c00367{bottom:554.100000px;}
.y20_c00367{bottom:559.350000px;}
.y55_c00367{bottom:571.800000px;}
.y1f_c00367{bottom:577.050000px;}
.y54_c00367{bottom:589.050000px;}
.y1e_c00367{bottom:595.050000px;}
.y53_c00367{bottom:606.750000px;}
.y1d_c00367{bottom:611.700000px;}
.y52_c00367{bottom:624.450000px;}
.y1c_c00367{bottom:629.550000px;}
.y51_c00367{bottom:642.150000px;}
.y1b_c00367{bottom:647.250000px;}
.y50_c00367{bottom:660.150000px;}
.y1a_c00367{bottom:664.500000px;}
.y4f_c00367{bottom:677.850000px;}
.y19_c00367{bottom:682.200000px;}
.y4e_c00367{bottom:695.550000px;}
.y18_c00367{bottom:699.900000px;}
.y4d_c00367{bottom:715.800000px;}
.y17_c00367{bottom:717.600000px;}
.y4c_c00367{bottom:730.500000px;}
.y16_c00367{bottom:735.300000px;}
.y4b_c00367{bottom:744.150000px;}
.y15_c00367{bottom:753.000000px;}
.y4a_c00367{bottom:758.850000px;}
.y14_c00367{bottom:770.700000px;}
.y49_c00367{bottom:772.650000px;}
.y48_c00367{bottom:787.350000px;}
.y13_c00367{bottom:788.700000px;}
.y47_c00367{bottom:802.500000px;}
.y12_c00367{bottom:806.100000px;}
.y46_c00367{bottom:815.400000px;}
.y11_c00367{bottom:822.750000px;}
.y45_c00367{bottom:829.050000px;}
.y10_c00367{bottom:832.050000px;}
.yf_c00367{bottom:838.500000px;}
.y44_c00367{bottom:843.450000px;}
.ye_c00367{bottom:848.550000px;}
.y43_c00367{bottom:857.550000px;}
.yd_c00367{bottom:861.450000px;}
.y42_c00367{bottom:872.250000px;}
.y41_c00367{bottom:886.350000px;}
.yc_c00367{bottom:887.400000px;}
.y40_c00367{bottom:901.050000px;}
.yb_c00367{bottom:909.300000px;}
.y3f_c00367{bottom:915.450000px;}
.y3e_c00367{bottom:929.850000px;}
.ya_c00367{bottom:931.050000px;}
.y9_c00367{bottom:949.350000px;}
.y3d_c00367{bottom:949.950000px;}
.y3c_c00367{bottom:967.200000px;}
.y8_c00367{bottom:982.800000px;}
.y3b_c00367{bottom:984.900000px;}
.y3a_c00367{bottom:1002.600000px;}
.y7_c00367{bottom:1016.700000px;}
.y39_c00367{bottom:1024.950000px;}
.y6_c00367{bottom:1036.500000px;}
.y38_c00367{bottom:1042.500000px;}
.y37_c00367{bottom:1059.450000px;}
.y36_c00367{bottom:1077.450000px;}
.y35_c00367{bottom:1095.150000px;}
.y5_c00367{bottom:1098.750000px;}
.y34_c00367{bottom:1112.100000px;}
.y4_c00367{bottom:1116.750000px;}
.y3_c00367{bottom:1139.850000px;}
.y2_c00367{bottom:1143.450000px;}
.y1_c00367{bottom:1149.900000px;}
.h9_c00367{height:24.000000px;}
.h2_c00367{height:36.000000px;}
.h7_c00367{height:48.000000px;}
.h8_c00367{height:54.000000px;}
.h6_c00367{height:60.000000px;}
.h5_c00367{height:66.000000px;}
.h4_c00367{height:72.000000px;}
.h3_c00367{height:78.000000px;}
.ha_c00367{height:90.000000px;}
.h0_c00367{height:1269.720063px;}
.h1_c00367{height:1269.750000px;}
.w0_c00367{width:960.480010px;}
.w1_c00367{width:960.750000px;}
.x0_c00367{left:0.000000px;}
.x5_c00367{left:180.750000px;}
.x8e_c00367{left:183.000000px;}
.x76_c00367{left:185.100000px;}
.x28_c00367{left:191.550000px;}
.x1a_c00367{left:192.900000px;}
.x2_c00367{left:194.700000px;}
.x1_c00367{left:196.500000px;}
.x87_c00367{left:199.050000px;}
.x13_c00367{left:200.850000px;}
.x41_c00367{left:202.950000px;}
.x47_c00367{left:204.300000px;}
.x51_c00367{left:205.650000px;}
.x3c_c00367{left:208.050000px;}
.x33_c00367{left:209.400000px;}
.x20_c00367{left:211.050000px;}
.xe_c00367{left:213.900000px;}
.x82_c00367{left:215.550000px;}
.x3_c00367{left:217.050000px;}
.x88_c00367{left:220.350000px;}
.x58_c00367{left:221.550000px;}
.x62_c00367{left:223.200000px;}
.x71_c00367{left:224.250000px;}
.x38_c00367{left:225.300000px;}
.x8f_c00367{left:226.500000px;}
.x84_c00367{left:227.550000px;}
.x24_c00367{left:228.600000px;}
.x48_c00367{left:232.350000px;}
.x29_c00367{left:235.500000px;}
.x89_c00367{left:239.850000px;}
.x52_c00367{left:241.350000px;}
.x30_c00367{left:242.850000px;}
.x6b_c00367{left:244.800000px;}
.x77_c00367{left:246.000000px;}
.xf_c00367{left:249.900000px;}
.x59_c00367{left:252.900000px;}
.x35_c00367{left:254.700000px;}
.x5b_c00367{left:256.200000px;}
.x21_c00367{left:259.650000px;}
.x6_c00367{left:261.450000px;}
.x61_c00367{left:262.500000px;}
.x65_c00367{left:263.550000px;}
.x36_c00367{left:265.500000px;}
.x72_c00367{left:267.750000px;}
.x12_c00367{left:269.100000px;}
.x31_c00367{left:273.150000px;}
.x37_c00367{left:275.250000px;}
.x26_c00367{left:276.900000px;}
.x55_c00367{left:278.250000px;}
.x25_c00367{left:280.050000px;}
.x7a_c00367{left:281.700000px;}
.x7_c00367{left:283.350000px;}
.x42_c00367{left:287.250000px;}
.x14_c00367{left:288.750000px;}
.x27_c00367{left:289.800000px;}
.x5c_c00367{left:291.150000px;}
.x3d_c00367{left:294.450000px;}
.x3f_c00367{left:296.250000px;}
.x8a_c00367{left:298.500000px;}
.x2a_c00367{left:301.800000px;}
.x1b_c00367{left:303.450000px;}
.x4d_c00367{left:306.600000px;}
.x73_c00367{left:308.100000px;}
.x22_c00367{left:309.300000px;}
.x10_c00367{left:310.800000px;}
.x80_c00367{left:312.150000px;}
.x32_c00367{left:313.500000px;}
.x7f_c00367{left:316.500000px;}
.x5a_c00367{left:318.450000px;}
.x18_c00367{left:319.800000px;}
.x56_c00367{left:324.750000px;}
.x66_c00367{left:328.350000px;}
.x81_c00367{left:330.450000px;}
.x63_c00367{left:333.300000px;}
.x34_c00367{left:336.000000px;}
.x8_c00367{left:338.400000px;}
.x6e_c00367{left:340.950000px;}
.x85_c00367{left:343.200000px;}
.x23_c00367{left:348.600000px;}
.x5d_c00367{left:353.100000px;}
.x9_c00367{left:355.350000px;}
.x43_c00367{left:360.000000px;}
.x1c_c00367{left:361.800000px;}
.x6f_c00367{left:363.150000px;}
.x4e_c00367{left:364.500000px;}
.x39_c00367{left:367.200000px;}
.x11_c00367{left:369.150000px;}
.x44_c00367{left:370.800000px;}
.x92_c00367{left:373.350000px;}
.x2b_c00367{left:375.900000px;}
.x6c_c00367{left:378.750000px;}
.x53_c00367{left:380.550000px;}
.x40_c00367{left:381.900000px;}
.x67_c00367{left:382.950000px;}
.x74_c00367{left:384.000000px;}
.x70_c00367{left:385.500000px;}
.xa_c00367{left:386.700000px;}
.x49_c00367{left:388.950000px;}
.x19_c00367{left:391.800000px;}
.x78_c00367{left:395.100000px;}
.x64_c00367{left:397.800000px;}
.x1d_c00367{left:402.900000px;}
.xb_c00367{left:408.000000px;}
.x15_c00367{left:410.850000px;}
.x79_c00367{left:412.800000px;}
.x5e_c00367{left:414.600000px;}
.x90_c00367{left:418.800000px;}
.x86_c00367{left:419.850000px;}
.x2c_c00367{left:421.650000px;}
.x6d_c00367{left:423.450000px;}
.x68_c00367{left:426.450000px;}
.x5f_c00367{left:430.800000px;}
.x7b_c00367{left:432.600000px;}
.x4a_c00367{left:434.700000px;}
.x4_c00367{left:436.950000px;}
.x8b_c00367{left:438.600000px;}
.x2d_c00367{left:442.200000px;}
.x54_c00367{left:443.850000px;}
.x1e_c00367{left:445.050000px;}
.x45_c00367{left:447.600000px;}
.x75_c00367{left:449.550000px;}
.x3a_c00367{left:452.550000px;}
.x7c_c00367{left:454.500000px;}
.x69_c00367{left:456.750000px;}
.x91_c00367{left:459.000000px;}
.x57_c00367{left:460.500000px;}
.x3e_c00367{left:464.100000px;}
.x4b_c00367{left:466.050000px;}
.x93_c00367{left:467.700000px;}
.x4f_c00367{left:468.900000px;}
.x60_c00367{left:471.900000px;}
.x8c_c00367{left:476.400000px;}
.x16_c00367{left:479.250000px;}
.xc_c00367{left:481.800000px;}
.x46_c00367{left:483.600000px;}
.x94_c00367{left:484.950000px;}
.x4c_c00367{left:486.600000px;}
.x50_c00367{left:487.950000px;}
.x2f_c00367{left:489.750000px;}
.xd_c00367{left:490.800000px;}
.x6a_c00367{left:492.450000px;}
.x3b_c00367{left:493.650000px;}
.x83_c00367{left:494.850000px;}
.x1f_c00367{left:498.750000px;}
.x8d_c00367{left:500.550000px;}
.x7d_c00367{left:502.350000px;}
.x17_c00367{left:508.800000px;}
.x7e_c00367{left:512.400000px;}
.x2e_c00367{left:524.250000px;}
.x13f_c00367{left:540.750000px;}
.x107_c00367{left:545.100000px;}
.xdc_c00367{left:549.000000px;}
.xc9_c00367{left:550.800000px;}
.x142_c00367{left:557.700000px;}
.x13e_c00367{left:558.900000px;}
.xf4_c00367{left:560.550000px;}
.xee_c00367{left:561.900000px;}
.xdf_c00367{left:563.100000px;}
.xd4_c00367{left:567.150000px;}
.xba_c00367{left:568.200000px;}
.xa2_c00367{left:569.700000px;}
.xff_c00367{left:573.450000px;}
.x104_c00367{left:574.500000px;}
.xf0_c00367{left:575.850000px;}
.xe7_c00367{left:577.050000px;}
.x13c_c00367{left:578.700000px;}
.x132_c00367{left:581.850000px;}
.xa3_c00367{left:586.650000px;}
.x95_c00367{left:588.900000px;}
.x117_c00367{left:589.950000px;}
.xe0_c00367{left:591.600000px;}
.xca_c00367{left:593.250000px;}
.x100_c00367{left:595.350000px;}
.x105_c00367{left:596.400000px;}
.xf1_c00367{left:597.450000px;}
.xe8_c00367{left:598.950000px;}
.xbb_c00367{left:600.600000px;}
.x12b_c00367{left:602.400000px;}
.x113_c00367{left:606.900000px;}
.x123_c00367{left:608.250000px;}
.xe1_c00367{left:609.600000px;}
.xdd_c00367{left:610.950000px;}
.x111_c00367{left:613.050000px;}
.xaa_c00367{left:614.250000px;}
.xf5_c00367{left:615.300000px;}
.xf2_c00367{left:616.950000px;}
.xe9_c00367{left:618.000000px;}
.xd5_c00367{left:619.050000px;}
.xa4_c00367{left:620.550000px;}
.x11c_c00367{left:624.750000px;}
.xf9_c00367{left:628.200000px;}
.x136_c00367{left:629.250000px;}
.x13a_c00367{left:630.600000px;}
.xea_c00367{left:631.650000px;}
.x129_c00367{left:635.700000px;}
.xb4_c00367{left:637.050000px;}
.xc2_c00367{left:639.000000px;}
.xa5_c00367{left:640.650000px;}
.xe2_c00367{left:642.750000px;}
.x101_c00367{left:643.950000px;}
.x119_c00367{left:646.350000px;}
.x106_c00367{left:648.300000px;}
.xab_c00367{left:649.500000px;}
.x96_c00367{left:651.150000px;}
.x114_c00367{left:652.950000px;}
.x12e_c00367{left:654.300000px;}
.xd6_c00367{left:656.100000px;}
.xac_c00367{left:657.750000px;}
.xf6_c00367{left:660.000000px;}
.x10f_c00367{left:661.800000px;}
.x12f_c00367{left:663.600000px;}
.x124_c00367{left:665.550000px;}
.xeb_c00367{left:666.600000px;}
.xad_c00367{left:667.800000px;}
.xf3_c00367{left:670.200000px;}
.xbc_c00367{left:672.300000px;}
.x97_c00367{left:674.250000px;}
.xfa_c00367{left:677.100000px;}
.x118_c00367{left:679.800000px;}
.xae_c00367{left:682.200000px;}
.x130_c00367{left:683.400000px;}
.x140_c00367{left:684.450000px;}
.x109_c00367{left:686.250000px;}
.x127_c00367{left:687.900000px;}
.xcb_c00367{left:690.000000px;}
.x10c_c00367{left:691.050000px;}
.x12c_c00367{left:692.850000px;}
.xb5_c00367{left:693.900000px;}
.xd7_c00367{left:696.750000px;}
.x133_c00367{left:698.250000px;}
.x98_c00367{left:699.750000px;}
.x13b_c00367{left:700.800000px;}
.xaf_c00367{left:703.800000px;}
.xcf_c00367{left:706.950000px;}
.xa6_c00367{left:709.050000px;}
.xc3_c00367{left:711.000000px;}
.x141_c00367{left:713.250000px;}
.x120_c00367{left:714.750000px;}
.x11a_c00367{left:716.100000px;}
.xfb_c00367{left:718.800000px;}
.xd8_c00367{left:720.150000px;}
.xbd_c00367{left:723.000000px;}
.x99_c00367{left:726.000000px;}
.x10a_c00367{left:727.350000px;}
.xb6_c00367{left:728.850000px;}
.x11d_c00367{left:730.200000px;}
.xa7_c00367{left:731.700000px;}
.xfc_c00367{left:733.950000px;}
.x125_c00367{left:735.000000px;}
.x9a_c00367{left:736.050000px;}
.x115_c00367{left:737.100000px;}
.xc4_c00367{left:740.550000px;}
.x121_c00367{left:743.550000px;}
.x9b_c00367{left:744.750000px;}
.xcc_c00367{left:745.800000px;}
.x137_c00367{left:748.800000px;}
.xe3_c00367{left:750.000000px;}
.xbe_c00367{left:751.050000px;}
.x13d_c00367{left:752.550000px;}
.xec_c00367{left:753.600000px;}
.x131_c00367{left:755.700000px;}
.x110_c00367{left:757.500000px;}
.x10b_c00367{left:758.700000px;}
.xb7_c00367{left:759.750000px;}
.xb0_c00367{left:761.400000px;}
.xd9_c00367{left:762.900000px;}
.x9c_c00367{left:765.300000px;}
.x10d_c00367{left:766.650000px;}
.xf7_c00367{left:768.750000px;}
.xed_c00367{left:772.350000px;}
.xde_c00367{left:774.750000px;}
.xc5_c00367{left:776.850000px;}
.xd0_c00367{left:778.950000px;}
.xda_c00367{left:780.600000px;}
.xe4_c00367{left:782.700000px;}
.xc6_c00367{left:784.800000px;}
.x9d_c00367{left:787.200000px;}
.x10e_c00367{left:788.550000px;}
.x11b_c00367{left:789.600000px;}
.xd1_c00367{left:790.800000px;}
.x11e_c00367{left:793.200000px;}
.xbf_c00367{left:797.100000px;}
.xdb_c00367{left:798.900000px;}
.xa8_c00367{left:802.200000px;}
.x135_c00367{left:805.650000px;}
.xfd_c00367{left:807.750000px;}
.xf8_c00367{left:809.400000px;}
.xef_c00367{left:811.050000px;}
.xb1_c00367{left:812.550000px;}
.x9e_c00367{left:814.500000px;}
.xd2_c00367{left:818.100000px;}
.x128_c00367{left:822.900000px;}
.xc7_c00367{left:824.400000px;}
.xb2_c00367{left:825.450000px;}
.x139_c00367{left:827.400000px;}
.x11f_c00367{left:828.750000px;}
.x122_c00367{left:829.950000px;}
.xb8_c00367{left:831.750000px;}
.xc0_c00367{left:833.100000px;}
.xe5_c00367{left:834.450000px;}
.x108_c00367{left:835.950000px;}
.x103_c00367{left:837.300000px;}
.xcd_c00367{left:838.350000px;}
.x9f_c00367{left:840.000000px;}
.xa9_c00367{left:844.350000px;}
.x12a_c00367{left:845.400000px;}
.x12d_c00367{left:847.350000px;}
.xa0_c00367{left:848.700000px;}
.x138_c00367{left:849.750000px;}
.x134_c00367{left:851.250000px;}
.xb9_c00367{left:853.350000px;}
.xce_c00367{left:854.550000px;}
.xa1_c00367{left:856.950000px;}
.x116_c00367{left:860.700000px;}
.xc8_c00367{left:862.200000px;}
.xfe_c00367{left:863.550000px;}
.xc1_c00367{left:864.750000px;}
.xb3_c00367{left:865.800000px;}
.xe6_c00367{left:867.150000px;}
.xd3_c00367{left:868.800000px;}
.x126_c00367{left:870.150000px;}
.x112_c00367{left:871.800000px;}
.x102_c00367{left:875.850000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws2_c00367{word-spacing:-4.620612pt;}
.ws0_c00367{word-spacing:-2.875817pt;}
.ws3_c00367{word-spacing:0.000000pt;}
.ws1_c00367{word-spacing:35.555556pt;}
._0_c00367{width:65.925926pt;}
.fs7_c00367{font-size:21.333333pt;}
.fs0_c00367{font-size:32.000000pt;}
.fs5_c00367{font-size:42.666667pt;}
.fs6_c00367{font-size:48.000000pt;}
.fs4_c00367{font-size:53.333333pt;}
.fs3_c00367{font-size:58.666667pt;}
.fs2_c00367{font-size:64.000000pt;}
.fs1_c00367{font-size:69.333333pt;}
.fs8_c00367{font-size:80.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y6a_c00367{bottom:173.466667pt;}
.y33_c00367{bottom:181.200000pt;}
.y69_c00367{bottom:189.466667pt;}
.y32_c00367{bottom:194.266667pt;}
.y31_c00367{bottom:207.066667pt;}
.y68_c00367{bottom:208.133333pt;}
.y30_c00367{bottom:219.200000pt;}
.y67_c00367{bottom:224.133333pt;}
.y2f_c00367{bottom:232.266667pt;}
.y66_c00367{bottom:239.866667pt;}
.y65_c00367{bottom:255.600000pt;}
.y2e_c00367{bottom:256.266667pt;}
.y64_c00367{bottom:271.333333pt;}
.y2d_c00367{bottom:277.200000pt;}
.y63_c00367{bottom:287.600000pt;}
.y2c_c00367{bottom:294.133333pt;}
.y62_c00367{bottom:303.600000pt;}
.y2b_c00367{bottom:317.066667pt;}
.y61_c00367{bottom:319.333333pt;}
.y2a_c00367{bottom:332.133333pt;}
.y60_c00367{bottom:335.066667pt;}
.y5f_c00367{bottom:351.066667pt;}
.y29_c00367{bottom:351.866667pt;}
.y5e_c00367{bottom:366.400000pt;}
.y28_c00367{bottom:367.600000pt;}
.y5d_c00367{bottom:382.666667pt;}
.y27_c00367{bottom:383.333333pt;}
.y5c_c00367{bottom:398.666667pt;}
.y26_c00367{bottom:399.333333pt;}
.y5b_c00367{bottom:413.733333pt;}
.y25_c00367{bottom:418.800000pt;}
.y5a_c00367{bottom:429.466667pt;}
.y24_c00367{bottom:434.533333pt;}
.y59_c00367{bottom:445.466667pt;}
.y23_c00367{bottom:450.133333pt;}
.y58_c00367{bottom:461.466667pt;}
.y22_c00367{bottom:465.866667pt;}
.y57_c00367{bottom:476.800000pt;}
.y21_c00367{bottom:481.466667pt;}
.y56_c00367{bottom:492.533333pt;}
.y20_c00367{bottom:497.200000pt;}
.y55_c00367{bottom:508.266667pt;}
.y1f_c00367{bottom:512.933333pt;}
.y54_c00367{bottom:523.600000pt;}
.y1e_c00367{bottom:528.933333pt;}
.y53_c00367{bottom:539.333333pt;}
.y1d_c00367{bottom:543.733333pt;}
.y52_c00367{bottom:555.066667pt;}
.y1c_c00367{bottom:559.600000pt;}
.y51_c00367{bottom:570.800000pt;}
.y1b_c00367{bottom:575.333333pt;}
.y50_c00367{bottom:586.800000pt;}
.y1a_c00367{bottom:590.666667pt;}
.y4f_c00367{bottom:602.533333pt;}
.y19_c00367{bottom:606.400000pt;}
.y4e_c00367{bottom:618.266667pt;}
.y18_c00367{bottom:622.133333pt;}
.y4d_c00367{bottom:636.266667pt;}
.y17_c00367{bottom:637.866667pt;}
.y4c_c00367{bottom:649.333333pt;}
.y16_c00367{bottom:653.600000pt;}
.y4b_c00367{bottom:661.466667pt;}
.y15_c00367{bottom:669.333333pt;}
.y4a_c00367{bottom:674.533333pt;}
.y14_c00367{bottom:685.066667pt;}
.y49_c00367{bottom:686.800000pt;}
.y48_c00367{bottom:699.866667pt;}
.y13_c00367{bottom:701.066667pt;}
.y47_c00367{bottom:713.333333pt;}
.y12_c00367{bottom:716.533333pt;}
.y46_c00367{bottom:724.800000pt;}
.y11_c00367{bottom:731.333333pt;}
.y45_c00367{bottom:736.933333pt;}
.y10_c00367{bottom:739.600000pt;}
.yf_c00367{bottom:745.333333pt;}
.y44_c00367{bottom:749.733333pt;}
.ye_c00367{bottom:754.266667pt;}
.y43_c00367{bottom:762.266667pt;}
.yd_c00367{bottom:765.733333pt;}
.y42_c00367{bottom:775.333333pt;}
.y41_c00367{bottom:787.866667pt;}
.yc_c00367{bottom:788.800000pt;}
.y40_c00367{bottom:800.933333pt;}
.yb_c00367{bottom:808.266667pt;}
.y3f_c00367{bottom:813.733333pt;}
.y3e_c00367{bottom:826.533333pt;}
.ya_c00367{bottom:827.600000pt;}
.y9_c00367{bottom:843.866667pt;}
.y3d_c00367{bottom:844.400000pt;}
.y3c_c00367{bottom:859.733333pt;}
.y8_c00367{bottom:873.600000pt;}
.y3b_c00367{bottom:875.466667pt;}
.y3a_c00367{bottom:891.200000pt;}
.y7_c00367{bottom:903.733333pt;}
.y39_c00367{bottom:911.066667pt;}
.y6_c00367{bottom:921.333333pt;}
.y38_c00367{bottom:926.666667pt;}
.y37_c00367{bottom:941.733333pt;}
.y36_c00367{bottom:957.733333pt;}
.y35_c00367{bottom:973.466667pt;}
.y5_c00367{bottom:976.666667pt;}
.y34_c00367{bottom:988.533333pt;}
.y4_c00367{bottom:992.666667pt;}
.y3_c00367{bottom:1013.200000pt;}
.y2_c00367{bottom:1016.400000pt;}
.y1_c00367{bottom:1022.133333pt;}
.h9_c00367{height:21.333333pt;}
.h2_c00367{height:32.000000pt;}
.h7_c00367{height:42.666667pt;}
.h8_c00367{height:48.000000pt;}
.h6_c00367{height:53.333333pt;}
.h5_c00367{height:58.666667pt;}
.h4_c00367{height:64.000000pt;}
.h3_c00367{height:69.333333pt;}
.ha_c00367{height:80.000000pt;}
.h0_c00367{height:1128.640056pt;}
.h1_c00367{height:1128.666667pt;}
.w0_c00367{width:853.760009pt;}
.w1_c00367{width:854.000000pt;}
.x0_c00367{left:0.000000pt;}
.x5_c00367{left:160.666667pt;}
.x8e_c00367{left:162.666667pt;}
.x76_c00367{left:164.533333pt;}
.x28_c00367{left:170.266667pt;}
.x1a_c00367{left:171.466667pt;}
.x2_c00367{left:173.066667pt;}
.x1_c00367{left:174.666667pt;}
.x87_c00367{left:176.933333pt;}
.x13_c00367{left:178.533333pt;}
.x41_c00367{left:180.400000pt;}
.x47_c00367{left:181.600000pt;}
.x51_c00367{left:182.800000pt;}
.x3c_c00367{left:184.933333pt;}
.x33_c00367{left:186.133333pt;}
.x20_c00367{left:187.600000pt;}
.xe_c00367{left:190.133333pt;}
.x82_c00367{left:191.600000pt;}
.x3_c00367{left:192.933333pt;}
.x88_c00367{left:195.866667pt;}
.x58_c00367{left:196.933333pt;}
.x62_c00367{left:198.400000pt;}
.x71_c00367{left:199.333333pt;}
.x38_c00367{left:200.266667pt;}
.x8f_c00367{left:201.333333pt;}
.x84_c00367{left:202.266667pt;}
.x24_c00367{left:203.200000pt;}
.x48_c00367{left:206.533333pt;}
.x29_c00367{left:209.333333pt;}
.x89_c00367{left:213.200000pt;}
.x52_c00367{left:214.533333pt;}
.x30_c00367{left:215.866667pt;}
.x6b_c00367{left:217.600000pt;}
.x77_c00367{left:218.666667pt;}
.xf_c00367{left:222.133333pt;}
.x59_c00367{left:224.800000pt;}
.x35_c00367{left:226.400000pt;}
.x5b_c00367{left:227.733333pt;}
.x21_c00367{left:230.800000pt;}
.x6_c00367{left:232.400000pt;}
.x61_c00367{left:233.333333pt;}
.x65_c00367{left:234.266667pt;}
.x36_c00367{left:236.000000pt;}
.x72_c00367{left:238.000000pt;}
.x12_c00367{left:239.200000pt;}
.x31_c00367{left:242.800000pt;}
.x37_c00367{left:244.666667pt;}
.x26_c00367{left:246.133333pt;}
.x55_c00367{left:247.333333pt;}
.x25_c00367{left:248.933333pt;}
.x7a_c00367{left:250.400000pt;}
.x7_c00367{left:251.866667pt;}
.x42_c00367{left:255.333333pt;}
.x14_c00367{left:256.666667pt;}
.x27_c00367{left:257.600000pt;}
.x5c_c00367{left:258.800000pt;}
.x3d_c00367{left:261.733333pt;}
.x3f_c00367{left:263.333333pt;}
.x8a_c00367{left:265.333333pt;}
.x2a_c00367{left:268.266667pt;}
.x1b_c00367{left:269.733333pt;}
.x4d_c00367{left:272.533333pt;}
.x73_c00367{left:273.866667pt;}
.x22_c00367{left:274.933333pt;}
.x10_c00367{left:276.266667pt;}
.x80_c00367{left:277.466667pt;}
.x32_c00367{left:278.666667pt;}
.x7f_c00367{left:281.333333pt;}
.x5a_c00367{left:283.066667pt;}
.x18_c00367{left:284.266667pt;}
.x56_c00367{left:288.666667pt;}
.x66_c00367{left:291.866667pt;}
.x81_c00367{left:293.733333pt;}
.x63_c00367{left:296.266667pt;}
.x34_c00367{left:298.666667pt;}
.x8_c00367{left:300.800000pt;}
.x6e_c00367{left:303.066667pt;}
.x85_c00367{left:305.066667pt;}
.x23_c00367{left:309.866667pt;}
.x5d_c00367{left:313.866667pt;}
.x9_c00367{left:315.866667pt;}
.x43_c00367{left:320.000000pt;}
.x1c_c00367{left:321.600000pt;}
.x6f_c00367{left:322.800000pt;}
.x4e_c00367{left:324.000000pt;}
.x39_c00367{left:326.400000pt;}
.x11_c00367{left:328.133333pt;}
.x44_c00367{left:329.600000pt;}
.x92_c00367{left:331.866667pt;}
.x2b_c00367{left:334.133333pt;}
.x6c_c00367{left:336.666667pt;}
.x53_c00367{left:338.266667pt;}
.x40_c00367{left:339.466667pt;}
.x67_c00367{left:340.400000pt;}
.x74_c00367{left:341.333333pt;}
.x70_c00367{left:342.666667pt;}
.xa_c00367{left:343.733333pt;}
.x49_c00367{left:345.733333pt;}
.x19_c00367{left:348.266667pt;}
.x78_c00367{left:351.200000pt;}
.x64_c00367{left:353.600000pt;}
.x1d_c00367{left:358.133333pt;}
.xb_c00367{left:362.666667pt;}
.x15_c00367{left:365.200000pt;}
.x79_c00367{left:366.933333pt;}
.x5e_c00367{left:368.533333pt;}
.x90_c00367{left:372.266667pt;}
.x86_c00367{left:373.200000pt;}
.x2c_c00367{left:374.800000pt;}
.x6d_c00367{left:376.400000pt;}
.x68_c00367{left:379.066667pt;}
.x5f_c00367{left:382.933333pt;}
.x7b_c00367{left:384.533333pt;}
.x4a_c00367{left:386.400000pt;}
.x4_c00367{left:388.400000pt;}
.x8b_c00367{left:389.866667pt;}
.x2d_c00367{left:393.066667pt;}
.x54_c00367{left:394.533333pt;}
.x1e_c00367{left:395.600000pt;}
.x45_c00367{left:397.866667pt;}
.x75_c00367{left:399.600000pt;}
.x3a_c00367{left:402.266667pt;}
.x7c_c00367{left:404.000000pt;}
.x69_c00367{left:406.000000pt;}
.x91_c00367{left:408.000000pt;}
.x57_c00367{left:409.333333pt;}
.x3e_c00367{left:412.533333pt;}
.x4b_c00367{left:414.266667pt;}
.x93_c00367{left:415.733333pt;}
.x4f_c00367{left:416.800000pt;}
.x60_c00367{left:419.466667pt;}
.x8c_c00367{left:423.466667pt;}
.x16_c00367{left:426.000000pt;}
.xc_c00367{left:428.266667pt;}
.x46_c00367{left:429.866667pt;}
.x94_c00367{left:431.066667pt;}
.x4c_c00367{left:432.533333pt;}
.x50_c00367{left:433.733333pt;}
.x2f_c00367{left:435.333333pt;}
.xd_c00367{left:436.266667pt;}
.x6a_c00367{left:437.733333pt;}
.x3b_c00367{left:438.800000pt;}
.x83_c00367{left:439.866667pt;}
.x1f_c00367{left:443.333333pt;}
.x8d_c00367{left:444.933333pt;}
.x7d_c00367{left:446.533333pt;}
.x17_c00367{left:452.266667pt;}
.x7e_c00367{left:455.466667pt;}
.x2e_c00367{left:466.000000pt;}
.x13f_c00367{left:480.666667pt;}
.x107_c00367{left:484.533333pt;}
.xdc_c00367{left:488.000000pt;}
.xc9_c00367{left:489.600000pt;}
.x142_c00367{left:495.733333pt;}
.x13e_c00367{left:496.800000pt;}
.xf4_c00367{left:498.266667pt;}
.xee_c00367{left:499.466667pt;}
.xdf_c00367{left:500.533333pt;}
.xd4_c00367{left:504.133333pt;}
.xba_c00367{left:505.066667pt;}
.xa2_c00367{left:506.400000pt;}
.xff_c00367{left:509.733333pt;}
.x104_c00367{left:510.666667pt;}
.xf0_c00367{left:511.866667pt;}
.xe7_c00367{left:512.933333pt;}
.x13c_c00367{left:514.400000pt;}
.x132_c00367{left:517.200000pt;}
.xa3_c00367{left:521.466667pt;}
.x95_c00367{left:523.466667pt;}
.x117_c00367{left:524.400000pt;}
.xe0_c00367{left:525.866667pt;}
.xca_c00367{left:527.333333pt;}
.x100_c00367{left:529.200000pt;}
.x105_c00367{left:530.133333pt;}
.xf1_c00367{left:531.066667pt;}
.xe8_c00367{left:532.400000pt;}
.xbb_c00367{left:533.866667pt;}
.x12b_c00367{left:535.466667pt;}
.x113_c00367{left:539.466667pt;}
.x123_c00367{left:540.666667pt;}
.xe1_c00367{left:541.866667pt;}
.xdd_c00367{left:543.066667pt;}
.x111_c00367{left:544.933333pt;}
.xaa_c00367{left:546.000000pt;}
.xf5_c00367{left:546.933333pt;}
.xf2_c00367{left:548.400000pt;}
.xe9_c00367{left:549.333333pt;}
.xd5_c00367{left:550.266667pt;}
.xa4_c00367{left:551.600000pt;}
.x11c_c00367{left:555.333333pt;}
.xf9_c00367{left:558.400000pt;}
.x136_c00367{left:559.333333pt;}
.x13a_c00367{left:560.533333pt;}
.xea_c00367{left:561.466667pt;}
.x129_c00367{left:565.066667pt;}
.xb4_c00367{left:566.266667pt;}
.xc2_c00367{left:568.000000pt;}
.xa5_c00367{left:569.466667pt;}
.xe2_c00367{left:571.333333pt;}
.x101_c00367{left:572.400000pt;}
.x119_c00367{left:574.533333pt;}
.x106_c00367{left:576.266667pt;}
.xab_c00367{left:577.333333pt;}
.x96_c00367{left:578.800000pt;}
.x114_c00367{left:580.400000pt;}
.x12e_c00367{left:581.600000pt;}
.xd6_c00367{left:583.200000pt;}
.xac_c00367{left:584.666667pt;}
.xf6_c00367{left:586.666667pt;}
.x10f_c00367{left:588.266667pt;}
.x12f_c00367{left:589.866667pt;}
.x124_c00367{left:591.600000pt;}
.xeb_c00367{left:592.533333pt;}
.xad_c00367{left:593.600000pt;}
.xf3_c00367{left:595.733333pt;}
.xbc_c00367{left:597.600000pt;}
.x97_c00367{left:599.333333pt;}
.xfa_c00367{left:601.866667pt;}
.x118_c00367{left:604.266667pt;}
.xae_c00367{left:606.400000pt;}
.x130_c00367{left:607.466667pt;}
.x140_c00367{left:608.400000pt;}
.x109_c00367{left:610.000000pt;}
.x127_c00367{left:611.466667pt;}
.xcb_c00367{left:613.333333pt;}
.x10c_c00367{left:614.266667pt;}
.x12c_c00367{left:615.866667pt;}
.xb5_c00367{left:616.800000pt;}
.xd7_c00367{left:619.333333pt;}
.x133_c00367{left:620.666667pt;}
.x98_c00367{left:622.000000pt;}
.x13b_c00367{left:622.933333pt;}
.xaf_c00367{left:625.600000pt;}
.xcf_c00367{left:628.400000pt;}
.xa6_c00367{left:630.266667pt;}
.xc3_c00367{left:632.000000pt;}
.x141_c00367{left:634.000000pt;}
.x120_c00367{left:635.333333pt;}
.x11a_c00367{left:636.533333pt;}
.xfb_c00367{left:638.933333pt;}
.xd8_c00367{left:640.133333pt;}
.xbd_c00367{left:642.666667pt;}
.x99_c00367{left:645.333333pt;}
.x10a_c00367{left:646.533333pt;}
.xb6_c00367{left:647.866667pt;}
.x11d_c00367{left:649.066667pt;}
.xa7_c00367{left:650.400000pt;}
.xfc_c00367{left:652.400000pt;}
.x125_c00367{left:653.333333pt;}
.x9a_c00367{left:654.266667pt;}
.x115_c00367{left:655.200000pt;}
.xc4_c00367{left:658.266667pt;}
.x121_c00367{left:660.933333pt;}
.x9b_c00367{left:662.000000pt;}
.xcc_c00367{left:662.933333pt;}
.x137_c00367{left:665.600000pt;}
.xe3_c00367{left:666.666667pt;}
.xbe_c00367{left:667.600000pt;}
.x13d_c00367{left:668.933333pt;}
.xec_c00367{left:669.866667pt;}
.x131_c00367{left:671.733333pt;}
.x110_c00367{left:673.333333pt;}
.x10b_c00367{left:674.400000pt;}
.xb7_c00367{left:675.333333pt;}
.xb0_c00367{left:676.800000pt;}
.xd9_c00367{left:678.133333pt;}
.x9c_c00367{left:680.266667pt;}
.x10d_c00367{left:681.466667pt;}
.xf7_c00367{left:683.333333pt;}
.xed_c00367{left:686.533333pt;}
.xde_c00367{left:688.666667pt;}
.xc5_c00367{left:690.533333pt;}
.xd0_c00367{left:692.400000pt;}
.xda_c00367{left:693.866667pt;}
.xe4_c00367{left:695.733333pt;}
.xc6_c00367{left:697.600000pt;}
.x9d_c00367{left:699.733333pt;}
.x10e_c00367{left:700.933333pt;}
.x11b_c00367{left:701.866667pt;}
.xd1_c00367{left:702.933333pt;}
.x11e_c00367{left:705.066667pt;}
.xbf_c00367{left:708.533333pt;}
.xdb_c00367{left:710.133333pt;}
.xa8_c00367{left:713.066667pt;}
.x135_c00367{left:716.133333pt;}
.xfd_c00367{left:718.000000pt;}
.xf8_c00367{left:719.466667pt;}
.xef_c00367{left:720.933333pt;}
.xb1_c00367{left:722.266667pt;}
.x9e_c00367{left:724.000000pt;}
.xd2_c00367{left:727.200000pt;}
.x128_c00367{left:731.466667pt;}
.xc7_c00367{left:732.800000pt;}
.xb2_c00367{left:733.733333pt;}
.x139_c00367{left:735.466667pt;}
.x11f_c00367{left:736.666667pt;}
.x122_c00367{left:737.733333pt;}
.xb8_c00367{left:739.333333pt;}
.xc0_c00367{left:740.533333pt;}
.xe5_c00367{left:741.733333pt;}
.x108_c00367{left:743.066667pt;}
.x103_c00367{left:744.266667pt;}
.xcd_c00367{left:745.200000pt;}
.x9f_c00367{left:746.666667pt;}
.xa9_c00367{left:750.533333pt;}
.x12a_c00367{left:751.466667pt;}
.x12d_c00367{left:753.200000pt;}
.xa0_c00367{left:754.400000pt;}
.x138_c00367{left:755.333333pt;}
.x134_c00367{left:756.666667pt;}
.xb9_c00367{left:758.533333pt;}
.xce_c00367{left:759.600000pt;}
.xa1_c00367{left:761.733333pt;}
.x116_c00367{left:765.066667pt;}
.xc8_c00367{left:766.400000pt;}
.xfe_c00367{left:767.600000pt;}
.xc1_c00367{left:768.666667pt;}
.xb3_c00367{left:769.600000pt;}
.xe6_c00367{left:770.800000pt;}
.xd3_c00367{left:772.266667pt;}
.x126_c00367{left:773.466667pt;}
.x112_c00367{left:774.933333pt;}
.x102_c00367{left:778.533333pt;}
}





/* 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_c00368 {
    display:none;
  }
  .loading-indicator_c00368.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00368 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_c00368 { 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_c00368" -> "#page-container .classname_c00368")
 */
.pf_c00368 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00368 { /* 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_c00368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00368 { /* 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_c00368 { /* 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_c00368 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00368 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00368 {overflow:visible;}
  }
}
.c_c00368 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00368 { /* 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_c00368:after { /* webkit #35443 */
  content: '';
}
.t_c00368:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00368 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 */
}
.__c00368 { /* 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_c00368 { /* info for Javascript */
  display:none;
}
.l_c00368 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00368 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00368 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00368: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_c00368 {
    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_c00368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00368.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_c00368 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00368;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.000000;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;}
.m61_c00368{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m124_c00368{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00368{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m54_c00368{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.mec_c00368{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00368{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00368{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m103_c00368{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mff_c00368{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00368{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00368{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md1_c00368{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m125_c00368{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m51_c00368{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00368{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.me2_c00368{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m86_c00368{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m59_c00368{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m12_c00368{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m100_c00368{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m91_c00368{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00368{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m13_c00368{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00368{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m85_c00368{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mc_c00368{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mda_c00368{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m105_c00368{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m23_c00368{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00368{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m98_c00368{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.meb_c00368{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m6_c00368{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00368{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.md_c00368{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m83_c00368{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m62_c00368{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00368{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m33_c00368{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00368{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m53_c00368{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00368{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m16_c00368{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m104_c00368{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m128_c00368{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00368{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00368{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00368{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m117_c00368{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m47_c00368{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md2_c00368{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m26_c00368{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m22_c00368{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00368{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma_c00368{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m84_c00368{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m35_c00368{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m60_c00368{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00368{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m56_c00368{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m32_c00368{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mab_c00368{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00368{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m107_c00368{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m18_c00368{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m118_c00368{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00368{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7_c00368{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00368{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m126_c00368{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00368{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mad_c00368{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m17_c00368{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00368{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00368{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m120_c00368{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00368{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m19_c00368{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m55_c00368{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00368{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00368{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00368{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00368{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00368{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00368{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4_c00368{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m30_c00368{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00368{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00368{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00368{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00368{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00368{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00368{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m37_c00368{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00368{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mac_c00368{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00368{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m68_c00368{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m31_c00368{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00368{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00368{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00368{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00368{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.md5_c00368{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md8_c00368{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m41_c00368{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m44_c00368{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00368{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md3_c00368{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.maf_c00368{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m116_c00368{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00368{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mae_c00368{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00368{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00368{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00368{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00368{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00368{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5_c00368{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00368{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00368{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00368{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00368{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m80_c00368{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m46_c00368{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00368{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00368{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00368{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00368{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m45_c00368{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00368{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00368{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m113_c00368{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00368{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me8_c00368{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00368{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00368{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m110_c00368{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m14_c00368{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00368{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00368{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mce_c00368{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00368{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.maa_c00368{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00368{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00368{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m94_c00368{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00368{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00368{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00368{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m52_c00368{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00368{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00368{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m24_c00368{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00368{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m49_c00368{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m25_c00368{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00368{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m108_c00368{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00368{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00368{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m127_c00368{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m9_c00368{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00368{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8_c00368{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mba_c00368{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00368{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m69_c00368{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m63_c00368{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m11_c00368{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00368{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00368{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00368{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m15_c00368{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00368{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m123_c00368{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00368{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00368{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mef_c00368{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m50_c00368{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00368{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.me1_c00368{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me6_c00368{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me5_c00368{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m20_c00368{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00368{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m66_c00368{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m102_c00368{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m29_c00368{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00368{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mf_c00368{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m40_c00368{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00368{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00368{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00368{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m75_c00368{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m70_c00368{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me3_c00368{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m39_c00368{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m114_c00368{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00368{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00368{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00368{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00368{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00368{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m111_c00368{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m64_c00368{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m42_c00368{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m43_c00368{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m48_c00368{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00368{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m27_c00368{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00368{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m109_c00368{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00368{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m95_c00368{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m65_c00368{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m82_c00368{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00368{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m36_c00368{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00368{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m93_c00368{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m77_c00368{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m28_c00368{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m57_c00368{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00368{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00368{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00368{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md9_c00368{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m10_c00368{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md6_c00368{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me9_c00368{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m81_c00368{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m74_c00368{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m34_c00368{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mde_c00368{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00368{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m88_c00368{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m115_c00368{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mca_c00368{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00368{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00368{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00368{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00368{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00368{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00368{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00368{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00368{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m71_c00368{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mee_c00368{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m121_c00368{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m38_c00368{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);}
.m129_c00368{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.me4_c00368{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m106_c00368{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00368{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00368{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m89_c00368{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m96_c00368{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m112_c00368{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m72_c00368{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00368{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m119_c00368{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m99_c00368{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m87_c00368{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m76_c00368{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m21_c00368{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m58_c00368{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m90_c00368{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m101_c00368{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00368{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m122_c00368{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m97_c00368{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.me_c00368{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m73_c00368{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00368{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00368{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m79_c00368{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.me0_c00368{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00368{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00368{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00368{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md7_c00368{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00368{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00368{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00368{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00368{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.med_c00368{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00368{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md4_c00368{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.md0_c00368{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00368{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.me7_c00368{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.mea_c00368{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);}
.m92_c00368{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m78_c00368{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m67_c00368{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00368{transform:matrix(21.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(21.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(21.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls1_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:63.000000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{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__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00368{word-spacing:-90.000000px;}
.ws2_c00368{word-spacing:-17.522911px;}
.ws7_c00368{word-spacing:0.000000px;}
.ws0_c00368{word-spacing:0.277778px;}
.ws6_c00368{word-spacing:18.954155px;}
.ws4_c00368{word-spacing:24.000000px;}
.ws5_c00368{word-spacing:74.722222px;}
.ws1_c00368{word-spacing:140.207836px;}
._1_c00368{margin-left:-63.000000px;}
._0_c00368{width:3.750000px;}
._2_c00368{width:72.000000px;}
.fc0_c00368{color:transparent;}
.fs7_c00368{font-size:30.000000px;}
.fs6_c00368{font-size:48.000000px;}
.fs5_c00368{font-size:54.000000px;}
.fs4_c00368{font-size:60.000000px;}
.fs3_c00368{font-size:66.000000px;}
.fs2_c00368{font-size:72.000000px;}
.fs0_c00368{font-size:78.000000px;}
.fs1_c00368{font-size:114.000000px;}
.y0_c00368{bottom:0.000000px;}
.y67_c00368{bottom:189.000000px;}
.y62_c00368{bottom:202.350000px;}
.y66_c00368{bottom:207.000000px;}
.y61_c00368{bottom:216.750000px;}
.y65_c00368{bottom:225.000000px;}
.y64_c00368{bottom:242.700000px;}
.y60_c00368{bottom:243.000000px;}
.y63_c00368{bottom:260.700000px;}
.y5f_c00368{bottom:273.300000px;}
.y31_c00368{bottom:282.450000px;}
.y5e_c00368{bottom:291.300000px;}
.y30_c00368{bottom:300.450000px;}
.y5d_c00368{bottom:309.300000px;}
.y2f_c00368{bottom:318.450000px;}
.y5c_c00368{bottom:327.000000px;}
.y2e_c00368{bottom:335.700000px;}
.y5b_c00368{bottom:344.250000px;}
.y2d_c00368{bottom:354.000000px;}
.y5a_c00368{bottom:361.950000px;}
.y2c_c00368{bottom:371.250000px;}
.y59_c00368{bottom:379.650000px;}
.y2b_c00368{bottom:388.950000px;}
.y58_c00368{bottom:396.900000px;}
.y2a_c00368{bottom:406.950000px;}
.y57_c00368{bottom:414.600000px;}
.y29_c00368{bottom:424.200000px;}
.y56_c00368{bottom:432.300000px;}
.y28_c00368{bottom:441.900000px;}
.y55_c00368{bottom:450.000000px;}
.y27_c00368{bottom:459.900000px;}
.y54_c00368{bottom:468.000000px;}
.y26_c00368{bottom:477.600000px;}
.y53_c00368{bottom:485.700000px;}
.y25_c00368{bottom:495.300000px;}
.y52_c00368{bottom:503.700000px;}
.y24_c00368{bottom:513.000000px;}
.y51_c00368{bottom:521.250000px;}
.y23_c00368{bottom:530.700000px;}
.y50_c00368{bottom:539.250000px;}
.y22_c00368{bottom:551.100000px;}
.y4f_c00368{bottom:558.000000px;}
.y21_c00368{bottom:567.000000px;}
.y4e_c00368{bottom:574.950000px;}
.y20_c00368{bottom:581.400000px;}
.y1f_c00368{bottom:594.300000px;}
.y4d_c00368{bottom:599.700000px;}
.y1e_c00368{bottom:608.700000px;}
.y4c_c00368{bottom:614.100000px;}
.y1d_c00368{bottom:625.650000px;}
.y4b_c00368{bottom:628.350000px;}
.y4a_c00368{bottom:642.450000px;}
.y1c_c00368{bottom:643.950000px;}
.y49_c00368{bottom:656.850000px;}
.y1b_c00368{bottom:661.650000px;}
.y48_c00368{bottom:671.250000px;}
.y1a_c00368{bottom:679.350000px;}
.y47_c00368{bottom:685.950000px;}
.y19_c00368{bottom:701.250000px;}
.y46_c00368{bottom:707.550000px;}
.y18_c00368{bottom:719.250000px;}
.y45_c00368{bottom:723.450000px;}
.y17_c00368{bottom:737.250000px;}
.y44_c00368{bottom:741.150000px;}
.y16_c00368{bottom:754.500000px;}
.y43_c00368{bottom:758.850000px;}
.y15_c00368{bottom:772.500000px;}
.y42_c00368{bottom:780.750000px;}
.y14_c00368{bottom:790.500000px;}
.y41_c00368{bottom:798.750000px;}
.y13_c00368{bottom:812.100000px;}
.y40_c00368{bottom:816.450000px;}
.y3f_c00368{bottom:834.150000px;}
.y12_c00368{bottom:837.300000px;}
.y3e_c00368{bottom:852.150000px;}
.y11_c00368{bottom:855.750000px;}
.y10_c00368{bottom:873.750000px;}
.y3d_c00368{bottom:878.100000px;}
.y3c_c00368{bottom:887.400000px;}
.yf_c00368{bottom:891.750000px;}
.y3b_c00368{bottom:905.100000px;}
.ye_c00368{bottom:912.150000px;}
.y3a_c00368{bottom:927.000000px;}
.yd_c00368{bottom:930.900000px;}
.yc_c00368{bottom:948.600000px;}
.y39_c00368{bottom:957.900000px;}
.yb_c00368{bottom:966.300000px;}
.ya_c00368{bottom:984.300000px;}
.y38_c00368{bottom:992.550000px;}
.y9_c00368{bottom:1002.000000px;}
.y37_c00368{bottom:1010.550000px;}
.y8_c00368{bottom:1019.700000px;}
.y36_c00368{bottom:1037.100000px;}
.y7_c00368{bottom:1037.400000px;}
.y35_c00368{bottom:1054.800000px;}
.y6_c00368{bottom:1055.100000px;}
.y5_c00368{bottom:1072.800000px;}
.y34_c00368{bottom:1073.250000px;}
.y33_c00368{bottom:1090.500000px;}
.y4_c00368{bottom:1090.800000px;}
.y32_c00368{bottom:1108.500000px;}
.y3_c00368{bottom:1108.800000px;}
.y2_c00368{bottom:1133.400000px;}
.y1_c00368{bottom:1135.500000px;}
.h9_c00368{height:30.000000px;}
.h8_c00368{height:48.000000px;}
.h7_c00368{height:54.000000px;}
.h6_c00368{height:60.000000px;}
.h5_c00368{height:66.000000px;}
.h4_c00368{height:72.000000px;}
.h2_c00368{height:78.000000px;}
.h3_c00368{height:114.000000px;}
.h1_c00368{height:1269.750000px;}
.h0_c00368{height:1270.080048px;}
.w0_c00368{width:960.480010px;}
.w1_c00368{width:960.750000px;}
.x0_c00368{left:0.000000px;}
.x50_c00368{left:72.300000px;}
.x13f_c00368{left:73.500000px;}
.x61_c00368{left:74.550000px;}
.x64_c00368{left:86.850000px;}
.x3_c00368{left:89.250000px;}
.x35_c00368{left:90.600000px;}
.x89_c00368{left:100.950000px;}
.x85_c00368{left:102.000000px;}
.x20_c00368{left:103.050000px;}
.x5a_c00368{left:106.800000px;}
.x1a_c00368{left:109.200000px;}
.x56_c00368{left:111.150000px;}
.xa_c00368{left:115.350000px;}
.x4b_c00368{left:117.600000px;}
.x79_c00368{left:118.800000px;}
.x5f_c00368{left:121.350000px;}
.x3e_c00368{left:122.550000px;}
.x36_c00368{left:124.050000px;}
.x2f_c00368{left:125.100000px;}
.x73_c00368{left:126.300000px;}
.x7d_c00368{left:127.950000px;}
.x4_c00368{left:130.350000px;}
.x6d_c00368{left:132.600000px;}
.x90_c00368{left:134.100000px;}
.x86_c00368{left:135.450000px;}
.x8e_c00368{left:136.650000px;}
.x51_c00368{left:138.150000px;}
.x60_c00368{left:141.450000px;}
.x28_c00368{left:143.850000px;}
.x4c_c00368{left:145.650000px;}
.x21_c00368{left:147.000000px;}
.x7f_c00368{left:149.400000px;}
.x12_c00368{left:152.250000px;}
.x37_c00368{left:154.650000px;}
.x1b_c00368{left:156.000000px;}
.x8a_c00368{left:158.700000px;}
.xb_c00368{left:160.050000px;}
.x29_c00368{left:162.600000px;}
.x13_c00368{left:163.800000px;}
.x47_c00368{left:165.450000px;}
.x4d_c00368{left:167.250000px;}
.x57_c00368{left:170.250000px;}
.x3f_c00368{left:172.950000px;}
.x65_c00368{left:174.000000px;}
.x97_c00368{left:175.950000px;}
.x22_c00368{left:177.600000px;}
.x14_c00368{left:179.700000px;}
.xc_c00368{left:182.700000px;}
.x145_c00368{left:183.900000px;}
.x7a_c00368{left:185.400000px;}
.x99_c00368{left:187.050000px;}
.x58_c00368{left:189.000000px;}
.x75_c00368{left:190.800000px;}
.x94_c00368{left:192.600000px;}
.x38_c00368{left:194.550000px;}
.x7e_c00368{left:195.600000px;}
.x5_c00368{left:196.950000px;}
.x66_c00368{left:199.500000px;}
.x30_c00368{left:201.450000px;}
.x1c_c00368{left:204.300000px;}
.x6e_c00368{left:206.100000px;}
.x52_c00368{left:207.600000px;}
.x4e_c00368{left:209.400000px;}
.x2a_c00368{left:214.800000px;}
.x53_c00368{left:216.600000px;}
.x39_c00368{left:219.000000px;}
.x80_c00368{left:220.350000px;}
.x141_c00368{left:223.800000px;}
.x9a_c00368{left:225.150000px;}
.x5b_c00368{left:226.500000px;}
.x43_c00368{left:228.000000px;}
.x2b_c00368{left:229.200000px;}
.x142_c00368{left:230.250000px;}
.x87_c00368{left:231.600000px;}
.x15_c00368{left:233.700000px;}
.x76_c00368{left:234.750000px;}
.x4f_c00368{left:236.400000px;}
.x88_c00368{left:238.350000px;}
.x9d_c00368{left:239.700000px;}
.x6a_c00368{left:241.650000px;}
.x31_c00368{left:242.850000px;}
.x9b_c00368{left:244.950000px;}
.x6f_c00368{left:246.450000px;}
.x40_c00368{left:247.500000px;}
.x74_c00368{left:249.900000px;}
.x23_c00368{left:251.700000px;}
.x82_c00368{left:253.500000px;}
.x70_c00368{left:255.150000px;}
.x67_c00368{left:256.650000px;}
.xd_c00368{left:258.300000px;}
.x68_c00368{left:259.500000px;}
.x8d_c00368{left:262.050000px;}
.x32_c00368{left:263.700000px;}
.x41_c00368{left:266.550000px;}
.xe_c00368{left:267.600000px;}
.x16_c00368{left:269.700000px;}
.x91_c00368{left:272.700000px;}
.x9c_c00368{left:273.750000px;}
.x44_c00368{left:275.550000px;}
.x48_c00368{left:277.050000px;}
.x33_c00368{left:280.650000px;}
.x3a_c00368{left:282.300000px;}
.xf_c00368{left:283.800000px;}
.x62_c00368{left:285.000000px;}
.x98_c00368{left:288.600000px;}
.x1d_c00368{left:291.000000px;}
.x6_c00368{left:293.850000px;}
.x24_c00368{left:296.100000px;}
.x81_c00368{left:299.100000px;}
.x2c_c00368{left:300.150000px;}
.x7b_c00368{left:301.200000px;}
.x92_c00368{left:302.550000px;}
.x3b_c00368{left:304.650000px;}
.x69_c00368{left:306.600000px;}
.x1_c00368{left:308.550000px;}
.x9e_c00368{left:310.050000px;}
.x77_c00368{left:311.100000px;}
.x5c_c00368{left:312.900000px;}
.x8b_c00368{left:314.250000px;}
.x10_c00368{left:315.900000px;}
.x54_c00368{left:319.200000px;}
.x7c_c00368{left:322.800000px;}
.x45_c00368{left:324.450000px;}
.x3c_c00368{left:325.950000px;}
.x83_c00368{left:328.050000px;}
.x6b_c00368{left:329.400000px;}
.x7_c00368{left:330.600000px;}
.x34_c00368{left:331.800000px;}
.x25_c00368{left:333.600000px;}
.x49_c00368{left:335.400000px;}
.x5d_c00368{left:336.600000px;}
.x11_c00368{left:338.250000px;}
.x17_c00368{left:340.950000px;}
.x78_c00368{left:342.000000px;}
.x71_c00368{left:343.350000px;}
.x63_c00368{left:345.750000px;}
.x46_c00368{left:347.550000px;}
.x1e_c00368{left:349.350000px;}
.x2d_c00368{left:350.850000px;}
.x72_c00368{left:353.850000px;}
.x8_c00368{left:355.500000px;}
.x4a_c00368{left:358.800000px;}
.x18_c00368{left:360.000000px;}
.x9f_c00368{left:361.650000px;}
.x59_c00368{left:363.150000px;}
.x6c_c00368{left:365.100000px;}
.x2e_c00368{left:366.750000px;}
.x26_c00368{left:368.550000px;}
.x1f_c00368{left:369.900000px;}
.x19_c00368{left:373.350000px;}
.x143_c00368{left:376.350000px;}
.x93_c00368{left:378.150000px;}
.x96_c00368{left:379.350000px;}
.x8f_c00368{left:381.150000px;}
.x42_c00368{left:382.350000px;}
.x8c_c00368{left:383.700000px;}
.x9_c00368{left:390.000000px;}
.x3d_c00368{left:391.050000px;}
.x84_c00368{left:392.550000px;}
.x144_c00368{left:393.600000px;}
.x55_c00368{left:395.550000px;}
.x27_c00368{left:396.600000px;}
.x95_c00368{left:397.800000px;}
.x5e_c00368{left:403.950000px;}
.x140_c00368{left:417.000000px;}
.xc1_c00368{left:426.600000px;}
.xf4_c00368{left:428.100000px;}
.xcd_c00368{left:429.150000px;}
.xc8_c00368{left:431.250000px;}
.xf1_c00368{left:432.750000px;}
.x13b_c00368{left:438.450000px;}
.x10e_c00368{left:442.200000px;}
.xa0_c00368{left:443.550000px;}
.xd7_c00368{left:444.600000px;}
.xe6_c00368{left:445.800000px;}
.xf5_c00368{left:452.550000px;}
.x10b_c00368{left:456.750000px;}
.xff_c00368{left:460.050000px;}
.xd2_c00368{left:463.050000px;}
.xa1_c00368{left:466.200000px;}
.x11e_c00368{left:468.150000px;}
.xc9_c00368{left:470.550000px;}
.xf6_c00368{left:471.600000px;}
.xe7_c00368{left:473.550000px;}
.x124_c00368{left:475.500000px;}
.xb7_c00368{left:477.000000px;}
.x111_c00368{left:478.800000px;}
.x10f_c00368{left:480.300000px;}
.xe3_c00368{left:481.950000px;}
.x104_c00368{left:483.150000px;}
.x11f_c00368{left:485.400000px;}
.x146_c00368{left:486.750000px;}
.xe8_c00368{left:487.950000px;}
.xf9_c00368{left:489.450000px;}
.xaa_c00368{left:491.100000px;}
.xc2_c00368{left:493.950000px;}
.xb8_c00368{left:497.850000px;}
.xab_c00368{left:500.400000px;}
.x12b_c00368{left:501.600000px;}
.xce_c00368{left:504.450000px;}
.xd8_c00368{left:506.100000px;}
.xc0_c00368{left:507.900000px;}
.xd3_c00368{left:510.150000px;}
.x118_c00368{left:511.350000px;}
.x112_c00368{left:512.550000px;}
.xd9_c00368{left:514.350000px;}
.x10d_c00368{left:516.450000px;}
.xac_c00368{left:517.650000px;}
.x12c_c00368{left:519.450000px;}
.xc6_c00368{left:521.850000px;}
.x105_c00368{left:523.050000px;}
.xe4_c00368{left:526.650000px;}
.xda_c00368{left:528.000000px;}
.x116_c00368{left:531.300000px;}
.xde_c00368{left:532.950000px;}
.xa2_c00368{left:535.350000px;}
.xf7_c00368{left:536.700000px;}
.x125_c00368{left:538.500000px;}
.xb2_c00368{left:541.050000px;}
.xc3_c00368{left:542.850000px;}
.x132_c00368{left:544.500000px;}
.xb9_c00368{left:546.150000px;}
.xa3_c00368{left:548.250000px;}
.xca_c00368{left:549.450000px;}
.xeb_c00368{left:550.950000px;}
.xfa_c00368{left:553.200000px;}
.xd4_c00368{left:554.400000px;}
.x147_c00368{left:555.600000px;}
.x129_c00368{left:556.800000px;}
.x100_c00368{left:559.800000px;}
.x106_c00368{left:560.850000px;}
.xb3_c00368{left:561.900000px;}
.x122_c00368{left:563.700000px;}
.xa4_c00368{left:565.950000px;}
.x136_c00368{left:568.500000px;}
.xf2_c00368{left:571.050000px;}
.xec_c00368{left:572.850000px;}
.x130_c00368{left:574.950000px;}
.xad_c00368{left:576.000000px;}
.xdf_c00368{left:577.200000px;}
.xdb_c00368{left:578.700000px;}
.x13c_c00368{left:586.500000px;}
.x120_c00368{left:588.000000px;}
.xcf_c00368{left:589.050000px;}
.xba_c00368{left:590.100000px;}
.xd5_c00368{left:592.950000px;}
.x107_c00368{left:594.750000px;}
.x12a_c00368{left:596.700000px;}
.x134_c00368{left:597.900000px;}
.x101_c00368{left:599.100000px;}
.x148_c00368{left:601.350000px;}
.xe9_c00368{left:602.400000px;}
.xa5_c00368{left:603.450000px;}
.xfb_c00368{left:605.100000px;}
.x121_c00368{left:607.500000px;}
.xc4_c00368{left:609.450000px;}
.xae_c00368{left:610.950000px;}
.xe5_c00368{left:613.500000px;}
.xb4_c00368{left:616.200000px;}
.xe0_c00368{left:617.550000px;}
.x137_c00368{left:619.950000px;}
.x102_c00368{left:621.000000px;}
.xbb_c00368{left:622.800000px;}
.xa6_c00368{left:625.350000px;}
.x110_c00368{left:629.250000px;}
.x12d_c00368{left:631.050000px;}
.xaf_c00368{left:633.600000px;}
.x113_c00368{left:636.300000px;}
.x135_c00368{left:637.500000px;}
.xc5_c00368{left:639.000000px;}
.xcb_c00368{left:641.550000px;}
.x11c_c00368{left:644.400000px;}
.xb5_c00368{left:646.500000px;}
.x126_c00368{left:648.600000px;}
.xe1_c00368{left:649.650000px;}
.xd0_c00368{left:651.300000px;}
.x12e_c00368{left:652.650000px;}
.xc7_c00368{left:654.750000px;}
.xe2_c00368{left:658.350000px;}
.x119_c00368{left:660.000000px;}
.xed_c00368{left:661.050000px;}
.xbc_c00368{left:662.400000px;}
.x13d_c00368{left:663.600000px;}
.xea_c00368{left:664.950000px;}
.xa7_c00368{left:666.000000px;}
.xd6_c00368{left:667.800000px;}
.x114_c00368{left:670.800000px;}
.xb6_c00368{left:672.000000px;}
.xfc_c00368{left:674.250000px;}
.x103_c00368{left:676.050000px;}
.xdc_c00368{left:677.700000px;}
.xee_c00368{left:679.350000px;}
.xbd_c00368{left:682.500000px;}
.x108_c00368{left:684.000000px;}
.xcc_c00368{left:685.500000px;}
.xb0_c00368{left:687.600000px;}
.xfd_c00368{left:689.700000px;}
.x10c_c00368{left:691.500000px;}
.x109_c00368{left:693.600000px;}
.xf8_c00368{left:697.200000px;}
.x117_c00368{left:700.650000px;}
.x149_c00368{left:702.150000px;}
.xd1_c00368{left:703.200000px;}
.x13a_c00368{left:704.400000px;}
.x115_c00368{left:708.450000px;}
.x11d_c00368{left:711.000000px;}
.xef_c00368{left:713.850000px;}
.x11a_c00368{left:715.050000px;}
.x127_c00368{left:716.250000px;}
.xf3_c00368{left:717.600000px;}
.xa8_c00368{left:719.250000px;}
.x10a_c00368{left:721.350000px;}
.xb1_c00368{left:723.300000px;}
.x139_c00368{left:725.550000px;}
.xbe_c00368{left:727.800000px;}
.x133_c00368{left:729.600000px;}
.x138_c00368{left:731.250000px;}
.x12f_c00368{left:732.600000px;}
.x2_c00368{left:734.850000px;}
.x13e_c00368{left:737.850000px;}
.x128_c00368{left:739.650000px;}
.xa9_c00368{left:742.350000px;}
.x11b_c00368{left:743.850000px;}
.xf0_c00368{left:746.250000px;}
.x131_c00368{left:748.200000px;}
.xbf_c00368{left:749.700000px;}
.x123_c00368{left:752.700000px;}
.xfe_c00368{left:753.900000px;}
.xdd_c00368{left:757.650000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls1_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:56.000000pt;}
.ws3_c00368{word-spacing:-80.000000pt;}
.ws2_c00368{word-spacing:-15.575921pt;}
.ws7_c00368{word-spacing:0.000000pt;}
.ws0_c00368{word-spacing:0.246914pt;}
.ws6_c00368{word-spacing:16.848138pt;}
.ws4_c00368{word-spacing:21.333333pt;}
.ws5_c00368{word-spacing:66.419753pt;}
.ws1_c00368{word-spacing:124.629188pt;}
._1_c00368{margin-left:-56.000000pt;}
._0_c00368{width:3.333333pt;}
._2_c00368{width:64.000000pt;}
.fs7_c00368{font-size:26.666667pt;}
.fs6_c00368{font-size:42.666667pt;}
.fs5_c00368{font-size:48.000000pt;}
.fs4_c00368{font-size:53.333333pt;}
.fs3_c00368{font-size:58.666667pt;}
.fs2_c00368{font-size:64.000000pt;}
.fs0_c00368{font-size:69.333333pt;}
.fs1_c00368{font-size:101.333333pt;}
.y0_c00368{bottom:0.000000pt;}
.y67_c00368{bottom:168.000000pt;}
.y62_c00368{bottom:179.866667pt;}
.y66_c00368{bottom:184.000000pt;}
.y61_c00368{bottom:192.666667pt;}
.y65_c00368{bottom:200.000000pt;}
.y64_c00368{bottom:215.733333pt;}
.y60_c00368{bottom:216.000000pt;}
.y63_c00368{bottom:231.733333pt;}
.y5f_c00368{bottom:242.933333pt;}
.y31_c00368{bottom:251.066667pt;}
.y5e_c00368{bottom:258.933333pt;}
.y30_c00368{bottom:267.066667pt;}
.y5d_c00368{bottom:274.933333pt;}
.y2f_c00368{bottom:283.066667pt;}
.y5c_c00368{bottom:290.666667pt;}
.y2e_c00368{bottom:298.400000pt;}
.y5b_c00368{bottom:306.000000pt;}
.y2d_c00368{bottom:314.666667pt;}
.y5a_c00368{bottom:321.733333pt;}
.y2c_c00368{bottom:330.000000pt;}
.y59_c00368{bottom:337.466667pt;}
.y2b_c00368{bottom:345.733333pt;}
.y58_c00368{bottom:352.800000pt;}
.y2a_c00368{bottom:361.733333pt;}
.y57_c00368{bottom:368.533333pt;}
.y29_c00368{bottom:377.066667pt;}
.y56_c00368{bottom:384.266667pt;}
.y28_c00368{bottom:392.800000pt;}
.y55_c00368{bottom:400.000000pt;}
.y27_c00368{bottom:408.800000pt;}
.y54_c00368{bottom:416.000000pt;}
.y26_c00368{bottom:424.533333pt;}
.y53_c00368{bottom:431.733333pt;}
.y25_c00368{bottom:440.266667pt;}
.y52_c00368{bottom:447.733333pt;}
.y24_c00368{bottom:456.000000pt;}
.y51_c00368{bottom:463.333333pt;}
.y23_c00368{bottom:471.733333pt;}
.y50_c00368{bottom:479.333333pt;}
.y22_c00368{bottom:489.866667pt;}
.y4f_c00368{bottom:496.000000pt;}
.y21_c00368{bottom:504.000000pt;}
.y4e_c00368{bottom:511.066667pt;}
.y20_c00368{bottom:516.800000pt;}
.y1f_c00368{bottom:528.266667pt;}
.y4d_c00368{bottom:533.066667pt;}
.y1e_c00368{bottom:541.066667pt;}
.y4c_c00368{bottom:545.866667pt;}
.y1d_c00368{bottom:556.133333pt;}
.y4b_c00368{bottom:558.533333pt;}
.y4a_c00368{bottom:571.066667pt;}
.y1c_c00368{bottom:572.400000pt;}
.y49_c00368{bottom:583.866667pt;}
.y1b_c00368{bottom:588.133333pt;}
.y48_c00368{bottom:596.666667pt;}
.y1a_c00368{bottom:603.866667pt;}
.y47_c00368{bottom:609.733333pt;}
.y19_c00368{bottom:623.333333pt;}
.y46_c00368{bottom:628.933333pt;}
.y18_c00368{bottom:639.333333pt;}
.y45_c00368{bottom:643.066667pt;}
.y17_c00368{bottom:655.333333pt;}
.y44_c00368{bottom:658.800000pt;}
.y16_c00368{bottom:670.666667pt;}
.y43_c00368{bottom:674.533333pt;}
.y15_c00368{bottom:686.666667pt;}
.y42_c00368{bottom:694.000000pt;}
.y14_c00368{bottom:702.666667pt;}
.y41_c00368{bottom:710.000000pt;}
.y13_c00368{bottom:721.866667pt;}
.y40_c00368{bottom:725.733333pt;}
.y3f_c00368{bottom:741.466667pt;}
.y12_c00368{bottom:744.266667pt;}
.y3e_c00368{bottom:757.466667pt;}
.y11_c00368{bottom:760.666667pt;}
.y10_c00368{bottom:776.666667pt;}
.y3d_c00368{bottom:780.533333pt;}
.y3c_c00368{bottom:788.800000pt;}
.yf_c00368{bottom:792.666667pt;}
.y3b_c00368{bottom:804.533333pt;}
.ye_c00368{bottom:810.800000pt;}
.y3a_c00368{bottom:824.000000pt;}
.yd_c00368{bottom:827.466667pt;}
.yc_c00368{bottom:843.200000pt;}
.y39_c00368{bottom:851.466667pt;}
.yb_c00368{bottom:858.933333pt;}
.ya_c00368{bottom:874.933333pt;}
.y38_c00368{bottom:882.266667pt;}
.y9_c00368{bottom:890.666667pt;}
.y37_c00368{bottom:898.266667pt;}
.y8_c00368{bottom:906.400000pt;}
.y36_c00368{bottom:921.866667pt;}
.y7_c00368{bottom:922.133333pt;}
.y35_c00368{bottom:937.600000pt;}
.y6_c00368{bottom:937.866667pt;}
.y5_c00368{bottom:953.600000pt;}
.y34_c00368{bottom:954.000000pt;}
.y33_c00368{bottom:969.333333pt;}
.y4_c00368{bottom:969.600000pt;}
.y32_c00368{bottom:985.333333pt;}
.y3_c00368{bottom:985.600000pt;}
.y2_c00368{bottom:1007.466667pt;}
.y1_c00368{bottom:1009.333333pt;}
.h9_c00368{height:26.666667pt;}
.h8_c00368{height:42.666667pt;}
.h7_c00368{height:48.000000pt;}
.h6_c00368{height:53.333333pt;}
.h5_c00368{height:58.666667pt;}
.h4_c00368{height:64.000000pt;}
.h2_c00368{height:69.333333pt;}
.h3_c00368{height:101.333333pt;}
.h1_c00368{height:1128.666667pt;}
.h0_c00368{height:1128.960043pt;}
.w0_c00368{width:853.760009pt;}
.w1_c00368{width:854.000000pt;}
.x0_c00368{left:0.000000pt;}
.x50_c00368{left:64.266667pt;}
.x13f_c00368{left:65.333333pt;}
.x61_c00368{left:66.266667pt;}
.x64_c00368{left:77.200000pt;}
.x3_c00368{left:79.333333pt;}
.x35_c00368{left:80.533333pt;}
.x89_c00368{left:89.733333pt;}
.x85_c00368{left:90.666667pt;}
.x20_c00368{left:91.600000pt;}
.x5a_c00368{left:94.933333pt;}
.x1a_c00368{left:97.066667pt;}
.x56_c00368{left:98.800000pt;}
.xa_c00368{left:102.533333pt;}
.x4b_c00368{left:104.533333pt;}
.x79_c00368{left:105.600000pt;}
.x5f_c00368{left:107.866667pt;}
.x3e_c00368{left:108.933333pt;}
.x36_c00368{left:110.266667pt;}
.x2f_c00368{left:111.200000pt;}
.x73_c00368{left:112.266667pt;}
.x7d_c00368{left:113.733333pt;}
.x4_c00368{left:115.866667pt;}
.x6d_c00368{left:117.866667pt;}
.x90_c00368{left:119.200000pt;}
.x86_c00368{left:120.400000pt;}
.x8e_c00368{left:121.466667pt;}
.x51_c00368{left:122.800000pt;}
.x60_c00368{left:125.733333pt;}
.x28_c00368{left:127.866667pt;}
.x4c_c00368{left:129.466667pt;}
.x21_c00368{left:130.666667pt;}
.x7f_c00368{left:132.800000pt;}
.x12_c00368{left:135.333333pt;}
.x37_c00368{left:137.466667pt;}
.x1b_c00368{left:138.666667pt;}
.x8a_c00368{left:141.066667pt;}
.xb_c00368{left:142.266667pt;}
.x29_c00368{left:144.533333pt;}
.x13_c00368{left:145.600000pt;}
.x47_c00368{left:147.066667pt;}
.x4d_c00368{left:148.666667pt;}
.x57_c00368{left:151.333333pt;}
.x3f_c00368{left:153.733333pt;}
.x65_c00368{left:154.666667pt;}
.x97_c00368{left:156.400000pt;}
.x22_c00368{left:157.866667pt;}
.x14_c00368{left:159.733333pt;}
.xc_c00368{left:162.400000pt;}
.x145_c00368{left:163.466667pt;}
.x7a_c00368{left:164.800000pt;}
.x99_c00368{left:166.266667pt;}
.x58_c00368{left:168.000000pt;}
.x75_c00368{left:169.600000pt;}
.x94_c00368{left:171.200000pt;}
.x38_c00368{left:172.933333pt;}
.x7e_c00368{left:173.866667pt;}
.x5_c00368{left:175.066667pt;}
.x66_c00368{left:177.333333pt;}
.x30_c00368{left:179.066667pt;}
.x1c_c00368{left:181.600000pt;}
.x6e_c00368{left:183.200000pt;}
.x52_c00368{left:184.533333pt;}
.x4e_c00368{left:186.133333pt;}
.x2a_c00368{left:190.933333pt;}
.x53_c00368{left:192.533333pt;}
.x39_c00368{left:194.666667pt;}
.x80_c00368{left:195.866667pt;}
.x141_c00368{left:198.933333pt;}
.x9a_c00368{left:200.133333pt;}
.x5b_c00368{left:201.333333pt;}
.x43_c00368{left:202.666667pt;}
.x2b_c00368{left:203.733333pt;}
.x142_c00368{left:204.666667pt;}
.x87_c00368{left:205.866667pt;}
.x15_c00368{left:207.733333pt;}
.x76_c00368{left:208.666667pt;}
.x4f_c00368{left:210.133333pt;}
.x88_c00368{left:211.866667pt;}
.x9d_c00368{left:213.066667pt;}
.x6a_c00368{left:214.800000pt;}
.x31_c00368{left:215.866667pt;}
.x9b_c00368{left:217.733333pt;}
.x6f_c00368{left:219.066667pt;}
.x40_c00368{left:220.000000pt;}
.x74_c00368{left:222.133333pt;}
.x23_c00368{left:223.733333pt;}
.x82_c00368{left:225.333333pt;}
.x70_c00368{left:226.800000pt;}
.x67_c00368{left:228.133333pt;}
.xd_c00368{left:229.600000pt;}
.x68_c00368{left:230.666667pt;}
.x8d_c00368{left:232.933333pt;}
.x32_c00368{left:234.400000pt;}
.x41_c00368{left:236.933333pt;}
.xe_c00368{left:237.866667pt;}
.x16_c00368{left:239.733333pt;}
.x91_c00368{left:242.400000pt;}
.x9c_c00368{left:243.333333pt;}
.x44_c00368{left:244.933333pt;}
.x48_c00368{left:246.266667pt;}
.x33_c00368{left:249.466667pt;}
.x3a_c00368{left:250.933333pt;}
.xf_c00368{left:252.266667pt;}
.x62_c00368{left:253.333333pt;}
.x98_c00368{left:256.533333pt;}
.x1d_c00368{left:258.666667pt;}
.x6_c00368{left:261.200000pt;}
.x24_c00368{left:263.200000pt;}
.x81_c00368{left:265.866667pt;}
.x2c_c00368{left:266.800000pt;}
.x7b_c00368{left:267.733333pt;}
.x92_c00368{left:268.933333pt;}
.x3b_c00368{left:270.800000pt;}
.x69_c00368{left:272.533333pt;}
.x1_c00368{left:274.266667pt;}
.x9e_c00368{left:275.600000pt;}
.x77_c00368{left:276.533333pt;}
.x5c_c00368{left:278.133333pt;}
.x8b_c00368{left:279.333333pt;}
.x10_c00368{left:280.800000pt;}
.x54_c00368{left:283.733333pt;}
.x7c_c00368{left:286.933333pt;}
.x45_c00368{left:288.400000pt;}
.x3c_c00368{left:289.733333pt;}
.x83_c00368{left:291.600000pt;}
.x6b_c00368{left:292.800000pt;}
.x7_c00368{left:293.866667pt;}
.x34_c00368{left:294.933333pt;}
.x25_c00368{left:296.533333pt;}
.x49_c00368{left:298.133333pt;}
.x5d_c00368{left:299.200000pt;}
.x11_c00368{left:300.666667pt;}
.x17_c00368{left:303.066667pt;}
.x78_c00368{left:304.000000pt;}
.x71_c00368{left:305.200000pt;}
.x63_c00368{left:307.333333pt;}
.x46_c00368{left:308.933333pt;}
.x1e_c00368{left:310.533333pt;}
.x2d_c00368{left:311.866667pt;}
.x72_c00368{left:314.533333pt;}
.x8_c00368{left:316.000000pt;}
.x4a_c00368{left:318.933333pt;}
.x18_c00368{left:320.000000pt;}
.x9f_c00368{left:321.466667pt;}
.x59_c00368{left:322.800000pt;}
.x6c_c00368{left:324.533333pt;}
.x2e_c00368{left:326.000000pt;}
.x26_c00368{left:327.600000pt;}
.x1f_c00368{left:328.800000pt;}
.x19_c00368{left:331.866667pt;}
.x143_c00368{left:334.533333pt;}
.x93_c00368{left:336.133333pt;}
.x96_c00368{left:337.200000pt;}
.x8f_c00368{left:338.800000pt;}
.x42_c00368{left:339.866667pt;}
.x8c_c00368{left:341.066667pt;}
.x9_c00368{left:346.666667pt;}
.x3d_c00368{left:347.600000pt;}
.x84_c00368{left:348.933333pt;}
.x144_c00368{left:349.866667pt;}
.x55_c00368{left:351.600000pt;}
.x27_c00368{left:352.533333pt;}
.x95_c00368{left:353.600000pt;}
.x5e_c00368{left:359.066667pt;}
.x140_c00368{left:370.666667pt;}
.xc1_c00368{left:379.200000pt;}
.xf4_c00368{left:380.533333pt;}
.xcd_c00368{left:381.466667pt;}
.xc8_c00368{left:383.333333pt;}
.xf1_c00368{left:384.666667pt;}
.x13b_c00368{left:389.733333pt;}
.x10e_c00368{left:393.066667pt;}
.xa0_c00368{left:394.266667pt;}
.xd7_c00368{left:395.200000pt;}
.xe6_c00368{left:396.266667pt;}
.xf5_c00368{left:402.266667pt;}
.x10b_c00368{left:406.000000pt;}
.xff_c00368{left:408.933333pt;}
.xd2_c00368{left:411.600000pt;}
.xa1_c00368{left:414.400000pt;}
.x11e_c00368{left:416.133333pt;}
.xc9_c00368{left:418.266667pt;}
.xf6_c00368{left:419.200000pt;}
.xe7_c00368{left:420.933333pt;}
.x124_c00368{left:422.666667pt;}
.xb7_c00368{left:424.000000pt;}
.x111_c00368{left:425.600000pt;}
.x10f_c00368{left:426.933333pt;}
.xe3_c00368{left:428.400000pt;}
.x104_c00368{left:429.466667pt;}
.x11f_c00368{left:431.466667pt;}
.x146_c00368{left:432.666667pt;}
.xe8_c00368{left:433.733333pt;}
.xf9_c00368{left:435.066667pt;}
.xaa_c00368{left:436.533333pt;}
.xc2_c00368{left:439.066667pt;}
.xb8_c00368{left:442.533333pt;}
.xab_c00368{left:444.800000pt;}
.x12b_c00368{left:445.866667pt;}
.xce_c00368{left:448.400000pt;}
.xd8_c00368{left:449.866667pt;}
.xc0_c00368{left:451.466667pt;}
.xd3_c00368{left:453.466667pt;}
.x118_c00368{left:454.533333pt;}
.x112_c00368{left:455.600000pt;}
.xd9_c00368{left:457.200000pt;}
.x10d_c00368{left:459.066667pt;}
.xac_c00368{left:460.133333pt;}
.x12c_c00368{left:461.733333pt;}
.xc6_c00368{left:463.866667pt;}
.x105_c00368{left:464.933333pt;}
.xe4_c00368{left:468.133333pt;}
.xda_c00368{left:469.333333pt;}
.x116_c00368{left:472.266667pt;}
.xde_c00368{left:473.733333pt;}
.xa2_c00368{left:475.866667pt;}
.xf7_c00368{left:477.066667pt;}
.x125_c00368{left:478.666667pt;}
.xb2_c00368{left:480.933333pt;}
.xc3_c00368{left:482.533333pt;}
.x132_c00368{left:484.000000pt;}
.xb9_c00368{left:485.466667pt;}
.xa3_c00368{left:487.333333pt;}
.xca_c00368{left:488.400000pt;}
.xeb_c00368{left:489.733333pt;}
.xfa_c00368{left:491.733333pt;}
.xd4_c00368{left:492.800000pt;}
.x147_c00368{left:493.866667pt;}
.x129_c00368{left:494.933333pt;}
.x100_c00368{left:497.600000pt;}
.x106_c00368{left:498.533333pt;}
.xb3_c00368{left:499.466667pt;}
.x122_c00368{left:501.066667pt;}
.xa4_c00368{left:503.066667pt;}
.x136_c00368{left:505.333333pt;}
.xf2_c00368{left:507.600000pt;}
.xec_c00368{left:509.200000pt;}
.x130_c00368{left:511.066667pt;}
.xad_c00368{left:512.000000pt;}
.xdf_c00368{left:513.066667pt;}
.xdb_c00368{left:514.400000pt;}
.x13c_c00368{left:521.333333pt;}
.x120_c00368{left:522.666667pt;}
.xcf_c00368{left:523.600000pt;}
.xba_c00368{left:524.533333pt;}
.xd5_c00368{left:527.066667pt;}
.x107_c00368{left:528.666667pt;}
.x12a_c00368{left:530.400000pt;}
.x134_c00368{left:531.466667pt;}
.x101_c00368{left:532.533333pt;}
.x148_c00368{left:534.533333pt;}
.xe9_c00368{left:535.466667pt;}
.xa5_c00368{left:536.400000pt;}
.xfb_c00368{left:537.866667pt;}
.x121_c00368{left:540.000000pt;}
.xc4_c00368{left:541.733333pt;}
.xae_c00368{left:543.066667pt;}
.xe5_c00368{left:545.333333pt;}
.xb4_c00368{left:547.733333pt;}
.xe0_c00368{left:548.933333pt;}
.x137_c00368{left:551.066667pt;}
.x102_c00368{left:552.000000pt;}
.xbb_c00368{left:553.600000pt;}
.xa6_c00368{left:555.866667pt;}
.x110_c00368{left:559.333333pt;}
.x12d_c00368{left:560.933333pt;}
.xaf_c00368{left:563.200000pt;}
.x113_c00368{left:565.600000pt;}
.x135_c00368{left:566.666667pt;}
.xc5_c00368{left:568.000000pt;}
.xcb_c00368{left:570.266667pt;}
.x11c_c00368{left:572.800000pt;}
.xb5_c00368{left:574.666667pt;}
.x126_c00368{left:576.533333pt;}
.xe1_c00368{left:577.466667pt;}
.xd0_c00368{left:578.933333pt;}
.x12e_c00368{left:580.133333pt;}
.xc7_c00368{left:582.000000pt;}
.xe2_c00368{left:585.200000pt;}
.x119_c00368{left:586.666667pt;}
.xed_c00368{left:587.600000pt;}
.xbc_c00368{left:588.800000pt;}
.x13d_c00368{left:589.866667pt;}
.xea_c00368{left:591.066667pt;}
.xa7_c00368{left:592.000000pt;}
.xd6_c00368{left:593.600000pt;}
.x114_c00368{left:596.266667pt;}
.xb6_c00368{left:597.333333pt;}
.xfc_c00368{left:599.333333pt;}
.x103_c00368{left:600.933333pt;}
.xdc_c00368{left:602.400000pt;}
.xee_c00368{left:603.866667pt;}
.xbd_c00368{left:606.666667pt;}
.x108_c00368{left:608.000000pt;}
.xcc_c00368{left:609.333333pt;}
.xb0_c00368{left:611.200000pt;}
.xfd_c00368{left:613.066667pt;}
.x10c_c00368{left:614.666667pt;}
.x109_c00368{left:616.533333pt;}
.xf8_c00368{left:619.733333pt;}
.x117_c00368{left:622.800000pt;}
.x149_c00368{left:624.133333pt;}
.xd1_c00368{left:625.066667pt;}
.x13a_c00368{left:626.133333pt;}
.x115_c00368{left:629.733333pt;}
.x11d_c00368{left:632.000000pt;}
.xef_c00368{left:634.533333pt;}
.x11a_c00368{left:635.600000pt;}
.x127_c00368{left:636.666667pt;}
.xf3_c00368{left:637.866667pt;}
.xa8_c00368{left:639.333333pt;}
.x10a_c00368{left:641.200000pt;}
.xb1_c00368{left:642.933333pt;}
.x139_c00368{left:644.933333pt;}
.xbe_c00368{left:646.933333pt;}
.x133_c00368{left:648.533333pt;}
.x138_c00368{left:650.000000pt;}
.x12f_c00368{left:651.200000pt;}
.x2_c00368{left:653.200000pt;}
.x13e_c00368{left:655.866667pt;}
.x128_c00368{left:657.466667pt;}
.xa9_c00368{left:659.866667pt;}
.x11b_c00368{left:661.200000pt;}
.xf0_c00368{left:663.333333pt;}
.x131_c00368{left:665.066667pt;}
.xbf_c00368{left:666.400000pt;}
.x123_c00368{left:669.066667pt;}
.xfe_c00368{left:670.133333pt;}
.xdd_c00368{left:673.466667pt;}
}





/* 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_c00369 {
    display:none;
  }
  .loading-indicator_c00369.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00369 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_c00369 { 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_c00369" -> "#page-container .classname_c00369")
 */
.pf_c00369 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00369 { /* 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_c00369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00369 { /* 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_c00369 { /* 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_c00369 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00369 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00369 {overflow:visible;}
  }
}
.c_c00369 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00369 { /* 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_c00369:after { /* webkit #35443 */
  content: '';
}
.t_c00369:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00369 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 */
}
.__c00369 { /* 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_c00369 { /* info for Javascript */
  display:none;
}
.l_c00369 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00369 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00369 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00369: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_c00369 {
    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_c00369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00369.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_c00369 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00369;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.000000;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;}
.m85_c00369{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m101_c00369{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.md6_c00369{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00369{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m31_c00369{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m79_c00369{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m10_c00369{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00369{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00369{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00369{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00369{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m58_c00369{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00369{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m7_c00369{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m32_c00369{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m42_c00369{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00369{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00369{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00369{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m114_c00369{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00369{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m83_c00369{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00369{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00369{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m61_c00369{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00369{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m45_c00369{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m66_c00369{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00369{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m46_c00369{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m59_c00369{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00369{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00369{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00369{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00369{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00369{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m60_c00369{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00369{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m37_c00369{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00369{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m96_c00369{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mb_c00369{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00369{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m19_c00369{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00369{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00369{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00369{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m20_c00369{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mce_c00369{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00369{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00369{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md9_c00369{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.me0_c00369{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m97_c00369{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00369{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m23_c00369{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00369{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m21_c00369{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m25_c00369{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m91_c00369{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me4_c00369{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mef_c00369{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00369{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mde_c00369{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m17_c00369{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3_c00369{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00369{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m99_c00369{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mba_c00369{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m30_c00369{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00369{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00369{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m82_c00369{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m15_c00369{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00369{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m43_c00369{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md1_c00369{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00369{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m84_c00369{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.med_c00369{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00369{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m78_c00369{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m33_c00369{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00369{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00369{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m100_c00369{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00369{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00369{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00369{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mac_c00369{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me3_c00369{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00369{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me1_c00369{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m47_c00369{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m50_c00369{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m106_c00369{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mee_c00369{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00369{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md0_c00369{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m56_c00369{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m39_c00369{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me8_c00369{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m12_c00369{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m41_c00369{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mab_c00369{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.maa_c00369{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m22_c00369{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m74_c00369{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m49_c00369{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m104_c00369{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00369{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m111_c00369{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.md_c00369{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m92_c00369{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mea_c00369{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m69_c00369{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00369{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mad_c00369{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00369{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m11_c00369{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mff_c00369{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00369{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00369{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00369{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00369{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00369{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00369{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00369{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00369{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m64_c00369{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m38_c00369{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma_c00369{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2_c00369{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00369{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m13_c00369{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00369{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m34_c00369{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m108_c00369{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00369{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00369{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m52_c00369{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me6_c00369{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00369{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00369{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00369{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m14_c00369{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00369{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4_c00369{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m48_c00369{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc_c00369{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m110_c00369{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m16_c00369{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00369{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mae_c00369{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.meb_c00369{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00369{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00369{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00369{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6_c00369{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m89_c00369{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf_c00369{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00369{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00369{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.maf_c00369{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m35_c00369{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00369{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m77_c00369{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00369{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m88_c00369{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m27_c00369{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00369{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m71_c00369{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9_c00369{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m65_c00369{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00369{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00369{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00369{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m29_c00369{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00369{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me_c00369{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00369{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00369{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.me7_c00369{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00369{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m112_c00369{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m24_c00369{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00369{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m57_c00369{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8_c00369{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md4_c00369{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m44_c00369{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00369{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00369{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00369{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m105_c00369{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00369{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5_c00369{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m107_c00369{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.me9_c00369{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00369{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m26_c00369{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m113_c00369{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md7_c00369{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m28_c00369{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m95_c00369{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00369{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m63_c00369{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mda_c00369{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me5_c00369{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00369{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00369{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m90_c00369{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m72_c00369{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00369{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m0_c00369{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00369{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m94_c00369{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m40_c00369{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m36_c00369{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m103_c00369{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m62_c00369{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m80_c00369{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m102_c00369{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00369{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00369{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m81_c00369{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m73_c00369{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00369{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m76_c00369{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m87_c00369{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m98_c00369{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m70_c00369{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.md3_c00369{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00369{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00369{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00369{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m55_c00369{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00369{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00369{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00369{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00369{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m93_c00369{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mec_c00369{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me2_c00369{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00369{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00369{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m53_c00369{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m75_c00369{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m18_c00369{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00369{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00369{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00369{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00369{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00369{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m67_c00369{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00369{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.md2_c00369{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00369{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m51_c00369{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m54_c00369{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m86_c00369{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00369{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00369{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m109_c00369{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00369{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00369{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00369{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00369{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00369{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00369{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.mca_c00369{transform:matrix(0.399500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399500,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00369{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m68_c00369{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00369{transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);}
.md5_c00369{transform:matrix(0.636000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636000,0.000000,0.000000,0.250000,0,0);}
.md8_c00369{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls0_c00369{letter-spacing:0.000000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{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__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00369{word-spacing:-16.639798px;}
.ws7_c00369{word-spacing:-11.414634px;}
.ws8_c00369{word-spacing:-8.472222px;}
.ws5_c00369{word-spacing:-6.396825px;}
.ws4_c00369{word-spacing:-0.072165px;}
.ws9_c00369{word-spacing:0.000000px;}
.ws0_c00369{word-spacing:1.908309px;}
.ws2_c00369{word-spacing:26.428954px;}
.ws3_c00369{word-spacing:36.000000px;}
.ws1_c00369{word-spacing:39.750000px;}
._1_c00369{width:72.375000px;}
._0_c00369{width:333.000000px;}
.fc0_c00369{color:transparent;}
.fs6_c00369{font-size:30.000000px;}
.fs4_c00369{font-size:54.000000px;}
.fs3_c00369{font-size:60.000000px;}
.fs1_c00369{font-size:66.000000px;}
.fs2_c00369{font-size:72.000000px;}
.fs0_c00369{font-size:84.000000px;}
.fs5_c00369{font-size:90.000000px;}
.y0_c00369{bottom:0.000000px;}
.y63_c00369{bottom:187.200000px;}
.y34_c00369{bottom:187.350000px;}
.y62_c00369{bottom:201.600000px;}
.y33_c00369{bottom:205.650000px;}
.y61_c00369{bottom:216.000000px;}
.y32_c00369{bottom:223.650000px;}
.y60_c00369{bottom:230.400000px;}
.y31_c00369{bottom:240.900000px;}
.y5f_c00369{bottom:244.050000px;}
.y30_c00369{bottom:258.900000px;}
.y2f_c00369{bottom:276.150000px;}
.y5e_c00369{bottom:285.900000px;}
.y2e_c00369{bottom:294.150000px;}
.y5d_c00369{bottom:301.650000px;}
.y2d_c00369{bottom:311.400000px;}
.y5c_c00369{bottom:323.700000px;}
.y2c_c00369{bottom:329.400000px;}
.y5b_c00369{bottom:341.700000px;}
.y2b_c00369{bottom:347.400000px;}
.y5a_c00369{bottom:363.300000px;}
.y2a_c00369{bottom:365.400000px;}
.y59_c00369{bottom:381.600000px;}
.y29_c00369{bottom:383.400000px;}
.y28_c00369{bottom:401.100000px;}
.y58_c00369{bottom:403.500000px;}
.y27_c00369{bottom:419.100000px;}
.y57_c00369{bottom:421.500000px;}
.y26_c00369{bottom:437.100000px;}
.y56_c00369{bottom:443.850000px;}
.y25_c00369{bottom:460.800000px;}
.y55_c00369{bottom:465.750000px;}
.y24_c00369{bottom:476.850000px;}
.y54_c00369{bottom:483.450000px;}
.y23_c00369{bottom:490.950000px;}
.y53_c00369{bottom:505.800000px;}
.y22_c00369{bottom:506.850000px;}
.y21_c00369{bottom:525.150000px;}
.y52_c00369{bottom:527.700000px;}
.y20_c00369{bottom:543.900000px;}
.y51_c00369{bottom:545.700000px;}
.y1f_c00369{bottom:561.600000px;}
.y50_c00369{bottom:563.400000px;}
.y1e_c00369{bottom:579.300000px;}
.y4f_c00369{bottom:581.100000px;}
.y4e_c00369{bottom:599.100000px;}
.y1d_c00369{bottom:604.950000px;}
.y4d_c00369{bottom:621.000000px;}
.y1c_c00369{bottom:623.700000px;}
.y4c_c00369{bottom:639.000000px;}
.y1b_c00369{bottom:641.400000px;}
.y4b_c00369{bottom:657.000000px;}
.y1a_c00369{bottom:659.400000px;}
.y19_c00369{bottom:677.100000px;}
.y4a_c00369{bottom:678.900000px;}
.y18_c00369{bottom:695.100000px;}
.y49_c00369{bottom:696.900000px;}
.y17_c00369{bottom:712.800000px;}
.y48_c00369{bottom:719.100000px;}
.y16_c00369{bottom:730.800000px;}
.y47_c00369{bottom:736.800000px;}
.y15_c00369{bottom:748.800000px;}
.y46_c00369{bottom:754.800000px;}
.y14_c00369{bottom:766.500000px;}
.y45_c00369{bottom:772.500000px;}
.y13_c00369{bottom:792.300000px;}
.y44_c00369{bottom:794.100000px;}
.y43_c00369{bottom:816.300000px;}
.y12_c00369{bottom:819.000000px;}
.y42_c00369{bottom:834.000000px;}
.y11_c00369{bottom:836.700000px;}
.y41_c00369{bottom:852.000000px;}
.y10_c00369{bottom:857.850000px;}
.y40_c00369{bottom:869.700000px;}
.yf_c00369{bottom:876.600000px;}
.ye_c00369{bottom:894.300000px;}
.y3f_c00369{bottom:897.900000px;}
.y3e_c00369{bottom:906.150000px;}
.yd_c00369{bottom:912.300000px;}
.y3d_c00369{bottom:916.200000px;}
.y3c_c00369{bottom:925.950000px;}
.yc_c00369{bottom:930.000000px;}
.yb_c00369{bottom:947.700000px;}
.y3b_c00369{bottom:952.500000px;}
.ya_c00369{bottom:965.400000px;}
.y3a_c00369{bottom:970.200000px;}
.y9_c00369{bottom:983.400000px;}
.y8_c00369{bottom:1001.400000px;}
.y7_c00369{bottom:1019.100000px;}
.y39_c00369{bottom:1032.150000px;}
.y6_c00369{bottom:1037.100000px;}
.y38_c00369{bottom:1050.150000px;}
.y5_c00369{bottom:1059.150000px;}
.y37_c00369{bottom:1072.050000px;}
.y4_c00369{bottom:1077.150000px;}
.y36_c00369{bottom:1093.950000px;}
.y3_c00369{bottom:1095.150000px;}
.y2_c00369{bottom:1113.150000px;}
.y35_c00369{bottom:1115.250000px;}
.y1_c00369{bottom:1139.700000px;}
.h8_c00369{height:30.000000px;}
.h6_c00369{height:54.000000px;}
.h5_c00369{height:60.000000px;}
.h3_c00369{height:66.000000px;}
.h4_c00369{height:72.000000px;}
.h2_c00369{height:84.000000px;}
.h7_c00369{height:90.000000px;}
.h1_c00369{height:1266.750000px;}
.h0_c00369{height:1266.839905px;}
.w0_c00369{width:960.480010px;}
.w1_c00369{width:960.750000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:199.050000px;}
.x1c_c00369{left:200.100000px;}
.x5e_c00369{left:201.300000px;}
.x54_c00369{left:205.950000px;}
.x83_c00369{left:213.300000px;}
.x72_c00369{left:214.950000px;}
.x3_c00369{left:216.750000px;}
.x1b_c00369{left:218.550000px;}
.x75_c00369{left:228.300000px;}
.x63_c00369{left:236.550000px;}
.x2c_c00369{left:238.650000px;}
.x49_c00369{left:240.900000px;}
.x7f_c00369{left:244.350000px;}
.x73_c00369{left:247.350000px;}
.x97_c00369{left:250.350000px;}
.xd_c00369{left:251.400000px;}
.x23_c00369{left:253.050000px;}
.x32_c00369{left:254.850000px;}
.x2d_c00369{left:255.900000px;}
.x1d_c00369{left:259.500000px;}
.x4_c00369{left:262.800000px;}
.x68_c00369{left:264.900000px;}
.x3e_c00369{left:266.250000px;}
.x15_c00369{left:267.450000px;}
.x43_c00369{left:269.100000px;}
.xe_c00369{left:270.900000px;}
.x5f_c00369{left:273.000000px;}
.x4a_c00369{left:274.050000px;}
.x90_c00369{left:276.150000px;}
.x1e_c00369{left:278.250000px;}
.x5_c00369{left:280.800000px;}
.xa2_c00369{left:281.850000px;}
.x8a_c00369{left:283.650000px;}
.x6c_c00369{left:285.000000px;}
.x98_c00369{left:287.100000px;}
.x44_c00369{left:288.150000px;}
.x5d_c00369{left:291.600000px;}
.x33_c00369{left:292.650000px;}
.x37_c00369{left:295.500000px;}
.x9a_c00369{left:296.550000px;}
.x1f_c00369{left:298.800000px;}
.x96_c00369{left:300.000000px;}
.x24_c00369{left:302.700000px;}
.x3f_c00369{left:304.800000px;}
.x84_c00369{left:305.850000px;}
.x55_c00369{left:307.050000px;}
.x45_c00369{left:309.000000px;}
.x9f_c00369{left:311.700000px;}
.x38_c00369{left:312.750000px;}
.x91_c00369{left:314.700000px;}
.xf_c00369{left:316.650000px;}
.x69_c00369{left:318.150000px;}
.x64_c00369{left:320.400000px;}
.x50_c00369{left:322.650000px;}
.x40_c00369{left:325.350000px;}
.x56_c00369{left:327.600000px;}
.x76_c00369{left:328.800000px;}
.x6d_c00369{left:330.300000px;}
.x4b_c00369{left:331.650000px;}
.x39_c00369{left:333.600000px;}
.x20_c00369{left:337.350000px;}
.x34_c00369{left:338.400000px;}
.x6a_c00369{left:341.250000px;}
.x16_c00369{left:343.800000px;}
.xa0_c00369{left:345.600000px;}
.x65_c00369{left:347.400000px;}
.x46_c00369{left:349.650000px;}
.x51_c00369{left:352.200000px;}
.x85_c00369{left:354.150000px;}
.x6_c00369{left:355.350000px;}
.x25_c00369{left:356.700000px;}
.x60_c00369{left:357.900000px;}
.x92_c00369{left:359.100000px;}
.x9d_c00369{left:360.900000px;}
.x2e_c00369{left:362.100000px;}
.x21_c00369{left:364.350000px;}
.x86_c00369{left:365.700000px;}
.x4c_c00369{left:367.350000px;}
.x47_c00369{left:369.750000px;}
.x52_c00369{left:370.950000px;}
.x7d_c00369{left:372.150000px;}
.x10_c00369{left:373.500000px;}
.x6e_c00369{left:374.550000px;}
.x3a_c00369{left:375.750000px;}
.x26_c00369{left:378.600000px;}
.x17_c00369{left:380.100000px;}
.x82_c00369{left:381.600000px;}
.x7_c00369{left:382.650000px;}
.x57_c00369{left:384.900000px;}
.x22_c00369{left:387.000000px;}
.x74_c00369{left:388.950000px;}
.x8d_c00369{left:390.900000px;}
.x2f_c00369{left:392.400000px;}
.x66_c00369{left:396.000000px;}
.x3b_c00369{left:397.350000px;}
.x77_c00369{left:399.750000px;}
.x79_c00369{left:401.400000px;}
.x27_c00369{left:403.050000px;}
.x6f_c00369{left:404.400000px;}
.x5a_c00369{left:406.950000px;}
.x95_c00369{left:409.050000px;}
.x8e_c00369{left:410.400000px;}
.x4d_c00369{left:412.650000px;}
.x8_c00369{left:414.750000px;}
.x18_c00369{left:416.100000px;}
.x78_c00369{left:417.450000px;}
.x11_c00369{left:419.550000px;}
.x89_c00369{left:421.800000px;}
.x9_c00369{left:424.800000px;}
.x8c_c00369{left:426.150000px;}
.x30_c00369{left:427.350000px;}
.x70_c00369{left:429.900000px;}
.x4e_c00369{left:431.700000px;}
.x61_c00369{left:432.750000px;}
.xa1_c00369{left:434.850000px;}
.x12_c00369{left:438.300000px;}
.x62_c00369{left:440.250000px;}
.x58_c00369{left:441.450000px;}
.xa_c00369{left:442.800000px;}
.x7a_c00369{left:446.400000px;}
.x2_c00369{left:449.550000px;}
.x35_c00369{left:451.050000px;}
.x71_c00369{left:452.550000px;}
.x28_c00369{left:454.200000px;}
.x48_c00369{left:456.150000px;}
.x9e_c00369{left:457.350000px;}
.x9b_c00369{left:459.450000px;}
.x6b_c00369{left:463.350000px;}
.x13_c00369{left:465.000000px;}
.x80_c00369{left:467.100000px;}
.x5b_c00369{left:468.450000px;}
.xb_c00369{left:470.550000px;}
.x29_c00369{left:472.950000px;}
.x41_c00369{left:475.800000px;}
.x9c_c00369{left:476.850000px;}
.x53_c00369{left:479.250000px;}
.x3c_c00369{left:480.900000px;}
.x93_c00369{left:482.100000px;}
.x67_c00369{left:484.200000px;}
.x19_c00369{left:487.800000px;}
.xc_c00369{left:490.050000px;}
.x7e_c00369{left:492.450000px;}
.x2a_c00369{left:494.550000px;}
.x88_c00369{left:495.600000px;}
.x94_c00369{left:497.250000px;}
.x59_c00369{left:499.050000px;}
.x99_c00369{left:501.000000px;}
.x31_c00369{left:502.200000px;}
.x8b_c00369{left:503.250000px;}
.x1a_c00369{left:506.850000px;}
.x3d_c00369{left:508.950000px;}
.x5c_c00369{left:511.650000px;}
.x2b_c00369{left:513.300000px;}
.x7b_c00369{left:515.400000px;}
.x81_c00369{left:517.500000px;}
.x36_c00369{left:518.700000px;}
.x42_c00369{left:520.800000px;}
.x87_c00369{left:522.900000px;}
.x7c_c00369{left:524.400000px;}
.x4f_c00369{left:525.750000px;}
.x14_c00369{left:533.100000px;}
.x8f_c00369{left:540.300000px;}
.x128_c00369{left:552.900000px;}
.xbc_c00369{left:556.200000px;}
.xb0_c00369{left:557.250000px;}
.x122_c00369{left:570.900000px;}
.xb9_c00369{left:573.900000px;}
.xa3_c00369{left:575.700000px;}
.x12b_c00369{left:579.300000px;}
.x12d_c00369{left:581.100000px;}
.xcd_c00369{left:592.200000px;}
.xf1_c00369{left:594.300000px;}
.xd6_c00369{left:596.700000px;}
.x125_c00369{left:600.000000px;}
.xac_c00369{left:601.050000px;}
.xc4_c00369{left:602.550000px;}
.xe4_c00369{left:605.400000px;}
.xca_c00369{left:608.400000px;}
.xd9_c00369{left:609.600000px;}
.xf2_c00369{left:610.800000px;}
.xb1_c00369{left:615.900000px;}
.x116_c00369{left:617.400000px;}
.xe8_c00369{left:619.650000px;}
.x11a_c00369{left:620.700000px;}
.xb3_c00369{left:623.400000px;}
.xc3_c00369{left:625.500000px;}
.xfe_c00369{left:628.500000px;}
.xba_c00369{left:629.700000px;}
.x106_c00369{left:631.200000px;}
.xfb_c00369{left:634.350000px;}
.xf9_c00369{left:636.000000px;}
.xbd_c00369{left:637.500000px;}
.x10d_c00369{left:639.000000px;}
.xda_c00369{left:641.700000px;}
.x11c_c00369{left:644.700000px;}
.xa4_c00369{left:646.200000px;}
.xb4_c00369{left:648.300000px;}
.xdd_c00369{left:651.300000px;}
.xb2_c00369{left:652.950000px;}
.xed_c00369{left:655.500000px;}
.xfa_c00369{left:656.550000px;}
.x11e_c00369{left:657.750000px;}
.xeb_c00369{left:659.250000px;}
.xf4_c00369{left:661.650000px;}
.x123_c00369{left:667.050000px;}
.xc5_c00369{left:669.150000px;}
.xad_c00369{left:670.500000px;}
.xcb_c00369{left:672.150000px;}
.xf6_c00369{left:674.850000px;}
.xd7_c00369{left:677.700000px;}
.xbe_c00369{left:681.000000px;}
.xe5_c00369{left:683.850000px;}
.xa5_c00369{left:685.500000px;}
.xae_c00369{left:687.000000px;}
.x126_c00369{left:688.500000px;}
.x10b_c00369{left:690.300000px;}
.x10e_c00369{left:693.000000px;}
.x107_c00369{left:697.500000px;}
.x111_c00369{left:698.850000px;}
.xcc_c00369{left:701.250000px;}
.xb5_c00369{left:703.050000px;}
.xd2_c00369{left:705.750000px;}
.xa6_c00369{left:707.400000px;}
.xaf_c00369{left:708.600000px;}
.x113_c00369{left:710.700000px;}
.xf3_c00369{left:711.900000px;}
.xf5_c00369{left:715.650000px;}
.xde_c00369{left:717.600000px;}
.xbf_c00369{left:719.550000px;}
.xb6_c00369{left:721.350000px;}
.xff_c00369{left:722.400000px;}
.xce_c00369{left:724.650000px;}
.xee_c00369{left:726.750000px;}
.x117_c00369{left:727.950000px;}
.x103_c00369{left:731.700000px;}
.x10f_c00369{left:732.900000px;}
.xec_c00369{left:735.600000px;}
.xfc_c00369{left:738.750000px;}
.xc6_c00369{left:740.400000px;}
.x10c_c00369{left:742.200000px;}
.xd3_c00369{left:744.300000px;}
.xe0_c00369{left:745.800000px;}
.xbb_c00369{left:748.200000px;}
.x110_c00369{left:750.150000px;}
.x11b_c00369{left:751.350000px;}
.x100_c00369{left:753.300000px;}
.x121_c00369{left:756.000000px;}
.xdb_c00369{left:757.950000px;}
.xf7_c00369{left:760.950000px;}
.xc0_c00369{left:762.000000px;}
.xa7_c00369{left:764.700000px;}
.xef_c00369{left:766.350000px;}
.x11f_c00369{left:769.800000px;}
.xe9_c00369{left:773.400000px;}
.x104_c00369{left:775.200000px;}
.x12e_c00369{left:781.650000px;}
.xdc_c00369{left:783.150000px;}
.x114_c00369{left:784.500000px;}
.xa8_c00369{left:787.800000px;}
.x101_c00369{left:790.350000px;}
.x12c_c00369{left:792.450000px;}
.x115_c00369{left:796.800000px;}
.xfd_c00369{left:798.450000px;}
.xc7_c00369{left:799.500000px;}
.xcf_c00369{left:801.000000px;}
.x120_c00369{left:802.200000px;}
.xa9_c00369{left:804.750000px;}
.xdf_c00369{left:809.700000px;}
.x102_c00369{left:811.500000px;}
.xc1_c00369{left:814.950000px;}
.xea_c00369{left:818.400000px;}
.xb7_c00369{left:820.650000px;}
.xe1_c00369{left:824.550000px;}
.xd8_c00369{left:825.600000px;}
.xd4_c00369{left:828.150000px;}
.x108_c00369{left:829.650000px;}
.x127_c00369{left:831.150000px;}
.xf8_c00369{left:832.950000px;}
.x124_c00369{left:835.800000px;}
.x118_c00369{left:837.000000px;}
.xaa_c00369{left:838.650000px;}
.x112_c00369{left:839.700000px;}
.x129_c00369{left:841.350000px;}
.xe6_c00369{left:842.700000px;}
.x109_c00369{left:843.750000px;}
.xb8_c00369{left:845.100000px;}
.xe2_c00369{left:846.150000px;}
.xd5_c00369{left:850.050000px;}
.xc2_c00369{left:851.250000px;}
.xe7_c00369{left:853.200000px;}
.xd0_c00369{left:855.750000px;}
.xc8_c00369{left:857.100000px;}
.xf0_c00369{left:858.600000px;}
.x119_c00369{left:862.500000px;}
.xab_c00369{left:863.850000px;}
.xc9_c00369{left:865.800000px;}
.xe3_c00369{left:867.450000px;}
.xd1_c00369{left:872.700000px;}
.x10a_c00369{left:874.050000px;}
.x105_c00369{left:876.750000px;}
.x12a_c00369{left:878.400000px;}
.x11d_c00369{left:880.500000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws6_c00369{word-spacing:-14.790932pt;}
.ws7_c00369{word-spacing:-10.146341pt;}
.ws8_c00369{word-spacing:-7.530864pt;}
.ws5_c00369{word-spacing:-5.686067pt;}
.ws4_c00369{word-spacing:-0.064147pt;}
.ws9_c00369{word-spacing:0.000000pt;}
.ws0_c00369{word-spacing:1.696275pt;}
.ws2_c00369{word-spacing:23.492404pt;}
.ws3_c00369{word-spacing:32.000000pt;}
.ws1_c00369{word-spacing:35.333333pt;}
._1_c00369{width:64.333333pt;}
._0_c00369{width:296.000000pt;}
.fs6_c00369{font-size:26.666667pt;}
.fs4_c00369{font-size:48.000000pt;}
.fs3_c00369{font-size:53.333333pt;}
.fs1_c00369{font-size:58.666667pt;}
.fs2_c00369{font-size:64.000000pt;}
.fs0_c00369{font-size:74.666667pt;}
.fs5_c00369{font-size:80.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y63_c00369{bottom:166.400000pt;}
.y34_c00369{bottom:166.533333pt;}
.y62_c00369{bottom:179.200000pt;}
.y33_c00369{bottom:182.800000pt;}
.y61_c00369{bottom:192.000000pt;}
.y32_c00369{bottom:198.800000pt;}
.y60_c00369{bottom:204.800000pt;}
.y31_c00369{bottom:214.133333pt;}
.y5f_c00369{bottom:216.933333pt;}
.y30_c00369{bottom:230.133333pt;}
.y2f_c00369{bottom:245.466667pt;}
.y5e_c00369{bottom:254.133333pt;}
.y2e_c00369{bottom:261.466667pt;}
.y5d_c00369{bottom:268.133333pt;}
.y2d_c00369{bottom:276.800000pt;}
.y5c_c00369{bottom:287.733333pt;}
.y2c_c00369{bottom:292.800000pt;}
.y5b_c00369{bottom:303.733333pt;}
.y2b_c00369{bottom:308.800000pt;}
.y5a_c00369{bottom:322.933333pt;}
.y2a_c00369{bottom:324.800000pt;}
.y59_c00369{bottom:339.200000pt;}
.y29_c00369{bottom:340.800000pt;}
.y28_c00369{bottom:356.533333pt;}
.y58_c00369{bottom:358.666667pt;}
.y27_c00369{bottom:372.533333pt;}
.y57_c00369{bottom:374.666667pt;}
.y26_c00369{bottom:388.533333pt;}
.y56_c00369{bottom:394.533333pt;}
.y25_c00369{bottom:409.600000pt;}
.y55_c00369{bottom:414.000000pt;}
.y24_c00369{bottom:423.866667pt;}
.y54_c00369{bottom:429.733333pt;}
.y23_c00369{bottom:436.400000pt;}
.y53_c00369{bottom:449.600000pt;}
.y22_c00369{bottom:450.533333pt;}
.y21_c00369{bottom:466.800000pt;}
.y52_c00369{bottom:469.066667pt;}
.y20_c00369{bottom:483.466667pt;}
.y51_c00369{bottom:485.066667pt;}
.y1f_c00369{bottom:499.200000pt;}
.y50_c00369{bottom:500.800000pt;}
.y1e_c00369{bottom:514.933333pt;}
.y4f_c00369{bottom:516.533333pt;}
.y4e_c00369{bottom:532.533333pt;}
.y1d_c00369{bottom:537.733333pt;}
.y4d_c00369{bottom:552.000000pt;}
.y1c_c00369{bottom:554.400000pt;}
.y4c_c00369{bottom:568.000000pt;}
.y1b_c00369{bottom:570.133333pt;}
.y4b_c00369{bottom:584.000000pt;}
.y1a_c00369{bottom:586.133333pt;}
.y19_c00369{bottom:601.866667pt;}
.y4a_c00369{bottom:603.466667pt;}
.y18_c00369{bottom:617.866667pt;}
.y49_c00369{bottom:619.466667pt;}
.y17_c00369{bottom:633.600000pt;}
.y48_c00369{bottom:639.200000pt;}
.y16_c00369{bottom:649.600000pt;}
.y47_c00369{bottom:654.933333pt;}
.y15_c00369{bottom:665.600000pt;}
.y46_c00369{bottom:670.933333pt;}
.y14_c00369{bottom:681.333333pt;}
.y45_c00369{bottom:686.666667pt;}
.y13_c00369{bottom:704.266667pt;}
.y44_c00369{bottom:705.866667pt;}
.y43_c00369{bottom:725.600000pt;}
.y12_c00369{bottom:728.000000pt;}
.y42_c00369{bottom:741.333333pt;}
.y11_c00369{bottom:743.733333pt;}
.y41_c00369{bottom:757.333333pt;}
.y10_c00369{bottom:762.533333pt;}
.y40_c00369{bottom:773.066667pt;}
.yf_c00369{bottom:779.200000pt;}
.ye_c00369{bottom:794.933333pt;}
.y3f_c00369{bottom:798.133333pt;}
.y3e_c00369{bottom:805.466667pt;}
.yd_c00369{bottom:810.933333pt;}
.y3d_c00369{bottom:814.400000pt;}
.y3c_c00369{bottom:823.066667pt;}
.yc_c00369{bottom:826.666667pt;}
.yb_c00369{bottom:842.400000pt;}
.y3b_c00369{bottom:846.666667pt;}
.ya_c00369{bottom:858.133333pt;}
.y3a_c00369{bottom:862.400000pt;}
.y9_c00369{bottom:874.133333pt;}
.y8_c00369{bottom:890.133333pt;}
.y7_c00369{bottom:905.866667pt;}
.y39_c00369{bottom:917.466667pt;}
.y6_c00369{bottom:921.866667pt;}
.y38_c00369{bottom:933.466667pt;}
.y5_c00369{bottom:941.466667pt;}
.y37_c00369{bottom:952.933333pt;}
.y4_c00369{bottom:957.466667pt;}
.y36_c00369{bottom:972.400000pt;}
.y3_c00369{bottom:973.466667pt;}
.y2_c00369{bottom:989.466667pt;}
.y35_c00369{bottom:991.333333pt;}
.y1_c00369{bottom:1013.066667pt;}
.h8_c00369{height:26.666667pt;}
.h6_c00369{height:48.000000pt;}
.h5_c00369{height:53.333333pt;}
.h3_c00369{height:58.666667pt;}
.h4_c00369{height:64.000000pt;}
.h2_c00369{height:74.666667pt;}
.h7_c00369{height:80.000000pt;}
.h1_c00369{height:1126.000000pt;}
.h0_c00369{height:1126.079916pt;}
.w0_c00369{width:853.760009pt;}
.w1_c00369{width:854.000000pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:176.933333pt;}
.x1c_c00369{left:177.866667pt;}
.x5e_c00369{left:178.933333pt;}
.x54_c00369{left:183.066667pt;}
.x83_c00369{left:189.600000pt;}
.x72_c00369{left:191.066667pt;}
.x3_c00369{left:192.666667pt;}
.x1b_c00369{left:194.266667pt;}
.x75_c00369{left:202.933333pt;}
.x63_c00369{left:210.266667pt;}
.x2c_c00369{left:212.133333pt;}
.x49_c00369{left:214.133333pt;}
.x7f_c00369{left:217.200000pt;}
.x73_c00369{left:219.866667pt;}
.x97_c00369{left:222.533333pt;}
.xd_c00369{left:223.466667pt;}
.x23_c00369{left:224.933333pt;}
.x32_c00369{left:226.533333pt;}
.x2d_c00369{left:227.466667pt;}
.x1d_c00369{left:230.666667pt;}
.x4_c00369{left:233.600000pt;}
.x68_c00369{left:235.466667pt;}
.x3e_c00369{left:236.666667pt;}
.x15_c00369{left:237.733333pt;}
.x43_c00369{left:239.200000pt;}
.xe_c00369{left:240.800000pt;}
.x5f_c00369{left:242.666667pt;}
.x4a_c00369{left:243.600000pt;}
.x90_c00369{left:245.466667pt;}
.x1e_c00369{left:247.333333pt;}
.x5_c00369{left:249.600000pt;}
.xa2_c00369{left:250.533333pt;}
.x8a_c00369{left:252.133333pt;}
.x6c_c00369{left:253.333333pt;}
.x98_c00369{left:255.200000pt;}
.x44_c00369{left:256.133333pt;}
.x5d_c00369{left:259.200000pt;}
.x33_c00369{left:260.133333pt;}
.x37_c00369{left:262.666667pt;}
.x9a_c00369{left:263.600000pt;}
.x1f_c00369{left:265.600000pt;}
.x96_c00369{left:266.666667pt;}
.x24_c00369{left:269.066667pt;}
.x3f_c00369{left:270.933333pt;}
.x84_c00369{left:271.866667pt;}
.x55_c00369{left:272.933333pt;}
.x45_c00369{left:274.666667pt;}
.x9f_c00369{left:277.066667pt;}
.x38_c00369{left:278.000000pt;}
.x91_c00369{left:279.733333pt;}
.xf_c00369{left:281.466667pt;}
.x69_c00369{left:282.800000pt;}
.x64_c00369{left:284.800000pt;}
.x50_c00369{left:286.800000pt;}
.x40_c00369{left:289.200000pt;}
.x56_c00369{left:291.200000pt;}
.x76_c00369{left:292.266667pt;}
.x6d_c00369{left:293.600000pt;}
.x4b_c00369{left:294.800000pt;}
.x39_c00369{left:296.533333pt;}
.x20_c00369{left:299.866667pt;}
.x34_c00369{left:300.800000pt;}
.x6a_c00369{left:303.333333pt;}
.x16_c00369{left:305.600000pt;}
.xa0_c00369{left:307.200000pt;}
.x65_c00369{left:308.800000pt;}
.x46_c00369{left:310.800000pt;}
.x51_c00369{left:313.066667pt;}
.x85_c00369{left:314.800000pt;}
.x6_c00369{left:315.866667pt;}
.x25_c00369{left:317.066667pt;}
.x60_c00369{left:318.133333pt;}
.x92_c00369{left:319.200000pt;}
.x9d_c00369{left:320.800000pt;}
.x2e_c00369{left:321.866667pt;}
.x21_c00369{left:323.866667pt;}
.x86_c00369{left:325.066667pt;}
.x4c_c00369{left:326.533333pt;}
.x47_c00369{left:328.666667pt;}
.x52_c00369{left:329.733333pt;}
.x7d_c00369{left:330.800000pt;}
.x10_c00369{left:332.000000pt;}
.x6e_c00369{left:332.933333pt;}
.x3a_c00369{left:334.000000pt;}
.x26_c00369{left:336.533333pt;}
.x17_c00369{left:337.866667pt;}
.x82_c00369{left:339.200000pt;}
.x7_c00369{left:340.133333pt;}
.x57_c00369{left:342.133333pt;}
.x22_c00369{left:344.000000pt;}
.x74_c00369{left:345.733333pt;}
.x8d_c00369{left:347.466667pt;}
.x2f_c00369{left:348.800000pt;}
.x66_c00369{left:352.000000pt;}
.x3b_c00369{left:353.200000pt;}
.x77_c00369{left:355.333333pt;}
.x79_c00369{left:356.800000pt;}
.x27_c00369{left:358.266667pt;}
.x6f_c00369{left:359.466667pt;}
.x5a_c00369{left:361.733333pt;}
.x95_c00369{left:363.600000pt;}
.x8e_c00369{left:364.800000pt;}
.x4d_c00369{left:366.800000pt;}
.x8_c00369{left:368.666667pt;}
.x18_c00369{left:369.866667pt;}
.x78_c00369{left:371.066667pt;}
.x11_c00369{left:372.933333pt;}
.x89_c00369{left:374.933333pt;}
.x9_c00369{left:377.600000pt;}
.x8c_c00369{left:378.800000pt;}
.x30_c00369{left:379.866667pt;}
.x70_c00369{left:382.133333pt;}
.x4e_c00369{left:383.733333pt;}
.x61_c00369{left:384.666667pt;}
.xa1_c00369{left:386.533333pt;}
.x12_c00369{left:389.600000pt;}
.x62_c00369{left:391.333333pt;}
.x58_c00369{left:392.400000pt;}
.xa_c00369{left:393.600000pt;}
.x7a_c00369{left:396.800000pt;}
.x2_c00369{left:399.600000pt;}
.x35_c00369{left:400.933333pt;}
.x71_c00369{left:402.266667pt;}
.x28_c00369{left:403.733333pt;}
.x48_c00369{left:405.466667pt;}
.x9e_c00369{left:406.533333pt;}
.x9b_c00369{left:408.400000pt;}
.x6b_c00369{left:411.866667pt;}
.x13_c00369{left:413.333333pt;}
.x80_c00369{left:415.200000pt;}
.x5b_c00369{left:416.400000pt;}
.xb_c00369{left:418.266667pt;}
.x29_c00369{left:420.400000pt;}
.x41_c00369{left:422.933333pt;}
.x9c_c00369{left:423.866667pt;}
.x53_c00369{left:426.000000pt;}
.x3c_c00369{left:427.466667pt;}
.x93_c00369{left:428.533333pt;}
.x67_c00369{left:430.400000pt;}
.x19_c00369{left:433.600000pt;}
.xc_c00369{left:435.600000pt;}
.x7e_c00369{left:437.733333pt;}
.x2a_c00369{left:439.600000pt;}
.x88_c00369{left:440.533333pt;}
.x94_c00369{left:442.000000pt;}
.x59_c00369{left:443.600000pt;}
.x99_c00369{left:445.333333pt;}
.x31_c00369{left:446.400000pt;}
.x8b_c00369{left:447.333333pt;}
.x1a_c00369{left:450.533333pt;}
.x3d_c00369{left:452.400000pt;}
.x5c_c00369{left:454.800000pt;}
.x2b_c00369{left:456.266667pt;}
.x7b_c00369{left:458.133333pt;}
.x81_c00369{left:460.000000pt;}
.x36_c00369{left:461.066667pt;}
.x42_c00369{left:462.933333pt;}
.x87_c00369{left:464.800000pt;}
.x7c_c00369{left:466.133333pt;}
.x4f_c00369{left:467.333333pt;}
.x14_c00369{left:473.866667pt;}
.x8f_c00369{left:480.266667pt;}
.x128_c00369{left:491.466667pt;}
.xbc_c00369{left:494.400000pt;}
.xb0_c00369{left:495.333333pt;}
.x122_c00369{left:507.466667pt;}
.xb9_c00369{left:510.133333pt;}
.xa3_c00369{left:511.733333pt;}
.x12b_c00369{left:514.933333pt;}
.x12d_c00369{left:516.533333pt;}
.xcd_c00369{left:526.400000pt;}
.xf1_c00369{left:528.266667pt;}
.xd6_c00369{left:530.400000pt;}
.x125_c00369{left:533.333333pt;}
.xac_c00369{left:534.266667pt;}
.xc4_c00369{left:535.600000pt;}
.xe4_c00369{left:538.133333pt;}
.xca_c00369{left:540.800000pt;}
.xd9_c00369{left:541.866667pt;}
.xf2_c00369{left:542.933333pt;}
.xb1_c00369{left:547.466667pt;}
.x116_c00369{left:548.800000pt;}
.xe8_c00369{left:550.800000pt;}
.x11a_c00369{left:551.733333pt;}
.xb3_c00369{left:554.133333pt;}
.xc3_c00369{left:556.000000pt;}
.xfe_c00369{left:558.666667pt;}
.xba_c00369{left:559.733333pt;}
.x106_c00369{left:561.066667pt;}
.xfb_c00369{left:563.866667pt;}
.xf9_c00369{left:565.333333pt;}
.xbd_c00369{left:566.666667pt;}
.x10d_c00369{left:568.000000pt;}
.xda_c00369{left:570.400000pt;}
.x11c_c00369{left:573.066667pt;}
.xa4_c00369{left:574.400000pt;}
.xb4_c00369{left:576.266667pt;}
.xdd_c00369{left:578.933333pt;}
.xb2_c00369{left:580.400000pt;}
.xed_c00369{left:582.666667pt;}
.xfa_c00369{left:583.600000pt;}
.x11e_c00369{left:584.666667pt;}
.xeb_c00369{left:586.000000pt;}
.xf4_c00369{left:588.133333pt;}
.x123_c00369{left:592.933333pt;}
.xc5_c00369{left:594.800000pt;}
.xad_c00369{left:596.000000pt;}
.xcb_c00369{left:597.466667pt;}
.xf6_c00369{left:599.866667pt;}
.xd7_c00369{left:602.400000pt;}
.xbe_c00369{left:605.333333pt;}
.xe5_c00369{left:607.866667pt;}
.xa5_c00369{left:609.333333pt;}
.xae_c00369{left:610.666667pt;}
.x126_c00369{left:612.000000pt;}
.x10b_c00369{left:613.600000pt;}
.x10e_c00369{left:616.000000pt;}
.x107_c00369{left:620.000000pt;}
.x111_c00369{left:621.200000pt;}
.xcc_c00369{left:623.333333pt;}
.xb5_c00369{left:624.933333pt;}
.xd2_c00369{left:627.333333pt;}
.xa6_c00369{left:628.800000pt;}
.xaf_c00369{left:629.866667pt;}
.x113_c00369{left:631.733333pt;}
.xf3_c00369{left:632.800000pt;}
.xf5_c00369{left:636.133333pt;}
.xde_c00369{left:637.866667pt;}
.xbf_c00369{left:639.600000pt;}
.xb6_c00369{left:641.200000pt;}
.xff_c00369{left:642.133333pt;}
.xce_c00369{left:644.133333pt;}
.xee_c00369{left:646.000000pt;}
.x117_c00369{left:647.066667pt;}
.x103_c00369{left:650.400000pt;}
.x10f_c00369{left:651.466667pt;}
.xec_c00369{left:653.866667pt;}
.xfc_c00369{left:656.666667pt;}
.xc6_c00369{left:658.133333pt;}
.x10c_c00369{left:659.733333pt;}
.xd3_c00369{left:661.600000pt;}
.xe0_c00369{left:662.933333pt;}
.xbb_c00369{left:665.066667pt;}
.x110_c00369{left:666.800000pt;}
.x11b_c00369{left:667.866667pt;}
.x100_c00369{left:669.600000pt;}
.x121_c00369{left:672.000000pt;}
.xdb_c00369{left:673.733333pt;}
.xf7_c00369{left:676.400000pt;}
.xc0_c00369{left:677.333333pt;}
.xa7_c00369{left:679.733333pt;}
.xef_c00369{left:681.200000pt;}
.x11f_c00369{left:684.266667pt;}
.xe9_c00369{left:687.466667pt;}
.x104_c00369{left:689.066667pt;}
.x12e_c00369{left:694.800000pt;}
.xdc_c00369{left:696.133333pt;}
.x114_c00369{left:697.333333pt;}
.xa8_c00369{left:700.266667pt;}
.x101_c00369{left:702.533333pt;}
.x12c_c00369{left:704.400000pt;}
.x115_c00369{left:708.266667pt;}
.xfd_c00369{left:709.733333pt;}
.xc7_c00369{left:710.666667pt;}
.xcf_c00369{left:712.000000pt;}
.x120_c00369{left:713.066667pt;}
.xa9_c00369{left:715.333333pt;}
.xdf_c00369{left:719.733333pt;}
.x102_c00369{left:721.333333pt;}
.xc1_c00369{left:724.400000pt;}
.xea_c00369{left:727.466667pt;}
.xb7_c00369{left:729.466667pt;}
.xe1_c00369{left:732.933333pt;}
.xd8_c00369{left:733.866667pt;}
.xd4_c00369{left:736.133333pt;}
.x108_c00369{left:737.466667pt;}
.x127_c00369{left:738.800000pt;}
.xf8_c00369{left:740.400000pt;}
.x124_c00369{left:742.933333pt;}
.x118_c00369{left:744.000000pt;}
.xaa_c00369{left:745.466667pt;}
.x112_c00369{left:746.400000pt;}
.x129_c00369{left:747.866667pt;}
.xe6_c00369{left:749.066667pt;}
.x109_c00369{left:750.000000pt;}
.xb8_c00369{left:751.200000pt;}
.xe2_c00369{left:752.133333pt;}
.xd5_c00369{left:755.600000pt;}
.xc2_c00369{left:756.666667pt;}
.xe7_c00369{left:758.400000pt;}
.xd0_c00369{left:760.666667pt;}
.xc8_c00369{left:761.866667pt;}
.xf0_c00369{left:763.200000pt;}
.x119_c00369{left:766.666667pt;}
.xab_c00369{left:767.866667pt;}
.xc9_c00369{left:769.600000pt;}
.xe3_c00369{left:771.066667pt;}
.xd1_c00369{left:775.733333pt;}
.x10a_c00369{left:776.933333pt;}
.x105_c00369{left:779.333333pt;}
.x12a_c00369{left:780.800000pt;}
.x11d_c00369{left:782.666667pt;}
}





/* 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_c00370 {
    display:none;
  }
  .loading-indicator_c00370.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00370 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_c00370 { 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_c00370" -> "#page-container .classname_c00370")
 */
.pf_c00370 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00370 { /* 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_c00370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00370 { /* 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_c00370 { /* 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_c00370 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00370 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00370 {overflow:visible;}
  }
}
.c_c00370 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00370 { /* 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_c00370:after { /* webkit #35443 */
  content: '';
}
.t_c00370:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00370 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 */
}
.__c00370 { /* 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_c00370 { /* info for Javascript */
  display:none;
}
.l_c00370 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00370 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00370 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00370: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_c00370 {
    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_c00370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00370.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_c00370 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00370;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.000000;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;}
.m43_c00370{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.md7_c00370{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00370{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m31_c00370{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00370{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00370{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00370{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m119_c00370{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m62_c00370{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00370{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00370{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00370{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00370{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.meb_c00370{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m63_c00370{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.me6_c00370{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00370{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m112_c00370{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m76_c00370{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00370{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m61_c00370{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00370{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m105_c00370{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00370{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m100_c00370{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00370{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00370{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m29_c00370{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m101_c00370{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m12_c00370{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m55_c00370{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00370{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00370{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mda_c00370{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m23_c00370{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md4_c00370{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m7_c00370{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m111_c00370{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00370{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00370{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mde_c00370{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m28_c00370{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me7_c00370{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m59_c00370{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m92_c00370{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m126_c00370{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00370{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m96_c00370{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m10_c00370{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00370{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m39_c00370{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m41_c00370{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me1_c00370{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00370{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mec_c00370{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00370{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00370{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00370{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mef_c00370{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m26_c00370{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mba_c00370{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00370{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m37_c00370{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00370{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00370{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m103_c00370{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mae_c00370{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m36_c00370{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m30_c00370{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00370{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m114_c00370{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mea_c00370{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00370{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00370{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00370{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00370{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mad_c00370{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m32_c00370{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00370{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00370{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00370{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00370{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00370{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00370{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m107_c00370{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00370{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00370{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00370{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00370{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00370{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.me_c00370{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m25_c00370{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00370{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00370{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00370{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m93_c00370{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m68_c00370{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mee_c00370{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00370{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00370{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00370{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00370{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00370{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00370{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m129_c00370{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m95_c00370{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00370{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00370{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00370{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.md2_c00370{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m69_c00370{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf_c00370{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00370{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m45_c00370{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m109_c00370{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00370{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m57_c00370{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00370{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m65_c00370{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m110_c00370{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00370{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00370{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md1_c00370{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00370{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00370{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m54_c00370{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m21_c00370{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m42_c00370{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mca_c00370{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00370{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00370{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m127_c00370{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m81_c00370{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me3_c00370{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00370{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m38_c00370{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mac_c00370{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00370{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me8_c00370{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m128_c00370{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m44_c00370{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m84_c00370{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00370{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00370{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00370{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me9_c00370{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m13_c00370{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00370{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me5_c00370{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00370{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00370{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.ma_c00370{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m97_c00370{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m58_c00370{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m48_c00370{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m78_c00370{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00370{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00370{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m66_c00370{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m24_c00370{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00370{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00370{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m124_c00370{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m27_c00370{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m90_c00370{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00370{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m11_c00370{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00370{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m77_c00370{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m72_c00370{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mb_c00370{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00370{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9_c00370{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md0_c00370{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m108_c00370{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m17_c00370{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00370{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m116_c00370{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00370{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00370{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00370{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00370{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me0_c00370{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00370{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m83_c00370{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m40_c00370{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m85_c00370{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m34_c00370{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00370{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m49_c00370{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m118_c00370{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00370{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md9_c00370{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.maf_c00370{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m99_c00370{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m33_c00370{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.maa_c00370{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00370{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00370{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m35_c00370{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00370{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m122_c00370{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00370{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m82_c00370{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00370{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00370{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00370{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m14_c00370{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md3_c00370{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m16_c00370{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m53_c00370{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mab_c00370{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mce_c00370{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.md6_c00370{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00370{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00370{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00370{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m71_c00370{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m117_c00370{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00370{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00370{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m98_c00370{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00370{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m91_c00370{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m20_c00370{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00370{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m74_c00370{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00370{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00370{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md8_c00370{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mff_c00370{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m56_c00370{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me4_c00370{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m64_c00370{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m88_c00370{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m79_c00370{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m22_c00370{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m47_c00370{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me2_c00370{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m67_c00370{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m19_c00370{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m52_c00370{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m125_c00370{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00370{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00370{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00370{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00370{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m104_c00370{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00370{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00370{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00370{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8_c00370{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m123_c00370{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);}
.m120_c00370{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.med_c00370{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00370{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m73_c00370{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m60_c00370{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00370{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00370{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00370{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m102_c00370{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00370{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m46_c00370{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m106_c00370{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m89_c00370{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md5_c00370{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m113_c00370{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m94_c00370{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00370{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00370{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00370{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m75_c00370{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m51_c00370{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m15_c00370{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m121_c00370{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m115_c00370{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00370{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00370{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m50_c00370{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00370{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00370{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m87_c00370{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m80_c00370{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m86_c00370{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00370{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);}
.m5_c00370{transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);}
.m6_c00370{transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.433750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433750,0.000000,0.000000,0.250000,0,0);}
.m70_c00370{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00370{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m18_c00370{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00370{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls0_c00370{letter-spacing:0.000000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{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__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00370{word-spacing:-17.142857px;}
.ws7_c00370{word-spacing:-15.557951px;}
.wsa_c00370{word-spacing:-11.714777px;}
.wsc_c00370{word-spacing:-10.277778px;}
.ws9_c00370{word-spacing:-8.863636px;}
.ws1_c00370{word-spacing:-5.000000px;}
.ws8_c00370{word-spacing:-4.255014px;}
.wsd_c00370{word-spacing:0.000000px;}
.ws0_c00370{word-spacing:17.424242px;}
.ws2_c00370{word-spacing:19.043112px;}
.ws5_c00370{word-spacing:22.142857px;}
.ws6_c00370{word-spacing:25.714286px;}
.ws4_c00370{word-spacing:40.000000px;}
.ws3_c00370{word-spacing:59.721619px;}
._2_c00370{width:52.142857px;}
._1_c00370{width:59.285714px;}
._0_c00370{width:74.166667px;}
.fc0_c00370{color:transparent;}
.fs5_c00370{font-size:54.000000px;}
.fs3_c00370{font-size:60.000000px;}
.fs2_c00370{font-size:66.000000px;}
.fs4_c00370{font-size:72.000000px;}
.fs0_c00370{font-size:78.000000px;}
.fs1_c00370{font-size:90.000000px;}
.y0_c00370{bottom:0.000000px;}
.y38_c00370{bottom:185.400000px;}
.y6b_c00370{bottom:188.700000px;}
.y37_c00370{bottom:201.600000px;}
.y6a_c00370{bottom:203.400000px;}
.y36_c00370{bottom:216.300000px;}
.y69_c00370{bottom:217.800000px;}
.y68_c00370{bottom:236.100000px;}
.y67_c00370{bottom:250.200000px;}
.y66_c00370{bottom:265.350000px;}
.y35_c00370{bottom:268.500000px;}
.y65_c00370{bottom:279.000000px;}
.y34_c00370{bottom:288.300000px;}
.y64_c00370{bottom:293.400000px;}
.y33_c00370{bottom:306.000000px;}
.y63_c00370{bottom:308.100000px;}
.y62_c00370{bottom:322.200000px;}
.y32_c00370{bottom:323.700000px;}
.y31_c00370{bottom:340.950000px;}
.y30_c00370{bottom:358.950000px;}
.y2f_c00370{bottom:376.650000px;}
.y61_c00370{bottom:377.250000px;}
.y2e_c00370{bottom:394.650000px;}
.y60_c00370{bottom:395.250000px;}
.y5f_c00370{bottom:412.500000px;}
.y2d_c00370{bottom:412.650000px;}
.y5e_c00370{bottom:430.200000px;}
.y2c_c00370{bottom:430.950000px;}
.y5d_c00370{bottom:447.900000px;}
.y2b_c00370{bottom:448.200000px;}
.y2a_c00370{bottom:465.900000px;}
.y5c_c00370{bottom:474.000000px;}
.y29_c00370{bottom:484.200000px;}
.y5b_c00370{bottom:492.000000px;}
.y28_c00370{bottom:502.200000px;}
.y5a_c00370{bottom:510.000000px;}
.y27_c00370{bottom:520.200000px;}
.y59_c00370{bottom:527.700000px;}
.y26_c00370{bottom:537.900000px;}
.y58_c00370{bottom:546.000000px;}
.y25_c00370{bottom:555.900000px;}
.y57_c00370{bottom:563.700000px;}
.y24_c00370{bottom:573.900000px;}
.y56_c00370{bottom:581.700000px;}
.y23_c00370{bottom:591.900000px;}
.y55_c00370{bottom:599.700000px;}
.y22_c00370{bottom:615.900000px;}
.y54_c00370{bottom:617.400000px;}
.y21_c00370{bottom:631.050000px;}
.y53_c00370{bottom:639.150000px;}
.y20_c00370{bottom:645.450000px;}
.y52_c00370{bottom:657.150000px;}
.y1f_c00370{bottom:659.850000px;}
.y51_c00370{bottom:674.850000px;}
.y1e_c00370{bottom:678.600000px;}
.y1d_c00370{bottom:691.500000px;}
.y50_c00370{bottom:692.550000px;}
.y1c_c00370{bottom:707.400000px;}
.y4f_c00370{bottom:710.550000px;}
.y1b_c00370{bottom:720.000000px;}
.y4e_c00370{bottom:728.550000px;}
.y1a_c00370{bottom:732.900000px;}
.y4d_c00370{bottom:746.250000px;}
.y19_c00370{bottom:748.800000px;}
.y4c_c00370{bottom:763.950000px;}
.y18_c00370{bottom:764.850000px;}
.y17_c00370{bottom:777.150000px;}
.y4b_c00370{bottom:781.950000px;}
.y16_c00370{bottom:794.100000px;}
.y4a_c00370{bottom:799.950000px;}
.y15_c00370{bottom:808.500000px;}
.y49_c00370{bottom:817.650000px;}
.y14_c00370{bottom:821.850000px;}
.y13_c00370{bottom:834.450000px;}
.y48_c00370{bottom:835.350000px;}
.y12_c00370{bottom:848.850000px;}
.y47_c00370{bottom:854.400000px;}
.y11_c00370{bottom:864.900000px;}
.y46_c00370{bottom:870.900000px;}
.y10_c00370{bottom:877.800000px;}
.y45_c00370{bottom:888.600000px;}
.yf_c00370{bottom:892.500000px;}
.y44_c00370{bottom:906.300000px;}
.ye_c00370{bottom:909.300000px;}
.y43_c00370{bottom:924.300000px;}
.yd_c00370{bottom:924.600000px;}
.y42_c00370{bottom:942.000000px;}
.yc_c00370{bottom:946.200000px;}
.y41_c00370{bottom:960.000000px;}
.yb_c00370{bottom:963.900000px;}
.y40_c00370{bottom:977.700000px;}
.ya_c00370{bottom:981.600000px;}
.y3f_c00370{bottom:995.700000px;}
.y9_c00370{bottom:999.300000px;}
.y8_c00370{bottom:1017.000000px;}
.y3e_c00370{bottom:1022.700000px;}
.y3d_c00370{bottom:1040.400000px;}
.y7_c00370{bottom:1040.700000px;}
.y6_c00370{bottom:1060.800000px;}
.y3c_c00370{bottom:1066.650000px;}
.y5_c00370{bottom:1078.800000px;}
.y3b_c00370{bottom:1084.650000px;}
.y4_c00370{bottom:1096.500000px;}
.y3a_c00370{bottom:1103.700000px;}
.y3_c00370{bottom:1118.850000px;}
.y39_c00370{bottom:1120.650000px;}
.y2_c00370{bottom:1146.300000px;}
.y1_c00370{bottom:1146.600000px;}
.h7_c00370{height:54.000000px;}
.h5_c00370{height:60.000000px;}
.h4_c00370{height:66.000000px;}
.h6_c00370{height:72.000000px;}
.h2_c00370{height:78.000000px;}
.h3_c00370{height:90.000000px;}
.h0_c00370{height:1272.600036px;}
.h1_c00370{height:1272.750000px;}
.w0_c00370{width:960.480010px;}
.w1_c00370{width:960.750000px;}
.x0_c00370{left:0.000000px;}
.xc_c00370{left:60.450000px;}
.x80_c00370{left:63.300000px;}
.xae_c00370{left:65.850000px;}
.x4b_c00370{left:74.550000px;}
.x2f_c00370{left:76.350000px;}
.x1a_c00370{left:77.550000px;}
.x21_c00370{left:80.100000px;}
.x94_c00370{left:81.450000px;}
.x86_c00370{left:82.500000px;}
.xa3_c00370{left:83.700000px;}
.xaa_c00370{left:84.750000px;}
.x51_c00370{left:88.950000px;}
.x38_c00370{left:90.300000px;}
.x6c_c00370{left:91.500000px;}
.x5c_c00370{left:93.600000px;}
.x12_c00370{left:95.400000px;}
.xd_c00370{left:101.850000px;}
.x91_c00370{left:103.200000px;}
.x7e_c00370{left:104.250000px;}
.x30_c00370{left:107.250000px;}
.xa5_c00370{left:109.350000px;}
.x62_c00370{left:111.450000px;}
.x71_c00370{left:112.650000px;}
.x8d_c00370{left:114.150000px;}
.x27_c00370{left:115.800000px;}
.x31_c00370{left:117.000000px;}
.x6d_c00370{left:118.500000px;}
.xa4_c00370{left:119.700000px;}
.x39_c00370{left:121.950000px;}
.x9f_c00370{left:124.200000px;}
.x22_c00370{left:125.400000px;}
.x1b_c00370{left:127.200000px;}
.x8a_c00370{left:128.250000px;}
.x66_c00370{left:130.050000px;}
.x63_c00370{left:131.250000px;}
.x43_c00370{left:133.200000px;}
.xe_c00370{left:134.550000px;}
.x9d_c00370{left:137.550000px;}
.x87_c00370{left:138.600000px;}
.x5d_c00370{left:142.200000px;}
.x52_c00370{left:143.250000px;}
.x3d_c00370{left:145.650000px;}
.x28_c00370{left:147.450000px;}
.x23_c00370{left:148.500000px;}
.x44_c00370{left:149.700000px;}
.x59_c00370{left:152.100000px;}
.x72_c00370{left:155.100000px;}
.x96_c00370{left:158.250000px;}
.xa2_c00370{left:160.350000px;}
.x13_c00370{left:161.700000px;}
.x53_c00370{left:162.750000px;}
.x32_c00370{left:164.550000px;}
.x8e_c00370{left:165.600000px;}
.x5e_c00370{left:167.400000px;}
.x3a_c00370{left:168.750000px;}
.x88_c00370{left:170.250000px;}
.x2b_c00370{left:171.300000px;}
.x1c_c00370{left:172.500000px;}
.x7b_c00370{left:174.600000px;}
.x68_c00370{left:176.400000px;}
.x9e_c00370{left:178.200000px;}
.xab_c00370{left:179.700000px;}
.x64_c00370{left:181.950000px;}
.x29_c00370{left:183.750000px;}
.x5a_c00370{left:185.850000px;}
.x45_c00370{left:187.200000px;}
.x14_c00370{left:189.450000px;}
.x3e_c00370{left:190.650000px;}
.x6e_c00370{left:192.300000px;}
.x54_c00370{left:194.400000px;}
.x1d_c00370{left:195.600000px;}
.x46_c00370{left:197.700000px;}
.x65_c00370{left:199.650000px;}
.xf_c00370{left:201.900000px;}
.x7f_c00370{left:204.300000px;}
.x24_c00370{left:205.350000px;}
.x8f_c00370{left:208.050000px;}
.x4c_c00370{left:211.650000px;}
.x75_c00370{left:212.700000px;}
.x3b_c00370{left:213.750000px;}
.x82_c00370{left:215.250000px;}
.x81_c00370{left:217.800000px;}
.x15_c00370{left:219.300000px;}
.xa7_c00370{left:220.500000px;}
.x3f_c00370{left:222.000000px;}
.x2a_c00370{left:223.800000px;}
.x69_c00370{left:228.600000px;}
.x89_c00370{left:231.450000px;}
.x6f_c00370{left:235.200000px;}
.x7c_c00370{left:237.150000px;}
.x1e_c00370{left:238.500000px;}
.x99_c00370{left:240.150000px;}
.x97_c00370{left:242.100000px;}
.xa8_c00370{left:243.150000px;}
.x33_c00370{left:246.000000px;}
.x5f_c00370{left:247.200000px;}
.x8b_c00370{left:248.550000px;}
.x95_c00370{left:249.600000px;}
.x16_c00370{left:251.700000px;}
.x4d_c00370{left:253.050000px;}
.xa0_c00370{left:254.550000px;}
.x76_c00370{left:255.900000px;}
.x47_c00370{left:257.850000px;}
.x2c_c00370{left:260.250000px;}
.x60_c00370{left:261.600000px;}
.x55_c00370{left:263.250000px;}
.x79_c00370{left:265.350000px;}
.x40_c00370{left:267.300000px;}
.x25_c00370{left:269.400000px;}
.x34_c00370{left:270.450000px;}
.xac_c00370{left:272.550000px;}
.x83_c00370{left:273.600000px;}
.x67_c00370{left:275.400000px;}
.x17_c00370{left:277.650000px;}
.x92_c00370{left:280.200000px;}
.x41_c00370{left:281.700000px;}
.x5b_c00370{left:283.350000px;}
.x35_c00370{left:285.150000px;}
.x1f_c00370{left:288.600000px;}
.x61_c00370{left:291.000000px;}
.x56_c00370{left:292.500000px;}
.x73_c00370{left:294.750000px;}
.x90_c00370{left:295.950000px;}
.x4e_c00370{left:297.000000px;}
.x9a_c00370{left:298.050000px;}
.x10_c00370{left:299.850000px;}
.x77_c00370{left:300.900000px;}
.x1_c00370{left:302.700000px;}
.xad_c00370{left:304.950000px;}
.x57_c00370{left:306.900000px;}
.x36_c00370{left:310.650000px;}
.x48_c00370{left:313.350000px;}
.x84_c00370{left:314.700000px;}
.x49_c00370{left:316.950000px;}
.x9b_c00370{left:319.350000px;}
.xa1_c00370{left:321.900000px;}
.x2_c00370{left:325.050000px;}
.x18_c00370{left:326.550000px;}
.x4f_c00370{left:327.900000px;}
.x3c_c00370{left:329.250000px;}
.x2d_c00370{left:331.500000px;}
.x11_c00370{left:335.850000px;}
.xa6_c00370{left:340.050000px;}
.x37_c00370{left:342.750000px;}
.x3_c00370{left:343.800000px;}
.x98_c00370{left:346.650000px;}
.x20_c00370{left:348.000000px;}
.x58_c00370{left:349.800000px;}
.x26_c00370{left:351.900000px;}
.x50_c00370{left:355.650000px;}
.x6a_c00370{left:357.450000px;}
.x74_c00370{left:358.950000px;}
.x7a_c00370{left:360.750000px;}
.xa9_c00370{left:363.750000px;}
.x4_c00370{left:365.700000px;}
.x9c_c00370{left:366.900000px;}
.x8c_c00370{left:368.250000px;}
.x42_c00370{left:371.250000px;}
.x78_c00370{left:373.200000px;}
.x85_c00370{left:375.600000px;}
.x19_c00370{left:378.450000px;}
.x7d_c00370{left:380.850000px;}
.x4a_c00370{left:382.050000px;}
.x2e_c00370{left:384.450000px;}
.x6b_c00370{left:385.950000px;}
.x70_c00370{left:387.300000px;}
.x5_c00370{left:389.850000px;}
.x93_c00370{left:396.150000px;}
.x6_c00370{left:408.900000px;}
.xd6_c00370{left:417.600000px;}
.x137_c00370{left:420.900000px;}
.x14b_c00370{left:422.250000px;}
.x7_c00370{left:429.450000px;}
.xb7_c00370{left:434.250000px;}
.xd2_c00370{left:436.050000px;}
.x100_c00370{left:437.100000px;}
.x115_c00370{left:438.600000px;}
.x8_c00370{left:450.300000px;}
.xaf_c00370{left:452.100000px;}
.xc8_c00370{left:454.050000px;}
.xcc_c00370{left:455.100000px;}
.x11e_c00370{left:457.650000px;}
.xb8_c00370{left:459.450000px;}
.x131_c00370{left:460.950000px;}
.x13c_c00370{left:462.900000px;}
.x119_c00370{left:465.600000px;}
.x10a_c00370{left:467.400000px;}
.xbf_c00370{left:470.550000px;}
.x9_c00370{left:472.650000px;}
.xe2_c00370{left:475.950000px;}
.xd7_c00370{left:477.300000px;}
.x12e_c00370{left:478.950000px;}
.xdd_c00370{left:481.950000px;}
.x143_c00370{left:483.150000px;}
.x101_c00370{left:484.200000px;}
.xa_c00370{left:485.550000px;}
.xf0_c00370{left:489.150000px;}
.xc0_c00370{left:492.150000px;}
.x106_c00370{left:494.100000px;}
.xfb_c00370{left:496.050000px;}
.xd8_c00370{left:497.400000px;}
.x133_c00370{left:499.200000px;}
.x146_c00370{left:500.850000px;}
.xde_c00370{left:505.650000px;}
.x13a_c00370{left:506.700000px;}
.xe9_c00370{left:508.350000px;}
.xc9_c00370{left:511.950000px;}
.x125_c00370{left:514.050000px;}
.xcd_c00370{left:515.100000px;}
.xc1_c00370{left:517.350000px;}
.xb0_c00370{left:518.400000px;}
.xb9_c00370{left:519.900000px;}
.x132_c00370{left:522.450000px;}
.x128_c00370{left:524.100000px;}
.xdf_c00370{left:525.750000px;}
.xf1_c00370{left:527.700000px;}
.xe3_c00370{left:529.950000px;}
.xca_c00370{left:533.850000px;}
.xba_c00370{left:535.050000px;}
.x126_c00370{left:537.150000px;}
.xc2_c00370{left:538.650000px;}
.xb1_c00370{left:540.750000px;}
.x10b_c00370{left:542.400000px;}
.xd9_c00370{left:544.200000px;}
.x107_c00370{left:545.250000px;}
.x11a_c00370{left:546.300000px;}
.x141_c00370{left:547.650000px;}
.x102_c00370{left:548.700000px;}
.xcb_c00370{left:550.800000px;}
.xd3_c00370{left:553.500000px;}
.xec_c00370{left:556.050000px;}
.xbb_c00370{left:558.150000px;}
.x103_c00370{left:560.250000px;}
.xe4_c00370{left:562.050000px;}
.xce_c00370{left:563.700000px;}
.xf7_c00370{left:566.100000px;}
.x123_c00370{left:568.500000px;}
.xd4_c00370{left:570.450000px;}
.xc3_c00370{left:575.700000px;}
.xfc_c00370{left:577.800000px;}
.xb2_c00370{left:580.350000px;}
.x116_c00370{left:581.550000px;}
.x129_c00370{left:586.050000px;}
.x10d_c00370{left:587.250000px;}
.x135_c00370{left:588.300000px;}
.xe5_c00370{left:589.350000px;}
.x127_c00370{left:590.400000px;}
.x111_c00370{left:591.450000px;}
.x138_c00370{left:592.800000px;}
.x148_c00370{left:593.850000px;}
.x11f_c00370{left:595.200000px;}
.xf2_c00370{left:597.150000px;}
.xed_c00370{left:600.000000px;}
.x104_c00370{left:601.350000px;}
.xe0_c00370{left:603.450000px;}
.xbc_c00370{left:604.950000px;}
.xe6_c00370{left:607.050000px;}
.x108_c00370{left:609.000000px;}
.xea_c00370{left:610.650000px;}
.xb3_c00370{left:611.700000px;}
.x117_c00370{left:613.650000px;}
.x13e_c00370{left:614.850000px;}
.xfd_c00370{left:616.350000px;}
.xc4_c00370{left:621.750000px;}
.xf3_c00370{left:623.100000px;}
.x12c_c00370{left:625.500000px;}
.xbd_c00370{left:627.600000px;}
.xf8_c00370{left:629.100000px;}
.x10c_c00370{left:630.450000px;}
.xcf_c00370{left:631.800000px;}
.x10e_c00370{left:634.050000px;}
.x120_c00370{left:635.550000px;}
.x105_c00370{left:639.900000px;}
.x13d_c00370{left:641.400000px;}
.xc5_c00370{left:642.600000px;}
.x11b_c00370{left:644.550000px;}
.x121_c00370{left:646.500000px;}
.xda_c00370{left:647.850000px;}
.x13b_c00370{left:650.100000px;}
.x12b_c00370{left:651.450000px;}
.x10f_c00370{left:653.550000px;}
.xe7_c00370{left:654.900000px;}
.x124_c00370{left:658.050000px;}
.x140_c00370{left:659.700000px;}
.x12a_c00370{left:660.900000px;}
.xb4_c00370{left:663.150000px;}
.xfe_c00370{left:664.650000px;}
.x11c_c00370{left:666.150000px;}
.x136_c00370{left:668.250000px;}
.xee_c00370{left:669.450000px;}
.x142_c00370{left:670.950000px;}
.xdb_c00370{left:673.050000px;}
.xd5_c00370{left:674.400000px;}
.x112_c00370{left:676.500000px;}
.xf4_c00370{left:677.850000px;}
.x149_c00370{left:678.900000px;}
.x139_c00370{left:681.000000px;}
.xbe_c00370{left:683.400000px;}
.xd0_c00370{left:684.750000px;}
.xef_c00370{left:687.750000px;}
.x14c_c00370{left:689.550000px;}
.xeb_c00370{left:690.600000px;}
.xf5_c00370{left:692.250000px;}
.xb5_c00370{left:693.450000px;}
.xc6_c00370{left:694.500000px;}
.xe8_c00370{left:696.600000px;}
.xff_c00370{left:700.650000px;}
.x12d_c00370{left:703.200000px;}
.x113_c00370{left:704.550000px;}
.x134_c00370{left:705.600000px;}
.x110_c00370{left:707.250000px;}
.xdc_c00370{left:708.750000px;}
.x144_c00370{left:710.550000px;}
.x12f_c00370{left:712.650000px;}
.xb6_c00370{left:716.100000px;}
.xf9_c00370{left:717.600000px;}
.x14a_c00370{left:719.250000px;}
.x109_c00370{left:720.600000px;}
.xb_c00370{left:724.650000px;}
.x147_c00370{left:726.150000px;}
.xd1_c00370{left:727.950000px;}
.x130_c00370{left:729.900000px;}
.x114_c00370{left:732.300000px;}
.xc7_c00370{left:733.800000px;}
.xfa_c00370{left:734.850000px;}
.x118_c00370{left:736.350000px;}
.xf6_c00370{left:738.300000px;}
.x145_c00370{left:740.100000px;}
.xe1_c00370{left:743.100000px;}
.x122_c00370{left:751.350000px;}
.x11d_c00370{left:753.300000px;}
.x13f_c00370{left:755.250000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.wsb_c00370{word-spacing:-15.238095pt;}
.ws7_c00370{word-spacing:-13.829290pt;}
.wsa_c00370{word-spacing:-10.413135pt;}
.wsc_c00370{word-spacing:-9.135802pt;}
.ws9_c00370{word-spacing:-7.878788pt;}
.ws1_c00370{word-spacing:-4.444444pt;}
.ws8_c00370{word-spacing:-3.782235pt;}
.wsd_c00370{word-spacing:0.000000pt;}
.ws0_c00370{word-spacing:15.488215pt;}
.ws2_c00370{word-spacing:16.927210pt;}
.ws5_c00370{word-spacing:19.682540pt;}
.ws6_c00370{word-spacing:22.857143pt;}
.ws4_c00370{word-spacing:35.555556pt;}
.ws3_c00370{word-spacing:53.085884pt;}
._2_c00370{width:46.349206pt;}
._1_c00370{width:52.698413pt;}
._0_c00370{width:65.925926pt;}
.fs5_c00370{font-size:48.000000pt;}
.fs3_c00370{font-size:53.333333pt;}
.fs2_c00370{font-size:58.666667pt;}
.fs4_c00370{font-size:64.000000pt;}
.fs0_c00370{font-size:69.333333pt;}
.fs1_c00370{font-size:80.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y38_c00370{bottom:164.800000pt;}
.y6b_c00370{bottom:167.733333pt;}
.y37_c00370{bottom:179.200000pt;}
.y6a_c00370{bottom:180.800000pt;}
.y36_c00370{bottom:192.266667pt;}
.y69_c00370{bottom:193.600000pt;}
.y68_c00370{bottom:209.866667pt;}
.y67_c00370{bottom:222.400000pt;}
.y66_c00370{bottom:235.866667pt;}
.y35_c00370{bottom:238.666667pt;}
.y65_c00370{bottom:248.000000pt;}
.y34_c00370{bottom:256.266667pt;}
.y64_c00370{bottom:260.800000pt;}
.y33_c00370{bottom:272.000000pt;}
.y63_c00370{bottom:273.866667pt;}
.y62_c00370{bottom:286.400000pt;}
.y32_c00370{bottom:287.733333pt;}
.y31_c00370{bottom:303.066667pt;}
.y30_c00370{bottom:319.066667pt;}
.y2f_c00370{bottom:334.800000pt;}
.y61_c00370{bottom:335.333333pt;}
.y2e_c00370{bottom:350.800000pt;}
.y60_c00370{bottom:351.333333pt;}
.y5f_c00370{bottom:366.666667pt;}
.y2d_c00370{bottom:366.800000pt;}
.y5e_c00370{bottom:382.400000pt;}
.y2c_c00370{bottom:383.066667pt;}
.y5d_c00370{bottom:398.133333pt;}
.y2b_c00370{bottom:398.400000pt;}
.y2a_c00370{bottom:414.133333pt;}
.y5c_c00370{bottom:421.333333pt;}
.y29_c00370{bottom:430.400000pt;}
.y5b_c00370{bottom:437.333333pt;}
.y28_c00370{bottom:446.400000pt;}
.y5a_c00370{bottom:453.333333pt;}
.y27_c00370{bottom:462.400000pt;}
.y59_c00370{bottom:469.066667pt;}
.y26_c00370{bottom:478.133333pt;}
.y58_c00370{bottom:485.333333pt;}
.y25_c00370{bottom:494.133333pt;}
.y57_c00370{bottom:501.066667pt;}
.y24_c00370{bottom:510.133333pt;}
.y56_c00370{bottom:517.066667pt;}
.y23_c00370{bottom:526.133333pt;}
.y55_c00370{bottom:533.066667pt;}
.y22_c00370{bottom:547.466667pt;}
.y54_c00370{bottom:548.800000pt;}
.y21_c00370{bottom:560.933333pt;}
.y53_c00370{bottom:568.133333pt;}
.y20_c00370{bottom:573.733333pt;}
.y52_c00370{bottom:584.133333pt;}
.y1f_c00370{bottom:586.533333pt;}
.y51_c00370{bottom:599.866667pt;}
.y1e_c00370{bottom:603.200000pt;}
.y1d_c00370{bottom:614.666667pt;}
.y50_c00370{bottom:615.600000pt;}
.y1c_c00370{bottom:628.800000pt;}
.y4f_c00370{bottom:631.600000pt;}
.y1b_c00370{bottom:640.000000pt;}
.y4e_c00370{bottom:647.600000pt;}
.y1a_c00370{bottom:651.466667pt;}
.y4d_c00370{bottom:663.333333pt;}
.y19_c00370{bottom:665.600000pt;}
.y4c_c00370{bottom:679.066667pt;}
.y18_c00370{bottom:679.866667pt;}
.y17_c00370{bottom:690.800000pt;}
.y4b_c00370{bottom:695.066667pt;}
.y16_c00370{bottom:705.866667pt;}
.y4a_c00370{bottom:711.066667pt;}
.y15_c00370{bottom:718.666667pt;}
.y49_c00370{bottom:726.800000pt;}
.y14_c00370{bottom:730.533333pt;}
.y13_c00370{bottom:741.733333pt;}
.y48_c00370{bottom:742.533333pt;}
.y12_c00370{bottom:754.533333pt;}
.y47_c00370{bottom:759.466667pt;}
.y11_c00370{bottom:768.800000pt;}
.y46_c00370{bottom:774.133333pt;}
.y10_c00370{bottom:780.266667pt;}
.y45_c00370{bottom:789.866667pt;}
.yf_c00370{bottom:793.333333pt;}
.y44_c00370{bottom:805.600000pt;}
.ye_c00370{bottom:808.266667pt;}
.y43_c00370{bottom:821.600000pt;}
.yd_c00370{bottom:821.866667pt;}
.y42_c00370{bottom:837.333333pt;}
.yc_c00370{bottom:841.066667pt;}
.y41_c00370{bottom:853.333333pt;}
.yb_c00370{bottom:856.800000pt;}
.y40_c00370{bottom:869.066667pt;}
.ya_c00370{bottom:872.533333pt;}
.y3f_c00370{bottom:885.066667pt;}
.y9_c00370{bottom:888.266667pt;}
.y8_c00370{bottom:904.000000pt;}
.y3e_c00370{bottom:909.066667pt;}
.y3d_c00370{bottom:924.800000pt;}
.y7_c00370{bottom:925.066667pt;}
.y6_c00370{bottom:942.933333pt;}
.y3c_c00370{bottom:948.133333pt;}
.y5_c00370{bottom:958.933333pt;}
.y3b_c00370{bottom:964.133333pt;}
.y4_c00370{bottom:974.666667pt;}
.y3a_c00370{bottom:981.066667pt;}
.y3_c00370{bottom:994.533333pt;}
.y39_c00370{bottom:996.133333pt;}
.y2_c00370{bottom:1018.933333pt;}
.y1_c00370{bottom:1019.200000pt;}
.h7_c00370{height:48.000000pt;}
.h5_c00370{height:53.333333pt;}
.h4_c00370{height:58.666667pt;}
.h6_c00370{height:64.000000pt;}
.h2_c00370{height:69.333333pt;}
.h3_c00370{height:80.000000pt;}
.h0_c00370{height:1131.200032pt;}
.h1_c00370{height:1131.333333pt;}
.w0_c00370{width:853.760009pt;}
.w1_c00370{width:854.000000pt;}
.x0_c00370{left:0.000000pt;}
.xc_c00370{left:53.733333pt;}
.x80_c00370{left:56.266667pt;}
.xae_c00370{left:58.533333pt;}
.x4b_c00370{left:66.266667pt;}
.x2f_c00370{left:67.866667pt;}
.x1a_c00370{left:68.933333pt;}
.x21_c00370{left:71.200000pt;}
.x94_c00370{left:72.400000pt;}
.x86_c00370{left:73.333333pt;}
.xa3_c00370{left:74.400000pt;}
.xaa_c00370{left:75.333333pt;}
.x51_c00370{left:79.066667pt;}
.x38_c00370{left:80.266667pt;}
.x6c_c00370{left:81.333333pt;}
.x5c_c00370{left:83.200000pt;}
.x12_c00370{left:84.800000pt;}
.xd_c00370{left:90.533333pt;}
.x91_c00370{left:91.733333pt;}
.x7e_c00370{left:92.666667pt;}
.x30_c00370{left:95.333333pt;}
.xa5_c00370{left:97.200000pt;}
.x62_c00370{left:99.066667pt;}
.x71_c00370{left:100.133333pt;}
.x8d_c00370{left:101.466667pt;}
.x27_c00370{left:102.933333pt;}
.x31_c00370{left:104.000000pt;}
.x6d_c00370{left:105.333333pt;}
.xa4_c00370{left:106.400000pt;}
.x39_c00370{left:108.400000pt;}
.x9f_c00370{left:110.400000pt;}
.x22_c00370{left:111.466667pt;}
.x1b_c00370{left:113.066667pt;}
.x8a_c00370{left:114.000000pt;}
.x66_c00370{left:115.600000pt;}
.x63_c00370{left:116.666667pt;}
.x43_c00370{left:118.400000pt;}
.xe_c00370{left:119.600000pt;}
.x9d_c00370{left:122.266667pt;}
.x87_c00370{left:123.200000pt;}
.x5d_c00370{left:126.400000pt;}
.x52_c00370{left:127.333333pt;}
.x3d_c00370{left:129.466667pt;}
.x28_c00370{left:131.066667pt;}
.x23_c00370{left:132.000000pt;}
.x44_c00370{left:133.066667pt;}
.x59_c00370{left:135.200000pt;}
.x72_c00370{left:137.866667pt;}
.x96_c00370{left:140.666667pt;}
.xa2_c00370{left:142.533333pt;}
.x13_c00370{left:143.733333pt;}
.x53_c00370{left:144.666667pt;}
.x32_c00370{left:146.266667pt;}
.x8e_c00370{left:147.200000pt;}
.x5e_c00370{left:148.800000pt;}
.x3a_c00370{left:150.000000pt;}
.x88_c00370{left:151.333333pt;}
.x2b_c00370{left:152.266667pt;}
.x1c_c00370{left:153.333333pt;}
.x7b_c00370{left:155.200000pt;}
.x68_c00370{left:156.800000pt;}
.x9e_c00370{left:158.400000pt;}
.xab_c00370{left:159.733333pt;}
.x64_c00370{left:161.733333pt;}
.x29_c00370{left:163.333333pt;}
.x5a_c00370{left:165.200000pt;}
.x45_c00370{left:166.400000pt;}
.x14_c00370{left:168.400000pt;}
.x3e_c00370{left:169.466667pt;}
.x6e_c00370{left:170.933333pt;}
.x54_c00370{left:172.800000pt;}
.x1d_c00370{left:173.866667pt;}
.x46_c00370{left:175.733333pt;}
.x65_c00370{left:177.466667pt;}
.xf_c00370{left:179.466667pt;}
.x7f_c00370{left:181.600000pt;}
.x24_c00370{left:182.533333pt;}
.x8f_c00370{left:184.933333pt;}
.x4c_c00370{left:188.133333pt;}
.x75_c00370{left:189.066667pt;}
.x3b_c00370{left:190.000000pt;}
.x82_c00370{left:191.333333pt;}
.x81_c00370{left:193.600000pt;}
.x15_c00370{left:194.933333pt;}
.xa7_c00370{left:196.000000pt;}
.x3f_c00370{left:197.333333pt;}
.x2a_c00370{left:198.933333pt;}
.x69_c00370{left:203.200000pt;}
.x89_c00370{left:205.733333pt;}
.x6f_c00370{left:209.066667pt;}
.x7c_c00370{left:210.800000pt;}
.x1e_c00370{left:212.000000pt;}
.x99_c00370{left:213.466667pt;}
.x97_c00370{left:215.200000pt;}
.xa8_c00370{left:216.133333pt;}
.x33_c00370{left:218.666667pt;}
.x5f_c00370{left:219.733333pt;}
.x8b_c00370{left:220.933333pt;}
.x95_c00370{left:221.866667pt;}
.x16_c00370{left:223.733333pt;}
.x4d_c00370{left:224.933333pt;}
.xa0_c00370{left:226.266667pt;}
.x76_c00370{left:227.466667pt;}
.x47_c00370{left:229.200000pt;}
.x2c_c00370{left:231.333333pt;}
.x60_c00370{left:232.533333pt;}
.x55_c00370{left:234.000000pt;}
.x79_c00370{left:235.866667pt;}
.x40_c00370{left:237.600000pt;}
.x25_c00370{left:239.466667pt;}
.x34_c00370{left:240.400000pt;}
.xac_c00370{left:242.266667pt;}
.x83_c00370{left:243.200000pt;}
.x67_c00370{left:244.800000pt;}
.x17_c00370{left:246.800000pt;}
.x92_c00370{left:249.066667pt;}
.x41_c00370{left:250.400000pt;}
.x5b_c00370{left:251.866667pt;}
.x35_c00370{left:253.466667pt;}
.x1f_c00370{left:256.533333pt;}
.x61_c00370{left:258.666667pt;}
.x56_c00370{left:260.000000pt;}
.x73_c00370{left:262.000000pt;}
.x90_c00370{left:263.066667pt;}
.x4e_c00370{left:264.000000pt;}
.x9a_c00370{left:264.933333pt;}
.x10_c00370{left:266.533333pt;}
.x77_c00370{left:267.466667pt;}
.x1_c00370{left:269.066667pt;}
.xad_c00370{left:271.066667pt;}
.x57_c00370{left:272.800000pt;}
.x36_c00370{left:276.133333pt;}
.x48_c00370{left:278.533333pt;}
.x84_c00370{left:279.733333pt;}
.x49_c00370{left:281.733333pt;}
.x9b_c00370{left:283.866667pt;}
.xa1_c00370{left:286.133333pt;}
.x2_c00370{left:288.933333pt;}
.x18_c00370{left:290.266667pt;}
.x4f_c00370{left:291.466667pt;}
.x3c_c00370{left:292.666667pt;}
.x2d_c00370{left:294.666667pt;}
.x11_c00370{left:298.533333pt;}
.xa6_c00370{left:302.266667pt;}
.x37_c00370{left:304.666667pt;}
.x3_c00370{left:305.600000pt;}
.x98_c00370{left:308.133333pt;}
.x20_c00370{left:309.333333pt;}
.x58_c00370{left:310.933333pt;}
.x26_c00370{left:312.800000pt;}
.x50_c00370{left:316.133333pt;}
.x6a_c00370{left:317.733333pt;}
.x74_c00370{left:319.066667pt;}
.x7a_c00370{left:320.666667pt;}
.xa9_c00370{left:323.333333pt;}
.x4_c00370{left:325.066667pt;}
.x9c_c00370{left:326.133333pt;}
.x8c_c00370{left:327.333333pt;}
.x42_c00370{left:330.000000pt;}
.x78_c00370{left:331.733333pt;}
.x85_c00370{left:333.866667pt;}
.x19_c00370{left:336.400000pt;}
.x7d_c00370{left:338.533333pt;}
.x4a_c00370{left:339.600000pt;}
.x2e_c00370{left:341.733333pt;}
.x6b_c00370{left:343.066667pt;}
.x70_c00370{left:344.266667pt;}
.x5_c00370{left:346.533333pt;}
.x93_c00370{left:352.133333pt;}
.x6_c00370{left:363.466667pt;}
.xd6_c00370{left:371.200000pt;}
.x137_c00370{left:374.133333pt;}
.x14b_c00370{left:375.333333pt;}
.x7_c00370{left:381.733333pt;}
.xb7_c00370{left:386.000000pt;}
.xd2_c00370{left:387.600000pt;}
.x100_c00370{left:388.533333pt;}
.x115_c00370{left:389.866667pt;}
.x8_c00370{left:400.266667pt;}
.xaf_c00370{left:401.866667pt;}
.xc8_c00370{left:403.600000pt;}
.xcc_c00370{left:404.533333pt;}
.x11e_c00370{left:406.800000pt;}
.xb8_c00370{left:408.400000pt;}
.x131_c00370{left:409.733333pt;}
.x13c_c00370{left:411.466667pt;}
.x119_c00370{left:413.866667pt;}
.x10a_c00370{left:415.466667pt;}
.xbf_c00370{left:418.266667pt;}
.x9_c00370{left:420.133333pt;}
.xe2_c00370{left:423.066667pt;}
.xd7_c00370{left:424.266667pt;}
.x12e_c00370{left:425.733333pt;}
.xdd_c00370{left:428.400000pt;}
.x143_c00370{left:429.466667pt;}
.x101_c00370{left:430.400000pt;}
.xa_c00370{left:431.600000pt;}
.xf0_c00370{left:434.800000pt;}
.xc0_c00370{left:437.466667pt;}
.x106_c00370{left:439.200000pt;}
.xfb_c00370{left:440.933333pt;}
.xd8_c00370{left:442.133333pt;}
.x133_c00370{left:443.733333pt;}
.x146_c00370{left:445.200000pt;}
.xde_c00370{left:449.466667pt;}
.x13a_c00370{left:450.400000pt;}
.xe9_c00370{left:451.866667pt;}
.xc9_c00370{left:455.066667pt;}
.x125_c00370{left:456.933333pt;}
.xcd_c00370{left:457.866667pt;}
.xc1_c00370{left:459.866667pt;}
.xb0_c00370{left:460.800000pt;}
.xb9_c00370{left:462.133333pt;}
.x132_c00370{left:464.400000pt;}
.x128_c00370{left:465.866667pt;}
.xdf_c00370{left:467.333333pt;}
.xf1_c00370{left:469.066667pt;}
.xe3_c00370{left:471.066667pt;}
.xca_c00370{left:474.533333pt;}
.xba_c00370{left:475.600000pt;}
.x126_c00370{left:477.466667pt;}
.xc2_c00370{left:478.800000pt;}
.xb1_c00370{left:480.666667pt;}
.x10b_c00370{left:482.133333pt;}
.xd9_c00370{left:483.733333pt;}
.x107_c00370{left:484.666667pt;}
.x11a_c00370{left:485.600000pt;}
.x141_c00370{left:486.800000pt;}
.x102_c00370{left:487.733333pt;}
.xcb_c00370{left:489.600000pt;}
.xd3_c00370{left:492.000000pt;}
.xec_c00370{left:494.266667pt;}
.xbb_c00370{left:496.133333pt;}
.x103_c00370{left:498.000000pt;}
.xe4_c00370{left:499.600000pt;}
.xce_c00370{left:501.066667pt;}
.xf7_c00370{left:503.200000pt;}
.x123_c00370{left:505.333333pt;}
.xd4_c00370{left:507.066667pt;}
.xc3_c00370{left:511.733333pt;}
.xfc_c00370{left:513.600000pt;}
.xb2_c00370{left:515.866667pt;}
.x116_c00370{left:516.933333pt;}
.x129_c00370{left:520.933333pt;}
.x10d_c00370{left:522.000000pt;}
.x135_c00370{left:522.933333pt;}
.xe5_c00370{left:523.866667pt;}
.x127_c00370{left:524.800000pt;}
.x111_c00370{left:525.733333pt;}
.x138_c00370{left:526.933333pt;}
.x148_c00370{left:527.866667pt;}
.x11f_c00370{left:529.066667pt;}
.xf2_c00370{left:530.800000pt;}
.xed_c00370{left:533.333333pt;}
.x104_c00370{left:534.533333pt;}
.xe0_c00370{left:536.400000pt;}
.xbc_c00370{left:537.733333pt;}
.xe6_c00370{left:539.600000pt;}
.x108_c00370{left:541.333333pt;}
.xea_c00370{left:542.800000pt;}
.xb3_c00370{left:543.733333pt;}
.x117_c00370{left:545.466667pt;}
.x13e_c00370{left:546.533333pt;}
.xfd_c00370{left:547.866667pt;}
.xc4_c00370{left:552.666667pt;}
.xf3_c00370{left:553.866667pt;}
.x12c_c00370{left:556.000000pt;}
.xbd_c00370{left:557.866667pt;}
.xf8_c00370{left:559.200000pt;}
.x10c_c00370{left:560.400000pt;}
.xcf_c00370{left:561.600000pt;}
.x10e_c00370{left:563.600000pt;}
.x120_c00370{left:564.933333pt;}
.x105_c00370{left:568.800000pt;}
.x13d_c00370{left:570.133333pt;}
.xc5_c00370{left:571.200000pt;}
.x11b_c00370{left:572.933333pt;}
.x121_c00370{left:574.666667pt;}
.xda_c00370{left:575.866667pt;}
.x13b_c00370{left:577.866667pt;}
.x12b_c00370{left:579.066667pt;}
.x10f_c00370{left:580.933333pt;}
.xe7_c00370{left:582.133333pt;}
.x124_c00370{left:584.933333pt;}
.x140_c00370{left:586.400000pt;}
.x12a_c00370{left:587.466667pt;}
.xb4_c00370{left:589.466667pt;}
.xfe_c00370{left:590.800000pt;}
.x11c_c00370{left:592.133333pt;}
.x136_c00370{left:594.000000pt;}
.xee_c00370{left:595.066667pt;}
.x142_c00370{left:596.400000pt;}
.xdb_c00370{left:598.266667pt;}
.xd5_c00370{left:599.466667pt;}
.x112_c00370{left:601.333333pt;}
.xf4_c00370{left:602.533333pt;}
.x149_c00370{left:603.466667pt;}
.x139_c00370{left:605.333333pt;}
.xbe_c00370{left:607.466667pt;}
.xd0_c00370{left:608.666667pt;}
.xef_c00370{left:611.333333pt;}
.x14c_c00370{left:612.933333pt;}
.xeb_c00370{left:613.866667pt;}
.xf5_c00370{left:615.333333pt;}
.xb5_c00370{left:616.400000pt;}
.xc6_c00370{left:617.333333pt;}
.xe8_c00370{left:619.200000pt;}
.xff_c00370{left:622.800000pt;}
.x12d_c00370{left:625.066667pt;}
.x113_c00370{left:626.266667pt;}
.x134_c00370{left:627.200000pt;}
.x110_c00370{left:628.666667pt;}
.xdc_c00370{left:630.000000pt;}
.x144_c00370{left:631.600000pt;}
.x12f_c00370{left:633.466667pt;}
.xb6_c00370{left:636.533333pt;}
.xf9_c00370{left:637.866667pt;}
.x14a_c00370{left:639.333333pt;}
.x109_c00370{left:640.533333pt;}
.xb_c00370{left:644.133333pt;}
.x147_c00370{left:645.466667pt;}
.xd1_c00370{left:647.066667pt;}
.x130_c00370{left:648.800000pt;}
.x114_c00370{left:650.933333pt;}
.xc7_c00370{left:652.266667pt;}
.xfa_c00370{left:653.200000pt;}
.x118_c00370{left:654.533333pt;}
.xf6_c00370{left:656.266667pt;}
.x145_c00370{left:657.866667pt;}
.xe1_c00370{left:660.533333pt;}
.x122_c00370{left:667.866667pt;}
.x11d_c00370{left:669.600000pt;}
.x13f_c00370{left:671.333333pt;}
}





/* 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_c00371 {
    display:none;
  }
  .loading-indicator_c00371.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00371 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_c00371 { 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_c00371" -> "#page-container .classname_c00371")
 */
.pf_c00371 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00371 { /* 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_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00371 { /* 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_c00371 { /* 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_c00371 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00371 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00371 {overflow:visible;}
  }
}
.c_c00371 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00371 { /* 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_c00371:after { /* webkit #35443 */
  content: '';
}
.t_c00371:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00371 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 */
}
.__c00371 { /* 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_c00371 { /* info for Javascript */
  display:none;
}
.l_c00371 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00371 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00371 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00371: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_c00371 {
    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_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00371.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_c00371 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00371;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.000000;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;}
.mac_c00371{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00371{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.m60_c00371{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m71_c00371{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m77_c00371{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.md8_c00371{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00371{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m57_c00371{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00371{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00371{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m74_c00371{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m95_c00371{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m61_c00371{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m83_c00371{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00371{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m67_c00371{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00371{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mb_c00371{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.mc_c00371{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00371{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m70_c00371{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00371{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.mec_c00371{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m22_c00371{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00371{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00371{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m52_c00371{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m72_c00371{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12_c00371{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.md4_c00371{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m41_c00371{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m62_c00371{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma_c00371{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00371{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m10_c00371{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9_c00371{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00371{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8_c00371{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00371{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m32_c00371{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00371{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00371{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m69_c00371{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00371{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m126_c00371{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00371{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m125_c00371{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m58_c00371{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me8_c00371{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.md_c00371{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md9_c00371{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.meb_c00371{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00371{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00371{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mff_c00371{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md1_c00371{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m65_c00371{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00371{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mf_c00371{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m88_c00371{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m50_c00371{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mda_c00371{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m108_c00371{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00371{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00371{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00371{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m31_c00371{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00371{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md7_c00371{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md6_c00371{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m55_c00371{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00371{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00371{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me1_c00371{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00371{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me_c00371{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00371{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00371{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00371{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00371{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00371{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00371{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00371{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00371{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m102_c00371{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00371{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m56_c00371{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me7_c00371{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00371{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mad_c00371{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m91_c00371{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m39_c00371{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.maf_c00371{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00371{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m111_c00371{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00371{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md5_c00371{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00371{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m84_c00371{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00371{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00371{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00371{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md2_c00371{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00371{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00371{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m51_c00371{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md3_c00371{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m53_c00371{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00371{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00371{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m75_c00371{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00371{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m19_c00371{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00371{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m30_c00371{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.me3_c00371{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5_c00371{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00371{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00371{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00371{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00371{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m42_c00371{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m40_c00371{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m11_c00371{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6_c00371{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m93_c00371{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7_c00371{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00371{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00371{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mca_c00371{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m13_c00371{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00371{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mee_c00371{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00371{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m21_c00371{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m46_c00371{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m82_c00371{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00371{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00371{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m36_c00371{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m104_c00371{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mef_c00371{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00371{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mde_c00371{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00371{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m112_c00371{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00371{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00371{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m79_c00371{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00371{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m90_c00371{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00371{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m20_c00371{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m16_c00371{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m35_c00371{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m114_c00371{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m78_c00371{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00371{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m100_c00371{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m73_c00371{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00371{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00371{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00371{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00371{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00371{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m54_c00371{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00371{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md0_c00371{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m85_c00371{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m25_c00371{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00371{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m86_c00371{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00371{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00371{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00371{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00371{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m107_c00371{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mae_c00371{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.med_c00371{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00371{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00371{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00371{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m49_c00371{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me5_c00371{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mab_c00371{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m122_c00371{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m68_c00371{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00371{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m89_c00371{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m76_c00371{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m92_c00371{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m23_c00371{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m101_c00371{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00371{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m59_c00371{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00371{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.maa_c00371{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00371{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m63_c00371{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me6_c00371{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m96_c00371{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m38_c00371{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m47_c00371{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00371{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00371{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m27_c00371{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00371{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00371{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00371{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m99_c00371{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00371{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m123_c00371{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m105_c00371{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m97_c00371{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m37_c00371{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m124_c00371{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00371{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00371{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m121_c00371{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00371{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.me9_c00371{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00371{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00371{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m129_c00371{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m18_c00371{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00371{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m26_c00371{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m98_c00371{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me2_c00371{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00371{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m116_c00371{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2_c00371{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00371{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m115_c00371{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00371{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m28_c00371{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m48_c00371{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00371{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m66_c00371{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00371{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00371{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m44_c00371{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mce_c00371{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m119_c00371{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00371{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00371{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m34_c00371{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m127_c00371{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00371{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00371{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m45_c00371{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00371{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00371{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00371{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);}
.m117_c00371{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00371{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00371{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m94_c00371{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m80_c00371{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m110_c00371{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00371{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00371{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00371{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m64_c00371{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m118_c00371{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m113_c00371{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00371{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.me4_c00371{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00371{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00371{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00371{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mba_c00371{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00371{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m43_c00371{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m33_c00371{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m15_c00371{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00371{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m4_c00371{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m120_c00371{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00371{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m81_c00371{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m17_c00371{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m87_c00371{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00371{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m103_c00371{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me0_c00371{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m128_c00371{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m106_c00371{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mea_c00371{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m14_c00371{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00371{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m109_c00371{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00371{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00371{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m0_c00371{transform:matrix(0.443000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443000,0.000000,0.000000,0.250000,0,0);}
.m29_c00371{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00371{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m24_c00371{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls2_c00371{letter-spacing:0.000000px;}
.ls0_c00371{letter-spacing:63.000000px;}
.ls1_c00371{letter-spacing:70.000000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{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__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00371{word-spacing:-100.000000px;}
.ws3_c00371{word-spacing:-90.000000px;}
.ws12_c00371{word-spacing:-5.476190px;}
.ws0_c00371{word-spacing:-5.384615px;}
.wsb_c00371{word-spacing:-3.783920px;}
.ws11_c00371{word-spacing:-3.571429px;}
.ws13_c00371{word-spacing:-1.786635px;}
.wsc_c00371{word-spacing:-1.433121px;}
.ws14_c00371{word-spacing:0.000000px;}
.ws9_c00371{word-spacing:3.589744px;}
.ws10_c00371{word-spacing:5.312500px;}
.wse_c00371{word-spacing:10.500000px;}
.wsd_c00371{word-spacing:12.747851px;}
.wsf_c00371{word-spacing:13.281250px;}
.ws4_c00371{word-spacing:23.211796px;}
.ws6_c00371{word-spacing:25.714286px;}
.ws2_c00371{word-spacing:26.428954px;}
.ws8_c00371{word-spacing:32.250000px;}
.ws1_c00371{word-spacing:36.000000px;}
.ws5_c00371{word-spacing:40.000000px;}
.ws7_c00371{word-spacing:50.416667px;}
._5_c00371{margin-left:-70.000000px;}
._0_c00371{margin-left:-63.000000px;}
._4_c00371{width:4.166667px;}
._2_c00371{width:53.428954px;}
._1_c00371{width:65.833333px;}
._3_c00371{width:74.166667px;}
.fc0_c00371{color:transparent;}
.fs6_c00371{font-size:42.000000px;}
.fs5_c00371{font-size:48.000000px;}
.fs3_c00371{font-size:54.000000px;}
.fs1_c00371{font-size:60.000000px;}
.fs2_c00371{font-size:66.000000px;}
.fs4_c00371{font-size:72.000000px;}
.fs0_c00371{font-size:78.000000px;}
.y0_c00371{bottom:0.000000px;}
.y6c_c00371{bottom:185.400000px;}
.y6b_c00371{bottom:201.900000px;}
.y37_c00371{bottom:202.350000px;}
.y36_c00371{bottom:216.750000px;}
.y6a_c00371{bottom:217.050000px;}
.y69_c00371{bottom:230.700000px;}
.y68_c00371{bottom:245.100000px;}
.y67_c00371{bottom:259.500000px;}
.y35_c00371{bottom:262.500000px;}
.y66_c00371{bottom:273.900000px;}
.y34_c00371{bottom:279.750000px;}
.y65_c00371{bottom:288.300000px;}
.y33_c00371{bottom:297.750000px;}
.y64_c00371{bottom:302.400000px;}
.y32_c00371{bottom:315.450000px;}
.y63_c00371{bottom:317.100000px;}
.y31_c00371{bottom:333.450000px;}
.y30_c00371{bottom:351.750000px;}
.y62_c00371{bottom:356.100000px;}
.y2f_c00371{bottom:373.350000px;}
.y61_c00371{bottom:374.400000px;}
.y2e_c00371{bottom:391.050000px;}
.y60_c00371{bottom:392.400000px;}
.y2d_c00371{bottom:409.050000px;}
.y5f_c00371{bottom:410.400000px;}
.y2c_c00371{bottom:426.750000px;}
.y5e_c00371{bottom:428.100000px;}
.y2b_c00371{bottom:444.450000px;}
.y5d_c00371{bottom:450.450000px;}
.y2a_c00371{bottom:462.150000px;}
.y5c_c00371{bottom:468.150000px;}
.y29_c00371{bottom:480.150000px;}
.y5b_c00371{bottom:485.850000px;}
.y28_c00371{bottom:497.850000px;}
.y5a_c00371{bottom:503.850000px;}
.y27_c00371{bottom:515.850000px;}
.y59_c00371{bottom:521.550000px;}
.y26_c00371{bottom:533.850000px;}
.y58_c00371{bottom:539.550000px;}
.y25_c00371{bottom:552.150000px;}
.y57_c00371{bottom:557.250000px;}
.y24_c00371{bottom:569.850000px;}
.y56_c00371{bottom:575.250000px;}
.y23_c00371{bottom:587.850000px;}
.y55_c00371{bottom:593.550000px;}
.y22_c00371{bottom:605.550000px;}
.y54_c00371{bottom:610.800000px;}
.y21_c00371{bottom:623.100000px;}
.y53_c00371{bottom:628.800000px;}
.y20_c00371{bottom:643.800000px;}
.y52_c00371{bottom:646.800000px;}
.y1f_c00371{bottom:658.500000px;}
.y51_c00371{bottom:664.500000px;}
.y1e_c00371{bottom:672.900000px;}
.y50_c00371{bottom:682.500000px;}
.y1d_c00371{bottom:692.550000px;}
.y4f_c00371{bottom:700.500000px;}
.y1c_c00371{bottom:705.900000px;}
.y4e_c00371{bottom:718.800000px;}
.y1b_c00371{bottom:721.500000px;}
.y1a_c00371{bottom:734.400000px;}
.y4d_c00371{bottom:736.050000px;}
.y19_c00371{bottom:748.500000px;}
.y4c_c00371{bottom:754.050000px;}
.y18_c00371{bottom:763.200000px;}
.y4b_c00371{bottom:771.750000px;}
.y17_c00371{bottom:778.650000px;}
.y4a_c00371{bottom:789.750000px;}
.y16_c00371{bottom:792.000000px;}
.y15_c00371{bottom:807.450000px;}
.y49_c00371{bottom:807.750000px;}
.y14_c00371{bottom:821.850000px;}
.y48_c00371{bottom:825.450000px;}
.y13_c00371{bottom:835.950000px;}
.y47_c00371{bottom:847.800000px;}
.y12_c00371{bottom:849.750000px;}
.y11_c00371{bottom:864.450000px;}
.y46_c00371{bottom:865.800000px;}
.y10_c00371{bottom:879.150000px;}
.y45_c00371{bottom:883.800000px;}
.yf_c00371{bottom:892.050000px;}
.y44_c00371{bottom:901.500000px;}
.ye_c00371{bottom:906.750000px;}
.y43_c00371{bottom:919.500000px;}
.yd_c00371{bottom:922.650000px;}
.y42_c00371{bottom:937.500000px;}
.yc_c00371{bottom:941.400000px;}
.yb_c00371{bottom:959.100000px;}
.y41_c00371{bottom:959.700000px;}
.ya_c00371{bottom:977.100000px;}
.y40_c00371{bottom:977.700000px;}
.y9_c00371{bottom:994.350000px;}
.y3f_c00371{bottom:995.400000px;}
.y3e_c00371{bottom:1013.400000px;}
.y8_c00371{bottom:1016.250000px;}
.y3d_c00371{bottom:1031.400000px;}
.y7_c00371{bottom:1034.250000px;}
.y3c_c00371{bottom:1049.100000px;}
.y6_c00371{bottom:1052.250000px;}
.y5_c00371{bottom:1070.250000px;}
.y3b_c00371{bottom:1071.600000px;}
.y4_c00371{bottom:1087.950000px;}
.y3a_c00371{bottom:1089.300000px;}
.y3_c00371{bottom:1105.650000px;}
.y39_c00371{bottom:1107.300000px;}
.y38_c00371{bottom:1125.300000px;}
.y2_c00371{bottom:1127.550000px;}
.y1_c00371{bottom:1153.500000px;}
.h8_c00371{height:42.000000px;}
.h7_c00371{height:48.000000px;}
.h5_c00371{height:54.000000px;}
.h3_c00371{height:60.000000px;}
.h4_c00371{height:66.000000px;}
.h6_c00371{height:72.000000px;}
.h2_c00371{height:78.000000px;}
.h1_c00371{height:1271.250000px;}
.h0_c00371{height:1271.519990px;}
.w0_c00371{width:960.480010px;}
.w1_c00371{width:960.750000px;}
.x0_c00371{left:0.000000px;}
.x7e_c00371{left:204.150000px;}
.x2_c00371{left:205.950000px;}
.x78_c00371{left:219.150000px;}
.x50_c00371{left:220.200000px;}
.x81_c00371{left:222.150000px;}
.x3e_c00371{left:223.200000px;}
.x15_c00371{left:224.250000px;}
.xa9_c00371{left:230.250000px;}
.x79_c00371{left:232.500000px;}
.x5a_c00371{left:234.150000px;}
.x5f_c00371{left:235.350000px;}
.x87_c00371{left:237.900000px;}
.x63_c00371{left:239.700000px;}
.xa1_c00371{left:241.200000px;}
.x8_c00371{left:243.150000px;}
.x9f_c00371{left:247.050000px;}
.x3_c00371{left:249.900000px;}
.x94_c00371{left:252.150000px;}
.x66_c00371{left:256.800000px;}
.x21_c00371{left:259.200000px;}
.x9c_c00371{left:261.300000px;}
.x30_c00371{left:262.650000px;}
.x74_c00371{left:264.450000px;}
.x8d_c00371{left:265.500000px;}
.x45_c00371{left:266.700000px;}
.xa0_c00371{left:267.900000px;}
.x1b_c00371{left:268.950000px;}
.x22_c00371{left:271.050000px;}
.x3f_c00371{left:272.850000px;}
.x75_c00371{left:274.200000px;}
.x67_c00371{left:275.550000px;}
.x38_c00371{left:277.500000px;}
.x7d_c00371{left:279.150000px;}
.x88_c00371{left:282.150000px;}
.x9a_c00371{left:283.650000px;}
.x40_c00371{left:284.700000px;}
.x4_c00371{left:287.700000px;}
.x28_c00371{left:290.100000px;}
.x31_c00371{left:292.500000px;}
.xa2_c00371{left:294.750000px;}
.x60_c00371{left:297.300000px;}
.x7f_c00371{left:298.500000px;}
.x84_c00371{left:300.900000px;}
.x9_c00371{left:302.550000px;}
.x95_c00371{left:303.900000px;}
.x71_c00371{left:306.000000px;}
.x5b_c00371{left:307.650000px;}
.x39_c00371{left:308.850000px;}
.x98_c00371{left:310.200000px;}
.x41_c00371{left:311.700000px;}
.x54_c00371{left:313.200000px;}
.x1c_c00371{left:314.250000px;}
.x23_c00371{left:316.350000px;}
.x89_c00371{left:317.700000px;}
.x6f_c00371{left:320.700000px;}
.xa7_c00371{left:322.500000px;}
.xa_c00371{left:323.850000px;}
.x68_c00371{left:325.950000px;}
.x49_c00371{left:327.300000px;}
.x32_c00371{left:329.550000px;}
.xa8_c00371{left:330.900000px;}
.x61_c00371{left:332.550000px;}
.x64_c00371{left:334.500000px;}
.x46_c00371{left:337.650000px;}
.x24_c00371{left:338.700000px;}
.x51_c00371{left:340.350000px;}
.x72_c00371{left:342.600000px;}
.x16_c00371{left:344.400000px;}
.x4a_c00371{left:346.350000px;}
.x29_c00371{left:348.000000px;}
.xb_c00371{left:349.050000px;}
.x6a_c00371{left:350.250000px;}
.x5_c00371{left:351.750000px;}
.x82_c00371{left:353.550000px;}
.x47_c00371{left:354.900000px;}
.x9b_c00371{left:355.950000px;}
.x1d_c00371{left:357.150000px;}
.x3a_c00371{left:359.250000px;}
.x34_c00371{left:360.750000px;}
.x42_c00371{left:363.900000px;}
.x7c_c00371{left:364.950000px;}
.x8a_c00371{left:366.000000px;}
.x69_c00371{left:367.650000px;}
.x17_c00371{left:369.600000px;}
.x33_c00371{left:370.650000px;}
.x70_c00371{left:372.150000px;}
.xc_c00371{left:373.950000px;}
.x76_c00371{left:377.100000px;}
.x55_c00371{left:378.900000px;}
.x25_c00371{left:380.400000px;}
.x2a_c00371{left:381.900000px;}
.xa4_c00371{left:384.150000px;}
.x4b_c00371{left:385.200000px;}
.x6d_c00371{left:386.400000px;}
.x85_c00371{left:387.600000px;}
.x9d_c00371{left:390.150000px;}
.x35_c00371{left:391.650000px;}
.xd_c00371{left:392.700000px;}
.x7a_c00371{left:396.900000px;}
.x97_c00371{left:398.700000px;}
.x3b_c00371{left:400.650000px;}
.x6b_c00371{left:402.450000px;}
.xe_c00371{left:404.550000px;}
.x77_c00371{left:406.350000px;}
.x52_c00371{left:407.550000px;}
.x6_c00371{left:409.050000px;}
.x8e_c00371{left:410.100000px;}
.x1e_c00371{left:411.900000px;}
.x62_c00371{left:413.550000px;}
.x2b_c00371{left:415.050000px;}
.x3c_c00371{left:419.700000px;}
.x36_c00371{left:421.500000px;}
.xf_c00371{left:422.550000px;}
.x4c_c00371{left:423.750000px;}
.x9e_c00371{left:425.100000px;}
.x90_c00371{left:427.050000px;}
.x5c_c00371{left:428.700000px;}
.x6e_c00371{left:429.900000px;}
.x83_c00371{left:431.550000px;}
.x4d_c00371{left:432.750000px;}
.x2c_c00371{left:435.600000px;}
.x56_c00371{left:436.800000px;}
.x10_c00371{left:439.500000px;}
.x53_c00371{left:441.450000px;}
.x18_c00371{left:443.100000px;}
.x57_c00371{left:444.300000px;}
.x7_c00371{left:446.850000px;}
.x7b_c00371{left:449.100000px;}
.x1_c00371{left:451.050000px;}
.xa3_c00371{left:452.400000px;}
.x26_c00371{left:454.500000px;}
.x11_c00371{left:456.000000px;}
.x2d_c00371{left:457.950000px;}
.x93_c00371{left:459.300000px;}
.x48_c00371{left:461.400000px;}
.x4e_c00371{left:462.600000px;}
.x3d_c00371{left:465.450000px;}
.x86_c00371{left:466.800000px;}
.x5d_c00371{left:470.550000px;}
.x58_c00371{left:472.800000px;}
.x43_c00371{left:475.050000px;}
.x12_c00371{left:476.550000px;}
.x91_c00371{left:479.850000px;}
.x8c_c00371{left:481.950000px;}
.x1f_c00371{left:483.150000px;}
.x19_c00371{left:486.000000px;}
.x99_c00371{left:488.400000px;}
.xa5_c00371{left:490.950000px;}
.x96_c00371{left:492.150000px;}
.x4f_c00371{left:493.200000px;}
.x8f_c00371{left:494.700000px;}
.x27_c00371{left:495.900000px;}
.x2e_c00371{left:498.300000px;}
.x5e_c00371{left:500.100000px;}
.x59_c00371{left:501.300000px;}
.x13_c00371{left:502.500000px;}
.x20_c00371{left:505.050000px;}
.x1a_c00371{left:508.650000px;}
.x44_c00371{left:510.300000px;}
.x2f_c00371{left:512.400000px;}
.x6c_c00371{left:515.550000px;}
.x37_c00371{left:517.200000px;}
.x73_c00371{left:522.600000px;}
.x92_c00371{left:523.800000px;}
.x80_c00371{left:525.150000px;}
.x14_c00371{left:528.450000px;}
.x65_c00371{left:530.550000px;}
.xa6_c00371{left:533.850000px;}
.x8b_c00371{left:535.650000px;}
.x140_c00371{left:559.800000px;}
.xff_c00371{left:563.700000px;}
.x149_c00371{left:567.150000px;}
.x145_c00371{left:574.200000px;}
.x135_c00371{left:577.350000px;}
.x127_c00371{left:578.550000px;}
.x110_c00371{left:579.900000px;}
.xed_c00371{left:581.100000px;}
.xaa_c00371{left:582.150000px;}
.xce_c00371{left:583.500000px;}
.x14c_c00371{left:587.250000px;}
.xcf_c00371{left:592.500000px;}
.x146_c00371{left:596.850000px;}
.x13a_c00371{left:598.950000px;}
.x10b_c00371{left:600.600000px;}
.xc7_c00371{left:601.950000px;}
.x11e_c00371{left:606.000000px;}
.x13e_c00371{left:607.950000px;}
.xbb_c00371{left:609.000000px;}
.xb3_c00371{left:612.000000px;}
.x11c_c00371{left:613.050000px;}
.xab_c00371{left:614.250000px;}
.x111_c00371{left:616.200000px;}
.x14a_c00371{left:617.250000px;}
.xdb_c00371{left:621.600000px;}
.x100_c00371{left:624.150000px;}
.x11f_c00371{left:626.100000px;}
.xe5_c00371{left:627.150000px;}
.xee_c00371{left:629.400000px;}
.xd8_c00371{left:631.650000px;}
.x125_c00371{left:633.000000px;}
.xd4_c00371{left:634.950000px;}
.xc8_c00371{left:636.450000px;}
.xf8_c00371{left:638.250000px;}
.xc1_c00371{left:640.350000px;}
.x13b_c00371{left:642.900000px;}
.xef_c00371{left:644.850000px;}
.xd0_c00371{left:646.500000px;}
.xbc_c00371{left:647.550000px;}
.x12f_c00371{left:649.050000px;}
.xf9_c00371{left:650.850000px;}
.x126_c00371{left:652.500000px;}
.x116_c00371{left:654.300000px;}
.xb4_c00371{left:655.500000px;}
.xc9_c00371{left:658.050000px;}
.xd5_c00371{left:659.850000px;}
.x13f_c00371{left:661.650000px;}
.xf4_c00371{left:663.900000px;}
.x138_c00371{left:666.000000px;}
.xac_c00371{left:667.500000px;}
.x120_c00371{left:668.550000px;}
.xbd_c00371{left:670.200000px;}
.x106_c00371{left:672.300000px;}
.x11d_c00371{left:673.500000px;}
.x10c_c00371{left:674.700000px;}
.xc2_c00371{left:676.350000px;}
.xfa_c00371{left:679.950000px;}
.xde_c00371{left:682.050000px;}
.xc3_c00371{left:685.650000px;}
.x12b_c00371{left:687.300000px;}
.xe6_c00371{left:688.350000px;}
.xd9_c00371{left:691.350000px;}
.xb5_c00371{left:693.600000px;}
.xad_c00371{left:696.300000px;}
.xd1_c00371{left:697.950000px;}
.x123_c00371{left:700.050000px;}
.xca_c00371{left:703.350000px;}
.xe2_c00371{left:704.550000px;}
.x14e_c00371{left:706.500000px;}
.x141_c00371{left:707.550000px;}
.xe7_c00371{left:710.250000px;}
.xb6_c00371{left:713.100000px;}
.x130_c00371{left:715.950000px;}
.xf0_c00371{left:717.900000px;}
.x112_c00371{left:720.300000px;}
.x142_c00371{left:723.150000px;}
.xc4_c00371{left:724.200000px;}
.xdf_c00371{left:725.250000px;}
.xbe_c00371{left:727.050000px;}
.x101_c00371{left:729.300000px;}
.xae_c00371{left:730.500000px;}
.xe8_c00371{left:735.750000px;}
.x117_c00371{left:737.550000px;}
.x129_c00371{left:738.600000px;}
.xf1_c00371{left:740.550000px;}
.x118_c00371{left:742.350000px;}
.xf5_c00371{left:743.400000px;}
.x14b_c00371{left:744.750000px;}
.xaf_c00371{left:746.400000px;}
.x102_c00371{left:748.350000px;}
.xfb_c00371{left:749.400000px;}
.x14f_c00371{left:750.450000px;}
.xcb_c00371{left:751.650000px;}
.x133_c00371{left:753.000000px;}
.x12c_c00371{left:754.950000px;}
.xb7_c00371{left:759.150000px;}
.xe9_c00371{left:760.200000px;}
.x136_c00371{left:762.450000px;}
.x122_c00371{left:764.550000px;}
.xe0_c00371{left:768.750000px;}
.x124_c00371{left:770.250000px;}
.xc5_c00371{left:771.300000px;}
.xcc_c00371{left:772.500000px;}
.x12d_c00371{left:774.450000px;}
.xb0_c00371{left:775.500000px;}
.xe1_c00371{left:778.500000px;}
.x107_c00371{left:779.550000px;}
.x113_c00371{left:780.750000px;}
.xd6_c00371{left:784.500000px;}
.xb8_c00371{left:785.850000px;}
.xea_c00371{left:786.900000px;}
.x10d_c00371{left:788.100000px;}
.x128_c00371{left:789.300000px;}
.x119_c00371{left:790.950000px;}
.x150_c00371{left:792.900000px;}
.x14d_c00371{left:795.000000px;}
.xdc_c00371{left:797.250000px;}
.xe3_c00371{left:798.900000px;}
.xf2_c00371{left:799.950000px;}
.xda_c00371{left:801.600000px;}
.x13c_c00371{left:803.400000px;}
.xfc_c00371{left:805.200000px;}
.xf6_c00371{left:807.450000px;}
.x143_c00371{left:809.100000px;}
.x12a_c00371{left:811.050000px;}
.xb9_c00371{left:812.550000px;}
.x13d_c00371{left:814.950000px;}
.xbf_c00371{left:816.300000px;}
.xd2_c00371{left:817.800000px;}
.x10e_c00371{left:819.750000px;}
.x103_c00371{left:822.450000px;}
.xeb_c00371{left:824.400000px;}
.x147_c00371{left:825.600000px;}
.x144_c00371{left:828.000000px;}
.x121_c00371{left:829.200000px;}
.xf7_c00371{left:830.850000px;}
.x131_c00371{left:832.200000px;}
.x114_c00371{left:835.500000px;}
.xfd_c00371{left:836.850000px;}
.xcd_c00371{left:838.050000px;}
.xb1_c00371{left:840.600000px;}
.x12e_c00371{left:841.800000px;}
.x137_c00371{left:843.750000px;}
.x104_c00371{left:845.850000px;}
.x134_c00371{left:847.050000px;}
.xdd_c00371{left:848.400000px;}
.xd3_c00371{left:850.500000px;}
.xba_c00371{left:852.150000px;}
.x132_c00371{left:853.500000px;}
.x108_c00371{left:855.900000px;}
.xb2_c00371{left:857.850000px;}
.xfe_c00371{left:859.200000px;}
.x11a_c00371{left:861.150000px;}
.xe4_c00371{left:862.200000px;}
.x139_c00371{left:865.350000px;}
.x109_c00371{left:866.400000px;}
.x115_c00371{left:868.200000px;}
.x148_c00371{left:869.550000px;}
.xec_c00371{left:871.200000px;}
.xc0_c00371{left:872.550000px;}
.xc6_c00371{left:877.500000px;}
.x11b_c00371{left:879.450000px;}
.x10f_c00371{left:882.000000px;}
.xd7_c00371{left:884.700000px;}
.x105_c00371{left:886.500000px;}
.x10a_c00371{left:890.100000px;}
.xf3_c00371{left:895.050000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls2_c00371{letter-spacing:0.000000pt;}
.ls0_c00371{letter-spacing:56.000000pt;}
.ls1_c00371{letter-spacing:62.222222pt;}
.wsa_c00371{word-spacing:-88.888889pt;}
.ws3_c00371{word-spacing:-80.000000pt;}
.ws12_c00371{word-spacing:-4.867725pt;}
.ws0_c00371{word-spacing:-4.786325pt;}
.wsb_c00371{word-spacing:-3.363484pt;}
.ws11_c00371{word-spacing:-3.174603pt;}
.ws13_c00371{word-spacing:-1.588120pt;}
.wsc_c00371{word-spacing:-1.273885pt;}
.ws14_c00371{word-spacing:0.000000pt;}
.ws9_c00371{word-spacing:3.190883pt;}
.ws10_c00371{word-spacing:4.722222pt;}
.wse_c00371{word-spacing:9.333333pt;}
.wsd_c00371{word-spacing:11.331423pt;}
.wsf_c00371{word-spacing:11.805556pt;}
.ws4_c00371{word-spacing:20.632708pt;}
.ws6_c00371{word-spacing:22.857143pt;}
.ws2_c00371{word-spacing:23.492404pt;}
.ws8_c00371{word-spacing:28.666667pt;}
.ws1_c00371{word-spacing:32.000000pt;}
.ws5_c00371{word-spacing:35.555556pt;}
.ws7_c00371{word-spacing:44.814815pt;}
._5_c00371{margin-left:-62.222222pt;}
._0_c00371{margin-left:-56.000000pt;}
._4_c00371{width:3.703704pt;}
._2_c00371{width:47.492404pt;}
._1_c00371{width:58.518519pt;}
._3_c00371{width:65.925926pt;}
.fs6_c00371{font-size:37.333333pt;}
.fs5_c00371{font-size:42.666667pt;}
.fs3_c00371{font-size:48.000000pt;}
.fs1_c00371{font-size:53.333333pt;}
.fs2_c00371{font-size:58.666667pt;}
.fs4_c00371{font-size:64.000000pt;}
.fs0_c00371{font-size:69.333333pt;}
.y0_c00371{bottom:0.000000pt;}
.y6c_c00371{bottom:164.800000pt;}
.y6b_c00371{bottom:179.466667pt;}
.y37_c00371{bottom:179.866667pt;}
.y36_c00371{bottom:192.666667pt;}
.y6a_c00371{bottom:192.933333pt;}
.y69_c00371{bottom:205.066667pt;}
.y68_c00371{bottom:217.866667pt;}
.y67_c00371{bottom:230.666667pt;}
.y35_c00371{bottom:233.333333pt;}
.y66_c00371{bottom:243.466667pt;}
.y34_c00371{bottom:248.666667pt;}
.y65_c00371{bottom:256.266667pt;}
.y33_c00371{bottom:264.666667pt;}
.y64_c00371{bottom:268.800000pt;}
.y32_c00371{bottom:280.400000pt;}
.y63_c00371{bottom:281.866667pt;}
.y31_c00371{bottom:296.400000pt;}
.y30_c00371{bottom:312.666667pt;}
.y62_c00371{bottom:316.533333pt;}
.y2f_c00371{bottom:331.866667pt;}
.y61_c00371{bottom:332.800000pt;}
.y2e_c00371{bottom:347.600000pt;}
.y60_c00371{bottom:348.800000pt;}
.y2d_c00371{bottom:363.600000pt;}
.y5f_c00371{bottom:364.800000pt;}
.y2c_c00371{bottom:379.333333pt;}
.y5e_c00371{bottom:380.533333pt;}
.y2b_c00371{bottom:395.066667pt;}
.y5d_c00371{bottom:400.400000pt;}
.y2a_c00371{bottom:410.800000pt;}
.y5c_c00371{bottom:416.133333pt;}
.y29_c00371{bottom:426.800000pt;}
.y5b_c00371{bottom:431.866667pt;}
.y28_c00371{bottom:442.533333pt;}
.y5a_c00371{bottom:447.866667pt;}
.y27_c00371{bottom:458.533333pt;}
.y59_c00371{bottom:463.600000pt;}
.y26_c00371{bottom:474.533333pt;}
.y58_c00371{bottom:479.600000pt;}
.y25_c00371{bottom:490.800000pt;}
.y57_c00371{bottom:495.333333pt;}
.y24_c00371{bottom:506.533333pt;}
.y56_c00371{bottom:511.333333pt;}
.y23_c00371{bottom:522.533333pt;}
.y55_c00371{bottom:527.600000pt;}
.y22_c00371{bottom:538.266667pt;}
.y54_c00371{bottom:542.933333pt;}
.y21_c00371{bottom:553.866667pt;}
.y53_c00371{bottom:558.933333pt;}
.y20_c00371{bottom:572.266667pt;}
.y52_c00371{bottom:574.933333pt;}
.y1f_c00371{bottom:585.333333pt;}
.y51_c00371{bottom:590.666667pt;}
.y1e_c00371{bottom:598.133333pt;}
.y50_c00371{bottom:606.666667pt;}
.y1d_c00371{bottom:615.600000pt;}
.y4f_c00371{bottom:622.666667pt;}
.y1c_c00371{bottom:627.466667pt;}
.y4e_c00371{bottom:638.933333pt;}
.y1b_c00371{bottom:641.333333pt;}
.y1a_c00371{bottom:652.800000pt;}
.y4d_c00371{bottom:654.266667pt;}
.y19_c00371{bottom:665.333333pt;}
.y4c_c00371{bottom:670.266667pt;}
.y18_c00371{bottom:678.400000pt;}
.y4b_c00371{bottom:686.000000pt;}
.y17_c00371{bottom:692.133333pt;}
.y4a_c00371{bottom:702.000000pt;}
.y16_c00371{bottom:704.000000pt;}
.y15_c00371{bottom:717.733333pt;}
.y49_c00371{bottom:718.000000pt;}
.y14_c00371{bottom:730.533333pt;}
.y48_c00371{bottom:733.733333pt;}
.y13_c00371{bottom:743.066667pt;}
.y47_c00371{bottom:753.600000pt;}
.y12_c00371{bottom:755.333333pt;}
.y11_c00371{bottom:768.400000pt;}
.y46_c00371{bottom:769.600000pt;}
.y10_c00371{bottom:781.466667pt;}
.y45_c00371{bottom:785.600000pt;}
.yf_c00371{bottom:792.933333pt;}
.y44_c00371{bottom:801.333333pt;}
.ye_c00371{bottom:806.000000pt;}
.y43_c00371{bottom:817.333333pt;}
.yd_c00371{bottom:820.133333pt;}
.y42_c00371{bottom:833.333333pt;}
.yc_c00371{bottom:836.800000pt;}
.yb_c00371{bottom:852.533333pt;}
.y41_c00371{bottom:853.066667pt;}
.ya_c00371{bottom:868.533333pt;}
.y40_c00371{bottom:869.066667pt;}
.y9_c00371{bottom:883.866667pt;}
.y3f_c00371{bottom:884.800000pt;}
.y3e_c00371{bottom:900.800000pt;}
.y8_c00371{bottom:903.333333pt;}
.y3d_c00371{bottom:916.800000pt;}
.y7_c00371{bottom:919.333333pt;}
.y3c_c00371{bottom:932.533333pt;}
.y6_c00371{bottom:935.333333pt;}
.y5_c00371{bottom:951.333333pt;}
.y3b_c00371{bottom:952.533333pt;}
.y4_c00371{bottom:967.066667pt;}
.y3a_c00371{bottom:968.266667pt;}
.y3_c00371{bottom:982.800000pt;}
.y39_c00371{bottom:984.266667pt;}
.y38_c00371{bottom:1000.266667pt;}
.y2_c00371{bottom:1002.266667pt;}
.y1_c00371{bottom:1025.333333pt;}
.h8_c00371{height:37.333333pt;}
.h7_c00371{height:42.666667pt;}
.h5_c00371{height:48.000000pt;}
.h3_c00371{height:53.333333pt;}
.h4_c00371{height:58.666667pt;}
.h6_c00371{height:64.000000pt;}
.h2_c00371{height:69.333333pt;}
.h1_c00371{height:1130.000000pt;}
.h0_c00371{height:1130.239991pt;}
.w0_c00371{width:853.760009pt;}
.w1_c00371{width:854.000000pt;}
.x0_c00371{left:0.000000pt;}
.x7e_c00371{left:181.466667pt;}
.x2_c00371{left:183.066667pt;}
.x78_c00371{left:194.800000pt;}
.x50_c00371{left:195.733333pt;}
.x81_c00371{left:197.466667pt;}
.x3e_c00371{left:198.400000pt;}
.x15_c00371{left:199.333333pt;}
.xa9_c00371{left:204.666667pt;}
.x79_c00371{left:206.666667pt;}
.x5a_c00371{left:208.133333pt;}
.x5f_c00371{left:209.200000pt;}
.x87_c00371{left:211.466667pt;}
.x63_c00371{left:213.066667pt;}
.xa1_c00371{left:214.400000pt;}
.x8_c00371{left:216.133333pt;}
.x9f_c00371{left:219.600000pt;}
.x3_c00371{left:222.133333pt;}
.x94_c00371{left:224.133333pt;}
.x66_c00371{left:228.266667pt;}
.x21_c00371{left:230.400000pt;}
.x9c_c00371{left:232.266667pt;}
.x30_c00371{left:233.466667pt;}
.x74_c00371{left:235.066667pt;}
.x8d_c00371{left:236.000000pt;}
.x45_c00371{left:237.066667pt;}
.xa0_c00371{left:238.133333pt;}
.x1b_c00371{left:239.066667pt;}
.x22_c00371{left:240.933333pt;}
.x3f_c00371{left:242.533333pt;}
.x75_c00371{left:243.733333pt;}
.x67_c00371{left:244.933333pt;}
.x38_c00371{left:246.666667pt;}
.x7d_c00371{left:248.133333pt;}
.x88_c00371{left:250.800000pt;}
.x9a_c00371{left:252.133333pt;}
.x40_c00371{left:253.066667pt;}
.x4_c00371{left:255.733333pt;}
.x28_c00371{left:257.866667pt;}
.x31_c00371{left:260.000000pt;}
.xa2_c00371{left:262.000000pt;}
.x60_c00371{left:264.266667pt;}
.x7f_c00371{left:265.333333pt;}
.x84_c00371{left:267.466667pt;}
.x9_c00371{left:268.933333pt;}
.x95_c00371{left:270.133333pt;}
.x71_c00371{left:272.000000pt;}
.x5b_c00371{left:273.466667pt;}
.x39_c00371{left:274.533333pt;}
.x98_c00371{left:275.733333pt;}
.x41_c00371{left:277.066667pt;}
.x54_c00371{left:278.400000pt;}
.x1c_c00371{left:279.333333pt;}
.x23_c00371{left:281.200000pt;}
.x89_c00371{left:282.400000pt;}
.x6f_c00371{left:285.066667pt;}
.xa7_c00371{left:286.666667pt;}
.xa_c00371{left:287.866667pt;}
.x68_c00371{left:289.733333pt;}
.x49_c00371{left:290.933333pt;}
.x32_c00371{left:292.933333pt;}
.xa8_c00371{left:294.133333pt;}
.x61_c00371{left:295.600000pt;}
.x64_c00371{left:297.333333pt;}
.x46_c00371{left:300.133333pt;}
.x24_c00371{left:301.066667pt;}
.x51_c00371{left:302.533333pt;}
.x72_c00371{left:304.533333pt;}
.x16_c00371{left:306.133333pt;}
.x4a_c00371{left:307.866667pt;}
.x29_c00371{left:309.333333pt;}
.xb_c00371{left:310.266667pt;}
.x6a_c00371{left:311.333333pt;}
.x5_c00371{left:312.666667pt;}
.x82_c00371{left:314.266667pt;}
.x47_c00371{left:315.466667pt;}
.x9b_c00371{left:316.400000pt;}
.x1d_c00371{left:317.466667pt;}
.x3a_c00371{left:319.333333pt;}
.x34_c00371{left:320.666667pt;}
.x42_c00371{left:323.466667pt;}
.x7c_c00371{left:324.400000pt;}
.x8a_c00371{left:325.333333pt;}
.x69_c00371{left:326.800000pt;}
.x17_c00371{left:328.533333pt;}
.x33_c00371{left:329.466667pt;}
.x70_c00371{left:330.800000pt;}
.xc_c00371{left:332.400000pt;}
.x76_c00371{left:335.200000pt;}
.x55_c00371{left:336.800000pt;}
.x25_c00371{left:338.133333pt;}
.x2a_c00371{left:339.466667pt;}
.xa4_c00371{left:341.466667pt;}
.x4b_c00371{left:342.400000pt;}
.x6d_c00371{left:343.466667pt;}
.x85_c00371{left:344.533333pt;}
.x9d_c00371{left:346.800000pt;}
.x35_c00371{left:348.133333pt;}
.xd_c00371{left:349.066667pt;}
.x7a_c00371{left:352.800000pt;}
.x97_c00371{left:354.400000pt;}
.x3b_c00371{left:356.133333pt;}
.x6b_c00371{left:357.733333pt;}
.xe_c00371{left:359.600000pt;}
.x77_c00371{left:361.200000pt;}
.x52_c00371{left:362.266667pt;}
.x6_c00371{left:363.600000pt;}
.x8e_c00371{left:364.533333pt;}
.x1e_c00371{left:366.133333pt;}
.x62_c00371{left:367.600000pt;}
.x2b_c00371{left:368.933333pt;}
.x3c_c00371{left:373.066667pt;}
.x36_c00371{left:374.666667pt;}
.xf_c00371{left:375.600000pt;}
.x4c_c00371{left:376.666667pt;}
.x9e_c00371{left:377.866667pt;}
.x90_c00371{left:379.600000pt;}
.x5c_c00371{left:381.066667pt;}
.x6e_c00371{left:382.133333pt;}
.x83_c00371{left:383.600000pt;}
.x4d_c00371{left:384.666667pt;}
.x2c_c00371{left:387.200000pt;}
.x56_c00371{left:388.266667pt;}
.x10_c00371{left:390.666667pt;}
.x53_c00371{left:392.400000pt;}
.x18_c00371{left:393.866667pt;}
.x57_c00371{left:394.933333pt;}
.x7_c00371{left:397.200000pt;}
.x7b_c00371{left:399.200000pt;}
.x1_c00371{left:400.933333pt;}
.xa3_c00371{left:402.133333pt;}
.x26_c00371{left:404.000000pt;}
.x11_c00371{left:405.333333pt;}
.x2d_c00371{left:407.066667pt;}
.x93_c00371{left:408.266667pt;}
.x48_c00371{left:410.133333pt;}
.x4e_c00371{left:411.200000pt;}
.x3d_c00371{left:413.733333pt;}
.x86_c00371{left:414.933333pt;}
.x5d_c00371{left:418.266667pt;}
.x58_c00371{left:420.266667pt;}
.x43_c00371{left:422.266667pt;}
.x12_c00371{left:423.600000pt;}
.x91_c00371{left:426.533333pt;}
.x8c_c00371{left:428.400000pt;}
.x1f_c00371{left:429.466667pt;}
.x19_c00371{left:432.000000pt;}
.x99_c00371{left:434.133333pt;}
.xa5_c00371{left:436.400000pt;}
.x96_c00371{left:437.466667pt;}
.x4f_c00371{left:438.400000pt;}
.x8f_c00371{left:439.733333pt;}
.x27_c00371{left:440.800000pt;}
.x2e_c00371{left:442.933333pt;}
.x5e_c00371{left:444.533333pt;}
.x59_c00371{left:445.600000pt;}
.x13_c00371{left:446.666667pt;}
.x20_c00371{left:448.933333pt;}
.x1a_c00371{left:452.133333pt;}
.x44_c00371{left:453.600000pt;}
.x2f_c00371{left:455.466667pt;}
.x6c_c00371{left:458.266667pt;}
.x37_c00371{left:459.733333pt;}
.x73_c00371{left:464.533333pt;}
.x92_c00371{left:465.600000pt;}
.x80_c00371{left:466.800000pt;}
.x14_c00371{left:469.733333pt;}
.x65_c00371{left:471.600000pt;}
.xa6_c00371{left:474.533333pt;}
.x8b_c00371{left:476.133333pt;}
.x140_c00371{left:497.600000pt;}
.xff_c00371{left:501.066667pt;}
.x149_c00371{left:504.133333pt;}
.x145_c00371{left:510.400000pt;}
.x135_c00371{left:513.200000pt;}
.x127_c00371{left:514.266667pt;}
.x110_c00371{left:515.466667pt;}
.xed_c00371{left:516.533333pt;}
.xaa_c00371{left:517.466667pt;}
.xce_c00371{left:518.666667pt;}
.x14c_c00371{left:522.000000pt;}
.xcf_c00371{left:526.666667pt;}
.x146_c00371{left:530.533333pt;}
.x13a_c00371{left:532.400000pt;}
.x10b_c00371{left:533.866667pt;}
.xc7_c00371{left:535.066667pt;}
.x11e_c00371{left:538.666667pt;}
.x13e_c00371{left:540.400000pt;}
.xbb_c00371{left:541.333333pt;}
.xb3_c00371{left:544.000000pt;}
.x11c_c00371{left:544.933333pt;}
.xab_c00371{left:546.000000pt;}
.x111_c00371{left:547.733333pt;}
.x14a_c00371{left:548.666667pt;}
.xdb_c00371{left:552.533333pt;}
.x100_c00371{left:554.800000pt;}
.x11f_c00371{left:556.533333pt;}
.xe5_c00371{left:557.466667pt;}
.xee_c00371{left:559.466667pt;}
.xd8_c00371{left:561.466667pt;}
.x125_c00371{left:562.666667pt;}
.xd4_c00371{left:564.400000pt;}
.xc8_c00371{left:565.733333pt;}
.xf8_c00371{left:567.333333pt;}
.xc1_c00371{left:569.200000pt;}
.x13b_c00371{left:571.466667pt;}
.xef_c00371{left:573.200000pt;}
.xd0_c00371{left:574.666667pt;}
.xbc_c00371{left:575.600000pt;}
.x12f_c00371{left:576.933333pt;}
.xf9_c00371{left:578.533333pt;}
.x126_c00371{left:580.000000pt;}
.x116_c00371{left:581.600000pt;}
.xb4_c00371{left:582.666667pt;}
.xc9_c00371{left:584.933333pt;}
.xd5_c00371{left:586.533333pt;}
.x13f_c00371{left:588.133333pt;}
.xf4_c00371{left:590.133333pt;}
.x138_c00371{left:592.000000pt;}
.xac_c00371{left:593.333333pt;}
.x120_c00371{left:594.266667pt;}
.xbd_c00371{left:595.733333pt;}
.x106_c00371{left:597.600000pt;}
.x11d_c00371{left:598.666667pt;}
.x10c_c00371{left:599.733333pt;}
.xc2_c00371{left:601.200000pt;}
.xfa_c00371{left:604.400000pt;}
.xde_c00371{left:606.266667pt;}
.xc3_c00371{left:609.466667pt;}
.x12b_c00371{left:610.933333pt;}
.xe6_c00371{left:611.866667pt;}
.xd9_c00371{left:614.533333pt;}
.xb5_c00371{left:616.533333pt;}
.xad_c00371{left:618.933333pt;}
.xd1_c00371{left:620.400000pt;}
.x123_c00371{left:622.266667pt;}
.xca_c00371{left:625.200000pt;}
.xe2_c00371{left:626.266667pt;}
.x14e_c00371{left:628.000000pt;}
.x141_c00371{left:628.933333pt;}
.xe7_c00371{left:631.333333pt;}
.xb6_c00371{left:633.866667pt;}
.x130_c00371{left:636.400000pt;}
.xf0_c00371{left:638.133333pt;}
.x112_c00371{left:640.266667pt;}
.x142_c00371{left:642.800000pt;}
.xc4_c00371{left:643.733333pt;}
.xdf_c00371{left:644.666667pt;}
.xbe_c00371{left:646.266667pt;}
.x101_c00371{left:648.266667pt;}
.xae_c00371{left:649.333333pt;}
.xe8_c00371{left:654.000000pt;}
.x117_c00371{left:655.600000pt;}
.x129_c00371{left:656.533333pt;}
.xf1_c00371{left:658.266667pt;}
.x118_c00371{left:659.866667pt;}
.xf5_c00371{left:660.800000pt;}
.x14b_c00371{left:662.000000pt;}
.xaf_c00371{left:663.466667pt;}
.x102_c00371{left:665.200000pt;}
.xfb_c00371{left:666.133333pt;}
.x14f_c00371{left:667.066667pt;}
.xcb_c00371{left:668.133333pt;}
.x133_c00371{left:669.333333pt;}
.x12c_c00371{left:671.066667pt;}
.xb7_c00371{left:674.800000pt;}
.xe9_c00371{left:675.733333pt;}
.x136_c00371{left:677.733333pt;}
.x122_c00371{left:679.600000pt;}
.xe0_c00371{left:683.333333pt;}
.x124_c00371{left:684.666667pt;}
.xc5_c00371{left:685.600000pt;}
.xcc_c00371{left:686.666667pt;}
.x12d_c00371{left:688.400000pt;}
.xb0_c00371{left:689.333333pt;}
.xe1_c00371{left:692.000000pt;}
.x107_c00371{left:692.933333pt;}
.x113_c00371{left:694.000000pt;}
.xd6_c00371{left:697.333333pt;}
.xb8_c00371{left:698.533333pt;}
.xea_c00371{left:699.466667pt;}
.x10d_c00371{left:700.533333pt;}
.x128_c00371{left:701.600000pt;}
.x119_c00371{left:703.066667pt;}
.x150_c00371{left:704.800000pt;}
.x14d_c00371{left:706.666667pt;}
.xdc_c00371{left:708.666667pt;}
.xe3_c00371{left:710.133333pt;}
.xf2_c00371{left:711.066667pt;}
.xda_c00371{left:712.533333pt;}
.x13c_c00371{left:714.133333pt;}
.xfc_c00371{left:715.733333pt;}
.xf6_c00371{left:717.733333pt;}
.x143_c00371{left:719.200000pt;}
.x12a_c00371{left:720.933333pt;}
.xb9_c00371{left:722.266667pt;}
.x13d_c00371{left:724.400000pt;}
.xbf_c00371{left:725.600000pt;}
.xd2_c00371{left:726.933333pt;}
.x10e_c00371{left:728.666667pt;}
.x103_c00371{left:731.066667pt;}
.xeb_c00371{left:732.800000pt;}
.x147_c00371{left:733.866667pt;}
.x144_c00371{left:736.000000pt;}
.x121_c00371{left:737.066667pt;}
.xf7_c00371{left:738.533333pt;}
.x131_c00371{left:739.733333pt;}
.x114_c00371{left:742.666667pt;}
.xfd_c00371{left:743.866667pt;}
.xcd_c00371{left:744.933333pt;}
.xb1_c00371{left:747.200000pt;}
.x12e_c00371{left:748.266667pt;}
.x137_c00371{left:750.000000pt;}
.x104_c00371{left:751.866667pt;}
.x134_c00371{left:752.933333pt;}
.xdd_c00371{left:754.133333pt;}
.xd3_c00371{left:756.000000pt;}
.xba_c00371{left:757.466667pt;}
.x132_c00371{left:758.666667pt;}
.x108_c00371{left:760.800000pt;}
.xb2_c00371{left:762.533333pt;}
.xfe_c00371{left:763.733333pt;}
.x11a_c00371{left:765.466667pt;}
.xe4_c00371{left:766.400000pt;}
.x139_c00371{left:769.200000pt;}
.x109_c00371{left:770.133333pt;}
.x115_c00371{left:771.733333pt;}
.x148_c00371{left:772.933333pt;}
.xec_c00371{left:774.400000pt;}
.xc0_c00371{left:775.600000pt;}
.xc6_c00371{left:780.000000pt;}
.x11b_c00371{left:781.733333pt;}
.x10f_c00371{left:784.000000pt;}
.xd7_c00371{left:786.400000pt;}
.x105_c00371{left:788.000000pt;}
.x10a_c00371{left:791.200000pt;}
.xf3_c00371{left:795.600000pt;}
}





/* 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_c00372 {
    display:none;
  }
  .loading-indicator_c00372.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00372 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_c00372 { 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_c00372" -> "#page-container .classname_c00372")
 */
.pf_c00372 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00372 { /* 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_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00372 { /* 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_c00372 { /* 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_c00372 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00372 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00372 {overflow:visible;}
  }
}
.c_c00372 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00372 { /* 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_c00372:after { /* webkit #35443 */
  content: '';
}
.t_c00372:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00372 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 */
}
.__c00372 { /* 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_c00372 { /* info for Javascript */
  display:none;
}
.l_c00372 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00372 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00372 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00372: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_c00372 {
    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_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00372.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_c00372 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00372;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.000000;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;}
.m8b_c00372{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00372{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m35_c00372{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m90_c00372{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m69_c00372{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m68_c00372{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m74_c00372{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00372{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m80_c00372{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m73_c00372{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m19_c00372{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00372{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00372{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00372{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m60_c00372{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mf_c00372{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m92_c00372{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m81_c00372{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00372{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00372{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m76_c00372{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m39_c00372{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m67_c00372{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.md9_c00372{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00372{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00372{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m94_c00372{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.med_c00372{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00372{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m37_c00372{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m75_c00372{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00372{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m54_c00372{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m86_c00372{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m95_c00372{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.meb_c00372{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00372{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00372{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00372{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m45_c00372{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m34_c00372{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m98_c00372{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m32_c00372{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00372{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00372{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m44_c00372{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m65_c00372{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m13_c00372{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00372{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00372{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00372{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00372{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00372{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mad_c00372{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mef_c00372{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2_c00372{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00372{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00372{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m33_c00372{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m11_c00372{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00372{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9_c00372{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00372{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m116_c00372{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m128_c00372{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m112_c00372{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00372{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md1_c00372{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m88_c00372{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00372{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m114_c00372{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00372{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00372{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mea_c00372{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00372{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00372{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m129_c00372{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00372{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m66_c00372{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00372{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m46_c00372{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m102_c00372{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00372{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00372{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00372{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me3_c00372{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00372{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00372{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m42_c00372{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m104_c00372{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.md0_c00372{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00372{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m27_c00372{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00372{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00372{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m111_c00372{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00372{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00372{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.md2_c00372{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mb_c00372{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m41_c00372{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m38_c00372{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6_c00372{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00372{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me9_c00372{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m62_c00372{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00372{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00372{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00372{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m124_c00372{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00372{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md4_c00372{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00372{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00372{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m14_c00372{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00372{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00372{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00372{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00372{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m22_c00372{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md6_c00372{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m18_c00372{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md8_c00372{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00372{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00372{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00372{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00372{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00372{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc_c00372{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00372{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00372{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00372{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mde_c00372{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00372{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00372{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mee_c00372{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m53_c00372{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m20_c00372{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00372{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m50_c00372{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00372{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00372{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00372{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00372{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m48_c00372{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m36_c00372{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00372{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m117_c00372{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mce_c00372{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00372{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m56_c00372{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00372{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00372{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00372{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m26_c00372{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m28_c00372{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00372{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m89_c00372{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m115_c00372{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m87_c00372{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00372{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m72_c00372{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00372{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1_c00372{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m63_c00372{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00372{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m125_c00372{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00372{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m70_c00372{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00372{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m12_c00372{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me5_c00372{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00372{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m16_c00372{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m106_c00372{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5_c00372{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00372{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00372{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me_c00372{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m96_c00372{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mba_c00372{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m24_c00372{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me1_c00372{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m119_c00372{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m21_c00372{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00372{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m49_c00372{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00372{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00372{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00372{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m40_c00372{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00372{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m123_c00372{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00372{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00372{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00372{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00372{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mae_c00372{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.maf_c00372{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00372{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8_c00372{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m25_c00372{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mec_c00372{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m100_c00372{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m15_c00372{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mab_c00372{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m108_c00372{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m64_c00372{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4_c00372{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md3_c00372{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m97_c00372{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m58_c00372{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m79_c00372{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m126_c00372{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m7_c00372{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m85_c00372{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00372{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me0_c00372{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00372{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00372{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00372{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me2_c00372{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m127_c00372{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me8_c00372{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00372{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m29_c00372{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3_c00372{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mda_c00372{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m23_c00372{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00372{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m61_c00372{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md5_c00372{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mac_c00372{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00372{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m107_c00372{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m17_c00372{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00372{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00372{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m122_c00372{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m30_c00372{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00372{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00372{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00372{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00372{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m47_c00372{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m57_c00372{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m105_c00372{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00372{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m103_c00372{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m55_c00372{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m10_c00372{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m78_c00372{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00372{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00372{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md7_c00372{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m52_c00372{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00372{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma_c00372{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00372{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);}
.me7_c00372{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m113_c00372{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m59_c00372{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m121_c00372{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me4_c00372{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00372{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00372{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00372{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m84_c00372{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00372{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00372{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m31_c00372{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00372{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me6_c00372{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00372{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m101_c00372{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.maa_c00372{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m82_c00372{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00372{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00372{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m91_c00372{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00372{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m109_c00372{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m93_c00372{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m51_c00372{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00372{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m118_c00372{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md_c00372{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00372{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00372{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00372{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mca_c00372{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m120_c00372{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m110_c00372{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mff_c00372{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00372{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m0_c00372{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m71_c00372{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00372{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m99_c00372{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m77_c00372{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00372{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m43_c00372{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m83_c00372{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00372{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls0_c00372{letter-spacing:0.000000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{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__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c00372{word-spacing:-12.948718px;}
.wse_c00372{word-spacing:-10.625000px;}
.ws10_c00372{word-spacing:-4.285714px;}
.ws12_c00372{word-spacing:0.000000px;}
.ws0_c00372{word-spacing:0.578313px;}
.wsd_c00372{word-spacing:5.221954px;}
.ws6_c00372{word-spacing:7.126005px;}
.ws9_c00372{word-spacing:23.211796px;}
.wsf_c00372{word-spacing:24.269923px;}
.ws3_c00372{word-spacing:25.714286px;}
.ws5_c00372{word-spacing:29.285714px;}
.ws8_c00372{word-spacing:36.000000px;}
.ws7_c00372{word-spacing:39.750000px;}
.ws4_c00372{word-spacing:40.000000px;}
.ws2_c00372{word-spacing:43.923664px;}
.wsb_c00372{word-spacing:44.166667px;}
.ws1_c00372{word-spacing:48.503817px;}
.wsa_c00372{word-spacing:53.966261px;}
.wsc_c00372{word-spacing:141.250000px;}
._4_c00372{width:52.142857px;}
._1_c00372{width:53.428954px;}
._0_c00372{width:64.642857px;}
._2_c00372{width:74.166667px;}
._3_c00372{width:180.000000px;}
.fc0_c00372{color:transparent;}
.fs6_c00372{font-size:54.000000px;}
.fs5_c00372{font-size:60.000000px;}
.fs2_c00372{font-size:66.000000px;}
.fs4_c00372{font-size:72.000000px;}
.fs3_c00372{font-size:78.000000px;}
.fs1_c00372{font-size:96.000000px;}
.fs0_c00372{font-size:114.000000px;}
.y0_c00372{bottom:0.000000px;}
.y6e_c00372{bottom:162.750000px;}
.y6d_c00372{bottom:183.300000px;}
.y38_c00372{bottom:183.600000px;}
.y6c_c00372{bottom:198.000000px;}
.y37_c00372{bottom:201.900000px;}
.y6b_c00372{bottom:212.400000px;}
.y36_c00372{bottom:223.950000px;}
.y6a_c00372{bottom:226.800000px;}
.y69_c00372{bottom:241.200000px;}
.y35_c00372{bottom:242.250000px;}
.y68_c00372{bottom:255.600000px;}
.y34_c00372{bottom:260.250000px;}
.y67_c00372{bottom:270.300000px;}
.y33_c00372{bottom:277.950000px;}
.y66_c00372{bottom:284.400000px;}
.y32_c00372{bottom:295.950000px;}
.y65_c00372{bottom:299.100000px;}
.y64_c00372{bottom:313.500000px;}
.y31_c00372{bottom:317.100000px;}
.y63_c00372{bottom:327.900000px;}
.y30_c00372{bottom:335.400000px;}
.y62_c00372{bottom:342.300000px;}
.y2f_c00372{bottom:353.400000px;}
.y61_c00372{bottom:358.950000px;}
.y2e_c00372{bottom:371.400000px;}
.y60_c00372{bottom:375.150000px;}
.y5f_c00372{bottom:389.250000px;}
.y2d_c00372{bottom:389.400000px;}
.y5e_c00372{bottom:403.650000px;}
.y2c_c00372{bottom:407.100000px;}
.y5d_c00372{bottom:417.750000px;}
.y2b_c00372{bottom:424.800000px;}
.y5c_c00372{bottom:431.850000px;}
.y2a_c00372{bottom:442.800000px;}
.y5b_c00372{bottom:445.950000px;}
.y5a_c00372{bottom:460.350000px;}
.y29_c00372{bottom:460.500000px;}
.y59_c00372{bottom:474.750000px;}
.y28_c00372{bottom:478.800000px;}
.y58_c00372{bottom:488.850000px;}
.y27_c00372{bottom:496.500000px;}
.y57_c00372{bottom:504.000000px;}
.y26_c00372{bottom:514.500000px;}
.y56_c00372{bottom:522.750000px;}
.y25_c00372{bottom:536.100000px;}
.y55_c00372{bottom:537.150000px;}
.y24_c00372{bottom:549.000000px;}
.y54_c00372{bottom:551.250000px;}
.y23_c00372{bottom:565.200000px;}
.y53_c00372{bottom:565.650000px;}
.y22_c00372{bottom:578.250000px;}
.y52_c00372{bottom:580.050000px;}
.y21_c00372{bottom:592.650000px;}
.y51_c00372{bottom:594.450000px;}
.y20_c00372{bottom:609.150000px;}
.y1f_c00372{bottom:621.750000px;}
.y50_c00372{bottom:627.450000px;}
.y1e_c00372{bottom:637.950000px;}
.y4f_c00372{bottom:641.850000px;}
.y1d_c00372{bottom:650.400000px;}
.y1c_c00372{bottom:666.300000px;}
.y1b_c00372{bottom:680.700000px;}
.y1a_c00372{bottom:694.050000px;}
.y4e_c00372{bottom:698.400000px;}
.y19_c00372{bottom:709.500000px;}
.y4d_c00372{bottom:716.100000px;}
.y18_c00372{bottom:722.400000px;}
.y4c_c00372{bottom:733.800000px;}
.y17_c00372{bottom:736.500000px;}
.y16_c00372{bottom:753.450000px;}
.y15_c00372{bottom:770.400000px;}
.y4b_c00372{bottom:786.300000px;}
.y14_c00372{bottom:790.200000px;}
.y4a_c00372{bottom:804.150000px;}
.y13_c00372{bottom:807.900000px;}
.y49_c00372{bottom:821.850000px;}
.y12_c00372{bottom:825.900000px;}
.y48_c00372{bottom:839.550000px;}
.y11_c00372{bottom:847.050000px;}
.y47_c00372{bottom:857.250000px;}
.y10_c00372{bottom:865.650000px;}
.y46_c00372{bottom:874.950000px;}
.yf_c00372{bottom:883.650000px;}
.y45_c00372{bottom:892.950000px;}
.ye_c00372{bottom:901.650000px;}
.y44_c00372{bottom:910.650000px;}
.yd_c00372{bottom:919.350000px;}
.y43_c00372{bottom:928.650000px;}
.yc_c00372{bottom:938.400000px;}
.y42_c00372{bottom:946.350000px;}
.yb_c00372{bottom:957.900000px;}
.y41_c00372{bottom:964.050000px;}
.y40_c00372{bottom:982.050000px;}
.ya_c00372{bottom:983.550000px;}
.y9_c00372{bottom:1002.300000px;}
.y3f_c00372{bottom:1008.750000px;}
.y8_c00372{bottom:1023.900000px;}
.y3e_c00372{bottom:1026.750000px;}
.y7_c00372{bottom:1042.200000px;}
.y3d_c00372{bottom:1044.750000px;}
.y6_c00372{bottom:1060.200000px;}
.y3c_c00372{bottom:1062.450000px;}
.y5_c00372{bottom:1078.200000px;}
.y3b_c00372{bottom:1080.150000px;}
.y4_c00372{bottom:1096.200000px;}
.y3a_c00372{bottom:1098.450000px;}
.y3_c00372{bottom:1114.200000px;}
.y39_c00372{bottom:1115.700000px;}
.y2_c00372{bottom:1141.650000px;}
.y1_c00372{bottom:1142.700000px;}
.h8_c00372{height:54.000000px;}
.h7_c00372{height:60.000000px;}
.h4_c00372{height:66.000000px;}
.h6_c00372{height:72.000000px;}
.h5_c00372{height:78.000000px;}
.h3_c00372{height:96.000000px;}
.h2_c00372{height:114.000000px;}
.h1_c00372{height:1270.500000px;}
.h0_c00372{height:1270.799927px;}
.w0_c00372{width:960.480010px;}
.w1_c00372{width:960.750000px;}
.x0_c00372{left:0.000000px;}
.x30_c00372{left:92.550000px;}
.x85_c00372{left:96.450000px;}
.xa9_c00372{left:100.050000px;}
.x7c_c00372{left:104.100000px;}
.xa_c00372{left:107.100000px;}
.x3_c00372{left:109.500000px;}
.x44_c00372{left:110.550000px;}
.x88_c00372{left:114.750000px;}
.x8e_c00372{left:115.800000px;}
.x9e_c00372{left:116.850000px;}
.xa5_c00372{left:118.200000px;}
.x3e_c00372{left:119.400000px;}
.x66_c00372{left:123.000000px;}
.x7d_c00372{left:124.950000px;}
.x82_c00372{left:126.150000px;}
.xa1_c00372{left:127.200000px;}
.xb_c00372{left:128.400000px;}
.x58_c00372{left:130.650000px;}
.x9f_c00372{left:135.000000px;}
.x31_c00372{left:137.250000px;}
.x4a_c00372{left:138.300000px;}
.x1f_c00372{left:140.700000px;}
.x89_c00372{left:143.250000px;}
.x19_c00372{left:145.500000px;}
.x7e_c00372{left:146.850000px;}
.x3f_c00372{left:147.900000px;}
.x4_c00372{left:149.400000px;}
.xa2_c00372{left:151.350000px;}
.x5f_c00372{left:153.300000px;}
.x20_c00372{left:155.100000px;}
.x1a_c00372{left:156.300000px;}
.x50_c00372{left:157.650000px;}
.x46_c00372{left:158.850000px;}
.x94_c00372{left:160.500000px;}
.xaa_c00372{left:161.550000px;}
.x2a_c00372{left:162.750000px;}
.x73_c00372{left:165.300000px;}
.x80_c00372{left:169.650000px;}
.x95_c00372{left:172.050000px;}
.x32_c00372{left:174.300000px;}
.x1b_c00372{left:176.400000px;}
.x13_c00372{left:177.900000px;}
.x59_c00372{left:181.050000px;}
.x21_c00372{left:183.600000px;}
.x70_c00372{left:186.150000px;}
.x40_c00372{left:188.250000px;}
.x67_c00372{left:192.900000px;}
.x6e_c00372{left:194.250000px;}
.x39_c00372{left:197.100000px;}
.x45_c00372{left:198.150000px;}
.x8a_c00372{left:200.100000px;}
.x47_c00372{left:202.350000px;}
.x4b_c00372{left:203.850000px;}
.x91_c00372{left:206.100000px;}
.x96_c00372{left:207.300000px;}
.x51_c00372{left:208.800000px;}
.xc_c00372{left:210.150000px;}
.x27_c00372{left:211.350000px;}
.x14_c00372{left:213.600000px;}
.x2b_c00372{left:218.250000px;}
.x5_c00372{left:221.400000px;}
.x62_c00372{left:222.450000px;}
.x79_c00372{left:223.800000px;}
.x68_c00372{left:225.000000px;}
.x81_c00372{left:227.850000px;}
.x6a_c00372{left:228.900000px;}
.xd_c00372{left:230.700000px;}
.x2f_c00372{left:233.700000px;}
.x15_c00372{left:235.200000px;}
.x6b_c00372{left:236.400000px;}
.x33_c00372{left:237.600000px;}
.xa6_c00372{left:238.800000px;}
.x1c_c00372{left:241.200000px;}
.x69_c00372{left:242.250000px;}
.x52_c00372{left:244.050000px;}
.x83_c00372{left:246.000000px;}
.x71_c00372{left:247.050000px;}
.xa3_c00372{left:249.450000px;}
.x6_c00372{left:252.000000px;}
.x28_c00372{left:253.800000px;}
.x41_c00372{left:254.850000px;}
.xa7_c00372{left:256.050000px;}
.x74_c00372{left:257.100000px;}
.x60_c00372{left:258.450000px;}
.x63_c00372{left:259.500000px;}
.x2c_c00372{left:260.700000px;}
.x1d_c00372{left:261.750000px;}
.x5a_c00372{left:263.100000px;}
.x6f_c00372{left:264.750000px;}
.x98_c00372{left:266.400000px;}
.x7a_c00372{left:267.900000px;}
.x86_c00372{left:270.300000px;}
.x64_c00372{left:273.900000px;}
.x72_c00372{left:274.950000px;}
.x75_c00372{left:276.150000px;}
.x29_c00372{left:279.000000px;}
.x35_c00372{left:282.600000px;}
.x16_c00372{left:284.850000px;}
.x3a_c00372{left:287.100000px;}
.x36_c00372{left:289.800000px;}
.x78_c00372{left:291.750000px;}
.x53_c00372{left:294.450000px;}
.x22_c00372{left:295.950000px;}
.x7b_c00372{left:297.300000px;}
.xe_c00372{left:298.650000px;}
.x7_c00372{left:302.100000px;}
.x42_c00372{left:303.750000px;}
.x5b_c00372{left:304.800000px;}
.x17_c00372{left:306.450000px;}
.x76_c00372{left:307.800000px;}
.x6c_c00372{left:309.750000px;}
.x48_c00372{left:310.800000px;}
.x37_c00372{left:316.050000px;}
.x61_c00372{left:317.550000px;}
.x9d_c00372{left:321.000000px;}
.x4c_c00372{left:322.650000px;}
.xf_c00372{left:324.900000px;}
.x99_c00372{left:327.900000px;}
.x23_c00372{left:329.400000px;}
.x6d_c00372{left:331.350000px;}
.x65_c00372{left:332.850000px;}
.x3b_c00372{left:334.650000px;}
.x1_c00372{left:336.900000px;}
.x1e_c00372{left:338.700000px;}
.x54_c00372{left:340.500000px;}
.x49_c00372{left:341.700000px;}
.x4d_c00372{left:342.750000px;}
.x8_c00372{left:346.050000px;}
.xa0_c00372{left:347.100000px;}
.x34_c00372{left:349.200000px;}
.x24_c00372{left:351.300000px;}
.x7f_c00372{left:352.350000px;}
.x8b_c00372{left:353.700000px;}
.x87_c00372{left:355.200000px;}
.x2d_c00372{left:357.450000px;}
.x38_c00372{left:358.950000px;}
.x5c_c00372{left:360.600000px;}
.x84_c00372{left:361.650000px;}
.x8f_c00372{left:362.700000px;}
.x9b_c00372{left:364.500000px;}
.x55_c00372{left:365.700000px;}
.x92_c00372{left:367.350000px;}
.x9_c00372{left:368.400000px;}
.x8c_c00372{left:370.950000px;}
.x9c_c00372{left:375.000000px;}
.x4e_c00372{left:376.200000px;}
.x56_c00372{left:377.250000px;}
.x10_c00372{left:378.900000px;}
.x3c_c00372{left:381.150000px;}
.x5d_c00372{left:382.500000px;}
.xa8_c00372{left:385.650000px;}
.x9a_c00372{left:386.850000px;}
.x25_c00372{left:388.800000px;}
.x77_c00372{left:390.300000px;}
.x11_c00372{left:391.500000px;}
.x57_c00372{left:393.450000px;}
.x43_c00372{left:394.950000px;}
.x18_c00372{left:399.750000px;}
.x8d_c00372{left:402.300000px;}
.x93_c00372{left:404.550000px;}
.x90_c00372{left:406.950000px;}
.xa4_c00372{left:410.550000px;}
.x26_c00372{left:412.200000px;}
.x97_c00372{left:413.250000px;}
.x12_c00372{left:416.700000px;}
.x4f_c00372{left:417.900000px;}
.x3d_c00372{left:420.000000px;}
.x5e_c00372{left:421.350000px;}
.x2e_c00372{left:424.350000px;}
.xd2_c00372{left:449.700000px;}
.x11b_c00372{left:452.700000px;}
.x109_c00372{left:454.350000px;}
.x14a_c00372{left:455.550000px;}
.x153_c00372{left:456.600000px;}
.x146_c00372{left:458.700000px;}
.x144_c00372{left:462.300000px;}
.xab_c00372{left:466.500000px;}
.xdb_c00372{left:467.850000px;}
.xf8_c00372{left:469.500000px;}
.x108_c00372{left:470.850000px;}
.x147_c00372{left:473.850000px;}
.x135_c00372{left:477.150000px;}
.x123_c00372{left:478.800000px;}
.x12d_c00372{left:481.350000px;}
.xb8_c00372{left:484.200000px;}
.xf3_c00372{left:486.450000px;}
.x150_c00372{left:488.550000px;}
.xe9_c00372{left:489.900000px;}
.x132_c00372{left:490.950000px;}
.xe5_c00372{left:492.000000px;}
.x10a_c00372{left:493.650000px;}
.xc6_c00372{left:495.450000px;}
.x139_c00372{left:496.950000px;}
.x140_c00372{left:498.450000px;}
.x12a_c00372{left:501.300000px;}
.x161_c00372{left:502.950000px;}
.xf9_c00372{left:504.000000px;}
.x104_c00372{left:505.050000px;}
.x15e_c00372{left:506.100000px;}
.xee_c00372{left:507.750000px;}
.xe1_c00372{left:509.700000px;}
.xfd_c00372{left:510.900000px;}
.xc1_c00372{left:512.850000px;}
.x11c_c00372{left:513.900000px;}
.xb3_c00372{left:515.850000px;}
.x141_c00372{left:518.550000px;}
.xd3_c00372{left:519.600000px;}
.x126_c00372{left:521.400000px;}
.x131_c00372{left:522.750000px;}
.xac_c00372{left:524.100000px;}
.xef_c00372{left:526.500000px;}
.x159_c00372{left:528.000000px;}
.xb9_c00372{left:529.500000px;}
.x105_c00372{left:530.550000px;}
.x11d_c00372{left:533.700000px;}
.xe2_c00372{left:535.650000px;}
.x151_c00372{left:537.150000px;}
.xb4_c00372{left:538.200000px;}
.xc7_c00372{left:539.700000px;}
.xad_c00372{left:541.050000px;}
.x111_c00372{left:542.850000px;}
.xfa_c00372{left:544.350000px;}
.x14b_c00372{left:545.850000px;}
.x127_c00372{left:546.900000px;}
.xd4_c00372{left:548.400000px;}
.x13b_c00372{left:550.050000px;}
.xe3_c00372{left:551.850000px;}
.x11a_c00372{left:555.600000px;}
.x12e_c00372{left:557.550000px;}
.x162_c00372{left:559.050000px;}
.xcd_c00372{left:560.850000px;}
.xba_c00372{left:562.200000px;}
.x133_c00372{left:563.700000px;}
.xea_c00372{left:565.200000px;}
.x100_c00372{left:567.150000px;}
.xc2_c00372{left:568.650000px;}
.xdc_c00372{left:570.000000px;}
.x10c_c00372{left:572.550000px;}
.x128_c00372{left:574.650000px;}
.xce_c00372{left:576.000000px;}
.x121_c00372{left:577.350000px;}
.x13e_c00372{left:579.750000px;}
.xbb_c00372{left:581.700000px;}
.x13a_c00372{left:582.900000px;}
.x116_c00372{left:583.950000px;}
.xb5_c00372{left:585.000000px;}
.x14c_c00372{left:586.500000px;}
.xf0_c00372{left:588.000000px;}
.xd5_c00372{left:590.550000px;}
.xc3_c00372{left:591.750000px;}
.x10b_c00372{left:593.100000px;}
.xae_c00372{left:594.750000px;}
.x11e_c00372{left:596.700000px;}
.xcf_c00372{left:598.650000px;}
.x10d_c00372{left:600.300000px;}
.x112_c00372{left:602.250000px;}
.x152_c00372{left:603.750000px;}
.x14e_c00372{left:605.850000px;}
.xd6_c00372{left:608.250000px;}
.xb6_c00372{left:611.250000px;}
.x101_c00372{left:613.500000px;}
.x129_c00372{left:614.550000px;}
.xc8_c00372{left:616.800000px;}
.xf4_c00372{left:618.600000px;}
.x157_c00372{left:620.250000px;}
.x142_c00372{left:622.200000px;}
.x106_c00372{left:623.400000px;}
.xd7_c00372{left:624.450000px;}
.xbc_c00372{left:627.000000px;}
.x124_c00372{left:628.350000px;}
.xdd_c00372{left:630.900000px;}
.xf1_c00372{left:634.050000px;}
.x113_c00372{left:635.400000px;}
.x11f_c00372{left:637.050000px;}
.x117_c00372{left:639.450000px;}
.xde_c00372{left:640.650000px;}
.x163_c00372{left:641.850000px;}
.xc9_c00372{left:643.500000px;}
.x15a_c00372{left:646.350000px;}
.xbd_c00372{left:647.550000px;}
.x15b_c00372{left:650.400000px;}
.xeb_c00372{left:652.050000px;}
.x10e_c00372{left:654.000000px;}
.x136_c00372{left:655.050000px;}
.xe6_c00372{left:657.900000px;}
.xdf_c00372{left:661.200000px;}
.xbe_c00372{left:663.000000px;}
.xc4_c00372{left:665.550000px;}
.x114_c00372{left:667.050000px;}
.x14d_c00372{left:668.550000px;}
.xe7_c00372{left:669.750000px;}
.x102_c00372{left:671.100000px;}
.xaf_c00372{left:672.450000px;}
.xd8_c00372{left:675.900000px;}
.x12b_c00372{left:676.950000px;}
.x137_c00372{left:678.450000px;}
.x14f_c00372{left:681.150000px;}
.xf5_c00372{left:682.200000px;}
.xc5_c00372{left:683.250000px;}
.x15c_c00372{left:685.650000px;}
.xca_c00372{left:687.450000px;}
.xd0_c00372{left:688.650000px;}
.xb0_c00372{left:689.700000px;}
.xfe_c00372{left:691.650000px;}
.x154_c00372{left:696.450000px;}
.x10f_c00372{left:697.500000px;}
.x122_c00372{left:699.000000px;}
.xff_c00372{left:700.650000px;}
.xe4_c00372{left:701.850000px;}
.xd9_c00372{left:702.900000px;}
.x15d_c00372{left:706.200000px;}
.x12f_c00372{left:707.700000px;}
.x118_c00372{left:709.650000px;}
.xb7_c00372{left:711.000000px;}
.x156_c00372{left:712.500000px;}
.x138_c00372{left:713.550000px;}
.xfb_c00372{left:715.350000px;}
.xf2_c00372{left:717.900000px;}
.x115_c00372{left:719.250000px;}
.xe0_c00372{left:720.300000px;}
.x15f_c00372{left:721.800000px;}
.x134_c00372{left:724.950000px;}
.xec_c00372{left:728.700000px;}
.xf6_c00372{left:729.750000px;}
.xbf_c00372{left:731.100000px;}
.xd1_c00372{left:733.350000px;}
.x164_c00372{left:735.150000px;}
.x13c_c00372{left:736.650000px;}
.xed_c00372{left:737.700000px;}
.x120_c00372{left:739.350000px;}
.xcb_c00372{left:741.150000px;}
.xfc_c00372{left:742.350000px;}
.x110_c00372{left:744.600000px;}
.xb1_c00372{left:746.550000px;}
.x12c_c00372{left:747.600000px;}
.x143_c00372{left:749.550000px;}
.xc0_c00372{left:753.000000px;}
.xf7_c00372{left:754.950000px;}
.x148_c00372{left:757.200000px;}
.xb2_c00372{left:758.400000px;}
.x2_c00372{left:759.900000px;}
.x160_c00372{left:761.700000px;}
.xda_c00372{left:763.350000px;}
.x145_c00372{left:765.450000px;}
.x13d_c00372{left:766.500000px;}
.x155_c00372{left:768.150000px;}
.xe8_c00372{left:769.350000px;}
.x107_c00372{left:771.000000px;}
.x130_c00372{left:772.500000px;}
.x125_c00372{left:774.450000px;}
.x149_c00372{left:775.950000px;}
.xcc_c00372{left:777.150000px;}
.x103_c00372{left:778.350000px;}
.x13f_c00372{left:782.100000px;}
.x119_c00372{left:785.700000px;}
.x158_c00372{left:787.350000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws11_c00372{word-spacing:-11.509972pt;}
.wse_c00372{word-spacing:-9.444444pt;}
.ws10_c00372{word-spacing:-3.809524pt;}
.ws12_c00372{word-spacing:0.000000pt;}
.ws0_c00372{word-spacing:0.514056pt;}
.wsd_c00372{word-spacing:4.641737pt;}
.ws6_c00372{word-spacing:6.334227pt;}
.ws9_c00372{word-spacing:20.632708pt;}
.wsf_c00372{word-spacing:21.573265pt;}
.ws3_c00372{word-spacing:22.857143pt;}
.ws5_c00372{word-spacing:26.031746pt;}
.ws8_c00372{word-spacing:32.000000pt;}
.ws7_c00372{word-spacing:35.333333pt;}
.ws4_c00372{word-spacing:35.555556pt;}
.ws2_c00372{word-spacing:39.043257pt;}
.wsb_c00372{word-spacing:39.259259pt;}
.ws1_c00372{word-spacing:43.114504pt;}
.wsa_c00372{word-spacing:47.970009pt;}
.wsc_c00372{word-spacing:125.555556pt;}
._4_c00372{width:46.349206pt;}
._1_c00372{width:47.492404pt;}
._0_c00372{width:57.460317pt;}
._2_c00372{width:65.925926pt;}
._3_c00372{width:160.000000pt;}
.fs6_c00372{font-size:48.000000pt;}
.fs5_c00372{font-size:53.333333pt;}
.fs2_c00372{font-size:58.666667pt;}
.fs4_c00372{font-size:64.000000pt;}
.fs3_c00372{font-size:69.333333pt;}
.fs1_c00372{font-size:85.333333pt;}
.fs0_c00372{font-size:101.333333pt;}
.y0_c00372{bottom:0.000000pt;}
.y6e_c00372{bottom:144.666667pt;}
.y6d_c00372{bottom:162.933333pt;}
.y38_c00372{bottom:163.200000pt;}
.y6c_c00372{bottom:176.000000pt;}
.y37_c00372{bottom:179.466667pt;}
.y6b_c00372{bottom:188.800000pt;}
.y36_c00372{bottom:199.066667pt;}
.y6a_c00372{bottom:201.600000pt;}
.y69_c00372{bottom:214.400000pt;}
.y35_c00372{bottom:215.333333pt;}
.y68_c00372{bottom:227.200000pt;}
.y34_c00372{bottom:231.333333pt;}
.y67_c00372{bottom:240.266667pt;}
.y33_c00372{bottom:247.066667pt;}
.y66_c00372{bottom:252.800000pt;}
.y32_c00372{bottom:263.066667pt;}
.y65_c00372{bottom:265.866667pt;}
.y64_c00372{bottom:278.666667pt;}
.y31_c00372{bottom:281.866667pt;}
.y63_c00372{bottom:291.466667pt;}
.y30_c00372{bottom:298.133333pt;}
.y62_c00372{bottom:304.266667pt;}
.y2f_c00372{bottom:314.133333pt;}
.y61_c00372{bottom:319.066667pt;}
.y2e_c00372{bottom:330.133333pt;}
.y60_c00372{bottom:333.466667pt;}
.y5f_c00372{bottom:346.000000pt;}
.y2d_c00372{bottom:346.133333pt;}
.y5e_c00372{bottom:358.800000pt;}
.y2c_c00372{bottom:361.866667pt;}
.y5d_c00372{bottom:371.333333pt;}
.y2b_c00372{bottom:377.600000pt;}
.y5c_c00372{bottom:383.866667pt;}
.y2a_c00372{bottom:393.600000pt;}
.y5b_c00372{bottom:396.400000pt;}
.y5a_c00372{bottom:409.200000pt;}
.y29_c00372{bottom:409.333333pt;}
.y59_c00372{bottom:422.000000pt;}
.y28_c00372{bottom:425.600000pt;}
.y58_c00372{bottom:434.533333pt;}
.y27_c00372{bottom:441.333333pt;}
.y57_c00372{bottom:448.000000pt;}
.y26_c00372{bottom:457.333333pt;}
.y56_c00372{bottom:464.666667pt;}
.y25_c00372{bottom:476.533333pt;}
.y55_c00372{bottom:477.466667pt;}
.y24_c00372{bottom:488.000000pt;}
.y54_c00372{bottom:490.000000pt;}
.y23_c00372{bottom:502.400000pt;}
.y53_c00372{bottom:502.800000pt;}
.y22_c00372{bottom:514.000000pt;}
.y52_c00372{bottom:515.600000pt;}
.y21_c00372{bottom:526.800000pt;}
.y51_c00372{bottom:528.400000pt;}
.y20_c00372{bottom:541.466667pt;}
.y1f_c00372{bottom:552.666667pt;}
.y50_c00372{bottom:557.733333pt;}
.y1e_c00372{bottom:567.066667pt;}
.y4f_c00372{bottom:570.533333pt;}
.y1d_c00372{bottom:578.133333pt;}
.y1c_c00372{bottom:592.266667pt;}
.y1b_c00372{bottom:605.066667pt;}
.y1a_c00372{bottom:616.933333pt;}
.y4e_c00372{bottom:620.800000pt;}
.y19_c00372{bottom:630.666667pt;}
.y4d_c00372{bottom:636.533333pt;}
.y18_c00372{bottom:642.133333pt;}
.y4c_c00372{bottom:652.266667pt;}
.y17_c00372{bottom:654.666667pt;}
.y16_c00372{bottom:669.733333pt;}
.y15_c00372{bottom:684.800000pt;}
.y4b_c00372{bottom:698.933333pt;}
.y14_c00372{bottom:702.400000pt;}
.y4a_c00372{bottom:714.800000pt;}
.y13_c00372{bottom:718.133333pt;}
.y49_c00372{bottom:730.533333pt;}
.y12_c00372{bottom:734.133333pt;}
.y48_c00372{bottom:746.266667pt;}
.y11_c00372{bottom:752.933333pt;}
.y47_c00372{bottom:762.000000pt;}
.y10_c00372{bottom:769.466667pt;}
.y46_c00372{bottom:777.733333pt;}
.yf_c00372{bottom:785.466667pt;}
.y45_c00372{bottom:793.733333pt;}
.ye_c00372{bottom:801.466667pt;}
.y44_c00372{bottom:809.466667pt;}
.yd_c00372{bottom:817.200000pt;}
.y43_c00372{bottom:825.466667pt;}
.yc_c00372{bottom:834.133333pt;}
.y42_c00372{bottom:841.200000pt;}
.yb_c00372{bottom:851.466667pt;}
.y41_c00372{bottom:856.933333pt;}
.y40_c00372{bottom:872.933333pt;}
.ya_c00372{bottom:874.266667pt;}
.y9_c00372{bottom:890.933333pt;}
.y3f_c00372{bottom:896.666667pt;}
.y8_c00372{bottom:910.133333pt;}
.y3e_c00372{bottom:912.666667pt;}
.y7_c00372{bottom:926.400000pt;}
.y3d_c00372{bottom:928.666667pt;}
.y6_c00372{bottom:942.400000pt;}
.y3c_c00372{bottom:944.400000pt;}
.y5_c00372{bottom:958.400000pt;}
.y3b_c00372{bottom:960.133333pt;}
.y4_c00372{bottom:974.400000pt;}
.y3a_c00372{bottom:976.400000pt;}
.y3_c00372{bottom:990.400000pt;}
.y39_c00372{bottom:991.733333pt;}
.y2_c00372{bottom:1014.800000pt;}
.y1_c00372{bottom:1015.733333pt;}
.h8_c00372{height:48.000000pt;}
.h7_c00372{height:53.333333pt;}
.h4_c00372{height:58.666667pt;}
.h6_c00372{height:64.000000pt;}
.h5_c00372{height:69.333333pt;}
.h3_c00372{height:85.333333pt;}
.h2_c00372{height:101.333333pt;}
.h1_c00372{height:1129.333333pt;}
.h0_c00372{height:1129.599935pt;}
.w0_c00372{width:853.760009pt;}
.w1_c00372{width:854.000000pt;}
.x0_c00372{left:0.000000pt;}
.x30_c00372{left:82.266667pt;}
.x85_c00372{left:85.733333pt;}
.xa9_c00372{left:88.933333pt;}
.x7c_c00372{left:92.533333pt;}
.xa_c00372{left:95.200000pt;}
.x3_c00372{left:97.333333pt;}
.x44_c00372{left:98.266667pt;}
.x88_c00372{left:102.000000pt;}
.x8e_c00372{left:102.933333pt;}
.x9e_c00372{left:103.866667pt;}
.xa5_c00372{left:105.066667pt;}
.x3e_c00372{left:106.133333pt;}
.x66_c00372{left:109.333333pt;}
.x7d_c00372{left:111.066667pt;}
.x82_c00372{left:112.133333pt;}
.xa1_c00372{left:113.066667pt;}
.xb_c00372{left:114.133333pt;}
.x58_c00372{left:116.133333pt;}
.x9f_c00372{left:120.000000pt;}
.x31_c00372{left:122.000000pt;}
.x4a_c00372{left:122.933333pt;}
.x1f_c00372{left:125.066667pt;}
.x89_c00372{left:127.333333pt;}
.x19_c00372{left:129.333333pt;}
.x7e_c00372{left:130.533333pt;}
.x3f_c00372{left:131.466667pt;}
.x4_c00372{left:132.800000pt;}
.xa2_c00372{left:134.533333pt;}
.x5f_c00372{left:136.266667pt;}
.x20_c00372{left:137.866667pt;}
.x1a_c00372{left:138.933333pt;}
.x50_c00372{left:140.133333pt;}
.x46_c00372{left:141.200000pt;}
.x94_c00372{left:142.666667pt;}
.xaa_c00372{left:143.600000pt;}
.x2a_c00372{left:144.666667pt;}
.x73_c00372{left:146.933333pt;}
.x80_c00372{left:150.800000pt;}
.x95_c00372{left:152.933333pt;}
.x32_c00372{left:154.933333pt;}
.x1b_c00372{left:156.800000pt;}
.x13_c00372{left:158.133333pt;}
.x59_c00372{left:160.933333pt;}
.x21_c00372{left:163.200000pt;}
.x70_c00372{left:165.466667pt;}
.x40_c00372{left:167.333333pt;}
.x67_c00372{left:171.466667pt;}
.x6e_c00372{left:172.666667pt;}
.x39_c00372{left:175.200000pt;}
.x45_c00372{left:176.133333pt;}
.x8a_c00372{left:177.866667pt;}
.x47_c00372{left:179.866667pt;}
.x4b_c00372{left:181.200000pt;}
.x91_c00372{left:183.200000pt;}
.x96_c00372{left:184.266667pt;}
.x51_c00372{left:185.600000pt;}
.xc_c00372{left:186.800000pt;}
.x27_c00372{left:187.866667pt;}
.x14_c00372{left:189.866667pt;}
.x2b_c00372{left:194.000000pt;}
.x5_c00372{left:196.800000pt;}
.x62_c00372{left:197.733333pt;}
.x79_c00372{left:198.933333pt;}
.x68_c00372{left:200.000000pt;}
.x81_c00372{left:202.533333pt;}
.x6a_c00372{left:203.466667pt;}
.xd_c00372{left:205.066667pt;}
.x2f_c00372{left:207.733333pt;}
.x15_c00372{left:209.066667pt;}
.x6b_c00372{left:210.133333pt;}
.x33_c00372{left:211.200000pt;}
.xa6_c00372{left:212.266667pt;}
.x1c_c00372{left:214.400000pt;}
.x69_c00372{left:215.333333pt;}
.x52_c00372{left:216.933333pt;}
.x83_c00372{left:218.666667pt;}
.x71_c00372{left:219.600000pt;}
.xa3_c00372{left:221.733333pt;}
.x6_c00372{left:224.000000pt;}
.x28_c00372{left:225.600000pt;}
.x41_c00372{left:226.533333pt;}
.xa7_c00372{left:227.600000pt;}
.x74_c00372{left:228.533333pt;}
.x60_c00372{left:229.733333pt;}
.x63_c00372{left:230.666667pt;}
.x2c_c00372{left:231.733333pt;}
.x1d_c00372{left:232.666667pt;}
.x5a_c00372{left:233.866667pt;}
.x6f_c00372{left:235.333333pt;}
.x98_c00372{left:236.800000pt;}
.x7a_c00372{left:238.133333pt;}
.x86_c00372{left:240.266667pt;}
.x64_c00372{left:243.466667pt;}
.x72_c00372{left:244.400000pt;}
.x75_c00372{left:245.466667pt;}
.x29_c00372{left:248.000000pt;}
.x35_c00372{left:251.200000pt;}
.x16_c00372{left:253.200000pt;}
.x3a_c00372{left:255.200000pt;}
.x36_c00372{left:257.600000pt;}
.x78_c00372{left:259.333333pt;}
.x53_c00372{left:261.733333pt;}
.x22_c00372{left:263.066667pt;}
.x7b_c00372{left:264.266667pt;}
.xe_c00372{left:265.466667pt;}
.x7_c00372{left:268.533333pt;}
.x42_c00372{left:270.000000pt;}
.x5b_c00372{left:270.933333pt;}
.x17_c00372{left:272.400000pt;}
.x76_c00372{left:273.600000pt;}
.x6c_c00372{left:275.333333pt;}
.x48_c00372{left:276.266667pt;}
.x37_c00372{left:280.933333pt;}
.x61_c00372{left:282.266667pt;}
.x9d_c00372{left:285.333333pt;}
.x4c_c00372{left:286.800000pt;}
.xf_c00372{left:288.800000pt;}
.x99_c00372{left:291.466667pt;}
.x23_c00372{left:292.800000pt;}
.x6d_c00372{left:294.533333pt;}
.x65_c00372{left:295.866667pt;}
.x3b_c00372{left:297.466667pt;}
.x1_c00372{left:299.466667pt;}
.x1e_c00372{left:301.066667pt;}
.x54_c00372{left:302.666667pt;}
.x49_c00372{left:303.733333pt;}
.x4d_c00372{left:304.666667pt;}
.x8_c00372{left:307.600000pt;}
.xa0_c00372{left:308.533333pt;}
.x34_c00372{left:310.400000pt;}
.x24_c00372{left:312.266667pt;}
.x7f_c00372{left:313.200000pt;}
.x8b_c00372{left:314.400000pt;}
.x87_c00372{left:315.733333pt;}
.x2d_c00372{left:317.733333pt;}
.x38_c00372{left:319.066667pt;}
.x5c_c00372{left:320.533333pt;}
.x84_c00372{left:321.466667pt;}
.x8f_c00372{left:322.400000pt;}
.x9b_c00372{left:324.000000pt;}
.x55_c00372{left:325.066667pt;}
.x92_c00372{left:326.533333pt;}
.x9_c00372{left:327.466667pt;}
.x8c_c00372{left:329.733333pt;}
.x9c_c00372{left:333.333333pt;}
.x4e_c00372{left:334.400000pt;}
.x56_c00372{left:335.333333pt;}
.x10_c00372{left:336.800000pt;}
.x3c_c00372{left:338.800000pt;}
.x5d_c00372{left:340.000000pt;}
.xa8_c00372{left:342.800000pt;}
.x9a_c00372{left:343.866667pt;}
.x25_c00372{left:345.600000pt;}
.x77_c00372{left:346.933333pt;}
.x11_c00372{left:348.000000pt;}
.x57_c00372{left:349.733333pt;}
.x43_c00372{left:351.066667pt;}
.x18_c00372{left:355.333333pt;}
.x8d_c00372{left:357.600000pt;}
.x93_c00372{left:359.600000pt;}
.x90_c00372{left:361.733333pt;}
.xa4_c00372{left:364.933333pt;}
.x26_c00372{left:366.400000pt;}
.x97_c00372{left:367.333333pt;}
.x12_c00372{left:370.400000pt;}
.x4f_c00372{left:371.466667pt;}
.x3d_c00372{left:373.333333pt;}
.x5e_c00372{left:374.533333pt;}
.x2e_c00372{left:377.200000pt;}
.xd2_c00372{left:399.733333pt;}
.x11b_c00372{left:402.400000pt;}
.x109_c00372{left:403.866667pt;}
.x14a_c00372{left:404.933333pt;}
.x153_c00372{left:405.866667pt;}
.x146_c00372{left:407.733333pt;}
.x144_c00372{left:410.933333pt;}
.xab_c00372{left:414.666667pt;}
.xdb_c00372{left:415.866667pt;}
.xf8_c00372{left:417.333333pt;}
.x108_c00372{left:418.533333pt;}
.x147_c00372{left:421.200000pt;}
.x135_c00372{left:424.133333pt;}
.x123_c00372{left:425.600000pt;}
.x12d_c00372{left:427.866667pt;}
.xb8_c00372{left:430.400000pt;}
.xf3_c00372{left:432.400000pt;}
.x150_c00372{left:434.266667pt;}
.xe9_c00372{left:435.466667pt;}
.x132_c00372{left:436.400000pt;}
.xe5_c00372{left:437.333333pt;}
.x10a_c00372{left:438.800000pt;}
.xc6_c00372{left:440.400000pt;}
.x139_c00372{left:441.733333pt;}
.x140_c00372{left:443.066667pt;}
.x12a_c00372{left:445.600000pt;}
.x161_c00372{left:447.066667pt;}
.xf9_c00372{left:448.000000pt;}
.x104_c00372{left:448.933333pt;}
.x15e_c00372{left:449.866667pt;}
.xee_c00372{left:451.333333pt;}
.xe1_c00372{left:453.066667pt;}
.xfd_c00372{left:454.133333pt;}
.xc1_c00372{left:455.866667pt;}
.x11c_c00372{left:456.800000pt;}
.xb3_c00372{left:458.533333pt;}
.x141_c00372{left:460.933333pt;}
.xd3_c00372{left:461.866667pt;}
.x126_c00372{left:463.466667pt;}
.x131_c00372{left:464.666667pt;}
.xac_c00372{left:465.866667pt;}
.xef_c00372{left:468.000000pt;}
.x159_c00372{left:469.333333pt;}
.xb9_c00372{left:470.666667pt;}
.x105_c00372{left:471.600000pt;}
.x11d_c00372{left:474.400000pt;}
.xe2_c00372{left:476.133333pt;}
.x151_c00372{left:477.466667pt;}
.xb4_c00372{left:478.400000pt;}
.xc7_c00372{left:479.733333pt;}
.xad_c00372{left:480.933333pt;}
.x111_c00372{left:482.533333pt;}
.xfa_c00372{left:483.866667pt;}
.x14b_c00372{left:485.200000pt;}
.x127_c00372{left:486.133333pt;}
.xd4_c00372{left:487.466667pt;}
.x13b_c00372{left:488.933333pt;}
.xe3_c00372{left:490.533333pt;}
.x11a_c00372{left:493.866667pt;}
.x12e_c00372{left:495.600000pt;}
.x162_c00372{left:496.933333pt;}
.xcd_c00372{left:498.533333pt;}
.xba_c00372{left:499.733333pt;}
.x133_c00372{left:501.066667pt;}
.xea_c00372{left:502.400000pt;}
.x100_c00372{left:504.133333pt;}
.xc2_c00372{left:505.466667pt;}
.xdc_c00372{left:506.666667pt;}
.x10c_c00372{left:508.933333pt;}
.x128_c00372{left:510.800000pt;}
.xce_c00372{left:512.000000pt;}
.x121_c00372{left:513.200000pt;}
.x13e_c00372{left:515.333333pt;}
.xbb_c00372{left:517.066667pt;}
.x13a_c00372{left:518.133333pt;}
.x116_c00372{left:519.066667pt;}
.xb5_c00372{left:520.000000pt;}
.x14c_c00372{left:521.333333pt;}
.xf0_c00372{left:522.666667pt;}
.xd5_c00372{left:524.933333pt;}
.xc3_c00372{left:526.000000pt;}
.x10b_c00372{left:527.200000pt;}
.xae_c00372{left:528.666667pt;}
.x11e_c00372{left:530.400000pt;}
.xcf_c00372{left:532.133333pt;}
.x10d_c00372{left:533.600000pt;}
.x112_c00372{left:535.333333pt;}
.x152_c00372{left:536.666667pt;}
.x14e_c00372{left:538.533333pt;}
.xd6_c00372{left:540.666667pt;}
.xb6_c00372{left:543.333333pt;}
.x101_c00372{left:545.333333pt;}
.x129_c00372{left:546.266667pt;}
.xc8_c00372{left:548.266667pt;}
.xf4_c00372{left:549.866667pt;}
.x157_c00372{left:551.333333pt;}
.x142_c00372{left:553.066667pt;}
.x106_c00372{left:554.133333pt;}
.xd7_c00372{left:555.066667pt;}
.xbc_c00372{left:557.333333pt;}
.x124_c00372{left:558.533333pt;}
.xdd_c00372{left:560.800000pt;}
.xf1_c00372{left:563.600000pt;}
.x113_c00372{left:564.800000pt;}
.x11f_c00372{left:566.266667pt;}
.x117_c00372{left:568.400000pt;}
.xde_c00372{left:569.466667pt;}
.x163_c00372{left:570.533333pt;}
.xc9_c00372{left:572.000000pt;}
.x15a_c00372{left:574.533333pt;}
.xbd_c00372{left:575.600000pt;}
.x15b_c00372{left:578.133333pt;}
.xeb_c00372{left:579.600000pt;}
.x10e_c00372{left:581.333333pt;}
.x136_c00372{left:582.266667pt;}
.xe6_c00372{left:584.800000pt;}
.xdf_c00372{left:587.733333pt;}
.xbe_c00372{left:589.333333pt;}
.xc4_c00372{left:591.600000pt;}
.x114_c00372{left:592.933333pt;}
.x14d_c00372{left:594.266667pt;}
.xe7_c00372{left:595.333333pt;}
.x102_c00372{left:596.533333pt;}
.xaf_c00372{left:597.733333pt;}
.xd8_c00372{left:600.800000pt;}
.x12b_c00372{left:601.733333pt;}
.x137_c00372{left:603.066667pt;}
.x14f_c00372{left:605.466667pt;}
.xf5_c00372{left:606.400000pt;}
.xc5_c00372{left:607.333333pt;}
.x15c_c00372{left:609.466667pt;}
.xca_c00372{left:611.066667pt;}
.xd0_c00372{left:612.133333pt;}
.xb0_c00372{left:613.066667pt;}
.xfe_c00372{left:614.800000pt;}
.x154_c00372{left:619.066667pt;}
.x10f_c00372{left:620.000000pt;}
.x122_c00372{left:621.333333pt;}
.xff_c00372{left:622.800000pt;}
.xe4_c00372{left:623.866667pt;}
.xd9_c00372{left:624.800000pt;}
.x15d_c00372{left:627.733333pt;}
.x12f_c00372{left:629.066667pt;}
.x118_c00372{left:630.800000pt;}
.xb7_c00372{left:632.000000pt;}
.x156_c00372{left:633.333333pt;}
.x138_c00372{left:634.266667pt;}
.xfb_c00372{left:635.866667pt;}
.xf2_c00372{left:638.133333pt;}
.x115_c00372{left:639.333333pt;}
.xe0_c00372{left:640.266667pt;}
.x15f_c00372{left:641.600000pt;}
.x134_c00372{left:644.400000pt;}
.xec_c00372{left:647.733333pt;}
.xf6_c00372{left:648.666667pt;}
.xbf_c00372{left:649.866667pt;}
.xd1_c00372{left:651.866667pt;}
.x164_c00372{left:653.466667pt;}
.x13c_c00372{left:654.800000pt;}
.xed_c00372{left:655.733333pt;}
.x120_c00372{left:657.200000pt;}
.xcb_c00372{left:658.800000pt;}
.xfc_c00372{left:659.866667pt;}
.x110_c00372{left:661.866667pt;}
.xb1_c00372{left:663.600000pt;}
.x12c_c00372{left:664.533333pt;}
.x143_c00372{left:666.266667pt;}
.xc0_c00372{left:669.333333pt;}
.xf7_c00372{left:671.066667pt;}
.x148_c00372{left:673.066667pt;}
.xb2_c00372{left:674.133333pt;}
.x2_c00372{left:675.466667pt;}
.x160_c00372{left:677.066667pt;}
.xda_c00372{left:678.533333pt;}
.x145_c00372{left:680.400000pt;}
.x13d_c00372{left:681.333333pt;}
.x155_c00372{left:682.800000pt;}
.xe8_c00372{left:683.866667pt;}
.x107_c00372{left:685.333333pt;}
.x130_c00372{left:686.666667pt;}
.x125_c00372{left:688.400000pt;}
.x149_c00372{left:689.733333pt;}
.xcc_c00372{left:690.800000pt;}
.x103_c00372{left:691.866667pt;}
.x13f_c00372{left:695.200000pt;}
.x119_c00372{left:698.400000pt;}
.x158_c00372{left:699.866667pt;}
}





/* 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_c00373 {
    display:none;
  }
  .loading-indicator_c00373.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00373 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_c00373 { 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_c00373" -> "#page-container .classname_c00373")
 */
.pf_c00373 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00373 { /* 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_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00373 { /* 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_c00373 { /* 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_c00373 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00373 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00373 {overflow:visible;}
  }
}
.c_c00373 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00373 { /* 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_c00373:after { /* webkit #35443 */
  content: '';
}
.t_c00373:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00373 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 */
}
.__c00373 { /* 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_c00373 { /* info for Javascript */
  display:none;
}
.l_c00373 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00373 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00373 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00373: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_c00373 {
    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_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00373.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_c00373 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00373;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.000000;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;}
.m109_c00373{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00373{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00373{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00373{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00373{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m59_c00373{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6_c00373{transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);}
.m46_c00373{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7_c00373{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m57_c00373{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m47_c00373{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m94_c00373{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00373{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m115_c00373{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00373{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m48_c00373{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00373{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m98_c00373{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00373{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00373{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m8_c00373{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.mff_c00373{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00373{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m34_c00373{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m28_c00373{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m65_c00373{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m95_c00373{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.md6_c00373{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00373{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00373{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m50_c00373{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00373{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00373{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m30_c00373{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00373{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m31_c00373{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m12_c00373{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m25_c00373{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md8_c00373{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00373{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00373{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m88_c00373{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00373{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m58_c00373{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m35_c00373{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mda_c00373{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00373{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m22_c00373{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00373{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00373{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mb_c00373{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00373{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m86_c00373{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00373{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00373{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m87_c00373{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m112_c00373{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00373{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.meb_c00373{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m29_c00373{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.mc_c00373{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00373{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00373{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m33_c00373{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00373{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00373{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00373{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m53_c00373{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m97_c00373{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00373{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m13_c00373{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m60_c00373{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m102_c00373{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00373{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00373{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00373{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me6_c00373{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00373{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m93_c00373{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00373{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00373{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m19_c00373{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mac_c00373{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00373{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mea_c00373{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.md2_c00373{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00373{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m26_c00373{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00373{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00373{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00373{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m76_c00373{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m32_c00373{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m67_c00373{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m107_c00373{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m77_c00373{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m114_c00373{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mce_c00373{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m81_c00373{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00373{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m75_c00373{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00373{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00373{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md9_c00373{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00373{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m119_c00373{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.maf_c00373{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00373{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00373{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mab_c00373{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md3_c00373{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00373{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m118_c00373{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m89_c00373{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m27_c00373{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00373{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m105_c00373{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00373{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m69_c00373{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00373{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m71_c00373{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00373{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00373{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.me8_c00373{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m21_c00373{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m110_c00373{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m117_c00373{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00373{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md4_c00373{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5_c00373{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md0_c00373{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00373{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m106_c00373{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00373{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m17_c00373{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m24_c00373{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m54_c00373{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00373{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m64_c00373{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m52_c00373{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m100_c00373{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.md5_c00373{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m85_c00373{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m45_c00373{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m20_c00373{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00373{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00373{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00373{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00373{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mba_c00373{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m23_c00373{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00373{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00373{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m72_c00373{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m108_c00373{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00373{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m101_c00373{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00373{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m40_c00373{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00373{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md1_c00373{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m96_c00373{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m36_c00373{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m66_c00373{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00373{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00373{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00373{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.maa_c00373{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m41_c00373{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00373{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00373{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00373{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m99_c00373{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m116_c00373{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00373{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00373{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m92_c00373{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me3_c00373{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m15_c00373{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mae_c00373{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00373{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m103_c00373{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mec_c00373{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00373{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00373{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00373{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00373{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me1_c00373{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00373{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m62_c00373{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00373{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m80_c00373{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00373{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00373{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m56_c00373{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00373{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m18_c00373{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00373{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00373{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m79_c00373{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00373{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m55_c00373{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m11_c00373{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m111_c00373{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00373{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00373{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00373{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m49_c00373{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m39_c00373{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m84_c00373{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00373{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00373{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m44_c00373{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00373{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00373{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md7_c00373{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m42_c00373{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00373{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m4_c00373{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00373{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00373{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m16_c00373{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00373{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m74_c00373{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00373{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m51_c00373{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00373{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m78_c00373{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00373{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00373{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00373{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00373{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m14_c00373{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mad_c00373{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m37_c00373{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m90_c00373{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.me0_c00373{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00373{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00373{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m73_c00373{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.me2_c00373{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00373{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00373{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00373{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.me5_c00373{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10_c00373{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mef_c00373{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf_c00373{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00373{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m43_c00373{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00373{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m63_c00373{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m91_c00373{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m113_c00373{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00373{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma_c00373{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00373{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00373{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.me_c00373{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00373{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00373{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00373{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m104_c00373{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.me7_c00373{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00373{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m38_c00373{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mee_c00373{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m83_c00373{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.med_c00373{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00373{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.me9_c00373{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.me4_c00373{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00373{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mde_c00373{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00373{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m82_c00373{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m9_c00373{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00373{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mca_c00373{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00373{transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.452750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452750,0.000000,0.000000,0.250000,0,0);}
.m61_c00373{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m68_c00373{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m70_c00373{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls1_c00373{letter-spacing:0.000000px;}
.ls0_c00373{letter-spacing:61.426230px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{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__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00373{word-spacing:-94.426230px;}
.ws15_c00373{word-spacing:-1.860072px;}
.ws10_c00373{word-spacing:-0.828905px;}
.ws16_c00373{word-spacing:0.000000px;}
.ws12_c00373{word-spacing:1.944444px;}
.ws11_c00373{word-spacing:3.420382px;}
.ws14_c00373{word-spacing:7.737955px;}
.ws13_c00373{word-spacing:10.500000px;}
.wsf_c00373{word-spacing:15.913043px;}
.ws7_c00373{word-spacing:16.521490px;}
.ws0_c00373{word-spacing:19.959885px;}
.ws2_c00373{word-spacing:22.142857px;}
.ws4_c00373{word-spacing:25.714286px;}
.wsd_c00373{word-spacing:29.285714px;}
.ws6_c00373{word-spacing:32.360656px;}
.ws3_c00373{word-spacing:40.000000px;}
.ws8_c00373{word-spacing:43.923664px;}
.wse_c00373{word-spacing:44.166667px;}
.wsc_c00373{word-spacing:54.285714px;}
.ws1_c00373{word-spacing:59.764192px;}
.ws5_c00373{word-spacing:68.750000px;}
.wsb_c00373{word-spacing:153.847328px;}
.wsa_c00373{word-spacing:174.000000px;}
._4_c00373{margin-left:-61.426230px;}
._3_c00373{width:3.934426px;}
._0_c00373{width:55.714286px;}
._1_c00373{width:59.285714px;}
._2_c00373{width:74.166667px;}
._5_c00373{width:85.476190px;}
.fc0_c00373{color:transparent;}
.fs4_c00373{font-size:54.000000px;}
.fs2_c00373{font-size:60.000000px;}
.fs3_c00373{font-size:66.000000px;}
.fs0_c00373{font-size:72.000000px;}
.fs1_c00373{font-size:84.000000px;}
.y0_c00373{bottom:0.000000px;}
.y39_c00373{bottom:182.250000px;}
.y6c_c00373{bottom:184.350000px;}
.y38_c00373{bottom:201.300000px;}
.y6b_c00373{bottom:203.100000px;}
.y37_c00373{bottom:219.600000px;}
.y6a_c00373{bottom:222.900000px;}
.y36_c00373{bottom:237.300000px;}
.y69_c00373{bottom:243.150000px;}
.y35_c00373{bottom:255.000000px;}
.y68_c00373{bottom:260.100000px;}
.y34_c00373{bottom:272.700000px;}
.y67_c00373{bottom:278.400000px;}
.y33_c00373{bottom:290.400000px;}
.y66_c00373{bottom:296.400000px;}
.y32_c00373{bottom:308.400000px;}
.y65_c00373{bottom:314.100000px;}
.y31_c00373{bottom:326.400000px;}
.y64_c00373{bottom:340.800000px;}
.y30_c00373{bottom:344.700000px;}
.y63_c00373{bottom:349.500000px;}
.y2f_c00373{bottom:362.700000px;}
.y62_c00373{bottom:367.800000px;}
.y2e_c00373{bottom:381.000000px;}
.y61_c00373{bottom:385.500000px;}
.y2d_c00373{bottom:399.000000px;}
.y60_c00373{bottom:403.500000px;}
.y2c_c00373{bottom:416.700000px;}
.y5f_c00373{bottom:421.500000px;}
.y2b_c00373{bottom:434.700000px;}
.y5e_c00373{bottom:439.500000px;}
.y2a_c00373{bottom:452.700000px;}
.y5d_c00373{bottom:457.500000px;}
.y29_c00373{bottom:470.700000px;}
.y5c_c00373{bottom:475.500000px;}
.y28_c00373{bottom:488.400000px;}
.y5b_c00373{bottom:493.500000px;}
.y27_c00373{bottom:506.100000px;}
.y5a_c00373{bottom:511.200000px;}
.y26_c00373{bottom:524.100000px;}
.y59_c00373{bottom:529.200000px;}
.y25_c00373{bottom:541.800000px;}
.y58_c00373{bottom:549.300000px;}
.y24_c00373{bottom:559.800000px;}
.y57_c00373{bottom:564.450000px;}
.y23_c00373{bottom:577.500000px;}
.y56_c00373{bottom:578.850000px;}
.y55_c00373{bottom:598.350000px;}
.y22_c00373{bottom:601.200000px;}
.y54_c00373{bottom:613.500000px;}
.y21_c00373{bottom:617.400000px;}
.y53_c00373{bottom:627.150000px;}
.y20_c00373{bottom:631.800000px;}
.y52_c00373{bottom:641.550000px;}
.y1f_c00373{bottom:646.200000px;}
.y51_c00373{bottom:657.750000px;}
.y1e_c00373{bottom:670.650000px;}
.y50_c00373{bottom:676.050000px;}
.y1d_c00373{bottom:683.700000px;}
.y4f_c00373{bottom:694.050000px;}
.y1c_c00373{bottom:696.600000px;}
.y4e_c00373{bottom:712.050000px;}
.y1b_c00373{bottom:712.800000px;}
.y1a_c00373{bottom:728.700000px;}
.y4d_c00373{bottom:730.050000px;}
.y19_c00373{bottom:743.100000px;}
.y4c_c00373{bottom:747.750000px;}
.y18_c00373{bottom:756.450000px;}
.y4b_c00373{bottom:765.750000px;}
.y17_c00373{bottom:771.900000px;}
.y16_c00373{bottom:784.800000px;}
.y4a_c00373{bottom:787.650000px;}
.y15_c00373{bottom:799.200000px;}
.y6e_c00373{bottom:805.350000px;}
.y14_c00373{bottom:813.600000px;}
.y49_c00373{bottom:823.200000px;}
.y6d_c00373{bottom:823.350000px;}
.y13_c00373{bottom:828.000000px;}
.y48_c00373{bottom:840.900000px;}
.y12_c00373{bottom:841.950000px;}
.y11_c00373{bottom:857.850000px;}
.y47_c00373{bottom:863.250000px;}
.y10_c00373{bottom:869.400000px;}
.yf_c00373{bottom:885.150000px;}
.y46_c00373{bottom:889.500000px;}
.ye_c00373{bottom:900.300000px;}
.y45_c00373{bottom:907.500000px;}
.yd_c00373{bottom:912.600000px;}
.y44_c00373{bottom:925.500000px;}
.yc_c00373{bottom:928.800000px;}
.y43_c00373{bottom:943.500000px;}
.yb_c00373{bottom:945.750000px;}
.y42_c00373{bottom:964.800000px;}
.ya_c00373{bottom:971.250000px;}
.y41_c00373{bottom:983.100000px;}
.y9_c00373{bottom:991.500000px;}
.y40_c00373{bottom:1001.100000px;}
.y8_c00373{bottom:1009.500000px;}
.y3f_c00373{bottom:1019.100000px;}
.y7_c00373{bottom:1027.500000px;}
.y3e_c00373{bottom:1037.100000px;}
.y6_c00373{bottom:1045.500000px;}
.y3d_c00373{bottom:1054.800000px;}
.y5_c00373{bottom:1063.500000px;}
.y3c_c00373{bottom:1076.700000px;}
.y4_c00373{bottom:1093.800000px;}
.y3b_c00373{bottom:1095.000000px;}
.y3_c00373{bottom:1112.100000px;}
.y3a_c00373{bottom:1112.700000px;}
.y1_c00373{bottom:1136.100000px;}
.y2_c00373{bottom:1139.400000px;}
.h5_c00373{height:54.000000px;}
.h3_c00373{height:60.000000px;}
.h4_c00373{height:66.000000px;}
.h1_c00373{height:72.000000px;}
.h2_c00373{height:84.000000px;}
.h0_c00373{height:1269.000000px;}
.w0_c00373{width:960.480010px;}
.w1_c00373{width:960.750000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:165.600000px;}
.x45_c00373{left:179.250000px;}
.x3f_c00373{left:180.300000px;}
.x1e_c00373{left:181.500000px;}
.x3_c00373{left:183.900000px;}
.x2d_c00373{left:184.950000px;}
.xa7_c00373{left:186.150000px;}
.x49_c00373{left:194.400000px;}
.x85_c00373{left:197.400000px;}
.x34_c00373{left:207.450000px;}
.x15_c00373{left:210.600000px;}
.x4a_c00373{left:212.100000px;}
.x38_c00373{left:214.500000px;}
.x51_c00373{left:216.000000px;}
.x6c_c00373{left:217.050000px;}
.x40_c00373{left:219.150000px;}
.x8f_c00373{left:220.650000px;}
.x5f_c00373{left:222.450000px;}
.xe_c00373{left:223.650000px;}
.x9c_c00373{left:224.700000px;}
.x9e_c00373{left:225.900000px;}
.x25_c00373{left:227.100000px;}
.x9d_c00373{left:228.150000px;}
.x4b_c00373{left:230.100000px;}
.x4_c00373{left:231.450000px;}
.x1f_c00373{left:233.400000px;}
.x39_c00373{left:235.350000px;}
.x68_c00373{left:237.000000px;}
.x90_c00373{left:238.200000px;}
.x64_c00373{left:239.400000px;}
.x26_c00373{left:240.750000px;}
.x7e_c00373{left:242.550000px;}
.x4c_c00373{left:244.500000px;}
.x52_c00373{left:247.350000px;}
.x73_c00373{left:249.450000px;}
.x86_c00373{left:251.550000px;}
.x5_c00373{left:253.050000px;}
.x77_c00373{left:255.300000px;}
.x97_c00373{left:257.250000px;}
.x35_c00373{left:258.900000px;}
.x91_c00373{left:261.900000px;}
.x7f_c00373{left:263.100000px;}
.x6d_c00373{left:264.150000px;}
.x41_c00373{left:265.950000px;}
.xf_c00373{left:268.350000px;}
.x4d_c00373{left:271.500000px;}
.x60_c00373{left:273.900000px;}
.x16_c00373{left:276.450000px;}
.x20_c00373{left:278.100000px;}
.x61_c00373{left:280.800000px;}
.x9f_c00373{left:283.050000px;}
.x42_c00373{left:285.000000px;}
.x53_c00373{left:286.200000px;}
.x65_c00373{left:288.750000px;}
.x7c_c00373{left:289.950000px;}
.x3a_c00373{left:292.050000px;}
.x54_c00373{left:294.450000px;}
.x62_c00373{left:295.500000px;}
.x74_c00373{left:298.350000px;}
.x27_c00373{left:299.400000px;}
.x5e_c00373{left:300.600000px;}
.x66_c00373{left:302.850000px;}
.x80_c00373{left:305.700000px;}
.x6_c00373{left:307.350000px;}
.x2e_c00373{left:309.750000px;}
.x69_c00373{left:310.800000px;}
.x10_c00373{left:311.850000px;}
.x95_c00373{left:314.550000px;}
.x21_c00373{left:315.600000px;}
.x28_c00373{left:317.100000px;}
.x98_c00373{left:318.450000px;}
.x81_c00373{left:319.800000px;}
.x43_c00373{left:321.300000px;}
.x55_c00373{left:323.250000px;}
.x46_c00373{left:325.050000px;}
.x17_c00373{left:326.100000px;}
.x9a_c00373{left:327.900000px;}
.x22_c00373{left:328.950000px;}
.x59_c00373{left:330.900000px;}
.x71_c00373{left:332.550000px;}
.x6e_c00373{left:333.900000px;}
.x7_c00373{left:336.450000px;}
.x5a_c00373{left:338.400000px;}
.x47_c00373{left:339.750000px;}
.x75_c00373{left:341.250000px;}
.x56_c00373{left:343.050000px;}
.x5b_c00373{left:345.300000px;}
.x8_c00373{left:346.500000px;}
.x11_c00373{left:348.150000px;}
.xa5_c00373{left:350.700000px;}
.x4e_c00373{left:351.750000px;}
.x3b_c00373{left:352.950000px;}
.x9_c00373{left:354.750000px;}
.x23_c00373{left:356.700000px;}
.x8c_c00373{left:358.500000px;}
.x18_c00373{left:359.550000px;}
.x67_c00373{left:361.050000px;}
.x12_c00373{left:363.600000px;}
.x6a_c00373{left:365.250000px;}
.x29_c00373{left:366.750000px;}
.x63_c00373{left:367.800000px;}
.x82_c00373{left:369.450000px;}
.xa_c00373{left:370.650000px;}
.x87_c00373{left:372.750000px;}
.x94_c00373{left:373.800000px;}
.x44_c00373{left:375.300000px;}
.x2a_c00373{left:377.250000px;}
.x4f_c00373{left:378.450000px;}
.x92_c00373{left:379.800000px;}
.x6b_c00373{left:381.150000px;}
.x78_c00373{left:382.350000px;}
.xa2_c00373{left:383.850000px;}
.x2f_c00373{left:385.350000px;}
.x19_c00373{left:388.650000px;}
.x24_c00373{left:390.150000px;}
.x6f_c00373{left:391.200000px;}
.xb_c00373{left:392.550000px;}
.xa3_c00373{left:393.600000px;}
.x8b_c00373{left:394.800000px;}
.x13_c00373{left:396.000000px;}
.x57_c00373{left:397.800000px;}
.x79_c00373{left:398.850000px;}
.x88_c00373{left:400.350000px;}
.x30_c00373{left:402.300000px;}
.x5c_c00373{left:404.100000px;}
.x70_c00373{left:406.350000px;}
.xa0_c00373{left:408.300000px;}
.x7a_c00373{left:409.650000px;}
.x93_c00373{left:411.150000px;}
.x2_c00373{left:412.500000px;}
.x14_c00373{left:414.750000px;}
.x83_c00373{left:415.950000px;}
.x96_c00373{left:418.950000px;}
.x1a_c00373{left:422.100000px;}
.x3c_c00373{left:424.500000px;}
.x36_c00373{left:427.050000px;}
.x31_c00373{left:428.250000px;}
.x5d_c00373{left:430.350000px;}
.x50_c00373{left:432.000000px;}
.x48_c00373{left:433.050000px;}
.xa6_c00373{left:434.550000px;}
.x2b_c00373{left:438.000000px;}
.x37_c00373{left:439.350000px;}
.x1b_c00373{left:441.600000px;}
.x8d_c00373{left:443.400000px;}
.x89_c00373{left:448.950000px;}
.xa8_c00373{left:451.350000px;}
.xc_c00373{left:453.000000px;}
.x3d_c00373{left:455.100000px;}
.x2c_c00373{left:457.800000px;}
.x99_c00373{left:459.300000px;}
.x76_c00373{left:461.100000px;}
.x32_c00373{left:462.150000px;}
.xa9_c00373{left:463.500000px;}
.x9b_c00373{left:465.450000px;}
.x8a_c00373{left:467.250000px;}
.xab_c00373{left:469.200000px;}
.x7d_c00373{left:470.550000px;}
.x8e_c00373{left:473.250000px;}
.x1c_c00373{left:474.750000px;}
.xa1_c00373{left:477.450000px;}
.x7b_c00373{left:479.250000px;}
.xa4_c00373{left:480.750000px;}
.x33_c00373{left:482.250000px;}
.x72_c00373{left:484.500000px;}
.x84_c00373{left:485.850000px;}
.x3e_c00373{left:489.300000px;}
.x58_c00373{left:490.350000px;}
.x1d_c00373{left:492.000000px;}
.xaa_c00373{left:495.600000px;}
.xd_c00373{left:499.500000px;}
.xe4_c00373{left:525.300000px;}
.xc3_c00373{left:526.650000px;}
.x12e_c00373{left:529.200000px;}
.x11e_c00373{left:538.950000px;}
.x111_c00373{left:540.900000px;}
.x10b_c00373{left:541.950000px;}
.xb5_c00373{left:543.300000px;}
.xbd_c00373{left:544.500000px;}
.x122_c00373{left:553.350000px;}
.x104_c00373{left:555.900000px;}
.x127_c00373{left:558.150000px;}
.x12f_c00373{left:560.100000px;}
.xac_c00373{left:561.600000px;}
.xee_c00373{left:563.250000px;}
.xdb_c00373{left:565.350000px;}
.xbe_c00373{left:566.400000px;}
.x101_c00373{left:568.200000px;}
.xf5_c00373{left:570.150000px;}
.x13d_c00373{left:573.000000px;}
.x112_c00373{left:575.400000px;}
.xb6_c00373{left:576.750000px;}
.x12b_c00373{left:578.100000px;}
.x117_c00373{left:579.750000px;}
.xfa_c00373{left:583.950000px;}
.x14a_c00373{left:585.900000px;}
.xc4_c00373{left:587.850000px;}
.xe5_c00373{left:592.200000px;}
.x12c_c00373{left:593.550000px;}
.x107_c00373{left:594.900000px;}
.xfe_c00373{left:598.650000px;}
.x151_c00373{left:601.050000px;}
.x137_c00373{left:602.550000px;}
.x10c_c00373{left:604.950000px;}
.xc5_c00373{left:606.900000px;}
.xad_c00373{left:608.700000px;}
.xff_c00373{left:610.200000px;}
.xbf_c00373{left:612.450000px;}
.xb7_c00373{left:613.500000px;}
.xcc_c00373{left:615.300000px;}
.xd1_c00373{left:616.650000px;}
.x134_c00373{left:618.000000px;}
.xd5_c00373{left:621.300000px;}
.x118_c00373{left:622.950000px;}
.xdc_c00373{left:625.050000px;}
.xea_c00373{left:628.200000px;}
.xc0_c00373{left:630.150000px;}
.xfb_c00373{left:632.250000px;}
.xef_c00373{left:633.750000px;}
.xe6_c00373{left:637.200000px;}
.xb8_c00373{left:639.750000px;}
.xdd_c00373{left:642.750000px;}
.xd6_c00373{left:645.000000px;}
.x128_c00373{left:646.350000px;}
.xae_c00373{left:648.600000px;}
.xf7_c00373{left:649.800000px;}
.xc1_c00373{left:651.750000px;}
.xf0_c00373{left:652.800000px;}
.x130_c00373{left:654.450000px;}
.x100_c00373{left:657.300000px;}
.x132_c00373{left:658.500000px;}
.xcd_c00373{left:660.000000px;}
.x108_c00373{left:661.050000px;}
.xde_c00373{left:664.350000px;}
.xeb_c00373{left:665.700000px;}
.x13e_c00373{left:667.650000px;}
.xf6_c00373{left:671.250000px;}
.x14b_c00373{left:673.800000px;}
.x133_c00373{left:675.450000px;}
.xc6_c00373{left:676.500000px;}
.x143_c00373{left:678.300000px;}
.xaf_c00373{left:680.250000px;}
.xfc_c00373{left:682.650000px;}
.x10d_c00373{left:684.150000px;}
.xe7_c00373{left:686.550000px;}
.xf8_c00373{left:687.600000px;}
.x140_c00373{left:688.800000px;}
.xb9_c00373{left:689.850000px;}
.xc2_c00373{left:691.650000px;}
.x11b_c00373{left:695.550000px;}
.x138_c00373{left:698.700000px;}
.xb0_c00373{left:701.100000px;}
.x10e_c00373{left:702.450000px;}
.xc7_c00373{left:703.500000px;}
.xf1_c00373{left:704.700000px;}
.xdf_c00373{left:706.050000px;}
.x12d_c00373{left:708.000000px;}
.x14e_c00373{left:710.250000px;}
.xe8_c00373{left:712.800000px;}
.xe0_c00373{left:716.850000px;}
.x139_c00373{left:718.800000px;}
.x105_c00373{left:720.150000px;}
.x149_c00373{left:721.200000px;}
.xba_c00373{left:722.250000px;}
.x144_c00373{left:726.450000px;}
.x146_c00373{left:727.500000px;}
.x119_c00373{left:731.250000px;}
.x135_c00373{left:735.450000px;}
.x145_c00373{left:736.500000px;}
.xce_c00373{left:737.700000px;}
.xf2_c00373{left:740.700000px;}
.x109_c00373{left:741.900000px;}
.x125_c00373{left:743.550000px;}
.x13a_c00373{left:745.050000px;}
.x102_c00373{left:746.250000px;}
.xd2_c00373{left:748.050000px;}
.x113_c00373{left:749.250000px;}
.x10f_c00373{left:751.350000px;}
.x123_c00373{left:753.150000px;}
.xe1_c00373{left:754.350000px;}
.xd7_c00373{left:755.550000px;}
.xb1_c00373{left:757.200000px;}
.xf3_c00373{left:758.700000px;}
.x114_c00373{left:760.800000px;}
.x13b_c00373{left:762.300000px;}
.x14c_c00373{left:764.100000px;}
.x129_c00373{left:766.800000px;}
.xd3_c00373{left:767.850000px;}
.xc8_c00373{left:770.100000px;}
.x147_c00373{left:771.450000px;}
.xec_c00373{left:772.950000px;}
.x115_c00373{left:774.450000px;}
.xd8_c00373{left:775.650000px;}
.xe9_c00373{left:778.350000px;}
.x110_c00373{left:779.850000px;}
.x11c_c00373{left:781.650000px;}
.xf9_c00373{left:782.700000px;}
.x126_c00373{left:783.900000px;}
.xb2_c00373{left:785.250000px;}
.x124_c00373{left:786.600000px;}
.xc9_c00373{left:790.200000px;}
.xfd_c00373{left:791.250000px;}
.x11f_c00373{left:792.750000px;}
.xd9_c00373{left:793.950000px;}
.x13f_c00373{left:795.450000px;}
.xd4_c00373{left:798.150000px;}
.x12a_c00373{left:799.200000px;}
.xed_c00373{left:800.250000px;}
.xf4_c00373{left:801.600000px;}
.x14d_c00373{left:802.650000px;}
.x13c_c00373{left:803.700000px;}
.xbb_c00373{left:807.000000px;}
.x11a_c00373{left:808.500000px;}
.xca_c00373{left:809.700000px;}
.x131_c00373{left:811.350000px;}
.x10a_c00373{left:812.400000px;}
.x11d_c00373{left:813.750000px;}
.x103_c00373{left:816.450000px;}
.xcf_c00373{left:818.700000px;}
.xe2_c00373{left:820.350000px;}
.x120_c00373{left:821.550000px;}
.xda_c00373{left:824.550000px;}
.xb3_c00373{left:825.600000px;}
.x142_c00373{left:828.750000px;}
.x116_c00373{left:830.250000px;}
.x148_c00373{left:831.300000px;}
.x141_c00373{left:832.350000px;}
.x136_c00373{left:833.700000px;}
.xd0_c00373{left:835.200000px;}
.x106_c00373{left:838.650000px;}
.x14f_c00373{left:842.700000px;}
.xe3_c00373{left:844.050000px;}
.xb4_c00373{left:845.700000px;}
.xcb_c00373{left:848.550000px;}
.x121_c00373{left:850.050000px;}
.x150_c00373{left:853.650000px;}
.xbc_c00373{left:859.200000px;}
.x152_c00373{left:868.950000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls1_c00373{letter-spacing:0.000000pt;}
.ls0_c00373{letter-spacing:54.601093pt;}
.ws9_c00373{word-spacing:-83.934426pt;}
.ws15_c00373{word-spacing:-1.653398pt;}
.ws10_c00373{word-spacing:-0.736805pt;}
.ws16_c00373{word-spacing:0.000000pt;}
.ws12_c00373{word-spacing:1.728395pt;}
.ws11_c00373{word-spacing:3.040340pt;}
.ws14_c00373{word-spacing:6.878183pt;}
.ws13_c00373{word-spacing:9.333333pt;}
.wsf_c00373{word-spacing:14.144928pt;}
.ws7_c00373{word-spacing:14.685769pt;}
.ws0_c00373{word-spacing:17.742120pt;}
.ws2_c00373{word-spacing:19.682540pt;}
.ws4_c00373{word-spacing:22.857143pt;}
.wsd_c00373{word-spacing:26.031746pt;}
.ws6_c00373{word-spacing:28.765027pt;}
.ws3_c00373{word-spacing:35.555556pt;}
.ws8_c00373{word-spacing:39.043257pt;}
.wse_c00373{word-spacing:39.259259pt;}
.wsc_c00373{word-spacing:48.253968pt;}
.ws1_c00373{word-spacing:53.123726pt;}
.ws5_c00373{word-spacing:61.111111pt;}
.wsb_c00373{word-spacing:136.753181pt;}
.wsa_c00373{word-spacing:154.666667pt;}
._4_c00373{margin-left:-54.601093pt;}
._3_c00373{width:3.497268pt;}
._0_c00373{width:49.523810pt;}
._1_c00373{width:52.698413pt;}
._2_c00373{width:65.925926pt;}
._5_c00373{width:75.978836pt;}
.fs4_c00373{font-size:48.000000pt;}
.fs2_c00373{font-size:53.333333pt;}
.fs3_c00373{font-size:58.666667pt;}
.fs0_c00373{font-size:64.000000pt;}
.fs1_c00373{font-size:74.666667pt;}
.y0_c00373{bottom:0.000000pt;}
.y39_c00373{bottom:162.000000pt;}
.y6c_c00373{bottom:163.866667pt;}
.y38_c00373{bottom:178.933333pt;}
.y6b_c00373{bottom:180.533333pt;}
.y37_c00373{bottom:195.200000pt;}
.y6a_c00373{bottom:198.133333pt;}
.y36_c00373{bottom:210.933333pt;}
.y69_c00373{bottom:216.133333pt;}
.y35_c00373{bottom:226.666667pt;}
.y68_c00373{bottom:231.200000pt;}
.y34_c00373{bottom:242.400000pt;}
.y67_c00373{bottom:247.466667pt;}
.y33_c00373{bottom:258.133333pt;}
.y66_c00373{bottom:263.466667pt;}
.y32_c00373{bottom:274.133333pt;}
.y65_c00373{bottom:279.200000pt;}
.y31_c00373{bottom:290.133333pt;}
.y64_c00373{bottom:302.933333pt;}
.y30_c00373{bottom:306.400000pt;}
.y63_c00373{bottom:310.666667pt;}
.y2f_c00373{bottom:322.400000pt;}
.y62_c00373{bottom:326.933333pt;}
.y2e_c00373{bottom:338.666667pt;}
.y61_c00373{bottom:342.666667pt;}
.y2d_c00373{bottom:354.666667pt;}
.y60_c00373{bottom:358.666667pt;}
.y2c_c00373{bottom:370.400000pt;}
.y5f_c00373{bottom:374.666667pt;}
.y2b_c00373{bottom:386.400000pt;}
.y5e_c00373{bottom:390.666667pt;}
.y2a_c00373{bottom:402.400000pt;}
.y5d_c00373{bottom:406.666667pt;}
.y29_c00373{bottom:418.400000pt;}
.y5c_c00373{bottom:422.666667pt;}
.y28_c00373{bottom:434.133333pt;}
.y5b_c00373{bottom:438.666667pt;}
.y27_c00373{bottom:449.866667pt;}
.y5a_c00373{bottom:454.400000pt;}
.y26_c00373{bottom:465.866667pt;}
.y59_c00373{bottom:470.400000pt;}
.y25_c00373{bottom:481.600000pt;}
.y58_c00373{bottom:488.266667pt;}
.y24_c00373{bottom:497.600000pt;}
.y57_c00373{bottom:501.733333pt;}
.y23_c00373{bottom:513.333333pt;}
.y56_c00373{bottom:514.533333pt;}
.y55_c00373{bottom:531.866667pt;}
.y22_c00373{bottom:534.400000pt;}
.y54_c00373{bottom:545.333333pt;}
.y21_c00373{bottom:548.800000pt;}
.y53_c00373{bottom:557.466667pt;}
.y20_c00373{bottom:561.600000pt;}
.y52_c00373{bottom:570.266667pt;}
.y1f_c00373{bottom:574.400000pt;}
.y51_c00373{bottom:584.666667pt;}
.y1e_c00373{bottom:596.133333pt;}
.y50_c00373{bottom:600.933333pt;}
.y1d_c00373{bottom:607.733333pt;}
.y4f_c00373{bottom:616.933333pt;}
.y1c_c00373{bottom:619.200000pt;}
.y4e_c00373{bottom:632.933333pt;}
.y1b_c00373{bottom:633.600000pt;}
.y1a_c00373{bottom:647.733333pt;}
.y4d_c00373{bottom:648.933333pt;}
.y19_c00373{bottom:660.533333pt;}
.y4c_c00373{bottom:664.666667pt;}
.y18_c00373{bottom:672.400000pt;}
.y4b_c00373{bottom:680.666667pt;}
.y17_c00373{bottom:686.133333pt;}
.y16_c00373{bottom:697.600000pt;}
.y4a_c00373{bottom:700.133333pt;}
.y15_c00373{bottom:710.400000pt;}
.y6e_c00373{bottom:715.866667pt;}
.y14_c00373{bottom:723.200000pt;}
.y49_c00373{bottom:731.733333pt;}
.y6d_c00373{bottom:731.866667pt;}
.y13_c00373{bottom:736.000000pt;}
.y48_c00373{bottom:747.466667pt;}
.y12_c00373{bottom:748.400000pt;}
.y11_c00373{bottom:762.533333pt;}
.y47_c00373{bottom:767.333333pt;}
.y10_c00373{bottom:772.800000pt;}
.yf_c00373{bottom:786.800000pt;}
.y46_c00373{bottom:790.666667pt;}
.ye_c00373{bottom:800.266667pt;}
.y45_c00373{bottom:806.666667pt;}
.yd_c00373{bottom:811.200000pt;}
.y44_c00373{bottom:822.666667pt;}
.yc_c00373{bottom:825.600000pt;}
.y43_c00373{bottom:838.666667pt;}
.yb_c00373{bottom:840.666667pt;}
.y42_c00373{bottom:857.600000pt;}
.ya_c00373{bottom:863.333333pt;}
.y41_c00373{bottom:873.866667pt;}
.y9_c00373{bottom:881.333333pt;}
.y40_c00373{bottom:889.866667pt;}
.y8_c00373{bottom:897.333333pt;}
.y3f_c00373{bottom:905.866667pt;}
.y7_c00373{bottom:913.333333pt;}
.y3e_c00373{bottom:921.866667pt;}
.y6_c00373{bottom:929.333333pt;}
.y3d_c00373{bottom:937.600000pt;}
.y5_c00373{bottom:945.333333pt;}
.y3c_c00373{bottom:957.066667pt;}
.y4_c00373{bottom:972.266667pt;}
.y3b_c00373{bottom:973.333333pt;}
.y3_c00373{bottom:988.533333pt;}
.y3a_c00373{bottom:989.066667pt;}
.y1_c00373{bottom:1009.866667pt;}
.y2_c00373{bottom:1012.800000pt;}
.h5_c00373{height:48.000000pt;}
.h3_c00373{height:53.333333pt;}
.h4_c00373{height:58.666667pt;}
.h1_c00373{height:64.000000pt;}
.h2_c00373{height:74.666667pt;}
.h0_c00373{height:1128.000000pt;}
.w0_c00373{width:853.760009pt;}
.w1_c00373{width:854.000000pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:147.200000pt;}
.x45_c00373{left:159.333333pt;}
.x3f_c00373{left:160.266667pt;}
.x1e_c00373{left:161.333333pt;}
.x3_c00373{left:163.466667pt;}
.x2d_c00373{left:164.400000pt;}
.xa7_c00373{left:165.466667pt;}
.x49_c00373{left:172.800000pt;}
.x85_c00373{left:175.466667pt;}
.x34_c00373{left:184.400000pt;}
.x15_c00373{left:187.200000pt;}
.x4a_c00373{left:188.533333pt;}
.x38_c00373{left:190.666667pt;}
.x51_c00373{left:192.000000pt;}
.x6c_c00373{left:192.933333pt;}
.x40_c00373{left:194.800000pt;}
.x8f_c00373{left:196.133333pt;}
.x5f_c00373{left:197.733333pt;}
.xe_c00373{left:198.800000pt;}
.x9c_c00373{left:199.733333pt;}
.x9e_c00373{left:200.800000pt;}
.x25_c00373{left:201.866667pt;}
.x9d_c00373{left:202.800000pt;}
.x4b_c00373{left:204.533333pt;}
.x4_c00373{left:205.733333pt;}
.x1f_c00373{left:207.466667pt;}
.x39_c00373{left:209.200000pt;}
.x68_c00373{left:210.666667pt;}
.x90_c00373{left:211.733333pt;}
.x64_c00373{left:212.800000pt;}
.x26_c00373{left:214.000000pt;}
.x7e_c00373{left:215.600000pt;}
.x4c_c00373{left:217.333333pt;}
.x52_c00373{left:219.866667pt;}
.x73_c00373{left:221.733333pt;}
.x86_c00373{left:223.600000pt;}
.x5_c00373{left:224.933333pt;}
.x77_c00373{left:226.933333pt;}
.x97_c00373{left:228.666667pt;}
.x35_c00373{left:230.133333pt;}
.x91_c00373{left:232.800000pt;}
.x7f_c00373{left:233.866667pt;}
.x6d_c00373{left:234.800000pt;}
.x41_c00373{left:236.400000pt;}
.xf_c00373{left:238.533333pt;}
.x4d_c00373{left:241.333333pt;}
.x60_c00373{left:243.466667pt;}
.x16_c00373{left:245.733333pt;}
.x20_c00373{left:247.200000pt;}
.x61_c00373{left:249.600000pt;}
.x9f_c00373{left:251.600000pt;}
.x42_c00373{left:253.333333pt;}
.x53_c00373{left:254.400000pt;}
.x65_c00373{left:256.666667pt;}
.x7c_c00373{left:257.733333pt;}
.x3a_c00373{left:259.600000pt;}
.x54_c00373{left:261.733333pt;}
.x62_c00373{left:262.666667pt;}
.x74_c00373{left:265.200000pt;}
.x27_c00373{left:266.133333pt;}
.x5e_c00373{left:267.200000pt;}
.x66_c00373{left:269.200000pt;}
.x80_c00373{left:271.733333pt;}
.x6_c00373{left:273.200000pt;}
.x2e_c00373{left:275.333333pt;}
.x69_c00373{left:276.266667pt;}
.x10_c00373{left:277.200000pt;}
.x95_c00373{left:279.600000pt;}
.x21_c00373{left:280.533333pt;}
.x28_c00373{left:281.866667pt;}
.x98_c00373{left:283.066667pt;}
.x81_c00373{left:284.266667pt;}
.x43_c00373{left:285.600000pt;}
.x55_c00373{left:287.333333pt;}
.x46_c00373{left:288.933333pt;}
.x17_c00373{left:289.866667pt;}
.x9a_c00373{left:291.466667pt;}
.x22_c00373{left:292.400000pt;}
.x59_c00373{left:294.133333pt;}
.x71_c00373{left:295.600000pt;}
.x6e_c00373{left:296.800000pt;}
.x7_c00373{left:299.066667pt;}
.x5a_c00373{left:300.800000pt;}
.x47_c00373{left:302.000000pt;}
.x75_c00373{left:303.333333pt;}
.x56_c00373{left:304.933333pt;}
.x5b_c00373{left:306.933333pt;}
.x8_c00373{left:308.000000pt;}
.x11_c00373{left:309.466667pt;}
.xa5_c00373{left:311.733333pt;}
.x4e_c00373{left:312.666667pt;}
.x3b_c00373{left:313.733333pt;}
.x9_c00373{left:315.333333pt;}
.x23_c00373{left:317.066667pt;}
.x8c_c00373{left:318.666667pt;}
.x18_c00373{left:319.600000pt;}
.x67_c00373{left:320.933333pt;}
.x12_c00373{left:323.200000pt;}
.x6a_c00373{left:324.666667pt;}
.x29_c00373{left:326.000000pt;}
.x63_c00373{left:326.933333pt;}
.x82_c00373{left:328.400000pt;}
.xa_c00373{left:329.466667pt;}
.x87_c00373{left:331.333333pt;}
.x94_c00373{left:332.266667pt;}
.x44_c00373{left:333.600000pt;}
.x2a_c00373{left:335.333333pt;}
.x4f_c00373{left:336.400000pt;}
.x92_c00373{left:337.600000pt;}
.x6b_c00373{left:338.800000pt;}
.x78_c00373{left:339.866667pt;}
.xa2_c00373{left:341.200000pt;}
.x2f_c00373{left:342.533333pt;}
.x19_c00373{left:345.466667pt;}
.x24_c00373{left:346.800000pt;}
.x6f_c00373{left:347.733333pt;}
.xb_c00373{left:348.933333pt;}
.xa3_c00373{left:349.866667pt;}
.x8b_c00373{left:350.933333pt;}
.x13_c00373{left:352.000000pt;}
.x57_c00373{left:353.600000pt;}
.x79_c00373{left:354.533333pt;}
.x88_c00373{left:355.866667pt;}
.x30_c00373{left:357.600000pt;}
.x5c_c00373{left:359.200000pt;}
.x70_c00373{left:361.200000pt;}
.xa0_c00373{left:362.933333pt;}
.x7a_c00373{left:364.133333pt;}
.x93_c00373{left:365.466667pt;}
.x2_c00373{left:366.666667pt;}
.x14_c00373{left:368.666667pt;}
.x83_c00373{left:369.733333pt;}
.x96_c00373{left:372.400000pt;}
.x1a_c00373{left:375.200000pt;}
.x3c_c00373{left:377.333333pt;}
.x36_c00373{left:379.600000pt;}
.x31_c00373{left:380.666667pt;}
.x5d_c00373{left:382.533333pt;}
.x50_c00373{left:384.000000pt;}
.x48_c00373{left:384.933333pt;}
.xa6_c00373{left:386.266667pt;}
.x2b_c00373{left:389.333333pt;}
.x37_c00373{left:390.533333pt;}
.x1b_c00373{left:392.533333pt;}
.x8d_c00373{left:394.133333pt;}
.x89_c00373{left:399.066667pt;}
.xa8_c00373{left:401.200000pt;}
.xc_c00373{left:402.666667pt;}
.x3d_c00373{left:404.533333pt;}
.x2c_c00373{left:406.933333pt;}
.x99_c00373{left:408.266667pt;}
.x76_c00373{left:409.866667pt;}
.x32_c00373{left:410.800000pt;}
.xa9_c00373{left:412.000000pt;}
.x9b_c00373{left:413.733333pt;}
.x8a_c00373{left:415.333333pt;}
.xab_c00373{left:417.066667pt;}
.x7d_c00373{left:418.266667pt;}
.x8e_c00373{left:420.666667pt;}
.x1c_c00373{left:422.000000pt;}
.xa1_c00373{left:424.400000pt;}
.x7b_c00373{left:426.000000pt;}
.xa4_c00373{left:427.333333pt;}
.x33_c00373{left:428.666667pt;}
.x72_c00373{left:430.666667pt;}
.x84_c00373{left:431.866667pt;}
.x3e_c00373{left:434.933333pt;}
.x58_c00373{left:435.866667pt;}
.x1d_c00373{left:437.333333pt;}
.xaa_c00373{left:440.533333pt;}
.xd_c00373{left:444.000000pt;}
.xe4_c00373{left:466.933333pt;}
.xc3_c00373{left:468.133333pt;}
.x12e_c00373{left:470.400000pt;}
.x11e_c00373{left:479.066667pt;}
.x111_c00373{left:480.800000pt;}
.x10b_c00373{left:481.733333pt;}
.xb5_c00373{left:482.933333pt;}
.xbd_c00373{left:484.000000pt;}
.x122_c00373{left:491.866667pt;}
.x104_c00373{left:494.133333pt;}
.x127_c00373{left:496.133333pt;}
.x12f_c00373{left:497.866667pt;}
.xac_c00373{left:499.200000pt;}
.xee_c00373{left:500.666667pt;}
.xdb_c00373{left:502.533333pt;}
.xbe_c00373{left:503.466667pt;}
.x101_c00373{left:505.066667pt;}
.xf5_c00373{left:506.800000pt;}
.x13d_c00373{left:509.333333pt;}
.x112_c00373{left:511.466667pt;}
.xb6_c00373{left:512.666667pt;}
.x12b_c00373{left:513.866667pt;}
.x117_c00373{left:515.333333pt;}
.xfa_c00373{left:519.066667pt;}
.x14a_c00373{left:520.800000pt;}
.xc4_c00373{left:522.533333pt;}
.xe5_c00373{left:526.400000pt;}
.x12c_c00373{left:527.600000pt;}
.x107_c00373{left:528.800000pt;}
.xfe_c00373{left:532.133333pt;}
.x151_c00373{left:534.266667pt;}
.x137_c00373{left:535.600000pt;}
.x10c_c00373{left:537.733333pt;}
.xc5_c00373{left:539.466667pt;}
.xad_c00373{left:541.066667pt;}
.xff_c00373{left:542.400000pt;}
.xbf_c00373{left:544.400000pt;}
.xb7_c00373{left:545.333333pt;}
.xcc_c00373{left:546.933333pt;}
.xd1_c00373{left:548.133333pt;}
.x134_c00373{left:549.333333pt;}
.xd5_c00373{left:552.266667pt;}
.x118_c00373{left:553.733333pt;}
.xdc_c00373{left:555.600000pt;}
.xea_c00373{left:558.400000pt;}
.xc0_c00373{left:560.133333pt;}
.xfb_c00373{left:562.000000pt;}
.xef_c00373{left:563.333333pt;}
.xe6_c00373{left:566.400000pt;}
.xb8_c00373{left:568.666667pt;}
.xdd_c00373{left:571.333333pt;}
.xd6_c00373{left:573.333333pt;}
.x128_c00373{left:574.533333pt;}
.xae_c00373{left:576.533333pt;}
.xf7_c00373{left:577.600000pt;}
.xc1_c00373{left:579.333333pt;}
.xf0_c00373{left:580.266667pt;}
.x130_c00373{left:581.733333pt;}
.x100_c00373{left:584.266667pt;}
.x132_c00373{left:585.333333pt;}
.xcd_c00373{left:586.666667pt;}
.x108_c00373{left:587.600000pt;}
.xde_c00373{left:590.533333pt;}
.xeb_c00373{left:591.733333pt;}
.x13e_c00373{left:593.466667pt;}
.xf6_c00373{left:596.666667pt;}
.x14b_c00373{left:598.933333pt;}
.x133_c00373{left:600.400000pt;}
.xc6_c00373{left:601.333333pt;}
.x143_c00373{left:602.933333pt;}
.xaf_c00373{left:604.666667pt;}
.xfc_c00373{left:606.800000pt;}
.x10d_c00373{left:608.133333pt;}
.xe7_c00373{left:610.266667pt;}
.xf8_c00373{left:611.200000pt;}
.x140_c00373{left:612.266667pt;}
.xb9_c00373{left:613.200000pt;}
.xc2_c00373{left:614.800000pt;}
.x11b_c00373{left:618.266667pt;}
.x138_c00373{left:621.066667pt;}
.xb0_c00373{left:623.200000pt;}
.x10e_c00373{left:624.400000pt;}
.xc7_c00373{left:625.333333pt;}
.xf1_c00373{left:626.400000pt;}
.xdf_c00373{left:627.600000pt;}
.x12d_c00373{left:629.333333pt;}
.x14e_c00373{left:631.333333pt;}
.xe8_c00373{left:633.600000pt;}
.xe0_c00373{left:637.200000pt;}
.x139_c00373{left:638.933333pt;}
.x105_c00373{left:640.133333pt;}
.x149_c00373{left:641.066667pt;}
.xba_c00373{left:642.000000pt;}
.x144_c00373{left:645.733333pt;}
.x146_c00373{left:646.666667pt;}
.x119_c00373{left:650.000000pt;}
.x135_c00373{left:653.733333pt;}
.x145_c00373{left:654.666667pt;}
.xce_c00373{left:655.733333pt;}
.xf2_c00373{left:658.400000pt;}
.x109_c00373{left:659.466667pt;}
.x125_c00373{left:660.933333pt;}
.x13a_c00373{left:662.266667pt;}
.x102_c00373{left:663.333333pt;}
.xd2_c00373{left:664.933333pt;}
.x113_c00373{left:666.000000pt;}
.x10f_c00373{left:667.866667pt;}
.x123_c00373{left:669.466667pt;}
.xe1_c00373{left:670.533333pt;}
.xd7_c00373{left:671.600000pt;}
.xb1_c00373{left:673.066667pt;}
.xf3_c00373{left:674.400000pt;}
.x114_c00373{left:676.266667pt;}
.x13b_c00373{left:677.600000pt;}
.x14c_c00373{left:679.200000pt;}
.x129_c00373{left:681.600000pt;}
.xd3_c00373{left:682.533333pt;}
.xc8_c00373{left:684.533333pt;}
.x147_c00373{left:685.733333pt;}
.xec_c00373{left:687.066667pt;}
.x115_c00373{left:688.400000pt;}
.xd8_c00373{left:689.466667pt;}
.xe9_c00373{left:691.866667pt;}
.x110_c00373{left:693.200000pt;}
.x11c_c00373{left:694.800000pt;}
.xf9_c00373{left:695.733333pt;}
.x126_c00373{left:696.800000pt;}
.xb2_c00373{left:698.000000pt;}
.x124_c00373{left:699.200000pt;}
.xc9_c00373{left:702.400000pt;}
.xfd_c00373{left:703.333333pt;}
.x11f_c00373{left:704.666667pt;}
.xd9_c00373{left:705.733333pt;}
.x13f_c00373{left:707.066667pt;}
.xd4_c00373{left:709.466667pt;}
.x12a_c00373{left:710.400000pt;}
.xed_c00373{left:711.333333pt;}
.xf4_c00373{left:712.533333pt;}
.x14d_c00373{left:713.466667pt;}
.x13c_c00373{left:714.400000pt;}
.xbb_c00373{left:717.333333pt;}
.x11a_c00373{left:718.666667pt;}
.xca_c00373{left:719.733333pt;}
.x131_c00373{left:721.200000pt;}
.x10a_c00373{left:722.133333pt;}
.x11d_c00373{left:723.333333pt;}
.x103_c00373{left:725.733333pt;}
.xcf_c00373{left:727.733333pt;}
.xe2_c00373{left:729.200000pt;}
.x120_c00373{left:730.266667pt;}
.xda_c00373{left:732.933333pt;}
.xb3_c00373{left:733.866667pt;}
.x142_c00373{left:736.666667pt;}
.x116_c00373{left:738.000000pt;}
.x148_c00373{left:738.933333pt;}
.x141_c00373{left:739.866667pt;}
.x136_c00373{left:741.066667pt;}
.xd0_c00373{left:742.400000pt;}
.x106_c00373{left:745.466667pt;}
.x14f_c00373{left:749.066667pt;}
.xe3_c00373{left:750.266667pt;}
.xb4_c00373{left:751.733333pt;}
.xcb_c00373{left:754.266667pt;}
.x121_c00373{left:755.600000pt;}
.x150_c00373{left:758.800000pt;}
.xbc_c00373{left:763.733333pt;}
.x152_c00373{left:772.400000pt;}
}





/* 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_c00374 {
    display:none;
  }
  .loading-indicator_c00374.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00374 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_c00374 { 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_c00374" -> "#page-container .classname_c00374")
 */
.pf_c00374 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00374 { /* 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_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00374 { /* 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_c00374 { /* 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_c00374 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00374 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00374 {overflow:visible;}
  }
}
.c_c00374 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00374 { /* 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_c00374:after { /* webkit #35443 */
  content: '';
}
.t_c00374:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00374 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 */
}
.__c00374 { /* 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_c00374 { /* info for Javascript */
  display:none;
}
.l_c00374 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00374 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00374 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00374: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_c00374 {
    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_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00374.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_c00374 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00374;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.000000;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;}
.mf8_c00374{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m62_c00374{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00374{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00374{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m91_c00374{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00374{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m74_c00374{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00374{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m116_c00374{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00374{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m92_c00374{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00374{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00374{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00374{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00374{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00374{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m73_c00374{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00374{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m94_c00374{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00374{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.me2_c00374{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m93_c00374{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00374{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00374{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m36_c00374{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m31_c00374{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00374{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00374{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m112_c00374{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m123_c00374{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m71_c00374{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m80_c00374{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00374{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00374{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00374{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00374{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.maa_c00374{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00374{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00374{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m43_c00374{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mce_c00374{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m98_c00374{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m40_c00374{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m47_c00374{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00374{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00374{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m102_c00374{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m16_c00374{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8_c00374{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m23_c00374{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m63_c00374{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00374{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m117_c00374{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m81_c00374{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00374{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m87_c00374{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00374{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m34_c00374{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7_c00374{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00374{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mca_c00374{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m54_c00374{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00374{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m24_c00374{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m2_c00374{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m56_c00374{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m103_c00374{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m44_c00374{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m9_c00374{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m10_c00374{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m115_c00374{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00374{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.meb_c00374{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m53_c00374{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mba_c00374{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00374{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m118_c00374{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.md2_c00374{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00374{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m105_c00374{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.me6_c00374{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb_c00374{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m39_c00374{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00374{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m50_c00374{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00374{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00374{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md9_c00374{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m59_c00374{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00374{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m82_c00374{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mff_c00374{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00374{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m11_c00374{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md1_c00374{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00374{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00374{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m70_c00374{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mab_c00374{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md6_c00374{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00374{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m18_c00374{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00374{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mc_c00374{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00374{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00374{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00374{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00374{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00374{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m5_c00374{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mde_c00374{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m19_c00374{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m72_c00374{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00374{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m29_c00374{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m25_c00374{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m17_c00374{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00374{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m28_c00374{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m69_c00374{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m35_c00374{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mac_c00374{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00374{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00374{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m26_c00374{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.me9_c00374{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00374{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m15_c00374{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md0_c00374{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me7_c00374{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md7_c00374{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00374{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mad_c00374{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m101_c00374{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00374{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00374{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m85_c00374{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me_c00374{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00374{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00374{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00374{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00374{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m22_c00374{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00374{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00374{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m37_c00374{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mee_c00374{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m83_c00374{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00374{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me5_c00374{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00374{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma_c00374{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00374{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m58_c00374{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m41_c00374{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me0_c00374{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4_c00374{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m30_c00374{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00374{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m48_c00374{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m12_c00374{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00374{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00374{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md4_c00374{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf_c00374{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00374{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00374{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00374{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00374{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m55_c00374{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00374{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m86_c00374{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m21_c00374{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00374{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m106_c00374{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00374{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00374{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00374{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m52_c00374{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m27_c00374{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6_c00374{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m46_c00374{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m14_c00374{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m110_c00374{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00374{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.maf_c00374{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.md_c00374{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m109_c00374{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00374{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00374{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m42_c00374{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00374{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00374{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00374{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m79_c00374{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.med_c00374{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m89_c00374{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00374{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m114_c00374{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00374{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00374{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00374{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m88_c00374{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00374{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00374{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m84_c00374{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00374{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mda_c00374{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00374{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md3_c00374{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00374{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00374{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me8_c00374{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mec_c00374{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m32_c00374{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00374{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me4_c00374{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m121_c00374{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00374{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00374{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mea_c00374{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md5_c00374{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00374{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00374{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00374{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00374{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m97_c00374{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00374{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m99_c00374{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00374{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00374{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m76_c00374{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m66_c00374{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00374{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m20_c00374{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m51_c00374{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m119_c00374{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m120_c00374{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00374{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00374{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00374{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00374{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00374{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00374{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m108_c00374{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m45_c00374{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m78_c00374{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m113_c00374{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00374{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m122_c00374{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mef_c00374{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m100_c00374{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m60_c00374{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00374{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me1_c00374{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mae_c00374{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00374{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00374{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m49_c00374{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00374{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m61_c00374{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m75_c00374{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00374{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m107_c00374{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m68_c00374{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00374{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00374{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00374{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00374{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00374{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00374{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m77_c00374{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m128_c00374{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00374{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00374{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m95_c00374{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m129_c00374{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m33_c00374{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m65_c00374{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m111_c00374{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m64_c00374{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00374{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00374{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00374{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m57_c00374{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me3_c00374{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.md8_c00374{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00374{transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);}
.m67_c00374{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m124_c00374{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m90_c00374{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00374{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m127_c00374{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m126_c00374{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00374{transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);}
.m0_c00374{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m104_c00374{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m125_c00374{transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);}
.m96_c00374{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00374{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m38_c00374{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls1_c00374{letter-spacing:0.000000px;}
.ls0_c00374{letter-spacing:33.428571px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{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__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00374{word-spacing:-51.428571px;}
.ws3_c00374{word-spacing:-11.875000px;}
.ws5_c00374{word-spacing:-5.815642px;}
.ws4_c00374{word-spacing:-5.147059px;}
.ws2_c00374{word-spacing:-2.666667px;}
.ws6_c00374{word-spacing:-2.157593px;}
.ws10_c00374{word-spacing:0.000000px;}
.ws7_c00374{word-spacing:6.825090px;}
.wsd_c00374{word-spacing:13.285714px;}
.ws0_c00374{word-spacing:16.934349px;}
.ws9_c00374{word-spacing:18.125000px;}
.ws8_c00374{word-spacing:25.714286px;}
.wsa_c00374{word-spacing:29.285714px;}
.wsb_c00374{word-spacing:44.166667px;}
.ws1_c00374{word-spacing:45.375000px;}
.wse_c00374{word-spacing:53.966261px;}
.wsf_c00374{word-spacing:66.000000px;}
._2_c00374{margin-left:-33.428571px;}
._1_c00374{margin-left:-2.142857px;}
._0_c00374{width:5.357143px;}
._3_c00374{width:35.571429px;}
.fc0_c00374{color:transparent;}
.fs7_c00374{font-size:30.000000px;}
.fs6_c00374{font-size:36.000000px;}
.fs4_c00374{font-size:42.000000px;}
.fs5_c00374{font-size:54.000000px;}
.fs3_c00374{font-size:60.000000px;}
.fs2_c00374{font-size:66.000000px;}
.fs1_c00374{font-size:72.000000px;}
.fs0_c00374{font-size:84.000000px;}
.y0_c00374{bottom:0.000000px;}
.y68_c00374{bottom:147.600000px;}
.y67_c00374{bottom:179.700000px;}
.y34_c00374{bottom:196.200000px;}
.y66_c00374{bottom:197.250000px;}
.y33_c00374{bottom:210.600000px;}
.y65_c00374{bottom:215.250000px;}
.y32_c00374{bottom:224.700000px;}
.y64_c00374{bottom:233.250000px;}
.y31_c00374{bottom:239.400000px;}
.y63_c00374{bottom:251.250000px;}
.y30_c00374{bottom:253.350000px;}
.y2f_c00374{bottom:267.750000px;}
.y62_c00374{bottom:272.100000px;}
.y2e_c00374{bottom:281.850000px;}
.y61_c00374{bottom:286.500000px;}
.y60_c00374{bottom:301.650000px;}
.y5f_c00374{bottom:315.750000px;}
.y5e_c00374{bottom:330.450000px;}
.y2d_c00374{bottom:332.400000px;}
.y5d_c00374{bottom:345.600000px;}
.y2c_c00374{bottom:350.400000px;}
.y5c_c00374{bottom:359.250000px;}
.y2b_c00374{bottom:368.100000px;}
.y5b_c00374{bottom:373.350000px;}
.y2a_c00374{bottom:386.100000px;}
.y5a_c00374{bottom:389.550000px;}
.y29_c00374{bottom:403.800000px;}
.y59_c00374{bottom:411.900000px;}
.y28_c00374{bottom:421.500000px;}
.y58_c00374{bottom:430.200000px;}
.y27_c00374{bottom:439.200000px;}
.y57_c00374{bottom:448.200000px;}
.y26_c00374{bottom:457.200000px;}
.y56_c00374{bottom:465.900000px;}
.y25_c00374{bottom:474.900000px;}
.y55_c00374{bottom:487.800000px;}
.y24_c00374{bottom:495.000000px;}
.y54_c00374{bottom:506.100000px;}
.y23_c00374{bottom:510.450000px;}
.y22_c00374{bottom:524.100000px;}
.y21_c00374{bottom:539.400000px;}
.y53_c00374{bottom:542.100000px;}
.y20_c00374{bottom:554.100000px;}
.y52_c00374{bottom:559.800000px;}
.y1f_c00374{bottom:573.450000px;}
.y51_c00374{bottom:577.500000px;}
.y1e_c00374{bottom:591.150000px;}
.y50_c00374{bottom:595.500000px;}
.y1d_c00374{bottom:609.150000px;}
.y4f_c00374{bottom:613.500000px;}
.y1c_c00374{bottom:627.450000px;}
.y4e_c00374{bottom:635.100000px;}
.y1b_c00374{bottom:648.450000px;}
.y4d_c00374{bottom:661.050000px;}
.y1a_c00374{bottom:666.750000px;}
.y4c_c00374{bottom:679.800000px;}
.y19_c00374{bottom:684.000000px;}
.y4b_c00374{bottom:697.500000px;}
.y18_c00374{bottom:702.000000px;}
.y4a_c00374{bottom:715.200000px;}
.y17_c00374{bottom:724.350000px;}
.y49_c00374{bottom:733.200000px;}
.y16_c00374{bottom:744.900000px;}
.y48_c00374{bottom:750.900000px;}
.y15_c00374{bottom:768.600000px;}
.y47_c00374{bottom:772.500000px;}
.y14_c00374{bottom:786.600000px;}
.y46_c00374{bottom:790.800000px;}
.y13_c00374{bottom:808.500000px;}
.y45_c00374{bottom:826.200000px;}
.y12_c00374{bottom:831.150000px;}
.y44_c00374{bottom:844.200000px;}
.y11_c00374{bottom:849.150000px;}
.y43_c00374{bottom:861.900000px;}
.y10_c00374{bottom:867.150000px;}
.y42_c00374{bottom:879.900000px;}
.yf_c00374{bottom:884.850000px;}
.y41_c00374{bottom:897.600000px;}
.ye_c00374{bottom:902.850000px;}
.y40_c00374{bottom:915.600000px;}
.yd_c00374{bottom:920.550000px;}
.y3f_c00374{bottom:933.300000px;}
.yc_c00374{bottom:938.550000px;}
.y3e_c00374{bottom:951.000000px;}
.yb_c00374{bottom:960.000000px;}
.y3d_c00374{bottom:969.000000px;}
.ya_c00374{bottom:978.000000px;}
.y3c_c00374{bottom:986.700000px;}
.y9_c00374{bottom:996.300000px;}
.y3b_c00374{bottom:1008.750000px;}
.y8_c00374{bottom:1014.000000px;}
.y3a_c00374{bottom:1026.750000px;}
.y7_c00374{bottom:1032.000000px;}
.y39_c00374{bottom:1045.050000px;}
.y6_c00374{bottom:1049.700000px;}
.y38_c00374{bottom:1066.800000px;}
.y5_c00374{bottom:1067.400000px;}
.y37_c00374{bottom:1085.100000px;}
.y4_c00374{bottom:1085.400000px;}
.y3_c00374{bottom:1102.650000px;}
.y36_c00374{bottom:1102.800000px;}
.y2_c00374{bottom:1120.350000px;}
.y35_c00374{bottom:1122.900000px;}
.y1_c00374{bottom:1146.900000px;}
.h9_c00374{height:30.000000px;}
.h8_c00374{height:36.000000px;}
.h6_c00374{height:42.000000px;}
.h7_c00374{height:54.000000px;}
.h5_c00374{height:60.000000px;}
.h4_c00374{height:66.000000px;}
.h3_c00374{height:72.000000px;}
.h2_c00374{height:84.000000px;}
.h0_c00374{height:1266.480010px;}
.h1_c00374{height:1266.750000px;}
.w0_c00374{width:960.480010px;}
.w1_c00374{width:960.750000px;}
.x0_c00374{left:0.000000px;}
.x76_c00374{left:95.400000px;}
.x7e_c00374{left:96.450000px;}
.x57_c00374{left:97.500000px;}
.x56_c00374{left:98.700000px;}
.x9e_c00374{left:101.100000px;}
.x58_c00374{left:105.900000px;}
.x79_c00374{left:111.900000px;}
.x65_c00374{left:114.450000px;}
.x3_c00374{left:116.250000px;}
.x33_c00374{left:117.450000px;}
.xa_c00374{left:118.500000px;}
.x7c_c00374{left:125.250000px;}
.xa3_c00374{left:126.750000px;}
.xa4_c00374{left:129.750000px;}
.x39_c00374{left:132.450000px;}
.x40_c00374{left:134.250000px;}
.x36_c00374{left:139.650000px;}
.x69_c00374{left:140.850000px;}
.x59_c00374{left:142.950000px;}
.x80_c00374{left:144.000000px;}
.x9f_c00374{left:145.050000px;}
.x49_c00374{left:147.300000px;}
.x66_c00374{left:149.400000px;}
.x4_c00374{left:153.000000px;}
.x5e_c00374{left:154.050000px;}
.x1c_c00374{left:155.100000px;}
.x4d_c00374{left:156.450000px;}
.x24_c00374{left:158.850000px;}
.x12_c00374{left:160.350000px;}
.xb_c00374{left:161.400000px;}
.x71_c00374{left:163.650000px;}
.x5f_c00374{left:165.150000px;}
.x4a_c00374{left:167.400000px;}
.x2a_c00374{left:169.500000px;}
.x3a_c00374{left:171.000000px;}
.x94_c00374{left:172.200000px;}
.x67_c00374{left:173.550000px;}
.x7a_c00374{left:176.700000px;}
.x2e_c00374{left:178.200000px;}
.x50_c00374{left:179.850000px;}
.xc_c00374{left:181.950000px;}
.x81_c00374{left:183.300000px;}
.x5_c00374{left:184.650000px;}
.xa0_c00374{left:186.150000px;}
.x4b_c00374{left:187.500000px;}
.x9a_c00374{left:189.000000px;}
.x95_c00374{left:190.200000px;}
.x3b_c00374{left:192.900000px;}
.x68_c00374{left:195.450000px;}
.x8f_c00374{left:196.950000px;}
.x97_c00374{left:202.800000px;}
.x25_c00374{left:204.150000px;}
.x75_c00374{left:205.950000px;}
.x6c_c00374{left:209.250000px;}
.x46_c00374{left:212.100000px;}
.x13_c00374{left:213.300000px;}
.x3c_c00374{left:214.800000px;}
.xd_c00374{left:215.850000px;}
.x1d_c00374{left:217.050000px;}
.x60_c00374{left:218.100000px;}
.x5b_c00374{left:219.600000px;}
.x2f_c00374{left:222.150000px;}
.x77_c00374{left:223.200000px;}
.x26_c00374{left:225.750000px;}
.x3d_c00374{left:228.900000px;}
.x4c_c00374{left:230.700000px;}
.x41_c00374{left:232.500000px;}
.x14_c00374{left:234.600000px;}
.x8b_c00374{left:237.900000px;}
.x61_c00374{left:238.950000px;}
.x1e_c00374{left:240.150000px;}
.x6_c00374{left:241.950000px;}
.x72_c00374{left:243.300000px;}
.x4e_c00374{left:246.450000px;}
.x8c_c00374{left:249.000000px;}
.x53_c00374{left:250.050000px;}
.x51_c00374{left:252.150000px;}
.xe_c00374{left:253.350000px;}
.x87_c00374{left:254.550000px;}
.xa1_c00374{left:255.600000px;}
.x5c_c00374{left:256.650000px;}
.x42_c00374{left:257.700000px;}
.x98_c00374{left:259.350000px;}
.x1f_c00374{left:261.450000px;}
.x6d_c00374{left:264.750000px;}
.x47_c00374{left:265.800000px;}
.x34_c00374{left:267.900000px;}
.x15_c00374{left:270.300000px;}
.x27_c00374{left:271.800000px;}
.x7f_c00374{left:277.950000px;}
.x92_c00374{left:279.750000px;}
.x37_c00374{left:281.850000px;}
.x8d_c00374{left:282.900000px;}
.x3e_c00374{left:284.400000px;}
.x73_c00374{left:286.200000px;}
.x7_c00374{left:287.700000px;}
.x84_c00374{left:289.050000px;}
.x90_c00374{left:290.100000px;}
.x99_c00374{left:292.800000px;}
.x30_c00374{left:293.850000px;}
.x2b_c00374{left:295.350000px;}
.x20_c00374{left:297.450000px;}
.x91_c00374{left:299.850000px;}
.x31_c00374{left:306.150000px;}
.x8_c00374{left:308.250000px;}
.x28_c00374{left:309.600000px;}
.x16_c00374{left:310.650000px;}
.x21_c00374{left:317.550000px;}
.xf_c00374{left:320.250000px;}
.x88_c00374{left:325.050000px;}
.x82_c00374{left:326.550000px;}
.x85_c00374{left:330.150000px;}
.x38_c00374{left:331.500000px;}
.x43_c00374{left:334.800000px;}
.x17_c00374{left:336.900000px;}
.x6e_c00374{left:338.550000px;}
.x2c_c00374{left:340.650000px;}
.x9b_c00374{left:342.300000px;}
.x1_c00374{left:344.550000px;}
.x6a_c00374{left:347.850000px;}
.x5d_c00374{left:349.500000px;}
.x3f_c00374{left:350.550000px;}
.x18_c00374{left:353.100000px;}
.x5a_c00374{left:354.150000px;}
.x89_c00374{left:356.400000px;}
.x4f_c00374{left:357.750000px;}
.x62_c00374{left:359.550000px;}
.x2d_c00374{left:360.750000px;}
.x7d_c00374{left:362.100000px;}
.x7b_c00374{left:364.350000px;}
.xa2_c00374{left:366.150000px;}
.x22_c00374{left:367.200000px;}
.x10_c00374{left:369.600000px;}
.x96_c00374{left:372.450000px;}
.x83_c00374{left:374.100000px;}
.x44_c00374{left:379.500000px;}
.x19_c00374{left:381.150000px;}
.x6b_c00374{left:382.800000px;}
.x6f_c00374{left:385.350000px;}
.x48_c00374{left:386.700000px;}
.x8e_c00374{left:388.350000px;}
.x63_c00374{left:389.550000px;}
.x9c_c00374{left:390.600000px;}
.x54_c00374{left:391.650000px;}
.x29_c00374{left:394.500000px;}
.x1a_c00374{left:399.150000px;}
.x52_c00374{left:400.800000px;}
.x86_c00374{left:402.150000px;}
.x74_c00374{left:403.200000px;}
.x9_c00374{left:404.400000px;}
.x11_c00374{left:405.900000px;}
.x35_c00374{left:407.100000px;}
.x9d_c00374{left:409.650000px;}
.x93_c00374{left:412.650000px;}
.x45_c00374{left:415.800000px;}
.x8a_c00374{left:417.150000px;}
.x78_c00374{left:418.950000px;}
.x23_c00374{left:420.150000px;}
.x55_c00374{left:421.500000px;}
.x32_c00374{left:423.450000px;}
.x1b_c00374{left:425.100000px;}
.x70_c00374{left:429.600000px;}
.x64_c00374{left:432.300000px;}
.x12e_c00374{left:452.850000px;}
.x12b_c00374{left:454.350000px;}
.xca_c00374{left:456.450000px;}
.x13b_c00374{left:459.300000px;}
.x139_c00374{left:466.500000px;}
.x12f_c00374{left:467.700000px;}
.x12d_c00374{left:471.000000px;}
.xeb_c00374{left:472.500000px;}
.xdf_c00374{left:473.550000px;}
.xa5_c00374{left:474.900000px;}
.x118_c00374{left:481.950000px;}
.x13c_c00374{left:489.150000px;}
.x11c_c00374{left:490.650000px;}
.xc1_c00374{left:492.900000px;}
.xe8_c00374{left:494.550000px;}
.xac_c00374{left:496.350000px;}
.x119_c00374{left:498.150000px;}
.xd8_c00374{left:500.100000px;}
.xff_c00374{left:502.650000px;}
.xb1_c00374{left:506.100000px;}
.x107_c00374{left:509.850000px;}
.xec_c00374{left:511.800000px;}
.x125_c00374{left:513.750000px;}
.xd0_c00374{left:514.800000px;}
.xb2_c00374{left:516.900000px;}
.xba_c00374{left:518.250000px;}
.x126_c00374{left:520.500000px;}
.x10f_c00374{left:521.850000px;}
.xed_c00374{left:524.700000px;}
.x129_c00374{left:526.950000px;}
.x117_c00374{left:528.750000px;}
.x108_c00374{left:529.950000px;}
.xe0_c00374{left:531.450000px;}
.x103_c00374{left:534.750000px;}
.xa6_c00374{left:537.900000px;}
.xee_c00374{left:541.200000px;}
.xc2_c00374{left:544.800000px;}
.xd1_c00374{left:549.300000px;}
.xad_c00374{left:550.650000px;}
.xd9_c00374{left:552.300000px;}
.xbb_c00374{left:553.950000px;}
.xe1_c00374{left:555.600000px;}
.x10d_c00374{left:556.650000px;}
.x110_c00374{left:558.150000px;}
.x12a_c00374{left:559.350000px;}
.xcb_c00374{left:560.850000px;}
.xf2_c00374{left:563.400000px;}
.xc6_c00374{left:564.450000px;}
.xb3_c00374{left:567.000000px;}
.xd2_c00374{left:571.200000px;}
.xda_c00374{left:573.600000px;}
.x13a_c00374{left:574.950000px;}
.x114_c00374{left:577.950000px;}
.xae_c00374{left:580.500000px;}
.x11e_c00374{left:582.750000px;}
.x137_c00374{left:583.950000px;}
.xfd_c00374{left:585.750000px;}
.xe9_c00374{left:588.750000px;}
.xf8_c00374{left:590.100000px;}
.x100_c00374{left:591.600000px;}
.xe2_c00374{left:593.400000px;}
.xef_c00374{left:597.000000px;}
.x11d_c00374{left:599.400000px;}
.x109_c00374{left:601.650000px;}
.x133_c00374{left:603.450000px;}
.xbc_c00374{left:606.450000px;}
.xd3_c00374{left:608.250000px;}
.xcc_c00374{left:610.650000px;}
.xea_c00374{left:611.850000px;}
.xa7_c00374{left:613.200000px;}
.xf3_c00374{left:616.350000px;}
.x10a_c00374{left:618.150000px;}
.x10c_c00374{left:619.500000px;}
.x104_c00374{left:621.450000px;}
.x127_c00374{left:622.800000px;}
.xc7_c00374{left:624.600000px;}
.xbd_c00374{left:627.300000px;}
.x13e_c00374{left:630.450000px;}
.xdb_c00374{left:631.650000px;}
.x134_c00374{left:633.750000px;}
.xb4_c00374{left:634.800000px;}
.x122_c00374{left:636.750000px;}
.xcd_c00374{left:637.950000px;}
.xf4_c00374{left:639.000000px;}
.x135_c00374{left:640.950000px;}
.xd4_c00374{left:642.750000px;}
.xa8_c00374{left:644.850000px;}
.xc3_c00374{left:646.950000px;}
.xf9_c00374{left:649.200000px;}
.x10e_c00374{left:650.850000px;}
.xbe_c00374{left:652.200000px;}
.x105_c00374{left:654.150000px;}
.x11f_c00374{left:655.200000px;}
.x11a_c00374{left:658.350000px;}
.xaf_c00374{left:659.400000px;}
.xbf_c00374{left:661.950000px;}
.x101_c00374{left:664.650000px;}
.xb5_c00374{left:667.200000px;}
.xe3_c00374{left:669.000000px;}
.x11b_c00374{left:670.200000px;}
.x128_c00374{left:672.450000px;}
.xc8_c00374{left:673.500000px;}
.xfa_c00374{left:674.700000px;}
.xf5_c00374{left:677.850000px;}
.x130_c00374{left:679.500000px;}
.x115_c00374{left:681.000000px;}
.x13f_c00374{left:682.950000px;}
.xe4_c00374{left:684.150000px;}
.xf0_c00374{left:685.950000px;}
.x138_c00374{left:687.300000px;}
.xc4_c00374{left:689.400000px;}
.xd5_c00374{left:690.600000px;}
.x131_c00374{left:692.400000px;}
.xfe_c00374{left:696.000000px;}
.xf6_c00374{left:697.350000px;}
.xa9_c00374{left:700.950000px;}
.xdc_c00374{left:703.650000px;}
.x140_c00374{left:704.850000px;}
.xe5_c00374{left:706.500000px;}
.xb6_c00374{left:708.300000px;}
.x123_c00374{left:709.500000px;}
.xc5_c00374{left:710.700000px;}
.xc0_c00374{left:714.900000px;}
.x111_c00374{left:717.000000px;}
.xb7_c00374{left:718.050000px;}
.xaa_c00374{left:719.700000px;}
.xf7_c00374{left:720.750000px;}
.xf1_c00374{left:722.250000px;}
.xd6_c00374{left:723.750000px;}
.xce_c00374{left:725.700000px;}
.x116_c00374{left:726.750000px;}
.x10b_c00374{left:728.250000px;}
.xc9_c00374{left:730.350000px;}
.x120_c00374{left:732.150000px;}
.x102_c00374{left:734.850000px;}
.xfb_c00374{left:736.650000px;}
.x12c_c00374{left:740.100000px;}
.x106_c00374{left:741.600000px;}
.x13d_c00374{left:745.050000px;}
.x136_c00374{left:747.600000px;}
.x132_c00374{left:748.950000px;}
.xe6_c00374{left:750.450000px;}
.xb0_c00374{left:751.950000px;}
.xdd_c00374{left:753.300000px;}
.xd7_c00374{left:754.650000px;}
.x121_c00374{left:757.050000px;}
.x124_c00374{left:758.250000px;}
.xab_c00374{left:759.600000px;}
.xb8_c00374{left:762.000000px;}
.x2_c00374{left:764.700000px;}
.x112_c00374{left:767.700000px;}
.xfc_c00374{left:771.900000px;}
.xde_c00374{left:773.100000px;}
.x113_c00374{left:775.650000px;}
.xe7_c00374{left:777.150000px;}
.xcf_c00374{left:780.450000px;}
.xb9_c00374{left:782.550000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls1_c00374{letter-spacing:0.000000pt;}
.ls0_c00374{letter-spacing:29.714286pt;}
.wsc_c00374{word-spacing:-45.714286pt;}
.ws3_c00374{word-spacing:-10.555556pt;}
.ws5_c00374{word-spacing:-5.169460pt;}
.ws4_c00374{word-spacing:-4.575163pt;}
.ws2_c00374{word-spacing:-2.370370pt;}
.ws6_c00374{word-spacing:-1.917861pt;}
.ws10_c00374{word-spacing:0.000000pt;}
.ws7_c00374{word-spacing:6.066747pt;}
.wsd_c00374{word-spacing:11.809524pt;}
.ws0_c00374{word-spacing:15.052755pt;}
.ws9_c00374{word-spacing:16.111111pt;}
.ws8_c00374{word-spacing:22.857143pt;}
.wsa_c00374{word-spacing:26.031746pt;}
.wsb_c00374{word-spacing:39.259259pt;}
.ws1_c00374{word-spacing:40.333333pt;}
.wse_c00374{word-spacing:47.970009pt;}
.wsf_c00374{word-spacing:58.666667pt;}
._2_c00374{margin-left:-29.714286pt;}
._1_c00374{margin-left:-1.904762pt;}
._0_c00374{width:4.761905pt;}
._3_c00374{width:31.619048pt;}
.fs7_c00374{font-size:26.666667pt;}
.fs6_c00374{font-size:32.000000pt;}
.fs4_c00374{font-size:37.333333pt;}
.fs5_c00374{font-size:48.000000pt;}
.fs3_c00374{font-size:53.333333pt;}
.fs2_c00374{font-size:58.666667pt;}
.fs1_c00374{font-size:64.000000pt;}
.fs0_c00374{font-size:74.666667pt;}
.y0_c00374{bottom:0.000000pt;}
.y68_c00374{bottom:131.200000pt;}
.y67_c00374{bottom:159.733333pt;}
.y34_c00374{bottom:174.400000pt;}
.y66_c00374{bottom:175.333333pt;}
.y33_c00374{bottom:187.200000pt;}
.y65_c00374{bottom:191.333333pt;}
.y32_c00374{bottom:199.733333pt;}
.y64_c00374{bottom:207.333333pt;}
.y31_c00374{bottom:212.800000pt;}
.y63_c00374{bottom:223.333333pt;}
.y30_c00374{bottom:225.200000pt;}
.y2f_c00374{bottom:238.000000pt;}
.y62_c00374{bottom:241.866667pt;}
.y2e_c00374{bottom:250.533333pt;}
.y61_c00374{bottom:254.666667pt;}
.y60_c00374{bottom:268.133333pt;}
.y5f_c00374{bottom:280.666667pt;}
.y5e_c00374{bottom:293.733333pt;}
.y2d_c00374{bottom:295.466667pt;}
.y5d_c00374{bottom:307.200000pt;}
.y2c_c00374{bottom:311.466667pt;}
.y5c_c00374{bottom:319.333333pt;}
.y2b_c00374{bottom:327.200000pt;}
.y5b_c00374{bottom:331.866667pt;}
.y2a_c00374{bottom:343.200000pt;}
.y5a_c00374{bottom:346.266667pt;}
.y29_c00374{bottom:358.933333pt;}
.y59_c00374{bottom:366.133333pt;}
.y28_c00374{bottom:374.666667pt;}
.y58_c00374{bottom:382.400000pt;}
.y27_c00374{bottom:390.400000pt;}
.y57_c00374{bottom:398.400000pt;}
.y26_c00374{bottom:406.400000pt;}
.y56_c00374{bottom:414.133333pt;}
.y25_c00374{bottom:422.133333pt;}
.y55_c00374{bottom:433.600000pt;}
.y24_c00374{bottom:440.000000pt;}
.y54_c00374{bottom:449.866667pt;}
.y23_c00374{bottom:453.733333pt;}
.y22_c00374{bottom:465.866667pt;}
.y21_c00374{bottom:479.466667pt;}
.y53_c00374{bottom:481.866667pt;}
.y20_c00374{bottom:492.533333pt;}
.y52_c00374{bottom:497.600000pt;}
.y1f_c00374{bottom:509.733333pt;}
.y51_c00374{bottom:513.333333pt;}
.y1e_c00374{bottom:525.466667pt;}
.y50_c00374{bottom:529.333333pt;}
.y1d_c00374{bottom:541.466667pt;}
.y4f_c00374{bottom:545.333333pt;}
.y1c_c00374{bottom:557.733333pt;}
.y4e_c00374{bottom:564.533333pt;}
.y1b_c00374{bottom:576.400000pt;}
.y4d_c00374{bottom:587.600000pt;}
.y1a_c00374{bottom:592.666667pt;}
.y4c_c00374{bottom:604.266667pt;}
.y19_c00374{bottom:608.000000pt;}
.y4b_c00374{bottom:620.000000pt;}
.y18_c00374{bottom:624.000000pt;}
.y4a_c00374{bottom:635.733333pt;}
.y17_c00374{bottom:643.866667pt;}
.y49_c00374{bottom:651.733333pt;}
.y16_c00374{bottom:662.133333pt;}
.y48_c00374{bottom:667.466667pt;}
.y15_c00374{bottom:683.200000pt;}
.y47_c00374{bottom:686.666667pt;}
.y14_c00374{bottom:699.200000pt;}
.y46_c00374{bottom:702.933333pt;}
.y13_c00374{bottom:718.666667pt;}
.y45_c00374{bottom:734.400000pt;}
.y12_c00374{bottom:738.800000pt;}
.y44_c00374{bottom:750.400000pt;}
.y11_c00374{bottom:754.800000pt;}
.y43_c00374{bottom:766.133333pt;}
.y10_c00374{bottom:770.800000pt;}
.y42_c00374{bottom:782.133333pt;}
.yf_c00374{bottom:786.533333pt;}
.y41_c00374{bottom:797.866667pt;}
.ye_c00374{bottom:802.533333pt;}
.y40_c00374{bottom:813.866667pt;}
.yd_c00374{bottom:818.266667pt;}
.y3f_c00374{bottom:829.600000pt;}
.yc_c00374{bottom:834.266667pt;}
.y3e_c00374{bottom:845.333333pt;}
.yb_c00374{bottom:853.333333pt;}
.y3d_c00374{bottom:861.333333pt;}
.ya_c00374{bottom:869.333333pt;}
.y3c_c00374{bottom:877.066667pt;}
.y9_c00374{bottom:885.600000pt;}
.y3b_c00374{bottom:896.666667pt;}
.y8_c00374{bottom:901.333333pt;}
.y3a_c00374{bottom:912.666667pt;}
.y7_c00374{bottom:917.333333pt;}
.y39_c00374{bottom:928.933333pt;}
.y6_c00374{bottom:933.066667pt;}
.y38_c00374{bottom:948.266667pt;}
.y5_c00374{bottom:948.800000pt;}
.y37_c00374{bottom:964.533333pt;}
.y4_c00374{bottom:964.800000pt;}
.y3_c00374{bottom:980.133333pt;}
.y36_c00374{bottom:980.266667pt;}
.y2_c00374{bottom:995.866667pt;}
.y35_c00374{bottom:998.133333pt;}
.y1_c00374{bottom:1019.466667pt;}
.h9_c00374{height:26.666667pt;}
.h8_c00374{height:32.000000pt;}
.h6_c00374{height:37.333333pt;}
.h7_c00374{height:48.000000pt;}
.h5_c00374{height:53.333333pt;}
.h4_c00374{height:58.666667pt;}
.h3_c00374{height:64.000000pt;}
.h2_c00374{height:74.666667pt;}
.h0_c00374{height:1125.760009pt;}
.h1_c00374{height:1126.000000pt;}
.w0_c00374{width:853.760009pt;}
.w1_c00374{width:854.000000pt;}
.x0_c00374{left:0.000000pt;}
.x76_c00374{left:84.800000pt;}
.x7e_c00374{left:85.733333pt;}
.x57_c00374{left:86.666667pt;}
.x56_c00374{left:87.733333pt;}
.x9e_c00374{left:89.866667pt;}
.x58_c00374{left:94.133333pt;}
.x79_c00374{left:99.466667pt;}
.x65_c00374{left:101.733333pt;}
.x3_c00374{left:103.333333pt;}
.x33_c00374{left:104.400000pt;}
.xa_c00374{left:105.333333pt;}
.x7c_c00374{left:111.333333pt;}
.xa3_c00374{left:112.666667pt;}
.xa4_c00374{left:115.333333pt;}
.x39_c00374{left:117.733333pt;}
.x40_c00374{left:119.333333pt;}
.x36_c00374{left:124.133333pt;}
.x69_c00374{left:125.200000pt;}
.x59_c00374{left:127.066667pt;}
.x80_c00374{left:128.000000pt;}
.x9f_c00374{left:128.933333pt;}
.x49_c00374{left:130.933333pt;}
.x66_c00374{left:132.800000pt;}
.x4_c00374{left:136.000000pt;}
.x5e_c00374{left:136.933333pt;}
.x1c_c00374{left:137.866667pt;}
.x4d_c00374{left:139.066667pt;}
.x24_c00374{left:141.200000pt;}
.x12_c00374{left:142.533333pt;}
.xb_c00374{left:143.466667pt;}
.x71_c00374{left:145.466667pt;}
.x5f_c00374{left:146.800000pt;}
.x4a_c00374{left:148.800000pt;}
.x2a_c00374{left:150.666667pt;}
.x3a_c00374{left:152.000000pt;}
.x94_c00374{left:153.066667pt;}
.x67_c00374{left:154.266667pt;}
.x7a_c00374{left:157.066667pt;}
.x2e_c00374{left:158.400000pt;}
.x50_c00374{left:159.866667pt;}
.xc_c00374{left:161.733333pt;}
.x81_c00374{left:162.933333pt;}
.x5_c00374{left:164.133333pt;}
.xa0_c00374{left:165.466667pt;}
.x4b_c00374{left:166.666667pt;}
.x9a_c00374{left:168.000000pt;}
.x95_c00374{left:169.066667pt;}
.x3b_c00374{left:171.466667pt;}
.x68_c00374{left:173.733333pt;}
.x8f_c00374{left:175.066667pt;}
.x97_c00374{left:180.266667pt;}
.x25_c00374{left:181.466667pt;}
.x75_c00374{left:183.066667pt;}
.x6c_c00374{left:186.000000pt;}
.x46_c00374{left:188.533333pt;}
.x13_c00374{left:189.600000pt;}
.x3c_c00374{left:190.933333pt;}
.xd_c00374{left:191.866667pt;}
.x1d_c00374{left:192.933333pt;}
.x60_c00374{left:193.866667pt;}
.x5b_c00374{left:195.200000pt;}
.x2f_c00374{left:197.466667pt;}
.x77_c00374{left:198.400000pt;}
.x26_c00374{left:200.666667pt;}
.x3d_c00374{left:203.466667pt;}
.x4c_c00374{left:205.066667pt;}
.x41_c00374{left:206.666667pt;}
.x14_c00374{left:208.533333pt;}
.x8b_c00374{left:211.466667pt;}
.x61_c00374{left:212.400000pt;}
.x1e_c00374{left:213.466667pt;}
.x6_c00374{left:215.066667pt;}
.x72_c00374{left:216.266667pt;}
.x4e_c00374{left:219.066667pt;}
.x8c_c00374{left:221.333333pt;}
.x53_c00374{left:222.266667pt;}
.x51_c00374{left:224.133333pt;}
.xe_c00374{left:225.200000pt;}
.x87_c00374{left:226.266667pt;}
.xa1_c00374{left:227.200000pt;}
.x5c_c00374{left:228.133333pt;}
.x42_c00374{left:229.066667pt;}
.x98_c00374{left:230.533333pt;}
.x1f_c00374{left:232.400000pt;}
.x6d_c00374{left:235.333333pt;}
.x47_c00374{left:236.266667pt;}
.x34_c00374{left:238.133333pt;}
.x15_c00374{left:240.266667pt;}
.x27_c00374{left:241.600000pt;}
.x7f_c00374{left:247.066667pt;}
.x92_c00374{left:248.666667pt;}
.x37_c00374{left:250.533333pt;}
.x8d_c00374{left:251.466667pt;}
.x3e_c00374{left:252.800000pt;}
.x73_c00374{left:254.400000pt;}
.x7_c00374{left:255.733333pt;}
.x84_c00374{left:256.933333pt;}
.x90_c00374{left:257.866667pt;}
.x99_c00374{left:260.266667pt;}
.x30_c00374{left:261.200000pt;}
.x2b_c00374{left:262.533333pt;}
.x20_c00374{left:264.400000pt;}
.x91_c00374{left:266.533333pt;}
.x31_c00374{left:272.133333pt;}
.x8_c00374{left:274.000000pt;}
.x28_c00374{left:275.200000pt;}
.x16_c00374{left:276.133333pt;}
.x21_c00374{left:282.266667pt;}
.xf_c00374{left:284.666667pt;}
.x88_c00374{left:288.933333pt;}
.x82_c00374{left:290.266667pt;}
.x85_c00374{left:293.466667pt;}
.x38_c00374{left:294.666667pt;}
.x43_c00374{left:297.600000pt;}
.x17_c00374{left:299.466667pt;}
.x6e_c00374{left:300.933333pt;}
.x2c_c00374{left:302.800000pt;}
.x9b_c00374{left:304.266667pt;}
.x1_c00374{left:306.266667pt;}
.x6a_c00374{left:309.200000pt;}
.x5d_c00374{left:310.666667pt;}
.x3f_c00374{left:311.600000pt;}
.x18_c00374{left:313.866667pt;}
.x5a_c00374{left:314.800000pt;}
.x89_c00374{left:316.800000pt;}
.x4f_c00374{left:318.000000pt;}
.x62_c00374{left:319.600000pt;}
.x2d_c00374{left:320.666667pt;}
.x7d_c00374{left:321.866667pt;}
.x7b_c00374{left:323.866667pt;}
.xa2_c00374{left:325.466667pt;}
.x22_c00374{left:326.400000pt;}
.x10_c00374{left:328.533333pt;}
.x96_c00374{left:331.066667pt;}
.x83_c00374{left:332.533333pt;}
.x44_c00374{left:337.333333pt;}
.x19_c00374{left:338.800000pt;}
.x6b_c00374{left:340.266667pt;}
.x6f_c00374{left:342.533333pt;}
.x48_c00374{left:343.733333pt;}
.x8e_c00374{left:345.200000pt;}
.x63_c00374{left:346.266667pt;}
.x9c_c00374{left:347.200000pt;}
.x54_c00374{left:348.133333pt;}
.x29_c00374{left:350.666667pt;}
.x1a_c00374{left:354.800000pt;}
.x52_c00374{left:356.266667pt;}
.x86_c00374{left:357.466667pt;}
.x74_c00374{left:358.400000pt;}
.x9_c00374{left:359.466667pt;}
.x11_c00374{left:360.800000pt;}
.x35_c00374{left:361.866667pt;}
.x9d_c00374{left:364.133333pt;}
.x93_c00374{left:366.800000pt;}
.x45_c00374{left:369.600000pt;}
.x8a_c00374{left:370.800000pt;}
.x78_c00374{left:372.400000pt;}
.x23_c00374{left:373.466667pt;}
.x55_c00374{left:374.666667pt;}
.x32_c00374{left:376.400000pt;}
.x1b_c00374{left:377.866667pt;}
.x70_c00374{left:381.866667pt;}
.x64_c00374{left:384.266667pt;}
.x12e_c00374{left:402.533333pt;}
.x12b_c00374{left:403.866667pt;}
.xca_c00374{left:405.733333pt;}
.x13b_c00374{left:408.266667pt;}
.x139_c00374{left:414.666667pt;}
.x12f_c00374{left:415.733333pt;}
.x12d_c00374{left:418.666667pt;}
.xeb_c00374{left:420.000000pt;}
.xdf_c00374{left:420.933333pt;}
.xa5_c00374{left:422.133333pt;}
.x118_c00374{left:428.400000pt;}
.x13c_c00374{left:434.800000pt;}
.x11c_c00374{left:436.133333pt;}
.xc1_c00374{left:438.133333pt;}
.xe8_c00374{left:439.600000pt;}
.xac_c00374{left:441.200000pt;}
.x119_c00374{left:442.800000pt;}
.xd8_c00374{left:444.533333pt;}
.xff_c00374{left:446.800000pt;}
.xb1_c00374{left:449.866667pt;}
.x107_c00374{left:453.200000pt;}
.xec_c00374{left:454.933333pt;}
.x125_c00374{left:456.666667pt;}
.xd0_c00374{left:457.600000pt;}
.xb2_c00374{left:459.466667pt;}
.xba_c00374{left:460.666667pt;}
.x126_c00374{left:462.666667pt;}
.x10f_c00374{left:463.866667pt;}
.xed_c00374{left:466.400000pt;}
.x129_c00374{left:468.400000pt;}
.x117_c00374{left:470.000000pt;}
.x108_c00374{left:471.066667pt;}
.xe0_c00374{left:472.400000pt;}
.x103_c00374{left:475.333333pt;}
.xa6_c00374{left:478.133333pt;}
.xee_c00374{left:481.066667pt;}
.xc2_c00374{left:484.266667pt;}
.xd1_c00374{left:488.266667pt;}
.xad_c00374{left:489.466667pt;}
.xd9_c00374{left:490.933333pt;}
.xbb_c00374{left:492.400000pt;}
.xe1_c00374{left:493.866667pt;}
.x10d_c00374{left:494.800000pt;}
.x110_c00374{left:496.133333pt;}
.x12a_c00374{left:497.200000pt;}
.xcb_c00374{left:498.533333pt;}
.xf2_c00374{left:500.800000pt;}
.xc6_c00374{left:501.733333pt;}
.xb3_c00374{left:504.000000pt;}
.xd2_c00374{left:507.733333pt;}
.xda_c00374{left:509.866667pt;}
.x13a_c00374{left:511.066667pt;}
.x114_c00374{left:513.733333pt;}
.xae_c00374{left:516.000000pt;}
.x11e_c00374{left:518.000000pt;}
.x137_c00374{left:519.066667pt;}
.xfd_c00374{left:520.666667pt;}
.xe9_c00374{left:523.333333pt;}
.xf8_c00374{left:524.533333pt;}
.x100_c00374{left:525.866667pt;}
.xe2_c00374{left:527.466667pt;}
.xef_c00374{left:530.666667pt;}
.x11d_c00374{left:532.800000pt;}
.x109_c00374{left:534.800000pt;}
.x133_c00374{left:536.400000pt;}
.xbc_c00374{left:539.066667pt;}
.xd3_c00374{left:540.666667pt;}
.xcc_c00374{left:542.800000pt;}
.xea_c00374{left:543.866667pt;}
.xa7_c00374{left:545.066667pt;}
.xf3_c00374{left:547.866667pt;}
.x10a_c00374{left:549.466667pt;}
.x10c_c00374{left:550.666667pt;}
.x104_c00374{left:552.400000pt;}
.x127_c00374{left:553.600000pt;}
.xc7_c00374{left:555.200000pt;}
.xbd_c00374{left:557.600000pt;}
.x13e_c00374{left:560.400000pt;}
.xdb_c00374{left:561.466667pt;}
.x134_c00374{left:563.333333pt;}
.xb4_c00374{left:564.266667pt;}
.x122_c00374{left:566.000000pt;}
.xcd_c00374{left:567.066667pt;}
.xf4_c00374{left:568.000000pt;}
.x135_c00374{left:569.733333pt;}
.xd4_c00374{left:571.333333pt;}
.xa8_c00374{left:573.200000pt;}
.xc3_c00374{left:575.066667pt;}
.xf9_c00374{left:577.066667pt;}
.x10e_c00374{left:578.533333pt;}
.xbe_c00374{left:579.733333pt;}
.x105_c00374{left:581.466667pt;}
.x11f_c00374{left:582.400000pt;}
.x11a_c00374{left:585.200000pt;}
.xaf_c00374{left:586.133333pt;}
.xbf_c00374{left:588.400000pt;}
.x101_c00374{left:590.800000pt;}
.xb5_c00374{left:593.066667pt;}
.xe3_c00374{left:594.666667pt;}
.x11b_c00374{left:595.733333pt;}
.x128_c00374{left:597.733333pt;}
.xc8_c00374{left:598.666667pt;}
.xfa_c00374{left:599.733333pt;}
.xf5_c00374{left:602.533333pt;}
.x130_c00374{left:604.000000pt;}
.x115_c00374{left:605.333333pt;}
.x13f_c00374{left:607.066667pt;}
.xe4_c00374{left:608.133333pt;}
.xf0_c00374{left:609.733333pt;}
.x138_c00374{left:610.933333pt;}
.xc4_c00374{left:612.800000pt;}
.xd5_c00374{left:613.866667pt;}
.x131_c00374{left:615.466667pt;}
.xfe_c00374{left:618.666667pt;}
.xf6_c00374{left:619.866667pt;}
.xa9_c00374{left:623.066667pt;}
.xdc_c00374{left:625.466667pt;}
.x140_c00374{left:626.533333pt;}
.xe5_c00374{left:628.000000pt;}
.xb6_c00374{left:629.600000pt;}
.x123_c00374{left:630.666667pt;}
.xc5_c00374{left:631.733333pt;}
.xc0_c00374{left:635.466667pt;}
.x111_c00374{left:637.333333pt;}
.xb7_c00374{left:638.266667pt;}
.xaa_c00374{left:639.733333pt;}
.xf7_c00374{left:640.666667pt;}
.xf1_c00374{left:642.000000pt;}
.xd6_c00374{left:643.333333pt;}
.xce_c00374{left:645.066667pt;}
.x116_c00374{left:646.000000pt;}
.x10b_c00374{left:647.333333pt;}
.xc9_c00374{left:649.200000pt;}
.x120_c00374{left:650.800000pt;}
.x102_c00374{left:653.200000pt;}
.xfb_c00374{left:654.800000pt;}
.x12c_c00374{left:657.866667pt;}
.x106_c00374{left:659.200000pt;}
.x13d_c00374{left:662.266667pt;}
.x136_c00374{left:664.533333pt;}
.x132_c00374{left:665.733333pt;}
.xe6_c00374{left:667.066667pt;}
.xb0_c00374{left:668.400000pt;}
.xdd_c00374{left:669.600000pt;}
.xd7_c00374{left:670.800000pt;}
.x121_c00374{left:672.933333pt;}
.x124_c00374{left:674.000000pt;}
.xab_c00374{left:675.200000pt;}
.xb8_c00374{left:677.333333pt;}
.x2_c00374{left:679.733333pt;}
.x112_c00374{left:682.400000pt;}
.xfc_c00374{left:686.133333pt;}
.xde_c00374{left:687.200000pt;}
.x113_c00374{left:689.466667pt;}
.xe7_c00374{left:690.800000pt;}
.xcf_c00374{left:693.733333pt;}
.xb9_c00374{left:695.600000pt;}
}





/* 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_c00375 {
    display:none;
  }
  .loading-indicator_c00375.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00375 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_c00375 { 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_c00375" -> "#page-container .classname_c00375")
 */
.pf_c00375 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00375 { /* 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_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00375 { /* 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_c00375 { /* 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_c00375 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00375 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00375 {overflow:visible;}
  }
}
.c_c00375 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00375 { /* 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_c00375:after { /* webkit #35443 */
  content: '';
}
.t_c00375:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00375 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 */
}
.__c00375 { /* 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_c00375 { /* info for Javascript */
  display:none;
}
.l_c00375 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00375 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00375 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00375: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_c00375 {
    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_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00375.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_c00375 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00375;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.000000;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;}
.m90_c00375{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00375{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00375{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me4_c00375{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00375{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00375{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00375{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m35_c00375{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00375{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00375{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m53_c00375{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m34_c00375{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00375{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.maa_c00375{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00375{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00375{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m60_c00375{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md6_c00375{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m116_c00375{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00375{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m113_c00375{transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);}
.m108_c00375{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00375{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00375{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m82_c00375{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m117_c00375{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m36_c00375{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m84_c00375{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00375{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00375{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m103_c00375{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00375{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m79_c00375{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00375{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m58_c00375{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m69_c00375{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md2_c00375{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m102_c00375{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00375{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m63_c00375{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m56_c00375{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.me1_c00375{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.me8_c00375{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m11_c00375{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00375{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m55_c00375{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m72_c00375{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m104_c00375{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00375{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m74_c00375{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m14_c00375{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00375{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m40_c00375{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00375{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00375{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00375{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md3_c00375{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m61_c00375{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m50_c00375{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mab_c00375{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m120_c00375{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m67_c00375{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md5_c00375{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m111_c00375{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m124_c00375{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m41_c00375{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mda_c00375{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00375{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00375{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m16_c00375{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00375{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md4_c00375{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.md_c00375{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00375{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00375{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m12_c00375{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00375{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8_c00375{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00375{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00375{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me9_c00375{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00375{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00375{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mce_c00375{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m37_c00375{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m19_c00375{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m54_c00375{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00375{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00375{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3_c00375{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00375{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m48_c00375{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00375{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me7_c00375{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00375{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00375{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00375{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m27_c00375{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00375{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00375{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00375{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m45_c00375{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m33_c00375{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00375{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00375{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf_c00375{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00375{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m18_c00375{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00375{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m112_c00375{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.me5_c00375{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me3_c00375{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00375{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.me2_c00375{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m2_c00375{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m20_c00375{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mee_c00375{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md0_c00375{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m43_c00375{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00375{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m71_c00375{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m115_c00375{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00375{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00375{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m95_c00375{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00375{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m6_c00375{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m30_c00375{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md7_c00375{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00375{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00375{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00375{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.me6_c00375{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m93_c00375{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5_c00375{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m101_c00375{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m100_c00375{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m21_c00375{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m31_c00375{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m107_c00375{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m42_c00375{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00375{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m59_c00375{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.maf_c00375{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00375{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00375{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m17_c00375{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m77_c00375{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m85_c00375{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m28_c00375{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m26_c00375{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mac_c00375{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00375{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00375{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m23_c00375{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00375{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00375{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00375{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00375{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00375{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mec_c00375{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m15_c00375{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m7_c00375{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m46_c00375{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9_c00375{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m51_c00375{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m64_c00375{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mff_c00375{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m70_c00375{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00375{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00375{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m106_c00375{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00375{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m44_c00375{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m25_c00375{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me_c00375{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mad_c00375{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m39_c00375{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00375{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00375{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00375{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00375{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00375{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m24_c00375{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00375{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00375{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00375{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00375{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m94_c00375{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.md9_c00375{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m123_c00375{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m66_c00375{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m29_c00375{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.md8_c00375{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00375{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m109_c00375{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mb_c00375{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m75_c00375{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m81_c00375{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00375{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00375{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00375{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m13_c00375{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00375{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00375{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m10_c00375{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m38_c00375{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m122_c00375{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m49_c00375{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m65_c00375{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m97_c00375{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00375{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m78_c00375{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mde_c00375{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00375{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00375{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.med_c00375{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00375{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mba_c00375{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m118_c00375{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m73_c00375{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mae_c00375{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00375{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.ma_c00375{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me0_c00375{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m114_c00375{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00375{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00375{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m57_c00375{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00375{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00375{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00375{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00375{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00375{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00375{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m83_c00375{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00375{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00375{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m52_c00375{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m76_c00375{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);}
.mdd_c00375{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m47_c00375{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00375{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m68_c00375{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mea_c00375{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00375{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m92_c00375{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m98_c00375{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m22_c00375{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m110_c00375{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m121_c00375{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00375{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m0_c00375{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m87_c00375{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00375{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.mef_c00375{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m88_c00375{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md1_c00375{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00375{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m89_c00375{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00375{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00375{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00375{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00375{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m86_c00375{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00375{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m62_c00375{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00375{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m91_c00375{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.meb_c00375{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00375{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00375{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m105_c00375{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mca_c00375{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m32_c00375{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00375{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00375{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00375{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00375{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00375{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m80_c00375{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00375{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00375{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00375{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00375{transform:matrix(0.384250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384250,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(0.394500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00375{transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);}
.m119_c00375{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00375{transform:matrix(0.632000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632000,0.000000,0.000000,0.250000,0,0);}
.m96_c00375{transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00375{transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);}
.m99_c00375{transform:matrix(18.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(18.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(18.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls1_c00375{letter-spacing:0.000000px;}
.ls0_c00375{letter-spacing:70.000000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{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__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00375{word-spacing:-100.000000px;}
.ws7_c00375{word-spacing:-11.181818px;}
.ws1_c00375{word-spacing:-9.000000px;}
.ws0_c00375{word-spacing:-5.048251px;}
.ws2_c00375{word-spacing:-4.108883px;}
.ws4_c00375{word-spacing:-2.477204px;}
.ws12_c00375{word-spacing:0.000000px;}
.ws3_c00375{word-spacing:1.500000px;}
.ws9_c00375{word-spacing:6.521401px;}
.ws8_c00375{word-spacing:6.780069px;}
.ws5_c00375{word-spacing:7.252715px;}
.ws6_c00375{word-spacing:18.061224px;}
.wsa_c00375{word-spacing:26.428954px;}
.ws10_c00375{word-spacing:29.285714px;}
.wsb_c00375{word-spacing:32.250000px;}
.wse_c00375{word-spacing:35.833333px;}
.wsf_c00375{word-spacing:40.000000px;}
.ws11_c00375{word-spacing:44.166667px;}
.wsc_c00375{word-spacing:177.500000px;}
._1_c00375{margin-left:-70.000000px;}
._0_c00375{width:37.500000px;}
.fc0_c00375{color:transparent;}
.fs4_c00375{font-size:30.000000px;}
.fs5_c00375{font-size:36.000000px;}
.fs6_c00375{font-size:42.000000px;}
.fs7_c00375{font-size:54.000000px;}
.fs3_c00375{font-size:60.000000px;}
.fs2_c00375{font-size:66.000000px;}
.fs0_c00375{font-size:72.000000px;}
.fs1_c00375{font-size:102.000000px;}
.y0_c00375{bottom:0.000000px;}
.y73_c00375{bottom:200.400000px;}
.y40_c00375{bottom:215.250000px;}
.y72_c00375{bottom:218.400000px;}
.y3f_c00375{bottom:222.150000px;}
.y71_c00375{bottom:235.650000px;}
.y3e_c00375{bottom:236.250000px;}
.y3d_c00375{bottom:249.900000px;}
.y70_c00375{bottom:253.650000px;}
.y3c_c00375{bottom:264.600000px;}
.y6f_c00375{bottom:271.350000px;}
.y3b_c00375{bottom:277.950000px;}
.y6e_c00375{bottom:291.900000px;}
.y3a_c00375{bottom:292.350000px;}
.y6d_c00375{bottom:306.300000px;}
.y39_c00375{bottom:306.600000px;}
.y38_c00375{bottom:320.700000px;}
.y6c_c00375{bottom:320.850000px;}
.y37_c00375{bottom:335.100000px;}
.y6b_c00375{bottom:335.250000px;}
.y36_c00375{bottom:348.750000px;}
.y6a_c00375{bottom:349.950000px;}
.y35_c00375{bottom:362.850000px;}
.y69_c00375{bottom:364.350000px;}
.y34_c00375{bottom:376.950000px;}
.y68_c00375{bottom:378.450000px;}
.y33_c00375{bottom:391.350000px;}
.y67_c00375{bottom:393.150000px;}
.y32_c00375{bottom:406.200000px;}
.y66_c00375{bottom:407.550000px;}
.y31_c00375{bottom:419.100000px;}
.y65_c00375{bottom:421.950000px;}
.y30_c00375{bottom:431.400000px;}
.y64_c00375{bottom:436.200000px;}
.y2f_c00375{bottom:440.700000px;}
.y63_c00375{bottom:450.600000px;}
.y62_c00375{bottom:465.000000px;}
.y2e_c00375{bottom:472.650000px;}
.y2d_c00375{bottom:486.300000px;}
.y2b_c00375{bottom:488.250000px;}
.y2c_c00375{bottom:492.450000px;}
.y23_c00375{bottom:498.900000px;}
.y2a_c00375{bottom:499.350000px;}
.y61_c00375{bottom:499.650000px;}
.y22_c00375{bottom:505.050000px;}
.y27_c00375{bottom:506.550000px;}
.y28_c00375{bottom:507.600000px;}
.y25_c00375{bottom:508.350000px;}
.y26_c00375{bottom:508.650000px;}
.y24_c00375{bottom:509.400000px;}
.y60_c00375{bottom:517.350000px;}
.y29_c00375{bottom:518.400000px;}
.y21_c00375{bottom:525.600000px;}
.y5f_c00375{bottom:540.000000px;}
.y20_c00375{bottom:547.950000px;}
.y5e_c00375{bottom:558.000000px;}
.y1f_c00375{bottom:569.550000px;}
.y5d_c00375{bottom:576.000000px;}
.y1e_c00375{bottom:591.450000px;}
.y5c_c00375{bottom:593.700000px;}
.y5b_c00375{bottom:612.000000px;}
.y1d_c00375{bottom:625.350000px;}
.y5a_c00375{bottom:633.600000px;}
.y59_c00375{bottom:655.950000px;}
.y1c_c00375{bottom:660.900000px;}
.y58_c00375{bottom:678.450000px;}
.y1b_c00375{bottom:678.600000px;}
.y57_c00375{bottom:696.450000px;}
.y1a_c00375{bottom:696.600000px;}
.y56_c00375{bottom:714.450000px;}
.y19_c00375{bottom:717.900000px;}
.y55_c00375{bottom:732.450000px;}
.y18_c00375{bottom:736.950000px;}
.y54_c00375{bottom:750.150000px;}
.y17_c00375{bottom:754.950000px;}
.y53_c00375{bottom:767.850000px;}
.y16_c00375{bottom:772.500000px;}
.y15_c00375{bottom:790.200000px;}
.y52_c00375{bottom:790.650000px;}
.y14_c00375{bottom:807.900000px;}
.y51_c00375{bottom:812.550000px;}
.y13_c00375{bottom:825.900000px;}
.y50_c00375{bottom:834.150000px;}
.y12_c00375{bottom:851.100000px;}
.y4f_c00375{bottom:856.050000px;}
.y11_c00375{bottom:868.800000px;}
.y4e_c00375{bottom:873.750000px;}
.y10_c00375{bottom:886.500000px;}
.y4d_c00375{bottom:891.750000px;}
.yf_c00375{bottom:904.500000px;}
.y4c_c00375{bottom:909.450000px;}
.ye_c00375{bottom:922.200000px;}
.y4b_c00375{bottom:931.350000px;}
.yd_c00375{bottom:940.200000px;}
.y4a_c00375{bottom:954.000000px;}
.yc_c00375{bottom:957.900000px;}
.y49_c00375{bottom:975.900000px;}
.yb_c00375{bottom:982.950000px;}
.y48_c00375{bottom:993.900000px;}
.ya_c00375{bottom:1001.700000px;}
.y47_c00375{bottom:1011.900000px;}
.y9_c00375{bottom:1019.700000px;}
.y46_c00375{bottom:1033.950000px;}
.y8_c00375{bottom:1037.700000px;}
.y7_c00375{bottom:1055.400000px;}
.y45_c00375{bottom:1055.850000px;}
.y6_c00375{bottom:1073.100000px;}
.y44_c00375{bottom:1073.850000px;}
.y5_c00375{bottom:1091.100000px;}
.y43_c00375{bottom:1091.850000px;}
.y4_c00375{bottom:1108.800000px;}
.y42_c00375{bottom:1109.550000px;}
.y3_c00375{bottom:1126.800000px;}
.y41_c00375{bottom:1127.550000px;}
.y1_c00375{bottom:1152.300000px;}
.y2_c00375{bottom:1153.350000px;}
.h6_c00375{height:30.000000px;}
.h7_c00375{height:36.000000px;}
.h8_c00375{height:42.000000px;}
.h9_c00375{height:54.000000px;}
.h5_c00375{height:60.000000px;}
.h4_c00375{height:66.000000px;}
.h2_c00375{height:72.000000px;}
.h3_c00375{height:102.000000px;}
.h1_c00375{height:1276.500000px;}
.h0_c00375{height:1276.559967px;}
.w0_c00375{width:960.480010px;}
.w1_c00375{width:960.750000px;}
.x0_c00375{left:0.000000px;}
.x69_c00375{left:162.000000px;}
.x9f_c00375{left:164.100000px;}
.x86_c00375{left:165.300000px;}
.x1_c00375{left:166.650000px;}
.x50_c00375{left:167.700000px;}
.x83_c00375{left:173.100000px;}
.x90_c00375{left:177.450000px;}
.x81_c00375{left:180.000000px;}
.x84_c00375{left:182.400000px;}
.x3_c00375{left:185.400000px;}
.x5a_c00375{left:186.450000px;}
.x8e_c00375{left:195.000000px;}
.x91_c00375{left:198.300000px;}
.x95_c00375{left:199.500000px;}
.x60_c00375{left:201.300000px;}
.x34_c00375{left:203.400000px;}
.x1b_c00375{left:204.900000px;}
.xc_c00375{left:206.250000px;}
.x8b_c00375{left:209.100000px;}
.x46_c00375{left:212.850000px;}
.x3b_c00375{left:215.850000px;}
.x40_c00375{left:218.400000px;}
.xa1_c00375{left:220.350000px;}
.x96_c00375{left:221.400000px;}
.x55_c00375{left:223.350000px;}
.x4_c00375{left:227.550000px;}
.x4e_c00375{left:228.750000px;}
.x22_c00375{left:233.850000px;}
.x3c_c00375{left:234.900000px;}
.x44_c00375{left:235.950000px;}
.x98_c00375{left:238.050000px;}
.x78_c00375{left:239.400000px;}
.x27_c00375{left:240.600000px;}
.x1c_c00375{left:242.400000px;}
.x51_c00375{left:243.600000px;}
.x13_c00375{left:245.100000px;}
.x35_c00375{left:247.350000px;}
.x61_c00375{left:248.850000px;}
.x70_c00375{left:250.350000px;}
.x79_c00375{left:252.000000px;}
.x2d_c00375{left:254.400000px;}
.x9b_c00375{left:255.900000px;}
.x75_c00375{left:257.550000px;}
.x5_c00375{left:259.650000px;}
.x4b_c00375{left:261.900000px;}
.x52_c00375{left:263.400000px;}
.xd_c00375{left:265.650000px;}
.x88_c00375{left:266.700000px;}
.x58_c00375{left:268.650000px;}
.x8c_c00375{left:272.550000px;}
.x28_c00375{left:275.100000px;}
.x6_c00375{left:276.600000px;}
.x7e_c00375{left:279.150000px;}
.x14_c00375{left:280.350000px;}
.x41_c00375{left:282.150000px;}
.x8f_c00375{left:283.350000px;}
.xe_c00375{left:286.500000px;}
.x23_c00375{left:288.600000px;}
.x30_c00375{left:290.250000px;}
.x5b_c00375{left:292.350000px;}
.x73_c00375{left:294.150000px;}
.x15_c00375{left:296.550000px;}
.x62_c00375{left:297.750000px;}
.x59_c00375{left:300.000000px;}
.x71_c00375{left:302.250000px;}
.x99_c00375{left:303.900000px;}
.x82_c00375{left:304.950000px;}
.x4c_c00375{left:307.200000px;}
.x76_c00375{left:308.550000px;}
.x31_c00375{left:311.850000px;}
.x2e_c00375{left:314.550000px;}
.x6a_c00375{left:316.050000px;}
.x24_c00375{left:317.700000px;}
.x65_c00375{left:319.350000px;}
.x63_c00375{left:320.400000px;}
.x53_c00375{left:324.900000px;}
.x87_c00375{left:328.800000px;}
.x16_c00375{left:330.750000px;}
.x47_c00375{left:331.950000px;}
.x29_c00375{left:334.800000px;}
.x4f_c00375{left:336.150000px;}
.x8d_c00375{left:338.850000px;}
.xf_c00375{left:340.800000px;}
.x6c_c00375{left:342.300000px;}
.x1d_c00375{left:346.800000px;}
.x7a_c00375{left:348.150000px;}
.x4d_c00375{left:349.350000px;}
.x17_c00375{left:353.100000px;}
.x66_c00375{left:355.650000px;}
.x77_c00375{left:356.850000px;}
.x2a_c00375{left:358.500000px;}
.x6d_c00375{left:361.050000px;}
.x7_c00375{left:362.250000px;}
.x42_c00375{left:363.900000px;}
.x67_c00375{left:364.950000px;}
.x7b_c00375{left:367.650000px;}
.x89_c00375{left:368.850000px;}
.x1e_c00375{left:370.200000px;}
.x2f_c00375{left:372.450000px;}
.x36_c00375{left:376.200000px;}
.x10_c00375{left:377.550000px;}
.x74_c00375{left:379.500000px;}
.x8_c00375{left:380.550000px;}
.x37_c00375{left:385.200000px;}
.x7c_c00375{left:386.400000px;}
.x85_c00375{left:388.200000px;}
.x45_c00375{left:389.550000px;}
.x6e_c00375{left:390.900000px;}
.x5c_c00375{left:392.850000px;}
.x32_c00375{left:395.100000px;}
.x38_c00375{left:396.300000px;}
.x3d_c00375{left:398.400000px;}
.x1f_c00375{left:401.550000px;}
.x93_c00375{left:403.650000px;}
.x6b_c00375{left:405.000000px;}
.x3e_c00375{left:407.400000px;}
.x7f_c00375{left:409.050000px;}
.x72_c00375{left:410.700000px;}
.x6f_c00375{left:411.750000px;}
.x9c_c00375{left:413.250000px;}
.x2_c00375{left:416.100000px;}
.x3f_c00375{left:420.000000px;}
.x56_c00375{left:422.400000px;}
.x18_c00375{left:424.800000px;}
.x48_c00375{left:426.600000px;}
.x2b_c00375{left:428.700000px;}
.x9_c00375{left:431.700000px;}
.x9d_c00375{left:432.750000px;}
.x39_c00375{left:436.950000px;}
.x25_c00375{left:438.300000px;}
.x5d_c00375{left:440.400000px;}
.x54_c00375{left:441.450000px;}
.x7d_c00375{left:443.400000px;}
.x20_c00375{left:445.500000px;}
.x43_c00375{left:446.700000px;}
.x49_c00375{left:450.300000px;}
.x2c_c00375{left:452.100000px;}
.x92_c00375{left:453.150000px;}
.x64_c00375{left:455.400000px;}
.x33_c00375{left:457.350000px;}
.x11_c00375{left:459.600000px;}
.x19_c00375{left:461.100000px;}
.xa_c00375{left:462.600000px;}
.x68_c00375{left:464.700000px;}
.x4a_c00375{left:466.800000px;}
.x9e_c00375{left:470.100000px;}
.x3a_c00375{left:473.550000px;}
.x26_c00375{left:475.350000px;}
.x8a_c00375{left:476.850000px;}
.x1a_c00375{left:479.100000px;}
.x5e_c00375{left:482.100000px;}
.xb_c00375{left:483.150000px;}
.x94_c00375{left:486.000000px;}
.x9a_c00375{left:487.200000px;}
.x12_c00375{left:488.400000px;}
.x57_c00375{left:490.050000px;}
.x21_c00375{left:493.350000px;}
.x5f_c00375{left:494.700000px;}
.x97_c00375{left:495.900000px;}
.x80_c00375{left:500.700000px;}
.xa0_c00375{left:511.200000px;}
.xfb_c00375{left:521.700000px;}
.xe9_c00375{left:525.900000px;}
.xfd_c00375{left:528.450000px;}
.x130_c00375{left:535.500000px;}
.x11c_c00375{left:538.800000px;}
.x10b_c00375{left:540.300000px;}
.xa7_c00375{left:542.850000px;}
.x132_c00375{left:544.500000px;}
.x12e_c00375{left:552.300000px;}
.x118_c00375{left:553.800000px;}
.x115_c00375{left:554.850000px;}
.xec_c00375{left:559.650000px;}
.xa2_c00375{left:560.850000px;}
.xcb_c00375{left:562.650000px;}
.x102_c00375{left:563.850000px;}
.xfa_c00375{left:565.950000px;}
.x12a_c00375{left:567.000000px;}
.xf0_c00375{left:568.350000px;}
.xfe_c00375{left:569.550000px;}
.x10e_c00375{left:571.650000px;}
.x103_c00375{left:573.600000px;}
.x11e_c00375{left:575.250000px;}
.xb6_c00375{left:576.600000px;}
.xc6_c00375{left:579.300000px;}
.xf7_c00375{left:582.300000px;}
.x13a_c00375{left:583.350000px;}
.xaf_c00375{left:584.700000px;}
.xda_c00375{left:586.800000px;}
.x116_c00375{left:590.100000px;}
.xbd_c00375{left:591.750000px;}
.xf1_c00375{left:592.800000px;}
.xa8_c00375{left:595.050000px;}
.x133_c00375{left:596.400000px;}
.x128_c00375{left:597.900000px;}
.xb7_c00375{left:601.050000px;}
.x11d_c00375{left:602.250000px;}
.x108_c00375{left:603.600000px;}
.xdb_c00375{left:608.100000px;}
.xb0_c00375{left:609.600000px;}
.x136_c00375{left:612.450000px;}
.xd0_c00375{left:616.350000px;}
.xd2_c00375{left:617.400000px;}
.xa9_c00375{left:619.500000px;}
.xbe_c00375{left:622.650000px;}
.xc0_c00375{left:623.850000px;}
.xc2_c00375{left:625.350000px;}
.xa3_c00375{left:626.400000px;}
.xf2_c00375{left:628.800000px;}
.xe1_c00375{left:631.500000px;}
.xe7_c00375{left:633.150000px;}
.x110_c00375{left:635.850000px;}
.xb8_c00375{left:639.900000px;}
.x119_c00375{left:642.450000px;}
.x114_c00375{left:643.800000px;}
.x104_c00375{left:646.800000px;}
.x134_c00375{left:648.600000px;}
.xff_c00375{left:650.550000px;}
.xe2_c00375{left:652.350000px;}
.x11f_c00375{left:654.150000px;}
.xbf_c00375{left:655.350000px;}
.xdc_c00375{left:657.000000px;}
.xcc_c00375{left:658.050000px;}
.xed_c00375{left:660.150000px;}
.xd4_c00375{left:661.650000px;}
.x137_c00375{left:662.850000px;}
.x10c_c00375{left:665.850000px;}
.xaa_c00375{left:667.050000px;}
.x12b_c00375{left:669.150000px;}
.xd3_c00375{left:670.650000px;}
.xdd_c00375{left:671.700000px;}
.xb1_c00375{left:674.850000px;}
.x120_c00375{left:676.050000px;}
.xf8_c00375{left:677.400000px;}
.xcd_c00375{left:678.900000px;}
.xab_c00375{left:682.200000px;}
.x121_c00375{left:683.550000px;}
.xb9_c00375{left:685.650000px;}
.x111_c00375{left:687.300000px;}
.xe8_c00375{left:689.250000px;}
.x109_c00375{left:690.750000px;}
.x129_c00375{left:691.950000px;}
.xc1_c00375{left:694.050000px;}
.x13b_c00375{left:695.700000px;}
.xb2_c00375{left:697.200000px;}
.x12c_c00375{left:698.250000px;}
.x138_c00375{left:699.600000px;}
.xa4_c00375{left:700.950000px;}
.xac_c00375{left:702.000000px;}
.x105_c00375{left:706.200000px;}
.xde_c00375{left:707.700000px;}
.xe3_c00375{left:709.950000px;}
.x112_c00375{left:711.450000px;}
.x122_c00375{left:712.950000px;}
.xc7_c00375{left:714.600000px;}
.xba_c00375{left:719.550000px;}
.x124_c00375{left:722.850000px;}
.xc3_c00375{left:724.800000px;}
.xb3_c00375{left:726.300000px;}
.xf3_c00375{left:728.550000px;}
.xd5_c00375{left:730.350000px;}
.xe4_c00375{left:731.850000px;}
.x11a_c00375{left:735.000000px;}
.xc8_c00375{left:737.700000px;}
.x125_c00375{left:739.050000px;}
.xee_c00375{left:740.700000px;}
.xd6_c00375{left:741.900000px;}
.x12f_c00375{left:742.950000px;}
.xce_c00375{left:746.550000px;}
.xf4_c00375{left:748.050000px;}
.x123_c00375{left:749.250000px;}
.x10d_c00375{left:751.800000px;}
.x11b_c00375{left:755.550000px;}
.xb4_c00375{left:756.600000px;}
.xd7_c00375{left:759.600000px;}
.xf9_c00375{left:761.700000px;}
.xad_c00375{left:763.500000px;}
.xdf_c00375{left:765.600000px;}
.xc4_c00375{left:767.250000px;}
.x100_c00375{left:769.050000px;}
.xbb_c00375{left:772.050000px;}
.x101_c00375{left:773.400000px;}
.x13c_c00375{left:775.650000px;}
.x139_c00375{left:776.700000px;}
.xe5_c00375{left:779.700000px;}
.xfc_c00375{left:783.300000px;}
.xea_c00375{left:784.650000px;}
.xa5_c00375{left:788.850000px;}
.x113_c00375{left:789.900000px;}
.x126_c00375{left:790.950000px;}
.xe6_c00375{left:792.000000px;}
.xbc_c00375{left:795.150000px;}
.xcf_c00375{left:797.400000px;}
.xe0_c00375{left:800.100000px;}
.xf5_c00375{left:804.150000px;}
.xc9_c00375{left:805.350000px;}
.x10a_c00375{left:807.750000px;}
.xd1_c00375{left:809.250000px;}
.xeb_c00375{left:812.400000px;}
.xef_c00375{left:813.750000px;}
.x131_c00375{left:815.250000px;}
.x13d_c00375{left:817.800000px;}
.xd8_c00375{left:819.300000px;}
.x106_c00375{left:820.350000px;}
.x127_c00375{left:821.850000px;}
.x10f_c00375{left:823.350000px;}
.xa6_c00375{left:830.550000px;}
.x13e_c00375{left:831.900000px;}
.x135_c00375{left:833.250000px;}
.xae_c00375{left:834.450000px;}
.xc5_c00375{left:835.650000px;}
.x107_c00375{left:837.300000px;}
.xb5_c00375{left:838.350000px;}
.x12d_c00375{left:843.600000px;}
.xf6_c00375{left:845.850000px;}
.xca_c00375{left:848.550000px;}
.x117_c00375{left:849.750000px;}
.xd9_c00375{left:872.550000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls1_c00375{letter-spacing:0.000000pt;}
.ls0_c00375{letter-spacing:62.222222pt;}
.wsd_c00375{word-spacing:-88.888889pt;}
.ws7_c00375{word-spacing:-9.939394pt;}
.ws1_c00375{word-spacing:-8.000000pt;}
.ws0_c00375{word-spacing:-4.487334pt;}
.ws2_c00375{word-spacing:-3.652340pt;}
.ws4_c00375{word-spacing:-2.201959pt;}
.ws12_c00375{word-spacing:0.000000pt;}
.ws3_c00375{word-spacing:1.333333pt;}
.ws9_c00375{word-spacing:5.796801pt;}
.ws8_c00375{word-spacing:6.026728pt;}
.ws5_c00375{word-spacing:6.446858pt;}
.ws6_c00375{word-spacing:16.054422pt;}
.wsa_c00375{word-spacing:23.492404pt;}
.ws10_c00375{word-spacing:26.031746pt;}
.wsb_c00375{word-spacing:28.666667pt;}
.wse_c00375{word-spacing:31.851852pt;}
.wsf_c00375{word-spacing:35.555556pt;}
.ws11_c00375{word-spacing:39.259259pt;}
.wsc_c00375{word-spacing:157.777778pt;}
._1_c00375{margin-left:-62.222222pt;}
._0_c00375{width:33.333333pt;}
.fs4_c00375{font-size:26.666667pt;}
.fs5_c00375{font-size:32.000000pt;}
.fs6_c00375{font-size:37.333333pt;}
.fs7_c00375{font-size:48.000000pt;}
.fs3_c00375{font-size:53.333333pt;}
.fs2_c00375{font-size:58.666667pt;}
.fs0_c00375{font-size:64.000000pt;}
.fs1_c00375{font-size:90.666667pt;}
.y0_c00375{bottom:0.000000pt;}
.y73_c00375{bottom:178.133333pt;}
.y40_c00375{bottom:191.333333pt;}
.y72_c00375{bottom:194.133333pt;}
.y3f_c00375{bottom:197.466667pt;}
.y71_c00375{bottom:209.466667pt;}
.y3e_c00375{bottom:210.000000pt;}
.y3d_c00375{bottom:222.133333pt;}
.y70_c00375{bottom:225.466667pt;}
.y3c_c00375{bottom:235.200000pt;}
.y6f_c00375{bottom:241.200000pt;}
.y3b_c00375{bottom:247.066667pt;}
.y6e_c00375{bottom:259.466667pt;}
.y3a_c00375{bottom:259.866667pt;}
.y6d_c00375{bottom:272.266667pt;}
.y39_c00375{bottom:272.533333pt;}
.y38_c00375{bottom:285.066667pt;}
.y6c_c00375{bottom:285.200000pt;}
.y37_c00375{bottom:297.866667pt;}
.y6b_c00375{bottom:298.000000pt;}
.y36_c00375{bottom:310.000000pt;}
.y6a_c00375{bottom:311.066667pt;}
.y35_c00375{bottom:322.533333pt;}
.y69_c00375{bottom:323.866667pt;}
.y34_c00375{bottom:335.066667pt;}
.y68_c00375{bottom:336.400000pt;}
.y33_c00375{bottom:347.866667pt;}
.y67_c00375{bottom:349.466667pt;}
.y32_c00375{bottom:361.066667pt;}
.y66_c00375{bottom:362.266667pt;}
.y31_c00375{bottom:372.533333pt;}
.y65_c00375{bottom:375.066667pt;}
.y30_c00375{bottom:383.466667pt;}
.y64_c00375{bottom:387.733333pt;}
.y2f_c00375{bottom:391.733333pt;}
.y63_c00375{bottom:400.533333pt;}
.y62_c00375{bottom:413.333333pt;}
.y2e_c00375{bottom:420.133333pt;}
.y2d_c00375{bottom:432.266667pt;}
.y2b_c00375{bottom:434.000000pt;}
.y2c_c00375{bottom:437.733333pt;}
.y23_c00375{bottom:443.466667pt;}
.y2a_c00375{bottom:443.866667pt;}
.y61_c00375{bottom:444.133333pt;}
.y22_c00375{bottom:448.933333pt;}
.y27_c00375{bottom:450.266667pt;}
.y28_c00375{bottom:451.200000pt;}
.y25_c00375{bottom:451.866667pt;}
.y26_c00375{bottom:452.133333pt;}
.y24_c00375{bottom:452.800000pt;}
.y60_c00375{bottom:459.866667pt;}
.y29_c00375{bottom:460.800000pt;}
.y21_c00375{bottom:467.200000pt;}
.y5f_c00375{bottom:480.000000pt;}
.y20_c00375{bottom:487.066667pt;}
.y5e_c00375{bottom:496.000000pt;}
.y1f_c00375{bottom:506.266667pt;}
.y5d_c00375{bottom:512.000000pt;}
.y1e_c00375{bottom:525.733333pt;}
.y5c_c00375{bottom:527.733333pt;}
.y5b_c00375{bottom:544.000000pt;}
.y1d_c00375{bottom:555.866667pt;}
.y5a_c00375{bottom:563.200000pt;}
.y59_c00375{bottom:583.066667pt;}
.y1c_c00375{bottom:587.466667pt;}
.y58_c00375{bottom:603.066667pt;}
.y1b_c00375{bottom:603.200000pt;}
.y57_c00375{bottom:619.066667pt;}
.y1a_c00375{bottom:619.200000pt;}
.y56_c00375{bottom:635.066667pt;}
.y19_c00375{bottom:638.133333pt;}
.y55_c00375{bottom:651.066667pt;}
.y18_c00375{bottom:655.066667pt;}
.y54_c00375{bottom:666.800000pt;}
.y17_c00375{bottom:671.066667pt;}
.y53_c00375{bottom:682.533333pt;}
.y16_c00375{bottom:686.666667pt;}
.y15_c00375{bottom:702.400000pt;}
.y52_c00375{bottom:702.800000pt;}
.y14_c00375{bottom:718.133333pt;}
.y51_c00375{bottom:722.266667pt;}
.y13_c00375{bottom:734.133333pt;}
.y50_c00375{bottom:741.466667pt;}
.y12_c00375{bottom:756.533333pt;}
.y4f_c00375{bottom:760.933333pt;}
.y11_c00375{bottom:772.266667pt;}
.y4e_c00375{bottom:776.666667pt;}
.y10_c00375{bottom:788.000000pt;}
.y4d_c00375{bottom:792.666667pt;}
.yf_c00375{bottom:804.000000pt;}
.y4c_c00375{bottom:808.400000pt;}
.ye_c00375{bottom:819.733333pt;}
.y4b_c00375{bottom:827.866667pt;}
.yd_c00375{bottom:835.733333pt;}
.y4a_c00375{bottom:848.000000pt;}
.yc_c00375{bottom:851.466667pt;}
.y49_c00375{bottom:867.466667pt;}
.yb_c00375{bottom:873.733333pt;}
.y48_c00375{bottom:883.466667pt;}
.ya_c00375{bottom:890.400000pt;}
.y47_c00375{bottom:899.466667pt;}
.y9_c00375{bottom:906.400000pt;}
.y46_c00375{bottom:919.066667pt;}
.y8_c00375{bottom:922.400000pt;}
.y7_c00375{bottom:938.133333pt;}
.y45_c00375{bottom:938.533333pt;}
.y6_c00375{bottom:953.866667pt;}
.y44_c00375{bottom:954.533333pt;}
.y5_c00375{bottom:969.866667pt;}
.y43_c00375{bottom:970.533333pt;}
.y4_c00375{bottom:985.600000pt;}
.y42_c00375{bottom:986.266667pt;}
.y3_c00375{bottom:1001.600000pt;}
.y41_c00375{bottom:1002.266667pt;}
.y1_c00375{bottom:1024.266667pt;}
.y2_c00375{bottom:1025.200000pt;}
.h6_c00375{height:26.666667pt;}
.h7_c00375{height:32.000000pt;}
.h8_c00375{height:37.333333pt;}
.h9_c00375{height:48.000000pt;}
.h5_c00375{height:53.333333pt;}
.h4_c00375{height:58.666667pt;}
.h2_c00375{height:64.000000pt;}
.h3_c00375{height:90.666667pt;}
.h1_c00375{height:1134.666667pt;}
.h0_c00375{height:1134.719971pt;}
.w0_c00375{width:853.760009pt;}
.w1_c00375{width:854.000000pt;}
.x0_c00375{left:0.000000pt;}
.x69_c00375{left:144.000000pt;}
.x9f_c00375{left:145.866667pt;}
.x86_c00375{left:146.933333pt;}
.x1_c00375{left:148.133333pt;}
.x50_c00375{left:149.066667pt;}
.x83_c00375{left:153.866667pt;}
.x90_c00375{left:157.733333pt;}
.x81_c00375{left:160.000000pt;}
.x84_c00375{left:162.133333pt;}
.x3_c00375{left:164.800000pt;}
.x5a_c00375{left:165.733333pt;}
.x8e_c00375{left:173.333333pt;}
.x91_c00375{left:176.266667pt;}
.x95_c00375{left:177.333333pt;}
.x60_c00375{left:178.933333pt;}
.x34_c00375{left:180.800000pt;}
.x1b_c00375{left:182.133333pt;}
.xc_c00375{left:183.333333pt;}
.x8b_c00375{left:185.866667pt;}
.x46_c00375{left:189.200000pt;}
.x3b_c00375{left:191.866667pt;}
.x40_c00375{left:194.133333pt;}
.xa1_c00375{left:195.866667pt;}
.x96_c00375{left:196.800000pt;}
.x55_c00375{left:198.533333pt;}
.x4_c00375{left:202.266667pt;}
.x4e_c00375{left:203.333333pt;}
.x22_c00375{left:207.866667pt;}
.x3c_c00375{left:208.800000pt;}
.x44_c00375{left:209.733333pt;}
.x98_c00375{left:211.600000pt;}
.x78_c00375{left:212.800000pt;}
.x27_c00375{left:213.866667pt;}
.x1c_c00375{left:215.466667pt;}
.x51_c00375{left:216.533333pt;}
.x13_c00375{left:217.866667pt;}
.x35_c00375{left:219.866667pt;}
.x61_c00375{left:221.200000pt;}
.x70_c00375{left:222.533333pt;}
.x79_c00375{left:224.000000pt;}
.x2d_c00375{left:226.133333pt;}
.x9b_c00375{left:227.466667pt;}
.x75_c00375{left:228.933333pt;}
.x5_c00375{left:230.800000pt;}
.x4b_c00375{left:232.800000pt;}
.x52_c00375{left:234.133333pt;}
.xd_c00375{left:236.133333pt;}
.x88_c00375{left:237.066667pt;}
.x58_c00375{left:238.800000pt;}
.x8c_c00375{left:242.266667pt;}
.x28_c00375{left:244.533333pt;}
.x6_c00375{left:245.866667pt;}
.x7e_c00375{left:248.133333pt;}
.x14_c00375{left:249.200000pt;}
.x41_c00375{left:250.800000pt;}
.x8f_c00375{left:251.866667pt;}
.xe_c00375{left:254.666667pt;}
.x23_c00375{left:256.533333pt;}
.x30_c00375{left:258.000000pt;}
.x5b_c00375{left:259.866667pt;}
.x73_c00375{left:261.466667pt;}
.x15_c00375{left:263.600000pt;}
.x62_c00375{left:264.666667pt;}
.x59_c00375{left:266.666667pt;}
.x71_c00375{left:268.666667pt;}
.x99_c00375{left:270.133333pt;}
.x82_c00375{left:271.066667pt;}
.x4c_c00375{left:273.066667pt;}
.x76_c00375{left:274.266667pt;}
.x31_c00375{left:277.200000pt;}
.x2e_c00375{left:279.600000pt;}
.x6a_c00375{left:280.933333pt;}
.x24_c00375{left:282.400000pt;}
.x65_c00375{left:283.866667pt;}
.x63_c00375{left:284.800000pt;}
.x53_c00375{left:288.800000pt;}
.x87_c00375{left:292.266667pt;}
.x16_c00375{left:294.000000pt;}
.x47_c00375{left:295.066667pt;}
.x29_c00375{left:297.600000pt;}
.x4f_c00375{left:298.800000pt;}
.x8d_c00375{left:301.200000pt;}
.xf_c00375{left:302.933333pt;}
.x6c_c00375{left:304.266667pt;}
.x1d_c00375{left:308.266667pt;}
.x7a_c00375{left:309.466667pt;}
.x4d_c00375{left:310.533333pt;}
.x17_c00375{left:313.866667pt;}
.x66_c00375{left:316.133333pt;}
.x77_c00375{left:317.200000pt;}
.x2a_c00375{left:318.666667pt;}
.x6d_c00375{left:320.933333pt;}
.x7_c00375{left:322.000000pt;}
.x42_c00375{left:323.466667pt;}
.x67_c00375{left:324.400000pt;}
.x7b_c00375{left:326.800000pt;}
.x89_c00375{left:327.866667pt;}
.x1e_c00375{left:329.066667pt;}
.x2f_c00375{left:331.066667pt;}
.x36_c00375{left:334.400000pt;}
.x10_c00375{left:335.600000pt;}
.x74_c00375{left:337.333333pt;}
.x8_c00375{left:338.266667pt;}
.x37_c00375{left:342.400000pt;}
.x7c_c00375{left:343.466667pt;}
.x85_c00375{left:345.066667pt;}
.x45_c00375{left:346.266667pt;}
.x6e_c00375{left:347.466667pt;}
.x5c_c00375{left:349.200000pt;}
.x32_c00375{left:351.200000pt;}
.x38_c00375{left:352.266667pt;}
.x3d_c00375{left:354.133333pt;}
.x1f_c00375{left:356.933333pt;}
.x93_c00375{left:358.800000pt;}
.x6b_c00375{left:360.000000pt;}
.x3e_c00375{left:362.133333pt;}
.x7f_c00375{left:363.600000pt;}
.x72_c00375{left:365.066667pt;}
.x6f_c00375{left:366.000000pt;}
.x9c_c00375{left:367.333333pt;}
.x2_c00375{left:369.866667pt;}
.x3f_c00375{left:373.333333pt;}
.x56_c00375{left:375.466667pt;}
.x18_c00375{left:377.600000pt;}
.x48_c00375{left:379.200000pt;}
.x2b_c00375{left:381.066667pt;}
.x9_c00375{left:383.733333pt;}
.x9d_c00375{left:384.666667pt;}
.x39_c00375{left:388.400000pt;}
.x25_c00375{left:389.600000pt;}
.x5d_c00375{left:391.466667pt;}
.x54_c00375{left:392.400000pt;}
.x7d_c00375{left:394.133333pt;}
.x20_c00375{left:396.000000pt;}
.x43_c00375{left:397.066667pt;}
.x49_c00375{left:400.266667pt;}
.x2c_c00375{left:401.866667pt;}
.x92_c00375{left:402.800000pt;}
.x64_c00375{left:404.800000pt;}
.x33_c00375{left:406.533333pt;}
.x11_c00375{left:408.533333pt;}
.x19_c00375{left:409.866667pt;}
.xa_c00375{left:411.200000pt;}
.x68_c00375{left:413.066667pt;}
.x4a_c00375{left:414.933333pt;}
.x9e_c00375{left:417.866667pt;}
.x3a_c00375{left:420.933333pt;}
.x26_c00375{left:422.533333pt;}
.x8a_c00375{left:423.866667pt;}
.x1a_c00375{left:425.866667pt;}
.x5e_c00375{left:428.533333pt;}
.xb_c00375{left:429.466667pt;}
.x94_c00375{left:432.000000pt;}
.x9a_c00375{left:433.066667pt;}
.x12_c00375{left:434.133333pt;}
.x57_c00375{left:435.600000pt;}
.x21_c00375{left:438.533333pt;}
.x5f_c00375{left:439.733333pt;}
.x97_c00375{left:440.800000pt;}
.x80_c00375{left:445.066667pt;}
.xa0_c00375{left:454.400000pt;}
.xfb_c00375{left:463.733333pt;}
.xe9_c00375{left:467.466667pt;}
.xfd_c00375{left:469.733333pt;}
.x130_c00375{left:476.000000pt;}
.x11c_c00375{left:478.933333pt;}
.x10b_c00375{left:480.266667pt;}
.xa7_c00375{left:482.533333pt;}
.x132_c00375{left:484.000000pt;}
.x12e_c00375{left:490.933333pt;}
.x118_c00375{left:492.266667pt;}
.x115_c00375{left:493.200000pt;}
.xec_c00375{left:497.466667pt;}
.xa2_c00375{left:498.533333pt;}
.xcb_c00375{left:500.133333pt;}
.x102_c00375{left:501.200000pt;}
.xfa_c00375{left:503.066667pt;}
.x12a_c00375{left:504.000000pt;}
.xf0_c00375{left:505.200000pt;}
.xfe_c00375{left:506.266667pt;}
.x10e_c00375{left:508.133333pt;}
.x103_c00375{left:509.866667pt;}
.x11e_c00375{left:511.333333pt;}
.xb6_c00375{left:512.533333pt;}
.xc6_c00375{left:514.933333pt;}
.xf7_c00375{left:517.600000pt;}
.x13a_c00375{left:518.533333pt;}
.xaf_c00375{left:519.733333pt;}
.xda_c00375{left:521.600000pt;}
.x116_c00375{left:524.533333pt;}
.xbd_c00375{left:526.000000pt;}
.xf1_c00375{left:526.933333pt;}
.xa8_c00375{left:528.933333pt;}
.x133_c00375{left:530.133333pt;}
.x128_c00375{left:531.466667pt;}
.xb7_c00375{left:534.266667pt;}
.x11d_c00375{left:535.333333pt;}
.x108_c00375{left:536.533333pt;}
.xdb_c00375{left:540.533333pt;}
.xb0_c00375{left:541.866667pt;}
.x136_c00375{left:544.400000pt;}
.xd0_c00375{left:547.866667pt;}
.xd2_c00375{left:548.800000pt;}
.xa9_c00375{left:550.666667pt;}
.xbe_c00375{left:553.466667pt;}
.xc0_c00375{left:554.533333pt;}
.xc2_c00375{left:555.866667pt;}
.xa3_c00375{left:556.800000pt;}
.xf2_c00375{left:558.933333pt;}
.xe1_c00375{left:561.333333pt;}
.xe7_c00375{left:562.800000pt;}
.x110_c00375{left:565.200000pt;}
.xb8_c00375{left:568.800000pt;}
.x119_c00375{left:571.066667pt;}
.x114_c00375{left:572.266667pt;}
.x104_c00375{left:574.933333pt;}
.x134_c00375{left:576.533333pt;}
.xff_c00375{left:578.266667pt;}
.xe2_c00375{left:579.866667pt;}
.x11f_c00375{left:581.466667pt;}
.xbf_c00375{left:582.533333pt;}
.xdc_c00375{left:584.000000pt;}
.xcc_c00375{left:584.933333pt;}
.xed_c00375{left:586.800000pt;}
.xd4_c00375{left:588.133333pt;}
.x137_c00375{left:589.200000pt;}
.x10c_c00375{left:591.866667pt;}
.xaa_c00375{left:592.933333pt;}
.x12b_c00375{left:594.800000pt;}
.xd3_c00375{left:596.133333pt;}
.xdd_c00375{left:597.066667pt;}
.xb1_c00375{left:599.866667pt;}
.x120_c00375{left:600.933333pt;}
.xf8_c00375{left:602.133333pt;}
.xcd_c00375{left:603.466667pt;}
.xab_c00375{left:606.400000pt;}
.x121_c00375{left:607.600000pt;}
.xb9_c00375{left:609.466667pt;}
.x111_c00375{left:610.933333pt;}
.xe8_c00375{left:612.666667pt;}
.x109_c00375{left:614.000000pt;}
.x129_c00375{left:615.066667pt;}
.xc1_c00375{left:616.933333pt;}
.x13b_c00375{left:618.400000pt;}
.xb2_c00375{left:619.733333pt;}
.x12c_c00375{left:620.666667pt;}
.x138_c00375{left:621.866667pt;}
.xa4_c00375{left:623.066667pt;}
.xac_c00375{left:624.000000pt;}
.x105_c00375{left:627.733333pt;}
.xde_c00375{left:629.066667pt;}
.xe3_c00375{left:631.066667pt;}
.x112_c00375{left:632.400000pt;}
.x122_c00375{left:633.733333pt;}
.xc7_c00375{left:635.200000pt;}
.xba_c00375{left:639.600000pt;}
.x124_c00375{left:642.533333pt;}
.xc3_c00375{left:644.266667pt;}
.xb3_c00375{left:645.600000pt;}
.xf3_c00375{left:647.600000pt;}
.xd5_c00375{left:649.200000pt;}
.xe4_c00375{left:650.533333pt;}
.x11a_c00375{left:653.333333pt;}
.xc8_c00375{left:655.733333pt;}
.x125_c00375{left:656.933333pt;}
.xee_c00375{left:658.400000pt;}
.xd6_c00375{left:659.466667pt;}
.x12f_c00375{left:660.400000pt;}
.xce_c00375{left:663.600000pt;}
.xf4_c00375{left:664.933333pt;}
.x123_c00375{left:666.000000pt;}
.x10d_c00375{left:668.266667pt;}
.x11b_c00375{left:671.600000pt;}
.xb4_c00375{left:672.533333pt;}
.xd7_c00375{left:675.200000pt;}
.xf9_c00375{left:677.066667pt;}
.xad_c00375{left:678.666667pt;}
.xdf_c00375{left:680.533333pt;}
.xc4_c00375{left:682.000000pt;}
.x100_c00375{left:683.600000pt;}
.xbb_c00375{left:686.266667pt;}
.x101_c00375{left:687.466667pt;}
.x13c_c00375{left:689.466667pt;}
.x139_c00375{left:690.400000pt;}
.xe5_c00375{left:693.066667pt;}
.xfc_c00375{left:696.266667pt;}
.xea_c00375{left:697.466667pt;}
.xa5_c00375{left:701.200000pt;}
.x113_c00375{left:702.133333pt;}
.x126_c00375{left:703.066667pt;}
.xe6_c00375{left:704.000000pt;}
.xbc_c00375{left:706.800000pt;}
.xcf_c00375{left:708.800000pt;}
.xe0_c00375{left:711.200000pt;}
.xf5_c00375{left:714.800000pt;}
.xc9_c00375{left:715.866667pt;}
.x10a_c00375{left:718.000000pt;}
.xd1_c00375{left:719.333333pt;}
.xeb_c00375{left:722.133333pt;}
.xef_c00375{left:723.333333pt;}
.x131_c00375{left:724.666667pt;}
.x13d_c00375{left:726.933333pt;}
.xd8_c00375{left:728.266667pt;}
.x106_c00375{left:729.200000pt;}
.x127_c00375{left:730.533333pt;}
.x10f_c00375{left:731.866667pt;}
.xa6_c00375{left:738.266667pt;}
.x13e_c00375{left:739.466667pt;}
.x135_c00375{left:740.666667pt;}
.xae_c00375{left:741.733333pt;}
.xc5_c00375{left:742.800000pt;}
.x107_c00375{left:744.266667pt;}
.xb5_c00375{left:745.200000pt;}
.x12d_c00375{left:749.866667pt;}
.xf6_c00375{left:751.866667pt;}
.xca_c00375{left:754.266667pt;}
.x117_c00375{left:755.333333pt;}
.xd9_c00375{left:775.600000pt;}
}





/* 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_c00376 {
    display:none;
  }
  .loading-indicator_c00376.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00376 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_c00376 { 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_c00376" -> "#page-container .classname_c00376")
 */
.pf_c00376 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00376 { /* 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_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00376 { /* 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_c00376 { /* 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_c00376 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00376 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00376 {overflow:visible;}
  }
}
.c_c00376 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00376 { /* 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_c00376:after { /* webkit #35443 */
  content: '';
}
.t_c00376:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00376 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 */
}
.__c00376 { /* 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_c00376 { /* info for Javascript */
  display:none;
}
.l_c00376 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00376 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00376 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00376: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_c00376 {
    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_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00376.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_c00376 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00376;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00376{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.m85_c00376{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mff_c00376{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00376{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00376{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00376{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00376{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md5_c00376{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00376{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md4_c00376{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.me8_c00376{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mce_c00376{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m101_c00376{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00376{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me2_c00376{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00376{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00376{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md0_c00376{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00376{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m81_c00376{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m0_c00376{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.me1_c00376{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00376{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m45_c00376{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m66_c00376{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m58_c00376{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.md8_c00376{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00376{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00376{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m108_c00376{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m21_c00376{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m107_c00376{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.me3_c00376{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00376{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00376{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00376{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00376{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mde_c00376{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00376{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00376{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00376{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.md1_c00376{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00376{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m95_c00376{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m35_c00376{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m75_c00376{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m105_c00376{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00376{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00376{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00376{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00376{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m29_c00376{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m18_c00376{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m59_c00376{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00376{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m17_c00376{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00376{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00376{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m74_c00376{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.maa_c00376{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00376{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00376{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m99_c00376{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m79_c00376{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00376{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mae_c00376{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m4_c00376{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m25_c00376{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00376{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00376{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m103_c00376{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m5_c00376{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00376{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me7_c00376{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00376{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m26_c00376{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00376{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00376{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00376{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00376{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m22_c00376{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m104_c00376{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00376{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00376{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m69_c00376{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m93_c00376{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00376{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m37_c00376{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00376{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m49_c00376{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m33_c00376{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00376{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00376{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00376{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00376{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00376{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m24_c00376{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m67_c00376{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00376{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me9_c00376{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m83_c00376{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00376{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00376{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00376{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m36_c00376{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00376{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00376{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m60_c00376{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00376{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m77_c00376{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00376{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00376{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00376{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m68_c00376{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md3_c00376{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00376{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m13_c00376{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mca_c00376{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m23_c00376{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00376{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me0_c00376{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00376{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m82_c00376{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m42_c00376{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00376{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00376{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00376{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m40_c00376{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m80_c00376{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mad_c00376{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md_c00376{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m16_c00376{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00376{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m64_c00376{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m31_c00376{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7_c00376{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00376{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb_c00376{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m54_c00376{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8_c00376{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.me_c00376{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00376{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m32_c00376{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m88_c00376{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00376{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m90_c00376{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m47_c00376{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m98_c00376{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00376{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m39_c00376{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m20_c00376{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00376{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6_c00376{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00376{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mba_c00376{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00376{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m11_c00376{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00376{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00376{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me5_c00376{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m44_c00376{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00376{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m71_c00376{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.md6_c00376{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00376{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.maf_c00376{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00376{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m63_c00376{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00376{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md7_c00376{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mac_c00376{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m28_c00376{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00376{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mab_c00376{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me6_c00376{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00376{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00376{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00376{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m12_c00376{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m61_c00376{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m34_c00376{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00376{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00376{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mec_c00376{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00376{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m70_c00376{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma_c00376{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m19_c00376{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00376{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mea_c00376{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00376{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00376{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m84_c00376{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m72_c00376{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m43_c00376{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00376{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m89_c00376{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00376{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00376{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m53_c00376{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m27_c00376{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00376{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00376{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m78_c00376{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00376{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m9_c00376{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m92_c00376{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mef_c00376{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m97_c00376{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m10_c00376{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00376{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m56_c00376{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m87_c00376{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m52_c00376{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m30_c00376{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m73_c00376{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m57_c00376{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m14_c00376{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00376{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00376{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md2_c00376{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me4_c00376{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc_c00376{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00376{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m15_c00376{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00376{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m48_c00376{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00376{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m46_c00376{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m50_c00376{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m38_c00376{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m51_c00376{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m96_c00376{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00376{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00376{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m41_c00376{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00376{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m62_c00376{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00376{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00376{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m3_c00376{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.meb_c00376{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00376{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md9_c00376{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m65_c00376{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00376{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m106_c00376{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00376{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00376{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00376{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m91_c00376{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00376{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00376{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m102_c00376{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00376{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m100_c00376{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m86_c00376{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mee_c00376{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00376{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00376{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m76_c00376{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00376{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf_c00376{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.med_c00376{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m55_c00376{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00376{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mda_c00376{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00376{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);}
.m109_c00376{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls1_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:70.000000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{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__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c00376{word-spacing:-100.000000px;}
.ws3_c00376{word-spacing:-15.250000px;}
.ws12_c00376{word-spacing:-12.750000px;}
.ws5_c00376{word-spacing:-10.921053px;}
.ws6_c00376{word-spacing:-10.256410px;}
.ws4_c00376{word-spacing:-9.780669px;}
.ws13_c00376{word-spacing:-5.587601px;}
.ws2_c00376{word-spacing:-3.929919px;}
.ws1_c00376{word-spacing:-1.058296px;}
.ws14_c00376{word-spacing:0.000000px;}
.wsd_c00376{word-spacing:28.426230px;}
.wsa_c00376{word-spacing:29.285714px;}
.ws9_c00376{word-spacing:35.833333px;}
.ws11_c00376{word-spacing:40.000000px;}
.wsc_c00376{word-spacing:43.923664px;}
.ws7_c00376{word-spacing:44.166667px;}
.wse_c00376{word-spacing:48.503817px;}
.ws8_c00376{word-spacing:74.722222px;}
.ws10_c00376{word-spacing:144.090909px;}
.wsb_c00376{word-spacing:195.294118px;}
.ws0_c00376{word-spacing:1376.054054px;}
._5_c00376{margin-left:-70.000000px;}
._4_c00376{width:4.166667px;}
._2_c00376{width:65.360656px;}
._0_c00376{width:70.000000px;}
._1_c00376{width:74.166667px;}
._3_c00376{width:76.923664px;}
.fc0_c00376{color:transparent;}
.fs4_c00376{font-size:54.000000px;}
.fs3_c00376{font-size:60.000000px;}
.fs1_c00376{font-size:66.000000px;}
.fs2_c00376{font-size:72.000000px;}
.fs0_c00376{font-size:78.000000px;}
.y0_c00376{bottom:0.000000px;}
.y34_c00376{bottom:201.600000px;}
.y69_c00376{bottom:203.700000px;}
.y33_c00376{bottom:219.900000px;}
.y68_c00376{bottom:229.350000px;}
.y32_c00376{bottom:237.600000px;}
.y67_c00376{bottom:247.500000px;}
.y31_c00376{bottom:259.950000px;}
.y66_c00376{bottom:265.500000px;}
.y65_c00376{bottom:283.200000px;}
.y30_c00376{bottom:291.150000px;}
.y64_c00376{bottom:301.200000px;}
.y2f_c00376{bottom:309.150000px;}
.y63_c00376{bottom:318.900000px;}
.y2e_c00376{bottom:326.850000px;}
.y62_c00376{bottom:341.250000px;}
.y2d_c00376{bottom:344.550000px;}
.y2c_c00376{bottom:362.550000px;}
.y61_c00376{bottom:371.550000px;}
.y2b_c00376{bottom:384.300000px;}
.y60_c00376{bottom:389.850000px;}
.y2a_c00376{bottom:402.000000px;}
.y5f_c00376{bottom:407.550000px;}
.y29_c00376{bottom:420.000000px;}
.y5e_c00376{bottom:425.100000px;}
.y28_c00376{bottom:437.700000px;}
.y5d_c00376{bottom:450.600000px;}
.y27_c00376{bottom:455.400000px;}
.y5c_c00376{bottom:468.600000px;}
.y26_c00376{bottom:473.100000px;}
.y5b_c00376{bottom:486.600000px;}
.y25_c00376{bottom:491.100000px;}
.y5a_c00376{bottom:504.600000px;}
.y24_c00376{bottom:512.700000px;}
.y59_c00376{bottom:522.300000px;}
.y23_c00376{bottom:530.700000px;}
.y58_c00376{bottom:540.600000px;}
.y22_c00376{bottom:548.700000px;}
.y57_c00376{bottom:558.300000px;}
.y21_c00376{bottom:566.700000px;}
.y56_c00376{bottom:576.300000px;}
.y20_c00376{bottom:584.700000px;}
.y55_c00376{bottom:594.300000px;}
.y1f_c00376{bottom:606.600000px;}
.y54_c00376{bottom:612.300000px;}
.y1e_c00376{bottom:627.900000px;}
.y53_c00376{bottom:630.000000px;}
.y1d_c00376{bottom:642.600000px;}
.y52_c00376{bottom:651.600000px;}
.y1c_c00376{bottom:660.300000px;}
.y51_c00376{bottom:669.600000px;}
.y1b_c00376{bottom:678.000000px;}
.y50_c00376{bottom:687.300000px;}
.y1a_c00376{bottom:695.700000px;}
.y4f_c00376{bottom:706.800000px;}
.y19_c00376{bottom:713.700000px;}
.y4e_c00376{bottom:723.000000px;}
.y18_c00376{bottom:731.700000px;}
.y4d_c00376{bottom:741.000000px;}
.y17_c00376{bottom:749.400000px;}
.y35_c00376{bottom:749.550000px;}
.y4c_c00376{bottom:758.700000px;}
.y16_c00376{bottom:767.100000px;}
.y4b_c00376{bottom:776.700000px;}
.y15_c00376{bottom:785.100000px;}
.y4a_c00376{bottom:794.400000px;}
.y14_c00376{bottom:803.100000px;}
.y49_c00376{bottom:812.400000px;}
.y13_c00376{bottom:821.100000px;}
.y48_c00376{bottom:830.100000px;}
.y12_c00376{bottom:838.050000px;}
.y47_c00376{bottom:848.100000px;}
.y11_c00376{bottom:856.050000px;}
.y46_c00376{bottom:865.800000px;}
.y10_c00376{bottom:874.050000px;}
.y45_c00376{bottom:891.000000px;}
.yf_c00376{bottom:892.050000px;}
.y44_c00376{bottom:905.100000px;}
.ye_c00376{bottom:909.750000px;}
.y43_c00376{bottom:919.500000px;}
.yd_c00376{bottom:927.750000px;}
.y42_c00376{bottom:934.200000px;}
.y41_c00376{bottom:948.300000px;}
.yc_c00376{bottom:949.200000px;}
.y40_c00376{bottom:962.400000px;}
.yb_c00376{bottom:967.500000px;}
.y3f_c00376{bottom:977.100000px;}
.ya_c00376{bottom:985.200000px;}
.y3e_c00376{bottom:991.200000px;}
.y9_c00376{bottom:1003.200000px;}
.y3d_c00376{bottom:1005.900000px;}
.y3c_c00376{bottom:1020.000000px;}
.y8_c00376{bottom:1021.200000px;}
.y3b_c00376{bottom:1034.700000px;}
.y7_c00376{bottom:1038.450000px;}
.y3a_c00376{bottom:1050.150000px;}
.y6_c00376{bottom:1056.450000px;}
.y39_c00376{bottom:1069.200000px;}
.y5_c00376{bottom:1074.150000px;}
.y38_c00376{bottom:1087.200000px;}
.y4_c00376{bottom:1092.150000px;}
.y37_c00376{bottom:1108.800000px;}
.y3_c00376{bottom:1110.150000px;}
.y36_c00376{bottom:1126.800000px;}
.y2_c00376{bottom:1127.850000px;}
.y1_c00376{bottom:1154.100000px;}
.h6_c00376{height:54.000000px;}
.h5_c00376{height:60.000000px;}
.h3_c00376{height:66.000000px;}
.h4_c00376{height:72.000000px;}
.h2_c00376{height:78.000000px;}
.h0_c00376{height:1276.920044px;}
.h1_c00376{height:1277.250000px;}
.w0_c00376{width:960.480010px;}
.w1_c00376{width:960.750000px;}
.x0_c00376{left:0.000000px;}
.x8d_c00376{left:75.300000px;}
.x40_c00376{left:76.350000px;}
.xa4_c00376{left:91.500000px;}
.x6f_c00376{left:92.700000px;}
.x52_c00376{left:94.500000px;}
.x5_c00376{left:95.700000px;}
.x7c_c00376{left:110.850000px;}
.x16_c00376{left:112.650000px;}
.x6b_c00376{left:114.750000px;}
.x33_c00376{left:116.400000px;}
.x79_c00376{left:117.600000px;}
.x9e_c00376{left:119.550000px;}
.x9d_c00376{left:121.200000px;}
.x6d_c00376{left:126.750000px;}
.x73_c00376{left:128.550000px;}
.x4a_c00376{left:129.750000px;}
.x1f_c00376{left:132.150000px;}
.x24_c00376{left:133.950000px;}
.x62_c00376{left:135.300000px;}
.x10_c00376{left:136.800000px;}
.x41_c00376{left:137.850000px;}
.x47_c00376{left:139.650000px;}
.x5c_c00376{left:142.950000px;}
.x38_c00376{left:144.450000px;}
.x6_c00376{left:148.950000px;}
.x4b_c00376{left:151.350000px;}
.x5d_c00376{left:152.700000px;}
.x90_c00376{left:153.900000px;}
.x11_c00376{left:156.900000px;}
.x89_c00376{left:158.250000px;}
.x2f_c00376{left:160.350000px;}
.x29_c00376{left:162.150000px;}
.x34_c00376{left:163.500000px;}
.x9b_c00376{left:164.700000px;}
.x70_c00376{left:167.250000px;}
.x7d_c00376{left:168.750000px;}
.x39_c00376{left:169.950000px;}
.xa_c00376{left:172.800000px;}
.x48_c00376{left:173.850000px;}
.x7a_c00376{left:175.950000px;}
.x67_c00376{left:178.050000px;}
.x7e_c00376{left:180.300000px;}
.x17_c00376{left:181.500000px;}
.x6e_c00376{left:184.350000px;}
.x20_c00376{left:187.950000px;}
.x53_c00376{left:191.250000px;}
.x63_c00376{left:192.450000px;}
.x68_c00376{left:193.950000px;}
.x2a_c00376{left:195.600000px;}
.x18_c00376{left:197.700000px;}
.x4c_c00376{left:199.200000px;}
.xb_c00376{left:201.600000px;}
.x7_c00376{left:203.700000px;}
.x42_c00376{left:205.050000px;}
.x5e_c00376{left:206.250000px;}
.xa2_c00376{left:208.500000px;}
.x82_c00376{left:210.300000px;}
.x85_c00376{left:211.650000px;}
.x64_c00376{left:215.100000px;}
.x2b_c00376{left:216.150000px;}
.x3e_c00376{left:217.650000px;}
.x5f_c00376{left:219.150000px;}
.x58_c00376{left:220.650000px;}
.x30_c00376{left:223.950000px;}
.x12_c00376{left:226.050000px;}
.xc_c00376{left:227.550000px;}
.x43_c00376{left:229.200000px;}
.x9f_c00376{left:230.400000px;}
.x77_c00376{left:231.750000px;}
.x21_c00376{left:234.450000px;}
.x8e_c00376{left:235.800000px;}
.x60_c00376{left:236.850000px;}
.x59_c00376{left:238.350000px;}
.x94_c00376{left:242.550000px;}
.x19_c00376{left:244.200000px;}
.x72_c00376{left:246.450000px;}
.x86_c00376{left:248.700000px;}
.x8a_c00376{left:251.100000px;}
.x3a_c00376{left:252.450000px;}
.x13_c00376{left:254.100000px;}
.xa0_c00376{left:255.300000px;}
.x2c_c00376{left:256.800000px;}
.x69_c00376{left:259.050000px;}
.xa5_c00376{left:260.250000px;}
.x54_c00376{left:261.450000px;}
.x1_c00376{left:262.500000px;}
.x83_c00376{left:264.000000px;}
.x1a_c00376{left:265.050000px;}
.x4d_c00376{left:266.850000px;}
.x87_c00376{left:268.200000px;}
.x3f_c00376{left:270.900000px;}
.x7f_c00376{left:273.300000px;}
.x9c_c00376{left:274.500000px;}
.xa1_c00376{left:276.450000px;}
.x65_c00376{left:277.500000px;}
.x8_c00376{left:279.600000px;}
.x5a_c00376{left:282.600000px;}
.x35_c00376{left:284.550000px;}
.x2d_c00376{left:287.100000px;}
.x4e_c00376{left:289.200000px;}
.x74_c00376{left:291.150000px;}
.x31_c00376{left:294.900000px;}
.xd_c00376{left:296.700000px;}
.x25_c00376{left:299.250000px;}
.x14_c00376{left:300.600000px;}
.x55_c00376{left:301.800000px;}
.x91_c00376{left:304.650000px;}
.x3b_c00376{left:305.700000px;}
.x22_c00376{left:307.500000px;}
.x44_c00376{left:309.450000px;}
.x97_c00376{left:311.400000px;}
.x1b_c00376{left:312.600000px;}
.x32_c00376{left:315.450000px;}
.x36_c00376{left:318.000000px;}
.x4f_c00376{left:320.100000px;}
.x2_c00376{left:321.150000px;}
.x8b_c00376{left:322.350000px;}
.x61_c00376{left:324.750000px;}
.x66_c00376{left:325.800000px;}
.x92_c00376{left:327.000000px;}
.x26_c00376{left:329.100000px;}
.x1c_c00376{left:330.600000px;}
.xe_c00376{left:332.700000px;}
.x45_c00376{left:334.650000px;}
.xa3_c00376{left:335.850000px;}
.x84_c00376{left:338.550000px;}
.x2e_c00376{left:339.600000px;}
.x6c_c00376{left:340.950000px;}
.x75_c00376{left:342.150000px;}
.x3c_c00376{left:343.200000px;}
.x76_c00376{left:344.400000px;}
.x8c_c00376{left:345.450000px;}
.x7b_c00376{left:346.950000px;}
.x37_c00376{left:348.300000px;}
.x56_c00376{left:350.700000px;}
.x80_c00376{left:351.750000px;}
.x1d_c00376{left:357.300000px;}
.x15_c00376{left:358.500000px;}
.x8f_c00376{left:359.550000px;}
.x96_c00376{left:362.250000px;}
.x93_c00376{left:364.050000px;}
.x71_c00376{left:365.700000px;}
.x46_c00376{left:367.050000px;}
.x98_c00376{left:369.300000px;}
.x6a_c00376{left:370.350000px;}
.x27_c00376{left:372.000000px;}
.x57_c00376{left:375.150000px;}
.x9_c00376{left:376.200000px;}
.x95_c00376{left:378.000000px;}
.x99_c00376{left:379.350000px;}
.x50_c00376{left:381.000000px;}
.x23_c00376{left:382.350000px;}
.x78_c00376{left:385.050000px;}
.x49_c00376{left:387.150000px;}
.x28_c00376{left:389.250000px;}
.xf_c00376{left:391.350000px;}
.x1e_c00376{left:392.550000px;}
.x9a_c00376{left:395.550000px;}
.x5b_c00376{left:397.950000px;}
.x51_c00376{left:399.000000px;}
.x88_c00376{left:400.350000px;}
.x81_c00376{left:401.850000px;}
.x3d_c00376{left:409.800000px;}
.x14b_c00376{left:429.450000px;}
.x13c_c00376{left:433.500000px;}
.xb3_c00376{left:434.850000px;}
.xf8_c00376{left:439.500000px;}
.xf6_c00376{left:446.850000px;}
.xca_c00376{left:448.650000px;}
.x13a_c00376{left:450.300000px;}
.x124_c00376{left:451.350000px;}
.xa6_c00376{left:452.550000px;}
.xf2_c00376{left:461.850000px;}
.xa7_c00376{left:463.050000px;}
.x13b_c00376{left:468.000000px;}
.x143_c00376{left:469.050000px;}
.xa8_c00376{left:470.550000px;}
.xbb_c00376{left:472.350000px;}
.x13d_c00376{left:474.150000px;}
.x112_c00376{left:475.800000px;}
.x141_c00376{left:477.000000px;}
.xb4_c00376{left:478.350000px;}
.x117_c00376{left:482.550000px;}
.xbc_c00376{left:484.200000px;}
.xdd_c00376{left:485.400000px;}
.xa9_c00376{left:487.050000px;}
.xd5_c00376{left:488.400000px;}
.x11f_c00376{left:489.450000px;}
.x129_c00376{left:490.950000px;}
.x113_c00376{left:492.300000px;}
.x10c_c00376{left:495.000000px;}
.x121_c00376{left:497.700000px;}
.xc2_c00376{left:499.050000px;}
.xcb_c00376{left:500.100000px;}
.xe0_c00376{left:501.750000px;}
.xf9_c00376{left:503.850000px;}
.x137_c00376{left:505.800000px;}
.xde_c00376{left:507.300000px;}
.xaa_c00376{left:508.950000px;}
.x10d_c00376{left:510.750000px;}
.x103_c00376{left:512.550000px;}
.x125_c00376{left:514.050000px;}
.xb0_c00376{left:516.000000px;}
.xfe_c00376{left:518.400000px;}
.x122_c00376{left:522.150000px;}
.x114_c00376{left:523.200000px;}
.xcc_c00376{left:525.300000px;}
.x12a_c00376{left:526.500000px;}
.xed_c00376{left:530.100000px;}
.x12f_c00376{left:532.500000px;}
.x11b_c00376{left:533.700000px;}
.x118_c00376{left:537.600000px;}
.xf7_c00376{left:539.700000px;}
.x148_c00376{left:541.500000px;}
.xb5_c00376{left:544.200000px;}
.xfa_c00376{left:545.850000px;}
.xee_c00376{left:547.350000px;}
.x14a_c00376{left:548.700000px;}
.xd6_c00376{left:551.100000px;}
.x11c_c00376{left:552.450000px;}
.xab_c00376{left:553.650000px;}
.xf3_c00376{left:554.700000px;}
.xbd_c00376{left:555.900000px;}
.x10e_c00376{left:559.350000px;}
.xe1_c00376{left:561.450000px;}
.xf4_c00376{left:562.950000px;}
.xc3_c00376{left:567.450000px;}
.x132_c00376{left:570.000000px;}
.xcd_c00376{left:571.350000px;}
.xd7_c00376{left:572.400000px;}
.xe2_c00376{left:575.850000px;}
.x147_c00376{left:577.050000px;}
.xd8_c00376{left:579.600000px;}
.x127_c00376{left:581.400000px;}
.xe3_c00376{left:583.350000px;}
.x106_c00376{left:584.550000px;}
.xd9_c00376{left:586.800000px;}
.x3_c00376{left:589.050000px;}
.x11d_c00376{left:590.250000px;}
.xb6_c00376{left:591.300000px;}
.x134_c00376{left:594.450000px;}
.xfb_c00376{left:597.150000px;}
.xef_c00376{left:598.800000px;}
.xbe_c00376{left:599.850000px;}
.x109_c00376{left:601.500000px;}
.xfc_c00376{left:604.650000px;}
.x13e_c00376{left:606.300000px;}
.xc4_c00376{left:607.350000px;}
.x130_c00376{left:608.850000px;}
.x144_c00376{left:610.500000px;}
.xe4_c00376{left:612.450000px;}
.x119_c00376{left:614.250000px;}
.xce_c00376{left:615.600000px;}
.xac_c00376{left:616.950000px;}
.xff_c00376{left:618.450000px;}
.x107_c00376{left:620.850000px;}
.xf5_c00376{left:621.900000px;}
.xb7_c00376{left:623.700000px;}
.xc5_c00376{left:625.650000px;}
.xe5_c00376{left:626.850000px;}
.x100_c00376{left:628.200000px;}
.xcf_c00376{left:630.300000px;}
.x13f_c00376{left:631.500000px;}
.x12c_c00376{left:633.000000px;}
.xe6_c00376{left:634.350000px;}
.xbf_c00376{left:635.550000px;}
.x149_c00376{left:638.250000px;}
.xe7_c00376{left:641.550000px;}
.x128_c00376{left:643.650000px;}
.x123_c00376{left:645.300000px;}
.xdf_c00376{left:648.300000px;}
.xb1_c00376{left:649.950000px;}
.xb8_c00376{left:651.450000px;}
.xc0_c00376{left:654.300000px;}
.xf0_c00376{left:656.400000px;}
.x12d_c00376{left:657.900000px;}
.xd0_c00376{left:659.400000px;}
.x131_c00376{left:661.500000px;}
.xfd_c00376{left:662.850000px;}
.x145_c00376{left:664.200000px;}
.xd1_c00376{left:666.300000px;}
.x108_c00376{left:667.650000px;}
.x138_c00376{left:668.700000px;}
.xad_c00376{left:670.200000px;}
.x142_c00376{left:672.150000px;}
.xc6_c00376{left:673.200000px;}
.x133_c00376{left:675.000000px;}
.xe8_c00376{left:678.450000px;}
.xd2_c00376{left:681.150000px;}
.x104_c00376{left:682.350000px;}
.x10f_c00376{left:686.400000px;}
.x10a_c00376{left:687.900000px;}
.xc7_c00376{left:690.450000px;}
.xae_c00376{left:692.850000px;}
.xb9_c00376{left:693.900000px;}
.x11a_c00376{left:694.950000px;}
.x135_c00376{left:696.150000px;}
.xe9_c00376{left:697.950000px;}
.xda_c00376{left:699.000000px;}
.xd3_c00376{left:700.200000px;}
.x11e_c00376{left:703.350000px;}
.x120_c00376{left:705.450000px;}
.x12b_c00376{left:709.350000px;}
.x110_c00376{left:710.550000px;}
.x102_c00376{left:712.050000px;}
.xb2_c00376{left:713.250000px;}
.x115_c00376{left:715.500000px;}
.x126_c00376{left:719.700000px;}
.xc8_c00376{left:721.800000px;}
.xc1_c00376{left:723.450000px;}
.xea_c00376{left:726.000000px;}
.xf1_c00376{left:727.200000px;}
.xdb_c00376{left:728.700000px;}
.xd4_c00376{left:729.750000px;}
.x111_c00376{left:731.850000px;}
.x140_c00376{left:735.900000px;}
.x116_c00376{left:737.100000px;}
.x146_c00376{left:738.300000px;}
.x101_c00376{left:739.500000px;}
.x105_c00376{left:741.750000px;}
.x4_c00376{left:742.800000px;}
.xba_c00376{left:744.000000px;}
.x10b_c00376{left:745.500000px;}
.xaf_c00376{left:748.950000px;}
.xeb_c00376{left:751.200000px;}
.x12e_c00376{left:754.350000px;}
.x136_c00376{left:755.550000px;}
.xc9_c00376{left:756.750000px;}
.xdc_c00376{left:758.250000px;}
.x14c_c00376{left:759.600000px;}
.x139_c00376{left:762.300000px;}
.xec_c00376{left:765.600000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls1_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:62.222222pt;}
.wsf_c00376{word-spacing:-88.888889pt;}
.ws3_c00376{word-spacing:-13.555556pt;}
.ws12_c00376{word-spacing:-11.333333pt;}
.ws5_c00376{word-spacing:-9.707602pt;}
.ws6_c00376{word-spacing:-9.116809pt;}
.ws4_c00376{word-spacing:-8.693928pt;}
.ws13_c00376{word-spacing:-4.966757pt;}
.ws2_c00376{word-spacing:-3.493261pt;}
.ws1_c00376{word-spacing:-0.940708pt;}
.ws14_c00376{word-spacing:0.000000pt;}
.wsd_c00376{word-spacing:25.267760pt;}
.wsa_c00376{word-spacing:26.031746pt;}
.ws9_c00376{word-spacing:31.851852pt;}
.ws11_c00376{word-spacing:35.555556pt;}
.wsc_c00376{word-spacing:39.043257pt;}
.ws7_c00376{word-spacing:39.259259pt;}
.wse_c00376{word-spacing:43.114504pt;}
.ws8_c00376{word-spacing:66.419753pt;}
.ws10_c00376{word-spacing:128.080808pt;}
.wsb_c00376{word-spacing:173.594771pt;}
.ws0_c00376{word-spacing:1223.159159pt;}
._5_c00376{margin-left:-62.222222pt;}
._4_c00376{width:3.703704pt;}
._2_c00376{width:58.098361pt;}
._0_c00376{width:62.222222pt;}
._1_c00376{width:65.925926pt;}
._3_c00376{width:68.376590pt;}
.fs4_c00376{font-size:48.000000pt;}
.fs3_c00376{font-size:53.333333pt;}
.fs1_c00376{font-size:58.666667pt;}
.fs2_c00376{font-size:64.000000pt;}
.fs0_c00376{font-size:69.333333pt;}
.y0_c00376{bottom:0.000000pt;}
.y34_c00376{bottom:179.200000pt;}
.y69_c00376{bottom:181.066667pt;}
.y33_c00376{bottom:195.466667pt;}
.y68_c00376{bottom:203.866667pt;}
.y32_c00376{bottom:211.200000pt;}
.y67_c00376{bottom:220.000000pt;}
.y31_c00376{bottom:231.066667pt;}
.y66_c00376{bottom:236.000000pt;}
.y65_c00376{bottom:251.733333pt;}
.y30_c00376{bottom:258.800000pt;}
.y64_c00376{bottom:267.733333pt;}
.y2f_c00376{bottom:274.800000pt;}
.y63_c00376{bottom:283.466667pt;}
.y2e_c00376{bottom:290.533333pt;}
.y62_c00376{bottom:303.333333pt;}
.y2d_c00376{bottom:306.266667pt;}
.y2c_c00376{bottom:322.266667pt;}
.y61_c00376{bottom:330.266667pt;}
.y2b_c00376{bottom:341.600000pt;}
.y60_c00376{bottom:346.533333pt;}
.y2a_c00376{bottom:357.333333pt;}
.y5f_c00376{bottom:362.266667pt;}
.y29_c00376{bottom:373.333333pt;}
.y5e_c00376{bottom:377.866667pt;}
.y28_c00376{bottom:389.066667pt;}
.y5d_c00376{bottom:400.533333pt;}
.y27_c00376{bottom:404.800000pt;}
.y5c_c00376{bottom:416.533333pt;}
.y26_c00376{bottom:420.533333pt;}
.y5b_c00376{bottom:432.533333pt;}
.y25_c00376{bottom:436.533333pt;}
.y5a_c00376{bottom:448.533333pt;}
.y24_c00376{bottom:455.733333pt;}
.y59_c00376{bottom:464.266667pt;}
.y23_c00376{bottom:471.733333pt;}
.y58_c00376{bottom:480.533333pt;}
.y22_c00376{bottom:487.733333pt;}
.y57_c00376{bottom:496.266667pt;}
.y21_c00376{bottom:503.733333pt;}
.y56_c00376{bottom:512.266667pt;}
.y20_c00376{bottom:519.733333pt;}
.y55_c00376{bottom:528.266667pt;}
.y1f_c00376{bottom:539.200000pt;}
.y54_c00376{bottom:544.266667pt;}
.y1e_c00376{bottom:558.133333pt;}
.y53_c00376{bottom:560.000000pt;}
.y1d_c00376{bottom:571.200000pt;}
.y52_c00376{bottom:579.200000pt;}
.y1c_c00376{bottom:586.933333pt;}
.y51_c00376{bottom:595.200000pt;}
.y1b_c00376{bottom:602.666667pt;}
.y50_c00376{bottom:610.933333pt;}
.y1a_c00376{bottom:618.400000pt;}
.y4f_c00376{bottom:628.266667pt;}
.y19_c00376{bottom:634.400000pt;}
.y4e_c00376{bottom:642.666667pt;}
.y18_c00376{bottom:650.400000pt;}
.y4d_c00376{bottom:658.666667pt;}
.y17_c00376{bottom:666.133333pt;}
.y35_c00376{bottom:666.266667pt;}
.y4c_c00376{bottom:674.400000pt;}
.y16_c00376{bottom:681.866667pt;}
.y4b_c00376{bottom:690.400000pt;}
.y15_c00376{bottom:697.866667pt;}
.y4a_c00376{bottom:706.133333pt;}
.y14_c00376{bottom:713.866667pt;}
.y49_c00376{bottom:722.133333pt;}
.y13_c00376{bottom:729.866667pt;}
.y48_c00376{bottom:737.866667pt;}
.y12_c00376{bottom:744.933333pt;}
.y47_c00376{bottom:753.866667pt;}
.y11_c00376{bottom:760.933333pt;}
.y46_c00376{bottom:769.600000pt;}
.y10_c00376{bottom:776.933333pt;}
.y45_c00376{bottom:792.000000pt;}
.yf_c00376{bottom:792.933333pt;}
.y44_c00376{bottom:804.533333pt;}
.ye_c00376{bottom:808.666667pt;}
.y43_c00376{bottom:817.333333pt;}
.yd_c00376{bottom:824.666667pt;}
.y42_c00376{bottom:830.400000pt;}
.y41_c00376{bottom:842.933333pt;}
.yc_c00376{bottom:843.733333pt;}
.y40_c00376{bottom:855.466667pt;}
.yb_c00376{bottom:860.000000pt;}
.y3f_c00376{bottom:868.533333pt;}
.ya_c00376{bottom:875.733333pt;}
.y3e_c00376{bottom:881.066667pt;}
.y9_c00376{bottom:891.733333pt;}
.y3d_c00376{bottom:894.133333pt;}
.y3c_c00376{bottom:906.666667pt;}
.y8_c00376{bottom:907.733333pt;}
.y3b_c00376{bottom:919.733333pt;}
.y7_c00376{bottom:923.066667pt;}
.y3a_c00376{bottom:933.466667pt;}
.y6_c00376{bottom:939.066667pt;}
.y39_c00376{bottom:950.400000pt;}
.y5_c00376{bottom:954.800000pt;}
.y38_c00376{bottom:966.400000pt;}
.y4_c00376{bottom:970.800000pt;}
.y37_c00376{bottom:985.600000pt;}
.y3_c00376{bottom:986.800000pt;}
.y36_c00376{bottom:1001.600000pt;}
.y2_c00376{bottom:1002.533333pt;}
.y1_c00376{bottom:1025.866667pt;}
.h6_c00376{height:48.000000pt;}
.h5_c00376{height:53.333333pt;}
.h3_c00376{height:58.666667pt;}
.h4_c00376{height:64.000000pt;}
.h2_c00376{height:69.333333pt;}
.h0_c00376{height:1135.040039pt;}
.h1_c00376{height:1135.333333pt;}
.w0_c00376{width:853.760009pt;}
.w1_c00376{width:854.000000pt;}
.x0_c00376{left:0.000000pt;}
.x8d_c00376{left:66.933333pt;}
.x40_c00376{left:67.866667pt;}
.xa4_c00376{left:81.333333pt;}
.x6f_c00376{left:82.400000pt;}
.x52_c00376{left:84.000000pt;}
.x5_c00376{left:85.066667pt;}
.x7c_c00376{left:98.533333pt;}
.x16_c00376{left:100.133333pt;}
.x6b_c00376{left:102.000000pt;}
.x33_c00376{left:103.466667pt;}
.x79_c00376{left:104.533333pt;}
.x9e_c00376{left:106.266667pt;}
.x9d_c00376{left:107.733333pt;}
.x6d_c00376{left:112.666667pt;}
.x73_c00376{left:114.266667pt;}
.x4a_c00376{left:115.333333pt;}
.x1f_c00376{left:117.466667pt;}
.x24_c00376{left:119.066667pt;}
.x62_c00376{left:120.266667pt;}
.x10_c00376{left:121.600000pt;}
.x41_c00376{left:122.533333pt;}
.x47_c00376{left:124.133333pt;}
.x5c_c00376{left:127.066667pt;}
.x38_c00376{left:128.400000pt;}
.x6_c00376{left:132.400000pt;}
.x4b_c00376{left:134.533333pt;}
.x5d_c00376{left:135.733333pt;}
.x90_c00376{left:136.800000pt;}
.x11_c00376{left:139.466667pt;}
.x89_c00376{left:140.666667pt;}
.x2f_c00376{left:142.533333pt;}
.x29_c00376{left:144.133333pt;}
.x34_c00376{left:145.333333pt;}
.x9b_c00376{left:146.400000pt;}
.x70_c00376{left:148.666667pt;}
.x7d_c00376{left:150.000000pt;}
.x39_c00376{left:151.066667pt;}
.xa_c00376{left:153.600000pt;}
.x48_c00376{left:154.533333pt;}
.x7a_c00376{left:156.400000pt;}
.x67_c00376{left:158.266667pt;}
.x7e_c00376{left:160.266667pt;}
.x17_c00376{left:161.333333pt;}
.x6e_c00376{left:163.866667pt;}
.x20_c00376{left:167.066667pt;}
.x53_c00376{left:170.000000pt;}
.x63_c00376{left:171.066667pt;}
.x68_c00376{left:172.400000pt;}
.x2a_c00376{left:173.866667pt;}
.x18_c00376{left:175.733333pt;}
.x4c_c00376{left:177.066667pt;}
.xb_c00376{left:179.200000pt;}
.x7_c00376{left:181.066667pt;}
.x42_c00376{left:182.266667pt;}
.x5e_c00376{left:183.333333pt;}
.xa2_c00376{left:185.333333pt;}
.x82_c00376{left:186.933333pt;}
.x85_c00376{left:188.133333pt;}
.x64_c00376{left:191.200000pt;}
.x2b_c00376{left:192.133333pt;}
.x3e_c00376{left:193.466667pt;}
.x5f_c00376{left:194.800000pt;}
.x58_c00376{left:196.133333pt;}
.x30_c00376{left:199.066667pt;}
.x12_c00376{left:200.933333pt;}
.xc_c00376{left:202.266667pt;}
.x43_c00376{left:203.733333pt;}
.x9f_c00376{left:204.800000pt;}
.x77_c00376{left:206.000000pt;}
.x21_c00376{left:208.400000pt;}
.x8e_c00376{left:209.600000pt;}
.x60_c00376{left:210.533333pt;}
.x59_c00376{left:211.866667pt;}
.x94_c00376{left:215.600000pt;}
.x19_c00376{left:217.066667pt;}
.x72_c00376{left:219.066667pt;}
.x86_c00376{left:221.066667pt;}
.x8a_c00376{left:223.200000pt;}
.x3a_c00376{left:224.400000pt;}
.x13_c00376{left:225.866667pt;}
.xa0_c00376{left:226.933333pt;}
.x2c_c00376{left:228.266667pt;}
.x69_c00376{left:230.266667pt;}
.xa5_c00376{left:231.333333pt;}
.x54_c00376{left:232.400000pt;}
.x1_c00376{left:233.333333pt;}
.x83_c00376{left:234.666667pt;}
.x1a_c00376{left:235.600000pt;}
.x4d_c00376{left:237.200000pt;}
.x87_c00376{left:238.400000pt;}
.x3f_c00376{left:240.800000pt;}
.x7f_c00376{left:242.933333pt;}
.x9c_c00376{left:244.000000pt;}
.xa1_c00376{left:245.733333pt;}
.x65_c00376{left:246.666667pt;}
.x8_c00376{left:248.533333pt;}
.x5a_c00376{left:251.200000pt;}
.x35_c00376{left:252.933333pt;}
.x2d_c00376{left:255.200000pt;}
.x4e_c00376{left:257.066667pt;}
.x74_c00376{left:258.800000pt;}
.x31_c00376{left:262.133333pt;}
.xd_c00376{left:263.733333pt;}
.x25_c00376{left:266.000000pt;}
.x14_c00376{left:267.200000pt;}
.x55_c00376{left:268.266667pt;}
.x91_c00376{left:270.800000pt;}
.x3b_c00376{left:271.733333pt;}
.x22_c00376{left:273.333333pt;}
.x44_c00376{left:275.066667pt;}
.x97_c00376{left:276.800000pt;}
.x1b_c00376{left:277.866667pt;}
.x32_c00376{left:280.400000pt;}
.x36_c00376{left:282.666667pt;}
.x4f_c00376{left:284.533333pt;}
.x2_c00376{left:285.466667pt;}
.x8b_c00376{left:286.533333pt;}
.x61_c00376{left:288.666667pt;}
.x66_c00376{left:289.600000pt;}
.x92_c00376{left:290.666667pt;}
.x26_c00376{left:292.533333pt;}
.x1c_c00376{left:293.866667pt;}
.xe_c00376{left:295.733333pt;}
.x45_c00376{left:297.466667pt;}
.xa3_c00376{left:298.533333pt;}
.x84_c00376{left:300.933333pt;}
.x2e_c00376{left:301.866667pt;}
.x6c_c00376{left:303.066667pt;}
.x75_c00376{left:304.133333pt;}
.x3c_c00376{left:305.066667pt;}
.x76_c00376{left:306.133333pt;}
.x8c_c00376{left:307.066667pt;}
.x7b_c00376{left:308.400000pt;}
.x37_c00376{left:309.600000pt;}
.x56_c00376{left:311.733333pt;}
.x80_c00376{left:312.666667pt;}
.x1d_c00376{left:317.600000pt;}
.x15_c00376{left:318.666667pt;}
.x8f_c00376{left:319.600000pt;}
.x96_c00376{left:322.000000pt;}
.x93_c00376{left:323.600000pt;}
.x71_c00376{left:325.066667pt;}
.x46_c00376{left:326.266667pt;}
.x98_c00376{left:328.266667pt;}
.x6a_c00376{left:329.200000pt;}
.x27_c00376{left:330.666667pt;}
.x57_c00376{left:333.466667pt;}
.x9_c00376{left:334.400000pt;}
.x95_c00376{left:336.000000pt;}
.x99_c00376{left:337.200000pt;}
.x50_c00376{left:338.666667pt;}
.x23_c00376{left:339.866667pt;}
.x78_c00376{left:342.266667pt;}
.x49_c00376{left:344.133333pt;}
.x28_c00376{left:346.000000pt;}
.xf_c00376{left:347.866667pt;}
.x1e_c00376{left:348.933333pt;}
.x9a_c00376{left:351.600000pt;}
.x5b_c00376{left:353.733333pt;}
.x51_c00376{left:354.666667pt;}
.x88_c00376{left:355.866667pt;}
.x81_c00376{left:357.200000pt;}
.x3d_c00376{left:364.266667pt;}
.x14b_c00376{left:381.733333pt;}
.x13c_c00376{left:385.333333pt;}
.xb3_c00376{left:386.533333pt;}
.xf8_c00376{left:390.666667pt;}
.xf6_c00376{left:397.200000pt;}
.xca_c00376{left:398.800000pt;}
.x13a_c00376{left:400.266667pt;}
.x124_c00376{left:401.200000pt;}
.xa6_c00376{left:402.266667pt;}
.xf2_c00376{left:410.533333pt;}
.xa7_c00376{left:411.600000pt;}
.x13b_c00376{left:416.000000pt;}
.x143_c00376{left:416.933333pt;}
.xa8_c00376{left:418.266667pt;}
.xbb_c00376{left:419.866667pt;}
.x13d_c00376{left:421.466667pt;}
.x112_c00376{left:422.933333pt;}
.x141_c00376{left:424.000000pt;}
.xb4_c00376{left:425.200000pt;}
.x117_c00376{left:428.933333pt;}
.xbc_c00376{left:430.400000pt;}
.xdd_c00376{left:431.466667pt;}
.xa9_c00376{left:432.933333pt;}
.xd5_c00376{left:434.133333pt;}
.x11f_c00376{left:435.066667pt;}
.x129_c00376{left:436.400000pt;}
.x113_c00376{left:437.600000pt;}
.x10c_c00376{left:440.000000pt;}
.x121_c00376{left:442.400000pt;}
.xc2_c00376{left:443.600000pt;}
.xcb_c00376{left:444.533333pt;}
.xe0_c00376{left:446.000000pt;}
.xf9_c00376{left:447.866667pt;}
.x137_c00376{left:449.600000pt;}
.xde_c00376{left:450.933333pt;}
.xaa_c00376{left:452.400000pt;}
.x10d_c00376{left:454.000000pt;}
.x103_c00376{left:455.600000pt;}
.x125_c00376{left:456.933333pt;}
.xb0_c00376{left:458.666667pt;}
.xfe_c00376{left:460.800000pt;}
.x122_c00376{left:464.133333pt;}
.x114_c00376{left:465.066667pt;}
.xcc_c00376{left:466.933333pt;}
.x12a_c00376{left:468.000000pt;}
.xed_c00376{left:471.200000pt;}
.x12f_c00376{left:473.333333pt;}
.x11b_c00376{left:474.400000pt;}
.x118_c00376{left:477.866667pt;}
.xf7_c00376{left:479.733333pt;}
.x148_c00376{left:481.333333pt;}
.xb5_c00376{left:483.733333pt;}
.xfa_c00376{left:485.200000pt;}
.xee_c00376{left:486.533333pt;}
.x14a_c00376{left:487.733333pt;}
.xd6_c00376{left:489.866667pt;}
.x11c_c00376{left:491.066667pt;}
.xab_c00376{left:492.133333pt;}
.xf3_c00376{left:493.066667pt;}
.xbd_c00376{left:494.133333pt;}
.x10e_c00376{left:497.200000pt;}
.xe1_c00376{left:499.066667pt;}
.xf4_c00376{left:500.400000pt;}
.xc3_c00376{left:504.400000pt;}
.x132_c00376{left:506.666667pt;}
.xcd_c00376{left:507.866667pt;}
.xd7_c00376{left:508.800000pt;}
.xe2_c00376{left:511.866667pt;}
.x147_c00376{left:512.933333pt;}
.xd8_c00376{left:515.200000pt;}
.x127_c00376{left:516.800000pt;}
.xe3_c00376{left:518.533333pt;}
.x106_c00376{left:519.600000pt;}
.xd9_c00376{left:521.600000pt;}
.x3_c00376{left:523.600000pt;}
.x11d_c00376{left:524.666667pt;}
.xb6_c00376{left:525.600000pt;}
.x134_c00376{left:528.400000pt;}
.xfb_c00376{left:530.800000pt;}
.xef_c00376{left:532.266667pt;}
.xbe_c00376{left:533.200000pt;}
.x109_c00376{left:534.666667pt;}
.xfc_c00376{left:537.466667pt;}
.x13e_c00376{left:538.933333pt;}
.xc4_c00376{left:539.866667pt;}
.x130_c00376{left:541.200000pt;}
.x144_c00376{left:542.666667pt;}
.xe4_c00376{left:544.400000pt;}
.x119_c00376{left:546.000000pt;}
.xce_c00376{left:547.200000pt;}
.xac_c00376{left:548.400000pt;}
.xff_c00376{left:549.733333pt;}
.x107_c00376{left:551.866667pt;}
.xf5_c00376{left:552.800000pt;}
.xb7_c00376{left:554.400000pt;}
.xc5_c00376{left:556.133333pt;}
.xe5_c00376{left:557.200000pt;}
.x100_c00376{left:558.400000pt;}
.xcf_c00376{left:560.266667pt;}
.x13f_c00376{left:561.333333pt;}
.x12c_c00376{left:562.666667pt;}
.xe6_c00376{left:563.866667pt;}
.xbf_c00376{left:564.933333pt;}
.x149_c00376{left:567.333333pt;}
.xe7_c00376{left:570.266667pt;}
.x128_c00376{left:572.133333pt;}
.x123_c00376{left:573.600000pt;}
.xdf_c00376{left:576.266667pt;}
.xb1_c00376{left:577.733333pt;}
.xb8_c00376{left:579.066667pt;}
.xc0_c00376{left:581.600000pt;}
.xf0_c00376{left:583.466667pt;}
.x12d_c00376{left:584.800000pt;}
.xd0_c00376{left:586.133333pt;}
.x131_c00376{left:588.000000pt;}
.xfd_c00376{left:589.200000pt;}
.x145_c00376{left:590.400000pt;}
.xd1_c00376{left:592.266667pt;}
.x108_c00376{left:593.466667pt;}
.x138_c00376{left:594.400000pt;}
.xad_c00376{left:595.733333pt;}
.x142_c00376{left:597.466667pt;}
.xc6_c00376{left:598.400000pt;}
.x133_c00376{left:600.000000pt;}
.xe8_c00376{left:603.066667pt;}
.xd2_c00376{left:605.466667pt;}
.x104_c00376{left:606.533333pt;}
.x10f_c00376{left:610.133333pt;}
.x10a_c00376{left:611.466667pt;}
.xc7_c00376{left:613.733333pt;}
.xae_c00376{left:615.866667pt;}
.xb9_c00376{left:616.800000pt;}
.x11a_c00376{left:617.733333pt;}
.x135_c00376{left:618.800000pt;}
.xe9_c00376{left:620.400000pt;}
.xda_c00376{left:621.333333pt;}
.xd3_c00376{left:622.400000pt;}
.x11e_c00376{left:625.200000pt;}
.x120_c00376{left:627.066667pt;}
.x12b_c00376{left:630.533333pt;}
.x110_c00376{left:631.600000pt;}
.x102_c00376{left:632.933333pt;}
.xb2_c00376{left:634.000000pt;}
.x115_c00376{left:636.000000pt;}
.x126_c00376{left:639.733333pt;}
.xc8_c00376{left:641.600000pt;}
.xc1_c00376{left:643.066667pt;}
.xea_c00376{left:645.333333pt;}
.xf1_c00376{left:646.400000pt;}
.xdb_c00376{left:647.733333pt;}
.xd4_c00376{left:648.666667pt;}
.x111_c00376{left:650.533333pt;}
.x140_c00376{left:654.133333pt;}
.x116_c00376{left:655.200000pt;}
.x146_c00376{left:656.266667pt;}
.x101_c00376{left:657.333333pt;}
.x105_c00376{left:659.333333pt;}
.x4_c00376{left:660.266667pt;}
.xba_c00376{left:661.333333pt;}
.x10b_c00376{left:662.666667pt;}
.xaf_c00376{left:665.733333pt;}
.xeb_c00376{left:667.733333pt;}
.x12e_c00376{left:670.533333pt;}
.x136_c00376{left:671.600000pt;}
.xc9_c00376{left:672.666667pt;}
.xdc_c00376{left:674.000000pt;}
.x14c_c00376{left:675.200000pt;}
.x139_c00376{left:677.600000pt;}
.xec_c00376{left:680.533333pt;}
}





/* 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_c00377 {
    display:none;
  }
  .loading-indicator_c00377.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00377 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_c00377 { 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_c00377" -> "#page-container .classname_c00377")
 */
.pf_c00377 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00377 { /* 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_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00377 { /* 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_c00377 { /* 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_c00377 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00377 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00377 {overflow:visible;}
  }
}
.c_c00377 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00377 { /* 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_c00377:after { /* webkit #35443 */
  content: '';
}
.t_c00377:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00377 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 */
}
.__c00377 { /* 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_c00377 { /* info for Javascript */
  display:none;
}
.l_c00377 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00377 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00377 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00377: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_c00377 {
    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_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00377.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_c00377 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00377;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.000000;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;}
.mbc_c00377{transform:matrix(0.021250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021250,0.000000,0.000000,0.250000,0,0);}
.mb_c00377{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00377{transform:matrix(0.028250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028250,0.000000,0.000000,0.250000,0,0);}
.m80_c00377{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m116_c00377{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mce_c00377{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m115_c00377{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.md9_c00377{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m31_c00377{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m23_c00377{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m30_c00377{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m24_c00377{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00377{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00377{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m47_c00377{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00377{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mca_c00377{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m32_c00377{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00377{transform:matrix(0.107000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107000,0.000000,0.000000,0.250000,0,0);}
.m43_c00377{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00377{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m26_c00377{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00377{transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00377{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m98_c00377{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00377{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m33_c00377{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00377{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m48_c00377{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m34_c00377{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m7_c00377{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m40_c00377{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00377{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m70_c00377{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00377{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m71_c00377{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.md0_c00377{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00377{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00377{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m60_c00377{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00377{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00377{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00377{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mff_c00377{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m87_c00377{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m106_c00377{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m4_c00377{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m104_c00377{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m89_c00377{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m61_c00377{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m25_c00377{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m74_c00377{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00377{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00377{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00377{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00377{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00377{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m69_c00377{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me_c00377{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00377{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00377{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m17_c00377{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00377{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m63_c00377{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00377{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00377{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m97_c00377{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m95_c00377{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m12_c00377{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m113_c00377{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00377{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m53_c00377{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mba_c00377{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m13_c00377{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m94_c00377{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m68_c00377{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.maf_c00377{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md6_c00377{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00377{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00377{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00377{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00377{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m6_c00377{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mee_c00377{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00377{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m76_c00377{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me5_c00377{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m57_c00377{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m83_c00377{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m85_c00377{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00377{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m67_c00377{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m39_c00377{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00377{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.md8_c00377{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00377{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00377{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m112_c00377{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m29_c00377{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m84_c00377{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00377{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00377{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00377{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m75_c00377{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mef_c00377{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3_c00377{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00377{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00377{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.med_c00377{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00377{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m41_c00377{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9_c00377{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00377{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m14_c00377{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00377{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m62_c00377{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8_c00377{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md1_c00377{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00377{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.md7_c00377{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m100_c00377{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m64_c00377{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m78_c00377{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00377{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m96_c00377{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m44_c00377{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m73_c00377{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m15_c00377{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5_c00377{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00377{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m91_c00377{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00377{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m21_c00377{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m92_c00377{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m88_c00377{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m90_c00377{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mda_c00377{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m16_c00377{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00377{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m45_c00377{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m37_c00377{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m81_c00377{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m99_c00377{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m72_c00377{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00377{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m93_c00377{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md5_c00377{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00377{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m110_c00377{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mea_c00377{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m79_c00377{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m59_c00377{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me9_c00377{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m66_c00377{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m20_c00377{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m52_c00377{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m38_c00377{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m51_c00377{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m42_c00377{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00377{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00377{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md3_c00377{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m101_c00377{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00377{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00377{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m56_c00377{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00377{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m50_c00377{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m27_c00377{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m77_c00377{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00377{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00377{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00377{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m54_c00377{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00377{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me8_c00377{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me7_c00377{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00377{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m58_c00377{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00377{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00377{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00377{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m10_c00377{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00377{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00377{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00377{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00377{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00377{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00377{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me6_c00377{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md4_c00377{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00377{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m36_c00377{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.meb_c00377{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00377{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00377{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00377{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m65_c00377{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mde_c00377{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00377{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00377{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00377{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00377{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m46_c00377{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00377{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00377{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00377{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mec_c00377{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00377{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m105_c00377{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.me0_c00377{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m102_c00377{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m18_c00377{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m82_c00377{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf_c00377{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00377{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00377{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md_c00377{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md2_c00377{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m22_c00377{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m55_c00377{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mad_c00377{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m86_c00377{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m114_c00377{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00377{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me2_c00377{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00377{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mae_c00377{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00377{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m28_c00377{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me3_c00377{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00377{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00377{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m19_c00377{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00377{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m107_c00377{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m109_c00377{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00377{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00377{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00377{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me1_c00377{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00377{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m111_c00377{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00377{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00377{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00377{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.maa_c00377{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00377{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mc_c00377{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00377{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m49_c00377{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m35_c00377{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00377{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00377{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m108_c00377{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mac_c00377{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00377{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00377{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00377{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00377{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m103_c00377{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00377{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00377{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00377{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me4_c00377{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00377{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mab_c00377{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00377{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00377{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00377{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00377{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00377{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00377{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{transform:matrix(0.481750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00377{transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls0_c00377{letter-spacing:0.000000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{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__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00377{word-spacing:-9.250000px;}
.wsc_c00377{word-spacing:-5.294118px;}
.ws5_c00377{word-spacing:-3.894231px;}
.wsd_c00377{word-spacing:0.000000px;}
.ws9_c00377{word-spacing:5.967655px;}
.ws2_c00377{word-spacing:8.026316px;}
.ws1_c00377{word-spacing:9.038462px;}
.ws7_c00377{word-spacing:15.000000px;}
.ws4_c00377{word-spacing:23.211796px;}
.ws6_c00377{word-spacing:25.714286px;}
.ws3_c00377{word-spacing:32.250000px;}
.ws0_c00377{word-spacing:40.000000px;}
.ws8_c00377{word-spacing:140.000000px;}
.wsa_c00377{word-spacing:229.675325px;}
._2_c00377{width:59.285714px;}
._1_c00377{width:63.000000px;}
._0_c00377{width:66.750000px;}
.fc0_c00377{color:transparent;}
.fs4_c00377{font-size:30.000000px;}
.fs7_c00377{font-size:48.000000px;}
.fs3_c00377{font-size:54.000000px;}
.fs2_c00377{font-size:60.000000px;}
.fs1_c00377{font-size:66.000000px;}
.fs5_c00377{font-size:72.000000px;}
.fs0_c00377{font-size:84.000000px;}
.fs6_c00377{font-size:102.000000px;}
.y0_c00377{bottom:0.000000px;}
.y6e_c00377{bottom:198.750000px;}
.y39_c00377{bottom:201.300000px;}
.y6d_c00377{bottom:214.950000px;}
.y38_c00377{bottom:219.600000px;}
.y6c_c00377{bottom:227.700000px;}
.y37_c00377{bottom:236.850000px;}
.y6b_c00377{bottom:242.100000px;}
.y36_c00377{bottom:254.100000px;}
.y6a_c00377{bottom:256.500000px;}
.y69_c00377{bottom:271.200000px;}
.y35_c00377{bottom:271.800000px;}
.y68_c00377{bottom:285.600000px;}
.y34_c00377{bottom:289.500000px;}
.y67_c00377{bottom:299.700000px;}
.y66_c00377{bottom:314.100000px;}
.y33_c00377{bottom:316.200000px;}
.y65_c00377{bottom:328.200000px;}
.y32_c00377{bottom:338.100000px;}
.y64_c00377{bottom:342.300000px;}
.y31_c00377{bottom:356.100000px;}
.y63_c00377{bottom:356.700000px;}
.y62_c00377{bottom:371.100000px;}
.y30_c00377{bottom:373.200000px;}
.y61_c00377{bottom:385.800000px;}
.y2f_c00377{bottom:391.200000px;}
.y60_c00377{bottom:399.900000px;}
.y2e_c00377{bottom:409.200000px;}
.y5f_c00377{bottom:414.300000px;}
.y2d_c00377{bottom:427.200000px;}
.y5e_c00377{bottom:428.700000px;}
.y5d_c00377{bottom:443.100000px;}
.y2c_c00377{bottom:445.200000px;}
.y5c_c00377{bottom:457.800000px;}
.y2b_c00377{bottom:462.900000px;}
.y5b_c00377{bottom:471.900000px;}
.y2a_c00377{bottom:480.900000px;}
.y5a_c00377{bottom:486.300000px;}
.y29_c00377{bottom:498.600000px;}
.y59_c00377{bottom:500.400000px;}
.y58_c00377{bottom:514.800000px;}
.y28_c00377{bottom:516.300000px;}
.y57_c00377{bottom:528.900000px;}
.y27_c00377{bottom:534.300000px;}
.y56_c00377{bottom:543.600000px;}
.y26_c00377{bottom:552.000000px;}
.y55_c00377{bottom:558.000000px;}
.y25_c00377{bottom:570.000000px;}
.y24_c00377{bottom:587.700000px;}
.y23_c00377{bottom:605.700000px;}
.y54_c00377{bottom:609.150000px;}
.y22_c00377{bottom:623.400000px;}
.y53_c00377{bottom:631.800000px;}
.y21_c00377{bottom:641.400000px;}
.y52_c00377{bottom:653.550000px;}
.y20_c00377{bottom:659.100000px;}
.y51_c00377{bottom:672.300000px;}
.y1f_c00377{bottom:680.850000px;}
.y50_c00377{bottom:690.300000px;}
.y1e_c00377{bottom:699.150000px;}
.y4f_c00377{bottom:708.300000px;}
.y1d_c00377{bottom:717.150000px;}
.y4e_c00377{bottom:726.300000px;}
.y1c_c00377{bottom:735.150000px;}
.y4d_c00377{bottom:744.000000px;}
.y1b_c00377{bottom:752.850000px;}
.y4c_c00377{bottom:762.000000px;}
.y1a_c00377{bottom:770.850000px;}
.y4b_c00377{bottom:779.700000px;}
.y19_c00377{bottom:788.850000px;}
.y4a_c00377{bottom:797.700000px;}
.y18_c00377{bottom:806.550000px;}
.y49_c00377{bottom:823.350000px;}
.y17_c00377{bottom:824.250000px;}
.y16_c00377{bottom:842.250000px;}
.y48_c00377{bottom:842.400000px;}
.y15_c00377{bottom:859.950000px;}
.y47_c00377{bottom:860.100000px;}
.y14_c00377{bottom:877.650000px;}
.y46_c00377{bottom:878.400000px;}
.y45_c00377{bottom:887.100000px;}
.y43_c00377{bottom:894.300000px;}
.y44_c00377{bottom:894.600000px;}
.y12_c00377{bottom:902.850000px;}
.y42_c00377{bottom:915.450000px;}
.y11_c00377{bottom:915.750000px;}
.y10_c00377{bottom:932.700000px;}
.y13_c00377{bottom:936.750000px;}
.yf_c00377{bottom:944.700000px;}
.y41_c00377{bottom:946.050000px;}
.ye_c00377{bottom:961.200000px;}
.y40_c00377{bottom:967.950000px;}
.yd_c00377{bottom:973.500000px;}
.yc_c00377{bottom:990.000000px;}
.y3f_c00377{bottom:990.300000px;}
.yb_c00377{bottom:1002.300000px;}
.y3e_c00377{bottom:1011.900000px;}
.ya_c00377{bottom:1018.500000px;}
.y3d_c00377{bottom:1029.900000px;}
.y9_c00377{bottom:1032.900000px;}
.y8_c00377{bottom:1045.050000px;}
.y7_c00377{bottom:1061.250000px;}
.y3c_c00377{bottom:1069.950000px;}
.y6_c00377{bottom:1074.300000px;}
.y5_c00377{bottom:1090.800000px;}
.y4_c00377{bottom:1107.300000px;}
.y3b_c00377{bottom:1109.850000px;}
.y3_c00377{bottom:1126.800000px;}
.y3a_c00377{bottom:1127.550000px;}
.y1_c00377{bottom:1147.650000px;}
.y2_c00377{bottom:1153.350000px;}
.h6_c00377{height:30.000000px;}
.h9_c00377{height:48.000000px;}
.h5_c00377{height:54.000000px;}
.h4_c00377{height:60.000000px;}
.h3_c00377{height:66.000000px;}
.h7_c00377{height:72.000000px;}
.h2_c00377{height:84.000000px;}
.h8_c00377{height:102.000000px;}
.h0_c00377{height:1271.879975px;}
.h1_c00377{height:1272.000000px;}
.w0_c00377{width:960.480010px;}
.w1_c00377{width:960.750000px;}
.x0_c00377{left:0.000000px;}
.x1_c00377{left:198.300000px;}
.x76_c00377{left:199.500000px;}
.xd_c00377{left:200.850000px;}
.x7a_c00377{left:208.650000px;}
.x15_c00377{left:214.350000px;}
.x25_c00377{left:215.700000px;}
.x55_c00377{left:217.650000px;}
.x3_c00377{left:218.850000px;}
.x1f_c00377{left:230.250000px;}
.x50_c00377{left:234.750000px;}
.x9b_c00377{left:236.850000px;}
.x4_c00377{left:237.900000px;}
.x92_c00377{left:239.850000px;}
.x56_c00377{left:242.100000px;}
.x94_c00377{left:245.700000px;}
.x83_c00377{left:246.750000px;}
.x43_c00377{left:249.000000px;}
.x39_c00377{left:251.550000px;}
.x16_c00377{left:252.900000px;}
.x66_c00377{left:254.850000px;}
.x2e_c00377{left:256.800000px;}
.x73_c00377{left:258.900000px;}
.x9c_c00377{left:259.950000px;}
.x26_c00377{left:264.000000px;}
.x6f_c00377{left:265.800000px;}
.x7d_c00377{left:267.900000px;}
.xe_c00377{left:269.250000px;}
.x34_c00377{left:270.300000px;}
.x20_c00377{left:271.350000px;}
.x8b_c00377{left:272.400000px;}
.x3f_c00377{left:274.350000px;}
.x74_c00377{left:277.200000px;}
.x5_c00377{left:278.250000px;}
.x8d_c00377{left:279.600000px;}
.x96_c00377{left:281.100000px;}
.x86_c00377{left:282.300000px;}
.x3a_c00377{left:283.350000px;}
.x35_c00377{left:284.400000px;}
.x21_c00377{left:285.750000px;}
.x84_c00377{left:287.850000px;}
.x40_c00377{left:289.050000px;}
.x8c_c00377{left:290.100000px;}
.x51_c00377{left:293.550000px;}
.x7f_c00377{left:297.300000px;}
.x61_c00377{left:299.700000px;}
.x95_c00377{left:301.200000px;}
.x17_c00377{left:303.000000px;}
.x5c_c00377{left:304.650000px;}
.x9d_c00377{left:305.700000px;}
.x9a_c00377{left:307.500000px;}
.x2f_c00377{left:309.000000px;}
.xa0_c00377{left:310.200000px;}
.x27_c00377{left:311.550000px;}
.x75_c00377{left:312.900000px;}
.x8f_c00377{left:318.900000px;}
.x67_c00377{left:320.400000px;}
.x22_c00377{left:321.750000px;}
.x36_c00377{left:324.000000px;}
.x28_c00377{left:325.650000px;}
.x6_c00377{left:327.150000px;}
.x6c_c00377{left:328.650000px;}
.x3b_c00377{left:330.450000px;}
.xf_c00377{left:332.550000px;}
.x62_c00377{left:334.950000px;}
.x44_c00377{left:336.150000px;}
.x7b_c00377{left:339.300000px;}
.x59_c00377{left:341.250000px;}
.x5d_c00377{left:342.450000px;}
.x70_c00377{left:343.500000px;}
.x97_c00377{left:345.600000px;}
.x6d_c00377{left:346.650000px;}
.x9e_c00377{left:348.450000px;}
.x18_c00377{left:349.500000px;}
.x2c_c00377{left:350.700000px;}
.x41_c00377{left:354.150000px;}
.x89_c00377{left:355.650000px;}
.x4a_c00377{left:357.750000px;}
.x30_c00377{left:360.450000px;}
.x52_c00377{left:361.950000px;}
.xb_c00377{left:364.650000px;}
.x80_c00377{left:366.450000px;}
.x23_c00377{left:367.500000px;}
.x19_c00377{left:369.600000px;}
.x98_c00377{left:371.550000px;}
.x3c_c00377{left:373.350000px;}
.x69_c00377{left:374.400000px;}
.x31_c00377{left:375.600000px;}
.x63_c00377{left:377.700000px;}
.x91_c00377{left:378.900000px;}
.x7_c00377{left:380.100000px;}
.x37_c00377{left:381.300000px;}
.x10_c00377{left:383.250000px;}
.xa1_c00377{left:385.800000px;}
.x81_c00377{left:387.300000px;}
.x3d_c00377{left:388.500000px;}
.x32_c00377{left:389.550000px;}
.x85_c00377{left:390.750000px;}
.x42_c00377{left:394.800000px;}
.x29_c00377{left:396.900000px;}
.x2d_c00377{left:398.550000px;}
.x71_c00377{left:400.800000px;}
.x45_c00377{left:402.450000px;}
.x4b_c00377{left:403.500000px;}
.x1a_c00377{left:406.350000px;}
.x64_c00377{left:408.000000px;}
.x46_c00377{left:409.650000px;}
.x6e_c00377{left:411.450000px;}
.x87_c00377{left:412.800000px;}
.x8a_c00377{left:414.750000px;}
.x47_c00377{left:416.850000px;}
.xa3_c00377{left:417.900000px;}
.x4c_c00377{left:421.200000px;}
.x90_c00377{left:424.050000px;}
.x93_c00377{left:425.700000px;}
.x2a_c00377{left:426.750000px;}
.x77_c00377{left:428.250000px;}
.x38_c00377{left:429.900000px;}
.x1b_c00377{left:431.550000px;}
.xc_c00377{left:433.800000px;}
.x5a_c00377{left:436.650000px;}
.x24_c00377{left:437.700000px;}
.x48_c00377{left:438.750000px;}
.x11_c00377{left:441.150000px;}
.x2_c00377{left:445.950000px;}
.x33_c00377{left:447.450000px;}
.x5e_c00377{left:449.100000px;}
.x78_c00377{left:453.450000px;}
.x99_c00377{left:455.850000px;}
.x57_c00377{left:457.050000px;}
.x4d_c00377{left:458.700000px;}
.x65_c00377{left:460.050000px;}
.x12_c00377{left:461.250000px;}
.x8_c00377{left:462.600000px;}
.x7c_c00377{left:465.000000px;}
.x1c_c00377{left:466.650000px;}
.x4e_c00377{left:468.450000px;}
.x5b_c00377{left:469.800000px;}
.x6a_c00377{left:472.950000px;}
.x9_c00377{left:474.900000px;}
.x9f_c00377{left:476.250000px;}
.xa2_c00377{left:478.950000px;}
.x88_c00377{left:482.250000px;}
.x5f_c00377{left:485.400000px;}
.x13_c00377{left:487.950000px;}
.x82_c00377{left:489.300000px;}
.x6b_c00377{left:491.250000px;}
.x53_c00377{left:492.300000px;}
.x1d_c00377{left:495.150000px;}
.x2b_c00377{left:497.700000px;}
.x68_c00377{left:500.100000px;}
.x4f_c00377{left:502.650000px;}
.x54_c00377{left:503.850000px;}
.x79_c00377{left:505.950000px;}
.x58_c00377{left:507.450000px;}
.x60_c00377{left:508.500000px;}
.x72_c00377{left:510.150000px;}
.x7e_c00377{left:514.650000px;}
.xa4_c00377{left:515.850000px;}
.x8e_c00377{left:519.900000px;}
.x14_c00377{left:522.150000px;}
.x3e_c00377{left:523.350000px;}
.x1e_c00377{left:524.700000px;}
.xa_c00377{left:526.350000px;}
.x49_c00377{left:532.500000px;}
.x124_c00377{left:556.350000px;}
.xfd_c00377{left:557.700000px;}
.xb8_c00377{left:558.750000px;}
.x13a_c00377{left:571.350000px;}
.xf8_c00377{left:572.400000px;}
.xcf_c00377{left:575.250000px;}
.xa5_c00377{left:576.300000px;}
.xaf_c00377{left:577.500000px;}
.x114_c00377{left:579.600000px;}
.x129_c00377{left:580.800000px;}
.x102_c00377{left:582.150000px;}
.xb0_c00377{left:586.800000px;}
.x118_c00377{left:588.150000px;}
.x135_c00377{left:590.700000px;}
.xc1_c00377{left:593.700000px;}
.xf3_c00377{left:595.500000px;}
.xa6_c00377{left:597.600000px;}
.x11a_c00377{left:600.150000px;}
.x12f_c00377{left:601.200000px;}
.xfe_c00377{left:602.400000px;}
.x133_c00377{left:606.750000px;}
.xb1_c00377{left:608.700000px;}
.xf2_c00377{left:610.500000px;}
.x120_c00377{left:612.150000px;}
.xa7_c00377{left:613.800000px;}
.xd0_c00377{left:615.600000px;}
.xdf_c00377{left:618.900000px;}
.xec_c00377{left:620.250000px;}
.xb6_c00377{left:621.750000px;}
.xe5_c00377{left:625.350000px;}
.x134_c00377{left:626.550000px;}
.xf4_c00377{left:628.200000px;}
.xf6_c00377{left:630.750000px;}
.x10e_c00377{left:633.000000px;}
.xb9_c00377{left:634.650000px;}
.xc3_c00377{left:635.850000px;}
.x103_c00377{left:637.650000px;}
.xed_c00377{left:639.750000px;}
.xea_c00377{left:641.700000px;}
.xe0_c00377{left:643.050000px;}
.xd8_c00377{left:644.100000px;}
.x125_c00377{left:647.550000px;}
.xb2_c00377{left:649.350000px;}
.x108_c00377{left:650.850000px;}
.xc9_c00377{left:654.450000px;}
.xd4_c00377{left:656.700000px;}
.xeb_c00377{left:658.650000px;}
.xa8_c00377{left:660.600000px;}
.x122_c00377{left:662.400000px;}
.xee_c00377{left:665.250000px;}
.xd9_c00377{left:666.450000px;}
.xf7_c00377{left:668.250000px;}
.xb3_c00377{left:669.900000px;}
.x109_c00377{left:670.950000px;}
.x131_c00377{left:672.300000px;}
.x126_c00377{left:674.550000px;}
.xf5_c00377{left:676.050000px;}
.x10f_c00377{left:677.250000px;}
.x12e_c00377{left:678.900000px;}
.xf9_c00377{left:680.100000px;}
.xca_c00377{left:683.250000px;}
.xa9_c00377{left:685.500000px;}
.x119_c00377{left:687.900000px;}
.xc2_c00377{left:690.150000px;}
.xc4_c00377{left:691.350000px;}
.xe1_c00377{left:694.050000px;}
.xe6_c00377{left:696.300000px;}
.xc5_c00377{left:701.250000px;}
.xda_c00377{left:704.250000px;}
.x12a_c00377{left:706.050000px;}
.x115_c00377{left:707.400000px;}
.x100_c00377{left:710.700000px;}
.x110_c00377{left:713.550000px;}
.x13b_c00377{left:714.600000px;}
.xba_c00377{left:715.650000px;}
.x104_c00377{left:717.450000px;}
.x11b_c00377{left:722.250000px;}
.xb4_c00377{left:723.900000px;}
.xbb_c00377{left:727.200000px;}
.x105_c00377{left:728.250000px;}
.xe2_c00377{left:729.750000px;}
.xd5_c00377{left:731.250000px;}
.xcc_c00377{left:733.350000px;}
.x111_c00377{left:735.150000px;}
.x13c_c00377{left:737.850000px;}
.xaa_c00377{left:739.200000px;}
.x138_c00377{left:741.900000px;}
.x127_c00377{left:742.950000px;}
.xcb_c00377{left:744.900000px;}
.xdb_c00377{left:747.750000px;}
.x106_c00377{left:750.600000px;}
.xd1_c00377{left:751.650000px;}
.xcd_c00377{left:755.250000px;}
.x11e_c00377{left:757.350000px;}
.xab_c00377{left:760.050000px;}
.xb7_c00377{left:762.450000px;}
.xfa_c00377{left:764.550000px;}
.xbc_c00377{left:766.500000px;}
.x10a_c00377{left:767.850000px;}
.xe7_c00377{left:770.400000px;}
.xc6_c00377{left:772.950000px;}
.x11c_c00377{left:776.250000px;}
.xef_c00377{left:777.900000px;}
.xe3_c00377{left:779.400000px;}
.x12b_c00377{left:781.650000px;}
.xd2_c00377{left:783.000000px;}
.x116_c00377{left:784.050000px;}
.x123_c00377{left:787.950000px;}
.xbf_c00377{left:789.900000px;}
.xd6_c00377{left:794.700000px;}
.x139_c00377{left:797.700000px;}
.x10b_c00377{left:798.750000px;}
.xe9_c00377{left:799.800000px;}
.x136_c00377{left:802.350000px;}
.xfb_c00377{left:804.450000px;}
.x12c_c00377{left:807.150000px;}
.xdc_c00377{left:808.200000px;}
.xac_c00377{left:810.150000px;}
.x107_c00377{left:811.800000px;}
.xe8_c00377{left:812.850000px;}
.x128_c00377{left:814.500000px;}
.xf0_c00377{left:816.450000px;}
.xbd_c00377{left:818.700000px;}
.xb5_c00377{left:822.150000px;}
.x13d_c00377{left:823.200000px;}
.xc7_c00377{left:824.850000px;}
.x137_c00377{left:826.800000px;}
.xad_c00377{left:828.450000px;}
.xce_c00377{left:832.350000px;}
.xf1_c00377{left:834.150000px;}
.xff_c00377{left:835.350000px;}
.x11d_c00377{left:836.700000px;}
.x12d_c00377{left:839.250000px;}
.xdd_c00377{left:843.150000px;}
.x130_c00377{left:844.950000px;}
.x10c_c00377{left:847.050000px;}
.xc8_c00377{left:848.550000px;}
.x117_c00377{left:852.900000px;}
.xbe_c00377{left:853.950000px;}
.xd3_c00377{left:860.400000px;}
.x112_c00377{left:864.750000px;}
.xde_c00377{left:866.550000px;}
.xe4_c00377{left:867.600000px;}
.x101_c00377{left:869.400000px;}
.x10d_c00377{left:870.750000px;}
.xc0_c00377{left:872.400000px;}
.x113_c00377{left:873.450000px;}
.x121_c00377{left:874.500000px;}
.xae_c00377{left:879.600000px;}
.xfc_c00377{left:880.950000px;}
.xd7_c00377{left:883.950000px;}
.x132_c00377{left:888.300000px;}
.x11f_c00377{left:890.850000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.wsb_c00377{word-spacing:-8.222222pt;}
.wsc_c00377{word-spacing:-4.705882pt;}
.ws5_c00377{word-spacing:-3.461538pt;}
.wsd_c00377{word-spacing:0.000000pt;}
.ws9_c00377{word-spacing:5.304582pt;}
.ws2_c00377{word-spacing:7.134503pt;}
.ws1_c00377{word-spacing:8.034188pt;}
.ws7_c00377{word-spacing:13.333333pt;}
.ws4_c00377{word-spacing:20.632708pt;}
.ws6_c00377{word-spacing:22.857143pt;}
.ws3_c00377{word-spacing:28.666667pt;}
.ws0_c00377{word-spacing:35.555556pt;}
.ws8_c00377{word-spacing:124.444444pt;}
.wsa_c00377{word-spacing:204.155844pt;}
._2_c00377{width:52.698413pt;}
._1_c00377{width:56.000000pt;}
._0_c00377{width:59.333333pt;}
.fs4_c00377{font-size:26.666667pt;}
.fs7_c00377{font-size:42.666667pt;}
.fs3_c00377{font-size:48.000000pt;}
.fs2_c00377{font-size:53.333333pt;}
.fs1_c00377{font-size:58.666667pt;}
.fs5_c00377{font-size:64.000000pt;}
.fs0_c00377{font-size:74.666667pt;}
.fs6_c00377{font-size:90.666667pt;}
.y0_c00377{bottom:0.000000pt;}
.y6e_c00377{bottom:176.666667pt;}
.y39_c00377{bottom:178.933333pt;}
.y6d_c00377{bottom:191.066667pt;}
.y38_c00377{bottom:195.200000pt;}
.y6c_c00377{bottom:202.400000pt;}
.y37_c00377{bottom:210.533333pt;}
.y6b_c00377{bottom:215.200000pt;}
.y36_c00377{bottom:225.866667pt;}
.y6a_c00377{bottom:228.000000pt;}
.y69_c00377{bottom:241.066667pt;}
.y35_c00377{bottom:241.600000pt;}
.y68_c00377{bottom:253.866667pt;}
.y34_c00377{bottom:257.333333pt;}
.y67_c00377{bottom:266.400000pt;}
.y66_c00377{bottom:279.200000pt;}
.y33_c00377{bottom:281.066667pt;}
.y65_c00377{bottom:291.733333pt;}
.y32_c00377{bottom:300.533333pt;}
.y64_c00377{bottom:304.266667pt;}
.y31_c00377{bottom:316.533333pt;}
.y63_c00377{bottom:317.066667pt;}
.y62_c00377{bottom:329.866667pt;}
.y30_c00377{bottom:331.733333pt;}
.y61_c00377{bottom:342.933333pt;}
.y2f_c00377{bottom:347.733333pt;}
.y60_c00377{bottom:355.466667pt;}
.y2e_c00377{bottom:363.733333pt;}
.y5f_c00377{bottom:368.266667pt;}
.y2d_c00377{bottom:379.733333pt;}
.y5e_c00377{bottom:381.066667pt;}
.y5d_c00377{bottom:393.866667pt;}
.y2c_c00377{bottom:395.733333pt;}
.y5c_c00377{bottom:406.933333pt;}
.y2b_c00377{bottom:411.466667pt;}
.y5b_c00377{bottom:419.466667pt;}
.y2a_c00377{bottom:427.466667pt;}
.y5a_c00377{bottom:432.266667pt;}
.y29_c00377{bottom:443.200000pt;}
.y59_c00377{bottom:444.800000pt;}
.y58_c00377{bottom:457.600000pt;}
.y28_c00377{bottom:458.933333pt;}
.y57_c00377{bottom:470.133333pt;}
.y27_c00377{bottom:474.933333pt;}
.y56_c00377{bottom:483.200000pt;}
.y26_c00377{bottom:490.666667pt;}
.y55_c00377{bottom:496.000000pt;}
.y25_c00377{bottom:506.666667pt;}
.y24_c00377{bottom:522.400000pt;}
.y23_c00377{bottom:538.400000pt;}
.y54_c00377{bottom:541.466667pt;}
.y22_c00377{bottom:554.133333pt;}
.y53_c00377{bottom:561.600000pt;}
.y21_c00377{bottom:570.133333pt;}
.y52_c00377{bottom:580.933333pt;}
.y20_c00377{bottom:585.866667pt;}
.y51_c00377{bottom:597.600000pt;}
.y1f_c00377{bottom:605.200000pt;}
.y50_c00377{bottom:613.600000pt;}
.y1e_c00377{bottom:621.466667pt;}
.y4f_c00377{bottom:629.600000pt;}
.y1d_c00377{bottom:637.466667pt;}
.y4e_c00377{bottom:645.600000pt;}
.y1c_c00377{bottom:653.466667pt;}
.y4d_c00377{bottom:661.333333pt;}
.y1b_c00377{bottom:669.200000pt;}
.y4c_c00377{bottom:677.333333pt;}
.y1a_c00377{bottom:685.200000pt;}
.y4b_c00377{bottom:693.066667pt;}
.y19_c00377{bottom:701.200000pt;}
.y4a_c00377{bottom:709.066667pt;}
.y18_c00377{bottom:716.933333pt;}
.y49_c00377{bottom:731.866667pt;}
.y17_c00377{bottom:732.666667pt;}
.y16_c00377{bottom:748.666667pt;}
.y48_c00377{bottom:748.800000pt;}
.y15_c00377{bottom:764.400000pt;}
.y47_c00377{bottom:764.533333pt;}
.y14_c00377{bottom:780.133333pt;}
.y46_c00377{bottom:780.800000pt;}
.y45_c00377{bottom:788.533333pt;}
.y43_c00377{bottom:794.933333pt;}
.y44_c00377{bottom:795.200000pt;}
.y12_c00377{bottom:802.533333pt;}
.y42_c00377{bottom:813.733333pt;}
.y11_c00377{bottom:814.000000pt;}
.y10_c00377{bottom:829.066667pt;}
.y13_c00377{bottom:832.666667pt;}
.yf_c00377{bottom:839.733333pt;}
.y41_c00377{bottom:840.933333pt;}
.ye_c00377{bottom:854.400000pt;}
.y40_c00377{bottom:860.400000pt;}
.yd_c00377{bottom:865.333333pt;}
.yc_c00377{bottom:880.000000pt;}
.y3f_c00377{bottom:880.266667pt;}
.yb_c00377{bottom:890.933333pt;}
.y3e_c00377{bottom:899.466667pt;}
.ya_c00377{bottom:905.333333pt;}
.y3d_c00377{bottom:915.466667pt;}
.y9_c00377{bottom:918.133333pt;}
.y8_c00377{bottom:928.933333pt;}
.y7_c00377{bottom:943.333333pt;}
.y3c_c00377{bottom:951.066667pt;}
.y6_c00377{bottom:954.933333pt;}
.y5_c00377{bottom:969.600000pt;}
.y4_c00377{bottom:984.266667pt;}
.y3b_c00377{bottom:986.533333pt;}
.y3_c00377{bottom:1001.600000pt;}
.y3a_c00377{bottom:1002.266667pt;}
.y1_c00377{bottom:1020.133333pt;}
.y2_c00377{bottom:1025.200000pt;}
.h6_c00377{height:26.666667pt;}
.h9_c00377{height:42.666667pt;}
.h5_c00377{height:48.000000pt;}
.h4_c00377{height:53.333333pt;}
.h3_c00377{height:58.666667pt;}
.h7_c00377{height:64.000000pt;}
.h2_c00377{height:74.666667pt;}
.h8_c00377{height:90.666667pt;}
.h0_c00377{height:1130.559977pt;}
.h1_c00377{height:1130.666667pt;}
.w0_c00377{width:853.760009pt;}
.w1_c00377{width:854.000000pt;}
.x0_c00377{left:0.000000pt;}
.x1_c00377{left:176.266667pt;}
.x76_c00377{left:177.333333pt;}
.xd_c00377{left:178.533333pt;}
.x7a_c00377{left:185.466667pt;}
.x15_c00377{left:190.533333pt;}
.x25_c00377{left:191.733333pt;}
.x55_c00377{left:193.466667pt;}
.x3_c00377{left:194.533333pt;}
.x1f_c00377{left:204.666667pt;}
.x50_c00377{left:208.666667pt;}
.x9b_c00377{left:210.533333pt;}
.x4_c00377{left:211.466667pt;}
.x92_c00377{left:213.200000pt;}
.x56_c00377{left:215.200000pt;}
.x94_c00377{left:218.400000pt;}
.x83_c00377{left:219.333333pt;}
.x43_c00377{left:221.333333pt;}
.x39_c00377{left:223.600000pt;}
.x16_c00377{left:224.800000pt;}
.x66_c00377{left:226.533333pt;}
.x2e_c00377{left:228.266667pt;}
.x73_c00377{left:230.133333pt;}
.x9c_c00377{left:231.066667pt;}
.x26_c00377{left:234.666667pt;}
.x6f_c00377{left:236.266667pt;}
.x7d_c00377{left:238.133333pt;}
.xe_c00377{left:239.333333pt;}
.x34_c00377{left:240.266667pt;}
.x20_c00377{left:241.200000pt;}
.x8b_c00377{left:242.133333pt;}
.x3f_c00377{left:243.866667pt;}
.x74_c00377{left:246.400000pt;}
.x5_c00377{left:247.333333pt;}
.x8d_c00377{left:248.533333pt;}
.x96_c00377{left:249.866667pt;}
.x86_c00377{left:250.933333pt;}
.x3a_c00377{left:251.866667pt;}
.x35_c00377{left:252.800000pt;}
.x21_c00377{left:254.000000pt;}
.x84_c00377{left:255.866667pt;}
.x40_c00377{left:256.933333pt;}
.x8c_c00377{left:257.866667pt;}
.x51_c00377{left:260.933333pt;}
.x7f_c00377{left:264.266667pt;}
.x61_c00377{left:266.400000pt;}
.x95_c00377{left:267.733333pt;}
.x17_c00377{left:269.333333pt;}
.x5c_c00377{left:270.800000pt;}
.x9d_c00377{left:271.733333pt;}
.x9a_c00377{left:273.333333pt;}
.x2f_c00377{left:274.666667pt;}
.xa0_c00377{left:275.733333pt;}
.x27_c00377{left:276.933333pt;}
.x75_c00377{left:278.133333pt;}
.x8f_c00377{left:283.466667pt;}
.x67_c00377{left:284.800000pt;}
.x22_c00377{left:286.000000pt;}
.x36_c00377{left:288.000000pt;}
.x28_c00377{left:289.466667pt;}
.x6_c00377{left:290.800000pt;}
.x6c_c00377{left:292.133333pt;}
.x3b_c00377{left:293.733333pt;}
.xf_c00377{left:295.600000pt;}
.x62_c00377{left:297.733333pt;}
.x44_c00377{left:298.800000pt;}
.x7b_c00377{left:301.600000pt;}
.x59_c00377{left:303.333333pt;}
.x5d_c00377{left:304.400000pt;}
.x70_c00377{left:305.333333pt;}
.x97_c00377{left:307.200000pt;}
.x6d_c00377{left:308.133333pt;}
.x9e_c00377{left:309.733333pt;}
.x18_c00377{left:310.666667pt;}
.x2c_c00377{left:311.733333pt;}
.x41_c00377{left:314.800000pt;}
.x89_c00377{left:316.133333pt;}
.x4a_c00377{left:318.000000pt;}
.x30_c00377{left:320.400000pt;}
.x52_c00377{left:321.733333pt;}
.xb_c00377{left:324.133333pt;}
.x80_c00377{left:325.733333pt;}
.x23_c00377{left:326.666667pt;}
.x19_c00377{left:328.533333pt;}
.x98_c00377{left:330.266667pt;}
.x3c_c00377{left:331.866667pt;}
.x69_c00377{left:332.800000pt;}
.x31_c00377{left:333.866667pt;}
.x63_c00377{left:335.733333pt;}
.x91_c00377{left:336.800000pt;}
.x7_c00377{left:337.866667pt;}
.x37_c00377{left:338.933333pt;}
.x10_c00377{left:340.666667pt;}
.xa1_c00377{left:342.933333pt;}
.x81_c00377{left:344.266667pt;}
.x3d_c00377{left:345.333333pt;}
.x32_c00377{left:346.266667pt;}
.x85_c00377{left:347.333333pt;}
.x42_c00377{left:350.933333pt;}
.x29_c00377{left:352.800000pt;}
.x2d_c00377{left:354.266667pt;}
.x71_c00377{left:356.266667pt;}
.x45_c00377{left:357.733333pt;}
.x4b_c00377{left:358.666667pt;}
.x1a_c00377{left:361.200000pt;}
.x64_c00377{left:362.666667pt;}
.x46_c00377{left:364.133333pt;}
.x6e_c00377{left:365.733333pt;}
.x87_c00377{left:366.933333pt;}
.x8a_c00377{left:368.666667pt;}
.x47_c00377{left:370.533333pt;}
.xa3_c00377{left:371.466667pt;}
.x4c_c00377{left:374.400000pt;}
.x90_c00377{left:376.933333pt;}
.x93_c00377{left:378.400000pt;}
.x2a_c00377{left:379.333333pt;}
.x77_c00377{left:380.666667pt;}
.x38_c00377{left:382.133333pt;}
.x1b_c00377{left:383.600000pt;}
.xc_c00377{left:385.600000pt;}
.x5a_c00377{left:388.133333pt;}
.x24_c00377{left:389.066667pt;}
.x48_c00377{left:390.000000pt;}
.x11_c00377{left:392.133333pt;}
.x2_c00377{left:396.400000pt;}
.x33_c00377{left:397.733333pt;}
.x5e_c00377{left:399.200000pt;}
.x78_c00377{left:403.066667pt;}
.x99_c00377{left:405.200000pt;}
.x57_c00377{left:406.266667pt;}
.x4d_c00377{left:407.733333pt;}
.x65_c00377{left:408.933333pt;}
.x12_c00377{left:410.000000pt;}
.x8_c00377{left:411.200000pt;}
.x7c_c00377{left:413.333333pt;}
.x1c_c00377{left:414.800000pt;}
.x4e_c00377{left:416.400000pt;}
.x5b_c00377{left:417.600000pt;}
.x6a_c00377{left:420.400000pt;}
.x9_c00377{left:422.133333pt;}
.x9f_c00377{left:423.333333pt;}
.xa2_c00377{left:425.733333pt;}
.x88_c00377{left:428.666667pt;}
.x5f_c00377{left:431.466667pt;}
.x13_c00377{left:433.733333pt;}
.x82_c00377{left:434.933333pt;}
.x6b_c00377{left:436.666667pt;}
.x53_c00377{left:437.600000pt;}
.x1d_c00377{left:440.133333pt;}
.x2b_c00377{left:442.400000pt;}
.x68_c00377{left:444.533333pt;}
.x4f_c00377{left:446.800000pt;}
.x54_c00377{left:447.866667pt;}
.x79_c00377{left:449.733333pt;}
.x58_c00377{left:451.066667pt;}
.x60_c00377{left:452.000000pt;}
.x72_c00377{left:453.466667pt;}
.x7e_c00377{left:457.466667pt;}
.xa4_c00377{left:458.533333pt;}
.x8e_c00377{left:462.133333pt;}
.x14_c00377{left:464.133333pt;}
.x3e_c00377{left:465.200000pt;}
.x1e_c00377{left:466.400000pt;}
.xa_c00377{left:467.866667pt;}
.x49_c00377{left:473.333333pt;}
.x124_c00377{left:494.533333pt;}
.xfd_c00377{left:495.733333pt;}
.xb8_c00377{left:496.666667pt;}
.x13a_c00377{left:507.866667pt;}
.xf8_c00377{left:508.800000pt;}
.xcf_c00377{left:511.333333pt;}
.xa5_c00377{left:512.266667pt;}
.xaf_c00377{left:513.333333pt;}
.x114_c00377{left:515.200000pt;}
.x129_c00377{left:516.266667pt;}
.x102_c00377{left:517.466667pt;}
.xb0_c00377{left:521.600000pt;}
.x118_c00377{left:522.800000pt;}
.x135_c00377{left:525.066667pt;}
.xc1_c00377{left:527.733333pt;}
.xf3_c00377{left:529.333333pt;}
.xa6_c00377{left:531.200000pt;}
.x11a_c00377{left:533.466667pt;}
.x12f_c00377{left:534.400000pt;}
.xfe_c00377{left:535.466667pt;}
.x133_c00377{left:539.333333pt;}
.xb1_c00377{left:541.066667pt;}
.xf2_c00377{left:542.666667pt;}
.x120_c00377{left:544.133333pt;}
.xa7_c00377{left:545.600000pt;}
.xd0_c00377{left:547.200000pt;}
.xdf_c00377{left:550.133333pt;}
.xec_c00377{left:551.333333pt;}
.xb6_c00377{left:552.666667pt;}
.xe5_c00377{left:555.866667pt;}
.x134_c00377{left:556.933333pt;}
.xf4_c00377{left:558.400000pt;}
.xf6_c00377{left:560.666667pt;}
.x10e_c00377{left:562.666667pt;}
.xb9_c00377{left:564.133333pt;}
.xc3_c00377{left:565.200000pt;}
.x103_c00377{left:566.800000pt;}
.xed_c00377{left:568.666667pt;}
.xea_c00377{left:570.400000pt;}
.xe0_c00377{left:571.600000pt;}
.xd8_c00377{left:572.533333pt;}
.x125_c00377{left:575.600000pt;}
.xb2_c00377{left:577.200000pt;}
.x108_c00377{left:578.533333pt;}
.xc9_c00377{left:581.733333pt;}
.xd4_c00377{left:583.733333pt;}
.xeb_c00377{left:585.466667pt;}
.xa8_c00377{left:587.200000pt;}
.x122_c00377{left:588.800000pt;}
.xee_c00377{left:591.333333pt;}
.xd9_c00377{left:592.400000pt;}
.xf7_c00377{left:594.000000pt;}
.xb3_c00377{left:595.466667pt;}
.x109_c00377{left:596.400000pt;}
.x131_c00377{left:597.600000pt;}
.x126_c00377{left:599.600000pt;}
.xf5_c00377{left:600.933333pt;}
.x10f_c00377{left:602.000000pt;}
.x12e_c00377{left:603.466667pt;}
.xf9_c00377{left:604.533333pt;}
.xca_c00377{left:607.333333pt;}
.xa9_c00377{left:609.333333pt;}
.x119_c00377{left:611.466667pt;}
.xc2_c00377{left:613.466667pt;}
.xc4_c00377{left:614.533333pt;}
.xe1_c00377{left:616.933333pt;}
.xe6_c00377{left:618.933333pt;}
.xc5_c00377{left:623.333333pt;}
.xda_c00377{left:626.000000pt;}
.x12a_c00377{left:627.600000pt;}
.x115_c00377{left:628.800000pt;}
.x100_c00377{left:631.733333pt;}
.x110_c00377{left:634.266667pt;}
.x13b_c00377{left:635.200000pt;}
.xba_c00377{left:636.133333pt;}
.x104_c00377{left:637.733333pt;}
.x11b_c00377{left:642.000000pt;}
.xb4_c00377{left:643.466667pt;}
.xbb_c00377{left:646.400000pt;}
.x105_c00377{left:647.333333pt;}
.xe2_c00377{left:648.666667pt;}
.xd5_c00377{left:650.000000pt;}
.xcc_c00377{left:651.866667pt;}
.x111_c00377{left:653.466667pt;}
.x13c_c00377{left:655.866667pt;}
.xaa_c00377{left:657.066667pt;}
.x138_c00377{left:659.466667pt;}
.x127_c00377{left:660.400000pt;}
.xcb_c00377{left:662.133333pt;}
.xdb_c00377{left:664.666667pt;}
.x106_c00377{left:667.200000pt;}
.xd1_c00377{left:668.133333pt;}
.xcd_c00377{left:671.333333pt;}
.x11e_c00377{left:673.200000pt;}
.xab_c00377{left:675.600000pt;}
.xb7_c00377{left:677.733333pt;}
.xfa_c00377{left:679.600000pt;}
.xbc_c00377{left:681.333333pt;}
.x10a_c00377{left:682.533333pt;}
.xe7_c00377{left:684.800000pt;}
.xc6_c00377{left:687.066667pt;}
.x11c_c00377{left:690.000000pt;}
.xef_c00377{left:691.466667pt;}
.xe3_c00377{left:692.800000pt;}
.x12b_c00377{left:694.800000pt;}
.xd2_c00377{left:696.000000pt;}
.x116_c00377{left:696.933333pt;}
.x123_c00377{left:700.400000pt;}
.xbf_c00377{left:702.133333pt;}
.xd6_c00377{left:706.400000pt;}
.x139_c00377{left:709.066667pt;}
.x10b_c00377{left:710.000000pt;}
.xe9_c00377{left:710.933333pt;}
.x136_c00377{left:713.200000pt;}
.xfb_c00377{left:715.066667pt;}
.x12c_c00377{left:717.466667pt;}
.xdc_c00377{left:718.400000pt;}
.xac_c00377{left:720.133333pt;}
.x107_c00377{left:721.600000pt;}
.xe8_c00377{left:722.533333pt;}
.x128_c00377{left:724.000000pt;}
.xf0_c00377{left:725.733333pt;}
.xbd_c00377{left:727.733333pt;}
.xb5_c00377{left:730.800000pt;}
.x13d_c00377{left:731.733333pt;}
.xc7_c00377{left:733.200000pt;}
.x137_c00377{left:734.933333pt;}
.xad_c00377{left:736.400000pt;}
.xce_c00377{left:739.866667pt;}
.xf1_c00377{left:741.466667pt;}
.xff_c00377{left:742.533333pt;}
.x11d_c00377{left:743.733333pt;}
.x12d_c00377{left:746.000000pt;}
.xdd_c00377{left:749.466667pt;}
.x130_c00377{left:751.066667pt;}
.x10c_c00377{left:752.933333pt;}
.xc8_c00377{left:754.266667pt;}
.x117_c00377{left:758.133333pt;}
.xbe_c00377{left:759.066667pt;}
.xd3_c00377{left:764.800000pt;}
.x112_c00377{left:768.666667pt;}
.xde_c00377{left:770.266667pt;}
.xe4_c00377{left:771.200000pt;}
.x101_c00377{left:772.800000pt;}
.x10d_c00377{left:774.000000pt;}
.xc0_c00377{left:775.466667pt;}
.x113_c00377{left:776.400000pt;}
.x121_c00377{left:777.333333pt;}
.xae_c00377{left:781.866667pt;}
.xfc_c00377{left:783.066667pt;}
.xd7_c00377{left:785.733333pt;}
.x132_c00377{left:789.600000pt;}
.x11f_c00377{left:791.866667pt;}
}





/* 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_c00378 {
    display:none;
  }
  .loading-indicator_c00378.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00378 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_c00378 { 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_c00378" -> "#page-container .classname_c00378")
 */
.pf_c00378 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00378 { /* 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_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00378 { /* 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_c00378 { /* 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_c00378 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00378 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00378 {overflow:visible;}
  }
}
.c_c00378 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00378 { /* 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_c00378:after { /* webkit #35443 */
  content: '';
}
.t_c00378:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00378 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 */
}
.__c00378 { /* 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_c00378 { /* info for Javascript */
  display:none;
}
.l_c00378 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00378 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00378 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00378: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_c00378 {
    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_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00378.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_c00378 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00378;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.000000;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;}
.m5c_c00378{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00378{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m31_c00378{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m112_c00378{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m2_c00378{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mea_c00378{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m32_c00378{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m85_c00378{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mba_c00378{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m86_c00378{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00378{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m40_c00378{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00378{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mef_c00378{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m117_c00378{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m88_c00378{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md_c00378{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m73_c00378{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00378{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m13_c00378{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00378{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m5_c00378{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00378{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00378{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00378{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m36_c00378{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mda_c00378{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m72_c00378{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00378{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m48_c00378{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00378{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00378{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m66_c00378{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00378{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m57_c00378{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00378{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m87_c00378{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00378{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00378{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m18_c00378{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mde_c00378{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00378{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m33_c00378{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m17_c00378{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00378{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00378{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me2_c00378{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00378{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m82_c00378{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me3_c00378{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00378{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00378{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.maf_c00378{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00378{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m29_c00378{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m11_c00378{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m103_c00378{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mee_c00378{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m44_c00378{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00378{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00378{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me1_c00378{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00378{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md6_c00378{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me4_c00378{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mae_c00378{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m53_c00378{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00378{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mff_c00378{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00378{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md1_c00378{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00378{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00378{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00378{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00378{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00378{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00378{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m109_c00378{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me0_c00378{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.ma_c00378{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m106_c00378{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m91_c00378{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00378{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00378{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m22_c00378{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00378{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00378{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00378{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m51_c00378{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m89_c00378{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m27_c00378{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00378{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00378{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m8_c00378{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md0_c00378{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m77_c00378{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00378{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m76_c00378{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m59_c00378{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00378{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m19_c00378{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00378{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m25_c00378{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mc_c00378{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m61_c00378{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00378{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m108_c00378{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m28_c00378{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m14_c00378{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00378{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00378{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m68_c00378{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00378{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m39_c00378{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00378{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m56_c00378{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m110_c00378{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00378{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mce_c00378{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md8_c00378{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m92_c00378{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m60_c00378{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00378{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m37_c00378{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m115_c00378{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m97_c00378{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mca_c00378{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md5_c00378{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00378{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00378{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m20_c00378{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m41_c00378{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mad_c00378{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb_c00378{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00378{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00378{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00378{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m114_c00378{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00378{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4_c00378{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00378{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00378{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md3_c00378{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00378{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m119_c00378{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7_c00378{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00378{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m81_c00378{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00378{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m34_c00378{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00378{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00378{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00378{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00378{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9_c00378{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00378{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m100_c00378{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00378{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00378{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m69_c00378{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m10_c00378{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00378{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00378{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m45_c00378{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md9_c00378{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m30_c00378{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00378{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6_c00378{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m79_c00378{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00378{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00378{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.me_c00378{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00378{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.meb_c00378{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m96_c00378{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mac_c00378{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m52_c00378{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00378{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me9_c00378{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m24_c00378{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00378{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m35_c00378{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m78_c00378{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mab_c00378{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00378{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf_c00378{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m70_c00378{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00378{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m55_c00378{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00378{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me5_c00378{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00378{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00378{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00378{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m83_c00378{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m12_c00378{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m71_c00378{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m16_c00378{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m98_c00378{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m107_c00378{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00378{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.me7_c00378{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md4_c00378{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m38_c00378{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m67_c00378{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m94_c00378{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m80_c00378{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m26_c00378{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00378{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m15_c00378{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00378{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.maa_c00378{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00378{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m93_c00378{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m63_c00378{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.med_c00378{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m21_c00378{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m113_c00378{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m116_c00378{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00378{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m54_c00378{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m111_c00378{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00378{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m47_c00378{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00378{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00378{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00378{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m99_c00378{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md2_c00378{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00378{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00378{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00378{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m84_c00378{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m75_c00378{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00378{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);}
.m7c_c00378{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00378{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00378{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m101_c00378{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m62_c00378{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mec_c00378{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00378{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m43_c00378{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00378{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00378{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m49_c00378{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md7_c00378{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00378{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00378{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00378{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m65_c00378{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m118_c00378{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m42_c00378{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00378{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.me8_c00378{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m23_c00378{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m74_c00378{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m105_c00378{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me6_c00378{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m64_c00378{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00378{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m102_c00378{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00378{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00378{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m104_c00378{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m46_c00378{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00378{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00378{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00378{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00378{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00378{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00378{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00378{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.m50_c00378{transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00378{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.419250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419250,0.000000,0.000000,0.250000,0,0);}
.m95_c00378{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00378{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m90_c00378{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m58_c00378{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00378{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls0_c00378{letter-spacing:0.000000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{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__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00378{word-spacing:-12.385475px;}
.ws8_c00378{word-spacing:-9.736842px;}
.wsd_c00378{word-spacing:-6.363636px;}
.wsb_c00378{word-spacing:-5.388535px;}
.ws9_c00378{word-spacing:-3.859873px;}
.wse_c00378{word-spacing:0.000000px;}
.wsa_c00378{word-spacing:10.796178px;}
.ws0_c00378{word-spacing:15.477089px;}
.ws7_c00378{word-spacing:16.785714px;}
.ws5_c00378{word-spacing:25.714286px;}
.ws4_c00378{word-spacing:29.285714px;}
.ws6_c00378{word-spacing:35.833333px;}
.ws3_c00378{word-spacing:40.000000px;}
.ws2_c00378{word-spacing:71.404580px;}
.ws1_c00378{word-spacing:1738.580153px;}
._3_c00378{width:55.714286px;}
._1_c00378{width:59.285714px;}
._2_c00378{width:64.642857px;}
._0_c00378{width:74.166667px;}
.fc0_c00378{color:transparent;}
.fs5_c00378{font-size:30.000000px;}
.fs4_c00378{font-size:54.000000px;}
.fs3_c00378{font-size:60.000000px;}
.fs1_c00378{font-size:66.000000px;}
.fs2_c00378{font-size:72.000000px;}
.fs0_c00378{font-size:84.000000px;}
.y0_c00378{bottom:0.000000px;}
.y6b_c00378{bottom:188.250000px;}
.y37_c00378{bottom:190.800000px;}
.y6a_c00378{bottom:203.400000px;}
.y36_c00378{bottom:209.100000px;}
.y69_c00378{bottom:217.800000px;}
.y35_c00378{bottom:227.100000px;}
.y68_c00378{bottom:231.900000px;}
.y34_c00378{bottom:244.800000px;}
.y67_c00378{bottom:246.600000px;}
.y66_c00378{bottom:261.300000px;}
.y33_c00378{bottom:262.800000px;}
.y65_c00378{bottom:275.700000px;}
.y32_c00378{bottom:280.800000px;}
.y64_c00378{bottom:290.100000px;}
.y31_c00378{bottom:298.500000px;}
.y63_c00378{bottom:304.500000px;}
.y30_c00378{bottom:316.500000px;}
.y62_c00378{bottom:318.600000px;}
.y61_c00378{bottom:333.000000px;}
.y2f_c00378{bottom:333.900000px;}
.y60_c00378{bottom:348.150000px;}
.y2e_c00378{bottom:351.600000px;}
.y5f_c00378{bottom:361.500000px;}
.y2d_c00378{bottom:369.600000px;}
.y5e_c00378{bottom:375.900000px;}
.y2c_c00378{bottom:387.300000px;}
.y5d_c00378{bottom:390.300000px;}
.y5c_c00378{bottom:405.000000px;}
.y2b_c00378{bottom:416.850000px;}
.y2a_c00378{bottom:418.050000px;}
.y5b_c00378{bottom:419.400000px;}
.y5a_c00378{bottom:433.050000px;}
.y29_c00378{bottom:445.350000px;}
.y28_c00378{bottom:446.700000px;}
.y27_c00378{bottom:459.300000px;}
.y24_c00378{bottom:470.550000px;}
.y26_c00378{bottom:475.200000px;}
.y59_c00378{bottom:483.150000px;}
.y25_c00378{bottom:488.100000px;}
.y58_c00378{bottom:501.150000px;}
.y23_c00378{bottom:504.000000px;}
.y22_c00378{bottom:516.900000px;}
.y21_c00378{bottom:533.100000px;}
.y57_c00378{bottom:536.100000px;}
.y20_c00378{bottom:547.500000px;}
.y1f_c00378{bottom:560.100000px;}
.y56_c00378{bottom:570.900000px;}
.y1e_c00378{bottom:576.300000px;}
.y55_c00378{bottom:588.900000px;}
.y1d_c00378{bottom:589.350000px;}
.y1c_c00378{bottom:605.850000px;}
.y54_c00378{bottom:606.900000px;}
.y53_c00378{bottom:624.600000px;}
.y1b_c00378{bottom:627.450000px;}
.y1a_c00378{bottom:646.500000px;}
.y52_c00378{bottom:646.950000px;}
.y51_c00378{bottom:668.400000px;}
.y19_c00378{bottom:676.800000px;}
.y50_c00378{bottom:686.100000px;}
.y18_c00378{bottom:694.800000px;}
.y4f_c00378{bottom:704.100000px;}
.y17_c00378{bottom:712.800000px;}
.y4e_c00378{bottom:721.800000px;}
.y16_c00378{bottom:730.500000px;}
.y4d_c00378{bottom:739.800000px;}
.y15_c00378{bottom:748.500000px;}
.y4c_c00378{bottom:757.800000px;}
.y14_c00378{bottom:765.750000px;}
.y4b_c00378{bottom:775.500000px;}
.y13_c00378{bottom:783.900000px;}
.y4a_c00378{bottom:793.500000px;}
.y12_c00378{bottom:801.900000px;}
.y49_c00378{bottom:815.700000px;}
.y11_c00378{bottom:819.600000px;}
.y48_c00378{bottom:833.700000px;}
.y10_c00378{bottom:837.300000px;}
.y47_c00378{bottom:850.950000px;}
.yf_c00378{bottom:855.300000px;}
.y46_c00378{bottom:868.950000px;}
.ye_c00378{bottom:872.550000px;}
.y45_c00378{bottom:886.650000px;}
.yd_c00378{bottom:890.550000px;}
.y44_c00378{bottom:904.350000px;}
.yc_c00378{bottom:908.250000px;}
.y43_c00378{bottom:922.050000px;}
.yb_c00378{bottom:923.400000px;}
.y42_c00378{bottom:939.750000px;}
.ya_c00378{bottom:943.950000px;}
.y41_c00378{bottom:957.750000px;}
.y9_c00378{bottom:974.100000px;}
.y40_c00378{bottom:975.450000px;}
.y3f_c00378{bottom:993.450000px;}
.y8_c00378{bottom:997.500000px;}
.y3e_c00378{bottom:1011.450000px;}
.y7_c00378{bottom:1017.300000px;}
.y3d_c00378{bottom:1029.150000px;}
.y6_c00378{bottom:1038.900000px;}
.y3c_c00378{bottom:1046.850000px;}
.y5_c00378{bottom:1059.450000px;}
.y3b_c00378{bottom:1064.850000px;}
.y4_c00378{bottom:1077.450000px;}
.y3a_c00378{bottom:1082.100000px;}
.y3_c00378{bottom:1095.150000px;}
.y39_c00378{bottom:1100.100000px;}
.y2_c00378{bottom:1117.800000px;}
.y38_c00378{bottom:1118.100000px;}
.y1_c00378{bottom:1144.500000px;}
.h7_c00378{height:30.000000px;}
.h6_c00378{height:54.000000px;}
.h5_c00378{height:60.000000px;}
.h3_c00378{height:66.000000px;}
.h4_c00378{height:72.000000px;}
.h2_c00378{height:84.000000px;}
.h1_c00378{height:1268.250000px;}
.h0_c00378{height:1268.279937px;}
.w0_c00378{width:960.480010px;}
.w1_c00378{width:960.750000px;}
.x0_c00378{left:0.000000px;}
.x26_c00378{left:70.500000px;}
.x57_c00378{left:76.650000px;}
.x99_c00378{left:77.850000px;}
.x75_c00378{left:85.200000px;}
.x2b_c00378{left:86.550000px;}
.x46_c00378{left:87.750000px;}
.xf_c00378{left:88.800000px;}
.x61_c00378{left:89.850000px;}
.x3_c00378{left:94.350000px;}
.x7c_c00378{left:97.800000px;}
.x84_c00378{left:99.150000px;}
.x4_c00378{left:107.250000px;}
.x1e_c00378{left:108.600000px;}
.x6d_c00378{left:110.100000px;}
.x52_c00378{left:111.600000px;}
.x7e_c00378{left:114.150000px;}
.x27_c00378{left:115.800000px;}
.x90_c00378{left:117.750000px;}
.x58_c00378{left:120.600000px;}
.x3f_c00378{left:122.100000px;}
.x16_c00378{left:124.050000px;}
.x32_c00378{left:125.550000px;}
.x9e_c00378{left:127.800000px;}
.x9a_c00378{left:129.300000px;}
.x6e_c00378{left:130.350000px;}
.x93_c00378{left:131.700000px;}
.x39_c00378{left:133.200000px;}
.x78_c00378{left:134.550000px;}
.x5c_c00378{left:136.050000px;}
.x76_c00378{left:138.900000px;}
.x17_c00378{left:141.300000px;}
.x10_c00378{left:143.550000px;}
.x9f_c00378{left:144.750000px;}
.x8_c00378{left:147.900000px;}
.x23_c00378{left:149.400000px;}
.x1d_c00378{left:153.300000px;}
.x8d_c00378{left:156.300000px;}
.x1f_c00378{left:158.250000px;}
.x5_c00378{left:160.950000px;}
.x7f_c00378{left:162.000000px;}
.x8b_c00378{left:163.800000px;}
.x9_c00378{left:166.200000px;}
.x49_c00378{left:168.300000px;}
.x94_c00378{left:169.500000px;}
.x2e_c00378{left:170.550000px;}
.x47_c00378{left:172.650000px;}
.x43_c00378{left:173.700000px;}
.x67_c00378{left:175.950000px;}
.xa0_c00378{left:178.200000px;}
.x3a_c00378{left:179.250000px;}
.x11_c00378{left:180.300000px;}
.x6a_c00378{left:181.650000px;}
.x88_c00378{left:184.350000px;}
.x68_c00378{left:185.700000px;}
.x24_c00378{left:186.900000px;}
.x18_c00378{left:190.950000px;}
.x6f_c00378{left:193.650000px;}
.x5d_c00378{left:196.500000px;}
.x33_c00378{left:198.600000px;}
.x91_c00378{left:199.800000px;}
.x65_c00378{left:201.150000px;}
.x25_c00378{left:204.600000px;}
.x4a_c00378{left:207.900000px;}
.x19_c00378{left:209.250000px;}
.x3b_c00378{left:210.900000px;}
.x28_c00378{left:211.950000px;}
.xa_c00378{left:213.750000px;}
.x2c_c00378{left:216.150000px;}
.x2f_c00378{left:218.550000px;}
.x20_c00378{left:221.250000px;}
.x40_c00378{left:223.500000px;}
.x96_c00378{left:224.550000px;}
.x6_c00378{left:226.050000px;}
.x79_c00378{left:228.900000px;}
.x6b_c00378{left:231.000000px;}
.x62_c00378{left:232.800000px;}
.x66_c00378{left:234.300000px;}
.x7_c00378{left:236.100000px;}
.x80_c00378{left:237.600000px;}
.x69_c00378{left:238.950000px;}
.x34_c00378{left:241.800000px;}
.x7d_c00378{left:244.800000px;}
.x30_c00378{left:245.850000px;}
.x53_c00378{left:247.050000px;}
.x44_c00378{left:249.000000px;}
.x8e_c00378{left:250.950000px;}
.x70_c00378{left:252.300000px;}
.x12_c00378{left:254.100000px;}
.x1a_c00378{left:256.050000px;}
.x41_c00378{left:258.750000px;}
.x5e_c00378{left:262.050000px;}
.x59_c00378{left:263.550000px;}
.x8c_c00378{left:265.950000px;}
.x81_c00378{left:267.000000px;}
.x13_c00378{left:268.500000px;}
.x42_c00378{left:269.550000px;}
.x4d_c00378{left:270.900000px;}
.xb_c00378{left:272.850000px;}
.x54_c00378{left:274.350000px;}
.x9c_c00378{left:275.550000px;}
.x48_c00378{left:277.050000px;}
.x97_c00378{left:278.400000px;}
.x35_c00378{left:279.900000px;}
.x85_c00378{left:286.200000px;}
.x98_c00378{left:289.500000px;}
.x21_c00378{left:291.150000px;}
.x63_c00378{left:292.200000px;}
.x3c_c00378{left:293.400000px;}
.x89_c00378{left:294.900000px;}
.x82_c00378{left:296.100000px;}
.x71_c00378{left:298.350000px;}
.x8a_c00378{left:300.000000px;}
.x64_c00378{left:303.000000px;}
.x29_c00378{left:304.050000px;}
.x14_c00378{left:307.350000px;}
.x77_c00378{left:309.000000px;}
.x55_c00378{left:310.050000px;}
.x22_c00378{left:312.000000px;}
.x4e_c00378{left:313.800000px;}
.x1_c00378{left:315.750000px;}
.x83_c00378{left:317.700000px;}
.x36_c00378{left:318.750000px;}
.x92_c00378{left:323.850000px;}
.x4b_c00378{left:324.900000px;}
.xc_c00378{left:326.550000px;}
.x72_c00378{left:328.950000px;}
.x5f_c00378{left:330.000000px;}
.x5a_c00378{left:331.650000px;}
.x86_c00378{left:335.550000px;}
.x7a_c00378{left:336.900000px;}
.x8f_c00378{left:338.100000px;}
.x1b_c00378{left:341.700000px;}
.x9d_c00378{left:342.750000px;}
.x4f_c00378{left:347.250000px;}
.x31_c00378{left:349.500000px;}
.x9b_c00378{left:351.150000px;}
.x3d_c00378{left:352.800000px;}
.x37_c00378{left:354.000000px;}
.x15_c00378{left:355.950000px;}
.x95_c00378{left:357.900000px;}
.x73_c00378{left:359.550000px;}
.x3e_c00378{left:361.800000px;}
.xd_c00378{left:362.850000px;}
.x6c_c00378{left:365.700000px;}
.x87_c00378{left:366.750000px;}
.x56_c00378{left:367.950000px;}
.x1c_c00378{left:369.000000px;}
.x5b_c00378{left:370.200000px;}
.x4c_c00378{left:372.450000px;}
.x2d_c00378{left:377.850000px;}
.x45_c00378{left:379.350000px;}
.x50_c00378{left:380.700000px;}
.xe_c00378{left:383.700000px;}
.x60_c00378{left:386.550000px;}
.x2a_c00378{left:389.700000px;}
.x38_c00378{left:392.100000px;}
.x74_c00378{left:393.750000px;}
.x7b_c00378{left:394.800000px;}
.x51_c00378{left:399.750000px;}
.x14a_c00378{left:426.000000px;}
.x13f_c00378{left:427.350000px;}
.x134_c00378{left:428.400000px;}
.x12c_c00378{left:429.900000px;}
.x106_c00378{left:430.950000px;}
.xf3_c00378{left:438.150000px;}
.x14f_c00378{left:441.300000px;}
.x142_c00378{left:442.500000px;}
.x130_c00378{left:443.850000px;}
.xb4_c00378{left:445.200000px;}
.x129_c00378{left:447.450000px;}
.xa1_c00378{left:448.500000px;}
.xeb_c00378{left:449.550000px;}
.xc8_c00378{left:450.600000px;}
.x122_c00378{left:453.300000px;}
.x148_c00378{left:454.800000px;}
.x140_c00378{left:455.850000px;}
.x135_c00378{left:457.200000px;}
.x158_c00378{left:459.900000px;}
.x154_c00378{left:461.400000px;}
.x112_c00378{left:464.100000px;}
.xa2_c00378{left:465.750000px;}
.x150_c00378{left:467.250000px;}
.xca_c00378{left:468.300000px;}
.x13e_c00378{left:470.550000px;}
.xab_c00378{left:472.500000px;}
.x138_c00378{left:473.550000px;}
.x11c_c00378{left:475.800000px;}
.xfa_c00378{left:478.800000px;}
.x151_c00378{left:480.600000px;}
.xf4_c00378{left:481.650000px;}
.xa3_c00378{left:482.700000px;}
.x123_c00378{left:483.900000px;}
.xe1_c00378{left:487.200000px;}
.xdd_c00378{left:489.900000px;}
.x107_c00378{left:491.850000px;}
.x143_c00378{left:493.350000px;}
.x139_c00378{left:494.400000px;}
.x12e_c00378{left:495.750000px;}
.xb5_c00378{left:497.100000px;}
.xd0_c00378{left:498.900000px;}
.x131_c00378{left:500.400000px;}
.xd5_c00378{left:501.450000px;}
.xf5_c00378{left:503.250000px;}
.xfe_c00378{left:504.600000px;}
.x15a_c00378{left:506.850000px;}
.x108_c00378{left:509.550000px;}
.xd6_c00378{left:510.750000px;}
.x101_c00378{left:512.250000px;}
.xff_c00378{left:514.350000px;}
.xec_c00378{left:515.550000px;}
.x116_c00378{left:518.850000px;}
.xf6_c00378{left:520.200000px;}
.xb6_c00378{left:521.550000px;}
.x156_c00378{left:523.200000px;}
.xbc_c00378{left:524.850000px;}
.x10c_c00378{left:526.800000px;}
.xe6_c00378{left:528.300000px;}
.xac_c00378{left:529.800000px;}
.xcb_c00378{left:531.300000px;}
.x124_c00378{left:532.350000px;}
.x121_c00378{left:534.750000px;}
.xe2_c00378{left:536.550000px;}
.x13b_c00378{left:538.650000px;}
.xd1_c00378{left:540.000000px;}
.xcc_c00378{left:541.050000px;}
.xd7_c00378{left:546.000000px;}
.xa4_c00378{left:549.300000px;}
.xad_c00378{left:550.350000px;}
.x104_c00378{left:552.150000px;}
.x126_c00378{left:553.500000px;}
.xbd_c00378{left:555.150000px;}
.x159_c00378{left:557.100000px;}
.xde_c00378{left:559.800000px;}
.xc2_c00378{left:561.600000px;}
.xb7_c00378{left:563.250000px;}
.x149_c00378{left:565.200000px;}
.xe3_c00378{left:566.850000px;}
.x109_c00378{left:569.250000px;}
.xed_c00378{left:571.800000px;}
.xd8_c00378{left:575.100000px;}
.x117_c00378{left:576.450000px;}
.xc3_c00378{left:578.550000px;}
.x113_c00378{left:580.050000px;}
.xdf_c00378{left:581.700000px;}
.x132_c00378{left:583.500000px;}
.xa5_c00378{left:587.100000px;}
.xe7_c00378{left:589.500000px;}
.xbe_c00378{left:591.450000px;}
.x11d_c00378{left:594.300000px;}
.xfb_c00378{left:595.350000px;}
.x127_c00378{left:596.400000px;}
.xcd_c00378{left:598.650000px;}
.xe0_c00378{left:600.000000px;}
.xd9_c00378{left:601.800000px;}
.x111_c00378{left:603.450000px;}
.xee_c00378{left:606.300000px;}
.xfc_c00378{left:608.250000px;}
.x128_c00378{left:609.300000px;}
.xb8_c00378{left:610.800000px;}
.x13a_c00378{left:614.250000px;}
.xe4_c00378{left:615.750000px;}
.x105_c00378{left:617.700000px;}
.x10a_c00378{left:621.750000px;}
.xbf_c00378{left:622.800000px;}
.xae_c00378{left:623.850000px;}
.x10d_c00378{left:625.800000px;}
.xef_c00378{left:627.900000px;}
.x155_c00378{left:629.850000px;}
.xa6_c00378{left:631.800000px;}
.xc9_c00378{left:634.500000px;}
.x12a_c00378{left:637.200000px;}
.xaf_c00378{left:639.750000px;}
.x11e_c00378{left:641.400000px;}
.xe8_c00378{left:642.450000px;}
.xda_c00378{left:644.250000px;}
.x136_c00378{left:646.650000px;}
.x118_c00378{left:648.750000px;}
.xf7_c00378{left:651.150000px;}
.x102_c00378{left:652.350000px;}
.x14b_c00378{left:654.450000px;}
.xc4_c00378{left:656.700000px;}
.xf0_c00378{left:658.800000px;}
.xc0_c00378{left:660.300000px;}
.x10f_c00378{left:661.350000px;}
.xe9_c00378{left:663.300000px;}
.xce_c00378{left:664.500000px;}
.xa7_c00378{left:666.000000px;}
.x137_c00378{left:668.550000px;}
.x12b_c00378{left:670.350000px;}
.xb0_c00378{left:672.150000px;}
.x152_c00378{left:673.500000px;}
.x144_c00378{left:674.850000px;}
.xc5_c00378{left:676.200000px;}
.x119_c00378{left:677.550000px;}
.x13c_c00378{left:678.600000px;}
.xb9_c00378{left:680.700000px;}
.xa8_c00378{left:683.700000px;}
.x10e_c00378{left:684.900000px;}
.xd2_c00378{left:688.350000px;}
.xf8_c00378{left:689.400000px;}
.x11f_c00378{left:691.050000px;}
.x110_c00378{left:692.700000px;}
.x13d_c00378{left:694.500000px;}
.x14c_c00378{left:696.150000px;}
.x146_c00378{left:698.850000px;}
.xfd_c00378{left:700.050000px;}
.x125_c00378{left:701.100000px;}
.xba_c00378{left:704.100000px;}
.xea_c00378{left:705.450000px;}
.xe5_c00378{left:707.250000px;}
.xb1_c00378{left:708.450000px;}
.x153_c00378{left:709.500000px;}
.xdb_c00378{left:710.550000px;}
.xc6_c00378{left:712.200000px;}
.x114_c00378{left:714.000000px;}
.x147_c00378{left:715.050000px;}
.xd3_c00378{left:716.100000px;}
.x145_c00378{left:717.750000px;}
.x141_c00378{left:720.300000px;}
.xf9_c00378{left:721.500000px;}
.xf1_c00378{left:723.150000px;}
.x100_c00378{left:724.650000px;}
.xa9_c00378{left:725.850000px;}
.xb2_c00378{left:727.500000px;}
.x157_c00378{left:728.850000px;}
.xdc_c00378{left:730.050000px;}
.x133_c00378{left:731.850000px;}
.x103_c00378{left:733.800000px;}
.x12d_c00378{left:734.850000px;}
.x2_c00378{left:736.950000px;}
.xc7_c00378{left:738.900000px;}
.xc1_c00378{left:740.250000px;}
.x11a_c00378{left:742.350000px;}
.xf2_c00378{left:743.700000px;}
.xb3_c00378{left:744.750000px;}
.xaa_c00378{left:747.150000px;}
.x14e_c00378{left:748.650000px;}
.x120_c00378{left:750.000000px;}
.x14d_c00378{left:751.200000px;}
.xd4_c00378{left:754.950000px;}
.xcf_c00378{left:759.150000px;}
.x10b_c00378{left:760.350000px;}
.x115_c00378{left:761.850000px;}
.xbb_c00378{left:763.500000px;}
.x12f_c00378{left:768.600000px;}
.x11b_c00378{left:774.000000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.wsc_c00378{word-spacing:-11.009311pt;}
.ws8_c00378{word-spacing:-8.654971pt;}
.wsd_c00378{word-spacing:-5.656566pt;}
.wsb_c00378{word-spacing:-4.789809pt;}
.ws9_c00378{word-spacing:-3.430998pt;}
.wse_c00378{word-spacing:0.000000pt;}
.wsa_c00378{word-spacing:9.596603pt;}
.ws0_c00378{word-spacing:13.757412pt;}
.ws7_c00378{word-spacing:14.920635pt;}
.ws5_c00378{word-spacing:22.857143pt;}
.ws4_c00378{word-spacing:26.031746pt;}
.ws6_c00378{word-spacing:31.851852pt;}
.ws3_c00378{word-spacing:35.555556pt;}
.ws2_c00378{word-spacing:63.470738pt;}
.ws1_c00378{word-spacing:1545.404580pt;}
._3_c00378{width:49.523810pt;}
._1_c00378{width:52.698413pt;}
._2_c00378{width:57.460317pt;}
._0_c00378{width:65.925926pt;}
.fs5_c00378{font-size:26.666667pt;}
.fs4_c00378{font-size:48.000000pt;}
.fs3_c00378{font-size:53.333333pt;}
.fs1_c00378{font-size:58.666667pt;}
.fs2_c00378{font-size:64.000000pt;}
.fs0_c00378{font-size:74.666667pt;}
.y0_c00378{bottom:0.000000pt;}
.y6b_c00378{bottom:167.333333pt;}
.y37_c00378{bottom:169.600000pt;}
.y6a_c00378{bottom:180.800000pt;}
.y36_c00378{bottom:185.866667pt;}
.y69_c00378{bottom:193.600000pt;}
.y35_c00378{bottom:201.866667pt;}
.y68_c00378{bottom:206.133333pt;}
.y34_c00378{bottom:217.600000pt;}
.y67_c00378{bottom:219.200000pt;}
.y66_c00378{bottom:232.266667pt;}
.y33_c00378{bottom:233.600000pt;}
.y65_c00378{bottom:245.066667pt;}
.y32_c00378{bottom:249.600000pt;}
.y64_c00378{bottom:257.866667pt;}
.y31_c00378{bottom:265.333333pt;}
.y63_c00378{bottom:270.666667pt;}
.y30_c00378{bottom:281.333333pt;}
.y62_c00378{bottom:283.200000pt;}
.y61_c00378{bottom:296.000000pt;}
.y2f_c00378{bottom:296.800000pt;}
.y60_c00378{bottom:309.466667pt;}
.y2e_c00378{bottom:312.533333pt;}
.y5f_c00378{bottom:321.333333pt;}
.y2d_c00378{bottom:328.533333pt;}
.y5e_c00378{bottom:334.133333pt;}
.y2c_c00378{bottom:344.266667pt;}
.y5d_c00378{bottom:346.933333pt;}
.y5c_c00378{bottom:360.000000pt;}
.y2b_c00378{bottom:370.533333pt;}
.y2a_c00378{bottom:371.600000pt;}
.y5b_c00378{bottom:372.800000pt;}
.y5a_c00378{bottom:384.933333pt;}
.y29_c00378{bottom:395.866667pt;}
.y28_c00378{bottom:397.066667pt;}
.y27_c00378{bottom:408.266667pt;}
.y24_c00378{bottom:418.266667pt;}
.y26_c00378{bottom:422.400000pt;}
.y59_c00378{bottom:429.466667pt;}
.y25_c00378{bottom:433.866667pt;}
.y58_c00378{bottom:445.466667pt;}
.y23_c00378{bottom:448.000000pt;}
.y22_c00378{bottom:459.466667pt;}
.y21_c00378{bottom:473.866667pt;}
.y57_c00378{bottom:476.533333pt;}
.y20_c00378{bottom:486.666667pt;}
.y1f_c00378{bottom:497.866667pt;}
.y56_c00378{bottom:507.466667pt;}
.y1e_c00378{bottom:512.266667pt;}
.y55_c00378{bottom:523.466667pt;}
.y1d_c00378{bottom:523.866667pt;}
.y1c_c00378{bottom:538.533333pt;}
.y54_c00378{bottom:539.466667pt;}
.y53_c00378{bottom:555.200000pt;}
.y1b_c00378{bottom:557.733333pt;}
.y1a_c00378{bottom:574.666667pt;}
.y52_c00378{bottom:575.066667pt;}
.y51_c00378{bottom:594.133333pt;}
.y19_c00378{bottom:601.600000pt;}
.y50_c00378{bottom:609.866667pt;}
.y18_c00378{bottom:617.600000pt;}
.y4f_c00378{bottom:625.866667pt;}
.y17_c00378{bottom:633.600000pt;}
.y4e_c00378{bottom:641.600000pt;}
.y16_c00378{bottom:649.333333pt;}
.y4d_c00378{bottom:657.600000pt;}
.y15_c00378{bottom:665.333333pt;}
.y4c_c00378{bottom:673.600000pt;}
.y14_c00378{bottom:680.666667pt;}
.y4b_c00378{bottom:689.333333pt;}
.y13_c00378{bottom:696.800000pt;}
.y4a_c00378{bottom:705.333333pt;}
.y12_c00378{bottom:712.800000pt;}
.y49_c00378{bottom:725.066667pt;}
.y11_c00378{bottom:728.533333pt;}
.y48_c00378{bottom:741.066667pt;}
.y10_c00378{bottom:744.266667pt;}
.y47_c00378{bottom:756.400000pt;}
.yf_c00378{bottom:760.266667pt;}
.y46_c00378{bottom:772.400000pt;}
.ye_c00378{bottom:775.600000pt;}
.y45_c00378{bottom:788.133333pt;}
.yd_c00378{bottom:791.600000pt;}
.y44_c00378{bottom:803.866667pt;}
.yc_c00378{bottom:807.333333pt;}
.y43_c00378{bottom:819.600000pt;}
.yb_c00378{bottom:820.800000pt;}
.y42_c00378{bottom:835.333333pt;}
.ya_c00378{bottom:839.066667pt;}
.y41_c00378{bottom:851.333333pt;}
.y9_c00378{bottom:865.866667pt;}
.y40_c00378{bottom:867.066667pt;}
.y3f_c00378{bottom:883.066667pt;}
.y8_c00378{bottom:886.666667pt;}
.y3e_c00378{bottom:899.066667pt;}
.y7_c00378{bottom:904.266667pt;}
.y3d_c00378{bottom:914.800000pt;}
.y6_c00378{bottom:923.466667pt;}
.y3c_c00378{bottom:930.533333pt;}
.y5_c00378{bottom:941.733333pt;}
.y3b_c00378{bottom:946.533333pt;}
.y4_c00378{bottom:957.733333pt;}
.y3a_c00378{bottom:961.866667pt;}
.y3_c00378{bottom:973.466667pt;}
.y39_c00378{bottom:977.866667pt;}
.y2_c00378{bottom:993.600000pt;}
.y38_c00378{bottom:993.866667pt;}
.y1_c00378{bottom:1017.333333pt;}
.h7_c00378{height:26.666667pt;}
.h6_c00378{height:48.000000pt;}
.h5_c00378{height:53.333333pt;}
.h3_c00378{height:58.666667pt;}
.h4_c00378{height:64.000000pt;}
.h2_c00378{height:74.666667pt;}
.h1_c00378{height:1127.333333pt;}
.h0_c00378{height:1127.359944pt;}
.w0_c00378{width:853.760009pt;}
.w1_c00378{width:854.000000pt;}
.x0_c00378{left:0.000000pt;}
.x26_c00378{left:62.666667pt;}
.x57_c00378{left:68.133333pt;}
.x99_c00378{left:69.200000pt;}
.x75_c00378{left:75.733333pt;}
.x2b_c00378{left:76.933333pt;}
.x46_c00378{left:78.000000pt;}
.xf_c00378{left:78.933333pt;}
.x61_c00378{left:79.866667pt;}
.x3_c00378{left:83.866667pt;}
.x7c_c00378{left:86.933333pt;}
.x84_c00378{left:88.133333pt;}
.x4_c00378{left:95.333333pt;}
.x1e_c00378{left:96.533333pt;}
.x6d_c00378{left:97.866667pt;}
.x52_c00378{left:99.200000pt;}
.x7e_c00378{left:101.466667pt;}
.x27_c00378{left:102.933333pt;}
.x90_c00378{left:104.666667pt;}
.x58_c00378{left:107.200000pt;}
.x3f_c00378{left:108.533333pt;}
.x16_c00378{left:110.266667pt;}
.x32_c00378{left:111.600000pt;}
.x9e_c00378{left:113.600000pt;}
.x9a_c00378{left:114.933333pt;}
.x6e_c00378{left:115.866667pt;}
.x93_c00378{left:117.066667pt;}
.x39_c00378{left:118.400000pt;}
.x78_c00378{left:119.600000pt;}
.x5c_c00378{left:120.933333pt;}
.x76_c00378{left:123.466667pt;}
.x17_c00378{left:125.600000pt;}
.x10_c00378{left:127.600000pt;}
.x9f_c00378{left:128.666667pt;}
.x8_c00378{left:131.466667pt;}
.x23_c00378{left:132.800000pt;}
.x1d_c00378{left:136.266667pt;}
.x8d_c00378{left:138.933333pt;}
.x1f_c00378{left:140.666667pt;}
.x5_c00378{left:143.066667pt;}
.x7f_c00378{left:144.000000pt;}
.x8b_c00378{left:145.600000pt;}
.x9_c00378{left:147.733333pt;}
.x49_c00378{left:149.600000pt;}
.x94_c00378{left:150.666667pt;}
.x2e_c00378{left:151.600000pt;}
.x47_c00378{left:153.466667pt;}
.x43_c00378{left:154.400000pt;}
.x67_c00378{left:156.400000pt;}
.xa0_c00378{left:158.400000pt;}
.x3a_c00378{left:159.333333pt;}
.x11_c00378{left:160.266667pt;}
.x6a_c00378{left:161.466667pt;}
.x88_c00378{left:163.866667pt;}
.x68_c00378{left:165.066667pt;}
.x24_c00378{left:166.133333pt;}
.x18_c00378{left:169.733333pt;}
.x6f_c00378{left:172.133333pt;}
.x5d_c00378{left:174.666667pt;}
.x33_c00378{left:176.533333pt;}
.x91_c00378{left:177.600000pt;}
.x65_c00378{left:178.800000pt;}
.x25_c00378{left:181.866667pt;}
.x4a_c00378{left:184.800000pt;}
.x19_c00378{left:186.000000pt;}
.x3b_c00378{left:187.466667pt;}
.x28_c00378{left:188.400000pt;}
.xa_c00378{left:190.000000pt;}
.x2c_c00378{left:192.133333pt;}
.x2f_c00378{left:194.266667pt;}
.x20_c00378{left:196.666667pt;}
.x40_c00378{left:198.666667pt;}
.x96_c00378{left:199.600000pt;}
.x6_c00378{left:200.933333pt;}
.x79_c00378{left:203.466667pt;}
.x6b_c00378{left:205.333333pt;}
.x62_c00378{left:206.933333pt;}
.x66_c00378{left:208.266667pt;}
.x7_c00378{left:209.866667pt;}
.x80_c00378{left:211.200000pt;}
.x69_c00378{left:212.400000pt;}
.x34_c00378{left:214.933333pt;}
.x7d_c00378{left:217.600000pt;}
.x30_c00378{left:218.533333pt;}
.x53_c00378{left:219.600000pt;}
.x44_c00378{left:221.333333pt;}
.x8e_c00378{left:223.066667pt;}
.x70_c00378{left:224.266667pt;}
.x12_c00378{left:225.866667pt;}
.x1a_c00378{left:227.600000pt;}
.x41_c00378{left:230.000000pt;}
.x5e_c00378{left:232.933333pt;}
.x59_c00378{left:234.266667pt;}
.x8c_c00378{left:236.400000pt;}
.x81_c00378{left:237.333333pt;}
.x13_c00378{left:238.666667pt;}
.x42_c00378{left:239.600000pt;}
.x4d_c00378{left:240.800000pt;}
.xb_c00378{left:242.533333pt;}
.x54_c00378{left:243.866667pt;}
.x9c_c00378{left:244.933333pt;}
.x48_c00378{left:246.266667pt;}
.x97_c00378{left:247.466667pt;}
.x35_c00378{left:248.800000pt;}
.x85_c00378{left:254.400000pt;}
.x98_c00378{left:257.333333pt;}
.x21_c00378{left:258.800000pt;}
.x63_c00378{left:259.733333pt;}
.x3c_c00378{left:260.800000pt;}
.x89_c00378{left:262.133333pt;}
.x82_c00378{left:263.200000pt;}
.x71_c00378{left:265.200000pt;}
.x8a_c00378{left:266.666667pt;}
.x64_c00378{left:269.333333pt;}
.x29_c00378{left:270.266667pt;}
.x14_c00378{left:273.200000pt;}
.x77_c00378{left:274.666667pt;}
.x55_c00378{left:275.600000pt;}
.x22_c00378{left:277.333333pt;}
.x4e_c00378{left:278.933333pt;}
.x1_c00378{left:280.666667pt;}
.x83_c00378{left:282.400000pt;}
.x36_c00378{left:283.333333pt;}
.x92_c00378{left:287.866667pt;}
.x4b_c00378{left:288.800000pt;}
.xc_c00378{left:290.266667pt;}
.x72_c00378{left:292.400000pt;}
.x5f_c00378{left:293.333333pt;}
.x5a_c00378{left:294.800000pt;}
.x86_c00378{left:298.266667pt;}
.x7a_c00378{left:299.466667pt;}
.x8f_c00378{left:300.533333pt;}
.x1b_c00378{left:303.733333pt;}
.x9d_c00378{left:304.666667pt;}
.x4f_c00378{left:308.666667pt;}
.x31_c00378{left:310.666667pt;}
.x9b_c00378{left:312.133333pt;}
.x3d_c00378{left:313.600000pt;}
.x37_c00378{left:314.666667pt;}
.x15_c00378{left:316.400000pt;}
.x95_c00378{left:318.133333pt;}
.x73_c00378{left:319.600000pt;}
.x3e_c00378{left:321.600000pt;}
.xd_c00378{left:322.533333pt;}
.x6c_c00378{left:325.066667pt;}
.x87_c00378{left:326.000000pt;}
.x56_c00378{left:327.066667pt;}
.x1c_c00378{left:328.000000pt;}
.x5b_c00378{left:329.066667pt;}
.x4c_c00378{left:331.066667pt;}
.x2d_c00378{left:335.866667pt;}
.x45_c00378{left:337.200000pt;}
.x50_c00378{left:338.400000pt;}
.xe_c00378{left:341.066667pt;}
.x60_c00378{left:343.600000pt;}
.x2a_c00378{left:346.400000pt;}
.x38_c00378{left:348.533333pt;}
.x74_c00378{left:350.000000pt;}
.x7b_c00378{left:350.933333pt;}
.x51_c00378{left:355.333333pt;}
.x14a_c00378{left:378.666667pt;}
.x13f_c00378{left:379.866667pt;}
.x134_c00378{left:380.800000pt;}
.x12c_c00378{left:382.133333pt;}
.x106_c00378{left:383.066667pt;}
.xf3_c00378{left:389.466667pt;}
.x14f_c00378{left:392.266667pt;}
.x142_c00378{left:393.333333pt;}
.x130_c00378{left:394.533333pt;}
.xb4_c00378{left:395.733333pt;}
.x129_c00378{left:397.733333pt;}
.xa1_c00378{left:398.666667pt;}
.xeb_c00378{left:399.600000pt;}
.xc8_c00378{left:400.533333pt;}
.x122_c00378{left:402.933333pt;}
.x148_c00378{left:404.266667pt;}
.x140_c00378{left:405.200000pt;}
.x135_c00378{left:406.400000pt;}
.x158_c00378{left:408.800000pt;}
.x154_c00378{left:410.133333pt;}
.x112_c00378{left:412.533333pt;}
.xa2_c00378{left:414.000000pt;}
.x150_c00378{left:415.333333pt;}
.xca_c00378{left:416.266667pt;}
.x13e_c00378{left:418.266667pt;}
.xab_c00378{left:420.000000pt;}
.x138_c00378{left:420.933333pt;}
.x11c_c00378{left:422.933333pt;}
.xfa_c00378{left:425.600000pt;}
.x151_c00378{left:427.200000pt;}
.xf4_c00378{left:428.133333pt;}
.xa3_c00378{left:429.066667pt;}
.x123_c00378{left:430.133333pt;}
.xe1_c00378{left:433.066667pt;}
.xdd_c00378{left:435.466667pt;}
.x107_c00378{left:437.200000pt;}
.x143_c00378{left:438.533333pt;}
.x139_c00378{left:439.466667pt;}
.x12e_c00378{left:440.666667pt;}
.xb5_c00378{left:441.866667pt;}
.xd0_c00378{left:443.466667pt;}
.x131_c00378{left:444.800000pt;}
.xd5_c00378{left:445.733333pt;}
.xf5_c00378{left:447.333333pt;}
.xfe_c00378{left:448.533333pt;}
.x15a_c00378{left:450.533333pt;}
.x108_c00378{left:452.933333pt;}
.xd6_c00378{left:454.000000pt;}
.x101_c00378{left:455.333333pt;}
.xff_c00378{left:457.200000pt;}
.xec_c00378{left:458.266667pt;}
.x116_c00378{left:461.200000pt;}
.xf6_c00378{left:462.400000pt;}
.xb6_c00378{left:463.600000pt;}
.x156_c00378{left:465.066667pt;}
.xbc_c00378{left:466.533333pt;}
.x10c_c00378{left:468.266667pt;}
.xe6_c00378{left:469.600000pt;}
.xac_c00378{left:470.933333pt;}
.xcb_c00378{left:472.266667pt;}
.x124_c00378{left:473.200000pt;}
.x121_c00378{left:475.333333pt;}
.xe2_c00378{left:476.933333pt;}
.x13b_c00378{left:478.800000pt;}
.xd1_c00378{left:480.000000pt;}
.xcc_c00378{left:480.933333pt;}
.xd7_c00378{left:485.333333pt;}
.xa4_c00378{left:488.266667pt;}
.xad_c00378{left:489.200000pt;}
.x104_c00378{left:490.800000pt;}
.x126_c00378{left:492.000000pt;}
.xbd_c00378{left:493.466667pt;}
.x159_c00378{left:495.200000pt;}
.xde_c00378{left:497.600000pt;}
.xc2_c00378{left:499.200000pt;}
.xb7_c00378{left:500.666667pt;}
.x149_c00378{left:502.400000pt;}
.xe3_c00378{left:503.866667pt;}
.x109_c00378{left:506.000000pt;}
.xed_c00378{left:508.266667pt;}
.xd8_c00378{left:511.200000pt;}
.x117_c00378{left:512.400000pt;}
.xc3_c00378{left:514.266667pt;}
.x113_c00378{left:515.600000pt;}
.xdf_c00378{left:517.066667pt;}
.x132_c00378{left:518.666667pt;}
.xa5_c00378{left:521.866667pt;}
.xe7_c00378{left:524.000000pt;}
.xbe_c00378{left:525.733333pt;}
.x11d_c00378{left:528.266667pt;}
.xfb_c00378{left:529.200000pt;}
.x127_c00378{left:530.133333pt;}
.xcd_c00378{left:532.133333pt;}
.xe0_c00378{left:533.333333pt;}
.xd9_c00378{left:534.933333pt;}
.x111_c00378{left:536.400000pt;}
.xee_c00378{left:538.933333pt;}
.xfc_c00378{left:540.666667pt;}
.x128_c00378{left:541.600000pt;}
.xb8_c00378{left:542.933333pt;}
.x13a_c00378{left:546.000000pt;}
.xe4_c00378{left:547.333333pt;}
.x105_c00378{left:549.066667pt;}
.x10a_c00378{left:552.666667pt;}
.xbf_c00378{left:553.600000pt;}
.xae_c00378{left:554.533333pt;}
.x10d_c00378{left:556.266667pt;}
.xef_c00378{left:558.133333pt;}
.x155_c00378{left:559.866667pt;}
.xa6_c00378{left:561.600000pt;}
.xc9_c00378{left:564.000000pt;}
.x12a_c00378{left:566.400000pt;}
.xaf_c00378{left:568.666667pt;}
.x11e_c00378{left:570.133333pt;}
.xe8_c00378{left:571.066667pt;}
.xda_c00378{left:572.666667pt;}
.x136_c00378{left:574.800000pt;}
.x118_c00378{left:576.666667pt;}
.xf7_c00378{left:578.800000pt;}
.x102_c00378{left:579.866667pt;}
.x14b_c00378{left:581.733333pt;}
.xc4_c00378{left:583.733333pt;}
.xf0_c00378{left:585.600000pt;}
.xc0_c00378{left:586.933333pt;}
.x10f_c00378{left:587.866667pt;}
.xe9_c00378{left:589.600000pt;}
.xce_c00378{left:590.666667pt;}
.xa7_c00378{left:592.000000pt;}
.x137_c00378{left:594.266667pt;}
.x12b_c00378{left:595.866667pt;}
.xb0_c00378{left:597.466667pt;}
.x152_c00378{left:598.666667pt;}
.x144_c00378{left:599.866667pt;}
.xc5_c00378{left:601.066667pt;}
.x119_c00378{left:602.266667pt;}
.x13c_c00378{left:603.200000pt;}
.xb9_c00378{left:605.066667pt;}
.xa8_c00378{left:607.733333pt;}
.x10e_c00378{left:608.800000pt;}
.xd2_c00378{left:611.866667pt;}
.xf8_c00378{left:612.800000pt;}
.x11f_c00378{left:614.266667pt;}
.x110_c00378{left:615.733333pt;}
.x13d_c00378{left:617.333333pt;}
.x14c_c00378{left:618.800000pt;}
.x146_c00378{left:621.200000pt;}
.xfd_c00378{left:622.266667pt;}
.x125_c00378{left:623.200000pt;}
.xba_c00378{left:625.866667pt;}
.xea_c00378{left:627.066667pt;}
.xe5_c00378{left:628.666667pt;}
.xb1_c00378{left:629.733333pt;}
.x153_c00378{left:630.666667pt;}
.xdb_c00378{left:631.600000pt;}
.xc6_c00378{left:633.066667pt;}
.x114_c00378{left:634.666667pt;}
.x147_c00378{left:635.600000pt;}
.xd3_c00378{left:636.533333pt;}
.x145_c00378{left:638.000000pt;}
.x141_c00378{left:640.266667pt;}
.xf9_c00378{left:641.333333pt;}
.xf1_c00378{left:642.800000pt;}
.x100_c00378{left:644.133333pt;}
.xa9_c00378{left:645.200000pt;}
.xb2_c00378{left:646.666667pt;}
.x157_c00378{left:647.866667pt;}
.xdc_c00378{left:648.933333pt;}
.x133_c00378{left:650.533333pt;}
.x103_c00378{left:652.266667pt;}
.x12d_c00378{left:653.200000pt;}
.x2_c00378{left:655.066667pt;}
.xc7_c00378{left:656.800000pt;}
.xc1_c00378{left:658.000000pt;}
.x11a_c00378{left:659.866667pt;}
.xf2_c00378{left:661.066667pt;}
.xb3_c00378{left:662.000000pt;}
.xaa_c00378{left:664.133333pt;}
.x14e_c00378{left:665.466667pt;}
.x120_c00378{left:666.666667pt;}
.x14d_c00378{left:667.733333pt;}
.xd4_c00378{left:671.066667pt;}
.xcf_c00378{left:674.800000pt;}
.x10b_c00378{left:675.866667pt;}
.x115_c00378{left:677.200000pt;}
.xbb_c00378{left:678.666667pt;}
.x12f_c00378{left:683.200000pt;}
.x11b_c00378{left:688.000000pt;}
}





/* 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_c00379 {
    display:none;
  }
  .loading-indicator_c00379.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00379 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_c00379 { 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_c00379" -> "#page-container .classname_c00379")
 */
.pf_c00379 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00379 { /* 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_c00379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00379 { /* 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_c00379 { /* 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_c00379 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00379 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00379 {overflow:visible;}
  }
}
.c_c00379 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00379 { /* 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_c00379:after { /* webkit #35443 */
  content: '';
}
.t_c00379:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00379 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 */
}
.__c00379 { /* 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_c00379 { /* info for Javascript */
  display:none;
}
.l_c00379 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00379 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00379 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00379: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_c00379 {
    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_c00379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00379.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_c00379 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00379;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.000000;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;}
.m6b_c00379{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mad_c00379{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.md9_c00379{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mba_c00379{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m21_c00379{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00379{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md4_c00379{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00379{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md5_c00379{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.me4_c00379{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00379{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00379{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md6_c00379{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00379{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00379{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m55_c00379{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m42_c00379{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m89_c00379{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00379{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00379{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.md0_c00379{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m87_c00379{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m12_c00379{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00379{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00379{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m47_c00379{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00379{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md1_c00379{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m45_c00379{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m71_c00379{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.me5_c00379{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m15_c00379{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00379{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m18_c00379{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00379{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mea_c00379{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00379{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m3_c00379{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00379{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mca_c00379{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13_c00379{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00379{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00379{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc_c00379{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m115_c00379{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00379{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m102_c00379{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m9_c00379{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00379{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mff_c00379{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m86_c00379{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m25_c00379{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00379{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m60_c00379{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m100_c00379{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00379{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m78_c00379{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.med_c00379{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m101_c00379{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m110_c00379{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m64_c00379{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00379{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00379{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00379{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00379{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m66_c00379{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00379{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00379{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00379{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00379{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m109_c00379{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00379{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00379{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me0_c00379{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mce_c00379{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m92_c00379{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m26_c00379{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00379{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00379{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m121_c00379{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00379{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m123_c00379{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mee_c00379{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m23_c00379{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m68_c00379{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00379{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m6_c00379{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m112_c00379{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m114_c00379{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m4_c00379{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m128_c00379{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00379{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00379{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mec_c00379{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.meb_c00379{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m76_c00379{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00379{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m29_c00379{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00379{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00379{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00379{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m84_c00379{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m98_c00379{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m63_c00379{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00379{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00379{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00379{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00379{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m46_c00379{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m111_c00379{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m11_c00379{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m90_c00379{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m104_c00379{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00379{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m116_c00379{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m73_c00379{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00379{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00379{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00379{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00379{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m17_c00379{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m54_c00379{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00379{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00379{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00379{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00379{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00379{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00379{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m124_c00379{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00379{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00379{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m119_c00379{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m22_c00379{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m20_c00379{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m41_c00379{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me9_c00379{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m103_c00379{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m24_c00379{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00379{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m49_c00379{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00379{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m30_c00379{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00379{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00379{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m39_c00379{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00379{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00379{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00379{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00379{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00379{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00379{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2_c00379{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m96_c00379{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00379{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m97_c00379{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m33_c00379{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00379{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m59_c00379{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me3_c00379{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00379{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00379{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m40_c00379{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m107_c00379{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mda_c00379{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m108_c00379{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m35_c00379{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m48_c00379{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m51_c00379{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00379{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m65_c00379{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00379{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m95_c00379{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00379{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00379{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me8_c00379{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m37_c00379{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m14_c00379{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m38_c00379{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00379{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00379{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m34_c00379{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00379{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m85_c00379{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00379{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00379{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00379{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m72_c00379{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m122_c00379{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m43_c00379{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m88_c00379{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me7_c00379{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00379{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m125_c00379{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00379{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m75_c00379{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m77_c00379{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00379{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00379{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m117_c00379{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m31_c00379{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md_c00379{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00379{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00379{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m10_c00379{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m83_c00379{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m127_c00379{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00379{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00379{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00379{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m120_c00379{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00379{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mac_c00379{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m36_c00379{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8_c00379{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00379{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00379{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m74_c00379{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00379{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m32_c00379{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00379{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m91_c00379{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00379{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m27_c00379{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00379{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00379{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m16_c00379{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m44_c00379{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mef_c00379{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me_c00379{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m52_c00379{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00379{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m126_c00379{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m50_c00379{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m106_c00379{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00379{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00379{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.md8_c00379{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00379{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00379{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m118_c00379{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m82_c00379{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m28_c00379{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00379{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb_c00379{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7_c00379{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mab_c00379{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m62_c00379{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);}
.ma4_c00379{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m81_c00379{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00379{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m69_c00379{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00379{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00379{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m58_c00379{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mae_c00379{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mde_c00379{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m67_c00379{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m70_c00379{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.me1_c00379{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00379{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00379{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma_c00379{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m105_c00379{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mf_c00379{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.maa_c00379{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00379{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00379{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me2_c00379{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00379{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00379{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m113_c00379{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m79_c00379{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m94_c00379{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m99_c00379{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m53_c00379{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00379{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00379{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.maf_c00379{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00379{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m56_c00379{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m57_c00379{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m5_c00379{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00379{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00379{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m93_c00379{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);}
.md3_c00379{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.md2_c00379{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.me6_c00379{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md7_c00379{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m61_c00379{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00379{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00379{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m80_c00379{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.m19_c00379{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00379{transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls4_c00379{letter-spacing:0.000000px;}
.ls2_c00379{letter-spacing:61.426230px;}
.ls0_c00379{letter-spacing:63.000000px;}
.ls1_c00379{letter-spacing:65.360656px;}
.ls3_c00379{letter-spacing:70.000000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{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__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf_c00379{word-spacing:-100.000000px;}
.wsb_c00379{word-spacing:-98.360656px;}
.wse_c00379{word-spacing:-94.426230px;}
.ws3_c00379{word-spacing:-90.000000px;}
.ws17_c00379{word-spacing:-14.253275px;}
.ws6_c00379{word-spacing:-8.333333px;}
.ws16_c00379{word-spacing:-7.777251px;}
.ws1_c00379{word-spacing:-4.105263px;}
.ws18_c00379{word-spacing:0.000000px;}
.ws15_c00379{word-spacing:0.888268px;}
.ws0_c00379{word-spacing:6.121294px;}
.wsa_c00379{word-spacing:15.000000px;}
.ws5_c00379{word-spacing:16.257611px;}
.ws2_c00379{word-spacing:19.994638px;}
.ws9_c00379{word-spacing:22.142857px;}
.ws4_c00379{word-spacing:23.211796px;}
.wsd_c00379{word-spacing:24.491803px;}
.ws10_c00379{word-spacing:25.714286px;}
.ws13_c00379{word-spacing:26.428954px;}
.ws11_c00379{word-spacing:29.285714px;}
.ws12_c00379{word-spacing:32.250000px;}
.ws8_c00379{word-spacing:34.642857px;}
.ws7_c00379{word-spacing:40.000000px;}
.wsc_c00379{word-spacing:43.923664px;}
.ws14_c00379{word-spacing:44.166667px;}
._a_c00379{margin-left:-70.000000px;}
._5_c00379{margin-left:-65.360656px;}
._1_c00379{margin-left:-63.000000px;}
._9_c00379{margin-left:-61.426230px;}
._b_c00379{width:4.166667px;}
._4_c00379{width:48.125000px;}
._c_c00379{width:52.142857px;}
._0_c00379{width:53.428954px;}
._3_c00379{width:59.285714px;}
._7_c00379{width:61.426230px;}
._8_c00379{width:65.360656px;}
._2_c00379{width:74.166667px;}
._6_c00379{width:81.503817px;}
.fc0_c00379{color:transparent;}
.fs7_c00379{font-size:30.000000px;}
.fs6_c00379{font-size:54.000000px;}
.fs3_c00379{font-size:60.000000px;}
.fs2_c00379{font-size:66.000000px;}
.fs4_c00379{font-size:72.000000px;}
.fs5_c00379{font-size:78.000000px;}
.fs0_c00379{font-size:102.000000px;}
.fs1_c00379{font-size:114.000000px;}
.y0_c00379{bottom:0.000000px;}
.y6e_c00379{bottom:180.300000px;}
.y37_c00379{bottom:198.750000px;}
.y6d_c00379{bottom:198.900000px;}
.y35_c00379{bottom:200.250000px;}
.y34_c00379{bottom:214.950000px;}
.y6c_c00379{bottom:216.600000px;}
.y33_c00379{bottom:229.050000px;}
.y6b_c00379{bottom:234.300000px;}
.y32_c00379{bottom:243.450000px;}
.y6a_c00379{bottom:252.000000px;}
.y31_c00379{bottom:257.100000px;}
.y36_c00379{bottom:259.500000px;}
.y69_c00379{bottom:270.000000px;}
.y30_c00379{bottom:271.500000px;}
.y2f_c00379{bottom:285.900000px;}
.y68_c00379{bottom:292.650000px;}
.y2e_c00379{bottom:306.000000px;}
.y67_c00379{bottom:310.650000px;}
.y2d_c00379{bottom:328.350000px;}
.y66_c00379{bottom:328.500000px;}
.y2c_c00379{bottom:340.800000px;}
.y65_c00379{bottom:346.500000px;}
.y2b_c00379{bottom:358.500000px;}
.y64_c00379{bottom:364.200000px;}
.y2a_c00379{bottom:380.700000px;}
.y63_c00379{bottom:382.200000px;}
.y29_c00379{bottom:398.700000px;}
.y62_c00379{bottom:400.500000px;}
.y28_c00379{bottom:416.700000px;}
.y61_c00379{bottom:418.200000px;}
.y27_c00379{bottom:434.700000px;}
.y60_c00379{bottom:436.200000px;}
.y26_c00379{bottom:453.000000px;}
.y5f_c00379{bottom:453.900000px;}
.y25_c00379{bottom:470.700000px;}
.y5e_c00379{bottom:472.200000px;}
.y24_c00379{bottom:488.700000px;}
.y5d_c00379{bottom:489.900000px;}
.y23_c00379{bottom:506.400000px;}
.y5c_c00379{bottom:507.600000px;}
.y22_c00379{bottom:524.400000px;}
.y5b_c00379{bottom:529.950000px;}
.y21_c00379{bottom:542.100000px;}
.y5a_c00379{bottom:547.950000px;}
.y20_c00379{bottom:564.150000px;}
.y59_c00379{bottom:565.800000px;}
.y1f_c00379{bottom:582.150000px;}
.y58_c00379{bottom:583.500000px;}
.y1e_c00379{bottom:599.700000px;}
.y57_c00379{bottom:601.500000px;}
.y1d_c00379{bottom:617.400000px;}
.y56_c00379{bottom:619.200000px;}
.y1c_c00379{bottom:635.100000px;}
.y55_c00379{bottom:637.200000px;}
.y1b_c00379{bottom:653.400000px;}
.y54_c00379{bottom:655.200000px;}
.y53_c00379{bottom:673.200000px;}
.y1a_c00379{bottom:674.850000px;}
.y19_c00379{bottom:687.750000px;}
.y18_c00379{bottom:693.150000px;}
.y52_c00379{bottom:695.550000px;}
.y51_c00379{bottom:713.550000px;}
.y17_c00379{bottom:720.450000px;}
.y50_c00379{bottom:735.900000px;}
.y16_c00379{bottom:742.350000px;}
.y4f_c00379{bottom:753.900000px;}
.y15_c00379{bottom:764.550000px;}
.y4e_c00379{bottom:775.800000px;}
.y14_c00379{bottom:782.250000px;}
.y4d_c00379{bottom:793.500000px;}
.y13_c00379{bottom:804.300000px;}
.y4c_c00379{bottom:811.500000px;}
.y12_c00379{bottom:826.200000px;}
.y4b_c00379{bottom:829.500000px;}
.y4a_c00379{bottom:846.750000px;}
.y11_c00379{bottom:848.550000px;}
.y49_c00379{bottom:864.750000px;}
.y10_c00379{bottom:870.900000px;}
.y48_c00379{bottom:883.050000px;}
.yf_c00379{bottom:888.900000px;}
.y47_c00379{bottom:901.050000px;}
.ye_c00379{bottom:907.650000px;}
.y46_c00379{bottom:918.750000px;}
.yd_c00379{bottom:924.150000px;}
.y45_c00379{bottom:942.450000px;}
.yc_c00379{bottom:946.050000px;}
.y44_c00379{bottom:956.850000px;}
.yb_c00379{bottom:964.050000px;}
.y43_c00379{bottom:972.000000px;}
.ya_c00379{bottom:982.050000px;}
.y42_c00379{bottom:985.800000px;}
.y41_c00379{bottom:1000.500000px;}
.y9_c00379{bottom:1006.500000px;}
.y40_c00379{bottom:1014.150000px;}
.y8_c00379{bottom:1016.550000px;}
.y3f_c00379{bottom:1028.850000px;}
.y7_c00379{bottom:1037.100000px;}
.y3e_c00379{bottom:1042.950000px;}
.y3d_c00379{bottom:1057.650000px;}
.y6_c00379{bottom:1058.400000px;}
.y3c_c00379{bottom:1072.050000px;}
.y5_c00379{bottom:1079.700000px;}
.y3b_c00379{bottom:1086.000000px;}
.y3a_c00379{bottom:1100.100000px;}
.y4_c00379{bottom:1101.600000px;}
.y39_c00379{bottom:1115.250000px;}
.y3_c00379{bottom:1123.500000px;}
.y38_c00379{bottom:1127.850000px;}
.y1_c00379{bottom:1149.150000px;}
.y2_c00379{bottom:1152.000000px;}
.h9_c00379{height:30.000000px;}
.h8_c00379{height:54.000000px;}
.h5_c00379{height:60.000000px;}
.h4_c00379{height:66.000000px;}
.h6_c00379{height:72.000000px;}
.h7_c00379{height:78.000000px;}
.h2_c00379{height:102.000000px;}
.h3_c00379{height:114.000000px;}
.h1_c00379{height:1276.500000px;}
.h0_c00379{height:1276.559967px;}
.w0_c00379{width:960.480010px;}
.w1_c00379{width:960.750000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:179.250000px;}
.xc_c00379{left:194.700000px;}
.x81_c00379{left:198.000000px;}
.x1f_c00379{left:199.950000px;}
.x99_c00379{left:202.350000px;}
.x17_c00379{left:211.950000px;}
.x41_c00379{left:213.300000px;}
.x62_c00379{left:214.350000px;}
.x84_c00379{left:215.700000px;}
.x4b_c00379{left:223.950000px;}
.x9d_c00379{left:227.850000px;}
.x3_c00379{left:228.900000px;}
.x8_c00379{left:230.400000px;}
.x34_c00379{left:231.750000px;}
.x88_c00379{left:233.550000px;}
.x42_c00379{left:235.650000px;}
.x4c_c00379{left:239.850000px;}
.x47_c00379{left:241.350000px;}
.x15_c00379{left:243.300000px;}
.x20_c00379{left:245.400000px;}
.x63_c00379{left:246.450000px;}
.x92_c00379{left:250.650000px;}
.x24_c00379{left:251.700000px;}
.x58_c00379{left:255.600000px;}
.x8b_c00379{left:257.400000px;}
.x4a_c00379{left:258.600000px;}
.x6_c00379{left:261.600000px;}
.x29_c00379{left:265.350000px;}
.xd_c00379{left:266.700000px;}
.x3a_c00379{left:268.650000px;}
.x6b_c00379{left:271.350000px;}
.x45_c00379{left:273.300000px;}
.x7_c00379{left:275.250000px;}
.x44_c00379{left:278.250000px;}
.x9_c00379{left:281.850000px;}
.x59_c00379{left:282.900000px;}
.x16_c00379{left:283.950000px;}
.x37_c00379{left:285.150000px;}
.x3d_c00379{left:286.200000px;}
.x21_c00379{left:288.300000px;}
.x1a_c00379{left:291.300000px;}
.x4_c00379{left:293.400000px;}
.xa_c00379{left:294.750000px;}
.x70_c00379{left:297.600000px;}
.x78_c00379{left:299.400000px;}
.x5d_c00379{left:301.500000px;}
.x2f_c00379{left:303.300000px;}
.x7d_c00379{left:305.100000px;}
.x5_c00379{left:306.300000px;}
.x18_c00379{left:308.100000px;}
.x98_c00379{left:309.900000px;}
.x43_c00379{left:310.950000px;}
.x9c_c00379{left:312.450000px;}
.x38_c00379{left:313.950000px;}
.x50_c00379{left:315.450000px;}
.x35_c00379{left:317.100000px;}
.x71_c00379{left:321.000000px;}
.x2a_c00379{left:322.650000px;}
.x30_c00379{left:323.850000px;}
.xe_c00379{left:327.900000px;}
.x5e_c00379{left:329.250000px;}
.x3e_c00379{left:332.550000px;}
.x19_c00379{left:335.400000px;}
.xb_c00379{left:338.250000px;}
.x36_c00379{left:341.250000px;}
.x79_c00379{left:342.300000px;}
.x64_c00379{left:343.350000px;}
.x89_c00379{left:348.000000px;}
.x8c_c00379{left:349.950000px;}
.x2b_c00379{left:351.150000px;}
.x3b_c00379{left:352.200000px;}
.x9a_c00379{left:353.400000px;}
.x48_c00379{left:354.450000px;}
.x3f_c00379{left:356.700000px;}
.x80_c00379{left:359.100000px;}
.x3c_c00379{left:361.200000px;}
.x55_c00379{left:362.850000px;}
.x1b_c00379{left:364.800000px;}
.x4d_c00379{left:367.200000px;}
.xf_c00379{left:369.300000px;}
.x31_c00379{left:372.150000px;}
.x6c_c00379{left:373.650000px;}
.x72_c00379{left:375.300000px;}
.x25_c00379{left:376.500000px;}
.x10_c00379{left:379.350000px;}
.x22_c00379{left:382.950000px;}
.x39_c00379{left:384.600000px;}
.x2c_c00379{left:387.900000px;}
.x26_c00379{left:389.850000px;}
.x5a_c00379{left:391.050000px;}
.x4e_c00379{left:392.400000px;}
.x93_c00379{left:394.200000px;}
.x9b_c00379{left:395.550000px;}
.x94_c00379{left:401.400000px;}
.x46_c00379{left:402.600000px;}
.x1c_c00379{left:405.150000px;}
.x32_c00379{left:406.350000px;}
.x75_c00379{left:407.850000px;}
.x95_c00379{left:408.900000px;}
.x8d_c00379{left:411.150000px;}
.x52_c00379{left:412.200000px;}
.x96_c00379{left:415.800000px;}
.x5f_c00379{left:417.450000px;}
.x11_c00379{left:422.250000px;}
.x82_c00379{left:423.750000px;}
.x67_c00379{left:424.800000px;}
.x40_c00379{left:426.150000px;}
.x33_c00379{left:429.450000px;}
.x60_c00379{left:431.850000px;}
.x1d_c00379{left:435.750000px;}
.x97_c00379{left:437.100000px;}
.x2_c00379{left:438.450000px;}
.x5b_c00379{left:439.650000px;}
.x4f_c00379{left:441.750000px;}
.x6d_c00379{left:442.800000px;}
.x12_c00379{left:445.350000px;}
.x53_c00379{left:446.400000px;}
.x68_c00379{left:448.500000px;}
.x7a_c00379{left:451.050000px;}
.x8e_c00379{left:452.550000px;}
.x76_c00379{left:455.700000px;}
.x27_c00379{left:457.500000px;}
.x73_c00379{left:459.150000px;}
.x6e_c00379{left:460.800000px;}
.x2d_c00379{left:462.000000px;}
.x85_c00379{left:463.350000px;}
.x54_c00379{left:464.700000px;}
.x1e_c00379{left:466.050000px;}
.x7b_c00379{left:468.000000px;}
.x56_c00379{left:469.050000px;}
.x7e_c00379{left:472.050000px;}
.x51_c00379{left:473.700000px;}
.x23_c00379{left:477.750000px;}
.x86_c00379{left:480.600000px;}
.x8f_c00379{left:483.150000px;}
.x69_c00379{left:484.500000px;}
.x65_c00379{left:485.550000px;}
.x83_c00379{left:487.500000px;}
.x6f_c00379{left:488.850000px;}
.x61_c00379{left:490.500000px;}
.x91_c00379{left:492.900000px;}
.x13_c00379{left:494.250000px;}
.x7f_c00379{left:496.500000px;}
.x66_c00379{left:498.450000px;}
.x49_c00379{left:499.500000px;}
.x74_c00379{left:500.850000px;}
.x28_c00379{left:504.300000px;}
.x7c_c00379{left:506.550000px;}
.x8a_c00379{left:508.800000px;}
.x6a_c00379{left:514.350000px;}
.x77_c00379{left:517.200000px;}
.x2e_c00379{left:519.300000px;}
.x90_c00379{left:521.250000px;}
.x87_c00379{left:524.850000px;}
.x14_c00379{left:527.700000px;}
.x5c_c00379{left:529.650000px;}
.x57_c00379{left:539.700000px;}
.xe6_c00379{left:552.300000px;}
.x112_c00379{left:553.350000px;}
.xb7_c00379{left:565.200000px;}
.xed_c00379{left:569.700000px;}
.xfa_c00379{left:570.900000px;}
.x102_c00379{left:572.100000px;}
.x144_c00379{left:573.300000px;}
.x12a_c00379{left:574.350000px;}
.xb0_c00379{left:579.300000px;}
.xa2_c00379{left:581.100000px;}
.xb8_c00379{left:583.500000px;}
.x134_c00379{left:585.750000px;}
.x109_c00379{left:590.100000px;}
.xfb_c00379{left:591.750000px;}
.x120_c00379{left:592.950000px;}
.x11e_c00379{left:594.750000px;}
.x13d_c00379{left:597.000000px;}
.x140_c00379{left:599.100000px;}
.xc6_c00379{left:600.300000px;}
.xc0_c00379{left:601.650000px;}
.x12d_c00379{left:604.050000px;}
.x118_c00379{left:606.300000px;}
.xd6_c00379{left:609.000000px;}
.x107_c00379{left:610.200000px;}
.xee_c00379{left:612.150000px;}
.x110_c00379{left:613.350000px;}
.x127_c00379{left:615.600000px;}
.x131_c00379{left:616.650000px;}
.xcc_c00379{left:618.900000px;}
.xc7_c00379{left:620.400000px;}
.x108_c00379{left:621.750000px;}
.xf5_c00379{left:624.000000px;}
.x121_c00379{left:626.100000px;}
.x119_c00379{left:627.150000px;}
.xb9_c00379{left:630.300000px;}
.xd7_c00379{left:633.750000px;}
.xa3_c00379{left:637.650000px;}
.xe7_c00379{left:639.750000px;}
.x116_c00379{left:640.800000px;}
.x11c_c00379{left:642.900000px;}
.xb1_c00379{left:644.100000px;}
.xd0_c00379{left:647.250000px;}
.x122_c00379{left:648.450000px;}
.xef_c00379{left:649.650000px;}
.xdb_c00379{left:651.600000px;}
.xfc_c00379{left:652.950000px;}
.xba_c00379{left:655.500000px;}
.x104_c00379{left:657.750000px;}
.xa4_c00379{left:659.250000px;}
.xe3_c00379{left:661.800000px;}
.x11a_c00379{left:663.150000px;}
.xb2_c00379{left:664.650000px;}
.xcd_c00379{left:666.000000px;}
.x101_c00379{left:667.500000px;}
.x139_c00379{left:668.700000px;}
.x12e_c00379{left:670.350000px;}
.xc1_c00379{left:671.550000px;}
.xd8_c00379{left:672.600000px;}
.xdc_c00379{left:674.250000px;}
.xbb_c00379{left:678.900000px;}
.x11f_c00379{left:680.100000px;}
.xb3_c00379{left:681.150000px;}
.x128_c00379{left:682.500000px;}
.xc2_c00379{left:685.950000px;}
.xe8_c00379{left:687.600000px;}
.xa5_c00379{left:690.900000px;}
.xf3_c00379{left:693.300000px;}
.xce_c00379{left:695.100000px;}
.xdd_c00379{left:696.150000px;}
.x10b_c00379{left:697.350000px;}
.xf6_c00379{left:698.550000px;}
.x13e_c00379{left:700.650000px;}
.xd2_c00379{left:701.850000px;}
.xc8_c00379{left:703.200000px;}
.x113_c00379{left:705.000000px;}
.x141_c00379{left:707.400000px;}
.xc3_c00379{left:708.450000px;}
.xa6_c00379{left:709.950000px;}
.x13c_c00379{left:711.000000px;}
.x13a_c00379{left:714.450000px;}
.xd3_c00379{left:716.850000px;}
.xd1_c00379{left:718.800000px;}
.xd9_c00379{left:723.750000px;}
.xde_c00379{left:724.950000px;}
.xe9_c00379{left:727.950000px;}
.x129_c00379{left:729.000000px;}
.xd4_c00379{left:731.250000px;}
.xdf_c00379{left:732.450000px;}
.x13b_c00379{left:733.500000px;}
.x103_c00379{left:736.950000px;}
.xbc_c00379{left:738.000000px;}
.xe0_c00379{left:739.350000px;}
.xf0_c00379{left:741.150000px;}
.xfd_c00379{left:742.350000px;}
.xf7_c00379{left:743.850000px;}
.xbd_c00379{left:745.200000px;}
.xc9_c00379{left:746.700000px;}
.x145_c00379{left:748.650000px;}
.xe4_c00379{left:750.450000px;}
.xbe_c00379{left:753.150000px;}
.x136_c00379{left:754.650000px;}
.x117_c00379{left:756.000000px;}
.x10c_c00379{left:757.500000px;}
.xb4_c00379{left:759.600000px;}
.xcf_c00379{left:760.800000px;}
.xf1_c00379{left:762.450000px;}
.x111_c00379{left:764.550000px;}
.xca_c00379{left:765.750000px;}
.xa7_c00379{left:767.250000px;}
.xe1_c00379{left:768.900000px;}
.xf8_c00379{left:772.950000px;}
.xa8_c00379{left:774.750000px;}
.xb5_c00379{left:775.800000px;}
.xfe_c00379{left:777.300000px;}
.xda_c00379{left:779.100000px;}
.x114_c00379{left:780.600000px;}
.xbf_c00379{left:781.950000px;}
.xe5_c00379{left:783.150000px;}
.x123_c00379{left:786.450000px;}
.x10a_c00379{left:789.450000px;}
.xa9_c00379{left:790.650000px;}
.x12f_c00379{left:791.700000px;}
.x13f_c00379{left:794.250000px;}
.x9e_c00379{left:795.300000px;}
.xaa_c00379{left:797.550000px;}
.xff_c00379{left:798.900000px;}
.x132_c00379{left:800.400000px;}
.xea_c00379{left:803.850000px;}
.xb6_c00379{left:808.200000px;}
.x9f_c00379{left:809.400000px;}
.x105_c00379{left:813.150000px;}
.xc4_c00379{left:815.250000px;}
.xab_c00379{left:817.050000px;}
.xe2_c00379{left:818.400000px;}
.x115_c00379{left:820.200000px;}
.x124_c00379{left:821.400000px;}
.x142_c00379{left:823.350000px;}
.x10d_c00379{left:825.900000px;}
.x137_c00379{left:827.700000px;}
.xcb_c00379{left:830.550000px;}
.x130_c00379{left:831.600000px;}
.x143_c00379{left:833.850000px;}
.xeb_c00379{left:836.550000px;}
.x10e_c00379{left:838.800000px;}
.xa0_c00379{left:840.000000px;}
.x12b_c00379{left:842.700000px;}
.xc5_c00379{left:844.800000px;}
.xae_c00379{left:846.750000px;}
.xac_c00379{left:847.950000px;}
.x125_c00379{left:849.150000px;}
.x133_c00379{left:850.650000px;}
.xf9_c00379{left:852.450000px;}
.x138_c00379{left:853.800000px;}
.xec_c00379{left:854.850000px;}
.x100_c00379{left:858.000000px;}
.x106_c00379{left:861.450000px;}
.x10f_c00379{left:862.500000px;}
.xf2_c00379{left:865.050000px;}
.x12c_c00379{left:866.850000px;}
.x126_c00379{left:868.200000px;}
.xaf_c00379{left:869.850000px;}
.x11b_c00379{left:871.950000px;}
.xa1_c00379{left:874.500000px;}
.xd5_c00379{left:875.850000px;}
.xad_c00379{left:877.050000px;}
.x11d_c00379{left:880.200000px;}
.xf4_c00379{left:886.500000px;}
.x135_c00379{left:890.400000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls4_c00379{letter-spacing:0.000000pt;}
.ls2_c00379{letter-spacing:54.601093pt;}
.ls0_c00379{letter-spacing:56.000000pt;}
.ls1_c00379{letter-spacing:58.098361pt;}
.ls3_c00379{letter-spacing:62.222222pt;}
.wsf_c00379{word-spacing:-88.888889pt;}
.wsb_c00379{word-spacing:-87.431694pt;}
.wse_c00379{word-spacing:-83.934426pt;}
.ws3_c00379{word-spacing:-80.000000pt;}
.ws17_c00379{word-spacing:-12.669578pt;}
.ws6_c00379{word-spacing:-7.407407pt;}
.ws16_c00379{word-spacing:-6.913112pt;}
.ws1_c00379{word-spacing:-3.649123pt;}
.ws18_c00379{word-spacing:0.000000pt;}
.ws15_c00379{word-spacing:0.789572pt;}
.ws0_c00379{word-spacing:5.441150pt;}
.wsa_c00379{word-spacing:13.333333pt;}
.ws5_c00379{word-spacing:14.451210pt;}
.ws2_c00379{word-spacing:17.773012pt;}
.ws9_c00379{word-spacing:19.682540pt;}
.ws4_c00379{word-spacing:20.632708pt;}
.wsd_c00379{word-spacing:21.770492pt;}
.ws10_c00379{word-spacing:22.857143pt;}
.ws13_c00379{word-spacing:23.492404pt;}
.ws11_c00379{word-spacing:26.031746pt;}
.ws12_c00379{word-spacing:28.666667pt;}
.ws8_c00379{word-spacing:30.793651pt;}
.ws7_c00379{word-spacing:35.555556pt;}
.wsc_c00379{word-spacing:39.043257pt;}
.ws14_c00379{word-spacing:39.259259pt;}
._a_c00379{margin-left:-62.222222pt;}
._5_c00379{margin-left:-58.098361pt;}
._1_c00379{margin-left:-56.000000pt;}
._9_c00379{margin-left:-54.601093pt;}
._b_c00379{width:3.703704pt;}
._4_c00379{width:42.777778pt;}
._c_c00379{width:46.349206pt;}
._0_c00379{width:47.492404pt;}
._3_c00379{width:52.698413pt;}
._7_c00379{width:54.601093pt;}
._8_c00379{width:58.098361pt;}
._2_c00379{width:65.925926pt;}
._6_c00379{width:72.447837pt;}
.fs7_c00379{font-size:26.666667pt;}
.fs6_c00379{font-size:48.000000pt;}
.fs3_c00379{font-size:53.333333pt;}
.fs2_c00379{font-size:58.666667pt;}
.fs4_c00379{font-size:64.000000pt;}
.fs5_c00379{font-size:69.333333pt;}
.fs0_c00379{font-size:90.666667pt;}
.fs1_c00379{font-size:101.333333pt;}
.y0_c00379{bottom:0.000000pt;}
.y6e_c00379{bottom:160.266667pt;}
.y37_c00379{bottom:176.666667pt;}
.y6d_c00379{bottom:176.800000pt;}
.y35_c00379{bottom:178.000000pt;}
.y34_c00379{bottom:191.066667pt;}
.y6c_c00379{bottom:192.533333pt;}
.y33_c00379{bottom:203.600000pt;}
.y6b_c00379{bottom:208.266667pt;}
.y32_c00379{bottom:216.400000pt;}
.y6a_c00379{bottom:224.000000pt;}
.y31_c00379{bottom:228.533333pt;}
.y36_c00379{bottom:230.666667pt;}
.y69_c00379{bottom:240.000000pt;}
.y30_c00379{bottom:241.333333pt;}
.y2f_c00379{bottom:254.133333pt;}
.y68_c00379{bottom:260.133333pt;}
.y2e_c00379{bottom:272.000000pt;}
.y67_c00379{bottom:276.133333pt;}
.y2d_c00379{bottom:291.866667pt;}
.y66_c00379{bottom:292.000000pt;}
.y2c_c00379{bottom:302.933333pt;}
.y65_c00379{bottom:308.000000pt;}
.y2b_c00379{bottom:318.666667pt;}
.y64_c00379{bottom:323.733333pt;}
.y2a_c00379{bottom:338.400000pt;}
.y63_c00379{bottom:339.733333pt;}
.y29_c00379{bottom:354.400000pt;}
.y62_c00379{bottom:356.000000pt;}
.y28_c00379{bottom:370.400000pt;}
.y61_c00379{bottom:371.733333pt;}
.y27_c00379{bottom:386.400000pt;}
.y60_c00379{bottom:387.733333pt;}
.y26_c00379{bottom:402.666667pt;}
.y5f_c00379{bottom:403.466667pt;}
.y25_c00379{bottom:418.400000pt;}
.y5e_c00379{bottom:419.733333pt;}
.y24_c00379{bottom:434.400000pt;}
.y5d_c00379{bottom:435.466667pt;}
.y23_c00379{bottom:450.133333pt;}
.y5c_c00379{bottom:451.200000pt;}
.y22_c00379{bottom:466.133333pt;}
.y5b_c00379{bottom:471.066667pt;}
.y21_c00379{bottom:481.866667pt;}
.y5a_c00379{bottom:487.066667pt;}
.y20_c00379{bottom:501.466667pt;}
.y59_c00379{bottom:502.933333pt;}
.y1f_c00379{bottom:517.466667pt;}
.y58_c00379{bottom:518.666667pt;}
.y1e_c00379{bottom:533.066667pt;}
.y57_c00379{bottom:534.666667pt;}
.y1d_c00379{bottom:548.800000pt;}
.y56_c00379{bottom:550.400000pt;}
.y1c_c00379{bottom:564.533333pt;}
.y55_c00379{bottom:566.400000pt;}
.y1b_c00379{bottom:580.800000pt;}
.y54_c00379{bottom:582.400000pt;}
.y53_c00379{bottom:598.400000pt;}
.y1a_c00379{bottom:599.866667pt;}
.y19_c00379{bottom:611.333333pt;}
.y18_c00379{bottom:616.133333pt;}
.y52_c00379{bottom:618.266667pt;}
.y51_c00379{bottom:634.266667pt;}
.y17_c00379{bottom:640.400000pt;}
.y50_c00379{bottom:654.133333pt;}
.y16_c00379{bottom:659.866667pt;}
.y4f_c00379{bottom:670.133333pt;}
.y15_c00379{bottom:679.600000pt;}
.y4e_c00379{bottom:689.600000pt;}
.y14_c00379{bottom:695.333333pt;}
.y4d_c00379{bottom:705.333333pt;}
.y13_c00379{bottom:714.933333pt;}
.y4c_c00379{bottom:721.333333pt;}
.y12_c00379{bottom:734.400000pt;}
.y4b_c00379{bottom:737.333333pt;}
.y4a_c00379{bottom:752.666667pt;}
.y11_c00379{bottom:754.266667pt;}
.y49_c00379{bottom:768.666667pt;}
.y10_c00379{bottom:774.133333pt;}
.y48_c00379{bottom:784.933333pt;}
.yf_c00379{bottom:790.133333pt;}
.y47_c00379{bottom:800.933333pt;}
.ye_c00379{bottom:806.800000pt;}
.y46_c00379{bottom:816.666667pt;}
.yd_c00379{bottom:821.466667pt;}
.y45_c00379{bottom:837.733333pt;}
.yc_c00379{bottom:840.933333pt;}
.y44_c00379{bottom:850.533333pt;}
.yb_c00379{bottom:856.933333pt;}
.y43_c00379{bottom:864.000000pt;}
.ya_c00379{bottom:872.933333pt;}
.y42_c00379{bottom:876.266667pt;}
.y41_c00379{bottom:889.333333pt;}
.y9_c00379{bottom:894.666667pt;}
.y40_c00379{bottom:901.466667pt;}
.y8_c00379{bottom:903.600000pt;}
.y3f_c00379{bottom:914.533333pt;}
.y7_c00379{bottom:921.866667pt;}
.y3e_c00379{bottom:927.066667pt;}
.y3d_c00379{bottom:940.133333pt;}
.y6_c00379{bottom:940.800000pt;}
.y3c_c00379{bottom:952.933333pt;}
.y5_c00379{bottom:959.733333pt;}
.y3b_c00379{bottom:965.333333pt;}
.y3a_c00379{bottom:977.866667pt;}
.y4_c00379{bottom:979.200000pt;}
.y39_c00379{bottom:991.333333pt;}
.y3_c00379{bottom:998.666667pt;}
.y38_c00379{bottom:1002.533333pt;}
.y1_c00379{bottom:1021.466667pt;}
.y2_c00379{bottom:1024.000000pt;}
.h9_c00379{height:26.666667pt;}
.h8_c00379{height:48.000000pt;}
.h5_c00379{height:53.333333pt;}
.h4_c00379{height:58.666667pt;}
.h6_c00379{height:64.000000pt;}
.h7_c00379{height:69.333333pt;}
.h2_c00379{height:90.666667pt;}
.h3_c00379{height:101.333333pt;}
.h1_c00379{height:1134.666667pt;}
.h0_c00379{height:1134.719971pt;}
.w0_c00379{width:853.760009pt;}
.w1_c00379{width:854.000000pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:159.333333pt;}
.xc_c00379{left:173.066667pt;}
.x81_c00379{left:176.000000pt;}
.x1f_c00379{left:177.733333pt;}
.x99_c00379{left:179.866667pt;}
.x17_c00379{left:188.400000pt;}
.x41_c00379{left:189.600000pt;}
.x62_c00379{left:190.533333pt;}
.x84_c00379{left:191.733333pt;}
.x4b_c00379{left:199.066667pt;}
.x9d_c00379{left:202.533333pt;}
.x3_c00379{left:203.466667pt;}
.x8_c00379{left:204.800000pt;}
.x34_c00379{left:206.000000pt;}
.x88_c00379{left:207.600000pt;}
.x42_c00379{left:209.466667pt;}
.x4c_c00379{left:213.200000pt;}
.x47_c00379{left:214.533333pt;}
.x15_c00379{left:216.266667pt;}
.x20_c00379{left:218.133333pt;}
.x63_c00379{left:219.066667pt;}
.x92_c00379{left:222.800000pt;}
.x24_c00379{left:223.733333pt;}
.x58_c00379{left:227.200000pt;}
.x8b_c00379{left:228.800000pt;}
.x4a_c00379{left:229.866667pt;}
.x6_c00379{left:232.533333pt;}
.x29_c00379{left:235.866667pt;}
.xd_c00379{left:237.066667pt;}
.x3a_c00379{left:238.800000pt;}
.x6b_c00379{left:241.200000pt;}
.x45_c00379{left:242.933333pt;}
.x7_c00379{left:244.666667pt;}
.x44_c00379{left:247.333333pt;}
.x9_c00379{left:250.533333pt;}
.x59_c00379{left:251.466667pt;}
.x16_c00379{left:252.400000pt;}
.x37_c00379{left:253.466667pt;}
.x3d_c00379{left:254.400000pt;}
.x21_c00379{left:256.266667pt;}
.x1a_c00379{left:258.933333pt;}
.x4_c00379{left:260.800000pt;}
.xa_c00379{left:262.000000pt;}
.x70_c00379{left:264.533333pt;}
.x78_c00379{left:266.133333pt;}
.x5d_c00379{left:268.000000pt;}
.x2f_c00379{left:269.600000pt;}
.x7d_c00379{left:271.200000pt;}
.x5_c00379{left:272.266667pt;}
.x18_c00379{left:273.866667pt;}
.x98_c00379{left:275.466667pt;}
.x43_c00379{left:276.400000pt;}
.x9c_c00379{left:277.733333pt;}
.x38_c00379{left:279.066667pt;}
.x50_c00379{left:280.400000pt;}
.x35_c00379{left:281.866667pt;}
.x71_c00379{left:285.333333pt;}
.x2a_c00379{left:286.800000pt;}
.x30_c00379{left:287.866667pt;}
.xe_c00379{left:291.466667pt;}
.x5e_c00379{left:292.666667pt;}
.x3e_c00379{left:295.600000pt;}
.x19_c00379{left:298.133333pt;}
.xb_c00379{left:300.666667pt;}
.x36_c00379{left:303.333333pt;}
.x79_c00379{left:304.266667pt;}
.x64_c00379{left:305.200000pt;}
.x89_c00379{left:309.333333pt;}
.x8c_c00379{left:311.066667pt;}
.x2b_c00379{left:312.133333pt;}
.x3b_c00379{left:313.066667pt;}
.x9a_c00379{left:314.133333pt;}
.x48_c00379{left:315.066667pt;}
.x3f_c00379{left:317.066667pt;}
.x80_c00379{left:319.200000pt;}
.x3c_c00379{left:321.066667pt;}
.x55_c00379{left:322.533333pt;}
.x1b_c00379{left:324.266667pt;}
.x4d_c00379{left:326.400000pt;}
.xf_c00379{left:328.266667pt;}
.x31_c00379{left:330.800000pt;}
.x6c_c00379{left:332.133333pt;}
.x72_c00379{left:333.600000pt;}
.x25_c00379{left:334.666667pt;}
.x10_c00379{left:337.200000pt;}
.x22_c00379{left:340.400000pt;}
.x39_c00379{left:341.866667pt;}
.x2c_c00379{left:344.800000pt;}
.x26_c00379{left:346.533333pt;}
.x5a_c00379{left:347.600000pt;}
.x4e_c00379{left:348.800000pt;}
.x93_c00379{left:350.400000pt;}
.x9b_c00379{left:351.600000pt;}
.x94_c00379{left:356.800000pt;}
.x46_c00379{left:357.866667pt;}
.x1c_c00379{left:360.133333pt;}
.x32_c00379{left:361.200000pt;}
.x75_c00379{left:362.533333pt;}
.x95_c00379{left:363.466667pt;}
.x8d_c00379{left:365.466667pt;}
.x52_c00379{left:366.400000pt;}
.x96_c00379{left:369.600000pt;}
.x5f_c00379{left:371.066667pt;}
.x11_c00379{left:375.333333pt;}
.x82_c00379{left:376.666667pt;}
.x67_c00379{left:377.600000pt;}
.x40_c00379{left:378.800000pt;}
.x33_c00379{left:381.733333pt;}
.x60_c00379{left:383.866667pt;}
.x1d_c00379{left:387.333333pt;}
.x97_c00379{left:388.533333pt;}
.x2_c00379{left:389.733333pt;}
.x5b_c00379{left:390.800000pt;}
.x4f_c00379{left:392.666667pt;}
.x6d_c00379{left:393.600000pt;}
.x12_c00379{left:395.866667pt;}
.x53_c00379{left:396.800000pt;}
.x68_c00379{left:398.666667pt;}
.x7a_c00379{left:400.933333pt;}
.x8e_c00379{left:402.266667pt;}
.x76_c00379{left:405.066667pt;}
.x27_c00379{left:406.666667pt;}
.x73_c00379{left:408.133333pt;}
.x6e_c00379{left:409.600000pt;}
.x2d_c00379{left:410.666667pt;}
.x85_c00379{left:411.866667pt;}
.x54_c00379{left:413.066667pt;}
.x1e_c00379{left:414.266667pt;}
.x7b_c00379{left:416.000000pt;}
.x56_c00379{left:416.933333pt;}
.x7e_c00379{left:419.600000pt;}
.x51_c00379{left:421.066667pt;}
.x23_c00379{left:424.666667pt;}
.x86_c00379{left:427.200000pt;}
.x8f_c00379{left:429.466667pt;}
.x69_c00379{left:430.666667pt;}
.x65_c00379{left:431.600000pt;}
.x83_c00379{left:433.333333pt;}
.x6f_c00379{left:434.533333pt;}
.x61_c00379{left:436.000000pt;}
.x91_c00379{left:438.133333pt;}
.x13_c00379{left:439.333333pt;}
.x7f_c00379{left:441.333333pt;}
.x66_c00379{left:443.066667pt;}
.x49_c00379{left:444.000000pt;}
.x74_c00379{left:445.200000pt;}
.x28_c00379{left:448.266667pt;}
.x7c_c00379{left:450.266667pt;}
.x8a_c00379{left:452.266667pt;}
.x6a_c00379{left:457.200000pt;}
.x77_c00379{left:459.733333pt;}
.x2e_c00379{left:461.600000pt;}
.x90_c00379{left:463.333333pt;}
.x87_c00379{left:466.533333pt;}
.x14_c00379{left:469.066667pt;}
.x5c_c00379{left:470.800000pt;}
.x57_c00379{left:479.733333pt;}
.xe6_c00379{left:490.933333pt;}
.x112_c00379{left:491.866667pt;}
.xb7_c00379{left:502.400000pt;}
.xed_c00379{left:506.400000pt;}
.xfa_c00379{left:507.466667pt;}
.x102_c00379{left:508.533333pt;}
.x144_c00379{left:509.600000pt;}
.x12a_c00379{left:510.533333pt;}
.xb0_c00379{left:514.933333pt;}
.xa2_c00379{left:516.533333pt;}
.xb8_c00379{left:518.666667pt;}
.x134_c00379{left:520.666667pt;}
.x109_c00379{left:524.533333pt;}
.xfb_c00379{left:526.000000pt;}
.x120_c00379{left:527.066667pt;}
.x11e_c00379{left:528.666667pt;}
.x13d_c00379{left:530.666667pt;}
.x140_c00379{left:532.533333pt;}
.xc6_c00379{left:533.600000pt;}
.xc0_c00379{left:534.800000pt;}
.x12d_c00379{left:536.933333pt;}
.x118_c00379{left:538.933333pt;}
.xd6_c00379{left:541.333333pt;}
.x107_c00379{left:542.400000pt;}
.xee_c00379{left:544.133333pt;}
.x110_c00379{left:545.200000pt;}
.x127_c00379{left:547.200000pt;}
.x131_c00379{left:548.133333pt;}
.xcc_c00379{left:550.133333pt;}
.xc7_c00379{left:551.466667pt;}
.x108_c00379{left:552.666667pt;}
.xf5_c00379{left:554.666667pt;}
.x121_c00379{left:556.533333pt;}
.x119_c00379{left:557.466667pt;}
.xb9_c00379{left:560.266667pt;}
.xd7_c00379{left:563.333333pt;}
.xa3_c00379{left:566.800000pt;}
.xe7_c00379{left:568.666667pt;}
.x116_c00379{left:569.600000pt;}
.x11c_c00379{left:571.466667pt;}
.xb1_c00379{left:572.533333pt;}
.xd0_c00379{left:575.333333pt;}
.x122_c00379{left:576.400000pt;}
.xef_c00379{left:577.466667pt;}
.xdb_c00379{left:579.200000pt;}
.xfc_c00379{left:580.400000pt;}
.xba_c00379{left:582.666667pt;}
.x104_c00379{left:584.666667pt;}
.xa4_c00379{left:586.000000pt;}
.xe3_c00379{left:588.266667pt;}
.x11a_c00379{left:589.466667pt;}
.xb2_c00379{left:590.800000pt;}
.xcd_c00379{left:592.000000pt;}
.x101_c00379{left:593.333333pt;}
.x139_c00379{left:594.400000pt;}
.x12e_c00379{left:595.866667pt;}
.xc1_c00379{left:596.933333pt;}
.xd8_c00379{left:597.866667pt;}
.xdc_c00379{left:599.333333pt;}
.xbb_c00379{left:603.466667pt;}
.x11f_c00379{left:604.533333pt;}
.xb3_c00379{left:605.466667pt;}
.x128_c00379{left:606.666667pt;}
.xc2_c00379{left:609.733333pt;}
.xe8_c00379{left:611.200000pt;}
.xa5_c00379{left:614.133333pt;}
.xf3_c00379{left:616.266667pt;}
.xce_c00379{left:617.866667pt;}
.xdd_c00379{left:618.800000pt;}
.x10b_c00379{left:619.866667pt;}
.xf6_c00379{left:620.933333pt;}
.x13e_c00379{left:622.800000pt;}
.xd2_c00379{left:623.866667pt;}
.xc8_c00379{left:625.066667pt;}
.x113_c00379{left:626.666667pt;}
.x141_c00379{left:628.800000pt;}
.xc3_c00379{left:629.733333pt;}
.xa6_c00379{left:631.066667pt;}
.x13c_c00379{left:632.000000pt;}
.x13a_c00379{left:635.066667pt;}
.xd3_c00379{left:637.200000pt;}
.xd1_c00379{left:638.933333pt;}
.xd9_c00379{left:643.333333pt;}
.xde_c00379{left:644.400000pt;}
.xe9_c00379{left:647.066667pt;}
.x129_c00379{left:648.000000pt;}
.xd4_c00379{left:650.000000pt;}
.xdf_c00379{left:651.066667pt;}
.x13b_c00379{left:652.000000pt;}
.x103_c00379{left:655.066667pt;}
.xbc_c00379{left:656.000000pt;}
.xe0_c00379{left:657.200000pt;}
.xf0_c00379{left:658.800000pt;}
.xfd_c00379{left:659.866667pt;}
.xf7_c00379{left:661.200000pt;}
.xbd_c00379{left:662.400000pt;}
.xc9_c00379{left:663.733333pt;}
.x145_c00379{left:665.466667pt;}
.xe4_c00379{left:667.066667pt;}
.xbe_c00379{left:669.466667pt;}
.x136_c00379{left:670.800000pt;}
.x117_c00379{left:672.000000pt;}
.x10c_c00379{left:673.333333pt;}
.xb4_c00379{left:675.200000pt;}
.xcf_c00379{left:676.266667pt;}
.xf1_c00379{left:677.733333pt;}
.x111_c00379{left:679.600000pt;}
.xca_c00379{left:680.666667pt;}
.xa7_c00379{left:682.000000pt;}
.xe1_c00379{left:683.466667pt;}
.xf8_c00379{left:687.066667pt;}
.xa8_c00379{left:688.666667pt;}
.xb5_c00379{left:689.600000pt;}
.xfe_c00379{left:690.933333pt;}
.xda_c00379{left:692.533333pt;}
.x114_c00379{left:693.866667pt;}
.xbf_c00379{left:695.066667pt;}
.xe5_c00379{left:696.133333pt;}
.x123_c00379{left:699.066667pt;}
.x10a_c00379{left:701.733333pt;}
.xa9_c00379{left:702.800000pt;}
.x12f_c00379{left:703.733333pt;}
.x13f_c00379{left:706.000000pt;}
.x9e_c00379{left:706.933333pt;}
.xaa_c00379{left:708.933333pt;}
.xff_c00379{left:710.133333pt;}
.x132_c00379{left:711.466667pt;}
.xea_c00379{left:714.533333pt;}
.xb6_c00379{left:718.400000pt;}
.x9f_c00379{left:719.466667pt;}
.x105_c00379{left:722.800000pt;}
.xc4_c00379{left:724.666667pt;}
.xab_c00379{left:726.266667pt;}
.xe2_c00379{left:727.466667pt;}
.x115_c00379{left:729.066667pt;}
.x124_c00379{left:730.133333pt;}
.x142_c00379{left:731.866667pt;}
.x10d_c00379{left:734.133333pt;}
.x137_c00379{left:735.733333pt;}
.xcb_c00379{left:738.266667pt;}
.x130_c00379{left:739.200000pt;}
.x143_c00379{left:741.200000pt;}
.xeb_c00379{left:743.600000pt;}
.x10e_c00379{left:745.600000pt;}
.xa0_c00379{left:746.666667pt;}
.x12b_c00379{left:749.066667pt;}
.xc5_c00379{left:750.933333pt;}
.xae_c00379{left:752.666667pt;}
.xac_c00379{left:753.733333pt;}
.x125_c00379{left:754.800000pt;}
.x133_c00379{left:756.133333pt;}
.xf9_c00379{left:757.733333pt;}
.x138_c00379{left:758.933333pt;}
.xec_c00379{left:759.866667pt;}
.x100_c00379{left:762.666667pt;}
.x106_c00379{left:765.733333pt;}
.x10f_c00379{left:766.666667pt;}
.xf2_c00379{left:768.933333pt;}
.x12c_c00379{left:770.533333pt;}
.x126_c00379{left:771.733333pt;}
.xaf_c00379{left:773.200000pt;}
.x11b_c00379{left:775.066667pt;}
.xa1_c00379{left:777.333333pt;}
.xd5_c00379{left:778.533333pt;}
.xad_c00379{left:779.600000pt;}
.x11d_c00379{left:782.400000pt;}
.xf4_c00379{left:788.000000pt;}
.x135_c00379{left:791.466667pt;}
}





/* 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_c00380 {
    display:none;
  }
  .loading-indicator_c00380.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00380 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_c00380 { 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_c00380" -> "#page-container .classname_c00380")
 */
.pf_c00380 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00380 { /* 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_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00380 { /* 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_c00380 { /* 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_c00380 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00380 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00380 {overflow:visible;}
  }
}
.c_c00380 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00380 { /* 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_c00380:after { /* webkit #35443 */
  content: '';
}
.t_c00380:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00380 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 */
}
.__c00380 { /* 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_c00380 { /* info for Javascript */
  display:none;
}
.l_c00380 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00380 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00380 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00380: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_c00380 {
    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_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00380.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_c00380 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00380;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.000000;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;}
.m56_c00380{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.me8_c00380{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m59_c00380{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.md7_c00380{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00380{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m69_c00380{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00380{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00380{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md0_c00380{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.me0_c00380{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.med_c00380{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00380{transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);}
.m28_c00380{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb_c00380{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00380{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00380{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m18_c00380{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me7_c00380{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00380{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00380{transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);}
.m14_c00380{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00380{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.me2_c00380{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mca_c00380{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00380{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.maf_c00380{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00380{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m91_c00380{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00380{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m47_c00380{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00380{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00380{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00380{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00380{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m49_c00380{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m78_c00380{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00380{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m15_c00380{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00380{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00380{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00380{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m31_c00380{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00380{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m103_c00380{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m5_c00380{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m12_c00380{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m80_c00380{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m61_c00380{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m86_c00380{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m72_c00380{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00380{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2_c00380{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md_c00380{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m92_c00380{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m29_c00380{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m104_c00380{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00380{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m38_c00380{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m71_c00380{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m93_c00380{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00380{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m75_c00380{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00380{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.me_c00380{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md8_c00380{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m85_c00380{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00380{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00380{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00380{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m101_c00380{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md5_c00380{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m97_c00380{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m19_c00380{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00380{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m10_c00380{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m20_c00380{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00380{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00380{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m87_c00380{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00380{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00380{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00380{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00380{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m48_c00380{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mf_c00380{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m70_c00380{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00380{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00380{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00380{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9_c00380{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m58_c00380{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m82_c00380{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00380{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4_c00380{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00380{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.ma_c00380{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00380{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00380{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m42_c00380{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m106_c00380{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m27_c00380{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mea_c00380{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m26_c00380{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mee_c00380{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00380{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00380{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m99_c00380{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00380{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mde_c00380{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00380{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00380{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md6_c00380{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00380{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m105_c00380{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m60_c00380{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m74_c00380{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00380{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m83_c00380{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00380{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m76_c00380{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00380{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m102_c00380{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m79_c00380{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m45_c00380{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00380{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc_c00380{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md3_c00380{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00380{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00380{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3_c00380{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00380{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00380{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00380{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00380{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m7_c00380{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me5_c00380{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00380{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00380{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00380{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m107_c00380{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00380{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m25_c00380{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.maa_c00380{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00380{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00380{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m108_c00380{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m34_c00380{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m89_c00380{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m81_c00380{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m73_c00380{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me1_c00380{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m95_c00380{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mba_c00380{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00380{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m35_c00380{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m100_c00380{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m13_c00380{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me6_c00380{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m90_c00380{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00380{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m98_c00380{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00380{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6_c00380{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mad_c00380{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00380{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m52_c00380{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00380{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m22_c00380{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00380{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m11_c00380{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00380{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m88_c00380{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00380{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00380{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.meb_c00380{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00380{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m53_c00380{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00380{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00380{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00380{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m32_c00380{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mce_c00380{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m16_c00380{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m37_c00380{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00380{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m40_c00380{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00380{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00380{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00380{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00380{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m62_c00380{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m39_c00380{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m24_c00380{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00380{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00380{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00380{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m96_c00380{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00380{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00380{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m36_c00380{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me4_c00380{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m23_c00380{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m66_c00380{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00380{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00380{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m94_c00380{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m109_c00380{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00380{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m51_c00380{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m41_c00380{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.me3_c00380{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8_c00380{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mff_c00380{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mec_c00380{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00380{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m43_c00380{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00380{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m77_c00380{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mef_c00380{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00380{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m44_c00380{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00380{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00380{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00380{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m33_c00380{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00380{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m68_c00380{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m65_c00380{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00380{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00380{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00380{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00380{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00380{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00380{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17_c00380{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.me9_c00380{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m67_c00380{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m64_c00380{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m30_c00380{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mda_c00380{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.md2_c00380{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mae_c00380{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.md4_c00380{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m46_c00380{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md9_c00380{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mac_c00380{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.md1_c00380{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m63_c00380{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00380{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m57_c00380{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mab_c00380{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00380{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00380{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00380{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00380{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m21_c00380{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00380{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00380{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m50_c00380{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00380{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m55_c00380{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.m54_c00380{transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00380{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00380{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00380{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00380{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls0_c00380{letter-spacing:0.000000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{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__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00380{word-spacing:-10.441341px;}
.ws3_c00380{word-spacing:-10.285714px;}
.ws1_c00380{word-spacing:-1.698113px;}
.ws2_c00380{word-spacing:-1.433121px;}
.ws8_c00380{word-spacing:0.000000px;}
.ws5_c00380{word-spacing:3.230769px;}
.ws0_c00380{word-spacing:4.250000px;}
.ws7_c00380{word-spacing:4.928830px;}
.ws4_c00380{word-spacing:23.211796px;}
._1_c00380{width:46.994638px;}
._2_c00380{width:53.428954px;}
._0_c00380{width:58.254692px;}
.fc0_c00380{color:transparent;}
.fs4_c00380{font-size:30.000000px;}
.fs5_c00380{font-size:54.000000px;}
.fs3_c00380{font-size:60.000000px;}
.fs2_c00380{font-size:66.000000px;}
.fs1_c00380{font-size:72.000000px;}
.fs0_c00380{font-size:114.000000px;}
.y0_c00380{bottom:0.000000px;}
.y61_c00380{bottom:177.900000px;}
.y60_c00380{bottom:196.650000px;}
.y2f_c00380{bottom:198.000000px;}
.y5f_c00380{bottom:214.650000px;}
.y2e_c00380{bottom:216.000000px;}
.y5e_c00380{bottom:232.350000px;}
.y2d_c00380{bottom:238.350000px;}
.y5d_c00380{bottom:250.350000px;}
.y2c_c00380{bottom:260.250000px;}
.y5c_c00380{bottom:268.350000px;}
.y2b_c00380{bottom:277.950000px;}
.y5b_c00380{bottom:286.650000px;}
.y2a_c00380{bottom:300.300000px;}
.y5a_c00380{bottom:303.900000px;}
.y59_c00380{bottom:321.600000px;}
.y29_c00380{bottom:322.650000px;}
.y58_c00380{bottom:339.900000px;}
.y28_c00380{bottom:340.950000px;}
.y57_c00380{bottom:357.450000px;}
.y27_c00380{bottom:358.950000px;}
.y26_c00380{bottom:376.200000px;}
.y56_c00380{bottom:381.000000px;}
.y25_c00380{bottom:394.200000px;}
.y55_c00380{bottom:398.700000px;}
.y24_c00380{bottom:411.900000px;}
.y54_c00380{bottom:415.950000px;}
.y23_c00380{bottom:433.350000px;}
.y53_c00380{bottom:433.650000px;}
.y22_c00380{bottom:451.050000px;}
.y52_c00380{bottom:451.650000px;}
.y51_c00380{bottom:468.900000px;}
.y21_c00380{bottom:473.100000px;}
.y50_c00380{bottom:486.900000px;}
.y20_c00380{bottom:494.700000px;}
.y4f_c00380{bottom:504.900000px;}
.y1f_c00380{bottom:513.000000px;}
.y4e_c00380{bottom:522.600000px;}
.y1e_c00380{bottom:534.600000px;}
.y4d_c00380{bottom:540.600000px;}
.y1d_c00380{bottom:552.600000px;}
.y4c_c00380{bottom:558.600000px;}
.y1c_c00380{bottom:570.300000px;}
.y4b_c00380{bottom:576.300000px;}
.y1b_c00380{bottom:592.200000px;}
.y4a_c00380{bottom:594.000000px;}
.y1a_c00380{bottom:610.200000px;}
.y49_c00380{bottom:612.000000px;}
.y19_c00380{bottom:627.900000px;}
.y48_c00380{bottom:629.700000px;}
.y47_c00380{bottom:647.250000px;}
.y18_c00380{bottom:662.400000px;}
.y46_c00380{bottom:672.450000px;}
.y17_c00380{bottom:673.200000px;}
.y16_c00380{bottom:683.250000px;}
.y45_c00380{bottom:686.850000px;}
.y44_c00380{bottom:700.950000px;}
.y15_c00380{bottom:713.850000px;}
.y43_c00380{bottom:715.050000px;}
.y42_c00380{bottom:729.750000px;}
.y14_c00380{bottom:735.450000px;}
.y41_c00380{bottom:743.400000px;}
.y13_c00380{bottom:757.050000px;}
.y40_c00380{bottom:758.550000px;}
.y3f_c00380{bottom:778.200000px;}
.y12_c00380{bottom:778.650000px;}
.y3e_c00380{bottom:795.900000px;}
.y11_c00380{bottom:800.700000px;}
.y3d_c00380{bottom:813.600000px;}
.y10_c00380{bottom:822.600000px;}
.y3c_c00380{bottom:831.300000px;}
.y3b_c00380{bottom:852.450000px;}
.yf_c00380{bottom:861.900000px;}
.y3a_c00380{bottom:870.000000px;}
.y39_c00380{bottom:887.700000px;}
.ye_c00380{bottom:900.750000px;}
.y38_c00380{bottom:905.400000px;}
.yd_c00380{bottom:918.750000px;}
.y37_c00380{bottom:923.100000px;}
.yc_c00380{bottom:937.050000px;}
.y36_c00380{bottom:942.150000px;}
.yb_c00380{bottom:954.300000px;}
.y35_c00380{bottom:958.650000px;}
.ya_c00380{bottom:972.000000px;}
.y34_c00380{bottom:976.650000px;}
.y9_c00380{bottom:989.700000px;}
.y33_c00380{bottom:993.900000px;}
.y32_c00380{bottom:1011.600000px;}
.y8_c00380{bottom:1011.750000px;}
.y7_c00380{bottom:1029.000000px;}
.y31_c00380{bottom:1029.300000px;}
.y6_c00380{bottom:1046.700000px;}
.y30_c00380{bottom:1060.200000px;}
.y5_c00380{bottom:1064.700000px;}
.y4_c00380{bottom:1082.400000px;}
.y3_c00380{bottom:1100.100000px;}
.y2_c00380{bottom:1117.800000px;}
.y1_c00380{bottom:1144.500000px;}
.h6_c00380{height:30.000000px;}
.h7_c00380{height:54.000000px;}
.h5_c00380{height:60.000000px;}
.h4_c00380{height:66.000000px;}
.h3_c00380{height:72.000000px;}
.h2_c00380{height:114.000000px;}
.h0_c00380{height:1267.919952px;}
.h1_c00380{height:1268.250000px;}
.w0_c00380{width:960.480010px;}
.w1_c00380{width:960.750000px;}
.x0_c00380{left:0.000000px;}
.x5a_c00380{left:79.950000px;}
.x36_c00380{left:87.450000px;}
.x63_c00380{left:89.250000px;}
.x3_c00380{left:106.200000px;}
.x11_c00380{left:107.250000px;}
.x6c_c00380{left:109.500000px;}
.x8d_c00380{left:110.850000px;}
.x41_c00380{left:117.450000px;}
.x19_c00380{left:120.900000px;}
.x4e_c00380{left:123.300000px;}
.x1e_c00380{left:125.100000px;}
.x72_c00380{left:126.750000px;}
.x7b_c00380{left:127.800000px;}
.x3d_c00380{left:129.900000px;}
.x64_c00380{left:133.950000px;}
.x4_c00380{left:136.500000px;}
.x55_c00380{left:137.850000px;}
.x76_c00380{left:139.950000px;}
.x42_c00380{left:141.900000px;}
.x12_c00380{left:145.050000px;}
.x1a_c00380{left:147.600000px;}
.x2b_c00380{left:149.550000px;}
.x77_c00380{left:152.850000px;}
.x4f_c00380{left:155.400000px;}
.x37_c00380{left:157.350000px;}
.x2c_c00380{left:161.100000px;}
.x7e_c00380{left:164.550000px;}
.x47_c00380{left:166.650000px;}
.x5e_c00380{left:167.700000px;}
.x5d_c00380{left:170.250000px;}
.x24_c00380{left:172.200000px;}
.x32_c00380{left:173.700000px;}
.x84_c00380{left:174.750000px;}
.x5b_c00380{left:176.400000px;}
.x5f_c00380{left:179.550000px;}
.x38_c00380{left:181.500000px;}
.x3e_c00380{left:184.650000px;}
.x73_c00380{left:188.250000px;}
.x56_c00380{left:189.300000px;}
.x33_c00380{left:193.200000px;}
.x6f_c00380{left:194.400000px;}
.x62_c00380{left:196.050000px;}
.x2d_c00380{left:197.400000px;}
.x65_c00380{left:199.500000px;}
.x1f_c00380{left:201.450000px;}
.x13_c00380{left:204.750000px;}
.x69_c00380{left:205.950000px;}
.x50_c00380{left:207.900000px;}
.x25_c00380{left:208.950000px;}
.x1b_c00380{left:210.900000px;}
.x2e_c00380{left:212.550000px;}
.x5_c00380{left:213.600000px;}
.x85_c00380{left:215.400000px;}
.x20_c00380{left:217.950000px;}
.x81_c00380{left:219.300000px;}
.x48_c00380{left:222.150000px;}
.x14_c00380{left:224.250000px;}
.x91_c00380{left:225.300000px;}
.x8e_c00380{left:227.250000px;}
.x6d_c00380{left:230.100000px;}
.x6_c00380{left:231.300000px;}
.x26_c00380{left:233.100000px;}
.x51_c00380{left:234.600000px;}
.x2f_c00380{left:236.250000px;}
.x43_c00380{left:237.300000px;}
.x49_c00380{left:240.900000px;}
.x5c_c00380{left:247.350000px;}
.x7c_c00380{left:248.550000px;}
.x61_c00380{left:249.750000px;}
.x39_c00380{left:251.700000px;}
.x57_c00380{left:257.400000px;}
.x44_c00380{left:258.900000px;}
.x66_c00380{left:259.950000px;}
.x34_c00380{left:261.600000px;}
.x15_c00380{left:263.100000px;}
.x6a_c00380{left:264.600000px;}
.x1c_c00380{left:267.450000px;}
.x7f_c00380{left:268.500000px;}
.x7_c00380{left:272.700000px;}
.x6e_c00380{left:274.800000px;}
.x58_c00380{left:277.200000px;}
.x60_c00380{left:281.400000px;}
.x59_c00380{left:283.800000px;}
.x27_c00380{left:286.050000px;}
.x70_c00380{left:291.600000px;}
.x16_c00380{left:294.450000px;}
.x86_c00380{left:296.850000px;}
.x79_c00380{left:299.700000px;}
.x35_c00380{left:301.200000px;}
.x3f_c00380{left:305.700000px;}
.x52_c00380{left:306.900000px;}
.x8_c00380{left:311.550000px;}
.x4a_c00380{left:313.650000px;}
.x67_c00380{left:315.750000px;}
.x30_c00380{left:316.950000px;}
.x87_c00380{left:319.200000px;}
.x28_c00380{left:320.250000px;}
.x6b_c00380{left:321.900000px;}
.x21_c00380{left:325.950000px;}
.x3a_c00380{left:328.800000px;}
.x7a_c00380{left:330.600000px;}
.x1_c00380{left:333.000000px;}
.x4b_c00380{left:337.050000px;}
.x8b_c00380{left:339.150000px;}
.x68_c00380{left:341.250000px;}
.x8f_c00380{left:343.050000px;}
.x17_c00380{left:344.850000px;}
.x9_c00380{left:351.900000px;}
.x4c_c00380{left:353.250000px;}
.x3b_c00380{left:354.300000px;}
.x22_c00380{left:356.850000px;}
.x74_c00380{left:358.950000px;}
.x1d_c00380{left:362.400000px;}
.x80_c00380{left:363.600000px;}
.x45_c00380{left:365.100000px;}
.x18_c00380{left:366.750000px;}
.x89_c00380{left:368.250000px;}
.x29_c00380{left:373.200000px;}
.x75_c00380{left:376.200000px;}
.x71_c00380{left:378.000000px;}
.x40_c00380{left:380.250000px;}
.x90_c00380{left:383.400000px;}
.x8c_c00380{left:385.200000px;}
.x53_c00380{left:387.900000px;}
.x4d_c00380{left:388.950000px;}
.x82_c00380{left:391.350000px;}
.x7d_c00380{left:394.650000px;}
.x31_c00380{left:396.900000px;}
.x8a_c00380{left:398.550000px;}
.x54_c00380{left:400.200000px;}
.x88_c00380{left:401.700000px;}
.x23_c00380{left:403.350000px;}
.x46_c00380{left:407.550000px;}
.xa_c00380{left:409.200000px;}
.x2a_c00380{left:411.300000px;}
.x78_c00380{left:413.250000px;}
.x83_c00380{left:414.900000px;}
.x3c_c00380{left:417.000000px;}
.xb_c00380{left:443.700000px;}
.xd7_c00380{left:445.650000px;}
.xf2_c00380{left:459.750000px;}
.x92_c00380{left:461.100000px;}
.xc6_c00380{left:462.150000px;}
.xdb_c00380{left:463.350000px;}
.x100_c00380{left:464.700000px;}
.xbc_c00380{left:472.650000px;}
.xf5_c00380{left:474.150000px;}
.xfc_c00380{left:475.200000px;}
.xa0_c00380{left:480.300000px;}
.x9a_c00380{left:485.400000px;}
.x93_c00380{left:488.400000px;}
.x97_c00380{left:489.450000px;}
.x127_c00380{left:490.950000px;}
.x110_c00380{left:492.000000px;}
.xb6_c00380{left:494.250000px;}
.x111_c00380{left:497.550000px;}
.x121_c00380{left:498.750000px;}
.xc2_c00380{left:499.950000px;}
.xeb_c00380{left:503.250000px;}
.xcc_c00380{left:506.250000px;}
.xd4_c00380{left:507.300000px;}
.xe1_c00380{left:508.800000px;}
.x98_c00380{left:512.250000px;}
.xbd_c00380{left:513.300000px;}
.xfa_c00380{left:515.700000px;}
.x128_c00380{left:517.650000px;}
.x9b_c00380{left:520.350000px;}
.xdc_c00380{left:522.750000px;}
.x103_c00380{left:523.950000px;}
.x10c_c00380{left:526.200000px;}
.xf9_c00380{left:528.900000px;}
.x118_c00380{left:529.950000px;}
.xb7_c00380{left:531.750000px;}
.xdd_c00380{left:533.550000px;}
.xc7_c00380{left:535.200000px;}
.x12b_c00380{left:536.550000px;}
.xaa_c00380{left:540.000000px;}
.xa1_c00380{left:541.800000px;}
.x105_c00380{left:544.800000px;}
.xbe_c00380{left:546.750000px;}
.xc8_c00380{left:548.100000px;}
.xe2_c00380{left:550.200000px;}
.xcd_c00380{left:551.250000px;}
.xd5_c00380{left:553.800000px;}
.xb2_c00380{left:556.350000px;}
.x94_c00380{left:558.300000px;}
.xa2_c00380{left:561.900000px;}
.x11b_c00380{left:563.250000px;}
.xb8_c00380{left:564.450000px;}
.x11f_c00380{left:566.250000px;}
.xec_c00380{left:567.750000px;}
.xfd_c00380{left:570.150000px;}
.x122_c00380{left:571.500000px;}
.xe3_c00380{left:573.900000px;}
.xc_c00380{left:576.450000px;}
.x107_c00380{left:577.500000px;}
.x101_c00380{left:579.150000px;}
.xbf_c00380{left:580.200000px;}
.xa3_c00380{left:581.400000px;}
.x125_c00380{left:583.950000px;}
.x9c_c00380{left:585.150000px;}
.xab_c00380{left:587.550000px;}
.xa4_c00380{left:589.350000px;}
.x129_c00380{left:591.750000px;}
.xce_c00380{left:594.750000px;}
.x120_c00380{left:595.800000px;}
.x113_c00380{left:596.850000px;}
.x115_c00380{left:599.700000px;}
.x99_c00380{left:600.750000px;}
.xe8_c00380{left:602.400000px;}
.xd1_c00380{left:604.950000px;}
.xb3_c00380{left:606.450000px;}
.x10d_c00380{left:611.550000px;}
.xa5_c00380{left:613.050000px;}
.x123_c00380{left:615.000000px;}
.x116_c00380{left:616.050000px;}
.xde_c00380{left:618.450000px;}
.x112_c00380{left:619.650000px;}
.xac_c00380{left:622.500000px;}
.xa6_c00380{left:624.900000px;}
.xed_c00380{left:626.100000px;}
.xdf_c00380{left:627.750000px;}
.x95_c00380{left:629.550000px;}
.xcf_c00380{left:631.050000px;}
.xd2_c00380{left:633.000000px;}
.x9d_c00380{left:634.500000px;}
.xd_c00380{left:635.850000px;}
.xc9_c00380{left:638.850000px;}
.xd8_c00380{left:640.500000px;}
.xad_c00380{left:642.300000px;}
.xb4_c00380{left:644.250000px;}
.x11c_c00380{left:645.750000px;}
.x9e_c00380{left:647.100000px;}
.x10f_c00380{left:648.600000px;}
.xe4_c00380{left:650.100000px;}
.x106_c00380{left:651.750000px;}
.x108_c00380{left:653.100000px;}
.xb9_c00380{left:655.500000px;}
.x12c_c00380{left:657.750000px;}
.xe_c00380{left:658.950000px;}
.xd6_c00380{left:660.300000px;}
.xc3_c00380{left:662.250000px;}
.xee_c00380{left:663.900000px;}
.xe5_c00380{left:665.550000px;}
.xd0_c00380{left:667.350000px;}
.x117_c00380{left:668.550000px;}
.xc0_c00380{left:669.900000px;}
.xe9_c00380{left:671.850000px;}
.xfb_c00380{left:675.000000px;}
.xae_c00380{left:677.550000px;}
.xd3_c00380{left:680.850000px;}
.xea_c00380{left:681.900000px;}
.xe0_c00380{left:683.100000px;}
.xaf_c00380{left:687.300000px;}
.x126_c00380{left:688.350000px;}
.xca_c00380{left:690.450000px;}
.x10e_c00380{left:694.050000px;}
.xc4_c00380{left:696.150000px;}
.xef_c00380{left:700.500000px;}
.xa7_c00380{left:701.550000px;}
.x11a_c00380{left:704.250000px;}
.x119_c00380{left:706.350000px;}
.xd9_c00380{left:707.550000px;}
.xba_c00380{left:709.200000px;}
.xf7_c00380{left:710.700000px;}
.xf3_c00380{left:711.750000px;}
.x102_c00380{left:714.750000px;}
.xe6_c00380{left:715.950000px;}
.xcb_c00380{left:717.450000px;}
.xc5_c00380{left:719.250000px;}
.x109_c00380{left:721.050000px;}
.x9f_c00380{left:722.700000px;}
.xb0_c00380{left:724.800000px;}
.xf_c00380{left:727.650000px;}
.x96_c00380{left:729.600000px;}
.xf0_c00380{left:731.100000px;}
.xa8_c00380{left:732.900000px;}
.x10b_c00380{left:733.950000px;}
.x11d_c00380{left:735.000000px;}
.x12a_c00380{left:736.050000px;}
.xc1_c00380{left:737.250000px;}
.xbb_c00380{left:738.300000px;}
.xf6_c00380{left:739.800000px;}
.xf8_c00380{left:741.000000px;}
.x10_c00380{left:743.100000px;}
.xb1_c00380{left:745.350000px;}
.x114_c00380{left:747.300000px;}
.xa9_c00380{left:748.350000px;}
.x2_c00380{left:750.300000px;}
.xff_c00380{left:751.950000px;}
.x104_c00380{left:754.350000px;}
.x11e_c00380{left:756.300000px;}
.xf4_c00380{left:757.800000px;}
.xfe_c00380{left:761.550000px;}
.x124_c00380{left:763.950000px;}
.xf1_c00380{left:765.000000px;}
.xda_c00380{left:767.700000px;}
.x10a_c00380{left:770.400000px;}
.xb5_c00380{left:774.300000px;}
.xe7_c00380{left:775.800000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws6_c00380{word-spacing:-9.281192pt;}
.ws3_c00380{word-spacing:-9.142857pt;}
.ws1_c00380{word-spacing:-1.509434pt;}
.ws2_c00380{word-spacing:-1.273885pt;}
.ws8_c00380{word-spacing:0.000000pt;}
.ws5_c00380{word-spacing:2.871795pt;}
.ws0_c00380{word-spacing:3.777778pt;}
.ws7_c00380{word-spacing:4.381182pt;}
.ws4_c00380{word-spacing:20.632708pt;}
._1_c00380{width:41.773012pt;}
._2_c00380{width:47.492404pt;}
._0_c00380{width:51.781948pt;}
.fs4_c00380{font-size:26.666667pt;}
.fs5_c00380{font-size:48.000000pt;}
.fs3_c00380{font-size:53.333333pt;}
.fs2_c00380{font-size:58.666667pt;}
.fs1_c00380{font-size:64.000000pt;}
.fs0_c00380{font-size:101.333333pt;}
.y0_c00380{bottom:0.000000pt;}
.y61_c00380{bottom:158.133333pt;}
.y60_c00380{bottom:174.800000pt;}
.y2f_c00380{bottom:176.000000pt;}
.y5f_c00380{bottom:190.800000pt;}
.y2e_c00380{bottom:192.000000pt;}
.y5e_c00380{bottom:206.533333pt;}
.y2d_c00380{bottom:211.866667pt;}
.y5d_c00380{bottom:222.533333pt;}
.y2c_c00380{bottom:231.333333pt;}
.y5c_c00380{bottom:238.533333pt;}
.y2b_c00380{bottom:247.066667pt;}
.y5b_c00380{bottom:254.800000pt;}
.y2a_c00380{bottom:266.933333pt;}
.y5a_c00380{bottom:270.133333pt;}
.y59_c00380{bottom:285.866667pt;}
.y29_c00380{bottom:286.800000pt;}
.y58_c00380{bottom:302.133333pt;}
.y28_c00380{bottom:303.066667pt;}
.y57_c00380{bottom:317.733333pt;}
.y27_c00380{bottom:319.066667pt;}
.y26_c00380{bottom:334.400000pt;}
.y56_c00380{bottom:338.666667pt;}
.y25_c00380{bottom:350.400000pt;}
.y55_c00380{bottom:354.400000pt;}
.y24_c00380{bottom:366.133333pt;}
.y54_c00380{bottom:369.733333pt;}
.y23_c00380{bottom:385.200000pt;}
.y53_c00380{bottom:385.466667pt;}
.y22_c00380{bottom:400.933333pt;}
.y52_c00380{bottom:401.466667pt;}
.y51_c00380{bottom:416.800000pt;}
.y21_c00380{bottom:420.533333pt;}
.y50_c00380{bottom:432.800000pt;}
.y20_c00380{bottom:439.733333pt;}
.y4f_c00380{bottom:448.800000pt;}
.y1f_c00380{bottom:456.000000pt;}
.y4e_c00380{bottom:464.533333pt;}
.y1e_c00380{bottom:475.200000pt;}
.y4d_c00380{bottom:480.533333pt;}
.y1d_c00380{bottom:491.200000pt;}
.y4c_c00380{bottom:496.533333pt;}
.y1c_c00380{bottom:506.933333pt;}
.y4b_c00380{bottom:512.266667pt;}
.y1b_c00380{bottom:526.400000pt;}
.y4a_c00380{bottom:528.000000pt;}
.y1a_c00380{bottom:542.400000pt;}
.y49_c00380{bottom:544.000000pt;}
.y19_c00380{bottom:558.133333pt;}
.y48_c00380{bottom:559.733333pt;}
.y47_c00380{bottom:575.333333pt;}
.y18_c00380{bottom:588.800000pt;}
.y46_c00380{bottom:597.733333pt;}
.y17_c00380{bottom:598.400000pt;}
.y16_c00380{bottom:607.333333pt;}
.y45_c00380{bottom:610.533333pt;}
.y44_c00380{bottom:623.066667pt;}
.y15_c00380{bottom:634.533333pt;}
.y43_c00380{bottom:635.600000pt;}
.y42_c00380{bottom:648.666667pt;}
.y14_c00380{bottom:653.733333pt;}
.y41_c00380{bottom:660.800000pt;}
.y13_c00380{bottom:672.933333pt;}
.y40_c00380{bottom:674.266667pt;}
.y3f_c00380{bottom:691.733333pt;}
.y12_c00380{bottom:692.133333pt;}
.y3e_c00380{bottom:707.466667pt;}
.y11_c00380{bottom:711.733333pt;}
.y3d_c00380{bottom:723.200000pt;}
.y10_c00380{bottom:731.200000pt;}
.y3c_c00380{bottom:738.933333pt;}
.y3b_c00380{bottom:757.733333pt;}
.yf_c00380{bottom:766.133333pt;}
.y3a_c00380{bottom:773.333333pt;}
.y39_c00380{bottom:789.066667pt;}
.ye_c00380{bottom:800.666667pt;}
.y38_c00380{bottom:804.800000pt;}
.yd_c00380{bottom:816.666667pt;}
.y37_c00380{bottom:820.533333pt;}
.yc_c00380{bottom:832.933333pt;}
.y36_c00380{bottom:837.466667pt;}
.yb_c00380{bottom:848.266667pt;}
.y35_c00380{bottom:852.133333pt;}
.ya_c00380{bottom:864.000000pt;}
.y34_c00380{bottom:868.133333pt;}
.y9_c00380{bottom:879.733333pt;}
.y33_c00380{bottom:883.466667pt;}
.y32_c00380{bottom:899.200000pt;}
.y8_c00380{bottom:899.333333pt;}
.y7_c00380{bottom:914.666667pt;}
.y31_c00380{bottom:914.933333pt;}
.y6_c00380{bottom:930.400000pt;}
.y30_c00380{bottom:942.400000pt;}
.y5_c00380{bottom:946.400000pt;}
.y4_c00380{bottom:962.133333pt;}
.y3_c00380{bottom:977.866667pt;}
.y2_c00380{bottom:993.600000pt;}
.y1_c00380{bottom:1017.333333pt;}
.h6_c00380{height:26.666667pt;}
.h7_c00380{height:48.000000pt;}
.h5_c00380{height:53.333333pt;}
.h4_c00380{height:58.666667pt;}
.h3_c00380{height:64.000000pt;}
.h2_c00380{height:101.333333pt;}
.h0_c00380{height:1127.039957pt;}
.h1_c00380{height:1127.333333pt;}
.w0_c00380{width:853.760009pt;}
.w1_c00380{width:854.000000pt;}
.x0_c00380{left:0.000000pt;}
.x5a_c00380{left:71.066667pt;}
.x36_c00380{left:77.733333pt;}
.x63_c00380{left:79.333333pt;}
.x3_c00380{left:94.400000pt;}
.x11_c00380{left:95.333333pt;}
.x6c_c00380{left:97.333333pt;}
.x8d_c00380{left:98.533333pt;}
.x41_c00380{left:104.400000pt;}
.x19_c00380{left:107.466667pt;}
.x4e_c00380{left:109.600000pt;}
.x1e_c00380{left:111.200000pt;}
.x72_c00380{left:112.666667pt;}
.x7b_c00380{left:113.600000pt;}
.x3d_c00380{left:115.466667pt;}
.x64_c00380{left:119.066667pt;}
.x4_c00380{left:121.333333pt;}
.x55_c00380{left:122.533333pt;}
.x76_c00380{left:124.400000pt;}
.x42_c00380{left:126.133333pt;}
.x12_c00380{left:128.933333pt;}
.x1a_c00380{left:131.200000pt;}
.x2b_c00380{left:132.933333pt;}
.x77_c00380{left:135.866667pt;}
.x4f_c00380{left:138.133333pt;}
.x37_c00380{left:139.866667pt;}
.x2c_c00380{left:143.200000pt;}
.x7e_c00380{left:146.266667pt;}
.x47_c00380{left:148.133333pt;}
.x5e_c00380{left:149.066667pt;}
.x5d_c00380{left:151.333333pt;}
.x24_c00380{left:153.066667pt;}
.x32_c00380{left:154.400000pt;}
.x84_c00380{left:155.333333pt;}
.x5b_c00380{left:156.800000pt;}
.x5f_c00380{left:159.600000pt;}
.x38_c00380{left:161.333333pt;}
.x3e_c00380{left:164.133333pt;}
.x73_c00380{left:167.333333pt;}
.x56_c00380{left:168.266667pt;}
.x33_c00380{left:171.733333pt;}
.x6f_c00380{left:172.800000pt;}
.x62_c00380{left:174.266667pt;}
.x2d_c00380{left:175.466667pt;}
.x65_c00380{left:177.333333pt;}
.x1f_c00380{left:179.066667pt;}
.x13_c00380{left:182.000000pt;}
.x69_c00380{left:183.066667pt;}
.x50_c00380{left:184.800000pt;}
.x25_c00380{left:185.733333pt;}
.x1b_c00380{left:187.466667pt;}
.x2e_c00380{left:188.933333pt;}
.x5_c00380{left:189.866667pt;}
.x85_c00380{left:191.466667pt;}
.x20_c00380{left:193.733333pt;}
.x81_c00380{left:194.933333pt;}
.x48_c00380{left:197.466667pt;}
.x14_c00380{left:199.333333pt;}
.x91_c00380{left:200.266667pt;}
.x8e_c00380{left:202.000000pt;}
.x6d_c00380{left:204.533333pt;}
.x6_c00380{left:205.600000pt;}
.x26_c00380{left:207.200000pt;}
.x51_c00380{left:208.533333pt;}
.x2f_c00380{left:210.000000pt;}
.x43_c00380{left:210.933333pt;}
.x49_c00380{left:214.133333pt;}
.x5c_c00380{left:219.866667pt;}
.x7c_c00380{left:220.933333pt;}
.x61_c00380{left:222.000000pt;}
.x39_c00380{left:223.733333pt;}
.x57_c00380{left:228.800000pt;}
.x44_c00380{left:230.133333pt;}
.x66_c00380{left:231.066667pt;}
.x34_c00380{left:232.533333pt;}
.x15_c00380{left:233.866667pt;}
.x6a_c00380{left:235.200000pt;}
.x1c_c00380{left:237.733333pt;}
.x7f_c00380{left:238.666667pt;}
.x7_c00380{left:242.400000pt;}
.x6e_c00380{left:244.266667pt;}
.x58_c00380{left:246.400000pt;}
.x60_c00380{left:250.133333pt;}
.x59_c00380{left:252.266667pt;}
.x27_c00380{left:254.266667pt;}
.x70_c00380{left:259.200000pt;}
.x16_c00380{left:261.733333pt;}
.x86_c00380{left:263.866667pt;}
.x79_c00380{left:266.400000pt;}
.x35_c00380{left:267.733333pt;}
.x3f_c00380{left:271.733333pt;}
.x52_c00380{left:272.800000pt;}
.x8_c00380{left:276.933333pt;}
.x4a_c00380{left:278.800000pt;}
.x67_c00380{left:280.666667pt;}
.x30_c00380{left:281.733333pt;}
.x87_c00380{left:283.733333pt;}
.x28_c00380{left:284.666667pt;}
.x6b_c00380{left:286.133333pt;}
.x21_c00380{left:289.733333pt;}
.x3a_c00380{left:292.266667pt;}
.x7a_c00380{left:293.866667pt;}
.x1_c00380{left:296.000000pt;}
.x4b_c00380{left:299.600000pt;}
.x8b_c00380{left:301.466667pt;}
.x68_c00380{left:303.333333pt;}
.x8f_c00380{left:304.933333pt;}
.x17_c00380{left:306.533333pt;}
.x9_c00380{left:312.800000pt;}
.x4c_c00380{left:314.000000pt;}
.x3b_c00380{left:314.933333pt;}
.x22_c00380{left:317.200000pt;}
.x74_c00380{left:319.066667pt;}
.x1d_c00380{left:322.133333pt;}
.x80_c00380{left:323.200000pt;}
.x45_c00380{left:324.533333pt;}
.x18_c00380{left:326.000000pt;}
.x89_c00380{left:327.333333pt;}
.x29_c00380{left:331.733333pt;}
.x75_c00380{left:334.400000pt;}
.x71_c00380{left:336.000000pt;}
.x40_c00380{left:338.000000pt;}
.x90_c00380{left:340.800000pt;}
.x8c_c00380{left:342.400000pt;}
.x53_c00380{left:344.800000pt;}
.x4d_c00380{left:345.733333pt;}
.x82_c00380{left:347.866667pt;}
.x7d_c00380{left:350.800000pt;}
.x31_c00380{left:352.800000pt;}
.x8a_c00380{left:354.266667pt;}
.x54_c00380{left:355.733333pt;}
.x88_c00380{left:357.066667pt;}
.x23_c00380{left:358.533333pt;}
.x46_c00380{left:362.266667pt;}
.xa_c00380{left:363.733333pt;}
.x2a_c00380{left:365.600000pt;}
.x78_c00380{left:367.333333pt;}
.x83_c00380{left:368.800000pt;}
.x3c_c00380{left:370.666667pt;}
.xb_c00380{left:394.400000pt;}
.xd7_c00380{left:396.133333pt;}
.xf2_c00380{left:408.666667pt;}
.x92_c00380{left:409.866667pt;}
.xc6_c00380{left:410.800000pt;}
.xdb_c00380{left:411.866667pt;}
.x100_c00380{left:413.066667pt;}
.xbc_c00380{left:420.133333pt;}
.xf5_c00380{left:421.466667pt;}
.xfc_c00380{left:422.400000pt;}
.xa0_c00380{left:426.933333pt;}
.x9a_c00380{left:431.466667pt;}
.x93_c00380{left:434.133333pt;}
.x97_c00380{left:435.066667pt;}
.x127_c00380{left:436.400000pt;}
.x110_c00380{left:437.333333pt;}
.xb6_c00380{left:439.333333pt;}
.x111_c00380{left:442.266667pt;}
.x121_c00380{left:443.333333pt;}
.xc2_c00380{left:444.400000pt;}
.xeb_c00380{left:447.333333pt;}
.xcc_c00380{left:450.000000pt;}
.xd4_c00380{left:450.933333pt;}
.xe1_c00380{left:452.266667pt;}
.x98_c00380{left:455.333333pt;}
.xbd_c00380{left:456.266667pt;}
.xfa_c00380{left:458.400000pt;}
.x128_c00380{left:460.133333pt;}
.x9b_c00380{left:462.533333pt;}
.xdc_c00380{left:464.666667pt;}
.x103_c00380{left:465.733333pt;}
.x10c_c00380{left:467.733333pt;}
.xf9_c00380{left:470.133333pt;}
.x118_c00380{left:471.066667pt;}
.xb7_c00380{left:472.666667pt;}
.xdd_c00380{left:474.266667pt;}
.xc7_c00380{left:475.733333pt;}
.x12b_c00380{left:476.933333pt;}
.xaa_c00380{left:480.000000pt;}
.xa1_c00380{left:481.600000pt;}
.x105_c00380{left:484.266667pt;}
.xbe_c00380{left:486.000000pt;}
.xc8_c00380{left:487.200000pt;}
.xe2_c00380{left:489.066667pt;}
.xcd_c00380{left:490.000000pt;}
.xd5_c00380{left:492.266667pt;}
.xb2_c00380{left:494.533333pt;}
.x94_c00380{left:496.266667pt;}
.xa2_c00380{left:499.466667pt;}
.x11b_c00380{left:500.666667pt;}
.xb8_c00380{left:501.733333pt;}
.x11f_c00380{left:503.333333pt;}
.xec_c00380{left:504.666667pt;}
.xfd_c00380{left:506.800000pt;}
.x122_c00380{left:508.000000pt;}
.xe3_c00380{left:510.133333pt;}
.xc_c00380{left:512.400000pt;}
.x107_c00380{left:513.333333pt;}
.x101_c00380{left:514.800000pt;}
.xbf_c00380{left:515.733333pt;}
.xa3_c00380{left:516.800000pt;}
.x125_c00380{left:519.066667pt;}
.x9c_c00380{left:520.133333pt;}
.xab_c00380{left:522.266667pt;}
.xa4_c00380{left:523.866667pt;}
.x129_c00380{left:526.000000pt;}
.xce_c00380{left:528.666667pt;}
.x120_c00380{left:529.600000pt;}
.x113_c00380{left:530.533333pt;}
.x115_c00380{left:533.066667pt;}
.x99_c00380{left:534.000000pt;}
.xe8_c00380{left:535.466667pt;}
.xd1_c00380{left:537.733333pt;}
.xb3_c00380{left:539.066667pt;}
.x10d_c00380{left:543.600000pt;}
.xa5_c00380{left:544.933333pt;}
.x123_c00380{left:546.666667pt;}
.x116_c00380{left:547.600000pt;}
.xde_c00380{left:549.733333pt;}
.x112_c00380{left:550.800000pt;}
.xac_c00380{left:553.333333pt;}
.xa6_c00380{left:555.466667pt;}
.xed_c00380{left:556.533333pt;}
.xdf_c00380{left:558.000000pt;}
.x95_c00380{left:559.600000pt;}
.xcf_c00380{left:560.933333pt;}
.xd2_c00380{left:562.666667pt;}
.x9d_c00380{left:564.000000pt;}
.xd_c00380{left:565.200000pt;}
.xc9_c00380{left:567.866667pt;}
.xd8_c00380{left:569.333333pt;}
.xad_c00380{left:570.933333pt;}
.xb4_c00380{left:572.666667pt;}
.x11c_c00380{left:574.000000pt;}
.x9e_c00380{left:575.200000pt;}
.x10f_c00380{left:576.533333pt;}
.xe4_c00380{left:577.866667pt;}
.x106_c00380{left:579.333333pt;}
.x108_c00380{left:580.533333pt;}
.xb9_c00380{left:582.666667pt;}
.x12c_c00380{left:584.666667pt;}
.xe_c00380{left:585.733333pt;}
.xd6_c00380{left:586.933333pt;}
.xc3_c00380{left:588.666667pt;}
.xee_c00380{left:590.133333pt;}
.xe5_c00380{left:591.600000pt;}
.xd0_c00380{left:593.200000pt;}
.x117_c00380{left:594.266667pt;}
.xc0_c00380{left:595.466667pt;}
.xe9_c00380{left:597.200000pt;}
.xfb_c00380{left:600.000000pt;}
.xae_c00380{left:602.266667pt;}
.xd3_c00380{left:605.200000pt;}
.xea_c00380{left:606.133333pt;}
.xe0_c00380{left:607.200000pt;}
.xaf_c00380{left:610.933333pt;}
.x126_c00380{left:611.866667pt;}
.xca_c00380{left:613.733333pt;}
.x10e_c00380{left:616.933333pt;}
.xc4_c00380{left:618.800000pt;}
.xef_c00380{left:622.666667pt;}
.xa7_c00380{left:623.600000pt;}
.x11a_c00380{left:626.000000pt;}
.x119_c00380{left:627.866667pt;}
.xd9_c00380{left:628.933333pt;}
.xba_c00380{left:630.400000pt;}
.xf7_c00380{left:631.733333pt;}
.xf3_c00380{left:632.666667pt;}
.x102_c00380{left:635.333333pt;}
.xe6_c00380{left:636.400000pt;}
.xcb_c00380{left:637.733333pt;}
.xc5_c00380{left:639.333333pt;}
.x109_c00380{left:640.933333pt;}
.x9f_c00380{left:642.400000pt;}
.xb0_c00380{left:644.266667pt;}
.xf_c00380{left:646.800000pt;}
.x96_c00380{left:648.533333pt;}
.xf0_c00380{left:649.866667pt;}
.xa8_c00380{left:651.466667pt;}
.x10b_c00380{left:652.400000pt;}
.x11d_c00380{left:653.333333pt;}
.x12a_c00380{left:654.266667pt;}
.xc1_c00380{left:655.333333pt;}
.xbb_c00380{left:656.266667pt;}
.xf6_c00380{left:657.600000pt;}
.xf8_c00380{left:658.666667pt;}
.x10_c00380{left:660.533333pt;}
.xb1_c00380{left:662.533333pt;}
.x114_c00380{left:664.266667pt;}
.xa9_c00380{left:665.200000pt;}
.x2_c00380{left:666.933333pt;}
.xff_c00380{left:668.400000pt;}
.x104_c00380{left:670.533333pt;}
.x11e_c00380{left:672.266667pt;}
.xf4_c00380{left:673.600000pt;}
.xfe_c00380{left:676.933333pt;}
.x124_c00380{left:679.066667pt;}
.xf1_c00380{left:680.000000pt;}
.xda_c00380{left:682.400000pt;}
.x10a_c00380{left:684.800000pt;}
.xb5_c00380{left:688.266667pt;}
.xe7_c00380{left:689.600000pt;}
}





/* 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_c00381 {
    display:none;
  }
  .loading-indicator_c00381.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00381 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_c00381 { 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_c00381" -> "#page-container .classname_c00381")
 */
.pf_c00381 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00381 { /* 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_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00381 { /* 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_c00381 { /* 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_c00381 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00381 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00381 {overflow:visible;}
  }
}
.c_c00381 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00381 { /* 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_c00381:after { /* webkit #35443 */
  content: '';
}
.t_c00381:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00381 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 */
}
.__c00381 { /* 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_c00381 { /* info for Javascript */
  display:none;
}
.l_c00381 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00381 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00381 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00381: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_c00381 {
    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_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00381.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_c00381 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00381;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.000000;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;}
.mc2_c00381{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m67_c00381{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m85_c00381{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00381{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00381{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00381{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00381{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m30_c00381{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00381{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m71_c00381{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00381{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m39_c00381{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00381{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m93_c00381{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9_c00381{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00381{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me9_c00381{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00381{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00381{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00381{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m119_c00381{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00381{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00381{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m52_c00381{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m114_c00381{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m117_c00381{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00381{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.md0_c00381{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mff_c00381{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m47_c00381{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m125_c00381{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m38_c00381{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me6_c00381{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me8_c00381{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m115_c00381{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m89_c00381{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00381{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m79_c00381{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00381{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.me1_c00381{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m50_c00381{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00381{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00381{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m24_c00381{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m36_c00381{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00381{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00381{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00381{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00381{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00381{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00381{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00381{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m107_c00381{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.md_c00381{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00381{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m20_c00381{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00381{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m55_c00381{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m26_c00381{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00381{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m101_c00381{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00381{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m66_c00381{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md5_c00381{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m48_c00381{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.me7_c00381{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m51_c00381{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00381{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00381{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m86_c00381{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m97_c00381{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m7_c00381{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00381{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me2_c00381{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00381{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m44_c00381{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md3_c00381{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mde_c00381{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00381{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m80_c00381{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00381{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00381{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m56_c00381{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00381{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00381{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.ma_c00381{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00381{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m106_c00381{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m22_c00381{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m18_c00381{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00381{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m65_c00381{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.meb_c00381{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6_c00381{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2_c00381{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m77_c00381{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m98_c00381{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00381{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m25_c00381{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00381{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m37_c00381{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m68_c00381{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mda_c00381{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc_c00381{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00381{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m82_c00381{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m21_c00381{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m61_c00381{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m54_c00381{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00381{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m10_c00381{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m88_c00381{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00381{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00381{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m126_c00381{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m96_c00381{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m45_c00381{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00381{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m17_c00381{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5_c00381{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00381{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md9_c00381{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11_c00381{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00381{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00381{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m46_c00381{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m74_c00381{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00381{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00381{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00381{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m91_c00381{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m102_c00381{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00381{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m58_c00381{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00381{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md7_c00381{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m29_c00381{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00381{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m59_c00381{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00381{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m16_c00381{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00381{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m62_c00381{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m28_c00381{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.me_c00381{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00381{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mac_c00381{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00381{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md2_c00381{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m69_c00381{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m63_c00381{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00381{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m70_c00381{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00381{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00381{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m57_c00381{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m94_c00381{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00381{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00381{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m23_c00381{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m124_c00381{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m40_c00381{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00381{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00381{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mee_c00381{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m27_c00381{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m75_c00381{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m121_c00381{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00381{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00381{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00381{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m81_c00381{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00381{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00381{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m60_c00381{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00381{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m53_c00381{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00381{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mae_c00381{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mb_c00381{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m33_c00381{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m111_c00381{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00381{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00381{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m83_c00381{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me4_c00381{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m49_c00381{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mce_c00381{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00381{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00381{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m87_c00381{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mea_c00381{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00381{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4_c00381{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m123_c00381{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m95_c00381{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00381{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00381{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m84_c00381{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me3_c00381{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00381{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me5_c00381{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m8_c00381{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m32_c00381{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00381{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00381{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m78_c00381{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m34_c00381{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00381{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf_c00381{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00381{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00381{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m43_c00381{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00381{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m72_c00381{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3_c00381{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m109_c00381{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m99_c00381{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00381{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00381{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md4_c00381{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00381{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m118_c00381{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00381{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m76_c00381{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00381{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mab_c00381{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m112_c00381{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mba_c00381{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m13_c00381{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00381{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m12_c00381{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m120_c00381{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m122_c00381{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00381{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m110_c00381{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00381{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m64_c00381{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m14_c00381{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.maa_c00381{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m113_c00381{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);}
.mf9_c00381{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m15_c00381{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m116_c00381{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00381{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00381{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m35_c00381{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00381{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md6_c00381{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00381{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m104_c00381{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.md8_c00381{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00381{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.me0_c00381{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00381{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m108_c00381{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00381{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m73_c00381{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00381{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m100_c00381{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00381{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m90_c00381{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mad_c00381{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00381{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00381{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m41_c00381{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00381{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.med_c00381{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mef_c00381{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m103_c00381{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00381{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mec_c00381{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m42_c00381{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m19_c00381{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00381{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00381{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.maf_c00381{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00381{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.md1_c00381{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00381{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00381{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00381{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00381{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00381{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00381{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m92_c00381{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00381{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.m31_c00381{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m105_c00381{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mca_c00381{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.m1_c00381{transform:matrix(0.443750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00381{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00381{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00381{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls0_c00381{letter-spacing:0.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{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__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00381{word-spacing:0.000000px;}
.ws0_c00381{word-spacing:5.445860px;}
.ws3_c00381{word-spacing:7.605096px;}
.ws4_c00381{word-spacing:14.802292px;}
.ws1_c00381{word-spacing:15.372738px;}
.ws2_c00381{word-spacing:67.631579px;}
.fc0_c00381{color:transparent;}
.fs6_c00381{font-size:24.000000px;}
.fs5_c00381{font-size:30.000000px;}
.fs4_c00381{font-size:54.000000px;}
.fs3_c00381{font-size:60.000000px;}
.fs2_c00381{font-size:66.000000px;}
.fs0_c00381{font-size:72.000000px;}
.fs1_c00381{font-size:78.000000px;}
.y0_c00381{bottom:0.000000px;}
.y34_c00381{bottom:201.300000px;}
.y33_c00381{bottom:207.750000px;}
.y69_c00381{bottom:208.050000px;}
.y68_c00381{bottom:225.750000px;}
.y32_c00381{bottom:226.050000px;}
.y31_c00381{bottom:243.300000px;}
.y67_c00381{bottom:246.300000px;}
.y30_c00381{bottom:261.300000px;}
.y66_c00381{bottom:261.450000px;}
.y65_c00381{bottom:279.450000px;}
.y2f_c00381{bottom:287.100000px;}
.y64_c00381{bottom:297.450000px;}
.y2e_c00381{bottom:305.100000px;}
.y63_c00381{bottom:314.700000px;}
.y2d_c00381{bottom:322.800000px;}
.y62_c00381{bottom:340.200000px;}
.y2c_c00381{bottom:340.500000px;}
.y61_c00381{bottom:354.000000px;}
.y2b_c00381{bottom:358.200000px;}
.y60_c00381{bottom:368.100000px;}
.y2a_c00381{bottom:375.900000px;}
.y5f_c00381{bottom:382.800000px;}
.y29_c00381{bottom:397.050000px;}
.y5e_c00381{bottom:397.500000px;}
.y5d_c00381{bottom:411.900000px;}
.y28_c00381{bottom:415.050000px;}
.y5c_c00381{bottom:425.550000px;}
.y5b_c00381{bottom:441.000000px;}
.y27_c00381{bottom:446.100000px;}
.y5a_c00381{bottom:460.350000px;}
.y26_c00381{bottom:468.600000px;}
.y59_c00381{bottom:478.350000px;}
.y25_c00381{bottom:486.300000px;}
.y58_c00381{bottom:496.050000px;}
.y24_c00381{bottom:504.300000px;}
.y57_c00381{bottom:513.750000px;}
.y23_c00381{bottom:522.000000px;}
.y56_c00381{bottom:531.750000px;}
.y22_c00381{bottom:540.000000px;}
.y55_c00381{bottom:553.650000px;}
.y21_c00381{bottom:561.750000px;}
.y54_c00381{bottom:571.350000px;}
.y20_c00381{bottom:579.750000px;}
.y53_c00381{bottom:589.050000px;}
.y1f_c00381{bottom:597.750000px;}
.y52_c00381{bottom:607.050000px;}
.y1e_c00381{bottom:615.000000px;}
.y51_c00381{bottom:624.750000px;}
.y1d_c00381{bottom:632.700000px;}
.y50_c00381{bottom:642.450000px;}
.y1c_c00381{bottom:650.700000px;}
.y4f_c00381{bottom:660.450000px;}
.y1b_c00381{bottom:668.400000px;}
.y4e_c00381{bottom:678.150000px;}
.y1a_c00381{bottom:686.100000px;}
.y4d_c00381{bottom:696.150000px;}
.y19_c00381{bottom:704.100000px;}
.y4c_c00381{bottom:713.850000px;}
.y18_c00381{bottom:721.800000px;}
.y4b_c00381{bottom:731.550000px;}
.y17_c00381{bottom:739.800000px;}
.y4a_c00381{bottom:749.550000px;}
.y16_c00381{bottom:757.500000px;}
.y49_c00381{bottom:766.800000px;}
.y15_c00381{bottom:775.500000px;}
.y48_c00381{bottom:784.800000px;}
.y14_c00381{bottom:793.050000px;}
.y47_c00381{bottom:797.700000px;}
.y46_c00381{bottom:807.150000px;}
.y13_c00381{bottom:815.700000px;}
.y45_c00381{bottom:824.400000px;}
.y12_c00381{bottom:835.500000px;}
.y11_c00381{bottom:853.500000px;}
.y44_c00381{bottom:855.600000px;}
.y10_c00381{bottom:870.450000px;}
.y43_c00381{bottom:873.300000px;}
.yf_c00381{bottom:888.450000px;}
.y42_c00381{bottom:899.700000px;}
.ye_c00381{bottom:910.650000px;}
.y41_c00381{bottom:917.700000px;}
.yd_c00381{bottom:928.650000px;}
.y40_c00381{bottom:939.450000px;}
.yc_c00381{bottom:946.650000px;}
.y3f_c00381{bottom:957.450000px;}
.yb_c00381{bottom:963.600000px;}
.y3e_c00381{bottom:975.150000px;}
.ya_c00381{bottom:988.500000px;}
.y3d_c00381{bottom:993.150000px;}
.y3c_c00381{bottom:1010.400000px;}
.y9_c00381{bottom:1016.550000px;}
.y3b_c00381{bottom:1028.100000px;}
.y8_c00381{bottom:1034.250000px;}
.y3a_c00381{bottom:1046.100000px;}
.y7_c00381{bottom:1051.950000px;}
.y39_c00381{bottom:1070.700000px;}
.y6_c00381{bottom:1073.550000px;}
.y38_c00381{bottom:1085.100000px;}
.y5_c00381{bottom:1091.550000px;}
.y37_c00381{bottom:1099.800000px;}
.y4_c00381{bottom:1109.100000px;}
.y36_c00381{bottom:1113.900000px;}
.y3_c00381{bottom:1126.800000px;}
.y35_c00381{bottom:1128.300000px;}
.y2_c00381{bottom:1153.200000px;}
.y1_c00381{bottom:1153.500000px;}
.h8_c00381{height:24.000000px;}
.h7_c00381{height:30.000000px;}
.h6_c00381{height:54.000000px;}
.h5_c00381{height:60.000000px;}
.h4_c00381{height:66.000000px;}
.h2_c00381{height:72.000000px;}
.h3_c00381{height:78.000000px;}
.h0_c00381{height:1270.440033px;}
.h1_c00381{height:1270.500000px;}
.w0_c00381{width:960.480010px;}
.w1_c00381{width:960.750000px;}
.x0_c00381{left:0.000000px;}
.x95_c00381{left:169.500000px;}
.xa0_c00381{left:177.450000px;}
.x87_c00381{left:179.250000px;}
.x58_c00381{left:182.100000px;}
.x49_c00381{left:183.900000px;}
.x1_c00381{left:186.450000px;}
.x1b_c00381{left:187.500000px;}
.xaa_c00381{left:190.800000px;}
.x9b_c00381{left:193.800000px;}
.x9a_c00381{left:195.150000px;}
.x8b_c00381{left:196.350000px;}
.x4d_c00381{left:197.550000px;}
.x5e_c00381{left:198.750000px;}
.x54_c00381{left:199.800000px;}
.x3d_c00381{left:201.450000px;}
.x3_c00381{left:203.700000px;}
.x10_c00381{left:205.200000px;}
.x30_c00381{left:207.750000px;}
.x79_c00381{left:212.550000px;}
.x96_c00381{left:213.900000px;}
.x65_c00381{left:216.750000px;}
.x88_c00381{left:218.550000px;}
.x7c_c00381{left:219.750000px;}
.x31_c00381{left:221.100000px;}
.xa1_c00381{left:222.450000px;}
.x19_c00381{left:225.900000px;}
.x2b_c00381{left:227.850000px;}
.x72_c00381{left:231.750000px;}
.x55_c00381{left:234.300000px;}
.x5f_c00381{left:236.250000px;}
.x9f_c00381{left:237.300000px;}
.x4e_c00381{left:238.650000px;}
.x11_c00381{left:239.700000px;}
.x57_c00381{left:241.350000px;}
.x44_c00381{left:244.200000px;}
.x7d_c00381{left:246.450000px;}
.x91_c00381{left:247.650000px;}
.x9c_c00381{left:249.300000px;}
.x3e_c00381{left:251.850000px;}
.x1c_c00381{left:253.050000px;}
.x92_c00381{left:254.700000px;}
.x12_c00381{left:257.400000px;}
.x6d_c00381{left:259.200000px;}
.x28_c00381{left:260.400000px;}
.x4_c00381{left:261.600000px;}
.x73_c00381{left:262.650000px;}
.x7a_c00381{left:264.000000px;}
.x32_c00381{left:265.800000px;}
.x9d_c00381{left:267.000000px;}
.x7e_c00381{left:269.100000px;}
.x23_c00381{left:270.300000px;}
.x2c_c00381{left:273.150000px;}
.x29_c00381{left:277.650000px;}
.x66_c00381{left:279.450000px;}
.x45_c00381{left:281.250000px;}
.x5c_c00381{left:282.750000px;}
.x1a_c00381{left:284.100000px;}
.xb_c00381{left:286.200000px;}
.x6e_c00381{left:288.750000px;}
.xa2_c00381{left:289.800000px;}
.x4a_c00381{left:291.150000px;}
.x5_c00381{left:294.300000px;}
.x75_c00381{left:295.350000px;}
.x2a_c00381{left:297.750000px;}
.x3f_c00381{left:299.700000px;}
.x97_c00381{left:301.050000px;}
.x9e_c00381{left:303.300000px;}
.xa5_c00381{left:304.650000px;}
.x6f_c00381{left:305.700000px;}
.x33_c00381{left:307.950000px;}
.x37_c00381{left:309.750000px;}
.x7f_c00381{left:313.350000px;}
.x13_c00381{left:317.100000px;}
.x8e_c00381{left:318.750000px;}
.x46_c00381{left:320.100000px;}
.x59_c00381{left:322.500000px;}
.x4f_c00381{left:324.450000px;}
.x70_c00381{left:326.250000px;}
.x60_c00381{left:329.100000px;}
.x6a_c00381{left:330.600000px;}
.x67_c00381{left:331.650000px;}
.x38_c00381{left:333.150000px;}
.x98_c00381{left:335.550000px;}
.xa7_c00381{left:337.800000px;}
.x2d_c00381{left:340.050000px;}
.x82_c00381{left:341.100000px;}
.x4b_c00381{left:342.600000px;}
.x34_c00381{left:343.950000px;}
.x39_c00381{left:346.500000px;}
.xa6_c00381{left:349.650000px;}
.x56_c00381{left:351.000000px;}
.x1d_c00381{left:352.800000px;}
.x74_c00381{left:354.000000px;}
.x6_c00381{left:357.300000px;}
.x6b_c00381{left:360.450000px;}
.x71_c00381{left:361.500000px;}
.x24_c00381{left:362.850000px;}
.x1e_c00381{left:365.700000px;}
.x47_c00381{left:366.900000px;}
.x3a_c00381{left:369.900000px;}
.x89_c00381{left:371.100000px;}
.x80_c00381{left:379.350000px;}
.x76_c00381{left:380.700000px;}
.x1f_c00381{left:381.900000px;}
.xa8_c00381{left:383.850000px;}
.x61_c00381{left:385.200000px;}
.x3b_c00381{left:386.400000px;}
.x2e_c00381{left:387.900000px;}
.x14_c00381{left:389.100000px;}
.x8f_c00381{left:390.900000px;}
.xa3_c00381{left:392.100000px;}
.x7_c00381{left:393.300000px;}
.xc_c00381{left:395.700000px;}
.x25_c00381{left:396.750000px;}
.x5d_c00381{left:398.250000px;}
.x40_c00381{left:399.750000px;}
.x93_c00381{left:403.500000px;}
.x50_c00381{left:405.450000px;}
.x62_c00381{left:407.550000px;}
.x15_c00381{left:409.200000px;}
.x3c_c00381{left:412.350000px;}
.x5a_c00381{left:415.350000px;}
.xd_c00381{left:418.800000px;}
.x51_c00381{left:419.850000px;}
.x41_c00381{left:421.050000px;}
.x8a_c00381{left:422.550000px;}
.x26_c00381{left:426.300000px;}
.x2_c00381{left:428.700000px;}
.x35_c00381{left:431.850000px;}
.x48_c00381{left:433.800000px;}
.x20_c00381{left:436.950000px;}
.x52_c00381{left:438.150000px;}
.x63_c00381{left:439.200000px;}
.x90_c00381{left:441.600000px;}
.x77_c00381{left:442.950000px;}
.xa4_c00381{left:445.050000px;}
.x8_c00381{left:447.000000px;}
.x5b_c00381{left:449.850000px;}
.x16_c00381{left:451.350000px;}
.x68_c00381{left:452.550000px;}
.x8c_c00381{left:453.750000px;}
.x21_c00381{left:454.950000px;}
.x7b_c00381{left:457.650000px;}
.xe_c00381{left:459.450000px;}
.x4c_c00381{left:461.100000px;}
.x78_c00381{left:462.450000px;}
.x8d_c00381{left:465.600000px;}
.x2f_c00381{left:468.450000px;}
.x42_c00381{left:469.950000px;}
.x17_c00381{left:471.450000px;}
.x83_c00381{left:472.500000px;}
.x22_c00381{left:474.750000px;}
.x99_c00381{left:475.950000px;}
.x6c_c00381{left:477.300000px;}
.x94_c00381{left:478.350000px;}
.x9_c00381{left:479.400000px;}
.x27_c00381{left:481.800000px;}
.x43_c00381{left:483.600000px;}
.xf_c00381{left:484.650000px;}
.x84_c00381{left:486.150000px;}
.x36_c00381{left:487.950000px;}
.xab_c00381{left:491.700000px;}
.x86_c00381{left:493.500000px;}
.xa9_c00381{left:496.050000px;}
.x53_c00381{left:497.850000px;}
.x85_c00381{left:499.350000px;}
.x69_c00381{left:501.600000px;}
.x18_c00381{left:507.750000px;}
.x81_c00381{left:511.500000px;}
.x64_c00381{left:512.700000px;}
.xa_c00381{left:516.900000px;}
.x13c_c00381{left:531.750000px;}
.x12f_c00381{left:533.550000px;}
.x124_c00381{left:534.600000px;}
.xe4_c00381{left:538.500000px;}
.xac_c00381{left:540.000000px;}
.x133_c00381{left:546.900000px;}
.x143_c00381{left:548.400000px;}
.x13e_c00381{left:549.900000px;}
.xfa_c00381{left:552.000000px;}
.x102_c00381{left:553.950000px;}
.xf3_c00381{left:555.000000px;}
.xd8_c00381{left:556.050000px;}
.xc8_c00381{left:557.100000px;}
.x125_c00381{left:559.050000px;}
.x134_c00381{left:561.150000px;}
.x144_c00381{left:565.350000px;}
.x127_c00381{left:566.400000px;}
.xb9_c00381{left:567.600000px;}
.xbd_c00381{left:568.800000px;}
.xfc_c00381{left:573.150000px;}
.xd9_c00381{left:574.800000px;}
.xe3_c00381{left:578.250000px;}
.xf7_c00381{left:579.600000px;}
.xf4_c00381{left:581.250000px;}
.xec_c00381{left:583.650000px;}
.x12d_c00381{left:585.600000px;}
.xc9_c00381{left:586.950000px;}
.x10a_c00381{left:588.450000px;}
.x10b_c00381{left:591.150000px;}
.x118_c00381{left:593.100000px;}
.x130_c00381{left:594.750000px;}
.xe5_c00381{left:597.900000px;}
.xe0_c00381{left:599.250000px;}
.xad_c00381{left:600.450000px;}
.xef_c00381{left:602.400000px;}
.x10c_c00381{left:605.550000px;}
.x111_c00381{left:606.900000px;}
.xd0_c00381{left:609.000000px;}
.x119_c00381{left:611.850000px;}
.xca_c00381{left:613.650000px;}
.x106_c00381{left:615.000000px;}
.xfd_c00381{left:616.650000px;}
.x120_c00381{left:618.900000px;}
.xd4_c00381{left:622.200000px;}
.xc0_c00381{left:623.850000px;}
.x137_c00381{left:625.950000px;}
.xba_c00381{left:629.550000px;}
.xed_c00381{left:630.750000px;}
.x114_c00381{left:632.400000px;}
.xe6_c00381{left:635.250000px;}
.x10d_c00381{left:637.950000px;}
.xcb_c00381{left:641.400000px;}
.xd5_c00381{left:644.100000px;}
.x138_c00381{left:646.800000px;}
.xda_c00381{left:648.600000px;}
.x122_c00381{left:651.300000px;}
.x11b_c00381{left:652.650000px;}
.xee_c00381{left:653.850000px;}
.xfe_c00381{left:657.300000px;}
.x103_c00381{left:659.700000px;}
.xae_c00381{left:662.400000px;}
.xc1_c00381{left:663.750000px;}
.x135_c00381{left:666.150000px;}
.xe7_c00381{left:669.150000px;}
.xbe_c00381{left:671.700000px;}
.x147_c00381{left:675.000000px;}
.xcc_c00381{left:677.100000px;}
.x115_c00381{left:678.450000px;}
.xf8_c00381{left:680.850000px;}
.xd6_c00381{left:682.200000px;}
.xe1_c00381{left:683.550000px;}
.xc2_c00381{left:686.400000px;}
.xdb_c00381{left:687.900000px;}
.xbf_c00381{left:689.700000px;}
.xe8_c00381{left:690.750000px;}
.xff_c00381{left:694.350000px;}
.x12e_c00381{left:699.000000px;}
.xaf_c00381{left:701.250000px;}
.x139_c00381{left:702.900000px;}
.xd7_c00381{left:704.100000px;}
.xf5_c00381{left:706.200000px;}
.x107_c00381{left:710.400000px;}
.xf9_c00381{left:712.200000px;}
.x112_c00381{left:714.300000px;}
.xc3_c00381{left:715.950000px;}
.xb0_c00381{left:720.000000px;}
.x128_c00381{left:723.000000px;}
.x11c_c00381{left:724.350000px;}
.xd1_c00381{left:726.750000px;}
.xe9_c00381{left:728.550000px;}
.xcd_c00381{left:730.350000px;}
.xdc_c00381{left:732.600000px;}
.x131_c00381{left:735.450000px;}
.xb1_c00381{left:736.500000px;}
.x13f_c00381{left:738.450000px;}
.x13d_c00381{left:739.500000px;}
.xf6_c00381{left:742.200000px;}
.x108_c00381{left:743.550000px;}
.xc4_c00381{left:746.850000px;}
.xf0_c00381{left:750.600000px;}
.x126_c00381{left:752.100000px;}
.x11d_c00381{left:754.200000px;}
.x13a_c00381{left:757.950000px;}
.x104_c00381{left:760.500000px;}
.xb2_c00381{left:763.500000px;}
.x140_c00381{left:765.750000px;}
.xfb_c00381{left:766.800000px;}
.xf1_c00381{left:767.850000px;}
.x100_c00381{left:769.200000px;}
.x129_c00381{left:774.150000px;}
.x10e_c00381{left:778.350000px;}
.xb3_c00381{left:779.400000px;}
.x117_c00381{left:781.350000px;}
.xea_c00381{left:782.850000px;}
.xd2_c00381{left:784.650000px;}
.x10f_c00381{left:787.350000px;}
.x132_c00381{left:788.700000px;}
.x109_c00381{left:790.350000px;}
.x11e_c00381{left:791.550000px;}
.x12b_c00381{left:792.600000px;}
.xc5_c00381{left:794.700000px;}
.x121_c00381{left:797.550000px;}
.xb4_c00381{left:800.250000px;}
.xdd_c00381{left:802.050000px;}
.xbb_c00381{left:804.450000px;}
.xb7_c00381{left:806.400000px;}
.x145_c00381{left:808.350000px;}
.x116_c00381{left:810.000000px;}
.xce_c00381{left:812.400000px;}
.xe2_c00381{left:814.650000px;}
.x148_c00381{left:817.200000px;}
.x113_c00381{left:818.250000px;}
.x11a_c00381{left:820.350000px;}
.x101_c00381{left:822.450000px;}
.xc6_c00381{left:825.000000px;}
.x136_c00381{left:826.050000px;}
.xb5_c00381{left:827.250000px;}
.x11f_c00381{left:828.750000px;}
.x142_c00381{left:830.250000px;}
.xbc_c00381{left:832.950000px;}
.xd3_c00381{left:835.050000px;}
.xde_c00381{left:836.550000px;}
.x146_c00381{left:837.900000px;}
.x110_c00381{left:840.600000px;}
.x141_c00381{left:842.100000px;}
.xcf_c00381{left:843.750000px;}
.xeb_c00381{left:845.100000px;}
.xf2_c00381{left:849.900000px;}
.x123_c00381{left:851.550000px;}
.x105_c00381{left:852.600000px;}
.x13b_c00381{left:854.250000px;}
.x12c_c00381{left:855.300000px;}
.xb6_c00381{left:861.450000px;}
.xb8_c00381{left:862.500000px;}
.xc7_c00381{left:864.600000px;}
.x12a_c00381{left:866.250000px;}
.xdf_c00381{left:870.750000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws5_c00381{word-spacing:0.000000pt;}
.ws0_c00381{word-spacing:4.840764pt;}
.ws3_c00381{word-spacing:6.760085pt;}
.ws4_c00381{word-spacing:13.157593pt;}
.ws1_c00381{word-spacing:13.664656pt;}
.ws2_c00381{word-spacing:60.116959pt;}
.fs6_c00381{font-size:21.333333pt;}
.fs5_c00381{font-size:26.666667pt;}
.fs4_c00381{font-size:48.000000pt;}
.fs3_c00381{font-size:53.333333pt;}
.fs2_c00381{font-size:58.666667pt;}
.fs0_c00381{font-size:64.000000pt;}
.fs1_c00381{font-size:69.333333pt;}
.y0_c00381{bottom:0.000000pt;}
.y34_c00381{bottom:178.933333pt;}
.y33_c00381{bottom:184.666667pt;}
.y69_c00381{bottom:184.933333pt;}
.y68_c00381{bottom:200.666667pt;}
.y32_c00381{bottom:200.933333pt;}
.y31_c00381{bottom:216.266667pt;}
.y67_c00381{bottom:218.933333pt;}
.y30_c00381{bottom:232.266667pt;}
.y66_c00381{bottom:232.400000pt;}
.y65_c00381{bottom:248.400000pt;}
.y2f_c00381{bottom:255.200000pt;}
.y64_c00381{bottom:264.400000pt;}
.y2e_c00381{bottom:271.200000pt;}
.y63_c00381{bottom:279.733333pt;}
.y2d_c00381{bottom:286.933333pt;}
.y62_c00381{bottom:302.400000pt;}
.y2c_c00381{bottom:302.666667pt;}
.y61_c00381{bottom:314.666667pt;}
.y2b_c00381{bottom:318.400000pt;}
.y60_c00381{bottom:327.200000pt;}
.y2a_c00381{bottom:334.133333pt;}
.y5f_c00381{bottom:340.266667pt;}
.y29_c00381{bottom:352.933333pt;}
.y5e_c00381{bottom:353.333333pt;}
.y5d_c00381{bottom:366.133333pt;}
.y28_c00381{bottom:368.933333pt;}
.y5c_c00381{bottom:378.266667pt;}
.y5b_c00381{bottom:392.000000pt;}
.y27_c00381{bottom:396.533333pt;}
.y5a_c00381{bottom:409.200000pt;}
.y26_c00381{bottom:416.533333pt;}
.y59_c00381{bottom:425.200000pt;}
.y25_c00381{bottom:432.266667pt;}
.y58_c00381{bottom:440.933333pt;}
.y24_c00381{bottom:448.266667pt;}
.y57_c00381{bottom:456.666667pt;}
.y23_c00381{bottom:464.000000pt;}
.y56_c00381{bottom:472.666667pt;}
.y22_c00381{bottom:480.000000pt;}
.y55_c00381{bottom:492.133333pt;}
.y21_c00381{bottom:499.333333pt;}
.y54_c00381{bottom:507.866667pt;}
.y20_c00381{bottom:515.333333pt;}
.y53_c00381{bottom:523.600000pt;}
.y1f_c00381{bottom:531.333333pt;}
.y52_c00381{bottom:539.600000pt;}
.y1e_c00381{bottom:546.666667pt;}
.y51_c00381{bottom:555.333333pt;}
.y1d_c00381{bottom:562.400000pt;}
.y50_c00381{bottom:571.066667pt;}
.y1c_c00381{bottom:578.400000pt;}
.y4f_c00381{bottom:587.066667pt;}
.y1b_c00381{bottom:594.133333pt;}
.y4e_c00381{bottom:602.800000pt;}
.y1a_c00381{bottom:609.866667pt;}
.y4d_c00381{bottom:618.800000pt;}
.y19_c00381{bottom:625.866667pt;}
.y4c_c00381{bottom:634.533333pt;}
.y18_c00381{bottom:641.600000pt;}
.y4b_c00381{bottom:650.266667pt;}
.y17_c00381{bottom:657.600000pt;}
.y4a_c00381{bottom:666.266667pt;}
.y16_c00381{bottom:673.333333pt;}
.y49_c00381{bottom:681.600000pt;}
.y15_c00381{bottom:689.333333pt;}
.y48_c00381{bottom:697.600000pt;}
.y14_c00381{bottom:704.933333pt;}
.y47_c00381{bottom:709.066667pt;}
.y46_c00381{bottom:717.466667pt;}
.y13_c00381{bottom:725.066667pt;}
.y45_c00381{bottom:732.800000pt;}
.y12_c00381{bottom:742.666667pt;}
.y11_c00381{bottom:758.666667pt;}
.y44_c00381{bottom:760.533333pt;}
.y10_c00381{bottom:773.733333pt;}
.y43_c00381{bottom:776.266667pt;}
.yf_c00381{bottom:789.733333pt;}
.y42_c00381{bottom:799.733333pt;}
.ye_c00381{bottom:809.466667pt;}
.y41_c00381{bottom:815.733333pt;}
.yd_c00381{bottom:825.466667pt;}
.y40_c00381{bottom:835.066667pt;}
.yc_c00381{bottom:841.466667pt;}
.y3f_c00381{bottom:851.066667pt;}
.yb_c00381{bottom:856.533333pt;}
.y3e_c00381{bottom:866.800000pt;}
.ya_c00381{bottom:878.666667pt;}
.y3d_c00381{bottom:882.800000pt;}
.y3c_c00381{bottom:898.133333pt;}
.y9_c00381{bottom:903.600000pt;}
.y3b_c00381{bottom:913.866667pt;}
.y8_c00381{bottom:919.333333pt;}
.y3a_c00381{bottom:929.866667pt;}
.y7_c00381{bottom:935.066667pt;}
.y39_c00381{bottom:951.733333pt;}
.y6_c00381{bottom:954.266667pt;}
.y38_c00381{bottom:964.533333pt;}
.y5_c00381{bottom:970.266667pt;}
.y37_c00381{bottom:977.600000pt;}
.y4_c00381{bottom:985.866667pt;}
.y36_c00381{bottom:990.133333pt;}
.y3_c00381{bottom:1001.600000pt;}
.y35_c00381{bottom:1002.933333pt;}
.y2_c00381{bottom:1025.066667pt;}
.y1_c00381{bottom:1025.333333pt;}
.h8_c00381{height:21.333333pt;}
.h7_c00381{height:26.666667pt;}
.h6_c00381{height:48.000000pt;}
.h5_c00381{height:53.333333pt;}
.h4_c00381{height:58.666667pt;}
.h2_c00381{height:64.000000pt;}
.h3_c00381{height:69.333333pt;}
.h0_c00381{height:1129.280029pt;}
.h1_c00381{height:1129.333333pt;}
.w0_c00381{width:853.760009pt;}
.w1_c00381{width:854.000000pt;}
.x0_c00381{left:0.000000pt;}
.x95_c00381{left:150.666667pt;}
.xa0_c00381{left:157.733333pt;}
.x87_c00381{left:159.333333pt;}
.x58_c00381{left:161.866667pt;}
.x49_c00381{left:163.466667pt;}
.x1_c00381{left:165.733333pt;}
.x1b_c00381{left:166.666667pt;}
.xaa_c00381{left:169.600000pt;}
.x9b_c00381{left:172.266667pt;}
.x9a_c00381{left:173.466667pt;}
.x8b_c00381{left:174.533333pt;}
.x4d_c00381{left:175.600000pt;}
.x5e_c00381{left:176.666667pt;}
.x54_c00381{left:177.600000pt;}
.x3d_c00381{left:179.066667pt;}
.x3_c00381{left:181.066667pt;}
.x10_c00381{left:182.400000pt;}
.x30_c00381{left:184.666667pt;}
.x79_c00381{left:188.933333pt;}
.x96_c00381{left:190.133333pt;}
.x65_c00381{left:192.666667pt;}
.x88_c00381{left:194.266667pt;}
.x7c_c00381{left:195.333333pt;}
.x31_c00381{left:196.533333pt;}
.xa1_c00381{left:197.733333pt;}
.x19_c00381{left:200.800000pt;}
.x2b_c00381{left:202.533333pt;}
.x72_c00381{left:206.000000pt;}
.x55_c00381{left:208.266667pt;}
.x5f_c00381{left:210.000000pt;}
.x9f_c00381{left:210.933333pt;}
.x4e_c00381{left:212.133333pt;}
.x11_c00381{left:213.066667pt;}
.x57_c00381{left:214.533333pt;}
.x44_c00381{left:217.066667pt;}
.x7d_c00381{left:219.066667pt;}
.x91_c00381{left:220.133333pt;}
.x9c_c00381{left:221.600000pt;}
.x3e_c00381{left:223.866667pt;}
.x1c_c00381{left:224.933333pt;}
.x92_c00381{left:226.400000pt;}
.x12_c00381{left:228.800000pt;}
.x6d_c00381{left:230.400000pt;}
.x28_c00381{left:231.466667pt;}
.x4_c00381{left:232.533333pt;}
.x73_c00381{left:233.466667pt;}
.x7a_c00381{left:234.666667pt;}
.x32_c00381{left:236.266667pt;}
.x9d_c00381{left:237.333333pt;}
.x7e_c00381{left:239.200000pt;}
.x23_c00381{left:240.266667pt;}
.x2c_c00381{left:242.800000pt;}
.x29_c00381{left:246.800000pt;}
.x66_c00381{left:248.400000pt;}
.x45_c00381{left:250.000000pt;}
.x5c_c00381{left:251.333333pt;}
.x1a_c00381{left:252.533333pt;}
.xb_c00381{left:254.400000pt;}
.x6e_c00381{left:256.666667pt;}
.xa2_c00381{left:257.600000pt;}
.x4a_c00381{left:258.800000pt;}
.x5_c00381{left:261.600000pt;}
.x75_c00381{left:262.533333pt;}
.x2a_c00381{left:264.666667pt;}
.x3f_c00381{left:266.400000pt;}
.x97_c00381{left:267.600000pt;}
.x9e_c00381{left:269.600000pt;}
.xa5_c00381{left:270.800000pt;}
.x6f_c00381{left:271.733333pt;}
.x33_c00381{left:273.733333pt;}
.x37_c00381{left:275.333333pt;}
.x7f_c00381{left:278.533333pt;}
.x13_c00381{left:281.866667pt;}
.x8e_c00381{left:283.333333pt;}
.x46_c00381{left:284.533333pt;}
.x59_c00381{left:286.666667pt;}
.x4f_c00381{left:288.400000pt;}
.x70_c00381{left:290.000000pt;}
.x60_c00381{left:292.533333pt;}
.x6a_c00381{left:293.866667pt;}
.x67_c00381{left:294.800000pt;}
.x38_c00381{left:296.133333pt;}
.x98_c00381{left:298.266667pt;}
.xa7_c00381{left:300.266667pt;}
.x2d_c00381{left:302.266667pt;}
.x82_c00381{left:303.200000pt;}
.x4b_c00381{left:304.533333pt;}
.x34_c00381{left:305.733333pt;}
.x39_c00381{left:308.000000pt;}
.xa6_c00381{left:310.800000pt;}
.x56_c00381{left:312.000000pt;}
.x1d_c00381{left:313.600000pt;}
.x74_c00381{left:314.666667pt;}
.x6_c00381{left:317.600000pt;}
.x6b_c00381{left:320.400000pt;}
.x71_c00381{left:321.333333pt;}
.x24_c00381{left:322.533333pt;}
.x1e_c00381{left:325.066667pt;}
.x47_c00381{left:326.133333pt;}
.x3a_c00381{left:328.800000pt;}
.x89_c00381{left:329.866667pt;}
.x80_c00381{left:337.200000pt;}
.x76_c00381{left:338.400000pt;}
.x1f_c00381{left:339.466667pt;}
.xa8_c00381{left:341.200000pt;}
.x61_c00381{left:342.400000pt;}
.x3b_c00381{left:343.466667pt;}
.x2e_c00381{left:344.800000pt;}
.x14_c00381{left:345.866667pt;}
.x8f_c00381{left:347.466667pt;}
.xa3_c00381{left:348.533333pt;}
.x7_c00381{left:349.600000pt;}
.xc_c00381{left:351.733333pt;}
.x25_c00381{left:352.666667pt;}
.x5d_c00381{left:354.000000pt;}
.x40_c00381{left:355.333333pt;}
.x93_c00381{left:358.666667pt;}
.x50_c00381{left:360.400000pt;}
.x62_c00381{left:362.266667pt;}
.x15_c00381{left:363.733333pt;}
.x3c_c00381{left:366.533333pt;}
.x5a_c00381{left:369.200000pt;}
.xd_c00381{left:372.266667pt;}
.x51_c00381{left:373.200000pt;}
.x41_c00381{left:374.266667pt;}
.x8a_c00381{left:375.600000pt;}
.x26_c00381{left:378.933333pt;}
.x2_c00381{left:381.066667pt;}
.x35_c00381{left:383.866667pt;}
.x48_c00381{left:385.600000pt;}
.x20_c00381{left:388.400000pt;}
.x52_c00381{left:389.466667pt;}
.x63_c00381{left:390.400000pt;}
.x90_c00381{left:392.533333pt;}
.x77_c00381{left:393.733333pt;}
.xa4_c00381{left:395.600000pt;}
.x8_c00381{left:397.333333pt;}
.x5b_c00381{left:399.866667pt;}
.x16_c00381{left:401.200000pt;}
.x68_c00381{left:402.266667pt;}
.x8c_c00381{left:403.333333pt;}
.x21_c00381{left:404.400000pt;}
.x7b_c00381{left:406.800000pt;}
.xe_c00381{left:408.400000pt;}
.x4c_c00381{left:409.866667pt;}
.x78_c00381{left:411.066667pt;}
.x8d_c00381{left:413.866667pt;}
.x2f_c00381{left:416.400000pt;}
.x42_c00381{left:417.733333pt;}
.x17_c00381{left:419.066667pt;}
.x83_c00381{left:420.000000pt;}
.x22_c00381{left:422.000000pt;}
.x99_c00381{left:423.066667pt;}
.x6c_c00381{left:424.266667pt;}
.x94_c00381{left:425.200000pt;}
.x9_c00381{left:426.133333pt;}
.x27_c00381{left:428.266667pt;}
.x43_c00381{left:429.866667pt;}
.xf_c00381{left:430.800000pt;}
.x84_c00381{left:432.133333pt;}
.x36_c00381{left:433.733333pt;}
.xab_c00381{left:437.066667pt;}
.x86_c00381{left:438.666667pt;}
.xa9_c00381{left:440.933333pt;}
.x53_c00381{left:442.533333pt;}
.x85_c00381{left:443.866667pt;}
.x69_c00381{left:445.866667pt;}
.x18_c00381{left:451.333333pt;}
.x81_c00381{left:454.666667pt;}
.x64_c00381{left:455.733333pt;}
.xa_c00381{left:459.466667pt;}
.x13c_c00381{left:472.666667pt;}
.x12f_c00381{left:474.266667pt;}
.x124_c00381{left:475.200000pt;}
.xe4_c00381{left:478.666667pt;}
.xac_c00381{left:480.000000pt;}
.x133_c00381{left:486.133333pt;}
.x143_c00381{left:487.466667pt;}
.x13e_c00381{left:488.800000pt;}
.xfa_c00381{left:490.666667pt;}
.x102_c00381{left:492.400000pt;}
.xf3_c00381{left:493.333333pt;}
.xd8_c00381{left:494.266667pt;}
.xc8_c00381{left:495.200000pt;}
.x125_c00381{left:496.933333pt;}
.x134_c00381{left:498.800000pt;}
.x144_c00381{left:502.533333pt;}
.x127_c00381{left:503.466667pt;}
.xb9_c00381{left:504.533333pt;}
.xbd_c00381{left:505.600000pt;}
.xfc_c00381{left:509.466667pt;}
.xd9_c00381{left:510.933333pt;}
.xe3_c00381{left:514.000000pt;}
.xf7_c00381{left:515.200000pt;}
.xf4_c00381{left:516.666667pt;}
.xec_c00381{left:518.800000pt;}
.x12d_c00381{left:520.533333pt;}
.xc9_c00381{left:521.733333pt;}
.x10a_c00381{left:523.066667pt;}
.x10b_c00381{left:525.466667pt;}
.x118_c00381{left:527.200000pt;}
.x130_c00381{left:528.666667pt;}
.xe5_c00381{left:531.466667pt;}
.xe0_c00381{left:532.666667pt;}
.xad_c00381{left:533.733333pt;}
.xef_c00381{left:535.466667pt;}
.x10c_c00381{left:538.266667pt;}
.x111_c00381{left:539.466667pt;}
.xd0_c00381{left:541.333333pt;}
.x119_c00381{left:543.866667pt;}
.xca_c00381{left:545.466667pt;}
.x106_c00381{left:546.666667pt;}
.xfd_c00381{left:548.133333pt;}
.x120_c00381{left:550.133333pt;}
.xd4_c00381{left:553.066667pt;}
.xc0_c00381{left:554.533333pt;}
.x137_c00381{left:556.400000pt;}
.xba_c00381{left:559.600000pt;}
.xed_c00381{left:560.666667pt;}
.x114_c00381{left:562.133333pt;}
.xe6_c00381{left:564.666667pt;}
.x10d_c00381{left:567.066667pt;}
.xcb_c00381{left:570.133333pt;}
.xd5_c00381{left:572.533333pt;}
.x138_c00381{left:574.933333pt;}
.xda_c00381{left:576.533333pt;}
.x122_c00381{left:578.933333pt;}
.x11b_c00381{left:580.133333pt;}
.xee_c00381{left:581.200000pt;}
.xfe_c00381{left:584.266667pt;}
.x103_c00381{left:586.400000pt;}
.xae_c00381{left:588.800000pt;}
.xc1_c00381{left:590.000000pt;}
.x135_c00381{left:592.133333pt;}
.xe7_c00381{left:594.800000pt;}
.xbe_c00381{left:597.066667pt;}
.x147_c00381{left:600.000000pt;}
.xcc_c00381{left:601.866667pt;}
.x115_c00381{left:603.066667pt;}
.xf8_c00381{left:605.200000pt;}
.xd6_c00381{left:606.400000pt;}
.xe1_c00381{left:607.600000pt;}
.xc2_c00381{left:610.133333pt;}
.xdb_c00381{left:611.466667pt;}
.xbf_c00381{left:613.066667pt;}
.xe8_c00381{left:614.000000pt;}
.xff_c00381{left:617.200000pt;}
.x12e_c00381{left:621.333333pt;}
.xaf_c00381{left:623.333333pt;}
.x139_c00381{left:624.800000pt;}
.xd7_c00381{left:625.866667pt;}
.xf5_c00381{left:627.733333pt;}
.x107_c00381{left:631.466667pt;}
.xf9_c00381{left:633.066667pt;}
.x112_c00381{left:634.933333pt;}
.xc3_c00381{left:636.400000pt;}
.xb0_c00381{left:640.000000pt;}
.x128_c00381{left:642.666667pt;}
.x11c_c00381{left:643.866667pt;}
.xd1_c00381{left:646.000000pt;}
.xe9_c00381{left:647.600000pt;}
.xcd_c00381{left:649.200000pt;}
.xdc_c00381{left:651.200000pt;}
.x131_c00381{left:653.733333pt;}
.xb1_c00381{left:654.666667pt;}
.x13f_c00381{left:656.400000pt;}
.x13d_c00381{left:657.333333pt;}
.xf6_c00381{left:659.733333pt;}
.x108_c00381{left:660.933333pt;}
.xc4_c00381{left:663.866667pt;}
.xf0_c00381{left:667.200000pt;}
.x126_c00381{left:668.533333pt;}
.x11d_c00381{left:670.400000pt;}
.x13a_c00381{left:673.733333pt;}
.x104_c00381{left:676.000000pt;}
.xb2_c00381{left:678.666667pt;}
.x140_c00381{left:680.666667pt;}
.xfb_c00381{left:681.600000pt;}
.xf1_c00381{left:682.533333pt;}
.x100_c00381{left:683.733333pt;}
.x129_c00381{left:688.133333pt;}
.x10e_c00381{left:691.866667pt;}
.xb3_c00381{left:692.800000pt;}
.x117_c00381{left:694.533333pt;}
.xea_c00381{left:695.866667pt;}
.xd2_c00381{left:697.466667pt;}
.x10f_c00381{left:699.866667pt;}
.x132_c00381{left:701.066667pt;}
.x109_c00381{left:702.533333pt;}
.x11e_c00381{left:703.600000pt;}
.x12b_c00381{left:704.533333pt;}
.xc5_c00381{left:706.400000pt;}
.x121_c00381{left:708.933333pt;}
.xb4_c00381{left:711.333333pt;}
.xdd_c00381{left:712.933333pt;}
.xbb_c00381{left:715.066667pt;}
.xb7_c00381{left:716.800000pt;}
.x145_c00381{left:718.533333pt;}
.x116_c00381{left:720.000000pt;}
.xce_c00381{left:722.133333pt;}
.xe2_c00381{left:724.133333pt;}
.x148_c00381{left:726.400000pt;}
.x113_c00381{left:727.333333pt;}
.x11a_c00381{left:729.200000pt;}
.x101_c00381{left:731.066667pt;}
.xc6_c00381{left:733.333333pt;}
.x136_c00381{left:734.266667pt;}
.xb5_c00381{left:735.333333pt;}
.x11f_c00381{left:736.666667pt;}
.x142_c00381{left:738.000000pt;}
.xbc_c00381{left:740.400000pt;}
.xd3_c00381{left:742.266667pt;}
.xde_c00381{left:743.600000pt;}
.x146_c00381{left:744.800000pt;}
.x110_c00381{left:747.200000pt;}
.x141_c00381{left:748.533333pt;}
.xcf_c00381{left:750.000000pt;}
.xeb_c00381{left:751.200000pt;}
.xf2_c00381{left:755.466667pt;}
.x123_c00381{left:756.933333pt;}
.x105_c00381{left:757.866667pt;}
.x13b_c00381{left:759.333333pt;}
.x12c_c00381{left:760.266667pt;}
.xb6_c00381{left:765.733333pt;}
.xb8_c00381{left:766.666667pt;}
.xc7_c00381{left:768.533333pt;}
.x12a_c00381{left:770.000000pt;}
.xdf_c00381{left:774.000000pt;}
}





/* 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_c00382 {
    display:none;
  }
  .loading-indicator_c00382.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00382 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_c00382 { 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_c00382" -> "#page-container .classname_c00382")
 */
.pf_c00382 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00382 { /* 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_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00382 { /* 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_c00382 { /* 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_c00382 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00382 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00382 {overflow:visible;}
  }
}
.c_c00382 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00382 { /* 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_c00382:after { /* webkit #35443 */
  content: '';
}
.t_c00382:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00382 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 */
}
.__c00382 { /* 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_c00382 { /* info for Javascript */
  display:none;
}
.l_c00382 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00382 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00382 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00382: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_c00382 {
    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_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00382.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_c00382 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00382;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00382{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00382{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m93_c00382{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00382{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m5_c00382{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00382{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m47_c00382{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m24_c00382{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m54_c00382{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mef_c00382{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00382{transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00382{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00382{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m109_c00382{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.me7_c00382{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.me5_c00382{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00382{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00382{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00382{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.mee_c00382{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m68_c00382{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00382{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc_c00382{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8_c00382{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00382{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00382{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00382{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00382{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m23_c00382{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00382{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00382{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00382{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.me4_c00382{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00382{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m86_c00382{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00382{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m98_c00382{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md7_c00382{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m20_c00382{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m32_c00382{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00382{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md0_c00382{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mf_c00382{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00382{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m63_c00382{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.md2_c00382{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mac_c00382{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00382{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m101_c00382{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m72_c00382{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00382{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m41_c00382{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00382{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mce_c00382{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mba_c00382{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00382{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m9_c00382{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m30_c00382{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00382{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m38_c00382{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m92_c00382{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.maa_c00382{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m62_c00382{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md_c00382{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m64_c00382{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m83_c00382{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mea_c00382{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00382{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m108_c00382{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00382{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md8_c00382{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m55_c00382{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00382{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00382{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00382{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00382{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00382{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m59_c00382{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m78_c00382{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00382{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00382{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m91_c00382{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00382{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m44_c00382{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m103_c00382{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m82_c00382{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00382{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m33_c00382{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m29_c00382{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00382{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00382{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m74_c00382{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00382{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m70_c00382{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m46_c00382{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00382{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m43_c00382{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m60_c00382{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00382{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00382{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m12_c00382{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00382{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00382{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00382{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mde_c00382{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00382{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00382{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00382{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m69_c00382{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.meb_c00382{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00382{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00382{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00382{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00382{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m14_c00382{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma_c00382{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00382{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m90_c00382{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m34_c00382{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m85_c00382{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m31_c00382{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m73_c00382{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00382{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m75_c00382{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00382{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m105_c00382{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00382{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me6_c00382{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mad_c00382{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mab_c00382{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00382{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00382{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00382{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00382{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00382{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me8_c00382{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00382{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00382{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m27_c00382{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m25_c00382{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00382{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m11_c00382{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00382{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md5_c00382{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7_c00382{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00382{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb_c00382{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00382{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m95_c00382{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00382{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00382{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m84_c00382{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4_c00382{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00382{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md3_c00382{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m76_c00382{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m37_c00382{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00382{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00382{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00382{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00382{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m102_c00382{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00382{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00382{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m96_c00382{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00382{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md4_c00382{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00382{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m52_c00382{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md9_c00382{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m94_c00382{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6_c00382{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m106_c00382{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00382{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m28_c00382{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00382{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00382{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m42_c00382{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m19_c00382{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00382{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md1_c00382{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m66_c00382{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00382{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00382{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m58_c00382{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m36_c00382{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m48_c00382{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m97_c00382{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00382{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m13_c00382{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00382{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m57_c00382{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3_c00382{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m65_c00382{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m100_c00382{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00382{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m39_c00382{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m21_c00382{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00382{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00382{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m104_c00382{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00382{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.maf_c00382{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mca_c00382{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m79_c00382{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00382{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m16_c00382{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m26_c00382{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m15_c00382{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md6_c00382{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m99_c00382{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00382{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m77_c00382{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00382{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me_c00382{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00382{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m49_c00382{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00382{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me2_c00382{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00382{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m22_c00382{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m53_c00382{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m40_c00382{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m71_c00382{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00382{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00382{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00382{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m89_c00382{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m56_c00382{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me9_c00382{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m81_c00382{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00382{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00382{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00382{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m35_c00382{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me3_c00382{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mae_c00382{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00382{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);}
.mdf_c00382{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17_c00382{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mff_c00382{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mec_c00382{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m80_c00382{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m88_c00382{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m87_c00382{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00382{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me1_c00382{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00382{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00382{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00382{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m51_c00382{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00382{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00382{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m1_c00382{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00382{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00382{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00382{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m45_c00382{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m50_c00382{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m107_c00382{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m61_c00382{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.me0_c00382{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00382{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mda_c00382{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00382{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00382{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m67_c00382{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.med_c00382{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m18_c00382{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m0_c00382{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls0_c00382{letter-spacing:0.000000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{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__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:-11.875000px;}
.ws6_c00382{word-spacing:-11.209279px;}
.ws1_c00382{word-spacing:-9.445415px;}
.ws7_c00382{word-spacing:-8.783784px;}
.ws3_c00382{word-spacing:-3.333333px;}
.ws8_c00382{word-spacing:0.000000px;}
.ws5_c00382{word-spacing:6.375000px;}
.ws2_c00382{word-spacing:6.833333px;}
.ws4_c00382{word-spacing:10.273743px;}
._1_c00382{width:20.037512px;}
._0_c00382{width:23.750000px;}
.fc0_c00382{color:transparent;}
.fs4_c00382{font-size:42.000000px;}
.fs5_c00382{font-size:54.000000px;}
.fs3_c00382{font-size:60.000000px;}
.fs2_c00382{font-size:66.000000px;}
.fs1_c00382{font-size:72.000000px;}
.fs0_c00382{font-size:78.000000px;}
.y0_c00382{bottom:0.000000px;}
.y6c_c00382{bottom:171.750000px;}
.y37_c00382{bottom:186.900000px;}
.y6b_c00382{bottom:187.800000px;}
.y6a_c00382{bottom:201.900000px;}
.y36_c00382{bottom:204.900000px;}
.y69_c00382{bottom:216.300000px;}
.y35_c00382{bottom:222.900000px;}
.y68_c00382{bottom:230.700000px;}
.y34_c00382{bottom:240.600000px;}
.y67_c00382{bottom:244.800000px;}
.y33_c00382{bottom:258.300000px;}
.y66_c00382{bottom:259.200000px;}
.y65_c00382{bottom:275.400000px;}
.y32_c00382{bottom:276.000000px;}
.y64_c00382{bottom:288.300000px;}
.y63_c00382{bottom:302.700000px;}
.y31_c00382{bottom:303.300000px;}
.y30_c00382{bottom:311.550000px;}
.y62_c00382{bottom:316.800000px;}
.y2f_c00382{bottom:329.550000px;}
.y61_c00382{bottom:331.500000px;}
.y2e_c00382{bottom:347.550000px;}
.y2d_c00382{bottom:365.550000px;}
.y2c_c00382{bottom:383.250000px;}
.y60_c00382{bottom:387.000000px;}
.y2b_c00382{bottom:401.250000px;}
.y5f_c00382{bottom:406.050000px;}
.y2a_c00382{bottom:419.250000px;}
.y5e_c00382{bottom:423.450000px;}
.y29_c00382{bottom:436.950000px;}
.y5d_c00382{bottom:441.150000px;}
.y28_c00382{bottom:454.200000px;}
.y5c_c00382{bottom:458.400000px;}
.y27_c00382{bottom:471.900000px;}
.y5b_c00382{bottom:476.400000px;}
.y26_c00382{bottom:489.900000px;}
.y5a_c00382{bottom:494.100000px;}
.y25_c00382{bottom:507.600000px;}
.y59_c00382{bottom:512.400000px;}
.y24_c00382{bottom:525.600000px;}
.y58_c00382{bottom:530.100000px;}
.y23_c00382{bottom:543.300000px;}
.y57_c00382{bottom:547.800000px;}
.y22_c00382{bottom:561.000000px;}
.y56_c00382{bottom:565.500000px;}
.y21_c00382{bottom:579.000000px;}
.y55_c00382{bottom:583.500000px;}
.y20_c00382{bottom:596.700000px;}
.y54_c00382{bottom:601.200000px;}
.y1f_c00382{bottom:614.400000px;}
.y53_c00382{bottom:619.200000px;}
.y1e_c00382{bottom:632.400000px;}
.y52_c00382{bottom:644.700000px;}
.y1d_c00382{bottom:650.100000px;}
.y51_c00382{bottom:663.450000px;}
.y1c_c00382{bottom:668.100000px;}
.y50_c00382{bottom:681.450000px;}
.y1b_c00382{bottom:685.800000px;}
.y4f_c00382{bottom:698.700000px;}
.y1a_c00382{bottom:703.500000px;}
.y4e_c00382{bottom:716.700000px;}
.y19_c00382{bottom:721.500000px;}
.y4d_c00382{bottom:734.400000px;}
.y18_c00382{bottom:739.200000px;}
.y4c_c00382{bottom:752.100000px;}
.y17_c00382{bottom:756.900000px;}
.y4b_c00382{bottom:774.000000px;}
.y16_c00382{bottom:774.600000px;}
.y4a_c00382{bottom:791.400000px;}
.y15_c00382{bottom:792.600000px;}
.y49_c00382{bottom:809.100000px;}
.y14_c00382{bottom:810.300000px;}
.y48_c00382{bottom:827.100000px;}
.y13_c00382{bottom:827.550000px;}
.y47_c00382{bottom:844.800000px;}
.y12_c00382{bottom:845.550000px;}
.y46_c00382{bottom:862.500000px;}
.y11_c00382{bottom:863.550000px;}
.y45_c00382{bottom:880.500000px;}
.y10_c00382{bottom:881.250000px;}
.y44_c00382{bottom:898.200000px;}
.yf_c00382{bottom:898.500000px;}
.ye_c00382{bottom:916.500000px;}
.y43_c00382{bottom:917.700000px;}
.yd_c00382{bottom:934.200000px;}
.y42_c00382{bottom:935.700000px;}
.y41_c00382{bottom:951.150000px;}
.yc_c00382{bottom:952.200000px;}
.y40_c00382{bottom:968.850000px;}
.yb_c00382{bottom:969.900000px;}
.y3f_c00382{bottom:986.850000px;}
.ya_c00382{bottom:987.450000px;}
.y3e_c00382{bottom:1004.550000px;}
.y9_c00382{bottom:1005.150000px;}
.y3d_c00382{bottom:1022.250000px;}
.y8_c00382{bottom:1023.150000px;}
.y3c_c00382{bottom:1040.250000px;}
.y7_c00382{bottom:1040.400000px;}
.y3b_c00382{bottom:1057.950000px;}
.y6_c00382{bottom:1058.700000px;}
.y3a_c00382{bottom:1075.950000px;}
.y5_c00382{bottom:1076.400000px;}
.y39_c00382{bottom:1093.650000px;}
.y4_c00382{bottom:1094.100000px;}
.y38_c00382{bottom:1111.650000px;}
.y3_c00382{bottom:1112.100000px;}
.y2_c00382{bottom:1137.300000px;}
.y1_c00382{bottom:1139.100000px;}
.h6_c00382{height:42.000000px;}
.h7_c00382{height:54.000000px;}
.h5_c00382{height:60.000000px;}
.h4_c00382{height:66.000000px;}
.h3_c00382{height:72.000000px;}
.h2_c00382{height:78.000000px;}
.h0_c00382{height:1267.919952px;}
.h1_c00382{height:1268.250000px;}
.w0_c00382{width:960.480010px;}
.w1_c00382{width:960.750000px;}
.x0_c00382{left:0.000000px;}
.x3e_c00382{left:96.450000px;}
.x3_c00382{left:98.250000px;}
.x95_c00382{left:103.200000px;}
.x75_c00382{left:105.000000px;}
.x5f_c00382{left:106.500000px;}
.xd_c00382{left:107.700000px;}
.x4_c00382{left:109.050000px;}
.x9e_c00382{left:119.100000px;}
.xa2_c00382{left:123.900000px;}
.x39_c00382{left:126.150000px;}
.x60_c00382{left:127.950000px;}
.x8b_c00382{left:130.350000px;}
.x33_c00382{left:132.900000px;}
.x56_c00382{left:135.450000px;}
.x72_c00382{left:136.800000px;}
.xe_c00382{left:139.050000px;}
.x96_c00382{left:141.300000px;}
.x43_c00382{left:142.500000px;}
.x68_c00382{left:145.650000px;}
.x16_c00382{left:147.750000px;}
.x22_c00382{left:149.550000px;}
.x9a_c00382{left:151.200000px;}
.x4c_c00382{left:153.300000px;}
.x5_c00382{left:158.700000px;}
.x77_c00382{left:160.800000px;}
.x7b_c00382{left:162.750000px;}
.x8e_c00382{left:165.150000px;}
.x34_c00382{left:166.350000px;}
.x57_c00382{left:168.150000px;}
.x64_c00382{left:170.100000px;}
.x23_c00382{left:171.150000px;}
.x1c_c00382{left:174.450000px;}
.x89_c00382{left:175.650000px;}
.x73_c00382{left:177.450000px;}
.x91_c00382{left:178.650000px;}
.x61_c00382{left:183.300000px;}
.x3a_c00382{left:185.850000px;}
.x6b_c00382{left:189.000000px;}
.x8d_c00382{left:190.800000px;}
.x35_c00382{left:192.300000px;}
.xf_c00382{left:193.350000px;}
.x7f_c00382{left:194.550000px;}
.x50_c00382{left:196.650000px;}
.x1d_c00382{left:198.600000px;}
.x3f_c00382{left:200.400000px;}
.x24_c00382{left:201.750000px;}
.x17_c00382{left:203.250000px;}
.x6_c00382{left:204.750000px;}
.x4d_c00382{left:206.250000px;}
.x9f_c00382{left:208.200000px;}
.x25_c00382{left:210.750000px;}
.x74_c00382{left:211.950000px;}
.x7_c00382{left:213.750000px;}
.x7c_c00382{left:216.750000px;}
.x2c_c00382{left:217.800000px;}
.x44_c00382{left:219.450000px;}
.x51_c00382{left:220.800000px;}
.x10_c00382{left:222.150000px;}
.x58_c00382{left:225.000000px;}
.x1e_c00382{left:226.650000px;}
.x26_c00382{left:228.000000px;}
.x3b_c00382{left:231.900000px;}
.x93_c00382{left:234.000000px;}
.x49_c00382{left:235.200000px;}
.x18_c00382{left:237.150000px;}
.x70_c00382{left:238.800000px;}
.x76_c00382{left:240.600000px;}
.x80_c00382{left:242.100000px;}
.x9c_c00382{left:243.300000px;}
.x2d_c00382{left:245.100000px;}
.x8_c00382{left:247.650000px;}
.x6e_c00382{left:249.300000px;}
.xa3_c00382{left:251.100000px;}
.x52_c00382{left:252.600000px;}
.x8a_c00382{left:255.600000px;}
.x62_c00382{left:257.550000px;}
.x5b_c00382{left:259.200000px;}
.x11_c00382{left:261.450000px;}
.x36_c00382{left:263.250000px;}
.x81_c00382{left:266.850000px;}
.x27_c00382{left:267.900000px;}
.x92_c00382{left:270.450000px;}
.x5c_c00382{left:272.850000px;}
.x59_c00382{left:274.350000px;}
.x3c_c00382{left:275.850000px;}
.x40_c00382{left:277.500000px;}
.x6c_c00382{left:279.000000px;}
.x8f_c00382{left:280.350000px;}
.x78_c00382{left:281.850000px;}
.x37_c00382{left:283.050000px;}
.x2e_c00382{left:284.400000px;}
.x1f_c00382{left:286.050000px;}
.x82_c00382{left:287.400000px;}
.x9_c00382{left:288.750000px;}
.x86_c00382{left:292.050000px;}
.x12_c00382{left:294.150000px;}
.x2f_c00382{left:295.950000px;}
.x6d_c00382{left:298.050000px;}
.x79_c00382{left:299.550000px;}
.x5d_c00382{left:301.650000px;}
.x87_c00382{left:302.850000px;}
.x28_c00382{left:304.200000px;}
.x65_c00382{left:306.300000px;}
.x85_c00382{left:307.350000px;}
.x45_c00382{left:308.400000px;}
.xa_c00382{left:309.600000px;}
.x19_c00382{left:310.950000px;}
.x30_c00382{left:312.150000px;}
.x7d_c00382{left:313.350000px;}
.x53_c00382{left:314.550000px;}
.x8c_c00382{left:316.500000px;}
.x6f_c00382{left:318.000000px;}
.x3d_c00382{left:320.100000px;}
.x66_c00382{left:322.800000px;}
.x54_c00382{left:323.850000px;}
.x41_c00382{left:325.350000px;}
.x97_c00382{left:327.150000px;}
.x4e_c00382{left:328.350000px;}
.x13_c00382{left:329.850000px;}
.x69_c00382{left:331.800000px;}
.x20_c00382{left:332.850000px;}
.x5e_c00382{left:334.050000px;}
.x1_c00382{left:337.650000px;}
.x4a_c00382{left:340.950000px;}
.x5a_c00382{left:345.900000px;}
.x46_c00382{left:347.700000px;}
.x29_c00382{left:349.950000px;}
.xa1_c00382{left:351.600000px;}
.x1a_c00382{left:353.400000px;}
.x14_c00382{left:355.350000px;}
.x67_c00382{left:356.700000px;}
.x98_c00382{left:359.250000px;}
.x6a_c00382{left:360.300000px;}
.x55_c00382{left:361.950000px;}
.x4f_c00382{left:363.600000px;}
.x71_c00382{left:364.650000px;}
.xb_c00382{left:366.450000px;}
.xa0_c00382{left:372.150000px;}
.x1b_c00382{left:373.500000px;}
.x47_c00382{left:375.750000px;}
.x21_c00382{left:377.100000px;}
.x9d_c00382{left:378.300000px;}
.x7e_c00382{left:379.350000px;}
.x88_c00382{left:381.300000px;}
.x2a_c00382{left:383.100000px;}
.x90_c00382{left:384.450000px;}
.x9b_c00382{left:387.750000px;}
.x31_c00382{left:388.800000px;}
.x83_c00382{left:390.000000px;}
.x38_c00382{left:391.050000px;}
.x42_c00382{left:392.700000px;}
.x63_c00382{left:394.050000px;}
.x7a_c00382{left:395.250000px;}
.x94_c00382{left:396.600000px;}
.xc_c00382{left:398.100000px;}
.x84_c00382{left:399.300000px;}
.x2b_c00382{left:400.350000px;}
.x99_c00382{left:403.200000px;}
.x15_c00382{left:407.250000px;}
.x48_c00382{left:409.650000px;}
.x4b_c00382{left:414.000000px;}
.x32_c00382{left:418.350000px;}
.x142_c00382{left:439.050000px;}
.x141_c00382{left:440.400000px;}
.x11a_c00382{left:443.100000px;}
.x13e_c00382{left:454.350000px;}
.x12e_c00382{left:457.050000px;}
.x135_c00382{left:458.700000px;}
.x12b_c00382{left:459.900000px;}
.x116_c00382{left:460.950000px;}
.xeb_c00382{left:462.300000px;}
.xbc_c00382{left:463.350000px;}
.xa4_c00382{left:464.400000px;}
.x148_c00382{left:467.700000px;}
.x143_c00382{left:469.950000px;}
.x146_c00382{left:473.100000px;}
.x14d_c00382{left:475.950000px;}
.x13f_c00382{left:477.750000px;}
.x107_c00382{left:478.800000px;}
.x11e_c00382{left:483.150000px;}
.x102_c00382{left:486.000000px;}
.x13a_c00382{left:488.400000px;}
.xb3_c00382{left:489.600000px;}
.x10a_c00382{left:491.400000px;}
.xa5_c00382{left:494.700000px;}
.xbd_c00382{left:496.500000px;}
.x126_c00382{left:498.600000px;}
.xf4_c00382{left:500.700000px;}
.x11b_c00382{left:502.200000px;}
.xca_c00382{left:503.400000px;}
.xfe_c00382{left:505.500000px;}
.xb4_c00382{left:506.850000px;}
.xab_c00382{left:508.800000px;}
.xbe_c00382{left:511.650000px;}
.xc5_c00382{left:513.600000px;}
.xd7_c00382{left:515.250000px;}
.xec_c00382{left:516.300000px;}
.x129_c00382{left:519.000000px;}
.xce_c00382{left:520.050000px;}
.xef_c00382{left:522.300000px;}
.xdd_c00382{left:524.250000px;}
.xff_c00382{left:526.350000px;}
.x10e_c00382{left:527.400000px;}
.xe2_c00382{left:531.150000px;}
.xd8_c00382{left:532.950000px;}
.x11f_c00382{left:536.100000px;}
.x136_c00382{left:539.700000px;}
.xac_c00382{left:541.500000px;}
.xbf_c00382{left:543.750000px;}
.x144_c00382{left:544.950000px;}
.x100_c00382{left:547.950000px;}
.xed_c00382{left:549.000000px;}
.x12f_c00382{left:550.350000px;}
.xde_c00382{left:551.550000px;}
.x111_c00382{left:554.400000px;}
.x132_c00382{left:555.600000px;}
.x120_c00382{left:557.700000px;}
.xf0_c00382{left:559.350000px;}
.xd3_c00382{left:562.050000px;}
.x12c_c00382{left:564.000000px;}
.xf9_c00382{left:566.250000px;}
.x145_c00382{left:568.050000px;}
.x137_c00382{left:569.250000px;}
.xa6_c00382{left:571.050000px;}
.x103_c00382{left:572.700000px;}
.xe3_c00382{left:574.650000px;}
.xcb_c00382{left:576.150000px;}
.xe8_c00382{left:579.000000px;}
.xad_c00382{left:580.350000px;}
.x117_c00382{left:581.550000px;}
.x12a_c00382{left:583.050000px;}
.xc0_c00382{left:584.100000px;}
.x133_c00382{left:585.150000px;}
.xb5_c00382{left:586.350000px;}
.x127_c00382{left:588.150000px;}
.x124_c00382{left:590.250000px;}
.xa7_c00382{left:591.600000px;}
.xcf_c00382{left:593.850000px;}
.xcc_c00382{left:595.950000px;}
.xe4_c00382{left:598.050000px;}
.x10b_c00382{left:599.400000px;}
.x108_c00382{left:602.550000px;}
.xc1_c00382{left:603.600000px;}
.xd9_c00382{left:605.250000px;}
.xf1_c00382{left:607.200000px;}
.xdf_c00382{left:608.850000px;}
.xae_c00382{left:610.200000px;}
.x121_c00382{left:613.200000px;}
.xe9_c00382{left:615.600000px;}
.x11c_c00382{left:617.100000px;}
.x101_c00382{left:618.150000px;}
.x130_c00382{left:619.500000px;}
.xda_c00382{left:621.150000px;}
.xb6_c00382{left:622.350000px;}
.x138_c00382{left:623.400000px;}
.xd4_c00382{left:625.800000px;}
.x109_c00382{left:627.450000px;}
.xf2_c00382{left:628.500000px;}
.x12d_c00382{left:630.600000px;}
.xf5_c00382{left:631.800000px;}
.x14b_c00382{left:633.600000px;}
.xe5_c00382{left:635.850000px;}
.xc6_c00382{left:637.050000px;}
.xd0_c00382{left:638.100000px;}
.xc2_c00382{left:639.600000px;}
.x118_c00382{left:641.700000px;}
.xa8_c00382{left:644.100000px;}
.xb7_c00382{left:645.450000px;}
.x149_c00382{left:646.500000px;}
.x104_c00382{left:648.300000px;}
.xfa_c00382{left:649.800000px;}
.xdb_c00382{left:653.250000px;}
.x11d_c00382{left:655.650000px;}
.x112_c00382{left:657.300000px;}
.xf6_c00382{left:660.300000px;}
.xee_c00382{left:663.150000px;}
.x125_c00382{left:664.650000px;}
.x106_c00382{left:667.650000px;}
.xcd_c00382{left:668.700000px;}
.xfb_c00382{left:670.650000px;}
.xaf_c00382{left:671.700000px;}
.xc7_c00382{left:673.050000px;}
.xe0_c00382{left:678.750000px;}
.xb0_c00382{left:681.450000px;}
.xa9_c00382{left:682.950000px;}
.x147_c00382{left:684.600000px;}
.x114_c00382{left:687.000000px;}
.xfc_c00382{left:688.350000px;}
.x10f_c00382{left:689.550000px;}
.x10c_c00382{left:692.700000px;}
.xd1_c00382{left:695.700000px;}
.x128_c00382{left:697.950000px;}
.xc8_c00382{left:699.750000px;}
.xb8_c00382{left:701.250000px;}
.xc3_c00382{left:704.400000px;}
.xea_c00382{left:707.400000px;}
.xf3_c00382{left:708.750000px;}
.x139_c00382{left:709.800000px;}
.x14c_c00382{left:711.000000px;}
.xe6_c00382{left:712.200000px;}
.xaa_c00382{left:715.050000px;}
.x113_c00382{left:717.750000px;}
.x14a_c00382{left:718.800000px;}
.xd5_c00382{left:720.150000px;}
.x115_c00382{left:721.950000px;}
.xf7_c00382{left:723.600000px;}
.xb1_c00382{left:724.650000px;}
.xb9_c00382{left:726.750000px;}
.x105_c00382{left:728.550000px;}
.x122_c00382{left:730.350000px;}
.xe7_c00382{left:731.700000px;}
.xc9_c00382{left:736.050000px;}
.xba_c00382{left:737.250000px;}
.xf8_c00382{left:738.300000px;}
.x13c_c00382{left:743.100000px;}
.xc4_c00382{left:744.300000px;}
.x14e_c00382{left:745.500000px;}
.x13b_c00382{left:746.850000px;}
.x123_c00382{left:748.050000px;}
.xe1_c00382{left:750.000000px;}
.xb2_c00382{left:752.700000px;}
.x2_c00382{left:754.200000px;}
.x119_c00382{left:756.150000px;}
.xfd_c00382{left:757.500000px;}
.xdc_c00382{left:758.700000px;}
.x110_c00382{left:760.050000px;}
.x134_c00382{left:761.850000px;}
.x140_c00382{left:764.100000px;}
.xbb_c00382{left:765.750000px;}
.x10d_c00382{left:767.550000px;}
.xd6_c00382{left:768.750000px;}
.xd2_c00382{left:769.800000px;}
.x131_c00382{left:772.800000px;}
.x13d_c00382{left:785.250000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws0_c00382{word-spacing:-10.555556pt;}
.ws6_c00382{word-spacing:-9.963804pt;}
.ws1_c00382{word-spacing:-8.395924pt;}
.ws7_c00382{word-spacing:-7.807808pt;}
.ws3_c00382{word-spacing:-2.962963pt;}
.ws8_c00382{word-spacing:0.000000pt;}
.ws5_c00382{word-spacing:5.666667pt;}
.ws2_c00382{word-spacing:6.074074pt;}
.ws4_c00382{word-spacing:9.132216pt;}
._1_c00382{width:17.811122pt;}
._0_c00382{width:21.111111pt;}
.fs4_c00382{font-size:37.333333pt;}
.fs5_c00382{font-size:48.000000pt;}
.fs3_c00382{font-size:53.333333pt;}
.fs2_c00382{font-size:58.666667pt;}
.fs1_c00382{font-size:64.000000pt;}
.fs0_c00382{font-size:69.333333pt;}
.y0_c00382{bottom:0.000000pt;}
.y6c_c00382{bottom:152.666667pt;}
.y37_c00382{bottom:166.133333pt;}
.y6b_c00382{bottom:166.933333pt;}
.y6a_c00382{bottom:179.466667pt;}
.y36_c00382{bottom:182.133333pt;}
.y69_c00382{bottom:192.266667pt;}
.y35_c00382{bottom:198.133333pt;}
.y68_c00382{bottom:205.066667pt;}
.y34_c00382{bottom:213.866667pt;}
.y67_c00382{bottom:217.600000pt;}
.y33_c00382{bottom:229.600000pt;}
.y66_c00382{bottom:230.400000pt;}
.y65_c00382{bottom:244.800000pt;}
.y32_c00382{bottom:245.333333pt;}
.y64_c00382{bottom:256.266667pt;}
.y63_c00382{bottom:269.066667pt;}
.y31_c00382{bottom:269.600000pt;}
.y30_c00382{bottom:276.933333pt;}
.y62_c00382{bottom:281.600000pt;}
.y2f_c00382{bottom:292.933333pt;}
.y61_c00382{bottom:294.666667pt;}
.y2e_c00382{bottom:308.933333pt;}
.y2d_c00382{bottom:324.933333pt;}
.y2c_c00382{bottom:340.666667pt;}
.y60_c00382{bottom:344.000000pt;}
.y2b_c00382{bottom:356.666667pt;}
.y5f_c00382{bottom:360.933333pt;}
.y2a_c00382{bottom:372.666667pt;}
.y5e_c00382{bottom:376.400000pt;}
.y29_c00382{bottom:388.400000pt;}
.y5d_c00382{bottom:392.133333pt;}
.y28_c00382{bottom:403.733333pt;}
.y5c_c00382{bottom:407.466667pt;}
.y27_c00382{bottom:419.466667pt;}
.y5b_c00382{bottom:423.466667pt;}
.y26_c00382{bottom:435.466667pt;}
.y5a_c00382{bottom:439.200000pt;}
.y25_c00382{bottom:451.200000pt;}
.y59_c00382{bottom:455.466667pt;}
.y24_c00382{bottom:467.200000pt;}
.y58_c00382{bottom:471.200000pt;}
.y23_c00382{bottom:482.933333pt;}
.y57_c00382{bottom:486.933333pt;}
.y22_c00382{bottom:498.666667pt;}
.y56_c00382{bottom:502.666667pt;}
.y21_c00382{bottom:514.666667pt;}
.y55_c00382{bottom:518.666667pt;}
.y20_c00382{bottom:530.400000pt;}
.y54_c00382{bottom:534.400000pt;}
.y1f_c00382{bottom:546.133333pt;}
.y53_c00382{bottom:550.400000pt;}
.y1e_c00382{bottom:562.133333pt;}
.y52_c00382{bottom:573.066667pt;}
.y1d_c00382{bottom:577.866667pt;}
.y51_c00382{bottom:589.733333pt;}
.y1c_c00382{bottom:593.866667pt;}
.y50_c00382{bottom:605.733333pt;}
.y1b_c00382{bottom:609.600000pt;}
.y4f_c00382{bottom:621.066667pt;}
.y1a_c00382{bottom:625.333333pt;}
.y4e_c00382{bottom:637.066667pt;}
.y19_c00382{bottom:641.333333pt;}
.y4d_c00382{bottom:652.800000pt;}
.y18_c00382{bottom:657.066667pt;}
.y4c_c00382{bottom:668.533333pt;}
.y17_c00382{bottom:672.800000pt;}
.y4b_c00382{bottom:688.000000pt;}
.y16_c00382{bottom:688.533333pt;}
.y4a_c00382{bottom:703.466667pt;}
.y15_c00382{bottom:704.533333pt;}
.y49_c00382{bottom:719.200000pt;}
.y14_c00382{bottom:720.266667pt;}
.y48_c00382{bottom:735.200000pt;}
.y13_c00382{bottom:735.600000pt;}
.y47_c00382{bottom:750.933333pt;}
.y12_c00382{bottom:751.600000pt;}
.y46_c00382{bottom:766.666667pt;}
.y11_c00382{bottom:767.600000pt;}
.y45_c00382{bottom:782.666667pt;}
.y10_c00382{bottom:783.333333pt;}
.y44_c00382{bottom:798.400000pt;}
.yf_c00382{bottom:798.666667pt;}
.ye_c00382{bottom:814.666667pt;}
.y43_c00382{bottom:815.733333pt;}
.yd_c00382{bottom:830.400000pt;}
.y42_c00382{bottom:831.733333pt;}
.y41_c00382{bottom:845.466667pt;}
.yc_c00382{bottom:846.400000pt;}
.y40_c00382{bottom:861.200000pt;}
.yb_c00382{bottom:862.133333pt;}
.y3f_c00382{bottom:877.200000pt;}
.ya_c00382{bottom:877.733333pt;}
.y3e_c00382{bottom:892.933333pt;}
.y9_c00382{bottom:893.466667pt;}
.y3d_c00382{bottom:908.666667pt;}
.y8_c00382{bottom:909.466667pt;}
.y3c_c00382{bottom:924.666667pt;}
.y7_c00382{bottom:924.800000pt;}
.y3b_c00382{bottom:940.400000pt;}
.y6_c00382{bottom:941.066667pt;}
.y3a_c00382{bottom:956.400000pt;}
.y5_c00382{bottom:956.800000pt;}
.y39_c00382{bottom:972.133333pt;}
.y4_c00382{bottom:972.533333pt;}
.y38_c00382{bottom:988.133333pt;}
.y3_c00382{bottom:988.533333pt;}
.y2_c00382{bottom:1010.933333pt;}
.y1_c00382{bottom:1012.533333pt;}
.h6_c00382{height:37.333333pt;}
.h7_c00382{height:48.000000pt;}
.h5_c00382{height:53.333333pt;}
.h4_c00382{height:58.666667pt;}
.h3_c00382{height:64.000000pt;}
.h2_c00382{height:69.333333pt;}
.h0_c00382{height:1127.039957pt;}
.h1_c00382{height:1127.333333pt;}
.w0_c00382{width:853.760009pt;}
.w1_c00382{width:854.000000pt;}
.x0_c00382{left:0.000000pt;}
.x3e_c00382{left:85.733333pt;}
.x3_c00382{left:87.333333pt;}
.x95_c00382{left:91.733333pt;}
.x75_c00382{left:93.333333pt;}
.x5f_c00382{left:94.666667pt;}
.xd_c00382{left:95.733333pt;}
.x4_c00382{left:96.933333pt;}
.x9e_c00382{left:105.866667pt;}
.xa2_c00382{left:110.133333pt;}
.x39_c00382{left:112.133333pt;}
.x60_c00382{left:113.733333pt;}
.x8b_c00382{left:115.866667pt;}
.x33_c00382{left:118.133333pt;}
.x56_c00382{left:120.400000pt;}
.x72_c00382{left:121.600000pt;}
.xe_c00382{left:123.600000pt;}
.x96_c00382{left:125.600000pt;}
.x43_c00382{left:126.666667pt;}
.x68_c00382{left:129.466667pt;}
.x16_c00382{left:131.333333pt;}
.x22_c00382{left:132.933333pt;}
.x9a_c00382{left:134.400000pt;}
.x4c_c00382{left:136.266667pt;}
.x5_c00382{left:141.066667pt;}
.x77_c00382{left:142.933333pt;}
.x7b_c00382{left:144.666667pt;}
.x8e_c00382{left:146.800000pt;}
.x34_c00382{left:147.866667pt;}
.x57_c00382{left:149.466667pt;}
.x64_c00382{left:151.200000pt;}
.x23_c00382{left:152.133333pt;}
.x1c_c00382{left:155.066667pt;}
.x89_c00382{left:156.133333pt;}
.x73_c00382{left:157.733333pt;}
.x91_c00382{left:158.800000pt;}
.x61_c00382{left:162.933333pt;}
.x3a_c00382{left:165.200000pt;}
.x6b_c00382{left:168.000000pt;}
.x8d_c00382{left:169.600000pt;}
.x35_c00382{left:170.933333pt;}
.xf_c00382{left:171.866667pt;}
.x7f_c00382{left:172.933333pt;}
.x50_c00382{left:174.800000pt;}
.x1d_c00382{left:176.533333pt;}
.x3f_c00382{left:178.133333pt;}
.x24_c00382{left:179.333333pt;}
.x17_c00382{left:180.666667pt;}
.x6_c00382{left:182.000000pt;}
.x4d_c00382{left:183.333333pt;}
.x9f_c00382{left:185.066667pt;}
.x25_c00382{left:187.333333pt;}
.x74_c00382{left:188.400000pt;}
.x7_c00382{left:190.000000pt;}
.x7c_c00382{left:192.666667pt;}
.x2c_c00382{left:193.600000pt;}
.x44_c00382{left:195.066667pt;}
.x51_c00382{left:196.266667pt;}
.x10_c00382{left:197.466667pt;}
.x58_c00382{left:200.000000pt;}
.x1e_c00382{left:201.466667pt;}
.x26_c00382{left:202.666667pt;}
.x3b_c00382{left:206.133333pt;}
.x93_c00382{left:208.000000pt;}
.x49_c00382{left:209.066667pt;}
.x18_c00382{left:210.800000pt;}
.x70_c00382{left:212.266667pt;}
.x76_c00382{left:213.866667pt;}
.x80_c00382{left:215.200000pt;}
.x9c_c00382{left:216.266667pt;}
.x2d_c00382{left:217.866667pt;}
.x8_c00382{left:220.133333pt;}
.x6e_c00382{left:221.600000pt;}
.xa3_c00382{left:223.200000pt;}
.x52_c00382{left:224.533333pt;}
.x8a_c00382{left:227.200000pt;}
.x62_c00382{left:228.933333pt;}
.x5b_c00382{left:230.400000pt;}
.x11_c00382{left:232.400000pt;}
.x36_c00382{left:234.000000pt;}
.x81_c00382{left:237.200000pt;}
.x27_c00382{left:238.133333pt;}
.x92_c00382{left:240.400000pt;}
.x5c_c00382{left:242.533333pt;}
.x59_c00382{left:243.866667pt;}
.x3c_c00382{left:245.200000pt;}
.x40_c00382{left:246.666667pt;}
.x6c_c00382{left:248.000000pt;}
.x8f_c00382{left:249.200000pt;}
.x78_c00382{left:250.533333pt;}
.x37_c00382{left:251.600000pt;}
.x2e_c00382{left:252.800000pt;}
.x1f_c00382{left:254.266667pt;}
.x82_c00382{left:255.466667pt;}
.x9_c00382{left:256.666667pt;}
.x86_c00382{left:259.600000pt;}
.x12_c00382{left:261.466667pt;}
.x2f_c00382{left:263.066667pt;}
.x6d_c00382{left:264.933333pt;}
.x79_c00382{left:266.266667pt;}
.x5d_c00382{left:268.133333pt;}
.x87_c00382{left:269.200000pt;}
.x28_c00382{left:270.400000pt;}
.x65_c00382{left:272.266667pt;}
.x85_c00382{left:273.200000pt;}
.x45_c00382{left:274.133333pt;}
.xa_c00382{left:275.200000pt;}
.x19_c00382{left:276.400000pt;}
.x30_c00382{left:277.466667pt;}
.x7d_c00382{left:278.533333pt;}
.x53_c00382{left:279.600000pt;}
.x8c_c00382{left:281.333333pt;}
.x6f_c00382{left:282.666667pt;}
.x3d_c00382{left:284.533333pt;}
.x66_c00382{left:286.933333pt;}
.x54_c00382{left:287.866667pt;}
.x41_c00382{left:289.200000pt;}
.x97_c00382{left:290.800000pt;}
.x4e_c00382{left:291.866667pt;}
.x13_c00382{left:293.200000pt;}
.x69_c00382{left:294.933333pt;}
.x20_c00382{left:295.866667pt;}
.x5e_c00382{left:296.933333pt;}
.x1_c00382{left:300.133333pt;}
.x4a_c00382{left:303.066667pt;}
.x5a_c00382{left:307.466667pt;}
.x46_c00382{left:309.066667pt;}
.x29_c00382{left:311.066667pt;}
.xa1_c00382{left:312.533333pt;}
.x1a_c00382{left:314.133333pt;}
.x14_c00382{left:315.866667pt;}
.x67_c00382{left:317.066667pt;}
.x98_c00382{left:319.333333pt;}
.x6a_c00382{left:320.266667pt;}
.x55_c00382{left:321.733333pt;}
.x4f_c00382{left:323.200000pt;}
.x71_c00382{left:324.133333pt;}
.xb_c00382{left:325.733333pt;}
.xa0_c00382{left:330.800000pt;}
.x1b_c00382{left:332.000000pt;}
.x47_c00382{left:334.000000pt;}
.x21_c00382{left:335.200000pt;}
.x9d_c00382{left:336.266667pt;}
.x7e_c00382{left:337.200000pt;}
.x88_c00382{left:338.933333pt;}
.x2a_c00382{left:340.533333pt;}
.x90_c00382{left:341.733333pt;}
.x9b_c00382{left:344.666667pt;}
.x31_c00382{left:345.600000pt;}
.x83_c00382{left:346.666667pt;}
.x38_c00382{left:347.600000pt;}
.x42_c00382{left:349.066667pt;}
.x63_c00382{left:350.266667pt;}
.x7a_c00382{left:351.333333pt;}
.x94_c00382{left:352.533333pt;}
.xc_c00382{left:353.866667pt;}
.x84_c00382{left:354.933333pt;}
.x2b_c00382{left:355.866667pt;}
.x99_c00382{left:358.400000pt;}
.x15_c00382{left:362.000000pt;}
.x48_c00382{left:364.133333pt;}
.x4b_c00382{left:368.000000pt;}
.x32_c00382{left:371.866667pt;}
.x142_c00382{left:390.266667pt;}
.x141_c00382{left:391.466667pt;}
.x11a_c00382{left:393.866667pt;}
.x13e_c00382{left:403.866667pt;}
.x12e_c00382{left:406.266667pt;}
.x135_c00382{left:407.733333pt;}
.x12b_c00382{left:408.800000pt;}
.x116_c00382{left:409.733333pt;}
.xeb_c00382{left:410.933333pt;}
.xbc_c00382{left:411.866667pt;}
.xa4_c00382{left:412.800000pt;}
.x148_c00382{left:415.733333pt;}
.x143_c00382{left:417.733333pt;}
.x146_c00382{left:420.533333pt;}
.x14d_c00382{left:423.066667pt;}
.x13f_c00382{left:424.666667pt;}
.x107_c00382{left:425.600000pt;}
.x11e_c00382{left:429.466667pt;}
.x102_c00382{left:432.000000pt;}
.x13a_c00382{left:434.133333pt;}
.xb3_c00382{left:435.200000pt;}
.x10a_c00382{left:436.800000pt;}
.xa5_c00382{left:439.733333pt;}
.xbd_c00382{left:441.333333pt;}
.x126_c00382{left:443.200000pt;}
.xf4_c00382{left:445.066667pt;}
.x11b_c00382{left:446.400000pt;}
.xca_c00382{left:447.466667pt;}
.xfe_c00382{left:449.333333pt;}
.xb4_c00382{left:450.533333pt;}
.xab_c00382{left:452.266667pt;}
.xbe_c00382{left:454.800000pt;}
.xc5_c00382{left:456.533333pt;}
.xd7_c00382{left:458.000000pt;}
.xec_c00382{left:458.933333pt;}
.x129_c00382{left:461.333333pt;}
.xce_c00382{left:462.266667pt;}
.xef_c00382{left:464.266667pt;}
.xdd_c00382{left:466.000000pt;}
.xff_c00382{left:467.866667pt;}
.x10e_c00382{left:468.800000pt;}
.xe2_c00382{left:472.133333pt;}
.xd8_c00382{left:473.733333pt;}
.x11f_c00382{left:476.533333pt;}
.x136_c00382{left:479.733333pt;}
.xac_c00382{left:481.333333pt;}
.xbf_c00382{left:483.333333pt;}
.x144_c00382{left:484.400000pt;}
.x100_c00382{left:487.066667pt;}
.xed_c00382{left:488.000000pt;}
.x12f_c00382{left:489.200000pt;}
.xde_c00382{left:490.266667pt;}
.x111_c00382{left:492.800000pt;}
.x132_c00382{left:493.866667pt;}
.x120_c00382{left:495.733333pt;}
.xf0_c00382{left:497.200000pt;}
.xd3_c00382{left:499.600000pt;}
.x12c_c00382{left:501.333333pt;}
.xf9_c00382{left:503.333333pt;}
.x145_c00382{left:504.933333pt;}
.x137_c00382{left:506.000000pt;}
.xa6_c00382{left:507.600000pt;}
.x103_c00382{left:509.066667pt;}
.xe3_c00382{left:510.800000pt;}
.xcb_c00382{left:512.133333pt;}
.xe8_c00382{left:514.666667pt;}
.xad_c00382{left:515.866667pt;}
.x117_c00382{left:516.933333pt;}
.x12a_c00382{left:518.266667pt;}
.xc0_c00382{left:519.200000pt;}
.x133_c00382{left:520.133333pt;}
.xb5_c00382{left:521.200000pt;}
.x127_c00382{left:522.800000pt;}
.x124_c00382{left:524.666667pt;}
.xa7_c00382{left:525.866667pt;}
.xcf_c00382{left:527.866667pt;}
.xcc_c00382{left:529.733333pt;}
.xe4_c00382{left:531.600000pt;}
.x10b_c00382{left:532.800000pt;}
.x108_c00382{left:535.600000pt;}
.xc1_c00382{left:536.533333pt;}
.xd9_c00382{left:538.000000pt;}
.xf1_c00382{left:539.733333pt;}
.xdf_c00382{left:541.200000pt;}
.xae_c00382{left:542.400000pt;}
.x121_c00382{left:545.066667pt;}
.xe9_c00382{left:547.200000pt;}
.x11c_c00382{left:548.533333pt;}
.x101_c00382{left:549.466667pt;}
.x130_c00382{left:550.666667pt;}
.xda_c00382{left:552.133333pt;}
.xb6_c00382{left:553.200000pt;}
.x138_c00382{left:554.133333pt;}
.xd4_c00382{left:556.266667pt;}
.x109_c00382{left:557.733333pt;}
.xf2_c00382{left:558.666667pt;}
.x12d_c00382{left:560.533333pt;}
.xf5_c00382{left:561.600000pt;}
.x14b_c00382{left:563.200000pt;}
.xe5_c00382{left:565.200000pt;}
.xc6_c00382{left:566.266667pt;}
.xd0_c00382{left:567.200000pt;}
.xc2_c00382{left:568.533333pt;}
.x118_c00382{left:570.400000pt;}
.xa8_c00382{left:572.533333pt;}
.xb7_c00382{left:573.733333pt;}
.x149_c00382{left:574.666667pt;}
.x104_c00382{left:576.266667pt;}
.xfa_c00382{left:577.600000pt;}
.xdb_c00382{left:580.666667pt;}
.x11d_c00382{left:582.800000pt;}
.x112_c00382{left:584.266667pt;}
.xf6_c00382{left:586.933333pt;}
.xee_c00382{left:589.466667pt;}
.x125_c00382{left:590.800000pt;}
.x106_c00382{left:593.466667pt;}
.xcd_c00382{left:594.400000pt;}
.xfb_c00382{left:596.133333pt;}
.xaf_c00382{left:597.066667pt;}
.xc7_c00382{left:598.266667pt;}
.xe0_c00382{left:603.333333pt;}
.xb0_c00382{left:605.733333pt;}
.xa9_c00382{left:607.066667pt;}
.x147_c00382{left:608.533333pt;}
.x114_c00382{left:610.666667pt;}
.xfc_c00382{left:611.866667pt;}
.x10f_c00382{left:612.933333pt;}
.x10c_c00382{left:615.733333pt;}
.xd1_c00382{left:618.400000pt;}
.x128_c00382{left:620.400000pt;}
.xc8_c00382{left:622.000000pt;}
.xb8_c00382{left:623.333333pt;}
.xc3_c00382{left:626.133333pt;}
.xea_c00382{left:628.800000pt;}
.xf3_c00382{left:630.000000pt;}
.x139_c00382{left:630.933333pt;}
.x14c_c00382{left:632.000000pt;}
.xe6_c00382{left:633.066667pt;}
.xaa_c00382{left:635.600000pt;}
.x113_c00382{left:638.000000pt;}
.x14a_c00382{left:638.933333pt;}
.xd5_c00382{left:640.133333pt;}
.x115_c00382{left:641.733333pt;}
.xf7_c00382{left:643.200000pt;}
.xb1_c00382{left:644.133333pt;}
.xb9_c00382{left:646.000000pt;}
.x105_c00382{left:647.600000pt;}
.x122_c00382{left:649.200000pt;}
.xe7_c00382{left:650.400000pt;}
.xc9_c00382{left:654.266667pt;}
.xba_c00382{left:655.333333pt;}
.xf8_c00382{left:656.266667pt;}
.x13c_c00382{left:660.533333pt;}
.xc4_c00382{left:661.600000pt;}
.x14e_c00382{left:662.666667pt;}
.x13b_c00382{left:663.866667pt;}
.x123_c00382{left:664.933333pt;}
.xe1_c00382{left:666.666667pt;}
.xb2_c00382{left:669.066667pt;}
.x2_c00382{left:670.400000pt;}
.x119_c00382{left:672.133333pt;}
.xfd_c00382{left:673.333333pt;}
.xdc_c00382{left:674.400000pt;}
.x110_c00382{left:675.600000pt;}
.x134_c00382{left:677.200000pt;}
.x140_c00382{left:679.200000pt;}
.xbb_c00382{left:680.666667pt;}
.x10d_c00382{left:682.266667pt;}
.xd6_c00382{left:683.333333pt;}
.xd2_c00382{left:684.266667pt;}
.x131_c00382{left:686.933333pt;}
.x13d_c00382{left:698.000000pt;}
}





/* 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_c00383 {
    display:none;
  }
  .loading-indicator_c00383.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00383 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_c00383 { 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_c00383" -> "#page-container .classname_c00383")
 */
.pf_c00383 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00383 { /* 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_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00383 { /* 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_c00383 { /* 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_c00383 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00383 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00383 {overflow:visible;}
  }
}
.c_c00383 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00383 { /* 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_c00383:after { /* webkit #35443 */
  content: '';
}
.t_c00383:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00383 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 */
}
.__c00383 { /* 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_c00383 { /* info for Javascript */
  display:none;
}
.l_c00383 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00383 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00383 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00383: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_c00383 {
    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_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00383.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_c00383 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00383;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.000000;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;}
.m102_c00383{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00383{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00383{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m41_c00383{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00383{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m18_c00383{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mab_c00383{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m63_c00383{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00383{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00383{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m68_c00383{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00383{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m92_c00383{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00383{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00383{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00383{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m47_c00383{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00383{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m87_c00383{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00383{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf_c00383{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00383{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m40_c00383{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m9_c00383{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m62_c00383{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m80_c00383{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mca_c00383{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m67_c00383{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m11_c00383{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00383{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m32_c00383{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00383{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00383{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00383{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m77_c00383{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00383{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m21_c00383{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00383{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00383{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00383{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00383{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m98_c00383{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.me5_c00383{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00383{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m61_c00383{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.maa_c00383{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00383{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mae_c00383{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00383{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m14_c00383{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7_c00383{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00383{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m100_c00383{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00383{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m86_c00383{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md9_c00383{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00383{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00383{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00383{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m4_c00383{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m76_c00383{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00383{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.md1_c00383{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.meb_c00383{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m81_c00383{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m8_c00383{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m10_c00383{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00383{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md2_c00383{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00383{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00383{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mea_c00383{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m105_c00383{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md4_c00383{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00383{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00383{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m95_c00383{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m26_c00383{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00383{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m75_c00383{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m84_c00383{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00383{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md_c00383{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m44_c00383{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc_c00383{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m91_c00383{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m82_c00383{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00383{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00383{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00383{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00383{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.me_c00383{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00383{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00383{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m78_c00383{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00383{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m29_c00383{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mff_c00383{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mef_c00383{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m58_c00383{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00383{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m90_c00383{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me3_c00383{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m23_c00383{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00383{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m83_c00383{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m59_c00383{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00383{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00383{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m49_c00383{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mad_c00383{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m116_c00383{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m108_c00383{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m16_c00383{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m36_c00383{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5_c00383{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md3_c00383{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m96_c00383{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00383{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m17_c00383{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00383{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m79_c00383{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m45_c00383{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00383{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6_c00383{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m22_c00383{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00383{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00383{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m71_c00383{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00383{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m73_c00383{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m60_c00383{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md6_c00383{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m27_c00383{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m53_c00383{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00383{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00383{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m88_c00383{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00383{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00383{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m99_c00383{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00383{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m38_c00383{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mac_c00383{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00383{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00383{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00383{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m101_c00383{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00383{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m13_c00383{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m109_c00383{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m69_c00383{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m85_c00383{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00383{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m25_c00383{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00383{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.me0_c00383{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m74_c00383{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m104_c00383{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00383{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00383{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00383{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb_c00383{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00383{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m12_c00383{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me1_c00383{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00383{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m43_c00383{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00383{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m15_c00383{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m103_c00383{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.me6_c00383{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me9_c00383{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.md7_c00383{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00383{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00383{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00383{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m66_c00383{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m42_c00383{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.maf_c00383{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00383{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m113_c00383{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00383{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me7_c00383{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m117_c00383{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.ma_c00383{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00383{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mee_c00383{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mce_c00383{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00383{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28_c00383{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m97_c00383{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00383{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m19_c00383{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00383{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00383{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m37_c00383{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00383{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m106_c00383{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.md8_c00383{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m64_c00383{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m89_c00383{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m31_c00383{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00383{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me4_c00383{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00383{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m34_c00383{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00383{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00383{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00383{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m114_c00383{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00383{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m94_c00383{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00383{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m52_c00383{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.me2_c00383{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m51_c00383{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mde_c00383{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m30_c00383{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00383{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00383{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mba_c00383{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m50_c00383{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00383{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20_c00383{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m48_c00383{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.med_c00383{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00383{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00383{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00383{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00383{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00383{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m39_c00383{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m33_c00383{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mda_c00383{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00383{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m35_c00383{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00383{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m54_c00383{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00383{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m24_c00383{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mec_c00383{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me8_c00383{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00383{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00383{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00383{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m65_c00383{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00383{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m72_c00383{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00383{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m57_c00383{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m115_c00383{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m112_c00383{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00383{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m70_c00383{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md0_c00383{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00383{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m93_c00383{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m110_c00383{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md5_c00383{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m111_c00383{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00383{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00383{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00383{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00383{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m107_c00383{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00383{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00383{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00383{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00383{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00383{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00383{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m56_c00383{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m55_c00383{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m46_c00383{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00383{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{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__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00383{word-spacing:-8.333333px;}
.ws2_c00383{word-spacing:-6.666667px;}
.ws1_c00383{word-spacing:-5.405405px;}
.wsd_c00383{word-spacing:-5.217391px;}
.ws6_c00383{word-spacing:-4.750000px;}
.ws9_c00383{word-spacing:-3.000000px;}
.ws4_c00383{word-spacing:0.000000px;}
.ws7_c00383{word-spacing:1.447368px;}
.wsc_c00383{word-spacing:2.321429px;}
.ws8_c00383{word-spacing:2.596154px;}
.ws0_c00383{word-spacing:4.682927px;}
.wsa_c00383{word-spacing:6.666667px;}
.wsb_c00383{word-spacing:10.062134px;}
.ws5_c00383{word-spacing:629.583333px;}
.fc0_c00383{color:transparent;}
.fs5_c00383{font-size:48.000000px;}
.fs4_c00383{font-size:54.000000px;}
.fs3_c00383{font-size:60.000000px;}
.fs2_c00383{font-size:66.000000px;}
.fs0_c00383{font-size:72.000000px;}
.fs1_c00383{font-size:78.000000px;}
.y0_c00383{bottom:0.000000px;}
.y7d_c00383{bottom:195.150000px;}
.y40_c00383{bottom:199.500000px;}
.y7c_c00383{bottom:213.450000px;}
.y3f_c00383{bottom:213.900000px;}
.y7b_c00383{bottom:227.850000px;}
.y3e_c00383{bottom:228.000000px;}
.y3d_c00383{bottom:242.100000px;}
.y7a_c00383{bottom:242.250000px;}
.y3c_c00383{bottom:256.200000px;}
.y79_c00383{bottom:256.650000px;}
.y3b_c00383{bottom:270.300000px;}
.y3a_c00383{bottom:284.400000px;}
.y78_c00383{bottom:284.700000px;}
.y39_c00383{bottom:298.500000px;}
.y77_c00383{bottom:298.800000px;}
.y38_c00383{bottom:312.900000px;}
.y76_c00383{bottom:313.500000px;}
.y37_c00383{bottom:327.000000px;}
.y75_c00383{bottom:327.600000px;}
.y36_c00383{bottom:341.100000px;}
.y74_c00383{bottom:342.000000px;}
.y35_c00383{bottom:355.200000px;}
.y73_c00383{bottom:356.400000px;}
.y34_c00383{bottom:370.650000px;}
.y72_c00383{bottom:370.800000px;}
.y33_c00383{bottom:383.250000px;}
.y71_c00383{bottom:385.200000px;}
.y32_c00383{bottom:397.350000px;}
.y70_c00383{bottom:399.600000px;}
.y31_c00383{bottom:411.750000px;}
.y6f_c00383{bottom:414.000000px;}
.y30_c00383{bottom:426.150000px;}
.y6e_c00383{bottom:428.400000px;}
.y2f_c00383{bottom:440.550000px;}
.y6d_c00383{bottom:442.800000px;}
.y2e_c00383{bottom:455.250000px;}
.y6c_c00383{bottom:456.900000px;}
.y2d_c00383{bottom:469.350000px;}
.y6b_c00383{bottom:471.300000px;}
.y2c_c00383{bottom:483.450000px;}
.y6a_c00383{bottom:485.700000px;}
.y2b_c00383{bottom:497.850000px;}
.y69_c00383{bottom:500.400000px;}
.y2a_c00383{bottom:512.250000px;}
.y68_c00383{bottom:514.050000px;}
.y29_c00383{bottom:526.950000px;}
.y67_c00383{bottom:528.750000px;}
.y28_c00383{bottom:540.600000px;}
.y66_c00383{bottom:543.150000px;}
.y27_c00383{bottom:555.000000px;}
.y65_c00383{bottom:557.550000px;}
.y26_c00383{bottom:569.100000px;}
.y64_c00383{bottom:571.650000px;}
.y25_c00383{bottom:583.200000px;}
.y63_c00383{bottom:586.050000px;}
.y24_c00383{bottom:597.600000px;}
.y62_c00383{bottom:600.450000px;}
.y23_c00383{bottom:611.700000px;}
.y61_c00383{bottom:614.550000px;}
.y22_c00383{bottom:625.650000px;}
.y60_c00383{bottom:629.250000px;}
.y21_c00383{bottom:639.750000px;}
.y5f_c00383{bottom:643.350000px;}
.y20_c00383{bottom:654.150000px;}
.y5e_c00383{bottom:657.750000px;}
.y1f_c00383{bottom:668.400000px;}
.y5d_c00383{bottom:672.150000px;}
.y1e_c00383{bottom:682.500000px;}
.y5c_c00383{bottom:686.250000px;}
.y1d_c00383{bottom:696.900000px;}
.y5b_c00383{bottom:700.950000px;}
.y1c_c00383{bottom:711.300000px;}
.y5a_c00383{bottom:715.350000px;}
.y1b_c00383{bottom:725.700000px;}
.y59_c00383{bottom:729.300000px;}
.y1a_c00383{bottom:739.800000px;}
.y58_c00383{bottom:743.700000px;}
.y19_c00383{bottom:754.200000px;}
.y57_c00383{bottom:758.400000px;}
.y18_c00383{bottom:768.600000px;}
.y56_c00383{bottom:772.500000px;}
.y17_c00383{bottom:782.700000px;}
.y55_c00383{bottom:786.900000px;}
.y16_c00383{bottom:797.100000px;}
.y54_c00383{bottom:801.300000px;}
.y15_c00383{bottom:811.200000px;}
.y53_c00383{bottom:815.400000px;}
.y14_c00383{bottom:825.900000px;}
.y52_c00383{bottom:829.800000px;}
.y13_c00383{bottom:839.400000px;}
.y51_c00383{bottom:844.200000px;}
.y12_c00383{bottom:853.800000px;}
.y50_c00383{bottom:858.600000px;}
.y11_c00383{bottom:868.500000px;}
.y4f_c00383{bottom:873.000000px;}
.y10_c00383{bottom:882.600000px;}
.y4e_c00383{bottom:887.100000px;}
.yf_c00383{bottom:897.300000px;}
.y4d_c00383{bottom:901.500000px;}
.ye_c00383{bottom:911.400000px;}
.y4c_c00383{bottom:915.900000px;}
.yd_c00383{bottom:925.500000px;}
.y4b_c00383{bottom:929.850000px;}
.yc_c00383{bottom:943.200000px;}
.y4a_c00383{bottom:945.750000px;}
.yb_c00383{bottom:957.600000px;}
.y49_c00383{bottom:958.650000px;}
.ya_c00383{bottom:972.300000px;}
.y48_c00383{bottom:972.750000px;}
.y9_c00383{bottom:986.400000px;}
.y47_c00383{bottom:987.450000px;}
.y8_c00383{bottom:1000.800000px;}
.y46_c00383{bottom:1001.850000px;}
.y7_c00383{bottom:1014.600000px;}
.y45_c00383{bottom:1016.250000px;}
.y6_c00383{bottom:1029.000000px;}
.y44_c00383{bottom:1030.050000px;}
.y5_c00383{bottom:1043.700000px;}
.y43_c00383{bottom:1044.750000px;}
.y4_c00383{bottom:1099.800000px;}
.y42_c00383{bottom:1102.350000px;}
.y3_c00383{bottom:1117.500000px;}
.y41_c00383{bottom:1120.650000px;}
.y1_c00383{bottom:1143.000000px;}
.y2_c00383{bottom:1144.050000px;}
.h7_c00383{height:48.000000px;}
.h6_c00383{height:54.000000px;}
.h5_c00383{height:60.000000px;}
.h4_c00383{height:66.000000px;}
.h2_c00383{height:72.000000px;}
.h3_c00383{height:78.000000px;}
.h1_c00383{height:1268.250000px;}
.h0_c00383{height:1268.279937px;}
.w0_c00383{width:960.480010px;}
.w1_c00383{width:960.750000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:185.100000px;}
.xe_c00383{left:187.200000px;}
.x2a_c00383{left:188.250000px;}
.x8f_c00383{left:189.300000px;}
.x9f_c00383{left:190.650000px;}
.xab_c00383{left:191.700000px;}
.x81_c00383{left:192.750000px;}
.xc1_c00383{left:194.250000px;}
.x7f_c00383{left:196.500000px;}
.x3e_c00383{left:201.300000px;}
.x24_c00383{left:202.350000px;}
.x7_c00383{left:203.850000px;}
.x2b_c00383{left:206.550000px;}
.x17_c00383{left:208.650000px;}
.x71_c00383{left:210.900000px;}
.x80_c00383{left:212.400000px;}
.xa7_c00383{left:214.050000px;}
.x57_c00383{left:219.600000px;}
.x42_c00383{left:221.400000px;}
.x76_c00383{left:223.050000px;}
.x5e_c00383{left:224.250000px;}
.xbe_c00383{left:225.900000px;}
.x1f_c00383{left:227.100000px;}
.x36_c00383{left:229.500000px;}
.x3c_c00383{left:230.550000px;}
.x72_c00383{left:232.200000px;}
.xc2_c00383{left:233.850000px;}
.x77_c00383{left:235.650000px;}
.x6b_c00383{left:237.000000px;}
.x25_c00383{left:238.350000px;}
.x98_c00383{left:240.750000px;}
.x90_c00383{left:241.800000px;}
.x8_c00383{left:243.150000px;}
.x43_c00383{left:246.600000px;}
.x2c_c00383{left:247.950000px;}
.x18_c00383{left:249.300000px;}
.xa0_c00383{left:250.350000px;}
.x5f_c00383{left:252.000000px;}
.x37_c00383{left:253.200000px;}
.xc3_c00383{left:255.150000px;}
.x19_c00383{left:256.200000px;}
.x3_c00383{left:257.400000px;}
.xa4_c00383{left:259.050000px;}
.x31_c00383{left:261.000000px;}
.x65_c00383{left:262.650000px;}
.x99_c00383{left:264.450000px;}
.x3d_c00383{left:266.550000px;}
.x5a_c00383{left:269.250000px;}
.xa8_c00383{left:272.400000px;}
.x60_c00383{left:273.600000px;}
.x9b_c00383{left:274.650000px;}
.x20_c00383{left:276.450000px;}
.xa1_c00383{left:277.650000px;}
.x3f_c00383{left:279.450000px;}
.xf_c00383{left:280.800000px;}
.x82_c00383{left:283.050000px;}
.x4c_c00383{left:284.250000px;}
.x48_c00383{left:285.750000px;}
.x78_c00383{left:286.800000px;}
.x61_c00383{left:288.000000px;}
.x4_c00383{left:289.500000px;}
.x58_c00383{left:291.300000px;}
.xa9_c00383{left:292.950000px;}
.x21_c00383{left:294.450000px;}
.x2d_c00383{left:297.300000px;}
.xac_c00383{left:298.350000px;}
.xbf_c00383{left:299.400000px;}
.x92_c00383{left:301.350000px;}
.xa5_c00383{left:302.550000px;}
.x10_c00383{left:303.900000px;}
.x22_c00383{left:307.800000px;}
.x94_c00383{left:309.000000px;}
.x9_c00383{left:311.850000px;}
.x1a_c00383{left:313.500000px;}
.x32_c00383{left:315.750000px;}
.x9d_c00383{left:317.550000px;}
.x69_c00383{left:319.050000px;}
.x5b_c00383{left:320.700000px;}
.xb1_c00383{left:322.050000px;}
.x44_c00383{left:323.250000px;}
.xbc_c00383{left:324.750000px;}
.x6c_c00383{left:327.300000px;}
.xa2_c00383{left:328.350000px;}
.x95_c00383{left:329.850000px;}
.xb8_c00383{left:330.900000px;}
.x66_c00383{left:332.550000px;}
.xa_c00383{left:333.750000px;}
.x59_c00383{left:336.300000px;}
.x50_c00383{left:338.400000px;}
.x1b_c00383{left:340.500000px;}
.xad_c00383{left:344.850000px;}
.x79_c00383{left:346.200000px;}
.x45_c00383{left:347.700000px;}
.xb2_c00383{left:349.350000px;}
.x49_c00383{left:350.850000px;}
.x5_c00383{left:352.200000px;}
.x11_c00383{left:354.600000px;}
.x83_c00383{left:357.900000px;}
.x2e_c00383{left:359.250000px;}
.x85_c00383{left:361.500000px;}
.x4d_c00383{left:362.700000px;}
.x12_c00383{left:366.150000px;}
.x51_c00383{left:367.200000px;}
.x1c_c00383{left:368.250000px;}
.x7a_c00383{left:370.350000px;}
.x73_c00383{left:371.400000px;}
.xb_c00383{left:372.600000px;}
.x38_c00383{left:373.800000px;}
.x23_c00383{left:374.850000px;}
.xb4_c00383{left:376.050000px;}
.xbd_c00383{left:377.550000px;}
.x13_c00383{left:379.050000px;}
.x33_c00383{left:380.850000px;}
.x86_c00383{left:382.350000px;}
.x26_c00383{left:383.700000px;}
.xae_c00383{left:385.500000px;}
.x40_c00383{left:386.700000px;}
.x8d_c00383{left:388.500000px;}
.x1d_c00383{left:389.550000px;}
.xa6_c00383{left:390.750000px;}
.x62_c00383{left:392.100000px;}
.xc_c00383{left:393.150000px;}
.x39_c00383{left:396.150000px;}
.xc0_c00383{left:398.100000px;}
.xb3_c00383{left:399.150000px;}
.x96_c00383{left:400.800000px;}
.x9a_c00383{left:402.300000px;}
.x4a_c00383{left:403.350000px;}
.x4e_c00383{left:405.150000px;}
.x34_c00383{left:406.350000px;}
.x87_c00383{left:407.550000px;}
.x27_c00383{left:411.450000px;}
.x97_c00383{left:413.100000px;}
.x74_c00383{left:415.350000px;}
.xaf_c00383{left:416.400000px;}
.xa3_c00383{left:417.900000px;}
.x2f_c00383{left:418.950000px;}
.x5c_c00383{left:420.450000px;}
.xb5_c00383{left:421.800000px;}
.x93_c00383{left:424.050000px;}
.x52_c00383{left:425.100000px;}
.x2_c00383{left:426.600000px;}
.x7d_c00383{left:427.800000px;}
.x9c_c00383{left:429.000000px;}
.xb9_c00383{left:430.200000px;}
.x75_c00383{left:431.250000px;}
.x35_c00383{left:432.600000px;}
.x8e_c00383{left:434.250000px;}
.x14_c00383{left:435.600000px;}
.x67_c00383{left:436.950000px;}
.x41_c00383{left:438.900000px;}
.x88_c00383{left:440.550000px;}
.x7b_c00383{left:442.350000px;}
.x53_c00383{left:444.900000px;}
.x3a_c00383{left:446.250000px;}
.x4b_c00383{left:447.600000px;}
.xd_c00383{left:449.250000px;}
.x28_c00383{left:450.300000px;}
.x8b_c00383{left:451.350000px;}
.x55_c00383{left:452.850000px;}
.x68_c00383{left:454.200000px;}
.x6d_c00383{left:455.850000px;}
.x7c_c00383{left:457.500000px;}
.x15_c00383{left:459.000000px;}
.x6_c00383{left:460.950000px;}
.x46_c00383{left:463.650000px;}
.xb0_c00383{left:465.000000px;}
.x54_c00383{left:468.000000px;}
.x4f_c00383{left:471.000000px;}
.x47_c00383{left:473.400000px;}
.x6e_c00383{left:474.600000px;}
.x56_c00383{left:475.950000px;}
.x70_c00383{left:478.650000px;}
.x30_c00383{left:480.150000px;}
.xb6_c00383{left:481.650000px;}
.x29_c00383{left:482.700000px;}
.x5d_c00383{left:484.200000px;}
.x63_c00383{left:485.250000px;}
.x89_c00383{left:487.650000px;}
.x6f_c00383{left:489.750000px;}
.x9e_c00383{left:490.950000px;}
.xb7_c00383{left:492.150000px;}
.xba_c00383{left:493.200000px;}
.x1e_c00383{left:494.550000px;}
.x7e_c00383{left:496.500000px;}
.x3b_c00383{left:498.750000px;}
.x6a_c00383{left:500.100000px;}
.x8c_c00383{left:501.150000px;}
.x64_c00383{left:502.500000px;}
.x16_c00383{left:506.850000px;}
.x84_c00383{left:508.650000px;}
.x8a_c00383{left:510.000000px;}
.x91_c00383{left:511.800000px;}
.xaa_c00383{left:513.900000px;}
.xbb_c00383{left:520.950000px;}
.xd4_c00383{left:539.700000px;}
.x140_c00383{left:540.900000px;}
.x14d_c00383{left:541.950000px;}
.x154_c00383{left:543.150000px;}
.x182_c00383{left:544.350000px;}
.x10e_c00383{left:547.500000px;}
.xe2_c00383{left:554.700000px;}
.xc4_c00383{left:556.950000px;}
.x16f_c00383{left:558.150000px;}
.xd5_c00383{left:562.050000px;}
.x10f_c00383{left:563.700000px;}
.x12e_c00383{left:564.750000px;}
.x17e_c00383{left:566.250000px;}
.x11a_c00383{left:567.900000px;}
.xf5_c00383{left:569.700000px;}
.xec_c00383{left:571.650000px;}
.xe3_c00383{left:573.450000px;}
.x148_c00383{left:574.500000px;}
.x155_c00383{left:575.850000px;}
.x11f_c00383{left:577.050000px;}
.xff_c00383{left:578.550000px;}
.x14e_c00383{left:580.350000px;}
.x16a_c00383{left:581.700000px;}
.x130_c00383{left:583.650000px;}
.x113_c00383{left:585.900000px;}
.xf6_c00383{left:586.950000px;}
.x14a_c00383{left:589.800000px;}
.x145_c00383{left:591.300000px;}
.xcd_c00383{left:593.400000px;}
.x141_c00383{left:595.350000px;}
.x15c_c00383{left:596.700000px;}
.xd6_c00383{left:598.350000px;}
.xe4_c00383{left:599.700000px;}
.x16b_c00383{left:600.750000px;}
.x173_c00383{left:601.950000px;}
.xed_c00383{left:604.350000px;}
.x12f_c00383{left:605.850000px;}
.xc5_c00383{left:607.650000px;}
.x17b_c00383{left:608.700000px;}
.x135_c00383{left:609.900000px;}
.xdb_c00383{left:612.300000px;}
.x13a_c00383{left:614.400000px;}
.xf7_c00383{left:615.450000px;}
.x114_c00383{left:617.250000px;}
.xce_c00383{left:618.300000px;}
.xd7_c00383{left:620.250000px;}
.xee_c00383{left:622.050000px;}
.x164_c00383{left:623.550000px;}
.x16c_c00383{left:624.600000px;}
.x142_c00383{left:625.650000px;}
.x12a_c00383{left:627.000000px;}
.x13b_c00383{left:628.500000px;}
.xc6_c00383{left:630.750000px;}
.x100_c00383{left:631.800000px;}
.x149_c00383{left:633.150000px;}
.xef_c00383{left:634.950000px;}
.xdc_c00383{left:636.450000px;}
.x17f_c00383{left:638.700000px;}
.x110_c00383{left:641.100000px;}
.x16d_c00383{left:642.600000px;}
.x109_c00383{left:644.550000px;}
.x156_c00383{left:645.750000px;}
.x12b_c00383{left:649.950000px;}
.xe5_c00383{left:651.300000px;}
.xf8_c00383{left:653.250000px;}
.x115_c00383{left:655.350000px;}
.x105_c00383{left:657.300000px;}
.x162_c00383{left:658.800000px;}
.x111_c00383{left:662.700000px;}
.xf0_c00383{left:663.750000px;}
.xdd_c00383{left:666.000000px;}
.x126_c00383{left:668.250000px;}
.x136_c00383{left:669.600000px;}
.x15d_c00383{left:671.250000px;}
.x106_c00383{left:673.200000px;}
.x143_c00383{left:674.250000px;}
.x183_c00383{left:675.300000px;}
.xd8_c00383{left:676.350000px;}
.x16e_c00383{left:677.400000px;}
.x17c_c00383{left:679.500000px;}
.xf9_c00383{left:681.000000px;}
.x14f_c00383{left:682.650000px;}
.x15e_c00383{left:683.850000px;}
.x122_c00383{left:685.350000px;}
.xcf_c00383{left:687.000000px;}
.x120_c00383{left:689.400000px;}
.x160_c00383{left:690.600000px;}
.x137_c00383{left:692.700000px;}
.xde_c00383{left:694.050000px;}
.x17a_c00383{left:696.150000px;}
.x131_c00383{left:697.500000px;}
.x14b_c00383{left:698.550000px;}
.xe6_c00383{left:700.650000px;}
.x101_c00383{left:701.700000px;}
.x166_c00383{left:703.950000px;}
.x158_c00383{left:705.150000px;}
.x123_c00383{left:708.000000px;}
.x161_c00383{left:709.350000px;}
.x10a_c00383{left:710.700000px;}
.x177_c00383{left:713.850000px;}
.xfa_c00383{left:716.700000px;}
.x167_c00383{left:718.050000px;}
.x116_c00383{left:719.100000px;}
.x15f_c00383{left:720.900000px;}
.xdf_c00383{left:722.100000px;}
.x102_c00383{left:723.600000px;}
.x11b_c00383{left:724.650000px;}
.x127_c00383{left:726.150000px;}
.x117_c00383{left:727.350000px;}
.xf1_c00383{left:729.600000px;}
.x138_c00383{left:732.000000px;}
.x121_c00383{left:733.200000px;}
.x150_c00383{left:734.700000px;}
.xc7_c00383{left:736.650000px;}
.x10b_c00383{left:738.000000px;}
.x178_c00383{left:739.800000px;}
.x132_c00383{left:741.000000px;}
.x11c_c00383{left:743.400000px;}
.x170_c00383{left:745.200000px;}
.xe7_c00383{left:746.700000px;}
.xd0_c00383{left:747.900000px;}
.x13c_c00383{left:749.100000px;}
.x171_c00383{left:751.050000px;}
.xe0_c00383{left:752.400000px;}
.x151_c00383{left:754.500000px;}
.x107_c00383{left:755.700000px;}
.xc8_c00383{left:756.750000px;}
.x112_c00383{left:758.400000px;}
.x118_c00383{left:759.750000px;}
.x13d_c00383{left:760.950000px;}
.xf2_c00383{left:762.300000px;}
.xd9_c00383{left:763.500000px;}
.x168_c00383{left:765.150000px;}
.x180_c00383{left:766.200000px;}
.x128_c00383{left:767.850000px;}
.xd1_c00383{left:770.250000px;}
.x176_c00383{left:771.300000px;}
.x169_c00383{left:773.100000px;}
.x159_c00383{left:774.300000px;}
.x119_c00383{left:777.450000px;}
.xe8_c00383{left:778.800000px;}
.x124_c00383{left:780.000000px;}
.x146_c00383{left:782.400000px;}
.x103_c00383{left:784.500000px;}
.xfb_c00383{left:786.150000px;}
.x152_c00383{left:787.950000px;}
.xc9_c00383{left:789.900000px;}
.x12c_c00383{left:791.850000px;}
.x139_c00383{left:793.950000px;}
.x15a_c00383{left:795.900000px;}
.xd2_c00383{left:797.250000px;}
.xe9_c00383{left:798.600000px;}
.x174_c00383{left:799.950000px;}
.x10c_c00383{left:801.000000px;}
.xe1_c00383{left:802.800000px;}
.xfc_c00383{left:804.900000px;}
.xca_c00383{left:806.400000px;}
.x144_c00383{left:807.750000px;}
.x165_c00383{left:810.450000px;}
.x147_c00383{left:812.250000px;}
.x172_c00383{left:813.300000px;}
.x133_c00383{left:815.100000px;}
.x157_c00383{left:817.650000px;}
.x11d_c00383{left:819.000000px;}
.x175_c00383{left:820.500000px;}
.x14c_c00383{left:822.750000px;}
.x108_c00383{left:825.150000px;}
.x11e_c00383{left:828.000000px;}
.xfd_c00383{left:829.800000px;}
.xf3_c00383{left:831.450000px;}
.x13e_c00383{left:832.500000px;}
.xd3_c00383{left:834.000000px;}
.x125_c00383{left:835.050000px;}
.x179_c00383{left:836.400000px;}
.x10d_c00383{left:838.800000px;}
.xcb_c00383{left:841.350000px;}
.x129_c00383{left:843.150000px;}
.xda_c00383{left:844.500000px;}
.xea_c00383{left:846.450000px;}
.x12d_c00383{left:848.400000px;}
.x153_c00383{left:850.200000px;}
.xf4_c00383{left:852.000000px;}
.x13f_c00383{left:854.100000px;}
.x15b_c00383{left:855.300000px;}
.xfe_c00383{left:856.500000px;}
.x184_c00383{left:858.000000px;}
.xeb_c00383{left:861.900000px;}
.xcc_c00383{left:862.950000px;}
.x163_c00383{left:864.150000px;}
.x104_c00383{left:866.100000px;}
.x134_c00383{left:869.850000px;}
.x181_c00383{left:871.650000px;}
.x17d_c00383{left:875.100000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws3_c00383{word-spacing:-7.407407pt;}
.ws2_c00383{word-spacing:-5.925926pt;}
.ws1_c00383{word-spacing:-4.804805pt;}
.wsd_c00383{word-spacing:-4.637681pt;}
.ws6_c00383{word-spacing:-4.222222pt;}
.ws9_c00383{word-spacing:-2.666667pt;}
.ws4_c00383{word-spacing:0.000000pt;}
.ws7_c00383{word-spacing:1.286550pt;}
.wsc_c00383{word-spacing:2.063492pt;}
.ws8_c00383{word-spacing:2.307692pt;}
.ws0_c00383{word-spacing:4.162602pt;}
.wsa_c00383{word-spacing:5.925926pt;}
.wsb_c00383{word-spacing:8.944119pt;}
.ws5_c00383{word-spacing:559.629630pt;}
.fs5_c00383{font-size:42.666667pt;}
.fs4_c00383{font-size:48.000000pt;}
.fs3_c00383{font-size:53.333333pt;}
.fs2_c00383{font-size:58.666667pt;}
.fs0_c00383{font-size:64.000000pt;}
.fs1_c00383{font-size:69.333333pt;}
.y0_c00383{bottom:0.000000pt;}
.y7d_c00383{bottom:173.466667pt;}
.y40_c00383{bottom:177.333333pt;}
.y7c_c00383{bottom:189.733333pt;}
.y3f_c00383{bottom:190.133333pt;}
.y7b_c00383{bottom:202.533333pt;}
.y3e_c00383{bottom:202.666667pt;}
.y3d_c00383{bottom:215.200000pt;}
.y7a_c00383{bottom:215.333333pt;}
.y3c_c00383{bottom:227.733333pt;}
.y79_c00383{bottom:228.133333pt;}
.y3b_c00383{bottom:240.266667pt;}
.y3a_c00383{bottom:252.800000pt;}
.y78_c00383{bottom:253.066667pt;}
.y39_c00383{bottom:265.333333pt;}
.y77_c00383{bottom:265.600000pt;}
.y38_c00383{bottom:278.133333pt;}
.y76_c00383{bottom:278.666667pt;}
.y37_c00383{bottom:290.666667pt;}
.y75_c00383{bottom:291.200000pt;}
.y36_c00383{bottom:303.200000pt;}
.y74_c00383{bottom:304.000000pt;}
.y35_c00383{bottom:315.733333pt;}
.y73_c00383{bottom:316.800000pt;}
.y34_c00383{bottom:329.466667pt;}
.y72_c00383{bottom:329.600000pt;}
.y33_c00383{bottom:340.666667pt;}
.y71_c00383{bottom:342.400000pt;}
.y32_c00383{bottom:353.200000pt;}
.y70_c00383{bottom:355.200000pt;}
.y31_c00383{bottom:366.000000pt;}
.y6f_c00383{bottom:368.000000pt;}
.y30_c00383{bottom:378.800000pt;}
.y6e_c00383{bottom:380.800000pt;}
.y2f_c00383{bottom:391.600000pt;}
.y6d_c00383{bottom:393.600000pt;}
.y2e_c00383{bottom:404.666667pt;}
.y6c_c00383{bottom:406.133333pt;}
.y2d_c00383{bottom:417.200000pt;}
.y6b_c00383{bottom:418.933333pt;}
.y2c_c00383{bottom:429.733333pt;}
.y6a_c00383{bottom:431.733333pt;}
.y2b_c00383{bottom:442.533333pt;}
.y69_c00383{bottom:444.800000pt;}
.y2a_c00383{bottom:455.333333pt;}
.y68_c00383{bottom:456.933333pt;}
.y29_c00383{bottom:468.400000pt;}
.y67_c00383{bottom:470.000000pt;}
.y28_c00383{bottom:480.533333pt;}
.y66_c00383{bottom:482.800000pt;}
.y27_c00383{bottom:493.333333pt;}
.y65_c00383{bottom:495.600000pt;}
.y26_c00383{bottom:505.866667pt;}
.y64_c00383{bottom:508.133333pt;}
.y25_c00383{bottom:518.400000pt;}
.y63_c00383{bottom:520.933333pt;}
.y24_c00383{bottom:531.200000pt;}
.y62_c00383{bottom:533.733333pt;}
.y23_c00383{bottom:543.733333pt;}
.y61_c00383{bottom:546.266667pt;}
.y22_c00383{bottom:556.133333pt;}
.y60_c00383{bottom:559.333333pt;}
.y21_c00383{bottom:568.666667pt;}
.y5f_c00383{bottom:571.866667pt;}
.y20_c00383{bottom:581.466667pt;}
.y5e_c00383{bottom:584.666667pt;}
.y1f_c00383{bottom:594.133333pt;}
.y5d_c00383{bottom:597.466667pt;}
.y1e_c00383{bottom:606.666667pt;}
.y5c_c00383{bottom:610.000000pt;}
.y1d_c00383{bottom:619.466667pt;}
.y5b_c00383{bottom:623.066667pt;}
.y1c_c00383{bottom:632.266667pt;}
.y5a_c00383{bottom:635.866667pt;}
.y1b_c00383{bottom:645.066667pt;}
.y59_c00383{bottom:648.266667pt;}
.y1a_c00383{bottom:657.600000pt;}
.y58_c00383{bottom:661.066667pt;}
.y19_c00383{bottom:670.400000pt;}
.y57_c00383{bottom:674.133333pt;}
.y18_c00383{bottom:683.200000pt;}
.y56_c00383{bottom:686.666667pt;}
.y17_c00383{bottom:695.733333pt;}
.y55_c00383{bottom:699.466667pt;}
.y16_c00383{bottom:708.533333pt;}
.y54_c00383{bottom:712.266667pt;}
.y15_c00383{bottom:721.066667pt;}
.y53_c00383{bottom:724.800000pt;}
.y14_c00383{bottom:734.133333pt;}
.y52_c00383{bottom:737.600000pt;}
.y13_c00383{bottom:746.133333pt;}
.y51_c00383{bottom:750.400000pt;}
.y12_c00383{bottom:758.933333pt;}
.y50_c00383{bottom:763.200000pt;}
.y11_c00383{bottom:772.000000pt;}
.y4f_c00383{bottom:776.000000pt;}
.y10_c00383{bottom:784.533333pt;}
.y4e_c00383{bottom:788.533333pt;}
.yf_c00383{bottom:797.600000pt;}
.y4d_c00383{bottom:801.333333pt;}
.ye_c00383{bottom:810.133333pt;}
.y4c_c00383{bottom:814.133333pt;}
.yd_c00383{bottom:822.666667pt;}
.y4b_c00383{bottom:826.533333pt;}
.yc_c00383{bottom:838.400000pt;}
.y4a_c00383{bottom:840.666667pt;}
.yb_c00383{bottom:851.200000pt;}
.y49_c00383{bottom:852.133333pt;}
.ya_c00383{bottom:864.266667pt;}
.y48_c00383{bottom:864.666667pt;}
.y9_c00383{bottom:876.800000pt;}
.y47_c00383{bottom:877.733333pt;}
.y8_c00383{bottom:889.600000pt;}
.y46_c00383{bottom:890.533333pt;}
.y7_c00383{bottom:901.866667pt;}
.y45_c00383{bottom:903.333333pt;}
.y6_c00383{bottom:914.666667pt;}
.y44_c00383{bottom:915.600000pt;}
.y5_c00383{bottom:927.733333pt;}
.y43_c00383{bottom:928.666667pt;}
.y4_c00383{bottom:977.600000pt;}
.y42_c00383{bottom:979.866667pt;}
.y3_c00383{bottom:993.333333pt;}
.y41_c00383{bottom:996.133333pt;}
.y1_c00383{bottom:1016.000000pt;}
.y2_c00383{bottom:1016.933333pt;}
.h7_c00383{height:42.666667pt;}
.h6_c00383{height:48.000000pt;}
.h5_c00383{height:53.333333pt;}
.h4_c00383{height:58.666667pt;}
.h2_c00383{height:64.000000pt;}
.h3_c00383{height:69.333333pt;}
.h1_c00383{height:1127.333333pt;}
.h0_c00383{height:1127.359944pt;}
.w0_c00383{width:853.760009pt;}
.w1_c00383{width:854.000000pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:164.533333pt;}
.xe_c00383{left:166.400000pt;}
.x2a_c00383{left:167.333333pt;}
.x8f_c00383{left:168.266667pt;}
.x9f_c00383{left:169.466667pt;}
.xab_c00383{left:170.400000pt;}
.x81_c00383{left:171.333333pt;}
.xc1_c00383{left:172.666667pt;}
.x7f_c00383{left:174.666667pt;}
.x3e_c00383{left:178.933333pt;}
.x24_c00383{left:179.866667pt;}
.x7_c00383{left:181.200000pt;}
.x2b_c00383{left:183.600000pt;}
.x17_c00383{left:185.466667pt;}
.x71_c00383{left:187.466667pt;}
.x80_c00383{left:188.800000pt;}
.xa7_c00383{left:190.266667pt;}
.x57_c00383{left:195.200000pt;}
.x42_c00383{left:196.800000pt;}
.x76_c00383{left:198.266667pt;}
.x5e_c00383{left:199.333333pt;}
.xbe_c00383{left:200.800000pt;}
.x1f_c00383{left:201.866667pt;}
.x36_c00383{left:204.000000pt;}
.x3c_c00383{left:204.933333pt;}
.x72_c00383{left:206.400000pt;}
.xc2_c00383{left:207.866667pt;}
.x77_c00383{left:209.466667pt;}
.x6b_c00383{left:210.666667pt;}
.x25_c00383{left:211.866667pt;}
.x98_c00383{left:214.000000pt;}
.x90_c00383{left:214.933333pt;}
.x8_c00383{left:216.133333pt;}
.x43_c00383{left:219.200000pt;}
.x2c_c00383{left:220.400000pt;}
.x18_c00383{left:221.600000pt;}
.xa0_c00383{left:222.533333pt;}
.x5f_c00383{left:224.000000pt;}
.x37_c00383{left:225.066667pt;}
.xc3_c00383{left:226.800000pt;}
.x19_c00383{left:227.733333pt;}
.x3_c00383{left:228.800000pt;}
.xa4_c00383{left:230.266667pt;}
.x31_c00383{left:232.000000pt;}
.x65_c00383{left:233.466667pt;}
.x99_c00383{left:235.066667pt;}
.x3d_c00383{left:236.933333pt;}
.x5a_c00383{left:239.333333pt;}
.xa8_c00383{left:242.133333pt;}
.x60_c00383{left:243.200000pt;}
.x9b_c00383{left:244.133333pt;}
.x20_c00383{left:245.733333pt;}
.xa1_c00383{left:246.800000pt;}
.x3f_c00383{left:248.400000pt;}
.xf_c00383{left:249.600000pt;}
.x82_c00383{left:251.600000pt;}
.x4c_c00383{left:252.666667pt;}
.x48_c00383{left:254.000000pt;}
.x78_c00383{left:254.933333pt;}
.x61_c00383{left:256.000000pt;}
.x4_c00383{left:257.333333pt;}
.x58_c00383{left:258.933333pt;}
.xa9_c00383{left:260.400000pt;}
.x21_c00383{left:261.733333pt;}
.x2d_c00383{left:264.266667pt;}
.xac_c00383{left:265.200000pt;}
.xbf_c00383{left:266.133333pt;}
.x92_c00383{left:267.866667pt;}
.xa5_c00383{left:268.933333pt;}
.x10_c00383{left:270.133333pt;}
.x22_c00383{left:273.600000pt;}
.x94_c00383{left:274.666667pt;}
.x9_c00383{left:277.200000pt;}
.x1a_c00383{left:278.666667pt;}
.x32_c00383{left:280.666667pt;}
.x9d_c00383{left:282.266667pt;}
.x69_c00383{left:283.600000pt;}
.x5b_c00383{left:285.066667pt;}
.xb1_c00383{left:286.266667pt;}
.x44_c00383{left:287.333333pt;}
.xbc_c00383{left:288.666667pt;}
.x6c_c00383{left:290.933333pt;}
.xa2_c00383{left:291.866667pt;}
.x95_c00383{left:293.200000pt;}
.xb8_c00383{left:294.133333pt;}
.x66_c00383{left:295.600000pt;}
.xa_c00383{left:296.666667pt;}
.x59_c00383{left:298.933333pt;}
.x50_c00383{left:300.800000pt;}
.x1b_c00383{left:302.666667pt;}
.xad_c00383{left:306.533333pt;}
.x79_c00383{left:307.733333pt;}
.x45_c00383{left:309.066667pt;}
.xb2_c00383{left:310.533333pt;}
.x49_c00383{left:311.866667pt;}
.x5_c00383{left:313.066667pt;}
.x11_c00383{left:315.200000pt;}
.x83_c00383{left:318.133333pt;}
.x2e_c00383{left:319.333333pt;}
.x85_c00383{left:321.333333pt;}
.x4d_c00383{left:322.400000pt;}
.x12_c00383{left:325.466667pt;}
.x51_c00383{left:326.400000pt;}
.x1c_c00383{left:327.333333pt;}
.x7a_c00383{left:329.200000pt;}
.x73_c00383{left:330.133333pt;}
.xb_c00383{left:331.200000pt;}
.x38_c00383{left:332.266667pt;}
.x23_c00383{left:333.200000pt;}
.xb4_c00383{left:334.266667pt;}
.xbd_c00383{left:335.600000pt;}
.x13_c00383{left:336.933333pt;}
.x33_c00383{left:338.533333pt;}
.x86_c00383{left:339.866667pt;}
.x26_c00383{left:341.066667pt;}
.xae_c00383{left:342.666667pt;}
.x40_c00383{left:343.733333pt;}
.x8d_c00383{left:345.333333pt;}
.x1d_c00383{left:346.266667pt;}
.xa6_c00383{left:347.333333pt;}
.x62_c00383{left:348.533333pt;}
.xc_c00383{left:349.466667pt;}
.x39_c00383{left:352.133333pt;}
.xc0_c00383{left:353.866667pt;}
.xb3_c00383{left:354.800000pt;}
.x96_c00383{left:356.266667pt;}
.x9a_c00383{left:357.600000pt;}
.x4a_c00383{left:358.533333pt;}
.x4e_c00383{left:360.133333pt;}
.x34_c00383{left:361.200000pt;}
.x87_c00383{left:362.266667pt;}
.x27_c00383{left:365.733333pt;}
.x97_c00383{left:367.200000pt;}
.x74_c00383{left:369.200000pt;}
.xaf_c00383{left:370.133333pt;}
.xa3_c00383{left:371.466667pt;}
.x2f_c00383{left:372.400000pt;}
.x5c_c00383{left:373.733333pt;}
.xb5_c00383{left:374.933333pt;}
.x93_c00383{left:376.933333pt;}
.x52_c00383{left:377.866667pt;}
.x2_c00383{left:379.200000pt;}
.x7d_c00383{left:380.266667pt;}
.x9c_c00383{left:381.333333pt;}
.xb9_c00383{left:382.400000pt;}
.x75_c00383{left:383.333333pt;}
.x35_c00383{left:384.533333pt;}
.x8e_c00383{left:386.000000pt;}
.x14_c00383{left:387.200000pt;}
.x67_c00383{left:388.400000pt;}
.x41_c00383{left:390.133333pt;}
.x88_c00383{left:391.600000pt;}
.x7b_c00383{left:393.200000pt;}
.x53_c00383{left:395.466667pt;}
.x3a_c00383{left:396.666667pt;}
.x4b_c00383{left:397.866667pt;}
.xd_c00383{left:399.333333pt;}
.x28_c00383{left:400.266667pt;}
.x8b_c00383{left:401.200000pt;}
.x55_c00383{left:402.533333pt;}
.x68_c00383{left:403.733333pt;}
.x6d_c00383{left:405.200000pt;}
.x7c_c00383{left:406.666667pt;}
.x15_c00383{left:408.000000pt;}
.x6_c00383{left:409.733333pt;}
.x46_c00383{left:412.133333pt;}
.xb0_c00383{left:413.333333pt;}
.x54_c00383{left:416.000000pt;}
.x4f_c00383{left:418.666667pt;}
.x47_c00383{left:420.800000pt;}
.x6e_c00383{left:421.866667pt;}
.x56_c00383{left:423.066667pt;}
.x70_c00383{left:425.466667pt;}
.x30_c00383{left:426.800000pt;}
.xb6_c00383{left:428.133333pt;}
.x29_c00383{left:429.066667pt;}
.x5d_c00383{left:430.400000pt;}
.x63_c00383{left:431.333333pt;}
.x89_c00383{left:433.466667pt;}
.x6f_c00383{left:435.333333pt;}
.x9e_c00383{left:436.400000pt;}
.xb7_c00383{left:437.466667pt;}
.xba_c00383{left:438.400000pt;}
.x1e_c00383{left:439.600000pt;}
.x7e_c00383{left:441.333333pt;}
.x3b_c00383{left:443.333333pt;}
.x6a_c00383{left:444.533333pt;}
.x8c_c00383{left:445.466667pt;}
.x64_c00383{left:446.666667pt;}
.x16_c00383{left:450.533333pt;}
.x84_c00383{left:452.133333pt;}
.x8a_c00383{left:453.333333pt;}
.x91_c00383{left:454.933333pt;}
.xaa_c00383{left:456.800000pt;}
.xbb_c00383{left:463.066667pt;}
.xd4_c00383{left:479.733333pt;}
.x140_c00383{left:480.800000pt;}
.x14d_c00383{left:481.733333pt;}
.x154_c00383{left:482.800000pt;}
.x182_c00383{left:483.866667pt;}
.x10e_c00383{left:486.666667pt;}
.xe2_c00383{left:493.066667pt;}
.xc4_c00383{left:495.066667pt;}
.x16f_c00383{left:496.133333pt;}
.xd5_c00383{left:499.600000pt;}
.x10f_c00383{left:501.066667pt;}
.x12e_c00383{left:502.000000pt;}
.x17e_c00383{left:503.333333pt;}
.x11a_c00383{left:504.800000pt;}
.xf5_c00383{left:506.400000pt;}
.xec_c00383{left:508.133333pt;}
.xe3_c00383{left:509.733333pt;}
.x148_c00383{left:510.666667pt;}
.x155_c00383{left:511.866667pt;}
.x11f_c00383{left:512.933333pt;}
.xff_c00383{left:514.266667pt;}
.x14e_c00383{left:515.866667pt;}
.x16a_c00383{left:517.066667pt;}
.x130_c00383{left:518.800000pt;}
.x113_c00383{left:520.800000pt;}
.xf6_c00383{left:521.733333pt;}
.x14a_c00383{left:524.266667pt;}
.x145_c00383{left:525.600000pt;}
.xcd_c00383{left:527.466667pt;}
.x141_c00383{left:529.200000pt;}
.x15c_c00383{left:530.400000pt;}
.xd6_c00383{left:531.866667pt;}
.xe4_c00383{left:533.066667pt;}
.x16b_c00383{left:534.000000pt;}
.x173_c00383{left:535.066667pt;}
.xed_c00383{left:537.200000pt;}
.x12f_c00383{left:538.533333pt;}
.xc5_c00383{left:540.133333pt;}
.x17b_c00383{left:541.066667pt;}
.x135_c00383{left:542.133333pt;}
.xdb_c00383{left:544.266667pt;}
.x13a_c00383{left:546.133333pt;}
.xf7_c00383{left:547.066667pt;}
.x114_c00383{left:548.666667pt;}
.xce_c00383{left:549.600000pt;}
.xd7_c00383{left:551.333333pt;}
.xee_c00383{left:552.933333pt;}
.x164_c00383{left:554.266667pt;}
.x16c_c00383{left:555.200000pt;}
.x142_c00383{left:556.133333pt;}
.x12a_c00383{left:557.333333pt;}
.x13b_c00383{left:558.666667pt;}
.xc6_c00383{left:560.666667pt;}
.x100_c00383{left:561.600000pt;}
.x149_c00383{left:562.800000pt;}
.xef_c00383{left:564.400000pt;}
.xdc_c00383{left:565.733333pt;}
.x17f_c00383{left:567.733333pt;}
.x110_c00383{left:569.866667pt;}
.x16d_c00383{left:571.200000pt;}
.x109_c00383{left:572.933333pt;}
.x156_c00383{left:574.000000pt;}
.x12b_c00383{left:577.733333pt;}
.xe5_c00383{left:578.933333pt;}
.xf8_c00383{left:580.666667pt;}
.x115_c00383{left:582.533333pt;}
.x105_c00383{left:584.266667pt;}
.x162_c00383{left:585.600000pt;}
.x111_c00383{left:589.066667pt;}
.xf0_c00383{left:590.000000pt;}
.xdd_c00383{left:592.000000pt;}
.x126_c00383{left:594.000000pt;}
.x136_c00383{left:595.200000pt;}
.x15d_c00383{left:596.666667pt;}
.x106_c00383{left:598.400000pt;}
.x143_c00383{left:599.333333pt;}
.x183_c00383{left:600.266667pt;}
.xd8_c00383{left:601.200000pt;}
.x16e_c00383{left:602.133333pt;}
.x17c_c00383{left:604.000000pt;}
.xf9_c00383{left:605.333333pt;}
.x14f_c00383{left:606.800000pt;}
.x15e_c00383{left:607.866667pt;}
.x122_c00383{left:609.200000pt;}
.xcf_c00383{left:610.666667pt;}
.x120_c00383{left:612.800000pt;}
.x160_c00383{left:613.866667pt;}
.x137_c00383{left:615.733333pt;}
.xde_c00383{left:616.933333pt;}
.x17a_c00383{left:618.800000pt;}
.x131_c00383{left:620.000000pt;}
.x14b_c00383{left:620.933333pt;}
.xe6_c00383{left:622.800000pt;}
.x101_c00383{left:623.733333pt;}
.x166_c00383{left:625.733333pt;}
.x158_c00383{left:626.800000pt;}
.x123_c00383{left:629.333333pt;}
.x161_c00383{left:630.533333pt;}
.x10a_c00383{left:631.733333pt;}
.x177_c00383{left:634.533333pt;}
.xfa_c00383{left:637.066667pt;}
.x167_c00383{left:638.266667pt;}
.x116_c00383{left:639.200000pt;}
.x15f_c00383{left:640.800000pt;}
.xdf_c00383{left:641.866667pt;}
.x102_c00383{left:643.200000pt;}
.x11b_c00383{left:644.133333pt;}
.x127_c00383{left:645.466667pt;}
.x117_c00383{left:646.533333pt;}
.xf1_c00383{left:648.533333pt;}
.x138_c00383{left:650.666667pt;}
.x121_c00383{left:651.733333pt;}
.x150_c00383{left:653.066667pt;}
.xc7_c00383{left:654.800000pt;}
.x10b_c00383{left:656.000000pt;}
.x178_c00383{left:657.600000pt;}
.x132_c00383{left:658.666667pt;}
.x11c_c00383{left:660.800000pt;}
.x170_c00383{left:662.400000pt;}
.xe7_c00383{left:663.733333pt;}
.xd0_c00383{left:664.800000pt;}
.x13c_c00383{left:665.866667pt;}
.x171_c00383{left:667.600000pt;}
.xe0_c00383{left:668.800000pt;}
.x151_c00383{left:670.666667pt;}
.x107_c00383{left:671.733333pt;}
.xc8_c00383{left:672.666667pt;}
.x112_c00383{left:674.133333pt;}
.x118_c00383{left:675.333333pt;}
.x13d_c00383{left:676.400000pt;}
.xf2_c00383{left:677.600000pt;}
.xd9_c00383{left:678.666667pt;}
.x168_c00383{left:680.133333pt;}
.x180_c00383{left:681.066667pt;}
.x128_c00383{left:682.533333pt;}
.xd1_c00383{left:684.666667pt;}
.x176_c00383{left:685.600000pt;}
.x169_c00383{left:687.200000pt;}
.x159_c00383{left:688.266667pt;}
.x119_c00383{left:691.066667pt;}
.xe8_c00383{left:692.266667pt;}
.x124_c00383{left:693.333333pt;}
.x146_c00383{left:695.466667pt;}
.x103_c00383{left:697.333333pt;}
.xfb_c00383{left:698.800000pt;}
.x152_c00383{left:700.400000pt;}
.xc9_c00383{left:702.133333pt;}
.x12c_c00383{left:703.866667pt;}
.x139_c00383{left:705.733333pt;}
.x15a_c00383{left:707.466667pt;}
.xd2_c00383{left:708.666667pt;}
.xe9_c00383{left:709.866667pt;}
.x174_c00383{left:711.066667pt;}
.x10c_c00383{left:712.000000pt;}
.xe1_c00383{left:713.600000pt;}
.xfc_c00383{left:715.466667pt;}
.xca_c00383{left:716.800000pt;}
.x144_c00383{left:718.000000pt;}
.x165_c00383{left:720.400000pt;}
.x147_c00383{left:722.000000pt;}
.x172_c00383{left:722.933333pt;}
.x133_c00383{left:724.533333pt;}
.x157_c00383{left:726.800000pt;}
.x11d_c00383{left:728.000000pt;}
.x175_c00383{left:729.333333pt;}
.x14c_c00383{left:731.333333pt;}
.x108_c00383{left:733.466667pt;}
.x11e_c00383{left:736.000000pt;}
.xfd_c00383{left:737.600000pt;}
.xf3_c00383{left:739.066667pt;}
.x13e_c00383{left:740.000000pt;}
.xd3_c00383{left:741.333333pt;}
.x125_c00383{left:742.266667pt;}
.x179_c00383{left:743.466667pt;}
.x10d_c00383{left:745.600000pt;}
.xcb_c00383{left:747.866667pt;}
.x129_c00383{left:749.466667pt;}
.xda_c00383{left:750.666667pt;}
.xea_c00383{left:752.400000pt;}
.x12d_c00383{left:754.133333pt;}
.x153_c00383{left:755.733333pt;}
.xf4_c00383{left:757.333333pt;}
.x13f_c00383{left:759.200000pt;}
.x15b_c00383{left:760.266667pt;}
.xfe_c00383{left:761.333333pt;}
.x184_c00383{left:762.666667pt;}
.xeb_c00383{left:766.133333pt;}
.xcc_c00383{left:767.066667pt;}
.x163_c00383{left:768.133333pt;}
.x104_c00383{left:769.866667pt;}
.x134_c00383{left:773.200000pt;}
.x181_c00383{left:774.800000pt;}
.x17d_c00383{left:777.866667pt;}
}





/* 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_c00384 {
    display:none;
  }
  .loading-indicator_c00384.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00384 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_c00384 { 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_c00384" -> "#page-container .classname_c00384")
 */
.pf_c00384 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00384 { /* 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_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00384 { /* 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_c00384 { /* 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_c00384 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00384 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00384 {overflow:visible;}
  }
}
.c_c00384 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00384 { /* 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_c00384:after { /* webkit #35443 */
  content: '';
}
.t_c00384:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00384 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 */
}
.__c00384 { /* 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_c00384 { /* info for Javascript */
  display:none;
}
.l_c00384 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00384 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00384 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00384: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_c00384 {
    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_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00384.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_c00384 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00384;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.000000;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;}
.m21_c00384{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m97_c00384{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m120_c00384{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00384{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00384{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m107_c00384{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00384{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m26_c00384{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00384{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m75_c00384{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m59_c00384{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m33_c00384{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m30_c00384{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00384{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00384{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m57_c00384{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00384{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00384{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m10_c00384{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m93_c00384{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m9_c00384{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00384{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m123_c00384{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m106_c00384{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.maa_c00384{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00384{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m40_c00384{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m105_c00384{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m116_c00384{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00384{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mab_c00384{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00384{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.ma_c00384{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00384{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m101_c00384{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00384{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mff_c00384{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m109_c00384{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00384{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m68_c00384{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m111_c00384{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m34_c00384{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00384{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mac_c00384{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m8_c00384{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00384{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00384{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m125_c00384{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00384{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00384{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5_c00384{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00384{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00384{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mca_c00384{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m2_c00384{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00384{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00384{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m124_c00384{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md2_c00384{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00384{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00384{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m38_c00384{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m77_c00384{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m44_c00384{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00384{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m14_c00384{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00384{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00384{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00384{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m39_c00384{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m19_c00384{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m70_c00384{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00384{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00384{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00384{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me8_c00384{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00384{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m49_c00384{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m121_c00384{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m7_c00384{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00384{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md0_c00384{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m91_c00384{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00384{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m110_c00384{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m72_c00384{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00384{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m96_c00384{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m79_c00384{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00384{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m115_c00384{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00384{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md6_c00384{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00384{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md4_c00384{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m108_c00384{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00384{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m126_c00384{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.md5_c00384{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m100_c00384{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me6_c00384{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00384{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m63_c00384{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.med_c00384{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00384{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m113_c00384{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md9_c00384{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mad_c00384{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6_c00384{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00384{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mde_c00384{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m12_c00384{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m88_c00384{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4_c00384{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me1_c00384{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m17_c00384{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00384{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00384{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m67_c00384{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00384{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00384{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m65_c00384{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mae_c00384{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m37_c00384{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m90_c00384{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.md_c00384{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00384{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00384{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m13_c00384{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00384{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m16_c00384{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00384{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00384{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m42_c00384{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00384{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00384{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00384{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00384{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m89_c00384{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m51_c00384{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m15_c00384{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00384{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m50_c00384{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m73_c00384{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m48_c00384{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00384{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m53_c00384{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me5_c00384{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m20_c00384{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00384{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.maf_c00384{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00384{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m61_c00384{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.meb_c00384{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m46_c00384{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00384{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00384{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m32_c00384{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mba_c00384{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m24_c00384{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00384{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00384{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00384{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00384{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m28_c00384{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m56_c00384{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00384{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00384{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mb_c00384{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00384{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m69_c00384{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00384{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m27_c00384{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00384{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00384{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m94_c00384{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m62_c00384{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00384{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00384{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m104_c00384{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00384{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m45_c00384{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00384{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m64_c00384{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00384{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00384{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00384{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00384{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00384{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m43_c00384{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00384{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.me_c00384{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m86_c00384{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m78_c00384{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m47_c00384{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m87_c00384{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3_c00384{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00384{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00384{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m22_c00384{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m80_c00384{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mce_c00384{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m74_c00384{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00384{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m55_c00384{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m102_c00384{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00384{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m52_c00384{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md3_c00384{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m84_c00384{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m29_c00384{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00384{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m25_c00384{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00384{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00384{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m83_c00384{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m60_c00384{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m54_c00384{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m71_c00384{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m81_c00384{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00384{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00384{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mef_c00384{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00384{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m92_c00384{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mec_c00384{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me0_c00384{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00384{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m36_c00384{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00384{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);}
.m58_c00384{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m66_c00384{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00384{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me3_c00384{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m85_c00384{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00384{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00384{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me9_c00384{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m99_c00384{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mee_c00384{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00384{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m114_c00384{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00384{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mc_c00384{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md1_c00384{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00384{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m1_c00384{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00384{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md8_c00384{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00384{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m112_c00384{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00384{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.md7_c00384{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00384{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00384{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mf_c00384{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00384{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00384{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m103_c00384{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mea_c00384{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00384{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c00384{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m118_c00384{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m76_c00384{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00384{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m95_c00384{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m41_c00384{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00384{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00384{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00384{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m82_c00384{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00384{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mda_c00384{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00384{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00384{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m117_c00384{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00384{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m18_c00384{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00384{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00384{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m23_c00384{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.m98_c00384{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m11_c00384{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m31_c00384{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me2_c00384{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m122_c00384{transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);}
.m0_c00384{transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);}
.m119_c00384{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.me4_c00384{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00384{transform:matrix(0.460750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00384{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.me7_c00384{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00384{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00384{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00384{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls0_c00384{letter-spacing:0.000000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{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__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00384{word-spacing:-8.166667px;}
.ws2_c00384{word-spacing:-6.817374px;}
.ws1_c00384{word-spacing:-5.833333px;}
.ws7_c00384{word-spacing:-2.095238px;}
.wsa_c00384{word-spacing:0.000000px;}
.ws3_c00384{word-spacing:0.156250px;}
.ws0_c00384{word-spacing:1.447368px;}
.ws5_c00384{word-spacing:5.833333px;}
.ws9_c00384{word-spacing:11.875000px;}
.ws4_c00384{word-spacing:20.604790px;}
.ws8_c00384{word-spacing:25.714286px;}
._0_c00384{width:45.000000px;}
.fc0_c00384{color:transparent;}
.fs4_c00384{font-size:24.000000px;}
.fs5_c00384{font-size:30.000000px;}
.fs7_c00384{font-size:48.000000px;}
.fs6_c00384{font-size:54.000000px;}
.fs3_c00384{font-size:60.000000px;}
.fs2_c00384{font-size:66.000000px;}
.fs1_c00384{font-size:72.000000px;}
.fs0_c00384{font-size:84.000000px;}
.y0_c00384{bottom:0.000000px;}
.y38_c00384{bottom:194.400000px;}
.y37_c00384{bottom:209.550000px;}
.y36_c00384{bottom:224.250000px;}
.y69_c00384{bottom:224.700000px;}
.y35_c00384{bottom:238.350000px;}
.y34_c00384{bottom:253.050000px;}
.y33_c00384{bottom:267.150000px;}
.y32_c00384{bottom:281.550000px;}
.y67_c00384{bottom:290.100000px;}
.y31_c00384{bottom:296.250000px;}
.y30_c00384{bottom:310.650000px;}
.y66_c00384{bottom:311.100000px;}
.y2f_c00384{bottom:325.050000px;}
.y65_c00384{bottom:325.500000px;}
.y2e_c00384{bottom:339.450000px;}
.y64_c00384{bottom:339.900000px;}
.y2d_c00384{bottom:353.550000px;}
.y63_c00384{bottom:353.850000px;}
.y68_c00384{bottom:367.200000px;}
.y2c_c00384{bottom:367.950000px;}
.y62_c00384{bottom:368.250000px;}
.y61_c00384{bottom:382.050000px;}
.y2b_c00384{bottom:382.200000px;}
.y2a_c00384{bottom:396.300000px;}
.y60_c00384{bottom:396.450000px;}
.y29_c00384{bottom:410.700000px;}
.y5f_c00384{bottom:412.650000px;}
.y28_c00384{bottom:424.800000px;}
.y5e_c00384{bottom:434.250000px;}
.y27_c00384{bottom:439.200000px;}
.y5d_c00384{bottom:453.000000px;}
.y26_c00384{bottom:454.350000px;}
.y25_c00384{bottom:468.000000px;}
.y5c_c00384{bottom:470.700000px;}
.y24_c00384{bottom:481.800000px;}
.y5b_c00384{bottom:488.700000px;}
.y23_c00384{bottom:496.200000px;}
.y5a_c00384{bottom:506.700000px;}
.y22_c00384{bottom:510.900000px;}
.y59_c00384{bottom:528.600000px;}
.y58_c00384{bottom:546.600000px;}
.y21_c00384{bottom:561.600000px;}
.y57_c00384{bottom:564.600000px;}
.y56_c00384{bottom:581.850000px;}
.y20_c00384{bottom:583.950000px;}
.y55_c00384{bottom:599.850000px;}
.y1f_c00384{bottom:606.300000px;}
.y54_c00384{bottom:617.850000px;}
.y1e_c00384{bottom:627.900000px;}
.y53_c00384{bottom:635.550000px;}
.y1d_c00384{bottom:645.900000px;}
.y52_c00384{bottom:653.550000px;}
.y1c_c00384{bottom:663.600000px;}
.y51_c00384{bottom:671.250000px;}
.y1b_c00384{bottom:681.300000px;}
.y50_c00384{bottom:689.250000px;}
.y1a_c00384{bottom:699.000000px;}
.y4f_c00384{bottom:706.500000px;}
.y19_c00384{bottom:717.000000px;}
.y4e_c00384{bottom:724.200000px;}
.y18_c00384{bottom:734.700000px;}
.y4d_c00384{bottom:742.200000px;}
.y17_c00384{bottom:756.600000px;}
.y4c_c00384{bottom:759.900000px;}
.y16_c00384{bottom:774.300000px;}
.y4b_c00384{bottom:782.250000px;}
.y15_c00384{bottom:792.000000px;}
.y4a_c00384{bottom:808.500000px;}
.y14_c00384{bottom:810.000000px;}
.y13_c00384{bottom:826.500000px;}
.y49_c00384{bottom:830.850000px;}
.y12_c00384{bottom:836.250000px;}
.y11_c00384{bottom:846.750000px;}
.y48_c00384{bottom:850.650000px;}
.y10_c00384{bottom:856.800000px;}
.yf_c00384{bottom:865.050000px;}
.y47_c00384{bottom:870.450000px;}
.y46_c00384{bottom:887.700000px;}
.ye_c00384{bottom:891.300000px;}
.y45_c00384{bottom:905.700000px;}
.yc_c00384{bottom:914.100000px;}
.y44_c00384{bottom:923.400000px;}
.yb_c00384{bottom:936.450000px;}
.y43_c00384{bottom:940.950000px;}
.ya_c00384{bottom:958.350000px;}
.y42_c00384{bottom:959.250000px;}
.y41_c00384{bottom:976.950000px;}
.y9_c00384{bottom:980.700000px;}
.y40_c00384{bottom:994.650000px;}
.y8_c00384{bottom:1010.850000px;}
.y3f_c00384{bottom:1011.150000px;}
.yd_c00384{bottom:1011.300000px;}
.y3e_c00384{bottom:1029.900000px;}
.y7_c00384{bottom:1042.950000px;}
.y3d_c00384{bottom:1047.900000px;}
.y6_c00384{bottom:1061.250000px;}
.y3c_c00384{bottom:1065.600000px;}
.y5_c00384{bottom:1079.250000px;}
.y3b_c00384{bottom:1083.300000px;}
.y4_c00384{bottom:1097.250000px;}
.y3a_c00384{bottom:1100.100000px;}
.y3_c00384{bottom:1115.250000px;}
.y39_c00384{bottom:1118.850000px;}
.y1_c00384{bottom:1144.050000px;}
.y2_c00384{bottom:1145.100000px;}
.h6_c00384{height:24.000000px;}
.h7_c00384{height:30.000000px;}
.h9_c00384{height:48.000000px;}
.h8_c00384{height:54.000000px;}
.h5_c00384{height:60.000000px;}
.h4_c00384{height:66.000000px;}
.h3_c00384{height:72.000000px;}
.h2_c00384{height:84.000000px;}
.h1_c00384{height:1266.750000px;}
.h0_c00384{height:1266.839905px;}
.w0_c00384{width:960.480010px;}
.w1_c00384{width:960.750000px;}
.x0_c00384{left:0.000000px;}
.x2c_c00384{left:69.150000px;}
.xa2_c00384{left:73.200000px;}
.x28_c00384{left:74.850000px;}
.x8e_c00384{left:82.800000px;}
.x2d_c00384{left:88.650000px;}
.x74_c00384{left:90.000000px;}
.x21_c00384{left:91.950000px;}
.x3_c00384{left:93.600000px;}
.x9b_c00384{left:96.300000px;}
.x97_c00384{left:99.450000px;}
.x83_c00384{left:105.750000px;}
.x70_c00384{left:109.350000px;}
.x2e_c00384{left:110.550000px;}
.x42_c00384{left:112.200000px;}
.x75_c00384{left:113.400000px;}
.x4_c00384{left:115.500000px;}
.x6c_c00384{left:118.800000px;}
.x87_c00384{left:120.000000px;}
.x37_c00384{left:121.350000px;}
.x8f_c00384{left:122.400000px;}
.x22_c00384{left:124.050000px;}
.x84_c00384{left:126.300000px;}
.x5a_c00384{left:128.400000px;}
.x17_c00384{left:129.450000px;}
.x71_c00384{left:130.950000px;}
.x7c_c00384{left:132.000000px;}
.x63_c00384{left:133.050000px;}
.x9c_c00384{left:135.300000px;}
.x29_c00384{left:136.350000px;}
.x3e_c00384{left:137.700000px;}
.x50_c00384{left:139.200000px;}
.x12_c00384{left:141.750000px;}
.x65_c00384{left:142.800000px;}
.x9d_c00384{left:144.300000px;}
.x4b_c00384{left:146.250000px;}
.x3a_c00384{left:147.600000px;}
.x51_c00384{left:151.500000px;}
.x32_c00384{left:153.000000px;}
.x88_c00384{left:154.500000px;}
.x45_c00384{left:156.300000px;}
.x57_c00384{left:158.550000px;}
.x94_c00384{left:160.650000px;}
.x3d_c00384{left:161.700000px;}
.x85_c00384{left:163.050000px;}
.x18_c00384{left:164.400000px;}
.x6b_c00384{left:165.750000px;}
.x5f_c00384{left:166.950000px;}
.xd_c00384{left:169.050000px;}
.x52_c00384{left:170.250000px;}
.x78_c00384{left:171.450000px;}
.x46_c00384{left:172.500000px;}
.x33_c00384{left:175.050000px;}
.x13_c00384{left:176.700000px;}
.x5b_c00384{left:179.550000px;}
.x98_c00384{left:180.900000px;}
.x38_c00384{left:182.250000px;}
.x68_c00384{left:183.900000px;}
.x34_c00384{left:185.850000px;}
.x27_c00384{left:187.950000px;}
.x89_c00384{left:189.000000px;}
.x19_c00384{left:190.650000px;}
.x96_c00384{left:191.850000px;}
.x80_c00384{left:193.200000px;}
.x39_c00384{left:194.850000px;}
.x7b_c00384{left:199.500000px;}
.x73_c00384{left:200.550000px;}
.x76_c00384{left:201.600000px;}
.x9e_c00384{left:202.800000px;}
.x60_c00384{left:206.250000px;}
.x1a_c00384{left:207.600000px;}
.x5c_c00384{left:211.200000px;}
.x5_c00384{left:213.000000px;}
.x2a_c00384{left:214.800000px;}
.x23_c00384{left:216.900000px;}
.x91_c00384{left:218.550000px;}
.x53_c00384{left:221.400000px;}
.x66_c00384{left:224.100000px;}
.x35_c00384{left:225.300000px;}
.x86_c00384{left:226.500000px;}
.x64_c00384{left:228.450000px;}
.x14_c00384{left:229.950000px;}
.x69_c00384{left:231.000000px;}
.x67_c00384{left:235.200000px;}
.x4c_c00384{left:236.250000px;}
.x47_c00384{left:238.050000px;}
.x49_c00384{left:240.450000px;}
.x1b_c00384{left:242.100000px;}
.x7d_c00384{left:243.300000px;}
.x5d_c00384{left:244.650000px;}
.x8a_c00384{left:245.850000px;}
.x4d_c00384{left:247.050000px;}
.x24_c00384{left:248.250000px;}
.x43_c00384{left:250.800000px;}
.x6_c00384{left:252.600000px;}
.x2f_c00384{left:254.550000px;}
.xe_c00384{left:256.200000px;}
.x2b_c00384{left:257.700000px;}
.x3f_c00384{left:259.500000px;}
.x48_c00384{left:262.200000px;}
.x25_c00384{left:265.200000px;}
.x61_c00384{left:269.550000px;}
.x7_c00384{left:270.600000px;}
.x8b_c00384{left:272.100000px;}
.x58_c00384{left:273.450000px;}
.x92_c00384{left:275.100000px;}
.x4e_c00384{left:277.350000px;}
.x6d_c00384{left:279.900000px;}
.x40_c00384{left:282.900000px;}
.x1c_c00384{left:285.600000px;}
.x81_c00384{left:286.800000px;}
.x54_c00384{left:288.450000px;}
.x72_c00384{left:290.850000px;}
.x30_c00384{left:292.650000px;}
.x44_c00384{left:295.350000px;}
.x26_c00384{left:297.900000px;}
.x9f_c00384{left:299.550000px;}
.x90_c00384{left:302.700000px;}
.x8_c00384{left:304.050000px;}
.x59_c00384{left:305.550000px;}
.x7e_c00384{left:308.850000px;}
.x1d_c00384{left:310.500000px;}
.x6a_c00384{left:312.300000px;}
.xa0_c00384{left:313.650000px;}
.x1_c00384{left:315.300000px;}
.x8c_c00384{left:317.850000px;}
.x3b_c00384{left:320.850000px;}
.x9_c00384{left:323.100000px;}
.x6e_c00384{left:327.450000px;}
.x15_c00384{left:329.700000px;}
.x55_c00384{left:330.900000px;}
.x4a_c00384{left:336.300000px;}
.x31_c00384{left:337.650000px;}
.x93_c00384{left:339.600000px;}
.xf_c00384{left:341.100000px;}
.xa_c00384{left:342.900000px;}
.x62_c00384{left:344.100000px;}
.x7f_c00384{left:347.700000px;}
.x10_c00384{left:350.100000px;}
.xb_c00384{left:352.950000px;}
.x79_c00384{left:355.050000px;}
.xa3_c00384{left:357.450000px;}
.x95_c00384{left:359.400000px;}
.x41_c00384{left:361.050000px;}
.x36_c00384{left:364.200000px;}
.x1e_c00384{left:366.300000px;}
.x8d_c00384{left:367.500000px;}
.x7a_c00384{left:371.250000px;}
.xc_c00384{left:373.500000px;}
.x1f_c00384{left:377.400000px;}
.x99_c00384{left:379.650000px;}
.x16_c00384{left:382.650000px;}
.x56_c00384{left:385.950000px;}
.x4f_c00384{left:389.700000px;}
.x6f_c00384{left:391.500000px;}
.xa1_c00384{left:392.550000px;}
.x82_c00384{left:393.750000px;}
.x20_c00384{left:395.400000px;}
.x5e_c00384{left:396.900000px;}
.x11_c00384{left:397.950000px;}
.x77_c00384{left:399.150000px;}
.x9a_c00384{left:400.950000px;}
.x3c_c00384{left:405.750000px;}
.x134_c00384{left:418.350000px;}
.x139_c00384{left:428.850000px;}
.xe7_c00384{left:430.500000px;}
.x125_c00384{left:443.850000px;}
.xf1_c00384{left:446.250000px;}
.xa7_c00384{left:448.050000px;}
.x101_c00384{left:450.450000px;}
.x128_c00384{left:458.700000px;}
.x102_c00384{left:459.750000px;}
.xa8_c00384{left:462.600000px;}
.xa4_c00384{left:465.450000px;}
.xe3_c00384{left:466.950000px;}
.xc1_c00384{left:468.000000px;}
.xc0_c00384{left:471.300000px;}
.xed_c00384{left:473.400000px;}
.x107_c00384{left:476.400000px;}
.xbb_c00384{left:478.650000px;}
.x126_c00384{left:479.700000px;}
.xf2_c00384{left:481.200000px;}
.xe1_c00384{left:482.700000px;}
.x11a_c00384{left:484.650000px;}
.x13d_c00384{left:486.450000px;}
.xf8_c00384{left:487.950000px;}
.x110_c00384{left:489.150000px;}
.xcb_c00384{left:490.200000px;}
.x12b_c00384{left:492.900000px;}
.x116_c00384{left:494.700000px;}
.xeb_c00384{left:496.800000px;}
.xe2_c00384{left:498.600000px;}
.xc2_c00384{left:500.700000px;}
.xae_c00384{left:503.250000px;}
.x142_c00384{left:504.300000px;}
.xe4_c00384{left:505.800000px;}
.xd1_c00384{left:508.050000px;}
.x132_c00384{left:511.050000px;}
.xd7_c00384{left:512.550000px;}
.xd4_c00384{left:514.350000px;}
.xcc_c00384{left:515.700000px;}
.xa9_c00384{left:516.900000px;}
.x108_c00384{left:518.850000px;}
.xb5_c00384{left:519.900000px;}
.x111_c00384{left:521.550000px;}
.x13e_c00384{left:522.750000px;}
.xfd_c00384{left:523.800000px;}
.xa5_c00384{left:525.600000px;}
.xdc_c00384{left:533.850000px;}
.x121_c00384{left:535.050000px;}
.x11e_c00384{left:537.300000px;}
.x12c_c00384{left:538.650000px;}
.x13f_c00384{left:542.550000px;}
.xc3_c00384{left:543.600000px;}
.x10d_c00384{left:546.300000px;}
.xbc_c00384{left:547.350000px;}
.xb6_c00384{left:548.400000px;}
.xcd_c00384{left:552.000000px;}
.xdd_c00384{left:553.650000px;}
.xc4_c00384{left:555.150000px;}
.xe5_c00384{left:556.650000px;}
.x103_c00384{left:558.150000px;}
.x129_c00384{left:559.800000px;}
.xaf_c00384{left:563.100000px;}
.x112_c00384{left:564.750000px;}
.x143_c00384{left:566.700000px;}
.x120_c00384{left:569.550000px;}
.xd5_c00384{left:572.250000px;}
.xaa_c00384{left:573.450000px;}
.xb0_c00384{left:578.250000px;}
.x137_c00384{left:579.300000px;}
.xb7_c00384{left:581.100000px;}
.xd8_c00384{left:582.750000px;}
.xec_c00384{left:584.700000px;}
.xf9_c00384{left:585.900000px;}
.xc5_c00384{left:587.550000px;}
.xd6_c00384{left:588.750000px;}
.x13a_c00384{left:589.800000px;}
.x122_c00384{left:591.150000px;}
.xe6_c00384{left:593.700000px;}
.x12d_c00384{left:595.200000px;}
.xee_c00384{left:597.150000px;}
.x115_c00384{left:598.500000px;}
.xbd_c00384{left:601.050000px;}
.xfe_c00384{left:602.250000px;}
.x105_c00384{left:605.850000px;}
.xd9_c00384{left:607.200000px;}
.xc6_c00384{left:609.150000px;}
.xde_c00384{left:611.250000px;}
.xd2_c00384{left:613.200000px;}
.xea_c00384{left:614.250000px;}
.x12e_c00384{left:616.500000px;}
.x117_c00384{left:617.850000px;}
.x113_c00384{left:619.500000px;}
.xf3_c00384{left:623.850000px;}
.x109_c00384{left:627.450000px;}
.xda_c00384{left:628.500000px;}
.xb1_c00384{left:631.500000px;}
.x10e_c00384{left:633.750000px;}
.x140_c00384{left:635.400000px;}
.x106_c00384{left:639.000000px;}
.xce_c00384{left:640.200000px;}
.xe8_c00384{left:642.300000px;}
.x12f_c00384{left:645.300000px;}
.xc7_c00384{left:647.250000px;}
.x11d_c00384{left:650.400000px;}
.x130_c00384{left:652.800000px;}
.xf4_c00384{left:654.450000px;}
.xab_c00384{left:655.500000px;}
.xc8_c00384{left:657.750000px;}
.xb2_c00384{left:660.600000px;}
.x12a_c00384{left:664.200000px;}
.x13b_c00384{left:665.700000px;}
.xef_c00384{left:668.400000px;}
.xff_c00384{left:669.600000px;}
.x10a_c00384{left:671.400000px;}
.xb8_c00384{left:672.600000px;}
.xfa_c00384{left:674.100000px;}
.xf5_c00384{left:676.350000px;}
.xbe_c00384{left:678.000000px;}
.xb3_c00384{left:679.350000px;}
.x135_c00384{left:680.850000px;}
.xcf_c00384{left:683.100000px;}
.x123_c00384{left:684.300000px;}
.x141_c00384{left:685.500000px;}
.xdf_c00384{left:688.950000px;}
.xfb_c00384{left:690.300000px;}
.x11b_c00384{left:691.650000px;}
.xdb_c00384{left:693.600000px;}
.x127_c00384{left:696.000000px;}
.x13c_c00384{left:697.350000px;}
.x118_c00384{left:698.400000px;}
.xb9_c00384{left:700.350000px;}
.xac_c00384{left:701.550000px;}
.xf0_c00384{left:708.300000px;}
.x10b_c00384{left:709.500000px;}
.xa6_c00384{left:711.450000px;}
.xf6_c00384{left:712.650000px;}
.xba_c00384{left:713.700000px;}
.x124_c00384{left:714.900000px;}
.x10f_c00384{left:715.950000px;}
.xc9_c00384{left:717.450000px;}
.xe9_c00384{left:718.950000px;}
.x11f_c00384{left:721.350000px;}
.x131_c00384{left:723.000000px;}
.xfc_c00384{left:724.200000px;}
.xe0_c00384{left:725.250000px;}
.xb4_c00384{left:727.950000px;}
.x10c_c00384{left:729.600000px;}
.x138_c00384{left:731.700000px;}
.xd3_c00384{left:733.500000px;}
.xca_c00384{left:734.700000px;}
.x2_c00384{left:737.250000px;}
.x104_c00384{left:738.750000px;}
.x100_c00384{left:740.550000px;}
.x114_c00384{left:742.950000px;}
.xbf_c00384{left:745.650000px;}
.xf7_c00384{left:749.400000px;}
.x119_c00384{left:751.350000px;}
.x133_c00384{left:752.400000px;}
.xd0_c00384{left:754.350000px;}
.x136_c00384{left:755.400000px;}
.x11c_c00384{left:759.300000px;}
.xad_c00384{left:760.950000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws6_c00384{word-spacing:-7.259259pt;}
.ws2_c00384{word-spacing:-6.059888pt;}
.ws1_c00384{word-spacing:-5.185185pt;}
.ws7_c00384{word-spacing:-1.862434pt;}
.wsa_c00384{word-spacing:0.000000pt;}
.ws3_c00384{word-spacing:0.138889pt;}
.ws0_c00384{word-spacing:1.286550pt;}
.ws5_c00384{word-spacing:5.185185pt;}
.ws9_c00384{word-spacing:10.555556pt;}
.ws4_c00384{word-spacing:18.315369pt;}
.ws8_c00384{word-spacing:22.857143pt;}
._0_c00384{width:40.000000pt;}
.fs4_c00384{font-size:21.333333pt;}
.fs5_c00384{font-size:26.666667pt;}
.fs7_c00384{font-size:42.666667pt;}
.fs6_c00384{font-size:48.000000pt;}
.fs3_c00384{font-size:53.333333pt;}
.fs2_c00384{font-size:58.666667pt;}
.fs1_c00384{font-size:64.000000pt;}
.fs0_c00384{font-size:74.666667pt;}
.y0_c00384{bottom:0.000000pt;}
.y38_c00384{bottom:172.800000pt;}
.y37_c00384{bottom:186.266667pt;}
.y36_c00384{bottom:199.333333pt;}
.y69_c00384{bottom:199.733333pt;}
.y35_c00384{bottom:211.866667pt;}
.y34_c00384{bottom:224.933333pt;}
.y33_c00384{bottom:237.466667pt;}
.y32_c00384{bottom:250.266667pt;}
.y67_c00384{bottom:257.866667pt;}
.y31_c00384{bottom:263.333333pt;}
.y30_c00384{bottom:276.133333pt;}
.y66_c00384{bottom:276.533333pt;}
.y2f_c00384{bottom:288.933333pt;}
.y65_c00384{bottom:289.333333pt;}
.y2e_c00384{bottom:301.733333pt;}
.y64_c00384{bottom:302.133333pt;}
.y2d_c00384{bottom:314.266667pt;}
.y63_c00384{bottom:314.533333pt;}
.y68_c00384{bottom:326.400000pt;}
.y2c_c00384{bottom:327.066667pt;}
.y62_c00384{bottom:327.333333pt;}
.y61_c00384{bottom:339.600000pt;}
.y2b_c00384{bottom:339.733333pt;}
.y2a_c00384{bottom:352.266667pt;}
.y60_c00384{bottom:352.400000pt;}
.y29_c00384{bottom:365.066667pt;}
.y5f_c00384{bottom:366.800000pt;}
.y28_c00384{bottom:377.600000pt;}
.y5e_c00384{bottom:386.000000pt;}
.y27_c00384{bottom:390.400000pt;}
.y5d_c00384{bottom:402.666667pt;}
.y26_c00384{bottom:403.866667pt;}
.y25_c00384{bottom:416.000000pt;}
.y5c_c00384{bottom:418.400000pt;}
.y24_c00384{bottom:428.266667pt;}
.y5b_c00384{bottom:434.400000pt;}
.y23_c00384{bottom:441.066667pt;}
.y5a_c00384{bottom:450.400000pt;}
.y22_c00384{bottom:454.133333pt;}
.y59_c00384{bottom:469.866667pt;}
.y58_c00384{bottom:485.866667pt;}
.y21_c00384{bottom:499.200000pt;}
.y57_c00384{bottom:501.866667pt;}
.y56_c00384{bottom:517.200000pt;}
.y20_c00384{bottom:519.066667pt;}
.y55_c00384{bottom:533.200000pt;}
.y1f_c00384{bottom:538.933333pt;}
.y54_c00384{bottom:549.200000pt;}
.y1e_c00384{bottom:558.133333pt;}
.y53_c00384{bottom:564.933333pt;}
.y1d_c00384{bottom:574.133333pt;}
.y52_c00384{bottom:580.933333pt;}
.y1c_c00384{bottom:589.866667pt;}
.y51_c00384{bottom:596.666667pt;}
.y1b_c00384{bottom:605.600000pt;}
.y50_c00384{bottom:612.666667pt;}
.y1a_c00384{bottom:621.333333pt;}
.y4f_c00384{bottom:628.000000pt;}
.y19_c00384{bottom:637.333333pt;}
.y4e_c00384{bottom:643.733333pt;}
.y18_c00384{bottom:653.066667pt;}
.y4d_c00384{bottom:659.733333pt;}
.y17_c00384{bottom:672.533333pt;}
.y4c_c00384{bottom:675.466667pt;}
.y16_c00384{bottom:688.266667pt;}
.y4b_c00384{bottom:695.333333pt;}
.y15_c00384{bottom:704.000000pt;}
.y4a_c00384{bottom:718.666667pt;}
.y14_c00384{bottom:720.000000pt;}
.y13_c00384{bottom:734.666667pt;}
.y49_c00384{bottom:738.533333pt;}
.y12_c00384{bottom:743.333333pt;}
.y11_c00384{bottom:752.666667pt;}
.y48_c00384{bottom:756.133333pt;}
.y10_c00384{bottom:761.600000pt;}
.yf_c00384{bottom:768.933333pt;}
.y47_c00384{bottom:773.733333pt;}
.y46_c00384{bottom:789.066667pt;}
.ye_c00384{bottom:792.266667pt;}
.y45_c00384{bottom:805.066667pt;}
.yc_c00384{bottom:812.533333pt;}
.y44_c00384{bottom:820.800000pt;}
.yb_c00384{bottom:832.400000pt;}
.y43_c00384{bottom:836.400000pt;}
.ya_c00384{bottom:851.866667pt;}
.y42_c00384{bottom:852.666667pt;}
.y41_c00384{bottom:868.400000pt;}
.y9_c00384{bottom:871.733333pt;}
.y40_c00384{bottom:884.133333pt;}
.y8_c00384{bottom:898.533333pt;}
.y3f_c00384{bottom:898.800000pt;}
.yd_c00384{bottom:898.933333pt;}
.y3e_c00384{bottom:915.466667pt;}
.y7_c00384{bottom:927.066667pt;}
.y3d_c00384{bottom:931.466667pt;}
.y6_c00384{bottom:943.333333pt;}
.y3c_c00384{bottom:947.200000pt;}
.y5_c00384{bottom:959.333333pt;}
.y3b_c00384{bottom:962.933333pt;}
.y4_c00384{bottom:975.333333pt;}
.y3a_c00384{bottom:977.866667pt;}
.y3_c00384{bottom:991.333333pt;}
.y39_c00384{bottom:994.533333pt;}
.y1_c00384{bottom:1016.933333pt;}
.y2_c00384{bottom:1017.866667pt;}
.h6_c00384{height:21.333333pt;}
.h7_c00384{height:26.666667pt;}
.h9_c00384{height:42.666667pt;}
.h8_c00384{height:48.000000pt;}
.h5_c00384{height:53.333333pt;}
.h4_c00384{height:58.666667pt;}
.h3_c00384{height:64.000000pt;}
.h2_c00384{height:74.666667pt;}
.h1_c00384{height:1126.000000pt;}
.h0_c00384{height:1126.079916pt;}
.w0_c00384{width:853.760009pt;}
.w1_c00384{width:854.000000pt;}
.x0_c00384{left:0.000000pt;}
.x2c_c00384{left:61.466667pt;}
.xa2_c00384{left:65.066667pt;}
.x28_c00384{left:66.533333pt;}
.x8e_c00384{left:73.600000pt;}
.x2d_c00384{left:78.800000pt;}
.x74_c00384{left:80.000000pt;}
.x21_c00384{left:81.733333pt;}
.x3_c00384{left:83.200000pt;}
.x9b_c00384{left:85.600000pt;}
.x97_c00384{left:88.400000pt;}
.x83_c00384{left:94.000000pt;}
.x70_c00384{left:97.200000pt;}
.x2e_c00384{left:98.266667pt;}
.x42_c00384{left:99.733333pt;}
.x75_c00384{left:100.800000pt;}
.x4_c00384{left:102.666667pt;}
.x6c_c00384{left:105.600000pt;}
.x87_c00384{left:106.666667pt;}
.x37_c00384{left:107.866667pt;}
.x8f_c00384{left:108.800000pt;}
.x22_c00384{left:110.266667pt;}
.x84_c00384{left:112.266667pt;}
.x5a_c00384{left:114.133333pt;}
.x17_c00384{left:115.066667pt;}
.x71_c00384{left:116.400000pt;}
.x7c_c00384{left:117.333333pt;}
.x63_c00384{left:118.266667pt;}
.x9c_c00384{left:120.266667pt;}
.x29_c00384{left:121.200000pt;}
.x3e_c00384{left:122.400000pt;}
.x50_c00384{left:123.733333pt;}
.x12_c00384{left:126.000000pt;}
.x65_c00384{left:126.933333pt;}
.x9d_c00384{left:128.266667pt;}
.x4b_c00384{left:130.000000pt;}
.x3a_c00384{left:131.200000pt;}
.x51_c00384{left:134.666667pt;}
.x32_c00384{left:136.000000pt;}
.x88_c00384{left:137.333333pt;}
.x45_c00384{left:138.933333pt;}
.x57_c00384{left:140.933333pt;}
.x94_c00384{left:142.800000pt;}
.x3d_c00384{left:143.733333pt;}
.x85_c00384{left:144.933333pt;}
.x18_c00384{left:146.133333pt;}
.x6b_c00384{left:147.333333pt;}
.x5f_c00384{left:148.400000pt;}
.xd_c00384{left:150.266667pt;}
.x52_c00384{left:151.333333pt;}
.x78_c00384{left:152.400000pt;}
.x46_c00384{left:153.333333pt;}
.x33_c00384{left:155.600000pt;}
.x13_c00384{left:157.066667pt;}
.x5b_c00384{left:159.600000pt;}
.x98_c00384{left:160.800000pt;}
.x38_c00384{left:162.000000pt;}
.x68_c00384{left:163.466667pt;}
.x34_c00384{left:165.200000pt;}
.x27_c00384{left:167.066667pt;}
.x89_c00384{left:168.000000pt;}
.x19_c00384{left:169.466667pt;}
.x96_c00384{left:170.533333pt;}
.x80_c00384{left:171.733333pt;}
.x39_c00384{left:173.200000pt;}
.x7b_c00384{left:177.333333pt;}
.x73_c00384{left:178.266667pt;}
.x76_c00384{left:179.200000pt;}
.x9e_c00384{left:180.266667pt;}
.x60_c00384{left:183.333333pt;}
.x1a_c00384{left:184.533333pt;}
.x5c_c00384{left:187.733333pt;}
.x5_c00384{left:189.333333pt;}
.x2a_c00384{left:190.933333pt;}
.x23_c00384{left:192.800000pt;}
.x91_c00384{left:194.266667pt;}
.x53_c00384{left:196.800000pt;}
.x66_c00384{left:199.200000pt;}
.x35_c00384{left:200.266667pt;}
.x86_c00384{left:201.333333pt;}
.x64_c00384{left:203.066667pt;}
.x14_c00384{left:204.400000pt;}
.x69_c00384{left:205.333333pt;}
.x67_c00384{left:209.066667pt;}
.x4c_c00384{left:210.000000pt;}
.x47_c00384{left:211.600000pt;}
.x49_c00384{left:213.733333pt;}
.x1b_c00384{left:215.200000pt;}
.x7d_c00384{left:216.266667pt;}
.x5d_c00384{left:217.466667pt;}
.x8a_c00384{left:218.533333pt;}
.x4d_c00384{left:219.600000pt;}
.x24_c00384{left:220.666667pt;}
.x43_c00384{left:222.933333pt;}
.x6_c00384{left:224.533333pt;}
.x2f_c00384{left:226.266667pt;}
.xe_c00384{left:227.733333pt;}
.x2b_c00384{left:229.066667pt;}
.x3f_c00384{left:230.666667pt;}
.x48_c00384{left:233.066667pt;}
.x25_c00384{left:235.733333pt;}
.x61_c00384{left:239.600000pt;}
.x7_c00384{left:240.533333pt;}
.x8b_c00384{left:241.866667pt;}
.x58_c00384{left:243.066667pt;}
.x92_c00384{left:244.533333pt;}
.x4e_c00384{left:246.533333pt;}
.x6d_c00384{left:248.800000pt;}
.x40_c00384{left:251.466667pt;}
.x1c_c00384{left:253.866667pt;}
.x81_c00384{left:254.933333pt;}
.x54_c00384{left:256.400000pt;}
.x72_c00384{left:258.533333pt;}
.x30_c00384{left:260.133333pt;}
.x44_c00384{left:262.533333pt;}
.x26_c00384{left:264.800000pt;}
.x9f_c00384{left:266.266667pt;}
.x90_c00384{left:269.066667pt;}
.x8_c00384{left:270.266667pt;}
.x59_c00384{left:271.600000pt;}
.x7e_c00384{left:274.533333pt;}
.x1d_c00384{left:276.000000pt;}
.x6a_c00384{left:277.600000pt;}
.xa0_c00384{left:278.800000pt;}
.x1_c00384{left:280.266667pt;}
.x8c_c00384{left:282.533333pt;}
.x3b_c00384{left:285.200000pt;}
.x9_c00384{left:287.200000pt;}
.x6e_c00384{left:291.066667pt;}
.x15_c00384{left:293.066667pt;}
.x55_c00384{left:294.133333pt;}
.x4a_c00384{left:298.933333pt;}
.x31_c00384{left:300.133333pt;}
.x93_c00384{left:301.866667pt;}
.xf_c00384{left:303.200000pt;}
.xa_c00384{left:304.800000pt;}
.x62_c00384{left:305.866667pt;}
.x7f_c00384{left:309.066667pt;}
.x10_c00384{left:311.200000pt;}
.xb_c00384{left:313.733333pt;}
.x79_c00384{left:315.600000pt;}
.xa3_c00384{left:317.733333pt;}
.x95_c00384{left:319.466667pt;}
.x41_c00384{left:320.933333pt;}
.x36_c00384{left:323.733333pt;}
.x1e_c00384{left:325.600000pt;}
.x8d_c00384{left:326.666667pt;}
.x7a_c00384{left:330.000000pt;}
.xc_c00384{left:332.000000pt;}
.x1f_c00384{left:335.466667pt;}
.x99_c00384{left:337.466667pt;}
.x16_c00384{left:340.133333pt;}
.x56_c00384{left:343.066667pt;}
.x4f_c00384{left:346.400000pt;}
.x6f_c00384{left:348.000000pt;}
.xa1_c00384{left:348.933333pt;}
.x82_c00384{left:350.000000pt;}
.x20_c00384{left:351.466667pt;}
.x5e_c00384{left:352.800000pt;}
.x11_c00384{left:353.733333pt;}
.x77_c00384{left:354.800000pt;}
.x9a_c00384{left:356.400000pt;}
.x3c_c00384{left:360.666667pt;}
.x134_c00384{left:371.866667pt;}
.x139_c00384{left:381.200000pt;}
.xe7_c00384{left:382.666667pt;}
.x125_c00384{left:394.533333pt;}
.xf1_c00384{left:396.666667pt;}
.xa7_c00384{left:398.266667pt;}
.x101_c00384{left:400.400000pt;}
.x128_c00384{left:407.733333pt;}
.x102_c00384{left:408.666667pt;}
.xa8_c00384{left:411.200000pt;}
.xa4_c00384{left:413.733333pt;}
.xe3_c00384{left:415.066667pt;}
.xc1_c00384{left:416.000000pt;}
.xc0_c00384{left:418.933333pt;}
.xed_c00384{left:420.800000pt;}
.x107_c00384{left:423.466667pt;}
.xbb_c00384{left:425.466667pt;}
.x126_c00384{left:426.400000pt;}
.xf2_c00384{left:427.733333pt;}
.xe1_c00384{left:429.066667pt;}
.x11a_c00384{left:430.800000pt;}
.x13d_c00384{left:432.400000pt;}
.xf8_c00384{left:433.733333pt;}
.x110_c00384{left:434.800000pt;}
.xcb_c00384{left:435.733333pt;}
.x12b_c00384{left:438.133333pt;}
.x116_c00384{left:439.733333pt;}
.xeb_c00384{left:441.600000pt;}
.xe2_c00384{left:443.200000pt;}
.xc2_c00384{left:445.066667pt;}
.xae_c00384{left:447.333333pt;}
.x142_c00384{left:448.266667pt;}
.xe4_c00384{left:449.600000pt;}
.xd1_c00384{left:451.600000pt;}
.x132_c00384{left:454.266667pt;}
.xd7_c00384{left:455.600000pt;}
.xd4_c00384{left:457.200000pt;}
.xcc_c00384{left:458.400000pt;}
.xa9_c00384{left:459.466667pt;}
.x108_c00384{left:461.200000pt;}
.xb5_c00384{left:462.133333pt;}
.x111_c00384{left:463.600000pt;}
.x13e_c00384{left:464.666667pt;}
.xfd_c00384{left:465.600000pt;}
.xa5_c00384{left:467.200000pt;}
.xdc_c00384{left:474.533333pt;}
.x121_c00384{left:475.600000pt;}
.x11e_c00384{left:477.600000pt;}
.x12c_c00384{left:478.800000pt;}
.x13f_c00384{left:482.266667pt;}
.xc3_c00384{left:483.200000pt;}
.x10d_c00384{left:485.600000pt;}
.xbc_c00384{left:486.533333pt;}
.xb6_c00384{left:487.466667pt;}
.xcd_c00384{left:490.666667pt;}
.xdd_c00384{left:492.133333pt;}
.xc4_c00384{left:493.466667pt;}
.xe5_c00384{left:494.800000pt;}
.x103_c00384{left:496.133333pt;}
.x129_c00384{left:497.600000pt;}
.xaf_c00384{left:500.533333pt;}
.x112_c00384{left:502.000000pt;}
.x143_c00384{left:503.733333pt;}
.x120_c00384{left:506.266667pt;}
.xd5_c00384{left:508.666667pt;}
.xaa_c00384{left:509.733333pt;}
.xb0_c00384{left:514.000000pt;}
.x137_c00384{left:514.933333pt;}
.xb7_c00384{left:516.533333pt;}
.xd8_c00384{left:518.000000pt;}
.xec_c00384{left:519.733333pt;}
.xf9_c00384{left:520.800000pt;}
.xc5_c00384{left:522.266667pt;}
.xd6_c00384{left:523.333333pt;}
.x13a_c00384{left:524.266667pt;}
.x122_c00384{left:525.466667pt;}
.xe6_c00384{left:527.733333pt;}
.x12d_c00384{left:529.066667pt;}
.xee_c00384{left:530.800000pt;}
.x115_c00384{left:532.000000pt;}
.xbd_c00384{left:534.266667pt;}
.xfe_c00384{left:535.333333pt;}
.x105_c00384{left:538.533333pt;}
.xd9_c00384{left:539.733333pt;}
.xc6_c00384{left:541.466667pt;}
.xde_c00384{left:543.333333pt;}
.xd2_c00384{left:545.066667pt;}
.xea_c00384{left:546.000000pt;}
.x12e_c00384{left:548.000000pt;}
.x117_c00384{left:549.200000pt;}
.x113_c00384{left:550.666667pt;}
.xf3_c00384{left:554.533333pt;}
.x109_c00384{left:557.733333pt;}
.xda_c00384{left:558.666667pt;}
.xb1_c00384{left:561.333333pt;}
.x10e_c00384{left:563.333333pt;}
.x140_c00384{left:564.800000pt;}
.x106_c00384{left:568.000000pt;}
.xce_c00384{left:569.066667pt;}
.xe8_c00384{left:570.933333pt;}
.x12f_c00384{left:573.600000pt;}
.xc7_c00384{left:575.333333pt;}
.x11d_c00384{left:578.133333pt;}
.x130_c00384{left:580.266667pt;}
.xf4_c00384{left:581.733333pt;}
.xab_c00384{left:582.666667pt;}
.xc8_c00384{left:584.666667pt;}
.xb2_c00384{left:587.200000pt;}
.x12a_c00384{left:590.400000pt;}
.x13b_c00384{left:591.733333pt;}
.xef_c00384{left:594.133333pt;}
.xff_c00384{left:595.200000pt;}
.x10a_c00384{left:596.800000pt;}
.xb8_c00384{left:597.866667pt;}
.xfa_c00384{left:599.200000pt;}
.xf5_c00384{left:601.200000pt;}
.xbe_c00384{left:602.666667pt;}
.xb3_c00384{left:603.866667pt;}
.x135_c00384{left:605.200000pt;}
.xcf_c00384{left:607.200000pt;}
.x123_c00384{left:608.266667pt;}
.x141_c00384{left:609.333333pt;}
.xdf_c00384{left:612.400000pt;}
.xfb_c00384{left:613.600000pt;}
.x11b_c00384{left:614.800000pt;}
.xdb_c00384{left:616.533333pt;}
.x127_c00384{left:618.666667pt;}
.x13c_c00384{left:619.866667pt;}
.x118_c00384{left:620.800000pt;}
.xb9_c00384{left:622.533333pt;}
.xac_c00384{left:623.600000pt;}
.xf0_c00384{left:629.600000pt;}
.x10b_c00384{left:630.666667pt;}
.xa6_c00384{left:632.400000pt;}
.xf6_c00384{left:633.466667pt;}
.xba_c00384{left:634.400000pt;}
.x124_c00384{left:635.466667pt;}
.x10f_c00384{left:636.400000pt;}
.xc9_c00384{left:637.733333pt;}
.xe9_c00384{left:639.066667pt;}
.x11f_c00384{left:641.200000pt;}
.x131_c00384{left:642.666667pt;}
.xfc_c00384{left:643.733333pt;}
.xe0_c00384{left:644.666667pt;}
.xb4_c00384{left:647.066667pt;}
.x10c_c00384{left:648.533333pt;}
.x138_c00384{left:650.400000pt;}
.xd3_c00384{left:652.000000pt;}
.xca_c00384{left:653.066667pt;}
.x2_c00384{left:655.333333pt;}
.x104_c00384{left:656.666667pt;}
.x100_c00384{left:658.266667pt;}
.x114_c00384{left:660.400000pt;}
.xbf_c00384{left:662.800000pt;}
.xf7_c00384{left:666.133333pt;}
.x119_c00384{left:667.866667pt;}
.x133_c00384{left:668.800000pt;}
.xd0_c00384{left:670.533333pt;}
.x136_c00384{left:671.466667pt;}
.x11c_c00384{left:674.933333pt;}
.xad_c00384{left:676.400000pt;}
}





/* 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_c00385 {
    display:none;
  }
  .loading-indicator_c00385.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00385 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_c00385 { 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_c00385" -> "#page-container .classname_c00385")
 */
.pf_c00385 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00385 { /* 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_c00385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00385 { /* 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_c00385 { /* 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_c00385 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00385 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00385 {overflow:visible;}
  }
}
.c_c00385 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00385 { /* 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_c00385:after { /* webkit #35443 */
  content: '';
}
.t_c00385:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00385 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 */
}
.__c00385 { /* 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_c00385 { /* info for Javascript */
  display:none;
}
.l_c00385 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00385 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00385 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00385: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_c00385 {
    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_c00385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00385.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_c00385 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00385;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.000000;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;}
.m7e_c00385{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mde_c00385{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00385{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mae_c00385{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m97_c00385{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00385{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m80_c00385{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m56_c00385{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me_c00385{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00385{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m24_c00385{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3_c00385{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m78_c00385{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me7_c00385{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00385{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00385{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mba_c00385{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00385{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00385{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00385{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00385{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m95_c00385{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00385{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m70_c00385{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00385{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00385{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m36_c00385{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00385{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8_c00385{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00385{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m47_c00385{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma_c00385{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00385{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m28_c00385{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m86_c00385{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00385{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m108_c00385{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00385{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md4_c00385{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00385{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me5_c00385{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me8_c00385{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m49_c00385{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m106_c00385{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m107_c00385{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00385{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mea_c00385{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00385{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m37_c00385{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m45_c00385{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m68_c00385{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m34_c00385{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00385{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00385{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m113_c00385{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m48_c00385{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00385{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00385{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m30_c00385{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6_c00385{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00385{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00385{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m73_c00385{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m2_c00385{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00385{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m99_c00385{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m54_c00385{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m16_c00385{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m114_c00385{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00385{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00385{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m103_c00385{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m57_c00385{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m42_c00385{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mad_c00385{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m29_c00385{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00385{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00385{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00385{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m44_c00385{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb_c00385{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m7_c00385{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m25_c00385{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00385{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m93_c00385{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m15_c00385{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m81_c00385{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md0_c00385{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.md7_c00385{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m43_c00385{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00385{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m83_c00385{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md8_c00385{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00385{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md_c00385{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m74_c00385{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mca_c00385{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m38_c00385{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00385{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00385{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m94_c00385{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00385{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9_c00385{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00385{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00385{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md3_c00385{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00385{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m50_c00385{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00385{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m71_c00385{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m69_c00385{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me9_c00385{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00385{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m10_c00385{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00385{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m13_c00385{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4_c00385{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00385{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m98_c00385{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00385{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00385{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.maa_c00385{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m22_c00385{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00385{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00385{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00385{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m109_c00385{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m32_c00385{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00385{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m112_c00385{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m12_c00385{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf_c00385{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.me3_c00385{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m26_c00385{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00385{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m85_c00385{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00385{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m14_c00385{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00385{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00385{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m21_c00385{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m90_c00385{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m20_c00385{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m61_c00385{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5_c00385{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00385{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m33_c00385{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m46_c00385{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m72_c00385{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00385{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mce_c00385{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m65_c00385{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m100_c00385{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00385{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md9_c00385{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m51_c00385{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m31_c00385{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00385{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md2_c00385{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m102_c00385{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mec_c00385{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m18_c00385{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md5_c00385{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.me2_c00385{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00385{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m53_c00385{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00385{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00385{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00385{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m41_c00385{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mab_c00385{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00385{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mff_c00385{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00385{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md1_c00385{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00385{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mda_c00385{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m87_c00385{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m76_c00385{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m35_c00385{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m67_c00385{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00385{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.med_c00385{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00385{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00385{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m77_c00385{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m19_c00385{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m105_c00385{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00385{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00385{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00385{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m60_c00385{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m11_c00385{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00385{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m117_c00385{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m64_c00385{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00385{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md6_c00385{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me0_c00385{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00385{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00385{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mac_c00385{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00385{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00385{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m58_c00385{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00385{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00385{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00385{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m92_c00385{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00385{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me6_c00385{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00385{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00385{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m91_c00385{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m23_c00385{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00385{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me4_c00385{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00385{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00385{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m55_c00385{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m84_c00385{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27_c00385{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00385{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00385{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m40_c00385{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me1_c00385{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m52_c00385{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m66_c00385{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m89_c00385{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00385{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m39_c00385{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00385{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m62_c00385{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00385{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m101_c00385{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00385{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m104_c00385{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00385{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00385{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00385{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m79_c00385{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m82_c00385{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00385{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m110_c00385{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m116_c00385{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m63_c00385{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00385{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00385{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m111_c00385{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00385{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00385{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00385{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00385{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00385{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m17_c00385{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m115_c00385{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00385{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00385{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00385{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00385{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00385{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m75_c00385{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mef_c00385{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m96_c00385{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00385{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00385{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mee_c00385{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.meb_c00385{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00385{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.m59_c00385{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00385{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00385{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.maf_c00385{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00385{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00385{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00385{transform:matrix(0.459000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459000,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00385{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m88_c00385{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00385{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls2_c00385{letter-spacing:0.000000px;}
.ls1_c00385{letter-spacing:45.000000px;}
.ls0_c00385{letter-spacing:55.714286px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{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__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00385{word-spacing:-85.714286px;}
.ws6_c00385{word-spacing:-75.000000px;}
.wsa_c00385{word-spacing:-11.028513px;}
.wsb_c00385{word-spacing:-7.458101px;}
.wsd_c00385{word-spacing:-4.090909px;}
.ws0_c00385{word-spacing:-0.146132px;}
.ws10_c00385{word-spacing:0.000000px;}
.wsf_c00385{word-spacing:6.428571px;}
.wse_c00385{word-spacing:15.335196px;}
.wsc_c00385{word-spacing:15.824798px;}
.ws7_c00385{word-spacing:16.785714px;}
.ws1_c00385{word-spacing:22.142857px;}
.ws3_c00385{word-spacing:25.714286px;}
.ws2_c00385{word-spacing:35.833333px;}
.ws4_c00385{word-spacing:40.000000px;}
.ws8_c00385{word-spacing:59.721619px;}
.ws9_c00385{word-spacing:275.250000px;}
._2_c00385{margin-left:-55.714286px;}
._3_c00385{margin-left:-45.000000px;}
._0_c00385{width:55.714286px;}
._1_c00385{width:59.285714px;}
.fc0_c00385{color:transparent;}
.fs6_c00385{font-size:18.000000px;}
.fs5_c00385{font-size:48.000000px;}
.fs4_c00385{font-size:54.000000px;}
.fs3_c00385{font-size:60.000000px;}
.fs2_c00385{font-size:66.000000px;}
.fs0_c00385{font-size:72.000000px;}
.fs1_c00385{font-size:78.000000px;}
.fs7_c00385{font-size:90.000000px;}
.y0_c00385{bottom:0.000000px;}
.y64_c00385{bottom:198.450000px;}
.y39_c00385{bottom:203.400000px;}
.y38_c00385{bottom:218.550000px;}
.y63_c00385{bottom:219.300000px;}
.y37_c00385{bottom:224.700000px;}
.y36_c00385{bottom:231.750000px;}
.y62_c00385{bottom:241.650000px;}
.y35_c00385{bottom:245.850000px;}
.y61_c00385{bottom:258.900000px;}
.y34_c00385{bottom:259.500000px;}
.y33_c00385{bottom:273.150000px;}
.y60_c00385{bottom:281.100000px;}
.y32_c00385{bottom:287.250000px;}
.y31_c00385{bottom:301.050000px;}
.y30_c00385{bottom:314.700000px;}
.y2f_c00385{bottom:328.350000px;}
.y2e_c00385{bottom:342.450000px;}
.y5f_c00385{bottom:348.150000px;}
.y2d_c00385{bottom:356.100000px;}
.y2c_c00385{bottom:369.300000px;}
.y2b_c00385{bottom:383.700000px;}
.y5e_c00385{bottom:385.200000px;}
.y2a_c00385{bottom:397.350000px;}
.y5d_c00385{bottom:402.900000px;}
.y29_c00385{bottom:411.450000px;}
.y5c_c00385{bottom:420.150000px;}
.y28_c00385{bottom:426.900000px;}
.y5b_c00385{bottom:442.500000px;}
.y27_c00385{bottom:452.850000px;}
.y5a_c00385{bottom:460.500000px;}
.y26_c00385{bottom:468.300000px;}
.y59_c00385{bottom:478.050000px;}
.y25_c00385{bottom:486.000000px;}
.y58_c00385{bottom:496.050000px;}
.y24_c00385{bottom:503.700000px;}
.y57_c00385{bottom:518.100000px;}
.y23_c00385{bottom:525.450000px;}
.y56_c00385{bottom:536.400000px;}
.y22_c00385{bottom:543.150000px;}
.y55_c00385{bottom:558.000000px;}
.y21_c00385{bottom:560.850000px;}
.y20_c00385{bottom:578.100000px;}
.y54_c00385{bottom:580.050000px;}
.y1f_c00385{bottom:597.600000px;}
.y53_c00385{bottom:598.350000px;}
.y1e_c00385{bottom:613.500000px;}
.y52_c00385{bottom:615.300000px;}
.y1d_c00385{bottom:630.900000px;}
.y51_c00385{bottom:637.350000px;}
.y1c_c00385{bottom:648.600000px;}
.y50_c00385{bottom:655.650000px;}
.y1b_c00385{bottom:666.300000px;}
.y4f_c00385{bottom:672.900000px;}
.y1a_c00385{bottom:687.900000px;}
.y4e_c00385{bottom:691.200000px;}
.y19_c00385{bottom:718.800000px;}
.y4d_c00385{bottom:722.550000px;}
.y18_c00385{bottom:736.500000px;}
.y17_c00385{bottom:757.650000px;}
.y4c_c00385{bottom:758.550000px;}
.y16_c00385{bottom:776.400000px;}
.y15_c00385{bottom:794.100000px;}
.y4b_c00385{bottom:801.150000px;}
.y14_c00385{bottom:811.350000px;}
.y4a_c00385{bottom:818.850000px;}
.y13_c00385{bottom:829.050000px;}
.y49_c00385{bottom:836.550000px;}
.y12_c00385{bottom:847.050000px;}
.y48_c00385{bottom:854.250000px;}
.y11_c00385{bottom:864.300000px;}
.y47_c00385{bottom:872.250000px;}
.y10_c00385{bottom:882.000000px;}
.y46_c00385{bottom:889.950000px;}
.yf_c00385{bottom:899.700000px;}
.y45_c00385{bottom:912.300000px;}
.ye_c00385{bottom:920.100000px;}
.y44_c00385{bottom:934.500000px;}
.yd_c00385{bottom:938.850000px;}
.y43_c00385{bottom:952.500000px;}
.yc_c00385{bottom:956.850000px;}
.y42_c00385{bottom:970.500000px;}
.yb_c00385{bottom:974.550000px;}
.y41_c00385{bottom:988.200000px;}
.ya_c00385{bottom:991.800000px;}
.y40_c00385{bottom:1006.200000px;}
.y9_c00385{bottom:1009.800000px;}
.y3f_c00385{bottom:1024.200000px;}
.y8_c00385{bottom:1027.500000px;}
.y7_c00385{bottom:1045.200000px;}
.y3e_c00385{bottom:1046.100000px;}
.y6_c00385{bottom:1063.200000px;}
.y3d_c00385{bottom:1064.100000px;}
.y5_c00385{bottom:1080.900000px;}
.y3c_c00385{bottom:1081.800000px;}
.y4_c00385{bottom:1098.600000px;}
.y3b_c00385{bottom:1099.800000px;}
.y3_c00385{bottom:1116.300000px;}
.y3a_c00385{bottom:1117.500000px;}
.y1_c00385{bottom:1139.700000px;}
.y2_c00385{bottom:1143.000000px;}
.h8_c00385{height:18.000000px;}
.h7_c00385{height:48.000000px;}
.h6_c00385{height:54.000000px;}
.h5_c00385{height:60.000000px;}
.h4_c00385{height:66.000000px;}
.h2_c00385{height:72.000000px;}
.h3_c00385{height:78.000000px;}
.h9_c00385{height:90.000000px;}
.h1_c00385{height:1269.750000px;}
.h0_c00385{height:1270.080048px;}
.w0_c00385{width:960.480010px;}
.w1_c00385{width:960.750000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:204.900000px;}
.x49_c00385{left:206.700000px;}
.x94_c00385{left:219.900000px;}
.x86_c00385{left:221.550000px;}
.x3_c00385{left:223.200000px;}
.x29_c00385{left:224.400000px;}
.x6b_c00385{left:226.350000px;}
.xa4_c00385{left:232.200000px;}
.x98_c00385{left:235.350000px;}
.x9a_c00385{left:236.550000px;}
.x9c_c00385{left:237.600000px;}
.xa2_c00385{left:239.400000px;}
.x8b_c00385{left:240.450000px;}
.x68_c00385{left:241.950000px;}
.x50_c00385{left:244.050000px;}
.x8c_c00385{left:245.550000px;}
.x3c_c00385{left:247.200000px;}
.x71_c00385{left:249.450000px;}
.x4_c00385{left:251.250000px;}
.x17_c00385{left:255.150000px;}
.x99_c00385{left:256.950000px;}
.x36_c00385{left:259.500000px;}
.x5_c00385{left:261.000000px;}
.x4c_c00385{left:263.100000px;}
.x3d_c00385{left:265.500000px;}
.x2a_c00385{left:266.550000px;}
.x79_c00385{left:269.100000px;}
.x1e_c00385{left:270.150000px;}
.x6c_c00385{left:272.550000px;}
.x65_c00385{left:273.600000px;}
.x12_c00385{left:274.950000px;}
.x46_c00385{left:276.300000px;}
.x91_c00385{left:277.950000px;}
.x18_c00385{left:281.850000px;}
.x4a_c00385{left:283.800000px;}
.x30_c00385{left:287.850000px;}
.x6f_c00385{left:289.350000px;}
.x56_c00385{left:290.400000px;}
.xa3_c00385{left:291.600000px;}
.x6_c00385{left:292.650000px;}
.x13_c00385{left:294.000000px;}
.x6d_c00385{left:295.650000px;}
.x3e_c00385{left:297.150000px;}
.x37_c00385{left:299.100000px;}
.x75_c00385{left:302.100000px;}
.x51_c00385{left:304.200000px;}
.x47_c00385{left:305.400000px;}
.x23_c00385{left:306.750000px;}
.x38_c00385{left:307.800000px;}
.x7a_c00385{left:310.500000px;}
.x1f_c00385{left:311.550000px;}
.x52_c00385{left:312.900000px;}
.x66_c00385{left:315.000000px;}
.x3f_c00385{left:316.200000px;}
.x89_c00385{left:319.500000px;}
.x5b_c00385{left:321.450000px;}
.x70_c00385{left:323.250000px;}
.xb_c00385{left:325.350000px;}
.x4d_c00385{left:327.600000px;}
.x82_c00385{left:328.800000px;}
.x24_c00385{left:329.850000px;}
.x76_c00385{left:332.700000px;}
.x19_c00385{left:334.050000px;}
.x7d_c00385{left:336.900000px;}
.x40_c00385{left:338.850000px;}
.x5c_c00385{left:340.500000px;}
.x60_c00385{left:342.000000px;}
.x14_c00385{left:344.100000px;}
.xc_c00385{left:345.150000px;}
.x77_c00385{left:346.800000px;}
.x2b_c00385{left:348.300000px;}
.x53_c00385{left:350.100000px;}
.x61_c00385{left:352.050000px;}
.x1a_c00385{left:353.100000px;}
.x39_c00385{left:354.900000px;}
.x9d_c00385{left:358.200000px;}
.x7e_c00385{left:361.050000px;}
.x6e_c00385{left:364.800000px;}
.x31_c00385{left:366.750000px;}
.x2c_c00385{left:367.800000px;}
.x7b_c00385{left:368.850000px;}
.x57_c00385{left:370.500000px;}
.x1b_c00385{left:372.600000px;}
.x41_c00385{left:374.850000px;}
.x7c_c00385{left:376.650000px;}
.xa5_c00385{left:378.600000px;}
.x62_c00385{left:379.800000px;}
.xd_c00385{left:381.450000px;}
.x72_c00385{left:383.250000px;}
.x69_c00385{left:387.900000px;}
.x87_c00385{left:390.000000px;}
.x8a_c00385{left:391.200000px;}
.xe_c00385{left:392.250000px;}
.x73_c00385{left:393.750000px;}
.x4e_c00385{left:395.700000px;}
.x58_c00385{left:397.500000px;}
.x54_c00385{left:398.700000px;}
.x5d_c00385{left:402.000000px;}
.x8f_c00385{left:403.200000px;}
.x96_c00385{left:405.300000px;}
.x3a_c00385{left:408.150000px;}
.x83_c00385{left:411.600000px;}
.x95_c00385{left:413.400000px;}
.x25_c00385{left:414.450000px;}
.x3b_c00385{left:415.650000px;}
.x2d_c00385{left:417.450000px;}
.x9e_c00385{left:418.650000px;}
.x32_c00385{left:420.000000px;}
.x42_c00385{left:422.700000px;}
.x7_c00385{left:425.850000px;}
.xa0_c00385{left:427.200000px;}
.x20_c00385{left:428.550000px;}
.x88_c00385{left:429.900000px;}
.x63_c00385{left:430.950000px;}
.x5e_c00385{left:434.100000px;}
.x2e_c00385{left:436.500000px;}
.x67_c00385{left:437.700000px;}
.x26_c00385{left:439.350000px;}
.x92_c00385{left:441.150000px;}
.x1c_c00385{left:442.500000px;}
.x7f_c00385{left:444.150000px;}
.xf_c00385{left:445.500000px;}
.x8_c00385{left:449.550000px;}
.x85_c00385{left:451.500000px;}
.x5f_c00385{left:452.850000px;}
.x2_c00385{left:454.050000px;}
.x33_c00385{left:455.250000px;}
.x93_c00385{left:457.350000px;}
.x74_c00385{left:458.550000px;}
.x4b_c00385{left:459.750000px;}
.x27_c00385{left:462.450000px;}
.x48_c00385{left:464.850000px;}
.x21_c00385{left:467.400000px;}
.x9b_c00385{left:468.750000px;}
.x15_c00385{left:470.400000px;}
.x34_c00385{left:471.450000px;}
.x55_c00385{left:472.950000px;}
.x43_c00385{left:475.650000px;}
.x16_c00385{left:477.900000px;}
.x90_c00385{left:480.300000px;}
.x8d_c00385{left:481.800000px;}
.x81_c00385{left:483.300000px;}
.x6a_c00385{left:485.100000px;}
.x59_c00385{left:486.300000px;}
.x10_c00385{left:490.500000px;}
.x9_c00385{left:493.050000px;}
.x44_c00385{left:496.500000px;}
.x9f_c00385{left:498.300000px;}
.x84_c00385{left:500.250000px;}
.x8e_c00385{left:501.600000px;}
.x5a_c00385{left:502.800000px;}
.x78_c00385{left:505.200000px;}
.x28_c00385{left:506.700000px;}
.x11_c00385{left:511.800000px;}
.x45_c00385{left:514.200000px;}
.xa_c00385{left:515.700000px;}
.x64_c00385{left:517.650000px;}
.x1d_c00385{left:521.400000px;}
.x4f_c00385{left:522.750000px;}
.x2f_c00385{left:523.950000px;}
.x35_c00385{left:525.150000px;}
.x97_c00385{left:526.200000px;}
.xa1_c00385{left:527.400000px;}
.x22_c00385{left:535.800000px;}
.x80_c00385{left:546.000000px;}
.xa6_c00385{left:560.100000px;}
.x127_c00385{left:561.600000px;}
.x101_c00385{left:574.800000px;}
.xbb_c00385{left:576.150000px;}
.xab_c00385{left:577.350000px;}
.x121_c00385{left:578.400000px;}
.x115_c00385{left:583.500000px;}
.xc4_c00385{left:594.750000px;}
.x103_c00385{left:596.850000px;}
.x125_c00385{left:598.650000px;}
.x11e_c00385{left:600.000000px;}
.xac_c00385{left:601.050000px;}
.x116_c00385{left:602.250000px;}
.x11a_c00385{left:606.600000px;}
.xbc_c00385{left:608.550000px;}
.xdb_c00385{left:612.300000px;}
.xc9_c00385{left:614.100000px;}
.xb3_c00385{left:617.250000px;}
.xe0_c00385{left:619.500000px;}
.xfc_c00385{left:623.100000px;}
.xc1_c00385{left:625.950000px;}
.xff_c00385{left:628.950000px;}
.xbd_c00385{left:631.200000px;}
.x11b_c00385{left:632.250000px;}
.xf8_c00385{left:633.600000px;}
.xd1_c00385{left:634.950000px;}
.xc5_c00385{left:636.150000px;}
.xd6_c00385{left:637.350000px;}
.x10d_c00385{left:642.600000px;}
.xad_c00385{left:643.950000px;}
.xa7_c00385{left:647.550000px;}
.xca_c00385{left:649.350000px;}
.xf5_c00385{left:653.400000px;}
.x106_c00385{left:655.050000px;}
.x10a_c00385{left:659.100000px;}
.xae_c00385{left:665.850000px;}
.x117_c00385{left:667.050000px;}
.xe4_c00385{left:669.900000px;}
.xbe_c00385{left:671.850000px;}
.x123_c00385{left:675.450000px;}
.x100_c00385{left:676.500000px;}
.xf9_c00385{left:677.850000px;}
.xb4_c00385{left:680.250000px;}
.xd2_c00385{left:682.050000px;}
.xcb_c00385{left:683.550000px;}
.xef_c00385{left:684.900000px;}
.xf6_c00385{left:686.100000px;}
.xfd_c00385{left:688.200000px;}
.xe9_c00385{left:689.250000px;}
.xf2_c00385{left:691.200000px;}
.x102_c00385{left:692.550000px;}
.xd7_c00385{left:696.450000px;}
.xfa_c00385{left:698.400000px;}
.x107_c00385{left:699.750000px;}
.xa8_c00385{left:702.300000px;}
.x124_c00385{left:703.500000px;}
.xc6_c00385{left:706.350000px;}
.x111_c00385{left:708.450000px;}
.xbf_c00385{left:709.950000px;}
.x10f_c00385{left:711.750000px;}
.xaf_c00385{left:713.400000px;}
.xe5_c00385{left:715.950000px;}
.x104_c00385{left:717.750000px;}
.x10b_c00385{left:718.800000px;}
.xd3_c00385{left:722.700000px;}
.x11c_c00385{left:724.800000px;}
.xdc_c00385{left:727.500000px;}
.xcc_c00385{left:728.850000px;}
.xb5_c00385{left:733.500000px;}
.x126_c00385{left:735.450000px;}
.xb0_c00385{left:737.550000px;}
.xdd_c00385{left:739.350000px;}
.x112_c00385{left:740.550000px;}
.xd8_c00385{left:744.000000px;}
.xf7_c00385{left:745.200000px;}
.x118_c00385{left:748.500000px;}
.xe1_c00385{left:749.850000px;}
.xf0_c00385{left:752.700000px;}
.x122_c00385{left:756.000000px;}
.xde_c00385{left:757.350000px;}
.xe6_c00385{left:761.250000px;}
.xe2_c00385{left:763.200000px;}
.x108_c00385{left:767.400000px;}
.xea_c00385{left:768.450000px;}
.xd9_c00385{left:769.950000px;}
.xcd_c00385{left:771.300000px;}
.xb6_c00385{left:773.400000px;}
.x11f_c00385{left:780.450000px;}
.xe7_c00385{left:781.800000px;}
.xb1_c00385{left:784.650000px;}
.xc2_c00385{left:786.150000px;}
.x10c_c00385{left:788.700000px;}
.x105_c00385{left:791.250000px;}
.xb7_c00385{left:793.500000px;}
.xce_c00385{left:797.550000px;}
.xd4_c00385{left:800.400000px;}
.x119_c00385{left:801.750000px;}
.xe3_c00385{left:804.300000px;}
.xa9_c00385{left:805.950000px;}
.x110_c00385{left:807.000000px;}
.xc7_c00385{left:810.000000px;}
.x10e_c00385{left:811.950000px;}
.xcf_c00385{left:815.250000px;}
.xc3_c00385{left:816.750000px;}
.xc0_c00385{left:819.450000px;}
.xf3_c00385{left:822.150000px;}
.xdf_c00385{left:825.000000px;}
.xfe_c00385{left:826.050000px;}
.xb8_c00385{left:827.700000px;}
.x114_c00385{left:830.400000px;}
.xfb_c00385{left:831.900000px;}
.xed_c00385{left:834.300000px;}
.xda_c00385{left:835.800000px;}
.xd0_c00385{left:840.150000px;}
.xe8_c00385{left:843.750000px;}
.x11d_c00385{left:844.950000px;}
.xeb_c00385{left:846.600000px;}
.xb2_c00385{left:848.700000px;}
.x120_c00385{left:851.400000px;}
.xc8_c00385{left:852.450000px;}
.x109_c00385{left:856.800000px;}
.xec_c00385{left:861.000000px;}
.xb9_c00385{left:863.400000px;}
.xee_c00385{left:866.700000px;}
.xf1_c00385{left:868.650000px;}
.x113_c00385{left:871.200000px;}
.xba_c00385{left:872.400000px;}
.xaa_c00385{left:879.750000px;}
.xf4_c00385{left:884.400000px;}
.xd5_c00385{left:887.100000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls2_c00385{letter-spacing:0.000000pt;}
.ls1_c00385{letter-spacing:40.000000pt;}
.ls0_c00385{letter-spacing:49.523810pt;}
.ws5_c00385{word-spacing:-76.190476pt;}
.ws6_c00385{word-spacing:-66.666667pt;}
.wsa_c00385{word-spacing:-9.803123pt;}
.wsb_c00385{word-spacing:-6.629423pt;}
.wsd_c00385{word-spacing:-3.636364pt;}
.ws0_c00385{word-spacing:-0.129895pt;}
.ws10_c00385{word-spacing:0.000000pt;}
.wsf_c00385{word-spacing:5.714286pt;}
.wse_c00385{word-spacing:13.631285pt;}
.wsc_c00385{word-spacing:14.066487pt;}
.ws7_c00385{word-spacing:14.920635pt;}
.ws1_c00385{word-spacing:19.682540pt;}
.ws3_c00385{word-spacing:22.857143pt;}
.ws2_c00385{word-spacing:31.851852pt;}
.ws4_c00385{word-spacing:35.555556pt;}
.ws8_c00385{word-spacing:53.085884pt;}
.ws9_c00385{word-spacing:244.666667pt;}
._2_c00385{margin-left:-49.523810pt;}
._3_c00385{margin-left:-40.000000pt;}
._0_c00385{width:49.523810pt;}
._1_c00385{width:52.698413pt;}
.fs6_c00385{font-size:16.000000pt;}
.fs5_c00385{font-size:42.666667pt;}
.fs4_c00385{font-size:48.000000pt;}
.fs3_c00385{font-size:53.333333pt;}
.fs2_c00385{font-size:58.666667pt;}
.fs0_c00385{font-size:64.000000pt;}
.fs1_c00385{font-size:69.333333pt;}
.fs7_c00385{font-size:80.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y64_c00385{bottom:176.400000pt;}
.y39_c00385{bottom:180.800000pt;}
.y38_c00385{bottom:194.266667pt;}
.y63_c00385{bottom:194.933333pt;}
.y37_c00385{bottom:199.733333pt;}
.y36_c00385{bottom:206.000000pt;}
.y62_c00385{bottom:214.800000pt;}
.y35_c00385{bottom:218.533333pt;}
.y61_c00385{bottom:230.133333pt;}
.y34_c00385{bottom:230.666667pt;}
.y33_c00385{bottom:242.800000pt;}
.y60_c00385{bottom:249.866667pt;}
.y32_c00385{bottom:255.333333pt;}
.y31_c00385{bottom:267.600000pt;}
.y30_c00385{bottom:279.733333pt;}
.y2f_c00385{bottom:291.866667pt;}
.y2e_c00385{bottom:304.400000pt;}
.y5f_c00385{bottom:309.466667pt;}
.y2d_c00385{bottom:316.533333pt;}
.y2c_c00385{bottom:328.266667pt;}
.y2b_c00385{bottom:341.066667pt;}
.y5e_c00385{bottom:342.400000pt;}
.y2a_c00385{bottom:353.200000pt;}
.y5d_c00385{bottom:358.133333pt;}
.y29_c00385{bottom:365.733333pt;}
.y5c_c00385{bottom:373.466667pt;}
.y28_c00385{bottom:379.466667pt;}
.y5b_c00385{bottom:393.333333pt;}
.y27_c00385{bottom:402.533333pt;}
.y5a_c00385{bottom:409.333333pt;}
.y26_c00385{bottom:416.266667pt;}
.y59_c00385{bottom:424.933333pt;}
.y25_c00385{bottom:432.000000pt;}
.y58_c00385{bottom:440.933333pt;}
.y24_c00385{bottom:447.733333pt;}
.y57_c00385{bottom:460.533333pt;}
.y23_c00385{bottom:467.066667pt;}
.y56_c00385{bottom:476.800000pt;}
.y22_c00385{bottom:482.800000pt;}
.y55_c00385{bottom:496.000000pt;}
.y21_c00385{bottom:498.533333pt;}
.y20_c00385{bottom:513.866667pt;}
.y54_c00385{bottom:515.600000pt;}
.y1f_c00385{bottom:531.200000pt;}
.y53_c00385{bottom:531.866667pt;}
.y1e_c00385{bottom:545.333333pt;}
.y52_c00385{bottom:546.933333pt;}
.y1d_c00385{bottom:560.800000pt;}
.y51_c00385{bottom:566.533333pt;}
.y1c_c00385{bottom:576.533333pt;}
.y50_c00385{bottom:582.800000pt;}
.y1b_c00385{bottom:592.266667pt;}
.y4f_c00385{bottom:598.133333pt;}
.y1a_c00385{bottom:611.466667pt;}
.y4e_c00385{bottom:614.400000pt;}
.y19_c00385{bottom:638.933333pt;}
.y4d_c00385{bottom:642.266667pt;}
.y18_c00385{bottom:654.666667pt;}
.y17_c00385{bottom:673.466667pt;}
.y4c_c00385{bottom:674.266667pt;}
.y16_c00385{bottom:690.133333pt;}
.y15_c00385{bottom:705.866667pt;}
.y4b_c00385{bottom:712.133333pt;}
.y14_c00385{bottom:721.200000pt;}
.y4a_c00385{bottom:727.866667pt;}
.y13_c00385{bottom:736.933333pt;}
.y49_c00385{bottom:743.600000pt;}
.y12_c00385{bottom:752.933333pt;}
.y48_c00385{bottom:759.333333pt;}
.y11_c00385{bottom:768.266667pt;}
.y47_c00385{bottom:775.333333pt;}
.y10_c00385{bottom:784.000000pt;}
.y46_c00385{bottom:791.066667pt;}
.yf_c00385{bottom:799.733333pt;}
.y45_c00385{bottom:810.933333pt;}
.ye_c00385{bottom:817.866667pt;}
.y44_c00385{bottom:830.666667pt;}
.yd_c00385{bottom:834.533333pt;}
.y43_c00385{bottom:846.666667pt;}
.yc_c00385{bottom:850.533333pt;}
.y42_c00385{bottom:862.666667pt;}
.yb_c00385{bottom:866.266667pt;}
.y41_c00385{bottom:878.400000pt;}
.ya_c00385{bottom:881.600000pt;}
.y40_c00385{bottom:894.400000pt;}
.y9_c00385{bottom:897.600000pt;}
.y3f_c00385{bottom:910.400000pt;}
.y8_c00385{bottom:913.333333pt;}
.y7_c00385{bottom:929.066667pt;}
.y3e_c00385{bottom:929.866667pt;}
.y6_c00385{bottom:945.066667pt;}
.y3d_c00385{bottom:945.866667pt;}
.y5_c00385{bottom:960.800000pt;}
.y3c_c00385{bottom:961.600000pt;}
.y4_c00385{bottom:976.533333pt;}
.y3b_c00385{bottom:977.600000pt;}
.y3_c00385{bottom:992.266667pt;}
.y3a_c00385{bottom:993.333333pt;}
.y1_c00385{bottom:1013.066667pt;}
.y2_c00385{bottom:1016.000000pt;}
.h8_c00385{height:16.000000pt;}
.h7_c00385{height:42.666667pt;}
.h6_c00385{height:48.000000pt;}
.h5_c00385{height:53.333333pt;}
.h4_c00385{height:58.666667pt;}
.h2_c00385{height:64.000000pt;}
.h3_c00385{height:69.333333pt;}
.h9_c00385{height:80.000000pt;}
.h1_c00385{height:1128.666667pt;}
.h0_c00385{height:1128.960043pt;}
.w0_c00385{width:853.760009pt;}
.w1_c00385{width:854.000000pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:182.133333pt;}
.x49_c00385{left:183.733333pt;}
.x94_c00385{left:195.466667pt;}
.x86_c00385{left:196.933333pt;}
.x3_c00385{left:198.400000pt;}
.x29_c00385{left:199.466667pt;}
.x6b_c00385{left:201.200000pt;}
.xa4_c00385{left:206.400000pt;}
.x98_c00385{left:209.200000pt;}
.x9a_c00385{left:210.266667pt;}
.x9c_c00385{left:211.200000pt;}
.xa2_c00385{left:212.800000pt;}
.x8b_c00385{left:213.733333pt;}
.x68_c00385{left:215.066667pt;}
.x50_c00385{left:216.933333pt;}
.x8c_c00385{left:218.266667pt;}
.x3c_c00385{left:219.733333pt;}
.x71_c00385{left:221.733333pt;}
.x4_c00385{left:223.333333pt;}
.x17_c00385{left:226.800000pt;}
.x99_c00385{left:228.400000pt;}
.x36_c00385{left:230.666667pt;}
.x5_c00385{left:232.000000pt;}
.x4c_c00385{left:233.866667pt;}
.x3d_c00385{left:236.000000pt;}
.x2a_c00385{left:236.933333pt;}
.x79_c00385{left:239.200000pt;}
.x1e_c00385{left:240.133333pt;}
.x6c_c00385{left:242.266667pt;}
.x65_c00385{left:243.200000pt;}
.x12_c00385{left:244.400000pt;}
.x46_c00385{left:245.600000pt;}
.x91_c00385{left:247.066667pt;}
.x18_c00385{left:250.533333pt;}
.x4a_c00385{left:252.266667pt;}
.x30_c00385{left:255.866667pt;}
.x6f_c00385{left:257.200000pt;}
.x56_c00385{left:258.133333pt;}
.xa3_c00385{left:259.200000pt;}
.x6_c00385{left:260.133333pt;}
.x13_c00385{left:261.333333pt;}
.x6d_c00385{left:262.800000pt;}
.x3e_c00385{left:264.133333pt;}
.x37_c00385{left:265.866667pt;}
.x75_c00385{left:268.533333pt;}
.x51_c00385{left:270.400000pt;}
.x47_c00385{left:271.466667pt;}
.x23_c00385{left:272.666667pt;}
.x38_c00385{left:273.600000pt;}
.x7a_c00385{left:276.000000pt;}
.x1f_c00385{left:276.933333pt;}
.x52_c00385{left:278.133333pt;}
.x66_c00385{left:280.000000pt;}
.x3f_c00385{left:281.066667pt;}
.x89_c00385{left:284.000000pt;}
.x5b_c00385{left:285.733333pt;}
.x70_c00385{left:287.333333pt;}
.xb_c00385{left:289.200000pt;}
.x4d_c00385{left:291.200000pt;}
.x82_c00385{left:292.266667pt;}
.x24_c00385{left:293.200000pt;}
.x76_c00385{left:295.733333pt;}
.x19_c00385{left:296.933333pt;}
.x7d_c00385{left:299.466667pt;}
.x40_c00385{left:301.200000pt;}
.x5c_c00385{left:302.666667pt;}
.x60_c00385{left:304.000000pt;}
.x14_c00385{left:305.866667pt;}
.xc_c00385{left:306.800000pt;}
.x77_c00385{left:308.266667pt;}
.x2b_c00385{left:309.600000pt;}
.x53_c00385{left:311.200000pt;}
.x61_c00385{left:312.933333pt;}
.x1a_c00385{left:313.866667pt;}
.x39_c00385{left:315.466667pt;}
.x9d_c00385{left:318.400000pt;}
.x7e_c00385{left:320.933333pt;}
.x6e_c00385{left:324.266667pt;}
.x31_c00385{left:326.000000pt;}
.x2c_c00385{left:326.933333pt;}
.x7b_c00385{left:327.866667pt;}
.x57_c00385{left:329.333333pt;}
.x1b_c00385{left:331.200000pt;}
.x41_c00385{left:333.200000pt;}
.x7c_c00385{left:334.800000pt;}
.xa5_c00385{left:336.533333pt;}
.x62_c00385{left:337.600000pt;}
.xd_c00385{left:339.066667pt;}
.x72_c00385{left:340.666667pt;}
.x69_c00385{left:344.800000pt;}
.x87_c00385{left:346.666667pt;}
.x8a_c00385{left:347.733333pt;}
.xe_c00385{left:348.666667pt;}
.x73_c00385{left:350.000000pt;}
.x4e_c00385{left:351.733333pt;}
.x58_c00385{left:353.333333pt;}
.x54_c00385{left:354.400000pt;}
.x5d_c00385{left:357.333333pt;}
.x8f_c00385{left:358.400000pt;}
.x96_c00385{left:360.266667pt;}
.x3a_c00385{left:362.800000pt;}
.x83_c00385{left:365.866667pt;}
.x95_c00385{left:367.466667pt;}
.x25_c00385{left:368.400000pt;}
.x3b_c00385{left:369.466667pt;}
.x2d_c00385{left:371.066667pt;}
.x9e_c00385{left:372.133333pt;}
.x32_c00385{left:373.333333pt;}
.x42_c00385{left:375.733333pt;}
.x7_c00385{left:378.533333pt;}
.xa0_c00385{left:379.733333pt;}
.x20_c00385{left:380.933333pt;}
.x88_c00385{left:382.133333pt;}
.x63_c00385{left:383.066667pt;}
.x5e_c00385{left:385.866667pt;}
.x2e_c00385{left:388.000000pt;}
.x67_c00385{left:389.066667pt;}
.x26_c00385{left:390.533333pt;}
.x92_c00385{left:392.133333pt;}
.x1c_c00385{left:393.333333pt;}
.x7f_c00385{left:394.800000pt;}
.xf_c00385{left:396.000000pt;}
.x8_c00385{left:399.600000pt;}
.x85_c00385{left:401.333333pt;}
.x5f_c00385{left:402.533333pt;}
.x2_c00385{left:403.600000pt;}
.x33_c00385{left:404.666667pt;}
.x93_c00385{left:406.533333pt;}
.x74_c00385{left:407.600000pt;}
.x4b_c00385{left:408.666667pt;}
.x27_c00385{left:411.066667pt;}
.x48_c00385{left:413.200000pt;}
.x21_c00385{left:415.466667pt;}
.x9b_c00385{left:416.666667pt;}
.x15_c00385{left:418.133333pt;}
.x34_c00385{left:419.066667pt;}
.x55_c00385{left:420.400000pt;}
.x43_c00385{left:422.800000pt;}
.x16_c00385{left:424.800000pt;}
.x90_c00385{left:426.933333pt;}
.x8d_c00385{left:428.266667pt;}
.x81_c00385{left:429.600000pt;}
.x6a_c00385{left:431.200000pt;}
.x59_c00385{left:432.266667pt;}
.x10_c00385{left:436.000000pt;}
.x9_c00385{left:438.266667pt;}
.x44_c00385{left:441.333333pt;}
.x9f_c00385{left:442.933333pt;}
.x84_c00385{left:444.666667pt;}
.x8e_c00385{left:445.866667pt;}
.x5a_c00385{left:446.933333pt;}
.x78_c00385{left:449.066667pt;}
.x28_c00385{left:450.400000pt;}
.x11_c00385{left:454.933333pt;}
.x45_c00385{left:457.066667pt;}
.xa_c00385{left:458.400000pt;}
.x64_c00385{left:460.133333pt;}
.x1d_c00385{left:463.466667pt;}
.x4f_c00385{left:464.666667pt;}
.x2f_c00385{left:465.733333pt;}
.x35_c00385{left:466.800000pt;}
.x97_c00385{left:467.733333pt;}
.xa1_c00385{left:468.800000pt;}
.x22_c00385{left:476.266667pt;}
.x80_c00385{left:485.333333pt;}
.xa6_c00385{left:497.866667pt;}
.x127_c00385{left:499.200000pt;}
.x101_c00385{left:510.933333pt;}
.xbb_c00385{left:512.133333pt;}
.xab_c00385{left:513.200000pt;}
.x121_c00385{left:514.133333pt;}
.x115_c00385{left:518.666667pt;}
.xc4_c00385{left:528.666667pt;}
.x103_c00385{left:530.533333pt;}
.x125_c00385{left:532.133333pt;}
.x11e_c00385{left:533.333333pt;}
.xac_c00385{left:534.266667pt;}
.x116_c00385{left:535.333333pt;}
.x11a_c00385{left:539.200000pt;}
.xbc_c00385{left:540.933333pt;}
.xdb_c00385{left:544.266667pt;}
.xc9_c00385{left:545.866667pt;}
.xb3_c00385{left:548.666667pt;}
.xe0_c00385{left:550.666667pt;}
.xfc_c00385{left:553.866667pt;}
.xc1_c00385{left:556.400000pt;}
.xff_c00385{left:559.066667pt;}
.xbd_c00385{left:561.066667pt;}
.x11b_c00385{left:562.000000pt;}
.xf8_c00385{left:563.200000pt;}
.xd1_c00385{left:564.400000pt;}
.xc5_c00385{left:565.466667pt;}
.xd6_c00385{left:566.533333pt;}
.x10d_c00385{left:571.200000pt;}
.xad_c00385{left:572.400000pt;}
.xa7_c00385{left:575.600000pt;}
.xca_c00385{left:577.200000pt;}
.xf5_c00385{left:580.800000pt;}
.x106_c00385{left:582.266667pt;}
.x10a_c00385{left:585.866667pt;}
.xae_c00385{left:591.866667pt;}
.x117_c00385{left:592.933333pt;}
.xe4_c00385{left:595.466667pt;}
.xbe_c00385{left:597.200000pt;}
.x123_c00385{left:600.400000pt;}
.x100_c00385{left:601.333333pt;}
.xf9_c00385{left:602.533333pt;}
.xb4_c00385{left:604.666667pt;}
.xd2_c00385{left:606.266667pt;}
.xcb_c00385{left:607.600000pt;}
.xef_c00385{left:608.800000pt;}
.xf6_c00385{left:609.866667pt;}
.xfd_c00385{left:611.733333pt;}
.xe9_c00385{left:612.666667pt;}
.xf2_c00385{left:614.400000pt;}
.x102_c00385{left:615.600000pt;}
.xd7_c00385{left:619.066667pt;}
.xfa_c00385{left:620.800000pt;}
.x107_c00385{left:622.000000pt;}
.xa8_c00385{left:624.266667pt;}
.x124_c00385{left:625.333333pt;}
.xc6_c00385{left:627.866667pt;}
.x111_c00385{left:629.733333pt;}
.xbf_c00385{left:631.066667pt;}
.x10f_c00385{left:632.666667pt;}
.xaf_c00385{left:634.133333pt;}
.xe5_c00385{left:636.400000pt;}
.x104_c00385{left:638.000000pt;}
.x10b_c00385{left:638.933333pt;}
.xd3_c00385{left:642.400000pt;}
.x11c_c00385{left:644.266667pt;}
.xdc_c00385{left:646.666667pt;}
.xcc_c00385{left:647.866667pt;}
.xb5_c00385{left:652.000000pt;}
.x126_c00385{left:653.733333pt;}
.xb0_c00385{left:655.600000pt;}
.xdd_c00385{left:657.200000pt;}
.x112_c00385{left:658.266667pt;}
.xd8_c00385{left:661.333333pt;}
.xf7_c00385{left:662.400000pt;}
.x118_c00385{left:665.333333pt;}
.xe1_c00385{left:666.533333pt;}
.xf0_c00385{left:669.066667pt;}
.x122_c00385{left:672.000000pt;}
.xde_c00385{left:673.200000pt;}
.xe6_c00385{left:676.666667pt;}
.xe2_c00385{left:678.400000pt;}
.x108_c00385{left:682.133333pt;}
.xea_c00385{left:683.066667pt;}
.xd9_c00385{left:684.400000pt;}
.xcd_c00385{left:685.600000pt;}
.xb6_c00385{left:687.466667pt;}
.x11f_c00385{left:693.733333pt;}
.xe7_c00385{left:694.933333pt;}
.xb1_c00385{left:697.466667pt;}
.xc2_c00385{left:698.800000pt;}
.x10c_c00385{left:701.066667pt;}
.x105_c00385{left:703.333333pt;}
.xb7_c00385{left:705.333333pt;}
.xce_c00385{left:708.933333pt;}
.xd4_c00385{left:711.466667pt;}
.x119_c00385{left:712.666667pt;}
.xe3_c00385{left:714.933333pt;}
.xa9_c00385{left:716.400000pt;}
.x110_c00385{left:717.333333pt;}
.xc7_c00385{left:720.000000pt;}
.x10e_c00385{left:721.733333pt;}
.xcf_c00385{left:724.666667pt;}
.xc3_c00385{left:726.000000pt;}
.xc0_c00385{left:728.400000pt;}
.xf3_c00385{left:730.800000pt;}
.xdf_c00385{left:733.333333pt;}
.xfe_c00385{left:734.266667pt;}
.xb8_c00385{left:735.733333pt;}
.x114_c00385{left:738.133333pt;}
.xfb_c00385{left:739.466667pt;}
.xed_c00385{left:741.600000pt;}
.xda_c00385{left:742.933333pt;}
.xd0_c00385{left:746.800000pt;}
.xe8_c00385{left:750.000000pt;}
.x11d_c00385{left:751.066667pt;}
.xeb_c00385{left:752.533333pt;}
.xb2_c00385{left:754.400000pt;}
.x120_c00385{left:756.800000pt;}
.xc8_c00385{left:757.733333pt;}
.x109_c00385{left:761.600000pt;}
.xec_c00385{left:765.333333pt;}
.xb9_c00385{left:767.466667pt;}
.xee_c00385{left:770.400000pt;}
.xf1_c00385{left:772.133333pt;}
.x113_c00385{left:774.400000pt;}
.xba_c00385{left:775.466667pt;}
.xaa_c00385{left:782.000000pt;}
.xf4_c00385{left:786.133333pt;}
.xd5_c00385{left:788.533333pt;}
}





/* 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_c00386 {
    display:none;
  }
  .loading-indicator_c00386.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00386 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_c00386 { 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_c00386" -> "#page-container .classname_c00386")
 */
.pf_c00386 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00386 { /* 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_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00386 { /* 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_c00386 { /* 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_c00386 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00386 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00386 {overflow:visible;}
  }
}
.c_c00386 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00386 { /* 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_c00386:after { /* webkit #35443 */
  content: '';
}
.t_c00386:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00386 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 */
}
.__c00386 { /* 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_c00386 { /* info for Javascript */
  display:none;
}
.l_c00386 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00386 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00386 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00386: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_c00386 {
    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_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00386.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_c00386 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00386;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.000000;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;}
.m7f_c00386{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00386{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00386{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00386{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m113_c00386{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m18_c00386{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mad_c00386{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m25_c00386{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00386{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m106_c00386{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m73_c00386{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5_c00386{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m84_c00386{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m57_c00386{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m38_c00386{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.meb_c00386{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00386{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00386{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.mba_c00386{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00386{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00386{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00386{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00386{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00386{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m74_c00386{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m110_c00386{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mec_c00386{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00386{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00386{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00386{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.me_c00386{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00386{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00386{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m23_c00386{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00386{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00386{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00386{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m100_c00386{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00386{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m62_c00386{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m64_c00386{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m34_c00386{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc_c00386{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00386{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00386{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00386{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00386{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m91_c00386{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md4_c00386{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m42_c00386{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00386{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m45_c00386{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00386{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m20_c00386{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m44_c00386{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m55_c00386{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.maa_c00386{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m95_c00386{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m65_c00386{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m75_c00386{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m118_c00386{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m49_c00386{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mda_c00386{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00386{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00386{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00386{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m31_c00386{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11_c00386{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00386{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m41_c00386{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00386{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md6_c00386{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m82_c00386{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m37_c00386{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m35_c00386{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m79_c00386{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m21_c00386{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m32_c00386{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m72_c00386{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00386{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.me6_c00386{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00386{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me5_c00386{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m115_c00386{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00386{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m24_c00386{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00386{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m111_c00386{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m61_c00386{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m85_c00386{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m67_c00386{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m92_c00386{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mae_c00386{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00386{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m14_c00386{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m88_c00386{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m83_c00386{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m33_c00386{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00386{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.md9_c00386{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md8_c00386{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00386{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mf_c00386{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00386{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00386{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m69_c00386{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00386{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m28_c00386{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00386{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m47_c00386{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mff_c00386{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.md7_c00386{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00386{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m43_c00386{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00386{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00386{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m87_c00386{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m30_c00386{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m36_c00386{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m51_c00386{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m90_c00386{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m56_c00386{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me3_c00386{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00386{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00386{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m15_c00386{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m63_c00386{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m48_c00386{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m103_c00386{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb_c00386{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m29_c00386{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m13_c00386{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00386{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00386{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m8_c00386{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00386{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m26_c00386{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m27_c00386{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00386{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m39_c00386{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m22_c00386{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m105_c00386{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00386{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.me4_c00386{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00386{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00386{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m7_c00386{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.md_c00386{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00386{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6_c00386{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m60_c00386{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00386{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00386{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00386{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m17_c00386{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m107_c00386{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00386{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m40_c00386{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.maf_c00386{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00386{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00386{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00386{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m50_c00386{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m53_c00386{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m89_c00386{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00386{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00386{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00386{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00386{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me7_c00386{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00386{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00386{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m68_c00386{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00386{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m102_c00386{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.md1_c00386{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m99_c00386{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m98_c00386{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00386{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00386{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00386{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m112_c00386{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m119_c00386{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00386{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00386{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00386{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m78_c00386{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00386{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00386{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m109_c00386{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m86_c00386{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m93_c00386{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00386{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.me0_c00386{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m54_c00386{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00386{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m52_c00386{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00386{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00386{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m58_c00386{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00386{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00386{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00386{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m77_c00386{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma_c00386{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9_c00386{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00386{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00386{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m97_c00386{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00386{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00386{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00386{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m59_c00386{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m66_c00386{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00386{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mea_c00386{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00386{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00386{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1_c00386{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10_c00386{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me1_c00386{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00386{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m96_c00386{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m116_c00386{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md3_c00386{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00386{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m94_c00386{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00386{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m101_c00386{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00386{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00386{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m70_c00386{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00386{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00386{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00386{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m114_c00386{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m71_c00386{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00386{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00386{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00386{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00386{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me2_c00386{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.md0_c00386{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mac_c00386{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m80_c00386{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.me9_c00386{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00386{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m117_c00386{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00386{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00386{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00386{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00386{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mde_c00386{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00386{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m12_c00386{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00386{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00386{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m81_c00386{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mab_c00386{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.md5_c00386{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00386{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m104_c00386{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mce_c00386{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00386{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m76_c00386{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00386{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.mca_c00386{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00386{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00386{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00386{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m46_c00386{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md2_c00386{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.me8_c00386{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00386{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m3_c00386{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m4_c00386{transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366250,0.000000,0.000000,0.250000,0,0);}
.mee_c00386{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mef_c00386{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.med_c00386{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00386{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m108_c00386{transform:matrix(0.463500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463500,0.000000,0.000000,0.250000,0,0);}
.m16_c00386{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00386{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00386{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00386{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls1_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:50.211796px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{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__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00386{word-spacing:-77.211796px;}
.ws3_c00386{word-spacing:-7.500000px;}
.ws2_c00386{word-spacing:-3.750000px;}
.ws8_c00386{word-spacing:-2.155844px;}
.ws9_c00386{word-spacing:0.000000px;}
.ws4_c00386{word-spacing:1.250000px;}
.ws5_c00386{word-spacing:5.161290px;}
.ws6_c00386{word-spacing:28.500000px;}
.ws1_c00386{word-spacing:71.414201px;}
.ws0_c00386{word-spacing:196.542955px;}
._0_c00386{margin-left:-50.211796px;}
.fc0_c00386{color:transparent;}
.fs3_c00386{font-size:24.000000px;}
.fs4_c00386{font-size:30.000000px;}
.fs9_c00386{font-size:36.000000px;}
.fs6_c00386{font-size:42.000000px;}
.fs8_c00386{font-size:48.000000px;}
.fs7_c00386{font-size:54.000000px;}
.fs1_c00386{font-size:60.000000px;}
.fs2_c00386{font-size:66.000000px;}
.fs5_c00386{font-size:72.000000px;}
.fs0_c00386{font-size:78.000000px;}
.y0_c00386{bottom:0.000000px;}
.y32_c00386{bottom:197.700000px;}
.y69_c00386{bottom:200.850000px;}
.y31_c00386{bottom:215.700000px;}
.y68_c00386{bottom:216.000000px;}
.y67_c00386{bottom:233.250000px;}
.y30_c00386{bottom:233.700000px;}
.y66_c00386{bottom:250.950000px;}
.y2f_c00386{bottom:259.500000px;}
.y65_c00386{bottom:268.800000px;}
.y2e_c00386{bottom:281.850000px;}
.y64_c00386{bottom:287.100000px;}
.y2d_c00386{bottom:299.850000px;}
.y63_c00386{bottom:304.800000px;}
.y2c_c00386{bottom:320.700000px;}
.y62_c00386{bottom:322.500000px;}
.y2b_c00386{bottom:339.450000px;}
.y61_c00386{bottom:340.200000px;}
.y60_c00386{bottom:357.900000px;}
.y2a_c00386{bottom:361.800000px;}
.y5f_c00386{bottom:379.800000px;}
.y29_c00386{bottom:384.150000px;}
.y5e_c00386{bottom:392.400000px;}
.y5d_c00386{bottom:406.800000px;}
.y28_c00386{bottom:409.950000px;}
.y5b_c00386{bottom:420.750000px;}
.y27_c00386{bottom:427.650000px;}
.y5a_c00386{bottom:434.850000px;}
.y5c_c00386{bottom:435.900000px;}
.y26_c00386{bottom:445.650000px;}
.y59_c00386{bottom:450.300000px;}
.y58_c00386{bottom:464.700000px;}
.y25_c00386{bottom:466.200000px;}
.y57_c00386{bottom:478.050000px;}
.y24_c00386{bottom:485.250000px;}
.y56_c00386{bottom:492.750000px;}
.y23_c00386{bottom:502.950000px;}
.y55_c00386{bottom:506.850000px;}
.y54_c00386{bottom:522.000000px;}
.y22_c00386{bottom:524.550000px;}
.y53_c00386{bottom:536.100000px;}
.y21_c00386{bottom:546.150000px;}
.y52_c00386{bottom:550.800000px;}
.y51_c00386{bottom:565.500000px;}
.y20_c00386{bottom:568.650000px;}
.y50_c00386{bottom:578.850000px;}
.y1f_c00386{bottom:587.400000px;}
.y4f_c00386{bottom:594.000000px;}
.y1e_c00386{bottom:604.350000px;}
.y4e_c00386{bottom:608.100000px;}
.y4d_c00386{bottom:621.000000px;}
.y1d_c00386{bottom:622.350000px;}
.y1c_c00386{bottom:640.050000px;}
.y4c_c00386{bottom:644.400000px;}
.y1b_c00386{bottom:657.750000px;}
.y4b_c00386{bottom:662.400000px;}
.y1a_c00386{bottom:675.000000px;}
.y19_c00386{bottom:675.750000px;}
.y4a_c00386{bottom:679.650000px;}
.y49_c00386{bottom:697.650000px;}
.y18_c00386{bottom:701.700000px;}
.y48_c00386{bottom:715.350000px;}
.y17_c00386{bottom:723.300000px;}
.y47_c00386{bottom:733.050000px;}
.y16_c00386{bottom:741.600000px;}
.y46_c00386{bottom:750.300000px;}
.y15_c00386{bottom:763.200000px;}
.y45_c00386{bottom:772.200000px;}
.y14_c00386{bottom:781.950000px;}
.y44_c00386{bottom:789.750000px;}
.y6a_c00386{bottom:790.500000px;}
.y13_c00386{bottom:802.800000px;}
.y43_c00386{bottom:808.050000px;}
.y12_c00386{bottom:821.550000px;}
.y42_c00386{bottom:825.750000px;}
.y11_c00386{bottom:842.850000px;}
.y41_c00386{bottom:843.450000px;}
.y10_c00386{bottom:861.150000px;}
.y40_c00386{bottom:863.550000px;}
.y3f_c00386{bottom:878.700000px;}
.yf_c00386{bottom:879.150000px;}
.y3e_c00386{bottom:896.400000px;}
.ye_c00386{bottom:900.000000px;}
.y3d_c00386{bottom:915.900000px;}
.yd_c00386{bottom:917.700000px;}
.y3c_c00386{bottom:935.700000px;}
.yc_c00386{bottom:950.100000px;}
.yb_c00386{bottom:955.500000px;}
.y3b_c00386{bottom:957.600000px;}
.y9_c00386{bottom:969.600000px;}
.ya_c00386{bottom:973.800000px;}
.y3a_c00386{bottom:975.600000px;}
.y8_c00386{bottom:978.900000px;}
.y39_c00386{bottom:997.800000px;}
.y7_c00386{bottom:1005.300000px;}
.y38_c00386{bottom:1015.500000px;}
.y6_c00386{bottom:1027.200000px;}
.y37_c00386{bottom:1033.200000px;}
.y5_c00386{bottom:1050.900000px;}
.y36_c00386{bottom:1055.550000px;}
.y4_c00386{bottom:1072.500000px;}
.y35_c00386{bottom:1077.450000px;}
.y34_c00386{bottom:1099.500000px;}
.y3_c00386{bottom:1111.650000px;}
.y33_c00386{bottom:1117.800000px;}
.y1_c00386{bottom:1143.750000px;}
.y2_c00386{bottom:1144.050000px;}
.h5_c00386{height:24.000000px;}
.h6_c00386{height:30.000000px;}
.hb_c00386{height:36.000000px;}
.h8_c00386{height:42.000000px;}
.ha_c00386{height:48.000000px;}
.h9_c00386{height:54.000000px;}
.h3_c00386{height:60.000000px;}
.h4_c00386{height:66.000000px;}
.h7_c00386{height:72.000000px;}
.h2_c00386{height:78.000000px;}
.h1_c00386{height:1266.000000px;}
.h0_c00386{height:1266.120025px;}
.w0_c00386{width:960.480010px;}
.w1_c00386{width:960.750000px;}
.x0_c00386{left:0.000000px;}
.x12_c00386{left:63.300000px;}
.x5_c00386{left:64.500000px;}
.x41_c00386{left:66.300000px;}
.xc_c00386{left:81.900000px;}
.x2d_c00386{left:83.100000px;}
.x39_c00386{left:84.150000px;}
.x74_c00386{left:85.500000px;}
.x5d_c00386{left:93.300000px;}
.xe_c00386{left:100.650000px;}
.x34_c00386{left:102.300000px;}
.x78_c00386{left:103.350000px;}
.x33_c00386{left:105.450000px;}
.x70_c00386{left:108.000000px;}
.x13_c00386{left:110.100000px;}
.x1a_c00386{left:115.500000px;}
.x49_c00386{left:117.750000px;}
.x26_c00386{left:119.850000px;}
.x55_c00386{left:121.050000px;}
.xd_c00386{left:128.400000px;}
.x56_c00386{left:129.750000px;}
.x4e_c00386{left:132.150000px;}
.x35_c00386{left:134.700000px;}
.x69_c00386{left:136.050000px;}
.x27_c00386{left:137.100000px;}
.x61_c00386{left:139.050000px;}
.x81_c00386{left:141.000000px;}
.x40_c00386{left:142.650000px;}
.x1b_c00386{left:144.600000px;}
.x64_c00386{left:146.250000px;}
.x5e_c00386{left:148.350000px;}
.x3a_c00386{left:150.750000px;}
.x82_c00386{left:151.800000px;}
.x6_c00386{left:153.450000px;}
.x75_c00386{left:155.400000px;}
.x1f_c00386{left:157.200000px;}
.x7c_c00386{left:158.700000px;}
.x4a_c00386{left:162.000000px;}
.x7_c00386{left:163.950000px;}
.x63_c00386{left:165.150000px;}
.x76_c00386{left:166.650000px;}
.x28_c00386{left:167.700000px;}
.x45_c00386{left:169.200000px;}
.x6a_c00386{left:171.000000px;}
.x3_c00386{left:172.500000px;}
.x11_c00386{left:174.150000px;}
.x14_c00386{left:175.950000px;}
.x2e_c00386{left:177.750000px;}
.x1c_c00386{left:178.800000px;}
.xf_c00386{left:181.650000px;}
.x36_c00386{left:184.050000px;}
.x20_c00386{left:188.100000px;}
.x10_c00386{left:192.150000px;}
.x65_c00386{left:194.100000px;}
.x7d_c00386{left:197.700000px;}
.x71_c00386{left:199.500000px;}
.x5a_c00386{left:202.350000px;}
.x5f_c00386{left:204.150000px;}
.x57_c00386{left:205.650000px;}
.x3b_c00386{left:206.700000px;}
.x1e_c00386{left:208.650000px;}
.x4f_c00386{left:210.600000px;}
.x58_c00386{left:214.350000px;}
.x2f_c00386{left:217.350000px;}
.x4_c00386{left:220.350000px;}
.x72_c00386{left:222.600000px;}
.x80_c00386{left:228.150000px;}
.x8_c00386{left:232.350000px;}
.x21_c00386{left:233.400000px;}
.x50_c00386{left:237.300000px;}
.x30_c00386{left:238.650000px;}
.x1d_c00386{left:239.700000px;}
.x79_c00386{left:241.950000px;}
.x3c_c00386{left:243.000000px;}
.x77_c00386{left:245.250000px;}
.x15_c00386{left:246.900000px;}
.x83_c00386{left:247.950000px;}
.x46_c00386{left:251.250000px;}
.x6d_c00386{left:252.450000px;}
.x31_c00386{left:254.100000px;}
.x44_c00386{left:257.700000px;}
.x59_c00386{left:259.350000px;}
.x22_c00386{left:260.700000px;}
.x29_c00386{left:266.700000px;}
.x3d_c00386{left:267.900000px;}
.x51_c00386{left:270.000000px;}
.x9_c00386{left:271.650000px;}
.x66_c00386{left:273.600000px;}
.x4b_c00386{left:275.100000px;}
.x7a_c00386{left:277.050000px;}
.x60_c00386{left:279.450000px;}
.x23_c00386{left:281.250000px;}
.x62_c00386{left:284.100000px;}
.x2a_c00386{left:286.800000px;}
.x7e_c00386{left:289.200000px;}
.x42_c00386{left:293.700000px;}
.x52_c00386{left:299.100000px;}
.x4c_c00386{left:301.050000px;}
.x6b_c00386{left:303.450000px;}
.x16_c00386{left:305.250000px;}
.x1_c00386{left:308.850000px;}
.x6e_c00386{left:313.200000px;}
.x7b_c00386{left:315.150000px;}
.x4d_c00386{left:316.500000px;}
.x47_c00386{left:320.400000px;}
.xa_c00386{left:323.850000px;}
.x3e_c00386{left:329.400000px;}
.x2b_c00386{left:330.750000px;}
.x7f_c00386{left:336.750000px;}
.x24_c00386{left:339.600000px;}
.x37_c00386{left:342.750000px;}
.x67_c00386{left:345.300000px;}
.x25_c00386{left:347.100000px;}
.x5b_c00386{left:349.650000px;}
.x38_c00386{left:352.050000px;}
.x53_c00386{left:356.700000px;}
.x2c_c00386{left:358.050000px;}
.x43_c00386{left:360.300000px;}
.x17_c00386{left:363.600000px;}
.x6f_c00386{left:364.650000px;}
.x73_c00386{left:365.850000px;}
.xb_c00386{left:368.100000px;}
.x18_c00386{left:370.800000px;}
.x32_c00386{left:371.850000px;}
.x54_c00386{left:374.400000px;}
.x84_c00386{left:375.450000px;}
.x68_c00386{left:383.100000px;}
.x3f_c00386{left:384.900000px;}
.x48_c00386{left:385.950000px;}
.x5c_c00386{left:387.750000px;}
.x6c_c00386{left:392.100000px;}
.x19_c00386{left:396.000000px;}
.x97_c00386{left:419.700000px;}
.xaf_c00386{left:421.200000px;}
.xf1_c00386{left:422.250000px;}
.x107_c00386{left:424.050000px;}
.x11a_c00386{left:429.900000px;}
.x8f_c00386{left:436.200000px;}
.x85_c00386{left:437.400000px;}
.xc5_c00386{left:438.900000px;}
.xae_c00386{left:439.950000px;}
.x10c_c00386{left:441.750000px;}
.xd2_c00386{left:446.100000px;}
.xf6_c00386{left:451.500000px;}
.x86_c00386{left:454.350000px;}
.x90_c00386{left:455.700000px;}
.xb3_c00386{left:456.900000px;}
.xa5_c00386{left:458.850000px;}
.xb0_c00386{left:462.300000px;}
.xba_c00386{left:464.250000px;}
.xd3_c00386{left:465.600000px;}
.x102_c00386{left:467.250000px;}
.xd8_c00386{left:469.050000px;}
.xf8_c00386{left:472.650000px;}
.xce_c00386{left:473.700000px;}
.xbf_c00386{left:477.000000px;}
.x98_c00386{left:479.400000px;}
.x120_c00386{left:481.650000px;}
.xf2_c00386{left:483.450000px;}
.x87_c00386{left:484.650000px;}
.xa9_c00386{left:486.300000px;}
.x92_c00386{left:488.100000px;}
.xe0_c00386{left:490.050000px;}
.xe8_c00386{left:492.750000px;}
.xcb_c00386{left:494.700000px;}
.x91_c00386{left:497.850000px;}
.xf9_c00386{left:499.650000px;}
.xc8_c00386{left:501.900000px;}
.xa6_c00386{left:503.550000px;}
.xe5_c00386{left:506.550000px;}
.xc6_c00386{left:508.350000px;}
.x108_c00386{left:511.500000px;}
.xaa_c00386{left:514.800000px;}
.x88_c00386{left:517.050000px;}
.xc0_c00386{left:518.100000px;}
.xb4_c00386{left:519.150000px;}
.x9e_c00386{left:522.000000px;}
.x101_c00386{left:523.200000px;}
.xdd_c00386{left:524.550000px;}
.xff_c00386{left:525.750000px;}
.xcf_c00386{left:529.200000px;}
.x112_c00386{left:530.850000px;}
.x9f_c00386{left:532.500000px;}
.xd9_c00386{left:534.600000px;}
.xa7_c00386{left:537.000000px;}
.x121_c00386{left:538.050000px;}
.x11d_c00386{left:539.100000px;}
.xb5_c00386{left:542.250000px;}
.x99_c00386{left:545.700000px;}
.xe9_c00386{left:546.750000px;}
.xfd_c00386{left:549.000000px;}
.xc1_c00386{left:550.500000px;}
.x89_c00386{left:552.300000px;}
.x93_c00386{left:553.950000px;}
.xec_c00386{left:556.950000px;}
.xc2_c00386{left:559.500000px;}
.x11f_c00386{left:561.000000px;}
.xa8_c00386{left:565.500000px;}
.xb6_c00386{left:567.150000px;}
.xbb_c00386{left:568.350000px;}
.xd4_c00386{left:570.450000px;}
.xab_c00386{left:573.900000px;}
.xc7_c00386{left:575.550000px;}
.x8a_c00386{left:577.200000px;}
.x105_c00386{left:581.700000px;}
.xc3_c00386{left:583.200000px;}
.x11c_c00386{left:585.300000px;}
.xda_c00386{left:586.800000px;}
.x94_c00386{left:588.150000px;}
.x10d_c00386{left:590.250000px;}
.xf3_c00386{left:591.900000px;}
.xed_c00386{left:592.950000px;}
.x113_c00386{left:595.200000px;}
.xb7_c00386{left:596.700000px;}
.x115_c00386{left:598.650000px;}
.x104_c00386{left:600.750000px;}
.xb1_c00386{left:602.250000px;}
.xdb_c00386{left:605.100000px;}
.x100_c00386{left:606.750000px;}
.xa0_c00386{left:607.800000px;}
.xe1_c00386{left:610.200000px;}
.x109_c00386{left:611.550000px;}
.xfe_c00386{left:612.750000px;}
.xd5_c00386{left:613.950000px;}
.x95_c00386{left:616.200000px;}
.x9a_c00386{left:617.400000px;}
.xa1_c00386{left:620.100000px;}
.xe2_c00386{left:621.300000px;}
.x8b_c00386{left:623.250000px;}
.xea_c00386{left:625.350000px;}
.x9b_c00386{left:626.400000px;}
.xbc_c00386{left:627.750000px;}
.xee_c00386{left:628.950000px;}
.x122_c00386{left:630.450000px;}
.xe6_c00386{left:632.100000px;}
.x11b_c00386{left:633.450000px;}
.xde_c00386{left:636.450000px;}
.xb8_c00386{left:638.550000px;}
.xcc_c00386{left:643.350000px;}
.x10f_c00386{left:647.250000px;}
.xd0_c00386{left:648.450000px;}
.xc4_c00386{left:650.550000px;}
.x8c_c00386{left:651.750000px;}
.x114_c00386{left:652.800000px;}
.xe7_c00386{left:654.000000px;}
.xa2_c00386{left:655.350000px;}
.x116_c00386{left:657.000000px;}
.xac_c00386{left:658.500000px;}
.xfa_c00386{left:661.950000px;}
.x96_c00386{left:663.000000px;}
.xb2_c00386{left:664.950000px;}
.xe3_c00386{left:668.850000px;}
.x8d_c00386{left:670.800000px;}
.xa3_c00386{left:672.600000px;}
.x10a_c00386{left:674.250000px;}
.xef_c00386{left:676.800000px;}
.xbd_c00386{left:678.150000px;}
.xdc_c00386{left:679.350000px;}
.xad_c00386{left:680.400000px;}
.xf7_c00386{left:688.050000px;}
.xf4_c00386{left:689.400000px;}
.x9c_c00386{left:692.250000px;}
.x11e_c00386{left:695.250000px;}
.xeb_c00386{left:696.300000px;}
.x10b_c00386{left:699.150000px;}
.x117_c00386{left:700.500000px;}
.xdf_c00386{left:702.000000px;}
.x118_c00386{left:703.650000px;}
.x110_c00386{left:706.350000px;}
.xf0_c00386{left:707.700000px;}
.xbe_c00386{left:709.500000px;}
.xd1_c00386{left:710.700000px;}
.xfc_c00386{left:711.750000px;}
.xd6_c00386{left:713.400000px;}
.x8e_c00386{left:717.300000px;}
.xcd_c00386{left:718.650000px;}
.xb9_c00386{left:721.650000px;}
.xd7_c00386{left:723.900000px;}
.x9d_c00386{left:725.700000px;}
.x111_c00386{left:726.900000px;}
.x2_c00386{left:727.950000px;}
.xe4_c00386{left:731.850000px;}
.x10e_c00386{left:735.750000px;}
.xa4_c00386{left:737.400000px;}
.x123_c00386{left:738.450000px;}
.xfb_c00386{left:740.100000px;}
.xc9_c00386{left:742.200000px;}
.xf5_c00386{left:745.650000px;}
.x106_c00386{left:746.700000px;}
.x103_c00386{left:747.900000px;}
.x119_c00386{left:748.950000px;}
.xca_c00386{left:753.300000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls1_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:44.632708pt;}
.ws7_c00386{word-spacing:-68.632708pt;}
.ws3_c00386{word-spacing:-6.666667pt;}
.ws2_c00386{word-spacing:-3.333333pt;}
.ws8_c00386{word-spacing:-1.916306pt;}
.ws9_c00386{word-spacing:0.000000pt;}
.ws4_c00386{word-spacing:1.111111pt;}
.ws5_c00386{word-spacing:4.587814pt;}
.ws6_c00386{word-spacing:25.333333pt;}
.ws1_c00386{word-spacing:63.479290pt;}
.ws0_c00386{word-spacing:174.704849pt;}
._0_c00386{margin-left:-44.632708pt;}
.fs3_c00386{font-size:21.333333pt;}
.fs4_c00386{font-size:26.666667pt;}
.fs9_c00386{font-size:32.000000pt;}
.fs6_c00386{font-size:37.333333pt;}
.fs8_c00386{font-size:42.666667pt;}
.fs7_c00386{font-size:48.000000pt;}
.fs1_c00386{font-size:53.333333pt;}
.fs2_c00386{font-size:58.666667pt;}
.fs5_c00386{font-size:64.000000pt;}
.fs0_c00386{font-size:69.333333pt;}
.y0_c00386{bottom:0.000000pt;}
.y32_c00386{bottom:175.733333pt;}
.y69_c00386{bottom:178.533333pt;}
.y31_c00386{bottom:191.733333pt;}
.y68_c00386{bottom:192.000000pt;}
.y67_c00386{bottom:207.333333pt;}
.y30_c00386{bottom:207.733333pt;}
.y66_c00386{bottom:223.066667pt;}
.y2f_c00386{bottom:230.666667pt;}
.y65_c00386{bottom:238.933333pt;}
.y2e_c00386{bottom:250.533333pt;}
.y64_c00386{bottom:255.200000pt;}
.y2d_c00386{bottom:266.533333pt;}
.y63_c00386{bottom:270.933333pt;}
.y2c_c00386{bottom:285.066667pt;}
.y62_c00386{bottom:286.666667pt;}
.y2b_c00386{bottom:301.733333pt;}
.y61_c00386{bottom:302.400000pt;}
.y60_c00386{bottom:318.133333pt;}
.y2a_c00386{bottom:321.600000pt;}
.y5f_c00386{bottom:337.600000pt;}
.y29_c00386{bottom:341.466667pt;}
.y5e_c00386{bottom:348.800000pt;}
.y5d_c00386{bottom:361.600000pt;}
.y28_c00386{bottom:364.400000pt;}
.y5b_c00386{bottom:374.000000pt;}
.y27_c00386{bottom:380.133333pt;}
.y5a_c00386{bottom:386.533333pt;}
.y5c_c00386{bottom:387.466667pt;}
.y26_c00386{bottom:396.133333pt;}
.y59_c00386{bottom:400.266667pt;}
.y58_c00386{bottom:413.066667pt;}
.y25_c00386{bottom:414.400000pt;}
.y57_c00386{bottom:424.933333pt;}
.y24_c00386{bottom:431.333333pt;}
.y56_c00386{bottom:438.000000pt;}
.y23_c00386{bottom:447.066667pt;}
.y55_c00386{bottom:450.533333pt;}
.y54_c00386{bottom:464.000000pt;}
.y22_c00386{bottom:466.266667pt;}
.y53_c00386{bottom:476.533333pt;}
.y21_c00386{bottom:485.466667pt;}
.y52_c00386{bottom:489.600000pt;}
.y51_c00386{bottom:502.666667pt;}
.y20_c00386{bottom:505.466667pt;}
.y50_c00386{bottom:514.533333pt;}
.y1f_c00386{bottom:522.133333pt;}
.y4f_c00386{bottom:528.000000pt;}
.y1e_c00386{bottom:537.200000pt;}
.y4e_c00386{bottom:540.533333pt;}
.y4d_c00386{bottom:552.000000pt;}
.y1d_c00386{bottom:553.200000pt;}
.y1c_c00386{bottom:568.933333pt;}
.y4c_c00386{bottom:572.800000pt;}
.y1b_c00386{bottom:584.666667pt;}
.y4b_c00386{bottom:588.800000pt;}
.y1a_c00386{bottom:600.000000pt;}
.y19_c00386{bottom:600.666667pt;}
.y4a_c00386{bottom:604.133333pt;}
.y49_c00386{bottom:620.133333pt;}
.y18_c00386{bottom:623.733333pt;}
.y48_c00386{bottom:635.866667pt;}
.y17_c00386{bottom:642.933333pt;}
.y47_c00386{bottom:651.600000pt;}
.y16_c00386{bottom:659.200000pt;}
.y46_c00386{bottom:666.933333pt;}
.y15_c00386{bottom:678.400000pt;}
.y45_c00386{bottom:686.400000pt;}
.y14_c00386{bottom:695.066667pt;}
.y44_c00386{bottom:702.000000pt;}
.y6a_c00386{bottom:702.666667pt;}
.y13_c00386{bottom:713.600000pt;}
.y43_c00386{bottom:718.266667pt;}
.y12_c00386{bottom:730.266667pt;}
.y42_c00386{bottom:734.000000pt;}
.y11_c00386{bottom:749.200000pt;}
.y41_c00386{bottom:749.733333pt;}
.y10_c00386{bottom:765.466667pt;}
.y40_c00386{bottom:767.600000pt;}
.y3f_c00386{bottom:781.066667pt;}
.yf_c00386{bottom:781.466667pt;}
.y3e_c00386{bottom:796.800000pt;}
.ye_c00386{bottom:800.000000pt;}
.y3d_c00386{bottom:814.133333pt;}
.yd_c00386{bottom:815.733333pt;}
.y3c_c00386{bottom:831.733333pt;}
.yc_c00386{bottom:844.533333pt;}
.yb_c00386{bottom:849.333333pt;}
.y3b_c00386{bottom:851.200000pt;}
.y9_c00386{bottom:861.866667pt;}
.ya_c00386{bottom:865.600000pt;}
.y3a_c00386{bottom:867.200000pt;}
.y8_c00386{bottom:870.133333pt;}
.y39_c00386{bottom:886.933333pt;}
.y7_c00386{bottom:893.600000pt;}
.y38_c00386{bottom:902.666667pt;}
.y6_c00386{bottom:913.066667pt;}
.y37_c00386{bottom:918.400000pt;}
.y5_c00386{bottom:934.133333pt;}
.y36_c00386{bottom:938.266667pt;}
.y4_c00386{bottom:953.333333pt;}
.y35_c00386{bottom:957.733333pt;}
.y34_c00386{bottom:977.333333pt;}
.y3_c00386{bottom:988.133333pt;}
.y33_c00386{bottom:993.600000pt;}
.y1_c00386{bottom:1016.666667pt;}
.y2_c00386{bottom:1016.933333pt;}
.h5_c00386{height:21.333333pt;}
.h6_c00386{height:26.666667pt;}
.hb_c00386{height:32.000000pt;}
.h8_c00386{height:37.333333pt;}
.ha_c00386{height:42.666667pt;}
.h9_c00386{height:48.000000pt;}
.h3_c00386{height:53.333333pt;}
.h4_c00386{height:58.666667pt;}
.h7_c00386{height:64.000000pt;}
.h2_c00386{height:69.333333pt;}
.h1_c00386{height:1125.333333pt;}
.h0_c00386{height:1125.440023pt;}
.w0_c00386{width:853.760009pt;}
.w1_c00386{width:854.000000pt;}
.x0_c00386{left:0.000000pt;}
.x12_c00386{left:56.266667pt;}
.x5_c00386{left:57.333333pt;}
.x41_c00386{left:58.933333pt;}
.xc_c00386{left:72.800000pt;}
.x2d_c00386{left:73.866667pt;}
.x39_c00386{left:74.800000pt;}
.x74_c00386{left:76.000000pt;}
.x5d_c00386{left:82.933333pt;}
.xe_c00386{left:89.466667pt;}
.x34_c00386{left:90.933333pt;}
.x78_c00386{left:91.866667pt;}
.x33_c00386{left:93.733333pt;}
.x70_c00386{left:96.000000pt;}
.x13_c00386{left:97.866667pt;}
.x1a_c00386{left:102.666667pt;}
.x49_c00386{left:104.666667pt;}
.x26_c00386{left:106.533333pt;}
.x55_c00386{left:107.600000pt;}
.xd_c00386{left:114.133333pt;}
.x56_c00386{left:115.333333pt;}
.x4e_c00386{left:117.466667pt;}
.x35_c00386{left:119.733333pt;}
.x69_c00386{left:120.933333pt;}
.x27_c00386{left:121.866667pt;}
.x61_c00386{left:123.600000pt;}
.x81_c00386{left:125.333333pt;}
.x40_c00386{left:126.800000pt;}
.x1b_c00386{left:128.533333pt;}
.x64_c00386{left:130.000000pt;}
.x5e_c00386{left:131.866667pt;}
.x3a_c00386{left:134.000000pt;}
.x82_c00386{left:134.933333pt;}
.x6_c00386{left:136.400000pt;}
.x75_c00386{left:138.133333pt;}
.x1f_c00386{left:139.733333pt;}
.x7c_c00386{left:141.066667pt;}
.x4a_c00386{left:144.000000pt;}
.x7_c00386{left:145.733333pt;}
.x63_c00386{left:146.800000pt;}
.x76_c00386{left:148.133333pt;}
.x28_c00386{left:149.066667pt;}
.x45_c00386{left:150.400000pt;}
.x6a_c00386{left:152.000000pt;}
.x3_c00386{left:153.333333pt;}
.x11_c00386{left:154.800000pt;}
.x14_c00386{left:156.400000pt;}
.x2e_c00386{left:158.000000pt;}
.x1c_c00386{left:158.933333pt;}
.xf_c00386{left:161.466667pt;}
.x36_c00386{left:163.600000pt;}
.x20_c00386{left:167.200000pt;}
.x10_c00386{left:170.800000pt;}
.x65_c00386{left:172.533333pt;}
.x7d_c00386{left:175.733333pt;}
.x71_c00386{left:177.333333pt;}
.x5a_c00386{left:179.866667pt;}
.x5f_c00386{left:181.466667pt;}
.x57_c00386{left:182.800000pt;}
.x3b_c00386{left:183.733333pt;}
.x1e_c00386{left:185.466667pt;}
.x4f_c00386{left:187.200000pt;}
.x58_c00386{left:190.533333pt;}
.x2f_c00386{left:193.200000pt;}
.x4_c00386{left:195.866667pt;}
.x72_c00386{left:197.866667pt;}
.x80_c00386{left:202.800000pt;}
.x8_c00386{left:206.533333pt;}
.x21_c00386{left:207.466667pt;}
.x50_c00386{left:210.933333pt;}
.x30_c00386{left:212.133333pt;}
.x1d_c00386{left:213.066667pt;}
.x79_c00386{left:215.066667pt;}
.x3c_c00386{left:216.000000pt;}
.x77_c00386{left:218.000000pt;}
.x15_c00386{left:219.466667pt;}
.x83_c00386{left:220.400000pt;}
.x46_c00386{left:223.333333pt;}
.x6d_c00386{left:224.400000pt;}
.x31_c00386{left:225.866667pt;}
.x44_c00386{left:229.066667pt;}
.x59_c00386{left:230.533333pt;}
.x22_c00386{left:231.733333pt;}
.x29_c00386{left:237.066667pt;}
.x3d_c00386{left:238.133333pt;}
.x51_c00386{left:240.000000pt;}
.x9_c00386{left:241.466667pt;}
.x66_c00386{left:243.200000pt;}
.x4b_c00386{left:244.533333pt;}
.x7a_c00386{left:246.266667pt;}
.x60_c00386{left:248.400000pt;}
.x23_c00386{left:250.000000pt;}
.x62_c00386{left:252.533333pt;}
.x2a_c00386{left:254.933333pt;}
.x7e_c00386{left:257.066667pt;}
.x42_c00386{left:261.066667pt;}
.x52_c00386{left:265.866667pt;}
.x4c_c00386{left:267.600000pt;}
.x6b_c00386{left:269.733333pt;}
.x16_c00386{left:271.333333pt;}
.x1_c00386{left:274.533333pt;}
.x6e_c00386{left:278.400000pt;}
.x7b_c00386{left:280.133333pt;}
.x4d_c00386{left:281.333333pt;}
.x47_c00386{left:284.800000pt;}
.xa_c00386{left:287.866667pt;}
.x3e_c00386{left:292.800000pt;}
.x2b_c00386{left:294.000000pt;}
.x7f_c00386{left:299.333333pt;}
.x24_c00386{left:301.866667pt;}
.x37_c00386{left:304.666667pt;}
.x67_c00386{left:306.933333pt;}
.x25_c00386{left:308.533333pt;}
.x5b_c00386{left:310.800000pt;}
.x38_c00386{left:312.933333pt;}
.x53_c00386{left:317.066667pt;}
.x2c_c00386{left:318.266667pt;}
.x43_c00386{left:320.266667pt;}
.x17_c00386{left:323.200000pt;}
.x6f_c00386{left:324.133333pt;}
.x73_c00386{left:325.200000pt;}
.xb_c00386{left:327.200000pt;}
.x18_c00386{left:329.600000pt;}
.x32_c00386{left:330.533333pt;}
.x54_c00386{left:332.800000pt;}
.x84_c00386{left:333.733333pt;}
.x68_c00386{left:340.533333pt;}
.x3f_c00386{left:342.133333pt;}
.x48_c00386{left:343.066667pt;}
.x5c_c00386{left:344.666667pt;}
.x6c_c00386{left:348.533333pt;}
.x19_c00386{left:352.000000pt;}
.x97_c00386{left:373.066667pt;}
.xaf_c00386{left:374.400000pt;}
.xf1_c00386{left:375.333333pt;}
.x107_c00386{left:376.933333pt;}
.x11a_c00386{left:382.133333pt;}
.x8f_c00386{left:387.733333pt;}
.x85_c00386{left:388.800000pt;}
.xc5_c00386{left:390.133333pt;}
.xae_c00386{left:391.066667pt;}
.x10c_c00386{left:392.666667pt;}
.xd2_c00386{left:396.533333pt;}
.xf6_c00386{left:401.333333pt;}
.x86_c00386{left:403.866667pt;}
.x90_c00386{left:405.066667pt;}
.xb3_c00386{left:406.133333pt;}
.xa5_c00386{left:407.866667pt;}
.xb0_c00386{left:410.933333pt;}
.xba_c00386{left:412.666667pt;}
.xd3_c00386{left:413.866667pt;}
.x102_c00386{left:415.333333pt;}
.xd8_c00386{left:416.933333pt;}
.xf8_c00386{left:420.133333pt;}
.xce_c00386{left:421.066667pt;}
.xbf_c00386{left:424.000000pt;}
.x98_c00386{left:426.133333pt;}
.x120_c00386{left:428.133333pt;}
.xf2_c00386{left:429.733333pt;}
.x87_c00386{left:430.800000pt;}
.xa9_c00386{left:432.266667pt;}
.x92_c00386{left:433.866667pt;}
.xe0_c00386{left:435.600000pt;}
.xe8_c00386{left:438.000000pt;}
.xcb_c00386{left:439.733333pt;}
.x91_c00386{left:442.533333pt;}
.xf9_c00386{left:444.133333pt;}
.xc8_c00386{left:446.133333pt;}
.xa6_c00386{left:447.600000pt;}
.xe5_c00386{left:450.266667pt;}
.xc6_c00386{left:451.866667pt;}
.x108_c00386{left:454.666667pt;}
.xaa_c00386{left:457.600000pt;}
.x88_c00386{left:459.600000pt;}
.xc0_c00386{left:460.533333pt;}
.xb4_c00386{left:461.466667pt;}
.x9e_c00386{left:464.000000pt;}
.x101_c00386{left:465.066667pt;}
.xdd_c00386{left:466.266667pt;}
.xff_c00386{left:467.333333pt;}
.xcf_c00386{left:470.400000pt;}
.x112_c00386{left:471.866667pt;}
.x9f_c00386{left:473.333333pt;}
.xd9_c00386{left:475.200000pt;}
.xa7_c00386{left:477.333333pt;}
.x121_c00386{left:478.266667pt;}
.x11d_c00386{left:479.200000pt;}
.xb5_c00386{left:482.000000pt;}
.x99_c00386{left:485.066667pt;}
.xe9_c00386{left:486.000000pt;}
.xfd_c00386{left:488.000000pt;}
.xc1_c00386{left:489.333333pt;}
.x89_c00386{left:490.933333pt;}
.x93_c00386{left:492.400000pt;}
.xec_c00386{left:495.066667pt;}
.xc2_c00386{left:497.333333pt;}
.x11f_c00386{left:498.666667pt;}
.xa8_c00386{left:502.666667pt;}
.xb6_c00386{left:504.133333pt;}
.xbb_c00386{left:505.200000pt;}
.xd4_c00386{left:507.066667pt;}
.xab_c00386{left:510.133333pt;}
.xc7_c00386{left:511.600000pt;}
.x8a_c00386{left:513.066667pt;}
.x105_c00386{left:517.066667pt;}
.xc3_c00386{left:518.400000pt;}
.x11c_c00386{left:520.266667pt;}
.xda_c00386{left:521.600000pt;}
.x94_c00386{left:522.800000pt;}
.x10d_c00386{left:524.666667pt;}
.xf3_c00386{left:526.133333pt;}
.xed_c00386{left:527.066667pt;}
.x113_c00386{left:529.066667pt;}
.xb7_c00386{left:530.400000pt;}
.x115_c00386{left:532.133333pt;}
.x104_c00386{left:534.000000pt;}
.xb1_c00386{left:535.333333pt;}
.xdb_c00386{left:537.866667pt;}
.x100_c00386{left:539.333333pt;}
.xa0_c00386{left:540.266667pt;}
.xe1_c00386{left:542.400000pt;}
.x109_c00386{left:543.600000pt;}
.xfe_c00386{left:544.666667pt;}
.xd5_c00386{left:545.733333pt;}
.x95_c00386{left:547.733333pt;}
.x9a_c00386{left:548.800000pt;}
.xa1_c00386{left:551.200000pt;}
.xe2_c00386{left:552.266667pt;}
.x8b_c00386{left:554.000000pt;}
.xea_c00386{left:555.866667pt;}
.x9b_c00386{left:556.800000pt;}
.xbc_c00386{left:558.000000pt;}
.xee_c00386{left:559.066667pt;}
.x122_c00386{left:560.400000pt;}
.xe6_c00386{left:561.866667pt;}
.x11b_c00386{left:563.066667pt;}
.xde_c00386{left:565.733333pt;}
.xb8_c00386{left:567.600000pt;}
.xcc_c00386{left:571.866667pt;}
.x10f_c00386{left:575.333333pt;}
.xd0_c00386{left:576.400000pt;}
.xc4_c00386{left:578.266667pt;}
.x8c_c00386{left:579.333333pt;}
.x114_c00386{left:580.266667pt;}
.xe7_c00386{left:581.333333pt;}
.xa2_c00386{left:582.533333pt;}
.x116_c00386{left:584.000000pt;}
.xac_c00386{left:585.333333pt;}
.xfa_c00386{left:588.400000pt;}
.x96_c00386{left:589.333333pt;}
.xb2_c00386{left:591.066667pt;}
.xe3_c00386{left:594.533333pt;}
.x8d_c00386{left:596.266667pt;}
.xa3_c00386{left:597.866667pt;}
.x10a_c00386{left:599.333333pt;}
.xef_c00386{left:601.600000pt;}
.xbd_c00386{left:602.800000pt;}
.xdc_c00386{left:603.866667pt;}
.xad_c00386{left:604.800000pt;}
.xf7_c00386{left:611.600000pt;}
.xf4_c00386{left:612.800000pt;}
.x9c_c00386{left:615.333333pt;}
.x11e_c00386{left:618.000000pt;}
.xeb_c00386{left:618.933333pt;}
.x10b_c00386{left:621.466667pt;}
.x117_c00386{left:622.666667pt;}
.xdf_c00386{left:624.000000pt;}
.x118_c00386{left:625.466667pt;}
.x110_c00386{left:627.866667pt;}
.xf0_c00386{left:629.066667pt;}
.xbe_c00386{left:630.666667pt;}
.xd1_c00386{left:631.733333pt;}
.xfc_c00386{left:632.666667pt;}
.xd6_c00386{left:634.133333pt;}
.x8e_c00386{left:637.600000pt;}
.xcd_c00386{left:638.800000pt;}
.xb9_c00386{left:641.466667pt;}
.xd7_c00386{left:643.466667pt;}
.x9d_c00386{left:645.066667pt;}
.x111_c00386{left:646.133333pt;}
.x2_c00386{left:647.066667pt;}
.xe4_c00386{left:650.533333pt;}
.x10e_c00386{left:654.000000pt;}
.xa4_c00386{left:655.466667pt;}
.x123_c00386{left:656.400000pt;}
.xfb_c00386{left:657.866667pt;}
.xc9_c00386{left:659.733333pt;}
.xf5_c00386{left:662.800000pt;}
.x106_c00386{left:663.733333pt;}
.x103_c00386{left:664.800000pt;}
.x119_c00386{left:665.733333pt;}
.xca_c00386{left:669.600000pt;}
}





/* 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_c00387 {
    display:none;
  }
  .loading-indicator_c00387.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00387 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_c00387 { 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_c00387" -> "#page-container .classname_c00387")
 */
.pf_c00387 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00387 { /* 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_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00387 { /* 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_c00387 { /* 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_c00387 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00387 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00387 {overflow:visible;}
  }
}
.c_c00387 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00387 { /* 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_c00387:after { /* webkit #35443 */
  content: '';
}
.t_c00387:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00387 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 */
}
.__c00387 { /* 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_c00387 { /* info for Javascript */
  display:none;
}
.l_c00387 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00387 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00387 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00387: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_c00387 {
    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_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00387.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_c00387 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00387;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.000000;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;}
.me1_c00387{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m117_c00387{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m101_c00387{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00387{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00387{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mff_c00387{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00387{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00387{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00387{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m68_c00387{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00387{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00387{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m86_c00387{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00387{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00387{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00387{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00387{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00387{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me4_c00387{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00387{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.me6_c00387{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m78_c00387{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00387{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00387{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.mda_c00387{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00387{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00387{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me2_c00387{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m9_c00387{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m114_c00387{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m13_c00387{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m33_c00387{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00387{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00387{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m39_c00387{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00387{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m79_c00387{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m7_c00387{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00387{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.ma_c00387{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00387{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00387{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m3_c00387{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m22_c00387{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00387{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00387{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00387{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00387{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00387{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00387{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mac_c00387{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00387{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m6_c00387{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00387{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m90_c00387{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m23_c00387{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m58_c00387{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00387{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m56_c00387{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00387{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00387{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00387{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00387{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m69_c00387{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m82_c00387{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m54_c00387{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m81_c00387{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m97_c00387{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00387{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m30_c00387{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md_c00387{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md8_c00387{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00387{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m119_c00387{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m27_c00387{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m42_c00387{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m24_c00387{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00387{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00387{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.me3_c00387{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00387{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m113_c00387{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m37_c00387{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m14_c00387{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m107_c00387{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md0_c00387{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00387{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00387{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00387{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00387{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m72_c00387{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00387{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mca_c00387{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m115_c00387{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.maa_c00387{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00387{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m20_c00387{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m15_c00387{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00387{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md2_c00387{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8_c00387{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m96_c00387{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.me0_c00387{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00387{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00387{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m19_c00387{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00387{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00387{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m105_c00387{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m38_c00387{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m43_c00387{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00387{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00387{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m102_c00387{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m74_c00387{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m17_c00387{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb_c00387{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me7_c00387{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00387{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00387{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00387{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m67_c00387{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m98_c00387{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m73_c00387{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00387{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00387{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00387{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m31_c00387{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m76_c00387{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00387{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00387{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00387{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mf_c00387{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m110_c00387{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00387{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00387{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00387{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00387{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00387{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m16_c00387{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00387{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5_c00387{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me9_c00387{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00387{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m87_c00387{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00387{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.maf_c00387{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m49_c00387{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m57_c00387{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00387{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m26_c00387{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m65_c00387{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m32_c00387{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00387{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00387{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m92_c00387{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me8_c00387{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00387{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mea_c00387{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m84_c00387{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m85_c00387{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m71_c00387{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.meb_c00387{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m116_c00387{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00387{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md4_c00387{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mae_c00387{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m63_c00387{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m25_c00387{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00387{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00387{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me_c00387{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m35_c00387{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m47_c00387{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00387{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m104_c00387{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m55_c00387{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m48_c00387{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00387{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m75_c00387{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00387{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mba_c00387{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m12_c00387{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00387{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m34_c00387{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00387{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00387{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m95_c00387{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m120_c00387{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00387{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00387{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mc_c00387{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00387{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00387{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m66_c00387{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m70_c00387{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m36_c00387{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00387{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md1_c00387{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m60_c00387{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00387{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m41_c00387{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m91_c00387{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m40_c00387{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m77_c00387{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m29_c00387{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10_c00387{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00387{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00387{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m118_c00387{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m64_c00387{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m83_c00387{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m52_c00387{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m53_c00387{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m93_c00387{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00387{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m112_c00387{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00387{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00387{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00387{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m61_c00387{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md5_c00387{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00387{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m28_c00387{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00387{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00387{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m59_c00387{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00387{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00387{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m80_c00387{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mec_c00387{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00387{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mef_c00387{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00387{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00387{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00387{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00387{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md7_c00387{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m109_c00387{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m45_c00387{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m51_c00387{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md3_c00387{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m44_c00387{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m94_c00387{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m62_c00387{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00387{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00387{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m99_c00387{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00387{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00387{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m50_c00387{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mab_c00387{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00387{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m88_c00387{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m11_c00387{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00387{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mee_c00387{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00387{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00387{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m4_c00387{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m18_c00387{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m108_c00387{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00387{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m103_c00387{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m89_c00387{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.med_c00387{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mde_c00387{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00387{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00387{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00387{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m46_c00387{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.md6_c00387{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00387{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00387{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mce_c00387{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00387{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.me5_c00387{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00387{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m121_c00387{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.mad_c00387{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00387{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00387{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.md9_c00387{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(0.416500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416500,0.000000,0.000000,0.250000,0,0);}
.m21_c00387{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m100_c00387{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m106_c00387{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m111_c00387{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls3_c00387{letter-spacing:0.000000px;}
.ls0_c00387{letter-spacing:45.000000px;}
.ls1_c00387{letter-spacing:55.714286px;}
.ls2_c00387{letter-spacing:59.285714px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{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__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00387{word-spacing:-89.285714px;}
.ws4_c00387{word-spacing:-85.714286px;}
.ws3_c00387{word-spacing:-75.000000px;}
.ws2_c00387{word-spacing:-3.676471px;}
.ws0_c00387{word-spacing:-1.612245px;}
.ws1_c00387{word-spacing:-0.183406px;}
.wse_c00387{word-spacing:0.000000px;}
.wsa_c00387{word-spacing:18.125000px;}
.ws8_c00387{word-spacing:22.142857px;}
.ws6_c00387{word-spacing:25.714286px;}
.wsd_c00387{word-spacing:29.285714px;}
.ws5_c00387{word-spacing:40.000000px;}
.wsc_c00387{word-spacing:63.039301px;}
.ws7_c00387{word-spacing:66.315789px;}
.ws9_c00387{word-spacing:218.125000px;}
._4_c00387{margin-left:-59.285714px;}
._2_c00387{margin-left:-55.714286px;}
._1_c00387{margin-left:-45.000000px;}
._0_c00387{width:3.125000px;}
._5_c00387{width:59.285714px;}
._3_c00387{width:64.642857px;}
.fc0_c00387{color:transparent;}
.fs6_c00387{font-size:42.000000px;}
.fs5_c00387{font-size:54.000000px;}
.fs4_c00387{font-size:60.000000px;}
.fs3_c00387{font-size:66.000000px;}
.fs2_c00387{font-size:72.000000px;}
.fs1_c00387{font-size:84.000000px;}
.fs0_c00387{font-size:108.000000px;}
.y0_c00387{bottom:0.000000px;}
.y6c_c00387{bottom:185.100000px;}
.y35_c00387{bottom:199.800000px;}
.y6b_c00387{bottom:203.100000px;}
.y34_c00387{bottom:216.000000px;}
.y6a_c00387{bottom:221.100000px;}
.y33_c00387{bottom:230.100000px;}
.y69_c00387{bottom:239.100000px;}
.y32_c00387{bottom:244.800000px;}
.y31_c00387{bottom:256.650000px;}
.y68_c00387{bottom:257.100000px;}
.y30_c00387{bottom:271.800000px;}
.y67_c00387{bottom:274.350000px;}
.y2f_c00387{bottom:286.200000px;}
.y66_c00387{bottom:292.350000px;}
.y2e_c00387{bottom:300.300000px;}
.y65_c00387{bottom:310.350000px;}
.y64_c00387{bottom:328.650000px;}
.y63_c00387{bottom:345.900000px;}
.y2d_c00387{bottom:348.450000px;}
.y2c_c00387{bottom:366.450000px;}
.y62_c00387{bottom:368.400000px;}
.y61_c00387{bottom:382.800000px;}
.y2b_c00387{bottom:388.500000px;}
.y60_c00387{bottom:395.700000px;}
.y2a_c00387{bottom:406.500000px;}
.y5f_c00387{bottom:410.100000px;}
.y29_c00387{bottom:423.000000px;}
.y5e_c00387{bottom:425.550000px;}
.y5d_c00387{bottom:439.200000px;}
.y28_c00387{bottom:442.050000px;}
.y5c_c00387{bottom:454.350000px;}
.y27_c00387{bottom:459.750000px;}
.y5b_c00387{bottom:468.750000px;}
.y26_c00387{bottom:480.900000px;}
.y5a_c00387{bottom:482.100000px;}
.y59_c00387{bottom:497.550000px;}
.y25_c00387{bottom:498.900000px;}
.y58_c00387{bottom:510.750000px;}
.y24_c00387{bottom:517.200000px;}
.y57_c00387{bottom:525.900000px;}
.y23_c00387{bottom:534.900000px;}
.y56_c00387{bottom:539.700000px;}
.y22_c00387{bottom:552.600000px;}
.y55_c00387{bottom:554.850000px;}
.y54_c00387{bottom:569.250000px;}
.y21_c00387{bottom:570.600000px;}
.y53_c00387{bottom:583.950000px;}
.y20_c00387{bottom:587.850000px;}
.y52_c00387{bottom:597.300000px;}
.y1f_c00387{bottom:605.850000px;}
.y51_c00387{bottom:613.500000px;}
.y1e_c00387{bottom:623.550000px;}
.y50_c00387{bottom:632.100000px;}
.y1d_c00387{bottom:641.250000px;}
.y4f_c00387{bottom:650.100000px;}
.y1c_c00387{bottom:659.250000px;}
.y4e_c00387{bottom:667.800000px;}
.y1b_c00387{bottom:676.500000px;}
.y4d_c00387{bottom:686.550000px;}
.y1a_c00387{bottom:694.500000px;}
.y4c_c00387{bottom:703.500000px;}
.y19_c00387{bottom:715.650000px;}
.y4b_c00387{bottom:724.650000px;}
.y18_c00387{bottom:733.950000px;}
.y4a_c00387{bottom:743.400000px;}
.y17_c00387{bottom:751.950000px;}
.y49_c00387{bottom:761.850000px;}
.y16_c00387{bottom:769.650000px;}
.y48_c00387{bottom:779.550000px;}
.y15_c00387{bottom:787.650000px;}
.y47_c00387{bottom:797.850000px;}
.y14_c00387{bottom:805.350000px;}
.y46_c00387{bottom:815.100000px;}
.y13_c00387{bottom:826.950000px;}
.y45_c00387{bottom:833.100000px;}
.y12_c00387{bottom:845.250000px;}
.y44_c00387{bottom:853.200000px;}
.y11_c00387{bottom:863.250000px;}
.y43_c00387{bottom:873.000000px;}
.y10_c00387{bottom:880.500000px;}
.yf_c00387{bottom:898.200000px;}
.y42_c00387{bottom:902.100000px;}
.ye_c00387{bottom:916.200000px;}
.y41_c00387{bottom:921.600000px;}
.yd_c00387{bottom:934.200000px;}
.y40_c00387{bottom:939.600000px;}
.yc_c00387{bottom:951.900000px;}
.y3f_c00387{bottom:957.600000px;}
.yb_c00387{bottom:970.800000px;}
.y3e_c00387{bottom:975.300000px;}
.ya_c00387{bottom:991.350000px;}
.y3d_c00387{bottom:997.650000px;}
.y9_c00387{bottom:1009.050000px;}
.y3c_c00387{bottom:1015.950000px;}
.y8_c00387{bottom:1026.750000px;}
.y3b_c00387{bottom:1033.950000px;}
.y7_c00387{bottom:1047.450000px;}
.y3a_c00387{bottom:1051.950000px;}
.y6_c00387{bottom:1066.200000px;}
.y39_c00387{bottom:1069.650000px;}
.y5_c00387{bottom:1084.200000px;}
.y38_c00387{bottom:1087.650000px;}
.y4_c00387{bottom:1101.900000px;}
.y37_c00387{bottom:1105.650000px;}
.y3_c00387{bottom:1119.600000px;}
.y36_c00387{bottom:1122.900000px;}
.y1_c00387{bottom:1143.300000px;}
.y2_c00387{bottom:1145.400000px;}
.h8_c00387{height:42.000000px;}
.h7_c00387{height:54.000000px;}
.h6_c00387{height:60.000000px;}
.h5_c00387{height:66.000000px;}
.h4_c00387{height:72.000000px;}
.h3_c00387{height:84.000000px;}
.h2_c00387{height:108.000000px;}
.h1_c00387{height:1272.750000px;}
.h0_c00387{height:1272.960022px;}
.w0_c00387{width:960.480010px;}
.w1_c00387{width:960.750000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:192.900000px;}
.x94_c00387{left:199.050000px;}
.x98_c00387{left:200.250000px;}
.x9a_c00387{left:201.900000px;}
.xa3_c00387{left:203.250000px;}
.x3_c00387{left:211.350000px;}
.x18_c00387{left:212.550000px;}
.x50_c00387{left:213.600000px;}
.x6f_c00387{left:214.650000px;}
.x8e_c00387{left:216.000000px;}
.x96_c00387{left:217.500000px;}
.xa8_c00387{left:228.450000px;}
.x34_c00387{left:230.400000px;}
.x21_c00387{left:231.900000px;}
.x62_c00387{left:232.950000px;}
.x2f_c00387{left:234.300000px;}
.x91_c00387{left:235.800000px;}
.x7a_c00387{left:237.150000px;}
.x87_c00387{left:239.400000px;}
.xa9_c00387{left:240.750000px;}
.x9c_c00387{left:242.250000px;}
.x22_c00387{left:243.450000px;}
.x14_c00387{left:246.750000px;}
.x51_c00387{left:249.600000px;}
.x4_c00387{left:250.650000px;}
.x75_c00387{left:252.000000px;}
.x7f_c00387{left:253.350000px;}
.x60_c00387{left:254.700000px;}
.xd_c00387{left:256.950000px;}
.x55_c00387{left:258.450000px;}
.x93_c00387{left:261.150000px;}
.x63_c00387{left:262.800000px;}
.xa4_c00387{left:264.150000px;}
.x41_c00387{left:265.350000px;}
.x23_c00387{left:266.550000px;}
.x9f_c00387{left:267.600000px;}
.x56_c00387{left:268.950000px;}
.x4a_c00387{left:270.000000px;}
.x36_c00387{left:271.800000px;}
.x8f_c00387{left:272.850000px;}
.x35_c00387{left:274.350000px;}
.x1d_c00387{left:276.450000px;}
.xe_c00387{left:277.500000px;}
.x5_c00387{left:279.150000px;}
.x83_c00387{left:280.350000px;}
.x47_c00387{left:282.150000px;}
.x2a_c00387{left:283.650000px;}
.x42_c00387{left:286.950000px;}
.x24_c00387{left:288.150000px;}
.x8b_c00387{left:289.950000px;}
.x37_c00387{left:291.300000px;}
.x89_c00387{left:292.800000px;}
.x3d_c00387{left:293.850000px;}
.xa5_c00387{left:295.500000px;}
.x76_c00387{left:297.000000px;}
.x5c_c00387{left:299.850000px;}
.x57_c00387{left:301.350000px;}
.x2b_c00387{left:304.200000px;}
.x15_c00387{left:306.150000px;}
.xf_c00387{left:308.400000px;}
.x25_c00387{left:310.500000px;}
.x19_c00387{left:311.850000px;}
.x95_c00387{left:315.450000px;}
.xa6_c00387{left:317.100000px;}
.x84_c00387{left:318.450000px;}
.x58_c00387{left:320.100000px;}
.x1e_c00387{left:321.450000px;}
.x38_c00387{left:324.750000px;}
.x4b_c00387{left:326.550000px;}
.x8c_c00387{left:328.500000px;}
.x52_c00387{left:330.300000px;}
.x16_c00387{left:332.400000px;}
.x6_c00387{left:334.650000px;}
.x77_c00387{left:335.850000px;}
.x7c_c00387{left:338.400000px;}
.x80_c00387{left:339.450000px;}
.x43_c00387{left:343.050000px;}
.x30_c00387{left:345.450000px;}
.x78_c00387{left:346.650000px;}
.x48_c00387{left:349.950000px;}
.x3e_c00387{left:351.150000px;}
.x9d_c00387{left:352.350000px;}
.x1a_c00387{left:353.550000px;}
.x7_c00387{left:355.200000px;}
.x1f_c00387{left:356.700000px;}
.x66_c00387{left:360.150000px;}
.x7d_c00387{left:361.500000px;}
.x4c_c00387{left:362.550000px;}
.x70_c00387{left:363.750000px;}
.x6a_c00387{left:364.800000px;}
.x26_c00387{left:366.300000px;}
.x5d_c00387{left:368.250000px;}
.x31_c00387{left:372.150000px;}
.x59_c00387{left:374.850000px;}
.x81_c00387{left:377.250000px;}
.x39_c00387{left:378.750000px;}
.x10_c00387{left:380.400000px;}
.x27_c00387{left:381.450000px;}
.x5e_c00387{left:382.950000px;}
.x2c_c00387{left:384.150000px;}
.x8_c00387{left:385.500000px;}
.x20_c00387{left:387.600000px;}
.x6b_c00387{left:388.950000px;}
.x67_c00387{left:390.000000px;}
.x28_c00387{left:394.800000px;}
.xa0_c00387{left:396.900000px;}
.x85_c00387{left:398.100000px;}
.x8a_c00387{left:400.500000px;}
.x9_c00387{left:402.000000px;}
.x71_c00387{left:405.900000px;}
.x6c_c00387{left:407.250000px;}
.x99_c00387{left:409.500000px;}
.x68_c00387{left:410.550000px;}
.x11_c00387{left:413.850000px;}
.x53_c00387{left:414.900000px;}
.x5a_c00387{left:416.250000px;}
.x64_c00387{left:418.650000px;}
.x1b_c00387{left:420.150000px;}
.x2d_c00387{left:421.200000px;}
.x7e_c00387{left:422.700000px;}
.x49_c00387{left:427.050000px;}
.x7b_c00387{left:428.550000px;}
.x3f_c00387{left:429.600000px;}
.x61_c00387{left:431.550000px;}
.x3a_c00387{left:433.500000px;}
.x2_c00387{left:434.850000px;}
.x32_c00387{left:439.050000px;}
.x44_c00387{left:441.600000px;}
.x69_c00387{left:443.700000px;}
.x72_c00387{left:444.750000px;}
.xa_c00387{left:447.750000px;}
.x3b_c00387{left:450.450000px;}
.x29_c00387{left:452.850000px;}
.x90_c00387{left:454.800000px;}
.x4d_c00387{left:456.150000px;}
.x6d_c00387{left:458.700000px;}
.x17_c00387{left:460.950000px;}
.x5b_c00387{left:462.000000px;}
.x2e_c00387{left:465.150000px;}
.x45_c00387{left:466.800000px;}
.x40_c00387{left:469.500000px;}
.x86_c00387{left:471.150000px;}
.x4e_c00387{left:473.850000px;}
.x92_c00387{left:475.950000px;}
.x88_c00387{left:477.600000px;}
.xa1_c00387{left:480.150000px;}
.xb_c00387{left:481.200000px;}
.x9e_c00387{left:482.400000px;}
.x33_c00387{left:485.100000px;}
.x5f_c00387{left:489.450000px;}
.x73_c00387{left:491.100000px;}
.x65_c00387{left:492.750000px;}
.x12_c00387{left:495.600000px;}
.xa2_c00387{left:498.150000px;}
.x1c_c00387{left:499.350000px;}
.xc_c00387{left:501.000000px;}
.x79_c00387{left:503.550000px;}
.x54_c00387{left:505.650000px;}
.x8d_c00387{left:507.750000px;}
.x74_c00387{left:509.400000px;}
.x46_c00387{left:511.800000px;}
.x3c_c00387{left:514.950000px;}
.x4f_c00387{left:516.000000px;}
.xa7_c00387{left:519.000000px;}
.x13_c00387{left:520.050000px;}
.x82_c00387{left:521.700000px;}
.x6e_c00387{left:525.000000px;}
.x9b_c00387{left:529.200000px;}
.x97_c00387{left:530.250000px;}
.xe2_c00387{left:551.100000px;}
.xf4_c00387{left:553.650000px;}
.x145_c00387{left:556.950000px;}
.xf8_c00387{left:565.800000px;}
.xaa_c00387{left:567.750000px;}
.xd4_c00387{left:568.800000px;}
.x101_c00387{left:570.000000px;}
.x148_c00387{left:574.200000px;}
.x150_c00387{left:575.250000px;}
.x128_c00387{left:581.850000px;}
.x133_c00387{left:583.500000px;}
.xba_c00387{left:586.650000px;}
.xf9_c00387{left:587.700000px;}
.xc5_c00387{left:588.750000px;}
.x10c_c00387{left:593.550000px;}
.xff_c00387{left:594.600000px;}
.x109_c00387{left:597.150000px;}
.xdb_c00387{left:598.650000px;}
.xf5_c00387{left:599.700000px;}
.xec_c00387{left:600.750000px;}
.x13d_c00387{left:602.850000px;}
.x12c_c00387{left:603.900000px;}
.x134_c00387{left:605.100000px;}
.xab_c00387{left:606.600000px;}
.xbb_c00387{left:608.250000px;}
.x152_c00387{left:609.900000px;}
.xc6_c00387{left:611.100000px;}
.x112_c00387{left:612.300000px;}
.xf1_c00387{left:613.650000px;}
.xb3_c00387{left:616.800000px;}
.x121_c00387{left:622.050000px;}
.x102_c00387{left:623.250000px;}
.x10e_c00387{left:624.600000px;}
.xe3_c00387{left:626.400000px;}
.xac_c00387{left:627.900000px;}
.x149_c00387{left:629.250000px;}
.xdc_c00387{left:631.350000px;}
.x116_c00387{left:633.600000px;}
.x131_c00387{left:635.550000px;}
.x10a_c00387{left:637.500000px;}
.xf6_c00387{left:639.300000px;}
.x146_c00387{left:640.800000px;}
.x130_c00387{left:642.450000px;}
.xad_c00387{left:643.800000px;}
.xc7_c00387{left:647.100000px;}
.xcd_c00387{left:651.000000px;}
.xe6_c00387{left:652.650000px;}
.xbc_c00387{left:654.300000px;}
.xc8_c00387{left:656.100000px;}
.x154_c00387{left:657.450000px;}
.xf2_c00387{left:658.650000px;}
.x13e_c00387{left:659.700000px;}
.xd5_c00387{left:662.400000px;}
.x11a_c00387{left:665.100000px;}
.xd8_c00387{left:666.150000px;}
.xed_c00387{left:667.650000px;}
.xdd_c00387{left:669.150000px;}
.x135_c00387{left:670.200000px;}
.xce_c00387{left:671.550000px;}
.x14a_c00387{left:673.950000px;}
.x11f_c00387{left:675.300000px;}
.xeb_c00387{left:676.950000px;}
.xf3_c00387{left:678.150000px;}
.x122_c00387{left:679.950000px;}
.xc9_c00387{left:682.050000px;}
.xb4_c00387{left:684.150000px;}
.x142_c00387{left:687.150000px;}
.x129_c00387{left:689.850000px;}
.x137_c00387{left:690.900000px;}
.x123_c00387{left:693.300000px;}
.xae_c00387{left:694.950000px;}
.x117_c00387{left:696.600000px;}
.xde_c00387{left:697.950000px;}
.x156_c00387{left:699.450000px;}
.xbd_c00387{left:700.800000px;}
.xee_c00387{left:702.600000px;}
.x10f_c00387{left:704.400000px;}
.xe7_c00387{left:706.350000px;}
.x13f_c00387{left:708.300000px;}
.xb5_c00387{left:710.850000px;}
.x138_c00387{left:712.200000px;}
.xca_c00387{left:713.400000px;}
.xaf_c00387{left:715.500000px;}
.xbe_c00387{left:717.300000px;}
.x140_c00387{left:718.350000px;}
.x132_c00387{left:719.850000px;}
.xcf_c00387{left:720.900000px;}
.xe8_c00387{left:722.250000px;}
.x151_c00387{left:724.200000px;}
.xef_c00387{left:725.250000px;}
.x104_c00387{left:726.900000px;}
.xdf_c00387{left:729.300000px;}
.xfa_c00387{left:732.000000px;}
.x103_c00387{left:733.350000px;}
.x124_c00387{left:735.750000px;}
.xbf_c00387{left:736.800000px;}
.x136_c00387{left:738.150000px;}
.x13c_c00387{left:740.850000px;}
.xd9_c00387{left:742.050000px;}
.x113_c00387{left:744.150000px;}
.x10d_c00387{left:746.250000px;}
.x12a_c00387{left:748.350000px;}
.x139_c00387{left:749.550000px;}
.xb0_c00387{left:750.750000px;}
.xc0_c00387{left:751.950000px;}
.x11b_c00387{left:753.300000px;}
.x141_c00387{left:754.800000px;}
.xfc_c00387{left:756.300000px;}
.x118_c00387{left:758.850000px;}
.x14b_c00387{left:760.650000px;}
.xfb_c00387{left:761.850000px;}
.x105_c00387{left:763.650000px;}
.xe9_c00387{left:765.150000px;}
.x120_c00387{left:766.800000px;}
.xb6_c00387{left:769.950000px;}
.x12d_c00387{left:771.150000px;}
.x125_c00387{left:772.350000px;}
.xcb_c00387{left:773.850000px;}
.xfd_c00387{left:775.350000px;}
.xd0_c00387{left:776.700000px;}
.x12e_c00387{left:778.350000px;}
.x143_c00387{left:779.400000px;}
.xe4_c00387{left:780.450000px;}
.x157_c00387{left:781.500000px;}
.xe0_c00387{left:783.300000px;}
.xd1_c00387{left:785.400000px;}
.x110_c00387{left:786.900000px;}
.x126_c00387{left:791.400000px;}
.xb7_c00387{left:793.350000px;}
.xd6_c00387{left:794.700000px;}
.x11c_c00387{left:795.750000px;}
.xc1_c00387{left:798.000000px;}
.x12f_c00387{left:799.950000px;}
.x106_c00387{left:802.500000px;}
.xe1_c00387{left:803.850000px;}
.x14e_c00387{left:807.450000px;}
.xd7_c00387{left:808.800000px;}
.xe5_c00387{left:811.050000px;}
.xc2_c00387{left:812.700000px;}
.x14c_c00387{left:813.900000px;}
.x12b_c00387{left:818.550000px;}
.xd2_c00387{left:819.600000px;}
.x144_c00387{left:820.800000px;}
.xea_c00387{left:823.800000px;}
.x14f_c00387{left:825.150000px;}
.x119_c00387{left:826.800000px;}
.xc3_c00387{left:831.450000px;}
.x107_c00387{left:832.800000px;}
.xb8_c00387{left:835.500000px;}
.xd3_c00387{left:837.300000px;}
.xb1_c00387{left:838.950000px;}
.x11d_c00387{left:840.300000px;}
.xb9_c00387{left:842.700000px;}
.x114_c00387{left:844.500000px;}
.xc4_c00387{left:846.150000px;}
.xf7_c00387{left:847.650000px;}
.xda_c00387{left:848.850000px;}
.x13a_c00387{left:850.350000px;}
.x158_c00387{left:851.550000px;}
.x100_c00387{left:852.600000px;}
.x153_c00387{left:854.400000px;}
.xb2_c00387{left:856.650000px;}
.x155_c00387{left:859.050000px;}
.x14d_c00387{left:862.500000px;}
.x111_c00387{left:863.550000px;}
.x147_c00387{left:866.100000px;}
.xfe_c00387{left:868.200000px;}
.x108_c00387{left:869.850000px;}
.xcc_c00387{left:871.050000px;}
.xf0_c00387{left:872.100000px;}
.x11e_c00387{left:874.800000px;}
.x127_c00387{left:876.300000px;}
.x10b_c00387{left:878.700000px;}
.x13b_c00387{left:880.200000px;}
.x115_c00387{left:885.900000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls3_c00387{letter-spacing:0.000000pt;}
.ls0_c00387{letter-spacing:40.000000pt;}
.ls1_c00387{letter-spacing:49.523810pt;}
.ls2_c00387{letter-spacing:52.698413pt;}
.wsb_c00387{word-spacing:-79.365079pt;}
.ws4_c00387{word-spacing:-76.190476pt;}
.ws3_c00387{word-spacing:-66.666667pt;}
.ws2_c00387{word-spacing:-3.267974pt;}
.ws0_c00387{word-spacing:-1.433107pt;}
.ws1_c00387{word-spacing:-0.163028pt;}
.wse_c00387{word-spacing:0.000000pt;}
.wsa_c00387{word-spacing:16.111111pt;}
.ws8_c00387{word-spacing:19.682540pt;}
.ws6_c00387{word-spacing:22.857143pt;}
.wsd_c00387{word-spacing:26.031746pt;}
.ws5_c00387{word-spacing:35.555556pt;}
.wsc_c00387{word-spacing:56.034934pt;}
.ws7_c00387{word-spacing:58.947368pt;}
.ws9_c00387{word-spacing:193.888889pt;}
._4_c00387{margin-left:-52.698413pt;}
._2_c00387{margin-left:-49.523810pt;}
._1_c00387{margin-left:-40.000000pt;}
._0_c00387{width:2.777778pt;}
._5_c00387{width:52.698413pt;}
._3_c00387{width:57.460317pt;}
.fs6_c00387{font-size:37.333333pt;}
.fs5_c00387{font-size:48.000000pt;}
.fs4_c00387{font-size:53.333333pt;}
.fs3_c00387{font-size:58.666667pt;}
.fs2_c00387{font-size:64.000000pt;}
.fs1_c00387{font-size:74.666667pt;}
.fs0_c00387{font-size:96.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y6c_c00387{bottom:164.533333pt;}
.y35_c00387{bottom:177.600000pt;}
.y6b_c00387{bottom:180.533333pt;}
.y34_c00387{bottom:192.000000pt;}
.y6a_c00387{bottom:196.533333pt;}
.y33_c00387{bottom:204.533333pt;}
.y69_c00387{bottom:212.533333pt;}
.y32_c00387{bottom:217.600000pt;}
.y31_c00387{bottom:228.133333pt;}
.y68_c00387{bottom:228.533333pt;}
.y30_c00387{bottom:241.600000pt;}
.y67_c00387{bottom:243.866667pt;}
.y2f_c00387{bottom:254.400000pt;}
.y66_c00387{bottom:259.866667pt;}
.y2e_c00387{bottom:266.933333pt;}
.y65_c00387{bottom:275.866667pt;}
.y64_c00387{bottom:292.133333pt;}
.y63_c00387{bottom:307.466667pt;}
.y2d_c00387{bottom:309.733333pt;}
.y2c_c00387{bottom:325.733333pt;}
.y62_c00387{bottom:327.466667pt;}
.y61_c00387{bottom:340.266667pt;}
.y2b_c00387{bottom:345.333333pt;}
.y60_c00387{bottom:351.733333pt;}
.y2a_c00387{bottom:361.333333pt;}
.y5f_c00387{bottom:364.533333pt;}
.y29_c00387{bottom:376.000000pt;}
.y5e_c00387{bottom:378.266667pt;}
.y5d_c00387{bottom:390.400000pt;}
.y28_c00387{bottom:392.933333pt;}
.y5c_c00387{bottom:403.866667pt;}
.y27_c00387{bottom:408.666667pt;}
.y5b_c00387{bottom:416.666667pt;}
.y26_c00387{bottom:427.466667pt;}
.y5a_c00387{bottom:428.533333pt;}
.y59_c00387{bottom:442.266667pt;}
.y25_c00387{bottom:443.466667pt;}
.y58_c00387{bottom:454.000000pt;}
.y24_c00387{bottom:459.733333pt;}
.y57_c00387{bottom:467.466667pt;}
.y23_c00387{bottom:475.466667pt;}
.y56_c00387{bottom:479.733333pt;}
.y22_c00387{bottom:491.200000pt;}
.y55_c00387{bottom:493.200000pt;}
.y54_c00387{bottom:506.000000pt;}
.y21_c00387{bottom:507.200000pt;}
.y53_c00387{bottom:519.066667pt;}
.y20_c00387{bottom:522.533333pt;}
.y52_c00387{bottom:530.933333pt;}
.y1f_c00387{bottom:538.533333pt;}
.y51_c00387{bottom:545.333333pt;}
.y1e_c00387{bottom:554.266667pt;}
.y50_c00387{bottom:561.866667pt;}
.y1d_c00387{bottom:570.000000pt;}
.y4f_c00387{bottom:577.866667pt;}
.y1c_c00387{bottom:586.000000pt;}
.y4e_c00387{bottom:593.600000pt;}
.y1b_c00387{bottom:601.333333pt;}
.y4d_c00387{bottom:610.266667pt;}
.y1a_c00387{bottom:617.333333pt;}
.y4c_c00387{bottom:625.333333pt;}
.y19_c00387{bottom:636.133333pt;}
.y4b_c00387{bottom:644.133333pt;}
.y18_c00387{bottom:652.400000pt;}
.y4a_c00387{bottom:660.800000pt;}
.y17_c00387{bottom:668.400000pt;}
.y49_c00387{bottom:677.200000pt;}
.y16_c00387{bottom:684.133333pt;}
.y48_c00387{bottom:692.933333pt;}
.y15_c00387{bottom:700.133333pt;}
.y47_c00387{bottom:709.200000pt;}
.y14_c00387{bottom:715.866667pt;}
.y46_c00387{bottom:724.533333pt;}
.y13_c00387{bottom:735.066667pt;}
.y45_c00387{bottom:740.533333pt;}
.y12_c00387{bottom:751.333333pt;}
.y44_c00387{bottom:758.400000pt;}
.y11_c00387{bottom:767.333333pt;}
.y43_c00387{bottom:776.000000pt;}
.y10_c00387{bottom:782.666667pt;}
.yf_c00387{bottom:798.400000pt;}
.y42_c00387{bottom:801.866667pt;}
.ye_c00387{bottom:814.400000pt;}
.y41_c00387{bottom:819.200000pt;}
.yd_c00387{bottom:830.400000pt;}
.y40_c00387{bottom:835.200000pt;}
.yc_c00387{bottom:846.133333pt;}
.y3f_c00387{bottom:851.200000pt;}
.yb_c00387{bottom:862.933333pt;}
.y3e_c00387{bottom:866.933333pt;}
.ya_c00387{bottom:881.200000pt;}
.y3d_c00387{bottom:886.800000pt;}
.y9_c00387{bottom:896.933333pt;}
.y3c_c00387{bottom:903.066667pt;}
.y8_c00387{bottom:912.666667pt;}
.y3b_c00387{bottom:919.066667pt;}
.y7_c00387{bottom:931.066667pt;}
.y3a_c00387{bottom:935.066667pt;}
.y6_c00387{bottom:947.733333pt;}
.y39_c00387{bottom:950.800000pt;}
.y5_c00387{bottom:963.733333pt;}
.y38_c00387{bottom:966.800000pt;}
.y4_c00387{bottom:979.466667pt;}
.y37_c00387{bottom:982.800000pt;}
.y3_c00387{bottom:995.200000pt;}
.y36_c00387{bottom:998.133333pt;}
.y1_c00387{bottom:1016.266667pt;}
.y2_c00387{bottom:1018.133333pt;}
.h8_c00387{height:37.333333pt;}
.h7_c00387{height:48.000000pt;}
.h6_c00387{height:53.333333pt;}
.h5_c00387{height:58.666667pt;}
.h4_c00387{height:64.000000pt;}
.h3_c00387{height:74.666667pt;}
.h2_c00387{height:96.000000pt;}
.h1_c00387{height:1131.333333pt;}
.h0_c00387{height:1131.520020pt;}
.w0_c00387{width:853.760009pt;}
.w1_c00387{width:854.000000pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:171.466667pt;}
.x94_c00387{left:176.933333pt;}
.x98_c00387{left:178.000000pt;}
.x9a_c00387{left:179.466667pt;}
.xa3_c00387{left:180.666667pt;}
.x3_c00387{left:187.866667pt;}
.x18_c00387{left:188.933333pt;}
.x50_c00387{left:189.866667pt;}
.x6f_c00387{left:190.800000pt;}
.x8e_c00387{left:192.000000pt;}
.x96_c00387{left:193.333333pt;}
.xa8_c00387{left:203.066667pt;}
.x34_c00387{left:204.800000pt;}
.x21_c00387{left:206.133333pt;}
.x62_c00387{left:207.066667pt;}
.x2f_c00387{left:208.266667pt;}
.x91_c00387{left:209.600000pt;}
.x7a_c00387{left:210.800000pt;}
.x87_c00387{left:212.800000pt;}
.xa9_c00387{left:214.000000pt;}
.x9c_c00387{left:215.333333pt;}
.x22_c00387{left:216.400000pt;}
.x14_c00387{left:219.333333pt;}
.x51_c00387{left:221.866667pt;}
.x4_c00387{left:222.800000pt;}
.x75_c00387{left:224.000000pt;}
.x7f_c00387{left:225.200000pt;}
.x60_c00387{left:226.400000pt;}
.xd_c00387{left:228.400000pt;}
.x55_c00387{left:229.733333pt;}
.x93_c00387{left:232.133333pt;}
.x63_c00387{left:233.600000pt;}
.xa4_c00387{left:234.800000pt;}
.x41_c00387{left:235.866667pt;}
.x23_c00387{left:236.933333pt;}
.x9f_c00387{left:237.866667pt;}
.x56_c00387{left:239.066667pt;}
.x4a_c00387{left:240.000000pt;}
.x36_c00387{left:241.600000pt;}
.x8f_c00387{left:242.533333pt;}
.x35_c00387{left:243.866667pt;}
.x1d_c00387{left:245.733333pt;}
.xe_c00387{left:246.666667pt;}
.x5_c00387{left:248.133333pt;}
.x83_c00387{left:249.200000pt;}
.x47_c00387{left:250.800000pt;}
.x2a_c00387{left:252.133333pt;}
.x42_c00387{left:255.066667pt;}
.x24_c00387{left:256.133333pt;}
.x8b_c00387{left:257.733333pt;}
.x37_c00387{left:258.933333pt;}
.x89_c00387{left:260.266667pt;}
.x3d_c00387{left:261.200000pt;}
.xa5_c00387{left:262.666667pt;}
.x76_c00387{left:264.000000pt;}
.x5c_c00387{left:266.533333pt;}
.x57_c00387{left:267.866667pt;}
.x2b_c00387{left:270.400000pt;}
.x15_c00387{left:272.133333pt;}
.xf_c00387{left:274.133333pt;}
.x25_c00387{left:276.000000pt;}
.x19_c00387{left:277.200000pt;}
.x95_c00387{left:280.400000pt;}
.xa6_c00387{left:281.866667pt;}
.x84_c00387{left:283.066667pt;}
.x58_c00387{left:284.533333pt;}
.x1e_c00387{left:285.733333pt;}
.x38_c00387{left:288.666667pt;}
.x4b_c00387{left:290.266667pt;}
.x8c_c00387{left:292.000000pt;}
.x52_c00387{left:293.600000pt;}
.x16_c00387{left:295.466667pt;}
.x6_c00387{left:297.466667pt;}
.x77_c00387{left:298.533333pt;}
.x7c_c00387{left:300.800000pt;}
.x80_c00387{left:301.733333pt;}
.x43_c00387{left:304.933333pt;}
.x30_c00387{left:307.066667pt;}
.x78_c00387{left:308.133333pt;}
.x48_c00387{left:311.066667pt;}
.x3e_c00387{left:312.133333pt;}
.x9d_c00387{left:313.200000pt;}
.x1a_c00387{left:314.266667pt;}
.x7_c00387{left:315.733333pt;}
.x1f_c00387{left:317.066667pt;}
.x66_c00387{left:320.133333pt;}
.x7d_c00387{left:321.333333pt;}
.x4c_c00387{left:322.266667pt;}
.x70_c00387{left:323.333333pt;}
.x6a_c00387{left:324.266667pt;}
.x26_c00387{left:325.600000pt;}
.x5d_c00387{left:327.333333pt;}
.x31_c00387{left:330.800000pt;}
.x59_c00387{left:333.200000pt;}
.x81_c00387{left:335.333333pt;}
.x39_c00387{left:336.666667pt;}
.x10_c00387{left:338.133333pt;}
.x27_c00387{left:339.066667pt;}
.x5e_c00387{left:340.400000pt;}
.x2c_c00387{left:341.466667pt;}
.x8_c00387{left:342.666667pt;}
.x20_c00387{left:344.533333pt;}
.x6b_c00387{left:345.733333pt;}
.x67_c00387{left:346.666667pt;}
.x28_c00387{left:350.933333pt;}
.xa0_c00387{left:352.800000pt;}
.x85_c00387{left:353.866667pt;}
.x8a_c00387{left:356.000000pt;}
.x9_c00387{left:357.333333pt;}
.x71_c00387{left:360.800000pt;}
.x6c_c00387{left:362.000000pt;}
.x99_c00387{left:364.000000pt;}
.x68_c00387{left:364.933333pt;}
.x11_c00387{left:367.866667pt;}
.x53_c00387{left:368.800000pt;}
.x5a_c00387{left:370.000000pt;}
.x64_c00387{left:372.133333pt;}
.x1b_c00387{left:373.466667pt;}
.x2d_c00387{left:374.400000pt;}
.x7e_c00387{left:375.733333pt;}
.x49_c00387{left:379.600000pt;}
.x7b_c00387{left:380.933333pt;}
.x3f_c00387{left:381.866667pt;}
.x61_c00387{left:383.600000pt;}
.x3a_c00387{left:385.333333pt;}
.x2_c00387{left:386.533333pt;}
.x32_c00387{left:390.266667pt;}
.x44_c00387{left:392.533333pt;}
.x69_c00387{left:394.400000pt;}
.x72_c00387{left:395.333333pt;}
.xa_c00387{left:398.000000pt;}
.x3b_c00387{left:400.400000pt;}
.x29_c00387{left:402.533333pt;}
.x90_c00387{left:404.266667pt;}
.x4d_c00387{left:405.466667pt;}
.x6d_c00387{left:407.733333pt;}
.x17_c00387{left:409.733333pt;}
.x5b_c00387{left:410.666667pt;}
.x2e_c00387{left:413.466667pt;}
.x45_c00387{left:414.933333pt;}
.x40_c00387{left:417.333333pt;}
.x86_c00387{left:418.800000pt;}
.x4e_c00387{left:421.200000pt;}
.x92_c00387{left:423.066667pt;}
.x88_c00387{left:424.533333pt;}
.xa1_c00387{left:426.800000pt;}
.xb_c00387{left:427.733333pt;}
.x9e_c00387{left:428.800000pt;}
.x33_c00387{left:431.200000pt;}
.x5f_c00387{left:435.066667pt;}
.x73_c00387{left:436.533333pt;}
.x65_c00387{left:438.000000pt;}
.x12_c00387{left:440.533333pt;}
.xa2_c00387{left:442.800000pt;}
.x1c_c00387{left:443.866667pt;}
.xc_c00387{left:445.333333pt;}
.x79_c00387{left:447.600000pt;}
.x54_c00387{left:449.466667pt;}
.x8d_c00387{left:451.333333pt;}
.x74_c00387{left:452.800000pt;}
.x46_c00387{left:454.933333pt;}
.x3c_c00387{left:457.733333pt;}
.x4f_c00387{left:458.666667pt;}
.xa7_c00387{left:461.333333pt;}
.x13_c00387{left:462.266667pt;}
.x82_c00387{left:463.733333pt;}
.x6e_c00387{left:466.666667pt;}
.x9b_c00387{left:470.400000pt;}
.x97_c00387{left:471.333333pt;}
.xe2_c00387{left:489.866667pt;}
.xf4_c00387{left:492.133333pt;}
.x145_c00387{left:495.066667pt;}
.xf8_c00387{left:502.933333pt;}
.xaa_c00387{left:504.666667pt;}
.xd4_c00387{left:505.600000pt;}
.x101_c00387{left:506.666667pt;}
.x148_c00387{left:510.400000pt;}
.x150_c00387{left:511.333333pt;}
.x128_c00387{left:517.200000pt;}
.x133_c00387{left:518.666667pt;}
.xba_c00387{left:521.466667pt;}
.xf9_c00387{left:522.400000pt;}
.xc5_c00387{left:523.333333pt;}
.x10c_c00387{left:527.600000pt;}
.xff_c00387{left:528.533333pt;}
.x109_c00387{left:530.800000pt;}
.xdb_c00387{left:532.133333pt;}
.xf5_c00387{left:533.066667pt;}
.xec_c00387{left:534.000000pt;}
.x13d_c00387{left:535.866667pt;}
.x12c_c00387{left:536.800000pt;}
.x134_c00387{left:537.866667pt;}
.xab_c00387{left:539.200000pt;}
.xbb_c00387{left:540.666667pt;}
.x152_c00387{left:542.133333pt;}
.xc6_c00387{left:543.200000pt;}
.x112_c00387{left:544.266667pt;}
.xf1_c00387{left:545.466667pt;}
.xb3_c00387{left:548.266667pt;}
.x121_c00387{left:552.933333pt;}
.x102_c00387{left:554.000000pt;}
.x10e_c00387{left:555.200000pt;}
.xe3_c00387{left:556.800000pt;}
.xac_c00387{left:558.133333pt;}
.x149_c00387{left:559.333333pt;}
.xdc_c00387{left:561.200000pt;}
.x116_c00387{left:563.200000pt;}
.x131_c00387{left:564.933333pt;}
.x10a_c00387{left:566.666667pt;}
.xf6_c00387{left:568.266667pt;}
.x146_c00387{left:569.600000pt;}
.x130_c00387{left:571.066667pt;}
.xad_c00387{left:572.266667pt;}
.xc7_c00387{left:575.200000pt;}
.xcd_c00387{left:578.666667pt;}
.xe6_c00387{left:580.133333pt;}
.xbc_c00387{left:581.600000pt;}
.xc8_c00387{left:583.200000pt;}
.x154_c00387{left:584.400000pt;}
.xf2_c00387{left:585.466667pt;}
.x13e_c00387{left:586.400000pt;}
.xd5_c00387{left:588.800000pt;}
.x11a_c00387{left:591.200000pt;}
.xd8_c00387{left:592.133333pt;}
.xed_c00387{left:593.466667pt;}
.xdd_c00387{left:594.800000pt;}
.x135_c00387{left:595.733333pt;}
.xce_c00387{left:596.933333pt;}
.x14a_c00387{left:599.066667pt;}
.x11f_c00387{left:600.266667pt;}
.xeb_c00387{left:601.733333pt;}
.xf3_c00387{left:602.800000pt;}
.x122_c00387{left:604.400000pt;}
.xc9_c00387{left:606.266667pt;}
.xb4_c00387{left:608.133333pt;}
.x142_c00387{left:610.800000pt;}
.x129_c00387{left:613.200000pt;}
.x137_c00387{left:614.133333pt;}
.x123_c00387{left:616.266667pt;}
.xae_c00387{left:617.733333pt;}
.x117_c00387{left:619.200000pt;}
.xde_c00387{left:620.400000pt;}
.x156_c00387{left:621.733333pt;}
.xbd_c00387{left:622.933333pt;}
.xee_c00387{left:624.533333pt;}
.x10f_c00387{left:626.133333pt;}
.xe7_c00387{left:627.866667pt;}
.x13f_c00387{left:629.600000pt;}
.xb5_c00387{left:631.866667pt;}
.x138_c00387{left:633.066667pt;}
.xca_c00387{left:634.133333pt;}
.xaf_c00387{left:636.000000pt;}
.xbe_c00387{left:637.600000pt;}
.x140_c00387{left:638.533333pt;}
.x132_c00387{left:639.866667pt;}
.xcf_c00387{left:640.800000pt;}
.xe8_c00387{left:642.000000pt;}
.x151_c00387{left:643.733333pt;}
.xef_c00387{left:644.666667pt;}
.x104_c00387{left:646.133333pt;}
.xdf_c00387{left:648.266667pt;}
.xfa_c00387{left:650.666667pt;}
.x103_c00387{left:651.866667pt;}
.x124_c00387{left:654.000000pt;}
.xbf_c00387{left:654.933333pt;}
.x136_c00387{left:656.133333pt;}
.x13c_c00387{left:658.533333pt;}
.xd9_c00387{left:659.600000pt;}
.x113_c00387{left:661.466667pt;}
.x10d_c00387{left:663.333333pt;}
.x12a_c00387{left:665.200000pt;}
.x139_c00387{left:666.266667pt;}
.xb0_c00387{left:667.333333pt;}
.xc0_c00387{left:668.400000pt;}
.x11b_c00387{left:669.600000pt;}
.x141_c00387{left:670.933333pt;}
.xfc_c00387{left:672.266667pt;}
.x118_c00387{left:674.533333pt;}
.x14b_c00387{left:676.133333pt;}
.xfb_c00387{left:677.200000pt;}
.x105_c00387{left:678.800000pt;}
.xe9_c00387{left:680.133333pt;}
.x120_c00387{left:681.600000pt;}
.xb6_c00387{left:684.400000pt;}
.x12d_c00387{left:685.466667pt;}
.x125_c00387{left:686.533333pt;}
.xcb_c00387{left:687.866667pt;}
.xfd_c00387{left:689.200000pt;}
.xd0_c00387{left:690.400000pt;}
.x12e_c00387{left:691.866667pt;}
.x143_c00387{left:692.800000pt;}
.xe4_c00387{left:693.733333pt;}
.x157_c00387{left:694.666667pt;}
.xe0_c00387{left:696.266667pt;}
.xd1_c00387{left:698.133333pt;}
.x110_c00387{left:699.466667pt;}
.x126_c00387{left:703.466667pt;}
.xb7_c00387{left:705.200000pt;}
.xd6_c00387{left:706.400000pt;}
.x11c_c00387{left:707.333333pt;}
.xc1_c00387{left:709.333333pt;}
.x12f_c00387{left:711.066667pt;}
.x106_c00387{left:713.333333pt;}
.xe1_c00387{left:714.533333pt;}
.x14e_c00387{left:717.733333pt;}
.xd7_c00387{left:718.933333pt;}
.xe5_c00387{left:720.933333pt;}
.xc2_c00387{left:722.400000pt;}
.x14c_c00387{left:723.466667pt;}
.x12b_c00387{left:727.600000pt;}
.xd2_c00387{left:728.533333pt;}
.x144_c00387{left:729.600000pt;}
.xea_c00387{left:732.266667pt;}
.x14f_c00387{left:733.466667pt;}
.x119_c00387{left:734.933333pt;}
.xc3_c00387{left:739.066667pt;}
.x107_c00387{left:740.266667pt;}
.xb8_c00387{left:742.666667pt;}
.xd3_c00387{left:744.266667pt;}
.xb1_c00387{left:745.733333pt;}
.x11d_c00387{left:746.933333pt;}
.xb9_c00387{left:749.066667pt;}
.x114_c00387{left:750.666667pt;}
.xc4_c00387{left:752.133333pt;}
.xf7_c00387{left:753.466667pt;}
.xda_c00387{left:754.533333pt;}
.x13a_c00387{left:755.866667pt;}
.x158_c00387{left:756.933333pt;}
.x100_c00387{left:757.866667pt;}
.x153_c00387{left:759.466667pt;}
.xb2_c00387{left:761.466667pt;}
.x155_c00387{left:763.600000pt;}
.x14d_c00387{left:766.666667pt;}
.x111_c00387{left:767.600000pt;}
.x147_c00387{left:769.866667pt;}
.xfe_c00387{left:771.733333pt;}
.x108_c00387{left:773.200000pt;}
.xcc_c00387{left:774.266667pt;}
.xf0_c00387{left:775.200000pt;}
.x11e_c00387{left:777.600000pt;}
.x127_c00387{left:778.933333pt;}
.x10b_c00387{left:781.066667pt;}
.x13b_c00387{left:782.400000pt;}
.x115_c00387{left:787.466667pt;}
}





/* 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_c00388 {
    display:none;
  }
  .loading-indicator_c00388.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00388 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_c00388 { 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_c00388" -> "#page-container .classname_c00388")
 */
.pf_c00388 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00388 { /* 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_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00388 { /* 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_c00388 { /* 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_c00388 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00388 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00388 {overflow:visible;}
  }
}
.c_c00388 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00388 { /* 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_c00388:after { /* webkit #35443 */
  content: '';
}
.t_c00388:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00388 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 */
}
.__c00388 { /* 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_c00388 { /* info for Javascript */
  display:none;
}
.l_c00388 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00388 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00388 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00388: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_c00388 {
    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_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00388.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_c00388 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00388;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.000000;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;}
.mf5_c00388{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00388{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00388{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m103_c00388{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00388{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m56_c00388{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00388{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m43_c00388{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m27_c00388{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00388{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00388{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00388{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00388{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mac_c00388{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00388{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m111_c00388{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m64_c00388{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00388{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m105_c00388{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m84_c00388{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00388{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me8_c00388{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00388{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m4_c00388{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mee_c00388{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m114_c00388{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00388{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00388{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00388{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00388{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mba_c00388{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00388{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m9_c00388{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mff_c00388{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m73_c00388{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00388{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m51_c00388{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00388{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00388{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m3_c00388{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00388{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m87_c00388{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00388{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00388{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00388{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00388{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00388{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m75_c00388{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00388{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m15_c00388{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00388{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00388{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m10_c00388{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00388{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00388{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m104_c00388{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00388{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md8_c00388{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00388{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00388{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m109_c00388{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2_c00388{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00388{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00388{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m25_c00388{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00388{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m116_c00388{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.md7_c00388{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m85_c00388{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5_c00388{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m93_c00388{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00388{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00388{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00388{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00388{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00388{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00388{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m21_c00388{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mce_c00388{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m47_c00388{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m42_c00388{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00388{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00388{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m52_c00388{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00388{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m76_c00388{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m28_c00388{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m57_c00388{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m117_c00388{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m68_c00388{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m31_c00388{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00388{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m6_c00388{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m16_c00388{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m77_c00388{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m90_c00388{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me4_c00388{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7_c00388{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma_c00388{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m40_c00388{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m115_c00388{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00388{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc_c00388{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m8_c00388{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00388{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00388{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m23_c00388{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mf_c00388{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m26_c00388{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00388{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m78_c00388{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00388{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m98_c00388{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m30_c00388{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md2_c00388{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.med_c00388{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00388{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m41_c00388{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00388{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00388{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m20_c00388{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m19_c00388{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m102_c00388{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00388{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00388{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00388{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mec_c00388{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00388{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00388{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mae_c00388{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m39_c00388{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00388{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me6_c00388{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m29_c00388{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mab_c00388{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m32_c00388{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00388{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m11_c00388{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m37_c00388{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m35_c00388{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mb_c00388{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00388{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m86_c00388{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m46_c00388{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00388{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m100_c00388{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00388{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md_c00388{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00388{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00388{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md3_c00388{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m55_c00388{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m72_c00388{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00388{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m33_c00388{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m99_c00388{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00388{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00388{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m54_c00388{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.maa_c00388{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00388{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m12_c00388{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00388{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00388{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00388{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00388{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00388{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m80_c00388{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00388{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m17_c00388{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00388{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00388{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00388{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00388{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m53_c00388{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m83_c00388{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m118_c00388{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m101_c00388{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00388{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m50_c00388{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00388{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m34_c00388{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m79_c00388{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m24_c00388{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00388{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.maf_c00388{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m18_c00388{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m74_c00388{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m44_c00388{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00388{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.me2_c00388{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m59_c00388{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m92_c00388{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m22_c00388{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00388{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m91_c00388{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me9_c00388{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00388{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00388{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mde_c00388{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00388{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00388{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m94_c00388{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00388{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m89_c00388{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me_c00388{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00388{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00388{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mad_c00388{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m14_c00388{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00388{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m13_c00388{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m65_c00388{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00388{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00388{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m60_c00388{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m95_c00388{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m58_c00388{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m110_c00388{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m113_c00388{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00388{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m38_c00388{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00388{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00388{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m112_c00388{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md0_c00388{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00388{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00388{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00388{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);}
.mb0_c00388{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m96_c00388{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me1_c00388{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md9_c00388{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1_c00388{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md4_c00388{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00388{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m82_c00388{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md6_c00388{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00388{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m69_c00388{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m49_c00388{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m97_c00388{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00388{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m66_c00388{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m107_c00388{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m45_c00388{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m106_c00388{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mef_c00388{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00388{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m48_c00388{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m67_c00388{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00388{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.meb_c00388{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.md1_c00388{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00388{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mda_c00388{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00388{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00388{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.me5_c00388{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m88_c00388{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.me3_c00388{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mca_c00388{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m36_c00388{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00388{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00388{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00388{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00388{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00388{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m108_c00388{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.md5_c00388{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00388{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.me0_c00388{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m61_c00388{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m119_c00388{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m63_c00388{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00388{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m62_c00388{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.me7_c00388{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mea_c00388{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m81_c00388{transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);}
.m71_c00388{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.m70_c00388{transform:matrix(0.851000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.851000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.851000,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls0_c00388{letter-spacing:0.000000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{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__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00388{word-spacing:-15.846989px;}
.wsd_c00388{word-spacing:-3.445115px;}
.ws6_c00388{word-spacing:-3.421053px;}
.ws5_c00388{word-spacing:-1.718750px;}
.wse_c00388{word-spacing:0.000000px;}
.wsb_c00388{word-spacing:4.156334px;}
.ws7_c00388{word-spacing:4.432718px;}
.ws1_c00388{word-spacing:8.703257px;}
.ws3_c00388{word-spacing:13.706199px;}
.wsc_c00388{word-spacing:16.186246px;}
.ws8_c00388{word-spacing:16.833333px;}
.ws2_c00388{word-spacing:19.166667px;}
.ws0_c00388{word-spacing:19.833333px;}
.ws9_c00388{word-spacing:34.642857px;}
.wsa_c00388{word-spacing:40.000000px;}
.fc0_c00388{color:transparent;}
.fs5_c00388{font-size:24.000000px;}
.fs6_c00388{font-size:30.000000px;}
.fs8_c00388{font-size:48.000000px;}
.fs7_c00388{font-size:54.000000px;}
.fs4_c00388{font-size:60.000000px;}
.fs3_c00388{font-size:66.000000px;}
.fs2_c00388{font-size:72.000000px;}
.fs1_c00388{font-size:78.000000px;}
.fs0_c00388{font-size:84.000000px;}
.y0_c00388{bottom:0.000000px;}
.y69_c00388{bottom:169.950000px;}
.y68_c00388{bottom:188.250000px;}
.y36_c00388{bottom:190.500000px;}
.y35_c00388{bottom:205.650000px;}
.y67_c00388{bottom:206.550000px;}
.y34_c00388{bottom:219.300000px;}
.y66_c00388{bottom:224.250000px;}
.y33_c00388{bottom:233.700000px;}
.y32_c00388{bottom:248.100000px;}
.y65_c00388{bottom:251.700000px;}
.y31_c00388{bottom:262.950000px;}
.y64_c00388{bottom:271.500000px;}
.y30_c00388{bottom:277.350000px;}
.y63_c00388{bottom:288.000000px;}
.y2f_c00388{bottom:291.750000px;}
.y62_c00388{bottom:306.000000px;}
.y2e_c00388{bottom:306.150000px;}
.y2d_c00388{bottom:320.550000px;}
.y61_c00388{bottom:324.300000px;}
.y2c_c00388{bottom:335.250000px;}
.y60_c00388{bottom:342.300000px;}
.y2b_c00388{bottom:349.650000px;}
.y5f_c00388{bottom:360.000000px;}
.y2a_c00388{bottom:364.350000px;}
.y5e_c00388{bottom:378.300000px;}
.y29_c00388{bottom:378.450000px;}
.y28_c00388{bottom:393.150000px;}
.y5d_c00388{bottom:396.000000px;}
.y27_c00388{bottom:407.850000px;}
.y5c_c00388{bottom:413.700000px;}
.y26_c00388{bottom:421.500000px;}
.y5b_c00388{bottom:431.700000px;}
.y5a_c00388{bottom:449.700000px;}
.y24_c00388{bottom:466.200000px;}
.y59_c00388{bottom:467.700000px;}
.y58_c00388{bottom:485.700000px;}
.y23_c00388{bottom:489.150000px;}
.y22_c00388{bottom:507.150000px;}
.y57_c00388{bottom:508.350000px;}
.y56_c00388{bottom:522.750000px;}
.y21_c00388{bottom:524.850000px;}
.y55_c00388{bottom:540.300000px;}
.y20_c00388{bottom:543.150000px;}
.y54_c00388{bottom:555.750000px;}
.y1f_c00388{bottom:560.850000px;}
.y53_c00388{bottom:573.450000px;}
.y25_c00388{bottom:580.650000px;}
.y1e_c00388{bottom:588.900000px;}
.y52_c00388{bottom:596.100000px;}
.y1d_c00388{bottom:607.650000px;}
.y51_c00388{bottom:613.800000px;}
.y1c_c00388{bottom:618.150000px;}
.y50_c00388{bottom:633.300000px;}
.y1b_c00388{bottom:645.150000px;}
.y4f_c00388{bottom:649.800000px;}
.y1a_c00388{bottom:667.500000px;}
.y4e_c00388{bottom:667.800000px;}
.y4d_c00388{bottom:685.800000px;}
.y19_c00388{bottom:701.250000px;}
.y4c_c00388{bottom:703.500000px;}
.y4b_c00388{bottom:725.850000px;}
.y18_c00388{bottom:738.750000px;}
.y4a_c00388{bottom:744.150000px;}
.y17_c00388{bottom:760.950000px;}
.y49_c00388{bottom:771.000000px;}
.y16_c00388{bottom:778.650000px;}
.y48_c00388{bottom:789.000000px;}
.y15_c00388{bottom:796.350000px;}
.y47_c00388{bottom:807.000000px;}
.y14_c00388{bottom:814.350000px;}
.y46_c00388{bottom:824.700000px;}
.y13_c00388{bottom:832.350000px;}
.y45_c00388{bottom:842.700000px;}
.y12_c00388{bottom:850.350000px;}
.y44_c00388{bottom:860.400000px;}
.y11_c00388{bottom:872.400000px;}
.y43_c00388{bottom:878.400000px;}
.y10_c00388{bottom:890.100000px;}
.y42_c00388{bottom:900.750000px;}
.yf_c00388{bottom:908.400000px;}
.y41_c00388{bottom:923.100000px;}
.ye_c00388{bottom:926.400000px;}
.yd_c00388{bottom:944.400000px;}
.y40_c00388{bottom:944.700000px;}
.yc_c00388{bottom:962.100000px;}
.y3f_c00388{bottom:963.000000px;}
.yb_c00388{bottom:980.400000px;}
.y3e_c00388{bottom:985.200000px;}
.ya_c00388{bottom:998.100000px;}
.y3d_c00388{bottom:1002.900000px;}
.y9_c00388{bottom:1016.100000px;}
.y3c_c00388{bottom:1025.250000px;}
.y8_c00388{bottom:1034.100000px;}
.y3b_c00388{bottom:1047.600000px;}
.y7_c00388{bottom:1051.800000px;}
.y3a_c00388{bottom:1065.900000px;}
.y6_c00388{bottom:1070.100000px;}
.y39_c00388{bottom:1083.900000px;}
.y5_c00388{bottom:1088.100000px;}
.y4_c00388{bottom:1105.800000px;}
.y38_c00388{bottom:1105.950000px;}
.y3_c00388{bottom:1123.500000px;}
.y37_c00388{bottom:1123.950000px;}
.y2_c00388{bottom:1149.900000px;}
.y1_c00388{bottom:1150.950000px;}
.h7_c00388{height:24.000000px;}
.h8_c00388{height:30.000000px;}
.ha_c00388{height:48.000000px;}
.h9_c00388{height:54.000000px;}
.h6_c00388{height:60.000000px;}
.h5_c00388{height:66.000000px;}
.h4_c00388{height:72.000000px;}
.h3_c00388{height:78.000000px;}
.h2_c00388{height:84.000000px;}
.h0_c00388{height:1269.720063px;}
.h1_c00388{height:1269.750000px;}
.w0_c00388{width:960.480010px;}
.w1_c00388{width:960.750000px;}
.x0_c00388{left:0.000000px;}
.xa7_c00388{left:79.200000px;}
.xa4_c00388{left:83.100000px;}
.x85_c00388{left:84.600000px;}
.x6d_c00388{left:85.650000px;}
.x64_c00388{left:87.450000px;}
.x50_c00388{left:88.500000px;}
.x68_c00388{left:90.300000px;}
.xa1_c00388{left:98.700000px;}
.x25_c00388{left:101.400000px;}
.x75_c00388{left:104.700000px;}
.x60_c00388{left:106.050000px;}
.xf_c00388{left:107.100000px;}
.x3_c00388{left:109.050000px;}
.x92_c00388{left:113.100000px;}
.x8d_c00388{left:115.800000px;}
.x86_c00388{left:118.500000px;}
.x7f_c00388{left:120.600000px;}
.x44_c00388{left:123.600000px;}
.x9a_c00388{left:124.950000px;}
.x9f_c00388{left:126.450000px;}
.x82_c00388{left:127.500000px;}
.x4c_c00388{left:128.550000px;}
.x17_c00388{left:132.300000px;}
.x89_c00388{left:134.100000px;}
.x2d_c00388{left:135.150000px;}
.x96_c00388{left:137.400000px;}
.x3e_c00388{left:138.450000px;}
.x98_c00388{left:141.000000px;}
.x7b_c00388{left:142.200000px;}
.x76_c00388{left:144.000000px;}
.x32_c00388{left:145.350000px;}
.x26_c00388{left:147.150000px;}
.x10_c00388{left:148.800000px;}
.x51_c00388{left:150.000000px;}
.x18_c00388{left:151.800000px;}
.x1f_c00388{left:153.000000px;}
.x9_c00388{left:155.100000px;}
.x9c_c00388{left:159.450000px;}
.x41_c00388{left:161.250000px;}
.x4a_c00388{left:163.200000px;}
.x56_c00388{left:164.550000px;}
.xa0_c00388{left:166.350000px;}
.x59_c00388{left:167.400000px;}
.x7e_c00388{left:168.450000px;}
.xa8_c00388{left:169.950000px;}
.x45_c00388{left:174.000000px;}
.x80_c00388{left:175.350000px;}
.xaa_c00388{left:176.550000px;}
.x52_c00388{left:178.500000px;}
.xa_c00388{left:180.300000px;}
.x27_c00388{left:182.100000px;}
.x5c_c00388{left:183.600000px;}
.x20_c00388{left:184.650000px;}
.x11_c00388{left:186.600000px;}
.x4_c00388{left:191.400000px;}
.x63_c00388{left:192.600000px;}
.x67_c00388{left:193.650000px;}
.x42_c00388{left:196.500000px;}
.x72_c00388{left:197.700000px;}
.x46_c00388{left:199.950000px;}
.x4f_c00388{left:201.450000px;}
.x8e_c00388{left:204.600000px;}
.x19_c00388{left:206.250000px;}
.x21_c00388{left:209.550000px;}
.x6c_c00388{left:211.350000px;}
.x69_c00388{left:213.000000px;}
.x61_c00388{left:214.500000px;}
.x9b_c00388{left:215.700000px;}
.x3f_c00388{left:217.350000px;}
.x5d_c00388{left:219.900000px;}
.x2e_c00388{left:220.950000px;}
.x5a_c00388{left:223.500000px;}
.x65_c00388{left:225.000000px;}
.xb_c00388{left:226.050000px;}
.x53_c00388{left:228.150000px;}
.x93_c00388{left:229.500000px;}
.x1a_c00388{left:230.700000px;}
.x77_c00388{left:232.500000px;}
.x12_c00388{left:234.150000px;}
.x39_c00388{left:236.700000px;}
.xa5_c00388{left:238.800000px;}
.x83_c00388{left:240.450000px;}
.x66_c00388{left:243.750000px;}
.x78_c00388{left:244.800000px;}
.x70_c00388{left:245.850000px;}
.x57_c00388{left:247.350000px;}
.x33_c00388{left:249.000000px;}
.x1b_c00388{left:250.500000px;}
.x13_c00388{left:252.150000px;}
.x8a_c00388{left:255.450000px;}
.x7c_c00388{left:258.000000px;}
.x5_c00388{left:259.500000px;}
.x34_c00388{left:260.850000px;}
.x79_c00388{left:263.100000px;}
.x22_c00388{left:264.300000px;}
.x73_c00388{left:265.350000px;}
.x28_c00388{left:266.700000px;}
.x97_c00388{left:267.750000px;}
.x8f_c00388{left:270.150000px;}
.x4b_c00388{left:272.250000px;}
.x94_c00388{left:273.450000px;}
.x71_c00388{left:275.400000px;}
.x6_c00388{left:276.450000px;}
.x35_c00388{left:278.100000px;}
.x99_c00388{left:280.050000px;}
.x3a_c00388{left:281.400000px;}
.x2f_c00388{left:284.250000px;}
.x4d_c00388{left:285.900000px;}
.x47_c00388{left:287.100000px;}
.x29_c00388{left:288.600000px;}
.x6e_c00388{left:291.900000px;}
.x5e_c00388{left:294.000000px;}
.x48_c00388{left:296.850000px;}
.x3b_c00388{left:300.450000px;}
.x23_c00388{left:302.400000px;}
.x6a_c00388{left:304.200000px;}
.x2a_c00388{left:305.850000px;}
.x1c_c00388{left:307.800000px;}
.x87_c00388{left:309.000000px;}
.x36_c00388{left:310.800000px;}
.x6b_c00388{left:315.300000px;}
.x90_c00388{left:318.000000px;}
.x40_c00388{left:319.950000px;}
.x3c_c00388{left:324.900000px;}
.x81_c00388{left:326.250000px;}
.x14_c00388{left:327.450000px;}
.x7_c00388{left:329.700000px;}
.x95_c00388{left:331.800000px;}
.x91_c00388{left:333.150000px;}
.xc_c00388{left:336.900000px;}
.xac_c00388{left:338.400000px;}
.x1_c00388{left:339.450000px;}
.x54_c00388{left:341.850000px;}
.x30_c00388{left:343.350000px;}
.x7d_c00388{left:347.700000px;}
.x4e_c00388{left:348.900000px;}
.x8b_c00388{left:351.600000px;}
.x58_c00388{left:353.550000px;}
.x2b_c00388{left:355.500000px;}
.x7a_c00388{left:358.500000px;}
.xa9_c00388{left:359.700000px;}
.x49_c00388{left:362.700000px;}
.x15_c00388{left:364.500000px;}
.x8_c00388{left:365.700000px;}
.x9d_c00388{left:366.900000px;}
.x84_c00388{left:368.700000px;}
.xa2_c00388{left:370.500000px;}
.x3d_c00388{left:371.700000px;}
.x31_c00388{left:372.900000px;}
.xa6_c00388{left:375.150000px;}
.xd_c00388{left:376.800000px;}
.x6f_c00388{left:378.300000px;}
.x8c_c00388{left:379.650000px;}
.x1d_c00388{left:381.300000px;}
.x5b_c00388{left:383.700000px;}
.x37_c00388{left:386.400000px;}
.x16_c00388{left:388.950000px;}
.xa3_c00388{left:390.600000px;}
.x62_c00388{left:391.650000px;}
.xab_c00388{left:394.950000px;}
.x2c_c00388{left:396.150000px;}
.x43_c00388{left:397.950000px;}
.x74_c00388{left:400.950000px;}
.x1e_c00388{left:402.150000px;}
.x24_c00388{left:407.100000px;}
.x88_c00388{left:409.800000px;}
.x5f_c00388{left:411.000000px;}
.xe_c00388{left:412.050000px;}
.x9e_c00388{left:417.000000px;}
.x55_c00388{left:420.000000px;}
.x38_c00388{left:422.400000px;}
.x143_c00388{left:442.800000px;}
.x122_c00388{left:443.850000px;}
.x117_c00388{left:445.350000px;}
.xf4_c00388{left:446.400000px;}
.x145_c00388{left:460.050000px;}
.x137_c00388{left:461.100000px;}
.x102_c00388{left:462.450000px;}
.xde_c00388{left:463.950000px;}
.xbe_c00388{left:465.600000px;}
.xad_c00388{left:466.950000px;}
.x120_c00388{left:472.800000px;}
.xc9_c00388{left:482.400000px;}
.xb8_c00388{left:484.200000px;}
.x13a_c00388{left:486.750000px;}
.xf5_c00388{left:489.300000px;}
.x118_c00388{left:491.400000px;}
.xec_c00388{left:493.500000px;}
.xdf_c00388{left:494.850000px;}
.x12a_c00388{left:496.350000px;}
.x125_c00388{left:497.850000px;}
.xe8_c00388{left:499.650000px;}
.xae_c00388{left:500.850000px;}
.xfe_c00388{left:502.350000px;}
.xf1_c00388{left:505.350000px;}
.x10b_c00388{left:506.400000px;}
.xc4_c00388{left:508.200000px;}
.x119_c00388{left:510.750000px;}
.xbf_c00388{left:513.150000px;}
.xca_c00388{left:516.300000px;}
.x12e_c00388{left:517.350000px;}
.x114_c00388{left:519.450000px;}
.x126_c00388{left:521.250000px;}
.xd8_c00388{left:522.300000px;}
.xe9_c00388{left:523.800000px;}
.xf6_c00388{left:525.000000px;}
.xf9_c00388{left:527.100000px;}
.xb3_c00388{left:528.900000px;}
.xcf_c00388{left:530.700000px;}
.xed_c00388{left:534.600000px;}
.xe0_c00388{left:535.950000px;}
.x12f_c00388{left:537.450000px;}
.xb4_c00388{left:539.400000px;}
.x13b_c00388{left:540.450000px;}
.x115_c00388{left:542.850000px;}
.xf2_c00388{left:546.000000px;}
.x127_c00388{left:549.750000px;}
.xb9_c00388{left:551.100000px;}
.xd9_c00388{left:553.950000px;}
.x132_c00388{left:555.300000px;}
.xff_c00388{left:557.400000px;}
.xd0_c00388{left:559.200000px;}
.xd6_c00388{left:561.900000px;}
.xc5_c00388{left:562.950000px;}
.x10c_c00388{left:565.050000px;}
.x11c_c00388{left:567.000000px;}
.xe3_c00388{left:568.350000px;}
.xfa_c00388{left:570.000000px;}
.xaf_c00388{left:572.100000px;}
.x123_c00388{left:573.750000px;}
.xcb_c00388{left:575.400000px;}
.xda_c00388{left:578.850000px;}
.x135_c00388{left:580.650000px;}
.xd5_c00388{left:582.600000px;}
.xc6_c00388{left:584.850000px;}
.xea_c00388{left:586.800000px;}
.x103_c00388{left:590.700000px;}
.x110_c00388{left:592.200000px;}
.xb5_c00388{left:593.400000px;}
.xc0_c00388{left:595.200000px;}
.x116_c00388{left:597.600000px;}
.x13e_c00388{left:598.800000px;}
.x146_c00388{left:600.450000px;}
.xd1_c00388{left:603.450000px;}
.xfb_c00388{left:605.250000px;}
.xee_c00388{left:606.600000px;}
.x128_c00388{left:608.100000px;}
.xe1_c00388{left:611.850000px;}
.xb0_c00388{left:613.500000px;}
.xba_c00388{left:616.950000px;}
.x108_c00388{left:618.900000px;}
.xe4_c00388{left:621.600000px;}
.x100_c00388{left:623.700000px;}
.x104_c00388{left:625.650000px;}
.x144_c00388{left:627.900000px;}
.xb6_c00388{left:629.400000px;}
.x10d_c00388{left:632.100000px;}
.xf3_c00388{left:635.700000px;}
.xc1_c00388{left:637.650000px;}
.x12b_c00388{left:638.850000px;}
.xc7_c00388{left:644.250000px;}
.x105_c00388{left:645.450000px;}
.x101_c00388{left:646.800000px;}
.x141_c00388{left:648.150000px;}
.xcc_c00388{left:649.200000px;}
.x133_c00388{left:651.000000px;}
.xb7_c00388{left:653.100000px;}
.xf7_c00388{left:655.350000px;}
.xdb_c00388{left:658.350000px;}
.xbb_c00388{left:660.450000px;}
.x11d_c00388{left:663.150000px;}
.xef_c00388{left:665.250000px;}
.xc8_c00388{left:667.050000px;}
.x13f_c00388{left:669.750000px;}
.x124_c00388{left:670.950000px;}
.x130_c00388{left:674.250000px;}
.xd2_c00388{left:675.900000px;}
.x134_c00388{left:677.250000px;}
.xfc_c00388{left:679.050000px;}
.x10e_c00388{left:683.250000px;}
.xcd_c00388{left:685.200000px;}
.xbc_c00388{left:686.700000px;}
.xc2_c00388{left:688.050000px;}
.x13c_c00388{left:689.250000px;}
.x138_c00388{left:690.450000px;}
.xe5_c00388{left:691.500000px;}
.xb1_c00388{left:693.750000px;}
.x12c_c00388{left:696.150000px;}
.xdc_c00388{left:698.250000px;}
.x147_c00388{left:701.400000px;}
.xd3_c00388{left:703.950000px;}
.x11e_c00388{left:707.100000px;}
.x106_c00388{left:708.450000px;}
.x111_c00388{left:710.250000px;}
.x121_c00388{left:712.650000px;}
.xd7_c00388{left:715.650000px;}
.xd4_c00388{left:716.850000px;}
.x136_c00388{left:718.200000px;}
.xe6_c00388{left:719.550000px;}
.x13d_c00388{left:721.950000px;}
.x131_c00388{left:723.300000px;}
.x129_c00388{left:724.500000px;}
.x112_c00388{left:726.450000px;}
.x109_c00388{left:727.950000px;}
.xf8_c00388{left:729.600000px;}
.xe2_c00388{left:732.450000px;}
.xf0_c00388{left:733.950000px;}
.x139_c00388{left:739.500000px;}
.xce_c00388{left:740.700000px;}
.x12d_c00388{left:742.200000px;}
.x10f_c00388{left:743.400000px;}
.xdd_c00388{left:744.750000px;}
.xbd_c00388{left:750.000000px;}
.x10a_c00388{left:752.400000px;}
.x113_c00388{left:755.550000px;}
.x2_c00388{left:757.050000px;}
.xb2_c00388{left:758.850000px;}
.xfd_c00388{left:760.800000px;}
.x142_c00388{left:763.050000px;}
.xeb_c00388{left:764.250000px;}
.x107_c00388{left:767.100000px;}
.x11a_c00388{left:768.150000px;}
.x11f_c00388{left:769.800000px;}
.xc3_c00388{left:770.850000px;}
.x148_c00388{left:775.500000px;}
.x140_c00388{left:777.150000px;}
.xe7_c00388{left:780.450000px;}
.x11b_c00388{left:791.850000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws4_c00388{word-spacing:-14.086213pt;}
.wsd_c00388{word-spacing:-3.062324pt;}
.ws6_c00388{word-spacing:-3.040936pt;}
.ws5_c00388{word-spacing:-1.527778pt;}
.wse_c00388{word-spacing:0.000000pt;}
.wsb_c00388{word-spacing:3.694519pt;}
.ws7_c00388{word-spacing:3.940193pt;}
.ws1_c00388{word-spacing:7.736228pt;}
.ws3_c00388{word-spacing:12.183288pt;}
.wsc_c00388{word-spacing:14.387775pt;}
.ws8_c00388{word-spacing:14.962963pt;}
.ws2_c00388{word-spacing:17.037037pt;}
.ws0_c00388{word-spacing:17.629630pt;}
.ws9_c00388{word-spacing:30.793651pt;}
.wsa_c00388{word-spacing:35.555556pt;}
.fs5_c00388{font-size:21.333333pt;}
.fs6_c00388{font-size:26.666667pt;}
.fs8_c00388{font-size:42.666667pt;}
.fs7_c00388{font-size:48.000000pt;}
.fs4_c00388{font-size:53.333333pt;}
.fs3_c00388{font-size:58.666667pt;}
.fs2_c00388{font-size:64.000000pt;}
.fs1_c00388{font-size:69.333333pt;}
.fs0_c00388{font-size:74.666667pt;}
.y0_c00388{bottom:0.000000pt;}
.y69_c00388{bottom:151.066667pt;}
.y68_c00388{bottom:167.333333pt;}
.y36_c00388{bottom:169.333333pt;}
.y35_c00388{bottom:182.800000pt;}
.y67_c00388{bottom:183.600000pt;}
.y34_c00388{bottom:194.933333pt;}
.y66_c00388{bottom:199.333333pt;}
.y33_c00388{bottom:207.733333pt;}
.y32_c00388{bottom:220.533333pt;}
.y65_c00388{bottom:223.733333pt;}
.y31_c00388{bottom:233.733333pt;}
.y64_c00388{bottom:241.333333pt;}
.y30_c00388{bottom:246.533333pt;}
.y63_c00388{bottom:256.000000pt;}
.y2f_c00388{bottom:259.333333pt;}
.y62_c00388{bottom:272.000000pt;}
.y2e_c00388{bottom:272.133333pt;}
.y2d_c00388{bottom:284.933333pt;}
.y61_c00388{bottom:288.266667pt;}
.y2c_c00388{bottom:298.000000pt;}
.y60_c00388{bottom:304.266667pt;}
.y2b_c00388{bottom:310.800000pt;}
.y5f_c00388{bottom:320.000000pt;}
.y2a_c00388{bottom:323.866667pt;}
.y5e_c00388{bottom:336.266667pt;}
.y29_c00388{bottom:336.400000pt;}
.y28_c00388{bottom:349.466667pt;}
.y5d_c00388{bottom:352.000000pt;}
.y27_c00388{bottom:362.533333pt;}
.y5c_c00388{bottom:367.733333pt;}
.y26_c00388{bottom:374.666667pt;}
.y5b_c00388{bottom:383.733333pt;}
.y5a_c00388{bottom:399.733333pt;}
.y24_c00388{bottom:414.400000pt;}
.y59_c00388{bottom:415.733333pt;}
.y58_c00388{bottom:431.733333pt;}
.y23_c00388{bottom:434.800000pt;}
.y22_c00388{bottom:450.800000pt;}
.y57_c00388{bottom:451.866667pt;}
.y56_c00388{bottom:464.666667pt;}
.y21_c00388{bottom:466.533333pt;}
.y55_c00388{bottom:480.266667pt;}
.y20_c00388{bottom:482.800000pt;}
.y54_c00388{bottom:494.000000pt;}
.y1f_c00388{bottom:498.533333pt;}
.y53_c00388{bottom:509.733333pt;}
.y25_c00388{bottom:516.133333pt;}
.y1e_c00388{bottom:523.466667pt;}
.y52_c00388{bottom:529.866667pt;}
.y1d_c00388{bottom:540.133333pt;}
.y51_c00388{bottom:545.600000pt;}
.y1c_c00388{bottom:549.466667pt;}
.y50_c00388{bottom:562.933333pt;}
.y1b_c00388{bottom:573.466667pt;}
.y4f_c00388{bottom:577.600000pt;}
.y1a_c00388{bottom:593.333333pt;}
.y4e_c00388{bottom:593.600000pt;}
.y4d_c00388{bottom:609.600000pt;}
.y19_c00388{bottom:623.333333pt;}
.y4c_c00388{bottom:625.333333pt;}
.y4b_c00388{bottom:645.200000pt;}
.y18_c00388{bottom:656.666667pt;}
.y4a_c00388{bottom:661.466667pt;}
.y17_c00388{bottom:676.400000pt;}
.y49_c00388{bottom:685.333333pt;}
.y16_c00388{bottom:692.133333pt;}
.y48_c00388{bottom:701.333333pt;}
.y15_c00388{bottom:707.866667pt;}
.y47_c00388{bottom:717.333333pt;}
.y14_c00388{bottom:723.866667pt;}
.y46_c00388{bottom:733.066667pt;}
.y13_c00388{bottom:739.866667pt;}
.y45_c00388{bottom:749.066667pt;}
.y12_c00388{bottom:755.866667pt;}
.y44_c00388{bottom:764.800000pt;}
.y11_c00388{bottom:775.466667pt;}
.y43_c00388{bottom:780.800000pt;}
.y10_c00388{bottom:791.200000pt;}
.y42_c00388{bottom:800.666667pt;}
.yf_c00388{bottom:807.466667pt;}
.y41_c00388{bottom:820.533333pt;}
.ye_c00388{bottom:823.466667pt;}
.yd_c00388{bottom:839.466667pt;}
.y40_c00388{bottom:839.733333pt;}
.yc_c00388{bottom:855.200000pt;}
.y3f_c00388{bottom:856.000000pt;}
.yb_c00388{bottom:871.466667pt;}
.y3e_c00388{bottom:875.733333pt;}
.ya_c00388{bottom:887.200000pt;}
.y3d_c00388{bottom:891.466667pt;}
.y9_c00388{bottom:903.200000pt;}
.y3c_c00388{bottom:911.333333pt;}
.y8_c00388{bottom:919.200000pt;}
.y3b_c00388{bottom:931.200000pt;}
.y7_c00388{bottom:934.933333pt;}
.y3a_c00388{bottom:947.466667pt;}
.y6_c00388{bottom:951.200000pt;}
.y39_c00388{bottom:963.466667pt;}
.y5_c00388{bottom:967.200000pt;}
.y4_c00388{bottom:982.933333pt;}
.y38_c00388{bottom:983.066667pt;}
.y3_c00388{bottom:998.666667pt;}
.y37_c00388{bottom:999.066667pt;}
.y2_c00388{bottom:1022.133333pt;}
.y1_c00388{bottom:1023.066667pt;}
.h7_c00388{height:21.333333pt;}
.h8_c00388{height:26.666667pt;}
.ha_c00388{height:42.666667pt;}
.h9_c00388{height:48.000000pt;}
.h6_c00388{height:53.333333pt;}
.h5_c00388{height:58.666667pt;}
.h4_c00388{height:64.000000pt;}
.h3_c00388{height:69.333333pt;}
.h2_c00388{height:74.666667pt;}
.h0_c00388{height:1128.640056pt;}
.h1_c00388{height:1128.666667pt;}
.w0_c00388{width:853.760009pt;}
.w1_c00388{width:854.000000pt;}
.x0_c00388{left:0.000000pt;}
.xa7_c00388{left:70.400000pt;}
.xa4_c00388{left:73.866667pt;}
.x85_c00388{left:75.200000pt;}
.x6d_c00388{left:76.133333pt;}
.x64_c00388{left:77.733333pt;}
.x50_c00388{left:78.666667pt;}
.x68_c00388{left:80.266667pt;}
.xa1_c00388{left:87.733333pt;}
.x25_c00388{left:90.133333pt;}
.x75_c00388{left:93.066667pt;}
.x60_c00388{left:94.266667pt;}
.xf_c00388{left:95.200000pt;}
.x3_c00388{left:96.933333pt;}
.x92_c00388{left:100.533333pt;}
.x8d_c00388{left:102.933333pt;}
.x86_c00388{left:105.333333pt;}
.x7f_c00388{left:107.200000pt;}
.x44_c00388{left:109.866667pt;}
.x9a_c00388{left:111.066667pt;}
.x9f_c00388{left:112.400000pt;}
.x82_c00388{left:113.333333pt;}
.x4c_c00388{left:114.266667pt;}
.x17_c00388{left:117.600000pt;}
.x89_c00388{left:119.200000pt;}
.x2d_c00388{left:120.133333pt;}
.x96_c00388{left:122.133333pt;}
.x3e_c00388{left:123.066667pt;}
.x98_c00388{left:125.333333pt;}
.x7b_c00388{left:126.400000pt;}
.x76_c00388{left:128.000000pt;}
.x32_c00388{left:129.200000pt;}
.x26_c00388{left:130.800000pt;}
.x10_c00388{left:132.266667pt;}
.x51_c00388{left:133.333333pt;}
.x18_c00388{left:134.933333pt;}
.x1f_c00388{left:136.000000pt;}
.x9_c00388{left:137.866667pt;}
.x9c_c00388{left:141.733333pt;}
.x41_c00388{left:143.333333pt;}
.x4a_c00388{left:145.066667pt;}
.x56_c00388{left:146.266667pt;}
.xa0_c00388{left:147.866667pt;}
.x59_c00388{left:148.800000pt;}
.x7e_c00388{left:149.733333pt;}
.xa8_c00388{left:151.066667pt;}
.x45_c00388{left:154.666667pt;}
.x80_c00388{left:155.866667pt;}
.xaa_c00388{left:156.933333pt;}
.x52_c00388{left:158.666667pt;}
.xa_c00388{left:160.266667pt;}
.x27_c00388{left:161.866667pt;}
.x5c_c00388{left:163.200000pt;}
.x20_c00388{left:164.133333pt;}
.x11_c00388{left:165.866667pt;}
.x4_c00388{left:170.133333pt;}
.x63_c00388{left:171.200000pt;}
.x67_c00388{left:172.133333pt;}
.x42_c00388{left:174.666667pt;}
.x72_c00388{left:175.733333pt;}
.x46_c00388{left:177.733333pt;}
.x4f_c00388{left:179.066667pt;}
.x8e_c00388{left:181.866667pt;}
.x19_c00388{left:183.333333pt;}
.x21_c00388{left:186.266667pt;}
.x6c_c00388{left:187.866667pt;}
.x69_c00388{left:189.333333pt;}
.x61_c00388{left:190.666667pt;}
.x9b_c00388{left:191.733333pt;}
.x3f_c00388{left:193.200000pt;}
.x5d_c00388{left:195.466667pt;}
.x2e_c00388{left:196.400000pt;}
.x5a_c00388{left:198.666667pt;}
.x65_c00388{left:200.000000pt;}
.xb_c00388{left:200.933333pt;}
.x53_c00388{left:202.800000pt;}
.x93_c00388{left:204.000000pt;}
.x1a_c00388{left:205.066667pt;}
.x77_c00388{left:206.666667pt;}
.x12_c00388{left:208.133333pt;}
.x39_c00388{left:210.400000pt;}
.xa5_c00388{left:212.266667pt;}
.x83_c00388{left:213.733333pt;}
.x66_c00388{left:216.666667pt;}
.x78_c00388{left:217.600000pt;}
.x70_c00388{left:218.533333pt;}
.x57_c00388{left:219.866667pt;}
.x33_c00388{left:221.333333pt;}
.x1b_c00388{left:222.666667pt;}
.x13_c00388{left:224.133333pt;}
.x8a_c00388{left:227.066667pt;}
.x7c_c00388{left:229.333333pt;}
.x5_c00388{left:230.666667pt;}
.x34_c00388{left:231.866667pt;}
.x79_c00388{left:233.866667pt;}
.x22_c00388{left:234.933333pt;}
.x73_c00388{left:235.866667pt;}
.x28_c00388{left:237.066667pt;}
.x97_c00388{left:238.000000pt;}
.x8f_c00388{left:240.133333pt;}
.x4b_c00388{left:242.000000pt;}
.x94_c00388{left:243.066667pt;}
.x71_c00388{left:244.800000pt;}
.x6_c00388{left:245.733333pt;}
.x35_c00388{left:247.200000pt;}
.x99_c00388{left:248.933333pt;}
.x3a_c00388{left:250.133333pt;}
.x2f_c00388{left:252.666667pt;}
.x4d_c00388{left:254.133333pt;}
.x47_c00388{left:255.200000pt;}
.x29_c00388{left:256.533333pt;}
.x6e_c00388{left:259.466667pt;}
.x5e_c00388{left:261.333333pt;}
.x48_c00388{left:263.866667pt;}
.x3b_c00388{left:267.066667pt;}
.x23_c00388{left:268.800000pt;}
.x6a_c00388{left:270.400000pt;}
.x2a_c00388{left:271.866667pt;}
.x1c_c00388{left:273.600000pt;}
.x87_c00388{left:274.666667pt;}
.x36_c00388{left:276.266667pt;}
.x6b_c00388{left:280.266667pt;}
.x90_c00388{left:282.666667pt;}
.x40_c00388{left:284.400000pt;}
.x3c_c00388{left:288.800000pt;}
.x81_c00388{left:290.000000pt;}
.x14_c00388{left:291.066667pt;}
.x7_c00388{left:293.066667pt;}
.x95_c00388{left:294.933333pt;}
.x91_c00388{left:296.133333pt;}
.xc_c00388{left:299.466667pt;}
.xac_c00388{left:300.800000pt;}
.x1_c00388{left:301.733333pt;}
.x54_c00388{left:303.866667pt;}
.x30_c00388{left:305.200000pt;}
.x7d_c00388{left:309.066667pt;}
.x4e_c00388{left:310.133333pt;}
.x8b_c00388{left:312.533333pt;}
.x58_c00388{left:314.266667pt;}
.x2b_c00388{left:316.000000pt;}
.x7a_c00388{left:318.666667pt;}
.xa9_c00388{left:319.733333pt;}
.x49_c00388{left:322.400000pt;}
.x15_c00388{left:324.000000pt;}
.x8_c00388{left:325.066667pt;}
.x9d_c00388{left:326.133333pt;}
.x84_c00388{left:327.733333pt;}
.xa2_c00388{left:329.333333pt;}
.x3d_c00388{left:330.400000pt;}
.x31_c00388{left:331.466667pt;}
.xa6_c00388{left:333.466667pt;}
.xd_c00388{left:334.933333pt;}
.x6f_c00388{left:336.266667pt;}
.x8c_c00388{left:337.466667pt;}
.x1d_c00388{left:338.933333pt;}
.x5b_c00388{left:341.066667pt;}
.x37_c00388{left:343.466667pt;}
.x16_c00388{left:345.733333pt;}
.xa3_c00388{left:347.200000pt;}
.x62_c00388{left:348.133333pt;}
.xab_c00388{left:351.066667pt;}
.x2c_c00388{left:352.133333pt;}
.x43_c00388{left:353.733333pt;}
.x74_c00388{left:356.400000pt;}
.x1e_c00388{left:357.466667pt;}
.x24_c00388{left:361.866667pt;}
.x88_c00388{left:364.266667pt;}
.x5f_c00388{left:365.333333pt;}
.xe_c00388{left:366.266667pt;}
.x9e_c00388{left:370.666667pt;}
.x55_c00388{left:373.333333pt;}
.x38_c00388{left:375.466667pt;}
.x143_c00388{left:393.600000pt;}
.x122_c00388{left:394.533333pt;}
.x117_c00388{left:395.866667pt;}
.xf4_c00388{left:396.800000pt;}
.x145_c00388{left:408.933333pt;}
.x137_c00388{left:409.866667pt;}
.x102_c00388{left:411.066667pt;}
.xde_c00388{left:412.400000pt;}
.xbe_c00388{left:413.866667pt;}
.xad_c00388{left:415.066667pt;}
.x120_c00388{left:420.266667pt;}
.xc9_c00388{left:428.800000pt;}
.xb8_c00388{left:430.400000pt;}
.x13a_c00388{left:432.666667pt;}
.xf5_c00388{left:434.933333pt;}
.x118_c00388{left:436.800000pt;}
.xec_c00388{left:438.666667pt;}
.xdf_c00388{left:439.866667pt;}
.x12a_c00388{left:441.200000pt;}
.x125_c00388{left:442.533333pt;}
.xe8_c00388{left:444.133333pt;}
.xae_c00388{left:445.200000pt;}
.xfe_c00388{left:446.533333pt;}
.xf1_c00388{left:449.200000pt;}
.x10b_c00388{left:450.133333pt;}
.xc4_c00388{left:451.733333pt;}
.x119_c00388{left:454.000000pt;}
.xbf_c00388{left:456.133333pt;}
.xca_c00388{left:458.933333pt;}
.x12e_c00388{left:459.866667pt;}
.x114_c00388{left:461.733333pt;}
.x126_c00388{left:463.333333pt;}
.xd8_c00388{left:464.266667pt;}
.xe9_c00388{left:465.600000pt;}
.xf6_c00388{left:466.666667pt;}
.xf9_c00388{left:468.533333pt;}
.xb3_c00388{left:470.133333pt;}
.xcf_c00388{left:471.733333pt;}
.xed_c00388{left:475.200000pt;}
.xe0_c00388{left:476.400000pt;}
.x12f_c00388{left:477.733333pt;}
.xb4_c00388{left:479.466667pt;}
.x13b_c00388{left:480.400000pt;}
.x115_c00388{left:482.533333pt;}
.xf2_c00388{left:485.333333pt;}
.x127_c00388{left:488.666667pt;}
.xb9_c00388{left:489.866667pt;}
.xd9_c00388{left:492.400000pt;}
.x132_c00388{left:493.600000pt;}
.xff_c00388{left:495.466667pt;}
.xd0_c00388{left:497.066667pt;}
.xd6_c00388{left:499.466667pt;}
.xc5_c00388{left:500.400000pt;}
.x10c_c00388{left:502.266667pt;}
.x11c_c00388{left:504.000000pt;}
.xe3_c00388{left:505.200000pt;}
.xfa_c00388{left:506.666667pt;}
.xaf_c00388{left:508.533333pt;}
.x123_c00388{left:510.000000pt;}
.xcb_c00388{left:511.466667pt;}
.xda_c00388{left:514.533333pt;}
.x135_c00388{left:516.133333pt;}
.xd5_c00388{left:517.866667pt;}
.xc6_c00388{left:519.866667pt;}
.xea_c00388{left:521.600000pt;}
.x103_c00388{left:525.066667pt;}
.x110_c00388{left:526.400000pt;}
.xb5_c00388{left:527.466667pt;}
.xc0_c00388{left:529.066667pt;}
.x116_c00388{left:531.200000pt;}
.x13e_c00388{left:532.266667pt;}
.x146_c00388{left:533.733333pt;}
.xd1_c00388{left:536.400000pt;}
.xfb_c00388{left:538.000000pt;}
.xee_c00388{left:539.200000pt;}
.x128_c00388{left:540.533333pt;}
.xe1_c00388{left:543.866667pt;}
.xb0_c00388{left:545.333333pt;}
.xba_c00388{left:548.400000pt;}
.x108_c00388{left:550.133333pt;}
.xe4_c00388{left:552.533333pt;}
.x100_c00388{left:554.400000pt;}
.x104_c00388{left:556.133333pt;}
.x144_c00388{left:558.133333pt;}
.xb6_c00388{left:559.466667pt;}
.x10d_c00388{left:561.866667pt;}
.xf3_c00388{left:565.066667pt;}
.xc1_c00388{left:566.800000pt;}
.x12b_c00388{left:567.866667pt;}
.xc7_c00388{left:572.666667pt;}
.x105_c00388{left:573.733333pt;}
.x101_c00388{left:574.933333pt;}
.x141_c00388{left:576.133333pt;}
.xcc_c00388{left:577.066667pt;}
.x133_c00388{left:578.666667pt;}
.xb7_c00388{left:580.533333pt;}
.xf7_c00388{left:582.533333pt;}
.xdb_c00388{left:585.200000pt;}
.xbb_c00388{left:587.066667pt;}
.x11d_c00388{left:589.466667pt;}
.xef_c00388{left:591.333333pt;}
.xc8_c00388{left:592.933333pt;}
.x13f_c00388{left:595.333333pt;}
.x124_c00388{left:596.400000pt;}
.x130_c00388{left:599.333333pt;}
.xd2_c00388{left:600.800000pt;}
.x134_c00388{left:602.000000pt;}
.xfc_c00388{left:603.600000pt;}
.x10e_c00388{left:607.333333pt;}
.xcd_c00388{left:609.066667pt;}
.xbc_c00388{left:610.400000pt;}
.xc2_c00388{left:611.600000pt;}
.x13c_c00388{left:612.666667pt;}
.x138_c00388{left:613.733333pt;}
.xe5_c00388{left:614.666667pt;}
.xb1_c00388{left:616.666667pt;}
.x12c_c00388{left:618.800000pt;}
.xdc_c00388{left:620.666667pt;}
.x147_c00388{left:623.466667pt;}
.xd3_c00388{left:625.733333pt;}
.x11e_c00388{left:628.533333pt;}
.x106_c00388{left:629.733333pt;}
.x111_c00388{left:631.333333pt;}
.x121_c00388{left:633.466667pt;}
.xd7_c00388{left:636.133333pt;}
.xd4_c00388{left:637.200000pt;}
.x136_c00388{left:638.400000pt;}
.xe6_c00388{left:639.600000pt;}
.x13d_c00388{left:641.733333pt;}
.x131_c00388{left:642.933333pt;}
.x129_c00388{left:644.000000pt;}
.x112_c00388{left:645.733333pt;}
.x109_c00388{left:647.066667pt;}
.xf8_c00388{left:648.533333pt;}
.xe2_c00388{left:651.066667pt;}
.xf0_c00388{left:652.400000pt;}
.x139_c00388{left:657.333333pt;}
.xce_c00388{left:658.400000pt;}
.x12d_c00388{left:659.733333pt;}
.x10f_c00388{left:660.800000pt;}
.xdd_c00388{left:662.000000pt;}
.xbd_c00388{left:666.666667pt;}
.x10a_c00388{left:668.800000pt;}
.x113_c00388{left:671.600000pt;}
.x2_c00388{left:672.933333pt;}
.xb2_c00388{left:674.533333pt;}
.xfd_c00388{left:676.266667pt;}
.x142_c00388{left:678.266667pt;}
.xeb_c00388{left:679.333333pt;}
.x107_c00388{left:681.866667pt;}
.x11a_c00388{left:682.800000pt;}
.x11f_c00388{left:684.266667pt;}
.xc3_c00388{left:685.200000pt;}
.x148_c00388{left:689.333333pt;}
.x140_c00388{left:690.800000pt;}
.xe7_c00388{left:693.733333pt;}
.x11b_c00388{left:703.866667pt;}
}





/* 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_c00389 {
    display:none;
  }
  .loading-indicator_c00389.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00389 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_c00389 { 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_c00389" -> "#page-container .classname_c00389")
 */
.pf_c00389 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00389 { /* 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_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00389 { /* 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_c00389 { /* 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_c00389 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00389 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00389 {overflow:visible;}
  }
}
.c_c00389 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00389 { /* 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_c00389:after { /* webkit #35443 */
  content: '';
}
.t_c00389:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00389 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 */
}
.__c00389 { /* 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_c00389 { /* info for Javascript */
  display:none;
}
.l_c00389 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00389 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00389 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00389: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_c00389 {
    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_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00389.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_c00389 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00389{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00389;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.000000;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;}
.md3_c00389{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.me8_c00389{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00389{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00389{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00389{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me7_c00389{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00389{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m22_c00389{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m7_c00389{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf_c00389{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md0_c00389{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00389{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8_c00389{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m97_c00389{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.mab_c00389{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m84_c00389{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00389{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me0_c00389{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00389{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00389{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00389{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00389{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00389{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00389{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00389{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00389{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m36_c00389{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00389{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m66_c00389{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m39_c00389{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me2_c00389{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m51_c00389{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m98_c00389{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m4_c00389{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me5_c00389{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m94_c00389{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00389{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md1_c00389{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m87_c00389{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m89_c00389{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m43_c00389{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mca_c00389{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00389{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00389{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00389{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mac_c00389{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9_c00389{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00389{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m54_c00389{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m19_c00389{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m11_c00389{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00389{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m12_c00389{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00389{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00389{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00389{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00389{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00389{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m20_c00389{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m85_c00389{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m74_c00389{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma_c00389{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m5_c00389{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00389{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc_c00389{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m30_c00389{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00389{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00389{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m56_c00389{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m25_c00389{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00389{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m92_c00389{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m31_c00389{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00389{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m16_c00389{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m37_c00389{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00389{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m99_c00389{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mda_c00389{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00389{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m86_c00389{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m24_c00389{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m73_c00389{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.maf_c00389{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00389{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00389{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m65_c00389{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00389{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m68_c00389{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00389{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00389{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.me1_c00389{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00389{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m44_c00389{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m60_c00389{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00389{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00389{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00389{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00389{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m49_c00389{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00389{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m42_c00389{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00389{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m67_c00389{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m53_c00389{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00389{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00389{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb_c00389{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m69_c00389{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00389{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00389{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00389{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m28_c00389{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10_c00389{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m90_c00389{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m55_c00389{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m58_c00389{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me_c00389{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m75_c00389{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m57_c00389{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00389{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00389{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md_c00389{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m82_c00389{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m15_c00389{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00389{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m88_c00389{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00389{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m72_c00389{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m40_c00389{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00389{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00389{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00389{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m59_c00389{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m38_c00389{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00389{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m32_c00389{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m96_c00389{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m48_c00389{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00389{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00389{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m23_c00389{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00389{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m14_c00389{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m17_c00389{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00389{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mae_c00389{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md7_c00389{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00389{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m77_c00389{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m50_c00389{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00389{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m27_c00389{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00389{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00389{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00389{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00389{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00389{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m78_c00389{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.maa_c00389{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m70_c00389{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m62_c00389{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m95_c00389{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m79_c00389{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m18_c00389{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m46_c00389{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00389{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m71_c00389{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m41_c00389{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00389{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00389{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.me4_c00389{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00389{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00389{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2_c00389{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00389{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00389{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md9_c00389{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00389{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m61_c00389{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00389{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00389{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m63_c00389{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m34_c00389{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m91_c00389{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00389{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m45_c00389{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m83_c00389{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m13_c00389{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mad_c00389{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00389{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00389{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00389{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00389{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00389{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00389{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00389{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m47_c00389{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6_c00389{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mba_c00389{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00389{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md5_c00389{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md4_c00389{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me3_c00389{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mee_c00389{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);}
.mf4_c00389{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00389{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mce_c00389{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m64_c00389{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.md8_c00389{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00389{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m33_c00389{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00389{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00389{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00389{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me9_c00389{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.md6_c00389{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00389{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00389{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00389{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m76_c00389{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00389{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00389{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m81_c00389{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00389{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m21_c00389{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00389{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00389{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m93_c00389{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00389{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me6_c00389{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00389{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m26_c00389{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m80_c00389{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00389{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00389{transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00389{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00389{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m52_c00389{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00389{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.md2_c00389{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m29_c00389{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mea_c00389{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00389{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00389{transform:matrix(0.358750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358750,0.000000,0.000000,0.250000,0,0);}
.mef_c00389{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.mde_c00389{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mec_c00389{transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);}
.meb_c00389{transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00389{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.med_c00389{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls0_c00389{letter-spacing:0.000000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{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__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00389{word-spacing:-10.810056px;}
.ws1_c00389{word-spacing:-10.750000px;}
.ws7_c00389{word-spacing:-6.166667px;}
.ws5_c00389{word-spacing:-3.285714px;}
.wsa_c00389{word-spacing:0.000000px;}
.ws0_c00389{word-spacing:1.295858px;}
.ws8_c00389{word-spacing:3.750000px;}
.ws4_c00389{word-spacing:5.346369px;}
.ws6_c00389{word-spacing:12.755725px;}
.ws9_c00389{word-spacing:13.437500px;}
.ws2_c00389{word-spacing:13.666667px;}
.fc0_c00389{color:transparent;}
.fs8_c00389{font-size:42.000000px;}
.fs7_c00389{font-size:48.000000px;}
.fs6_c00389{font-size:54.000000px;}
.fs5_c00389{font-size:60.000000px;}
.fs2_c00389{font-size:66.000000px;}
.fs3_c00389{font-size:72.000000px;}
.fs4_c00389{font-size:78.000000px;}
.fs0_c00389{font-size:84.000000px;}
.fs1_c00389{font-size:108.000000px;}
.y0_c00389{bottom:0.000000px;}
.y64_c00389{bottom:190.200000px;}
.y35_c00389{bottom:191.850000px;}
.y63_c00389{bottom:208.500000px;}
.y34_c00389{bottom:210.150000px;}
.y62_c00389{bottom:226.050000px;}
.y33_c00389{bottom:227.850000px;}
.y61_c00389{bottom:244.050000px;}
.y32_c00389{bottom:245.550000px;}
.y31_c00389{bottom:263.250000px;}
.y60_c00389{bottom:272.400000px;}
.y30_c00389{bottom:280.500000px;}
.y2f_c00389{bottom:298.200000px;}
.y5f_c00389{bottom:301.200000px;}
.y5e_c00389{bottom:309.150000px;}
.y2e_c00389{bottom:315.900000px;}
.y5d_c00389{bottom:320.700000px;}
.y5c_c00389{bottom:329.400000px;}
.y2d_c00389{bottom:333.600000px;}
.y2c_c00389{bottom:351.900000px;}
.y5b_c00389{bottom:360.750000px;}
.y2b_c00389{bottom:369.900000px;}
.y5a_c00389{bottom:383.100000px;}
.y2a_c00389{bottom:388.200000px;}
.y59_c00389{bottom:405.750000px;}
.y29_c00389{bottom:406.500000px;}
.y28_c00389{bottom:424.500000px;}
.y58_c00389{bottom:428.400000px;}
.y27_c00389{bottom:442.800000px;}
.y57_c00389{bottom:450.750000px;}
.y26_c00389{bottom:461.100000px;}
.y56_c00389{bottom:468.750000px;}
.y25_c00389{bottom:478.800000px;}
.y24_c00389{bottom:496.800000px;}
.y55_c00389{bottom:499.350000px;}
.y23_c00389{bottom:514.800000px;}
.y54_c00389{bottom:517.650000px;}
.y22_c00389{bottom:532.800000px;}
.y53_c00389{bottom:535.650000px;}
.y21_c00389{bottom:555.150000px;}
.y52_c00389{bottom:558.000000px;}
.y20_c00389{bottom:573.150000px;}
.y51_c00389{bottom:575.700000px;}
.y1f_c00389{bottom:591.450000px;}
.y50_c00389{bottom:598.650000px;}
.y1e_c00389{bottom:609.150000px;}
.y4f_c00389{bottom:620.250000px;}
.y1d_c00389{bottom:627.150000px;}
.y4e_c00389{bottom:638.250000px;}
.y1c_c00389{bottom:644.850000px;}
.y4d_c00389{bottom:660.600000px;}
.y1b_c00389{bottom:662.850000px;}
.y1a_c00389{bottom:681.150000px;}
.y4c_c00389{bottom:691.650000px;}
.y19_c00389{bottom:699.150000px;}
.y18_c00389{bottom:717.150000px;}
.y4b_c00389{bottom:721.500000px;}
.y17_c00389{bottom:735.150000px;}
.y16_c00389{bottom:752.850000px;}
.y4a_c00389{bottom:755.250000px;}
.y15_c00389{bottom:770.850000px;}
.y49_c00389{bottom:773.250000px;}
.y14_c00389{bottom:789.150000px;}
.y48_c00389{bottom:791.700000px;}
.y13_c00389{bottom:807.150000px;}
.y47_c00389{bottom:809.700000px;}
.y46_c00389{bottom:827.700000px;}
.y12_c00389{bottom:829.800000px;}
.y11_c00389{bottom:846.750000px;}
.y45_c00389{bottom:850.050000px;}
.y10_c00389{bottom:865.350000px;}
.y44_c00389{bottom:868.350000px;}
.yf_c00389{bottom:885.150000px;}
.y43_c00389{bottom:886.350000px;}
.ye_c00389{bottom:902.850000px;}
.y42_c00389{bottom:904.350000px;}
.y41_c00389{bottom:922.350000px;}
.yd_c00389{bottom:923.400000px;}
.y40_c00389{bottom:940.350000px;}
.yc_c00389{bottom:942.900000px;}
.y3f_c00389{bottom:958.050000px;}
.yb_c00389{bottom:960.900000px;}
.y3e_c00389{bottom:976.050000px;}
.ya_c00389{bottom:978.900000px;}
.y3d_c00389{bottom:994.050000px;}
.y9_c00389{bottom:996.900000px;}
.y3c_c00389{bottom:1012.050000px;}
.y8_c00389{bottom:1016.700000px;}
.y3b_c00389{bottom:1030.350000px;}
.y7_c00389{bottom:1036.500000px;}
.y3a_c00389{bottom:1050.900000px;}
.y6_c00389{bottom:1066.650000px;}
.y39_c00389{bottom:1070.400000px;}
.y5_c00389{bottom:1085.700000px;}
.y38_c00389{bottom:1088.400000px;}
.y4_c00389{bottom:1103.700000px;}
.y37_c00389{bottom:1106.700000px;}
.y3_c00389{bottom:1121.400000px;}
.y36_c00389{bottom:1124.700000px;}
.y1_c00389{bottom:1144.800000px;}
.y2_c00389{bottom:1175.100000px;}
.ha_c00389{height:42.000000px;}
.h9_c00389{height:48.000000px;}
.h8_c00389{height:54.000000px;}
.h7_c00389{height:60.000000px;}
.h4_c00389{height:66.000000px;}
.h5_c00389{height:72.000000px;}
.h6_c00389{height:78.000000px;}
.h2_c00389{height:84.000000px;}
.h3_c00389{height:108.000000px;}
.h1_c00389{height:1269.750000px;}
.h0_c00389{height:1270.080048px;}
.w0_c00389{width:960.480010px;}
.w1_c00389{width:960.750000px;}
.x0_c00389{left:0.000000px;}
.x1_c00389{left:176.400000px;}
.x21_c00389{left:179.700000px;}
.x53_c00389{left:181.500000px;}
.x50_c00389{left:194.850000px;}
.x3_c00389{left:196.500000px;}
.x1b_c00389{left:197.550000px;}
.x59_c00389{left:199.800000px;}
.x67_c00389{left:201.450000px;}
.x79_c00389{left:202.650000px;}
.x81_c00389{left:204.000000px;}
.x89_c00389{left:205.350000px;}
.x96_c00389{left:206.850000px;}
.x99_c00389{left:207.900000px;}
.xa1_c00389{left:209.700000px;}
.xa7_c00389{left:211.650000px;}
.x26_c00389{left:216.750000px;}
.x1c_c00389{left:219.450000px;}
.x86_c00389{left:220.650000px;}
.x7f_c00389{left:222.150000px;}
.x22_c00389{left:223.200000px;}
.x9d_c00389{left:224.250000px;}
.x3f_c00389{left:227.550000px;}
.x68_c00389{left:228.750000px;}
.x32_c00389{left:229.800000px;}
.x4_c00389{left:231.750000px;}
.x77_c00389{left:232.800000px;}
.x7a_c00389{left:235.800000px;}
.x73_c00389{left:237.000000px;}
.x33_c00389{left:238.800000px;}
.x14_c00389{left:242.100000px;}
.xa8_c00389{left:243.150000px;}
.x82_c00389{left:244.350000px;}
.x5a_c00389{left:246.900000px;}
.x5b_c00389{left:248.250000px;}
.x39_c00389{left:249.450000px;}
.x5_c00389{left:251.850000px;}
.x43_c00389{left:253.050000px;}
.x6c_c00389{left:254.550000px;}
.x51_c00389{left:256.050000px;}
.xe_c00389{left:258.300000px;}
.x60_c00389{left:259.500000px;}
.x2c_c00389{left:261.000000px;}
.x27_c00389{left:262.500000px;}
.x25_c00389{left:265.200000px;}
.xa5_c00389{left:266.850000px;}
.x6_c00389{left:268.350000px;}
.xa3_c00389{left:269.400000px;}
.x2d_c00389{left:271.050000px;}
.x83_c00389{left:273.450000px;}
.x61_c00389{left:275.400000px;}
.xf_c00389{left:277.050000px;}
.x4b_c00389{left:278.250000px;}
.x8d_c00389{left:281.700000px;}
.x9a_c00389{left:282.750000px;}
.x34_c00389{left:283.800000px;}
.xa4_c00389{left:285.300000px;}
.x44_c00389{left:287.250000px;}
.x52_c00389{left:289.200000px;}
.x49_c00389{left:290.250000px;}
.x1d_c00389{left:292.200000px;}
.x5c_c00389{left:293.550000px;}
.x40_c00389{left:297.450000px;}
.x4a_c00389{left:299.250000px;}
.x45_c00389{left:303.150000px;}
.x15_c00389{left:305.850000px;}
.x3a_c00389{left:308.100000px;}
.x4c_c00389{left:309.900000px;}
.x54_c00389{left:312.150000px;}
.x7_c00389{left:315.150000px;}
.x35_c00389{left:316.950000px;}
.x2e_c00389{left:320.400000px;}
.x69_c00389{left:324.450000px;}
.x1e_c00389{left:326.400000px;}
.x65_c00389{left:328.650000px;}
.x16_c00389{left:330.750000px;}
.x8e_c00389{left:333.150000px;}
.x8_c00389{left:335.700000px;}
.x84_c00389{left:336.900000px;}
.x94_c00389{left:339.000000px;}
.x62_c00389{left:340.650000px;}
.x2f_c00389{left:341.700000px;}
.x55_c00389{left:342.750000px;}
.x6a_c00389{left:345.000000px;}
.x28_c00389{left:346.050000px;}
.x36_c00389{left:350.100000px;}
.x9b_c00389{left:351.450000px;}
.x17_c00389{left:354.150000px;}
.x30_c00389{left:356.850000px;}
.x8a_c00389{left:358.050000px;}
.xa2_c00389{left:359.100000px;}
.x87_c00389{left:361.050000px;}
.x23_c00389{left:362.850000px;}
.x41_c00389{left:365.850000px;}
.x7b_c00389{left:366.900000px;}
.x74_c00389{left:368.100000px;}
.x10_c00389{left:370.650000px;}
.x6d_c00389{left:372.450000px;}
.x1f_c00389{left:374.250000px;}
.x3d_c00389{left:376.050000px;}
.x11_c00389{left:378.900000px;}
.x9_c00389{left:379.950000px;}
.x97_c00389{left:381.150000px;}
.x31_c00389{left:385.950000px;}
.xa_c00389{left:387.150000px;}
.x56_c00389{left:389.550000px;}
.x9c_c00389{left:391.800000px;}
.x20_c00389{left:394.350000px;}
.x46_c00389{left:395.850000px;}
.x9e_c00389{left:397.050000px;}
.x3e_c00389{left:398.400000px;}
.xb_c00389{left:399.750000px;}
.x66_c00389{left:403.050000px;}
.x90_c00389{left:404.250000px;}
.x3b_c00389{left:405.750000px;}
.x18_c00389{left:409.200000px;}
.x12_c00389{left:411.000000px;}
.x57_c00389{left:412.650000px;}
.x70_c00389{left:417.300000px;}
.x95_c00389{left:419.250000px;}
.x91_c00389{left:421.500000px;}
.x2_c00389{left:423.000000px;}
.x19_c00389{left:427.200000px;}
.x63_c00389{left:428.550000px;}
.x9f_c00389{left:430.200000px;}
.x85_c00389{left:431.250000px;}
.xc_c00389{left:433.200000px;}
.x29_c00389{left:435.300000px;}
.x8b_c00389{left:436.500000px;}
.x58_c00389{left:438.150000px;}
.x6b_c00389{left:441.450000px;}
.x5e_c00389{left:442.500000px;}
.x64_c00389{left:446.550000px;}
.x6e_c00389{left:449.550000px;}
.x13_c00389{left:450.900000px;}
.x37_c00389{left:452.850000px;}
.x7d_c00389{left:455.700000px;}
.x8c_c00389{left:458.100000px;}
.x5f_c00389{left:460.200000px;}
.x42_c00389{left:461.550000px;}
.x71_c00389{left:463.350000px;}
.x2a_c00389{left:464.400000px;}
.x7e_c00389{left:465.750000px;}
.x75_c00389{left:466.800000px;}
.x47_c00389{left:469.350000px;}
.x88_c00389{left:470.550000px;}
.x93_c00389{left:471.750000px;}
.xd_c00389{left:473.550000px;}
.x78_c00389{left:474.750000px;}
.x4d_c00389{left:477.000000px;}
.x24_c00389{left:478.050000px;}
.x92_c00389{left:479.100000px;}
.x72_c00389{left:482.400000px;}
.x3c_c00389{left:484.650000px;}
.x4e_c00389{left:485.700000px;}
.x5d_c00389{left:488.250000px;}
.x80_c00389{left:489.900000px;}
.x1a_c00389{left:491.700000px;}
.x8f_c00389{left:493.950000px;}
.x4f_c00389{left:496.500000px;}
.x38_c00389{left:498.300000px;}
.x7c_c00389{left:500.100000px;}
.x76_c00389{left:501.300000px;}
.x48_c00389{left:502.800000px;}
.x6f_c00389{left:505.050000px;}
.xa6_c00389{left:507.150000px;}
.x98_c00389{left:508.200000px;}
.xa0_c00389{left:509.250000px;}
.x2b_c00389{left:510.900000px;}
.xc5_c00389{left:535.650000px;}
.xfe_c00389{left:538.200000px;}
.x114_c00389{left:540.300000px;}
.x11d_c00389{left:541.800000px;}
.x128_c00389{left:544.650000px;}
.xa9_c00389{left:551.550000px;}
.xad_c00389{left:552.750000px;}
.xd2_c00389{left:554.250000px;}
.xdd_c00389{left:555.300000px;}
.x106_c00389{left:556.650000px;}
.x118_c00389{left:558.450000px;}
.x11c_c00389{left:559.800000px;}
.x12b_c00389{left:562.800000px;}
.x135_c00389{left:564.300000px;}
.xae_c00389{left:572.850000px;}
.x116_c00389{left:576.300000px;}
.x123_c00389{left:578.550000px;}
.x111_c00389{left:579.600000px;}
.xd8_c00389{left:580.950000px;}
.xe4_c00389{left:583.200000px;}
.xbd_c00389{left:585.000000px;}
.x107_c00389{left:589.350000px;}
.xea_c00389{left:590.400000px;}
.x102_c00389{left:593.700000px;}
.xd3_c00389{left:596.400000px;}
.x122_c00389{left:597.450000px;}
.x10e_c00389{left:601.200000px;}
.xc6_c00389{left:602.550000px;}
.xe5_c00389{left:603.750000px;}
.xde_c00389{left:610.050000px;}
.xaf_c00389{left:613.200000px;}
.x110_c00389{left:614.550000px;}
.xb7_c00389{left:617.100000px;}
.xfc_c00389{left:621.900000px;}
.xf8_c00389{left:623.550000px;}
.xcb_c00389{left:624.750000px;}
.x125_c00389{left:626.850000px;}
.xeb_c00389{left:630.300000px;}
.xaa_c00389{left:633.300000px;}
.xcc_c00389{left:635.850000px;}
.xf0_c00389{left:637.050000px;}
.xb0_c00389{left:638.400000px;}
.xf2_c00389{left:642.600000px;}
.xd4_c00389{left:644.250000px;}
.xdf_c00389{left:645.300000px;}
.xbe_c00389{left:646.950000px;}
.x124_c00389{left:648.000000px;}
.xfd_c00389{left:649.650000px;}
.xf9_c00389{left:651.300000px;}
.xf3_c00389{left:652.350000px;}
.x11a_c00389{left:655.500000px;}
.x12c_c00389{left:657.600000px;}
.x112_c00389{left:659.100000px;}
.xff_c00389{left:660.900000px;}
.xd9_c00389{left:665.100000px;}
.x127_c00389{left:666.750000px;}
.xe0_c00389{left:668.400000px;}
.xcd_c00389{left:669.750000px;}
.xb1_c00389{left:674.400000px;}
.xf4_c00389{left:676.800000px;}
.x100_c00389{left:678.600000px;}
.x126_c00389{left:680.100000px;}
.xbf_c00389{left:682.200000px;}
.xb2_c00389{left:683.700000px;}
.x10a_c00389{left:685.500000px;}
.xc7_c00389{left:687.150000px;}
.x12d_c00389{left:688.200000px;}
.x11f_c00389{left:689.700000px;}
.x136_c00389{left:691.800000px;}
.xb3_c00389{left:696.300000px;}
.x101_c00389{left:698.100000px;}
.x108_c00389{left:699.150000px;}
.xe1_c00389{left:702.600000px;}
.xec_c00389{left:704.400000px;}
.xda_c00389{left:706.500000px;}
.x103_c00389{left:708.900000px;}
.xb4_c00389{left:713.550000px;}
.xf5_c00389{left:715.350000px;}
.x12e_c00389{left:720.600000px;}
.xd5_c00389{left:721.650000px;}
.x10f_c00389{left:724.500000px;}
.xc0_c00389{left:725.700000px;}
.x12f_c00389{left:729.900000px;}
.x115_c00389{left:731.400000px;}
.x104_c00389{left:733.800000px;}
.xb8_c00389{left:735.300000px;}
.xf1_c00389{left:737.550000px;}
.xe6_c00389{left:738.750000px;}
.x129_c00389{left:741.150000px;}
.x11b_c00389{left:742.650000px;}
.xfa_c00389{left:744.000000px;}
.x10b_c00389{left:745.200000px;}
.xdb_c00389{left:749.400000px;}
.x130_c00389{left:750.450000px;}
.x12a_c00389{left:751.500000px;}
.x119_c00389{left:752.850000px;}
.x113_c00389{left:754.200000px;}
.xce_c00389{left:755.400000px;}
.xd6_c00389{left:756.900000px;}
.xe7_c00389{left:759.600000px;}
.xab_c00389{left:761.100000px;}
.xc1_c00389{left:763.500000px;}
.xc8_c00389{left:767.100000px;}
.x133_c00389{left:772.350000px;}
.xed_c00389{left:776.400000px;}
.xf6_c00389{left:778.350000px;}
.x109_c00389{left:780.150000px;}
.xc2_c00389{left:781.500000px;}
.xe2_c00389{left:783.300000px;}
.xcf_c00389{left:784.950000px;}
.x120_c00389{left:787.950000px;}
.xdc_c00389{left:789.300000px;}
.x131_c00389{left:790.350000px;}
.xac_c00389{left:791.400000px;}
.xc9_c00389{left:792.600000px;}
.xb5_c00389{left:794.550000px;}
.x105_c00389{left:795.750000px;}
.x134_c00389{left:798.750000px;}
.xb9_c00389{left:800.100000px;}
.xd0_c00389{left:801.900000px;}
.xee_c00389{left:804.150000px;}
.xe8_c00389{left:806.100000px;}
.xba_c00389{left:809.400000px;}
.x10c_c00389{left:812.100000px;}
.x132_c00389{left:813.450000px;}
.xb6_c00389{left:815.100000px;}
.xca_c00389{left:817.050000px;}
.xc3_c00389{left:822.900000px;}
.xd7_c00389{left:827.100000px;}
.xbb_c00389{left:828.450000px;}
.x10d_c00389{left:831.900000px;}
.xe3_c00389{left:835.200000px;}
.x121_c00389{left:842.250000px;}
.xf7_c00389{left:845.250000px;}
.x117_c00389{left:848.550000px;}
.xc4_c00389{left:850.200000px;}
.xe9_c00389{left:853.200000px;}
.xbc_c00389{left:854.700000px;}
.xd1_c00389{left:857.400000px;}
.xfb_c00389{left:858.450000px;}
.xef_c00389{left:861.000000px;}
.x11e_c00389{left:868.950000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws3_c00389{word-spacing:-9.608939pt;}
.ws1_c00389{word-spacing:-9.555556pt;}
.ws7_c00389{word-spacing:-5.481481pt;}
.ws5_c00389{word-spacing:-2.920635pt;}
.wsa_c00389{word-spacing:0.000000pt;}
.ws0_c00389{word-spacing:1.151874pt;}
.ws8_c00389{word-spacing:3.333333pt;}
.ws4_c00389{word-spacing:4.752328pt;}
.ws6_c00389{word-spacing:11.338422pt;}
.ws9_c00389{word-spacing:11.944444pt;}
.ws2_c00389{word-spacing:12.148148pt;}
.fs8_c00389{font-size:37.333333pt;}
.fs7_c00389{font-size:42.666667pt;}
.fs6_c00389{font-size:48.000000pt;}
.fs5_c00389{font-size:53.333333pt;}
.fs2_c00389{font-size:58.666667pt;}
.fs3_c00389{font-size:64.000000pt;}
.fs4_c00389{font-size:69.333333pt;}
.fs0_c00389{font-size:74.666667pt;}
.fs1_c00389{font-size:96.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y64_c00389{bottom:169.066667pt;}
.y35_c00389{bottom:170.533333pt;}
.y63_c00389{bottom:185.333333pt;}
.y34_c00389{bottom:186.800000pt;}
.y62_c00389{bottom:200.933333pt;}
.y33_c00389{bottom:202.533333pt;}
.y61_c00389{bottom:216.933333pt;}
.y32_c00389{bottom:218.266667pt;}
.y31_c00389{bottom:234.000000pt;}
.y60_c00389{bottom:242.133333pt;}
.y30_c00389{bottom:249.333333pt;}
.y2f_c00389{bottom:265.066667pt;}
.y5f_c00389{bottom:267.733333pt;}
.y5e_c00389{bottom:274.800000pt;}
.y2e_c00389{bottom:280.800000pt;}
.y5d_c00389{bottom:285.066667pt;}
.y5c_c00389{bottom:292.800000pt;}
.y2d_c00389{bottom:296.533333pt;}
.y2c_c00389{bottom:312.800000pt;}
.y5b_c00389{bottom:320.666667pt;}
.y2b_c00389{bottom:328.800000pt;}
.y5a_c00389{bottom:340.533333pt;}
.y2a_c00389{bottom:345.066667pt;}
.y59_c00389{bottom:360.666667pt;}
.y29_c00389{bottom:361.333333pt;}
.y28_c00389{bottom:377.333333pt;}
.y58_c00389{bottom:380.800000pt;}
.y27_c00389{bottom:393.600000pt;}
.y57_c00389{bottom:400.666667pt;}
.y26_c00389{bottom:409.866667pt;}
.y56_c00389{bottom:416.666667pt;}
.y25_c00389{bottom:425.600000pt;}
.y24_c00389{bottom:441.600000pt;}
.y55_c00389{bottom:443.866667pt;}
.y23_c00389{bottom:457.600000pt;}
.y54_c00389{bottom:460.133333pt;}
.y22_c00389{bottom:473.600000pt;}
.y53_c00389{bottom:476.133333pt;}
.y21_c00389{bottom:493.466667pt;}
.y52_c00389{bottom:496.000000pt;}
.y20_c00389{bottom:509.466667pt;}
.y51_c00389{bottom:511.733333pt;}
.y1f_c00389{bottom:525.733333pt;}
.y50_c00389{bottom:532.133333pt;}
.y1e_c00389{bottom:541.466667pt;}
.y4f_c00389{bottom:551.333333pt;}
.y1d_c00389{bottom:557.466667pt;}
.y4e_c00389{bottom:567.333333pt;}
.y1c_c00389{bottom:573.200000pt;}
.y4d_c00389{bottom:587.200000pt;}
.y1b_c00389{bottom:589.200000pt;}
.y1a_c00389{bottom:605.466667pt;}
.y4c_c00389{bottom:614.800000pt;}
.y19_c00389{bottom:621.466667pt;}
.y18_c00389{bottom:637.466667pt;}
.y4b_c00389{bottom:641.333333pt;}
.y17_c00389{bottom:653.466667pt;}
.y16_c00389{bottom:669.200000pt;}
.y4a_c00389{bottom:671.333333pt;}
.y15_c00389{bottom:685.200000pt;}
.y49_c00389{bottom:687.333333pt;}
.y14_c00389{bottom:701.466667pt;}
.y48_c00389{bottom:703.733333pt;}
.y13_c00389{bottom:717.466667pt;}
.y47_c00389{bottom:719.733333pt;}
.y46_c00389{bottom:735.733333pt;}
.y12_c00389{bottom:737.600000pt;}
.y11_c00389{bottom:752.666667pt;}
.y45_c00389{bottom:755.600000pt;}
.y10_c00389{bottom:769.200000pt;}
.y44_c00389{bottom:771.866667pt;}
.yf_c00389{bottom:786.800000pt;}
.y43_c00389{bottom:787.866667pt;}
.ye_c00389{bottom:802.533333pt;}
.y42_c00389{bottom:803.866667pt;}
.y41_c00389{bottom:819.866667pt;}
.yd_c00389{bottom:820.800000pt;}
.y40_c00389{bottom:835.866667pt;}
.yc_c00389{bottom:838.133333pt;}
.y3f_c00389{bottom:851.600000pt;}
.yb_c00389{bottom:854.133333pt;}
.y3e_c00389{bottom:867.600000pt;}
.ya_c00389{bottom:870.133333pt;}
.y3d_c00389{bottom:883.600000pt;}
.y9_c00389{bottom:886.133333pt;}
.y3c_c00389{bottom:899.600000pt;}
.y8_c00389{bottom:903.733333pt;}
.y3b_c00389{bottom:915.866667pt;}
.y7_c00389{bottom:921.333333pt;}
.y3a_c00389{bottom:934.133333pt;}
.y6_c00389{bottom:948.133333pt;}
.y39_c00389{bottom:951.466667pt;}
.y5_c00389{bottom:965.066667pt;}
.y38_c00389{bottom:967.466667pt;}
.y4_c00389{bottom:981.066667pt;}
.y37_c00389{bottom:983.733333pt;}
.y3_c00389{bottom:996.800000pt;}
.y36_c00389{bottom:999.733333pt;}
.y1_c00389{bottom:1017.600000pt;}
.y2_c00389{bottom:1044.533333pt;}
.ha_c00389{height:37.333333pt;}
.h9_c00389{height:42.666667pt;}
.h8_c00389{height:48.000000pt;}
.h7_c00389{height:53.333333pt;}
.h4_c00389{height:58.666667pt;}
.h5_c00389{height:64.000000pt;}
.h6_c00389{height:69.333333pt;}
.h2_c00389{height:74.666667pt;}
.h3_c00389{height:96.000000pt;}
.h1_c00389{height:1128.666667pt;}
.h0_c00389{height:1128.960043pt;}
.w0_c00389{width:853.760009pt;}
.w1_c00389{width:854.000000pt;}
.x0_c00389{left:0.000000pt;}
.x1_c00389{left:156.800000pt;}
.x21_c00389{left:159.733333pt;}
.x53_c00389{left:161.333333pt;}
.x50_c00389{left:173.200000pt;}
.x3_c00389{left:174.666667pt;}
.x1b_c00389{left:175.600000pt;}
.x59_c00389{left:177.600000pt;}
.x67_c00389{left:179.066667pt;}
.x79_c00389{left:180.133333pt;}
.x81_c00389{left:181.333333pt;}
.x89_c00389{left:182.533333pt;}
.x96_c00389{left:183.866667pt;}
.x99_c00389{left:184.800000pt;}
.xa1_c00389{left:186.400000pt;}
.xa7_c00389{left:188.133333pt;}
.x26_c00389{left:192.666667pt;}
.x1c_c00389{left:195.066667pt;}
.x86_c00389{left:196.133333pt;}
.x7f_c00389{left:197.466667pt;}
.x22_c00389{left:198.400000pt;}
.x9d_c00389{left:199.333333pt;}
.x3f_c00389{left:202.266667pt;}
.x68_c00389{left:203.333333pt;}
.x32_c00389{left:204.266667pt;}
.x4_c00389{left:206.000000pt;}
.x77_c00389{left:206.933333pt;}
.x7a_c00389{left:209.600000pt;}
.x73_c00389{left:210.666667pt;}
.x33_c00389{left:212.266667pt;}
.x14_c00389{left:215.200000pt;}
.xa8_c00389{left:216.133333pt;}
.x82_c00389{left:217.200000pt;}
.x5a_c00389{left:219.466667pt;}
.x5b_c00389{left:220.666667pt;}
.x39_c00389{left:221.733333pt;}
.x5_c00389{left:223.866667pt;}
.x43_c00389{left:224.933333pt;}
.x6c_c00389{left:226.266667pt;}
.x51_c00389{left:227.600000pt;}
.xe_c00389{left:229.600000pt;}
.x60_c00389{left:230.666667pt;}
.x2c_c00389{left:232.000000pt;}
.x27_c00389{left:233.333333pt;}
.x25_c00389{left:235.733333pt;}
.xa5_c00389{left:237.200000pt;}
.x6_c00389{left:238.533333pt;}
.xa3_c00389{left:239.466667pt;}
.x2d_c00389{left:240.933333pt;}
.x83_c00389{left:243.066667pt;}
.x61_c00389{left:244.800000pt;}
.xf_c00389{left:246.266667pt;}
.x4b_c00389{left:247.333333pt;}
.x8d_c00389{left:250.400000pt;}
.x9a_c00389{left:251.333333pt;}
.x34_c00389{left:252.266667pt;}
.xa4_c00389{left:253.600000pt;}
.x44_c00389{left:255.333333pt;}
.x52_c00389{left:257.066667pt;}
.x49_c00389{left:258.000000pt;}
.x1d_c00389{left:259.733333pt;}
.x5c_c00389{left:260.933333pt;}
.x40_c00389{left:264.400000pt;}
.x4a_c00389{left:266.000000pt;}
.x45_c00389{left:269.466667pt;}
.x15_c00389{left:271.866667pt;}
.x3a_c00389{left:273.866667pt;}
.x4c_c00389{left:275.466667pt;}
.x54_c00389{left:277.466667pt;}
.x7_c00389{left:280.133333pt;}
.x35_c00389{left:281.733333pt;}
.x2e_c00389{left:284.800000pt;}
.x69_c00389{left:288.400000pt;}
.x1e_c00389{left:290.133333pt;}
.x65_c00389{left:292.133333pt;}
.x16_c00389{left:294.000000pt;}
.x8e_c00389{left:296.133333pt;}
.x8_c00389{left:298.400000pt;}
.x84_c00389{left:299.466667pt;}
.x94_c00389{left:301.333333pt;}
.x62_c00389{left:302.800000pt;}
.x2f_c00389{left:303.733333pt;}
.x55_c00389{left:304.666667pt;}
.x6a_c00389{left:306.666667pt;}
.x28_c00389{left:307.600000pt;}
.x36_c00389{left:311.200000pt;}
.x9b_c00389{left:312.400000pt;}
.x17_c00389{left:314.800000pt;}
.x30_c00389{left:317.200000pt;}
.x8a_c00389{left:318.266667pt;}
.xa2_c00389{left:319.200000pt;}
.x87_c00389{left:320.933333pt;}
.x23_c00389{left:322.533333pt;}
.x41_c00389{left:325.200000pt;}
.x7b_c00389{left:326.133333pt;}
.x74_c00389{left:327.200000pt;}
.x10_c00389{left:329.466667pt;}
.x6d_c00389{left:331.066667pt;}
.x1f_c00389{left:332.666667pt;}
.x3d_c00389{left:334.266667pt;}
.x11_c00389{left:336.800000pt;}
.x9_c00389{left:337.733333pt;}
.x97_c00389{left:338.800000pt;}
.x31_c00389{left:343.066667pt;}
.xa_c00389{left:344.133333pt;}
.x56_c00389{left:346.266667pt;}
.x9c_c00389{left:348.266667pt;}
.x20_c00389{left:350.533333pt;}
.x46_c00389{left:351.866667pt;}
.x9e_c00389{left:352.933333pt;}
.x3e_c00389{left:354.133333pt;}
.xb_c00389{left:355.333333pt;}
.x66_c00389{left:358.266667pt;}
.x90_c00389{left:359.333333pt;}
.x3b_c00389{left:360.666667pt;}
.x18_c00389{left:363.733333pt;}
.x12_c00389{left:365.333333pt;}
.x57_c00389{left:366.800000pt;}
.x70_c00389{left:370.933333pt;}
.x95_c00389{left:372.666667pt;}
.x91_c00389{left:374.666667pt;}
.x2_c00389{left:376.000000pt;}
.x19_c00389{left:379.733333pt;}
.x63_c00389{left:380.933333pt;}
.x9f_c00389{left:382.400000pt;}
.x85_c00389{left:383.333333pt;}
.xc_c00389{left:385.066667pt;}
.x29_c00389{left:386.933333pt;}
.x8b_c00389{left:388.000000pt;}
.x58_c00389{left:389.466667pt;}
.x6b_c00389{left:392.400000pt;}
.x5e_c00389{left:393.333333pt;}
.x64_c00389{left:396.933333pt;}
.x6e_c00389{left:399.600000pt;}
.x13_c00389{left:400.800000pt;}
.x37_c00389{left:402.533333pt;}
.x7d_c00389{left:405.066667pt;}
.x8c_c00389{left:407.200000pt;}
.x5f_c00389{left:409.066667pt;}
.x42_c00389{left:410.266667pt;}
.x71_c00389{left:411.866667pt;}
.x2a_c00389{left:412.800000pt;}
.x7e_c00389{left:414.000000pt;}
.x75_c00389{left:414.933333pt;}
.x47_c00389{left:417.200000pt;}
.x88_c00389{left:418.266667pt;}
.x93_c00389{left:419.333333pt;}
.xd_c00389{left:420.933333pt;}
.x78_c00389{left:422.000000pt;}
.x4d_c00389{left:424.000000pt;}
.x24_c00389{left:424.933333pt;}
.x92_c00389{left:425.866667pt;}
.x72_c00389{left:428.800000pt;}
.x3c_c00389{left:430.800000pt;}
.x4e_c00389{left:431.733333pt;}
.x5d_c00389{left:434.000000pt;}
.x80_c00389{left:435.466667pt;}
.x1a_c00389{left:437.066667pt;}
.x8f_c00389{left:439.066667pt;}
.x4f_c00389{left:441.333333pt;}
.x38_c00389{left:442.933333pt;}
.x7c_c00389{left:444.533333pt;}
.x76_c00389{left:445.600000pt;}
.x48_c00389{left:446.933333pt;}
.x6f_c00389{left:448.933333pt;}
.xa6_c00389{left:450.800000pt;}
.x98_c00389{left:451.733333pt;}
.xa0_c00389{left:452.666667pt;}
.x2b_c00389{left:454.133333pt;}
.xc5_c00389{left:476.133333pt;}
.xfe_c00389{left:478.400000pt;}
.x114_c00389{left:480.266667pt;}
.x11d_c00389{left:481.600000pt;}
.x128_c00389{left:484.133333pt;}
.xa9_c00389{left:490.266667pt;}
.xad_c00389{left:491.333333pt;}
.xd2_c00389{left:492.666667pt;}
.xdd_c00389{left:493.600000pt;}
.x106_c00389{left:494.800000pt;}
.x118_c00389{left:496.400000pt;}
.x11c_c00389{left:497.600000pt;}
.x12b_c00389{left:500.266667pt;}
.x135_c00389{left:501.600000pt;}
.xae_c00389{left:509.200000pt;}
.x116_c00389{left:512.266667pt;}
.x123_c00389{left:514.266667pt;}
.x111_c00389{left:515.200000pt;}
.xd8_c00389{left:516.400000pt;}
.xe4_c00389{left:518.400000pt;}
.xbd_c00389{left:520.000000pt;}
.x107_c00389{left:523.866667pt;}
.xea_c00389{left:524.800000pt;}
.x102_c00389{left:527.733333pt;}
.xd3_c00389{left:530.133333pt;}
.x122_c00389{left:531.066667pt;}
.x10e_c00389{left:534.400000pt;}
.xc6_c00389{left:535.600000pt;}
.xe5_c00389{left:536.666667pt;}
.xde_c00389{left:542.266667pt;}
.xaf_c00389{left:545.066667pt;}
.x110_c00389{left:546.266667pt;}
.xb7_c00389{left:548.533333pt;}
.xfc_c00389{left:552.800000pt;}
.xf8_c00389{left:554.266667pt;}
.xcb_c00389{left:555.333333pt;}
.x125_c00389{left:557.200000pt;}
.xeb_c00389{left:560.266667pt;}
.xaa_c00389{left:562.933333pt;}
.xcc_c00389{left:565.200000pt;}
.xf0_c00389{left:566.266667pt;}
.xb0_c00389{left:567.466667pt;}
.xf2_c00389{left:571.200000pt;}
.xd4_c00389{left:572.666667pt;}
.xdf_c00389{left:573.600000pt;}
.xbe_c00389{left:575.066667pt;}
.x124_c00389{left:576.000000pt;}
.xfd_c00389{left:577.466667pt;}
.xf9_c00389{left:578.933333pt;}
.xf3_c00389{left:579.866667pt;}
.x11a_c00389{left:582.666667pt;}
.x12c_c00389{left:584.533333pt;}
.x112_c00389{left:585.866667pt;}
.xff_c00389{left:587.466667pt;}
.xd9_c00389{left:591.200000pt;}
.x127_c00389{left:592.666667pt;}
.xe0_c00389{left:594.133333pt;}
.xcd_c00389{left:595.333333pt;}
.xb1_c00389{left:599.466667pt;}
.xf4_c00389{left:601.600000pt;}
.x100_c00389{left:603.200000pt;}
.x126_c00389{left:604.533333pt;}
.xbf_c00389{left:606.400000pt;}
.xb2_c00389{left:607.733333pt;}
.x10a_c00389{left:609.333333pt;}
.xc7_c00389{left:610.800000pt;}
.x12d_c00389{left:611.733333pt;}
.x11f_c00389{left:613.066667pt;}
.x136_c00389{left:614.933333pt;}
.xb3_c00389{left:618.933333pt;}
.x101_c00389{left:620.533333pt;}
.x108_c00389{left:621.466667pt;}
.xe1_c00389{left:624.533333pt;}
.xec_c00389{left:626.133333pt;}
.xda_c00389{left:628.000000pt;}
.x103_c00389{left:630.133333pt;}
.xb4_c00389{left:634.266667pt;}
.xf5_c00389{left:635.866667pt;}
.x12e_c00389{left:640.533333pt;}
.xd5_c00389{left:641.466667pt;}
.x10f_c00389{left:644.000000pt;}
.xc0_c00389{left:645.066667pt;}
.x12f_c00389{left:648.800000pt;}
.x115_c00389{left:650.133333pt;}
.x104_c00389{left:652.266667pt;}
.xb8_c00389{left:653.600000pt;}
.xf1_c00389{left:655.600000pt;}
.xe6_c00389{left:656.666667pt;}
.x129_c00389{left:658.800000pt;}
.x11b_c00389{left:660.133333pt;}
.xfa_c00389{left:661.333333pt;}
.x10b_c00389{left:662.400000pt;}
.xdb_c00389{left:666.133333pt;}
.x130_c00389{left:667.066667pt;}
.x12a_c00389{left:668.000000pt;}
.x119_c00389{left:669.200000pt;}
.x113_c00389{left:670.400000pt;}
.xce_c00389{left:671.466667pt;}
.xd6_c00389{left:672.800000pt;}
.xe7_c00389{left:675.200000pt;}
.xab_c00389{left:676.533333pt;}
.xc1_c00389{left:678.666667pt;}
.xc8_c00389{left:681.866667pt;}
.x133_c00389{left:686.533333pt;}
.xed_c00389{left:690.133333pt;}
.xf6_c00389{left:691.866667pt;}
.x109_c00389{left:693.466667pt;}
.xc2_c00389{left:694.666667pt;}
.xe2_c00389{left:696.266667pt;}
.xcf_c00389{left:697.733333pt;}
.x120_c00389{left:700.400000pt;}
.xdc_c00389{left:701.600000pt;}
.x131_c00389{left:702.533333pt;}
.xac_c00389{left:703.466667pt;}
.xc9_c00389{left:704.533333pt;}
.xb5_c00389{left:706.266667pt;}
.x105_c00389{left:707.333333pt;}
.x134_c00389{left:710.000000pt;}
.xb9_c00389{left:711.200000pt;}
.xd0_c00389{left:712.800000pt;}
.xee_c00389{left:714.800000pt;}
.xe8_c00389{left:716.533333pt;}
.xba_c00389{left:719.466667pt;}
.x10c_c00389{left:721.866667pt;}
.x132_c00389{left:723.066667pt;}
.xb6_c00389{left:724.533333pt;}
.xca_c00389{left:726.266667pt;}
.xc3_c00389{left:731.466667pt;}
.xd7_c00389{left:735.200000pt;}
.xbb_c00389{left:736.400000pt;}
.x10d_c00389{left:739.466667pt;}
.xe3_c00389{left:742.400000pt;}
.x121_c00389{left:748.666667pt;}
.xf7_c00389{left:751.333333pt;}
.x117_c00389{left:754.266667pt;}
.xc4_c00389{left:755.733333pt;}
.xe9_c00389{left:758.400000pt;}
.xbc_c00389{left:759.733333pt;}
.xd1_c00389{left:762.133333pt;}
.xfb_c00389{left:763.066667pt;}
.xef_c00389{left:765.333333pt;}
.x11e_c00389{left:772.400000pt;}
}





/* 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_c00390 {
    display:none;
  }
  .loading-indicator_c00390.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00390 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_c00390 { 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_c00390" -> "#page-container .classname_c00390")
 */
.pf_c00390 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00390 { /* 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_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00390 { /* 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_c00390 { /* 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_c00390 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00390 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00390 {overflow:visible;}
  }
}
.c_c00390 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00390 { /* 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_c00390:after { /* webkit #35443 */
  content: '';
}
.t_c00390:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00390 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 */
}
.__c00390 { /* 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_c00390 { /* info for Javascript */
  display:none;
}
.l_c00390 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00390 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00390 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00390: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_c00390 {
    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_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00390.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_c00390 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00390;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.000000;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;}
.m89_c00390{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00390{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m70_c00390{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.meb_c00390{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00390{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00390{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m66_c00390{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00390{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m40_c00390{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.md3_c00390{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md2_c00390{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00390{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.md1_c00390{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me_c00390{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.med_c00390{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00390{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mb_c00390{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00390{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.maa_c00390{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00390{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mca_c00390{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m75_c00390{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00390{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00390{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00390{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m116_c00390{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.mce_c00390{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00390{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00390{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m99_c00390{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me7_c00390{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00390{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m30_c00390{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00390{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md_c00390{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00390{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m65_c00390{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00390{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00390{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00390{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m29_c00390{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00390{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m83_c00390{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m22_c00390{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00390{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00390{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00390{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00390{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00390{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00390{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m31_c00390{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m32_c00390{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00390{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m106_c00390{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00390{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m41_c00390{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m101_c00390{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00390{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mee_c00390{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m28_c00390{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00390{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m98_c00390{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m82_c00390{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m100_c00390{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2_c00390{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00390{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m21_c00390{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m62_c00390{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mff_c00390{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mec_c00390{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m8_c00390{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m57_c00390{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00390{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m94_c00390{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00390{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m107_c00390{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m15_c00390{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m112_c00390{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma_c00390{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m73_c00390{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00390{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m16_c00390{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m37_c00390{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m26_c00390{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00390{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10_c00390{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m87_c00390{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00390{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00390{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m38_c00390{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00390{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00390{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m78_c00390{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m12_c00390{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m33_c00390{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m85_c00390{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00390{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00390{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00390{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00390{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m88_c00390{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00390{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00390{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m110_c00390{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00390{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00390{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m77_c00390{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m95_c00390{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me4_c00390{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m13_c00390{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m76_c00390{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00390{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00390{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00390{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m111_c00390{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m59_c00390{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m79_c00390{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m86_c00390{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00390{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3_c00390{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00390{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mef_c00390{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m58_c00390{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00390{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mba_c00390{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m64_c00390{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m108_c00390{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00390{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00390{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m25_c00390{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00390{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m60_c00390{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me9_c00390{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00390{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m14_c00390{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mc_c00390{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00390{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m93_c00390{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m115_c00390{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m104_c00390{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m24_c00390{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md5_c00390{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00390{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00390{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me5_c00390{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00390{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me8_c00390{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4_c00390{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m81_c00390{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00390{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00390{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m44_c00390{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m55_c00390{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m53_c00390{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00390{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m117_c00390{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00390{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00390{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00390{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m19_c00390{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00390{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m56_c00390{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m34_c00390{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m63_c00390{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00390{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m48_c00390{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00390{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me6_c00390{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.maf_c00390{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md6_c00390{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00390{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m20_c00390{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00390{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me3_c00390{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m80_c00390{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5_c00390{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m91_c00390{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me1_c00390{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m113_c00390{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m92_c00390{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00390{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m23_c00390{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m105_c00390{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7_c00390{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00390{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6_c00390{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m52_c00390{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00390{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m42_c00390{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m54_c00390{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mac_c00390{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00390{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.md9_c00390{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m69_c00390{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m109_c00390{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m18_c00390{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00390{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00390{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf_c00390{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md7_c00390{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m46_c00390{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00390{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mae_c00390{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00390{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00390{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md8_c00390{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00390{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00390{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m35_c00390{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m67_c00390{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mea_c00390{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00390{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m17_c00390{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m114_c00390{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00390{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m49_c00390{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9_c00390{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00390{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00390{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m39_c00390{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m45_c00390{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m36_c00390{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md0_c00390{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m27_c00390{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00390{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00390{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00390{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00390{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00390{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00390{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00390{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00390{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m50_c00390{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00390{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m72_c00390{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00390{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m71_c00390{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m97_c00390{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);}
.m7c_c00390{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me2_c00390{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00390{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00390{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00390{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m84_c00390{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m43_c00390{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00390{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m68_c00390{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m51_c00390{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mde_c00390{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00390{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m11_c00390{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00390{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.me0_c00390{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m103_c00390{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mab_c00390{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m74_c00390{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00390{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00390{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00390{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00390{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00390{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00390{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00390{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00390{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m47_c00390{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00390{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m118_c00390{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mda_c00390{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00390{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00390{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m96_c00390{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m61_c00390{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m90_c00390{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00390{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00390{transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);}
.m119_c00390{transform:matrix(0.388750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388750,0.000000,0.000000,0.250000,0,0);}
.m0_c00390{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.md4_c00390{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00390{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mad_c00390{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m102_c00390{transform:matrix(1.066250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.066250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.066250,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls0_c00390{letter-spacing:0.000000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{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__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00390{word-spacing:-20.714286px;}
.ws7_c00390{word-spacing:-13.714286px;}
.ws1_c00390{word-spacing:-9.123471px;}
.ws8_c00390{word-spacing:0.000000px;}
.ws6_c00390{word-spacing:6.935780px;}
.ws0_c00390{word-spacing:7.187500px;}
.ws3_c00390{word-spacing:15.000000px;}
.ws2_c00390{word-spacing:25.714286px;}
.ws4_c00390{word-spacing:63.125000px;}
.fc0_c00390{color:transparent;}
.fs5_c00390{font-size:30.000000px;}
.fs4_c00390{font-size:54.000000px;}
.fs3_c00390{font-size:60.000000px;}
.fs2_c00390{font-size:66.000000px;}
.fs1_c00390{font-size:72.000000px;}
.fs0_c00390{font-size:84.000000px;}
.y0_c00390{bottom:0.000000px;}
.y69_c00390{bottom:166.350000px;}
.y68_c00390{bottom:184.650000px;}
.y32_c00390{bottom:189.600000px;}
.y67_c00390{bottom:199.650000px;}
.y31_c00390{bottom:208.350000px;}
.y66_c00390{bottom:214.350000px;}
.y30_c00390{bottom:226.350000px;}
.y65_c00390{bottom:229.050000px;}
.y64_c00390{bottom:243.450000px;}
.y2f_c00390{bottom:244.350000px;}
.y63_c00390{bottom:258.150000px;}
.y2e_c00390{bottom:262.050000px;}
.y62_c00390{bottom:272.550000px;}
.y2d_c00390{bottom:284.700000px;}
.y61_c00390{bottom:298.500000px;}
.y2c_c00390{bottom:311.100000px;}
.y60_c00390{bottom:326.850000px;}
.y2b_c00390{bottom:329.700000px;}
.y5f_c00390{bottom:349.500000px;}
.y2a_c00390{bottom:365.700000px;}
.y5e_c00390{bottom:366.750000px;}
.y29_c00390{bottom:383.700000px;}
.y5d_c00390{bottom:384.750000px;}
.y5c_c00390{bottom:402.450000px;}
.y28_c00390{bottom:413.700000px;}
.y27_c00390{bottom:424.500000px;}
.y5b_c00390{bottom:425.250000px;}
.y26_c00390{bottom:441.300000px;}
.y5a_c00390{bottom:443.250000px;}
.y25_c00390{bottom:459.300000px;}
.y59_c00390{bottom:461.550000px;}
.y24_c00390{bottom:477.000000px;}
.y58_c00390{bottom:479.550000px;}
.y23_c00390{bottom:494.700000px;}
.y57_c00390{bottom:497.850000px;}
.y22_c00390{bottom:512.700000px;}
.y56_c00390{bottom:515.850000px;}
.y21_c00390{bottom:530.250000px;}
.y55_c00390{bottom:533.850000px;}
.y54_c00390{bottom:551.850000px;}
.y20_c00390{bottom:553.350000px;}
.y53_c00390{bottom:569.850000px;}
.y1f_c00390{bottom:575.250000px;}
.y52_c00390{bottom:587.850000px;}
.y1e_c00390{bottom:598.050000px;}
.y51_c00390{bottom:605.850000px;}
.y1d_c00390{bottom:616.350000px;}
.y50_c00390{bottom:623.550000px;}
.y1c_c00390{bottom:639.300000px;}
.y4f_c00390{bottom:641.550000px;}
.y1b_c00390{bottom:656.550000px;}
.y4e_c00390{bottom:659.700000px;}
.y1a_c00390{bottom:674.250000px;}
.y4d_c00390{bottom:677.400000px;}
.y19_c00390{bottom:692.250000px;}
.y4c_c00390{bottom:695.400000px;}
.y18_c00390{bottom:709.950000px;}
.y4b_c00390{bottom:713.100000px;}
.y17_c00390{bottom:728.250000px;}
.y4a_c00390{bottom:731.100000px;}
.y49_c00390{bottom:749.100000px;}
.y16_c00390{bottom:749.550000px;}
.y48_c00390{bottom:767.100000px;}
.y15_c00390{bottom:767.550000px;}
.y14_c00390{bottom:785.250000px;}
.y47_c00390{bottom:785.400000px;}
.y46_c00390{bottom:803.100000px;}
.y13_c00390{bottom:807.150000px;}
.y45_c00390{bottom:824.100000px;}
.y12_c00390{bottom:829.800000px;}
.y44_c00390{bottom:838.800000px;}
.y11_c00390{bottom:847.800000px;}
.y43_c00390{bottom:852.900000px;}
.y10_c00390{bottom:865.800000px;}
.y42_c00390{bottom:867.300000px;}
.y41_c00390{bottom:881.400000px;}
.yf_c00390{bottom:883.800000px;}
.y40_c00390{bottom:896.100000px;}
.ye_c00390{bottom:901.800000px;}
.y3f_c00390{bottom:910.500000px;}
.yd_c00390{bottom:919.500000px;}
.y3e_c00390{bottom:924.900000px;}
.yc_c00390{bottom:937.500000px;}
.y3d_c00390{bottom:939.300000px;}
.y3c_c00390{bottom:953.700000px;}
.yb_c00390{bottom:955.800000px;}
.y3b_c00390{bottom:968.100000px;}
.ya_c00390{bottom:973.500000px;}
.y3a_c00390{bottom:982.800000px;}
.y9_c00390{bottom:991.500000px;}
.y39_c00390{bottom:1003.350000px;}
.y8_c00390{bottom:1013.400000px;}
.y38_c00390{bottom:1021.650000px;}
.y7_c00390{bottom:1031.400000px;}
.y37_c00390{bottom:1039.350000px;}
.y6_c00390{bottom:1053.000000px;}
.y36_c00390{bottom:1057.350000px;}
.y5_c00390{bottom:1074.900000px;}
.y35_c00390{bottom:1080.000000px;}
.y4_c00390{bottom:1097.400000px;}
.y34_c00390{bottom:1098.000000px;}
.y3_c00390{bottom:1115.700000px;}
.y33_c00390{bottom:1116.000000px;}
.y2_c00390{bottom:1139.700000px;}
.y1_c00390{bottom:1143.000000px;}
.h7_c00390{height:30.000000px;}
.h6_c00390{height:54.000000px;}
.h5_c00390{height:60.000000px;}
.h4_c00390{height:66.000000px;}
.h3_c00390{height:72.000000px;}
.h2_c00390{height:84.000000px;}
.h0_c00390{height:1265.760040px;}
.h1_c00390{height:1266.000000px;}
.w0_c00390{width:960.480010px;}
.w1_c00390{width:960.750000px;}
.x0_c00390{left:0.000000px;}
.x75_c00390{left:85.350000px;}
.x8f_c00390{left:89.250000px;}
.x41_c00390{left:99.300000px;}
.x9_c00390{left:101.100000px;}
.x44_c00390{left:102.600000px;}
.x2b_c00390{left:103.950000px;}
.x93_c00390{left:105.900000px;}
.xa_c00390{left:118.800000px;}
.x13_c00390{left:120.300000px;}
.x3_c00390{left:122.100000px;}
.x66_c00390{left:123.600000px;}
.x1f_c00390{left:125.100000px;}
.x2c_c00390{left:128.400000px;}
.x90_c00390{left:130.650000px;}
.x3b_c00390{left:134.100000px;}
.x69_c00390{left:137.550000px;}
.x67_c00390{left:139.500000px;}
.x94_c00390{left:140.850000px;}
.x76_c00390{left:145.500000px;}
.x98_c00390{left:147.150000px;}
.x2d_c00390{left:148.500000px;}
.x25_c00390{left:150.600000px;}
.x18_c00390{left:152.400000px;}
.x4_c00390{left:154.500000px;}
.x11_c00390{left:156.450000px;}
.x3c_c00390{left:158.250000px;}
.x33_c00390{left:159.900000px;}
.x19_c00390{left:161.700000px;}
.x49_c00390{left:163.350000px;}
.x4d_c00390{left:165.300000px;}
.x8a_c00390{left:166.500000px;}
.x50_c00390{left:167.550000px;}
.x99_c00390{left:169.800000px;}
.xb_c00390{left:171.000000px;}
.x3d_c00390{left:172.950000px;}
.x2e_c00390{left:177.600000px;}
.x14_c00390{left:178.650000px;}
.x61_c00390{left:180.450000px;}
.x74_c00390{left:182.850000px;}
.x34_c00390{left:184.350000px;}
.x26_c00390{left:186.300000px;}
.x7d_c00390{left:187.500000px;}
.x86_c00390{left:189.000000px;}
.x6e_c00390{left:190.500000px;}
.x89_c00390{left:193.350000px;}
.x12_c00390{left:196.350000px;}
.x77_c00390{left:197.400000px;}
.x20_c00390{left:199.950000px;}
.x68_c00390{left:201.450000px;}
.x4e_c00390{left:202.800000px;}
.x87_c00390{left:203.850000px;}
.x35_c00390{left:205.950000px;}
.x42_c00390{left:208.350000px;}
.x91_c00390{left:209.850000px;}
.x57_c00390{left:211.950000px;}
.xc_c00390{left:213.150000px;}
.x1a_c00390{left:215.400000px;}
.x51_c00390{left:217.950000px;}
.x81_c00390{left:219.750000px;}
.x5d_c00390{left:221.100000px;}
.xd_c00390{left:224.700000px;}
.x5_c00390{left:225.750000px;}
.x2f_c00390{left:227.700000px;}
.x96_c00390{left:230.400000px;}
.x78_c00390{left:231.900000px;}
.x4a_c00390{left:234.600000px;}
.x72_c00390{left:235.650000px;}
.x15_c00390{left:239.850000px;}
.x7a_c00390{left:241.200000px;}
.x53_c00390{left:243.000000px;}
.x62_c00390{left:245.250000px;}
.x6_c00390{left:246.600000px;}
.x45_c00390{left:247.950000px;}
.x52_c00390{left:249.600000px;}
.x1b_c00390{left:251.100000px;}
.x21_c00390{left:255.450000px;}
.x36_c00390{left:257.850000px;}
.x27_c00390{left:259.800000px;}
.x82_c00390{left:260.850000px;}
.x5a_c00390{left:262.050000px;}
.x63_c00390{left:264.000000px;}
.x4f_c00390{left:267.600000px;}
.x7_c00390{left:269.700000px;}
.x37_c00390{left:271.950000px;}
.x8e_c00390{left:274.650000px;}
.x58_c00390{left:278.100000px;}
.x1c_c00390{left:279.900000px;}
.x22_c00390{left:280.950000px;}
.x92_c00390{left:282.600000px;}
.x28_c00390{left:283.950000px;}
.x5e_c00390{left:289.800000px;}
.x16_c00390{left:291.750000px;}
.x8b_c00390{left:293.550000px;}
.x79_c00390{left:295.950000px;}
.x38_c00390{left:297.150000px;}
.x6a_c00390{left:299.850000px;}
.xe_c00390{left:301.050000px;}
.x97_c00390{left:302.100000px;}
.x29_c00390{left:304.800000px;}
.x46_c00390{left:307.950000px;}
.x7e_c00390{left:310.200000px;}
.xf_c00390{left:311.550000px;}
.x83_c00390{left:312.750000px;}
.x54_c00390{left:313.950000px;}
.x3e_c00390{left:316.950000px;}
.x6b_c00390{left:318.900000px;}
.x30_c00390{left:320.250000px;}
.x43_c00390{left:321.750000px;}
.x84_c00390{left:324.300000px;}
.x8_c00390{left:325.800000px;}
.x1_c00390{left:328.350000px;}
.x5b_c00390{left:330.450000px;}
.x23_c00390{left:331.650000px;}
.x59_c00390{left:333.150000px;}
.x55_c00390{left:334.800000px;}
.x9a_c00390{left:336.450000px;}
.x95_c00390{left:337.650000px;}
.x10_c00390{left:340.050000px;}
.x39_c00390{left:342.600000px;}
.x31_c00390{left:344.700000px;}
.x6f_c00390{left:349.650000px;}
.x5c_c00390{left:351.750000px;}
.x4b_c00390{left:353.850000px;}
.x2a_c00390{left:356.250000px;}
.x8c_c00390{left:357.750000px;}
.x17_c00390{left:359.100000px;}
.x5f_c00390{left:361.200000px;}
.x64_c00390{left:364.050000px;}
.x1d_c00390{left:367.350000px;}
.x70_c00390{left:368.700000px;}
.x47_c00390{left:371.250000px;}
.x6c_c00390{left:372.900000px;}
.x8d_c00390{left:375.450000px;}
.x7f_c00390{left:376.500000px;}
.x85_c00390{left:378.000000px;}
.x7b_c00390{left:380.100000px;}
.x3f_c00390{left:382.050000px;}
.x48_c00390{left:383.850000px;}
.x1e_c00390{left:386.400000px;}
.x60_c00390{left:388.200000px;}
.x32_c00390{left:389.250000px;}
.x3a_c00390{left:391.500000px;}
.x65_c00390{left:393.150000px;}
.x56_c00390{left:396.300000px;}
.x80_c00390{left:397.350000px;}
.x88_c00390{left:400.050000px;}
.x6d_c00390{left:403.500000px;}
.x4c_c00390{left:405.000000px;}
.x40_c00390{left:406.200000px;}
.x73_c00390{left:408.150000px;}
.x24_c00390{left:417.000000px;}
.x71_c00390{left:418.050000px;}
.x7c_c00390{left:419.400000px;}
.xc2_c00390{left:441.000000px;}
.xb2_c00390{left:442.050000px;}
.x12d_c00390{left:443.550000px;}
.x133_c00390{left:446.700000px;}
.x107_c00390{left:450.000000px;}
.xc8_c00390{left:455.700000px;}
.x134_c00390{left:458.700000px;}
.x9b_c00390{left:460.050000px;}
.xfb_c00390{left:461.100000px;}
.x13a_c00390{left:464.550000px;}
.xcd_c00390{left:469.800000px;}
.x13b_c00390{left:471.300000px;}
.xc9_c00390{left:474.000000px;}
.x9c_c00390{left:480.150000px;}
.xb3_c00390{left:486.000000px;}
.x11a_c00390{left:487.050000px;}
.x12c_c00390{left:488.250000px;}
.x135_c00390{left:490.500000px;}
.xce_c00390{left:492.150000px;}
.xf9_c00390{left:493.800000px;}
.xbf_c00390{left:495.450000px;}
.x12a_c00390{left:496.500000px;}
.x112_c00390{left:498.150000px;}
.xa3_c00390{left:499.350000px;}
.xfc_c00390{left:500.700000px;}
.xaa_c00390{left:502.200000px;}
.x9d_c00390{left:503.250000px;}
.x113_c00390{left:506.850000px;}
.xcf_c00390{left:509.850000px;}
.xdd_c00390{left:514.200000px;}
.x13c_c00390{left:515.400000px;}
.xeb_c00390{left:516.600000px;}
.x10a_c00390{left:517.950000px;}
.x12e_c00390{left:519.900000px;}
.xca_c00390{left:521.100000px;}
.xf6_c00390{left:522.750000px;}
.xd0_c00390{left:524.250000px;}
.xa4_c00390{left:525.300000px;}
.x124_c00390{left:526.500000px;}
.xe8_c00390{left:527.850000px;}
.x117_c00390{left:530.700000px;}
.xd6_c00390{left:532.050000px;}
.x12f_c00390{left:534.300000px;}
.x104_c00390{left:536.100000px;}
.x125_c00390{left:537.750000px;}
.xb7_c00390{left:539.400000px;}
.xab_c00390{left:541.050000px;}
.xe2_c00390{left:543.300000px;}
.x9e_c00390{left:544.950000px;}
.xf0_c00390{left:548.550000px;}
.x118_c00390{left:550.500000px;}
.xb4_c00390{left:551.850000px;}
.xe6_c00390{left:553.200000px;}
.x11c_c00390{left:554.700000px;}
.xac_c00390{left:557.550000px;}
.x105_c00390{left:564.150000px;}
.xe9_c00390{left:565.350000px;}
.xa5_c00390{left:566.700000px;}
.x114_c00390{left:568.050000px;}
.x126_c00390{left:569.850000px;}
.xde_c00390{left:571.800000px;}
.xd1_c00390{left:574.950000px;}
.xb8_c00390{left:577.200000px;}
.x13d_c00390{left:578.400000px;}
.xfd_c00390{left:580.200000px;}
.x108_c00390{left:583.200000px;}
.xc0_c00390{left:584.400000px;}
.x115_c00390{left:587.550000px;}
.x127_c00390{left:590.400000px;}
.xad_c00390{left:591.450000px;}
.xf1_c00390{left:593.250000px;}
.xe3_c00390{left:594.750000px;}
.x9f_c00390{left:596.100000px;}
.x11d_c00390{left:597.900000px;}
.xa6_c00390{left:599.100000px;}
.xdf_c00390{left:600.600000px;}
.x130_c00390{left:601.650000px;}
.x110_c00390{left:604.350000px;}
.xf2_c00390{left:605.550000px;}
.xd7_c00390{left:606.900000px;}
.xc3_c00390{left:609.150000px;}
.xff_c00390{left:613.200000px;}
.xd8_c00390{left:614.400000px;}
.x138_c00390{left:616.650000px;}
.x13e_c00390{left:617.700000px;}
.xa0_c00390{left:619.200000px;}
.xf7_c00390{left:620.250000px;}
.x131_c00390{left:621.750000px;}
.xe4_c00390{left:623.550000px;}
.xae_c00390{left:625.350000px;}
.xa7_c00390{left:626.400000px;}
.xb9_c00390{left:628.650000px;}
.x101_c00390{left:630.000000px;}
.xc4_c00390{left:631.050000px;}
.xec_c00390{left:633.900000px;}
.xd2_c00390{left:636.450000px;}
.xbc_c00390{left:638.850000px;}
.xe7_c00390{left:640.350000px;}
.xd9_c00390{left:643.200000px;}
.x128_c00390{left:644.400000px;}
.x119_c00390{left:645.900000px;}
.xc1_c00390{left:647.100000px;}
.xaf_c00390{left:649.500000px;}
.xda_c00390{left:650.700000px;}
.x10d_c00390{left:651.750000px;}
.xe0_c00390{left:653.100000px;}
.xf3_c00390{left:654.150000px;}
.xcb_c00390{left:655.650000px;}
.xa1_c00390{left:657.000000px;}
.x136_c00390{left:660.000000px;}
.xc5_c00390{left:663.750000px;}
.x116_c00390{left:665.550000px;}
.x10b_c00390{left:667.050000px;}
.xd3_c00390{left:668.100000px;}
.xe5_c00390{left:670.350000px;}
.xdb_c00390{left:671.550000px;}
.x109_c00390{left:673.950000px;}
.x13f_c00390{left:675.000000px;}
.x10e_c00390{left:676.200000px;}
.xb5_c00390{left:679.050000px;}
.xe1_c00390{left:680.400000px;}
.xba_c00390{left:684.150000px;}
.xdc_c00390{left:686.250000px;}
.xa8_c00390{left:690.150000px;}
.x11e_c00390{left:692.250000px;}
.x102_c00390{left:696.300000px;}
.xc6_c00390{left:697.950000px;}
.xbb_c00390{left:699.600000px;}
.xf8_c00390{left:701.550000px;}
.x121_c00390{left:702.900000px;}
.xd4_c00390{left:705.900000px;}
.xcc_c00390{left:707.550000px;}
.x132_c00390{left:708.750000px;}
.x12b_c00390{left:712.200000px;}
.xbd_c00390{left:714.150000px;}
.xed_c00390{left:715.350000px;}
.x129_c00390{left:716.400000px;}
.xb0_c00390{left:718.950000px;}
.xfa_c00390{left:720.600000px;}
.xa2_c00390{left:721.800000px;}
.x123_c00390{left:723.150000px;}
.x103_c00390{left:724.800000px;}
.xf4_c00390{left:726.150000px;}
.x10f_c00390{left:727.650000px;}
.xb1_c00390{left:729.000000px;}
.x11b_c00390{left:730.350000px;}
.xd5_c00390{left:732.900000px;}
.x120_c00390{left:734.250000px;}
.xb6_c00390{left:735.600000px;}
.xee_c00390{left:737.250000px;}
.x111_c00390{left:738.750000px;}
.x122_c00390{left:741.000000px;}
.xbe_c00390{left:746.250000px;}
.x10c_c00390{left:749.250000px;}
.x2_c00390{left:750.600000px;}
.x137_c00390{left:751.800000px;}
.x100_c00390{left:753.900000px;}
.xef_c00390{left:756.300000px;}
.xfe_c00390{left:760.200000px;}
.x139_c00390{left:762.150000px;}
.xc7_c00390{left:763.200000px;}
.xa9_c00390{left:764.700000px;}
.x11f_c00390{left:765.900000px;}
.xf5_c00390{left:768.300000px;}
.x106_c00390{left:769.650000px;}
.xea_c00390{left:775.800000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws5_c00390{word-spacing:-18.412698pt;}
.ws7_c00390{word-spacing:-12.190476pt;}
.ws1_c00390{word-spacing:-8.109752pt;}
.ws8_c00390{word-spacing:0.000000pt;}
.ws6_c00390{word-spacing:6.165138pt;}
.ws0_c00390{word-spacing:6.388889pt;}
.ws3_c00390{word-spacing:13.333333pt;}
.ws2_c00390{word-spacing:22.857143pt;}
.ws4_c00390{word-spacing:56.111111pt;}
.fs5_c00390{font-size:26.666667pt;}
.fs4_c00390{font-size:48.000000pt;}
.fs3_c00390{font-size:53.333333pt;}
.fs2_c00390{font-size:58.666667pt;}
.fs1_c00390{font-size:64.000000pt;}
.fs0_c00390{font-size:74.666667pt;}
.y0_c00390{bottom:0.000000pt;}
.y69_c00390{bottom:147.866667pt;}
.y68_c00390{bottom:164.133333pt;}
.y32_c00390{bottom:168.533333pt;}
.y67_c00390{bottom:177.466667pt;}
.y31_c00390{bottom:185.200000pt;}
.y66_c00390{bottom:190.533333pt;}
.y30_c00390{bottom:201.200000pt;}
.y65_c00390{bottom:203.600000pt;}
.y64_c00390{bottom:216.400000pt;}
.y2f_c00390{bottom:217.200000pt;}
.y63_c00390{bottom:229.466667pt;}
.y2e_c00390{bottom:232.933333pt;}
.y62_c00390{bottom:242.266667pt;}
.y2d_c00390{bottom:253.066667pt;}
.y61_c00390{bottom:265.333333pt;}
.y2c_c00390{bottom:276.533333pt;}
.y60_c00390{bottom:290.533333pt;}
.y2b_c00390{bottom:293.066667pt;}
.y5f_c00390{bottom:310.666667pt;}
.y2a_c00390{bottom:325.066667pt;}
.y5e_c00390{bottom:326.000000pt;}
.y29_c00390{bottom:341.066667pt;}
.y5d_c00390{bottom:342.000000pt;}
.y5c_c00390{bottom:357.733333pt;}
.y28_c00390{bottom:367.733333pt;}
.y27_c00390{bottom:377.333333pt;}
.y5b_c00390{bottom:378.000000pt;}
.y26_c00390{bottom:392.266667pt;}
.y5a_c00390{bottom:394.000000pt;}
.y25_c00390{bottom:408.266667pt;}
.y59_c00390{bottom:410.266667pt;}
.y24_c00390{bottom:424.000000pt;}
.y58_c00390{bottom:426.266667pt;}
.y23_c00390{bottom:439.733333pt;}
.y57_c00390{bottom:442.533333pt;}
.y22_c00390{bottom:455.733333pt;}
.y56_c00390{bottom:458.533333pt;}
.y21_c00390{bottom:471.333333pt;}
.y55_c00390{bottom:474.533333pt;}
.y54_c00390{bottom:490.533333pt;}
.y20_c00390{bottom:491.866667pt;}
.y53_c00390{bottom:506.533333pt;}
.y1f_c00390{bottom:511.333333pt;}
.y52_c00390{bottom:522.533333pt;}
.y1e_c00390{bottom:531.600000pt;}
.y51_c00390{bottom:538.533333pt;}
.y1d_c00390{bottom:547.866667pt;}
.y50_c00390{bottom:554.266667pt;}
.y1c_c00390{bottom:568.266667pt;}
.y4f_c00390{bottom:570.266667pt;}
.y1b_c00390{bottom:583.600000pt;}
.y4e_c00390{bottom:586.400000pt;}
.y1a_c00390{bottom:599.333333pt;}
.y4d_c00390{bottom:602.133333pt;}
.y19_c00390{bottom:615.333333pt;}
.y4c_c00390{bottom:618.133333pt;}
.y18_c00390{bottom:631.066667pt;}
.y4b_c00390{bottom:633.866667pt;}
.y17_c00390{bottom:647.333333pt;}
.y4a_c00390{bottom:649.866667pt;}
.y49_c00390{bottom:665.866667pt;}
.y16_c00390{bottom:666.266667pt;}
.y48_c00390{bottom:681.866667pt;}
.y15_c00390{bottom:682.266667pt;}
.y14_c00390{bottom:698.000000pt;}
.y47_c00390{bottom:698.133333pt;}
.y46_c00390{bottom:713.866667pt;}
.y13_c00390{bottom:717.466667pt;}
.y45_c00390{bottom:732.533333pt;}
.y12_c00390{bottom:737.600000pt;}
.y44_c00390{bottom:745.600000pt;}
.y11_c00390{bottom:753.600000pt;}
.y43_c00390{bottom:758.133333pt;}
.y10_c00390{bottom:769.600000pt;}
.y42_c00390{bottom:770.933333pt;}
.y41_c00390{bottom:783.466667pt;}
.yf_c00390{bottom:785.600000pt;}
.y40_c00390{bottom:796.533333pt;}
.ye_c00390{bottom:801.600000pt;}
.y3f_c00390{bottom:809.333333pt;}
.yd_c00390{bottom:817.333333pt;}
.y3e_c00390{bottom:822.133333pt;}
.yc_c00390{bottom:833.333333pt;}
.y3d_c00390{bottom:834.933333pt;}
.y3c_c00390{bottom:847.733333pt;}
.yb_c00390{bottom:849.600000pt;}
.y3b_c00390{bottom:860.533333pt;}
.ya_c00390{bottom:865.333333pt;}
.y3a_c00390{bottom:873.600000pt;}
.y9_c00390{bottom:881.333333pt;}
.y39_c00390{bottom:891.866667pt;}
.y8_c00390{bottom:900.800000pt;}
.y38_c00390{bottom:908.133333pt;}
.y7_c00390{bottom:916.800000pt;}
.y37_c00390{bottom:923.866667pt;}
.y6_c00390{bottom:936.000000pt;}
.y36_c00390{bottom:939.866667pt;}
.y5_c00390{bottom:955.466667pt;}
.y35_c00390{bottom:960.000000pt;}
.y4_c00390{bottom:975.466667pt;}
.y34_c00390{bottom:976.000000pt;}
.y3_c00390{bottom:991.733333pt;}
.y33_c00390{bottom:992.000000pt;}
.y2_c00390{bottom:1013.066667pt;}
.y1_c00390{bottom:1016.000000pt;}
.h7_c00390{height:26.666667pt;}
.h6_c00390{height:48.000000pt;}
.h5_c00390{height:53.333333pt;}
.h4_c00390{height:58.666667pt;}
.h3_c00390{height:64.000000pt;}
.h2_c00390{height:74.666667pt;}
.h0_c00390{height:1125.120036pt;}
.h1_c00390{height:1125.333333pt;}
.w0_c00390{width:853.760009pt;}
.w1_c00390{width:854.000000pt;}
.x0_c00390{left:0.000000pt;}
.x75_c00390{left:75.866667pt;}
.x8f_c00390{left:79.333333pt;}
.x41_c00390{left:88.266667pt;}
.x9_c00390{left:89.866667pt;}
.x44_c00390{left:91.200000pt;}
.x2b_c00390{left:92.400000pt;}
.x93_c00390{left:94.133333pt;}
.xa_c00390{left:105.600000pt;}
.x13_c00390{left:106.933333pt;}
.x3_c00390{left:108.533333pt;}
.x66_c00390{left:109.866667pt;}
.x1f_c00390{left:111.200000pt;}
.x2c_c00390{left:114.133333pt;}
.x90_c00390{left:116.133333pt;}
.x3b_c00390{left:119.200000pt;}
.x69_c00390{left:122.266667pt;}
.x67_c00390{left:124.000000pt;}
.x94_c00390{left:125.200000pt;}
.x76_c00390{left:129.333333pt;}
.x98_c00390{left:130.800000pt;}
.x2d_c00390{left:132.000000pt;}
.x25_c00390{left:133.866667pt;}
.x18_c00390{left:135.466667pt;}
.x4_c00390{left:137.333333pt;}
.x11_c00390{left:139.066667pt;}
.x3c_c00390{left:140.666667pt;}
.x33_c00390{left:142.133333pt;}
.x19_c00390{left:143.733333pt;}
.x49_c00390{left:145.200000pt;}
.x4d_c00390{left:146.933333pt;}
.x8a_c00390{left:148.000000pt;}
.x50_c00390{left:148.933333pt;}
.x99_c00390{left:150.933333pt;}
.xb_c00390{left:152.000000pt;}
.x3d_c00390{left:153.733333pt;}
.x2e_c00390{left:157.866667pt;}
.x14_c00390{left:158.800000pt;}
.x61_c00390{left:160.400000pt;}
.x74_c00390{left:162.533333pt;}
.x34_c00390{left:163.866667pt;}
.x26_c00390{left:165.600000pt;}
.x7d_c00390{left:166.666667pt;}
.x86_c00390{left:168.000000pt;}
.x6e_c00390{left:169.333333pt;}
.x89_c00390{left:171.866667pt;}
.x12_c00390{left:174.533333pt;}
.x77_c00390{left:175.466667pt;}
.x20_c00390{left:177.733333pt;}
.x68_c00390{left:179.066667pt;}
.x4e_c00390{left:180.266667pt;}
.x87_c00390{left:181.200000pt;}
.x35_c00390{left:183.066667pt;}
.x42_c00390{left:185.200000pt;}
.x91_c00390{left:186.533333pt;}
.x57_c00390{left:188.400000pt;}
.xc_c00390{left:189.466667pt;}
.x1a_c00390{left:191.466667pt;}
.x51_c00390{left:193.733333pt;}
.x81_c00390{left:195.333333pt;}
.x5d_c00390{left:196.533333pt;}
.xd_c00390{left:199.733333pt;}
.x5_c00390{left:200.666667pt;}
.x2f_c00390{left:202.400000pt;}
.x96_c00390{left:204.800000pt;}
.x78_c00390{left:206.133333pt;}
.x4a_c00390{left:208.533333pt;}
.x72_c00390{left:209.466667pt;}
.x15_c00390{left:213.200000pt;}
.x7a_c00390{left:214.400000pt;}
.x53_c00390{left:216.000000pt;}
.x62_c00390{left:218.000000pt;}
.x6_c00390{left:219.200000pt;}
.x45_c00390{left:220.400000pt;}
.x52_c00390{left:221.866667pt;}
.x1b_c00390{left:223.200000pt;}
.x21_c00390{left:227.066667pt;}
.x36_c00390{left:229.200000pt;}
.x27_c00390{left:230.933333pt;}
.x82_c00390{left:231.866667pt;}
.x5a_c00390{left:232.933333pt;}
.x63_c00390{left:234.666667pt;}
.x4f_c00390{left:237.866667pt;}
.x7_c00390{left:239.733333pt;}
.x37_c00390{left:241.733333pt;}
.x8e_c00390{left:244.133333pt;}
.x58_c00390{left:247.200000pt;}
.x1c_c00390{left:248.800000pt;}
.x22_c00390{left:249.733333pt;}
.x92_c00390{left:251.200000pt;}
.x28_c00390{left:252.400000pt;}
.x5e_c00390{left:257.600000pt;}
.x16_c00390{left:259.333333pt;}
.x8b_c00390{left:260.933333pt;}
.x79_c00390{left:263.066667pt;}
.x38_c00390{left:264.133333pt;}
.x6a_c00390{left:266.533333pt;}
.xe_c00390{left:267.600000pt;}
.x97_c00390{left:268.533333pt;}
.x29_c00390{left:270.933333pt;}
.x46_c00390{left:273.733333pt;}
.x7e_c00390{left:275.733333pt;}
.xf_c00390{left:276.933333pt;}
.x83_c00390{left:278.000000pt;}
.x54_c00390{left:279.066667pt;}
.x3e_c00390{left:281.733333pt;}
.x6b_c00390{left:283.466667pt;}
.x30_c00390{left:284.666667pt;}
.x43_c00390{left:286.000000pt;}
.x84_c00390{left:288.266667pt;}
.x8_c00390{left:289.600000pt;}
.x1_c00390{left:291.866667pt;}
.x5b_c00390{left:293.733333pt;}
.x23_c00390{left:294.800000pt;}
.x59_c00390{left:296.133333pt;}
.x55_c00390{left:297.600000pt;}
.x9a_c00390{left:299.066667pt;}
.x95_c00390{left:300.133333pt;}
.x10_c00390{left:302.266667pt;}
.x39_c00390{left:304.533333pt;}
.x31_c00390{left:306.400000pt;}
.x6f_c00390{left:310.800000pt;}
.x5c_c00390{left:312.666667pt;}
.x4b_c00390{left:314.533333pt;}
.x2a_c00390{left:316.666667pt;}
.x8c_c00390{left:318.000000pt;}
.x17_c00390{left:319.200000pt;}
.x5f_c00390{left:321.066667pt;}
.x64_c00390{left:323.600000pt;}
.x1d_c00390{left:326.533333pt;}
.x70_c00390{left:327.733333pt;}
.x47_c00390{left:330.000000pt;}
.x6c_c00390{left:331.466667pt;}
.x8d_c00390{left:333.733333pt;}
.x7f_c00390{left:334.666667pt;}
.x85_c00390{left:336.000000pt;}
.x7b_c00390{left:337.866667pt;}
.x3f_c00390{left:339.600000pt;}
.x48_c00390{left:341.200000pt;}
.x1e_c00390{left:343.466667pt;}
.x60_c00390{left:345.066667pt;}
.x32_c00390{left:346.000000pt;}
.x3a_c00390{left:348.000000pt;}
.x65_c00390{left:349.466667pt;}
.x56_c00390{left:352.266667pt;}
.x80_c00390{left:353.200000pt;}
.x88_c00390{left:355.600000pt;}
.x6d_c00390{left:358.666667pt;}
.x4c_c00390{left:360.000000pt;}
.x40_c00390{left:361.066667pt;}
.x73_c00390{left:362.800000pt;}
.x24_c00390{left:370.666667pt;}
.x71_c00390{left:371.600000pt;}
.x7c_c00390{left:372.800000pt;}
.xc2_c00390{left:392.000000pt;}
.xb2_c00390{left:392.933333pt;}
.x12d_c00390{left:394.266667pt;}
.x133_c00390{left:397.066667pt;}
.x107_c00390{left:400.000000pt;}
.xc8_c00390{left:405.066667pt;}
.x134_c00390{left:407.733333pt;}
.x9b_c00390{left:408.933333pt;}
.xfb_c00390{left:409.866667pt;}
.x13a_c00390{left:412.933333pt;}
.xcd_c00390{left:417.600000pt;}
.x13b_c00390{left:418.933333pt;}
.xc9_c00390{left:421.333333pt;}
.x9c_c00390{left:426.800000pt;}
.xb3_c00390{left:432.000000pt;}
.x11a_c00390{left:432.933333pt;}
.x12c_c00390{left:434.000000pt;}
.x135_c00390{left:436.000000pt;}
.xce_c00390{left:437.466667pt;}
.xf9_c00390{left:438.933333pt;}
.xbf_c00390{left:440.400000pt;}
.x12a_c00390{left:441.333333pt;}
.x112_c00390{left:442.800000pt;}
.xa3_c00390{left:443.866667pt;}
.xfc_c00390{left:445.066667pt;}
.xaa_c00390{left:446.400000pt;}
.x9d_c00390{left:447.333333pt;}
.x113_c00390{left:450.533333pt;}
.xcf_c00390{left:453.200000pt;}
.xdd_c00390{left:457.066667pt;}
.x13c_c00390{left:458.133333pt;}
.xeb_c00390{left:459.200000pt;}
.x10a_c00390{left:460.400000pt;}
.x12e_c00390{left:462.133333pt;}
.xca_c00390{left:463.200000pt;}
.xf6_c00390{left:464.666667pt;}
.xd0_c00390{left:466.000000pt;}
.xa4_c00390{left:466.933333pt;}
.x124_c00390{left:468.000000pt;}
.xe8_c00390{left:469.200000pt;}
.x117_c00390{left:471.733333pt;}
.xd6_c00390{left:472.933333pt;}
.x12f_c00390{left:474.933333pt;}
.x104_c00390{left:476.533333pt;}
.x125_c00390{left:478.000000pt;}
.xb7_c00390{left:479.466667pt;}
.xab_c00390{left:480.933333pt;}
.xe2_c00390{left:482.933333pt;}
.x9e_c00390{left:484.400000pt;}
.xf0_c00390{left:487.600000pt;}
.x118_c00390{left:489.333333pt;}
.xb4_c00390{left:490.533333pt;}
.xe6_c00390{left:491.733333pt;}
.x11c_c00390{left:493.066667pt;}
.xac_c00390{left:495.600000pt;}
.x105_c00390{left:501.466667pt;}
.xe9_c00390{left:502.533333pt;}
.xa5_c00390{left:503.733333pt;}
.x114_c00390{left:504.933333pt;}
.x126_c00390{left:506.533333pt;}
.xde_c00390{left:508.266667pt;}
.xd1_c00390{left:511.066667pt;}
.xb8_c00390{left:513.066667pt;}
.x13d_c00390{left:514.133333pt;}
.xfd_c00390{left:515.733333pt;}
.x108_c00390{left:518.400000pt;}
.xc0_c00390{left:519.466667pt;}
.x115_c00390{left:522.266667pt;}
.x127_c00390{left:524.800000pt;}
.xad_c00390{left:525.733333pt;}
.xf1_c00390{left:527.333333pt;}
.xe3_c00390{left:528.666667pt;}
.x9f_c00390{left:529.866667pt;}
.x11d_c00390{left:531.466667pt;}
.xa6_c00390{left:532.533333pt;}
.xdf_c00390{left:533.866667pt;}
.x130_c00390{left:534.800000pt;}
.x110_c00390{left:537.200000pt;}
.xf2_c00390{left:538.266667pt;}
.xd7_c00390{left:539.466667pt;}
.xc3_c00390{left:541.466667pt;}
.xff_c00390{left:545.066667pt;}
.xd8_c00390{left:546.133333pt;}
.x138_c00390{left:548.133333pt;}
.x13e_c00390{left:549.066667pt;}
.xa0_c00390{left:550.400000pt;}
.xf7_c00390{left:551.333333pt;}
.x131_c00390{left:552.666667pt;}
.xe4_c00390{left:554.266667pt;}
.xae_c00390{left:555.866667pt;}
.xa7_c00390{left:556.800000pt;}
.xb9_c00390{left:558.800000pt;}
.x101_c00390{left:560.000000pt;}
.xc4_c00390{left:560.933333pt;}
.xec_c00390{left:563.466667pt;}
.xd2_c00390{left:565.733333pt;}
.xbc_c00390{left:567.866667pt;}
.xe7_c00390{left:569.200000pt;}
.xd9_c00390{left:571.733333pt;}
.x128_c00390{left:572.800000pt;}
.x119_c00390{left:574.133333pt;}
.xc1_c00390{left:575.200000pt;}
.xaf_c00390{left:577.333333pt;}
.xda_c00390{left:578.400000pt;}
.x10d_c00390{left:579.333333pt;}
.xe0_c00390{left:580.533333pt;}
.xf3_c00390{left:581.466667pt;}
.xcb_c00390{left:582.800000pt;}
.xa1_c00390{left:584.000000pt;}
.x136_c00390{left:586.666667pt;}
.xc5_c00390{left:590.000000pt;}
.x116_c00390{left:591.600000pt;}
.x10b_c00390{left:592.933333pt;}
.xd3_c00390{left:593.866667pt;}
.xe5_c00390{left:595.866667pt;}
.xdb_c00390{left:596.933333pt;}
.x109_c00390{left:599.066667pt;}
.x13f_c00390{left:600.000000pt;}
.x10e_c00390{left:601.066667pt;}
.xb5_c00390{left:603.600000pt;}
.xe1_c00390{left:604.800000pt;}
.xba_c00390{left:608.133333pt;}
.xdc_c00390{left:610.000000pt;}
.xa8_c00390{left:613.466667pt;}
.x11e_c00390{left:615.333333pt;}
.x102_c00390{left:618.933333pt;}
.xc6_c00390{left:620.400000pt;}
.xbb_c00390{left:621.866667pt;}
.xf8_c00390{left:623.600000pt;}
.x121_c00390{left:624.800000pt;}
.xd4_c00390{left:627.466667pt;}
.xcc_c00390{left:628.933333pt;}
.x132_c00390{left:630.000000pt;}
.x12b_c00390{left:633.066667pt;}
.xbd_c00390{left:634.800000pt;}
.xed_c00390{left:635.866667pt;}
.x129_c00390{left:636.800000pt;}
.xb0_c00390{left:639.066667pt;}
.xfa_c00390{left:640.533333pt;}
.xa2_c00390{left:641.600000pt;}
.x123_c00390{left:642.800000pt;}
.x103_c00390{left:644.266667pt;}
.xf4_c00390{left:645.466667pt;}
.x10f_c00390{left:646.800000pt;}
.xb1_c00390{left:648.000000pt;}
.x11b_c00390{left:649.200000pt;}
.xd5_c00390{left:651.466667pt;}
.x120_c00390{left:652.666667pt;}
.xb6_c00390{left:653.866667pt;}
.xee_c00390{left:655.333333pt;}
.x111_c00390{left:656.666667pt;}
.x122_c00390{left:658.666667pt;}
.xbe_c00390{left:663.333333pt;}
.x10c_c00390{left:666.000000pt;}
.x2_c00390{left:667.200000pt;}
.x137_c00390{left:668.266667pt;}
.x100_c00390{left:670.133333pt;}
.xef_c00390{left:672.266667pt;}
.xfe_c00390{left:675.733333pt;}
.x139_c00390{left:677.466667pt;}
.xc7_c00390{left:678.400000pt;}
.xa9_c00390{left:679.733333pt;}
.x11f_c00390{left:680.800000pt;}
.xf5_c00390{left:682.933333pt;}
.x106_c00390{left:684.133333pt;}
.xea_c00390{left:689.600000pt;}
}





/* 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_c00391 {
    display:none;
  }
  .loading-indicator_c00391.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00391 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_c00391 { 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_c00391" -> "#page-container .classname_c00391")
 */
.pf_c00391 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00391 { /* 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_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00391 { /* 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_c00391 { /* 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_c00391 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00391 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00391 {overflow:visible;}
  }
}
.c_c00391 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00391 { /* 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_c00391:after { /* webkit #35443 */
  content: '';
}
.t_c00391:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00391 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 */
}
.__c00391 { /* 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_c00391 { /* info for Javascript */
  display:none;
}
.l_c00391 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00391 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00391 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00391: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_c00391 {
    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_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00391.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_c00391 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00391;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.000000;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;}
.m95_c00391{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00391{transform:matrix(0.025250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00391{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00391{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00391{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00391{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00391{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00391{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00391{transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00391{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m35_c00391{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m59_c00391{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00391{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m28_c00391{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00391{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00391{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m121_c00391{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00391{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mac_c00391{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00391{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00391{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00391{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00391{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m94_c00391{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00391{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00391{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m68_c00391{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00391{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mae_c00391{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.maf_c00391{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m53_c00391{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00391{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m63_c00391{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m36_c00391{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00391{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m130_c00391{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m93_c00391{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00391{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m56_c00391{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m64_c00391{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m113_c00391{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00391{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00391{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00391{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00391{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mab_c00391{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.med_c00391{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m97_c00391{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m18_c00391{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00391{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m109_c00391{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00391{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mee_c00391{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00391{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m21_c00391{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00391{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m124_c00391{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00391{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m126_c00391{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00391{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m48_c00391{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.me4_c00391{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m30_c00391{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00391{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3_c00391{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.me9_c00391{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00391{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4_c00391{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00391{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m100_c00391{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00391{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00391{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00391{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m10_c00391{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00391{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00391{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00391{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00391{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me0_c00391{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.meb_c00391{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md2_c00391{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00391{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00391{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m91_c00391{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.md8_c00391{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m122_c00391{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.md7_c00391{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00391{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mec_c00391{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00391{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m120_c00391{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m90_c00391{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m23_c00391{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00391{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m16_c00391{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m107_c00391{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md4_c00391{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6_c00391{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m108_c00391{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m34_c00391{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00391{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m133_c00391{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.me_c00391{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m129_c00391{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00391{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00391{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mad_c00391{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m55_c00391{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me2_c00391{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m37_c00391{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mef_c00391{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00391{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m5_c00391{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m86_c00391{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00391{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00391{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.maa_c00391{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00391{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mea_c00391{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m24_c00391{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m47_c00391{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m52_c00391{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00391{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me6_c00391{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00391{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00391{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00391{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.md3_c00391{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma_c00391{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00391{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m40_c00391{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m115_c00391{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00391{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md6_c00391{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m78_c00391{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md5_c00391{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m39_c00391{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00391{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.me5_c00391{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m106_c00391{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00391{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m74_c00391{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.me1_c00391{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00391{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00391{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00391{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m89_c00391{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00391{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m19_c00391{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00391{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00391{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00391{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00391{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00391{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m60_c00391{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00391{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m20_c00391{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00391{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m25_c00391{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00391{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m83_c00391{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m31_c00391{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m96_c00391{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf_c00391{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00391{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m87_c00391{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00391{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m73_c00391{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m17_c00391{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m114_c00391{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mb_c00391{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me3_c00391{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m29_c00391{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00391{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00391{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m38_c00391{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9_c00391{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00391{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m76_c00391{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me7_c00391{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00391{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00391{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m79_c00391{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00391{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mda_c00391{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me8_c00391{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00391{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00391{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m85_c00391{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00391{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m22_c00391{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mff_c00391{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00391{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00391{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00391{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00391{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m125_c00391{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00391{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00391{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m44_c00391{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00391{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m32_c00391{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00391{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00391{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00391{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m80_c00391{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md9_c00391{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md0_c00391{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md_c00391{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m69_c00391{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8_c00391{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m62_c00391{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00391{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m58_c00391{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00391{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m88_c00391{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m54_c00391{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00391{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00391{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m41_c00391{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m49_c00391{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m99_c00391{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m92_c00391{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m118_c00391{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m67_c00391{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m33_c00391{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m72_c00391{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00391{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m70_c00391{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mba_c00391{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m77_c00391{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00391{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00391{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m45_c00391{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m123_c00391{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m75_c00391{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00391{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m102_c00391{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00391{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00391{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m98_c00391{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m103_c00391{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m15_c00391{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m51_c00391{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mc_c00391{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md1_c00391{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00391{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mce_c00391{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00391{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);}
.m81_c00391{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00391{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00391{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m82_c00391{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00391{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00391{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7_c00391{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00391{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00391{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00391{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m66_c00391{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mde_c00391{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mca_c00391{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m57_c00391{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m119_c00391{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00391{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m14_c00391{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m127_c00391{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00391{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m27_c00391{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00391{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m46_c00391{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m50_c00391{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m105_c00391{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m112_c00391{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m65_c00391{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m84_c00391{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m116_c00391{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m43_c00391{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m12_c00391{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00391{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m117_c00391{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00391{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m128_c00391{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00391{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m101_c00391{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m71_c00391{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m131_c00391{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00391{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00391{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m13_c00391{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00391{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m42_c00391{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00391{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00391{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m111_c00391{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m132_c00391{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m26_c00391{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00391{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00391{transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00391{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00391{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m61_c00391{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00391{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00391{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m110_c00391{transform:matrix(0.534000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534000,0.000000,0.000000,0.250000,0,0);}
.m104_c00391{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{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__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00391{word-spacing:-0.754190px;}
.wse_c00391{word-spacing:0.000000px;}
.wsa_c00391{word-spacing:6.962606px;}
.wsd_c00391{word-spacing:8.194444px;}
.ws0_c00391{word-spacing:8.571429px;}
.wsc_c00391{word-spacing:13.333333px;}
.wsb_c00391{word-spacing:15.278422px;}
.ws3_c00391{word-spacing:16.186246px;}
.ws2_c00391{word-spacing:18.305732px;}
.ws5_c00391{word-spacing:29.285714px;}
.ws4_c00391{word-spacing:31.507109px;}
.ws8_c00391{word-spacing:34.642857px;}
.ws6_c00391{word-spacing:44.166667px;}
.ws7_c00391{word-spacing:67.631579px;}
.ws9_c00391{word-spacing:610.833333px;}
.fc0_c00391{color:transparent;}
.fs8_c00391{font-size:24.000000px;}
.fs9_c00391{font-size:48.000000px;}
.fs4_c00391{font-size:54.000000px;}
.fs2_c00391{font-size:60.000000px;}
.fs3_c00391{font-size:66.000000px;}
.fs1_c00391{font-size:72.000000px;}
.fs7_c00391{font-size:78.000000px;}
.fs5_c00391{font-size:96.000000px;}
.fs0_c00391{font-size:102.000000px;}
.fs6_c00391{font-size:114.000000px;}
.y0_c00391{bottom:0.000000px;}
.y37_c00391{bottom:178.800000px;}
.y6b_c00391{bottom:180.000000px;}
.y36_c00391{bottom:196.800000px;}
.y6a_c00391{bottom:197.700000px;}
.y35_c00391{bottom:214.500000px;}
.y69_c00391{bottom:215.700000px;}
.y34_c00391{bottom:232.800000px;}
.y68_c00391{bottom:241.650000px;}
.y33_c00391{bottom:250.500000px;}
.y67_c00391{bottom:260.700000px;}
.y32_c00391{bottom:268.500000px;}
.y66_c00391{bottom:279.450000px;}
.y31_c00391{bottom:286.200000px;}
.y65_c00391{bottom:296.700000px;}
.y30_c00391{bottom:304.200000px;}
.y64_c00391{bottom:315.000000px;}
.y2f_c00391{bottom:322.500000px;}
.y63_c00391{bottom:335.850000px;}
.y2e_c00391{bottom:340.200000px;}
.y62_c00391{bottom:355.350000px;}
.y2d_c00391{bottom:358.500000px;}
.y61_c00391{bottom:373.350000px;}
.y2c_c00391{bottom:376.500000px;}
.y60_c00391{bottom:391.350000px;}
.y2b_c00391{bottom:394.800000px;}
.y5f_c00391{bottom:409.050000px;}
.y2a_c00391{bottom:412.800000px;}
.y5e_c00391{bottom:427.050000px;}
.y29_c00391{bottom:432.300000px;}
.y5d_c00391{bottom:445.350000px;}
.y28_c00391{bottom:448.500000px;}
.y5c_c00391{bottom:463.350000px;}
.y27_c00391{bottom:464.400000px;}
.y26_c00391{bottom:478.800000px;}
.y5b_c00391{bottom:481.650000px;}
.y25_c00391{bottom:492.450000px;}
.y5a_c00391{bottom:499.650000px;}
.y24_c00391{bottom:508.350000px;}
.y3a_c00391{bottom:517.650000px;}
.y23_c00391{bottom:521.700000px;}
.y22_c00391{bottom:536.400000px;}
.y59_c00391{bottom:538.650000px;}
.y21_c00391{bottom:550.500000px;}
.y58_c00391{bottom:552.300000px;}
.y56_c00391{bottom:553.200000px;}
.y57_c00391{bottom:553.350000px;}
.y20_c00391{bottom:566.700000px;}
.y55_c00391{bottom:567.600000px;}
.y1f_c00391{bottom:579.900000px;}
.y54_c00391{bottom:583.500000px;}
.y1e_c00391{bottom:595.050000px;}
.y53_c00391{bottom:602.850000px;}
.y1d_c00391{bottom:609.450000px;}
.y52_c00391{bottom:621.900000px;}
.y1c_c00391{bottom:623.550000px;}
.y51_c00391{bottom:639.600000px;}
.y1b_c00391{bottom:639.750000px;}
.y50_c00391{bottom:657.300000px;}
.y1a_c00391{bottom:658.500000px;}
.y19_c00391{bottom:676.500000px;}
.y4f_c00391{bottom:686.400000px;}
.y18_c00391{bottom:694.800000px;}
.y4e_c00391{bottom:702.300000px;}
.y39_c00391{bottom:712.050000px;}
.y17_c00391{bottom:712.800000px;}
.y4d_c00391{bottom:720.300000px;}
.y16_c00391{bottom:731.850000px;}
.y38_c00391{bottom:737.250000px;}
.y4c_c00391{bottom:738.600000px;}
.y15_c00391{bottom:748.800000px;}
.y4b_c00391{bottom:756.300000px;}
.y14_c00391{bottom:777.600000px;}
.y4a_c00391{bottom:783.300000px;}
.y13_c00391{bottom:793.500000px;}
.y12_c00391{bottom:811.500000px;}
.y49_c00391{bottom:814.650000px;}
.y48_c00391{bottom:832.650000px;}
.y11_c00391{bottom:841.350000px;}
.y10_c00391{bottom:847.050000px;}
.y47_c00391{bottom:855.000000px;}
.yf_c00391{bottom:865.350000px;}
.y46_c00391{bottom:873.000000px;}
.ye_c00391{bottom:883.350000px;}
.y45_c00391{bottom:891.300000px;}
.yd_c00391{bottom:901.350000px;}
.y44_c00391{bottom:918.900000px;}
.yc_c00391{bottom:921.150000px;}
.y43_c00391{bottom:937.200000px;}
.yb_c00391{bottom:938.100000px;}
.y42_c00391{bottom:955.200000px;}
.ya_c00391{bottom:955.800000px;}
.y41_c00391{bottom:973.500000px;}
.y9_c00391{bottom:973.800000px;}
.y40_c00391{bottom:992.550000px;}
.y8_c00391{bottom:995.700000px;}
.y3f_c00391{bottom:1009.500000px;}
.y7_c00391{bottom:1022.850000px;}
.y3e_c00391{bottom:1027.500000px;}
.y6_c00391{bottom:1041.150000px;}
.y3d_c00391{bottom:1045.500000px;}
.y5_c00391{bottom:1059.450000px;}
.y3c_c00391{bottom:1063.500000px;}
.y4_c00391{bottom:1080.300000px;}
.y3b_c00391{bottom:1081.500000px;}
.y3_c00391{bottom:1099.800000px;}
.y2_c00391{bottom:1117.800000px;}
.y1_c00391{bottom:1144.800000px;}
.ha_c00391{height:24.000000px;}
.hb_c00391{height:48.000000px;}
.h6_c00391{height:54.000000px;}
.h4_c00391{height:60.000000px;}
.h5_c00391{height:66.000000px;}
.h3_c00391{height:72.000000px;}
.h9_c00391{height:78.000000px;}
.h7_c00391{height:96.000000px;}
.h2_c00391{height:102.000000px;}
.h8_c00391{height:114.000000px;}
.h1_c00391{height:1266.750000px;}
.h0_c00391{height:1266.839905px;}
.w0_c00391{width:960.480010px;}
.w1_c00391{width:960.750000px;}
.x0_c00391{left:0.000000px;}
.x6f_c00391{left:185.100000px;}
.x60_c00391{left:186.900000px;}
.x11_c00391{left:187.950000px;}
.x72_c00391{left:193.200000px;}
.x73_c00391{left:199.350000px;}
.x34_c00391{left:202.650000px;}
.x39_c00391{left:204.000000px;}
.x2_c00391{left:205.200000px;}
.x17_c00391{left:206.250000px;}
.x4c_c00391{left:209.700000px;}
.x7b_c00391{left:213.450000px;}
.x45_c00391{left:220.650000px;}
.x26_c00391{left:222.900000px;}
.x9f_c00391{left:224.250000px;}
.x82_c00391{left:229.350000px;}
.x58_c00391{left:231.900000px;}
.x22_c00391{left:232.950000px;}
.x3_c00391{left:234.750000px;}
.x3a_c00391{left:237.150000px;}
.x7e_c00391{left:239.250000px;}
.x62_c00391{left:241.800000px;}
.x6b_c00391{left:242.850000px;}
.x1c_c00391{left:246.750000px;}
.x9_c00391{left:251.550000px;}
.x18_c00391{left:253.050000px;}
.x3d_c00391{left:254.100000px;}
.x65_c00391{left:255.300000px;}
.x4_c00391{left:256.650000px;}
.x67_c00391{left:257.700000px;}
.x2d_c00391{left:258.750000px;}
.x9c_c00391{left:263.550000px;}
.x55_c00391{left:266.400000px;}
.x1d_c00391{left:269.100000px;}
.x49_c00391{left:271.350000px;}
.x10_c00391{left:272.700000px;}
.xa1_c00391{left:274.050000px;}
.x59_c00391{left:276.900000px;}
.x4d_c00391{left:278.850000px;}
.xa_c00391{left:280.050000px;}
.x12_c00391{left:282.900000px;}
.x2e_c00391{left:283.950000px;}
.x27_c00391{left:286.350000px;}
.x68_c00391{left:287.700000px;}
.x74_c00391{left:289.500000px;}
.x19_c00391{left:292.650000px;}
.x3e_c00391{left:294.750000px;}
.x56_c00391{left:297.000000px;}
.x95_c00391{left:298.800000px;}
.x5_c00391{left:300.150000px;}
.x88_c00391{left:301.800000px;}
.x7f_c00391{left:305.250000px;}
.x92_c00391{left:306.750000px;}
.x75_c00391{left:311.100000px;}
.x8b_c00391{left:312.450000px;}
.x70_c00391{left:315.000000px;}
.x4a_c00391{left:316.050000px;}
.x57_c00391{left:317.550000px;}
.xb_c00391{left:318.600000px;}
.x2f_c00391{left:320.700000px;}
.x6c_c00391{left:321.750000px;}
.x8f_c00391{left:322.800000px;}
.x5a_c00391{left:324.000000px;}
.xa4_c00391{left:328.050000px;}
.x23_c00391{left:330.150000px;}
.x9d_c00391{left:331.200000px;}
.x30_c00391{left:333.000000px;}
.x28_c00391{left:334.950000px;}
.x79_c00391{left:336.600000px;}
.x76_c00391{left:337.800000px;}
.x4e_c00391{left:339.000000px;}
.x3f_c00391{left:340.800000px;}
.x1e_c00391{left:341.850000px;}
.x6_c00391{left:343.650000px;}
.x98_c00391{left:346.200000px;}
.x35_c00391{left:347.250000px;}
.x46_c00391{left:349.350000px;}
.x5b_c00391{left:351.300000px;}
.x83_c00391{left:352.800000px;}
.x13_c00391{left:355.650000px;}
.xa0_c00391{left:357.000000px;}
.x1f_c00391{left:358.350000px;}
.x7c_c00391{left:359.550000px;}
.x29_c00391{left:360.900000px;}
.x31_c00391{left:362.100000px;}
.x7_c00391{left:363.150000px;}
.xa2_c00391{left:364.800000px;}
.xc_c00391{left:366.450000px;}
.x84_c00391{left:367.500000px;}
.x24_c00391{left:370.050000px;}
.x2a_c00391{left:371.700000px;}
.x7a_c00391{left:373.800000px;}
.x4f_c00391{left:375.750000px;}
.x14_c00391{left:376.950000px;}
.x6d_c00391{left:378.000000px;}
.x9e_c00391{left:379.800000px;}
.x25_c00391{left:381.150000px;}
.x1a_c00391{left:383.400000px;}
.x5f_c00391{left:385.950000px;}
.x71_c00391{left:387.000000px;}
.x77_c00391{left:388.500000px;}
.x99_c00391{left:390.900000px;}
.x61_c00391{left:392.850000px;}
.x80_c00391{left:394.500000px;}
.x85_c00391{left:396.150000px;}
.x2b_c00391{left:397.650000px;}
.x90_c00391{left:400.650000px;}
.x15_c00391{left:402.150000px;}
.x89_c00391{left:403.200000px;}
.x9a_c00391{left:406.950000px;}
.x1b_c00391{left:408.900000px;}
.x52_c00391{left:410.550000px;}
.x86_c00391{left:411.600000px;}
.x81_c00391{left:413.550000px;}
.x20_c00391{left:417.000000px;}
.x87_c00391{left:418.500000px;}
.x91_c00391{left:420.150000px;}
.x5c_c00391{left:423.600000px;}
.x36_c00391{left:424.950000px;}
.x93_c00391{left:426.900000px;}
.x32_c00391{left:427.950000px;}
.x8_c00391{left:430.500000px;}
.x6e_c00391{left:431.700000px;}
.x1_c00391{left:433.050000px;}
.x2c_c00391{left:434.700000px;}
.xd_c00391{left:436.950000px;}
.x40_c00391{left:439.050000px;}
.x50_c00391{left:441.600000px;}
.x37_c00391{left:444.450000px;}
.x69_c00391{left:446.550000px;}
.x21_c00391{left:447.900000px;}
.x3b_c00391{left:450.600000px;}
.x8d_c00391{left:451.800000px;}
.x63_c00391{left:452.850000px;}
.x47_c00391{left:454.500000px;}
.x8c_c00391{left:456.150000px;}
.x38_c00391{left:459.900000px;}
.x41_c00391{left:462.150000px;}
.x8a_c00391{left:463.200000px;}
.xe_c00391{left:465.750000px;}
.x6a_c00391{left:471.450000px;}
.x5d_c00391{left:473.700000px;}
.x7d_c00391{left:475.050000px;}
.x4b_c00391{left:476.100000px;}
.x53_c00391{left:478.950000px;}
.x8e_c00391{left:480.300000px;}
.x16_c00391{left:481.350000px;}
.x42_c00391{left:482.700000px;}
.x66_c00391{left:484.200000px;}
.x78_c00391{left:486.000000px;}
.x96_c00391{left:489.750000px;}
.x3c_c00391{left:491.700000px;}
.xa3_c00391{left:492.750000px;}
.x48_c00391{left:494.400000px;}
.x97_c00391{left:496.500000px;}
.x94_c00391{left:497.550000px;}
.x33_c00391{left:501.750000px;}
.x54_c00391{left:506.250000px;}
.x51_c00391{left:507.750000px;}
.x43_c00391{left:509.700000px;}
.x64_c00391{left:512.250000px;}
.x5e_c00391{left:513.600000px;}
.x9b_c00391{left:518.550000px;}
.xf_c00391{left:520.050000px;}
.x44_c00391{left:521.550000px;}
.xa5_c00391{left:535.350000px;}
.x13f_c00391{left:542.850000px;}
.xa6_c00391{left:545.100000px;}
.xf8_c00391{left:547.200000px;}
.x123_c00391{left:550.350000px;}
.x122_c00391{left:558.750000px;}
.x13c_c00391{left:560.100000px;}
.x113_c00391{left:562.200000px;}
.xeb_c00391{left:563.400000px;}
.xac_c00391{left:564.450000px;}
.x127_c00391{left:573.900000px;}
.xf1_c00391{left:577.050000px;}
.x124_c00391{left:578.400000px;}
.xbe_c00391{left:582.600000px;}
.xcb_c00391{left:585.000000px;}
.xd8_c00391{left:586.500000px;}
.xf9_c00391{left:589.650000px;}
.x11c_c00391{left:591.600000px;}
.x125_c00391{left:593.850000px;}
.xde_c00391{left:596.550000px;}
.x133_c00391{left:597.600000px;}
.xf2_c00391{left:599.700000px;}
.xc3_c00391{left:602.700000px;}
.xad_c00391{left:605.850000px;}
.xe5_c00391{left:607.650000px;}
.xb3_c00391{left:609.150000px;}
.x12e_c00391{left:611.550000px;}
.xbf_c00391{left:613.500000px;}
.x118_c00391{left:614.550000px;}
.xd5_c00391{left:617.100000px;}
.x134_c00391{left:618.150000px;}
.xdf_c00391{left:621.000000px;}
.xfe_c00391{left:623.850000px;}
.xfa_c00391{left:625.350000px;}
.xd9_c00391{left:626.850000px;}
.x10b_c00391{left:627.900000px;}
.xc6_c00391{left:628.950000px;}
.xe6_c00391{left:630.000000px;}
.xa7_c00391{left:631.500000px;}
.x104_c00391{left:632.700000px;}
.x149_c00391{left:633.750000px;}
.x12b_c00391{left:634.800000px;}
.x138_c00391{left:635.850000px;}
.xec_c00391{left:638.100000px;}
.x11d_c00391{left:639.150000px;}
.x142_c00391{left:641.100000px;}
.xae_c00391{left:644.400000px;}
.xda_c00391{left:646.350000px;}
.xf7_c00391{left:648.750000px;}
.x147_c00391{left:649.950000px;}
.xd6_c00391{left:651.600000px;}
.x10d_c00391{left:655.800000px;}
.xb4_c00391{left:658.800000px;}
.x10c_c00391{left:660.600000px;}
.xb9_c00391{left:665.400000px;}
.x135_c00391{left:667.050000px;}
.x119_c00391{left:668.250000px;}
.xd0_c00391{left:672.150000px;}
.xcc_c00391{left:673.800000px;}
.xff_c00391{left:676.800000px;}
.xb5_c00391{left:677.850000px;}
.xe7_c00391{left:678.900000px;}
.x11a_c00391{left:681.900000px;}
.xba_c00391{left:683.400000px;}
.xfb_c00391{left:687.300000px;}
.xed_c00391{left:690.300000px;}
.xd1_c00391{left:691.950000px;}
.x13d_c00391{left:693.300000px;}
.xaf_c00391{left:694.500000px;}
.xdb_c00391{left:695.700000px;}
.xe8_c00391{left:698.400000px;}
.x10e_c00391{left:700.050000px;}
.x12c_c00391{left:701.400000px;}
.x105_c00391{left:702.900000px;}
.x11e_c00391{left:703.950000px;}
.x143_c00391{left:705.900000px;}
.x12f_c00391{left:706.950000px;}
.xee_c00391{left:708.000000px;}
.x114_c00391{left:709.050000px;}
.xe0_c00391{left:711.000000px;}
.xc0_c00391{left:714.000000px;}
.xc7_c00391{left:715.350000px;}
.x109_c00391{left:716.400000px;}
.x100_c00391{left:718.500000px;}
.x140_c00391{left:720.000000px;}
.x11f_c00391{left:721.650000px;}
.xd7_c00391{left:724.350000px;}
.xf3_c00391{left:726.450000px;}
.xbb_c00391{left:728.700000px;}
.xe1_c00391{left:732.300000px;}
.x108_c00391{left:733.950000px;}
.xb0_c00391{left:735.600000px;}
.xc8_c00391{left:736.950000px;}
.x14a_c00391{left:739.200000px;}
.x129_c00391{left:740.550000px;}
.x139_c00391{left:742.650000px;}
.xa8_c00391{left:745.200000px;}
.xb6_c00391{left:746.550000px;}
.xf4_c00391{left:749.100000px;}
.xc1_c00391{left:750.750000px;}
.xfc_c00391{left:753.150000px;}
.x101_c00391{left:756.300000px;}
.xd2_c00391{left:757.350000px;}
.x148_c00391{left:761.850000px;}
.xc4_c00391{left:762.900000px;}
.x126_c00391{left:763.950000px;}
.xf5_c00391{left:766.350000px;}
.x102_c00391{left:768.150000px;}
.xa9_c00391{left:769.650000px;}
.xe9_c00391{left:770.700000px;}
.xef_c00391{left:772.500000px;}
.xcd_c00391{left:773.550000px;}
.x136_c00391{left:775.800000px;}
.x120_c00391{left:777.300000px;}
.x141_c00391{left:779.400000px;}
.x115_c00391{left:780.450000px;}
.x137_c00391{left:786.900000px;}
.x10f_c00391{left:788.550000px;}
.x144_c00391{left:789.750000px;}
.xe2_c00391{left:790.950000px;}
.x13a_c00391{left:792.600000px;}
.xdc_c00391{left:793.650000px;}
.x146_c00391{left:795.750000px;}
.xc5_c00391{left:797.100000px;}
.xce_c00391{left:798.450000px;}
.x11b_c00391{left:799.650000px;}
.xc2_c00391{left:801.900000px;}
.x121_c00391{left:803.550000px;}
.xb1_c00391{left:805.050000px;}
.x106_c00391{left:806.700000px;}
.x12a_c00391{left:808.800000px;}
.xfd_c00391{left:810.750000px;}
.x128_c00391{left:811.800000px;}
.xc9_c00391{left:813.300000px;}
.x130_c00391{left:814.950000px;}
.xbc_c00391{left:817.650000px;}
.x110_c00391{left:821.250000px;}
.xb7_c00391{left:822.900000px;}
.xdd_c00391{left:823.950000px;}
.xe3_c00391{left:828.000000px;}
.xcf_c00391{left:830.550000px;}
.x145_c00391{left:832.950000px;}
.x116_c00391{left:834.450000px;}
.x12d_c00391{left:835.500000px;}
.x10a_c00391{left:837.000000px;}
.xca_c00391{left:839.250000px;}
.xb8_c00391{left:841.200000px;}
.xea_c00391{left:842.400000px;}
.xd3_c00391{left:844.650000px;}
.xaa_c00391{left:846.000000px;}
.xe4_c00391{left:848.850000px;}
.x13e_c00391{left:850.200000px;}
.x131_c00391{left:853.800000px;}
.x107_c00391{left:854.850000px;}
.xf0_c00391{left:855.900000px;}
.x111_c00391{left:856.950000px;}
.xbd_c00391{left:859.050000px;}
.x13b_c00391{left:864.300000px;}
.x103_c00391{left:865.650000px;}
.xab_c00391{left:866.850000px;}
.x132_c00391{left:867.900000px;}
.xb2_c00391{left:869.100000px;}
.x112_c00391{left:870.300000px;}
.xf6_c00391{left:873.600000px;}
.x117_c00391{left:878.400000px;}
.xd4_c00391{left:880.950000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws1_c00391{word-spacing:-0.670391pt;}
.wse_c00391{word-spacing:0.000000pt;}
.wsa_c00391{word-spacing:6.188983pt;}
.wsd_c00391{word-spacing:7.283951pt;}
.ws0_c00391{word-spacing:7.619048pt;}
.wsc_c00391{word-spacing:11.851852pt;}
.wsb_c00391{word-spacing:13.580820pt;}
.ws3_c00391{word-spacing:14.387775pt;}
.ws2_c00391{word-spacing:16.271762pt;}
.ws5_c00391{word-spacing:26.031746pt;}
.ws4_c00391{word-spacing:28.006319pt;}
.ws8_c00391{word-spacing:30.793651pt;}
.ws6_c00391{word-spacing:39.259259pt;}
.ws7_c00391{word-spacing:60.116959pt;}
.ws9_c00391{word-spacing:542.962963pt;}
.fs8_c00391{font-size:21.333333pt;}
.fs9_c00391{font-size:42.666667pt;}
.fs4_c00391{font-size:48.000000pt;}
.fs2_c00391{font-size:53.333333pt;}
.fs3_c00391{font-size:58.666667pt;}
.fs1_c00391{font-size:64.000000pt;}
.fs7_c00391{font-size:69.333333pt;}
.fs5_c00391{font-size:85.333333pt;}
.fs0_c00391{font-size:90.666667pt;}
.fs6_c00391{font-size:101.333333pt;}
.y0_c00391{bottom:0.000000pt;}
.y37_c00391{bottom:158.933333pt;}
.y6b_c00391{bottom:160.000000pt;}
.y36_c00391{bottom:174.933333pt;}
.y6a_c00391{bottom:175.733333pt;}
.y35_c00391{bottom:190.666667pt;}
.y69_c00391{bottom:191.733333pt;}
.y34_c00391{bottom:206.933333pt;}
.y68_c00391{bottom:214.800000pt;}
.y33_c00391{bottom:222.666667pt;}
.y67_c00391{bottom:231.733333pt;}
.y32_c00391{bottom:238.666667pt;}
.y66_c00391{bottom:248.400000pt;}
.y31_c00391{bottom:254.400000pt;}
.y65_c00391{bottom:263.733333pt;}
.y30_c00391{bottom:270.400000pt;}
.y64_c00391{bottom:280.000000pt;}
.y2f_c00391{bottom:286.666667pt;}
.y63_c00391{bottom:298.533333pt;}
.y2e_c00391{bottom:302.400000pt;}
.y62_c00391{bottom:315.866667pt;}
.y2d_c00391{bottom:318.666667pt;}
.y61_c00391{bottom:331.866667pt;}
.y2c_c00391{bottom:334.666667pt;}
.y60_c00391{bottom:347.866667pt;}
.y2b_c00391{bottom:350.933333pt;}
.y5f_c00391{bottom:363.600000pt;}
.y2a_c00391{bottom:366.933333pt;}
.y5e_c00391{bottom:379.600000pt;}
.y29_c00391{bottom:384.266667pt;}
.y5d_c00391{bottom:395.866667pt;}
.y28_c00391{bottom:398.666667pt;}
.y5c_c00391{bottom:411.866667pt;}
.y27_c00391{bottom:412.800000pt;}
.y26_c00391{bottom:425.600000pt;}
.y5b_c00391{bottom:428.133333pt;}
.y25_c00391{bottom:437.733333pt;}
.y5a_c00391{bottom:444.133333pt;}
.y24_c00391{bottom:451.866667pt;}
.y3a_c00391{bottom:460.133333pt;}
.y23_c00391{bottom:463.733333pt;}
.y22_c00391{bottom:476.800000pt;}
.y59_c00391{bottom:478.800000pt;}
.y21_c00391{bottom:489.333333pt;}
.y58_c00391{bottom:490.933333pt;}
.y56_c00391{bottom:491.733333pt;}
.y57_c00391{bottom:491.866667pt;}
.y20_c00391{bottom:503.733333pt;}
.y55_c00391{bottom:504.533333pt;}
.y1f_c00391{bottom:515.466667pt;}
.y54_c00391{bottom:518.666667pt;}
.y1e_c00391{bottom:528.933333pt;}
.y53_c00391{bottom:535.866667pt;}
.y1d_c00391{bottom:541.733333pt;}
.y52_c00391{bottom:552.800000pt;}
.y1c_c00391{bottom:554.266667pt;}
.y51_c00391{bottom:568.533333pt;}
.y1b_c00391{bottom:568.666667pt;}
.y50_c00391{bottom:584.266667pt;}
.y1a_c00391{bottom:585.333333pt;}
.y19_c00391{bottom:601.333333pt;}
.y4f_c00391{bottom:610.133333pt;}
.y18_c00391{bottom:617.600000pt;}
.y4e_c00391{bottom:624.266667pt;}
.y39_c00391{bottom:632.933333pt;}
.y17_c00391{bottom:633.600000pt;}
.y4d_c00391{bottom:640.266667pt;}
.y16_c00391{bottom:650.533333pt;}
.y38_c00391{bottom:655.333333pt;}
.y4c_c00391{bottom:656.533333pt;}
.y15_c00391{bottom:665.600000pt;}
.y4b_c00391{bottom:672.266667pt;}
.y14_c00391{bottom:691.200000pt;}
.y4a_c00391{bottom:696.266667pt;}
.y13_c00391{bottom:705.333333pt;}
.y12_c00391{bottom:721.333333pt;}
.y49_c00391{bottom:724.133333pt;}
.y48_c00391{bottom:740.133333pt;}
.y11_c00391{bottom:747.866667pt;}
.y10_c00391{bottom:752.933333pt;}
.y47_c00391{bottom:760.000000pt;}
.yf_c00391{bottom:769.200000pt;}
.y46_c00391{bottom:776.000000pt;}
.ye_c00391{bottom:785.200000pt;}
.y45_c00391{bottom:792.266667pt;}
.yd_c00391{bottom:801.200000pt;}
.y44_c00391{bottom:816.800000pt;}
.yc_c00391{bottom:818.800000pt;}
.y43_c00391{bottom:833.066667pt;}
.yb_c00391{bottom:833.866667pt;}
.y42_c00391{bottom:849.066667pt;}
.ya_c00391{bottom:849.600000pt;}
.y41_c00391{bottom:865.333333pt;}
.y9_c00391{bottom:865.600000pt;}
.y40_c00391{bottom:882.266667pt;}
.y8_c00391{bottom:885.066667pt;}
.y3f_c00391{bottom:897.333333pt;}
.y7_c00391{bottom:909.200000pt;}
.y3e_c00391{bottom:913.333333pt;}
.y6_c00391{bottom:925.466667pt;}
.y3d_c00391{bottom:929.333333pt;}
.y5_c00391{bottom:941.733333pt;}
.y3c_c00391{bottom:945.333333pt;}
.y4_c00391{bottom:960.266667pt;}
.y3b_c00391{bottom:961.333333pt;}
.y3_c00391{bottom:977.600000pt;}
.y2_c00391{bottom:993.600000pt;}
.y1_c00391{bottom:1017.600000pt;}
.ha_c00391{height:21.333333pt;}
.hb_c00391{height:42.666667pt;}
.h6_c00391{height:48.000000pt;}
.h4_c00391{height:53.333333pt;}
.h5_c00391{height:58.666667pt;}
.h3_c00391{height:64.000000pt;}
.h9_c00391{height:69.333333pt;}
.h7_c00391{height:85.333333pt;}
.h2_c00391{height:90.666667pt;}
.h8_c00391{height:101.333333pt;}
.h1_c00391{height:1126.000000pt;}
.h0_c00391{height:1126.079916pt;}
.w0_c00391{width:853.760009pt;}
.w1_c00391{width:854.000000pt;}
.x0_c00391{left:0.000000pt;}
.x6f_c00391{left:164.533333pt;}
.x60_c00391{left:166.133333pt;}
.x11_c00391{left:167.066667pt;}
.x72_c00391{left:171.733333pt;}
.x73_c00391{left:177.200000pt;}
.x34_c00391{left:180.133333pt;}
.x39_c00391{left:181.333333pt;}
.x2_c00391{left:182.400000pt;}
.x17_c00391{left:183.333333pt;}
.x4c_c00391{left:186.400000pt;}
.x7b_c00391{left:189.733333pt;}
.x45_c00391{left:196.133333pt;}
.x26_c00391{left:198.133333pt;}
.x9f_c00391{left:199.333333pt;}
.x82_c00391{left:203.866667pt;}
.x58_c00391{left:206.133333pt;}
.x22_c00391{left:207.066667pt;}
.x3_c00391{left:208.666667pt;}
.x3a_c00391{left:210.800000pt;}
.x7e_c00391{left:212.666667pt;}
.x62_c00391{left:214.933333pt;}
.x6b_c00391{left:215.866667pt;}
.x1c_c00391{left:219.333333pt;}
.x9_c00391{left:223.600000pt;}
.x18_c00391{left:224.933333pt;}
.x3d_c00391{left:225.866667pt;}
.x65_c00391{left:226.933333pt;}
.x4_c00391{left:228.133333pt;}
.x67_c00391{left:229.066667pt;}
.x2d_c00391{left:230.000000pt;}
.x9c_c00391{left:234.266667pt;}
.x55_c00391{left:236.800000pt;}
.x1d_c00391{left:239.200000pt;}
.x49_c00391{left:241.200000pt;}
.x10_c00391{left:242.400000pt;}
.xa1_c00391{left:243.600000pt;}
.x59_c00391{left:246.133333pt;}
.x4d_c00391{left:247.866667pt;}
.xa_c00391{left:248.933333pt;}
.x12_c00391{left:251.466667pt;}
.x2e_c00391{left:252.400000pt;}
.x27_c00391{left:254.533333pt;}
.x68_c00391{left:255.733333pt;}
.x74_c00391{left:257.333333pt;}
.x19_c00391{left:260.133333pt;}
.x3e_c00391{left:262.000000pt;}
.x56_c00391{left:264.000000pt;}
.x95_c00391{left:265.600000pt;}
.x5_c00391{left:266.800000pt;}
.x88_c00391{left:268.266667pt;}
.x7f_c00391{left:271.333333pt;}
.x92_c00391{left:272.666667pt;}
.x75_c00391{left:276.533333pt;}
.x8b_c00391{left:277.733333pt;}
.x70_c00391{left:280.000000pt;}
.x4a_c00391{left:280.933333pt;}
.x57_c00391{left:282.266667pt;}
.xb_c00391{left:283.200000pt;}
.x2f_c00391{left:285.066667pt;}
.x6c_c00391{left:286.000000pt;}
.x8f_c00391{left:286.933333pt;}
.x5a_c00391{left:288.000000pt;}
.xa4_c00391{left:291.600000pt;}
.x23_c00391{left:293.466667pt;}
.x9d_c00391{left:294.400000pt;}
.x30_c00391{left:296.000000pt;}
.x28_c00391{left:297.733333pt;}
.x79_c00391{left:299.200000pt;}
.x76_c00391{left:300.266667pt;}
.x4e_c00391{left:301.333333pt;}
.x3f_c00391{left:302.933333pt;}
.x1e_c00391{left:303.866667pt;}
.x6_c00391{left:305.466667pt;}
.x98_c00391{left:307.733333pt;}
.x35_c00391{left:308.666667pt;}
.x46_c00391{left:310.533333pt;}
.x5b_c00391{left:312.266667pt;}
.x83_c00391{left:313.600000pt;}
.x13_c00391{left:316.133333pt;}
.xa0_c00391{left:317.333333pt;}
.x1f_c00391{left:318.533333pt;}
.x7c_c00391{left:319.600000pt;}
.x29_c00391{left:320.800000pt;}
.x31_c00391{left:321.866667pt;}
.x7_c00391{left:322.800000pt;}
.xa2_c00391{left:324.266667pt;}
.xc_c00391{left:325.733333pt;}
.x84_c00391{left:326.666667pt;}
.x24_c00391{left:328.933333pt;}
.x2a_c00391{left:330.400000pt;}
.x7a_c00391{left:332.266667pt;}
.x4f_c00391{left:334.000000pt;}
.x14_c00391{left:335.066667pt;}
.x6d_c00391{left:336.000000pt;}
.x9e_c00391{left:337.600000pt;}
.x25_c00391{left:338.800000pt;}
.x1a_c00391{left:340.800000pt;}
.x5f_c00391{left:343.066667pt;}
.x71_c00391{left:344.000000pt;}
.x77_c00391{left:345.333333pt;}
.x99_c00391{left:347.466667pt;}
.x61_c00391{left:349.200000pt;}
.x80_c00391{left:350.666667pt;}
.x85_c00391{left:352.133333pt;}
.x2b_c00391{left:353.466667pt;}
.x90_c00391{left:356.133333pt;}
.x15_c00391{left:357.466667pt;}
.x89_c00391{left:358.400000pt;}
.x9a_c00391{left:361.733333pt;}
.x1b_c00391{left:363.466667pt;}
.x52_c00391{left:364.933333pt;}
.x86_c00391{left:365.866667pt;}
.x81_c00391{left:367.600000pt;}
.x20_c00391{left:370.666667pt;}
.x87_c00391{left:372.000000pt;}
.x91_c00391{left:373.466667pt;}
.x5c_c00391{left:376.533333pt;}
.x36_c00391{left:377.733333pt;}
.x93_c00391{left:379.466667pt;}
.x32_c00391{left:380.400000pt;}
.x8_c00391{left:382.666667pt;}
.x6e_c00391{left:383.733333pt;}
.x1_c00391{left:384.933333pt;}
.x2c_c00391{left:386.400000pt;}
.xd_c00391{left:388.400000pt;}
.x40_c00391{left:390.266667pt;}
.x50_c00391{left:392.533333pt;}
.x37_c00391{left:395.066667pt;}
.x69_c00391{left:396.933333pt;}
.x21_c00391{left:398.133333pt;}
.x3b_c00391{left:400.533333pt;}
.x8d_c00391{left:401.600000pt;}
.x63_c00391{left:402.533333pt;}
.x47_c00391{left:404.000000pt;}
.x8c_c00391{left:405.466667pt;}
.x38_c00391{left:408.800000pt;}
.x41_c00391{left:410.800000pt;}
.x8a_c00391{left:411.733333pt;}
.xe_c00391{left:414.000000pt;}
.x6a_c00391{left:419.066667pt;}
.x5d_c00391{left:421.066667pt;}
.x7d_c00391{left:422.266667pt;}
.x4b_c00391{left:423.200000pt;}
.x53_c00391{left:425.733333pt;}
.x8e_c00391{left:426.933333pt;}
.x16_c00391{left:427.866667pt;}
.x42_c00391{left:429.066667pt;}
.x66_c00391{left:430.400000pt;}
.x78_c00391{left:432.000000pt;}
.x96_c00391{left:435.333333pt;}
.x3c_c00391{left:437.066667pt;}
.xa3_c00391{left:438.000000pt;}
.x48_c00391{left:439.466667pt;}
.x97_c00391{left:441.333333pt;}
.x94_c00391{left:442.266667pt;}
.x33_c00391{left:446.000000pt;}
.x54_c00391{left:450.000000pt;}
.x51_c00391{left:451.333333pt;}
.x43_c00391{left:453.066667pt;}
.x64_c00391{left:455.333333pt;}
.x5e_c00391{left:456.533333pt;}
.x9b_c00391{left:460.933333pt;}
.xf_c00391{left:462.266667pt;}
.x44_c00391{left:463.600000pt;}
.xa5_c00391{left:475.866667pt;}
.x13f_c00391{left:482.533333pt;}
.xa6_c00391{left:484.533333pt;}
.xf8_c00391{left:486.400000pt;}
.x123_c00391{left:489.200000pt;}
.x122_c00391{left:496.666667pt;}
.x13c_c00391{left:497.866667pt;}
.x113_c00391{left:499.733333pt;}
.xeb_c00391{left:500.800000pt;}
.xac_c00391{left:501.733333pt;}
.x127_c00391{left:510.133333pt;}
.xf1_c00391{left:512.933333pt;}
.x124_c00391{left:514.133333pt;}
.xbe_c00391{left:517.866667pt;}
.xcb_c00391{left:520.000000pt;}
.xd8_c00391{left:521.333333pt;}
.xf9_c00391{left:524.133333pt;}
.x11c_c00391{left:525.866667pt;}
.x125_c00391{left:527.866667pt;}
.xde_c00391{left:530.266667pt;}
.x133_c00391{left:531.200000pt;}
.xf2_c00391{left:533.066667pt;}
.xc3_c00391{left:535.733333pt;}
.xad_c00391{left:538.533333pt;}
.xe5_c00391{left:540.133333pt;}
.xb3_c00391{left:541.466667pt;}
.x12e_c00391{left:543.600000pt;}
.xbf_c00391{left:545.333333pt;}
.x118_c00391{left:546.266667pt;}
.xd5_c00391{left:548.533333pt;}
.x134_c00391{left:549.466667pt;}
.xdf_c00391{left:552.000000pt;}
.xfe_c00391{left:554.533333pt;}
.xfa_c00391{left:555.866667pt;}
.xd9_c00391{left:557.200000pt;}
.x10b_c00391{left:558.133333pt;}
.xc6_c00391{left:559.066667pt;}
.xe6_c00391{left:560.000000pt;}
.xa7_c00391{left:561.333333pt;}
.x104_c00391{left:562.400000pt;}
.x149_c00391{left:563.333333pt;}
.x12b_c00391{left:564.266667pt;}
.x138_c00391{left:565.200000pt;}
.xec_c00391{left:567.200000pt;}
.x11d_c00391{left:568.133333pt;}
.x142_c00391{left:569.866667pt;}
.xae_c00391{left:572.800000pt;}
.xda_c00391{left:574.533333pt;}
.xf7_c00391{left:576.666667pt;}
.x147_c00391{left:577.733333pt;}
.xd6_c00391{left:579.200000pt;}
.x10d_c00391{left:582.933333pt;}
.xb4_c00391{left:585.600000pt;}
.x10c_c00391{left:587.200000pt;}
.xb9_c00391{left:591.466667pt;}
.x135_c00391{left:592.933333pt;}
.x119_c00391{left:594.000000pt;}
.xd0_c00391{left:597.466667pt;}
.xcc_c00391{left:598.933333pt;}
.xff_c00391{left:601.600000pt;}
.xb5_c00391{left:602.533333pt;}
.xe7_c00391{left:603.466667pt;}
.x11a_c00391{left:606.133333pt;}
.xba_c00391{left:607.466667pt;}
.xfb_c00391{left:610.933333pt;}
.xed_c00391{left:613.600000pt;}
.xd1_c00391{left:615.066667pt;}
.x13d_c00391{left:616.266667pt;}
.xaf_c00391{left:617.333333pt;}
.xdb_c00391{left:618.400000pt;}
.xe8_c00391{left:620.800000pt;}
.x10e_c00391{left:622.266667pt;}
.x12c_c00391{left:623.466667pt;}
.x105_c00391{left:624.800000pt;}
.x11e_c00391{left:625.733333pt;}
.x143_c00391{left:627.466667pt;}
.x12f_c00391{left:628.400000pt;}
.xee_c00391{left:629.333333pt;}
.x114_c00391{left:630.266667pt;}
.xe0_c00391{left:632.000000pt;}
.xc0_c00391{left:634.666667pt;}
.xc7_c00391{left:635.866667pt;}
.x109_c00391{left:636.800000pt;}
.x100_c00391{left:638.666667pt;}
.x140_c00391{left:640.000000pt;}
.x11f_c00391{left:641.466667pt;}
.xd7_c00391{left:643.866667pt;}
.xf3_c00391{left:645.733333pt;}
.xbb_c00391{left:647.733333pt;}
.xe1_c00391{left:650.933333pt;}
.x108_c00391{left:652.400000pt;}
.xb0_c00391{left:653.866667pt;}
.xc8_c00391{left:655.066667pt;}
.x14a_c00391{left:657.066667pt;}
.x129_c00391{left:658.266667pt;}
.x139_c00391{left:660.133333pt;}
.xa8_c00391{left:662.400000pt;}
.xb6_c00391{left:663.600000pt;}
.xf4_c00391{left:665.866667pt;}
.xc1_c00391{left:667.333333pt;}
.xfc_c00391{left:669.466667pt;}
.x101_c00391{left:672.266667pt;}
.xd2_c00391{left:673.200000pt;}
.x148_c00391{left:677.200000pt;}
.xc4_c00391{left:678.133333pt;}
.x126_c00391{left:679.066667pt;}
.xf5_c00391{left:681.200000pt;}
.x102_c00391{left:682.800000pt;}
.xa9_c00391{left:684.133333pt;}
.xe9_c00391{left:685.066667pt;}
.xef_c00391{left:686.666667pt;}
.xcd_c00391{left:687.600000pt;}
.x136_c00391{left:689.600000pt;}
.x120_c00391{left:690.933333pt;}
.x141_c00391{left:692.800000pt;}
.x115_c00391{left:693.733333pt;}
.x137_c00391{left:699.466667pt;}
.x10f_c00391{left:700.933333pt;}
.x144_c00391{left:702.000000pt;}
.xe2_c00391{left:703.066667pt;}
.x13a_c00391{left:704.533333pt;}
.xdc_c00391{left:705.466667pt;}
.x146_c00391{left:707.333333pt;}
.xc5_c00391{left:708.533333pt;}
.xce_c00391{left:709.733333pt;}
.x11b_c00391{left:710.800000pt;}
.xc2_c00391{left:712.800000pt;}
.x121_c00391{left:714.266667pt;}
.xb1_c00391{left:715.600000pt;}
.x106_c00391{left:717.066667pt;}
.x12a_c00391{left:718.933333pt;}
.xfd_c00391{left:720.666667pt;}
.x128_c00391{left:721.600000pt;}
.xc9_c00391{left:722.933333pt;}
.x130_c00391{left:724.400000pt;}
.xbc_c00391{left:726.800000pt;}
.x110_c00391{left:730.000000pt;}
.xb7_c00391{left:731.466667pt;}
.xdd_c00391{left:732.400000pt;}
.xe3_c00391{left:736.000000pt;}
.xcf_c00391{left:738.266667pt;}
.x145_c00391{left:740.400000pt;}
.x116_c00391{left:741.733333pt;}
.x12d_c00391{left:742.666667pt;}
.x10a_c00391{left:744.000000pt;}
.xca_c00391{left:746.000000pt;}
.xb8_c00391{left:747.733333pt;}
.xea_c00391{left:748.800000pt;}
.xd3_c00391{left:750.800000pt;}
.xaa_c00391{left:752.000000pt;}
.xe4_c00391{left:754.533333pt;}
.x13e_c00391{left:755.733333pt;}
.x131_c00391{left:758.933333pt;}
.x107_c00391{left:759.866667pt;}
.xf0_c00391{left:760.800000pt;}
.x111_c00391{left:761.733333pt;}
.xbd_c00391{left:763.600000pt;}
.x13b_c00391{left:768.266667pt;}
.x103_c00391{left:769.466667pt;}
.xab_c00391{left:770.533333pt;}
.x132_c00391{left:771.466667pt;}
.xb2_c00391{left:772.533333pt;}
.x112_c00391{left:773.600000pt;}
.xf6_c00391{left:776.533333pt;}
.x117_c00391{left:780.800000pt;}
.xd4_c00391{left:783.066667pt;}
}





/* 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_c00392 {
    display:none;
  }
  .loading-indicator_c00392.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00392 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_c00392 { 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_c00392" -> "#page-container .classname_c00392")
 */
.pf_c00392 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00392 { /* 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_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00392 { /* 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_c00392 { /* 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_c00392 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00392 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00392 {overflow:visible;}
  }
}
.c_c00392 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00392 { /* 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_c00392:after { /* webkit #35443 */
  content: '';
}
.t_c00392:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00392 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 */
}
.__c00392 { /* 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_c00392 { /* info for Javascript */
  display:none;
}
.l_c00392 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00392 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00392 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00392: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_c00392 {
    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_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00392.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_c00392 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00392;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.000000;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;}
.m11d_c00392{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m131_c00392{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00392{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.md9_c00392{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m66_c00392{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00392{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m113_c00392{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m60_c00392{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00392{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.maf_c00392{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m120_c00392{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m123_c00392{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m89_c00392{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m38_c00392{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mac_c00392{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00392{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m39_c00392{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m106_c00392{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m79_c00392{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00392{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00392{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m55_c00392{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5_c00392{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m105_c00392{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m107_c00392{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00392{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m30_c00392{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00392{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00392{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m74_c00392{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mda_c00392{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mff_c00392{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00392{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00392{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.ma_c00392{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m115_c00392{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m45_c00392{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me9_c00392{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m126_c00392{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00392{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00392{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m130_c00392{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00392{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00392{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mad_c00392{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00392{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00392{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m92_c00392{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m36_c00392{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m31_c00392{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mce_c00392{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00392{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mef_c00392{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m56_c00392{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00392{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m18_c00392{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00392{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.med_c00392{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00392{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00392{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m37_c00392{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me5_c00392{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mee_c00392{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00392{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m121_c00392{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00392{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00392{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m59_c00392{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m29_c00392{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m96_c00392{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00392{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m129_c00392{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m116_c00392{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mae_c00392{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m27_c00392{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00392{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00392{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m86_c00392{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00392{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.me0_c00392{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00392{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m94_c00392{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md5_c00392{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00392{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00392{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m32_c00392{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00392{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00392{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mba_c00392{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.md0_c00392{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m44_c00392{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00392{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m28_c00392{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00392{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00392{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00392{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00392{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00392{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m83_c00392{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m100_c00392{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00392{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00392{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m99_c00392{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m35_c00392{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m84_c00392{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me1_c00392{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m33_c00392{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m20_c00392{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m98_c00392{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m112_c00392{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m12_c00392{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00392{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m11_c00392{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00392{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00392{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00392{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00392{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00392{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m16_c00392{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00392{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00392{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m88_c00392{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m14_c00392{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00392{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00392{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.me3_c00392{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00392{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m43_c00392{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m125_c00392{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m71_c00392{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00392{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00392{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m26_c00392{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m15_c00392{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mab_c00392{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.me6_c00392{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00392{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00392{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m23_c00392{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m61_c00392{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00392{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m77_c00392{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00392{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00392{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00392{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00392{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00392{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md_c00392{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00392{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00392{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m58_c00392{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00392{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00392{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m75_c00392{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00392{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m57_c00392{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00392{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md4_c00392{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m34_c00392{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mde_c00392{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00392{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb_c00392{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00392{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m76_c00392{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00392{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00392{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00392{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m127_c00392{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m119_c00392{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md8_c00392{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m68_c00392{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00392{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m54_c00392{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mec_c00392{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m40_c00392{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m46_c00392{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00392{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00392{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00392{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00392{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m114_c00392{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m10_c00392{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mca_c00392{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m82_c00392{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.md2_c00392{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00392{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00392{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m22_c00392{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m104_c00392{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md7_c00392{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00392{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m87_c00392{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00392{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m109_c00392{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00392{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md3_c00392{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00392{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m63_c00392{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00392{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00392{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m110_c00392{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m93_c00392{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m70_c00392{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m25_c00392{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00392{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m102_c00392{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00392{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m128_c00392{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mea_c00392{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00392{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00392{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m13_c00392{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m53_c00392{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m49_c00392{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00392{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m6_c00392{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m95_c00392{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m117_c00392{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m97_c00392{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m67_c00392{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m122_c00392{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m101_c00392{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00392{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00392{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00392{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me4_c00392{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m17_c00392{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00392{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m111_c00392{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00392{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00392{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00392{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00392{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m81_c00392{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m19_c00392{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00392{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m103_c00392{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m24_c00392{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00392{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m52_c00392{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m90_c00392{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00392{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me_c00392{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md1_c00392{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m50_c00392{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00392{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m85_c00392{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00392{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00392{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00392{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m42_c00392{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m4_c00392{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00392{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc_c00392{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m48_c00392{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00392{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00392{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m69_c00392{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00392{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.maa_c00392{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me8_c00392{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m51_c00392{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00392{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00392{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m78_c00392{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m80_c00392{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00392{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m64_c00392{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00392{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00392{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.me7_c00392{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m73_c00392{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m41_c00392{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m118_c00392{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00392{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m47_c00392{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00392{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00392{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.meb_c00392{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.md6_c00392{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00392{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m72_c00392{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m65_c00392{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00392{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00392{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.me2_c00392{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m91_c00392{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m21_c00392{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m62_c00392{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00392{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.mf_c00392{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00392{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00392{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00392{transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00392{transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);}
.m124_c00392{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m108_c00392{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00392{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00392{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls0_c00392{letter-spacing:0.000000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{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__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00392{word-spacing:-20.487805px;}
.ws3_c00392{word-spacing:-14.789809px;}
.ws0_c00392{word-spacing:-9.736842px;}
.ws4_c00392{word-spacing:-6.846626px;}
.ws1_c00392{word-spacing:-3.735849px;}
.ws8_c00392{word-spacing:-0.183040px;}
.wsb_c00392{word-spacing:0.000000px;}
.wsa_c00392{word-spacing:1.302405px;}
.ws5_c00392{word-spacing:11.538462px;}
.ws9_c00392{word-spacing:13.027491px;}
.ws6_c00392{word-spacing:25.714286px;}
.ws7_c00392{word-spacing:69.605263px;}
._0_c00392{width:25.394737px;}
.fc0_c00392{color:transparent;}
.fs5_c00392{font-size:24.000000px;}
.fs7_c00392{font-size:30.000000px;}
.fs6_c00392{font-size:36.000000px;}
.fs4_c00392{font-size:54.000000px;}
.fs1_c00392{font-size:60.000000px;}
.fs2_c00392{font-size:66.000000px;}
.fs3_c00392{font-size:72.000000px;}
.fs0_c00392{font-size:78.000000px;}
.y0_c00392{bottom:0.000000px;}
.y6e_c00392{bottom:184.350000px;}
.y38_c00392{bottom:185.700000px;}
.y68_c00392{bottom:203.250000px;}
.y37_c00392{bottom:204.000000px;}
.y67_c00392{bottom:221.550000px;}
.y36_c00392{bottom:222.000000px;}
.y66_c00392{bottom:239.550000px;}
.y35_c00392{bottom:240.000000px;}
.y65_c00392{bottom:257.550000px;}
.y34_c00392{bottom:257.700000px;}
.y64_c00392{bottom:275.550000px;}
.y33_c00392{bottom:276.000000px;}
.y63_c00392{bottom:293.550000px;}
.y32_c00392{bottom:293.700000px;}
.y62_c00392{bottom:311.550000px;}
.y31_c00392{bottom:311.700000px;}
.y61_c00392{bottom:329.250000px;}
.y30_c00392{bottom:329.700000px;}
.y60_c00392{bottom:347.250000px;}
.y2f_c00392{bottom:347.700000px;}
.y2e_c00392{bottom:365.700000px;}
.y5f_c00392{bottom:372.750000px;}
.y2d_c00392{bottom:384.000000px;}
.y5e_c00392{bottom:387.450000px;}
.y2c_c00392{bottom:401.700000px;}
.y5d_c00392{bottom:401.850000px;}
.y2b_c00392{bottom:419.700000px;}
.y6d_c00392{bottom:428.700000px;}
.y5c_c00392{bottom:429.600000px;}
.y6c_c00392{bottom:430.200000px;}
.y2a_c00392{bottom:437.400000px;}
.y69_c00392{bottom:442.800000px;}
.y6b_c00392{bottom:443.850000px;}
.y5b_c00392{bottom:444.300000px;}
.y6a_c00392{bottom:446.700000px;}
.y29_c00392{bottom:455.400000px;}
.y5a_c00392{bottom:459.000000px;}
.y59_c00392{bottom:473.100000px;}
.y28_c00392{bottom:473.400000px;}
.y58_c00392{bottom:487.800000px;}
.y27_c00392{bottom:491.700000px;}
.y26_c00392{bottom:509.400000px;}
.y57_c00392{bottom:512.550000px;}
.y25_c00392{bottom:527.400000px;}
.y56_c00392{bottom:530.850000px;}
.y24_c00392{bottom:545.700000px;}
.y55_c00392{bottom:548.550000px;}
.y23_c00392{bottom:563.400000px;}
.y54_c00392{bottom:566.550000px;}
.y22_c00392{bottom:581.400000px;}
.y53_c00392{bottom:584.550000px;}
.y21_c00392{bottom:599.700000px;}
.y52_c00392{bottom:602.250000px;}
.y19_c00392{bottom:624.150000px;}
.y51_c00392{bottom:624.600000px;}
.y20_c00392{bottom:626.100000px;}
.y18_c00392{bottom:638.250000px;}
.y1f_c00392{bottom:639.000000px;}
.y17_c00392{bottom:640.800000px;}
.y50_c00392{bottom:642.900000px;}
.y1e_c00392{bottom:653.850000px;}
.y4f_c00392{bottom:660.600000px;}
.y1d_c00392{bottom:667.500000px;}
.y4e_c00392{bottom:678.900000px;}
.y1c_c00392{bottom:681.900000px;}
.y4d_c00392{bottom:696.600000px;}
.y1b_c00392{bottom:698.100000px;}
.y1a_c00392{bottom:710.700000px;}
.y4c_c00392{bottom:714.300000px;}
.y16_c00392{bottom:726.150000px;}
.y4b_c00392{bottom:732.300000px;}
.y15_c00392{bottom:741.600000px;}
.y4a_c00392{bottom:750.600000px;}
.y14_c00392{bottom:764.550000px;}
.y49_c00392{bottom:768.300000px;}
.y13_c00392{bottom:782.550000px;}
.y48_c00392{bottom:790.500000px;}
.y12_c00392{bottom:800.850000px;}
.y47_c00392{bottom:818.250000px;}
.y11_c00392{bottom:818.550000px;}
.y10_c00392{bottom:836.550000px;}
.yf_c00392{bottom:854.250000px;}
.y46_c00392{bottom:854.550000px;}
.y45_c00392{bottom:872.250000px;}
.ye_c00392{bottom:875.850000px;}
.yd_c00392{bottom:894.900000px;}
.y44_c00392{bottom:912.600000px;}
.yc_c00392{bottom:913.200000px;}
.yb_c00392{bottom:931.200000px;}
.y43_c00392{bottom:934.800000px;}
.ya_c00392{bottom:948.900000px;}
.y42_c00392{bottom:952.500000px;}
.y9_c00392{bottom:966.900000px;}
.y41_c00392{bottom:970.650000px;}
.y8_c00392{bottom:984.900000px;}
.y40_c00392{bottom:988.950000px;}
.y3f_c00392{bottom:1006.950000px;}
.y7_c00392{bottom:1007.250000px;}
.y3e_c00392{bottom:1024.650000px;}
.y3d_c00392{bottom:1042.650000px;}
.y6_c00392{bottom:1042.950000px;}
.y3c_c00392{bottom:1060.950000px;}
.y5_c00392{bottom:1061.250000px;}
.y3b_c00392{bottom:1078.950000px;}
.y4_c00392{bottom:1095.900000px;}
.y3a_c00392{bottom:1096.950000px;}
.y39_c00392{bottom:1114.950000px;}
.y3_c00392{bottom:1115.700000px;}
.y2_c00392{bottom:1141.500000px;}
.y1_c00392{bottom:1142.250000px;}
.h7_c00392{height:24.000000px;}
.h9_c00392{height:30.000000px;}
.h8_c00392{height:36.000000px;}
.h6_c00392{height:54.000000px;}
.h3_c00392{height:60.000000px;}
.h4_c00392{height:66.000000px;}
.h5_c00392{height:72.000000px;}
.h2_c00392{height:78.000000px;}
.h1_c00392{height:1267.500000px;}
.h0_c00392{height:1267.559967px;}
.w0_c00392{width:960.480010px;}
.w1_c00392{width:960.750000px;}
.x0_c00392{left:0.000000px;}
.x5e_c00392{left:73.500000px;}
.x10_c00392{left:74.850000px;}
.x1c_c00392{left:77.100000px;}
.x62_c00392{left:87.900000px;}
.x3_c00392{left:88.950000px;}
.x6e_c00392{left:90.300000px;}
.x4b_c00392{left:91.500000px;}
.xc_c00392{left:93.150000px;}
.x2c_c00392{left:94.200000px;}
.x11_c00392{left:100.800000px;}
.x65_c00392{left:102.600000px;}
.x67_c00392{left:108.600000px;}
.x22_c00392{left:112.350000px;}
.x43_c00392{left:118.050000px;}
.x1d_c00392{left:119.550000px;}
.x8d_c00392{left:123.000000px;}
.x66_c00392{left:124.200000px;}
.x81_c00392{left:125.550000px;}
.x54_c00392{left:126.600000px;}
.x18_c00392{left:128.700000px;}
.xd_c00392{left:130.200000px;}
.x51_c00392{left:135.000000px;}
.x4c_c00392{left:136.500000px;}
.x55_c00392{left:138.150000px;}
.x3c_c00392{left:140.250000px;}
.x2d_c00392{left:141.750000px;}
.x98_c00392{left:143.100000px;}
.x6b_c00392{left:145.200000px;}
.x38_c00392{left:147.450000px;}
.x8e_c00392{left:149.700000px;}
.xe_c00392{left:151.500000px;}
.x27_c00392{left:153.150000px;}
.x1e_c00392{left:154.800000px;}
.x44_c00392{left:158.100000px;}
.x6c_c00392{left:159.450000px;}
.x82_c00392{left:160.500000px;}
.x23_c00392{left:161.700000px;}
.x32_c00392{left:164.850000px;}
.xf_c00392{left:167.700000px;}
.x7c_c00392{left:169.800000px;}
.x12_c00392{left:172.050000px;}
.x8b_c00392{left:173.100000px;}
.x4d_c00392{left:174.300000px;}
.x3d_c00392{left:178.050000px;}
.x7e_c00392{left:180.000000px;}
.x2e_c00392{left:181.050000px;}
.x94_c00392{left:184.800000px;}
.x45_c00392{left:187.950000px;}
.x19_c00392{left:190.200000px;}
.x59_c00392{left:191.250000px;}
.x4_c00392{left:192.300000px;}
.x73_c00392{left:195.600000px;}
.x33_c00392{left:196.950000px;}
.x39_c00392{left:199.350000px;}
.x7f_c00392{left:200.850000px;}
.x5_c00392{left:202.350000px;}
.x79_c00392{left:203.700000px;}
.x2f_c00392{left:205.200000px;}
.x24_c00392{left:206.700000px;}
.x52_c00392{left:211.650000px;}
.x63_c00392{left:213.900000px;}
.x1f_c00392{left:216.750000px;}
.x13_c00392{left:219.600000px;}
.x6f_c00392{left:221.400000px;}
.x34_c00392{left:222.900000px;}
.x91_c00392{left:224.400000px;}
.x56_c00392{left:225.900000px;}
.x1a_c00392{left:227.250000px;}
.x3e_c00392{left:229.500000px;}
.x4e_c00392{left:231.600000px;}
.x5d_c00392{left:233.400000px;}
.x28_c00392{left:234.900000px;}
.x80_c00392{left:237.900000px;}
.x86_c00392{left:239.100000px;}
.x6_c00392{left:240.450000px;}
.x7b_c00392{left:241.950000px;}
.x25_c00392{left:243.450000px;}
.x30_c00392{left:245.850000px;}
.x7d_c00392{left:247.500000px;}
.x9c_c00392{left:248.700000px;}
.x95_c00392{left:252.150000px;}
.x14_c00392{left:253.500000px;}
.x7_c00392{left:255.900000px;}
.x83_c00392{left:257.700000px;}
.x64_c00392{left:260.400000px;}
.x74_c00392{left:262.500000px;}
.x87_c00392{left:263.550000px;}
.x8f_c00392{left:266.100000px;}
.x3f_c00392{left:267.600000px;}
.x35_c00392{left:269.700000px;}
.x70_c00392{left:270.750000px;}
.x88_c00392{left:276.450000px;}
.x71_c00392{left:278.700000px;}
.x29_c00392{left:281.400000px;}
.x46_c00392{left:282.900000px;}
.x20_c00392{left:284.100000px;}
.x90_c00392{left:285.150000px;}
.x1b_c00392{left:291.000000px;}
.x84_c00392{left:293.700000px;}
.x40_c00392{left:297.150000px;}
.x4f_c00392{left:298.500000px;}
.x53_c00392{left:300.150000px;}
.x15_c00392{left:302.100000px;}
.x9d_c00392{left:303.450000px;}
.x5f_c00392{left:305.400000px;}
.x92_c00392{left:306.750000px;}
.x31_c00392{left:312.150000px;}
.x8a_c00392{left:316.050000px;}
.x7a_c00392{left:317.550000px;}
.x1_c00392{left:318.600000px;}
.x57_c00392{left:319.800000px;}
.x77_c00392{left:320.850000px;}
.x2a_c00392{left:323.550000px;}
.x75_c00392{left:325.200000px;}
.x47_c00392{left:326.850000px;}
.x96_c00392{left:328.650000px;}
.x5a_c00392{left:330.900000px;}
.x8_c00392{left:332.250000px;}
.x72_c00392{left:335.250000px;}
.x3a_c00392{left:337.950000px;}
.x48_c00392{left:339.150000px;}
.x36_c00392{left:340.350000px;}
.x21_c00392{left:342.450000px;}
.x6d_c00392{left:343.500000px;}
.x41_c00392{left:347.250000px;}
.x97_c00392{left:348.750000px;}
.x2b_c00392{left:349.800000px;}
.x99_c00392{left:350.850000px;}
.x58_c00392{left:353.700000px;}
.x50_c00392{left:356.100000px;}
.x5b_c00392{left:358.650000px;}
.x9_c00392{left:361.050000px;}
.x60_c00392{left:363.300000px;}
.x89_c00392{left:364.950000px;}
.x8c_c00392{left:366.750000px;}
.x49_c00392{left:369.450000px;}
.x68_c00392{left:371.100000px;}
.x16_c00392{left:372.300000px;}
.x3b_c00392{left:375.000000px;}
.x37_c00392{left:377.850000px;}
.x78_c00392{left:378.900000px;}
.xa_c00392{left:381.600000px;}
.x93_c00392{left:385.950000px;}
.x76_c00392{left:387.000000px;}
.x42_c00392{left:388.950000px;}
.x9b_c00392{left:390.450000px;}
.x26_c00392{left:392.850000px;}
.x17_c00392{left:395.400000px;}
.x61_c00392{left:397.200000px;}
.x6a_c00392{left:398.400000px;}
.x69_c00392{left:399.600000px;}
.xb_c00392{left:400.650000px;}
.x4a_c00392{left:402.900000px;}
.x9a_c00392{left:404.400000px;}
.x85_c00392{left:406.050000px;}
.x5c_c00392{left:408.300000px;}
.x124_c00392{left:431.700000px;}
.x115_c00392{left:433.800000px;}
.xe0_c00392{left:434.850000px;}
.xf2_c00392{left:435.900000px;}
.x127_c00392{left:446.100000px;}
.x138_c00392{left:447.900000px;}
.x120_c00392{left:449.250000px;}
.x11e_c00392{left:450.300000px;}
.xeb_c00392{left:451.350000px;}
.x10d_c00392{left:452.400000px;}
.x9e_c00392{left:453.600000px;}
.x132_c00392{left:459.300000px;}
.x12a_c00392{left:460.350000px;}
.xc5_c00392{left:470.250000px;}
.x9f_c00392{left:471.300000px;}
.xee_c00392{left:472.350000px;}
.xa7_c00392{left:473.400000px;}
.x106_c00392{left:474.750000px;}
.x130_c00392{left:477.450000px;}
.x142_c00392{left:478.800000px;}
.xf3_c00392{left:480.900000px;}
.x12b_c00392{left:482.250000px;}
.xd6_c00392{left:483.450000px;}
.x121_c00392{left:484.500000px;}
.x128_c00392{left:486.750000px;}
.xa0_c00392{left:491.850000px;}
.x10e_c00392{left:493.050000px;}
.xe1_c00392{left:495.000000px;}
.x100_c00392{left:497.400000px;}
.xec_c00392{left:498.450000px;}
.xe5_c00392{left:501.450000px;}
.xca_c00392{left:503.700000px;}
.x12d_c00392{left:504.750000px;}
.xd0_c00392{left:506.550000px;}
.xb5_c00392{left:508.500000px;}
.xdf_c00392{left:510.450000px;}
.xba_c00392{left:512.700000px;}
.x119_c00392{left:513.750000px;}
.xe2_c00392{left:514.800000px;}
.x140_c00392{left:515.850000px;}
.xa8_c00392{left:518.100000px;}
.xd7_c00392{left:519.900000px;}
.x10f_c00392{left:521.100000px;}
.xed_c00392{left:522.600000px;}
.xcb_c00392{left:523.800000px;}
.xe8_c00392{left:525.600000px;}
.xc6_c00392{left:529.650000px;}
.xb0_c00392{left:531.450000px;}
.xf7_c00392{left:533.550000px;}
.xa1_c00392{left:536.850000px;}
.xc0_c00392{left:540.000000px;}
.x135_c00392{left:543.000000px;}
.x109_c00392{left:544.050000px;}
.x131_c00392{left:545.250000px;}
.xd1_c00392{left:546.450000px;}
.x116_c00392{left:548.400000px;}
.xb1_c00392{left:550.950000px;}
.x129_c00392{left:552.000000px;}
.xf8_c00392{left:555.450000px;}
.xa2_c00392{left:557.400000px;}
.xd8_c00392{left:558.450000px;}
.x12c_c00392{left:559.950000px;}
.x133_c00392{left:563.250000px;}
.xa9_c00392{left:564.900000px;}
.xd2_c00392{left:567.000000px;}
.xbb_c00392{left:568.800000px;}
.xe9_c00392{left:569.850000px;}
.xb6_c00392{left:571.500000px;}
.xaa_c00392{left:573.900000px;}
.x13c_c00392{left:574.950000px;}
.xf4_c00392{left:579.450000px;}
.x139_c00392{left:580.950000px;}
.x134_c00392{left:583.350000px;}
.x11c_c00392{left:584.550000px;}
.xc7_c00392{left:585.750000px;}
.xd9_c00392{left:587.550000px;}
.x136_c00392{left:589.050000px;}
.x110_c00392{left:590.250000px;}
.xcc_c00392{left:591.900000px;}
.xe6_c00392{left:593.700000px;}
.x10a_c00392{left:595.200000px;}
.xfc_c00392{left:597.600000px;}
.xc1_c00392{left:599.700000px;}
.x107_c00392{left:600.750000px;}
.x104_c00392{left:602.100000px;}
.x122_c00392{left:605.850000px;}
.xf9_c00392{left:608.250000px;}
.xe3_c00392{left:610.200000px;}
.xa3_c00392{left:611.700000px;}
.xbc_c00392{left:613.050000px;}
.x13b_c00392{left:614.550000px;}
.xe7_c00392{left:616.350000px;}
.xfa_c00392{left:618.000000px;}
.x137_c00392{left:619.650000px;}
.xa4_c00392{left:622.500000px;}
.x105_c00392{left:624.000000px;}
.xab_c00392{left:625.800000px;}
.xfb_c00392{left:627.000000px;}
.xb2_c00392{left:628.650000px;}
.xda_c00392{left:629.700000px;}
.xbd_c00392{left:631.050000px;}
.xe4_c00392{left:632.550000px;}
.x13d_c00392{left:636.900000px;}
.xc2_c00392{left:639.600000px;}
.xa5_c00392{left:640.800000px;}
.xef_c00392{left:642.900000px;}
.xcd_c00392{left:644.400000px;}
.x13e_c00392{left:645.600000px;}
.xdb_c00392{left:648.750000px;}
.x13f_c00392{left:649.800000px;}
.xd3_c00392{left:651.600000px;}
.x10b_c00392{left:654.300000px;}
.x101_c00392{left:657.150000px;}
.xac_c00392{left:659.700000px;}
.x125_c00392{left:662.100000px;}
.xf5_c00392{left:664.050000px;}
.xb7_c00392{left:666.150000px;}
.x141_c00392{left:668.100000px;}
.x123_c00392{left:670.050000px;}
.xdc_c00392{left:671.100000px;}
.x12e_c00392{left:672.150000px;}
.xbe_c00392{left:675.300000px;}
.x11f_c00392{left:676.350000px;}
.xb3_c00392{left:678.000000px;}
.xc8_c00392{left:679.050000px;}
.x102_c00392{left:681.600000px;}
.x113_c00392{left:684.150000px;}
.xf0_c00392{left:685.350000px;}
.xdd_c00392{left:687.600000px;}
.x126_c00392{left:692.700000px;}
.x111_c00392{left:694.200000px;}
.x117_c00392{left:695.550000px;}
.xd4_c00392{left:696.600000px;}
.x12f_c00392{left:698.850000px;}
.xad_c00392{left:700.800000px;}
.xfd_c00392{left:702.600000px;}
.xf1_c00392{left:704.850000px;}
.xa6_c00392{left:706.350000px;}
.xc3_c00392{left:709.050000px;}
.xb8_c00392{left:711.900000px;}
.xea_c00392{left:714.450000px;}
.xae_c00392{left:717.000000px;}
.xc4_c00392{left:719.850000px;}
.xf6_c00392{left:722.700000px;}
.x11a_c00392{left:728.550000px;}
.xce_c00392{left:729.750000px;}
.x114_c00392{left:731.250000px;}
.xfe_c00392{left:732.450000px;}
.xbf_c00392{left:735.450000px;}
.x10c_c00392{left:736.800000px;}
.xb4_c00392{left:738.450000px;}
.xde_c00392{left:741.150000px;}
.x143_c00392{left:742.350000px;}
.xd5_c00392{left:743.400000px;}
.xc9_c00392{left:744.900000px;}
.x2_c00392{left:746.700000px;}
.x103_c00392{left:747.900000px;}
.x108_c00392{left:750.150000px;}
.xaf_c00392{left:753.750000px;}
.x11b_c00392{left:754.800000px;}
.xb9_c00392{left:756.150000px;}
.xff_c00392{left:757.350000px;}
.x11d_c00392{left:758.850000px;}
.x118_c00392{left:761.850000px;}
.x112_c00392{left:762.900000px;}
.x13a_c00392{left:765.300000px;}
.xcf_c00392{left:770.850000px;}
.x144_c00392{left:781.200000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws2_c00392{word-spacing:-18.211382pt;}
.ws3_c00392{word-spacing:-13.146497pt;}
.ws0_c00392{word-spacing:-8.654971pt;}
.ws4_c00392{word-spacing:-6.085890pt;}
.ws1_c00392{word-spacing:-3.320755pt;}
.ws8_c00392{word-spacing:-0.162703pt;}
.wsb_c00392{word-spacing:0.000000pt;}
.wsa_c00392{word-spacing:1.157694pt;}
.ws5_c00392{word-spacing:10.256410pt;}
.ws9_c00392{word-spacing:11.579992pt;}
.ws6_c00392{word-spacing:22.857143pt;}
.ws7_c00392{word-spacing:61.871345pt;}
._0_c00392{width:22.573099pt;}
.fs5_c00392{font-size:21.333333pt;}
.fs7_c00392{font-size:26.666667pt;}
.fs6_c00392{font-size:32.000000pt;}
.fs4_c00392{font-size:48.000000pt;}
.fs1_c00392{font-size:53.333333pt;}
.fs2_c00392{font-size:58.666667pt;}
.fs3_c00392{font-size:64.000000pt;}
.fs0_c00392{font-size:69.333333pt;}
.y0_c00392{bottom:0.000000pt;}
.y6e_c00392{bottom:163.866667pt;}
.y38_c00392{bottom:165.066667pt;}
.y68_c00392{bottom:180.666667pt;}
.y37_c00392{bottom:181.333333pt;}
.y67_c00392{bottom:196.933333pt;}
.y36_c00392{bottom:197.333333pt;}
.y66_c00392{bottom:212.933333pt;}
.y35_c00392{bottom:213.333333pt;}
.y65_c00392{bottom:228.933333pt;}
.y34_c00392{bottom:229.066667pt;}
.y64_c00392{bottom:244.933333pt;}
.y33_c00392{bottom:245.333333pt;}
.y63_c00392{bottom:260.933333pt;}
.y32_c00392{bottom:261.066667pt;}
.y62_c00392{bottom:276.933333pt;}
.y31_c00392{bottom:277.066667pt;}
.y61_c00392{bottom:292.666667pt;}
.y30_c00392{bottom:293.066667pt;}
.y60_c00392{bottom:308.666667pt;}
.y2f_c00392{bottom:309.066667pt;}
.y2e_c00392{bottom:325.066667pt;}
.y5f_c00392{bottom:331.333333pt;}
.y2d_c00392{bottom:341.333333pt;}
.y5e_c00392{bottom:344.400000pt;}
.y2c_c00392{bottom:357.066667pt;}
.y5d_c00392{bottom:357.200000pt;}
.y2b_c00392{bottom:373.066667pt;}
.y6d_c00392{bottom:381.066667pt;}
.y5c_c00392{bottom:381.866667pt;}
.y6c_c00392{bottom:382.400000pt;}
.y2a_c00392{bottom:388.800000pt;}
.y69_c00392{bottom:393.600000pt;}
.y6b_c00392{bottom:394.533333pt;}
.y5b_c00392{bottom:394.933333pt;}
.y6a_c00392{bottom:397.066667pt;}
.y29_c00392{bottom:404.800000pt;}
.y5a_c00392{bottom:408.000000pt;}
.y59_c00392{bottom:420.533333pt;}
.y28_c00392{bottom:420.800000pt;}
.y58_c00392{bottom:433.600000pt;}
.y27_c00392{bottom:437.066667pt;}
.y26_c00392{bottom:452.800000pt;}
.y57_c00392{bottom:455.600000pt;}
.y25_c00392{bottom:468.800000pt;}
.y56_c00392{bottom:471.866667pt;}
.y24_c00392{bottom:485.066667pt;}
.y55_c00392{bottom:487.600000pt;}
.y23_c00392{bottom:500.800000pt;}
.y54_c00392{bottom:503.600000pt;}
.y22_c00392{bottom:516.800000pt;}
.y53_c00392{bottom:519.600000pt;}
.y21_c00392{bottom:533.066667pt;}
.y52_c00392{bottom:535.333333pt;}
.y19_c00392{bottom:554.800000pt;}
.y51_c00392{bottom:555.200000pt;}
.y20_c00392{bottom:556.533333pt;}
.y18_c00392{bottom:567.333333pt;}
.y1f_c00392{bottom:568.000000pt;}
.y17_c00392{bottom:569.600000pt;}
.y50_c00392{bottom:571.466667pt;}
.y1e_c00392{bottom:581.200000pt;}
.y4f_c00392{bottom:587.200000pt;}
.y1d_c00392{bottom:593.333333pt;}
.y4e_c00392{bottom:603.466667pt;}
.y1c_c00392{bottom:606.133333pt;}
.y4d_c00392{bottom:619.200000pt;}
.y1b_c00392{bottom:620.533333pt;}
.y1a_c00392{bottom:631.733333pt;}
.y4c_c00392{bottom:634.933333pt;}
.y16_c00392{bottom:645.466667pt;}
.y4b_c00392{bottom:650.933333pt;}
.y15_c00392{bottom:659.200000pt;}
.y4a_c00392{bottom:667.200000pt;}
.y14_c00392{bottom:679.600000pt;}
.y49_c00392{bottom:682.933333pt;}
.y13_c00392{bottom:695.600000pt;}
.y48_c00392{bottom:702.666667pt;}
.y12_c00392{bottom:711.866667pt;}
.y47_c00392{bottom:727.333333pt;}
.y11_c00392{bottom:727.600000pt;}
.y10_c00392{bottom:743.600000pt;}
.yf_c00392{bottom:759.333333pt;}
.y46_c00392{bottom:759.600000pt;}
.y45_c00392{bottom:775.333333pt;}
.ye_c00392{bottom:778.533333pt;}
.yd_c00392{bottom:795.466667pt;}
.y44_c00392{bottom:811.200000pt;}
.yc_c00392{bottom:811.733333pt;}
.yb_c00392{bottom:827.733333pt;}
.y43_c00392{bottom:830.933333pt;}
.ya_c00392{bottom:843.466667pt;}
.y42_c00392{bottom:846.666667pt;}
.y9_c00392{bottom:859.466667pt;}
.y41_c00392{bottom:862.800000pt;}
.y8_c00392{bottom:875.466667pt;}
.y40_c00392{bottom:879.066667pt;}
.y3f_c00392{bottom:895.066667pt;}
.y7_c00392{bottom:895.333333pt;}
.y3e_c00392{bottom:910.800000pt;}
.y3d_c00392{bottom:926.800000pt;}
.y6_c00392{bottom:927.066667pt;}
.y3c_c00392{bottom:943.066667pt;}
.y5_c00392{bottom:943.333333pt;}
.y3b_c00392{bottom:959.066667pt;}
.y4_c00392{bottom:974.133333pt;}
.y3a_c00392{bottom:975.066667pt;}
.y39_c00392{bottom:991.066667pt;}
.y3_c00392{bottom:991.733333pt;}
.y2_c00392{bottom:1014.666667pt;}
.y1_c00392{bottom:1015.333333pt;}
.h7_c00392{height:21.333333pt;}
.h9_c00392{height:26.666667pt;}
.h8_c00392{height:32.000000pt;}
.h6_c00392{height:48.000000pt;}
.h3_c00392{height:53.333333pt;}
.h4_c00392{height:58.666667pt;}
.h5_c00392{height:64.000000pt;}
.h2_c00392{height:69.333333pt;}
.h1_c00392{height:1126.666667pt;}
.h0_c00392{height:1126.719971pt;}
.w0_c00392{width:853.760009pt;}
.w1_c00392{width:854.000000pt;}
.x0_c00392{left:0.000000pt;}
.x5e_c00392{left:65.333333pt;}
.x10_c00392{left:66.533333pt;}
.x1c_c00392{left:68.533333pt;}
.x62_c00392{left:78.133333pt;}
.x3_c00392{left:79.066667pt;}
.x6e_c00392{left:80.266667pt;}
.x4b_c00392{left:81.333333pt;}
.xc_c00392{left:82.800000pt;}
.x2c_c00392{left:83.733333pt;}
.x11_c00392{left:89.600000pt;}
.x65_c00392{left:91.200000pt;}
.x67_c00392{left:96.533333pt;}
.x22_c00392{left:99.866667pt;}
.x43_c00392{left:104.933333pt;}
.x1d_c00392{left:106.266667pt;}
.x8d_c00392{left:109.333333pt;}
.x66_c00392{left:110.400000pt;}
.x81_c00392{left:111.600000pt;}
.x54_c00392{left:112.533333pt;}
.x18_c00392{left:114.400000pt;}
.xd_c00392{left:115.733333pt;}
.x51_c00392{left:120.000000pt;}
.x4c_c00392{left:121.333333pt;}
.x55_c00392{left:122.800000pt;}
.x3c_c00392{left:124.666667pt;}
.x2d_c00392{left:126.000000pt;}
.x98_c00392{left:127.200000pt;}
.x6b_c00392{left:129.066667pt;}
.x38_c00392{left:131.066667pt;}
.x8e_c00392{left:133.066667pt;}
.xe_c00392{left:134.666667pt;}
.x27_c00392{left:136.133333pt;}
.x1e_c00392{left:137.600000pt;}
.x44_c00392{left:140.533333pt;}
.x6c_c00392{left:141.733333pt;}
.x82_c00392{left:142.666667pt;}
.x23_c00392{left:143.733333pt;}
.x32_c00392{left:146.533333pt;}
.xf_c00392{left:149.066667pt;}
.x7c_c00392{left:150.933333pt;}
.x12_c00392{left:152.933333pt;}
.x8b_c00392{left:153.866667pt;}
.x4d_c00392{left:154.933333pt;}
.x3d_c00392{left:158.266667pt;}
.x7e_c00392{left:160.000000pt;}
.x2e_c00392{left:160.933333pt;}
.x94_c00392{left:164.266667pt;}
.x45_c00392{left:167.066667pt;}
.x19_c00392{left:169.066667pt;}
.x59_c00392{left:170.000000pt;}
.x4_c00392{left:170.933333pt;}
.x73_c00392{left:173.866667pt;}
.x33_c00392{left:175.066667pt;}
.x39_c00392{left:177.200000pt;}
.x7f_c00392{left:178.533333pt;}
.x5_c00392{left:179.866667pt;}
.x79_c00392{left:181.066667pt;}
.x2f_c00392{left:182.400000pt;}
.x24_c00392{left:183.733333pt;}
.x52_c00392{left:188.133333pt;}
.x63_c00392{left:190.133333pt;}
.x1f_c00392{left:192.666667pt;}
.x13_c00392{left:195.200000pt;}
.x6f_c00392{left:196.800000pt;}
.x34_c00392{left:198.133333pt;}
.x91_c00392{left:199.466667pt;}
.x56_c00392{left:200.800000pt;}
.x1a_c00392{left:202.000000pt;}
.x3e_c00392{left:204.000000pt;}
.x4e_c00392{left:205.866667pt;}
.x5d_c00392{left:207.466667pt;}
.x28_c00392{left:208.800000pt;}
.x80_c00392{left:211.466667pt;}
.x86_c00392{left:212.533333pt;}
.x6_c00392{left:213.733333pt;}
.x7b_c00392{left:215.066667pt;}
.x25_c00392{left:216.400000pt;}
.x30_c00392{left:218.533333pt;}
.x7d_c00392{left:220.000000pt;}
.x9c_c00392{left:221.066667pt;}
.x95_c00392{left:224.133333pt;}
.x14_c00392{left:225.333333pt;}
.x7_c00392{left:227.466667pt;}
.x83_c00392{left:229.066667pt;}
.x64_c00392{left:231.466667pt;}
.x74_c00392{left:233.333333pt;}
.x87_c00392{left:234.266667pt;}
.x8f_c00392{left:236.533333pt;}
.x3f_c00392{left:237.866667pt;}
.x35_c00392{left:239.733333pt;}
.x70_c00392{left:240.666667pt;}
.x88_c00392{left:245.733333pt;}
.x71_c00392{left:247.733333pt;}
.x29_c00392{left:250.133333pt;}
.x46_c00392{left:251.466667pt;}
.x20_c00392{left:252.533333pt;}
.x90_c00392{left:253.466667pt;}
.x1b_c00392{left:258.666667pt;}
.x84_c00392{left:261.066667pt;}
.x40_c00392{left:264.133333pt;}
.x4f_c00392{left:265.333333pt;}
.x53_c00392{left:266.800000pt;}
.x15_c00392{left:268.533333pt;}
.x9d_c00392{left:269.733333pt;}
.x5f_c00392{left:271.466667pt;}
.x92_c00392{left:272.666667pt;}
.x31_c00392{left:277.466667pt;}
.x8a_c00392{left:280.933333pt;}
.x7a_c00392{left:282.266667pt;}
.x1_c00392{left:283.200000pt;}
.x57_c00392{left:284.266667pt;}
.x77_c00392{left:285.200000pt;}
.x2a_c00392{left:287.600000pt;}
.x75_c00392{left:289.066667pt;}
.x47_c00392{left:290.533333pt;}
.x96_c00392{left:292.133333pt;}
.x5a_c00392{left:294.133333pt;}
.x8_c00392{left:295.333333pt;}
.x72_c00392{left:298.000000pt;}
.x3a_c00392{left:300.400000pt;}
.x48_c00392{left:301.466667pt;}
.x36_c00392{left:302.533333pt;}
.x21_c00392{left:304.400000pt;}
.x6d_c00392{left:305.333333pt;}
.x41_c00392{left:308.666667pt;}
.x97_c00392{left:310.000000pt;}
.x2b_c00392{left:310.933333pt;}
.x99_c00392{left:311.866667pt;}
.x58_c00392{left:314.400000pt;}
.x50_c00392{left:316.533333pt;}
.x5b_c00392{left:318.800000pt;}
.x9_c00392{left:320.933333pt;}
.x60_c00392{left:322.933333pt;}
.x89_c00392{left:324.400000pt;}
.x8c_c00392{left:326.000000pt;}
.x49_c00392{left:328.400000pt;}
.x68_c00392{left:329.866667pt;}
.x16_c00392{left:330.933333pt;}
.x3b_c00392{left:333.333333pt;}
.x37_c00392{left:335.866667pt;}
.x78_c00392{left:336.800000pt;}
.xa_c00392{left:339.200000pt;}
.x93_c00392{left:343.066667pt;}
.x76_c00392{left:344.000000pt;}
.x42_c00392{left:345.733333pt;}
.x9b_c00392{left:347.066667pt;}
.x26_c00392{left:349.200000pt;}
.x17_c00392{left:351.466667pt;}
.x61_c00392{left:353.066667pt;}
.x6a_c00392{left:354.133333pt;}
.x69_c00392{left:355.200000pt;}
.xb_c00392{left:356.133333pt;}
.x4a_c00392{left:358.133333pt;}
.x9a_c00392{left:359.466667pt;}
.x85_c00392{left:360.933333pt;}
.x5c_c00392{left:362.933333pt;}
.x124_c00392{left:383.733333pt;}
.x115_c00392{left:385.600000pt;}
.xe0_c00392{left:386.533333pt;}
.xf2_c00392{left:387.466667pt;}
.x127_c00392{left:396.533333pt;}
.x138_c00392{left:398.133333pt;}
.x120_c00392{left:399.333333pt;}
.x11e_c00392{left:400.266667pt;}
.xeb_c00392{left:401.200000pt;}
.x10d_c00392{left:402.133333pt;}
.x9e_c00392{left:403.200000pt;}
.x132_c00392{left:408.266667pt;}
.x12a_c00392{left:409.200000pt;}
.xc5_c00392{left:418.000000pt;}
.x9f_c00392{left:418.933333pt;}
.xee_c00392{left:419.866667pt;}
.xa7_c00392{left:420.800000pt;}
.x106_c00392{left:422.000000pt;}
.x130_c00392{left:424.400000pt;}
.x142_c00392{left:425.600000pt;}
.xf3_c00392{left:427.466667pt;}
.x12b_c00392{left:428.666667pt;}
.xd6_c00392{left:429.733333pt;}
.x121_c00392{left:430.666667pt;}
.x128_c00392{left:432.666667pt;}
.xa0_c00392{left:437.200000pt;}
.x10e_c00392{left:438.266667pt;}
.xe1_c00392{left:440.000000pt;}
.x100_c00392{left:442.133333pt;}
.xec_c00392{left:443.066667pt;}
.xe5_c00392{left:445.733333pt;}
.xca_c00392{left:447.733333pt;}
.x12d_c00392{left:448.666667pt;}
.xd0_c00392{left:450.266667pt;}
.xb5_c00392{left:452.000000pt;}
.xdf_c00392{left:453.733333pt;}
.xba_c00392{left:455.733333pt;}
.x119_c00392{left:456.666667pt;}
.xe2_c00392{left:457.600000pt;}
.x140_c00392{left:458.533333pt;}
.xa8_c00392{left:460.533333pt;}
.xd7_c00392{left:462.133333pt;}
.x10f_c00392{left:463.200000pt;}
.xed_c00392{left:464.533333pt;}
.xcb_c00392{left:465.600000pt;}
.xe8_c00392{left:467.200000pt;}
.xc6_c00392{left:470.800000pt;}
.xb0_c00392{left:472.400000pt;}
.xf7_c00392{left:474.266667pt;}
.xa1_c00392{left:477.200000pt;}
.xc0_c00392{left:480.000000pt;}
.x135_c00392{left:482.666667pt;}
.x109_c00392{left:483.600000pt;}
.x131_c00392{left:484.666667pt;}
.xd1_c00392{left:485.733333pt;}
.x116_c00392{left:487.466667pt;}
.xb1_c00392{left:489.733333pt;}
.x129_c00392{left:490.666667pt;}
.xf8_c00392{left:493.733333pt;}
.xa2_c00392{left:495.466667pt;}
.xd8_c00392{left:496.400000pt;}
.x12c_c00392{left:497.733333pt;}
.x133_c00392{left:500.666667pt;}
.xa9_c00392{left:502.133333pt;}
.xd2_c00392{left:504.000000pt;}
.xbb_c00392{left:505.600000pt;}
.xe9_c00392{left:506.533333pt;}
.xb6_c00392{left:508.000000pt;}
.xaa_c00392{left:510.133333pt;}
.x13c_c00392{left:511.066667pt;}
.xf4_c00392{left:515.066667pt;}
.x139_c00392{left:516.400000pt;}
.x134_c00392{left:518.533333pt;}
.x11c_c00392{left:519.600000pt;}
.xc7_c00392{left:520.666667pt;}
.xd9_c00392{left:522.266667pt;}
.x136_c00392{left:523.600000pt;}
.x110_c00392{left:524.666667pt;}
.xcc_c00392{left:526.133333pt;}
.xe6_c00392{left:527.733333pt;}
.x10a_c00392{left:529.066667pt;}
.xfc_c00392{left:531.200000pt;}
.xc1_c00392{left:533.066667pt;}
.x107_c00392{left:534.000000pt;}
.x104_c00392{left:535.200000pt;}
.x122_c00392{left:538.533333pt;}
.xf9_c00392{left:540.666667pt;}
.xe3_c00392{left:542.400000pt;}
.xa3_c00392{left:543.733333pt;}
.xbc_c00392{left:544.933333pt;}
.x13b_c00392{left:546.266667pt;}
.xe7_c00392{left:547.866667pt;}
.xfa_c00392{left:549.333333pt;}
.x137_c00392{left:550.800000pt;}
.xa4_c00392{left:553.333333pt;}
.x105_c00392{left:554.666667pt;}
.xab_c00392{left:556.266667pt;}
.xfb_c00392{left:557.333333pt;}
.xb2_c00392{left:558.800000pt;}
.xda_c00392{left:559.733333pt;}
.xbd_c00392{left:560.933333pt;}
.xe4_c00392{left:562.266667pt;}
.x13d_c00392{left:566.133333pt;}
.xc2_c00392{left:568.533333pt;}
.xa5_c00392{left:569.600000pt;}
.xef_c00392{left:571.466667pt;}
.xcd_c00392{left:572.800000pt;}
.x13e_c00392{left:573.866667pt;}
.xdb_c00392{left:576.666667pt;}
.x13f_c00392{left:577.600000pt;}
.xd3_c00392{left:579.200000pt;}
.x10b_c00392{left:581.600000pt;}
.x101_c00392{left:584.133333pt;}
.xac_c00392{left:586.400000pt;}
.x125_c00392{left:588.533333pt;}
.xf5_c00392{left:590.266667pt;}
.xb7_c00392{left:592.133333pt;}
.x141_c00392{left:593.866667pt;}
.x123_c00392{left:595.600000pt;}
.xdc_c00392{left:596.533333pt;}
.x12e_c00392{left:597.466667pt;}
.xbe_c00392{left:600.266667pt;}
.x11f_c00392{left:601.200000pt;}
.xb3_c00392{left:602.666667pt;}
.xc8_c00392{left:603.600000pt;}
.x102_c00392{left:605.866667pt;}
.x113_c00392{left:608.133333pt;}
.xf0_c00392{left:609.200000pt;}
.xdd_c00392{left:611.200000pt;}
.x126_c00392{left:615.733333pt;}
.x111_c00392{left:617.066667pt;}
.x117_c00392{left:618.266667pt;}
.xd4_c00392{left:619.200000pt;}
.x12f_c00392{left:621.200000pt;}
.xad_c00392{left:622.933333pt;}
.xfd_c00392{left:624.533333pt;}
.xf1_c00392{left:626.533333pt;}
.xa6_c00392{left:627.866667pt;}
.xc3_c00392{left:630.266667pt;}
.xb8_c00392{left:632.800000pt;}
.xea_c00392{left:635.066667pt;}
.xae_c00392{left:637.333333pt;}
.xc4_c00392{left:639.866667pt;}
.xf6_c00392{left:642.400000pt;}
.x11a_c00392{left:647.600000pt;}
.xce_c00392{left:648.666667pt;}
.x114_c00392{left:650.000000pt;}
.xfe_c00392{left:651.066667pt;}
.xbf_c00392{left:653.733333pt;}
.x10c_c00392{left:654.933333pt;}
.xb4_c00392{left:656.400000pt;}
.xde_c00392{left:658.800000pt;}
.x143_c00392{left:659.866667pt;}
.xd5_c00392{left:660.800000pt;}
.xc9_c00392{left:662.133333pt;}
.x2_c00392{left:663.733333pt;}
.x103_c00392{left:664.800000pt;}
.x108_c00392{left:666.800000pt;}
.xaf_c00392{left:670.000000pt;}
.x11b_c00392{left:670.933333pt;}
.xb9_c00392{left:672.133333pt;}
.xff_c00392{left:673.200000pt;}
.x11d_c00392{left:674.533333pt;}
.x118_c00392{left:677.200000pt;}
.x112_c00392{left:678.133333pt;}
.x13a_c00392{left:680.266667pt;}
.xcf_c00392{left:685.200000pt;}
.x144_c00392{left:694.400000pt;}
}





/* 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_c00393 {
    display:none;
  }
  .loading-indicator_c00393.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00393 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_c00393 { 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_c00393" -> "#page-container .classname_c00393")
 */
.pf_c00393 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00393 { /* 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_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00393 { /* 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_c00393 { /* 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_c00393 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00393 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00393 {overflow:visible;}
  }
}
.c_c00393 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00393 { /* 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_c00393:after { /* webkit #35443 */
  content: '';
}
.t_c00393:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00393 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 */
}
.__c00393 { /* 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_c00393 { /* info for Javascript */
  display:none;
}
.l_c00393 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00393 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00393 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00393: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_c00393 {
    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_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00393.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_c00393 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00393;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.000000;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;}
.m105_c00393{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00393{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m33_c00393{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m87_c00393{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m117_c00393{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00393{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m82_c00393{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00393{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00393{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00393{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00393{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m118_c00393{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00393{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00393{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m9_c00393{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m56_c00393{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.me3_c00393{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00393{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m40_c00393{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00393{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00393{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m60_c00393{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m100_c00393{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m92_c00393{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00393{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.maa_c00393{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m103_c00393{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00393{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c00393{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00393{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00393{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m37_c00393{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m46_c00393{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m112_c00393{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m26_c00393{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m49_c00393{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00393{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m39_c00393{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m30_c00393{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m57_c00393{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00393{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.md5_c00393{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.me9_c00393{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m84_c00393{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m12_c00393{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.mca_c00393{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00393{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m23_c00393{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00393{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m15_c00393{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m80_c00393{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00393{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00393{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mac_c00393{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m107_c00393{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m7_c00393{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m79_c00393{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m21_c00393{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me_c00393{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00393{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m18_c00393{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m31_c00393{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00393{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m28_c00393{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00393{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m25_c00393{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m61_c00393{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me5_c00393{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m108_c00393{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00393{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00393{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00393{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m62_c00393{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00393{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m76_c00393{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.meb_c00393{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mce_c00393{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mde_c00393{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.md4_c00393{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00393{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m17_c00393{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00393{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00393{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00393{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00393{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00393{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00393{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m51_c00393{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md2_c00393{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m43_c00393{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00393{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00393{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mea_c00393{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.med_c00393{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m96_c00393{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md8_c00393{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00393{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00393{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m67_c00393{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8_c00393{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m102_c00393{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00393{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m50_c00393{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me1_c00393{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m47_c00393{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb_c00393{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mec_c00393{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00393{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00393{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.md3_c00393{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00393{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m106_c00393{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m48_c00393{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me7_c00393{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mba_c00393{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2_c00393{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00393{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md9_c00393{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.maf_c00393{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m24_c00393{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4_c00393{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.me0_c00393{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00393{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00393{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mae_c00393{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m34_c00393{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m65_c00393{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m75_c00393{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00393{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m22_c00393{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00393{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00393{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00393{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m81_c00393{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m14_c00393{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00393{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md7_c00393{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00393{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00393{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00393{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m41_c00393{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00393{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00393{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mef_c00393{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md6_c00393{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m95_c00393{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc_c00393{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m77_c00393{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m109_c00393{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5_c00393{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00393{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.me6_c00393{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m13_c00393{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00393{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00393{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00393{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m27_c00393{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m88_c00393{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00393{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00393{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00393{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00393{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3_c00393{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m64_c00393{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m52_c00393{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m113_c00393{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me8_c00393{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mad_c00393{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m91_c00393{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m55_c00393{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m78_c00393{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma_c00393{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mda_c00393{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00393{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m10_c00393{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md0_c00393{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m16_c00393{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me4_c00393{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00393{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m29_c00393{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m6_c00393{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md1_c00393{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m66_c00393{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m19_c00393{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m58_c00393{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00393{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m74_c00393{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00393{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m83_c00393{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m104_c00393{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m32_c00393{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m38_c00393{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m93_c00393{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00393{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00393{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mee_c00393{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00393{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00393{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00393{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mab_c00393{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m85_c00393{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00393{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00393{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00393{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00393{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00393{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m44_c00393{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m20_c00393{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00393{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00393{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00393{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00393{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m11_c00393{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m89_c00393{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00393{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00393{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00393{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m68_c00393{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m72_c00393{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00393{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m90_c00393{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m42_c00393{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00393{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m59_c00393{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m114_c00393{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00393{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00393{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00393{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf_c00393{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00393{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00393{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00393{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00393{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00393{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m73_c00393{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00393{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00393{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00393{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m53_c00393{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m97_c00393{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m94_c00393{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00393{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00393{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);}
.m1c_c00393{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m98_c00393{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m116_c00393{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00393{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00393{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m54_c00393{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00393{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m86_c00393{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00393{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m71_c00393{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.me2_c00393{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m110_c00393{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00393{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mff_c00393{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m36_c00393{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00393{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00393{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00393{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m70_c00393{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m45_c00393{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m115_c00393{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m119_c00393{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00393{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00393{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m111_c00393{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00393{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00393{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00393{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00393{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00393{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m35_c00393{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00393{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00393{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00393{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00393{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m101_c00393{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);}
.m99_c00393{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m63_c00393{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m69_c00393{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls1_c00393{letter-spacing:0.000000px;}
.ls0_c00393{letter-spacing:70.000000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{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__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00393{word-spacing:-100.000000px;}
.ws8_c00393{word-spacing:-8.055556px;}
.ws5_c00393{word-spacing:-4.407821px;}
.ws6_c00393{word-spacing:-3.324841px;}
.wsb_c00393{word-spacing:0.000000px;}
.ws0_c00393{word-spacing:1.625000px;}
.ws7_c00393{word-spacing:3.985075px;}
.ws4_c00393{word-spacing:22.142857px;}
.ws9_c00393{word-spacing:23.211796px;}
.ws2_c00393{word-spacing:25.714286px;}
.ws1_c00393{word-spacing:29.285714px;}
.wsa_c00393{word-spacing:39.750000px;}
._2_c00393{margin-left:-70.000000px;}
._0_c00393{width:59.285714px;}
._1_c00393{width:321.785714px;}
.fc0_c00393{color:transparent;}
.fs5_c00393{font-size:42.000000px;}
.fs4_c00393{font-size:54.000000px;}
.fs3_c00393{font-size:60.000000px;}
.fs2_c00393{font-size:66.000000px;}
.fs1_c00393{font-size:72.000000px;}
.fs0_c00393{font-size:84.000000px;}
.y0_c00393{bottom:0.000000px;}
.y6a_c00393{bottom:193.350000px;}
.y36_c00393{bottom:193.500000px;}
.y69_c00393{bottom:208.050000px;}
.y35_c00393{bottom:211.500000px;}
.y68_c00393{bottom:222.450000px;}
.y34_c00393{bottom:229.200000px;}
.y67_c00393{bottom:236.100000px;}
.y33_c00393{bottom:246.900000px;}
.y66_c00393{bottom:252.300000px;}
.y32_c00393{bottom:264.600000px;}
.y65_c00393{bottom:271.050000px;}
.y31_c00393{bottom:282.300000px;}
.y64_c00393{bottom:289.500000px;}
.y30_c00393{bottom:300.000000px;}
.y63_c00393{bottom:306.600000px;}
.y2f_c00393{bottom:318.000000px;}
.y62_c00393{bottom:324.300000px;}
.y2e_c00393{bottom:336.000000px;}
.y61_c00393{bottom:342.000000px;}
.y2d_c00393{bottom:354.300000px;}
.y60_c00393{bottom:359.700000px;}
.y2c_c00393{bottom:372.600000px;}
.y5f_c00393{bottom:377.700000px;}
.y2b_c00393{bottom:390.300000px;}
.y5e_c00393{bottom:395.700000px;}
.y2a_c00393{bottom:408.600000px;}
.y5d_c00393{bottom:416.850000px;}
.y29_c00393{bottom:429.150000px;}
.y5c_c00393{bottom:435.900000px;}
.y28_c00393{bottom:445.050000px;}
.y5b_c00393{bottom:453.900000px;}
.y27_c00393{bottom:459.450000px;}
.y5a_c00393{bottom:471.900000px;}
.y26_c00393{bottom:474.150000px;}
.y25_c00393{bottom:488.550000px;}
.y59_c00393{bottom:489.600000px;}
.y24_c00393{bottom:501.450000px;}
.y58_c00393{bottom:511.950000px;}
.y23_c00393{bottom:519.450000px;}
.y22_c00393{bottom:531.000000px;}
.y57_c00393{bottom:534.300000px;}
.y21_c00393{bottom:547.200000px;}
.y56_c00393{bottom:556.500000px;}
.y20_c00393{bottom:566.100000px;}
.y55_c00393{bottom:574.500000px;}
.y1f_c00393{bottom:583.800000px;}
.y54_c00393{bottom:592.500000px;}
.y1e_c00393{bottom:601.500000px;}
.y53_c00393{bottom:610.950000px;}
.y1d_c00393{bottom:619.500000px;}
.y52_c00393{bottom:628.500000px;}
.y1c_c00393{bottom:637.200000px;}
.y51_c00393{bottom:650.850000px;}
.y1b_c00393{bottom:655.200000px;}
.y50_c00393{bottom:668.850000px;}
.y1a_c00393{bottom:673.200000px;}
.y4f_c00393{bottom:686.850000px;}
.y19_c00393{bottom:695.100000px;}
.y4e_c00393{bottom:704.850000px;}
.y18_c00393{bottom:713.400000px;}
.y4d_c00393{bottom:723.150000px;}
.y17_c00393{bottom:731.100000px;}
.y4c_c00393{bottom:740.850000px;}
.y16_c00393{bottom:749.100000px;}
.y4b_c00393{bottom:758.550000px;}
.y15_c00393{bottom:771.450000px;}
.y4a_c00393{bottom:776.850000px;}
.y14_c00393{bottom:790.200000px;}
.y49_c00393{bottom:794.850000px;}
.y13_c00393{bottom:808.200000px;}
.y48_c00393{bottom:812.850000px;}
.y12_c00393{bottom:826.200000px;}
.y47_c00393{bottom:830.850000px;}
.y11_c00393{bottom:844.200000px;}
.y46_c00393{bottom:848.850000px;}
.y10_c00393{bottom:862.200000px;}
.y45_c00393{bottom:867.150000px;}
.yf_c00393{bottom:882.000000px;}
.y44_c00393{bottom:884.850000px;}
.y43_c00393{bottom:902.850000px;}
.ye_c00393{bottom:903.300000px;}
.y42_c00393{bottom:921.150000px;}
.yd_c00393{bottom:927.000000px;}
.y41_c00393{bottom:939.150000px;}
.yc_c00393{bottom:947.850000px;}
.y40_c00393{bottom:957.150000px;}
.yb_c00393{bottom:968.100000px;}
.y3f_c00393{bottom:975.150000px;}
.ya_c00393{bottom:989.250000px;}
.y3e_c00393{bottom:993.150000px;}
.y9_c00393{bottom:1010.100000px;}
.y3d_c00393{bottom:1011.150000px;}
.y8_c00393{bottom:1028.400000px;}
.y3c_c00393{bottom:1029.150000px;}
.y7_c00393{bottom:1046.400000px;}
.y3b_c00393{bottom:1047.150000px;}
.y6_c00393{bottom:1064.400000px;}
.y3a_c00393{bottom:1065.150000px;}
.y5_c00393{bottom:1082.100000px;}
.y39_c00393{bottom:1082.850000px;}
.y4_c00393{bottom:1100.400000px;}
.y38_c00393{bottom:1101.150000px;}
.y3_c00393{bottom:1118.100000px;}
.y37_c00393{bottom:1118.850000px;}
.y1_c00393{bottom:1142.700000px;}
.y2_c00393{bottom:1145.550000px;}
.h7_c00393{height:42.000000px;}
.h6_c00393{height:54.000000px;}
.h5_c00393{height:60.000000px;}
.h4_c00393{height:66.000000px;}
.h3_c00393{height:72.000000px;}
.h2_c00393{height:84.000000px;}
.h1_c00393{height:1271.250000px;}
.h0_c00393{height:1271.519990px;}
.w0_c00393{width:960.480010px;}
.w1_c00393{width:960.750000px;}
.x0_c00393{left:0.000000px;}
.x82_c00393{left:168.900000px;}
.x1_c00393{left:174.300000px;}
.x32_c00393{left:175.650000px;}
.x38_c00393{left:178.200000px;}
.x91_c00393{left:180.300000px;}
.x3_c00393{left:191.550000px;}
.x20_c00393{left:192.600000px;}
.x31_c00393{left:194.100000px;}
.x57_c00393{left:195.150000px;}
.x79_c00393{left:196.800000px;}
.x7f_c00393{left:197.850000px;}
.x95_c00393{left:199.350000px;}
.x9d_c00393{left:200.850000px;}
.xa7_c00393{left:201.900000px;}
.x90_c00393{left:207.600000px;}
.x89_c00393{left:209.100000px;}
.x13_c00393{left:213.900000px;}
.x5a_c00393{left:215.250000px;}
.x6c_c00393{left:217.050000px;}
.xd_c00393{left:219.000000px;}
.x47_c00393{left:221.400000px;}
.xa8_c00393{left:223.050000px;}
.x7a_c00393{left:224.850000px;}
.x1a_c00393{left:226.950000px;}
.x76_c00393{left:229.650000px;}
.x4_c00393{left:231.900000px;}
.x86_c00393{left:233.700000px;}
.x33_c00393{left:234.750000px;}
.x9b_c00393{left:237.600000px;}
.x67_c00393{left:240.300000px;}
.x92_c00393{left:243.000000px;}
.x34_c00393{left:244.200000px;}
.x27_c00393{left:246.750000px;}
.xa3_c00393{left:249.300000px;}
.x50_c00393{left:250.500000px;}
.x5_c00393{left:252.450000px;}
.x39_c00393{left:254.250000px;}
.xa1_c00393{left:256.050000px;}
.x44_c00393{left:257.850000px;}
.x14_c00393{left:259.200000px;}
.x4d_c00393{left:260.850000px;}
.x28_c00393{left:262.950000px;}
.x7b_c00393{left:264.450000px;}
.x2f_c00393{left:266.850000px;}
.x72_c00393{left:268.050000px;}
.x80_c00393{left:271.650000px;}
.x1b_c00393{left:272.700000px;}
.x68_c00393{left:275.550000px;}
.xe_c00393{left:277.650000px;}
.x3c_c00393{left:279.750000px;}
.x21_c00393{left:281.850000px;}
.x5f_c00393{left:283.800000px;}
.x8e_c00393{left:285.300000px;}
.x96_c00393{left:287.850000px;}
.x58_c00393{left:289.050000px;}
.x88_c00393{left:290.550000px;}
.x48_c00393{left:291.900000px;}
.x81_c00393{left:294.300000px;}
.x8b_c00393{left:295.500000px;}
.x51_c00393{left:299.100000px;}
.xf_c00393{left:301.050000px;}
.x6d_c00393{left:303.150000px;}
.x1c_c00393{left:304.800000px;}
.x3d_c00393{left:306.450000px;}
.x6_c00393{left:307.500000px;}
.x22_c00393{left:309.900000px;}
.x49_c00393{left:310.950000px;}
.x73_c00393{left:312.750000px;}
.x5b_c00393{left:315.300000px;}
.x15_c00393{left:316.500000px;}
.x63_c00393{left:317.850000px;}
.x10_c00393{left:319.800000px;}
.xa4_c00393{left:321.000000px;}
.x29_c00393{left:322.650000px;}
.x52_c00393{left:325.800000px;}
.x30_c00393{left:327.300000px;}
.x7_c00393{left:328.350000px;}
.x9e_c00393{left:329.550000px;}
.x6e_c00393{left:332.250000px;}
.x3e_c00393{left:333.750000px;}
.x16_c00393{left:336.300000px;}
.x35_c00393{left:337.800000px;}
.x59_c00393{left:339.900000px;}
.x45_c00393{left:342.000000px;}
.x83_c00393{left:343.800000px;}
.x2a_c00393{left:346.050000px;}
.x23_c00393{left:351.600000px;}
.x69_c00393{left:354.450000px;}
.x4a_c00393{left:356.250000px;}
.x9c_c00393{left:357.450000px;}
.x2b_c00393{left:360.750000px;}
.x3f_c00393{left:361.800000px;}
.x53_c00393{left:366.900000px;}
.x77_c00393{left:368.550000px;}
.x1d_c00393{left:370.650000px;}
.x97_c00393{left:371.850000px;}
.x8_c00393{left:373.350000px;}
.x74_c00393{left:374.700000px;}
.x8c_c00393{left:376.650000px;}
.x6f_c00393{left:379.050000px;}
.x5c_c00393{left:381.150000px;}
.x4e_c00393{left:382.950000px;}
.x40_c00393{left:384.900000px;}
.x64_c00393{left:386.400000px;}
.x87_c00393{left:387.450000px;}
.x17_c00393{left:390.000000px;}
.x8f_c00393{left:391.500000px;}
.x9_c00393{left:393.150000px;}
.x11_c00393{left:394.950000px;}
.x54_c00393{left:396.000000px;}
.x5d_c00393{left:398.400000px;}
.x4b_c00393{left:400.200000px;}
.x7c_c00393{left:402.750000px;}
.x61_c00393{left:407.100000px;}
.x2c_c00393{left:408.300000px;}
.x36_c00393{left:409.350000px;}
.xa6_c00393{left:410.400000px;}
.x8d_c00393{left:412.650000px;}
.x60_c00393{left:414.300000px;}
.xa9_c00393{left:415.650000px;}
.x2d_c00393{left:417.300000px;}
.x3a_c00393{left:420.300000px;}
.x41_c00393{left:422.400000px;}
.x2_c00393{left:424.200000px;}
.x24_c00393{left:425.700000px;}
.x4f_c00393{left:428.700000px;}
.x65_c00393{left:430.350000px;}
.x70_c00393{left:431.550000px;}
.x1e_c00393{left:432.600000px;}
.x42_c00393{left:435.000000px;}
.xa_c00393{left:436.050000px;}
.x7d_c00393{left:438.000000px;}
.x93_c00393{left:439.350000px;}
.x99_c00393{left:441.300000px;}
.x71_c00393{left:444.150000px;}
.x18_c00393{left:445.500000px;}
.x6a_c00393{left:447.000000px;}
.x7e_c00393{left:448.500000px;}
.x5e_c00393{left:449.850000px;}
.x9a_c00393{left:451.050000px;}
.x2e_c00393{left:453.000000px;}
.x12_c00393{left:455.100000px;}
.xa2_c00393{left:457.650000px;}
.x62_c00393{left:459.750000px;}
.x43_c00393{left:460.950000px;}
.x78_c00393{left:462.600000px;}
.x25_c00393{left:464.550000px;}
.x84_c00393{left:467.250000px;}
.x55_c00393{left:469.500000px;}
.x1f_c00393{left:471.900000px;}
.xa5_c00393{left:472.950000px;}
.xb_c00393{left:474.900000px;}
.x46_c00393{left:476.250000px;}
.x3b_c00393{left:477.600000px;}
.x98_c00393{left:480.900000px;}
.xa0_c00393{left:482.100000px;}
.xc_c00393{left:486.450000px;}
.x26_c00393{left:488.700000px;}
.x56_c00393{left:493.200000px;}
.x94_c00393{left:495.150000px;}
.x4c_c00393{left:497.400000px;}
.x19_c00393{left:498.450000px;}
.x37_c00393{left:501.150000px;}
.x85_c00393{left:502.500000px;}
.x8a_c00393{left:505.350000px;}
.x66_c00393{left:506.700000px;}
.x6b_c00393{left:511.050000px;}
.x75_c00393{left:513.300000px;}
.x9f_c00393{left:516.900000px;}
.x126_c00393{left:538.950000px;}
.x136_c00393{left:540.900000px;}
.xaa_c00393{left:552.600000px;}
.xdd_c00393{left:553.950000px;}
.xeb_c00393{left:555.000000px;}
.x111_c00393{left:556.200000px;}
.x12c_c00393{left:557.250000px;}
.x143_c00393{left:558.600000px;}
.xab_c00393{left:564.450000px;}
.x107_c00393{left:571.050000px;}
.xde_c00393{left:575.850000px;}
.x144_c00393{left:576.900000px;}
.x132_c00393{left:579.300000px;}
.xd8_c00393{left:580.650000px;}
.x112_c00393{left:582.450000px;}
.xc4_c00393{left:583.950000px;}
.xfc_c00393{left:585.000000px;}
.x104_c00393{left:589.350000px;}
.xff_c00393{left:591.300000px;}
.xac_c00393{left:592.500000px;}
.x119_c00393{left:595.050000px;}
.xdf_c00393{left:597.150000px;}
.xe6_c00393{left:599.400000px;}
.x105_c00393{left:601.200000px;}
.xec_c00393{left:602.550000px;}
.xfd_c00393{left:604.500000px;}
.xf1_c00393{left:606.150000px;}
.xbc_c00393{left:607.200000px;}
.xc5_c00393{left:608.850000px;}
.xce_c00393{left:610.500000px;}
.x12d_c00393{left:612.000000px;}
.xb4_c00393{left:613.650000px;}
.x10b_c00393{left:615.450000px;}
.x130_c00393{left:617.400000px;}
.xf6_c00393{left:619.200000px;}
.x108_c00393{left:620.400000px;}
.x147_c00393{left:621.600000px;}
.xad_c00393{left:622.800000px;}
.x150_c00393{left:623.850000px;}
.x13b_c00393{left:626.100000px;}
.xcf_c00393{left:627.750000px;}
.xd9_c00393{left:629.250000px;}
.xbd_c00393{left:630.900000px;}
.x133_c00393{left:632.250000px;}
.xd4_c00393{left:634.650000px;}
.x122_c00393{left:635.700000px;}
.x11a_c00393{left:637.200000px;}
.xb5_c00393{left:638.550000px;}
.xf7_c00393{left:639.750000px;}
.x148_c00393{left:642.150000px;}
.x152_c00393{left:644.100000px;}
.xbe_c00393{left:646.800000px;}
.xe0_c00393{left:650.100000px;}
.xf2_c00393{left:651.150000px;}
.x14b_c00393{left:652.350000px;}
.x10e_c00393{left:653.400000px;}
.xc6_c00393{left:656.400000px;}
.xe1_c00393{left:658.050000px;}
.x13d_c00393{left:660.900000px;}
.xf8_c00393{left:663.450000px;}
.xd5_c00393{left:664.500000px;}
.x139_c00393{left:666.000000px;}
.x151_c00393{left:667.050000px;}
.x113_c00393{left:668.400000px;}
.xe7_c00393{left:671.400000px;}
.xae_c00393{left:672.450000px;}
.x131_c00393{left:673.650000px;}
.xf3_c00393{left:674.850000px;}
.x11b_c00393{left:677.850000px;}
.xc7_c00393{left:680.100000px;}
.xbf_c00393{left:684.900000px;}
.x123_c00393{left:686.100000px;}
.xb6_c00393{left:689.250000px;}
.x137_c00393{left:690.900000px;}
.x10f_c00393{left:691.950000px;}
.x141_c00393{left:694.800000px;}
.xaf_c00393{left:696.900000px;}
.xc8_c00393{left:700.650000px;}
.x117_c00393{left:703.050000px;}
.x101_c00393{left:704.400000px;}
.x134_c00393{left:705.750000px;}
.xf4_c00393{left:707.250000px;}
.xd0_c00393{left:710.100000px;}
.x121_c00393{left:711.300000px;}
.x10c_c00393{left:712.350000px;}
.xb0_c00393{left:713.400000px;}
.xf9_c00393{left:714.600000px;}
.x102_c00393{left:716.250000px;}
.x100_c00393{left:721.200000px;}
.x14c_c00393{left:722.550000px;}
.xe2_c00393{left:724.650000px;}
.x145_c00393{left:725.850000px;}
.xed_c00393{left:727.050000px;}
.x127_c00393{left:728.250000px;}
.xb7_c00393{left:729.600000px;}
.x138_c00393{left:733.800000px;}
.x109_c00393{left:734.850000px;}
.xc9_c00393{left:736.350000px;}
.x114_c00393{left:737.550000px;}
.x14d_c00393{left:739.500000px;}
.x106_c00393{left:740.850000px;}
.x124_c00393{left:741.900000px;}
.x13e_c00393{left:742.950000px;}
.xca_c00393{left:744.600000px;}
.xfa_c00393{left:745.950000px;}
.xd6_c00393{left:748.500000px;}
.xc0_c00393{left:750.000000px;}
.x13a_c00393{left:751.350000px;}
.x115_c00393{left:753.000000px;}
.xb1_c00393{left:755.850000px;}
.x103_c00393{left:757.350000px;}
.x11f_c00393{left:758.850000px;}
.xb8_c00393{left:762.750000px;}
.xee_c00393{left:764.100000px;}
.xcb_c00393{left:765.150000px;}
.x135_c00393{left:766.950000px;}
.x12e_c00393{left:768.150000px;}
.xe8_c00393{left:769.650000px;}
.xc1_c00393{left:770.850000px;}
.xda_c00393{left:772.200000px;}
.x13c_c00393{left:774.000000px;}
.x10a_c00393{left:775.200000px;}
.x110_c00393{left:776.550000px;}
.xe3_c00393{left:778.650000px;}
.x128_c00393{left:781.500000px;}
.xb9_c00393{left:782.850000px;}
.x125_c00393{left:783.900000px;}
.x129_c00393{left:785.250000px;}
.xd1_c00393{left:787.050000px;}
.x11c_c00393{left:789.150000px;}
.xfe_c00393{left:791.700000px;}
.x120_c00393{left:794.100000px;}
.x140_c00393{left:795.150000px;}
.xc2_c00393{left:796.800000px;}
.xe9_c00393{left:798.450000px;}
.xf5_c00393{left:799.650000px;}
.xef_c00393{left:800.850000px;}
.xd7_c00393{left:802.500000px;}
.xba_c00393{left:805.500000px;}
.xd2_c00393{left:808.950000px;}
.x153_c00393{left:810.300000px;}
.x116_c00393{left:814.500000px;}
.x10d_c00393{left:816.000000px;}
.x12f_c00393{left:818.250000px;}
.x13f_c00393{left:820.350000px;}
.xcc_c00393{left:823.050000px;}
.xe4_c00393{left:824.700000px;}
.x142_c00393{left:825.750000px;}
.xb2_c00393{left:826.800000px;}
.xfb_c00393{left:829.800000px;}
.xc3_c00393{left:832.050000px;}
.xcd_c00393{left:834.600000px;}
.xdb_c00393{left:837.300000px;}
.x154_c00393{left:838.350000px;}
.x11e_c00393{left:840.000000px;}
.xf0_c00393{left:841.200000px;}
.x149_c00393{left:843.000000px;}
.xe5_c00393{left:844.200000px;}
.xb3_c00393{left:846.900000px;}
.xdc_c00393{left:848.400000px;}
.x14a_c00393{left:851.700000px;}
.xea_c00393{left:852.750000px;}
.x12a_c00393{left:854.400000px;}
.x11d_c00393{left:856.050000px;}
.xd3_c00393{left:857.250000px;}
.xbb_c00393{left:859.200000px;}
.x156_c00393{left:863.250000px;}
.x118_c00393{left:865.050000px;}
.x12b_c00393{left:866.700000px;}
.x155_c00393{left:868.200000px;}
.x146_c00393{left:870.150000px;}
.x14e_c00393{left:871.350000px;}
.x14f_c00393{left:887.550000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls1_c00393{letter-spacing:0.000000pt;}
.ls0_c00393{letter-spacing:62.222222pt;}
.ws3_c00393{word-spacing:-88.888889pt;}
.ws8_c00393{word-spacing:-7.160494pt;}
.ws5_c00393{word-spacing:-3.918063pt;}
.ws6_c00393{word-spacing:-2.955414pt;}
.wsb_c00393{word-spacing:0.000000pt;}
.ws0_c00393{word-spacing:1.444444pt;}
.ws7_c00393{word-spacing:3.542289pt;}
.ws4_c00393{word-spacing:19.682540pt;}
.ws9_c00393{word-spacing:20.632708pt;}
.ws2_c00393{word-spacing:22.857143pt;}
.ws1_c00393{word-spacing:26.031746pt;}
.wsa_c00393{word-spacing:35.333333pt;}
._2_c00393{margin-left:-62.222222pt;}
._0_c00393{width:52.698413pt;}
._1_c00393{width:286.031746pt;}
.fs5_c00393{font-size:37.333333pt;}
.fs4_c00393{font-size:48.000000pt;}
.fs3_c00393{font-size:53.333333pt;}
.fs2_c00393{font-size:58.666667pt;}
.fs1_c00393{font-size:64.000000pt;}
.fs0_c00393{font-size:74.666667pt;}
.y0_c00393{bottom:0.000000pt;}
.y6a_c00393{bottom:171.866667pt;}
.y36_c00393{bottom:172.000000pt;}
.y69_c00393{bottom:184.933333pt;}
.y35_c00393{bottom:188.000000pt;}
.y68_c00393{bottom:197.733333pt;}
.y34_c00393{bottom:203.733333pt;}
.y67_c00393{bottom:209.866667pt;}
.y33_c00393{bottom:219.466667pt;}
.y66_c00393{bottom:224.266667pt;}
.y32_c00393{bottom:235.200000pt;}
.y65_c00393{bottom:240.933333pt;}
.y31_c00393{bottom:250.933333pt;}
.y64_c00393{bottom:257.333333pt;}
.y30_c00393{bottom:266.666667pt;}
.y63_c00393{bottom:272.533333pt;}
.y2f_c00393{bottom:282.666667pt;}
.y62_c00393{bottom:288.266667pt;}
.y2e_c00393{bottom:298.666667pt;}
.y61_c00393{bottom:304.000000pt;}
.y2d_c00393{bottom:314.933333pt;}
.y60_c00393{bottom:319.733333pt;}
.y2c_c00393{bottom:331.200000pt;}
.y5f_c00393{bottom:335.733333pt;}
.y2b_c00393{bottom:346.933333pt;}
.y5e_c00393{bottom:351.733333pt;}
.y2a_c00393{bottom:363.200000pt;}
.y5d_c00393{bottom:370.533333pt;}
.y29_c00393{bottom:381.466667pt;}
.y5c_c00393{bottom:387.466667pt;}
.y28_c00393{bottom:395.600000pt;}
.y5b_c00393{bottom:403.466667pt;}
.y27_c00393{bottom:408.400000pt;}
.y5a_c00393{bottom:419.466667pt;}
.y26_c00393{bottom:421.466667pt;}
.y25_c00393{bottom:434.266667pt;}
.y59_c00393{bottom:435.200000pt;}
.y24_c00393{bottom:445.733333pt;}
.y58_c00393{bottom:455.066667pt;}
.y23_c00393{bottom:461.733333pt;}
.y22_c00393{bottom:472.000000pt;}
.y57_c00393{bottom:474.933333pt;}
.y21_c00393{bottom:486.400000pt;}
.y56_c00393{bottom:494.666667pt;}
.y20_c00393{bottom:503.200000pt;}
.y55_c00393{bottom:510.666667pt;}
.y1f_c00393{bottom:518.933333pt;}
.y54_c00393{bottom:526.666667pt;}
.y1e_c00393{bottom:534.666667pt;}
.y53_c00393{bottom:543.066667pt;}
.y1d_c00393{bottom:550.666667pt;}
.y52_c00393{bottom:558.666667pt;}
.y1c_c00393{bottom:566.400000pt;}
.y51_c00393{bottom:578.533333pt;}
.y1b_c00393{bottom:582.400000pt;}
.y50_c00393{bottom:594.533333pt;}
.y1a_c00393{bottom:598.400000pt;}
.y4f_c00393{bottom:610.533333pt;}
.y19_c00393{bottom:617.866667pt;}
.y4e_c00393{bottom:626.533333pt;}
.y18_c00393{bottom:634.133333pt;}
.y4d_c00393{bottom:642.800000pt;}
.y17_c00393{bottom:649.866667pt;}
.y4c_c00393{bottom:658.533333pt;}
.y16_c00393{bottom:665.866667pt;}
.y4b_c00393{bottom:674.266667pt;}
.y15_c00393{bottom:685.733333pt;}
.y4a_c00393{bottom:690.533333pt;}
.y14_c00393{bottom:702.400000pt;}
.y49_c00393{bottom:706.533333pt;}
.y13_c00393{bottom:718.400000pt;}
.y48_c00393{bottom:722.533333pt;}
.y12_c00393{bottom:734.400000pt;}
.y47_c00393{bottom:738.533333pt;}
.y11_c00393{bottom:750.400000pt;}
.y46_c00393{bottom:754.533333pt;}
.y10_c00393{bottom:766.400000pt;}
.y45_c00393{bottom:770.800000pt;}
.yf_c00393{bottom:784.000000pt;}
.y44_c00393{bottom:786.533333pt;}
.y43_c00393{bottom:802.533333pt;}
.ye_c00393{bottom:802.933333pt;}
.y42_c00393{bottom:818.800000pt;}
.yd_c00393{bottom:824.000000pt;}
.y41_c00393{bottom:834.800000pt;}
.yc_c00393{bottom:842.533333pt;}
.y40_c00393{bottom:850.800000pt;}
.yb_c00393{bottom:860.533333pt;}
.y3f_c00393{bottom:866.800000pt;}
.ya_c00393{bottom:879.333333pt;}
.y3e_c00393{bottom:882.800000pt;}
.y9_c00393{bottom:897.866667pt;}
.y3d_c00393{bottom:898.800000pt;}
.y8_c00393{bottom:914.133333pt;}
.y3c_c00393{bottom:914.800000pt;}
.y7_c00393{bottom:930.133333pt;}
.y3b_c00393{bottom:930.800000pt;}
.y6_c00393{bottom:946.133333pt;}
.y3a_c00393{bottom:946.800000pt;}
.y5_c00393{bottom:961.866667pt;}
.y39_c00393{bottom:962.533333pt;}
.y4_c00393{bottom:978.133333pt;}
.y38_c00393{bottom:978.800000pt;}
.y3_c00393{bottom:993.866667pt;}
.y37_c00393{bottom:994.533333pt;}
.y1_c00393{bottom:1015.733333pt;}
.y2_c00393{bottom:1018.266667pt;}
.h7_c00393{height:37.333333pt;}
.h6_c00393{height:48.000000pt;}
.h5_c00393{height:53.333333pt;}
.h4_c00393{height:58.666667pt;}
.h3_c00393{height:64.000000pt;}
.h2_c00393{height:74.666667pt;}
.h1_c00393{height:1130.000000pt;}
.h0_c00393{height:1130.239991pt;}
.w0_c00393{width:853.760009pt;}
.w1_c00393{width:854.000000pt;}
.x0_c00393{left:0.000000pt;}
.x82_c00393{left:150.133333pt;}
.x1_c00393{left:154.933333pt;}
.x32_c00393{left:156.133333pt;}
.x38_c00393{left:158.400000pt;}
.x91_c00393{left:160.266667pt;}
.x3_c00393{left:170.266667pt;}
.x20_c00393{left:171.200000pt;}
.x31_c00393{left:172.533333pt;}
.x57_c00393{left:173.466667pt;}
.x79_c00393{left:174.933333pt;}
.x7f_c00393{left:175.866667pt;}
.x95_c00393{left:177.200000pt;}
.x9d_c00393{left:178.533333pt;}
.xa7_c00393{left:179.466667pt;}
.x90_c00393{left:184.533333pt;}
.x89_c00393{left:185.866667pt;}
.x13_c00393{left:190.133333pt;}
.x5a_c00393{left:191.333333pt;}
.x6c_c00393{left:192.933333pt;}
.xd_c00393{left:194.666667pt;}
.x47_c00393{left:196.800000pt;}
.xa8_c00393{left:198.266667pt;}
.x7a_c00393{left:199.866667pt;}
.x1a_c00393{left:201.733333pt;}
.x76_c00393{left:204.133333pt;}
.x4_c00393{left:206.133333pt;}
.x86_c00393{left:207.733333pt;}
.x33_c00393{left:208.666667pt;}
.x9b_c00393{left:211.200000pt;}
.x67_c00393{left:213.600000pt;}
.x92_c00393{left:216.000000pt;}
.x34_c00393{left:217.066667pt;}
.x27_c00393{left:219.333333pt;}
.xa3_c00393{left:221.600000pt;}
.x50_c00393{left:222.666667pt;}
.x5_c00393{left:224.400000pt;}
.x39_c00393{left:226.000000pt;}
.xa1_c00393{left:227.600000pt;}
.x44_c00393{left:229.200000pt;}
.x14_c00393{left:230.400000pt;}
.x4d_c00393{left:231.866667pt;}
.x28_c00393{left:233.733333pt;}
.x7b_c00393{left:235.066667pt;}
.x2f_c00393{left:237.200000pt;}
.x72_c00393{left:238.266667pt;}
.x80_c00393{left:241.466667pt;}
.x1b_c00393{left:242.400000pt;}
.x68_c00393{left:244.933333pt;}
.xe_c00393{left:246.800000pt;}
.x3c_c00393{left:248.666667pt;}
.x21_c00393{left:250.533333pt;}
.x5f_c00393{left:252.266667pt;}
.x8e_c00393{left:253.600000pt;}
.x96_c00393{left:255.866667pt;}
.x58_c00393{left:256.933333pt;}
.x88_c00393{left:258.266667pt;}
.x48_c00393{left:259.466667pt;}
.x81_c00393{left:261.600000pt;}
.x8b_c00393{left:262.666667pt;}
.x51_c00393{left:265.866667pt;}
.xf_c00393{left:267.600000pt;}
.x6d_c00393{left:269.466667pt;}
.x1c_c00393{left:270.933333pt;}
.x3d_c00393{left:272.400000pt;}
.x6_c00393{left:273.333333pt;}
.x22_c00393{left:275.466667pt;}
.x49_c00393{left:276.400000pt;}
.x73_c00393{left:278.000000pt;}
.x5b_c00393{left:280.266667pt;}
.x15_c00393{left:281.333333pt;}
.x63_c00393{left:282.533333pt;}
.x10_c00393{left:284.266667pt;}
.xa4_c00393{left:285.333333pt;}
.x29_c00393{left:286.800000pt;}
.x52_c00393{left:289.600000pt;}
.x30_c00393{left:290.933333pt;}
.x7_c00393{left:291.866667pt;}
.x9e_c00393{left:292.933333pt;}
.x6e_c00393{left:295.333333pt;}
.x3e_c00393{left:296.666667pt;}
.x16_c00393{left:298.933333pt;}
.x35_c00393{left:300.266667pt;}
.x59_c00393{left:302.133333pt;}
.x45_c00393{left:304.000000pt;}
.x83_c00393{left:305.600000pt;}
.x2a_c00393{left:307.600000pt;}
.x23_c00393{left:312.533333pt;}
.x69_c00393{left:315.066667pt;}
.x4a_c00393{left:316.666667pt;}
.x9c_c00393{left:317.733333pt;}
.x2b_c00393{left:320.666667pt;}
.x3f_c00393{left:321.600000pt;}
.x53_c00393{left:326.133333pt;}
.x77_c00393{left:327.600000pt;}
.x1d_c00393{left:329.466667pt;}
.x97_c00393{left:330.533333pt;}
.x8_c00393{left:331.866667pt;}
.x74_c00393{left:333.066667pt;}
.x8c_c00393{left:334.800000pt;}
.x6f_c00393{left:336.933333pt;}
.x5c_c00393{left:338.800000pt;}
.x4e_c00393{left:340.400000pt;}
.x40_c00393{left:342.133333pt;}
.x64_c00393{left:343.466667pt;}
.x87_c00393{left:344.400000pt;}
.x17_c00393{left:346.666667pt;}
.x8f_c00393{left:348.000000pt;}
.x9_c00393{left:349.466667pt;}
.x11_c00393{left:351.066667pt;}
.x54_c00393{left:352.000000pt;}
.x5d_c00393{left:354.133333pt;}
.x4b_c00393{left:355.733333pt;}
.x7c_c00393{left:358.000000pt;}
.x61_c00393{left:361.866667pt;}
.x2c_c00393{left:362.933333pt;}
.x36_c00393{left:363.866667pt;}
.xa6_c00393{left:364.800000pt;}
.x8d_c00393{left:366.800000pt;}
.x60_c00393{left:368.266667pt;}
.xa9_c00393{left:369.466667pt;}
.x2d_c00393{left:370.933333pt;}
.x3a_c00393{left:373.600000pt;}
.x41_c00393{left:375.466667pt;}
.x2_c00393{left:377.066667pt;}
.x24_c00393{left:378.400000pt;}
.x4f_c00393{left:381.066667pt;}
.x65_c00393{left:382.533333pt;}
.x70_c00393{left:383.600000pt;}
.x1e_c00393{left:384.533333pt;}
.x42_c00393{left:386.666667pt;}
.xa_c00393{left:387.600000pt;}
.x7d_c00393{left:389.333333pt;}
.x93_c00393{left:390.533333pt;}
.x99_c00393{left:392.266667pt;}
.x71_c00393{left:394.800000pt;}
.x18_c00393{left:396.000000pt;}
.x6a_c00393{left:397.333333pt;}
.x7e_c00393{left:398.666667pt;}
.x5e_c00393{left:399.866667pt;}
.x9a_c00393{left:400.933333pt;}
.x2e_c00393{left:402.666667pt;}
.x12_c00393{left:404.533333pt;}
.xa2_c00393{left:406.800000pt;}
.x62_c00393{left:408.666667pt;}
.x43_c00393{left:409.733333pt;}
.x78_c00393{left:411.200000pt;}
.x25_c00393{left:412.933333pt;}
.x84_c00393{left:415.333333pt;}
.x55_c00393{left:417.333333pt;}
.x1f_c00393{left:419.466667pt;}
.xa5_c00393{left:420.400000pt;}
.xb_c00393{left:422.133333pt;}
.x46_c00393{left:423.333333pt;}
.x3b_c00393{left:424.533333pt;}
.x98_c00393{left:427.466667pt;}
.xa0_c00393{left:428.533333pt;}
.xc_c00393{left:432.400000pt;}
.x26_c00393{left:434.400000pt;}
.x56_c00393{left:438.400000pt;}
.x94_c00393{left:440.133333pt;}
.x4c_c00393{left:442.133333pt;}
.x19_c00393{left:443.066667pt;}
.x37_c00393{left:445.466667pt;}
.x85_c00393{left:446.666667pt;}
.x8a_c00393{left:449.200000pt;}
.x66_c00393{left:450.400000pt;}
.x6b_c00393{left:454.266667pt;}
.x75_c00393{left:456.266667pt;}
.x9f_c00393{left:459.466667pt;}
.x126_c00393{left:479.066667pt;}
.x136_c00393{left:480.800000pt;}
.xaa_c00393{left:491.200000pt;}
.xdd_c00393{left:492.400000pt;}
.xeb_c00393{left:493.333333pt;}
.x111_c00393{left:494.400000pt;}
.x12c_c00393{left:495.333333pt;}
.x143_c00393{left:496.533333pt;}
.xab_c00393{left:501.733333pt;}
.x107_c00393{left:507.600000pt;}
.xde_c00393{left:511.866667pt;}
.x144_c00393{left:512.800000pt;}
.x132_c00393{left:514.933333pt;}
.xd8_c00393{left:516.133333pt;}
.x112_c00393{left:517.733333pt;}
.xc4_c00393{left:519.066667pt;}
.xfc_c00393{left:520.000000pt;}
.x104_c00393{left:523.866667pt;}
.xff_c00393{left:525.600000pt;}
.xac_c00393{left:526.666667pt;}
.x119_c00393{left:528.933333pt;}
.xdf_c00393{left:530.800000pt;}
.xe6_c00393{left:532.800000pt;}
.x105_c00393{left:534.400000pt;}
.xec_c00393{left:535.600000pt;}
.xfd_c00393{left:537.333333pt;}
.xf1_c00393{left:538.800000pt;}
.xbc_c00393{left:539.733333pt;}
.xc5_c00393{left:541.200000pt;}
.xce_c00393{left:542.666667pt;}
.x12d_c00393{left:544.000000pt;}
.xb4_c00393{left:545.466667pt;}
.x10b_c00393{left:547.066667pt;}
.x130_c00393{left:548.800000pt;}
.xf6_c00393{left:550.400000pt;}
.x108_c00393{left:551.466667pt;}
.x147_c00393{left:552.533333pt;}
.xad_c00393{left:553.600000pt;}
.x150_c00393{left:554.533333pt;}
.x13b_c00393{left:556.533333pt;}
.xcf_c00393{left:558.000000pt;}
.xd9_c00393{left:559.333333pt;}
.xbd_c00393{left:560.800000pt;}
.x133_c00393{left:562.000000pt;}
.xd4_c00393{left:564.133333pt;}
.x122_c00393{left:565.066667pt;}
.x11a_c00393{left:566.400000pt;}
.xb5_c00393{left:567.600000pt;}
.xf7_c00393{left:568.666667pt;}
.x148_c00393{left:570.800000pt;}
.x152_c00393{left:572.533333pt;}
.xbe_c00393{left:574.933333pt;}
.xe0_c00393{left:577.866667pt;}
.xf2_c00393{left:578.800000pt;}
.x14b_c00393{left:579.866667pt;}
.x10e_c00393{left:580.800000pt;}
.xc6_c00393{left:583.466667pt;}
.xe1_c00393{left:584.933333pt;}
.x13d_c00393{left:587.466667pt;}
.xf8_c00393{left:589.733333pt;}
.xd5_c00393{left:590.666667pt;}
.x139_c00393{left:592.000000pt;}
.x151_c00393{left:592.933333pt;}
.x113_c00393{left:594.133333pt;}
.xe7_c00393{left:596.800000pt;}
.xae_c00393{left:597.733333pt;}
.x131_c00393{left:598.800000pt;}
.xf3_c00393{left:599.866667pt;}
.x11b_c00393{left:602.533333pt;}
.xc7_c00393{left:604.533333pt;}
.xbf_c00393{left:608.800000pt;}
.x123_c00393{left:609.866667pt;}
.xb6_c00393{left:612.666667pt;}
.x137_c00393{left:614.133333pt;}
.x10f_c00393{left:615.066667pt;}
.x141_c00393{left:617.600000pt;}
.xaf_c00393{left:619.466667pt;}
.xc8_c00393{left:622.800000pt;}
.x117_c00393{left:624.933333pt;}
.x101_c00393{left:626.133333pt;}
.x134_c00393{left:627.333333pt;}
.xf4_c00393{left:628.666667pt;}
.xd0_c00393{left:631.200000pt;}
.x121_c00393{left:632.266667pt;}
.x10c_c00393{left:633.200000pt;}
.xb0_c00393{left:634.133333pt;}
.xf9_c00393{left:635.200000pt;}
.x102_c00393{left:636.666667pt;}
.x100_c00393{left:641.066667pt;}
.x14c_c00393{left:642.266667pt;}
.xe2_c00393{left:644.133333pt;}
.x145_c00393{left:645.200000pt;}
.xed_c00393{left:646.266667pt;}
.x127_c00393{left:647.333333pt;}
.xb7_c00393{left:648.533333pt;}
.x138_c00393{left:652.266667pt;}
.x109_c00393{left:653.200000pt;}
.xc9_c00393{left:654.533333pt;}
.x114_c00393{left:655.600000pt;}
.x14d_c00393{left:657.333333pt;}
.x106_c00393{left:658.533333pt;}
.x124_c00393{left:659.466667pt;}
.x13e_c00393{left:660.400000pt;}
.xca_c00393{left:661.866667pt;}
.xfa_c00393{left:663.066667pt;}
.xd6_c00393{left:665.333333pt;}
.xc0_c00393{left:666.666667pt;}
.x13a_c00393{left:667.866667pt;}
.x115_c00393{left:669.333333pt;}
.xb1_c00393{left:671.866667pt;}
.x103_c00393{left:673.200000pt;}
.x11f_c00393{left:674.533333pt;}
.xb8_c00393{left:678.000000pt;}
.xee_c00393{left:679.200000pt;}
.xcb_c00393{left:680.133333pt;}
.x135_c00393{left:681.733333pt;}
.x12e_c00393{left:682.800000pt;}
.xe8_c00393{left:684.133333pt;}
.xc1_c00393{left:685.200000pt;}
.xda_c00393{left:686.400000pt;}
.x13c_c00393{left:688.000000pt;}
.x10a_c00393{left:689.066667pt;}
.x110_c00393{left:690.266667pt;}
.xe3_c00393{left:692.133333pt;}
.x128_c00393{left:694.666667pt;}
.xb9_c00393{left:695.866667pt;}
.x125_c00393{left:696.800000pt;}
.x129_c00393{left:698.000000pt;}
.xd1_c00393{left:699.600000pt;}
.x11c_c00393{left:701.466667pt;}
.xfe_c00393{left:703.733333pt;}
.x120_c00393{left:705.866667pt;}
.x140_c00393{left:706.800000pt;}
.xc2_c00393{left:708.266667pt;}
.xe9_c00393{left:709.733333pt;}
.xf5_c00393{left:710.800000pt;}
.xef_c00393{left:711.866667pt;}
.xd7_c00393{left:713.333333pt;}
.xba_c00393{left:716.000000pt;}
.xd2_c00393{left:719.066667pt;}
.x153_c00393{left:720.266667pt;}
.x116_c00393{left:724.000000pt;}
.x10d_c00393{left:725.333333pt;}
.x12f_c00393{left:727.333333pt;}
.x13f_c00393{left:729.200000pt;}
.xcc_c00393{left:731.600000pt;}
.xe4_c00393{left:733.066667pt;}
.x142_c00393{left:734.000000pt;}
.xb2_c00393{left:734.933333pt;}
.xfb_c00393{left:737.600000pt;}
.xc3_c00393{left:739.600000pt;}
.xcd_c00393{left:741.866667pt;}
.xdb_c00393{left:744.266667pt;}
.x154_c00393{left:745.200000pt;}
.x11e_c00393{left:746.666667pt;}
.xf0_c00393{left:747.733333pt;}
.x149_c00393{left:749.333333pt;}
.xe5_c00393{left:750.400000pt;}
.xb3_c00393{left:752.800000pt;}
.xdc_c00393{left:754.133333pt;}
.x14a_c00393{left:757.066667pt;}
.xea_c00393{left:758.000000pt;}
.x12a_c00393{left:759.466667pt;}
.x11d_c00393{left:760.933333pt;}
.xd3_c00393{left:762.000000pt;}
.xbb_c00393{left:763.733333pt;}
.x156_c00393{left:767.333333pt;}
.x118_c00393{left:768.933333pt;}
.x12b_c00393{left:770.400000pt;}
.x155_c00393{left:771.733333pt;}
.x146_c00393{left:773.466667pt;}
.x14e_c00393{left:774.533333pt;}
.x14f_c00393{left:788.933333pt;}
}





/* 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_c00394 {
    display:none;
  }
  .loading-indicator_c00394.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00394 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_c00394 { 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_c00394" -> "#page-container .classname_c00394")
 */
.pf_c00394 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00394 { /* 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_c00394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00394 { /* 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_c00394 { /* 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_c00394 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00394 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00394 {overflow:visible;}
  }
}
.c_c00394 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00394 { /* 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_c00394:after { /* webkit #35443 */
  content: '';
}
.t_c00394:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00394 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 */
}
.__c00394 { /* 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_c00394 { /* info for Javascript */
  display:none;
}
.l_c00394 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00394 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00394 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00394: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_c00394 {
    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_c00394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00394.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_c00394 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00394;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.000000;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;}
.mb4_c00394{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00394{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mea_c00394{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.mda_c00394{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md9_c00394{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m36_c00394{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf_c00394{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m41_c00394{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00394{transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);}
.md_c00394{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m65_c00394{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me6_c00394{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00394{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.md1_c00394{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.me_c00394{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m45_c00394{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me3_c00394{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m60_c00394{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00394{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00394{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00394{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m110_c00394{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.md2_c00394{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m113_c00394{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00394{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m40_c00394{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00394{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00394{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m70_c00394{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m51_c00394{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m34_c00394{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00394{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mad_c00394{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00394{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m81_c00394{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00394{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00394{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00394{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m71_c00394{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00394{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00394{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00394{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00394{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00394{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00394{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00394{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8_c00394{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4_c00394{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00394{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m80_c00394{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m30_c00394{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m67_c00394{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m57_c00394{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00394{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m73_c00394{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m61_c00394{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00394{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.meb_c00394{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00394{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00394{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00394{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m86_c00394{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m21_c00394{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00394{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00394{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m62_c00394{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m88_c00394{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00394{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00394{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00394{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m53_c00394{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m35_c00394{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00394{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.me7_c00394{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc_c00394{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00394{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m16_c00394{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00394{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00394{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00394{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00394{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m82_c00394{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m42_c00394{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m20_c00394{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00394{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00394{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m59_c00394{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.me4_c00394{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m52_c00394{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me8_c00394{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m39_c00394{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m17_c00394{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m33_c00394{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m95_c00394{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00394{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00394{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00394{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00394{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m112_c00394{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00394{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m23_c00394{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00394{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00394{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00394{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m44_c00394{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me1_c00394{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m18_c00394{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m108_c00394{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00394{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00394{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00394{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m38_c00394{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m32_c00394{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00394{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mef_c00394{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00394{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00394{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00394{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m75_c00394{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m25_c00394{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mec_c00394{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00394{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00394{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00394{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00394{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00394{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00394{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m63_c00394{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m111_c00394{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m14_c00394{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m100_c00394{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m76_c00394{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00394{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00394{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m93_c00394{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m104_c00394{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m2_c00394{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m68_c00394{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m78_c00394{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mee_c00394{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00394{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m12_c00394{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00394{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m69_c00394{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m91_c00394{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00394{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00394{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m43_c00394{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00394{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00394{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00394{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m31_c00394{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00394{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m29_c00394{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m15_c00394{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m96_c00394{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mba_c00394{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00394{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m117_c00394{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00394{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mac_c00394{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me9_c00394{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00394{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m22_c00394{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me0_c00394{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m47_c00394{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00394{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00394{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00394{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m50_c00394{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m19_c00394{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00394{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00394{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00394{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00394{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00394{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m13_c00394{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m87_c00394{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m106_c00394{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mb_c00394{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m58_c00394{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m54_c00394{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00394{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5_c00394{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00394{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00394{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00394{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m118_c00394{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m55_c00394{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m79_c00394{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m24_c00394{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00394{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00394{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00394{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00394{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00394{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00394{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00394{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3_c00394{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m49_c00394{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m46_c00394{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00394{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m64_c00394{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00394{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00394{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m9_c00394{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m77_c00394{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00394{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m37_c00394{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00394{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m26_c00394{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m83_c00394{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m105_c00394{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00394{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00394{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m98_c00394{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m48_c00394{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m101_c00394{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6_c00394{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m92_c00394{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma_c00394{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md8_c00394{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00394{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m90_c00394{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00394{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00394{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m10_c00394{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11_c00394{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.med_c00394{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00394{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00394{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00394{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00394{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m85_c00394{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m119_c00394{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m116_c00394{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me2_c00394{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m27_c00394{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m84_c00394{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00394{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m115_c00394{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00394{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m72_c00394{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);}
.m6b_c00394{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7_c00394{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00394{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me5_c00394{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mca_c00394{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m74_c00394{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00394{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mce_c00394{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m94_c00394{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m107_c00394{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m89_c00394{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00394{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mae_c00394{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m56_c00394{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mde_c00394{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m103_c00394{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00394{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.md7_c00394{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m102_c00394{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00394{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m99_c00394{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m28_c00394{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m97_c00394{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00394{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mff_c00394{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00394{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m109_c00394{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00394{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m66_c00394{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mab_c00394{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md0_c00394{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00394{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.md6_c00394{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.md4_c00394{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.md3_c00394{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md5_c00394{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.maf_c00394{transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);}
.m114_c00394{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00394{transform:matrix(0.447000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447000,0.000000,0.000000,0.250000,0,0);}
.maa_c00394{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls0_c00394{letter-spacing:0.000000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{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__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00394{word-spacing:-9.196507px;}
.ws4_c00394{word-spacing:-5.625000px;}
.ws2_c00394{word-spacing:-5.142857px;}
.wsc_c00394{word-spacing:0.000000px;}
.wsb_c00394{word-spacing:2.857143px;}
.ws3_c00394{word-spacing:3.415808px;}
.ws9_c00394{word-spacing:13.463415px;}
.ws6_c00394{word-spacing:24.250000px;}
.ws0_c00394{word-spacing:25.714286px;}
.ws7_c00394{word-spacing:29.285714px;}
.ws5_c00394{word-spacing:30.992701px;}
.ws8_c00394{word-spacing:61.250000px;}
.ws1_c00394{word-spacing:63.125000px;}
._0_c00394{width:49.072993px;}
.fc0_c00394{color:transparent;}
.fs5_c00394{font-size:30.000000px;}
.fs7_c00394{font-size:42.000000px;}
.fs2_c00394{font-size:48.000000px;}
.fs6_c00394{font-size:54.000000px;}
.fs3_c00394{font-size:60.000000px;}
.fs1_c00394{font-size:66.000000px;}
.fs4_c00394{font-size:72.000000px;}
.fs0_c00394{font-size:84.000000px;}
.y0_c00394{bottom:0.000000px;}
.y69_c00394{bottom:187.500000px;}
.y35_c00394{bottom:187.650000px;}
.y34_c00394{bottom:201.300000px;}
.y68_c00394{bottom:225.450000px;}
.y67_c00394{bottom:243.750000px;}
.y32_c00394{bottom:245.850000px;}
.y66_c00394{bottom:262.500000px;}
.y31_c00394{bottom:263.550000px;}
.y65_c00394{bottom:280.200000px;}
.y30_c00394{bottom:281.400000px;}
.y64_c00394{bottom:298.200000px;}
.y2f_c00394{bottom:299.100000px;}
.y63_c00394{bottom:316.200000px;}
.y2e_c00394{bottom:316.800000px;}
.y62_c00394{bottom:334.500000px;}
.y2d_c00394{bottom:339.900000px;}
.y61_c00394{bottom:352.500000px;}
.y2c_c00394{bottom:357.900000px;}
.y60_c00394{bottom:370.500000px;}
.y2b_c00394{bottom:376.200000px;}
.y2a_c00394{bottom:393.900000px;}
.y5f_c00394{bottom:400.350000px;}
.y5e_c00394{bottom:406.050000px;}
.y29_c00394{bottom:415.800000px;}
.y5d_c00394{bottom:424.050000px;}
.y28_c00394{bottom:438.000000px;}
.y5c_c00394{bottom:445.650000px;}
.y27_c00394{bottom:455.700000px;}
.y5b_c00394{bottom:468.000000px;}
.y26_c00394{bottom:473.100000px;}
.y5a_c00394{bottom:486.300000px;}
.y25_c00394{bottom:491.100000px;}
.y59_c00394{bottom:504.300000px;}
.y24_c00394{bottom:509.400000px;}
.y58_c00394{bottom:522.750000px;}
.y23_c00394{bottom:530.850000px;}
.y57_c00394{bottom:540.750000px;}
.y22_c00394{bottom:549.600000px;}
.y56_c00394{bottom:558.450000px;}
.y21_c00394{bottom:567.600000px;}
.y55_c00394{bottom:576.450000px;}
.y20_c00394{bottom:585.300000px;}
.y54_c00394{bottom:594.450000px;}
.y1f_c00394{bottom:603.300000px;}
.y53_c00394{bottom:612.450000px;}
.y1e_c00394{bottom:621.300000px;}
.y52_c00394{bottom:630.750000px;}
.y1d_c00394{bottom:643.200000px;}
.y51_c00394{bottom:649.800000px;}
.y1c_c00394{bottom:660.900000px;}
.y50_c00394{bottom:666.000000px;}
.y1b_c00394{bottom:678.900000px;}
.y4f_c00394{bottom:684.000000px;}
.y1a_c00394{bottom:696.600000px;}
.y4e_c00394{bottom:702.000000px;}
.y19_c00394{bottom:714.600000px;}
.y4d_c00394{bottom:721.650000px;}
.y18_c00394{bottom:732.600000px;}
.y4c_c00394{bottom:737.550000px;}
.y17_c00394{bottom:750.600000px;}
.y4b_c00394{bottom:755.550000px;}
.y16_c00394{bottom:768.600000px;}
.y4a_c00394{bottom:773.550000px;}
.y15_c00394{bottom:786.900000px;}
.y49_c00394{bottom:791.550000px;}
.y14_c00394{bottom:804.600000px;}
.y48_c00394{bottom:809.550000px;}
.y13_c00394{bottom:822.600000px;}
.y47_c00394{bottom:827.550000px;}
.y12_c00394{bottom:840.600000px;}
.y46_c00394{bottom:845.550000px;}
.y11_c00394{bottom:858.300000px;}
.y45_c00394{bottom:863.250000px;}
.y10_c00394{bottom:876.600000px;}
.y44_c00394{bottom:881.250000px;}
.yf_c00394{bottom:894.600000px;}
.y43_c00394{bottom:899.250000px;}
.ye_c00394{bottom:912.300000px;}
.y42_c00394{bottom:916.950000px;}
.yd_c00394{bottom:930.300000px;}
.y41_c00394{bottom:935.250000px;}
.yc_c00394{bottom:948.300000px;}
.y40_c00394{bottom:953.250000px;}
.yb_c00394{bottom:966.300000px;}
.y3f_c00394{bottom:974.850000px;}
.ya_c00394{bottom:984.300000px;}
.y3e_c00394{bottom:989.250000px;}
.y9_c00394{bottom:1002.300000px;}
.y3d_c00394{bottom:1003.650000px;}
.y3c_c00394{bottom:1018.350000px;}
.y8_c00394{bottom:1020.300000px;}
.y3b_c00394{bottom:1032.450000px;}
.y7_c00394{bottom:1038.300000px;}
.y3a_c00394{bottom:1047.300000px;}
.y6_c00394{bottom:1056.000000px;}
.y39_c00394{bottom:1066.650000px;}
.y5_c00394{bottom:1074.000000px;}
.y38_c00394{bottom:1084.650000px;}
.y33_c00394{bottom:1094.400000px;}
.y4_c00394{bottom:1095.900000px;}
.y37_c00394{bottom:1102.350000px;}
.y3_c00394{bottom:1110.600000px;}
.y36_c00394{bottom:1120.350000px;}
.y2_c00394{bottom:1123.200000px;}
.y1_c00394{bottom:1147.350000px;}
.h7_c00394{height:30.000000px;}
.h9_c00394{height:42.000000px;}
.h4_c00394{height:48.000000px;}
.h8_c00394{height:54.000000px;}
.h5_c00394{height:60.000000px;}
.h3_c00394{height:66.000000px;}
.h6_c00394{height:72.000000px;}
.h2_c00394{height:84.000000px;}
.h0_c00394{height:1267.919952px;}
.h1_c00394{height:1268.250000px;}
.w0_c00394{width:960.480010px;}
.w1_c00394{width:960.750000px;}
.x0_c00394{left:0.000000px;}
.x92_c00394{left:72.750000px;}
.x10_c00394{left:80.700000px;}
.x8c_c00394{left:83.550000px;}
.x93_c00394{left:85.050000px;}
.x9d_c00394{left:90.750000px;}
.x94_c00394{left:93.300000px;}
.x17_c00394{left:98.250000px;}
.x26_c00394{left:99.300000px;}
.x83_c00394{left:101.550000px;}
.x91_c00394{left:103.050000px;}
.x71_c00394{left:104.400000px;}
.x6_c00394{left:110.100000px;}
.xa3_c00394{left:116.550000px;}
.x42_c00394{left:118.350000px;}
.x18_c00394{left:121.350000px;}
.x77_c00394{left:122.400000px;}
.xa8_c00394{left:123.600000px;}
.x5f_c00394{left:125.250000px;}
.x59_c00394{left:126.900000px;}
.x72_c00394{left:128.850000px;}
.x1d_c00394{left:130.950000px;}
.x38_c00394{left:132.300000px;}
.x51_c00394{left:134.250000px;}
.x69_c00394{left:135.300000px;}
.x7d_c00394{left:136.950000px;}
.x6c_c00394{left:139.950000px;}
.x1e_c00394{left:141.000000px;}
.x7f_c00394{left:142.800000px;}
.x43_c00394{left:145.650000px;}
.x4c_c00394{left:148.050000px;}
.x88_c00394{left:149.400000px;}
.x39_c00394{left:150.600000px;}
.x84_c00394{left:152.400000px;}
.x6e_c00394{left:153.750000px;}
.x19_c00394{left:155.850000px;}
.x2d_c00394{left:159.000000px;}
.x34_c00394{left:160.950000px;}
.x7_c00394{left:162.000000px;}
.x63_c00394{left:163.350000px;}
.x11_c00394{left:164.550000px;}
.x95_c00394{left:166.350000px;}
.x4d_c00394{left:167.550000px;}
.x78_c00394{left:169.500000px;}
.x48_c00394{left:171.000000px;}
.xb_c00394{left:172.200000px;}
.xa0_c00394{left:174.600000px;}
.x99_c00394{left:175.650000px;}
.x3d_c00394{left:176.850000px;}
.x2e_c00394{left:178.800000px;}
.x5a_c00394{left:183.450000px;}
.x22_c00394{left:185.550000px;}
.x89_c00394{left:187.200000px;}
.x82_c00394{left:189.450000px;}
.x52_c00394{left:191.400000px;}
.x1f_c00394{left:193.200000px;}
.x1a_c00394{left:194.400000px;}
.x60_c00394{left:196.050000px;}
.xc_c00394{left:197.100000px;}
.x9c_c00394{left:199.050000px;}
.x3e_c00394{left:201.000000px;}
.x5b_c00394{left:202.950000px;}
.x64_c00394{left:204.450000px;}
.x49_c00394{left:205.950000px;}
.x79_c00394{left:207.300000px;}
.x27_c00394{left:209.100000px;}
.x53_c00394{left:211.200000px;}
.x44_c00394{left:214.350000px;}
.x73_c00394{left:215.550000px;}
.x12_c00394{left:217.050000px;}
.x2f_c00394{left:218.700000px;}
.x85_c00394{left:220.800000px;}
.x6f_c00394{left:223.200000px;}
.x35_c00394{left:226.500000px;}
.x3a_c00394{left:228.000000px;}
.xa9_c00394{left:229.050000px;}
.x87_c00394{left:230.100000px;}
.x20_c00394{left:233.850000px;}
.x45_c00394{left:235.950000px;}
.x8d_c00394{left:237.300000px;}
.x30_c00394{left:238.800000px;}
.x13_c00394{left:240.450000px;}
.x61_c00394{left:243.150000px;}
.x8e_c00394{left:244.200000px;}
.xa4_c00394{left:245.400000px;}
.xd_c00394{left:246.750000px;}
.x65_c00394{left:248.400000px;}
.x74_c00394{left:250.800000px;}
.x28_c00394{left:252.300000px;}
.xe_c00394{left:253.950000px;}
.x31_c00394{left:256.800000px;}
.xf_c00394{left:261.450000px;}
.x54_c00394{left:265.200000px;}
.x66_c00394{left:269.250000px;}
.x4e_c00394{left:271.200000px;}
.xa1_c00394{left:272.550000px;}
.x29_c00394{left:274.950000px;}
.x3f_c00394{left:276.600000px;}
.x8a_c00394{left:277.650000px;}
.x70_c00394{left:279.300000px;}
.x5c_c00394{left:283.350000px;}
.x21_c00394{left:285.000000px;}
.x9a_c00394{left:286.500000px;}
.x36_c00394{left:289.200000px;}
.xa2_c00394{left:290.250000px;}
.x6a_c00394{left:291.600000px;}
.x3b_c00394{left:293.100000px;}
.x4f_c00394{left:294.900000px;}
.x4a_c00394{left:296.850000px;}
.x23_c00394{left:297.900000px;}
.x40_c00394{left:299.700000px;}
.x80_c00394{left:301.050000px;}
.x6b_c00394{left:303.150000px;}
.x5d_c00394{left:306.450000px;}
.xa5_c00394{left:314.850000px;}
.xa6_c00394{left:315.900000px;}
.x75_c00394{left:317.400000px;}
.x67_c00394{left:319.650000px;}
.x14_c00394{left:321.150000px;}
.x1b_c00394{left:323.250000px;}
.x1_c00394{left:325.800000px;}
.x5e_c00394{left:327.000000px;}
.x32_c00394{left:328.050000px;}
.x55_c00394{left:330.000000px;}
.x7a_c00394{left:331.800000px;}
.x50_c00394{left:334.800000px;}
.x2a_c00394{left:336.450000px;}
.x3_c00394{left:338.400000px;}
.x81_c00394{left:340.050000px;}
.x7b_c00394{left:341.850000px;}
.x9e_c00394{left:343.950000px;}
.x4b_c00394{left:345.150000px;}
.x24_c00394{left:346.200000px;}
.x8_c00394{left:347.700000px;}
.x37_c00394{left:349.350000px;}
.x56_c00394{left:350.550000px;}
.xa7_c00394{left:352.950000px;}
.x97_c00394{left:357.000000px;}
.x15_c00394{left:358.200000px;}
.x46_c00394{left:360.450000px;}
.x9f_c00394{left:362.250000px;}
.x3c_c00394{left:363.300000px;}
.x1c_c00394{left:366.750000px;}
.x8f_c00394{left:368.250000px;}
.x4_c00394{left:369.300000px;}
.x25_c00394{left:371.100000px;}
.x2b_c00394{left:372.450000px;}
.x9b_c00394{left:373.650000px;}
.x6d_c00394{left:375.450000px;}
.x33_c00394{left:376.950000px;}
.x9_c00394{left:378.000000px;}
.x68_c00394{left:379.050000px;}
.x8b_c00394{left:380.400000px;}
.x57_c00394{left:381.450000px;}
.x96_c00394{left:383.250000px;}
.x76_c00394{left:384.750000px;}
.x47_c00394{left:386.700000px;}
.x7e_c00394{left:387.900000px;}
.x16_c00394{left:390.600000px;}
.x58_c00394{left:392.550000px;}
.x2c_c00394{left:395.100000px;}
.x98_c00394{left:398.400000px;}
.x7c_c00394{left:401.250000px;}
.x41_c00394{left:402.300000px;}
.x5_c00394{left:403.500000px;}
.xa_c00394{left:405.750000px;}
.x90_c00394{left:407.100000px;}
.x62_c00394{left:408.900000px;}
.x86_c00394{left:412.650000px;}
.xc8_c00394{left:440.250000px;}
.x13b_c00394{left:442.800000px;}
.x13f_c00394{left:447.150000px;}
.xd0_c00394{left:455.700000px;}
.xaa_c00394{left:457.950000px;}
.xea_c00394{left:459.450000px;}
.xfc_c00394{left:460.650000px;}
.x144_c00394{left:461.700000px;}
.x14e_c00394{left:463.200000px;}
.xdd_c00394{left:469.650000px;}
.xab_c00394{left:482.400000px;}
.x12f_c00394{left:485.850000px;}
.x107_c00394{left:488.700000px;}
.xd1_c00394{left:490.950000px;}
.x113_c00394{left:493.200000px;}
.x14b_c00394{left:494.400000px;}
.x11f_c00394{left:496.800000px;}
.xd2_c00394{left:497.850000px;}
.xc9_c00394{left:499.650000px;}
.x138_c00394{left:500.850000px;}
.x13a_c00394{left:502.350000px;}
.x10a_c00394{left:503.700000px;}
.xd3_c00394{left:505.350000px;}
.x127_c00394{left:506.550000px;}
.xb3_c00394{left:507.600000px;}
.xba_c00394{left:508.650000px;}
.xc1_c00394{left:510.000000px;}
.xd4_c00394{left:512.850000px;}
.xf6_c00394{left:514.800000px;}
.xf1_c00394{left:516.300000px;}
.xe2_c00394{left:517.350000px;}
.x12a_c00394{left:519.750000px;}
.xfd_c00394{left:521.100000px;}
.xe5_c00394{left:522.750000px;}
.xc2_c00394{left:525.900000px;}
.xac_c00394{left:527.700000px;}
.x129_c00394{left:532.200000px;}
.xf7_c00394{left:534.900000px;}
.x10c_c00394{left:536.550000px;}
.x101_c00394{left:538.650000px;}
.xc3_c00394{left:541.050000px;}
.xd5_c00394{left:542.550000px;}
.x11a_c00394{left:543.900000px;}
.x130_c00394{left:544.950000px;}
.x14d_c00394{left:547.950000px;}
.x149_c00394{left:551.850000px;}
.x122_c00394{left:552.900000px;}
.x133_c00394{left:556.500000px;}
.xfe_c00394{left:557.850000px;}
.x140_c00394{left:559.350000px;}
.xca_c00394{left:561.150000px;}
.xdf_c00394{left:564.000000px;}
.x145_c00394{left:565.050000px;}
.x12b_c00394{left:566.250000px;}
.x120_c00394{left:567.300000px;}
.xf8_c00394{left:568.350000px;}
.x11b_c00394{left:569.400000px;}
.xb4_c00394{left:571.350000px;}
.x114_c00394{left:573.750000px;}
.x141_c00394{left:575.850000px;}
.xbb_c00394{left:578.100000px;}
.xe0_c00394{left:579.150000px;}
.xc4_c00394{left:581.400000px;}
.xe6_c00394{left:583.200000px;}
.xe3_c00394{left:585.000000px;}
.xe1_c00394{left:586.050000px;}
.x10d_c00394{left:588.000000px;}
.x102_c00394{left:589.350000px;}
.x123_c00394{left:591.450000px;}
.xb5_c00394{left:594.450000px;}
.xad_c00394{left:596.400000px;}
.x11c_c00394{left:597.450000px;}
.xcb_c00394{left:600.000000px;}
.xe7_c00394{left:602.250000px;}
.xf9_c00394{left:603.600000px;}
.x146_c00394{left:604.950000px;}
.xd6_c00394{left:608.100000px;}
.x134_c00394{left:610.200000px;}
.x124_c00394{left:612.300000px;}
.xae_c00394{left:614.700000px;}
.x142_c00394{left:615.750000px;}
.xbc_c00394{left:618.150000px;}
.xff_c00394{left:620.100000px;}
.xd7_c00394{left:623.250000px;}
.x115_c00394{left:627.750000px;}
.xec_c00394{left:629.100000px;}
.xd8_c00394{left:630.750000px;}
.xb6_c00394{left:631.950000px;}
.xbd_c00394{left:633.300000px;}
.x103_c00394{left:636.150000px;}
.xd9_c00394{left:638.250000px;}
.x108_c00394{left:639.450000px;}
.xe8_c00394{left:641.100000px;}
.x11d_c00394{left:644.550000px;}
.xc5_c00394{left:646.500000px;}
.xaf_c00394{left:647.850000px;}
.xf2_c00394{left:652.050000px;}
.xf0_c00394{left:653.400000px;}
.x128_c00394{left:655.200000px;}
.x125_c00394{left:656.550000px;}
.x104_c00394{left:658.050000px;}
.xbe_c00394{left:660.300000px;}
.x137_c00394{left:662.100000px;}
.xcc_c00394{left:663.750000px;}
.x139_c00394{left:665.100000px;}
.x14c_c00394{left:666.450000px;}
.x10e_c00394{left:668.250000px;}
.xb7_c00394{left:669.750000px;}
.xbf_c00394{left:671.400000px;}
.x12c_c00394{left:673.050000px;}
.xf3_c00394{left:675.150000px;}
.xed_c00394{left:676.950000px;}
.xe9_c00394{left:678.600000px;}
.xcd_c00394{left:682.050000px;}
.x116_c00394{left:683.550000px;}
.x148_c00394{left:685.050000px;}
.xee_c00394{left:686.700000px;}
.xf4_c00394{left:688.050000px;}
.xc6_c00394{left:689.400000px;}
.x105_c00394{left:691.500000px;}
.x117_c00394{left:692.850000px;}
.x126_c00394{left:696.750000px;}
.x131_c00394{left:697.950000px;}
.x14a_c00394{left:700.350000px;}
.x121_c00394{left:702.300000px;}
.xce_c00394{left:703.350000px;}
.xe4_c00394{left:707.100000px;}
.xda_c00394{left:708.450000px;}
.x13c_c00394{left:710.100000px;}
.xb0_c00394{left:711.600000px;}
.x118_c00394{left:713.400000px;}
.xfa_c00394{left:715.200000px;}
.x100_c00394{left:716.550000px;}
.xc0_c00394{left:718.500000px;}
.x111_c00394{left:720.150000px;}
.xb1_c00394{left:721.650000px;}
.x12d_c00394{left:722.700000px;}
.x147_c00394{left:723.750000px;}
.x10b_c00394{left:725.400000px;}
.x136_c00394{left:726.450000px;}
.x10f_c00394{left:727.650000px;}
.xcf_c00394{left:730.650000px;}
.xdb_c00394{left:731.850000px;}
.x12e_c00394{left:733.500000px;}
.x13d_c00394{left:734.550000px;}
.xde_c00394{left:736.800000px;}
.xb8_c00394{left:738.450000px;}
.xc7_c00394{left:742.650000px;}
.xfb_c00394{left:744.000000px;}
.x119_c00394{left:745.500000px;}
.x106_c00394{left:746.550000px;}
.xef_c00394{left:748.200000px;}
.xeb_c00394{left:749.550000px;}
.x2_c00394{left:750.900000px;}
.x112_c00394{left:752.850000px;}
.xf5_c00394{left:756.000000px;}
.xb2_c00394{left:757.350000px;}
.x109_c00394{left:758.550000px;}
.x132_c00394{left:760.200000px;}
.x143_c00394{left:761.550000px;}
.x11e_c00394{left:762.600000px;}
.xb9_c00394{left:764.700000px;}
.xdc_c00394{left:766.350000px;}
.x13e_c00394{left:769.350000px;}
.x110_c00394{left:774.150000px;}
.x135_c00394{left:777.450000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.wsa_c00394{word-spacing:-8.174672pt;}
.ws4_c00394{word-spacing:-5.000000pt;}
.ws2_c00394{word-spacing:-4.571429pt;}
.wsc_c00394{word-spacing:0.000000pt;}
.wsb_c00394{word-spacing:2.539683pt;}
.ws3_c00394{word-spacing:3.036273pt;}
.ws9_c00394{word-spacing:11.967480pt;}
.ws6_c00394{word-spacing:21.555556pt;}
.ws0_c00394{word-spacing:22.857143pt;}
.ws7_c00394{word-spacing:26.031746pt;}
.ws5_c00394{word-spacing:27.549067pt;}
.ws8_c00394{word-spacing:54.444444pt;}
.ws1_c00394{word-spacing:56.111111pt;}
._0_c00394{width:43.620438pt;}
.fs5_c00394{font-size:26.666667pt;}
.fs7_c00394{font-size:37.333333pt;}
.fs2_c00394{font-size:42.666667pt;}
.fs6_c00394{font-size:48.000000pt;}
.fs3_c00394{font-size:53.333333pt;}
.fs1_c00394{font-size:58.666667pt;}
.fs4_c00394{font-size:64.000000pt;}
.fs0_c00394{font-size:74.666667pt;}
.y0_c00394{bottom:0.000000pt;}
.y69_c00394{bottom:166.666667pt;}
.y35_c00394{bottom:166.800000pt;}
.y34_c00394{bottom:178.933333pt;}
.y68_c00394{bottom:200.400000pt;}
.y67_c00394{bottom:216.666667pt;}
.y32_c00394{bottom:218.533333pt;}
.y66_c00394{bottom:233.333333pt;}
.y31_c00394{bottom:234.266667pt;}
.y65_c00394{bottom:249.066667pt;}
.y30_c00394{bottom:250.133333pt;}
.y64_c00394{bottom:265.066667pt;}
.y2f_c00394{bottom:265.866667pt;}
.y63_c00394{bottom:281.066667pt;}
.y2e_c00394{bottom:281.600000pt;}
.y62_c00394{bottom:297.333333pt;}
.y2d_c00394{bottom:302.133333pt;}
.y61_c00394{bottom:313.333333pt;}
.y2c_c00394{bottom:318.133333pt;}
.y60_c00394{bottom:329.333333pt;}
.y2b_c00394{bottom:334.400000pt;}
.y2a_c00394{bottom:350.133333pt;}
.y5f_c00394{bottom:355.866667pt;}
.y5e_c00394{bottom:360.933333pt;}
.y29_c00394{bottom:369.600000pt;}
.y5d_c00394{bottom:376.933333pt;}
.y28_c00394{bottom:389.333333pt;}
.y5c_c00394{bottom:396.133333pt;}
.y27_c00394{bottom:405.066667pt;}
.y5b_c00394{bottom:416.000000pt;}
.y26_c00394{bottom:420.533333pt;}
.y5a_c00394{bottom:432.266667pt;}
.y25_c00394{bottom:436.533333pt;}
.y59_c00394{bottom:448.266667pt;}
.y24_c00394{bottom:452.800000pt;}
.y58_c00394{bottom:464.666667pt;}
.y23_c00394{bottom:471.866667pt;}
.y57_c00394{bottom:480.666667pt;}
.y22_c00394{bottom:488.533333pt;}
.y56_c00394{bottom:496.400000pt;}
.y21_c00394{bottom:504.533333pt;}
.y55_c00394{bottom:512.400000pt;}
.y20_c00394{bottom:520.266667pt;}
.y54_c00394{bottom:528.400000pt;}
.y1f_c00394{bottom:536.266667pt;}
.y53_c00394{bottom:544.400000pt;}
.y1e_c00394{bottom:552.266667pt;}
.y52_c00394{bottom:560.666667pt;}
.y1d_c00394{bottom:571.733333pt;}
.y51_c00394{bottom:577.600000pt;}
.y1c_c00394{bottom:587.466667pt;}
.y50_c00394{bottom:592.000000pt;}
.y1b_c00394{bottom:603.466667pt;}
.y4f_c00394{bottom:608.000000pt;}
.y1a_c00394{bottom:619.200000pt;}
.y4e_c00394{bottom:624.000000pt;}
.y19_c00394{bottom:635.200000pt;}
.y4d_c00394{bottom:641.466667pt;}
.y18_c00394{bottom:651.200000pt;}
.y4c_c00394{bottom:655.600000pt;}
.y17_c00394{bottom:667.200000pt;}
.y4b_c00394{bottom:671.600000pt;}
.y16_c00394{bottom:683.200000pt;}
.y4a_c00394{bottom:687.600000pt;}
.y15_c00394{bottom:699.466667pt;}
.y49_c00394{bottom:703.600000pt;}
.y14_c00394{bottom:715.200000pt;}
.y48_c00394{bottom:719.600000pt;}
.y13_c00394{bottom:731.200000pt;}
.y47_c00394{bottom:735.600000pt;}
.y12_c00394{bottom:747.200000pt;}
.y46_c00394{bottom:751.600000pt;}
.y11_c00394{bottom:762.933333pt;}
.y45_c00394{bottom:767.333333pt;}
.y10_c00394{bottom:779.200000pt;}
.y44_c00394{bottom:783.333333pt;}
.yf_c00394{bottom:795.200000pt;}
.y43_c00394{bottom:799.333333pt;}
.ye_c00394{bottom:810.933333pt;}
.y42_c00394{bottom:815.066667pt;}
.yd_c00394{bottom:826.933333pt;}
.y41_c00394{bottom:831.333333pt;}
.yc_c00394{bottom:842.933333pt;}
.y40_c00394{bottom:847.333333pt;}
.yb_c00394{bottom:858.933333pt;}
.y3f_c00394{bottom:866.533333pt;}
.ya_c00394{bottom:874.933333pt;}
.y3e_c00394{bottom:879.333333pt;}
.y9_c00394{bottom:890.933333pt;}
.y3d_c00394{bottom:892.133333pt;}
.y3c_c00394{bottom:905.200000pt;}
.y8_c00394{bottom:906.933333pt;}
.y3b_c00394{bottom:917.733333pt;}
.y7_c00394{bottom:922.933333pt;}
.y3a_c00394{bottom:930.933333pt;}
.y6_c00394{bottom:938.666667pt;}
.y39_c00394{bottom:948.133333pt;}
.y5_c00394{bottom:954.666667pt;}
.y38_c00394{bottom:964.133333pt;}
.y33_c00394{bottom:972.800000pt;}
.y4_c00394{bottom:974.133333pt;}
.y37_c00394{bottom:979.866667pt;}
.y3_c00394{bottom:987.200000pt;}
.y36_c00394{bottom:995.866667pt;}
.y2_c00394{bottom:998.400000pt;}
.y1_c00394{bottom:1019.866667pt;}
.h7_c00394{height:26.666667pt;}
.h9_c00394{height:37.333333pt;}
.h4_c00394{height:42.666667pt;}
.h8_c00394{height:48.000000pt;}
.h5_c00394{height:53.333333pt;}
.h3_c00394{height:58.666667pt;}
.h6_c00394{height:64.000000pt;}
.h2_c00394{height:74.666667pt;}
.h0_c00394{height:1127.039957pt;}
.h1_c00394{height:1127.333333pt;}
.w0_c00394{width:853.760009pt;}
.w1_c00394{width:854.000000pt;}
.x0_c00394{left:0.000000pt;}
.x92_c00394{left:64.666667pt;}
.x10_c00394{left:71.733333pt;}
.x8c_c00394{left:74.266667pt;}
.x93_c00394{left:75.600000pt;}
.x9d_c00394{left:80.666667pt;}
.x94_c00394{left:82.933333pt;}
.x17_c00394{left:87.333333pt;}
.x26_c00394{left:88.266667pt;}
.x83_c00394{left:90.266667pt;}
.x91_c00394{left:91.600000pt;}
.x71_c00394{left:92.800000pt;}
.x6_c00394{left:97.866667pt;}
.xa3_c00394{left:103.600000pt;}
.x42_c00394{left:105.200000pt;}
.x18_c00394{left:107.866667pt;}
.x77_c00394{left:108.800000pt;}
.xa8_c00394{left:109.866667pt;}
.x5f_c00394{left:111.333333pt;}
.x59_c00394{left:112.800000pt;}
.x72_c00394{left:114.533333pt;}
.x1d_c00394{left:116.400000pt;}
.x38_c00394{left:117.600000pt;}
.x51_c00394{left:119.333333pt;}
.x69_c00394{left:120.266667pt;}
.x7d_c00394{left:121.733333pt;}
.x6c_c00394{left:124.400000pt;}
.x1e_c00394{left:125.333333pt;}
.x7f_c00394{left:126.933333pt;}
.x43_c00394{left:129.466667pt;}
.x4c_c00394{left:131.600000pt;}
.x88_c00394{left:132.800000pt;}
.x39_c00394{left:133.866667pt;}
.x84_c00394{left:135.466667pt;}
.x6e_c00394{left:136.666667pt;}
.x19_c00394{left:138.533333pt;}
.x2d_c00394{left:141.333333pt;}
.x34_c00394{left:143.066667pt;}
.x7_c00394{left:144.000000pt;}
.x63_c00394{left:145.200000pt;}
.x11_c00394{left:146.266667pt;}
.x95_c00394{left:147.866667pt;}
.x4d_c00394{left:148.933333pt;}
.x78_c00394{left:150.666667pt;}
.x48_c00394{left:152.000000pt;}
.xb_c00394{left:153.066667pt;}
.xa0_c00394{left:155.200000pt;}
.x99_c00394{left:156.133333pt;}
.x3d_c00394{left:157.200000pt;}
.x2e_c00394{left:158.933333pt;}
.x5a_c00394{left:163.066667pt;}
.x22_c00394{left:164.933333pt;}
.x89_c00394{left:166.400000pt;}
.x82_c00394{left:168.400000pt;}
.x52_c00394{left:170.133333pt;}
.x1f_c00394{left:171.733333pt;}
.x1a_c00394{left:172.800000pt;}
.x60_c00394{left:174.266667pt;}
.xc_c00394{left:175.200000pt;}
.x9c_c00394{left:176.933333pt;}
.x3e_c00394{left:178.666667pt;}
.x5b_c00394{left:180.400000pt;}
.x64_c00394{left:181.733333pt;}
.x49_c00394{left:183.066667pt;}
.x79_c00394{left:184.266667pt;}
.x27_c00394{left:185.866667pt;}
.x53_c00394{left:187.733333pt;}
.x44_c00394{left:190.533333pt;}
.x73_c00394{left:191.600000pt;}
.x12_c00394{left:192.933333pt;}
.x2f_c00394{left:194.400000pt;}
.x85_c00394{left:196.266667pt;}
.x6f_c00394{left:198.400000pt;}
.x35_c00394{left:201.333333pt;}
.x3a_c00394{left:202.666667pt;}
.xa9_c00394{left:203.600000pt;}
.x87_c00394{left:204.533333pt;}
.x20_c00394{left:207.866667pt;}
.x45_c00394{left:209.733333pt;}
.x8d_c00394{left:210.933333pt;}
.x30_c00394{left:212.266667pt;}
.x13_c00394{left:213.733333pt;}
.x61_c00394{left:216.133333pt;}
.x8e_c00394{left:217.066667pt;}
.xa4_c00394{left:218.133333pt;}
.xd_c00394{left:219.333333pt;}
.x65_c00394{left:220.800000pt;}
.x74_c00394{left:222.933333pt;}
.x28_c00394{left:224.266667pt;}
.xe_c00394{left:225.733333pt;}
.x31_c00394{left:228.266667pt;}
.xf_c00394{left:232.400000pt;}
.x54_c00394{left:235.733333pt;}
.x66_c00394{left:239.333333pt;}
.x4e_c00394{left:241.066667pt;}
.xa1_c00394{left:242.266667pt;}
.x29_c00394{left:244.400000pt;}
.x3f_c00394{left:245.866667pt;}
.x8a_c00394{left:246.800000pt;}
.x70_c00394{left:248.266667pt;}
.x5c_c00394{left:251.866667pt;}
.x21_c00394{left:253.333333pt;}
.x9a_c00394{left:254.666667pt;}
.x36_c00394{left:257.066667pt;}
.xa2_c00394{left:258.000000pt;}
.x6a_c00394{left:259.200000pt;}
.x3b_c00394{left:260.533333pt;}
.x4f_c00394{left:262.133333pt;}
.x4a_c00394{left:263.866667pt;}
.x23_c00394{left:264.800000pt;}
.x40_c00394{left:266.400000pt;}
.x80_c00394{left:267.600000pt;}
.x6b_c00394{left:269.466667pt;}
.x5d_c00394{left:272.400000pt;}
.xa5_c00394{left:279.866667pt;}
.xa6_c00394{left:280.800000pt;}
.x75_c00394{left:282.133333pt;}
.x67_c00394{left:284.133333pt;}
.x14_c00394{left:285.466667pt;}
.x1b_c00394{left:287.333333pt;}
.x1_c00394{left:289.600000pt;}
.x5e_c00394{left:290.666667pt;}
.x32_c00394{left:291.600000pt;}
.x55_c00394{left:293.333333pt;}
.x7a_c00394{left:294.933333pt;}
.x50_c00394{left:297.600000pt;}
.x2a_c00394{left:299.066667pt;}
.x3_c00394{left:300.800000pt;}
.x81_c00394{left:302.266667pt;}
.x7b_c00394{left:303.866667pt;}
.x9e_c00394{left:305.733333pt;}
.x4b_c00394{left:306.800000pt;}
.x24_c00394{left:307.733333pt;}
.x8_c00394{left:309.066667pt;}
.x37_c00394{left:310.533333pt;}
.x56_c00394{left:311.600000pt;}
.xa7_c00394{left:313.733333pt;}
.x97_c00394{left:317.333333pt;}
.x15_c00394{left:318.400000pt;}
.x46_c00394{left:320.400000pt;}
.x9f_c00394{left:322.000000pt;}
.x3c_c00394{left:322.933333pt;}
.x1c_c00394{left:326.000000pt;}
.x8f_c00394{left:327.333333pt;}
.x4_c00394{left:328.266667pt;}
.x25_c00394{left:329.866667pt;}
.x2b_c00394{left:331.066667pt;}
.x9b_c00394{left:332.133333pt;}
.x6d_c00394{left:333.733333pt;}
.x33_c00394{left:335.066667pt;}
.x9_c00394{left:336.000000pt;}
.x68_c00394{left:336.933333pt;}
.x8b_c00394{left:338.133333pt;}
.x57_c00394{left:339.066667pt;}
.x96_c00394{left:340.666667pt;}
.x76_c00394{left:342.000000pt;}
.x47_c00394{left:343.733333pt;}
.x7e_c00394{left:344.800000pt;}
.x16_c00394{left:347.200000pt;}
.x58_c00394{left:348.933333pt;}
.x2c_c00394{left:351.200000pt;}
.x98_c00394{left:354.133333pt;}
.x7c_c00394{left:356.666667pt;}
.x41_c00394{left:357.600000pt;}
.x5_c00394{left:358.666667pt;}
.xa_c00394{left:360.666667pt;}
.x90_c00394{left:361.866667pt;}
.x62_c00394{left:363.466667pt;}
.x86_c00394{left:366.800000pt;}
.xc8_c00394{left:391.333333pt;}
.x13b_c00394{left:393.600000pt;}
.x13f_c00394{left:397.466667pt;}
.xd0_c00394{left:405.066667pt;}
.xaa_c00394{left:407.066667pt;}
.xea_c00394{left:408.400000pt;}
.xfc_c00394{left:409.466667pt;}
.x144_c00394{left:410.400000pt;}
.x14e_c00394{left:411.733333pt;}
.xdd_c00394{left:417.466667pt;}
.xab_c00394{left:428.800000pt;}
.x12f_c00394{left:431.866667pt;}
.x107_c00394{left:434.400000pt;}
.xd1_c00394{left:436.400000pt;}
.x113_c00394{left:438.400000pt;}
.x14b_c00394{left:439.466667pt;}
.x11f_c00394{left:441.600000pt;}
.xd2_c00394{left:442.533333pt;}
.xc9_c00394{left:444.133333pt;}
.x138_c00394{left:445.200000pt;}
.x13a_c00394{left:446.533333pt;}
.x10a_c00394{left:447.733333pt;}
.xd3_c00394{left:449.200000pt;}
.x127_c00394{left:450.266667pt;}
.xb3_c00394{left:451.200000pt;}
.xba_c00394{left:452.133333pt;}
.xc1_c00394{left:453.333333pt;}
.xd4_c00394{left:455.866667pt;}
.xf6_c00394{left:457.600000pt;}
.xf1_c00394{left:458.933333pt;}
.xe2_c00394{left:459.866667pt;}
.x12a_c00394{left:462.000000pt;}
.xfd_c00394{left:463.200000pt;}
.xe5_c00394{left:464.666667pt;}
.xc2_c00394{left:467.466667pt;}
.xac_c00394{left:469.066667pt;}
.x129_c00394{left:473.066667pt;}
.xf7_c00394{left:475.466667pt;}
.x10c_c00394{left:476.933333pt;}
.x101_c00394{left:478.800000pt;}
.xc3_c00394{left:480.933333pt;}
.xd5_c00394{left:482.266667pt;}
.x11a_c00394{left:483.466667pt;}
.x130_c00394{left:484.400000pt;}
.x14d_c00394{left:487.066667pt;}
.x149_c00394{left:490.533333pt;}
.x122_c00394{left:491.466667pt;}
.x133_c00394{left:494.666667pt;}
.xfe_c00394{left:495.866667pt;}
.x140_c00394{left:497.200000pt;}
.xca_c00394{left:498.800000pt;}
.xdf_c00394{left:501.333333pt;}
.x145_c00394{left:502.266667pt;}
.x12b_c00394{left:503.333333pt;}
.x120_c00394{left:504.266667pt;}
.xf8_c00394{left:505.200000pt;}
.x11b_c00394{left:506.133333pt;}
.xb4_c00394{left:507.866667pt;}
.x114_c00394{left:510.000000pt;}
.x141_c00394{left:511.866667pt;}
.xbb_c00394{left:513.866667pt;}
.xe0_c00394{left:514.800000pt;}
.xc4_c00394{left:516.800000pt;}
.xe6_c00394{left:518.400000pt;}
.xe3_c00394{left:520.000000pt;}
.xe1_c00394{left:520.933333pt;}
.x10d_c00394{left:522.666667pt;}
.x102_c00394{left:523.866667pt;}
.x123_c00394{left:525.733333pt;}
.xb5_c00394{left:528.400000pt;}
.xad_c00394{left:530.133333pt;}
.x11c_c00394{left:531.066667pt;}
.xcb_c00394{left:533.333333pt;}
.xe7_c00394{left:535.333333pt;}
.xf9_c00394{left:536.533333pt;}
.x146_c00394{left:537.733333pt;}
.xd6_c00394{left:540.533333pt;}
.x134_c00394{left:542.400000pt;}
.x124_c00394{left:544.266667pt;}
.xae_c00394{left:546.400000pt;}
.x142_c00394{left:547.333333pt;}
.xbc_c00394{left:549.466667pt;}
.xff_c00394{left:551.200000pt;}
.xd7_c00394{left:554.000000pt;}
.x115_c00394{left:558.000000pt;}
.xec_c00394{left:559.200000pt;}
.xd8_c00394{left:560.666667pt;}
.xb6_c00394{left:561.733333pt;}
.xbd_c00394{left:562.933333pt;}
.x103_c00394{left:565.466667pt;}
.xd9_c00394{left:567.333333pt;}
.x108_c00394{left:568.400000pt;}
.xe8_c00394{left:569.866667pt;}
.x11d_c00394{left:572.933333pt;}
.xc5_c00394{left:574.666667pt;}
.xaf_c00394{left:575.866667pt;}
.xf2_c00394{left:579.600000pt;}
.xf0_c00394{left:580.800000pt;}
.x128_c00394{left:582.400000pt;}
.x125_c00394{left:583.600000pt;}
.x104_c00394{left:584.933333pt;}
.xbe_c00394{left:586.933333pt;}
.x137_c00394{left:588.533333pt;}
.xcc_c00394{left:590.000000pt;}
.x139_c00394{left:591.200000pt;}
.x14c_c00394{left:592.400000pt;}
.x10e_c00394{left:594.000000pt;}
.xb7_c00394{left:595.333333pt;}
.xbf_c00394{left:596.800000pt;}
.x12c_c00394{left:598.266667pt;}
.xf3_c00394{left:600.133333pt;}
.xed_c00394{left:601.733333pt;}
.xe9_c00394{left:603.200000pt;}
.xcd_c00394{left:606.266667pt;}
.x116_c00394{left:607.600000pt;}
.x148_c00394{left:608.933333pt;}
.xee_c00394{left:610.400000pt;}
.xf4_c00394{left:611.600000pt;}
.xc6_c00394{left:612.800000pt;}
.x105_c00394{left:614.666667pt;}
.x117_c00394{left:615.866667pt;}
.x126_c00394{left:619.333333pt;}
.x131_c00394{left:620.400000pt;}
.x14a_c00394{left:622.533333pt;}
.x121_c00394{left:624.266667pt;}
.xce_c00394{left:625.200000pt;}
.xe4_c00394{left:628.533333pt;}
.xda_c00394{left:629.733333pt;}
.x13c_c00394{left:631.200000pt;}
.xb0_c00394{left:632.533333pt;}
.x118_c00394{left:634.133333pt;}
.xfa_c00394{left:635.733333pt;}
.x100_c00394{left:636.933333pt;}
.xc0_c00394{left:638.666667pt;}
.x111_c00394{left:640.133333pt;}
.xb1_c00394{left:641.466667pt;}
.x12d_c00394{left:642.400000pt;}
.x147_c00394{left:643.333333pt;}
.x10b_c00394{left:644.800000pt;}
.x136_c00394{left:645.733333pt;}
.x10f_c00394{left:646.800000pt;}
.xcf_c00394{left:649.466667pt;}
.xdb_c00394{left:650.533333pt;}
.x12e_c00394{left:652.000000pt;}
.x13d_c00394{left:652.933333pt;}
.xde_c00394{left:654.933333pt;}
.xb8_c00394{left:656.400000pt;}
.xc7_c00394{left:660.133333pt;}
.xfb_c00394{left:661.333333pt;}
.x119_c00394{left:662.666667pt;}
.x106_c00394{left:663.600000pt;}
.xef_c00394{left:665.066667pt;}
.xeb_c00394{left:666.266667pt;}
.x2_c00394{left:667.466667pt;}
.x112_c00394{left:669.200000pt;}
.xf5_c00394{left:672.000000pt;}
.xb2_c00394{left:673.200000pt;}
.x109_c00394{left:674.266667pt;}
.x132_c00394{left:675.733333pt;}
.x143_c00394{left:676.933333pt;}
.x11e_c00394{left:677.866667pt;}
.xb9_c00394{left:679.733333pt;}
.xdc_c00394{left:681.200000pt;}
.x13e_c00394{left:683.866667pt;}
.x110_c00394{left:688.133333pt;}
.x135_c00394{left:691.066667pt;}
}





/* 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_c00395 {
    display:none;
  }
  .loading-indicator_c00395.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00395 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_c00395 { 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_c00395" -> "#page-container .classname_c00395")
 */
.pf_c00395 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00395 { /* 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_c00395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00395 { /* 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_c00395 { /* 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_c00395 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00395 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00395 {overflow:visible;}
  }
}
.c_c00395 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00395 { /* 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_c00395:after { /* webkit #35443 */
  content: '';
}
.t_c00395:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00395 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 */
}
.__c00395 { /* 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_c00395 { /* info for Javascript */
  display:none;
}
.l_c00395 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00395 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00395 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00395: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_c00395 {
    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_c00395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00395.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_c00395 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00395;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.000000;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;}
.m46_c00395{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00395{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf_c00395{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00395{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mca_c00395{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m19_c00395{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m101_c00395{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m5_c00395{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m25_c00395{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m17_c00395{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00395{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m33_c00395{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00395{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m54_c00395{transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00395{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00395{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00395{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00395{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00395{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);}
.m109_c00395{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m14_c00395{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00395{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6_c00395{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mee_c00395{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00395{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00395{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00395{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00395{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00395{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00395{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00395{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m92_c00395{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00395{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.ma_c00395{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m79_c00395{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00395{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mef_c00395{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00395{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00395{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.maf_c00395{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00395{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00395{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m47_c00395{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00395{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00395{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m85_c00395{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00395{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m58_c00395{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mda_c00395{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00395{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00395{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.maa_c00395{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m35_c00395{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00395{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.me4_c00395{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00395{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m89_c00395{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m24_c00395{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m94_c00395{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m88_c00395{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m71_c00395{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc_c00395{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00395{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00395{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m115_c00395{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m74_c00395{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m66_c00395{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00395{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00395{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m34_c00395{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m59_c00395{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00395{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m83_c00395{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m13_c00395{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00395{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m50_c00395{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m16_c00395{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.me3_c00395{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m23_c00395{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m78_c00395{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00395{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me0_c00395{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00395{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9_c00395{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00395{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00395{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m108_c00395{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m75_c00395{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m93_c00395{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00395{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m45_c00395{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.meb_c00395{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00395{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m40_c00395{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00395{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00395{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00395{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m102_c00395{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00395{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00395{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00395{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00395{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m52_c00395{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00395{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m28_c00395{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m49_c00395{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m32_c00395{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00395{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m26_c00395{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m60_c00395{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m82_c00395{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m36_c00395{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00395{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me7_c00395{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m91_c00395{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m21_c00395{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00395{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00395{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mec_c00395{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m38_c00395{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m41_c00395{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8_c00395{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m65_c00395{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m114_c00395{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m15_c00395{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m98_c00395{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00395{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m57_c00395{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00395{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00395{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00395{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00395{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00395{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00395{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me6_c00395{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00395{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00395{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00395{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md2_c00395{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.md8_c00395{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m77_c00395{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00395{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.med_c00395{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00395{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00395{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m113_c00395{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me9_c00395{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mac_c00395{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me1_c00395{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md6_c00395{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mce_c00395{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00395{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00395{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me8_c00395{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m27_c00395{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00395{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m110_c00395{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mab_c00395{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m20_c00395{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00395{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m61_c00395{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00395{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00395{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00395{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00395{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md9_c00395{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m76_c00395{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00395{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00395{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00395{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m90_c00395{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m37_c00395{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m63_c00395{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m42_c00395{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00395{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m72_c00395{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00395{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00395{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md1_c00395{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.md0_c00395{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m112_c00395{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md7_c00395{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00395{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m12_c00395{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m30_c00395{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m48_c00395{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m84_c00395{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mba_c00395{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me2_c00395{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me5_c00395{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00395{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00395{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m51_c00395{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00395{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m55_c00395{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00395{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md4_c00395{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m116_c00395{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m31_c00395{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00395{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m67_c00395{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m62_c00395{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00395{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m44_c00395{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m73_c00395{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00395{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m22_c00395{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m64_c00395{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mde_c00395{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00395{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m56_c00395{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m69_c00395{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mad_c00395{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m97_c00395{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00395{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00395{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m96_c00395{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00395{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00395{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb_c00395{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00395{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me_c00395{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m29_c00395{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m99_c00395{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m68_c00395{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mea_c00395{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11_c00395{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m95_c00395{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00395{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00395{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m111_c00395{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m81_c00395{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mae_c00395{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00395{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md_c00395{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00395{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00395{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.md5_c00395{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m39_c00395{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00395{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00395{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00395{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m87_c00395{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m117_c00395{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00395{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00395{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00395{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00395{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00395{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00395{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m103_c00395{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00395{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00395{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m70_c00395{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00395{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00395{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m43_c00395{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m86_c00395{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00395{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m80_c00395{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m1_c00395{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00395{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m53_c00395{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m100_c00395{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m104_c00395{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m107_c00395{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m106_c00395{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);}
.m105_c00395{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mff_c00395{transform:matrix(0.422000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422000,0.000000,0.000000,0.250000,0,0);}
.m0_c00395{transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00395{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.md3_c00395{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00395{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.m10_c00395{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m18_c00395{transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00395{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls0_c00395{letter-spacing:0.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{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__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00395{word-spacing:-16.500000px;}
.ws1_c00395{word-spacing:-5.222222px;}
.ws5_c00395{word-spacing:-3.918919px;}
.ws11_c00395{word-spacing:-2.750000px;}
.ws10_c00395{word-spacing:-1.764706px;}
.ws3_c00395{word-spacing:-0.492537px;}
.ws12_c00395{word-spacing:0.000000px;}
.ws6_c00395{word-spacing:2.000000px;}
.ws0_c00395{word-spacing:2.078167px;}
.wsc_c00395{word-spacing:3.589744px;}
.ws4_c00395{word-spacing:11.315789px;}
.ws9_c00395{word-spacing:29.285714px;}
.wsa_c00395{word-spacing:35.833333px;}
.ws7_c00395{word-spacing:44.166667px;}
.ws8_c00395{word-spacing:60.000000px;}
.wse_c00395{word-spacing:66.315789px;}
.wsb_c00395{word-spacing:87.884615px;}
.wsf_c00395{word-spacing:155.546875px;}
.wsd_c00395{word-spacing:164.386492px;}
.fc0_c00395{color:transparent;}
.fs8_c00395{font-size:24.000000px;}
.fs4_c00395{font-size:30.000000px;}
.fs6_c00395{font-size:36.000000px;}
.fs7_c00395{font-size:54.000000px;}
.fs1_c00395{font-size:60.000000px;}
.fs3_c00395{font-size:66.000000px;}
.fs5_c00395{font-size:72.000000px;}
.fs0_c00395{font-size:84.000000px;}
.fs2_c00395{font-size:90.000000px;}
.y0_c00395{bottom:0.000000px;}
.y66_c00395{bottom:172.500000px;}
.y31_c00395{bottom:190.050000px;}
.y65_c00395{bottom:190.800000px;}
.y30_c00395{bottom:204.150000px;}
.y64_c00395{bottom:208.800000px;}
.y2f_c00395{bottom:218.850000px;}
.y63_c00395{bottom:231.150000px;}
.y2e_c00395{bottom:232.950000px;}
.y2d_c00395{bottom:247.350000px;}
.y62_c00395{bottom:249.900000px;}
.y2c_c00395{bottom:261.000000px;}
.y61_c00395{bottom:267.900000px;}
.y2b_c00395{bottom:275.700000px;}
.y60_c00395{bottom:286.200000px;}
.y2a_c00395{bottom:290.100000px;}
.y5f_c00395{bottom:304.200000px;}
.y5e_c00395{bottom:326.100000px;}
.y29_c00395{bottom:347.100000px;}
.y5d_c00395{bottom:347.700000px;}
.y28_c00395{bottom:366.150000px;}
.y5c_c00395{bottom:370.500000px;}
.y27_c00395{bottom:383.850000px;}
.y5b_c00395{bottom:393.150000px;}
.y26_c00395{bottom:402.150000px;}
.y5a_c00395{bottom:411.450000px;}
.y25_c00395{bottom:420.450000px;}
.y59_c00395{bottom:433.800000px;}
.y24_c00395{bottom:440.550000px;}
.y58_c00395{bottom:454.350000px;}
.y23_c00395{bottom:461.100000px;}
.y57_c00395{bottom:461.850000px;}
.y56_c00395{bottom:469.800000px;}
.y55_c00395{bottom:481.650000px;}
.y54_c00395{bottom:490.350000px;}
.y22_c00395{bottom:496.800000px;}
.y21_c00395{bottom:514.800000px;}
.y53_c00395{bottom:517.350000px;}
.y52_c00395{bottom:535.650000px;}
.y20_c00395{bottom:541.800000px;}
.y1f_c00395{bottom:560.550000px;}
.y51_c00395{bottom:569.850000px;}
.y1e_c00395{bottom:585.750000px;}
.y50_c00395{bottom:596.550000px;}
.y1d_c00395{bottom:608.700000px;}
.y4f_c00395{bottom:616.350000px;}
.y1c_c00395{bottom:627.450000px;}
.y4e_c00395{bottom:637.350000px;}
.y1b_c00395{bottom:645.450000px;}
.y4d_c00395{bottom:657.450000px;}
.y1a_c00395{bottom:663.450000px;}
.y4c_c00395{bottom:675.450000px;}
.y19_c00395{bottom:683.250000px;}
.y4b_c00395{bottom:693.450000px;}
.y18_c00395{bottom:706.950000px;}
.y4a_c00395{bottom:711.750000px;}
.y17_c00395{bottom:730.050000px;}
.y49_c00395{bottom:733.800000px;}
.y16_c00395{bottom:750.600000px;}
.y48_c00395{bottom:751.800000px;}
.y47_c00395{bottom:770.100000px;}
.y15_c00395{bottom:771.450000px;}
.y46_c00395{bottom:787.800000px;}
.y13_c00395{bottom:798.450000px;}
.y45_c00395{bottom:806.100000px;}
.y12_c00395{bottom:816.450000px;}
.y44_c00395{bottom:823.800000px;}
.y11_c00395{bottom:834.750000px;}
.y43_c00395{bottom:842.100000px;}
.y10_c00395{bottom:852.450000px;}
.y42_c00395{bottom:860.100000px;}
.yf_c00395{bottom:870.450000px;}
.y41_c00395{bottom:877.800000px;}
.ye_c00395{bottom:888.750000px;}
.y40_c00395{bottom:895.800000px;}
.yd_c00395{bottom:906.450000px;}
.y3f_c00395{bottom:914.100000px;}
.yc_c00395{bottom:924.750000px;}
.y3e_c00395{bottom:936.150000px;}
.yb_c00395{bottom:942.450000px;}
.y3d_c00395{bottom:950.550000px;}
.ya_c00395{bottom:960.450000px;}
.y3c_c00395{bottom:965.250000px;}
.y3b_c00395{bottom:978.900000px;}
.y9_c00395{bottom:986.100000px;}
.y14_c00395{bottom:987.450000px;}
.y3a_c00395{bottom:992.100000px;}
.y39_c00395{bottom:1006.200000px;}
.y8_c00395{bottom:1009.050000px;}
.y7_c00395{bottom:1015.950000px;}
.y38_c00395{bottom:1023.150000px;}
.y6_c00395{bottom:1025.700000px;}
.y37_c00395{bottom:1035.300000px;}
.y5_c00395{bottom:1042.950000px;}
.y36_c00395{bottom:1053.000000px;}
.y4_c00395{bottom:1062.450000px;}
.y35_c00395{bottom:1068.000000px;}
.y3_c00395{bottom:1084.350000px;}
.y34_c00395{bottom:1089.300000px;}
.y33_c00395{bottom:1107.300000px;}
.y2_c00395{bottom:1118.850000px;}
.y32_c00395{bottom:1125.300000px;}
.y1_c00395{bottom:1149.450000px;}
.ha_c00395{height:24.000000px;}
.h6_c00395{height:30.000000px;}
.h8_c00395{height:36.000000px;}
.h9_c00395{height:54.000000px;}
.h3_c00395{height:60.000000px;}
.h5_c00395{height:66.000000px;}
.h7_c00395{height:72.000000px;}
.h2_c00395{height:84.000000px;}
.h4_c00395{height:90.000000px;}
.h1_c00395{height:1268.250000px;}
.h0_c00395{height:1268.279937px;}
.w0_c00395{width:960.480010px;}
.w1_c00395{width:960.750000px;}
.x0_c00395{left:0.000000px;}
.x4_c00395{left:182.550000px;}
.x6d_c00395{left:188.700000px;}
.x87_c00395{left:190.050000px;}
.xa_c00395{left:200.400000px;}
.x3d_c00395{left:201.750000px;}
.x48_c00395{left:202.800000px;}
.x63_c00395{left:205.200000px;}
.x6a_c00395{left:206.550000px;}
.x74_c00395{left:209.400000px;}
.x8e_c00395{left:217.200000px;}
.xc_c00395{left:219.000000px;}
.x43_c00395{left:221.850000px;}
.x4b_c00395{left:222.900000px;}
.x18_c00395{left:223.950000px;}
.x67_c00395{left:225.000000px;}
.x80_c00395{left:226.500000px;}
.x12_c00395{left:227.850000px;}
.x26_c00395{left:229.350000px;}
.x6e_c00395{left:232.650000px;}
.xb_c00395{left:234.900000px;}
.x88_c00395{left:236.850000px;}
.x56_c00395{left:239.700000px;}
.x23_c00395{left:242.700000px;}
.x1a_c00395{left:245.250000px;}
.x1e_c00395{left:247.350000px;}
.x71_c00395{left:250.350000px;}
.x2c_c00395{left:255.000000px;}
.x64_c00395{left:256.350000px;}
.x89_c00395{left:259.500000px;}
.x19_c00395{left:261.750000px;}
.x4f_c00395{left:262.800000px;}
.x1f_c00395{left:265.050000px;}
.x60_c00395{left:266.100000px;}
.x70_c00395{left:267.750000px;}
.x5d_c00395{left:269.400000px;}
.x31_c00395{left:271.650000px;}
.x4d_c00395{left:274.350000px;}
.x4c_c00395{left:278.400000px;}
.x75_c00395{left:279.600000px;}
.x50_c00395{left:281.400000px;}
.x1b_c00395{left:282.900000px;}
.x2_c00395{left:286.200000px;}
.x5b_c00395{left:288.300000px;}
.x13_c00395{left:292.350000px;}
.x32_c00395{left:295.050000px;}
.x4e_c00395{left:296.700000px;}
.x49_c00395{left:298.800000px;}
.x3e_c00395{left:301.050000px;}
.x44_c00395{left:302.100000px;}
.x24_c00395{left:303.150000px;}
.x7b_c00395{left:304.950000px;}
.x8b_c00395{left:306.600000px;}
.x6b_c00395{left:312.000000px;}
.x68_c00395{left:313.500000px;}
.x37_c00395{left:314.550000px;}
.x2d_c00395{left:315.900000px;}
.x5e_c00395{left:318.300000px;}
.x27_c00395{left:320.850000px;}
.x5_c00395{left:323.250000px;}
.x38_c00395{left:324.300000px;}
.x33_c00395{left:326.400000px;}
.x5f_c00395{left:328.350000px;}
.x2e_c00395{left:329.550000px;}
.xd_c00395{left:332.400000px;}
.x20_c00395{left:333.450000px;}
.x81_c00395{left:336.600000px;}
.x51_c00395{left:338.700000px;}
.x39_c00395{left:339.750000px;}
.x1c_c00395{left:341.250000px;}
.x84_c00395{left:342.300000px;}
.x6c_c00395{left:346.500000px;}
.x3_c00395{left:349.200000px;}
.x4a_c00395{left:351.450000px;}
.x5c_c00395{left:354.150000px;}
.x34_c00395{left:359.550000px;}
.x14_c00395{left:362.250000px;}
.x8a_c00395{left:366.150000px;}
.xe_c00395{left:368.700000px;}
.x8c_c00395{left:370.650000px;}
.x3f_c00395{left:372.300000px;}
.x8f_c00395{left:375.900000px;}
.x6f_c00395{left:379.500000px;}
.x45_c00395{left:381.750000px;}
.x85_c00395{left:384.450000px;}
.x52_c00395{left:385.500000px;}
.x7a_c00395{left:389.250000px;}
.x90_c00395{left:390.300000px;}
.x91_c00395{left:396.600000px;}
.x65_c00395{left:397.800000px;}
.x6_c00395{left:399.150000px;}
.x15_c00395{left:401.100000px;}
.x46_c00395{left:404.400000px;}
.x21_c00395{left:405.450000px;}
.x86_c00395{left:410.700000px;}
.x7_c00395{left:412.050000px;}
.x35_c00395{left:415.350000px;}
.x7e_c00395{left:416.550000px;}
.xf_c00395{left:418.350000px;}
.x77_c00395{left:419.850000px;}
.x3a_c00395{left:421.350000px;}
.x40_c00395{left:422.700000px;}
.x16_c00395{left:424.500000px;}
.x47_c00395{left:426.000000px;}
.x1_c00395{left:427.650000px;}
.x53_c00395{left:430.200000px;}
.x57_c00395{left:431.550000px;}
.x82_c00395{left:432.900000px;}
.x41_c00395{left:434.550000px;}
.x3b_c00395{left:436.800000px;}
.x28_c00395{left:438.450000px;}
.x54_c00395{left:441.300000px;}
.x58_c00395{left:442.650000px;}
.x72_c00395{left:443.700000px;}
.x7c_c00395{left:444.900000px;}
.x22_c00395{left:446.100000px;}
.x29_c00395{left:447.750000px;}
.x76_c00395{left:450.600000px;}
.x61_c00395{left:452.550000px;}
.x42_c00395{left:454.350000px;}
.x8_c00395{left:458.100000px;}
.x66_c00395{left:460.050000px;}
.x78_c00395{left:461.250000px;}
.x69_c00395{left:463.950000px;}
.x10_c00395{left:469.500000px;}
.x59_c00395{left:473.550000px;}
.x55_c00395{left:475.500000px;}
.x7f_c00395{left:479.850000px;}
.x62_c00395{left:481.350000px;}
.x11_c00395{left:483.150000px;}
.x79_c00395{left:485.400000px;}
.x1d_c00395{left:486.750000px;}
.x2a_c00395{left:489.450000px;}
.x36_c00395{left:491.550000px;}
.x5a_c00395{left:493.950000px;}
.x9_c00395{left:495.900000px;}
.x2f_c00395{left:498.000000px;}
.x2b_c00395{left:500.250000px;}
.x25_c00395{left:501.600000px;}
.x8d_c00395{left:504.900000px;}
.x3c_c00395{left:507.750000px;}
.x73_c00395{left:510.300000px;}
.x30_c00395{left:511.350000px;}
.x7d_c00395{left:515.400000px;}
.x83_c00395{left:516.450000px;}
.x17_c00395{left:517.800000px;}
.x92_c00395{left:541.800000px;}
.xd4_c00395{left:542.850000px;}
.x100_c00395{left:546.150000px;}
.x110_c00395{left:547.200000px;}
.x116_c00395{left:548.250000px;}
.xb4_c00395{left:555.600000px;}
.x9b_c00395{left:557.850000px;}
.xa4_c00395{left:559.200000px;}
.xd6_c00395{left:561.300000px;}
.xef_c00395{left:562.650000px;}
.x10e_c00395{left:563.850000px;}
.x112_c00395{left:565.800000px;}
.x123_c00395{left:568.650000px;}
.xc7_c00395{left:570.600000px;}
.xa5_c00395{left:573.900000px;}
.x11b_c00395{left:584.250000px;}
.x93_c00395{left:585.300000px;}
.x121_c00395{left:586.500000px;}
.x9c_c00395{left:587.700000px;}
.x127_c00395{left:591.300000px;}
.xce_c00395{left:592.350000px;}
.xb5_c00395{left:593.400000px;}
.xbb_c00395{left:595.800000px;}
.xf1_c00395{left:598.200000px;}
.xf4_c00395{left:599.700000px;}
.xac_c00395{left:601.650000px;}
.xe4_c00395{left:604.650000px;}
.xea_c00395{left:606.000000px;}
.x101_c00395{left:607.050000px;}
.xa6_c00395{left:614.550000px;}
.xcf_c00395{left:617.250000px;}
.xdc_c00395{left:619.350000px;}
.xe5_c00395{left:620.850000px;}
.xf5_c00395{left:623.850000px;}
.x102_c00395{left:626.850000px;}
.x9d_c00395{left:628.800000px;}
.xd7_c00395{left:630.750000px;}
.xc8_c00395{left:634.200000px;}
.xb6_c00395{left:636.300000px;}
.x11a_c00395{left:637.800000px;}
.x11e_c00395{left:639.000000px;}
.x120_c00395{left:640.050000px;}
.xf6_c00395{left:641.850000px;}
.x11c_c00395{left:643.650000px;}
.x103_c00395{left:645.150000px;}
.xec_c00395{left:646.650000px;}
.x9e_c00395{left:648.300000px;}
.x94_c00395{left:650.850000px;}
.x124_c00395{left:654.300000px;}
.xe6_c00395{left:656.100000px;}
.x113_c00395{left:658.050000px;}
.x128_c00395{left:659.400000px;}
.xd2_c00395{left:662.700000px;}
.xad_c00395{left:664.350000px;}
.xf2_c00395{left:668.850000px;}
.x11d_c00395{left:670.800000px;}
.xe0_c00395{left:672.000000px;}
.xbc_c00395{left:673.200000px;}
.x129_c00395{left:674.250000px;}
.xd5_c00395{left:676.350000px;}
.x9f_c00395{left:677.850000px;}
.xc9_c00395{left:678.900000px;}
.xd3_c00395{left:681.450000px;}
.xb7_c00395{left:683.100000px;}
.x111_c00395{left:684.450000px;}
.xd0_c00395{left:685.650000px;}
.xbd_c00395{left:687.150000px;}
.x95_c00395{left:690.150000px;}
.x104_c00395{left:693.450000px;}
.xbe_c00395{left:695.100000px;}
.xa7_c00395{left:696.600000px;}
.xfc_c00395{left:698.850000px;}
.xe1_c00395{left:700.050000px;}
.xb8_c00395{left:701.100000px;}
.xae_c00395{left:703.200000px;}
.x10f_c00395{left:705.150000px;}
.xf7_c00395{left:706.200000px;}
.x11f_c00395{left:708.000000px;}
.xbf_c00395{left:709.500000px;}
.xd8_c00395{left:711.600000px;}
.xe7_c00395{left:713.700000px;}
.xfd_c00395{left:715.800000px;}
.xe2_c00395{left:720.150000px;}
.x96_c00395{left:722.250000px;}
.xc0_c00395{left:723.900000px;}
.xb9_c00395{left:727.050000px;}
.xca_c00395{left:728.250000px;}
.x122_c00395{left:730.950000px;}
.xe8_c00395{left:733.500000px;}
.xdd_c00395{left:736.050000px;}
.x97_c00395{left:737.700000px;}
.xc1_c00395{left:738.900000px;}
.xa0_c00395{left:741.600000px;}
.xa8_c00395{left:743.100000px;}
.xeb_c00395{left:744.150000px;}
.xc2_c00395{left:746.400000px;}
.xde_c00395{left:748.350000px;}
.xcb_c00395{left:749.850000px;}
.xc3_c00395{left:753.900000px;}
.xe3_c00395{left:755.400000px;}
.xd9_c00395{left:761.250000px;}
.xaf_c00395{left:762.300000px;}
.xf8_c00395{left:764.100000px;}
.xdf_c00395{left:765.600000px;}
.x107_c00395{left:766.800000px;}
.xa1_c00395{left:768.600000px;}
.xb0_c00395{left:770.550000px;}
.xa9_c00395{left:771.900000px;}
.xba_c00395{left:773.850000px;}
.x98_c00395{left:775.800000px;}
.x10b_c00395{left:777.000000px;}
.x119_c00395{left:778.200000px;}
.xfe_c00395{left:781.950000px;}
.xc4_c00395{left:783.300000px;}
.xf9_c00395{left:784.950000px;}
.xa2_c00395{left:787.350000px;}
.x114_c00395{left:788.400000px;}
.xaa_c00395{left:792.750000px;}
.x10d_c00395{left:794.550000px;}
.xed_c00395{left:795.600000px;}
.x99_c00395{left:797.700000px;}
.xfa_c00395{left:800.400000px;}
.xb1_c00395{left:801.450000px;}
.x105_c00395{left:806.100000px;}
.xf0_c00395{left:807.750000px;}
.xcc_c00395{left:809.550000px;}
.xd1_c00395{left:811.950000px;}
.xff_c00395{left:813.600000px;}
.x10c_c00395{left:815.850000px;}
.xe9_c00395{left:817.350000px;}
.x108_c00395{left:820.800000px;}
.xda_c00395{left:823.500000px;}
.xf3_c00395{left:830.400000px;}
.xb2_c00395{left:832.350000px;}
.xcd_c00395{left:834.000000px;}
.xa3_c00395{left:836.700000px;}
.x109_c00395{left:838.050000px;}
.xc5_c00395{left:839.850000px;}
.xee_c00395{left:841.350000px;}
.x115_c00395{left:845.700000px;}
.x125_c00395{left:849.000000px;}
.xfb_c00395{left:851.850000px;}
.xdb_c00395{left:853.050000px;}
.x9a_c00395{left:854.550000px;}
.x117_c00395{left:858.450000px;}
.x10a_c00395{left:859.950000px;}
.x126_c00395{left:861.300000px;}
.xab_c00395{left:862.650000px;}
.xb3_c00395{left:867.300000px;}
.xc6_c00395{left:868.650000px;}
.x106_c00395{left:873.450000px;}
.x118_c00395{left:883.350000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws2_c00395{word-spacing:-14.666667pt;}
.ws1_c00395{word-spacing:-4.641975pt;}
.ws5_c00395{word-spacing:-3.483483pt;}
.ws11_c00395{word-spacing:-2.444444pt;}
.ws10_c00395{word-spacing:-1.568627pt;}
.ws3_c00395{word-spacing:-0.437811pt;}
.ws12_c00395{word-spacing:0.000000pt;}
.ws6_c00395{word-spacing:1.777778pt;}
.ws0_c00395{word-spacing:1.847260pt;}
.wsc_c00395{word-spacing:3.190883pt;}
.ws4_c00395{word-spacing:10.058480pt;}
.ws9_c00395{word-spacing:26.031746pt;}
.wsa_c00395{word-spacing:31.851852pt;}
.ws7_c00395{word-spacing:39.259259pt;}
.ws8_c00395{word-spacing:53.333333pt;}
.wse_c00395{word-spacing:58.947368pt;}
.wsb_c00395{word-spacing:78.119658pt;}
.wsf_c00395{word-spacing:138.263889pt;}
.wsd_c00395{word-spacing:146.121326pt;}
.fs8_c00395{font-size:21.333333pt;}
.fs4_c00395{font-size:26.666667pt;}
.fs6_c00395{font-size:32.000000pt;}
.fs7_c00395{font-size:48.000000pt;}
.fs1_c00395{font-size:53.333333pt;}
.fs3_c00395{font-size:58.666667pt;}
.fs5_c00395{font-size:64.000000pt;}
.fs0_c00395{font-size:74.666667pt;}
.fs2_c00395{font-size:80.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y66_c00395{bottom:153.333333pt;}
.y31_c00395{bottom:168.933333pt;}
.y65_c00395{bottom:169.600000pt;}
.y30_c00395{bottom:181.466667pt;}
.y64_c00395{bottom:185.600000pt;}
.y2f_c00395{bottom:194.533333pt;}
.y63_c00395{bottom:205.466667pt;}
.y2e_c00395{bottom:207.066667pt;}
.y2d_c00395{bottom:219.866667pt;}
.y62_c00395{bottom:222.133333pt;}
.y2c_c00395{bottom:232.000000pt;}
.y61_c00395{bottom:238.133333pt;}
.y2b_c00395{bottom:245.066667pt;}
.y60_c00395{bottom:254.400000pt;}
.y2a_c00395{bottom:257.866667pt;}
.y5f_c00395{bottom:270.400000pt;}
.y5e_c00395{bottom:289.866667pt;}
.y29_c00395{bottom:308.533333pt;}
.y5d_c00395{bottom:309.066667pt;}
.y28_c00395{bottom:325.466667pt;}
.y5c_c00395{bottom:329.333333pt;}
.y27_c00395{bottom:341.200000pt;}
.y5b_c00395{bottom:349.466667pt;}
.y26_c00395{bottom:357.466667pt;}
.y5a_c00395{bottom:365.733333pt;}
.y25_c00395{bottom:373.733333pt;}
.y59_c00395{bottom:385.600000pt;}
.y24_c00395{bottom:391.600000pt;}
.y58_c00395{bottom:403.866667pt;}
.y23_c00395{bottom:409.866667pt;}
.y57_c00395{bottom:410.533333pt;}
.y56_c00395{bottom:417.600000pt;}
.y55_c00395{bottom:428.133333pt;}
.y54_c00395{bottom:435.866667pt;}
.y22_c00395{bottom:441.600000pt;}
.y21_c00395{bottom:457.600000pt;}
.y53_c00395{bottom:459.866667pt;}
.y52_c00395{bottom:476.133333pt;}
.y20_c00395{bottom:481.600000pt;}
.y1f_c00395{bottom:498.266667pt;}
.y51_c00395{bottom:506.533333pt;}
.y1e_c00395{bottom:520.666667pt;}
.y50_c00395{bottom:530.266667pt;}
.y1d_c00395{bottom:541.066667pt;}
.y4f_c00395{bottom:547.866667pt;}
.y1c_c00395{bottom:557.733333pt;}
.y4e_c00395{bottom:566.533333pt;}
.y1b_c00395{bottom:573.733333pt;}
.y4d_c00395{bottom:584.400000pt;}
.y1a_c00395{bottom:589.733333pt;}
.y4c_c00395{bottom:600.400000pt;}
.y19_c00395{bottom:607.333333pt;}
.y4b_c00395{bottom:616.400000pt;}
.y18_c00395{bottom:628.400000pt;}
.y4a_c00395{bottom:632.666667pt;}
.y17_c00395{bottom:648.933333pt;}
.y49_c00395{bottom:652.266667pt;}
.y16_c00395{bottom:667.200000pt;}
.y48_c00395{bottom:668.266667pt;}
.y47_c00395{bottom:684.533333pt;}
.y15_c00395{bottom:685.733333pt;}
.y46_c00395{bottom:700.266667pt;}
.y13_c00395{bottom:709.733333pt;}
.y45_c00395{bottom:716.533333pt;}
.y12_c00395{bottom:725.733333pt;}
.y44_c00395{bottom:732.266667pt;}
.y11_c00395{bottom:742.000000pt;}
.y43_c00395{bottom:748.533333pt;}
.y10_c00395{bottom:757.733333pt;}
.y42_c00395{bottom:764.533333pt;}
.yf_c00395{bottom:773.733333pt;}
.y41_c00395{bottom:780.266667pt;}
.ye_c00395{bottom:790.000000pt;}
.y40_c00395{bottom:796.266667pt;}
.yd_c00395{bottom:805.733333pt;}
.y3f_c00395{bottom:812.533333pt;}
.yc_c00395{bottom:822.000000pt;}
.y3e_c00395{bottom:832.133333pt;}
.yb_c00395{bottom:837.733333pt;}
.y3d_c00395{bottom:844.933333pt;}
.ya_c00395{bottom:853.733333pt;}
.y3c_c00395{bottom:858.000000pt;}
.y3b_c00395{bottom:870.133333pt;}
.y9_c00395{bottom:876.533333pt;}
.y14_c00395{bottom:877.733333pt;}
.y3a_c00395{bottom:881.866667pt;}
.y39_c00395{bottom:894.400000pt;}
.y8_c00395{bottom:896.933333pt;}
.y7_c00395{bottom:903.066667pt;}
.y38_c00395{bottom:909.466667pt;}
.y6_c00395{bottom:911.733333pt;}
.y37_c00395{bottom:920.266667pt;}
.y5_c00395{bottom:927.066667pt;}
.y36_c00395{bottom:936.000000pt;}
.y4_c00395{bottom:944.400000pt;}
.y35_c00395{bottom:949.333333pt;}
.y3_c00395{bottom:963.866667pt;}
.y34_c00395{bottom:968.266667pt;}
.y33_c00395{bottom:984.266667pt;}
.y2_c00395{bottom:994.533333pt;}
.y32_c00395{bottom:1000.266667pt;}
.y1_c00395{bottom:1021.733333pt;}
.ha_c00395{height:21.333333pt;}
.h6_c00395{height:26.666667pt;}
.h8_c00395{height:32.000000pt;}
.h9_c00395{height:48.000000pt;}
.h3_c00395{height:53.333333pt;}
.h5_c00395{height:58.666667pt;}
.h7_c00395{height:64.000000pt;}
.h2_c00395{height:74.666667pt;}
.h4_c00395{height:80.000000pt;}
.h1_c00395{height:1127.333333pt;}
.h0_c00395{height:1127.359944pt;}
.w0_c00395{width:853.760009pt;}
.w1_c00395{width:854.000000pt;}
.x0_c00395{left:0.000000pt;}
.x4_c00395{left:162.266667pt;}
.x6d_c00395{left:167.733333pt;}
.x87_c00395{left:168.933333pt;}
.xa_c00395{left:178.133333pt;}
.x3d_c00395{left:179.333333pt;}
.x48_c00395{left:180.266667pt;}
.x63_c00395{left:182.400000pt;}
.x6a_c00395{left:183.600000pt;}
.x74_c00395{left:186.133333pt;}
.x8e_c00395{left:193.066667pt;}
.xc_c00395{left:194.666667pt;}
.x43_c00395{left:197.200000pt;}
.x4b_c00395{left:198.133333pt;}
.x18_c00395{left:199.066667pt;}
.x67_c00395{left:200.000000pt;}
.x80_c00395{left:201.333333pt;}
.x12_c00395{left:202.533333pt;}
.x26_c00395{left:203.866667pt;}
.x6e_c00395{left:206.800000pt;}
.xb_c00395{left:208.800000pt;}
.x88_c00395{left:210.533333pt;}
.x56_c00395{left:213.066667pt;}
.x23_c00395{left:215.733333pt;}
.x1a_c00395{left:218.000000pt;}
.x1e_c00395{left:219.866667pt;}
.x71_c00395{left:222.533333pt;}
.x2c_c00395{left:226.666667pt;}
.x64_c00395{left:227.866667pt;}
.x89_c00395{left:230.666667pt;}
.x19_c00395{left:232.666667pt;}
.x4f_c00395{left:233.600000pt;}
.x1f_c00395{left:235.600000pt;}
.x60_c00395{left:236.533333pt;}
.x70_c00395{left:238.000000pt;}
.x5d_c00395{left:239.466667pt;}
.x31_c00395{left:241.466667pt;}
.x4d_c00395{left:243.866667pt;}
.x4c_c00395{left:247.466667pt;}
.x75_c00395{left:248.533333pt;}
.x50_c00395{left:250.133333pt;}
.x1b_c00395{left:251.466667pt;}
.x2_c00395{left:254.400000pt;}
.x5b_c00395{left:256.266667pt;}
.x13_c00395{left:259.866667pt;}
.x32_c00395{left:262.266667pt;}
.x4e_c00395{left:263.733333pt;}
.x49_c00395{left:265.600000pt;}
.x3e_c00395{left:267.600000pt;}
.x44_c00395{left:268.533333pt;}
.x24_c00395{left:269.466667pt;}
.x7b_c00395{left:271.066667pt;}
.x8b_c00395{left:272.533333pt;}
.x6b_c00395{left:277.333333pt;}
.x68_c00395{left:278.666667pt;}
.x37_c00395{left:279.600000pt;}
.x2d_c00395{left:280.800000pt;}
.x5e_c00395{left:282.933333pt;}
.x27_c00395{left:285.200000pt;}
.x5_c00395{left:287.333333pt;}
.x38_c00395{left:288.266667pt;}
.x33_c00395{left:290.133333pt;}
.x5f_c00395{left:291.866667pt;}
.x2e_c00395{left:292.933333pt;}
.xd_c00395{left:295.466667pt;}
.x20_c00395{left:296.400000pt;}
.x81_c00395{left:299.200000pt;}
.x51_c00395{left:301.066667pt;}
.x39_c00395{left:302.000000pt;}
.x1c_c00395{left:303.333333pt;}
.x84_c00395{left:304.266667pt;}
.x6c_c00395{left:308.000000pt;}
.x3_c00395{left:310.400000pt;}
.x4a_c00395{left:312.400000pt;}
.x5c_c00395{left:314.800000pt;}
.x34_c00395{left:319.600000pt;}
.x14_c00395{left:322.000000pt;}
.x8a_c00395{left:325.466667pt;}
.xe_c00395{left:327.733333pt;}
.x8c_c00395{left:329.466667pt;}
.x3f_c00395{left:330.933333pt;}
.x8f_c00395{left:334.133333pt;}
.x6f_c00395{left:337.333333pt;}
.x45_c00395{left:339.333333pt;}
.x85_c00395{left:341.733333pt;}
.x52_c00395{left:342.666667pt;}
.x7a_c00395{left:346.000000pt;}
.x90_c00395{left:346.933333pt;}
.x91_c00395{left:352.533333pt;}
.x65_c00395{left:353.600000pt;}
.x6_c00395{left:354.800000pt;}
.x15_c00395{left:356.533333pt;}
.x46_c00395{left:359.466667pt;}
.x21_c00395{left:360.400000pt;}
.x86_c00395{left:365.066667pt;}
.x7_c00395{left:366.266667pt;}
.x35_c00395{left:369.200000pt;}
.x7e_c00395{left:370.266667pt;}
.xf_c00395{left:371.866667pt;}
.x77_c00395{left:373.200000pt;}
.x3a_c00395{left:374.533333pt;}
.x40_c00395{left:375.733333pt;}
.x16_c00395{left:377.333333pt;}
.x47_c00395{left:378.666667pt;}
.x1_c00395{left:380.133333pt;}
.x53_c00395{left:382.400000pt;}
.x57_c00395{left:383.600000pt;}
.x82_c00395{left:384.800000pt;}
.x41_c00395{left:386.266667pt;}
.x3b_c00395{left:388.266667pt;}
.x28_c00395{left:389.733333pt;}
.x54_c00395{left:392.266667pt;}
.x58_c00395{left:393.466667pt;}
.x72_c00395{left:394.400000pt;}
.x7c_c00395{left:395.466667pt;}
.x22_c00395{left:396.533333pt;}
.x29_c00395{left:398.000000pt;}
.x76_c00395{left:400.533333pt;}
.x61_c00395{left:402.266667pt;}
.x42_c00395{left:403.866667pt;}
.x8_c00395{left:407.200000pt;}
.x66_c00395{left:408.933333pt;}
.x78_c00395{left:410.000000pt;}
.x69_c00395{left:412.400000pt;}
.x10_c00395{left:417.333333pt;}
.x59_c00395{left:420.933333pt;}
.x55_c00395{left:422.666667pt;}
.x7f_c00395{left:426.533333pt;}
.x62_c00395{left:427.866667pt;}
.x11_c00395{left:429.466667pt;}
.x79_c00395{left:431.466667pt;}
.x1d_c00395{left:432.666667pt;}
.x2a_c00395{left:435.066667pt;}
.x36_c00395{left:436.933333pt;}
.x5a_c00395{left:439.066667pt;}
.x9_c00395{left:440.800000pt;}
.x2f_c00395{left:442.666667pt;}
.x2b_c00395{left:444.666667pt;}
.x25_c00395{left:445.866667pt;}
.x8d_c00395{left:448.800000pt;}
.x3c_c00395{left:451.333333pt;}
.x73_c00395{left:453.600000pt;}
.x30_c00395{left:454.533333pt;}
.x7d_c00395{left:458.133333pt;}
.x83_c00395{left:459.066667pt;}
.x17_c00395{left:460.266667pt;}
.x92_c00395{left:481.600000pt;}
.xd4_c00395{left:482.533333pt;}
.x100_c00395{left:485.466667pt;}
.x110_c00395{left:486.400000pt;}
.x116_c00395{left:487.333333pt;}
.xb4_c00395{left:493.866667pt;}
.x9b_c00395{left:495.866667pt;}
.xa4_c00395{left:497.066667pt;}
.xd6_c00395{left:498.933333pt;}
.xef_c00395{left:500.133333pt;}
.x10e_c00395{left:501.200000pt;}
.x112_c00395{left:502.933333pt;}
.x123_c00395{left:505.466667pt;}
.xc7_c00395{left:507.200000pt;}
.xa5_c00395{left:510.133333pt;}
.x11b_c00395{left:519.333333pt;}
.x93_c00395{left:520.266667pt;}
.x121_c00395{left:521.333333pt;}
.x9c_c00395{left:522.400000pt;}
.x127_c00395{left:525.600000pt;}
.xce_c00395{left:526.533333pt;}
.xb5_c00395{left:527.466667pt;}
.xbb_c00395{left:529.600000pt;}
.xf1_c00395{left:531.733333pt;}
.xf4_c00395{left:533.066667pt;}
.xac_c00395{left:534.800000pt;}
.xe4_c00395{left:537.466667pt;}
.xea_c00395{left:538.666667pt;}
.x101_c00395{left:539.600000pt;}
.xa6_c00395{left:546.266667pt;}
.xcf_c00395{left:548.666667pt;}
.xdc_c00395{left:550.533333pt;}
.xe5_c00395{left:551.866667pt;}
.xf5_c00395{left:554.533333pt;}
.x102_c00395{left:557.200000pt;}
.x9d_c00395{left:558.933333pt;}
.xd7_c00395{left:560.666667pt;}
.xc8_c00395{left:563.733333pt;}
.xb6_c00395{left:565.600000pt;}
.x11a_c00395{left:566.933333pt;}
.x11e_c00395{left:568.000000pt;}
.x120_c00395{left:568.933333pt;}
.xf6_c00395{left:570.533333pt;}
.x11c_c00395{left:572.133333pt;}
.x103_c00395{left:573.466667pt;}
.xec_c00395{left:574.800000pt;}
.x9e_c00395{left:576.266667pt;}
.x94_c00395{left:578.533333pt;}
.x124_c00395{left:581.600000pt;}
.xe6_c00395{left:583.200000pt;}
.x113_c00395{left:584.933333pt;}
.x128_c00395{left:586.133333pt;}
.xd2_c00395{left:589.066667pt;}
.xad_c00395{left:590.533333pt;}
.xf2_c00395{left:594.533333pt;}
.x11d_c00395{left:596.266667pt;}
.xe0_c00395{left:597.333333pt;}
.xbc_c00395{left:598.400000pt;}
.x129_c00395{left:599.333333pt;}
.xd5_c00395{left:601.200000pt;}
.x9f_c00395{left:602.533333pt;}
.xc9_c00395{left:603.466667pt;}
.xd3_c00395{left:605.733333pt;}
.xb7_c00395{left:607.200000pt;}
.x111_c00395{left:608.400000pt;}
.xd0_c00395{left:609.466667pt;}
.xbd_c00395{left:610.800000pt;}
.x95_c00395{left:613.466667pt;}
.x104_c00395{left:616.400000pt;}
.xbe_c00395{left:617.866667pt;}
.xa7_c00395{left:619.200000pt;}
.xfc_c00395{left:621.200000pt;}
.xe1_c00395{left:622.266667pt;}
.xb8_c00395{left:623.200000pt;}
.xae_c00395{left:625.066667pt;}
.x10f_c00395{left:626.800000pt;}
.xf7_c00395{left:627.733333pt;}
.x11f_c00395{left:629.333333pt;}
.xbf_c00395{left:630.666667pt;}
.xd8_c00395{left:632.533333pt;}
.xe7_c00395{left:634.400000pt;}
.xfd_c00395{left:636.266667pt;}
.xe2_c00395{left:640.133333pt;}
.x96_c00395{left:642.000000pt;}
.xc0_c00395{left:643.466667pt;}
.xb9_c00395{left:646.266667pt;}
.xca_c00395{left:647.333333pt;}
.x122_c00395{left:649.733333pt;}
.xe8_c00395{left:652.000000pt;}
.xdd_c00395{left:654.266667pt;}
.x97_c00395{left:655.733333pt;}
.xc1_c00395{left:656.800000pt;}
.xa0_c00395{left:659.200000pt;}
.xa8_c00395{left:660.533333pt;}
.xeb_c00395{left:661.466667pt;}
.xc2_c00395{left:663.466667pt;}
.xde_c00395{left:665.200000pt;}
.xcb_c00395{left:666.533333pt;}
.xc3_c00395{left:670.133333pt;}
.xe3_c00395{left:671.466667pt;}
.xd9_c00395{left:676.666667pt;}
.xaf_c00395{left:677.600000pt;}
.xf8_c00395{left:679.200000pt;}
.xdf_c00395{left:680.533333pt;}
.x107_c00395{left:681.600000pt;}
.xa1_c00395{left:683.200000pt;}
.xb0_c00395{left:684.933333pt;}
.xa9_c00395{left:686.133333pt;}
.xba_c00395{left:687.866667pt;}
.x98_c00395{left:689.600000pt;}
.x10b_c00395{left:690.666667pt;}
.x119_c00395{left:691.733333pt;}
.xfe_c00395{left:695.066667pt;}
.xc4_c00395{left:696.266667pt;}
.xf9_c00395{left:697.733333pt;}
.xa2_c00395{left:699.866667pt;}
.x114_c00395{left:700.800000pt;}
.xaa_c00395{left:704.666667pt;}
.x10d_c00395{left:706.266667pt;}
.xed_c00395{left:707.200000pt;}
.x99_c00395{left:709.066667pt;}
.xfa_c00395{left:711.466667pt;}
.xb1_c00395{left:712.400000pt;}
.x105_c00395{left:716.533333pt;}
.xf0_c00395{left:718.000000pt;}
.xcc_c00395{left:719.600000pt;}
.xd1_c00395{left:721.733333pt;}
.xff_c00395{left:723.200000pt;}
.x10c_c00395{left:725.200000pt;}
.xe9_c00395{left:726.533333pt;}
.x108_c00395{left:729.600000pt;}
.xda_c00395{left:732.000000pt;}
.xf3_c00395{left:738.133333pt;}
.xb2_c00395{left:739.866667pt;}
.xcd_c00395{left:741.333333pt;}
.xa3_c00395{left:743.733333pt;}
.x109_c00395{left:744.933333pt;}
.xc5_c00395{left:746.533333pt;}
.xee_c00395{left:747.866667pt;}
.x115_c00395{left:751.733333pt;}
.x125_c00395{left:754.666667pt;}
.xfb_c00395{left:757.200000pt;}
.xdb_c00395{left:758.266667pt;}
.x9a_c00395{left:759.600000pt;}
.x117_c00395{left:763.066667pt;}
.x10a_c00395{left:764.400000pt;}
.x126_c00395{left:765.600000pt;}
.xab_c00395{left:766.800000pt;}
.xb3_c00395{left:770.933333pt;}
.xc6_c00395{left:772.133333pt;}
.x106_c00395{left:776.400000pt;}
.x118_c00395{left:785.200000pt;}
}





/* 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_c00396 {
    display:none;
  }
  .loading-indicator_c00396.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00396 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_c00396 { 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_c00396" -> "#page-container .classname_c00396")
 */
.pf_c00396 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00396 { /* 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_c00396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00396 { /* 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_c00396 { /* 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_c00396 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00396 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00396 {overflow:visible;}
  }
}
.c_c00396 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00396 { /* 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_c00396:after { /* webkit #35443 */
  content: '';
}
.t_c00396:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00396 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 */
}
.__c00396 { /* 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_c00396 { /* info for Javascript */
  display:none;
}
.l_c00396 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00396 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00396 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00396: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_c00396 {
    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_c00396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00396.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_c00396 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00396;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.000000;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;}
.m24_c00396{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00396{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00396{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00396{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00396{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00396{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m64_c00396{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00396{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00396{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mff_c00396{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m97_c00396{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00396{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mae_c00396{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m32_c00396{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m76_c00396{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00396{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00396{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m63_c00396{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m18_c00396{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00396{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00396{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00396{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00396{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00396{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m12_c00396{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00396{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mec_c00396{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00396{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00396{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00396{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m84_c00396{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m106_c00396{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00396{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5_c00396{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00396{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m54_c00396{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m83_c00396{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m65_c00396{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00396{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m71_c00396{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m108_c00396{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m53_c00396{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00396{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00396{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m117_c00396{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m107_c00396{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m116_c00396{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00396{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me6_c00396{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m59_c00396{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m23_c00396{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00396{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00396{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.me4_c00396{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m33_c00396{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00396{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00396{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md9_c00396{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00396{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00396{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00396{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m75_c00396{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00396{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m10_c00396{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00396{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.me1_c00396{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m35_c00396{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m72_c00396{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00396{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mba_c00396{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00396{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.me8_c00396{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00396{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.md6_c00396{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00396{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m61_c00396{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m103_c00396{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m20_c00396{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00396{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00396{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00396{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00396{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m68_c00396{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m102_c00396{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m49_c00396{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00396{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m27_c00396{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me5_c00396{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m19_c00396{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.maa_c00396{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me9_c00396{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00396{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m118_c00396{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m115_c00396{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00396{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m36_c00396{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m48_c00396{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m91_c00396{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me7_c00396{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00396{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3_c00396{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m41_c00396{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m105_c00396{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m57_c00396{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00396{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00396{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00396{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m119_c00396{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00396{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m56_c00396{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00396{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m11_c00396{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m62_c00396{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mde_c00396{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.med_c00396{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.me0_c00396{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mf_c00396{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00396{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m104_c00396{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00396{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00396{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00396{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00396{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00396{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m15_c00396{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00396{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md4_c00396{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00396{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00396{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00396{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m77_c00396{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m109_c00396{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb_c00396{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00396{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me2_c00396{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00396{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mee_c00396{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m46_c00396{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00396{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00396{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00396{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md_c00396{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m47_c00396{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m50_c00396{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00396{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7_c00396{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2_c00396{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m14_c00396{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m99_c00396{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00396{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m38_c00396{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4_c00396{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m37_c00396{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00396{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m43_c00396{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md7_c00396{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m90_c00396{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00396{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m120_c00396{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00396{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m29_c00396{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md0_c00396{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00396{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m21_c00396{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m66_c00396{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m55_c00396{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00396{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m67_c00396{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00396{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m16_c00396{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00396{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m31_c00396{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me3_c00396{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m111_c00396{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00396{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m30_c00396{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00396{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m39_c00396{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00396{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00396{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me_c00396{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m101_c00396{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00396{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00396{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m40_c00396{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00396{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m34_c00396{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m42_c00396{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m26_c00396{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9_c00396{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00396{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m60_c00396{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00396{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00396{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00396{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00396{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00396{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00396{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m22_c00396{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00396{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma_c00396{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m70_c00396{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00396{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m112_c00396{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28_c00396{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00396{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m110_c00396{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00396{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m100_c00396{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m92_c00396{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m13_c00396{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m78_c00396{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00396{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m94_c00396{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00396{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00396{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.maf_c00396{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6_c00396{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00396{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md8_c00396{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00396{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00396{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m58_c00396{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mef_c00396{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m114_c00396{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00396{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00396{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00396{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc_c00396{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mda_c00396{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00396{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.meb_c00396{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00396{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00396{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m44_c00396{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m98_c00396{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.md2_c00396{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00396{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m74_c00396{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m86_c00396{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00396{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m45_c00396{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00396{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m89_c00396{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md5_c00396{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m25_c00396{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mea_c00396{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m95_c00396{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00396{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m52_c00396{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00396{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00396{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m82_c00396{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00396{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00396{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mce_c00396{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m88_c00396{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m8_c00396{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00396{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.md1_c00396{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m69_c00396{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m113_c00396{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m17_c00396{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00396{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m87_c00396{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m93_c00396{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m80_c00396{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00396{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m51_c00396{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00396{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m79_c00396{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m96_c00396{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00396{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mad_c00396{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00396{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00396{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mca_c00396{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m81_c00396{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00396{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mab_c00396{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m85_c00396{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mac_c00396{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00396{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.m0_c00396{transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);}
.m73_c00396{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.md3_c00396{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00396{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00396{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls1_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:55.714286px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{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__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00396{word-spacing:-85.714286px;}
.ws9_c00396{word-spacing:-14.328358px;}
.wse_c00396{word-spacing:-12.535032px;}
.wsb_c00396{word-spacing:-11.282051px;}
.wsc_c00396{word-spacing:-6.529412px;}
.wsd_c00396{word-spacing:-5.815642px;}
.wsf_c00396{word-spacing:-3.229299px;}
.wsa_c00396{word-spacing:-2.837838px;}
.ws0_c00396{word-spacing:-0.194070px;}
.ws10_c00396{word-spacing:0.000000px;}
.ws5_c00396{word-spacing:11.875000px;}
.ws1_c00396{word-spacing:13.194444px;}
.ws8_c00396{word-spacing:22.142857px;}
.ws3_c00396{word-spacing:25.714286px;}
.ws4_c00396{word-spacing:26.428954px;}
.ws7_c00396{word-spacing:29.285714px;}
.ws2_c00396{word-spacing:55.090909px;}
._4_c00396{margin-left:-55.714286px;}
._3_c00396{width:3.571429px;}
._2_c00396{width:45.000000px;}
._1_c00396{width:52.812500px;}
._5_c00396{width:55.714286px;}
._0_c00396{width:59.285714px;}
.fc0_c00396{color:transparent;}
.fs7_c00396{font-size:30.000000px;}
.fs6_c00396{font-size:54.000000px;}
.fs4_c00396{font-size:60.000000px;}
.fs3_c00396{font-size:66.000000px;}
.fs2_c00396{font-size:72.000000px;}
.fs1_c00396{font-size:78.000000px;}
.fs0_c00396{font-size:84.000000px;}
.fs5_c00396{font-size:90.000000px;}
.y0_c00396{bottom:0.000000px;}
.y6b_c00396{bottom:162.750000px;}
.y6a_c00396{bottom:183.600000px;}
.y33_c00396{bottom:187.950000px;}
.y69_c00396{bottom:201.900000px;}
.y32_c00396{bottom:202.650000px;}
.y68_c00396{bottom:219.900000px;}
.y67_c00396{bottom:246.600000px;}
.y31_c00396{bottom:256.200000px;}
.y66_c00396{bottom:264.900000px;}
.y30_c00396{bottom:271.350000px;}
.y65_c00396{bottom:282.900000px;}
.y2f_c00396{bottom:285.000000px;}
.y2e_c00396{bottom:297.300000px;}
.y2d_c00396{bottom:299.850000px;}
.y64_c00396{bottom:300.600000px;}
.y2c_c00396{bottom:313.950000px;}
.y63_c00396{bottom:318.300000px;}
.y2b_c00396{bottom:328.650000px;}
.y62_c00396{bottom:336.300000px;}
.y2a_c00396{bottom:353.100000px;}
.y61_c00396{bottom:354.300000px;}
.y29_c00396{bottom:371.100000px;}
.y60_c00396{bottom:371.850000px;}
.y28_c00396{bottom:389.100000px;}
.y5f_c00396{bottom:389.850000px;}
.y27_c00396{bottom:406.800000px;}
.y5e_c00396{bottom:407.550000px;}
.y5d_c00396{bottom:425.850000px;}
.y26_c00396{bottom:433.950000px;}
.y5c_c00396{bottom:443.550000px;}
.y25_c00396{bottom:451.200000px;}
.y5b_c00396{bottom:461.550000px;}
.y24_c00396{bottom:468.150000px;}
.y5a_c00396{bottom:479.550000px;}
.y23_c00396{bottom:486.450000px;}
.y59_c00396{bottom:497.250000px;}
.y22_c00396{bottom:503.700000px;}
.y58_c00396{bottom:515.550000px;}
.y21_c00396{bottom:522.000000px;}
.y57_c00396{bottom:533.250000px;}
.y20_c00396{bottom:539.700000px;}
.y56_c00396{bottom:551.550000px;}
.y1f_c00396{bottom:557.400000px;}
.y55_c00396{bottom:569.250000px;}
.y1e_c00396{bottom:575.400000px;}
.y54_c00396{bottom:587.250000px;}
.y1d_c00396{bottom:596.700000px;}
.y53_c00396{bottom:604.950000px;}
.y1c_c00396{bottom:611.100000px;}
.y52_c00396{bottom:622.950000px;}
.y1b_c00396{bottom:628.800000px;}
.y51_c00396{bottom:640.950000px;}
.y1a_c00396{bottom:646.500000px;}
.y50_c00396{bottom:658.650000px;}
.y19_c00396{bottom:668.400000px;}
.y4f_c00396{bottom:676.350000px;}
.y18_c00396{bottom:686.100000px;}
.y4e_c00396{bottom:694.350000px;}
.y4d_c00396{bottom:712.350000px;}
.y17_c00396{bottom:717.450000px;}
.y4c_c00396{bottom:730.050000px;}
.y16_c00396{bottom:743.850000px;}
.y4b_c00396{bottom:748.350000px;}
.y15_c00396{bottom:761.550000px;}
.y4a_c00396{bottom:766.350000px;}
.y14_c00396{bottom:779.550000px;}
.y49_c00396{bottom:784.050000px;}
.y13_c00396{bottom:797.250000px;}
.y48_c00396{bottom:802.350000px;}
.y12_c00396{bottom:814.950000px;}
.y47_c00396{bottom:820.050000px;}
.y11_c00396{bottom:832.650000px;}
.y46_c00396{bottom:838.050000px;}
.y10_c00396{bottom:850.650000px;}
.y45_c00396{bottom:855.750000px;}
.yf_c00396{bottom:868.650000px;}
.y44_c00396{bottom:880.950000px;}
.ye_c00396{bottom:886.650000px;}
.y43_c00396{bottom:895.350000px;}
.yd_c00396{bottom:904.650000px;}
.y42_c00396{bottom:910.050000px;}
.yc_c00396{bottom:927.000000px;}
.y41_c00396{bottom:927.150000px;}
.y40_c00396{bottom:941.550000px;}
.yb_c00396{bottom:944.700000px;}
.y3f_c00396{bottom:955.950000px;}
.ya_c00396{bottom:966.750000px;}
.y3e_c00396{bottom:970.650000px;}
.y3d_c00396{bottom:984.300000px;}
.y9_c00396{bottom:988.650000px;}
.y3c_c00396{bottom:999.000000px;}
.y8_c00396{bottom:1010.550000px;}
.y3b_c00396{bottom:1013.400000px;}
.y7_c00396{bottom:1033.200000px;}
.y3a_c00396{bottom:1037.550000px;}
.y39_c00396{bottom:1042.200000px;}
.y6_c00396{bottom:1051.200000px;}
.y38_c00396{bottom:1056.600000px;}
.y37_c00396{bottom:1071.300000px;}
.y5_c00396{bottom:1073.100000px;}
.y36_c00396{bottom:1085.700000px;}
.y4_c00396{bottom:1090.800000px;}
.y35_c00396{bottom:1100.100000px;}
.y3_c00396{bottom:1113.150000px;}
.y34_c00396{bottom:1114.200000px;}
.y2_c00396{bottom:1137.300000px;}
.y1_c00396{bottom:1139.400000px;}
.h9_c00396{height:30.000000px;}
.h8_c00396{height:54.000000px;}
.h6_c00396{height:60.000000px;}
.h5_c00396{height:66.000000px;}
.h4_c00396{height:72.000000px;}
.h3_c00396{height:78.000000px;}
.h2_c00396{height:84.000000px;}
.h7_c00396{height:90.000000px;}
.h0_c00396{height:1267.200073px;}
.h1_c00396{height:1267.500000px;}
.w0_c00396{width:960.480010px;}
.w1_c00396{width:960.750000px;}
.x0_c00396{left:0.000000px;}
.x5d_c00396{left:81.750000px;}
.x28_c00396{left:82.800000px;}
.x5f_c00396{left:83.850000px;}
.x97_c00396{left:97.500000px;}
.x73_c00396{left:99.150000px;}
.x38_c00396{left:101.100000px;}
.x26_c00396{left:102.300000px;}
.xd_c00396{left:103.650000px;}
.x98_c00396{left:112.350000px;}
.x15_c00396{left:119.850000px;}
.x3_c00396{left:120.900000px;}
.x9a_c00396{left:121.950000px;}
.x59_c00396{left:124.950000px;}
.xe_c00396{left:127.050000px;}
.x89_c00396{left:128.850000px;}
.x2f_c00396{left:129.900000px;}
.x60_c00396{left:131.700000px;}
.x3c_c00396{left:134.550000px;}
.x50_c00396{left:137.550000px;}
.x95_c00396{left:138.600000px;}
.x93_c00396{left:142.200000px;}
.x29_c00396{left:143.250000px;}
.x4b_c00396{left:144.900000px;}
.x30_c00396{left:146.400000px;}
.x6d_c00396{left:148.050000px;}
.x7b_c00396{left:151.050000px;}
.x43_c00396{left:152.850000px;}
.x3d_c00396{left:155.400000px;}
.x9b_c00396{left:156.450000px;}
.x63_c00396{left:160.500000px;}
.x1b_c00396{left:162.450000px;}
.x4_c00396{left:164.100000px;}
.x31_c00396{left:165.150000px;}
.x1e_c00396{left:167.400000px;}
.x61_c00396{left:170.550000px;}
.x2a_c00396{left:172.050000px;}
.x87_c00396{left:173.250000px;}
.xf_c00396{left:174.900000px;}
.x56_c00396{left:176.700000px;}
.x19_c00396{left:178.650000px;}
.x69_c00396{left:181.800000px;}
.x64_c00396{left:183.900000px;}
.x23_c00396{left:185.100000px;}
.x44_c00396{left:186.750000px;}
.x7_c00396{left:188.250000px;}
.x16_c00396{left:189.300000px;}
.x8e_c00396{left:190.500000px;}
.x1d_c00396{left:192.300000px;}
.x8a_c00396{left:194.400000px;}
.x27_c00396{left:195.600000px;}
.x90_c00396{left:197.250000px;}
.x6e_c00396{left:198.750000px;}
.x5a_c00396{left:201.300000px;}
.x96_c00396{left:203.850000px;}
.x94_c00396{left:204.900000px;}
.x7c_c00396{left:206.100000px;}
.x8_c00396{left:208.050000px;}
.x65_c00396{left:209.850000px;}
.x32_c00396{left:211.950000px;}
.x45_c00396{left:216.600000px;}
.x5_c00396{left:217.800000px;}
.x10_c00396{left:218.850000px;}
.x33_c00396{left:221.700000px;}
.x82_c00396{left:223.500000px;}
.x85_c00396{left:225.150000px;}
.x1c_c00396{left:227.250000px;}
.x1f_c00396{left:232.500000px;}
.x8b_c00396{left:233.700000px;}
.x2b_c00396{left:234.750000px;}
.x39_c00396{left:236.100000px;}
.x6_c00396{left:237.900000px;}
.x66_c00396{left:238.950000px;}
.x6a_c00396{left:241.650000px;}
.x5b_c00396{left:242.700000px;}
.x5e_c00396{left:243.750000px;}
.x24_c00396{left:245.250000px;}
.x57_c00396{left:248.100000px;}
.x83_c00396{left:250.500000px;}
.x3e_c00396{left:251.850000px;}
.x17_c00396{left:256.200000px;}
.x91_c00396{left:258.900000px;}
.x1a_c00396{left:260.700000px;}
.x74_c00396{left:262.050000px;}
.x5c_c00396{left:263.550000px;}
.x9_c00396{left:264.900000px;}
.x46_c00396{left:266.250000px;}
.x58_c00396{left:268.650000px;}
.x20_c00396{left:273.600000px;}
.x51_c00396{left:275.400000px;}
.x47_c00396{left:277.050000px;}
.x88_c00396{left:280.200000px;}
.x84_c00396{left:281.400000px;}
.x2c_c00396{left:283.650000px;}
.xa_c00396{left:284.700000px;}
.x6f_c00396{left:286.650000px;}
.x11_c00396{left:288.750000px;}
.x76_c00396{left:290.700000px;}
.x86_c00396{left:291.750000px;}
.x4c_c00396{left:293.100000px;}
.x70_c00396{left:294.600000px;}
.x67_c00396{left:296.100000px;}
.x8c_c00396{left:297.900000px;}
.x52_c00396{left:299.100000px;}
.x71_c00396{left:303.300000px;}
.x12_c00396{left:306.000000px;}
.x77_c00396{left:307.950000px;}
.x4d_c00396{left:309.600000px;}
.x80_c00396{left:312.000000px;}
.x3a_c00396{left:313.500000px;}
.x6b_c00396{left:316.200000px;}
.x54_c00396{left:317.400000px;}
.xb_c00396{left:321.000000px;}
.x92_c00396{left:322.350000px;}
.x34_c00396{left:323.850000px;}
.x3f_c00396{left:328.500000px;}
.x1_c00396{left:330.900000px;}
.x79_c00396{left:332.400000px;}
.x35_c00396{left:336.150000px;}
.x40_c00396{left:337.800000px;}
.x21_c00396{left:339.900000px;}
.x78_c00396{left:341.100000px;}
.x13_c00396{left:342.300000px;}
.x72_c00396{left:343.650000px;}
.x48_c00396{left:349.050000px;}
.x81_c00396{left:350.400000px;}
.x55_c00396{left:352.350000px;}
.x8d_c00396{left:353.700000px;}
.x41_c00396{left:354.750000px;}
.x3b_c00396{left:355.950000px;}
.x4e_c00396{left:358.500000px;}
.x6c_c00396{left:360.900000px;}
.x8f_c00396{left:363.900000px;}
.x18_c00396{left:365.250000px;}
.x2d_c00396{left:367.950000px;}
.x49_c00396{left:369.600000px;}
.x62_c00396{left:371.400000px;}
.x25_c00396{left:373.050000px;}
.x36_c00396{left:375.750000px;}
.x99_c00396{left:378.450000px;}
.x7d_c00396{left:379.650000px;}
.x7e_c00396{left:381.000000px;}
.x68_c00396{left:382.200000px;}
.x53_c00396{left:385.800000px;}
.x2e_c00396{left:388.050000px;}
.x4f_c00396{left:389.850000px;}
.x4a_c00396{left:391.950000px;}
.x42_c00396{left:394.050000px;}
.x37_c00396{left:396.300000px;}
.x22_c00396{left:399.300000px;}
.x7a_c00396{left:403.350000px;}
.x14_c00396{left:404.550000px;}
.xc_c00396{left:406.350000px;}
.x75_c00396{left:408.450000px;}
.x7f_c00396{left:409.800000px;}
.xdc_c00396{left:441.750000px;}
.x131_c00396{left:443.100000px;}
.x9c_c00396{left:446.100000px;}
.x124_c00396{left:451.500000px;}
.xd5_c00396{left:455.700000px;}
.xa7_c00396{left:457.650000px;}
.xec_c00396{left:459.150000px;}
.xe3_c00396{left:460.200000px;}
.x121_c00396{left:463.500000px;}
.x120_c00396{left:466.950000px;}
.xd0_c00396{left:470.550000px;}
.x9d_c00396{left:471.600000px;}
.xe8_c00396{left:475.800000px;}
.x123_c00396{left:478.200000px;}
.x117_c00396{left:481.200000px;}
.x128_c00396{left:482.700000px;}
.x12b_c00396{left:483.750000px;}
.xff_c00396{left:486.300000px;}
.xef_c00396{left:490.800000px;}
.xc2_c00396{left:493.350000px;}
.xd6_c00396{left:496.800000px;}
.xe9_c00396{left:500.250000px;}
.x132_c00396{left:502.800000px;}
.x11c_c00396{left:505.650000px;}
.x104_c00396{left:506.850000px;}
.x134_c00396{left:512.250000px;}
.xcb_c00396{left:513.300000px;}
.xc3_c00396{left:514.500000px;}
.x109_c00396{left:516.900000px;}
.xcc_c00396{left:518.700000px;}
.x11e_c00396{left:519.900000px;}
.xbf_c00396{left:520.950000px;}
.x10e_c00396{left:522.150000px;}
.xdd_c00396{left:525.300000px;}
.xf0_c00396{left:526.500000px;}
.xb0_c00396{left:528.450000px;}
.xd7_c00396{left:529.950000px;}
.xb8_c00396{left:532.650000px;}
.x9e_c00396{left:534.600000px;}
.x12e_c00396{left:536.400000px;}
.x107_c00396{left:539.100000px;}
.xf5_c00396{left:541.050000px;}
.x133_c00396{left:544.950000px;}
.x12c_c00396{left:546.000000px;}
.xb1_c00396{left:547.200000px;}
.x10a_c00396{left:549.600000px;}
.xb9_c00396{left:550.950000px;}
.x9f_c00396{left:553.650000px;}
.x122_c00396{left:555.450000px;}
.xfa_c00396{left:557.100000px;}
.x100_c00396{left:559.350000px;}
.x10f_c00396{left:561.450000px;}
.x125_c00396{left:565.950000px;}
.xd8_c00396{left:567.750000px;}
.xde_c00396{left:569.550000px;}
.xa8_c00396{left:572.550000px;}
.xe4_c00396{left:574.050000px;}
.xea_c00396{left:576.150000px;}
.xed_c00396{left:577.950000px;}
.xa9_c00396{left:579.750000px;}
.xd1_c00396{left:581.700000px;}
.xc9_c00396{left:583.500000px;}
.x11d_c00396{left:585.600000px;}
.xaa_c00396{left:586.950000px;}
.xa0_c00396{left:588.600000px;}
.xb2_c00396{left:590.400000px;}
.xcd_c00396{left:592.500000px;}
.xab_c00396{left:594.150000px;}
.xf6_c00396{left:595.800000px;}
.x105_c00396{left:598.650000px;}
.xc4_c00396{left:600.150000px;}
.xac_c00396{left:601.350000px;}
.xca_c00396{left:603.300000px;}
.xf7_c00396{left:604.800000px;}
.xd9_c00396{left:605.850000px;}
.xa1_c00396{left:608.100000px;}
.x115_c00396{left:609.750000px;}
.x135_c00396{left:610.950000px;}
.xfb_c00396{left:613.350000px;}
.xc5_c00396{left:614.550000px;}
.x118_c00396{left:615.750000px;}
.xf1_c00396{left:618.750000px;}
.x12d_c00396{left:619.800000px;}
.x10b_c00396{left:621.300000px;}
.xc6_c00396{left:622.500000px;}
.x101_c00396{left:625.200000px;}
.x10d_c00396{left:627.900000px;}
.xba_c00396{left:630.450000px;}
.x114_c00396{left:635.400000px;}
.xbb_c00396{left:637.650000px;}
.x129_c00396{left:639.300000px;}
.xdf_c00396{left:641.250000px;}
.xda_c00396{left:642.900000px;}
.xbc_c00396{left:644.850000px;}
.xb3_c00396{left:645.900000px;}
.x10c_c00396{left:649.050000px;}
.xe7_c00396{left:650.100000px;}
.x102_c00396{left:651.450000px;}
.xee_c00396{left:652.500000px;}
.xf8_c00396{left:654.150000px;}
.xeb_c00396{left:656.400000px;}
.xa2_c00396{left:657.750000px;}
.xce_c00396{left:659.400000px;}
.xb4_c00396{left:660.600000px;}
.x119_c00396{left:661.800000px;}
.x116_c00396{left:664.500000px;}
.xb5_c00396{left:667.800000px;}
.xa3_c00396{left:669.300000px;}
.x11a_c00396{left:672.300000px;}
.xbd_c00396{left:673.800000px;}
.xb6_c00396{left:675.000000px;}
.xd2_c00396{left:677.850000px;}
.xc7_c00396{left:681.000000px;}
.xb7_c00396{left:682.200000px;}
.xf2_c00396{left:684.600000px;}
.xbe_c00396{left:688.200000px;}
.x127_c00396{left:691.200000px;}
.xfc_c00396{left:693.300000px;}
.x108_c00396{left:695.100000px;}
.x111_c00396{left:697.950000px;}
.xf9_c00396{left:699.900000px;}
.xe0_c00396{left:701.700000px;}
.x12a_c00396{left:702.750000px;}
.xa4_c00396{left:704.250000px;}
.xc0_c00396{left:707.400000px;}
.xad_c00396{left:708.600000px;}
.x112_c00396{left:710.250000px;}
.x137_c00396{left:711.450000px;}
.xfd_c00396{left:713.850000px;}
.xd3_c00396{left:717.450000px;}
.x11f_c00396{left:721.350000px;}
.xdb_c00396{left:722.850000px;}
.xe1_c00396{left:724.350000px;}
.x106_c00396{left:726.000000px;}
.xe5_c00396{left:728.100000px;}
.xfe_c00396{left:729.300000px;}
.xa5_c00396{left:730.950000px;}
.xf3_c00396{left:732.900000px;}
.xc8_c00396{left:736.500000px;}
.xae_c00396{left:737.700000px;}
.xc1_c00396{left:738.750000px;}
.x12f_c00396{left:742.050000px;}
.x136_c00396{left:743.400000px;}
.x103_c00396{left:746.850000px;}
.x113_c00396{left:749.100000px;}
.xf4_c00396{left:750.600000px;}
.x2_c00396{left:752.850000px;}
.xd4_c00396{left:754.950000px;}
.xe6_c00396{left:757.200000px;}
.xcf_c00396{left:760.650000px;}
.x126_c00396{left:762.450000px;}
.x110_c00396{left:763.950000px;}
.xa6_c00396{left:765.450000px;}
.xaf_c00396{left:766.800000px;}
.x130_c00396{left:768.000000px;}
.x11b_c00396{left:772.650000px;}
.xe2_c00396{left:775.500000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls1_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:49.523810pt;}
.ws6_c00396{word-spacing:-76.190476pt;}
.ws9_c00396{word-spacing:-12.736318pt;}
.wse_c00396{word-spacing:-11.142251pt;}
.wsb_c00396{word-spacing:-10.028490pt;}
.wsc_c00396{word-spacing:-5.803922pt;}
.wsd_c00396{word-spacing:-5.169460pt;}
.wsf_c00396{word-spacing:-2.870488pt;}
.wsa_c00396{word-spacing:-2.522523pt;}
.ws0_c00396{word-spacing:-0.172507pt;}
.ws10_c00396{word-spacing:0.000000pt;}
.ws5_c00396{word-spacing:10.555556pt;}
.ws1_c00396{word-spacing:11.728395pt;}
.ws8_c00396{word-spacing:19.682540pt;}
.ws3_c00396{word-spacing:22.857143pt;}
.ws4_c00396{word-spacing:23.492404pt;}
.ws7_c00396{word-spacing:26.031746pt;}
.ws2_c00396{word-spacing:48.969697pt;}
._4_c00396{margin-left:-49.523810pt;}
._3_c00396{width:3.174603pt;}
._2_c00396{width:40.000000pt;}
._1_c00396{width:46.944444pt;}
._5_c00396{width:49.523810pt;}
._0_c00396{width:52.698413pt;}
.fs7_c00396{font-size:26.666667pt;}
.fs6_c00396{font-size:48.000000pt;}
.fs4_c00396{font-size:53.333333pt;}
.fs3_c00396{font-size:58.666667pt;}
.fs2_c00396{font-size:64.000000pt;}
.fs1_c00396{font-size:69.333333pt;}
.fs0_c00396{font-size:74.666667pt;}
.fs5_c00396{font-size:80.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.y6b_c00396{bottom:144.666667pt;}
.y6a_c00396{bottom:163.200000pt;}
.y33_c00396{bottom:167.066667pt;}
.y69_c00396{bottom:179.466667pt;}
.y32_c00396{bottom:180.133333pt;}
.y68_c00396{bottom:195.466667pt;}
.y67_c00396{bottom:219.200000pt;}
.y31_c00396{bottom:227.733333pt;}
.y66_c00396{bottom:235.466667pt;}
.y30_c00396{bottom:241.200000pt;}
.y65_c00396{bottom:251.466667pt;}
.y2f_c00396{bottom:253.333333pt;}
.y2e_c00396{bottom:264.266667pt;}
.y2d_c00396{bottom:266.533333pt;}
.y64_c00396{bottom:267.200000pt;}
.y2c_c00396{bottom:279.066667pt;}
.y63_c00396{bottom:282.933333pt;}
.y2b_c00396{bottom:292.133333pt;}
.y62_c00396{bottom:298.933333pt;}
.y2a_c00396{bottom:313.866667pt;}
.y61_c00396{bottom:314.933333pt;}
.y29_c00396{bottom:329.866667pt;}
.y60_c00396{bottom:330.533333pt;}
.y28_c00396{bottom:345.866667pt;}
.y5f_c00396{bottom:346.533333pt;}
.y27_c00396{bottom:361.600000pt;}
.y5e_c00396{bottom:362.266667pt;}
.y5d_c00396{bottom:378.533333pt;}
.y26_c00396{bottom:385.733333pt;}
.y5c_c00396{bottom:394.266667pt;}
.y25_c00396{bottom:401.066667pt;}
.y5b_c00396{bottom:410.266667pt;}
.y24_c00396{bottom:416.133333pt;}
.y5a_c00396{bottom:426.266667pt;}
.y23_c00396{bottom:432.400000pt;}
.y59_c00396{bottom:442.000000pt;}
.y22_c00396{bottom:447.733333pt;}
.y58_c00396{bottom:458.266667pt;}
.y21_c00396{bottom:464.000000pt;}
.y57_c00396{bottom:474.000000pt;}
.y20_c00396{bottom:479.733333pt;}
.y56_c00396{bottom:490.266667pt;}
.y1f_c00396{bottom:495.466667pt;}
.y55_c00396{bottom:506.000000pt;}
.y1e_c00396{bottom:511.466667pt;}
.y54_c00396{bottom:522.000000pt;}
.y1d_c00396{bottom:530.400000pt;}
.y53_c00396{bottom:537.733333pt;}
.y1c_c00396{bottom:543.200000pt;}
.y52_c00396{bottom:553.733333pt;}
.y1b_c00396{bottom:558.933333pt;}
.y51_c00396{bottom:569.733333pt;}
.y1a_c00396{bottom:574.666667pt;}
.y50_c00396{bottom:585.466667pt;}
.y19_c00396{bottom:594.133333pt;}
.y4f_c00396{bottom:601.200000pt;}
.y18_c00396{bottom:609.866667pt;}
.y4e_c00396{bottom:617.200000pt;}
.y4d_c00396{bottom:633.200000pt;}
.y17_c00396{bottom:637.733333pt;}
.y4c_c00396{bottom:648.933333pt;}
.y16_c00396{bottom:661.200000pt;}
.y4b_c00396{bottom:665.200000pt;}
.y15_c00396{bottom:676.933333pt;}
.y4a_c00396{bottom:681.200000pt;}
.y14_c00396{bottom:692.933333pt;}
.y49_c00396{bottom:696.933333pt;}
.y13_c00396{bottom:708.666667pt;}
.y48_c00396{bottom:713.200000pt;}
.y12_c00396{bottom:724.400000pt;}
.y47_c00396{bottom:728.933333pt;}
.y11_c00396{bottom:740.133333pt;}
.y46_c00396{bottom:744.933333pt;}
.y10_c00396{bottom:756.133333pt;}
.y45_c00396{bottom:760.666667pt;}
.yf_c00396{bottom:772.133333pt;}
.y44_c00396{bottom:783.066667pt;}
.ye_c00396{bottom:788.133333pt;}
.y43_c00396{bottom:795.866667pt;}
.yd_c00396{bottom:804.133333pt;}
.y42_c00396{bottom:808.933333pt;}
.yc_c00396{bottom:824.000000pt;}
.y41_c00396{bottom:824.133333pt;}
.y40_c00396{bottom:836.933333pt;}
.yb_c00396{bottom:839.733333pt;}
.y3f_c00396{bottom:849.733333pt;}
.ya_c00396{bottom:859.333333pt;}
.y3e_c00396{bottom:862.800000pt;}
.y3d_c00396{bottom:874.933333pt;}
.y9_c00396{bottom:878.800000pt;}
.y3c_c00396{bottom:888.000000pt;}
.y8_c00396{bottom:898.266667pt;}
.y3b_c00396{bottom:900.800000pt;}
.y7_c00396{bottom:918.400000pt;}
.y3a_c00396{bottom:922.266667pt;}
.y39_c00396{bottom:926.400000pt;}
.y6_c00396{bottom:934.400000pt;}
.y38_c00396{bottom:939.200000pt;}
.y37_c00396{bottom:952.266667pt;}
.y5_c00396{bottom:953.866667pt;}
.y36_c00396{bottom:965.066667pt;}
.y4_c00396{bottom:969.600000pt;}
.y35_c00396{bottom:977.866667pt;}
.y3_c00396{bottom:989.466667pt;}
.y34_c00396{bottom:990.400000pt;}
.y2_c00396{bottom:1010.933333pt;}
.y1_c00396{bottom:1012.800000pt;}
.h9_c00396{height:26.666667pt;}
.h8_c00396{height:48.000000pt;}
.h6_c00396{height:53.333333pt;}
.h5_c00396{height:58.666667pt;}
.h4_c00396{height:64.000000pt;}
.h3_c00396{height:69.333333pt;}
.h2_c00396{height:74.666667pt;}
.h7_c00396{height:80.000000pt;}
.h0_c00396{height:1126.400065pt;}
.h1_c00396{height:1126.666667pt;}
.w0_c00396{width:853.760009pt;}
.w1_c00396{width:854.000000pt;}
.x0_c00396{left:0.000000pt;}
.x5d_c00396{left:72.666667pt;}
.x28_c00396{left:73.600000pt;}
.x5f_c00396{left:74.533333pt;}
.x97_c00396{left:86.666667pt;}
.x73_c00396{left:88.133333pt;}
.x38_c00396{left:89.866667pt;}
.x26_c00396{left:90.933333pt;}
.xd_c00396{left:92.133333pt;}
.x98_c00396{left:99.866667pt;}
.x15_c00396{left:106.533333pt;}
.x3_c00396{left:107.466667pt;}
.x9a_c00396{left:108.400000pt;}
.x59_c00396{left:111.066667pt;}
.xe_c00396{left:112.933333pt;}
.x89_c00396{left:114.533333pt;}
.x2f_c00396{left:115.466667pt;}
.x60_c00396{left:117.066667pt;}
.x3c_c00396{left:119.600000pt;}
.x50_c00396{left:122.266667pt;}
.x95_c00396{left:123.200000pt;}
.x93_c00396{left:126.400000pt;}
.x29_c00396{left:127.333333pt;}
.x4b_c00396{left:128.800000pt;}
.x30_c00396{left:130.133333pt;}
.x6d_c00396{left:131.600000pt;}
.x7b_c00396{left:134.266667pt;}
.x43_c00396{left:135.866667pt;}
.x3d_c00396{left:138.133333pt;}
.x9b_c00396{left:139.066667pt;}
.x63_c00396{left:142.666667pt;}
.x1b_c00396{left:144.400000pt;}
.x4_c00396{left:145.866667pt;}
.x31_c00396{left:146.800000pt;}
.x1e_c00396{left:148.800000pt;}
.x61_c00396{left:151.600000pt;}
.x2a_c00396{left:152.933333pt;}
.x87_c00396{left:154.000000pt;}
.xf_c00396{left:155.466667pt;}
.x56_c00396{left:157.066667pt;}
.x19_c00396{left:158.800000pt;}
.x69_c00396{left:161.600000pt;}
.x64_c00396{left:163.466667pt;}
.x23_c00396{left:164.533333pt;}
.x44_c00396{left:166.000000pt;}
.x7_c00396{left:167.333333pt;}
.x16_c00396{left:168.266667pt;}
.x8e_c00396{left:169.333333pt;}
.x1d_c00396{left:170.933333pt;}
.x8a_c00396{left:172.800000pt;}
.x27_c00396{left:173.866667pt;}
.x90_c00396{left:175.333333pt;}
.x6e_c00396{left:176.666667pt;}
.x5a_c00396{left:178.933333pt;}
.x96_c00396{left:181.200000pt;}
.x94_c00396{left:182.133333pt;}
.x7c_c00396{left:183.200000pt;}
.x8_c00396{left:184.933333pt;}
.x65_c00396{left:186.533333pt;}
.x32_c00396{left:188.400000pt;}
.x45_c00396{left:192.533333pt;}
.x5_c00396{left:193.600000pt;}
.x10_c00396{left:194.533333pt;}
.x33_c00396{left:197.066667pt;}
.x82_c00396{left:198.666667pt;}
.x85_c00396{left:200.133333pt;}
.x1c_c00396{left:202.000000pt;}
.x1f_c00396{left:206.666667pt;}
.x8b_c00396{left:207.733333pt;}
.x2b_c00396{left:208.666667pt;}
.x39_c00396{left:209.866667pt;}
.x6_c00396{left:211.466667pt;}
.x66_c00396{left:212.400000pt;}
.x6a_c00396{left:214.800000pt;}
.x5b_c00396{left:215.733333pt;}
.x5e_c00396{left:216.666667pt;}
.x24_c00396{left:218.000000pt;}
.x57_c00396{left:220.533333pt;}
.x83_c00396{left:222.666667pt;}
.x3e_c00396{left:223.866667pt;}
.x17_c00396{left:227.733333pt;}
.x91_c00396{left:230.133333pt;}
.x1a_c00396{left:231.733333pt;}
.x74_c00396{left:232.933333pt;}
.x5c_c00396{left:234.266667pt;}
.x9_c00396{left:235.466667pt;}
.x46_c00396{left:236.666667pt;}
.x58_c00396{left:238.800000pt;}
.x20_c00396{left:243.200000pt;}
.x51_c00396{left:244.800000pt;}
.x47_c00396{left:246.266667pt;}
.x88_c00396{left:249.066667pt;}
.x84_c00396{left:250.133333pt;}
.x2c_c00396{left:252.133333pt;}
.xa_c00396{left:253.066667pt;}
.x6f_c00396{left:254.800000pt;}
.x11_c00396{left:256.666667pt;}
.x76_c00396{left:258.400000pt;}
.x86_c00396{left:259.333333pt;}
.x4c_c00396{left:260.533333pt;}
.x70_c00396{left:261.866667pt;}
.x67_c00396{left:263.200000pt;}
.x8c_c00396{left:264.800000pt;}
.x52_c00396{left:265.866667pt;}
.x71_c00396{left:269.600000pt;}
.x12_c00396{left:272.000000pt;}
.x77_c00396{left:273.733333pt;}
.x4d_c00396{left:275.200000pt;}
.x80_c00396{left:277.333333pt;}
.x3a_c00396{left:278.666667pt;}
.x6b_c00396{left:281.066667pt;}
.x54_c00396{left:282.133333pt;}
.xb_c00396{left:285.333333pt;}
.x92_c00396{left:286.533333pt;}
.x34_c00396{left:287.866667pt;}
.x3f_c00396{left:292.000000pt;}
.x1_c00396{left:294.133333pt;}
.x79_c00396{left:295.466667pt;}
.x35_c00396{left:298.800000pt;}
.x40_c00396{left:300.266667pt;}
.x21_c00396{left:302.133333pt;}
.x78_c00396{left:303.200000pt;}
.x13_c00396{left:304.266667pt;}
.x72_c00396{left:305.466667pt;}
.x48_c00396{left:310.266667pt;}
.x81_c00396{left:311.466667pt;}
.x55_c00396{left:313.200000pt;}
.x8d_c00396{left:314.400000pt;}
.x41_c00396{left:315.333333pt;}
.x3b_c00396{left:316.400000pt;}
.x4e_c00396{left:318.666667pt;}
.x6c_c00396{left:320.800000pt;}
.x8f_c00396{left:323.466667pt;}
.x18_c00396{left:324.666667pt;}
.x2d_c00396{left:327.066667pt;}
.x49_c00396{left:328.533333pt;}
.x62_c00396{left:330.133333pt;}
.x25_c00396{left:331.600000pt;}
.x36_c00396{left:334.000000pt;}
.x99_c00396{left:336.400000pt;}
.x7d_c00396{left:337.466667pt;}
.x7e_c00396{left:338.666667pt;}
.x68_c00396{left:339.733333pt;}
.x53_c00396{left:342.933333pt;}
.x2e_c00396{left:344.933333pt;}
.x4f_c00396{left:346.533333pt;}
.x4a_c00396{left:348.400000pt;}
.x42_c00396{left:350.266667pt;}
.x37_c00396{left:352.266667pt;}
.x22_c00396{left:354.933333pt;}
.x7a_c00396{left:358.533333pt;}
.x14_c00396{left:359.600000pt;}
.xc_c00396{left:361.200000pt;}
.x75_c00396{left:363.066667pt;}
.x7f_c00396{left:364.266667pt;}
.xdc_c00396{left:392.666667pt;}
.x131_c00396{left:393.866667pt;}
.x9c_c00396{left:396.533333pt;}
.x124_c00396{left:401.333333pt;}
.xd5_c00396{left:405.066667pt;}
.xa7_c00396{left:406.800000pt;}
.xec_c00396{left:408.133333pt;}
.xe3_c00396{left:409.066667pt;}
.x121_c00396{left:412.000000pt;}
.x120_c00396{left:415.066667pt;}
.xd0_c00396{left:418.266667pt;}
.x9d_c00396{left:419.200000pt;}
.xe8_c00396{left:422.933333pt;}
.x123_c00396{left:425.066667pt;}
.x117_c00396{left:427.733333pt;}
.x128_c00396{left:429.066667pt;}
.x12b_c00396{left:430.000000pt;}
.xff_c00396{left:432.266667pt;}
.xef_c00396{left:436.266667pt;}
.xc2_c00396{left:438.533333pt;}
.xd6_c00396{left:441.600000pt;}
.xe9_c00396{left:444.666667pt;}
.x132_c00396{left:446.933333pt;}
.x11c_c00396{left:449.466667pt;}
.x104_c00396{left:450.533333pt;}
.x134_c00396{left:455.333333pt;}
.xcb_c00396{left:456.266667pt;}
.xc3_c00396{left:457.333333pt;}
.x109_c00396{left:459.466667pt;}
.xcc_c00396{left:461.066667pt;}
.x11e_c00396{left:462.133333pt;}
.xbf_c00396{left:463.066667pt;}
.x10e_c00396{left:464.133333pt;}
.xdd_c00396{left:466.933333pt;}
.xf0_c00396{left:468.000000pt;}
.xb0_c00396{left:469.733333pt;}
.xd7_c00396{left:471.066667pt;}
.xb8_c00396{left:473.466667pt;}
.x9e_c00396{left:475.200000pt;}
.x12e_c00396{left:476.800000pt;}
.x107_c00396{left:479.200000pt;}
.xf5_c00396{left:480.933333pt;}
.x133_c00396{left:484.400000pt;}
.x12c_c00396{left:485.333333pt;}
.xb1_c00396{left:486.400000pt;}
.x10a_c00396{left:488.533333pt;}
.xb9_c00396{left:489.733333pt;}
.x9f_c00396{left:492.133333pt;}
.x122_c00396{left:493.733333pt;}
.xfa_c00396{left:495.200000pt;}
.x100_c00396{left:497.200000pt;}
.x10f_c00396{left:499.066667pt;}
.x125_c00396{left:503.066667pt;}
.xd8_c00396{left:504.666667pt;}
.xde_c00396{left:506.266667pt;}
.xa8_c00396{left:508.933333pt;}
.xe4_c00396{left:510.266667pt;}
.xea_c00396{left:512.133333pt;}
.xed_c00396{left:513.733333pt;}
.xa9_c00396{left:515.333333pt;}
.xd1_c00396{left:517.066667pt;}
.xc9_c00396{left:518.666667pt;}
.x11d_c00396{left:520.533333pt;}
.xaa_c00396{left:521.733333pt;}
.xa0_c00396{left:523.200000pt;}
.xb2_c00396{left:524.800000pt;}
.xcd_c00396{left:526.666667pt;}
.xab_c00396{left:528.133333pt;}
.xf6_c00396{left:529.600000pt;}
.x105_c00396{left:532.133333pt;}
.xc4_c00396{left:533.466667pt;}
.xac_c00396{left:534.533333pt;}
.xca_c00396{left:536.266667pt;}
.xf7_c00396{left:537.600000pt;}
.xd9_c00396{left:538.533333pt;}
.xa1_c00396{left:540.533333pt;}
.x115_c00396{left:542.000000pt;}
.x135_c00396{left:543.066667pt;}
.xfb_c00396{left:545.200000pt;}
.xc5_c00396{left:546.266667pt;}
.x118_c00396{left:547.333333pt;}
.xf1_c00396{left:550.000000pt;}
.x12d_c00396{left:550.933333pt;}
.x10b_c00396{left:552.266667pt;}
.xc6_c00396{left:553.333333pt;}
.x101_c00396{left:555.733333pt;}
.x10d_c00396{left:558.133333pt;}
.xba_c00396{left:560.400000pt;}
.x114_c00396{left:564.800000pt;}
.xbb_c00396{left:566.800000pt;}
.x129_c00396{left:568.266667pt;}
.xdf_c00396{left:570.000000pt;}
.xda_c00396{left:571.466667pt;}
.xbc_c00396{left:573.200000pt;}
.xb3_c00396{left:574.133333pt;}
.x10c_c00396{left:576.933333pt;}
.xe7_c00396{left:577.866667pt;}
.x102_c00396{left:579.066667pt;}
.xee_c00396{left:580.000000pt;}
.xf8_c00396{left:581.466667pt;}
.xeb_c00396{left:583.466667pt;}
.xa2_c00396{left:584.666667pt;}
.xce_c00396{left:586.133333pt;}
.xb4_c00396{left:587.200000pt;}
.x119_c00396{left:588.266667pt;}
.x116_c00396{left:590.666667pt;}
.xb5_c00396{left:593.600000pt;}
.xa3_c00396{left:594.933333pt;}
.x11a_c00396{left:597.600000pt;}
.xbd_c00396{left:598.933333pt;}
.xb6_c00396{left:600.000000pt;}
.xd2_c00396{left:602.533333pt;}
.xc7_c00396{left:605.333333pt;}
.xb7_c00396{left:606.400000pt;}
.xf2_c00396{left:608.533333pt;}
.xbe_c00396{left:611.733333pt;}
.x127_c00396{left:614.400000pt;}
.xfc_c00396{left:616.266667pt;}
.x108_c00396{left:617.866667pt;}
.x111_c00396{left:620.400000pt;}
.xf9_c00396{left:622.133333pt;}
.xe0_c00396{left:623.733333pt;}
.x12a_c00396{left:624.666667pt;}
.xa4_c00396{left:626.000000pt;}
.xc0_c00396{left:628.800000pt;}
.xad_c00396{left:629.866667pt;}
.x112_c00396{left:631.333333pt;}
.x137_c00396{left:632.400000pt;}
.xfd_c00396{left:634.533333pt;}
.xd3_c00396{left:637.733333pt;}
.x11f_c00396{left:641.200000pt;}
.xdb_c00396{left:642.533333pt;}
.xe1_c00396{left:643.866667pt;}
.x106_c00396{left:645.333333pt;}
.xe5_c00396{left:647.200000pt;}
.xfe_c00396{left:648.266667pt;}
.xa5_c00396{left:649.733333pt;}
.xf3_c00396{left:651.466667pt;}
.xc8_c00396{left:654.666667pt;}
.xae_c00396{left:655.733333pt;}
.xc1_c00396{left:656.666667pt;}
.x12f_c00396{left:659.600000pt;}
.x136_c00396{left:660.800000pt;}
.x103_c00396{left:663.866667pt;}
.x113_c00396{left:665.866667pt;}
.xf4_c00396{left:667.200000pt;}
.x2_c00396{left:669.200000pt;}
.xd4_c00396{left:671.066667pt;}
.xe6_c00396{left:673.066667pt;}
.xcf_c00396{left:676.133333pt;}
.x126_c00396{left:677.733333pt;}
.x110_c00396{left:679.066667pt;}
.xa6_c00396{left:680.400000pt;}
.xaf_c00396{left:681.600000pt;}
.x130_c00396{left:682.666667pt;}
.x11b_c00396{left:686.800000pt;}
.xe2_c00396{left:689.333333pt;}
}





/* 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_c00397 {
    display:none;
  }
  .loading-indicator_c00397.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00397 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_c00397 { 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_c00397" -> "#page-container .classname_c00397")
 */
.pf_c00397 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00397 { /* 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_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00397 { /* 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_c00397 { /* 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_c00397 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00397 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00397 {overflow:visible;}
  }
}
.c_c00397 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00397 { /* 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_c00397:after { /* webkit #35443 */
  content: '';
}
.t_c00397:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00397 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 */
}
.__c00397 { /* 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_c00397 { /* info for Javascript */
  display:none;
}
.l_c00397 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00397 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00397 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00397: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_c00397 {
    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_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00397.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_c00397 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00397;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.000000;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;}
.m115_c00397{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00397{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mab_c00397{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00397{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00397{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m80_c00397{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mce_c00397{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00397{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m48_c00397{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00397{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00397{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m95_c00397{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00397{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma_c00397{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m109_c00397{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m94_c00397{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m65_c00397{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md_c00397{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m97_c00397{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m79_c00397{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00397{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m50_c00397{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00397{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.md4_c00397{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00397{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00397{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mad_c00397{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m72_c00397{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00397{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m90_c00397{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m120_c00397{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m49_c00397{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00397{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m96_c00397{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00397{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00397{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00397{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m47_c00397{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m100_c00397{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m52_c00397{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m107_c00397{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m126_c00397{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m18_c00397{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m98_c00397{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m16_c00397{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mde_c00397{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m12_c00397{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00397{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m36_c00397{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.maa_c00397{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00397{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mef_c00397{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00397{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m20_c00397{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me9_c00397{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m28_c00397{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m113_c00397{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md7_c00397{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00397{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00397{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m11_c00397{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00397{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00397{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00397{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m6_c00397{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m23_c00397{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00397{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00397{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m21_c00397{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00397{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mf_c00397{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m83_c00397{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00397{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10_c00397{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00397{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md2_c00397{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m81_c00397{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00397{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m17_c00397{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m22_c00397{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m92_c00397{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00397{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m53_c00397{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00397{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m39_c00397{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00397{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00397{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00397{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m122_c00397{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00397{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00397{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00397{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m105_c00397{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.me3_c00397{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2_c00397{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m9_c00397{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m86_c00397{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m40_c00397{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md8_c00397{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00397{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m85_c00397{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m63_c00397{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me5_c00397{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00397{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00397{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m87_c00397{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m82_c00397{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00397{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00397{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m34_c00397{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m44_c00397{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m19_c00397{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.me_c00397{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00397{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00397{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m62_c00397{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me7_c00397{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00397{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m103_c00397{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00397{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00397{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00397{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m68_c00397{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me2_c00397{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m121_c00397{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00397{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00397{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00397{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me4_c00397{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00397{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m25_c00397{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m46_c00397{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00397{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m108_c00397{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m111_c00397{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00397{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00397{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m30_c00397{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00397{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.med_c00397{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m24_c00397{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m67_c00397{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mda_c00397{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m37_c00397{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m60_c00397{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m78_c00397{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mba_c00397{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m66_c00397{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m14_c00397{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m71_c00397{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md6_c00397{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00397{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00397{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00397{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md5_c00397{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m70_c00397{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md0_c00397{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00397{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00397{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00397{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m77_c00397{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00397{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m35_c00397{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00397{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mca_c00397{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m124_c00397{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00397{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m101_c00397{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00397{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m88_c00397{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00397{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00397{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.meb_c00397{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m27_c00397{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00397{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m57_c00397{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00397{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00397{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.maf_c00397{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m84_c00397{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m128_c00397{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m33_c00397{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me0_c00397{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4_c00397{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.me8_c00397{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00397{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00397{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00397{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m45_c00397{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00397{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m15_c00397{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m38_c00397{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me6_c00397{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00397{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00397{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00397{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00397{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00397{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md9_c00397{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m110_c00397{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00397{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00397{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m76_c00397{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00397{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m69_c00397{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m75_c00397{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00397{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00397{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m61_c00397{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00397{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00397{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00397{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00397{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md3_c00397{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00397{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m26_c00397{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00397{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m29_c00397{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m54_c00397{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m43_c00397{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8_c00397{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m64_c00397{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00397{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m102_c00397{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00397{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00397{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00397{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00397{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mee_c00397{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00397{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00397{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mae_c00397{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00397{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m106_c00397{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00397{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00397{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00397{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.me1_c00397{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00397{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m93_c00397{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m59_c00397{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00397{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m91_c00397{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00397{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00397{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00397{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7_c00397{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m104_c00397{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00397{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00397{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m127_c00397{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00397{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00397{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mff_c00397{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00397{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m31_c00397{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00397{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m116_c00397{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00397{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb_c00397{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00397{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00397{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m118_c00397{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m41_c00397{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00397{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m32_c00397{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mac_c00397{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m51_c00397{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mec_c00397{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m119_c00397{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m123_c00397{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00397{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m125_c00397{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m129_c00397{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m114_c00397{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00397{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m117_c00397{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00397{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m74_c00397{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00397{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m56_c00397{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m42_c00397{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m89_c00397{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00397{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00397{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m112_c00397{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mea_c00397{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00397{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00397{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m58_c00397{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00397{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m55_c00397{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m99_c00397{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.md1_c00397{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m73_c00397{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m5_c00397{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{transform:matrix(0.415500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415500,0.000000,0.000000,0.250000,0,0);}
.m3_c00397{transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00397{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00397{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00397{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls1_c00397{letter-spacing:0.000000px;}
.ls0_c00397{letter-spacing:63.000000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{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__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00397{word-spacing:-90.000000px;}
.ws0_c00397{word-spacing:-22.169611px;}
.ws8_c00397{word-spacing:-10.256410px;}
.ws1_c00397{word-spacing:-8.822678px;}
.wsf_c00397{word-spacing:-8.292683px;}
.ws10_c00397{word-spacing:-7.857143px;}
.ws14_c00397{word-spacing:-7.794760px;}
.ws13_c00397{word-spacing:-6.707317px;}
.ws2_c00397{word-spacing:-3.445115px;}
.ws15_c00397{word-spacing:0.000000px;}
.ws11_c00397{word-spacing:11.601896px;}
.ws9_c00397{word-spacing:18.125000px;}
.ws6_c00397{word-spacing:19.994638px;}
.wsd_c00397{word-spacing:22.142857px;}
.ws3_c00397{word-spacing:23.211796px;}
.wsa_c00397{word-spacing:25.714286px;}
.ws12_c00397{word-spacing:28.421053px;}
.wsc_c00397{word-spacing:35.833333px;}
.ws5_c00397{word-spacing:39.750000px;}
.ws4_c00397{word-spacing:130.687500px;}
.wse_c00397{word-spacing:150.878049px;}
.wsb_c00397{word-spacing:161.500000px;}
._2_c00397{margin-left:-63.000000px;}
._0_c00397{width:53.428954px;}
._3_c00397{width:55.714286px;}
._4_c00397{width:59.285714px;}
._1_c00397{width:72.375000px;}
.fc0_c00397{color:transparent;}
.fs5_c00397{font-size:54.000000px;}
.fs3_c00397{font-size:60.000000px;}
.fs2_c00397{font-size:66.000000px;}
.fs4_c00397{font-size:72.000000px;}
.fs1_c00397{font-size:78.000000px;}
.fs0_c00397{font-size:108.000000px;}
.y0_c00397{bottom:0.000000px;}
.y67_c00397{bottom:183.900000px;}
.y36_c00397{bottom:186.300000px;}
.y66_c00397{bottom:200.100000px;}
.y35_c00397{bottom:204.000000px;}
.y65_c00397{bottom:217.800000px;}
.y34_c00397{bottom:221.250000px;}
.y64_c00397{bottom:235.350000px;}
.y33_c00397{bottom:238.950000px;}
.y63_c00397{bottom:253.350000px;}
.y32_c00397{bottom:256.650000px;}
.y62_c00397{bottom:271.350000px;}
.y31_c00397{bottom:274.650000px;}
.y61_c00397{bottom:289.350000px;}
.y30_c00397{bottom:291.900000px;}
.y60_c00397{bottom:307.050000px;}
.y2f_c00397{bottom:310.200000px;}
.y2e_c00397{bottom:328.200000px;}
.y5f_c00397{bottom:329.400000px;}
.y2d_c00397{bottom:345.900000px;}
.y5e_c00397{bottom:347.700000px;}
.y2c_c00397{bottom:363.600000px;}
.y5d_c00397{bottom:365.400000px;}
.y2b_c00397{bottom:381.600000px;}
.y5c_c00397{bottom:388.050000px;}
.y2a_c00397{bottom:399.900000px;}
.y5b_c00397{bottom:406.200000px;}
.y29_c00397{bottom:417.600000px;}
.y5a_c00397{bottom:424.500000px;}
.y28_c00397{bottom:435.600000px;}
.y59_c00397{bottom:446.700000px;}
.y27_c00397{bottom:456.600000px;}
.y58_c00397{bottom:464.700000px;}
.y26_c00397{bottom:471.300000px;}
.y25_c00397{bottom:486.000000px;}
.y57_c00397{bottom:487.050000px;}
.y24_c00397{bottom:500.400000px;}
.y56_c00397{bottom:509.250000px;}
.y23_c00397{bottom:514.800000px;}
.y55_c00397{bottom:527.250000px;}
.y22_c00397{bottom:531.300000px;}
.y21_c00397{bottom:543.900000px;}
.y54_c00397{bottom:544.950000px;}
.y20_c00397{bottom:558.000000px;}
.y53_c00397{bottom:562.650000px;}
.y1f_c00397{bottom:572.700000px;}
.y1e_c00397{bottom:586.800000px;}
.y52_c00397{bottom:592.950000px;}
.y1d_c00397{bottom:602.700000px;}
.y51_c00397{bottom:603.000000px;}
.y50_c00397{bottom:620.700000px;}
.y1c_c00397{bottom:626.100000px;}
.y4f_c00397{bottom:639.000000px;}
.y1b_c00397{bottom:644.100000px;}
.y4e_c00397{bottom:657.000000px;}
.y1a_c00397{bottom:662.100000px;}
.y4d_c00397{bottom:676.500000px;}
.y19_c00397{bottom:680.400000px;}
.y4c_c00397{bottom:692.700000px;}
.y18_c00397{bottom:697.650000px;}
.y4b_c00397{bottom:711.000000px;}
.y17_c00397{bottom:726.150000px;}
.y4a_c00397{bottom:732.900000px;}
.y16_c00397{bottom:742.650000px;}
.y49_c00397{bottom:750.900000px;}
.y15_c00397{bottom:760.650000px;}
.y48_c00397{bottom:773.400000px;}
.y14_c00397{bottom:778.650000px;}
.y47_c00397{bottom:791.400000px;}
.y13_c00397{bottom:796.650000px;}
.y46_c00397{bottom:809.700000px;}
.y12_c00397{bottom:814.350000px;}
.y45_c00397{bottom:831.300000px;}
.y11_c00397{bottom:832.650000px;}
.y44_c00397{bottom:849.300000px;}
.y10_c00397{bottom:850.650000px;}
.y43_c00397{bottom:867.600000px;}
.yf_c00397{bottom:868.350000px;}
.ye_c00397{bottom:888.450000px;}
.y42_c00397{bottom:889.950000px;}
.y41_c00397{bottom:907.950000px;}
.yd_c00397{bottom:908.550000px;}
.y40_c00397{bottom:925.950000px;}
.yc_c00397{bottom:927.300000px;}
.y3f_c00397{bottom:947.850000px;}
.yb_c00397{bottom:961.500000px;}
.y3e_c00397{bottom:965.850000px;}
.ya_c00397{bottom:979.950000px;}
.y3d_c00397{bottom:984.150000px;}
.y9_c00397{bottom:998.250000px;}
.y3c_c00397{bottom:1001.850000px;}
.y8_c00397{bottom:1019.850000px;}
.y3b_c00397{bottom:1037.850000px;}
.y7_c00397{bottom:1038.600000px;}
.y3a_c00397{bottom:1055.850000px;}
.y6_c00397{bottom:1056.600000px;}
.y5_c00397{bottom:1074.600000px;}
.y39_c00397{bottom:1077.900000px;}
.y4_c00397{bottom:1092.600000px;}
.y38_c00397{bottom:1095.900000px;}
.y3_c00397{bottom:1110.300000px;}
.y37_c00397{bottom:1113.900000px;}
.y1_c00397{bottom:1135.800000px;}
.y2_c00397{bottom:1138.650000px;}
.h7_c00397{height:54.000000px;}
.h5_c00397{height:60.000000px;}
.h4_c00397{height:66.000000px;}
.h6_c00397{height:72.000000px;}
.h3_c00397{height:78.000000px;}
.h2_c00397{height:108.000000px;}
.h0_c00397{height:1267.919952px;}
.h1_c00397{height:1268.250000px;}
.w0_c00397{width:960.480010px;}
.w1_c00397{width:960.750000px;}
.x0_c00397{left:0.000000px;}
.x1_c00397{left:181.500000px;}
.x6d_c00397{left:182.550000px;}
.x35_c00397{left:184.650000px;}
.x3f_c00397{left:185.700000px;}
.x8a_c00397{left:195.600000px;}
.x75_c00397{left:196.650000px;}
.x79_c00397{left:198.450000px;}
.x9_c00397{left:200.100000px;}
.x11_c00397{left:201.900000px;}
.x28_c00397{left:203.250000px;}
.x6e_c00397{left:206.700000px;}
.x92_c00397{left:210.000000px;}
.x9b_c00397{left:211.500000px;}
.xa1_c00397{left:217.500000px;}
.x44_c00397{left:218.850000px;}
.x4c_c00397{left:220.050000px;}
.xa3_c00397{left:222.600000px;}
.x29_c00397{left:223.800000px;}
.x8e_c00397{left:225.000000px;}
.x6f_c00397{left:226.500000px;}
.xa_c00397{left:231.450000px;}
.x58_c00397{left:232.950000px;}
.x8b_c00397{left:234.150000px;}
.x18_c00397{left:236.400000px;}
.x7a_c00397{left:238.800000px;}
.x12_c00397{left:240.000000px;}
.x2e_c00397{left:245.400000px;}
.x80_c00397{left:247.050000px;}
.x19_c00397{left:249.300000px;}
.x21_c00397{left:250.950000px;}
.xac_c00397{left:252.900000px;}
.x9e_c00397{left:255.900000px;}
.xa4_c00397{left:257.100000px;}
.xa7_c00397{left:259.650000px;}
.x43_c00397{left:260.850000px;}
.x55_c00397{left:264.600000px;}
.x68_c00397{left:266.850000px;}
.x9c_c00397{left:268.200000px;}
.x40_c00397{left:269.850000px;}
.x1a_c00397{left:270.900000px;}
.x59_c00397{left:272.850000px;}
.x36_c00397{left:273.900000px;}
.x6b_c00397{left:275.700000px;}
.x2f_c00397{left:276.750000px;}
.x45_c00397{left:278.250000px;}
.x8c_c00397{left:280.650000px;}
.x76_c00397{left:283.500000px;}
.x22_c00397{left:285.150000px;}
.xb_c00397{left:286.500000px;}
.x4d_c00397{left:288.450000px;}
.x1b_c00397{left:289.650000px;}
.x52_c00397{left:291.300000px;}
.x7b_c00397{left:293.550000px;}
.x81_c00397{left:295.350000px;}
.xc_c00397{left:296.550000px;}
.x8f_c00397{left:297.750000px;}
.x13_c00397{left:299.400000px;}
.x46_c00397{left:301.350000px;}
.x3b_c00397{left:302.700000px;}
.x5f_c00397{left:304.200000px;}
.xad_c00397{left:306.450000px;}
.x4e_c00397{left:307.500000px;}
.x14_c00397{left:312.000000px;}
.x82_c00397{left:313.350000px;}
.x99_c00397{left:315.150000px;}
.xaa_c00397{left:316.650000px;}
.x98_c00397{left:317.850000px;}
.x30_c00397{left:319.950000px;}
.x5a_c00397{left:321.450000px;}
.x77_c00397{left:323.850000px;}
.x63_c00397{left:325.500000px;}
.x47_c00397{left:326.550000px;}
.x23_c00397{left:328.050000px;}
.x85_c00397{left:329.700000px;}
.x70_c00397{left:332.400000px;}
.xa5_c00397{left:333.450000px;}
.x64_c00397{left:334.500000px;}
.xab_c00397{left:336.150000px;}
.x7c_c00397{left:337.500000px;}
.x37_c00397{left:340.200000px;}
.x93_c00397{left:341.400000px;}
.x87_c00397{left:343.650000px;}
.x31_c00397{left:345.900000px;}
.x2a_c00397{left:350.100000px;}
.x24_c00397{left:351.450000px;}
.x15_c00397{left:353.100000px;}
.x83_c00397{left:355.500000px;}
.x8d_c00397{left:357.900000px;}
.x38_c00397{left:359.250000px;}
.x1c_c00397{left:360.600000px;}
.x4f_c00397{left:362.250000px;}
.x94_c00397{left:363.300000px;}
.x65_c00397{left:365.100000px;}
.x56_c00397{left:366.450000px;}
.x3c_c00397{left:368.550000px;}
.x9a_c00397{left:370.200000px;}
.x48_c00397{left:372.600000px;}
.x41_c00397{left:373.950000px;}
.x16_c00397{left:376.200000px;}
.xd_c00397{left:377.250000px;}
.x9f_c00397{left:380.100000px;}
.x60_c00397{left:382.650000px;}
.x69_c00397{left:383.850000px;}
.x90_c00397{left:385.800000px;}
.x49_c00397{left:388.800000px;}
.x97_c00397{left:391.950000px;}
.x61_c00397{left:393.450000px;}
.x32_c00397{left:394.800000px;}
.x71_c00397{left:396.150000px;}
.x6a_c00397{left:399.750000px;}
.x95_c00397{left:402.000000px;}
.xa8_c00397{left:404.100000px;}
.x86_c00397{left:405.300000px;}
.x2b_c00397{left:406.950000px;}
.x72_c00397{left:408.000000px;}
.xae_c00397{left:409.500000px;}
.x88_c00397{left:410.550000px;}
.x39_c00397{left:413.250000px;}
.x33_c00397{left:414.300000px;}
.x1d_c00397{left:416.100000px;}
.x5d_c00397{left:419.700000px;}
.x91_c00397{left:421.050000px;}
.x25_c00397{left:423.150000px;}
.x66_c00397{left:425.100000px;}
.x5b_c00397{left:427.650000px;}
.x53_c00397{left:429.150000px;}
.x50_c00397{left:430.650000px;}
.x2_c00397{left:431.700000px;}
.xe_c00397{left:433.350000px;}
.x84_c00397{left:435.450000px;}
.x6c_c00397{left:436.800000px;}
.x34_c00397{left:438.000000px;}
.x1e_c00397{left:440.550000px;}
.xf_c00397{left:443.100000px;}
.x9d_c00397{left:444.600000px;}
.x7d_c00397{left:445.800000px;}
.x54_c00397{left:448.200000px;}
.x57_c00397{left:450.000000px;}
.x73_c00397{left:451.200000px;}
.xb1_c00397{left:452.400000px;}
.x67_c00397{left:453.600000px;}
.x3_c00397{left:455.400000px;}
.x5e_c00397{left:458.250000px;}
.xa6_c00397{left:459.450000px;}
.x2c_c00397{left:460.650000px;}
.x4a_c00397{left:464.400000px;}
.x7e_c00397{left:465.900000px;}
.x1f_c00397{left:467.250000px;}
.x89_c00397{left:470.250000px;}
.x42_c00397{left:471.900000px;}
.xaf_c00397{left:472.950000px;}
.x4_c00397{left:474.150000px;}
.x26_c00397{left:476.100000px;}
.x62_c00397{left:477.750000px;}
.x96_c00397{left:479.100000px;}
.x2d_c00397{left:480.450000px;}
.x17_c00397{left:483.450000px;}
.xa9_c00397{left:484.800000px;}
.x3d_c00397{left:487.350000px;}
.x10_c00397{left:489.150000px;}
.xa2_c00397{left:491.850000px;}
.x27_c00397{left:493.050000px;}
.x78_c00397{left:494.400000px;}
.x7f_c00397{left:496.500000px;}
.x20_c00397{left:498.600000px;}
.xb0_c00397{left:500.250000px;}
.x3a_c00397{left:503.250000px;}
.x74_c00397{left:504.450000px;}
.x4b_c00397{left:506.550000px;}
.x5c_c00397{left:508.950000px;}
.x3e_c00397{left:510.000000px;}
.xa0_c00397{left:513.900000px;}
.x51_c00397{left:515.550000px;}
.x5_c00397{left:521.250000px;}
.x12c_c00397{left:539.700000px;}
.x121_c00397{left:540.750000px;}
.x146_c00397{left:547.500000px;}
.x134_c00397{left:549.300000px;}
.x140_c00397{left:552.300000px;}
.x132_c00397{left:556.350000px;}
.xb2_c00397{left:557.700000px;}
.xca_c00397{left:559.200000px;}
.x13c_c00397{left:572.100000px;}
.xbc_c00397{left:575.250000px;}
.xe8_c00397{left:578.100000px;}
.x11f_c00397{left:579.150000px;}
.xf4_c00397{left:580.350000px;}
.x6_c00397{left:581.400000px;}
.x138_c00397{left:583.950000px;}
.xcf_c00397{left:585.300000px;}
.x10a_c00397{left:590.700000px;}
.xd4_c00397{left:593.550000px;}
.x101_c00397{left:596.250000px;}
.xef_c00397{left:599.550000px;}
.x14a_c00397{left:601.200000px;}
.x7_c00397{left:602.250000px;}
.xb3_c00397{left:604.800000px;}
.xe4_c00397{left:606.450000px;}
.x141_c00397{left:607.650000px;}
.xc4_c00397{left:609.900000px;}
.xda_c00397{left:611.550000px;}
.xb4_c00397{left:613.050000px;}
.x112_c00397{left:614.250000px;}
.x135_c00397{left:615.900000px;}
.x8_c00397{left:616.950000px;}
.xf5_c00397{left:618.150000px;}
.x12a_c00397{left:620.250000px;}
.xf0_c00397{left:621.900000px;}
.x130_c00397{left:623.850000px;}
.xcb_c00397{left:626.100000px;}
.x12d_c00397{left:629.250000px;}
.xc5_c00397{left:630.450000px;}
.xe9_c00397{left:632.400000px;}
.xe5_c00397{left:633.750000px;}
.xe0_c00397{left:635.250000px;}
.x131_c00397{left:637.950000px;}
.xd0_c00397{left:640.050000px;}
.x10e_c00397{left:641.700000px;}
.xf6_c00397{left:643.650000px;}
.xd5_c00397{left:646.500000px;}
.x102_c00397{left:648.750000px;}
.x113_c00397{left:650.250000px;}
.xc1_c00397{left:651.450000px;}
.x139_c00397{left:652.650000px;}
.x147_c00397{left:654.000000px;}
.xbd_c00397{left:657.300000px;}
.x124_c00397{left:658.800000px;}
.xb5_c00397{left:660.150000px;}
.x122_c00397{left:662.850000px;}
.x13d_c00397{left:663.900000px;}
.x11c_c00397{left:666.750000px;}
.xb6_c00397{left:668.100000px;}
.xdb_c00397{left:670.200000px;}
.xc2_c00397{left:673.050000px;}
.x107_c00397{left:674.700000px;}
.xf9_c00397{left:675.750000px;}
.x143_c00397{left:676.800000px;}
.x10b_c00397{left:679.950000px;}
.x11d_c00397{left:682.200000px;}
.xc6_c00397{left:683.400000px;}
.x109_c00397{left:685.350000px;}
.xfd_c00397{left:687.900000px;}
.xe6_c00397{left:689.100000px;}
.xe1_c00397{left:690.300000px;}
.xeb_c00397{left:691.350000px;}
.xd6_c00397{left:693.000000px;}
.x136_c00397{left:694.350000px;}
.x103_c00397{left:695.550000px;}
.x13f_c00397{left:697.350000px;}
.xcc_c00397{left:698.400000px;}
.xf1_c00397{left:700.350000px;}
.xfa_c00397{left:704.550000px;}
.x125_c00397{left:705.900000px;}
.xb7_c00397{left:708.000000px;}
.x12e_c00397{left:709.950000px;}
.x120_c00397{left:713.250000px;}
.x13a_c00397{left:715.950000px;}
.x128_c00397{left:717.000000px;}
.x144_c00397{left:718.500000px;}
.xf2_c00397{left:720.150000px;}
.x114_c00397{left:722.250000px;}
.x10c_c00397{left:723.450000px;}
.xe7_c00397{left:725.400000px;}
.xc3_c00397{left:727.800000px;}
.xbe_c00397{left:729.600000px;}
.x14b_c00397{left:731.850000px;}
.xd7_c00397{left:734.700000px;}
.x142_c00397{left:737.250000px;}
.x117_c00397{left:738.600000px;}
.x127_c00397{left:739.650000px;}
.xdc_c00397{left:742.200000px;}
.xb8_c00397{left:744.000000px;}
.x10d_c00397{left:745.050000px;}
.xcd_c00397{left:746.700000px;}
.xc7_c00397{left:749.250000px;}
.xf3_c00397{left:752.250000px;}
.xe2_c00397{left:754.050000px;}
.x145_c00397{left:756.000000px;}
.x118_c00397{left:758.400000px;}
.x11e_c00397{left:759.900000px;}
.x12b_c00397{left:761.250000px;}
.xfe_c00397{left:764.250000px;}
.x104_c00397{left:766.050000px;}
.xec_c00397{left:768.750000px;}
.xdd_c00397{left:770.700000px;}
.xea_c00397{left:772.050000px;}
.x108_c00397{left:773.400000px;}
.xe3_c00397{left:775.350000px;}
.x12f_c00397{left:777.150000px;}
.x148_c00397{left:779.550000px;}
.x119_c00397{left:782.850000px;}
.xfb_c00397{left:786.000000px;}
.xd1_c00397{left:787.650000px;}
.x137_c00397{left:789.450000px;}
.xb9_c00397{left:790.800000px;}
.xf7_c00397{left:794.100000px;}
.x129_c00397{left:796.200000px;}
.xd8_c00397{left:798.450000px;}
.xbf_c00397{left:803.400000px;}
.xff_c00397{left:805.350000px;}
.x13e_c00397{left:806.550000px;}
.xba_c00397{left:810.600000px;}
.xc8_c00397{left:812.250000px;}
.x123_c00397{left:813.300000px;}
.x10f_c00397{left:815.250000px;}
.xde_c00397{left:817.500000px;}
.x11a_c00397{left:819.150000px;}
.xc0_c00397{left:824.250000px;}
.xd2_c00397{left:825.450000px;}
.x116_c00397{left:827.850000px;}
.xce_c00397{left:829.800000px;}
.x115_c00397{left:831.300000px;}
.xf8_c00397{left:833.400000px;}
.x126_c00397{left:834.750000px;}
.x110_c00397{left:835.800000px;}
.xed_c00397{left:837.450000px;}
.x105_c00397{left:838.650000px;}
.xd9_c00397{left:840.150000px;}
.xfc_c00397{left:841.800000px;}
.x13b_c00397{left:842.850000px;}
.xee_c00397{left:847.950000px;}
.x100_c00397{left:849.000000px;}
.xbb_c00397{left:850.200000px;}
.xc9_c00397{left:851.550000px;}
.x11b_c00397{left:853.350000px;}
.x106_c00397{left:855.150000px;}
.xdf_c00397{left:857.100000px;}
.xd3_c00397{left:863.550000px;}
.x149_c00397{left:866.400000px;}
.x133_c00397{left:873.000000px;}
.x111_c00397{left:874.500000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls1_c00397{letter-spacing:0.000000pt;}
.ls0_c00397{letter-spacing:56.000000pt;}
.ws7_c00397{word-spacing:-80.000000pt;}
.ws0_c00397{word-spacing:-19.706321pt;}
.ws8_c00397{word-spacing:-9.116809pt;}
.ws1_c00397{word-spacing:-7.842380pt;}
.wsf_c00397{word-spacing:-7.371274pt;}
.ws10_c00397{word-spacing:-6.984127pt;}
.ws14_c00397{word-spacing:-6.928675pt;}
.ws13_c00397{word-spacing:-5.962060pt;}
.ws2_c00397{word-spacing:-3.062324pt;}
.ws15_c00397{word-spacing:0.000000pt;}
.ws11_c00397{word-spacing:10.312796pt;}
.ws9_c00397{word-spacing:16.111111pt;}
.ws6_c00397{word-spacing:17.773012pt;}
.wsd_c00397{word-spacing:19.682540pt;}
.ws3_c00397{word-spacing:20.632708pt;}
.wsa_c00397{word-spacing:22.857143pt;}
.ws12_c00397{word-spacing:25.263158pt;}
.wsc_c00397{word-spacing:31.851852pt;}
.ws5_c00397{word-spacing:35.333333pt;}
.ws4_c00397{word-spacing:116.166667pt;}
.wse_c00397{word-spacing:134.113821pt;}
.wsb_c00397{word-spacing:143.555556pt;}
._2_c00397{margin-left:-56.000000pt;}
._0_c00397{width:47.492404pt;}
._3_c00397{width:49.523810pt;}
._4_c00397{width:52.698413pt;}
._1_c00397{width:64.333333pt;}
.fs5_c00397{font-size:48.000000pt;}
.fs3_c00397{font-size:53.333333pt;}
.fs2_c00397{font-size:58.666667pt;}
.fs4_c00397{font-size:64.000000pt;}
.fs1_c00397{font-size:69.333333pt;}
.fs0_c00397{font-size:96.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.y67_c00397{bottom:163.466667pt;}
.y36_c00397{bottom:165.600000pt;}
.y66_c00397{bottom:177.866667pt;}
.y35_c00397{bottom:181.333333pt;}
.y65_c00397{bottom:193.600000pt;}
.y34_c00397{bottom:196.666667pt;}
.y64_c00397{bottom:209.200000pt;}
.y33_c00397{bottom:212.400000pt;}
.y63_c00397{bottom:225.200000pt;}
.y32_c00397{bottom:228.133333pt;}
.y62_c00397{bottom:241.200000pt;}
.y31_c00397{bottom:244.133333pt;}
.y61_c00397{bottom:257.200000pt;}
.y30_c00397{bottom:259.466667pt;}
.y60_c00397{bottom:272.933333pt;}
.y2f_c00397{bottom:275.733333pt;}
.y2e_c00397{bottom:291.733333pt;}
.y5f_c00397{bottom:292.800000pt;}
.y2d_c00397{bottom:307.466667pt;}
.y5e_c00397{bottom:309.066667pt;}
.y2c_c00397{bottom:323.200000pt;}
.y5d_c00397{bottom:324.800000pt;}
.y2b_c00397{bottom:339.200000pt;}
.y5c_c00397{bottom:344.933333pt;}
.y2a_c00397{bottom:355.466667pt;}
.y5b_c00397{bottom:361.066667pt;}
.y29_c00397{bottom:371.200000pt;}
.y5a_c00397{bottom:377.333333pt;}
.y28_c00397{bottom:387.200000pt;}
.y59_c00397{bottom:397.066667pt;}
.y27_c00397{bottom:405.866667pt;}
.y58_c00397{bottom:413.066667pt;}
.y26_c00397{bottom:418.933333pt;}
.y25_c00397{bottom:432.000000pt;}
.y57_c00397{bottom:432.933333pt;}
.y24_c00397{bottom:444.800000pt;}
.y56_c00397{bottom:452.666667pt;}
.y23_c00397{bottom:457.600000pt;}
.y55_c00397{bottom:468.666667pt;}
.y22_c00397{bottom:472.266667pt;}
.y21_c00397{bottom:483.466667pt;}
.y54_c00397{bottom:484.400000pt;}
.y20_c00397{bottom:496.000000pt;}
.y53_c00397{bottom:500.133333pt;}
.y1f_c00397{bottom:509.066667pt;}
.y1e_c00397{bottom:521.600000pt;}
.y52_c00397{bottom:527.066667pt;}
.y1d_c00397{bottom:535.733333pt;}
.y51_c00397{bottom:536.000000pt;}
.y50_c00397{bottom:551.733333pt;}
.y1c_c00397{bottom:556.533333pt;}
.y4f_c00397{bottom:568.000000pt;}
.y1b_c00397{bottom:572.533333pt;}
.y4e_c00397{bottom:584.000000pt;}
.y1a_c00397{bottom:588.533333pt;}
.y4d_c00397{bottom:601.333333pt;}
.y19_c00397{bottom:604.800000pt;}
.y4c_c00397{bottom:615.733333pt;}
.y18_c00397{bottom:620.133333pt;}
.y4b_c00397{bottom:632.000000pt;}
.y17_c00397{bottom:645.466667pt;}
.y4a_c00397{bottom:651.466667pt;}
.y16_c00397{bottom:660.133333pt;}
.y49_c00397{bottom:667.466667pt;}
.y15_c00397{bottom:676.133333pt;}
.y48_c00397{bottom:687.466667pt;}
.y14_c00397{bottom:692.133333pt;}
.y47_c00397{bottom:703.466667pt;}
.y13_c00397{bottom:708.133333pt;}
.y46_c00397{bottom:719.733333pt;}
.y12_c00397{bottom:723.866667pt;}
.y45_c00397{bottom:738.933333pt;}
.y11_c00397{bottom:740.133333pt;}
.y44_c00397{bottom:754.933333pt;}
.y10_c00397{bottom:756.133333pt;}
.y43_c00397{bottom:771.200000pt;}
.yf_c00397{bottom:771.866667pt;}
.ye_c00397{bottom:789.733333pt;}
.y42_c00397{bottom:791.066667pt;}
.y41_c00397{bottom:807.066667pt;}
.yd_c00397{bottom:807.600000pt;}
.y40_c00397{bottom:823.066667pt;}
.yc_c00397{bottom:824.266667pt;}
.y3f_c00397{bottom:842.533333pt;}
.yb_c00397{bottom:854.666667pt;}
.y3e_c00397{bottom:858.533333pt;}
.ya_c00397{bottom:871.066667pt;}
.y3d_c00397{bottom:874.800000pt;}
.y9_c00397{bottom:887.333333pt;}
.y3c_c00397{bottom:890.533333pt;}
.y8_c00397{bottom:906.533333pt;}
.y3b_c00397{bottom:922.533333pt;}
.y7_c00397{bottom:923.200000pt;}
.y3a_c00397{bottom:938.533333pt;}
.y6_c00397{bottom:939.200000pt;}
.y5_c00397{bottom:955.200000pt;}
.y39_c00397{bottom:958.133333pt;}
.y4_c00397{bottom:971.200000pt;}
.y38_c00397{bottom:974.133333pt;}
.y3_c00397{bottom:986.933333pt;}
.y37_c00397{bottom:990.133333pt;}
.y1_c00397{bottom:1009.600000pt;}
.y2_c00397{bottom:1012.133333pt;}
.h7_c00397{height:48.000000pt;}
.h5_c00397{height:53.333333pt;}
.h4_c00397{height:58.666667pt;}
.h6_c00397{height:64.000000pt;}
.h3_c00397{height:69.333333pt;}
.h2_c00397{height:96.000000pt;}
.h0_c00397{height:1127.039957pt;}
.h1_c00397{height:1127.333333pt;}
.w0_c00397{width:853.760009pt;}
.w1_c00397{width:854.000000pt;}
.x0_c00397{left:0.000000pt;}
.x1_c00397{left:161.333333pt;}
.x6d_c00397{left:162.266667pt;}
.x35_c00397{left:164.133333pt;}
.x3f_c00397{left:165.066667pt;}
.x8a_c00397{left:173.866667pt;}
.x75_c00397{left:174.800000pt;}
.x79_c00397{left:176.400000pt;}
.x9_c00397{left:177.866667pt;}
.x11_c00397{left:179.466667pt;}
.x28_c00397{left:180.666667pt;}
.x6e_c00397{left:183.733333pt;}
.x92_c00397{left:186.666667pt;}
.x9b_c00397{left:188.000000pt;}
.xa1_c00397{left:193.333333pt;}
.x44_c00397{left:194.533333pt;}
.x4c_c00397{left:195.600000pt;}
.xa3_c00397{left:197.866667pt;}
.x29_c00397{left:198.933333pt;}
.x8e_c00397{left:200.000000pt;}
.x6f_c00397{left:201.333333pt;}
.xa_c00397{left:205.733333pt;}
.x58_c00397{left:207.066667pt;}
.x8b_c00397{left:208.133333pt;}
.x18_c00397{left:210.133333pt;}
.x7a_c00397{left:212.266667pt;}
.x12_c00397{left:213.333333pt;}
.x2e_c00397{left:218.133333pt;}
.x80_c00397{left:219.600000pt;}
.x19_c00397{left:221.600000pt;}
.x21_c00397{left:223.066667pt;}
.xac_c00397{left:224.800000pt;}
.x9e_c00397{left:227.466667pt;}
.xa4_c00397{left:228.533333pt;}
.xa7_c00397{left:230.800000pt;}
.x43_c00397{left:231.866667pt;}
.x55_c00397{left:235.200000pt;}
.x68_c00397{left:237.200000pt;}
.x9c_c00397{left:238.400000pt;}
.x40_c00397{left:239.866667pt;}
.x1a_c00397{left:240.800000pt;}
.x59_c00397{left:242.533333pt;}
.x36_c00397{left:243.466667pt;}
.x6b_c00397{left:245.066667pt;}
.x2f_c00397{left:246.000000pt;}
.x45_c00397{left:247.333333pt;}
.x8c_c00397{left:249.466667pt;}
.x76_c00397{left:252.000000pt;}
.x22_c00397{left:253.466667pt;}
.xb_c00397{left:254.666667pt;}
.x4d_c00397{left:256.400000pt;}
.x1b_c00397{left:257.466667pt;}
.x52_c00397{left:258.933333pt;}
.x7b_c00397{left:260.933333pt;}
.x81_c00397{left:262.533333pt;}
.xc_c00397{left:263.600000pt;}
.x8f_c00397{left:264.666667pt;}
.x13_c00397{left:266.133333pt;}
.x46_c00397{left:267.866667pt;}
.x3b_c00397{left:269.066667pt;}
.x5f_c00397{left:270.400000pt;}
.xad_c00397{left:272.400000pt;}
.x4e_c00397{left:273.333333pt;}
.x14_c00397{left:277.333333pt;}
.x82_c00397{left:278.533333pt;}
.x99_c00397{left:280.133333pt;}
.xaa_c00397{left:281.466667pt;}
.x98_c00397{left:282.533333pt;}
.x30_c00397{left:284.400000pt;}
.x5a_c00397{left:285.733333pt;}
.x77_c00397{left:287.866667pt;}
.x63_c00397{left:289.333333pt;}
.x47_c00397{left:290.266667pt;}
.x23_c00397{left:291.600000pt;}
.x85_c00397{left:293.066667pt;}
.x70_c00397{left:295.466667pt;}
.xa5_c00397{left:296.400000pt;}
.x64_c00397{left:297.333333pt;}
.xab_c00397{left:298.800000pt;}
.x7c_c00397{left:300.000000pt;}
.x37_c00397{left:302.400000pt;}
.x93_c00397{left:303.466667pt;}
.x87_c00397{left:305.466667pt;}
.x31_c00397{left:307.466667pt;}
.x2a_c00397{left:311.200000pt;}
.x24_c00397{left:312.400000pt;}
.x15_c00397{left:313.866667pt;}
.x83_c00397{left:316.000000pt;}
.x8d_c00397{left:318.133333pt;}
.x38_c00397{left:319.333333pt;}
.x1c_c00397{left:320.533333pt;}
.x4f_c00397{left:322.000000pt;}
.x94_c00397{left:322.933333pt;}
.x65_c00397{left:324.533333pt;}
.x56_c00397{left:325.733333pt;}
.x3c_c00397{left:327.600000pt;}
.x9a_c00397{left:329.066667pt;}
.x48_c00397{left:331.200000pt;}
.x41_c00397{left:332.400000pt;}
.x16_c00397{left:334.400000pt;}
.xd_c00397{left:335.333333pt;}
.x9f_c00397{left:337.866667pt;}
.x60_c00397{left:340.133333pt;}
.x69_c00397{left:341.200000pt;}
.x90_c00397{left:342.933333pt;}
.x49_c00397{left:345.600000pt;}
.x97_c00397{left:348.400000pt;}
.x61_c00397{left:349.733333pt;}
.x32_c00397{left:350.933333pt;}
.x71_c00397{left:352.133333pt;}
.x6a_c00397{left:355.333333pt;}
.x95_c00397{left:357.333333pt;}
.xa8_c00397{left:359.200000pt;}
.x86_c00397{left:360.266667pt;}
.x2b_c00397{left:361.733333pt;}
.x72_c00397{left:362.666667pt;}
.xae_c00397{left:364.000000pt;}
.x88_c00397{left:364.933333pt;}
.x39_c00397{left:367.333333pt;}
.x33_c00397{left:368.266667pt;}
.x1d_c00397{left:369.866667pt;}
.x5d_c00397{left:373.066667pt;}
.x91_c00397{left:374.266667pt;}
.x25_c00397{left:376.133333pt;}
.x66_c00397{left:377.866667pt;}
.x5b_c00397{left:380.133333pt;}
.x53_c00397{left:381.466667pt;}
.x50_c00397{left:382.800000pt;}
.x2_c00397{left:383.733333pt;}
.xe_c00397{left:385.200000pt;}
.x84_c00397{left:387.066667pt;}
.x6c_c00397{left:388.266667pt;}
.x34_c00397{left:389.333333pt;}
.x1e_c00397{left:391.600000pt;}
.xf_c00397{left:393.866667pt;}
.x9d_c00397{left:395.200000pt;}
.x7d_c00397{left:396.266667pt;}
.x54_c00397{left:398.400000pt;}
.x57_c00397{left:400.000000pt;}
.x73_c00397{left:401.066667pt;}
.xb1_c00397{left:402.133333pt;}
.x67_c00397{left:403.200000pt;}
.x3_c00397{left:404.800000pt;}
.x5e_c00397{left:407.333333pt;}
.xa6_c00397{left:408.400000pt;}
.x2c_c00397{left:409.466667pt;}
.x4a_c00397{left:412.800000pt;}
.x7e_c00397{left:414.133333pt;}
.x1f_c00397{left:415.333333pt;}
.x89_c00397{left:418.000000pt;}
.x42_c00397{left:419.466667pt;}
.xaf_c00397{left:420.400000pt;}
.x4_c00397{left:421.466667pt;}
.x26_c00397{left:423.200000pt;}
.x62_c00397{left:424.666667pt;}
.x96_c00397{left:425.866667pt;}
.x2d_c00397{left:427.066667pt;}
.x17_c00397{left:429.733333pt;}
.xa9_c00397{left:430.933333pt;}
.x3d_c00397{left:433.200000pt;}
.x10_c00397{left:434.800000pt;}
.xa2_c00397{left:437.200000pt;}
.x27_c00397{left:438.266667pt;}
.x78_c00397{left:439.466667pt;}
.x7f_c00397{left:441.333333pt;}
.x20_c00397{left:443.200000pt;}
.xb0_c00397{left:444.666667pt;}
.x3a_c00397{left:447.333333pt;}
.x74_c00397{left:448.400000pt;}
.x4b_c00397{left:450.266667pt;}
.x5c_c00397{left:452.400000pt;}
.x3e_c00397{left:453.333333pt;}
.xa0_c00397{left:456.800000pt;}
.x51_c00397{left:458.266667pt;}
.x5_c00397{left:463.333333pt;}
.x12c_c00397{left:479.733333pt;}
.x121_c00397{left:480.666667pt;}
.x146_c00397{left:486.666667pt;}
.x134_c00397{left:488.266667pt;}
.x140_c00397{left:490.933333pt;}
.x132_c00397{left:494.533333pt;}
.xb2_c00397{left:495.733333pt;}
.xca_c00397{left:497.066667pt;}
.x13c_c00397{left:508.533333pt;}
.xbc_c00397{left:511.333333pt;}
.xe8_c00397{left:513.866667pt;}
.x11f_c00397{left:514.800000pt;}
.xf4_c00397{left:515.866667pt;}
.x6_c00397{left:516.800000pt;}
.x138_c00397{left:519.066667pt;}
.xcf_c00397{left:520.266667pt;}
.x10a_c00397{left:525.066667pt;}
.xd4_c00397{left:527.600000pt;}
.x101_c00397{left:530.000000pt;}
.xef_c00397{left:532.933333pt;}
.x14a_c00397{left:534.400000pt;}
.x7_c00397{left:535.333333pt;}
.xb3_c00397{left:537.600000pt;}
.xe4_c00397{left:539.066667pt;}
.x141_c00397{left:540.133333pt;}
.xc4_c00397{left:542.133333pt;}
.xda_c00397{left:543.600000pt;}
.xb4_c00397{left:544.933333pt;}
.x112_c00397{left:546.000000pt;}
.x135_c00397{left:547.466667pt;}
.x8_c00397{left:548.400000pt;}
.xf5_c00397{left:549.466667pt;}
.x12a_c00397{left:551.333333pt;}
.xf0_c00397{left:552.800000pt;}
.x130_c00397{left:554.533333pt;}
.xcb_c00397{left:556.533333pt;}
.x12d_c00397{left:559.333333pt;}
.xc5_c00397{left:560.400000pt;}
.xe9_c00397{left:562.133333pt;}
.xe5_c00397{left:563.333333pt;}
.xe0_c00397{left:564.666667pt;}
.x131_c00397{left:567.066667pt;}
.xd0_c00397{left:568.933333pt;}
.x10e_c00397{left:570.400000pt;}
.xf6_c00397{left:572.133333pt;}
.xd5_c00397{left:574.666667pt;}
.x102_c00397{left:576.666667pt;}
.x113_c00397{left:578.000000pt;}
.xc1_c00397{left:579.066667pt;}
.x139_c00397{left:580.133333pt;}
.x147_c00397{left:581.333333pt;}
.xbd_c00397{left:584.266667pt;}
.x124_c00397{left:585.600000pt;}
.xb5_c00397{left:586.800000pt;}
.x122_c00397{left:589.200000pt;}
.x13d_c00397{left:590.133333pt;}
.x11c_c00397{left:592.666667pt;}
.xb6_c00397{left:593.866667pt;}
.xdb_c00397{left:595.733333pt;}
.xc2_c00397{left:598.266667pt;}
.x107_c00397{left:599.733333pt;}
.xf9_c00397{left:600.666667pt;}
.x143_c00397{left:601.600000pt;}
.x10b_c00397{left:604.400000pt;}
.x11d_c00397{left:606.400000pt;}
.xc6_c00397{left:607.466667pt;}
.x109_c00397{left:609.200000pt;}
.xfd_c00397{left:611.466667pt;}
.xe6_c00397{left:612.533333pt;}
.xe1_c00397{left:613.600000pt;}
.xeb_c00397{left:614.533333pt;}
.xd6_c00397{left:616.000000pt;}
.x136_c00397{left:617.200000pt;}
.x103_c00397{left:618.266667pt;}
.x13f_c00397{left:619.866667pt;}
.xcc_c00397{left:620.800000pt;}
.xf1_c00397{left:622.533333pt;}
.xfa_c00397{left:626.266667pt;}
.x125_c00397{left:627.466667pt;}
.xb7_c00397{left:629.333333pt;}
.x12e_c00397{left:631.066667pt;}
.x120_c00397{left:634.000000pt;}
.x13a_c00397{left:636.400000pt;}
.x128_c00397{left:637.333333pt;}
.x144_c00397{left:638.666667pt;}
.xf2_c00397{left:640.133333pt;}
.x114_c00397{left:642.000000pt;}
.x10c_c00397{left:643.066667pt;}
.xe7_c00397{left:644.800000pt;}
.xc3_c00397{left:646.933333pt;}
.xbe_c00397{left:648.533333pt;}
.x14b_c00397{left:650.533333pt;}
.xd7_c00397{left:653.066667pt;}
.x142_c00397{left:655.333333pt;}
.x117_c00397{left:656.533333pt;}
.x127_c00397{left:657.466667pt;}
.xdc_c00397{left:659.733333pt;}
.xb8_c00397{left:661.333333pt;}
.x10d_c00397{left:662.266667pt;}
.xcd_c00397{left:663.733333pt;}
.xc7_c00397{left:666.000000pt;}
.xf3_c00397{left:668.666667pt;}
.xe2_c00397{left:670.266667pt;}
.x145_c00397{left:672.000000pt;}
.x118_c00397{left:674.133333pt;}
.x11e_c00397{left:675.466667pt;}
.x12b_c00397{left:676.666667pt;}
.xfe_c00397{left:679.333333pt;}
.x104_c00397{left:680.933333pt;}
.xec_c00397{left:683.333333pt;}
.xdd_c00397{left:685.066667pt;}
.xea_c00397{left:686.266667pt;}
.x108_c00397{left:687.466667pt;}
.xe3_c00397{left:689.200000pt;}
.x12f_c00397{left:690.800000pt;}
.x148_c00397{left:692.933333pt;}
.x119_c00397{left:695.866667pt;}
.xfb_c00397{left:698.666667pt;}
.xd1_c00397{left:700.133333pt;}
.x137_c00397{left:701.733333pt;}
.xb9_c00397{left:702.933333pt;}
.xf7_c00397{left:705.866667pt;}
.x129_c00397{left:707.733333pt;}
.xd8_c00397{left:709.733333pt;}
.xbf_c00397{left:714.133333pt;}
.xff_c00397{left:715.866667pt;}
.x13e_c00397{left:716.933333pt;}
.xba_c00397{left:720.533333pt;}
.xc8_c00397{left:722.000000pt;}
.x123_c00397{left:722.933333pt;}
.x10f_c00397{left:724.666667pt;}
.xde_c00397{left:726.666667pt;}
.x11a_c00397{left:728.133333pt;}
.xc0_c00397{left:732.666667pt;}
.xd2_c00397{left:733.733333pt;}
.x116_c00397{left:735.866667pt;}
.xce_c00397{left:737.600000pt;}
.x115_c00397{left:738.933333pt;}
.xf8_c00397{left:740.800000pt;}
.x126_c00397{left:742.000000pt;}
.x110_c00397{left:742.933333pt;}
.xed_c00397{left:744.400000pt;}
.x105_c00397{left:745.466667pt;}
.xd9_c00397{left:746.800000pt;}
.xfc_c00397{left:748.266667pt;}
.x13b_c00397{left:749.200000pt;}
.xee_c00397{left:753.733333pt;}
.x100_c00397{left:754.666667pt;}
.xbb_c00397{left:755.733333pt;}
.xc9_c00397{left:756.933333pt;}
.x11b_c00397{left:758.533333pt;}
.x106_c00397{left:760.133333pt;}
.xdf_c00397{left:761.866667pt;}
.xd3_c00397{left:767.600000pt;}
.x149_c00397{left:770.133333pt;}
.x133_c00397{left:776.000000pt;}
.x111_c00397{left:777.333333pt;}
}





/* 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_c00398 {
    display:none;
  }
  .loading-indicator_c00398.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00398 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_c00398 { 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_c00398" -> "#page-container .classname_c00398")
 */
.pf_c00398 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00398 { /* 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_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00398 { /* 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_c00398 { /* 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_c00398 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00398 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00398 {overflow:visible;}
  }
}
.c_c00398 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00398 { /* 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_c00398:after { /* webkit #35443 */
  content: '';
}
.t_c00398:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00398 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 */
}
.__c00398 { /* 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_c00398 { /* info for Javascript */
  display:none;
}
.l_c00398 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00398 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00398 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00398: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_c00398 {
    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_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00398.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_c00398 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00398;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.000000;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;}
.m16_c00398{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m119_c00398{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m111_c00398{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m2_c00398{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m15_c00398{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00398{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m5_c00398{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00398{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m79_c00398{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00398{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m72_c00398{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m89_c00398{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m24_c00398{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00398{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m76_c00398{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m116_c00398{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00398{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00398{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m84_c00398{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m11_c00398{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md8_c00398{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m93_c00398{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m81_c00398{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00398{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m73_c00398{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m19_c00398{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00398{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m22_c00398{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m18_c00398{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00398{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00398{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00398{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m49_c00398{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m115_c00398{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mde_c00398{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00398{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00398{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00398{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00398{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00398{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00398{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00398{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00398{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m98_c00398{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00398{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me4_c00398{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00398{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me3_c00398{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00398{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00398{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00398{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00398{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00398{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m57_c00398{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00398{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00398{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00398{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m97_c00398{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me5_c00398{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00398{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00398{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00398{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00398{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m85_c00398{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m31_c00398{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m114_c00398{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00398{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m107_c00398{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00398{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00398{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m48_c00398{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00398{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00398{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.md6_c00398{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00398{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00398{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00398{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mae_c00398{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00398{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc_c00398{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00398{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00398{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mff_c00398{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m59_c00398{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m50_c00398{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m30_c00398{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mad_c00398{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00398{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00398{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00398{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mab_c00398{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00398{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00398{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00398{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00398{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00398{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00398{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m40_c00398{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.maf_c00398{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00398{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00398{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00398{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m47_c00398{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00398{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00398{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8_c00398{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00398{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mca_c00398{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mce_c00398{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m63_c00398{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00398{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00398{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00398{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m53_c00398{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m62_c00398{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00398{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00398{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00398{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m54_c00398{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m70_c00398{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00398{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m27_c00398{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9_c00398{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00398{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m17_c00398{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m102_c00398{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m44_c00398{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m56_c00398{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m83_c00398{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m21_c00398{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.md0_c00398{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m67_c00398{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m58_c00398{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00398{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md4_c00398{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00398{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m69_c00398{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m100_c00398{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00398{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m118_c00398{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mef_c00398{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00398{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m87_c00398{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m55_c00398{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m14_c00398{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3_c00398{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00398{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00398{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.meb_c00398{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m106_c00398{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00398{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m51_c00398{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m23_c00398{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m104_c00398{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m25_c00398{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00398{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md_c00398{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00398{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m86_c00398{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m52_c00398{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00398{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m92_c00398{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me0_c00398{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mac_c00398{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m26_c00398{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00398{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00398{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me_c00398{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md7_c00398{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m101_c00398{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mda_c00398{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00398{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00398{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m88_c00398{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m96_c00398{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m28_c00398{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00398{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m41_c00398{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mea_c00398{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m117_c00398{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m65_c00398{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md9_c00398{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m110_c00398{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.med_c00398{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m90_c00398{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mba_c00398{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00398{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00398{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me7_c00398{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00398{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m109_c00398{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m20_c00398{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m35_c00398{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m112_c00398{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00398{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m77_c00398{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me9_c00398{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00398{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m99_c00398{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00398{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00398{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m60_c00398{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maa_c00398{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mec_c00398{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00398{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00398{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00398{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m66_c00398{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00398{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00398{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00398{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m37_c00398{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.me2_c00398{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.me1_c00398{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m61_c00398{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00398{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m95_c00398{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m36_c00398{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00398{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma_c00398{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00398{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m94_c00398{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m43_c00398{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00398{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m103_c00398{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.me6_c00398{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00398{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13_c00398{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m46_c00398{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00398{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00398{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mee_c00398{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m71_c00398{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00398{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);}
.m1f_c00398{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00398{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00398{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m113_c00398{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00398{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m75_c00398{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m12_c00398{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m34_c00398{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00398{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m80_c00398{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00398{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m82_c00398{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m105_c00398{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.md5_c00398{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00398{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m68_c00398{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m38_c00398{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mb_c00398{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m108_c00398{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m91_c00398{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00398{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mf_c00398{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m10_c00398{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00398{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m64_c00398{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m42_c00398{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m33_c00398{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m78_c00398{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m45_c00398{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00398{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00398{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00398{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m7_c00398{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me8_c00398{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00398{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m6_c00398{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00398{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m39_c00398{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00398{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496750,0.000000,0.000000,0.250000,0,0);}
.m32_c00398{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m29_c00398{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m74_c00398{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.md2_c00398{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.md1_c00398{transform:matrix(0.579000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00398{transform:matrix(0.608000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00398{transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00398{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.m4_c00398{transform:matrix(0.936000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936000,0.000000,0.000000,0.250000,0,0);}
.md3_c00398{transform:matrix(2.558500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.558500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.558500,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls0_c00398{letter-spacing:55.714286px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{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__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00398{word-spacing:-85.714286px;}
.wsf_c00398{word-spacing:-13.870929px;}
.ws0_c00398{word-spacing:-3.756333px;}
.ws12_c00398{word-spacing:0.000000px;}
.ws11_c00398{word-spacing:6.052632px;}
.wse_c00398{word-spacing:11.875000px;}
.wsd_c00398{word-spacing:15.000000px;}
.ws4_c00398{word-spacing:15.168901px;}
.ws10_c00398{word-spacing:17.846678px;}
.ws7_c00398{word-spacing:22.142857px;}
.ws1_c00398{word-spacing:23.211796px;}
.ws9_c00398{word-spacing:25.714286px;}
.wsb_c00398{word-spacing:26.428954px;}
.wsa_c00398{word-spacing:29.285714px;}
.wsc_c00398{word-spacing:32.250000px;}
.ws5_c00398{word-spacing:36.000000px;}
.ws3_c00398{word-spacing:39.750000px;}
.ws8_c00398{word-spacing:40.000000px;}
.ws6_c00398{word-spacing:55.090909px;}
._2_c00398{margin-left:-55.714286px;}
._1_c00398{margin-left:-3.571429px;}
._a_c00398{width:48.125000px;}
._8_c00398{width:52.142857px;}
._0_c00398{width:53.428954px;}
._4_c00398{width:55.714286px;}
._7_c00398{width:59.285714px;}
._3_c00398{width:66.750000px;}
._9_c00398{width:72.375000px;}
._6_c00398{width:74.166667px;}
._5_c00398{width:80.416667px;}
.fc0_c00398{color:transparent;}
.fs2_c00398{font-size:30.000000px;}
.fs7_c00398{font-size:48.000000px;}
.fs6_c00398{font-size:54.000000px;}
.fs4_c00398{font-size:60.000000px;}
.fs3_c00398{font-size:66.000000px;}
.fs5_c00398{font-size:72.000000px;}
.fs0_c00398{font-size:78.000000px;}
.fs1_c00398{font-size:90.000000px;}
.y0_c00398{bottom:0.000000px;}
.y68_c00398{bottom:175.350000px;}
.y38_c00398{bottom:191.550000px;}
.y67_c00398{bottom:191.850000px;}
.y66_c00398{bottom:205.950000px;}
.y37_c00398{bottom:210.300000px;}
.y65_c00398{bottom:220.650000px;}
.y36_c00398{bottom:228.000000px;}
.y64_c00398{bottom:236.850000px;}
.y35_c00398{bottom:246.000000px;}
.y63_c00398{bottom:250.200000px;}
.y34_c00398{bottom:264.000000px;}
.y62_c00398{bottom:266.100000px;}
.y61_c00398{bottom:278.550000px;}
.y33_c00398{bottom:281.700000px;}
.y60_c00398{bottom:292.650000px;}
.y32_c00398{bottom:300.000000px;}
.y5f_c00398{bottom:307.800000px;}
.y31_c00398{bottom:317.700000px;}
.y30_c00398{bottom:335.700000px;}
.y5e_c00398{bottom:351.000000px;}
.y2f_c00398{bottom:353.700000px;}
.y5d_c00398{bottom:369.300000px;}
.y2e_c00398{bottom:371.700000px;}
.y5c_c00398{bottom:387.300000px;}
.y2d_c00398{bottom:389.700000px;}
.y5b_c00398{bottom:405.000000px;}
.y2c_c00398{bottom:407.400000px;}
.y2b_c00398{bottom:425.400000px;}
.y5a_c00398{bottom:426.000000px;}
.y2a_c00398{bottom:443.100000px;}
.y59_c00398{bottom:444.300000px;}
.y29_c00398{bottom:461.100000px;}
.y58_c00398{bottom:466.200000px;}
.y28_c00398{bottom:479.400000px;}
.y57_c00398{bottom:484.500000px;}
.y27_c00398{bottom:497.100000px;}
.y56_c00398{bottom:506.550000px;}
.y26_c00398{bottom:514.800000px;}
.y55_c00398{bottom:529.200000px;}
.y25_c00398{bottom:532.800000px;}
.y54_c00398{bottom:547.500000px;}
.y24_c00398{bottom:559.050000px;}
.y53_c00398{bottom:569.850000px;}
.y23_c00398{bottom:573.450000px;}
.y22_c00398{bottom:586.800000px;}
.y52_c00398{bottom:592.200000px;}
.y21_c00398{bottom:602.700000px;}
.y51_c00398{bottom:610.200000px;}
.y20_c00398{bottom:615.600000px;}
.y50_c00398{bottom:628.200000px;}
.y1f_c00398{bottom:631.500000px;}
.y1e_c00398{bottom:644.400000px;}
.y4f_c00398{bottom:650.550000px;}
.y1d_c00398{bottom:660.600000px;}
.y1c_c00398{bottom:673.200000px;}
.y4e_c00398{bottom:674.400000px;}
.y4d_c00398{bottom:683.100000px;}
.y1b_c00398{bottom:688.650000px;}
.y1a_c00398{bottom:701.550000px;}
.y4c_c00398{bottom:702.600000px;}
.y4b_c00398{bottom:711.300000px;}
.y19_c00398{bottom:717.450000px;}
.y18_c00398{bottom:731.850000px;}
.y4a_c00398{bottom:737.700000px;}
.y17_c00398{bottom:746.250000px;}
.y16_c00398{bottom:759.600000px;}
.y15_c00398{bottom:776.550000px;}
.y49_c00398{bottom:782.250000px;}
.y14_c00398{bottom:798.450000px;}
.y48_c00398{bottom:800.250000px;}
.y13_c00398{bottom:817.500000px;}
.y47_c00398{bottom:834.450000px;}
.y12_c00398{bottom:835.200000px;}
.y11_c00398{bottom:853.200000px;}
.y46_c00398{bottom:870.150000px;}
.y10_c00398{bottom:870.900000px;}
.y45_c00398{bottom:888.450000px;}
.yf_c00398{bottom:896.550000px;}
.y44_c00398{bottom:906.450000px;}
.ye_c00398{bottom:915.300000px;}
.y43_c00398{bottom:932.250000px;}
.yd_c00398{bottom:933.000000px;}
.y42_c00398{bottom:949.950000px;}
.yc_c00398{bottom:951.000000px;}
.y41_c00398{bottom:967.950000px;}
.yb_c00398{bottom:969.000000px;}
.ya_c00398{bottom:986.700000px;}
.y40_c00398{bottom:1003.650000px;}
.y9_c00398{bottom:1004.700000px;}
.y3f_c00398{bottom:1021.950000px;}
.y8_c00398{bottom:1022.700000px;}
.y3e_c00398{bottom:1039.650000px;}
.y7_c00398{bottom:1043.250000px;}
.y3d_c00398{bottom:1057.650000px;}
.y6_c00398{bottom:1062.750000px;}
.y3c_c00398{bottom:1084.650000px;}
.y5_c00398{bottom:1092.150000px;}
.y3b_c00398{bottom:1102.650000px;}
.y4_c00398{bottom:1114.500000px;}
.y3a_c00398{bottom:1120.650000px;}
.y2_c00398{bottom:1146.600000px;}
.y1_c00398{bottom:1148.100000px;}
.y3_c00398{bottom:1265.100000px;}
.y39_c00398{bottom:1266.900000px;}
.h4_c00398{height:30.000000px;}
.h9_c00398{height:48.000000px;}
.h8_c00398{height:54.000000px;}
.h6_c00398{height:60.000000px;}
.h5_c00398{height:66.000000px;}
.h7_c00398{height:72.000000px;}
.h2_c00398{height:78.000000px;}
.h3_c00398{height:90.000000px;}
.h0_c00398{height:1269.720063px;}
.h1_c00398{height:1269.750000px;}
.w0_c00398{width:960.480010px;}
.w1_c00398{width:960.750000px;}
.x0_c00398{left:0.000000px;}
.x41_c00398{left:92.550000px;}
.xb_c00398{left:93.600000px;}
.x8_c00398{left:94.650000px;}
.x4c_c00398{left:107.700000px;}
.x5a_c00398{left:109.050000px;}
.x22_c00398{left:110.400000px;}
.x12_c00398{left:111.600000px;}
.x8c_c00398{left:113.400000px;}
.x9_c00398{left:121.350000px;}
.x65_c00398{left:123.000000px;}
.x78_c00398{left:124.050000px;}
.x5e_c00398{left:128.550000px;}
.x15_c00398{left:129.600000px;}
.x9f_c00398{left:131.400000px;}
.xa8_c00398{left:134.100000px;}
.x71_c00398{left:135.300000px;}
.x42_c00398{left:136.500000px;}
.x5b_c00398{left:138.150000px;}
.xe_c00398{left:139.950000px;}
.x72_c00398{left:142.800000px;}
.x66_c00398{left:144.900000px;}
.x89_c00398{left:146.100000px;}
.xa4_c00398{left:147.600000px;}
.xa1_c00398{left:148.650000px;}
.x37_c00398{left:150.150000px;}
.x3c_c00398{left:151.500000px;}
.xa_c00398{left:153.750000px;}
.x47_c00398{left:156.450000px;}
.x26_c00398{left:158.250000px;}
.x5c_c00398{left:159.750000px;}
.xc_c00398{left:161.250000px;}
.x54_c00398{left:163.350000px;}
.x73_c00398{left:164.400000px;}
.x1d_c00398{left:166.200000px;}
.x99_c00398{left:167.850000px;}
.x13_c00398{left:169.500000px;}
.x74_c00398{left:172.350000px;}
.x82_c00398{left:173.850000px;}
.x38_c00398{left:175.050000px;}
.xf_c00398{left:178.500000px;}
.x7f_c00398{left:179.700000px;}
.x6f_c00398{left:182.250000px;}
.x7a_c00398{left:184.950000px;}
.xd_c00398{left:187.500000px;}
.x3d_c00398{left:189.600000px;}
.x4f_c00398{left:191.400000px;}
.x93_c00398{left:192.450000px;}
.x75_c00398{left:193.950000px;}
.x16_c00398{left:195.900000px;}
.x32_c00398{left:196.950000px;}
.x27_c00398{left:198.150000px;}
.x43_c00398{left:200.550000px;}
.x80_c00398{left:201.900000px;}
.x23_c00398{left:203.700000px;}
.x55_c00398{left:205.200000px;}
.x7b_c00398{left:206.550000px;}
.x6e_c00398{left:208.950000px;}
.x90_c00398{left:210.600000px;}
.x9d_c00398{left:211.950000px;}
.x7c_c00398{left:213.750000px;}
.x67_c00398{left:216.450000px;}
.x17_c00398{left:219.000000px;}
.x48_c00398{left:220.500000px;}
.x76_c00398{left:222.000000px;}
.x39_c00398{left:223.350000px;}
.x85_c00398{left:225.000000px;}
.x97_c00398{left:226.050000px;}
.xa3_c00398{left:228.000000px;}
.xa6_c00398{left:229.350000px;}
.x68_c00398{left:230.850000px;}
.x86_c00398{left:232.200000px;}
.x33_c00398{left:235.050000px;}
.x50_c00398{left:236.100000px;}
.x69_c00398{left:238.350000px;}
.x87_c00398{left:239.400000px;}
.x24_c00398{left:240.750000px;}
.x8a_c00398{left:242.400000px;}
.x28_c00398{left:243.450000px;}
.x77_c00398{left:245.100000px;}
.x94_c00398{left:247.950000px;}
.x7d_c00398{left:250.500000px;}
.x18_c00398{left:251.700000px;}
.x5f_c00398{left:253.800000px;}
.x5d_c00398{left:256.950000px;}
.x81_c00398{left:259.800000px;}
.x7e_c00398{left:261.000000px;}
.x3a_c00398{left:263.700000px;}
.x2e_c00398{left:265.350000px;}
.x56_c00398{left:267.150000px;}
.x88_c00398{left:268.500000px;}
.x4d_c00398{left:269.700000px;}
.x3e_c00398{left:271.350000px;}
.x60_c00398{left:273.600000px;}
.x34_c00398{left:275.400000px;}
.x1e_c00398{left:277.050000px;}
.x19_c00398{left:280.500000px;}
.x4_c00398{left:282.600000px;}
.x95_c00398{left:284.700000px;}
.x29_c00398{left:286.650000px;}
.x61_c00398{left:287.700000px;}
.x49_c00398{left:289.200000px;}
.x8d_c00398{left:291.150000px;}
.x51_c00398{left:294.450000px;}
.x79_c00398{left:295.650000px;}
.x5_c00398{left:296.700000px;}
.x4a_c00398{left:299.250000px;}
.x25_c00398{left:301.950000px;}
.x6a_c00398{left:304.350000px;}
.x1a_c00398{left:305.700000px;}
.x2f_c00398{left:309.600000px;}
.x6b_c00398{left:311.850000px;}
.x3b_c00398{left:313.050000px;}
.x3f_c00398{left:317.100000px;}
.x8e_c00398{left:318.150000px;}
.x2a_c00398{left:319.350000px;}
.xa0_c00398{left:321.150000px;}
.x1b_c00398{left:322.650000px;}
.x6c_c00398{left:325.500000px;}
.x84_c00398{left:327.000000px;}
.x57_c00398{left:329.100000px;}
.x70_c00398{left:330.150000px;}
.x96_c00398{left:331.500000px;}
.x52_c00398{left:333.000000px;}
.x98_c00398{left:334.800000px;}
.x14_c00398{left:336.600000px;}
.x6d_c00398{left:340.200000px;}
.x35_c00398{left:342.000000px;}
.x1_c00398{left:343.050000px;}
.x2b_c00398{left:344.250000px;}
.xa7_c00398{left:345.600000px;}
.xa2_c00398{left:349.950000px;}
.x44_c00398{left:351.450000px;}
.x6_c00398{left:356.400000px;}
.x62_c00398{left:359.700000px;}
.x7_c00398{left:361.500000px;}
.x1f_c00398{left:366.300000px;}
.x30_c00398{left:368.250000px;}
.x10_c00398{left:370.800000px;}
.x9a_c00398{left:373.200000px;}
.x8f_c00398{left:375.000000px;}
.x20_c00398{left:376.050000px;}
.x2c_c00398{left:377.700000px;}
.x45_c00398{left:380.250000px;}
.x58_c00398{left:382.350000px;}
.x11_c00398{left:383.400000px;}
.x91_c00398{left:385.050000px;}
.x9b_c00398{left:386.550000px;}
.x63_c00398{left:388.800000px;}
.x36_c00398{left:390.300000px;}
.x83_c00398{left:391.350000px;}
.xa5_c00398{left:393.150000px;}
.x9c_c00398{left:394.500000px;}
.xa9_c00398{left:395.850000px;}
.x9e_c00398{left:397.650000px;}
.x2d_c00398{left:399.600000px;}
.x53_c00398{left:402.750000px;}
.x4e_c00398{left:405.900000px;}
.x4b_c00398{left:408.600000px;}
.x1c_c00398{left:409.800000px;}
.x40_c00398{left:411.450000px;}
.x8b_c00398{left:414.000000px;}
.x31_c00398{left:415.050000px;}
.x59_c00398{left:416.550000px;}
.x64_c00398{left:417.900000px;}
.x46_c00398{left:419.550000px;}
.x92_c00398{left:420.750000px;}
.x21_c00398{left:429.300000px;}
.x12f_c00398{left:440.250000px;}
.xfc_c00398{left:451.500000px;}
.xc0_c00398{left:453.300000px;}
.x12b_c00398{left:457.200000px;}
.xaa_c00398{left:463.950000px;}
.x12c_c00398{left:465.450000px;}
.x123_c00398{left:466.500000px;}
.xdd_c00398{left:469.650000px;}
.xac_c00398{left:471.600000px;}
.x11c_c00398{left:482.700000px;}
.x133_c00398{left:484.200000px;}
.xcf_c00398{left:486.300000px;}
.x101_c00398{left:487.800000px;}
.x112_c00398{left:488.850000px;}
.xd5_c00398{left:489.900000px;}
.xe9_c00398{left:491.250000px;}
.x137_c00398{left:492.900000px;}
.xc9_c00398{left:494.250000px;}
.x105_c00398{left:498.600000px;}
.xab_c00398{left:501.450000px;}
.x10c_c00398{left:505.350000px;}
.xb4_c00398{left:506.550000px;}
.xd6_c00398{left:508.200000px;}
.xca_c00398{left:509.700000px;}
.xc1_c00398{left:511.950000px;}
.xf9_c00398{left:513.150000px;}
.x138_c00398{left:514.500000px;}
.x127_c00398{left:516.300000px;}
.xad_c00398{left:518.100000px;}
.xf2_c00398{left:521.700000px;}
.x130_c00398{left:523.050000px;}
.xe5_c00398{left:526.950000px;}
.x10a_c00398{left:528.900000px;}
.xc2_c00398{left:529.950000px;}
.x103_c00398{left:533.550000px;}
.x12a_c00398{left:535.650000px;}
.xde_c00398{left:537.000000px;}
.xbe_c00398{left:540.450000px;}
.x11d_c00398{left:542.550000px;}
.xd0_c00398{left:544.650000px;}
.xf3_c00398{left:547.650000px;}
.xc3_c00398{left:549.450000px;}
.x10f_c00398{left:550.800000px;}
.xb5_c00398{left:554.100000px;}
.xae_c00398{left:556.950000px;}
.x11e_c00398{left:560.550000px;}
.xbf_c00398{left:561.750000px;}
.xcb_c00398{left:563.700000px;}
.xd7_c00398{left:564.750000px;}
.x109_c00398{left:567.300000px;}
.x124_c00398{left:568.800000px;}
.xee_c00398{left:571.350000px;}
.xd1_c00398{left:572.400000px;}
.x102_c00398{left:573.900000px;}
.xdf_c00398{left:575.550000px;}
.x10d_c00398{left:576.600000px;}
.xb6_c00398{left:578.550000px;}
.x125_c00398{left:579.900000px;}
.x11f_c00398{left:581.850000px;}
.xaf_c00398{left:583.200000px;}
.xcc_c00398{left:585.300000px;}
.xc4_c00398{left:587.250000px;}
.x113_c00398{left:588.900000px;}
.xfb_c00398{left:591.450000px;}
.xd8_c00398{left:593.550000px;}
.xb7_c00398{left:594.750000px;}
.xef_c00398{left:596.250000px;}
.x115_c00398{left:598.650000px;}
.xfd_c00398{left:603.900000px;}
.xe0_c00398{left:605.100000px;}
.xf4_c00398{left:606.300000px;}
.xe6_c00398{left:607.950000px;}
.x110_c00398{left:612.300000px;}
.x104_c00398{left:614.850000px;}
.xcd_c00398{left:616.200000px;}
.x134_c00398{left:622.650000px;}
.x11a_c00398{left:623.850000px;}
.xea_c00398{left:625.650000px;}
.xf5_c00398{left:627.900000px;}
.x117_c00398{left:629.250000px;}
.xb0_c00398{left:631.800000px;}
.xfa_c00398{left:633.150000px;}
.xd2_c00398{left:635.400000px;}
.x126_c00398{left:642.600000px;}
.xe1_c00398{left:646.800000px;}
.xf6_c00398{left:648.750000px;}
.xb8_c00398{left:650.250000px;}
.x111_c00398{left:653.400000px;}
.x131_c00398{left:655.500000px;}
.xb1_c00398{left:657.000000px;}
.xfe_c00398{left:658.950000px;}
.xb9_c00398{left:660.300000px;}
.x11b_c00398{left:661.650000px;}
.xe7_c00398{left:665.850000px;}
.xd3_c00398{left:667.800000px;}
.xd9_c00398{left:669.900000px;}
.xb2_c00398{left:671.400000px;}
.x106_c00398{left:674.250000px;}
.x118_c00398{left:675.300000px;}
.xba_c00398{left:677.550000px;}
.x122_c00398{left:680.700000px;}
.x135_c00398{left:684.150000px;}
.x107_c00398{left:685.800000px;}
.xd4_c00398{left:689.400000px;}
.x10b_c00398{left:691.200000px;}
.xc5_c00398{left:693.750000px;}
.xe2_c00398{left:696.450000px;}
.xf7_c00398{left:698.100000px;}
.x13b_c00398{left:700.200000px;}
.xf0_c00398{left:703.500000px;}
.x136_c00398{left:705.000000px;}
.x116_c00398{left:709.200000px;}
.xda_c00398{left:710.550000px;}
.xff_c00398{left:712.950000px;}
.xbb_c00398{left:714.300000px;}
.xe8_c00398{left:718.500000px;}
.xc6_c00398{left:720.750000px;}
.xb3_c00398{left:721.800000px;}
.x128_c00398{left:723.300000px;}
.x139_c00398{left:724.350000px;}
.xeb_c00398{left:725.700000px;}
.x13c_c00398{left:728.250000px;}
.xdb_c00398{left:730.050000px;}
.x121_c00398{left:731.250000px;}
.xe3_c00398{left:734.250000px;}
.x119_c00398{left:735.750000px;}
.x129_c00398{left:736.950000px;}
.xbc_c00398{left:738.450000px;}
.xf1_c00398{left:739.800000px;}
.x114_c00398{left:741.000000px;}
.xc7_c00398{left:742.650000px;}
.xf8_c00398{left:743.850000px;}
.xec_c00398{left:745.500000px;}
.x120_c00398{left:748.500000px;}
.xdc_c00398{left:750.150000px;}
.xe4_c00398{left:751.500000px;}
.x108_c00398{left:753.450000px;}
.xbd_c00398{left:754.950000px;}
.x13a_c00398{left:756.750000px;}
.x100_c00398{left:758.700000px;}
.x2_c00398{left:760.350000px;}
.xed_c00398{left:768.600000px;}
.x132_c00398{left:770.400000px;}
.x12d_c00398{left:773.100000px;}
.xce_c00398{left:774.300000px;}
.x12e_c00398{left:783.150000px;}
.x10e_c00398{left:785.100000px;}
.xc8_c00398{left:786.900000px;}
.x3_c00398{left:804.300000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls0_c00398{letter-spacing:49.523810pt;}
.ws2_c00398{word-spacing:-76.190476pt;}
.wsf_c00398{word-spacing:-12.329715pt;}
.ws0_c00398{word-spacing:-3.338963pt;}
.ws12_c00398{word-spacing:0.000000pt;}
.ws11_c00398{word-spacing:5.380117pt;}
.wse_c00398{word-spacing:10.555556pt;}
.wsd_c00398{word-spacing:13.333333pt;}
.ws4_c00398{word-spacing:13.483467pt;}
.ws10_c00398{word-spacing:15.863714pt;}
.ws7_c00398{word-spacing:19.682540pt;}
.ws1_c00398{word-spacing:20.632708pt;}
.ws9_c00398{word-spacing:22.857143pt;}
.wsb_c00398{word-spacing:23.492404pt;}
.wsa_c00398{word-spacing:26.031746pt;}
.wsc_c00398{word-spacing:28.666667pt;}
.ws5_c00398{word-spacing:32.000000pt;}
.ws3_c00398{word-spacing:35.333333pt;}
.ws8_c00398{word-spacing:35.555556pt;}
.ws6_c00398{word-spacing:48.969697pt;}
._2_c00398{margin-left:-49.523810pt;}
._1_c00398{margin-left:-3.174603pt;}
._a_c00398{width:42.777778pt;}
._8_c00398{width:46.349206pt;}
._0_c00398{width:47.492404pt;}
._4_c00398{width:49.523810pt;}
._7_c00398{width:52.698413pt;}
._3_c00398{width:59.333333pt;}
._9_c00398{width:64.333333pt;}
._6_c00398{width:65.925926pt;}
._5_c00398{width:71.481481pt;}
.fs2_c00398{font-size:26.666667pt;}
.fs7_c00398{font-size:42.666667pt;}
.fs6_c00398{font-size:48.000000pt;}
.fs4_c00398{font-size:53.333333pt;}
.fs3_c00398{font-size:58.666667pt;}
.fs5_c00398{font-size:64.000000pt;}
.fs0_c00398{font-size:69.333333pt;}
.fs1_c00398{font-size:80.000000pt;}
.y0_c00398{bottom:0.000000pt;}
.y68_c00398{bottom:155.866667pt;}
.y38_c00398{bottom:170.266667pt;}
.y67_c00398{bottom:170.533333pt;}
.y66_c00398{bottom:183.066667pt;}
.y37_c00398{bottom:186.933333pt;}
.y65_c00398{bottom:196.133333pt;}
.y36_c00398{bottom:202.666667pt;}
.y64_c00398{bottom:210.533333pt;}
.y35_c00398{bottom:218.666667pt;}
.y63_c00398{bottom:222.400000pt;}
.y34_c00398{bottom:234.666667pt;}
.y62_c00398{bottom:236.533333pt;}
.y61_c00398{bottom:247.600000pt;}
.y33_c00398{bottom:250.400000pt;}
.y60_c00398{bottom:260.133333pt;}
.y32_c00398{bottom:266.666667pt;}
.y5f_c00398{bottom:273.600000pt;}
.y31_c00398{bottom:282.400000pt;}
.y30_c00398{bottom:298.400000pt;}
.y5e_c00398{bottom:312.000000pt;}
.y2f_c00398{bottom:314.400000pt;}
.y5d_c00398{bottom:328.266667pt;}
.y2e_c00398{bottom:330.400000pt;}
.y5c_c00398{bottom:344.266667pt;}
.y2d_c00398{bottom:346.400000pt;}
.y5b_c00398{bottom:360.000000pt;}
.y2c_c00398{bottom:362.133333pt;}
.y2b_c00398{bottom:378.133333pt;}
.y5a_c00398{bottom:378.666667pt;}
.y2a_c00398{bottom:393.866667pt;}
.y59_c00398{bottom:394.933333pt;}
.y29_c00398{bottom:409.866667pt;}
.y58_c00398{bottom:414.400000pt;}
.y28_c00398{bottom:426.133333pt;}
.y57_c00398{bottom:430.666667pt;}
.y27_c00398{bottom:441.866667pt;}
.y56_c00398{bottom:450.266667pt;}
.y26_c00398{bottom:457.600000pt;}
.y55_c00398{bottom:470.400000pt;}
.y25_c00398{bottom:473.600000pt;}
.y54_c00398{bottom:486.666667pt;}
.y24_c00398{bottom:496.933333pt;}
.y53_c00398{bottom:506.533333pt;}
.y23_c00398{bottom:509.733333pt;}
.y22_c00398{bottom:521.600000pt;}
.y52_c00398{bottom:526.400000pt;}
.y21_c00398{bottom:535.733333pt;}
.y51_c00398{bottom:542.400000pt;}
.y20_c00398{bottom:547.200000pt;}
.y50_c00398{bottom:558.400000pt;}
.y1f_c00398{bottom:561.333333pt;}
.y1e_c00398{bottom:572.800000pt;}
.y4f_c00398{bottom:578.266667pt;}
.y1d_c00398{bottom:587.200000pt;}
.y1c_c00398{bottom:598.400000pt;}
.y4e_c00398{bottom:599.466667pt;}
.y4d_c00398{bottom:607.200000pt;}
.y1b_c00398{bottom:612.133333pt;}
.y1a_c00398{bottom:623.600000pt;}
.y4c_c00398{bottom:624.533333pt;}
.y4b_c00398{bottom:632.266667pt;}
.y19_c00398{bottom:637.733333pt;}
.y18_c00398{bottom:650.533333pt;}
.y4a_c00398{bottom:655.733333pt;}
.y17_c00398{bottom:663.333333pt;}
.y16_c00398{bottom:675.200000pt;}
.y15_c00398{bottom:690.266667pt;}
.y49_c00398{bottom:695.333333pt;}
.y14_c00398{bottom:709.733333pt;}
.y48_c00398{bottom:711.333333pt;}
.y13_c00398{bottom:726.666667pt;}
.y47_c00398{bottom:741.733333pt;}
.y12_c00398{bottom:742.400000pt;}
.y11_c00398{bottom:758.400000pt;}
.y46_c00398{bottom:773.466667pt;}
.y10_c00398{bottom:774.133333pt;}
.y45_c00398{bottom:789.733333pt;}
.yf_c00398{bottom:796.933333pt;}
.y44_c00398{bottom:805.733333pt;}
.ye_c00398{bottom:813.600000pt;}
.y43_c00398{bottom:828.666667pt;}
.yd_c00398{bottom:829.333333pt;}
.y42_c00398{bottom:844.400000pt;}
.yc_c00398{bottom:845.333333pt;}
.y41_c00398{bottom:860.400000pt;}
.yb_c00398{bottom:861.333333pt;}
.ya_c00398{bottom:877.066667pt;}
.y40_c00398{bottom:892.133333pt;}
.y9_c00398{bottom:893.066667pt;}
.y3f_c00398{bottom:908.400000pt;}
.y8_c00398{bottom:909.066667pt;}
.y3e_c00398{bottom:924.133333pt;}
.y7_c00398{bottom:927.333333pt;}
.y3d_c00398{bottom:940.133333pt;}
.y6_c00398{bottom:944.666667pt;}
.y3c_c00398{bottom:964.133333pt;}
.y5_c00398{bottom:970.800000pt;}
.y3b_c00398{bottom:980.133333pt;}
.y4_c00398{bottom:990.666667pt;}
.y3a_c00398{bottom:996.133333pt;}
.y2_c00398{bottom:1019.200000pt;}
.y1_c00398{bottom:1020.533333pt;}
.y3_c00398{bottom:1124.533333pt;}
.y39_c00398{bottom:1126.133333pt;}
.h4_c00398{height:26.666667pt;}
.h9_c00398{height:42.666667pt;}
.h8_c00398{height:48.000000pt;}
.h6_c00398{height:53.333333pt;}
.h5_c00398{height:58.666667pt;}
.h7_c00398{height:64.000000pt;}
.h2_c00398{height:69.333333pt;}
.h3_c00398{height:80.000000pt;}
.h0_c00398{height:1128.640056pt;}
.h1_c00398{height:1128.666667pt;}
.w0_c00398{width:853.760009pt;}
.w1_c00398{width:854.000000pt;}
.x0_c00398{left:0.000000pt;}
.x41_c00398{left:82.266667pt;}
.xb_c00398{left:83.200000pt;}
.x8_c00398{left:84.133333pt;}
.x4c_c00398{left:95.733333pt;}
.x5a_c00398{left:96.933333pt;}
.x22_c00398{left:98.133333pt;}
.x12_c00398{left:99.200000pt;}
.x8c_c00398{left:100.800000pt;}
.x9_c00398{left:107.866667pt;}
.x65_c00398{left:109.333333pt;}
.x78_c00398{left:110.266667pt;}
.x5e_c00398{left:114.266667pt;}
.x15_c00398{left:115.200000pt;}
.x9f_c00398{left:116.800000pt;}
.xa8_c00398{left:119.200000pt;}
.x71_c00398{left:120.266667pt;}
.x42_c00398{left:121.333333pt;}
.x5b_c00398{left:122.800000pt;}
.xe_c00398{left:124.400000pt;}
.x72_c00398{left:126.933333pt;}
.x66_c00398{left:128.800000pt;}
.x89_c00398{left:129.866667pt;}
.xa4_c00398{left:131.200000pt;}
.xa1_c00398{left:132.133333pt;}
.x37_c00398{left:133.466667pt;}
.x3c_c00398{left:134.666667pt;}
.xa_c00398{left:136.666667pt;}
.x47_c00398{left:139.066667pt;}
.x26_c00398{left:140.666667pt;}
.x5c_c00398{left:142.000000pt;}
.xc_c00398{left:143.333333pt;}
.x54_c00398{left:145.200000pt;}
.x73_c00398{left:146.133333pt;}
.x1d_c00398{left:147.733333pt;}
.x99_c00398{left:149.200000pt;}
.x13_c00398{left:150.666667pt;}
.x74_c00398{left:153.200000pt;}
.x82_c00398{left:154.533333pt;}
.x38_c00398{left:155.600000pt;}
.xf_c00398{left:158.666667pt;}
.x7f_c00398{left:159.733333pt;}
.x6f_c00398{left:162.000000pt;}
.x7a_c00398{left:164.400000pt;}
.xd_c00398{left:166.666667pt;}
.x3d_c00398{left:168.533333pt;}
.x4f_c00398{left:170.133333pt;}
.x93_c00398{left:171.066667pt;}
.x75_c00398{left:172.400000pt;}
.x16_c00398{left:174.133333pt;}
.x32_c00398{left:175.066667pt;}
.x27_c00398{left:176.133333pt;}
.x43_c00398{left:178.266667pt;}
.x80_c00398{left:179.466667pt;}
.x23_c00398{left:181.066667pt;}
.x55_c00398{left:182.400000pt;}
.x7b_c00398{left:183.600000pt;}
.x6e_c00398{left:185.733333pt;}
.x90_c00398{left:187.200000pt;}
.x9d_c00398{left:188.400000pt;}
.x7c_c00398{left:190.000000pt;}
.x67_c00398{left:192.400000pt;}
.x17_c00398{left:194.666667pt;}
.x48_c00398{left:196.000000pt;}
.x76_c00398{left:197.333333pt;}
.x39_c00398{left:198.533333pt;}
.x85_c00398{left:200.000000pt;}
.x97_c00398{left:200.933333pt;}
.xa3_c00398{left:202.666667pt;}
.xa6_c00398{left:203.866667pt;}
.x68_c00398{left:205.200000pt;}
.x86_c00398{left:206.400000pt;}
.x33_c00398{left:208.933333pt;}
.x50_c00398{left:209.866667pt;}
.x69_c00398{left:211.866667pt;}
.x87_c00398{left:212.800000pt;}
.x24_c00398{left:214.000000pt;}
.x8a_c00398{left:215.466667pt;}
.x28_c00398{left:216.400000pt;}
.x77_c00398{left:217.866667pt;}
.x94_c00398{left:220.400000pt;}
.x7d_c00398{left:222.666667pt;}
.x18_c00398{left:223.733333pt;}
.x5f_c00398{left:225.600000pt;}
.x5d_c00398{left:228.400000pt;}
.x81_c00398{left:230.933333pt;}
.x7e_c00398{left:232.000000pt;}
.x3a_c00398{left:234.400000pt;}
.x2e_c00398{left:235.866667pt;}
.x56_c00398{left:237.466667pt;}
.x88_c00398{left:238.666667pt;}
.x4d_c00398{left:239.733333pt;}
.x3e_c00398{left:241.200000pt;}
.x60_c00398{left:243.200000pt;}
.x34_c00398{left:244.800000pt;}
.x1e_c00398{left:246.266667pt;}
.x19_c00398{left:249.333333pt;}
.x4_c00398{left:251.200000pt;}
.x95_c00398{left:253.066667pt;}
.x29_c00398{left:254.800000pt;}
.x61_c00398{left:255.733333pt;}
.x49_c00398{left:257.066667pt;}
.x8d_c00398{left:258.800000pt;}
.x51_c00398{left:261.733333pt;}
.x79_c00398{left:262.800000pt;}
.x5_c00398{left:263.733333pt;}
.x4a_c00398{left:266.000000pt;}
.x25_c00398{left:268.400000pt;}
.x6a_c00398{left:270.533333pt;}
.x1a_c00398{left:271.733333pt;}
.x2f_c00398{left:275.200000pt;}
.x6b_c00398{left:277.200000pt;}
.x3b_c00398{left:278.266667pt;}
.x3f_c00398{left:281.866667pt;}
.x8e_c00398{left:282.800000pt;}
.x2a_c00398{left:283.866667pt;}
.xa0_c00398{left:285.466667pt;}
.x1b_c00398{left:286.800000pt;}
.x6c_c00398{left:289.333333pt;}
.x84_c00398{left:290.666667pt;}
.x57_c00398{left:292.533333pt;}
.x70_c00398{left:293.466667pt;}
.x96_c00398{left:294.666667pt;}
.x52_c00398{left:296.000000pt;}
.x98_c00398{left:297.600000pt;}
.x14_c00398{left:299.200000pt;}
.x6d_c00398{left:302.400000pt;}
.x35_c00398{left:304.000000pt;}
.x1_c00398{left:304.933333pt;}
.x2b_c00398{left:306.000000pt;}
.xa7_c00398{left:307.200000pt;}
.xa2_c00398{left:311.066667pt;}
.x44_c00398{left:312.400000pt;}
.x6_c00398{left:316.800000pt;}
.x62_c00398{left:319.733333pt;}
.x7_c00398{left:321.333333pt;}
.x1f_c00398{left:325.600000pt;}
.x30_c00398{left:327.333333pt;}
.x10_c00398{left:329.600000pt;}
.x9a_c00398{left:331.733333pt;}
.x8f_c00398{left:333.333333pt;}
.x20_c00398{left:334.266667pt;}
.x2c_c00398{left:335.733333pt;}
.x45_c00398{left:338.000000pt;}
.x58_c00398{left:339.866667pt;}
.x11_c00398{left:340.800000pt;}
.x91_c00398{left:342.266667pt;}
.x9b_c00398{left:343.600000pt;}
.x63_c00398{left:345.600000pt;}
.x36_c00398{left:346.933333pt;}
.x83_c00398{left:347.866667pt;}
.xa5_c00398{left:349.466667pt;}
.x9c_c00398{left:350.666667pt;}
.xa9_c00398{left:351.866667pt;}
.x9e_c00398{left:353.466667pt;}
.x2d_c00398{left:355.200000pt;}
.x53_c00398{left:358.000000pt;}
.x4e_c00398{left:360.800000pt;}
.x4b_c00398{left:363.200000pt;}
.x1c_c00398{left:364.266667pt;}
.x40_c00398{left:365.733333pt;}
.x8b_c00398{left:368.000000pt;}
.x31_c00398{left:368.933333pt;}
.x59_c00398{left:370.266667pt;}
.x64_c00398{left:371.466667pt;}
.x46_c00398{left:372.933333pt;}
.x92_c00398{left:374.000000pt;}
.x21_c00398{left:381.600000pt;}
.x12f_c00398{left:391.333333pt;}
.xfc_c00398{left:401.333333pt;}
.xc0_c00398{left:402.933333pt;}
.x12b_c00398{left:406.400000pt;}
.xaa_c00398{left:412.400000pt;}
.x12c_c00398{left:413.733333pt;}
.x123_c00398{left:414.666667pt;}
.xdd_c00398{left:417.466667pt;}
.xac_c00398{left:419.200000pt;}
.x11c_c00398{left:429.066667pt;}
.x133_c00398{left:430.400000pt;}
.xcf_c00398{left:432.266667pt;}
.x101_c00398{left:433.600000pt;}
.x112_c00398{left:434.533333pt;}
.xd5_c00398{left:435.466667pt;}
.xe9_c00398{left:436.666667pt;}
.x137_c00398{left:438.133333pt;}
.xc9_c00398{left:439.333333pt;}
.x105_c00398{left:443.200000pt;}
.xab_c00398{left:445.733333pt;}
.x10c_c00398{left:449.200000pt;}
.xb4_c00398{left:450.266667pt;}
.xd6_c00398{left:451.733333pt;}
.xca_c00398{left:453.066667pt;}
.xc1_c00398{left:455.066667pt;}
.xf9_c00398{left:456.133333pt;}
.x138_c00398{left:457.333333pt;}
.x127_c00398{left:458.933333pt;}
.xad_c00398{left:460.533333pt;}
.xf2_c00398{left:463.733333pt;}
.x130_c00398{left:464.933333pt;}
.xe5_c00398{left:468.400000pt;}
.x10a_c00398{left:470.133333pt;}
.xc2_c00398{left:471.066667pt;}
.x103_c00398{left:474.266667pt;}
.x12a_c00398{left:476.133333pt;}
.xde_c00398{left:477.333333pt;}
.xbe_c00398{left:480.400000pt;}
.x11d_c00398{left:482.266667pt;}
.xd0_c00398{left:484.133333pt;}
.xf3_c00398{left:486.800000pt;}
.xc3_c00398{left:488.400000pt;}
.x10f_c00398{left:489.600000pt;}
.xb5_c00398{left:492.533333pt;}
.xae_c00398{left:495.066667pt;}
.x11e_c00398{left:498.266667pt;}
.xbf_c00398{left:499.333333pt;}
.xcb_c00398{left:501.066667pt;}
.xd7_c00398{left:502.000000pt;}
.x109_c00398{left:504.266667pt;}
.x124_c00398{left:505.600000pt;}
.xee_c00398{left:507.866667pt;}
.xd1_c00398{left:508.800000pt;}
.x102_c00398{left:510.133333pt;}
.xdf_c00398{left:511.600000pt;}
.x10d_c00398{left:512.533333pt;}
.xb6_c00398{left:514.266667pt;}
.x125_c00398{left:515.466667pt;}
.x11f_c00398{left:517.200000pt;}
.xaf_c00398{left:518.400000pt;}
.xcc_c00398{left:520.266667pt;}
.xc4_c00398{left:522.000000pt;}
.x113_c00398{left:523.466667pt;}
.xfb_c00398{left:525.733333pt;}
.xd8_c00398{left:527.600000pt;}
.xb7_c00398{left:528.666667pt;}
.xef_c00398{left:530.000000pt;}
.x115_c00398{left:532.133333pt;}
.xfd_c00398{left:536.800000pt;}
.xe0_c00398{left:537.866667pt;}
.xf4_c00398{left:538.933333pt;}
.xe6_c00398{left:540.400000pt;}
.x110_c00398{left:544.266667pt;}
.x104_c00398{left:546.533333pt;}
.xcd_c00398{left:547.733333pt;}
.x134_c00398{left:553.466667pt;}
.x11a_c00398{left:554.533333pt;}
.xea_c00398{left:556.133333pt;}
.xf5_c00398{left:558.133333pt;}
.x117_c00398{left:559.333333pt;}
.xb0_c00398{left:561.600000pt;}
.xfa_c00398{left:562.800000pt;}
.xd2_c00398{left:564.800000pt;}
.x126_c00398{left:571.200000pt;}
.xe1_c00398{left:574.933333pt;}
.xf6_c00398{left:576.666667pt;}
.xb8_c00398{left:578.000000pt;}
.x111_c00398{left:580.800000pt;}
.x131_c00398{left:582.666667pt;}
.xb1_c00398{left:584.000000pt;}
.xfe_c00398{left:585.733333pt;}
.xb9_c00398{left:586.933333pt;}
.x11b_c00398{left:588.133333pt;}
.xe7_c00398{left:591.866667pt;}
.xd3_c00398{left:593.600000pt;}
.xd9_c00398{left:595.466667pt;}
.xb2_c00398{left:596.800000pt;}
.x106_c00398{left:599.333333pt;}
.x118_c00398{left:600.266667pt;}
.xba_c00398{left:602.266667pt;}
.x122_c00398{left:605.066667pt;}
.x135_c00398{left:608.133333pt;}
.x107_c00398{left:609.600000pt;}
.xd4_c00398{left:612.800000pt;}
.x10b_c00398{left:614.400000pt;}
.xc5_c00398{left:616.666667pt;}
.xe2_c00398{left:619.066667pt;}
.xf7_c00398{left:620.533333pt;}
.x13b_c00398{left:622.400000pt;}
.xf0_c00398{left:625.333333pt;}
.x136_c00398{left:626.666667pt;}
.x116_c00398{left:630.400000pt;}
.xda_c00398{left:631.600000pt;}
.xff_c00398{left:633.733333pt;}
.xbb_c00398{left:634.933333pt;}
.xe8_c00398{left:638.666667pt;}
.xc6_c00398{left:640.666667pt;}
.xb3_c00398{left:641.600000pt;}
.x128_c00398{left:642.933333pt;}
.x139_c00398{left:643.866667pt;}
.xeb_c00398{left:645.066667pt;}
.x13c_c00398{left:647.333333pt;}
.xdb_c00398{left:648.933333pt;}
.x121_c00398{left:650.000000pt;}
.xe3_c00398{left:652.666667pt;}
.x119_c00398{left:654.000000pt;}
.x129_c00398{left:655.066667pt;}
.xbc_c00398{left:656.400000pt;}
.xf1_c00398{left:657.600000pt;}
.x114_c00398{left:658.666667pt;}
.xc7_c00398{left:660.133333pt;}
.xf8_c00398{left:661.200000pt;}
.xec_c00398{left:662.666667pt;}
.x120_c00398{left:665.333333pt;}
.xdc_c00398{left:666.800000pt;}
.xe4_c00398{left:668.000000pt;}
.x108_c00398{left:669.733333pt;}
.xbd_c00398{left:671.066667pt;}
.x13a_c00398{left:672.666667pt;}
.x100_c00398{left:674.400000pt;}
.x2_c00398{left:675.866667pt;}
.xed_c00398{left:683.200000pt;}
.x132_c00398{left:684.800000pt;}
.x12d_c00398{left:687.200000pt;}
.xce_c00398{left:688.266667pt;}
.x12e_c00398{left:696.133333pt;}
.x10e_c00398{left:697.866667pt;}
.xc8_c00398{left:699.466667pt;}
.x3_c00398{left:714.933333pt;}
}





/* 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_c00399 {
    display:none;
  }
  .loading-indicator_c00399.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00399 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_c00399 { 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_c00399" -> "#page-container .classname_c00399")
 */
.pf_c00399 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00399 { /* 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_c00399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00399 { /* 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_c00399 { /* 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_c00399 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00399 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00399 {overflow:visible;}
  }
}
.c_c00399 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00399 { /* 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_c00399:after { /* webkit #35443 */
  content: '';
}
.t_c00399:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00399 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 */
}
.__c00399 { /* 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_c00399 { /* info for Javascript */
  display:none;
}
.l_c00399 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00399 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00399 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00399: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_c00399 {
    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_c00399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00399.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_c00399 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00399;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.000000;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;}
.ma0_c00399{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00399{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00399{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m118_c00399{transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00399{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m41_c00399{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m95_c00399{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mff_c00399{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m75_c00399{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m107_c00399{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00399{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00399{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m102_c00399{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m38_c00399{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00399{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00399{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m119_c00399{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00399{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m114_c00399{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00399{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m57_c00399{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.md9_c00399{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00399{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m113_c00399{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00399{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m59_c00399{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00399{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m54_c00399{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00399{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00399{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m91_c00399{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m45_c00399{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m93_c00399{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.md7_c00399{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m98_c00399{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m43_c00399{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mba_c00399{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m11_c00399{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me1_c00399{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m108_c00399{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me7_c00399{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00399{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00399{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m6_c00399{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m48_c00399{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md1_c00399{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00399{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m40_c00399{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m18_c00399{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m122_c00399{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00399{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00399{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.md0_c00399{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m29_c00399{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m15_c00399{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00399{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m97_c00399{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00399{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4_c00399{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00399{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7_c00399{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00399{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00399{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m103_c00399{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00399{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00399{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md2_c00399{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00399{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.me9_c00399{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m126_c00399{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m62_c00399{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mae_c00399{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00399{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mce_c00399{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m8_c00399{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m16_c00399{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00399{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00399{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m90_c00399{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00399{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00399{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00399{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00399{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00399{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mde_c00399{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00399{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00399{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m61_c00399{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00399{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00399{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00399{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md_c00399{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00399{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m34_c00399{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m106_c00399{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m127_c00399{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00399{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m25_c00399{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00399{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00399{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m31_c00399{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m37_c00399{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.md6_c00399{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00399{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m58_c00399{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m28_c00399{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m99_c00399{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mad_c00399{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00399{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00399{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00399{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00399{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00399{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m26_c00399{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m56_c00399{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00399{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.md5_c00399{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m49_c00399{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m68_c00399{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9_c00399{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m32_c00399{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc_c00399{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00399{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00399{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00399{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mab_c00399{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3_c00399{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.md8_c00399{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m36_c00399{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00399{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00399{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m27_c00399{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m13_c00399{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md3_c00399{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00399{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m23_c00399{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00399{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma_c00399{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m14_c00399{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb_c00399{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mf_c00399{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m44_c00399{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m33_c00399{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10_c00399{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00399{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m79_c00399{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mac_c00399{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00399{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m72_c00399{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m84_c00399{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m12_c00399{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me5_c00399{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m125_c00399{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m30_c00399{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5_c00399{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m109_c00399{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00399{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00399{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me0_c00399{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00399{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m70_c00399{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m105_c00399{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00399{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m24_c00399{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00399{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m55_c00399{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m47_c00399{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00399{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00399{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me2_c00399{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00399{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00399{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m92_c00399{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00399{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m123_c00399{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m22_c00399{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m117_c00399{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mca_c00399{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00399{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00399{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00399{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00399{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m96_c00399{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00399{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00399{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00399{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00399{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m63_c00399{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m39_c00399{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00399{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m86_c00399{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m88_c00399{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me_c00399{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00399{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00399{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m66_c00399{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00399{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00399{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m83_c00399{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m112_c00399{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m20_c00399{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00399{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.maf_c00399{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m94_c00399{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m69_c00399{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m80_c00399{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m76_c00399{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00399{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00399{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.med_c00399{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00399{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m21_c00399{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00399{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m19_c00399{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00399{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00399{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m111_c00399{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m67_c00399{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00399{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m73_c00399{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00399{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00399{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m35_c00399{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00399{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00399{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00399{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00399{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m124_c00399{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00399{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00399{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me6_c00399{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00399{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00399{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00399{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00399{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00399{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00399{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m46_c00399{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mef_c00399{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00399{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m78_c00399{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m87_c00399{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2_c00399{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mea_c00399{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m115_c00399{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me3_c00399{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.maa_c00399{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md4_c00399{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00399{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00399{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m64_c00399{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m65_c00399{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00399{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m81_c00399{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m17_c00399{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m116_c00399{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m0_c00399{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m89_c00399{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m60_c00399{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00399{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m42_c00399{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00399{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m121_c00399{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mda_c00399{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00399{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00399{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m52_c00399{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00399{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m53_c00399{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m100_c00399{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.meb_c00399{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00399{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mec_c00399{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00399{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m82_c00399{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m51_c00399{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m50_c00399{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m104_c00399{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mee_c00399{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m71_c00399{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m120_c00399{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00399{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m77_c00399{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00399{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.m110_c00399{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00399{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);}
.m101_c00399{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.me4_c00399{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.me8_c00399{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m85_c00399{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00399{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m74_c00399{transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00399{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00399{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00399{transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls1_c00399{letter-spacing:0.000000px;}
.ls0_c00399{letter-spacing:50.211796px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{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__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00399{word-spacing:-77.211796px;}
.ws5_c00399{word-spacing:-13.439353px;}
.ws4_c00399{word-spacing:-12.558140px;}
.ws2_c00399{word-spacing:-11.227074px;}
.ws7_c00399{word-spacing:-7.500000px;}
.ws13_c00399{word-spacing:-7.002288px;}
.ws0_c00399{word-spacing:-0.214286px;}
.ws15_c00399{word-spacing:0.000000px;}
.ws12_c00399{word-spacing:3.125000px;}
.ws14_c00399{word-spacing:3.888889px;}
.ws3_c00399{word-spacing:5.279330px;}
.ws9_c00399{word-spacing:13.447307px;}
.ws1_c00399{word-spacing:17.023810px;}
.ws6_c00399{word-spacing:20.357143px;}
.ws8_c00399{word-spacing:23.211796px;}
.wsd_c00399{word-spacing:25.714286px;}
.wsf_c00399{word-spacing:29.285714px;}
.ws10_c00399{word-spacing:32.250000px;}
.wsa_c00399{word-spacing:36.000000px;}
.wsc_c00399{word-spacing:40.000000px;}
.wse_c00399{word-spacing:44.166667px;}
.ws11_c00399{word-spacing:540.000000px;}
._3_c00399{margin-left:-50.211796px;}
._8_c00399{margin-left:-3.217158px;}
._9_c00399{width:8.042895px;}
._0_c00399{width:24.976744px;}
._2_c00399{width:53.428954px;}
._1_c00399{width:58.254692px;}
._5_c00399{width:59.285714px;}
._6_c00399{width:63.000000px;}
._7_c00399{width:66.750000px;}
._4_c00399{width:74.166667px;}
.fc0_c00399{color:transparent;}
.fs5_c00399{font-size:42.000000px;}
.fs6_c00399{font-size:54.000000px;}
.fs4_c00399{font-size:60.000000px;}
.fs3_c00399{font-size:66.000000px;}
.fs2_c00399{font-size:72.000000px;}
.fs0_c00399{font-size:78.000000px;}
.fs1_c00399{font-size:84.000000px;}
.y0_c00399{bottom:0.000000px;}
.y6c_c00399{bottom:186.000000px;}
.y63_c00399{bottom:187.650000px;}
.y6b_c00399{bottom:200.100000px;}
.y62_c00399{bottom:202.800000px;}
.y6a_c00399{bottom:214.200000px;}
.y61_c00399{bottom:216.450000px;}
.y69_c00399{bottom:228.900000px;}
.y60_c00399{bottom:231.150000px;}
.y68_c00399{bottom:241.500000px;}
.y5f_c00399{bottom:244.500000px;}
.y67_c00399{bottom:256.650000px;}
.y5e_c00399{bottom:258.900000px;}
.y66_c00399{bottom:270.750000px;}
.y5d_c00399{bottom:272.550000px;}
.y65_c00399{bottom:285.150000px;}
.y5c_c00399{bottom:289.050000px;}
.y64_c00399{bottom:299.550000px;}
.y5b_c00399{bottom:301.350000px;}
.y5a_c00399{bottom:315.000000px;}
.y59_c00399{bottom:330.150000px;}
.y54_c00399{bottom:338.850000px;}
.y58_c00399{bottom:343.800000px;}
.y53_c00399{bottom:356.850000px;}
.y57_c00399{bottom:357.450000px;}
.y56_c00399{bottom:373.050000px;}
.y52_c00399{bottom:374.850000px;}
.y55_c00399{bottom:389.550000px;}
.y51_c00399{bottom:393.150000px;}
.y28_c00399{bottom:408.300000px;}
.y50_c00399{bottom:411.150000px;}
.y27_c00399{bottom:426.300000px;}
.y4f_c00399{bottom:429.150000px;}
.y26_c00399{bottom:444.000000px;}
.y4e_c00399{bottom:446.850000px;}
.y25_c00399{bottom:462.300000px;}
.y4d_c00399{bottom:465.150000px;}
.y4c_c00399{bottom:483.150000px;}
.y24_c00399{bottom:486.750000px;}
.y4b_c00399{bottom:500.400000px;}
.y23_c00399{bottom:506.100000px;}
.y4a_c00399{bottom:522.750000px;}
.y22_c00399{bottom:524.400000px;}
.y49_c00399{bottom:540.750000px;}
.y21_c00399{bottom:542.400000px;}
.y20_c00399{bottom:560.400000px;}
.y48_c00399{bottom:567.750000px;}
.y1f_c00399{bottom:578.100000px;}
.y47_c00399{bottom:585.750000px;}
.y1e_c00399{bottom:595.800000px;}
.y46_c00399{bottom:603.450000px;}
.y1d_c00399{bottom:613.800000px;}
.y45_c00399{bottom:621.450000px;}
.y1c_c00399{bottom:631.500000px;}
.y44_c00399{bottom:639.450000px;}
.y1b_c00399{bottom:649.500000px;}
.y43_c00399{bottom:657.450000px;}
.y1a_c00399{bottom:666.750000px;}
.y42_c00399{bottom:675.750000px;}
.y19_c00399{bottom:684.750000px;}
.y41_c00399{bottom:693.450000px;}
.y18_c00399{bottom:702.750000px;}
.y40_c00399{bottom:711.750000px;}
.y17_c00399{bottom:720.750000px;}
.y3f_c00399{bottom:729.450000px;}
.y16_c00399{bottom:742.200000px;}
.y3e_c00399{bottom:747.150000px;}
.y15_c00399{bottom:761.700000px;}
.y3d_c00399{bottom:765.150000px;}
.y14_c00399{bottom:783.000000px;}
.y3c_c00399{bottom:783.150000px;}
.y3b_c00399{bottom:801.150000px;}
.y13_c00399{bottom:804.900000px;}
.y3a_c00399{bottom:818.850000px;}
.y12_c00399{bottom:824.400000px;}
.y39_c00399{bottom:836.850000px;}
.y11_c00399{bottom:842.700000px;}
.y38_c00399{bottom:854.850000px;}
.y10_c00399{bottom:860.400000px;}
.y37_c00399{bottom:872.850000px;}
.yf_c00399{bottom:878.400000px;}
.y36_c00399{bottom:890.850000px;}
.ye_c00399{bottom:896.400000px;}
.y35_c00399{bottom:908.850000px;}
.yd_c00399{bottom:914.400000px;}
.yc_c00399{bottom:932.100000px;}
.y34_c00399{bottom:943.800000px;}
.y33_c00399{bottom:944.850000px;}
.yb_c00399{bottom:950.400000px;}
.y32_c00399{bottom:962.850000px;}
.ya_c00399{bottom:968.100000px;}
.y31_c00399{bottom:980.550000px;}
.y9_c00399{bottom:988.500000px;}
.y30_c00399{bottom:998.550000px;}
.y8_c00399{bottom:1010.550000px;}
.y2f_c00399{bottom:1016.250000px;}
.y7_c00399{bottom:1033.950000px;}
.y2e_c00399{bottom:1034.250000px;}
.y2d_c00399{bottom:1052.250000px;}
.y6_c00399{bottom:1055.850000px;}
.y2c_c00399{bottom:1069.950000px;}
.y5_c00399{bottom:1077.000000px;}
.y2b_c00399{bottom:1090.800000px;}
.y4_c00399{bottom:1096.500000px;}
.y2a_c00399{bottom:1105.200000px;}
.y3_c00399{bottom:1117.500000px;}
.y29_c00399{bottom:1119.900000px;}
.y1_c00399{bottom:1144.500000px;}
.y2_c00399{bottom:1146.000000px;}
.h7_c00399{height:42.000000px;}
.h8_c00399{height:54.000000px;}
.h6_c00399{height:60.000000px;}
.h5_c00399{height:66.000000px;}
.h4_c00399{height:72.000000px;}
.h2_c00399{height:78.000000px;}
.h3_c00399{height:84.000000px;}
.h1_c00399{height:1269.750000px;}
.h0_c00399{height:1270.080048px;}
.w0_c00399{width:960.480010px;}
.w1_c00399{width:960.750000px;}
.x0_c00399{left:0.000000px;}
.x1_c00399{left:172.050000px;}
.x16_c00399{left:174.300000px;}
.x4d_c00399{left:176.700000px;}
.x12b_c00399{left:177.900000px;}
.x81_c00399{left:179.700000px;}
.xa_c00399{left:191.550000px;}
.x24_c00399{left:192.600000px;}
.x60_c00399{left:193.800000px;}
.x66_c00399{left:195.750000px;}
.x76_c00399{left:196.800000px;}
.x80_c00399{left:198.000000px;}
.x3_c00399{left:209.100000px;}
.xb_c00399{left:210.300000px;}
.x40_c00399{left:212.400000px;}
.x25_c00399{left:213.450000px;}
.x7b_c00399{left:216.000000px;}
.x71_c00399{left:217.650000px;}
.x56_c00399{left:218.850000px;}
.x1d_c00399{left:220.350000px;}
.x45_c00399{left:222.300000px;}
.x82_c00399{left:223.650000px;}
.x6c_c00399{left:226.350000px;}
.x37_c00399{left:227.550000px;}
.x69_c00399{left:229.950000px;}
.x33_c00399{left:231.450000px;}
.x17_c00399{left:233.400000px;}
.x46_c00399{left:234.600000px;}
.x89_c00399{left:236.850000px;}
.x8c_c00399{left:239.250000px;}
.x12c_c00399{left:240.600000px;}
.x4b_c00399{left:241.950000px;}
.x5a_c00399{left:245.100000px;}
.x3b_c00399{left:246.150000px;}
.x133_c00399{left:248.700000px;}
.x4_c00399{left:250.200000px;}
.x13_c00399{left:252.000000px;}
.x26_c00399{left:254.550000px;}
.x18_c00399{left:255.750000px;}
.x2d_c00399{left:257.100000px;}
.x47_c00399{left:258.750000px;}
.x7c_c00399{left:261.000000px;}
.x6a_c00399{left:263.100000px;}
.xc_c00399{left:267.150000px;}
.x12f_c00399{left:268.200000px;}
.x138_c00399{left:269.250000px;}
.xe_c00399{left:271.500000px;}
.x14_c00399{left:272.850000px;}
.x27_c00399{left:274.050000px;}
.x41_c00399{left:276.150000px;}
.x6_c00399{left:278.250000px;}
.x6f_c00399{left:279.600000px;}
.x141_c00399{left:280.950000px;}
.x15_c00399{left:283.650000px;}
.x5b_c00399{left:284.700000px;}
.x57_c00399{left:286.950000px;}
.x1e_c00399{left:289.500000px;}
.x34_c00399{left:290.550000px;}
.x77_c00399{left:291.900000px;}
.x28_c00399{left:296.700000px;}
.x134_c00399{left:298.800000px;}
.x52_c00399{left:300.600000px;}
.x3c_c00399{left:303.600000px;}
.x4c_c00399{left:308.550000px;}
.x58_c00399{left:310.350000px;}
.x1f_c00399{left:311.400000px;}
.x5_c00399{left:313.200000px;}
.x42_c00399{left:314.700000px;}
.x143_c00399{left:318.450000px;}
.x7d_c00399{left:320.400000px;}
.x19_c00399{left:322.350000px;}
.x72_c00399{left:324.150000px;}
.x86_c00399{left:325.350000px;}
.x53_c00399{left:326.550000px;}
.x3d_c00399{left:328.500000px;}
.x61_c00399{left:331.800000px;}
.x67_c00399{left:333.300000px;}
.x2e_c00399{left:334.500000px;}
.x6d_c00399{left:335.850000px;}
.x48_c00399{left:337.650000px;}
.x135_c00399{left:339.450000px;}
.x4e_c00399{left:340.500000px;}
.x7_c00399{left:342.300000px;}
.x6b_c00399{left:344.100000px;}
.x73_c00399{left:345.450000px;}
.x20_c00399{left:347.100000px;}
.xf_c00399{left:350.700000px;}
.x131_c00399{left:352.350000px;}
.x54_c00399{left:353.850000px;}
.x136_c00399{left:355.350000px;}
.x29_c00399{left:356.400000px;}
.x4f_c00399{left:357.450000px;}
.x1a_c00399{left:358.650000px;}
.xd_c00399{left:359.700000px;}
.x12d_c00399{left:361.200000px;}
.x55_c00399{left:363.150000px;}
.x142_c00399{left:365.250000px;}
.x83_c00399{left:366.300000px;}
.x13a_c00399{left:367.500000px;}
.x2f_c00399{left:369.750000px;}
.x38_c00399{left:371.550000px;}
.x49_c00399{left:372.900000px;}
.x132_c00399{left:374.250000px;}
.x2a_c00399{left:376.950000px;}
.x87_c00399{left:379.650000px;}
.x139_c00399{left:381.150000px;}
.x68_c00399{left:382.200000px;}
.x5d_c00399{left:383.250000px;}
.x35_c00399{left:385.200000px;}
.x43_c00399{left:386.400000px;}
.x137_c00399{left:387.750000px;}
.x130_c00399{left:388.950000px;}
.x78_c00399{left:390.900000px;}
.x10_c00399{left:392.850000px;}
.x88_c00399{left:394.050000px;}
.x13f_c00399{left:395.250000px;}
.x62_c00399{left:396.300000px;}
.x30_c00399{left:399.600000px;}
.x13c_c00399{left:401.400000px;}
.x5c_c00399{left:402.750000px;}
.x21_c00399{left:405.750000px;}
.x84_c00399{left:407.700000px;}
.x5e_c00399{left:409.500000px;}
.x7e_c00399{left:412.650000px;}
.x1b_c00399{left:415.950000px;}
.x8a_c00399{left:417.450000px;}
.x8_c00399{left:418.950000px;}
.x50_c00399{left:420.750000px;}
.x2_c00399{left:422.250000px;}
.x140_c00399{left:424.350000px;}
.x4a_c00399{left:425.850000px;}
.x11_c00399{left:427.050000px;}
.x63_c00399{left:428.700000px;}
.x3e_c00399{left:431.100000px;}
.x1c_c00399{left:433.200000px;}
.x79_c00399{left:435.150000px;}
.x31_c00399{left:437.400000px;}
.x39_c00399{left:442.050000px;}
.x12_c00399{left:443.550000px;}
.x13b_c00399{left:444.600000px;}
.x22_c00399{left:446.100000px;}
.x85_c00399{left:449.850000px;}
.x2b_c00399{left:451.800000px;}
.x9_c00399{left:452.850000px;}
.x59_c00399{left:455.400000px;}
.x7a_c00399{left:456.450000px;}
.x6e_c00399{left:459.000000px;}
.x32_c00399{left:460.050000px;}
.x44_c00399{left:463.500000px;}
.x23_c00399{left:465.150000px;}
.x74_c00399{left:467.100000px;}
.x5f_c00399{left:469.200000px;}
.x8d_c00399{left:471.450000px;}
.x13e_c00399{left:472.650000px;}
.x70_c00399{left:474.000000px;}
.x2c_c00399{left:475.500000px;}
.x75_c00399{left:476.850000px;}
.x64_c00399{left:481.950000px;}
.x36_c00399{left:483.900000px;}
.x8b_c00399{left:485.250000px;}
.x51_c00399{left:491.250000px;}
.x3a_c00399{left:497.850000px;}
.x12e_c00399{left:500.100000px;}
.x3f_c00399{left:501.600000px;}
.x65_c00399{left:503.550000px;}
.x7f_c00399{left:505.200000px;}
.x13d_c00399{left:509.700000px;}
.xa3_c00399{left:531.300000px;}
.x152_c00399{left:533.700000px;}
.x10e_c00399{left:535.350000px;}
.x113_c00399{left:536.400000px;}
.x96_c00399{left:544.650000px;}
.x123_c00399{left:546.450000px;}
.xa8_c00399{left:549.750000px;}
.xd4_c00399{left:550.950000px;}
.xda_c00399{left:552.150000px;}
.xf5_c00399{left:553.500000px;}
.x11c_c00399{left:554.700000px;}
.x8e_c00399{left:559.050000px;}
.x145_c00399{left:565.650000px;}
.xd5_c00399{left:567.450000px;}
.x12a_c00399{left:569.250000px;}
.xf0_c00399{left:570.750000px;}
.x155_c00399{left:571.950000px;}
.xe9_c00399{left:573.150000px;}
.x9f_c00399{left:575.100000px;}
.xd0_c00399{left:576.450000px;}
.xfa_c00399{left:577.800000px;}
.x14b_c00399{left:580.650000px;}
.x114_c00399{left:581.700000px;}
.xc7_c00399{left:583.950000px;}
.xaf_c00399{left:586.050000px;}
.x10d_c00399{left:588.150000px;}
.x121_c00399{left:589.650000px;}
.x97_c00399{left:591.150000px;}
.x125_c00399{left:592.200000px;}
.xbf_c00399{left:593.550000px;}
.x14c_c00399{left:595.800000px;}
.xd6_c00399{left:597.000000px;}
.x8f_c00399{left:598.650000px;}
.xa9_c00399{left:602.250000px;}
.x109_c00399{left:603.600000px;}
.xba_c00399{left:604.650000px;}
.xd1_c00399{left:606.300000px;}
.x144_c00399{left:607.650000px;}
.x98_c00399{left:609.150000px;}
.x148_c00399{left:610.500000px;}
.xc2_c00399{left:612.900000px;}
.x110_c00399{left:614.850000px;}
.x115_c00399{left:616.200000px;}
.xb0_c00399{left:618.150000px;}
.xea_c00399{left:619.200000px;}
.xa4_c00399{left:620.250000px;}
.xfb_c00399{left:622.800000px;}
.x126_c00399{left:623.850000px;}
.x90_c00399{left:625.950000px;}
.xb1_c00399{left:628.200000px;}
.xd7_c00399{left:630.450000px;}
.xf6_c00399{left:633.450000px;}
.x111_c00399{left:635.400000px;}
.x104_c00399{left:637.050000px;}
.xf1_c00399{left:638.400000px;}
.x11d_c00399{left:639.900000px;}
.x153_c00399{left:643.500000px;}
.xbb_c00399{left:645.300000px;}
.xc8_c00399{left:646.500000px;}
.xaa_c00399{left:650.850000px;}
.x149_c00399{left:652.200000px;}
.xc3_c00399{left:653.250000px;}
.x11e_c00399{left:655.050000px;}
.xeb_c00399{left:656.250000px;}
.xe7_c00399{left:657.300000px;}
.x14d_c00399{left:658.800000px;}
.xee_c00399{left:660.300000px;}
.xf2_c00399{left:662.100000px;}
.xa5_c00399{left:664.200000px;}
.xbc_c00399{left:665.850000px;}
.x91_c00399{left:668.100000px;}
.x105_c00399{left:669.450000px;}
.xb2_c00399{left:672.150000px;}
.xfc_c00399{left:673.200000px;}
.x99_c00399{left:675.450000px;}
.xe1_c00399{left:677.100000px;}
.xf3_c00399{left:679.350000px;}
.xd8_c00399{left:680.550000px;}
.xb6_c00399{left:683.100000px;}
.xf7_c00399{left:684.600000px;}
.xa0_c00399{left:685.950000px;}
.xfd_c00399{left:689.400000px;}
.xcd_c00399{left:690.450000px;}
.x10a_c00399{left:692.250000px;}
.x150_c00399{left:693.450000px;}
.xc9_c00399{left:698.700000px;}
.xe3_c00399{left:699.750000px;}
.xb7_c00399{left:702.600000px;}
.x116_c00399{left:704.100000px;}
.xde_c00399{left:705.600000px;}
.x9a_c00399{left:706.800000px;}
.x14e_c00399{left:708.900000px;}
.xec_c00399{left:710.250000px;}
.xf4_c00399{left:711.450000px;}
.x127_c00399{left:713.100000px;}
.x106_c00399{left:714.450000px;}
.x146_c00399{left:715.650000px;}
.xdb_c00399{left:717.450000px;}
.x119_c00399{left:718.500000px;}
.xab_c00399{left:720.000000px;}
.x92_c00399{left:722.100000px;}
.xa1_c00399{left:725.250000px;}
.x156_c00399{left:726.450000px;}
.xbd_c00399{left:728.100000px;}
.x101_c00399{left:730.800000px;}
.x9b_c00399{left:733.050000px;}
.xdf_c00399{left:734.100000px;}
.xef_c00399{left:735.900000px;}
.x112_c00399{left:739.350000px;}
.xd9_c00399{left:741.450000px;}
.x11a_c00399{left:743.400000px;}
.xca_c00399{left:745.800000px;}
.xc4_c00399{left:750.300000px;}
.xb8_c00399{left:752.250000px;}
.xfe_c00399{left:754.200000px;}
.xac_c00399{left:755.250000px;}
.x11f_c00399{left:756.600000px;}
.xd2_c00399{left:758.250000px;}
.x10b_c00399{left:761.700000px;}
.x107_c00399{left:762.750000px;}
.xb3_c00399{left:767.250000px;}
.x10c_c00399{left:769.200000px;}
.x93_c00399{left:771.750000px;}
.x9c_c00399{left:774.450000px;}
.xe2_c00399{left:777.900000px;}
.xe4_c00399{left:778.950000px;}
.xff_c00399{left:780.150000px;}
.xe8_c00399{left:782.400000px;}
.xa6_c00399{left:783.450000px;}
.x124_c00399{left:785.100000px;}
.xc0_c00399{left:786.150000px;}
.x154_c00399{left:788.250000px;}
.xc5_c00399{left:789.600000px;}
.x117_c00399{left:790.800000px;}
.xb9_c00399{left:792.600000px;}
.xe5_c00399{left:794.850000px;}
.x102_c00399{left:796.650000px;}
.xd3_c00399{left:798.600000px;}
.xcb_c00399{left:799.800000px;}
.x118_c00399{left:801.600000px;}
.xbe_c00399{left:803.400000px;}
.x94_c00399{left:805.200000px;}
.xa2_c00399{left:806.250000px;}
.xc1_c00399{left:810.600000px;}
.x11b_c00399{left:812.100000px;}
.x129_c00399{left:814.650000px;}
.xb4_c00399{left:816.300000px;}
.xce_c00399{left:819.450000px;}
.xcc_c00399{left:820.650000px;}
.x147_c00399{left:821.850000px;}
.x14a_c00399{left:822.900000px;}
.xed_c00399{left:825.750000px;}
.xad_c00399{left:826.950000px;}
.x122_c00399{left:829.650000px;}
.x108_c00399{left:830.700000px;}
.xf8_c00399{left:833.250000px;}
.xb5_c00399{left:834.300000px;}
.x9d_c00399{left:835.650000px;}
.xae_c00399{left:837.000000px;}
.xe6_c00399{left:838.050000px;}
.x10f_c00399{left:839.400000px;}
.x103_c00399{left:840.900000px;}
.x95_c00399{left:841.950000px;}
.x100_c00399{left:847.050000px;}
.xdc_c00399{left:848.100000px;}
.xe0_c00399{left:849.300000px;}
.xcf_c00399{left:850.800000px;}
.xf9_c00399{left:852.000000px;}
.x9e_c00399{left:856.200000px;}
.x14f_c00399{left:857.400000px;}
.x151_c00399{left:858.750000px;}
.xc6_c00399{left:860.400000px;}
.xdd_c00399{left:861.750000px;}
.xa7_c00399{left:866.550000px;}
.x128_c00399{left:867.900000px;}
.x120_c00399{left:869.250000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls1_c00399{letter-spacing:0.000000pt;}
.ls0_c00399{letter-spacing:44.632708pt;}
.wsb_c00399{word-spacing:-68.632708pt;}
.ws5_c00399{word-spacing:-11.946092pt;}
.ws4_c00399{word-spacing:-11.162791pt;}
.ws2_c00399{word-spacing:-9.979622pt;}
.ws7_c00399{word-spacing:-6.666667pt;}
.ws13_c00399{word-spacing:-6.224256pt;}
.ws0_c00399{word-spacing:-0.190476pt;}
.ws15_c00399{word-spacing:0.000000pt;}
.ws12_c00399{word-spacing:2.777778pt;}
.ws14_c00399{word-spacing:3.456790pt;}
.ws3_c00399{word-spacing:4.692737pt;}
.ws9_c00399{word-spacing:11.953162pt;}
.ws1_c00399{word-spacing:15.132275pt;}
.ws6_c00399{word-spacing:18.095238pt;}
.ws8_c00399{word-spacing:20.632708pt;}
.wsd_c00399{word-spacing:22.857143pt;}
.wsf_c00399{word-spacing:26.031746pt;}
.ws10_c00399{word-spacing:28.666667pt;}
.wsa_c00399{word-spacing:32.000000pt;}
.wsc_c00399{word-spacing:35.555556pt;}
.wse_c00399{word-spacing:39.259259pt;}
.ws11_c00399{word-spacing:480.000000pt;}
._3_c00399{margin-left:-44.632708pt;}
._8_c00399{margin-left:-2.859696pt;}
._9_c00399{width:7.149240pt;}
._0_c00399{width:22.201550pt;}
._2_c00399{width:47.492404pt;}
._1_c00399{width:51.781948pt;}
._5_c00399{width:52.698413pt;}
._6_c00399{width:56.000000pt;}
._7_c00399{width:59.333333pt;}
._4_c00399{width:65.925926pt;}
.fs5_c00399{font-size:37.333333pt;}
.fs6_c00399{font-size:48.000000pt;}
.fs4_c00399{font-size:53.333333pt;}
.fs3_c00399{font-size:58.666667pt;}
.fs2_c00399{font-size:64.000000pt;}
.fs0_c00399{font-size:69.333333pt;}
.fs1_c00399{font-size:74.666667pt;}
.y0_c00399{bottom:0.000000pt;}
.y6c_c00399{bottom:165.333333pt;}
.y63_c00399{bottom:166.800000pt;}
.y6b_c00399{bottom:177.866667pt;}
.y62_c00399{bottom:180.266667pt;}
.y6a_c00399{bottom:190.400000pt;}
.y61_c00399{bottom:192.400000pt;}
.y69_c00399{bottom:203.466667pt;}
.y60_c00399{bottom:205.466667pt;}
.y68_c00399{bottom:214.666667pt;}
.y5f_c00399{bottom:217.333333pt;}
.y67_c00399{bottom:228.133333pt;}
.y5e_c00399{bottom:230.133333pt;}
.y66_c00399{bottom:240.666667pt;}
.y5d_c00399{bottom:242.266667pt;}
.y65_c00399{bottom:253.466667pt;}
.y5c_c00399{bottom:256.933333pt;}
.y64_c00399{bottom:266.266667pt;}
.y5b_c00399{bottom:267.866667pt;}
.y5a_c00399{bottom:280.000000pt;}
.y59_c00399{bottom:293.466667pt;}
.y54_c00399{bottom:301.200000pt;}
.y58_c00399{bottom:305.600000pt;}
.y53_c00399{bottom:317.200000pt;}
.y57_c00399{bottom:317.733333pt;}
.y56_c00399{bottom:331.600000pt;}
.y52_c00399{bottom:333.200000pt;}
.y55_c00399{bottom:346.266667pt;}
.y51_c00399{bottom:349.466667pt;}
.y28_c00399{bottom:362.933333pt;}
.y50_c00399{bottom:365.466667pt;}
.y27_c00399{bottom:378.933333pt;}
.y4f_c00399{bottom:381.466667pt;}
.y26_c00399{bottom:394.666667pt;}
.y4e_c00399{bottom:397.200000pt;}
.y25_c00399{bottom:410.933333pt;}
.y4d_c00399{bottom:413.466667pt;}
.y4c_c00399{bottom:429.466667pt;}
.y24_c00399{bottom:432.666667pt;}
.y4b_c00399{bottom:444.800000pt;}
.y23_c00399{bottom:449.866667pt;}
.y4a_c00399{bottom:464.666667pt;}
.y22_c00399{bottom:466.133333pt;}
.y49_c00399{bottom:480.666667pt;}
.y21_c00399{bottom:482.133333pt;}
.y20_c00399{bottom:498.133333pt;}
.y48_c00399{bottom:504.666667pt;}
.y1f_c00399{bottom:513.866667pt;}
.y47_c00399{bottom:520.666667pt;}
.y1e_c00399{bottom:529.600000pt;}
.y46_c00399{bottom:536.400000pt;}
.y1d_c00399{bottom:545.600000pt;}
.y45_c00399{bottom:552.400000pt;}
.y1c_c00399{bottom:561.333333pt;}
.y44_c00399{bottom:568.400000pt;}
.y1b_c00399{bottom:577.333333pt;}
.y43_c00399{bottom:584.400000pt;}
.y1a_c00399{bottom:592.666667pt;}
.y42_c00399{bottom:600.666667pt;}
.y19_c00399{bottom:608.666667pt;}
.y41_c00399{bottom:616.400000pt;}
.y18_c00399{bottom:624.666667pt;}
.y40_c00399{bottom:632.666667pt;}
.y17_c00399{bottom:640.666667pt;}
.y3f_c00399{bottom:648.400000pt;}
.y16_c00399{bottom:659.733333pt;}
.y3e_c00399{bottom:664.133333pt;}
.y15_c00399{bottom:677.066667pt;}
.y3d_c00399{bottom:680.133333pt;}
.y14_c00399{bottom:696.000000pt;}
.y3c_c00399{bottom:696.133333pt;}
.y3b_c00399{bottom:712.133333pt;}
.y13_c00399{bottom:715.466667pt;}
.y3a_c00399{bottom:727.866667pt;}
.y12_c00399{bottom:732.800000pt;}
.y39_c00399{bottom:743.866667pt;}
.y11_c00399{bottom:749.066667pt;}
.y38_c00399{bottom:759.866667pt;}
.y10_c00399{bottom:764.800000pt;}
.y37_c00399{bottom:775.866667pt;}
.yf_c00399{bottom:780.800000pt;}
.y36_c00399{bottom:791.866667pt;}
.ye_c00399{bottom:796.800000pt;}
.y35_c00399{bottom:807.866667pt;}
.yd_c00399{bottom:812.800000pt;}
.yc_c00399{bottom:828.533333pt;}
.y34_c00399{bottom:838.933333pt;}
.y33_c00399{bottom:839.866667pt;}
.yb_c00399{bottom:844.800000pt;}
.y32_c00399{bottom:855.866667pt;}
.ya_c00399{bottom:860.533333pt;}
.y31_c00399{bottom:871.600000pt;}
.y9_c00399{bottom:878.666667pt;}
.y30_c00399{bottom:887.600000pt;}
.y8_c00399{bottom:898.266667pt;}
.y2f_c00399{bottom:903.333333pt;}
.y7_c00399{bottom:919.066667pt;}
.y2e_c00399{bottom:919.333333pt;}
.y2d_c00399{bottom:935.333333pt;}
.y6_c00399{bottom:938.533333pt;}
.y2c_c00399{bottom:951.066667pt;}
.y5_c00399{bottom:957.333333pt;}
.y2b_c00399{bottom:969.600000pt;}
.y4_c00399{bottom:974.666667pt;}
.y2a_c00399{bottom:982.400000pt;}
.y3_c00399{bottom:993.333333pt;}
.y29_c00399{bottom:995.466667pt;}
.y1_c00399{bottom:1017.333333pt;}
.y2_c00399{bottom:1018.666667pt;}
.h7_c00399{height:37.333333pt;}
.h8_c00399{height:48.000000pt;}
.h6_c00399{height:53.333333pt;}
.h5_c00399{height:58.666667pt;}
.h4_c00399{height:64.000000pt;}
.h2_c00399{height:69.333333pt;}
.h3_c00399{height:74.666667pt;}
.h1_c00399{height:1128.666667pt;}
.h0_c00399{height:1128.960043pt;}
.w0_c00399{width:853.760009pt;}
.w1_c00399{width:854.000000pt;}
.x0_c00399{left:0.000000pt;}
.x1_c00399{left:152.933333pt;}
.x16_c00399{left:154.933333pt;}
.x4d_c00399{left:157.066667pt;}
.x12b_c00399{left:158.133333pt;}
.x81_c00399{left:159.733333pt;}
.xa_c00399{left:170.266667pt;}
.x24_c00399{left:171.200000pt;}
.x60_c00399{left:172.266667pt;}
.x66_c00399{left:174.000000pt;}
.x76_c00399{left:174.933333pt;}
.x80_c00399{left:176.000000pt;}
.x3_c00399{left:185.866667pt;}
.xb_c00399{left:186.933333pt;}
.x40_c00399{left:188.800000pt;}
.x25_c00399{left:189.733333pt;}
.x7b_c00399{left:192.000000pt;}
.x71_c00399{left:193.466667pt;}
.x56_c00399{left:194.533333pt;}
.x1d_c00399{left:195.866667pt;}
.x45_c00399{left:197.600000pt;}
.x82_c00399{left:198.800000pt;}
.x6c_c00399{left:201.200000pt;}
.x37_c00399{left:202.266667pt;}
.x69_c00399{left:204.400000pt;}
.x33_c00399{left:205.733333pt;}
.x17_c00399{left:207.466667pt;}
.x46_c00399{left:208.533333pt;}
.x89_c00399{left:210.533333pt;}
.x8c_c00399{left:212.666667pt;}
.x12c_c00399{left:213.866667pt;}
.x4b_c00399{left:215.066667pt;}
.x5a_c00399{left:217.866667pt;}
.x3b_c00399{left:218.800000pt;}
.x133_c00399{left:221.066667pt;}
.x4_c00399{left:222.400000pt;}
.x13_c00399{left:224.000000pt;}
.x26_c00399{left:226.266667pt;}
.x18_c00399{left:227.333333pt;}
.x2d_c00399{left:228.533333pt;}
.x47_c00399{left:230.000000pt;}
.x7c_c00399{left:232.000000pt;}
.x6a_c00399{left:233.866667pt;}
.xc_c00399{left:237.466667pt;}
.x12f_c00399{left:238.400000pt;}
.x138_c00399{left:239.333333pt;}
.xe_c00399{left:241.333333pt;}
.x14_c00399{left:242.533333pt;}
.x27_c00399{left:243.600000pt;}
.x41_c00399{left:245.466667pt;}
.x6_c00399{left:247.333333pt;}
.x6f_c00399{left:248.533333pt;}
.x141_c00399{left:249.733333pt;}
.x15_c00399{left:252.133333pt;}
.x5b_c00399{left:253.066667pt;}
.x57_c00399{left:255.066667pt;}
.x1e_c00399{left:257.333333pt;}
.x34_c00399{left:258.266667pt;}
.x77_c00399{left:259.466667pt;}
.x28_c00399{left:263.733333pt;}
.x134_c00399{left:265.600000pt;}
.x52_c00399{left:267.200000pt;}
.x3c_c00399{left:269.866667pt;}
.x4c_c00399{left:274.266667pt;}
.x58_c00399{left:275.866667pt;}
.x1f_c00399{left:276.800000pt;}
.x5_c00399{left:278.400000pt;}
.x42_c00399{left:279.733333pt;}
.x143_c00399{left:283.066667pt;}
.x7d_c00399{left:284.800000pt;}
.x19_c00399{left:286.533333pt;}
.x72_c00399{left:288.133333pt;}
.x86_c00399{left:289.200000pt;}
.x53_c00399{left:290.266667pt;}
.x3d_c00399{left:292.000000pt;}
.x61_c00399{left:294.933333pt;}
.x67_c00399{left:296.266667pt;}
.x2e_c00399{left:297.333333pt;}
.x6d_c00399{left:298.533333pt;}
.x48_c00399{left:300.133333pt;}
.x135_c00399{left:301.733333pt;}
.x4e_c00399{left:302.666667pt;}
.x7_c00399{left:304.266667pt;}
.x6b_c00399{left:305.866667pt;}
.x73_c00399{left:307.066667pt;}
.x20_c00399{left:308.533333pt;}
.xf_c00399{left:311.733333pt;}
.x131_c00399{left:313.200000pt;}
.x54_c00399{left:314.533333pt;}
.x136_c00399{left:315.866667pt;}
.x29_c00399{left:316.800000pt;}
.x4f_c00399{left:317.733333pt;}
.x1a_c00399{left:318.800000pt;}
.xd_c00399{left:319.733333pt;}
.x12d_c00399{left:321.066667pt;}
.x55_c00399{left:322.800000pt;}
.x142_c00399{left:324.666667pt;}
.x83_c00399{left:325.600000pt;}
.x13a_c00399{left:326.666667pt;}
.x2f_c00399{left:328.666667pt;}
.x38_c00399{left:330.266667pt;}
.x49_c00399{left:331.466667pt;}
.x132_c00399{left:332.666667pt;}
.x2a_c00399{left:335.066667pt;}
.x87_c00399{left:337.466667pt;}
.x139_c00399{left:338.800000pt;}
.x68_c00399{left:339.733333pt;}
.x5d_c00399{left:340.666667pt;}
.x35_c00399{left:342.400000pt;}
.x43_c00399{left:343.466667pt;}
.x137_c00399{left:344.666667pt;}
.x130_c00399{left:345.733333pt;}
.x78_c00399{left:347.466667pt;}
.x10_c00399{left:349.200000pt;}
.x88_c00399{left:350.266667pt;}
.x13f_c00399{left:351.333333pt;}
.x62_c00399{left:352.266667pt;}
.x30_c00399{left:355.200000pt;}
.x13c_c00399{left:356.800000pt;}
.x5c_c00399{left:358.000000pt;}
.x21_c00399{left:360.666667pt;}
.x84_c00399{left:362.400000pt;}
.x5e_c00399{left:364.000000pt;}
.x7e_c00399{left:366.800000pt;}
.x1b_c00399{left:369.733333pt;}
.x8a_c00399{left:371.066667pt;}
.x8_c00399{left:372.400000pt;}
.x50_c00399{left:374.000000pt;}
.x2_c00399{left:375.333333pt;}
.x140_c00399{left:377.200000pt;}
.x4a_c00399{left:378.533333pt;}
.x11_c00399{left:379.600000pt;}
.x63_c00399{left:381.066667pt;}
.x3e_c00399{left:383.200000pt;}
.x1c_c00399{left:385.066667pt;}
.x79_c00399{left:386.800000pt;}
.x31_c00399{left:388.800000pt;}
.x39_c00399{left:392.933333pt;}
.x12_c00399{left:394.266667pt;}
.x13b_c00399{left:395.200000pt;}
.x22_c00399{left:396.533333pt;}
.x85_c00399{left:399.866667pt;}
.x2b_c00399{left:401.600000pt;}
.x9_c00399{left:402.533333pt;}
.x59_c00399{left:404.800000pt;}
.x7a_c00399{left:405.733333pt;}
.x6e_c00399{left:408.000000pt;}
.x32_c00399{left:408.933333pt;}
.x44_c00399{left:412.000000pt;}
.x23_c00399{left:413.466667pt;}
.x74_c00399{left:415.200000pt;}
.x5f_c00399{left:417.066667pt;}
.x8d_c00399{left:419.066667pt;}
.x13e_c00399{left:420.133333pt;}
.x70_c00399{left:421.333333pt;}
.x2c_c00399{left:422.666667pt;}
.x75_c00399{left:423.866667pt;}
.x64_c00399{left:428.400000pt;}
.x36_c00399{left:430.133333pt;}
.x8b_c00399{left:431.333333pt;}
.x51_c00399{left:436.666667pt;}
.x3a_c00399{left:442.533333pt;}
.x12e_c00399{left:444.533333pt;}
.x3f_c00399{left:445.866667pt;}
.x65_c00399{left:447.600000pt;}
.x7f_c00399{left:449.066667pt;}
.x13d_c00399{left:453.066667pt;}
.xa3_c00399{left:472.266667pt;}
.x152_c00399{left:474.400000pt;}
.x10e_c00399{left:475.866667pt;}
.x113_c00399{left:476.800000pt;}
.x96_c00399{left:484.133333pt;}
.x123_c00399{left:485.733333pt;}
.xa8_c00399{left:488.666667pt;}
.xd4_c00399{left:489.733333pt;}
.xda_c00399{left:490.800000pt;}
.xf5_c00399{left:492.000000pt;}
.x11c_c00399{left:493.066667pt;}
.x8e_c00399{left:496.933333pt;}
.x145_c00399{left:502.800000pt;}
.xd5_c00399{left:504.400000pt;}
.x12a_c00399{left:506.000000pt;}
.xf0_c00399{left:507.333333pt;}
.x155_c00399{left:508.400000pt;}
.xe9_c00399{left:509.466667pt;}
.x9f_c00399{left:511.200000pt;}
.xd0_c00399{left:512.400000pt;}
.xfa_c00399{left:513.600000pt;}
.x14b_c00399{left:516.133333pt;}
.x114_c00399{left:517.066667pt;}
.xc7_c00399{left:519.066667pt;}
.xaf_c00399{left:520.933333pt;}
.x10d_c00399{left:522.800000pt;}
.x121_c00399{left:524.133333pt;}
.x97_c00399{left:525.466667pt;}
.x125_c00399{left:526.400000pt;}
.xbf_c00399{left:527.600000pt;}
.x14c_c00399{left:529.600000pt;}
.xd6_c00399{left:530.666667pt;}
.x8f_c00399{left:532.133333pt;}
.xa9_c00399{left:535.333333pt;}
.x109_c00399{left:536.533333pt;}
.xba_c00399{left:537.466667pt;}
.xd1_c00399{left:538.933333pt;}
.x144_c00399{left:540.133333pt;}
.x98_c00399{left:541.466667pt;}
.x148_c00399{left:542.666667pt;}
.xc2_c00399{left:544.800000pt;}
.x110_c00399{left:546.533333pt;}
.x115_c00399{left:547.733333pt;}
.xb0_c00399{left:549.466667pt;}
.xea_c00399{left:550.400000pt;}
.xa4_c00399{left:551.333333pt;}
.xfb_c00399{left:553.600000pt;}
.x126_c00399{left:554.533333pt;}
.x90_c00399{left:556.400000pt;}
.xb1_c00399{left:558.400000pt;}
.xd7_c00399{left:560.400000pt;}
.xf6_c00399{left:563.066667pt;}
.x111_c00399{left:564.800000pt;}
.x104_c00399{left:566.266667pt;}
.xf1_c00399{left:567.466667pt;}
.x11d_c00399{left:568.800000pt;}
.x153_c00399{left:572.000000pt;}
.xbb_c00399{left:573.600000pt;}
.xc8_c00399{left:574.666667pt;}
.xaa_c00399{left:578.533333pt;}
.x149_c00399{left:579.733333pt;}
.xc3_c00399{left:580.666667pt;}
.x11e_c00399{left:582.266667pt;}
.xeb_c00399{left:583.333333pt;}
.xe7_c00399{left:584.266667pt;}
.x14d_c00399{left:585.600000pt;}
.xee_c00399{left:586.933333pt;}
.xf2_c00399{left:588.533333pt;}
.xa5_c00399{left:590.400000pt;}
.xbc_c00399{left:591.866667pt;}
.x91_c00399{left:593.866667pt;}
.x105_c00399{left:595.066667pt;}
.xb2_c00399{left:597.466667pt;}
.xfc_c00399{left:598.400000pt;}
.x99_c00399{left:600.400000pt;}
.xe1_c00399{left:601.866667pt;}
.xf3_c00399{left:603.866667pt;}
.xd8_c00399{left:604.933333pt;}
.xb6_c00399{left:607.200000pt;}
.xf7_c00399{left:608.533333pt;}
.xa0_c00399{left:609.733333pt;}
.xfd_c00399{left:612.800000pt;}
.xcd_c00399{left:613.733333pt;}
.x10a_c00399{left:615.333333pt;}
.x150_c00399{left:616.400000pt;}
.xc9_c00399{left:621.066667pt;}
.xe3_c00399{left:622.000000pt;}
.xb7_c00399{left:624.533333pt;}
.x116_c00399{left:625.866667pt;}
.xde_c00399{left:627.200000pt;}
.x9a_c00399{left:628.266667pt;}
.x14e_c00399{left:630.133333pt;}
.xec_c00399{left:631.333333pt;}
.xf4_c00399{left:632.400000pt;}
.x127_c00399{left:633.866667pt;}
.x106_c00399{left:635.066667pt;}
.x146_c00399{left:636.133333pt;}
.xdb_c00399{left:637.733333pt;}
.x119_c00399{left:638.666667pt;}
.xab_c00399{left:640.000000pt;}
.x92_c00399{left:641.866667pt;}
.xa1_c00399{left:644.666667pt;}
.x156_c00399{left:645.733333pt;}
.xbd_c00399{left:647.200000pt;}
.x101_c00399{left:649.600000pt;}
.x9b_c00399{left:651.600000pt;}
.xdf_c00399{left:652.533333pt;}
.xef_c00399{left:654.133333pt;}
.x112_c00399{left:657.200000pt;}
.xd9_c00399{left:659.066667pt;}
.x11a_c00399{left:660.800000pt;}
.xca_c00399{left:662.933333pt;}
.xc4_c00399{left:666.933333pt;}
.xb8_c00399{left:668.666667pt;}
.xfe_c00399{left:670.400000pt;}
.xac_c00399{left:671.333333pt;}
.x11f_c00399{left:672.533333pt;}
.xd2_c00399{left:674.000000pt;}
.x10b_c00399{left:677.066667pt;}
.x107_c00399{left:678.000000pt;}
.xb3_c00399{left:682.000000pt;}
.x10c_c00399{left:683.733333pt;}
.x93_c00399{left:686.000000pt;}
.x9c_c00399{left:688.400000pt;}
.xe2_c00399{left:691.466667pt;}
.xe4_c00399{left:692.400000pt;}
.xff_c00399{left:693.466667pt;}
.xe8_c00399{left:695.466667pt;}
.xa6_c00399{left:696.400000pt;}
.x124_c00399{left:697.866667pt;}
.xc0_c00399{left:698.800000pt;}
.x154_c00399{left:700.666667pt;}
.xc5_c00399{left:701.866667pt;}
.x117_c00399{left:702.933333pt;}
.xb9_c00399{left:704.533333pt;}
.xe5_c00399{left:706.533333pt;}
.x102_c00399{left:708.133333pt;}
.xd3_c00399{left:709.866667pt;}
.xcb_c00399{left:710.933333pt;}
.x118_c00399{left:712.533333pt;}
.xbe_c00399{left:714.133333pt;}
.x94_c00399{left:715.733333pt;}
.xa2_c00399{left:716.666667pt;}
.xc1_c00399{left:720.533333pt;}
.x11b_c00399{left:721.866667pt;}
.x129_c00399{left:724.133333pt;}
.xb4_c00399{left:725.600000pt;}
.xce_c00399{left:728.400000pt;}
.xcc_c00399{left:729.466667pt;}
.x147_c00399{left:730.533333pt;}
.x14a_c00399{left:731.466667pt;}
.xed_c00399{left:734.000000pt;}
.xad_c00399{left:735.066667pt;}
.x122_c00399{left:737.466667pt;}
.x108_c00399{left:738.400000pt;}
.xf8_c00399{left:740.666667pt;}
.xb5_c00399{left:741.600000pt;}
.x9d_c00399{left:742.800000pt;}
.xae_c00399{left:744.000000pt;}
.xe6_c00399{left:744.933333pt;}
.x10f_c00399{left:746.133333pt;}
.x103_c00399{left:747.466667pt;}
.x95_c00399{left:748.400000pt;}
.x100_c00399{left:752.933333pt;}
.xdc_c00399{left:753.866667pt;}
.xe0_c00399{left:754.933333pt;}
.xcf_c00399{left:756.266667pt;}
.xf9_c00399{left:757.333333pt;}
.x9e_c00399{left:761.066667pt;}
.x14f_c00399{left:762.133333pt;}
.x151_c00399{left:763.333333pt;}
.xc6_c00399{left:764.800000pt;}
.xdd_c00399{left:766.000000pt;}
.xa7_c00399{left:770.266667pt;}
.x128_c00399{left:771.466667pt;}
.x120_c00399{left:772.666667pt;}
}





/* 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_c00400 {
    display:none;
  }
  .loading-indicator_c00400.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00400 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_c00400 { 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_c00400" -> "#page-container .classname_c00400")
 */
.pf_c00400 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00400 { /* 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_c00400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00400 { /* 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_c00400 { /* 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_c00400 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00400 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00400 {overflow:visible;}
  }
}
.c_c00400 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00400 { /* 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_c00400:after { /* webkit #35443 */
  content: '';
}
.t_c00400:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00400 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 */
}
.__c00400 { /* 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_c00400 { /* info for Javascript */
  display:none;
}
.l_c00400 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00400 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00400 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00400: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_c00400 {
    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_c00400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00400.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_c00400 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00400;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.000000;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;}
.m93_c00400{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m36_c00400{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m106_c00400{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m37_c00400{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mae_c00400{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00400{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m109_c00400{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m62_c00400{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.meb_c00400{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m39_c00400{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.md5_c00400{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m73_c00400{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00400{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m40_c00400{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00400{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m108_c00400{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mba_c00400{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.md4_c00400{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m102_c00400{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00400{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00400{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m18_c00400{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00400{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m119_c00400{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.m42_c00400{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.mad_c00400{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00400{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mee_c00400{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m34_c00400{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mce_c00400{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00400{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md8_c00400{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00400{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00400{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00400{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m114_c00400{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00400{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m71_c00400{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00400{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.md0_c00400{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00400{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00400{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00400{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00400{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m38_c00400{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00400{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m60_c00400{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00400{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00400{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m15_c00400{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mea_c00400{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m96_c00400{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00400{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6_c00400{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00400{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m94_c00400{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.me0_c00400{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m68_c00400{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00400{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00400{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m79_c00400{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00400{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00400{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00400{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.me1_c00400{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m118_c00400{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00400{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m52_c00400{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m123_c00400{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m86_c00400{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00400{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00400{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.me2_c00400{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00400{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00400{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00400{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mac_c00400{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mda_c00400{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m89_c00400{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00400{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00400{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m12_c00400{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m107_c00400{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00400{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00400{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m80_c00400{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00400{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00400{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00400{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00400{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m115_c00400{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m51_c00400{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00400{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00400{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m64_c00400{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mca_c00400{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m54_c00400{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8_c00400{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00400{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m61_c00400{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md1_c00400{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00400{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m70_c00400{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.med_c00400{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00400{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00400{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m117_c00400{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00400{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m27_c00400{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00400{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00400{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00400{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m87_c00400{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00400{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md7_c00400{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mab_c00400{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m28_c00400{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m47_c00400{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m55_c00400{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m113_c00400{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m83_c00400{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md2_c00400{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00400{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m92_c00400{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m13_c00400{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00400{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m33_c00400{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m50_c00400{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00400{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mde_c00400{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m67_c00400{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00400{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m95_c00400{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00400{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m76_c00400{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m43_c00400{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m25_c00400{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m69_c00400{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m21_c00400{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00400{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00400{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00400{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00400{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00400{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00400{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m23_c00400{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00400{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00400{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00400{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m20_c00400{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m14_c00400{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m58_c00400{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m66_c00400{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m53_c00400{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m63_c00400{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m88_c00400{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00400{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00400{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00400{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00400{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00400{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00400{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00400{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00400{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m19_c00400{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m78_c00400{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00400{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md6_c00400{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m59_c00400{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00400{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.maf_c00400{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00400{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00400{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00400{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m22_c00400{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7_c00400{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me7_c00400{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00400{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00400{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m44_c00400{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me4_c00400{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m105_c00400{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00400{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00400{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m100_c00400{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m85_c00400{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m104_c00400{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m121_c00400{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00400{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me8_c00400{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m56_c00400{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md3_c00400{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00400{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00400{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me9_c00400{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00400{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m16_c00400{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m57_c00400{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m110_c00400{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m30_c00400{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m122_c00400{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m49_c00400{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00400{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m75_c00400{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m98_c00400{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00400{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m26_c00400{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m48_c00400{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m74_c00400{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m72_c00400{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m77_c00400{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00400{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00400{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md9_c00400{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00400{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00400{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m97_c00400{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00400{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00400{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9_c00400{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m90_c00400{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m120_c00400{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m31_c00400{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00400{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00400{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00400{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m46_c00400{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m81_c00400{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf_c00400{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m99_c00400{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.me_c00400{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m91_c00400{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00400{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma_c00400{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m84_c00400{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m10_c00400{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00400{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m32_c00400{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00400{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me6_c00400{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4_c00400{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m41_c00400{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11_c00400{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5_c00400{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00400{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m112_c00400{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m24_c00400{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00400{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00400{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3_c00400{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m45_c00400{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m2_c00400{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mff_c00400{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00400{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00400{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00400{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.maa_c00400{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00400{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.me3_c00400{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m116_c00400{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m35_c00400{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00400{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mec_c00400{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00400{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m29_c00400{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00400{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00400{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md_c00400{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m101_c00400{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m103_c00400{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m111_c00400{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00400{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me5_c00400{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00400{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00400{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.mef_c00400{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00400{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00400{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mc_c00400{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00400{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00400{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m65_c00400{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00400{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c00400{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00400{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00400{transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);}
.m82_c00400{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00400{transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00400{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c00400{transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00400{transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls0_c00400{letter-spacing:0.000000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{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__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00400{word-spacing:-9.285714px;}
.ws9_c00400{word-spacing:-8.294118px;}
.ws5_c00400{word-spacing:-7.951965px;}
.wsb_c00400{word-spacing:-7.352941px;}
.ws8_c00400{word-spacing:-3.473684px;}
.ws7_c00400{word-spacing:-0.779927px;}
.wsc_c00400{word-spacing:0.000000px;}
.ws3_c00400{word-spacing:0.888268px;}
.ws6_c00400{word-spacing:18.341232px;}
.ws4_c00400{word-spacing:25.166667px;}
.ws1_c00400{word-spacing:25.714286px;}
.ws0_c00400{word-spacing:35.833333px;}
.ws2_c00400{word-spacing:61.250000px;}
._0_c00400{width:74.166667px;}
._1_c00400{width:80.416667px;}
.fc0_c00400{color:transparent;}
.fs7_c00400{font-size:18.000000px;}
.fs6_c00400{font-size:30.000000px;}
.fs3_c00400{font-size:54.000000px;}
.fs2_c00400{font-size:60.000000px;}
.fs4_c00400{font-size:66.000000px;}
.fs5_c00400{font-size:72.000000px;}
.fs0_c00400{font-size:84.000000px;}
.fs1_c00400{font-size:108.000000px;}
.y0_c00400{bottom:0.000000px;}
.y37_c00400{bottom:184.050000px;}
.y6d_c00400{bottom:185.100000px;}
.y6c_c00400{bottom:200.250000px;}
.y36_c00400{bottom:202.800000px;}
.y6b_c00400{bottom:214.650000px;}
.y35_c00400{bottom:221.100000px;}
.y6a_c00400{bottom:229.350000px;}
.y69_c00400{bottom:242.100000px;}
.y33_c00400{bottom:245.100000px;}
.y68_c00400{bottom:258.300000px;}
.y32_c00400{bottom:259.200000px;}
.y34_c00400{bottom:259.950000px;}
.y67_c00400{bottom:273.000000px;}
.y31_c00400{bottom:275.700000px;}
.y66_c00400{bottom:287.400000px;}
.y30_c00400{bottom:294.900000px;}
.y65_c00400{bottom:302.100000px;}
.y2f_c00400{bottom:313.200000px;}
.y64_c00400{bottom:314.250000px;}
.y63_c00400{bottom:330.750000px;}
.y2e_c00400{bottom:331.200000px;}
.y62_c00400{bottom:345.900000px;}
.y2d_c00400{bottom:349.200000px;}
.y61_c00400{bottom:360.000000px;}
.y2c_c00400{bottom:371.550000px;}
.y60_c00400{bottom:374.400000px;}
.y5f_c00400{bottom:389.100000px;}
.y2b_c00400{bottom:389.400000px;}
.y5e_c00400{bottom:403.500000px;}
.y2a_c00400{bottom:407.100000px;}
.y5d_c00400{bottom:417.600000px;}
.y29_c00400{bottom:424.800000px;}
.y5c_c00400{bottom:431.700000px;}
.y5b_c00400{bottom:446.100000px;}
.y28_c00400{bottom:455.700000px;}
.y5a_c00400{bottom:460.800000px;}
.y27_c00400{bottom:474.450000px;}
.y26_c00400{bottom:492.750000px;}
.y59_c00400{bottom:500.100000px;}
.y25_c00400{bottom:510.450000px;}
.y58_c00400{bottom:522.300000px;}
.y24_c00400{bottom:531.000000px;}
.y57_c00400{bottom:549.000000px;}
.y23_c00400{bottom:550.500000px;}
.y56_c00400{bottom:558.000000px;}
.y22_c00400{bottom:568.500000px;}
.y55_c00400{bottom:578.100000px;}
.y21_c00400{bottom:586.500000px;}
.y20_c00400{bottom:604.500000px;}
.y54_c00400{bottom:611.850000px;}
.y1f_c00400{bottom:622.200000px;}
.y53_c00400{bottom:630.600000px;}
.y1e_c00400{bottom:640.200000px;}
.y52_c00400{bottom:648.600000px;}
.y1d_c00400{bottom:658.200000px;}
.y51_c00400{bottom:666.600000px;}
.y1c_c00400{bottom:675.900000px;}
.y50_c00400{bottom:684.600000px;}
.y1b_c00400{bottom:693.600000px;}
.y4f_c00400{bottom:702.300000px;}
.y1a_c00400{bottom:711.300000px;}
.y4e_c00400{bottom:722.100000px;}
.y19_c00400{bottom:729.600000px;}
.y4d_c00400{bottom:741.450000px;}
.y18_c00400{bottom:747.600000px;}
.y4c_c00400{bottom:760.200000px;}
.y17_c00400{bottom:765.600000px;}
.y4b_c00400{bottom:778.200000px;}
.y16_c00400{bottom:783.300000px;}
.y4a_c00400{bottom:796.200000px;}
.y15_c00400{bottom:801.600000px;}
.y49_c00400{bottom:814.200000px;}
.y14_c00400{bottom:819.300000px;}
.y48_c00400{bottom:832.200000px;}
.y13_c00400{bottom:837.000000px;}
.y47_c00400{bottom:850.200000px;}
.y12_c00400{bottom:855.000000px;}
.y46_c00400{bottom:868.200000px;}
.y11_c00400{bottom:873.000000px;}
.y45_c00400{bottom:886.200000px;}
.y10_c00400{bottom:895.050000px;}
.y44_c00400{bottom:903.900000px;}
.yf_c00400{bottom:909.450000px;}
.y43_c00400{bottom:922.200000px;}
.ye_c00400{bottom:923.850000px;}
.yd_c00400{bottom:939.000000px;}
.y42_c00400{bottom:940.200000px;}
.yc_c00400{bottom:953.700000px;}
.y41_c00400{bottom:958.200000px;}
.yb_c00400{bottom:966.150000px;}
.y40_c00400{bottom:975.900000px;}
.ya_c00400{bottom:983.850000px;}
.y3f_c00400{bottom:993.900000px;}
.y9_c00400{bottom:999.600000px;}
.y3e_c00400{bottom:1011.900000px;}
.y8_c00400{bottom:1020.150000px;}
.y3d_c00400{bottom:1029.900000px;}
.y7_c00400{bottom:1038.150000px;}
.y3c_c00400{bottom:1048.200000px;}
.y6_c00400{bottom:1056.150000px;}
.y3b_c00400{bottom:1066.200000px;}
.y5_c00400{bottom:1073.850000px;}
.y3a_c00400{bottom:1083.900000px;}
.y4_c00400{bottom:1093.200000px;}
.y39_c00400{bottom:1102.200000px;}
.y3_c00400{bottom:1114.500000px;}
.y38_c00400{bottom:1119.900000px;}
.y1_c00400{bottom:1144.050000px;}
.y2_c00400{bottom:1146.900000px;}
.h9_c00400{height:18.000000px;}
.h8_c00400{height:30.000000px;}
.h5_c00400{height:54.000000px;}
.h4_c00400{height:60.000000px;}
.h6_c00400{height:66.000000px;}
.h7_c00400{height:72.000000px;}
.h2_c00400{height:84.000000px;}
.h3_c00400{height:108.000000px;}
.h1_c00400{height:1268.250000px;}
.h0_c00400{height:1268.279937px;}
.w0_c00400{width:960.480010px;}
.w1_c00400{width:960.750000px;}
.x0_c00400{left:0.000000px;}
.xb_c00400{left:68.700000px;}
.x7d_c00400{left:70.200000px;}
.x86_c00400{left:71.250000px;}
.x2f_c00400{left:82.950000px;}
.x99_c00400{left:84.900000px;}
.x13_c00400{left:85.950000px;}
.x3_c00400{left:87.150000px;}
.x4f_c00400{left:88.200000px;}
.x88_c00400{left:89.400000px;}
.x3d_c00400{left:97.650000px;}
.x3f_c00400{left:99.450000px;}
.x60_c00400{left:104.850000px;}
.x50_c00400{left:108.300000px;}
.xc_c00400{left:113.700000px;}
.x30_c00400{left:115.050000px;}
.x87_c00400{left:116.250000px;}
.x67_c00400{left:117.300000px;}
.x81_c00400{left:118.800000px;}
.x45_c00400{left:120.150000px;}
.x5e_c00400{left:121.350000px;}
.x26_c00400{left:122.700000px;}
.x4_c00400{left:124.200000px;}
.x71_c00400{left:125.250000px;}
.x44_c00400{left:128.400000px;}
.x20_c00400{left:131.250000px;}
.x14_c00400{left:132.450000px;}
.x31_c00400{left:133.800000px;}
.x7a_c00400{left:135.000000px;}
.x1a_c00400{left:137.550000px;}
.x7c_c00400{left:138.750000px;}
.x27_c00400{left:140.700000px;}
.x8d_c00400{left:142.650000px;}
.x6c_c00400{left:144.600000px;}
.x76_c00400{left:146.700000px;}
.x21_c00400{left:148.950000px;}
.x40_c00400{left:151.350000px;}
.x89_c00400{left:152.700000px;}
.x73_c00400{left:154.050000px;}
.x54_c00400{left:155.850000px;}
.x46_c00400{left:158.100000px;}
.x9e_c00400{left:160.650000px;}
.x94_c00400{left:162.600000px;}
.x7e_c00400{left:164.850000px;}
.x48_c00400{left:167.100000px;}
.x5_c00400{left:168.900000px;}
.x41_c00400{left:170.400000px;}
.x4d_c00400{left:173.550000px;}
.x8f_c00400{left:175.200000px;}
.x28_c00400{left:178.200000px;}
.x59_c00400{left:179.250000px;}
.xd_c00400{left:180.600000px;}
.x84_c00400{left:182.550000px;}
.x42_c00400{left:184.050000px;}
.x35_c00400{left:185.100000px;}
.x32_c00400{left:187.800000px;}
.x55_c00400{left:190.350000px;}
.x36_c00400{left:192.300000px;}
.x9a_c00400{left:194.100000px;}
.x29_c00400{left:195.900000px;}
.x6d_c00400{left:197.100000px;}
.x37_c00400{left:199.500000px;}
.x15_c00400{left:201.150000px;}
.x77_c00400{left:202.950000px;}
.x5a_c00400{left:204.450000px;}
.x8a_c00400{left:209.250000px;}
.x6_c00400{left:212.100000px;}
.x6e_c00400{left:214.050000px;}
.x22_c00400{left:215.850000px;}
.x90_c00400{left:216.900000px;}
.x95_c00400{left:218.100000px;}
.x56_c00400{left:220.200000px;}
.xe_c00400{left:224.100000px;}
.x4e_c00400{left:227.850000px;}
.x38_c00400{left:229.050000px;}
.x7f_c00400{left:231.150000px;}
.x91_c00400{left:233.400000px;}
.x1b_c00400{left:236.250000px;}
.x85_c00400{left:238.650000px;}
.x33_c00400{left:239.700000px;}
.x9c_c00400{left:240.900000px;}
.x49_c00400{left:243.450000px;}
.x23_c00400{left:244.650000px;}
.x72_c00400{left:247.950000px;}
.x7_c00400{left:249.150000px;}
.x39_c00400{left:250.950000px;}
.x2a_c00400{left:252.450000px;}
.x6f_c00400{left:253.950000px;}
.x51_c00400{left:255.600000px;}
.x78_c00400{left:256.650000px;}
.x47_c00400{left:258.900000px;}
.x8b_c00400{left:261.150000px;}
.x98_c00400{left:263.550000px;}
.x8_c00400{left:265.050000px;}
.x63_c00400{left:267.150000px;}
.x5b_c00400{left:268.200000px;}
.x8e_c00400{left:271.950000px;}
.x69_c00400{left:273.000000px;}
.x82_c00400{left:277.200000px;}
.x70_c00400{left:278.400000px;}
.x97_c00400{left:280.200000px;}
.x4a_c00400{left:281.250000px;}
.x1c_c00400{left:285.600000px;}
.x57_c00400{left:287.850000px;}
.xf_c00400{left:290.400000px;}
.x34_c00400{left:291.600000px;}
.x52_c00400{left:295.200000px;}
.x9_c00400{left:297.150000px;}
.x2b_c00400{left:299.550000px;}
.x1d_c00400{left:302.850000px;}
.x80_c00400{left:304.200000px;}
.xa_c00400{left:306.450000px;}
.x24_c00400{left:309.150000px;}
.x16_c00400{left:310.950000px;}
.x83_c00400{left:312.450000px;}
.x1_c00400{left:313.500000px;}
.x1e_c00400{left:317.250000px;}
.x64_c00400{left:318.600000px;}
.x5c_c00400{left:320.400000px;}
.x10_c00400{left:322.050000px;}
.x5f_c00400{left:323.400000px;}
.x4b_c00400{left:324.450000px;}
.x2c_c00400{left:326.250000px;}
.x92_c00400{left:329.250000px;}
.x68_c00400{left:332.850000px;}
.x17_c00400{left:335.100000px;}
.x3a_c00400{left:337.050000px;}
.x65_c00400{left:338.400000px;}
.x74_c00400{left:340.500000px;}
.x9f_c00400{left:342.150000px;}
.x79_c00400{left:343.800000px;}
.x8c_c00400{left:347.250000px;}
.x9b_c00400{left:349.200000px;}
.x1f_c00400{left:350.400000px;}
.x18_c00400{left:352.050000px;}
.x93_c00400{left:353.700000px;}
.x5d_c00400{left:354.900000px;}
.x2d_c00400{left:356.850000px;}
.x61_c00400{left:359.100000px;}
.x58_c00400{left:360.900000px;}
.x6a_c00400{left:362.550000px;}
.x3e_c00400{left:364.050000px;}
.x3b_c00400{left:365.550000px;}
.x11_c00400{left:368.550000px;}
.x53_c00400{left:370.800000px;}
.x6b_c00400{left:373.650000px;}
.x96_c00400{left:375.450000px;}
.x4c_c00400{left:376.650000px;}
.x19_c00400{left:379.050000px;}
.x25_c00400{left:380.100000px;}
.x62_c00400{left:381.750000px;}
.x9d_c00400{left:382.800000px;}
.x7b_c00400{left:386.850000px;}
.x43_c00400{left:387.900000px;}
.x2e_c00400{left:391.050000px;}
.x3c_c00400{left:393.600000px;}
.x66_c00400{left:396.000000px;}
.x12_c00400{left:397.050000px;}
.x75_c00400{left:403.050000px;}
.x107_c00400{left:428.100000px;}
.x120_c00400{left:433.500000px;}
.x127_c00400{left:443.100000px;}
.xa0_c00400{left:444.300000px;}
.xcf_c00400{left:445.500000px;}
.x104_c00400{left:446.550000px;}
.x141_c00400{left:448.650000px;}
.xe8_c00400{left:459.450000px;}
.x12c_c00400{left:460.950000px;}
.xd5_c00400{left:462.300000px;}
.x12f_c00400{left:463.800000px;}
.xfb_c00400{left:465.750000px;}
.xbb_c00400{left:468.300000px;}
.x121_c00400{left:469.800000px;}
.x13a_c00400{left:471.000000px;}
.x136_c00400{left:472.200000px;}
.x129_c00400{left:473.400000px;}
.xa9_c00400{left:475.500000px;}
.xc8_c00400{left:479.250000px;}
.x10d_c00400{left:481.050000px;}
.xc3_c00400{left:482.550000px;}
.xbc_c00400{left:484.500000px;}
.xb4_c00400{left:486.000000px;}
.xf3_c00400{left:487.650000px;}
.x13b_c00400{left:489.300000px;}
.x101_c00400{left:491.550000px;}
.x108_c00400{left:494.700000px;}
.xef_c00400{left:496.800000px;}
.xf4_c00400{left:498.150000px;}
.xc9_c00400{left:499.350000px;}
.x110_c00400{left:501.450000px;}
.xb9_c00400{left:502.800000px;}
.xe2_c00400{left:504.300000px;}
.xb5_c00400{left:506.850000px;}
.xc4_c00400{left:508.800000px;}
.xa1_c00400{left:510.900000px;}
.x115_c00400{left:514.200000px;}
.xaf_c00400{left:515.250000px;}
.xd6_c00400{left:518.400000px;}
.x111_c00400{left:519.750000px;}
.xba_c00400{left:522.900000px;}
.x140_c00400{left:524.250000px;}
.xf0_c00400{left:525.600000px;}
.xbd_c00400{left:526.950000px;}
.xca_c00400{left:528.150000px;}
.x122_c00400{left:529.200000px;}
.xc5_c00400{left:532.500000px;}
.xbe_c00400{left:534.450000px;}
.x132_c00400{left:535.800000px;}
.xe3_c00400{left:537.450000px;}
.x135_c00400{left:538.800000px;}
.x102_c00400{left:540.150000px;}
.xf5_c00400{left:542.400000px;}
.xb0_c00400{left:544.350000px;}
.x105_c00400{left:546.000000px;}
.xd7_c00400{left:548.250000px;}
.xfc_c00400{left:549.600000px;}
.xa2_c00400{left:550.800000px;}
.x125_c00400{left:552.900000px;}
.xbf_c00400{left:553.950000px;}
.xed_c00400{left:556.050000px;}
.xaa_c00400{left:557.550000px;}
.xf1_c00400{left:560.100000px;}
.x10c_c00400{left:561.450000px;}
.x123_c00400{left:568.500000px;}
.xf6_c00400{left:569.850000px;}
.xc0_c00400{left:572.700000px;}
.xfa_c00400{left:573.900000px;}
.xfd_c00400{left:575.100000px;}
.xd0_c00400{left:577.200000px;}
.xcb_c00400{left:578.250000px;}
.x126_c00400{left:582.000000px;}
.xe4_c00400{left:583.200000px;}
.xdd_c00400{left:585.300000px;}
.xab_c00400{left:586.650000px;}
.xd1_c00400{left:588.000000px;}
.xc1_c00400{left:590.400000px;}
.x139_c00400{left:591.900000px;}
.xe9_c00400{left:593.400000px;}
.x133_c00400{left:595.200000px;}
.x11d_c00400{left:596.850000px;}
.xc6_c00400{left:599.850000px;}
.xa3_c00400{left:600.900000px;}
.xb1_c00400{left:605.550000px;}
.x116_c00400{left:606.750000px;}
.x11e_c00400{left:608.700000px;}
.x112_c00400{left:610.050000px;}
.xa4_c00400{left:611.700000px;}
.x10e_c00400{left:612.750000px;}
.x134_c00400{left:613.950000px;}
.x103_c00400{left:616.050000px;}
.x13e_c00400{left:618.900000px;}
.xac_c00400{left:621.150000px;}
.xde_c00400{left:622.800000px;}
.xd8_c00400{left:623.850000px;}
.x106_c00400{left:627.750000px;}
.xfe_c00400{left:629.850000px;}
.xf7_c00400{left:631.050000px;}
.x11f_c00400{left:633.600000px;}
.x13f_c00400{left:635.100000px;}
.xb6_c00400{left:636.450000px;}
.xea_c00400{left:638.700000px;}
.x117_c00400{left:639.900000px;}
.xad_c00400{left:643.500000px;}
.x10f_c00400{left:646.950000px;}
.x130_c00400{left:648.300000px;}
.xd2_c00400{left:650.250000px;}
.x119_c00400{left:652.650000px;}
.xcc_c00400{left:654.150000px;}
.xb7_c00400{left:655.500000px;}
.xa5_c00400{left:657.000000px;}
.x109_c00400{left:659.100000px;}
.x113_c00400{left:661.500000px;}
.xdf_c00400{left:662.700000px;}
.xb2_c00400{left:664.200000px;}
.xee_c00400{left:665.250000px;}
.x131_c00400{left:666.600000px;}
.x12d_c00400{left:667.800000px;}
.x11a_c00400{left:668.850000px;}
.xa6_c00400{left:669.900000px;}
.xff_c00400{left:672.300000px;}
.xe5_c00400{left:673.950000px;}
.xc2_c00400{left:678.000000px;}
.x12a_c00400{left:682.350000px;}
.xcd_c00400{left:685.500000px;}
.x13c_c00400{left:686.550000px;}
.xd9_c00400{left:687.900000px;}
.x114_c00400{left:689.250000px;}
.xf8_c00400{left:691.200000px;}
.xf2_c00400{left:692.550000px;}
.xe0_c00400{left:694.800000px;}
.x11b_c00400{left:695.850000px;}
.xda_c00400{left:696.900000px;}
.xeb_c00400{left:698.850000px;}
.xe6_c00400{left:700.650000px;}
.xa7_c00400{left:702.600000px;}
.x128_c00400{left:703.950000px;}
.x12e_c00400{left:705.300000px;}
.xc7_c00400{left:706.800000px;}
.xf9_c00400{left:708.900000px;}
.x12b_c00400{left:710.400000px;}
.xae_c00400{left:712.200000px;}
.xe1_c00400{left:714.300000px;}
.x124_c00400{left:716.100000px;}
.x11c_c00400{left:717.450000px;}
.x10a_c00400{left:719.550000px;}
.xdb_c00400{left:721.350000px;}
.xd3_c00400{left:724.050000px;}
.x13d_c00400{left:725.100000px;}
.xdc_c00400{left:729.600000px;}
.x100_c00400{left:730.950000px;}
.x137_c00400{left:733.650000px;}
.xce_c00400{left:735.600000px;}
.x2_c00400{left:737.550000px;}
.xd4_c00400{left:741.000000px;}
.xec_c00400{left:744.600000px;}
.x10b_c00400{left:747.300000px;}
.xe7_c00400{left:749.550000px;}
.xa8_c00400{left:753.000000px;}
.xb8_c00400{left:754.200000px;}
.x118_c00400{left:757.950000px;}
.x138_c00400{left:760.350000px;}
.xb3_c00400{left:761.400000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.wsa_c00400{word-spacing:-8.253968pt;}
.ws9_c00400{word-spacing:-7.372549pt;}
.ws5_c00400{word-spacing:-7.068413pt;}
.wsb_c00400{word-spacing:-6.535948pt;}
.ws8_c00400{word-spacing:-3.087719pt;}
.ws7_c00400{word-spacing:-0.693269pt;}
.wsc_c00400{word-spacing:0.000000pt;}
.ws3_c00400{word-spacing:0.789572pt;}
.ws6_c00400{word-spacing:16.303318pt;}
.ws4_c00400{word-spacing:22.370370pt;}
.ws1_c00400{word-spacing:22.857143pt;}
.ws0_c00400{word-spacing:31.851852pt;}
.ws2_c00400{word-spacing:54.444444pt;}
._0_c00400{width:65.925926pt;}
._1_c00400{width:71.481481pt;}
.fs7_c00400{font-size:16.000000pt;}
.fs6_c00400{font-size:26.666667pt;}
.fs3_c00400{font-size:48.000000pt;}
.fs2_c00400{font-size:53.333333pt;}
.fs4_c00400{font-size:58.666667pt;}
.fs5_c00400{font-size:64.000000pt;}
.fs0_c00400{font-size:74.666667pt;}
.fs1_c00400{font-size:96.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y37_c00400{bottom:163.600000pt;}
.y6d_c00400{bottom:164.533333pt;}
.y6c_c00400{bottom:178.000000pt;}
.y36_c00400{bottom:180.266667pt;}
.y6b_c00400{bottom:190.800000pt;}
.y35_c00400{bottom:196.533333pt;}
.y6a_c00400{bottom:203.866667pt;}
.y69_c00400{bottom:215.200000pt;}
.y33_c00400{bottom:217.866667pt;}
.y68_c00400{bottom:229.600000pt;}
.y32_c00400{bottom:230.400000pt;}
.y34_c00400{bottom:231.066667pt;}
.y67_c00400{bottom:242.666667pt;}
.y31_c00400{bottom:245.066667pt;}
.y66_c00400{bottom:255.466667pt;}
.y30_c00400{bottom:262.133333pt;}
.y65_c00400{bottom:268.533333pt;}
.y2f_c00400{bottom:278.400000pt;}
.y64_c00400{bottom:279.333333pt;}
.y63_c00400{bottom:294.000000pt;}
.y2e_c00400{bottom:294.400000pt;}
.y62_c00400{bottom:307.466667pt;}
.y2d_c00400{bottom:310.400000pt;}
.y61_c00400{bottom:320.000000pt;}
.y2c_c00400{bottom:330.266667pt;}
.y60_c00400{bottom:332.800000pt;}
.y5f_c00400{bottom:345.866667pt;}
.y2b_c00400{bottom:346.133333pt;}
.y5e_c00400{bottom:358.666667pt;}
.y2a_c00400{bottom:361.866667pt;}
.y5d_c00400{bottom:371.200000pt;}
.y29_c00400{bottom:377.600000pt;}
.y5c_c00400{bottom:383.733333pt;}
.y5b_c00400{bottom:396.533333pt;}
.y28_c00400{bottom:405.066667pt;}
.y5a_c00400{bottom:409.600000pt;}
.y27_c00400{bottom:421.733333pt;}
.y26_c00400{bottom:438.000000pt;}
.y59_c00400{bottom:444.533333pt;}
.y25_c00400{bottom:453.733333pt;}
.y58_c00400{bottom:464.266667pt;}
.y24_c00400{bottom:472.000000pt;}
.y57_c00400{bottom:488.000000pt;}
.y23_c00400{bottom:489.333333pt;}
.y56_c00400{bottom:496.000000pt;}
.y22_c00400{bottom:505.333333pt;}
.y55_c00400{bottom:513.866667pt;}
.y21_c00400{bottom:521.333333pt;}
.y20_c00400{bottom:537.333333pt;}
.y54_c00400{bottom:543.866667pt;}
.y1f_c00400{bottom:553.066667pt;}
.y53_c00400{bottom:560.533333pt;}
.y1e_c00400{bottom:569.066667pt;}
.y52_c00400{bottom:576.533333pt;}
.y1d_c00400{bottom:585.066667pt;}
.y51_c00400{bottom:592.533333pt;}
.y1c_c00400{bottom:600.800000pt;}
.y50_c00400{bottom:608.533333pt;}
.y1b_c00400{bottom:616.533333pt;}
.y4f_c00400{bottom:624.266667pt;}
.y1a_c00400{bottom:632.266667pt;}
.y4e_c00400{bottom:641.866667pt;}
.y19_c00400{bottom:648.533333pt;}
.y4d_c00400{bottom:659.066667pt;}
.y18_c00400{bottom:664.533333pt;}
.y4c_c00400{bottom:675.733333pt;}
.y17_c00400{bottom:680.533333pt;}
.y4b_c00400{bottom:691.733333pt;}
.y16_c00400{bottom:696.266667pt;}
.y4a_c00400{bottom:707.733333pt;}
.y15_c00400{bottom:712.533333pt;}
.y49_c00400{bottom:723.733333pt;}
.y14_c00400{bottom:728.266667pt;}
.y48_c00400{bottom:739.733333pt;}
.y13_c00400{bottom:744.000000pt;}
.y47_c00400{bottom:755.733333pt;}
.y12_c00400{bottom:760.000000pt;}
.y46_c00400{bottom:771.733333pt;}
.y11_c00400{bottom:776.000000pt;}
.y45_c00400{bottom:787.733333pt;}
.y10_c00400{bottom:795.600000pt;}
.y44_c00400{bottom:803.466667pt;}
.yf_c00400{bottom:808.400000pt;}
.y43_c00400{bottom:819.733333pt;}
.ye_c00400{bottom:821.200000pt;}
.yd_c00400{bottom:834.666667pt;}
.y42_c00400{bottom:835.733333pt;}
.yc_c00400{bottom:847.733333pt;}
.y41_c00400{bottom:851.733333pt;}
.yb_c00400{bottom:858.800000pt;}
.y40_c00400{bottom:867.466667pt;}
.ya_c00400{bottom:874.533333pt;}
.y3f_c00400{bottom:883.466667pt;}
.y9_c00400{bottom:888.533333pt;}
.y3e_c00400{bottom:899.466667pt;}
.y8_c00400{bottom:906.800000pt;}
.y3d_c00400{bottom:915.466667pt;}
.y7_c00400{bottom:922.800000pt;}
.y3c_c00400{bottom:931.733333pt;}
.y6_c00400{bottom:938.800000pt;}
.y3b_c00400{bottom:947.733333pt;}
.y5_c00400{bottom:954.533333pt;}
.y3a_c00400{bottom:963.466667pt;}
.y4_c00400{bottom:971.733333pt;}
.y39_c00400{bottom:979.733333pt;}
.y3_c00400{bottom:990.666667pt;}
.y38_c00400{bottom:995.466667pt;}
.y1_c00400{bottom:1016.933333pt;}
.y2_c00400{bottom:1019.466667pt;}
.h9_c00400{height:16.000000pt;}
.h8_c00400{height:26.666667pt;}
.h5_c00400{height:48.000000pt;}
.h4_c00400{height:53.333333pt;}
.h6_c00400{height:58.666667pt;}
.h7_c00400{height:64.000000pt;}
.h2_c00400{height:74.666667pt;}
.h3_c00400{height:96.000000pt;}
.h1_c00400{height:1127.333333pt;}
.h0_c00400{height:1127.359944pt;}
.w0_c00400{width:853.760009pt;}
.w1_c00400{width:854.000000pt;}
.x0_c00400{left:0.000000pt;}
.xb_c00400{left:61.066667pt;}
.x7d_c00400{left:62.400000pt;}
.x86_c00400{left:63.333333pt;}
.x2f_c00400{left:73.733333pt;}
.x99_c00400{left:75.466667pt;}
.x13_c00400{left:76.400000pt;}
.x3_c00400{left:77.466667pt;}
.x4f_c00400{left:78.400000pt;}
.x88_c00400{left:79.466667pt;}
.x3d_c00400{left:86.800000pt;}
.x3f_c00400{left:88.400000pt;}
.x60_c00400{left:93.200000pt;}
.x50_c00400{left:96.266667pt;}
.xc_c00400{left:101.066667pt;}
.x30_c00400{left:102.266667pt;}
.x87_c00400{left:103.333333pt;}
.x67_c00400{left:104.266667pt;}
.x81_c00400{left:105.600000pt;}
.x45_c00400{left:106.800000pt;}
.x5e_c00400{left:107.866667pt;}
.x26_c00400{left:109.066667pt;}
.x4_c00400{left:110.400000pt;}
.x71_c00400{left:111.333333pt;}
.x44_c00400{left:114.133333pt;}
.x20_c00400{left:116.666667pt;}
.x14_c00400{left:117.733333pt;}
.x31_c00400{left:118.933333pt;}
.x7a_c00400{left:120.000000pt;}
.x1a_c00400{left:122.266667pt;}
.x7c_c00400{left:123.333333pt;}
.x27_c00400{left:125.066667pt;}
.x8d_c00400{left:126.800000pt;}
.x6c_c00400{left:128.533333pt;}
.x76_c00400{left:130.400000pt;}
.x21_c00400{left:132.400000pt;}
.x40_c00400{left:134.533333pt;}
.x89_c00400{left:135.733333pt;}
.x73_c00400{left:136.933333pt;}
.x54_c00400{left:138.533333pt;}
.x46_c00400{left:140.533333pt;}
.x9e_c00400{left:142.800000pt;}
.x94_c00400{left:144.533333pt;}
.x7e_c00400{left:146.533333pt;}
.x48_c00400{left:148.533333pt;}
.x5_c00400{left:150.133333pt;}
.x41_c00400{left:151.466667pt;}
.x4d_c00400{left:154.266667pt;}
.x8f_c00400{left:155.733333pt;}
.x28_c00400{left:158.400000pt;}
.x59_c00400{left:159.333333pt;}
.xd_c00400{left:160.533333pt;}
.x84_c00400{left:162.266667pt;}
.x42_c00400{left:163.600000pt;}
.x35_c00400{left:164.533333pt;}
.x32_c00400{left:166.933333pt;}
.x55_c00400{left:169.200000pt;}
.x36_c00400{left:170.933333pt;}
.x9a_c00400{left:172.533333pt;}
.x29_c00400{left:174.133333pt;}
.x6d_c00400{left:175.200000pt;}
.x37_c00400{left:177.333333pt;}
.x15_c00400{left:178.800000pt;}
.x77_c00400{left:180.400000pt;}
.x5a_c00400{left:181.733333pt;}
.x8a_c00400{left:186.000000pt;}
.x6_c00400{left:188.533333pt;}
.x6e_c00400{left:190.266667pt;}
.x22_c00400{left:191.866667pt;}
.x90_c00400{left:192.800000pt;}
.x95_c00400{left:193.866667pt;}
.x56_c00400{left:195.733333pt;}
.xe_c00400{left:199.200000pt;}
.x4e_c00400{left:202.533333pt;}
.x38_c00400{left:203.600000pt;}
.x7f_c00400{left:205.466667pt;}
.x91_c00400{left:207.466667pt;}
.x1b_c00400{left:210.000000pt;}
.x85_c00400{left:212.133333pt;}
.x33_c00400{left:213.066667pt;}
.x9c_c00400{left:214.133333pt;}
.x49_c00400{left:216.400000pt;}
.x23_c00400{left:217.466667pt;}
.x72_c00400{left:220.400000pt;}
.x7_c00400{left:221.466667pt;}
.x39_c00400{left:223.066667pt;}
.x2a_c00400{left:224.400000pt;}
.x6f_c00400{left:225.733333pt;}
.x51_c00400{left:227.200000pt;}
.x78_c00400{left:228.133333pt;}
.x47_c00400{left:230.133333pt;}
.x8b_c00400{left:232.133333pt;}
.x98_c00400{left:234.266667pt;}
.x8_c00400{left:235.600000pt;}
.x63_c00400{left:237.466667pt;}
.x5b_c00400{left:238.400000pt;}
.x8e_c00400{left:241.733333pt;}
.x69_c00400{left:242.666667pt;}
.x82_c00400{left:246.400000pt;}
.x70_c00400{left:247.466667pt;}
.x97_c00400{left:249.066667pt;}
.x4a_c00400{left:250.000000pt;}
.x1c_c00400{left:253.866667pt;}
.x57_c00400{left:255.866667pt;}
.xf_c00400{left:258.133333pt;}
.x34_c00400{left:259.200000pt;}
.x52_c00400{left:262.400000pt;}
.x9_c00400{left:264.133333pt;}
.x2b_c00400{left:266.266667pt;}
.x1d_c00400{left:269.200000pt;}
.x80_c00400{left:270.400000pt;}
.xa_c00400{left:272.400000pt;}
.x24_c00400{left:274.800000pt;}
.x16_c00400{left:276.400000pt;}
.x83_c00400{left:277.733333pt;}
.x1_c00400{left:278.666667pt;}
.x1e_c00400{left:282.000000pt;}
.x64_c00400{left:283.200000pt;}
.x5c_c00400{left:284.800000pt;}
.x10_c00400{left:286.266667pt;}
.x5f_c00400{left:287.466667pt;}
.x4b_c00400{left:288.400000pt;}
.x2c_c00400{left:290.000000pt;}
.x92_c00400{left:292.666667pt;}
.x68_c00400{left:295.866667pt;}
.x17_c00400{left:297.866667pt;}
.x3a_c00400{left:299.600000pt;}
.x65_c00400{left:300.800000pt;}
.x74_c00400{left:302.666667pt;}
.x9f_c00400{left:304.133333pt;}
.x79_c00400{left:305.600000pt;}
.x8c_c00400{left:308.666667pt;}
.x9b_c00400{left:310.400000pt;}
.x1f_c00400{left:311.466667pt;}
.x18_c00400{left:312.933333pt;}
.x93_c00400{left:314.400000pt;}
.x5d_c00400{left:315.466667pt;}
.x2d_c00400{left:317.200000pt;}
.x61_c00400{left:319.200000pt;}
.x58_c00400{left:320.800000pt;}
.x6a_c00400{left:322.266667pt;}
.x3e_c00400{left:323.600000pt;}
.x3b_c00400{left:324.933333pt;}
.x11_c00400{left:327.600000pt;}
.x53_c00400{left:329.600000pt;}
.x6b_c00400{left:332.133333pt;}
.x96_c00400{left:333.733333pt;}
.x4c_c00400{left:334.800000pt;}
.x19_c00400{left:336.933333pt;}
.x25_c00400{left:337.866667pt;}
.x62_c00400{left:339.333333pt;}
.x9d_c00400{left:340.266667pt;}
.x7b_c00400{left:343.866667pt;}
.x43_c00400{left:344.800000pt;}
.x2e_c00400{left:347.600000pt;}
.x3c_c00400{left:349.866667pt;}
.x66_c00400{left:352.000000pt;}
.x12_c00400{left:352.933333pt;}
.x75_c00400{left:358.266667pt;}
.x107_c00400{left:380.533333pt;}
.x120_c00400{left:385.333333pt;}
.x127_c00400{left:393.866667pt;}
.xa0_c00400{left:394.933333pt;}
.xcf_c00400{left:396.000000pt;}
.x104_c00400{left:396.933333pt;}
.x141_c00400{left:398.800000pt;}
.xe8_c00400{left:408.400000pt;}
.x12c_c00400{left:409.733333pt;}
.xd5_c00400{left:410.933333pt;}
.x12f_c00400{left:412.266667pt;}
.xfb_c00400{left:414.000000pt;}
.xbb_c00400{left:416.266667pt;}
.x121_c00400{left:417.600000pt;}
.x13a_c00400{left:418.666667pt;}
.x136_c00400{left:419.733333pt;}
.x129_c00400{left:420.800000pt;}
.xa9_c00400{left:422.666667pt;}
.xc8_c00400{left:426.000000pt;}
.x10d_c00400{left:427.600000pt;}
.xc3_c00400{left:428.933333pt;}
.xbc_c00400{left:430.666667pt;}
.xb4_c00400{left:432.000000pt;}
.xf3_c00400{left:433.466667pt;}
.x13b_c00400{left:434.933333pt;}
.x101_c00400{left:436.933333pt;}
.x108_c00400{left:439.733333pt;}
.xef_c00400{left:441.600000pt;}
.xf4_c00400{left:442.800000pt;}
.xc9_c00400{left:443.866667pt;}
.x110_c00400{left:445.733333pt;}
.xb9_c00400{left:446.933333pt;}
.xe2_c00400{left:448.266667pt;}
.xb5_c00400{left:450.533333pt;}
.xc4_c00400{left:452.266667pt;}
.xa1_c00400{left:454.133333pt;}
.x115_c00400{left:457.066667pt;}
.xaf_c00400{left:458.000000pt;}
.xd6_c00400{left:460.800000pt;}
.x111_c00400{left:462.000000pt;}
.xba_c00400{left:464.800000pt;}
.x140_c00400{left:466.000000pt;}
.xf0_c00400{left:467.200000pt;}
.xbd_c00400{left:468.400000pt;}
.xca_c00400{left:469.466667pt;}
.x122_c00400{left:470.400000pt;}
.xc5_c00400{left:473.333333pt;}
.xbe_c00400{left:475.066667pt;}
.x132_c00400{left:476.266667pt;}
.xe3_c00400{left:477.733333pt;}
.x135_c00400{left:478.933333pt;}
.x102_c00400{left:480.133333pt;}
.xf5_c00400{left:482.133333pt;}
.xb0_c00400{left:483.866667pt;}
.x105_c00400{left:485.333333pt;}
.xd7_c00400{left:487.333333pt;}
.xfc_c00400{left:488.533333pt;}
.xa2_c00400{left:489.600000pt;}
.x125_c00400{left:491.466667pt;}
.xbf_c00400{left:492.400000pt;}
.xed_c00400{left:494.266667pt;}
.xaa_c00400{left:495.600000pt;}
.xf1_c00400{left:497.866667pt;}
.x10c_c00400{left:499.066667pt;}
.x123_c00400{left:505.333333pt;}
.xf6_c00400{left:506.533333pt;}
.xc0_c00400{left:509.066667pt;}
.xfa_c00400{left:510.133333pt;}
.xfd_c00400{left:511.200000pt;}
.xd0_c00400{left:513.066667pt;}
.xcb_c00400{left:514.000000pt;}
.x126_c00400{left:517.333333pt;}
.xe4_c00400{left:518.400000pt;}
.xdd_c00400{left:520.266667pt;}
.xab_c00400{left:521.466667pt;}
.xd1_c00400{left:522.666667pt;}
.xc1_c00400{left:524.800000pt;}
.x139_c00400{left:526.133333pt;}
.xe9_c00400{left:527.466667pt;}
.x133_c00400{left:529.066667pt;}
.x11d_c00400{left:530.533333pt;}
.xc6_c00400{left:533.200000pt;}
.xa3_c00400{left:534.133333pt;}
.xb1_c00400{left:538.266667pt;}
.x116_c00400{left:539.333333pt;}
.x11e_c00400{left:541.066667pt;}
.x112_c00400{left:542.266667pt;}
.xa4_c00400{left:543.733333pt;}
.x10e_c00400{left:544.666667pt;}
.x134_c00400{left:545.733333pt;}
.x103_c00400{left:547.600000pt;}
.x13e_c00400{left:550.133333pt;}
.xac_c00400{left:552.133333pt;}
.xde_c00400{left:553.600000pt;}
.xd8_c00400{left:554.533333pt;}
.x106_c00400{left:558.000000pt;}
.xfe_c00400{left:559.866667pt;}
.xf7_c00400{left:560.933333pt;}
.x11f_c00400{left:563.200000pt;}
.x13f_c00400{left:564.533333pt;}
.xb6_c00400{left:565.733333pt;}
.xea_c00400{left:567.733333pt;}
.x117_c00400{left:568.800000pt;}
.xad_c00400{left:572.000000pt;}
.x10f_c00400{left:575.066667pt;}
.x130_c00400{left:576.266667pt;}
.xd2_c00400{left:578.000000pt;}
.x119_c00400{left:580.133333pt;}
.xcc_c00400{left:581.466667pt;}
.xb7_c00400{left:582.666667pt;}
.xa5_c00400{left:584.000000pt;}
.x109_c00400{left:585.866667pt;}
.x113_c00400{left:588.000000pt;}
.xdf_c00400{left:589.066667pt;}
.xb2_c00400{left:590.400000pt;}
.xee_c00400{left:591.333333pt;}
.x131_c00400{left:592.533333pt;}
.x12d_c00400{left:593.600000pt;}
.x11a_c00400{left:594.533333pt;}
.xa6_c00400{left:595.466667pt;}
.xff_c00400{left:597.600000pt;}
.xe5_c00400{left:599.066667pt;}
.xc2_c00400{left:602.666667pt;}
.x12a_c00400{left:606.533333pt;}
.xcd_c00400{left:609.333333pt;}
.x13c_c00400{left:610.266667pt;}
.xd9_c00400{left:611.466667pt;}
.x114_c00400{left:612.666667pt;}
.xf8_c00400{left:614.400000pt;}
.xf2_c00400{left:615.600000pt;}
.xe0_c00400{left:617.600000pt;}
.x11b_c00400{left:618.533333pt;}
.xda_c00400{left:619.466667pt;}
.xeb_c00400{left:621.200000pt;}
.xe6_c00400{left:622.800000pt;}
.xa7_c00400{left:624.533333pt;}
.x128_c00400{left:625.733333pt;}
.x12e_c00400{left:626.933333pt;}
.xc7_c00400{left:628.266667pt;}
.xf9_c00400{left:630.133333pt;}
.x12b_c00400{left:631.466667pt;}
.xae_c00400{left:633.066667pt;}
.xe1_c00400{left:634.933333pt;}
.x124_c00400{left:636.533333pt;}
.x11c_c00400{left:637.733333pt;}
.x10a_c00400{left:639.600000pt;}
.xdb_c00400{left:641.200000pt;}
.xd3_c00400{left:643.600000pt;}
.x13d_c00400{left:644.533333pt;}
.xdc_c00400{left:648.533333pt;}
.x100_c00400{left:649.733333pt;}
.x137_c00400{left:652.133333pt;}
.xce_c00400{left:653.866667pt;}
.x2_c00400{left:655.600000pt;}
.xd4_c00400{left:658.666667pt;}
.xec_c00400{left:661.866667pt;}
.x10b_c00400{left:664.266667pt;}
.xe7_c00400{left:666.266667pt;}
.xa8_c00400{left:669.333333pt;}
.xb8_c00400{left:670.400000pt;}
.x118_c00400{left:673.733333pt;}
.x138_c00400{left:675.866667pt;}
.xb3_c00400{left:676.800000pt;}
}





/* 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_c00401 {
    display:none;
  }
  .loading-indicator_c00401.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00401 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_c00401 { 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_c00401" -> "#page-container .classname_c00401")
 */
.pf_c00401 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00401 { /* 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_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00401 { /* 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_c00401 { /* 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_c00401 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00401 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00401 {overflow:visible;}
  }
}
.c_c00401 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00401 { /* 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_c00401:after { /* webkit #35443 */
  content: '';
}
.t_c00401:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00401 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 */
}
.__c00401 { /* 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_c00401 { /* info for Javascript */
  display:none;
}
.l_c00401 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00401 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00401 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00401: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_c00401 {
    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_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00401.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_c00401 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00401{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00401;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.000000;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;}
.m100_c00401{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00401{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00401{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m25_c00401{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00401{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00401{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m42_c00401{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.meb_c00401{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00401{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00401{transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);}
.m59_c00401{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00401{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me4_c00401{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m54_c00401{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00401{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.maa_c00401{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m52_c00401{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00401{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00401{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00401{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me6_c00401{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00401{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.md9_c00401{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mc_c00401{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.med_c00401{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m90_c00401{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m26_c00401{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.md2_c00401{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00401{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mef_c00401{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00401{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00401{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me1_c00401{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m82_c00401{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00401{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m71_c00401{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00401{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00401{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m104_c00401{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00401{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00401{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00401{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00401{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m22_c00401{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00401{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00401{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00401{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m55_c00401{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00401{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mad_c00401{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m94_c00401{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m63_c00401{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00401{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m72_c00401{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m48_c00401{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m34_c00401{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md_c00401{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mda_c00401{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00401{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m61_c00401{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00401{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00401{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m75_c00401{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m27_c00401{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.maf_c00401{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.me5_c00401{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mff_c00401{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m11_c00401{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m103_c00401{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m13_c00401{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m105_c00401{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m64_c00401{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m24_c00401{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00401{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m101_c00401{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00401{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00401{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00401{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m79_c00401{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf_c00401{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00401{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m74_c00401{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00401{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00401{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00401{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m70_c00401{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m76_c00401{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m57_c00401{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md3_c00401{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00401{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00401{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00401{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m81_c00401{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00401{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m78_c00401{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mec_c00401{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00401{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00401{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mee_c00401{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m51_c00401{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00401{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m69_c00401{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m8_c00401{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m106_c00401{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00401{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m67_c00401{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m93_c00401{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00401{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00401{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m53_c00401{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00401{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mde_c00401{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00401{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00401{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00401{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00401{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00401{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb_c00401{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m88_c00401{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m49_c00401{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00401{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00401{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00401{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m46_c00401{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m41_c00401{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00401{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00401{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m65_c00401{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m77_c00401{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m43_c00401{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00401{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m40_c00401{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m14_c00401{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md4_c00401{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md0_c00401{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00401{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m31_c00401{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00401{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m68_c00401{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00401{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m56_c00401{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00401{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m73_c00401{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00401{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.me3_c00401{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mac_c00401{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m17_c00401{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m58_c00401{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00401{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m97_c00401{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m99_c00401{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4_c00401{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00401{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md1_c00401{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mae_c00401{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m35_c00401{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00401{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m19_c00401{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m37_c00401{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md6_c00401{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00401{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00401{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00401{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m84_c00401{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m44_c00401{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00401{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m45_c00401{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00401{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00401{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9_c00401{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m66_c00401{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m47_c00401{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m39_c00401{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00401{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m98_c00401{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00401{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00401{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m20_c00401{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mea_c00401{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m107_c00401{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mba_c00401{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m12_c00401{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00401{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m38_c00401{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00401{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m60_c00401{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m102_c00401{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00401{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m89_c00401{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m87_c00401{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m92_c00401{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00401{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6_c00401{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00401{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10_c00401{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m95_c00401{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m21_c00401{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00401{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00401{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00401{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m91_c00401{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m50_c00401{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m33_c00401{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m18_c00401{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00401{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m80_c00401{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m30_c00401{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00401{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00401{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m36_c00401{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mab_c00401{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00401{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m23_c00401{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me7_c00401{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00401{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mce_c00401{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m32_c00401{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00401{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00401{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m28_c00401{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00401{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m83_c00401{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00401{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m96_c00401{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00401{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00401{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m62_c00401{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00401{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00401{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00401{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.md8_c00401{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00401{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.md5_c00401{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00401{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.me8_c00401{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00401{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00401{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00401{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me_c00401{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me9_c00401{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00401{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.md7_c00401{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.me2_c00401{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00401{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00401{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.me0_c00401{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00401{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00401{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m86_c00401{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mca_c00401{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m85_c00401{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00401{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00401{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m5_c00401{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m16_c00401{transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00401{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00401{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m15_c00401{transform:matrix(0.428750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428750,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);}
.m29_c00401{transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00401{transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls0_c00401{letter-spacing:0.000000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{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__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00401{word-spacing:-17.587786px;}
.ws9_c00401{word-spacing:-17.056769px;}
.ws0_c00401{word-spacing:-10.868390px;}
.ws5_c00401{word-spacing:-8.960193px;}
.ws1_c00401{word-spacing:-7.951965px;}
.ws4_c00401{word-spacing:-5.588235px;}
.ws3_c00401{word-spacing:-1.500000px;}
.wsa_c00401{word-spacing:0.000000px;}
.ws2_c00401{word-spacing:3.541779px;}
.ws7_c00401{word-spacing:9.000000px;}
.ws8_c00401{word-spacing:15.114650px;}
._0_c00401{width:23.661575px;}
.fc0_c00401{color:transparent;}
.fs4_c00401{font-size:30.000000px;}
.fs5_c00401{font-size:54.000000px;}
.fs2_c00401{font-size:60.000000px;}
.fs3_c00401{font-size:66.000000px;}
.fs0_c00401{font-size:72.000000px;}
.fs1_c00401{font-size:84.000000px;}
.y0_c00401{bottom:0.000000px;}
.y66_c00401{bottom:183.900000px;}
.y33_c00401{bottom:185.100000px;}
.y65_c00401{bottom:202.650000px;}
.y32_c00401{bottom:202.950000px;}
.y31_c00401{bottom:220.650000px;}
.y64_c00401{bottom:220.950000px;}
.y63_c00401{bottom:238.950000px;}
.y30_c00401{bottom:243.000000px;}
.y62_c00401{bottom:256.650000px;}
.y2f_c00401{bottom:261.000000px;}
.y61_c00401{bottom:274.650000px;}
.y2e_c00401{bottom:282.600000px;}
.y60_c00401{bottom:292.950000px;}
.y2d_c00401{bottom:305.250000px;}
.y5f_c00401{bottom:310.950000px;}
.y2c_c00401{bottom:322.950000px;}
.y5e_c00401{bottom:328.650000px;}
.y2b_c00401{bottom:340.950000px;}
.y5d_c00401{bottom:346.500000px;}
.y2a_c00401{bottom:358.950000px;}
.y5c_c00401{bottom:364.200000px;}
.y29_c00401{bottom:377.250000px;}
.y5b_c00401{bottom:381.900000px;}
.y28_c00401{bottom:395.250000px;}
.y5a_c00401{bottom:399.900000px;}
.y27_c00401{bottom:418.200000px;}
.y59_c00401{bottom:419.400000px;}
.y58_c00401{bottom:434.550000px;}
.y26_c00401{bottom:436.500000px;}
.y25_c00401{bottom:454.500000px;}
.y57_c00401{bottom:455.100000px;}
.y24_c00401{bottom:472.800000px;}
.y56_c00401{bottom:473.100000px;}
.y23_c00401{bottom:491.100000px;}
.y55_c00401{bottom:495.750000px;}
.y22_c00401{bottom:509.100000px;}
.y54_c00401{bottom:514.050000px;}
.y21_c00401{bottom:527.100000px;}
.y53_c00401{bottom:532.050000px;}
.y20_c00401{bottom:545.400000px;}
.y52_c00401{bottom:549.300000px;}
.y1f_c00401{bottom:563.100000px;}
.y51_c00401{bottom:567.300000px;}
.y1e_c00401{bottom:581.100000px;}
.y50_c00401{bottom:585.300000px;}
.y1d_c00401{bottom:601.950000px;}
.y4f_c00401{bottom:603.000000px;}
.y1c_c00401{bottom:622.350000px;}
.y4e_c00401{bottom:625.350000px;}
.y1b_c00401{bottom:642.900000px;}
.y4d_c00401{bottom:650.850000px;}
.y1a_c00401{bottom:665.700000px;}
.y4c_c00401{bottom:673.500000px;}
.y19_c00401{bottom:683.700000px;}
.y4b_c00401{bottom:691.800000px;}
.y18_c00401{bottom:702.000000px;}
.y4a_c00401{bottom:709.800000px;}
.y17_c00401{bottom:720.000000px;}
.y49_c00401{bottom:727.500000px;}
.y16_c00401{bottom:741.900000px;}
.y48_c00401{bottom:745.500000px;}
.y15_c00401{bottom:760.650000px;}
.y47_c00401{bottom:763.500000px;}
.y14_c00401{bottom:778.650000px;}
.y46_c00401{bottom:781.200000px;}
.y13_c00401{bottom:796.650000px;}
.y45_c00401{bottom:799.200000px;}
.y44_c00401{bottom:817.200000px;}
.y12_c00401{bottom:819.000000px;}
.y43_c00401{bottom:838.800000px;}
.y11_c00401{bottom:841.350000px;}
.y42_c00401{bottom:856.800000px;}
.y10_c00401{bottom:859.650000px;}
.y41_c00401{bottom:879.450000px;}
.yf_c00401{bottom:883.050000px;}
.ye_c00401{bottom:891.000000px;}
.y40_c00401{bottom:897.750000px;}
.yd_c00401{bottom:900.000000px;}
.yc_c00401{bottom:912.900000px;}
.y3f_c00401{bottom:915.750000px;}
.yb_c00401{bottom:921.600000px;}
.y3e_c00401{bottom:933.750000px;}
.ya_c00401{bottom:951.450000px;}
.y3d_c00401{bottom:951.750000px;}
.y3c_c00401{bottom:969.450000px;}
.y9_c00401{bottom:973.800000px;}
.y3b_c00401{bottom:987.450000px;}
.y8_c00401{bottom:996.150000px;}
.y3a_c00401{bottom:1005.450000px;}
.y7_c00401{bottom:1019.550000px;}
.y39_c00401{bottom:1023.450000px;}
.y38_c00401{bottom:1041.450000px;}
.y6_c00401{bottom:1054.500000px;}
.y37_c00401{bottom:1059.750000px;}
.y36_c00401{bottom:1077.450000px;}
.y5_c00401{bottom:1080.300000px;}
.y35_c00401{bottom:1099.500000px;}
.y4_c00401{bottom:1100.100000px;}
.y34_c00401{bottom:1117.800000px;}
.y3_c00401{bottom:1118.100000px;}
.y1_c00401{bottom:1143.300000px;}
.y2_c00401{bottom:1145.100000px;}
.h5_c00401{height:30.000000px;}
.h6_c00401{height:54.000000px;}
.h3_c00401{height:60.000000px;}
.h4_c00401{height:66.000000px;}
.h1_c00401{height:72.000000px;}
.h2_c00401{height:84.000000px;}
.h0_c00401{height:1269.000000px;}
.w0_c00401{width:960.480010px;}
.w1_c00401{width:960.750000px;}
.x0_c00401{left:0.000000px;}
.x16_c00401{left:186.150000px;}
.x21_c00401{left:187.950000px;}
.x1_c00401{left:194.400000px;}
.x47_c00401{left:204.900000px;}
.x3_c00401{left:205.950000px;}
.x7f_c00401{left:207.150000px;}
.x8a_c00401{left:208.650000px;}
.x94_c00401{left:210.000000px;}
.x68_c00401{left:213.900000px;}
.x12_c00401{left:218.400000px;}
.x1d_c00401{left:223.050000px;}
.x1a_c00401{left:224.550000px;}
.x8d_c00401{left:227.100000px;}
.x4_c00401{left:228.300000px;}
.x32_c00401{left:229.800000px;}
.x22_c00401{left:231.900000px;}
.x48_c00401{left:234.450000px;}
.x6d_c00401{left:237.000000px;}
.x3d_c00401{left:238.200000px;}
.x28_c00401{left:239.550000px;}
.x6a_c00401{left:241.200000px;}
.x64_c00401{left:242.850000px;}
.x95_c00401{left:248.100000px;}
.x13_c00401{left:250.050000px;}
.x33_c00401{left:251.400000px;}
.x57_c00401{left:253.200000px;}
.x70_c00401{left:254.550000px;}
.x7a_c00401{left:255.900000px;}
.x39_c00401{left:257.400000px;}
.xb_c00401{left:259.350000px;}
.x42_c00401{left:261.150000px;}
.x5a_c00401{left:262.350000px;}
.x2e_c00401{left:265.650000px;}
.x34_c00401{left:266.700000px;}
.x29_c00401{left:269.850000px;}
.x14_c00401{left:271.650000px;}
.x54_c00401{left:272.700000px;}
.x49_c00401{left:274.200000px;}
.x8b_c00401{left:275.850000px;}
.x80_c00401{left:277.650000px;}
.x2a_c00401{left:279.150000px;}
.x86_c00401{left:280.350000px;}
.x4e_c00401{left:281.700000px;}
.x15_c00401{left:285.900000px;}
.x17_c00401{left:288.750000px;}
.x76_c00401{left:290.850000px;}
.xc_c00401{left:292.800000px;}
.x2b_c00401{left:294.300000px;}
.x55_c00401{left:296.400000px;}
.x23_c00401{left:298.500000px;}
.x81_c00401{left:300.300000px;}
.x6e_c00401{left:301.350000px;}
.x58_c00401{left:303.300000px;}
.x2c_c00401{left:305.400000px;}
.x3a_c00401{left:309.900000px;}
.xd_c00401{left:311.550000px;}
.x1f_c00401{left:313.950000px;}
.x65_c00401{left:316.200000px;}
.x87_c00401{left:319.950000px;}
.x59_c00401{left:323.100000px;}
.x5_c00401{left:325.200000px;}
.x7b_c00401{left:327.300000px;}
.x20_c00401{left:328.350000px;}
.x4f_c00401{left:329.850000px;}
.x3e_c00401{left:331.050000px;}
.x2d_c00401{left:332.400000px;}
.x1b_c00401{left:334.050000px;}
.x5b_c00401{left:336.450000px;}
.x35_c00401{left:337.950000px;}
.x1e_c00401{left:340.050000px;}
.x6c_c00401{left:341.700000px;}
.x84_c00401{left:342.750000px;}
.x77_c00401{left:344.100000px;}
.x1c_c00401{left:345.150000px;}
.x88_c00401{left:346.200000px;}
.x2f_c00401{left:348.900000px;}
.x4a_c00401{left:350.100000px;}
.x18_c00401{left:351.750000px;}
.x50_c00401{left:354.750000px;}
.x5c_c00401{left:356.550000px;}
.x24_c00401{left:358.950000px;}
.x4b_c00401{left:361.200000px;}
.x8c_c00401{left:362.250000px;}
.x96_c00401{left:363.600000px;}
.x71_c00401{left:365.400000px;}
.xe_c00401{left:367.050000px;}
.x7c_c00401{left:369.450000px;}
.x30_c00401{left:371.250000px;}
.x25_c00401{left:372.300000px;}
.x74_c00401{left:374.100000px;}
.x91_c00401{left:375.150000px;}
.x6_c00401{left:377.400000px;}
.x61_c00401{left:380.400000px;}
.x72_c00401{left:384.900000px;}
.x8e_c00401{left:386.550000px;}
.x69_c00401{left:387.750000px;}
.x19_c00401{left:389.850000px;}
.x90_c00401{left:391.950000px;}
.xf_c00401{left:393.000000px;}
.x82_c00401{left:394.650000px;}
.x36_c00401{left:399.450000px;}
.x5d_c00401{left:403.050000px;}
.x7_c00401{left:404.100000px;}
.x6b_c00401{left:405.150000px;}
.x7d_c00401{left:406.500000px;}
.x51_c00401{left:409.050000px;}
.x31_c00401{left:412.350000px;}
.x66_c00401{left:413.400000px;}
.x26_c00401{left:415.800000px;}
.x85_c00401{left:418.050000px;}
.x43_c00401{left:419.850000px;}
.x8_c00401{left:422.400000px;}
.x37_c00401{left:424.650000px;}
.x7e_c00401{left:426.300000px;}
.x3f_c00401{left:427.500000px;}
.x5e_c00401{left:430.050000px;}
.x4c_c00401{left:431.700000px;}
.x62_c00401{left:436.500000px;}
.x44_c00401{left:437.850000px;}
.x2_c00401{left:439.500000px;}
.x4d_c00401{left:441.000000px;}
.x27_c00401{left:442.500000px;}
.x83_c00401{left:443.550000px;}
.x92_c00401{left:445.050000px;}
.x9_c00401{left:446.100000px;}
.x40_c00401{left:447.300000px;}
.x38_c00401{left:448.350000px;}
.x10_c00401{left:451.650000px;}
.x5f_c00401{left:453.150000px;}
.x52_c00401{left:454.800000px;}
.x93_c00401{left:457.350000px;}
.x78_c00401{left:459.750000px;}
.xa_c00401{left:462.000000px;}
.x53_c00401{left:463.500000px;}
.x75_c00401{left:471.300000px;}
.x3b_c00401{left:475.500000px;}
.x56_c00401{left:477.750000px;}
.x41_c00401{left:481.200000px;}
.x8f_c00401{left:483.450000px;}
.x73_c00401{left:485.250000px;}
.x67_c00401{left:487.200000px;}
.x11_c00401{left:489.150000px;}
.x45_c00401{left:491.850000px;}
.x63_c00401{left:493.350000px;}
.x3c_c00401{left:501.000000px;}
.x79_c00401{left:502.200000px;}
.x6f_c00401{left:503.400000px;}
.x89_c00401{left:512.550000px;}
.x60_c00401{left:515.100000px;}
.x46_c00401{left:518.850000px;}
.x11c_c00401{left:540.300000px;}
.xe8_c00401{left:546.900000px;}
.x12a_c00401{left:556.500000px;}
.x123_c00401{left:558.300000px;}
.xf9_c00401{left:562.950000px;}
.xf2_c00401{left:564.000000px;}
.xcb_c00401{left:565.050000px;}
.xae_c00401{left:566.400000px;}
.xa0_c00401{left:567.450000px;}
.x10c_c00401{left:583.500000px;}
.x97_c00401{left:584.700000px;}
.xa1_c00401{left:585.750000px;}
.xc7_c00401{left:586.800000px;}
.x11d_c00401{left:587.850000px;}
.xff_c00401{left:590.100000px;}
.xf5_c00401{left:596.100000px;}
.xc2_c00401{left:597.600000px;}
.x103_c00401{left:598.800000px;}
.xfc_c00401{left:600.600000px;}
.xd3_c00401{left:602.100000px;}
.xde_c00401{left:604.650000px;}
.xbd_c00401{left:606.900000px;}
.xe3_c00401{left:608.100000px;}
.xd8_c00401{left:609.750000px;}
.xcc_c00401{left:610.800000px;}
.x10b_c00401{left:612.450000px;}
.xaf_c00401{left:613.500000px;}
.xe5_c00401{left:614.550000px;}
.x100_c00401{left:615.600000px;}
.x12b_c00401{left:617.250000px;}
.xed_c00401{left:619.200000px;}
.x104_c00401{left:621.150000px;}
.x11a_c00401{left:622.800000px;}
.xa2_c00401{left:623.850000px;}
.xcd_c00401{left:627.000000px;}
.xa7_c00401{left:629.100000px;}
.x131_c00401{left:630.150000px;}
.xb0_c00401{left:631.500000px;}
.xcf_c00401{left:632.700000px;}
.x118_c00401{left:634.650000px;}
.xe9_c00401{left:636.600000px;}
.x132_c00401{left:639.150000px;}
.xbe_c00401{left:640.800000px;}
.x98_c00401{left:644.100000px;}
.xb6_c00401{left:648.750000px;}
.xe6_c00401{left:650.250000px;}
.xfa_c00401{left:651.900000px;}
.x135_c00401{left:652.950000px;}
.xc8_c00401{left:654.900000px;}
.x114_c00401{left:656.100000px;}
.xc3_c00401{left:660.900000px;}
.x10d_c00401{left:662.250000px;}
.xa3_c00401{left:663.750000px;}
.xbf_c00401{left:665.250000px;}
.x109_c00401{left:667.350000px;}
.xd9_c00401{left:669.900000px;}
.xee_c00401{left:671.400000px;}
.xd0_c00401{left:675.150000px;}
.xa8_c00401{left:678.750000px;}
.x11f_c00401{left:682.200000px;}
.xf6_c00401{left:684.600000px;}
.xdf_c00401{left:686.700000px;}
.xa4_c00401{left:688.650000px;}
.x99_c00401{left:690.900000px;}
.x101_c00401{left:692.700000px;}
.xb1_c00401{left:695.250000px;}
.x11e_c00401{left:697.950000px;}
.xa9_c00401{left:700.650000px;}
.x105_c00401{left:701.700000px;}
.x11b_c00401{left:702.750000px;}
.xe0_c00401{left:704.400000px;}
.xb2_c00401{left:707.100000px;}
.xd4_c00401{left:708.900000px;}
.xfd_c00401{left:712.500000px;}
.x130_c00401{left:713.700000px;}
.xe7_c00401{left:714.750000px;}
.x9a_c00401{left:715.800000px;}
.xfb_c00401{left:717.000000px;}
.x12d_c00401{left:720.450000px;}
.x102_c00401{left:721.500000px;}
.xb3_c00401{left:723.000000px;}
.xb7_c00401{left:724.050000px;}
.xc4_c00401{left:727.350000px;}
.x115_c00401{left:728.400000px;}
.x10e_c00401{left:731.250000px;}
.xb8_c00401{left:733.350000px;}
.xc9_c00401{left:734.400000px;}
.xe1_c00401{left:736.800000px;}
.xfe_c00401{left:738.000000px;}
.x12e_c00401{left:739.200000px;}
.xf3_c00401{left:741.150000px;}
.xaa_c00401{left:745.650000px;}
.x133_c00401{left:747.600000px;}
.xc5_c00401{left:748.650000px;}
.x9b_c00401{left:750.750000px;}
.x127_c00401{left:751.800000px;}
.x124_c00401{left:752.850000px;}
.x110_c00401{left:754.650000px;}
.xea_c00401{left:755.850000px;}
.x12c_c00401{left:757.200000px;}
.xe2_c00401{left:758.400000px;}
.xd5_c00401{left:760.350000px;}
.x116_c00401{left:761.850000px;}
.x120_c00401{left:763.500000px;}
.x9c_c00401{left:765.450000px;}
.x128_c00401{left:768.000000px;}
.xab_c00401{left:769.800000px;}
.xca_c00401{left:771.450000px;}
.xef_c00401{left:772.950000px;}
.xd1_c00401{left:774.900000px;}
.x10f_c00401{left:777.600000px;}
.x10a_c00401{left:780.750000px;}
.xb9_c00401{left:783.450000px;}
.x111_c00401{left:785.250000px;}
.xac_c00401{left:787.050000px;}
.xda_c00401{left:788.700000px;}
.x106_c00401{left:790.200000px;}
.x9d_c00401{left:791.700000px;}
.xba_c00401{left:793.500000px;}
.xf0_c00401{left:794.850000px;}
.xb4_c00401{left:796.500000px;}
.x125_c00401{left:798.150000px;}
.xbb_c00401{left:805.350000px;}
.xdb_c00401{left:808.800000px;}
.x134_c00401{left:811.650000px;}
.x107_c00401{left:813.300000px;}
.xc6_c00401{left:814.950000px;}
.xeb_c00401{left:816.600000px;}
.x112_c00401{left:819.750000px;}
.xd6_c00401{left:821.100000px;}
.x119_c00401{left:822.150000px;}
.xb5_c00401{left:823.200000px;}
.xa5_c00401{left:826.800000px;}
.xf4_c00401{left:830.400000px;}
.xc0_c00401{left:832.050000px;}
.xf7_c00401{left:833.550000px;}
.x108_c00401{left:834.600000px;}
.xe4_c00401{left:835.650000px;}
.xf1_c00401{left:837.300000px;}
.x9e_c00401{left:839.250000px;}
.x121_c00401{left:841.350000px;}
.xd2_c00401{left:845.400000px;}
.x129_c00401{left:847.200000px;}
.xbc_c00401{left:848.550000px;}
.xce_c00401{left:850.500000px;}
.xdc_c00401{left:851.700000px;}
.x12f_c00401{left:852.750000px;}
.xad_c00401{left:855.450000px;}
.x126_c00401{left:856.500000px;}
.x113_c00401{left:858.150000px;}
.xa6_c00401{left:859.200000px;}
.x9f_c00401{left:860.850000px;}
.xdd_c00401{left:862.500000px;}
.xc1_c00401{left:865.500000px;}
.xd7_c00401{left:870.000000px;}
.x122_c00401{left:872.250000px;}
.x117_c00401{left:873.600000px;}
.xf8_c00401{left:874.650000px;}
.xec_c00401{left:881.700000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws6_c00401{word-spacing:-15.633588pt;}
.ws9_c00401{word-spacing:-15.161572pt;}
.ws0_c00401{word-spacing:-9.660791pt;}
.ws5_c00401{word-spacing:-7.964616pt;}
.ws1_c00401{word-spacing:-7.068413pt;}
.ws4_c00401{word-spacing:-4.967320pt;}
.ws3_c00401{word-spacing:-1.333333pt;}
.wsa_c00401{word-spacing:0.000000pt;}
.ws2_c00401{word-spacing:3.148248pt;}
.ws7_c00401{word-spacing:8.000000pt;}
.ws8_c00401{word-spacing:13.435244pt;}
._0_c00401{width:21.032511pt;}
.fs4_c00401{font-size:26.666667pt;}
.fs5_c00401{font-size:48.000000pt;}
.fs2_c00401{font-size:53.333333pt;}
.fs3_c00401{font-size:58.666667pt;}
.fs0_c00401{font-size:64.000000pt;}
.fs1_c00401{font-size:74.666667pt;}
.y0_c00401{bottom:0.000000pt;}
.y66_c00401{bottom:163.466667pt;}
.y33_c00401{bottom:164.533333pt;}
.y65_c00401{bottom:180.133333pt;}
.y32_c00401{bottom:180.400000pt;}
.y31_c00401{bottom:196.133333pt;}
.y64_c00401{bottom:196.400000pt;}
.y63_c00401{bottom:212.400000pt;}
.y30_c00401{bottom:216.000000pt;}
.y62_c00401{bottom:228.133333pt;}
.y2f_c00401{bottom:232.000000pt;}
.y61_c00401{bottom:244.133333pt;}
.y2e_c00401{bottom:251.200000pt;}
.y60_c00401{bottom:260.400000pt;}
.y2d_c00401{bottom:271.333333pt;}
.y5f_c00401{bottom:276.400000pt;}
.y2c_c00401{bottom:287.066667pt;}
.y5e_c00401{bottom:292.133333pt;}
.y2b_c00401{bottom:303.066667pt;}
.y5d_c00401{bottom:308.000000pt;}
.y2a_c00401{bottom:319.066667pt;}
.y5c_c00401{bottom:323.733333pt;}
.y29_c00401{bottom:335.333333pt;}
.y5b_c00401{bottom:339.466667pt;}
.y28_c00401{bottom:351.333333pt;}
.y5a_c00401{bottom:355.466667pt;}
.y27_c00401{bottom:371.733333pt;}
.y59_c00401{bottom:372.800000pt;}
.y58_c00401{bottom:386.266667pt;}
.y26_c00401{bottom:388.000000pt;}
.y25_c00401{bottom:404.000000pt;}
.y57_c00401{bottom:404.533333pt;}
.y24_c00401{bottom:420.266667pt;}
.y56_c00401{bottom:420.533333pt;}
.y23_c00401{bottom:436.533333pt;}
.y55_c00401{bottom:440.666667pt;}
.y22_c00401{bottom:452.533333pt;}
.y54_c00401{bottom:456.933333pt;}
.y21_c00401{bottom:468.533333pt;}
.y53_c00401{bottom:472.933333pt;}
.y20_c00401{bottom:484.800000pt;}
.y52_c00401{bottom:488.266667pt;}
.y1f_c00401{bottom:500.533333pt;}
.y51_c00401{bottom:504.266667pt;}
.y1e_c00401{bottom:516.533333pt;}
.y50_c00401{bottom:520.266667pt;}
.y1d_c00401{bottom:535.066667pt;}
.y4f_c00401{bottom:536.000000pt;}
.y1c_c00401{bottom:553.200000pt;}
.y4e_c00401{bottom:555.866667pt;}
.y1b_c00401{bottom:571.466667pt;}
.y4d_c00401{bottom:578.533333pt;}
.y1a_c00401{bottom:591.733333pt;}
.y4c_c00401{bottom:598.666667pt;}
.y19_c00401{bottom:607.733333pt;}
.y4b_c00401{bottom:614.933333pt;}
.y18_c00401{bottom:624.000000pt;}
.y4a_c00401{bottom:630.933333pt;}
.y17_c00401{bottom:640.000000pt;}
.y49_c00401{bottom:646.666667pt;}
.y16_c00401{bottom:659.466667pt;}
.y48_c00401{bottom:662.666667pt;}
.y15_c00401{bottom:676.133333pt;}
.y47_c00401{bottom:678.666667pt;}
.y14_c00401{bottom:692.133333pt;}
.y46_c00401{bottom:694.400000pt;}
.y13_c00401{bottom:708.133333pt;}
.y45_c00401{bottom:710.400000pt;}
.y44_c00401{bottom:726.400000pt;}
.y12_c00401{bottom:728.000000pt;}
.y43_c00401{bottom:745.600000pt;}
.y11_c00401{bottom:747.866667pt;}
.y42_c00401{bottom:761.600000pt;}
.y10_c00401{bottom:764.133333pt;}
.y41_c00401{bottom:781.733333pt;}
.yf_c00401{bottom:784.933333pt;}
.ye_c00401{bottom:792.000000pt;}
.y40_c00401{bottom:798.000000pt;}
.yd_c00401{bottom:800.000000pt;}
.yc_c00401{bottom:811.466667pt;}
.y3f_c00401{bottom:814.000000pt;}
.yb_c00401{bottom:819.200000pt;}
.y3e_c00401{bottom:830.000000pt;}
.ya_c00401{bottom:845.733333pt;}
.y3d_c00401{bottom:846.000000pt;}
.y3c_c00401{bottom:861.733333pt;}
.y9_c00401{bottom:865.600000pt;}
.y3b_c00401{bottom:877.733333pt;}
.y8_c00401{bottom:885.466667pt;}
.y3a_c00401{bottom:893.733333pt;}
.y7_c00401{bottom:906.266667pt;}
.y39_c00401{bottom:909.733333pt;}
.y38_c00401{bottom:925.733333pt;}
.y6_c00401{bottom:937.333333pt;}
.y37_c00401{bottom:942.000000pt;}
.y36_c00401{bottom:957.733333pt;}
.y5_c00401{bottom:960.266667pt;}
.y35_c00401{bottom:977.333333pt;}
.y4_c00401{bottom:977.866667pt;}
.y34_c00401{bottom:993.600000pt;}
.y3_c00401{bottom:993.866667pt;}
.y1_c00401{bottom:1016.266667pt;}
.y2_c00401{bottom:1017.866667pt;}
.h5_c00401{height:26.666667pt;}
.h6_c00401{height:48.000000pt;}
.h3_c00401{height:53.333333pt;}
.h4_c00401{height:58.666667pt;}
.h1_c00401{height:64.000000pt;}
.h2_c00401{height:74.666667pt;}
.h0_c00401{height:1128.000000pt;}
.w0_c00401{width:853.760009pt;}
.w1_c00401{width:854.000000pt;}
.x0_c00401{left:0.000000pt;}
.x16_c00401{left:165.466667pt;}
.x21_c00401{left:167.066667pt;}
.x1_c00401{left:172.800000pt;}
.x47_c00401{left:182.133333pt;}
.x3_c00401{left:183.066667pt;}
.x7f_c00401{left:184.133333pt;}
.x8a_c00401{left:185.466667pt;}
.x94_c00401{left:186.666667pt;}
.x68_c00401{left:190.133333pt;}
.x12_c00401{left:194.133333pt;}
.x1d_c00401{left:198.266667pt;}
.x1a_c00401{left:199.600000pt;}
.x8d_c00401{left:201.866667pt;}
.x4_c00401{left:202.933333pt;}
.x32_c00401{left:204.266667pt;}
.x22_c00401{left:206.133333pt;}
.x48_c00401{left:208.400000pt;}
.x6d_c00401{left:210.666667pt;}
.x3d_c00401{left:211.733333pt;}
.x28_c00401{left:212.933333pt;}
.x6a_c00401{left:214.400000pt;}
.x64_c00401{left:215.866667pt;}
.x95_c00401{left:220.533333pt;}
.x13_c00401{left:222.266667pt;}
.x33_c00401{left:223.466667pt;}
.x57_c00401{left:225.066667pt;}
.x70_c00401{left:226.266667pt;}
.x7a_c00401{left:227.466667pt;}
.x39_c00401{left:228.800000pt;}
.xb_c00401{left:230.533333pt;}
.x42_c00401{left:232.133333pt;}
.x5a_c00401{left:233.200000pt;}
.x2e_c00401{left:236.133333pt;}
.x34_c00401{left:237.066667pt;}
.x29_c00401{left:239.866667pt;}
.x14_c00401{left:241.466667pt;}
.x54_c00401{left:242.400000pt;}
.x49_c00401{left:243.733333pt;}
.x8b_c00401{left:245.200000pt;}
.x80_c00401{left:246.800000pt;}
.x2a_c00401{left:248.133333pt;}
.x86_c00401{left:249.200000pt;}
.x4e_c00401{left:250.400000pt;}
.x15_c00401{left:254.133333pt;}
.x17_c00401{left:256.666667pt;}
.x76_c00401{left:258.533333pt;}
.xc_c00401{left:260.266667pt;}
.x2b_c00401{left:261.600000pt;}
.x55_c00401{left:263.466667pt;}
.x23_c00401{left:265.333333pt;}
.x81_c00401{left:266.933333pt;}
.x6e_c00401{left:267.866667pt;}
.x58_c00401{left:269.600000pt;}
.x2c_c00401{left:271.466667pt;}
.x3a_c00401{left:275.466667pt;}
.xd_c00401{left:276.933333pt;}
.x1f_c00401{left:279.066667pt;}
.x65_c00401{left:281.066667pt;}
.x87_c00401{left:284.400000pt;}
.x59_c00401{left:287.200000pt;}
.x5_c00401{left:289.066667pt;}
.x7b_c00401{left:290.933333pt;}
.x20_c00401{left:291.866667pt;}
.x4f_c00401{left:293.200000pt;}
.x3e_c00401{left:294.266667pt;}
.x2d_c00401{left:295.466667pt;}
.x1b_c00401{left:296.933333pt;}
.x5b_c00401{left:299.066667pt;}
.x35_c00401{left:300.400000pt;}
.x1e_c00401{left:302.266667pt;}
.x6c_c00401{left:303.733333pt;}
.x84_c00401{left:304.666667pt;}
.x77_c00401{left:305.866667pt;}
.x1c_c00401{left:306.800000pt;}
.x88_c00401{left:307.733333pt;}
.x2f_c00401{left:310.133333pt;}
.x4a_c00401{left:311.200000pt;}
.x18_c00401{left:312.666667pt;}
.x50_c00401{left:315.333333pt;}
.x5c_c00401{left:316.933333pt;}
.x24_c00401{left:319.066667pt;}
.x4b_c00401{left:321.066667pt;}
.x8c_c00401{left:322.000000pt;}
.x96_c00401{left:323.200000pt;}
.x71_c00401{left:324.800000pt;}
.xe_c00401{left:326.266667pt;}
.x7c_c00401{left:328.400000pt;}
.x30_c00401{left:330.000000pt;}
.x25_c00401{left:330.933333pt;}
.x74_c00401{left:332.533333pt;}
.x91_c00401{left:333.466667pt;}
.x6_c00401{left:335.466667pt;}
.x61_c00401{left:338.133333pt;}
.x72_c00401{left:342.133333pt;}
.x8e_c00401{left:343.600000pt;}
.x69_c00401{left:344.666667pt;}
.x19_c00401{left:346.533333pt;}
.x90_c00401{left:348.400000pt;}
.xf_c00401{left:349.333333pt;}
.x82_c00401{left:350.800000pt;}
.x36_c00401{left:355.066667pt;}
.x5d_c00401{left:358.266667pt;}
.x7_c00401{left:359.200000pt;}
.x6b_c00401{left:360.133333pt;}
.x7d_c00401{left:361.333333pt;}
.x51_c00401{left:363.600000pt;}
.x31_c00401{left:366.533333pt;}
.x66_c00401{left:367.466667pt;}
.x26_c00401{left:369.600000pt;}
.x85_c00401{left:371.600000pt;}
.x43_c00401{left:373.200000pt;}
.x8_c00401{left:375.466667pt;}
.x37_c00401{left:377.466667pt;}
.x7e_c00401{left:378.933333pt;}
.x3f_c00401{left:380.000000pt;}
.x5e_c00401{left:382.266667pt;}
.x4c_c00401{left:383.733333pt;}
.x62_c00401{left:388.000000pt;}
.x44_c00401{left:389.200000pt;}
.x2_c00401{left:390.666667pt;}
.x4d_c00401{left:392.000000pt;}
.x27_c00401{left:393.333333pt;}
.x83_c00401{left:394.266667pt;}
.x92_c00401{left:395.600000pt;}
.x9_c00401{left:396.533333pt;}
.x40_c00401{left:397.600000pt;}
.x38_c00401{left:398.533333pt;}
.x10_c00401{left:401.466667pt;}
.x5f_c00401{left:402.800000pt;}
.x52_c00401{left:404.266667pt;}
.x93_c00401{left:406.533333pt;}
.x78_c00401{left:408.666667pt;}
.xa_c00401{left:410.666667pt;}
.x53_c00401{left:412.000000pt;}
.x75_c00401{left:418.933333pt;}
.x3b_c00401{left:422.666667pt;}
.x56_c00401{left:424.666667pt;}
.x41_c00401{left:427.733333pt;}
.x8f_c00401{left:429.733333pt;}
.x73_c00401{left:431.333333pt;}
.x67_c00401{left:433.066667pt;}
.x11_c00401{left:434.800000pt;}
.x45_c00401{left:437.200000pt;}
.x63_c00401{left:438.533333pt;}
.x3c_c00401{left:445.333333pt;}
.x79_c00401{left:446.400000pt;}
.x6f_c00401{left:447.466667pt;}
.x89_c00401{left:455.600000pt;}
.x60_c00401{left:457.866667pt;}
.x46_c00401{left:461.200000pt;}
.x11c_c00401{left:480.266667pt;}
.xe8_c00401{left:486.133333pt;}
.x12a_c00401{left:494.666667pt;}
.x123_c00401{left:496.266667pt;}
.xf9_c00401{left:500.400000pt;}
.xf2_c00401{left:501.333333pt;}
.xcb_c00401{left:502.266667pt;}
.xae_c00401{left:503.466667pt;}
.xa0_c00401{left:504.400000pt;}
.x10c_c00401{left:518.666667pt;}
.x97_c00401{left:519.733333pt;}
.xa1_c00401{left:520.666667pt;}
.xc7_c00401{left:521.600000pt;}
.x11d_c00401{left:522.533333pt;}
.xff_c00401{left:524.533333pt;}
.xf5_c00401{left:529.866667pt;}
.xc2_c00401{left:531.200000pt;}
.x103_c00401{left:532.266667pt;}
.xfc_c00401{left:533.866667pt;}
.xd3_c00401{left:535.200000pt;}
.xde_c00401{left:537.466667pt;}
.xbd_c00401{left:539.466667pt;}
.xe3_c00401{left:540.533333pt;}
.xd8_c00401{left:542.000000pt;}
.xcc_c00401{left:542.933333pt;}
.x10b_c00401{left:544.400000pt;}
.xaf_c00401{left:545.333333pt;}
.xe5_c00401{left:546.266667pt;}
.x100_c00401{left:547.200000pt;}
.x12b_c00401{left:548.666667pt;}
.xed_c00401{left:550.400000pt;}
.x104_c00401{left:552.133333pt;}
.x11a_c00401{left:553.600000pt;}
.xa2_c00401{left:554.533333pt;}
.xcd_c00401{left:557.333333pt;}
.xa7_c00401{left:559.200000pt;}
.x131_c00401{left:560.133333pt;}
.xb0_c00401{left:561.333333pt;}
.xcf_c00401{left:562.400000pt;}
.x118_c00401{left:564.133333pt;}
.xe9_c00401{left:565.866667pt;}
.x132_c00401{left:568.133333pt;}
.xbe_c00401{left:569.600000pt;}
.x98_c00401{left:572.533333pt;}
.xb6_c00401{left:576.666667pt;}
.xe6_c00401{left:578.000000pt;}
.xfa_c00401{left:579.466667pt;}
.x135_c00401{left:580.400000pt;}
.xc8_c00401{left:582.133333pt;}
.x114_c00401{left:583.200000pt;}
.xc3_c00401{left:587.466667pt;}
.x10d_c00401{left:588.666667pt;}
.xa3_c00401{left:590.000000pt;}
.xbf_c00401{left:591.333333pt;}
.x109_c00401{left:593.200000pt;}
.xd9_c00401{left:595.466667pt;}
.xee_c00401{left:596.800000pt;}
.xd0_c00401{left:600.133333pt;}
.xa8_c00401{left:603.333333pt;}
.x11f_c00401{left:606.400000pt;}
.xf6_c00401{left:608.533333pt;}
.xdf_c00401{left:610.400000pt;}
.xa4_c00401{left:612.133333pt;}
.x99_c00401{left:614.133333pt;}
.x101_c00401{left:615.733333pt;}
.xb1_c00401{left:618.000000pt;}
.x11e_c00401{left:620.400000pt;}
.xa9_c00401{left:622.800000pt;}
.x105_c00401{left:623.733333pt;}
.x11b_c00401{left:624.666667pt;}
.xe0_c00401{left:626.133333pt;}
.xb2_c00401{left:628.533333pt;}
.xd4_c00401{left:630.133333pt;}
.xfd_c00401{left:633.333333pt;}
.x130_c00401{left:634.400000pt;}
.xe7_c00401{left:635.333333pt;}
.x9a_c00401{left:636.266667pt;}
.xfb_c00401{left:637.333333pt;}
.x12d_c00401{left:640.400000pt;}
.x102_c00401{left:641.333333pt;}
.xb3_c00401{left:642.666667pt;}
.xb7_c00401{left:643.600000pt;}
.xc4_c00401{left:646.533333pt;}
.x115_c00401{left:647.466667pt;}
.x10e_c00401{left:650.000000pt;}
.xb8_c00401{left:651.866667pt;}
.xc9_c00401{left:652.800000pt;}
.xe1_c00401{left:654.933333pt;}
.xfe_c00401{left:656.000000pt;}
.x12e_c00401{left:657.066667pt;}
.xf3_c00401{left:658.800000pt;}
.xaa_c00401{left:662.800000pt;}
.x133_c00401{left:664.533333pt;}
.xc5_c00401{left:665.466667pt;}
.x9b_c00401{left:667.333333pt;}
.x127_c00401{left:668.266667pt;}
.x124_c00401{left:669.200000pt;}
.x110_c00401{left:670.800000pt;}
.xea_c00401{left:671.866667pt;}
.x12c_c00401{left:673.066667pt;}
.xe2_c00401{left:674.133333pt;}
.xd5_c00401{left:675.866667pt;}
.x116_c00401{left:677.200000pt;}
.x120_c00401{left:678.666667pt;}
.x9c_c00401{left:680.400000pt;}
.x128_c00401{left:682.666667pt;}
.xab_c00401{left:684.266667pt;}
.xca_c00401{left:685.733333pt;}
.xef_c00401{left:687.066667pt;}
.xd1_c00401{left:688.800000pt;}
.x10f_c00401{left:691.200000pt;}
.x10a_c00401{left:694.000000pt;}
.xb9_c00401{left:696.400000pt;}
.x111_c00401{left:698.000000pt;}
.xac_c00401{left:699.600000pt;}
.xda_c00401{left:701.066667pt;}
.x106_c00401{left:702.400000pt;}
.x9d_c00401{left:703.733333pt;}
.xba_c00401{left:705.333333pt;}
.xf0_c00401{left:706.533333pt;}
.xb4_c00401{left:708.000000pt;}
.x125_c00401{left:709.466667pt;}
.xbb_c00401{left:715.866667pt;}
.xdb_c00401{left:718.933333pt;}
.x134_c00401{left:721.466667pt;}
.x107_c00401{left:722.933333pt;}
.xc6_c00401{left:724.400000pt;}
.xeb_c00401{left:725.866667pt;}
.x112_c00401{left:728.666667pt;}
.xd6_c00401{left:729.866667pt;}
.x119_c00401{left:730.800000pt;}
.xb5_c00401{left:731.733333pt;}
.xa5_c00401{left:734.933333pt;}
.xf4_c00401{left:738.133333pt;}
.xc0_c00401{left:739.600000pt;}
.xf7_c00401{left:740.933333pt;}
.x108_c00401{left:741.866667pt;}
.xe4_c00401{left:742.800000pt;}
.xf1_c00401{left:744.266667pt;}
.x9e_c00401{left:746.000000pt;}
.x121_c00401{left:747.866667pt;}
.xd2_c00401{left:751.466667pt;}
.x129_c00401{left:753.066667pt;}
.xbc_c00401{left:754.266667pt;}
.xce_c00401{left:756.000000pt;}
.xdc_c00401{left:757.066667pt;}
.x12f_c00401{left:758.000000pt;}
.xad_c00401{left:760.400000pt;}
.x126_c00401{left:761.333333pt;}
.x113_c00401{left:762.800000pt;}
.xa6_c00401{left:763.733333pt;}
.x9f_c00401{left:765.200000pt;}
.xdd_c00401{left:766.666667pt;}
.xc1_c00401{left:769.333333pt;}
.xd7_c00401{left:773.333333pt;}
.x122_c00401{left:775.333333pt;}
.x117_c00401{left:776.533333pt;}
.xf8_c00401{left:777.466667pt;}
.xec_c00401{left:783.733333pt;}
}





/* 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_c00402 {
    display:none;
  }
  .loading-indicator_c00402.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00402 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_c00402 { 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_c00402" -> "#page-container .classname_c00402")
 */
.pf_c00402 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00402 { /* 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_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00402 { /* 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_c00402 { /* 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_c00402 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00402 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00402 {overflow:visible;}
  }
}
.c_c00402 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00402 { /* 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_c00402:after { /* webkit #35443 */
  content: '';
}
.t_c00402:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00402 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 */
}
.__c00402 { /* 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_c00402 { /* info for Javascript */
  display:none;
}
.l_c00402 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00402 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00402 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00402: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_c00402 {
    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_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00402.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_c00402 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00402;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.000000;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;}
.m88_c00402{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m70_c00402{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00402{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.mee_c00402{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m14_c00402{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00402{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00402{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00402{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00402{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m29_c00402{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00402{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00402{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m16_c00402{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m97_c00402{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00402{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mac_c00402{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m32_c00402{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m99_c00402{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00402{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m18_c00402{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md7_c00402{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mab_c00402{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00402{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00402{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md9_c00402{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m24_c00402{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00402{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00402{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00402{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m56_c00402{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00402{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00402{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00402{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m46_c00402{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00402{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00402{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00402{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m31_c00402{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m67_c00402{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00402{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00402{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m15_c00402{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m26_c00402{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4_c00402{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00402{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m5_c00402{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m51_c00402{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11_c00402{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00402{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m10_c00402{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00402{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00402{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00402{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00402{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00402{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m43_c00402{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00402{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m74_c00402{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m30_c00402{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m52_c00402{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mba_c00402{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md3_c00402{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m39_c00402{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mca_c00402{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m60_c00402{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.maf_c00402{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m50_c00402{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m35_c00402{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md4_c00402{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m34_c00402{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00402{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.med_c00402{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m19_c00402{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md1_c00402{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.ma_c00402{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me2_c00402{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00402{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md5_c00402{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me1_c00402{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m59_c00402{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00402{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m69_c00402{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me9_c00402{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00402{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00402{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00402{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00402{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me0_c00402{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md8_c00402{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00402{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00402{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00402{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mef_c00402{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00402{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m98_c00402{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m77_c00402{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00402{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00402{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00402{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m92_c00402{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00402{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00402{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00402{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00402{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00402{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m36_c00402{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me3_c00402{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00402{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00402{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.me7_c00402{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m48_c00402{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m65_c00402{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md6_c00402{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00402{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00402{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00402{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m44_c00402{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00402{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00402{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m17_c00402{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m58_c00402{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00402{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00402{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00402{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m61_c00402{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m41_c00402{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00402{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m64_c00402{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m33_c00402{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00402{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m20_c00402{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00402{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00402{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mad_c00402{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00402{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.maa_c00402{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00402{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00402{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00402{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mae_c00402{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00402{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00402{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00402{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m37_c00402{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me_c00402{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00402{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3_c00402{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00402{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00402{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m38_c00402{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m40_c00402{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m23_c00402{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m83_c00402{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00402{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m27_c00402{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00402{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m47_c00402{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m21_c00402{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m76_c00402{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00402{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00402{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00402{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md0_c00402{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m28_c00402{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m82_c00402{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00402{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m42_c00402{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m80_c00402{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00402{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00402{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mc_c00402{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m55_c00402{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me6_c00402{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m54_c00402{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m84_c00402{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m63_c00402{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00402{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00402{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00402{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00402{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf_c00402{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00402{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m49_c00402{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00402{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m57_c00402{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m66_c00402{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m45_c00402{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m73_c00402{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mce_c00402{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00402{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m72_c00402{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m53_c00402{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00402{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00402{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mec_c00402{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2_c00402{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.meb_c00402{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00402{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);}
.mda_c00402{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m68_c00402{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12_c00402{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.md_c00402{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m13_c00402{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00402{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00402{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md2_c00402{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8_c00402{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m25_c00402{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00402{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m81_c00402{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mea_c00402{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb_c00402{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00402{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00402{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00402{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.me8_c00402{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00402{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00402{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m89_c00402{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00402{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00402{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m75_c00402{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m71_c00402{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m90_c00402{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00402{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m62_c00402{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00402{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mde_c00402{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m78_c00402{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00402{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m79_c00402{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m91_c00402{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00402{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m7_c00402{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00402{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me4_c00402{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00402{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m22_c00402{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m95_c00402{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00402{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m93_c00402{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m85_c00402{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00402{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me5_c00402{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m86_c00402{transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);}
.m87_c00402{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m94_c00402{transform:matrix(0.513250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513250,0.000000,0.000000,0.250000,0,0);}
.m96_c00402{transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls0_c00402{letter-spacing:0.000000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{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__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:-4.868421px;}
.ws1_c00402{word-spacing:-3.166667px;}
.ws2_c00402{word-spacing:0.000000px;}
.fc0_c00402{color:transparent;}
.fs7_c00402{font-size:30.000000px;}
.fs5_c00402{font-size:36.000000px;}
.fs6_c00402{font-size:42.000000px;}
.fs2_c00402{font-size:60.000000px;}
.fs4_c00402{font-size:66.000000px;}
.fs1_c00402{font-size:72.000000px;}
.fs3_c00402{font-size:78.000000px;}
.fs0_c00402{font-size:114.000000px;}
.y0_c00402{bottom:0.000000px;}
.y61_c00402{bottom:184.350000px;}
.y30_c00402{bottom:187.200000px;}
.y60_c00402{bottom:199.500000px;}
.y2f_c00402{bottom:205.200000px;}
.y2e_c00402{bottom:223.200000px;}
.y2d_c00402{bottom:242.250000px;}
.y5f_c00402{bottom:251.250000px;}
.y2c_c00402{bottom:263.550000px;}
.y5e_c00402{bottom:270.000000px;}
.y2b_c00402{bottom:282.300000px;}
.y5d_c00402{bottom:288.000000px;}
.y2a_c00402{bottom:300.300000px;}
.y5c_c00402{bottom:309.900000px;}
.y29_c00402{bottom:318.300000px;}
.y5b_c00402{bottom:327.900000px;}
.y28_c00402{bottom:336.300000px;}
.y5a_c00402{bottom:350.250000px;}
.y27_c00402{bottom:354.300000px;}
.y59_c00402{bottom:366.900000px;}
.y26_c00402{bottom:372.300000px;}
.y58_c00402{bottom:372.600000px;}
.y57_c00402{bottom:390.600000px;}
.y25_c00402{bottom:398.400000px;}
.y56_c00402{bottom:408.600000px;}
.y24_c00402{bottom:419.700000px;}
.y32_c00402{bottom:420.450000px;}
.y31_c00402{bottom:422.250000px;}
.y55_c00402{bottom:426.300000px;}
.y23_c00402{bottom:427.350000px;}
.y54_c00402{bottom:448.500000px;}
.y22_c00402{bottom:459.000000px;}
.y53_c00402{bottom:466.500000px;}
.y21_c00402{bottom:480.900000px;}
.y52_c00402{bottom:489.150000px;}
.y20_c00402{bottom:498.900000px;}
.y51_c00402{bottom:506.850000px;}
.y1f_c00402{bottom:516.900000px;}
.y50_c00402{bottom:529.500000px;}
.y4f_c00402{bottom:548.250000px;}
.y1e_c00402{bottom:551.850000px;}
.y4e_c00402{bottom:565.200000px;}
.y4d_c00402{bottom:587.850000px;}
.y1d_c00402{bottom:592.500000px;}
.y4c_c00402{bottom:605.850000px;}
.y1c_c00402{bottom:610.500000px;}
.y4b_c00402{bottom:623.850000px;}
.y1b_c00402{bottom:628.500000px;}
.y4a_c00402{bottom:641.850000px;}
.y1a_c00402{bottom:650.250000px;}
.y49_c00402{bottom:660.150000px;}
.y19_c00402{bottom:668.550000px;}
.y48_c00402{bottom:677.400000px;}
.y18_c00402{bottom:689.850000px;}
.y47_c00402{bottom:695.100000px;}
.y17_c00402{bottom:708.150000px;}
.y46_c00402{bottom:713.100000px;}
.y16_c00402{bottom:726.000000px;}
.y45_c00402{bottom:730.800000px;}
.y15_c00402{bottom:743.700000px;}
.y44_c00402{bottom:749.100000px;}
.y14_c00402{bottom:762.000000px;}
.y43_c00402{bottom:775.500000px;}
.y13_c00402{bottom:779.700000px;}
.y12_c00402{bottom:797.700000px;}
.y42_c00402{bottom:798.000000px;}
.y11_c00402{bottom:815.700000px;}
.y41_c00402{bottom:816.000000px;}
.y10_c00402{bottom:833.700000px;}
.yf_c00402{bottom:851.400000px;}
.y40_c00402{bottom:856.350000px;}
.ye_c00402{bottom:869.700000px;}
.y3f_c00402{bottom:878.700000px;}
.yd_c00402{bottom:887.400000px;}
.y3e_c00402{bottom:901.050000px;}
.yc_c00402{bottom:905.700000px;}
.y3d_c00402{bottom:918.750000px;}
.yb_c00402{bottom:925.500000px;}
.y3c_c00402{bottom:937.050000px;}
.ya_c00402{bottom:946.200000px;}
.y3b_c00402{bottom:958.950000px;}
.y9_c00402{bottom:964.500000px;}
.y3a_c00402{bottom:981.300000px;}
.y8_c00402{bottom:986.400000px;}
.y39_c00402{bottom:1004.100000px;}
.y7_c00402{bottom:1004.400000px;}
.y38_c00402{bottom:1022.100000px;}
.y6_c00402{bottom:1022.400000px;}
.y37_c00402{bottom:1040.400000px;}
.y5_c00402{bottom:1044.750000px;}
.y36_c00402{bottom:1058.100000px;}
.y4_c00402{bottom:1071.000000px;}
.y35_c00402{bottom:1076.100000px;}
.y3_c00402{bottom:1089.300000px;}
.y34_c00402{bottom:1094.400000px;}
.y2_c00402{bottom:1111.350000px;}
.y33_c00402{bottom:1112.400000px;}
.y1_c00402{bottom:1139.400000px;}
.h9_c00402{height:30.000000px;}
.h7_c00402{height:36.000000px;}
.h8_c00402{height:42.000000px;}
.h4_c00402{height:60.000000px;}
.h6_c00402{height:66.000000px;}
.h3_c00402{height:72.000000px;}
.h5_c00402{height:78.000000px;}
.h2_c00402{height:114.000000px;}
.h0_c00402{height:1267.919952px;}
.h1_c00402{height:1268.250000px;}
.w0_c00402{width:960.480010px;}
.w1_c00402{width:960.750000px;}
.x0_c00402{left:0.000000px;}
.x3_c00402{left:70.500000px;}
.x7_c00402{left:72.000000px;}
.x38_c00402{left:73.050000px;}
.x67_c00402{left:74.850000px;}
.x74_c00402{left:75.900000px;}
.x66_c00402{left:85.950000px;}
.x76_c00402{left:87.900000px;}
.xc_c00402{left:90.000000px;}
.x3a_c00402{left:91.200000px;}
.x57_c00402{left:92.400000px;}
.x5e_c00402{left:93.900000px;}
.x81_c00402{left:94.950000px;}
.x93_c00402{left:96.150000px;}
.x49_c00402{left:100.500000px;}
.x17_c00402{left:108.750000px;}
.x7c_c00402{left:112.350000px;}
.x24_c00402{left:113.700000px;}
.x11_c00402{left:115.500000px;}
.x6f_c00402{left:116.700000px;}
.xd_c00402{left:118.800000px;}
.x8e_c00402{left:120.300000px;}
.x25_c00402{left:122.400000px;}
.x4f_c00402{left:124.800000px;}
.x58_c00402{left:126.600000px;}
.x30_c00402{left:127.950000px;}
.x3b_c00402{left:129.300000px;}
.x4_c00402{left:131.700000px;}
.x5a_c00402{left:135.600000px;}
.x5f_c00402{left:136.800000px;}
.x8_c00402{left:137.850000px;}
.x7b_c00402{left:139.350000px;}
.x55_c00402{left:141.450000px;}
.x6a_c00402{left:142.650000px;}
.x8f_c00402{left:146.250000px;}
.x94_c00402{left:147.300000px;}
.x31_c00402{left:148.800000px;}
.x12_c00402{left:150.000000px;}
.x1f_c00402{left:155.850000px;}
.x5b_c00402{left:157.200000px;}
.x9_c00402{left:160.500000px;}
.x40_c00402{left:161.700000px;}
.x77_c00402{left:164.250000px;}
.x68_c00402{left:166.650000px;}
.x18_c00402{left:169.950000px;}
.x43_c00402{left:171.900000px;}
.x7d_c00402{left:173.250000px;}
.x5_c00402{left:177.750000px;}
.xe_c00402{left:179.700000px;}
.x2b_c00402{left:181.650000px;}
.x41_c00402{left:183.600000px;}
.x60_c00402{left:185.400000px;}
.x91_c00402{left:186.600000px;}
.x70_c00402{left:187.950000px;}
.x19_c00402{left:191.550000px;}
.x62_c00402{left:194.700000px;}
.x26_c00402{left:196.950000px;}
.xf_c00402{left:201.000000px;}
.x90_c00402{left:202.350000px;}
.x52_c00402{left:203.400000px;}
.x4a_c00402{left:205.650000px;}
.x8d_c00402{left:206.700000px;}
.x35_c00402{left:209.100000px;}
.x6_c00402{left:210.450000px;}
.x82_c00402{left:213.150000px;}
.x7e_c00402{left:214.650000px;}
.x78_c00402{left:216.750000px;}
.x20_c00402{left:218.100000px;}
.x63_c00402{left:219.150000px;}
.x6b_c00402{left:221.400000px;}
.x32_c00402{left:222.900000px;}
.x8a_c00402{left:224.100000px;}
.x13_c00402{left:225.600000px;}
.x4b_c00402{left:227.250000px;}
.x72_c00402{left:228.750000px;}
.x88_c00402{left:230.250000px;}
.x10_c00402{left:232.650000px;}
.x33_c00402{left:236.250000px;}
.x1a_c00402{left:237.300000px;}
.x44_c00402{left:240.300000px;}
.x8b_c00402{left:242.850000px;}
.x1b_c00402{left:245.550000px;}
.x36_c00402{left:246.900000px;}
.x59_c00402{left:248.700000px;}
.x5c_c00402{left:250.500000px;}
.x73_c00402{left:251.700000px;}
.x3c_c00402{left:253.200000px;}
.x79_c00402{left:255.300000px;}
.x92_c00402{left:257.850000px;}
.x1c_c00402{left:261.000000px;}
.x75_c00402{left:262.350000px;}
.x50_c00402{left:263.700000px;}
.x45_c00402{left:265.800000px;}
.x64_c00402{left:267.750000px;}
.x4c_c00402{left:268.950000px;}
.x42_c00402{left:270.000000px;}
.x61_c00402{left:271.350000px;}
.x34_c00402{left:272.550000px;}
.x7f_c00402{left:275.100000px;}
.x83_c00402{left:276.150000px;}
.x2c_c00402{left:277.800000px;}
.x21_c00402{left:279.000000px;}
.x4d_c00402{left:280.500000px;}
.x6c_c00402{left:282.300000px;}
.x27_c00402{left:284.400000px;}
.x37_c00402{left:287.100000px;}
.x87_c00402{left:288.600000px;}
.x14_c00402{left:290.100000px;}
.xa_c00402{left:296.550000px;}
.x15_c00402{left:299.850000px;}
.x5d_c00402{left:301.950000px;}
.x95_c00402{left:303.000000px;}
.x4e_c00402{left:304.200000px;}
.x53_c00402{left:307.050000px;}
.x46_c00402{left:309.300000px;}
.x85_c00402{left:311.700000px;}
.x1_c00402{left:315.000000px;}
.x1d_c00402{left:316.350000px;}
.x28_c00402{left:321.900000px;}
.x3d_c00402{left:326.550000px;}
.x2d_c00402{left:330.300000px;}
.x22_c00402{left:332.250000px;}
.x69_c00402{left:333.750000px;}
.x65_c00402{left:337.950000px;}
.x29_c00402{left:339.900000px;}
.x2e_c00402{left:342.150000px;}
.x6d_c00402{left:347.250000px;}
.x51_c00402{left:348.750000px;}
.x54_c00402{left:351.300000px;}
.x47_c00402{left:353.550000px;}
.x16_c00402{left:354.600000px;}
.x39_c00402{left:356.100000px;}
.x1e_c00402{left:358.050000px;}
.x84_c00402{left:360.300000px;}
.x2a_c00402{left:363.300000px;}
.x71_c00402{left:364.350000px;}
.x6e_c00402{left:368.100000px;}
.x48_c00402{left:371.550000px;}
.x23_c00402{left:372.600000px;}
.x8c_c00402{left:374.550000px;}
.x3e_c00402{left:378.000000px;}
.x80_c00402{left:379.050000px;}
.xb_c00402{left:380.850000px;}
.x86_c00402{left:385.500000px;}
.x2f_c00402{left:386.850000px;}
.x3f_c00402{left:388.800000px;}
.x7a_c00402{left:391.800000px;}
.x56_c00402{left:399.900000px;}
.x89_c00402{left:402.750000px;}
.x96_c00402{left:410.700000px;}
.x97_c00402{left:422.550000px;}
.x12a_c00402{left:435.300000px;}
.x98_c00402{left:447.150000px;}
.xc0_c00402{left:448.200000px;}
.xd7_c00402{left:449.400000px;}
.xe3_c00402{left:450.750000px;}
.xeb_c00402{left:451.950000px;}
.x117_c00402{left:453.450000px;}
.x112_c00402{left:454.500000px;}
.x12b_c00402{left:459.750000px;}
.x128_c00402{left:465.300000px;}
.xc5_c00402{left:467.400000px;}
.xc1_c00402{left:469.500000px;}
.x99_c00402{left:470.850000px;}
.x11f_c00402{left:471.900000px;}
.x107_c00402{left:473.100000px;}
.xec_c00402{left:474.600000px;}
.x9f_c00402{left:476.100000px;}
.x113_c00402{left:480.750000px;}
.xaf_c00402{left:483.600000px;}
.x101_c00402{left:486.900000px;}
.xd8_c00402{left:488.250000px;}
.xf4_c00402{left:490.500000px;}
.xf1_c00402{left:492.750000px;}
.xba_c00402{left:494.700000px;}
.xfe_c00402{left:496.800000px;}
.xdf_c00402{left:499.950000px;}
.xc3_c00402{left:502.650000px;}
.xe4_c00402{left:505.050000px;}
.xa7_c00402{left:506.700000px;}
.xb4_c00402{left:509.550000px;}
.xc6_c00402{left:510.900000px;}
.x9a_c00402{left:514.050000px;}
.xd9_c00402{left:516.300000px;}
.xa8_c00402{left:519.000000px;}
.xd4_c00402{left:520.950000px;}
.xca_c00402{left:523.050000px;}
.x120_c00402{left:524.850000px;}
.xa0_c00402{left:526.500000px;}
.xc7_c00402{left:529.200000px;}
.x124_c00402{left:531.900000px;}
.xed_c00402{left:532.950000px;}
.xf5_c00402{left:536.100000px;}
.xa1_c00402{left:537.600000px;}
.xb0_c00402{left:539.700000px;}
.x105_c00402{left:542.700000px;}
.xfd_c00402{left:544.350000px;}
.xd2_c00402{left:548.850000px;}
.xb5_c00402{left:551.700000px;}
.xa2_c00402{left:553.050000px;}
.xc4_c00402{left:554.100000px;}
.xce_c00402{left:555.750000px;}
.xdc_c00402{left:557.850000px;}
.xb1_c00402{left:559.200000px;}
.xfa_c00402{left:562.200000px;}
.x118_c00402{left:563.250000px;}
.x106_c00402{left:564.600000px;}
.xd3_c00402{left:567.600000px;}
.x102_c00402{left:569.700000px;}
.xbb_c00402{left:571.350000px;}
.xd1_c00402{left:572.700000px;}
.x115_c00402{left:575.700000px;}
.xe6_c00402{left:576.750000px;}
.xcf_c00402{left:578.400000px;}
.xd5_c00402{left:581.100000px;}
.x119_c00402{left:583.350000px;}
.xe8_c00402{left:587.700000px;}
.xbc_c00402{left:590.850000px;}
.xf6_c00402{left:591.900000px;}
.xc2_c00402{left:592.950000px;}
.xa9_c00402{left:594.600000px;}
.x108_c00402{left:597.600000px;}
.x9b_c00402{left:600.150000px;}
.x10f_c00402{left:602.850000px;}
.xfb_c00402{left:604.350000px;}
.xaa_c00402{left:605.700000px;}
.xd0_c00402{left:606.900000px;}
.x109_c00402{left:608.100000px;}
.xe0_c00402{left:610.200000px;}
.xb2_c00402{left:611.400000px;}
.x10d_c00402{left:612.750000px;}
.x129_c00402{left:613.950000px;}
.xff_c00402{left:616.500000px;}
.xd6_c00402{left:618.150000px;}
.xa3_c00402{left:619.350000px;}
.xdd_c00402{left:620.550000px;}
.xda_c00402{left:626.400000px;}
.xb6_c00402{left:630.600000px;}
.x103_c00402{left:632.700000px;}
.xab_c00402{left:633.750000px;}
.x9c_c00402{left:636.450000px;}
.x11a_c00402{left:638.100000px;}
.x10a_c00402{left:644.100000px;}
.x121_c00402{left:646.500000px;}
.xbd_c00402{left:649.500000px;}
.xee_c00402{left:651.300000px;}
.x122_c00402{left:652.800000px;}
.x100_c00402{left:655.350000px;}
.x10e_c00402{left:657.450000px;}
.xbe_c00402{left:658.500000px;}
.xe7_c00402{left:662.850000px;}
.x11c_c00402{left:665.700000px;}
.x110_c00402{left:667.650000px;}
.xfc_c00402{left:668.850000px;}
.x104_c00402{left:670.500000px;}
.x126_c00402{left:671.700000px;}
.xac_c00402{left:673.050000px;}
.x9d_c00402{left:674.550000px;}
.xe9_c00402{left:676.650000px;}
.xbf_c00402{left:679.800000px;}
.x10b_c00402{left:681.150000px;}
.xcb_c00402{left:682.200000px;}
.xb7_c00402{left:683.850000px;}
.xea_c00402{left:686.700000px;}
.xa4_c00402{left:691.050000px;}
.x123_c00402{left:692.400000px;}
.x114_c00402{left:693.900000px;}
.xf7_c00402{left:696.150000px;}
.xb3_c00402{left:698.850000px;}
.xde_c00402{left:701.250000px;}
.xf8_c00402{left:702.900000px;}
.xcc_c00402{left:704.100000px;}
.xe1_c00402{left:705.600000px;}
.xad_c00402{left:707.250000px;}
.xa5_c00402{left:708.300000px;}
.x9e_c00402{left:709.800000px;}
.xb8_c00402{left:711.150000px;}
.xf2_c00402{left:712.200000px;}
.xc8_c00402{left:713.850000px;}
.x116_c00402{left:715.200000px;}
.x11d_c00402{left:716.850000px;}
.x125_c00402{left:719.100000px;}
.xcd_c00402{left:721.350000px;}
.xef_c00402{left:724.350000px;}
.x10c_c00402{left:726.900000px;}
.xdb_c00402{left:731.850000px;}
.xb9_c00402{left:733.800000px;}
.x11e_c00402{left:735.150000px;}
.xa6_c00402{left:737.100000px;}
.x2_c00402{left:739.800000px;}
.xf3_c00402{left:741.750000px;}
.xe5_c00402{left:744.150000px;}
.xae_c00402{left:745.350000px;}
.x127_c00402{left:746.550000px;}
.xf0_c00402{left:748.800000px;}
.xf9_c00402{left:750.450000px;}
.x11b_c00402{left:751.800000px;}
.xc9_c00402{left:754.200000px;}
.x111_c00402{left:757.950000px;}
.xe2_c00402{left:767.550000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws0_c00402{word-spacing:-4.327485pt;}
.ws1_c00402{word-spacing:-2.814815pt;}
.ws2_c00402{word-spacing:0.000000pt;}
.fs7_c00402{font-size:26.666667pt;}
.fs5_c00402{font-size:32.000000pt;}
.fs6_c00402{font-size:37.333333pt;}
.fs2_c00402{font-size:53.333333pt;}
.fs4_c00402{font-size:58.666667pt;}
.fs1_c00402{font-size:64.000000pt;}
.fs3_c00402{font-size:69.333333pt;}
.fs0_c00402{font-size:101.333333pt;}
.y0_c00402{bottom:0.000000pt;}
.y61_c00402{bottom:163.866667pt;}
.y30_c00402{bottom:166.400000pt;}
.y60_c00402{bottom:177.333333pt;}
.y2f_c00402{bottom:182.400000pt;}
.y2e_c00402{bottom:198.400000pt;}
.y2d_c00402{bottom:215.333333pt;}
.y5f_c00402{bottom:223.333333pt;}
.y2c_c00402{bottom:234.266667pt;}
.y5e_c00402{bottom:240.000000pt;}
.y2b_c00402{bottom:250.933333pt;}
.y5d_c00402{bottom:256.000000pt;}
.y2a_c00402{bottom:266.933333pt;}
.y5c_c00402{bottom:275.466667pt;}
.y29_c00402{bottom:282.933333pt;}
.y5b_c00402{bottom:291.466667pt;}
.y28_c00402{bottom:298.933333pt;}
.y5a_c00402{bottom:311.333333pt;}
.y27_c00402{bottom:314.933333pt;}
.y59_c00402{bottom:326.133333pt;}
.y26_c00402{bottom:330.933333pt;}
.y58_c00402{bottom:331.200000pt;}
.y57_c00402{bottom:347.200000pt;}
.y25_c00402{bottom:354.133333pt;}
.y56_c00402{bottom:363.200000pt;}
.y24_c00402{bottom:373.066667pt;}
.y32_c00402{bottom:373.733333pt;}
.y31_c00402{bottom:375.333333pt;}
.y55_c00402{bottom:378.933333pt;}
.y23_c00402{bottom:379.866667pt;}
.y54_c00402{bottom:398.666667pt;}
.y22_c00402{bottom:408.000000pt;}
.y53_c00402{bottom:414.666667pt;}
.y21_c00402{bottom:427.466667pt;}
.y52_c00402{bottom:434.800000pt;}
.y20_c00402{bottom:443.466667pt;}
.y51_c00402{bottom:450.533333pt;}
.y1f_c00402{bottom:459.466667pt;}
.y50_c00402{bottom:470.666667pt;}
.y4f_c00402{bottom:487.333333pt;}
.y1e_c00402{bottom:490.533333pt;}
.y4e_c00402{bottom:502.400000pt;}
.y4d_c00402{bottom:522.533333pt;}
.y1d_c00402{bottom:526.666667pt;}
.y4c_c00402{bottom:538.533333pt;}
.y1c_c00402{bottom:542.666667pt;}
.y4b_c00402{bottom:554.533333pt;}
.y1b_c00402{bottom:558.666667pt;}
.y4a_c00402{bottom:570.533333pt;}
.y1a_c00402{bottom:578.000000pt;}
.y49_c00402{bottom:586.800000pt;}
.y19_c00402{bottom:594.266667pt;}
.y48_c00402{bottom:602.133333pt;}
.y18_c00402{bottom:613.200000pt;}
.y47_c00402{bottom:617.866667pt;}
.y17_c00402{bottom:629.466667pt;}
.y46_c00402{bottom:633.866667pt;}
.y16_c00402{bottom:645.333333pt;}
.y45_c00402{bottom:649.600000pt;}
.y15_c00402{bottom:661.066667pt;}
.y44_c00402{bottom:665.866667pt;}
.y14_c00402{bottom:677.333333pt;}
.y43_c00402{bottom:689.333333pt;}
.y13_c00402{bottom:693.066667pt;}
.y12_c00402{bottom:709.066667pt;}
.y42_c00402{bottom:709.333333pt;}
.y11_c00402{bottom:725.066667pt;}
.y41_c00402{bottom:725.333333pt;}
.y10_c00402{bottom:741.066667pt;}
.yf_c00402{bottom:756.800000pt;}
.y40_c00402{bottom:761.200000pt;}
.ye_c00402{bottom:773.066667pt;}
.y3f_c00402{bottom:781.066667pt;}
.yd_c00402{bottom:788.800000pt;}
.y3e_c00402{bottom:800.933333pt;}
.yc_c00402{bottom:805.066667pt;}
.y3d_c00402{bottom:816.666667pt;}
.yb_c00402{bottom:822.666667pt;}
.y3c_c00402{bottom:832.933333pt;}
.ya_c00402{bottom:841.066667pt;}
.y3b_c00402{bottom:852.400000pt;}
.y9_c00402{bottom:857.333333pt;}
.y3a_c00402{bottom:872.266667pt;}
.y8_c00402{bottom:876.800000pt;}
.y39_c00402{bottom:892.533333pt;}
.y7_c00402{bottom:892.800000pt;}
.y38_c00402{bottom:908.533333pt;}
.y6_c00402{bottom:908.800000pt;}
.y37_c00402{bottom:924.800000pt;}
.y5_c00402{bottom:928.666667pt;}
.y36_c00402{bottom:940.533333pt;}
.y4_c00402{bottom:952.000000pt;}
.y35_c00402{bottom:956.533333pt;}
.y3_c00402{bottom:968.266667pt;}
.y34_c00402{bottom:972.800000pt;}
.y2_c00402{bottom:987.866667pt;}
.y33_c00402{bottom:988.800000pt;}
.y1_c00402{bottom:1012.800000pt;}
.h9_c00402{height:26.666667pt;}
.h7_c00402{height:32.000000pt;}
.h8_c00402{height:37.333333pt;}
.h4_c00402{height:53.333333pt;}
.h6_c00402{height:58.666667pt;}
.h3_c00402{height:64.000000pt;}
.h5_c00402{height:69.333333pt;}
.h2_c00402{height:101.333333pt;}
.h0_c00402{height:1127.039957pt;}
.h1_c00402{height:1127.333333pt;}
.w0_c00402{width:853.760009pt;}
.w1_c00402{width:854.000000pt;}
.x0_c00402{left:0.000000pt;}
.x3_c00402{left:62.666667pt;}
.x7_c00402{left:64.000000pt;}
.x38_c00402{left:64.933333pt;}
.x67_c00402{left:66.533333pt;}
.x74_c00402{left:67.466667pt;}
.x66_c00402{left:76.400000pt;}
.x76_c00402{left:78.133333pt;}
.xc_c00402{left:80.000000pt;}
.x3a_c00402{left:81.066667pt;}
.x57_c00402{left:82.133333pt;}
.x5e_c00402{left:83.466667pt;}
.x81_c00402{left:84.400000pt;}
.x93_c00402{left:85.466667pt;}
.x49_c00402{left:89.333333pt;}
.x17_c00402{left:96.666667pt;}
.x7c_c00402{left:99.866667pt;}
.x24_c00402{left:101.066667pt;}
.x11_c00402{left:102.666667pt;}
.x6f_c00402{left:103.733333pt;}
.xd_c00402{left:105.600000pt;}
.x8e_c00402{left:106.933333pt;}
.x25_c00402{left:108.800000pt;}
.x4f_c00402{left:110.933333pt;}
.x58_c00402{left:112.533333pt;}
.x30_c00402{left:113.733333pt;}
.x3b_c00402{left:114.933333pt;}
.x4_c00402{left:117.066667pt;}
.x5a_c00402{left:120.533333pt;}
.x5f_c00402{left:121.600000pt;}
.x8_c00402{left:122.533333pt;}
.x7b_c00402{left:123.866667pt;}
.x55_c00402{left:125.733333pt;}
.x6a_c00402{left:126.800000pt;}
.x8f_c00402{left:130.000000pt;}
.x94_c00402{left:130.933333pt;}
.x31_c00402{left:132.266667pt;}
.x12_c00402{left:133.333333pt;}
.x1f_c00402{left:138.533333pt;}
.x5b_c00402{left:139.733333pt;}
.x9_c00402{left:142.666667pt;}
.x40_c00402{left:143.733333pt;}
.x77_c00402{left:146.000000pt;}
.x68_c00402{left:148.133333pt;}
.x18_c00402{left:151.066667pt;}
.x43_c00402{left:152.800000pt;}
.x7d_c00402{left:154.000000pt;}
.x5_c00402{left:158.000000pt;}
.xe_c00402{left:159.733333pt;}
.x2b_c00402{left:161.466667pt;}
.x41_c00402{left:163.200000pt;}
.x60_c00402{left:164.800000pt;}
.x91_c00402{left:165.866667pt;}
.x70_c00402{left:167.066667pt;}
.x19_c00402{left:170.266667pt;}
.x62_c00402{left:173.066667pt;}
.x26_c00402{left:175.066667pt;}
.xf_c00402{left:178.666667pt;}
.x90_c00402{left:179.866667pt;}
.x52_c00402{left:180.800000pt;}
.x4a_c00402{left:182.800000pt;}
.x8d_c00402{left:183.733333pt;}
.x35_c00402{left:185.866667pt;}
.x6_c00402{left:187.066667pt;}
.x82_c00402{left:189.466667pt;}
.x7e_c00402{left:190.800000pt;}
.x78_c00402{left:192.666667pt;}
.x20_c00402{left:193.866667pt;}
.x63_c00402{left:194.800000pt;}
.x6b_c00402{left:196.800000pt;}
.x32_c00402{left:198.133333pt;}
.x8a_c00402{left:199.200000pt;}
.x13_c00402{left:200.533333pt;}
.x4b_c00402{left:202.000000pt;}
.x72_c00402{left:203.333333pt;}
.x88_c00402{left:204.666667pt;}
.x10_c00402{left:206.800000pt;}
.x33_c00402{left:210.000000pt;}
.x1a_c00402{left:210.933333pt;}
.x44_c00402{left:213.600000pt;}
.x8b_c00402{left:215.866667pt;}
.x1b_c00402{left:218.266667pt;}
.x36_c00402{left:219.466667pt;}
.x59_c00402{left:221.066667pt;}
.x5c_c00402{left:222.666667pt;}
.x73_c00402{left:223.733333pt;}
.x3c_c00402{left:225.066667pt;}
.x79_c00402{left:226.933333pt;}
.x92_c00402{left:229.200000pt;}
.x1c_c00402{left:232.000000pt;}
.x75_c00402{left:233.200000pt;}
.x50_c00402{left:234.400000pt;}
.x45_c00402{left:236.266667pt;}
.x64_c00402{left:238.000000pt;}
.x4c_c00402{left:239.066667pt;}
.x42_c00402{left:240.000000pt;}
.x61_c00402{left:241.200000pt;}
.x34_c00402{left:242.266667pt;}
.x7f_c00402{left:244.533333pt;}
.x83_c00402{left:245.466667pt;}
.x2c_c00402{left:246.933333pt;}
.x21_c00402{left:248.000000pt;}
.x4d_c00402{left:249.333333pt;}
.x6c_c00402{left:250.933333pt;}
.x27_c00402{left:252.800000pt;}
.x37_c00402{left:255.200000pt;}
.x87_c00402{left:256.533333pt;}
.x14_c00402{left:257.866667pt;}
.xa_c00402{left:263.600000pt;}
.x15_c00402{left:266.533333pt;}
.x5d_c00402{left:268.400000pt;}
.x95_c00402{left:269.333333pt;}
.x4e_c00402{left:270.400000pt;}
.x53_c00402{left:272.933333pt;}
.x46_c00402{left:274.933333pt;}
.x85_c00402{left:277.066667pt;}
.x1_c00402{left:280.000000pt;}
.x1d_c00402{left:281.200000pt;}
.x28_c00402{left:286.133333pt;}
.x3d_c00402{left:290.266667pt;}
.x2d_c00402{left:293.600000pt;}
.x22_c00402{left:295.333333pt;}
.x69_c00402{left:296.666667pt;}
.x65_c00402{left:300.400000pt;}
.x29_c00402{left:302.133333pt;}
.x2e_c00402{left:304.133333pt;}
.x6d_c00402{left:308.666667pt;}
.x51_c00402{left:310.000000pt;}
.x54_c00402{left:312.266667pt;}
.x47_c00402{left:314.266667pt;}
.x16_c00402{left:315.200000pt;}
.x39_c00402{left:316.533333pt;}
.x1e_c00402{left:318.266667pt;}
.x84_c00402{left:320.266667pt;}
.x2a_c00402{left:322.933333pt;}
.x71_c00402{left:323.866667pt;}
.x6e_c00402{left:327.200000pt;}
.x48_c00402{left:330.266667pt;}
.x23_c00402{left:331.200000pt;}
.x8c_c00402{left:332.933333pt;}
.x3e_c00402{left:336.000000pt;}
.x80_c00402{left:336.933333pt;}
.xb_c00402{left:338.533333pt;}
.x86_c00402{left:342.666667pt;}
.x2f_c00402{left:343.866667pt;}
.x3f_c00402{left:345.600000pt;}
.x7a_c00402{left:348.266667pt;}
.x56_c00402{left:355.466667pt;}
.x89_c00402{left:358.000000pt;}
.x96_c00402{left:365.066667pt;}
.x97_c00402{left:375.600000pt;}
.x12a_c00402{left:386.933333pt;}
.x98_c00402{left:397.466667pt;}
.xc0_c00402{left:398.400000pt;}
.xd7_c00402{left:399.466667pt;}
.xe3_c00402{left:400.666667pt;}
.xeb_c00402{left:401.733333pt;}
.x117_c00402{left:403.066667pt;}
.x112_c00402{left:404.000000pt;}
.x12b_c00402{left:408.666667pt;}
.x128_c00402{left:413.600000pt;}
.xc5_c00402{left:415.466667pt;}
.xc1_c00402{left:417.333333pt;}
.x99_c00402{left:418.533333pt;}
.x11f_c00402{left:419.466667pt;}
.x107_c00402{left:420.533333pt;}
.xec_c00402{left:421.866667pt;}
.x9f_c00402{left:423.200000pt;}
.x113_c00402{left:427.333333pt;}
.xaf_c00402{left:429.866667pt;}
.x101_c00402{left:432.800000pt;}
.xd8_c00402{left:434.000000pt;}
.xf4_c00402{left:436.000000pt;}
.xf1_c00402{left:438.000000pt;}
.xba_c00402{left:439.733333pt;}
.xfe_c00402{left:441.600000pt;}
.xdf_c00402{left:444.400000pt;}
.xc3_c00402{left:446.800000pt;}
.xe4_c00402{left:448.933333pt;}
.xa7_c00402{left:450.400000pt;}
.xb4_c00402{left:452.933333pt;}
.xc6_c00402{left:454.133333pt;}
.x9a_c00402{left:456.933333pt;}
.xd9_c00402{left:458.933333pt;}
.xa8_c00402{left:461.333333pt;}
.xd4_c00402{left:463.066667pt;}
.xca_c00402{left:464.933333pt;}
.x120_c00402{left:466.533333pt;}
.xa0_c00402{left:468.000000pt;}
.xc7_c00402{left:470.400000pt;}
.x124_c00402{left:472.800000pt;}
.xed_c00402{left:473.733333pt;}
.xf5_c00402{left:476.533333pt;}
.xa1_c00402{left:477.866667pt;}
.xb0_c00402{left:479.733333pt;}
.x105_c00402{left:482.400000pt;}
.xfd_c00402{left:483.866667pt;}
.xd2_c00402{left:487.866667pt;}
.xb5_c00402{left:490.400000pt;}
.xa2_c00402{left:491.600000pt;}
.xc4_c00402{left:492.533333pt;}
.xce_c00402{left:494.000000pt;}
.xdc_c00402{left:495.866667pt;}
.xb1_c00402{left:497.066667pt;}
.xfa_c00402{left:499.733333pt;}
.x118_c00402{left:500.666667pt;}
.x106_c00402{left:501.866667pt;}
.xd3_c00402{left:504.533333pt;}
.x102_c00402{left:506.400000pt;}
.xbb_c00402{left:507.866667pt;}
.xd1_c00402{left:509.066667pt;}
.x115_c00402{left:511.733333pt;}
.xe6_c00402{left:512.666667pt;}
.xcf_c00402{left:514.133333pt;}
.xd5_c00402{left:516.533333pt;}
.x119_c00402{left:518.533333pt;}
.xe8_c00402{left:522.400000pt;}
.xbc_c00402{left:525.200000pt;}
.xf6_c00402{left:526.133333pt;}
.xc2_c00402{left:527.066667pt;}
.xa9_c00402{left:528.533333pt;}
.x108_c00402{left:531.200000pt;}
.x9b_c00402{left:533.466667pt;}
.x10f_c00402{left:535.866667pt;}
.xfb_c00402{left:537.200000pt;}
.xaa_c00402{left:538.400000pt;}
.xd0_c00402{left:539.466667pt;}
.x109_c00402{left:540.533333pt;}
.xe0_c00402{left:542.400000pt;}
.xb2_c00402{left:543.466667pt;}
.x10d_c00402{left:544.666667pt;}
.x129_c00402{left:545.733333pt;}
.xff_c00402{left:548.000000pt;}
.xd6_c00402{left:549.466667pt;}
.xa3_c00402{left:550.533333pt;}
.xdd_c00402{left:551.600000pt;}
.xda_c00402{left:556.800000pt;}
.xb6_c00402{left:560.533333pt;}
.x103_c00402{left:562.400000pt;}
.xab_c00402{left:563.333333pt;}
.x9c_c00402{left:565.733333pt;}
.x11a_c00402{left:567.200000pt;}
.x10a_c00402{left:572.533333pt;}
.x121_c00402{left:574.666667pt;}
.xbd_c00402{left:577.333333pt;}
.xee_c00402{left:578.933333pt;}
.x122_c00402{left:580.266667pt;}
.x100_c00402{left:582.533333pt;}
.x10e_c00402{left:584.400000pt;}
.xbe_c00402{left:585.333333pt;}
.xe7_c00402{left:589.200000pt;}
.x11c_c00402{left:591.733333pt;}
.x110_c00402{left:593.466667pt;}
.xfc_c00402{left:594.533333pt;}
.x104_c00402{left:596.000000pt;}
.x126_c00402{left:597.066667pt;}
.xac_c00402{left:598.266667pt;}
.x9d_c00402{left:599.600000pt;}
.xe9_c00402{left:601.466667pt;}
.xbf_c00402{left:604.266667pt;}
.x10b_c00402{left:605.466667pt;}
.xcb_c00402{left:606.400000pt;}
.xb7_c00402{left:607.866667pt;}
.xea_c00402{left:610.400000pt;}
.xa4_c00402{left:614.266667pt;}
.x123_c00402{left:615.466667pt;}
.x114_c00402{left:616.800000pt;}
.xf7_c00402{left:618.800000pt;}
.xb3_c00402{left:621.200000pt;}
.xde_c00402{left:623.333333pt;}
.xf8_c00402{left:624.800000pt;}
.xcc_c00402{left:625.866667pt;}
.xe1_c00402{left:627.200000pt;}
.xad_c00402{left:628.666667pt;}
.xa5_c00402{left:629.600000pt;}
.x9e_c00402{left:630.933333pt;}
.xb8_c00402{left:632.133333pt;}
.xf2_c00402{left:633.066667pt;}
.xc8_c00402{left:634.533333pt;}
.x116_c00402{left:635.733333pt;}
.x11d_c00402{left:637.200000pt;}
.x125_c00402{left:639.200000pt;}
.xcd_c00402{left:641.200000pt;}
.xef_c00402{left:643.866667pt;}
.x10c_c00402{left:646.133333pt;}
.xdb_c00402{left:650.533333pt;}
.xb9_c00402{left:652.266667pt;}
.x11e_c00402{left:653.466667pt;}
.xa6_c00402{left:655.200000pt;}
.x2_c00402{left:657.600000pt;}
.xf3_c00402{left:659.333333pt;}
.xe5_c00402{left:661.466667pt;}
.xae_c00402{left:662.533333pt;}
.x127_c00402{left:663.600000pt;}
.xf0_c00402{left:665.600000pt;}
.xf9_c00402{left:667.066667pt;}
.x11b_c00402{left:668.266667pt;}
.xc9_c00402{left:670.400000pt;}
.x111_c00402{left:673.733333pt;}
.xe2_c00402{left:682.266667pt;}
}





/* 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_c00403 {
    display:none;
  }
  .loading-indicator_c00403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00403 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_c00403 { 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_c00403" -> "#page-container .classname_c00403")
 */
.pf_c00403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00403 { /* 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_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00403 { /* 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_c00403 { /* 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_c00403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00403 {overflow:visible;}
  }
}
.c_c00403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00403 { /* 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_c00403:after { /* webkit #35443 */
  content: '';
}
.t_c00403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00403 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 */
}
.__c00403 { /* 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_c00403 { /* info for Javascript */
  display:none;
}
.l_c00403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00403: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_c00403 {
    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_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00403.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_c00403 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00403;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.000000;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;}
.ma0_c00403{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00403{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00403{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m113_c00403{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.mad_c00403{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.md0_c00403{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md6_c00403{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00403{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00403{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md5_c00403{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00403{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m49_c00403{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00403{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me0_c00403{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mae_c00403{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.md4_c00403{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.md1_c00403{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00403{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00403{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00403{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m17_c00403{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m83_c00403{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00403{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.md2_c00403{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m109_c00403{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00403{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.md7_c00403{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m72_c00403{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00403{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mba_c00403{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00403{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m62_c00403{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00403{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00403{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mda_c00403{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00403{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00403{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00403{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00403{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7_c00403{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00403{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.ma_c00403{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m14_c00403{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m96_c00403{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.md9_c00403{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m44_c00403{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m80_c00403{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m115_c00403{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m86_c00403{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m97_c00403{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00403{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m116_c00403{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00403{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00403{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m91_c00403{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00403{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00403{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3_c00403{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m31_c00403{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.me3_c00403{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m102_c00403{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m8_c00403{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00403{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m75_c00403{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mab_c00403{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m92_c00403{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00403{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m47_c00403{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m100_c00403{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00403{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5_c00403{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m41_c00403{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m94_c00403{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00403{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00403{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m88_c00403{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m79_c00403{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00403{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00403{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me9_c00403{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m71_c00403{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m119_c00403{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.me8_c00403{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m84_c00403{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00403{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00403{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m66_c00403{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00403{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m20_c00403{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mca_c00403{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00403{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m22_c00403{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m81_c00403{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00403{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00403{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00403{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00403{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00403{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mee_c00403{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m64_c00403{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m26_c00403{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m53_c00403{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m36_c00403{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m56_c00403{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m85_c00403{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m103_c00403{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m27_c00403{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00403{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m18_c00403{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00403{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mef_c00403{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00403{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m78_c00403{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m51_c00403{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m69_c00403{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m74_c00403{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00403{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m40_c00403{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00403{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00403{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m114_c00403{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00403{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00403{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00403{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m93_c00403{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m38_c00403{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m54_c00403{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m33_c00403{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m63_c00403{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00403{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m61_c00403{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00403{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00403{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m105_c00403{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m45_c00403{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00403{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m60_c00403{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m77_c00403{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00403{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m112_c00403{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.maa_c00403{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m4_c00403{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me5_c00403{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00403{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m37_c00403{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m15_c00403{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m48_c00403{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6_c00403{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m82_c00403{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m111_c00403{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m118_c00403{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m68_c00403{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.med_c00403{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00403{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mff_c00403{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00403{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m50_c00403{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m65_c00403{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m59_c00403{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me4_c00403{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m42_c00403{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m46_c00403{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00403{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00403{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00403{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00403{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00403{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00403{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00403{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.meb_c00403{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m28_c00403{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m95_c00403{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00403{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m29_c00403{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00403{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00403{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m87_c00403{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m16_c00403{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00403{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m12_c00403{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m43_c00403{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00403{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m52_c00403{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00403{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.me6_c00403{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00403{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m57_c00403{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00403{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me_c00403{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9_c00403{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mea_c00403{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00403{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m30_c00403{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00403{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00403{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m11_c00403{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m55_c00403{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00403{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m108_c00403{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00403{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00403{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00403{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00403{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m21_c00403{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00403{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m25_c00403{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00403{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m58_c00403{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc_c00403{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m23_c00403{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mce_c00403{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.maf_c00403{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m24_c00403{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00403{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m89_c00403{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m13_c00403{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me1_c00403{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m76_c00403{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00403{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00403{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00403{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m73_c00403{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m19_c00403{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mec_c00403{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00403{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00403{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00403{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00403{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me7_c00403{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00403{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00403{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00403{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00403{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m34_c00403{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m106_c00403{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00403{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m101_c00403{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m39_c00403{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00403{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);}
.mb6_c00403{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00403{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00403{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mde_c00403{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m67_c00403{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00403{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00403{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00403{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m90_c00403{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00403{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m107_c00403{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00403{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m98_c00403{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me2_c00403{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m110_c00403{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00403{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00403{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m104_c00403{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00403{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m99_c00403{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m10_c00403{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00403{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.md_c00403{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md3_c00403{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00403{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00403{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00403{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00403{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00403{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00403{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m117_c00403{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00403{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00403{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00403{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00403{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m70_c00403{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00403{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.mf_c00403{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m32_c00403{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md8_c00403{transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);}
.mb_c00403{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.mac_c00403{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m35_c00403{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m1_c00403{transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls1_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:53.428954px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{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__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00403{word-spacing:-80.428954px;}
.ws0_c00403{word-spacing:-2.389685px;}
.ws1_c00403{word-spacing:-2.118598px;}
.ws9_c00403{word-spacing:0.000000px;}
.ws3_c00403{word-spacing:4.285714px;}
.ws2_c00403{word-spacing:16.186246px;}
.ws8_c00403{word-spacing:19.090909px;}
.ws4_c00403{word-spacing:29.285714px;}
.ws7_c00403{word-spacing:35.097421px;}
.ws6_c00403{word-spacing:51.535714px;}
._2_c00403{margin-left:-53.428954px;}
._1_c00403{margin-left:-3.217158px;}
._0_c00403{width:55.714286px;}
.fc0_c00403{color:transparent;}
.fs5_c00403{font-size:42.000000px;}
.fs2_c00403{font-size:54.000000px;}
.fs3_c00403{font-size:60.000000px;}
.fs4_c00403{font-size:66.000000px;}
.fs1_c00403{font-size:72.000000px;}
.fs0_c00403{font-size:84.000000px;}
.y0_c00403{bottom:0.000000px;}
.y63_c00403{bottom:178.950000px;}
.y62_c00403{bottom:197.700000px;}
.y33_c00403{bottom:200.850000px;}
.y32_c00403{bottom:218.550000px;}
.y61_c00403{bottom:223.500000px;}
.y31_c00403{bottom:235.350000px;}
.y60_c00403{bottom:241.950000px;}
.y30_c00403{bottom:252.300000px;}
.y5f_c00403{bottom:259.950000px;}
.y5e_c00403{bottom:277.950000px;}
.y2f_c00403{bottom:281.850000px;}
.y2e_c00403{bottom:287.550000px;}
.y5d_c00403{bottom:295.950000px;}
.y2d_c00403{bottom:305.250000px;}
.y5c_c00403{bottom:320.400000px;}
.y2c_c00403{bottom:322.500000px;}
.y2b_c00403{bottom:339.450000px;}
.y5b_c00403{bottom:344.850000px;}
.y2a_c00403{bottom:361.500000px;}
.y5a_c00403{bottom:369.450000px;}
.y29_c00403{bottom:378.750000px;}
.y59_c00403{bottom:387.750000px;}
.y58_c00403{bottom:405.750000px;}
.y28_c00403{bottom:409.650000px;}
.y57_c00403{bottom:432.000000px;}
.y27_c00403{bottom:436.800000px;}
.y56_c00403{bottom:450.750000px;}
.y26_c00403{bottom:454.500000px;}
.y25_c00403{bottom:472.500000px;}
.y55_c00403{bottom:489.450000px;}
.y24_c00403{bottom:490.500000px;}
.y23_c00403{bottom:508.500000px;}
.y54_c00403{bottom:508.950000px;}
.y22_c00403{bottom:526.200000px;}
.y53_c00403{bottom:526.950000px;}
.y21_c00403{bottom:544.200000px;}
.y52_c00403{bottom:544.950000px;}
.y20_c00403{bottom:561.900000px;}
.y51_c00403{bottom:562.650000px;}
.y1f_c00403{bottom:579.600000px;}
.y50_c00403{bottom:580.650000px;}
.y1e_c00403{bottom:597.600000px;}
.y4f_c00403{bottom:598.950000px;}
.y1d_c00403{bottom:615.600000px;}
.y4e_c00403{bottom:616.650000px;}
.y1c_c00403{bottom:633.600000px;}
.y4d_c00403{bottom:634.650000px;}
.y1b_c00403{bottom:651.600000px;}
.y4c_c00403{bottom:652.650000px;}
.y4b_c00403{bottom:670.650000px;}
.y1a_c00403{bottom:677.850000px;}
.y4a_c00403{bottom:688.650000px;}
.y19_c00403{bottom:696.000000px;}
.y18_c00403{bottom:714.000000px;}
.y49_c00403{bottom:714.600000px;}
.y17_c00403{bottom:732.300000px;}
.y48_c00403{bottom:740.550000px;}
.y16_c00403{bottom:749.550000px;}
.y47_c00403{bottom:758.550000px;}
.y15_c00403{bottom:776.100000px;}
.y46_c00403{bottom:776.550000px;}
.y14_c00403{bottom:794.400000px;}
.y45_c00403{bottom:794.550000px;}
.y13_c00403{bottom:812.100000px;}
.y44_c00403{bottom:812.550000px;}
.y12_c00403{bottom:830.100000px;}
.y43_c00403{bottom:830.550000px;}
.y11_c00403{bottom:848.100000px;}
.y42_c00403{bottom:848.550000px;}
.y10_c00403{bottom:866.100000px;}
.y41_c00403{bottom:866.550000px;}
.yf_c00403{bottom:884.100000px;}
.y40_c00403{bottom:884.550000px;}
.ye_c00403{bottom:902.100000px;}
.y3f_c00403{bottom:902.550000px;}
.yd_c00403{bottom:920.100000px;}
.yc_c00403{bottom:942.150000px;}
.y3e_c00403{bottom:946.800000px;}
.y3d_c00403{bottom:960.900000px;}
.yb_c00403{bottom:963.750000px;}
.y3c_c00403{bottom:975.600000px;}
.ya_c00403{bottom:985.650000px;}
.y3b_c00403{bottom:990.000000px;}
.y9_c00403{bottom:1003.650000px;}
.y3a_c00403{bottom:1004.400000px;}
.y39_c00403{bottom:1018.050000px;}
.y8_c00403{bottom:1022.100000px;}
.y38_c00403{bottom:1033.950000px;}
.y7_c00403{bottom:1043.700000px;}
.y37_c00403{bottom:1057.350000px;}
.y6_c00403{bottom:1061.700000px;}
.y36_c00403{bottom:1075.350000px;}
.y5_c00403{bottom:1079.700000px;}
.y4_c00403{bottom:1101.300000px;}
.y35_c00403{bottom:1101.600000px;}
.y3_c00403{bottom:1119.300000px;}
.y34_c00403{bottom:1119.600000px;}
.y2_c00403{bottom:1145.400000px;}
.y1_c00403{bottom:1146.900000px;}
.h7_c00403{height:42.000000px;}
.h4_c00403{height:54.000000px;}
.h5_c00403{height:60.000000px;}
.h6_c00403{height:66.000000px;}
.h3_c00403{height:72.000000px;}
.h2_c00403{height:84.000000px;}
.h1_c00403{height:1272.000000px;}
.h0_c00403{height:1272.239960px;}
.w0_c00403{width:960.480010px;}
.w1_c00403{width:960.750000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:194.100000px;}
.x83_c00403{left:196.950000px;}
.x38_c00403{left:211.950000px;}
.xb_c00403{left:213.900000px;}
.x89_c00403{left:214.950000px;}
.x8c_c00403{left:216.150000px;}
.x45_c00403{left:230.100000px;}
.x3_c00403{left:231.900000px;}
.x23_c00403{left:235.500000px;}
.x39_c00403{left:240.000000px;}
.x80_c00403{left:241.950000px;}
.x2f_c00403{left:243.000000px;}
.x77_c00403{left:245.850000px;}
.x46_c00403{left:247.800000px;}
.x5f_c00403{left:250.800000px;}
.xc_c00403{left:253.500000px;}
.x7e_c00403{left:256.500000px;}
.x3f_c00403{left:258.300000px;}
.x2d_c00403{left:260.250000px;}
.x3a_c00403{left:262.350000px;}
.x56_c00403{left:265.050000px;}
.x52_c00403{left:268.050000px;}
.xd_c00403{left:271.050000px;}
.x34_c00403{left:272.850000px;}
.x73_c00403{left:274.650000px;}
.x13_c00403{left:276.300000px;}
.x19_c00403{left:278.550000px;}
.x24_c00403{left:280.500000px;}
.x2a_c00403{left:282.600000px;}
.x8e_c00403{left:284.550000px;}
.x40_c00403{left:286.350000px;}
.x1a_c00403{left:289.650000px;}
.x60_c00403{left:292.200000px;}
.x1e_c00403{left:295.200000px;}
.x2e_c00403{left:297.300000px;}
.x4_c00403{left:298.800000px;}
.x30_c00403{left:300.900000px;}
.x35_c00403{left:302.700000px;}
.x1b_c00403{left:305.550000px;}
.x74_c00403{left:306.750000px;}
.x57_c00403{left:307.800000px;}
.xe_c00403{left:311.700000px;}
.x6f_c00403{left:316.500000px;}
.x85_c00403{left:318.900000px;}
.x3b_c00403{left:320.700000px;}
.x14_c00403{left:323.400000px;}
.x66_c00403{left:325.050000px;}
.x87_c00403{left:327.600000px;}
.x25_c00403{left:330.150000px;}
.x81_c00403{left:331.200000px;}
.x5d_c00403{left:332.700000px;}
.x53_c00403{left:334.650000px;}
.xf_c00403{left:336.600000px;}
.x70_c00403{left:339.150000px;}
.x7c_c00403{left:340.350000px;}
.x61_c00403{left:341.850000px;}
.x5_c00403{left:344.100000px;}
.x5a_c00403{left:347.100000px;}
.x82_c00403{left:348.450000px;}
.x4c_c00403{left:350.550000px;}
.x8f_c00403{left:352.650000px;}
.x92_c00403{left:354.300000px;}
.x36_c00403{left:355.650000px;}
.x31_c00403{left:357.750000px;}
.x3c_c00403{left:360.000000px;}
.x26_c00403{left:363.600000px;}
.x15_c00403{left:366.300000px;}
.x49_c00403{left:367.800000px;}
.x6_c00403{left:369.000000px;}
.x4e_c00403{left:370.800000px;}
.x1f_c00403{left:371.850000px;}
.x68_c00403{left:374.250000px;}
.x94_c00403{left:375.600000px;}
.x75_c00403{left:376.650000px;}
.x1c_c00403{left:378.300000px;}
.x16_c00403{left:382.200000px;}
.x41_c00403{left:383.550000px;}
.x54_c00403{left:385.050000px;}
.x78_c00403{left:387.600000px;}
.x86_c00403{left:390.150000px;}
.x27_c00403{left:391.650000px;}
.x69_c00403{left:394.050000px;}
.x63_c00403{left:397.050000px;}
.x10_c00403{left:399.900000px;}
.x2b_c00403{left:401.400000px;}
.x71_c00403{left:402.450000px;}
.x47_c00403{left:404.100000px;}
.x1d_c00403{left:405.300000px;}
.x6c_c00403{left:406.350000px;}
.x8d_c00403{left:408.000000px;}
.x90_c00403{left:410.250000px;}
.x7f_c00403{left:412.650000px;}
.x88_c00403{left:413.700000px;}
.x7_c00403{left:414.750000px;}
.x5b_c00403{left:417.300000px;}
.x37_c00403{left:418.350000px;}
.x79_c00403{left:420.000000px;}
.x2c_c00403{left:421.500000px;}
.x6d_c00403{left:422.850000px;}
.x42_c00403{left:423.900000px;}
.x4f_c00403{left:425.850000px;}
.x4a_c00403{left:427.950000px;}
.x32_c00403{left:430.050000px;}
.x7a_c00403{left:432.300000px;}
.x4d_c00403{left:435.150000px;}
.x28_c00403{left:436.350000px;}
.x58_c00403{left:439.950000px;}
.x2_c00403{left:441.000000px;}
.x17_c00403{left:443.700000px;}
.x50_c00403{left:445.950000px;}
.x64_c00403{left:447.750000px;}
.x33_c00403{left:449.850000px;}
.x8_c00403{left:452.250000px;}
.x20_c00403{left:455.700000px;}
.x43_c00403{left:457.350000px;}
.x59_c00403{left:459.750000px;}
.x91_c00403{left:460.950000px;}
.x72_c00403{left:464.700000px;}
.x21_c00403{left:469.800000px;}
.x11_c00403{left:472.950000px;}
.x67_c00403{left:474.750000px;}
.x65_c00403{left:476.250000px;}
.x9_c00403{left:477.450000px;}
.x3d_c00403{left:478.500000px;}
.x6a_c00403{left:479.700000px;}
.x6e_c00403{left:480.750000px;}
.x62_c00403{left:481.800000px;}
.x5e_c00403{left:483.600000px;}
.x4b_c00403{left:484.800000px;}
.x48_c00403{left:489.000000px;}
.x8a_c00403{left:490.200000px;}
.x51_c00403{left:492.750000px;}
.x95_c00403{left:494.100000px;}
.x7b_c00403{left:496.350000px;}
.x5c_c00403{left:498.600000px;}
.x22_c00403{left:501.450000px;}
.x29_c00403{left:502.500000px;}
.x12_c00403{left:503.550000px;}
.x7d_c00403{left:505.950000px;}
.x18_c00403{left:507.450000px;}
.x3e_c00403{left:516.000000px;}
.x6b_c00403{left:517.800000px;}
.x76_c00403{left:519.150000px;}
.x55_c00403{left:520.650000px;}
.xa_c00403{left:521.700000px;}
.x93_c00403{left:525.000000px;}
.x44_c00403{left:528.600000px;}
.x8b_c00403{left:531.900000px;}
.x84_c00403{left:542.700000px;}
.xae_c00403{left:553.350000px;}
.xa3_c00403{left:554.400000px;}
.x116_c00403{left:555.450000px;}
.xb5_c00403{left:568.050000px;}
.xaa_c00403{left:570.900000px;}
.x96_c00403{left:572.400000px;}
.x123_c00403{left:573.450000px;}
.xb6_c00403{left:583.200000px;}
.xe3_c00403{left:588.450000px;}
.x118_c00403{left:591.450000px;}
.xab_c00403{left:593.550000px;}
.xe7_c00403{left:595.650000px;}
.x10b_c00403{left:597.900000px;}
.xa4_c00403{left:599.700000px;}
.xd4_c00403{left:601.200000px;}
.xdb_c00403{left:603.900000px;}
.xf8_c00403{left:606.600000px;}
.x124_c00403{left:608.400000px;}
.xe4_c00403{left:610.800000px;}
.xea_c00403{left:612.000000px;}
.xaf_c00403{left:613.500000px;}
.x128_c00403{left:614.850000px;}
.xb7_c00403{left:615.900000px;}
.x108_c00403{left:617.400000px;}
.x111_c00403{left:618.750000px;}
.x9d_c00403{left:620.400000px;}
.xce_c00403{left:622.500000px;}
.x113_c00403{left:623.550000px;}
.x11b_c00403{left:625.500000px;}
.xe6_c00403{left:629.100000px;}
.xf9_c00403{left:630.750000px;}
.x129_c00403{left:632.100000px;}
.xe0_c00403{left:633.750000px;}
.xb8_c00403{left:634.950000px;}
.x119_c00403{left:636.450000px;}
.xca_c00403{left:639.450000px;}
.xdc_c00403{left:640.950000px;}
.x109_c00403{left:644.100000px;}
.xfa_c00403{left:646.950000px;}
.x114_c00403{left:648.750000px;}
.xf0_c00403{left:650.400000px;}
.x97_c00403{left:652.350000px;}
.x10e_c00403{left:654.300000px;}
.xcf_c00403{left:655.650000px;}
.xe5_c00403{left:656.850000px;}
.xf4_c00403{left:658.650000px;}
.xb9_c00403{left:659.850000px;}
.x11e_c00403{left:661.200000px;}
.x10c_c00403{left:664.200000px;}
.xa5_c00403{left:665.250000px;}
.xc9_c00403{left:666.900000px;}
.xeb_c00403{left:670.350000px;}
.xb0_c00403{left:675.450000px;}
.x11a_c00403{left:678.150000px;}
.x12a_c00403{left:679.200000px;}
.xfb_c00403{left:680.400000px;}
.x10d_c00403{left:683.700000px;}
.x11f_c00403{left:685.500000px;}
.xcb_c00403{left:687.300000px;}
.x11c_c00403{left:689.250000px;}
.x9e_c00403{left:690.300000px;}
.x125_c00403{left:691.500000px;}
.x98_c00403{left:694.500000px;}
.xd0_c00403{left:695.550000px;}
.x103_c00403{left:699.150000px;}
.xfc_c00403{left:702.750000px;}
.xf5_c00403{left:703.800000px;}
.x107_c00403{left:705.600000px;}
.xba_c00403{left:706.650000px;}
.x112_c00403{left:709.500000px;}
.xf1_c00403{left:711.000000px;}
.xc5_c00403{left:712.200000px;}
.xa6_c00403{left:714.150000px;}
.xe8_c00403{left:715.950000px;}
.xd1_c00403{left:717.150000px;}
.xc6_c00403{left:719.400000px;}
.xfd_c00403{left:722.250000px;}
.xff_c00403{left:723.450000px;}
.xdd_c00403{left:725.550000px;}
.x12b_c00403{left:727.050000px;}
.xd5_c00403{left:729.000000px;}
.xf6_c00403{left:730.800000px;}
.x9f_c00403{left:732.000000px;}
.xc7_c00403{left:733.800000px;}
.xec_c00403{left:736.500000px;}
.x99_c00403{left:738.750000px;}
.xac_c00403{left:740.550000px;}
.xc8_c00403{left:742.050000px;}
.xbd_c00403{left:743.250000px;}
.x100_c00403{left:744.300000px;}
.xa7_c00403{left:746.550000px;}
.xc1_c00403{left:748.650000px;}
.xbe_c00403{left:750.450000px;}
.xe1_c00403{left:753.300000px;}
.x9a_c00403{left:755.700000px;}
.xed_c00403{left:757.800000px;}
.xad_c00403{left:758.850000px;}
.xd2_c00403{left:761.100000px;}
.xd6_c00403{left:762.450000px;}
.x121_c00403{left:763.500000px;}
.x104_c00403{left:765.750000px;}
.xe2_c00403{left:767.700000px;}
.xb1_c00403{left:768.750000px;}
.x120_c00403{left:770.100000px;}
.xde_c00403{left:772.350000px;}
.xbb_c00403{left:775.050000px;}
.xd7_c00403{left:776.100000px;}
.xa0_c00403{left:780.600000px;}
.xd3_c00403{left:782.400000px;}
.xf2_c00403{left:784.200000px;}
.xc2_c00403{left:785.850000px;}
.x10f_c00403{left:791.550000px;}
.xc3_c00403{left:793.050000px;}
.xbc_c00403{left:795.150000px;}
.x122_c00403{left:797.400000px;}
.x101_c00403{left:798.750000px;}
.x10a_c00403{left:801.000000px;}
.xd8_c00403{left:804.900000px;}
.xa1_c00403{left:807.600000px;}
.xee_c00403{left:810.300000px;}
.x11d_c00403{left:811.950000px;}
.xb2_c00403{left:813.000000px;}
.x9b_c00403{left:815.850000px;}
.x12d_c00403{left:817.500000px;}
.x102_c00403{left:819.000000px;}
.xc4_c00403{left:820.050000px;}
.xf7_c00403{left:821.400000px;}
.xbf_c00403{left:822.750000px;}
.x12c_c00403{left:824.850000px;}
.xa2_c00403{left:825.900000px;}
.x105_c00403{left:827.250000px;}
.xcc_c00403{left:831.750000px;}
.xef_c00403{left:836.550000px;}
.x126_c00403{left:840.600000px;}
.xd9_c00403{left:841.950000px;}
.xb3_c00403{left:844.350000px;}
.xa8_c00403{left:846.600000px;}
.x106_c00403{left:849.600000px;}
.xc0_c00403{left:851.250000px;}
.xe9_c00403{left:854.250000px;}
.x115_c00403{left:857.100000px;}
.xda_c00403{left:860.700000px;}
.x117_c00403{left:861.900000px;}
.xf3_c00403{left:863.100000px;}
.xcd_c00403{left:867.750000px;}
.xa9_c00403{left:868.950000px;}
.xfe_c00403{left:870.150000px;}
.x110_c00403{left:871.500000px;}
.x9c_c00403{left:872.700000px;}
.x127_c00403{left:875.850000px;}
.xb4_c00403{left:879.600000px;}
.xdf_c00403{left:881.400000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls1_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:47.492404pt;}
.ws5_c00403{word-spacing:-71.492404pt;}
.ws0_c00403{word-spacing:-2.124164pt;}
.ws1_c00403{word-spacing:-1.883199pt;}
.ws9_c00403{word-spacing:0.000000pt;}
.ws3_c00403{word-spacing:3.809524pt;}
.ws2_c00403{word-spacing:14.387775pt;}
.ws8_c00403{word-spacing:16.969697pt;}
.ws4_c00403{word-spacing:26.031746pt;}
.ws7_c00403{word-spacing:31.197708pt;}
.ws6_c00403{word-spacing:45.809524pt;}
._2_c00403{margin-left:-47.492404pt;}
._1_c00403{margin-left:-2.859696pt;}
._0_c00403{width:49.523810pt;}
.fs5_c00403{font-size:37.333333pt;}
.fs2_c00403{font-size:48.000000pt;}
.fs3_c00403{font-size:53.333333pt;}
.fs4_c00403{font-size:58.666667pt;}
.fs1_c00403{font-size:64.000000pt;}
.fs0_c00403{font-size:74.666667pt;}
.y0_c00403{bottom:0.000000pt;}
.y63_c00403{bottom:159.066667pt;}
.y62_c00403{bottom:175.733333pt;}
.y33_c00403{bottom:178.533333pt;}
.y32_c00403{bottom:194.266667pt;}
.y61_c00403{bottom:198.666667pt;}
.y31_c00403{bottom:209.200000pt;}
.y60_c00403{bottom:215.066667pt;}
.y30_c00403{bottom:224.266667pt;}
.y5f_c00403{bottom:231.066667pt;}
.y5e_c00403{bottom:247.066667pt;}
.y2f_c00403{bottom:250.533333pt;}
.y2e_c00403{bottom:255.600000pt;}
.y5d_c00403{bottom:263.066667pt;}
.y2d_c00403{bottom:271.333333pt;}
.y5c_c00403{bottom:284.800000pt;}
.y2c_c00403{bottom:286.666667pt;}
.y2b_c00403{bottom:301.733333pt;}
.y5b_c00403{bottom:306.533333pt;}
.y2a_c00403{bottom:321.333333pt;}
.y5a_c00403{bottom:328.400000pt;}
.y29_c00403{bottom:336.666667pt;}
.y59_c00403{bottom:344.666667pt;}
.y58_c00403{bottom:360.666667pt;}
.y28_c00403{bottom:364.133333pt;}
.y57_c00403{bottom:384.000000pt;}
.y27_c00403{bottom:388.266667pt;}
.y56_c00403{bottom:400.666667pt;}
.y26_c00403{bottom:404.000000pt;}
.y25_c00403{bottom:420.000000pt;}
.y55_c00403{bottom:435.066667pt;}
.y24_c00403{bottom:436.000000pt;}
.y23_c00403{bottom:452.000000pt;}
.y54_c00403{bottom:452.400000pt;}
.y22_c00403{bottom:467.733333pt;}
.y53_c00403{bottom:468.400000pt;}
.y21_c00403{bottom:483.733333pt;}
.y52_c00403{bottom:484.400000pt;}
.y20_c00403{bottom:499.466667pt;}
.y51_c00403{bottom:500.133333pt;}
.y1f_c00403{bottom:515.200000pt;}
.y50_c00403{bottom:516.133333pt;}
.y1e_c00403{bottom:531.200000pt;}
.y4f_c00403{bottom:532.400000pt;}
.y1d_c00403{bottom:547.200000pt;}
.y4e_c00403{bottom:548.133333pt;}
.y1c_c00403{bottom:563.200000pt;}
.y4d_c00403{bottom:564.133333pt;}
.y1b_c00403{bottom:579.200000pt;}
.y4c_c00403{bottom:580.133333pt;}
.y4b_c00403{bottom:596.133333pt;}
.y1a_c00403{bottom:602.533333pt;}
.y4a_c00403{bottom:612.133333pt;}
.y19_c00403{bottom:618.666667pt;}
.y18_c00403{bottom:634.666667pt;}
.y49_c00403{bottom:635.200000pt;}
.y17_c00403{bottom:650.933333pt;}
.y48_c00403{bottom:658.266667pt;}
.y16_c00403{bottom:666.266667pt;}
.y47_c00403{bottom:674.266667pt;}
.y15_c00403{bottom:689.866667pt;}
.y46_c00403{bottom:690.266667pt;}
.y14_c00403{bottom:706.133333pt;}
.y45_c00403{bottom:706.266667pt;}
.y13_c00403{bottom:721.866667pt;}
.y44_c00403{bottom:722.266667pt;}
.y12_c00403{bottom:737.866667pt;}
.y43_c00403{bottom:738.266667pt;}
.y11_c00403{bottom:753.866667pt;}
.y42_c00403{bottom:754.266667pt;}
.y10_c00403{bottom:769.866667pt;}
.y41_c00403{bottom:770.266667pt;}
.yf_c00403{bottom:785.866667pt;}
.y40_c00403{bottom:786.266667pt;}
.ye_c00403{bottom:801.866667pt;}
.y3f_c00403{bottom:802.266667pt;}
.yd_c00403{bottom:817.866667pt;}
.yc_c00403{bottom:837.466667pt;}
.y3e_c00403{bottom:841.600000pt;}
.y3d_c00403{bottom:854.133333pt;}
.yb_c00403{bottom:856.666667pt;}
.y3c_c00403{bottom:867.200000pt;}
.ya_c00403{bottom:876.133333pt;}
.y3b_c00403{bottom:880.000000pt;}
.y9_c00403{bottom:892.133333pt;}
.y3a_c00403{bottom:892.800000pt;}
.y39_c00403{bottom:904.933333pt;}
.y8_c00403{bottom:908.533333pt;}
.y38_c00403{bottom:919.066667pt;}
.y7_c00403{bottom:927.733333pt;}
.y37_c00403{bottom:939.866667pt;}
.y6_c00403{bottom:943.733333pt;}
.y36_c00403{bottom:955.866667pt;}
.y5_c00403{bottom:959.733333pt;}
.y4_c00403{bottom:978.933333pt;}
.y35_c00403{bottom:979.200000pt;}
.y3_c00403{bottom:994.933333pt;}
.y34_c00403{bottom:995.200000pt;}
.y2_c00403{bottom:1018.133333pt;}
.y1_c00403{bottom:1019.466667pt;}
.h7_c00403{height:37.333333pt;}
.h4_c00403{height:48.000000pt;}
.h5_c00403{height:53.333333pt;}
.h6_c00403{height:58.666667pt;}
.h3_c00403{height:64.000000pt;}
.h2_c00403{height:74.666667pt;}
.h1_c00403{height:1130.666667pt;}
.h0_c00403{height:1130.879964pt;}
.w0_c00403{width:853.760009pt;}
.w1_c00403{width:854.000000pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:172.533333pt;}
.x83_c00403{left:175.066667pt;}
.x38_c00403{left:188.400000pt;}
.xb_c00403{left:190.133333pt;}
.x89_c00403{left:191.066667pt;}
.x8c_c00403{left:192.133333pt;}
.x45_c00403{left:204.533333pt;}
.x3_c00403{left:206.133333pt;}
.x23_c00403{left:209.333333pt;}
.x39_c00403{left:213.333333pt;}
.x80_c00403{left:215.066667pt;}
.x2f_c00403{left:216.000000pt;}
.x77_c00403{left:218.533333pt;}
.x46_c00403{left:220.266667pt;}
.x5f_c00403{left:222.933333pt;}
.xc_c00403{left:225.333333pt;}
.x7e_c00403{left:228.000000pt;}
.x3f_c00403{left:229.600000pt;}
.x2d_c00403{left:231.333333pt;}
.x3a_c00403{left:233.200000pt;}
.x56_c00403{left:235.600000pt;}
.x52_c00403{left:238.266667pt;}
.xd_c00403{left:240.933333pt;}
.x34_c00403{left:242.533333pt;}
.x73_c00403{left:244.133333pt;}
.x13_c00403{left:245.600000pt;}
.x19_c00403{left:247.600000pt;}
.x24_c00403{left:249.333333pt;}
.x2a_c00403{left:251.200000pt;}
.x8e_c00403{left:252.933333pt;}
.x40_c00403{left:254.533333pt;}
.x1a_c00403{left:257.466667pt;}
.x60_c00403{left:259.733333pt;}
.x1e_c00403{left:262.400000pt;}
.x2e_c00403{left:264.266667pt;}
.x4_c00403{left:265.600000pt;}
.x30_c00403{left:267.466667pt;}
.x35_c00403{left:269.066667pt;}
.x1b_c00403{left:271.600000pt;}
.x74_c00403{left:272.666667pt;}
.x57_c00403{left:273.600000pt;}
.xe_c00403{left:277.066667pt;}
.x6f_c00403{left:281.333333pt;}
.x85_c00403{left:283.466667pt;}
.x3b_c00403{left:285.066667pt;}
.x14_c00403{left:287.466667pt;}
.x66_c00403{left:288.933333pt;}
.x87_c00403{left:291.200000pt;}
.x25_c00403{left:293.466667pt;}
.x81_c00403{left:294.400000pt;}
.x5d_c00403{left:295.733333pt;}
.x53_c00403{left:297.466667pt;}
.xf_c00403{left:299.200000pt;}
.x70_c00403{left:301.466667pt;}
.x7c_c00403{left:302.533333pt;}
.x61_c00403{left:303.866667pt;}
.x5_c00403{left:305.866667pt;}
.x5a_c00403{left:308.533333pt;}
.x82_c00403{left:309.733333pt;}
.x4c_c00403{left:311.600000pt;}
.x8f_c00403{left:313.466667pt;}
.x92_c00403{left:314.933333pt;}
.x36_c00403{left:316.133333pt;}
.x31_c00403{left:318.000000pt;}
.x3c_c00403{left:320.000000pt;}
.x26_c00403{left:323.200000pt;}
.x15_c00403{left:325.600000pt;}
.x49_c00403{left:326.933333pt;}
.x6_c00403{left:328.000000pt;}
.x4e_c00403{left:329.600000pt;}
.x1f_c00403{left:330.533333pt;}
.x68_c00403{left:332.666667pt;}
.x94_c00403{left:333.866667pt;}
.x75_c00403{left:334.800000pt;}
.x1c_c00403{left:336.266667pt;}
.x16_c00403{left:339.733333pt;}
.x41_c00403{left:340.933333pt;}
.x54_c00403{left:342.266667pt;}
.x78_c00403{left:344.533333pt;}
.x86_c00403{left:346.800000pt;}
.x27_c00403{left:348.133333pt;}
.x69_c00403{left:350.266667pt;}
.x63_c00403{left:352.933333pt;}
.x10_c00403{left:355.466667pt;}
.x2b_c00403{left:356.800000pt;}
.x71_c00403{left:357.733333pt;}
.x47_c00403{left:359.200000pt;}
.x1d_c00403{left:360.266667pt;}
.x6c_c00403{left:361.200000pt;}
.x8d_c00403{left:362.666667pt;}
.x90_c00403{left:364.666667pt;}
.x7f_c00403{left:366.800000pt;}
.x88_c00403{left:367.733333pt;}
.x7_c00403{left:368.666667pt;}
.x5b_c00403{left:370.933333pt;}
.x37_c00403{left:371.866667pt;}
.x79_c00403{left:373.333333pt;}
.x2c_c00403{left:374.666667pt;}
.x6d_c00403{left:375.866667pt;}
.x42_c00403{left:376.800000pt;}
.x4f_c00403{left:378.533333pt;}
.x4a_c00403{left:380.400000pt;}
.x32_c00403{left:382.266667pt;}
.x7a_c00403{left:384.266667pt;}
.x4d_c00403{left:386.800000pt;}
.x28_c00403{left:387.866667pt;}
.x58_c00403{left:391.066667pt;}
.x2_c00403{left:392.000000pt;}
.x17_c00403{left:394.400000pt;}
.x50_c00403{left:396.400000pt;}
.x64_c00403{left:398.000000pt;}
.x33_c00403{left:399.866667pt;}
.x8_c00403{left:402.000000pt;}
.x20_c00403{left:405.066667pt;}
.x43_c00403{left:406.533333pt;}
.x59_c00403{left:408.666667pt;}
.x91_c00403{left:409.733333pt;}
.x72_c00403{left:413.066667pt;}
.x21_c00403{left:417.600000pt;}
.x11_c00403{left:420.400000pt;}
.x67_c00403{left:422.000000pt;}
.x65_c00403{left:423.333333pt;}
.x9_c00403{left:424.400000pt;}
.x3d_c00403{left:425.333333pt;}
.x6a_c00403{left:426.400000pt;}
.x6e_c00403{left:427.333333pt;}
.x62_c00403{left:428.266667pt;}
.x5e_c00403{left:429.866667pt;}
.x4b_c00403{left:430.933333pt;}
.x48_c00403{left:434.666667pt;}
.x8a_c00403{left:435.733333pt;}
.x51_c00403{left:438.000000pt;}
.x95_c00403{left:439.200000pt;}
.x7b_c00403{left:441.200000pt;}
.x5c_c00403{left:443.200000pt;}
.x22_c00403{left:445.733333pt;}
.x29_c00403{left:446.666667pt;}
.x12_c00403{left:447.600000pt;}
.x7d_c00403{left:449.733333pt;}
.x18_c00403{left:451.066667pt;}
.x3e_c00403{left:458.666667pt;}
.x6b_c00403{left:460.266667pt;}
.x76_c00403{left:461.466667pt;}
.x55_c00403{left:462.800000pt;}
.xa_c00403{left:463.733333pt;}
.x93_c00403{left:466.666667pt;}
.x44_c00403{left:469.866667pt;}
.x8b_c00403{left:472.800000pt;}
.x84_c00403{left:482.400000pt;}
.xae_c00403{left:491.866667pt;}
.xa3_c00403{left:492.800000pt;}
.x116_c00403{left:493.733333pt;}
.xb5_c00403{left:504.933333pt;}
.xaa_c00403{left:507.466667pt;}
.x96_c00403{left:508.800000pt;}
.x123_c00403{left:509.733333pt;}
.xb6_c00403{left:518.400000pt;}
.xe3_c00403{left:523.066667pt;}
.x118_c00403{left:525.733333pt;}
.xab_c00403{left:527.600000pt;}
.xe7_c00403{left:529.466667pt;}
.x10b_c00403{left:531.466667pt;}
.xa4_c00403{left:533.066667pt;}
.xd4_c00403{left:534.400000pt;}
.xdb_c00403{left:536.800000pt;}
.xf8_c00403{left:539.200000pt;}
.x124_c00403{left:540.800000pt;}
.xe4_c00403{left:542.933333pt;}
.xea_c00403{left:544.000000pt;}
.xaf_c00403{left:545.333333pt;}
.x128_c00403{left:546.533333pt;}
.xb7_c00403{left:547.466667pt;}
.x108_c00403{left:548.800000pt;}
.x111_c00403{left:550.000000pt;}
.x9d_c00403{left:551.466667pt;}
.xce_c00403{left:553.333333pt;}
.x113_c00403{left:554.266667pt;}
.x11b_c00403{left:556.000000pt;}
.xe6_c00403{left:559.200000pt;}
.xf9_c00403{left:560.666667pt;}
.x129_c00403{left:561.866667pt;}
.xe0_c00403{left:563.333333pt;}
.xb8_c00403{left:564.400000pt;}
.x119_c00403{left:565.733333pt;}
.xca_c00403{left:568.400000pt;}
.xdc_c00403{left:569.733333pt;}
.x109_c00403{left:572.533333pt;}
.xfa_c00403{left:575.066667pt;}
.x114_c00403{left:576.666667pt;}
.xf0_c00403{left:578.133333pt;}
.x97_c00403{left:579.866667pt;}
.x10e_c00403{left:581.600000pt;}
.xcf_c00403{left:582.800000pt;}
.xe5_c00403{left:583.866667pt;}
.xf4_c00403{left:585.466667pt;}
.xb9_c00403{left:586.533333pt;}
.x11e_c00403{left:587.733333pt;}
.x10c_c00403{left:590.400000pt;}
.xa5_c00403{left:591.333333pt;}
.xc9_c00403{left:592.800000pt;}
.xeb_c00403{left:595.866667pt;}
.xb0_c00403{left:600.400000pt;}
.x11a_c00403{left:602.800000pt;}
.x12a_c00403{left:603.733333pt;}
.xfb_c00403{left:604.800000pt;}
.x10d_c00403{left:607.733333pt;}
.x11f_c00403{left:609.333333pt;}
.xcb_c00403{left:610.933333pt;}
.x11c_c00403{left:612.666667pt;}
.x9e_c00403{left:613.600000pt;}
.x125_c00403{left:614.666667pt;}
.x98_c00403{left:617.333333pt;}
.xd0_c00403{left:618.266667pt;}
.x103_c00403{left:621.466667pt;}
.xfc_c00403{left:624.666667pt;}
.xf5_c00403{left:625.600000pt;}
.x107_c00403{left:627.200000pt;}
.xba_c00403{left:628.133333pt;}
.x112_c00403{left:630.666667pt;}
.xf1_c00403{left:632.000000pt;}
.xc5_c00403{left:633.066667pt;}
.xa6_c00403{left:634.800000pt;}
.xe8_c00403{left:636.400000pt;}
.xd1_c00403{left:637.466667pt;}
.xc6_c00403{left:639.466667pt;}
.xfd_c00403{left:642.000000pt;}
.xff_c00403{left:643.066667pt;}
.xdd_c00403{left:644.933333pt;}
.x12b_c00403{left:646.266667pt;}
.xd5_c00403{left:648.000000pt;}
.xf6_c00403{left:649.600000pt;}
.x9f_c00403{left:650.666667pt;}
.xc7_c00403{left:652.266667pt;}
.xec_c00403{left:654.666667pt;}
.x99_c00403{left:656.666667pt;}
.xac_c00403{left:658.266667pt;}
.xc8_c00403{left:659.600000pt;}
.xbd_c00403{left:660.666667pt;}
.x100_c00403{left:661.600000pt;}
.xa7_c00403{left:663.600000pt;}
.xc1_c00403{left:665.466667pt;}
.xbe_c00403{left:667.066667pt;}
.xe1_c00403{left:669.600000pt;}
.x9a_c00403{left:671.733333pt;}
.xed_c00403{left:673.600000pt;}
.xad_c00403{left:674.533333pt;}
.xd2_c00403{left:676.533333pt;}
.xd6_c00403{left:677.733333pt;}
.x121_c00403{left:678.666667pt;}
.x104_c00403{left:680.666667pt;}
.xe2_c00403{left:682.400000pt;}
.xb1_c00403{left:683.333333pt;}
.x120_c00403{left:684.533333pt;}
.xde_c00403{left:686.533333pt;}
.xbb_c00403{left:688.933333pt;}
.xd7_c00403{left:689.866667pt;}
.xa0_c00403{left:693.866667pt;}
.xd3_c00403{left:695.466667pt;}
.xf2_c00403{left:697.066667pt;}
.xc2_c00403{left:698.533333pt;}
.x10f_c00403{left:703.600000pt;}
.xc3_c00403{left:704.933333pt;}
.xbc_c00403{left:706.800000pt;}
.x122_c00403{left:708.800000pt;}
.x101_c00403{left:710.000000pt;}
.x10a_c00403{left:712.000000pt;}
.xd8_c00403{left:715.466667pt;}
.xa1_c00403{left:717.866667pt;}
.xee_c00403{left:720.266667pt;}
.x11d_c00403{left:721.733333pt;}
.xb2_c00403{left:722.666667pt;}
.x9b_c00403{left:725.200000pt;}
.x12d_c00403{left:726.666667pt;}
.x102_c00403{left:728.000000pt;}
.xc4_c00403{left:728.933333pt;}
.xf7_c00403{left:730.133333pt;}
.xbf_c00403{left:731.333333pt;}
.x12c_c00403{left:733.200000pt;}
.xa2_c00403{left:734.133333pt;}
.x105_c00403{left:735.333333pt;}
.xcc_c00403{left:739.333333pt;}
.xef_c00403{left:743.600000pt;}
.x126_c00403{left:747.200000pt;}
.xd9_c00403{left:748.400000pt;}
.xb3_c00403{left:750.533333pt;}
.xa8_c00403{left:752.533333pt;}
.x106_c00403{left:755.200000pt;}
.xc0_c00403{left:756.666667pt;}
.xe9_c00403{left:759.333333pt;}
.x115_c00403{left:761.866667pt;}
.xda_c00403{left:765.066667pt;}
.x117_c00403{left:766.133333pt;}
.xf3_c00403{left:767.200000pt;}
.xcd_c00403{left:771.333333pt;}
.xa9_c00403{left:772.400000pt;}
.xfe_c00403{left:773.466667pt;}
.x110_c00403{left:774.666667pt;}
.x9c_c00403{left:775.733333pt;}
.x127_c00403{left:778.533333pt;}
.xb4_c00403{left:781.866667pt;}
.xdf_c00403{left:783.466667pt;}
}





/* 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_c00404 {
    display:none;
  }
  .loading-indicator_c00404.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00404 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_c00404 { 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_c00404" -> "#page-container .classname_c00404")
 */
.pf_c00404 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00404 { /* 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_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00404 { /* 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_c00404 { /* 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_c00404 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00404 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00404 {overflow:visible;}
  }
}
.c_c00404 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00404 { /* 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_c00404:after { /* webkit #35443 */
  content: '';
}
.t_c00404:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00404 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 */
}
.__c00404 { /* 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_c00404 { /* info for Javascript */
  display:none;
}
.l_c00404 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00404 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00404 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00404: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_c00404 {
    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_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00404.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_c00404 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00404{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00404;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.000000;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;}
.m7b_c00404{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m96_c00404{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00404{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00404{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m20_c00404{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00404{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m38_c00404{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md9_c00404{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m92_c00404{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m75_c00404{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m73_c00404{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00404{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00404{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m76_c00404{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00404{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m74_c00404{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m9_c00404{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00404{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00404{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00404{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00404{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00404{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00404{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m28_c00404{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m95_c00404{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me1_c00404{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m61_c00404{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00404{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma_c00404{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00404{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00404{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00404{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00404{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mde_c00404{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00404{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me0_c00404{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m68_c00404{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00404{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m18_c00404{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m51_c00404{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00404{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md7_c00404{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00404{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00404{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me5_c00404{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.me4_c00404{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00404{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m55_c00404{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb_c00404{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m44_c00404{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me3_c00404{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mda_c00404{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00404{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m14_c00404{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00404{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00404{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m52_c00404{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m23_c00404{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m30_c00404{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m85_c00404{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m84_c00404{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m99_c00404{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00404{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00404{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00404{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00404{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00404{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00404{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00404{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00404{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m15_c00404{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00404{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m32_c00404{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00404{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00404{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00404{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00404{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me_c00404{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m34_c00404{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00404{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00404{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m97_c00404{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00404{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc_c00404{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00404{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00404{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me2_c00404{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00404{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mec_c00404{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00404{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00404{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00404{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00404{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m65_c00404{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00404{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00404{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m94_c00404{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.md_c00404{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf_c00404{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00404{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m31_c00404{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m47_c00404{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00404{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m41_c00404{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00404{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00404{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m91_c00404{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00404{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m37_c00404{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m12_c00404{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m19_c00404{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md1_c00404{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00404{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m39_c00404{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00404{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mac_c00404{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m54_c00404{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m58_c00404{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m98_c00404{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m86_c00404{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00404{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00404{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mea_c00404{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.maa_c00404{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m90_c00404{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00404{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md3_c00404{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00404{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md4_c00404{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m59_c00404{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00404{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1_c00404{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m27_c00404{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00404{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00404{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00404{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mca_c00404{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me7_c00404{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00404{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md8_c00404{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00404{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mad_c00404{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m60_c00404{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m45_c00404{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00404{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.maf_c00404{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m21_c00404{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00404{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6_c00404{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00404{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00404{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m35_c00404{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00404{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00404{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m78_c00404{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m62_c00404{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m67_c00404{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00404{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00404{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mce_c00404{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.meb_c00404{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00404{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00404{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m11_c00404{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mae_c00404{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m10_c00404{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00404{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me9_c00404{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00404{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m40_c00404{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m77_c00404{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md5_c00404{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m53_c00404{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00404{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m26_c00404{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8_c00404{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m13_c00404{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me8_c00404{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00404{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md0_c00404{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m29_c00404{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00404{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m56_c00404{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m48_c00404{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00404{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m88_c00404{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me6_c00404{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m24_c00404{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m79_c00404{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md2_c00404{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m46_c00404{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m89_c00404{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00404{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17_c00404{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00404{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00404{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00404{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m43_c00404{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m66_c00404{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m25_c00404{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m16_c00404{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m50_c00404{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m22_c00404{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m36_c00404{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m63_c00404{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mba_c00404{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mab_c00404{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m72_c00404{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m64_c00404{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m49_c00404{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m33_c00404{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m69_c00404{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m57_c00404{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md6_c00404{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m42_c00404{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00404{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7_c00404{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00404{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00404{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m70_c00404{transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);}
.med_c00404{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00404{transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00404{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.381250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381250,0.000000,0.000000,0.250000,0,0);}
.m71_c00404{transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00404{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m3_c00404{transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00404{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.m2_c00404{transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00404{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m83_c00404{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c00404{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m80_c00404{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m5_c00404{transform:matrix(0.478000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478000,0.000000,0.000000,0.250000,0,0);}
.m93_c00404{transform:matrix(0.557250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557250,0.000000,0.000000,0.250000,0,0);}
.m81_c00404{transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);}
.m82_c00404{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m87_c00404{transform:matrix(15.874250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(15.874250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(15.874250,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls0_c00404{letter-spacing:0.000000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{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__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00404{word-spacing:-14.245473px;}
.ws6_c00404{word-spacing:-13.375000px;}
.ws1_c00404{word-spacing:-8.650485px;}
.ws7_c00404{word-spacing:0.000000px;}
.ws5_c00404{word-spacing:0.229299px;}
.ws4_c00404{word-spacing:8.333333px;}
.ws0_c00404{word-spacing:16.711656px;}
.ws2_c00404{word-spacing:168.000000px;}
.fc0_c00404{color:transparent;}
.fs5_c00404{font-size:24.000000px;}
.fs8_c00404{font-size:30.000000px;}
.fs9_c00404{font-size:42.000000px;}
.fs4_c00404{font-size:60.000000px;}
.fs3_c00404{font-size:66.000000px;}
.fs2_c00404{font-size:72.000000px;}
.fs6_c00404{font-size:78.000000px;}
.fs1_c00404{font-size:84.000000px;}
.fs7_c00404{font-size:90.000000px;}
.fs0_c00404{font-size:108.000000px;}
.y0_c00404{bottom:0.000000px;}
.y61_c00404{bottom:168.600000px;}
.y60_c00404{bottom:192.300000px;}
.y2f_c00404{bottom:193.650000px;}
.y2e_c00404{bottom:208.050000px;}
.y5f_c00404{bottom:214.650000px;}
.y2d_c00404{bottom:221.400000px;}
.y5e_c00404{bottom:232.950000px;}
.y2c_c00404{bottom:236.850000px;}
.y5d_c00404{bottom:255.150000px;}
.y2b_c00404{bottom:259.500000px;}
.y5c_c00404{bottom:273.150000px;}
.y2a_c00404{bottom:277.500000px;}
.y30_c00404{bottom:284.400000px;}
.y29_c00404{bottom:288.000000px;}
.y5b_c00404{bottom:291.150000px;}
.y28_c00404{bottom:302.850000px;}
.y5a_c00404{bottom:308.850000px;}
.y27_c00404{bottom:315.750000px;}
.y59_c00404{bottom:330.750000px;}
.y26_c00404{bottom:337.350000px;}
.y58_c00404{bottom:348.750000px;}
.y25_c00404{bottom:355.350000px;}
.y57_c00404{bottom:366.450000px;}
.y56_c00404{bottom:383.700000px;}
.y24_c00404{bottom:385.950000px;}
.y55_c00404{bottom:406.050000px;}
.y23_c00404{bottom:417.900000px;}
.y54_c00404{bottom:424.050000px;}
.y22_c00404{bottom:435.600000px;}
.y53_c00404{bottom:442.050000px;}
.y21_c00404{bottom:457.650000px;}
.y52_c00404{bottom:464.400000px;}
.y20_c00404{bottom:479.550000px;}
.y51_c00404{bottom:482.400000px;}
.y50_c00404{bottom:500.100000px;}
.y1f_c00404{bottom:501.900000px;}
.y4f_c00404{bottom:522.300000px;}
.y1e_c00404{bottom:524.100000px;}
.y1d_c00404{bottom:542.100000px;}
.y4e_c00404{bottom:544.350000px;}
.y1c_c00404{bottom:559.800000px;}
.y4d_c00404{bottom:562.350000px;}
.y1b_c00404{bottom:577.800000px;}
.y4c_c00404{bottom:584.850000px;}
.y1a_c00404{bottom:600.150000px;}
.y4b_c00404{bottom:602.550000px;}
.y4a_c00404{bottom:620.550000px;}
.y19_c00404{bottom:622.350000px;}
.y49_c00404{bottom:638.550000px;}
.y18_c00404{bottom:640.050000px;}
.y48_c00404{bottom:656.250000px;}
.y17_c00404{bottom:670.650000px;}
.y47_c00404{bottom:678.300000px;}
.y46_c00404{bottom:700.500000px;}
.y16_c00404{bottom:704.550000px;}
.y45_c00404{bottom:718.500000px;}
.y15_c00404{bottom:740.550000px;}
.y14_c00404{bottom:758.550000px;}
.y44_c00404{bottom:762.900000px;}
.y43_c00404{bottom:781.200000px;}
.y13_c00404{bottom:785.100000px;}
.y42_c00404{bottom:798.750000px;}
.y12_c00404{bottom:811.350000px;}
.y41_c00404{bottom:816.450000px;}
.y11_c00404{bottom:831.150000px;}
.y40_c00404{bottom:838.800000px;}
.y10_c00404{bottom:847.050000px;}
.y3f_c00404{bottom:860.700000px;}
.yf_c00404{bottom:869.400000px;}
.y3e_c00404{bottom:883.050000px;}
.ye_c00404{bottom:887.100000px;}
.y3d_c00404{bottom:901.050000px;}
.yd_c00404{bottom:905.400000px;}
.y3c_c00404{bottom:918.600000px;}
.yc_c00404{bottom:922.650000px;}
.y3b_c00404{bottom:936.600000px;}
.yb_c00404{bottom:945.000000px;}
.y3a_c00404{bottom:954.300000px;}
.ya_c00404{bottom:967.650000px;}
.y39_c00404{bottom:972.300000px;}
.y9_c00404{bottom:985.650000px;}
.y38_c00404{bottom:994.500000px;}
.y8_c00404{bottom:1003.350000px;}
.y7_c00404{bottom:1010.550000px;}
.y37_c00404{bottom:1012.500000px;}
.y6_c00404{bottom:1025.700000px;}
.y36_c00404{bottom:1030.200000px;}
.y5_c00404{bottom:1043.700000px;}
.y35_c00404{bottom:1048.200000px;}
.y34_c00404{bottom:1066.200000px;}
.y4_c00404{bottom:1079.250000px;}
.y33_c00404{bottom:1083.900000px;}
.y32_c00404{bottom:1101.900000px;}
.y3_c00404{bottom:1117.800000px;}
.y31_c00404{bottom:1119.900000px;}
.y2_c00404{bottom:1143.300000px;}
.y1_c00404{bottom:1146.900000px;}
.h7_c00404{height:24.000000px;}
.ha_c00404{height:30.000000px;}
.hb_c00404{height:42.000000px;}
.h6_c00404{height:60.000000px;}
.h5_c00404{height:66.000000px;}
.h4_c00404{height:72.000000px;}
.h8_c00404{height:78.000000px;}
.h3_c00404{height:84.000000px;}
.h9_c00404{height:90.000000px;}
.h2_c00404{height:108.000000px;}
.h1_c00404{height:1267.500000px;}
.h0_c00404{height:1267.559967px;}
.w0_c00404{width:960.480010px;}
.w1_c00404{width:960.750000px;}
.x0_c00404{left:0.000000px;}
.x8_c00404{left:92.100000px;}
.x33_c00404{left:94.350000px;}
.x3c_c00404{left:95.700000px;}
.x5a_c00404{left:98.100000px;}
.x68_c00404{left:99.300000px;}
.x77_c00404{left:100.350000px;}
.x6d_c00404{left:104.700000px;}
.x5_c00404{left:106.800000px;}
.xf_c00404{left:111.750000px;}
.x32_c00404{left:112.800000px;}
.x46_c00404{left:115.200000px;}
.x61_c00404{left:117.600000px;}
.x16_c00404{left:128.550000px;}
.x12_c00404{left:129.900000px;}
.x1c_c00404{left:133.500000px;}
.x59_c00404{left:134.700000px;}
.x69_c00404{left:136.200000px;}
.x6e_c00404{left:140.400000px;}
.x6_c00404{left:143.100000px;}
.x3_c00404{left:146.100000px;}
.x2e_c00404{left:148.650000px;}
.x43_c00404{left:150.900000px;}
.x3a_c00404{left:155.700000px;}
.x5b_c00404{left:159.750000px;}
.x3e_c00404{left:161.550000px;}
.x6f_c00404{left:163.050000px;}
.x73_c00404{left:164.400000px;}
.x9_c00404{left:165.600000px;}
.x5e_c00404{left:170.850000px;}
.x23_c00404{left:173.550000px;}
.x2f_c00404{left:174.600000px;}
.x3b_c00404{left:176.250000px;}
.x1d_c00404{left:179.550000px;}
.x34_c00404{left:180.750000px;}
.x47_c00404{left:184.350000px;}
.x10_c00404{left:186.600000px;}
.x58_c00404{left:187.950000px;}
.x17_c00404{left:189.000000px;}
.x25_c00404{left:190.350000px;}
.x24_c00404{left:195.900000px;}
.x1e_c00404{left:201.900000px;}
.x62_c00404{left:205.500000px;}
.x30_c00404{left:210.600000px;}
.x1f_c00404{left:212.700000px;}
.x74_c00404{left:218.400000px;}
.x4a_c00404{left:219.600000px;}
.xa_c00404{left:221.700000px;}
.x18_c00404{left:225.000000px;}
.x26_c00404{left:228.150000px;}
.x4d_c00404{left:229.350000px;}
.x20_c00404{left:230.700000px;}
.x4b_c00404{left:232.200000px;}
.x70_c00404{left:233.250000px;}
.x3f_c00404{left:234.600000px;}
.x54_c00404{left:237.150000px;}
.x48_c00404{left:242.700000px;}
.x75_c00404{left:244.650000px;}
.xb_c00404{left:246.150000px;}
.x3d_c00404{left:247.650000px;}
.x21_c00404{left:250.500000px;}
.x35_c00404{left:252.450000px;}
.x63_c00404{left:255.150000px;}
.x2b_c00404{left:258.300000px;}
.x71_c00404{left:262.800000px;}
.x5f_c00404{left:264.300000px;}
.x13_c00404{left:265.350000px;}
.x6a_c00404{left:269.100000px;}
.x37_c00404{left:271.950000px;}
.x45_c00404{left:273.600000px;}
.x64_c00404{left:276.000000px;}
.x4_c00404{left:279.300000px;}
.xc_c00404{left:281.400000px;}
.x60_c00404{left:284.850000px;}
.x4c_c00404{left:287.550000px;}
.x19_c00404{left:288.750000px;}
.x78_c00404{left:290.850000px;}
.x40_c00404{left:292.500000px;}
.x27_c00404{left:296.250000px;}
.x5c_c00404{left:299.850000px;}
.x22_c00404{left:307.800000px;}
.x55_c00404{left:311.250000px;}
.x50_c00404{left:314.550000px;}
.x76_c00404{left:317.400000px;}
.x1a_c00404{left:321.150000px;}
.x44_c00404{left:322.950000px;}
.x7_c00404{left:324.600000px;}
.x28_c00404{left:328.950000px;}
.x38_c00404{left:331.050000px;}
.x4e_c00404{left:332.550000px;}
.x1_c00404{left:336.300000px;}
.x51_c00404{left:338.700000px;}
.x56_c00404{left:340.800000px;}
.xd_c00404{left:342.900000px;}
.x41_c00404{left:349.800000px;}
.x36_c00404{left:353.250000px;}
.x14_c00404{left:355.050000px;}
.x6b_c00404{left:357.300000px;}
.x2c_c00404{left:358.800000px;}
.x65_c00404{left:363.750000px;}
.x42_c00404{left:367.050000px;}
.x31_c00404{left:370.500000px;}
.x1b_c00404{left:372.600000px;}
.x6c_c00404{left:377.100000px;}
.x49_c00404{left:378.900000px;}
.x57_c00404{left:382.650000px;}
.x29_c00404{left:385.800000px;}
.x5d_c00404{left:388.650000px;}
.xe_c00404{left:393.300000px;}
.x4f_c00404{left:396.300000px;}
.x72_c00404{left:398.550000px;}
.x39_c00404{left:403.050000px;}
.x52_c00404{left:409.200000px;}
.x2d_c00404{left:416.400000px;}
.x2a_c00404{left:420.300000px;}
.x67_c00404{left:421.350000px;}
.x53_c00404{left:422.850000px;}
.x15_c00404{left:425.550000px;}
.x11_c00404{left:427.650000px;}
.x66_c00404{left:432.900000px;}
.x9e_c00404{left:470.100000px;}
.x79_c00404{left:471.300000px;}
.xd1_c00404{left:472.350000px;}
.xe9_c00404{left:473.550000px;}
.xf7_c00404{left:475.050000px;}
.xff_c00404{left:477.000000px;}
.x98_c00404{left:486.450000px;}
.xa7_c00404{left:488.550000px;}
.xc0_c00404{left:490.500000px;}
.xb6_c00404{left:492.150000px;}
.xf4_c00404{left:493.200000px;}
.xdb_c00404{left:494.850000px;}
.x80_c00404{left:496.800000px;}
.x92_c00404{left:500.400000px;}
.xd5_c00404{left:502.650000px;}
.xfc_c00404{left:504.600000px;}
.xe3_c00404{left:507.600000px;}
.xec_c00404{left:508.950000px;}
.xb9_c00404{left:510.150000px;}
.xe2_c00404{left:511.800000px;}
.x81_c00404{left:513.000000px;}
.x8a_c00404{left:515.850000px;}
.xc7_c00404{left:521.100000px;}
.x100_c00404{left:522.750000px;}
.xc1_c00404{left:524.400000px;}
.x7a_c00404{left:525.600000px;}
.xe6_c00404{left:527.400000px;}
.xce_c00404{left:528.450000px;}
.xa5_c00404{left:529.950000px;}
.x82_c00404{left:531.000000px;}
.xe4_c00404{left:532.500000px;}
.xba_c00404{left:535.350000px;}
.xd6_c00404{left:536.850000px;}
.xb3_c00404{left:538.500000px;}
.xdc_c00404{left:539.550000px;}
.xa2_c00404{left:542.100000px;}
.xd3_c00404{left:543.600000px;}
.xf3_c00404{left:544.650000px;}
.xf0_c00404{left:546.900000px;}
.xd0_c00404{left:548.700000px;}
.xac_c00404{left:550.350000px;}
.x9f_c00404{left:551.400000px;}
.x8b_c00404{left:552.600000px;}
.xbb_c00404{left:554.850000px;}
.xa8_c00404{left:556.650000px;}
.xcd_c00404{left:558.900000px;}
.xae_c00404{left:563.250000px;}
.xb4_c00404{left:564.450000px;}
.xcf_c00404{left:566.550000px;}
.xee_c00404{left:569.550000px;}
.x93_c00404{left:570.600000px;}
.xf8_c00404{left:574.800000px;}
.x8c_c00404{left:577.800000px;}
.x94_c00404{left:579.600000px;}
.xd7_c00404{left:583.350000px;}
.xfd_c00404{left:588.150000px;}
.x83_c00404{left:589.650000px;}
.xbd_c00404{left:590.700000px;}
.xb5_c00404{left:594.750000px;}
.xe5_c00404{left:595.800000px;}
.x99_c00404{left:597.450000px;}
.xfa_c00404{left:598.500000px;}
.x95_c00404{left:599.700000px;}
.x84_c00404{left:601.200000px;}
.xea_c00404{left:603.000000px;}
.xe7_c00404{left:605.100000px;}
.xdd_c00404{left:607.650000px;}
.xd2_c00404{left:608.700000px;}
.xc2_c00404{left:610.050000px;}
.x7b_c00404{left:611.250000px;}
.x8d_c00404{left:612.750000px;}
.xa6_c00404{left:614.550000px;}
.x101_c00404{left:615.750000px;}
.x85_c00404{left:617.100000px;}
.xf5_c00404{left:619.200000px;}
.xed_c00404{left:620.400000px;}
.xad_c00404{left:624.900000px;}
.xeb_c00404{left:626.100000px;}
.xb7_c00404{left:627.150000px;}
.xc8_c00404{left:630.450000px;}
.xfe_c00404{left:633.150000px;}
.xa9_c00404{left:635.100000px;}
.xd4_c00404{left:637.200000px;}
.x8e_c00404{left:638.250000px;}
.xaf_c00404{left:639.600000px;}
.x96_c00404{left:642.900000px;}
.xef_c00404{left:644.100000px;}
.xbc_c00404{left:647.400000px;}
.xa0_c00404{left:648.600000px;}
.x9a_c00404{left:654.000000px;}
.xde_c00404{left:656.550000px;}
.xaa_c00404{left:660.300000px;}
.x86_c00404{left:662.400000px;}
.x9b_c00404{left:664.500000px;}
.xa3_c00404{left:666.000000px;}
.xc3_c00404{left:670.200000px;}
.x87_c00404{left:673.200000px;}
.xc4_c00404{left:674.850000px;}
.xd8_c00404{left:677.700000px;}
.xfb_c00404{left:679.200000px;}
.xbe_c00404{left:683.850000px;}
.x102_c00404{left:685.650000px;}
.xb8_c00404{left:687.300000px;}
.xa1_c00404{left:691.500000px;}
.xf6_c00404{left:692.550000px;}
.x7c_c00404{left:694.350000px;}
.xf9_c00404{left:698.250000px;}
.xb0_c00404{left:701.100000px;}
.x7d_c00404{left:702.600000px;}
.x97_c00404{left:703.800000px;}
.xab_c00404{left:707.400000px;}
.x8f_c00404{left:711.000000px;}
.x9c_c00404{left:712.800000px;}
.xc9_c00404{left:714.750000px;}
.xb1_c00404{left:717.000000px;}
.x105_c00404{left:718.500000px;}
.xcb_c00404{left:720.000000px;}
.xf2_c00404{left:724.950000px;}
.x106_c00404{left:727.800000px;}
.xc5_c00404{left:728.850000px;}
.x88_c00404{left:730.050000px;}
.xdf_c00404{left:734.250000px;}
.x9d_c00404{left:736.200000px;}
.x103_c00404{left:738.150000px;}
.xbf_c00404{left:739.650000px;}
.xd9_c00404{left:741.450000px;}
.x90_c00404{left:743.100000px;}
.xa4_c00404{left:745.200000px;}
.xcc_c00404{left:747.750000px;}
.xf1_c00404{left:751.800000px;}
.x2_c00404{left:754.650000px;}
.x7e_c00404{left:756.300000px;}
.x104_c00404{left:758.700000px;}
.xb2_c00404{left:760.950000px;}
.x89_c00404{left:762.750000px;}
.xc6_c00404{left:766.350000px;}
.xe0_c00404{left:767.400000px;}
.xe8_c00404{left:770.100000px;}
.xda_c00404{left:772.800000px;}
.x7f_c00404{left:775.800000px;}
.x91_c00404{left:778.050000px;}
.xe1_c00404{left:781.050000px;}
.xca_c00404{left:788.850000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws3_c00404{word-spacing:-12.662643pt;}
.ws6_c00404{word-spacing:-11.888889pt;}
.ws1_c00404{word-spacing:-7.689320pt;}
.ws7_c00404{word-spacing:0.000000pt;}
.ws5_c00404{word-spacing:0.203822pt;}
.ws4_c00404{word-spacing:7.407407pt;}
.ws0_c00404{word-spacing:14.854806pt;}
.ws2_c00404{word-spacing:149.333333pt;}
.fs5_c00404{font-size:21.333333pt;}
.fs8_c00404{font-size:26.666667pt;}
.fs9_c00404{font-size:37.333333pt;}
.fs4_c00404{font-size:53.333333pt;}
.fs3_c00404{font-size:58.666667pt;}
.fs2_c00404{font-size:64.000000pt;}
.fs6_c00404{font-size:69.333333pt;}
.fs1_c00404{font-size:74.666667pt;}
.fs7_c00404{font-size:80.000000pt;}
.fs0_c00404{font-size:96.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y61_c00404{bottom:149.866667pt;}
.y60_c00404{bottom:170.933333pt;}
.y2f_c00404{bottom:172.133333pt;}
.y2e_c00404{bottom:184.933333pt;}
.y5f_c00404{bottom:190.800000pt;}
.y2d_c00404{bottom:196.800000pt;}
.y5e_c00404{bottom:207.066667pt;}
.y2c_c00404{bottom:210.533333pt;}
.y5d_c00404{bottom:226.800000pt;}
.y2b_c00404{bottom:230.666667pt;}
.y5c_c00404{bottom:242.800000pt;}
.y2a_c00404{bottom:246.666667pt;}
.y30_c00404{bottom:252.800000pt;}
.y29_c00404{bottom:256.000000pt;}
.y5b_c00404{bottom:258.800000pt;}
.y28_c00404{bottom:269.200000pt;}
.y5a_c00404{bottom:274.533333pt;}
.y27_c00404{bottom:280.666667pt;}
.y59_c00404{bottom:294.000000pt;}
.y26_c00404{bottom:299.866667pt;}
.y58_c00404{bottom:310.000000pt;}
.y25_c00404{bottom:315.866667pt;}
.y57_c00404{bottom:325.733333pt;}
.y56_c00404{bottom:341.066667pt;}
.y24_c00404{bottom:343.066667pt;}
.y55_c00404{bottom:360.933333pt;}
.y23_c00404{bottom:371.466667pt;}
.y54_c00404{bottom:376.933333pt;}
.y22_c00404{bottom:387.200000pt;}
.y53_c00404{bottom:392.933333pt;}
.y21_c00404{bottom:406.800000pt;}
.y52_c00404{bottom:412.800000pt;}
.y20_c00404{bottom:426.266667pt;}
.y51_c00404{bottom:428.800000pt;}
.y50_c00404{bottom:444.533333pt;}
.y1f_c00404{bottom:446.133333pt;}
.y4f_c00404{bottom:464.266667pt;}
.y1e_c00404{bottom:465.866667pt;}
.y1d_c00404{bottom:481.866667pt;}
.y4e_c00404{bottom:483.866667pt;}
.y1c_c00404{bottom:497.600000pt;}
.y4d_c00404{bottom:499.866667pt;}
.y1b_c00404{bottom:513.600000pt;}
.y4c_c00404{bottom:519.866667pt;}
.y1a_c00404{bottom:533.466667pt;}
.y4b_c00404{bottom:535.600000pt;}
.y4a_c00404{bottom:551.600000pt;}
.y19_c00404{bottom:553.200000pt;}
.y49_c00404{bottom:567.600000pt;}
.y18_c00404{bottom:568.933333pt;}
.y48_c00404{bottom:583.333333pt;}
.y17_c00404{bottom:596.133333pt;}
.y47_c00404{bottom:602.933333pt;}
.y46_c00404{bottom:622.666667pt;}
.y16_c00404{bottom:626.266667pt;}
.y45_c00404{bottom:638.666667pt;}
.y15_c00404{bottom:658.266667pt;}
.y14_c00404{bottom:674.266667pt;}
.y44_c00404{bottom:678.133333pt;}
.y43_c00404{bottom:694.400000pt;}
.y13_c00404{bottom:697.866667pt;}
.y42_c00404{bottom:710.000000pt;}
.y12_c00404{bottom:721.200000pt;}
.y41_c00404{bottom:725.733333pt;}
.y11_c00404{bottom:738.800000pt;}
.y40_c00404{bottom:745.600000pt;}
.y10_c00404{bottom:752.933333pt;}
.y3f_c00404{bottom:765.066667pt;}
.yf_c00404{bottom:772.800000pt;}
.y3e_c00404{bottom:784.933333pt;}
.ye_c00404{bottom:788.533333pt;}
.y3d_c00404{bottom:800.933333pt;}
.yd_c00404{bottom:804.800000pt;}
.y3c_c00404{bottom:816.533333pt;}
.yc_c00404{bottom:820.133333pt;}
.y3b_c00404{bottom:832.533333pt;}
.yb_c00404{bottom:840.000000pt;}
.y3a_c00404{bottom:848.266667pt;}
.ya_c00404{bottom:860.133333pt;}
.y39_c00404{bottom:864.266667pt;}
.y9_c00404{bottom:876.133333pt;}
.y38_c00404{bottom:884.000000pt;}
.y8_c00404{bottom:891.866667pt;}
.y7_c00404{bottom:898.266667pt;}
.y37_c00404{bottom:900.000000pt;}
.y6_c00404{bottom:911.733333pt;}
.y36_c00404{bottom:915.733333pt;}
.y5_c00404{bottom:927.733333pt;}
.y35_c00404{bottom:931.733333pt;}
.y34_c00404{bottom:947.733333pt;}
.y4_c00404{bottom:959.333333pt;}
.y33_c00404{bottom:963.466667pt;}
.y32_c00404{bottom:979.466667pt;}
.y3_c00404{bottom:993.600000pt;}
.y31_c00404{bottom:995.466667pt;}
.y2_c00404{bottom:1016.266667pt;}
.y1_c00404{bottom:1019.466667pt;}
.h7_c00404{height:21.333333pt;}
.ha_c00404{height:26.666667pt;}
.hb_c00404{height:37.333333pt;}
.h6_c00404{height:53.333333pt;}
.h5_c00404{height:58.666667pt;}
.h4_c00404{height:64.000000pt;}
.h8_c00404{height:69.333333pt;}
.h3_c00404{height:74.666667pt;}
.h9_c00404{height:80.000000pt;}
.h2_c00404{height:96.000000pt;}
.h1_c00404{height:1126.666667pt;}
.h0_c00404{height:1126.719971pt;}
.w0_c00404{width:853.760009pt;}
.w1_c00404{width:854.000000pt;}
.x0_c00404{left:0.000000pt;}
.x8_c00404{left:81.866667pt;}
.x33_c00404{left:83.866667pt;}
.x3c_c00404{left:85.066667pt;}
.x5a_c00404{left:87.200000pt;}
.x68_c00404{left:88.266667pt;}
.x77_c00404{left:89.200000pt;}
.x6d_c00404{left:93.066667pt;}
.x5_c00404{left:94.933333pt;}
.xf_c00404{left:99.333333pt;}
.x32_c00404{left:100.266667pt;}
.x46_c00404{left:102.400000pt;}
.x61_c00404{left:104.533333pt;}
.x16_c00404{left:114.266667pt;}
.x12_c00404{left:115.466667pt;}
.x1c_c00404{left:118.666667pt;}
.x59_c00404{left:119.733333pt;}
.x69_c00404{left:121.066667pt;}
.x6e_c00404{left:124.800000pt;}
.x6_c00404{left:127.200000pt;}
.x3_c00404{left:129.866667pt;}
.x2e_c00404{left:132.133333pt;}
.x43_c00404{left:134.133333pt;}
.x3a_c00404{left:138.400000pt;}
.x5b_c00404{left:142.000000pt;}
.x3e_c00404{left:143.600000pt;}
.x6f_c00404{left:144.933333pt;}
.x73_c00404{left:146.133333pt;}
.x9_c00404{left:147.200000pt;}
.x5e_c00404{left:151.866667pt;}
.x23_c00404{left:154.266667pt;}
.x2f_c00404{left:155.200000pt;}
.x3b_c00404{left:156.666667pt;}
.x1d_c00404{left:159.600000pt;}
.x34_c00404{left:160.666667pt;}
.x47_c00404{left:163.866667pt;}
.x10_c00404{left:165.866667pt;}
.x58_c00404{left:167.066667pt;}
.x17_c00404{left:168.000000pt;}
.x25_c00404{left:169.200000pt;}
.x24_c00404{left:174.133333pt;}
.x1e_c00404{left:179.466667pt;}
.x62_c00404{left:182.666667pt;}
.x30_c00404{left:187.200000pt;}
.x1f_c00404{left:189.066667pt;}
.x74_c00404{left:194.133333pt;}
.x4a_c00404{left:195.200000pt;}
.xa_c00404{left:197.066667pt;}
.x18_c00404{left:200.000000pt;}
.x26_c00404{left:202.800000pt;}
.x4d_c00404{left:203.866667pt;}
.x20_c00404{left:205.066667pt;}
.x4b_c00404{left:206.400000pt;}
.x70_c00404{left:207.333333pt;}
.x3f_c00404{left:208.533333pt;}
.x54_c00404{left:210.800000pt;}
.x48_c00404{left:215.733333pt;}
.x75_c00404{left:217.466667pt;}
.xb_c00404{left:218.800000pt;}
.x3d_c00404{left:220.133333pt;}
.x21_c00404{left:222.666667pt;}
.x35_c00404{left:224.400000pt;}
.x63_c00404{left:226.800000pt;}
.x2b_c00404{left:229.600000pt;}
.x71_c00404{left:233.600000pt;}
.x5f_c00404{left:234.933333pt;}
.x13_c00404{left:235.866667pt;}
.x6a_c00404{left:239.200000pt;}
.x37_c00404{left:241.733333pt;}
.x45_c00404{left:243.200000pt;}
.x64_c00404{left:245.333333pt;}
.x4_c00404{left:248.266667pt;}
.xc_c00404{left:250.133333pt;}
.x60_c00404{left:253.200000pt;}
.x4c_c00404{left:255.600000pt;}
.x19_c00404{left:256.666667pt;}
.x78_c00404{left:258.533333pt;}
.x40_c00404{left:260.000000pt;}
.x27_c00404{left:263.333333pt;}
.x5c_c00404{left:266.533333pt;}
.x22_c00404{left:273.600000pt;}
.x55_c00404{left:276.666667pt;}
.x50_c00404{left:279.600000pt;}
.x76_c00404{left:282.133333pt;}
.x1a_c00404{left:285.466667pt;}
.x44_c00404{left:287.066667pt;}
.x7_c00404{left:288.533333pt;}
.x28_c00404{left:292.400000pt;}
.x38_c00404{left:294.266667pt;}
.x4e_c00404{left:295.600000pt;}
.x1_c00404{left:298.933333pt;}
.x51_c00404{left:301.066667pt;}
.x56_c00404{left:302.933333pt;}
.xd_c00404{left:304.800000pt;}
.x41_c00404{left:310.933333pt;}
.x36_c00404{left:314.000000pt;}
.x14_c00404{left:315.600000pt;}
.x6b_c00404{left:317.600000pt;}
.x2c_c00404{left:318.933333pt;}
.x65_c00404{left:323.333333pt;}
.x42_c00404{left:326.266667pt;}
.x31_c00404{left:329.333333pt;}
.x1b_c00404{left:331.200000pt;}
.x6c_c00404{left:335.200000pt;}
.x49_c00404{left:336.800000pt;}
.x57_c00404{left:340.133333pt;}
.x29_c00404{left:342.933333pt;}
.x5d_c00404{left:345.466667pt;}
.xe_c00404{left:349.600000pt;}
.x4f_c00404{left:352.266667pt;}
.x72_c00404{left:354.266667pt;}
.x39_c00404{left:358.266667pt;}
.x52_c00404{left:363.733333pt;}
.x2d_c00404{left:370.133333pt;}
.x2a_c00404{left:373.600000pt;}
.x67_c00404{left:374.533333pt;}
.x53_c00404{left:375.866667pt;}
.x15_c00404{left:378.266667pt;}
.x11_c00404{left:380.133333pt;}
.x66_c00404{left:384.800000pt;}
.x9e_c00404{left:417.866667pt;}
.x79_c00404{left:418.933333pt;}
.xd1_c00404{left:419.866667pt;}
.xe9_c00404{left:420.933333pt;}
.xf7_c00404{left:422.266667pt;}
.xff_c00404{left:424.000000pt;}
.x98_c00404{left:432.400000pt;}
.xa7_c00404{left:434.266667pt;}
.xc0_c00404{left:436.000000pt;}
.xb6_c00404{left:437.466667pt;}
.xf4_c00404{left:438.400000pt;}
.xdb_c00404{left:439.866667pt;}
.x80_c00404{left:441.600000pt;}
.x92_c00404{left:444.800000pt;}
.xd5_c00404{left:446.800000pt;}
.xfc_c00404{left:448.533333pt;}
.xe3_c00404{left:451.200000pt;}
.xec_c00404{left:452.400000pt;}
.xb9_c00404{left:453.466667pt;}
.xe2_c00404{left:454.933333pt;}
.x81_c00404{left:456.000000pt;}
.x8a_c00404{left:458.533333pt;}
.xc7_c00404{left:463.200000pt;}
.x100_c00404{left:464.666667pt;}
.xc1_c00404{left:466.133333pt;}
.x7a_c00404{left:467.200000pt;}
.xe6_c00404{left:468.800000pt;}
.xce_c00404{left:469.733333pt;}
.xa5_c00404{left:471.066667pt;}
.x82_c00404{left:472.000000pt;}
.xe4_c00404{left:473.333333pt;}
.xba_c00404{left:475.866667pt;}
.xd6_c00404{left:477.200000pt;}
.xb3_c00404{left:478.666667pt;}
.xdc_c00404{left:479.600000pt;}
.xa2_c00404{left:481.866667pt;}
.xd3_c00404{left:483.200000pt;}
.xf3_c00404{left:484.133333pt;}
.xf0_c00404{left:486.133333pt;}
.xd0_c00404{left:487.733333pt;}
.xac_c00404{left:489.200000pt;}
.x9f_c00404{left:490.133333pt;}
.x8b_c00404{left:491.200000pt;}
.xbb_c00404{left:493.200000pt;}
.xa8_c00404{left:494.800000pt;}
.xcd_c00404{left:496.800000pt;}
.xae_c00404{left:500.666667pt;}
.xb4_c00404{left:501.733333pt;}
.xcf_c00404{left:503.600000pt;}
.xee_c00404{left:506.266667pt;}
.x93_c00404{left:507.200000pt;}
.xf8_c00404{left:510.933333pt;}
.x8c_c00404{left:513.600000pt;}
.x94_c00404{left:515.200000pt;}
.xd7_c00404{left:518.533333pt;}
.xfd_c00404{left:522.800000pt;}
.x83_c00404{left:524.133333pt;}
.xbd_c00404{left:525.066667pt;}
.xb5_c00404{left:528.666667pt;}
.xe5_c00404{left:529.600000pt;}
.x99_c00404{left:531.066667pt;}
.xfa_c00404{left:532.000000pt;}
.x95_c00404{left:533.066667pt;}
.x84_c00404{left:534.400000pt;}
.xea_c00404{left:536.000000pt;}
.xe7_c00404{left:537.866667pt;}
.xdd_c00404{left:540.133333pt;}
.xd2_c00404{left:541.066667pt;}
.xc2_c00404{left:542.266667pt;}
.x7b_c00404{left:543.333333pt;}
.x8d_c00404{left:544.666667pt;}
.xa6_c00404{left:546.266667pt;}
.x101_c00404{left:547.333333pt;}
.x85_c00404{left:548.533333pt;}
.xf5_c00404{left:550.400000pt;}
.xed_c00404{left:551.466667pt;}
.xad_c00404{left:555.466667pt;}
.xeb_c00404{left:556.533333pt;}
.xb7_c00404{left:557.466667pt;}
.xc8_c00404{left:560.400000pt;}
.xfe_c00404{left:562.800000pt;}
.xa9_c00404{left:564.533333pt;}
.xd4_c00404{left:566.400000pt;}
.x8e_c00404{left:567.333333pt;}
.xaf_c00404{left:568.533333pt;}
.x96_c00404{left:571.466667pt;}
.xef_c00404{left:572.533333pt;}
.xbc_c00404{left:575.466667pt;}
.xa0_c00404{left:576.533333pt;}
.x9a_c00404{left:581.333333pt;}
.xde_c00404{left:583.600000pt;}
.xaa_c00404{left:586.933333pt;}
.x86_c00404{left:588.800000pt;}
.x9b_c00404{left:590.666667pt;}
.xa3_c00404{left:592.000000pt;}
.xc3_c00404{left:595.733333pt;}
.x87_c00404{left:598.400000pt;}
.xc4_c00404{left:599.866667pt;}
.xd8_c00404{left:602.400000pt;}
.xfb_c00404{left:603.733333pt;}
.xbe_c00404{left:607.866667pt;}
.x102_c00404{left:609.466667pt;}
.xb8_c00404{left:610.933333pt;}
.xa1_c00404{left:614.666667pt;}
.xf6_c00404{left:615.600000pt;}
.x7c_c00404{left:617.200000pt;}
.xf9_c00404{left:620.666667pt;}
.xb0_c00404{left:623.200000pt;}
.x7d_c00404{left:624.533333pt;}
.x97_c00404{left:625.600000pt;}
.xab_c00404{left:628.800000pt;}
.x8f_c00404{left:632.000000pt;}
.x9c_c00404{left:633.600000pt;}
.xc9_c00404{left:635.333333pt;}
.xb1_c00404{left:637.333333pt;}
.x105_c00404{left:638.666667pt;}
.xcb_c00404{left:640.000000pt;}
.xf2_c00404{left:644.400000pt;}
.x106_c00404{left:646.933333pt;}
.xc5_c00404{left:647.866667pt;}
.x88_c00404{left:648.933333pt;}
.xdf_c00404{left:652.666667pt;}
.x9d_c00404{left:654.400000pt;}
.x103_c00404{left:656.133333pt;}
.xbf_c00404{left:657.466667pt;}
.xd9_c00404{left:659.066667pt;}
.x90_c00404{left:660.533333pt;}
.xa4_c00404{left:662.400000pt;}
.xcc_c00404{left:664.666667pt;}
.xf1_c00404{left:668.266667pt;}
.x2_c00404{left:670.800000pt;}
.x7e_c00404{left:672.266667pt;}
.x104_c00404{left:674.400000pt;}
.xb2_c00404{left:676.400000pt;}
.x89_c00404{left:678.000000pt;}
.xc6_c00404{left:681.200000pt;}
.xe0_c00404{left:682.133333pt;}
.xe8_c00404{left:684.533333pt;}
.xda_c00404{left:686.933333pt;}
.x7f_c00404{left:689.600000pt;}
.x91_c00404{left:691.600000pt;}
.xe1_c00404{left:694.266667pt;}
.xca_c00404{left:701.200000pt;}
}





/* 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_c00405 {
    display:none;
  }
  .loading-indicator_c00405.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00405 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_c00405 { 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_c00405" -> "#page-container .classname_c00405")
 */
.pf_c00405 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00405 { /* 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_c00405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00405 { /* 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_c00405 { /* 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_c00405 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00405 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00405 {overflow:visible;}
  }
}
.c_c00405 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00405 { /* 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_c00405:after { /* webkit #35443 */
  content: '';
}
.t_c00405:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00405 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 */
}
.__c00405 { /* 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_c00405 { /* info for Javascript */
  display:none;
}
.l_c00405 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00405 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00405 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00405: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_c00405 {
    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_c00405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00405.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_c00405 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00405;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.000000;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;}
.m8e_c00405{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00405{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00405{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00405{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00405{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00405{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00405{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00405{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00405{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00405{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mef_c00405{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m47_c00405{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00405{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00405{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m40_c00405{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m11_c00405{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00405{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00405{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m69_c00405{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m119_c00405{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m49_c00405{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m94_c00405{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00405{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00405{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m33_c00405{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00405{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00405{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m110_c00405{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00405{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m124_c00405{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m58_c00405{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m66_c00405{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00405{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00405{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00405{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m75_c00405{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00405{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00405{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m59_c00405{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00405{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m23_c00405{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00405{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.md2_c00405{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00405{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mee_c00405{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m79_c00405{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00405{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m125_c00405{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00405{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m27_c00405{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00405{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m54_c00405{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00405{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00405{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m114_c00405{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00405{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m20_c00405{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.maf_c00405{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00405{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00405{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00405{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m87_c00405{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00405{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m5_c00405{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00405{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.md3_c00405{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m64_c00405{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m96_c00405{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00405{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00405{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m77_c00405{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mb_c00405{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00405{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m18_c00405{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m43_c00405{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m6_c00405{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00405{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m46_c00405{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me8_c00405{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00405{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m105_c00405{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00405{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m120_c00405{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.med_c00405{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m19_c00405{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m86_c00405{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m91_c00405{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m28_c00405{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00405{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00405{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma_c00405{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m44_c00405{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m15_c00405{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m60_c00405{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m39_c00405{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00405{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m72_c00405{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00405{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m55_c00405{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m32_c00405{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m97_c00405{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00405{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m118_c00405{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00405{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00405{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00405{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mce_c00405{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m67_c00405{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m115_c00405{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m111_c00405{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m29_c00405{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mae_c00405{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m93_c00405{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m71_c00405{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m62_c00405{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m25_c00405{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00405{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m56_c00405{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00405{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mca_c00405{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m103_c00405{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m10_c00405{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m51_c00405{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m126_c00405{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m57_c00405{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00405{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m52_c00405{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m100_c00405{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md0_c00405{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00405{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me9_c00405{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m68_c00405{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m101_c00405{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m17_c00405{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m80_c00405{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m76_c00405{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m85_c00405{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m22_c00405{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m48_c00405{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00405{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m42_c00405{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m70_c00405{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m37_c00405{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md1_c00405{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00405{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00405{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me0_c00405{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mff_c00405{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00405{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m73_c00405{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m74_c00405{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m50_c00405{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00405{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00405{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00405{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m102_c00405{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m99_c00405{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.maa_c00405{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00405{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.me_c00405{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mde_c00405{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m112_c00405{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m12_c00405{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00405{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mba_c00405{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m24_c00405{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00405{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m38_c00405{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00405{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m26_c00405{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00405{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md6_c00405{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00405{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00405{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00405{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00405{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00405{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00405{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mab_c00405{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m82_c00405{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m78_c00405{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mad_c00405{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7_c00405{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md9_c00405{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m127_c00405{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00405{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m84_c00405{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m65_c00405{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mea_c00405{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00405{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00405{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m98_c00405{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mec_c00405{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m53_c00405{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00405{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00405{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m90_c00405{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf_c00405{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00405{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m36_c00405{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00405{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00405{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9_c00405{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00405{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00405{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m21_c00405{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00405{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00405{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00405{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00405{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m63_c00405{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00405{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m83_c00405{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m108_c00405{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00405{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00405{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mac_c00405{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8_c00405{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me3_c00405{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m81_c00405{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me2_c00405{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m116_c00405{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00405{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00405{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00405{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m45_c00405{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00405{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00405{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00405{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m89_c00405{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00405{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m16_c00405{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m30_c00405{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md7_c00405{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m88_c00405{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md4_c00405{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00405{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.me5_c00405{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00405{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m104_c00405{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m41_c00405{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md_c00405{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00405{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m35_c00405{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m122_c00405{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00405{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m31_c00405{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m61_c00405{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m34_c00405{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mda_c00405{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00405{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00405{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m106_c00405{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m109_c00405{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me1_c00405{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00405{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me6_c00405{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md5_c00405{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00405{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00405{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00405{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00405{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00405{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.meb_c00405{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00405{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00405{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00405{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00405{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00405{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m107_c00405{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m13_c00405{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00405{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00405{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00405{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m92_c00405{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00405{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00405{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.me4_c00405{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00405{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00405{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00405{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m123_c00405{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m121_c00405{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m117_c00405{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m113_c00405{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m95_c00405{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.md8_c00405{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00405{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00405{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me7_c00405{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c00405{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00405{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00405{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls1_c00405{letter-spacing:0.000000px;}
.ls0_c00405{letter-spacing:50.211796px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{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__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00405{word-spacing:-77.211796px;}
.ws6_c00405{word-spacing:-6.447368px;}
.wsb_c00405{word-spacing:0.000000px;}
.ws9_c00405{word-spacing:0.666667px;}
.ws0_c00405{word-spacing:8.681948px;}
.ws1_c00405{word-spacing:15.000000px;}
.ws8_c00405{word-spacing:22.142857px;}
.ws4_c00405{word-spacing:32.250000px;}
.ws2_c00405{word-spacing:61.250000px;}
.ws7_c00405{word-spacing:110.502165px;}
.ws5_c00405{word-spacing:132.883677px;}
.wsa_c00405{word-spacing:147.362862px;}
._1_c00405{margin-left:-50.211796px;}
._0_c00405{width:48.125000px;}
._5_c00405{width:55.714286px;}
._4_c00405{width:59.285714px;}
._2_c00405{width:63.000000px;}
._3_c00405{width:66.750000px;}
.fc0_c00405{color:transparent;}
.fs6_c00405{font-size:48.000000px;}
.fs5_c00405{font-size:54.000000px;}
.fs2_c00405{font-size:60.000000px;}
.fs0_c00405{font-size:66.000000px;}
.fs3_c00405{font-size:72.000000px;}
.fs1_c00405{font-size:78.000000px;}
.fs4_c00405{font-size:84.000000px;}
.y0_c00405{bottom:0.000000px;}
.y70_c00405{bottom:190.650000px;}
.y37_c00405{bottom:195.450000px;}
.y6f_c00405{bottom:207.150000px;}
.y36_c00405{bottom:213.600000px;}
.y6e_c00405{bottom:221.850000px;}
.y35_c00405{bottom:231.300000px;}
.y6d_c00405{bottom:235.500000px;}
.y34_c00405{bottom:248.550000px;}
.y6c_c00405{bottom:249.900000px;}
.y6b_c00405{bottom:264.300000px;}
.y33_c00405{bottom:265.800000px;}
.y32_c00405{bottom:283.050000px;}
.y31_c00405{bottom:300.300000px;}
.y6a_c00405{bottom:301.650000px;}
.y30_c00405{bottom:317.700000px;}
.y69_c00405{bottom:319.350000px;}
.y2f_c00405{bottom:335.400000px;}
.y68_c00405{bottom:336.300000px;}
.y2e_c00405{bottom:353.100000px;}
.y67_c00405{bottom:354.300000px;}
.y2d_c00405{bottom:370.350000px;}
.y66_c00405{bottom:371.550000px;}
.y2c_c00405{bottom:388.050000px;}
.y65_c00405{bottom:396.300000px;}
.y2b_c00405{bottom:405.750000px;}
.y64_c00405{bottom:411.450000px;}
.y2a_c00405{bottom:423.750000px;}
.y63_c00405{bottom:425.550000px;}
.y62_c00405{bottom:439.950000px;}
.y29_c00405{bottom:441.750000px;}
.y61_c00405{bottom:454.650000px;}
.y28_c00405{bottom:458.550000px;}
.y60_c00405{bottom:474.450000px;}
.y27_c00405{bottom:476.550000px;}
.y5f_c00405{bottom:488.850000px;}
.y26_c00405{bottom:494.550000px;}
.y5e_c00405{bottom:502.950000px;}
.y25_c00405{bottom:512.250000px;}
.y5d_c00405{bottom:517.350000px;}
.y24_c00405{bottom:529.950000px;}
.y5c_c00405{bottom:531.000000px;}
.y5b_c00405{bottom:545.700000px;}
.y23_c00405{bottom:547.950000px;}
.y5a_c00405{bottom:559.800000px;}
.y22_c00405{bottom:565.950000px;}
.y59_c00405{bottom:573.900000px;}
.y21_c00405{bottom:583.650000px;}
.y58_c00405{bottom:589.350000px;}
.y20_c00405{bottom:601.650000px;}
.y57_c00405{bottom:603.000000px;}
.y56_c00405{bottom:617.400000px;}
.y1f_c00405{bottom:619.350000px;}
.y55_c00405{bottom:631.500000px;}
.y1e_c00405{bottom:637.350000px;}
.y54_c00405{bottom:645.900000px;}
.y1d_c00405{bottom:655.050000px;}
.y53_c00405{bottom:661.200000px;}
.y1c_c00405{bottom:673.050000px;}
.y52_c00405{bottom:675.900000px;}
.y51_c00405{bottom:688.800000px;}
.y1b_c00405{bottom:690.750000px;}
.y50_c00405{bottom:703.200000px;}
.y1a_c00405{bottom:708.750000px;}
.y4f_c00405{bottom:717.900000px;}
.y19_c00405{bottom:726.450000px;}
.y4e_c00405{bottom:732.600000px;}
.y18_c00405{bottom:744.450000px;}
.y4d_c00405{bottom:746.250000px;}
.y4c_c00405{bottom:760.650000px;}
.y17_c00405{bottom:762.450000px;}
.y4b_c00405{bottom:775.050000px;}
.y16_c00405{bottom:780.150000px;}
.y4a_c00405{bottom:788.100000px;}
.y15_c00405{bottom:798.150000px;}
.y49_c00405{bottom:803.550000px;}
.y14_c00405{bottom:816.150000px;}
.y48_c00405{bottom:821.550000px;}
.y13_c00405{bottom:834.150000px;}
.y47_c00405{bottom:839.400000px;}
.y12_c00405{bottom:851.850000px;}
.y46_c00405{bottom:857.100000px;}
.y11_c00405{bottom:869.850000px;}
.y45_c00405{bottom:875.100000px;}
.y10_c00405{bottom:887.550000px;}
.y44_c00405{bottom:900.150000px;}
.yf_c00405{bottom:905.550000px;}
.y43_c00405{bottom:914.850000px;}
.ye_c00405{bottom:923.250000px;}
.y42_c00405{bottom:932.850000px;}
.yd_c00405{bottom:941.250000px;}
.y41_c00405{bottom:950.850000px;}
.yc_c00405{bottom:958.950000px;}
.y40_c00405{bottom:968.100000px;}
.yb_c00405{bottom:976.650000px;}
.y3f_c00405{bottom:986.100000px;}
.ya_c00405{bottom:994.650000px;}
.y3e_c00405{bottom:1003.350000px;}
.y9_c00405{bottom:1012.350000px;}
.y3d_c00405{bottom:1021.650000px;}
.y8_c00405{bottom:1030.350000px;}
.y3c_c00405{bottom:1038.900000px;}
.y7_c00405{bottom:1048.350000px;}
.y3b_c00405{bottom:1060.800000px;}
.y6_c00405{bottom:1065.600000px;}
.y3a_c00405{bottom:1078.500000px;}
.y5_c00405{bottom:1083.900000px;}
.y4_c00405{bottom:1101.600000px;}
.y39_c00405{bottom:1103.850000px;}
.y38_c00405{bottom:1118.550000px;}
.y3_c00405{bottom:1119.300000px;}
.y1_c00405{bottom:1144.500000px;}
.y2_c00405{bottom:1146.000000px;}
.h8_c00405{height:48.000000px;}
.h7_c00405{height:54.000000px;}
.h4_c00405{height:60.000000px;}
.h2_c00405{height:66.000000px;}
.h5_c00405{height:72.000000px;}
.h3_c00405{height:78.000000px;}
.h6_c00405{height:84.000000px;}
.h0_c00405{height:1267.919952px;}
.h1_c00405{height:1268.250000px;}
.w0_c00405{width:960.480010px;}
.w1_c00405{width:960.750000px;}
.x0_c00405{left:0.000000px;}
.x92_c00405{left:173.100000px;}
.x1_c00405{left:176.700000px;}
.x93_c00405{left:184.200000px;}
.x68_c00405{left:192.000000px;}
.x3b_c00405{left:193.650000px;}
.x3_c00405{left:195.000000px;}
.x6c_c00405{left:210.450000px;}
.x86_c00405{left:213.300000px;}
.x3c_c00405{left:214.950000px;}
.x28_c00405{left:216.150000px;}
.x18_c00405{left:217.800000px;}
.x95_c00405{left:221.400000px;}
.x36_c00405{left:222.900000px;}
.x21_c00405{left:223.950000px;}
.x84_c00405{left:225.150000px;}
.x4e_c00405{left:227.250000px;}
.x19_c00405{left:228.900000px;}
.x52_c00405{left:231.600000px;}
.x4_c00405{left:233.850000px;}
.x8f_c00405{left:234.900000px;}
.x55_c00405{left:235.950000px;}
.x72_c00405{left:238.350000px;}
.x69_c00405{left:239.850000px;}
.x5f_c00405{left:241.800000px;}
.x37_c00405{left:243.000000px;}
.xf_c00405{left:244.500000px;}
.x87_c00405{left:246.450000px;}
.x22_c00405{left:247.650000px;}
.x8d_c00405{left:249.000000px;}
.x2e_c00405{left:250.500000px;}
.x53_c00405{left:252.450000px;}
.x81_c00405{left:254.400000px;}
.x5b_c00405{left:255.750000px;}
.x9_c00405{left:258.750000px;}
.x44_c00405{left:260.100000px;}
.x6e_c00405{left:261.150000px;}
.x3d_c00405{left:263.850000px;}
.x29_c00405{left:265.800000px;}
.x23_c00405{left:267.450000px;}
.x79_c00405{left:269.250000px;}
.x7c_c00405{left:270.450000px;}
.x1a_c00405{left:272.100000px;}
.x3e_c00405{left:273.900000px;}
.x38_c00405{left:276.900000px;}
.x77_c00405{left:277.950000px;}
.x73_c00405{left:279.450000px;}
.x7a_c00405{left:281.850000px;}
.x8c_c00405{left:283.800000px;}
.x6f_c00405{left:287.100000px;}
.x88_c00405{left:289.650000px;}
.x59_c00405{left:291.300000px;}
.x39_c00405{left:294.150000px;}
.x10_c00405{left:295.200000px;}
.x4f_c00405{left:296.400000px;}
.x8a_c00405{left:298.800000px;}
.x5_c00405{left:300.150000px;}
.x6d_c00405{left:301.800000px;}
.x7b_c00405{left:303.450000px;}
.x11_c00405{left:306.000000px;}
.x4a_c00405{left:307.800000px;}
.x45_c00405{left:311.250000px;}
.x9b_c00405{left:313.500000px;}
.x2a_c00405{left:314.700000px;}
.x3a_c00405{left:315.750000px;}
.x46_c00405{left:319.500000px;}
.x50_c00405{left:321.300000px;}
.x24_c00405{left:323.550000px;}
.x12_c00405{left:325.800000px;}
.x56_c00405{left:328.050000px;}
.x8b_c00405{left:329.100000px;}
.x4b_c00405{left:330.900000px;}
.x1b_c00405{left:332.850000px;}
.x47_c00405{left:335.700000px;}
.x89_c00405{left:338.250000px;}
.x2f_c00405{left:339.750000px;}
.x3f_c00405{left:342.600000px;}
.x7d_c00405{left:345.000000px;}
.x25_c00405{left:346.200000px;}
.xa_c00405{left:349.050000px;}
.x40_c00405{left:351.300000px;}
.x82_c00405{left:352.650000px;}
.x33_c00405{left:354.300000px;}
.x6a_c00405{left:357.150000px;}
.x30_c00405{left:359.250000px;}
.x9a_c00405{left:360.300000px;}
.x63_c00405{left:362.250000px;}
.xb_c00405{left:363.750000px;}
.x7e_c00405{left:364.800000px;}
.x60_c00405{left:366.600000px;}
.x8e_c00405{left:367.800000px;}
.x6_c00405{left:369.300000px;}
.x41_c00405{left:370.800000px;}
.x13_c00405{left:375.150000px;}
.x2b_c00405{left:378.000000px;}
.x85_c00405{left:379.950000px;}
.xc_c00405{left:382.050000px;}
.x96_c00405{left:383.850000px;}
.x1c_c00405{left:385.350000px;}
.x7f_c00405{left:387.000000px;}
.x5d_c00405{left:389.400000px;}
.x31_c00405{left:391.650000px;}
.x9d_c00405{left:394.650000px;}
.x14_c00405{left:396.450000px;}
.x9c_c00405{left:398.100000px;}
.x26_c00405{left:399.150000px;}
.x70_c00405{left:400.200000px;}
.x57_c00405{left:401.400000px;}
.x34_c00405{left:403.650000px;}
.x4c_c00405{left:405.750000px;}
.x1d_c00405{left:406.950000px;}
.x42_c00405{left:408.600000px;}
.x97_c00405{left:410.850000px;}
.x64_c00405{left:412.350000px;}
.x48_c00405{left:415.950000px;}
.x9f_c00405{left:417.300000px;}
.x2c_c00405{left:418.650000px;}
.x2_c00405{left:420.750000px;}
.x54_c00405{left:422.100000px;}
.x74_c00405{left:425.550000px;}
.x9e_c00405{left:426.750000px;}
.x15_c00405{left:427.800000px;}
.x61_c00405{left:429.900000px;}
.x49_c00405{left:434.700000px;}
.x1e_c00405{left:436.050000px;}
.x91_c00405{left:438.000000px;}
.x83_c00405{left:439.350000px;}
.x78_c00405{left:440.400000px;}
.x99_c00405{left:442.050000px;}
.x75_c00405{left:443.850000px;}
.x65_c00405{left:446.250000px;}
.x43_c00405{left:447.900000px;}
.xd_c00405{left:451.500000px;}
.x1f_c00405{left:453.750000px;}
.x80_c00405{left:456.450000px;}
.x7_c00405{left:457.500000px;}
.x66_c00405{left:459.900000px;}
.x98_c00405{left:460.950000px;}
.x4d_c00405{left:462.300000px;}
.x2d_c00405{left:463.350000px;}
.x90_c00405{left:465.600000px;}
.x5c_c00405{left:467.550000px;}
.x32_c00405{left:471.600000px;}
.x62_c00405{left:473.550000px;}
.x20_c00405{left:474.600000px;}
.x35_c00405{left:477.750000px;}
.x16_c00405{left:479.700000px;}
.x71_c00405{left:480.900000px;}
.x6b_c00405{left:482.850000px;}
.x27_c00405{left:484.050000px;}
.x58_c00405{left:485.700000px;}
.x94_c00405{left:487.650000px;}
.xe_c00405{left:490.350000px;}
.x17_c00405{left:492.000000px;}
.x51_c00405{left:493.050000px;}
.x5e_c00405{left:495.900000px;}
.x8_c00405{left:497.850000px;}
.x5a_c00405{left:500.850000px;}
.x67_c00405{left:504.900000px;}
.x76_c00405{left:507.150000px;}
.x128_c00405{left:530.700000px;}
.xeb_c00405{left:531.750000px;}
.xdb_c00405{left:533.100000px;}
.xac_c00405{left:534.300000px;}
.x11b_c00405{left:544.050000px;}
.xf6_c00405{left:545.250000px;}
.x13f_c00405{left:546.450000px;}
.x12b_c00405{left:548.100000px;}
.xc8_c00405{left:549.300000px;}
.xd1_c00405{left:550.800000px;}
.xa0_c00405{left:551.850000px;}
.xa8_c00405{left:552.900000px;}
.x111_c00405{left:556.500000px;}
.x104_c00405{left:559.200000px;}
.xf2_c00405{left:560.400000px;}
.x12d_c00405{left:568.500000px;}
.xb2_c00405{left:570.300000px;}
.x120_c00405{left:574.200000px;}
.xad_c00405{left:576.750000px;}
.xf7_c00405{left:578.700000px;}
.xa1_c00405{left:580.350000px;}
.xf3_c00405{left:581.850000px;}
.x13b_c00405{left:584.850000px;}
.x131_c00405{left:586.500000px;}
.x121_c00405{left:587.850000px;}
.x137_c00405{left:590.100000px;}
.xec_c00405{left:591.150000px;}
.xcf_c00405{left:592.500000px;}
.x11c_c00405{left:596.700000px;}
.xc9_c00405{left:597.900000px;}
.xe0_c00405{left:599.100000px;}
.xa9_c00405{left:600.750000px;}
.xd2_c00405{left:602.700000px;}
.xf4_c00405{left:604.200000px;}
.x136_c00405{left:610.500000px;}
.xba_c00405{left:612.150000px;}
.xa2_c00405{left:613.800000px;}
.xe4_c00405{left:615.450000px;}
.xf8_c00405{left:617.250000px;}
.xc4_c00405{left:619.200000px;}
.xfd_c00405{left:621.600000px;}
.xaa_c00405{left:623.850000px;}
.x107_c00405{left:626.250000px;}
.xd6_c00405{left:627.300000px;}
.x113_c00405{left:630.000000px;}
.x115_c00405{left:631.500000px;}
.x12e_c00405{left:633.300000px;}
.x112_c00405{left:634.650000px;}
.xca_c00405{left:636.000000px;}
.x11d_c00405{left:638.400000px;}
.x109_c00405{left:641.100000px;}
.x124_c00405{left:642.300000px;}
.xdc_c00405{left:643.950000px;}
.xed_c00405{left:645.450000px;}
.xd0_c00405{left:647.250000px;}
.x140_c00405{left:648.300000px;}
.xf9_c00405{left:649.350000px;}
.xb3_c00405{left:651.300000px;}
.x105_c00405{left:653.100000px;}
.xbb_c00405{left:655.350000px;}
.xd3_c00405{left:656.700000px;}
.xd9_c00405{left:658.800000px;}
.x122_c00405{left:660.900000px;}
.xee_c00405{left:664.950000px;}
.xbe_c00405{left:666.750000px;}
.x10b_c00405{left:668.550000px;}
.x13e_c00405{left:670.050000px;}
.xa3_c00405{left:672.150000px;}
.xcb_c00405{left:673.500000px;}
.xb4_c00405{left:676.500000px;}
.xdd_c00405{left:678.450000px;}
.x12c_c00405{left:680.850000px;}
.xcc_c00405{left:682.500000px;}
.x12f_c00405{left:686.250000px;}
.x10e_c00405{left:688.950000px;}
.xa4_c00405{left:690.900000px;}
.xfe_c00405{left:692.850000px;}
.x116_c00405{left:694.500000px;}
.x119_c00405{left:696.150000px;}
.xcd_c00405{left:697.950000px;}
.xbf_c00405{left:699.900000px;}
.xae_c00405{left:702.000000px;}
.x11e_c00405{left:703.500000px;}
.x10c_c00405{left:707.100000px;}
.xe5_c00405{left:710.100000px;}
.x10f_c00405{left:711.600000px;}
.xfa_c00405{left:713.850000px;}
.xb5_c00405{left:716.550000px;}
.x125_c00405{left:718.350000px;}
.xef_c00405{left:720.450000px;}
.xce_c00405{left:721.650000px;}
.x118_c00405{left:723.750000px;}
.xff_c00405{left:725.250000px;}
.xc0_c00405{left:726.900000px;}
.x10a_c00405{left:729.300000px;}
.x126_c00405{left:730.950000px;}
.xb6_c00405{left:732.000000px;}
.x129_c00405{left:733.200000px;}
.xfb_c00405{left:734.700000px;}
.xab_c00405{left:735.750000px;}
.xc5_c00405{left:738.300000px;}
.x10d_c00405{left:739.500000px;}
.xa5_c00405{left:741.300000px;}
.x123_c00405{left:743.700000px;}
.xde_c00405{left:745.800000px;}
.x132_c00405{left:748.050000px;}
.xe1_c00405{left:749.250000px;}
.xb7_c00405{left:752.100000px;}
.x100_c00405{left:754.350000px;}
.xda_c00405{left:755.700000px;}
.xc6_c00405{left:757.350000px;}
.xc1_c00405{left:758.550000px;}
.x108_c00405{left:759.900000px;}
.x101_c00405{left:761.850000px;}
.xf0_c00405{left:762.900000px;}
.xe8_c00405{left:764.700000px;}
.x133_c00405{left:766.800000px;}
.x110_c00405{left:768.150000px;}
.x102_c00405{left:769.350000px;}
.xf5_c00405{left:772.050000px;}
.x138_c00405{left:773.700000px;}
.x117_c00405{left:775.950000px;}
.xfc_c00405{left:777.150000px;}
.xd4_c00405{left:779.400000px;}
.xc2_c00405{left:780.450000px;}
.x13c_c00405{left:783.300000px;}
.xaf_c00405{left:785.850000px;}
.xc7_c00405{left:787.650000px;}
.xe9_c00405{left:789.900000px;}
.xa6_c00405{left:792.000000px;}
.x12a_c00405{left:793.650000px;}
.x114_c00405{left:795.300000px;}
.xd7_c00405{left:796.500000px;}
.xe2_c00405{left:797.850000px;}
.xb0_c00405{left:799.200000px;}
.x13d_c00405{left:800.550000px;}
.xb8_c00405{left:802.200000px;}
.x11a_c00405{left:806.550000px;}
.xbc_c00405{left:808.050000px;}
.xa7_c00405{left:811.050000px;}
.x11f_c00405{left:813.300000px;}
.x134_c00405{left:814.350000px;}
.xc3_c00405{left:817.200000px;}
.xe6_c00405{left:819.150000px;}
.xea_c00405{left:820.800000px;}
.x139_c00405{left:823.500000px;}
.x103_c00405{left:824.850000px;}
.xb9_c00405{left:826.350000px;}
.xe3_c00405{left:827.400000px;}
.xd8_c00405{left:837.600000px;}
.xd5_c00405{left:839.850000px;}
.x130_c00405{left:842.850000px;}
.xe7_c00405{left:844.650000px;}
.x127_c00405{left:846.450000px;}
.x13a_c00405{left:850.500000px;}
.xdf_c00405{left:852.300000px;}
.xb1_c00405{left:853.500000px;}
.xf1_c00405{left:855.300000px;}
.xbd_c00405{left:856.950000px;}
.x135_c00405{left:861.450000px;}
.x106_c00405{left:867.000000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls1_c00405{letter-spacing:0.000000pt;}
.ls0_c00405{letter-spacing:44.632708pt;}
.ws3_c00405{word-spacing:-68.632708pt;}
.ws6_c00405{word-spacing:-5.730994pt;}
.wsb_c00405{word-spacing:0.000000pt;}
.ws9_c00405{word-spacing:0.592593pt;}
.ws0_c00405{word-spacing:7.717287pt;}
.ws1_c00405{word-spacing:13.333333pt;}
.ws8_c00405{word-spacing:19.682540pt;}
.ws4_c00405{word-spacing:28.666667pt;}
.ws2_c00405{word-spacing:54.444444pt;}
.ws7_c00405{word-spacing:98.224146pt;}
.ws5_c00405{word-spacing:118.118824pt;}
.wsa_c00405{word-spacing:130.989211pt;}
._1_c00405{margin-left:-44.632708pt;}
._0_c00405{width:42.777778pt;}
._5_c00405{width:49.523810pt;}
._4_c00405{width:52.698413pt;}
._2_c00405{width:56.000000pt;}
._3_c00405{width:59.333333pt;}
.fs6_c00405{font-size:42.666667pt;}
.fs5_c00405{font-size:48.000000pt;}
.fs2_c00405{font-size:53.333333pt;}
.fs0_c00405{font-size:58.666667pt;}
.fs3_c00405{font-size:64.000000pt;}
.fs1_c00405{font-size:69.333333pt;}
.fs4_c00405{font-size:74.666667pt;}
.y0_c00405{bottom:0.000000pt;}
.y70_c00405{bottom:169.466667pt;}
.y37_c00405{bottom:173.733333pt;}
.y6f_c00405{bottom:184.133333pt;}
.y36_c00405{bottom:189.866667pt;}
.y6e_c00405{bottom:197.200000pt;}
.y35_c00405{bottom:205.600000pt;}
.y6d_c00405{bottom:209.333333pt;}
.y34_c00405{bottom:220.933333pt;}
.y6c_c00405{bottom:222.133333pt;}
.y6b_c00405{bottom:234.933333pt;}
.y33_c00405{bottom:236.266667pt;}
.y32_c00405{bottom:251.600000pt;}
.y31_c00405{bottom:266.933333pt;}
.y6a_c00405{bottom:268.133333pt;}
.y30_c00405{bottom:282.400000pt;}
.y69_c00405{bottom:283.866667pt;}
.y2f_c00405{bottom:298.133333pt;}
.y68_c00405{bottom:298.933333pt;}
.y2e_c00405{bottom:313.866667pt;}
.y67_c00405{bottom:314.933333pt;}
.y2d_c00405{bottom:329.200000pt;}
.y66_c00405{bottom:330.266667pt;}
.y2c_c00405{bottom:344.933333pt;}
.y65_c00405{bottom:352.266667pt;}
.y2b_c00405{bottom:360.666667pt;}
.y64_c00405{bottom:365.733333pt;}
.y2a_c00405{bottom:376.666667pt;}
.y63_c00405{bottom:378.266667pt;}
.y62_c00405{bottom:391.066667pt;}
.y29_c00405{bottom:392.666667pt;}
.y61_c00405{bottom:404.133333pt;}
.y28_c00405{bottom:407.600000pt;}
.y60_c00405{bottom:421.733333pt;}
.y27_c00405{bottom:423.600000pt;}
.y5f_c00405{bottom:434.533333pt;}
.y26_c00405{bottom:439.600000pt;}
.y5e_c00405{bottom:447.066667pt;}
.y25_c00405{bottom:455.333333pt;}
.y5d_c00405{bottom:459.866667pt;}
.y24_c00405{bottom:471.066667pt;}
.y5c_c00405{bottom:472.000000pt;}
.y5b_c00405{bottom:485.066667pt;}
.y23_c00405{bottom:487.066667pt;}
.y5a_c00405{bottom:497.600000pt;}
.y22_c00405{bottom:503.066667pt;}
.y59_c00405{bottom:510.133333pt;}
.y21_c00405{bottom:518.800000pt;}
.y58_c00405{bottom:523.866667pt;}
.y20_c00405{bottom:534.800000pt;}
.y57_c00405{bottom:536.000000pt;}
.y56_c00405{bottom:548.800000pt;}
.y1f_c00405{bottom:550.533333pt;}
.y55_c00405{bottom:561.333333pt;}
.y1e_c00405{bottom:566.533333pt;}
.y54_c00405{bottom:574.133333pt;}
.y1d_c00405{bottom:582.266667pt;}
.y53_c00405{bottom:587.733333pt;}
.y1c_c00405{bottom:598.266667pt;}
.y52_c00405{bottom:600.800000pt;}
.y51_c00405{bottom:612.266667pt;}
.y1b_c00405{bottom:614.000000pt;}
.y50_c00405{bottom:625.066667pt;}
.y1a_c00405{bottom:630.000000pt;}
.y4f_c00405{bottom:638.133333pt;}
.y19_c00405{bottom:645.733333pt;}
.y4e_c00405{bottom:651.200000pt;}
.y18_c00405{bottom:661.733333pt;}
.y4d_c00405{bottom:663.333333pt;}
.y4c_c00405{bottom:676.133333pt;}
.y17_c00405{bottom:677.733333pt;}
.y4b_c00405{bottom:688.933333pt;}
.y16_c00405{bottom:693.466667pt;}
.y4a_c00405{bottom:700.533333pt;}
.y15_c00405{bottom:709.466667pt;}
.y49_c00405{bottom:714.266667pt;}
.y14_c00405{bottom:725.466667pt;}
.y48_c00405{bottom:730.266667pt;}
.y13_c00405{bottom:741.466667pt;}
.y47_c00405{bottom:746.133333pt;}
.y12_c00405{bottom:757.200000pt;}
.y46_c00405{bottom:761.866667pt;}
.y11_c00405{bottom:773.200000pt;}
.y45_c00405{bottom:777.866667pt;}
.y10_c00405{bottom:788.933333pt;}
.y44_c00405{bottom:800.133333pt;}
.yf_c00405{bottom:804.933333pt;}
.y43_c00405{bottom:813.200000pt;}
.ye_c00405{bottom:820.666667pt;}
.y42_c00405{bottom:829.200000pt;}
.yd_c00405{bottom:836.666667pt;}
.y41_c00405{bottom:845.200000pt;}
.yc_c00405{bottom:852.400000pt;}
.y40_c00405{bottom:860.533333pt;}
.yb_c00405{bottom:868.133333pt;}
.y3f_c00405{bottom:876.533333pt;}
.ya_c00405{bottom:884.133333pt;}
.y3e_c00405{bottom:891.866667pt;}
.y9_c00405{bottom:899.866667pt;}
.y3d_c00405{bottom:908.133333pt;}
.y8_c00405{bottom:915.866667pt;}
.y3c_c00405{bottom:923.466667pt;}
.y7_c00405{bottom:931.866667pt;}
.y3b_c00405{bottom:942.933333pt;}
.y6_c00405{bottom:947.200000pt;}
.y3a_c00405{bottom:958.666667pt;}
.y5_c00405{bottom:963.466667pt;}
.y4_c00405{bottom:979.200000pt;}
.y39_c00405{bottom:981.200000pt;}
.y38_c00405{bottom:994.266667pt;}
.y3_c00405{bottom:994.933333pt;}
.y1_c00405{bottom:1017.333333pt;}
.y2_c00405{bottom:1018.666667pt;}
.h8_c00405{height:42.666667pt;}
.h7_c00405{height:48.000000pt;}
.h4_c00405{height:53.333333pt;}
.h2_c00405{height:58.666667pt;}
.h5_c00405{height:64.000000pt;}
.h3_c00405{height:69.333333pt;}
.h6_c00405{height:74.666667pt;}
.h0_c00405{height:1127.039957pt;}
.h1_c00405{height:1127.333333pt;}
.w0_c00405{width:853.760009pt;}
.w1_c00405{width:854.000000pt;}
.x0_c00405{left:0.000000pt;}
.x92_c00405{left:153.866667pt;}
.x1_c00405{left:157.066667pt;}
.x93_c00405{left:163.733333pt;}
.x68_c00405{left:170.666667pt;}
.x3b_c00405{left:172.133333pt;}
.x3_c00405{left:173.333333pt;}
.x6c_c00405{left:187.066667pt;}
.x86_c00405{left:189.600000pt;}
.x3c_c00405{left:191.066667pt;}
.x28_c00405{left:192.133333pt;}
.x18_c00405{left:193.600000pt;}
.x95_c00405{left:196.800000pt;}
.x36_c00405{left:198.133333pt;}
.x21_c00405{left:199.066667pt;}
.x84_c00405{left:200.133333pt;}
.x4e_c00405{left:202.000000pt;}
.x19_c00405{left:203.466667pt;}
.x52_c00405{left:205.866667pt;}
.x4_c00405{left:207.866667pt;}
.x8f_c00405{left:208.800000pt;}
.x55_c00405{left:209.733333pt;}
.x72_c00405{left:211.866667pt;}
.x69_c00405{left:213.200000pt;}
.x5f_c00405{left:214.933333pt;}
.x37_c00405{left:216.000000pt;}
.xf_c00405{left:217.333333pt;}
.x87_c00405{left:219.066667pt;}
.x22_c00405{left:220.133333pt;}
.x8d_c00405{left:221.333333pt;}
.x2e_c00405{left:222.666667pt;}
.x53_c00405{left:224.400000pt;}
.x81_c00405{left:226.133333pt;}
.x5b_c00405{left:227.333333pt;}
.x9_c00405{left:230.000000pt;}
.x44_c00405{left:231.200000pt;}
.x6e_c00405{left:232.133333pt;}
.x3d_c00405{left:234.533333pt;}
.x29_c00405{left:236.266667pt;}
.x23_c00405{left:237.733333pt;}
.x79_c00405{left:239.333333pt;}
.x7c_c00405{left:240.400000pt;}
.x1a_c00405{left:241.866667pt;}
.x3e_c00405{left:243.466667pt;}
.x38_c00405{left:246.133333pt;}
.x77_c00405{left:247.066667pt;}
.x73_c00405{left:248.400000pt;}
.x7a_c00405{left:250.533333pt;}
.x8c_c00405{left:252.266667pt;}
.x6f_c00405{left:255.200000pt;}
.x88_c00405{left:257.466667pt;}
.x59_c00405{left:258.933333pt;}
.x39_c00405{left:261.466667pt;}
.x10_c00405{left:262.400000pt;}
.x4f_c00405{left:263.466667pt;}
.x8a_c00405{left:265.600000pt;}
.x5_c00405{left:266.800000pt;}
.x6d_c00405{left:268.266667pt;}
.x7b_c00405{left:269.733333pt;}
.x11_c00405{left:272.000000pt;}
.x4a_c00405{left:273.600000pt;}
.x45_c00405{left:276.666667pt;}
.x9b_c00405{left:278.666667pt;}
.x2a_c00405{left:279.733333pt;}
.x3a_c00405{left:280.666667pt;}
.x46_c00405{left:284.000000pt;}
.x50_c00405{left:285.600000pt;}
.x24_c00405{left:287.600000pt;}
.x12_c00405{left:289.600000pt;}
.x56_c00405{left:291.600000pt;}
.x8b_c00405{left:292.533333pt;}
.x4b_c00405{left:294.133333pt;}
.x1b_c00405{left:295.866667pt;}
.x47_c00405{left:298.400000pt;}
.x89_c00405{left:300.666667pt;}
.x2f_c00405{left:302.000000pt;}
.x3f_c00405{left:304.533333pt;}
.x7d_c00405{left:306.666667pt;}
.x25_c00405{left:307.733333pt;}
.xa_c00405{left:310.266667pt;}
.x40_c00405{left:312.266667pt;}
.x82_c00405{left:313.466667pt;}
.x33_c00405{left:314.933333pt;}
.x6a_c00405{left:317.466667pt;}
.x30_c00405{left:319.333333pt;}
.x9a_c00405{left:320.266667pt;}
.x63_c00405{left:322.000000pt;}
.xb_c00405{left:323.333333pt;}
.x7e_c00405{left:324.266667pt;}
.x60_c00405{left:325.866667pt;}
.x8e_c00405{left:326.933333pt;}
.x6_c00405{left:328.266667pt;}
.x41_c00405{left:329.600000pt;}
.x13_c00405{left:333.466667pt;}
.x2b_c00405{left:336.000000pt;}
.x85_c00405{left:337.733333pt;}
.xc_c00405{left:339.600000pt;}
.x96_c00405{left:341.200000pt;}
.x1c_c00405{left:342.533333pt;}
.x7f_c00405{left:344.000000pt;}
.x5d_c00405{left:346.133333pt;}
.x31_c00405{left:348.133333pt;}
.x9d_c00405{left:350.800000pt;}
.x14_c00405{left:352.400000pt;}
.x9c_c00405{left:353.866667pt;}
.x26_c00405{left:354.800000pt;}
.x70_c00405{left:355.733333pt;}
.x57_c00405{left:356.800000pt;}
.x34_c00405{left:358.800000pt;}
.x4c_c00405{left:360.666667pt;}
.x1d_c00405{left:361.733333pt;}
.x42_c00405{left:363.200000pt;}
.x97_c00405{left:365.200000pt;}
.x64_c00405{left:366.533333pt;}
.x48_c00405{left:369.733333pt;}
.x9f_c00405{left:370.933333pt;}
.x2c_c00405{left:372.133333pt;}
.x2_c00405{left:374.000000pt;}
.x54_c00405{left:375.200000pt;}
.x74_c00405{left:378.266667pt;}
.x9e_c00405{left:379.333333pt;}
.x15_c00405{left:380.266667pt;}
.x61_c00405{left:382.133333pt;}
.x49_c00405{left:386.400000pt;}
.x1e_c00405{left:387.600000pt;}
.x91_c00405{left:389.333333pt;}
.x83_c00405{left:390.533333pt;}
.x78_c00405{left:391.466667pt;}
.x99_c00405{left:392.933333pt;}
.x75_c00405{left:394.533333pt;}
.x65_c00405{left:396.666667pt;}
.x43_c00405{left:398.133333pt;}
.xd_c00405{left:401.333333pt;}
.x1f_c00405{left:403.333333pt;}
.x80_c00405{left:405.733333pt;}
.x7_c00405{left:406.666667pt;}
.x66_c00405{left:408.800000pt;}
.x98_c00405{left:409.733333pt;}
.x4d_c00405{left:410.933333pt;}
.x2d_c00405{left:411.866667pt;}
.x90_c00405{left:413.866667pt;}
.x5c_c00405{left:415.600000pt;}
.x32_c00405{left:419.200000pt;}
.x62_c00405{left:420.933333pt;}
.x20_c00405{left:421.866667pt;}
.x35_c00405{left:424.666667pt;}
.x16_c00405{left:426.400000pt;}
.x71_c00405{left:427.466667pt;}
.x6b_c00405{left:429.200000pt;}
.x27_c00405{left:430.266667pt;}
.x58_c00405{left:431.733333pt;}
.x94_c00405{left:433.466667pt;}
.xe_c00405{left:435.866667pt;}
.x17_c00405{left:437.333333pt;}
.x51_c00405{left:438.266667pt;}
.x5e_c00405{left:440.800000pt;}
.x8_c00405{left:442.533333pt;}
.x5a_c00405{left:445.200000pt;}
.x67_c00405{left:448.800000pt;}
.x76_c00405{left:450.800000pt;}
.x128_c00405{left:471.733333pt;}
.xeb_c00405{left:472.666667pt;}
.xdb_c00405{left:473.866667pt;}
.xac_c00405{left:474.933333pt;}
.x11b_c00405{left:483.600000pt;}
.xf6_c00405{left:484.666667pt;}
.x13f_c00405{left:485.733333pt;}
.x12b_c00405{left:487.200000pt;}
.xc8_c00405{left:488.266667pt;}
.xd1_c00405{left:489.600000pt;}
.xa0_c00405{left:490.533333pt;}
.xa8_c00405{left:491.466667pt;}
.x111_c00405{left:494.666667pt;}
.x104_c00405{left:497.066667pt;}
.xf2_c00405{left:498.133333pt;}
.x12d_c00405{left:505.333333pt;}
.xb2_c00405{left:506.933333pt;}
.x120_c00405{left:510.400000pt;}
.xad_c00405{left:512.666667pt;}
.xf7_c00405{left:514.400000pt;}
.xa1_c00405{left:515.866667pt;}
.xf3_c00405{left:517.200000pt;}
.x13b_c00405{left:519.866667pt;}
.x131_c00405{left:521.333333pt;}
.x121_c00405{left:522.533333pt;}
.x137_c00405{left:524.533333pt;}
.xec_c00405{left:525.466667pt;}
.xcf_c00405{left:526.666667pt;}
.x11c_c00405{left:530.400000pt;}
.xc9_c00405{left:531.466667pt;}
.xe0_c00405{left:532.533333pt;}
.xa9_c00405{left:534.000000pt;}
.xd2_c00405{left:535.733333pt;}
.xf4_c00405{left:537.066667pt;}
.x136_c00405{left:542.666667pt;}
.xba_c00405{left:544.133333pt;}
.xa2_c00405{left:545.600000pt;}
.xe4_c00405{left:547.066667pt;}
.xf8_c00405{left:548.666667pt;}
.xc4_c00405{left:550.400000pt;}
.xfd_c00405{left:552.533333pt;}
.xaa_c00405{left:554.533333pt;}
.x107_c00405{left:556.666667pt;}
.xd6_c00405{left:557.600000pt;}
.x113_c00405{left:560.000000pt;}
.x115_c00405{left:561.333333pt;}
.x12e_c00405{left:562.933333pt;}
.x112_c00405{left:564.133333pt;}
.xca_c00405{left:565.333333pt;}
.x11d_c00405{left:567.466667pt;}
.x109_c00405{left:569.866667pt;}
.x124_c00405{left:570.933333pt;}
.xdc_c00405{left:572.400000pt;}
.xed_c00405{left:573.733333pt;}
.xd0_c00405{left:575.333333pt;}
.x140_c00405{left:576.266667pt;}
.xf9_c00405{left:577.200000pt;}
.xb3_c00405{left:578.933333pt;}
.x105_c00405{left:580.533333pt;}
.xbb_c00405{left:582.533333pt;}
.xd3_c00405{left:583.733333pt;}
.xd9_c00405{left:585.600000pt;}
.x122_c00405{left:587.466667pt;}
.xee_c00405{left:591.066667pt;}
.xbe_c00405{left:592.666667pt;}
.x10b_c00405{left:594.266667pt;}
.x13e_c00405{left:595.600000pt;}
.xa3_c00405{left:597.466667pt;}
.xcb_c00405{left:598.666667pt;}
.xb4_c00405{left:601.333333pt;}
.xdd_c00405{left:603.066667pt;}
.x12c_c00405{left:605.200000pt;}
.xcc_c00405{left:606.666667pt;}
.x12f_c00405{left:610.000000pt;}
.x10e_c00405{left:612.400000pt;}
.xa4_c00405{left:614.133333pt;}
.xfe_c00405{left:615.866667pt;}
.x116_c00405{left:617.333333pt;}
.x119_c00405{left:618.800000pt;}
.xcd_c00405{left:620.400000pt;}
.xbf_c00405{left:622.133333pt;}
.xae_c00405{left:624.000000pt;}
.x11e_c00405{left:625.333333pt;}
.x10c_c00405{left:628.533333pt;}
.xe5_c00405{left:631.200000pt;}
.x10f_c00405{left:632.533333pt;}
.xfa_c00405{left:634.533333pt;}
.xb5_c00405{left:636.933333pt;}
.x125_c00405{left:638.533333pt;}
.xef_c00405{left:640.400000pt;}
.xce_c00405{left:641.466667pt;}
.x118_c00405{left:643.333333pt;}
.xff_c00405{left:644.666667pt;}
.xc0_c00405{left:646.133333pt;}
.x10a_c00405{left:648.266667pt;}
.x126_c00405{left:649.733333pt;}
.xb6_c00405{left:650.666667pt;}
.x129_c00405{left:651.733333pt;}
.xfb_c00405{left:653.066667pt;}
.xab_c00405{left:654.000000pt;}
.xc5_c00405{left:656.266667pt;}
.x10d_c00405{left:657.333333pt;}
.xa5_c00405{left:658.933333pt;}
.x123_c00405{left:661.066667pt;}
.xde_c00405{left:662.933333pt;}
.x132_c00405{left:664.933333pt;}
.xe1_c00405{left:666.000000pt;}
.xb7_c00405{left:668.533333pt;}
.x100_c00405{left:670.533333pt;}
.xda_c00405{left:671.733333pt;}
.xc6_c00405{left:673.200000pt;}
.xc1_c00405{left:674.266667pt;}
.x108_c00405{left:675.466667pt;}
.x101_c00405{left:677.200000pt;}
.xf0_c00405{left:678.133333pt;}
.xe8_c00405{left:679.733333pt;}
.x133_c00405{left:681.600000pt;}
.x110_c00405{left:682.800000pt;}
.x102_c00405{left:683.866667pt;}
.xf5_c00405{left:686.266667pt;}
.x138_c00405{left:687.733333pt;}
.x117_c00405{left:689.733333pt;}
.xfc_c00405{left:690.800000pt;}
.xd4_c00405{left:692.800000pt;}
.xc2_c00405{left:693.733333pt;}
.x13c_c00405{left:696.266667pt;}
.xaf_c00405{left:698.533333pt;}
.xc7_c00405{left:700.133333pt;}
.xe9_c00405{left:702.133333pt;}
.xa6_c00405{left:704.000000pt;}
.x12a_c00405{left:705.466667pt;}
.x114_c00405{left:706.933333pt;}
.xd7_c00405{left:708.000000pt;}
.xe2_c00405{left:709.200000pt;}
.xb0_c00405{left:710.400000pt;}
.x13d_c00405{left:711.600000pt;}
.xb8_c00405{left:713.066667pt;}
.x11a_c00405{left:716.933333pt;}
.xbc_c00405{left:718.266667pt;}
.xa7_c00405{left:720.933333pt;}
.x11f_c00405{left:722.933333pt;}
.x134_c00405{left:723.866667pt;}
.xc3_c00405{left:726.400000pt;}
.xe6_c00405{left:728.133333pt;}
.xea_c00405{left:729.600000pt;}
.x139_c00405{left:732.000000pt;}
.x103_c00405{left:733.200000pt;}
.xb9_c00405{left:734.533333pt;}
.xe3_c00405{left:735.466667pt;}
.xd8_c00405{left:744.533333pt;}
.xd5_c00405{left:746.533333pt;}
.x130_c00405{left:749.200000pt;}
.xe7_c00405{left:750.800000pt;}
.x127_c00405{left:752.400000pt;}
.x13a_c00405{left:756.000000pt;}
.xdf_c00405{left:757.600000pt;}
.xb1_c00405{left:758.666667pt;}
.xf1_c00405{left:760.266667pt;}
.xbd_c00405{left:761.733333pt;}
.x135_c00405{left:765.733333pt;}
.x106_c00405{left:770.666667pt;}
}





/* 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_c00406 {
    display:none;
  }
  .loading-indicator_c00406.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00406 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_c00406 { 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_c00406" -> "#page-container .classname_c00406")
 */
.pf_c00406 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00406 { /* 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_c00406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00406 { /* 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_c00406 { /* 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_c00406 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00406 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00406 {overflow:visible;}
  }
}
.c_c00406 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00406 { /* 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_c00406:after { /* webkit #35443 */
  content: '';
}
.t_c00406:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00406 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 */
}
.__c00406 { /* 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_c00406 { /* info for Javascript */
  display:none;
}
.l_c00406 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00406 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00406 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00406: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_c00406 {
    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_c00406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00406.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_c00406 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00406;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.000000;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;}
.mc5_c00406{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m100_c00406{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00406{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00406{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00406{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00406{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m35_c00406{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mac_c00406{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m94_c00406{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m114_c00406{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.med_c00406{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m25_c00406{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m91_c00406{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00406{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00406{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md2_c00406{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m92_c00406{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00406{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m90_c00406{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m87_c00406{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m108_c00406{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md5_c00406{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m6_c00406{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00406{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00406{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00406{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00406{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m117_c00406{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00406{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00406{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m26_c00406{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00406{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m56_c00406{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m60_c00406{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.me4_c00406{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00406{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m11_c00406{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00406{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00406{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m75_c00406{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00406{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00406{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00406{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md6_c00406{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00406{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m110_c00406{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m53_c00406{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m79_c00406{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00406{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m48_c00406{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me2_c00406{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00406{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m67_c00406{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mad_c00406{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00406{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m30_c00406{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00406{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m85_c00406{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.mc_c00406{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00406{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00406{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m16_c00406{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma_c00406{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m40_c00406{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00406{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00406{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m33_c00406{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m18_c00406{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00406{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00406{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mca_c00406{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m54_c00406{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m93_c00406{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m89_c00406{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me0_c00406{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m37_c00406{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md3_c00406{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00406{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m10_c00406{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00406{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m66_c00406{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00406{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00406{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00406{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mec_c00406{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00406{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00406{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md4_c00406{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m36_c00406{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m39_c00406{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00406{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00406{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00406{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me7_c00406{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m23_c00406{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me8_c00406{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00406{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9_c00406{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m47_c00406{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.meb_c00406{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mea_c00406{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m84_c00406{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00406{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00406{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00406{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m64_c00406{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5_c00406{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00406{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m46_c00406{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m31_c00406{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00406{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m82_c00406{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m41_c00406{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m71_c00406{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mae_c00406{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m22_c00406{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00406{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00406{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00406{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m15_c00406{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mde_c00406{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mff_c00406{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00406{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m74_c00406{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00406{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00406{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00406{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00406{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00406{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00406{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.maa_c00406{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m21_c00406{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m44_c00406{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m27_c00406{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.me_c00406{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8_c00406{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m62_c00406{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m51_c00406{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7_c00406{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me6_c00406{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md_c00406{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mce_c00406{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m20_c00406{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m95_c00406{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m14_c00406{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m61_c00406{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00406{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mf_c00406{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m52_c00406{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00406{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00406{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00406{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m81_c00406{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m107_c00406{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m109_c00406{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m38_c00406{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m24_c00406{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md7_c00406{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m115_c00406{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md1_c00406{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00406{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m55_c00406{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00406{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00406{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m73_c00406{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.md9_c00406{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00406{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m86_c00406{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m77_c00406{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00406{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00406{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00406{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m83_c00406{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.me9_c00406{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00406{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00406{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00406{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me5_c00406{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mba_c00406{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00406{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m13_c00406{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m111_c00406{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mab_c00406{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m29_c00406{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m45_c00406{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m32_c00406{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m34_c00406{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m96_c00406{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00406{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m103_c00406{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00406{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00406{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00406{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m12_c00406{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.md8_c00406{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00406{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m42_c00406{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m99_c00406{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00406{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00406{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00406{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m78_c00406{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m43_c00406{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md0_c00406{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.me1_c00406{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m76_c00406{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00406{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00406{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00406{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00406{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00406{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00406{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m105_c00406{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00406{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m19_c00406{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00406{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m98_c00406{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m17_c00406{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m65_c00406{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00406{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m28_c00406{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m50_c00406{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00406{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m113_c00406{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00406{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m101_c00406{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.maf_c00406{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m57_c00406{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m49_c00406{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mb_c00406{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00406{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00406{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mee_c00406{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00406{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m116_c00406{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m106_c00406{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00406{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00406{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me3_c00406{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mda_c00406{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m102_c00406{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m63_c00406{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m104_c00406{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00406{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00406{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00406{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00406{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mef_c00406{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00406{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00406{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m72_c00406{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m68_c00406{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00406{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00406{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00406{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00406{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00406{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00406{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m97_c00406{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00406{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m70_c00406{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00406{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00406{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00406{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00406{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m88_c00406{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m59_c00406{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m80_c00406{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00406{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00406{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00406{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m58_c00406{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m4_c00406{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00406{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m118_c00406{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{transform:matrix(0.425250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425250,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);}
.m112_c00406{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00406{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls0_c00406{letter-spacing:0.000000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{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__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00406{word-spacing:-10.735294px;}
.ws0_c00406{word-spacing:-2.181818px;}
.ws2_c00406{word-spacing:0.000000px;}
.ws3_c00406{word-spacing:11.875000px;}
.ws1_c00406{word-spacing:12.120603px;}
.ws5_c00406{word-spacing:25.714286px;}
.ws6_c00406{word-spacing:60.000000px;}
.ws4_c00406{word-spacing:67.631579px;}
._1_c00406{width:46.785714px;}
._0_c00406{width:48.125000px;}
._2_c00406{width:64.642857px;}
.fc0_c00406{color:transparent;}
.fs2_c00406{font-size:30.000000px;}
.fs6_c00406{font-size:42.000000px;}
.fs7_c00406{font-size:54.000000px;}
.fs5_c00406{font-size:60.000000px;}
.fs4_c00406{font-size:66.000000px;}
.fs3_c00406{font-size:72.000000px;}
.fs1_c00406{font-size:78.000000px;}
.fs0_c00406{font-size:84.000000px;}
.y0_c00406{bottom:0.000000px;}
.y6d_c00406{bottom:176.400000px;}
.y6c_c00406{bottom:194.400000px;}
.y6b_c00406{bottom:195.900000px;}
.y6a_c00406{bottom:210.300000px;}
.y5b_c00406{bottom:212.400000px;}
.y69_c00406{bottom:224.700000px;}
.y5a_c00406{bottom:230.400000px;}
.y68_c00406{bottom:239.100000px;}
.y59_c00406{bottom:248.400000px;}
.y67_c00406{bottom:253.200000px;}
.y58_c00406{bottom:266.400000px;}
.y66_c00406{bottom:267.900000px;}
.y65_c00406{bottom:282.450000px;}
.y57_c00406{bottom:284.100000px;}
.y64_c00406{bottom:296.550000px;}
.y56_c00406{bottom:302.100000px;}
.y63_c00406{bottom:310.650000px;}
.y55_c00406{bottom:320.100000px;}
.y62_c00406{bottom:325.800000px;}
.y54_c00406{bottom:337.800000px;}
.y61_c00406{bottom:346.350000px;}
.y53_c00406{bottom:355.500000px;}
.y60_c00406{bottom:364.350000px;}
.y52_c00406{bottom:373.500000px;}
.y5f_c00406{bottom:381.900000px;}
.y5d_c00406{bottom:389.400000px;}
.y5e_c00406{bottom:390.150000px;}
.y51_c00406{bottom:391.500000px;}
.y5c_c00406{bottom:399.900000px;}
.y50_c00406{bottom:409.200000px;}
.y2a_c00406{bottom:421.350000px;}
.y4f_c00406{bottom:426.900000px;}
.y29_c00406{bottom:439.050000px;}
.y4e_c00406{bottom:444.150000px;}
.y28_c00406{bottom:455.550000px;}
.y4d_c00406{bottom:462.150000px;}
.y27_c00406{bottom:473.850000px;}
.y4c_c00406{bottom:479.850000px;}
.y26_c00406{bottom:491.550000px;}
.y4b_c00406{bottom:497.850000px;}
.y25_c00406{bottom:509.250000px;}
.y4a_c00406{bottom:515.850000px;}
.y24_c00406{bottom:526.950000px;}
.y49_c00406{bottom:541.050000px;}
.y23_c00406{bottom:545.250000px;}
.y48_c00406{bottom:555.450000px;}
.y22_c00406{bottom:562.950000px;}
.y47_c00406{bottom:575.700000px;}
.y21_c00406{bottom:580.950000px;}
.y46_c00406{bottom:593.700000px;}
.y20_c00406{bottom:598.650000px;}
.y45_c00406{bottom:612.000000px;}
.y1f_c00406{bottom:620.700000px;}
.y44_c00406{bottom:631.800000px;}
.y1e_c00406{bottom:637.950000px;}
.y43_c00406{bottom:647.250000px;}
.y1d_c00406{bottom:665.250000px;}
.y42_c00406{bottom:673.500000px;}
.y1c_c00406{bottom:682.950000px;}
.y41_c00406{bottom:691.500000px;}
.y1b_c00406{bottom:700.500000px;}
.y40_c00406{bottom:709.500000px;}
.y1a_c00406{bottom:718.500000px;}
.y3f_c00406{bottom:727.200000px;}
.y19_c00406{bottom:736.200000px;}
.y3e_c00406{bottom:744.900000px;}
.y18_c00406{bottom:753.450000px;}
.y3d_c00406{bottom:766.800000px;}
.y17_c00406{bottom:771.150000px;}
.y3c_c00406{bottom:785.100000px;}
.y16_c00406{bottom:788.850000px;}
.y15_c00406{bottom:806.550000px;}
.y3b_c00406{bottom:815.700000px;}
.y14_c00406{bottom:824.250000px;}
.y3a_c00406{bottom:833.700000px;}
.y13_c00406{bottom:842.250000px;}
.y39_c00406{bottom:851.700000px;}
.y12_c00406{bottom:859.950000px;}
.y38_c00406{bottom:869.400000px;}
.y11_c00406{bottom:877.950000px;}
.y37_c00406{bottom:887.100000px;}
.y10_c00406{bottom:895.950000px;}
.y36_c00406{bottom:904.800000px;}
.yf_c00406{bottom:913.650000px;}
.y35_c00406{bottom:923.100000px;}
.ye_c00406{bottom:931.350000px;}
.y34_c00406{bottom:948.600000px;}
.yd_c00406{bottom:949.350000px;}
.y33_c00406{bottom:969.900000px;}
.yc_c00406{bottom:971.700000px;}
.yb_c00406{bottom:988.950000px;}
.y32_c00406{bottom:993.000000px;}
.y31_c00406{bottom:1011.000000px;}
.ya_c00406{bottom:1011.150000px;}
.y30_c00406{bottom:1029.000000px;}
.y9_c00406{bottom:1029.150000px;}
.y2f_c00406{bottom:1046.700000px;}
.y8_c00406{bottom:1046.850000px;}
.y7_c00406{bottom:1064.550000px;}
.y2e_c00406{bottom:1064.700000px;}
.y2d_c00406{bottom:1082.400000px;}
.y6_c00406{bottom:1082.550000px;}
.y5_c00406{bottom:1099.800000px;}
.y2c_c00406{bottom:1100.100000px;}
.y4_c00406{bottom:1117.500000px;}
.y2b_c00406{bottom:1118.100000px;}
.y2_c00406{bottom:1144.500000px;}
.y1_c00406{bottom:1144.800000px;}
.y3_c00406{bottom:1263.900000px;}
.h4_c00406{height:30.000000px;}
.h8_c00406{height:42.000000px;}
.h9_c00406{height:54.000000px;}
.h7_c00406{height:60.000000px;}
.h6_c00406{height:66.000000px;}
.h5_c00406{height:72.000000px;}
.h3_c00406{height:78.000000px;}
.h2_c00406{height:84.000000px;}
.h0_c00406{height:1271.879975px;}
.h1_c00406{height:1272.000000px;}
.w0_c00406{width:960.480010px;}
.w1_c00406{width:960.750000px;}
.x0_c00406{left:0.000000px;}
.x39_c00406{left:93.900000px;}
.x6a_c00406{left:95.400000px;}
.x120_c00406{left:97.200000px;}
.x7a_c00406{left:98.250000px;}
.x41_c00406{left:109.500000px;}
.x6_c00406{left:111.600000px;}
.x5a_c00406{left:112.800000px;}
.x68_c00406{left:114.150000px;}
.x124_c00406{left:115.200000px;}
.x12f_c00406{left:126.000000px;}
.x46_c00406{left:127.800000px;}
.x30_c00406{left:131.100000px;}
.x75_c00406{left:132.150000px;}
.x7d_c00406{left:134.250000px;}
.x13_c00406{left:136.050000px;}
.x6f_c00406{left:137.550000px;}
.x66_c00406{left:139.350000px;}
.x1a_c00406{left:141.900000px;}
.x121_c00406{left:145.500000px;}
.x1f_c00406{left:147.900000px;}
.x34_c00406{left:150.750000px;}
.x7f_c00406{left:152.100000px;}
.x3a_c00406{left:153.600000px;}
.x2d_c00406{left:155.250000px;}
.x47_c00406{left:157.350000px;}
.xd_c00406{left:158.700000px;}
.x6b_c00406{left:160.950000px;}
.x54_c00406{left:164.400000px;}
.x89_c00406{left:166.050000px;}
.x1b_c00406{left:168.600000px;}
.x20_c00406{left:172.050000px;}
.x8e_c00406{left:173.100000px;}
.x5b_c00406{left:174.300000px;}
.x7b_c00406{left:175.950000px;}
.xe_c00406{left:177.450000px;}
.x76_c00406{left:178.950000px;}
.x7_c00406{left:182.100000px;}
.x14_c00406{left:183.900000px;}
.x25_c00406{left:185.850000px;}
.x35_c00406{left:187.800000px;}
.x4e_c00406{left:189.600000px;}
.x129_c00406{left:191.250000px;}
.x31_c00406{left:192.300000px;}
.x8d_c00406{left:193.800000px;}
.x2e_c00406{left:195.600000px;}
.x5c_c00406{left:196.650000px;}
.x48_c00406{left:199.500000px;}
.x8_c00406{left:204.750000px;}
.x15_c00406{left:208.350000px;}
.x12a_c00406{left:209.550000px;}
.x49_c00406{left:210.600000px;}
.x63_c00406{left:213.150000px;}
.x12d_c00406{left:214.650000px;}
.x3b_c00406{left:215.850000px;}
.x6c_c00406{left:217.500000px;}
.x42_c00406{left:220.350000px;}
.x4f_c00406{left:222.300000px;}
.x79_c00406{left:223.350000px;}
.x90_c00406{left:224.700000px;}
.x81_c00406{left:227.400000px;}
.x4a_c00406{left:229.350000px;}
.x16_c00406{left:231.000000px;}
.x1c_c00406{left:232.350000px;}
.x3_c00406{left:235.050000px;}
.xf_c00406{left:238.200000px;}
.x2f_c00406{left:239.550000px;}
.x21_c00406{left:241.200000px;}
.x26_c00406{left:243.150000px;}
.x12b_c00406{left:245.250000px;}
.x3c_c00406{left:246.750000px;}
.x9_c00406{left:249.000000px;}
.x88_c00406{left:250.050000px;}
.x122_c00406{left:251.250000px;}
.x56_c00406{left:254.550000px;}
.x4b_c00406{left:255.600000px;}
.x32_c00406{left:259.200000px;}
.x27_c00406{left:261.450000px;}
.x70_c00406{left:263.550000px;}
.x80_c00406{left:265.500000px;}
.x22_c00406{left:267.900000px;}
.x8a_c00406{left:270.300000px;}
.x57_c00406{left:271.500000px;}
.x50_c00406{left:276.600000px;}
.x4c_c00406{left:278.250000px;}
.x1d_c00406{left:280.200000px;}
.x17_c00406{left:282.900000px;}
.xa_c00406{left:285.000000px;}
.x3e_c00406{left:286.350000px;}
.x125_c00406{left:288.000000px;}
.x28_c00406{left:289.500000px;}
.x69_c00406{left:290.550000px;}
.x60_c00406{left:292.050000px;}
.x23_c00406{left:293.100000px;}
.x77_c00406{left:294.750000px;}
.x29_c00406{left:298.200000px;}
.x36_c00406{left:299.700000px;}
.x72_c00406{left:301.800000px;}
.x4_c00406{left:303.750000px;}
.x86_c00406{left:304.800000px;}
.x33_c00406{left:306.000000px;}
.xb_c00406{left:307.350000px;}
.x18_c00406{left:309.900000px;}
.x61_c00406{left:312.150000px;}
.x43_c00406{left:313.950000px;}
.x51_c00406{left:315.900000px;}
.x12c_c00406{left:318.300000px;}
.x12e_c00406{left:319.800000px;}
.x2a_c00406{left:323.400000px;}
.x3d_c00406{left:326.250000px;}
.x37_c00406{left:327.750000px;}
.x10_c00406{left:331.800000px;}
.x130_c00406{left:333.300000px;}
.x58_c00406{left:335.250000px;}
.x5d_c00406{left:337.050000px;}
.x2b_c00406{left:338.100000px;}
.x82_c00406{left:339.900000px;}
.x44_c00406{left:340.950000px;}
.x1_c00406{left:343.050000px;}
.x7c_c00406{left:344.400000px;}
.x123_c00406{left:345.900000px;}
.x11_c00406{left:346.950000px;}
.x38_c00406{left:350.100000px;}
.x5_c00406{left:352.050000px;}
.x45_c00406{left:354.600000px;}
.x55_c00406{left:355.650000px;}
.x73_c00406{left:358.350000px;}
.x5e_c00406{left:359.700000px;}
.x4d_c00406{left:361.050000px;}
.x87_c00406{left:362.100000px;}
.x71_c00406{left:365.100000px;}
.x64_c00406{left:367.500000px;}
.x83_c00406{left:370.500000px;}
.x3f_c00406{left:371.700000px;}
.x8b_c00406{left:375.150000px;}
.x52_c00406{left:377.850000px;}
.x78_c00406{left:379.350000px;}
.x126_c00406{left:383.400000px;}
.x1e_c00406{left:384.900000px;}
.x6d_c00406{left:385.950000px;}
.x19_c00406{left:387.750000px;}
.x2c_c00406{left:390.300000px;}
.x8c_c00406{left:392.400000px;}
.x59_c00406{left:393.900000px;}
.x8f_c00406{left:395.250000px;}
.x67_c00406{left:399.600000px;}
.x7e_c00406{left:401.250000px;}
.x84_c00406{left:402.450000px;}
.xc_c00406{left:403.500000px;}
.x40_c00406{left:406.200000px;}
.x6e_c00406{left:407.550000px;}
.x24_c00406{left:409.350000px;}
.x65_c00406{left:410.700000px;}
.x53_c00406{left:413.550000px;}
.x12_c00406{left:415.050000px;}
.x127_c00406{left:417.300000px;}
.x128_c00406{left:418.800000px;}
.x5f_c00406{left:420.150000px;}
.x85_c00406{left:421.200000px;}
.x62_c00406{left:422.700000px;}
.x74_c00406{left:428.850000px;}
.x91_c00406{left:450.300000px;}
.xdc_c00406{left:452.550000px;}
.xa9_c00406{left:463.050000px;}
.x119_c00406{left:465.450000px;}
.x98_c00406{left:468.300000px;}
.xce_c00406{left:469.500000px;}
.xed_c00406{left:470.850000px;}
.xe3_c00406{left:472.050000px;}
.xdb_c00406{left:481.050000px;}
.x99_c00406{left:488.850000px;}
.xf8_c00406{left:490.950000px;}
.xd5_c00406{left:492.900000px;}
.xa4_c00406{left:496.200000px;}
.xad_c00406{left:497.700000px;}
.x10b_c00406{left:499.800000px;}
.x106_c00406{left:504.300000px;}
.xff_c00406{left:505.800000px;}
.x118_c00406{left:506.850000px;}
.xb4_c00406{left:508.350000px;}
.xbe_c00406{left:510.750000px;}
.x131_c00406{left:513.000000px;}
.xa0_c00406{left:514.950000px;}
.xb5_c00406{left:516.300000px;}
.xae_c00406{left:518.250000px;}
.xe9_c00406{left:519.900000px;}
.x100_c00406{left:524.100000px;}
.xd8_c00406{left:526.050000px;}
.xde_c00406{left:527.700000px;}
.xea_c00406{left:528.900000px;}
.xa5_c00406{left:530.400000px;}
.x92_c00406{left:532.800000px;}
.xfc_c00406{left:533.850000px;}
.xdd_c00406{left:535.350000px;}
.x9a_c00406{left:536.700000px;}
.x11a_c00406{left:537.750000px;}
.xcb_c00406{left:539.400000px;}
.xbb_c00406{left:541.500000px;}
.x11d_c00406{left:543.300000px;}
.xeb_c00406{left:546.150000px;}
.x9b_c00406{left:547.800000px;}
.xbf_c00406{left:550.050000px;}
.xaf_c00406{left:551.700000px;}
.xd6_c00406{left:555.900000px;}
.xaa_c00406{left:558.150000px;}
.xc4_c00406{left:559.650000px;}
.xcf_c00406{left:561.300000px;}
.xcc_c00406{left:564.600000px;}
.xdf_c00406{left:566.550000px;}
.xbc_c00406{left:568.200000px;}
.x112_c00406{left:574.050000px;}
.x93_c00406{left:575.250000px;}
.xa1_c00406{left:578.700000px;}
.xd9_c00406{left:582.150000px;}
.x114_c00406{left:584.250000px;}
.xf2_c00406{left:585.300000px;}
.xc5_c00406{left:586.950000px;}
.xc6_c00406{left:590.550000px;}
.xda_c00406{left:593.700000px;}
.xb0_c00406{left:595.950000px;}
.x9c_c00406{left:600.000000px;}
.xc0_c00406{left:602.550000px;}
.xf1_c00406{left:604.350000px;}
.xbd_c00406{left:606.750000px;}
.xb6_c00406{left:611.400000px;}
.xe4_c00406{left:613.200000px;}
.xc7_c00406{left:614.400000px;}
.xab_c00406{left:618.300000px;}
.x107_c00406{left:619.650000px;}
.xf9_c00406{left:621.000000px;}
.xf6_c00406{left:622.200000px;}
.xd3_c00406{left:623.700000px;}
.x11b_c00406{left:626.400000px;}
.xb1_c00406{left:627.600000px;}
.x110_c00406{left:628.650000px;}
.xd0_c00406{left:629.700000px;}
.x10c_c00406{left:631.650000px;}
.xb7_c00406{left:633.300000px;}
.xe0_c00406{left:635.400000px;}
.x103_c00406{left:637.050000px;}
.x94_c00406{left:638.250000px;}
.x115_c00406{left:640.800000px;}
.xfb_c00406{left:642.000000px;}
.x116_c00406{left:643.950000px;}
.xd7_c00406{left:645.600000px;}
.xe5_c00406{left:647.700000px;}
.xf3_c00406{left:652.350000px;}
.x108_c00406{left:653.850000px;}
.xee_c00406{left:657.000000px;}
.xfa_c00406{left:659.100000px;}
.xef_c00406{left:664.950000px;}
.xb8_c00406{left:667.500000px;}
.xb2_c00406{left:669.300000px;}
.xa6_c00406{left:671.250000px;}
.xe6_c00406{left:672.600000px;}
.xc8_c00406{left:674.550000px;}
.xfd_c00406{left:677.400000px;}
.xe1_c00406{left:681.450000px;}
.x11c_c00406{left:682.950000px;}
.x9d_c00406{left:684.900000px;}
.x95_c00406{left:687.900000px;}
.xc9_c00406{left:689.250000px;}
.x101_c00406{left:691.800000px;}
.x111_c00406{left:693.450000px;}
.x9e_c00406{left:694.950000px;}
.xfe_c00406{left:696.900000px;}
.x132_c00406{left:699.000000px;}
.x109_c00406{left:703.200000px;}
.xc1_c00406{left:704.700000px;}
.x10d_c00406{left:706.500000px;}
.xa7_c00406{left:709.350000px;}
.xe7_c00406{left:710.400000px;}
.xb9_c00406{left:714.000000px;}
.xf4_c00406{left:716.100000px;}
.x11e_c00406{left:717.900000px;}
.xac_c00406{left:719.100000px;}
.xca_c00406{left:720.150000px;}
.xa2_c00406{left:721.950000px;}
.xc2_c00406{left:723.750000px;}
.x117_c00406{left:725.100000px;}
.x10e_c00406{left:726.600000px;}
.xf5_c00406{left:728.700000px;}
.x104_c00406{left:731.100000px;}
.xa8_c00406{left:733.050000px;}
.x96_c00406{left:735.750000px;}
.xa3_c00406{left:739.200000px;}
.x10a_c00406{left:740.250000px;}
.xd1_c00406{left:741.900000px;}
.x113_c00406{left:743.700000px;}
.xba_c00406{left:747.450000px;}
.x97_c00406{left:750.900000px;}
.xf7_c00406{left:752.250000px;}
.x9f_c00406{left:754.650000px;}
.x2_c00406{left:757.800000px;}
.xe2_c00406{left:759.300000px;}
.xcd_c00406{left:760.800000px;}
.xd2_c00406{left:762.000000px;}
.xe8_c00406{left:763.350000px;}
.xd4_c00406{left:764.400000px;}
.xb3_c00406{left:766.500000px;}
.xc3_c00406{left:768.450000px;}
.xf0_c00406{left:771.900000px;}
.x102_c00406{left:773.100000px;}
.x11f_c00406{left:776.700000px;}
.x10f_c00406{left:778.050000px;}
.xec_c00406{left:784.050000px;}
.x105_c00406{left:785.400000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws7_c00406{word-spacing:-9.542484pt;}
.ws0_c00406{word-spacing:-1.939394pt;}
.ws2_c00406{word-spacing:0.000000pt;}
.ws3_c00406{word-spacing:10.555556pt;}
.ws1_c00406{word-spacing:10.773869pt;}
.ws5_c00406{word-spacing:22.857143pt;}
.ws6_c00406{word-spacing:53.333333pt;}
.ws4_c00406{word-spacing:60.116959pt;}
._1_c00406{width:41.587302pt;}
._0_c00406{width:42.777778pt;}
._2_c00406{width:57.460317pt;}
.fs2_c00406{font-size:26.666667pt;}
.fs6_c00406{font-size:37.333333pt;}
.fs7_c00406{font-size:48.000000pt;}
.fs5_c00406{font-size:53.333333pt;}
.fs4_c00406{font-size:58.666667pt;}
.fs3_c00406{font-size:64.000000pt;}
.fs1_c00406{font-size:69.333333pt;}
.fs0_c00406{font-size:74.666667pt;}
.y0_c00406{bottom:0.000000pt;}
.y6d_c00406{bottom:156.800000pt;}
.y6c_c00406{bottom:172.800000pt;}
.y6b_c00406{bottom:174.133333pt;}
.y6a_c00406{bottom:186.933333pt;}
.y5b_c00406{bottom:188.800000pt;}
.y69_c00406{bottom:199.733333pt;}
.y5a_c00406{bottom:204.800000pt;}
.y68_c00406{bottom:212.533333pt;}
.y59_c00406{bottom:220.800000pt;}
.y67_c00406{bottom:225.066667pt;}
.y58_c00406{bottom:236.800000pt;}
.y66_c00406{bottom:238.133333pt;}
.y65_c00406{bottom:251.066667pt;}
.y57_c00406{bottom:252.533333pt;}
.y64_c00406{bottom:263.600000pt;}
.y56_c00406{bottom:268.533333pt;}
.y63_c00406{bottom:276.133333pt;}
.y55_c00406{bottom:284.533333pt;}
.y62_c00406{bottom:289.600000pt;}
.y54_c00406{bottom:300.266667pt;}
.y61_c00406{bottom:307.866667pt;}
.y53_c00406{bottom:316.000000pt;}
.y60_c00406{bottom:323.866667pt;}
.y52_c00406{bottom:332.000000pt;}
.y5f_c00406{bottom:339.466667pt;}
.y5d_c00406{bottom:346.133333pt;}
.y5e_c00406{bottom:346.800000pt;}
.y51_c00406{bottom:348.000000pt;}
.y5c_c00406{bottom:355.466667pt;}
.y50_c00406{bottom:363.733333pt;}
.y2a_c00406{bottom:374.533333pt;}
.y4f_c00406{bottom:379.466667pt;}
.y29_c00406{bottom:390.266667pt;}
.y4e_c00406{bottom:394.800000pt;}
.y28_c00406{bottom:404.933333pt;}
.y4d_c00406{bottom:410.800000pt;}
.y27_c00406{bottom:421.200000pt;}
.y4c_c00406{bottom:426.533333pt;}
.y26_c00406{bottom:436.933333pt;}
.y4b_c00406{bottom:442.533333pt;}
.y25_c00406{bottom:452.666667pt;}
.y4a_c00406{bottom:458.533333pt;}
.y24_c00406{bottom:468.400000pt;}
.y49_c00406{bottom:480.933333pt;}
.y23_c00406{bottom:484.666667pt;}
.y48_c00406{bottom:493.733333pt;}
.y22_c00406{bottom:500.400000pt;}
.y47_c00406{bottom:511.733333pt;}
.y21_c00406{bottom:516.400000pt;}
.y46_c00406{bottom:527.733333pt;}
.y20_c00406{bottom:532.133333pt;}
.y45_c00406{bottom:544.000000pt;}
.y1f_c00406{bottom:551.733333pt;}
.y44_c00406{bottom:561.600000pt;}
.y1e_c00406{bottom:567.066667pt;}
.y43_c00406{bottom:575.333333pt;}
.y1d_c00406{bottom:591.333333pt;}
.y42_c00406{bottom:598.666667pt;}
.y1c_c00406{bottom:607.066667pt;}
.y41_c00406{bottom:614.666667pt;}
.y1b_c00406{bottom:622.666667pt;}
.y40_c00406{bottom:630.666667pt;}
.y1a_c00406{bottom:638.666667pt;}
.y3f_c00406{bottom:646.400000pt;}
.y19_c00406{bottom:654.400000pt;}
.y3e_c00406{bottom:662.133333pt;}
.y18_c00406{bottom:669.733333pt;}
.y3d_c00406{bottom:681.600000pt;}
.y17_c00406{bottom:685.466667pt;}
.y3c_c00406{bottom:697.866667pt;}
.y16_c00406{bottom:701.200000pt;}
.y15_c00406{bottom:716.933333pt;}
.y3b_c00406{bottom:725.066667pt;}
.y14_c00406{bottom:732.666667pt;}
.y3a_c00406{bottom:741.066667pt;}
.y13_c00406{bottom:748.666667pt;}
.y39_c00406{bottom:757.066667pt;}
.y12_c00406{bottom:764.400000pt;}
.y38_c00406{bottom:772.800000pt;}
.y11_c00406{bottom:780.400000pt;}
.y37_c00406{bottom:788.533333pt;}
.y10_c00406{bottom:796.400000pt;}
.y36_c00406{bottom:804.266667pt;}
.yf_c00406{bottom:812.133333pt;}
.y35_c00406{bottom:820.533333pt;}
.ye_c00406{bottom:827.866667pt;}
.y34_c00406{bottom:843.200000pt;}
.yd_c00406{bottom:843.866667pt;}
.y33_c00406{bottom:862.133333pt;}
.yc_c00406{bottom:863.733333pt;}
.yb_c00406{bottom:879.066667pt;}
.y32_c00406{bottom:882.666667pt;}
.y31_c00406{bottom:898.666667pt;}
.ya_c00406{bottom:898.800000pt;}
.y30_c00406{bottom:914.666667pt;}
.y9_c00406{bottom:914.800000pt;}
.y2f_c00406{bottom:930.400000pt;}
.y8_c00406{bottom:930.533333pt;}
.y7_c00406{bottom:946.266667pt;}
.y2e_c00406{bottom:946.400000pt;}
.y2d_c00406{bottom:962.133333pt;}
.y6_c00406{bottom:962.266667pt;}
.y5_c00406{bottom:977.600000pt;}
.y2c_c00406{bottom:977.866667pt;}
.y4_c00406{bottom:993.333333pt;}
.y2b_c00406{bottom:993.866667pt;}
.y2_c00406{bottom:1017.333333pt;}
.y1_c00406{bottom:1017.600000pt;}
.y3_c00406{bottom:1123.466667pt;}
.h4_c00406{height:26.666667pt;}
.h8_c00406{height:37.333333pt;}
.h9_c00406{height:48.000000pt;}
.h7_c00406{height:53.333333pt;}
.h6_c00406{height:58.666667pt;}
.h5_c00406{height:64.000000pt;}
.h3_c00406{height:69.333333pt;}
.h2_c00406{height:74.666667pt;}
.h0_c00406{height:1130.559977pt;}
.h1_c00406{height:1130.666667pt;}
.w0_c00406{width:853.760009pt;}
.w1_c00406{width:854.000000pt;}
.x0_c00406{left:0.000000pt;}
.x39_c00406{left:83.466667pt;}
.x6a_c00406{left:84.800000pt;}
.x120_c00406{left:86.400000pt;}
.x7a_c00406{left:87.333333pt;}
.x41_c00406{left:97.333333pt;}
.x6_c00406{left:99.200000pt;}
.x5a_c00406{left:100.266667pt;}
.x68_c00406{left:101.466667pt;}
.x124_c00406{left:102.400000pt;}
.x12f_c00406{left:112.000000pt;}
.x46_c00406{left:113.600000pt;}
.x30_c00406{left:116.533333pt;}
.x75_c00406{left:117.466667pt;}
.x7d_c00406{left:119.333333pt;}
.x13_c00406{left:120.933333pt;}
.x6f_c00406{left:122.266667pt;}
.x66_c00406{left:123.866667pt;}
.x1a_c00406{left:126.133333pt;}
.x121_c00406{left:129.333333pt;}
.x1f_c00406{left:131.466667pt;}
.x34_c00406{left:134.000000pt;}
.x7f_c00406{left:135.200000pt;}
.x3a_c00406{left:136.533333pt;}
.x2d_c00406{left:138.000000pt;}
.x47_c00406{left:139.866667pt;}
.xd_c00406{left:141.066667pt;}
.x6b_c00406{left:143.066667pt;}
.x54_c00406{left:146.133333pt;}
.x89_c00406{left:147.600000pt;}
.x1b_c00406{left:149.866667pt;}
.x20_c00406{left:152.933333pt;}
.x8e_c00406{left:153.866667pt;}
.x5b_c00406{left:154.933333pt;}
.x7b_c00406{left:156.400000pt;}
.xe_c00406{left:157.733333pt;}
.x76_c00406{left:159.066667pt;}
.x7_c00406{left:161.866667pt;}
.x14_c00406{left:163.466667pt;}
.x25_c00406{left:165.200000pt;}
.x35_c00406{left:166.933333pt;}
.x4e_c00406{left:168.533333pt;}
.x129_c00406{left:170.000000pt;}
.x31_c00406{left:170.933333pt;}
.x8d_c00406{left:172.266667pt;}
.x2e_c00406{left:173.866667pt;}
.x5c_c00406{left:174.800000pt;}
.x48_c00406{left:177.333333pt;}
.x8_c00406{left:182.000000pt;}
.x15_c00406{left:185.200000pt;}
.x12a_c00406{left:186.266667pt;}
.x49_c00406{left:187.200000pt;}
.x63_c00406{left:189.466667pt;}
.x12d_c00406{left:190.800000pt;}
.x3b_c00406{left:191.866667pt;}
.x6c_c00406{left:193.333333pt;}
.x42_c00406{left:195.866667pt;}
.x4f_c00406{left:197.600000pt;}
.x79_c00406{left:198.533333pt;}
.x90_c00406{left:199.733333pt;}
.x81_c00406{left:202.133333pt;}
.x4a_c00406{left:203.866667pt;}
.x16_c00406{left:205.333333pt;}
.x1c_c00406{left:206.533333pt;}
.x3_c00406{left:208.933333pt;}
.xf_c00406{left:211.733333pt;}
.x2f_c00406{left:212.933333pt;}
.x21_c00406{left:214.400000pt;}
.x26_c00406{left:216.133333pt;}
.x12b_c00406{left:218.000000pt;}
.x3c_c00406{left:219.333333pt;}
.x9_c00406{left:221.333333pt;}
.x88_c00406{left:222.266667pt;}
.x122_c00406{left:223.333333pt;}
.x56_c00406{left:226.266667pt;}
.x4b_c00406{left:227.200000pt;}
.x32_c00406{left:230.400000pt;}
.x27_c00406{left:232.400000pt;}
.x70_c00406{left:234.266667pt;}
.x80_c00406{left:236.000000pt;}
.x22_c00406{left:238.133333pt;}
.x8a_c00406{left:240.266667pt;}
.x57_c00406{left:241.333333pt;}
.x50_c00406{left:245.866667pt;}
.x4c_c00406{left:247.333333pt;}
.x1d_c00406{left:249.066667pt;}
.x17_c00406{left:251.466667pt;}
.xa_c00406{left:253.333333pt;}
.x3e_c00406{left:254.533333pt;}
.x125_c00406{left:256.000000pt;}
.x28_c00406{left:257.333333pt;}
.x69_c00406{left:258.266667pt;}
.x60_c00406{left:259.600000pt;}
.x23_c00406{left:260.533333pt;}
.x77_c00406{left:262.000000pt;}
.x29_c00406{left:265.066667pt;}
.x36_c00406{left:266.400000pt;}
.x72_c00406{left:268.266667pt;}
.x4_c00406{left:270.000000pt;}
.x86_c00406{left:270.933333pt;}
.x33_c00406{left:272.000000pt;}
.xb_c00406{left:273.200000pt;}
.x18_c00406{left:275.466667pt;}
.x61_c00406{left:277.466667pt;}
.x43_c00406{left:279.066667pt;}
.x51_c00406{left:280.800000pt;}
.x12c_c00406{left:282.933333pt;}
.x12e_c00406{left:284.266667pt;}
.x2a_c00406{left:287.466667pt;}
.x3d_c00406{left:290.000000pt;}
.x37_c00406{left:291.333333pt;}
.x10_c00406{left:294.933333pt;}
.x130_c00406{left:296.266667pt;}
.x58_c00406{left:298.000000pt;}
.x5d_c00406{left:299.600000pt;}
.x2b_c00406{left:300.533333pt;}
.x82_c00406{left:302.133333pt;}
.x44_c00406{left:303.066667pt;}
.x1_c00406{left:304.933333pt;}
.x7c_c00406{left:306.133333pt;}
.x123_c00406{left:307.466667pt;}
.x11_c00406{left:308.400000pt;}
.x38_c00406{left:311.200000pt;}
.x5_c00406{left:312.933333pt;}
.x45_c00406{left:315.200000pt;}
.x55_c00406{left:316.133333pt;}
.x73_c00406{left:318.533333pt;}
.x5e_c00406{left:319.733333pt;}
.x4d_c00406{left:320.933333pt;}
.x87_c00406{left:321.866667pt;}
.x71_c00406{left:324.533333pt;}
.x64_c00406{left:326.666667pt;}
.x83_c00406{left:329.333333pt;}
.x3f_c00406{left:330.400000pt;}
.x8b_c00406{left:333.466667pt;}
.x52_c00406{left:335.866667pt;}
.x78_c00406{left:337.200000pt;}
.x126_c00406{left:340.800000pt;}
.x1e_c00406{left:342.133333pt;}
.x6d_c00406{left:343.066667pt;}
.x19_c00406{left:344.666667pt;}
.x2c_c00406{left:346.933333pt;}
.x8c_c00406{left:348.800000pt;}
.x59_c00406{left:350.133333pt;}
.x8f_c00406{left:351.333333pt;}
.x67_c00406{left:355.200000pt;}
.x7e_c00406{left:356.666667pt;}
.x84_c00406{left:357.733333pt;}
.xc_c00406{left:358.666667pt;}
.x40_c00406{left:361.066667pt;}
.x6e_c00406{left:362.266667pt;}
.x24_c00406{left:363.866667pt;}
.x65_c00406{left:365.066667pt;}
.x53_c00406{left:367.600000pt;}
.x12_c00406{left:368.933333pt;}
.x127_c00406{left:370.933333pt;}
.x128_c00406{left:372.266667pt;}
.x5f_c00406{left:373.466667pt;}
.x85_c00406{left:374.400000pt;}
.x62_c00406{left:375.733333pt;}
.x74_c00406{left:381.200000pt;}
.x91_c00406{left:400.266667pt;}
.xdc_c00406{left:402.266667pt;}
.xa9_c00406{left:411.600000pt;}
.x119_c00406{left:413.733333pt;}
.x98_c00406{left:416.266667pt;}
.xce_c00406{left:417.333333pt;}
.xed_c00406{left:418.533333pt;}
.xe3_c00406{left:419.600000pt;}
.xdb_c00406{left:427.600000pt;}
.x99_c00406{left:434.533333pt;}
.xf8_c00406{left:436.400000pt;}
.xd5_c00406{left:438.133333pt;}
.xa4_c00406{left:441.066667pt;}
.xad_c00406{left:442.400000pt;}
.x10b_c00406{left:444.266667pt;}
.x106_c00406{left:448.266667pt;}
.xff_c00406{left:449.600000pt;}
.x118_c00406{left:450.533333pt;}
.xb4_c00406{left:451.866667pt;}
.xbe_c00406{left:454.000000pt;}
.x131_c00406{left:456.000000pt;}
.xa0_c00406{left:457.733333pt;}
.xb5_c00406{left:458.933333pt;}
.xae_c00406{left:460.666667pt;}
.xe9_c00406{left:462.133333pt;}
.x100_c00406{left:465.866667pt;}
.xd8_c00406{left:467.600000pt;}
.xde_c00406{left:469.066667pt;}
.xea_c00406{left:470.133333pt;}
.xa5_c00406{left:471.466667pt;}
.x92_c00406{left:473.600000pt;}
.xfc_c00406{left:474.533333pt;}
.xdd_c00406{left:475.866667pt;}
.x9a_c00406{left:477.066667pt;}
.x11a_c00406{left:478.000000pt;}
.xcb_c00406{left:479.466667pt;}
.xbb_c00406{left:481.333333pt;}
.x11d_c00406{left:482.933333pt;}
.xeb_c00406{left:485.466667pt;}
.x9b_c00406{left:486.933333pt;}
.xbf_c00406{left:488.933333pt;}
.xaf_c00406{left:490.400000pt;}
.xd6_c00406{left:494.133333pt;}
.xaa_c00406{left:496.133333pt;}
.xc4_c00406{left:497.466667pt;}
.xcf_c00406{left:498.933333pt;}
.xcc_c00406{left:501.866667pt;}
.xdf_c00406{left:503.600000pt;}
.xbc_c00406{left:505.066667pt;}
.x112_c00406{left:510.266667pt;}
.x93_c00406{left:511.333333pt;}
.xa1_c00406{left:514.400000pt;}
.xd9_c00406{left:517.466667pt;}
.x114_c00406{left:519.333333pt;}
.xf2_c00406{left:520.266667pt;}
.xc5_c00406{left:521.733333pt;}
.xc6_c00406{left:524.933333pt;}
.xda_c00406{left:527.733333pt;}
.xb0_c00406{left:529.733333pt;}
.x9c_c00406{left:533.333333pt;}
.xc0_c00406{left:535.600000pt;}
.xf1_c00406{left:537.200000pt;}
.xbd_c00406{left:539.333333pt;}
.xb6_c00406{left:543.466667pt;}
.xe4_c00406{left:545.066667pt;}
.xc7_c00406{left:546.133333pt;}
.xab_c00406{left:549.600000pt;}
.x107_c00406{left:550.800000pt;}
.xf9_c00406{left:552.000000pt;}
.xf6_c00406{left:553.066667pt;}
.xd3_c00406{left:554.400000pt;}
.x11b_c00406{left:556.800000pt;}
.xb1_c00406{left:557.866667pt;}
.x110_c00406{left:558.800000pt;}
.xd0_c00406{left:559.733333pt;}
.x10c_c00406{left:561.466667pt;}
.xb7_c00406{left:562.933333pt;}
.xe0_c00406{left:564.800000pt;}
.x103_c00406{left:566.266667pt;}
.x94_c00406{left:567.333333pt;}
.x115_c00406{left:569.600000pt;}
.xfb_c00406{left:570.666667pt;}
.x116_c00406{left:572.400000pt;}
.xd7_c00406{left:573.866667pt;}
.xe5_c00406{left:575.733333pt;}
.xf3_c00406{left:579.866667pt;}
.x108_c00406{left:581.200000pt;}
.xee_c00406{left:584.000000pt;}
.xfa_c00406{left:585.866667pt;}
.xef_c00406{left:591.066667pt;}
.xb8_c00406{left:593.333333pt;}
.xb2_c00406{left:594.933333pt;}
.xa6_c00406{left:596.666667pt;}
.xe6_c00406{left:597.866667pt;}
.xc8_c00406{left:599.600000pt;}
.xfd_c00406{left:602.133333pt;}
.xe1_c00406{left:605.733333pt;}
.x11c_c00406{left:607.066667pt;}
.x9d_c00406{left:608.800000pt;}
.x95_c00406{left:611.466667pt;}
.xc9_c00406{left:612.666667pt;}
.x101_c00406{left:614.933333pt;}
.x111_c00406{left:616.400000pt;}
.x9e_c00406{left:617.733333pt;}
.xfe_c00406{left:619.466667pt;}
.x132_c00406{left:621.333333pt;}
.x109_c00406{left:625.066667pt;}
.xc1_c00406{left:626.400000pt;}
.x10d_c00406{left:628.000000pt;}
.xa7_c00406{left:630.533333pt;}
.xe7_c00406{left:631.466667pt;}
.xb9_c00406{left:634.666667pt;}
.xf4_c00406{left:636.533333pt;}
.x11e_c00406{left:638.133333pt;}
.xac_c00406{left:639.200000pt;}
.xca_c00406{left:640.133333pt;}
.xa2_c00406{left:641.733333pt;}
.xc2_c00406{left:643.333333pt;}
.x117_c00406{left:644.533333pt;}
.x10e_c00406{left:645.866667pt;}
.xf5_c00406{left:647.733333pt;}
.x104_c00406{left:649.866667pt;}
.xa8_c00406{left:651.600000pt;}
.x96_c00406{left:654.000000pt;}
.xa3_c00406{left:657.066667pt;}
.x10a_c00406{left:658.000000pt;}
.xd1_c00406{left:659.466667pt;}
.x113_c00406{left:661.066667pt;}
.xba_c00406{left:664.400000pt;}
.x97_c00406{left:667.466667pt;}
.xf7_c00406{left:668.666667pt;}
.x9f_c00406{left:670.800000pt;}
.x2_c00406{left:673.600000pt;}
.xe2_c00406{left:674.933333pt;}
.xcd_c00406{left:676.266667pt;}
.xd2_c00406{left:677.333333pt;}
.xe8_c00406{left:678.533333pt;}
.xd4_c00406{left:679.466667pt;}
.xb3_c00406{left:681.333333pt;}
.xc3_c00406{left:683.066667pt;}
.xf0_c00406{left:686.133333pt;}
.x102_c00406{left:687.200000pt;}
.x11f_c00406{left:690.400000pt;}
.x10f_c00406{left:691.600000pt;}
.xec_c00406{left:696.933333pt;}
.x105_c00406{left:698.133333pt;}
}





/* 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_c00407 {
    display:none;
  }
  .loading-indicator_c00407.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00407 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_c00407 { 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_c00407" -> "#page-container .classname_c00407")
 */
.pf_c00407 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00407 { /* 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_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00407 { /* 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_c00407 { /* 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_c00407 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00407 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00407 {overflow:visible;}
  }
}
.c_c00407 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00407 { /* 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_c00407:after { /* webkit #35443 */
  content: '';
}
.t_c00407:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00407 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 */
}
.__c00407 { /* 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_c00407 { /* info for Javascript */
  display:none;
}
.l_c00407 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00407 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00407 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00407: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_c00407 {
    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_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00407.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_c00407 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00407{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00407;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.000000;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;}
.ma9_c00407{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.med_c00407{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.md9_c00407{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00407{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00407{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00407{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00407{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00407{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00407{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00407{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m91_c00407{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00407{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00407{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m58_c00407{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00407{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00407{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00407{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m102_c00407{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m109_c00407{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m21_c00407{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00407{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00407{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m79_c00407{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m93_c00407{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00407{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me7_c00407{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m59_c00407{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m43_c00407{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00407{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m57_c00407{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00407{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00407{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m12_c00407{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m63_c00407{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m66_c00407{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mca_c00407{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.md6_c00407{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m49_c00407{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00407{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m15_c00407{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb_c00407{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m60_c00407{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m105_c00407{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00407{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m9_c00407{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m90_c00407{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m27_c00407{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m39_c00407{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m26_c00407{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00407{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m75_c00407{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m67_c00407{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m78_c00407{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m36_c00407{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00407{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m45_c00407{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m20_c00407{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00407{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00407{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md8_c00407{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma_c00407{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m81_c00407{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00407{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00407{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me8_c00407{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m29_c00407{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00407{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00407{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00407{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00407{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m41_c00407{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m94_c00407{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m76_c00407{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m22_c00407{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00407{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00407{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00407{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m106_c00407{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00407{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00407{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00407{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m13_c00407{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m80_c00407{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00407{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m84_c00407{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00407{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf_c00407{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m24_c00407{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md4_c00407{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m87_c00407{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00407{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m25_c00407{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m72_c00407{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m104_c00407{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00407{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m83_c00407{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md5_c00407{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00407{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mde_c00407{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00407{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00407{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me_c00407{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m77_c00407{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m85_c00407{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m31_c00407{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m47_c00407{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m68_c00407{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m97_c00407{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00407{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mce_c00407{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6_c00407{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00407{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m16_c00407{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00407{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00407{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00407{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00407{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7_c00407{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md_c00407{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md1_c00407{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m56_c00407{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m32_c00407{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m99_c00407{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m28_c00407{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00407{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m92_c00407{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00407{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m40_c00407{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mc_c00407{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m113_c00407{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m65_c00407{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00407{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m71_c00407{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00407{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10_c00407{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m54_c00407{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m17_c00407{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00407{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00407{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5_c00407{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m48_c00407{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00407{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00407{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00407{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m62_c00407{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00407{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00407{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m70_c00407{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mba_c00407{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m38_c00407{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00407{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.meb_c00407{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00407{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00407{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m82_c00407{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m30_c00407{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m95_c00407{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00407{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m64_c00407{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00407{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m107_c00407{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me0_c00407{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00407{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00407{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00407{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00407{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me9_c00407{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00407{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00407{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8_c00407{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00407{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00407{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00407{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00407{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00407{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mda_c00407{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00407{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00407{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00407{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00407{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m86_c00407{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00407{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00407{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00407{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m52_c00407{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00407{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00407{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m51_c00407{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m100_c00407{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m14_c00407{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00407{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m74_c00407{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00407{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m34_c00407{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00407{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00407{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m33_c00407{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00407{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00407{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m35_c00407{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00407{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md3_c00407{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m96_c00407{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m50_c00407{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00407{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00407{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00407{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m23_c00407{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00407{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md0_c00407{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00407{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m73_c00407{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00407{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00407{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00407{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m103_c00407{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00407{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m46_c00407{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mef_c00407{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00407{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.me2_c00407{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m88_c00407{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00407{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m108_c00407{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mff_c00407{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m37_c00407{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m89_c00407{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00407{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m61_c00407{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);}
.m6f_c00407{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m110_c00407{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00407{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m42_c00407{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mab_c00407{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00407{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00407{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mea_c00407{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00407{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m55_c00407{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md7_c00407{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m111_c00407{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m53_c00407{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m98_c00407{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00407{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me5_c00407{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00407{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me4_c00407{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m44_c00407{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m101_c00407{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.maf_c00407{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00407{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m69_c00407{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me6_c00407{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00407{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me1_c00407{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mec_c00407{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me3_c00407{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m112_c00407{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m18_c00407{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00407{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.md2_c00407{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mee_c00407{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00407{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00407{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00407{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00407{transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00407{transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);}
.mad_c00407{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.maa_c00407{transform:matrix(0.536000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536000,0.000000,0.000000,0.250000,0,0);}
.mac_c00407{transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);}
.mae_c00407{transform:matrix(21.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(21.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(21.696000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{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__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00407{word-spacing:-9.794297px;}
.ws0_c00407{word-spacing:-7.379310px;}
.ws7_c00407{word-spacing:-6.666667px;}
.ws3_c00407{word-spacing:-0.347709px;}
.ws8_c00407{word-spacing:0.000000px;}
.ws4_c00407{word-spacing:2.066098px;}
.ws1_c00407{word-spacing:2.666667px;}
.ws6_c00407{word-spacing:6.250000px;}
.ws5_c00407{word-spacing:10.737033px;}
.fc0_c00407{color:transparent;}
.fs4_c00407{font-size:30.000000px;}
.fs6_c00407{font-size:48.000000px;}
.fs5_c00407{font-size:54.000000px;}
.fs3_c00407{font-size:60.000000px;}
.fs1_c00407{font-size:66.000000px;}
.fs2_c00407{font-size:72.000000px;}
.fs0_c00407{font-size:84.000000px;}
.y0_c00407{bottom:0.000000px;}
.y63_c00407{bottom:189.300000px;}
.y34_c00407{bottom:196.650000px;}
.y62_c00407{bottom:204.000000px;}
.y33_c00407{bottom:211.050000px;}
.y61_c00407{bottom:219.150000px;}
.y32_c00407{bottom:225.750000px;}
.y60_c00407{bottom:233.550000px;}
.y31_c00407{bottom:239.400000px;}
.y5f_c00407{bottom:247.650000px;}
.y30_c00407{bottom:253.800000px;}
.y5e_c00407{bottom:262.050000px;}
.y2f_c00407{bottom:267.900000px;}
.y5d_c00407{bottom:279.750000px;}
.y2e_c00407{bottom:286.950000px;}
.y5c_c00407{bottom:294.900000px;}
.y5b_c00407{bottom:309.150000px;}
.y2d_c00407{bottom:312.750000px;}
.y5a_c00407{bottom:323.250000px;}
.y2c_c00407{bottom:328.650000px;}
.y2b_c00407{bottom:336.900000px;}
.y59_c00407{bottom:337.650000px;}
.y2a_c00407{bottom:349.200000px;}
.y58_c00407{bottom:351.750000px;}
.y29_c00407{bottom:375.900000px;}
.y57_c00407{bottom:398.100000px;}
.y28_c00407{bottom:415.800000px;}
.y56_c00407{bottom:416.100000px;}
.y55_c00407{bottom:434.100000px;}
.y54_c00407{bottom:451.800000px;}
.y27_c00407{bottom:459.600000px;}
.y26_c00407{bottom:477.300000px;}
.y53_c00407{bottom:479.100000px;}
.y25_c00407{bottom:495.300000px;}
.y52_c00407{bottom:497.100000px;}
.y24_c00407{bottom:513.000000px;}
.y51_c00407{bottom:514.800000px;}
.y23_c00407{bottom:531.000000px;}
.y50_c00407{bottom:533.850000px;}
.y22_c00407{bottom:549.000000px;}
.y4f_c00407{bottom:550.350000px;}
.y21_c00407{bottom:566.700000px;}
.y64_c00407{bottom:567.000000px;}
.y4e_c00407{bottom:568.350000px;}
.y20_c00407{bottom:584.400000px;}
.y4d_c00407{bottom:586.050000px;}
.y1f_c00407{bottom:602.100000px;}
.y4c_c00407{bottom:608.400000px;}
.y1e_c00407{bottom:619.800000px;}
.y4b_c00407{bottom:626.100000px;}
.y1d_c00407{bottom:637.800000px;}
.y1c_c00407{bottom:655.500000px;}
.y4a_c00407{bottom:662.100000px;}
.y1b_c00407{bottom:673.500000px;}
.y49_c00407{bottom:684.300000px;}
.y1a_c00407{bottom:691.500000px;}
.y48_c00407{bottom:706.800000px;}
.y19_c00407{bottom:709.500000px;}
.y47_c00407{bottom:724.800000px;}
.y18_c00407{bottom:727.500000px;}
.y17_c00407{bottom:745.500000px;}
.y46_c00407{bottom:746.700000px;}
.y16_c00407{bottom:763.200000px;}
.y45_c00407{bottom:768.600000px;}
.y44_c00407{bottom:786.600000px;}
.y15_c00407{bottom:790.050000px;}
.y14_c00407{bottom:808.050000px;}
.y43_c00407{bottom:808.800000px;}
.y13_c00407{bottom:826.050000px;}
.y42_c00407{bottom:826.500000px;}
.y12_c00407{bottom:844.050000px;}
.y41_c00407{bottom:849.300000px;}
.y11_c00407{bottom:862.050000px;}
.y40_c00407{bottom:867.300000px;}
.y10_c00407{bottom:880.050000px;}
.y3f_c00407{bottom:885.000000px;}
.yf_c00407{bottom:897.750000px;}
.y3e_c00407{bottom:902.700000px;}
.ye_c00407{bottom:915.750000px;}
.y3d_c00407{bottom:920.700000px;}
.yd_c00407{bottom:933.750000px;}
.y3c_c00407{bottom:938.700000px;}
.yc_c00407{bottom:951.450000px;}
.y3b_c00407{bottom:956.400000px;}
.yb_c00407{bottom:969.150000px;}
.y3a_c00407{bottom:974.400000px;}
.y39_c00407{bottom:992.100000px;}
.ya_c00407{bottom:995.700000px;}
.y38_c00407{bottom:1010.100000px;}
.y9_c00407{bottom:1013.700000px;}
.y37_c00407{bottom:1027.800000px;}
.y8_c00407{bottom:1031.700000px;}
.y36_c00407{bottom:1045.500000px;}
.y7_c00407{bottom:1049.700000px;}
.y6_c00407{bottom:1067.700000px;}
.y5_c00407{bottom:1085.400000px;}
.y4_c00407{bottom:1103.100000px;}
.y35_c00407{bottom:1103.400000px;}
.y3_c00407{bottom:1121.100000px;}
.y1_c00407{bottom:1145.850000px;}
.y2_c00407{bottom:1147.650000px;}
.h6_c00407{height:30.000000px;}
.h8_c00407{height:48.000000px;}
.h7_c00407{height:54.000000px;}
.h5_c00407{height:60.000000px;}
.h3_c00407{height:66.000000px;}
.h4_c00407{height:72.000000px;}
.h2_c00407{height:84.000000px;}
.h1_c00407{height:1267.500000px;}
.h0_c00407{height:1267.559967px;}
.w0_c00407{width:960.480010px;}
.w1_c00407{width:960.750000px;}
.x0_c00407{left:0.000000px;}
.x95_c00407{left:176.700000px;}
.x1_c00407{left:181.500000px;}
.x33_c00407{left:188.250000px;}
.x9b_c00407{left:191.550000px;}
.x92_c00407{left:193.200000px;}
.x72_c00407{left:194.550000px;}
.x54_c00407{left:195.750000px;}
.x4a_c00407{left:196.800000px;}
.x3c_c00407{left:198.000000px;}
.xa_c00407{left:199.800000px;}
.x9e_c00407{left:204.150000px;}
.xa0_c00407{left:206.100000px;}
.x6a_c00407{left:214.500000px;}
.x3_c00407{left:217.500000px;}
.x6e_c00407{left:219.450000px;}
.x7f_c00407{left:222.300000px;}
.x1b_c00407{left:224.400000px;}
.x84_c00407{left:226.200000px;}
.x24_c00407{left:227.250000px;}
.xb_c00407{left:230.100000px;}
.x3d_c00407{left:232.200000px;}
.x91_c00407{left:234.600000px;}
.x13_c00407{left:236.400000px;}
.x47_c00407{left:238.200000px;}
.x9c_c00407{left:239.400000px;}
.x6b_c00407{left:241.500000px;}
.x2d_c00407{left:242.550000px;}
.x4_c00407{left:244.800000px;}
.x7b_c00407{left:245.850000px;}
.x98_c00407{left:247.650000px;}
.xa1_c00407{left:248.700000px;}
.xc_c00407{left:251.700000px;}
.x5f_c00407{left:253.650000px;}
.x4b_c00407{left:254.700000px;}
.x8e_c00407{left:256.350000px;}
.x7c_c00407{left:257.400000px;}
.x14_c00407{left:259.500000px;}
.x85_c00407{left:261.150000px;}
.x25_c00407{left:263.250000px;}
.x42_c00407{left:264.600000px;}
.x34_c00407{left:267.150000px;}
.x65_c00407{left:268.350000px;}
.x73_c00407{left:269.400000px;}
.x1c_c00407{left:271.200000px;}
.x38_c00407{left:273.600000px;}
.x55_c00407{left:275.250000px;}
.x9d_c00407{left:277.200000px;}
.x8b_c00407{left:278.250000px;}
.x51_c00407{left:280.050000px;}
.x43_c00407{left:281.850000px;}
.x59_c00407{left:283.200000px;}
.x74_c00407{left:285.300000px;}
.x87_c00407{left:286.350000px;}
.x66_c00407{left:288.450000px;}
.xd_c00407{left:290.550000px;}
.x2e_c00407{left:294.750000px;}
.x9a_c00407{left:296.700000px;}
.x82_c00407{left:298.950000px;}
.x39_c00407{left:300.300000px;}
.x5a_c00407{left:301.500000px;}
.x35_c00407{left:303.450000px;}
.x5_c00407{left:304.950000px;}
.x68_c00407{left:306.600000px;}
.x6f_c00407{left:307.950000px;}
.xe_c00407{left:310.350000px;}
.x26_c00407{left:312.150000px;}
.x4c_c00407{left:314.400000px;}
.x1d_c00407{left:315.450000px;}
.x3a_c00407{left:317.250000px;}
.x2f_c00407{left:318.450000px;}
.x96_c00407{left:319.650000px;}
.x5b_c00407{left:321.000000px;}
.x15_c00407{left:325.650000px;}
.x80_c00407{left:329.850000px;}
.xf_c00407{left:331.650000px;}
.x89_c00407{left:333.750000px;}
.x1e_c00407{left:335.250000px;}
.x75_c00407{left:337.200000px;}
.x94_c00407{left:338.400000px;}
.xa5_c00407{left:340.650000px;}
.x16_c00407{left:342.600000px;}
.x7d_c00407{left:344.850000px;}
.x69_c00407{left:346.950000px;}
.x5c_c00407{left:349.500000px;}
.x3e_c00407{left:351.600000px;}
.x8c_c00407{left:353.400000px;}
.x70_c00407{left:354.450000px;}
.x76_c00407{left:355.950000px;}
.x56_c00407{left:357.000000px;}
.x8f_c00407{left:358.650000px;}
.x30_c00407{left:361.950000px;}
.x93_c00407{left:363.000000px;}
.x78_c00407{left:364.050000px;}
.x6_c00407{left:366.150000px;}
.x60_c00407{left:367.350000px;}
.x1f_c00407{left:369.150000px;}
.x52_c00407{left:370.350000px;}
.x27_c00407{left:371.850000px;}
.x4d_c00407{left:374.550000px;}
.x10_c00407{left:376.950000px;}
.x31_c00407{left:378.900000px;}
.xa2_c00407{left:380.700000px;}
.x3f_c00407{left:382.200000px;}
.x44_c00407{left:383.250000px;}
.x67_c00407{left:386.250000px;}
.x28_c00407{left:388.350000px;}
.x40_c00407{left:390.900000px;}
.x8a_c00407{left:392.100000px;}
.x4e_c00407{left:393.600000px;}
.x77_c00407{left:395.550000px;}
.x7_c00407{left:398.550000px;}
.x6c_c00407{left:400.200000px;}
.x17_c00407{left:401.250000px;}
.x8d_c00407{left:404.250000px;}
.x53_c00407{left:407.400000px;}
.x5d_c00407{left:408.900000px;}
.x20_c00407{left:410.850000px;}
.x48_c00407{left:413.850000px;}
.x4f_c00407{left:415.500000px;}
.x45_c00407{left:417.450000px;}
.x86_c00407{left:422.850000px;}
.x8_c00407{left:424.050000px;}
.x2_c00407{left:426.000000px;}
.x32_c00407{left:427.200000px;}
.x61_c00407{left:428.850000px;}
.x21_c00407{left:430.350000px;}
.x36_c00407{left:432.300000px;}
.x46_c00407{left:433.350000px;}
.x99_c00407{left:435.150000px;}
.x62_c00407{left:436.350000px;}
.x29_c00407{left:437.700000px;}
.x90_c00407{left:438.900000px;}
.x97_c00407{left:440.400000px;}
.x57_c00407{left:441.450000px;}
.x2a_c00407{left:445.950000px;}
.x11_c00407{left:447.450000px;}
.x9f_c00407{left:448.500000px;}
.x49_c00407{left:449.850000px;}
.x79_c00407{left:451.200000px;}
.x18_c00407{left:452.250000px;}
.xa3_c00407{left:453.450000px;}
.x63_c00407{left:455.100000px;}
.x81_c00407{left:459.150000px;}
.x2b_c00407{left:462.150000px;}
.xa4_c00407{left:463.200000px;}
.x22_c00407{left:464.550000px;}
.x71_c00407{left:468.150000px;}
.x83_c00407{left:469.500000px;}
.x7a_c00407{left:472.800000px;}
.x23_c00407{left:474.300000px;}
.x7e_c00407{left:476.850000px;}
.x41_c00407{left:478.350000px;}
.x5e_c00407{left:479.400000px;}
.x3b_c00407{left:480.600000px;}
.x9_c00407{left:482.400000px;}
.x88_c00407{left:485.700000px;}
.x2c_c00407{left:487.350000px;}
.x6d_c00407{left:491.250000px;}
.x64_c00407{left:492.900000px;}
.x12_c00407{left:496.050000px;}
.x19_c00407{left:497.250000px;}
.x58_c00407{left:500.550000px;}
.x37_c00407{left:502.950000px;}
.x50_c00407{left:506.250000px;}
.x1a_c00407{left:511.350000px;}
.x148_c00407{left:530.100000px;}
.x13d_c00407{left:531.600000px;}
.x137_c00407{left:532.800000px;}
.x10b_c00407{left:534.600000px;}
.x132_c00407{left:536.250000px;}
.x138_c00407{left:545.100000px;}
.x12e_c00407{left:548.250000px;}
.x10f_c00407{left:550.950000px;}
.x113_c00407{left:552.150000px;}
.xfc_c00407{left:553.500000px;}
.xe1_c00407{left:555.000000px;}
.xaf_c00407{left:556.200000px;}
.x143_c00407{left:561.000000px;}
.x128_c00407{left:564.750000px;}
.x106_c00407{left:570.300000px;}
.xff_c00407{left:571.650000px;}
.x12a_c00407{left:572.850000px;}
.xa6_c00407{left:573.900000px;}
.xc0_c00407{left:577.050000px;}
.x125_c00407{left:578.250000px;}
.xdc_c00407{left:579.750000px;}
.x119_c00407{left:580.800000px;}
.x10c_c00407{left:582.900000px;}
.xe2_c00407{left:585.600000px;}
.x11f_c00407{left:586.800000px;}
.xfd_c00407{left:589.500000px;}
.xc1_c00407{left:593.250000px;}
.xc8_c00407{left:595.800000px;}
.xf8_c00407{left:597.150000px;}
.x114_c00407{left:598.200000px;}
.xcc_c00407{left:600.000000px;}
.xee_c00407{left:601.650000px;}
.x102_c00407{left:603.750000px;}
.x107_c00407{left:604.800000px;}
.xd1_c00407{left:606.150000px;}
.x13a_c00407{left:607.350000px;}
.x13b_c00407{left:608.700000px;}
.xfe_c00407{left:610.350000px;}
.xb9_c00407{left:611.700000px;}
.x133_c00407{left:614.100000px;}
.x110_c00407{left:615.150000px;}
.x146_c00407{left:616.350000px;}
.x11b_c00407{left:619.800000px;}
.x12f_c00407{left:621.000000px;}
.xef_c00407{left:622.200000px;}
.xd2_c00407{left:623.400000px;}
.x12b_c00407{left:625.050000px;}
.x120_c00407{left:626.400000px;}
.xe8_c00407{left:628.350000px;}
.x13c_c00407{left:632.400000px;}
.xa7_c00407{left:636.150000px;}
.x100_c00407{left:637.950000px;}
.xe3_c00407{left:639.300000px;}
.xb0_c00407{left:640.500000px;}
.xdd_c00407{left:642.450000px;}
.xe9_c00407{left:643.500000px;}
.xf9_c00407{left:646.050000px;}
.xb4_c00407{left:648.450000px;}
.x101_c00407{left:650.850000px;}
.xba_c00407{left:653.850000px;}
.xa8_c00407{left:656.700000px;}
.x130_c00407{left:658.800000px;}
.xc2_c00407{left:659.850000px;}
.xf5_c00407{left:660.900000px;}
.xd3_c00407{left:662.250000px;}
.xf0_c00407{left:664.350000px;}
.x11c_c00407{left:667.050000px;}
.x141_c00407{left:670.500000px;}
.xf1_c00407{left:673.350000px;}
.xcd_c00407{left:676.650000px;}
.x109_c00407{left:677.850000px;}
.x147_c00407{left:678.900000px;}
.xc9_c00407{left:681.150000px;}
.x11d_c00407{left:683.250000px;}
.xf6_c00407{left:684.300000px;}
.x13e_c00407{left:685.800000px;}
.x129_c00407{left:688.500000px;}
.x111_c00407{left:690.750000px;}
.xeb_c00407{left:694.350000px;}
.x134_c00407{left:696.600000px;}
.x115_c00407{left:697.650000px;}
.x121_c00407{left:699.450000px;}
.xa9_c00407{left:700.650000px;}
.x142_c00407{left:702.150000px;}
.xb1_c00407{left:703.200000px;}
.x11e_c00407{left:704.550000px;}
.x126_c00407{left:707.850000px;}
.xb5_c00407{left:710.700000px;}
.xc3_c00407{left:712.350000px;}
.xd7_c00407{left:717.300000px;}
.xb2_c00407{left:718.350000px;}
.xaa_c00407{left:720.450000px;}
.xbb_c00407{left:721.950000px;}
.x122_c00407{left:727.200000px;}
.xce_c00407{left:729.600000px;}
.xc4_c00407{left:731.850000px;}
.xf2_c00407{left:734.250000px;}
.x116_c00407{left:735.450000px;}
.xd4_c00407{left:738.600000px;}
.xf7_c00407{left:739.800000px;}
.xe4_c00407{left:741.900000px;}
.xb6_c00407{left:743.400000px;}
.x10d_c00407{left:744.600000px;}
.x127_c00407{left:745.950000px;}
.x108_c00407{left:747.000000px;}
.xbe_c00407{left:748.500000px;}
.x103_c00407{left:750.600000px;}
.xe5_c00407{left:752.400000px;}
.xea_c00407{left:754.350000px;}
.xc5_c00407{left:756.750000px;}
.x117_c00407{left:758.100000px;}
.x12c_c00407{left:760.800000px;}
.xde_c00407{left:762.000000px;}
.x112_c00407{left:764.550000px;}
.xd8_c00407{left:765.900000px;}
.x13f_c00407{left:767.550000px;}
.x123_c00407{left:768.600000px;}
.xb7_c00407{left:772.500000px;}
.xca_c00407{left:774.000000px;}
.xbc_c00407{left:776.250000px;}
.xab_c00407{left:778.350000px;}
.xec_c00407{left:780.000000px;}
.xfa_c00407{left:781.800000px;}
.x10a_c00407{left:783.000000px;}
.xf3_c00407{left:784.350000px;}
.xd5_c00407{left:785.700000px;}
.x12d_c00407{left:787.050000px;}
.xac_c00407{left:788.400000px;}
.xcf_c00407{left:789.750000px;}
.xd9_c00407{left:792.600000px;}
.xb3_c00407{left:794.250000px;}
.x124_c00407{left:797.100000px;}
.x144_c00407{left:798.300000px;}
.x118_c00407{left:806.400000px;}
.xbd_c00407{left:807.900000px;}
.xbf_c00407{left:808.950000px;}
.xe6_c00407{left:811.500000px;}
.x131_c00407{left:812.700000px;}
.x10e_c00407{left:813.750000px;}
.xc6_c00407{left:816.900000px;}
.xcb_c00407{left:818.250000px;}
.x104_c00407{left:820.050000px;}
.x145_c00407{left:821.700000px;}
.x11a_c00407{left:822.750000px;}
.xfb_c00407{left:824.250000px;}
.xad_c00407{left:825.450000px;}
.xf4_c00407{left:829.350000px;}
.xe7_c00407{left:831.000000px;}
.xdf_c00407{left:835.500000px;}
.xed_c00407{left:837.900000px;}
.x139_c00407{left:839.850000px;}
.xae_c00407{left:841.350000px;}
.x149_c00407{left:842.700000px;}
.x105_c00407{left:845.250000px;}
.xda_c00407{left:846.900000px;}
.xe0_c00407{left:849.150000px;}
.x140_c00407{left:850.650000px;}
.xc7_c00407{left:851.850000px;}
.x135_c00407{left:853.950000px;}
.xd0_c00407{left:857.100000px;}
.xd6_c00407{left:861.750000px;}
.x136_c00407{left:862.950000px;}
.xb8_c00407{left:864.000000px;}
.xdb_c00407{left:870.600000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws2_c00407{word-spacing:-8.706042pt;}
.ws0_c00407{word-spacing:-6.559387pt;}
.ws7_c00407{word-spacing:-5.925926pt;}
.ws3_c00407{word-spacing:-0.309075pt;}
.ws8_c00407{word-spacing:0.000000pt;}
.ws4_c00407{word-spacing:1.836532pt;}
.ws1_c00407{word-spacing:2.370370pt;}
.ws6_c00407{word-spacing:5.555556pt;}
.ws5_c00407{word-spacing:9.544029pt;}
.fs4_c00407{font-size:26.666667pt;}
.fs6_c00407{font-size:42.666667pt;}
.fs5_c00407{font-size:48.000000pt;}
.fs3_c00407{font-size:53.333333pt;}
.fs1_c00407{font-size:58.666667pt;}
.fs2_c00407{font-size:64.000000pt;}
.fs0_c00407{font-size:74.666667pt;}
.y0_c00407{bottom:0.000000pt;}
.y63_c00407{bottom:168.266667pt;}
.y34_c00407{bottom:174.800000pt;}
.y62_c00407{bottom:181.333333pt;}
.y33_c00407{bottom:187.600000pt;}
.y61_c00407{bottom:194.800000pt;}
.y32_c00407{bottom:200.666667pt;}
.y60_c00407{bottom:207.600000pt;}
.y31_c00407{bottom:212.800000pt;}
.y5f_c00407{bottom:220.133333pt;}
.y30_c00407{bottom:225.600000pt;}
.y5e_c00407{bottom:232.933333pt;}
.y2f_c00407{bottom:238.133333pt;}
.y5d_c00407{bottom:248.666667pt;}
.y2e_c00407{bottom:255.066667pt;}
.y5c_c00407{bottom:262.133333pt;}
.y5b_c00407{bottom:274.800000pt;}
.y2d_c00407{bottom:278.000000pt;}
.y5a_c00407{bottom:287.333333pt;}
.y2c_c00407{bottom:292.133333pt;}
.y2b_c00407{bottom:299.466667pt;}
.y59_c00407{bottom:300.133333pt;}
.y2a_c00407{bottom:310.400000pt;}
.y58_c00407{bottom:312.666667pt;}
.y29_c00407{bottom:334.133333pt;}
.y57_c00407{bottom:353.866667pt;}
.y28_c00407{bottom:369.600000pt;}
.y56_c00407{bottom:369.866667pt;}
.y55_c00407{bottom:385.866667pt;}
.y54_c00407{bottom:401.600000pt;}
.y27_c00407{bottom:408.533333pt;}
.y26_c00407{bottom:424.266667pt;}
.y53_c00407{bottom:425.866667pt;}
.y25_c00407{bottom:440.266667pt;}
.y52_c00407{bottom:441.866667pt;}
.y24_c00407{bottom:456.000000pt;}
.y51_c00407{bottom:457.600000pt;}
.y23_c00407{bottom:472.000000pt;}
.y50_c00407{bottom:474.533333pt;}
.y22_c00407{bottom:488.000000pt;}
.y4f_c00407{bottom:489.200000pt;}
.y21_c00407{bottom:503.733333pt;}
.y64_c00407{bottom:504.000000pt;}
.y4e_c00407{bottom:505.200000pt;}
.y20_c00407{bottom:519.466667pt;}
.y4d_c00407{bottom:520.933333pt;}
.y1f_c00407{bottom:535.200000pt;}
.y4c_c00407{bottom:540.800000pt;}
.y1e_c00407{bottom:550.933333pt;}
.y4b_c00407{bottom:556.533333pt;}
.y1d_c00407{bottom:566.933333pt;}
.y1c_c00407{bottom:582.666667pt;}
.y4a_c00407{bottom:588.533333pt;}
.y1b_c00407{bottom:598.666667pt;}
.y49_c00407{bottom:608.266667pt;}
.y1a_c00407{bottom:614.666667pt;}
.y48_c00407{bottom:628.266667pt;}
.y19_c00407{bottom:630.666667pt;}
.y47_c00407{bottom:644.266667pt;}
.y18_c00407{bottom:646.666667pt;}
.y17_c00407{bottom:662.666667pt;}
.y46_c00407{bottom:663.733333pt;}
.y16_c00407{bottom:678.400000pt;}
.y45_c00407{bottom:683.200000pt;}
.y44_c00407{bottom:699.200000pt;}
.y15_c00407{bottom:702.266667pt;}
.y14_c00407{bottom:718.266667pt;}
.y43_c00407{bottom:718.933333pt;}
.y13_c00407{bottom:734.266667pt;}
.y42_c00407{bottom:734.666667pt;}
.y12_c00407{bottom:750.266667pt;}
.y41_c00407{bottom:754.933333pt;}
.y11_c00407{bottom:766.266667pt;}
.y40_c00407{bottom:770.933333pt;}
.y10_c00407{bottom:782.266667pt;}
.y3f_c00407{bottom:786.666667pt;}
.yf_c00407{bottom:798.000000pt;}
.y3e_c00407{bottom:802.400000pt;}
.ye_c00407{bottom:814.000000pt;}
.y3d_c00407{bottom:818.400000pt;}
.yd_c00407{bottom:830.000000pt;}
.y3c_c00407{bottom:834.400000pt;}
.yc_c00407{bottom:845.733333pt;}
.y3b_c00407{bottom:850.133333pt;}
.yb_c00407{bottom:861.466667pt;}
.y3a_c00407{bottom:866.133333pt;}
.y39_c00407{bottom:881.866667pt;}
.ya_c00407{bottom:885.066667pt;}
.y38_c00407{bottom:897.866667pt;}
.y9_c00407{bottom:901.066667pt;}
.y37_c00407{bottom:913.600000pt;}
.y8_c00407{bottom:917.066667pt;}
.y36_c00407{bottom:929.333333pt;}
.y7_c00407{bottom:933.066667pt;}
.y6_c00407{bottom:949.066667pt;}
.y5_c00407{bottom:964.800000pt;}
.y4_c00407{bottom:980.533333pt;}
.y35_c00407{bottom:980.800000pt;}
.y3_c00407{bottom:996.533333pt;}
.y1_c00407{bottom:1018.533333pt;}
.y2_c00407{bottom:1020.133333pt;}
.h6_c00407{height:26.666667pt;}
.h8_c00407{height:42.666667pt;}
.h7_c00407{height:48.000000pt;}
.h5_c00407{height:53.333333pt;}
.h3_c00407{height:58.666667pt;}
.h4_c00407{height:64.000000pt;}
.h2_c00407{height:74.666667pt;}
.h1_c00407{height:1126.666667pt;}
.h0_c00407{height:1126.719971pt;}
.w0_c00407{width:853.760009pt;}
.w1_c00407{width:854.000000pt;}
.x0_c00407{left:0.000000pt;}
.x95_c00407{left:157.066667pt;}
.x1_c00407{left:161.333333pt;}
.x33_c00407{left:167.333333pt;}
.x9b_c00407{left:170.266667pt;}
.x92_c00407{left:171.733333pt;}
.x72_c00407{left:172.933333pt;}
.x54_c00407{left:174.000000pt;}
.x4a_c00407{left:174.933333pt;}
.x3c_c00407{left:176.000000pt;}
.xa_c00407{left:177.600000pt;}
.x9e_c00407{left:181.466667pt;}
.xa0_c00407{left:183.200000pt;}
.x6a_c00407{left:190.666667pt;}
.x3_c00407{left:193.333333pt;}
.x6e_c00407{left:195.066667pt;}
.x7f_c00407{left:197.600000pt;}
.x1b_c00407{left:199.466667pt;}
.x84_c00407{left:201.066667pt;}
.x24_c00407{left:202.000000pt;}
.xb_c00407{left:204.533333pt;}
.x3d_c00407{left:206.400000pt;}
.x91_c00407{left:208.533333pt;}
.x13_c00407{left:210.133333pt;}
.x47_c00407{left:211.733333pt;}
.x9c_c00407{left:212.800000pt;}
.x6b_c00407{left:214.666667pt;}
.x2d_c00407{left:215.600000pt;}
.x4_c00407{left:217.600000pt;}
.x7b_c00407{left:218.533333pt;}
.x98_c00407{left:220.133333pt;}
.xa1_c00407{left:221.066667pt;}
.xc_c00407{left:223.733333pt;}
.x5f_c00407{left:225.466667pt;}
.x4b_c00407{left:226.400000pt;}
.x8e_c00407{left:227.866667pt;}
.x7c_c00407{left:228.800000pt;}
.x14_c00407{left:230.666667pt;}
.x85_c00407{left:232.133333pt;}
.x25_c00407{left:234.000000pt;}
.x42_c00407{left:235.200000pt;}
.x34_c00407{left:237.466667pt;}
.x65_c00407{left:238.533333pt;}
.x73_c00407{left:239.466667pt;}
.x1c_c00407{left:241.066667pt;}
.x38_c00407{left:243.200000pt;}
.x55_c00407{left:244.666667pt;}
.x9d_c00407{left:246.400000pt;}
.x8b_c00407{left:247.333333pt;}
.x51_c00407{left:248.933333pt;}
.x43_c00407{left:250.533333pt;}
.x59_c00407{left:251.733333pt;}
.x74_c00407{left:253.600000pt;}
.x87_c00407{left:254.533333pt;}
.x66_c00407{left:256.400000pt;}
.xd_c00407{left:258.266667pt;}
.x2e_c00407{left:262.000000pt;}
.x9a_c00407{left:263.733333pt;}
.x82_c00407{left:265.733333pt;}
.x39_c00407{left:266.933333pt;}
.x5a_c00407{left:268.000000pt;}
.x35_c00407{left:269.733333pt;}
.x5_c00407{left:271.066667pt;}
.x68_c00407{left:272.533333pt;}
.x6f_c00407{left:273.733333pt;}
.xe_c00407{left:275.866667pt;}
.x26_c00407{left:277.466667pt;}
.x4c_c00407{left:279.466667pt;}
.x1d_c00407{left:280.400000pt;}
.x3a_c00407{left:282.000000pt;}
.x2f_c00407{left:283.066667pt;}
.x96_c00407{left:284.133333pt;}
.x5b_c00407{left:285.333333pt;}
.x15_c00407{left:289.466667pt;}
.x80_c00407{left:293.200000pt;}
.xf_c00407{left:294.800000pt;}
.x89_c00407{left:296.666667pt;}
.x1e_c00407{left:298.000000pt;}
.x75_c00407{left:299.733333pt;}
.x94_c00407{left:300.800000pt;}
.xa5_c00407{left:302.800000pt;}
.x16_c00407{left:304.533333pt;}
.x7d_c00407{left:306.533333pt;}
.x69_c00407{left:308.400000pt;}
.x5c_c00407{left:310.666667pt;}
.x3e_c00407{left:312.533333pt;}
.x8c_c00407{left:314.133333pt;}
.x70_c00407{left:315.066667pt;}
.x76_c00407{left:316.400000pt;}
.x56_c00407{left:317.333333pt;}
.x8f_c00407{left:318.800000pt;}
.x30_c00407{left:321.733333pt;}
.x93_c00407{left:322.666667pt;}
.x78_c00407{left:323.600000pt;}
.x6_c00407{left:325.466667pt;}
.x60_c00407{left:326.533333pt;}
.x1f_c00407{left:328.133333pt;}
.x52_c00407{left:329.200000pt;}
.x27_c00407{left:330.533333pt;}
.x4d_c00407{left:332.933333pt;}
.x10_c00407{left:335.066667pt;}
.x31_c00407{left:336.800000pt;}
.xa2_c00407{left:338.400000pt;}
.x3f_c00407{left:339.733333pt;}
.x44_c00407{left:340.666667pt;}
.x67_c00407{left:343.333333pt;}
.x28_c00407{left:345.200000pt;}
.x40_c00407{left:347.466667pt;}
.x8a_c00407{left:348.533333pt;}
.x4e_c00407{left:349.866667pt;}
.x77_c00407{left:351.600000pt;}
.x7_c00407{left:354.266667pt;}
.x6c_c00407{left:355.733333pt;}
.x17_c00407{left:356.666667pt;}
.x8d_c00407{left:359.333333pt;}
.x53_c00407{left:362.133333pt;}
.x5d_c00407{left:363.466667pt;}
.x20_c00407{left:365.200000pt;}
.x48_c00407{left:367.866667pt;}
.x4f_c00407{left:369.333333pt;}
.x45_c00407{left:371.066667pt;}
.x86_c00407{left:375.866667pt;}
.x8_c00407{left:376.933333pt;}
.x2_c00407{left:378.666667pt;}
.x32_c00407{left:379.733333pt;}
.x61_c00407{left:381.200000pt;}
.x21_c00407{left:382.533333pt;}
.x36_c00407{left:384.266667pt;}
.x46_c00407{left:385.200000pt;}
.x99_c00407{left:386.800000pt;}
.x62_c00407{left:387.866667pt;}
.x29_c00407{left:389.066667pt;}
.x90_c00407{left:390.133333pt;}
.x97_c00407{left:391.466667pt;}
.x57_c00407{left:392.400000pt;}
.x2a_c00407{left:396.400000pt;}
.x11_c00407{left:397.733333pt;}
.x9f_c00407{left:398.666667pt;}
.x49_c00407{left:399.866667pt;}
.x79_c00407{left:401.066667pt;}
.x18_c00407{left:402.000000pt;}
.xa3_c00407{left:403.066667pt;}
.x63_c00407{left:404.533333pt;}
.x81_c00407{left:408.133333pt;}
.x2b_c00407{left:410.800000pt;}
.xa4_c00407{left:411.733333pt;}
.x22_c00407{left:412.933333pt;}
.x71_c00407{left:416.133333pt;}
.x83_c00407{left:417.333333pt;}
.x7a_c00407{left:420.266667pt;}
.x23_c00407{left:421.600000pt;}
.x7e_c00407{left:423.866667pt;}
.x41_c00407{left:425.200000pt;}
.x5e_c00407{left:426.133333pt;}
.x3b_c00407{left:427.200000pt;}
.x9_c00407{left:428.800000pt;}
.x88_c00407{left:431.733333pt;}
.x2c_c00407{left:433.200000pt;}
.x6d_c00407{left:436.666667pt;}
.x64_c00407{left:438.133333pt;}
.x12_c00407{left:440.933333pt;}
.x19_c00407{left:442.000000pt;}
.x58_c00407{left:444.933333pt;}
.x37_c00407{left:447.066667pt;}
.x50_c00407{left:450.000000pt;}
.x1a_c00407{left:454.533333pt;}
.x148_c00407{left:471.200000pt;}
.x13d_c00407{left:472.533333pt;}
.x137_c00407{left:473.600000pt;}
.x10b_c00407{left:475.200000pt;}
.x132_c00407{left:476.666667pt;}
.x138_c00407{left:484.533333pt;}
.x12e_c00407{left:487.333333pt;}
.x10f_c00407{left:489.733333pt;}
.x113_c00407{left:490.800000pt;}
.xfc_c00407{left:492.000000pt;}
.xe1_c00407{left:493.333333pt;}
.xaf_c00407{left:494.400000pt;}
.x143_c00407{left:498.666667pt;}
.x128_c00407{left:502.000000pt;}
.x106_c00407{left:506.933333pt;}
.xff_c00407{left:508.133333pt;}
.x12a_c00407{left:509.200000pt;}
.xa6_c00407{left:510.133333pt;}
.xc0_c00407{left:512.933333pt;}
.x125_c00407{left:514.000000pt;}
.xdc_c00407{left:515.333333pt;}
.x119_c00407{left:516.266667pt;}
.x10c_c00407{left:518.133333pt;}
.xe2_c00407{left:520.533333pt;}
.x11f_c00407{left:521.600000pt;}
.xfd_c00407{left:524.000000pt;}
.xc1_c00407{left:527.333333pt;}
.xc8_c00407{left:529.600000pt;}
.xf8_c00407{left:530.800000pt;}
.x114_c00407{left:531.733333pt;}
.xcc_c00407{left:533.333333pt;}
.xee_c00407{left:534.800000pt;}
.x102_c00407{left:536.666667pt;}
.x107_c00407{left:537.600000pt;}
.xd1_c00407{left:538.800000pt;}
.x13a_c00407{left:539.866667pt;}
.x13b_c00407{left:541.066667pt;}
.xfe_c00407{left:542.533333pt;}
.xb9_c00407{left:543.733333pt;}
.x133_c00407{left:545.866667pt;}
.x110_c00407{left:546.800000pt;}
.x146_c00407{left:547.866667pt;}
.x11b_c00407{left:550.933333pt;}
.x12f_c00407{left:552.000000pt;}
.xef_c00407{left:553.066667pt;}
.xd2_c00407{left:554.133333pt;}
.x12b_c00407{left:555.600000pt;}
.x120_c00407{left:556.800000pt;}
.xe8_c00407{left:558.533333pt;}
.x13c_c00407{left:562.133333pt;}
.xa7_c00407{left:565.466667pt;}
.x100_c00407{left:567.066667pt;}
.xe3_c00407{left:568.266667pt;}
.xb0_c00407{left:569.333333pt;}
.xdd_c00407{left:571.066667pt;}
.xe9_c00407{left:572.000000pt;}
.xf9_c00407{left:574.266667pt;}
.xb4_c00407{left:576.400000pt;}
.x101_c00407{left:578.533333pt;}
.xba_c00407{left:581.200000pt;}
.xa8_c00407{left:583.733333pt;}
.x130_c00407{left:585.600000pt;}
.xc2_c00407{left:586.533333pt;}
.xf5_c00407{left:587.466667pt;}
.xd3_c00407{left:588.666667pt;}
.xf0_c00407{left:590.533333pt;}
.x11c_c00407{left:592.933333pt;}
.x141_c00407{left:596.000000pt;}
.xf1_c00407{left:598.533333pt;}
.xcd_c00407{left:601.466667pt;}
.x109_c00407{left:602.533333pt;}
.x147_c00407{left:603.466667pt;}
.xc9_c00407{left:605.466667pt;}
.x11d_c00407{left:607.333333pt;}
.xf6_c00407{left:608.266667pt;}
.x13e_c00407{left:609.600000pt;}
.x129_c00407{left:612.000000pt;}
.x111_c00407{left:614.000000pt;}
.xeb_c00407{left:617.200000pt;}
.x134_c00407{left:619.200000pt;}
.x115_c00407{left:620.133333pt;}
.x121_c00407{left:621.733333pt;}
.xa9_c00407{left:622.800000pt;}
.x142_c00407{left:624.133333pt;}
.xb1_c00407{left:625.066667pt;}
.x11e_c00407{left:626.266667pt;}
.x126_c00407{left:629.200000pt;}
.xb5_c00407{left:631.733333pt;}
.xc3_c00407{left:633.200000pt;}
.xd7_c00407{left:637.600000pt;}
.xb2_c00407{left:638.533333pt;}
.xaa_c00407{left:640.400000pt;}
.xbb_c00407{left:641.733333pt;}
.x122_c00407{left:646.400000pt;}
.xce_c00407{left:648.533333pt;}
.xc4_c00407{left:650.533333pt;}
.xf2_c00407{left:652.666667pt;}
.x116_c00407{left:653.733333pt;}
.xd4_c00407{left:656.533333pt;}
.xf7_c00407{left:657.600000pt;}
.xe4_c00407{left:659.466667pt;}
.xb6_c00407{left:660.800000pt;}
.x10d_c00407{left:661.866667pt;}
.x127_c00407{left:663.066667pt;}
.x108_c00407{left:664.000000pt;}
.xbe_c00407{left:665.333333pt;}
.x103_c00407{left:667.200000pt;}
.xe5_c00407{left:668.800000pt;}
.xea_c00407{left:670.533333pt;}
.xc5_c00407{left:672.666667pt;}
.x117_c00407{left:673.866667pt;}
.x12c_c00407{left:676.266667pt;}
.xde_c00407{left:677.333333pt;}
.x112_c00407{left:679.600000pt;}
.xd8_c00407{left:680.800000pt;}
.x13f_c00407{left:682.266667pt;}
.x123_c00407{left:683.200000pt;}
.xb7_c00407{left:686.666667pt;}
.xca_c00407{left:688.000000pt;}
.xbc_c00407{left:690.000000pt;}
.xab_c00407{left:691.866667pt;}
.xec_c00407{left:693.333333pt;}
.xfa_c00407{left:694.933333pt;}
.x10a_c00407{left:696.000000pt;}
.xf3_c00407{left:697.200000pt;}
.xd5_c00407{left:698.400000pt;}
.x12d_c00407{left:699.600000pt;}
.xac_c00407{left:700.800000pt;}
.xcf_c00407{left:702.000000pt;}
.xd9_c00407{left:704.533333pt;}
.xb3_c00407{left:706.000000pt;}
.x124_c00407{left:708.533333pt;}
.x144_c00407{left:709.600000pt;}
.x118_c00407{left:716.800000pt;}
.xbd_c00407{left:718.133333pt;}
.xbf_c00407{left:719.066667pt;}
.xe6_c00407{left:721.333333pt;}
.x131_c00407{left:722.400000pt;}
.x10e_c00407{left:723.333333pt;}
.xc6_c00407{left:726.133333pt;}
.xcb_c00407{left:727.333333pt;}
.x104_c00407{left:728.933333pt;}
.x145_c00407{left:730.400000pt;}
.x11a_c00407{left:731.333333pt;}
.xfb_c00407{left:732.666667pt;}
.xad_c00407{left:733.733333pt;}
.xf4_c00407{left:737.200000pt;}
.xe7_c00407{left:738.666667pt;}
.xdf_c00407{left:742.666667pt;}
.xed_c00407{left:744.800000pt;}
.x139_c00407{left:746.533333pt;}
.xae_c00407{left:747.866667pt;}
.x149_c00407{left:749.066667pt;}
.x105_c00407{left:751.333333pt;}
.xda_c00407{left:752.800000pt;}
.xe0_c00407{left:754.800000pt;}
.x140_c00407{left:756.133333pt;}
.xc7_c00407{left:757.200000pt;}
.x135_c00407{left:759.066667pt;}
.xd0_c00407{left:761.866667pt;}
.xd6_c00407{left:766.000000pt;}
.x136_c00407{left:767.066667pt;}
.xb8_c00407{left:768.000000pt;}
.xdb_c00407{left:773.866667pt;}
}





/* 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_c00408 {
    display:none;
  }
  .loading-indicator_c00408.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00408 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_c00408 { 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_c00408" -> "#page-container .classname_c00408")
 */
.pf_c00408 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00408 { /* 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_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00408 { /* 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_c00408 { /* 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_c00408 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00408 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00408 {overflow:visible;}
  }
}
.c_c00408 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00408 { /* 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_c00408:after { /* webkit #35443 */
  content: '';
}
.t_c00408:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00408 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 */
}
.__c00408 { /* 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_c00408 { /* info for Javascript */
  display:none;
}
.l_c00408 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00408 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00408 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00408: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_c00408 {
    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_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00408.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_c00408 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00408;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.000000;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;}
.mc1_c00408{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00408{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m102_c00408{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.m104_c00408{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m76_c00408{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00408{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00408{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m97_c00408{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m90_c00408{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m53_c00408{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00408{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00408{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mad_c00408{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00408{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m18_c00408{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m92_c00408{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00408{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00408{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00408{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m110_c00408{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me1_c00408{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.mae_c00408{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00408{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00408{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m56_c00408{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00408{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00408{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00408{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.maf_c00408{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mac_c00408{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00408{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m58_c00408{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4_c00408{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00408{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m55_c00408{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.meb_c00408{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00408{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m14_c00408{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00408{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00408{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m75_c00408{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mea_c00408{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00408{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00408{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00408{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m22_c00408{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m37_c00408{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00408{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m81_c00408{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00408{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md6_c00408{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mca_c00408{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00408{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00408{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf_c00408{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m13_c00408{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m54_c00408{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.me8_c00408{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m80_c00408{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00408{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mce_c00408{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00408{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00408{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md3_c00408{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00408{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00408{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00408{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00408{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md0_c00408{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00408{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00408{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m79_c00408{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m48_c00408{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m84_c00408{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m111_c00408{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m83_c00408{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00408{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md7_c00408{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m103_c00408{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00408{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m73_c00408{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00408{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m16_c00408{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00408{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m63_c00408{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00408{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m65_c00408{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00408{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m68_c00408{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00408{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00408{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m28_c00408{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mda_c00408{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m108_c00408{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00408{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00408{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00408{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00408{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.me9_c00408{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00408{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00408{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.md4_c00408{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m59_c00408{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md8_c00408{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.me2_c00408{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m109_c00408{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m12_c00408{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00408{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00408{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m46_c00408{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m91_c00408{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00408{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00408{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m94_c00408{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m62_c00408{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m35_c00408{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00408{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m29_c00408{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00408{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m50_c00408{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00408{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00408{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00408{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m25_c00408{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m67_c00408{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma_c00408{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00408{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m27_c00408{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md9_c00408{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00408{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m74_c00408{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mba_c00408{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00408{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me_c00408{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m2_c00408{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m26_c00408{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00408{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m106_c00408{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00408{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m85_c00408{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md5_c00408{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00408{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m38_c00408{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m72_c00408{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00408{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00408{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m78_c00408{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mee_c00408{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m36_c00408{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00408{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m57_c00408{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m17_c00408{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00408{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00408{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8_c00408{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m30_c00408{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00408{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00408{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m86_c00408{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00408{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m15_c00408{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md_c00408{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00408{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m82_c00408{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m66_c00408{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m112_c00408{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00408{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m31_c00408{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00408{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m41_c00408{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mde_c00408{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m40_c00408{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00408{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00408{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00408{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m77_c00408{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00408{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m93_c00408{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9_c00408{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m32_c00408{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m42_c00408{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mab_c00408{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.med_c00408{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00408{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00408{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m87_c00408{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m61_c00408{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m10_c00408{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00408{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00408{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md1_c00408{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00408{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00408{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00408{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.me4_c00408{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7_c00408{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00408{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md2_c00408{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m64_c00408{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mef_c00408{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me7_c00408{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00408{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m113_c00408{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m33_c00408{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6_c00408{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00408{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00408{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m20_c00408{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00408{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m96_c00408{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00408{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00408{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00408{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00408{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00408{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m34_c00408{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.me0_c00408{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m89_c00408{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc_c00408{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00408{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me5_c00408{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00408{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00408{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m60_c00408{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m95_c00408{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m71_c00408{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.maa_c00408{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m21_c00408{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00408{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00408{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00408{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m19_c00408{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00408{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m47_c00408{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mff_c00408{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m39_c00408{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m45_c00408{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m105_c00408{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me3_c00408{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00408{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m24_c00408{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00408{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m44_c00408{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m70_c00408{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m23_c00408{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00408{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00408{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00408{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00408{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m52_c00408{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m107_c00408{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00408{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m88_c00408{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m101_c00408{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00408{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m100_c00408{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m51_c00408{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m99_c00408{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00408{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00408{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.me6_c00408{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mec_c00408{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m43_c00408{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00408{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m11_c00408{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00408{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00408{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00408{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m98_c00408{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00408{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m49_c00408{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00408{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mb_c00408{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls0_c00408{letter-spacing:0.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{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__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00408{word-spacing:-13.942598px;}
.ws3_c00408{word-spacing:-9.000000px;}
.ws2_c00408{word-spacing:-8.611111px;}
.ws5_c00408{word-spacing:-5.446927px;}
.ws8_c00408{word-spacing:-3.726115px;}
.ws6_c00408{word-spacing:-2.625000px;}
.ws9_c00408{word-spacing:0.000000px;}
.ws1_c00408{word-spacing:0.833333px;}
.ws7_c00408{word-spacing:12.077364px;}
.ws0_c00408{word-spacing:60.000000px;}
.fc0_c00408{color:transparent;}
.fs2_c00408{font-size:48.000000px;}
.fs6_c00408{font-size:54.000000px;}
.fs3_c00408{font-size:60.000000px;}
.fs4_c00408{font-size:66.000000px;}
.fs5_c00408{font-size:72.000000px;}
.fs1_c00408{font-size:78.000000px;}
.fs0_c00408{font-size:84.000000px;}
.y0_c00408{bottom:0.000000px;}
.y37_c00408{bottom:195.750000px;}
.y6c_c00408{bottom:196.200000px;}
.y6b_c00408{bottom:211.050000px;}
.y36_c00408{bottom:214.500000px;}
.y6a_c00408{bottom:225.750000px;}
.y35_c00408{bottom:232.500000px;}
.y69_c00408{bottom:240.150000px;}
.y34_c00408{bottom:250.800000px;}
.y68_c00408{bottom:254.250000px;}
.y33_c00408{bottom:268.500000px;}
.y67_c00408{bottom:268.650000px;}
.y66_c00408{bottom:283.350000px;}
.y32_c00408{bottom:290.850000px;}
.y31_c00408{bottom:308.550000px;}
.y65_c00408{bottom:312.900000px;}
.y30_c00408{bottom:330.600000px;}
.y64_c00408{bottom:335.100000px;}
.y2f_c00408{bottom:348.900000px;}
.y63_c00408{bottom:353.100000px;}
.y2e_c00408{bottom:366.600000px;}
.y62_c00408{bottom:374.250000px;}
.y2d_c00408{bottom:384.600000px;}
.y61_c00408{bottom:392.550000px;}
.y2c_c00408{bottom:402.600000px;}
.y60_c00408{bottom:410.250000px;}
.y2b_c00408{bottom:420.300000px;}
.y5f_c00408{bottom:427.950000px;}
.y2a_c00408{bottom:438.300000px;}
.y5e_c00408{bottom:445.650000px;}
.y29_c00408{bottom:456.000000px;}
.y5d_c00408{bottom:463.350000px;}
.y28_c00408{bottom:474.000000px;}
.y5c_c00408{bottom:481.350000px;}
.y27_c00408{bottom:491.700000px;}
.y5b_c00408{bottom:499.350000px;}
.y26_c00408{bottom:509.700000px;}
.y5a_c00408{bottom:517.350000px;}
.y25_c00408{bottom:527.700000px;}
.y59_c00408{bottom:535.350000px;}
.y24_c00408{bottom:545.700000px;}
.y58_c00408{bottom:553.350000px;}
.y23_c00408{bottom:563.700000px;}
.y57_c00408{bottom:571.350000px;}
.y22_c00408{bottom:581.400000px;}
.y56_c00408{bottom:589.350000px;}
.y21_c00408{bottom:599.400000px;}
.y55_c00408{bottom:607.350000px;}
.y20_c00408{bottom:616.650000px;}
.y54_c00408{bottom:624.900000px;}
.y1f_c00408{bottom:634.800000px;}
.y53_c00408{bottom:642.600000px;}
.y1e_c00408{bottom:652.800000px;}
.y52_c00408{bottom:660.600000px;}
.y1d_c00408{bottom:670.500000px;}
.y51_c00408{bottom:678.600000px;}
.y1c_c00408{bottom:688.200000px;}
.y50_c00408{bottom:696.300000px;}
.y1b_c00408{bottom:705.900000px;}
.y4f_c00408{bottom:714.300000px;}
.y1a_c00408{bottom:723.900000px;}
.y4e_c00408{bottom:732.000000px;}
.y19_c00408{bottom:741.600000px;}
.y4d_c00408{bottom:750.000000px;}
.y18_c00408{bottom:759.300000px;}
.y4c_c00408{bottom:767.700000px;}
.y17_c00408{bottom:781.050000px;}
.y4b_c00408{bottom:785.700000px;}
.y16_c00408{bottom:799.350000px;}
.y4a_c00408{bottom:803.700000px;}
.y15_c00408{bottom:817.050000px;}
.y49_c00408{bottom:821.700000px;}
.y14_c00408{bottom:834.750000px;}
.y48_c00408{bottom:839.700000px;}
.y13_c00408{bottom:852.750000px;}
.y47_c00408{bottom:857.400000px;}
.y12_c00408{bottom:870.750000px;}
.y46_c00408{bottom:875.400000px;}
.y11_c00408{bottom:888.450000px;}
.y45_c00408{bottom:893.400000px;}
.y10_c00408{bottom:910.500000px;}
.y44_c00408{bottom:911.400000px;}
.yf_c00408{bottom:928.800000px;}
.y43_c00408{bottom:929.400000px;}
.ye_c00408{bottom:946.800000px;}
.y42_c00408{bottom:947.400000px;}
.yd_c00408{bottom:964.800000px;}
.y41_c00408{bottom:965.100000px;}
.yc_c00408{bottom:982.500000px;}
.y40_c00408{bottom:983.100000px;}
.yb_c00408{bottom:1000.500000px;}
.y3f_c00408{bottom:1001.100000px;}
.y3e_c00408{bottom:1017.450000px;}
.ya_c00408{bottom:1018.500000px;}
.y3d_c00408{bottom:1032.150000px;}
.y9_c00408{bottom:1038.600000px;}
.y3c_c00408{bottom:1047.900000px;}
.y8_c00408{bottom:1053.000000px;}
.y3b_c00408{bottom:1065.900000px;}
.y7_c00408{bottom:1066.650000px;}
.y6_c00408{bottom:1081.350000px;}
.y3a_c00408{bottom:1083.600000px;}
.y5_c00408{bottom:1095.750000px;}
.y39_c00408{bottom:1101.600000px;}
.y4_c00408{bottom:1111.650000px;}
.y38_c00408{bottom:1118.850000px;}
.y3_c00408{bottom:1124.250000px;}
.y2_c00408{bottom:1144.800000px;}
.y1_c00408{bottom:1147.350000px;}
.h4_c00408{height:48.000000px;}
.h8_c00408{height:54.000000px;}
.h5_c00408{height:60.000000px;}
.h6_c00408{height:66.000000px;}
.h7_c00408{height:72.000000px;}
.h3_c00408{height:78.000000px;}
.h2_c00408{height:84.000000px;}
.h1_c00408{height:1266.000000px;}
.h0_c00408{height:1266.120025px;}
.w0_c00408{width:960.480010px;}
.w1_c00408{width:960.750000px;}
.x0_c00408{left:0.000000px;}
.x93_c00408{left:65.100000px;}
.x45_c00408{left:68.700000px;}
.x6_c00408{left:70.200000px;}
.x9b_c00408{left:80.250000px;}
.x95_c00408{left:82.200000px;}
.x8e_c00408{left:83.250000px;}
.x14_c00408{left:84.300000px;}
.x6f_c00408{left:85.950000px;}
.x5b_c00408{left:87.150000px;}
.x2c_c00408{left:88.350000px;}
.x21_c00408{left:98.250000px;}
.xe_c00408{left:99.750000px;}
.x96_c00408{left:101.100000px;}
.x73_c00408{left:102.600000px;}
.x77_c00408{left:104.250000px;}
.x90_c00408{left:106.050000px;}
.x70_c00408{left:107.550000px;}
.x4e_c00408{left:110.250000px;}
.x32_c00408{left:111.300000px;}
.x9f_c00408{left:112.650000px;}
.x8c_c00408{left:114.000000px;}
.x15_c00408{left:115.200000px;}
.x81_c00408{left:116.550000px;}
.x60_c00408{left:117.900000px;}
.x78_c00408{left:119.850000px;}
.x63_c00408{left:123.300000px;}
.x52_c00408{left:125.250000px;}
.x46_c00408{left:127.050000px;}
.x7_c00408{left:130.350000px;}
.x5c_c00408{left:131.850000px;}
.x16_c00408{left:132.900000px;}
.x56_c00408{left:134.100000px;}
.x2d_c00408{left:136.500000px;}
.x76_c00408{left:137.550000px;}
.x7f_c00408{left:138.900000px;}
.x61_c00408{left:141.600000px;}
.x7c_c00408{left:144.750000px;}
.x3f_c00408{left:145.950000px;}
.x97_c00408{left:147.150000px;}
.x85_c00408{left:148.350000px;}
.x68_c00408{left:149.700000px;}
.x17_c00408{left:150.900000px;}
.x5d_c00408{left:152.700000px;}
.x22_c00408{left:154.350000px;}
.x64_c00408{left:155.400000px;}
.x28_c00408{left:157.650000px;}
.xf_c00408{left:159.450000px;}
.x3a_c00408{left:160.650000px;}
.x1c_c00408{left:165.600000px;}
.x6b_c00408{left:166.650000px;}
.x40_c00408{left:168.600000px;}
.x91_c00408{left:170.850000px;}
.x57_c00408{left:172.950000px;}
.x33_c00408{left:175.350000px;}
.x4f_c00408{left:176.850000px;}
.xa2_c00408{left:180.900000px;}
.x8_c00408{left:183.600000px;}
.x18_c00408{left:185.400000px;}
.x34_c00408{left:187.200000px;}
.x9c_c00408{left:188.700000px;}
.x3b_c00408{left:189.750000px;}
.x82_c00408{left:190.800000px;}
.x98_c00408{left:191.850000px;}
.x74_c00408{left:193.650000px;}
.x23_c00408{left:195.000000px;}
.x10_c00408{left:197.550000px;}
.x1d_c00408{left:199.800000px;}
.x9_c00408{left:201.900000px;}
.x53_c00408{left:205.500000px;}
.x6c_c00408{left:207.000000px;}
.x89_c00408{left:209.100000px;}
.x3c_c00408{left:211.050000px;}
.xa0_c00408{left:212.100000px;}
.x2e_c00408{left:214.350000px;}
.x11_c00408{left:217.350000px;}
.x69_c00408{left:219.150000px;}
.x29_c00408{left:220.350000px;}
.x83_c00408{left:222.450000px;}
.x44_c00408{left:224.100000px;}
.x7d_c00408{left:225.750000px;}
.x35_c00408{left:227.550000px;}
.x80_c00408{left:230.700000px;}
.x54_c00408{left:232.200000px;}
.x41_c00408{left:235.200000px;}
.x5f_c00408{left:236.400000px;}
.x24_c00408{left:241.500000px;}
.x1e_c00408{left:245.550000px;}
.x9e_c00408{left:247.350000px;}
.x36_c00408{left:249.900000px;}
.x12_c00408{left:252.300000px;}
.x2f_c00408{left:254.250000px;}
.x62_c00408{left:256.500000px;}
.x71_c00408{left:257.700000px;}
.xa3_c00408{left:260.400000px;}
.x47_c00408{left:263.550000px;}
.x65_c00408{left:267.000000px;}
.x94_c00408{left:268.350000px;}
.x3d_c00408{left:270.150000px;}
.x19_c00408{left:272.100000px;}
.x13_c00408{left:273.600000px;}
.x25_c00408{left:275.400000px;}
.x1f_c00408{left:276.450000px;}
.x48_c00408{left:277.950000px;}
.xa4_c00408{left:279.150000px;}
.x37_c00408{left:280.800000px;}
.x66_c00408{left:284.250000px;}
.x50_c00408{left:286.050000px;}
.xa1_c00408{left:287.100000px;}
.x5e_c00408{left:288.450000px;}
.x55_c00408{left:290.550000px;}
.x84_c00408{left:291.600000px;}
.x79_c00408{left:293.550000px;}
.x26_c00408{left:294.900000px;}
.x86_c00408{left:296.250000px;}
.xa5_c00408{left:297.450000px;}
.xa_c00408{left:302.400000px;}
.x99_c00408{left:304.200000px;}
.x4b_c00408{left:307.500000px;}
.x3_c00408{left:309.900000px;}
.x75_c00408{left:311.700000px;}
.x1_c00408{left:313.500000px;}
.x8d_c00408{left:314.700000px;}
.x87_c00408{left:316.800000px;}
.x92_c00408{left:319.950000px;}
.x58_c00408{left:321.900000px;}
.xb_c00408{left:323.250000px;}
.x1a_c00408{left:324.450000px;}
.x2a_c00408{left:326.550000px;}
.x4c_c00408{left:329.100000px;}
.x20_c00408{left:331.500000px;}
.x42_c00408{left:334.950000px;}
.x27_c00408{left:336.000000px;}
.xc_c00408{left:338.400000px;}
.x6d_c00408{left:339.750000px;}
.x2b_c00408{left:342.450000px;}
.x30_c00408{left:344.550000px;}
.x7e_c00408{left:345.600000px;}
.x59_c00408{left:348.150000px;}
.x4d_c00408{left:349.650000px;}
.x38_c00408{left:351.750000px;}
.x4_c00408{left:353.850000px;}
.x7a_c00408{left:355.050000px;}
.x49_c00408{left:357.900000px;}
.x7b_c00408{left:359.700000px;}
.xa6_c00408{left:361.950000px;}
.x8a_c00408{left:364.950000px;}
.xd_c00408{left:366.150000px;}
.x31_c00408{left:367.650000px;}
.x6e_c00408{left:370.050000px;}
.x51_c00408{left:371.400000px;}
.x9d_c00408{left:372.600000px;}
.x3e_c00408{left:373.800000px;}
.x4a_c00408{left:374.850000px;}
.x43_c00408{left:376.050000px;}
.x5a_c00408{left:377.700000px;}
.x9a_c00408{left:378.750000px;}
.x67_c00408{left:380.100000px;}
.x8f_c00408{left:381.750000px;}
.x72_c00408{left:384.450000px;}
.x8b_c00408{left:387.300000px;}
.x5_c00408{left:388.350000px;}
.x88_c00408{left:389.850000px;}
.x6a_c00408{left:391.200000px;}
.x1b_c00408{left:395.400000px;}
.x39_c00408{left:403.950000px;}
.x149_c00408{left:420.150000px;}
.x144_c00408{left:421.950000px;}
.x123_c00408{left:425.100000px;}
.xc8_c00408{left:428.400000px;}
.xb6_c00408{left:429.900000px;}
.x148_c00408{left:435.300000px;}
.xdd_c00408{left:436.650000px;}
.xc3_c00408{left:438.150000px;}
.x145_c00408{left:439.200000px;}
.x140_c00408{left:440.400000px;}
.x133_c00408{left:441.600000px;}
.xd1_c00408{left:442.800000px;}
.x11e_c00408{left:444.150000px;}
.xf2_c00408{left:445.350000px;}
.xc4_c00408{left:446.400000px;}
.xa7_c00408{left:447.900000px;}
.x13e_c00408{left:450.900000px;}
.x14a_c00408{left:452.550000px;}
.x14d_c00408{left:456.150000px;}
.x12f_c00408{left:457.950000px;}
.xd2_c00408{left:459.300000px;}
.x150_c00408{left:461.250000px;}
.x138_c00408{left:462.300000px;}
.x10c_c00408{left:464.250000px;}
.xa8_c00408{left:467.400000px;}
.xde_c00408{left:469.050000px;}
.xb7_c00408{left:473.400000px;}
.x134_c00408{left:479.100000px;}
.x141_c00408{left:482.550000px;}
.xa9_c00408{left:483.600000px;}
.xc9_c00408{left:486.750000px;}
.x11d_c00408{left:488.850000px;}
.x143_c00408{left:490.800000px;}
.xf4_c00408{left:491.850000px;}
.x119_c00408{left:495.150000px;}
.xe3_c00408{left:497.850000px;}
.x130_c00408{left:499.650000px;}
.xaa_c00408{left:501.600000px;}
.x147_c00408{left:502.950000px;}
.x129_c00408{left:504.000000px;}
.xd8_c00408{left:505.500000px;}
.x146_c00408{left:506.550000px;}
.x10d_c00408{left:508.200000px;}
.xff_c00408{left:509.400000px;}
.xbe_c00408{left:511.200000px;}
.xc5_c00408{left:512.250000px;}
.xfb_c00408{left:513.900000px;}
.xf5_c00408{left:514.950000px;}
.xd3_c00408{left:516.300000px;}
.xb0_c00408{left:518.550000px;}
.x10a_c00408{left:519.600000px;}
.xca_c00408{left:520.950000px;}
.xd9_c00408{left:524.550000px;}
.x103_c00408{left:526.500000px;}
.xc6_c00408{left:528.450000px;}
.xdf_c00408{left:530.550000px;}
.x13f_c00408{left:531.600000px;}
.xab_c00408{left:534.300000px;}
.x11f_c00408{left:535.650000px;}
.xb8_c00408{left:538.200000px;}
.x100_c00408{left:539.250000px;}
.xe9_c00408{left:540.600000px;}
.x14e_c00408{left:542.550000px;}
.xb1_c00408{left:544.800000px;}
.x128_c00408{left:546.150000px;}
.x142_c00408{left:547.350000px;}
.x124_c00408{left:549.000000px;}
.xcb_c00408{left:550.500000px;}
.xe0_c00408{left:555.000000px;}
.xe4_c00408{left:556.500000px;}
.x11a_c00408{left:560.250000px;}
.x135_c00408{left:561.900000px;}
.xf6_c00408{left:563.850000px;}
.xd4_c00408{left:564.900000px;}
.x104_c00408{left:566.400000px;}
.xb2_c00408{left:567.450000px;}
.xbf_c00408{left:569.550000px;}
.xc7_c00408{left:570.600000px;}
.x151_c00408{left:572.100000px;}
.x105_c00408{left:574.650000px;}
.x12a_c00408{left:576.300000px;}
.xf7_c00408{left:577.500000px;}
.x131_c00408{left:578.550000px;}
.x10b_c00408{left:580.050000px;}
.x10e_c00408{left:582.750000px;}
.xee_c00408{left:584.400000px;}
.xac_c00408{left:588.000000px;}
.xcc_c00408{left:589.050000px;}
.x113_c00408{left:590.700000px;}
.x120_c00408{left:595.350000px;}
.x101_c00408{left:596.550000px;}
.x10f_c00408{left:597.900000px;}
.xda_c00408{left:599.400000px;}
.xe5_c00408{left:600.450000px;}
.xb9_c00408{left:601.500000px;}
.xad_c00408{left:605.700000px;}
.x125_c00408{left:607.950000px;}
.xd5_c00408{left:609.150000px;}
.x139_c00408{left:610.650000px;}
.xb3_c00408{left:613.200000px;}
.xe1_c00408{left:615.450000px;}
.x114_c00408{left:616.650000px;}
.xdb_c00408{left:619.200000px;}
.xea_c00408{left:621.300000px;}
.xf3_c00408{left:622.500000px;}
.xc0_c00408{left:623.850000px;}
.x12b_c00408{left:624.900000px;}
.xcd_c00408{left:626.100000px;}
.x102_c00408{left:628.650000px;}
.xe6_c00408{left:631.350000px;}
.xfc_c00408{left:633.900000px;}
.x106_c00408{left:636.150000px;}
.xef_c00408{left:639.450000px;}
.x13b_c00408{left:640.650000px;}
.x118_c00408{left:642.000000px;}
.x14b_c00408{left:644.400000px;}
.x122_c00408{left:646.800000px;}
.x115_c00408{left:648.000000px;}
.x11b_c00408{left:649.500000px;}
.xce_c00408{left:652.050000px;}
.x110_c00408{left:654.000000px;}
.xba_c00408{left:655.200000px;}
.xb4_c00408{left:656.400000px;}
.xeb_c00408{left:658.050000px;}
.x12c_c00408{left:659.100000px;}
.x13c_c00408{left:661.200000px;}
.xf0_c00408{left:662.850000px;}
.xf8_c00408{left:664.650000px;}
.xcf_c00408{left:666.750000px;}
.xae_c00408{left:668.700000px;}
.xe7_c00408{left:671.250000px;}
.x116_c00408{left:673.500000px;}
.xbb_c00408{left:674.700000px;}
.x136_c00408{left:676.350000px;}
.xd6_c00408{left:679.050000px;}
.x126_c00408{left:681.750000px;}
.xfd_c00408{left:683.850000px;}
.x121_c00408{left:685.050000px;}
.x117_c00408{left:687.300000px;}
.xb5_c00408{left:690.300000px;}
.x12d_c00408{left:691.500000px;}
.xc1_c00408{left:693.750000px;}
.xe8_c00408{left:696.450000px;}
.xf1_c00408{left:699.150000px;}
.xf9_c00408{left:700.650000px;}
.x14c_c00408{left:703.350000px;}
.x112_c00408{left:705.450000px;}
.x127_c00408{left:706.950000px;}
.xd7_c00408{left:709.650000px;}
.x132_c00408{left:711.300000px;}
.x11c_c00408{left:713.550000px;}
.x107_c00408{left:715.350000px;}
.xe2_c00408{left:718.500000px;}
.x13d_c00408{left:720.300000px;}
.xc2_c00408{left:721.500000px;}
.xec_c00408{left:722.550000px;}
.xaf_c00408{left:725.550000px;}
.xdc_c00408{left:727.200000px;}
.x111_c00408{left:729.150000px;}
.xbc_c00408{left:730.500000px;}
.xd0_c00408{left:731.550000px;}
.x14f_c00408{left:733.050000px;}
.x137_c00408{left:735.450000px;}
.x2_c00408{left:738.000000px;}
.x108_c00408{left:739.500000px;}
.x12e_c00408{left:741.600000px;}
.xbd_c00408{left:743.400000px;}
.xfe_c00408{left:744.750000px;}
.xfa_c00408{left:749.250000px;}
.xed_c00408{left:753.150000px;}
.x13a_c00408{left:755.100000px;}
.x109_c00408{left:757.800000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws4_c00408{word-spacing:-12.393421pt;}
.ws3_c00408{word-spacing:-8.000000pt;}
.ws2_c00408{word-spacing:-7.654321pt;}
.ws5_c00408{word-spacing:-4.841713pt;}
.ws8_c00408{word-spacing:-3.312102pt;}
.ws6_c00408{word-spacing:-2.333333pt;}
.ws9_c00408{word-spacing:0.000000pt;}
.ws1_c00408{word-spacing:0.740741pt;}
.ws7_c00408{word-spacing:10.735435pt;}
.ws0_c00408{word-spacing:53.333333pt;}
.fs2_c00408{font-size:42.666667pt;}
.fs6_c00408{font-size:48.000000pt;}
.fs3_c00408{font-size:53.333333pt;}
.fs4_c00408{font-size:58.666667pt;}
.fs5_c00408{font-size:64.000000pt;}
.fs1_c00408{font-size:69.333333pt;}
.fs0_c00408{font-size:74.666667pt;}
.y0_c00408{bottom:0.000000pt;}
.y37_c00408{bottom:174.000000pt;}
.y6c_c00408{bottom:174.400000pt;}
.y6b_c00408{bottom:187.600000pt;}
.y36_c00408{bottom:190.666667pt;}
.y6a_c00408{bottom:200.666667pt;}
.y35_c00408{bottom:206.666667pt;}
.y69_c00408{bottom:213.466667pt;}
.y34_c00408{bottom:222.933333pt;}
.y68_c00408{bottom:226.000000pt;}
.y33_c00408{bottom:238.666667pt;}
.y67_c00408{bottom:238.800000pt;}
.y66_c00408{bottom:251.866667pt;}
.y32_c00408{bottom:258.533333pt;}
.y31_c00408{bottom:274.266667pt;}
.y65_c00408{bottom:278.133333pt;}
.y30_c00408{bottom:293.866667pt;}
.y64_c00408{bottom:297.866667pt;}
.y2f_c00408{bottom:310.133333pt;}
.y63_c00408{bottom:313.866667pt;}
.y2e_c00408{bottom:325.866667pt;}
.y62_c00408{bottom:332.666667pt;}
.y2d_c00408{bottom:341.866667pt;}
.y61_c00408{bottom:348.933333pt;}
.y2c_c00408{bottom:357.866667pt;}
.y60_c00408{bottom:364.666667pt;}
.y2b_c00408{bottom:373.600000pt;}
.y5f_c00408{bottom:380.400000pt;}
.y2a_c00408{bottom:389.600000pt;}
.y5e_c00408{bottom:396.133333pt;}
.y29_c00408{bottom:405.333333pt;}
.y5d_c00408{bottom:411.866667pt;}
.y28_c00408{bottom:421.333333pt;}
.y5c_c00408{bottom:427.866667pt;}
.y27_c00408{bottom:437.066667pt;}
.y5b_c00408{bottom:443.866667pt;}
.y26_c00408{bottom:453.066667pt;}
.y5a_c00408{bottom:459.866667pt;}
.y25_c00408{bottom:469.066667pt;}
.y59_c00408{bottom:475.866667pt;}
.y24_c00408{bottom:485.066667pt;}
.y58_c00408{bottom:491.866667pt;}
.y23_c00408{bottom:501.066667pt;}
.y57_c00408{bottom:507.866667pt;}
.y22_c00408{bottom:516.800000pt;}
.y56_c00408{bottom:523.866667pt;}
.y21_c00408{bottom:532.800000pt;}
.y55_c00408{bottom:539.866667pt;}
.y20_c00408{bottom:548.133333pt;}
.y54_c00408{bottom:555.466667pt;}
.y1f_c00408{bottom:564.266667pt;}
.y53_c00408{bottom:571.200000pt;}
.y1e_c00408{bottom:580.266667pt;}
.y52_c00408{bottom:587.200000pt;}
.y1d_c00408{bottom:596.000000pt;}
.y51_c00408{bottom:603.200000pt;}
.y1c_c00408{bottom:611.733333pt;}
.y50_c00408{bottom:618.933333pt;}
.y1b_c00408{bottom:627.466667pt;}
.y4f_c00408{bottom:634.933333pt;}
.y1a_c00408{bottom:643.466667pt;}
.y4e_c00408{bottom:650.666667pt;}
.y19_c00408{bottom:659.200000pt;}
.y4d_c00408{bottom:666.666667pt;}
.y18_c00408{bottom:674.933333pt;}
.y4c_c00408{bottom:682.400000pt;}
.y17_c00408{bottom:694.266667pt;}
.y4b_c00408{bottom:698.400000pt;}
.y16_c00408{bottom:710.533333pt;}
.y4a_c00408{bottom:714.400000pt;}
.y15_c00408{bottom:726.266667pt;}
.y49_c00408{bottom:730.400000pt;}
.y14_c00408{bottom:742.000000pt;}
.y48_c00408{bottom:746.400000pt;}
.y13_c00408{bottom:758.000000pt;}
.y47_c00408{bottom:762.133333pt;}
.y12_c00408{bottom:774.000000pt;}
.y46_c00408{bottom:778.133333pt;}
.y11_c00408{bottom:789.733333pt;}
.y45_c00408{bottom:794.133333pt;}
.y10_c00408{bottom:809.333333pt;}
.y44_c00408{bottom:810.133333pt;}
.yf_c00408{bottom:825.600000pt;}
.y43_c00408{bottom:826.133333pt;}
.ye_c00408{bottom:841.600000pt;}
.y42_c00408{bottom:842.133333pt;}
.yd_c00408{bottom:857.600000pt;}
.y41_c00408{bottom:857.866667pt;}
.yc_c00408{bottom:873.333333pt;}
.y40_c00408{bottom:873.866667pt;}
.yb_c00408{bottom:889.333333pt;}
.y3f_c00408{bottom:889.866667pt;}
.y3e_c00408{bottom:904.400000pt;}
.ya_c00408{bottom:905.333333pt;}
.y3d_c00408{bottom:917.466667pt;}
.y9_c00408{bottom:923.200000pt;}
.y3c_c00408{bottom:931.466667pt;}
.y8_c00408{bottom:936.000000pt;}
.y3b_c00408{bottom:947.466667pt;}
.y7_c00408{bottom:948.133333pt;}
.y6_c00408{bottom:961.200000pt;}
.y3a_c00408{bottom:963.200000pt;}
.y5_c00408{bottom:974.000000pt;}
.y39_c00408{bottom:979.200000pt;}
.y4_c00408{bottom:988.133333pt;}
.y38_c00408{bottom:994.533333pt;}
.y3_c00408{bottom:999.333333pt;}
.y2_c00408{bottom:1017.600000pt;}
.y1_c00408{bottom:1019.866667pt;}
.h4_c00408{height:42.666667pt;}
.h8_c00408{height:48.000000pt;}
.h5_c00408{height:53.333333pt;}
.h6_c00408{height:58.666667pt;}
.h7_c00408{height:64.000000pt;}
.h3_c00408{height:69.333333pt;}
.h2_c00408{height:74.666667pt;}
.h1_c00408{height:1125.333333pt;}
.h0_c00408{height:1125.440023pt;}
.w0_c00408{width:853.760009pt;}
.w1_c00408{width:854.000000pt;}
.x0_c00408{left:0.000000pt;}
.x93_c00408{left:57.866667pt;}
.x45_c00408{left:61.066667pt;}
.x6_c00408{left:62.400000pt;}
.x9b_c00408{left:71.333333pt;}
.x95_c00408{left:73.066667pt;}
.x8e_c00408{left:74.000000pt;}
.x14_c00408{left:74.933333pt;}
.x6f_c00408{left:76.400000pt;}
.x5b_c00408{left:77.466667pt;}
.x2c_c00408{left:78.533333pt;}
.x21_c00408{left:87.333333pt;}
.xe_c00408{left:88.666667pt;}
.x96_c00408{left:89.866667pt;}
.x73_c00408{left:91.200000pt;}
.x77_c00408{left:92.666667pt;}
.x90_c00408{left:94.266667pt;}
.x70_c00408{left:95.600000pt;}
.x4e_c00408{left:98.000000pt;}
.x32_c00408{left:98.933333pt;}
.x9f_c00408{left:100.133333pt;}
.x8c_c00408{left:101.333333pt;}
.x15_c00408{left:102.400000pt;}
.x81_c00408{left:103.600000pt;}
.x60_c00408{left:104.800000pt;}
.x78_c00408{left:106.533333pt;}
.x63_c00408{left:109.600000pt;}
.x52_c00408{left:111.333333pt;}
.x46_c00408{left:112.933333pt;}
.x7_c00408{left:115.866667pt;}
.x5c_c00408{left:117.200000pt;}
.x16_c00408{left:118.133333pt;}
.x56_c00408{left:119.200000pt;}
.x2d_c00408{left:121.333333pt;}
.x76_c00408{left:122.266667pt;}
.x7f_c00408{left:123.466667pt;}
.x61_c00408{left:125.866667pt;}
.x7c_c00408{left:128.666667pt;}
.x3f_c00408{left:129.733333pt;}
.x97_c00408{left:130.800000pt;}
.x85_c00408{left:131.866667pt;}
.x68_c00408{left:133.066667pt;}
.x17_c00408{left:134.133333pt;}
.x5d_c00408{left:135.733333pt;}
.x22_c00408{left:137.200000pt;}
.x64_c00408{left:138.133333pt;}
.x28_c00408{left:140.133333pt;}
.xf_c00408{left:141.733333pt;}
.x3a_c00408{left:142.800000pt;}
.x1c_c00408{left:147.200000pt;}
.x6b_c00408{left:148.133333pt;}
.x40_c00408{left:149.866667pt;}
.x91_c00408{left:151.866667pt;}
.x57_c00408{left:153.733333pt;}
.x33_c00408{left:155.866667pt;}
.x4f_c00408{left:157.200000pt;}
.xa2_c00408{left:160.800000pt;}
.x8_c00408{left:163.200000pt;}
.x18_c00408{left:164.800000pt;}
.x34_c00408{left:166.400000pt;}
.x9c_c00408{left:167.733333pt;}
.x3b_c00408{left:168.666667pt;}
.x82_c00408{left:169.600000pt;}
.x98_c00408{left:170.533333pt;}
.x74_c00408{left:172.133333pt;}
.x23_c00408{left:173.333333pt;}
.x10_c00408{left:175.600000pt;}
.x1d_c00408{left:177.600000pt;}
.x9_c00408{left:179.466667pt;}
.x53_c00408{left:182.666667pt;}
.x6c_c00408{left:184.000000pt;}
.x89_c00408{left:185.866667pt;}
.x3c_c00408{left:187.600000pt;}
.xa0_c00408{left:188.533333pt;}
.x2e_c00408{left:190.533333pt;}
.x11_c00408{left:193.200000pt;}
.x69_c00408{left:194.800000pt;}
.x29_c00408{left:195.866667pt;}
.x83_c00408{left:197.733333pt;}
.x44_c00408{left:199.200000pt;}
.x7d_c00408{left:200.666667pt;}
.x35_c00408{left:202.266667pt;}
.x80_c00408{left:205.066667pt;}
.x54_c00408{left:206.400000pt;}
.x41_c00408{left:209.066667pt;}
.x5f_c00408{left:210.133333pt;}
.x24_c00408{left:214.666667pt;}
.x1e_c00408{left:218.266667pt;}
.x9e_c00408{left:219.866667pt;}
.x36_c00408{left:222.133333pt;}
.x12_c00408{left:224.266667pt;}
.x2f_c00408{left:226.000000pt;}
.x62_c00408{left:228.000000pt;}
.x71_c00408{left:229.066667pt;}
.xa3_c00408{left:231.466667pt;}
.x47_c00408{left:234.266667pt;}
.x65_c00408{left:237.333333pt;}
.x94_c00408{left:238.533333pt;}
.x3d_c00408{left:240.133333pt;}
.x19_c00408{left:241.866667pt;}
.x13_c00408{left:243.200000pt;}
.x25_c00408{left:244.800000pt;}
.x1f_c00408{left:245.733333pt;}
.x48_c00408{left:247.066667pt;}
.xa4_c00408{left:248.133333pt;}
.x37_c00408{left:249.600000pt;}
.x66_c00408{left:252.666667pt;}
.x50_c00408{left:254.266667pt;}
.xa1_c00408{left:255.200000pt;}
.x5e_c00408{left:256.400000pt;}
.x55_c00408{left:258.266667pt;}
.x84_c00408{left:259.200000pt;}
.x79_c00408{left:260.933333pt;}
.x26_c00408{left:262.133333pt;}
.x86_c00408{left:263.333333pt;}
.xa5_c00408{left:264.400000pt;}
.xa_c00408{left:268.800000pt;}
.x99_c00408{left:270.400000pt;}
.x4b_c00408{left:273.333333pt;}
.x3_c00408{left:275.466667pt;}
.x75_c00408{left:277.066667pt;}
.x1_c00408{left:278.666667pt;}
.x8d_c00408{left:279.733333pt;}
.x87_c00408{left:281.600000pt;}
.x92_c00408{left:284.400000pt;}
.x58_c00408{left:286.133333pt;}
.xb_c00408{left:287.333333pt;}
.x1a_c00408{left:288.400000pt;}
.x2a_c00408{left:290.266667pt;}
.x4c_c00408{left:292.533333pt;}
.x20_c00408{left:294.666667pt;}
.x42_c00408{left:297.733333pt;}
.x27_c00408{left:298.666667pt;}
.xc_c00408{left:300.800000pt;}
.x6d_c00408{left:302.000000pt;}
.x2b_c00408{left:304.400000pt;}
.x30_c00408{left:306.266667pt;}
.x7e_c00408{left:307.200000pt;}
.x59_c00408{left:309.466667pt;}
.x4d_c00408{left:310.800000pt;}
.x38_c00408{left:312.666667pt;}
.x4_c00408{left:314.533333pt;}
.x7a_c00408{left:315.600000pt;}
.x49_c00408{left:318.133333pt;}
.x7b_c00408{left:319.733333pt;}
.xa6_c00408{left:321.733333pt;}
.x8a_c00408{left:324.400000pt;}
.xd_c00408{left:325.466667pt;}
.x31_c00408{left:326.800000pt;}
.x6e_c00408{left:328.933333pt;}
.x51_c00408{left:330.133333pt;}
.x9d_c00408{left:331.200000pt;}
.x3e_c00408{left:332.266667pt;}
.x4a_c00408{left:333.200000pt;}
.x43_c00408{left:334.266667pt;}
.x5a_c00408{left:335.733333pt;}
.x9a_c00408{left:336.666667pt;}
.x67_c00408{left:337.866667pt;}
.x8f_c00408{left:339.333333pt;}
.x72_c00408{left:341.733333pt;}
.x8b_c00408{left:344.266667pt;}
.x5_c00408{left:345.200000pt;}
.x88_c00408{left:346.533333pt;}
.x6a_c00408{left:347.733333pt;}
.x1b_c00408{left:351.466667pt;}
.x39_c00408{left:359.066667pt;}
.x149_c00408{left:373.466667pt;}
.x144_c00408{left:375.066667pt;}
.x123_c00408{left:377.866667pt;}
.xc8_c00408{left:380.800000pt;}
.xb6_c00408{left:382.133333pt;}
.x148_c00408{left:386.933333pt;}
.xdd_c00408{left:388.133333pt;}
.xc3_c00408{left:389.466667pt;}
.x145_c00408{left:390.400000pt;}
.x140_c00408{left:391.466667pt;}
.x133_c00408{left:392.533333pt;}
.xd1_c00408{left:393.600000pt;}
.x11e_c00408{left:394.800000pt;}
.xf2_c00408{left:395.866667pt;}
.xc4_c00408{left:396.800000pt;}
.xa7_c00408{left:398.133333pt;}
.x13e_c00408{left:400.800000pt;}
.x14a_c00408{left:402.266667pt;}
.x14d_c00408{left:405.466667pt;}
.x12f_c00408{left:407.066667pt;}
.xd2_c00408{left:408.266667pt;}
.x150_c00408{left:410.000000pt;}
.x138_c00408{left:410.933333pt;}
.x10c_c00408{left:412.666667pt;}
.xa8_c00408{left:415.466667pt;}
.xde_c00408{left:416.933333pt;}
.xb7_c00408{left:420.800000pt;}
.x134_c00408{left:425.866667pt;}
.x141_c00408{left:428.933333pt;}
.xa9_c00408{left:429.866667pt;}
.xc9_c00408{left:432.666667pt;}
.x11d_c00408{left:434.533333pt;}
.x143_c00408{left:436.266667pt;}
.xf4_c00408{left:437.200000pt;}
.x119_c00408{left:440.133333pt;}
.xe3_c00408{left:442.533333pt;}
.x130_c00408{left:444.133333pt;}
.xaa_c00408{left:445.866667pt;}
.x147_c00408{left:447.066667pt;}
.x129_c00408{left:448.000000pt;}
.xd8_c00408{left:449.333333pt;}
.x146_c00408{left:450.266667pt;}
.x10d_c00408{left:451.733333pt;}
.xff_c00408{left:452.800000pt;}
.xbe_c00408{left:454.400000pt;}
.xc5_c00408{left:455.333333pt;}
.xfb_c00408{left:456.800000pt;}
.xf5_c00408{left:457.733333pt;}
.xd3_c00408{left:458.933333pt;}
.xb0_c00408{left:460.933333pt;}
.x10a_c00408{left:461.866667pt;}
.xca_c00408{left:463.066667pt;}
.xd9_c00408{left:466.266667pt;}
.x103_c00408{left:468.000000pt;}
.xc6_c00408{left:469.733333pt;}
.xdf_c00408{left:471.600000pt;}
.x13f_c00408{left:472.533333pt;}
.xab_c00408{left:474.933333pt;}
.x11f_c00408{left:476.133333pt;}
.xb8_c00408{left:478.400000pt;}
.x100_c00408{left:479.333333pt;}
.xe9_c00408{left:480.533333pt;}
.x14e_c00408{left:482.266667pt;}
.xb1_c00408{left:484.266667pt;}
.x128_c00408{left:485.466667pt;}
.x142_c00408{left:486.533333pt;}
.x124_c00408{left:488.000000pt;}
.xcb_c00408{left:489.333333pt;}
.xe0_c00408{left:493.333333pt;}
.xe4_c00408{left:494.666667pt;}
.x11a_c00408{left:498.000000pt;}
.x135_c00408{left:499.466667pt;}
.xf6_c00408{left:501.200000pt;}
.xd4_c00408{left:502.133333pt;}
.x104_c00408{left:503.466667pt;}
.xb2_c00408{left:504.400000pt;}
.xbf_c00408{left:506.266667pt;}
.xc7_c00408{left:507.200000pt;}
.x151_c00408{left:508.533333pt;}
.x105_c00408{left:510.800000pt;}
.x12a_c00408{left:512.266667pt;}
.xf7_c00408{left:513.333333pt;}
.x131_c00408{left:514.266667pt;}
.x10b_c00408{left:515.600000pt;}
.x10e_c00408{left:518.000000pt;}
.xee_c00408{left:519.466667pt;}
.xac_c00408{left:522.666667pt;}
.xcc_c00408{left:523.600000pt;}
.x113_c00408{left:525.066667pt;}
.x120_c00408{left:529.200000pt;}
.x101_c00408{left:530.266667pt;}
.x10f_c00408{left:531.466667pt;}
.xda_c00408{left:532.800000pt;}
.xe5_c00408{left:533.733333pt;}
.xb9_c00408{left:534.666667pt;}
.xad_c00408{left:538.400000pt;}
.x125_c00408{left:540.400000pt;}
.xd5_c00408{left:541.466667pt;}
.x139_c00408{left:542.800000pt;}
.xb3_c00408{left:545.066667pt;}
.xe1_c00408{left:547.066667pt;}
.x114_c00408{left:548.133333pt;}
.xdb_c00408{left:550.400000pt;}
.xea_c00408{left:552.266667pt;}
.xf3_c00408{left:553.333333pt;}
.xc0_c00408{left:554.533333pt;}
.x12b_c00408{left:555.466667pt;}
.xcd_c00408{left:556.533333pt;}
.x102_c00408{left:558.800000pt;}
.xe6_c00408{left:561.200000pt;}
.xfc_c00408{left:563.466667pt;}
.x106_c00408{left:565.466667pt;}
.xef_c00408{left:568.400000pt;}
.x13b_c00408{left:569.466667pt;}
.x118_c00408{left:570.666667pt;}
.x14b_c00408{left:572.800000pt;}
.x122_c00408{left:574.933333pt;}
.x115_c00408{left:576.000000pt;}
.x11b_c00408{left:577.333333pt;}
.xce_c00408{left:579.600000pt;}
.x110_c00408{left:581.333333pt;}
.xba_c00408{left:582.400000pt;}
.xb4_c00408{left:583.466667pt;}
.xeb_c00408{left:584.933333pt;}
.x12c_c00408{left:585.866667pt;}
.x13c_c00408{left:587.733333pt;}
.xf0_c00408{left:589.200000pt;}
.xf8_c00408{left:590.800000pt;}
.xcf_c00408{left:592.666667pt;}
.xae_c00408{left:594.400000pt;}
.xe7_c00408{left:596.666667pt;}
.x116_c00408{left:598.666667pt;}
.xbb_c00408{left:599.733333pt;}
.x136_c00408{left:601.200000pt;}
.xd6_c00408{left:603.600000pt;}
.x126_c00408{left:606.000000pt;}
.xfd_c00408{left:607.866667pt;}
.x121_c00408{left:608.933333pt;}
.x117_c00408{left:610.933333pt;}
.xb5_c00408{left:613.600000pt;}
.x12d_c00408{left:614.666667pt;}
.xc1_c00408{left:616.666667pt;}
.xe8_c00408{left:619.066667pt;}
.xf1_c00408{left:621.466667pt;}
.xf9_c00408{left:622.800000pt;}
.x14c_c00408{left:625.200000pt;}
.x112_c00408{left:627.066667pt;}
.x127_c00408{left:628.400000pt;}
.xd7_c00408{left:630.800000pt;}
.x132_c00408{left:632.266667pt;}
.x11c_c00408{left:634.266667pt;}
.x107_c00408{left:635.866667pt;}
.xe2_c00408{left:638.666667pt;}
.x13d_c00408{left:640.266667pt;}
.xc2_c00408{left:641.333333pt;}
.xec_c00408{left:642.266667pt;}
.xaf_c00408{left:644.933333pt;}
.xdc_c00408{left:646.400000pt;}
.x111_c00408{left:648.133333pt;}
.xbc_c00408{left:649.333333pt;}
.xd0_c00408{left:650.266667pt;}
.x14f_c00408{left:651.600000pt;}
.x137_c00408{left:653.733333pt;}
.x2_c00408{left:656.000000pt;}
.x108_c00408{left:657.333333pt;}
.x12e_c00408{left:659.200000pt;}
.xbd_c00408{left:660.800000pt;}
.xfe_c00408{left:662.000000pt;}
.xfa_c00408{left:666.000000pt;}
.xed_c00408{left:669.466667pt;}
.x13a_c00408{left:671.200000pt;}
.x109_c00408{left:673.600000pt;}
}





/* 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_c00409 {
    display:none;
  }
  .loading-indicator_c00409.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00409 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_c00409 { 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_c00409" -> "#page-container .classname_c00409")
 */
.pf_c00409 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00409 { /* 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_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00409 { /* 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_c00409 { /* 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_c00409 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00409 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00409 {overflow:visible;}
  }
}
.c_c00409 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00409 { /* 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_c00409:after { /* webkit #35443 */
  content: '';
}
.t_c00409:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00409 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 */
}
.__c00409 { /* 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_c00409 { /* info for Javascript */
  display:none;
}
.l_c00409 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00409 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00409 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00409: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_c00409 {
    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_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00409.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_c00409 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00409{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00409;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.000000;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;}
.m66_c00409{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00409{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m103_c00409{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m56_c00409{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m96_c00409{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00409{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m4_c00409{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00409{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00409{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m97_c00409{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m94_c00409{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m98_c00409{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00409{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m70_c00409{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m112_c00409{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m104_c00409{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.me0_c00409{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m21_c00409{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00409{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m100_c00409{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m20_c00409{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00409{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00409{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m72_c00409{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10_c00409{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00409{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m89_c00409{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00409{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m120_c00409{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00409{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.maf_c00409{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.me3_c00409{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00409{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00409{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00409{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.meb_c00409{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m80_c00409{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m48_c00409{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf_c00409{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00409{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m105_c00409{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mc_c00409{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00409{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m18_c00409{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m58_c00409{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00409{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00409{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00409{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00409{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00409{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m8_c00409{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00409{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00409{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m95_c00409{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00409{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m16_c00409{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m25_c00409{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00409{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m31_c00409{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9_c00409{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00409{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00409{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m90_c00409{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.me1_c00409{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m32_c00409{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m28_c00409{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md3_c00409{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m23_c00409{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m15_c00409{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00409{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m14_c00409{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00409{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m54_c00409{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m44_c00409{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00409{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3_c00409{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m102_c00409{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00409{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00409{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m35_c00409{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m57_c00409{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me_c00409{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00409{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m115_c00409{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma_c00409{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m24_c00409{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m78_c00409{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00409{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m88_c00409{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me2_c00409{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m69_c00409{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m71_c00409{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00409{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m42_c00409{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00409{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00409{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m61_c00409{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00409{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mef_c00409{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00409{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m91_c00409{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m40_c00409{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m43_c00409{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00409{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00409{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00409{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m106_c00409{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00409{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md6_c00409{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00409{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00409{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00409{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m46_c00409{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m93_c00409{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00409{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m77_c00409{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mda_c00409{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00409{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00409{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mde_c00409{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m121_c00409{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00409{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m51_c00409{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mca_c00409{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m22_c00409{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00409{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m79_c00409{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m7_c00409{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m13_c00409{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m85_c00409{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00409{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m45_c00409{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00409{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00409{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00409{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mab_c00409{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m60_c00409{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m33_c00409{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m2_c00409{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00409{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m30_c00409{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00409{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m117_c00409{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m87_c00409{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00409{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md_c00409{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00409{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00409{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m68_c00409{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m108_c00409{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m39_c00409{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md7_c00409{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m92_c00409{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m27_c00409{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00409{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mad_c00409{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m76_c00409{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m47_c00409{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md9_c00409{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00409{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00409{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m26_c00409{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00409{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m34_c00409{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m55_c00409{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mae_c00409{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m111_c00409{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00409{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m38_c00409{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00409{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m50_c00409{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md2_c00409{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00409{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mac_c00409{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m107_c00409{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00409{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00409{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00409{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m109_c00409{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00409{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m84_c00409{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00409{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m19_c00409{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00409{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00409{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00409{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me8_c00409{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m17_c00409{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mea_c00409{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m110_c00409{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m83_c00409{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00409{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00409{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md1_c00409{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00409{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00409{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00409{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00409{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00409{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00409{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m41_c00409{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00409{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00409{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00409{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00409{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00409{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6_c00409{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md4_c00409{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00409{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m118_c00409{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00409{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m12_c00409{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md0_c00409{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m101_c00409{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);}
.m37_c00409{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m114_c00409{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb_c00409{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00409{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m65_c00409{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.maa_c00409{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00409{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mec_c00409{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00409{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00409{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m0_c00409{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md5_c00409{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00409{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00409{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m86_c00409{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mba_c00409{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mee_c00409{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00409{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m116_c00409{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00409{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m5_c00409{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m75_c00409{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00409{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00409{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00409{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mce_c00409{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m29_c00409{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00409{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00409{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00409{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m53_c00409{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md8_c00409{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00409{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00409{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m62_c00409{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00409{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mff_c00409{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m74_c00409{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00409{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m49_c00409{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00409{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.med_c00409{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00409{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00409{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m64_c00409{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00409{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me9_c00409{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00409{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m67_c00409{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m36_c00409{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00409{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.m119_c00409{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m52_c00409{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me7_c00409{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m81_c00409{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00409{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00409{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m59_c00409{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m73_c00409{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00409{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00409{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m82_c00409{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m99_c00409{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00409{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00409{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00409{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.m63_c00409{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m113_c00409{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00409{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00409{transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);}
.me5_c00409{transform:matrix(0.358750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00409{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.me6_c00409{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.me4_c00409{transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(0.475750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00409{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls0_c00409{letter-spacing:0.000000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{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__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00409{word-spacing:-6.463415px;}
.ws4_c00409{word-spacing:-6.160714px;}
.ws5_c00409{word-spacing:-3.125000px;}
.ws7_c00409{word-spacing:0.000000px;}
.ws0_c00409{word-spacing:3.206273px;}
.ws2_c00409{word-spacing:11.628032px;}
.ws6_c00409{word-spacing:11.652921px;}
.ws1_c00409{word-spacing:11.875000px;}
.fc0_c00409{color:transparent;}
.fs5_c00409{font-size:36.000000px;}
.fs3_c00409{font-size:54.000000px;}
.fs1_c00409{font-size:60.000000px;}
.fs2_c00409{font-size:66.000000px;}
.fs4_c00409{font-size:72.000000px;}
.fs0_c00409{font-size:78.000000px;}
.y0_c00409{bottom:0.000000px;}
.y61_c00409{bottom:199.800000px;}
.y34_c00409{bottom:203.700000px;}
.y60_c00409{bottom:214.500000px;}
.y33_c00409{bottom:220.650000px;}
.y5f_c00409{bottom:228.750000px;}
.y32_c00409{bottom:242.250000px;}
.y5e_c00409{bottom:242.850000px;}
.y5d_c00409{bottom:257.250000px;}
.y31_c00409{bottom:259.200000px;}
.y5c_c00409{bottom:271.350000px;}
.y30_c00409{bottom:276.900000px;}
.y5b_c00409{bottom:285.750000px;}
.y2f_c00409{bottom:294.600000px;}
.y5a_c00409{bottom:299.850000px;}
.y2e_c00409{bottom:312.300000px;}
.y59_c00409{bottom:313.500000px;}
.y2d_c00409{bottom:330.000000px;}
.y2c_c00409{bottom:347.700000px;}
.y58_c00409{bottom:359.400000px;}
.y2b_c00409{bottom:365.400000px;}
.y57_c00409{bottom:377.700000px;}
.y2a_c00409{bottom:386.850000px;}
.y56_c00409{bottom:395.700000px;}
.y29_c00409{bottom:406.350000px;}
.y55_c00409{bottom:413.700000px;}
.y28_c00409{bottom:424.350000px;}
.y54_c00409{bottom:431.700000px;}
.y27_c00409{bottom:442.050000px;}
.y53_c00409{bottom:449.700000px;}
.y26_c00409{bottom:463.200000px;}
.y25_c00409{bottom:482.700000px;}
.y51_c00409{bottom:483.750000px;}
.y52_c00409{bottom:500.100000px;}
.y24_c00409{bottom:500.400000px;}
.y50_c00409{bottom:508.650000px;}
.y23_c00409{bottom:521.250000px;}
.y4f_c00409{bottom:535.200000px;}
.y22_c00409{bottom:540.000000px;}
.y4e_c00409{bottom:552.900000px;}
.y21_c00409{bottom:566.550000px;}
.y20_c00409{bottom:585.300000px;}
.y4d_c00409{bottom:587.850000px;}
.y1f_c00409{bottom:602.700000px;}
.y1e_c00409{bottom:621.000000px;}
.y4c_c00409{bottom:623.850000px;}
.y1d_c00409{bottom:638.700000px;}
.y4b_c00409{bottom:641.850000px;}
.y1c_c00409{bottom:660.150000px;}
.y4a_c00409{bottom:678.000000px;}
.y1b_c00409{bottom:678.900000px;}
.y49_c00409{bottom:696.300000px;}
.y1a_c00409{bottom:696.600000px;}
.y19_c00409{bottom:718.200000px;}
.y48_c00409{bottom:735.900000px;}
.y18_c00409{bottom:736.500000px;}
.y47_c00409{bottom:758.100000px;}
.y17_c00409{bottom:763.800000px;}
.y46_c00409{bottom:776.100000px;}
.y16_c00409{bottom:781.800000px;}
.y15_c00409{bottom:799.800000px;}
.y45_c00409{bottom:811.500000px;}
.y14_c00409{bottom:817.800000px;}
.y13_c00409{bottom:835.500000px;}
.y44_c00409{bottom:847.800000px;}
.y12_c00409{bottom:853.500000px;}
.y43_c00409{bottom:865.500000px;}
.y11_c00409{bottom:870.750000px;}
.y42_c00409{bottom:883.650000px;}
.y10_c00409{bottom:889.800000px;}
.y41_c00409{bottom:901.350000px;}
.yf_c00409{bottom:907.500000px;}
.y40_c00409{bottom:919.350000px;}
.ye_c00409{bottom:925.500000px;}
.y3f_c00409{bottom:937.350000px;}
.yd_c00409{bottom:943.500000px;}
.y3e_c00409{bottom:955.050000px;}
.yc_c00409{bottom:961.200000px;}
.y3d_c00409{bottom:973.050000px;}
.yb_c00409{bottom:979.200000px;}
.y3c_c00409{bottom:991.050000px;}
.ya_c00409{bottom:996.900000px;}
.y3b_c00409{bottom:1008.750000px;}
.y9_c00409{bottom:1014.900000px;}
.y3a_c00409{bottom:1026.750000px;}
.y8_c00409{bottom:1031.550000px;}
.y39_c00409{bottom:1049.100000px;}
.y7_c00409{bottom:1050.600000px;}
.y38_c00409{bottom:1067.100000px;}
.y6_c00409{bottom:1068.900000px;}
.y37_c00409{bottom:1084.950000px;}
.y5_c00409{bottom:1086.150000px;}
.y36_c00409{bottom:1107.300000px;}
.y4_c00409{bottom:1107.750000px;}
.y35_c00409{bottom:1124.250000px;}
.y3_c00409{bottom:1125.750000px;}
.y1_c00409{bottom:1151.700000px;}
.y2_c00409{bottom:1152.750000px;}
.h7_c00409{height:36.000000px;}
.h5_c00409{height:54.000000px;}
.h3_c00409{height:60.000000px;}
.h4_c00409{height:66.000000px;}
.h6_c00409{height:72.000000px;}
.h2_c00409{height:78.000000px;}
.h1_c00409{height:1269.750000px;}
.h0_c00409{height:1270.080048px;}
.w0_c00409{width:960.480010px;}
.w1_c00409{width:960.750000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:192.600000px;}
.x15_c00409{left:193.650000px;}
.x27_c00409{left:194.700000px;}
.x5f_c00409{left:197.700000px;}
.x70_c00409{left:199.050000px;}
.x7e_c00409{left:200.550000px;}
.x85_c00409{left:201.900000px;}
.x98_c00409{left:205.500000px;}
.x3_c00409{left:211.650000px;}
.xc_c00409{left:213.300000px;}
.x62_c00409{left:214.350000px;}
.x68_c00409{left:216.750000px;}
.x77_c00409{left:218.700000px;}
.x8c_c00409{left:220.500000px;}
.x8e_c00409{left:221.700000px;}
.x8a_c00409{left:223.050000px;}
.x7f_c00409{left:224.700000px;}
.x5d_c00409{left:230.250000px;}
.x4b_c00409{left:231.450000px;}
.x26_c00409{left:233.400000px;}
.xd_c00409{left:235.650000px;}
.x4_c00409{left:236.850000px;}
.x21_c00409{left:238.350000px;}
.x16_c00409{left:239.400000px;}
.x56_c00409{left:242.400000px;}
.x74_c00409{left:243.750000px;}
.x3e_c00409{left:245.850000px;}
.x45_c00409{left:248.850000px;}
.x7d_c00409{left:253.650000px;}
.x73_c00409{left:254.850000px;}
.x39_c00409{left:256.500000px;}
.x31_c00409{left:258.900000px;}
.x5b_c00409{left:262.950000px;}
.x99_c00409{left:264.450000px;}
.x81_c00409{left:266.250000px;}
.x3a_c00409{left:268.350000px;}
.xe_c00409{left:270.150000px;}
.x4c_c00409{left:274.650000px;}
.x7b_c00409{left:277.050000px;}
.x1b_c00409{left:278.400000px;}
.x78_c00409{left:279.450000px;}
.x35_c00409{left:280.950000px;}
.x75_c00409{left:283.050000px;}
.x32_c00409{left:284.850000px;}
.x44_c00409{left:287.850000px;}
.x22_c00409{left:289.950000px;}
.x2d_c00409{left:292.050000px;}
.x8d_c00409{left:293.700000px;}
.x60_c00409{left:295.350000px;}
.x1c_c00409{left:296.700000px;}
.x4d_c00409{left:297.750000px;}
.x86_c00409{left:302.400000px;}
.x17_c00409{left:303.900000px;}
.x5_c00409{left:305.250000px;}
.xf_c00409{left:307.200000px;}
.x69_c00409{left:312.150000px;}
.x6_c00409{left:316.800000px;}
.x79_c00409{left:318.750000px;}
.x10_c00409{left:322.650000px;}
.x46_c00409{left:327.000000px;}
.x6a_c00409{left:328.050000px;}
.x65_c00409{left:329.400000px;}
.x57_c00409{left:332.100000px;}
.x3f_c00409{left:334.650000px;}
.x23_c00409{left:336.750000px;}
.x1d_c00409{left:338.100000px;}
.x47_c00409{left:341.400000px;}
.x8f_c00409{left:342.900000px;}
.x28_c00409{left:344.400000px;}
.x6f_c00409{left:346.050000px;}
.x58_c00409{left:348.300000px;}
.x82_c00409{left:350.100000px;}
.x7a_c00409{left:351.150000px;}
.x54_c00409{left:352.350000px;}
.x7_c00409{left:353.550000px;}
.x11_c00409{left:354.750000px;}
.x5e_c00409{left:357.900000px;}
.x24_c00409{left:360.450000px;}
.x52_c00409{left:362.400000px;}
.x18_c00409{left:365.400000px;}
.x48_c00409{left:368.100000px;}
.x3b_c00409{left:369.450000px;}
.x33_c00409{left:370.950000px;}
.x94_c00409{left:373.200000px;}
.x71_c00409{left:375.150000px;}
.x4e_c00409{left:378.600000px;}
.x29_c00409{left:385.800000px;}
.x12_c00409{left:389.250000px;}
.x90_c00409{left:391.500000px;}
.x59_c00409{left:393.600000px;}
.x6b_c00409{left:396.150000px;}
.x40_c00409{left:397.950000px;}
.x87_c00409{left:400.650000px;}
.x2a_c00409{left:401.700000px;}
.x95_c00409{left:405.900000px;}
.x4f_c00409{left:407.100000px;}
.x2e_c00409{left:408.750000px;}
.x36_c00409{left:409.800000px;}
.x13_c00409{left:411.150000px;}
.x61_c00409{left:412.350000px;}
.x6c_c00409{left:414.000000px;}
.x53_c00409{left:415.350000px;}
.x3c_c00409{left:418.350000px;}
.x2f_c00409{left:420.300000px;}
.x41_c00409{left:421.650000px;}
.x1e_c00409{left:423.750000px;}
.x8_c00409{left:425.250000px;}
.x14_c00409{left:426.600000px;}
.x72_c00409{left:428.100000px;}
.x88_c00409{left:434.100000px;}
.x64_c00409{left:435.900000px;}
.x1f_c00409{left:437.400000px;}
.x2_c00409{left:438.900000px;}
.x92_c00409{left:440.100000px;}
.x3d_c00409{left:445.650000px;}
.x66_c00409{left:448.500000px;}
.x9_c00409{left:450.150000px;}
.x55_c00409{left:452.100000px;}
.x89_c00409{left:453.150000px;}
.x6e_c00409{left:454.650000px;}
.x19_c00409{left:458.700000px;}
.x42_c00409{left:461.250000px;}
.x34_c00409{left:463.500000px;}
.x2b_c00409{left:467.250000px;}
.x37_c00409{left:469.200000px;}
.xa_c00409{left:473.250000px;}
.x76_c00409{left:474.600000px;}
.x25_c00409{left:476.400000px;}
.x49_c00409{left:480.450000px;}
.x93_c00409{left:481.500000px;}
.x30_c00409{left:482.550000px;}
.x8b_c00409{left:484.800000px;}
.x91_c00409{left:487.200000px;}
.x38_c00409{left:488.700000px;}
.x50_c00409{left:490.200000px;}
.x1a_c00409{left:494.400000px;}
.x67_c00409{left:496.800000px;}
.x20_c00409{left:497.850000px;}
.x5a_c00409{left:502.050000px;}
.xb_c00409{left:503.100000px;}
.x96_c00409{left:504.150000px;}
.x84_c00409{left:505.500000px;}
.x6d_c00409{left:506.850000px;}
.x43_c00409{left:509.550000px;}
.x2c_c00409{left:511.950000px;}
.x63_c00409{left:514.200000px;}
.x51_c00409{left:516.900000px;}
.x4a_c00409{left:520.350000px;}
.x97_c00409{left:523.350000px;}
.x7c_c00409{left:524.700000px;}
.x80_c00409{left:526.200000px;}
.x5c_c00409{left:527.550000px;}
.x83_c00409{left:531.600000px;}
.xa9_c00409{left:550.200000px;}
.xea_c00409{left:552.900000px;}
.x100_c00409{left:554.700000px;}
.xf9_c00409{left:555.900000px;}
.x118_c00409{left:557.100000px;}
.x125_c00409{left:559.200000px;}
.xa0_c00409{left:567.000000px;}
.xae_c00409{left:568.500000px;}
.xe5_c00409{left:569.550000px;}
.x103_c00409{left:573.150000px;}
.x110_c00409{left:574.350000px;}
.x122_c00409{left:581.550000px;}
.x11b_c00409{left:583.050000px;}
.x9a_c00409{left:586.050000px;}
.xbe_c00409{left:588.000000px;}
.x10b_c00409{left:591.150000px;}
.xdd_c00409{left:594.600000px;}
.xb6_c00409{left:598.050000px;}
.xaa_c00409{left:599.100000px;}
.x106_c00409{left:600.150000px;}
.xd3_c00409{left:602.250000px;}
.xf8_c00409{left:606.000000px;}
.x114_c00409{left:607.200000px;}
.xca_c00409{left:610.050000px;}
.xe9_c00409{left:611.700000px;}
.xb7_c00409{left:615.750000px;}
.x10e_c00409{left:618.900000px;}
.x128_c00409{left:620.100000px;}
.xd9_c00409{left:621.450000px;}
.xbf_c00409{left:623.700000px;}
.xe6_c00409{left:625.050000px;}
.xa1_c00409{left:627.150000px;}
.x129_c00409{left:628.200000px;}
.xaf_c00409{left:629.700000px;}
.x9b_c00409{left:630.750000px;}
.x126_c00409{left:632.700000px;}
.x109_c00409{left:634.050000px;}
.xb9_c00409{left:636.450000px;}
.x12a_c00409{left:638.250000px;}
.x11c_c00409{left:639.900000px;}
.xb0_c00409{left:645.150000px;}
.xc5_c00409{left:648.600000px;}
.xb8_c00409{left:649.650000px;}
.xcb_c00409{left:652.200000px;}
.xba_c00409{left:655.500000px;}
.x115_c00409{left:656.850000px;}
.xfe_c00409{left:659.100000px;}
.xee_c00409{left:660.600000px;}
.xcc_c00409{left:662.250000px;}
.xa2_c00409{left:665.250000px;}
.xab_c00409{left:667.500000px;}
.xfa_c00409{left:669.750000px;}
.x10a_c00409{left:670.800000px;}
.xb1_c00409{left:672.900000px;}
.x9c_c00409{left:675.000000px;}
.xda_c00409{left:676.200000px;}
.x10f_c00409{left:677.250000px;}
.xc0_c00409{left:679.200000px;}
.x11d_c00409{left:681.300000px;}
.xd4_c00409{left:683.250000px;}
.xc6_c00409{left:684.600000px;}
.x119_c00409{left:689.250000px;}
.xa3_c00409{left:692.250000px;}
.xf4_c00409{left:693.300000px;}
.xeb_c00409{left:695.100000px;}
.xef_c00409{left:697.650000px;}
.xc1_c00409{left:701.850000px;}
.xcd_c00409{left:707.550000px;}
.x104_c00409{left:709.200000px;}
.x9d_c00409{left:711.000000px;}
.xfc_c00409{left:713.850000px;}
.xc7_c00409{left:715.200000px;}
.xa4_c00409{left:718.200000px;}
.xde_c00409{left:719.550000px;}
.xff_c00409{left:720.600000px;}
.xe1_c00409{left:722.100000px;}
.xbb_c00409{left:724.200000px;}
.xb2_c00409{left:728.700000px;}
.xac_c00409{left:730.800000px;}
.xdb_c00409{left:732.750000px;}
.xe7_c00409{left:734.400000px;}
.x116_c00409{left:735.750000px;}
.x11f_c00409{left:736.800000px;}
.xdf_c00409{left:740.850000px;}
.xb3_c00409{left:744.150000px;}
.xfd_c00409{left:747.750000px;}
.xa5_c00409{left:750.600000px;}
.x120_c00409{left:752.250000px;}
.x105_c00409{left:755.250000px;}
.xc2_c00409{left:756.600000px;}
.x123_c00409{left:757.950000px;}
.xbc_c00409{left:760.200000px;}
.xe8_c00409{left:763.200000px;}
.xf0_c00409{left:764.250000px;}
.xd5_c00409{left:765.600000px;}
.xc3_c00409{left:768.900000px;}
.xb4_c00409{left:772.200000px;}
.x127_c00409{left:774.000000px;}
.x117_c00409{left:775.650000px;}
.xe2_c00409{left:778.200000px;}
.xe0_c00409{left:783.000000px;}
.x9e_c00409{left:784.800000px;}
.x112_c00409{left:789.000000px;}
.xd0_c00409{left:791.850000px;}
.xc8_c00409{left:793.200000px;}
.xd6_c00409{left:794.700000px;}
.x107_c00409{left:796.350000px;}
.xbd_c00409{left:798.000000px;}
.xec_c00409{left:799.200000px;}
.x12b_c00409{left:800.550000px;}
.x12d_c00409{left:801.900000px;}
.x124_c00409{left:802.950000px;}
.xce_c00409{left:805.200000px;}
.xa6_c00409{left:807.000000px;}
.xe3_c00409{left:808.050000px;}
.x101_c00409{left:810.300000px;}
.xf5_c00409{left:812.400000px;}
.xf2_c00409{left:813.750000px;}
.xdc_c00409{left:815.250000px;}
.x121_c00409{left:816.300000px;}
.xd7_c00409{left:818.850000px;}
.x12c_c00409{left:821.100000px;}
.xa7_c00409{left:823.500000px;}
.xfb_c00409{left:824.850000px;}
.xd1_c00409{left:826.350000px;}
.xf3_c00409{left:834.600000px;}
.xc9_c00409{left:837.900000px;}
.xad_c00409{left:839.850000px;}
.xf1_c00409{left:843.450000px;}
.x10c_c00409{left:844.650000px;}
.xed_c00409{left:846.000000px;}
.xa8_c00409{left:849.750000px;}
.xd8_c00409{left:851.550000px;}
.x108_c00409{left:853.200000px;}
.x102_c00409{left:855.000000px;}
.xb5_c00409{left:856.500000px;}
.x10d_c00409{left:857.550000px;}
.xc4_c00409{left:861.000000px;}
.xd2_c00409{left:862.800000px;}
.xf6_c00409{left:864.300000px;}
.x9f_c00409{left:867.300000px;}
.x11e_c00409{left:869.550000px;}
.xe4_c00409{left:870.750000px;}
.x11a_c00409{left:871.800000px;}
.xcf_c00409{left:873.900000px;}
.xf7_c00409{left:876.600000px;}
.x111_c00409{left:880.200000px;}
.x113_c00409{left:885.150000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws3_c00409{word-spacing:-5.745257pt;}
.ws4_c00409{word-spacing:-5.476190pt;}
.ws5_c00409{word-spacing:-2.777778pt;}
.ws7_c00409{word-spacing:0.000000pt;}
.ws0_c00409{word-spacing:2.850020pt;}
.ws2_c00409{word-spacing:10.336029pt;}
.ws6_c00409{word-spacing:10.358152pt;}
.ws1_c00409{word-spacing:10.555556pt;}
.fs5_c00409{font-size:32.000000pt;}
.fs3_c00409{font-size:48.000000pt;}
.fs1_c00409{font-size:53.333333pt;}
.fs2_c00409{font-size:58.666667pt;}
.fs4_c00409{font-size:64.000000pt;}
.fs0_c00409{font-size:69.333333pt;}
.y0_c00409{bottom:0.000000pt;}
.y61_c00409{bottom:177.600000pt;}
.y34_c00409{bottom:181.066667pt;}
.y60_c00409{bottom:190.666667pt;}
.y33_c00409{bottom:196.133333pt;}
.y5f_c00409{bottom:203.333333pt;}
.y32_c00409{bottom:215.333333pt;}
.y5e_c00409{bottom:215.866667pt;}
.y5d_c00409{bottom:228.666667pt;}
.y31_c00409{bottom:230.400000pt;}
.y5c_c00409{bottom:241.200000pt;}
.y30_c00409{bottom:246.133333pt;}
.y5b_c00409{bottom:254.000000pt;}
.y2f_c00409{bottom:261.866667pt;}
.y5a_c00409{bottom:266.533333pt;}
.y2e_c00409{bottom:277.600000pt;}
.y59_c00409{bottom:278.666667pt;}
.y2d_c00409{bottom:293.333333pt;}
.y2c_c00409{bottom:309.066667pt;}
.y58_c00409{bottom:319.466667pt;}
.y2b_c00409{bottom:324.800000pt;}
.y57_c00409{bottom:335.733333pt;}
.y2a_c00409{bottom:343.866667pt;}
.y56_c00409{bottom:351.733333pt;}
.y29_c00409{bottom:361.200000pt;}
.y55_c00409{bottom:367.733333pt;}
.y28_c00409{bottom:377.200000pt;}
.y54_c00409{bottom:383.733333pt;}
.y27_c00409{bottom:392.933333pt;}
.y53_c00409{bottom:399.733333pt;}
.y26_c00409{bottom:411.733333pt;}
.y25_c00409{bottom:429.066667pt;}
.y51_c00409{bottom:430.000000pt;}
.y52_c00409{bottom:444.533333pt;}
.y24_c00409{bottom:444.800000pt;}
.y50_c00409{bottom:452.133333pt;}
.y23_c00409{bottom:463.333333pt;}
.y4f_c00409{bottom:475.733333pt;}
.y22_c00409{bottom:480.000000pt;}
.y4e_c00409{bottom:491.466667pt;}
.y21_c00409{bottom:503.600000pt;}
.y20_c00409{bottom:520.266667pt;}
.y4d_c00409{bottom:522.533333pt;}
.y1f_c00409{bottom:535.733333pt;}
.y1e_c00409{bottom:552.000000pt;}
.y4c_c00409{bottom:554.533333pt;}
.y1d_c00409{bottom:567.733333pt;}
.y4b_c00409{bottom:570.533333pt;}
.y1c_c00409{bottom:586.800000pt;}
.y4a_c00409{bottom:602.666667pt;}
.y1b_c00409{bottom:603.466667pt;}
.y49_c00409{bottom:618.933333pt;}
.y1a_c00409{bottom:619.200000pt;}
.y19_c00409{bottom:638.400000pt;}
.y48_c00409{bottom:654.133333pt;}
.y18_c00409{bottom:654.666667pt;}
.y47_c00409{bottom:673.866667pt;}
.y17_c00409{bottom:678.933333pt;}
.y46_c00409{bottom:689.866667pt;}
.y16_c00409{bottom:694.933333pt;}
.y15_c00409{bottom:710.933333pt;}
.y45_c00409{bottom:721.333333pt;}
.y14_c00409{bottom:726.933333pt;}
.y13_c00409{bottom:742.666667pt;}
.y44_c00409{bottom:753.600000pt;}
.y12_c00409{bottom:758.666667pt;}
.y43_c00409{bottom:769.333333pt;}
.y11_c00409{bottom:774.000000pt;}
.y42_c00409{bottom:785.466667pt;}
.y10_c00409{bottom:790.933333pt;}
.y41_c00409{bottom:801.200000pt;}
.yf_c00409{bottom:806.666667pt;}
.y40_c00409{bottom:817.200000pt;}
.ye_c00409{bottom:822.666667pt;}
.y3f_c00409{bottom:833.200000pt;}
.yd_c00409{bottom:838.666667pt;}
.y3e_c00409{bottom:848.933333pt;}
.yc_c00409{bottom:854.400000pt;}
.y3d_c00409{bottom:864.933333pt;}
.yb_c00409{bottom:870.400000pt;}
.y3c_c00409{bottom:880.933333pt;}
.ya_c00409{bottom:886.133333pt;}
.y3b_c00409{bottom:896.666667pt;}
.y9_c00409{bottom:902.133333pt;}
.y3a_c00409{bottom:912.666667pt;}
.y8_c00409{bottom:916.933333pt;}
.y39_c00409{bottom:932.533333pt;}
.y7_c00409{bottom:933.866667pt;}
.y38_c00409{bottom:948.533333pt;}
.y6_c00409{bottom:950.133333pt;}
.y37_c00409{bottom:964.400000pt;}
.y5_c00409{bottom:965.466667pt;}
.y36_c00409{bottom:984.266667pt;}
.y4_c00409{bottom:984.666667pt;}
.y35_c00409{bottom:999.333333pt;}
.y3_c00409{bottom:1000.666667pt;}
.y1_c00409{bottom:1023.733333pt;}
.y2_c00409{bottom:1024.666667pt;}
.h7_c00409{height:32.000000pt;}
.h5_c00409{height:48.000000pt;}
.h3_c00409{height:53.333333pt;}
.h4_c00409{height:58.666667pt;}
.h6_c00409{height:64.000000pt;}
.h2_c00409{height:69.333333pt;}
.h1_c00409{height:1128.666667pt;}
.h0_c00409{height:1128.960043pt;}
.w0_c00409{width:853.760009pt;}
.w1_c00409{width:854.000000pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:171.200000pt;}
.x15_c00409{left:172.133333pt;}
.x27_c00409{left:173.066667pt;}
.x5f_c00409{left:175.733333pt;}
.x70_c00409{left:176.933333pt;}
.x7e_c00409{left:178.266667pt;}
.x85_c00409{left:179.466667pt;}
.x98_c00409{left:182.666667pt;}
.x3_c00409{left:188.133333pt;}
.xc_c00409{left:189.600000pt;}
.x62_c00409{left:190.533333pt;}
.x68_c00409{left:192.666667pt;}
.x77_c00409{left:194.400000pt;}
.x8c_c00409{left:196.000000pt;}
.x8e_c00409{left:197.066667pt;}
.x8a_c00409{left:198.266667pt;}
.x7f_c00409{left:199.733333pt;}
.x5d_c00409{left:204.666667pt;}
.x4b_c00409{left:205.733333pt;}
.x26_c00409{left:207.466667pt;}
.xd_c00409{left:209.466667pt;}
.x4_c00409{left:210.533333pt;}
.x21_c00409{left:211.866667pt;}
.x16_c00409{left:212.800000pt;}
.x56_c00409{left:215.466667pt;}
.x74_c00409{left:216.666667pt;}
.x3e_c00409{left:218.533333pt;}
.x45_c00409{left:221.200000pt;}
.x7d_c00409{left:225.466667pt;}
.x73_c00409{left:226.533333pt;}
.x39_c00409{left:228.000000pt;}
.x31_c00409{left:230.133333pt;}
.x5b_c00409{left:233.733333pt;}
.x99_c00409{left:235.066667pt;}
.x81_c00409{left:236.666667pt;}
.x3a_c00409{left:238.533333pt;}
.xe_c00409{left:240.133333pt;}
.x4c_c00409{left:244.133333pt;}
.x7b_c00409{left:246.266667pt;}
.x1b_c00409{left:247.466667pt;}
.x78_c00409{left:248.400000pt;}
.x35_c00409{left:249.733333pt;}
.x75_c00409{left:251.600000pt;}
.x32_c00409{left:253.200000pt;}
.x44_c00409{left:255.866667pt;}
.x22_c00409{left:257.733333pt;}
.x2d_c00409{left:259.600000pt;}
.x8d_c00409{left:261.066667pt;}
.x60_c00409{left:262.533333pt;}
.x1c_c00409{left:263.733333pt;}
.x4d_c00409{left:264.666667pt;}
.x86_c00409{left:268.800000pt;}
.x17_c00409{left:270.133333pt;}
.x5_c00409{left:271.333333pt;}
.xf_c00409{left:273.066667pt;}
.x69_c00409{left:277.466667pt;}
.x6_c00409{left:281.600000pt;}
.x79_c00409{left:283.333333pt;}
.x10_c00409{left:286.800000pt;}
.x46_c00409{left:290.666667pt;}
.x6a_c00409{left:291.600000pt;}
.x65_c00409{left:292.800000pt;}
.x57_c00409{left:295.200000pt;}
.x3f_c00409{left:297.466667pt;}
.x23_c00409{left:299.333333pt;}
.x1d_c00409{left:300.533333pt;}
.x47_c00409{left:303.466667pt;}
.x8f_c00409{left:304.800000pt;}
.x28_c00409{left:306.133333pt;}
.x6f_c00409{left:307.600000pt;}
.x58_c00409{left:309.600000pt;}
.x82_c00409{left:311.200000pt;}
.x7a_c00409{left:312.133333pt;}
.x54_c00409{left:313.200000pt;}
.x7_c00409{left:314.266667pt;}
.x11_c00409{left:315.333333pt;}
.x5e_c00409{left:318.133333pt;}
.x24_c00409{left:320.400000pt;}
.x52_c00409{left:322.133333pt;}
.x18_c00409{left:324.800000pt;}
.x48_c00409{left:327.200000pt;}
.x3b_c00409{left:328.400000pt;}
.x33_c00409{left:329.733333pt;}
.x94_c00409{left:331.733333pt;}
.x71_c00409{left:333.466667pt;}
.x4e_c00409{left:336.533333pt;}
.x29_c00409{left:342.933333pt;}
.x12_c00409{left:346.000000pt;}
.x90_c00409{left:348.000000pt;}
.x59_c00409{left:349.866667pt;}
.x6b_c00409{left:352.133333pt;}
.x40_c00409{left:353.733333pt;}
.x87_c00409{left:356.133333pt;}
.x2a_c00409{left:357.066667pt;}
.x95_c00409{left:360.800000pt;}
.x4f_c00409{left:361.866667pt;}
.x2e_c00409{left:363.333333pt;}
.x36_c00409{left:364.266667pt;}
.x13_c00409{left:365.466667pt;}
.x61_c00409{left:366.533333pt;}
.x6c_c00409{left:368.000000pt;}
.x53_c00409{left:369.200000pt;}
.x3c_c00409{left:371.866667pt;}
.x2f_c00409{left:373.600000pt;}
.x41_c00409{left:374.800000pt;}
.x1e_c00409{left:376.666667pt;}
.x8_c00409{left:378.000000pt;}
.x14_c00409{left:379.200000pt;}
.x72_c00409{left:380.533333pt;}
.x88_c00409{left:385.866667pt;}
.x64_c00409{left:387.466667pt;}
.x1f_c00409{left:388.800000pt;}
.x2_c00409{left:390.133333pt;}
.x92_c00409{left:391.200000pt;}
.x3d_c00409{left:396.133333pt;}
.x66_c00409{left:398.666667pt;}
.x9_c00409{left:400.133333pt;}
.x55_c00409{left:401.866667pt;}
.x89_c00409{left:402.800000pt;}
.x6e_c00409{left:404.133333pt;}
.x19_c00409{left:407.733333pt;}
.x42_c00409{left:410.000000pt;}
.x34_c00409{left:412.000000pt;}
.x2b_c00409{left:415.333333pt;}
.x37_c00409{left:417.066667pt;}
.xa_c00409{left:420.666667pt;}
.x76_c00409{left:421.866667pt;}
.x25_c00409{left:423.466667pt;}
.x49_c00409{left:427.066667pt;}
.x93_c00409{left:428.000000pt;}
.x30_c00409{left:428.933333pt;}
.x8b_c00409{left:430.933333pt;}
.x91_c00409{left:433.066667pt;}
.x38_c00409{left:434.400000pt;}
.x50_c00409{left:435.733333pt;}
.x1a_c00409{left:439.466667pt;}
.x67_c00409{left:441.600000pt;}
.x20_c00409{left:442.533333pt;}
.x5a_c00409{left:446.266667pt;}
.xb_c00409{left:447.200000pt;}
.x96_c00409{left:448.133333pt;}
.x84_c00409{left:449.333333pt;}
.x6d_c00409{left:450.533333pt;}
.x43_c00409{left:452.933333pt;}
.x2c_c00409{left:455.066667pt;}
.x63_c00409{left:457.066667pt;}
.x51_c00409{left:459.466667pt;}
.x4a_c00409{left:462.533333pt;}
.x97_c00409{left:465.200000pt;}
.x7c_c00409{left:466.400000pt;}
.x80_c00409{left:467.733333pt;}
.x5c_c00409{left:468.933333pt;}
.x83_c00409{left:472.533333pt;}
.xa9_c00409{left:489.066667pt;}
.xea_c00409{left:491.466667pt;}
.x100_c00409{left:493.066667pt;}
.xf9_c00409{left:494.133333pt;}
.x118_c00409{left:495.200000pt;}
.x125_c00409{left:497.066667pt;}
.xa0_c00409{left:504.000000pt;}
.xae_c00409{left:505.333333pt;}
.xe5_c00409{left:506.266667pt;}
.x103_c00409{left:509.466667pt;}
.x110_c00409{left:510.533333pt;}
.x122_c00409{left:516.933333pt;}
.x11b_c00409{left:518.266667pt;}
.x9a_c00409{left:520.933333pt;}
.xbe_c00409{left:522.666667pt;}
.x10b_c00409{left:525.466667pt;}
.xdd_c00409{left:528.533333pt;}
.xb6_c00409{left:531.600000pt;}
.xaa_c00409{left:532.533333pt;}
.x106_c00409{left:533.466667pt;}
.xd3_c00409{left:535.333333pt;}
.xf8_c00409{left:538.666667pt;}
.x114_c00409{left:539.733333pt;}
.xca_c00409{left:542.266667pt;}
.xe9_c00409{left:543.733333pt;}
.xb7_c00409{left:547.333333pt;}
.x10e_c00409{left:550.133333pt;}
.x128_c00409{left:551.200000pt;}
.xd9_c00409{left:552.400000pt;}
.xbf_c00409{left:554.400000pt;}
.xe6_c00409{left:555.600000pt;}
.xa1_c00409{left:557.466667pt;}
.x129_c00409{left:558.400000pt;}
.xaf_c00409{left:559.733333pt;}
.x9b_c00409{left:560.666667pt;}
.x126_c00409{left:562.400000pt;}
.x109_c00409{left:563.600000pt;}
.xb9_c00409{left:565.733333pt;}
.x12a_c00409{left:567.333333pt;}
.x11c_c00409{left:568.800000pt;}
.xb0_c00409{left:573.466667pt;}
.xc5_c00409{left:576.533333pt;}
.xb8_c00409{left:577.466667pt;}
.xcb_c00409{left:579.733333pt;}
.xba_c00409{left:582.666667pt;}
.x115_c00409{left:583.866667pt;}
.xfe_c00409{left:585.866667pt;}
.xee_c00409{left:587.200000pt;}
.xcc_c00409{left:588.666667pt;}
.xa2_c00409{left:591.333333pt;}
.xab_c00409{left:593.333333pt;}
.xfa_c00409{left:595.333333pt;}
.x10a_c00409{left:596.266667pt;}
.xb1_c00409{left:598.133333pt;}
.x9c_c00409{left:600.000000pt;}
.xda_c00409{left:601.066667pt;}
.x10f_c00409{left:602.000000pt;}
.xc0_c00409{left:603.733333pt;}
.x11d_c00409{left:605.600000pt;}
.xd4_c00409{left:607.333333pt;}
.xc6_c00409{left:608.533333pt;}
.x119_c00409{left:612.666667pt;}
.xa3_c00409{left:615.333333pt;}
.xf4_c00409{left:616.266667pt;}
.xeb_c00409{left:617.866667pt;}
.xef_c00409{left:620.133333pt;}
.xc1_c00409{left:623.866667pt;}
.xcd_c00409{left:628.933333pt;}
.x104_c00409{left:630.400000pt;}
.x9d_c00409{left:632.000000pt;}
.xfc_c00409{left:634.533333pt;}
.xc7_c00409{left:635.733333pt;}
.xa4_c00409{left:638.400000pt;}
.xde_c00409{left:639.600000pt;}
.xff_c00409{left:640.533333pt;}
.xe1_c00409{left:641.866667pt;}
.xbb_c00409{left:643.733333pt;}
.xb2_c00409{left:647.733333pt;}
.xac_c00409{left:649.600000pt;}
.xdb_c00409{left:651.333333pt;}
.xe7_c00409{left:652.800000pt;}
.x116_c00409{left:654.000000pt;}
.x11f_c00409{left:654.933333pt;}
.xdf_c00409{left:658.533333pt;}
.xb3_c00409{left:661.466667pt;}
.xfd_c00409{left:664.666667pt;}
.xa5_c00409{left:667.200000pt;}
.x120_c00409{left:668.666667pt;}
.x105_c00409{left:671.333333pt;}
.xc2_c00409{left:672.533333pt;}
.x123_c00409{left:673.733333pt;}
.xbc_c00409{left:675.733333pt;}
.xe8_c00409{left:678.400000pt;}
.xf0_c00409{left:679.333333pt;}
.xd5_c00409{left:680.533333pt;}
.xc3_c00409{left:683.466667pt;}
.xb4_c00409{left:686.400000pt;}
.x127_c00409{left:688.000000pt;}
.x117_c00409{left:689.466667pt;}
.xe2_c00409{left:691.733333pt;}
.xe0_c00409{left:696.000000pt;}
.x9e_c00409{left:697.600000pt;}
.x112_c00409{left:701.333333pt;}
.xd0_c00409{left:703.866667pt;}
.xc8_c00409{left:705.066667pt;}
.xd6_c00409{left:706.400000pt;}
.x107_c00409{left:707.866667pt;}
.xbd_c00409{left:709.333333pt;}
.xec_c00409{left:710.400000pt;}
.x12b_c00409{left:711.600000pt;}
.x12d_c00409{left:712.800000pt;}
.x124_c00409{left:713.733333pt;}
.xce_c00409{left:715.733333pt;}
.xa6_c00409{left:717.333333pt;}
.xe3_c00409{left:718.266667pt;}
.x101_c00409{left:720.266667pt;}
.xf5_c00409{left:722.133333pt;}
.xf2_c00409{left:723.333333pt;}
.xdc_c00409{left:724.666667pt;}
.x121_c00409{left:725.600000pt;}
.xd7_c00409{left:727.866667pt;}
.x12c_c00409{left:729.866667pt;}
.xa7_c00409{left:732.000000pt;}
.xfb_c00409{left:733.200000pt;}
.xd1_c00409{left:734.533333pt;}
.xf3_c00409{left:741.866667pt;}
.xc9_c00409{left:744.800000pt;}
.xad_c00409{left:746.533333pt;}
.xf1_c00409{left:749.733333pt;}
.x10c_c00409{left:750.800000pt;}
.xed_c00409{left:752.000000pt;}
.xa8_c00409{left:755.333333pt;}
.xd8_c00409{left:756.933333pt;}
.x108_c00409{left:758.400000pt;}
.x102_c00409{left:760.000000pt;}
.xb5_c00409{left:761.333333pt;}
.x10d_c00409{left:762.266667pt;}
.xc4_c00409{left:765.333333pt;}
.xd2_c00409{left:766.933333pt;}
.xf6_c00409{left:768.266667pt;}
.x9f_c00409{left:770.933333pt;}
.x11e_c00409{left:772.933333pt;}
.xe4_c00409{left:774.000000pt;}
.x11a_c00409{left:774.933333pt;}
.xcf_c00409{left:776.800000pt;}
.xf7_c00409{left:779.200000pt;}
.x111_c00409{left:782.400000pt;}
.x113_c00409{left:786.800000pt;}
}





/* 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_c00410 {
    display:none;
  }
  .loading-indicator_c00410.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00410 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_c00410 { 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_c00410" -> "#page-container .classname_c00410")
 */
.pf_c00410 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00410 { /* 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_c00410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00410 { /* 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_c00410 { /* 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_c00410 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00410 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00410 {overflow:visible;}
  }
}
.c_c00410 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00410 { /* 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_c00410:after { /* webkit #35443 */
  content: '';
}
.t_c00410:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00410 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 */
}
.__c00410 { /* 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_c00410 { /* info for Javascript */
  display:none;
}
.l_c00410 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00410 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00410 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00410: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_c00410 {
    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_c00410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00410.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_c00410 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00410{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00410;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.000000;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;}
.mc5_c00410{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m96_c00410{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.me4_c00410{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mde_c00410{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me9_c00410{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mca_c00410{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00410{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00410{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00410{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00410{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00410{transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);}
.m48_c00410{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00410{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00410{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m84_c00410{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00410{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00410{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.me8_c00410{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.me_c00410{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00410{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00410{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md9_c00410{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m44_c00410{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00410{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00410{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00410{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.md7_c00410{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m114_c00410{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00410{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.md2_c00410{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me6_c00410{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00410{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00410{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m112_c00410{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00410{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00410{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.maa_c00410{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00410{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00410{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00410{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00410{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m115_c00410{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m93_c00410{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00410{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00410{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m79_c00410{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00410{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00410{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m113_c00410{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00410{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00410{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00410{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m70_c00410{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00410{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00410{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00410{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m83_c00410{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00410{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00410{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m119_c00410{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m108_c00410{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m87_c00410{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00410{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m24_c00410{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00410{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m111_c00410{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00410{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00410{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00410{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m28_c00410{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00410{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m91_c00410{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00410{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00410{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00410{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m89_c00410{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m62_c00410{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m88_c00410{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00410{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mda_c00410{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m61_c00410{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m32_c00410{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00410{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00410{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00410{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00410{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00410{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00410{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00410{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md4_c00410{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00410{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m14_c00410{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m66_c00410{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m52_c00410{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00410{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00410{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m94_c00410{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m78_c00410{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00410{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00410{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00410{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m58_c00410{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m69_c00410{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00410{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m72_c00410{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m29_c00410{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00410{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m68_c00410{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m20_c00410{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m76_c00410{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m50_c00410{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00410{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00410{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00410{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m51_c00410{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me1_c00410{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m109_c00410{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m30_c00410{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me0_c00410{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00410{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00410{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m38_c00410{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m65_c00410{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m49_c00410{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m80_c00410{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00410{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00410{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m39_c00410{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m64_c00410{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00410{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00410{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00410{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00410{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m59_c00410{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00410{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m67_c00410{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md_c00410{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00410{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00410{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00410{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8_c00410{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mff_c00410{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m75_c00410{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m15_c00410{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m22_c00410{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m99_c00410{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m26_c00410{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m56_c00410{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00410{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m16_c00410{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m42_c00410{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m18_c00410{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m63_c00410{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m31_c00410{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m85_c00410{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00410{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m81_c00410{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00410{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md3_c00410{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mce_c00410{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me2_c00410{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mee_c00410{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m6_c00410{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m118_c00410{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m54_c00410{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md0_c00410{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m110_c00410{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb_c00410{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.meb_c00410{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m53_c00410{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m45_c00410{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00410{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m116_c00410{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m60_c00410{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00410{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me3_c00410{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m77_c00410{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5_c00410{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00410{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m27_c00410{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me7_c00410{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m12_c00410{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00410{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m71_c00410{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00410{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00410{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m46_c00410{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00410{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m40_c00410{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00410{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m86_c00410{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma_c00410{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.med_c00410{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00410{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m34_c00410{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00410{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m37_c00410{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3_c00410{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m92_c00410{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.md5_c00410{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00410{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m103_c00410{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00410{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00410{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00410{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf_c00410{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1_c00410{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m23_c00410{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m11_c00410{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m17_c00410{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7_c00410{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md1_c00410{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00410{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mc_c00410{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00410{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m13_c00410{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m43_c00410{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m25_c00410{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m102_c00410{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m107_c00410{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mae_c00410{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00410{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m100_c00410{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00410{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m73_c00410{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m36_c00410{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10_c00410{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00410{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m82_c00410{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00410{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00410{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m90_c00410{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00410{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00410{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00410{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m21_c00410{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m104_c00410{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m35_c00410{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00410{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00410{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m95_c00410{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00410{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m33_c00410{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m106_c00410{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m98_c00410{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mef_c00410{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m41_c00410{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00410{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00410{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m74_c00410{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m47_c00410{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00410{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4_c00410{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m55_c00410{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mad_c00410{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00410{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00410{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00410{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00410{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00410{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mba_c00410{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m105_c00410{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m117_c00410{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.md8_c00410{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00410{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m101_c00410{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00410{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m57_c00410{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m97_c00410{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.me5_c00410{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.md6_c00410{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m19_c00410{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00410{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00410{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00410{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00410{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.maf_c00410{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mab_c00410{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m2_c00410{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m120_c00410{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00410{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00410{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00410{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00410{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m0_c00410{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mea_c00410{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00410{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mec_c00410{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.mac_c00410{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls1_c00410{letter-spacing:0.000000px;}
.ls0_c00410{letter-spacing:52.142857px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{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__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00410{word-spacing:-82.142857px;}
.ws9_c00410{word-spacing:0.000000px;}
.ws7_c00410{word-spacing:15.000000px;}
.ws1_c00410{word-spacing:25.714286px;}
.ws6_c00410{word-spacing:29.285714px;}
.ws3_c00410{word-spacing:35.833333px;}
.ws0_c00410{word-spacing:44.166667px;}
.ws4_c00410{word-spacing:65.000000px;}
.ws5_c00410{word-spacing:66.315789px;}
.ws8_c00410{word-spacing:167.500000px;}
._0_c00410{margin-left:-52.142857px;}
._3_c00410{width:52.142857px;}
._2_c00410{width:74.166667px;}
._1_c00410{width:80.416667px;}
.fc0_c00410{color:transparent;}
.fs6_c00410{font-size:24.000000px;}
.fs7_c00410{font-size:30.000000px;}
.fs8_c00410{font-size:36.000000px;}
.fs4_c00410{font-size:54.000000px;}
.fs2_c00410{font-size:60.000000px;}
.fs3_c00410{font-size:66.000000px;}
.fs5_c00410{font-size:72.000000px;}
.fs0_c00410{font-size:78.000000px;}
.fs1_c00410{font-size:84.000000px;}
.y0_c00410{bottom:0.000000px;}
.y6a_c00410{bottom:193.200000px;}
.y32_c00410{bottom:198.000000px;}
.y69_c00410{bottom:211.200000px;}
.y31_c00410{bottom:215.700000px;}
.y68_c00410{bottom:229.200000px;}
.y67_c00410{bottom:247.200000px;}
.y30_c00410{bottom:247.350000px;}
.y66_c00410{bottom:264.900000px;}
.y2f_c00410{bottom:274.350000px;}
.y65_c00410{bottom:291.900000px;}
.y2e_c00410{bottom:300.300000px;}
.y64_c00410{bottom:309.900000px;}
.y2d_c00410{bottom:322.200000px;}
.y63_c00410{bottom:331.800000px;}
.y2c_c00410{bottom:342.300000px;}
.y62_c00410{bottom:349.800000px;}
.y2b_c00410{bottom:358.500000px;}
.y61_c00410{bottom:367.500000px;}
.y2a_c00410{bottom:380.550000px;}
.y60_c00410{bottom:385.500000px;}
.y29_c00410{bottom:390.300000px;}
.y28_c00410{bottom:398.550000px;}
.y5f_c00410{bottom:403.200000px;}
.y27_c00410{bottom:420.750000px;}
.y5e_c00410{bottom:421.500000px;}
.y26_c00410{bottom:438.450000px;}
.y5d_c00410{bottom:439.500000px;}
.y25_c00410{bottom:455.700000px;}
.y5c_c00410{bottom:457.200000px;}
.y5b_c00410{bottom:475.200000px;}
.y24_c00410{bottom:477.600000px;}
.y23_c00410{bottom:495.600000px;}
.y58_c00410{bottom:502.200000px;}
.y22_c00410{bottom:513.600000px;}
.y57_c00410{bottom:520.200000px;}
.y21_c00410{bottom:531.300000px;}
.y56_c00410{bottom:539.850000px;}
.y20_c00410{bottom:549.300000px;}
.y55_c00410{bottom:554.550000px;}
.y1f_c00410{bottom:567.000000px;}
.y54_c00410{bottom:568.650000px;}
.y59_c00410{bottom:579.600000px;}
.y53_c00410{bottom:583.050000px;}
.y1e_c00410{bottom:585.000000px;}
.y5a_c00410{bottom:590.100000px;}
.y52_c00410{bottom:598.200000px;}
.y1d_c00410{bottom:602.700000px;}
.y51_c00410{bottom:612.300000px;}
.y1c_c00410{bottom:620.700000px;}
.y50_c00410{bottom:626.850000px;}
.y1b_c00410{bottom:638.700000px;}
.y4f_c00410{bottom:641.250000px;}
.y4e_c00410{bottom:655.950000px;}
.y1a_c00410{bottom:660.900000px;}
.y4d_c00410{bottom:670.350000px;}
.y19_c00410{bottom:678.600000px;}
.y4c_c00410{bottom:684.300000px;}
.y18_c00410{bottom:696.600000px;}
.y4b_c00410{bottom:698.700000px;}
.y4a_c00410{bottom:713.100000px;}
.y17_c00410{bottom:718.200000px;}
.y49_c00410{bottom:727.500000px;}
.y16_c00410{bottom:740.550000px;}
.y48_c00410{bottom:741.600000px;}
.y47_c00410{bottom:756.300000px;}
.y15_c00410{bottom:762.900000px;}
.y46_c00410{bottom:770.700000px;}
.y14_c00410{bottom:780.900000px;}
.y45_c00410{bottom:784.800000px;}
.y44_c00410{bottom:799.200000px;}
.y13_c00410{bottom:802.800000px;}
.y43_c00410{bottom:813.900000px;}
.y12_c00410{bottom:820.800000px;}
.y42_c00410{bottom:828.000000px;}
.y11_c00410{bottom:842.700000px;}
.y41_c00410{bottom:862.950000px;}
.y10_c00410{bottom:865.200000px;}
.y40_c00410{bottom:880.950000px;}
.yf_c00410{bottom:883.500000px;}
.y3f_c00410{bottom:899.700000px;}
.ye_c00410{bottom:901.500000px;}
.y3e_c00410{bottom:916.200000px;}
.yd_c00410{bottom:923.400000px;}
.y3d_c00410{bottom:937.800000px;}
.yc_c00410{bottom:946.050000px;}
.y3c_c00410{bottom:956.100000px;}
.yb_c00410{bottom:964.050000px;}
.y3b_c00410{bottom:974.100000px;}
.ya_c00410{bottom:982.050000px;}
.y3a_c00410{bottom:991.800000px;}
.y9_c00410{bottom:999.750000px;}
.y39_c00410{bottom:1009.500000px;}
.y8_c00410{bottom:1018.050000px;}
.y38_c00410{bottom:1027.500000px;}
.y7_c00410{bottom:1044.300000px;}
.y37_c00410{bottom:1044.750000px;}
.y6_c00410{bottom:1062.300000px;}
.y36_c00410{bottom:1063.050000px;}
.y5_c00410{bottom:1080.000000px;}
.y35_c00410{bottom:1081.050000px;}
.y4_c00410{bottom:1098.000000px;}
.y34_c00410{bottom:1099.050000px;}
.y3_c00410{bottom:1116.000000px;}
.y33_c00410{bottom:1116.750000px;}
.y2_c00410{bottom:1141.200000px;}
.y1_c00410{bottom:1143.300000px;}
.y6b_c00410{bottom:1261.500000px;}
.h8_c00410{height:24.000000px;}
.h9_c00410{height:30.000000px;}
.ha_c00410{height:36.000000px;}
.h6_c00410{height:54.000000px;}
.h4_c00410{height:60.000000px;}
.h5_c00410{height:66.000000px;}
.h7_c00410{height:72.000000px;}
.h2_c00410{height:78.000000px;}
.h3_c00410{height:84.000000px;}
.h0_c00410{height:1266.480010px;}
.h1_c00410{height:1266.750000px;}
.w0_c00410{width:960.480010px;}
.w1_c00410{width:960.750000px;}
.x0_c00410{left:0.000000px;}
.x8c_c00410{left:55.500000px;}
.x8e_c00410{left:57.900000px;}
.x8f_c00410{left:74.550000px;}
.x72_c00410{left:77.850000px;}
.x6f_c00410{left:78.900000px;}
.x1d_c00410{left:80.100000px;}
.x4f_c00410{left:81.150000px;}
.xb_c00410{left:82.350000px;}
.x8a_c00410{left:87.450000px;}
.x86_c00410{left:92.550000px;}
.x81_c00410{left:93.600000px;}
.x7b_c00410{left:95.400000px;}
.x59_c00410{left:97.800000px;}
.x3_c00410{left:100.050000px;}
.x22_c00410{left:101.100000px;}
.x39_c00410{left:102.300000px;}
.x15_c00410{left:104.100000px;}
.x1e_c00410{left:110.700000px;}
.x87_c00410{left:112.050000px;}
.xc_c00410{left:114.000000px;}
.x29_c00410{left:115.500000px;}
.x8d_c00410{left:118.200000px;}
.x16_c00410{left:120.000000px;}
.x83_c00410{left:122.100000px;}
.x50_c00410{left:125.850000px;}
.x23_c00410{left:129.150000px;}
.x84_c00410{left:131.400000px;}
.x53_c00410{left:133.950000px;}
.x61_c00410{left:135.150000px;}
.x4_c00410{left:136.800000px;}
.x44_c00410{left:137.850000px;}
.xd_c00410{left:139.200000px;}
.x2d_c00410{left:140.700000px;}
.x52_c00410{left:141.750000px;}
.x68_c00410{left:143.400000px;}
.x1f_c00410{left:145.650000px;}
.x5a_c00410{left:148.950000px;}
.x3d_c00410{left:150.600000px;}
.x6a_c00410{left:153.600000px;}
.x45_c00410{left:156.000000px;}
.x88_c00410{left:158.400000px;}
.x17_c00410{left:162.150000px;}
.x24_c00410{left:163.350000px;}
.x36_c00410{left:167.550000px;}
.x51_c00410{left:169.800000px;}
.x5b_c00410{left:170.850000px;}
.x3e_c00410{left:172.500000px;}
.x10_c00410{left:174.000000px;}
.x65_c00410{left:175.950000px;}
.x46_c00410{left:178.350000px;}
.x89_c00410{left:181.050000px;}
.x37_c00410{left:182.700000px;}
.x25_c00410{left:184.200000px;}
.x2a_c00410{left:185.700000px;}
.x18_c00410{left:187.050000px;}
.x70_c00410{left:189.900000px;}
.x5_c00410{left:191.100000px;}
.x4a_c00410{left:194.250000px;}
.x7c_c00410{left:195.450000px;}
.x11_c00410{left:196.650000px;}
.x62_c00410{left:199.200000px;}
.x79_c00410{left:202.050000px;}
.x32_c00410{left:205.200000px;}
.x3f_c00410{left:207.000000px;}
.x5c_c00410{left:208.950000px;}
.x54_c00410{left:210.300000px;}
.x6_c00410{left:211.650000px;}
.xe_c00410{left:214.800000px;}
.x40_c00410{left:216.750000px;}
.x7d_c00410{left:218.550000px;}
.x78_c00410{left:220.050000px;}
.x3a_c00410{left:221.100000px;}
.x20_c00410{left:223.350000px;}
.x66_c00410{left:225.000000px;}
.x19_c00410{left:229.950000px;}
.x80_c00410{left:232.500000px;}
.x47_c00410{left:233.850000px;}
.x67_c00410{left:235.800000px;}
.x33_c00410{left:237.300000px;}
.x3b_c00410{left:240.600000px;}
.x12_c00410{left:242.400000px;}
.x69_c00410{left:247.350000px;}
.x38_c00410{left:249.600000px;}
.x5d_c00410{left:251.100000px;}
.x2b_c00410{left:253.350000px;}
.x6b_c00410{left:254.700000px;}
.x7_c00410{left:256.950000px;}
.x4b_c00410{left:259.800000px;}
.x71_c00410{left:261.150000px;}
.x13_c00410{left:263.250000px;}
.x7e_c00410{left:265.650000px;}
.x55_c00410{left:267.600000px;}
.x4c_c00410{left:270.900000px;}
.x75_c00410{left:273.150000px;}
.x2e_c00410{left:276.450000px;}
.xf_c00410{left:279.600000px;}
.x8b_c00410{left:280.800000px;}
.x21_c00410{left:282.000000px;}
.x60_c00410{left:283.800000px;}
.x63_c00410{left:286.200000px;}
.x8_c00410{left:287.850000px;}
.x41_c00410{left:289.050000px;}
.x73_c00410{left:291.450000px;}
.x3c_c00410{left:296.700000px;}
.x6c_c00410{left:298.050000px;}
.x26_c00410{left:299.850000px;}
.x2f_c00410{left:300.900000px;}
.x48_c00410{left:304.050000px;}
.x34_c00410{left:306.750000px;}
.x1_c00410{left:308.850000px;}
.x76_c00410{left:310.950000px;}
.x56_c00410{left:312.300000px;}
.x49_c00410{left:315.150000px;}
.x1a_c00410{left:325.650000px;}
.x57_c00410{left:328.200000px;}
.x4d_c00410{left:332.400000px;}
.x14_c00410{left:333.750000px;}
.x77_c00410{left:336.150000px;}
.x64_c00410{left:337.650000px;}
.x6d_c00410{left:338.700000px;}
.x85_c00410{left:339.900000px;}
.x1b_c00410{left:342.150000px;}
.x9_c00410{left:343.350000px;}
.x30_c00410{left:344.400000px;}
.x58_c00410{left:346.500000px;}
.x5e_c00410{left:350.850000px;}
.xa_c00410{left:355.650000px;}
.x4e_c00410{left:358.650000px;}
.x35_c00410{left:360.450000px;}
.x82_c00410{left:364.050000px;}
.x27_c00410{left:367.500000px;}
.x74_c00410{left:369.300000px;}
.x1c_c00410{left:370.650000px;}
.x42_c00410{left:372.900000px;}
.x6e_c00410{left:374.400000px;}
.x31_c00410{left:377.550000px;}
.x28_c00410{left:379.800000px;}
.x7f_c00410{left:385.500000px;}
.x2c_c00410{left:386.550000px;}
.x5f_c00410{left:387.900000px;}
.x7a_c00410{left:392.100000px;}
.x43_c00410{left:396.000000px;}
.x12c_c00410{left:416.100000px;}
.x113_c00410{left:417.900000px;}
.xea_c00410{left:419.400000px;}
.xd7_c00410{left:420.900000px;}
.x111_c00410{left:432.600000px;}
.xee_c00410{left:433.950000px;}
.x11f_c00410{left:435.150000px;}
.xd9_c00410{left:436.200000px;}
.xdf_c00410{left:437.700000px;}
.x97_c00410{left:439.200000px;}
.xae_c00410{left:440.400000px;}
.x100_c00410{left:442.950000px;}
.xf6_c00410{left:447.450000px;}
.xb8_c00410{left:449.250000px;}
.xaf_c00410{left:450.450000px;}
.x128_c00410{left:451.800000px;}
.xfa_c00410{left:456.450000px;}
.x90_c00410{left:458.250000px;}
.x122_c00410{left:460.350000px;}
.xc3_c00410{left:462.300000px;}
.xd0_c00410{left:463.500000px;}
.x98_c00410{left:465.150000px;}
.xb4_c00410{left:468.000000px;}
.x109_c00410{left:469.500000px;}
.xef_c00410{left:471.000000px;}
.xc4_c00410{left:473.100000px;}
.x12e_c00410{left:474.300000px;}
.x124_c00410{left:475.650000px;}
.xfb_c00410{left:477.000000px;}
.x117_c00410{left:478.050000px;}
.xe0_c00410{left:479.850000px;}
.x120_c00410{left:484.050000px;}
.xb9_c00410{left:485.250000px;}
.x11b_c00410{left:486.600000px;}
.xe4_c00410{left:487.650000px;}
.x11d_c00410{left:489.300000px;}
.xc5_c00410{left:490.800000px;}
.x10a_c00410{left:493.200000px;}
.xbe_c00410{left:494.250000px;}
.xa2_c00410{left:496.500000px;}
.xa9_c00410{left:497.700000px;}
.xda_c00410{left:498.900000px;}
.xe1_c00410{left:500.700000px;}
.x115_c00410{left:501.900000px;}
.x99_c00410{left:503.700000px;}
.x101_c00410{left:504.900000px;}
.xe5_c00410{left:507.150000px;}
.xc6_c00410{left:508.500000px;}
.x107_c00410{left:510.900000px;}
.x12b_c00410{left:515.250000px;}
.x125_c00410{left:518.100000px;}
.x11c_c00410{left:521.850000px;}
.x129_c00410{left:523.050000px;}
.x91_c00410{left:524.100000px;}
.x12f_c00410{left:525.150000px;}
.xba_c00410{left:526.350000px;}
.xa3_c00410{left:527.850000px;}
.x102_c00410{left:530.400000px;}
.xd8_c00410{left:532.500000px;}
.xd1_c00410{left:535.050000px;}
.xbf_c00410{left:538.200000px;}
.x132_c00410{left:539.250000px;}
.x10b_c00410{left:540.750000px;}
.xdb_c00410{left:542.100000px;}
.xb5_c00410{left:543.600000px;}
.x108_c00410{left:545.100000px;}
.xfc_c00410{left:546.150000px;}
.x92_c00410{left:547.200000px;}
.xbb_c00410{left:549.000000px;}
.xd2_c00410{left:550.500000px;}
.xa4_c00410{left:552.000000px;}
.xe6_c00410{left:553.650000px;}
.x9a_c00410{left:555.900000px;}
.xaa_c00410{left:559.200000px;}
.x9b_c00410{left:563.850000px;}
.xf0_c00410{left:565.650000px;}
.x119_c00410{left:566.700000px;}
.xb0_c00410{left:567.900000px;}
.xe2_c00410{left:569.100000px;}
.x134_c00410{left:571.950000px;}
.x104_c00410{left:573.300000px;}
.x93_c00410{left:574.500000px;}
.xa5_c00410{left:576.900000px;}
.xf8_c00410{left:579.900000px;}
.xb6_c00410{left:581.400000px;}
.xd3_c00410{left:583.200000px;}
.x9c_c00410{left:584.400000px;}
.x123_c00410{left:586.650000px;}
.xdc_c00410{left:589.200000px;}
.x126_c00410{left:590.250000px;}
.xc7_c00410{left:592.500000px;}
.x9d_c00410{left:595.500000px;}
.xe7_c00410{left:597.150000px;}
.xfd_c00410{left:599.400000px;}
.x94_c00410{left:601.200000px;}
.xeb_c00410{left:603.300000px;}
.xf9_c00410{left:606.600000px;}
.xc8_c00410{left:607.650000px;}
.xf1_c00410{left:608.850000px;}
.x9e_c00410{left:612.450000px;}
.xab_c00410{left:614.250000px;}
.xd4_c00410{left:617.100000px;}
.x127_c00410{left:618.750000px;}
.x10f_c00410{left:620.700000px;}
.xe8_c00410{left:622.350000px;}
.xf2_c00410{left:624.300000px;}
.xce_c00410{left:625.800000px;}
.x9f_c00410{left:627.900000px;}
.x11a_c00410{left:628.950000px;}
.xc9_c00410{left:630.000000px;}
.x130_c00410{left:631.800000px;}
.x118_c00410{left:634.650000px;}
.xa0_c00410{left:636.600000px;}
.xe9_c00410{left:637.800000px;}
.xb1_c00410{left:639.900000px;}
.x133_c00410{left:641.850000px;}
.xfe_c00410{left:643.800000px;}
.xbc_c00410{left:646.500000px;}
.x10c_c00410{left:649.800000px;}
.xd5_c00410{left:651.000000px;}
.xcf_c00410{left:652.500000px;}
.x114_c00410{left:653.550000px;}
.xca_c00410{left:655.200000px;}
.xf3_c00410{left:656.400000px;}
.xff_c00410{left:658.500000px;}
.x105_c00410{left:660.000000px;}
.xb2_c00410{left:663.000000px;}
.x10d_c00410{left:664.200000px;}
.xc0_c00410{left:666.000000px;}
.xd6_c00410{left:669.750000px;}
.xa6_c00410{left:672.000000px;}
.xcb_c00410{left:673.950000px;}
.xdd_c00410{left:675.600000px;}
.xb7_c00410{left:676.800000px;}
.x95_c00410{left:679.350000px;}
.xec_c00410{left:681.150000px;}
.x112_c00410{left:682.350000px;}
.x10e_c00410{left:684.000000px;}
.x103_c00410{left:685.050000px;}
.xa7_c00410{left:686.100000px;}
.x135_c00410{left:689.700000px;}
.xac_c00410{left:692.400000px;}
.x121_c00410{left:695.400000px;}
.x110_c00410{left:698.100000px;}
.x131_c00410{left:699.450000px;}
.xc1_c00410{left:702.750000px;}
.x12d_c00410{left:703.950000px;}
.xa8_c00410{left:706.200000px;}
.xa1_c00410{left:708.600000px;}
.xcc_c00410{left:709.950000px;}
.x116_c00410{left:711.750000px;}
.x106_c00410{left:713.550000px;}
.xf7_c00410{left:714.600000px;}
.xf4_c00410{left:715.650000px;}
.xe3_c00410{left:716.700000px;}
.x11e_c00410{left:718.800000px;}
.xbd_c00410{left:722.850000px;}
.x96_c00410{left:726.450000px;}
.x2_c00410{left:729.750000px;}
.xde_c00410{left:733.950000px;}
.x12a_c00410{left:736.500000px;}
.xc2_c00410{left:740.250000px;}
.xed_c00410{left:742.050000px;}
.xf5_c00410{left:744.150000px;}
.xad_c00410{left:748.200000px;}
.xcd_c00410{left:751.350000px;}
.xb3_c00410{left:754.500000px;}
.x136_c00410{left:774.300000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls1_c00410{letter-spacing:0.000000pt;}
.ls0_c00410{letter-spacing:46.349206pt;}
.ws2_c00410{word-spacing:-73.015873pt;}
.ws9_c00410{word-spacing:0.000000pt;}
.ws7_c00410{word-spacing:13.333333pt;}
.ws1_c00410{word-spacing:22.857143pt;}
.ws6_c00410{word-spacing:26.031746pt;}
.ws3_c00410{word-spacing:31.851852pt;}
.ws0_c00410{word-spacing:39.259259pt;}
.ws4_c00410{word-spacing:57.777778pt;}
.ws5_c00410{word-spacing:58.947368pt;}
.ws8_c00410{word-spacing:148.888889pt;}
._0_c00410{margin-left:-46.349206pt;}
._3_c00410{width:46.349206pt;}
._2_c00410{width:65.925926pt;}
._1_c00410{width:71.481481pt;}
.fs6_c00410{font-size:21.333333pt;}
.fs7_c00410{font-size:26.666667pt;}
.fs8_c00410{font-size:32.000000pt;}
.fs4_c00410{font-size:48.000000pt;}
.fs2_c00410{font-size:53.333333pt;}
.fs3_c00410{font-size:58.666667pt;}
.fs5_c00410{font-size:64.000000pt;}
.fs0_c00410{font-size:69.333333pt;}
.fs1_c00410{font-size:74.666667pt;}
.y0_c00410{bottom:0.000000pt;}
.y6a_c00410{bottom:171.733333pt;}
.y32_c00410{bottom:176.000000pt;}
.y69_c00410{bottom:187.733333pt;}
.y31_c00410{bottom:191.733333pt;}
.y68_c00410{bottom:203.733333pt;}
.y67_c00410{bottom:219.733333pt;}
.y30_c00410{bottom:219.866667pt;}
.y66_c00410{bottom:235.466667pt;}
.y2f_c00410{bottom:243.866667pt;}
.y65_c00410{bottom:259.466667pt;}
.y2e_c00410{bottom:266.933333pt;}
.y64_c00410{bottom:275.466667pt;}
.y2d_c00410{bottom:286.400000pt;}
.y63_c00410{bottom:294.933333pt;}
.y2c_c00410{bottom:304.266667pt;}
.y62_c00410{bottom:310.933333pt;}
.y2b_c00410{bottom:318.666667pt;}
.y61_c00410{bottom:326.666667pt;}
.y2a_c00410{bottom:338.266667pt;}
.y60_c00410{bottom:342.666667pt;}
.y29_c00410{bottom:346.933333pt;}
.y28_c00410{bottom:354.266667pt;}
.y5f_c00410{bottom:358.400000pt;}
.y27_c00410{bottom:374.000000pt;}
.y5e_c00410{bottom:374.666667pt;}
.y26_c00410{bottom:389.733333pt;}
.y5d_c00410{bottom:390.666667pt;}
.y25_c00410{bottom:405.066667pt;}
.y5c_c00410{bottom:406.400000pt;}
.y5b_c00410{bottom:422.400000pt;}
.y24_c00410{bottom:424.533333pt;}
.y23_c00410{bottom:440.533333pt;}
.y58_c00410{bottom:446.400000pt;}
.y22_c00410{bottom:456.533333pt;}
.y57_c00410{bottom:462.400000pt;}
.y21_c00410{bottom:472.266667pt;}
.y56_c00410{bottom:479.866667pt;}
.y20_c00410{bottom:488.266667pt;}
.y55_c00410{bottom:492.933333pt;}
.y1f_c00410{bottom:504.000000pt;}
.y54_c00410{bottom:505.466667pt;}
.y59_c00410{bottom:515.200000pt;}
.y53_c00410{bottom:518.266667pt;}
.y1e_c00410{bottom:520.000000pt;}
.y5a_c00410{bottom:524.533333pt;}
.y52_c00410{bottom:531.733333pt;}
.y1d_c00410{bottom:535.733333pt;}
.y51_c00410{bottom:544.266667pt;}
.y1c_c00410{bottom:551.733333pt;}
.y50_c00410{bottom:557.200000pt;}
.y1b_c00410{bottom:567.733333pt;}
.y4f_c00410{bottom:570.000000pt;}
.y4e_c00410{bottom:583.066667pt;}
.y1a_c00410{bottom:587.466667pt;}
.y4d_c00410{bottom:595.866667pt;}
.y19_c00410{bottom:603.200000pt;}
.y4c_c00410{bottom:608.266667pt;}
.y18_c00410{bottom:619.200000pt;}
.y4b_c00410{bottom:621.066667pt;}
.y4a_c00410{bottom:633.866667pt;}
.y17_c00410{bottom:638.400000pt;}
.y49_c00410{bottom:646.666667pt;}
.y16_c00410{bottom:658.266667pt;}
.y48_c00410{bottom:659.200000pt;}
.y47_c00410{bottom:672.266667pt;}
.y15_c00410{bottom:678.133333pt;}
.y46_c00410{bottom:685.066667pt;}
.y14_c00410{bottom:694.133333pt;}
.y45_c00410{bottom:697.600000pt;}
.y44_c00410{bottom:710.400000pt;}
.y13_c00410{bottom:713.600000pt;}
.y43_c00410{bottom:723.466667pt;}
.y12_c00410{bottom:729.600000pt;}
.y42_c00410{bottom:736.000000pt;}
.y11_c00410{bottom:749.066667pt;}
.y41_c00410{bottom:767.066667pt;}
.y10_c00410{bottom:769.066667pt;}
.y40_c00410{bottom:783.066667pt;}
.yf_c00410{bottom:785.333333pt;}
.y3f_c00410{bottom:799.733333pt;}
.ye_c00410{bottom:801.333333pt;}
.y3e_c00410{bottom:814.400000pt;}
.yd_c00410{bottom:820.800000pt;}
.y3d_c00410{bottom:833.600000pt;}
.yc_c00410{bottom:840.933333pt;}
.y3c_c00410{bottom:849.866667pt;}
.yb_c00410{bottom:856.933333pt;}
.y3b_c00410{bottom:865.866667pt;}
.ya_c00410{bottom:872.933333pt;}
.y3a_c00410{bottom:881.600000pt;}
.y9_c00410{bottom:888.666667pt;}
.y39_c00410{bottom:897.333333pt;}
.y8_c00410{bottom:904.933333pt;}
.y38_c00410{bottom:913.333333pt;}
.y7_c00410{bottom:928.266667pt;}
.y37_c00410{bottom:928.666667pt;}
.y6_c00410{bottom:944.266667pt;}
.y36_c00410{bottom:944.933333pt;}
.y5_c00410{bottom:960.000000pt;}
.y35_c00410{bottom:960.933333pt;}
.y4_c00410{bottom:976.000000pt;}
.y34_c00410{bottom:976.933333pt;}
.y3_c00410{bottom:992.000000pt;}
.y33_c00410{bottom:992.666667pt;}
.y2_c00410{bottom:1014.400000pt;}
.y1_c00410{bottom:1016.266667pt;}
.y6b_c00410{bottom:1121.333333pt;}
.h8_c00410{height:21.333333pt;}
.h9_c00410{height:26.666667pt;}
.ha_c00410{height:32.000000pt;}
.h6_c00410{height:48.000000pt;}
.h4_c00410{height:53.333333pt;}
.h5_c00410{height:58.666667pt;}
.h7_c00410{height:64.000000pt;}
.h2_c00410{height:69.333333pt;}
.h3_c00410{height:74.666667pt;}
.h0_c00410{height:1125.760009pt;}
.h1_c00410{height:1126.000000pt;}
.w0_c00410{width:853.760009pt;}
.w1_c00410{width:854.000000pt;}
.x0_c00410{left:0.000000pt;}
.x8c_c00410{left:49.333333pt;}
.x8e_c00410{left:51.466667pt;}
.x8f_c00410{left:66.266667pt;}
.x72_c00410{left:69.200000pt;}
.x6f_c00410{left:70.133333pt;}
.x1d_c00410{left:71.200000pt;}
.x4f_c00410{left:72.133333pt;}
.xb_c00410{left:73.200000pt;}
.x8a_c00410{left:77.733333pt;}
.x86_c00410{left:82.266667pt;}
.x81_c00410{left:83.200000pt;}
.x7b_c00410{left:84.800000pt;}
.x59_c00410{left:86.933333pt;}
.x3_c00410{left:88.933333pt;}
.x22_c00410{left:89.866667pt;}
.x39_c00410{left:90.933333pt;}
.x15_c00410{left:92.533333pt;}
.x1e_c00410{left:98.400000pt;}
.x87_c00410{left:99.600000pt;}
.xc_c00410{left:101.333333pt;}
.x29_c00410{left:102.666667pt;}
.x8d_c00410{left:105.066667pt;}
.x16_c00410{left:106.666667pt;}
.x83_c00410{left:108.533333pt;}
.x50_c00410{left:111.866667pt;}
.x23_c00410{left:114.800000pt;}
.x84_c00410{left:116.800000pt;}
.x53_c00410{left:119.066667pt;}
.x61_c00410{left:120.133333pt;}
.x4_c00410{left:121.600000pt;}
.x44_c00410{left:122.533333pt;}
.xd_c00410{left:123.733333pt;}
.x2d_c00410{left:125.066667pt;}
.x52_c00410{left:126.000000pt;}
.x68_c00410{left:127.466667pt;}
.x1f_c00410{left:129.466667pt;}
.x5a_c00410{left:132.400000pt;}
.x3d_c00410{left:133.866667pt;}
.x6a_c00410{left:136.533333pt;}
.x45_c00410{left:138.666667pt;}
.x88_c00410{left:140.800000pt;}
.x17_c00410{left:144.133333pt;}
.x24_c00410{left:145.200000pt;}
.x36_c00410{left:148.933333pt;}
.x51_c00410{left:150.933333pt;}
.x5b_c00410{left:151.866667pt;}
.x3e_c00410{left:153.333333pt;}
.x10_c00410{left:154.666667pt;}
.x65_c00410{left:156.400000pt;}
.x46_c00410{left:158.533333pt;}
.x89_c00410{left:160.933333pt;}
.x37_c00410{left:162.400000pt;}
.x25_c00410{left:163.733333pt;}
.x2a_c00410{left:165.066667pt;}
.x18_c00410{left:166.266667pt;}
.x70_c00410{left:168.800000pt;}
.x5_c00410{left:169.866667pt;}
.x4a_c00410{left:172.666667pt;}
.x7c_c00410{left:173.733333pt;}
.x11_c00410{left:174.800000pt;}
.x62_c00410{left:177.066667pt;}
.x79_c00410{left:179.600000pt;}
.x32_c00410{left:182.400000pt;}
.x3f_c00410{left:184.000000pt;}
.x5c_c00410{left:185.733333pt;}
.x54_c00410{left:186.933333pt;}
.x6_c00410{left:188.133333pt;}
.xe_c00410{left:190.933333pt;}
.x40_c00410{left:192.666667pt;}
.x7d_c00410{left:194.266667pt;}
.x78_c00410{left:195.600000pt;}
.x3a_c00410{left:196.533333pt;}
.x20_c00410{left:198.533333pt;}
.x66_c00410{left:200.000000pt;}
.x19_c00410{left:204.400000pt;}
.x80_c00410{left:206.666667pt;}
.x47_c00410{left:207.866667pt;}
.x67_c00410{left:209.600000pt;}
.x33_c00410{left:210.933333pt;}
.x3b_c00410{left:213.866667pt;}
.x12_c00410{left:215.466667pt;}
.x69_c00410{left:219.866667pt;}
.x38_c00410{left:221.866667pt;}
.x5d_c00410{left:223.200000pt;}
.x2b_c00410{left:225.200000pt;}
.x6b_c00410{left:226.400000pt;}
.x7_c00410{left:228.400000pt;}
.x4b_c00410{left:230.933333pt;}
.x71_c00410{left:232.133333pt;}
.x13_c00410{left:234.000000pt;}
.x7e_c00410{left:236.133333pt;}
.x55_c00410{left:237.866667pt;}
.x4c_c00410{left:240.800000pt;}
.x75_c00410{left:242.800000pt;}
.x2e_c00410{left:245.733333pt;}
.xf_c00410{left:248.533333pt;}
.x8b_c00410{left:249.600000pt;}
.x21_c00410{left:250.666667pt;}
.x60_c00410{left:252.266667pt;}
.x63_c00410{left:254.400000pt;}
.x8_c00410{left:255.866667pt;}
.x41_c00410{left:256.933333pt;}
.x73_c00410{left:259.066667pt;}
.x3c_c00410{left:263.733333pt;}
.x6c_c00410{left:264.933333pt;}
.x26_c00410{left:266.533333pt;}
.x2f_c00410{left:267.466667pt;}
.x48_c00410{left:270.266667pt;}
.x34_c00410{left:272.666667pt;}
.x1_c00410{left:274.533333pt;}
.x76_c00410{left:276.400000pt;}
.x56_c00410{left:277.600000pt;}
.x49_c00410{left:280.133333pt;}
.x1a_c00410{left:289.466667pt;}
.x57_c00410{left:291.733333pt;}
.x4d_c00410{left:295.466667pt;}
.x14_c00410{left:296.666667pt;}
.x77_c00410{left:298.800000pt;}
.x64_c00410{left:300.133333pt;}
.x6d_c00410{left:301.066667pt;}
.x85_c00410{left:302.133333pt;}
.x1b_c00410{left:304.133333pt;}
.x9_c00410{left:305.200000pt;}
.x30_c00410{left:306.133333pt;}
.x58_c00410{left:308.000000pt;}
.x5e_c00410{left:311.866667pt;}
.xa_c00410{left:316.133333pt;}
.x4e_c00410{left:318.800000pt;}
.x35_c00410{left:320.400000pt;}
.x82_c00410{left:323.600000pt;}
.x27_c00410{left:326.666667pt;}
.x74_c00410{left:328.266667pt;}
.x1c_c00410{left:329.466667pt;}
.x42_c00410{left:331.466667pt;}
.x6e_c00410{left:332.800000pt;}
.x31_c00410{left:335.600000pt;}
.x28_c00410{left:337.600000pt;}
.x7f_c00410{left:342.666667pt;}
.x2c_c00410{left:343.600000pt;}
.x5f_c00410{left:344.800000pt;}
.x7a_c00410{left:348.533333pt;}
.x43_c00410{left:352.000000pt;}
.x12c_c00410{left:369.866667pt;}
.x113_c00410{left:371.466667pt;}
.xea_c00410{left:372.800000pt;}
.xd7_c00410{left:374.133333pt;}
.x111_c00410{left:384.533333pt;}
.xee_c00410{left:385.733333pt;}
.x11f_c00410{left:386.800000pt;}
.xd9_c00410{left:387.733333pt;}
.xdf_c00410{left:389.066667pt;}
.x97_c00410{left:390.400000pt;}
.xae_c00410{left:391.466667pt;}
.x100_c00410{left:393.733333pt;}
.xf6_c00410{left:397.733333pt;}
.xb8_c00410{left:399.333333pt;}
.xaf_c00410{left:400.400000pt;}
.x128_c00410{left:401.600000pt;}
.xfa_c00410{left:405.733333pt;}
.x90_c00410{left:407.333333pt;}
.x122_c00410{left:409.200000pt;}
.xc3_c00410{left:410.933333pt;}
.xd0_c00410{left:412.000000pt;}
.x98_c00410{left:413.466667pt;}
.xb4_c00410{left:416.000000pt;}
.x109_c00410{left:417.333333pt;}
.xef_c00410{left:418.666667pt;}
.xc4_c00410{left:420.533333pt;}
.x12e_c00410{left:421.600000pt;}
.x124_c00410{left:422.800000pt;}
.xfb_c00410{left:424.000000pt;}
.x117_c00410{left:424.933333pt;}
.xe0_c00410{left:426.533333pt;}
.x120_c00410{left:430.266667pt;}
.xb9_c00410{left:431.333333pt;}
.x11b_c00410{left:432.533333pt;}
.xe4_c00410{left:433.466667pt;}
.x11d_c00410{left:434.933333pt;}
.xc5_c00410{left:436.266667pt;}
.x10a_c00410{left:438.400000pt;}
.xbe_c00410{left:439.333333pt;}
.xa2_c00410{left:441.333333pt;}
.xa9_c00410{left:442.400000pt;}
.xda_c00410{left:443.466667pt;}
.xe1_c00410{left:445.066667pt;}
.x115_c00410{left:446.133333pt;}
.x99_c00410{left:447.733333pt;}
.x101_c00410{left:448.800000pt;}
.xe5_c00410{left:450.800000pt;}
.xc6_c00410{left:452.000000pt;}
.x107_c00410{left:454.133333pt;}
.x12b_c00410{left:458.000000pt;}
.x125_c00410{left:460.533333pt;}
.x11c_c00410{left:463.866667pt;}
.x129_c00410{left:464.933333pt;}
.x91_c00410{left:465.866667pt;}
.x12f_c00410{left:466.800000pt;}
.xba_c00410{left:467.866667pt;}
.xa3_c00410{left:469.200000pt;}
.x102_c00410{left:471.466667pt;}
.xd8_c00410{left:473.333333pt;}
.xd1_c00410{left:475.600000pt;}
.xbf_c00410{left:478.400000pt;}
.x132_c00410{left:479.333333pt;}
.x10b_c00410{left:480.666667pt;}
.xdb_c00410{left:481.866667pt;}
.xb5_c00410{left:483.200000pt;}
.x108_c00410{left:484.533333pt;}
.xfc_c00410{left:485.466667pt;}
.x92_c00410{left:486.400000pt;}
.xbb_c00410{left:488.000000pt;}
.xd2_c00410{left:489.333333pt;}
.xa4_c00410{left:490.666667pt;}
.xe6_c00410{left:492.133333pt;}
.x9a_c00410{left:494.133333pt;}
.xaa_c00410{left:497.066667pt;}
.x9b_c00410{left:501.200000pt;}
.xf0_c00410{left:502.800000pt;}
.x119_c00410{left:503.733333pt;}
.xb0_c00410{left:504.800000pt;}
.xe2_c00410{left:505.866667pt;}
.x134_c00410{left:508.400000pt;}
.x104_c00410{left:509.600000pt;}
.x93_c00410{left:510.666667pt;}
.xa5_c00410{left:512.800000pt;}
.xf8_c00410{left:515.466667pt;}
.xb6_c00410{left:516.800000pt;}
.xd3_c00410{left:518.400000pt;}
.x9c_c00410{left:519.466667pt;}
.x123_c00410{left:521.466667pt;}
.xdc_c00410{left:523.733333pt;}
.x126_c00410{left:524.666667pt;}
.xc7_c00410{left:526.666667pt;}
.x9d_c00410{left:529.333333pt;}
.xe7_c00410{left:530.800000pt;}
.xfd_c00410{left:532.800000pt;}
.x94_c00410{left:534.400000pt;}
.xeb_c00410{left:536.266667pt;}
.xf9_c00410{left:539.200000pt;}
.xc8_c00410{left:540.133333pt;}
.xf1_c00410{left:541.200000pt;}
.x9e_c00410{left:544.400000pt;}
.xab_c00410{left:546.000000pt;}
.xd4_c00410{left:548.533333pt;}
.x127_c00410{left:550.000000pt;}
.x10f_c00410{left:551.733333pt;}
.xe8_c00410{left:553.200000pt;}
.xf2_c00410{left:554.933333pt;}
.xce_c00410{left:556.266667pt;}
.x9f_c00410{left:558.133333pt;}
.x11a_c00410{left:559.066667pt;}
.xc9_c00410{left:560.000000pt;}
.x130_c00410{left:561.600000pt;}
.x118_c00410{left:564.133333pt;}
.xa0_c00410{left:565.866667pt;}
.xe9_c00410{left:566.933333pt;}
.xb1_c00410{left:568.800000pt;}
.x133_c00410{left:570.533333pt;}
.xfe_c00410{left:572.266667pt;}
.xbc_c00410{left:574.666667pt;}
.x10c_c00410{left:577.600000pt;}
.xd5_c00410{left:578.666667pt;}
.xcf_c00410{left:580.000000pt;}
.x114_c00410{left:580.933333pt;}
.xca_c00410{left:582.400000pt;}
.xf3_c00410{left:583.466667pt;}
.xff_c00410{left:585.333333pt;}
.x105_c00410{left:586.666667pt;}
.xb2_c00410{left:589.333333pt;}
.x10d_c00410{left:590.400000pt;}
.xc0_c00410{left:592.000000pt;}
.xd6_c00410{left:595.333333pt;}
.xa6_c00410{left:597.333333pt;}
.xcb_c00410{left:599.066667pt;}
.xdd_c00410{left:600.533333pt;}
.xb7_c00410{left:601.600000pt;}
.x95_c00410{left:603.866667pt;}
.xec_c00410{left:605.466667pt;}
.x112_c00410{left:606.533333pt;}
.x10e_c00410{left:608.000000pt;}
.x103_c00410{left:608.933333pt;}
.xa7_c00410{left:609.866667pt;}
.x135_c00410{left:613.066667pt;}
.xac_c00410{left:615.466667pt;}
.x121_c00410{left:618.133333pt;}
.x110_c00410{left:620.533333pt;}
.x131_c00410{left:621.733333pt;}
.xc1_c00410{left:624.666667pt;}
.x12d_c00410{left:625.733333pt;}
.xa8_c00410{left:627.733333pt;}
.xa1_c00410{left:629.866667pt;}
.xcc_c00410{left:631.066667pt;}
.x116_c00410{left:632.666667pt;}
.x106_c00410{left:634.266667pt;}
.xf7_c00410{left:635.200000pt;}
.xf4_c00410{left:636.133333pt;}
.xe3_c00410{left:637.066667pt;}
.x11e_c00410{left:638.933333pt;}
.xbd_c00410{left:642.533333pt;}
.x96_c00410{left:645.733333pt;}
.x2_c00410{left:648.666667pt;}
.xde_c00410{left:652.400000pt;}
.x12a_c00410{left:654.666667pt;}
.xc2_c00410{left:658.000000pt;}
.xed_c00410{left:659.600000pt;}
.xf5_c00410{left:661.466667pt;}
.xad_c00410{left:665.066667pt;}
.xcd_c00410{left:667.866667pt;}
.xb3_c00410{left:670.666667pt;}
.x136_c00410{left:688.266667pt;}
}





/* 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_c00411 {
    display:none;
  }
  .loading-indicator_c00411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00411 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_c00411 { 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_c00411" -> "#page-container .classname_c00411")
 */
.pf_c00411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00411 { /* 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_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00411 { /* 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_c00411 { /* 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_c00411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00411 {overflow:visible;}
  }
}
.c_c00411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00411 { /* 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_c00411:after { /* webkit #35443 */
  content: '';
}
.t_c00411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00411 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 */
}
.__c00411 { /* 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_c00411 { /* info for Javascript */
  display:none;
}
.l_c00411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00411: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_c00411 {
    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_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00411.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_c00411 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00411;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.000000;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;}
.mc3_c00411{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m118_c00411{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00411{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00411{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m46_c00411{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m50_c00411{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.mea_c00411{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.me8_c00411{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m106_c00411{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me7_c00411{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m52_c00411{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me9_c00411{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00411{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00411{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m24_c00411{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00411{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00411{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00411{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.me2_c00411{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00411{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m32_c00411{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.me5_c00411{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m83_c00411{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m13_c00411{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m116_c00411{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00411{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00411{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m81_c00411{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00411{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00411{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m17_c00411{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me6_c00411{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00411{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma_c00411{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m31_c00411{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mae_c00411{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00411{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00411{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m97_c00411{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m42_c00411{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.me_c00411{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00411{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m98_c00411{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00411{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00411{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3_c00411{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m40_c00411{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me3_c00411{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m14_c00411{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m100_c00411{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m7_c00411{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m16_c00411{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00411{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m41_c00411{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m15_c00411{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00411{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m89_c00411{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00411{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m12_c00411{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00411{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00411{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m87_c00411{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00411{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m70_c00411{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m18_c00411{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00411{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00411{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m101_c00411{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.md5_c00411{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m6_c00411{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00411{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00411{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m107_c00411{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mba_c00411{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m117_c00411{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m86_c00411{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00411{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m84_c00411{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md0_c00411{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00411{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m115_c00411{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m22_c00411{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00411{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00411{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md6_c00411{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00411{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00411{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00411{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m51_c00411{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00411{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.md9_c00411{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m95_c00411{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00411{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00411{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00411{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00411{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00411{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m75_c00411{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00411{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m109_c00411{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m103_c00411{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00411{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00411{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m44_c00411{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00411{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00411{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m53_c00411{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m90_c00411{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m33_c00411{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m112_c00411{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m11_c00411{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00411{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00411{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00411{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00411{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m49_c00411{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m19_c00411{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5_c00411{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00411{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md7_c00411{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m26_c00411{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mac_c00411{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00411{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m54_c00411{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m36_c00411{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m58_c00411{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00411{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m59_c00411{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m80_c00411{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m21_c00411{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00411{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb_c00411{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m63_c00411{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf_c00411{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00411{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m71_c00411{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m74_c00411{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m43_c00411{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mde_c00411{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m102_c00411{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00411{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc_c00411{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00411{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00411{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m105_c00411{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m30_c00411{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00411{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m23_c00411{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00411{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00411{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.md_c00411{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m92_c00411{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m76_c00411{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mda_c00411{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m96_c00411{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m25_c00411{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00411{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00411{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00411{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mce_c00411{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9_c00411{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00411{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00411{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00411{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me4_c00411{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00411{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m94_c00411{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00411{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m28_c00411{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m38_c00411{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00411{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00411{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m110_c00411{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m93_c00411{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00411{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00411{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00411{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m69_c00411{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00411{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m62_c00411{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00411{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00411{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00411{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00411{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.maf_c00411{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00411{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m55_c00411{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00411{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00411{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00411{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m60_c00411{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00411{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00411{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mee_c00411{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m79_c00411{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mad_c00411{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m45_c00411{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m68_c00411{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00411{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m61_c00411{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md4_c00411{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m77_c00411{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00411{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m73_c00411{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00411{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md3_c00411{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m10_c00411{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m114_c00411{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00411{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00411{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00411{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.med_c00411{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00411{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00411{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00411{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00411{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.me1_c00411{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m29_c00411{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m56_c00411{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m27_c00411{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.maa_c00411{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mff_c00411{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mca_c00411{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m78_c00411{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md2_c00411{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00411{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00411{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m39_c00411{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m91_c00411{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m57_c00411{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00411{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m47_c00411{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mab_c00411{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m35_c00411{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md1_c00411{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00411{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m104_c00411{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mef_c00411{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00411{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m111_c00411{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m66_c00411{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m67_c00411{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00411{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00411{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m48_c00411{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m88_c00411{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m65_c00411{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00411{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.me0_c00411{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m113_c00411{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00411{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00411{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00411{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00411{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m72_c00411{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m99_c00411{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m20_c00411{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.md8_c00411{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00411{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00411{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m85_c00411{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00411{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00411{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m37_c00411{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m64_c00411{transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);}
.m108_c00411{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.meb_c00411{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00411{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00411{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m8_c00411{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m119_c00411{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m82_c00411{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00411{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00411{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m34_c00411{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00411{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00411{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);}
.mec_c00411{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls1_c00411{letter-spacing:0.000000px;}
.ls0_c00411{letter-spacing:63.000000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{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__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00411{word-spacing:-90.000000px;}
.ws1_c00411{word-spacing:-17.138493px;}
.ws2_c00411{word-spacing:-10.508380px;}
.wsc_c00411{word-spacing:-8.667069px;}
.ws6_c00411{word-spacing:0.000000px;}
.ws4_c00411{word-spacing:0.666667px;}
.ws5_c00411{word-spacing:2.037736px;}
.ws3_c00411{word-spacing:3.421053px;}
.ws0_c00411{word-spacing:6.333333px;}
.wsb_c00411{word-spacing:6.831615px;}
.ws7_c00411{word-spacing:23.211796px;}
.ws9_c00411{word-spacing:26.428954px;}
.wsa_c00411{word-spacing:36.000000px;}
._1_c00411{margin-left:-63.000000px;}
._3_c00411{width:46.994638px;}
._2_c00411{width:50.211796px;}
._0_c00411{width:72.731903px;}
.fc0_c00411{color:transparent;}
.fs6_c00411{font-size:48.000000px;}
.fs5_c00411{font-size:54.000000px;}
.fs4_c00411{font-size:60.000000px;}
.fs3_c00411{font-size:66.000000px;}
.fs2_c00411{font-size:72.000000px;}
.fs1_c00411{font-size:78.000000px;}
.fs0_c00411{font-size:84.000000px;}
.y0_c00411{bottom:0.000000px;}
.y69_c00411{bottom:177.150000px;}
.y68_c00411{bottom:192.900000px;}
.y35_c00411{bottom:194.400000px;}
.y34_c00411{bottom:208.800000px;}
.y67_c00411{bottom:213.450000px;}
.y33_c00411{bottom:222.450000px;}
.y66_c00411{bottom:231.600000px;}
.y32_c00411{bottom:236.550000px;}
.y31_c00411{bottom:250.650000px;}
.y65_c00411{bottom:251.700000px;}
.y30_c00411{bottom:264.750000px;}
.y64_c00411{bottom:271.500000px;}
.y2f_c00411{bottom:278.400000px;}
.y2e_c00411{bottom:292.500000px;}
.y63_c00411{bottom:297.600000px;}
.y2d_c00411{bottom:306.600000px;}
.y62_c00411{bottom:315.300000px;}
.y2c_c00411{bottom:320.700000px;}
.y61_c00411{bottom:333.000000px;}
.y2b_c00411{bottom:334.800000px;}
.y60_c00411{bottom:350.700000px;}
.y5f_c00411{bottom:368.700000px;}
.y2a_c00411{bottom:371.850000px;}
.y5e_c00411{bottom:385.200000px;}
.y29_c00411{bottom:389.850000px;}
.y5d_c00411{bottom:403.950000px;}
.y28_c00411{bottom:407.850000px;}
.y5c_c00411{bottom:421.950000px;}
.y27_c00411{bottom:426.150000px;}
.y5b_c00411{bottom:439.950000px;}
.y26_c00411{bottom:443.850000px;}
.y5a_c00411{bottom:457.950000px;}
.y25_c00411{bottom:465.900000px;}
.y59_c00411{bottom:475.950000px;}
.y24_c00411{bottom:487.050000px;}
.y58_c00411{bottom:493.650000px;}
.y23_c00411{bottom:506.100000px;}
.y57_c00411{bottom:511.350000px;}
.y22_c00411{bottom:524.100000px;}
.y56_c00411{bottom:529.350000px;}
.y21_c00411{bottom:541.800000px;}
.y55_c00411{bottom:547.350000px;}
.y20_c00411{bottom:560.550000px;}
.y54_c00411{bottom:565.350000px;}
.y1f_c00411{bottom:579.150000px;}
.y53_c00411{bottom:583.050000px;}
.y1e_c00411{bottom:599.700000px;}
.y52_c00411{bottom:601.050000px;}
.y51_c00411{bottom:618.750000px;}
.y1d_c00411{bottom:624.900000px;}
.y50_c00411{bottom:636.750000px;}
.y1c_c00411{bottom:643.650000px;}
.y4f_c00411{bottom:654.450000px;}
.y1b_c00411{bottom:661.650000px;}
.y4e_c00411{bottom:672.450000px;}
.y1a_c00411{bottom:679.350000px;}
.y4d_c00411{bottom:690.150000px;}
.y19_c00411{bottom:697.650000px;}
.y4c_c00411{bottom:712.050000px;}
.y18_c00411{bottom:715.350000px;}
.y4b_c00411{bottom:724.650000px;}
.y17_c00411{bottom:737.700000px;}
.y4a_c00411{bottom:740.550000px;}
.y16_c00411{bottom:756.000000px;}
.y15_c00411{bottom:773.700000px;}
.y49_c00411{bottom:774.000000px;}
.y14_c00411{bottom:791.700000px;}
.y48_c00411{bottom:792.750000px;}
.y13_c00411{bottom:809.700000px;}
.y47_c00411{bottom:814.050000px;}
.y12_c00411{bottom:827.700000px;}
.y46_c00411{bottom:832.350000px;}
.y11_c00411{bottom:845.700000px;}
.y45_c00411{bottom:850.350000px;}
.y10_c00411{bottom:863.700000px;}
.y44_c00411{bottom:870.900000px;}
.yf_c00411{bottom:883.500000px;}
.y43_c00411{bottom:890.250000px;}
.ye_c00411{bottom:903.600000px;}
.y42_c00411{bottom:920.400000px;}
.yd_c00411{bottom:921.600000px;}
.y41_c00411{bottom:939.150000px;}
.yc_c00411{bottom:943.950000px;}
.y40_c00411{bottom:957.450000px;}
.yb_c00411{bottom:961.950000px;}
.y3f_c00411{bottom:975.150000px;}
.ya_c00411{bottom:979.200000px;}
.y3e_c00411{bottom:992.850000px;}
.y9_c00411{bottom:997.500000px;}
.y3d_c00411{bottom:1014.450000px;}
.y8_c00411{bottom:1018.050000px;}
.y3c_c00411{bottom:1032.750000px;}
.y7_c00411{bottom:1037.100000px;}
.y3b_c00411{bottom:1051.050000px;}
.y6_c00411{bottom:1063.050000px;}
.y3a_c00411{bottom:1068.750000px;}
.y5_c00411{bottom:1082.100000px;}
.y39_c00411{bottom:1087.500000px;}
.y4_c00411{bottom:1100.100000px;}
.y38_c00411{bottom:1104.750000px;}
.y3_c00411{bottom:1117.800000px;}
.y37_c00411{bottom:1122.450000px;}
.y36_c00411{bottom:1127.550000px;}
.y1_c00411{bottom:1140.900000px;}
.y2_c00411{bottom:1146.600000px;}
.h8_c00411{height:48.000000px;}
.h7_c00411{height:54.000000px;}
.h6_c00411{height:60.000000px;}
.h5_c00411{height:66.000000px;}
.h4_c00411{height:72.000000px;}
.h3_c00411{height:78.000000px;}
.h2_c00411{height:84.000000px;}
.h1_c00411{height:1268.250000px;}
.h0_c00411{height:1268.279937px;}
.w0_c00411{width:960.480010px;}
.w1_c00411{width:960.750000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:191.550000px;}
.x37_c00411{left:194.100000px;}
.x1d_c00411{left:195.450000px;}
.x63_c00411{left:198.300000px;}
.x75_c00411{left:202.350000px;}
.x85_c00411{left:205.950000px;}
.x9c_c00411{left:209.850000px;}
.x40_c00411{left:212.250000px;}
.x22_c00411{left:213.900000px;}
.x3_c00411{left:214.950000px;}
.x5f_c00411{left:216.900000px;}
.x77_c00411{left:220.650000px;}
.x38_c00411{left:222.600000px;}
.x81_c00411{left:224.550000px;}
.x98_c00411{left:226.350000px;}
.xa5_c00411{left:230.850000px;}
.x24_c00411{left:235.500000px;}
.x2d_c00411{left:237.450000px;}
.x60_c00411{left:238.500000px;}
.x1e_c00411{left:241.950000px;}
.x39_c00411{left:243.150000px;}
.x25_c00411{left:244.500000px;}
.x76_c00411{left:245.850000px;}
.x82_c00411{left:246.900000px;}
.xa9_c00411{left:248.100000px;}
.x91_c00411{left:249.150000px;}
.x13_c00411{left:250.350000px;}
.x6f_c00411{left:253.950000px;}
.x32_c00411{left:255.150000px;}
.x19_c00411{left:256.350000px;}
.xb_c00411{left:257.550000px;}
.x23_c00411{left:260.400000px;}
.x4_c00411{left:261.750000px;}
.x83_c00411{left:263.400000px;}
.x72_c00411{left:264.600000px;}
.x41_c00411{left:265.950000px;}
.x9d_c00411{left:267.450000px;}
.x64_c00411{left:269.250000px;}
.x33_c00411{left:270.600000px;}
.x53_c00411{left:272.250000px;}
.x4b_c00411{left:273.300000px;}
.xc_c00411{left:275.550000px;}
.x68_c00411{left:277.500000px;}
.x1f_c00411{left:279.000000px;}
.x54_c00411{left:281.250000px;}
.x57_c00411{left:283.950000px;}
.x92_c00411{left:286.200000px;}
.x44_c00411{left:287.400000px;}
.x84_c00411{left:291.450000px;}
.x4c_c00411{left:293.100000px;}
.x7d_c00411{left:295.050000px;}
.x65_c00411{left:299.550000px;}
.xab_c00411{left:301.350000px;}
.x6a_c00411{left:303.450000px;}
.x34_c00411{left:304.500000px;}
.x58_c00411{left:306.600000px;}
.x3a_c00411{left:308.700000px;}
.x9e_c00411{left:310.950000px;}
.x79_c00411{left:312.150000px;}
.x5_c00411{left:313.200000px;}
.x50_c00411{left:317.700000px;}
.x26_c00411{left:320.400000px;}
.x1a_c00411{left:322.200000px;}
.x59_c00411{left:323.550000px;}
.xd_c00411{left:324.900000px;}
.x8c_c00411{left:326.700000px;}
.x99_c00411{left:328.050000px;}
.x66_c00411{left:329.100000px;}
.x45_c00411{left:331.350000px;}
.x93_c00411{left:332.700000px;}
.x1b_c00411{left:333.750000px;}
.x3b_c00411{left:336.750000px;}
.x35_c00411{left:339.000000px;}
.x14_c00411{left:340.650000px;}
.x88_c00411{left:342.450000px;}
.x2e_c00411{left:343.650000px;}
.x48_c00411{left:345.750000px;}
.x73_c00411{left:347.400000px;}
.xa6_c00411{left:348.450000px;}
.x4d_c00411{left:349.950000px;}
.x29_c00411{left:351.450000px;}
.x49_c00411{left:352.950000px;}
.x95_c00411{left:354.900000px;}
.x3c_c00411{left:356.550000px;}
.x27_c00411{left:357.900000px;}
.x86_c00411{left:360.150000px;}
.x36_c00411{left:361.650000px;}
.x55_c00411{left:362.700000px;}
.x7e_c00411{left:364.500000px;}
.x2f_c00411{left:368.850000px;}
.x94_c00411{left:370.500000px;}
.x8d_c00411{left:372.750000px;}
.xe_c00411{left:374.250000px;}
.x1c_c00411{left:377.250000px;}
.x87_c00411{left:379.950000px;}
.x6_c00411{left:381.000000px;}
.x8e_c00411{left:382.050000px;}
.x15_c00411{left:383.550000px;}
.x6b_c00411{left:384.750000px;}
.xaa_c00411{left:385.950000px;}
.x96_c00411{left:387.000000px;}
.x74_c00411{left:390.600000px;}
.x5a_c00411{left:392.250000px;}
.x3d_c00411{left:393.300000px;}
.xa3_c00411{left:394.500000px;}
.x20_c00411{left:396.300000px;}
.x46_c00411{left:399.450000px;}
.x9f_c00411{left:401.700000px;}
.x7_c00411{left:403.350000px;}
.x6c_c00411{left:406.350000px;}
.x7a_c00411{left:407.850000px;}
.xf_c00411{left:410.250000px;}
.x9a_c00411{left:411.300000px;}
.x3e_c00411{left:413.850000px;}
.x56_c00411{left:414.900000px;}
.x8f_c00411{left:416.550000px;}
.x9b_c00411{left:418.650000px;}
.x61_c00411{left:420.000000px;}
.x30_c00411{left:421.800000px;}
.xa2_c00411{left:423.300000px;}
.x8_c00411{left:424.950000px;}
.x4e_c00411{left:427.050000px;}
.x10_c00411{left:428.550000px;}
.x47_c00411{left:431.100000px;}
.x16_c00411{left:432.450000px;}
.x90_c00411{left:437.400000px;}
.x7f_c00411{left:439.500000px;}
.x89_c00411{left:442.200000px;}
.x2_c00411{left:444.600000px;}
.x7b_c00411{left:445.650000px;}
.x51_c00411{left:447.900000px;}
.x28_c00411{left:448.950000px;}
.xa7_c00411{left:451.800000px;}
.x5d_c00411{left:454.500000px;}
.x6d_c00411{left:457.050000px;}
.x31_c00411{left:458.850000px;}
.x2a_c00411{left:460.200000px;}
.x5b_c00411{left:461.700000px;}
.x78_c00411{left:463.350000px;}
.x9_c00411{left:465.300000px;}
.xa0_c00411{left:467.250000px;}
.x11_c00411{left:469.650000px;}
.x4f_c00411{left:471.000000px;}
.x70_c00411{left:475.200000px;}
.x2b_c00411{left:476.400000px;}
.x21_c00411{left:478.800000px;}
.x17_c00411{left:481.350000px;}
.x80_c00411{left:483.450000px;}
.x62_c00411{left:485.100000px;}
.x8a_c00411{left:487.650000px;}
.x69_c00411{left:491.700000px;}
.x42_c00411{left:492.750000px;}
.x5c_c00411{left:493.800000px;}
.xa_c00411{left:495.600000px;}
.x4a_c00411{left:498.000000px;}
.x18_c00411{left:504.000000px;}
.x97_c00411{left:505.350000px;}
.x43_c00411{left:506.400000px;}
.x2c_c00411{left:507.750000px;}
.xac_c00411{left:509.700000px;}
.x3f_c00411{left:510.750000px;}
.x7c_c00411{left:514.500000px;}
.xa4_c00411{left:517.050000px;}
.x52_c00411{left:518.100000px;}
.x67_c00411{left:520.500000px;}
.x12_c00411{left:522.600000px;}
.x5e_c00411{left:525.750000px;}
.x71_c00411{left:528.900000px;}
.x8b_c00411{left:530.850000px;}
.x6e_c00411{left:533.400000px;}
.xa1_c00411{left:535.650000px;}
.xa8_c00411{left:537.450000px;}
.xad_c00411{left:542.100000px;}
.xd3_c00411{left:555.150000px;}
.xed_c00411{left:558.000000px;}
.x107_c00411{left:559.500000px;}
.x151_c00411{left:568.500000px;}
.x158_c00411{left:570.900000px;}
.xae_c00411{left:572.700000px;}
.xd8_c00411{left:573.900000px;}
.xf1_c00411{left:574.950000px;}
.xf6_c00411{left:576.000000px;}
.xfc_c00411{left:577.950000px;}
.x127_c00411{left:579.150000px;}
.x132_c00411{left:580.200000px;}
.x140_c00411{left:581.400000px;}
.x14a_c00411{left:582.750000px;}
.x14d_c00411{left:584.100000px;}
.x14e_c00411{left:585.300000px;}
.x154_c00411{left:586.950000px;}
.x117_c00411{left:588.450000px;}
.x15a_c00411{left:590.400000px;}
.x15d_c00411{left:592.350000px;}
.xf4_c00411{left:594.300000px;}
.xd9_c00411{left:595.800000px;}
.xc7_c00411{left:597.450000px;}
.xe7_c00411{left:600.900000px;}
.x12f_c00411{left:602.250000px;}
.xbc_c00411{left:605.400000px;}
.x101_c00411{left:606.600000px;}
.x148_c00411{left:607.950000px;}
.xf7_c00411{left:609.450000px;}
.x128_c00411{left:610.800000px;}
.x133_c00411{left:612.900000px;}
.x144_c00411{left:615.150000px;}
.x15b_c00411{left:616.350000px;}
.x11e_c00411{left:617.850000px;}
.xf2_c00411{left:619.950000px;}
.xbf_c00411{left:621.150000px;}
.x150_c00411{left:622.950000px;}
.xeb_c00411{left:625.200000px;}
.xda_c00411{left:627.450000px;}
.xc0_c00411{left:630.150000px;}
.xcc_c00411{left:631.650000px;}
.x121_c00411{left:634.650000px;}
.xee_c00411{left:635.700000px;}
.x105_c00411{left:636.750000px;}
.x13c_c00411{left:637.800000px;}
.xe1_c00411{left:639.150000px;}
.x145_c00411{left:640.650000px;}
.xaf_c00411{left:641.850000px;}
.xb6_c00411{left:643.950000px;}
.xec_c00411{left:645.750000px;}
.xdb_c00411{left:646.950000px;}
.xef_c00411{left:648.600000px;}
.x129_c00411{left:650.400000px;}
.xd4_c00411{left:652.050000px;}
.x14b_c00411{left:654.000000px;}
.xd0_c00411{left:655.650000px;}
.xcd_c00411{left:657.150000px;}
.x135_c00411{left:658.350000px;}
.xf8_c00411{left:663.450000px;}
.x152_c00411{left:665.400000px;}
.x11f_c00411{left:666.750000px;}
.x10d_c00411{left:667.800000px;}
.xc8_c00411{left:669.450000px;}
.x141_c00411{left:671.100000px;}
.xc1_c00411{left:672.300000px;}
.xfd_c00411{left:673.650000px;}
.x12c_c00411{left:676.050000px;}
.x136_c00411{left:677.850000px;}
.xb7_c00411{left:678.900000px;}
.x12a_c00411{left:679.950000px;}
.x130_c00411{left:681.000000px;}
.xc2_c00411{left:682.050000px;}
.xb0_c00411{left:683.550000px;}
.x15c_c00411{left:686.250000px;}
.x11a_c00411{left:688.200000px;}
.xfe_c00411{left:689.550000px;}
.x122_c00411{left:692.550000px;}
.x159_c00411{left:694.350000px;}
.xd1_c00411{left:696.300000px;}
.xe2_c00411{left:697.950000px;}
.xb8_c00411{left:699.750000px;}
.xf9_c00411{left:703.800000px;}
.xb1_c00411{left:705.150000px;}
.x13d_c00411{left:706.200000px;}
.xe3_c00411{left:707.700000px;}
.x123_c00411{left:709.800000px;}
.xbd_c00411{left:711.600000px;}
.x108_c00411{left:713.550000px;}
.xd5_c00411{left:715.050000px;}
.xf5_c00411{left:717.000000px;}
.x137_c00411{left:718.200000px;}
.xe4_c00411{left:719.250000px;}
.xd2_c00411{left:721.800000px;}
.xff_c00411{left:723.000000px;}
.x102_c00411{left:724.350000px;}
.x10e_c00411{left:725.700000px;}
.x118_c00411{left:727.800000px;}
.x142_c00411{left:730.200000px;}
.xc9_c00411{left:732.450000px;}
.x11b_c00411{left:734.700000px;}
.x124_c00411{left:737.100000px;}
.x138_c00411{left:738.300000px;}
.xc3_c00411{left:739.650000px;}
.xd6_c00411{left:744.600000px;}
.x10f_c00411{left:747.600000px;}
.x14c_c00411{left:748.800000px;}
.xdc_c00411{left:752.400000px;}
.x110_c00411{left:754.500000px;}
.xb2_c00411{left:757.350000px;}
.x139_c00411{left:758.850000px;}
.x13e_c00411{left:759.900000px;}
.xc4_c00411{left:761.250000px;}
.xdd_c00411{left:763.200000px;}
.xb9_c00411{left:764.250000px;}
.x109_c00411{left:766.050000px;}
.xf0_c00411{left:767.700000px;}
.x111_c00411{left:769.200000px;}
.xce_c00411{left:772.650000px;}
.x11c_c00411{left:774.300000px;}
.xfa_c00411{left:775.500000px;}
.xe5_c00411{left:776.550000px;}
.x15e_c00411{left:777.750000px;}
.xb3_c00411{left:780.000000px;}
.xe8_c00411{left:781.350000px;}
.xca_c00411{left:784.350000px;}
.x155_c00411{left:785.550000px;}
.xde_c00411{left:789.150000px;}
.x112_c00411{left:791.100000px;}
.x106_c00411{left:792.750000px;}
.xd7_c00411{left:793.950000px;}
.xbe_c00411{left:798.000000px;}
.x113_c00411{left:799.050000px;}
.x156_c00411{left:800.700000px;}
.xe9_c00411{left:801.900000px;}
.x14f_c00411{left:804.750000px;}
.x114_c00411{left:806.250000px;}
.x13a_c00411{left:807.450000px;}
.x146_c00411{left:810.900000px;}
.xdf_c00411{left:815.100000px;}
.x10a_c00411{left:816.750000px;}
.x120_c00411{left:818.250000px;}
.xfb_c00411{left:820.200000px;}
.xc5_c00411{left:822.150000px;}
.x100_c00411{left:823.500000px;}
.x115_c00411{left:825.750000px;}
.x11d_c00411{left:826.800000px;}
.x134_c00411{left:830.550000px;}
.x149_c00411{left:832.500000px;}
.x131_c00411{left:836.550000px;}
.xb4_c00411{left:839.400000px;}
.xba_c00411{left:840.600000px;}
.xcf_c00411{left:841.800000px;}
.xc6_c00411{left:843.000000px;}
.xe0_c00411{left:846.750000px;}
.x10b_c00411{left:848.100000px;}
.x12d_c00411{left:849.900000px;}
.xcb_c00411{left:853.050000px;}
.x119_c00411{left:854.550000px;}
.x103_c00411{left:856.050000px;}
.x12b_c00411{left:857.850000px;}
.x125_c00411{left:858.900000px;}
.x13b_c00411{left:860.700000px;}
.x147_c00411{left:863.100000px;}
.xbb_c00411{left:864.300000px;}
.x12e_c00411{left:865.350000px;}
.xe6_c00411{left:866.550000px;}
.xb5_c00411{left:868.950000px;}
.x104_c00411{left:871.500000px;}
.x143_c00411{left:879.000000px;}
.xea_c00411{left:880.050000px;}
.x10c_c00411{left:882.300000px;}
.x116_c00411{left:884.700000px;}
.x13f_c00411{left:885.900000px;}
.x126_c00411{left:888.000000px;}
.x153_c00411{left:891.450000px;}
.x157_c00411{left:893.700000px;}
.xf3_c00411{left:900.450000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls1_c00411{letter-spacing:0.000000pt;}
.ls0_c00411{letter-spacing:56.000000pt;}
.ws8_c00411{word-spacing:-80.000000pt;}
.ws1_c00411{word-spacing:-15.234216pt;}
.ws2_c00411{word-spacing:-9.340782pt;}
.wsc_c00411{word-spacing:-7.704061pt;}
.ws6_c00411{word-spacing:0.000000pt;}
.ws4_c00411{word-spacing:0.592593pt;}
.ws5_c00411{word-spacing:1.811321pt;}
.ws3_c00411{word-spacing:3.040936pt;}
.ws0_c00411{word-spacing:5.629630pt;}
.wsb_c00411{word-spacing:6.072547pt;}
.ws7_c00411{word-spacing:20.632708pt;}
.ws9_c00411{word-spacing:23.492404pt;}
.wsa_c00411{word-spacing:32.000000pt;}
._1_c00411{margin-left:-56.000000pt;}
._3_c00411{width:41.773012pt;}
._2_c00411{width:44.632708pt;}
._0_c00411{width:64.650581pt;}
.fs6_c00411{font-size:42.666667pt;}
.fs5_c00411{font-size:48.000000pt;}
.fs4_c00411{font-size:53.333333pt;}
.fs3_c00411{font-size:58.666667pt;}
.fs2_c00411{font-size:64.000000pt;}
.fs1_c00411{font-size:69.333333pt;}
.fs0_c00411{font-size:74.666667pt;}
.y0_c00411{bottom:0.000000pt;}
.y69_c00411{bottom:157.466667pt;}
.y68_c00411{bottom:171.466667pt;}
.y35_c00411{bottom:172.800000pt;}
.y34_c00411{bottom:185.600000pt;}
.y67_c00411{bottom:189.733333pt;}
.y33_c00411{bottom:197.733333pt;}
.y66_c00411{bottom:205.866667pt;}
.y32_c00411{bottom:210.266667pt;}
.y31_c00411{bottom:222.800000pt;}
.y65_c00411{bottom:223.733333pt;}
.y30_c00411{bottom:235.333333pt;}
.y64_c00411{bottom:241.333333pt;}
.y2f_c00411{bottom:247.466667pt;}
.y2e_c00411{bottom:260.000000pt;}
.y63_c00411{bottom:264.533333pt;}
.y2d_c00411{bottom:272.533333pt;}
.y62_c00411{bottom:280.266667pt;}
.y2c_c00411{bottom:285.066667pt;}
.y61_c00411{bottom:296.000000pt;}
.y2b_c00411{bottom:297.600000pt;}
.y60_c00411{bottom:311.733333pt;}
.y5f_c00411{bottom:327.733333pt;}
.y2a_c00411{bottom:330.533333pt;}
.y5e_c00411{bottom:342.400000pt;}
.y29_c00411{bottom:346.533333pt;}
.y5d_c00411{bottom:359.066667pt;}
.y28_c00411{bottom:362.533333pt;}
.y5c_c00411{bottom:375.066667pt;}
.y27_c00411{bottom:378.800000pt;}
.y5b_c00411{bottom:391.066667pt;}
.y26_c00411{bottom:394.533333pt;}
.y5a_c00411{bottom:407.066667pt;}
.y25_c00411{bottom:414.133333pt;}
.y59_c00411{bottom:423.066667pt;}
.y24_c00411{bottom:432.933333pt;}
.y58_c00411{bottom:438.800000pt;}
.y23_c00411{bottom:449.866667pt;}
.y57_c00411{bottom:454.533333pt;}
.y22_c00411{bottom:465.866667pt;}
.y56_c00411{bottom:470.533333pt;}
.y21_c00411{bottom:481.600000pt;}
.y55_c00411{bottom:486.533333pt;}
.y20_c00411{bottom:498.266667pt;}
.y54_c00411{bottom:502.533333pt;}
.y1f_c00411{bottom:514.800000pt;}
.y53_c00411{bottom:518.266667pt;}
.y1e_c00411{bottom:533.066667pt;}
.y52_c00411{bottom:534.266667pt;}
.y51_c00411{bottom:550.000000pt;}
.y1d_c00411{bottom:555.466667pt;}
.y50_c00411{bottom:566.000000pt;}
.y1c_c00411{bottom:572.133333pt;}
.y4f_c00411{bottom:581.733333pt;}
.y1b_c00411{bottom:588.133333pt;}
.y4e_c00411{bottom:597.733333pt;}
.y1a_c00411{bottom:603.866667pt;}
.y4d_c00411{bottom:613.466667pt;}
.y19_c00411{bottom:620.133333pt;}
.y4c_c00411{bottom:632.933333pt;}
.y18_c00411{bottom:635.866667pt;}
.y4b_c00411{bottom:644.133333pt;}
.y17_c00411{bottom:655.733333pt;}
.y4a_c00411{bottom:658.266667pt;}
.y16_c00411{bottom:672.000000pt;}
.y15_c00411{bottom:687.733333pt;}
.y49_c00411{bottom:688.000000pt;}
.y14_c00411{bottom:703.733333pt;}
.y48_c00411{bottom:704.666667pt;}
.y13_c00411{bottom:719.733333pt;}
.y47_c00411{bottom:723.600000pt;}
.y12_c00411{bottom:735.733333pt;}
.y46_c00411{bottom:739.866667pt;}
.y11_c00411{bottom:751.733333pt;}
.y45_c00411{bottom:755.866667pt;}
.y10_c00411{bottom:767.733333pt;}
.y44_c00411{bottom:774.133333pt;}
.yf_c00411{bottom:785.333333pt;}
.y43_c00411{bottom:791.333333pt;}
.ye_c00411{bottom:803.200000pt;}
.y42_c00411{bottom:818.133333pt;}
.yd_c00411{bottom:819.200000pt;}
.y41_c00411{bottom:834.800000pt;}
.yc_c00411{bottom:839.066667pt;}
.y40_c00411{bottom:851.066667pt;}
.yb_c00411{bottom:855.066667pt;}
.y3f_c00411{bottom:866.800000pt;}
.ya_c00411{bottom:870.400000pt;}
.y3e_c00411{bottom:882.533333pt;}
.y9_c00411{bottom:886.666667pt;}
.y3d_c00411{bottom:901.733333pt;}
.y8_c00411{bottom:904.933333pt;}
.y3c_c00411{bottom:918.000000pt;}
.y7_c00411{bottom:921.866667pt;}
.y3b_c00411{bottom:934.266667pt;}
.y6_c00411{bottom:944.933333pt;}
.y3a_c00411{bottom:950.000000pt;}
.y5_c00411{bottom:961.866667pt;}
.y39_c00411{bottom:966.666667pt;}
.y4_c00411{bottom:977.866667pt;}
.y38_c00411{bottom:982.000000pt;}
.y3_c00411{bottom:993.600000pt;}
.y37_c00411{bottom:997.733333pt;}
.y36_c00411{bottom:1002.266667pt;}
.y1_c00411{bottom:1014.133333pt;}
.y2_c00411{bottom:1019.200000pt;}
.h8_c00411{height:42.666667pt;}
.h7_c00411{height:48.000000pt;}
.h6_c00411{height:53.333333pt;}
.h5_c00411{height:58.666667pt;}
.h4_c00411{height:64.000000pt;}
.h3_c00411{height:69.333333pt;}
.h2_c00411{height:74.666667pt;}
.h1_c00411{height:1127.333333pt;}
.h0_c00411{height:1127.359944pt;}
.w0_c00411{width:853.760009pt;}
.w1_c00411{width:854.000000pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:170.266667pt;}
.x37_c00411{left:172.533333pt;}
.x1d_c00411{left:173.733333pt;}
.x63_c00411{left:176.266667pt;}
.x75_c00411{left:179.866667pt;}
.x85_c00411{left:183.066667pt;}
.x9c_c00411{left:186.533333pt;}
.x40_c00411{left:188.666667pt;}
.x22_c00411{left:190.133333pt;}
.x3_c00411{left:191.066667pt;}
.x5f_c00411{left:192.800000pt;}
.x77_c00411{left:196.133333pt;}
.x38_c00411{left:197.866667pt;}
.x81_c00411{left:199.600000pt;}
.x98_c00411{left:201.200000pt;}
.xa5_c00411{left:205.200000pt;}
.x24_c00411{left:209.333333pt;}
.x2d_c00411{left:211.066667pt;}
.x60_c00411{left:212.000000pt;}
.x1e_c00411{left:215.066667pt;}
.x39_c00411{left:216.133333pt;}
.x25_c00411{left:217.333333pt;}
.x76_c00411{left:218.533333pt;}
.x82_c00411{left:219.466667pt;}
.xa9_c00411{left:220.533333pt;}
.x91_c00411{left:221.466667pt;}
.x13_c00411{left:222.533333pt;}
.x6f_c00411{left:225.733333pt;}
.x32_c00411{left:226.800000pt;}
.x19_c00411{left:227.866667pt;}
.xb_c00411{left:228.933333pt;}
.x23_c00411{left:231.466667pt;}
.x4_c00411{left:232.666667pt;}
.x83_c00411{left:234.133333pt;}
.x72_c00411{left:235.200000pt;}
.x41_c00411{left:236.400000pt;}
.x9d_c00411{left:237.733333pt;}
.x64_c00411{left:239.333333pt;}
.x33_c00411{left:240.533333pt;}
.x53_c00411{left:242.000000pt;}
.x4b_c00411{left:242.933333pt;}
.xc_c00411{left:244.933333pt;}
.x68_c00411{left:246.666667pt;}
.x1f_c00411{left:248.000000pt;}
.x54_c00411{left:250.000000pt;}
.x57_c00411{left:252.400000pt;}
.x92_c00411{left:254.400000pt;}
.x44_c00411{left:255.466667pt;}
.x84_c00411{left:259.066667pt;}
.x4c_c00411{left:260.533333pt;}
.x7d_c00411{left:262.266667pt;}
.x65_c00411{left:266.266667pt;}
.xab_c00411{left:267.866667pt;}
.x6a_c00411{left:269.733333pt;}
.x34_c00411{left:270.666667pt;}
.x58_c00411{left:272.533333pt;}
.x3a_c00411{left:274.400000pt;}
.x9e_c00411{left:276.400000pt;}
.x79_c00411{left:277.466667pt;}
.x5_c00411{left:278.400000pt;}
.x50_c00411{left:282.400000pt;}
.x26_c00411{left:284.800000pt;}
.x1a_c00411{left:286.400000pt;}
.x59_c00411{left:287.600000pt;}
.xd_c00411{left:288.800000pt;}
.x8c_c00411{left:290.400000pt;}
.x99_c00411{left:291.600000pt;}
.x66_c00411{left:292.533333pt;}
.x45_c00411{left:294.533333pt;}
.x93_c00411{left:295.733333pt;}
.x1b_c00411{left:296.666667pt;}
.x3b_c00411{left:299.333333pt;}
.x35_c00411{left:301.333333pt;}
.x14_c00411{left:302.800000pt;}
.x88_c00411{left:304.400000pt;}
.x2e_c00411{left:305.466667pt;}
.x48_c00411{left:307.333333pt;}
.x73_c00411{left:308.800000pt;}
.xa6_c00411{left:309.733333pt;}
.x4d_c00411{left:311.066667pt;}
.x29_c00411{left:312.400000pt;}
.x49_c00411{left:313.733333pt;}
.x95_c00411{left:315.466667pt;}
.x3c_c00411{left:316.933333pt;}
.x27_c00411{left:318.133333pt;}
.x86_c00411{left:320.133333pt;}
.x36_c00411{left:321.466667pt;}
.x55_c00411{left:322.400000pt;}
.x7e_c00411{left:324.000000pt;}
.x2f_c00411{left:327.866667pt;}
.x94_c00411{left:329.333333pt;}
.x8d_c00411{left:331.333333pt;}
.xe_c00411{left:332.666667pt;}
.x1c_c00411{left:335.333333pt;}
.x87_c00411{left:337.733333pt;}
.x6_c00411{left:338.666667pt;}
.x8e_c00411{left:339.600000pt;}
.x15_c00411{left:340.933333pt;}
.x6b_c00411{left:342.000000pt;}
.xaa_c00411{left:343.066667pt;}
.x96_c00411{left:344.000000pt;}
.x74_c00411{left:347.200000pt;}
.x5a_c00411{left:348.666667pt;}
.x3d_c00411{left:349.600000pt;}
.xa3_c00411{left:350.666667pt;}
.x20_c00411{left:352.266667pt;}
.x46_c00411{left:355.066667pt;}
.x9f_c00411{left:357.066667pt;}
.x7_c00411{left:358.533333pt;}
.x6c_c00411{left:361.200000pt;}
.x7a_c00411{left:362.533333pt;}
.xf_c00411{left:364.666667pt;}
.x9a_c00411{left:365.600000pt;}
.x3e_c00411{left:367.866667pt;}
.x56_c00411{left:368.800000pt;}
.x8f_c00411{left:370.266667pt;}
.x9b_c00411{left:372.133333pt;}
.x61_c00411{left:373.333333pt;}
.x30_c00411{left:374.933333pt;}
.xa2_c00411{left:376.266667pt;}
.x8_c00411{left:377.733333pt;}
.x4e_c00411{left:379.600000pt;}
.x10_c00411{left:380.933333pt;}
.x47_c00411{left:383.200000pt;}
.x16_c00411{left:384.400000pt;}
.x90_c00411{left:388.800000pt;}
.x7f_c00411{left:390.666667pt;}
.x89_c00411{left:393.066667pt;}
.x2_c00411{left:395.200000pt;}
.x7b_c00411{left:396.133333pt;}
.x51_c00411{left:398.133333pt;}
.x28_c00411{left:399.066667pt;}
.xa7_c00411{left:401.600000pt;}
.x5d_c00411{left:404.000000pt;}
.x6d_c00411{left:406.266667pt;}
.x31_c00411{left:407.866667pt;}
.x2a_c00411{left:409.066667pt;}
.x5b_c00411{left:410.400000pt;}
.x78_c00411{left:411.866667pt;}
.x9_c00411{left:413.600000pt;}
.xa0_c00411{left:415.333333pt;}
.x11_c00411{left:417.466667pt;}
.x4f_c00411{left:418.666667pt;}
.x70_c00411{left:422.400000pt;}
.x2b_c00411{left:423.466667pt;}
.x21_c00411{left:425.600000pt;}
.x17_c00411{left:427.866667pt;}
.x80_c00411{left:429.733333pt;}
.x62_c00411{left:431.200000pt;}
.x8a_c00411{left:433.466667pt;}
.x69_c00411{left:437.066667pt;}
.x42_c00411{left:438.000000pt;}
.x5c_c00411{left:438.933333pt;}
.xa_c00411{left:440.533333pt;}
.x4a_c00411{left:442.666667pt;}
.x18_c00411{left:448.000000pt;}
.x97_c00411{left:449.200000pt;}
.x43_c00411{left:450.133333pt;}
.x2c_c00411{left:451.333333pt;}
.xac_c00411{left:453.066667pt;}
.x3f_c00411{left:454.000000pt;}
.x7c_c00411{left:457.333333pt;}
.xa4_c00411{left:459.600000pt;}
.x52_c00411{left:460.533333pt;}
.x67_c00411{left:462.666667pt;}
.x12_c00411{left:464.533333pt;}
.x5e_c00411{left:467.333333pt;}
.x71_c00411{left:470.133333pt;}
.x8b_c00411{left:471.866667pt;}
.x6e_c00411{left:474.133333pt;}
.xa1_c00411{left:476.133333pt;}
.xa8_c00411{left:477.733333pt;}
.xad_c00411{left:481.866667pt;}
.xd3_c00411{left:493.466667pt;}
.xed_c00411{left:496.000000pt;}
.x107_c00411{left:497.333333pt;}
.x151_c00411{left:505.333333pt;}
.x158_c00411{left:507.466667pt;}
.xae_c00411{left:509.066667pt;}
.xd8_c00411{left:510.133333pt;}
.xf1_c00411{left:511.066667pt;}
.xf6_c00411{left:512.000000pt;}
.xfc_c00411{left:513.733333pt;}
.x127_c00411{left:514.800000pt;}
.x132_c00411{left:515.733333pt;}
.x140_c00411{left:516.800000pt;}
.x14a_c00411{left:518.000000pt;}
.x14d_c00411{left:519.200000pt;}
.x14e_c00411{left:520.266667pt;}
.x154_c00411{left:521.733333pt;}
.x117_c00411{left:523.066667pt;}
.x15a_c00411{left:524.800000pt;}
.x15d_c00411{left:526.533333pt;}
.xf4_c00411{left:528.266667pt;}
.xd9_c00411{left:529.600000pt;}
.xc7_c00411{left:531.066667pt;}
.xe7_c00411{left:534.133333pt;}
.x12f_c00411{left:535.333333pt;}
.xbc_c00411{left:538.133333pt;}
.x101_c00411{left:539.200000pt;}
.x148_c00411{left:540.400000pt;}
.xf7_c00411{left:541.733333pt;}
.x128_c00411{left:542.933333pt;}
.x133_c00411{left:544.800000pt;}
.x144_c00411{left:546.800000pt;}
.x15b_c00411{left:547.866667pt;}
.x11e_c00411{left:549.200000pt;}
.xf2_c00411{left:551.066667pt;}
.xbf_c00411{left:552.133333pt;}
.x150_c00411{left:553.733333pt;}
.xeb_c00411{left:555.733333pt;}
.xda_c00411{left:557.733333pt;}
.xc0_c00411{left:560.133333pt;}
.xcc_c00411{left:561.466667pt;}
.x121_c00411{left:564.133333pt;}
.xee_c00411{left:565.066667pt;}
.x105_c00411{left:566.000000pt;}
.x13c_c00411{left:566.933333pt;}
.xe1_c00411{left:568.133333pt;}
.x145_c00411{left:569.466667pt;}
.xaf_c00411{left:570.533333pt;}
.xb6_c00411{left:572.400000pt;}
.xec_c00411{left:574.000000pt;}
.xdb_c00411{left:575.066667pt;}
.xef_c00411{left:576.533333pt;}
.x129_c00411{left:578.133333pt;}
.xd4_c00411{left:579.600000pt;}
.x14b_c00411{left:581.333333pt;}
.xd0_c00411{left:582.800000pt;}
.xcd_c00411{left:584.133333pt;}
.x135_c00411{left:585.200000pt;}
.xf8_c00411{left:589.733333pt;}
.x152_c00411{left:591.466667pt;}
.x11f_c00411{left:592.666667pt;}
.x10d_c00411{left:593.600000pt;}
.xc8_c00411{left:595.066667pt;}
.x141_c00411{left:596.533333pt;}
.xc1_c00411{left:597.600000pt;}
.xfd_c00411{left:598.800000pt;}
.x12c_c00411{left:600.933333pt;}
.x136_c00411{left:602.533333pt;}
.xb7_c00411{left:603.466667pt;}
.x12a_c00411{left:604.400000pt;}
.x130_c00411{left:605.333333pt;}
.xc2_c00411{left:606.266667pt;}
.xb0_c00411{left:607.600000pt;}
.x15c_c00411{left:610.000000pt;}
.x11a_c00411{left:611.733333pt;}
.xfe_c00411{left:612.933333pt;}
.x122_c00411{left:615.600000pt;}
.x159_c00411{left:617.200000pt;}
.xd1_c00411{left:618.933333pt;}
.xe2_c00411{left:620.400000pt;}
.xb8_c00411{left:622.000000pt;}
.xf9_c00411{left:625.600000pt;}
.xb1_c00411{left:626.800000pt;}
.x13d_c00411{left:627.733333pt;}
.xe3_c00411{left:629.066667pt;}
.x123_c00411{left:630.933333pt;}
.xbd_c00411{left:632.533333pt;}
.x108_c00411{left:634.266667pt;}
.xd5_c00411{left:635.600000pt;}
.xf5_c00411{left:637.333333pt;}
.x137_c00411{left:638.400000pt;}
.xe4_c00411{left:639.333333pt;}
.xd2_c00411{left:641.600000pt;}
.xff_c00411{left:642.666667pt;}
.x102_c00411{left:643.866667pt;}
.x10e_c00411{left:645.066667pt;}
.x118_c00411{left:646.933333pt;}
.x142_c00411{left:649.066667pt;}
.xc9_c00411{left:651.066667pt;}
.x11b_c00411{left:653.066667pt;}
.x124_c00411{left:655.200000pt;}
.x138_c00411{left:656.266667pt;}
.xc3_c00411{left:657.466667pt;}
.xd6_c00411{left:661.866667pt;}
.x10f_c00411{left:664.533333pt;}
.x14c_c00411{left:665.600000pt;}
.xdc_c00411{left:668.800000pt;}
.x110_c00411{left:670.666667pt;}
.xb2_c00411{left:673.200000pt;}
.x139_c00411{left:674.533333pt;}
.x13e_c00411{left:675.466667pt;}
.xc4_c00411{left:676.666667pt;}
.xdd_c00411{left:678.400000pt;}
.xb9_c00411{left:679.333333pt;}
.x109_c00411{left:680.933333pt;}
.xf0_c00411{left:682.400000pt;}
.x111_c00411{left:683.733333pt;}
.xce_c00411{left:686.800000pt;}
.x11c_c00411{left:688.266667pt;}
.xfa_c00411{left:689.333333pt;}
.xe5_c00411{left:690.266667pt;}
.x15e_c00411{left:691.333333pt;}
.xb3_c00411{left:693.333333pt;}
.xe8_c00411{left:694.533333pt;}
.xca_c00411{left:697.200000pt;}
.x155_c00411{left:698.266667pt;}
.xde_c00411{left:701.466667pt;}
.x112_c00411{left:703.200000pt;}
.x106_c00411{left:704.666667pt;}
.xd7_c00411{left:705.733333pt;}
.xbe_c00411{left:709.333333pt;}
.x113_c00411{left:710.266667pt;}
.x156_c00411{left:711.733333pt;}
.xe9_c00411{left:712.800000pt;}
.x14f_c00411{left:715.333333pt;}
.x114_c00411{left:716.666667pt;}
.x13a_c00411{left:717.733333pt;}
.x146_c00411{left:720.800000pt;}
.xdf_c00411{left:724.533333pt;}
.x10a_c00411{left:726.000000pt;}
.x120_c00411{left:727.333333pt;}
.xfb_c00411{left:729.066667pt;}
.xc5_c00411{left:730.800000pt;}
.x100_c00411{left:732.000000pt;}
.x115_c00411{left:734.000000pt;}
.x11d_c00411{left:734.933333pt;}
.x134_c00411{left:738.266667pt;}
.x149_c00411{left:740.000000pt;}
.x131_c00411{left:743.600000pt;}
.xb4_c00411{left:746.133333pt;}
.xba_c00411{left:747.200000pt;}
.xcf_c00411{left:748.266667pt;}
.xc6_c00411{left:749.333333pt;}
.xe0_c00411{left:752.666667pt;}
.x10b_c00411{left:753.866667pt;}
.x12d_c00411{left:755.466667pt;}
.xcb_c00411{left:758.266667pt;}
.x119_c00411{left:759.600000pt;}
.x103_c00411{left:760.933333pt;}
.x12b_c00411{left:762.533333pt;}
.x125_c00411{left:763.466667pt;}
.x13b_c00411{left:765.066667pt;}
.x147_c00411{left:767.200000pt;}
.xbb_c00411{left:768.266667pt;}
.x12e_c00411{left:769.200000pt;}
.xe6_c00411{left:770.266667pt;}
.xb5_c00411{left:772.400000pt;}
.x104_c00411{left:774.666667pt;}
.x143_c00411{left:781.333333pt;}
.xea_c00411{left:782.266667pt;}
.x10c_c00411{left:784.266667pt;}
.x116_c00411{left:786.400000pt;}
.x13f_c00411{left:787.466667pt;}
.x126_c00411{left:789.333333pt;}
.x153_c00411{left:792.400000pt;}
.x157_c00411{left:794.400000pt;}
.xf3_c00411{left:800.400000pt;}
}





/* 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_c00412 {
    display:none;
  }
  .loading-indicator_c00412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00412 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_c00412 { 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_c00412" -> "#page-container .classname_c00412")
 */
.pf_c00412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00412 { /* 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_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00412 { /* 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_c00412 { /* 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_c00412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00412 {overflow:visible;}
  }
}
.c_c00412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00412 { /* 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_c00412:after { /* webkit #35443 */
  content: '';
}
.t_c00412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00412 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 */
}
.__c00412 { /* 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_c00412 { /* info for Javascript */
  display:none;
}
.l_c00412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00412: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_c00412 {
    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_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00412.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_c00412 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00412;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.000000;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;}
.mc_c00412{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00412{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00412{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00412{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00412{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00412{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me7_c00412{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m50_c00412{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.me6_c00412{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00412{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m92_c00412{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m53_c00412{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00412{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me8_c00412{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m49_c00412{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m67_c00412{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00412{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00412{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.me9_c00412{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00412{transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);}
.m66_c00412{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.meb_c00412{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m100_c00412{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00412{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00412{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00412{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00412{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md3_c00412{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md1_c00412{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m55_c00412{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m91_c00412{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00412{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00412{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m86_c00412{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me2_c00412{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m9_c00412{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m5_c00412{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00412{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m34_c00412{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m93_c00412{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00412{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00412{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00412{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00412{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00412{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m99_c00412{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m94_c00412{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00412{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m57_c00412{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m61_c00412{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7_c00412{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00412{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me3_c00412{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m45_c00412{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m29_c00412{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00412{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m70_c00412{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00412{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00412{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00412{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00412{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m78_c00412{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00412{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m72_c00412{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00412{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m39_c00412{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00412{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00412{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00412{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m56_c00412{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00412{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m103_c00412{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00412{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00412{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m14_c00412{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m51_c00412{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m12_c00412{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m24_c00412{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m33_c00412{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m76_c00412{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m36_c00412{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m58_c00412{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m32_c00412{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mec_c00412{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.me0_c00412{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00412{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00412{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00412{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m77_c00412{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m71_c00412{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m98_c00412{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m16_c00412{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m23_c00412{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m80_c00412{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00412{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb_c00412{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m17_c00412{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00412{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m69_c00412{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00412{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.maa_c00412{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00412{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m35_c00412{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00412{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00412{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00412{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m13_c00412{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00412{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mad_c00412{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00412{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m74_c00412{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00412{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00412{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00412{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m6_c00412{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf_c00412{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00412{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00412{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10_c00412{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m64_c00412{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m48_c00412{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md8_c00412{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00412{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00412{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mca_c00412{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00412{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00412{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m15_c00412{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m37_c00412{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m46_c00412{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m81_c00412{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8_c00412{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00412{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m30_c00412{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m20_c00412{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma_c00412{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mae_c00412{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m82_c00412{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00412{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00412{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mff_c00412{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00412{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m87_c00412{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m19_c00412{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m44_c00412{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m90_c00412{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m31_c00412{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00412{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m84_c00412{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00412{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00412{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00412{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m40_c00412{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.md4_c00412{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00412{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00412{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m27_c00412{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m75_c00412{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md0_c00412{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00412{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11_c00412{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m26_c00412{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00412{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m88_c00412{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00412{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00412{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00412{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00412{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mab_c00412{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00412{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m65_c00412{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00412{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m73_c00412{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00412{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00412{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m59_c00412{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md2_c00412{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m95_c00412{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00412{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00412{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.me1_c00412{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md9_c00412{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00412{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00412{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m38_c00412{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me4_c00412{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00412{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m21_c00412{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mef_c00412{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00412{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m79_c00412{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m63_c00412{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m47_c00412{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m22_c00412{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m83_c00412{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00412{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00412{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me5_c00412{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m102_c00412{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00412{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m96_c00412{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00412{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m18_c00412{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00412{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m85_c00412{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.maf_c00412{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00412{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md5_c00412{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00412{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m60_c00412{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mce_c00412{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mac_c00412{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00412{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m68_c00412{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md_c00412{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00412{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00412{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.md7_c00412{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m28_c00412{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m101_c00412{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00412{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00412{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m62_c00412{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00412{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00412{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m89_c00412{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mee_c00412{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00412{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00412{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00412{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00412{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00412{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.mde_c00412{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.me_c00412{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00412{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m52_c00412{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m97_c00412{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m54_c00412{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00412{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00412{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mba_c00412{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00412{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.mda_c00412{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00412{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00412{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m25_c00412{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m104_c00412{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m41_c00412{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00412{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m43_c00412{transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);}
.m42_c00412{transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);}
.mea_c00412{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00412{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.med_c00412{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00412{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.md6_c00412{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls1_c00412{letter-spacing:0.000000px;}
.ls0_c00412{letter-spacing:70.000000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{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__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00412{word-spacing:-100.000000px;}
.ws2_c00412{word-spacing:-5.212034px;}
.wsa_c00412{word-spacing:0.000000px;}
.ws1_c00412{word-spacing:9.285714px;}
.ws3_c00412{word-spacing:22.142857px;}
.ws6_c00412{word-spacing:22.812500px;}
.ws5_c00412{word-spacing:25.714286px;}
.ws7_c00412{word-spacing:40.000000px;}
.ws4_c00412{word-spacing:44.166667px;}
.ws9_c00412{word-spacing:60.000000px;}
.ws0_c00412{word-spacing:60.333333px;}
._4_c00412{margin-left:-70.000000px;}
._3_c00412{width:4.166667px;}
._5_c00412{width:52.142857px;}
._1_c00412{width:55.714286px;}
._0_c00412{width:59.285714px;}
._6_c00412{width:64.642857px;}
._2_c00412{width:74.166667px;}
.fc0_c00412{color:transparent;}
.fs4_c00412{font-size:30.000000px;}
.fs3_c00412{font-size:48.000000px;}
.fs6_c00412{font-size:54.000000px;}
.fs2_c00412{font-size:60.000000px;}
.fs1_c00412{font-size:66.000000px;}
.fs5_c00412{font-size:72.000000px;}
.fs0_c00412{font-size:78.000000px;}
.y0_c00412{bottom:0.000000px;}
.y6a_c00412{bottom:173.850000px;}
.y69_c00412{bottom:191.850000px;}
.y36_c00412{bottom:192.600000px;}
.y35_c00412{bottom:207.000000px;}
.y68_c00412{bottom:217.050000px;}
.y34_c00412{bottom:220.650000px;}
.y67_c00412{bottom:232.950000px;}
.y33_c00412{bottom:235.050000px;}
.y66_c00412{bottom:247.350000px;}
.y32_c00412{bottom:249.150000px;}
.y65_c00412{bottom:261.750000px;}
.y31_c00412{bottom:263.850000px;}
.y64_c00412{bottom:274.350000px;}
.y30_c00412{bottom:277.950000px;}
.y63_c00412{bottom:287.400000px;}
.y2f_c00412{bottom:292.650000px;}
.y62_c00412{bottom:303.600000px;}
.y2e_c00412{bottom:306.750000px;}
.y61_c00412{bottom:316.500000px;}
.y2d_c00412{bottom:321.150000px;}
.y2c_c00412{bottom:335.550000px;}
.y60_c00412{bottom:336.600000px;}
.y2b_c00412{bottom:349.950000px;}
.y5f_c00412{bottom:365.400000px;}
.y5e_c00412{bottom:378.750000px;}
.y2a_c00412{bottom:388.050000px;}
.y5d_c00412{bottom:393.150000px;}
.y29_c00412{bottom:405.750000px;}
.y5c_c00412{bottom:407.550000px;}
.y5b_c00412{bottom:422.700000px;}
.y28_c00412{bottom:431.550000px;}
.y5a_c00412{bottom:435.600000px;}
.y59_c00412{bottom:451.050000px;}
.y27_c00412{bottom:457.800000px;}
.y58_c00412{bottom:465.450000px;}
.y57_c00412{bottom:479.550000px;}
.y26_c00412{bottom:484.500000px;}
.y56_c00412{bottom:493.200000px;}
.y25_c00412{bottom:503.550000px;}
.y55_c00412{bottom:507.600000px;}
.y24_c00412{bottom:521.250000px;}
.y54_c00412{bottom:522.750000px;}
.y53_c00412{bottom:536.700000px;}
.y23_c00412{bottom:542.250000px;}
.y52_c00412{bottom:552.600000px;}
.y22_c00412{bottom:561.300000px;}
.y51_c00412{bottom:571.650000px;}
.y21_c00412{bottom:579.300000px;}
.y50_c00412{bottom:589.650000px;}
.y20_c00412{bottom:597.300000px;}
.y4f_c00412{bottom:607.650000px;}
.y1f_c00412{bottom:619.200000px;}
.y4e_c00412{bottom:633.900000px;}
.y1e_c00412{bottom:637.200000px;}
.y4d_c00412{bottom:651.600000px;}
.y1d_c00412{bottom:655.200000px;}
.y4c_c00412{bottom:669.600000px;}
.y1c_c00412{bottom:672.450000px;}
.y4b_c00412{bottom:687.300000px;}
.y1b_c00412{bottom:693.450000px;}
.y4a_c00412{bottom:705.300000px;}
.y1a_c00412{bottom:712.500000px;}
.y49_c00412{bottom:723.300000px;}
.y19_c00412{bottom:730.500000px;}
.y48_c00412{bottom:741.600000px;}
.y18_c00412{bottom:750.300000px;}
.y47_c00412{bottom:758.550000px;}
.y17_c00412{bottom:761.550000px;}
.y14_c00412{bottom:769.050000px;}
.y16_c00412{bottom:771.300000px;}
.y15_c00412{bottom:771.600000px;}
.y46_c00412{bottom:780.450000px;}
.y13_c00412{bottom:789.900000px;}
.y12_c00412{bottom:798.150000px;}
.y45_c00412{bottom:811.050000px;}
.y11_c00412{bottom:815.700000px;}
.y10_c00412{bottom:833.700000px;}
.y44_c00412{bottom:837.450000px;}
.y43_c00412{bottom:855.750000px;}
.yf_c00412{bottom:865.050000px;}
.y42_c00412{bottom:873.750000px;}
.y41_c00412{bottom:891.750000px;}
.ye_c00412{bottom:900.000000px;}
.y40_c00412{bottom:917.700000px;}
.yd_c00412{bottom:918.300000px;}
.y3f_c00412{bottom:935.700000px;}
.yc_c00412{bottom:936.600000px;}
.yb_c00412{bottom:954.300000px;}
.y3e_c00412{bottom:957.300000px;}
.ya_c00412{bottom:980.100000px;}
.y3d_c00412{bottom:983.250000px;}
.y9_c00412{bottom:998.850000px;}
.y3c_c00412{bottom:1001.550000px;}
.y8_c00412{bottom:1017.150000px;}
.y3b_c00412{bottom:1027.350000px;}
.y7_c00412{bottom:1034.850000px;}
.y6_c00412{bottom:1052.550000px;}
.y3a_c00412{bottom:1054.050000px;}
.y5_c00412{bottom:1070.250000px;}
.y39_c00412{bottom:1079.700000px;}
.y4_c00412{bottom:1095.000000px;}
.y38_c00412{bottom:1099.500000px;}
.y3_c00412{bottom:1114.500000px;}
.y37_c00412{bottom:1117.500000px;}
.y2_c00412{bottom:1137.300000px;}
.y1_c00412{bottom:1142.700000px;}
.h6_c00412{height:30.000000px;}
.h5_c00412{height:48.000000px;}
.h8_c00412{height:54.000000px;}
.h4_c00412{height:60.000000px;}
.h3_c00412{height:66.000000px;}
.h7_c00412{height:72.000000px;}
.h2_c00412{height:78.000000px;}
.h0_c00412{height:1266.480010px;}
.h1_c00412{height:1266.750000px;}
.w0_c00412{width:960.480010px;}
.w1_c00412{width:960.750000px;}
.x0_c00412{left:0.000000px;}
.x3_c00412{left:81.300000px;}
.x45_c00412{left:84.600000px;}
.xe_c00412{left:86.100000px;}
.x86_c00412{left:88.650000px;}
.x94_c00412{left:89.850000px;}
.x40_c00412{left:91.050000px;}
.x15_c00412{left:101.400000px;}
.xc_c00412{left:103.350000px;}
.x49_c00412{left:104.400000px;}
.x73_c00412{left:105.600000px;}
.x81_c00412{left:107.100000px;}
.x9a_c00412{left:113.550000px;}
.x91_c00412{left:115.350000px;}
.x87_c00412{left:117.450000px;}
.x7f_c00412{left:118.500000px;}
.x54_c00412{left:121.650000px;}
.x59_c00412{left:123.450000px;}
.x4_c00412{left:126.600000px;}
.x7c_c00412{left:128.550000px;}
.x23_c00412{left:131.700000px;}
.x96_c00412{left:133.800000px;}
.x2d_c00412{left:135.750000px;}
.x66_c00412{left:137.400000px;}
.x3d_c00412{left:138.450000px;}
.x95_c00412{left:139.500000px;}
.x41_c00412{left:142.800000px;}
.x28_c00412{left:144.600000px;}
.x1d_c00412{left:146.700000px;}
.x6f_c00412{left:147.750000px;}
.x51_c00412{left:150.300000px;}
.x16_c00412{left:151.800000px;}
.x56_c00412{left:155.400000px;}
.x97_c00412{left:157.200000px;}
.x4d_c00412{left:161.100000px;}
.x77_c00412{left:162.600000px;}
.x38_c00412{left:164.100000px;}
.x42_c00412{left:165.150000px;}
.x8a_c00412{left:167.850000px;}
.xf_c00412{left:169.200000px;}
.x6d_c00412{left:171.750000px;}
.x1e_c00412{left:175.200000px;}
.x29_c00412{left:178.500000px;}
.x43_c00412{left:180.750000px;}
.x2e_c00412{left:182.550000px;}
.x61_c00412{left:184.500000px;}
.x17_c00412{left:186.300000px;}
.x5_c00412{left:189.900000px;}
.x2f_c00412{left:193.350000px;}
.x67_c00412{left:195.000000px;}
.x6e_c00412{left:196.950000px;}
.x5e_c00412{left:198.750000px;}
.x84_c00412{left:201.000000px;}
.x3e_c00412{left:203.700000px;}
.x62_c00412{left:205.050000px;}
.xd_c00412{left:207.450000px;}
.x46_c00412{left:208.500000px;}
.x70_c00412{left:210.450000px;}
.x7d_c00412{left:211.500000px;}
.x10_c00412{left:212.700000px;}
.x5f_c00412{left:215.700000px;}
.x18_c00412{left:219.450000px;}
.x8d_c00412{left:221.700000px;}
.x4e_c00412{left:223.050000px;}
.x74_c00412{left:224.700000px;}
.x2a_c00412{left:228.600000px;}
.x85_c00412{left:229.800000px;}
.x24_c00412{left:232.500000px;}
.x68_c00412{left:233.850000px;}
.x6_c00412{left:236.700000px;}
.x39_c00412{left:237.900000px;}
.x30_c00412{left:239.400000px;}
.x19_c00412{left:240.750000px;}
.x78_c00412{left:242.850000px;}
.x52_c00412{left:245.400000px;}
.x33_c00412{left:246.900000px;}
.x3a_c00412{left:248.400000px;}
.x47_c00412{left:249.900000px;}
.x44_c00412{left:254.250000px;}
.x11_c00412{left:255.600000px;}
.x57_c00412{left:257.700000px;}
.x2b_c00412{left:259.200000px;}
.x4f_c00412{left:261.600000px;}
.x8f_c00412{left:263.100000px;}
.x71_c00412{left:264.150000px;}
.x79_c00412{left:265.200000px;}
.x4a_c00412{left:269.250000px;}
.x25_c00412{left:271.350000px;}
.x7e_c00412{left:273.150000px;}
.x7_c00412{left:274.500000px;}
.x34_c00412{left:275.700000px;}
.x90_c00412{left:276.750000px;}
.x31_c00412{left:278.250000px;}
.x1f_c00412{left:279.600000px;}
.x1a_c00412{left:282.150000px;}
.x8b_c00412{left:283.800000px;}
.x6a_c00412{left:285.450000px;}
.x3b_c00412{left:286.950000px;}
.x48_c00412{left:290.250000px;}
.x3f_c00412{left:292.950000px;}
.x98_c00412{left:294.300000px;}
.x69_c00412{left:295.500000px;}
.x5a_c00412{left:299.850000px;}
.x7a_c00412{left:300.900000px;}
.x35_c00412{left:303.000000px;}
.x8_c00412{left:308.400000px;}
.x53_c00412{left:312.300000px;}
.x20_c00412{left:314.100000px;}
.x12_c00412{left:315.300000px;}
.x1b_c00412{left:319.200000px;}
.x50_c00412{left:321.000000px;}
.x26_c00412{left:322.050000px;}
.x3c_c00412{left:324.450000px;}
.x92_c00412{left:325.950000px;}
.x1_c00412{left:327.900000px;}
.x75_c00412{left:331.350000px;}
.x32_c00412{left:334.050000px;}
.x80_c00412{left:336.000000px;}
.x63_c00412{left:338.250000px;}
.x13_c00412{left:339.750000px;}
.x72_c00412{left:341.850000px;}
.x21_c00412{left:343.650000px;}
.x9_c00412{left:348.000000px;}
.x4b_c00412{left:351.300000px;}
.x88_c00412{left:353.550000px;}
.x82_c00412{left:357.000000px;}
.x99_c00412{left:358.350000px;}
.x27_c00412{left:359.850000px;}
.x6b_c00412{left:362.550000px;}
.x36_c00412{left:363.900000px;}
.x89_c00412{left:365.850000px;}
.x2c_c00412{left:367.200000px;}
.x8e_c00412{left:368.850000px;}
.x5b_c00412{left:370.050000px;}
.x64_c00412{left:373.500000px;}
.xa_c00412{left:374.700000px;}
.x22_c00412{left:375.750000px;}
.x93_c00412{left:378.150000px;}
.x14_c00412{left:380.100000px;}
.x83_c00412{left:382.950000px;}
.x1c_c00412{left:384.750000px;}
.x5c_c00412{left:387.300000px;}
.x65_c00412{left:390.750000px;}
.x7b_c00412{left:395.250000px;}
.x4c_c00412{left:397.350000px;}
.x37_c00412{left:400.650000px;}
.x58_c00412{left:402.000000px;}
.x5d_c00412{left:405.000000px;}
.xb_c00412{left:406.050000px;}
.x55_c00412{left:408.450000px;}
.x8c_c00412{left:410.400000px;}
.x76_c00412{left:411.600000px;}
.x6c_c00412{left:412.950000px;}
.x60_c00412{left:420.600000px;}
.xc5_c00412{left:442.050000px;}
.xd7_c00412{left:443.100000px;}
.x109_c00412{left:444.900000px;}
.xab_c00412{left:447.600000px;}
.x9b_c00412{left:458.700000px;}
.xb4_c00412{left:459.750000px;}
.xc8_c00412{left:460.950000px;}
.xf4_c00412{left:462.450000px;}
.xd0_c00412{left:473.250000px;}
.x11c_c00412{left:474.300000px;}
.x118_c00412{left:475.350000px;}
.x9c_c00412{left:478.200000px;}
.xdf_c00412{left:480.600000px;}
.xe9_c00412{left:481.950000px;}
.xda_c00412{left:487.050000px;}
.x10a_c00412{left:488.850000px;}
.xfa_c00412{left:489.900000px;}
.xed_c00412{left:492.300000px;}
.xa5_c00412{left:493.500000px;}
.xb5_c00412{left:494.700000px;}
.x11d_c00412{left:495.900000px;}
.x128_c00412{left:497.850000px;}
.xc9_c00412{left:499.800000px;}
.xf5_c00412{left:503.100000px;}
.x115_c00412{left:507.000000px;}
.xea_c00412{left:508.650000px;}
.xd8_c00412{left:510.000000px;}
.xee_c00412{left:511.800000px;}
.x9d_c00412{left:514.200000px;}
.x11e_c00412{left:515.700000px;}
.xa6_c00412{left:518.400000px;}
.xf6_c00412{left:520.350000px;}
.xca_c00412{left:521.700000px;}
.xdb_c00412{left:523.350000px;}
.xac_c00412{left:525.600000px;}
.x101_c00412{left:526.650000px;}
.x122_c00412{left:528.150000px;}
.xad_c00412{left:529.500000px;}
.xef_c00412{left:532.350000px;}
.xd4_c00412{left:536.100000px;}
.xb6_c00412{left:538.650000px;}
.xbb_c00412{left:540.300000px;}
.xe0_c00412{left:542.100000px;}
.x9e_c00412{left:544.800000px;}
.x107_c00412{left:547.200000px;}
.x119_c00412{left:548.550000px;}
.xf0_c00412{left:551.400000px;}
.x124_c00412{left:553.650000px;}
.xb7_c00412{left:555.900000px;}
.x113_c00412{left:558.150000px;}
.xd5_c00412{left:559.500000px;}
.x108_c00412{left:561.900000px;}
.xc2_c00412{left:564.300000px;}
.xe1_c00412{left:566.550000px;}
.xa7_c00412{left:568.800000px;}
.x127_c00412{left:569.850000px;}
.xc6_c00412{left:571.050000px;}
.xae_c00412{left:573.450000px;}
.xd9_c00412{left:575.550000px;}
.x121_c00412{left:576.600000px;}
.x11a_c00412{left:580.200000px;}
.x120_c00412{left:583.050000px;}
.xc3_c00412{left:585.150000px;}
.x126_c00412{left:586.650000px;}
.x9f_c00412{left:587.700000px;}
.xe2_c00412{left:590.700000px;}
.x10f_c00412{left:591.750000px;}
.xb8_c00412{left:593.700000px;}
.xdc_c00412{left:596.850000px;}
.x102_c00412{left:599.850000px;}
.xb9_c00412{left:604.200000px;}
.xfe_c00412{left:606.150000px;}
.xcb_c00412{left:608.400000px;}
.x110_c00412{left:610.050000px;}
.x10d_c00412{left:611.550000px;}
.xa8_c00412{left:613.500000px;}
.xaf_c00412{left:615.900000px;}
.xe3_c00412{left:617.400000px;}
.xfb_c00412{left:618.750000px;}
.xd6_c00412{left:620.700000px;}
.x10b_c00412{left:623.400000px;}
.xbe_c00412{left:627.000000px;}
.xbc_c00412{left:632.850000px;}
.xe4_c00412{left:635.100000px;}
.xa0_c00412{left:637.350000px;}
.x103_c00412{left:638.700000px;}
.xc4_c00412{left:643.500000px;}
.xcc_c00412{left:644.700000px;}
.xff_c00412{left:647.850000px;}
.xbd_c00412{left:650.100000px;}
.xb0_c00412{left:651.900000px;}
.xcd_c00412{left:654.450000px;}
.xa1_c00412{left:656.100000px;}
.xba_c00412{left:658.200000px;}
.xbf_c00412{left:660.900000px;}
.x104_c00412{left:662.850000px;}
.xf7_c00412{left:663.900000px;}
.x111_c00412{left:669.750000px;}
.xf1_c00412{left:671.250000px;}
.xd1_c00412{left:673.200000px;}
.xc0_c00412{left:675.600000px;}
.xa2_c00412{left:677.400000px;}
.xa9_c00412{left:678.600000px;}
.x105_c00412{left:685.200000px;}
.xe5_c00412{left:686.250000px;}
.x10e_c00412{left:687.450000px;}
.xf8_c00412{left:689.100000px;}
.x116_c00412{left:692.100000px;}
.xdd_c00412{left:693.750000px;}
.xe6_c00412{left:696.000000px;}
.xb1_c00412{left:700.200000px;}
.x100_c00412{left:701.850000px;}
.x114_c00412{left:704.250000px;}
.xa3_c00412{left:706.500000px;}
.xc7_c00412{left:707.850000px;}
.x106_c00412{left:709.650000px;}
.xb2_c00412{left:711.300000px;}
.xf9_c00412{left:712.800000px;}
.xce_c00412{left:714.900000px;}
.xf2_c00412{left:718.350000px;}
.xde_c00412{left:719.700000px;}
.xc1_c00412{left:721.650000px;}
.xaa_c00412{left:725.100000px;}
.xa4_c00412{left:727.050000px;}
.xfc_c00412{left:730.350000px;}
.xcf_c00412{left:731.400000px;}
.xd2_c00412{left:733.350000px;}
.x123_c00412{left:734.400000px;}
.x11f_c00412{left:735.600000px;}
.x2_c00412{left:736.800000px;}
.x117_c00412{left:741.000000px;}
.xe7_c00412{left:744.600000px;}
.xfd_c00412{left:749.400000px;}
.xd3_c00412{left:752.100000px;}
.xf3_c00412{left:757.950000px;}
.x125_c00412{left:759.750000px;}
.xeb_c00412{left:762.750000px;}
.xb3_c00412{left:764.250000px;}
.x112_c00412{left:767.250000px;}
.xe8_c00412{left:769.500000px;}
.x11b_c00412{left:770.550000px;}
.xec_c00412{left:772.500000px;}
.x10c_c00412{left:777.450000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls1_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:62.222222pt;}
.ws8_c00412{word-spacing:-88.888889pt;}
.ws2_c00412{word-spacing:-4.632919pt;}
.wsa_c00412{word-spacing:0.000000pt;}
.ws1_c00412{word-spacing:8.253968pt;}
.ws3_c00412{word-spacing:19.682540pt;}
.ws6_c00412{word-spacing:20.277778pt;}
.ws5_c00412{word-spacing:22.857143pt;}
.ws7_c00412{word-spacing:35.555556pt;}
.ws4_c00412{word-spacing:39.259259pt;}
.ws9_c00412{word-spacing:53.333333pt;}
.ws0_c00412{word-spacing:53.629630pt;}
._4_c00412{margin-left:-62.222222pt;}
._3_c00412{width:3.703704pt;}
._5_c00412{width:46.349206pt;}
._1_c00412{width:49.523810pt;}
._0_c00412{width:52.698413pt;}
._6_c00412{width:57.460317pt;}
._2_c00412{width:65.925926pt;}
.fs4_c00412{font-size:26.666667pt;}
.fs3_c00412{font-size:42.666667pt;}
.fs6_c00412{font-size:48.000000pt;}
.fs2_c00412{font-size:53.333333pt;}
.fs1_c00412{font-size:58.666667pt;}
.fs5_c00412{font-size:64.000000pt;}
.fs0_c00412{font-size:69.333333pt;}
.y0_c00412{bottom:0.000000pt;}
.y6a_c00412{bottom:154.533333pt;}
.y69_c00412{bottom:170.533333pt;}
.y36_c00412{bottom:171.200000pt;}
.y35_c00412{bottom:184.000000pt;}
.y68_c00412{bottom:192.933333pt;}
.y34_c00412{bottom:196.133333pt;}
.y67_c00412{bottom:207.066667pt;}
.y33_c00412{bottom:208.933333pt;}
.y66_c00412{bottom:219.866667pt;}
.y32_c00412{bottom:221.466667pt;}
.y65_c00412{bottom:232.666667pt;}
.y31_c00412{bottom:234.533333pt;}
.y64_c00412{bottom:243.866667pt;}
.y30_c00412{bottom:247.066667pt;}
.y63_c00412{bottom:255.466667pt;}
.y2f_c00412{bottom:260.133333pt;}
.y62_c00412{bottom:269.866667pt;}
.y2e_c00412{bottom:272.666667pt;}
.y61_c00412{bottom:281.333333pt;}
.y2d_c00412{bottom:285.466667pt;}
.y2c_c00412{bottom:298.266667pt;}
.y60_c00412{bottom:299.200000pt;}
.y2b_c00412{bottom:311.066667pt;}
.y5f_c00412{bottom:324.800000pt;}
.y5e_c00412{bottom:336.666667pt;}
.y2a_c00412{bottom:344.933333pt;}
.y5d_c00412{bottom:349.466667pt;}
.y29_c00412{bottom:360.666667pt;}
.y5c_c00412{bottom:362.266667pt;}
.y5b_c00412{bottom:375.733333pt;}
.y28_c00412{bottom:383.600000pt;}
.y5a_c00412{bottom:387.200000pt;}
.y59_c00412{bottom:400.933333pt;}
.y27_c00412{bottom:406.933333pt;}
.y58_c00412{bottom:413.733333pt;}
.y57_c00412{bottom:426.266667pt;}
.y26_c00412{bottom:430.666667pt;}
.y56_c00412{bottom:438.400000pt;}
.y25_c00412{bottom:447.600000pt;}
.y55_c00412{bottom:451.200000pt;}
.y24_c00412{bottom:463.333333pt;}
.y54_c00412{bottom:464.666667pt;}
.y53_c00412{bottom:477.066667pt;}
.y23_c00412{bottom:482.000000pt;}
.y52_c00412{bottom:491.200000pt;}
.y22_c00412{bottom:498.933333pt;}
.y51_c00412{bottom:508.133333pt;}
.y21_c00412{bottom:514.933333pt;}
.y50_c00412{bottom:524.133333pt;}
.y20_c00412{bottom:530.933333pt;}
.y4f_c00412{bottom:540.133333pt;}
.y1f_c00412{bottom:550.400000pt;}
.y4e_c00412{bottom:563.466667pt;}
.y1e_c00412{bottom:566.400000pt;}
.y4d_c00412{bottom:579.200000pt;}
.y1d_c00412{bottom:582.400000pt;}
.y4c_c00412{bottom:595.200000pt;}
.y1c_c00412{bottom:597.733333pt;}
.y4b_c00412{bottom:610.933333pt;}
.y1b_c00412{bottom:616.400000pt;}
.y4a_c00412{bottom:626.933333pt;}
.y1a_c00412{bottom:633.333333pt;}
.y49_c00412{bottom:642.933333pt;}
.y19_c00412{bottom:649.333333pt;}
.y48_c00412{bottom:659.200000pt;}
.y18_c00412{bottom:666.933333pt;}
.y47_c00412{bottom:674.266667pt;}
.y17_c00412{bottom:676.933333pt;}
.y14_c00412{bottom:683.600000pt;}
.y16_c00412{bottom:685.600000pt;}
.y15_c00412{bottom:685.866667pt;}
.y46_c00412{bottom:693.733333pt;}
.y13_c00412{bottom:702.133333pt;}
.y12_c00412{bottom:709.466667pt;}
.y45_c00412{bottom:720.933333pt;}
.y11_c00412{bottom:725.066667pt;}
.y10_c00412{bottom:741.066667pt;}
.y44_c00412{bottom:744.400000pt;}
.y43_c00412{bottom:760.666667pt;}
.yf_c00412{bottom:768.933333pt;}
.y42_c00412{bottom:776.666667pt;}
.y41_c00412{bottom:792.666667pt;}
.ye_c00412{bottom:800.000000pt;}
.y40_c00412{bottom:815.733333pt;}
.yd_c00412{bottom:816.266667pt;}
.y3f_c00412{bottom:831.733333pt;}
.yc_c00412{bottom:832.533333pt;}
.yb_c00412{bottom:848.266667pt;}
.y3e_c00412{bottom:850.933333pt;}
.ya_c00412{bottom:871.200000pt;}
.y3d_c00412{bottom:874.000000pt;}
.y9_c00412{bottom:887.866667pt;}
.y3c_c00412{bottom:890.266667pt;}
.y8_c00412{bottom:904.133333pt;}
.y3b_c00412{bottom:913.200000pt;}
.y7_c00412{bottom:919.866667pt;}
.y6_c00412{bottom:935.600000pt;}
.y3a_c00412{bottom:936.933333pt;}
.y5_c00412{bottom:951.333333pt;}
.y39_c00412{bottom:959.733333pt;}
.y4_c00412{bottom:973.333333pt;}
.y38_c00412{bottom:977.333333pt;}
.y3_c00412{bottom:990.666667pt;}
.y37_c00412{bottom:993.333333pt;}
.y2_c00412{bottom:1010.933333pt;}
.y1_c00412{bottom:1015.733333pt;}
.h6_c00412{height:26.666667pt;}
.h5_c00412{height:42.666667pt;}
.h8_c00412{height:48.000000pt;}
.h4_c00412{height:53.333333pt;}
.h3_c00412{height:58.666667pt;}
.h7_c00412{height:64.000000pt;}
.h2_c00412{height:69.333333pt;}
.h0_c00412{height:1125.760009pt;}
.h1_c00412{height:1126.000000pt;}
.w0_c00412{width:853.760009pt;}
.w1_c00412{width:854.000000pt;}
.x0_c00412{left:0.000000pt;}
.x3_c00412{left:72.266667pt;}
.x45_c00412{left:75.200000pt;}
.xe_c00412{left:76.533333pt;}
.x86_c00412{left:78.800000pt;}
.x94_c00412{left:79.866667pt;}
.x40_c00412{left:80.933333pt;}
.x15_c00412{left:90.133333pt;}
.xc_c00412{left:91.866667pt;}
.x49_c00412{left:92.800000pt;}
.x73_c00412{left:93.866667pt;}
.x81_c00412{left:95.200000pt;}
.x9a_c00412{left:100.933333pt;}
.x91_c00412{left:102.533333pt;}
.x87_c00412{left:104.400000pt;}
.x7f_c00412{left:105.333333pt;}
.x54_c00412{left:108.133333pt;}
.x59_c00412{left:109.733333pt;}
.x4_c00412{left:112.533333pt;}
.x7c_c00412{left:114.266667pt;}
.x23_c00412{left:117.066667pt;}
.x96_c00412{left:118.933333pt;}
.x2d_c00412{left:120.666667pt;}
.x66_c00412{left:122.133333pt;}
.x3d_c00412{left:123.066667pt;}
.x95_c00412{left:124.000000pt;}
.x41_c00412{left:126.933333pt;}
.x28_c00412{left:128.533333pt;}
.x1d_c00412{left:130.400000pt;}
.x6f_c00412{left:131.333333pt;}
.x51_c00412{left:133.600000pt;}
.x16_c00412{left:134.933333pt;}
.x56_c00412{left:138.133333pt;}
.x97_c00412{left:139.733333pt;}
.x4d_c00412{left:143.200000pt;}
.x77_c00412{left:144.533333pt;}
.x38_c00412{left:145.866667pt;}
.x42_c00412{left:146.800000pt;}
.x8a_c00412{left:149.200000pt;}
.xf_c00412{left:150.400000pt;}
.x6d_c00412{left:152.666667pt;}
.x1e_c00412{left:155.733333pt;}
.x29_c00412{left:158.666667pt;}
.x43_c00412{left:160.666667pt;}
.x2e_c00412{left:162.266667pt;}
.x61_c00412{left:164.000000pt;}
.x17_c00412{left:165.600000pt;}
.x5_c00412{left:168.800000pt;}
.x2f_c00412{left:171.866667pt;}
.x67_c00412{left:173.333333pt;}
.x6e_c00412{left:175.066667pt;}
.x5e_c00412{left:176.666667pt;}
.x84_c00412{left:178.666667pt;}
.x3e_c00412{left:181.066667pt;}
.x62_c00412{left:182.266667pt;}
.xd_c00412{left:184.400000pt;}
.x46_c00412{left:185.333333pt;}
.x70_c00412{left:187.066667pt;}
.x7d_c00412{left:188.000000pt;}
.x10_c00412{left:189.066667pt;}
.x5f_c00412{left:191.733333pt;}
.x18_c00412{left:195.066667pt;}
.x8d_c00412{left:197.066667pt;}
.x4e_c00412{left:198.266667pt;}
.x74_c00412{left:199.733333pt;}
.x2a_c00412{left:203.200000pt;}
.x85_c00412{left:204.266667pt;}
.x24_c00412{left:206.666667pt;}
.x68_c00412{left:207.866667pt;}
.x6_c00412{left:210.400000pt;}
.x39_c00412{left:211.466667pt;}
.x30_c00412{left:212.800000pt;}
.x19_c00412{left:214.000000pt;}
.x78_c00412{left:215.866667pt;}
.x52_c00412{left:218.133333pt;}
.x33_c00412{left:219.466667pt;}
.x3a_c00412{left:220.800000pt;}
.x47_c00412{left:222.133333pt;}
.x44_c00412{left:226.000000pt;}
.x11_c00412{left:227.200000pt;}
.x57_c00412{left:229.066667pt;}
.x2b_c00412{left:230.400000pt;}
.x4f_c00412{left:232.533333pt;}
.x8f_c00412{left:233.866667pt;}
.x71_c00412{left:234.800000pt;}
.x79_c00412{left:235.733333pt;}
.x4a_c00412{left:239.333333pt;}
.x25_c00412{left:241.200000pt;}
.x7e_c00412{left:242.800000pt;}
.x7_c00412{left:244.000000pt;}
.x34_c00412{left:245.066667pt;}
.x90_c00412{left:246.000000pt;}
.x31_c00412{left:247.333333pt;}
.x1f_c00412{left:248.533333pt;}
.x1a_c00412{left:250.800000pt;}
.x8b_c00412{left:252.266667pt;}
.x6a_c00412{left:253.733333pt;}
.x3b_c00412{left:255.066667pt;}
.x48_c00412{left:258.000000pt;}
.x3f_c00412{left:260.400000pt;}
.x98_c00412{left:261.600000pt;}
.x69_c00412{left:262.666667pt;}
.x5a_c00412{left:266.533333pt;}
.x7a_c00412{left:267.466667pt;}
.x35_c00412{left:269.333333pt;}
.x8_c00412{left:274.133333pt;}
.x53_c00412{left:277.600000pt;}
.x20_c00412{left:279.200000pt;}
.x12_c00412{left:280.266667pt;}
.x1b_c00412{left:283.733333pt;}
.x50_c00412{left:285.333333pt;}
.x26_c00412{left:286.266667pt;}
.x3c_c00412{left:288.400000pt;}
.x92_c00412{left:289.733333pt;}
.x1_c00412{left:291.466667pt;}
.x75_c00412{left:294.533333pt;}
.x32_c00412{left:296.933333pt;}
.x80_c00412{left:298.666667pt;}
.x63_c00412{left:300.666667pt;}
.x13_c00412{left:302.000000pt;}
.x72_c00412{left:303.866667pt;}
.x21_c00412{left:305.466667pt;}
.x9_c00412{left:309.333333pt;}
.x4b_c00412{left:312.266667pt;}
.x88_c00412{left:314.266667pt;}
.x82_c00412{left:317.333333pt;}
.x99_c00412{left:318.533333pt;}
.x27_c00412{left:319.866667pt;}
.x6b_c00412{left:322.266667pt;}
.x36_c00412{left:323.466667pt;}
.x89_c00412{left:325.200000pt;}
.x2c_c00412{left:326.400000pt;}
.x8e_c00412{left:327.866667pt;}
.x5b_c00412{left:328.933333pt;}
.x64_c00412{left:332.000000pt;}
.xa_c00412{left:333.066667pt;}
.x22_c00412{left:334.000000pt;}
.x93_c00412{left:336.133333pt;}
.x14_c00412{left:337.866667pt;}
.x83_c00412{left:340.400000pt;}
.x1c_c00412{left:342.000000pt;}
.x5c_c00412{left:344.266667pt;}
.x65_c00412{left:347.333333pt;}
.x7b_c00412{left:351.333333pt;}
.x4c_c00412{left:353.200000pt;}
.x37_c00412{left:356.133333pt;}
.x58_c00412{left:357.333333pt;}
.x5d_c00412{left:360.000000pt;}
.xb_c00412{left:360.933333pt;}
.x55_c00412{left:363.066667pt;}
.x8c_c00412{left:364.800000pt;}
.x76_c00412{left:365.866667pt;}
.x6c_c00412{left:367.066667pt;}
.x60_c00412{left:373.866667pt;}
.xc5_c00412{left:392.933333pt;}
.xd7_c00412{left:393.866667pt;}
.x109_c00412{left:395.466667pt;}
.xab_c00412{left:397.866667pt;}
.x9b_c00412{left:407.733333pt;}
.xb4_c00412{left:408.666667pt;}
.xc8_c00412{left:409.733333pt;}
.xf4_c00412{left:411.066667pt;}
.xd0_c00412{left:420.666667pt;}
.x11c_c00412{left:421.600000pt;}
.x118_c00412{left:422.533333pt;}
.x9c_c00412{left:425.066667pt;}
.xdf_c00412{left:427.200000pt;}
.xe9_c00412{left:428.400000pt;}
.xda_c00412{left:432.933333pt;}
.x10a_c00412{left:434.533333pt;}
.xfa_c00412{left:435.466667pt;}
.xed_c00412{left:437.600000pt;}
.xa5_c00412{left:438.666667pt;}
.xb5_c00412{left:439.733333pt;}
.x11d_c00412{left:440.800000pt;}
.x128_c00412{left:442.533333pt;}
.xc9_c00412{left:444.266667pt;}
.xf5_c00412{left:447.200000pt;}
.x115_c00412{left:450.666667pt;}
.xea_c00412{left:452.133333pt;}
.xd8_c00412{left:453.333333pt;}
.xee_c00412{left:454.933333pt;}
.x9d_c00412{left:457.066667pt;}
.x11e_c00412{left:458.400000pt;}
.xa6_c00412{left:460.800000pt;}
.xf6_c00412{left:462.533333pt;}
.xca_c00412{left:463.733333pt;}
.xdb_c00412{left:465.200000pt;}
.xac_c00412{left:467.200000pt;}
.x101_c00412{left:468.133333pt;}
.x122_c00412{left:469.466667pt;}
.xad_c00412{left:470.666667pt;}
.xef_c00412{left:473.200000pt;}
.xd4_c00412{left:476.533333pt;}
.xb6_c00412{left:478.800000pt;}
.xbb_c00412{left:480.266667pt;}
.xe0_c00412{left:481.866667pt;}
.x9e_c00412{left:484.266667pt;}
.x107_c00412{left:486.400000pt;}
.x119_c00412{left:487.600000pt;}
.xf0_c00412{left:490.133333pt;}
.x124_c00412{left:492.133333pt;}
.xb7_c00412{left:494.133333pt;}
.x113_c00412{left:496.133333pt;}
.xd5_c00412{left:497.333333pt;}
.x108_c00412{left:499.466667pt;}
.xc2_c00412{left:501.600000pt;}
.xe1_c00412{left:503.600000pt;}
.xa7_c00412{left:505.600000pt;}
.x127_c00412{left:506.533333pt;}
.xc6_c00412{left:507.600000pt;}
.xae_c00412{left:509.733333pt;}
.xd9_c00412{left:511.600000pt;}
.x121_c00412{left:512.533333pt;}
.x11a_c00412{left:515.733333pt;}
.x120_c00412{left:518.266667pt;}
.xc3_c00412{left:520.133333pt;}
.x126_c00412{left:521.466667pt;}
.x9f_c00412{left:522.400000pt;}
.xe2_c00412{left:525.066667pt;}
.x10f_c00412{left:526.000000pt;}
.xb8_c00412{left:527.733333pt;}
.xdc_c00412{left:530.533333pt;}
.x102_c00412{left:533.200000pt;}
.xb9_c00412{left:537.066667pt;}
.xfe_c00412{left:538.800000pt;}
.xcb_c00412{left:540.800000pt;}
.x110_c00412{left:542.266667pt;}
.x10d_c00412{left:543.600000pt;}
.xa8_c00412{left:545.333333pt;}
.xaf_c00412{left:547.466667pt;}
.xe3_c00412{left:548.800000pt;}
.xfb_c00412{left:550.000000pt;}
.xd6_c00412{left:551.733333pt;}
.x10b_c00412{left:554.133333pt;}
.xbe_c00412{left:557.333333pt;}
.xbc_c00412{left:562.533333pt;}
.xe4_c00412{left:564.533333pt;}
.xa0_c00412{left:566.533333pt;}
.x103_c00412{left:567.733333pt;}
.xc4_c00412{left:572.000000pt;}
.xcc_c00412{left:573.066667pt;}
.xff_c00412{left:575.866667pt;}
.xbd_c00412{left:577.866667pt;}
.xb0_c00412{left:579.466667pt;}
.xcd_c00412{left:581.733333pt;}
.xa1_c00412{left:583.200000pt;}
.xba_c00412{left:585.066667pt;}
.xbf_c00412{left:587.466667pt;}
.x104_c00412{left:589.200000pt;}
.xf7_c00412{left:590.133333pt;}
.x111_c00412{left:595.333333pt;}
.xf1_c00412{left:596.666667pt;}
.xd1_c00412{left:598.400000pt;}
.xc0_c00412{left:600.533333pt;}
.xa2_c00412{left:602.133333pt;}
.xa9_c00412{left:603.200000pt;}
.x105_c00412{left:609.066667pt;}
.xe5_c00412{left:610.000000pt;}
.x10e_c00412{left:611.066667pt;}
.xf8_c00412{left:612.533333pt;}
.x116_c00412{left:615.200000pt;}
.xdd_c00412{left:616.666667pt;}
.xe6_c00412{left:618.666667pt;}
.xb1_c00412{left:622.400000pt;}
.x100_c00412{left:623.866667pt;}
.x114_c00412{left:626.000000pt;}
.xa3_c00412{left:628.000000pt;}
.xc7_c00412{left:629.200000pt;}
.x106_c00412{left:630.800000pt;}
.xb2_c00412{left:632.266667pt;}
.xf9_c00412{left:633.600000pt;}
.xce_c00412{left:635.466667pt;}
.xf2_c00412{left:638.533333pt;}
.xde_c00412{left:639.733333pt;}
.xc1_c00412{left:641.466667pt;}
.xaa_c00412{left:644.533333pt;}
.xa4_c00412{left:646.266667pt;}
.xfc_c00412{left:649.200000pt;}
.xcf_c00412{left:650.133333pt;}
.xd2_c00412{left:651.866667pt;}
.x123_c00412{left:652.800000pt;}
.x11f_c00412{left:653.866667pt;}
.x2_c00412{left:654.933333pt;}
.x117_c00412{left:658.666667pt;}
.xe7_c00412{left:661.866667pt;}
.xfd_c00412{left:666.133333pt;}
.xd3_c00412{left:668.533333pt;}
.xf3_c00412{left:673.733333pt;}
.x125_c00412{left:675.333333pt;}
.xeb_c00412{left:678.000000pt;}
.xb3_c00412{left:679.333333pt;}
.x112_c00412{left:682.000000pt;}
.xe8_c00412{left:684.000000pt;}
.x11b_c00412{left:684.933333pt;}
.xec_c00412{left:686.666667pt;}
.x10c_c00412{left:691.066667pt;}
}





/* 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_c00413 {
    display:none;
  }
  .loading-indicator_c00413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00413 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_c00413 { 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_c00413" -> "#page-container .classname_c00413")
 */
.pf_c00413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00413 { /* 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_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00413 { /* 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_c00413 { /* 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_c00413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00413 {overflow:visible;}
  }
}
.c_c00413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00413 { /* 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_c00413:after { /* webkit #35443 */
  content: '';
}
.t_c00413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00413 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 */
}
.__c00413 { /* 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_c00413 { /* info for Javascript */
  display:none;
}
.l_c00413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00413: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_c00413 {
    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_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00413.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_c00413 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00413;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.000000;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;}
.m106_c00413{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00413{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00413{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m46_c00413{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mab_c00413{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00413{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m32_c00413{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00413{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00413{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m6_c00413{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00413{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m30_c00413{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00413{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00413{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mce_c00413{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m104_c00413{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.maa_c00413{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00413{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.me9_c00413{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m98_c00413{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m78_c00413{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00413{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m57_c00413{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.me4_c00413{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.md9_c00413{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00413{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00413{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00413{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00413{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m88_c00413{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00413{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00413{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00413{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m39_c00413{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m42_c00413{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m16_c00413{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4_c00413{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00413{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m71_c00413{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00413{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00413{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m12_c00413{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m21_c00413{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m95_c00413{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m94_c00413{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m54_c00413{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mff_c00413{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m3_c00413{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md6_c00413{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m109_c00413{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m70_c00413{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00413{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00413{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00413{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m8_c00413{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md8_c00413{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mee_c00413{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00413{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m45_c00413{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00413{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00413{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.me3_c00413{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m38_c00413{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00413{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00413{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m25_c00413{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m108_c00413{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00413{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m29_c00413{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00413{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00413{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00413{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00413{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m20_c00413{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00413{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00413{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mde_c00413{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me7_c00413{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00413{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00413{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00413{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m33_c00413{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00413{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00413{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me_c00413{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00413{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00413{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m36_c00413{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00413{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00413{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m17_c00413{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00413{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00413{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9_c00413{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m24_c00413{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m22_c00413{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m14_c00413{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m51_c00413{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m90_c00413{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m66_c00413{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00413{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m35_c00413{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m99_c00413{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mad_c00413{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00413{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00413{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m43_c00413{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb_c00413{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.md7_c00413{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00413{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m58_c00413{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md_c00413{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m50_c00413{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m86_c00413{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md0_c00413{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00413{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m18_c00413{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m103_c00413{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc_c00413{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00413{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mf_c00413{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00413{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00413{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m67_c00413{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5_c00413{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m73_c00413{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m105_c00413{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m55_c00413{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m91_c00413{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00413{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m97_c00413{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00413{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m89_c00413{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m40_c00413{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00413{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00413{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m101_c00413{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m28_c00413{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me1_c00413{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma_c00413{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m7_c00413{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md4_c00413{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00413{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00413{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00413{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m53_c00413{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00413{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mae_c00413{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m27_c00413{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00413{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m81_c00413{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.maf_c00413{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m15_c00413{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00413{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md1_c00413{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00413{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m37_c00413{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m59_c00413{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m79_c00413{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00413{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me6_c00413{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00413{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m60_c00413{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m74_c00413{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mec_c00413{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00413{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m92_c00413{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00413{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m62_c00413{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00413{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m68_c00413{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00413{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me5_c00413{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m85_c00413{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00413{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00413{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m63_c00413{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me2_c00413{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mca_c00413{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m69_c00413{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00413{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m65_c00413{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m23_c00413{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m96_c00413{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mea_c00413{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00413{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m52_c00413{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mac_c00413{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00413{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00413{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m84_c00413{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00413{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md3_c00413{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00413{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m93_c00413{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m82_c00413{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m11_c00413{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00413{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10_c00413{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00413{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00413{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m100_c00413{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00413{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00413{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m41_c00413{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m87_c00413{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00413{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00413{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00413{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00413{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m19_c00413{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00413{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00413{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.med_c00413{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00413{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md2_c00413{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00413{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00413{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00413{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mda_c00413{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00413{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00413{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m102_c00413{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m49_c00413{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m44_c00413{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me8_c00413{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.meb_c00413{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m31_c00413{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00413{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mef_c00413{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00413{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m72_c00413{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00413{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mba_c00413{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md5_c00413{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m48_c00413{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m80_c00413{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00413{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00413{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00413{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13_c00413{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00413{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00413{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);}
.mb0_c00413{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m47_c00413{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m75_c00413{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me0_c00413{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00413{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m64_c00413{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00413{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00413{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00413{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m76_c00413{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00413{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m61_c00413{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00413{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00413{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00413{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00413{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c00413{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00413{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00413{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m107_c00413{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00413{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m34_c00413{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m77_c00413{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00413{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m83_c00413{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m56_c00413{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls0_c00413{letter-spacing:0.000000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{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__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00413{word-spacing:-10.892857px;}
.ws8_c00413{word-spacing:-4.841924px;}
.ws3_c00413{word-spacing:-4.838710px;}
.ws5_c00413{word-spacing:0.000000px;}
.ws2_c00413{word-spacing:1.333333px;}
.ws1_c00413{word-spacing:2.051870px;}
.ws0_c00413{word-spacing:2.066098px;}
.ws4_c00413{word-spacing:3.750000px;}
.ws9_c00413{word-spacing:19.723854px;}
.ws7_c00413{word-spacing:28.328244px;}
._0_c00413{width:42.580645px;}
.fc0_c00413{color:transparent;}
.fs5_c00413{font-size:48.000000px;}
.fs4_c00413{font-size:54.000000px;}
.fs3_c00413{font-size:60.000000px;}
.fs2_c00413{font-size:66.000000px;}
.fs1_c00413{font-size:72.000000px;}
.fs0_c00413{font-size:108.000000px;}
.y0_c00413{bottom:0.000000px;}
.y68_c00413{bottom:198.000000px;}
.y37_c00413{bottom:205.500000px;}
.y67_c00413{bottom:216.300000px;}
.y36_c00413{bottom:219.900000px;}
.y66_c00413{bottom:234.000000px;}
.y35_c00413{bottom:234.300000px;}
.y34_c00413{bottom:249.150000px;}
.y65_c00413{bottom:251.850000px;}
.y33_c00413{bottom:262.050000px;}
.y64_c00413{bottom:269.850000px;}
.y32_c00413{bottom:276.150000px;}
.y63_c00413{bottom:287.550000px;}
.y31_c00413{bottom:290.850000px;}
.y30_c00413{bottom:304.200000px;}
.y62_c00413{bottom:305.250000px;}
.y2f_c00413{bottom:318.300000px;}
.y61_c00413{bottom:322.500000px;}
.y2e_c00413{bottom:332.250000px;}
.y60_c00413{bottom:340.500000px;}
.y2d_c00413{bottom:345.900000px;}
.y5f_c00413{bottom:357.900000px;}
.y2c_c00413{bottom:359.700000px;}
.y2b_c00413{bottom:373.800000px;}
.y5e_c00413{bottom:375.900000px;}
.y2a_c00413{bottom:387.900000px;}
.y5d_c00413{bottom:394.200000px;}
.y29_c00413{bottom:402.000000px;}
.y5c_c00413{bottom:412.200000px;}
.y28_c00413{bottom:416.100000px;}
.y27_c00413{bottom:430.200000px;}
.y26_c00413{bottom:444.300000px;}
.y5b_c00413{bottom:448.200000px;}
.y25_c00413{bottom:458.400000px;}
.y5a_c00413{bottom:465.900000px;}
.y24_c00413{bottom:473.100000px;}
.y59_c00413{bottom:483.900000px;}
.y23_c00413{bottom:487.500000px;}
.y22_c00413{bottom:501.600000px;}
.y58_c00413{bottom:501.900000px;}
.y21_c00413{bottom:516.000000px;}
.y57_c00413{bottom:519.900000px;}
.y20_c00413{bottom:530.700000px;}
.y56_c00413{bottom:541.800000px;}
.y55_c00413{bottom:559.500000px;}
.y1f_c00413{bottom:577.350000px;}
.y1e_c00413{bottom:595.050000px;}
.y1d_c00413{bottom:612.750000px;}
.y54_c00413{bottom:613.050000px;}
.y53_c00413{bottom:631.050000px;}
.y1c_c00413{bottom:634.800000px;}
.y52_c00413{bottom:648.600000px;}
.y1b_c00413{bottom:652.500000px;}
.y51_c00413{bottom:666.900000px;}
.y1a_c00413{bottom:670.800000px;}
.y50_c00413{bottom:684.900000px;}
.y19_c00413{bottom:688.500000px;}
.y4f_c00413{bottom:702.600000px;}
.y18_c00413{bottom:706.200000px;}
.y4e_c00413{bottom:720.300000px;}
.y17_c00413{bottom:724.200000px;}
.y4d_c00413{bottom:738.300000px;}
.y16_c00413{bottom:742.200000px;}
.y4c_c00413{bottom:759.750000px;}
.y15_c00413{bottom:759.900000px;}
.y4b_c00413{bottom:777.450000px;}
.y14_c00413{bottom:790.950000px;}
.y4a_c00413{bottom:795.750000px;}
.y49_c00413{bottom:813.750000px;}
.y13_c00413{bottom:822.450000px;}
.y48_c00413{bottom:831.450000px;}
.y12_c00413{bottom:840.150000px;}
.y47_c00413{bottom:849.450000px;}
.y11_c00413{bottom:858.150000px;}
.y46_c00413{bottom:867.450000px;}
.y10_c00413{bottom:875.850000px;}
.y45_c00413{bottom:885.150000px;}
.yf_c00413{bottom:893.850000px;}
.y44_c00413{bottom:903.150000px;}
.ye_c00413{bottom:911.850000px;}
.y43_c00413{bottom:920.850000px;}
.yd_c00413{bottom:929.550000px;}
.y42_c00413{bottom:943.500000px;}
.yc_c00413{bottom:947.550000px;}
.y41_c00413{bottom:961.200000px;}
.yb_c00413{bottom:965.250000px;}
.y40_c00413{bottom:979.200000px;}
.ya_c00413{bottom:982.950000px;}
.y3f_c00413{bottom:997.200000px;}
.y9_c00413{bottom:1000.650000px;}
.y8_c00413{bottom:1018.650000px;}
.y3e_c00413{bottom:1018.800000px;}
.y7_c00413{bottom:1036.350000px;}
.y3d_c00413{bottom:1037.100000px;}
.y6_c00413{bottom:1054.350000px;}
.y3c_c00413{bottom:1055.100000px;}
.y5_c00413{bottom:1072.350000px;}
.y3b_c00413{bottom:1072.800000px;}
.y4_c00413{bottom:1090.050000px;}
.y3a_c00413{bottom:1091.100000px;}
.y3_c00413{bottom:1108.050000px;}
.y39_c00413{bottom:1108.200000px;}
.y2_c00413{bottom:1125.750000px;}
.y38_c00413{bottom:1126.500000px;}
.y1_c00413{bottom:1152.300000px;}
.h7_c00413{height:48.000000px;}
.h6_c00413{height:54.000000px;}
.h5_c00413{height:60.000000px;}
.h4_c00413{height:66.000000px;}
.h3_c00413{height:72.000000px;}
.h2_c00413{height:108.000000px;}
.h1_c00413{height:1276.500000px;}
.h0_c00413{height:1276.559967px;}
.w0_c00413{width:960.480010px;}
.w1_c00413{width:960.750000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:185.400000px;}
.x86_c00413{left:187.050000px;}
.x79_c00413{left:188.100000px;}
.x97_c00413{left:189.450000px;}
.xa2_c00413{left:190.500000px;}
.x9d_c00413{left:198.000000px;}
.x8d_c00413{left:201.600000px;}
.x4b_c00413{left:203.700000px;}
.x3_c00413{left:204.900000px;}
.x10_c00413{left:205.950000px;}
.x81_c00413{left:207.900000px;}
.x76_c00413{left:210.900000px;}
.x98_c00413{left:212.550000px;}
.x7a_c00413{left:218.400000px;}
.x9a_c00413{left:220.350000px;}
.x3f_c00413{left:222.000000px;}
.x41_c00413{left:223.350000px;}
.xb_c00413{left:225.900000px;}
.x92_c00413{left:227.850000px;}
.x88_c00413{left:230.850000px;}
.x7b_c00413{left:233.100000px;}
.x6c_c00413{left:235.050000px;}
.x28_c00413{left:236.100000px;}
.x7e_c00413{left:239.700000px;}
.x74_c00413{left:241.200000px;}
.x9c_c00413{left:243.000000px;}
.x4_c00413{left:244.800000px;}
.x45_c00413{left:245.850000px;}
.x9b_c00413{left:247.350000px;}
.x4f_c00413{left:248.550000px;}
.x66_c00413{left:250.950000px;}
.x29_c00413{left:254.100000px;}
.x82_c00413{left:257.250000px;}
.x21_c00413{left:258.300000px;}
.x35_c00413{left:260.250000px;}
.x75_c00413{left:261.750000px;}
.x11_c00413{left:263.250000px;}
.x16_c00413{left:264.300000px;}
.x64_c00413{left:265.500000px;}
.x4c_c00413{left:267.750000px;}
.x87_c00413{left:268.800000px;}
.x60_c00413{left:269.850000px;}
.x1b_c00413{left:272.850000px;}
.x31_c00413{left:276.150000px;}
.xc_c00413{left:277.350000px;}
.x9e_c00413{left:278.550000px;}
.x46_c00413{left:280.050000px;}
.x58_c00413{left:281.100000px;}
.x5_c00413{left:282.900000px;}
.x42_c00413{left:285.300000px;}
.x6f_c00413{left:287.250000px;}
.x4d_c00413{left:289.650000px;}
.x22_c00413{left:291.000000px;}
.x67_c00413{left:292.350000px;}
.xa0_c00413{left:294.900000px;}
.x71_c00413{left:295.950000px;}
.x57_c00413{left:297.750000px;}
.x1c_c00413{left:299.100000px;}
.x55_c00413{left:300.600000px;}
.x6_c00413{left:301.650000px;}
.x62_c00413{left:302.850000px;}
.x12_c00413{left:304.350000px;}
.x50_c00413{left:305.400000px;}
.x2a_c00413{left:307.350000px;}
.x23_c00413{left:309.300000px;}
.x72_c00413{left:311.400000px;}
.x40_c00413{left:313.050000px;}
.x8c_c00413{left:314.700000px;}
.x3b_c00413{left:318.150000px;}
.x1d_c00413{left:320.400000px;}
.x5b_c00413{left:322.350000px;}
.x51_c00413{left:323.700000px;}
.x84_c00413{left:325.500000px;}
.x36_c00413{left:333.600000px;}
.x6d_c00413{left:336.600000px;}
.x47_c00413{left:337.950000px;}
.x3c_c00413{left:340.050000px;}
.x61_c00413{left:341.550000px;}
.x2b_c00413{left:343.350000px;}
.x5c_c00413{left:344.700000px;}
.xd_c00413{left:347.250000px;}
.x24_c00413{left:348.900000px;}
.x17_c00413{left:351.000000px;}
.x68_c00413{left:352.800000px;}
.x95_c00413{left:355.500000px;}
.x52_c00413{left:357.900000px;}
.x7c_c00413{left:359.100000px;}
.x48_c00413{left:361.350000px;}
.x4e_c00413{left:362.700000px;}
.x5d_c00413{left:365.250000px;}
.x93_c00413{left:367.050000px;}
.x13_c00413{left:371.250000px;}
.x7_c00413{left:373.650000px;}
.x53_c00413{left:375.600000px;}
.x32_c00413{left:376.950000px;}
.x56_c00413{left:378.000000px;}
.x1e_c00413{left:379.800000px;}
.x2c_c00413{left:381.450000px;}
.x8_c00413{left:382.950000px;}
.x83_c00413{left:384.600000px;}
.x37_c00413{left:387.600000px;}
.x59_c00413{left:390.300000px;}
.x49_c00413{left:392.700000px;}
.xe_c00413{left:393.750000px;}
.x18_c00413{left:395.700000px;}
.x6e_c00413{left:397.050000px;}
.x2d_c00413{left:398.400000px;}
.x77_c00413{left:399.450000px;}
.x7f_c00413{left:402.000000px;}
.xa3_c00413{left:404.250000px;}
.x1f_c00413{left:406.050000px;}
.x9f_c00413{left:407.250000px;}
.x38_c00413{left:409.200000px;}
.x5a_c00413{left:410.850000px;}
.x25_c00413{left:412.950000px;}
.x19_c00413{left:415.500000px;}
.x5e_c00413{left:417.450000px;}
.x4a_c00413{left:420.450000px;}
.x20_c00413{left:423.750000px;}
.x39_c00413{left:425.700000px;}
.xa5_c00413{left:428.400000px;}
.x2_c00413{left:429.900000px;}
.x8f_c00413{left:431.250000px;}
.x85_c00413{left:433.050000px;}
.x6a_c00413{left:435.300000px;}
.x9_c00413{left:436.650000px;}
.x96_c00413{left:437.850000px;}
.x89_c00413{left:439.650000px;}
.x26_c00413{left:441.000000px;}
.x14_c00413{left:443.250000px;}
.x7d_c00413{left:444.600000px;}
.x80_c00413{left:447.000000px;}
.x90_c00413{left:448.200000px;}
.xf_c00413{left:449.250000px;}
.x33_c00413{left:452.850000px;}
.x3d_c00413{left:454.200000px;}
.x1a_c00413{left:455.850000px;}
.x8a_c00413{left:457.650000px;}
.x54_c00413{left:458.850000px;}
.x99_c00413{left:462.300000px;}
.xa1_c00413{left:463.800000px;}
.x6b_c00413{left:466.200000px;}
.x73_c00413{left:467.250000px;}
.x2e_c00413{left:469.650000px;}
.x43_c00413{left:471.450000px;}
.x3a_c00413{left:474.600000px;}
.xa_c00413{left:476.550000px;}
.x69_c00413{left:477.750000px;}
.x65_c00413{left:479.100000px;}
.x2f_c00413{left:480.150000px;}
.x15_c00413{left:483.600000px;}
.x70_c00413{left:485.700000px;}
.x8e_c00413{left:486.750000px;}
.xa4_c00413{left:488.850000px;}
.x34_c00413{left:491.400000px;}
.xa6_c00413{left:492.600000px;}
.x5f_c00413{left:494.850000px;}
.x30_c00413{left:496.050000px;}
.x63_c00413{left:497.700000px;}
.x27_c00413{left:498.900000px;}
.x44_c00413{left:500.250000px;}
.x8b_c00413{left:501.900000px;}
.x3e_c00413{left:504.900000px;}
.xa7_c00413{left:508.800000px;}
.x91_c00413{left:512.250000px;}
.x94_c00413{left:520.650000px;}
.x78_c00413{left:521.850000px;}
.xa8_c00413{left:560.100000px;}
.xd4_c00413{left:561.450000px;}
.xf6_c00413{left:562.500000px;}
.xaf_c00413{left:563.850000px;}
.x13f_c00413{left:565.200000px;}
.xb3_c00413{left:578.550000px;}
.x139_c00413{left:580.350000px;}
.xe1_c00413{left:581.400000px;}
.xe6_c00413{left:583.500000px;}
.xdb_c00413{left:584.700000px;}
.x12f_c00413{left:586.650000px;}
.x13d_c00413{left:590.400000px;}
.x14c_c00413{left:591.900000px;}
.x101_c00413{left:594.750000px;}
.x146_c00413{left:596.100000px;}
.xc2_c00413{left:597.600000px;}
.xa9_c00413{left:598.650000px;}
.x116_c00413{left:600.300000px;}
.x113_c00413{left:601.950000px;}
.xb0_c00413{left:603.150000px;}
.x14d_c00413{left:604.500000px;}
.xc3_c00413{left:606.300000px;}
.x102_c00413{left:611.250000px;}
.xb8_c00413{left:615.150000px;}
.x10f_c00413{left:616.350000px;}
.xeb_c00413{left:617.700000px;}
.xaa_c00413{left:619.200000px;}
.xbe_c00413{left:621.000000px;}
.x106_c00413{left:622.800000px;}
.xb1_c00413{left:626.550000px;}
.x123_c00413{left:628.050000px;}
.xf7_c00413{left:629.100000px;}
.x13a_c00413{left:630.750000px;}
.xb9_c00413{left:632.100000px;}
.xab_c00413{left:633.300000px;}
.x143_c00413{left:636.900000px;}
.xf8_c00413{left:639.150000px;}
.xca_c00413{left:641.400000px;}
.x11b_c00413{left:642.450000px;}
.xe7_c00413{left:643.950000px;}
.xd6_c00413{left:645.600000px;}
.xb4_c00413{left:648.000000px;}
.xcf_c00413{left:650.850000px;}
.xcb_c00413{left:653.700000px;}
.xfd_c00413{left:655.650000px;}
.xc4_c00413{left:658.800000px;}
.x110_c00413{left:661.950000px;}
.x120_c00413{left:663.150000px;}
.x10b_c00413{left:664.200000px;}
.xb2_c00413{left:665.400000px;}
.xc5_c00413{left:666.750000px;}
.xb5_c00413{left:667.800000px;}
.xd0_c00413{left:669.150000px;}
.x11c_c00413{left:670.500000px;}
.x107_c00413{left:673.500000px;}
.xec_c00413{left:675.000000px;}
.xbf_c00413{left:676.050000px;}
.x11d_c00413{left:677.100000px;}
.x117_c00413{left:678.750000px;}
.x10c_c00413{left:681.900000px;}
.x147_c00413{left:683.250000px;}
.xe2_c00413{left:684.750000px;}
.x133_c00413{left:687.000000px;}
.xcc_c00413{left:688.650000px;}
.xdc_c00413{left:690.900000px;}
.xc6_c00413{left:693.000000px;}
.x12a_c00413{left:694.200000px;}
.x141_c00413{left:696.150000px;}
.xe3_c00413{left:700.950000px;}
.x103_c00413{left:702.750000px;}
.xf9_c00413{left:703.950000px;}
.xd7_c00413{left:705.000000px;}
.x127_c00413{left:706.350000px;}
.xb6_c00413{left:707.700000px;}
.xd1_c00413{left:709.050000px;}
.xe8_c00413{left:710.850000px;}
.xba_c00413{left:712.050000px;}
.xdd_c00413{left:713.550000px;}
.x134_c00413{left:715.050000px;}
.x118_c00413{left:716.550000px;}
.x128_c00413{left:717.900000px;}
.xed_c00413{left:718.950000px;}
.x108_c00413{left:721.050000px;}
.x12c_c00413{left:722.850000px;}
.x114_c00413{left:723.900000px;}
.x138_c00413{left:725.550000px;}
.xcd_c00413{left:727.500000px;}
.xac_c00413{left:729.750000px;}
.x104_c00413{left:731.850000px;}
.x149_c00413{left:732.900000px;}
.x10d_c00413{left:735.150000px;}
.xee_c00413{left:736.650000px;}
.xc0_c00413{left:738.300000px;}
.xe4_c00413{left:739.500000px;}
.x13b_c00413{left:740.550000px;}
.xfe_c00413{left:742.800000px;}
.x144_c00413{left:745.050000px;}
.xde_c00413{left:746.700000px;}
.x148_c00413{left:747.750000px;}
.x130_c00413{left:748.950000px;}
.xbb_c00413{left:750.600000px;}
.xff_c00413{left:752.100000px;}
.x135_c00413{left:754.350000px;}
.x115_c00413{left:755.550000px;}
.x126_c00413{left:756.600000px;}
.xd8_c00413{left:758.250000px;}
.x14a_c00413{left:759.300000px;}
.xd2_c00413{left:762.300000px;}
.xc7_c00413{left:764.250000px;}
.xce_c00413{left:767.850000px;}
.x105_c00413{left:769.350000px;}
.x129_c00413{left:771.600000px;}
.xef_c00413{left:772.950000px;}
.xad_c00413{left:774.000000px;}
.x12d_c00413{left:775.050000px;}
.xe9_c00413{left:777.450000px;}
.x111_c00413{left:778.500000px;}
.x119_c00413{left:780.600000px;}
.xd5_c00413{left:782.700000px;}
.xc1_c00413{left:784.350000px;}
.xf4_c00413{left:787.800000px;}
.x100_c00413{left:788.850000px;}
.xb7_c00413{left:790.500000px;}
.x11a_c00413{left:794.700000px;}
.x11e_c00413{left:796.200000px;}
.xf0_c00413{left:797.400000px;}
.x112_c00413{left:799.350000px;}
.x136_c00413{left:801.900000px;}
.xdf_c00413{left:803.250000px;}
.x140_c00413{left:804.300000px;}
.xf5_c00413{left:805.500000px;}
.x131_c00413{left:807.150000px;}
.xbc_c00413{left:808.950000px;}
.x13e_c00413{left:810.000000px;}
.xfa_c00413{left:811.650000px;}
.xc8_c00413{left:812.850000px;}
.xf1_c00413{left:815.100000px;}
.x145_c00413{left:816.300000px;}
.x12b_c00413{left:818.400000px;}
.xea_c00413{left:820.350000px;}
.x124_c00413{left:822.450000px;}
.xd9_c00413{left:824.100000px;}
.xe0_c00413{left:826.350000px;}
.x109_c00413{left:829.800000px;}
.x121_c00413{left:833.250000px;}
.xc9_c00413{left:834.450000px;}
.x12e_c00413{left:835.500000px;}
.xae_c00413{left:837.750000px;}
.xda_c00413{left:839.550000px;}
.x11f_c00413{left:841.500000px;}
.xe5_c00413{left:844.200000px;}
.xf2_c00413{left:845.400000px;}
.xd3_c00413{left:848.400000px;}
.x10a_c00413{left:850.350000px;}
.x13c_c00413{left:852.150000px;}
.x142_c00413{left:856.800000px;}
.x125_c00413{left:858.150000px;}
.xfb_c00413{left:859.200000px;}
.xbd_c00413{left:860.400000px;}
.x14b_c00413{left:861.600000px;}
.xf3_c00413{left:864.150000px;}
.x137_c00413{left:866.700000px;}
.x10e_c00413{left:868.650000px;}
.xfc_c00413{left:871.050000px;}
.x132_c00413{left:873.450000px;}
.x122_c00413{left:876.450000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws6_c00413{word-spacing:-9.682540pt;}
.ws8_c00413{word-spacing:-4.303933pt;}
.ws3_c00413{word-spacing:-4.301075pt;}
.ws5_c00413{word-spacing:0.000000pt;}
.ws2_c00413{word-spacing:1.185185pt;}
.ws1_c00413{word-spacing:1.823884pt;}
.ws0_c00413{word-spacing:1.836532pt;}
.ws4_c00413{word-spacing:3.333333pt;}
.ws9_c00413{word-spacing:17.532315pt;}
.ws7_c00413{word-spacing:25.180662pt;}
._0_c00413{width:37.849462pt;}
.fs5_c00413{font-size:42.666667pt;}
.fs4_c00413{font-size:48.000000pt;}
.fs3_c00413{font-size:53.333333pt;}
.fs2_c00413{font-size:58.666667pt;}
.fs1_c00413{font-size:64.000000pt;}
.fs0_c00413{font-size:96.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.y68_c00413{bottom:176.000000pt;}
.y37_c00413{bottom:182.666667pt;}
.y67_c00413{bottom:192.266667pt;}
.y36_c00413{bottom:195.466667pt;}
.y66_c00413{bottom:208.000000pt;}
.y35_c00413{bottom:208.266667pt;}
.y34_c00413{bottom:221.466667pt;}
.y65_c00413{bottom:223.866667pt;}
.y33_c00413{bottom:232.933333pt;}
.y64_c00413{bottom:239.866667pt;}
.y32_c00413{bottom:245.466667pt;}
.y63_c00413{bottom:255.600000pt;}
.y31_c00413{bottom:258.533333pt;}
.y30_c00413{bottom:270.400000pt;}
.y62_c00413{bottom:271.333333pt;}
.y2f_c00413{bottom:282.933333pt;}
.y61_c00413{bottom:286.666667pt;}
.y2e_c00413{bottom:295.333333pt;}
.y60_c00413{bottom:302.666667pt;}
.y2d_c00413{bottom:307.466667pt;}
.y5f_c00413{bottom:318.133333pt;}
.y2c_c00413{bottom:319.733333pt;}
.y2b_c00413{bottom:332.266667pt;}
.y5e_c00413{bottom:334.133333pt;}
.y2a_c00413{bottom:344.800000pt;}
.y5d_c00413{bottom:350.400000pt;}
.y29_c00413{bottom:357.333333pt;}
.y5c_c00413{bottom:366.400000pt;}
.y28_c00413{bottom:369.866667pt;}
.y27_c00413{bottom:382.400000pt;}
.y26_c00413{bottom:394.933333pt;}
.y5b_c00413{bottom:398.400000pt;}
.y25_c00413{bottom:407.466667pt;}
.y5a_c00413{bottom:414.133333pt;}
.y24_c00413{bottom:420.533333pt;}
.y59_c00413{bottom:430.133333pt;}
.y23_c00413{bottom:433.333333pt;}
.y22_c00413{bottom:445.866667pt;}
.y58_c00413{bottom:446.133333pt;}
.y21_c00413{bottom:458.666667pt;}
.y57_c00413{bottom:462.133333pt;}
.y20_c00413{bottom:471.733333pt;}
.y56_c00413{bottom:481.600000pt;}
.y55_c00413{bottom:497.333333pt;}
.y1f_c00413{bottom:513.200000pt;}
.y1e_c00413{bottom:528.933333pt;}
.y1d_c00413{bottom:544.666667pt;}
.y54_c00413{bottom:544.933333pt;}
.y53_c00413{bottom:560.933333pt;}
.y1c_c00413{bottom:564.266667pt;}
.y52_c00413{bottom:576.533333pt;}
.y1b_c00413{bottom:580.000000pt;}
.y51_c00413{bottom:592.800000pt;}
.y1a_c00413{bottom:596.266667pt;}
.y50_c00413{bottom:608.800000pt;}
.y19_c00413{bottom:612.000000pt;}
.y4f_c00413{bottom:624.533333pt;}
.y18_c00413{bottom:627.733333pt;}
.y4e_c00413{bottom:640.266667pt;}
.y17_c00413{bottom:643.733333pt;}
.y4d_c00413{bottom:656.266667pt;}
.y16_c00413{bottom:659.733333pt;}
.y4c_c00413{bottom:675.333333pt;}
.y15_c00413{bottom:675.466667pt;}
.y4b_c00413{bottom:691.066667pt;}
.y14_c00413{bottom:703.066667pt;}
.y4a_c00413{bottom:707.333333pt;}
.y49_c00413{bottom:723.333333pt;}
.y13_c00413{bottom:731.066667pt;}
.y48_c00413{bottom:739.066667pt;}
.y12_c00413{bottom:746.800000pt;}
.y47_c00413{bottom:755.066667pt;}
.y11_c00413{bottom:762.800000pt;}
.y46_c00413{bottom:771.066667pt;}
.y10_c00413{bottom:778.533333pt;}
.y45_c00413{bottom:786.800000pt;}
.yf_c00413{bottom:794.533333pt;}
.y44_c00413{bottom:802.800000pt;}
.ye_c00413{bottom:810.533333pt;}
.y43_c00413{bottom:818.533333pt;}
.yd_c00413{bottom:826.266667pt;}
.y42_c00413{bottom:838.666667pt;}
.yc_c00413{bottom:842.266667pt;}
.y41_c00413{bottom:854.400000pt;}
.yb_c00413{bottom:858.000000pt;}
.y40_c00413{bottom:870.400000pt;}
.ya_c00413{bottom:873.733333pt;}
.y3f_c00413{bottom:886.400000pt;}
.y9_c00413{bottom:889.466667pt;}
.y8_c00413{bottom:905.466667pt;}
.y3e_c00413{bottom:905.600000pt;}
.y7_c00413{bottom:921.200000pt;}
.y3d_c00413{bottom:921.866667pt;}
.y6_c00413{bottom:937.200000pt;}
.y3c_c00413{bottom:937.866667pt;}
.y5_c00413{bottom:953.200000pt;}
.y3b_c00413{bottom:953.600000pt;}
.y4_c00413{bottom:968.933333pt;}
.y3a_c00413{bottom:969.866667pt;}
.y3_c00413{bottom:984.933333pt;}
.y39_c00413{bottom:985.066667pt;}
.y2_c00413{bottom:1000.666667pt;}
.y38_c00413{bottom:1001.333333pt;}
.y1_c00413{bottom:1024.266667pt;}
.h7_c00413{height:42.666667pt;}
.h6_c00413{height:48.000000pt;}
.h5_c00413{height:53.333333pt;}
.h4_c00413{height:58.666667pt;}
.h3_c00413{height:64.000000pt;}
.h2_c00413{height:96.000000pt;}
.h1_c00413{height:1134.666667pt;}
.h0_c00413{height:1134.719971pt;}
.w0_c00413{width:853.760009pt;}
.w1_c00413{width:854.000000pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:164.800000pt;}
.x86_c00413{left:166.266667pt;}
.x79_c00413{left:167.200000pt;}
.x97_c00413{left:168.400000pt;}
.xa2_c00413{left:169.333333pt;}
.x9d_c00413{left:176.000000pt;}
.x8d_c00413{left:179.200000pt;}
.x4b_c00413{left:181.066667pt;}
.x3_c00413{left:182.133333pt;}
.x10_c00413{left:183.066667pt;}
.x81_c00413{left:184.800000pt;}
.x76_c00413{left:187.466667pt;}
.x98_c00413{left:188.933333pt;}
.x7a_c00413{left:194.133333pt;}
.x9a_c00413{left:195.866667pt;}
.x3f_c00413{left:197.333333pt;}
.x41_c00413{left:198.533333pt;}
.xb_c00413{left:200.800000pt;}
.x92_c00413{left:202.533333pt;}
.x88_c00413{left:205.200000pt;}
.x7b_c00413{left:207.200000pt;}
.x6c_c00413{left:208.933333pt;}
.x28_c00413{left:209.866667pt;}
.x7e_c00413{left:213.066667pt;}
.x74_c00413{left:214.400000pt;}
.x9c_c00413{left:216.000000pt;}
.x4_c00413{left:217.600000pt;}
.x45_c00413{left:218.533333pt;}
.x9b_c00413{left:219.866667pt;}
.x4f_c00413{left:220.933333pt;}
.x66_c00413{left:223.066667pt;}
.x29_c00413{left:225.866667pt;}
.x82_c00413{left:228.666667pt;}
.x21_c00413{left:229.600000pt;}
.x35_c00413{left:231.333333pt;}
.x75_c00413{left:232.666667pt;}
.x11_c00413{left:234.000000pt;}
.x16_c00413{left:234.933333pt;}
.x64_c00413{left:236.000000pt;}
.x4c_c00413{left:238.000000pt;}
.x87_c00413{left:238.933333pt;}
.x60_c00413{left:239.866667pt;}
.x1b_c00413{left:242.533333pt;}
.x31_c00413{left:245.466667pt;}
.xc_c00413{left:246.533333pt;}
.x9e_c00413{left:247.600000pt;}
.x46_c00413{left:248.933333pt;}
.x58_c00413{left:249.866667pt;}
.x5_c00413{left:251.466667pt;}
.x42_c00413{left:253.600000pt;}
.x6f_c00413{left:255.333333pt;}
.x4d_c00413{left:257.466667pt;}
.x22_c00413{left:258.666667pt;}
.x67_c00413{left:259.866667pt;}
.xa0_c00413{left:262.133333pt;}
.x71_c00413{left:263.066667pt;}
.x57_c00413{left:264.666667pt;}
.x1c_c00413{left:265.866667pt;}
.x55_c00413{left:267.200000pt;}
.x6_c00413{left:268.133333pt;}
.x62_c00413{left:269.200000pt;}
.x12_c00413{left:270.533333pt;}
.x50_c00413{left:271.466667pt;}
.x2a_c00413{left:273.200000pt;}
.x23_c00413{left:274.933333pt;}
.x72_c00413{left:276.800000pt;}
.x40_c00413{left:278.266667pt;}
.x8c_c00413{left:279.733333pt;}
.x3b_c00413{left:282.800000pt;}
.x1d_c00413{left:284.800000pt;}
.x5b_c00413{left:286.533333pt;}
.x51_c00413{left:287.733333pt;}
.x84_c00413{left:289.333333pt;}
.x36_c00413{left:296.533333pt;}
.x6d_c00413{left:299.200000pt;}
.x47_c00413{left:300.400000pt;}
.x3c_c00413{left:302.266667pt;}
.x61_c00413{left:303.600000pt;}
.x2b_c00413{left:305.200000pt;}
.x5c_c00413{left:306.400000pt;}
.xd_c00413{left:308.666667pt;}
.x24_c00413{left:310.133333pt;}
.x17_c00413{left:312.000000pt;}
.x68_c00413{left:313.600000pt;}
.x95_c00413{left:316.000000pt;}
.x52_c00413{left:318.133333pt;}
.x7c_c00413{left:319.200000pt;}
.x48_c00413{left:321.200000pt;}
.x4e_c00413{left:322.400000pt;}
.x5d_c00413{left:324.666667pt;}
.x93_c00413{left:326.266667pt;}
.x13_c00413{left:330.000000pt;}
.x7_c00413{left:332.133333pt;}
.x53_c00413{left:333.866667pt;}
.x32_c00413{left:335.066667pt;}
.x56_c00413{left:336.000000pt;}
.x1e_c00413{left:337.600000pt;}
.x2c_c00413{left:339.066667pt;}
.x8_c00413{left:340.400000pt;}
.x83_c00413{left:341.866667pt;}
.x37_c00413{left:344.533333pt;}
.x59_c00413{left:346.933333pt;}
.x49_c00413{left:349.066667pt;}
.xe_c00413{left:350.000000pt;}
.x18_c00413{left:351.733333pt;}
.x6e_c00413{left:352.933333pt;}
.x2d_c00413{left:354.133333pt;}
.x77_c00413{left:355.066667pt;}
.x7f_c00413{left:357.333333pt;}
.xa3_c00413{left:359.333333pt;}
.x1f_c00413{left:360.933333pt;}
.x9f_c00413{left:362.000000pt;}
.x38_c00413{left:363.733333pt;}
.x5a_c00413{left:365.200000pt;}
.x25_c00413{left:367.066667pt;}
.x19_c00413{left:369.333333pt;}
.x5e_c00413{left:371.066667pt;}
.x4a_c00413{left:373.733333pt;}
.x20_c00413{left:376.666667pt;}
.x39_c00413{left:378.400000pt;}
.xa5_c00413{left:380.800000pt;}
.x2_c00413{left:382.133333pt;}
.x8f_c00413{left:383.333333pt;}
.x85_c00413{left:384.933333pt;}
.x6a_c00413{left:386.933333pt;}
.x9_c00413{left:388.133333pt;}
.x96_c00413{left:389.200000pt;}
.x89_c00413{left:390.800000pt;}
.x26_c00413{left:392.000000pt;}
.x14_c00413{left:394.000000pt;}
.x7d_c00413{left:395.200000pt;}
.x80_c00413{left:397.333333pt;}
.x90_c00413{left:398.400000pt;}
.xf_c00413{left:399.333333pt;}
.x33_c00413{left:402.533333pt;}
.x3d_c00413{left:403.733333pt;}
.x1a_c00413{left:405.200000pt;}
.x8a_c00413{left:406.800000pt;}
.x54_c00413{left:407.866667pt;}
.x99_c00413{left:410.933333pt;}
.xa1_c00413{left:412.266667pt;}
.x6b_c00413{left:414.400000pt;}
.x73_c00413{left:415.333333pt;}
.x2e_c00413{left:417.466667pt;}
.x43_c00413{left:419.066667pt;}
.x3a_c00413{left:421.866667pt;}
.xa_c00413{left:423.600000pt;}
.x69_c00413{left:424.666667pt;}
.x65_c00413{left:425.866667pt;}
.x2f_c00413{left:426.800000pt;}
.x15_c00413{left:429.866667pt;}
.x70_c00413{left:431.733333pt;}
.x8e_c00413{left:432.666667pt;}
.xa4_c00413{left:434.533333pt;}
.x34_c00413{left:436.800000pt;}
.xa6_c00413{left:437.866667pt;}
.x5f_c00413{left:439.866667pt;}
.x30_c00413{left:440.933333pt;}
.x63_c00413{left:442.400000pt;}
.x27_c00413{left:443.466667pt;}
.x44_c00413{left:444.666667pt;}
.x8b_c00413{left:446.133333pt;}
.x3e_c00413{left:448.800000pt;}
.xa7_c00413{left:452.266667pt;}
.x91_c00413{left:455.333333pt;}
.x94_c00413{left:462.800000pt;}
.x78_c00413{left:463.866667pt;}
.xa8_c00413{left:497.866667pt;}
.xd4_c00413{left:499.066667pt;}
.xf6_c00413{left:500.000000pt;}
.xaf_c00413{left:501.200000pt;}
.x13f_c00413{left:502.400000pt;}
.xb3_c00413{left:514.266667pt;}
.x139_c00413{left:515.866667pt;}
.xe1_c00413{left:516.800000pt;}
.xe6_c00413{left:518.666667pt;}
.xdb_c00413{left:519.733333pt;}
.x12f_c00413{left:521.466667pt;}
.x13d_c00413{left:524.800000pt;}
.x14c_c00413{left:526.133333pt;}
.x101_c00413{left:528.666667pt;}
.x146_c00413{left:529.866667pt;}
.xc2_c00413{left:531.200000pt;}
.xa9_c00413{left:532.133333pt;}
.x116_c00413{left:533.600000pt;}
.x113_c00413{left:535.066667pt;}
.xb0_c00413{left:536.133333pt;}
.x14d_c00413{left:537.333333pt;}
.xc3_c00413{left:538.933333pt;}
.x102_c00413{left:543.333333pt;}
.xb8_c00413{left:546.800000pt;}
.x10f_c00413{left:547.866667pt;}
.xeb_c00413{left:549.066667pt;}
.xaa_c00413{left:550.400000pt;}
.xbe_c00413{left:552.000000pt;}
.x106_c00413{left:553.600000pt;}
.xb1_c00413{left:556.933333pt;}
.x123_c00413{left:558.266667pt;}
.xf7_c00413{left:559.200000pt;}
.x13a_c00413{left:560.666667pt;}
.xb9_c00413{left:561.866667pt;}
.xab_c00413{left:562.933333pt;}
.x143_c00413{left:566.133333pt;}
.xf8_c00413{left:568.133333pt;}
.xca_c00413{left:570.133333pt;}
.x11b_c00413{left:571.066667pt;}
.xe7_c00413{left:572.400000pt;}
.xd6_c00413{left:573.866667pt;}
.xb4_c00413{left:576.000000pt;}
.xcf_c00413{left:578.533333pt;}
.xcb_c00413{left:581.066667pt;}
.xfd_c00413{left:582.800000pt;}
.xc4_c00413{left:585.600000pt;}
.x110_c00413{left:588.400000pt;}
.x120_c00413{left:589.466667pt;}
.x10b_c00413{left:590.400000pt;}
.xb2_c00413{left:591.466667pt;}
.xc5_c00413{left:592.666667pt;}
.xb5_c00413{left:593.600000pt;}
.xd0_c00413{left:594.800000pt;}
.x11c_c00413{left:596.000000pt;}
.x107_c00413{left:598.666667pt;}
.xec_c00413{left:600.000000pt;}
.xbf_c00413{left:600.933333pt;}
.x11d_c00413{left:601.866667pt;}
.x117_c00413{left:603.333333pt;}
.x10c_c00413{left:606.133333pt;}
.x147_c00413{left:607.333333pt;}
.xe2_c00413{left:608.666667pt;}
.x133_c00413{left:610.666667pt;}
.xcc_c00413{left:612.133333pt;}
.xdc_c00413{left:614.133333pt;}
.xc6_c00413{left:616.000000pt;}
.x12a_c00413{left:617.066667pt;}
.x141_c00413{left:618.800000pt;}
.xe3_c00413{left:623.066667pt;}
.x103_c00413{left:624.666667pt;}
.xf9_c00413{left:625.733333pt;}
.xd7_c00413{left:626.666667pt;}
.x127_c00413{left:627.866667pt;}
.xb6_c00413{left:629.066667pt;}
.xd1_c00413{left:630.266667pt;}
.xe8_c00413{left:631.866667pt;}
.xba_c00413{left:632.933333pt;}
.xdd_c00413{left:634.266667pt;}
.x134_c00413{left:635.600000pt;}
.x118_c00413{left:636.933333pt;}
.x128_c00413{left:638.133333pt;}
.xed_c00413{left:639.066667pt;}
.x108_c00413{left:640.933333pt;}
.x12c_c00413{left:642.533333pt;}
.x114_c00413{left:643.466667pt;}
.x138_c00413{left:644.933333pt;}
.xcd_c00413{left:646.666667pt;}
.xac_c00413{left:648.666667pt;}
.x104_c00413{left:650.533333pt;}
.x149_c00413{left:651.466667pt;}
.x10d_c00413{left:653.466667pt;}
.xee_c00413{left:654.800000pt;}
.xc0_c00413{left:656.266667pt;}
.xe4_c00413{left:657.333333pt;}
.x13b_c00413{left:658.266667pt;}
.xfe_c00413{left:660.266667pt;}
.x144_c00413{left:662.266667pt;}
.xde_c00413{left:663.733333pt;}
.x148_c00413{left:664.666667pt;}
.x130_c00413{left:665.733333pt;}
.xbb_c00413{left:667.200000pt;}
.xff_c00413{left:668.533333pt;}
.x135_c00413{left:670.533333pt;}
.x115_c00413{left:671.600000pt;}
.x126_c00413{left:672.533333pt;}
.xd8_c00413{left:674.000000pt;}
.x14a_c00413{left:674.933333pt;}
.xd2_c00413{left:677.600000pt;}
.xc7_c00413{left:679.333333pt;}
.xce_c00413{left:682.533333pt;}
.x105_c00413{left:683.866667pt;}
.x129_c00413{left:685.866667pt;}
.xef_c00413{left:687.066667pt;}
.xad_c00413{left:688.000000pt;}
.x12d_c00413{left:688.933333pt;}
.xe9_c00413{left:691.066667pt;}
.x111_c00413{left:692.000000pt;}
.x119_c00413{left:693.866667pt;}
.xd5_c00413{left:695.733333pt;}
.xc1_c00413{left:697.200000pt;}
.xf4_c00413{left:700.266667pt;}
.x100_c00413{left:701.200000pt;}
.xb7_c00413{left:702.666667pt;}
.x11a_c00413{left:706.400000pt;}
.x11e_c00413{left:707.733333pt;}
.xf0_c00413{left:708.800000pt;}
.x112_c00413{left:710.533333pt;}
.x136_c00413{left:712.800000pt;}
.xdf_c00413{left:714.000000pt;}
.x140_c00413{left:714.933333pt;}
.xf5_c00413{left:716.000000pt;}
.x131_c00413{left:717.466667pt;}
.xbc_c00413{left:719.066667pt;}
.x13e_c00413{left:720.000000pt;}
.xfa_c00413{left:721.466667pt;}
.xc8_c00413{left:722.533333pt;}
.xf1_c00413{left:724.533333pt;}
.x145_c00413{left:725.600000pt;}
.x12b_c00413{left:727.466667pt;}
.xea_c00413{left:729.200000pt;}
.x124_c00413{left:731.066667pt;}
.xd9_c00413{left:732.533333pt;}
.xe0_c00413{left:734.533333pt;}
.x109_c00413{left:737.600000pt;}
.x121_c00413{left:740.666667pt;}
.xc9_c00413{left:741.733333pt;}
.x12e_c00413{left:742.666667pt;}
.xae_c00413{left:744.666667pt;}
.xda_c00413{left:746.266667pt;}
.x11f_c00413{left:748.000000pt;}
.xe5_c00413{left:750.400000pt;}
.xf2_c00413{left:751.466667pt;}
.xd3_c00413{left:754.133333pt;}
.x10a_c00413{left:755.866667pt;}
.x13c_c00413{left:757.466667pt;}
.x142_c00413{left:761.600000pt;}
.x125_c00413{left:762.800000pt;}
.xfb_c00413{left:763.733333pt;}
.xbd_c00413{left:764.800000pt;}
.x14b_c00413{left:765.866667pt;}
.xf3_c00413{left:768.133333pt;}
.x137_c00413{left:770.400000pt;}
.x10e_c00413{left:772.133333pt;}
.xfc_c00413{left:774.266667pt;}
.x132_c00413{left:776.400000pt;}
.x122_c00413{left:779.066667pt;}
}





/* 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_c00414 {
    display:none;
  }
  .loading-indicator_c00414.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00414 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_c00414 { 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_c00414" -> "#page-container .classname_c00414")
 */
.pf_c00414 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00414 { /* 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_c00414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00414 { /* 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_c00414 { /* 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_c00414 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00414 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00414 {overflow:visible;}
  }
}
.c_c00414 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00414 { /* 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_c00414:after { /* webkit #35443 */
  content: '';
}
.t_c00414:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00414 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 */
}
.__c00414 { /* 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_c00414 { /* info for Javascript */
  display:none;
}
.l_c00414 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00414 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00414 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00414: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_c00414 {
    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_c00414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00414.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_c00414 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00414;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.000000;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;}
.mfe_c00414{transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);}
.m24_c00414{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m53_c00414{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m78_c00414{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m81_c00414{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m101_c00414{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mea_c00414{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00414{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m48_c00414{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mf_c00414{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00414{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00414{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m17_c00414{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00414{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00414{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m50_c00414{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00414{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m83_c00414{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me9_c00414{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m100_c00414{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00414{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m61_c00414{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00414{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00414{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00414{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00414{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m94_c00414{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00414{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me1_c00414{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mad_c00414{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me3_c00414{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.md_c00414{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m54_c00414{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00414{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m105_c00414{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md6_c00414{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m75_c00414{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me2_c00414{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m102_c00414{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00414{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m97_c00414{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00414{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m45_c00414{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00414{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00414{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m36_c00414{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m82_c00414{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md5_c00414{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m31_c00414{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m38_c00414{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.maf_c00414{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m65_c00414{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.md9_c00414{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma_c00414{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6_c00414{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mba_c00414{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m88_c00414{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00414{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00414{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00414{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00414{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m85_c00414{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00414{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m70_c00414{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m41_c00414{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mca_c00414{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mef_c00414{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00414{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00414{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md0_c00414{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m63_c00414{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00414{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m69_c00414{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mda_c00414{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00414{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00414{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m55_c00414{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00414{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m43_c00414{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m58_c00414{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00414{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2_c00414{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8_c00414{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m7_c00414{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3_c00414{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc_c00414{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m80_c00414{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.me8_c00414{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m15_c00414{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00414{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m96_c00414{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00414{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5_c00414{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m16_c00414{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00414{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mee_c00414{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00414{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m51_c00414{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m93_c00414{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m64_c00414{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m59_c00414{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00414{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00414{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m95_c00414{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m49_c00414{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00414{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00414{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m18_c00414{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00414{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m66_c00414{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00414{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m76_c00414{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md2_c00414{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m67_c00414{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9_c00414{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m28_c00414{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m92_c00414{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00414{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00414{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00414{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00414{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00414{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m13_c00414{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md8_c00414{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.med_c00414{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00414{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m12_c00414{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00414{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00414{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m26_c00414{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m29_c00414{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me4_c00414{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00414{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m52_c00414{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.maa_c00414{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mce_c00414{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00414{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00414{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m40_c00414{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00414{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00414{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00414{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00414{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00414{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m98_c00414{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m42_c00414{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m79_c00414{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00414{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00414{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m91_c00414{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m44_c00414{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mac_c00414{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m57_c00414{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00414{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m47_c00414{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m35_c00414{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00414{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00414{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m23_c00414{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00414{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m56_c00414{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00414{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me6_c00414{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m86_c00414{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00414{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m68_c00414{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m33_c00414{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00414{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m99_c00414{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11_c00414{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00414{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00414{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m14_c00414{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m25_c00414{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md1_c00414{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m84_c00414{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00414{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00414{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00414{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00414{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m89_c00414{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00414{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10_c00414{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00414{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.md3_c00414{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00414{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00414{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00414{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4_c00414{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00414{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m62_c00414{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m30_c00414{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb_c00414{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00414{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m46_c00414{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me0_c00414{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00414{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m72_c00414{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m73_c00414{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00414{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me7_c00414{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00414{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m60_c00414{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m87_c00414{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00414{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00414{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00414{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00414{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.meb_c00414{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m74_c00414{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00414{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.me_c00414{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m20_c00414{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mae_c00414{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00414{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00414{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00414{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00414{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m21_c00414{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mec_c00414{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00414{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m37_c00414{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00414{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m22_c00414{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me5_c00414{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00414{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m32_c00414{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mff_c00414{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00414{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m27_c00414{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00414{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00414{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m90_c00414{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00414{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00414{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m103_c00414{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mab_c00414{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m77_c00414{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m39_c00414{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00414{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00414{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00414{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00414{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00414{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md7_c00414{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00414{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.md4_c00414{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00414{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mde_c00414{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00414{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m104_c00414{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m19_c00414{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m34_c00414{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00414{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00414{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00414{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00414{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m71_c00414{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00414{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00414{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m106_c00414{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m0_c00414{transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls0_c00414{letter-spacing:0.000000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{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__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00414{word-spacing:-9.262009px;}
.wsc_c00414{word-spacing:-5.388535px;}
.ws2_c00414{word-spacing:-5.319066px;}
.ws8_c00414{word-spacing:-3.592357px;}
.ws7_c00414{word-spacing:-1.401747px;}
.wsd_c00414{word-spacing:0.000000px;}
.wsb_c00414{word-spacing:0.540541px;}
.ws4_c00414{word-spacing:1.758745px;}
.wsa_c00414{word-spacing:3.235294px;}
.ws5_c00414{word-spacing:5.515078px;}
.ws0_c00414{word-spacing:5.993236px;}
.ws3_c00414{word-spacing:16.173594px;}
.ws9_c00414{word-spacing:22.000000px;}
.ws6_c00414{word-spacing:323.875000px;}
.fc0_c00414{color:transparent;}
.fs6_c00414{font-size:18.000000px;}
.fs4_c00414{font-size:54.000000px;}
.fs3_c00414{font-size:60.000000px;}
.fs2_c00414{font-size:66.000000px;}
.fs5_c00414{font-size:72.000000px;}
.fs1_c00414{font-size:78.000000px;}
.fs0_c00414{font-size:84.000000px;}
.y0_c00414{bottom:0.000000px;}
.y6a_c00414{bottom:169.950000px;}
.y69_c00414{bottom:186.900000px;}
.y36_c00414{bottom:191.850000px;}
.y68_c00414{bottom:201.300000px;}
.y35_c00414{bottom:208.800000px;}
.y67_c00414{bottom:221.400000px;}
.y34_c00414{bottom:231.600000px;}
.y66_c00414{bottom:241.200000px;}
.y33_c00414{bottom:249.300000px;}
.y65_c00414{bottom:257.400000px;}
.y32_c00414{bottom:267.300000px;}
.y64_c00414{bottom:280.200000px;}
.y31_c00414{bottom:285.000000px;}
.y63_c00414{bottom:298.500000px;}
.y30_c00414{bottom:302.700000px;}
.y62_c00414{bottom:316.200000px;}
.y2f_c00414{bottom:320.700000px;}
.y61_c00414{bottom:333.900000px;}
.y2e_c00414{bottom:338.400000px;}
.y60_c00414{bottom:352.200000px;}
.y2d_c00414{bottom:358.950000px;}
.y5f_c00414{bottom:369.450000px;}
.y2c_c00414{bottom:378.750000px;}
.y5e_c00414{bottom:387.750000px;}
.y2b_c00414{bottom:396.750000px;}
.y5d_c00414{bottom:405.750000px;}
.y2a_c00414{bottom:414.300000px;}
.y5c_c00414{bottom:427.350000px;}
.y29_c00414{bottom:435.900000px;}
.y5b_c00414{bottom:445.350000px;}
.y28_c00414{bottom:453.150000px;}
.y27_c00414{bottom:470.850000px;}
.y5a_c00414{bottom:474.150000px;}
.y26_c00414{bottom:488.850000px;}
.y59_c00414{bottom:492.150000px;}
.y25_c00414{bottom:506.550000px;}
.y58_c00414{bottom:510.150000px;}
.y24_c00414{bottom:524.250000px;}
.y57_c00414{bottom:528.150000px;}
.y23_c00414{bottom:542.250000px;}
.y56_c00414{bottom:545.850000px;}
.y55_c00414{bottom:553.800000px;}
.y22_c00414{bottom:560.250000px;}
.y54_c00414{bottom:563.850000px;}
.y53_c00414{bottom:576.450000px;}
.y21_c00414{bottom:577.950000px;}
.y52_c00414{bottom:583.950000px;}
.y20_c00414{bottom:595.950000px;}
.y51_c00414{bottom:599.700000px;}
.y1f_c00414{bottom:613.650000px;}
.y50_c00414{bottom:626.100000px;}
.y1e_c00414{bottom:631.650000px;}
.y4f_c00414{bottom:643.800000px;}
.y1d_c00414{bottom:649.350000px;}
.y4e_c00414{bottom:661.800000px;}
.y1c_c00414{bottom:667.050000px;}
.y4d_c00414{bottom:679.800000px;}
.y1b_c00414{bottom:690.000000px;}
.y4c_c00414{bottom:697.500000px;}
.y1a_c00414{bottom:708.000000px;}
.y4b_c00414{bottom:715.500000px;}
.y19_c00414{bottom:725.700000px;}
.y4a_c00414{bottom:733.200000px;}
.y18_c00414{bottom:743.700000px;}
.y49_c00414{bottom:750.900000px;}
.y17_c00414{bottom:761.400000px;}
.y48_c00414{bottom:768.900000px;}
.y16_c00414{bottom:779.400000px;}
.y47_c00414{bottom:786.900000px;}
.y15_c00414{bottom:801.000000px;}
.y46_c00414{bottom:804.900000px;}
.y14_c00414{bottom:819.000000px;}
.y45_c00414{bottom:822.900000px;}
.y13_c00414{bottom:836.700000px;}
.y44_c00414{bottom:841.200000px;}
.y43_c00414{bottom:858.450000px;}
.y12_c00414{bottom:858.900000px;}
.y11_c00414{bottom:876.450000px;}
.y42_c00414{bottom:893.700000px;}
.y10_c00414{bottom:894.450000px;}
.y41_c00414{bottom:912.000000px;}
.yf_c00414{bottom:912.450000px;}
.y40_c00414{bottom:929.700000px;}
.ye_c00414{bottom:930.150000px;}
.y3f_c00414{bottom:947.400000px;}
.yd_c00414{bottom:947.850000px;}
.y3e_c00414{bottom:965.400000px;}
.yc_c00414{bottom:966.300000px;}
.y3d_c00414{bottom:983.400000px;}
.yb_c00414{bottom:987.900000px;}
.ya_c00414{bottom:1000.500000px;}
.y3c_c00414{bottom:1001.100000px;}
.y9_c00414{bottom:1007.700000px;}
.y3b_c00414{bottom:1019.100000px;}
.y8_c00414{bottom:1023.750000px;}
.y7_c00414{bottom:1041.450000px;}
.y3a_c00414{bottom:1045.800000px;}
.y6_c00414{bottom:1059.450000px;}
.y39_c00414{bottom:1064.100000px;}
.y5_c00414{bottom:1081.500000px;}
.y38_c00414{bottom:1081.800000px;}
.y4_c00414{bottom:1099.500000px;}
.y37_c00414{bottom:1099.800000px;}
.y3_c00414{bottom:1117.500000px;}
.y2_c00414{bottom:1143.300000px;}
.y1_c00414{bottom:1144.800000px;}
.h8_c00414{height:18.000000px;}
.h6_c00414{height:54.000000px;}
.h5_c00414{height:60.000000px;}
.h4_c00414{height:66.000000px;}
.h7_c00414{height:72.000000px;}
.h3_c00414{height:78.000000px;}
.h2_c00414{height:84.000000px;}
.h1_c00414{height:1268.250000px;}
.h0_c00414{height:1268.279937px;}
.w0_c00414{width:960.480010px;}
.w1_c00414{width:960.750000px;}
.x0_c00414{left:0.000000px;}
.x4f_c00414{left:91.050000px;}
.x25_c00414{left:92.100000px;}
.x9a_c00414{left:97.200000px;}
.x90_c00414{left:98.250000px;}
.x78_c00414{left:99.450000px;}
.x1f_c00414{left:101.100000px;}
.x3_c00414{left:102.300000px;}
.xb_c00414{left:103.650000px;}
.xa3_c00414{left:116.250000px;}
.x52_c00414{left:117.600000px;}
.x2e_c00414{left:119.550000px;}
.x67_c00414{left:120.600000px;}
.x4_c00414{left:122.100000px;}
.x9e_c00414{left:123.150000px;}
.x82_c00414{left:125.100000px;}
.x4a_c00414{left:126.600000px;}
.x79_c00414{left:129.750000px;}
.xa0_c00414{left:132.150000px;}
.x54_c00414{left:134.550000px;}
.xa2_c00414{left:135.750000px;}
.x20_c00414{left:137.100000px;}
.xc_c00414{left:139.350000px;}
.x26_c00414{left:141.000000px;}
.x74_c00414{left:142.950000px;}
.x59_c00414{left:144.150000px;}
.x3b_c00414{left:147.600000px;}
.x42_c00414{left:148.650000px;}
.x6c_c00414{left:150.300000px;}
.x91_c00414{left:151.500000px;}
.x46_c00414{left:152.850000px;}
.x1a_c00414{left:154.050000px;}
.x21_c00414{left:155.100000px;}
.x8d_c00414{left:156.600000px;}
.x80_c00414{left:157.800000px;}
.x6d_c00414{left:159.600000px;}
.x2b_c00414{left:161.400000px;}
.x47_c00414{left:162.600000px;}
.x8a_c00414{left:164.550000px;}
.x14_c00414{left:168.600000px;}
.x4b_c00414{left:169.800000px;}
.x86_c00414{left:172.200000px;}
.x7a_c00414{left:174.450000px;}
.x7d_c00414{left:175.800000px;}
.x68_c00414{left:177.150000px;}
.x5c_c00414{left:180.000000px;}
.x5_c00414{left:181.200000px;}
.x5a_c00414{left:184.800000px;}
.x22_c00414{left:187.500000px;}
.x55_c00414{left:189.600000px;}
.x2f_c00414{left:190.800000px;}
.x36_c00414{left:193.350000px;}
.x92_c00414{left:195.450000px;}
.x27_c00414{left:196.800000px;}
.x48_c00414{left:197.850000px;}
.x3c_c00414{left:199.800000px;}
.x15_c00414{left:202.500000px;}
.x1b_c00414{left:205.200000px;}
.x7b_c00414{left:206.850000px;}
.x56_c00414{left:209.250000px;}
.x9c_c00414{left:211.050000px;}
.x30_c00414{left:212.100000px;}
.x37_c00414{left:214.200000px;}
.xa1_c00414{left:216.000000px;}
.x93_c00414{left:217.350000px;}
.x71_c00414{left:219.000000px;}
.xd_c00414{left:222.150000px;}
.x83_c00414{left:223.800000px;}
.x5d_c00414{left:228.900000px;}
.x1c_c00414{left:230.700000px;}
.x60_c00414{left:231.750000px;}
.x4c_c00414{left:233.550000px;}
.x6_c00414{left:235.200000px;}
.x7e_c00414{left:236.250000px;}
.x97_c00414{left:238.050000px;}
.x3d_c00414{left:240.150000px;}
.x81_c00414{left:241.350000px;}
.x2c_c00414{left:243.150000px;}
.x23_c00414{left:244.350000px;}
.x9f_c00414{left:245.550000px;}
.xe_c00414{left:246.600000px;}
.x8b_c00414{left:248.850000px;}
.x31_c00414{left:249.900000px;}
.x28_c00414{left:251.550000px;}
.x43_c00414{left:253.050000px;}
.x53_c00414{left:254.100000px;}
.x87_c00414{left:256.050000px;}
.x3e_c00414{left:257.100000px;}
.x16_c00414{left:258.600000px;}
.x2d_c00414{left:260.400000px;}
.xf_c00414{left:262.050000px;}
.x98_c00414{left:263.250000px;}
.x57_c00414{left:264.300000px;}
.x75_c00414{left:265.350000px;}
.x24_c00414{left:267.000000px;}
.x69_c00414{left:268.050000px;}
.x17_c00414{left:269.700000px;}
.x5e_c00414{left:272.100000px;}
.x32_c00414{left:273.600000px;}
.x61_c00414{left:276.000000px;}
.x88_c00414{left:277.950000px;}
.x38_c00414{left:279.750000px;}
.x94_c00414{left:282.450000px;}
.x9d_c00414{left:283.500000px;}
.x95_c00414{left:284.550000px;}
.x6e_c00414{left:286.200000px;}
.x76_c00414{left:287.250000px;}
.x7_c00414{left:288.450000px;}
.x6a_c00414{left:289.650000px;}
.x7f_c00414{left:290.700000px;}
.x50_c00414{left:291.750000px;}
.x63_c00414{left:293.700000px;}
.x3f_c00414{left:298.200000px;}
.x62_c00414{left:299.700000px;}
.x7c_c00414{left:302.550000px;}
.x8e_c00414{left:304.200000px;}
.x44_c00414{left:305.550000px;}
.x10_c00414{left:306.750000px;}
.x8_c00414{left:309.000000px;}
.x1d_c00414{left:311.400000px;}
.x64_c00414{left:315.600000px;}
.x6f_c00414{left:317.100000px;}
.x33_c00414{left:318.300000px;}
.x11_c00414{left:319.650000px;}
.xa5_c00414{left:321.600000px;}
.x51_c00414{left:323.100000px;}
.x84_c00414{left:324.150000px;}
.xa4_c00414{left:325.650000px;}
.x72_c00414{left:327.000000px;}
.x58_c00414{left:328.800000px;}
.x1_c00414{left:331.500000px;}
.x65_c00414{left:334.350000px;}
.x4d_c00414{left:337.050000px;}
.x1e_c00414{left:338.100000px;}
.x29_c00414{left:341.400000px;}
.x5f_c00414{left:343.350000px;}
.x9_c00414{left:348.900000px;}
.x70_c00414{left:353.100000px;}
.x39_c00414{left:354.300000px;}
.x12_c00414{left:355.650000px;}
.x18_c00414{left:357.450000px;}
.x34_c00414{left:362.550000px;}
.x2a_c00414{left:364.800000px;}
.x66_c00414{left:366.750000px;}
.x6b_c00414{left:368.100000px;}
.x96_c00414{left:369.600000px;}
.x89_c00414{left:372.600000px;}
.x45_c00414{left:374.700000px;}
.x13_c00414{left:375.750000px;}
.x8c_c00414{left:377.400000px;}
.x4e_c00414{left:379.500000px;}
.x3a_c00414{left:381.600000px;}
.x19_c00414{left:383.700000px;}
.x77_c00414{left:388.350000px;}
.x40_c00414{left:390.600000px;}
.x49_c00414{left:392.700000px;}
.x85_c00414{left:395.400000px;}
.x99_c00414{left:397.500000px;}
.x8f_c00414{left:398.550000px;}
.x41_c00414{left:399.600000px;}
.xa_c00414{left:403.650000px;}
.x5b_c00414{left:405.750000px;}
.x35_c00414{left:409.650000px;}
.x9b_c00414{left:414.000000px;}
.x73_c00414{left:416.250000px;}
.x140_c00414{left:428.100000px;}
.x141_c00414{left:438.600000px;}
.x11d_c00414{left:440.250000px;}
.xcb_c00414{left:442.500000px;}
.x12b_c00414{left:453.000000px;}
.x136_c00414{left:456.450000px;}
.xf9_c00414{left:457.650000px;}
.xd0_c00414{left:459.300000px;}
.xc5_c00414{left:461.400000px;}
.xb0_c00414{left:462.450000px;}
.x12e_c00414{left:474.900000px;}
.xd1_c00414{left:477.000000px;}
.x13e_c00414{left:478.350000px;}
.xa6_c00414{left:480.300000px;}
.x109_c00414{left:481.950000px;}
.xb1_c00414{left:483.300000px;}
.x10b_c00414{left:484.350000px;}
.xdc_c00414{left:486.450000px;}
.x12c_c00414{left:487.800000px;}
.xfa_c00414{left:489.000000px;}
.xe7_c00414{left:490.050000px;}
.xfb_c00414{left:493.650000px;}
.x127_c00414{left:495.900000px;}
.x130_c00414{left:497.100000px;}
.xc6_c00414{left:500.250000px;}
.xcc_c00414{left:502.200000px;}
.xb7_c00414{left:504.450000px;}
.x112_c00414{left:505.800000px;}
.x11e_c00414{left:506.850000px;}
.xec_c00414{left:510.600000px;}
.xf0_c00414{left:511.950000px;}
.x10c_c00414{left:513.150000px;}
.xd7_c00414{left:514.650000px;}
.xbe_c00414{left:516.450000px;}
.x102_c00414{left:518.550000px;}
.x123_c00414{left:520.950000px;}
.xa7_c00414{left:524.250000px;}
.x146_c00414{left:525.450000px;}
.xdd_c00414{left:527.100000px;}
.x11f_c00414{left:530.400000px;}
.xe8_c00414{left:531.450000px;}
.xf1_c00414{left:532.500000px;}
.xbf_c00414{left:536.550000px;}
.x103_c00414{left:537.600000px;}
.xb2_c00414{left:538.800000px;}
.x125_c00414{left:540.300000px;}
.xa8_c00414{left:541.950000px;}
.xb8_c00414{left:543.750000px;}
.x134_c00414{left:546.000000px;}
.xde_c00414{left:547.200000px;}
.x120_c00414{left:548.400000px;}
.x142_c00414{left:549.750000px;}
.xf5_c00414{left:551.550000px;}
.x113_c00414{left:553.650000px;}
.x11b_c00414{left:556.500000px;}
.xd2_c00414{left:557.700000px;}
.xa9_c00414{left:559.650000px;}
.xc7_c00414{left:561.450000px;}
.x10f_c00414{left:563.250000px;}
.x116_c00414{left:564.300000px;}
.xb9_c00414{left:565.650000px;}
.x13f_c00414{left:567.300000px;}
.x131_c00414{left:569.100000px;}
.xed_c00414{left:570.600000px;}
.x137_c00414{left:572.400000px;}
.x143_c00414{left:574.500000px;}
.x104_c00414{left:575.700000px;}
.xc0_c00414{left:577.950000px;}
.xd3_c00414{left:579.300000px;}
.xdf_c00414{left:581.400000px;}
.x139_c00414{left:583.500000px;}
.xcd_c00414{left:584.700000px;}
.xf2_c00414{left:587.250000px;}
.xd8_c00414{left:588.900000px;}
.x118_c00414{left:589.950000px;}
.x128_c00414{left:592.350000px;}
.x115_c00414{left:593.700000px;}
.x10a_c00414{left:596.100000px;}
.x105_c00414{left:598.350000px;}
.xf6_c00414{left:599.850000px;}
.xfc_c00414{left:601.650000px;}
.xe9_c00414{left:603.150000px;}
.xe4_c00414{left:604.500000px;}
.x100_c00414{left:607.350000px;}
.x114_c00414{left:608.700000px;}
.x11c_c00414{left:613.800000px;}
.xd4_c00414{left:615.000000px;}
.x117_c00414{left:616.200000px;}
.xba_c00414{left:617.850000px;}
.xaa_c00414{left:619.800000px;}
.xe0_c00414{left:622.800000px;}
.xb3_c00414{left:625.200000px;}
.x101_c00414{left:627.900000px;}
.xfd_c00414{left:630.450000px;}
.x129_c00414{left:632.700000px;}
.xc8_c00414{left:634.200000px;}
.x13c_c00414{left:636.750000px;}
.x12a_c00414{left:639.150000px;}
.x10d_c00414{left:640.200000px;}
.xbb_c00414{left:642.000000px;}
.xc1_c00414{left:643.500000px;}
.xb4_c00414{left:646.500000px;}
.x110_c00414{left:648.450000px;}
.xab_c00414{left:650.100000px;}
.xf7_c00414{left:651.300000px;}
.x13a_c00414{left:652.650000px;}
.xc9_c00414{left:654.300000px;}
.xe1_c00414{left:655.500000px;}
.x10e_c00414{left:657.450000px;}
.xf3_c00414{left:658.950000px;}
.x12f_c00414{left:660.450000px;}
.xe5_c00414{left:663.300000px;}
.x106_c00414{left:665.250000px;}
.x108_c00414{left:667.050000px;}
.xac_c00414{left:668.400000px;}
.xca_c00414{left:670.500000px;}
.x119_c00414{left:675.000000px;}
.xc2_c00414{left:678.750000px;}
.x121_c00414{left:682.050000px;}
.xd5_c00414{left:683.400000px;}
.x111_c00414{left:685.500000px;}
.x13d_c00414{left:686.700000px;}
.xea_c00414{left:687.750000px;}
.x107_c00414{left:688.950000px;}
.x138_c00414{left:693.750000px;}
.xb5_c00414{left:696.600000px;}
.xc3_c00414{left:699.300000px;}
.xce_c00414{left:701.700000px;}
.xfe_c00414{left:703.050000px;}
.x144_c00414{left:704.700000px;}
.xf8_c00414{left:708.900000px;}
.x12d_c00414{left:710.550000px;}
.xd9_c00414{left:712.050000px;}
.x13b_c00414{left:713.400000px;}
.x135_c00414{left:714.600000px;}
.xe2_c00414{left:715.650000px;}
.x132_c00414{left:717.450000px;}
.xad_c00414{left:719.850000px;}
.xcf_c00414{left:721.800000px;}
.xee_c00414{left:724.050000px;}
.x145_c00414{left:726.000000px;}
.x122_c00414{left:728.850000px;}
.xda_c00414{left:730.050000px;}
.xff_c00414{left:731.100000px;}
.xe3_c00414{left:732.150000px;}
.xe6_c00414{left:735.600000px;}
.xbc_c00414{left:738.150000px;}
.xae_c00414{left:739.950000px;}
.xef_c00414{left:741.750000px;}
.x124_c00414{left:745.050000px;}
.xeb_c00414{left:747.150000px;}
.x147_c00414{left:749.700000px;}
.x126_c00414{left:751.500000px;}
.xf4_c00414{left:752.550000px;}
.x2_c00414{left:755.550000px;}
.xd6_c00414{left:758.700000px;}
.x11a_c00414{left:759.900000px;}
.xc4_c00414{left:762.000000px;}
.xdb_c00414{left:763.200000px;}
.xb6_c00414{left:764.700000px;}
.xbd_c00414{left:765.900000px;}
.x133_c00414{left:771.750000px;}
.xaf_c00414{left:777.450000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws1_c00414{word-spacing:-8.232897pt;}
.wsc_c00414{word-spacing:-4.789809pt;}
.ws2_c00414{word-spacing:-4.728059pt;}
.ws8_c00414{word-spacing:-3.193206pt;}
.ws7_c00414{word-spacing:-1.245997pt;}
.wsd_c00414{word-spacing:0.000000pt;}
.wsb_c00414{word-spacing:0.480480pt;}
.ws4_c00414{word-spacing:1.563329pt;}
.wsa_c00414{word-spacing:2.875817pt;}
.ws5_c00414{word-spacing:4.902292pt;}
.ws0_c00414{word-spacing:5.327321pt;}
.ws3_c00414{word-spacing:14.376528pt;}
.ws9_c00414{word-spacing:19.555556pt;}
.ws6_c00414{word-spacing:287.888889pt;}
.fs6_c00414{font-size:16.000000pt;}
.fs4_c00414{font-size:48.000000pt;}
.fs3_c00414{font-size:53.333333pt;}
.fs2_c00414{font-size:58.666667pt;}
.fs5_c00414{font-size:64.000000pt;}
.fs1_c00414{font-size:69.333333pt;}
.fs0_c00414{font-size:74.666667pt;}
.y0_c00414{bottom:0.000000pt;}
.y6a_c00414{bottom:151.066667pt;}
.y69_c00414{bottom:166.133333pt;}
.y36_c00414{bottom:170.533333pt;}
.y68_c00414{bottom:178.933333pt;}
.y35_c00414{bottom:185.600000pt;}
.y67_c00414{bottom:196.800000pt;}
.y34_c00414{bottom:205.866667pt;}
.y66_c00414{bottom:214.400000pt;}
.y33_c00414{bottom:221.600000pt;}
.y65_c00414{bottom:228.800000pt;}
.y32_c00414{bottom:237.600000pt;}
.y64_c00414{bottom:249.066667pt;}
.y31_c00414{bottom:253.333333pt;}
.y63_c00414{bottom:265.333333pt;}
.y30_c00414{bottom:269.066667pt;}
.y62_c00414{bottom:281.066667pt;}
.y2f_c00414{bottom:285.066667pt;}
.y61_c00414{bottom:296.800000pt;}
.y2e_c00414{bottom:300.800000pt;}
.y60_c00414{bottom:313.066667pt;}
.y2d_c00414{bottom:319.066667pt;}
.y5f_c00414{bottom:328.400000pt;}
.y2c_c00414{bottom:336.666667pt;}
.y5e_c00414{bottom:344.666667pt;}
.y2b_c00414{bottom:352.666667pt;}
.y5d_c00414{bottom:360.666667pt;}
.y2a_c00414{bottom:368.266667pt;}
.y5c_c00414{bottom:379.866667pt;}
.y29_c00414{bottom:387.466667pt;}
.y5b_c00414{bottom:395.866667pt;}
.y28_c00414{bottom:402.800000pt;}
.y27_c00414{bottom:418.533333pt;}
.y5a_c00414{bottom:421.466667pt;}
.y26_c00414{bottom:434.533333pt;}
.y59_c00414{bottom:437.466667pt;}
.y25_c00414{bottom:450.266667pt;}
.y58_c00414{bottom:453.466667pt;}
.y24_c00414{bottom:466.000000pt;}
.y57_c00414{bottom:469.466667pt;}
.y23_c00414{bottom:482.000000pt;}
.y56_c00414{bottom:485.200000pt;}
.y55_c00414{bottom:492.266667pt;}
.y22_c00414{bottom:498.000000pt;}
.y54_c00414{bottom:501.200000pt;}
.y53_c00414{bottom:512.400000pt;}
.y21_c00414{bottom:513.733333pt;}
.y52_c00414{bottom:519.066667pt;}
.y20_c00414{bottom:529.733333pt;}
.y51_c00414{bottom:533.066667pt;}
.y1f_c00414{bottom:545.466667pt;}
.y50_c00414{bottom:556.533333pt;}
.y1e_c00414{bottom:561.466667pt;}
.y4f_c00414{bottom:572.266667pt;}
.y1d_c00414{bottom:577.200000pt;}
.y4e_c00414{bottom:588.266667pt;}
.y1c_c00414{bottom:592.933333pt;}
.y4d_c00414{bottom:604.266667pt;}
.y1b_c00414{bottom:613.333333pt;}
.y4c_c00414{bottom:620.000000pt;}
.y1a_c00414{bottom:629.333333pt;}
.y4b_c00414{bottom:636.000000pt;}
.y19_c00414{bottom:645.066667pt;}
.y4a_c00414{bottom:651.733333pt;}
.y18_c00414{bottom:661.066667pt;}
.y49_c00414{bottom:667.466667pt;}
.y17_c00414{bottom:676.800000pt;}
.y48_c00414{bottom:683.466667pt;}
.y16_c00414{bottom:692.800000pt;}
.y47_c00414{bottom:699.466667pt;}
.y15_c00414{bottom:712.000000pt;}
.y46_c00414{bottom:715.466667pt;}
.y14_c00414{bottom:728.000000pt;}
.y45_c00414{bottom:731.466667pt;}
.y13_c00414{bottom:743.733333pt;}
.y44_c00414{bottom:747.733333pt;}
.y43_c00414{bottom:763.066667pt;}
.y12_c00414{bottom:763.466667pt;}
.y11_c00414{bottom:779.066667pt;}
.y42_c00414{bottom:794.400000pt;}
.y10_c00414{bottom:795.066667pt;}
.y41_c00414{bottom:810.666667pt;}
.yf_c00414{bottom:811.066667pt;}
.y40_c00414{bottom:826.400000pt;}
.ye_c00414{bottom:826.800000pt;}
.y3f_c00414{bottom:842.133333pt;}
.yd_c00414{bottom:842.533333pt;}
.y3e_c00414{bottom:858.133333pt;}
.yc_c00414{bottom:858.933333pt;}
.y3d_c00414{bottom:874.133333pt;}
.yb_c00414{bottom:878.133333pt;}
.ya_c00414{bottom:889.333333pt;}
.y3c_c00414{bottom:889.866667pt;}
.y9_c00414{bottom:895.733333pt;}
.y3b_c00414{bottom:905.866667pt;}
.y8_c00414{bottom:910.000000pt;}
.y7_c00414{bottom:925.733333pt;}
.y3a_c00414{bottom:929.600000pt;}
.y6_c00414{bottom:941.733333pt;}
.y39_c00414{bottom:945.866667pt;}
.y5_c00414{bottom:961.333333pt;}
.y38_c00414{bottom:961.600000pt;}
.y4_c00414{bottom:977.333333pt;}
.y37_c00414{bottom:977.600000pt;}
.y3_c00414{bottom:993.333333pt;}
.y2_c00414{bottom:1016.266667pt;}
.y1_c00414{bottom:1017.600000pt;}
.h8_c00414{height:16.000000pt;}
.h6_c00414{height:48.000000pt;}
.h5_c00414{height:53.333333pt;}
.h4_c00414{height:58.666667pt;}
.h7_c00414{height:64.000000pt;}
.h3_c00414{height:69.333333pt;}
.h2_c00414{height:74.666667pt;}
.h1_c00414{height:1127.333333pt;}
.h0_c00414{height:1127.359944pt;}
.w0_c00414{width:853.760009pt;}
.w1_c00414{width:854.000000pt;}
.x0_c00414{left:0.000000pt;}
.x4f_c00414{left:80.933333pt;}
.x25_c00414{left:81.866667pt;}
.x9a_c00414{left:86.400000pt;}
.x90_c00414{left:87.333333pt;}
.x78_c00414{left:88.400000pt;}
.x1f_c00414{left:89.866667pt;}
.x3_c00414{left:90.933333pt;}
.xb_c00414{left:92.133333pt;}
.xa3_c00414{left:103.333333pt;}
.x52_c00414{left:104.533333pt;}
.x2e_c00414{left:106.266667pt;}
.x67_c00414{left:107.200000pt;}
.x4_c00414{left:108.533333pt;}
.x9e_c00414{left:109.466667pt;}
.x82_c00414{left:111.200000pt;}
.x4a_c00414{left:112.533333pt;}
.x79_c00414{left:115.333333pt;}
.xa0_c00414{left:117.466667pt;}
.x54_c00414{left:119.600000pt;}
.xa2_c00414{left:120.666667pt;}
.x20_c00414{left:121.866667pt;}
.xc_c00414{left:123.866667pt;}
.x26_c00414{left:125.333333pt;}
.x74_c00414{left:127.066667pt;}
.x59_c00414{left:128.133333pt;}
.x3b_c00414{left:131.200000pt;}
.x42_c00414{left:132.133333pt;}
.x6c_c00414{left:133.600000pt;}
.x91_c00414{left:134.666667pt;}
.x46_c00414{left:135.866667pt;}
.x1a_c00414{left:136.933333pt;}
.x21_c00414{left:137.866667pt;}
.x8d_c00414{left:139.200000pt;}
.x80_c00414{left:140.266667pt;}
.x6d_c00414{left:141.866667pt;}
.x2b_c00414{left:143.466667pt;}
.x47_c00414{left:144.533333pt;}
.x8a_c00414{left:146.266667pt;}
.x14_c00414{left:149.866667pt;}
.x4b_c00414{left:150.933333pt;}
.x86_c00414{left:153.066667pt;}
.x7a_c00414{left:155.066667pt;}
.x7d_c00414{left:156.266667pt;}
.x68_c00414{left:157.466667pt;}
.x5c_c00414{left:160.000000pt;}
.x5_c00414{left:161.066667pt;}
.x5a_c00414{left:164.266667pt;}
.x22_c00414{left:166.666667pt;}
.x55_c00414{left:168.533333pt;}
.x2f_c00414{left:169.600000pt;}
.x36_c00414{left:171.866667pt;}
.x92_c00414{left:173.733333pt;}
.x27_c00414{left:174.933333pt;}
.x48_c00414{left:175.866667pt;}
.x3c_c00414{left:177.600000pt;}
.x15_c00414{left:180.000000pt;}
.x1b_c00414{left:182.400000pt;}
.x7b_c00414{left:183.866667pt;}
.x56_c00414{left:186.000000pt;}
.x9c_c00414{left:187.600000pt;}
.x30_c00414{left:188.533333pt;}
.x37_c00414{left:190.400000pt;}
.xa1_c00414{left:192.000000pt;}
.x93_c00414{left:193.200000pt;}
.x71_c00414{left:194.666667pt;}
.xd_c00414{left:197.466667pt;}
.x83_c00414{left:198.933333pt;}
.x5d_c00414{left:203.466667pt;}
.x1c_c00414{left:205.066667pt;}
.x60_c00414{left:206.000000pt;}
.x4c_c00414{left:207.600000pt;}
.x6_c00414{left:209.066667pt;}
.x7e_c00414{left:210.000000pt;}
.x97_c00414{left:211.600000pt;}
.x3d_c00414{left:213.466667pt;}
.x81_c00414{left:214.533333pt;}
.x2c_c00414{left:216.133333pt;}
.x23_c00414{left:217.200000pt;}
.x9f_c00414{left:218.266667pt;}
.xe_c00414{left:219.200000pt;}
.x8b_c00414{left:221.200000pt;}
.x31_c00414{left:222.133333pt;}
.x28_c00414{left:223.600000pt;}
.x43_c00414{left:224.933333pt;}
.x53_c00414{left:225.866667pt;}
.x87_c00414{left:227.600000pt;}
.x3e_c00414{left:228.533333pt;}
.x16_c00414{left:229.866667pt;}
.x2d_c00414{left:231.466667pt;}
.xf_c00414{left:232.933333pt;}
.x98_c00414{left:234.000000pt;}
.x57_c00414{left:234.933333pt;}
.x75_c00414{left:235.866667pt;}
.x24_c00414{left:237.333333pt;}
.x69_c00414{left:238.266667pt;}
.x17_c00414{left:239.733333pt;}
.x5e_c00414{left:241.866667pt;}
.x32_c00414{left:243.200000pt;}
.x61_c00414{left:245.333333pt;}
.x88_c00414{left:247.066667pt;}
.x38_c00414{left:248.666667pt;}
.x94_c00414{left:251.066667pt;}
.x9d_c00414{left:252.000000pt;}
.x95_c00414{left:252.933333pt;}
.x6e_c00414{left:254.400000pt;}
.x76_c00414{left:255.333333pt;}
.x7_c00414{left:256.400000pt;}
.x6a_c00414{left:257.466667pt;}
.x7f_c00414{left:258.400000pt;}
.x50_c00414{left:259.333333pt;}
.x63_c00414{left:261.066667pt;}
.x3f_c00414{left:265.066667pt;}
.x62_c00414{left:266.400000pt;}
.x7c_c00414{left:268.933333pt;}
.x8e_c00414{left:270.400000pt;}
.x44_c00414{left:271.600000pt;}
.x10_c00414{left:272.666667pt;}
.x8_c00414{left:274.666667pt;}
.x1d_c00414{left:276.800000pt;}
.x64_c00414{left:280.533333pt;}
.x6f_c00414{left:281.866667pt;}
.x33_c00414{left:282.933333pt;}
.x11_c00414{left:284.133333pt;}
.xa5_c00414{left:285.866667pt;}
.x51_c00414{left:287.200000pt;}
.x84_c00414{left:288.133333pt;}
.xa4_c00414{left:289.466667pt;}
.x72_c00414{left:290.666667pt;}
.x58_c00414{left:292.266667pt;}
.x1_c00414{left:294.666667pt;}
.x65_c00414{left:297.200000pt;}
.x4d_c00414{left:299.600000pt;}
.x1e_c00414{left:300.533333pt;}
.x29_c00414{left:303.466667pt;}
.x5f_c00414{left:305.200000pt;}
.x9_c00414{left:310.133333pt;}
.x70_c00414{left:313.866667pt;}
.x39_c00414{left:314.933333pt;}
.x12_c00414{left:316.133333pt;}
.x18_c00414{left:317.733333pt;}
.x34_c00414{left:322.266667pt;}
.x2a_c00414{left:324.266667pt;}
.x66_c00414{left:326.000000pt;}
.x6b_c00414{left:327.200000pt;}
.x96_c00414{left:328.533333pt;}
.x89_c00414{left:331.200000pt;}
.x45_c00414{left:333.066667pt;}
.x13_c00414{left:334.000000pt;}
.x8c_c00414{left:335.466667pt;}
.x4e_c00414{left:337.333333pt;}
.x3a_c00414{left:339.200000pt;}
.x19_c00414{left:341.066667pt;}
.x77_c00414{left:345.200000pt;}
.x40_c00414{left:347.200000pt;}
.x49_c00414{left:349.066667pt;}
.x85_c00414{left:351.466667pt;}
.x99_c00414{left:353.333333pt;}
.x8f_c00414{left:354.266667pt;}
.x41_c00414{left:355.200000pt;}
.xa_c00414{left:358.800000pt;}
.x5b_c00414{left:360.666667pt;}
.x35_c00414{left:364.133333pt;}
.x9b_c00414{left:368.000000pt;}
.x73_c00414{left:370.000000pt;}
.x140_c00414{left:380.533333pt;}
.x141_c00414{left:389.866667pt;}
.x11d_c00414{left:391.333333pt;}
.xcb_c00414{left:393.333333pt;}
.x12b_c00414{left:402.666667pt;}
.x136_c00414{left:405.733333pt;}
.xf9_c00414{left:406.800000pt;}
.xd0_c00414{left:408.266667pt;}
.xc5_c00414{left:410.133333pt;}
.xb0_c00414{left:411.066667pt;}
.x12e_c00414{left:422.133333pt;}
.xd1_c00414{left:424.000000pt;}
.x13e_c00414{left:425.200000pt;}
.xa6_c00414{left:426.933333pt;}
.x109_c00414{left:428.400000pt;}
.xb1_c00414{left:429.600000pt;}
.x10b_c00414{left:430.533333pt;}
.xdc_c00414{left:432.400000pt;}
.x12c_c00414{left:433.600000pt;}
.xfa_c00414{left:434.666667pt;}
.xe7_c00414{left:435.600000pt;}
.xfb_c00414{left:438.800000pt;}
.x127_c00414{left:440.800000pt;}
.x130_c00414{left:441.866667pt;}
.xc6_c00414{left:444.666667pt;}
.xcc_c00414{left:446.400000pt;}
.xb7_c00414{left:448.400000pt;}
.x112_c00414{left:449.600000pt;}
.x11e_c00414{left:450.533333pt;}
.xec_c00414{left:453.866667pt;}
.xf0_c00414{left:455.066667pt;}
.x10c_c00414{left:456.133333pt;}
.xd7_c00414{left:457.466667pt;}
.xbe_c00414{left:459.066667pt;}
.x102_c00414{left:460.933333pt;}
.x123_c00414{left:463.066667pt;}
.xa7_c00414{left:466.000000pt;}
.x146_c00414{left:467.066667pt;}
.xdd_c00414{left:468.533333pt;}
.x11f_c00414{left:471.466667pt;}
.xe8_c00414{left:472.400000pt;}
.xf1_c00414{left:473.333333pt;}
.xbf_c00414{left:476.933333pt;}
.x103_c00414{left:477.866667pt;}
.xb2_c00414{left:478.933333pt;}
.x125_c00414{left:480.266667pt;}
.xa8_c00414{left:481.733333pt;}
.xb8_c00414{left:483.333333pt;}
.x134_c00414{left:485.333333pt;}
.xde_c00414{left:486.400000pt;}
.x120_c00414{left:487.466667pt;}
.x142_c00414{left:488.666667pt;}
.xf5_c00414{left:490.266667pt;}
.x113_c00414{left:492.133333pt;}
.x11b_c00414{left:494.666667pt;}
.xd2_c00414{left:495.733333pt;}
.xa9_c00414{left:497.466667pt;}
.xc7_c00414{left:499.066667pt;}
.x10f_c00414{left:500.666667pt;}
.x116_c00414{left:501.600000pt;}
.xb9_c00414{left:502.800000pt;}
.x13f_c00414{left:504.266667pt;}
.x131_c00414{left:505.866667pt;}
.xed_c00414{left:507.200000pt;}
.x137_c00414{left:508.800000pt;}
.x143_c00414{left:510.666667pt;}
.x104_c00414{left:511.733333pt;}
.xc0_c00414{left:513.733333pt;}
.xd3_c00414{left:514.933333pt;}
.xdf_c00414{left:516.800000pt;}
.x139_c00414{left:518.666667pt;}
.xcd_c00414{left:519.733333pt;}
.xf2_c00414{left:522.000000pt;}
.xd8_c00414{left:523.466667pt;}
.x118_c00414{left:524.400000pt;}
.x128_c00414{left:526.533333pt;}
.x115_c00414{left:527.733333pt;}
.x10a_c00414{left:529.866667pt;}
.x105_c00414{left:531.866667pt;}
.xf6_c00414{left:533.200000pt;}
.xfc_c00414{left:534.800000pt;}
.xe9_c00414{left:536.133333pt;}
.xe4_c00414{left:537.333333pt;}
.x100_c00414{left:539.866667pt;}
.x114_c00414{left:541.066667pt;}
.x11c_c00414{left:545.600000pt;}
.xd4_c00414{left:546.666667pt;}
.x117_c00414{left:547.733333pt;}
.xba_c00414{left:549.200000pt;}
.xaa_c00414{left:550.933333pt;}
.xe0_c00414{left:553.600000pt;}
.xb3_c00414{left:555.733333pt;}
.x101_c00414{left:558.133333pt;}
.xfd_c00414{left:560.400000pt;}
.x129_c00414{left:562.400000pt;}
.xc8_c00414{left:563.733333pt;}
.x13c_c00414{left:566.000000pt;}
.x12a_c00414{left:568.133333pt;}
.x10d_c00414{left:569.066667pt;}
.xbb_c00414{left:570.666667pt;}
.xc1_c00414{left:572.000000pt;}
.xb4_c00414{left:574.666667pt;}
.x110_c00414{left:576.400000pt;}
.xab_c00414{left:577.866667pt;}
.xf7_c00414{left:578.933333pt;}
.x13a_c00414{left:580.133333pt;}
.xc9_c00414{left:581.600000pt;}
.xe1_c00414{left:582.666667pt;}
.x10e_c00414{left:584.400000pt;}
.xf3_c00414{left:585.733333pt;}
.x12f_c00414{left:587.066667pt;}
.xe5_c00414{left:589.600000pt;}
.x106_c00414{left:591.333333pt;}
.x108_c00414{left:592.933333pt;}
.xac_c00414{left:594.133333pt;}
.xca_c00414{left:596.000000pt;}
.x119_c00414{left:600.000000pt;}
.xc2_c00414{left:603.333333pt;}
.x121_c00414{left:606.266667pt;}
.xd5_c00414{left:607.466667pt;}
.x111_c00414{left:609.333333pt;}
.x13d_c00414{left:610.400000pt;}
.xea_c00414{left:611.333333pt;}
.x107_c00414{left:612.400000pt;}
.x138_c00414{left:616.666667pt;}
.xb5_c00414{left:619.200000pt;}
.xc3_c00414{left:621.600000pt;}
.xce_c00414{left:623.733333pt;}
.xfe_c00414{left:624.933333pt;}
.x144_c00414{left:626.400000pt;}
.xf8_c00414{left:630.133333pt;}
.x12d_c00414{left:631.600000pt;}
.xd9_c00414{left:632.933333pt;}
.x13b_c00414{left:634.133333pt;}
.x135_c00414{left:635.200000pt;}
.xe2_c00414{left:636.133333pt;}
.x132_c00414{left:637.733333pt;}
.xad_c00414{left:639.866667pt;}
.xcf_c00414{left:641.600000pt;}
.xee_c00414{left:643.600000pt;}
.x145_c00414{left:645.333333pt;}
.x122_c00414{left:647.866667pt;}
.xda_c00414{left:648.933333pt;}
.xff_c00414{left:649.866667pt;}
.xe3_c00414{left:650.800000pt;}
.xe6_c00414{left:653.866667pt;}
.xbc_c00414{left:656.133333pt;}
.xae_c00414{left:657.733333pt;}
.xef_c00414{left:659.333333pt;}
.x124_c00414{left:662.266667pt;}
.xeb_c00414{left:664.133333pt;}
.x147_c00414{left:666.400000pt;}
.x126_c00414{left:668.000000pt;}
.xf4_c00414{left:668.933333pt;}
.x2_c00414{left:671.600000pt;}
.xd6_c00414{left:674.400000pt;}
.x11a_c00414{left:675.466667pt;}
.xc4_c00414{left:677.333333pt;}
.xdb_c00414{left:678.400000pt;}
.xb6_c00414{left:679.733333pt;}
.xbd_c00414{left:680.800000pt;}
.x133_c00414{left:686.000000pt;}
.xaf_c00414{left:691.066667pt;}
}





/* 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_c00415 {
    display:none;
  }
  .loading-indicator_c00415.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00415 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_c00415 { 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_c00415" -> "#page-container .classname_c00415")
 */
.pf_c00415 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00415 { /* 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_c00415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00415 { /* 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_c00415 { /* 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_c00415 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00415 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00415 {overflow:visible;}
  }
}
.c_c00415 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00415 { /* 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_c00415:after { /* webkit #35443 */
  content: '';
}
.t_c00415:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00415 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 */
}
.__c00415 { /* 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_c00415 { /* info for Javascript */
  display:none;
}
.l_c00415 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00415 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00415 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00415: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_c00415 {
    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_c00415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00415.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_c00415 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00415;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.000000;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;}
.mbf_c00415{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00415{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m91_c00415{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00415{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00415{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m32_c00415{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00415{transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00415{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6_c00415{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m44_c00415{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mac_c00415{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00415{transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);}
.m109_c00415{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00415{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m82_c00415{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00415{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00415{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m57_c00415{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m79_c00415{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m83_c00415{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m94_c00415{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00415{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00415{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00415{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m66_c00415{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00415{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m71_c00415{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m68_c00415{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m13_c00415{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m76_c00415{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m63_c00415{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m102_c00415{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m59_c00415{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00415{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md1_c00415{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00415{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mec_c00415{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00415{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mde_c00415{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00415{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m86_c00415{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00415{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mee_c00415{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m49_c00415{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9_c00415{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m75_c00415{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb_c00415{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00415{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m78_c00415{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m50_c00415{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00415{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md2_c00415{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00415{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00415{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m65_c00415{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m5_c00415{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00415{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m85_c00415{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00415{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m77_c00415{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m81_c00415{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00415{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m80_c00415{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00415{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00415{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md9_c00415{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mef_c00415{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m35_c00415{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00415{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00415{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00415{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m56_c00415{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m51_c00415{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00415{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m27_c00415{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me3_c00415{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m53_c00415{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m31_c00415{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00415{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m24_c00415{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.maa_c00415{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m16_c00415{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m30_c00415{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mea_c00415{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m33_c00415{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.meb_c00415{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m52_c00415{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00415{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m61_c00415{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00415{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00415{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m36_c00415{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m8_c00415{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00415{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00415{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00415{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m47_c00415{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00415{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m84_c00415{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m38_c00415{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00415{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.md4_c00415{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m37_c00415{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m26_c00415{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m104_c00415{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m20_c00415{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m14_c00415{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00415{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00415{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m22_c00415{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m10_c00415{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00415{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00415{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.med_c00415{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00415{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mce_c00415{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mab_c00415{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md5_c00415{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00415{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.me2_c00415{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00415{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me5_c00415{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m48_c00415{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00415{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00415{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m64_c00415{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md7_c00415{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00415{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md3_c00415{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m42_c00415{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00415{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00415{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00415{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc_c00415{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00415{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m45_c00415{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00415{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md_c00415{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00415{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00415{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me0_c00415{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m62_c00415{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00415{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00415{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2_c00415{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00415{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m99_c00415{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00415{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m29_c00415{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m25_c00415{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md6_c00415{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m60_c00415{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m39_c00415{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me1_c00415{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00415{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00415{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00415{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00415{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00415{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.maf_c00415{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00415{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00415{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m28_c00415{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m19_c00415{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m93_c00415{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m72_c00415{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00415{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mad_c00415{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m74_c00415{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md8_c00415{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00415{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m15_c00415{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mae_c00415{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00415{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m7_c00415{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m98_c00415{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00415{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m11_c00415{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me6_c00415{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00415{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00415{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m67_c00415{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md0_c00415{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me7_c00415{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00415{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m105_c00415{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m41_c00415{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00415{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m100_c00415{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m21_c00415{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00415{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m97_c00415{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00415{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m12_c00415{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m110_c00415{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mda_c00415{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m54_c00415{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me8_c00415{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m46_c00415{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m40_c00415{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00415{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m18_c00415{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00415{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m106_c00415{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma_c00415{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00415{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00415{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m88_c00415{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me4_c00415{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00415{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mf_c00415{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00415{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00415{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00415{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00415{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00415{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m43_c00415{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m34_c00415{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m90_c00415{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m73_c00415{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00415{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00415{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00415{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);}
.m5a_c00415{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00415{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00415{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m103_c00415{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mff_c00415{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mba_c00415{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m23_c00415{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me9_c00415{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00415{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00415{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me_c00415{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00415{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00415{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m107_c00415{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00415{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m70_c00415{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00415{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m55_c00415{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m17_c00415{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00415{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00415{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00415{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m69_c00415{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00415{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m96_c00415{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00415{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m89_c00415{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m108_c00415{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00415{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00415{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00415{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m95_c00415{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m92_c00415{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00415{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m101_c00415{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00415{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00415{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00415{transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00415{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00415{transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00415{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00415{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00415{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m58_c00415{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m87_c00415{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mca_c00415{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{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__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00415{word-spacing:-7.500000px;}
.ws4_c00415{word-spacing:-7.308983px;}
.ws2_c00415{word-spacing:-7.156425px;}
.ws0_c00415{word-spacing:-6.527778px;}
.ws6_c00415{word-spacing:0.000000px;}
.ws1_c00415{word-spacing:3.917197px;}
.ws5_c00415{word-spacing:11.666667px;}
.fc0_c00415{color:transparent;}
.fs3_c00415{font-size:30.000000px;}
.fs7_c00415{font-size:36.000000px;}
.fs8_c00415{font-size:48.000000px;}
.fs5_c00415{font-size:54.000000px;}
.fs2_c00415{font-size:60.000000px;}
.fs0_c00415{font-size:66.000000px;}
.fs4_c00415{font-size:72.000000px;}
.fs1_c00415{font-size:78.000000px;}
.fs6_c00415{font-size:108.000000px;}
.y0_c00415{bottom:0.000000px;}
.y67_c00415{bottom:197.400000px;}
.y34_c00415{bottom:201.600000px;}
.y66_c00415{bottom:212.100000px;}
.y33_c00415{bottom:218.550000px;}
.y65_c00415{bottom:226.500000px;}
.y32_c00415{bottom:235.800000px;}
.y64_c00415{bottom:241.200000px;}
.y31_c00415{bottom:253.500000px;}
.y63_c00415{bottom:255.300000px;}
.y62_c00415{bottom:270.000000px;}
.y30_c00415{bottom:270.750000px;}
.y61_c00415{bottom:283.650000px;}
.y2f_c00415{bottom:288.000000px;}
.y2e_c00415{bottom:305.700000px;}
.y2d_c00415{bottom:323.700000px;}
.y60_c00415{bottom:330.450000px;}
.y2c_c00415{bottom:341.400000px;}
.y5f_c00415{bottom:353.100000px;}
.y2b_c00415{bottom:359.400000px;}
.y5e_c00415{bottom:375.900000px;}
.y2a_c00415{bottom:377.700000px;}
.y5d_c00415{bottom:393.750000px;}
.y29_c00415{bottom:402.000000px;}
.y5c_c00415{bottom:411.750000px;}
.y28_c00415{bottom:425.100000px;}
.y5b_c00415{bottom:429.750000px;}
.y27_c00415{bottom:445.350000px;}
.y5a_c00415{bottom:447.450000px;}
.y26_c00415{bottom:463.350000px;}
.y59_c00415{bottom:465.450000px;}
.y58_c00415{bottom:483.450000px;}
.y25_c00415{bottom:489.450000px;}
.y57_c00415{bottom:501.450000px;}
.y24_c00415{bottom:507.450000px;}
.y56_c00415{bottom:519.150000px;}
.y23_c00415{bottom:525.150000px;}
.y55_c00415{bottom:536.700000px;}
.y22_c00415{bottom:542.850000px;}
.y54_c00415{bottom:554.400000px;}
.y21_c00415{bottom:560.850000px;}
.y53_c00415{bottom:572.400000px;}
.y20_c00415{bottom:578.550000px;}
.y52_c00415{bottom:590.400000px;}
.y1f_c00415{bottom:604.800000px;}
.y51_c00415{bottom:608.100000px;}
.y50_c00415{bottom:626.100000px;}
.y1e_c00415{bottom:635.100000px;}
.y4f_c00415{bottom:644.250000px;}
.y1d_c00415{bottom:653.850000px;}
.y4e_c00415{bottom:661.950000px;}
.y1c_c00415{bottom:672.150000px;}
.y4d_c00415{bottom:679.950000px;}
.y1b_c00415{bottom:697.950000px;}
.y4c_c00415{bottom:715.650000px;}
.y1a_c00415{bottom:716.700000px;}
.y4b_c00415{bottom:733.350000px;}
.y19_c00415{bottom:734.400000px;}
.y4a_c00415{bottom:751.050000px;}
.y18_c00415{bottom:752.400000px;}
.y49_c00415{bottom:770.100000px;}
.y17_c00415{bottom:770.400000px;}
.y48_c00415{bottom:786.600000px;}
.y16_c00415{bottom:788.100000px;}
.y15_c00415{bottom:796.350000px;}
.y47_c00415{bottom:804.600000px;}
.y14_c00415{bottom:806.400000px;}
.y46_c00415{bottom:822.300000px;}
.y13_c00415{bottom:832.050000px;}
.y45_c00415{bottom:840.150000px;}
.y12_c00415{bottom:850.800000px;}
.y44_c00415{bottom:858.150000px;}
.y11_c00415{bottom:868.800000px;}
.y43_c00415{bottom:876.150000px;}
.y10_c00415{bottom:886.800000px;}
.y42_c00415{bottom:893.850000px;}
.yf_c00415{bottom:904.800000px;}
.y41_c00415{bottom:910.800000px;}
.y40_c00415{bottom:921.900000px;}
.ye_c00415{bottom:922.800000px;}
.y3f_c00415{bottom:929.850000px;}
.y3e_c00415{bottom:939.600000px;}
.yd_c00415{bottom:940.050000px;}
.y68_c00415{bottom:943.200000px;}
.y3c_c00415{bottom:950.400000px;}
.y3d_c00415{bottom:956.550000px;}
.yc_c00415{bottom:958.050000px;}
.yb_c00415{bottom:975.750000px;}
.y3b_c00415{bottom:976.650000px;}
.ya_c00415{bottom:993.450000px;}
.y3a_c00415{bottom:994.350000px;}
.y9_c00415{bottom:1011.150000px;}
.y39_c00415{bottom:1016.400000px;}
.y8_c00415{bottom:1029.450000px;}
.y38_c00415{bottom:1034.700000px;}
.y7_c00415{bottom:1047.150000px;}
.y37_c00415{bottom:1064.850000px;}
.y6_c00415{bottom:1065.150000px;}
.y5_c00415{bottom:1082.850000px;}
.y36_c00415{bottom:1100.100000px;}
.y4_c00415{bottom:1100.850000px;}
.y35_c00415{bottom:1118.100000px;}
.y3_c00415{bottom:1118.850000px;}
.y1_c00415{bottom:1143.000000px;}
.y2_c00415{bottom:1145.850000px;}
.h5_c00415{height:30.000000px;}
.h9_c00415{height:36.000000px;}
.ha_c00415{height:48.000000px;}
.h7_c00415{height:54.000000px;}
.h4_c00415{height:60.000000px;}
.h2_c00415{height:66.000000px;}
.h6_c00415{height:72.000000px;}
.h3_c00415{height:78.000000px;}
.h8_c00415{height:108.000000px;}
.h0_c00415{height:1265.039977px;}
.h1_c00415{height:1265.250000px;}
.w0_c00415{width:960.480010px;}
.w1_c00415{width:960.750000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:185.100000px;}
.x71_c00415{left:186.450000px;}
.x7c_c00415{left:188.250000px;}
.x91_c00415{left:190.050000px;}
.xa_c00415{left:202.350000px;}
.x16_c00415{left:204.150000px;}
.x7a_c00415{left:206.850000px;}
.x8a_c00415{left:208.200000px;}
.x97_c00415{left:209.250000px;}
.x9f_c00415{left:210.450000px;}
.x66_c00415{left:220.350000px;}
.x2b_c00415{left:221.400000px;}
.x80_c00415{left:225.750000px;}
.x87_c00415{left:226.950000px;}
.x47_c00415{left:231.300000px;}
.x60_c00415{left:232.500000px;}
.x8b_c00415{left:233.700000px;}
.x11_c00415{left:234.900000px;}
.x7b_c00415{left:237.450000px;}
.x5b_c00415{left:240.750000px;}
.x9c_c00415{left:242.400000px;}
.xb_c00415{left:245.550000px;}
.x5c_c00415{left:246.900000px;}
.x67_c00415{left:248.400000px;}
.x4e_c00415{left:253.350000px;}
.x93_c00415{left:255.900000px;}
.x17_c00415{left:257.400000px;}
.x12_c00415{left:258.600000px;}
.x3a_c00415{left:260.550000px;}
.x88_c00415{left:261.600000px;}
.x48_c00415{left:263.700000px;}
.x5d_c00415{left:265.650000px;}
.xc_c00415{left:267.450000px;}
.x3_c00415{left:269.250000px;}
.x6c_c00415{left:270.750000px;}
.x49_c00415{left:274.200000px;}
.x95_c00415{left:275.400000px;}
.x63_c00415{left:276.750000px;}
.x41_c00415{left:277.950000px;}
.x30_c00415{left:280.350000px;}
.x25_c00415{left:281.400000px;}
.x90_c00415{left:282.600000px;}
.x2c_c00415{left:283.650000px;}
.x36_c00415{left:285.000000px;}
.x21_c00415{left:287.700000px;}
.x94_c00415{left:289.500000px;}
.x75_c00415{left:290.850000px;}
.x70_c00415{left:292.350000px;}
.x4f_c00415{left:294.300000px;}
.x56_c00415{left:295.950000px;}
.x81_c00415{left:297.900000px;}
.x85_c00415{left:300.300000px;}
.x31_c00415{left:302.250000px;}
.x68_c00415{left:303.450000px;}
.x3b_c00415{left:305.850000px;}
.x1b_c00415{left:309.000000px;}
.x4_c00415{left:311.700000px;}
.x3c_c00415{left:314.100000px;}
.x9d_c00415{left:315.450000px;}
.x18_c00415{left:316.500000px;}
.x69_c00415{left:318.150000px;}
.x72_c00415{left:319.200000px;}
.x57_c00415{left:320.850000px;}
.x53_c00415{left:322.350000px;}
.x42_c00415{left:324.750000px;}
.x8c_c00415{left:328.800000px;}
.x37_c00415{left:331.050000px;}
.x82_c00415{left:332.850000px;}
.x26_c00415{left:334.650000px;}
.x58_c00415{left:337.350000px;}
.x2d_c00415{left:338.700000px;}
.x7d_c00415{left:340.950000px;}
.x73_c00415{left:342.600000px;}
.x99_c00415{left:343.800000px;}
.x22_c00415{left:345.600000px;}
.x6d_c00415{left:348.150000px;}
.x5_c00415{left:349.800000px;}
.x1c_c00415{left:352.500000px;}
.x32_c00415{left:354.450000px;}
.x9b_c00415{left:356.100000px;}
.x27_c00415{left:357.750000px;}
.x7e_c00415{left:358.950000px;}
.x92_c00415{left:361.500000px;}
.x19_c00415{left:362.550000px;}
.x4a_c00415{left:363.900000px;}
.x23_c00415{left:365.700000px;}
.x9a_c00415{left:367.350000px;}
.x9e_c00415{left:368.400000px;}
.x5e_c00415{left:371.400000px;}
.x3d_c00415{left:372.450000px;}
.x6e_c00415{left:373.650000px;}
.x96_c00415{left:374.850000px;}
.x1d_c00415{left:375.900000px;}
.x33_c00415{left:377.100000px;}
.x43_c00415{left:378.750000px;}
.x13_c00415{left:381.000000px;}
.xa2_c00415{left:383.700000px;}
.x4b_c00415{left:384.750000px;}
.xd_c00415{left:387.450000px;}
.x76_c00415{left:389.100000px;}
.x6_c00415{left:391.500000px;}
.x3e_c00415{left:395.550000px;}
.x2e_c00415{left:397.050000px;}
.x64_c00415{left:399.300000px;}
.x7_c00415{left:402.600000px;}
.x28_c00415{left:406.050000px;}
.x5f_c00415{left:407.400000px;}
.xe_c00415{left:409.050000px;}
.x59_c00415{left:410.400000px;}
.x86_c00415{left:411.600000px;}
.x44_c00415{left:413.700000px;}
.x8d_c00415{left:414.900000px;}
.x34_c00415{left:415.950000px;}
.x1a_c00415{left:420.150000px;}
.x6a_c00415{left:421.200000px;}
.x7f_c00415{left:423.000000px;}
.x50_c00415{left:425.250000px;}
.x54_c00415{left:427.050000px;}
.x65_c00415{left:428.100000px;}
.x2f_c00415{left:429.750000px;}
.x1e_c00415{left:431.400000px;}
.x2_c00415{left:434.250000px;}
.x83_c00415{left:437.850000px;}
.xf_c00415{left:439.350000px;}
.x89_c00415{left:441.150000px;}
.x51_c00415{left:442.200000px;}
.x38_c00415{left:444.900000px;}
.xa0_c00415{left:446.400000px;}
.x4c_c00415{left:447.450000px;}
.x14_c00415{left:449.700000px;}
.x29_c00415{left:451.350000px;}
.x3f_c00415{left:453.900000px;}
.x8_c00415{left:455.100000px;}
.x1f_c00415{left:457.350000px;}
.x74_c00415{left:459.600000px;}
.x35_c00415{left:461.700000px;}
.x77_c00415{left:463.500000px;}
.x6b_c00415{left:466.950000px;}
.x15_c00415{left:468.450000px;}
.x8e_c00415{left:470.700000px;}
.x10_c00415{left:471.750000px;}
.x61_c00415{left:473.100000px;}
.xa1_c00415{left:476.700000px;}
.x6f_c00415{left:478.350000px;}
.x8f_c00415{left:479.400000px;}
.x5a_c00415{left:483.000000px;}
.x4d_c00415{left:484.500000px;}
.x45_c00415{left:486.450000px;}
.x20_c00415{left:487.650000px;}
.x98_c00415{left:489.300000px;}
.x24_c00415{left:490.800000px;}
.x78_c00415{left:492.000000px;}
.x55_c00415{left:493.950000px;}
.x39_c00415{left:498.150000px;}
.x40_c00415{left:500.400000px;}
.x62_c00415{left:502.650000px;}
.x46_c00415{left:505.950000px;}
.x9_c00415{left:508.350000px;}
.x79_c00415{left:514.650000px;}
.x2a_c00415{left:516.900000px;}
.x52_c00415{left:518.550000px;}
.x84_c00415{left:522.750000px;}
.xb0_c00415{left:534.600000px;}
.xa3_c00415{left:542.100000px;}
.x12d_c00415{left:546.900000px;}
.x129_c00415{left:548.250000px;}
.xab_c00415{left:559.050000px;}
.xb4_c00415{left:560.250000px;}
.xde_c00415{left:561.600000px;}
.xee_c00415{left:562.950000px;}
.x111_c00415{left:564.000000px;}
.x11a_c00415{left:565.800000px;}
.x135_c00415{left:574.800000px;}
.xb6_c00415{left:576.000000px;}
.xc5_c00415{left:579.000000px;}
.xd8_c00415{left:581.400000px;}
.xb5_c00415{left:582.900000px;}
.xd3_c00415{left:583.950000px;}
.x10e_c00415{left:585.300000px;}
.x127_c00415{left:586.500000px;}
.xbc_c00415{left:588.300000px;}
.x12b_c00415{left:589.350000px;}
.xf9_c00415{left:596.850000px;}
.x131_c00415{left:599.250000px;}
.x136_c00415{left:600.300000px;}
.x100_c00415{left:602.400000px;}
.x116_c00415{left:603.600000px;}
.xdf_c00415{left:604.800000px;}
.x12a_c00415{left:607.350000px;}
.xa4_c00415{left:608.400000px;}
.x104_c00415{left:609.900000px;}
.x12c_c00415{left:611.700000px;}
.xef_c00415{left:613.350000px;}
.xb7_c00415{left:614.550000px;}
.xac_c00415{left:618.450000px;}
.xc4_c00415{left:622.500000px;}
.xe0_c00415{left:624.900000px;}
.xf0_c00415{left:627.000000px;}
.xca_c00415{left:629.400000px;}
.xc2_c00415{left:631.800000px;}
.x128_c00415{left:633.000000px;}
.xae_c00415{left:634.650000px;}
.xd9_c00415{left:635.700000px;}
.xe8_c00415{left:638.700000px;}
.xc6_c00415{left:640.950000px;}
.x105_c00415{left:642.000000px;}
.x11b_c00415{left:643.650000px;}
.xe1_c00415{left:646.200000px;}
.x10f_c00415{left:647.550000px;}
.xe9_c00415{left:650.250000px;}
.x138_c00415{left:653.400000px;}
.xbd_c00415{left:654.600000px;}
.xad_c00415{left:656.250000px;}
.xb8_c00415{left:658.050000px;}
.x11c_c00415{left:660.900000px;}
.x123_c00415{left:662.100000px;}
.xf1_c00415{left:664.800000px;}
.xf4_c00415{left:666.750000px;}
.x121_c00415{left:667.800000px;}
.x10b_c00415{left:671.100000px;}
.x12f_c00415{left:675.450000px;}
.x101_c00415{left:678.000000px;}
.x137_c00415{left:679.500000px;}
.x117_c00415{left:681.000000px;}
.xd4_c00415{left:683.250000px;}
.xcb_c00415{left:685.500000px;}
.xc3_c00415{left:687.450000px;}
.xf5_c00415{left:689.100000px;}
.x108_c00415{left:690.750000px;}
.xa5_c00415{left:696.900000px;}
.x112_c00415{left:699.300000px;}
.xb1_c00415{left:700.650000px;}
.x11d_c00415{left:701.700000px;}
.xce_c00415{left:702.750000px;}
.x12e_c00415{left:704.250000px;}
.x106_c00415{left:705.300000px;}
.xf2_c00415{left:706.350000px;}
.xda_c00415{left:708.000000px;}
.xff_c00415{left:710.850000px;}
.x102_c00415{left:711.900000px;}
.xd5_c00415{left:713.100000px;}
.xa6_c00415{left:714.900000px;}
.xc7_c00415{left:716.850000px;}
.xcf_c00415{left:718.200000px;}
.xaf_c00415{left:720.000000px;}
.xfd_c00415{left:724.800000px;}
.xbe_c00415{left:725.850000px;}
.x118_c00415{left:727.800000px;}
.x103_c00415{left:729.150000px;}
.xa7_c00415{left:730.800000px;}
.xea_c00415{left:733.800000px;}
.xb9_c00415{left:736.200000px;}
.xfa_c00415{left:739.500000px;}
.x109_c00415{left:747.000000px;}
.x10c_c00415{left:748.500000px;}
.x115_c00415{left:750.450000px;}
.xcc_c00415{left:752.400000px;}
.x11e_c00415{left:756.450000px;}
.xe2_c00415{left:757.500000px;}
.xe6_c00415{left:759.000000px;}
.x132_c00415{left:760.200000px;}
.x124_c00415{left:761.400000px;}
.xd6_c00415{left:762.750000px;}
.xbf_c00415{left:764.400000px;}
.xdb_c00415{left:766.650000px;}
.x110_c00415{left:771.450000px;}
.xa8_c00415{left:773.250000px;}
.xd0_c00415{left:775.050000px;}
.x113_c00415{left:776.250000px;}
.xc8_c00415{left:777.300000px;}
.xf6_c00415{left:779.100000px;}
.xd7_c00415{left:780.450000px;}
.xc0_c00415{left:786.300000px;}
.x133_c00415{left:790.050000px;}
.xba_c00415{left:791.700000px;}
.xa9_c00415{left:793.050000px;}
.xdc_c00415{left:795.900000px;}
.xf7_c00415{left:797.400000px;}
.xe3_c00415{left:799.650000px;}
.xfb_c00415{left:801.450000px;}
.x11f_c00415{left:802.500000px;}
.xb2_c00415{left:805.050000px;}
.xd1_c00415{left:810.750000px;}
.xeb_c00415{left:812.400000px;}
.xcd_c00415{left:815.400000px;}
.xe7_c00415{left:816.900000px;}
.xfc_c00415{left:819.150000px;}
.xfe_c00415{left:823.050000px;}
.xf3_c00415{left:825.150000px;}
.x10a_c00415{left:827.250000px;}
.xec_c00415{left:830.400000px;}
.xd2_c00415{left:832.350000px;}
.xe4_c00415{left:833.550000px;}
.x10d_c00415{left:835.200000px;}
.xbb_c00415{left:837.750000px;}
.x119_c00415{left:839.100000px;}
.xdd_c00415{left:840.150000px;}
.x120_c00415{left:841.350000px;}
.xc1_c00415{left:844.500000px;}
.xb3_c00415{left:848.250000px;}
.x125_c00415{left:850.050000px;}
.xe5_c00415{left:851.550000px;}
.xc9_c00415{left:853.650000px;}
.x114_c00415{left:854.700000px;}
.xaa_c00415{left:857.850000px;}
.x126_c00415{left:859.050000px;}
.xed_c00415{left:862.050000px;}
.xf8_c00415{left:863.250000px;}
.x130_c00415{left:870.300000px;}
.x134_c00415{left:873.600000px;}
.x139_c00415{left:876.300000px;}
.x122_c00415{left:878.400000px;}
.x107_c00415{left:880.200000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ws3_c00415{word-spacing:-6.666667pt;}
.ws4_c00415{word-spacing:-6.496874pt;}
.ws2_c00415{word-spacing:-6.361266pt;}
.ws0_c00415{word-spacing:-5.802469pt;}
.ws6_c00415{word-spacing:0.000000pt;}
.ws1_c00415{word-spacing:3.481953pt;}
.ws5_c00415{word-spacing:10.370370pt;}
.fs3_c00415{font-size:26.666667pt;}
.fs7_c00415{font-size:32.000000pt;}
.fs8_c00415{font-size:42.666667pt;}
.fs5_c00415{font-size:48.000000pt;}
.fs2_c00415{font-size:53.333333pt;}
.fs0_c00415{font-size:58.666667pt;}
.fs4_c00415{font-size:64.000000pt;}
.fs1_c00415{font-size:69.333333pt;}
.fs6_c00415{font-size:96.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y67_c00415{bottom:175.466667pt;}
.y34_c00415{bottom:179.200000pt;}
.y66_c00415{bottom:188.533333pt;}
.y33_c00415{bottom:194.266667pt;}
.y65_c00415{bottom:201.333333pt;}
.y32_c00415{bottom:209.600000pt;}
.y64_c00415{bottom:214.400000pt;}
.y31_c00415{bottom:225.333333pt;}
.y63_c00415{bottom:226.933333pt;}
.y62_c00415{bottom:240.000000pt;}
.y30_c00415{bottom:240.666667pt;}
.y61_c00415{bottom:252.133333pt;}
.y2f_c00415{bottom:256.000000pt;}
.y2e_c00415{bottom:271.733333pt;}
.y2d_c00415{bottom:287.733333pt;}
.y60_c00415{bottom:293.733333pt;}
.y2c_c00415{bottom:303.466667pt;}
.y5f_c00415{bottom:313.866667pt;}
.y2b_c00415{bottom:319.466667pt;}
.y5e_c00415{bottom:334.133333pt;}
.y2a_c00415{bottom:335.733333pt;}
.y5d_c00415{bottom:350.000000pt;}
.y29_c00415{bottom:357.333333pt;}
.y5c_c00415{bottom:366.000000pt;}
.y28_c00415{bottom:377.866667pt;}
.y5b_c00415{bottom:382.000000pt;}
.y27_c00415{bottom:395.866667pt;}
.y5a_c00415{bottom:397.733333pt;}
.y26_c00415{bottom:411.866667pt;}
.y59_c00415{bottom:413.733333pt;}
.y58_c00415{bottom:429.733333pt;}
.y25_c00415{bottom:435.066667pt;}
.y57_c00415{bottom:445.733333pt;}
.y24_c00415{bottom:451.066667pt;}
.y56_c00415{bottom:461.466667pt;}
.y23_c00415{bottom:466.800000pt;}
.y55_c00415{bottom:477.066667pt;}
.y22_c00415{bottom:482.533333pt;}
.y54_c00415{bottom:492.800000pt;}
.y21_c00415{bottom:498.533333pt;}
.y53_c00415{bottom:508.800000pt;}
.y20_c00415{bottom:514.266667pt;}
.y52_c00415{bottom:524.800000pt;}
.y1f_c00415{bottom:537.600000pt;}
.y51_c00415{bottom:540.533333pt;}
.y50_c00415{bottom:556.533333pt;}
.y1e_c00415{bottom:564.533333pt;}
.y4f_c00415{bottom:572.666667pt;}
.y1d_c00415{bottom:581.200000pt;}
.y4e_c00415{bottom:588.400000pt;}
.y1c_c00415{bottom:597.466667pt;}
.y4d_c00415{bottom:604.400000pt;}
.y1b_c00415{bottom:620.400000pt;}
.y4c_c00415{bottom:636.133333pt;}
.y1a_c00415{bottom:637.066667pt;}
.y4b_c00415{bottom:651.866667pt;}
.y19_c00415{bottom:652.800000pt;}
.y4a_c00415{bottom:667.600000pt;}
.y18_c00415{bottom:668.800000pt;}
.y49_c00415{bottom:684.533333pt;}
.y17_c00415{bottom:684.800000pt;}
.y48_c00415{bottom:699.200000pt;}
.y16_c00415{bottom:700.533333pt;}
.y15_c00415{bottom:707.866667pt;}
.y47_c00415{bottom:715.200000pt;}
.y14_c00415{bottom:716.800000pt;}
.y46_c00415{bottom:730.933333pt;}
.y13_c00415{bottom:739.600000pt;}
.y45_c00415{bottom:746.800000pt;}
.y12_c00415{bottom:756.266667pt;}
.y44_c00415{bottom:762.800000pt;}
.y11_c00415{bottom:772.266667pt;}
.y43_c00415{bottom:778.800000pt;}
.y10_c00415{bottom:788.266667pt;}
.y42_c00415{bottom:794.533333pt;}
.yf_c00415{bottom:804.266667pt;}
.y41_c00415{bottom:809.600000pt;}
.y40_c00415{bottom:819.466667pt;}
.ye_c00415{bottom:820.266667pt;}
.y3f_c00415{bottom:826.533333pt;}
.y3e_c00415{bottom:835.200000pt;}
.yd_c00415{bottom:835.600000pt;}
.y68_c00415{bottom:838.400000pt;}
.y3c_c00415{bottom:844.800000pt;}
.y3d_c00415{bottom:850.266667pt;}
.yc_c00415{bottom:851.600000pt;}
.yb_c00415{bottom:867.333333pt;}
.y3b_c00415{bottom:868.133333pt;}
.ya_c00415{bottom:883.066667pt;}
.y3a_c00415{bottom:883.866667pt;}
.y9_c00415{bottom:898.800000pt;}
.y39_c00415{bottom:903.466667pt;}
.y8_c00415{bottom:915.066667pt;}
.y38_c00415{bottom:919.733333pt;}
.y7_c00415{bottom:930.800000pt;}
.y37_c00415{bottom:946.533333pt;}
.y6_c00415{bottom:946.800000pt;}
.y5_c00415{bottom:962.533333pt;}
.y36_c00415{bottom:977.866667pt;}
.y4_c00415{bottom:978.533333pt;}
.y35_c00415{bottom:993.866667pt;}
.y3_c00415{bottom:994.533333pt;}
.y1_c00415{bottom:1016.000000pt;}
.y2_c00415{bottom:1018.533333pt;}
.h5_c00415{height:26.666667pt;}
.h9_c00415{height:32.000000pt;}
.ha_c00415{height:42.666667pt;}
.h7_c00415{height:48.000000pt;}
.h4_c00415{height:53.333333pt;}
.h2_c00415{height:58.666667pt;}
.h6_c00415{height:64.000000pt;}
.h3_c00415{height:69.333333pt;}
.h8_c00415{height:96.000000pt;}
.h0_c00415{height:1124.479980pt;}
.h1_c00415{height:1124.666667pt;}
.w0_c00415{width:853.760009pt;}
.w1_c00415{width:854.000000pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:164.533333pt;}
.x71_c00415{left:165.733333pt;}
.x7c_c00415{left:167.333333pt;}
.x91_c00415{left:168.933333pt;}
.xa_c00415{left:179.866667pt;}
.x16_c00415{left:181.466667pt;}
.x7a_c00415{left:183.866667pt;}
.x8a_c00415{left:185.066667pt;}
.x97_c00415{left:186.000000pt;}
.x9f_c00415{left:187.066667pt;}
.x66_c00415{left:195.866667pt;}
.x2b_c00415{left:196.800000pt;}
.x80_c00415{left:200.666667pt;}
.x87_c00415{left:201.733333pt;}
.x47_c00415{left:205.600000pt;}
.x60_c00415{left:206.666667pt;}
.x8b_c00415{left:207.733333pt;}
.x11_c00415{left:208.800000pt;}
.x7b_c00415{left:211.066667pt;}
.x5b_c00415{left:214.000000pt;}
.x9c_c00415{left:215.466667pt;}
.xb_c00415{left:218.266667pt;}
.x5c_c00415{left:219.466667pt;}
.x67_c00415{left:220.800000pt;}
.x4e_c00415{left:225.200000pt;}
.x93_c00415{left:227.466667pt;}
.x17_c00415{left:228.800000pt;}
.x12_c00415{left:229.866667pt;}
.x3a_c00415{left:231.600000pt;}
.x88_c00415{left:232.533333pt;}
.x48_c00415{left:234.400000pt;}
.x5d_c00415{left:236.133333pt;}
.xc_c00415{left:237.733333pt;}
.x3_c00415{left:239.333333pt;}
.x6c_c00415{left:240.666667pt;}
.x49_c00415{left:243.733333pt;}
.x95_c00415{left:244.800000pt;}
.x63_c00415{left:246.000000pt;}
.x41_c00415{left:247.066667pt;}
.x30_c00415{left:249.200000pt;}
.x25_c00415{left:250.133333pt;}
.x90_c00415{left:251.200000pt;}
.x2c_c00415{left:252.133333pt;}
.x36_c00415{left:253.333333pt;}
.x21_c00415{left:255.733333pt;}
.x94_c00415{left:257.333333pt;}
.x75_c00415{left:258.533333pt;}
.x70_c00415{left:259.866667pt;}
.x4f_c00415{left:261.600000pt;}
.x56_c00415{left:263.066667pt;}
.x81_c00415{left:264.800000pt;}
.x85_c00415{left:266.933333pt;}
.x31_c00415{left:268.666667pt;}
.x68_c00415{left:269.733333pt;}
.x3b_c00415{left:271.866667pt;}
.x1b_c00415{left:274.666667pt;}
.x4_c00415{left:277.066667pt;}
.x3c_c00415{left:279.200000pt;}
.x9d_c00415{left:280.400000pt;}
.x18_c00415{left:281.333333pt;}
.x69_c00415{left:282.800000pt;}
.x72_c00415{left:283.733333pt;}
.x57_c00415{left:285.200000pt;}
.x53_c00415{left:286.533333pt;}
.x42_c00415{left:288.666667pt;}
.x8c_c00415{left:292.266667pt;}
.x37_c00415{left:294.266667pt;}
.x82_c00415{left:295.866667pt;}
.x26_c00415{left:297.466667pt;}
.x58_c00415{left:299.866667pt;}
.x2d_c00415{left:301.066667pt;}
.x7d_c00415{left:303.066667pt;}
.x73_c00415{left:304.533333pt;}
.x99_c00415{left:305.600000pt;}
.x22_c00415{left:307.200000pt;}
.x6d_c00415{left:309.466667pt;}
.x5_c00415{left:310.933333pt;}
.x1c_c00415{left:313.333333pt;}
.x32_c00415{left:315.066667pt;}
.x9b_c00415{left:316.533333pt;}
.x27_c00415{left:318.000000pt;}
.x7e_c00415{left:319.066667pt;}
.x92_c00415{left:321.333333pt;}
.x19_c00415{left:322.266667pt;}
.x4a_c00415{left:323.466667pt;}
.x23_c00415{left:325.066667pt;}
.x9a_c00415{left:326.533333pt;}
.x9e_c00415{left:327.466667pt;}
.x5e_c00415{left:330.133333pt;}
.x3d_c00415{left:331.066667pt;}
.x6e_c00415{left:332.133333pt;}
.x96_c00415{left:333.200000pt;}
.x1d_c00415{left:334.133333pt;}
.x33_c00415{left:335.200000pt;}
.x43_c00415{left:336.666667pt;}
.x13_c00415{left:338.666667pt;}
.xa2_c00415{left:341.066667pt;}
.x4b_c00415{left:342.000000pt;}
.xd_c00415{left:344.400000pt;}
.x76_c00415{left:345.866667pt;}
.x6_c00415{left:348.000000pt;}
.x3e_c00415{left:351.600000pt;}
.x2e_c00415{left:352.933333pt;}
.x64_c00415{left:354.933333pt;}
.x7_c00415{left:357.866667pt;}
.x28_c00415{left:360.933333pt;}
.x5f_c00415{left:362.133333pt;}
.xe_c00415{left:363.600000pt;}
.x59_c00415{left:364.800000pt;}
.x86_c00415{left:365.866667pt;}
.x44_c00415{left:367.733333pt;}
.x8d_c00415{left:368.800000pt;}
.x34_c00415{left:369.733333pt;}
.x1a_c00415{left:373.466667pt;}
.x6a_c00415{left:374.400000pt;}
.x7f_c00415{left:376.000000pt;}
.x50_c00415{left:378.000000pt;}
.x54_c00415{left:379.600000pt;}
.x65_c00415{left:380.533333pt;}
.x2f_c00415{left:382.000000pt;}
.x1e_c00415{left:383.466667pt;}
.x2_c00415{left:386.000000pt;}
.x83_c00415{left:389.200000pt;}
.xf_c00415{left:390.533333pt;}
.x89_c00415{left:392.133333pt;}
.x51_c00415{left:393.066667pt;}
.x38_c00415{left:395.466667pt;}
.xa0_c00415{left:396.800000pt;}
.x4c_c00415{left:397.733333pt;}
.x14_c00415{left:399.733333pt;}
.x29_c00415{left:401.200000pt;}
.x3f_c00415{left:403.466667pt;}
.x8_c00415{left:404.533333pt;}
.x1f_c00415{left:406.533333pt;}
.x74_c00415{left:408.533333pt;}
.x35_c00415{left:410.400000pt;}
.x77_c00415{left:412.000000pt;}
.x6b_c00415{left:415.066667pt;}
.x15_c00415{left:416.400000pt;}
.x8e_c00415{left:418.400000pt;}
.x10_c00415{left:419.333333pt;}
.x61_c00415{left:420.533333pt;}
.xa1_c00415{left:423.733333pt;}
.x6f_c00415{left:425.200000pt;}
.x8f_c00415{left:426.133333pt;}
.x5a_c00415{left:429.333333pt;}
.x4d_c00415{left:430.666667pt;}
.x45_c00415{left:432.400000pt;}
.x20_c00415{left:433.466667pt;}
.x98_c00415{left:434.933333pt;}
.x24_c00415{left:436.266667pt;}
.x78_c00415{left:437.333333pt;}
.x55_c00415{left:439.066667pt;}
.x39_c00415{left:442.800000pt;}
.x40_c00415{left:444.800000pt;}
.x62_c00415{left:446.800000pt;}
.x46_c00415{left:449.733333pt;}
.x9_c00415{left:451.866667pt;}
.x79_c00415{left:457.466667pt;}
.x2a_c00415{left:459.466667pt;}
.x52_c00415{left:460.933333pt;}
.x84_c00415{left:464.666667pt;}
.xb0_c00415{left:475.200000pt;}
.xa3_c00415{left:481.866667pt;}
.x12d_c00415{left:486.133333pt;}
.x129_c00415{left:487.333333pt;}
.xab_c00415{left:496.933333pt;}
.xb4_c00415{left:498.000000pt;}
.xde_c00415{left:499.200000pt;}
.xee_c00415{left:500.400000pt;}
.x111_c00415{left:501.333333pt;}
.x11a_c00415{left:502.933333pt;}
.x135_c00415{left:510.933333pt;}
.xb6_c00415{left:512.000000pt;}
.xc5_c00415{left:514.666667pt;}
.xd8_c00415{left:516.800000pt;}
.xb5_c00415{left:518.133333pt;}
.xd3_c00415{left:519.066667pt;}
.x10e_c00415{left:520.266667pt;}
.x127_c00415{left:521.333333pt;}
.xbc_c00415{left:522.933333pt;}
.x12b_c00415{left:523.866667pt;}
.xf9_c00415{left:530.533333pt;}
.x131_c00415{left:532.666667pt;}
.x136_c00415{left:533.600000pt;}
.x100_c00415{left:535.466667pt;}
.x116_c00415{left:536.533333pt;}
.xdf_c00415{left:537.600000pt;}
.x12a_c00415{left:539.866667pt;}
.xa4_c00415{left:540.800000pt;}
.x104_c00415{left:542.133333pt;}
.x12c_c00415{left:543.733333pt;}
.xef_c00415{left:545.200000pt;}
.xb7_c00415{left:546.266667pt;}
.xac_c00415{left:549.733333pt;}
.xc4_c00415{left:553.333333pt;}
.xe0_c00415{left:555.466667pt;}
.xf0_c00415{left:557.333333pt;}
.xca_c00415{left:559.466667pt;}
.xc2_c00415{left:561.600000pt;}
.x128_c00415{left:562.666667pt;}
.xae_c00415{left:564.133333pt;}
.xd9_c00415{left:565.066667pt;}
.xe8_c00415{left:567.733333pt;}
.xc6_c00415{left:569.733333pt;}
.x105_c00415{left:570.666667pt;}
.x11b_c00415{left:572.133333pt;}
.xe1_c00415{left:574.400000pt;}
.x10f_c00415{left:575.600000pt;}
.xe9_c00415{left:578.000000pt;}
.x138_c00415{left:580.800000pt;}
.xbd_c00415{left:581.866667pt;}
.xad_c00415{left:583.333333pt;}
.xb8_c00415{left:584.933333pt;}
.x11c_c00415{left:587.466667pt;}
.x123_c00415{left:588.533333pt;}
.xf1_c00415{left:590.933333pt;}
.xf4_c00415{left:592.666667pt;}
.x121_c00415{left:593.600000pt;}
.x10b_c00415{left:596.533333pt;}
.x12f_c00415{left:600.400000pt;}
.x101_c00415{left:602.666667pt;}
.x137_c00415{left:604.000000pt;}
.x117_c00415{left:605.333333pt;}
.xd4_c00415{left:607.333333pt;}
.xcb_c00415{left:609.333333pt;}
.xc3_c00415{left:611.066667pt;}
.xf5_c00415{left:612.533333pt;}
.x108_c00415{left:614.000000pt;}
.xa5_c00415{left:619.466667pt;}
.x112_c00415{left:621.600000pt;}
.xb1_c00415{left:622.800000pt;}
.x11d_c00415{left:623.733333pt;}
.xce_c00415{left:624.666667pt;}
.x12e_c00415{left:626.000000pt;}
.x106_c00415{left:626.933333pt;}
.xf2_c00415{left:627.866667pt;}
.xda_c00415{left:629.333333pt;}
.xff_c00415{left:631.866667pt;}
.x102_c00415{left:632.800000pt;}
.xd5_c00415{left:633.866667pt;}
.xa6_c00415{left:635.466667pt;}
.xc7_c00415{left:637.200000pt;}
.xcf_c00415{left:638.400000pt;}
.xaf_c00415{left:640.000000pt;}
.xfd_c00415{left:644.266667pt;}
.xbe_c00415{left:645.200000pt;}
.x118_c00415{left:646.933333pt;}
.x103_c00415{left:648.133333pt;}
.xa7_c00415{left:649.600000pt;}
.xea_c00415{left:652.266667pt;}
.xb9_c00415{left:654.400000pt;}
.xfa_c00415{left:657.333333pt;}
.x109_c00415{left:664.000000pt;}
.x10c_c00415{left:665.333333pt;}
.x115_c00415{left:667.066667pt;}
.xcc_c00415{left:668.800000pt;}
.x11e_c00415{left:672.400000pt;}
.xe2_c00415{left:673.333333pt;}
.xe6_c00415{left:674.666667pt;}
.x132_c00415{left:675.733333pt;}
.x124_c00415{left:676.800000pt;}
.xd6_c00415{left:678.000000pt;}
.xbf_c00415{left:679.466667pt;}
.xdb_c00415{left:681.466667pt;}
.x110_c00415{left:685.733333pt;}
.xa8_c00415{left:687.333333pt;}
.xd0_c00415{left:688.933333pt;}
.x113_c00415{left:690.000000pt;}
.xc8_c00415{left:690.933333pt;}
.xf6_c00415{left:692.533333pt;}
.xd7_c00415{left:693.733333pt;}
.xc0_c00415{left:698.933333pt;}
.x133_c00415{left:702.266667pt;}
.xba_c00415{left:703.733333pt;}
.xa9_c00415{left:704.933333pt;}
.xdc_c00415{left:707.466667pt;}
.xf7_c00415{left:708.800000pt;}
.xe3_c00415{left:710.800000pt;}
.xfb_c00415{left:712.400000pt;}
.x11f_c00415{left:713.333333pt;}
.xb2_c00415{left:715.600000pt;}
.xd1_c00415{left:720.666667pt;}
.xeb_c00415{left:722.133333pt;}
.xcd_c00415{left:724.800000pt;}
.xe7_c00415{left:726.133333pt;}
.xfc_c00415{left:728.133333pt;}
.xfe_c00415{left:731.600000pt;}
.xf3_c00415{left:733.466667pt;}
.x10a_c00415{left:735.333333pt;}
.xec_c00415{left:738.133333pt;}
.xd2_c00415{left:739.866667pt;}
.xe4_c00415{left:740.933333pt;}
.x10d_c00415{left:742.400000pt;}
.xbb_c00415{left:744.666667pt;}
.x119_c00415{left:745.866667pt;}
.xdd_c00415{left:746.800000pt;}
.x120_c00415{left:747.866667pt;}
.xc1_c00415{left:750.666667pt;}
.xb3_c00415{left:754.000000pt;}
.x125_c00415{left:755.600000pt;}
.xe5_c00415{left:756.933333pt;}
.xc9_c00415{left:758.800000pt;}
.x114_c00415{left:759.733333pt;}
.xaa_c00415{left:762.533333pt;}
.x126_c00415{left:763.600000pt;}
.xed_c00415{left:766.266667pt;}
.xf8_c00415{left:767.333333pt;}
.x130_c00415{left:773.600000pt;}
.x134_c00415{left:776.533333pt;}
.x139_c00415{left:778.933333pt;}
.x122_c00415{left:780.800000pt;}
.x107_c00415{left:782.400000pt;}
}





/* 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_c00416 {
    display:none;
  }
  .loading-indicator_c00416.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00416 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_c00416 { 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_c00416" -> "#page-container .classname_c00416")
 */
.pf_c00416 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00416 { /* 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_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00416 { /* 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_c00416 { /* 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_c00416 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00416 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00416 {overflow:visible;}
  }
}
.c_c00416 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00416 { /* 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_c00416:after { /* webkit #35443 */
  content: '';
}
.t_c00416:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00416 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 */
}
.__c00416 { /* 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_c00416 { /* info for Javascript */
  display:none;
}
.l_c00416 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00416 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00416 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00416: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_c00416 {
    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_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00416.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_c00416 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00416;src:url('chunks/assets/font_fa2bbdc3a2871d777158af48.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.000000;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;}
.mf9_c00416{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00416{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m107_c00416{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m80_c00416{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m60_c00416{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md7_c00416{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00416{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m63_c00416{transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);}
.mea_c00416{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m69_c00416{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m74_c00416{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m26_c00416{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00416{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00416{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m21_c00416{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m100_c00416{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00416{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.md5_c00416{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m59_c00416{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m34_c00416{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.md2_c00416{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m117_c00416{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00416{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me3_c00416{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00416{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m27_c00416{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mc_c00416{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m33_c00416{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00416{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.ma_c00416{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00416{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00416{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m85_c00416{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00416{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.md4_c00416{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m72_c00416{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00416{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m70_c00416{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m40_c00416{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00416{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m65_c00416{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m94_c00416{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00416{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00416{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00416{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00416{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00416{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00416{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me2_c00416{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m54_c00416{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m41_c00416{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00416{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m95_c00416{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mff_c00416{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m83_c00416{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00416{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.me8_c00416{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m78_c00416{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m24_c00416{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m20_c00416{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00416{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00416{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m105_c00416{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m30_c00416{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m115_c00416{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00416{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.maa_c00416{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m93_c00416{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m118_c00416{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00416{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m31_c00416{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00416{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00416{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00416{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00416{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00416{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me0_c00416{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mda_c00416{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m8_c00416{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00416{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m87_c00416{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m98_c00416{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3_c00416{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00416{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00416{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00416{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00416{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m90_c00416{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m43_c00416{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00416{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00416{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md_c00416{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00416{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m81_c00416{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00416{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m25_c00416{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7_c00416{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00416{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00416{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb_c00416{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00416{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00416{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00416{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mca_c00416{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2_c00416{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m77_c00416{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00416{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00416{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00416{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00416{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mde_c00416{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m36_c00416{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00416{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00416{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m79_c00416{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6_c00416{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00416{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m58_c00416{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00416{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m45_c00416{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00416{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00416{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m82_c00416{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00416{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00416{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m76_c00416{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00416{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m84_c00416{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m23_c00416{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00416{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00416{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00416{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me9_c00416{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m92_c00416{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00416{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.meb_c00416{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00416{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9_c00416{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me4_c00416{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00416{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m29_c00416{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m13_c00416{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m104_c00416{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00416{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m91_c00416{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mef_c00416{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00416{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m18_c00416{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00416{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00416{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m42_c00416{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00416{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m10_c00416{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00416{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00416{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00416{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00416{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00416{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00416{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00416{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mce_c00416{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00416{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00416{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00416{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00416{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m71_c00416{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m53_c00416{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00416{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m32_c00416{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00416{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m96_c00416{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m44_c00416{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m17_c00416{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00416{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00416{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me7_c00416{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00416{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00416{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m16_c00416{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00416{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00416{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00416{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mee_c00416{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m64_c00416{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m68_c00416{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m39_c00416{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me5_c00416{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.med_c00416{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m37_c00416{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m101_c00416{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m49_c00416{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mab_c00416{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m97_c00416{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m48_c00416{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00416{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m28_c00416{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00416{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m55_c00416{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00416{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00416{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mba_c00416{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m73_c00416{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mac_c00416{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf_c00416{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00416{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m88_c00416{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00416{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00416{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5_c00416{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00416{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00416{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mec_c00416{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m56_c00416{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00416{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00416{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m14_c00416{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00416{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m46_c00416{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m50_c00416{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);}
.m11_c00416{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m112_c00416{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00416{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m86_c00416{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me_c00416{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.me6_c00416{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m51_c00416{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md3_c00416{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m99_c00416{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m111_c00416{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m12_c00416{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m38_c00416{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m47_c00416{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m89_c00416{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00416{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m67_c00416{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m75_c00416{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m66_c00416{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00416{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m35_c00416{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mad_c00416{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00416{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00416{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m110_c00416{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m106_c00416{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00416{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.md1_c00416{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m114_c00416{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00416{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m52_c00416{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00416{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m15_c00416{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00416{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00416{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m113_c00416{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m103_c00416{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m109_c00416{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m62_c00416{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mae_c00416{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00416{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.md8_c00416{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.me1_c00416{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m108_c00416{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m61_c00416{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00416{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00416{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m19_c00416{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.maf_c00416{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00416{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00416{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00416{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00416{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.md0_c00416{transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00416{transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00416{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.m116_c00416{transform:matrix(0.418250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418250,0.000000,0.000000,0.250000,0,0);}
.m102_c00416{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.md6_c00416{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m22_c00416{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m57_c00416{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m119_c00416{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00416{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.md9_c00416{transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls0_c00416{letter-spacing:0.000000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{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__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00416{word-spacing:-19.759107px;}
.ws4_c00416{word-spacing:-4.247788px;}
.ws6_c00416{word-spacing:0.000000px;}
.ws2_c00416{word-spacing:10.637002px;}
.ws5_c00416{word-spacing:14.821429px;}
.ws1_c00416{word-spacing:23.211796px;}
.ws0_c00416{word-spacing:29.285714px;}
._0_c00416{width:53.428954px;}
.fc0_c00416{color:transparent;}
.fs5_c00416{font-size:24.000000px;}
.fs8_c00416{font-size:30.000000px;}
.fs6_c00416{font-size:36.000000px;}
.fs9_c00416{font-size:42.000000px;}
.fs7_c00416{font-size:48.000000px;}
.fs4_c00416{font-size:54.000000px;}
.fs3_c00416{font-size:60.000000px;}
.fs2_c00416{font-size:66.000000px;}
.fs1_c00416{font-size:72.000000px;}
.fs0_c00416{font-size:78.000000px;}
.y0_c00416{bottom:0.000000px;}
.y38_c00416{bottom:198.150000px;}
.y6a_c00416{bottom:201.600000px;}
.y37_c00416{bottom:215.400000px;}
.y69_c00416{bottom:220.350000px;}
.y36_c00416{bottom:233.700000px;}
.y68_c00416{bottom:238.050000px;}
.y35_c00416{bottom:251.700000px;}
.y67_c00416{bottom:256.350000px;}
.y34_c00416{bottom:269.400000px;}
.y66_c00416{bottom:276.600000px;}
.y33_c00416{bottom:287.400000px;}
.y65_c00416{bottom:296.700000px;}
.y32_c00416{bottom:305.100000px;}
.y31_c00416{bottom:323.100000px;}
.y64_c00416{bottom:323.250000px;}
.y30_c00416{bottom:341.100000px;}
.y63_c00416{bottom:345.900000px;}
.y2f_c00416{bottom:358.800000px;}
.y62_c00416{bottom:366.750000px;}
.y2e_c00416{bottom:377.100000px;}
.y61_c00416{bottom:386.250000px;}
.y2d_c00416{bottom:394.800000px;}
.y60_c00416{bottom:408.600000px;}
.y2c_c00416{bottom:412.500000px;}
.y5f_c00416{bottom:426.300000px;}
.y2b_c00416{bottom:430.500000px;}
.y5e_c00416{bottom:444.300000px;}
.y2a_c00416{bottom:459.600000px;}
.y5d_c00416{bottom:465.450000px;}
.y29_c00416{bottom:479.100000px;}
.y5c_c00416{bottom:484.200000px;}
.y28_c00416{bottom:496.800000px;}
.y5b_c00416{bottom:504.750000px;}
.y27_c00416{bottom:521.850000px;}
.y5a_c00416{bottom:524.850000px;}
.y26_c00416{bottom:541.950000px;}
.y59_c00416{bottom:546.450000px;}
.y25_c00416{bottom:559.950000px;}
.y58_c00416{bottom:567.450000px;}
.y24_c00416{bottom:577.950000px;}
.y57_c00416{bottom:587.550000px;}
.y23_c00416{bottom:595.650000px;}
.y56_c00416{bottom:605.850000px;}
.y22_c00416{bottom:613.350000px;}
.y55_c00416{bottom:623.850000px;}
.y21_c00416{bottom:631.650000px;}
.y54_c00416{bottom:641.550000px;}
.y20_c00416{bottom:649.350000px;}
.y53_c00416{bottom:663.450000px;}
.y1f_c00416{bottom:666.600000px;}
.y52_c00416{bottom:681.450000px;}
.y1e_c00416{bottom:684.600000px;}
.y51_c00416{bottom:699.900000px;}
.y1d_c00416{bottom:702.300000px;}
.y50_c00416{bottom:717.450000px;}
.y1c_c00416{bottom:720.000000px;}
.y4f_c00416{bottom:735.450000px;}
.y1b_c00416{bottom:749.850000px;}
.y4e_c00416{bottom:753.450000px;}
.y1a_c00416{bottom:763.500000px;}
.y19_c00416{bottom:779.400000px;}
.y4d_c00416{bottom:787.650000px;}
.y18_c00416{bottom:790.200000px;}
.y4c_c00416{bottom:793.350000px;}
.y17_c00416{bottom:803.100000px;}
.y14_c00416{bottom:805.950000px;}
.y16_c00416{bottom:807.900000px;}
.y4b_c00416{bottom:813.900000px;}
.y13_c00416{bottom:820.050000px;}
.y12_c00416{bottom:832.650000px;}
.y4a_c00416{bottom:833.400000px;}
.y15_c00416{bottom:837.000000px;}
.y11_c00416{bottom:849.150000px;}
.y49_c00416{bottom:855.750000px;}
.y10_c00416{bottom:866.100000px;}
.y48_c00416{bottom:875.850000px;}
.yf_c00416{bottom:886.200000px;}
.y47_c00416{bottom:896.100000px;}
.ye_c00416{bottom:907.800000px;}
.y46_c00416{bottom:914.400000px;}
.yd_c00416{bottom:925.500000px;}
.y45_c00416{bottom:932.100000px;}
.yc_c00416{bottom:951.900000px;}
.yb_c00416{bottom:969.900000px;}
.y44_c00416{bottom:972.750000px;}
.y43_c00416{bottom:984.900000px;}
.ya_c00416{bottom:987.600000px;}
.y42_c00416{bottom:994.950000px;}
.y41_c00416{bottom:1004.700000px;}
.y9_c00416{bottom:1005.300000px;}
.y40_c00416{bottom:1020.300000px;}
.y8_c00416{bottom:1023.000000px;}
.y3f_c00416{bottom:1028.550000px;}
.y3d_c00416{bottom:1037.100000px;}
.y3e_c00416{bottom:1040.100000px;}
.y7_c00416{bottom:1041.300000px;}
.y3c_c00416{bottom:1051.950000px;}
.y6_c00416{bottom:1059.000000px;}
.y3b_c00416{bottom:1073.550000px;}
.y5_c00416{bottom:1076.700000px;}
.y3a_c00416{bottom:1092.900000px;}
.y4_c00416{bottom:1099.800000px;}
.y3_c00416{bottom:1123.200000px;}
.y39_c00416{bottom:1129.350000px;}
.y1_c00416{bottom:1153.800000px;}
.y2_c00416{bottom:1158.150000px;}
.h7_c00416{height:24.000000px;}
.ha_c00416{height:30.000000px;}
.h8_c00416{height:36.000000px;}
.hb_c00416{height:42.000000px;}
.h9_c00416{height:48.000000px;}
.h6_c00416{height:54.000000px;}
.h5_c00416{height:60.000000px;}
.h4_c00416{height:66.000000px;}
.h3_c00416{height:72.000000px;}
.h2_c00416{height:78.000000px;}
.h0_c00416{height:1268.640015px;}
.h1_c00416{height:1269.000000px;}
.w0_c00416{width:960.480010px;}
.w1_c00416{width:960.750000px;}
.x0_c00416{left:0.000000px;}
.x3_c00416{left:76.350000px;}
.x43_c00416{left:77.400000px;}
.x66_c00416{left:80.250000px;}
.x8a_c00416{left:84.900000px;}
.x2b_c00416{left:92.250000px;}
.x16_c00416{left:93.600000px;}
.x8_c00416{left:94.800000px;}
.x3e_c00416{left:95.850000px;}
.x33_c00416{left:96.900000px;}
.x69_c00416{left:98.400000px;}
.x71_c00416{left:99.450000px;}
.x89_c00416{left:101.550000px;}
.x92_c00416{left:102.900000px;}
.x9e_c00416{left:103.950000px;}
.xa1_c00416{left:105.450000px;}
.x60_c00416{left:107.850000px;}
.x56_c00416{left:109.050000px;}
.xa_c00416{left:112.350000px;}
.x4_c00416{left:118.800000px;}
.x4c_c00416{left:121.500000px;}
.x85_c00416{left:122.700000px;}
.x44_c00416{left:123.900000px;}
.x5a_c00416{left:125.850000px;}
.x34_c00416{left:127.200000px;}
.x27_c00416{left:129.150000px;}
.x57_c00416{left:130.650000px;}
.xa5_c00416{left:132.450000px;}
.x1d_c00416{left:136.200000px;}
.x53_c00416{left:137.700000px;}
.x9_c00416{left:139.800000px;}
.x82_c00416{left:141.000000px;}
.x17_c00416{left:142.950000px;}
.x2c_c00416{left:144.450000px;}
.x74_c00416{left:146.250000px;}
.x8f_c00416{left:147.300000px;}
.x9d_c00416{left:148.350000px;}
.x47_c00416{left:150.300000px;}
.x6c_c00416{left:151.650000px;}
.x5_c00416{left:153.750000px;}
.x7e_c00416{left:155.550000px;}
.x7a_c00416{left:158.250000px;}
.x75_c00416{left:161.400000px;}
.x35_c00416{left:162.450000px;}
.x58_c00416{left:164.100000px;}
.x67_c00416{left:165.600000px;}
.x4d_c00416{left:168.000000px;}
.x1e_c00416{left:170.100000px;}
.x48_c00416{left:171.150000px;}
.x83_c00416{left:172.350000px;}
.x3f_c00416{left:173.550000px;}
.x5b_c00416{left:174.750000px;}
.xb_c00416{left:176.100000px;}
.x9a_c00416{left:180.150000px;}
.x2d_c00416{left:181.500000px;}
.xa2_c00416{left:186.750000px;}
.x76_c00416{left:188.100000px;}
.x54_c00416{left:189.450000px;}
.x18_c00416{left:191.250000px;}
.x1f_c00416{left:193.200000px;}
.x12_c00416{left:199.050000px;}
.xc_c00416{left:200.250000px;}
.x36_c00416{left:202.050000px;}
.x98_c00416{left:203.250000px;}
.x49_c00416{left:204.600000px;}
.x64_c00416{left:208.050000px;}
.x6a_c00416{left:212.550000px;}
.x40_c00416{left:214.200000px;}
.x2e_c00416{left:219.600000px;}
.x9f_c00416{left:220.650000px;}
.x19_c00416{left:221.850000px;}
.x20_c00416{left:223.500000px;}
.x99_c00416{left:225.600000px;}
.xd_c00416{left:228.300000px;}
.x13_c00416{left:230.700000px;}
.x86_c00416{left:231.750000px;}
.x61_c00416{left:233.700000px;}
.x6d_c00416{left:236.250000px;}
.x21_c00416{left:238.950000px;}
.x28_c00416{left:240.450000px;}
.x4a_c00416{left:241.950000px;}
.x4e_c00416{left:243.900000px;}
.x9b_c00416{left:245.400000px;}
.x2f_c00416{left:249.450000px;}
.x37_c00416{left:253.950000px;}
.x77_c00416{left:255.000000px;}
.x59_c00416{left:256.200000px;}
.xe_c00416{left:258.150000px;}
.x45_c00416{left:259.350000px;}
.x22_c00416{left:260.550000px;}
.x14_c00416{left:264.600000px;}
.x1a_c00416{left:266.100000px;}
.xa0_c00416{left:267.900000px;}
.xa7_c00416{left:270.000000px;}
.x6e_c00416{left:274.350000px;}
.x94_c00416{left:276.300000px;}
.x6_c00416{left:277.650000px;}
.xa4_c00416{left:279.000000px;}
.x7f_c00416{left:280.500000px;}
.x62_c00416{left:282.300000px;}
.x87_c00416{left:283.650000px;}
.xf_c00416{left:285.150000px;}
.x95_c00416{left:286.650000px;}
.x30_c00416{left:288.000000px;}
.x55_c00416{left:289.500000px;}
.x7b_c00416{left:293.100000px;}
.x38_c00416{left:295.650000px;}
.x90_c00416{left:298.800000px;}
.x96_c00416{left:300.750000px;}
.x72_c00416{left:301.800000px;}
.x1b_c00416{left:303.150000px;}
.x29_c00416{left:305.250000px;}
.x23_c00416{left:307.650000px;}
.x4f_c00416{left:309.450000px;}
.x78_c00416{left:310.500000px;}
.x41_c00416{left:311.700000px;}
.x31_c00416{left:312.900000px;}
.x91_c00416{left:314.250000px;}
.x39_c00416{left:315.450000px;}
.x8b_c00416{left:316.500000px;}
.x5c_c00416{left:318.750000px;}
.x1_c00416{left:320.700000px;}
.x6f_c00416{left:322.200000px;}
.x80_c00416{left:324.450000px;}
.x2a_c00416{left:326.850000px;}
.xa6_c00416{left:331.050000px;}
.x6b_c00416{left:332.100000px;}
.x8c_c00416{left:333.450000px;}
.x50_c00416{left:335.400000px;}
.x46_c00416{left:336.750000px;}
.x93_c00416{left:338.400000px;}
.x10_c00416{left:340.950000px;}
.x3a_c00416{left:342.750000px;}
.x15_c00416{left:345.300000px;}
.x63_c00416{left:346.350000px;}
.x5d_c00416{left:347.550000px;}
.x32_c00416{left:348.600000px;}
.x73_c00416{left:351.450000px;}
.x3b_c00416{left:352.800000px;}
.x24_c00416{left:355.200000px;}
.x7d_c00416{left:356.400000px;}
.x68_c00416{left:359.700000px;}
.x7_c00416{left:361.950000px;}
.x11_c00416{left:363.600000px;}
.x9c_c00416{left:364.650000px;}
.x51_c00416{left:366.300000px;}
.x3c_c00416{left:368.700000px;}
.x65_c00416{left:369.750000px;}
.x4b_c00416{left:374.550000px;}
.x42_c00416{left:376.500000px;}
.x79_c00416{left:379.650000px;}
.x81_c00416{left:383.400000px;}
.x1c_c00416{left:384.900000px;}
.x8d_c00416{left:385.950000px;}
.x97_c00416{left:388.200000px;}
.x84_c00416{left:389.700000px;}
.x3d_c00416{left:392.100000px;}
.x25_c00416{left:394.800000px;}
.x8e_c00416{left:397.800000px;}
.xa3_c00416{left:399.150000px;}
.x52_c00416{left:400.800000px;}
.x5e_c00416{left:402.450000px;}
.x5f_c00416{left:403.500000px;}
.x26_c00416{left:404.550000px;}
.x70_c00416{left:406.200000px;}
.x88_c00416{left:410.400000px;}
.x7c_c00416{left:416.100000px;}
.xaa_c00416{left:433.500000px;}
.xb7_c00416{left:435.300000px;}
.x137_c00416{left:444.150000px;}
.xef_c00416{left:446.100000px;}
.xf7_c00416{left:447.450000px;}
.xb3_c00416{left:452.250000px;}
.xbf_c00416{left:453.450000px;}
.xe7_c00416{left:455.850000px;}
.xfe_c00416{left:457.200000px;}
.x112_c00416{left:458.250000px;}
.x11a_c00416{left:459.300000px;}
.x129_c00416{left:460.350000px;}
.x136_c00416{left:461.400000px;}
.x13b_c00416{left:462.600000px;}
.xad_c00416{left:469.800000px;}
.xc4_c00416{left:471.300000px;}
.xcb_c00416{left:472.350000px;}
.xdf_c00416{left:475.200000px;}
.x10b_c00416{left:476.250000px;}
.xb8_c00416{left:478.200000px;}
.x12a_c00416{left:479.850000px;}
.x13c_c00416{left:481.350000px;}
.xbd_c00416{left:487.050000px;}
.xf8_c00416{left:492.750000px;}
.xe8_c00416{left:495.150000px;}
.x115_c00416{left:497.100000px;}
.x103_c00416{left:499.650000px;}
.xd4_c00416{left:502.350000px;}
.x138_c00416{left:503.550000px;}
.x13e_c00416{left:504.600000px;}
.xe0_c00416{left:506.850000px;}
.xf0_c00416{left:508.050000px;}
.x10c_c00416{left:509.700000px;}
.x105_c00416{left:511.500000px;}
.xae_c00416{left:512.700000px;}
.xab_c00416{left:514.800000px;}
.xbe_c00416{left:516.150000px;}
.xc8_c00416{left:517.800000px;}
.x12e_c00416{left:519.900000px;}
.x109_c00416{left:521.250000px;}
.x12b_c00416{left:522.300000px;}
.x11d_c00416{left:524.250000px;}
.xc2_c00416{left:525.900000px;}
.xa8_c00416{left:528.450000px;}
.xea_c00416{left:529.650000px;}
.x12f_c00416{left:531.300000px;}
.xc5_c00416{left:534.000000px;}
.xf1_c00416{left:536.400000px;}
.xc9_c00416{left:538.350000px;}
.xc3_c00416{left:541.050000px;}
.xe9_c00416{left:542.700000px;}
.xb9_c00416{left:545.850000px;}
.x11b_c00416{left:547.050000px;}
.x116_c00416{left:549.300000px;}
.x121_c00416{left:550.800000px;}
.xc0_c00416{left:552.150000px;}
.x124_c00416{left:553.950000px;}
.xe1_c00416{left:555.150000px;}
.x104_c00416{left:556.950000px;}
.xaf_c00416{left:558.450000px;}
.xce_c00416{left:559.800000px;}
.x11e_c00416{left:562.650000px;}
.x132_c00416{left:564.750000px;}
.x140_c00416{left:566.550000px;}
.xca_c00416{left:570.750000px;}
.x125_c00416{left:571.950000px;}
.xe2_c00416{left:574.650000px;}
.xdd_c00416{left:577.800000px;}
.xd8_c00416{left:579.600000px;}
.xc1_c00416{left:581.250000px;}
.xf2_c00416{left:583.500000px;}
.xcc_c00416{left:585.750000px;}
.xac_c00416{left:586.800000px;}
.x134_c00416{left:587.850000px;}
.xcf_c00416{left:588.900000px;}
.x13a_c00416{left:591.900000px;}
.xf9_c00416{left:593.550000px;}
.x141_c00416{left:595.350000px;}
.x122_c00416{left:597.600000px;}
.x10d_c00416{left:600.150000px;}
.x139_c00416{left:601.200000px;}
.xba_c00416{left:606.000000px;}
.xd5_c00416{left:608.400000px;}
.xa9_c00416{left:609.450000px;}
.xff_c00416{left:611.700000px;}
.xd9_c00416{left:612.750000px;}
.xfa_c00416{left:614.850000px;}
.xb0_c00416{left:617.550000px;}
.xbb_c00416{left:620.100000px;}
.xd0_c00416{left:622.800000px;}
.x10e_c00416{left:624.600000px;}
.x117_c00416{left:627.450000px;}
.xe3_c00416{left:629.400000px;}
.x106_c00416{left:631.050000px;}
.xd6_c00416{left:632.550000px;}
.x113_c00416{left:634.650000px;}
.xde_c00416{left:637.200000px;}
.xe4_c00416{left:641.250000px;}
.x10f_c00416{left:645.450000px;}
.xfb_c00416{left:646.950000px;}
.x107_c00416{left:651.600000px;}
.xd7_c00416{left:653.100000px;}
.x100_c00416{left:655.650000px;}
.x123_c00416{left:659.250000px;}
.xb6_c00416{left:663.450000px;}
.xb5_c00416{left:664.500000px;}
.x142_c00416{left:665.850000px;}
.x11f_c00416{left:667.500000px;}
.xb1_c00416{left:669.000000px;}
.xf3_c00416{left:670.950000px;}
.x101_c00416{left:672.900000px;}
.x135_c00416{left:674.250000px;}
.x133_c00416{left:675.900000px;}
.xd1_c00416{left:677.850000px;}
.xeb_c00416{left:679.050000px;}
.xcd_c00416{left:680.400000px;}
.xda_c00416{left:682.200000px;}
.x126_c00416{left:684.300000px;}
.x143_c00416{left:685.950000px;}
.xc6_c00416{left:687.450000px;}
.xbc_c00416{left:689.850000px;}
.x110_c00416{left:693.000000px;}
.x127_c00416{left:694.050000px;}
.x102_c00416{left:696.000000px;}
.x120_c00416{left:699.150000px;}
.x10a_c00416{left:701.550000px;}
.x11c_c00416{left:702.600000px;}
.xe5_c00416{left:704.250000px;}
.xfc_c00416{left:705.300000px;}
.xc7_c00416{left:709.350000px;}
.x118_c00416{left:712.050000px;}
.xf4_c00416{left:713.400000px;}
.xec_c00416{left:717.900000px;}
.xd2_c00416{left:718.950000px;}
.x114_c00416{left:720.750000px;}
.xf5_c00416{left:722.400000px;}
.xfd_c00416{left:724.050000px;}
.x12c_c00416{left:726.900000px;}
.xb2_c00416{left:728.400000px;}
.xdb_c00416{left:731.850000px;}
.x119_c00416{left:733.650000px;}
.xb4_c00416{left:736.500000px;}
.x2_c00416{left:742.950000px;}
.xd3_c00416{left:745.950000px;}
.x13d_c00416{left:748.800000px;}
.x130_c00416{left:750.000000px;}
.xe6_c00416{left:751.050000px;}
.xdc_c00416{left:754.200000px;}
.xed_c00416{left:757.800000px;}
.xf6_c00416{left:759.450000px;}
.x131_c00416{left:761.400000px;}
.x12d_c00416{left:764.400000px;}
.x128_c00416{left:767.850000px;}
.xee_c00416{left:770.100000px;}
.x108_c00416{left:772.950000px;}
.x111_c00416{left:774.000000px;}
.x13f_c00416{left:778.200000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws3_c00416{word-spacing:-17.563651pt;}
.ws4_c00416{word-spacing:-3.775811pt;}
.ws6_c00416{word-spacing:0.000000pt;}
.ws2_c00416{word-spacing:9.455113pt;}
.ws5_c00416{word-spacing:13.174603pt;}
.ws1_c00416{word-spacing:20.632708pt;}
.ws0_c00416{word-spacing:26.031746pt;}
._0_c00416{width:47.492404pt;}
.fs5_c00416{font-size:21.333333pt;}
.fs8_c00416{font-size:26.666667pt;}
.fs6_c00416{font-size:32.000000pt;}
.fs9_c00416{font-size:37.333333pt;}
.fs7_c00416{font-size:42.666667pt;}
.fs4_c00416{font-size:48.000000pt;}
.fs3_c00416{font-size:53.333333pt;}
.fs2_c00416{font-size:58.666667pt;}
.fs1_c00416{font-size:64.000000pt;}
.fs0_c00416{font-size:69.333333pt;}
.y0_c00416{bottom:0.000000pt;}
.y38_c00416{bottom:176.133333pt;}
.y6a_c00416{bottom:179.200000pt;}
.y37_c00416{bottom:191.466667pt;}
.y69_c00416{bottom:195.866667pt;}
.y36_c00416{bottom:207.733333pt;}
.y68_c00416{bottom:211.600000pt;}
.y35_c00416{bottom:223.733333pt;}
.y67_c00416{bottom:227.866667pt;}
.y34_c00416{bottom:239.466667pt;}
.y66_c00416{bottom:245.866667pt;}
.y33_c00416{bottom:255.466667pt;}
.y65_c00416{bottom:263.733333pt;}
.y32_c00416{bottom:271.200000pt;}
.y31_c00416{bottom:287.200000pt;}
.y64_c00416{bottom:287.333333pt;}
.y30_c00416{bottom:303.200000pt;}
.y63_c00416{bottom:307.466667pt;}
.y2f_c00416{bottom:318.933333pt;}
.y62_c00416{bottom:326.000000pt;}
.y2e_c00416{bottom:335.200000pt;}
.y61_c00416{bottom:343.333333pt;}
.y2d_c00416{bottom:350.933333pt;}
.y60_c00416{bottom:363.200000pt;}
.y2c_c00416{bottom:366.666667pt;}
.y5f_c00416{bottom:378.933333pt;}
.y2b_c00416{bottom:382.666667pt;}
.y5e_c00416{bottom:394.933333pt;}
.y2a_c00416{bottom:408.533333pt;}
.y5d_c00416{bottom:413.733333pt;}
.y29_c00416{bottom:425.866667pt;}
.y5c_c00416{bottom:430.400000pt;}
.y28_c00416{bottom:441.600000pt;}
.y5b_c00416{bottom:448.666667pt;}
.y27_c00416{bottom:463.866667pt;}
.y5a_c00416{bottom:466.533333pt;}
.y26_c00416{bottom:481.733333pt;}
.y59_c00416{bottom:485.733333pt;}
.y25_c00416{bottom:497.733333pt;}
.y58_c00416{bottom:504.400000pt;}
.y24_c00416{bottom:513.733333pt;}
.y57_c00416{bottom:522.266667pt;}
.y23_c00416{bottom:529.466667pt;}
.y56_c00416{bottom:538.533333pt;}
.y22_c00416{bottom:545.200000pt;}
.y55_c00416{bottom:554.533333pt;}
.y21_c00416{bottom:561.466667pt;}
.y54_c00416{bottom:570.266667pt;}
.y20_c00416{bottom:577.200000pt;}
.y53_c00416{bottom:589.733333pt;}
.y1f_c00416{bottom:592.533333pt;}
.y52_c00416{bottom:605.733333pt;}
.y1e_c00416{bottom:608.533333pt;}
.y51_c00416{bottom:622.133333pt;}
.y1d_c00416{bottom:624.266667pt;}
.y50_c00416{bottom:637.733333pt;}
.y1c_c00416{bottom:640.000000pt;}
.y4f_c00416{bottom:653.733333pt;}
.y1b_c00416{bottom:666.533333pt;}
.y4e_c00416{bottom:669.733333pt;}
.y1a_c00416{bottom:678.666667pt;}
.y19_c00416{bottom:692.800000pt;}
.y4d_c00416{bottom:700.133333pt;}
.y18_c00416{bottom:702.400000pt;}
.y4c_c00416{bottom:705.200000pt;}
.y17_c00416{bottom:713.866667pt;}
.y14_c00416{bottom:716.400000pt;}
.y16_c00416{bottom:718.133333pt;}
.y4b_c00416{bottom:723.466667pt;}
.y13_c00416{bottom:728.933333pt;}
.y12_c00416{bottom:740.133333pt;}
.y4a_c00416{bottom:740.800000pt;}
.y15_c00416{bottom:744.000000pt;}
.y11_c00416{bottom:754.800000pt;}
.y49_c00416{bottom:760.666667pt;}
.y10_c00416{bottom:769.866667pt;}
.y48_c00416{bottom:778.533333pt;}
.yf_c00416{bottom:787.733333pt;}
.y47_c00416{bottom:796.533333pt;}
.ye_c00416{bottom:806.933333pt;}
.y46_c00416{bottom:812.800000pt;}
.yd_c00416{bottom:822.666667pt;}
.y45_c00416{bottom:828.533333pt;}
.yc_c00416{bottom:846.133333pt;}
.yb_c00416{bottom:862.133333pt;}
.y44_c00416{bottom:864.666667pt;}
.y43_c00416{bottom:875.466667pt;}
.ya_c00416{bottom:877.866667pt;}
.y42_c00416{bottom:884.400000pt;}
.y41_c00416{bottom:893.066667pt;}
.y9_c00416{bottom:893.600000pt;}
.y40_c00416{bottom:906.933333pt;}
.y8_c00416{bottom:909.333333pt;}
.y3f_c00416{bottom:914.266667pt;}
.y3d_c00416{bottom:921.866667pt;}
.y3e_c00416{bottom:924.533333pt;}
.y7_c00416{bottom:925.600000pt;}
.y3c_c00416{bottom:935.066667pt;}
.y6_c00416{bottom:941.333333pt;}
.y3b_c00416{bottom:954.266667pt;}
.y5_c00416{bottom:957.066667pt;}
.y3a_c00416{bottom:971.466667pt;}
.y4_c00416{bottom:977.600000pt;}
.y3_c00416{bottom:998.400000pt;}
.y39_c00416{bottom:1003.866667pt;}
.y1_c00416{bottom:1025.600000pt;}
.y2_c00416{bottom:1029.466667pt;}
.h7_c00416{height:21.333333pt;}
.ha_c00416{height:26.666667pt;}
.h8_c00416{height:32.000000pt;}
.hb_c00416{height:37.333333pt;}
.h9_c00416{height:42.666667pt;}
.h6_c00416{height:48.000000pt;}
.h5_c00416{height:53.333333pt;}
.h4_c00416{height:58.666667pt;}
.h3_c00416{height:64.000000pt;}
.h2_c00416{height:69.333333pt;}
.h0_c00416{height:1127.680013pt;}
.h1_c00416{height:1128.000000pt;}
.w0_c00416{width:853.760009pt;}
.w1_c00416{width:854.000000pt;}
.x0_c00416{left:0.000000pt;}
.x3_c00416{left:67.866667pt;}
.x43_c00416{left:68.800000pt;}
.x66_c00416{left:71.333333pt;}
.x8a_c00416{left:75.466667pt;}
.x2b_c00416{left:82.000000pt;}
.x16_c00416{left:83.200000pt;}
.x8_c00416{left:84.266667pt;}
.x3e_c00416{left:85.200000pt;}
.x33_c00416{left:86.133333pt;}
.x69_c00416{left:87.466667pt;}
.x71_c00416{left:88.400000pt;}
.x89_c00416{left:90.266667pt;}
.x92_c00416{left:91.466667pt;}
.x9e_c00416{left:92.400000pt;}
.xa1_c00416{left:93.733333pt;}
.x60_c00416{left:95.866667pt;}
.x56_c00416{left:96.933333pt;}
.xa_c00416{left:99.866667pt;}
.x4_c00416{left:105.600000pt;}
.x4c_c00416{left:108.000000pt;}
.x85_c00416{left:109.066667pt;}
.x44_c00416{left:110.133333pt;}
.x5a_c00416{left:111.866667pt;}
.x34_c00416{left:113.066667pt;}
.x27_c00416{left:114.800000pt;}
.x57_c00416{left:116.133333pt;}
.xa5_c00416{left:117.733333pt;}
.x1d_c00416{left:121.066667pt;}
.x53_c00416{left:122.400000pt;}
.x9_c00416{left:124.266667pt;}
.x82_c00416{left:125.333333pt;}
.x17_c00416{left:127.066667pt;}
.x2c_c00416{left:128.400000pt;}
.x74_c00416{left:130.000000pt;}
.x8f_c00416{left:130.933333pt;}
.x9d_c00416{left:131.866667pt;}
.x47_c00416{left:133.600000pt;}
.x6c_c00416{left:134.800000pt;}
.x5_c00416{left:136.666667pt;}
.x7e_c00416{left:138.266667pt;}
.x7a_c00416{left:140.666667pt;}
.x75_c00416{left:143.466667pt;}
.x35_c00416{left:144.400000pt;}
.x58_c00416{left:145.866667pt;}
.x67_c00416{left:147.200000pt;}
.x4d_c00416{left:149.333333pt;}
.x1e_c00416{left:151.200000pt;}
.x48_c00416{left:152.133333pt;}
.x83_c00416{left:153.200000pt;}
.x3f_c00416{left:154.266667pt;}
.x5b_c00416{left:155.333333pt;}
.xb_c00416{left:156.533333pt;}
.x9a_c00416{left:160.133333pt;}
.x2d_c00416{left:161.333333pt;}
.xa2_c00416{left:166.000000pt;}
.x76_c00416{left:167.200000pt;}
.x54_c00416{left:168.400000pt;}
.x18_c00416{left:170.000000pt;}
.x1f_c00416{left:171.733333pt;}
.x12_c00416{left:176.933333pt;}
.xc_c00416{left:178.000000pt;}
.x36_c00416{left:179.600000pt;}
.x98_c00416{left:180.666667pt;}
.x49_c00416{left:181.866667pt;}
.x64_c00416{left:184.933333pt;}
.x6a_c00416{left:188.933333pt;}
.x40_c00416{left:190.400000pt;}
.x2e_c00416{left:195.200000pt;}
.x9f_c00416{left:196.133333pt;}
.x19_c00416{left:197.200000pt;}
.x20_c00416{left:198.666667pt;}
.x99_c00416{left:200.533333pt;}
.xd_c00416{left:202.933333pt;}
.x13_c00416{left:205.066667pt;}
.x86_c00416{left:206.000000pt;}
.x61_c00416{left:207.733333pt;}
.x6d_c00416{left:210.000000pt;}
.x21_c00416{left:212.400000pt;}
.x28_c00416{left:213.733333pt;}
.x4a_c00416{left:215.066667pt;}
.x4e_c00416{left:216.800000pt;}
.x9b_c00416{left:218.133333pt;}
.x2f_c00416{left:221.733333pt;}
.x37_c00416{left:225.733333pt;}
.x77_c00416{left:226.666667pt;}
.x59_c00416{left:227.733333pt;}
.xe_c00416{left:229.466667pt;}
.x45_c00416{left:230.533333pt;}
.x22_c00416{left:231.600000pt;}
.x14_c00416{left:235.200000pt;}
.x1a_c00416{left:236.533333pt;}
.xa0_c00416{left:238.133333pt;}
.xa7_c00416{left:240.000000pt;}
.x6e_c00416{left:243.866667pt;}
.x94_c00416{left:245.600000pt;}
.x6_c00416{left:246.800000pt;}
.xa4_c00416{left:248.000000pt;}
.x7f_c00416{left:249.333333pt;}
.x62_c00416{left:250.933333pt;}
.x87_c00416{left:252.133333pt;}
.xf_c00416{left:253.466667pt;}
.x95_c00416{left:254.800000pt;}
.x30_c00416{left:256.000000pt;}
.x55_c00416{left:257.333333pt;}
.x7b_c00416{left:260.533333pt;}
.x38_c00416{left:262.800000pt;}
.x90_c00416{left:265.600000pt;}
.x96_c00416{left:267.333333pt;}
.x72_c00416{left:268.266667pt;}
.x1b_c00416{left:269.466667pt;}
.x29_c00416{left:271.333333pt;}
.x23_c00416{left:273.466667pt;}
.x4f_c00416{left:275.066667pt;}
.x78_c00416{left:276.000000pt;}
.x41_c00416{left:277.066667pt;}
.x31_c00416{left:278.133333pt;}
.x91_c00416{left:279.333333pt;}
.x39_c00416{left:280.400000pt;}
.x8b_c00416{left:281.333333pt;}
.x5c_c00416{left:283.333333pt;}
.x1_c00416{left:285.066667pt;}
.x6f_c00416{left:286.400000pt;}
.x80_c00416{left:288.400000pt;}
.x2a_c00416{left:290.533333pt;}
.xa6_c00416{left:294.266667pt;}
.x6b_c00416{left:295.200000pt;}
.x8c_c00416{left:296.400000pt;}
.x50_c00416{left:298.133333pt;}
.x46_c00416{left:299.333333pt;}
.x93_c00416{left:300.800000pt;}
.x10_c00416{left:303.066667pt;}
.x3a_c00416{left:304.666667pt;}
.x15_c00416{left:306.933333pt;}
.x63_c00416{left:307.866667pt;}
.x5d_c00416{left:308.933333pt;}
.x32_c00416{left:309.866667pt;}
.x73_c00416{left:312.400000pt;}
.x3b_c00416{left:313.600000pt;}
.x24_c00416{left:315.733333pt;}
.x7d_c00416{left:316.800000pt;}
.x68_c00416{left:319.733333pt;}
.x7_c00416{left:321.733333pt;}
.x11_c00416{left:323.200000pt;}
.x9c_c00416{left:324.133333pt;}
.x51_c00416{left:325.600000pt;}
.x3c_c00416{left:327.733333pt;}
.x65_c00416{left:328.666667pt;}
.x4b_c00416{left:332.933333pt;}
.x42_c00416{left:334.666667pt;}
.x79_c00416{left:337.466667pt;}
.x81_c00416{left:340.800000pt;}
.x1c_c00416{left:342.133333pt;}
.x8d_c00416{left:343.066667pt;}
.x97_c00416{left:345.066667pt;}
.x84_c00416{left:346.400000pt;}
.x3d_c00416{left:348.533333pt;}
.x25_c00416{left:350.933333pt;}
.x8e_c00416{left:353.600000pt;}
.xa3_c00416{left:354.800000pt;}
.x52_c00416{left:356.266667pt;}
.x5e_c00416{left:357.733333pt;}
.x5f_c00416{left:358.666667pt;}
.x26_c00416{left:359.600000pt;}
.x70_c00416{left:361.066667pt;}
.x88_c00416{left:364.800000pt;}
.x7c_c00416{left:369.866667pt;}
.xaa_c00416{left:385.333333pt;}
.xb7_c00416{left:386.933333pt;}
.x137_c00416{left:394.800000pt;}
.xef_c00416{left:396.533333pt;}
.xf7_c00416{left:397.733333pt;}
.xb3_c00416{left:402.000000pt;}
.xbf_c00416{left:403.066667pt;}
.xe7_c00416{left:405.200000pt;}
.xfe_c00416{left:406.400000pt;}
.x112_c00416{left:407.333333pt;}
.x11a_c00416{left:408.266667pt;}
.x129_c00416{left:409.200000pt;}
.x136_c00416{left:410.133333pt;}
.x13b_c00416{left:411.200000pt;}
.xad_c00416{left:417.600000pt;}
.xc4_c00416{left:418.933333pt;}
.xcb_c00416{left:419.866667pt;}
.xdf_c00416{left:422.400000pt;}
.x10b_c00416{left:423.333333pt;}
.xb8_c00416{left:425.066667pt;}
.x12a_c00416{left:426.533333pt;}
.x13c_c00416{left:427.866667pt;}
.xbd_c00416{left:432.933333pt;}
.xf8_c00416{left:438.000000pt;}
.xe8_c00416{left:440.133333pt;}
.x115_c00416{left:441.866667pt;}
.x103_c00416{left:444.133333pt;}
.xd4_c00416{left:446.533333pt;}
.x138_c00416{left:447.600000pt;}
.x13e_c00416{left:448.533333pt;}
.xe0_c00416{left:450.533333pt;}
.xf0_c00416{left:451.600000pt;}
.x10c_c00416{left:453.066667pt;}
.x105_c00416{left:454.666667pt;}
.xae_c00416{left:455.733333pt;}
.xab_c00416{left:457.600000pt;}
.xbe_c00416{left:458.800000pt;}
.xc8_c00416{left:460.266667pt;}
.x12e_c00416{left:462.133333pt;}
.x109_c00416{left:463.333333pt;}
.x12b_c00416{left:464.266667pt;}
.x11d_c00416{left:466.000000pt;}
.xc2_c00416{left:467.466667pt;}
.xa8_c00416{left:469.733333pt;}
.xea_c00416{left:470.800000pt;}
.x12f_c00416{left:472.266667pt;}
.xc5_c00416{left:474.666667pt;}
.xf1_c00416{left:476.800000pt;}
.xc9_c00416{left:478.533333pt;}
.xc3_c00416{left:480.933333pt;}
.xe9_c00416{left:482.400000pt;}
.xb9_c00416{left:485.200000pt;}
.x11b_c00416{left:486.266667pt;}
.x116_c00416{left:488.266667pt;}
.x121_c00416{left:489.600000pt;}
.xc0_c00416{left:490.800000pt;}
.x124_c00416{left:492.400000pt;}
.xe1_c00416{left:493.466667pt;}
.x104_c00416{left:495.066667pt;}
.xaf_c00416{left:496.400000pt;}
.xce_c00416{left:497.600000pt;}
.x11e_c00416{left:500.133333pt;}
.x132_c00416{left:502.000000pt;}
.x140_c00416{left:503.600000pt;}
.xca_c00416{left:507.333333pt;}
.x125_c00416{left:508.400000pt;}
.xe2_c00416{left:510.800000pt;}
.xdd_c00416{left:513.600000pt;}
.xd8_c00416{left:515.200000pt;}
.xc1_c00416{left:516.666667pt;}
.xf2_c00416{left:518.666667pt;}
.xcc_c00416{left:520.666667pt;}
.xac_c00416{left:521.600000pt;}
.x134_c00416{left:522.533333pt;}
.xcf_c00416{left:523.466667pt;}
.x13a_c00416{left:526.133333pt;}
.xf9_c00416{left:527.600000pt;}
.x141_c00416{left:529.200000pt;}
.x122_c00416{left:531.200000pt;}
.x10d_c00416{left:533.466667pt;}
.x139_c00416{left:534.400000pt;}
.xba_c00416{left:538.666667pt;}
.xd5_c00416{left:540.800000pt;}
.xa9_c00416{left:541.733333pt;}
.xff_c00416{left:543.733333pt;}
.xd9_c00416{left:544.666667pt;}
.xfa_c00416{left:546.533333pt;}
.xb0_c00416{left:548.933333pt;}
.xbb_c00416{left:551.200000pt;}
.xd0_c00416{left:553.600000pt;}
.x10e_c00416{left:555.200000pt;}
.x117_c00416{left:557.733333pt;}
.xe3_c00416{left:559.466667pt;}
.x106_c00416{left:560.933333pt;}
.xd6_c00416{left:562.266667pt;}
.x113_c00416{left:564.133333pt;}
.xde_c00416{left:566.400000pt;}
.xe4_c00416{left:570.000000pt;}
.x10f_c00416{left:573.733333pt;}
.xfb_c00416{left:575.066667pt;}
.x107_c00416{left:579.200000pt;}
.xd7_c00416{left:580.533333pt;}
.x100_c00416{left:582.800000pt;}
.x123_c00416{left:586.000000pt;}
.xb6_c00416{left:589.733333pt;}
.xb5_c00416{left:590.666667pt;}
.x142_c00416{left:591.866667pt;}
.x11f_c00416{left:593.333333pt;}
.xb1_c00416{left:594.666667pt;}
.xf3_c00416{left:596.400000pt;}
.x101_c00416{left:598.133333pt;}
.x135_c00416{left:599.333333pt;}
.x133_c00416{left:600.800000pt;}
.xd1_c00416{left:602.533333pt;}
.xeb_c00416{left:603.600000pt;}
.xcd_c00416{left:604.800000pt;}
.xda_c00416{left:606.400000pt;}
.x126_c00416{left:608.266667pt;}
.x143_c00416{left:609.733333pt;}
.xc6_c00416{left:611.066667pt;}
.xbc_c00416{left:613.200000pt;}
.x110_c00416{left:616.000000pt;}
.x127_c00416{left:616.933333pt;}
.x102_c00416{left:618.666667pt;}
.x120_c00416{left:621.466667pt;}
.x10a_c00416{left:623.600000pt;}
.x11c_c00416{left:624.533333pt;}
.xe5_c00416{left:626.000000pt;}
.xfc_c00416{left:626.933333pt;}
.xc7_c00416{left:630.533333pt;}
.x118_c00416{left:632.933333pt;}
.xf4_c00416{left:634.133333pt;}
.xec_c00416{left:638.133333pt;}
.xd2_c00416{left:639.066667pt;}
.x114_c00416{left:640.666667pt;}
.xf5_c00416{left:642.133333pt;}
.xfd_c00416{left:643.600000pt;}
.x12c_c00416{left:646.133333pt;}
.xb2_c00416{left:647.466667pt;}
.xdb_c00416{left:650.533333pt;}
.x119_c00416{left:652.133333pt;}
.xb4_c00416{left:654.666667pt;}
.x2_c00416{left:660.400000pt;}
.xd3_c00416{left:663.066667pt;}
.x13d_c00416{left:665.600000pt;}
.x130_c00416{left:666.666667pt;}
.xe6_c00416{left:667.600000pt;}
.xdc_c00416{left:670.400000pt;}
.xed_c00416{left:673.600000pt;}
.xf6_c00416{left:675.066667pt;}
.x131_c00416{left:676.800000pt;}
.x12d_c00416{left:679.466667pt;}
.x128_c00416{left:682.533333pt;}
.xee_c00416{left:684.533333pt;}
.x108_c00416{left:687.066667pt;}
.x111_c00416{left:688.000000pt;}
.x13f_c00416{left:691.733333pt;}
}





/* 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_c00417 {
    display:none;
  }
  .loading-indicator_c00417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00417 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_c00417 { 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_c00417" -> "#page-container .classname_c00417")
 */
.pf_c00417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00417 { /* 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_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00417 { /* 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_c00417 { /* 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_c00417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00417 {overflow:visible;}
  }
}
.c_c00417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00417 { /* 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_c00417:after { /* webkit #35443 */
  content: '';
}
.t_c00417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00417 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 */
}
.__c00417 { /* 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_c00417 { /* info for Javascript */
  display:none;
}
.l_c00417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00417: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_c00417 {
    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_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00417.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_c00417 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00417;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.000000;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;}
.mc2_c00417{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00417{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m64_c00417{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00417{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00417{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00417{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m5_c00417{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m66_c00417{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00417{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m99_c00417{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m67_c00417{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m93_c00417{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00417{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m46_c00417{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4_c00417{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00417{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00417{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m12_c00417{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m89_c00417{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00417{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00417{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00417{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00417{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.md0_c00417{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m3_c00417{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00417{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me5_c00417{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00417{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mae_c00417{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m9_c00417{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me3_c00417{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m52_c00417{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me6_c00417{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m118_c00417{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00417{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00417{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m69_c00417{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00417{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m10_c00417{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2_c00417{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m54_c00417{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m15_c00417{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m96_c00417{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00417{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00417{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m68_c00417{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00417{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m77_c00417{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m49_c00417{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m34_c00417{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00417{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m55_c00417{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m23_c00417{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mad_c00417{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00417{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00417{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00417{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me_c00417{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me4_c00417{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m98_c00417{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m13_c00417{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mea_c00417{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.meb_c00417{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00417{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m76_c00417{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00417{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m80_c00417{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00417{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m107_c00417{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00417{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mca_c00417{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00417{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.maa_c00417{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m53_c00417{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m62_c00417{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mce_c00417{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00417{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00417{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me8_c00417{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m78_c00417{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m85_c00417{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00417{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me2_c00417{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m59_c00417{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m11_c00417{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m114_c00417{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m108_c00417{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00417{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m22_c00417{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00417{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00417{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00417{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m35_c00417{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m57_c00417{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00417{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00417{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m36_c00417{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m109_c00417{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00417{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m56_c00417{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m19_c00417{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m70_c00417{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00417{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m25_c00417{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00417{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m94_c00417{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.maf_c00417{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00417{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.md2_c00417{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m117_c00417{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00417{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00417{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m47_c00417{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m116_c00417{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mac_c00417{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00417{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00417{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m95_c00417{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m17_c00417{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00417{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00417{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00417{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00417{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.md_c00417{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m58_c00417{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m28_c00417{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00417{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc_c00417{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00417{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m113_c00417{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m111_c00417{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00417{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m14_c00417{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mda_c00417{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00417{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00417{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m63_c00417{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m104_c00417{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00417{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00417{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7_c00417{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md3_c00417{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00417{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m33_c00417{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m102_c00417{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.me9_c00417{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m75_c00417{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00417{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mab_c00417{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m42_c00417{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00417{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md1_c00417{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00417{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00417{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.ma_c00417{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m44_c00417{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00417{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8_c00417{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m65_c00417{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me0_c00417{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md8_c00417{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00417{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00417{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00417{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mff_c00417{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m106_c00417{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m51_c00417{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00417{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00417{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m41_c00417{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00417{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00417{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m73_c00417{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00417{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m84_c00417{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mde_c00417{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m72_c00417{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me7_c00417{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00417{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00417{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m60_c00417{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m30_c00417{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mf_c00417{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m82_c00417{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m92_c00417{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00417{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m87_c00417{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m88_c00417{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m97_c00417{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m32_c00417{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00417{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m112_c00417{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00417{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m45_c00417{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m48_c00417{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m18_c00417{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mb_c00417{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m39_c00417{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00417{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m61_c00417{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00417{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00417{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00417{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m83_c00417{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00417{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m71_c00417{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m38_c00417{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m29_c00417{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00417{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00417{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m50_c00417{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md9_c00417{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00417{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00417{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m74_c00417{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.md5_c00417{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m43_c00417{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00417{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mec_c00417{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00417{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m86_c00417{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m81_c00417{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m27_c00417{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00417{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m31_c00417{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md6_c00417{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00417{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);}
.mee_c00417{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00417{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00417{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00417{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00417{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00417{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m105_c00417{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m16_c00417{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00417{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m91_c00417{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6_c00417{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00417{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m79_c00417{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m90_c00417{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00417{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m110_c00417{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00417{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m100_c00417{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m37_c00417{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00417{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00417{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00417{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00417{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00417{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m20_c00417{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00417{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m40_c00417{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m101_c00417{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00417{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md4_c00417{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00417{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.md7_c00417{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00417{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m103_c00417{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00417{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.me1_c00417{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00417{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00417{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mba_c00417{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mef_c00417{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m26_c00417{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00417{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m115_c00417{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00417{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.med_c00417{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00417{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m21_c00417{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c00417{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00417{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00417{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00417{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00417{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls2_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:63.000000px;}
.ls1_c00417{letter-spacing:70.000000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{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__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00417{word-spacing:-100.000000px;}
.ws6_c00417{word-spacing:-90.000000px;}
.ws11_c00417{word-spacing:-9.602620px;}
.ws1_c00417{word-spacing:-8.055556px;}
.wsd_c00417{word-spacing:0.000000px;}
.wsf_c00417{word-spacing:5.595506px;}
.wse_c00417{word-spacing:6.341463px;}
.ws9_c00417{word-spacing:8.026316px;}
.ws12_c00417{word-spacing:8.174672px;}
.ws13_c00417{word-spacing:11.611684px;}
.ws2_c00417{word-spacing:13.214286px;}
.ws4_c00417{word-spacing:25.714286px;}
.ws7_c00417{word-spacing:26.428954px;}
.ws8_c00417{word-spacing:36.000000px;}
.ws5_c00417{word-spacing:40.000000px;}
.ws10_c00417{word-spacing:41.147088px;}
.wsc_c00417{word-spacing:44.166667px;}
.wsa_c00417{word-spacing:55.000000px;}
.ws0_c00417{word-spacing:71.944444px;}
.ws3_c00417{word-spacing:73.333333px;}
._6_c00417{margin-left:-70.000000px;}
._2_c00417{margin-left:-63.000000px;}
._5_c00417{width:4.166667px;}
._0_c00417{width:52.142857px;}
._3_c00417{width:66.750000px;}
._1_c00417{width:74.166667px;}
._4_c00417{width:95.000000px;}
.fc0_c00417{color:transparent;}
.fs4_c00417{font-size:42.000000px;}
.fs3_c00417{font-size:54.000000px;}
.fs2_c00417{font-size:60.000000px;}
.fs0_c00417{font-size:66.000000px;}
.fs1_c00417{font-size:78.000000px;}
.y0_c00417{bottom:0.000000px;}
.y68_c00417{bottom:200.850000px;}
.y38_c00417{bottom:203.100000px;}
.y67_c00417{bottom:214.950000px;}
.y37_c00417{bottom:217.800000px;}
.y36_c00417{bottom:232.200000px;}
.y66_c00417{bottom:256.500000px;}
.y65_c00417{bottom:274.200000px;}
.y35_c00417{bottom:276.900000px;}
.y64_c00417{bottom:291.900000px;}
.y34_c00417{bottom:294.900000px;}
.y63_c00417{bottom:309.900000px;}
.y33_c00417{bottom:312.600000px;}
.y62_c00417{bottom:328.350000px;}
.y32_c00417{bottom:329.550000px;}
.y31_c00417{bottom:347.250000px;}
.y61_c00417{bottom:350.550000px;}
.y30_c00417{bottom:364.950000px;}
.y60_c00417{bottom:368.850000px;}
.y2f_c00417{bottom:382.950000px;}
.y5f_c00417{bottom:386.850000px;}
.y2e_c00417{bottom:400.650000px;}
.y5e_c00417{bottom:404.850000px;}
.y5d_c00417{bottom:422.850000px;}
.y2d_c00417{bottom:423.000000px;}
.y5c_c00417{bottom:441.150000px;}
.y2c_c00417{bottom:441.300000px;}
.y5b_c00417{bottom:459.150000px;}
.y2b_c00417{bottom:461.100000px;}
.y5a_c00417{bottom:476.850000px;}
.y2a_c00417{bottom:481.500000px;}
.y59_c00417{bottom:494.850000px;}
.y29_c00417{bottom:499.200000px;}
.y58_c00417{bottom:512.550000px;}
.y28_c00417{bottom:517.500000px;}
.y57_c00417{bottom:530.250000px;}
.y27_c00417{bottom:535.200000px;}
.y56_c00417{bottom:548.250000px;}
.y26_c00417{bottom:552.900000px;}
.y55_c00417{bottom:565.950000px;}
.y25_c00417{bottom:570.900000px;}
.y54_c00417{bottom:583.500000px;}
.y24_c00417{bottom:588.900000px;}
.y53_c00417{bottom:604.500000px;}
.y23_c00417{bottom:606.900000px;}
.y52_c00417{bottom:619.200000px;}
.y22_c00417{bottom:624.600000px;}
.y51_c00417{bottom:633.600000px;}
.y21_c00417{bottom:642.900000px;}
.y50_c00417{bottom:648.000000px;}
.y20_c00417{bottom:660.900000px;}
.y4f_c00417{bottom:677.100000px;}
.y1f_c00417{bottom:678.900000px;}
.y4e_c00417{bottom:691.200000px;}
.y1e_c00417{bottom:696.600000px;}
.y39_c00417{bottom:705.900000px;}
.y4d_c00417{bottom:707.100000px;}
.y1d_c00417{bottom:714.900000px;}
.y4c_c00417{bottom:726.450000px;}
.y1c_c00417{bottom:734.100000px;}
.y4b_c00417{bottom:744.450000px;}
.y1b_c00417{bottom:749.400000px;}
.y1a_c00417{bottom:765.300000px;}
.y4a_c00417{bottom:767.100000px;}
.y19_c00417{bottom:777.900000px;}
.y49_c00417{bottom:785.100000px;}
.y18_c00417{bottom:793.800000px;}
.y48_c00417{bottom:803.100000px;}
.y17_c00417{bottom:806.700000px;}
.y47_c00417{bottom:820.800000px;}
.y16_c00417{bottom:822.600000px;}
.y15_c00417{bottom:837.750000px;}
.y46_c00417{bottom:838.800000px;}
.y14_c00417{bottom:852.150000px;}
.y45_c00417{bottom:856.050000px;}
.y13_c00417{bottom:864.750000px;}
.y44_c00417{bottom:878.700000px;}
.y12_c00417{bottom:878.850000px;}
.y11_c00417{bottom:895.350000px;}
.y10_c00417{bottom:908.100000px;}
.y43_c00417{bottom:910.500000px;}
.yf_c00417{bottom:922.200000px;}
.y42_c00417{bottom:928.500000px;}
.ye_c00417{bottom:936.600000px;}
.y41_c00417{bottom:946.500000px;}
.yd_c00417{bottom:950.700000px;}
.y40_c00417{bottom:964.500000px;}
.yc_c00417{bottom:965.100000px;}
.yb_c00417{bottom:982.050000px;}
.y3f_c00417{bottom:982.500000px;}
.ya_c00417{bottom:1000.200000px;}
.y3e_c00417{bottom:1004.250000px;}
.y9_c00417{bottom:1018.500000px;}
.y3d_c00417{bottom:1022.550000px;}
.y8_c00417{bottom:1036.800000px;}
.y3c_c00417{bottom:1040.250000px;}
.y7_c00417{bottom:1056.600000px;}
.y3b_c00417{bottom:1057.950000px;}
.y6_c00417{bottom:1075.650000px;}
.y5_c00417{bottom:1093.650000px;}
.y4_c00417{bottom:1111.350000px;}
.y3a_c00417{bottom:1129.350000px;}
.y3_c00417{bottom:1129.650000px;}
.y1_c00417{bottom:1155.600000px;}
.y2_c00417{bottom:1155.900000px;}
.h6_c00417{height:42.000000px;}
.h5_c00417{height:54.000000px;}
.h4_c00417{height:60.000000px;}
.h2_c00417{height:66.000000px;}
.h3_c00417{height:78.000000px;}
.h1_c00417{height:1276.500000px;}
.h0_c00417{height:1276.559967px;}
.w0_c00417{width:960.480010px;}
.w1_c00417{width:960.750000px;}
.x0_c00417{left:0.000000px;}
.x92_c00417{left:183.900000px;}
.xa6_c00417{left:184.950000px;}
.x36_c00417{left:186.150000px;}
.x24_c00417{left:188.250000px;}
.x1_c00417{left:189.300000px;}
.x1d_c00417{left:193.650000px;}
.xa0_c00417{left:195.450000px;}
.x3b_c00417{left:201.000000px;}
.x8d_c00417{left:202.350000px;}
.x73_c00417{left:203.400000px;}
.x3_c00417{left:204.450000px;}
.x31_c00417{left:205.500000px;}
.xa3_c00417{left:210.150000px;}
.x25_c00417{left:213.150000px;}
.x55_c00417{left:214.350000px;}
.x42_c00417{left:215.700000px;}
.x17_c00417{left:220.650000px;}
.x53_c00417{left:226.350000px;}
.x26_c00417{left:229.350000px;}
.x78_c00417{left:231.750000px;}
.x3c_c00417{left:233.400000px;}
.x4a_c00417{left:236.700000px;}
.x9e_c00417{left:237.900000px;}
.x81_c00417{left:238.950000px;}
.x5d_c00417{left:241.200000px;}
.x4_c00417{left:243.750000px;}
.xa1_c00417{left:244.800000px;}
.x89_c00417{left:246.750000px;}
.x74_c00417{left:249.450000px;}
.x99_c00417{left:252.000000px;}
.x5_c00417{left:253.050000px;}
.x7d_c00417{left:254.700000px;}
.x68_c00417{left:256.050000px;}
.x23_c00417{left:257.400000px;}
.x6_c00417{left:260.550000px;}
.x93_c00417{left:261.900000px;}
.x79_c00417{left:263.100000px;}
.x1e_c00417{left:264.150000px;}
.x2c_c00417{left:265.950000px;}
.x6e_c00417{left:267.000000px;}
.x7_c00417{left:268.050000px;}
.xd_c00417{left:269.700000px;}
.x56_c00417{left:270.900000px;}
.x80_c00417{left:271.950000px;}
.x18_c00417{left:274.950000px;}
.x5a_c00417{left:277.800000px;}
.x4e_c00417{left:279.000000px;}
.x8a_c00417{left:280.200000px;}
.x95_c00417{left:282.900000px;}
.x19_c00417{left:284.250000px;}
.x62_c00417{left:285.600000px;}
.x86_c00417{left:287.700000px;}
.x43_c00417{left:288.900000px;}
.xe_c00417{left:290.250000px;}
.x8_c00417{left:293.250000px;}
.x5e_c00417{left:295.200000px;}
.x32_c00417{left:297.300000px;}
.x3d_c00417{left:300.000000px;}
.x7e_c00417{left:301.800000px;}
.x61_c00417{left:302.850000px;}
.x82_c00417{left:306.150000px;}
.x2d_c00417{left:307.350000px;}
.x69_c00417{left:308.550000px;}
.x4f_c00417{left:312.150000px;}
.x75_c00417{left:313.500000px;}
.x8b_c00417{left:314.700000px;}
.x6a_c00417{left:316.500000px;}
.x37_c00417{left:318.750000px;}
.xf_c00417{left:320.100000px;}
.x33_c00417{left:321.450000px;}
.x1a_c00417{left:323.550000px;}
.x27_c00417{left:327.900000px;}
.x63_c00417{left:329.850000px;}
.x1f_c00417{left:331.050000px;}
.x6f_c00417{left:332.100000px;}
.x64_c00417{left:337.050000px;}
.x58_c00417{left:338.100000px;}
.x50_c00417{left:339.150000px;}
.x87_c00417{left:340.200000px;}
.x34_c00417{left:342.750000px;}
.x5f_c00417{left:344.550000px;}
.x3e_c00417{left:346.050000px;}
.x9a_c00417{left:347.700000px;}
.x51_c00417{left:349.200000px;}
.x96_c00417{left:350.250000px;}
.x59_c00417{left:352.500000px;}
.x90_c00417{left:354.750000px;}
.x10_c00417{left:358.200000px;}
.x4b_c00417{left:360.150000px;}
.x9c_c00417{left:363.000000px;}
.x76_c00417{left:364.650000px;}
.x9_c00417{left:367.350000px;}
.x71_c00417{left:369.450000px;}
.x7a_c00417{left:371.850000px;}
.x4c_c00417{left:374.250000px;}
.x6b_c00417{left:375.600000px;}
.x11_c00417{left:377.250000px;}
.x5b_c00417{left:379.350000px;}
.x60_c00417{left:380.850000px;}
.x44_c00417{left:382.500000px;}
.x2e_c00417{left:384.000000px;}
.x65_c00417{left:388.050000px;}
.x20_c00417{left:389.400000px;}
.x57_c00417{left:391.200000px;}
.x52_c00417{left:392.700000px;}
.x28_c00417{left:393.750000px;}
.xa4_c00417{left:394.800000px;}
.x4d_c00417{left:396.150000px;}
.x35_c00417{left:397.800000px;}
.x9f_c00417{left:400.050000px;}
.x66_c00417{left:402.450000px;}
.x45_c00417{left:403.800000px;}
.x91_c00417{left:404.850000px;}
.x8f_c00417{left:407.250000px;}
.x12_c00417{left:408.900000px;}
.x46_c00417{left:411.000000px;}
.x3f_c00417{left:414.150000px;}
.x6c_c00417{left:415.950000px;}
.x47_c00417{left:417.900000px;}
.x13_c00417{left:419.400000px;}
.x9d_c00417{left:422.100000px;}
.x38_c00417{left:424.950000px;}
.x48_c00417{left:426.150000px;}
.xa_c00417{left:428.550000px;}
.x1b_c00417{left:429.750000px;}
.x21_c00417{left:430.800000px;}
.x29_c00417{left:432.300000px;}
.x2_c00417{left:434.850000px;}
.x2f_c00417{left:438.750000px;}
.x8e_c00417{left:441.000000px;}
.x14_c00417{left:442.050000px;}
.x88_c00417{left:444.300000px;}
.xb_c00417{left:445.800000px;}
.x83_c00417{left:448.650000px;}
.x7b_c00417{left:449.850000px;}
.x54_c00417{left:451.350000px;}
.x40_c00417{left:452.850000px;}
.x49_c00417{left:454.200000px;}
.x6d_c00417{left:458.850000px;}
.x2a_c00417{left:460.800000px;}
.x15_c00417{left:463.650000px;}
.x72_c00417{left:466.650000px;}
.x97_c00417{left:469.800000px;}
.x22_c00417{left:471.150000px;}
.x8c_c00417{left:472.650000px;}
.x39_c00417{left:474.300000px;}
.x2b_c00417{left:475.950000px;}
.x84_c00417{left:477.450000px;}
.x67_c00417{left:479.850000px;}
.x41_c00417{left:481.650000px;}
.x5c_c00417{left:482.700000px;}
.x77_c00417{left:485.250000px;}
.x1c_c00417{left:489.150000px;}
.x70_c00417{left:491.700000px;}
.xc_c00417{left:493.650000px;}
.xa2_c00417{left:495.000000px;}
.x9b_c00417{left:498.000000px;}
.x85_c00417{left:500.850000px;}
.x94_c00417{left:502.950000px;}
.x98_c00417{left:505.800000px;}
.x7c_c00417{left:507.450000px;}
.x3a_c00417{left:508.800000px;}
.x16_c00417{left:510.450000px;}
.x30_c00417{left:512.250000px;}
.x7f_c00417{left:517.500000px;}
.xa5_c00417{left:528.450000px;}
.x13b_c00417{left:541.800000px;}
.xa7_c00417{left:543.300000px;}
.xf2_c00417{left:544.350000px;}
.xda_c00417{left:545.700000px;}
.x146_c00417{left:556.500000px;}
.x116_c00417{left:557.700000px;}
.x143_c00417{left:559.500000px;}
.x105_c00417{left:560.700000px;}
.xdf_c00417{left:562.350000px;}
.xab_c00417{left:563.700000px;}
.x149_c00417{left:567.750000px;}
.x121_c00417{left:570.450000px;}
.x11d_c00417{left:571.500000px;}
.x101_c00417{left:572.850000px;}
.x117_c00417{left:576.000000px;}
.xb1_c00417{left:577.500000px;}
.x144_c00417{left:579.600000px;}
.xf6_c00417{left:580.650000px;}
.x14a_c00417{left:582.450000px;}
.xe4_c00417{left:584.400000px;}
.xbc_c00417{left:585.900000px;}
.xf3_c00417{left:588.300000px;}
.x13f_c00417{left:590.250000px;}
.xfa_c00417{left:592.950000px;}
.x12b_c00417{left:594.450000px;}
.xb2_c00417{left:596.550000px;}
.xe5_c00417{left:598.500000px;}
.xcd_c00417{left:600.750000px;}
.xd7_c00417{left:602.250000px;}
.xfb_c00417{left:604.500000px;}
.xc3_c00417{left:606.150000px;}
.xa8_c00417{left:607.350000px;}
.xec_c00417{left:609.750000px;}
.xdb_c00417{left:611.550000px;}
.xe1_c00417{left:612.900000px;}
.xfe_c00417{left:615.750000px;}
.xc4_c00417{left:616.950000px;}
.xd3_c00417{left:620.700000px;}
.xed_c00417{left:622.350000px;}
.xac_c00417{left:624.150000px;}
.x11f_c00417{left:625.500000px;}
.x125_c00417{left:627.450000px;}
.x12c_c00417{left:628.650000px;}
.xd8_c00417{left:630.000000px;}
.x147_c00417{left:631.050000px;}
.xb3_c00417{left:632.850000px;}
.x110_c00417{left:633.900000px;}
.xc5_c00417{left:635.700000px;}
.x106_c00417{left:639.150000px;}
.x13c_c00417{left:641.100000px;}
.x127_c00417{left:642.300000px;}
.xfc_c00417{left:645.150000px;}
.xbd_c00417{left:647.100000px;}
.x10d_c00417{left:650.100000px;}
.x135_c00417{left:651.600000px;}
.xb4_c00417{left:653.700000px;}
.xb8_c00417{left:655.950000px;}
.x138_c00417{left:660.150000px;}
.xe2_c00417{left:662.550000px;}
.xa9_c00417{left:664.650000px;}
.x10b_c00417{left:665.700000px;}
.xbe_c00417{left:667.200000px;}
.xee_c00417{left:670.200000px;}
.xd9_c00417{left:672.900000px;}
.x107_c00417{left:674.850000px;}
.x120_c00417{left:677.400000px;}
.x12d_c00417{left:679.350000px;}
.x118_c00417{left:680.850000px;}
.xe6_c00417{left:682.050000px;}
.xbf_c00417{left:683.700000px;}
.xdc_c00417{left:686.400000px;}
.x12a_c00417{left:688.800000px;}
.x12e_c00417{left:691.350000px;}
.xb9_c00417{left:692.700000px;}
.xc6_c00417{left:695.850000px;}
.x10e_c00417{left:697.950000px;}
.x13d_c00417{left:699.150000px;}
.x130_c00417{left:700.800000px;}
.x11b_c00417{left:702.150000px;}
.x132_c00417{left:703.200000px;}
.xf7_c00417{left:704.550000px;}
.x139_c00417{left:708.000000px;}
.x111_c00417{left:709.200000px;}
.xef_c00417{left:711.600000px;}
.xe7_c00417{left:713.700000px;}
.xad_c00417{left:715.200000px;}
.xe0_c00417{left:716.850000px;}
.xaa_c00417{left:719.700000px;}
.xce_c00417{left:720.900000px;}
.xb5_c00417{left:722.100000px;}
.x108_c00417{left:724.950000px;}
.xf0_c00417{left:727.800000px;}
.xc0_c00417{left:730.200000px;}
.xc7_c00417{left:732.600000px;}
.xd4_c00417{left:735.600000px;}
.x112_c00417{left:737.700000px;}
.x136_c00417{left:738.750000px;}
.x119_c00417{left:743.400000px;}
.x140_c00417{left:744.600000px;}
.xae_c00417{left:745.800000px;}
.x133_c00417{left:747.150000px;}
.xff_c00417{left:749.700000px;}
.xba_c00417{left:752.100000px;}
.xe8_c00417{left:754.800000px;}
.xd5_c00417{left:757.500000px;}
.x109_c00417{left:759.450000px;}
.xcf_c00417{left:761.550000px;}
.xf4_c00417{left:763.650000px;}
.x11c_c00417{left:765.450000px;}
.xdd_c00417{left:766.800000px;}
.xc8_c00417{left:768.900000px;}
.x137_c00417{left:770.850000px;}
.xe9_c00417{left:773.850000px;}
.xf8_c00417{left:775.800000px;}
.x11a_c00417{left:777.900000px;}
.x128_c00417{left:779.400000px;}
.x10a_c00417{left:781.350000px;}
.x102_c00417{left:785.100000px;}
.xc1_c00417{left:786.300000px;}
.x131_c00417{left:787.650000px;}
.xc9_c00417{left:789.000000px;}
.x126_c00417{left:790.650000px;}
.x13a_c00417{left:792.000000px;}
.xb6_c00417{left:793.800000px;}
.x100_c00417{left:795.000000px;}
.x113_c00417{left:799.950000px;}
.xf1_c00417{left:801.600000px;}
.x141_c00417{left:802.950000px;}
.xaf_c00417{left:804.900000px;}
.x124_c00417{left:808.500000px;}
.x10c_c00417{left:809.700000px;}
.xd0_c00417{left:811.950000px;}
.xe3_c00417{left:815.250000px;}
.x10f_c00417{left:817.500000px;}
.xea_c00417{left:818.550000px;}
.x103_c00417{left:823.200000px;}
.xb7_c00417{left:826.200000px;}
.xf5_c00417{left:827.700000px;}
.xca_c00417{left:829.350000px;}
.x114_c00417{left:830.550000px;}
.xd1_c00417{left:832.800000px;}
.x129_c00417{left:835.200000px;}
.x122_c00417{left:837.150000px;}
.xb0_c00417{left:839.100000px;}
.xfd_c00417{left:840.750000px;}
.x12f_c00417{left:842.850000px;}
.x148_c00417{left:843.900000px;}
.xd6_c00417{left:845.700000px;}
.xde_c00417{left:848.850000px;}
.xeb_c00417{left:850.650000px;}
.xf9_c00417{left:852.150000px;}
.xbb_c00417{left:855.450000px;}
.xc2_c00417{left:856.800000px;}
.x145_c00417{left:858.150000px;}
.xcb_c00417{left:859.950000px;}
.x104_c00417{left:861.300000px;}
.xd2_c00417{left:863.100000px;}
.x13e_c00417{left:864.150000px;}
.x115_c00417{left:865.500000px;}
.x123_c00417{left:866.700000px;}
.x11e_c00417{left:868.050000px;}
.x134_c00417{left:870.150000px;}
.xcc_c00417{left:872.550000px;}
.x142_c00417{left:874.200000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls2_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:56.000000pt;}
.ls1_c00417{letter-spacing:62.222222pt;}
.wsb_c00417{word-spacing:-88.888889pt;}
.ws6_c00417{word-spacing:-80.000000pt;}
.ws11_c00417{word-spacing:-8.535662pt;}
.ws1_c00417{word-spacing:-7.160494pt;}
.wsd_c00417{word-spacing:0.000000pt;}
.wsf_c00417{word-spacing:4.973783pt;}
.wse_c00417{word-spacing:5.636856pt;}
.ws9_c00417{word-spacing:7.134503pt;}
.ws12_c00417{word-spacing:7.266376pt;}
.ws13_c00417{word-spacing:10.321497pt;}
.ws2_c00417{word-spacing:11.746032pt;}
.ws4_c00417{word-spacing:22.857143pt;}
.ws7_c00417{word-spacing:23.492404pt;}
.ws8_c00417{word-spacing:32.000000pt;}
.ws5_c00417{word-spacing:35.555556pt;}
.ws10_c00417{word-spacing:36.575189pt;}
.wsc_c00417{word-spacing:39.259259pt;}
.wsa_c00417{word-spacing:48.888889pt;}
.ws0_c00417{word-spacing:63.950617pt;}
.ws3_c00417{word-spacing:65.185185pt;}
._6_c00417{margin-left:-62.222222pt;}
._2_c00417{margin-left:-56.000000pt;}
._5_c00417{width:3.703704pt;}
._0_c00417{width:46.349206pt;}
._3_c00417{width:59.333333pt;}
._1_c00417{width:65.925926pt;}
._4_c00417{width:84.444444pt;}
.fs4_c00417{font-size:37.333333pt;}
.fs3_c00417{font-size:48.000000pt;}
.fs2_c00417{font-size:53.333333pt;}
.fs0_c00417{font-size:58.666667pt;}
.fs1_c00417{font-size:69.333333pt;}
.y0_c00417{bottom:0.000000pt;}
.y68_c00417{bottom:178.533333pt;}
.y38_c00417{bottom:180.533333pt;}
.y67_c00417{bottom:191.066667pt;}
.y37_c00417{bottom:193.600000pt;}
.y36_c00417{bottom:206.400000pt;}
.y66_c00417{bottom:228.000000pt;}
.y65_c00417{bottom:243.733333pt;}
.y35_c00417{bottom:246.133333pt;}
.y64_c00417{bottom:259.466667pt;}
.y34_c00417{bottom:262.133333pt;}
.y63_c00417{bottom:275.466667pt;}
.y33_c00417{bottom:277.866667pt;}
.y62_c00417{bottom:291.866667pt;}
.y32_c00417{bottom:292.933333pt;}
.y31_c00417{bottom:308.666667pt;}
.y61_c00417{bottom:311.600000pt;}
.y30_c00417{bottom:324.400000pt;}
.y60_c00417{bottom:327.866667pt;}
.y2f_c00417{bottom:340.400000pt;}
.y5f_c00417{bottom:343.866667pt;}
.y2e_c00417{bottom:356.133333pt;}
.y5e_c00417{bottom:359.866667pt;}
.y5d_c00417{bottom:375.866667pt;}
.y2d_c00417{bottom:376.000000pt;}
.y5c_c00417{bottom:392.133333pt;}
.y2c_c00417{bottom:392.266667pt;}
.y5b_c00417{bottom:408.133333pt;}
.y2b_c00417{bottom:409.866667pt;}
.y5a_c00417{bottom:423.866667pt;}
.y2a_c00417{bottom:428.000000pt;}
.y59_c00417{bottom:439.866667pt;}
.y29_c00417{bottom:443.733333pt;}
.y58_c00417{bottom:455.600000pt;}
.y28_c00417{bottom:460.000000pt;}
.y57_c00417{bottom:471.333333pt;}
.y27_c00417{bottom:475.733333pt;}
.y56_c00417{bottom:487.333333pt;}
.y26_c00417{bottom:491.466667pt;}
.y55_c00417{bottom:503.066667pt;}
.y25_c00417{bottom:507.466667pt;}
.y54_c00417{bottom:518.666667pt;}
.y24_c00417{bottom:523.466667pt;}
.y53_c00417{bottom:537.333333pt;}
.y23_c00417{bottom:539.466667pt;}
.y52_c00417{bottom:550.400000pt;}
.y22_c00417{bottom:555.200000pt;}
.y51_c00417{bottom:563.200000pt;}
.y21_c00417{bottom:571.466667pt;}
.y50_c00417{bottom:576.000000pt;}
.y20_c00417{bottom:587.466667pt;}
.y4f_c00417{bottom:601.866667pt;}
.y1f_c00417{bottom:603.466667pt;}
.y4e_c00417{bottom:614.400000pt;}
.y1e_c00417{bottom:619.200000pt;}
.y39_c00417{bottom:627.466667pt;}
.y4d_c00417{bottom:628.533333pt;}
.y1d_c00417{bottom:635.466667pt;}
.y4c_c00417{bottom:645.733333pt;}
.y1c_c00417{bottom:652.533333pt;}
.y4b_c00417{bottom:661.733333pt;}
.y1b_c00417{bottom:666.133333pt;}
.y1a_c00417{bottom:680.266667pt;}
.y4a_c00417{bottom:681.866667pt;}
.y19_c00417{bottom:691.466667pt;}
.y49_c00417{bottom:697.866667pt;}
.y18_c00417{bottom:705.600000pt;}
.y48_c00417{bottom:713.866667pt;}
.y17_c00417{bottom:717.066667pt;}
.y47_c00417{bottom:729.600000pt;}
.y16_c00417{bottom:731.200000pt;}
.y15_c00417{bottom:744.666667pt;}
.y46_c00417{bottom:745.600000pt;}
.y14_c00417{bottom:757.466667pt;}
.y45_c00417{bottom:760.933333pt;}
.y13_c00417{bottom:768.666667pt;}
.y44_c00417{bottom:781.066667pt;}
.y12_c00417{bottom:781.200000pt;}
.y11_c00417{bottom:795.866667pt;}
.y10_c00417{bottom:807.200000pt;}
.y43_c00417{bottom:809.333333pt;}
.yf_c00417{bottom:819.733333pt;}
.y42_c00417{bottom:825.333333pt;}
.ye_c00417{bottom:832.533333pt;}
.y41_c00417{bottom:841.333333pt;}
.yd_c00417{bottom:845.066667pt;}
.y40_c00417{bottom:857.333333pt;}
.yc_c00417{bottom:857.866667pt;}
.yb_c00417{bottom:872.933333pt;}
.y3f_c00417{bottom:873.333333pt;}
.ya_c00417{bottom:889.066667pt;}
.y3e_c00417{bottom:892.666667pt;}
.y9_c00417{bottom:905.333333pt;}
.y3d_c00417{bottom:908.933333pt;}
.y8_c00417{bottom:921.600000pt;}
.y3c_c00417{bottom:924.666667pt;}
.y7_c00417{bottom:939.200000pt;}
.y3b_c00417{bottom:940.400000pt;}
.y6_c00417{bottom:956.133333pt;}
.y5_c00417{bottom:972.133333pt;}
.y4_c00417{bottom:987.866667pt;}
.y3a_c00417{bottom:1003.866667pt;}
.y3_c00417{bottom:1004.133333pt;}
.y1_c00417{bottom:1027.200000pt;}
.y2_c00417{bottom:1027.466667pt;}
.h6_c00417{height:37.333333pt;}
.h5_c00417{height:48.000000pt;}
.h4_c00417{height:53.333333pt;}
.h2_c00417{height:58.666667pt;}
.h3_c00417{height:69.333333pt;}
.h1_c00417{height:1134.666667pt;}
.h0_c00417{height:1134.719971pt;}
.w0_c00417{width:853.760009pt;}
.w1_c00417{width:854.000000pt;}
.x0_c00417{left:0.000000pt;}
.x92_c00417{left:163.466667pt;}
.xa6_c00417{left:164.400000pt;}
.x36_c00417{left:165.466667pt;}
.x24_c00417{left:167.333333pt;}
.x1_c00417{left:168.266667pt;}
.x1d_c00417{left:172.133333pt;}
.xa0_c00417{left:173.733333pt;}
.x3b_c00417{left:178.666667pt;}
.x8d_c00417{left:179.866667pt;}
.x73_c00417{left:180.800000pt;}
.x3_c00417{left:181.733333pt;}
.x31_c00417{left:182.666667pt;}
.xa3_c00417{left:186.800000pt;}
.x25_c00417{left:189.466667pt;}
.x55_c00417{left:190.533333pt;}
.x42_c00417{left:191.733333pt;}
.x17_c00417{left:196.133333pt;}
.x53_c00417{left:201.200000pt;}
.x26_c00417{left:203.866667pt;}
.x78_c00417{left:206.000000pt;}
.x3c_c00417{left:207.466667pt;}
.x4a_c00417{left:210.400000pt;}
.x9e_c00417{left:211.466667pt;}
.x81_c00417{left:212.400000pt;}
.x5d_c00417{left:214.400000pt;}
.x4_c00417{left:216.666667pt;}
.xa1_c00417{left:217.600000pt;}
.x89_c00417{left:219.333333pt;}
.x74_c00417{left:221.733333pt;}
.x99_c00417{left:224.000000pt;}
.x5_c00417{left:224.933333pt;}
.x7d_c00417{left:226.400000pt;}
.x68_c00417{left:227.600000pt;}
.x23_c00417{left:228.800000pt;}
.x6_c00417{left:231.600000pt;}
.x93_c00417{left:232.800000pt;}
.x79_c00417{left:233.866667pt;}
.x1e_c00417{left:234.800000pt;}
.x2c_c00417{left:236.400000pt;}
.x6e_c00417{left:237.333333pt;}
.x7_c00417{left:238.266667pt;}
.xd_c00417{left:239.733333pt;}
.x56_c00417{left:240.800000pt;}
.x80_c00417{left:241.733333pt;}
.x18_c00417{left:244.400000pt;}
.x5a_c00417{left:246.933333pt;}
.x4e_c00417{left:248.000000pt;}
.x8a_c00417{left:249.066667pt;}
.x95_c00417{left:251.466667pt;}
.x19_c00417{left:252.666667pt;}
.x62_c00417{left:253.866667pt;}
.x86_c00417{left:255.733333pt;}
.x43_c00417{left:256.800000pt;}
.xe_c00417{left:258.000000pt;}
.x8_c00417{left:260.666667pt;}
.x5e_c00417{left:262.400000pt;}
.x32_c00417{left:264.266667pt;}
.x3d_c00417{left:266.666667pt;}
.x7e_c00417{left:268.266667pt;}
.x61_c00417{left:269.200000pt;}
.x82_c00417{left:272.133333pt;}
.x2d_c00417{left:273.200000pt;}
.x69_c00417{left:274.266667pt;}
.x4f_c00417{left:277.466667pt;}
.x75_c00417{left:278.666667pt;}
.x8b_c00417{left:279.733333pt;}
.x6a_c00417{left:281.333333pt;}
.x37_c00417{left:283.333333pt;}
.xf_c00417{left:284.533333pt;}
.x33_c00417{left:285.733333pt;}
.x1a_c00417{left:287.600000pt;}
.x27_c00417{left:291.466667pt;}
.x63_c00417{left:293.200000pt;}
.x1f_c00417{left:294.266667pt;}
.x6f_c00417{left:295.200000pt;}
.x64_c00417{left:299.600000pt;}
.x58_c00417{left:300.533333pt;}
.x50_c00417{left:301.466667pt;}
.x87_c00417{left:302.400000pt;}
.x34_c00417{left:304.666667pt;}
.x5f_c00417{left:306.266667pt;}
.x3e_c00417{left:307.600000pt;}
.x9a_c00417{left:309.066667pt;}
.x51_c00417{left:310.400000pt;}
.x96_c00417{left:311.333333pt;}
.x59_c00417{left:313.333333pt;}
.x90_c00417{left:315.333333pt;}
.x10_c00417{left:318.400000pt;}
.x4b_c00417{left:320.133333pt;}
.x9c_c00417{left:322.666667pt;}
.x76_c00417{left:324.133333pt;}
.x9_c00417{left:326.533333pt;}
.x71_c00417{left:328.400000pt;}
.x7a_c00417{left:330.533333pt;}
.x4c_c00417{left:332.666667pt;}
.x6b_c00417{left:333.866667pt;}
.x11_c00417{left:335.333333pt;}
.x5b_c00417{left:337.200000pt;}
.x60_c00417{left:338.533333pt;}
.x44_c00417{left:340.000000pt;}
.x2e_c00417{left:341.333333pt;}
.x65_c00417{left:344.933333pt;}
.x20_c00417{left:346.133333pt;}
.x57_c00417{left:347.733333pt;}
.x52_c00417{left:349.066667pt;}
.x28_c00417{left:350.000000pt;}
.xa4_c00417{left:350.933333pt;}
.x4d_c00417{left:352.133333pt;}
.x35_c00417{left:353.600000pt;}
.x9f_c00417{left:355.600000pt;}
.x66_c00417{left:357.733333pt;}
.x45_c00417{left:358.933333pt;}
.x91_c00417{left:359.866667pt;}
.x8f_c00417{left:362.000000pt;}
.x12_c00417{left:363.466667pt;}
.x46_c00417{left:365.333333pt;}
.x3f_c00417{left:368.133333pt;}
.x6c_c00417{left:369.733333pt;}
.x47_c00417{left:371.466667pt;}
.x13_c00417{left:372.800000pt;}
.x9d_c00417{left:375.200000pt;}
.x38_c00417{left:377.733333pt;}
.x48_c00417{left:378.800000pt;}
.xa_c00417{left:380.933333pt;}
.x1b_c00417{left:382.000000pt;}
.x21_c00417{left:382.933333pt;}
.x29_c00417{left:384.266667pt;}
.x2_c00417{left:386.533333pt;}
.x2f_c00417{left:390.000000pt;}
.x8e_c00417{left:392.000000pt;}
.x14_c00417{left:392.933333pt;}
.x88_c00417{left:394.933333pt;}
.xb_c00417{left:396.266667pt;}
.x83_c00417{left:398.800000pt;}
.x7b_c00417{left:399.866667pt;}
.x54_c00417{left:401.200000pt;}
.x40_c00417{left:402.533333pt;}
.x49_c00417{left:403.733333pt;}
.x6d_c00417{left:407.866667pt;}
.x2a_c00417{left:409.600000pt;}
.x15_c00417{left:412.133333pt;}
.x72_c00417{left:414.800000pt;}
.x97_c00417{left:417.600000pt;}
.x22_c00417{left:418.800000pt;}
.x8c_c00417{left:420.133333pt;}
.x39_c00417{left:421.600000pt;}
.x2b_c00417{left:423.066667pt;}
.x84_c00417{left:424.400000pt;}
.x67_c00417{left:426.533333pt;}
.x41_c00417{left:428.133333pt;}
.x5c_c00417{left:429.066667pt;}
.x77_c00417{left:431.333333pt;}
.x1c_c00417{left:434.800000pt;}
.x70_c00417{left:437.066667pt;}
.xc_c00417{left:438.800000pt;}
.xa2_c00417{left:440.000000pt;}
.x9b_c00417{left:442.666667pt;}
.x85_c00417{left:445.200000pt;}
.x94_c00417{left:447.066667pt;}
.x98_c00417{left:449.600000pt;}
.x7c_c00417{left:451.066667pt;}
.x3a_c00417{left:452.266667pt;}
.x16_c00417{left:453.733333pt;}
.x30_c00417{left:455.333333pt;}
.x7f_c00417{left:460.000000pt;}
.xa5_c00417{left:469.733333pt;}
.x13b_c00417{left:481.600000pt;}
.xa7_c00417{left:482.933333pt;}
.xf2_c00417{left:483.866667pt;}
.xda_c00417{left:485.066667pt;}
.x146_c00417{left:494.666667pt;}
.x116_c00417{left:495.733333pt;}
.x143_c00417{left:497.333333pt;}
.x105_c00417{left:498.400000pt;}
.xdf_c00417{left:499.866667pt;}
.xab_c00417{left:501.066667pt;}
.x149_c00417{left:504.666667pt;}
.x121_c00417{left:507.066667pt;}
.x11d_c00417{left:508.000000pt;}
.x101_c00417{left:509.200000pt;}
.x117_c00417{left:512.000000pt;}
.xb1_c00417{left:513.333333pt;}
.x144_c00417{left:515.200000pt;}
.xf6_c00417{left:516.133333pt;}
.x14a_c00417{left:517.733333pt;}
.xe4_c00417{left:519.466667pt;}
.xbc_c00417{left:520.800000pt;}
.xf3_c00417{left:522.933333pt;}
.x13f_c00417{left:524.666667pt;}
.xfa_c00417{left:527.066667pt;}
.x12b_c00417{left:528.400000pt;}
.xb2_c00417{left:530.266667pt;}
.xe5_c00417{left:532.000000pt;}
.xcd_c00417{left:534.000000pt;}
.xd7_c00417{left:535.333333pt;}
.xfb_c00417{left:537.333333pt;}
.xc3_c00417{left:538.800000pt;}
.xa8_c00417{left:539.866667pt;}
.xec_c00417{left:542.000000pt;}
.xdb_c00417{left:543.600000pt;}
.xe1_c00417{left:544.800000pt;}
.xfe_c00417{left:547.333333pt;}
.xc4_c00417{left:548.400000pt;}
.xd3_c00417{left:551.733333pt;}
.xed_c00417{left:553.200000pt;}
.xac_c00417{left:554.800000pt;}
.x11f_c00417{left:556.000000pt;}
.x125_c00417{left:557.733333pt;}
.x12c_c00417{left:558.800000pt;}
.xd8_c00417{left:560.000000pt;}
.x147_c00417{left:560.933333pt;}
.xb3_c00417{left:562.533333pt;}
.x110_c00417{left:563.466667pt;}
.xc5_c00417{left:565.066667pt;}
.x106_c00417{left:568.133333pt;}
.x13c_c00417{left:569.866667pt;}
.x127_c00417{left:570.933333pt;}
.xfc_c00417{left:573.466667pt;}
.xbd_c00417{left:575.200000pt;}
.x10d_c00417{left:577.866667pt;}
.x135_c00417{left:579.200000pt;}
.xb4_c00417{left:581.066667pt;}
.xb8_c00417{left:583.066667pt;}
.x138_c00417{left:586.800000pt;}
.xe2_c00417{left:588.933333pt;}
.xa9_c00417{left:590.800000pt;}
.x10b_c00417{left:591.733333pt;}
.xbe_c00417{left:593.066667pt;}
.xee_c00417{left:595.733333pt;}
.xd9_c00417{left:598.133333pt;}
.x107_c00417{left:599.866667pt;}
.x120_c00417{left:602.133333pt;}
.x12d_c00417{left:603.866667pt;}
.x118_c00417{left:605.200000pt;}
.xe6_c00417{left:606.266667pt;}
.xbf_c00417{left:607.733333pt;}
.xdc_c00417{left:610.133333pt;}
.x12a_c00417{left:612.266667pt;}
.x12e_c00417{left:614.533333pt;}
.xb9_c00417{left:615.733333pt;}
.xc6_c00417{left:618.533333pt;}
.x10e_c00417{left:620.400000pt;}
.x13d_c00417{left:621.466667pt;}
.x130_c00417{left:622.933333pt;}
.x11b_c00417{left:624.133333pt;}
.x132_c00417{left:625.066667pt;}
.xf7_c00417{left:626.266667pt;}
.x139_c00417{left:629.333333pt;}
.x111_c00417{left:630.400000pt;}
.xef_c00417{left:632.533333pt;}
.xe7_c00417{left:634.400000pt;}
.xad_c00417{left:635.733333pt;}
.xe0_c00417{left:637.200000pt;}
.xaa_c00417{left:639.733333pt;}
.xce_c00417{left:640.800000pt;}
.xb5_c00417{left:641.866667pt;}
.x108_c00417{left:644.400000pt;}
.xf0_c00417{left:646.933333pt;}
.xc0_c00417{left:649.066667pt;}
.xc7_c00417{left:651.200000pt;}
.xd4_c00417{left:653.866667pt;}
.x112_c00417{left:655.733333pt;}
.x136_c00417{left:656.666667pt;}
.x119_c00417{left:660.800000pt;}
.x140_c00417{left:661.866667pt;}
.xae_c00417{left:662.933333pt;}
.x133_c00417{left:664.133333pt;}
.xff_c00417{left:666.400000pt;}
.xba_c00417{left:668.533333pt;}
.xe8_c00417{left:670.933333pt;}
.xd5_c00417{left:673.333333pt;}
.x109_c00417{left:675.066667pt;}
.xcf_c00417{left:676.933333pt;}
.xf4_c00417{left:678.800000pt;}
.x11c_c00417{left:680.400000pt;}
.xdd_c00417{left:681.600000pt;}
.xc8_c00417{left:683.466667pt;}
.x137_c00417{left:685.200000pt;}
.xe9_c00417{left:687.866667pt;}
.xf8_c00417{left:689.600000pt;}
.x11a_c00417{left:691.466667pt;}
.x128_c00417{left:692.800000pt;}
.x10a_c00417{left:694.533333pt;}
.x102_c00417{left:697.866667pt;}
.xc1_c00417{left:698.933333pt;}
.x131_c00417{left:700.133333pt;}
.xc9_c00417{left:701.333333pt;}
.x126_c00417{left:702.800000pt;}
.x13a_c00417{left:704.000000pt;}
.xb6_c00417{left:705.600000pt;}
.x100_c00417{left:706.666667pt;}
.x113_c00417{left:711.066667pt;}
.xf1_c00417{left:712.533333pt;}
.x141_c00417{left:713.733333pt;}
.xaf_c00417{left:715.466667pt;}
.x124_c00417{left:718.666667pt;}
.x10c_c00417{left:719.733333pt;}
.xd0_c00417{left:721.733333pt;}
.xe3_c00417{left:724.666667pt;}
.x10f_c00417{left:726.666667pt;}
.xea_c00417{left:727.600000pt;}
.x103_c00417{left:731.733333pt;}
.xb7_c00417{left:734.400000pt;}
.xf5_c00417{left:735.733333pt;}
.xca_c00417{left:737.200000pt;}
.x114_c00417{left:738.266667pt;}
.xd1_c00417{left:740.266667pt;}
.x129_c00417{left:742.400000pt;}
.x122_c00417{left:744.133333pt;}
.xb0_c00417{left:745.866667pt;}
.xfd_c00417{left:747.333333pt;}
.x12f_c00417{left:749.200000pt;}
.x148_c00417{left:750.133333pt;}
.xd6_c00417{left:751.733333pt;}
.xde_c00417{left:754.533333pt;}
.xeb_c00417{left:756.133333pt;}
.xf9_c00417{left:757.466667pt;}
.xbb_c00417{left:760.400000pt;}
.xc2_c00417{left:761.600000pt;}
.x145_c00417{left:762.800000pt;}
.xcb_c00417{left:764.400000pt;}
.x104_c00417{left:765.600000pt;}
.xd2_c00417{left:767.200000pt;}
.x13e_c00417{left:768.133333pt;}
.x115_c00417{left:769.333333pt;}
.x123_c00417{left:770.400000pt;}
.x11e_c00417{left:771.600000pt;}
.x134_c00417{left:773.466667pt;}
.xcc_c00417{left:775.600000pt;}
.x142_c00417{left:777.066667pt;}
}





/* 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_c00418 {
    display:none;
  }
  .loading-indicator_c00418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00418 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_c00418 { 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_c00418" -> "#page-container .classname_c00418")
 */
.pf_c00418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00418 { /* 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_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00418 { /* 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_c00418 { /* 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_c00418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00418 {overflow:visible;}
  }
}
.c_c00418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00418 { /* 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_c00418:after { /* webkit #35443 */
  content: '';
}
.t_c00418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00418 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 */
}
.__c00418 { /* 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_c00418 { /* info for Javascript */
  display:none;
}
.l_c00418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00418: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_c00418 {
    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_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00418.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_c00418 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00418;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.000000;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;}
.mb7_c00418{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mee_c00418{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00418{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m57_c00418{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m50_c00418{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00418{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m115_c00418{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m97_c00418{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me6_c00418{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m98_c00418{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m92_c00418{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00418{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m53_c00418{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00418{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m114_c00418{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m27_c00418{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00418{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00418{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00418{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m34_c00418{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m17_c00418{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m118_c00418{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.md2_c00418{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00418{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m104_c00418{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me8_c00418{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mca_c00418{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m112_c00418{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00418{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.me4_c00418{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00418{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m59_c00418{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00418{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00418{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m123_c00418{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.maf_c00418{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m111_c00418{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m7_c00418{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00418{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m51_c00418{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m65_c00418{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00418{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00418{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00418{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m122_c00418{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.me7_c00418{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mde_c00418{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00418{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00418{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m58_c00418{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m19_c00418{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md9_c00418{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m86_c00418{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m48_c00418{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00418{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m30_c00418{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m25_c00418{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m40_c00418{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m121_c00418{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m119_c00418{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m103_c00418{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m8_c00418{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m105_c00418{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m81_c00418{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00418{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00418{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00418{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m78_c00418{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mea_c00418{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00418{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.md0_c00418{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me2_c00418{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m13_c00418{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m70_c00418{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00418{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m6_c00418{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.md1_c00418{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m95_c00418{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00418{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m83_c00418{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00418{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m71_c00418{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2_c00418{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m101_c00418{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m66_c00418{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m99_c00418{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m35_c00418{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00418{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00418{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00418{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m120_c00418{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m37_c00418{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00418{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m15_c00418{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m54_c00418{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m117_c00418{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m5_c00418{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me0_c00418{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md4_c00418{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00418{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mac_c00418{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00418{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00418{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00418{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00418{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00418{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mab_c00418{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00418{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00418{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00418{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00418{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00418{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m38_c00418{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00418{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.meb_c00418{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00418{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00418{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mba_c00418{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m36_c00418{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00418{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.me5_c00418{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.me1_c00418{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.me_c00418{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00418{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m90_c00418{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m4_c00418{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00418{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00418{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00418{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m21_c00418{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00418{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m44_c00418{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma_c00418{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m23_c00418{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m77_c00418{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mae_c00418{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mce_c00418{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00418{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mad_c00418{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md8_c00418{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m26_c00418{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00418{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00418{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb_c00418{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m94_c00418{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00418{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc_c00418{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mff_c00418{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m69_c00418{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m16_c00418{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m52_c00418{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m80_c00418{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00418{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00418{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00418{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m96_c00418{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00418{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00418{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00418{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00418{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00418{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m102_c00418{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00418{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00418{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00418{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00418{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m39_c00418{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m82_c00418{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m9_c00418{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00418{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00418{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00418{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m74_c00418{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m33_c00418{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m73_c00418{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00418{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m63_c00418{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m22_c00418{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00418{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m76_c00418{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00418{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m32_c00418{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10_c00418{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md7_c00418{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00418{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m79_c00418{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mec_c00418{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.me9_c00418{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m61_c00418{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00418{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m93_c00418{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m89_c00418{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00418{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m46_c00418{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00418{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m14_c00418{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00418{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.med_c00418{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m24_c00418{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00418{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m28_c00418{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00418{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00418{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mda_c00418{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00418{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.me3_c00418{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00418{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m85_c00418{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m18_c00418{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m20_c00418{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00418{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00418{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00418{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m31_c00418{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.maa_c00418{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00418{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m107_c00418{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3_c00418{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md_c00418{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00418{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md5_c00418{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00418{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m91_c00418{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00418{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00418{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00418{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m88_c00418{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12_c00418{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m100_c00418{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00418{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m75_c00418{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m47_c00418{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);}
.mdb_c00418{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00418{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00418{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00418{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00418{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00418{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00418{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00418{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00418{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00418{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m60_c00418{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00418{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md3_c00418{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m55_c00418{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mf_c00418{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00418{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00418{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00418{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00418{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mef_c00418{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m11_c00418{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00418{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00418{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00418{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00418{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m72_c00418{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00418{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00418{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m116_c00418{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m68_c00418{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00418{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m108_c00418{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00418{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m29_c00418{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00418{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m109_c00418{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00418{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00418{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00418{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00418{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.m110_c00418{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m106_c00418{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.md6_c00418{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m87_c00418{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00418{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m42_c00418{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m84_c00418{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00418{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m64_c00418{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m67_c00418{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m41_c00418{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m113_c00418{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m49_c00418{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.m45_c00418{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m43_c00418{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00418{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m56_c00418{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00418{transform:matrix(10.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.232750,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls0_c00418{letter-spacing:0.000000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{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__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:-9.826649px;}
.ws4_c00418{word-spacing:-8.157895px;}
.ws6_c00418{word-spacing:-8.026316px;}
.ws3_c00418{word-spacing:-3.194444px;}
.ws8_c00418{word-spacing:-2.837838px;}
.wsc_c00418{word-spacing:0.000000px;}
.ws5_c00418{word-spacing:1.363636px;}
.ws9_c00418{word-spacing:2.750000px;}
.wsb_c00418{word-spacing:7.187500px;}
.wsa_c00418{word-spacing:8.750000px;}
.ws7_c00418{word-spacing:11.250000px;}
.ws1_c00418{word-spacing:11.818182px;}
.ws2_c00418{word-spacing:13.333333px;}
.fc0_c00418{color:transparent;}
.fs5_c00418{font-size:54.000000px;}
.fs3_c00418{font-size:60.000000px;}
.fs4_c00418{font-size:66.000000px;}
.fs2_c00418{font-size:72.000000px;}
.fs0_c00418{font-size:78.000000px;}
.fs1_c00418{font-size:84.000000px;}
.y0_c00418{bottom:0.000000px;}
.y6b_c00418{bottom:191.250000px;}
.y38_c00418{bottom:195.150000px;}
.y6a_c00418{bottom:205.950000px;}
.y37_c00418{bottom:209.550000px;}
.y69_c00418{bottom:220.350000px;}
.y36_c00418{bottom:223.200000px;}
.y68_c00418{bottom:234.750000px;}
.y35_c00418{bottom:237.600000px;}
.y67_c00418{bottom:249.450000px;}
.y34_c00418{bottom:252.300000px;}
.y66_c00418{bottom:264.600000px;}
.y33_c00418{bottom:266.400000px;}
.y32_c00418{bottom:280.800000px;}
.y65_c00418{bottom:287.250000px;}
.y31_c00418{bottom:295.500000px;}
.y64_c00418{bottom:304.500000px;}
.y30_c00418{bottom:309.600000px;}
.y63_c00418{bottom:322.200000px;}
.y2f_c00418{bottom:324.000000px;}
.y2e_c00418{bottom:338.400000px;}
.y62_c00418{bottom:340.200000px;}
.y2d_c00418{bottom:352.800000px;}
.y61_c00418{bottom:362.100000px;}
.y2c_c00418{bottom:367.200000px;}
.y60_c00418{bottom:380.850000px;}
.y2b_c00418{bottom:381.600000px;}
.y2a_c00418{bottom:396.000000px;}
.y5f_c00418{bottom:398.550000px;}
.y29_c00418{bottom:410.400000px;}
.y5e_c00418{bottom:416.550000px;}
.y28_c00418{bottom:424.500000px;}
.y5d_c00418{bottom:434.550000px;}
.y27_c00418{bottom:438.900000px;}
.y5c_c00418{bottom:452.250000px;}
.y26_c00418{bottom:452.550000px;}
.y25_c00418{bottom:466.650000px;}
.y5b_c00418{bottom:470.250000px;}
.y24_c00418{bottom:481.050000px;}
.y5a_c00418{bottom:487.500000px;}
.y23_c00418{bottom:495.450000px;}
.y59_c00418{bottom:506.250000px;}
.y22_c00418{bottom:509.550000px;}
.y58_c00418{bottom:523.500000px;}
.y21_c00418{bottom:524.250000px;}
.y20_c00418{bottom:538.650000px;}
.y57_c00418{bottom:546.000000px;}
.y1f_c00418{bottom:553.350000px;}
.y56_c00418{bottom:563.700000px;}
.y1e_c00418{bottom:567.000000px;}
.y1d_c00418{bottom:581.400000px;}
.y55_c00418{bottom:595.050000px;}
.y54_c00418{bottom:612.750000px;}
.y1c_c00418{bottom:625.800000px;}
.y53_c00418{bottom:630.750000px;}
.y1b_c00418{bottom:643.500000px;}
.y1a_c00418{bottom:661.200000px;}
.y52_c00418{bottom:662.400000px;}
.y19_c00418{bottom:679.200000px;}
.y51_c00418{bottom:680.700000px;}
.y18_c00418{bottom:696.900000px;}
.y50_c00418{bottom:698.400000px;}
.y4f_c00418{bottom:716.400000px;}
.y17_c00418{bottom:718.950000px;}
.y4e_c00418{bottom:733.650000px;}
.y16_c00418{bottom:736.950000px;}
.y4d_c00418{bottom:751.950000px;}
.y15_c00418{bottom:758.850000px;}
.y4c_c00418{bottom:769.650000px;}
.y14_c00418{bottom:781.500000px;}
.y13_c00418{bottom:785.400000px;}
.y4b_c00418{bottom:792.000000px;}
.y4a_c00418{bottom:810.000000px;}
.y12_c00418{bottom:813.900000px;}
.y49_c00418{bottom:828.000000px;}
.y11_c00418{bottom:844.200000px;}
.y48_c00418{bottom:846.000000px;}
.y10_c00418{bottom:862.500000px;}
.y47_c00418{bottom:863.700000px;}
.y46_c00418{bottom:881.250000px;}
.yf_c00418{bottom:892.800000px;}
.y45_c00418{bottom:899.250000px;}
.y44_c00418{bottom:916.950000px;}
.ye_c00418{bottom:920.100000px;}
.y43_c00418{bottom:934.800000px;}
.yd_c00418{bottom:938.100000px;}
.y42_c00418{bottom:952.800000px;}
.yc_c00418{bottom:955.800000px;}
.y41_c00418{bottom:970.500000px;}
.yb_c00418{bottom:973.800000px;}
.y40_c00418{bottom:988.500000px;}
.ya_c00418{bottom:991.500000px;}
.y3f_c00418{bottom:1006.350000px;}
.y9_c00418{bottom:1009.350000px;}
.y3e_c00418{bottom:1024.050000px;}
.y8_c00418{bottom:1027.050000px;}
.y3d_c00418{bottom:1042.050000px;}
.y7_c00418{bottom:1045.350000px;}
.y3c_c00418{bottom:1060.050000px;}
.y6_c00418{bottom:1062.600000px;}
.y3b_c00418{bottom:1077.750000px;}
.y5_c00418{bottom:1080.300000px;}
.y3a_c00418{bottom:1095.750000px;}
.y4_c00418{bottom:1098.300000px;}
.y39_c00418{bottom:1113.450000px;}
.y3_c00418{bottom:1116.300000px;}
.y2_c00418{bottom:1136.850000px;}
.y1_c00418{bottom:1141.500000px;}
.h7_c00418{height:54.000000px;}
.h5_c00418{height:60.000000px;}
.h6_c00418{height:66.000000px;}
.h4_c00418{height:72.000000px;}
.h2_c00418{height:78.000000px;}
.h3_c00418{height:84.000000px;}
.h0_c00418{height:1265.760040px;}
.h1_c00418{height:1266.000000px;}
.w0_c00418{width:960.480010px;}
.w1_c00418{width:960.750000px;}
.x0_c00418{left:0.000000px;}
.x98_c00418{left:63.750000px;}
.x88_c00418{left:70.950000px;}
.x79_c00418{left:72.150000px;}
.x46_c00418{left:73.500000px;}
.x29_c00418{left:74.550000px;}
.x71_c00418{left:83.250000px;}
.x68_c00418{left:87.900000px;}
.x92_c00418{left:88.950000px;}
.x86_c00418{left:90.450000px;}
.x2e_c00418{left:92.100000px;}
.x3_c00418{left:93.300000px;}
.x6d_c00418{left:96.750000px;}
.x7d_c00418{left:98.250000px;}
.xa1_c00418{left:100.050000px;}
.x90_c00418{left:102.450000px;}
.x76_c00418{left:103.800000px;}
.xa6_c00418{left:105.600000px;}
.x72_c00418{left:107.700000px;}
.x5d_c00418{left:109.200000px;}
.x50_c00418{left:110.550000px;}
.x69_c00418{left:112.800000px;}
.x15_c00418{left:113.850000px;}
.x64_c00418{left:116.250000px;}
.xa_c00418{left:118.200000px;}
.x20_c00418{left:120.750000px;}
.x8e_c00418{left:122.700000px;}
.x3a_c00418{left:123.750000px;}
.x34_c00418{left:127.950000px;}
.x95_c00418{left:129.150000px;}
.x11_c00418{left:130.650000px;}
.xa9_c00418{left:131.700000px;}
.xa4_c00418{left:132.900000px;}
.x28_c00418{left:133.950000px;}
.x4_c00418{left:137.550000px;}
.x3b_c00418{left:139.200000px;}
.x8f_c00418{left:140.700000px;}
.x63_c00418{left:144.150000px;}
.x2a_c00418{left:146.850000px;}
.xb_c00418{left:149.100000px;}
.x65_c00418{left:150.750000px;}
.x7a_c00418{left:152.400000px;}
.x4d_c00418{left:154.200000px;}
.x5e_c00418{left:155.550000px;}
.x89_c00418{left:157.350000px;}
.x7e_c00418{left:159.450000px;}
.xa7_c00418{left:160.650000px;}
.x16_c00418{left:162.450000px;}
.x73_c00418{left:164.250000px;}
.x52_c00418{left:165.900000px;}
.x7b_c00418{left:168.600000px;}
.xc_c00418{left:169.950000px;}
.x17_c00418{left:171.450000px;}
.x41_c00418{left:172.800000px;}
.x91_c00418{left:174.750000px;}
.x2b_c00418{left:175.950000px;}
.x9f_c00418{left:177.900000px;}
.x5_c00418{left:179.700000px;}
.x99_c00418{left:181.050000px;}
.x57_c00418{left:182.100000px;}
.x1d_c00418{left:184.050000px;}
.x83_c00418{left:186.000000px;}
.x42_c00418{left:187.950000px;}
.x4e_c00418{left:189.450000px;}
.x2f_c00418{left:191.100000px;}
.xaa_c00418{left:196.200000px;}
.xa5_c00418{left:197.400000px;}
.x7c_c00418{left:199.200000px;}
.x21_c00418{left:200.550000px;}
.x6_c00418{left:202.800000px;}
.x53_c00418{left:204.000000px;}
.x43_c00418{left:205.950000px;}
.x3c_c00418{left:207.600000px;}
.x35_c00418{left:208.950000px;}
.x9a_c00418{left:210.150000px;}
.x18_c00418{left:211.350000px;}
.xd_c00418{left:212.400000px;}
.x4a_c00418{left:214.200000px;}
.xa3_c00418{left:217.800000px;}
.x12_c00418{left:220.350000px;}
.x96_c00418{left:222.450000px;}
.x47_c00418{left:223.950000px;}
.x36_c00418{left:226.200000px;}
.x58_c00418{left:228.900000px;}
.x66_c00418{left:231.000000px;}
.x22_c00418{left:232.950000px;}
.xab_c00418{left:234.300000px;}
.x59_c00418{left:236.550000px;}
.x4f_c00418{left:237.750000px;}
.x84_c00418{left:241.500000px;}
.x6a_c00418{left:242.700000px;}
.x44_c00418{left:244.050000px;}
.x1e_c00418{left:250.350000px;}
.x5f_c00418{left:251.550000px;}
.x7f_c00418{left:254.550000px;}
.x51_c00418{left:256.050000px;}
.x8a_c00418{left:257.100000px;}
.x77_c00418{left:259.950000px;}
.x23_c00418{left:261.450000px;}
.x5a_c00418{left:263.250000px;}
.x61_c00418{left:265.500000px;}
.x37_c00418{left:266.550000px;}
.x30_c00418{left:268.800000px;}
.x97_c00418{left:270.750000px;}
.x45_c00418{left:273.900000px;}
.x87_c00418{left:275.700000px;}
.xa0_c00418{left:277.200000px;}
.x7_c00418{left:278.400000px;}
.x19_c00418{left:280.500000px;}
.x8b_c00418{left:281.550000px;}
.xe_c00418{left:282.600000px;}
.x54_c00418{left:283.950000px;}
.x4b_c00418{left:285.450000px;}
.x9c_c00418{left:287.400000px;}
.x31_c00418{left:288.900000px;}
.x74_c00418{left:289.950000px;}
.x81_c00418{left:291.000000px;}
.x40_c00418{left:292.050000px;}
.x24_c00418{left:297.450000px;}
.x2c_c00418{left:299.100000px;}
.x1a_c00418{left:301.050000px;}
.xf_c00418{left:303.450000px;}
.x6e_c00418{left:306.150000px;}
.x82_c00418{left:308.250000px;}
.x3d_c00418{left:310.500000px;}
.x8_c00418{left:312.900000px;}
.xac_c00418{left:314.250000px;}
.x48_c00418{left:315.450000px;}
.x6b_c00418{left:318.000000px;}
.x85_c00418{left:319.950000px;}
.x5b_c00418{left:321.150000px;}
.x32_c00418{left:322.800000px;}
.x9b_c00418{left:323.850000px;}
.x49_c00418{left:325.200000px;}
.x1f_c00418{left:326.700000px;}
.xa8_c00418{left:328.350000px;}
.x80_c00418{left:329.700000px;}
.x1_c00418{left:330.900000px;}
.xa2_c00418{left:332.250000px;}
.x38_c00418{left:334.950000px;}
.x25_c00418{left:338.100000px;}
.x9e_c00418{left:339.600000px;}
.x13_c00418{left:341.700000px;}
.x67_c00418{left:344.100000px;}
.x3e_c00418{left:346.200000px;}
.x33_c00418{left:348.000000px;}
.x94_c00418{left:349.950000px;}
.x6c_c00418{left:351.150000px;}
.x10_c00418{left:352.350000px;}
.x60_c00418{left:353.850000px;}
.x75_c00418{left:355.200000px;}
.x8c_c00418{left:357.900000px;}
.x93_c00418{left:359.250000px;}
.x6f_c00418{left:361.200000px;}
.x1b_c00418{left:362.250000px;}
.x26_c00418{left:364.050000px;}
.x78_c00418{left:366.900000px;}
.x9_c00418{left:368.700000px;}
.x3f_c00418{left:369.900000px;}
.x5c_c00418{left:373.050000px;}
.x55_c00418{left:377.550000px;}
.x1c_c00418{left:379.500000px;}
.x8d_c00418{left:381.600000px;}
.x70_c00418{left:383.550000px;}
.x39_c00418{left:386.100000px;}
.x9d_c00418{left:387.150000px;}
.x2d_c00418{left:389.850000px;}
.x62_c00418{left:392.100000px;}
.x56_c00418{left:396.600000px;}
.x14_c00418{left:402.600000px;}
.x4c_c00418{left:407.550000px;}
.x27_c00418{left:409.350000px;}
.x14c_c00418{left:428.700000px;}
.x142_c00418{left:430.200000px;}
.x11c_c00418{left:431.250000px;}
.x104_c00418{left:433.050000px;}
.x14d_c00418{left:443.850000px;}
.x145_c00418{left:447.000000px;}
.x122_c00418{left:448.050000px;}
.x11f_c00418{left:449.100000px;}
.xec_c00418{left:450.750000px;}
.xc6_c00418{left:451.800000px;}
.xad_c00418{left:452.850000px;}
.x11d_c00418{left:459.750000px;}
.x135_c00418{left:465.000000px;}
.xff_c00418{left:468.000000px;}
.xde_c00418{left:469.050000px;}
.xd5_c00418{left:470.100000px;}
.x143_c00418{left:471.300000px;}
.x11a_c00418{left:472.800000px;}
.x131_c00418{left:475.200000px;}
.xd2_c00418{left:477.150000px;}
.x113_c00418{left:478.350000px;}
.x108_c00418{left:480.450000px;}
.xbb_c00418{left:481.650000px;}
.xed_c00418{left:485.700000px;}
.x12f_c00418{left:487.050000px;}
.xd9_c00418{left:489.150000px;}
.xe7_c00418{left:491.700000px;}
.x140_c00418{left:493.500000px;}
.x11b_c00418{left:494.700000px;}
.xc0_c00418{left:495.750000px;}
.xb4_c00418{left:497.100000px;}
.xc7_c00418{left:500.400000px;}
.x124_c00418{left:501.600000px;}
.x118_c00418{left:502.950000px;}
.x138_c00418{left:505.500000px;}
.xfc_c00418{left:507.300000px;}
.xe4_c00418{left:509.400000px;}
.xf2_c00418{left:511.200000px;}
.x10e_c00418{left:512.850000px;}
.x100_c00418{left:515.850000px;}
.x149_c00418{left:516.900000px;}
.xd3_c00418{left:519.300000px;}
.x126_c00418{left:520.800000px;}
.x146_c00418{left:522.750000px;}
.xc8_c00418{left:524.100000px;}
.x12b_c00418{left:525.900000px;}
.xe5_c00418{left:527.100000px;}
.xb5_c00418{left:528.750000px;}
.x13b_c00418{left:530.250000px;}
.x110_c00418{left:533.100000px;}
.x14a_c00418{left:535.350000px;}
.xd4_c00418{left:536.550000px;}
.xce_c00418{left:537.750000px;}
.xe8_c00418{left:542.100000px;}
.xdf_c00418{left:543.900000px;}
.x13c_c00418{left:545.400000px;}
.x14b_c00418{left:546.900000px;}
.xee_c00418{left:548.100000px;}
.xae_c00418{left:551.100000px;}
.xe6_c00418{left:552.600000px;}
.x111_c00418{left:553.650000px;}
.xda_c00418{left:554.700000px;}
.x101_c00418{left:555.750000px;}
.x109_c00418{left:557.550000px;}
.xbc_c00418{left:559.050000px;}
.xb6_c00418{left:560.850000px;}
.x114_c00418{left:564.000000px;}
.x13d_c00418{left:567.300000px;}
.x12c_c00418{left:568.650000px;}
.x150_c00418{left:569.700000px;}
.x11e_c00418{left:571.050000px;}
.x115_c00418{left:573.300000px;}
.xaf_c00418{left:574.800000px;}
.xf8_c00418{left:576.750000px;}
.xbd_c00418{left:577.800000px;}
.xc9_c00418{left:578.850000px;}
.x147_c00418{left:581.100000px;}
.xe0_c00418{left:582.450000px;}
.x120_c00418{left:583.650000px;}
.xcf_c00418{left:585.900000px;}
.x10f_c00418{left:587.100000px;}
.xd6_c00418{left:589.650000px;}
.x130_c00418{left:592.500000px;}
.x127_c00418{left:594.900000px;}
.xfd_c00418{left:596.550000px;}
.xca_c00418{left:598.950000px;}
.x10a_c00418{left:600.450000px;}
.xf3_c00418{left:603.000000px;}
.x132_c00418{left:604.650000px;}
.xc1_c00418{left:606.600000px;}
.xb7_c00418{left:607.950000px;}
.xf9_c00418{left:609.900000px;}
.x152_c00418{left:611.400000px;}
.x116_c00418{left:613.650000px;}
.xb8_c00418{left:616.200000px;}
.x141_c00418{left:617.700000px;}
.x105_c00418{left:619.350000px;}
.xe1_c00418{left:621.000000px;}
.xb0_c00418{left:622.650000px;}
.x13e_c00418{left:623.850000px;}
.x10b_c00418{left:625.350000px;}
.xdb_c00418{left:627.000000px;}
.xc2_c00418{left:628.950000px;}
.xfa_c00418{left:631.800000px;}
.x153_c00418{left:633.750000px;}
.x123_c00418{left:635.400000px;}
.x148_c00418{left:636.900000px;}
.x133_c00418{left:639.600000px;}
.xf4_c00418{left:641.100000px;}
.xcb_c00418{left:642.900000px;}
.xc3_c00418{left:645.150000px;}
.xe2_c00418{left:646.950000px;}
.xef_c00418{left:651.150000px;}
.xb9_c00418{left:652.950000px;}
.x12d_c00418{left:654.450000px;}
.x119_c00418{left:655.650000px;}
.xd0_c00418{left:656.850000px;}
.xfe_c00418{left:659.850000px;}
.x106_c00418{left:661.500000px;}
.x14e_c00418{left:664.800000px;}
.x13a_c00418{left:666.000000px;}
.x112_c00418{left:668.100000px;}
.xe9_c00418{left:669.900000px;}
.x13f_c00418{left:672.450000px;}
.x125_c00418{left:673.800000px;}
.x102_c00418{left:676.050000px;}
.xf0_c00418{left:678.450000px;}
.xfb_c00418{left:680.100000px;}
.xdc_c00418{left:682.050000px;}
.x144_c00418{left:683.850000px;}
.x10c_c00418{left:685.800000px;}
.xbe_c00418{left:689.100000px;}
.x128_c00418{left:691.050000px;}
.xd7_c00418{left:693.750000px;}
.xea_c00418{left:695.100000px;}
.xf5_c00418{left:696.150000px;}
.x134_c00418{left:700.500000px;}
.xcc_c00418{left:702.300000px;}
.xb1_c00418{left:704.400000px;}
.x129_c00418{left:706.200000px;}
.x121_c00418{left:707.700000px;}
.xdd_c00418{left:708.750000px;}
.xeb_c00418{left:710.250000px;}
.x103_c00418{left:712.050000px;}
.x136_c00418{left:714.000000px;}
.xc4_c00418{left:716.100000px;}
.x117_c00418{left:718.650000px;}
.xd1_c00418{left:720.150000px;}
.xcd_c00418{left:722.100000px;}
.x107_c00418{left:723.450000px;}
.x14f_c00418{left:724.500000px;}
.xb2_c00418{left:726.750000px;}
.xbf_c00418{left:730.500000px;}
.x139_c00418{left:732.600000px;}
.xf6_c00418{left:733.650000px;}
.xf1_c00418{left:735.300000px;}
.xba_c00418{left:736.800000px;}
.x12e_c00418{left:738.000000px;}
.x12a_c00418{left:740.400000px;}
.x2_c00418{left:743.850000px;}
.xb3_c00418{left:745.050000px;}
.x151_c00418{left:746.850000px;}
.xe3_c00418{left:749.850000px;}
.xc5_c00418{left:752.100000px;}
.x10d_c00418{left:753.900000px;}
.x137_c00418{left:755.400000px;}
.xf7_c00418{left:756.750000px;}
.xd8_c00418{left:767.550000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws0_c00418{word-spacing:-8.734799pt;}
.ws4_c00418{word-spacing:-7.251462pt;}
.ws6_c00418{word-spacing:-7.134503pt;}
.ws3_c00418{word-spacing:-2.839506pt;}
.ws8_c00418{word-spacing:-2.522523pt;}
.wsc_c00418{word-spacing:0.000000pt;}
.ws5_c00418{word-spacing:1.212121pt;}
.ws9_c00418{word-spacing:2.444444pt;}
.wsb_c00418{word-spacing:6.388889pt;}
.wsa_c00418{word-spacing:7.777778pt;}
.ws7_c00418{word-spacing:10.000000pt;}
.ws1_c00418{word-spacing:10.505051pt;}
.ws2_c00418{word-spacing:11.851852pt;}
.fs5_c00418{font-size:48.000000pt;}
.fs3_c00418{font-size:53.333333pt;}
.fs4_c00418{font-size:58.666667pt;}
.fs2_c00418{font-size:64.000000pt;}
.fs0_c00418{font-size:69.333333pt;}
.fs1_c00418{font-size:74.666667pt;}
.y0_c00418{bottom:0.000000pt;}
.y6b_c00418{bottom:170.000000pt;}
.y38_c00418{bottom:173.466667pt;}
.y6a_c00418{bottom:183.066667pt;}
.y37_c00418{bottom:186.266667pt;}
.y69_c00418{bottom:195.866667pt;}
.y36_c00418{bottom:198.400000pt;}
.y68_c00418{bottom:208.666667pt;}
.y35_c00418{bottom:211.200000pt;}
.y67_c00418{bottom:221.733333pt;}
.y34_c00418{bottom:224.266667pt;}
.y66_c00418{bottom:235.200000pt;}
.y33_c00418{bottom:236.800000pt;}
.y32_c00418{bottom:249.600000pt;}
.y65_c00418{bottom:255.333333pt;}
.y31_c00418{bottom:262.666667pt;}
.y64_c00418{bottom:270.666667pt;}
.y30_c00418{bottom:275.200000pt;}
.y63_c00418{bottom:286.400000pt;}
.y2f_c00418{bottom:288.000000pt;}
.y2e_c00418{bottom:300.800000pt;}
.y62_c00418{bottom:302.400000pt;}
.y2d_c00418{bottom:313.600000pt;}
.y61_c00418{bottom:321.866667pt;}
.y2c_c00418{bottom:326.400000pt;}
.y60_c00418{bottom:338.533333pt;}
.y2b_c00418{bottom:339.200000pt;}
.y2a_c00418{bottom:352.000000pt;}
.y5f_c00418{bottom:354.266667pt;}
.y29_c00418{bottom:364.800000pt;}
.y5e_c00418{bottom:370.266667pt;}
.y28_c00418{bottom:377.333333pt;}
.y5d_c00418{bottom:386.266667pt;}
.y27_c00418{bottom:390.133333pt;}
.y5c_c00418{bottom:402.000000pt;}
.y26_c00418{bottom:402.266667pt;}
.y25_c00418{bottom:414.800000pt;}
.y5b_c00418{bottom:418.000000pt;}
.y24_c00418{bottom:427.600000pt;}
.y5a_c00418{bottom:433.333333pt;}
.y23_c00418{bottom:440.400000pt;}
.y59_c00418{bottom:450.000000pt;}
.y22_c00418{bottom:452.933333pt;}
.y58_c00418{bottom:465.333333pt;}
.y21_c00418{bottom:466.000000pt;}
.y20_c00418{bottom:478.800000pt;}
.y57_c00418{bottom:485.333333pt;}
.y1f_c00418{bottom:491.866667pt;}
.y56_c00418{bottom:501.066667pt;}
.y1e_c00418{bottom:504.000000pt;}
.y1d_c00418{bottom:516.800000pt;}
.y55_c00418{bottom:528.933333pt;}
.y54_c00418{bottom:544.666667pt;}
.y1c_c00418{bottom:556.266667pt;}
.y53_c00418{bottom:560.666667pt;}
.y1b_c00418{bottom:572.000000pt;}
.y1a_c00418{bottom:587.733333pt;}
.y52_c00418{bottom:588.800000pt;}
.y19_c00418{bottom:603.733333pt;}
.y51_c00418{bottom:605.066667pt;}
.y18_c00418{bottom:619.466667pt;}
.y50_c00418{bottom:620.800000pt;}
.y4f_c00418{bottom:636.800000pt;}
.y17_c00418{bottom:639.066667pt;}
.y4e_c00418{bottom:652.133333pt;}
.y16_c00418{bottom:655.066667pt;}
.y4d_c00418{bottom:668.400000pt;}
.y15_c00418{bottom:674.533333pt;}
.y4c_c00418{bottom:684.133333pt;}
.y14_c00418{bottom:694.666667pt;}
.y13_c00418{bottom:698.133333pt;}
.y4b_c00418{bottom:704.000000pt;}
.y4a_c00418{bottom:720.000000pt;}
.y12_c00418{bottom:723.466667pt;}
.y49_c00418{bottom:736.000000pt;}
.y11_c00418{bottom:750.400000pt;}
.y48_c00418{bottom:752.000000pt;}
.y10_c00418{bottom:766.666667pt;}
.y47_c00418{bottom:767.733333pt;}
.y46_c00418{bottom:783.333333pt;}
.yf_c00418{bottom:793.600000pt;}
.y45_c00418{bottom:799.333333pt;}
.y44_c00418{bottom:815.066667pt;}
.ye_c00418{bottom:817.866667pt;}
.y43_c00418{bottom:830.933333pt;}
.yd_c00418{bottom:833.866667pt;}
.y42_c00418{bottom:846.933333pt;}
.yc_c00418{bottom:849.600000pt;}
.y41_c00418{bottom:862.666667pt;}
.yb_c00418{bottom:865.600000pt;}
.y40_c00418{bottom:878.666667pt;}
.ya_c00418{bottom:881.333333pt;}
.y3f_c00418{bottom:894.533333pt;}
.y9_c00418{bottom:897.200000pt;}
.y3e_c00418{bottom:910.266667pt;}
.y8_c00418{bottom:912.933333pt;}
.y3d_c00418{bottom:926.266667pt;}
.y7_c00418{bottom:929.200000pt;}
.y3c_c00418{bottom:942.266667pt;}
.y6_c00418{bottom:944.533333pt;}
.y3b_c00418{bottom:958.000000pt;}
.y5_c00418{bottom:960.266667pt;}
.y3a_c00418{bottom:974.000000pt;}
.y4_c00418{bottom:976.266667pt;}
.y39_c00418{bottom:989.733333pt;}
.y3_c00418{bottom:992.266667pt;}
.y2_c00418{bottom:1010.533333pt;}
.y1_c00418{bottom:1014.666667pt;}
.h7_c00418{height:48.000000pt;}
.h5_c00418{height:53.333333pt;}
.h6_c00418{height:58.666667pt;}
.h4_c00418{height:64.000000pt;}
.h2_c00418{height:69.333333pt;}
.h3_c00418{height:74.666667pt;}
.h0_c00418{height:1125.120036pt;}
.h1_c00418{height:1125.333333pt;}
.w0_c00418{width:853.760009pt;}
.w1_c00418{width:854.000000pt;}
.x0_c00418{left:0.000000pt;}
.x98_c00418{left:56.666667pt;}
.x88_c00418{left:63.066667pt;}
.x79_c00418{left:64.133333pt;}
.x46_c00418{left:65.333333pt;}
.x29_c00418{left:66.266667pt;}
.x71_c00418{left:74.000000pt;}
.x68_c00418{left:78.133333pt;}
.x92_c00418{left:79.066667pt;}
.x86_c00418{left:80.400000pt;}
.x2e_c00418{left:81.866667pt;}
.x3_c00418{left:82.933333pt;}
.x6d_c00418{left:86.000000pt;}
.x7d_c00418{left:87.333333pt;}
.xa1_c00418{left:88.933333pt;}
.x90_c00418{left:91.066667pt;}
.x76_c00418{left:92.266667pt;}
.xa6_c00418{left:93.866667pt;}
.x72_c00418{left:95.733333pt;}
.x5d_c00418{left:97.066667pt;}
.x50_c00418{left:98.266667pt;}
.x69_c00418{left:100.266667pt;}
.x15_c00418{left:101.200000pt;}
.x64_c00418{left:103.333333pt;}
.xa_c00418{left:105.066667pt;}
.x20_c00418{left:107.333333pt;}
.x8e_c00418{left:109.066667pt;}
.x3a_c00418{left:110.000000pt;}
.x34_c00418{left:113.733333pt;}
.x95_c00418{left:114.800000pt;}
.x11_c00418{left:116.133333pt;}
.xa9_c00418{left:117.066667pt;}
.xa4_c00418{left:118.133333pt;}
.x28_c00418{left:119.066667pt;}
.x4_c00418{left:122.266667pt;}
.x3b_c00418{left:123.733333pt;}
.x8f_c00418{left:125.066667pt;}
.x63_c00418{left:128.133333pt;}
.x2a_c00418{left:130.533333pt;}
.xb_c00418{left:132.533333pt;}
.x65_c00418{left:134.000000pt;}
.x7a_c00418{left:135.466667pt;}
.x4d_c00418{left:137.066667pt;}
.x5e_c00418{left:138.266667pt;}
.x89_c00418{left:139.866667pt;}
.x7e_c00418{left:141.733333pt;}
.xa7_c00418{left:142.800000pt;}
.x16_c00418{left:144.400000pt;}
.x73_c00418{left:146.000000pt;}
.x52_c00418{left:147.466667pt;}
.x7b_c00418{left:149.866667pt;}
.xc_c00418{left:151.066667pt;}
.x17_c00418{left:152.400000pt;}
.x41_c00418{left:153.600000pt;}
.x91_c00418{left:155.333333pt;}
.x2b_c00418{left:156.400000pt;}
.x9f_c00418{left:158.133333pt;}
.x5_c00418{left:159.733333pt;}
.x99_c00418{left:160.933333pt;}
.x57_c00418{left:161.866667pt;}
.x1d_c00418{left:163.600000pt;}
.x83_c00418{left:165.333333pt;}
.x42_c00418{left:167.066667pt;}
.x4e_c00418{left:168.400000pt;}
.x2f_c00418{left:169.866667pt;}
.xaa_c00418{left:174.400000pt;}
.xa5_c00418{left:175.466667pt;}
.x7c_c00418{left:177.066667pt;}
.x21_c00418{left:178.266667pt;}
.x6_c00418{left:180.266667pt;}
.x53_c00418{left:181.333333pt;}
.x43_c00418{left:183.066667pt;}
.x3c_c00418{left:184.533333pt;}
.x35_c00418{left:185.733333pt;}
.x9a_c00418{left:186.800000pt;}
.x18_c00418{left:187.866667pt;}
.xd_c00418{left:188.800000pt;}
.x4a_c00418{left:190.400000pt;}
.xa3_c00418{left:193.600000pt;}
.x12_c00418{left:195.866667pt;}
.x96_c00418{left:197.733333pt;}
.x47_c00418{left:199.066667pt;}
.x36_c00418{left:201.066667pt;}
.x58_c00418{left:203.466667pt;}
.x66_c00418{left:205.333333pt;}
.x22_c00418{left:207.066667pt;}
.xab_c00418{left:208.266667pt;}
.x59_c00418{left:210.266667pt;}
.x4f_c00418{left:211.333333pt;}
.x84_c00418{left:214.666667pt;}
.x6a_c00418{left:215.733333pt;}
.x44_c00418{left:216.933333pt;}
.x1e_c00418{left:222.533333pt;}
.x5f_c00418{left:223.600000pt;}
.x7f_c00418{left:226.266667pt;}
.x51_c00418{left:227.600000pt;}
.x8a_c00418{left:228.533333pt;}
.x77_c00418{left:231.066667pt;}
.x23_c00418{left:232.400000pt;}
.x5a_c00418{left:234.000000pt;}
.x61_c00418{left:236.000000pt;}
.x37_c00418{left:236.933333pt;}
.x30_c00418{left:238.933333pt;}
.x97_c00418{left:240.666667pt;}
.x45_c00418{left:243.466667pt;}
.x87_c00418{left:245.066667pt;}
.xa0_c00418{left:246.400000pt;}
.x7_c00418{left:247.466667pt;}
.x19_c00418{left:249.333333pt;}
.x8b_c00418{left:250.266667pt;}
.xe_c00418{left:251.200000pt;}
.x54_c00418{left:252.400000pt;}
.x4b_c00418{left:253.733333pt;}
.x9c_c00418{left:255.466667pt;}
.x31_c00418{left:256.800000pt;}
.x74_c00418{left:257.733333pt;}
.x81_c00418{left:258.666667pt;}
.x40_c00418{left:259.600000pt;}
.x24_c00418{left:264.400000pt;}
.x2c_c00418{left:265.866667pt;}
.x1a_c00418{left:267.600000pt;}
.xf_c00418{left:269.733333pt;}
.x6e_c00418{left:272.133333pt;}
.x82_c00418{left:274.000000pt;}
.x3d_c00418{left:276.000000pt;}
.x8_c00418{left:278.133333pt;}
.xac_c00418{left:279.333333pt;}
.x48_c00418{left:280.400000pt;}
.x6b_c00418{left:282.666667pt;}
.x85_c00418{left:284.400000pt;}
.x5b_c00418{left:285.466667pt;}
.x32_c00418{left:286.933333pt;}
.x9b_c00418{left:287.866667pt;}
.x49_c00418{left:289.066667pt;}
.x1f_c00418{left:290.400000pt;}
.xa8_c00418{left:291.866667pt;}
.x80_c00418{left:293.066667pt;}
.x1_c00418{left:294.133333pt;}
.xa2_c00418{left:295.333333pt;}
.x38_c00418{left:297.733333pt;}
.x25_c00418{left:300.533333pt;}
.x9e_c00418{left:301.866667pt;}
.x13_c00418{left:303.733333pt;}
.x67_c00418{left:305.866667pt;}
.x3e_c00418{left:307.733333pt;}
.x33_c00418{left:309.333333pt;}
.x94_c00418{left:311.066667pt;}
.x6c_c00418{left:312.133333pt;}
.x10_c00418{left:313.200000pt;}
.x60_c00418{left:314.533333pt;}
.x75_c00418{left:315.733333pt;}
.x8c_c00418{left:318.133333pt;}
.x93_c00418{left:319.333333pt;}
.x6f_c00418{left:321.066667pt;}
.x1b_c00418{left:322.000000pt;}
.x26_c00418{left:323.600000pt;}
.x78_c00418{left:326.133333pt;}
.x9_c00418{left:327.733333pt;}
.x3f_c00418{left:328.800000pt;}
.x5c_c00418{left:331.600000pt;}
.x55_c00418{left:335.600000pt;}
.x1c_c00418{left:337.333333pt;}
.x8d_c00418{left:339.200000pt;}
.x70_c00418{left:340.933333pt;}
.x39_c00418{left:343.200000pt;}
.x9d_c00418{left:344.133333pt;}
.x2d_c00418{left:346.533333pt;}
.x62_c00418{left:348.533333pt;}
.x56_c00418{left:352.533333pt;}
.x14_c00418{left:357.866667pt;}
.x4c_c00418{left:362.266667pt;}
.x27_c00418{left:363.866667pt;}
.x14c_c00418{left:381.066667pt;}
.x142_c00418{left:382.400000pt;}
.x11c_c00418{left:383.333333pt;}
.x104_c00418{left:384.933333pt;}
.x14d_c00418{left:394.533333pt;}
.x145_c00418{left:397.333333pt;}
.x122_c00418{left:398.266667pt;}
.x11f_c00418{left:399.200000pt;}
.xec_c00418{left:400.666667pt;}
.xc6_c00418{left:401.600000pt;}
.xad_c00418{left:402.533333pt;}
.x11d_c00418{left:408.666667pt;}
.x135_c00418{left:413.333333pt;}
.xff_c00418{left:416.000000pt;}
.xde_c00418{left:416.933333pt;}
.xd5_c00418{left:417.866667pt;}
.x143_c00418{left:418.933333pt;}
.x11a_c00418{left:420.266667pt;}
.x131_c00418{left:422.400000pt;}
.xd2_c00418{left:424.133333pt;}
.x113_c00418{left:425.200000pt;}
.x108_c00418{left:427.066667pt;}
.xbb_c00418{left:428.133333pt;}
.xed_c00418{left:431.733333pt;}
.x12f_c00418{left:432.933333pt;}
.xd9_c00418{left:434.800000pt;}
.xe7_c00418{left:437.066667pt;}
.x140_c00418{left:438.666667pt;}
.x11b_c00418{left:439.733333pt;}
.xc0_c00418{left:440.666667pt;}
.xb4_c00418{left:441.866667pt;}
.xc7_c00418{left:444.800000pt;}
.x124_c00418{left:445.866667pt;}
.x118_c00418{left:447.066667pt;}
.x138_c00418{left:449.333333pt;}
.xfc_c00418{left:450.933333pt;}
.xe4_c00418{left:452.800000pt;}
.xf2_c00418{left:454.400000pt;}
.x10e_c00418{left:455.866667pt;}
.x100_c00418{left:458.533333pt;}
.x149_c00418{left:459.466667pt;}
.xd3_c00418{left:461.600000pt;}
.x126_c00418{left:462.933333pt;}
.x146_c00418{left:464.666667pt;}
.xc8_c00418{left:465.866667pt;}
.x12b_c00418{left:467.466667pt;}
.xe5_c00418{left:468.533333pt;}
.xb5_c00418{left:470.000000pt;}
.x13b_c00418{left:471.333333pt;}
.x110_c00418{left:473.866667pt;}
.x14a_c00418{left:475.866667pt;}
.xd4_c00418{left:476.933333pt;}
.xce_c00418{left:478.000000pt;}
.xe8_c00418{left:481.866667pt;}
.xdf_c00418{left:483.466667pt;}
.x13c_c00418{left:484.800000pt;}
.x14b_c00418{left:486.133333pt;}
.xee_c00418{left:487.200000pt;}
.xae_c00418{left:489.866667pt;}
.xe6_c00418{left:491.200000pt;}
.x111_c00418{left:492.133333pt;}
.xda_c00418{left:493.066667pt;}
.x101_c00418{left:494.000000pt;}
.x109_c00418{left:495.600000pt;}
.xbc_c00418{left:496.933333pt;}
.xb6_c00418{left:498.533333pt;}
.x114_c00418{left:501.333333pt;}
.x13d_c00418{left:504.266667pt;}
.x12c_c00418{left:505.466667pt;}
.x150_c00418{left:506.400000pt;}
.x11e_c00418{left:507.600000pt;}
.x115_c00418{left:509.600000pt;}
.xaf_c00418{left:510.933333pt;}
.xf8_c00418{left:512.666667pt;}
.xbd_c00418{left:513.600000pt;}
.xc9_c00418{left:514.533333pt;}
.x147_c00418{left:516.533333pt;}
.xe0_c00418{left:517.733333pt;}
.x120_c00418{left:518.800000pt;}
.xcf_c00418{left:520.800000pt;}
.x10f_c00418{left:521.866667pt;}
.xd6_c00418{left:524.133333pt;}
.x130_c00418{left:526.666667pt;}
.x127_c00418{left:528.800000pt;}
.xfd_c00418{left:530.266667pt;}
.xca_c00418{left:532.400000pt;}
.x10a_c00418{left:533.733333pt;}
.xf3_c00418{left:536.000000pt;}
.x132_c00418{left:537.466667pt;}
.xc1_c00418{left:539.200000pt;}
.xb7_c00418{left:540.400000pt;}
.xf9_c00418{left:542.133333pt;}
.x152_c00418{left:543.466667pt;}
.x116_c00418{left:545.466667pt;}
.xb8_c00418{left:547.733333pt;}
.x141_c00418{left:549.066667pt;}
.x105_c00418{left:550.533333pt;}
.xe1_c00418{left:552.000000pt;}
.xb0_c00418{left:553.466667pt;}
.x13e_c00418{left:554.533333pt;}
.x10b_c00418{left:555.866667pt;}
.xdb_c00418{left:557.333333pt;}
.xc2_c00418{left:559.066667pt;}
.xfa_c00418{left:561.600000pt;}
.x153_c00418{left:563.333333pt;}
.x123_c00418{left:564.800000pt;}
.x148_c00418{left:566.133333pt;}
.x133_c00418{left:568.533333pt;}
.xf4_c00418{left:569.866667pt;}
.xcb_c00418{left:571.466667pt;}
.xc3_c00418{left:573.466667pt;}
.xe2_c00418{left:575.066667pt;}
.xef_c00418{left:578.800000pt;}
.xb9_c00418{left:580.400000pt;}
.x12d_c00418{left:581.733333pt;}
.x119_c00418{left:582.800000pt;}
.xd0_c00418{left:583.866667pt;}
.xfe_c00418{left:586.533333pt;}
.x106_c00418{left:588.000000pt;}
.x14e_c00418{left:590.933333pt;}
.x13a_c00418{left:592.000000pt;}
.x112_c00418{left:593.866667pt;}
.xe9_c00418{left:595.466667pt;}
.x13f_c00418{left:597.733333pt;}
.x125_c00418{left:598.933333pt;}
.x102_c00418{left:600.933333pt;}
.xf0_c00418{left:603.066667pt;}
.xfb_c00418{left:604.533333pt;}
.xdc_c00418{left:606.266667pt;}
.x144_c00418{left:607.866667pt;}
.x10c_c00418{left:609.600000pt;}
.xbe_c00418{left:612.533333pt;}
.x128_c00418{left:614.266667pt;}
.xd7_c00418{left:616.666667pt;}
.xea_c00418{left:617.866667pt;}
.xf5_c00418{left:618.800000pt;}
.x134_c00418{left:622.666667pt;}
.xcc_c00418{left:624.266667pt;}
.xb1_c00418{left:626.133333pt;}
.x129_c00418{left:627.733333pt;}
.x121_c00418{left:629.066667pt;}
.xdd_c00418{left:630.000000pt;}
.xeb_c00418{left:631.333333pt;}
.x103_c00418{left:632.933333pt;}
.x136_c00418{left:634.666667pt;}
.xc4_c00418{left:636.533333pt;}
.x117_c00418{left:638.800000pt;}
.xd1_c00418{left:640.133333pt;}
.xcd_c00418{left:641.866667pt;}
.x107_c00418{left:643.066667pt;}
.x14f_c00418{left:644.000000pt;}
.xb2_c00418{left:646.000000pt;}
.xbf_c00418{left:649.333333pt;}
.x139_c00418{left:651.200000pt;}
.xf6_c00418{left:652.133333pt;}
.xf1_c00418{left:653.600000pt;}
.xba_c00418{left:654.933333pt;}
.x12e_c00418{left:656.000000pt;}
.x12a_c00418{left:658.133333pt;}
.x2_c00418{left:661.200000pt;}
.xb3_c00418{left:662.266667pt;}
.x151_c00418{left:663.866667pt;}
.xe3_c00418{left:666.533333pt;}
.xc5_c00418{left:668.533333pt;}
.x10d_c00418{left:670.133333pt;}
.x137_c00418{left:671.466667pt;}
.xf7_c00418{left:672.666667pt;}
.xd8_c00418{left:682.266667pt;}
}





/* 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_c00419 {
    display:none;
  }
  .loading-indicator_c00419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00419 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_c00419 { 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_c00419" -> "#page-container .classname_c00419")
 */
.pf_c00419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00419 { /* 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_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00419 { /* 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_c00419 { /* 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_c00419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00419 {overflow:visible;}
  }
}
.c_c00419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00419 { /* 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_c00419:after { /* webkit #35443 */
  content: '';
}
.t_c00419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00419 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 */
}
.__c00419 { /* 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_c00419 { /* info for Javascript */
  display:none;
}
.l_c00419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00419: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_c00419 {
    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_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00419.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_c00419 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00419;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.000000;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;}
.mf3_c00419{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m86_c00419{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00419{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mf_c00419{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me5_c00419{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00419{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00419{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m56_c00419{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m63_c00419{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m59_c00419{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.me0_c00419{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m77_c00419{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00419{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m95_c00419{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00419{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8_c00419{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00419{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00419{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00419{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m98_c00419{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00419{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m66_c00419{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m90_c00419{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m104_c00419{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00419{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m44_c00419{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00419{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00419{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00419{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00419{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00419{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m35_c00419{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m23_c00419{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m78_c00419{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00419{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00419{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00419{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00419{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mff_c00419{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m52_c00419{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m42_c00419{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m17_c00419{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00419{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00419{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m107_c00419{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.meb_c00419{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m19_c00419{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00419{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00419{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00419{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00419{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m38_c00419{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00419{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m49_c00419{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m58_c00419{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m114_c00419{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m82_c00419{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m111_c00419{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md7_c00419{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m71_c00419{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00419{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mba_c00419{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00419{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m28_c00419{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m55_c00419{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md0_c00419{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00419{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md_c00419{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mae_c00419{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00419{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00419{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md5_c00419{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.med_c00419{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m87_c00419{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00419{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00419{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00419{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m30_c00419{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m94_c00419{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m110_c00419{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00419{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m11_c00419{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00419{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m106_c00419{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00419{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me2_c00419{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00419{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m15_c00419{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00419{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00419{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m105_c00419{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00419{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m18_c00419{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m65_c00419{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m14_c00419{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m24_c00419{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00419{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00419{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m25_c00419{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m46_c00419{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m27_c00419{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m67_c00419{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00419{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m41_c00419{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00419{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00419{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00419{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00419{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md6_c00419{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00419{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m13_c00419{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00419{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me_c00419{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m36_c00419{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m79_c00419{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m10_c00419{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m75_c00419{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00419{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m100_c00419{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00419{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m92_c00419{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00419{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00419{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mab_c00419{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00419{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00419{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m64_c00419{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00419{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m113_c00419{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00419{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00419{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00419{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m69_c00419{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m51_c00419{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m21_c00419{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00419{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00419{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m12_c00419{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00419{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00419{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m43_c00419{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m45_c00419{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me3_c00419{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m57_c00419{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m39_c00419{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mee_c00419{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m61_c00419{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00419{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00419{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00419{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00419{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00419{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00419{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m96_c00419{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00419{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m48_c00419{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00419{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m62_c00419{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m80_c00419{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.md3_c00419{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m29_c00419{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m54_c00419{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m88_c00419{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00419{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00419{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m118_c00419{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m89_c00419{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m81_c00419{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m103_c00419{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb_c00419{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00419{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m16_c00419{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mc_c00419{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m74_c00419{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00419{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2_c00419{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00419{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me1_c00419{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.maf_c00419{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00419{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m47_c00419{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4_c00419{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00419{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mde_c00419{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m72_c00419{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m91_c00419{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md9_c00419{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00419{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00419{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m60_c00419{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mec_c00419{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00419{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m33_c00419{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00419{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m53_c00419{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md2_c00419{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mea_c00419{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.me7_c00419{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00419{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me9_c00419{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me6_c00419{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m119_c00419{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00419{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m85_c00419{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00419{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m112_c00419{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00419{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m37_c00419{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m101_c00419{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m93_c00419{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m109_c00419{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00419{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00419{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00419{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m34_c00419{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mce_c00419{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m70_c00419{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00419{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m73_c00419{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mad_c00419{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5_c00419{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m31_c00419{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m76_c00419{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00419{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00419{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me4_c00419{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00419{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m84_c00419{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m26_c00419{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m9_c00419{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00419{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m20_c00419{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00419{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.md1_c00419{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mca_c00419{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00419{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6_c00419{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00419{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00419{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00419{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma_c00419{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00419{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00419{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00419{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m32_c00419{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m115_c00419{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.me8_c00419{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00419{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md4_c00419{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00419{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m108_c00419{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mac_c00419{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.md8_c00419{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m102_c00419{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00419{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00419{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00419{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00419{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m117_c00419{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m68_c00419{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.maa_c00419{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m97_c00419{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m83_c00419{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m99_c00419{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00419{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00419{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00419{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00419{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m22_c00419{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mda_c00419{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m50_c00419{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00419{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00419{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40_c00419{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m116_c00419{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.mef_c00419{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00419{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00419{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00419{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00419{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00419{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls0_c00419{letter-spacing:0.000000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{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__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:-6.911765px;}
.ws3_c00419{word-spacing:-6.250000px;}
.ws7_c00419{word-spacing:0.000000px;}
.ws1_c00419{word-spacing:3.883929px;}
.ws2_c00419{word-spacing:6.117904px;}
.ws4_c00419{word-spacing:25.117479px;}
.ws6_c00419{word-spacing:28.426230px;}
.ws5_c00419{word-spacing:28.656489px;}
._0_c00419{width:61.555874px;}
.fc0_c00419{color:transparent;}
.fs6_c00419{font-size:48.000000px;}
.fs5_c00419{font-size:54.000000px;}
.fs2_c00419{font-size:60.000000px;}
.fs1_c00419{font-size:66.000000px;}
.fs4_c00419{font-size:72.000000px;}
.fs3_c00419{font-size:78.000000px;}
.fs0_c00419{font-size:102.000000px;}
.y0_c00419{bottom:0.000000px;}
.y63_c00419{bottom:169.950000px;}
.y62_c00419{bottom:189.300000px;}
.y32_c00419{bottom:193.050000px;}
.y61_c00419{bottom:207.300000px;}
.y31_c00419{bottom:210.300000px;}
.y60_c00419{bottom:225.300000px;}
.y30_c00419{bottom:231.450000px;}
.y5f_c00419{bottom:245.850000px;}
.y2f_c00419{bottom:248.400000px;}
.y5e_c00419{bottom:264.900000px;}
.y2e_c00419{bottom:279.000000px;}
.y5d_c00419{bottom:294.150000px;}
.y2d_c00419{bottom:296.700000px;}
.y2c_c00419{bottom:313.200000px;}
.y5c_c00419{bottom:331.500000px;}
.y2b_c00419{bottom:344.250000px;}
.y5b_c00419{bottom:352.500000px;}
.y2a_c00419{bottom:362.250000px;}
.y5a_c00419{bottom:370.500000px;}
.y29_c00419{bottom:379.500000px;}
.y59_c00419{bottom:392.400000px;}
.y28_c00419{bottom:397.500000px;}
.y58_c00419{bottom:410.400000px;}
.y27_c00419{bottom:415.500000px;}
.y57_c00419{bottom:428.700000px;}
.y26_c00419{bottom:437.700000px;}
.y56_c00419{bottom:447.150000px;}
.y25_c00419{bottom:455.700000px;}
.y55_c00419{bottom:468.900000px;}
.y24_c00419{bottom:473.400000px;}
.y54_c00419{bottom:486.600000px;}
.y23_c00419{bottom:495.750000px;}
.y53_c00419{bottom:504.600000px;}
.y22_c00419{bottom:513.000000px;}
.y52_c00419{bottom:522.300000px;}
.y21_c00419{bottom:531.000000px;}
.y51_c00419{bottom:540.300000px;}
.y20_c00419{bottom:549.000000px;}
.y50_c00419{bottom:558.000000px;}
.y1f_c00419{bottom:567.000000px;}
.y4f_c00419{bottom:576.000000px;}
.y1e_c00419{bottom:589.350000px;}
.y4e_c00419{bottom:597.600000px;}
.y1d_c00419{bottom:606.600000px;}
.y4d_c00419{bottom:615.900000px;}
.y1c_c00419{bottom:637.200000px;}
.y4c_c00419{bottom:651.300000px;}
.y1b_c00419{bottom:655.050000px;}
.y4b_c00419{bottom:669.300000px;}
.y1a_c00419{bottom:672.750000px;}
.y4a_c00419{bottom:687.000000px;}
.y19_c00419{bottom:690.750000px;}
.y49_c00419{bottom:705.000000px;}
.y18_c00419{bottom:708.450000px;}
.y48_c00419{bottom:722.700000px;}
.y17_c00419{bottom:726.450000px;}
.y47_c00419{bottom:740.400000px;}
.y16_c00419{bottom:744.450000px;}
.y46_c00419{bottom:758.100000px;}
.y15_c00419{bottom:762.450000px;}
.y45_c00419{bottom:775.800000px;}
.y14_c00419{bottom:780.150000px;}
.y44_c00419{bottom:793.800000px;}
.y13_c00419{bottom:798.450000px;}
.y43_c00419{bottom:811.500000px;}
.y12_c00419{bottom:815.700000px;}
.y42_c00419{bottom:829.500000px;}
.y11_c00419{bottom:834.000000px;}
.y41_c00419{bottom:847.500000px;}
.y10_c00419{bottom:851.700000px;}
.y40_c00419{bottom:865.500000px;}
.yf_c00419{bottom:869.700000px;}
.y3f_c00419{bottom:883.500000px;}
.ye_c00419{bottom:887.400000px;}
.y3e_c00419{bottom:901.050000px;}
.yd_c00419{bottom:905.400000px;}
.yc_c00419{bottom:923.100000px;}
.y3d_c00419{bottom:923.400000px;}
.yb_c00419{bottom:940.800000px;}
.y3c_c00419{bottom:941.400000px;}
.ya_c00419{bottom:958.500000px;}
.y3b_c00419{bottom:959.100000px;}
.y9_c00419{bottom:976.200000px;}
.y3a_c00419{bottom:981.450000px;}
.y8_c00419{bottom:994.200000px;}
.y39_c00419{bottom:999.750000px;}
.y7_c00419{bottom:1011.900000px;}
.y38_c00419{bottom:1017.000000px;}
.y6_c00419{bottom:1029.600000px;}
.y37_c00419{bottom:1039.650000px;}
.y5_c00419{bottom:1056.600000px;}
.y36_c00419{bottom:1056.900000px;}
.y4_c00419{bottom:1074.900000px;}
.y35_c00419{bottom:1075.200000px;}
.y3_c00419{bottom:1091.850000px;}
.y34_c00419{bottom:1092.900000px;}
.y2_c00419{bottom:1109.550000px;}
.y33_c00419{bottom:1110.600000px;}
.y1_c00419{bottom:1136.850000px;}
.h8_c00419{height:48.000000px;}
.h7_c00419{height:54.000000px;}
.h4_c00419{height:60.000000px;}
.h3_c00419{height:66.000000px;}
.h6_c00419{height:72.000000px;}
.h5_c00419{height:78.000000px;}
.h2_c00419{height:102.000000px;}
.h0_c00419{height:1267.919952px;}
.h1_c00419{height:1268.250000px;}
.w0_c00419{width:960.480010px;}
.w1_c00419{width:960.750000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:191.850000px;}
.x21_c00419{left:194.100000px;}
.xa_c00419{left:195.450000px;}
.x99_c00419{left:196.950000px;}
.x3f_c00419{left:209.400000px;}
.x12_c00419{left:210.750000px;}
.x6c_c00419{left:211.950000px;}
.x87_c00419{left:213.300000px;}
.x94_c00419{left:214.650000px;}
.x9c_c00419{left:216.000000px;}
.x9b_c00419{left:217.500000px;}
.x13_c00419{left:225.900000px;}
.x5a_c00419{left:231.750000px;}
.x69_c00419{left:234.450000px;}
.x40_c00419{left:236.400000px;}
.x8d_c00419{left:238.200000px;}
.x1f_c00419{left:239.400000px;}
.x64_c00419{left:241.200000px;}
.x5d_c00419{left:242.700000px;}
.x9a_c00419{left:244.800000px;}
.x32_c00419{left:246.450000px;}
.x4a_c00419{left:248.550000px;}
.x88_c00419{left:249.600000px;}
.x27_c00419{left:254.400000px;}
.x22_c00419{left:256.050000px;}
.x77_c00419{left:258.450000px;}
.x67_c00419{left:260.550000px;}
.x18_c00419{left:263.100000px;}
.x2c_c00419{left:264.750000px;}
.x20_c00419{left:266.100000px;}
.x33_c00419{left:268.350000px;}
.x96_c00419{left:269.550000px;}
.x85_c00419{left:271.950000px;}
.x79_c00419{left:273.150000px;}
.x39_c00419{left:274.800000px;}
.x74_c00419{left:276.600000px;}
.x65_c00419{left:278.250000px;}
.xb_c00419{left:281.100000px;}
.x7f_c00419{left:283.050000px;}
.x34_c00419{left:284.850000px;}
.x2d_c00419{left:286.050000px;}
.x51_c00419{left:288.150000px;}
.x78_c00419{left:290.850000px;}
.x41_c00419{left:293.700000px;}
.x61_c00419{left:295.200000px;}
.x89_c00419{left:298.650000px;}
.x97_c00419{left:301.950000px;}
.x46_c00419{left:303.000000px;}
.xc_c00419{left:304.500000px;}
.x72_c00419{left:307.350000px;}
.x8f_c00419{left:309.150000px;}
.x80_c00419{left:310.800000px;}
.x3a_c00419{left:312.300000px;}
.x42_c00419{left:317.400000px;}
.x4e_c00419{left:320.250000px;}
.x19_c00419{left:321.450000px;}
.x7c_c00419{left:324.750000px;}
.x54_c00419{left:326.400000px;}
.x90_c00419{left:328.950000px;}
.x3b_c00419{left:332.400000px;}
.x6a_c00419{left:333.900000px;}
.x14_c00419{left:335.400000px;}
.x23_c00419{left:337.350000px;}
.x73_c00419{left:338.700000px;}
.x55_c00419{left:340.800000px;}
.x5b_c00419{left:342.900000px;}
.x81_c00419{left:344.700000px;}
.x86_c00419{left:348.750000px;}
.x28_c00419{left:350.100000px;}
.x8a_c00419{left:354.000000px;}
.x5e_c00419{left:356.100000px;}
.x1a_c00419{left:357.150000px;}
.x24_c00419{left:358.200000px;}
.x35_c00419{left:360.150000px;}
.x43_c00419{left:361.350000px;}
.x2e_c00419{left:363.150000px;}
.x47_c00419{left:365.250000px;}
.x1b_c00419{left:366.450000px;}
.xd_c00419{left:367.800000px;}
.x52_c00419{left:369.600000px;}
.x15_c00419{left:371.400000px;}
.x62_c00419{left:374.400000px;}
.x4f_c00419{left:377.100000px;}
.x1c_c00419{left:378.300000px;}
.x82_c00419{left:381.000000px;}
.x56_c00419{left:382.200000px;}
.x3c_c00419{left:383.550000px;}
.x4b_c00419{left:386.100000px;}
.x95_c00419{left:387.750000px;}
.x7a_c00419{left:392.700000px;}
.x8b_c00419{left:394.650000px;}
.x6b_c00419{left:396.600000px;}
.x83_c00419{left:397.950000px;}
.x70_c00419{left:400.200000px;}
.x1d_c00419{left:403.200000px;}
.x29_c00419{left:404.850000px;}
.x4c_c00419{left:405.900000px;}
.x98_c00419{left:407.250000px;}
.x2f_c00419{left:412.050000px;}
.x44_c00419{left:415.050000px;}
.x5c_c00419{left:419.100000px;}
.x9d_c00419{left:420.150000px;}
.x5f_c00419{left:422.250000px;}
.x92_c00419{left:424.050000px;}
.xe_c00419{left:425.700000px;}
.x63_c00419{left:428.100000px;}
.x50_c00419{left:429.600000px;}
.x4d_c00419{left:431.850000px;}
.x7d_c00419{left:435.300000px;}
.x2_c00419{left:436.350000px;}
.x16_c00419{left:437.700000px;}
.x68_c00419{left:439.200000px;}
.x25_c00419{left:440.250000px;}
.x3d_c00419{left:441.900000px;}
.x57_c00419{left:444.450000px;}
.xf_c00419{left:445.800000px;}
.x93_c00419{left:448.950000px;}
.x48_c00419{left:450.450000px;}
.x45_c00419{left:452.100000px;}
.x75_c00419{left:453.300000px;}
.x8e_c00419{left:454.800000px;}
.x7e_c00419{left:455.850000px;}
.x36_c00419{left:457.350000px;}
.x66_c00419{left:460.050000px;}
.x3_c00419{left:462.300000px;}
.x6d_c00419{left:463.950000px;}
.x58_c00419{left:466.050000px;}
.x2a_c00419{left:468.150000px;}
.x26_c00419{left:469.350000px;}
.x53_c00419{left:471.900000px;}
.x37_c00419{left:473.850000px;}
.x1e_c00419{left:476.250000px;}
.x30_c00419{left:478.350000px;}
.x10_c00419{left:481.500000px;}
.x8c_c00419{left:482.550000px;}
.x2b_c00419{left:483.600000px;}
.x71_c00419{left:485.550000px;}
.x84_c00419{left:491.550000px;}
.x6e_c00419{left:492.750000px;}
.x31_c00419{left:493.800000px;}
.x49_c00419{left:495.450000px;}
.x3e_c00419{left:498.450000px;}
.x38_c00419{left:499.800000px;}
.x7b_c00419{left:502.200000px;}
.x4_c00419{left:505.200000px;}
.x6f_c00419{left:507.150000px;}
.x17_c00419{left:509.700000px;}
.x76_c00419{left:512.700000px;}
.x59_c00419{left:517.500000px;}
.x91_c00419{left:519.750000px;}
.x60_c00419{left:521.250000px;}
.x11_c00419{left:526.500000px;}
.x5_c00419{left:529.350000px;}
.x6_c00419{left:548.400000px;}
.xbe_c00419{left:550.500000px;}
.x10e_c00419{left:552.300000px;}
.x12b_c00419{left:553.350000px;}
.x134_c00419{left:554.400000px;}
.xc5_c00419{left:566.700000px;}
.x7_c00419{left:568.500000px;}
.xf1_c00419{left:570.150000px;}
.x11b_c00419{left:571.800000px;}
.xbf_c00419{left:574.650000px;}
.x122_c00419{left:580.200000px;}
.xeb_c00419{left:581.700000px;}
.xf2_c00419{left:583.050000px;}
.x101_c00419{left:585.000000px;}
.xd1_c00419{left:587.100000px;}
.x8_c00419{left:589.050000px;}
.x9e_c00419{left:590.100000px;}
.xc0_c00419{left:591.150000px;}
.xee_c00419{left:592.800000px;}
.x10c_c00419{left:595.800000px;}
.xe1_c00419{left:598.350000px;}
.xb4_c00419{left:601.950000px;}
.xa8_c00419{left:603.450000px;}
.xde_c00419{left:605.100000px;}
.xff_c00419{left:607.500000px;}
.x9f_c00419{left:608.850000px;}
.x9_c00419{left:610.650000px;}
.xc6_c00419{left:615.000000px;}
.x100_c00419{left:616.500000px;}
.x123_c00419{left:618.300000px;}
.xa9_c00419{left:619.350000px;}
.xfa_c00419{left:620.850000px;}
.x110_c00419{left:622.050000px;}
.xd2_c00419{left:623.850000px;}
.xf3_c00419{left:625.500000px;}
.x131_c00419{left:627.900000px;}
.xe6_c00419{left:629.550000px;}
.xbb_c00419{left:631.500000px;}
.xa0_c00419{left:634.800000px;}
.x115_c00419{left:636.300000px;}
.xd8_c00419{left:637.950000px;}
.x11c_c00419{left:639.150000px;}
.x135_c00419{left:640.500000px;}
.xaa_c00419{left:643.500000px;}
.xf4_c00419{left:647.400000px;}
.x13a_c00419{left:648.600000px;}
.x108_c00419{left:652.200000px;}
.xd9_c00419{left:655.650000px;}
.x102_c00419{left:657.000000px;}
.xb5_c00419{left:658.050000px;}
.xab_c00419{left:659.400000px;}
.xc7_c00419{left:661.050000px;}
.xcb_c00419{left:663.450000px;}
.xf7_c00419{left:666.600000px;}
.xd3_c00419{left:667.800000px;}
.xdf_c00419{left:668.850000px;}
.xe7_c00419{left:673.050000px;}
.x11a_c00419{left:675.300000px;}
.x136_c00419{left:676.800000px;}
.x116_c00419{left:679.050000px;}
.x120_c00419{left:680.850000px;}
.x10d_c00419{left:681.900000px;}
.xc8_c00419{left:684.150000px;}
.xac_c00419{left:686.400000px;}
.x12f_c00419{left:688.350000px;}
.xe2_c00419{left:689.400000px;}
.x126_c00419{left:691.050000px;}
.xd4_c00419{left:693.000000px;}
.xf5_c00419{left:694.500000px;}
.x117_c00419{left:696.300000px;}
.xc1_c00419{left:699.450000px;}
.xad_c00419{left:701.850000px;}
.xb6_c00419{left:703.050000px;}
.x11d_c00419{left:704.250000px;}
.x111_c00419{left:705.600000px;}
.x103_c00419{left:708.450000px;}
.xef_c00419{left:709.500000px;}
.x127_c00419{left:710.550000px;}
.xc2_c00419{left:712.350000px;}
.x137_c00419{left:715.350000px;}
.x109_c00419{left:716.400000px;}
.xf8_c00419{left:717.750000px;}
.x124_c00419{left:718.800000px;}
.xd5_c00419{left:720.000000px;}
.xcc_c00419{left:722.100000px;}
.xae_c00419{left:724.200000px;}
.xb7_c00419{left:725.400000px;}
.xa1_c00419{left:727.350000px;}
.x112_c00419{left:728.700000px;}
.x130_c00419{left:729.900000px;}
.x118_c00419{left:733.500000px;}
.x13b_c00419{left:736.200000px;}
.xda_c00419{left:737.700000px;}
.xe8_c00419{left:741.450000px;}
.xf9_c00419{left:742.950000px;}
.xaf_c00419{left:745.800000px;}
.xcd_c00419{left:747.000000px;}
.x105_c00419{left:748.350000px;}
.xa2_c00419{left:751.050000px;}
.x138_c00419{left:753.150000px;}
.x10a_c00419{left:754.200000px;}
.xec_c00419{left:757.050000px;}
.x12c_c00419{left:758.250000px;}
.xdb_c00419{left:759.600000px;}
.xd6_c00419{left:761.400000px;}
.xc3_c00419{left:762.450000px;}
.xfc_c00419{left:765.150000px;}
.x113_c00419{left:767.550000px;}
.xb8_c00419{left:770.100000px;}
.xa3_c00419{left:772.350000px;}
.xe0_c00419{left:774.000000px;}
.x10b_c00419{left:776.550000px;}
.xf6_c00419{left:780.150000px;}
.xe3_c00419{left:782.250000px;}
.x119_c00419{left:783.300000px;}
.xf0_c00419{left:785.100000px;}
.x12d_c00419{left:786.750000px;}
.xce_c00419{left:788.100000px;}
.xb0_c00419{left:791.100000px;}
.xd7_c00419{left:792.750000px;}
.x10f_c00419{left:795.600000px;}
.xfd_c00419{left:797.250000px;}
.x104_c00419{left:798.450000px;}
.xa4_c00419{left:799.650000px;}
.xbc_c00419{left:801.900000px;}
.x132_c00419{left:802.950000px;}
.xed_c00419{left:804.150000px;}
.xb9_c00419{left:805.800000px;}
.xdc_c00419{left:807.150000px;}
.xc4_c00419{left:808.950000px;}
.xe9_c00419{left:810.600000px;}
.x12a_c00419{left:813.600000px;}
.xc9_c00419{left:814.800000px;}
.xfe_c00419{left:818.850000px;}
.xe4_c00419{left:820.350000px;}
.xcf_c00419{left:822.000000px;}
.xea_c00419{left:824.700000px;}
.xb1_c00419{left:827.100000px;}
.xdd_c00419{left:829.050000px;}
.xba_c00419{left:830.700000px;}
.x128_c00419{left:832.950000px;}
.xa5_c00419{left:834.900000px;}
.x125_c00419{left:838.500000px;}
.x121_c00419{left:839.850000px;}
.xb2_c00419{left:841.800000px;}
.x11e_c00419{left:843.150000px;}
.xd0_c00419{left:845.700000px;}
.xa7_c00419{left:847.500000px;}
.x12e_c00419{left:849.000000px;}
.x13c_c00419{left:850.050000px;}
.xca_c00419{left:852.300000px;}
.x106_c00419{left:857.700000px;}
.xa6_c00419{left:859.350000px;}
.xbd_c00419{left:860.700000px;}
.x114_c00419{left:862.650000px;}
.xfb_c00419{left:863.850000px;}
.x129_c00419{left:866.550000px;}
.x107_c00419{left:867.750000px;}
.xb3_c00419{left:868.800000px;}
.x133_c00419{left:874.950000px;}
.x139_c00419{left:876.000000px;}
.xe5_c00419{left:877.650000px;}
.x11f_c00419{left:881.400000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws0_c00419{word-spacing:-6.143791pt;}
.ws3_c00419{word-spacing:-5.555556pt;}
.ws7_c00419{word-spacing:0.000000pt;}
.ws1_c00419{word-spacing:3.452381pt;}
.ws2_c00419{word-spacing:5.438137pt;}
.ws4_c00419{word-spacing:22.326648pt;}
.ws6_c00419{word-spacing:25.267760pt;}
.ws5_c00419{word-spacing:25.472434pt;}
._0_c00419{width:54.716332pt;}
.fs6_c00419{font-size:42.666667pt;}
.fs5_c00419{font-size:48.000000pt;}
.fs2_c00419{font-size:53.333333pt;}
.fs1_c00419{font-size:58.666667pt;}
.fs4_c00419{font-size:64.000000pt;}
.fs3_c00419{font-size:69.333333pt;}
.fs0_c00419{font-size:90.666667pt;}
.y0_c00419{bottom:0.000000pt;}
.y63_c00419{bottom:151.066667pt;}
.y62_c00419{bottom:168.266667pt;}
.y32_c00419{bottom:171.600000pt;}
.y61_c00419{bottom:184.266667pt;}
.y31_c00419{bottom:186.933333pt;}
.y60_c00419{bottom:200.266667pt;}
.y30_c00419{bottom:205.733333pt;}
.y5f_c00419{bottom:218.533333pt;}
.y2f_c00419{bottom:220.800000pt;}
.y5e_c00419{bottom:235.466667pt;}
.y2e_c00419{bottom:248.000000pt;}
.y5d_c00419{bottom:261.466667pt;}
.y2d_c00419{bottom:263.733333pt;}
.y2c_c00419{bottom:278.400000pt;}
.y5c_c00419{bottom:294.666667pt;}
.y2b_c00419{bottom:306.000000pt;}
.y5b_c00419{bottom:313.333333pt;}
.y2a_c00419{bottom:322.000000pt;}
.y5a_c00419{bottom:329.333333pt;}
.y29_c00419{bottom:337.333333pt;}
.y59_c00419{bottom:348.800000pt;}
.y28_c00419{bottom:353.333333pt;}
.y58_c00419{bottom:364.800000pt;}
.y27_c00419{bottom:369.333333pt;}
.y57_c00419{bottom:381.066667pt;}
.y26_c00419{bottom:389.066667pt;}
.y56_c00419{bottom:397.466667pt;}
.y25_c00419{bottom:405.066667pt;}
.y55_c00419{bottom:416.800000pt;}
.y24_c00419{bottom:420.800000pt;}
.y54_c00419{bottom:432.533333pt;}
.y23_c00419{bottom:440.666667pt;}
.y53_c00419{bottom:448.533333pt;}
.y22_c00419{bottom:456.000000pt;}
.y52_c00419{bottom:464.266667pt;}
.y21_c00419{bottom:472.000000pt;}
.y51_c00419{bottom:480.266667pt;}
.y20_c00419{bottom:488.000000pt;}
.y50_c00419{bottom:496.000000pt;}
.y1f_c00419{bottom:504.000000pt;}
.y4f_c00419{bottom:512.000000pt;}
.y1e_c00419{bottom:523.866667pt;}
.y4e_c00419{bottom:531.200000pt;}
.y1d_c00419{bottom:539.200000pt;}
.y4d_c00419{bottom:547.466667pt;}
.y1c_c00419{bottom:566.400000pt;}
.y4c_c00419{bottom:578.933333pt;}
.y1b_c00419{bottom:582.266667pt;}
.y4b_c00419{bottom:594.933333pt;}
.y1a_c00419{bottom:598.000000pt;}
.y4a_c00419{bottom:610.666667pt;}
.y19_c00419{bottom:614.000000pt;}
.y49_c00419{bottom:626.666667pt;}
.y18_c00419{bottom:629.733333pt;}
.y48_c00419{bottom:642.400000pt;}
.y17_c00419{bottom:645.733333pt;}
.y47_c00419{bottom:658.133333pt;}
.y16_c00419{bottom:661.733333pt;}
.y46_c00419{bottom:673.866667pt;}
.y15_c00419{bottom:677.733333pt;}
.y45_c00419{bottom:689.600000pt;}
.y14_c00419{bottom:693.466667pt;}
.y44_c00419{bottom:705.600000pt;}
.y13_c00419{bottom:709.733333pt;}
.y43_c00419{bottom:721.333333pt;}
.y12_c00419{bottom:725.066667pt;}
.y42_c00419{bottom:737.333333pt;}
.y11_c00419{bottom:741.333333pt;}
.y41_c00419{bottom:753.333333pt;}
.y10_c00419{bottom:757.066667pt;}
.y40_c00419{bottom:769.333333pt;}
.yf_c00419{bottom:773.066667pt;}
.y3f_c00419{bottom:785.333333pt;}
.ye_c00419{bottom:788.800000pt;}
.y3e_c00419{bottom:800.933333pt;}
.yd_c00419{bottom:804.800000pt;}
.yc_c00419{bottom:820.533333pt;}
.y3d_c00419{bottom:820.800000pt;}
.yb_c00419{bottom:836.266667pt;}
.y3c_c00419{bottom:836.800000pt;}
.ya_c00419{bottom:852.000000pt;}
.y3b_c00419{bottom:852.533333pt;}
.y9_c00419{bottom:867.733333pt;}
.y3a_c00419{bottom:872.400000pt;}
.y8_c00419{bottom:883.733333pt;}
.y39_c00419{bottom:888.666667pt;}
.y7_c00419{bottom:899.466667pt;}
.y38_c00419{bottom:904.000000pt;}
.y6_c00419{bottom:915.200000pt;}
.y37_c00419{bottom:924.133333pt;}
.y5_c00419{bottom:939.200000pt;}
.y36_c00419{bottom:939.466667pt;}
.y4_c00419{bottom:955.466667pt;}
.y35_c00419{bottom:955.733333pt;}
.y3_c00419{bottom:970.533333pt;}
.y34_c00419{bottom:971.466667pt;}
.y2_c00419{bottom:986.266667pt;}
.y33_c00419{bottom:987.200000pt;}
.y1_c00419{bottom:1010.533333pt;}
.h8_c00419{height:42.666667pt;}
.h7_c00419{height:48.000000pt;}
.h4_c00419{height:53.333333pt;}
.h3_c00419{height:58.666667pt;}
.h6_c00419{height:64.000000pt;}
.h5_c00419{height:69.333333pt;}
.h2_c00419{height:90.666667pt;}
.h0_c00419{height:1127.039957pt;}
.h1_c00419{height:1127.333333pt;}
.w0_c00419{width:853.760009pt;}
.w1_c00419{width:854.000000pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:170.533333pt;}
.x21_c00419{left:172.533333pt;}
.xa_c00419{left:173.733333pt;}
.x99_c00419{left:175.066667pt;}
.x3f_c00419{left:186.133333pt;}
.x12_c00419{left:187.333333pt;}
.x6c_c00419{left:188.400000pt;}
.x87_c00419{left:189.600000pt;}
.x94_c00419{left:190.800000pt;}
.x9c_c00419{left:192.000000pt;}
.x9b_c00419{left:193.333333pt;}
.x13_c00419{left:200.800000pt;}
.x5a_c00419{left:206.000000pt;}
.x69_c00419{left:208.400000pt;}
.x40_c00419{left:210.133333pt;}
.x8d_c00419{left:211.733333pt;}
.x1f_c00419{left:212.800000pt;}
.x64_c00419{left:214.400000pt;}
.x5d_c00419{left:215.733333pt;}
.x9a_c00419{left:217.600000pt;}
.x32_c00419{left:219.066667pt;}
.x4a_c00419{left:220.933333pt;}
.x88_c00419{left:221.866667pt;}
.x27_c00419{left:226.133333pt;}
.x22_c00419{left:227.600000pt;}
.x77_c00419{left:229.733333pt;}
.x67_c00419{left:231.600000pt;}
.x18_c00419{left:233.866667pt;}
.x2c_c00419{left:235.333333pt;}
.x20_c00419{left:236.533333pt;}
.x33_c00419{left:238.533333pt;}
.x96_c00419{left:239.600000pt;}
.x85_c00419{left:241.733333pt;}
.x79_c00419{left:242.800000pt;}
.x39_c00419{left:244.266667pt;}
.x74_c00419{left:245.866667pt;}
.x65_c00419{left:247.333333pt;}
.xb_c00419{left:249.866667pt;}
.x7f_c00419{left:251.600000pt;}
.x34_c00419{left:253.200000pt;}
.x2d_c00419{left:254.266667pt;}
.x51_c00419{left:256.133333pt;}
.x78_c00419{left:258.533333pt;}
.x41_c00419{left:261.066667pt;}
.x61_c00419{left:262.400000pt;}
.x89_c00419{left:265.466667pt;}
.x97_c00419{left:268.400000pt;}
.x46_c00419{left:269.333333pt;}
.xc_c00419{left:270.666667pt;}
.x72_c00419{left:273.200000pt;}
.x8f_c00419{left:274.800000pt;}
.x80_c00419{left:276.266667pt;}
.x3a_c00419{left:277.600000pt;}
.x42_c00419{left:282.133333pt;}
.x4e_c00419{left:284.666667pt;}
.x19_c00419{left:285.733333pt;}
.x7c_c00419{left:288.666667pt;}
.x54_c00419{left:290.133333pt;}
.x90_c00419{left:292.400000pt;}
.x3b_c00419{left:295.466667pt;}
.x6a_c00419{left:296.800000pt;}
.x14_c00419{left:298.133333pt;}
.x23_c00419{left:299.866667pt;}
.x73_c00419{left:301.066667pt;}
.x55_c00419{left:302.933333pt;}
.x5b_c00419{left:304.800000pt;}
.x81_c00419{left:306.400000pt;}
.x86_c00419{left:310.000000pt;}
.x28_c00419{left:311.200000pt;}
.x8a_c00419{left:314.666667pt;}
.x5e_c00419{left:316.533333pt;}
.x1a_c00419{left:317.466667pt;}
.x24_c00419{left:318.400000pt;}
.x35_c00419{left:320.133333pt;}
.x43_c00419{left:321.200000pt;}
.x2e_c00419{left:322.800000pt;}
.x47_c00419{left:324.666667pt;}
.x1b_c00419{left:325.733333pt;}
.xd_c00419{left:326.933333pt;}
.x52_c00419{left:328.533333pt;}
.x15_c00419{left:330.133333pt;}
.x62_c00419{left:332.800000pt;}
.x4f_c00419{left:335.200000pt;}
.x1c_c00419{left:336.266667pt;}
.x82_c00419{left:338.666667pt;}
.x56_c00419{left:339.733333pt;}
.x3c_c00419{left:340.933333pt;}
.x4b_c00419{left:343.200000pt;}
.x95_c00419{left:344.666667pt;}
.x7a_c00419{left:349.066667pt;}
.x8b_c00419{left:350.800000pt;}
.x6b_c00419{left:352.533333pt;}
.x83_c00419{left:353.733333pt;}
.x70_c00419{left:355.733333pt;}
.x1d_c00419{left:358.400000pt;}
.x29_c00419{left:359.866667pt;}
.x4c_c00419{left:360.800000pt;}
.x98_c00419{left:362.000000pt;}
.x2f_c00419{left:366.266667pt;}
.x44_c00419{left:368.933333pt;}
.x5c_c00419{left:372.533333pt;}
.x9d_c00419{left:373.466667pt;}
.x5f_c00419{left:375.333333pt;}
.x92_c00419{left:376.933333pt;}
.xe_c00419{left:378.400000pt;}
.x63_c00419{left:380.533333pt;}
.x50_c00419{left:381.866667pt;}
.x4d_c00419{left:383.866667pt;}
.x7d_c00419{left:386.933333pt;}
.x2_c00419{left:387.866667pt;}
.x16_c00419{left:389.066667pt;}
.x68_c00419{left:390.400000pt;}
.x25_c00419{left:391.333333pt;}
.x3d_c00419{left:392.800000pt;}
.x57_c00419{left:395.066667pt;}
.xf_c00419{left:396.266667pt;}
.x93_c00419{left:399.066667pt;}
.x48_c00419{left:400.400000pt;}
.x45_c00419{left:401.866667pt;}
.x75_c00419{left:402.933333pt;}
.x8e_c00419{left:404.266667pt;}
.x7e_c00419{left:405.200000pt;}
.x36_c00419{left:406.533333pt;}
.x66_c00419{left:408.933333pt;}
.x3_c00419{left:410.933333pt;}
.x6d_c00419{left:412.400000pt;}
.x58_c00419{left:414.266667pt;}
.x2a_c00419{left:416.133333pt;}
.x26_c00419{left:417.200000pt;}
.x53_c00419{left:419.466667pt;}
.x37_c00419{left:421.200000pt;}
.x1e_c00419{left:423.333333pt;}
.x30_c00419{left:425.200000pt;}
.x10_c00419{left:428.000000pt;}
.x8c_c00419{left:428.933333pt;}
.x2b_c00419{left:429.866667pt;}
.x71_c00419{left:431.600000pt;}
.x84_c00419{left:436.933333pt;}
.x6e_c00419{left:438.000000pt;}
.x31_c00419{left:438.933333pt;}
.x49_c00419{left:440.400000pt;}
.x3e_c00419{left:443.066667pt;}
.x38_c00419{left:444.266667pt;}
.x7b_c00419{left:446.400000pt;}
.x4_c00419{left:449.066667pt;}
.x6f_c00419{left:450.800000pt;}
.x17_c00419{left:453.066667pt;}
.x76_c00419{left:455.733333pt;}
.x59_c00419{left:460.000000pt;}
.x91_c00419{left:462.000000pt;}
.x60_c00419{left:463.333333pt;}
.x11_c00419{left:468.000000pt;}
.x5_c00419{left:470.533333pt;}
.x6_c00419{left:487.466667pt;}
.xbe_c00419{left:489.333333pt;}
.x10e_c00419{left:490.933333pt;}
.x12b_c00419{left:491.866667pt;}
.x134_c00419{left:492.800000pt;}
.xc5_c00419{left:503.733333pt;}
.x7_c00419{left:505.333333pt;}
.xf1_c00419{left:506.800000pt;}
.x11b_c00419{left:508.266667pt;}
.xbf_c00419{left:510.800000pt;}
.x122_c00419{left:515.733333pt;}
.xeb_c00419{left:517.066667pt;}
.xf2_c00419{left:518.266667pt;}
.x101_c00419{left:520.000000pt;}
.xd1_c00419{left:521.866667pt;}
.x8_c00419{left:523.600000pt;}
.x9e_c00419{left:524.533333pt;}
.xc0_c00419{left:525.466667pt;}
.xee_c00419{left:526.933333pt;}
.x10c_c00419{left:529.600000pt;}
.xe1_c00419{left:531.866667pt;}
.xb4_c00419{left:535.066667pt;}
.xa8_c00419{left:536.400000pt;}
.xde_c00419{left:537.866667pt;}
.xff_c00419{left:540.000000pt;}
.x9f_c00419{left:541.200000pt;}
.x9_c00419{left:542.800000pt;}
.xc6_c00419{left:546.666667pt;}
.x100_c00419{left:548.000000pt;}
.x123_c00419{left:549.600000pt;}
.xa9_c00419{left:550.533333pt;}
.xfa_c00419{left:551.866667pt;}
.x110_c00419{left:552.933333pt;}
.xd2_c00419{left:554.533333pt;}
.xf3_c00419{left:556.000000pt;}
.x131_c00419{left:558.133333pt;}
.xe6_c00419{left:559.600000pt;}
.xbb_c00419{left:561.333333pt;}
.xa0_c00419{left:564.266667pt;}
.x115_c00419{left:565.600000pt;}
.xd8_c00419{left:567.066667pt;}
.x11c_c00419{left:568.133333pt;}
.x135_c00419{left:569.333333pt;}
.xaa_c00419{left:572.000000pt;}
.xf4_c00419{left:575.466667pt;}
.x13a_c00419{left:576.533333pt;}
.x108_c00419{left:579.733333pt;}
.xd9_c00419{left:582.800000pt;}
.x102_c00419{left:584.000000pt;}
.xb5_c00419{left:584.933333pt;}
.xab_c00419{left:586.133333pt;}
.xc7_c00419{left:587.600000pt;}
.xcb_c00419{left:589.733333pt;}
.xf7_c00419{left:592.533333pt;}
.xd3_c00419{left:593.600000pt;}
.xdf_c00419{left:594.533333pt;}
.xe7_c00419{left:598.266667pt;}
.x11a_c00419{left:600.266667pt;}
.x136_c00419{left:601.600000pt;}
.x116_c00419{left:603.600000pt;}
.x120_c00419{left:605.200000pt;}
.x10d_c00419{left:606.133333pt;}
.xc8_c00419{left:608.133333pt;}
.xac_c00419{left:610.133333pt;}
.x12f_c00419{left:611.866667pt;}
.xe2_c00419{left:612.800000pt;}
.x126_c00419{left:614.266667pt;}
.xd4_c00419{left:616.000000pt;}
.xf5_c00419{left:617.333333pt;}
.x117_c00419{left:618.933333pt;}
.xc1_c00419{left:621.733333pt;}
.xad_c00419{left:623.866667pt;}
.xb6_c00419{left:624.933333pt;}
.x11d_c00419{left:626.000000pt;}
.x111_c00419{left:627.200000pt;}
.x103_c00419{left:629.733333pt;}
.xef_c00419{left:630.666667pt;}
.x127_c00419{left:631.600000pt;}
.xc2_c00419{left:633.200000pt;}
.x137_c00419{left:635.866667pt;}
.x109_c00419{left:636.800000pt;}
.xf8_c00419{left:638.000000pt;}
.x124_c00419{left:638.933333pt;}
.xd5_c00419{left:640.000000pt;}
.xcc_c00419{left:641.866667pt;}
.xae_c00419{left:643.733333pt;}
.xb7_c00419{left:644.800000pt;}
.xa1_c00419{left:646.533333pt;}
.x112_c00419{left:647.733333pt;}
.x130_c00419{left:648.800000pt;}
.x118_c00419{left:652.000000pt;}
.x13b_c00419{left:654.400000pt;}
.xda_c00419{left:655.733333pt;}
.xe8_c00419{left:659.066667pt;}
.xf9_c00419{left:660.400000pt;}
.xaf_c00419{left:662.933333pt;}
.xcd_c00419{left:664.000000pt;}
.x105_c00419{left:665.200000pt;}
.xa2_c00419{left:667.600000pt;}
.x138_c00419{left:669.466667pt;}
.x10a_c00419{left:670.400000pt;}
.xec_c00419{left:672.933333pt;}
.x12c_c00419{left:674.000000pt;}
.xdb_c00419{left:675.200000pt;}
.xd6_c00419{left:676.800000pt;}
.xc3_c00419{left:677.733333pt;}
.xfc_c00419{left:680.133333pt;}
.x113_c00419{left:682.266667pt;}
.xb8_c00419{left:684.533333pt;}
.xa3_c00419{left:686.533333pt;}
.xe0_c00419{left:688.000000pt;}
.x10b_c00419{left:690.266667pt;}
.xf6_c00419{left:693.466667pt;}
.xe3_c00419{left:695.333333pt;}
.x119_c00419{left:696.266667pt;}
.xf0_c00419{left:697.866667pt;}
.x12d_c00419{left:699.333333pt;}
.xce_c00419{left:700.533333pt;}
.xb0_c00419{left:703.200000pt;}
.xd7_c00419{left:704.666667pt;}
.x10f_c00419{left:707.200000pt;}
.xfd_c00419{left:708.666667pt;}
.x104_c00419{left:709.733333pt;}
.xa4_c00419{left:710.800000pt;}
.xbc_c00419{left:712.800000pt;}
.x132_c00419{left:713.733333pt;}
.xed_c00419{left:714.800000pt;}
.xb9_c00419{left:716.266667pt;}
.xdc_c00419{left:717.466667pt;}
.xc4_c00419{left:719.066667pt;}
.xe9_c00419{left:720.533333pt;}
.x12a_c00419{left:723.200000pt;}
.xc9_c00419{left:724.266667pt;}
.xfe_c00419{left:727.866667pt;}
.xe4_c00419{left:729.200000pt;}
.xcf_c00419{left:730.666667pt;}
.xea_c00419{left:733.066667pt;}
.xb1_c00419{left:735.200000pt;}
.xdd_c00419{left:736.933333pt;}
.xba_c00419{left:738.400000pt;}
.x128_c00419{left:740.400000pt;}
.xa5_c00419{left:742.133333pt;}
.x125_c00419{left:745.333333pt;}
.x121_c00419{left:746.533333pt;}
.xb2_c00419{left:748.266667pt;}
.x11e_c00419{left:749.466667pt;}
.xd0_c00419{left:751.733333pt;}
.xa7_c00419{left:753.333333pt;}
.x12e_c00419{left:754.666667pt;}
.x13c_c00419{left:755.600000pt;}
.xca_c00419{left:757.600000pt;}
.x106_c00419{left:762.400000pt;}
.xa6_c00419{left:763.866667pt;}
.xbd_c00419{left:765.066667pt;}
.x114_c00419{left:766.800000pt;}
.xfb_c00419{left:767.866667pt;}
.x129_c00419{left:770.266667pt;}
.x107_c00419{left:771.333333pt;}
.xb3_c00419{left:772.266667pt;}
.x133_c00419{left:777.733333pt;}
.x139_c00419{left:778.666667pt;}
.xe5_c00419{left:780.133333pt;}
.x11f_c00419{left:783.466667pt;}
}





/* 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_c00420 {
    display:none;
  }
  .loading-indicator_c00420.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00420 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_c00420 { 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_c00420" -> "#page-container .classname_c00420")
 */
.pf_c00420 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00420 { /* 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_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00420 { /* 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_c00420 { /* 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_c00420 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00420 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00420 {overflow:visible;}
  }
}
.c_c00420 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00420 { /* 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_c00420:after { /* webkit #35443 */
  content: '';
}
.t_c00420:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00420 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 */
}
.__c00420 { /* 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_c00420 { /* info for Javascript */
  display:none;
}
.l_c00420 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00420 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00420 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00420: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_c00420 {
    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_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00420.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_c00420 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00420;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.000000;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;}
.mb5_c00420{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m119_c00420{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m28_c00420{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00420{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m85_c00420{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.maf_c00420{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00420{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md9_c00420{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00420{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mda_c00420{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00420{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.mc_c00420{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00420{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m50_c00420{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md2_c00420{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00420{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00420{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m78_c00420{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00420{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m86_c00420{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m111_c00420{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00420{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m3_c00420{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00420{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m113_c00420{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00420{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.ma_c00420{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m89_c00420{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00420{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m9_c00420{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m17_c00420{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00420{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00420{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md0_c00420{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00420{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00420{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m37_c00420{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md4_c00420{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md_c00420{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7_c00420{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m112_c00420{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00420{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m115_c00420{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m90_c00420{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00420{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00420{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m114_c00420{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00420{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00420{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mec_c00420{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00420{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5_c00420{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m104_c00420{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00420{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m92_c00420{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00420{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me1_c00420{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m52_c00420{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mea_c00420{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00420{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00420{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00420{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00420{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00420{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m16_c00420{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m82_c00420{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00420{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m48_c00420{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00420{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m100_c00420{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md5_c00420{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m80_c00420{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m79_c00420{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m49_c00420{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00420{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00420{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb_c00420{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md6_c00420{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00420{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.med_c00420{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00420{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m118_c00420{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00420{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00420{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m55_c00420{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00420{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m117_c00420{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00420{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00420{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m76_c00420{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m25_c00420{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00420{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00420{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mf_c00420{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mde_c00420{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m65_c00420{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m36_c00420{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m51_c00420{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00420{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m31_c00420{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m24_c00420{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00420{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m88_c00420{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00420{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m32_c00420{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mac_c00420{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00420{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00420{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00420{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.meb_c00420{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m22_c00420{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md8_c00420{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me0_c00420{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00420{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m103_c00420{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.me6_c00420{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00420{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m69_c00420{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00420{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m47_c00420{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mee_c00420{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00420{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m84_c00420{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m64_c00420{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m23_c00420{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m71_c00420{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00420{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m27_c00420{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00420{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00420{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00420{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00420{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mef_c00420{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00420{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00420{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00420{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m35_c00420{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m57_c00420{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00420{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mab_c00420{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m74_c00420{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00420{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m94_c00420{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00420{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00420{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m108_c00420{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me8_c00420{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m56_c00420{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m68_c00420{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.maa_c00420{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m21_c00420{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m44_c00420{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m18_c00420{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00420{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m97_c00420{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m39_c00420{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00420{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m77_c00420{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00420{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m19_c00420{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00420{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00420{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00420{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me_c00420{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00420{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m53_c00420{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m87_c00420{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00420{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2_c00420{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m83_c00420{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00420{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m54_c00420{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m58_c00420{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00420{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00420{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00420{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m116_c00420{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md3_c00420{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m93_c00420{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4_c00420{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m43_c00420{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00420{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m41_c00420{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m33_c00420{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m106_c00420{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00420{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m34_c00420{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m96_c00420{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m67_c00420{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m107_c00420{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00420{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00420{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m46_c00420{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00420{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00420{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m63_c00420{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00420{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00420{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00420{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6_c00420{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m81_c00420{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00420{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m30_c00420{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md7_c00420{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m20_c00420{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10_c00420{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00420{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me9_c00420{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00420{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00420{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00420{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00420{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m45_c00420{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00420{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.me4_c00420{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00420{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mff_c00420{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me5_c00420{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m59_c00420{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00420{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mae_c00420{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m66_c00420{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mad_c00420{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00420{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m101_c00420{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00420{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me2_c00420{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m29_c00420{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m99_c00420{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00420{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m75_c00420{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00420{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00420{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00420{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00420{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me7_c00420{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m38_c00420{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mce_c00420{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00420{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00420{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00420{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m62_c00420{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00420{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m73_c00420{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);}
.m14_c00420{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m42_c00420{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00420{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00420{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m70_c00420{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me3_c00420{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m11_c00420{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00420{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m98_c00420{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m40_c00420{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00420{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m26_c00420{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00420{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m12_c00420{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m110_c00420{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mba_c00420{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m60_c00420{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00420{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m95_c00420{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c00420{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00420{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00420{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00420{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00420{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00420{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m105_c00420{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00420{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m91_c00420{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m102_c00420{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m109_c00420{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m61_c00420{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00420{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m72_c00420{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00420{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00420{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m15_c00420{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00420{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00420{transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);}
.mca_c00420{transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00420{transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);}
.md1_c00420{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls0_c00420{letter-spacing:0.000000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{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__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00420{word-spacing:-9.779927px;}
.ws4_c00420{word-spacing:-8.611111px;}
.ws5_c00420{word-spacing:-8.181818px;}
.ws3_c00420{word-spacing:-6.666667px;}
.wsc_c00420{word-spacing:-5.312500px;}
.ws9_c00420{word-spacing:-4.189189px;}
.ws7_c00420{word-spacing:-3.906250px;}
.wsd_c00420{word-spacing:0.000000px;}
.ws8_c00420{word-spacing:3.235294px;}
.ws0_c00420{word-spacing:5.000000px;}
.ws2_c00420{word-spacing:9.342105px;}
.ws6_c00420{word-spacing:10.892857px;}
.wsb_c00420{word-spacing:15.704520px;}
.ws1_c00420{word-spacing:20.625000px;}
.fc0_c00420{color:transparent;}
.fs6_c00420{font-size:42.000000px;}
.fs7_c00420{font-size:48.000000px;}
.fs5_c00420{font-size:54.000000px;}
.fs3_c00420{font-size:60.000000px;}
.fs2_c00420{font-size:66.000000px;}
.fs4_c00420{font-size:72.000000px;}
.fs1_c00420{font-size:84.000000px;}
.fs0_c00420{font-size:120.000000px;}
.y0_c00420{bottom:0.000000px;}
.y74_c00420{bottom:167.700000px;}
.y73_c00420{bottom:185.100000px;}
.y3e_c00420{bottom:187.200000px;}
.y3d_c00420{bottom:199.800000px;}
.y3c_c00420{bottom:210.600000px;}
.y72_c00420{bottom:214.500000px;}
.y71_c00420{bottom:228.900000px;}
.y3b_c00420{bottom:232.500000px;}
.y70_c00420{bottom:244.050000px;}
.y3a_c00420{bottom:247.200000px;}
.y6f_c00420{bottom:258.150000px;}
.y39_c00420{bottom:261.900000px;}
.y6e_c00420{bottom:272.550000px;}
.y38_c00420{bottom:276.000000px;}
.y6d_c00420{bottom:287.250000px;}
.y37_c00420{bottom:290.700000px;}
.y6c_c00420{bottom:301.650000px;}
.y36_c00420{bottom:304.800000px;}
.y6b_c00420{bottom:315.750000px;}
.y35_c00420{bottom:319.200000px;}
.y6a_c00420{bottom:330.150000px;}
.y34_c00420{bottom:333.900000px;}
.y69_c00420{bottom:344.550000px;}
.y33_c00420{bottom:348.300000px;}
.y68_c00420{bottom:358.950000px;}
.y32_c00420{bottom:363.000000px;}
.y67_c00420{bottom:373.800000px;}
.y31_c00420{bottom:377.400000px;}
.y66_c00420{bottom:388.200000px;}
.y30_c00420{bottom:392.550000px;}
.y65_c00420{bottom:402.600000px;}
.y2f_c00420{bottom:406.950000px;}
.y64_c00420{bottom:417.000000px;}
.y2e_c00420{bottom:421.650000px;}
.y63_c00420{bottom:431.400000px;}
.y2d_c00420{bottom:436.350000px;}
.y62_c00420{bottom:446.100000px;}
.y2c_c00420{bottom:450.450000px;}
.y61_c00420{bottom:460.500000px;}
.y2b_c00420{bottom:464.850000px;}
.y60_c00420{bottom:474.600000px;}
.y2a_c00420{bottom:479.250000px;}
.y5f_c00420{bottom:489.300000px;}
.y29_c00420{bottom:493.650000px;}
.y5e_c00420{bottom:503.700000px;}
.y28_c00420{bottom:508.800000px;}
.y5d_c00420{bottom:518.100000px;}
.y27_c00420{bottom:522.900000px;}
.y26_c00420{bottom:537.600000px;}
.y25_c00420{bottom:552.300000px;}
.y5c_c00420{bottom:560.250000px;}
.y24_c00420{bottom:566.400000px;}
.y5b_c00420{bottom:578.250000px;}
.y23_c00420{bottom:580.800000px;}
.y22_c00420{bottom:595.500000px;}
.y5a_c00420{bottom:595.950000px;}
.y21_c00420{bottom:609.600000px;}
.y59_c00420{bottom:614.700000px;}
.y20_c00420{bottom:626.850000px;}
.y58_c00420{bottom:631.950000px;}
.y1f_c00420{bottom:638.700000px;}
.y57_c00420{bottom:649.950000px;}
.y1e_c00420{bottom:653.100000px;}
.y56_c00420{bottom:667.950000px;}
.y1d_c00420{bottom:670.950000px;}
.y1c_c00420{bottom:685.350000px;}
.y55_c00420{bottom:685.650000px;}
.y1b_c00420{bottom:699.750000px;}
.y54_c00420{bottom:703.650000px;}
.y1a_c00420{bottom:714.450000px;}
.y53_c00420{bottom:721.350000px;}
.y19_c00420{bottom:728.850000px;}
.y52_c00420{bottom:739.350000px;}
.y18_c00420{bottom:743.250000px;}
.y51_c00420{bottom:757.350000px;}
.y17_c00420{bottom:758.400000px;}
.y16_c00420{bottom:772.050000px;}
.y50_c00420{bottom:775.350000px;}
.y15_c00420{bottom:786.450000px;}
.y4f_c00420{bottom:793.350000px;}
.y14_c00420{bottom:801.600000px;}
.y4e_c00420{bottom:811.650000px;}
.y13_c00420{bottom:815.700000px;}
.y4d_c00420{bottom:829.350000px;}
.y12_c00420{bottom:829.800000px;}
.y11_c00420{bottom:844.200000px;}
.y4c_c00420{bottom:847.350000px;}
.y10_c00420{bottom:858.600000px;}
.y4b_c00420{bottom:865.050000px;}
.yf_c00420{bottom:873.000000px;}
.y4a_c00420{bottom:882.750000px;}
.ye_c00420{bottom:887.700000px;}
.y49_c00420{bottom:901.050000px;}
.yd_c00420{bottom:902.100000px;}
.yc_c00420{bottom:916.500000px;}
.y48_c00420{bottom:923.850000px;}
.yb_c00420{bottom:930.900000px;}
.y47_c00420{bottom:941.850000px;}
.y46_c00420{bottom:958.350000px;}
.ya_c00420{bottom:965.100000px;}
.y45_c00420{bottom:972.000000px;}
.y9_c00420{bottom:983.100000px;}
.y44_c00420{bottom:996.450000px;}
.y8_c00420{bottom:1000.800000px;}
.y7_c00420{bottom:1022.850000px;}
.y43_c00420{bottom:1023.450000px;}
.y6_c00420{bottom:1041.150000px;}
.y42_c00420{bottom:1041.450000px;}
.y5_c00420{bottom:1059.150000px;}
.y41_c00420{bottom:1072.800000px;}
.y4_c00420{bottom:1080.750000px;}
.y3_c00420{bottom:1098.750000px;}
.y40_c00420{bottom:1099.500000px;}
.y2_c00420{bottom:1117.050000px;}
.y3f_c00420{bottom:1117.800000px;}
.y1_c00420{bottom:1144.050000px;}
.h8_c00420{height:42.000000px;}
.h9_c00420{height:48.000000px;}
.h7_c00420{height:54.000000px;}
.h5_c00420{height:60.000000px;}
.h4_c00420{height:66.000000px;}
.h6_c00420{height:72.000000px;}
.h3_c00420{height:84.000000px;}
.h2_c00420{height:120.000000px;}
.h0_c00420{height:1266.480010px;}
.h1_c00420{height:1266.750000px;}
.w0_c00420{width:960.480010px;}
.w1_c00420{width:960.750000px;}
.x0_c00420{left:0.000000px;}
.x27_c00420{left:84.900000px;}
.x15_c00420{left:86.100000px;}
.x67_c00420{left:87.300000px;}
.x93_c00420{left:88.650000px;}
.xa2_c00420{left:89.700000px;}
.xbd_c00420{left:93.450000px;}
.xb7_c00420{left:94.500000px;}
.x89_c00420{left:96.450000px;}
.xb6_c00420{left:98.400000px;}
.x31_c00420{left:100.800000px;}
.x3_c00420{left:102.900000px;}
.x94_c00420{left:104.850000px;}
.x80_c00420{left:105.900000px;}
.xb4_c00420{left:108.750000px;}
.x9d_c00420{left:111.900000px;}
.x76_c00420{left:112.950000px;}
.x7e_c00420{left:114.000000px;}
.x3e_c00420{left:116.400000px;}
.x44_c00420{left:117.750000px;}
.xd_c00420{left:120.600000px;}
.x79_c00420{left:121.800000px;}
.xac_c00420{left:123.000000px;}
.xa7_c00420{left:124.950000px;}
.x32_c00420{left:126.750000px;}
.xa3_c00420{left:127.800000px;}
.x16_c00420{left:129.300000px;}
.x98_c00420{left:131.250000px;}
.x4c_c00420{left:132.750000px;}
.x85_c00420{left:135.300000px;}
.xe_c00420{left:136.800000px;}
.x8a_c00420{left:138.150000px;}
.x5b_c00420{left:139.350000px;}
.x2c_c00420{left:140.700000px;}
.x6d_c00420{left:142.800000px;}
.x1d_c00420{left:144.000000px;}
.x14_c00420{left:145.350000px;}
.xa8_c00420{left:146.550000px;}
.x45_c00420{left:147.600000px;}
.x33_c00420{left:149.400000px;}
.x4_c00420{left:151.800000px;}
.xb0_c00420{left:153.000000px;}
.x21_c00420{left:155.100000px;}
.x6f_c00420{left:157.050000px;}
.xf_c00420{left:158.400000px;}
.xae_c00420{left:160.500000px;}
.x74_c00420{left:162.150000px;}
.xb1_c00420{left:163.500000px;}
.x99_c00420{left:165.000000px;}
.x3f_c00420{left:166.050000px;}
.x46_c00420{left:167.700000px;}
.x8b_c00420{left:171.300000px;}
.x68_c00420{left:173.700000px;}
.x10_c00420{left:174.900000px;}
.x3a_c00420{left:177.300000px;}
.xa9_c00420{left:178.950000px;}
.x7f_c00420{left:180.300000px;}
.xaa_c00420{left:181.350000px;}
.x9a_c00420{left:182.700000px;}
.x58_c00420{left:186.000000px;}
.x7a_c00420{left:187.050000px;}
.x34_c00420{left:188.250000px;}
.xbf_c00420{left:190.050000px;}
.x40_c00420{left:192.000000px;}
.x53_c00420{left:193.950000px;}
.x5_c00420{left:195.300000px;}
.x30_c00420{left:196.500000px;}
.x4d_c00420{left:197.550000px;}
.xbe_c00420{left:198.600000px;}
.xb8_c00420{left:199.650000px;}
.xb2_c00420{left:202.050000px;}
.x8e_c00420{left:203.700000px;}
.x62_c00420{left:207.000000px;}
.x5c_c00420{left:208.050000px;}
.x2d_c00420{left:209.100000px;}
.x91_c00420{left:211.050000px;}
.x11_c00420{left:213.450000px;}
.x4e_c00420{left:216.600000px;}
.x59_c00420{left:218.100000px;}
.x69_c00420{left:219.450000px;}
.x17_c00420{left:220.500000px;}
.xa5_c00420{left:221.850000px;}
.x77_c00420{left:223.050000px;}
.x6_c00420{left:224.400000px;}
.x86_c00420{left:226.800000px;}
.x47_c00420{left:227.850000px;}
.x9b_c00420{left:229.200000px;}
.x12_c00420{left:230.400000px;}
.x2e_c00420{left:231.450000px;}
.x63_c00420{left:234.000000px;}
.x22_c00420{left:235.350000px;}
.x18_c00420{left:237.450000px;}
.xb9_c00420{left:238.500000px;}
.x5a_c00420{left:240.000000px;}
.x3b_c00420{left:241.050000px;}
.x7b_c00420{left:242.100000px;}
.x54_c00420{left:243.300000px;}
.x81_c00420{left:246.900000px;}
.x23_c00420{left:247.950000px;}
.x70_c00420{left:249.900000px;}
.x48_c00420{left:252.300000px;}
.x9f_c00420{left:253.800000px;}
.x9c_c00420{left:255.150000px;}
.x87_c00420{left:256.350000px;}
.x92_c00420{left:257.850000px;}
.x7_c00420{left:258.900000px;}
.x75_c00420{left:260.400000px;}
.x3c_c00420{left:262.950000px;}
.x35_c00420{left:264.900000px;}
.xad_c00420{left:266.250000px;}
.xba_c00420{left:268.800000px;}
.x9e_c00420{left:270.300000px;}
.x28_c00420{left:272.850000px;}
.x19_c00420{left:274.500000px;}
.x6a_c00420{left:276.300000px;}
.x95_c00420{left:277.650000px;}
.x64_c00420{left:279.300000px;}
.x78_c00420{left:280.950000px;}
.xa0_c00420{left:282.600000px;}
.x1e_c00420{left:285.300000px;}
.x82_c00420{left:287.250000px;}
.x41_c00420{left:290.700000px;}
.x1a_c00420{left:294.000000px;}
.x8_c00420{left:295.950000px;}
.x7c_c00420{left:297.900000px;}
.xb3_c00420{left:299.250000px;}
.x5d_c00420{left:300.900000px;}
.x24_c00420{left:302.250000px;}
.x71_c00420{left:303.900000px;}
.x55_c00420{left:306.300000px;}
.x49_c00420{left:307.350000px;}
.x83_c00420{left:310.350000px;}
.x29_c00420{left:312.450000px;}
.x9_c00420{left:316.050000px;}
.x6b_c00420{left:317.700000px;}
.x36_c00420{left:319.200000px;}
.x8c_c00420{left:322.050000px;}
.x4f_c00420{left:323.400000px;}
.x65_c00420{left:324.600000px;}
.x4a_c00420{left:326.100000px;}
.x25_c00420{left:327.150000px;}
.xaf_c00420{left:328.950000px;}
.x5e_c00420{left:330.750000px;}
.x37_c00420{left:332.100000px;}
.x72_c00420{left:333.450000px;}
.x1_c00420{left:335.100000px;}
.x96_c00420{left:337.050000px;}
.x56_c00420{left:339.000000px;}
.xc0_c00420{left:340.050000px;}
.x1b_c00420{left:341.850000px;}
.xab_c00420{left:343.350000px;}
.x66_c00420{left:345.150000px;}
.x42_c00420{left:346.200000px;}
.x88_c00420{left:348.450000px;}
.x6e_c00420{left:350.850000px;}
.x5f_c00420{left:353.100000px;}
.x6c_c00420{left:355.200000px;}
.x8f_c00420{left:358.650000px;}
.x13_c00420{left:360.750000px;}
.xa_c00420{left:362.850000px;}
.x57_c00420{left:364.200000px;}
.xbb_c00420{left:365.250000px;}
.x97_c00420{left:366.600000px;}
.x50_c00420{left:368.100000px;}
.x2a_c00420{left:369.300000px;}
.x38_c00420{left:370.950000px;}
.xb5_c00420{left:372.300000px;}
.x3d_c00420{left:374.850000px;}
.x51_c00420{left:378.600000px;}
.x1f_c00420{left:380.250000px;}
.xb_c00420{left:382.350000px;}
.x2f_c00420{left:383.400000px;}
.x60_c00420{left:385.800000px;}
.xbc_c00420{left:387.900000px;}
.x7d_c00420{left:388.950000px;}
.x43_c00420{left:392.700000px;}
.x90_c00420{left:394.350000px;}
.x73_c00420{left:395.400000px;}
.x1c_c00420{left:397.350000px;}
.x52_c00420{left:398.400000px;}
.x8d_c00420{left:399.450000px;}
.x26_c00420{left:401.700000px;}
.x2b_c00420{left:402.750000px;}
.x20_c00420{left:403.950000px;}
.x61_c00420{left:405.300000px;}
.xa4_c00420{left:409.050000px;}
.x4b_c00420{left:410.250000px;}
.xc_c00420{left:411.450000px;}
.x39_c00420{left:413.100000px;}
.xa6_c00420{left:414.150000px;}
.x84_c00420{left:418.650000px;}
.xa1_c00420{left:421.200000px;}
.xd3_c00420{left:442.500000px;}
.xc1_c00420{left:443.850000px;}
.x164_c00420{left:445.350000px;}
.x16e_c00420{left:447.900000px;}
.xc8_c00420{left:451.650000px;}
.x16c_c00420{left:454.350000px;}
.x168_c00420{left:455.700000px;}
.x138_c00420{left:458.250000px;}
.x159_c00420{left:459.300000px;}
.xd9_c00420{left:460.350000px;}
.xf2_c00420{left:461.700000px;}
.x108_c00420{left:462.750000px;}
.x13e_c00420{left:463.950000px;}
.x16f_c00420{left:466.200000px;}
.x169_c00420{left:469.050000px;}
.xc2_c00420{left:471.150000px;}
.x143_c00420{left:473.400000px;}
.x14a_c00420{left:475.800000px;}
.x152_c00420{left:476.850000px;}
.xc9_c00420{left:478.950000px;}
.x13f_c00420{left:481.650000px;}
.x139_c00420{left:483.150000px;}
.x15c_c00420{left:485.550000px;}
.xf3_c00420{left:489.450000px;}
.xdd_c00420{left:491.400000px;}
.x15a_c00420{left:492.750000px;}
.xfa_c00420{left:495.300000px;}
.x109_c00420{left:497.700000px;}
.xf4_c00420{left:499.200000px;}
.x100_c00420{left:502.500000px;}
.x12b_c00420{left:504.000000px;}
.xe4_c00420{left:505.200000px;}
.xda_c00420{left:506.850000px;}
.x10c_c00420{left:508.050000px;}
.x101_c00420{left:511.200000px;}
.x14e_c00420{left:513.900000px;}
.xfb_c00420{left:515.400000px;}
.xca_c00420{left:517.050000px;}
.x165_c00420{left:519.150000px;}
.xf5_c00420{left:521.850000px;}
.x12c_c00420{left:523.050000px;}
.x148_c00420{left:524.250000px;}
.x133_c00420{left:525.600000px;}
.xef_c00420{left:527.550000px;}
.x105_c00420{left:529.650000px;}
.x102_c00420{left:530.700000px;}
.x114_c00420{left:533.700000px;}
.xcb_c00420{left:535.350000px;}
.x149_c00420{left:536.550000px;}
.x12f_c00420{left:537.600000px;}
.xe5_c00420{left:539.700000px;}
.x14f_c00420{left:540.900000px;}
.xf0_c00420{left:542.100000px;}
.xdb_c00420{left:543.150000px;}
.xea_c00420{left:544.200000px;}
.x15d_c00420{left:545.250000px;}
.x15f_c00420{left:547.350000px;}
.xe6_c00420{left:550.200000px;}
.x166_c00420{left:551.850000px;}
.xc3_c00420{left:552.900000px;}
.x155_c00420{left:554.250000px;}
.x115_c00420{left:555.300000px;}
.x134_c00420{left:558.000000px;}
.xde_c00420{left:560.100000px;}
.x131_c00420{left:562.350000px;}
.xfc_c00420{left:565.050000px;}
.x129_c00420{left:567.750000px;}
.x11c_c00420{left:570.900000px;}
.x162_c00420{left:572.100000px;}
.xfd_c00420{left:574.800000px;}
.x156_c00420{left:576.600000px;}
.x123_c00420{left:578.100000px;}
.xd4_c00420{left:579.300000px;}
.x153_c00420{left:581.250000px;}
.x116_c00420{left:583.350000px;}
.x103_c00420{left:584.700000px;}
.x13c_c00420{left:588.300000px;}
.x140_c00420{left:589.650000px;}
.xdc_c00420{left:591.750000px;}
.xcc_c00420{left:593.700000px;}
.x13a_c00420{left:595.200000px;}
.x135_c00420{left:596.550000px;}
.x119_c00420{left:598.500000px;}
.x157_c00420{left:599.700000px;}
.x147_c00420{left:600.900000px;}
.x125_c00420{left:602.100000px;}
.xc4_c00420{left:606.150000px;}
.x120_c00420{left:607.200000px;}
.xcd_c00420{left:608.850000px;}
.xf6_c00420{left:610.050000px;}
.x10d_c00420{left:611.700000px;}
.xe7_c00420{left:612.900000px;}
.xd2_c00420{left:616.950000px;}
.xeb_c00420{left:618.000000px;}
.x150_c00420{left:620.400000px;}
.x126_c00420{left:622.650000px;}
.x110_c00420{left:623.700000px;}
.x144_c00420{left:625.800000px;}
.x158_c00420{left:628.200000px;}
.x136_c00420{left:630.000000px;}
.xdf_c00420{left:632.850000px;}
.x124_c00420{left:633.900000px;}
.x15b_c00420{left:635.100000px;}
.x132_c00420{left:637.950000px;}
.x160_c00420{left:639.300000px;}
.x167_c00420{left:640.650000px;}
.xec_c00420{left:641.700000px;}
.x13b_c00420{left:642.750000px;}
.x111_c00420{left:643.800000px;}
.xd5_c00420{left:646.950000px;}
.x11d_c00420{left:648.300000px;}
.x117_c00420{left:649.950000px;}
.x141_c00420{left:651.900000px;}
.x11a_c00420{left:653.550000px;}
.xd6_c00420{left:658.050000px;}
.x118_c00420{left:659.700000px;}
.xce_c00420{left:661.350000px;}
.xc5_c00420{left:664.050000px;}
.x121_c00420{left:665.250000px;}
.x14b_c00420{left:666.600000px;}
.x11e_c00420{left:668.100000px;}
.x15e_c00420{left:671.400000px;}
.xcf_c00420{left:673.950000px;}
.x106_c00420{left:676.050000px;}
.x13d_c00420{left:677.250000px;}
.x128_c00420{left:679.050000px;}
.xed_c00420{left:680.550000px;}
.x145_c00420{left:681.600000px;}
.xf7_c00420{left:682.800000px;}
.xc6_c00420{left:685.650000px;}
.x112_c00420{left:686.700000px;}
.xfe_c00420{left:690.750000px;}
.xe0_c00420{left:693.750000px;}
.x10a_c00420{left:698.250000px;}
.xf8_c00420{left:700.050000px;}
.xd7_c00420{left:702.300000px;}
.xee_c00420{left:703.650000px;}
.xd0_c00420{left:706.650000px;}
.xe8_c00420{left:707.700000px;}
.x14c_c00420{left:709.800000px;}
.x137_c00420{left:711.300000px;}
.x107_c00420{left:713.550000px;}
.x12d_c00420{left:714.900000px;}
.xe1_c00420{left:718.200000px;}
.x12a_c00420{left:719.700000px;}
.x16a_c00420{left:720.750000px;}
.xf9_c00420{left:722.400000px;}
.x127_c00420{left:723.450000px;}
.xd1_c00420{left:724.950000px;}
.x130_c00420{left:726.150000px;}
.xe9_c00420{left:728.250000px;}
.x10e_c00420{left:729.450000px;}
.x104_c00420{left:730.800000px;}
.x122_c00420{left:732.150000px;}
.xff_c00420{left:733.200000px;}
.x16b_c00420{left:735.150000px;}
.x151_c00420{left:736.800000px;}
.xc7_c00420{left:738.600000px;}
.xf1_c00420{left:739.650000px;}
.x142_c00420{left:740.850000px;}
.xe2_c00420{left:742.350000px;}
.xd8_c00420{left:746.550000px;}
.x11b_c00420{left:748.950000px;}
.x2_c00420{left:750.900000px;}
.x12e_c00420{left:754.800000px;}
.x113_c00420{left:756.150000px;}
.x11f_c00420{left:758.100000px;}
.x161_c00420{left:761.550000px;}
.xe3_c00420{left:763.200000px;}
.x154_c00420{left:765.900000px;}
.x14d_c00420{left:768.900000px;}
.x10f_c00420{left:770.100000px;}
.x16d_c00420{left:772.200000px;}
.x146_c00420{left:775.500000px;}
.x10b_c00420{left:777.000000px;}
.x163_c00420{left:792.000000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls0_c00420{letter-spacing:0.000000pt;}
.wsa_c00420{word-spacing:-8.693269pt;}
.ws4_c00420{word-spacing:-7.654321pt;}
.ws5_c00420{word-spacing:-7.272727pt;}
.ws3_c00420{word-spacing:-5.925926pt;}
.wsc_c00420{word-spacing:-4.722222pt;}
.ws9_c00420{word-spacing:-3.723724pt;}
.ws7_c00420{word-spacing:-3.472222pt;}
.wsd_c00420{word-spacing:0.000000pt;}
.ws8_c00420{word-spacing:2.875817pt;}
.ws0_c00420{word-spacing:4.444444pt;}
.ws2_c00420{word-spacing:8.304094pt;}
.ws6_c00420{word-spacing:9.682540pt;}
.wsb_c00420{word-spacing:13.959574pt;}
.ws1_c00420{word-spacing:18.333333pt;}
.fs6_c00420{font-size:37.333333pt;}
.fs7_c00420{font-size:42.666667pt;}
.fs5_c00420{font-size:48.000000pt;}
.fs3_c00420{font-size:53.333333pt;}
.fs2_c00420{font-size:58.666667pt;}
.fs4_c00420{font-size:64.000000pt;}
.fs1_c00420{font-size:74.666667pt;}
.fs0_c00420{font-size:106.666667pt;}
.y0_c00420{bottom:0.000000pt;}
.y74_c00420{bottom:149.066667pt;}
.y73_c00420{bottom:164.533333pt;}
.y3e_c00420{bottom:166.400000pt;}
.y3d_c00420{bottom:177.600000pt;}
.y3c_c00420{bottom:187.200000pt;}
.y72_c00420{bottom:190.666667pt;}
.y71_c00420{bottom:203.466667pt;}
.y3b_c00420{bottom:206.666667pt;}
.y70_c00420{bottom:216.933333pt;}
.y3a_c00420{bottom:219.733333pt;}
.y6f_c00420{bottom:229.466667pt;}
.y39_c00420{bottom:232.800000pt;}
.y6e_c00420{bottom:242.266667pt;}
.y38_c00420{bottom:245.333333pt;}
.y6d_c00420{bottom:255.333333pt;}
.y37_c00420{bottom:258.400000pt;}
.y6c_c00420{bottom:268.133333pt;}
.y36_c00420{bottom:270.933333pt;}
.y6b_c00420{bottom:280.666667pt;}
.y35_c00420{bottom:283.733333pt;}
.y6a_c00420{bottom:293.466667pt;}
.y34_c00420{bottom:296.800000pt;}
.y69_c00420{bottom:306.266667pt;}
.y33_c00420{bottom:309.600000pt;}
.y68_c00420{bottom:319.066667pt;}
.y32_c00420{bottom:322.666667pt;}
.y67_c00420{bottom:332.266667pt;}
.y31_c00420{bottom:335.466667pt;}
.y66_c00420{bottom:345.066667pt;}
.y30_c00420{bottom:348.933333pt;}
.y65_c00420{bottom:357.866667pt;}
.y2f_c00420{bottom:361.733333pt;}
.y64_c00420{bottom:370.666667pt;}
.y2e_c00420{bottom:374.800000pt;}
.y63_c00420{bottom:383.466667pt;}
.y2d_c00420{bottom:387.866667pt;}
.y62_c00420{bottom:396.533333pt;}
.y2c_c00420{bottom:400.400000pt;}
.y61_c00420{bottom:409.333333pt;}
.y2b_c00420{bottom:413.200000pt;}
.y60_c00420{bottom:421.866667pt;}
.y2a_c00420{bottom:426.000000pt;}
.y5f_c00420{bottom:434.933333pt;}
.y29_c00420{bottom:438.800000pt;}
.y5e_c00420{bottom:447.733333pt;}
.y28_c00420{bottom:452.266667pt;}
.y5d_c00420{bottom:460.533333pt;}
.y27_c00420{bottom:464.800000pt;}
.y26_c00420{bottom:477.866667pt;}
.y25_c00420{bottom:490.933333pt;}
.y5c_c00420{bottom:498.000000pt;}
.y24_c00420{bottom:503.466667pt;}
.y5b_c00420{bottom:514.000000pt;}
.y23_c00420{bottom:516.266667pt;}
.y22_c00420{bottom:529.333333pt;}
.y5a_c00420{bottom:529.733333pt;}
.y21_c00420{bottom:541.866667pt;}
.y59_c00420{bottom:546.400000pt;}
.y20_c00420{bottom:557.200000pt;}
.y58_c00420{bottom:561.733333pt;}
.y1f_c00420{bottom:567.733333pt;}
.y57_c00420{bottom:577.733333pt;}
.y1e_c00420{bottom:580.533333pt;}
.y56_c00420{bottom:593.733333pt;}
.y1d_c00420{bottom:596.400000pt;}
.y1c_c00420{bottom:609.200000pt;}
.y55_c00420{bottom:609.466667pt;}
.y1b_c00420{bottom:622.000000pt;}
.y54_c00420{bottom:625.466667pt;}
.y1a_c00420{bottom:635.066667pt;}
.y53_c00420{bottom:641.200000pt;}
.y19_c00420{bottom:647.866667pt;}
.y52_c00420{bottom:657.200000pt;}
.y18_c00420{bottom:660.666667pt;}
.y51_c00420{bottom:673.200000pt;}
.y17_c00420{bottom:674.133333pt;}
.y16_c00420{bottom:686.266667pt;}
.y50_c00420{bottom:689.200000pt;}
.y15_c00420{bottom:699.066667pt;}
.y4f_c00420{bottom:705.200000pt;}
.y14_c00420{bottom:712.533333pt;}
.y4e_c00420{bottom:721.466667pt;}
.y13_c00420{bottom:725.066667pt;}
.y4d_c00420{bottom:737.200000pt;}
.y12_c00420{bottom:737.600000pt;}
.y11_c00420{bottom:750.400000pt;}
.y4c_c00420{bottom:753.200000pt;}
.y10_c00420{bottom:763.200000pt;}
.y4b_c00420{bottom:768.933333pt;}
.yf_c00420{bottom:776.000000pt;}
.y4a_c00420{bottom:784.666667pt;}
.ye_c00420{bottom:789.066667pt;}
.y49_c00420{bottom:800.933333pt;}
.yd_c00420{bottom:801.866667pt;}
.yc_c00420{bottom:814.666667pt;}
.y48_c00420{bottom:821.200000pt;}
.yb_c00420{bottom:827.466667pt;}
.y47_c00420{bottom:837.200000pt;}
.y46_c00420{bottom:851.866667pt;}
.ya_c00420{bottom:857.866667pt;}
.y45_c00420{bottom:864.000000pt;}
.y9_c00420{bottom:873.866667pt;}
.y44_c00420{bottom:885.733333pt;}
.y8_c00420{bottom:889.600000pt;}
.y7_c00420{bottom:909.200000pt;}
.y43_c00420{bottom:909.733333pt;}
.y6_c00420{bottom:925.466667pt;}
.y42_c00420{bottom:925.733333pt;}
.y5_c00420{bottom:941.466667pt;}
.y41_c00420{bottom:953.600000pt;}
.y4_c00420{bottom:960.666667pt;}
.y3_c00420{bottom:976.666667pt;}
.y40_c00420{bottom:977.333333pt;}
.y2_c00420{bottom:992.933333pt;}
.y3f_c00420{bottom:993.600000pt;}
.y1_c00420{bottom:1016.933333pt;}
.h8_c00420{height:37.333333pt;}
.h9_c00420{height:42.666667pt;}
.h7_c00420{height:48.000000pt;}
.h5_c00420{height:53.333333pt;}
.h4_c00420{height:58.666667pt;}
.h6_c00420{height:64.000000pt;}
.h3_c00420{height:74.666667pt;}
.h2_c00420{height:106.666667pt;}
.h0_c00420{height:1125.760009pt;}
.h1_c00420{height:1126.000000pt;}
.w0_c00420{width:853.760009pt;}
.w1_c00420{width:854.000000pt;}
.x0_c00420{left:0.000000pt;}
.x27_c00420{left:75.466667pt;}
.x15_c00420{left:76.533333pt;}
.x67_c00420{left:77.600000pt;}
.x93_c00420{left:78.800000pt;}
.xa2_c00420{left:79.733333pt;}
.xbd_c00420{left:83.066667pt;}
.xb7_c00420{left:84.000000pt;}
.x89_c00420{left:85.733333pt;}
.xb6_c00420{left:87.466667pt;}
.x31_c00420{left:89.600000pt;}
.x3_c00420{left:91.466667pt;}
.x94_c00420{left:93.200000pt;}
.x80_c00420{left:94.133333pt;}
.xb4_c00420{left:96.666667pt;}
.x9d_c00420{left:99.466667pt;}
.x76_c00420{left:100.400000pt;}
.x7e_c00420{left:101.333333pt;}
.x3e_c00420{left:103.466667pt;}
.x44_c00420{left:104.666667pt;}
.xd_c00420{left:107.200000pt;}
.x79_c00420{left:108.266667pt;}
.xac_c00420{left:109.333333pt;}
.xa7_c00420{left:111.066667pt;}
.x32_c00420{left:112.666667pt;}
.xa3_c00420{left:113.600000pt;}
.x16_c00420{left:114.933333pt;}
.x98_c00420{left:116.666667pt;}
.x4c_c00420{left:118.000000pt;}
.x85_c00420{left:120.266667pt;}
.xe_c00420{left:121.600000pt;}
.x8a_c00420{left:122.800000pt;}
.x5b_c00420{left:123.866667pt;}
.x2c_c00420{left:125.066667pt;}
.x6d_c00420{left:126.933333pt;}
.x1d_c00420{left:128.000000pt;}
.x14_c00420{left:129.200000pt;}
.xa8_c00420{left:130.266667pt;}
.x45_c00420{left:131.200000pt;}
.x33_c00420{left:132.800000pt;}
.x4_c00420{left:134.933333pt;}
.xb0_c00420{left:136.000000pt;}
.x21_c00420{left:137.866667pt;}
.x6f_c00420{left:139.600000pt;}
.xf_c00420{left:140.800000pt;}
.xae_c00420{left:142.666667pt;}
.x74_c00420{left:144.133333pt;}
.xb1_c00420{left:145.333333pt;}
.x99_c00420{left:146.666667pt;}
.x3f_c00420{left:147.600000pt;}
.x46_c00420{left:149.066667pt;}
.x8b_c00420{left:152.266667pt;}
.x68_c00420{left:154.400000pt;}
.x10_c00420{left:155.466667pt;}
.x3a_c00420{left:157.600000pt;}
.xa9_c00420{left:159.066667pt;}
.x7f_c00420{left:160.266667pt;}
.xaa_c00420{left:161.200000pt;}
.x9a_c00420{left:162.400000pt;}
.x58_c00420{left:165.333333pt;}
.x7a_c00420{left:166.266667pt;}
.x34_c00420{left:167.333333pt;}
.xbf_c00420{left:168.933333pt;}
.x40_c00420{left:170.666667pt;}
.x53_c00420{left:172.400000pt;}
.x5_c00420{left:173.600000pt;}
.x30_c00420{left:174.666667pt;}
.x4d_c00420{left:175.600000pt;}
.xbe_c00420{left:176.533333pt;}
.xb8_c00420{left:177.466667pt;}
.xb2_c00420{left:179.600000pt;}
.x8e_c00420{left:181.066667pt;}
.x62_c00420{left:184.000000pt;}
.x5c_c00420{left:184.933333pt;}
.x2d_c00420{left:185.866667pt;}
.x91_c00420{left:187.600000pt;}
.x11_c00420{left:189.733333pt;}
.x4e_c00420{left:192.533333pt;}
.x59_c00420{left:193.866667pt;}
.x69_c00420{left:195.066667pt;}
.x17_c00420{left:196.000000pt;}
.xa5_c00420{left:197.200000pt;}
.x77_c00420{left:198.266667pt;}
.x6_c00420{left:199.466667pt;}
.x86_c00420{left:201.600000pt;}
.x47_c00420{left:202.533333pt;}
.x9b_c00420{left:203.733333pt;}
.x12_c00420{left:204.800000pt;}
.x2e_c00420{left:205.733333pt;}
.x63_c00420{left:208.000000pt;}
.x22_c00420{left:209.200000pt;}
.x18_c00420{left:211.066667pt;}
.xb9_c00420{left:212.000000pt;}
.x5a_c00420{left:213.333333pt;}
.x3b_c00420{left:214.266667pt;}
.x7b_c00420{left:215.200000pt;}
.x54_c00420{left:216.266667pt;}
.x81_c00420{left:219.466667pt;}
.x23_c00420{left:220.400000pt;}
.x70_c00420{left:222.133333pt;}
.x48_c00420{left:224.266667pt;}
.x9f_c00420{left:225.600000pt;}
.x9c_c00420{left:226.800000pt;}
.x87_c00420{left:227.866667pt;}
.x92_c00420{left:229.200000pt;}
.x7_c00420{left:230.133333pt;}
.x75_c00420{left:231.466667pt;}
.x3c_c00420{left:233.733333pt;}
.x35_c00420{left:235.466667pt;}
.xad_c00420{left:236.666667pt;}
.xba_c00420{left:238.933333pt;}
.x9e_c00420{left:240.266667pt;}
.x28_c00420{left:242.533333pt;}
.x19_c00420{left:244.000000pt;}
.x6a_c00420{left:245.600000pt;}
.x95_c00420{left:246.800000pt;}
.x64_c00420{left:248.266667pt;}
.x78_c00420{left:249.733333pt;}
.xa0_c00420{left:251.200000pt;}
.x1e_c00420{left:253.600000pt;}
.x82_c00420{left:255.333333pt;}
.x41_c00420{left:258.400000pt;}
.x1a_c00420{left:261.333333pt;}
.x8_c00420{left:263.066667pt;}
.x7c_c00420{left:264.800000pt;}
.xb3_c00420{left:266.000000pt;}
.x5d_c00420{left:267.466667pt;}
.x24_c00420{left:268.666667pt;}
.x71_c00420{left:270.133333pt;}
.x55_c00420{left:272.266667pt;}
.x49_c00420{left:273.200000pt;}
.x83_c00420{left:275.866667pt;}
.x29_c00420{left:277.733333pt;}
.x9_c00420{left:280.933333pt;}
.x6b_c00420{left:282.400000pt;}
.x36_c00420{left:283.733333pt;}
.x8c_c00420{left:286.266667pt;}
.x4f_c00420{left:287.466667pt;}
.x65_c00420{left:288.533333pt;}
.x4a_c00420{left:289.866667pt;}
.x25_c00420{left:290.800000pt;}
.xaf_c00420{left:292.400000pt;}
.x5e_c00420{left:294.000000pt;}
.x37_c00420{left:295.200000pt;}
.x72_c00420{left:296.400000pt;}
.x1_c00420{left:297.866667pt;}
.x96_c00420{left:299.600000pt;}
.x56_c00420{left:301.333333pt;}
.xc0_c00420{left:302.266667pt;}
.x1b_c00420{left:303.866667pt;}
.xab_c00420{left:305.200000pt;}
.x66_c00420{left:306.800000pt;}
.x42_c00420{left:307.733333pt;}
.x88_c00420{left:309.733333pt;}
.x6e_c00420{left:311.866667pt;}
.x5f_c00420{left:313.866667pt;}
.x6c_c00420{left:315.733333pt;}
.x8f_c00420{left:318.800000pt;}
.x13_c00420{left:320.666667pt;}
.xa_c00420{left:322.533333pt;}
.x57_c00420{left:323.733333pt;}
.xbb_c00420{left:324.666667pt;}
.x97_c00420{left:325.866667pt;}
.x50_c00420{left:327.200000pt;}
.x2a_c00420{left:328.266667pt;}
.x38_c00420{left:329.733333pt;}
.xb5_c00420{left:330.933333pt;}
.x3d_c00420{left:333.200000pt;}
.x51_c00420{left:336.533333pt;}
.x1f_c00420{left:338.000000pt;}
.xb_c00420{left:339.866667pt;}
.x2f_c00420{left:340.800000pt;}
.x60_c00420{left:342.933333pt;}
.xbc_c00420{left:344.800000pt;}
.x7d_c00420{left:345.733333pt;}
.x43_c00420{left:349.066667pt;}
.x90_c00420{left:350.533333pt;}
.x73_c00420{left:351.466667pt;}
.x1c_c00420{left:353.200000pt;}
.x52_c00420{left:354.133333pt;}
.x8d_c00420{left:355.066667pt;}
.x26_c00420{left:357.066667pt;}
.x2b_c00420{left:358.000000pt;}
.x20_c00420{left:359.066667pt;}
.x61_c00420{left:360.266667pt;}
.xa4_c00420{left:363.600000pt;}
.x4b_c00420{left:364.666667pt;}
.xc_c00420{left:365.733333pt;}
.x39_c00420{left:367.200000pt;}
.xa6_c00420{left:368.133333pt;}
.x84_c00420{left:372.133333pt;}
.xa1_c00420{left:374.400000pt;}
.xd3_c00420{left:393.333333pt;}
.xc1_c00420{left:394.533333pt;}
.x164_c00420{left:395.866667pt;}
.x16e_c00420{left:398.133333pt;}
.xc8_c00420{left:401.466667pt;}
.x16c_c00420{left:403.866667pt;}
.x168_c00420{left:405.066667pt;}
.x138_c00420{left:407.333333pt;}
.x159_c00420{left:408.266667pt;}
.xd9_c00420{left:409.200000pt;}
.xf2_c00420{left:410.400000pt;}
.x108_c00420{left:411.333333pt;}
.x13e_c00420{left:412.400000pt;}
.x16f_c00420{left:414.400000pt;}
.x169_c00420{left:416.933333pt;}
.xc2_c00420{left:418.800000pt;}
.x143_c00420{left:420.800000pt;}
.x14a_c00420{left:422.933333pt;}
.x152_c00420{left:423.866667pt;}
.xc9_c00420{left:425.733333pt;}
.x13f_c00420{left:428.133333pt;}
.x139_c00420{left:429.466667pt;}
.x15c_c00420{left:431.600000pt;}
.xf3_c00420{left:435.066667pt;}
.xdd_c00420{left:436.800000pt;}
.x15a_c00420{left:438.000000pt;}
.xfa_c00420{left:440.266667pt;}
.x109_c00420{left:442.400000pt;}
.xf4_c00420{left:443.733333pt;}
.x100_c00420{left:446.666667pt;}
.x12b_c00420{left:448.000000pt;}
.xe4_c00420{left:449.066667pt;}
.xda_c00420{left:450.533333pt;}
.x10c_c00420{left:451.600000pt;}
.x101_c00420{left:454.400000pt;}
.x14e_c00420{left:456.800000pt;}
.xfb_c00420{left:458.133333pt;}
.xca_c00420{left:459.600000pt;}
.x165_c00420{left:461.466667pt;}
.xf5_c00420{left:463.866667pt;}
.x12c_c00420{left:464.933333pt;}
.x148_c00420{left:466.000000pt;}
.x133_c00420{left:467.200000pt;}
.xef_c00420{left:468.933333pt;}
.x105_c00420{left:470.800000pt;}
.x102_c00420{left:471.733333pt;}
.x114_c00420{left:474.400000pt;}
.xcb_c00420{left:475.866667pt;}
.x149_c00420{left:476.933333pt;}
.x12f_c00420{left:477.866667pt;}
.xe5_c00420{left:479.733333pt;}
.x14f_c00420{left:480.800000pt;}
.xf0_c00420{left:481.866667pt;}
.xdb_c00420{left:482.800000pt;}
.xea_c00420{left:483.733333pt;}
.x15d_c00420{left:484.666667pt;}
.x15f_c00420{left:486.533333pt;}
.xe6_c00420{left:489.066667pt;}
.x166_c00420{left:490.533333pt;}
.xc3_c00420{left:491.466667pt;}
.x155_c00420{left:492.666667pt;}
.x115_c00420{left:493.600000pt;}
.x134_c00420{left:496.000000pt;}
.xde_c00420{left:497.866667pt;}
.x131_c00420{left:499.866667pt;}
.xfc_c00420{left:502.266667pt;}
.x129_c00420{left:504.666667pt;}
.x11c_c00420{left:507.466667pt;}
.x162_c00420{left:508.533333pt;}
.xfd_c00420{left:510.933333pt;}
.x156_c00420{left:512.533333pt;}
.x123_c00420{left:513.866667pt;}
.xd4_c00420{left:514.933333pt;}
.x153_c00420{left:516.666667pt;}
.x116_c00420{left:518.533333pt;}
.x103_c00420{left:519.733333pt;}
.x13c_c00420{left:522.933333pt;}
.x140_c00420{left:524.133333pt;}
.xdc_c00420{left:526.000000pt;}
.xcc_c00420{left:527.733333pt;}
.x13a_c00420{left:529.066667pt;}
.x135_c00420{left:530.266667pt;}
.x119_c00420{left:532.000000pt;}
.x157_c00420{left:533.066667pt;}
.x147_c00420{left:534.133333pt;}
.x125_c00420{left:535.200000pt;}
.xc4_c00420{left:538.800000pt;}
.x120_c00420{left:539.733333pt;}
.xcd_c00420{left:541.200000pt;}
.xf6_c00420{left:542.266667pt;}
.x10d_c00420{left:543.733333pt;}
.xe7_c00420{left:544.800000pt;}
.xd2_c00420{left:548.400000pt;}
.xeb_c00420{left:549.333333pt;}
.x150_c00420{left:551.466667pt;}
.x126_c00420{left:553.466667pt;}
.x110_c00420{left:554.400000pt;}
.x144_c00420{left:556.266667pt;}
.x158_c00420{left:558.400000pt;}
.x136_c00420{left:560.000000pt;}
.xdf_c00420{left:562.533333pt;}
.x124_c00420{left:563.466667pt;}
.x15b_c00420{left:564.533333pt;}
.x132_c00420{left:567.066667pt;}
.x160_c00420{left:568.266667pt;}
.x167_c00420{left:569.466667pt;}
.xec_c00420{left:570.400000pt;}
.x13b_c00420{left:571.333333pt;}
.x111_c00420{left:572.266667pt;}
.xd5_c00420{left:575.066667pt;}
.x11d_c00420{left:576.266667pt;}
.x117_c00420{left:577.733333pt;}
.x141_c00420{left:579.466667pt;}
.x11a_c00420{left:580.933333pt;}
.xd6_c00420{left:584.933333pt;}
.x118_c00420{left:586.400000pt;}
.xce_c00420{left:587.866667pt;}
.xc5_c00420{left:590.266667pt;}
.x121_c00420{left:591.333333pt;}
.x14b_c00420{left:592.533333pt;}
.x11e_c00420{left:593.866667pt;}
.x15e_c00420{left:596.800000pt;}
.xcf_c00420{left:599.066667pt;}
.x106_c00420{left:600.933333pt;}
.x13d_c00420{left:602.000000pt;}
.x128_c00420{left:603.600000pt;}
.xed_c00420{left:604.933333pt;}
.x145_c00420{left:605.866667pt;}
.xf7_c00420{left:606.933333pt;}
.xc6_c00420{left:609.466667pt;}
.x112_c00420{left:610.400000pt;}
.xfe_c00420{left:614.000000pt;}
.xe0_c00420{left:616.666667pt;}
.x10a_c00420{left:620.666667pt;}
.xf8_c00420{left:622.266667pt;}
.xd7_c00420{left:624.266667pt;}
.xee_c00420{left:625.466667pt;}
.xd0_c00420{left:628.133333pt;}
.xe8_c00420{left:629.066667pt;}
.x14c_c00420{left:630.933333pt;}
.x137_c00420{left:632.266667pt;}
.x107_c00420{left:634.266667pt;}
.x12d_c00420{left:635.466667pt;}
.xe1_c00420{left:638.400000pt;}
.x12a_c00420{left:639.733333pt;}
.x16a_c00420{left:640.666667pt;}
.xf9_c00420{left:642.133333pt;}
.x127_c00420{left:643.066667pt;}
.xd1_c00420{left:644.400000pt;}
.x130_c00420{left:645.466667pt;}
.xe9_c00420{left:647.333333pt;}
.x10e_c00420{left:648.400000pt;}
.x104_c00420{left:649.600000pt;}
.x122_c00420{left:650.800000pt;}
.xff_c00420{left:651.733333pt;}
.x16b_c00420{left:653.466667pt;}
.x151_c00420{left:654.933333pt;}
.xc7_c00420{left:656.533333pt;}
.xf1_c00420{left:657.466667pt;}
.x142_c00420{left:658.533333pt;}
.xe2_c00420{left:659.866667pt;}
.xd8_c00420{left:663.600000pt;}
.x11b_c00420{left:665.733333pt;}
.x2_c00420{left:667.466667pt;}
.x12e_c00420{left:670.933333pt;}
.x113_c00420{left:672.133333pt;}
.x11f_c00420{left:673.866667pt;}
.x161_c00420{left:676.933333pt;}
.xe3_c00420{left:678.400000pt;}
.x154_c00420{left:680.800000pt;}
.x14d_c00420{left:683.466667pt;}
.x10f_c00420{left:684.533333pt;}
.x16d_c00420{left:686.400000pt;}
.x146_c00420{left:689.333333pt;}
.x10b_c00420{left:690.666667pt;}
.x163_c00420{left:704.000000pt;}
}





/* 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_c00421 {
    display:none;
  }
  .loading-indicator_c00421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00421 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_c00421 { 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_c00421" -> "#page-container .classname_c00421")
 */
.pf_c00421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00421 { /* 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_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00421 { /* 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_c00421 { /* 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_c00421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00421 {overflow:visible;}
  }
}
.c_c00421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00421 { /* 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_c00421:after { /* webkit #35443 */
  content: '';
}
.t_c00421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00421 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 */
}
.__c00421 { /* 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_c00421 { /* info for Javascript */
  display:none;
}
.l_c00421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00421: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_c00421 {
    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_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00421.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_c00421 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00421;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.000000;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;}
.m7e_c00421{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m114_c00421{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.md_c00421{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m32_c00421{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00421{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00421{transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m77_c00421{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00421{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.m76_c00421{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00421{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00421{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mba_c00421{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m69_c00421{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.maf_c00421{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00421{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m107_c00421{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m122_c00421{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m83_c00421{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mae_c00421{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.maa_c00421{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00421{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00421{transform:matrix(0.099500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00421{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00421{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m8_c00421{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00421{transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00421{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00421{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00421{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00421{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.md6_c00421{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00421{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00421{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mce_c00421{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00421{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m66_c00421{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m98_c00421{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00421{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m80_c00421{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m64_c00421{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m104_c00421{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m13_c00421{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00421{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma_c00421{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00421{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00421{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m65_c00421{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00421{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00421{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00421{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6_c00421{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00421{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.mf_c00421{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m19_c00421{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m125_c00421{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m51_c00421{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00421{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m79_c00421{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m17_c00421{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m11_c00421{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m91_c00421{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00421{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00421{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m52_c00421{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00421{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00421{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00421{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00421{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m49_c00421{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m39_c00421{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc_c00421{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00421{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00421{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me1_c00421{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00421{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00421{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m34_c00421{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m37_c00421{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mda_c00421{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00421{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00421{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00421{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m31_c00421{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.md3_c00421{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m99_c00421{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00421{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00421{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m5_c00421{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00421{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m73_c00421{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md9_c00421{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00421{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.md4_c00421{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00421{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00421{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m90_c00421{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m55_c00421{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me5_c00421{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m9_c00421{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m44_c00421{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00421{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m105_c00421{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mee_c00421{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00421{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m35_c00421{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me7_c00421{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m67_c00421{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m123_c00421{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00421{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00421{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m68_c00421{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00421{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00421{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m63_c00421{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m71_c00421{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00421{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m36_c00421{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m62_c00421{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00421{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m10_c00421{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me3_c00421{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00421{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00421{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m27_c00421{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00421{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m59_c00421{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m50_c00421{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00421{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m18_c00421{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00421{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00421{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m46_c00421{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00421{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb_c00421{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m23_c00421{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00421{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m124_c00421{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00421{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00421{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00421{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00421{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m28_c00421{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m43_c00421{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me4_c00421{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00421{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00421{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m38_c00421{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00421{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00421{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00421{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m53_c00421{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m30_c00421{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00421{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m14_c00421{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00421{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m106_c00421{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me9_c00421{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m100_c00421{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mec_c00421{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me_c00421{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m47_c00421{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00421{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m78_c00421{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m16_c00421{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m61_c00421{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m86_c00421{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00421{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00421{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m112_c00421{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m25_c00421{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00421{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m117_c00421{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m93_c00421{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00421{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m72_c00421{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00421{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00421{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00421{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00421{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m60_c00421{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m74_c00421{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mef_c00421{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00421{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m81_c00421{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m75_c00421{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me6_c00421{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m110_c00421{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00421{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00421{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00421{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m56_c00421{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00421{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7_c00421{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00421{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m40_c00421{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m102_c00421{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m58_c00421{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00421{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m15_c00421{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00421{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mff_c00421{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md2_c00421{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m54_c00421{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00421{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m33_c00421{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00421{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m45_c00421{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00421{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00421{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m29_c00421{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00421{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m42_c00421{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m88_c00421{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m89_c00421{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00421{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m20_c00421{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m87_c00421{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00421{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00421{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.md0_c00421{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m26_c00421{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mde_c00421{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m41_c00421{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.med_c00421{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m115_c00421{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00421{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00421{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mac_c00421{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00421{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mab_c00421{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m96_c00421{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me0_c00421{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m48_c00421{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m101_c00421{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00421{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);}
.m113_c00421{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m119_c00421{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m103_c00421{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me2_c00421{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m95_c00421{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me8_c00421{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mea_c00421{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m118_c00421{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m84_c00421{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m97_c00421{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00421{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00421{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mad_c00421{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00421{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00421{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m121_c00421{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m70_c00421{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00421{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00421{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m92_c00421{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00421{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m116_c00421{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00421{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00421{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00421{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.md1_c00421{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m57_c00421{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00421{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m85_c00421{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00421{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m24_c00421{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00421{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m94_c00421{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00421{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00421{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m111_c00421{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00421{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00421{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00421{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.meb_c00421{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m108_c00421{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00421{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.m22_c00421{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m82_c00421{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m109_c00421{transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);}
.md7_c00421{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m21_c00421{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00421{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.md5_c00421{transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);}
.mca_c00421{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);}
.md8_c00421{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00421{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m120_c00421{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls2_c00421{letter-spacing:0.000000px;}
.ls1_c00421{letter-spacing:35.571429px;}
.ls0_c00421{letter-spacing:59.285714px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{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__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00421{word-spacing:-89.285714px;}
.wsb_c00421{word-spacing:-53.571429px;}
.wsf_c00421{word-spacing:-4.852234px;}
.wse_c00421{word-spacing:-1.401747px;}
.wsc_c00421{word-spacing:-1.166667px;}
.ws1_c00421{word-spacing:-0.528464px;}
.ws11_c00421{word-spacing:0.000000px;}
.ws4_c00421{word-spacing:1.250000px;}
.wsa_c00421{word-spacing:4.736842px;}
.wsd_c00421{word-spacing:6.172738px;}
.ws0_c00421{word-spacing:9.816712px;}
.ws2_c00421{word-spacing:13.089172px;}
.ws9_c00421{word-spacing:15.000000px;}
.ws8_c00421{word-spacing:22.142857px;}
.ws3_c00421{word-spacing:25.714286px;}
.ws7_c00421{word-spacing:29.285714px;}
.ws5_c00421{word-spacing:39.750000px;}
.ws10_c00421{word-spacing:1143.160305px;}
._0_c00421{margin-left:-59.285714px;}
._2_c00421{margin-left:-35.571429px;}
._1_c00421{width:59.285714px;}
.fc0_c00421{color:transparent;}
.fs3_c00421{font-size:18.000000px;}
.fs9_c00421{font-size:30.000000px;}
.fs8_c00421{font-size:36.000000px;}
.fs7_c00421{font-size:42.000000px;}
.fs5_c00421{font-size:48.000000px;}
.fs6_c00421{font-size:54.000000px;}
.fs4_c00421{font-size:60.000000px;}
.fs1_c00421{font-size:66.000000px;}
.fs2_c00421{font-size:72.000000px;}
.fs0_c00421{font-size:84.000000px;}
.y0_c00421{bottom:0.000000px;}
.y6f_c00421{bottom:204.150000px;}
.y6c_c00421{bottom:211.650000px;}
.y64_c00421{bottom:213.900000px;}
.y6e_c00421{bottom:216.750000px;}
.y6d_c00421{bottom:222.150000px;}
.y6b_c00421{bottom:228.900000px;}
.y63_c00421{bottom:240.600000px;}
.y6a_c00421{bottom:246.300000px;}
.y62_c00421{bottom:258.600000px;}
.y69_c00421{bottom:263.550000px;}
.y61_c00421{bottom:276.300000px;}
.y68_c00421{bottom:280.800000px;}
.y60_c00421{bottom:294.300000px;}
.y67_c00421{bottom:297.000000px;}
.y5f_c00421{bottom:312.300000px;}
.y66_c00421{bottom:320.400000px;}
.y5e_c00421{bottom:330.600000px;}
.y53_c00421{bottom:345.600000px;}
.y5d_c00421{bottom:347.850000px;}
.y5c_c00421{bottom:364.800000px;}
.y52_c00421{bottom:365.400000px;}
.y5b_c00421{bottom:383.100000px;}
.y51_c00421{bottom:383.400000px;}
.y65_c00421{bottom:385.950000px;}
.y50_c00421{bottom:401.400000px;}
.y4f_c00421{bottom:419.100000px;}
.y5a_c00421{bottom:419.400000px;}
.y4e_c00421{bottom:437.100000px;}
.y59_c00421{bottom:437.400000px;}
.y4d_c00421{bottom:449.250000px;}
.y58_c00421{bottom:455.100000px;}
.y57_c00421{bottom:473.400000px;}
.y4c_c00421{bottom:477.000000px;}
.y56_c00421{bottom:491.700000px;}
.y4b_c00421{bottom:495.000000px;}
.y55_c00421{bottom:509.400000px;}
.y4a_c00421{bottom:512.700000px;}
.y54_c00421{bottom:521.250000px;}
.y22_c00421{bottom:534.300000px;}
.y49_c00421{bottom:535.650000px;}
.y48_c00421{bottom:545.700000px;}
.y21_c00421{bottom:552.600000px;}
.y47_c00421{bottom:560.100000px;}
.y20_c00421{bottom:570.300000px;}
.y46_c00421{bottom:575.550000px;}
.y45_c00421{bottom:588.900000px;}
.y4_c00421{bottom:589.650000px;}
.y44_c00421{bottom:608.400000px;}
.y1f_c00421{bottom:609.750000px;}
.y40_c00421{bottom:618.300000px;}
.y1e_c00421{bottom:627.450000px;}
.y3f_c00421{bottom:637.800000px;}
.y1d_c00421{bottom:646.200000px;}
.y3e_c00421{bottom:647.100000px;}
.y3d_c00421{bottom:667.200000px;}
.y3_c00421{bottom:668.550000px;}
.y3c_c00421{bottom:676.500000px;}
.y1c_c00421{bottom:686.100000px;}
.y1b_c00421{bottom:704.100000px;}
.y3b_c00421{bottom:705.000000px;}
.y3a_c00421{bottom:719.700000px;}
.y1a_c00421{bottom:720.750000px;}
.y39_c00421{bottom:730.200000px;}
.y38_c00421{bottom:744.900000px;}
.y19_c00421{bottom:746.400000px;}
.y18_c00421{bottom:766.500000px;}
.y37_c00421{bottom:773.400000px;}
.y17_c00421{bottom:781.500000px;}
.y36_c00421{bottom:787.800000px;}
.y35_c00421{bottom:806.100000px;}
.y16_c00421{bottom:807.450000px;}
.y43_c00421{bottom:811.050000px;}
.y34_c00421{bottom:816.150000px;}
.y15_c00421{bottom:818.250000px;}
.y24_c00421{bottom:842.100000px;}
.y33_c00421{bottom:843.450000px;}
.y14_c00421{bottom:848.100000px;}
.y32_c00421{bottom:861.450000px;}
.y13_c00421{bottom:865.800000px;}
.y41_c00421{bottom:867.600000px;}
.y42_c00421{bottom:868.950000px;}
.y31_c00421{bottom:878.700000px;}
.y12_c00421{bottom:883.800000px;}
.y30_c00421{bottom:898.950000px;}
.y11_c00421{bottom:902.100000px;}
.y10_c00421{bottom:920.100000px;}
.y2f_c00421{bottom:921.000000px;}
.yf_c00421{bottom:930.150000px;}
.y2e_c00421{bottom:944.700000px;}
.ye_c00421{bottom:959.700000px;}
.y2d_c00421{bottom:963.000000px;}
.yd_c00421{bottom:969.900000px;}
.y2c_c00421{bottom:980.700000px;}
.y2b_c00421{bottom:998.700000px;}
.yc_c00421{bottom:999.750000px;}
.yb_c00421{bottom:1011.000000px;}
.y2a_c00421{bottom:1016.700000px;}
.y29_c00421{bottom:1035.300000px;}
.ya_c00421{bottom:1040.100000px;}
.y9_c00421{bottom:1056.900000px;}
.y28_c00421{bottom:1061.250000px;}
.y7_c00421{bottom:1078.950000px;}
.y8_c00421{bottom:1080.750000px;}
.y27_c00421{bottom:1097.700000px;}
.y6_c00421{bottom:1099.050000px;}
.y23_c00421{bottom:1111.350000px;}
.y26_c00421{bottom:1114.650000px;}
.y5_c00421{bottom:1117.050000px;}
.y2_c00421{bottom:1127.850000px;}
.y25_c00421{bottom:1132.950000px;}
.y1_c00421{bottom:1147.650000px;}
.h5_c00421{height:18.000000px;}
.hb_c00421{height:30.000000px;}
.ha_c00421{height:36.000000px;}
.h9_c00421{height:42.000000px;}
.h7_c00421{height:48.000000px;}
.h8_c00421{height:54.000000px;}
.h6_c00421{height:60.000000px;}
.h3_c00421{height:66.000000px;}
.h4_c00421{height:72.000000px;}
.h2_c00421{height:84.000000px;}
.h0_c00421{height:1289.880066px;}
.h1_c00421{height:1290.000000px;}
.w0_c00421{width:958.320007px;}
.w1_c00421{width:958.500000px;}
.x0_c00421{left:0.000000px;}
.x2_c00421{left:136.500000px;}
.x17_c00421{left:154.800000px;}
.x20_c00421{left:156.900000px;}
.x29_c00421{left:158.100000px;}
.x37_c00421{left:159.900000px;}
.x3_c00421{left:162.300000px;}
.xf_c00421{left:164.100000px;}
.x4d_c00421{left:165.600000px;}
.x5d_c00421{left:167.100000px;}
.x152_c00421{left:168.450000px;}
.x62_c00421{left:169.650000px;}
.x4_c00421{left:171.600000px;}
.x10_c00421{left:173.850000px;}
.x82_c00421{left:175.350000px;}
.x123_c00421{left:177.450000px;}
.x2a_c00421{left:178.950000px;}
.x38_c00421{left:180.000000px;}
.x3c_c00421{left:181.050000px;}
.x4e_c00421{left:182.100000px;}
.x162_c00421{left:183.300000px;}
.x58_c00421{left:186.000000px;}
.x65_c00421{left:187.500000px;}
.x21_c00421{left:189.000000px;}
.x73_c00421{left:191.100000px;}
.x41_c00421{left:193.050000px;}
.x7c_c00421{left:196.050000px;}
.x69_c00421{left:198.150000px;}
.x2f_c00421{left:199.350000px;}
.x5_c00421{left:200.400000px;}
.x153_c00421{left:203.400000px;}
.x131_c00421{left:206.400000px;}
.x6a_c00421{left:207.450000px;}
.x11_c00421{left:208.800000px;}
.x52_c00421{left:210.000000px;}
.x32_c00421{left:211.950000px;}
.x39_c00421{left:217.500000px;}
.x42_c00421{left:219.300000px;}
.x30_c00421{left:220.950000px;}
.x135_c00421{left:222.150000px;}
.x56_c00421{left:223.500000px;}
.x18_c00421{left:225.000000px;}
.x48_c00421{left:226.200000px;}
.x59_c00421{left:227.850000px;}
.x66_c00421{left:230.400000px;}
.x12f_c00421{left:231.900000px;}
.x5e_c00421{left:234.000000px;}
.x3d_c00421{left:235.350000px;}
.x15a_c00421{left:236.850000px;}
.x154_c00421{left:237.900000px;}
.x6f_c00421{left:238.950000px;}
.x4f_c00421{left:242.550000px;}
.x19_c00421{left:245.850000px;}
.x139_c00421{left:247.200000px;}
.x83_c00421{left:248.850000px;}
.x12_c00421{left:250.950000px;}
.x2b_c00421{left:252.750000px;}
.x74_c00421{left:257.400000px;}
.x12b_c00421{left:259.050000px;}
.x43_c00421{left:261.000000px;}
.x124_c00421{left:262.050000px;}
.x70_c00421{left:263.850000px;}
.x6_c00421{left:265.500000px;}
.x27_c00421{left:267.000000px;}
.x6b_c00421{left:270.150000px;}
.x13_c00421{left:272.250000px;}
.x129_c00421{left:273.300000px;}
.x5a_c00421{left:275.700000px;}
.x31_c00421{left:277.800000px;}
.x130_c00421{left:279.900000px;}
.x49_c00421{left:281.250000px;}
.x120_c00421{left:283.050000px;}
.x7d_c00421{left:284.250000px;}
.x22_c00421{left:285.450000px;}
.x44_c00421{left:286.500000px;}
.x7_c00421{left:289.200000px;}
.x1a_c00421{left:293.400000px;}
.x67_c00421{left:295.200000px;}
.x136_c00421{left:297.300000px;}
.x33_c00421{left:303.000000px;}
.x1b_c00421{left:304.200000px;}
.x8_c00421{left:305.400000px;}
.x2c_c00421{left:306.750000px;}
.x63_c00421{left:309.750000px;}
.x3a_c00421{left:311.850000px;}
.x132_c00421{left:312.900000px;}
.x34_c00421{left:314.100000px;}
.x14_c00421{left:315.450000px;}
.x75_c00421{left:316.500000px;}
.x13a_c00421{left:317.700000px;}
.x71_c00421{left:319.200000px;}
.x1c_c00421{left:321.150000px;}
.x23_c00421{left:322.950000px;}
.x68_c00421{left:324.000000px;}
.x125_c00421{left:325.500000px;}
.x45_c00421{left:327.150000px;}
.x9_c00421{left:332.400000px;}
.x79_c00421{left:333.600000px;}
.x7e_c00421{left:336.450000px;}
.x1d_c00421{left:337.650000px;}
.x137_c00421{left:339.450000px;}
.x64_c00421{left:341.850000px;}
.xa_c00421{left:343.200000px;}
.x133_c00421{left:345.000000px;}
.x72_c00421{left:346.200000px;}
.x4a_c00421{left:348.000000px;}
.x24_c00421{left:352.050000px;}
.x15_c00421{left:353.250000px;}
.x3e_c00421{left:354.900000px;}
.x7f_c00421{left:357.000000px;}
.x50_c00421{left:360.600000px;}
.x3f_c00421{left:363.900000px;}
.x12a_c00421{left:366.900000px;}
.x121_c00421{left:368.850000px;}
.xb_c00421{left:369.900000px;}
.x53_c00421{left:370.950000px;}
.x25_c00421{left:372.150000px;}
.x134_c00421{left:373.800000px;}
.x2d_c00421{left:375.600000px;}
.x155_c00421{left:376.950000px;}
.x5b_c00421{left:379.800000px;}
.x1_c00421{left:381.600000px;}
.x76_c00421{left:382.800000px;}
.x16_c00421{left:385.350000px;}
.x126_c00421{left:387.450000px;}
.x7a_c00421{left:389.400000px;}
.x84_c00421{left:391.050000px;}
.xc_c00421{left:394.350000px;}
.x15b_c00421{left:397.050000px;}
.x5f_c00421{left:398.550000px;}
.x1e_c00421{left:399.600000px;}
.x156_c00421{left:403.050000px;}
.x127_c00421{left:404.700000px;}
.x138_c00421{left:407.550000px;}
.x4b_c00421{left:408.900000px;}
.x163_c00421{left:411.150000px;}
.x6c_c00421{left:414.150000px;}
.x26_c00421{left:416.100000px;}
.x46_c00421{left:417.750000px;}
.x3b_c00421{left:419.250000px;}
.x157_c00421{left:420.750000px;}
.x57_c00421{left:421.800000px;}
.x6d_c00421{left:422.850000px;}
.x122_c00421{left:424.350000px;}
.x7b_c00421{left:425.400000px;}
.x12d_c00421{left:427.950000px;}
.x40_c00421{left:429.450000px;}
.x2e_c00421{left:431.400000px;}
.x60_c00421{left:433.800000px;}
.x28_c00421{left:435.900000px;}
.x1f_c00421{left:437.400000px;}
.x35_c00421{left:439.650000px;}
.x54_c00421{left:440.850000px;}
.x47_c00421{left:442.650000px;}
.x5c_c00421{left:446.400000px;}
.x158_c00421{left:447.450000px;}
.x80_c00421{left:450.150000px;}
.x61_c00421{left:452.550000px;}
.xd_c00421{left:454.800000px;}
.x36_c00421{left:456.600000px;}
.x51_c00421{left:458.100000px;}
.x81_c00421{left:459.450000px;}
.x78_c00421{left:460.650000px;}
.x12e_c00421{left:462.450000px;}
.x4c_c00421{left:464.400000px;}
.x15d_c00421{left:465.600000px;}
.x12c_c00421{left:467.100000px;}
.x55_c00421{left:471.150000px;}
.x6e_c00421{left:474.300000px;}
.xe_c00421{left:480.000000px;}
.x85_c00421{left:482.400000px;}
.x159_c00421{left:483.750000px;}
.x128_c00421{left:486.750000px;}
.x77_c00421{left:488.700000px;}
.x86_c00421{left:491.700000px;}
.x15c_c00421{left:498.150000px;}
.xb1_c00421{left:499.350000px;}
.xd3_c00421{left:502.950000px;}
.x13b_c00421{left:504.300000px;}
.x87_c00421{left:513.000000px;}
.x8f_c00421{left:514.050000px;}
.xab_c00421{left:515.850000px;}
.xa2_c00421{left:517.200000px;}
.xbe_c00421{left:518.250000px;}
.xc6_c00421{left:519.300000px;}
.xf6_c00421{left:523.650000px;}
.xa3_c00421{left:524.700000px;}
.x103_c00421{left:526.200000px;}
.x112_c00421{left:528.150000px;}
.x115_c00421{left:529.350000px;}
.x11a_c00421{left:530.700000px;}
.xa4_c00421{left:534.450000px;}
.xea_c00421{left:536.250000px;}
.xf3_c00421{left:537.300000px;}
.xfb_c00421{left:538.950000px;}
.xff_c00421{left:540.750000px;}
.xb2_c00421{left:543.300000px;}
.x14d_c00421{left:544.350000px;}
.x118_c00421{left:545.400000px;}
.xde_c00421{left:548.550000px;}
.x165_c00421{left:549.750000px;}
.xc7_c00421{left:550.950000px;}
.x98_c00421{left:552.450000px;}
.xaf_c00421{left:554.850000px;}
.xe4_c00421{left:556.500000px;}
.xda_c00421{left:557.550000px;}
.xa5_c00421{left:559.350000px;}
.xf7_c00421{left:560.400000px;}
.xfc_c00421{left:561.600000px;}
.xd4_c00421{left:563.400000px;}
.xbf_c00421{left:565.050000px;}
.x90_c00421{left:567.000000px;}
.x13e_c00421{left:568.500000px;}
.xb8_c00421{left:574.200000px;}
.x88_c00421{left:575.250000px;}
.x104_c00421{left:576.300000px;}
.x145_c00421{left:577.350000px;}
.xf2_c00421{left:578.700000px;}
.x14f_c00421{left:579.900000px;}
.xa6_c00421{left:582.000000px;}
.x99_c00421{left:583.350000px;}
.x114_c00421{left:584.400000px;}
.x146_c00421{left:588.150000px;}
.x91_c00421{left:589.350000px;}
.xe8_c00421{left:591.900000px;}
.xc8_c00421{left:593.850000px;}
.x105_c00421{left:595.350000px;}
.x10c_c00421{left:596.550000px;}
.xee_c00421{left:599.700000px;}
.xf8_c00421{left:600.750000px;}
.xdb_c00421{left:602.250000px;}
.x141_c00421{left:603.750000px;}
.x148_c00421{left:605.550000px;}
.xe5_c00421{left:607.650000px;}
.x9a_c00421{left:609.300000px;}
.xb3_c00421{left:611.400000px;}
.x89_c00421{left:612.750000px;}
.xb0_c00421{left:614.550000px;}
.xac_c00421{left:616.350000px;}
.xb9_c00421{left:617.400000px;}
.x9b_c00421{left:619.050000px;}
.xf9_c00421{left:620.250000px;}
.xdf_c00421{left:621.900000px;}
.x92_c00421{left:623.850000px;}
.xd5_c00421{left:625.350000px;}
.x9c_c00421{left:627.750000px;}
.x149_c00421{left:628.950000px;}
.xeb_c00421{left:630.750000px;}
.x14b_c00421{left:632.700000px;}
.x151_c00421{left:635.550000px;}
.x100_c00421{left:637.950000px;}
.xd2_c00421{left:639.900000px;}
.xe0_c00421{left:640.950000px;}
.x9d_c00421{left:643.200000px;}
.x142_c00421{left:645.900000px;}
.xc0_c00421{left:647.100000px;}
.x93_c00421{left:648.300000px;}
.x8a_c00421{left:649.500000px;}
.xc9_c00421{left:652.200000px;}
.x15e_c00421{left:654.900000px;}
.xad_c00421{left:657.450000px;}
.x8b_c00421{left:658.800000px;}
.xf4_c00421{left:661.500000px;}
.x144_c00421{left:662.550000px;}
.x9e_c00421{left:664.050000px;}
.xe6_c00421{left:665.850000px;}
.xd6_c00421{left:667.050000px;}
.xe9_c00421{left:669.300000px;}
.x14c_c00421{left:670.800000px;}
.x8c_c00421{left:674.250000px;}
.x106_c00421{left:675.300000px;}
.x14a_c00421{left:676.500000px;}
.xa7_c00421{left:677.850000px;}
.xca_c00421{left:680.250000px;}
.xef_c00421{left:682.050000px;}
.xdc_c00421{left:683.250000px;}
.xf5_c00421{left:684.900000px;}
.xc1_c00421{left:687.000000px;}
.xcc_c00421{left:688.200000px;}
.xf0_c00421{left:689.250000px;}
.xba_c00421{left:694.800000px;}
.x8d_c00421{left:695.850000px;}
.x101_c00421{left:698.700000px;}
.xcd_c00421{left:700.800000px;}
.xc2_c00421{left:702.150000px;}
.x11b_c00421{left:703.200000px;}
.xe1_c00421{left:707.550000px;}
.x150_c00421{left:708.750000px;}
.x13c_c00421{left:710.100000px;}
.x94_c00421{left:711.600000px;}
.x102_c00421{left:713.100000px;}
.xcb_c00421{left:714.450000px;}
.xce_c00421{left:716.700000px;}
.xec_c00421{left:718.050000px;}
.xa8_c00421{left:719.250000px;}
.xc3_c00421{left:721.200000px;}
.xb4_c00421{left:722.550000px;}
.x9f_c00421{left:724.200000px;}
.x95_c00421{left:725.250000px;}
.x11c_c00421{left:726.600000px;}
.xe2_c00421{left:729.750000px;}
.x107_c00421{left:730.800000px;}
.xd7_c00421{left:731.850000px;}
.x140_c00421{left:733.050000px;}
.xdd_c00421{left:734.700000px;}
.xa0_c00421{left:735.750000px;}
.x108_c00421{left:737.700000px;}
.xa9_c00421{left:740.100000px;}
.xfa_c00421{left:742.650000px;}
.xe3_c00421{left:744.150000px;}
.xe7_c00421{left:746.100000px;}
.xed_c00421{left:747.600000px;}
.x15f_c00421{left:749.250000px;}
.xb5_c00421{left:751.050000px;}
.xae_c00421{left:752.550000px;}
.xbb_c00421{left:753.600000px;}
.xf1_c00421{left:755.100000px;}
.x119_c00421{left:758.550000px;}
.x109_c00421{left:759.600000px;}
.xd8_c00421{left:761.700000px;}
.xc4_c00421{left:765.900000px;}
.xb6_c00421{left:769.050000px;}
.x13d_c00421{left:771.300000px;}
.xbc_c00421{left:772.350000px;}
.xfd_c00421{left:778.350000px;}
.x96_c00421{left:780.300000px;}
.xcf_c00421{left:783.000000px;}
.x116_c00421{left:784.200000px;}
.x14e_c00421{left:785.400000px;}
.x11d_c00421{left:786.900000px;}
.x8e_c00421{left:788.400000px;}
.xa1_c00421{left:790.800000px;}
.xaa_c00421{left:792.300000px;}
.x143_c00421{left:795.000000px;}
.xd0_c00421{left:796.350000px;}
.x10f_c00421{left:800.700000px;}
.x10e_c00421{left:806.400000px;}
.xb7_c00421{left:808.650000px;}
.x10a_c00421{left:809.700000px;}
.x113_c00421{left:810.750000px;}
.xd1_c00421{left:812.250000px;}
.x11e_c00421{left:815.700000px;}
.x160_c00421{left:817.200000px;}
.xbd_c00421{left:820.650000px;}
.xc5_c00421{left:822.000000px;}
.x97_c00421{left:824.250000px;}
.xd9_c00421{left:827.250000px;}
.x10d_c00421{left:829.800000px;}
.x111_c00421{left:832.350000px;}
.x110_c00421{left:835.950000px;}
.x10b_c00421{left:837.750000px;}
.xfe_c00421{left:838.800000px;}
.x117_c00421{left:841.050000px;}
.x166_c00421{left:842.100000px;}
.x11f_c00421{left:843.450000px;}
.x13f_c00421{left:845.400000px;}
.x164_c00421{left:847.800000px;}
.x161_c00421{left:856.500000px;}
.x147_c00421{left:861.600000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls2_c00421{letter-spacing:0.000000pt;}
.ls1_c00421{letter-spacing:31.619048pt;}
.ls0_c00421{letter-spacing:52.698413pt;}
.ws6_c00421{word-spacing:-79.365079pt;}
.wsb_c00421{word-spacing:-47.619048pt;}
.wsf_c00421{word-spacing:-4.313097pt;}
.wse_c00421{word-spacing:-1.245997pt;}
.wsc_c00421{word-spacing:-1.037037pt;}
.ws1_c00421{word-spacing:-0.469746pt;}
.ws11_c00421{word-spacing:0.000000pt;}
.ws4_c00421{word-spacing:1.111111pt;}
.wsa_c00421{word-spacing:4.210526pt;}
.wsd_c00421{word-spacing:5.486878pt;}
.ws0_c00421{word-spacing:8.725966pt;}
.ws2_c00421{word-spacing:11.634820pt;}
.ws9_c00421{word-spacing:13.333333pt;}
.ws8_c00421{word-spacing:19.682540pt;}
.ws3_c00421{word-spacing:22.857143pt;}
.ws7_c00421{word-spacing:26.031746pt;}
.ws5_c00421{word-spacing:35.333333pt;}
.ws10_c00421{word-spacing:1016.142494pt;}
._0_c00421{margin-left:-52.698413pt;}
._2_c00421{margin-left:-31.619048pt;}
._1_c00421{width:52.698413pt;}
.fs3_c00421{font-size:16.000000pt;}
.fs9_c00421{font-size:26.666667pt;}
.fs8_c00421{font-size:32.000000pt;}
.fs7_c00421{font-size:37.333333pt;}
.fs5_c00421{font-size:42.666667pt;}
.fs6_c00421{font-size:48.000000pt;}
.fs4_c00421{font-size:53.333333pt;}
.fs1_c00421{font-size:58.666667pt;}
.fs2_c00421{font-size:64.000000pt;}
.fs0_c00421{font-size:74.666667pt;}
.y0_c00421{bottom:0.000000pt;}
.y6f_c00421{bottom:181.466667pt;}
.y6c_c00421{bottom:188.133333pt;}
.y64_c00421{bottom:190.133333pt;}
.y6e_c00421{bottom:192.666667pt;}
.y6d_c00421{bottom:197.466667pt;}
.y6b_c00421{bottom:203.466667pt;}
.y63_c00421{bottom:213.866667pt;}
.y6a_c00421{bottom:218.933333pt;}
.y62_c00421{bottom:229.866667pt;}
.y69_c00421{bottom:234.266667pt;}
.y61_c00421{bottom:245.600000pt;}
.y68_c00421{bottom:249.600000pt;}
.y60_c00421{bottom:261.600000pt;}
.y67_c00421{bottom:264.000000pt;}
.y5f_c00421{bottom:277.600000pt;}
.y66_c00421{bottom:284.800000pt;}
.y5e_c00421{bottom:293.866667pt;}
.y53_c00421{bottom:307.200000pt;}
.y5d_c00421{bottom:309.200000pt;}
.y5c_c00421{bottom:324.266667pt;}
.y52_c00421{bottom:324.800000pt;}
.y5b_c00421{bottom:340.533333pt;}
.y51_c00421{bottom:340.800000pt;}
.y65_c00421{bottom:343.066667pt;}
.y50_c00421{bottom:356.800000pt;}
.y4f_c00421{bottom:372.533333pt;}
.y5a_c00421{bottom:372.800000pt;}
.y4e_c00421{bottom:388.533333pt;}
.y59_c00421{bottom:388.800000pt;}
.y4d_c00421{bottom:399.333333pt;}
.y58_c00421{bottom:404.533333pt;}
.y57_c00421{bottom:420.800000pt;}
.y4c_c00421{bottom:424.000000pt;}
.y56_c00421{bottom:437.066667pt;}
.y4b_c00421{bottom:440.000000pt;}
.y55_c00421{bottom:452.800000pt;}
.y4a_c00421{bottom:455.733333pt;}
.y54_c00421{bottom:463.333333pt;}
.y22_c00421{bottom:474.933333pt;}
.y49_c00421{bottom:476.133333pt;}
.y48_c00421{bottom:485.066667pt;}
.y21_c00421{bottom:491.200000pt;}
.y47_c00421{bottom:497.866667pt;}
.y20_c00421{bottom:506.933333pt;}
.y46_c00421{bottom:511.600000pt;}
.y45_c00421{bottom:523.466667pt;}
.y4_c00421{bottom:524.133333pt;}
.y44_c00421{bottom:540.800000pt;}
.y1f_c00421{bottom:542.000000pt;}
.y40_c00421{bottom:549.600000pt;}
.y1e_c00421{bottom:557.733333pt;}
.y3f_c00421{bottom:566.933333pt;}
.y1d_c00421{bottom:574.400000pt;}
.y3e_c00421{bottom:575.200000pt;}
.y3d_c00421{bottom:593.066667pt;}
.y3_c00421{bottom:594.266667pt;}
.y3c_c00421{bottom:601.333333pt;}
.y1c_c00421{bottom:609.866667pt;}
.y1b_c00421{bottom:625.866667pt;}
.y3b_c00421{bottom:626.666667pt;}
.y3a_c00421{bottom:639.733333pt;}
.y1a_c00421{bottom:640.666667pt;}
.y39_c00421{bottom:649.066667pt;}
.y38_c00421{bottom:662.133333pt;}
.y19_c00421{bottom:663.466667pt;}
.y18_c00421{bottom:681.333333pt;}
.y37_c00421{bottom:687.466667pt;}
.y17_c00421{bottom:694.666667pt;}
.y36_c00421{bottom:700.266667pt;}
.y35_c00421{bottom:716.533333pt;}
.y16_c00421{bottom:717.733333pt;}
.y43_c00421{bottom:720.933333pt;}
.y34_c00421{bottom:725.466667pt;}
.y15_c00421{bottom:727.333333pt;}
.y24_c00421{bottom:748.533333pt;}
.y33_c00421{bottom:749.733333pt;}
.y14_c00421{bottom:753.866667pt;}
.y32_c00421{bottom:765.733333pt;}
.y13_c00421{bottom:769.600000pt;}
.y41_c00421{bottom:771.200000pt;}
.y42_c00421{bottom:772.400000pt;}
.y31_c00421{bottom:781.066667pt;}
.y12_c00421{bottom:785.600000pt;}
.y30_c00421{bottom:799.066667pt;}
.y11_c00421{bottom:801.866667pt;}
.y10_c00421{bottom:817.866667pt;}
.y2f_c00421{bottom:818.666667pt;}
.yf_c00421{bottom:826.800000pt;}
.y2e_c00421{bottom:839.733333pt;}
.ye_c00421{bottom:853.066667pt;}
.y2d_c00421{bottom:856.000000pt;}
.yd_c00421{bottom:862.133333pt;}
.y2c_c00421{bottom:871.733333pt;}
.y2b_c00421{bottom:887.733333pt;}
.yc_c00421{bottom:888.666667pt;}
.yb_c00421{bottom:898.666667pt;}
.y2a_c00421{bottom:903.733333pt;}
.y29_c00421{bottom:920.266667pt;}
.ya_c00421{bottom:924.533333pt;}
.y9_c00421{bottom:939.466667pt;}
.y28_c00421{bottom:943.333333pt;}
.y7_c00421{bottom:959.066667pt;}
.y8_c00421{bottom:960.666667pt;}
.y27_c00421{bottom:975.733333pt;}
.y6_c00421{bottom:976.933333pt;}
.y23_c00421{bottom:987.866667pt;}
.y26_c00421{bottom:990.800000pt;}
.y5_c00421{bottom:992.933333pt;}
.y2_c00421{bottom:1002.533333pt;}
.y25_c00421{bottom:1007.066667pt;}
.y1_c00421{bottom:1020.133333pt;}
.h5_c00421{height:16.000000pt;}
.hb_c00421{height:26.666667pt;}
.ha_c00421{height:32.000000pt;}
.h9_c00421{height:37.333333pt;}
.h7_c00421{height:42.666667pt;}
.h8_c00421{height:48.000000pt;}
.h6_c00421{height:53.333333pt;}
.h3_c00421{height:58.666667pt;}
.h4_c00421{height:64.000000pt;}
.h2_c00421{height:74.666667pt;}
.h0_c00421{height:1146.560059pt;}
.h1_c00421{height:1146.666667pt;}
.w0_c00421{width:851.840007pt;}
.w1_c00421{width:852.000000pt;}
.x0_c00421{left:0.000000pt;}
.x2_c00421{left:121.333333pt;}
.x17_c00421{left:137.600000pt;}
.x20_c00421{left:139.466667pt;}
.x29_c00421{left:140.533333pt;}
.x37_c00421{left:142.133333pt;}
.x3_c00421{left:144.266667pt;}
.xf_c00421{left:145.866667pt;}
.x4d_c00421{left:147.200000pt;}
.x5d_c00421{left:148.533333pt;}
.x152_c00421{left:149.733333pt;}
.x62_c00421{left:150.800000pt;}
.x4_c00421{left:152.533333pt;}
.x10_c00421{left:154.533333pt;}
.x82_c00421{left:155.866667pt;}
.x123_c00421{left:157.733333pt;}
.x2a_c00421{left:159.066667pt;}
.x38_c00421{left:160.000000pt;}
.x3c_c00421{left:160.933333pt;}
.x4e_c00421{left:161.866667pt;}
.x162_c00421{left:162.933333pt;}
.x58_c00421{left:165.333333pt;}
.x65_c00421{left:166.666667pt;}
.x21_c00421{left:168.000000pt;}
.x73_c00421{left:169.866667pt;}
.x41_c00421{left:171.600000pt;}
.x7c_c00421{left:174.266667pt;}
.x69_c00421{left:176.133333pt;}
.x2f_c00421{left:177.200000pt;}
.x5_c00421{left:178.133333pt;}
.x153_c00421{left:180.800000pt;}
.x131_c00421{left:183.466667pt;}
.x6a_c00421{left:184.400000pt;}
.x11_c00421{left:185.600000pt;}
.x52_c00421{left:186.666667pt;}
.x32_c00421{left:188.400000pt;}
.x39_c00421{left:193.333333pt;}
.x42_c00421{left:194.933333pt;}
.x30_c00421{left:196.400000pt;}
.x135_c00421{left:197.466667pt;}
.x56_c00421{left:198.666667pt;}
.x18_c00421{left:200.000000pt;}
.x48_c00421{left:201.066667pt;}
.x59_c00421{left:202.533333pt;}
.x66_c00421{left:204.800000pt;}
.x12f_c00421{left:206.133333pt;}
.x5e_c00421{left:208.000000pt;}
.x3d_c00421{left:209.200000pt;}
.x15a_c00421{left:210.533333pt;}
.x154_c00421{left:211.466667pt;}
.x6f_c00421{left:212.400000pt;}
.x4f_c00421{left:215.600000pt;}
.x19_c00421{left:218.533333pt;}
.x139_c00421{left:219.733333pt;}
.x83_c00421{left:221.200000pt;}
.x12_c00421{left:223.066667pt;}
.x2b_c00421{left:224.666667pt;}
.x74_c00421{left:228.800000pt;}
.x12b_c00421{left:230.266667pt;}
.x43_c00421{left:232.000000pt;}
.x124_c00421{left:232.933333pt;}
.x70_c00421{left:234.533333pt;}
.x6_c00421{left:236.000000pt;}
.x27_c00421{left:237.333333pt;}
.x6b_c00421{left:240.133333pt;}
.x13_c00421{left:242.000000pt;}
.x129_c00421{left:242.933333pt;}
.x5a_c00421{left:245.066667pt;}
.x31_c00421{left:246.933333pt;}
.x130_c00421{left:248.800000pt;}
.x49_c00421{left:250.000000pt;}
.x120_c00421{left:251.600000pt;}
.x7d_c00421{left:252.666667pt;}
.x22_c00421{left:253.733333pt;}
.x44_c00421{left:254.666667pt;}
.x7_c00421{left:257.066667pt;}
.x1a_c00421{left:260.800000pt;}
.x67_c00421{left:262.400000pt;}
.x136_c00421{left:264.266667pt;}
.x33_c00421{left:269.333333pt;}
.x1b_c00421{left:270.400000pt;}
.x8_c00421{left:271.466667pt;}
.x2c_c00421{left:272.666667pt;}
.x63_c00421{left:275.333333pt;}
.x3a_c00421{left:277.200000pt;}
.x132_c00421{left:278.133333pt;}
.x34_c00421{left:279.200000pt;}
.x14_c00421{left:280.400000pt;}
.x75_c00421{left:281.333333pt;}
.x13a_c00421{left:282.400000pt;}
.x71_c00421{left:283.733333pt;}
.x1c_c00421{left:285.466667pt;}
.x23_c00421{left:287.066667pt;}
.x68_c00421{left:288.000000pt;}
.x125_c00421{left:289.333333pt;}
.x45_c00421{left:290.800000pt;}
.x9_c00421{left:295.466667pt;}
.x79_c00421{left:296.533333pt;}
.x7e_c00421{left:299.066667pt;}
.x1d_c00421{left:300.133333pt;}
.x137_c00421{left:301.733333pt;}
.x64_c00421{left:303.866667pt;}
.xa_c00421{left:305.066667pt;}
.x133_c00421{left:306.666667pt;}
.x72_c00421{left:307.733333pt;}
.x4a_c00421{left:309.333333pt;}
.x24_c00421{left:312.933333pt;}
.x15_c00421{left:314.000000pt;}
.x3e_c00421{left:315.466667pt;}
.x7f_c00421{left:317.333333pt;}
.x50_c00421{left:320.533333pt;}
.x3f_c00421{left:323.466667pt;}
.x12a_c00421{left:326.133333pt;}
.x121_c00421{left:327.866667pt;}
.xb_c00421{left:328.800000pt;}
.x53_c00421{left:329.733333pt;}
.x25_c00421{left:330.800000pt;}
.x134_c00421{left:332.266667pt;}
.x2d_c00421{left:333.866667pt;}
.x155_c00421{left:335.066667pt;}
.x5b_c00421{left:337.600000pt;}
.x1_c00421{left:339.200000pt;}
.x76_c00421{left:340.266667pt;}
.x16_c00421{left:342.533333pt;}
.x126_c00421{left:344.400000pt;}
.x7a_c00421{left:346.133333pt;}
.x84_c00421{left:347.600000pt;}
.xc_c00421{left:350.533333pt;}
.x15b_c00421{left:352.933333pt;}
.x5f_c00421{left:354.266667pt;}
.x1e_c00421{left:355.200000pt;}
.x156_c00421{left:358.266667pt;}
.x127_c00421{left:359.733333pt;}
.x138_c00421{left:362.266667pt;}
.x4b_c00421{left:363.466667pt;}
.x163_c00421{left:365.466667pt;}
.x6c_c00421{left:368.133333pt;}
.x26_c00421{left:369.866667pt;}
.x46_c00421{left:371.333333pt;}
.x3b_c00421{left:372.666667pt;}
.x157_c00421{left:374.000000pt;}
.x57_c00421{left:374.933333pt;}
.x6d_c00421{left:375.866667pt;}
.x122_c00421{left:377.200000pt;}
.x7b_c00421{left:378.133333pt;}
.x12d_c00421{left:380.400000pt;}
.x40_c00421{left:381.733333pt;}
.x2e_c00421{left:383.466667pt;}
.x60_c00421{left:385.600000pt;}
.x28_c00421{left:387.466667pt;}
.x1f_c00421{left:388.800000pt;}
.x35_c00421{left:390.800000pt;}
.x54_c00421{left:391.866667pt;}
.x47_c00421{left:393.466667pt;}
.x5c_c00421{left:396.800000pt;}
.x158_c00421{left:397.733333pt;}
.x80_c00421{left:400.133333pt;}
.x61_c00421{left:402.266667pt;}
.xd_c00421{left:404.266667pt;}
.x36_c00421{left:405.866667pt;}
.x51_c00421{left:407.200000pt;}
.x81_c00421{left:408.400000pt;}
.x78_c00421{left:409.466667pt;}
.x12e_c00421{left:411.066667pt;}
.x4c_c00421{left:412.800000pt;}
.x15d_c00421{left:413.866667pt;}
.x12c_c00421{left:415.200000pt;}
.x55_c00421{left:418.800000pt;}
.x6e_c00421{left:421.600000pt;}
.xe_c00421{left:426.666667pt;}
.x85_c00421{left:428.800000pt;}
.x159_c00421{left:430.000000pt;}
.x128_c00421{left:432.666667pt;}
.x77_c00421{left:434.400000pt;}
.x86_c00421{left:437.066667pt;}
.x15c_c00421{left:442.800000pt;}
.xb1_c00421{left:443.866667pt;}
.xd3_c00421{left:447.066667pt;}
.x13b_c00421{left:448.266667pt;}
.x87_c00421{left:456.000000pt;}
.x8f_c00421{left:456.933333pt;}
.xab_c00421{left:458.533333pt;}
.xa2_c00421{left:459.733333pt;}
.xbe_c00421{left:460.666667pt;}
.xc6_c00421{left:461.600000pt;}
.xf6_c00421{left:465.466667pt;}
.xa3_c00421{left:466.400000pt;}
.x103_c00421{left:467.733333pt;}
.x112_c00421{left:469.466667pt;}
.x115_c00421{left:470.533333pt;}
.x11a_c00421{left:471.733333pt;}
.xa4_c00421{left:475.066667pt;}
.xea_c00421{left:476.666667pt;}
.xf3_c00421{left:477.600000pt;}
.xfb_c00421{left:479.066667pt;}
.xff_c00421{left:480.666667pt;}
.xb2_c00421{left:482.933333pt;}
.x14d_c00421{left:483.866667pt;}
.x118_c00421{left:484.800000pt;}
.xde_c00421{left:487.600000pt;}
.x165_c00421{left:488.666667pt;}
.xc7_c00421{left:489.733333pt;}
.x98_c00421{left:491.066667pt;}
.xaf_c00421{left:493.200000pt;}
.xe4_c00421{left:494.666667pt;}
.xda_c00421{left:495.600000pt;}
.xa5_c00421{left:497.200000pt;}
.xf7_c00421{left:498.133333pt;}
.xfc_c00421{left:499.200000pt;}
.xd4_c00421{left:500.800000pt;}
.xbf_c00421{left:502.266667pt;}
.x90_c00421{left:504.000000pt;}
.x13e_c00421{left:505.333333pt;}
.xb8_c00421{left:510.400000pt;}
.x88_c00421{left:511.333333pt;}
.x104_c00421{left:512.266667pt;}
.x145_c00421{left:513.200000pt;}
.xf2_c00421{left:514.400000pt;}
.x14f_c00421{left:515.466667pt;}
.xa6_c00421{left:517.333333pt;}
.x99_c00421{left:518.533333pt;}
.x114_c00421{left:519.466667pt;}
.x146_c00421{left:522.800000pt;}
.x91_c00421{left:523.866667pt;}
.xe8_c00421{left:526.133333pt;}
.xc8_c00421{left:527.866667pt;}
.x105_c00421{left:529.200000pt;}
.x10c_c00421{left:530.266667pt;}
.xee_c00421{left:533.066667pt;}
.xf8_c00421{left:534.000000pt;}
.xdb_c00421{left:535.333333pt;}
.x141_c00421{left:536.666667pt;}
.x148_c00421{left:538.266667pt;}
.xe5_c00421{left:540.133333pt;}
.x9a_c00421{left:541.600000pt;}
.xb3_c00421{left:543.466667pt;}
.x89_c00421{left:544.666667pt;}
.xb0_c00421{left:546.266667pt;}
.xac_c00421{left:547.866667pt;}
.xb9_c00421{left:548.800000pt;}
.x9b_c00421{left:550.266667pt;}
.xf9_c00421{left:551.333333pt;}
.xdf_c00421{left:552.800000pt;}
.x92_c00421{left:554.533333pt;}
.xd5_c00421{left:555.866667pt;}
.x9c_c00421{left:558.000000pt;}
.x149_c00421{left:559.066667pt;}
.xeb_c00421{left:560.666667pt;}
.x14b_c00421{left:562.400000pt;}
.x151_c00421{left:564.933333pt;}
.x100_c00421{left:567.066667pt;}
.xd2_c00421{left:568.800000pt;}
.xe0_c00421{left:569.733333pt;}
.x9d_c00421{left:571.733333pt;}
.x142_c00421{left:574.133333pt;}
.xc0_c00421{left:575.200000pt;}
.x93_c00421{left:576.266667pt;}
.x8a_c00421{left:577.333333pt;}
.xc9_c00421{left:579.733333pt;}
.x15e_c00421{left:582.133333pt;}
.xad_c00421{left:584.400000pt;}
.x8b_c00421{left:585.600000pt;}
.xf4_c00421{left:588.000000pt;}
.x144_c00421{left:588.933333pt;}
.x9e_c00421{left:590.266667pt;}
.xe6_c00421{left:591.866667pt;}
.xd6_c00421{left:592.933333pt;}
.xe9_c00421{left:594.933333pt;}
.x14c_c00421{left:596.266667pt;}
.x8c_c00421{left:599.333333pt;}
.x106_c00421{left:600.266667pt;}
.x14a_c00421{left:601.333333pt;}
.xa7_c00421{left:602.533333pt;}
.xca_c00421{left:604.666667pt;}
.xef_c00421{left:606.266667pt;}
.xdc_c00421{left:607.333333pt;}
.xf5_c00421{left:608.800000pt;}
.xc1_c00421{left:610.666667pt;}
.xcc_c00421{left:611.733333pt;}
.xf0_c00421{left:612.666667pt;}
.xba_c00421{left:617.600000pt;}
.x8d_c00421{left:618.533333pt;}
.x101_c00421{left:621.066667pt;}
.xcd_c00421{left:622.933333pt;}
.xc2_c00421{left:624.133333pt;}
.x11b_c00421{left:625.066667pt;}
.xe1_c00421{left:628.933333pt;}
.x150_c00421{left:630.000000pt;}
.x13c_c00421{left:631.200000pt;}
.x94_c00421{left:632.533333pt;}
.x102_c00421{left:633.866667pt;}
.xcb_c00421{left:635.066667pt;}
.xce_c00421{left:637.066667pt;}
.xec_c00421{left:638.266667pt;}
.xa8_c00421{left:639.333333pt;}
.xc3_c00421{left:641.066667pt;}
.xb4_c00421{left:642.266667pt;}
.x9f_c00421{left:643.733333pt;}
.x95_c00421{left:644.666667pt;}
.x11c_c00421{left:645.866667pt;}
.xe2_c00421{left:648.666667pt;}
.x107_c00421{left:649.600000pt;}
.xd7_c00421{left:650.533333pt;}
.x140_c00421{left:651.600000pt;}
.xdd_c00421{left:653.066667pt;}
.xa0_c00421{left:654.000000pt;}
.x108_c00421{left:655.733333pt;}
.xa9_c00421{left:657.866667pt;}
.xfa_c00421{left:660.133333pt;}
.xe3_c00421{left:661.466667pt;}
.xe7_c00421{left:663.200000pt;}
.xed_c00421{left:664.533333pt;}
.x15f_c00421{left:666.000000pt;}
.xb5_c00421{left:667.600000pt;}
.xae_c00421{left:668.933333pt;}
.xbb_c00421{left:669.866667pt;}
.xf1_c00421{left:671.200000pt;}
.x119_c00421{left:674.266667pt;}
.x109_c00421{left:675.200000pt;}
.xd8_c00421{left:677.066667pt;}
.xc4_c00421{left:680.800000pt;}
.xb6_c00421{left:683.600000pt;}
.x13d_c00421{left:685.600000pt;}
.xbc_c00421{left:686.533333pt;}
.xfd_c00421{left:691.866667pt;}
.x96_c00421{left:693.600000pt;}
.xcf_c00421{left:696.000000pt;}
.x116_c00421{left:697.066667pt;}
.x14e_c00421{left:698.133333pt;}
.x11d_c00421{left:699.466667pt;}
.x8e_c00421{left:700.800000pt;}
.xa1_c00421{left:702.933333pt;}
.xaa_c00421{left:704.266667pt;}
.x143_c00421{left:706.666667pt;}
.xd0_c00421{left:707.866667pt;}
.x10f_c00421{left:711.733333pt;}
.x10e_c00421{left:716.800000pt;}
.xb7_c00421{left:718.800000pt;}
.x10a_c00421{left:719.733333pt;}
.x113_c00421{left:720.666667pt;}
.xd1_c00421{left:722.000000pt;}
.x11e_c00421{left:725.066667pt;}
.x160_c00421{left:726.400000pt;}
.xbd_c00421{left:729.466667pt;}
.xc5_c00421{left:730.666667pt;}
.x97_c00421{left:732.666667pt;}
.xd9_c00421{left:735.333333pt;}
.x10d_c00421{left:737.600000pt;}
.x111_c00421{left:739.866667pt;}
.x110_c00421{left:743.066667pt;}
.x10b_c00421{left:744.666667pt;}
.xfe_c00421{left:745.600000pt;}
.x117_c00421{left:747.600000pt;}
.x166_c00421{left:748.533333pt;}
.x11f_c00421{left:749.733333pt;}
.x13f_c00421{left:751.466667pt;}
.x164_c00421{left:753.600000pt;}
.x161_c00421{left:761.333333pt;}
.x147_c00421{left:765.866667pt;}
}





/* 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_c00422 {
    display:none;
  }
  .loading-indicator_c00422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00422 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_c00422 { 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_c00422" -> "#page-container .classname_c00422")
 */
.pf_c00422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00422 { /* 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_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00422 { /* 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_c00422 { /* 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_c00422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00422 {overflow:visible;}
  }
}
.c_c00422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00422 { /* 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_c00422:after { /* webkit #35443 */
  content: '';
}
.t_c00422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00422 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 */
}
.__c00422 { /* 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_c00422 { /* info for Javascript */
  display:none;
}
.l_c00422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00422: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_c00422 {
    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_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00422.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_c00422 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00422;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.000000;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;}
.m16_c00422{transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);}
.m124_c00422{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00422{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m61_c00422{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.med_c00422{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me4_c00422{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m119_c00422{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00422{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.me6_c00422{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00422{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00422{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00422{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.me5_c00422{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00422{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00422{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00422{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m77_c00422{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00422{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00422{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.me7_c00422{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00422{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m50_c00422{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00422{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00422{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.md9_c00422{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00422{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00422{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.meb_c00422{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00422{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00422{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m121_c00422{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00422{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m103_c00422{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mce_c00422{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m10_c00422{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00422{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m14_c00422{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m53_c00422{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m62_c00422{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m57_c00422{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mde_c00422{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00422{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m22_c00422{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md8_c00422{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m73_c00422{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00422{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m24_c00422{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m55_c00422{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00422{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.ma_c00422{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m39_c00422{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.md3_c00422{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m45_c00422{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m123_c00422{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m54_c00422{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00422{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00422{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m28_c00422{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m43_c00422{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m118_c00422{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m13_c00422{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m11_c00422{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m37_c00422{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m58_c00422{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00422{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00422{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m88_c00422{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00422{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00422{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mec_c00422{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00422{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m19_c00422{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m81_c00422{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m8_c00422{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me9_c00422{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00422{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00422{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m59_c00422{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.maf_c00422{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m79_c00422{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00422{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mad_c00422{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m64_c00422{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m26_c00422{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00422{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m18_c00422{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00422{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m63_c00422{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m82_c00422{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf_c00422{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00422{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00422{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9_c00422{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m33_c00422{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00422{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m111_c00422{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00422{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00422{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m117_c00422{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00422{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m72_c00422{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00422{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m56_c00422{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m65_c00422{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m36_c00422{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00422{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00422{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00422{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m60_c00422{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00422{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m97_c00422{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m38_c00422{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m12_c00422{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6_c00422{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00422{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00422{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mb_c00422{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00422{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.md6_c00422{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00422{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m47_c00422{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m122_c00422{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m52_c00422{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m95_c00422{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m21_c00422{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m75_c00422{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m25_c00422{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m98_c00422{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00422{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m29_c00422{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00422{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00422{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00422{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m109_c00422{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00422{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m96_c00422{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m70_c00422{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m78_c00422{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m71_c00422{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00422{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00422{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md1_c00422{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00422{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md0_c00422{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00422{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00422{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00422{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00422{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7_c00422{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m27_c00422{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m68_c00422{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mea_c00422{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m51_c00422{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.me_c00422{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc_c00422{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m116_c00422{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00422{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m91_c00422{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m93_c00422{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00422{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00422{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00422{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m15_c00422{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00422{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m67_c00422{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00422{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m84_c00422{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m89_c00422{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m104_c00422{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m20_c00422{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00422{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m80_c00422{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m31_c00422{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m49_c00422{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m86_c00422{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mef_c00422{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00422{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.md4_c00422{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00422{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m32_c00422{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00422{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m90_c00422{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00422{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m35_c00422{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m30_c00422{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m34_c00422{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m48_c00422{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m113_c00422{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00422{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mac_c00422{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00422{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m105_c00422{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m17_c00422{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m46_c00422{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md2_c00422{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00422{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00422{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m106_c00422{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00422{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00422{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m115_c00422{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m110_c00422{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00422{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md_c00422{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mae_c00422{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m44_c00422{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.maa_c00422{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00422{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00422{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m23_c00422{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00422{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m87_c00422{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00422{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m74_c00422{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00422{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00422{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00422{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mda_c00422{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00422{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m112_c00422{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00422{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00422{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mba_c00422{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00422{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m42_c00422{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m99_c00422{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m69_c00422{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m101_c00422{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00422{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00422{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00422{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md7_c00422{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m85_c00422{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m41_c00422{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m92_c00422{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.me0_c00422{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m94_c00422{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m100_c00422{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00422{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00422{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00422{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00422{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);}
.m3a_c00422{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m102_c00422{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00422{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00422{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00422{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.me3_c00422{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00422{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md5_c00422{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m66_c00422{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00422{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m40_c00422{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m83_c00422{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.me1_c00422{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00422{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00422{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00422{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mca_c00422{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00422{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00422{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00422{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00422{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mff_c00422{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00422{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00422{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m76_c00422{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00422{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00422{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m120_c00422{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00422{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00422{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mab_c00422{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00422{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m114_c00422{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m126_c00422{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m5_c00422{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m4_c00422{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00422{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00422{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m108_c00422{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00422{transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00422{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me2_c00422{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m127_c00422{transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416000,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m107_c00422{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00422{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00422{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.me8_c00422{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00422{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.m125_c00422{transform:matrix(0.517000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517000,0.000000,0.000000,0.250000,0,0);}
.mee_c00422{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00422{transform:matrix(0.657250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657250,0.000000,0.000000,0.250000,0,0);}
.m129_c00422{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m128_c00422{transform:matrix(2.484000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.484000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.484000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls0_c00422{letter-spacing:0.000000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{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__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00422{word-spacing:-8.333333px;}
.ws2_c00422{word-spacing:-5.588235px;}
.ws3_c00422{word-spacing:-4.545455px;}
.ws11_c00422{word-spacing:0.000000px;}
.ws1_c00422{word-spacing:1.576819px;}
.ws0_c00422{word-spacing:4.375000px;}
.wsf_c00422{word-spacing:5.138889px;}
.ws10_c00422{word-spacing:9.875312px;}
.ws4_c00422{word-spacing:14.722222px;}
.ws7_c00422{word-spacing:25.714286px;}
.ws9_c00422{word-spacing:29.285714px;}
.ws6_c00422{word-spacing:35.833333px;}
.wsb_c00422{word-spacing:36.000000px;}
.wse_c00422{word-spacing:40.000000px;}
.ws8_c00422{word-spacing:44.166667px;}
.wsa_c00422{word-spacing:63.125000px;}
.ws5_c00422{word-spacing:69.605263px;}
.wsd_c00422{word-spacing:75.416667px;}
._0_c00422{width:29.090909px;}
._1_c00422{width:66.750000px;}
._2_c00422{width:74.166667px;}
.fc0_c00422{color:transparent;}
.fs9_c00422{font-size:30.000000px;}
.fs8_c00422{font-size:36.000000px;}
.fs5_c00422{font-size:42.000000px;}
.fs7_c00422{font-size:54.000000px;}
.fs4_c00422{font-size:60.000000px;}
.fs2_c00422{font-size:66.000000px;}
.fs3_c00422{font-size:72.000000px;}
.fs6_c00422{font-size:78.000000px;}
.fs0_c00422{font-size:84.000000px;}
.fs1_c00422{font-size:102.000000px;}
.y0_c00422{bottom:0.000000px;}
.y73_c00422{bottom:177.150000px;}
.y36_c00422{bottom:190.800000px;}
.y71_c00422{bottom:200.550000px;}
.y70_c00422{bottom:208.500000px;}
.y35_c00422{bottom:208.800000px;}
.y6f_c00422{bottom:223.200000px;}
.y34_c00422{bottom:227.100000px;}
.y6e_c00422{bottom:236.100000px;}
.y33_c00422{bottom:245.400000px;}
.y6d_c00422{bottom:252.000000px;}
.y32_c00422{bottom:263.400000px;}
.y6c_c00422{bottom:266.400000px;}
.y6b_c00422{bottom:280.800000px;}
.y31_c00422{bottom:281.100000px;}
.y6a_c00422{bottom:295.200000px;}
.y30_c00422{bottom:307.500000px;}
.y69_c00422{bottom:309.600000px;}
.y68_c00422{bottom:324.000000px;}
.y2f_c00422{bottom:325.800000px;}
.y67_c00422{bottom:338.400000px;}
.y2e_c00422{bottom:343.800000px;}
.y66_c00422{bottom:353.100000px;}
.y2d_c00422{bottom:361.800000px;}
.y65_c00422{bottom:367.800000px;}
.y2c_c00422{bottom:379.800000px;}
.y64_c00422{bottom:382.200000px;}
.y63_c00422{bottom:396.600000px;}
.y2b_c00422{bottom:397.800000px;}
.y62_c00422{bottom:410.700000px;}
.y2a_c00422{bottom:415.500000px;}
.y61_c00422{bottom:425.100000px;}
.y29_c00422{bottom:433.800000px;}
.y60_c00422{bottom:439.950000px;}
.y28_c00422{bottom:451.800000px;}
.y5f_c00422{bottom:468.000000px;}
.y27_c00422{bottom:469.800000px;}
.y5e_c00422{bottom:482.400000px;}
.y26_c00422{bottom:487.800000px;}
.y5d_c00422{bottom:497.100000px;}
.y25_c00422{bottom:505.800000px;}
.y5c_c00422{bottom:522.750000px;}
.y24_c00422{bottom:523.500000px;}
.y23_c00422{bottom:541.500000px;}
.y5b_c00422{bottom:544.350000px;}
.y5a_c00422{bottom:556.650000px;}
.y22_c00422{bottom:565.500000px;}
.y59_c00422{bottom:573.150000px;}
.y58_c00422{bottom:585.750000px;}
.y21_c00422{bottom:586.050000px;}
.y57_c00422{bottom:601.950000px;}
.y20_c00422{bottom:604.050000px;}
.y56_c00422{bottom:616.650000px;}
.y1f_c00422{bottom:622.050000px;}
.y55_c00422{bottom:628.500000px;}
.y1e_c00422{bottom:640.050000px;}
.y54_c00422{bottom:645.450000px;}
.y1d_c00422{bottom:658.050000px;}
.y53_c00422{bottom:659.850000px;}
.y52_c00422{bottom:674.550000px;}
.y1c_c00422{bottom:675.750000px;}
.y51_c00422{bottom:686.100000px;}
.y1b_c00422{bottom:693.450000px;}
.y50_c00422{bottom:701.700000px;}
.y1a_c00422{bottom:711.450000px;}
.y4f_c00422{bottom:717.900000px;}
.y19_c00422{bottom:729.150000px;}
.y4e_c00422{bottom:732.600000px;}
.y4d_c00422{bottom:744.900000px;}
.y18_c00422{bottom:747.150000px;}
.y4c_c00422{bottom:758.250000px;}
.y17_c00422{bottom:765.150000px;}
.y4b_c00422{bottom:775.500000px;}
.y16_c00422{bottom:783.150000px;}
.y4a_c00422{bottom:788.400000px;}
.y15_c00422{bottom:801.150000px;}
.y49_c00422{bottom:801.300000px;}
.y48_c00422{bottom:817.200000px;}
.y14_c00422{bottom:818.850000px;}
.y47_c00422{bottom:831.600000px;}
.y13_c00422{bottom:837.150000px;}
.y46_c00422{bottom:846.300000px;}
.y12_c00422{bottom:855.150000px;}
.y45_c00422{bottom:862.500000px;}
.y11_c00422{bottom:872.850000px;}
.y44_c00422{bottom:879.600000px;}
.y10_c00422{bottom:890.850000px;}
.y43_c00422{bottom:899.700000px;}
.yf_c00422{bottom:908.850000px;}
.y42_c00422{bottom:917.700000px;}
.ye_c00422{bottom:926.550000px;}
.y41_c00422{bottom:935.700000px;}
.yd_c00422{bottom:944.250000px;}
.y40_c00422{bottom:952.950000px;}
.yc_c00422{bottom:962.550000px;}
.y3f_c00422{bottom:970.950000px;}
.yb_c00422{bottom:980.250000px;}
.y3e_c00422{bottom:991.350000px;}
.ya_c00422{bottom:998.550000px;}
.y3d_c00422{bottom:1010.850000px;}
.y9_c00422{bottom:1016.250000px;}
.y3c_c00422{bottom:1028.850000px;}
.y8_c00422{bottom:1034.250000px;}
.y3b_c00422{bottom:1046.850000px;}
.y7_c00422{bottom:1051.950000px;}
.y3a_c00422{bottom:1067.850000px;}
.y6_c00422{bottom:1069.950000px;}
.y5_c00422{bottom:1087.950000px;}
.y4_c00422{bottom:1105.950000px;}
.y39_c00422{bottom:1106.700000px;}
.y3_c00422{bottom:1123.500000px;}
.y38_c00422{bottom:1127.550000px;}
.y1_c00422{bottom:1151.700000px;}
.y2_c00422{bottom:1153.800000px;}
.y37_c00422{bottom:1262.850000px;}
.y72_c00422{bottom:1266.900000px;}
.ha_c00422{height:30.000000px;}
.h9_c00422{height:36.000000px;}
.h6_c00422{height:42.000000px;}
.h8_c00422{height:54.000000px;}
.h5_c00422{height:60.000000px;}
.h3_c00422{height:66.000000px;}
.h4_c00422{height:72.000000px;}
.h7_c00422{height:78.000000px;}
.h1_c00422{height:84.000000px;}
.h2_c00422{height:102.000000px;}
.h0_c00422{height:1269.000000px;}
.w0_c00422{width:958.320007px;}
.w1_c00422{width:958.500000px;}
.x0_c00422{left:0.000000px;}
.x89_c00422{left:90.300000px;}
.x8_c00422{left:100.050000px;}
.x75_c00422{left:101.100000px;}
.x10_c00422{left:103.350000px;}
.x44_c00422{left:104.400000px;}
.x6b_c00422{left:105.450000px;}
.x84_c00422{left:106.650000px;}
.x8e_c00422{left:108.000000px;}
.x94_c00422{left:109.050000px;}
.xa6_c00422{left:110.400000px;}
.xad_c00422{left:112.800000px;}
.x7f_c00422{left:121.950000px;}
.x77_c00422{left:126.300000px;}
.x97_c00422{left:127.650000px;}
.x6f_c00422{left:128.700000px;}
.x58_c00422{left:130.500000px;}
.x51_c00422{left:132.450000px;}
.x37_c00422{left:136.800000px;}
.x96_c00422{left:138.150000px;}
.xab_c00422{left:140.250000px;}
.x11_c00422{left:141.900000px;}
.x92_c00422{left:143.700000px;}
.x19_c00422{left:145.200000px;}
.x78_c00422{left:147.600000px;}
.x8a_c00422{left:148.950000px;}
.x82_c00422{left:150.000000px;}
.x52_c00422{left:151.500000px;}
.x1e_c00422{left:155.700000px;}
.x46_c00422{left:157.200000px;}
.x5e_c00422{left:163.050000px;}
.x4c_c00422{left:165.150000px;}
.x29_c00422{left:166.800000px;}
.x85_c00422{left:168.600000px;}
.x3b_c00422{left:170.250000px;}
.x7b_c00422{left:171.900000px;}
.x41_c00422{left:173.100000px;}
.x38_c00422{left:175.650000px;}
.x9e_c00422{left:177.000000px;}
.x95_c00422{left:178.050000px;}
.x2a_c00422{left:180.450000px;}
.x12_c00422{left:181.800000px;}
.x31_c00422{left:182.850000px;}
.x5f_c00422{left:184.650000px;}
.x9_c00422{left:186.450000px;}
.x3c_c00422{left:190.050000px;}
.x1f_c00422{left:192.450000px;}
.x9a_c00422{left:195.450000px;}
.x59_c00422{left:196.800000px;}
.x42_c00422{left:198.300000px;}
.x39_c00422{left:200.100000px;}
.x47_c00422{left:202.200000px;}
.x2b_c00422{left:203.550000px;}
.x70_c00422{left:204.600000px;}
.x63_c00422{left:206.100000px;}
.x80_c00422{left:208.050000px;}
.xae_c00422{left:210.000000px;}
.x9b_c00422{left:211.350000px;}
.x32_c00422{left:213.450000px;}
.x13_c00422{left:214.500000px;}
.xac_c00422{left:216.150000px;}
.x20_c00422{left:217.650000px;}
.x1a_c00422{left:222.600000px;}
.xa_c00422{left:224.550000px;}
.x48_c00422{left:226.350000px;}
.xa0_c00422{left:227.400000px;}
.x86_c00422{left:229.050000px;}
.x72_c00422{left:230.700000px;}
.x5a_c00422{left:231.750000px;}
.x33_c00422{left:235.050000px;}
.xa1_c00422{left:236.100000px;}
.x7c_c00422{left:237.750000px;}
.x8b_c00422{left:239.700000px;}
.x64_c00422{left:241.650000px;}
.x2c_c00422{left:243.450000px;}
.x1b_c00422{left:244.950000px;}
.xa2_c00422{left:246.900000px;}
.x26_c00422{left:249.150000px;}
.x73_c00422{left:250.650000px;}
.xb_c00422{left:252.600000px;}
.x9f_c00422{left:253.650000px;}
.x14_c00422{left:256.650000px;}
.x6c_c00422{left:258.450000px;}
.x83_c00422{left:260.850000px;}
.x8f_c00422{left:263.100000px;}
.x3d_c00422{left:266.700000px;}
.x21_c00422{left:268.350000px;}
.x9c_c00422{left:269.700000px;}
.x2d_c00422{left:272.250000px;}
.xa7_c00422{left:273.300000px;}
.x5b_c00422{left:274.650000px;}
.x98_c00422{left:275.850000px;}
.x60_c00422{left:277.050000px;}
.x76_c00422{left:278.850000px;}
.xc_c00422{left:280.650000px;}
.x93_c00422{left:281.700000px;}
.x3e_c00422{left:287.250000px;}
.x61_c00422{left:288.300000px;}
.x49_c00422{left:289.350000px;}
.x34_c00422{left:291.600000px;}
.x53_c00422{left:294.000000px;}
.x65_c00422{left:295.350000px;}
.x5c_c00422{left:297.300000px;}
.x2e_c00422{left:298.500000px;}
.x87_c00422{left:301.350000px;}
.x71_c00422{left:303.750000px;}
.xd_c00422{left:305.100000px;}
.x66_c00422{left:306.900000px;}
.x79_c00422{left:308.700000px;}
.x62_c00422{left:309.900000px;}
.xa3_c00422{left:311.250000px;}
.x4d_c00422{left:312.300000px;}
.x1c_c00422{left:313.350000px;}
.x45_c00422{left:317.550000px;}
.x22_c00422{left:320.850000px;}
.x81_c00422{left:322.800000px;}
.x54_c00422{left:324.300000px;}
.x99_c00422{left:325.500000px;}
.x1_c00422{left:326.850000px;}
.x3a_c00422{left:327.900000px;}
.x8c_c00422{left:329.700000px;}
.x90_c00422{left:330.900000px;}
.x67_c00422{left:333.900000px;}
.x5d_c00422{left:335.850000px;}
.x74_c00422{left:337.350000px;}
.x4e_c00422{left:338.550000px;}
.x15_c00422{left:339.750000px;}
.x3f_c00422{left:343.350000px;}
.x6d_c00422{left:344.400000px;}
.x55_c00422{left:345.900000px;}
.xa4_c00422{left:347.250000px;}
.x91_c00422{left:351.000000px;}
.x2_c00422{left:353.550000px;}
.x88_c00422{left:354.600000px;}
.x23_c00422{left:355.800000px;}
.x35_c00422{left:357.150000px;}
.x43_c00422{left:358.500000px;}
.x4f_c00422{left:360.900000px;}
.xe_c00422{left:363.750000px;}
.x68_c00422{left:365.250000px;}
.xa5_c00422{left:367.050000px;}
.x16_c00422{left:370.350000px;}
.x7d_c00422{left:371.700000px;}
.x24_c00422{left:373.500000px;}
.x7a_c00422{left:375.000000px;}
.x69_c00422{left:376.050000px;}
.x40_c00422{left:379.050000px;}
.x36_c00422{left:380.250000px;}
.xa9_c00422{left:383.850000px;}
.x2f_c00422{left:385.650000px;}
.x4a_c00422{left:386.850000px;}
.x56_c00422{left:388.050000px;}
.xf_c00422{left:390.000000px;}
.x17_c00422{left:391.650000px;}
.x27_c00422{left:393.900000px;}
.x3_c00422{left:395.250000px;}
.x6a_c00422{left:397.350000px;}
.xa8_c00422{left:399.150000px;}
.x50_c00422{left:400.200000px;}
.x30_c00422{left:402.900000px;}
.x4b_c00422{left:404.550000px;}
.x8d_c00422{left:406.650000px;}
.x1d_c00422{left:407.700000px;}
.x6e_c00422{left:408.750000px;}
.x28_c00422{left:410.850000px;}
.x25_c00422{left:412.350000px;}
.x57_c00422{left:413.550000px;}
.xaa_c00422{left:415.500000px;}
.x9d_c00422{left:417.150000px;}
.x7e_c00422{left:419.250000px;}
.x18_c00422{left:432.750000px;}
.x4_c00422{left:437.400000px;}
.xaf_c00422{left:442.500000px;}
.xd4_c00422{left:443.550000px;}
.x131_c00422{left:444.750000px;}
.x12e_c00422{left:447.150000px;}
.x129_c00422{left:448.500000px;}
.x146_c00422{left:450.150000px;}
.x150_c00422{left:451.200000px;}
.x5_c00422{left:457.950000px;}
.xff_c00422{left:459.000000px;}
.xb6_c00422{left:460.800000px;}
.xdd_c00422{left:462.000000px;}
.x142_c00422{left:464.400000px;}
.x14f_c00422{left:467.250000px;}
.x140_c00422{left:471.300000px;}
.x103_c00422{left:474.000000px;}
.x10a_c00422{left:475.050000px;}
.xbe_c00422{left:479.550000px;}
.x6_c00422{left:480.600000px;}
.x13e_c00422{left:481.650000px;}
.xb7_c00422{left:482.700000px;}
.x132_c00422{left:484.200000px;}
.x107_c00422{left:485.250000px;}
.xc4_c00422{left:487.350000px;}
.x149_c00422{left:489.600000px;}
.x10b_c00422{left:496.350000px;}
.xf9_c00422{left:497.700000px;}
.xcb_c00422{left:498.900000px;}
.xf5_c00422{left:504.000000px;}
.x141_c00422{left:505.800000px;}
.xb0_c00422{left:509.100000px;}
.x12a_c00422{left:510.450000px;}
.xe5_c00422{left:511.500000px;}
.xde_c00422{left:512.850000px;}
.xec_c00422{left:515.100000px;}
.x118_c00422{left:516.750000px;}
.x10e_c00422{left:519.600000px;}
.x10c_c00422{left:521.550000px;}
.x143_c00422{left:523.800000px;}
.xbf_c00422{left:525.600000px;}
.x13f_c00422{left:527.700000px;}
.xbd_c00422{left:528.750000px;}
.xc5_c00422{left:529.800000px;}
.xed_c00422{left:532.350000px;}
.xd2_c00422{left:534.750000px;}
.xfc_c00422{left:536.100000px;}
.x14d_c00422{left:537.150000px;}
.xb1_c00422{left:539.700000px;}
.x138_c00422{left:542.550000px;}
.x108_c00422{left:543.600000px;}
.x114_c00422{left:547.200000px;}
.xe6_c00422{left:548.250000px;}
.xf6_c00422{left:549.300000px;}
.xdf_c00422{left:550.950000px;}
.xfa_c00422{left:553.800000px;}
.xee_c00422{left:555.000000px;}
.xd5_c00422{left:556.650000px;}
.x119_c00422{left:558.450000px;}
.x125_c00422{left:561.600000px;}
.x14b_c00422{left:563.700000px;}
.xcc_c00422{left:565.500000px;}
.x113_c00422{left:567.750000px;}
.x111_c00422{left:569.400000px;}
.x12f_c00422{left:570.900000px;}
.x100_c00422{left:573.000000px;}
.xc6_c00422{left:574.800000px;}
.x126_c00422{left:576.000000px;}
.x144_c00422{left:577.050000px;}
.xb2_c00422{left:580.350000px;}
.xc0_c00422{left:582.900000px;}
.xef_c00422{left:584.550000px;}
.xd3_c00422{left:585.900000px;}
.x115_c00422{left:587.550000px;}
.xd6_c00422{left:589.050000px;}
.xc7_c00422{left:592.050000px;}
.x104_c00422{left:593.250000px;}
.xe0_c00422{left:597.450000px;}
.xf0_c00422{left:599.700000px;}
.x12b_c00422{left:601.950000px;}
.xe7_c00422{left:603.750000px;}
.xfd_c00422{left:607.800000px;}
.x122_c00422{left:610.650000px;}
.x105_c00422{left:612.000000px;}
.x116_c00422{left:613.350000px;}
.xf7_c00422{left:614.400000px;}
.x13b_c00422{left:615.750000px;}
.xb8_c00422{left:616.950000px;}
.x11f_c00422{left:618.300000px;}
.xfb_c00422{left:619.350000px;}
.xe1_c00422{left:623.400000px;}
.x139_c00422{left:624.600000px;}
.xcd_c00422{left:627.000000px;}
.x11a_c00422{left:628.350000px;}
.x123_c00422{left:631.200000px;}
.x109_c00422{left:633.900000px;}
.xc1_c00422{left:635.400000px;}
.xe8_c00422{left:636.450000px;}
.x10f_c00422{left:639.150000px;}
.xd9_c00422{left:640.950000px;}
.x13c_c00422{left:643.200000px;}
.xf1_c00422{left:644.400000px;}
.xb9_c00422{left:646.050000px;}
.x11b_c00422{left:647.100000px;}
.xce_c00422{left:648.600000px;}
.x148_c00422{left:650.250000px;}
.x133_c00422{left:651.600000px;}
.x136_c00422{left:653.400000px;}
.xfe_c00422{left:654.900000px;}
.xcf_c00422{left:656.550000px;}
.xb3_c00422{left:658.050000px;}
.xe9_c00422{left:661.950000px;}
.xf2_c00422{left:663.450000px;}
.xd0_c00422{left:665.850000px;}
.xd7_c00422{left:667.800000px;}
.xc8_c00422{left:669.750000px;}
.x101_c00422{left:671.250000px;}
.x106_c00422{left:672.450000px;}
.x127_c00422{left:674.100000px;}
.x110_c00422{left:675.900000px;}
.xda_c00422{left:677.700000px;}
.x11c_c00422{left:679.200000px;}
.xba_c00422{left:680.550000px;}
.x12c_c00422{left:682.950000px;}
.x124_c00422{left:684.150000px;}
.xe2_c00422{left:685.350000px;}
.xd1_c00422{left:690.000000px;}
.x112_c00422{left:691.800000px;}
.x117_c00422{left:693.000000px;}
.xd8_c00422{left:694.050000px;}
.xc2_c00422{left:695.850000px;}
.xf3_c00422{left:700.950000px;}
.xbb_c00422{left:703.200000px;}
.x134_c00422{left:705.900000px;}
.xc3_c00422{left:709.500000px;}
.xb4_c00422{left:711.300000px;}
.xea_c00422{left:712.650000px;}
.x11d_c00422{left:714.150000px;}
.x135_c00422{left:715.950000px;}
.x137_c00422{left:719.250000px;}
.x147_c00422{left:720.300000px;}
.xbc_c00422{left:724.500000px;}
.xdb_c00422{left:727.350000px;}
.xc9_c00422{left:728.850000px;}
.x14e_c00422{left:730.050000px;}
.xf8_c00422{left:732.150000px;}
.x151_c00422{left:733.650000px;}
.x120_c00422{left:735.600000px;}
.x102_c00422{left:740.100000px;}
.xe3_c00422{left:741.450000px;}
.x11e_c00422{left:742.650000px;}
.x13d_c00422{left:744.450000px;}
.x14a_c00422{left:748.050000px;}
.xca_c00422{left:750.450000px;}
.x7_c00422{left:752.400000px;}
.x13a_c00422{left:754.200000px;}
.x145_c00422{left:758.700000px;}
.x121_c00422{left:760.050000px;}
.x128_c00422{left:762.300000px;}
.xb5_c00422{left:764.250000px;}
.xe4_c00422{left:765.600000px;}
.x12d_c00422{left:766.800000px;}
.xeb_c00422{left:768.450000px;}
.x10d_c00422{left:769.800000px;}
.xdc_c00422{left:770.850000px;}
.xf4_c00422{left:772.200000px;}
.x14c_c00422{left:773.850000px;}
.x130_c00422{left:779.550000px;}
.x152_c00422{left:812.550000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.wsc_c00422{word-spacing:-7.407407pt;}
.ws2_c00422{word-spacing:-4.967320pt;}
.ws3_c00422{word-spacing:-4.040404pt;}
.ws11_c00422{word-spacing:0.000000pt;}
.ws1_c00422{word-spacing:1.401617pt;}
.ws0_c00422{word-spacing:3.888889pt;}
.wsf_c00422{word-spacing:4.567901pt;}
.ws10_c00422{word-spacing:8.778055pt;}
.ws4_c00422{word-spacing:13.086420pt;}
.ws7_c00422{word-spacing:22.857143pt;}
.ws9_c00422{word-spacing:26.031746pt;}
.ws6_c00422{word-spacing:31.851852pt;}
.wsb_c00422{word-spacing:32.000000pt;}
.wse_c00422{word-spacing:35.555556pt;}
.ws8_c00422{word-spacing:39.259259pt;}
.wsa_c00422{word-spacing:56.111111pt;}
.ws5_c00422{word-spacing:61.871345pt;}
.wsd_c00422{word-spacing:67.037037pt;}
._0_c00422{width:25.858586pt;}
._1_c00422{width:59.333333pt;}
._2_c00422{width:65.925926pt;}
.fs9_c00422{font-size:26.666667pt;}
.fs8_c00422{font-size:32.000000pt;}
.fs5_c00422{font-size:37.333333pt;}
.fs7_c00422{font-size:48.000000pt;}
.fs4_c00422{font-size:53.333333pt;}
.fs2_c00422{font-size:58.666667pt;}
.fs3_c00422{font-size:64.000000pt;}
.fs6_c00422{font-size:69.333333pt;}
.fs0_c00422{font-size:74.666667pt;}
.fs1_c00422{font-size:90.666667pt;}
.y0_c00422{bottom:0.000000pt;}
.y73_c00422{bottom:157.466667pt;}
.y36_c00422{bottom:169.600000pt;}
.y71_c00422{bottom:178.266667pt;}
.y70_c00422{bottom:185.333333pt;}
.y35_c00422{bottom:185.600000pt;}
.y6f_c00422{bottom:198.400000pt;}
.y34_c00422{bottom:201.866667pt;}
.y6e_c00422{bottom:209.866667pt;}
.y33_c00422{bottom:218.133333pt;}
.y6d_c00422{bottom:224.000000pt;}
.y32_c00422{bottom:234.133333pt;}
.y6c_c00422{bottom:236.800000pt;}
.y6b_c00422{bottom:249.600000pt;}
.y31_c00422{bottom:249.866667pt;}
.y6a_c00422{bottom:262.400000pt;}
.y30_c00422{bottom:273.333333pt;}
.y69_c00422{bottom:275.200000pt;}
.y68_c00422{bottom:288.000000pt;}
.y2f_c00422{bottom:289.600000pt;}
.y67_c00422{bottom:300.800000pt;}
.y2e_c00422{bottom:305.600000pt;}
.y66_c00422{bottom:313.866667pt;}
.y2d_c00422{bottom:321.600000pt;}
.y65_c00422{bottom:326.933333pt;}
.y2c_c00422{bottom:337.600000pt;}
.y64_c00422{bottom:339.733333pt;}
.y63_c00422{bottom:352.533333pt;}
.y2b_c00422{bottom:353.600000pt;}
.y62_c00422{bottom:365.066667pt;}
.y2a_c00422{bottom:369.333333pt;}
.y61_c00422{bottom:377.866667pt;}
.y29_c00422{bottom:385.600000pt;}
.y60_c00422{bottom:391.066667pt;}
.y28_c00422{bottom:401.600000pt;}
.y5f_c00422{bottom:416.000000pt;}
.y27_c00422{bottom:417.600000pt;}
.y5e_c00422{bottom:428.800000pt;}
.y26_c00422{bottom:433.600000pt;}
.y5d_c00422{bottom:441.866667pt;}
.y25_c00422{bottom:449.600000pt;}
.y5c_c00422{bottom:464.666667pt;}
.y24_c00422{bottom:465.333333pt;}
.y23_c00422{bottom:481.333333pt;}
.y5b_c00422{bottom:483.866667pt;}
.y5a_c00422{bottom:494.800000pt;}
.y22_c00422{bottom:502.666667pt;}
.y59_c00422{bottom:509.466667pt;}
.y58_c00422{bottom:520.666667pt;}
.y21_c00422{bottom:520.933333pt;}
.y57_c00422{bottom:535.066667pt;}
.y20_c00422{bottom:536.933333pt;}
.y56_c00422{bottom:548.133333pt;}
.y1f_c00422{bottom:552.933333pt;}
.y55_c00422{bottom:558.666667pt;}
.y1e_c00422{bottom:568.933333pt;}
.y54_c00422{bottom:573.733333pt;}
.y1d_c00422{bottom:584.933333pt;}
.y53_c00422{bottom:586.533333pt;}
.y52_c00422{bottom:599.600000pt;}
.y1c_c00422{bottom:600.666667pt;}
.y51_c00422{bottom:609.866667pt;}
.y1b_c00422{bottom:616.400000pt;}
.y50_c00422{bottom:623.733333pt;}
.y1a_c00422{bottom:632.400000pt;}
.y4f_c00422{bottom:638.133333pt;}
.y19_c00422{bottom:648.133333pt;}
.y4e_c00422{bottom:651.200000pt;}
.y4d_c00422{bottom:662.133333pt;}
.y18_c00422{bottom:664.133333pt;}
.y4c_c00422{bottom:674.000000pt;}
.y17_c00422{bottom:680.133333pt;}
.y4b_c00422{bottom:689.333333pt;}
.y16_c00422{bottom:696.133333pt;}
.y4a_c00422{bottom:700.800000pt;}
.y15_c00422{bottom:712.133333pt;}
.y49_c00422{bottom:712.266667pt;}
.y48_c00422{bottom:726.400000pt;}
.y14_c00422{bottom:727.866667pt;}
.y47_c00422{bottom:739.200000pt;}
.y13_c00422{bottom:744.133333pt;}
.y46_c00422{bottom:752.266667pt;}
.y12_c00422{bottom:760.133333pt;}
.y45_c00422{bottom:766.666667pt;}
.y11_c00422{bottom:775.866667pt;}
.y44_c00422{bottom:781.866667pt;}
.y10_c00422{bottom:791.866667pt;}
.y43_c00422{bottom:799.733333pt;}
.yf_c00422{bottom:807.866667pt;}
.y42_c00422{bottom:815.733333pt;}
.ye_c00422{bottom:823.600000pt;}
.y41_c00422{bottom:831.733333pt;}
.yd_c00422{bottom:839.333333pt;}
.y40_c00422{bottom:847.066667pt;}
.yc_c00422{bottom:855.600000pt;}
.y3f_c00422{bottom:863.066667pt;}
.yb_c00422{bottom:871.333333pt;}
.y3e_c00422{bottom:881.200000pt;}
.ya_c00422{bottom:887.600000pt;}
.y3d_c00422{bottom:898.533333pt;}
.y9_c00422{bottom:903.333333pt;}
.y3c_c00422{bottom:914.533333pt;}
.y8_c00422{bottom:919.333333pt;}
.y3b_c00422{bottom:930.533333pt;}
.y7_c00422{bottom:935.066667pt;}
.y3a_c00422{bottom:949.200000pt;}
.y6_c00422{bottom:951.066667pt;}
.y5_c00422{bottom:967.066667pt;}
.y4_c00422{bottom:983.066667pt;}
.y39_c00422{bottom:983.733333pt;}
.y3_c00422{bottom:998.666667pt;}
.y38_c00422{bottom:1002.266667pt;}
.y1_c00422{bottom:1023.733333pt;}
.y2_c00422{bottom:1025.600000pt;}
.y37_c00422{bottom:1122.533333pt;}
.y72_c00422{bottom:1126.133333pt;}
.ha_c00422{height:26.666667pt;}
.h9_c00422{height:32.000000pt;}
.h6_c00422{height:37.333333pt;}
.h8_c00422{height:48.000000pt;}
.h5_c00422{height:53.333333pt;}
.h3_c00422{height:58.666667pt;}
.h4_c00422{height:64.000000pt;}
.h7_c00422{height:69.333333pt;}
.h1_c00422{height:74.666667pt;}
.h2_c00422{height:90.666667pt;}
.h0_c00422{height:1128.000000pt;}
.w0_c00422{width:851.840007pt;}
.w1_c00422{width:852.000000pt;}
.x0_c00422{left:0.000000pt;}
.x89_c00422{left:80.266667pt;}
.x8_c00422{left:88.933333pt;}
.x75_c00422{left:89.866667pt;}
.x10_c00422{left:91.866667pt;}
.x44_c00422{left:92.800000pt;}
.x6b_c00422{left:93.733333pt;}
.x84_c00422{left:94.800000pt;}
.x8e_c00422{left:96.000000pt;}
.x94_c00422{left:96.933333pt;}
.xa6_c00422{left:98.133333pt;}
.xad_c00422{left:100.266667pt;}
.x7f_c00422{left:108.400000pt;}
.x77_c00422{left:112.266667pt;}
.x97_c00422{left:113.466667pt;}
.x6f_c00422{left:114.400000pt;}
.x58_c00422{left:116.000000pt;}
.x51_c00422{left:117.733333pt;}
.x37_c00422{left:121.600000pt;}
.x96_c00422{left:122.800000pt;}
.xab_c00422{left:124.666667pt;}
.x11_c00422{left:126.133333pt;}
.x92_c00422{left:127.733333pt;}
.x19_c00422{left:129.066667pt;}
.x78_c00422{left:131.200000pt;}
.x8a_c00422{left:132.400000pt;}
.x82_c00422{left:133.333333pt;}
.x52_c00422{left:134.666667pt;}
.x1e_c00422{left:138.400000pt;}
.x46_c00422{left:139.733333pt;}
.x5e_c00422{left:144.933333pt;}
.x4c_c00422{left:146.800000pt;}
.x29_c00422{left:148.266667pt;}
.x85_c00422{left:149.866667pt;}
.x3b_c00422{left:151.333333pt;}
.x7b_c00422{left:152.800000pt;}
.x41_c00422{left:153.866667pt;}
.x38_c00422{left:156.133333pt;}
.x9e_c00422{left:157.333333pt;}
.x95_c00422{left:158.266667pt;}
.x2a_c00422{left:160.400000pt;}
.x12_c00422{left:161.600000pt;}
.x31_c00422{left:162.533333pt;}
.x5f_c00422{left:164.133333pt;}
.x9_c00422{left:165.733333pt;}
.x3c_c00422{left:168.933333pt;}
.x1f_c00422{left:171.066667pt;}
.x9a_c00422{left:173.733333pt;}
.x59_c00422{left:174.933333pt;}
.x42_c00422{left:176.266667pt;}
.x39_c00422{left:177.866667pt;}
.x47_c00422{left:179.733333pt;}
.x2b_c00422{left:180.933333pt;}
.x70_c00422{left:181.866667pt;}
.x63_c00422{left:183.200000pt;}
.x80_c00422{left:184.933333pt;}
.xae_c00422{left:186.666667pt;}
.x9b_c00422{left:187.866667pt;}
.x32_c00422{left:189.733333pt;}
.x13_c00422{left:190.666667pt;}
.xac_c00422{left:192.133333pt;}
.x20_c00422{left:193.466667pt;}
.x1a_c00422{left:197.866667pt;}
.xa_c00422{left:199.600000pt;}
.x48_c00422{left:201.200000pt;}
.xa0_c00422{left:202.133333pt;}
.x86_c00422{left:203.600000pt;}
.x72_c00422{left:205.066667pt;}
.x5a_c00422{left:206.000000pt;}
.x33_c00422{left:208.933333pt;}
.xa1_c00422{left:209.866667pt;}
.x7c_c00422{left:211.333333pt;}
.x8b_c00422{left:213.066667pt;}
.x64_c00422{left:214.800000pt;}
.x2c_c00422{left:216.400000pt;}
.x1b_c00422{left:217.733333pt;}
.xa2_c00422{left:219.466667pt;}
.x26_c00422{left:221.466667pt;}
.x73_c00422{left:222.800000pt;}
.xb_c00422{left:224.533333pt;}
.x9f_c00422{left:225.466667pt;}
.x14_c00422{left:228.133333pt;}
.x6c_c00422{left:229.733333pt;}
.x83_c00422{left:231.866667pt;}
.x8f_c00422{left:233.866667pt;}
.x3d_c00422{left:237.066667pt;}
.x21_c00422{left:238.533333pt;}
.x9c_c00422{left:239.733333pt;}
.x2d_c00422{left:242.000000pt;}
.xa7_c00422{left:242.933333pt;}
.x5b_c00422{left:244.133333pt;}
.x98_c00422{left:245.200000pt;}
.x60_c00422{left:246.266667pt;}
.x76_c00422{left:247.866667pt;}
.xc_c00422{left:249.466667pt;}
.x93_c00422{left:250.400000pt;}
.x3e_c00422{left:255.333333pt;}
.x61_c00422{left:256.266667pt;}
.x49_c00422{left:257.200000pt;}
.x34_c00422{left:259.200000pt;}
.x53_c00422{left:261.333333pt;}
.x65_c00422{left:262.533333pt;}
.x5c_c00422{left:264.266667pt;}
.x2e_c00422{left:265.333333pt;}
.x87_c00422{left:267.866667pt;}
.x71_c00422{left:270.000000pt;}
.xd_c00422{left:271.200000pt;}
.x66_c00422{left:272.800000pt;}
.x79_c00422{left:274.400000pt;}
.x62_c00422{left:275.466667pt;}
.xa3_c00422{left:276.666667pt;}
.x4d_c00422{left:277.600000pt;}
.x1c_c00422{left:278.533333pt;}
.x45_c00422{left:282.266667pt;}
.x22_c00422{left:285.200000pt;}
.x81_c00422{left:286.933333pt;}
.x54_c00422{left:288.266667pt;}
.x99_c00422{left:289.333333pt;}
.x1_c00422{left:290.533333pt;}
.x3a_c00422{left:291.466667pt;}
.x8c_c00422{left:293.066667pt;}
.x90_c00422{left:294.133333pt;}
.x67_c00422{left:296.800000pt;}
.x5d_c00422{left:298.533333pt;}
.x74_c00422{left:299.866667pt;}
.x4e_c00422{left:300.933333pt;}
.x15_c00422{left:302.000000pt;}
.x3f_c00422{left:305.200000pt;}
.x6d_c00422{left:306.133333pt;}
.x55_c00422{left:307.466667pt;}
.xa4_c00422{left:308.666667pt;}
.x91_c00422{left:312.000000pt;}
.x2_c00422{left:314.266667pt;}
.x88_c00422{left:315.200000pt;}
.x23_c00422{left:316.266667pt;}
.x35_c00422{left:317.466667pt;}
.x43_c00422{left:318.666667pt;}
.x4f_c00422{left:320.800000pt;}
.xe_c00422{left:323.333333pt;}
.x68_c00422{left:324.666667pt;}
.xa5_c00422{left:326.266667pt;}
.x16_c00422{left:329.200000pt;}
.x7d_c00422{left:330.400000pt;}
.x24_c00422{left:332.000000pt;}
.x7a_c00422{left:333.333333pt;}
.x69_c00422{left:334.266667pt;}
.x40_c00422{left:336.933333pt;}
.x36_c00422{left:338.000000pt;}
.xa9_c00422{left:341.200000pt;}
.x2f_c00422{left:342.800000pt;}
.x4a_c00422{left:343.866667pt;}
.x56_c00422{left:344.933333pt;}
.xf_c00422{left:346.666667pt;}
.x17_c00422{left:348.133333pt;}
.x27_c00422{left:350.133333pt;}
.x3_c00422{left:351.333333pt;}
.x6a_c00422{left:353.200000pt;}
.xa8_c00422{left:354.800000pt;}
.x50_c00422{left:355.733333pt;}
.x30_c00422{left:358.133333pt;}
.x4b_c00422{left:359.600000pt;}
.x8d_c00422{left:361.466667pt;}
.x1d_c00422{left:362.400000pt;}
.x6e_c00422{left:363.333333pt;}
.x28_c00422{left:365.200000pt;}
.x25_c00422{left:366.533333pt;}
.x57_c00422{left:367.600000pt;}
.xaa_c00422{left:369.333333pt;}
.x9d_c00422{left:370.800000pt;}
.x7e_c00422{left:372.666667pt;}
.x18_c00422{left:384.666667pt;}
.x4_c00422{left:388.800000pt;}
.xaf_c00422{left:393.333333pt;}
.xd4_c00422{left:394.266667pt;}
.x131_c00422{left:395.333333pt;}
.x12e_c00422{left:397.466667pt;}
.x129_c00422{left:398.666667pt;}
.x146_c00422{left:400.133333pt;}
.x150_c00422{left:401.066667pt;}
.x5_c00422{left:407.066667pt;}
.xff_c00422{left:408.000000pt;}
.xb6_c00422{left:409.600000pt;}
.xdd_c00422{left:410.666667pt;}
.x142_c00422{left:412.800000pt;}
.x14f_c00422{left:415.333333pt;}
.x140_c00422{left:418.933333pt;}
.x103_c00422{left:421.333333pt;}
.x10a_c00422{left:422.266667pt;}
.xbe_c00422{left:426.266667pt;}
.x6_c00422{left:427.200000pt;}
.x13e_c00422{left:428.133333pt;}
.xb7_c00422{left:429.066667pt;}
.x132_c00422{left:430.400000pt;}
.x107_c00422{left:431.333333pt;}
.xc4_c00422{left:433.200000pt;}
.x149_c00422{left:435.200000pt;}
.x10b_c00422{left:441.200000pt;}
.xf9_c00422{left:442.400000pt;}
.xcb_c00422{left:443.466667pt;}
.xf5_c00422{left:448.000000pt;}
.x141_c00422{left:449.600000pt;}
.xb0_c00422{left:452.533333pt;}
.x12a_c00422{left:453.733333pt;}
.xe5_c00422{left:454.666667pt;}
.xde_c00422{left:455.866667pt;}
.xec_c00422{left:457.866667pt;}
.x118_c00422{left:459.333333pt;}
.x10e_c00422{left:461.866667pt;}
.x10c_c00422{left:463.600000pt;}
.x143_c00422{left:465.600000pt;}
.xbf_c00422{left:467.200000pt;}
.x13f_c00422{left:469.066667pt;}
.xbd_c00422{left:470.000000pt;}
.xc5_c00422{left:470.933333pt;}
.xed_c00422{left:473.200000pt;}
.xd2_c00422{left:475.333333pt;}
.xfc_c00422{left:476.533333pt;}
.x14d_c00422{left:477.466667pt;}
.xb1_c00422{left:479.733333pt;}
.x138_c00422{left:482.266667pt;}
.x108_c00422{left:483.200000pt;}
.x114_c00422{left:486.400000pt;}
.xe6_c00422{left:487.333333pt;}
.xf6_c00422{left:488.266667pt;}
.xdf_c00422{left:489.733333pt;}
.xfa_c00422{left:492.266667pt;}
.xee_c00422{left:493.333333pt;}
.xd5_c00422{left:494.800000pt;}
.x119_c00422{left:496.400000pt;}
.x125_c00422{left:499.200000pt;}
.x14b_c00422{left:501.066667pt;}
.xcc_c00422{left:502.666667pt;}
.x113_c00422{left:504.666667pt;}
.x111_c00422{left:506.133333pt;}
.x12f_c00422{left:507.466667pt;}
.x100_c00422{left:509.333333pt;}
.xc6_c00422{left:510.933333pt;}
.x126_c00422{left:512.000000pt;}
.x144_c00422{left:512.933333pt;}
.xb2_c00422{left:515.866667pt;}
.xc0_c00422{left:518.133333pt;}
.xef_c00422{left:519.600000pt;}
.xd3_c00422{left:520.800000pt;}
.x115_c00422{left:522.266667pt;}
.xd6_c00422{left:523.600000pt;}
.xc7_c00422{left:526.266667pt;}
.x104_c00422{left:527.333333pt;}
.xe0_c00422{left:531.066667pt;}
.xf0_c00422{left:533.066667pt;}
.x12b_c00422{left:535.066667pt;}
.xe7_c00422{left:536.666667pt;}
.xfd_c00422{left:540.266667pt;}
.x122_c00422{left:542.800000pt;}
.x105_c00422{left:544.000000pt;}
.x116_c00422{left:545.200000pt;}
.xf7_c00422{left:546.133333pt;}
.x13b_c00422{left:547.333333pt;}
.xb8_c00422{left:548.400000pt;}
.x11f_c00422{left:549.600000pt;}
.xfb_c00422{left:550.533333pt;}
.xe1_c00422{left:554.133333pt;}
.x139_c00422{left:555.200000pt;}
.xcd_c00422{left:557.333333pt;}
.x11a_c00422{left:558.533333pt;}
.x123_c00422{left:561.066667pt;}
.x109_c00422{left:563.466667pt;}
.xc1_c00422{left:564.800000pt;}
.xe8_c00422{left:565.733333pt;}
.x10f_c00422{left:568.133333pt;}
.xd9_c00422{left:569.733333pt;}
.x13c_c00422{left:571.733333pt;}
.xf1_c00422{left:572.800000pt;}
.xb9_c00422{left:574.266667pt;}
.x11b_c00422{left:575.200000pt;}
.xce_c00422{left:576.533333pt;}
.x148_c00422{left:578.000000pt;}
.x133_c00422{left:579.200000pt;}
.x136_c00422{left:580.800000pt;}
.xfe_c00422{left:582.133333pt;}
.xcf_c00422{left:583.600000pt;}
.xb3_c00422{left:584.933333pt;}
.xe9_c00422{left:588.400000pt;}
.xf2_c00422{left:589.733333pt;}
.xd0_c00422{left:591.866667pt;}
.xd7_c00422{left:593.600000pt;}
.xc8_c00422{left:595.333333pt;}
.x101_c00422{left:596.666667pt;}
.x106_c00422{left:597.733333pt;}
.x127_c00422{left:599.200000pt;}
.x110_c00422{left:600.800000pt;}
.xda_c00422{left:602.400000pt;}
.x11c_c00422{left:603.733333pt;}
.xba_c00422{left:604.933333pt;}
.x12c_c00422{left:607.066667pt;}
.x124_c00422{left:608.133333pt;}
.xe2_c00422{left:609.200000pt;}
.xd1_c00422{left:613.333333pt;}
.x112_c00422{left:614.933333pt;}
.x117_c00422{left:616.000000pt;}
.xd8_c00422{left:616.933333pt;}
.xc2_c00422{left:618.533333pt;}
.xf3_c00422{left:623.066667pt;}
.xbb_c00422{left:625.066667pt;}
.x134_c00422{left:627.466667pt;}
.xc3_c00422{left:630.666667pt;}
.xb4_c00422{left:632.266667pt;}
.xea_c00422{left:633.466667pt;}
.x11d_c00422{left:634.800000pt;}
.x135_c00422{left:636.400000pt;}
.x137_c00422{left:639.333333pt;}
.x147_c00422{left:640.266667pt;}
.xbc_c00422{left:644.000000pt;}
.xdb_c00422{left:646.533333pt;}
.xc9_c00422{left:647.866667pt;}
.x14e_c00422{left:648.933333pt;}
.xf8_c00422{left:650.800000pt;}
.x151_c00422{left:652.133333pt;}
.x120_c00422{left:653.866667pt;}
.x102_c00422{left:657.866667pt;}
.xe3_c00422{left:659.066667pt;}
.x11e_c00422{left:660.133333pt;}
.x13d_c00422{left:661.733333pt;}
.x14a_c00422{left:664.933333pt;}
.xca_c00422{left:667.066667pt;}
.x7_c00422{left:668.800000pt;}
.x13a_c00422{left:670.400000pt;}
.x145_c00422{left:674.400000pt;}
.x121_c00422{left:675.600000pt;}
.x128_c00422{left:677.600000pt;}
.xb5_c00422{left:679.333333pt;}
.xe4_c00422{left:680.533333pt;}
.x12d_c00422{left:681.600000pt;}
.xeb_c00422{left:683.066667pt;}
.x10d_c00422{left:684.266667pt;}
.xdc_c00422{left:685.200000pt;}
.xf4_c00422{left:686.400000pt;}
.x14c_c00422{left:687.866667pt;}
.x130_c00422{left:692.933333pt;}
.x152_c00422{left:722.266667pt;}
}





/* 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_c00423 {
    display:none;
  }
  .loading-indicator_c00423.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00423 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_c00423 { 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_c00423" -> "#page-container .classname_c00423")
 */
.pf_c00423 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00423 { /* 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_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00423 { /* 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_c00423 { /* 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_c00423 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00423 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00423 {overflow:visible;}
  }
}
.c_c00423 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00423 { /* 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_c00423:after { /* webkit #35443 */
  content: '';
}
.t_c00423:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00423 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 */
}
.__c00423 { /* 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_c00423 { /* info for Javascript */
  display:none;
}
.l_c00423 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00423 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00423 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00423: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_c00423 {
    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_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00423.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_c00423 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00423{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00423;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.000000;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;}
.ma6_c00423{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00423{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m13_c00423{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m25_c00423{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m12_c00423{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m23_c00423{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00423{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m14_c00423{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00423{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m24_c00423{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00423{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.meb_c00423{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m26_c00423{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00423{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m49_c00423{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m44_c00423{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md0_c00423{transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);}
.mae_c00423{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m15_c00423{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00423{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00423{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m36_c00423{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00423{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mb_c00423{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.me4_c00423{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00423{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m83_c00423{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00423{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00423{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00423{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00423{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00423{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00423{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m9_c00423{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m112_c00423{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m7_c00423{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00423{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m114_c00423{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m31_c00423{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00423{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00423{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00423{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m95_c00423{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mec_c00423{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m53_c00423{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m91_c00423{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00423{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m92_c00423{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00423{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m45_c00423{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00423{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m41_c00423{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m10_c00423{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m51_c00423{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00423{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00423{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md5_c00423{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m90_c00423{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00423{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma_c00423{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00423{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00423{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00423{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00423{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m76_c00423{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m60_c00423{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me3_c00423{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mab_c00423{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m96_c00423{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00423{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m56_c00423{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m82_c00423{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00423{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00423{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m87_c00423{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00423{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m94_c00423{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md4_c00423{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m113_c00423{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m101_c00423{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me1_c00423{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00423{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00423{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m43_c00423{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00423{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m80_c00423{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00423{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mac_c00423{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00423{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00423{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mf_c00423{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00423{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00423{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m93_c00423{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m52_c00423{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m84_c00423{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc_c00423{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m72_c00423{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m29_c00423{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m65_c00423{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m105_c00423{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m46_c00423{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m77_c00423{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m102_c00423{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m103_c00423{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m20_c00423{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m100_c00423{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m71_c00423{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me2_c00423{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00423{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m61_c00423{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00423{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m85_c00423{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mff_c00423{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m33_c00423{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md1_c00423{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m73_c00423{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m69_c00423{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m21_c00423{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00423{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00423{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00423{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m59_c00423{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m88_c00423{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m98_c00423{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00423{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00423{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00423{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00423{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m11_c00423{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md8_c00423{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00423{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me5_c00423{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.md7_c00423{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00423{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m16_c00423{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00423{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m106_c00423{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.maf_c00423{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m47_c00423{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m58_c00423{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mba_c00423{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m78_c00423{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00423{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m40_c00423{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00423{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00423{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00423{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m55_c00423{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mce_c00423{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m28_c00423{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00423{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m86_c00423{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me7_c00423{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me8_c00423{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mee_c00423{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2_c00423{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00423{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m110_c00423{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00423{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m34_c00423{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00423{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m115_c00423{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m57_c00423{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m104_c00423{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m22_c00423{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m30_c00423{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00423{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6_c00423{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00423{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00423{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00423{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00423{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00423{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00423{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00423{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m62_c00423{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md_c00423{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00423{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m70_c00423{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00423{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me_c00423{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m54_c00423{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00423{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m74_c00423{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00423{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mea_c00423{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00423{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00423{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00423{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00423{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me9_c00423{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m42_c00423{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8_c00423{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m50_c00423{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4_c00423{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00423{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md2_c00423{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00423{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m97_c00423{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m89_c00423{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00423{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00423{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00423{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m19_c00423{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m48_c00423{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md6_c00423{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m79_c00423{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00423{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00423{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m63_c00423{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mde_c00423{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m32_c00423{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md3_c00423{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00423{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mca_c00423{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00423{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md9_c00423{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00423{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mda_c00423{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00423{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00423{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00423{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m35_c00423{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00423{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5_c00423{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00423{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00423{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mad_c00423{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m68_c00423{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m67_c00423{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00423{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m64_c00423{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);}
.m10b_c00423{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m27_c00423{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00423{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00423{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m99_c00423{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00423{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00423{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00423{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00423{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m39_c00423{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m66_c00423{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m81_c00423{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00423{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00423{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m38_c00423{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.med_c00423{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m37_c00423{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00423{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.me0_c00423{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00423{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00423{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mef_c00423{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m111_c00423{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00423{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m0_c00423{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00423{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00423{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00423{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00423{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00423{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00423{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m75_c00423{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00423{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00423{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00423{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00423{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.maa_c00423{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.me6_c00423{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00423{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m108_c00423{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m109_c00423{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m107_c00423{transform:matrix(0.437000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437000,0.000000,0.000000,0.250000,0,0);}
.m1_c00423{transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);}
.m18_c00423{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls3_c00423{letter-spacing:0.000000px;}
.ls2_c00423{letter-spacing:59.285714px;}
.ls1_c00423{letter-spacing:61.426230px;}
.ls0_c00423{letter-spacing:81.503817px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{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__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00423{word-spacing:-114.503817px;}
.ws6_c00423{word-spacing:-94.426230px;}
.wsc_c00423{word-spacing:-89.285714px;}
.ws13_c00423{word-spacing:-12.460512px;}
.wse_c00423{word-spacing:-10.571429px;}
.ws10_c00423{word-spacing:-8.798883px;}
.ws11_c00423{word-spacing:-8.292683px;}
.ws14_c00423{word-spacing:-1.972644px;}
.ws12_c00423{word-spacing:-0.856574px;}
.ws15_c00423{word-spacing:0.000000px;}
.wsf_c00423{word-spacing:9.473684px;}
.wsd_c00423{word-spacing:15.000000px;}
.ws8_c00423{word-spacing:18.125000px;}
.ws2_c00423{word-spacing:19.959885px;}
.ws7_c00423{word-spacing:24.491803px;}
.ws9_c00423{word-spacing:25.714286px;}
.ws3_c00423{word-spacing:28.426230px;}
.wsa_c00423{word-spacing:29.285714px;}
.ws0_c00423{word-spacing:32.360656px;}
.wsb_c00423{word-spacing:35.833333px;}
.ws5_c00423{word-spacing:43.923664px;}
.ws1_c00423{word-spacing:48.503817px;}
._1_c00423{margin-left:-81.503817px;}
._6_c00423{margin-left:-61.426230px;}
._8_c00423{margin-left:-59.285714px;}
._0_c00423{margin-left:-4.580153px;}
._5_c00423{width:3.934426px;}
._a_c00423{width:41.875000px;}
._b_c00423{width:48.125000px;}
._9_c00423{width:52.812500px;}
._2_c00423{width:57.491803px;}
._7_c00423{width:59.285714px;}
._3_c00423{width:65.360656px;}
._4_c00423{width:71.262295px;}
.fc0_c00423{color:transparent;}
.fs6_c00423{font-size:42.000000px;}
.fs5_c00423{font-size:48.000000px;}
.fs4_c00423{font-size:54.000000px;}
.fs2_c00423{font-size:60.000000px;}
.fs3_c00423{font-size:66.000000px;}
.fs0_c00423{font-size:72.000000px;}
.fs1_c00423{font-size:84.000000px;}
.y0_c00423{bottom:0.000000px;}
.y67_c00423{bottom:200.550000px;}
.y37_c00423{bottom:205.800000px;}
.y66_c00423{bottom:215.700000px;}
.y36_c00423{bottom:223.800000px;}
.y65_c00423{bottom:230.400000px;}
.y35_c00423{bottom:241.050000px;}
.y64_c00423{bottom:244.050000px;}
.y63_c00423{bottom:258.150000px;}
.y34_c00423{bottom:259.050000px;}
.y62_c00423{bottom:272.550000px;}
.y33_c00423{bottom:276.750000px;}
.y61_c00423{bottom:290.550000px;}
.y32_c00423{bottom:294.450000px;}
.y60_c00423{bottom:309.900000px;}
.y31_c00423{bottom:316.050000px;}
.y5f_c00423{bottom:324.300000px;}
.y30_c00423{bottom:333.000000px;}
.y5e_c00423{bottom:339.150000px;}
.y5d_c00423{bottom:353.550000px;}
.y2f_c00423{bottom:359.250000px;}
.y5c_c00423{bottom:368.700000px;}
.y2e_c00423{bottom:381.600000px;}
.y2d_c00423{bottom:403.500000px;}
.y2c_c00423{bottom:423.000000px;}
.y5b_c00423{bottom:423.900000px;}
.y2b_c00423{bottom:441.150000px;}
.y5a_c00423{bottom:441.900000px;}
.y2a_c00423{bottom:459.450000px;}
.y59_c00423{bottom:459.900000px;}
.y29_c00423{bottom:476.700000px;}
.y58_c00423{bottom:477.900000px;}
.y28_c00423{bottom:494.700000px;}
.y57_c00423{bottom:495.900000px;}
.y27_c00423{bottom:512.400000px;}
.y56_c00423{bottom:513.600000px;}
.y26_c00423{bottom:530.400000px;}
.y55_c00423{bottom:531.600000px;}
.y25_c00423{bottom:548.100000px;}
.y54_c00423{bottom:549.300000px;}
.y24_c00423{bottom:566.100000px;}
.y53_c00423{bottom:576.000000px;}
.y23_c00423{bottom:583.800000px;}
.y52_c00423{bottom:594.000000px;}
.y22_c00423{bottom:601.800000px;}
.y51_c00423{bottom:612.000000px;}
.y21_c00423{bottom:619.800000px;}
.y50_c00423{bottom:629.700000px;}
.y20_c00423{bottom:637.800000px;}
.y4f_c00423{bottom:647.700000px;}
.y1f_c00423{bottom:655.800000px;}
.y4e_c00423{bottom:670.200000px;}
.y1e_c00423{bottom:673.800000px;}
.y4d_c00423{bottom:688.200000px;}
.y1d_c00423{bottom:691.800000px;}
.y4c_c00423{bottom:706.200000px;}
.y1c_c00423{bottom:709.800000px;}
.y4b_c00423{bottom:723.900000px;}
.y1b_c00423{bottom:727.800000px;}
.y4a_c00423{bottom:741.900000px;}
.y1a_c00423{bottom:745.800000px;}
.y19_c00423{bottom:763.800000px;}
.y49_c00423{bottom:763.950000px;}
.y18_c00423{bottom:781.500000px;}
.y48_c00423{bottom:781.950000px;}
.y47_c00423{bottom:799.200000px;}
.y17_c00423{bottom:799.500000px;}
.y46_c00423{bottom:799.800000px;}
.y16_c00423{bottom:817.500000px;}
.y45_c00423{bottom:817.800000px;}
.y15_c00423{bottom:835.500000px;}
.y44_c00423{bottom:835.800000px;}
.y14_c00423{bottom:853.500000px;}
.y13_c00423{bottom:871.500000px;}
.y12_c00423{bottom:889.500000px;}
.y11_c00423{bottom:907.500000px;}
.y10_c00423{bottom:925.200000px;}
.yf_c00423{bottom:942.900000px;}
.y43_c00423{bottom:943.200000px;}
.ye_c00423{bottom:960.900000px;}
.y42_c00423{bottom:961.200000px;}
.yd_c00423{bottom:986.850000px;}
.y40_c00423{bottom:987.000000px;}
.yc_c00423{bottom:999.450000px;}
.y3f_c00423{bottom:1001.100000px;}
.y41_c00423{bottom:1014.450000px;}
.y3e_c00423{bottom:1015.200000px;}
.yb_c00423{bottom:1015.950000px;}
.y3d_c00423{bottom:1028.850000px;}
.ya_c00423{bottom:1029.900000px;}
.y9_c00423{bottom:1043.400000px;}
.y3c_c00423{bottom:1051.500000px;}
.y8_c00423{bottom:1058.850000px;}
.y3b_c00423{bottom:1069.500000px;}
.y7_c00423{bottom:1073.550000px;}
.y6_c00423{bottom:1086.750000px;}
.y3a_c00423{bottom:1093.350000px;}
.y5_c00423{bottom:1100.100000px;}
.y39_c00423{bottom:1111.350000px;}
.y4_c00423{bottom:1115.700000px;}
.y38_c00423{bottom:1129.650000px;}
.y3_c00423{bottom:1132.200000px;}
.y1_c00423{bottom:1153.800000px;}
.y2_c00423{bottom:1155.600000px;}
.h8_c00423{height:42.000000px;}
.h7_c00423{height:48.000000px;}
.h6_c00423{height:54.000000px;}
.h4_c00423{height:60.000000px;}
.h5_c00423{height:66.000000px;}
.h2_c00423{height:72.000000px;}
.h3_c00423{height:84.000000px;}
.h1_c00423{height:1272.750000px;}
.h0_c00423{height:1272.960022px;}
.w0_c00423{width:958.320007px;}
.w1_c00423{width:958.500000px;}
.x0_c00423{left:0.000000px;}
.x9d_c00423{left:176.400000px;}
.x1_c00423{left:177.900000px;}
.x47_c00423{left:178.950000px;}
.x9b_c00423{left:186.150000px;}
.xd_c00423{left:193.650000px;}
.x5a_c00423{left:195.600000px;}
.x4b_c00423{left:196.950000px;}
.x3_c00423{left:208.050000px;}
.x9e_c00423{left:212.700000px;}
.xa4_c00423{left:213.750000px;}
.xa5_c00423{left:215.850000px;}
.x37_c00423{left:219.000000px;}
.x75_c00423{left:220.800000px;}
.x92_c00423{left:222.750000px;}
.x62_c00423{left:224.250000px;}
.x77_c00423{left:226.050000px;}
.x4c_c00423{left:227.250000px;}
.xa0_c00423{left:229.200000px;}
.x24_c00423{left:230.700000px;}
.x63_c00423{left:234.000000px;}
.x2b_c00423{left:235.800000px;}
.x87_c00423{left:237.000000px;}
.x70_c00423{left:238.650000px;}
.x14_c00423{left:240.150000px;}
.x81_c00423{left:242.250000px;}
.xe_c00423{left:244.050000px;}
.x6e_c00423{left:247.050000px;}
.x55_c00423{left:248.400000px;}
.x25_c00423{left:249.750000px;}
.x35_c00423{left:251.700000px;}
.x5e_c00423{left:253.500000px;}
.x15_c00423{left:255.150000px;}
.x5b_c00423{left:256.500000px;}
.x88_c00423{left:258.900000px;}
.x64_c00423{left:260.250000px;}
.x16_c00423{left:262.350000px;}
.x4_c00423{left:263.850000px;}
.xf_c00423{left:264.900000px;}
.x71_c00423{left:266.700000px;}
.x93_c00423{left:268.800000px;}
.x17_c00423{left:269.850000px;}
.x78_c00423{left:272.550000px;}
.x3d_c00423{left:273.900000px;}
.x56_c00423{left:275.700000px;}
.x18_c00423{left:277.050000px;}
.x97_c00423{left:279.450000px;}
.x91_c00423{left:280.500000px;}
.x65_c00423{left:282.600000px;}
.x5_c00423{left:283.650000px;}
.x26_c00423{left:287.250000px;}
.x3e_c00423{left:288.300000px;}
.x69_c00423{left:290.250000px;}
.xa3_c00423{left:291.900000px;}
.x2c_c00423{left:294.150000px;}
.x98_c00423{left:295.350000px;}
.x7d_c00423{left:297.750000px;}
.x19_c00423{left:298.950000px;}
.x27_c00423{left:300.900000px;}
.x38_c00423{left:302.100000px;}
.x42_c00423{left:304.200000px;}
.x76_c00423{left:305.700000px;}
.x10_c00423{left:308.100000px;}
.x79_c00423{left:310.650000px;}
.x94_c00423{left:312.900000px;}
.x1a_c00423{left:313.950000px;}
.x2d_c00423{left:316.050000px;}
.x2f_c00423{left:317.250000px;}
.x8f_c00423{left:318.600000px;}
.x99_c00423{left:319.650000px;}
.x74_c00423{left:322.500000px;}
.x39_c00423{left:324.000000px;}
.x3f_c00423{left:325.350000px;}
.x43_c00423{left:326.550000px;}
.x7a_c00423{left:327.600000px;}
.x1b_c00423{left:329.100000px;}
.x82_c00423{left:330.450000px;}
.x11_c00423{left:331.500000px;}
.xa1_c00423{left:333.900000px;}
.x57_c00423{left:335.400000px;}
.x95_c00423{left:337.350000px;}
.x6_c00423{left:338.700000px;}
.x7e_c00423{left:340.200000px;}
.x66_c00423{left:343.800000px;}
.x30_c00423{left:345.300000px;}
.x28_c00423{left:347.700000px;}
.x8d_c00423{left:350.250000px;}
.x31_c00423{left:352.200000px;}
.x3a_c00423{left:353.700000px;}
.x8e_c00423{left:354.750000px;}
.x36_c00423{left:356.400000px;}
.x7_c00423{left:357.750000px;}
.x32_c00423{left:359.700000px;}
.x67_c00423{left:361.500000px;}
.x7b_c00423{left:362.850000px;}
.x40_c00423{left:364.500000px;}
.x33_c00423{left:366.150000px;}
.x3b_c00423{left:367.650000px;}
.x50_c00423{left:370.050000px;}
.x29_c00423{left:371.100000px;}
.x1c_c00423{left:373.200000px;}
.x3c_c00423{left:374.850000px;}
.x48_c00423{left:377.250000px;}
.x41_c00423{left:378.900000px;}
.x1d_c00423{left:381.150000px;}
.x44_c00423{left:386.700000px;}
.x58_c00423{left:387.900000px;}
.x51_c00423{left:389.850000px;}
.x9f_c00423{left:391.350000px;}
.x9a_c00423{left:392.700000px;}
.x1e_c00423{left:395.250000px;}
.x8_c00423{left:396.300000px;}
.x6b_c00423{left:397.500000px;}
.x12_c00423{left:400.650000px;}
.x1f_c00423{left:402.450000px;}
.xa6_c00423{left:403.800000px;}
.x49_c00423{left:407.850000px;}
.x89_c00423{left:409.350000px;}
.x20_c00423{left:410.700000px;}
.x5c_c00423{left:413.250000px;}
.x9_c00423{left:415.350000px;}
.x21_c00423{left:417.150000px;}
.x2a_c00423{left:419.100000px;}
.x13_c00423{left:420.150000px;}
.x83_c00423{left:423.000000px;}
.x4d_c00423{left:424.200000px;}
.x2e_c00423{left:425.250000px;}
.x2_c00423{left:427.050000px;}
.x52_c00423{left:429.150000px;}
.x72_c00423{left:433.050000px;}
.x85_c00423{left:434.400000px;}
.xa_c00423{left:435.900000px;}
.x8c_c00423{left:437.700000px;}
.x53_c00423{left:438.900000px;}
.x7f_c00423{left:440.250000px;}
.x9c_c00423{left:443.100000px;}
.x5f_c00423{left:444.300000px;}
.x22_c00423{left:445.500000px;}
.x45_c00423{left:446.550000px;}
.x8a_c00423{left:447.600000px;}
.x6f_c00423{left:452.850000px;}
.x68_c00423{left:454.800000px;}
.x59_c00423{left:457.350000px;}
.x96_c00423{left:458.700000px;}
.x6c_c00423{left:459.750000px;}
.x6a_c00423{left:461.550000px;}
.x73_c00423{left:465.750000px;}
.xb_c00423{left:466.800000px;}
.x4e_c00423{left:468.900000px;}
.x86_c00423{left:470.100000px;}
.x4a_c00423{left:471.300000px;}
.x34_c00423{left:473.100000px;}
.x7c_c00423{left:475.950000px;}
.x90_c00423{left:477.000000px;}
.x80_c00423{left:478.050000px;}
.x4f_c00423{left:479.400000px;}
.x60_c00423{left:481.350000px;}
.x5d_c00423{left:484.200000px;}
.x6d_c00423{left:486.750000px;}
.xa2_c00423{left:489.750000px;}
.x84_c00423{left:494.700000px;}
.x8b_c00423{left:499.500000px;}
.xc_c00423{left:500.700000px;}
.x23_c00423{left:502.050000px;}
.x46_c00423{left:503.100000px;}
.x61_c00423{left:505.800000px;}
.x54_c00423{left:512.700000px;}
.x123_c00423{left:534.900000px;}
.x149_c00423{left:536.400000px;}
.xb9_c00423{left:537.450000px;}
.x13a_c00423{left:542.850000px;}
.x133_c00423{left:549.300000px;}
.x13e_c00423{left:550.800000px;}
.x11e_c00423{left:552.900000px;}
.xc2_c00423{left:554.250000px;}
.xa7_c00423{left:556.200000px;}
.x13c_c00423{left:558.000000px;}
.x141_c00423{left:562.650000px;}
.xb5_c00423{left:564.150000px;}
.xc3_c00423{left:566.850000px;}
.x13b_c00423{left:570.900000px;}
.xe6_c00423{left:571.950000px;}
.x10f_c00423{left:573.150000px;}
.xb6_c00423{left:574.200000px;}
.x134_c00423{left:575.550000px;}
.xf9_c00423{left:577.200000px;}
.x127_c00423{left:578.250000px;}
.xba_c00423{left:579.600000px;}
.xb7_c00423{left:582.150000px;}
.xf2_c00423{left:584.100000px;}
.xdd_c00423{left:586.950000px;}
.x14a_c00423{left:589.350000px;}
.x102_c00423{left:591.150000px;}
.xae_c00423{left:592.500000px;}
.x10b_c00423{left:594.300000px;}
.xcd_c00423{left:596.250000px;}
.xb8_c00423{left:598.350000px;}
.x135_c00423{left:602.850000px;}
.xa8_c00423{left:604.800000px;}
.xfe_c00423{left:606.600000px;}
.xaf_c00423{left:609.000000px;}
.xe1_c00423{left:610.950000px;}
.xc4_c00423{left:615.000000px;}
.x121_c00423{left:616.950000px;}
.x106_c00423{left:618.150000px;}
.xee_c00423{left:619.800000px;}
.x124_c00423{left:621.300000px;}
.xda_c00423{left:622.350000px;}
.xc5_c00423{left:624.000000px;}
.x13d_c00423{left:625.050000px;}
.x142_c00423{left:626.700000px;}
.x10c_c00423{left:628.500000px;}
.xef_c00423{left:632.400000px;}
.xde_c00423{left:636.300000px;}
.x122_c00423{left:637.800000px;}
.x11b_c00423{left:639.300000px;}
.x110_c00423{left:640.500000px;}
.x115_c00423{left:641.550000px;}
.xa9_c00423{left:642.900000px;}
.x132_c00423{left:644.250000px;}
.x10d_c00423{left:645.750000px;}
.x138_c00423{left:648.300000px;}
.xf0_c00423{left:649.350000px;}
.x128_c00423{left:652.350000px;}
.x12c_c00423{left:653.700000px;}
.xff_c00423{left:655.950000px;}
.x11c_c00423{left:657.000000px;}
.xce_c00423{left:660.000000px;}
.xc6_c00423{left:662.850000px;}
.x140_c00423{left:663.900000px;}
.x107_c00423{left:664.950000px;}
.xdf_c00423{left:667.950000px;}
.x111_c00423{left:670.350000px;}
.x12d_c00423{left:671.700000px;}
.xb0_c00423{left:676.350000px;}
.x103_c00423{left:677.850000px;}
.xcf_c00423{left:679.500000px;}
.xaa_c00423{left:680.700000px;}
.x139_c00423{left:682.200000px;}
.x129_c00423{left:683.250000px;}
.xbb_c00423{left:685.800000px;}
.xf3_c00423{left:687.750000px;}
.xfa_c00423{left:689.100000px;}
.xf7_c00423{left:691.350000px;}
.xf1_c00423{left:693.900000px;}
.x136_c00423{left:695.400000px;}
.xb1_c00423{left:697.950000px;}
.x116_c00423{left:700.200000px;}
.xeb_c00423{left:702.300000px;}
.x108_c00423{left:703.800000px;}
.xfb_c00423{left:705.600000px;}
.x14b_c00423{left:706.650000px;}
.x112_c00423{left:709.650000px;}
.x117_c00423{left:712.050000px;}
.x130_c00423{left:713.400000px;}
.x11f_c00423{left:714.600000px;}
.x125_c00423{left:716.250000px;}
.x100_c00423{left:717.900000px;}
.x13f_c00423{left:718.950000px;}
.x146_c00423{left:721.500000px;}
.xd0_c00423{left:722.700000px;}
.xe2_c00423{left:724.050000px;}
.x109_c00423{left:726.450000px;}
.x143_c00423{left:728.250000px;}
.xbc_c00423{left:729.300000px;}
.xfc_c00423{left:731.850000px;}
.xc7_c00423{left:734.850000px;}
.x101_c00423{left:736.200000px;}
.xe3_c00423{left:737.400000px;}
.x10e_c00423{left:739.350000px;}
.xe7_c00423{left:741.300000px;}
.xd1_c00423{left:744.600000px;}
.x104_c00423{left:745.950000px;}
.x131_c00423{left:747.900000px;}
.x137_c00423{left:750.150000px;}
.x14c_c00423{left:751.650000px;}
.x144_c00423{left:753.150000px;}
.xbd_c00423{left:754.500000px;}
.xab_c00423{left:756.300000px;}
.xf4_c00423{left:758.250000px;}
.x113_c00423{left:760.500000px;}
.xc8_c00423{left:762.900000px;}
.xdb_c00423{left:764.100000px;}
.xec_c00423{left:768.150000px;}
.xbe_c00423{left:769.200000px;}
.xd2_c00423{left:770.850000px;}
.xb2_c00423{left:774.300000px;}
.xd7_c00423{left:777.750000px;}
.xe8_c00423{left:779.400000px;}
.x147_c00423{left:781.350000px;}
.xd8_c00423{left:784.200000px;}
.xd3_c00423{left:785.250000px;}
.x118_c00423{left:787.650000px;}
.xed_c00423{left:788.700000px;}
.x10a_c00423{left:792.000000px;}
.x12e_c00423{left:793.350000px;}
.xca_c00423{left:794.550000px;}
.xc9_c00423{left:797.100000px;}
.xd4_c00423{left:798.900000px;}
.x12a_c00423{left:799.950000px;}
.x114_c00423{left:801.150000px;}
.xbf_c00423{left:802.650000px;}
.x148_c00423{left:804.000000px;}
.xd6_c00423{left:805.650000px;}
.xdc_c00423{left:808.800000px;}
.xac_c00423{left:812.100000px;}
.x11d_c00423{left:813.600000px;}
.x12b_c00423{left:816.600000px;}
.xf5_c00423{left:818.400000px;}
.x145_c00423{left:819.750000px;}
.xb3_c00423{left:822.150000px;}
.xe4_c00423{left:824.250000px;}
.xcb_c00423{left:826.200000px;}
.xf8_c00423{left:827.850000px;}
.x119_c00423{left:829.050000px;}
.xd5_c00423{left:834.150000px;}
.xad_c00423{left:835.500000px;}
.xfd_c00423{left:837.000000px;}
.xc0_c00423{left:840.750000px;}
.xb4_c00423{left:842.700000px;}
.xe9_c00423{left:846.000000px;}
.x126_c00423{left:848.550000px;}
.x11a_c00423{left:849.900000px;}
.x105_c00423{left:851.850000px;}
.xe0_c00423{left:853.650000px;}
.x12f_c00423{left:855.150000px;}
.xf6_c00423{left:856.950000px;}
.xc1_c00423{left:858.750000px;}
.xcc_c00423{left:860.700000px;}
.xd9_c00423{left:863.250000px;}
.xea_c00423{left:864.750000px;}
.x120_c00423{left:867.900000px;}
.xe5_c00423{left:872.550000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls3_c00423{letter-spacing:0.000000pt;}
.ls2_c00423{letter-spacing:52.698413pt;}
.ls1_c00423{letter-spacing:54.601093pt;}
.ls0_c00423{letter-spacing:72.447837pt;}
.ws4_c00423{word-spacing:-101.781170pt;}
.ws6_c00423{word-spacing:-83.934426pt;}
.wsc_c00423{word-spacing:-79.365079pt;}
.ws13_c00423{word-spacing:-11.076010pt;}
.wse_c00423{word-spacing:-9.396825pt;}
.ws10_c00423{word-spacing:-7.821229pt;}
.ws11_c00423{word-spacing:-7.371274pt;}
.ws14_c00423{word-spacing:-1.753462pt;}
.ws12_c00423{word-spacing:-0.761399pt;}
.ws15_c00423{word-spacing:0.000000pt;}
.wsf_c00423{word-spacing:8.421053pt;}
.wsd_c00423{word-spacing:13.333333pt;}
.ws8_c00423{word-spacing:16.111111pt;}
.ws2_c00423{word-spacing:17.742120pt;}
.ws7_c00423{word-spacing:21.770492pt;}
.ws9_c00423{word-spacing:22.857143pt;}
.ws3_c00423{word-spacing:25.267760pt;}
.wsa_c00423{word-spacing:26.031746pt;}
.ws0_c00423{word-spacing:28.765027pt;}
.wsb_c00423{word-spacing:31.851852pt;}
.ws5_c00423{word-spacing:39.043257pt;}
.ws1_c00423{word-spacing:43.114504pt;}
._1_c00423{margin-left:-72.447837pt;}
._6_c00423{margin-left:-54.601093pt;}
._8_c00423{margin-left:-52.698413pt;}
._0_c00423{margin-left:-4.071247pt;}
._5_c00423{width:3.497268pt;}
._a_c00423{width:37.222222pt;}
._b_c00423{width:42.777778pt;}
._9_c00423{width:46.944444pt;}
._2_c00423{width:51.103825pt;}
._7_c00423{width:52.698413pt;}
._3_c00423{width:58.098361pt;}
._4_c00423{width:63.344262pt;}
.fs6_c00423{font-size:37.333333pt;}
.fs5_c00423{font-size:42.666667pt;}
.fs4_c00423{font-size:48.000000pt;}
.fs2_c00423{font-size:53.333333pt;}
.fs3_c00423{font-size:58.666667pt;}
.fs0_c00423{font-size:64.000000pt;}
.fs1_c00423{font-size:74.666667pt;}
.y0_c00423{bottom:0.000000pt;}
.y67_c00423{bottom:178.266667pt;}
.y37_c00423{bottom:182.933333pt;}
.y66_c00423{bottom:191.733333pt;}
.y36_c00423{bottom:198.933333pt;}
.y65_c00423{bottom:204.800000pt;}
.y35_c00423{bottom:214.266667pt;}
.y64_c00423{bottom:216.933333pt;}
.y63_c00423{bottom:229.466667pt;}
.y34_c00423{bottom:230.266667pt;}
.y62_c00423{bottom:242.266667pt;}
.y33_c00423{bottom:246.000000pt;}
.y61_c00423{bottom:258.266667pt;}
.y32_c00423{bottom:261.733333pt;}
.y60_c00423{bottom:275.466667pt;}
.y31_c00423{bottom:280.933333pt;}
.y5f_c00423{bottom:288.266667pt;}
.y30_c00423{bottom:296.000000pt;}
.y5e_c00423{bottom:301.466667pt;}
.y5d_c00423{bottom:314.266667pt;}
.y2f_c00423{bottom:319.333333pt;}
.y5c_c00423{bottom:327.733333pt;}
.y2e_c00423{bottom:339.200000pt;}
.y2d_c00423{bottom:358.666667pt;}
.y2c_c00423{bottom:376.000000pt;}
.y5b_c00423{bottom:376.800000pt;}
.y2b_c00423{bottom:392.133333pt;}
.y5a_c00423{bottom:392.800000pt;}
.y2a_c00423{bottom:408.400000pt;}
.y59_c00423{bottom:408.800000pt;}
.y29_c00423{bottom:423.733333pt;}
.y58_c00423{bottom:424.800000pt;}
.y28_c00423{bottom:439.733333pt;}
.y57_c00423{bottom:440.800000pt;}
.y27_c00423{bottom:455.466667pt;}
.y56_c00423{bottom:456.533333pt;}
.y26_c00423{bottom:471.466667pt;}
.y55_c00423{bottom:472.533333pt;}
.y25_c00423{bottom:487.200000pt;}
.y54_c00423{bottom:488.266667pt;}
.y24_c00423{bottom:503.200000pt;}
.y53_c00423{bottom:512.000000pt;}
.y23_c00423{bottom:518.933333pt;}
.y52_c00423{bottom:528.000000pt;}
.y22_c00423{bottom:534.933333pt;}
.y51_c00423{bottom:544.000000pt;}
.y21_c00423{bottom:550.933333pt;}
.y50_c00423{bottom:559.733333pt;}
.y20_c00423{bottom:566.933333pt;}
.y4f_c00423{bottom:575.733333pt;}
.y1f_c00423{bottom:582.933333pt;}
.y4e_c00423{bottom:595.733333pt;}
.y1e_c00423{bottom:598.933333pt;}
.y4d_c00423{bottom:611.733333pt;}
.y1d_c00423{bottom:614.933333pt;}
.y4c_c00423{bottom:627.733333pt;}
.y1c_c00423{bottom:630.933333pt;}
.y4b_c00423{bottom:643.466667pt;}
.y1b_c00423{bottom:646.933333pt;}
.y4a_c00423{bottom:659.466667pt;}
.y1a_c00423{bottom:662.933333pt;}
.y19_c00423{bottom:678.933333pt;}
.y49_c00423{bottom:679.066667pt;}
.y18_c00423{bottom:694.666667pt;}
.y48_c00423{bottom:695.066667pt;}
.y47_c00423{bottom:710.400000pt;}
.y17_c00423{bottom:710.666667pt;}
.y46_c00423{bottom:710.933333pt;}
.y16_c00423{bottom:726.666667pt;}
.y45_c00423{bottom:726.933333pt;}
.y15_c00423{bottom:742.666667pt;}
.y44_c00423{bottom:742.933333pt;}
.y14_c00423{bottom:758.666667pt;}
.y13_c00423{bottom:774.666667pt;}
.y12_c00423{bottom:790.666667pt;}
.y11_c00423{bottom:806.666667pt;}
.y10_c00423{bottom:822.400000pt;}
.yf_c00423{bottom:838.133333pt;}
.y43_c00423{bottom:838.400000pt;}
.ye_c00423{bottom:854.133333pt;}
.y42_c00423{bottom:854.400000pt;}
.yd_c00423{bottom:877.200000pt;}
.y40_c00423{bottom:877.333333pt;}
.yc_c00423{bottom:888.400000pt;}
.y3f_c00423{bottom:889.866667pt;}
.y41_c00423{bottom:901.733333pt;}
.y3e_c00423{bottom:902.400000pt;}
.yb_c00423{bottom:903.066667pt;}
.y3d_c00423{bottom:914.533333pt;}
.ya_c00423{bottom:915.466667pt;}
.y9_c00423{bottom:927.466667pt;}
.y3c_c00423{bottom:934.666667pt;}
.y8_c00423{bottom:941.200000pt;}
.y3b_c00423{bottom:950.666667pt;}
.y7_c00423{bottom:954.266667pt;}
.y6_c00423{bottom:966.000000pt;}
.y3a_c00423{bottom:971.866667pt;}
.y5_c00423{bottom:977.866667pt;}
.y39_c00423{bottom:987.866667pt;}
.y4_c00423{bottom:991.733333pt;}
.y38_c00423{bottom:1004.133333pt;}
.y3_c00423{bottom:1006.400000pt;}
.y1_c00423{bottom:1025.600000pt;}
.y2_c00423{bottom:1027.200000pt;}
.h8_c00423{height:37.333333pt;}
.h7_c00423{height:42.666667pt;}
.h6_c00423{height:48.000000pt;}
.h4_c00423{height:53.333333pt;}
.h5_c00423{height:58.666667pt;}
.h2_c00423{height:64.000000pt;}
.h3_c00423{height:74.666667pt;}
.h1_c00423{height:1131.333333pt;}
.h0_c00423{height:1131.520020pt;}
.w0_c00423{width:851.840007pt;}
.w1_c00423{width:852.000000pt;}
.x0_c00423{left:0.000000pt;}
.x9d_c00423{left:156.800000pt;}
.x1_c00423{left:158.133333pt;}
.x47_c00423{left:159.066667pt;}
.x9b_c00423{left:165.466667pt;}
.xd_c00423{left:172.133333pt;}
.x5a_c00423{left:173.866667pt;}
.x4b_c00423{left:175.066667pt;}
.x3_c00423{left:184.933333pt;}
.x9e_c00423{left:189.066667pt;}
.xa4_c00423{left:190.000000pt;}
.xa5_c00423{left:191.866667pt;}
.x37_c00423{left:194.666667pt;}
.x75_c00423{left:196.266667pt;}
.x92_c00423{left:198.000000pt;}
.x62_c00423{left:199.333333pt;}
.x77_c00423{left:200.933333pt;}
.x4c_c00423{left:202.000000pt;}
.xa0_c00423{left:203.733333pt;}
.x24_c00423{left:205.066667pt;}
.x63_c00423{left:208.000000pt;}
.x2b_c00423{left:209.600000pt;}
.x87_c00423{left:210.666667pt;}
.x70_c00423{left:212.133333pt;}
.x14_c00423{left:213.466667pt;}
.x81_c00423{left:215.333333pt;}
.xe_c00423{left:216.933333pt;}
.x6e_c00423{left:219.600000pt;}
.x55_c00423{left:220.800000pt;}
.x25_c00423{left:222.000000pt;}
.x35_c00423{left:223.733333pt;}
.x5e_c00423{left:225.333333pt;}
.x15_c00423{left:226.800000pt;}
.x5b_c00423{left:228.000000pt;}
.x88_c00423{left:230.133333pt;}
.x64_c00423{left:231.333333pt;}
.x16_c00423{left:233.200000pt;}
.x4_c00423{left:234.533333pt;}
.xf_c00423{left:235.466667pt;}
.x71_c00423{left:237.066667pt;}
.x93_c00423{left:238.933333pt;}
.x17_c00423{left:239.866667pt;}
.x78_c00423{left:242.266667pt;}
.x3d_c00423{left:243.466667pt;}
.x56_c00423{left:245.066667pt;}
.x18_c00423{left:246.266667pt;}
.x97_c00423{left:248.400000pt;}
.x91_c00423{left:249.333333pt;}
.x65_c00423{left:251.200000pt;}
.x5_c00423{left:252.133333pt;}
.x26_c00423{left:255.333333pt;}
.x3e_c00423{left:256.266667pt;}
.x69_c00423{left:258.000000pt;}
.xa3_c00423{left:259.466667pt;}
.x2c_c00423{left:261.466667pt;}
.x98_c00423{left:262.533333pt;}
.x7d_c00423{left:264.666667pt;}
.x19_c00423{left:265.733333pt;}
.x27_c00423{left:267.466667pt;}
.x38_c00423{left:268.533333pt;}
.x42_c00423{left:270.400000pt;}
.x76_c00423{left:271.733333pt;}
.x10_c00423{left:273.866667pt;}
.x79_c00423{left:276.133333pt;}
.x94_c00423{left:278.133333pt;}
.x1a_c00423{left:279.066667pt;}
.x2d_c00423{left:280.933333pt;}
.x2f_c00423{left:282.000000pt;}
.x8f_c00423{left:283.200000pt;}
.x99_c00423{left:284.133333pt;}
.x74_c00423{left:286.666667pt;}
.x39_c00423{left:288.000000pt;}
.x3f_c00423{left:289.200000pt;}
.x43_c00423{left:290.266667pt;}
.x7a_c00423{left:291.200000pt;}
.x1b_c00423{left:292.533333pt;}
.x82_c00423{left:293.733333pt;}
.x11_c00423{left:294.666667pt;}
.xa1_c00423{left:296.800000pt;}
.x57_c00423{left:298.133333pt;}
.x95_c00423{left:299.866667pt;}
.x6_c00423{left:301.066667pt;}
.x7e_c00423{left:302.400000pt;}
.x66_c00423{left:305.600000pt;}
.x30_c00423{left:306.933333pt;}
.x28_c00423{left:309.066667pt;}
.x8d_c00423{left:311.333333pt;}
.x31_c00423{left:313.066667pt;}
.x3a_c00423{left:314.400000pt;}
.x8e_c00423{left:315.333333pt;}
.x36_c00423{left:316.800000pt;}
.x7_c00423{left:318.000000pt;}
.x32_c00423{left:319.733333pt;}
.x67_c00423{left:321.333333pt;}
.x7b_c00423{left:322.533333pt;}
.x40_c00423{left:324.000000pt;}
.x33_c00423{left:325.466667pt;}
.x3b_c00423{left:326.800000pt;}
.x50_c00423{left:328.933333pt;}
.x29_c00423{left:329.866667pt;}
.x1c_c00423{left:331.733333pt;}
.x3c_c00423{left:333.200000pt;}
.x48_c00423{left:335.333333pt;}
.x41_c00423{left:336.800000pt;}
.x1d_c00423{left:338.800000pt;}
.x44_c00423{left:343.733333pt;}
.x58_c00423{left:344.800000pt;}
.x51_c00423{left:346.533333pt;}
.x9f_c00423{left:347.866667pt;}
.x9a_c00423{left:349.066667pt;}
.x1e_c00423{left:351.333333pt;}
.x8_c00423{left:352.266667pt;}
.x6b_c00423{left:353.333333pt;}
.x12_c00423{left:356.133333pt;}
.x1f_c00423{left:357.733333pt;}
.xa6_c00423{left:358.933333pt;}
.x49_c00423{left:362.533333pt;}
.x89_c00423{left:363.866667pt;}
.x20_c00423{left:365.066667pt;}
.x5c_c00423{left:367.333333pt;}
.x9_c00423{left:369.200000pt;}
.x21_c00423{left:370.800000pt;}
.x2a_c00423{left:372.533333pt;}
.x13_c00423{left:373.466667pt;}
.x83_c00423{left:376.000000pt;}
.x4d_c00423{left:377.066667pt;}
.x2e_c00423{left:378.000000pt;}
.x2_c00423{left:379.600000pt;}
.x52_c00423{left:381.466667pt;}
.x72_c00423{left:384.933333pt;}
.x85_c00423{left:386.133333pt;}
.xa_c00423{left:387.466667pt;}
.x8c_c00423{left:389.066667pt;}
.x53_c00423{left:390.133333pt;}
.x7f_c00423{left:391.333333pt;}
.x9c_c00423{left:393.866667pt;}
.x5f_c00423{left:394.933333pt;}
.x22_c00423{left:396.000000pt;}
.x45_c00423{left:396.933333pt;}
.x8a_c00423{left:397.866667pt;}
.x6f_c00423{left:402.533333pt;}
.x68_c00423{left:404.266667pt;}
.x59_c00423{left:406.533333pt;}
.x96_c00423{left:407.733333pt;}
.x6c_c00423{left:408.666667pt;}
.x6a_c00423{left:410.266667pt;}
.x73_c00423{left:414.000000pt;}
.xb_c00423{left:414.933333pt;}
.x4e_c00423{left:416.800000pt;}
.x86_c00423{left:417.866667pt;}
.x4a_c00423{left:418.933333pt;}
.x34_c00423{left:420.533333pt;}
.x7c_c00423{left:423.066667pt;}
.x90_c00423{left:424.000000pt;}
.x80_c00423{left:424.933333pt;}
.x4f_c00423{left:426.133333pt;}
.x60_c00423{left:427.866667pt;}
.x5d_c00423{left:430.400000pt;}
.x6d_c00423{left:432.666667pt;}
.xa2_c00423{left:435.333333pt;}
.x84_c00423{left:439.733333pt;}
.x8b_c00423{left:444.000000pt;}
.xc_c00423{left:445.066667pt;}
.x23_c00423{left:446.266667pt;}
.x46_c00423{left:447.200000pt;}
.x61_c00423{left:449.600000pt;}
.x54_c00423{left:455.733333pt;}
.x123_c00423{left:475.466667pt;}
.x149_c00423{left:476.800000pt;}
.xb9_c00423{left:477.733333pt;}
.x13a_c00423{left:482.533333pt;}
.x133_c00423{left:488.266667pt;}
.x13e_c00423{left:489.600000pt;}
.x11e_c00423{left:491.466667pt;}
.xc2_c00423{left:492.666667pt;}
.xa7_c00423{left:494.400000pt;}
.x13c_c00423{left:496.000000pt;}
.x141_c00423{left:500.133333pt;}
.xb5_c00423{left:501.466667pt;}
.xc3_c00423{left:503.866667pt;}
.x13b_c00423{left:507.466667pt;}
.xe6_c00423{left:508.400000pt;}
.x10f_c00423{left:509.466667pt;}
.xb6_c00423{left:510.400000pt;}
.x134_c00423{left:511.600000pt;}
.xf9_c00423{left:513.066667pt;}
.x127_c00423{left:514.000000pt;}
.xba_c00423{left:515.200000pt;}
.xb7_c00423{left:517.466667pt;}
.xf2_c00423{left:519.200000pt;}
.xdd_c00423{left:521.733333pt;}
.x14a_c00423{left:523.866667pt;}
.x102_c00423{left:525.466667pt;}
.xae_c00423{left:526.666667pt;}
.x10b_c00423{left:528.266667pt;}
.xcd_c00423{left:530.000000pt;}
.xb8_c00423{left:531.866667pt;}
.x135_c00423{left:535.866667pt;}
.xa8_c00423{left:537.600000pt;}
.xfe_c00423{left:539.200000pt;}
.xaf_c00423{left:541.333333pt;}
.xe1_c00423{left:543.066667pt;}
.xc4_c00423{left:546.666667pt;}
.x121_c00423{left:548.400000pt;}
.x106_c00423{left:549.466667pt;}
.xee_c00423{left:550.933333pt;}
.x124_c00423{left:552.266667pt;}
.xda_c00423{left:553.200000pt;}
.xc5_c00423{left:554.666667pt;}
.x13d_c00423{left:555.600000pt;}
.x142_c00423{left:557.066667pt;}
.x10c_c00423{left:558.666667pt;}
.xef_c00423{left:562.133333pt;}
.xde_c00423{left:565.600000pt;}
.x122_c00423{left:566.933333pt;}
.x11b_c00423{left:568.266667pt;}
.x110_c00423{left:569.333333pt;}
.x115_c00423{left:570.266667pt;}
.xa9_c00423{left:571.466667pt;}
.x132_c00423{left:572.666667pt;}
.x10d_c00423{left:574.000000pt;}
.x138_c00423{left:576.266667pt;}
.xf0_c00423{left:577.200000pt;}
.x128_c00423{left:579.866667pt;}
.x12c_c00423{left:581.066667pt;}
.xff_c00423{left:583.066667pt;}
.x11c_c00423{left:584.000000pt;}
.xce_c00423{left:586.666667pt;}
.xc6_c00423{left:589.200000pt;}
.x140_c00423{left:590.133333pt;}
.x107_c00423{left:591.066667pt;}
.xdf_c00423{left:593.733333pt;}
.x111_c00423{left:595.866667pt;}
.x12d_c00423{left:597.066667pt;}
.xb0_c00423{left:601.200000pt;}
.x103_c00423{left:602.533333pt;}
.xcf_c00423{left:604.000000pt;}
.xaa_c00423{left:605.066667pt;}
.x139_c00423{left:606.400000pt;}
.x129_c00423{left:607.333333pt;}
.xbb_c00423{left:609.600000pt;}
.xf3_c00423{left:611.333333pt;}
.xfa_c00423{left:612.533333pt;}
.xf7_c00423{left:614.533333pt;}
.xf1_c00423{left:616.800000pt;}
.x136_c00423{left:618.133333pt;}
.xb1_c00423{left:620.400000pt;}
.x116_c00423{left:622.400000pt;}
.xeb_c00423{left:624.266667pt;}
.x108_c00423{left:625.600000pt;}
.xfb_c00423{left:627.200000pt;}
.x14b_c00423{left:628.133333pt;}
.x112_c00423{left:630.800000pt;}
.x117_c00423{left:632.933333pt;}
.x130_c00423{left:634.133333pt;}
.x11f_c00423{left:635.200000pt;}
.x125_c00423{left:636.666667pt;}
.x100_c00423{left:638.133333pt;}
.x13f_c00423{left:639.066667pt;}
.x146_c00423{left:641.333333pt;}
.xd0_c00423{left:642.400000pt;}
.xe2_c00423{left:643.600000pt;}
.x109_c00423{left:645.733333pt;}
.x143_c00423{left:647.333333pt;}
.xbc_c00423{left:648.266667pt;}
.xfc_c00423{left:650.533333pt;}
.xc7_c00423{left:653.200000pt;}
.x101_c00423{left:654.400000pt;}
.xe3_c00423{left:655.466667pt;}
.x10e_c00423{left:657.200000pt;}
.xe7_c00423{left:658.933333pt;}
.xd1_c00423{left:661.866667pt;}
.x104_c00423{left:663.066667pt;}
.x131_c00423{left:664.800000pt;}
.x137_c00423{left:666.800000pt;}
.x14c_c00423{left:668.133333pt;}
.x144_c00423{left:669.466667pt;}
.xbd_c00423{left:670.666667pt;}
.xab_c00423{left:672.266667pt;}
.xf4_c00423{left:674.000000pt;}
.x113_c00423{left:676.000000pt;}
.xc8_c00423{left:678.133333pt;}
.xdb_c00423{left:679.200000pt;}
.xec_c00423{left:682.800000pt;}
.xbe_c00423{left:683.733333pt;}
.xd2_c00423{left:685.200000pt;}
.xb2_c00423{left:688.266667pt;}
.xd7_c00423{left:691.333333pt;}
.xe8_c00423{left:692.800000pt;}
.x147_c00423{left:694.533333pt;}
.xd8_c00423{left:697.066667pt;}
.xd3_c00423{left:698.000000pt;}
.x118_c00423{left:700.133333pt;}
.xed_c00423{left:701.066667pt;}
.x10a_c00423{left:704.000000pt;}
.x12e_c00423{left:705.200000pt;}
.xca_c00423{left:706.266667pt;}
.xc9_c00423{left:708.533333pt;}
.xd4_c00423{left:710.133333pt;}
.x12a_c00423{left:711.066667pt;}
.x114_c00423{left:712.133333pt;}
.xbf_c00423{left:713.466667pt;}
.x148_c00423{left:714.666667pt;}
.xd6_c00423{left:716.133333pt;}
.xdc_c00423{left:718.933333pt;}
.xac_c00423{left:721.866667pt;}
.x11d_c00423{left:723.200000pt;}
.x12b_c00423{left:725.866667pt;}
.xf5_c00423{left:727.466667pt;}
.x145_c00423{left:728.666667pt;}
.xb3_c00423{left:730.800000pt;}
.xe4_c00423{left:732.666667pt;}
.xcb_c00423{left:734.400000pt;}
.xf8_c00423{left:735.866667pt;}
.x119_c00423{left:736.933333pt;}
.xd5_c00423{left:741.466667pt;}
.xad_c00423{left:742.666667pt;}
.xfd_c00423{left:744.000000pt;}
.xc0_c00423{left:747.333333pt;}
.xb4_c00423{left:749.066667pt;}
.xe9_c00423{left:752.000000pt;}
.x126_c00423{left:754.266667pt;}
.x11a_c00423{left:755.466667pt;}
.x105_c00423{left:757.200000pt;}
.xe0_c00423{left:758.800000pt;}
.x12f_c00423{left:760.133333pt;}
.xf6_c00423{left:761.733333pt;}
.xc1_c00423{left:763.333333pt;}
.xcc_c00423{left:765.066667pt;}
.xd9_c00423{left:767.333333pt;}
.xea_c00423{left:768.666667pt;}
.x120_c00423{left:771.466667pt;}
.xe5_c00423{left:775.600000pt;}
}





/* 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_c00424 {
    display:none;
  }
  .loading-indicator_c00424.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00424 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_c00424 { 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_c00424" -> "#page-container .classname_c00424")
 */
.pf_c00424 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00424 { /* 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_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00424 { /* 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_c00424 { /* 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_c00424 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00424 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00424 {overflow:visible;}
  }
}
.c_c00424 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00424 { /* 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_c00424:after { /* webkit #35443 */
  content: '';
}
.t_c00424:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00424 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 */
}
.__c00424 { /* 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_c00424 { /* info for Javascript */
  display:none;
}
.l_c00424 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00424 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00424 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00424: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_c00424 {
    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_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00424.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_c00424 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00424;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.000000;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;}
.m134_c00424{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00424{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00424{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m133_c00424{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m109_c00424{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00424{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m76_c00424{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00424{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m63_c00424{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m115_c00424{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00424{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m71_c00424{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00424{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.me2_c00424{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00424{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md3_c00424{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.me0_c00424{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m11_c00424{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00424{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m126_c00424{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00424{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m97_c00424{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md9_c00424{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m22_c00424{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.md_c00424{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me3_c00424{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00424{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00424{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00424{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.maf_c00424{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00424{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m38_c00424{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m105_c00424{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m7_c00424{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00424{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m51_c00424{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00424{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00424{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m119_c00424{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m20_c00424{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00424{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00424{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00424{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m125_c00424{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m110_c00424{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m49_c00424{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m124_c00424{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00424{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00424{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m72_c00424{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3_c00424{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m61_c00424{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m118_c00424{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m35_c00424{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m89_c00424{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00424{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m132_c00424{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m87_c00424{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m8_c00424{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00424{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m113_c00424{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m21_c00424{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m33_c00424{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00424{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m88_c00424{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m131_c00424{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m67_c00424{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m84_c00424{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00424{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m116_c00424{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m37_c00424{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00424{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m39_c00424{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md2_c00424{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00424{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mee_c00424{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00424{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md5_c00424{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me_c00424{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m107_c00424{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m68_c00424{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m36_c00424{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00424{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00424{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m56_c00424{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m104_c00424{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m42_c00424{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00424{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m78_c00424{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m34_c00424{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m99_c00424{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m114_c00424{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m29_c00424{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00424{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00424{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m26_c00424{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m96_c00424{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00424{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m130_c00424{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00424{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m129_c00424{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m48_c00424{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00424{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m66_c00424{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md7_c00424{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00424{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m27_c00424{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00424{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m74_c00424{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00424{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m90_c00424{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00424{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m43_c00424{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m45_c00424{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m46_c00424{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00424{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m83_c00424{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mad_c00424{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me5_c00424{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00424{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00424{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.md4_c00424{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00424{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00424{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00424{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m108_c00424{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m65_c00424{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00424{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mce_c00424{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00424{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00424{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00424{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00424{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00424{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m25_c00424{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00424{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m75_c00424{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00424{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mda_c00424{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m111_c00424{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00424{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00424{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00424{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00424{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mca_c00424{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m120_c00424{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m30_c00424{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m77_c00424{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00424{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10_c00424{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m112_c00424{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00424{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00424{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m13_c00424{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.me7_c00424{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m28_c00424{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m60_c00424{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00424{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m57_c00424{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00424{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m52_c00424{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m50_c00424{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m47_c00424{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf_c00424{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m121_c00424{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m101_c00424{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m102_c00424{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00424{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00424{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m32_c00424{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00424{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1_c00424{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00424{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00424{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00424{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m106_c00424{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m98_c00424{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mab_c00424{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00424{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00424{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m100_c00424{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m12_c00424{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00424{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m70_c00424{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00424{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma_c00424{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00424{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00424{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m85_c00424{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mac_c00424{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00424{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m91_c00424{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00424{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m59_c00424{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00424{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m16_c00424{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m23_c00424{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m122_c00424{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00424{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md6_c00424{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mde_c00424{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mc_c00424{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mba_c00424{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00424{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m80_c00424{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00424{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.me6_c00424{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00424{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2_c00424{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00424{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m44_c00424{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mea_c00424{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m82_c00424{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00424{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00424{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m5_c00424{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m31_c00424{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mff_c00424{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00424{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m73_c00424{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m40_c00424{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m17_c00424{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00424{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00424{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00424{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00424{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00424{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6_c00424{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00424{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m117_c00424{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00424{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00424{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m24_c00424{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m127_c00424{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9_c00424{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m64_c00424{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m15_c00424{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00424{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m93_c00424{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m92_c00424{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00424{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00424{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00424{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m95_c00424{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00424{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md8_c00424{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.meb_c00424{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m41_c00424{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mae_c00424{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00424{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00424{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00424{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md1_c00424{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00424{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md0_c00424{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00424{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00424{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18_c00424{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00424{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m69_c00424{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);}
.m19_c00424{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mec_c00424{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m14_c00424{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mef_c00424{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m62_c00424{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00424{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m103_c00424{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00424{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00424{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00424{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00424{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00424{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m94_c00424{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00424{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00424{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00424{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m123_c00424{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m79_c00424{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00424{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.maa_c00424{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m128_c00424{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m86_c00424{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00424{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00424{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00424{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m58_c00424{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00424{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00424{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mb_c00424{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m81_c00424{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.med_c00424{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00424{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00424{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00424{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me8_c00424{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.me1_c00424{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.me9_c00424{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00424{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00424{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.me4_c00424{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00424{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m54_c00424{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00424{transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);}
.m53_c00424{transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378750,0.000000,0.000000,0.250000,0,0);}
.m55_c00424{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00424{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00424{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls1_c00424{letter-spacing:0.000000px;}
.ls0_c00424{letter-spacing:55.714286px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{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__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00424{word-spacing:-85.714286px;}
.wsc_c00424{word-spacing:-7.512129px;}
.wsd_c00424{word-spacing:-6.139535px;}
.wsa_c00424{word-spacing:-4.062500px;}
.ws0_c00424{word-spacing:-4.000987px;}
.wse_c00424{word-spacing:0.000000px;}
.ws1_c00424{word-spacing:3.402062px;}
.wsb_c00424{word-spacing:6.840170px;}
.ws8_c00424{word-spacing:11.875000px;}
.ws4_c00424{word-spacing:22.142857px;}
.ws2_c00424{word-spacing:25.714286px;}
.ws3_c00424{word-spacing:34.642857px;}
.ws5_c00424{word-spacing:61.250000px;}
.ws7_c00424{word-spacing:64.375000px;}
.ws6_c00424{word-spacing:71.944444px;}
._1_c00424{margin-left:-55.714286px;}
._0_c00424{width:64.642857px;}
.fc0_c00424{color:transparent;}
.fs4_c00424{font-size:30.000000px;}
.fs3_c00424{font-size:54.000000px;}
.fs2_c00424{font-size:60.000000px;}
.fs1_c00424{font-size:66.000000px;}
.fs5_c00424{font-size:72.000000px;}
.fs0_c00424{font-size:84.000000px;}
.y0_c00424{bottom:0.000000px;}
.y72_c00424{bottom:192.300000px;}
.y3e_c00424{bottom:195.900000px;}
.y71_c00424{bottom:207.300000px;}
.y3d_c00424{bottom:210.300000px;}
.y70_c00424{bottom:221.850000px;}
.y3c_c00424{bottom:224.250000px;}
.y6f_c00424{bottom:236.250000px;}
.y3a_c00424{bottom:237.900000px;}
.y6e_c00424{bottom:250.650000px;}
.y39_c00424{bottom:252.300000px;}
.y6d_c00424{bottom:265.050000px;}
.y38_c00424{bottom:266.700000px;}
.y6c_c00424{bottom:279.750000px;}
.y37_c00424{bottom:281.400000px;}
.y6b_c00424{bottom:294.150000px;}
.y36_c00424{bottom:295.500000px;}
.y6a_c00424{bottom:308.550000px;}
.y35_c00424{bottom:310.650000px;}
.y69_c00424{bottom:322.950000px;}
.y34_c00424{bottom:324.300000px;}
.y33_c00424{bottom:343.500000px;}
.y3b_c00424{bottom:361.050000px;}
.y32_c00424{bottom:362.550000px;}
.y68_c00424{bottom:371.550000px;}
.y31_c00424{bottom:377.250000px;}
.y30_c00424{bottom:391.800000px;}
.y67_c00424{bottom:393.150000px;}
.y2f_c00424{bottom:407.250000px;}
.y66_c00424{bottom:414.300000px;}
.y2e_c00424{bottom:420.600000px;}
.y65_c00424{bottom:432.300000px;}
.y2d_c00424{bottom:434.250000px;}
.y2c_c00424{bottom:448.950000px;}
.y64_c00424{bottom:450.600000px;}
.y2b_c00424{bottom:464.400000px;}
.y63_c00424{bottom:468.300000px;}
.y2a_c00424{bottom:479.550000px;}
.y62_c00424{bottom:486.300000px;}
.y29_c00424{bottom:492.900000px;}
.y61_c00424{bottom:504.300000px;}
.y28_c00424{bottom:507.600000px;}
.y27_c00424{bottom:521.700000px;}
.y60_c00424{bottom:522.300000px;}
.y26_c00424{bottom:535.350000px;}
.y5f_c00424{bottom:540.300000px;}
.y25_c00424{bottom:551.100000px;}
.y5e_c00424{bottom:558.300000px;}
.y24_c00424{bottom:568.350000px;}
.y5d_c00424{bottom:576.300000px;}
.y23_c00424{bottom:583.500000px;}
.y5c_c00424{bottom:594.000000px;}
.y22_c00424{bottom:597.900000px;}
.y5b_c00424{bottom:612.000000px;}
.y21_c00424{bottom:616.500000px;}
.y5a_c00424{bottom:630.000000px;}
.y20_c00424{bottom:631.650000px;}
.y1f_c00424{bottom:645.750000px;}
.y59_c00424{bottom:647.700000px;}
.y1e_c00424{bottom:659.850000px;}
.y58_c00424{bottom:665.700000px;}
.y1d_c00424{bottom:673.950000px;}
.y57_c00424{bottom:683.700000px;}
.y1c_c00424{bottom:688.350000px;}
.y56_c00424{bottom:701.400000px;}
.y1b_c00424{bottom:702.750000px;}
.y1a_c00424{bottom:717.150000px;}
.y55_c00424{bottom:719.400000px;}
.y19_c00424{bottom:731.550000px;}
.y54_c00424{bottom:737.100000px;}
.y18_c00424{bottom:745.950000px;}
.y53_c00424{bottom:755.100000px;}
.y17_c00424{bottom:761.100000px;}
.y52_c00424{bottom:773.100000px;}
.y16_c00424{bottom:775.500000px;}
.y51_c00424{bottom:791.100000px;}
.y15_c00424{bottom:793.500000px;}
.y14_c00424{bottom:808.200000px;}
.y50_c00424{bottom:809.100000px;}
.y13_c00424{bottom:822.600000px;}
.y4f_c00424{bottom:827.100000px;}
.y12_c00424{bottom:836.700000px;}
.y4e_c00424{bottom:845.100000px;}
.y11_c00424{bottom:851.100000px;}
.y4d_c00424{bottom:862.800000px;}
.y10_c00424{bottom:869.700000px;}
.y4c_c00424{bottom:880.500000px;}
.yf_c00424{bottom:888.900000px;}
.ye_c00424{bottom:904.050000px;}
.y4b_c00424{bottom:904.950000px;}
.y4a_c00424{bottom:915.450000px;}
.yd_c00424{bottom:918.750000px;}
.yc_c00424{bottom:932.400000px;}
.y49_c00424{bottom:936.300000px;}
.yb_c00424{bottom:946.650000px;}
.y48_c00424{bottom:956.100000px;}
.y47_c00424{bottom:972.000000px;}
.ya_c00424{bottom:975.750000px;}
.y9_c00424{bottom:989.850000px;}
.y46_c00424{bottom:998.850000px;}
.y8_c00424{bottom:1005.000000px;}
.y45_c00424{bottom:1016.550000px;}
.y7_c00424{bottom:1019.100000px;}
.y6_c00424{bottom:1033.500000px;}
.y44_c00424{bottom:1034.550000px;}
.y5_c00424{bottom:1047.900000px;}
.y43_c00424{bottom:1052.550000px;}
.y42_c00424{bottom:1070.250000px;}
.y41_c00424{bottom:1088.250000px;}
.y4_c00424{bottom:1102.350000px;}
.y40_c00424{bottom:1106.250000px;}
.y3_c00424{bottom:1123.200000px;}
.y3f_c00424{bottom:1124.250000px;}
.y2_c00424{bottom:1146.600000px;}
.y1_c00424{bottom:1151.700000px;}
.h6_c00424{height:30.000000px;}
.h5_c00424{height:54.000000px;}
.h4_c00424{height:60.000000px;}
.h3_c00424{height:66.000000px;}
.h7_c00424{height:72.000000px;}
.h2_c00424{height:84.000000px;}
.h1_c00424{height:1267.500000px;}
.h0_c00424{height:1267.559967px;}
.w0_c00424{width:958.320007px;}
.w1_c00424{width:958.500000px;}
.x0_c00424{left:0.000000px;}
.xb1_c00424{left:66.300000px;}
.xa5_c00424{left:72.750000px;}
.x3_c00424{left:74.550000px;}
.xb_c00424{left:75.600000px;}
.x41_c00424{left:82.800000px;}
.x74_c00424{left:86.700000px;}
.xa1_c00424{left:87.900000px;}
.x58_c00424{left:88.950000px;}
.x49_c00424{left:90.000000px;}
.x9_c00424{left:93.750000px;}
.xae_c00424{left:95.700000px;}
.x88_c00424{left:98.700000px;}
.x1b_c00424{left:100.950000px;}
.x27_c00424{left:102.750000px;}
.x34_c00424{left:107.100000px;}
.x42_c00424{left:109.050000px;}
.xb5_c00424{left:110.100000px;}
.x4e_c00424{left:111.750000px;}
.x2e_c00424{left:112.800000px;}
.x56_c00424{left:114.150000px;}
.x23_c00424{left:115.200000px;}
.x28_c00424{left:116.850000px;}
.x89_c00424{left:118.200000px;}
.x4_c00424{left:119.250000px;}
.x8f_c00424{left:120.300000px;}
.x51_c00424{left:121.950000px;}
.xb6_c00424{left:123.000000px;}
.x3a_c00424{left:124.200000px;}
.xb2_c00424{left:126.750000px;}
.x15_c00424{left:128.700000px;}
.xc_c00424{left:129.900000px;}
.xa_c00424{left:131.250000px;}
.x86_c00424{left:133.050000px;}
.xa6_c00424{left:134.250000px;}
.x66_c00424{left:135.750000px;}
.x5b_c00424{left:137.550000px;}
.x90_c00424{left:139.350000px;}
.x3b_c00424{left:140.400000px;}
.x7a_c00424{left:141.900000px;}
.x9c_c00424{left:144.000000px;}
.x67_c00424{left:146.250000px;}
.xac_c00424{left:150.000000px;}
.x5_c00424{left:153.450000px;}
.xd_c00424{left:155.100000px;}
.x43_c00424{left:156.600000px;}
.x1c_c00424{left:157.800000px;}
.x9d_c00424{left:159.900000px;}
.xa2_c00424{left:160.950000px;}
.x24_c00424{left:163.500000px;}
.x91_c00424{left:164.550000px;}
.x16_c00424{left:165.750000px;}
.x4f_c00424{left:170.400000px;}
.x5c_c00424{left:172.800000px;}
.x52_c00424{left:175.650000px;}
.x7f_c00424{left:177.300000px;}
.x75_c00424{left:179.250000px;}
.x8c_c00424{left:181.200000px;}
.x6c_c00424{left:182.250000px;}
.x35_c00424{left:184.500000px;}
.x68_c00424{left:186.900000px;}
.x1d_c00424{left:188.700000px;}
.x59_c00424{left:190.800000px;}
.x6d_c00424{left:193.050000px;}
.x99_c00424{left:194.400000px;}
.x87_c00424{left:195.450000px;}
.x3c_c00424{left:196.500000px;}
.x96_c00424{left:197.550000px;}
.x4a_c00424{left:198.600000px;}
.xe_c00424{left:200.100000px;}
.x69_c00424{left:201.300000px;}
.x25_c00424{left:203.400000px;}
.x76_c00424{left:206.550000px;}
.x44_c00424{left:208.050000px;}
.x5d_c00424{left:210.300000px;}
.xa3_c00424{left:212.100000px;}
.xf_c00424{left:213.750000px;}
.x5f_c00424{left:214.950000px;}
.x9e_c00424{left:217.350000px;}
.x84_c00424{left:218.850000px;}
.x7b_c00424{left:221.550000px;}
.x36_c00424{left:222.750000px;}
.x57_c00424{left:224.700000px;}
.x6f_c00424{left:226.950000px;}
.x50_c00424{left:228.450000px;}
.x97_c00424{left:230.250000px;}
.x10_c00424{left:232.500000px;}
.x29_c00424{left:233.850000px;}
.xa7_c00424{left:235.050000px;}
.x80_c00424{left:237.000000px;}
.x17_c00424{left:238.050000px;}
.x60_c00424{left:239.400000px;}
.x8d_c00424{left:242.100000px;}
.xa8_c00424{left:243.300000px;}
.x2a_c00424{left:246.750000px;}
.x53_c00424{left:249.450000px;}
.x1e_c00424{left:250.950000px;}
.xa0_c00424{left:253.500000px;}
.x70_c00424{left:254.700000px;}
.x61_c00424{left:256.350000px;}
.x6_c00424{left:259.650000px;}
.x81_c00424{left:264.000000px;}
.x5e_c00424{left:265.050000px;}
.x2f_c00424{left:266.850000px;}
.x78_c00424{left:268.200000px;}
.x3d_c00424{left:269.250000px;}
.x1f_c00424{left:271.500000px;}
.x2b_c00424{left:272.700000px;}
.xb7_c00424{left:274.350000px;}
.x8a_c00424{left:275.850000px;}
.x30_c00424{left:277.350000px;}
.x8e_c00424{left:279.150000px;}
.x18_c00424{left:280.200000px;}
.x45_c00424{left:282.150000px;}
.x9b_c00424{left:283.500000px;}
.x71_c00424{left:285.000000px;}
.x7_c00424{left:286.350000px;}
.x4b_c00424{left:288.300000px;}
.xa9_c00424{left:289.800000px;}
.x37_c00424{left:290.850000px;}
.x20_c00424{left:293.850000px;}
.x31_c00424{left:295.050000px;}
.x77_c00424{left:296.850000px;}
.x46_c00424{left:298.050000px;}
.x54_c00424{left:299.850000px;}
.x98_c00424{left:301.950000px;}
.x11_c00424{left:303.000000px;}
.x6b_c00424{left:304.050000px;}
.x62_c00424{left:305.250000px;}
.x93_c00424{left:306.600000px;}
.x9f_c00424{left:308.400000px;}
.xa4_c00424{left:309.600000px;}
.xaa_c00424{left:310.650000px;}
.xb3_c00424{left:311.850000px;}
.x2c_c00424{left:313.800000px;}
.x1_c00424{left:315.750000px;}
.xad_c00424{left:318.450000px;}
.x19_c00424{left:319.500000px;}
.x7c_c00424{left:321.150000px;}
.x72_c00424{left:323.100000px;}
.x2d_c00424{left:324.600000px;}
.x94_c00424{left:328.200000px;}
.x6a_c00424{left:330.450000px;}
.xaf_c00424{left:331.650000px;}
.x32_c00424{left:333.600000px;}
.x3e_c00424{left:335.550000px;}
.x73_c00424{left:336.750000px;}
.x21_c00424{left:339.450000px;}
.x5a_c00424{left:341.550000px;}
.x82_c00424{left:342.750000px;}
.xb8_c00424{left:343.800000px;}
.x12_c00424{left:345.450000px;}
.x55_c00424{left:347.700000px;}
.x4c_c00424{left:349.500000px;}
.x47_c00424{left:351.000000px;}
.x22_c00424{left:353.100000px;}
.x13_c00424{left:354.750000px;}
.x63_c00424{left:356.400000px;}
.x1a_c00424{left:358.350000px;}
.x26_c00424{left:362.400000px;}
.xab_c00424{left:364.650000px;}
.x38_c00424{left:365.850000px;}
.x64_c00424{left:367.500000px;}
.x33_c00424{left:369.900000px;}
.x9a_c00424{left:370.950000px;}
.x8_c00424{left:372.000000px;}
.x8b_c00424{left:375.300000px;}
.x3f_c00424{left:376.650000px;}
.x7d_c00424{left:377.700000px;}
.x4d_c00424{left:378.750000px;}
.xb4_c00424{left:380.250000px;}
.x83_c00424{left:384.450000px;}
.x65_c00424{left:386.250000px;}
.x7e_c00424{left:387.450000px;}
.x39_c00424{left:388.500000px;}
.x14_c00424{left:390.450000px;}
.xb0_c00424{left:391.800000px;}
.x48_c00424{left:396.000000px;}
.x95_c00424{left:397.350000px;}
.x85_c00424{left:399.450000px;}
.x6e_c00424{left:402.150000px;}
.x40_c00424{left:406.200000px;}
.x92_c00424{left:408.750000px;}
.x79_c00424{left:417.600000px;}
.x149_c00424{left:430.950000px;}
.x147_c00424{left:432.000000px;}
.xe9_c00424{left:433.050000px;}
.x157_c00424{left:440.250000px;}
.xfa_c00424{left:446.700000px;}
.xf0_c00424{left:449.100000px;}
.xe6_c00424{left:450.450000px;}
.xc0_c00424{left:451.650000px;}
.x156_c00424{left:453.750000px;}
.x12e_c00424{left:462.600000px;}
.x13d_c00424{left:464.700000px;}
.xb9_c00424{left:469.800000px;}
.x118_c00424{left:471.300000px;}
.xea_c00424{left:474.150000px;}
.x13b_c00424{left:480.600000px;}
.x111_c00424{left:481.800000px;}
.xc8_c00424{left:484.350000px;}
.x108_c00424{left:485.400000px;}
.x14a_c00424{left:486.450000px;}
.x12b_c00424{left:487.950000px;}
.xd1_c00424{left:489.750000px;}
.x124_c00424{left:490.800000px;}
.xf5_c00424{left:492.150000px;}
.x112_c00424{left:494.400000px;}
.x129_c00424{left:495.750000px;}
.xd4_c00424{left:498.000000px;}
.xc9_c00424{left:500.250000px;}
.x148_c00424{left:501.900000px;}
.x101_c00424{left:502.950000px;}
.xf1_c00424{left:504.150000px;}
.x153_c00424{left:506.250000px;}
.xda_c00424{left:507.300000px;}
.x12c_c00424{left:508.800000px;}
.xc1_c00424{left:511.050000px;}
.x150_c00424{left:513.750000px;}
.x11b_c00424{left:514.950000px;}
.x10a_c00424{left:516.750000px;}
.x13e_c00424{left:518.700000px;}
.xdf_c00424{left:521.250000px;}
.xca_c00424{left:522.600000px;}
.x13a_c00424{left:524.700000px;}
.xe7_c00424{left:526.050000px;}
.xfb_c00424{left:528.750000px;}
.x158_c00424{left:529.800000px;}
.xba_c00424{left:531.000000px;}
.x14c_c00424{left:534.300000px;}
.xdb_c00424{left:535.350000px;}
.xc2_c00424{left:537.000000px;}
.xf2_c00424{left:538.350000px;}
.x131_c00424{left:539.850000px;}
.x11c_c00424{left:541.650000px;}
.xd5_c00424{left:543.750000px;}
.xe0_c00424{left:546.150000px;}
.x146_c00424{left:547.200000px;}
.x136_c00424{left:549.150000px;}
.x120_c00424{left:551.250000px;}
.xbb_c00424{left:554.100000px;}
.x119_c00424{left:557.400000px;}
.xf6_c00424{left:558.750000px;}
.xdc_c00424{left:560.550000px;}
.xe1_c00424{left:563.100000px;}
.xfe_c00424{left:565.350000px;}
.x12f_c00424{left:566.400000px;}
.x134_c00424{left:568.200000px;}
.xcb_c00424{left:569.400000px;}
.x102_c00424{left:571.050000px;}
.xc3_c00424{left:573.000000px;}
.x11d_c00424{left:574.050000px;}
.x14d_c00424{left:575.400000px;}
.xf3_c00424{left:576.900000px;}
.x125_c00424{left:577.950000px;}
.xeb_c00424{left:579.300000px;}
.xfc_c00424{left:582.750000px;}
.x159_c00424{left:583.800000px;}
.xd6_c00424{left:584.850000px;}
.x154_c00424{left:585.900000px;}
.xe2_c00424{left:589.050000px;}
.xf7_c00424{left:590.100000px;}
.xe8_c00424{left:592.200000px;}
.x135_c00424{left:593.400000px;}
.x104_c00424{left:595.200000px;}
.x151_c00424{left:596.250000px;}
.x14e_c00424{left:598.800000px;}
.xfd_c00424{left:600.000000px;}
.xd7_c00424{left:603.150000px;}
.x10b_c00424{left:604.200000px;}
.x143_c00424{left:606.750000px;}
.xcc_c00424{left:608.700000px;}
.x137_c00424{left:610.650000px;}
.x126_c00424{left:612.450000px;}
.xdd_c00424{left:614.550000px;}
.xf4_c00424{left:615.750000px;}
.x15c_c00424{left:616.950000px;}
.x113_c00424{left:618.600000px;}
.xec_c00424{left:622.200000px;}
.x139_c00424{left:623.400000px;}
.xc4_c00424{left:624.450000px;}
.xbc_c00424{left:625.800000px;}
.xe3_c00424{left:626.850000px;}
.x103_c00424{left:628.650000px;}
.x144_c00424{left:632.250000px;}
.x10c_c00424{left:633.300000px;}
.x141_c00424{left:634.950000px;}
.xd8_c00424{left:637.650000px;}
.x127_c00424{left:639.150000px;}
.xcd_c00424{left:645.000000px;}
.xed_c00424{left:646.350000px;}
.xd2_c00424{left:647.850000px;}
.x155_c00424{left:651.450000px;}
.xbd_c00424{left:652.800000px;}
.x132_c00424{left:655.350000px;}
.xee_c00424{left:660.750000px;}
.x10e_c00424{left:662.100000px;}
.x105_c00424{left:664.350000px;}
.x12a_c00424{left:665.700000px;}
.xff_c00424{left:666.750000px;}
.x14f_c00424{left:668.250000px;}
.x114_c00424{left:669.300000px;}
.x12d_c00424{left:671.400000px;}
.x15a_c00424{left:673.800000px;}
.x138_c00424{left:674.850000px;}
.xc5_c00424{left:675.900000px;}
.xbe_c00424{left:677.700000px;}
.x13f_c00424{left:680.700000px;}
.xde_c00424{left:684.300000px;}
.x121_c00424{left:687.300000px;}
.x10f_c00424{left:688.350000px;}
.x128_c00424{left:690.750000px;}
.xce_c00424{left:692.100000px;}
.xd9_c00424{left:694.200000px;}
.x14b_c00424{left:695.550000px;}
.x13c_c00424{left:697.650000px;}
.x152_c00424{left:700.650000px;}
.x140_c00424{left:702.300000px;}
.x11e_c00424{left:703.500000px;}
.x145_c00424{left:705.000000px;}
.xe4_c00424{left:706.050000px;}
.xf8_c00424{left:708.150000px;}
.x122_c00424{left:711.750000px;}
.x109_c00424{left:713.850000px;}
.x10d_c00424{left:715.050000px;}
.x116_c00424{left:716.850000px;}
.x15b_c00424{left:719.100000px;}
.xc6_c00424{left:721.200000px;}
.x130_c00424{left:722.250000px;}
.x11f_c00424{left:724.050000px;}
.x115_c00424{left:725.400000px;}
.xcf_c00424{left:727.350000px;}
.xef_c00424{left:728.400000px;}
.xf9_c00424{left:730.800000px;}
.x110_c00424{left:733.050000px;}
.x123_c00424{left:734.850000px;}
.x106_c00424{left:737.100000px;}
.xd3_c00424{left:738.900000px;}
.x2_c00424{left:741.300000px;}
.x142_c00424{left:743.250000px;}
.xd0_c00424{left:744.600000px;}
.x11a_c00424{left:745.650000px;}
.xbf_c00424{left:747.150000px;}
.x107_c00424{left:750.450000px;}
.x117_c00424{left:754.650000px;}
.xe5_c00424{left:756.150000px;}
.x133_c00424{left:758.250000px;}
.xc7_c00424{left:759.750000px;}
.x100_c00424{left:766.500000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls1_c00424{letter-spacing:0.000000pt;}
.ls0_c00424{letter-spacing:49.523810pt;}
.ws9_c00424{word-spacing:-76.190476pt;}
.wsc_c00424{word-spacing:-6.677448pt;}
.wsd_c00424{word-spacing:-5.457364pt;}
.wsa_c00424{word-spacing:-3.611111pt;}
.ws0_c00424{word-spacing:-3.556433pt;}
.wse_c00424{word-spacing:0.000000pt;}
.ws1_c00424{word-spacing:3.024055pt;}
.wsb_c00424{word-spacing:6.080151pt;}
.ws8_c00424{word-spacing:10.555556pt;}
.ws4_c00424{word-spacing:19.682540pt;}
.ws2_c00424{word-spacing:22.857143pt;}
.ws3_c00424{word-spacing:30.793651pt;}
.ws5_c00424{word-spacing:54.444444pt;}
.ws7_c00424{word-spacing:57.222222pt;}
.ws6_c00424{word-spacing:63.950617pt;}
._1_c00424{margin-left:-49.523810pt;}
._0_c00424{width:57.460317pt;}
.fs4_c00424{font-size:26.666667pt;}
.fs3_c00424{font-size:48.000000pt;}
.fs2_c00424{font-size:53.333333pt;}
.fs1_c00424{font-size:58.666667pt;}
.fs5_c00424{font-size:64.000000pt;}
.fs0_c00424{font-size:74.666667pt;}
.y0_c00424{bottom:0.000000pt;}
.y72_c00424{bottom:170.933333pt;}
.y3e_c00424{bottom:174.133333pt;}
.y71_c00424{bottom:184.266667pt;}
.y3d_c00424{bottom:186.933333pt;}
.y70_c00424{bottom:197.200000pt;}
.y3c_c00424{bottom:199.333333pt;}
.y6f_c00424{bottom:210.000000pt;}
.y3a_c00424{bottom:211.466667pt;}
.y6e_c00424{bottom:222.800000pt;}
.y39_c00424{bottom:224.266667pt;}
.y6d_c00424{bottom:235.600000pt;}
.y38_c00424{bottom:237.066667pt;}
.y6c_c00424{bottom:248.666667pt;}
.y37_c00424{bottom:250.133333pt;}
.y6b_c00424{bottom:261.466667pt;}
.y36_c00424{bottom:262.666667pt;}
.y6a_c00424{bottom:274.266667pt;}
.y35_c00424{bottom:276.133333pt;}
.y69_c00424{bottom:287.066667pt;}
.y34_c00424{bottom:288.266667pt;}
.y33_c00424{bottom:305.333333pt;}
.y3b_c00424{bottom:320.933333pt;}
.y32_c00424{bottom:322.266667pt;}
.y68_c00424{bottom:330.266667pt;}
.y31_c00424{bottom:335.333333pt;}
.y30_c00424{bottom:348.266667pt;}
.y67_c00424{bottom:349.466667pt;}
.y2f_c00424{bottom:362.000000pt;}
.y66_c00424{bottom:368.266667pt;}
.y2e_c00424{bottom:373.866667pt;}
.y65_c00424{bottom:384.266667pt;}
.y2d_c00424{bottom:386.000000pt;}
.y2c_c00424{bottom:399.066667pt;}
.y64_c00424{bottom:400.533333pt;}
.y2b_c00424{bottom:412.800000pt;}
.y63_c00424{bottom:416.266667pt;}
.y2a_c00424{bottom:426.266667pt;}
.y62_c00424{bottom:432.266667pt;}
.y29_c00424{bottom:438.133333pt;}
.y61_c00424{bottom:448.266667pt;}
.y28_c00424{bottom:451.200000pt;}
.y27_c00424{bottom:463.733333pt;}
.y60_c00424{bottom:464.266667pt;}
.y26_c00424{bottom:475.866667pt;}
.y5f_c00424{bottom:480.266667pt;}
.y25_c00424{bottom:489.866667pt;}
.y5e_c00424{bottom:496.266667pt;}
.y24_c00424{bottom:505.200000pt;}
.y5d_c00424{bottom:512.266667pt;}
.y23_c00424{bottom:518.666667pt;}
.y5c_c00424{bottom:528.000000pt;}
.y22_c00424{bottom:531.466667pt;}
.y5b_c00424{bottom:544.000000pt;}
.y21_c00424{bottom:548.000000pt;}
.y5a_c00424{bottom:560.000000pt;}
.y20_c00424{bottom:561.466667pt;}
.y1f_c00424{bottom:574.000000pt;}
.y59_c00424{bottom:575.733333pt;}
.y1e_c00424{bottom:586.533333pt;}
.y58_c00424{bottom:591.733333pt;}
.y1d_c00424{bottom:599.066667pt;}
.y57_c00424{bottom:607.733333pt;}
.y1c_c00424{bottom:611.866667pt;}
.y56_c00424{bottom:623.466667pt;}
.y1b_c00424{bottom:624.666667pt;}
.y1a_c00424{bottom:637.466667pt;}
.y55_c00424{bottom:639.466667pt;}
.y19_c00424{bottom:650.266667pt;}
.y54_c00424{bottom:655.200000pt;}
.y18_c00424{bottom:663.066667pt;}
.y53_c00424{bottom:671.200000pt;}
.y17_c00424{bottom:676.533333pt;}
.y52_c00424{bottom:687.200000pt;}
.y16_c00424{bottom:689.333333pt;}
.y51_c00424{bottom:703.200000pt;}
.y15_c00424{bottom:705.333333pt;}
.y14_c00424{bottom:718.400000pt;}
.y50_c00424{bottom:719.200000pt;}
.y13_c00424{bottom:731.200000pt;}
.y4f_c00424{bottom:735.200000pt;}
.y12_c00424{bottom:743.733333pt;}
.y4e_c00424{bottom:751.200000pt;}
.y11_c00424{bottom:756.533333pt;}
.y4d_c00424{bottom:766.933333pt;}
.y10_c00424{bottom:773.066667pt;}
.y4c_c00424{bottom:782.666667pt;}
.yf_c00424{bottom:790.133333pt;}
.ye_c00424{bottom:803.600000pt;}
.y4b_c00424{bottom:804.400000pt;}
.y4a_c00424{bottom:813.733333pt;}
.yd_c00424{bottom:816.666667pt;}
.yc_c00424{bottom:828.800000pt;}
.y49_c00424{bottom:832.266667pt;}
.yb_c00424{bottom:841.466667pt;}
.y48_c00424{bottom:849.866667pt;}
.y47_c00424{bottom:864.000000pt;}
.ya_c00424{bottom:867.333333pt;}
.y9_c00424{bottom:879.866667pt;}
.y46_c00424{bottom:887.866667pt;}
.y8_c00424{bottom:893.333333pt;}
.y45_c00424{bottom:903.600000pt;}
.y7_c00424{bottom:905.866667pt;}
.y6_c00424{bottom:918.666667pt;}
.y44_c00424{bottom:919.600000pt;}
.y5_c00424{bottom:931.466667pt;}
.y43_c00424{bottom:935.600000pt;}
.y42_c00424{bottom:951.333333pt;}
.y41_c00424{bottom:967.333333pt;}
.y4_c00424{bottom:979.866667pt;}
.y40_c00424{bottom:983.333333pt;}
.y3_c00424{bottom:998.400000pt;}
.y3f_c00424{bottom:999.333333pt;}
.y2_c00424{bottom:1019.200000pt;}
.y1_c00424{bottom:1023.733333pt;}
.h6_c00424{height:26.666667pt;}
.h5_c00424{height:48.000000pt;}
.h4_c00424{height:53.333333pt;}
.h3_c00424{height:58.666667pt;}
.h7_c00424{height:64.000000pt;}
.h2_c00424{height:74.666667pt;}
.h1_c00424{height:1126.666667pt;}
.h0_c00424{height:1126.719971pt;}
.w0_c00424{width:851.840007pt;}
.w1_c00424{width:852.000000pt;}
.x0_c00424{left:0.000000pt;}
.xb1_c00424{left:58.933333pt;}
.xa5_c00424{left:64.666667pt;}
.x3_c00424{left:66.266667pt;}
.xb_c00424{left:67.200000pt;}
.x41_c00424{left:73.600000pt;}
.x74_c00424{left:77.066667pt;}
.xa1_c00424{left:78.133333pt;}
.x58_c00424{left:79.066667pt;}
.x49_c00424{left:80.000000pt;}
.x9_c00424{left:83.333333pt;}
.xae_c00424{left:85.066667pt;}
.x88_c00424{left:87.733333pt;}
.x1b_c00424{left:89.733333pt;}
.x27_c00424{left:91.333333pt;}
.x34_c00424{left:95.200000pt;}
.x42_c00424{left:96.933333pt;}
.xb5_c00424{left:97.866667pt;}
.x4e_c00424{left:99.333333pt;}
.x2e_c00424{left:100.266667pt;}
.x56_c00424{left:101.466667pt;}
.x23_c00424{left:102.400000pt;}
.x28_c00424{left:103.866667pt;}
.x89_c00424{left:105.066667pt;}
.x4_c00424{left:106.000000pt;}
.x8f_c00424{left:106.933333pt;}
.x51_c00424{left:108.400000pt;}
.xb6_c00424{left:109.333333pt;}
.x3a_c00424{left:110.400000pt;}
.xb2_c00424{left:112.666667pt;}
.x15_c00424{left:114.400000pt;}
.xc_c00424{left:115.466667pt;}
.xa_c00424{left:116.666667pt;}
.x86_c00424{left:118.266667pt;}
.xa6_c00424{left:119.333333pt;}
.x66_c00424{left:120.666667pt;}
.x5b_c00424{left:122.266667pt;}
.x90_c00424{left:123.866667pt;}
.x3b_c00424{left:124.800000pt;}
.x7a_c00424{left:126.133333pt;}
.x9c_c00424{left:128.000000pt;}
.x67_c00424{left:130.000000pt;}
.xac_c00424{left:133.333333pt;}
.x5_c00424{left:136.400000pt;}
.xd_c00424{left:137.866667pt;}
.x43_c00424{left:139.200000pt;}
.x1c_c00424{left:140.266667pt;}
.x9d_c00424{left:142.133333pt;}
.xa2_c00424{left:143.066667pt;}
.x24_c00424{left:145.333333pt;}
.x91_c00424{left:146.266667pt;}
.x16_c00424{left:147.333333pt;}
.x4f_c00424{left:151.466667pt;}
.x5c_c00424{left:153.600000pt;}
.x52_c00424{left:156.133333pt;}
.x7f_c00424{left:157.600000pt;}
.x75_c00424{left:159.333333pt;}
.x8c_c00424{left:161.066667pt;}
.x6c_c00424{left:162.000000pt;}
.x35_c00424{left:164.000000pt;}
.x68_c00424{left:166.133333pt;}
.x1d_c00424{left:167.733333pt;}
.x59_c00424{left:169.600000pt;}
.x6d_c00424{left:171.600000pt;}
.x99_c00424{left:172.800000pt;}
.x87_c00424{left:173.733333pt;}
.x3c_c00424{left:174.666667pt;}
.x96_c00424{left:175.600000pt;}
.x4a_c00424{left:176.533333pt;}
.xe_c00424{left:177.866667pt;}
.x69_c00424{left:178.933333pt;}
.x25_c00424{left:180.800000pt;}
.x76_c00424{left:183.600000pt;}
.x44_c00424{left:184.933333pt;}
.x5d_c00424{left:186.933333pt;}
.xa3_c00424{left:188.533333pt;}
.xf_c00424{left:190.000000pt;}
.x5f_c00424{left:191.066667pt;}
.x9e_c00424{left:193.200000pt;}
.x84_c00424{left:194.533333pt;}
.x7b_c00424{left:196.933333pt;}
.x36_c00424{left:198.000000pt;}
.x57_c00424{left:199.733333pt;}
.x6f_c00424{left:201.733333pt;}
.x50_c00424{left:203.066667pt;}
.x97_c00424{left:204.666667pt;}
.x10_c00424{left:206.666667pt;}
.x29_c00424{left:207.866667pt;}
.xa7_c00424{left:208.933333pt;}
.x80_c00424{left:210.666667pt;}
.x17_c00424{left:211.600000pt;}
.x60_c00424{left:212.800000pt;}
.x8d_c00424{left:215.200000pt;}
.xa8_c00424{left:216.266667pt;}
.x2a_c00424{left:219.333333pt;}
.x53_c00424{left:221.733333pt;}
.x1e_c00424{left:223.066667pt;}
.xa0_c00424{left:225.333333pt;}
.x70_c00424{left:226.400000pt;}
.x61_c00424{left:227.866667pt;}
.x6_c00424{left:230.800000pt;}
.x81_c00424{left:234.666667pt;}
.x5e_c00424{left:235.600000pt;}
.x2f_c00424{left:237.200000pt;}
.x78_c00424{left:238.400000pt;}
.x3d_c00424{left:239.333333pt;}
.x1f_c00424{left:241.333333pt;}
.x2b_c00424{left:242.400000pt;}
.xb7_c00424{left:243.866667pt;}
.x8a_c00424{left:245.200000pt;}
.x30_c00424{left:246.533333pt;}
.x8e_c00424{left:248.133333pt;}
.x18_c00424{left:249.066667pt;}
.x45_c00424{left:250.800000pt;}
.x9b_c00424{left:252.000000pt;}
.x71_c00424{left:253.333333pt;}
.x7_c00424{left:254.533333pt;}
.x4b_c00424{left:256.266667pt;}
.xa9_c00424{left:257.600000pt;}
.x37_c00424{left:258.533333pt;}
.x20_c00424{left:261.200000pt;}
.x31_c00424{left:262.266667pt;}
.x77_c00424{left:263.866667pt;}
.x46_c00424{left:264.933333pt;}
.x54_c00424{left:266.533333pt;}
.x98_c00424{left:268.400000pt;}
.x11_c00424{left:269.333333pt;}
.x6b_c00424{left:270.266667pt;}
.x62_c00424{left:271.333333pt;}
.x93_c00424{left:272.533333pt;}
.x9f_c00424{left:274.133333pt;}
.xa4_c00424{left:275.200000pt;}
.xaa_c00424{left:276.133333pt;}
.xb3_c00424{left:277.200000pt;}
.x2c_c00424{left:278.933333pt;}
.x1_c00424{left:280.666667pt;}
.xad_c00424{left:283.066667pt;}
.x19_c00424{left:284.000000pt;}
.x7c_c00424{left:285.466667pt;}
.x72_c00424{left:287.200000pt;}
.x2d_c00424{left:288.533333pt;}
.x94_c00424{left:291.733333pt;}
.x6a_c00424{left:293.733333pt;}
.xaf_c00424{left:294.800000pt;}
.x32_c00424{left:296.533333pt;}
.x3e_c00424{left:298.266667pt;}
.x73_c00424{left:299.333333pt;}
.x21_c00424{left:301.733333pt;}
.x5a_c00424{left:303.600000pt;}
.x82_c00424{left:304.666667pt;}
.xb8_c00424{left:305.600000pt;}
.x12_c00424{left:307.066667pt;}
.x55_c00424{left:309.066667pt;}
.x4c_c00424{left:310.666667pt;}
.x47_c00424{left:312.000000pt;}
.x22_c00424{left:313.866667pt;}
.x13_c00424{left:315.333333pt;}
.x63_c00424{left:316.800000pt;}
.x1a_c00424{left:318.533333pt;}
.x26_c00424{left:322.133333pt;}
.xab_c00424{left:324.133333pt;}
.x38_c00424{left:325.200000pt;}
.x64_c00424{left:326.666667pt;}
.x33_c00424{left:328.800000pt;}
.x9a_c00424{left:329.733333pt;}
.x8_c00424{left:330.666667pt;}
.x8b_c00424{left:333.600000pt;}
.x3f_c00424{left:334.800000pt;}
.x7d_c00424{left:335.733333pt;}
.x4d_c00424{left:336.666667pt;}
.xb4_c00424{left:338.000000pt;}
.x83_c00424{left:341.733333pt;}
.x65_c00424{left:343.333333pt;}
.x7e_c00424{left:344.400000pt;}
.x39_c00424{left:345.333333pt;}
.x14_c00424{left:347.066667pt;}
.xb0_c00424{left:348.266667pt;}
.x48_c00424{left:352.000000pt;}
.x95_c00424{left:353.200000pt;}
.x85_c00424{left:355.066667pt;}
.x6e_c00424{left:357.466667pt;}
.x40_c00424{left:361.066667pt;}
.x92_c00424{left:363.333333pt;}
.x79_c00424{left:371.200000pt;}
.x149_c00424{left:383.066667pt;}
.x147_c00424{left:384.000000pt;}
.xe9_c00424{left:384.933333pt;}
.x157_c00424{left:391.333333pt;}
.xfa_c00424{left:397.066667pt;}
.xf0_c00424{left:399.200000pt;}
.xe6_c00424{left:400.400000pt;}
.xc0_c00424{left:401.466667pt;}
.x156_c00424{left:403.333333pt;}
.x12e_c00424{left:411.200000pt;}
.x13d_c00424{left:413.066667pt;}
.xb9_c00424{left:417.600000pt;}
.x118_c00424{left:418.933333pt;}
.xea_c00424{left:421.466667pt;}
.x13b_c00424{left:427.200000pt;}
.x111_c00424{left:428.266667pt;}
.xc8_c00424{left:430.533333pt;}
.x108_c00424{left:431.466667pt;}
.x14a_c00424{left:432.400000pt;}
.x12b_c00424{left:433.733333pt;}
.xd1_c00424{left:435.333333pt;}
.x124_c00424{left:436.266667pt;}
.xf5_c00424{left:437.466667pt;}
.x112_c00424{left:439.466667pt;}
.x129_c00424{left:440.666667pt;}
.xd4_c00424{left:442.666667pt;}
.xc9_c00424{left:444.666667pt;}
.x148_c00424{left:446.133333pt;}
.x101_c00424{left:447.066667pt;}
.xf1_c00424{left:448.133333pt;}
.x153_c00424{left:450.000000pt;}
.xda_c00424{left:450.933333pt;}
.x12c_c00424{left:452.266667pt;}
.xc1_c00424{left:454.266667pt;}
.x150_c00424{left:456.666667pt;}
.x11b_c00424{left:457.733333pt;}
.x10a_c00424{left:459.333333pt;}
.x13e_c00424{left:461.066667pt;}
.xdf_c00424{left:463.333333pt;}
.xca_c00424{left:464.533333pt;}
.x13a_c00424{left:466.400000pt;}
.xe7_c00424{left:467.600000pt;}
.xfb_c00424{left:470.000000pt;}
.x158_c00424{left:470.933333pt;}
.xba_c00424{left:472.000000pt;}
.x14c_c00424{left:474.933333pt;}
.xdb_c00424{left:475.866667pt;}
.xc2_c00424{left:477.333333pt;}
.xf2_c00424{left:478.533333pt;}
.x131_c00424{left:479.866667pt;}
.x11c_c00424{left:481.466667pt;}
.xd5_c00424{left:483.333333pt;}
.xe0_c00424{left:485.466667pt;}
.x146_c00424{left:486.400000pt;}
.x136_c00424{left:488.133333pt;}
.x120_c00424{left:490.000000pt;}
.xbb_c00424{left:492.533333pt;}
.x119_c00424{left:495.466667pt;}
.xf6_c00424{left:496.666667pt;}
.xdc_c00424{left:498.266667pt;}
.xe1_c00424{left:500.533333pt;}
.xfe_c00424{left:502.533333pt;}
.x12f_c00424{left:503.466667pt;}
.x134_c00424{left:505.066667pt;}
.xcb_c00424{left:506.133333pt;}
.x102_c00424{left:507.600000pt;}
.xc3_c00424{left:509.333333pt;}
.x11d_c00424{left:510.266667pt;}
.x14d_c00424{left:511.466667pt;}
.xf3_c00424{left:512.800000pt;}
.x125_c00424{left:513.733333pt;}
.xeb_c00424{left:514.933333pt;}
.xfc_c00424{left:518.000000pt;}
.x159_c00424{left:518.933333pt;}
.xd6_c00424{left:519.866667pt;}
.x154_c00424{left:520.800000pt;}
.xe2_c00424{left:523.600000pt;}
.xf7_c00424{left:524.533333pt;}
.xe8_c00424{left:526.400000pt;}
.x135_c00424{left:527.466667pt;}
.x104_c00424{left:529.066667pt;}
.x151_c00424{left:530.000000pt;}
.x14e_c00424{left:532.266667pt;}
.xfd_c00424{left:533.333333pt;}
.xd7_c00424{left:536.133333pt;}
.x10b_c00424{left:537.066667pt;}
.x143_c00424{left:539.333333pt;}
.xcc_c00424{left:541.066667pt;}
.x137_c00424{left:542.800000pt;}
.x126_c00424{left:544.400000pt;}
.xdd_c00424{left:546.266667pt;}
.xf4_c00424{left:547.333333pt;}
.x15c_c00424{left:548.400000pt;}
.x113_c00424{left:549.866667pt;}
.xec_c00424{left:553.066667pt;}
.x139_c00424{left:554.133333pt;}
.xc4_c00424{left:555.066667pt;}
.xbc_c00424{left:556.266667pt;}
.xe3_c00424{left:557.200000pt;}
.x103_c00424{left:558.800000pt;}
.x144_c00424{left:562.000000pt;}
.x10c_c00424{left:562.933333pt;}
.x141_c00424{left:564.400000pt;}
.xd8_c00424{left:566.800000pt;}
.x127_c00424{left:568.133333pt;}
.xcd_c00424{left:573.333333pt;}
.xed_c00424{left:574.533333pt;}
.xd2_c00424{left:575.866667pt;}
.x155_c00424{left:579.066667pt;}
.xbd_c00424{left:580.266667pt;}
.x132_c00424{left:582.533333pt;}
.xee_c00424{left:587.333333pt;}
.x10e_c00424{left:588.533333pt;}
.x105_c00424{left:590.533333pt;}
.x12a_c00424{left:591.733333pt;}
.xff_c00424{left:592.666667pt;}
.x14f_c00424{left:594.000000pt;}
.x114_c00424{left:594.933333pt;}
.x12d_c00424{left:596.800000pt;}
.x15a_c00424{left:598.933333pt;}
.x138_c00424{left:599.866667pt;}
.xc5_c00424{left:600.800000pt;}
.xbe_c00424{left:602.400000pt;}
.x13f_c00424{left:605.066667pt;}
.xde_c00424{left:608.266667pt;}
.x121_c00424{left:610.933333pt;}
.x10f_c00424{left:611.866667pt;}
.x128_c00424{left:614.000000pt;}
.xce_c00424{left:615.200000pt;}
.xd9_c00424{left:617.066667pt;}
.x14b_c00424{left:618.266667pt;}
.x13c_c00424{left:620.133333pt;}
.x152_c00424{left:622.800000pt;}
.x140_c00424{left:624.266667pt;}
.x11e_c00424{left:625.333333pt;}
.x145_c00424{left:626.666667pt;}
.xe4_c00424{left:627.600000pt;}
.xf8_c00424{left:629.466667pt;}
.x122_c00424{left:632.666667pt;}
.x109_c00424{left:634.533333pt;}
.x10d_c00424{left:635.600000pt;}
.x116_c00424{left:637.200000pt;}
.x15b_c00424{left:639.200000pt;}
.xc6_c00424{left:641.066667pt;}
.x130_c00424{left:642.000000pt;}
.x11f_c00424{left:643.600000pt;}
.x115_c00424{left:644.800000pt;}
.xcf_c00424{left:646.533333pt;}
.xef_c00424{left:647.466667pt;}
.xf9_c00424{left:649.600000pt;}
.x110_c00424{left:651.600000pt;}
.x123_c00424{left:653.200000pt;}
.x106_c00424{left:655.200000pt;}
.xd3_c00424{left:656.800000pt;}
.x2_c00424{left:658.933333pt;}
.x142_c00424{left:660.666667pt;}
.xd0_c00424{left:661.866667pt;}
.x11a_c00424{left:662.800000pt;}
.xbf_c00424{left:664.133333pt;}
.x107_c00424{left:667.066667pt;}
.x117_c00424{left:670.800000pt;}
.xe5_c00424{left:672.133333pt;}
.x133_c00424{left:674.000000pt;}
.xc7_c00424{left:675.333333pt;}
.x100_c00424{left:681.333333pt;}
}





/* 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_c00425 {
    display:none;
  }
  .loading-indicator_c00425.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00425 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_c00425 { 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_c00425" -> "#page-container .classname_c00425")
 */
.pf_c00425 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00425 { /* 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_c00425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00425 { /* 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_c00425 { /* 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_c00425 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00425 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00425 {overflow:visible;}
  }
}
.c_c00425 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00425 { /* 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_c00425:after { /* webkit #35443 */
  content: '';
}
.t_c00425:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00425 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 */
}
.__c00425 { /* 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_c00425 { /* info for Javascript */
  display:none;
}
.l_c00425 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00425 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00425 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00425: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_c00425 {
    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_c00425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00425.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_c00425 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00425{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00425;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.000000;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;}
.ma_c00425{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.md5_c00425{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m114_c00425{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.me4_c00425{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00425{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m24_c00425{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m18_c00425{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me7_c00425{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00425{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m51_c00425{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00425{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m74_c00425{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00425{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m107_c00425{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mea_c00425{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00425{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.me8_c00425{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m36_c00425{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.med_c00425{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mee_c00425{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m29_c00425{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me9_c00425{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m27_c00425{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m86_c00425{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m39_c00425{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00425{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md7_c00425{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00425{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m28_c00425{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00425{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00425{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00425{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m34_c00425{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m7_c00425{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00425{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m20_c00425{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.me5_c00425{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00425{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00425{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m35_c00425{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m54_c00425{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m19_c00425{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00425{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m46_c00425{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00425{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00425{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m22_c00425{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m37_c00425{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mac_c00425{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m16_c00425{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m71_c00425{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00425{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m119_c00425{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m97_c00425{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m78_c00425{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00425{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00425{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m38_c00425{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00425{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m44_c00425{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m121_c00425{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00425{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m91_c00425{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m94_c00425{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m96_c00425{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf_c00425{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00425{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00425{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m26_c00425{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m113_c00425{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00425{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00425{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.md1_c00425{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m90_c00425{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00425{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2_c00425{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m84_c00425{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00425{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m47_c00425{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00425{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00425{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00425{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m117_c00425{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00425{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m85_c00425{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00425{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00425{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m77_c00425{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me_c00425{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m95_c00425{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00425{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m88_c00425{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00425{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00425{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00425{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00425{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9_c00425{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md4_c00425{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m82_c00425{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00425{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11_c00425{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00425{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00425{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m59_c00425{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00425{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m17_c00425{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md3_c00425{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00425{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mae_c00425{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mde_c00425{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m99_c00425{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m70_c00425{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00425{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00425{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00425{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00425{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mad_c00425{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m40_c00425{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00425{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m57_c00425{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00425{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.maf_c00425{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m89_c00425{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00425{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m81_c00425{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m118_c00425{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00425{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00425{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mce_c00425{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m25_c00425{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.maa_c00425{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00425{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m21_c00425{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m116_c00425{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m64_c00425{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00425{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mec_c00425{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m79_c00425{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m52_c00425{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md6_c00425{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00425{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m49_c00425{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m8_c00425{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md0_c00425{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m68_c00425{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00425{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m55_c00425{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00425{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me2_c00425{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00425{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me6_c00425{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00425{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00425{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00425{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00425{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m105_c00425{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m67_c00425{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mab_c00425{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc_c00425{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m76_c00425{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00425{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00425{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00425{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00425{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m101_c00425{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00425{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00425{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m42_c00425{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m109_c00425{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00425{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m33_c00425{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00425{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00425{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00425{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m45_c00425{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m103_c00425{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00425{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.md2_c00425{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m61_c00425{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m112_c00425{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00425{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00425{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00425{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.md9_c00425{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m32_c00425{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mca_c00425{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00425{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00425{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00425{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m110_c00425{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m23_c00425{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00425{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m92_c00425{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00425{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m30_c00425{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m15_c00425{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00425{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m122_c00425{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00425{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00425{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m98_c00425{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00425{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m66_c00425{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mba_c00425{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m62_c00425{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m48_c00425{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00425{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m12_c00425{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m100_c00425{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m83_c00425{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00425{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m108_c00425{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m13_c00425{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m31_c00425{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00425{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00425{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00425{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00425{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mda_c00425{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00425{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00425{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5_c00425{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00425{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m111_c00425{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);}
.m14_c00425{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m53_c00425{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m106_c00425{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00425{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00425{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m65_c00425{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m104_c00425{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4_c00425{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m80_c00425{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m56_c00425{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m87_c00425{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m69_c00425{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00425{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00425{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00425{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00425{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m63_c00425{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m93_c00425{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m115_c00425{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mff_c00425{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00425{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m75_c00425{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00425{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m6_c00425{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00425{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00425{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00425{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m50_c00425{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00425{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00425{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m60_c00425{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00425{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m120_c00425{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m43_c00425{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00425{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00425{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mb_c00425{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00425{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00425{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me1_c00425{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.me3_c00425{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00425{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00425{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00425{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m58_c00425{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m41_c00425{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m72_c00425{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00425{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.md8_c00425{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.m102_c00425{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00425{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00425{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00425{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00425{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.m73_c00425{transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382250,0.000000,0.000000,0.250000,0,0);}
.me0_c00425{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00425{transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00425{transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00425{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);}
.meb_c00425{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00425{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00425{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00425{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mef_c00425{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls0_c00425{letter-spacing:0.000000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{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__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00425{word-spacing:-13.769231px;}
.ws7_c00425{word-spacing:-10.731707px;}
.ws9_c00425{word-spacing:-7.500000px;}
.ws5_c00425{word-spacing:-1.865330px;}
.wsa_c00425{word-spacing:0.000000px;}
.ws3_c00425{word-spacing:2.288136px;}
.ws6_c00425{word-spacing:2.357143px;}
.ws0_c00425{word-spacing:2.432665px;}
.ws1_c00425{word-spacing:7.052402px;}
.ws4_c00425{word-spacing:7.700637px;}
.ws8_c00425{word-spacing:10.411765px;}
.fc0_c00425{color:transparent;}
.fs5_c00425{font-size:54.000000px;}
.fs4_c00425{font-size:60.000000px;}
.fs3_c00425{font-size:66.000000px;}
.fs0_c00425{font-size:72.000000px;}
.fs2_c00425{font-size:78.000000px;}
.fs1_c00425{font-size:84.000000px;}
.y0_c00425{bottom:0.000000px;}
.y40_c00425{bottom:189.300000px;}
.y65_c00425{bottom:192.300000px;}
.y64_c00425{bottom:210.900000px;}
.y3f_c00425{bottom:211.200000px;}
.y3e_c00425{bottom:229.500000px;}
.y63_c00425{bottom:232.500000px;}
.y3d_c00425{bottom:247.200000px;}
.y62_c00425{bottom:263.100000px;}
.y3c_c00425{bottom:264.900000px;}
.y3b_c00425{bottom:282.600000px;}
.y61_c00425{bottom:294.450000px;}
.y3a_c00425{bottom:300.300000px;}
.y60_c00425{bottom:312.450000px;}
.y39_c00425{bottom:318.600000px;}
.y5f_c00425{bottom:330.150000px;}
.y38_c00425{bottom:336.600000px;}
.y5e_c00425{bottom:347.400000px;}
.y37_c00425{bottom:354.600000px;}
.y5d_c00425{bottom:365.100000px;}
.y36_c00425{bottom:372.600000px;}
.y5c_c00425{bottom:383.100000px;}
.y35_c00425{bottom:394.950000px;}
.y5b_c00425{bottom:401.400000px;}
.y34_c00425{bottom:412.950000px;}
.y5a_c00425{bottom:424.050000px;}
.y33_c00425{bottom:431.250000px;}
.y59_c00425{bottom:441.750000px;}
.y32_c00425{bottom:449.250000px;}
.y58_c00425{bottom:463.200000px;}
.y31_c00425{bottom:467.550000px;}
.y57_c00425{bottom:481.950000px;}
.y30_c00425{bottom:485.250000px;}
.y56_c00425{bottom:499.950000px;}
.y2f_c00425{bottom:503.550000px;}
.y55_c00425{bottom:518.700000px;}
.y2e_c00425{bottom:521.550000px;}
.y2d_c00425{bottom:539.250000px;}
.y2c_c00425{bottom:557.250000px;}
.y54_c00425{bottom:558.300000px;}
.y2b_c00425{bottom:575.250000px;}
.y53_c00425{bottom:585.000000px;}
.y2a_c00425{bottom:592.950000px;}
.y52_c00425{bottom:603.300000px;}
.y29_c00425{bottom:610.950000px;}
.y51_c00425{bottom:621.300000px;}
.y28_c00425{bottom:628.950000px;}
.y50_c00425{bottom:639.300000px;}
.y27_c00425{bottom:646.650000px;}
.y4f_c00425{bottom:657.300000px;}
.y26_c00425{bottom:664.950000px;}
.y4e_c00425{bottom:675.300000px;}
.y25_c00425{bottom:682.950000px;}
.y4d_c00425{bottom:693.300000px;}
.y24_c00425{bottom:700.950000px;}
.y4c_c00425{bottom:711.300000px;}
.y23_c00425{bottom:718.950000px;}
.y4b_c00425{bottom:732.900000px;}
.y22_c00425{bottom:736.950000px;}
.y4a_c00425{bottom:750.900000px;}
.y21_c00425{bottom:755.250000px;}
.y49_c00425{bottom:768.900000px;}
.y20_c00425{bottom:773.250000px;}
.y48_c00425{bottom:786.900000px;}
.y1f_c00425{bottom:791.250000px;}
.y1e_c00425{bottom:808.950000px;}
.y47_c00425{bottom:809.100000px;}
.y46_c00425{bottom:827.100000px;}
.y1d_c00425{bottom:828.000000px;}
.y1c_c00425{bottom:844.950000px;}
.y45_c00425{bottom:845.100000px;}
.y44_c00425{bottom:863.400000px;}
.y1b_c00425{bottom:864.300000px;}
.y43_c00425{bottom:881.400000px;}
.y1a_c00425{bottom:883.050000px;}
.y42_c00425{bottom:899.700000px;}
.y19_c00425{bottom:901.800000px;}
.y41_c00425{bottom:916.500000px;}
.y18_c00425{bottom:919.500000px;}
.y17_c00425{bottom:937.050000px;}
.yc_c00425{bottom:958.350000px;}
.y16_c00425{bottom:961.950000px;}
.yb_c00425{bottom:977.100000px;}
.y15_c00425{bottom:979.950000px;}
.ya_c00425{bottom:995.400000px;}
.y14_c00425{bottom:997.950000px;}
.y9_c00425{bottom:1012.650000px;}
.y13_c00425{bottom:1015.950000px;}
.y8_c00425{bottom:1031.400000px;}
.y12_c00425{bottom:1034.250000px;}
.y7_c00425{bottom:1049.700000px;}
.y11_c00425{bottom:1052.250000px;}
.y6_c00425{bottom:1067.400000px;}
.y10_c00425{bottom:1070.250000px;}
.y5_c00425{bottom:1086.450000px;}
.yf_c00425{bottom:1088.250000px;}
.ye_c00425{bottom:1106.250000px;}
.y4_c00425{bottom:1109.850000px;}
.yd_c00425{bottom:1124.250000px;}
.y3_c00425{bottom:1125.300000px;}
.y1_c00425{bottom:1149.150000px;}
.y2_c00425{bottom:1152.000000px;}
.h7_c00425{height:54.000000px;}
.h6_c00425{height:60.000000px;}
.h5_c00425{height:66.000000px;}
.h2_c00425{height:72.000000px;}
.h4_c00425{height:78.000000px;}
.h3_c00425{height:84.000000px;}
.h0_c00425{height:1270.440033px;}
.h1_c00425{height:1270.500000px;}
.w0_c00425{width:958.320007px;}
.w1_c00425{width:958.500000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:190.800000px;}
.x6e_c00425{left:192.600000px;}
.xcc_c00425{left:195.900000px;}
.x8c_c00425{left:207.150000px;}
.x8_c00425{left:209.550000px;}
.x21_c00425{left:210.750000px;}
.x18_c00425{left:212.400000px;}
.xb9_c00425{left:213.750000px;}
.xce_c00425{left:214.800000px;}
.xd4_c00425{left:216.150000px;}
.xd5_c00425{left:225.000000px;}
.xb_c00425{left:228.600000px;}
.xb4_c00425{left:229.650000px;}
.xc5_c00425{left:231.150000px;}
.x3_c00425{left:234.000000px;}
.x19_c00425{left:235.050000px;}
.x6f_c00425{left:237.600000px;}
.xc0_c00425{left:239.700000px;}
.xa3_c00425{left:241.500000px;}
.xb0_c00425{left:243.000000px;}
.x22_c00425{left:245.700000px;}
.x78_c00425{left:247.650000px;}
.x1a_c00425{left:248.700000px;}
.x7d_c00425{left:250.950000px;}
.x89_c00425{left:252.750000px;}
.xd9_c00425{left:253.950000px;}
.xa8_c00425{left:256.050000px;}
.x87_c00425{left:259.200000px;}
.x2f_c00425{left:264.300000px;}
.xba_c00425{left:265.650000px;}
.x4_c00425{left:267.900000px;}
.xc_c00425{left:271.500000px;}
.x9_c00425{left:274.650000px;}
.x83_c00425{left:277.950000px;}
.xcf_c00425{left:279.300000px;}
.xd2_c00425{left:280.800000px;}
.xa4_c00425{left:282.150000px;}
.xa5_c00425{left:283.800000px;}
.x1b_c00425{left:285.150000px;}
.x7e_c00425{left:286.950000px;}
.x10_c00425{left:289.950000px;}
.x79_c00425{left:292.950000px;}
.xbb_c00425{left:294.150000px;}
.xd0_c00425{left:295.500000px;}
.xc6_c00425{left:296.700000px;}
.x91_c00425{left:298.800000px;}
.x34_c00425{left:300.000000px;}
.x7f_c00425{left:301.650000px;}
.xa6_c00425{left:303.900000px;}
.xbf_c00425{left:305.100000px;}
.x23_c00425{left:306.900000px;}
.xb1_c00425{left:309.600000px;}
.x1c_c00425{left:311.100000px;}
.xd_c00425{left:312.600000px;}
.x99_c00425{left:314.700000px;}
.xd3_c00425{left:317.100000px;}
.x92_c00425{left:318.300000px;}
.x37_c00425{left:321.150000px;}
.x9a_c00425{left:322.500000px;}
.x8a_c00425{left:323.700000px;}
.xa0_c00425{left:324.750000px;}
.x11_c00425{left:327.000000px;}
.x2b_c00425{left:328.800000px;}
.xa9_c00425{left:331.950000px;}
.xc7_c00425{left:334.500000px;}
.xc9_c00425{left:336.150000px;}
.x9d_c00425{left:337.350000px;}
.xa1_c00425{left:339.150000px;}
.x38_c00425{left:342.000000px;}
.x70_c00425{left:343.350000px;}
.x24_c00425{left:344.700000px;}
.xa_c00425{left:346.350000px;}
.xaa_c00425{left:348.450000px;}
.xb6_c00425{left:349.800000px;}
.x30_c00425{left:351.300000px;}
.x35_c00425{left:354.300000px;}
.xda_c00425{left:355.500000px;}
.xad_c00425{left:357.900000px;}
.x88_c00425{left:358.950000px;}
.x1d_c00425{left:361.200000px;}
.xd6_c00425{left:363.900000px;}
.x12_c00425{left:365.100000px;}
.xab_c00425{left:367.500000px;}
.x80_c00425{left:369.750000px;}
.xb7_c00425{left:371.100000px;}
.x5_c00425{left:372.300000px;}
.xc1_c00425{left:373.650000px;}
.x93_c00425{left:375.900000px;}
.x36_c00425{left:379.500000px;}
.x7a_c00425{left:382.950000px;}
.x2c_c00425{left:384.300000px;}
.xd8_c00425{left:385.800000px;}
.x9e_c00425{left:387.000000px;}
.x9b_c00425{left:391.350000px;}
.x8d_c00425{left:393.450000px;}
.x94_c00425{left:395.400000px;}
.x6_c00425{left:397.200000px;}
.x81_c00425{left:399.300000px;}
.xa2_c00425{left:401.850000px;}
.x13_c00425{left:402.900000px;}
.x25_c00425{left:404.400000px;}
.x8b_c00425{left:406.200000px;}
.x97_c00425{left:407.400000px;}
.xbd_c00425{left:409.800000px;}
.xb5_c00425{left:410.850000px;}
.x39_c00425{left:412.500000px;}
.xc8_c00425{left:414.450000px;}
.xe_c00425{left:415.500000px;}
.x31_c00425{left:417.150000px;}
.xca_c00425{left:418.650000px;}
.x26_c00425{left:421.650000px;}
.x3a_c00425{left:423.000000px;}
.x8e_c00425{left:424.350000px;}
.xcd_c00425{left:426.000000px;}
.x82_c00425{left:427.350000px;}
.xd1_c00425{left:428.850000px;}
.x95_c00425{left:430.350000px;}
.x84_c00425{left:432.000000px;}
.x71_c00425{left:434.400000px;}
.x1e_c00425{left:435.750000px;}
.x9f_c00425{left:436.950000px;}
.x2_c00425{left:439.500000px;}
.xc2_c00425{left:441.000000px;}
.x2d_c00425{left:443.100000px;}
.x27_c00425{left:444.300000px;}
.x8f_c00425{left:447.450000px;}
.x7b_c00425{left:450.300000px;}
.xc3_c00425{left:452.100000px;}
.x14_c00425{left:457.650000px;}
.xcb_c00425{left:459.750000px;}
.x28_c00425{left:460.800000px;}
.x1f_c00425{left:462.750000px;}
.xa7_c00425{left:465.600000px;}
.x96_c00425{left:466.650000px;}
.x7_c00425{left:467.700000px;}
.xc4_c00425{left:470.850000px;}
.x9c_c00425{left:473.100000px;}
.xac_c00425{left:474.450000px;}
.xb2_c00425{left:476.700000px;}
.xb8_c00425{left:478.050000px;}
.x72_c00425{left:479.100000px;}
.x98_c00425{left:482.550000px;}
.xae_c00425{left:483.600000px;}
.x2e_c00425{left:486.000000px;}
.x85_c00425{left:487.050000px;}
.x20_c00425{left:489.000000px;}
.xf_c00425{left:490.050000px;}
.x15_c00425{left:492.900000px;}
.x32_c00425{left:495.900000px;}
.xbe_c00425{left:497.250000px;}
.x86_c00425{left:498.600000px;}
.x16_c00425{left:500.400000px;}
.xd7_c00425{left:502.200000px;}
.xb3_c00425{left:503.700000px;}
.x29_c00425{left:505.350000px;}
.x90_c00425{left:506.550000px;}
.x7c_c00425{left:511.200000px;}
.xaf_c00425{left:512.700000px;}
.x33_c00425{left:514.200000px;}
.x17_c00425{left:516.300000px;}
.x2a_c00425{left:520.050000px;}
.xbc_c00425{left:521.550000px;}
.xfa_c00425{left:551.100000px;}
.x73_c00425{left:552.150000px;}
.x12f_c00425{left:553.350000px;}
.x13a_c00425{left:555.450000px;}
.x106_c00425{left:566.400000px;}
.xe0_c00425{left:568.800000px;}
.x3b_c00425{left:570.600000px;}
.x74_c00425{left:572.250000px;}
.x13e_c00425{left:573.600000px;}
.xdb_c00425{left:580.950000px;}
.x13b_c00425{left:585.750000px;}
.xdc_c00425{left:588.900000px;}
.x54_c00425{left:591.300000px;}
.x75_c00425{left:593.550000px;}
.xee_c00425{left:595.800000px;}
.xfb_c00425{left:596.850000px;}
.x129_c00425{left:599.250000px;}
.x11e_c00425{left:601.050000px;}
.xf2_c00425{left:602.250000px;}
.x122_c00425{left:603.600000px;}
.xe7_c00425{left:604.650000px;}
.x137_c00425{left:605.850000px;}
.x12e_c00425{left:607.950000px;}
.x3c_c00425{left:609.150000px;}
.x42_c00425{left:610.500000px;}
.x107_c00425{left:613.950000px;}
.x112_c00425{left:617.550000px;}
.xef_c00425{left:619.500000px;}
.xe8_c00425{left:620.550000px;}
.x5e_c00425{left:623.400000px;}
.x10e_c00425{left:627.600000px;}
.x113_c00425{left:629.850000px;}
.x55_c00425{left:630.900000px;}
.x6c_c00425{left:632.100000px;}
.xdd_c00425{left:633.600000px;}
.x3d_c00425{left:635.400000px;}
.x138_c00425{left:636.450000px;}
.x11b_c00425{left:637.800000px;}
.x65_c00425{left:639.600000px;}
.x126_c00425{left:641.850000px;}
.xf6_c00425{left:642.900000px;}
.x10a_c00425{left:643.950000px;}
.x108_c00425{left:645.750000px;}
.x43_c00425{left:647.550000px;}
.x4d_c00425{left:649.200000px;}
.x56_c00425{left:651.000000px;}
.x100_c00425{left:654.450000px;}
.xe1_c00425{left:655.950000px;}
.x4e_c00425{left:657.450000px;}
.xf3_c00425{left:660.600000px;}
.x49_c00425{left:661.800000px;}
.x66_c00425{left:663.000000px;}
.x131_c00425{left:664.050000px;}
.x12a_c00425{left:668.400000px;}
.x101_c00425{left:670.650000px;}
.x44_c00425{left:671.700000px;}
.x68_c00425{left:675.150000px;}
.x135_c00425{left:677.550000px;}
.xe2_c00425{left:679.050000px;}
.x11f_c00425{left:682.050000px;}
.x4f_c00425{left:686.250000px;}
.x57_c00425{left:688.500000px;}
.xde_c00425{left:689.700000px;}
.x123_c00425{left:690.750000px;}
.x69_c00425{left:692.400000px;}
.x4a_c00425{left:694.500000px;}
.xfc_c00425{left:695.550000px;}
.x58_c00425{left:697.200000px;}
.xe9_c00425{left:699.000000px;}
.x5f_c00425{left:700.800000px;}
.x120_c00425{left:701.850000px;}
.x132_c00425{left:702.900000px;}
.x50_c00425{left:705.000000px;}
.xf7_c00425{left:707.700000px;}
.x45_c00425{left:710.250000px;}
.x6d_c00425{left:711.750000px;}
.x3e_c00425{left:713.550000px;}
.x10f_c00425{left:715.800000px;}
.xea_c00425{left:717.000000px;}
.x102_c00425{left:720.300000px;}
.xf4_c00425{left:723.600000px;}
.x110_c00425{left:724.800000px;}
.xe3_c00425{left:727.650000px;}
.x60_c00425{left:728.850000px;}
.x76_c00425{left:730.350000px;}
.x11c_c00425{left:731.700000px;}
.xf8_c00425{left:732.900000px;}
.x124_c00425{left:733.950000px;}
.x114_c00425{left:735.450000px;}
.xfd_c00425{left:736.950000px;}
.x118_c00425{left:738.600000px;}
.x59_c00425{left:742.500000px;}
.x6a_c00425{left:744.300000px;}
.x67_c00425{left:751.500000px;}
.x3f_c00425{left:753.450000px;}
.x51_c00425{left:755.100000px;}
.x6b_c00425{left:756.900000px;}
.x10b_c00425{left:758.400000px;}
.x5a_c00425{left:760.200000px;}
.xe4_c00425{left:762.150000px;}
.x52_c00425{left:765.900000px;}
.x127_c00425{left:767.100000px;}
.x105_c00425{left:768.750000px;}
.xeb_c00425{left:770.700000px;}
.x125_c00425{left:773.250000px;}
.x119_c00425{left:774.300000px;}
.xf9_c00425{left:776.400000px;}
.x40_c00425{left:778.950000px;}
.x46_c00425{left:781.950000px;}
.x139_c00425{left:783.600000px;}
.x133_c00425{left:785.250000px;}
.x4b_c00425{left:787.050000px;}
.x11a_c00425{left:789.750000px;}
.xf0_c00425{left:794.850000px;}
.x111_c00425{left:796.800000px;}
.x13f_c00425{left:798.450000px;}
.x47_c00425{left:799.650000px;}
.x13c_c00425{left:800.700000px;}
.x63_c00425{left:801.900000px;}
.x136_c00425{left:805.350000px;}
.x115_c00425{left:806.400000px;}
.xe5_c00425{left:807.750000px;}
.x4c_c00425{left:811.200000px;}
.xfe_c00425{left:812.550000px;}
.x5b_c00425{left:815.250000px;}
.x61_c00425{left:818.100000px;}
.x12b_c00425{left:822.600000px;}
.x12c_c00425{left:825.000000px;}
.x77_c00425{left:826.200000px;}
.x62_c00425{left:829.650000px;}
.x116_c00425{left:831.300000px;}
.x5c_c00425{left:832.500000px;}
.x41_c00425{left:836.550000px;}
.x12d_c00425{left:837.900000px;}
.x10c_c00425{left:838.950000px;}
.x103_c00425{left:840.600000px;}
.xf1_c00425{left:841.650000px;}
.xe6_c00425{left:844.050000px;}
.x13d_c00425{left:847.200000px;}
.xf5_c00425{left:849.600000px;}
.x128_c00425{left:850.950000px;}
.x5d_c00425{left:852.000000px;}
.x134_c00425{left:853.200000px;}
.x117_c00425{left:854.700000px;}
.x104_c00425{left:859.650000px;}
.x11d_c00425{left:864.150000px;}
.xdf_c00425{left:865.500000px;}
.xec_c00425{left:866.550000px;}
.x121_c00425{left:868.200000px;}
.xff_c00425{left:869.400000px;}
.x109_c00425{left:871.200000px;}
.x53_c00425{left:872.850000px;}
.x130_c00425{left:873.900000px;}
.x64_c00425{left:877.200000px;}
.xed_c00425{left:878.850000px;}
.x48_c00425{left:885.000000px;}
.x10d_c00425{left:888.150000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws2_c00425{word-spacing:-12.239316pt;}
.ws7_c00425{word-spacing:-9.539295pt;}
.ws9_c00425{word-spacing:-6.666667pt;}
.ws5_c00425{word-spacing:-1.658071pt;}
.wsa_c00425{word-spacing:0.000000pt;}
.ws3_c00425{word-spacing:2.033898pt;}
.ws6_c00425{word-spacing:2.095238pt;}
.ws0_c00425{word-spacing:2.162369pt;}
.ws1_c00425{word-spacing:6.268802pt;}
.ws4_c00425{word-spacing:6.845011pt;}
.ws8_c00425{word-spacing:9.254902pt;}
.fs5_c00425{font-size:48.000000pt;}
.fs4_c00425{font-size:53.333333pt;}
.fs3_c00425{font-size:58.666667pt;}
.fs0_c00425{font-size:64.000000pt;}
.fs2_c00425{font-size:69.333333pt;}
.fs1_c00425{font-size:74.666667pt;}
.y0_c00425{bottom:0.000000pt;}
.y40_c00425{bottom:168.266667pt;}
.y65_c00425{bottom:170.933333pt;}
.y64_c00425{bottom:187.466667pt;}
.y3f_c00425{bottom:187.733333pt;}
.y3e_c00425{bottom:204.000000pt;}
.y63_c00425{bottom:206.666667pt;}
.y3d_c00425{bottom:219.733333pt;}
.y62_c00425{bottom:233.866667pt;}
.y3c_c00425{bottom:235.466667pt;}
.y3b_c00425{bottom:251.200000pt;}
.y61_c00425{bottom:261.733333pt;}
.y3a_c00425{bottom:266.933333pt;}
.y60_c00425{bottom:277.733333pt;}
.y39_c00425{bottom:283.200000pt;}
.y5f_c00425{bottom:293.466667pt;}
.y38_c00425{bottom:299.200000pt;}
.y5e_c00425{bottom:308.800000pt;}
.y37_c00425{bottom:315.200000pt;}
.y5d_c00425{bottom:324.533333pt;}
.y36_c00425{bottom:331.200000pt;}
.y5c_c00425{bottom:340.533333pt;}
.y35_c00425{bottom:351.066667pt;}
.y5b_c00425{bottom:356.800000pt;}
.y34_c00425{bottom:367.066667pt;}
.y5a_c00425{bottom:376.933333pt;}
.y33_c00425{bottom:383.333333pt;}
.y59_c00425{bottom:392.666667pt;}
.y32_c00425{bottom:399.333333pt;}
.y58_c00425{bottom:411.733333pt;}
.y31_c00425{bottom:415.600000pt;}
.y57_c00425{bottom:428.400000pt;}
.y30_c00425{bottom:431.333333pt;}
.y56_c00425{bottom:444.400000pt;}
.y2f_c00425{bottom:447.600000pt;}
.y55_c00425{bottom:461.066667pt;}
.y2e_c00425{bottom:463.600000pt;}
.y2d_c00425{bottom:479.333333pt;}
.y2c_c00425{bottom:495.333333pt;}
.y54_c00425{bottom:496.266667pt;}
.y2b_c00425{bottom:511.333333pt;}
.y53_c00425{bottom:520.000000pt;}
.y2a_c00425{bottom:527.066667pt;}
.y52_c00425{bottom:536.266667pt;}
.y29_c00425{bottom:543.066667pt;}
.y51_c00425{bottom:552.266667pt;}
.y28_c00425{bottom:559.066667pt;}
.y50_c00425{bottom:568.266667pt;}
.y27_c00425{bottom:574.800000pt;}
.y4f_c00425{bottom:584.266667pt;}
.y26_c00425{bottom:591.066667pt;}
.y4e_c00425{bottom:600.266667pt;}
.y25_c00425{bottom:607.066667pt;}
.y4d_c00425{bottom:616.266667pt;}
.y24_c00425{bottom:623.066667pt;}
.y4c_c00425{bottom:632.266667pt;}
.y23_c00425{bottom:639.066667pt;}
.y4b_c00425{bottom:651.466667pt;}
.y22_c00425{bottom:655.066667pt;}
.y4a_c00425{bottom:667.466667pt;}
.y21_c00425{bottom:671.333333pt;}
.y49_c00425{bottom:683.466667pt;}
.y20_c00425{bottom:687.333333pt;}
.y48_c00425{bottom:699.466667pt;}
.y1f_c00425{bottom:703.333333pt;}
.y1e_c00425{bottom:719.066667pt;}
.y47_c00425{bottom:719.200000pt;}
.y46_c00425{bottom:735.200000pt;}
.y1d_c00425{bottom:736.000000pt;}
.y1c_c00425{bottom:751.066667pt;}
.y45_c00425{bottom:751.200000pt;}
.y44_c00425{bottom:767.466667pt;}
.y1b_c00425{bottom:768.266667pt;}
.y43_c00425{bottom:783.466667pt;}
.y1a_c00425{bottom:784.933333pt;}
.y42_c00425{bottom:799.733333pt;}
.y19_c00425{bottom:801.600000pt;}
.y41_c00425{bottom:814.666667pt;}
.y18_c00425{bottom:817.333333pt;}
.y17_c00425{bottom:832.933333pt;}
.yc_c00425{bottom:851.866667pt;}
.y16_c00425{bottom:855.066667pt;}
.yb_c00425{bottom:868.533333pt;}
.y15_c00425{bottom:871.066667pt;}
.ya_c00425{bottom:884.800000pt;}
.y14_c00425{bottom:887.066667pt;}
.y9_c00425{bottom:900.133333pt;}
.y13_c00425{bottom:903.066667pt;}
.y8_c00425{bottom:916.800000pt;}
.y12_c00425{bottom:919.333333pt;}
.y7_c00425{bottom:933.066667pt;}
.y11_c00425{bottom:935.333333pt;}
.y6_c00425{bottom:948.800000pt;}
.y10_c00425{bottom:951.333333pt;}
.y5_c00425{bottom:965.733333pt;}
.yf_c00425{bottom:967.333333pt;}
.ye_c00425{bottom:983.333333pt;}
.y4_c00425{bottom:986.533333pt;}
.yd_c00425{bottom:999.333333pt;}
.y3_c00425{bottom:1000.266667pt;}
.y1_c00425{bottom:1021.466667pt;}
.y2_c00425{bottom:1024.000000pt;}
.h7_c00425{height:48.000000pt;}
.h6_c00425{height:53.333333pt;}
.h5_c00425{height:58.666667pt;}
.h2_c00425{height:64.000000pt;}
.h4_c00425{height:69.333333pt;}
.h3_c00425{height:74.666667pt;}
.h0_c00425{height:1129.280029pt;}
.h1_c00425{height:1129.333333pt;}
.w0_c00425{width:851.840007pt;}
.w1_c00425{width:852.000000pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:169.600000pt;}
.x6e_c00425{left:171.200000pt;}
.xcc_c00425{left:174.133333pt;}
.x8c_c00425{left:184.133333pt;}
.x8_c00425{left:186.266667pt;}
.x21_c00425{left:187.333333pt;}
.x18_c00425{left:188.800000pt;}
.xb9_c00425{left:190.000000pt;}
.xce_c00425{left:190.933333pt;}
.xd4_c00425{left:192.133333pt;}
.xd5_c00425{left:200.000000pt;}
.xb_c00425{left:203.200000pt;}
.xb4_c00425{left:204.133333pt;}
.xc5_c00425{left:205.466667pt;}
.x3_c00425{left:208.000000pt;}
.x19_c00425{left:208.933333pt;}
.x6f_c00425{left:211.200000pt;}
.xc0_c00425{left:213.066667pt;}
.xa3_c00425{left:214.666667pt;}
.xb0_c00425{left:216.000000pt;}
.x22_c00425{left:218.400000pt;}
.x78_c00425{left:220.133333pt;}
.x1a_c00425{left:221.066667pt;}
.x7d_c00425{left:223.066667pt;}
.x89_c00425{left:224.666667pt;}
.xd9_c00425{left:225.733333pt;}
.xa8_c00425{left:227.600000pt;}
.x87_c00425{left:230.400000pt;}
.x2f_c00425{left:234.933333pt;}
.xba_c00425{left:236.133333pt;}
.x4_c00425{left:238.133333pt;}
.xc_c00425{left:241.333333pt;}
.x9_c00425{left:244.133333pt;}
.x83_c00425{left:247.066667pt;}
.xcf_c00425{left:248.266667pt;}
.xd2_c00425{left:249.600000pt;}
.xa4_c00425{left:250.800000pt;}
.xa5_c00425{left:252.266667pt;}
.x1b_c00425{left:253.466667pt;}
.x7e_c00425{left:255.066667pt;}
.x10_c00425{left:257.733333pt;}
.x79_c00425{left:260.400000pt;}
.xbb_c00425{left:261.466667pt;}
.xd0_c00425{left:262.666667pt;}
.xc6_c00425{left:263.733333pt;}
.x91_c00425{left:265.600000pt;}
.x34_c00425{left:266.666667pt;}
.x7f_c00425{left:268.133333pt;}
.xa6_c00425{left:270.133333pt;}
.xbf_c00425{left:271.200000pt;}
.x23_c00425{left:272.800000pt;}
.xb1_c00425{left:275.200000pt;}
.x1c_c00425{left:276.533333pt;}
.xd_c00425{left:277.866667pt;}
.x99_c00425{left:279.733333pt;}
.xd3_c00425{left:281.866667pt;}
.x92_c00425{left:282.933333pt;}
.x37_c00425{left:285.466667pt;}
.x9a_c00425{left:286.666667pt;}
.x8a_c00425{left:287.733333pt;}
.xa0_c00425{left:288.666667pt;}
.x11_c00425{left:290.666667pt;}
.x2b_c00425{left:292.266667pt;}
.xa9_c00425{left:295.066667pt;}
.xc7_c00425{left:297.333333pt;}
.xc9_c00425{left:298.800000pt;}
.x9d_c00425{left:299.866667pt;}
.xa1_c00425{left:301.466667pt;}
.x38_c00425{left:304.000000pt;}
.x70_c00425{left:305.200000pt;}
.x24_c00425{left:306.400000pt;}
.xa_c00425{left:307.866667pt;}
.xaa_c00425{left:309.733333pt;}
.xb6_c00425{left:310.933333pt;}
.x30_c00425{left:312.266667pt;}
.x35_c00425{left:314.933333pt;}
.xda_c00425{left:316.000000pt;}
.xad_c00425{left:318.133333pt;}
.x88_c00425{left:319.066667pt;}
.x1d_c00425{left:321.066667pt;}
.xd6_c00425{left:323.466667pt;}
.x12_c00425{left:324.533333pt;}
.xab_c00425{left:326.666667pt;}
.x80_c00425{left:328.666667pt;}
.xb7_c00425{left:329.866667pt;}
.x5_c00425{left:330.933333pt;}
.xc1_c00425{left:332.133333pt;}
.x93_c00425{left:334.133333pt;}
.x36_c00425{left:337.333333pt;}
.x7a_c00425{left:340.400000pt;}
.x2c_c00425{left:341.600000pt;}
.xd8_c00425{left:342.933333pt;}
.x9e_c00425{left:344.000000pt;}
.x9b_c00425{left:347.866667pt;}
.x8d_c00425{left:349.733333pt;}
.x94_c00425{left:351.466667pt;}
.x6_c00425{left:353.066667pt;}
.x81_c00425{left:354.933333pt;}
.xa2_c00425{left:357.200000pt;}
.x13_c00425{left:358.133333pt;}
.x25_c00425{left:359.466667pt;}
.x8b_c00425{left:361.066667pt;}
.x97_c00425{left:362.133333pt;}
.xbd_c00425{left:364.266667pt;}
.xb5_c00425{left:365.200000pt;}
.x39_c00425{left:366.666667pt;}
.xc8_c00425{left:368.400000pt;}
.xe_c00425{left:369.333333pt;}
.x31_c00425{left:370.800000pt;}
.xca_c00425{left:372.133333pt;}
.x26_c00425{left:374.800000pt;}
.x3a_c00425{left:376.000000pt;}
.x8e_c00425{left:377.200000pt;}
.xcd_c00425{left:378.666667pt;}
.x82_c00425{left:379.866667pt;}
.xd1_c00425{left:381.200000pt;}
.x95_c00425{left:382.533333pt;}
.x84_c00425{left:384.000000pt;}
.x71_c00425{left:386.133333pt;}
.x1e_c00425{left:387.333333pt;}
.x9f_c00425{left:388.400000pt;}
.x2_c00425{left:390.666667pt;}
.xc2_c00425{left:392.000000pt;}
.x2d_c00425{left:393.866667pt;}
.x27_c00425{left:394.933333pt;}
.x8f_c00425{left:397.733333pt;}
.x7b_c00425{left:400.266667pt;}
.xc3_c00425{left:401.866667pt;}
.x14_c00425{left:406.800000pt;}
.xcb_c00425{left:408.666667pt;}
.x28_c00425{left:409.600000pt;}
.x1f_c00425{left:411.333333pt;}
.xa7_c00425{left:413.866667pt;}
.x96_c00425{left:414.800000pt;}
.x7_c00425{left:415.733333pt;}
.xc4_c00425{left:418.533333pt;}
.x9c_c00425{left:420.533333pt;}
.xac_c00425{left:421.733333pt;}
.xb2_c00425{left:423.733333pt;}
.xb8_c00425{left:424.933333pt;}
.x72_c00425{left:425.866667pt;}
.x98_c00425{left:428.933333pt;}
.xae_c00425{left:429.866667pt;}
.x2e_c00425{left:432.000000pt;}
.x85_c00425{left:432.933333pt;}
.x20_c00425{left:434.666667pt;}
.xf_c00425{left:435.600000pt;}
.x15_c00425{left:438.133333pt;}
.x32_c00425{left:440.800000pt;}
.xbe_c00425{left:442.000000pt;}
.x86_c00425{left:443.200000pt;}
.x16_c00425{left:444.800000pt;}
.xd7_c00425{left:446.400000pt;}
.xb3_c00425{left:447.733333pt;}
.x29_c00425{left:449.200000pt;}
.x90_c00425{left:450.266667pt;}
.x7c_c00425{left:454.400000pt;}
.xaf_c00425{left:455.733333pt;}
.x33_c00425{left:457.066667pt;}
.x17_c00425{left:458.933333pt;}
.x2a_c00425{left:462.266667pt;}
.xbc_c00425{left:463.600000pt;}
.xfa_c00425{left:489.866667pt;}
.x73_c00425{left:490.800000pt;}
.x12f_c00425{left:491.866667pt;}
.x13a_c00425{left:493.733333pt;}
.x106_c00425{left:503.466667pt;}
.xe0_c00425{left:505.600000pt;}
.x3b_c00425{left:507.200000pt;}
.x74_c00425{left:508.666667pt;}
.x13e_c00425{left:509.866667pt;}
.xdb_c00425{left:516.400000pt;}
.x13b_c00425{left:520.666667pt;}
.xdc_c00425{left:523.466667pt;}
.x54_c00425{left:525.600000pt;}
.x75_c00425{left:527.600000pt;}
.xee_c00425{left:529.600000pt;}
.xfb_c00425{left:530.533333pt;}
.x129_c00425{left:532.666667pt;}
.x11e_c00425{left:534.266667pt;}
.xf2_c00425{left:535.333333pt;}
.x122_c00425{left:536.533333pt;}
.xe7_c00425{left:537.466667pt;}
.x137_c00425{left:538.533333pt;}
.x12e_c00425{left:540.400000pt;}
.x3c_c00425{left:541.466667pt;}
.x42_c00425{left:542.666667pt;}
.x107_c00425{left:545.733333pt;}
.x112_c00425{left:548.933333pt;}
.xef_c00425{left:550.666667pt;}
.xe8_c00425{left:551.600000pt;}
.x5e_c00425{left:554.133333pt;}
.x10e_c00425{left:557.866667pt;}
.x113_c00425{left:559.866667pt;}
.x55_c00425{left:560.800000pt;}
.x6c_c00425{left:561.866667pt;}
.xdd_c00425{left:563.200000pt;}
.x3d_c00425{left:564.800000pt;}
.x138_c00425{left:565.733333pt;}
.x11b_c00425{left:566.933333pt;}
.x65_c00425{left:568.533333pt;}
.x126_c00425{left:570.533333pt;}
.xf6_c00425{left:571.466667pt;}
.x10a_c00425{left:572.400000pt;}
.x108_c00425{left:574.000000pt;}
.x43_c00425{left:575.600000pt;}
.x4d_c00425{left:577.066667pt;}
.x56_c00425{left:578.666667pt;}
.x100_c00425{left:581.733333pt;}
.xe1_c00425{left:583.066667pt;}
.x4e_c00425{left:584.400000pt;}
.xf3_c00425{left:587.200000pt;}
.x49_c00425{left:588.266667pt;}
.x66_c00425{left:589.333333pt;}
.x131_c00425{left:590.266667pt;}
.x12a_c00425{left:594.133333pt;}
.x101_c00425{left:596.133333pt;}
.x44_c00425{left:597.066667pt;}
.x68_c00425{left:600.133333pt;}
.x135_c00425{left:602.266667pt;}
.xe2_c00425{left:603.600000pt;}
.x11f_c00425{left:606.266667pt;}
.x4f_c00425{left:610.000000pt;}
.x57_c00425{left:612.000000pt;}
.xde_c00425{left:613.066667pt;}
.x123_c00425{left:614.000000pt;}
.x69_c00425{left:615.466667pt;}
.x4a_c00425{left:617.333333pt;}
.xfc_c00425{left:618.266667pt;}
.x58_c00425{left:619.733333pt;}
.xe9_c00425{left:621.333333pt;}
.x5f_c00425{left:622.933333pt;}
.x120_c00425{left:623.866667pt;}
.x132_c00425{left:624.800000pt;}
.x50_c00425{left:626.666667pt;}
.xf7_c00425{left:629.066667pt;}
.x45_c00425{left:631.333333pt;}
.x6d_c00425{left:632.666667pt;}
.x3e_c00425{left:634.266667pt;}
.x10f_c00425{left:636.266667pt;}
.xea_c00425{left:637.333333pt;}
.x102_c00425{left:640.266667pt;}
.xf4_c00425{left:643.200000pt;}
.x110_c00425{left:644.266667pt;}
.xe3_c00425{left:646.800000pt;}
.x60_c00425{left:647.866667pt;}
.x76_c00425{left:649.200000pt;}
.x11c_c00425{left:650.400000pt;}
.xf8_c00425{left:651.466667pt;}
.x124_c00425{left:652.400000pt;}
.x114_c00425{left:653.733333pt;}
.xfd_c00425{left:655.066667pt;}
.x118_c00425{left:656.533333pt;}
.x59_c00425{left:660.000000pt;}
.x6a_c00425{left:661.600000pt;}
.x67_c00425{left:668.000000pt;}
.x3f_c00425{left:669.733333pt;}
.x51_c00425{left:671.200000pt;}
.x6b_c00425{left:672.800000pt;}
.x10b_c00425{left:674.133333pt;}
.x5a_c00425{left:675.733333pt;}
.xe4_c00425{left:677.466667pt;}
.x52_c00425{left:680.800000pt;}
.x127_c00425{left:681.866667pt;}
.x105_c00425{left:683.333333pt;}
.xeb_c00425{left:685.066667pt;}
.x125_c00425{left:687.333333pt;}
.x119_c00425{left:688.266667pt;}
.xf9_c00425{left:690.133333pt;}
.x40_c00425{left:692.400000pt;}
.x46_c00425{left:695.066667pt;}
.x139_c00425{left:696.533333pt;}
.x133_c00425{left:698.000000pt;}
.x4b_c00425{left:699.600000pt;}
.x11a_c00425{left:702.000000pt;}
.xf0_c00425{left:706.533333pt;}
.x111_c00425{left:708.266667pt;}
.x13f_c00425{left:709.733333pt;}
.x47_c00425{left:710.800000pt;}
.x13c_c00425{left:711.733333pt;}
.x63_c00425{left:712.800000pt;}
.x136_c00425{left:715.866667pt;}
.x115_c00425{left:716.800000pt;}
.xe5_c00425{left:718.000000pt;}
.x4c_c00425{left:721.066667pt;}
.xfe_c00425{left:722.266667pt;}
.x5b_c00425{left:724.666667pt;}
.x61_c00425{left:727.200000pt;}
.x12b_c00425{left:731.200000pt;}
.x12c_c00425{left:733.333333pt;}
.x77_c00425{left:734.400000pt;}
.x62_c00425{left:737.466667pt;}
.x116_c00425{left:738.933333pt;}
.x5c_c00425{left:740.000000pt;}
.x41_c00425{left:743.600000pt;}
.x12d_c00425{left:744.800000pt;}
.x10c_c00425{left:745.733333pt;}
.x103_c00425{left:747.200000pt;}
.xf1_c00425{left:748.133333pt;}
.xe6_c00425{left:750.266667pt;}
.x13d_c00425{left:753.066667pt;}
.xf5_c00425{left:755.200000pt;}
.x128_c00425{left:756.400000pt;}
.x5d_c00425{left:757.333333pt;}
.x134_c00425{left:758.400000pt;}
.x117_c00425{left:759.733333pt;}
.x104_c00425{left:764.133333pt;}
.x11d_c00425{left:768.133333pt;}
.xdf_c00425{left:769.333333pt;}
.xec_c00425{left:770.266667pt;}
.x121_c00425{left:771.733333pt;}
.xff_c00425{left:772.800000pt;}
.x109_c00425{left:774.400000pt;}
.x53_c00425{left:775.866667pt;}
.x130_c00425{left:776.800000pt;}
.x64_c00425{left:779.733333pt;}
.xed_c00425{left:781.200000pt;}
.x48_c00425{left:786.666667pt;}
.x10d_c00425{left:789.466667pt;}
}





/* 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_c00426 {
    display:none;
  }
  .loading-indicator_c00426.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00426 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_c00426 { 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_c00426" -> "#page-container .classname_c00426")
 */
.pf_c00426 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00426 { /* 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_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00426 { /* 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_c00426 { /* 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_c00426 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00426 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00426 {overflow:visible;}
  }
}
.c_c00426 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00426 { /* 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_c00426:after { /* webkit #35443 */
  content: '';
}
.t_c00426:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00426 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 */
}
.__c00426 { /* 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_c00426 { /* info for Javascript */
  display:none;
}
.l_c00426 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00426 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00426 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00426: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_c00426 {
    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_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00426.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_c00426 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00426;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.000000;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;}
.m7f_c00426{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.md_c00426{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.mae_c00426{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m44_c00426{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.me9_c00426{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mef_c00426{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m94_c00426{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.me7_c00426{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00426{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00426{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mee_c00426{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.me8_c00426{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00426{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m82_c00426{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me5_c00426{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m108_c00426{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00426{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00426{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m48_c00426{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md0_c00426{transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);}
.m105_c00426{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00426{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m6_c00426{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00426{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m107_c00426{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00426{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m106_c00426{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m102_c00426{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00426{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mca_c00426{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00426{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m100_c00426{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00426{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00426{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00426{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m91_c00426{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mde_c00426{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m15_c00426{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m69_c00426{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m89_c00426{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.me0_c00426{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m115_c00426{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m109_c00426{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m50_c00426{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00426{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m110_c00426{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mad_c00426{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00426{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m98_c00426{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00426{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00426{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m84_c00426{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00426{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m18_c00426{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m29_c00426{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00426{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00426{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m81_c00426{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00426{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00426{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m119_c00426{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m75_c00426{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.md8_c00426{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00426{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00426{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00426{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00426{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m68_c00426{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00426{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mff_c00426{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00426{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m118_c00426{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00426{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m41_c00426{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00426{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00426{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00426{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m37_c00426{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5_c00426{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m7_c00426{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.maa_c00426{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m101_c00426{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.md5_c00426{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00426{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.maf_c00426{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00426{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mba_c00426{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mab_c00426{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m33_c00426{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00426{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m13_c00426{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m83_c00426{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m80_c00426{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m45_c00426{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m43_c00426{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00426{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m52_c00426{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00426{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf_c00426{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me_c00426{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m97_c00426{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m87_c00426{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00426{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m53_c00426{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00426{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m66_c00426{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00426{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m40_c00426{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m34_c00426{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00426{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00426{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00426{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00426{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m92_c00426{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m72_c00426{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00426{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.meb_c00426{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00426{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00426{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m14_c00426{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m99_c00426{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m35_c00426{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00426{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md2_c00426{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m36_c00426{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00426{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00426{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m79_c00426{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m54_c00426{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mec_c00426{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00426{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m60_c00426{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m31_c00426{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00426{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m24_c00426{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m22_c00426{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00426{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00426{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00426{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00426{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00426{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00426{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m16_c00426{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mac_c00426{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00426{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m86_c00426{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00426{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00426{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m23_c00426{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m111_c00426{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00426{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4_c00426{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m47_c00426{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00426{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m17_c00426{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m73_c00426{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m71_c00426{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00426{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00426{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m70_c00426{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m93_c00426{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00426{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00426{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00426{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m10_c00426{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00426{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m96_c00426{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m20_c00426{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m11_c00426{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m113_c00426{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00426{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00426{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00426{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m74_c00426{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m42_c00426{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m39_c00426{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00426{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m67_c00426{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00426{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m21_c00426{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m32_c00426{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m65_c00426{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m95_c00426{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m78_c00426{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.md7_c00426{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00426{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m55_c00426{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m28_c00426{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m51_c00426{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m88_c00426{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00426{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m76_c00426{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00426{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m19_c00426{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md9_c00426{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00426{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m116_c00426{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me2_c00426{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m27_c00426{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m30_c00426{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00426{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m85_c00426{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m38_c00426{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00426{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m61_c00426{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m57_c00426{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00426{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00426{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me4_c00426{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00426{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00426{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00426{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m62_c00426{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m56_c00426{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00426{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me1_c00426{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m26_c00426{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m25_c00426{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00426{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m64_c00426{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m117_c00426{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00426{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00426{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00426{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m12_c00426{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00426{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00426{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m46_c00426{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00426{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00426{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m77_c00426{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m58_c00426{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m112_c00426{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00426{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00426{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00426{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m114_c00426{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m59_c00426{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m49_c00426{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m63_c00426{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00426{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00426{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00426{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00426{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00426{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00426{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00426{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.md4_c00426{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m90_c00426{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00426{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00426{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00426{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00426{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00426{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md3_c00426{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.med_c00426{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00426{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mda_c00426{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00426{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.me6_c00426{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m104_c00426{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.me3_c00426{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00426{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mce_c00426{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00426{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00426{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00426{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m8_c00426{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00426{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00426{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00426{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mc_c00426{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9_c00426{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);}
.ma_c00426{transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00426{transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474000,0.000000,0.000000,0.250000,0,0);}
.mea_c00426{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.md6_c00426{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00426{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00426{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m103_c00426{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.md1_c00426{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls0_c00426{letter-spacing:0.000000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{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__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00426{word-spacing:-18.854749px;}
.ws3_c00426{word-spacing:-6.242588px;}
.ws4_c00426{word-spacing:-6.161725px;}
.ws1_c00426{word-spacing:-4.676856px;}
.ws0_c00426{word-spacing:-4.285714px;}
.wsa_c00426{word-spacing:0.000000px;}
.ws9_c00426{word-spacing:22.142857px;}
.ws6_c00426{word-spacing:25.714286px;}
.ws8_c00426{word-spacing:29.285714px;}
.ws5_c00426{word-spacing:40.000000px;}
.ws7_c00426{word-spacing:287.250000px;}
._1_c00426{width:52.142857px;}
._2_c00426{width:59.285714px;}
._3_c00426{width:64.642857px;}
._0_c00426{width:74.166667px;}
.fc0_c00426{color:transparent;}
.fs8_c00426{font-size:24.000000px;}
.fs5_c00426{font-size:30.000000px;}
.fs9_c00426{font-size:36.000000px;}
.fs3_c00426{font-size:42.000000px;}
.fs4_c00426{font-size:48.000000px;}
.fs7_c00426{font-size:54.000000px;}
.fs6_c00426{font-size:60.000000px;}
.fs2_c00426{font-size:66.000000px;}
.fs1_c00426{font-size:72.000000px;}
.fs0_c00426{font-size:84.000000px;}
.y0_c00426{bottom:0.000000px;}
.y6c_c00426{bottom:184.350000px;}
.y34_c00426{bottom:185.700000px;}
.y6b_c00426{bottom:199.500000px;}
.y33_c00426{bottom:203.400000px;}
.y6a_c00426{bottom:213.900000px;}
.y32_c00426{bottom:225.450000px;}
.y69_c00426{bottom:229.350000px;}
.y68_c00426{bottom:243.000000px;}
.y31_c00426{bottom:243.750000px;}
.y30_c00426{bottom:261.450000px;}
.y2f_c00426{bottom:287.700000px;}
.y67_c00426{bottom:297.300000px;}
.y2e_c00426{bottom:310.650000px;}
.y66_c00426{bottom:315.300000px;}
.y2d_c00426{bottom:328.650000px;}
.y65_c00426{bottom:340.950000px;}
.y2c_c00426{bottom:346.650000px;}
.y64_c00426{bottom:360.300000px;}
.y2b_c00426{bottom:364.650000px;}
.y63_c00426{bottom:378.300000px;}
.y2a_c00426{bottom:382.650000px;}
.y62_c00426{bottom:396.300000px;}
.y29_c00426{bottom:400.650000px;}
.y28_c00426{bottom:418.650000px;}
.y5a_c00426{bottom:426.750000px;}
.y27_c00426{bottom:436.350000px;}
.y59_c00426{bottom:445.050000px;}
.y26_c00426{bottom:454.350000px;}
.y58_c00426{bottom:463.050000px;}
.y25_c00426{bottom:472.650000px;}
.y57_c00426{bottom:481.050000px;}
.y24_c00426{bottom:498.600000px;}
.y56_c00426{bottom:499.050000px;}
.y55_c00426{bottom:517.350000px;}
.y23_c00426{bottom:526.050000px;}
.y54_c00426{bottom:535.050000px;}
.y22_c00426{bottom:544.350000px;}
.y53_c00426{bottom:553.350000px;}
.y21_c00426{bottom:562.350000px;}
.y52_c00426{bottom:571.650000px;}
.y20_c00426{bottom:583.500000px;}
.y51_c00426{bottom:589.350000px;}
.y1f_c00426{bottom:602.250000px;}
.y50_c00426{bottom:607.350000px;}
.y1e_c00426{bottom:623.850000px;}
.y4e_c00426{bottom:632.850000px;}
.y4f_c00426{bottom:636.900000px;}
.y1d_c00426{bottom:646.950000px;}
.y4d_c00426{bottom:652.650000px;}
.y4c_c00426{bottom:665.250000px;}
.y61_c00426{bottom:667.050000px;}
.y1c_c00426{bottom:667.950000px;}
.y4b_c00426{bottom:680.400000px;}
.y1b_c00426{bottom:685.950000px;}
.y60_c00426{bottom:690.450000px;}
.y4a_c00426{bottom:694.800000px;}
.y5d_c00426{bottom:696.900000px;}
.y1a_c00426{bottom:703.950000px;}
.y19_c00426{bottom:722.250000px;}
.y5f_c00426{bottom:722.550000px;}
.y49_c00426{bottom:723.300000px;}
.y5c_c00426{bottom:725.400000px;}
.y48_c00426{bottom:738.000000px;}
.y5b_c00426{bottom:738.300000px;}
.y18_c00426{bottom:739.950000px;}
.y5e_c00426{bottom:740.850000px;}
.y47_c00426{bottom:752.700000px;}
.y17_c00426{bottom:757.950000px;}
.y46_c00426{bottom:768.600000px;}
.y16_c00426{bottom:776.700000px;}
.y45_c00426{bottom:792.000000px;}
.y15_c00426{bottom:794.400000px;}
.y44_c00426{bottom:810.300000px;}
.y14_c00426{bottom:812.100000px;}
.y13_c00426{bottom:830.100000px;}
.y43_c00426{bottom:841.350000px;}
.y12_c00426{bottom:847.800000px;}
.y42_c00426{bottom:859.200000px;}
.y11_c00426{bottom:866.100000px;}
.y41_c00426{bottom:877.200000px;}
.y10_c00426{bottom:884.100000px;}
.y40_c00426{bottom:894.900000px;}
.yf_c00426{bottom:909.750000px;}
.y3f_c00426{bottom:912.900000px;}
.ye_c00426{bottom:929.250000px;}
.y3e_c00426{bottom:930.900000px;}
.yd_c00426{bottom:947.550000px;}
.y3d_c00426{bottom:948.900000px;}
.yc_c00426{bottom:965.550000px;}
.y3c_c00426{bottom:966.900000px;}
.y3b_c00426{bottom:984.900000px;}
.y9_c00426{bottom:990.750000px;}
.y3a_c00426{bottom:1004.700000px;}
.y8_c00426{bottom:1009.800000px;}
.y39_c00426{bottom:1020.900000px;}
.y7_c00426{bottom:1027.800000px;}
.y38_c00426{bottom:1038.900000px;}
.y6_c00426{bottom:1045.500000px;}
.y5_c00426{bottom:1063.500000px;}
.y37_c00426{bottom:1064.850000px;}
.yb_c00426{bottom:1081.500000px;}
.y4_c00426{bottom:1082.550000px;}
.ya_c00426{bottom:1090.800000px;}
.y3_c00426{bottom:1098.750000px;}
.y36_c00426{bottom:1100.550000px;}
.y2_c00426{bottom:1118.100000px;}
.y35_c00426{bottom:1118.850000px;}
.y1_c00426{bottom:1145.550000px;}
.ha_c00426{height:24.000000px;}
.h7_c00426{height:30.000000px;}
.hb_c00426{height:36.000000px;}
.h5_c00426{height:42.000000px;}
.h6_c00426{height:48.000000px;}
.h9_c00426{height:54.000000px;}
.h8_c00426{height:60.000000px;}
.h4_c00426{height:66.000000px;}
.h3_c00426{height:72.000000px;}
.h2_c00426{height:84.000000px;}
.h1_c00426{height:1266.750000px;}
.h0_c00426{height:1266.839905px;}
.w0_c00426{width:958.320007px;}
.w1_c00426{width:958.500000px;}
.x0_c00426{left:0.000000px;}
.x3_c00426{left:65.100000px;}
.x8e_c00426{left:77.700000px;}
.x80_c00426{left:79.500000px;}
.x72_c00426{left:80.700000px;}
.x1b_c00426{left:82.200000px;}
.x13_c00426{left:83.700000px;}
.x20_c00426{left:84.750000px;}
.x85_c00426{left:96.900000px;}
.x7b_c00426{left:97.950000px;}
.x6f_c00426{left:99.600000px;}
.x29_c00426{left:100.800000px;}
.xe_c00426{left:101.850000px;}
.x6c_c00426{left:103.500000px;}
.x91_c00426{left:105.150000px;}
.x43_c00426{left:108.600000px;}
.x4_c00426{left:110.400000px;}
.x8b_c00426{left:111.450000px;}
.x3c_c00426{left:120.300000px;}
.x59_c00426{left:122.550000px;}
.x28_c00426{left:123.900000px;}
.xa_c00426{left:125.250000px;}
.x24_c00426{left:127.350000px;}
.x14_c00426{left:129.450000px;}
.x75_c00426{left:130.650000px;}
.x30_c00426{left:132.750000px;}
.x2a_c00426{left:135.300000px;}
.x5f_c00426{left:136.350000px;}
.x3d_c00426{left:139.050000px;}
.x8f_c00426{left:140.700000px;}
.x15_c00426{left:142.050000px;}
.x21_c00426{left:144.450000px;}
.x1c_c00426{left:146.250000px;}
.x5a_c00426{left:149.250000px;}
.x4b_c00426{left:151.050000px;}
.x31_c00426{left:153.300000px;}
.x65_c00426{left:154.650000px;}
.x51_c00426{left:156.150000px;}
.x26_c00426{left:157.800000px;}
.x76_c00426{left:159.750000px;}
.x4c_c00426{left:161.100000px;}
.x60_c00426{left:162.600000px;}
.xf_c00426{left:164.100000px;}
.x3a_c00426{left:165.600000px;}
.x1d_c00426{left:169.350000px;}
.x67_c00426{left:170.400000px;}
.x27_c00426{left:171.900000px;}
.x88_c00426{left:174.900000px;}
.x5_c00426{left:176.250000px;}
.x25_c00426{left:177.750000px;}
.x55_c00426{left:178.800000px;}
.x86_c00426{left:180.600000px;}
.x5b_c00426{left:183.150000px;}
.x81_c00426{left:185.100000px;}
.x63_c00426{left:187.650000px;}
.x8c_c00426{left:188.850000px;}
.x22_c00426{left:190.500000px;}
.x2b_c00426{left:192.900000px;}
.x70_c00426{left:193.950000px;}
.x77_c00426{left:202.650000px;}
.x1e_c00426{left:203.850000px;}
.x66_c00426{left:205.800000px;}
.x16_c00426{left:210.000000px;}
.xb_c00426{left:211.350000px;}
.x92_c00426{left:212.850000px;}
.x52_c00426{left:214.800000px;}
.x44_c00426{left:215.850000px;}
.x7d_c00426{left:217.050000px;}
.x3e_c00426{left:218.250000px;}
.x68_c00426{left:220.800000px;}
.x35_c00426{left:224.700000px;}
.x45_c00426{left:225.900000px;}
.x89_c00426{left:227.400000px;}
.x3f_c00426{left:229.050000px;}
.x94_c00426{left:231.150000px;}
.x4d_c00426{left:233.100000px;}
.x32_c00426{left:236.100000px;}
.x10_c00426{left:238.950000px;}
.x2c_c00426{left:240.750000px;}
.x69_c00426{left:242.100000px;}
.x46_c00426{left:245.400000px;}
.x6_c00426{left:246.750000px;}
.xd_c00426{left:249.000000px;}
.x33_c00426{left:250.500000px;}
.x56_c00426{left:252.900000px;}
.x40_c00426{left:253.950000px;}
.x47_c00426{left:256.500000px;}
.x36_c00426{left:257.850000px;}
.x8d_c00426{left:261.600000px;}
.x23_c00426{left:263.550000px;}
.x4e_c00426{left:265.500000px;}
.x71_c00426{left:267.450000px;}
.x87_c00426{left:269.100000px;}
.x37_c00426{left:272.250000px;}
.x17_c00426{left:273.750000px;}
.x93_c00426{left:276.900000px;}
.x78_c00426{left:278.550000px;}
.x82_c00426{left:282.000000px;}
.x74_c00426{left:283.200000px;}
.xc_c00426{left:286.650000px;}
.x79_c00426{left:289.050000px;}
.x5c_c00426{left:291.600000px;}
.x48_c00426{left:293.250000px;}
.x6d_c00426{left:295.050000px;}
.x41_c00426{left:298.650000px;}
.x11_c00426{left:301.200000px;}
.x34_c00426{left:302.400000px;}
.x7_c00426{left:306.150000px;}
.x61_c00426{left:307.350000px;}
.x53_c00426{left:309.000000px;}
.x38_c00426{left:310.350000px;}
.x1_c00426{left:311.700000px;}
.x6a_c00426{left:314.850000px;}
.x5d_c00426{left:316.800000px;}
.x83_c00426{left:318.300000px;}
.x64_c00426{left:319.800000px;}
.x2d_c00426{left:324.600000px;}
.x18_c00426{left:326.700000px;}
.x8_c00426{left:328.050000px;}
.x6e_c00426{left:330.000000px;}
.x4f_c00426{left:331.050000px;}
.x3b_c00426{left:332.250000px;}
.x84_c00426{left:334.500000px;}
.x7a_c00426{left:338.700000px;}
.x5e_c00426{left:340.200000px;}
.x7e_c00426{left:345.600000px;}
.x49_c00426{left:347.550000px;}
.x19_c00426{left:348.600000px;}
.x57_c00426{left:349.800000px;}
.x54_c00426{left:357.300000px;}
.x6b_c00426{left:359.850000px;}
.x2e_c00426{left:364.200000px;}
.x12_c00426{left:365.250000px;}
.x8a_c00426{left:367.050000px;}
.x90_c00426{left:369.150000px;}
.x62_c00426{left:370.350000px;}
.x73_c00426{left:374.400000px;}
.x1f_c00426{left:375.600000px;}
.x9_c00426{left:376.950000px;}
.x42_c00426{left:378.600000px;}
.x50_c00426{left:380.400000px;}
.x39_c00426{left:383.850000px;}
.x58_c00426{left:385.050000px;}
.x2f_c00426{left:387.900000px;}
.x7f_c00426{left:389.100000px;}
.x7c_c00426{left:391.050000px;}
.x4a_c00426{left:392.250000px;}
.x1a_c00426{left:398.250000px;}
.x131_c00426{left:419.250000px;}
.x121_c00426{left:420.900000px;}
.xe3_c00426{left:424.500000px;}
.xa3_c00426{left:427.200000px;}
.x110_c00426{left:428.700000px;}
.x12d_c00426{left:434.550000px;}
.xf0_c00426{left:437.850000px;}
.x118_c00426{left:439.350000px;}
.x107_c00426{left:440.700000px;}
.xce_c00426{left:442.800000px;}
.x9c_c00426{left:444.750000px;}
.xa4_c00426{left:446.250000px;}
.x103_c00426{left:447.900000px;}
.x132_c00426{left:450.150000px;}
.x138_c00426{left:451.350000px;}
.xf1_c00426{left:453.000000px;}
.x127_c00426{left:455.250000px;}
.x135_c00426{left:458.550000px;}
.xfd_c00426{left:460.500000px;}
.x114_c00426{left:462.000000px;}
.x95_c00426{left:464.400000px;}
.xbc_c00426{left:466.650000px;}
.xe1_c00426{left:468.000000px;}
.xb2_c00426{left:470.700000px;}
.xa5_c00426{left:472.200000px;}
.xb6_c00426{left:475.350000px;}
.x128_c00426{left:476.850000px;}
.xc9_c00426{left:478.050000px;}
.xf2_c00426{left:479.700000px;}
.xfe_c00426{left:482.100000px;}
.xe9_c00426{left:484.500000px;}
.x12c_c00426{left:486.450000px;}
.xb3_c00426{left:487.650000px;}
.xe2_c00426{left:489.300000px;}
.x9d_c00426{left:491.250000px;}
.xda_c00426{left:493.050000px;}
.x11a_c00426{left:496.500000px;}
.x122_c00426{left:497.550000px;}
.xca_c00426{left:498.600000px;}
.xb7_c00426{left:500.550000px;}
.xf5_c00426{left:502.350000px;}
.x9e_c00426{left:503.550000px;}
.x96_c00426{left:504.750000px;}
.xd5_c00426{left:506.250000px;}
.xa6_c00426{left:508.200000px;}
.x104_c00426{left:509.700000px;}
.x10e_c00426{left:511.200000px;}
.xc5_c00426{left:512.700000px;}
.xdd_c00426{left:514.500000px;}
.xc1_c00426{left:516.300000px;}
.xfa_c00426{left:517.650000px;}
.x12b_c00426{left:521.700000px;}
.xaa_c00426{left:523.050000px;}
.x100_c00426{left:525.450000px;}
.x11b_c00426{left:526.800000px;}
.xcf_c00426{left:529.950000px;}
.xfb_c00426{left:532.050000px;}
.xde_c00426{left:535.800000px;}
.xd6_c00426{left:536.850000px;}
.xe4_c00426{left:537.900000px;}
.xcb_c00426{left:539.700000px;}
.xff_c00426{left:541.800000px;}
.x9f_c00426{left:542.850000px;}
.x11c_c00426{left:544.050000px;}
.xbd_c00426{left:545.250000px;}
.xea_c00426{left:547.200000px;}
.xa0_c00426{left:553.650000px;}
.xc6_c00426{left:555.900000px;}
.xf6_c00426{left:558.150000px;}
.xcc_c00426{left:560.250000px;}
.x117_c00426{left:562.350000px;}
.x111_c00426{left:565.350000px;}
.xf4_c00426{left:566.700000px;}
.x10f_c00426{left:568.800000px;}
.xab_c00426{left:570.450000px;}
.x97_c00426{left:572.400000px;}
.xe8_c00426{left:575.700000px;}
.xdf_c00426{left:577.950000px;}
.x11d_c00426{left:579.000000px;}
.xdb_c00426{left:580.950000px;}
.x12e_c00426{left:582.150000px;}
.xd0_c00426{left:585.450000px;}
.xc2_c00426{left:587.550000px;}
.x108_c00426{left:588.750000px;}
.xbe_c00426{left:590.250000px;}
.xe5_c00426{left:591.600000px;}
.x133_c00426{left:594.000000px;}
.xac_c00426{left:595.950000px;}
.xb8_c00426{left:598.500000px;}
.xa7_c00426{left:600.600000px;}
.x11e_c00426{left:602.100000px;}
.xd1_c00426{left:606.000000px;}
.xad_c00426{left:607.800000px;}
.xeb_c00426{left:609.900000px;}
.x123_c00426{left:611.100000px;}
.xf7_c00426{left:612.900000px;}
.x129_c00426{left:615.450000px;}
.x98_c00426{left:616.650000px;}
.xa1_c00426{left:618.750000px;}
.xfc_c00426{left:621.450000px;}
.xd7_c00426{left:625.050000px;}
.x101_c00426{left:626.250000px;}
.x12a_c00426{left:628.050000px;}
.x10c_c00426{left:630.900000px;}
.x126_c00426{left:632.400000px;}
.xae_c00426{left:633.750000px;}
.x112_c00426{left:636.600000px;}
.x102_c00426{left:640.650000px;}
.xe6_c00426{left:641.700000px;}
.xb9_c00426{left:644.250000px;}
.xa8_c00426{left:645.600000px;}
.xec_c00426{left:646.650000px;}
.xc7_c00426{left:648.000000px;}
.x115_c00426{left:649.650000px;}
.xa2_c00426{left:651.450000px;}
.xf3_c00426{left:652.950000px;}
.x124_c00426{left:655.350000px;}
.xc3_c00426{left:656.700000px;}
.x139_c00426{left:658.800000px;}
.xbf_c00426{left:661.050000px;}
.xed_c00426{left:662.850000px;}
.x10a_c00426{left:664.200000px;}
.x134_c00426{left:665.250000px;}
.x99_c00426{left:667.350000px;}
.x136_c00426{left:668.850000px;}
.xf8_c00426{left:670.950000px;}
.x105_c00426{left:677.550000px;}
.x113_c00426{left:678.750000px;}
.xe7_c00426{left:679.800000px;}
.xd2_c00426{left:681.900000px;}
.xb4_c00426{left:683.100000px;}
.x116_c00426{left:685.950000px;}
.x12f_c00426{left:687.450000px;}
.x9a_c00426{left:688.950000px;}
.xa9_c00426{left:690.600000px;}
.xf9_c00426{left:694.050000px;}
.xd8_c00426{left:695.250000px;}
.x10b_c00426{left:697.350000px;}
.xd3_c00426{left:698.850000px;}
.xaf_c00426{left:700.800000px;}
.x109_c00426{left:702.150000px;}
.xdc_c00426{left:703.350000px;}
.x11f_c00426{left:705.600000px;}
.xe0_c00426{left:710.700000px;}
.xee_c00426{left:714.300000px;}
.xc4_c00426{left:715.350000px;}
.xcd_c00426{left:717.900000px;}
.x120_c00426{left:719.250000px;}
.xb0_c00426{left:721.350000px;}
.x130_c00426{left:722.400000px;}
.xc0_c00426{left:723.750000px;}
.xba_c00426{left:725.850000px;}
.x10d_c00426{left:727.800000px;}
.xb5_c00426{left:729.150000px;}
.x119_c00426{left:732.300000px;}
.x9b_c00426{left:736.050000px;}
.x2_c00426{left:738.600000px;}
.x106_c00426{left:740.250000px;}
.x137_c00426{left:742.200000px;}
.xb1_c00426{left:744.750000px;}
.x125_c00426{left:746.100000px;}
.xd4_c00426{left:747.450000px;}
.xef_c00426{left:748.500000px;}
.xd9_c00426{left:749.700000px;}
.xc8_c00426{left:753.750000px;}
.xbb_c00426{left:755.400000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ws2_c00426{word-spacing:-16.759777pt;}
.ws3_c00426{word-spacing:-5.548967pt;}
.ws4_c00426{word-spacing:-5.477089pt;}
.ws1_c00426{word-spacing:-4.157205pt;}
.ws0_c00426{word-spacing:-3.809524pt;}
.wsa_c00426{word-spacing:0.000000pt;}
.ws9_c00426{word-spacing:19.682540pt;}
.ws6_c00426{word-spacing:22.857143pt;}
.ws8_c00426{word-spacing:26.031746pt;}
.ws5_c00426{word-spacing:35.555556pt;}
.ws7_c00426{word-spacing:255.333333pt;}
._1_c00426{width:46.349206pt;}
._2_c00426{width:52.698413pt;}
._3_c00426{width:57.460317pt;}
._0_c00426{width:65.925926pt;}
.fs8_c00426{font-size:21.333333pt;}
.fs5_c00426{font-size:26.666667pt;}
.fs9_c00426{font-size:32.000000pt;}
.fs3_c00426{font-size:37.333333pt;}
.fs4_c00426{font-size:42.666667pt;}
.fs7_c00426{font-size:48.000000pt;}
.fs6_c00426{font-size:53.333333pt;}
.fs2_c00426{font-size:58.666667pt;}
.fs1_c00426{font-size:64.000000pt;}
.fs0_c00426{font-size:74.666667pt;}
.y0_c00426{bottom:0.000000pt;}
.y6c_c00426{bottom:163.866667pt;}
.y34_c00426{bottom:165.066667pt;}
.y6b_c00426{bottom:177.333333pt;}
.y33_c00426{bottom:180.800000pt;}
.y6a_c00426{bottom:190.133333pt;}
.y32_c00426{bottom:200.400000pt;}
.y69_c00426{bottom:203.866667pt;}
.y68_c00426{bottom:216.000000pt;}
.y31_c00426{bottom:216.666667pt;}
.y30_c00426{bottom:232.400000pt;}
.y2f_c00426{bottom:255.733333pt;}
.y67_c00426{bottom:264.266667pt;}
.y2e_c00426{bottom:276.133333pt;}
.y66_c00426{bottom:280.266667pt;}
.y2d_c00426{bottom:292.133333pt;}
.y65_c00426{bottom:303.066667pt;}
.y2c_c00426{bottom:308.133333pt;}
.y64_c00426{bottom:320.266667pt;}
.y2b_c00426{bottom:324.133333pt;}
.y63_c00426{bottom:336.266667pt;}
.y2a_c00426{bottom:340.133333pt;}
.y62_c00426{bottom:352.266667pt;}
.y29_c00426{bottom:356.133333pt;}
.y28_c00426{bottom:372.133333pt;}
.y5a_c00426{bottom:379.333333pt;}
.y27_c00426{bottom:387.866667pt;}
.y59_c00426{bottom:395.600000pt;}
.y26_c00426{bottom:403.866667pt;}
.y58_c00426{bottom:411.600000pt;}
.y25_c00426{bottom:420.133333pt;}
.y57_c00426{bottom:427.600000pt;}
.y24_c00426{bottom:443.200000pt;}
.y56_c00426{bottom:443.600000pt;}
.y55_c00426{bottom:459.866667pt;}
.y23_c00426{bottom:467.600000pt;}
.y54_c00426{bottom:475.600000pt;}
.y22_c00426{bottom:483.866667pt;}
.y53_c00426{bottom:491.866667pt;}
.y21_c00426{bottom:499.866667pt;}
.y52_c00426{bottom:508.133333pt;}
.y20_c00426{bottom:518.666667pt;}
.y51_c00426{bottom:523.866667pt;}
.y1f_c00426{bottom:535.333333pt;}
.y50_c00426{bottom:539.866667pt;}
.y1e_c00426{bottom:554.533333pt;}
.y4e_c00426{bottom:562.533333pt;}
.y4f_c00426{bottom:566.133333pt;}
.y1d_c00426{bottom:575.066667pt;}
.y4d_c00426{bottom:580.133333pt;}
.y4c_c00426{bottom:591.333333pt;}
.y61_c00426{bottom:592.933333pt;}
.y1c_c00426{bottom:593.733333pt;}
.y4b_c00426{bottom:604.800000pt;}
.y1b_c00426{bottom:609.733333pt;}
.y60_c00426{bottom:613.733333pt;}
.y4a_c00426{bottom:617.600000pt;}
.y5d_c00426{bottom:619.466667pt;}
.y1a_c00426{bottom:625.733333pt;}
.y19_c00426{bottom:642.000000pt;}
.y5f_c00426{bottom:642.266667pt;}
.y49_c00426{bottom:642.933333pt;}
.y5c_c00426{bottom:644.800000pt;}
.y48_c00426{bottom:656.000000pt;}
.y5b_c00426{bottom:656.266667pt;}
.y18_c00426{bottom:657.733333pt;}
.y5e_c00426{bottom:658.533333pt;}
.y47_c00426{bottom:669.066667pt;}
.y17_c00426{bottom:673.733333pt;}
.y46_c00426{bottom:683.200000pt;}
.y16_c00426{bottom:690.400000pt;}
.y45_c00426{bottom:704.000000pt;}
.y15_c00426{bottom:706.133333pt;}
.y44_c00426{bottom:720.266667pt;}
.y14_c00426{bottom:721.866667pt;}
.y13_c00426{bottom:737.866667pt;}
.y43_c00426{bottom:747.866667pt;}
.y12_c00426{bottom:753.600000pt;}
.y42_c00426{bottom:763.733333pt;}
.y11_c00426{bottom:769.866667pt;}
.y41_c00426{bottom:779.733333pt;}
.y10_c00426{bottom:785.866667pt;}
.y40_c00426{bottom:795.466667pt;}
.yf_c00426{bottom:808.666667pt;}
.y3f_c00426{bottom:811.466667pt;}
.ye_c00426{bottom:826.000000pt;}
.y3e_c00426{bottom:827.466667pt;}
.yd_c00426{bottom:842.266667pt;}
.y3d_c00426{bottom:843.466667pt;}
.yc_c00426{bottom:858.266667pt;}
.y3c_c00426{bottom:859.466667pt;}
.y3b_c00426{bottom:875.466667pt;}
.y9_c00426{bottom:880.666667pt;}
.y3a_c00426{bottom:893.066667pt;}
.y8_c00426{bottom:897.600000pt;}
.y39_c00426{bottom:907.466667pt;}
.y7_c00426{bottom:913.600000pt;}
.y38_c00426{bottom:923.466667pt;}
.y6_c00426{bottom:929.333333pt;}
.y5_c00426{bottom:945.333333pt;}
.y37_c00426{bottom:946.533333pt;}
.yb_c00426{bottom:961.333333pt;}
.y4_c00426{bottom:962.266667pt;}
.ya_c00426{bottom:969.600000pt;}
.y3_c00426{bottom:976.666667pt;}
.y36_c00426{bottom:978.266667pt;}
.y2_c00426{bottom:993.866667pt;}
.y35_c00426{bottom:994.533333pt;}
.y1_c00426{bottom:1018.266667pt;}
.ha_c00426{height:21.333333pt;}
.h7_c00426{height:26.666667pt;}
.hb_c00426{height:32.000000pt;}
.h5_c00426{height:37.333333pt;}
.h6_c00426{height:42.666667pt;}
.h9_c00426{height:48.000000pt;}
.h8_c00426{height:53.333333pt;}
.h4_c00426{height:58.666667pt;}
.h3_c00426{height:64.000000pt;}
.h2_c00426{height:74.666667pt;}
.h1_c00426{height:1126.000000pt;}
.h0_c00426{height:1126.079916pt;}
.w0_c00426{width:851.840007pt;}
.w1_c00426{width:852.000000pt;}
.x0_c00426{left:0.000000pt;}
.x3_c00426{left:57.866667pt;}
.x8e_c00426{left:69.066667pt;}
.x80_c00426{left:70.666667pt;}
.x72_c00426{left:71.733333pt;}
.x1b_c00426{left:73.066667pt;}
.x13_c00426{left:74.400000pt;}
.x20_c00426{left:75.333333pt;}
.x85_c00426{left:86.133333pt;}
.x7b_c00426{left:87.066667pt;}
.x6f_c00426{left:88.533333pt;}
.x29_c00426{left:89.600000pt;}
.xe_c00426{left:90.533333pt;}
.x6c_c00426{left:92.000000pt;}
.x91_c00426{left:93.466667pt;}
.x43_c00426{left:96.533333pt;}
.x4_c00426{left:98.133333pt;}
.x8b_c00426{left:99.066667pt;}
.x3c_c00426{left:106.933333pt;}
.x59_c00426{left:108.933333pt;}
.x28_c00426{left:110.133333pt;}
.xa_c00426{left:111.333333pt;}
.x24_c00426{left:113.200000pt;}
.x14_c00426{left:115.066667pt;}
.x75_c00426{left:116.133333pt;}
.x30_c00426{left:118.000000pt;}
.x2a_c00426{left:120.266667pt;}
.x5f_c00426{left:121.200000pt;}
.x3d_c00426{left:123.600000pt;}
.x8f_c00426{left:125.066667pt;}
.x15_c00426{left:126.266667pt;}
.x21_c00426{left:128.400000pt;}
.x1c_c00426{left:130.000000pt;}
.x5a_c00426{left:132.666667pt;}
.x4b_c00426{left:134.266667pt;}
.x31_c00426{left:136.266667pt;}
.x65_c00426{left:137.466667pt;}
.x51_c00426{left:138.800000pt;}
.x26_c00426{left:140.266667pt;}
.x76_c00426{left:142.000000pt;}
.x4c_c00426{left:143.200000pt;}
.x60_c00426{left:144.533333pt;}
.xf_c00426{left:145.866667pt;}
.x3a_c00426{left:147.200000pt;}
.x1d_c00426{left:150.533333pt;}
.x67_c00426{left:151.466667pt;}
.x27_c00426{left:152.800000pt;}
.x88_c00426{left:155.466667pt;}
.x5_c00426{left:156.666667pt;}
.x25_c00426{left:158.000000pt;}
.x55_c00426{left:158.933333pt;}
.x86_c00426{left:160.533333pt;}
.x5b_c00426{left:162.800000pt;}
.x81_c00426{left:164.533333pt;}
.x63_c00426{left:166.800000pt;}
.x8c_c00426{left:167.866667pt;}
.x22_c00426{left:169.333333pt;}
.x2b_c00426{left:171.466667pt;}
.x70_c00426{left:172.400000pt;}
.x77_c00426{left:180.133333pt;}
.x1e_c00426{left:181.200000pt;}
.x66_c00426{left:182.933333pt;}
.x16_c00426{left:186.666667pt;}
.xb_c00426{left:187.866667pt;}
.x92_c00426{left:189.200000pt;}
.x52_c00426{left:190.933333pt;}
.x44_c00426{left:191.866667pt;}
.x7d_c00426{left:192.933333pt;}
.x3e_c00426{left:194.000000pt;}
.x68_c00426{left:196.266667pt;}
.x35_c00426{left:199.733333pt;}
.x45_c00426{left:200.800000pt;}
.x89_c00426{left:202.133333pt;}
.x3f_c00426{left:203.600000pt;}
.x94_c00426{left:205.466667pt;}
.x4d_c00426{left:207.200000pt;}
.x32_c00426{left:209.866667pt;}
.x10_c00426{left:212.400000pt;}
.x2c_c00426{left:214.000000pt;}
.x69_c00426{left:215.200000pt;}
.x46_c00426{left:218.133333pt;}
.x6_c00426{left:219.333333pt;}
.xd_c00426{left:221.333333pt;}
.x33_c00426{left:222.666667pt;}
.x56_c00426{left:224.800000pt;}
.x40_c00426{left:225.733333pt;}
.x47_c00426{left:228.000000pt;}
.x36_c00426{left:229.200000pt;}
.x8d_c00426{left:232.533333pt;}
.x23_c00426{left:234.266667pt;}
.x4e_c00426{left:236.000000pt;}
.x71_c00426{left:237.733333pt;}
.x87_c00426{left:239.200000pt;}
.x37_c00426{left:242.000000pt;}
.x17_c00426{left:243.333333pt;}
.x93_c00426{left:246.133333pt;}
.x78_c00426{left:247.600000pt;}
.x82_c00426{left:250.666667pt;}
.x74_c00426{left:251.733333pt;}
.xc_c00426{left:254.800000pt;}
.x79_c00426{left:256.933333pt;}
.x5c_c00426{left:259.200000pt;}
.x48_c00426{left:260.666667pt;}
.x6d_c00426{left:262.266667pt;}
.x41_c00426{left:265.466667pt;}
.x11_c00426{left:267.733333pt;}
.x34_c00426{left:268.800000pt;}
.x7_c00426{left:272.133333pt;}
.x61_c00426{left:273.200000pt;}
.x53_c00426{left:274.666667pt;}
.x38_c00426{left:275.866667pt;}
.x1_c00426{left:277.066667pt;}
.x6a_c00426{left:279.866667pt;}
.x5d_c00426{left:281.600000pt;}
.x83_c00426{left:282.933333pt;}
.x64_c00426{left:284.266667pt;}
.x2d_c00426{left:288.533333pt;}
.x18_c00426{left:290.400000pt;}
.x8_c00426{left:291.600000pt;}
.x6e_c00426{left:293.333333pt;}
.x4f_c00426{left:294.266667pt;}
.x3b_c00426{left:295.333333pt;}
.x84_c00426{left:297.333333pt;}
.x7a_c00426{left:301.066667pt;}
.x5e_c00426{left:302.400000pt;}
.x7e_c00426{left:307.200000pt;}
.x49_c00426{left:308.933333pt;}
.x19_c00426{left:309.866667pt;}
.x57_c00426{left:310.933333pt;}
.x54_c00426{left:317.600000pt;}
.x6b_c00426{left:319.866667pt;}
.x2e_c00426{left:323.733333pt;}
.x12_c00426{left:324.666667pt;}
.x8a_c00426{left:326.266667pt;}
.x90_c00426{left:328.133333pt;}
.x62_c00426{left:329.200000pt;}
.x73_c00426{left:332.800000pt;}
.x1f_c00426{left:333.866667pt;}
.x9_c00426{left:335.066667pt;}
.x42_c00426{left:336.533333pt;}
.x50_c00426{left:338.133333pt;}
.x39_c00426{left:341.200000pt;}
.x58_c00426{left:342.266667pt;}
.x2f_c00426{left:344.800000pt;}
.x7f_c00426{left:345.866667pt;}
.x7c_c00426{left:347.600000pt;}
.x4a_c00426{left:348.666667pt;}
.x1a_c00426{left:354.000000pt;}
.x131_c00426{left:372.666667pt;}
.x121_c00426{left:374.133333pt;}
.xe3_c00426{left:377.333333pt;}
.xa3_c00426{left:379.733333pt;}
.x110_c00426{left:381.066667pt;}
.x12d_c00426{left:386.266667pt;}
.xf0_c00426{left:389.200000pt;}
.x118_c00426{left:390.533333pt;}
.x107_c00426{left:391.733333pt;}
.xce_c00426{left:393.600000pt;}
.x9c_c00426{left:395.333333pt;}
.xa4_c00426{left:396.666667pt;}
.x103_c00426{left:398.133333pt;}
.x132_c00426{left:400.133333pt;}
.x138_c00426{left:401.200000pt;}
.xf1_c00426{left:402.666667pt;}
.x127_c00426{left:404.666667pt;}
.x135_c00426{left:407.600000pt;}
.xfd_c00426{left:409.333333pt;}
.x114_c00426{left:410.666667pt;}
.x95_c00426{left:412.800000pt;}
.xbc_c00426{left:414.800000pt;}
.xe1_c00426{left:416.000000pt;}
.xb2_c00426{left:418.400000pt;}
.xa5_c00426{left:419.733333pt;}
.xb6_c00426{left:422.533333pt;}
.x128_c00426{left:423.866667pt;}
.xc9_c00426{left:424.933333pt;}
.xf2_c00426{left:426.400000pt;}
.xfe_c00426{left:428.533333pt;}
.xe9_c00426{left:430.666667pt;}
.x12c_c00426{left:432.400000pt;}
.xb3_c00426{left:433.466667pt;}
.xe2_c00426{left:434.933333pt;}
.x9d_c00426{left:436.666667pt;}
.xda_c00426{left:438.266667pt;}
.x11a_c00426{left:441.333333pt;}
.x122_c00426{left:442.266667pt;}
.xca_c00426{left:443.200000pt;}
.xb7_c00426{left:444.933333pt;}
.xf5_c00426{left:446.533333pt;}
.x9e_c00426{left:447.600000pt;}
.x96_c00426{left:448.666667pt;}
.xd5_c00426{left:450.000000pt;}
.xa6_c00426{left:451.733333pt;}
.x104_c00426{left:453.066667pt;}
.x10e_c00426{left:454.400000pt;}
.xc5_c00426{left:455.733333pt;}
.xdd_c00426{left:457.333333pt;}
.xc1_c00426{left:458.933333pt;}
.xfa_c00426{left:460.133333pt;}
.x12b_c00426{left:463.733333pt;}
.xaa_c00426{left:464.933333pt;}
.x100_c00426{left:467.066667pt;}
.x11b_c00426{left:468.266667pt;}
.xcf_c00426{left:471.066667pt;}
.xfb_c00426{left:472.933333pt;}
.xde_c00426{left:476.266667pt;}
.xd6_c00426{left:477.200000pt;}
.xe4_c00426{left:478.133333pt;}
.xcb_c00426{left:479.733333pt;}
.xff_c00426{left:481.600000pt;}
.x9f_c00426{left:482.533333pt;}
.x11c_c00426{left:483.600000pt;}
.xbd_c00426{left:484.666667pt;}
.xea_c00426{left:486.400000pt;}
.xa0_c00426{left:492.133333pt;}
.xc6_c00426{left:494.133333pt;}
.xf6_c00426{left:496.133333pt;}
.xcc_c00426{left:498.000000pt;}
.x117_c00426{left:499.866667pt;}
.x111_c00426{left:502.533333pt;}
.xf4_c00426{left:503.733333pt;}
.x10f_c00426{left:505.600000pt;}
.xab_c00426{left:507.066667pt;}
.x97_c00426{left:508.800000pt;}
.xe8_c00426{left:511.733333pt;}
.xdf_c00426{left:513.733333pt;}
.x11d_c00426{left:514.666667pt;}
.xdb_c00426{left:516.400000pt;}
.x12e_c00426{left:517.466667pt;}
.xd0_c00426{left:520.400000pt;}
.xc2_c00426{left:522.266667pt;}
.x108_c00426{left:523.333333pt;}
.xbe_c00426{left:524.666667pt;}
.xe5_c00426{left:525.866667pt;}
.x133_c00426{left:528.000000pt;}
.xac_c00426{left:529.733333pt;}
.xb8_c00426{left:532.000000pt;}
.xa7_c00426{left:533.866667pt;}
.x11e_c00426{left:535.200000pt;}
.xd1_c00426{left:538.666667pt;}
.xad_c00426{left:540.266667pt;}
.xeb_c00426{left:542.133333pt;}
.x123_c00426{left:543.200000pt;}
.xf7_c00426{left:544.800000pt;}
.x129_c00426{left:547.066667pt;}
.x98_c00426{left:548.133333pt;}
.xa1_c00426{left:550.000000pt;}
.xfc_c00426{left:552.400000pt;}
.xd7_c00426{left:555.600000pt;}
.x101_c00426{left:556.666667pt;}
.x12a_c00426{left:558.266667pt;}
.x10c_c00426{left:560.800000pt;}
.x126_c00426{left:562.133333pt;}
.xae_c00426{left:563.333333pt;}
.x112_c00426{left:565.866667pt;}
.x102_c00426{left:569.466667pt;}
.xe6_c00426{left:570.400000pt;}
.xb9_c00426{left:572.666667pt;}
.xa8_c00426{left:573.866667pt;}
.xec_c00426{left:574.800000pt;}
.xc7_c00426{left:576.000000pt;}
.x115_c00426{left:577.466667pt;}
.xa2_c00426{left:579.066667pt;}
.xf3_c00426{left:580.400000pt;}
.x124_c00426{left:582.533333pt;}
.xc3_c00426{left:583.733333pt;}
.x139_c00426{left:585.600000pt;}
.xbf_c00426{left:587.600000pt;}
.xed_c00426{left:589.200000pt;}
.x10a_c00426{left:590.400000pt;}
.x134_c00426{left:591.333333pt;}
.x99_c00426{left:593.200000pt;}
.x136_c00426{left:594.533333pt;}
.xf8_c00426{left:596.400000pt;}
.x105_c00426{left:602.266667pt;}
.x113_c00426{left:603.333333pt;}
.xe7_c00426{left:604.266667pt;}
.xd2_c00426{left:606.133333pt;}
.xb4_c00426{left:607.200000pt;}
.x116_c00426{left:609.733333pt;}
.x12f_c00426{left:611.066667pt;}
.x9a_c00426{left:612.400000pt;}
.xa9_c00426{left:613.866667pt;}
.xf9_c00426{left:616.933333pt;}
.xd8_c00426{left:618.000000pt;}
.x10b_c00426{left:619.866667pt;}
.xd3_c00426{left:621.200000pt;}
.xaf_c00426{left:622.933333pt;}
.x109_c00426{left:624.133333pt;}
.xdc_c00426{left:625.200000pt;}
.x11f_c00426{left:627.200000pt;}
.xe0_c00426{left:631.733333pt;}
.xee_c00426{left:634.933333pt;}
.xc4_c00426{left:635.866667pt;}
.xcd_c00426{left:638.133333pt;}
.x120_c00426{left:639.333333pt;}
.xb0_c00426{left:641.200000pt;}
.x130_c00426{left:642.133333pt;}
.xc0_c00426{left:643.333333pt;}
.xba_c00426{left:645.200000pt;}
.x10d_c00426{left:646.933333pt;}
.xb5_c00426{left:648.133333pt;}
.x119_c00426{left:650.933333pt;}
.x9b_c00426{left:654.266667pt;}
.x2_c00426{left:656.533333pt;}
.x106_c00426{left:658.000000pt;}
.x137_c00426{left:659.733333pt;}
.xb1_c00426{left:662.000000pt;}
.x125_c00426{left:663.200000pt;}
.xd4_c00426{left:664.400000pt;}
.xef_c00426{left:665.333333pt;}
.xd9_c00426{left:666.400000pt;}
.xc8_c00426{left:670.000000pt;}
.xbb_c00426{left:671.466667pt;}
}





/* 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_c00427 {
    display:none;
  }
  .loading-indicator_c00427.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00427 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_c00427 { 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_c00427" -> "#page-container .classname_c00427")
 */
.pf_c00427 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00427 { /* 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_c00427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00427 { /* 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_c00427 { /* 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_c00427 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00427 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00427 {overflow:visible;}
  }
}
.c_c00427 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00427 { /* 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_c00427:after { /* webkit #35443 */
  content: '';
}
.t_c00427:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00427 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 */
}
.__c00427 { /* 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_c00427 { /* info for Javascript */
  display:none;
}
.l_c00427 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00427 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00427 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00427: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_c00427 {
    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_c00427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00427.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_c00427 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00427;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.000000;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;}
.m12_c00427{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00427{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m101_c00427{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m17_c00427{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mee_c00427{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00427{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m98_c00427{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m91_c00427{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mef_c00427{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m5_c00427{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00427{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00427{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m27_c00427{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m121_c00427{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m123_c00427{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m15_c00427{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m33_c00427{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m127_c00427{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m124_c00427{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.mb_c00427{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00427{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m77_c00427{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00427{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m59_c00427{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m100_c00427{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m119_c00427{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00427{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00427{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00427{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m7_c00427{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.maa_c00427{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m122_c00427{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m36_c00427{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m110_c00427{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m53_c00427{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m102_c00427{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00427{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m96_c00427{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00427{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m34_c00427{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.meb_c00427{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00427{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00427{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma_c00427{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00427{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m93_c00427{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m24_c00427{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m54_c00427{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00427{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00427{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00427{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m80_c00427{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00427{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m83_c00427{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m22_c00427{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md4_c00427{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.med_c00427{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mff_c00427{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00427{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m95_c00427{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me5_c00427{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00427{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m86_c00427{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00427{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00427{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00427{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00427{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00427{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m10_c00427{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me2_c00427{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00427{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00427{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00427{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m62_c00427{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m21_c00427{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00427{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m43_c00427{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m112_c00427{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m29_c00427{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m60_c00427{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m31_c00427{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00427{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m111_c00427{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00427{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00427{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00427{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00427{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m85_c00427{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me8_c00427{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m35_c00427{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m55_c00427{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m42_c00427{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md2_c00427{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m19_c00427{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00427{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m90_c00427{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me_c00427{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00427{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00427{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m78_c00427{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m45_c00427{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00427{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m56_c00427{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00427{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00427{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m48_c00427{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00427{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00427{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md8_c00427{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00427{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00427{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00427{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00427{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00427{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00427{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m69_c00427{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m39_c00427{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00427{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00427{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00427{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m64_c00427{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00427{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md6_c00427{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00427{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m52_c00427{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00427{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m94_c00427{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00427{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md1_c00427{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mac_c00427{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00427{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me0_c00427{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00427{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00427{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf_c00427{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00427{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m20_c00427{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00427{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00427{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00427{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00427{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m67_c00427{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00427{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m65_c00427{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m41_c00427{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.md9_c00427{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00427{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00427{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.maf_c00427{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00427{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00427{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m107_c00427{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m75_c00427{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00427{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00427{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00427{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m103_c00427{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00427{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00427{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00427{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00427{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m47_c00427{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m28_c00427{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m58_c00427{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00427{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me9_c00427{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00427{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00427{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00427{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m32_c00427{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m66_c00427{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me6_c00427{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m25_c00427{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m26_c00427{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m106_c00427{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m88_c00427{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mba_c00427{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00427{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m84_c00427{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00427{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00427{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00427{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m105_c00427{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m92_c00427{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00427{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00427{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m68_c00427{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00427{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00427{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m23_c00427{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00427{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00427{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m37_c00427{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00427{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m63_c00427{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m97_c00427{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8_c00427{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m57_c00427{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me7_c00427{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m49_c00427{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00427{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me4_c00427{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md_c00427{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.md3_c00427{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m82_c00427{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m40_c00427{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m104_c00427{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00427{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9_c00427{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00427{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m50_c00427{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mae_c00427{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00427{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00427{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00427{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m30_c00427{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00427{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00427{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00427{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m108_c00427{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m76_c00427{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me1_c00427{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00427{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00427{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m61_c00427{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00427{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m38_c00427{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00427{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00427{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m11_c00427{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md5_c00427{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mad_c00427{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me3_c00427{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00427{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00427{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m99_c00427{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00427{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m89_c00427{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00427{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m44_c00427{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m70_c00427{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00427{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00427{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m115_c00427{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m117_c00427{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mea_c00427{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m79_c00427{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m116_c00427{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);}
.mca_c00427{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md7_c00427{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m72_c00427{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m118_c00427{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00427{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mab_c00427{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m81_c00427{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00427{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00427{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00427{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m73_c00427{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc_c00427{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m125_c00427{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mde_c00427{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00427{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md0_c00427{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00427{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m113_c00427{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m120_c00427{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m46_c00427{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00427{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m74_c00427{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mda_c00427{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00427{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m87_c00427{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m109_c00427{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m16_c00427{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mec_c00427{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00427{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00427{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m126_c00427{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00427{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00427{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00427{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m18_c00427{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m51_c00427{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m71_c00427{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.mce_c00427{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00427{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00427{transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00427{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00427{transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);}
.m129_c00427{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m128_c00427{transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.391250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391250,0.000000,0.000000,0.250000,0,0);}
.m114_c00427{transform:matrix(0.401750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00427{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00427{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.m14_c00427{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls0_c00427{letter-spacing:0.000000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{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__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00427{word-spacing:-8.122677px;}
.wsa_c00427{word-spacing:-6.008086px;}
.ws3_c00427{word-spacing:-2.678571px;}
.ws5_c00427{word-spacing:0.000000px;}
.ws1_c00427{word-spacing:1.000000px;}
.ws6_c00427{word-spacing:4.156334px;}
.ws8_c00427{word-spacing:4.345725px;}
.ws2_c00427{word-spacing:6.071429px;}
.ws4_c00427{word-spacing:9.531250px;}
.ws7_c00427{word-spacing:21.008596px;}
.ws9_c00427{word-spacing:24.166667px;}
._0_c00427{width:46.398922px;}
.fc0_c00427{color:transparent;}
.fs6_c00427{font-size:42.000000px;}
.fs5_c00427{font-size:54.000000px;}
.fs4_c00427{font-size:60.000000px;}
.fs2_c00427{font-size:66.000000px;}
.fs3_c00427{font-size:72.000000px;}
.fs7_c00427{font-size:78.000000px;}
.fs0_c00427{font-size:84.000000px;}
.fs1_c00427{font-size:96.000000px;}
.y0_c00427{bottom:0.000000px;}
.y6a_c00427{bottom:171.000000px;}
.y69_c00427{bottom:189.600000px;}
.y37_c00427{bottom:195.900000px;}
.y68_c00427{bottom:207.900000px;}
.y36_c00427{bottom:210.300000px;}
.y35_c00427{bottom:225.000000px;}
.y67_c00427{bottom:225.900000px;}
.y34_c00427{bottom:239.100000px;}
.y66_c00427{bottom:243.900000px;}
.y33_c00427{bottom:252.900000px;}
.y65_c00427{bottom:261.600000px;}
.y32_c00427{bottom:267.300000px;}
.y64_c00427{bottom:279.300000px;}
.y31_c00427{bottom:281.400000px;}
.y30_c00427{bottom:295.800000px;}
.y63_c00427{bottom:297.300000px;}
.y2f_c00427{bottom:309.900000px;}
.y62_c00427{bottom:315.300000px;}
.y2e_c00427{bottom:324.300000px;}
.y61_c00427{bottom:337.650000px;}
.y2d_c00427{bottom:338.700000px;}
.y2c_c00427{bottom:352.800000px;}
.y60_c00427{bottom:355.350000px;}
.y2b_c00427{bottom:367.200000px;}
.y2a_c00427{bottom:381.300000px;}
.y5f_c00427{bottom:382.350000px;}
.y29_c00427{bottom:395.250000px;}
.y5e_c00427{bottom:400.650000px;}
.y28_c00427{bottom:409.650000px;}
.y5d_c00427{bottom:418.350000px;}
.y27_c00427{bottom:428.850000px;}
.y26_c00427{bottom:443.550000px;}
.y5c_c00427{bottom:445.200000px;}
.y25_c00427{bottom:457.950000px;}
.y5b_c00427{bottom:462.900000px;}
.y24_c00427{bottom:477.000000px;}
.y5a_c00427{bottom:480.900000px;}
.y23_c00427{bottom:491.700000px;}
.y59_c00427{bottom:503.700000px;}
.y22_c00427{bottom:506.250000px;}
.y21_c00427{bottom:521.400000px;}
.y58_c00427{bottom:525.900000px;}
.y20_c00427{bottom:535.050000px;}
.y57_c00427{bottom:543.600000px;}
.y1f_c00427{bottom:550.500000px;}
.y56_c00427{bottom:561.600000px;}
.y1e_c00427{bottom:564.150000px;}
.y1d_c00427{bottom:578.400000px;}
.y55_c00427{bottom:583.500000px;}
.y1c_c00427{bottom:592.500000px;}
.y54_c00427{bottom:601.500000px;}
.y1b_c00427{bottom:606.900000px;}
.y53_c00427{bottom:619.500000px;}
.y1a_c00427{bottom:621.000000px;}
.y19_c00427{bottom:635.700000px;}
.y52_c00427{bottom:637.500000px;}
.y18_c00427{bottom:650.100000px;}
.y51_c00427{bottom:659.550000px;}
.y50_c00427{bottom:677.550000px;}
.y4f_c00427{bottom:700.200000px;}
.y17_c00427{bottom:701.700000px;}
.y4e_c00427{bottom:718.200000px;}
.y16_c00427{bottom:719.700000px;}
.y4d_c00427{bottom:735.750000px;}
.y15_c00427{bottom:738.000000px;}
.y4c_c00427{bottom:753.450000px;}
.y14_c00427{bottom:756.000000px;}
.y13_c00427{bottom:773.700000px;}
.y4b_c00427{bottom:775.800000px;}
.y12_c00427{bottom:791.700000px;}
.y4a_c00427{bottom:793.500000px;}
.y11_c00427{bottom:809.700000px;}
.y49_c00427{bottom:815.700000px;}
.y10_c00427{bottom:827.700000px;}
.y48_c00427{bottom:833.700000px;}
.yf_c00427{bottom:846.000000px;}
.y47_c00427{bottom:851.700000px;}
.ye_c00427{bottom:863.700000px;}
.y46_c00427{bottom:874.050000px;}
.yd_c00427{bottom:881.700000px;}
.y45_c00427{bottom:892.050000px;}
.yc_c00427{bottom:899.700000px;}
.y44_c00427{bottom:910.200000px;}
.yb_c00427{bottom:921.900000px;}
.y43_c00427{bottom:928.200000px;}
.ya_c00427{bottom:939.600000px;}
.y42_c00427{bottom:946.500000px;}
.y9_c00427{bottom:962.250000px;}
.y41_c00427{bottom:968.400000px;}
.y8_c00427{bottom:979.500000px;}
.y40_c00427{bottom:986.400000px;}
.y3f_c00427{bottom:997.950000px;}
.y7_c00427{bottom:1003.350000px;}
.y3e_c00427{bottom:1004.400000px;}
.y6_c00427{bottom:1007.700000px;}
.y3d_c00427{bottom:1022.400000px;}
.y5_c00427{bottom:1037.100000px;}
.y3c_c00427{bottom:1040.400000px;}
.y3b_c00427{bottom:1062.750000px;}
.y4_c00427{bottom:1068.450000px;}
.y3a_c00427{bottom:1080.750000px;}
.y39_c00427{bottom:1102.350000px;}
.y3_c00427{bottom:1105.950000px;}
.y2_c00427{bottom:1119.900000px;}
.y38_c00427{bottom:1120.650000px;}
.y1_c00427{bottom:1146.900000px;}
.h8_c00427{height:42.000000px;}
.h7_c00427{height:54.000000px;}
.h6_c00427{height:60.000000px;}
.h4_c00427{height:66.000000px;}
.h5_c00427{height:72.000000px;}
.h9_c00427{height:78.000000px;}
.h2_c00427{height:84.000000px;}
.h3_c00427{height:96.000000px;}
.h0_c00427{height:1269.720063px;}
.h1_c00427{height:1269.750000px;}
.w0_c00427{width:958.320007px;}
.w1_c00427{width:958.500000px;}
.x0_c00427{left:0.000000px;}
.xa7_c00427{left:186.900000px;}
.xa0_c00427{left:188.700000px;}
.x5c_c00427{left:192.600000px;}
.x1_c00427{left:194.100000px;}
.x88_c00427{left:195.150000px;}
.x5_c00427{left:196.200000px;}
.x61_c00427{left:208.500000px;}
.x5a_c00427{left:209.550000px;}
.x1e_c00427{left:212.850000px;}
.xb_c00427{left:213.900000px;}
.x8f_c00427{left:215.400000px;}
.x68_c00427{left:217.350000px;}
.x81_c00427{left:222.150000px;}
.x95_c00427{left:224.700000px;}
.xa2_c00427{left:226.800000px;}
.x9d_c00427{left:227.850000px;}
.x17_c00427{left:230.100000px;}
.x24_c00427{left:231.450000px;}
.x62_c00427{left:233.400000px;}
.x86_c00427{left:235.050000px;}
.x7d_c00427{left:236.100000px;}
.x7a_c00427{left:238.050000px;}
.x82_c00427{left:239.400000px;}
.x76_c00427{left:241.350000px;}
.x54_c00427{left:244.650000px;}
.x57_c00427{left:245.850000px;}
.x2a_c00427{left:247.200000px;}
.x50_c00427{left:249.000000px;}
.xc_c00427{left:250.950000px;}
.x4d_c00427{left:254.250000px;}
.x11_c00427{left:256.050000px;}
.x8b_c00427{left:257.100000px;}
.x1f_c00427{left:258.150000px;}
.x7e_c00427{left:259.200000px;}
.x7b_c00427{left:260.400000px;}
.x44_c00427{left:264.300000px;}
.x3c_c00427{left:265.350000px;}
.x58_c00427{left:266.400000px;}
.xd_c00427{left:268.200000px;}
.x55_c00427{left:269.550000px;}
.x9a_c00427{left:271.050000px;}
.x70_c00427{left:272.250000px;}
.x69_c00427{left:277.050000px;}
.x20_c00427{left:278.700000px;}
.x3_c00427{left:280.800000px;}
.x49_c00427{left:282.450000px;}
.x15_c00427{left:284.400000px;}
.x25_c00427{left:286.500000px;}
.x13_c00427{left:288.000000px;}
.x33_c00427{left:289.950000px;}
.x9f_c00427{left:292.200000px;}
.x2c_c00427{left:293.400000px;}
.x18_c00427{left:295.950000px;}
.x77_c00427{left:297.450000px;}
.xa3_c00427{left:298.800000px;}
.x65_c00427{left:300.000000px;}
.x45_c00427{left:301.050000px;}
.x90_c00427{left:303.300000px;}
.x6e_c00427{left:305.400000px;}
.x6a_c00427{left:307.650000px;}
.x71_c00427{left:309.300000px;}
.x63_c00427{left:310.500000px;}
.x2b_c00427{left:312.000000px;}
.x83_c00427{left:313.650000px;}
.x16_c00427{left:314.700000px;}
.x96_c00427{left:316.200000px;}
.x21_c00427{left:318.000000px;}
.x91_c00427{left:320.250000px;}
.x6b_c00427{left:323.100000px;}
.x5d_c00427{left:324.750000px;}
.x3d_c00427{left:328.650000px;}
.xe_c00427{left:330.150000px;}
.x14_c00427{left:332.700000px;}
.x6_c00427{left:334.050000px;}
.x22_c00427{left:336.000000px;}
.x5b_c00427{left:337.350000px;}
.x99_c00427{left:338.400000px;}
.x4a_c00427{left:340.350000px;}
.x5e_c00427{left:342.450000px;}
.x7_c00427{left:345.150000px;}
.x8a_c00427{left:346.200000px;}
.x9c_c00427{left:347.400000px;}
.x26_c00427{left:348.450000px;}
.x2d_c00427{left:350.700000px;}
.x4e_c00427{left:351.900000px;}
.xa1_c00427{left:353.400000px;}
.x19_c00427{left:354.600000px;}
.x27_c00427{left:361.050000px;}
.x9b_c00427{left:362.100000px;}
.x3e_c00427{left:364.350000px;}
.x46_c00427{left:366.150000px;}
.x72_c00427{left:368.250000px;}
.xa4_c00427{left:370.800000px;}
.x6c_c00427{left:372.300000px;}
.x51_c00427{left:373.650000px;}
.x12_c00427{left:375.150000px;}
.x2e_c00427{left:376.650000px;}
.x4_c00427{left:379.500000px;}
.x97_c00427{left:381.300000px;}
.x1a_c00427{left:383.400000px;}
.x39_c00427{left:385.800000px;}
.x28_c00427{left:390.150000px;}
.x87_c00427{left:392.100000px;}
.x34_c00427{left:394.350000px;}
.x5f_c00427{left:395.400000px;}
.xf_c00427{left:398.250000px;}
.x4b_c00427{left:400.800000px;}
.x42_c00427{left:402.450000px;}
.x89_c00427{left:404.250000px;}
.x84_c00427{left:405.750000px;}
.x94_c00427{left:408.450000px;}
.x85_c00427{left:412.950000px;}
.x6f_c00427{left:415.200000px;}
.x35_c00427{left:416.250000px;}
.x1b_c00427{left:417.300000px;}
.x66_c00427{left:419.400000px;}
.x47_c00427{left:420.600000px;}
.x60_c00427{left:425.250000px;}
.x3a_c00427{left:427.500000px;}
.x78_c00427{left:429.450000px;}
.x2f_c00427{left:430.650000px;}
.x8c_c00427{left:432.750000px;}
.x8_c00427{left:434.100000px;}
.x9e_c00427{left:435.600000px;}
.x23_c00427{left:437.850000px;}
.x52_c00427{left:439.950000px;}
.x64_c00427{left:441.300000px;}
.x2_c00427{left:444.000000px;}
.x3f_c00427{left:447.150000px;}
.x3b_c00427{left:448.350000px;}
.x9_c00427{left:450.600000px;}
.x29_c00427{left:454.200000px;}
.x10_c00427{left:456.600000px;}
.x30_c00427{left:458.400000px;}
.x36_c00427{left:461.250000px;}
.x7f_c00427{left:463.050000px;}
.x8d_c00427{left:465.150000px;}
.x40_c00427{left:467.250000px;}
.x1c_c00427{left:468.450000px;}
.x7c_c00427{left:469.650000px;}
.x6d_c00427{left:471.300000px;}
.x73_c00427{left:472.350000px;}
.xa5_c00427{left:473.400000px;}
.x79_c00427{left:475.950000px;}
.x31_c00427{left:481.050000px;}
.xa6_c00427{left:482.100000px;}
.x53_c00427{left:484.650000px;}
.x59_c00427{left:486.000000px;}
.x67_c00427{left:487.650000px;}
.x74_c00427{left:488.850000px;}
.x92_c00427{left:490.050000px;}
.x8e_c00427{left:493.950000px;}
.xa_c00427{left:495.300000px;}
.x41_c00427{left:497.100000px;}
.x4f_c00427{left:500.700000px;}
.x43_c00427{left:504.000000px;}
.x80_c00427{left:505.650000px;}
.x37_c00427{left:507.000000px;}
.x98_c00427{left:508.350000px;}
.x4c_c00427{left:511.950000px;}
.x93_c00427{left:513.750000px;}
.x48_c00427{left:515.250000px;}
.x32_c00427{left:517.050000px;}
.x1d_c00427{left:518.100000px;}
.x75_c00427{left:519.150000px;}
.x56_c00427{left:523.350000px;}
.x38_c00427{left:527.550000px;}
.x120_c00427{left:552.300000px;}
.x117_c00427{left:553.650000px;}
.x123_c00427{left:565.950000px;}
.x121_c00427{left:568.500000px;}
.xf9_c00427{left:570.600000px;}
.xdd_c00427{left:572.400000px;}
.xa8_c00427{left:573.450000px;}
.xd3_c00427{left:574.500000px;}
.x139_c00427{left:582.600000px;}
.x103_c00427{left:588.600000px;}
.xf2_c00427{left:589.650000px;}
.xb0_c00427{left:590.700000px;}
.xbd_c00427{left:592.500000px;}
.x130_c00427{left:594.150000px;}
.x126_c00427{left:596.250000px;}
.xeb_c00427{left:598.800000px;}
.x13d_c00427{left:600.450000px;}
.xe3_c00427{left:602.550000px;}
.xb9_c00427{left:603.750000px;}
.xde_c00427{left:604.800000px;}
.xfa_c00427{left:606.300000px;}
.x135_c00427{left:609.750000px;}
.x11a_c00427{left:612.000000px;}
.xbe_c00427{left:614.100000px;}
.xba_c00427{left:615.600000px;}
.xa9_c00427{left:618.150000px;}
.xd0_c00427{left:625.500000px;}
.x10e_c00427{left:626.550000px;}
.xf6_c00427{left:628.950000px;}
.xf3_c00427{left:630.300000px;}
.xec_c00427{left:631.500000px;}
.x11c_c00427{left:633.750000px;}
.x10c_c00427{left:635.100000px;}
.x13e_c00427{left:636.750000px;}
.xaa_c00427{left:638.700000px;}
.xd8_c00427{left:640.800000px;}
.xb1_c00427{left:642.150000px;}
.x118_c00427{left:644.400000px;}
.x12a_c00427{left:646.050000px;}
.x101_c00427{left:647.850000px;}
.xe4_c00427{left:649.500000px;}
.xc9_c00427{left:651.150000px;}
.xe7_c00427{left:653.400000px;}
.x10f_c00427{left:655.050000px;}
.xbb_c00427{left:657.000000px;}
.xd9_c00427{left:660.900000px;}
.x107_c00427{left:662.100000px;}
.xf7_c00427{left:663.450000px;}
.x104_c00427{left:664.500000px;}
.xbf_c00427{left:666.000000px;}
.xe8_c00427{left:667.800000px;}
.xf1_c00427{left:671.550000px;}
.x12b_c00427{left:672.750000px;}
.x11b_c00427{left:674.400000px;}
.x116_c00427{left:676.050000px;}
.xf4_c00427{left:677.850000px;}
.x110_c00427{left:680.550000px;}
.xbc_c00427{left:683.700000px;}
.xc0_c00427{left:685.800000px;}
.xd4_c00427{left:686.850000px;}
.x11d_c00427{left:688.500000px;}
.x115_c00427{left:690.300000px;}
.xab_c00427{left:693.450000px;}
.x131_c00427{left:695.250000px;}
.xed_c00427{left:698.700000px;}
.x13f_c00427{left:700.050000px;}
.xb2_c00427{left:705.450000px;}
.x124_c00427{left:706.650000px;}
.x136_c00427{left:708.150000px;}
.x111_c00427{left:711.450000px;}
.x10d_c00427{left:712.800000px;}
.x13a_c00427{left:714.000000px;}
.xc1_c00427{left:715.350000px;}
.x129_c00427{left:716.400000px;}
.xd5_c00427{left:719.550000px;}
.xca_c00427{left:721.350000px;}
.xb3_c00427{left:723.750000px;}
.xd1_c00427{left:725.700000px;}
.xcc_c00427{left:728.550000px;}
.xdf_c00427{left:731.400000px;}
.x108_c00427{left:734.850000px;}
.xcb_c00427{left:736.050000px;}
.x112_c00427{left:737.400000px;}
.xc5_c00427{left:739.200000px;}
.xb4_c00427{left:741.000000px;}
.xe5_c00427{left:743.100000px;}
.xe9_c00427{left:745.200000px;}
.xfe_c00427{left:747.750000px;}
.xe0_c00427{left:749.100000px;}
.xcd_c00427{left:752.550000px;}
.x11e_c00427{left:753.600000px;}
.xc6_c00427{left:755.100000px;}
.xac_c00427{left:763.650000px;}
.xd6_c00427{left:767.400000px;}
.xb5_c00427{left:769.500000px;}
.xea_c00427{left:771.450000px;}
.x119_c00427{left:772.650000px;}
.x122_c00427{left:773.700000px;}
.x113_c00427{left:777.000000px;}
.xe1_c00427{left:779.700000px;}
.xb6_c00427{left:782.100000px;}
.x137_c00427{left:785.550000px;}
.xfb_c00427{left:786.600000px;}
.xc2_c00427{left:789.900000px;}
.x11f_c00427{left:793.200000px;}
.xad_c00427{left:795.000000px;}
.xda_c00427{left:796.200000px;}
.xc7_c00427{left:799.800000px;}
.x102_c00427{left:801.300000px;}
.xfc_c00427{left:804.900000px;}
.xc3_c00427{left:807.600000px;}
.xee_c00427{left:809.250000px;}
.xb7_c00427{left:810.600000px;}
.xce_c00427{left:811.650000px;}
.xdb_c00427{left:813.450000px;}
.xae_c00427{left:816.600000px;}
.x10a_c00427{left:819.000000px;}
.x128_c00427{left:822.750000px;}
.x13b_c00427{left:824.400000px;}
.x125_c00427{left:826.050000px;}
.x12c_c00427{left:827.100000px;}
.x105_c00427{left:828.300000px;}
.xf8_c00427{left:830.250000px;}
.x132_c00427{left:832.650000px;}
.xf5_c00427{left:833.700000px;}
.x12d_c00427{left:835.050000px;}
.x114_c00427{left:836.400000px;}
.xff_c00427{left:840.000000px;}
.xb8_c00427{left:841.950000px;}
.x12e_c00427{left:843.300000px;}
.xe6_c00427{left:846.150000px;}
.xef_c00427{left:849.150000px;}
.x13c_c00427{left:850.650000px;}
.xe2_c00427{left:852.000000px;}
.x133_c00427{left:854.250000px;}
.xcf_c00427{left:856.650000px;}
.xdc_c00427{left:857.700000px;}
.xd2_c00427{left:859.950000px;}
.xaf_c00427{left:863.100000px;}
.xfd_c00427{left:864.600000px;}
.x10b_c00427{left:866.250000px;}
.x127_c00427{left:867.300000px;}
.xc4_c00427{left:868.800000px;}
.x138_c00427{left:870.000000px;}
.x134_c00427{left:871.200000px;}
.x12f_c00427{left:872.400000px;}
.x100_c00427{left:874.200000px;}
.xf0_c00427{left:875.400000px;}
.xc8_c00427{left:879.300000px;}
.x106_c00427{left:881.250000px;}
.xd7_c00427{left:883.350000px;}
.x109_c00427{left:887.550000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws0_c00427{word-spacing:-7.220157pt;}
.wsa_c00427{word-spacing:-5.340521pt;}
.ws3_c00427{word-spacing:-2.380952pt;}
.ws5_c00427{word-spacing:0.000000pt;}
.ws1_c00427{word-spacing:0.888889pt;}
.ws6_c00427{word-spacing:3.694519pt;}
.ws8_c00427{word-spacing:3.862867pt;}
.ws2_c00427{word-spacing:5.396825pt;}
.ws4_c00427{word-spacing:8.472222pt;}
.ws7_c00427{word-spacing:18.674308pt;}
.ws9_c00427{word-spacing:21.481481pt;}
._0_c00427{width:41.243486pt;}
.fs6_c00427{font-size:37.333333pt;}
.fs5_c00427{font-size:48.000000pt;}
.fs4_c00427{font-size:53.333333pt;}
.fs2_c00427{font-size:58.666667pt;}
.fs3_c00427{font-size:64.000000pt;}
.fs7_c00427{font-size:69.333333pt;}
.fs0_c00427{font-size:74.666667pt;}
.fs1_c00427{font-size:85.333333pt;}
.y0_c00427{bottom:0.000000pt;}
.y6a_c00427{bottom:152.000000pt;}
.y69_c00427{bottom:168.533333pt;}
.y37_c00427{bottom:174.133333pt;}
.y68_c00427{bottom:184.800000pt;}
.y36_c00427{bottom:186.933333pt;}
.y35_c00427{bottom:200.000000pt;}
.y67_c00427{bottom:200.800000pt;}
.y34_c00427{bottom:212.533333pt;}
.y66_c00427{bottom:216.800000pt;}
.y33_c00427{bottom:224.800000pt;}
.y65_c00427{bottom:232.533333pt;}
.y32_c00427{bottom:237.600000pt;}
.y64_c00427{bottom:248.266667pt;}
.y31_c00427{bottom:250.133333pt;}
.y30_c00427{bottom:262.933333pt;}
.y63_c00427{bottom:264.266667pt;}
.y2f_c00427{bottom:275.466667pt;}
.y62_c00427{bottom:280.266667pt;}
.y2e_c00427{bottom:288.266667pt;}
.y61_c00427{bottom:300.133333pt;}
.y2d_c00427{bottom:301.066667pt;}
.y2c_c00427{bottom:313.600000pt;}
.y60_c00427{bottom:315.866667pt;}
.y2b_c00427{bottom:326.400000pt;}
.y2a_c00427{bottom:338.933333pt;}
.y5f_c00427{bottom:339.866667pt;}
.y29_c00427{bottom:351.333333pt;}
.y5e_c00427{bottom:356.133333pt;}
.y28_c00427{bottom:364.133333pt;}
.y5d_c00427{bottom:371.866667pt;}
.y27_c00427{bottom:381.200000pt;}
.y26_c00427{bottom:394.266667pt;}
.y5c_c00427{bottom:395.733333pt;}
.y25_c00427{bottom:407.066667pt;}
.y5b_c00427{bottom:411.466667pt;}
.y24_c00427{bottom:424.000000pt;}
.y5a_c00427{bottom:427.466667pt;}
.y23_c00427{bottom:437.066667pt;}
.y59_c00427{bottom:447.733333pt;}
.y22_c00427{bottom:450.000000pt;}
.y21_c00427{bottom:463.466667pt;}
.y58_c00427{bottom:467.466667pt;}
.y20_c00427{bottom:475.600000pt;}
.y57_c00427{bottom:483.200000pt;}
.y1f_c00427{bottom:489.333333pt;}
.y56_c00427{bottom:499.200000pt;}
.y1e_c00427{bottom:501.466667pt;}
.y1d_c00427{bottom:514.133333pt;}
.y55_c00427{bottom:518.666667pt;}
.y1c_c00427{bottom:526.666667pt;}
.y54_c00427{bottom:534.666667pt;}
.y1b_c00427{bottom:539.466667pt;}
.y53_c00427{bottom:550.666667pt;}
.y1a_c00427{bottom:552.000000pt;}
.y19_c00427{bottom:565.066667pt;}
.y52_c00427{bottom:566.666667pt;}
.y18_c00427{bottom:577.866667pt;}
.y51_c00427{bottom:586.266667pt;}
.y50_c00427{bottom:602.266667pt;}
.y4f_c00427{bottom:622.400000pt;}
.y17_c00427{bottom:623.733333pt;}
.y4e_c00427{bottom:638.400000pt;}
.y16_c00427{bottom:639.733333pt;}
.y4d_c00427{bottom:654.000000pt;}
.y15_c00427{bottom:656.000000pt;}
.y4c_c00427{bottom:669.733333pt;}
.y14_c00427{bottom:672.000000pt;}
.y13_c00427{bottom:687.733333pt;}
.y4b_c00427{bottom:689.600000pt;}
.y12_c00427{bottom:703.733333pt;}
.y4a_c00427{bottom:705.333333pt;}
.y11_c00427{bottom:719.733333pt;}
.y49_c00427{bottom:725.066667pt;}
.y10_c00427{bottom:735.733333pt;}
.y48_c00427{bottom:741.066667pt;}
.yf_c00427{bottom:752.000000pt;}
.y47_c00427{bottom:757.066667pt;}
.ye_c00427{bottom:767.733333pt;}
.y46_c00427{bottom:776.933333pt;}
.yd_c00427{bottom:783.733333pt;}
.y45_c00427{bottom:792.933333pt;}
.yc_c00427{bottom:799.733333pt;}
.y44_c00427{bottom:809.066667pt;}
.yb_c00427{bottom:819.466667pt;}
.y43_c00427{bottom:825.066667pt;}
.ya_c00427{bottom:835.200000pt;}
.y42_c00427{bottom:841.333333pt;}
.y9_c00427{bottom:855.333333pt;}
.y41_c00427{bottom:860.800000pt;}
.y8_c00427{bottom:870.666667pt;}
.y40_c00427{bottom:876.800000pt;}
.y3f_c00427{bottom:887.066667pt;}
.y7_c00427{bottom:891.866667pt;}
.y3e_c00427{bottom:892.800000pt;}
.y6_c00427{bottom:895.733333pt;}
.y3d_c00427{bottom:908.800000pt;}
.y5_c00427{bottom:921.866667pt;}
.y3c_c00427{bottom:924.800000pt;}
.y3b_c00427{bottom:944.666667pt;}
.y4_c00427{bottom:949.733333pt;}
.y3a_c00427{bottom:960.666667pt;}
.y39_c00427{bottom:979.866667pt;}
.y3_c00427{bottom:983.066667pt;}
.y2_c00427{bottom:995.466667pt;}
.y38_c00427{bottom:996.133333pt;}
.y1_c00427{bottom:1019.466667pt;}
.h8_c00427{height:37.333333pt;}
.h7_c00427{height:48.000000pt;}
.h6_c00427{height:53.333333pt;}
.h4_c00427{height:58.666667pt;}
.h5_c00427{height:64.000000pt;}
.h9_c00427{height:69.333333pt;}
.h2_c00427{height:74.666667pt;}
.h3_c00427{height:85.333333pt;}
.h0_c00427{height:1128.640056pt;}
.h1_c00427{height:1128.666667pt;}
.w0_c00427{width:851.840007pt;}
.w1_c00427{width:852.000000pt;}
.x0_c00427{left:0.000000pt;}
.xa7_c00427{left:166.133333pt;}
.xa0_c00427{left:167.733333pt;}
.x5c_c00427{left:171.200000pt;}
.x1_c00427{left:172.533333pt;}
.x88_c00427{left:173.466667pt;}
.x5_c00427{left:174.400000pt;}
.x61_c00427{left:185.333333pt;}
.x5a_c00427{left:186.266667pt;}
.x1e_c00427{left:189.200000pt;}
.xb_c00427{left:190.133333pt;}
.x8f_c00427{left:191.466667pt;}
.x68_c00427{left:193.200000pt;}
.x81_c00427{left:197.466667pt;}
.x95_c00427{left:199.733333pt;}
.xa2_c00427{left:201.600000pt;}
.x9d_c00427{left:202.533333pt;}
.x17_c00427{left:204.533333pt;}
.x24_c00427{left:205.733333pt;}
.x62_c00427{left:207.466667pt;}
.x86_c00427{left:208.933333pt;}
.x7d_c00427{left:209.866667pt;}
.x7a_c00427{left:211.600000pt;}
.x82_c00427{left:212.800000pt;}
.x76_c00427{left:214.533333pt;}
.x54_c00427{left:217.466667pt;}
.x57_c00427{left:218.533333pt;}
.x2a_c00427{left:219.733333pt;}
.x50_c00427{left:221.333333pt;}
.xc_c00427{left:223.066667pt;}
.x4d_c00427{left:226.000000pt;}
.x11_c00427{left:227.600000pt;}
.x8b_c00427{left:228.533333pt;}
.x1f_c00427{left:229.466667pt;}
.x7e_c00427{left:230.400000pt;}
.x7b_c00427{left:231.466667pt;}
.x44_c00427{left:234.933333pt;}
.x3c_c00427{left:235.866667pt;}
.x58_c00427{left:236.800000pt;}
.xd_c00427{left:238.400000pt;}
.x55_c00427{left:239.600000pt;}
.x9a_c00427{left:240.933333pt;}
.x70_c00427{left:242.000000pt;}
.x69_c00427{left:246.266667pt;}
.x20_c00427{left:247.733333pt;}
.x3_c00427{left:249.600000pt;}
.x49_c00427{left:251.066667pt;}
.x15_c00427{left:252.800000pt;}
.x25_c00427{left:254.666667pt;}
.x13_c00427{left:256.000000pt;}
.x33_c00427{left:257.733333pt;}
.x9f_c00427{left:259.733333pt;}
.x2c_c00427{left:260.800000pt;}
.x18_c00427{left:263.066667pt;}
.x77_c00427{left:264.400000pt;}
.xa3_c00427{left:265.600000pt;}
.x65_c00427{left:266.666667pt;}
.x45_c00427{left:267.600000pt;}
.x90_c00427{left:269.600000pt;}
.x6e_c00427{left:271.466667pt;}
.x6a_c00427{left:273.466667pt;}
.x71_c00427{left:274.933333pt;}
.x63_c00427{left:276.000000pt;}
.x2b_c00427{left:277.333333pt;}
.x83_c00427{left:278.800000pt;}
.x16_c00427{left:279.733333pt;}
.x96_c00427{left:281.066667pt;}
.x21_c00427{left:282.666667pt;}
.x91_c00427{left:284.666667pt;}
.x6b_c00427{left:287.200000pt;}
.x5d_c00427{left:288.666667pt;}
.x3d_c00427{left:292.133333pt;}
.xe_c00427{left:293.466667pt;}
.x14_c00427{left:295.733333pt;}
.x6_c00427{left:296.933333pt;}
.x22_c00427{left:298.666667pt;}
.x5b_c00427{left:299.866667pt;}
.x99_c00427{left:300.800000pt;}
.x4a_c00427{left:302.533333pt;}
.x5e_c00427{left:304.400000pt;}
.x7_c00427{left:306.800000pt;}
.x8a_c00427{left:307.733333pt;}
.x9c_c00427{left:308.800000pt;}
.x26_c00427{left:309.733333pt;}
.x2d_c00427{left:311.733333pt;}
.x4e_c00427{left:312.800000pt;}
.xa1_c00427{left:314.133333pt;}
.x19_c00427{left:315.200000pt;}
.x27_c00427{left:320.933333pt;}
.x9b_c00427{left:321.866667pt;}
.x3e_c00427{left:323.866667pt;}
.x46_c00427{left:325.466667pt;}
.x72_c00427{left:327.333333pt;}
.xa4_c00427{left:329.600000pt;}
.x6c_c00427{left:330.933333pt;}
.x51_c00427{left:332.133333pt;}
.x12_c00427{left:333.466667pt;}
.x2e_c00427{left:334.800000pt;}
.x4_c00427{left:337.333333pt;}
.x97_c00427{left:338.933333pt;}
.x1a_c00427{left:340.800000pt;}
.x39_c00427{left:342.933333pt;}
.x28_c00427{left:346.800000pt;}
.x87_c00427{left:348.533333pt;}
.x34_c00427{left:350.533333pt;}
.x5f_c00427{left:351.466667pt;}
.xf_c00427{left:354.000000pt;}
.x4b_c00427{left:356.266667pt;}
.x42_c00427{left:357.733333pt;}
.x89_c00427{left:359.333333pt;}
.x84_c00427{left:360.666667pt;}
.x94_c00427{left:363.066667pt;}
.x85_c00427{left:367.066667pt;}
.x6f_c00427{left:369.066667pt;}
.x35_c00427{left:370.000000pt;}
.x1b_c00427{left:370.933333pt;}
.x66_c00427{left:372.800000pt;}
.x47_c00427{left:373.866667pt;}
.x60_c00427{left:378.000000pt;}
.x3a_c00427{left:380.000000pt;}
.x78_c00427{left:381.733333pt;}
.x2f_c00427{left:382.800000pt;}
.x8c_c00427{left:384.666667pt;}
.x8_c00427{left:385.866667pt;}
.x9e_c00427{left:387.200000pt;}
.x23_c00427{left:389.200000pt;}
.x52_c00427{left:391.066667pt;}
.x64_c00427{left:392.266667pt;}
.x2_c00427{left:394.666667pt;}
.x3f_c00427{left:397.466667pt;}
.x3b_c00427{left:398.533333pt;}
.x9_c00427{left:400.533333pt;}
.x29_c00427{left:403.733333pt;}
.x10_c00427{left:405.866667pt;}
.x30_c00427{left:407.466667pt;}
.x36_c00427{left:410.000000pt;}
.x7f_c00427{left:411.600000pt;}
.x8d_c00427{left:413.466667pt;}
.x40_c00427{left:415.333333pt;}
.x1c_c00427{left:416.400000pt;}
.x7c_c00427{left:417.466667pt;}
.x6d_c00427{left:418.933333pt;}
.x73_c00427{left:419.866667pt;}
.xa5_c00427{left:420.800000pt;}
.x79_c00427{left:423.066667pt;}
.x31_c00427{left:427.600000pt;}
.xa6_c00427{left:428.533333pt;}
.x53_c00427{left:430.800000pt;}
.x59_c00427{left:432.000000pt;}
.x67_c00427{left:433.466667pt;}
.x74_c00427{left:434.533333pt;}
.x92_c00427{left:435.600000pt;}
.x8e_c00427{left:439.066667pt;}
.xa_c00427{left:440.266667pt;}
.x41_c00427{left:441.866667pt;}
.x4f_c00427{left:445.066667pt;}
.x43_c00427{left:448.000000pt;}
.x80_c00427{left:449.466667pt;}
.x37_c00427{left:450.666667pt;}
.x98_c00427{left:451.866667pt;}
.x4c_c00427{left:455.066667pt;}
.x93_c00427{left:456.666667pt;}
.x48_c00427{left:458.000000pt;}
.x32_c00427{left:459.600000pt;}
.x1d_c00427{left:460.533333pt;}
.x75_c00427{left:461.466667pt;}
.x56_c00427{left:465.200000pt;}
.x38_c00427{left:468.933333pt;}
.x120_c00427{left:490.933333pt;}
.x117_c00427{left:492.133333pt;}
.x123_c00427{left:503.066667pt;}
.x121_c00427{left:505.333333pt;}
.xf9_c00427{left:507.200000pt;}
.xdd_c00427{left:508.800000pt;}
.xa8_c00427{left:509.733333pt;}
.xd3_c00427{left:510.666667pt;}
.x139_c00427{left:517.866667pt;}
.x103_c00427{left:523.200000pt;}
.xf2_c00427{left:524.133333pt;}
.xb0_c00427{left:525.066667pt;}
.xbd_c00427{left:526.666667pt;}
.x130_c00427{left:528.133333pt;}
.x126_c00427{left:530.000000pt;}
.xeb_c00427{left:532.266667pt;}
.x13d_c00427{left:533.733333pt;}
.xe3_c00427{left:535.600000pt;}
.xb9_c00427{left:536.666667pt;}
.xde_c00427{left:537.600000pt;}
.xfa_c00427{left:538.933333pt;}
.x135_c00427{left:542.000000pt;}
.x11a_c00427{left:544.000000pt;}
.xbe_c00427{left:545.866667pt;}
.xba_c00427{left:547.200000pt;}
.xa9_c00427{left:549.466667pt;}
.xd0_c00427{left:556.000000pt;}
.x10e_c00427{left:556.933333pt;}
.xf6_c00427{left:559.066667pt;}
.xf3_c00427{left:560.266667pt;}
.xec_c00427{left:561.333333pt;}
.x11c_c00427{left:563.333333pt;}
.x10c_c00427{left:564.533333pt;}
.x13e_c00427{left:566.000000pt;}
.xaa_c00427{left:567.733333pt;}
.xd8_c00427{left:569.600000pt;}
.xb1_c00427{left:570.800000pt;}
.x118_c00427{left:572.800000pt;}
.x12a_c00427{left:574.266667pt;}
.x101_c00427{left:575.866667pt;}
.xe4_c00427{left:577.333333pt;}
.xc9_c00427{left:578.800000pt;}
.xe7_c00427{left:580.800000pt;}
.x10f_c00427{left:582.266667pt;}
.xbb_c00427{left:584.000000pt;}
.xd9_c00427{left:587.466667pt;}
.x107_c00427{left:588.533333pt;}
.xf7_c00427{left:589.733333pt;}
.x104_c00427{left:590.666667pt;}
.xbf_c00427{left:592.000000pt;}
.xe8_c00427{left:593.600000pt;}
.xf1_c00427{left:596.933333pt;}
.x12b_c00427{left:598.000000pt;}
.x11b_c00427{left:599.466667pt;}
.x116_c00427{left:600.933333pt;}
.xf4_c00427{left:602.533333pt;}
.x110_c00427{left:604.933333pt;}
.xbc_c00427{left:607.733333pt;}
.xc0_c00427{left:609.600000pt;}
.xd4_c00427{left:610.533333pt;}
.x11d_c00427{left:612.000000pt;}
.x115_c00427{left:613.600000pt;}
.xab_c00427{left:616.400000pt;}
.x131_c00427{left:618.000000pt;}
.xed_c00427{left:621.066667pt;}
.x13f_c00427{left:622.266667pt;}
.xb2_c00427{left:627.066667pt;}
.x124_c00427{left:628.133333pt;}
.x136_c00427{left:629.466667pt;}
.x111_c00427{left:632.400000pt;}
.x10d_c00427{left:633.600000pt;}
.x13a_c00427{left:634.666667pt;}
.xc1_c00427{left:635.866667pt;}
.x129_c00427{left:636.800000pt;}
.xd5_c00427{left:639.600000pt;}
.xca_c00427{left:641.200000pt;}
.xb3_c00427{left:643.333333pt;}
.xd1_c00427{left:645.066667pt;}
.xcc_c00427{left:647.600000pt;}
.xdf_c00427{left:650.133333pt;}
.x108_c00427{left:653.200000pt;}
.xcb_c00427{left:654.266667pt;}
.x112_c00427{left:655.466667pt;}
.xc5_c00427{left:657.066667pt;}
.xb4_c00427{left:658.666667pt;}
.xe5_c00427{left:660.533333pt;}
.xe9_c00427{left:662.400000pt;}
.xfe_c00427{left:664.666667pt;}
.xe0_c00427{left:665.866667pt;}
.xcd_c00427{left:668.933333pt;}
.x11e_c00427{left:669.866667pt;}
.xc6_c00427{left:671.200000pt;}
.xac_c00427{left:678.800000pt;}
.xd6_c00427{left:682.133333pt;}
.xb5_c00427{left:684.000000pt;}
.xea_c00427{left:685.733333pt;}
.x119_c00427{left:686.800000pt;}
.x122_c00427{left:687.733333pt;}
.x113_c00427{left:690.666667pt;}
.xe1_c00427{left:693.066667pt;}
.xb6_c00427{left:695.200000pt;}
.x137_c00427{left:698.266667pt;}
.xfb_c00427{left:699.200000pt;}
.xc2_c00427{left:702.133333pt;}
.x11f_c00427{left:705.066667pt;}
.xad_c00427{left:706.666667pt;}
.xda_c00427{left:707.733333pt;}
.xc7_c00427{left:710.933333pt;}
.x102_c00427{left:712.266667pt;}
.xfc_c00427{left:715.466667pt;}
.xc3_c00427{left:717.866667pt;}
.xee_c00427{left:719.333333pt;}
.xb7_c00427{left:720.533333pt;}
.xce_c00427{left:721.466667pt;}
.xdb_c00427{left:723.066667pt;}
.xae_c00427{left:725.866667pt;}
.x10a_c00427{left:728.000000pt;}
.x128_c00427{left:731.333333pt;}
.x13b_c00427{left:732.800000pt;}
.x125_c00427{left:734.266667pt;}
.x12c_c00427{left:735.200000pt;}
.x105_c00427{left:736.266667pt;}
.xf8_c00427{left:738.000000pt;}
.x132_c00427{left:740.133333pt;}
.xf5_c00427{left:741.066667pt;}
.x12d_c00427{left:742.266667pt;}
.x114_c00427{left:743.466667pt;}
.xff_c00427{left:746.666667pt;}
.xb8_c00427{left:748.400000pt;}
.x12e_c00427{left:749.600000pt;}
.xe6_c00427{left:752.133333pt;}
.xef_c00427{left:754.800000pt;}
.x13c_c00427{left:756.133333pt;}
.xe2_c00427{left:757.333333pt;}
.x133_c00427{left:759.333333pt;}
.xcf_c00427{left:761.466667pt;}
.xdc_c00427{left:762.400000pt;}
.xd2_c00427{left:764.400000pt;}
.xaf_c00427{left:767.200000pt;}
.xfd_c00427{left:768.533333pt;}
.x10b_c00427{left:770.000000pt;}
.x127_c00427{left:770.933333pt;}
.xc4_c00427{left:772.266667pt;}
.x138_c00427{left:773.333333pt;}
.x134_c00427{left:774.400000pt;}
.x12f_c00427{left:775.466667pt;}
.x100_c00427{left:777.066667pt;}
.xf0_c00427{left:778.133333pt;}
.xc8_c00427{left:781.600000pt;}
.x106_c00427{left:783.333333pt;}
.xd7_c00427{left:785.200000pt;}
.x109_c00427{left:788.933333pt;}
}





/* 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_c00428 {
    display:none;
  }
  .loading-indicator_c00428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00428 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_c00428 { 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_c00428" -> "#page-container .classname_c00428")
 */
.pf_c00428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00428 { /* 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_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00428 { /* 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_c00428 { /* 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_c00428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00428 {overflow:visible;}
  }
}
.c_c00428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00428 { /* 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_c00428:after { /* webkit #35443 */
  content: '';
}
.t_c00428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00428 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 */
}
.__c00428 { /* 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_c00428 { /* info for Javascript */
  display:none;
}
.l_c00428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00428: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_c00428 {
    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_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00428.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_c00428 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00428;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.000000;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;}
.m98_c00428{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00428{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00428{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00428{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.md4_c00428{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00428{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m29_c00428{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00428{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me0_c00428{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00428{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00428{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00428{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.md3_c00428{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me9_c00428{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00428{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00428{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00428{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00428{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m81_c00428{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m51_c00428{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00428{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md9_c00428{transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00428{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m37_c00428{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m74_c00428{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m7_c00428{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00428{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m46_c00428{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m26_c00428{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00428{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00428{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m92_c00428{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m43_c00428{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00428{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.maa_c00428{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00428{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.mff_c00428{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00428{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00428{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.md1_c00428{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c00428{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m106_c00428{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00428{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mf_c00428{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00428{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m109_c00428{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00428{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00428{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m2_c00428{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m24_c00428{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m96_c00428{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00428{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00428{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m47_c00428{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m10_c00428{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m101_c00428{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00428{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00428{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m90_c00428{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m8_c00428{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00428{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb_c00428{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00428{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m93_c00428{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m65_c00428{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00428{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m69_c00428{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00428{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m22_c00428{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m15_c00428{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00428{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00428{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.maf_c00428{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5_c00428{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00428{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.me4_c00428{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00428{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mad_c00428{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00428{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m89_c00428{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mda_c00428{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00428{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m91_c00428{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m33_c00428{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m110_c00428{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.me2_c00428{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m42_c00428{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m25_c00428{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00428{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00428{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma_c00428{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m125_c00428{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.med_c00428{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6_c00428{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m75_c00428{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m77_c00428{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m54_c00428{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m87_c00428{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m124_c00428{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00428{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md2_c00428{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00428{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00428{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00428{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00428{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00428{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m64_c00428{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00428{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m45_c00428{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m52_c00428{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m31_c00428{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m13_c00428{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m111_c00428{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m88_c00428{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mec_c00428{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m11_c00428{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00428{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m105_c00428{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m20_c00428{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m61_c00428{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m128_c00428{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m129_c00428{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m68_c00428{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc_c00428{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md8_c00428{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m114_c00428{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00428{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00428{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m70_c00428{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00428{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m130_c00428{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00428{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m83_c00428{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m12_c00428{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00428{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mee_c00428{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00428{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00428{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m19_c00428{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00428{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00428{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00428{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m32_c00428{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m62_c00428{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00428{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00428{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m58_c00428{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m115_c00428{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m66_c00428{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00428{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00428{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m40_c00428{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m116_c00428{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00428{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00428{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mde_c00428{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m36_c00428{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00428{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m28_c00428{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me5_c00428{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00428{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00428{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m78_c00428{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.meb_c00428{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m18_c00428{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m35_c00428{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00428{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mab_c00428{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m73_c00428{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00428{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m53_c00428{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00428{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mef_c00428{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md0_c00428{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m76_c00428{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00428{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00428{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m41_c00428{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00428{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00428{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00428{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00428{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m120_c00428{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me8_c00428{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m34_c00428{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m72_c00428{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mea_c00428{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00428{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md7_c00428{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00428{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m119_c00428{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00428{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m56_c00428{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00428{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m117_c00428{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m71_c00428{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m50_c00428{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00428{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00428{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m97_c00428{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m30_c00428{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m127_c00428{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m27_c00428{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00428{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m39_c00428{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mac_c00428{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00428{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00428{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m60_c00428{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m104_c00428{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m55_c00428{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00428{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00428{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m108_c00428{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m21_c00428{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m59_c00428{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00428{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00428{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m80_c00428{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00428{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00428{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md6_c00428{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00428{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m123_c00428{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m121_c00428{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m95_c00428{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m107_c00428{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.me_c00428{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00428{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00428{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m118_c00428{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m113_c00428{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m103_c00428{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m82_c00428{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00428{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m38_c00428{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00428{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m57_c00428{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00428{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mce_c00428{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me6_c00428{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m94_c00428{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m16_c00428{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m126_c00428{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);}
.mb2_c00428{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00428{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m85_c00428{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00428{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m100_c00428{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00428{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00428{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00428{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00428{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00428{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m23_c00428{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m122_c00428{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m49_c00428{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m48_c00428{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m112_c00428{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00428{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m84_c00428{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00428{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00428{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00428{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mca_c00428{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00428{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m79_c00428{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00428{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m63_c00428{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m67_c00428{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mae_c00428{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00428{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00428{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00428{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00428{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.me3_c00428{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00428{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00428{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00428{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00428{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me7_c00428{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.me1_c00428{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00428{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m17_c00428{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m99_c00428{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00428{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00428{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00428{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mba_c00428{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00428{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00428{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00428{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.md_c00428{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00428{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m14_c00428{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m86_c00428{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);}
.md5_c00428{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m44_c00428{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m102_c00428{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00428{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00428{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls0_c00428{letter-spacing:0.000000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{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__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00428{word-spacing:-6.937500px;}
.wsf_c00428{word-spacing:-0.178571px;}
.ws18_c00428{word-spacing:0.000000px;}
.ws7_c00428{word-spacing:2.625000px;}
.ws16_c00428{word-spacing:3.541779px;}
.ws6_c00428{word-spacing:5.833333px;}
.ws17_c00428{word-spacing:9.401274px;}
.ws9_c00428{word-spacing:11.875000px;}
.ws13_c00428{word-spacing:13.083095px;}
.ws1_c00428{word-spacing:16.257611px;}
.ws4_c00428{word-spacing:19.994638px;}
.wsa_c00428{word-spacing:22.142857px;}
.ws3_c00428{word-spacing:23.211796px;}
.ws11_c00428{word-spacing:24.491803px;}
.wsd_c00428{word-spacing:25.714286px;}
.ws2_c00428{word-spacing:26.428954px;}
.ws5_c00428{word-spacing:26.625000px;}
.ws12_c00428{word-spacing:28.426230px;}
.ws10_c00428{word-spacing:39.343511px;}
.wsc_c00428{word-spacing:40.000000px;}
.ws15_c00428{word-spacing:43.923664px;}
.wse_c00428{word-spacing:44.166667px;}
.ws14_c00428{word-spacing:48.503817px;}
.wsb_c00428{word-spacing:50.416667px;}
.ws8_c00428{word-spacing:134.715221px;}
._4_c00428{width:45.000000px;}
._0_c00428{width:46.994638px;}
._1_c00428{width:50.211796px;}
._3_c00428{width:53.428954px;}
._2_c00428{width:58.254692px;}
._5_c00428{width:59.285714px;}
._7_c00428{width:65.360656px;}
._6_c00428{width:70.000000px;}
._8_c00428{width:71.262295px;}
.fc0_c00428{color:transparent;}
.fs5_c00428{font-size:30.000000px;}
.fs1_c00428{font-size:54.000000px;}
.fs4_c00428{font-size:60.000000px;}
.fs3_c00428{font-size:66.000000px;}
.fs2_c00428{font-size:72.000000px;}
.fs6_c00428{font-size:78.000000px;}
.fs0_c00428{font-size:84.000000px;}
.y0_c00428{bottom:0.000000px;}
.y6a_c00428{bottom:167.700000px;}
.y36_c00428{bottom:183.600000px;}
.y35_c00428{bottom:184.950000px;}
.y69_c00428{bottom:185.400000px;}
.y34_c00428{bottom:200.100000px;}
.y68_c00428{bottom:203.100000px;}
.y67_c00428{bottom:221.400000px;}
.y33_c00428{bottom:222.900000px;}
.y66_c00428{bottom:239.100000px;}
.y32_c00428{bottom:241.200000px;}
.y65_c00428{bottom:257.100000px;}
.y31_c00428{bottom:258.900000px;}
.y64_c00428{bottom:279.300000px;}
.y30_c00428{bottom:285.150000px;}
.y63_c00428{bottom:297.300000px;}
.y2f_c00428{bottom:304.200000px;}
.y62_c00428{bottom:315.300000px;}
.y2e_c00428{bottom:321.900000px;}
.y61_c00428{bottom:337.350000px;}
.y2d_c00428{bottom:340.200000px;}
.y60_c00428{bottom:355.350000px;}
.y2c_c00428{bottom:357.900000px;}
.y5f_c00428{bottom:373.350000px;}
.y2b_c00428{bottom:376.200000px;}
.y5e_c00428{bottom:391.650000px;}
.y2a_c00428{bottom:394.200000px;}
.y29_c00428{bottom:412.200000px;}
.y5d_c00428{bottom:412.950000px;}
.y28_c00428{bottom:429.450000px;}
.y5c_c00428{bottom:430.950000px;}
.y27_c00428{bottom:447.750000px;}
.y5b_c00428{bottom:457.050000px;}
.y26_c00428{bottom:465.750000px;}
.y5a_c00428{bottom:475.800000px;}
.y25_c00428{bottom:484.500000px;}
.y59_c00428{bottom:493.800000px;}
.y24_c00428{bottom:502.500000px;}
.y58_c00428{bottom:511.800000px;}
.y23_c00428{bottom:520.200000px;}
.y57_c00428{bottom:529.800000px;}
.y22_c00428{bottom:538.200000px;}
.y56_c00428{bottom:547.500000px;}
.y21_c00428{bottom:564.450000px;}
.y55_c00428{bottom:574.200000px;}
.y20_c00428{bottom:583.200000px;}
.y54_c00428{bottom:592.200000px;}
.y53_c00428{bottom:614.400000px;}
.y1f_c00428{bottom:617.100000px;}
.y52_c00428{bottom:632.400000px;}
.y1e_c00428{bottom:636.900000px;}
.y51_c00428{bottom:650.400000px;}
.y1d_c00428{bottom:654.150000px;}
.y50_c00428{bottom:668.400000px;}
.y1c_c00428{bottom:672.150000px;}
.y4f_c00428{bottom:686.100000px;}
.y1b_c00428{bottom:689.700000px;}
.y4e_c00428{bottom:704.100000px;}
.y1a_c00428{bottom:707.700000px;}
.y4d_c00428{bottom:721.800000px;}
.y19_c00428{bottom:725.700000px;}
.y4c_c00428{bottom:739.800000px;}
.y18_c00428{bottom:743.400000px;}
.y4b_c00428{bottom:757.800000px;}
.y17_c00428{bottom:761.400000px;}
.y4a_c00428{bottom:775.800000px;}
.y16_c00428{bottom:779.400000px;}
.y49_c00428{bottom:794.100000px;}
.y15_c00428{bottom:797.400000px;}
.y48_c00428{bottom:812.100000px;}
.y14_c00428{bottom:815.400000px;}
.y47_c00428{bottom:830.100000px;}
.y13_c00428{bottom:833.100000px;}
.y46_c00428{bottom:847.800000px;}
.y12_c00428{bottom:853.950000px;}
.y45_c00428{bottom:865.800000px;}
.y11_c00428{bottom:873.000000px;}
.y44_c00428{bottom:887.100000px;}
.y10_c00428{bottom:891.000000px;}
.y43_c00428{bottom:905.100000px;}
.yf_c00428{bottom:909.000000px;}
.ye_c00428{bottom:930.900000px;}
.y42_c00428{bottom:932.100000px;}
.yd_c00428{bottom:945.000000px;}
.y41_c00428{bottom:949.950000px;}
.yc_c00428{bottom:959.700000px;}
.y40_c00428{bottom:967.650000px;}
.yb_c00428{bottom:972.600000px;}
.y3f_c00428{bottom:985.950000px;}
.ya_c00428{bottom:988.500000px;}
.y9_c00428{bottom:1001.550000px;}
.y3e_c00428{bottom:1003.650000px;}
.y8_c00428{bottom:1017.000000px;}
.y3d_c00428{bottom:1021.650000px;}
.y7_c00428{bottom:1032.900000px;}
.y3c_c00428{bottom:1039.350000px;}
.y6_c00428{bottom:1055.850000px;}
.y3b_c00428{bottom:1057.350000px;}
.y5_c00428{bottom:1073.850000px;}
.y3a_c00428{bottom:1078.950000px;}
.y39_c00428{bottom:1092.600000px;}
.y4_c00428{bottom:1100.550000px;}
.y38_c00428{bottom:1107.300000px;}
.y3_c00428{bottom:1118.550000px;}
.y37_c00428{bottom:1123.200000px;}
.y2_c00428{bottom:1146.000000px;}
.y1_c00428{bottom:1146.300000px;}
.h7_c00428{height:30.000000px;}
.h3_c00428{height:54.000000px;}
.h6_c00428{height:60.000000px;}
.h5_c00428{height:66.000000px;}
.h4_c00428{height:72.000000px;}
.h8_c00428{height:78.000000px;}
.h2_c00428{height:84.000000px;}
.h0_c00428{height:1267.919952px;}
.h1_c00428{height:1268.250000px;}
.w0_c00428{width:958.320007px;}
.w1_c00428{width:958.500000px;}
.x0_c00428{left:0.000000px;}
.x24_c00428{left:78.900000px;}
.x17_c00428{left:79.950000px;}
.x61_c00428{left:81.000000px;}
.x2b_c00428{left:93.600000px;}
.x20_c00428{left:95.250000px;}
.x3_c00428{left:97.500000px;}
.x5a_c00428{left:98.700000px;}
.x94_c00428{left:99.750000px;}
.x8f_c00428{left:100.800000px;}
.xb5_c00428{left:102.300000px;}
.x18_c00428{left:104.850000px;}
.x3b_c00428{left:107.550000px;}
.x55_c00428{left:108.750000px;}
.xb6_c00428{left:111.300000px;}
.x42_c00428{left:114.900000px;}
.xc_c00428{left:116.400000px;}
.xb2_c00428{left:117.600000px;}
.x60_c00428{left:118.950000px;}
.x4_c00428{left:120.900000px;}
.x19_c00428{left:122.850000px;}
.x70_c00428{left:124.350000px;}
.xa5_c00428{left:126.300000px;}
.x5b_c00428{left:127.500000px;}
.x3c_c00428{left:129.450000px;}
.x50_c00428{left:130.650000px;}
.xba_c00428{left:131.850000px;}
.xd_c00428{left:132.900000px;}
.x2c_c00428{left:136.050000px;}
.x80_c00428{left:137.550000px;}
.xbb_c00428{left:138.900000px;}
.x95_c00428{left:140.400000px;}
.x7b_c00428{left:143.250000px;}
.x5_c00428{left:144.600000px;}
.x66_c00428{left:146.400000px;}
.x3d_c00428{left:147.750000px;}
.x51_c00428{left:149.400000px;}
.xb3_c00428{left:150.750000px;}
.xb7_c00428{left:153.150000px;}
.x21_c00428{left:154.350000px;}
.xe_c00428{left:156.000000px;}
.x81_c00428{left:157.350000px;}
.x90_c00428{left:158.400000px;}
.xab_c00428{left:159.600000px;}
.x73_c00428{left:160.800000px;}
.x52_c00428{left:162.000000px;}
.x56_c00428{left:163.800000px;}
.xa6_c00428{left:165.150000px;}
.x49_c00428{left:167.250000px;}
.x6_c00428{left:169.800000px;}
.x62_c00428{left:171.300000px;}
.xf_c00428{left:172.500000px;}
.x6c_c00428{left:173.700000px;}
.x67_c00428{left:175.200000px;}
.x87_c00428{left:177.300000px;}
.xb8_c00428{left:178.800000px;}
.x43_c00428{left:180.000000px;}
.x8a_c00428{left:181.350000px;}
.x7_c00428{left:182.700000px;}
.xaf_c00428{left:184.200000px;}
.x1a_c00428{left:186.600000px;}
.x4a_c00428{left:187.800000px;}
.x63_c00428{left:190.050000px;}
.x68_c00428{left:191.100000px;}
.xb9_c00428{left:192.600000px;}
.x44_c00428{left:194.400000px;}
.x2d_c00428{left:195.750000px;}
.x3e_c00428{left:198.150000px;}
.x10_c00428{left:199.500000px;}
.x7e_c00428{left:201.450000px;}
.x2e_c00428{left:202.650000px;}
.x5c_c00428{left:204.900000px;}
.x82_c00428{left:206.250000px;}
.x2f_c00428{left:210.150000px;}
.x1b_c00428{left:212.100000px;}
.x4d_c00428{left:213.750000px;}
.x8b_c00428{left:215.250000px;}
.x30_c00428{left:217.050000px;}
.x8_c00428{left:219.000000px;}
.xac_c00428{left:221.550000px;}
.xbc_c00428{left:223.050000px;}
.x22_c00428{left:224.100000px;}
.xa2_c00428{left:226.050000px;}
.x1c_c00428{left:229.050000px;}
.x4e_c00428{left:230.700000px;}
.x31_c00428{left:232.050000px;}
.x83_c00428{left:234.300000px;}
.x11_c00428{left:237.300000px;}
.x32_c00428{left:239.250000px;}
.x5d_c00428{left:241.950000px;}
.xad_c00428{left:243.150000px;}
.x3f_c00428{left:244.650000px;}
.x33_c00428{left:246.450000px;}
.x64_c00428{left:247.950000px;}
.x8c_c00428{left:249.150000px;}
.x84_c00428{left:250.200000px;}
.x45_c00428{left:253.050000px;}
.xa7_c00428{left:254.100000px;}
.x9e_c00428{left:256.950000px;}
.x25_c00428{left:258.900000px;}
.xae_c00428{left:260.400000px;}
.x4b_c00428{left:261.600000px;}
.x78_c00428{left:262.800000px;}
.x74_c00428{left:263.850000px;}
.x1d_c00428{left:265.800000px;}
.x46_c00428{left:267.450000px;}
.x57_c00428{left:268.650000px;}
.x40_c00428{left:270.600000px;}
.x88_c00428{left:273.750000px;}
.x47_c00428{left:274.950000px;}
.x99_c00428{left:276.750000px;}
.x7c_c00428{left:279.000000px;}
.x53_c00428{left:280.350000px;}
.x69_c00428{left:281.400000px;}
.x34_c00428{left:282.750000px;}
.x26_c00428{left:284.400000px;}
.x1e_c00428{left:286.350000px;}
.x23_c00428{left:288.150000px;}
.x35_c00428{left:289.950000px;}
.x41_c00428{left:291.900000px;}
.x92_c00428{left:293.850000px;}
.xa3_c00428{left:295.200000px;}
.x36_c00428{left:297.450000px;}
.x71_c00428{left:298.950000px;}
.x12_c00428{left:300.300000px;}
.x9f_c00428{left:303.000000px;}
.x37_c00428{left:304.650000px;}
.x27_c00428{left:306.300000px;}
.x75_c00428{left:308.100000px;}
.x79_c00428{left:311.400000px;}
.x58_c00428{left:313.350000px;}
.x4c_c00428{left:314.550000px;}
.x13_c00428{left:316.500000px;}
.xa8_c00428{left:318.150000px;}
.xb4_c00428{left:321.450000px;}
.x9b_c00428{left:322.950000px;}
.x65_c00428{left:324.600000px;}
.x7f_c00428{left:325.650000px;}
.x1_c00428{left:326.850000px;}
.x8d_c00428{left:329.400000px;}
.x9_c00428{left:331.650000px;}
.x91_c00428{left:333.750000px;}
.x59_c00428{left:335.250000px;}
.x28_c00428{left:336.900000px;}
.x14_c00428{left:339.150000px;}
.x96_c00428{left:340.350000px;}
.x5f_c00428{left:341.400000px;}
.x85_c00428{left:343.650000px;}
.x48_c00428{left:345.450000px;}
.x38_c00428{left:347.100000px;}
.x6d_c00428{left:348.900000px;}
.x5e_c00428{left:350.550000px;}
.xb0_c00428{left:352.200000px;}
.xa_c00428{left:354.750000px;}
.x6a_c00428{left:356.100000px;}
.x6e_c00428{left:361.200000px;}
.x72_c00428{left:362.400000px;}
.x15_c00428{left:363.600000px;}
.x76_c00428{left:365.850000px;}
.x29_c00428{left:367.500000px;}
.x9c_c00428{left:369.000000px;}
.x98_c00428{left:370.050000px;}
.x9a_c00428{left:372.900000px;}
.x39_c00428{left:374.400000px;}
.x4f_c00428{left:375.600000px;}
.xa4_c00428{left:376.800000px;}
.xa9_c00428{left:378.150000px;}
.x6b_c00428{left:380.250000px;}
.x7d_c00428{left:381.600000px;}
.x9d_c00428{left:383.100000px;}
.x6f_c00428{left:386.100000px;}
.x7a_c00428{left:387.450000px;}
.x89_c00428{left:389.400000px;}
.xa0_c00428{left:390.600000px;}
.x16_c00428{left:391.650000px;}
.xaa_c00428{left:392.850000px;}
.x77_c00428{left:394.650000px;}
.x93_c00428{left:395.700000px;}
.xa1_c00428{left:396.750000px;}
.x1f_c00428{left:398.700000px;}
.x2a_c00428{left:402.000000px;}
.x3a_c00428{left:403.500000px;}
.x54_c00428{left:405.000000px;}
.xb_c00428{left:406.200000px;}
.xb1_c00428{left:407.400000px;}
.x8e_c00428{left:409.350000px;}
.x86_c00428{left:411.000000px;}
.x97_c00428{left:416.100000px;}
.xe1_c00428{left:438.150000px;}
.x146_c00428{left:439.500000px;}
.xc6_c00428{left:451.500000px;}
.x10f_c00428{left:454.200000px;}
.xe5_c00428{left:456.150000px;}
.x129_c00428{left:457.650000px;}
.x11a_c00428{left:458.850000px;}
.x13f_c00428{left:459.900000px;}
.xbd_c00428{left:466.200000px;}
.x139_c00428{left:468.450000px;}
.x149_c00428{left:470.850000px;}
.x140_c00428{left:474.600000px;}
.xe6_c00428{left:475.950000px;}
.x116_c00428{left:477.600000px;}
.xfe_c00428{left:479.850000px;}
.x133_c00428{left:481.500000px;}
.x11e_c00428{left:482.850000px;}
.x10b_c00428{left:484.500000px;}
.xf8_c00428{left:485.850000px;}
.x159_c00428{left:487.050000px;}
.x15d_c00428{left:489.900000px;}
.xec_c00428{left:491.100000px;}
.x14b_c00428{left:492.600000px;}
.xdb_c00428{left:494.550000px;}
.x117_c00428{left:495.900000px;}
.x13c_c00428{left:496.950000px;}
.x15e_c00428{left:498.600000px;}
.x11f_c00428{left:500.550000px;}
.xdc_c00428{left:502.050000px;}
.x14a_c00428{left:503.550000px;}
.x134_c00428{left:506.400000px;}
.xc7_c00428{left:508.050000px;}
.xf2_c00428{left:509.400000px;}
.x15f_c00428{left:510.600000px;}
.xed_c00428{left:513.000000px;}
.xe7_c00428{left:514.800000px;}
.xdd_c00428{left:516.450000px;}
.x124_c00428{left:520.800000px;}
.x10c_c00428{left:522.000000px;}
.xd8_c00428{left:523.800000px;}
.x110_c00428{left:526.200000px;}
.xbe_c00428{left:529.200000px;}
.xc8_c00428{left:530.400000px;}
.x104_c00428{left:532.200000px;}
.x12a_c00428{left:534.300000px;}
.xe8_c00428{left:536.400000px;}
.xc9_c00428{left:537.600000px;}
.xff_c00428{left:539.250000px;}
.x125_c00428{left:541.350000px;}
.x120_c00428{left:543.300000px;}
.xca_c00428{left:544.500000px;}
.x155_c00428{left:546.450000px;}
.xbf_c00428{left:547.500000px;}
.xe2_c00428{left:549.750000px;}
.x135_c00428{left:552.150000px;}
.x11b_c00428{left:554.550000px;}
.xf3_c00428{left:556.950000px;}
.x112_c00428{left:558.150000px;}
.xcb_c00428{left:559.650000px;}
.xee_c00428{left:561.900000px;}
.x13d_c00428{left:563.250000px;}
.xcc_c00428{left:567.150000px;}
.x14d_c00428{left:569.550000px;}
.xf4_c00428{left:572.100000px;}
.xcd_c00428{left:574.350000px;}
.x136_c00428{left:575.550000px;}
.xef_c00428{left:578.400000px;}
.x109_c00428{left:583.800000px;}
.x126_c00428{left:585.300000px;}
.x105_c00428{left:586.950000px;}
.x160_c00428{left:588.000000px;}
.x121_c00428{left:589.350000px;}
.x147_c00428{left:590.700000px;}
.x137_c00428{left:592.800000px;}
.x156_c00428{left:594.600000px;}
.xce_c00428{left:595.950000px;}
.x15a_c00428{left:597.600000px;}
.xc0_c00428{left:599.700000px;}
.x162_c00428{left:600.750000px;}
.x150_c00428{left:602.250000px;}
.x11c_c00428{left:603.900000px;}
.x145_c00428{left:605.400000px;}
.x15c_c00428{left:607.350000px;}
.x111_c00428{left:609.450000px;}
.xcf_c00428{left:610.650000px;}
.x141_c00428{left:612.000000px;}
.x12b_c00428{left:613.200000px;}
.x127_c00428{left:615.150000px;}
.xf9_c00428{left:616.950000px;}
.xd9_c00428{left:618.900000px;}
.x163_c00428{left:620.550000px;}
.x152_c00428{left:622.500000px;}
.xd0_c00428{left:624.000000px;}
.x151_c00428{left:626.250000px;}
.x12c_c00428{left:629.400000px;}
.x11d_c00428{left:631.200000px;}
.xd1_c00428{left:632.250000px;}
.xe9_c00428{left:633.300000px;}
.x131_c00428{left:635.100000px;}
.x106_c00428{left:637.050000px;}
.xd2_c00428{left:639.450000px;}
.xde_c00428{left:640.500000px;}
.xfa_c00428{left:642.150000px;}
.x13a_c00428{left:643.500000px;}
.x153_c00428{left:646.200000px;}
.xc1_c00428{left:647.550000px;}
.xf5_c00428{left:648.900000px;}
.x12d_c00428{left:650.250000px;}
.xd3_c00428{left:654.150000px;}
.x113_c00428{left:655.650000px;}
.x14e_c00428{left:658.050000px;}
.x107_c00428{left:660.150000px;}
.x132_c00428{left:662.850000px;}
.x10a_c00428{left:665.100000px;}
.x158_c00428{left:667.050000px;}
.xda_c00428{left:668.550000px;}
.x148_c00428{left:669.600000px;}
.xc2_c00428{left:671.250000px;}
.x15b_c00428{left:673.050000px;}
.x100_c00428{left:675.300000px;}
.x10d_c00428{left:677.100000px;}
.x118_c00428{left:679.200000px;}
.xd4_c00428{left:683.250000px;}
.x165_c00428{left:684.300000px;}
.x13e_c00428{left:685.650000px;}
.x13b_c00428{left:686.700000px;}
.x138_c00428{left:688.800000px;}
.xe3_c00428{left:690.450000px;}
.x12e_c00428{left:692.700000px;}
.xc3_c00428{left:693.900000px;}
.x14f_c00428{left:695.550000px;}
.x101_c00428{left:696.900000px;}
.x119_c00428{left:699.300000px;}
.xd5_c00428{left:703.050000px;}
.xdf_c00428{left:704.250000px;}
.xea_c00428{left:705.300000px;}
.xf0_c00428{left:708.000000px;}
.x114_c00428{left:710.100000px;}
.x142_c00428{left:711.750000px;}
.xfb_c00428{left:713.100000px;}
.xf6_c00428{left:714.450000px;}
.x14c_c00428{left:716.100000px;}
.x154_c00428{left:718.200000px;}
.x128_c00428{left:719.700000px;}
.x12f_c00428{left:720.750000px;}
.xc4_c00428{left:724.800000px;}
.xfc_c00428{left:726.450000px;}
.x10e_c00428{left:727.800000px;}
.x143_c00428{left:729.450000px;}
.x130_c00428{left:732.300000px;}
.xd6_c00428{left:733.650000px;}
.xe4_c00428{left:734.700000px;}
.xf1_c00428{left:736.050000px;}
.x157_c00428{left:738.600000px;}
.xf7_c00428{left:739.950000px;}
.xeb_c00428{left:742.050000px;}
.x122_c00428{left:743.250000px;}
.x161_c00428{left:745.050000px;}
.x2_c00428{left:746.250000px;}
.xfd_c00428{left:748.350000px;}
.x108_c00428{left:751.200000px;}
.x102_c00428{left:752.400000px;}
.xd7_c00428{left:755.250000px;}
.xc5_c00428{left:759.000000px;}
.xe0_c00428{left:761.100000px;}
.x144_c00428{left:762.900000px;}
.x103_c00428{left:765.750000px;}
.x123_c00428{left:766.950000px;}
.x164_c00428{left:768.900000px;}
.x115_c00428{left:772.350000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws0_c00428{word-spacing:-6.166667pt;}
.wsf_c00428{word-spacing:-0.158730pt;}
.ws18_c00428{word-spacing:0.000000pt;}
.ws7_c00428{word-spacing:2.333333pt;}
.ws16_c00428{word-spacing:3.148248pt;}
.ws6_c00428{word-spacing:5.185185pt;}
.ws17_c00428{word-spacing:8.356688pt;}
.ws9_c00428{word-spacing:10.555556pt;}
.ws13_c00428{word-spacing:11.629417pt;}
.ws1_c00428{word-spacing:14.451210pt;}
.ws4_c00428{word-spacing:17.773012pt;}
.wsa_c00428{word-spacing:19.682540pt;}
.ws3_c00428{word-spacing:20.632708pt;}
.ws11_c00428{word-spacing:21.770492pt;}
.wsd_c00428{word-spacing:22.857143pt;}
.ws2_c00428{word-spacing:23.492404pt;}
.ws5_c00428{word-spacing:23.666667pt;}
.ws12_c00428{word-spacing:25.267760pt;}
.ws10_c00428{word-spacing:34.972010pt;}
.wsc_c00428{word-spacing:35.555556pt;}
.ws15_c00428{word-spacing:39.043257pt;}
.wse_c00428{word-spacing:39.259259pt;}
.ws14_c00428{word-spacing:43.114504pt;}
.wsb_c00428{word-spacing:44.814815pt;}
.ws8_c00428{word-spacing:119.746863pt;}
._4_c00428{width:40.000000pt;}
._0_c00428{width:41.773012pt;}
._1_c00428{width:44.632708pt;}
._3_c00428{width:47.492404pt;}
._2_c00428{width:51.781948pt;}
._5_c00428{width:52.698413pt;}
._7_c00428{width:58.098361pt;}
._6_c00428{width:62.222222pt;}
._8_c00428{width:63.344262pt;}
.fs5_c00428{font-size:26.666667pt;}
.fs1_c00428{font-size:48.000000pt;}
.fs4_c00428{font-size:53.333333pt;}
.fs3_c00428{font-size:58.666667pt;}
.fs2_c00428{font-size:64.000000pt;}
.fs6_c00428{font-size:69.333333pt;}
.fs0_c00428{font-size:74.666667pt;}
.y0_c00428{bottom:0.000000pt;}
.y6a_c00428{bottom:149.066667pt;}
.y36_c00428{bottom:163.200000pt;}
.y35_c00428{bottom:164.400000pt;}
.y69_c00428{bottom:164.800000pt;}
.y34_c00428{bottom:177.866667pt;}
.y68_c00428{bottom:180.533333pt;}
.y67_c00428{bottom:196.800000pt;}
.y33_c00428{bottom:198.133333pt;}
.y66_c00428{bottom:212.533333pt;}
.y32_c00428{bottom:214.400000pt;}
.y65_c00428{bottom:228.533333pt;}
.y31_c00428{bottom:230.133333pt;}
.y64_c00428{bottom:248.266667pt;}
.y30_c00428{bottom:253.466667pt;}
.y63_c00428{bottom:264.266667pt;}
.y2f_c00428{bottom:270.400000pt;}
.y62_c00428{bottom:280.266667pt;}
.y2e_c00428{bottom:286.133333pt;}
.y61_c00428{bottom:299.866667pt;}
.y2d_c00428{bottom:302.400000pt;}
.y60_c00428{bottom:315.866667pt;}
.y2c_c00428{bottom:318.133333pt;}
.y5f_c00428{bottom:331.866667pt;}
.y2b_c00428{bottom:334.400000pt;}
.y5e_c00428{bottom:348.133333pt;}
.y2a_c00428{bottom:350.400000pt;}
.y29_c00428{bottom:366.400000pt;}
.y5d_c00428{bottom:367.066667pt;}
.y28_c00428{bottom:381.733333pt;}
.y5c_c00428{bottom:383.066667pt;}
.y27_c00428{bottom:398.000000pt;}
.y5b_c00428{bottom:406.266667pt;}
.y26_c00428{bottom:414.000000pt;}
.y5a_c00428{bottom:422.933333pt;}
.y25_c00428{bottom:430.666667pt;}
.y59_c00428{bottom:438.933333pt;}
.y24_c00428{bottom:446.666667pt;}
.y58_c00428{bottom:454.933333pt;}
.y23_c00428{bottom:462.400000pt;}
.y57_c00428{bottom:470.933333pt;}
.y22_c00428{bottom:478.400000pt;}
.y56_c00428{bottom:486.666667pt;}
.y21_c00428{bottom:501.733333pt;}
.y55_c00428{bottom:510.400000pt;}
.y20_c00428{bottom:518.400000pt;}
.y54_c00428{bottom:526.400000pt;}
.y53_c00428{bottom:546.133333pt;}
.y1f_c00428{bottom:548.533333pt;}
.y52_c00428{bottom:562.133333pt;}
.y1e_c00428{bottom:566.133333pt;}
.y51_c00428{bottom:578.133333pt;}
.y1d_c00428{bottom:581.466667pt;}
.y50_c00428{bottom:594.133333pt;}
.y1c_c00428{bottom:597.466667pt;}
.y4f_c00428{bottom:609.866667pt;}
.y1b_c00428{bottom:613.066667pt;}
.y4e_c00428{bottom:625.866667pt;}
.y1a_c00428{bottom:629.066667pt;}
.y4d_c00428{bottom:641.600000pt;}
.y19_c00428{bottom:645.066667pt;}
.y4c_c00428{bottom:657.600000pt;}
.y18_c00428{bottom:660.800000pt;}
.y4b_c00428{bottom:673.600000pt;}
.y17_c00428{bottom:676.800000pt;}
.y4a_c00428{bottom:689.600000pt;}
.y16_c00428{bottom:692.800000pt;}
.y49_c00428{bottom:705.866667pt;}
.y15_c00428{bottom:708.800000pt;}
.y48_c00428{bottom:721.866667pt;}
.y14_c00428{bottom:724.800000pt;}
.y47_c00428{bottom:737.866667pt;}
.y13_c00428{bottom:740.533333pt;}
.y46_c00428{bottom:753.600000pt;}
.y12_c00428{bottom:759.066667pt;}
.y45_c00428{bottom:769.600000pt;}
.y11_c00428{bottom:776.000000pt;}
.y44_c00428{bottom:788.533333pt;}
.y10_c00428{bottom:792.000000pt;}
.y43_c00428{bottom:804.533333pt;}
.yf_c00428{bottom:808.000000pt;}
.ye_c00428{bottom:827.466667pt;}
.y42_c00428{bottom:828.533333pt;}
.yd_c00428{bottom:840.000000pt;}
.y41_c00428{bottom:844.400000pt;}
.yc_c00428{bottom:853.066667pt;}
.y40_c00428{bottom:860.133333pt;}
.yb_c00428{bottom:864.533333pt;}
.y3f_c00428{bottom:876.400000pt;}
.ya_c00428{bottom:878.666667pt;}
.y9_c00428{bottom:890.266667pt;}
.y3e_c00428{bottom:892.133333pt;}
.y8_c00428{bottom:904.000000pt;}
.y3d_c00428{bottom:908.133333pt;}
.y7_c00428{bottom:918.133333pt;}
.y3c_c00428{bottom:923.866667pt;}
.y6_c00428{bottom:938.533333pt;}
.y3b_c00428{bottom:939.866667pt;}
.y5_c00428{bottom:954.533333pt;}
.y3a_c00428{bottom:959.066667pt;}
.y39_c00428{bottom:971.200000pt;}
.y4_c00428{bottom:978.266667pt;}
.y38_c00428{bottom:984.266667pt;}
.y3_c00428{bottom:994.266667pt;}
.y37_c00428{bottom:998.400000pt;}
.y2_c00428{bottom:1018.666667pt;}
.y1_c00428{bottom:1018.933333pt;}
.h7_c00428{height:26.666667pt;}
.h3_c00428{height:48.000000pt;}
.h6_c00428{height:53.333333pt;}
.h5_c00428{height:58.666667pt;}
.h4_c00428{height:64.000000pt;}
.h8_c00428{height:69.333333pt;}
.h2_c00428{height:74.666667pt;}
.h0_c00428{height:1127.039957pt;}
.h1_c00428{height:1127.333333pt;}
.w0_c00428{width:851.840007pt;}
.w1_c00428{width:852.000000pt;}
.x0_c00428{left:0.000000pt;}
.x24_c00428{left:70.133333pt;}
.x17_c00428{left:71.066667pt;}
.x61_c00428{left:72.000000pt;}
.x2b_c00428{left:83.200000pt;}
.x20_c00428{left:84.666667pt;}
.x3_c00428{left:86.666667pt;}
.x5a_c00428{left:87.733333pt;}
.x94_c00428{left:88.666667pt;}
.x8f_c00428{left:89.600000pt;}
.xb5_c00428{left:90.933333pt;}
.x18_c00428{left:93.200000pt;}
.x3b_c00428{left:95.600000pt;}
.x55_c00428{left:96.666667pt;}
.xb6_c00428{left:98.933333pt;}
.x42_c00428{left:102.133333pt;}
.xc_c00428{left:103.466667pt;}
.xb2_c00428{left:104.533333pt;}
.x60_c00428{left:105.733333pt;}
.x4_c00428{left:107.466667pt;}
.x19_c00428{left:109.200000pt;}
.x70_c00428{left:110.533333pt;}
.xa5_c00428{left:112.266667pt;}
.x5b_c00428{left:113.333333pt;}
.x3c_c00428{left:115.066667pt;}
.x50_c00428{left:116.133333pt;}
.xba_c00428{left:117.200000pt;}
.xd_c00428{left:118.133333pt;}
.x2c_c00428{left:120.933333pt;}
.x80_c00428{left:122.266667pt;}
.xbb_c00428{left:123.466667pt;}
.x95_c00428{left:124.800000pt;}
.x7b_c00428{left:127.333333pt;}
.x5_c00428{left:128.533333pt;}
.x66_c00428{left:130.133333pt;}
.x3d_c00428{left:131.333333pt;}
.x51_c00428{left:132.800000pt;}
.xb3_c00428{left:134.000000pt;}
.xb7_c00428{left:136.133333pt;}
.x21_c00428{left:137.200000pt;}
.xe_c00428{left:138.666667pt;}
.x81_c00428{left:139.866667pt;}
.x90_c00428{left:140.800000pt;}
.xab_c00428{left:141.866667pt;}
.x73_c00428{left:142.933333pt;}
.x52_c00428{left:144.000000pt;}
.x56_c00428{left:145.600000pt;}
.xa6_c00428{left:146.800000pt;}
.x49_c00428{left:148.666667pt;}
.x6_c00428{left:150.933333pt;}
.x62_c00428{left:152.266667pt;}
.xf_c00428{left:153.333333pt;}
.x6c_c00428{left:154.400000pt;}
.x67_c00428{left:155.733333pt;}
.x87_c00428{left:157.600000pt;}
.xb8_c00428{left:158.933333pt;}
.x43_c00428{left:160.000000pt;}
.x8a_c00428{left:161.200000pt;}
.x7_c00428{left:162.400000pt;}
.xaf_c00428{left:163.733333pt;}
.x1a_c00428{left:165.866667pt;}
.x4a_c00428{left:166.933333pt;}
.x63_c00428{left:168.933333pt;}
.x68_c00428{left:169.866667pt;}
.xb9_c00428{left:171.200000pt;}
.x44_c00428{left:172.800000pt;}
.x2d_c00428{left:174.000000pt;}
.x3e_c00428{left:176.133333pt;}
.x10_c00428{left:177.333333pt;}
.x7e_c00428{left:179.066667pt;}
.x2e_c00428{left:180.133333pt;}
.x5c_c00428{left:182.133333pt;}
.x82_c00428{left:183.333333pt;}
.x2f_c00428{left:186.800000pt;}
.x1b_c00428{left:188.533333pt;}
.x4d_c00428{left:190.000000pt;}
.x8b_c00428{left:191.333333pt;}
.x30_c00428{left:192.933333pt;}
.x8_c00428{left:194.666667pt;}
.xac_c00428{left:196.933333pt;}
.xbc_c00428{left:198.266667pt;}
.x22_c00428{left:199.200000pt;}
.xa2_c00428{left:200.933333pt;}
.x1c_c00428{left:203.600000pt;}
.x4e_c00428{left:205.066667pt;}
.x31_c00428{left:206.266667pt;}
.x83_c00428{left:208.266667pt;}
.x11_c00428{left:210.933333pt;}
.x32_c00428{left:212.666667pt;}
.x5d_c00428{left:215.066667pt;}
.xad_c00428{left:216.133333pt;}
.x3f_c00428{left:217.466667pt;}
.x33_c00428{left:219.066667pt;}
.x64_c00428{left:220.400000pt;}
.x8c_c00428{left:221.466667pt;}
.x84_c00428{left:222.400000pt;}
.x45_c00428{left:224.933333pt;}
.xa7_c00428{left:225.866667pt;}
.x9e_c00428{left:228.400000pt;}
.x25_c00428{left:230.133333pt;}
.xae_c00428{left:231.466667pt;}
.x4b_c00428{left:232.533333pt;}
.x78_c00428{left:233.600000pt;}
.x74_c00428{left:234.533333pt;}
.x1d_c00428{left:236.266667pt;}
.x46_c00428{left:237.733333pt;}
.x57_c00428{left:238.800000pt;}
.x40_c00428{left:240.533333pt;}
.x88_c00428{left:243.333333pt;}
.x47_c00428{left:244.400000pt;}
.x99_c00428{left:246.000000pt;}
.x7c_c00428{left:248.000000pt;}
.x53_c00428{left:249.200000pt;}
.x69_c00428{left:250.133333pt;}
.x34_c00428{left:251.333333pt;}
.x26_c00428{left:252.800000pt;}
.x1e_c00428{left:254.533333pt;}
.x23_c00428{left:256.133333pt;}
.x35_c00428{left:257.733333pt;}
.x41_c00428{left:259.466667pt;}
.x92_c00428{left:261.200000pt;}
.xa3_c00428{left:262.400000pt;}
.x36_c00428{left:264.400000pt;}
.x71_c00428{left:265.733333pt;}
.x12_c00428{left:266.933333pt;}
.x9f_c00428{left:269.333333pt;}
.x37_c00428{left:270.800000pt;}
.x27_c00428{left:272.266667pt;}
.x75_c00428{left:273.866667pt;}
.x79_c00428{left:276.800000pt;}
.x58_c00428{left:278.533333pt;}
.x4c_c00428{left:279.600000pt;}
.x13_c00428{left:281.333333pt;}
.xa8_c00428{left:282.800000pt;}
.xb4_c00428{left:285.733333pt;}
.x9b_c00428{left:287.066667pt;}
.x65_c00428{left:288.533333pt;}
.x7f_c00428{left:289.466667pt;}
.x1_c00428{left:290.533333pt;}
.x8d_c00428{left:292.800000pt;}
.x9_c00428{left:294.800000pt;}
.x91_c00428{left:296.666667pt;}
.x59_c00428{left:298.000000pt;}
.x28_c00428{left:299.466667pt;}
.x14_c00428{left:301.466667pt;}
.x96_c00428{left:302.533333pt;}
.x5f_c00428{left:303.466667pt;}
.x85_c00428{left:305.466667pt;}
.x48_c00428{left:307.066667pt;}
.x38_c00428{left:308.533333pt;}
.x6d_c00428{left:310.133333pt;}
.x5e_c00428{left:311.600000pt;}
.xb0_c00428{left:313.066667pt;}
.xa_c00428{left:315.333333pt;}
.x6a_c00428{left:316.533333pt;}
.x6e_c00428{left:321.066667pt;}
.x72_c00428{left:322.133333pt;}
.x15_c00428{left:323.200000pt;}
.x76_c00428{left:325.200000pt;}
.x29_c00428{left:326.666667pt;}
.x9c_c00428{left:328.000000pt;}
.x98_c00428{left:328.933333pt;}
.x9a_c00428{left:331.466667pt;}
.x39_c00428{left:332.800000pt;}
.x4f_c00428{left:333.866667pt;}
.xa4_c00428{left:334.933333pt;}
.xa9_c00428{left:336.133333pt;}
.x6b_c00428{left:338.000000pt;}
.x7d_c00428{left:339.200000pt;}
.x9d_c00428{left:340.533333pt;}
.x6f_c00428{left:343.200000pt;}
.x7a_c00428{left:344.400000pt;}
.x89_c00428{left:346.133333pt;}
.xa0_c00428{left:347.200000pt;}
.x16_c00428{left:348.133333pt;}
.xaa_c00428{left:349.200000pt;}
.x77_c00428{left:350.800000pt;}
.x93_c00428{left:351.733333pt;}
.xa1_c00428{left:352.666667pt;}
.x1f_c00428{left:354.400000pt;}
.x2a_c00428{left:357.333333pt;}
.x3a_c00428{left:358.666667pt;}
.x54_c00428{left:360.000000pt;}
.xb_c00428{left:361.066667pt;}
.xb1_c00428{left:362.133333pt;}
.x8e_c00428{left:363.866667pt;}
.x86_c00428{left:365.333333pt;}
.x97_c00428{left:369.866667pt;}
.xe1_c00428{left:389.466667pt;}
.x146_c00428{left:390.666667pt;}
.xc6_c00428{left:401.333333pt;}
.x10f_c00428{left:403.733333pt;}
.xe5_c00428{left:405.466667pt;}
.x129_c00428{left:406.800000pt;}
.x11a_c00428{left:407.866667pt;}
.x13f_c00428{left:408.800000pt;}
.xbd_c00428{left:414.400000pt;}
.x139_c00428{left:416.400000pt;}
.x149_c00428{left:418.533333pt;}
.x140_c00428{left:421.866667pt;}
.xe6_c00428{left:423.066667pt;}
.x116_c00428{left:424.533333pt;}
.xfe_c00428{left:426.533333pt;}
.x133_c00428{left:428.000000pt;}
.x11e_c00428{left:429.200000pt;}
.x10b_c00428{left:430.666667pt;}
.xf8_c00428{left:431.866667pt;}
.x159_c00428{left:432.933333pt;}
.x15d_c00428{left:435.466667pt;}
.xec_c00428{left:436.533333pt;}
.x14b_c00428{left:437.866667pt;}
.xdb_c00428{left:439.600000pt;}
.x117_c00428{left:440.800000pt;}
.x13c_c00428{left:441.733333pt;}
.x15e_c00428{left:443.200000pt;}
.x11f_c00428{left:444.933333pt;}
.xdc_c00428{left:446.266667pt;}
.x14a_c00428{left:447.600000pt;}
.x134_c00428{left:450.133333pt;}
.xc7_c00428{left:451.600000pt;}
.xf2_c00428{left:452.800000pt;}
.x15f_c00428{left:453.866667pt;}
.xed_c00428{left:456.000000pt;}
.xe7_c00428{left:457.600000pt;}
.xdd_c00428{left:459.066667pt;}
.x124_c00428{left:462.933333pt;}
.x10c_c00428{left:464.000000pt;}
.xd8_c00428{left:465.600000pt;}
.x110_c00428{left:467.733333pt;}
.xbe_c00428{left:470.400000pt;}
.xc8_c00428{left:471.466667pt;}
.x104_c00428{left:473.066667pt;}
.x12a_c00428{left:474.933333pt;}
.xe8_c00428{left:476.800000pt;}
.xc9_c00428{left:477.866667pt;}
.xff_c00428{left:479.333333pt;}
.x125_c00428{left:481.200000pt;}
.x120_c00428{left:482.933333pt;}
.xca_c00428{left:484.000000pt;}
.x155_c00428{left:485.733333pt;}
.xbf_c00428{left:486.666667pt;}
.xe2_c00428{left:488.666667pt;}
.x135_c00428{left:490.800000pt;}
.x11b_c00428{left:492.933333pt;}
.xf3_c00428{left:495.066667pt;}
.x112_c00428{left:496.133333pt;}
.xcb_c00428{left:497.466667pt;}
.xee_c00428{left:499.466667pt;}
.x13d_c00428{left:500.666667pt;}
.xcc_c00428{left:504.133333pt;}
.x14d_c00428{left:506.266667pt;}
.xf4_c00428{left:508.533333pt;}
.xcd_c00428{left:510.533333pt;}
.x136_c00428{left:511.600000pt;}
.xef_c00428{left:514.133333pt;}
.x109_c00428{left:518.933333pt;}
.x126_c00428{left:520.266667pt;}
.x105_c00428{left:521.733333pt;}
.x160_c00428{left:522.666667pt;}
.x121_c00428{left:523.866667pt;}
.x147_c00428{left:525.066667pt;}
.x137_c00428{left:526.933333pt;}
.x156_c00428{left:528.533333pt;}
.xce_c00428{left:529.733333pt;}
.x15a_c00428{left:531.200000pt;}
.xc0_c00428{left:533.066667pt;}
.x162_c00428{left:534.000000pt;}
.x150_c00428{left:535.333333pt;}
.x11c_c00428{left:536.800000pt;}
.x145_c00428{left:538.133333pt;}
.x15c_c00428{left:539.866667pt;}
.x111_c00428{left:541.733333pt;}
.xcf_c00428{left:542.800000pt;}
.x141_c00428{left:544.000000pt;}
.x12b_c00428{left:545.066667pt;}
.x127_c00428{left:546.800000pt;}
.xf9_c00428{left:548.400000pt;}
.xd9_c00428{left:550.133333pt;}
.x163_c00428{left:551.600000pt;}
.x152_c00428{left:553.333333pt;}
.xd0_c00428{left:554.666667pt;}
.x151_c00428{left:556.666667pt;}
.x12c_c00428{left:559.466667pt;}
.x11d_c00428{left:561.066667pt;}
.xd1_c00428{left:562.000000pt;}
.xe9_c00428{left:562.933333pt;}
.x131_c00428{left:564.533333pt;}
.x106_c00428{left:566.266667pt;}
.xd2_c00428{left:568.400000pt;}
.xde_c00428{left:569.333333pt;}
.xfa_c00428{left:570.800000pt;}
.x13a_c00428{left:572.000000pt;}
.x153_c00428{left:574.400000pt;}
.xc1_c00428{left:575.600000pt;}
.xf5_c00428{left:576.800000pt;}
.x12d_c00428{left:578.000000pt;}
.xd3_c00428{left:581.466667pt;}
.x113_c00428{left:582.800000pt;}
.x14e_c00428{left:584.933333pt;}
.x107_c00428{left:586.800000pt;}
.x132_c00428{left:589.200000pt;}
.x10a_c00428{left:591.200000pt;}
.x158_c00428{left:592.933333pt;}
.xda_c00428{left:594.266667pt;}
.x148_c00428{left:595.200000pt;}
.xc2_c00428{left:596.666667pt;}
.x15b_c00428{left:598.266667pt;}
.x100_c00428{left:600.266667pt;}
.x10d_c00428{left:601.866667pt;}
.x118_c00428{left:603.733333pt;}
.xd4_c00428{left:607.333333pt;}
.x165_c00428{left:608.266667pt;}
.x13e_c00428{left:609.466667pt;}
.x13b_c00428{left:610.400000pt;}
.x138_c00428{left:612.266667pt;}
.xe3_c00428{left:613.733333pt;}
.x12e_c00428{left:615.733333pt;}
.xc3_c00428{left:616.800000pt;}
.x14f_c00428{left:618.266667pt;}
.x101_c00428{left:619.466667pt;}
.x119_c00428{left:621.600000pt;}
.xd5_c00428{left:624.933333pt;}
.xdf_c00428{left:626.000000pt;}
.xea_c00428{left:626.933333pt;}
.xf0_c00428{left:629.333333pt;}
.x114_c00428{left:631.200000pt;}
.x142_c00428{left:632.666667pt;}
.xfb_c00428{left:633.866667pt;}
.xf6_c00428{left:635.066667pt;}
.x14c_c00428{left:636.533333pt;}
.x154_c00428{left:638.400000pt;}
.x128_c00428{left:639.733333pt;}
.x12f_c00428{left:640.666667pt;}
.xc4_c00428{left:644.266667pt;}
.xfc_c00428{left:645.733333pt;}
.x10e_c00428{left:646.933333pt;}
.x143_c00428{left:648.400000pt;}
.x130_c00428{left:650.933333pt;}
.xd6_c00428{left:652.133333pt;}
.xe4_c00428{left:653.066667pt;}
.xf1_c00428{left:654.266667pt;}
.x157_c00428{left:656.533333pt;}
.xf7_c00428{left:657.733333pt;}
.xeb_c00428{left:659.600000pt;}
.x122_c00428{left:660.666667pt;}
.x161_c00428{left:662.266667pt;}
.x2_c00428{left:663.333333pt;}
.xfd_c00428{left:665.200000pt;}
.x108_c00428{left:667.733333pt;}
.x102_c00428{left:668.800000pt;}
.xd7_c00428{left:671.333333pt;}
.xc5_c00428{left:674.666667pt;}
.xe0_c00428{left:676.533333pt;}
.x144_c00428{left:678.133333pt;}
.x103_c00428{left:680.666667pt;}
.x123_c00428{left:681.733333pt;}
.x164_c00428{left:683.466667pt;}
.x115_c00428{left:686.533333pt;}
}





/* 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_c00429 {
    display:none;
  }
  .loading-indicator_c00429.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00429 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_c00429 { 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_c00429" -> "#page-container .classname_c00429")
 */
.pf_c00429 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00429 { /* 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_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00429 { /* 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_c00429 { /* 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_c00429 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00429 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00429 {overflow:visible;}
  }
}
.c_c00429 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00429 { /* 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_c00429:after { /* webkit #35443 */
  content: '';
}
.t_c00429:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00429 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 */
}
.__c00429 { /* 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_c00429 { /* info for Javascript */
  display:none;
}
.l_c00429 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00429 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00429 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00429: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_c00429 {
    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_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00429.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_c00429 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00429;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.000000;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;}
.m21_c00429{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m122_c00429{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m129_c00429{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m109_c00429{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m62_c00429{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me9_c00429{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00429{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me2_c00429{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00429{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m79_c00429{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m84_c00429{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m106_c00429{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m38_c00429{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00429{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00429{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m12_c00429{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00429{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m73_c00429{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m42_c00429{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mef_c00429{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m44_c00429{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00429{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m108_c00429{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m121_c00429{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00429{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00429{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me8_c00429{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.md_c00429{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me3_c00429{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00429{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m43_c00429{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m40_c00429{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00429{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m33_c00429{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m89_c00429{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00429{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00429{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00429{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.me6_c00429{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00429{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00429{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m37_c00429{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00429{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mff_c00429{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m35_c00429{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00429{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me4_c00429{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m47_c00429{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m32_c00429{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00429{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00429{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m53_c00429{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.me5_c00429{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m126_c00429{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mde_c00429{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00429{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00429{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m77_c00429{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00429{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00429{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m65_c00429{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00429{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00429{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00429{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00429{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m50_c00429{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m97_c00429{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m99_c00429{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00429{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00429{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mad_c00429{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00429{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md1_c00429{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00429{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00429{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00429{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00429{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m49_c00429{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00429{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00429{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00429{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m31_c00429{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00429{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00429{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00429{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00429{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m25_c00429{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00429{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m96_c00429{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00429{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m102_c00429{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma_c00429{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m70_c00429{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.md4_c00429{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00429{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00429{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m16_c00429{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00429{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m115_c00429{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m41_c00429{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m55_c00429{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m39_c00429{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m128_c00429{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00429{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md8_c00429{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00429{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m24_c00429{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md2_c00429{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00429{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7_c00429{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.maa_c00429{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m66_c00429{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00429{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00429{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m64_c00429{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m26_c00429{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00429{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00429{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m11_c00429{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.me_c00429{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00429{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m54_c00429{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00429{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00429{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m101_c00429{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00429{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m78_c00429{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m46_c00429{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me7_c00429{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mca_c00429{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.md3_c00429{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00429{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m63_c00429{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf_c00429{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m58_c00429{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m94_c00429{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m59_c00429{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc_c00429{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m23_c00429{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00429{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m116_c00429{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00429{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m17_c00429{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00429{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00429{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md0_c00429{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m76_c00429{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00429{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m14_c00429{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m95_c00429{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00429{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00429{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m114_c00429{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m18_c00429{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m19_c00429{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb_c00429{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m74_c00429{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m83_c00429{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m61_c00429{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00429{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m85_c00429{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00429{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00429{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00429{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00429{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.meb_c00429{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m112_c00429{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m57_c00429{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m60_c00429{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5_c00429{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00429{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00429{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m127_c00429{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m125_c00429{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00429{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mda_c00429{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mab_c00429{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m123_c00429{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00429{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m75_c00429{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00429{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m51_c00429{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00429{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m13_c00429{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00429{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m119_c00429{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00429{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m82_c00429{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m105_c00429{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00429{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m113_c00429{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00429{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00429{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00429{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00429{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00429{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m56_c00429{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8_c00429{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mae_c00429{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m20_c00429{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9_c00429{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m88_c00429{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m30_c00429{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.med_c00429{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00429{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00429{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mac_c00429{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mce_c00429{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m71_c00429{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00429{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00429{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00429{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mec_c00429{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00429{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m98_c00429{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00429{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00429{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00429{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00429{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m45_c00429{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00429{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m111_c00429{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00429{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m107_c00429{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00429{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.md5_c00429{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md6_c00429{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m15_c00429{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00429{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m81_c00429{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.maf_c00429{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m124_c00429{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00429{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m80_c00429{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00429{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);}
.m48_c00429{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m118_c00429{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m27_c00429{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.me1_c00429{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m87_c00429{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m86_c00429{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m68_c00429{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00429{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00429{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m10_c00429{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m110_c00429{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m29_c00429{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00429{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m69_c00429{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00429{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m28_c00429{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m117_c00429{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00429{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m120_c00429{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00429{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m91_c00429{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.md9_c00429{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00429{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m93_c00429{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m103_c00429{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m92_c00429{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m22_c00429{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md7_c00429{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m100_c00429{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00429{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00429{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00429{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m52_c00429{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mba_c00429{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00429{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00429{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00429{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00429{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m67_c00429{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m90_c00429{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mea_c00429{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.me0_c00429{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00429{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00429{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m36_c00429{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00429{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m72_c00429{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00429{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mee_c00429{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00429{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m104_c00429{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00429{transform:matrix(0.388750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00429{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00429{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m34_c00429{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00429{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00429{transform:matrix(16.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(16.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(16.131500,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls0_c00429{letter-spacing:0.000000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{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__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00429{word-spacing:-22.108280px;}
.ws8_c00429{word-spacing:-11.222712px;}
.ws9_c00429{word-spacing:-9.722222px;}
.ws5_c00429{word-spacing:-8.809524px;}
.ws4_c00429{word-spacing:-3.600724px;}
.wsa_c00429{word-spacing:0.000000px;}
.ws0_c00429{word-spacing:4.488550px;}
.ws3_c00429{word-spacing:6.458515px;}
.ws6_c00429{word-spacing:7.925501px;}
.ws2_c00429{word-spacing:51.535714px;}
.ws1_c00429{word-spacing:55.090909px;}
.fc0_c00429{color:transparent;}
.fs6_c00429{font-size:30.000000px;}
.fs7_c00429{font-size:36.000000px;}
.fs8_c00429{font-size:42.000000px;}
.fs5_c00429{font-size:54.000000px;}
.fs3_c00429{font-size:60.000000px;}
.fs2_c00429{font-size:66.000000px;}
.fs4_c00429{font-size:72.000000px;}
.fs0_c00429{font-size:78.000000px;}
.fs1_c00429{font-size:84.000000px;}
.y0_c00429{bottom:0.000000px;}
.y72_c00429{bottom:183.600000px;}
.y71_c00429{bottom:190.800000px;}
.y3a_c00429{bottom:202.650000px;}
.y70_c00429{bottom:205.500000px;}
.y6f_c00429{bottom:218.850000px;}
.y39_c00429{bottom:226.350000px;}
.y6e_c00429{bottom:233.550000px;}
.y38_c00429{bottom:237.900000px;}
.y6d_c00429{bottom:247.200000px;}
.y37_c00429{bottom:255.900000px;}
.y6c_c00429{bottom:261.600000px;}
.y36_c00429{bottom:273.150000px;}
.y6b_c00429{bottom:276.000000px;}
.y6a_c00429{bottom:290.100000px;}
.y35_c00429{bottom:290.400000px;}
.y69_c00429{bottom:304.500000px;}
.y34_c00429{bottom:308.100000px;}
.y68_c00429{bottom:318.900000px;}
.y33_c00429{bottom:325.350000px;}
.y67_c00429{bottom:333.450000px;}
.y32_c00429{bottom:342.600000px;}
.y66_c00429{bottom:348.150000px;}
.y31_c00429{bottom:359.550000px;}
.y65_c00429{bottom:362.550000px;}
.y30_c00429{bottom:376.800000px;}
.y64_c00429{bottom:383.100000px;}
.y2f_c00429{bottom:394.050000px;}
.y62_c00429{bottom:409.350000px;}
.y2e_c00429{bottom:411.750000px;}
.y61_c00429{bottom:428.400000px;}
.y2d_c00429{bottom:429.750000px;}
.y60_c00429{bottom:445.200000px;}
.y2c_c00429{bottom:447.750000px;}
.y5f_c00429{bottom:462.900000px;}
.y2b_c00429{bottom:468.300000px;}
.y5e_c00429{bottom:480.900000px;}
.y2a_c00429{bottom:482.700000px;}
.y29_c00429{bottom:496.800000px;}
.y5d_c00429{bottom:499.650000px;}
.y28_c00429{bottom:511.200000px;}
.y5c_c00429{bottom:516.900000px;}
.y27_c00429{bottom:525.900000px;}
.y5b_c00429{bottom:534.600000px;}
.y26_c00429{bottom:540.000000px;}
.y25_c00429{bottom:554.100000px;}
.y5a_c00429{bottom:556.500000px;}
.y24_c00429{bottom:568.350000px;}
.y63_c00429{bottom:571.650000px;}
.y59_c00429{bottom:574.200000px;}
.y23_c00429{bottom:582.750000px;}
.y22_c00429{bottom:594.300000px;}
.y21_c00429{bottom:596.400000px;}
.y20_c00429{bottom:610.500000px;}
.y58_c00429{bottom:614.100000px;}
.y1f_c00429{bottom:624.900000px;}
.y57_c00429{bottom:631.800000px;}
.y1e_c00429{bottom:639.300000px;}
.y56_c00429{bottom:650.100000px;}
.y3b_c00429{bottom:652.650000px;}
.y1d_c00429{bottom:653.700000px;}
.y55_c00429{bottom:667.800000px;}
.y1c_c00429{bottom:668.100000px;}
.y1b_c00429{bottom:682.200000px;}
.y54_c00429{bottom:690.150000px;}
.y1a_c00429{bottom:697.350000px;}
.y53_c00429{bottom:707.400000px;}
.y19_c00429{bottom:717.600000px;}
.y52_c00429{bottom:733.650000px;}
.y18_c00429{bottom:735.300000px;}
.y51_c00429{bottom:751.650000px;}
.y17_c00429{bottom:753.000000px;}
.y50_c00429{bottom:769.200000px;}
.y16_c00429{bottom:771.000000px;}
.y4f_c00429{bottom:787.200000px;}
.y15_c00429{bottom:788.700000px;}
.y4e_c00429{bottom:804.900000px;}
.y14_c00429{bottom:806.400000px;}
.y13_c00429{bottom:828.300000px;}
.y4d_c00429{bottom:831.600000px;}
.y12_c00429{bottom:846.300000px;}
.y4c_c00429{bottom:849.600000px;}
.y11_c00429{bottom:864.300000px;}
.y4b_c00429{bottom:867.600000px;}
.y10_c00429{bottom:882.000000px;}
.y4a_c00429{bottom:885.600000px;}
.yf_c00429{bottom:900.000000px;}
.y49_c00429{bottom:903.300000px;}
.ye_c00429{bottom:917.700000px;}
.y48_c00429{bottom:921.600000px;}
.yd_c00429{bottom:935.400000px;}
.y47_c00429{bottom:943.200000px;}
.yc_c00429{bottom:953.400000px;}
.y46_c00429{bottom:961.200000px;}
.yb_c00429{bottom:971.100000px;}
.y45_c00429{bottom:978.600000px;}
.ya_c00429{bottom:988.800000px;}
.y44_c00429{bottom:996.300000px;}
.y9_c00429{bottom:1006.500000px;}
.y43_c00429{bottom:1014.000000px;}
.y8_c00429{bottom:1028.400000px;}
.y42_c00429{bottom:1031.700000px;}
.y7_c00429{bottom:1046.100000px;}
.y41_c00429{bottom:1049.700000px;}
.y40_c00429{bottom:1067.400000px;}
.y6_c00429{bottom:1068.600000px;}
.y3f_c00429{bottom:1085.700000px;}
.y5_c00429{bottom:1086.900000px;}
.y3e_c00429{bottom:1102.950000px;}
.y4_c00429{bottom:1104.150000px;}
.y3d_c00429{bottom:1120.650000px;}
.y3_c00429{bottom:1122.450000px;}
.y3c_c00429{bottom:1140.150000px;}
.y2_c00429{bottom:1147.650000px;}
.y1_c00429{bottom:1148.700000px;}
.h8_c00429{height:30.000000px;}
.h9_c00429{height:36.000000px;}
.ha_c00429{height:42.000000px;}
.h7_c00429{height:54.000000px;}
.h5_c00429{height:60.000000px;}
.h4_c00429{height:66.000000px;}
.h6_c00429{height:72.000000px;}
.h2_c00429{height:78.000000px;}
.h3_c00429{height:84.000000px;}
.h1_c00429{height:1267.500000px;}
.h0_c00429{height:1267.559967px;}
.w0_c00429{width:958.320007px;}
.w1_c00429{width:958.500000px;}
.x0_c00429{left:0.000000px;}
.x5c_c00429{left:183.600000px;}
.x1_c00429{left:185.100000px;}
.x8e_c00429{left:189.900000px;}
.x76_c00429{left:199.200000px;}
.x71_c00429{left:200.250000px;}
.xa_c00429{left:201.300000px;}
.x3_c00429{left:202.350000px;}
.x88_c00429{left:203.700000px;}
.x8d_c00429{left:204.750000px;}
.x91_c00429{left:208.500000px;}
.x99_c00429{left:210.300000px;}
.xa2_c00429{left:211.500000px;}
.x78_c00429{left:214.950000px;}
.x2c_c00429{left:216.000000px;}
.x84_c00429{left:217.350000px;}
.x8a_c00429{left:219.600000px;}
.x21_c00429{left:221.100000px;}
.x36_c00429{left:223.500000px;}
.x4b_c00429{left:225.300000px;}
.x19_c00429{left:228.750000px;}
.x5d_c00429{left:231.150000px;}
.xa0_c00429{left:232.950000px;}
.x2d_c00429{left:234.300000px;}
.x54_c00429{left:236.400000px;}
.x3f_c00429{left:237.600000px;}
.x61_c00429{left:240.000000px;}
.x45_c00429{left:241.050000px;}
.x73_c00429{left:245.400000px;}
.x58_c00429{left:247.800000px;}
.x62_c00429{left:249.750000px;}
.x37_c00429{left:251.550000px;}
.x26_c00429{left:253.950000px;}
.xaa_c00429{left:255.300000px;}
.x6c_c00429{left:256.350000px;}
.x79_c00429{left:257.700000px;}
.x80_c00429{left:258.750000px;}
.xb_c00429{left:259.950000px;}
.x55_c00429{left:261.600000px;}
.x89_c00429{left:263.400000px;}
.x22_c00429{left:265.350000px;}
.x4_c00429{left:267.450000px;}
.x2e_c00429{left:270.600000px;}
.x7b_c00429{left:273.300000px;}
.x8f_c00429{left:275.550000px;}
.x13_c00429{left:276.600000px;}
.x85_c00429{left:278.850000px;}
.x46_c00429{left:281.400000px;}
.x4c_c00429{left:282.900000px;}
.x38_c00429{left:284.700000px;}
.x59_c00429{left:286.650000px;}
.x2f_c00429{left:288.300000px;}
.x5_c00429{left:289.800000px;}
.x92_c00429{left:291.600000px;}
.x7c_c00429{left:293.850000px;}
.x72_c00429{left:295.350000px;}
.xc_c00429{left:296.700000px;}
.x9e_c00429{left:297.900000px;}
.x63_c00429{left:299.100000px;}
.x5e_c00429{left:301.350000px;}
.x4d_c00429{left:303.750000px;}
.x1a_c00429{left:305.100000px;}
.x23_c00429{left:307.500000px;}
.x7d_c00429{left:308.550000px;}
.x64_c00429{left:309.900000px;}
.x7a_c00429{left:311.400000px;}
.x5a_c00429{left:312.600000px;}
.xa3_c00429{left:314.100000px;}
.xd_c00429{left:318.300000px;}
.x96_c00429{left:319.500000px;}
.x30_c00429{left:320.700000px;}
.x39_c00429{left:322.200000px;}
.x6d_c00429{left:324.150000px;}
.x27_c00429{left:327.000000px;}
.x9f_c00429{left:329.550000px;}
.x69_c00429{left:331.800000px;}
.x9a_c00429{left:334.800000px;}
.x40_c00429{left:336.300000px;}
.xa9_c00429{left:337.800000px;}
.x3a_c00429{left:339.150000px;}
.x14_c00429{left:341.400000px;}
.xa4_c00429{left:342.900000px;}
.x4e_c00429{left:344.700000px;}
.x74_c00429{left:345.900000px;}
.x28_c00429{left:347.100000px;}
.x5f_c00429{left:348.450000px;}
.x86_c00429{left:352.350000px;}
.x15_c00429{left:354.000000px;}
.x97_c00429{left:355.800000px;}
.x8b_c00429{left:358.050000px;}
.x1b_c00429{left:360.150000px;}
.xe_c00429{left:364.800000px;}
.x65_c00429{left:366.000000px;}
.x31_c00429{left:367.500000px;}
.x7e_c00429{left:369.000000px;}
.x41_c00429{left:370.800000px;}
.xab_c00429{left:372.000000px;}
.x95_c00429{left:373.200000px;}
.x6_c00429{left:375.150000px;}
.x56_c00429{left:377.250000px;}
.x9b_c00429{left:378.300000px;}
.x75_c00429{left:379.500000px;}
.x16_c00429{left:381.000000px;}
.x47_c00429{left:382.650000px;}
.xf_c00429{left:384.900000px;}
.x3b_c00429{left:386.250000px;}
.x42_c00429{left:390.600000px;}
.x81_c00429{left:392.550000px;}
.x32_c00429{left:393.750000px;}
.x87_c00429{left:395.250000px;}
.x7_c00429{left:398.250000px;}
.x10_c00429{left:401.850000px;}
.x48_c00429{left:404.250000px;}
.x1c_c00429{left:405.450000px;}
.xa7_c00429{left:407.550000px;}
.x66_c00429{left:409.500000px;}
.x6e_c00429{left:410.850000px;}
.x82_c00429{left:412.350000px;}
.x8c_c00429{left:413.550000px;}
.x33_c00429{left:415.350000px;}
.x53_c00429{left:417.150000px;}
.x4f_c00429{left:418.800000px;}
.x24_c00429{left:420.900000px;}
.x29_c00429{left:423.000000px;}
.x9c_c00429{left:424.650000px;}
.x1f_c00429{left:427.200000px;}
.x49_c00429{left:428.700000px;}
.x2_c00429{left:429.900000px;}
.x6f_c00429{left:430.950000px;}
.x3c_c00429{left:432.300000px;}
.x43_c00429{left:434.100000px;}
.x25_c00429{left:436.050000px;}
.x17_c00429{left:437.550000px;}
.x2a_c00429{left:438.900000px;}
.x5b_c00429{left:442.050000px;}
.x50_c00429{left:445.050000px;}
.x77_c00429{left:451.200000px;}
.x7f_c00429{left:452.550000px;}
.x11_c00429{left:455.550000px;}
.x44_c00429{left:457.800000px;}
.xa1_c00429{left:459.600000px;}
.x34_c00429{left:461.100000px;}
.x51_c00429{left:463.050000px;}
.x67_c00429{left:466.350000px;}
.x3d_c00429{left:468.000000px;}
.x2b_c00429{left:471.300000px;}
.x6a_c00429{left:472.650000px;}
.x57_c00429{left:474.150000px;}
.x1d_c00429{left:475.950000px;}
.x8_c00429{left:477.450000px;}
.x90_c00429{left:478.800000px;}
.x93_c00429{left:479.850000px;}
.x3e_c00429{left:481.650000px;}
.x83_c00429{left:482.700000px;}
.x70_c00429{left:485.700000px;}
.xa5_c00429{left:486.900000px;}
.xa8_c00429{left:488.100000px;}
.x60_c00429{left:489.900000px;}
.x52_c00429{left:492.150000px;}
.x1e_c00429{left:493.650000px;}
.x94_c00429{left:496.050000px;}
.x68_c00429{left:497.700000px;}
.x20_c00429{left:498.900000px;}
.xa6_c00429{left:500.400000px;}
.x12_c00429{left:501.600000px;}
.x98_c00429{left:502.950000px;}
.x35_c00429{left:504.000000px;}
.x9_c00429{left:506.550000px;}
.x6b_c00429{left:508.350000px;}
.x18_c00429{left:509.850000px;}
.x4a_c00429{left:511.500000px;}
.x9d_c00429{left:521.100000px;}
.xac_c00429{left:522.600000px;}
.x10c_c00429{left:541.800000px;}
.x118_c00429{left:543.600000px;}
.x12a_c00429{left:544.650000px;}
.x140_c00429{left:545.850000px;}
.x13c_c00429{left:552.900000px;}
.xae_c00429{left:559.050000px;}
.xbf_c00429{left:560.550000px;}
.x127_c00429{left:562.050000px;}
.x120_c00429{left:563.400000px;}
.x131_c00429{left:565.650000px;}
.x150_c00429{left:566.850000px;}
.x10d_c00429{left:570.600000px;}
.xd9_c00429{left:576.000000px;}
.xf2_c00429{left:578.850000px;}
.x119_c00429{left:579.900000px;}
.xd1_c00429{left:582.000000px;}
.xaf_c00429{left:584.550000px;}
.x113_c00429{left:585.750000px;}
.x151_c00429{left:587.100000px;}
.xfe_c00429{left:588.750000px;}
.x147_c00429{left:590.400000px;}
.x111_c00429{left:592.200000px;}
.xf7_c00429{left:594.300000px;}
.xeb_c00429{left:595.500000px;}
.xf3_c00429{left:596.550000px;}
.xda_c00429{left:598.650000px;}
.xe6_c00429{left:602.850000px;}
.xd2_c00429{left:603.900000px;}
.xec_c00429{left:605.250000px;}
.xc0_c00429{left:606.600000px;}
.xc9_c00429{left:609.900000px;}
.x14b_c00429{left:611.250000px;}
.x112_c00429{left:614.850000px;}
.xf4_c00429{left:617.400000px;}
.xce_c00429{left:618.750000px;}
.x148_c00429{left:623.550000px;}
.xfa_c00429{left:624.900000px;}
.xb7_c00429{left:626.700000px;}
.xd3_c00429{left:628.050000px;}
.x132_c00429{left:629.100000px;}
.x11a_c00429{left:630.300000px;}
.x123_c00429{left:631.650000px;}
.xca_c00429{left:634.800000px;}
.xb8_c00429{left:636.750000px;}
.x103_c00429{left:637.950000px;}
.x121_c00429{left:639.750000px;}
.xf8_c00429{left:641.100000px;}
.xf1_c00429{left:644.400000px;}
.x12f_c00429{left:646.650000px;}
.xdb_c00429{left:648.300000px;}
.xff_c00429{left:651.000000px;}
.xb0_c00429{left:652.200000px;}
.x128_c00429{left:654.900000px;}
.xc1_c00429{left:656.250000px;}
.x124_c00429{left:658.650000px;}
.xb1_c00429{left:660.900000px;}
.x138_c00429{left:662.550000px;}
.x130_c00429{left:664.950000px;}
.xdc_c00429{left:666.000000px;}
.x152_c00429{left:667.650000px;}
.xb9_c00429{left:671.250000px;}
.x109_c00429{left:672.300000px;}
.xfb_c00429{left:673.800000px;}
.xe7_c00429{left:674.850000px;}
.x11b_c00429{left:676.800000px;}
.x11d_c00429{left:679.050000px;}
.x14d_c00429{left:680.550000px;}
.x10e_c00429{left:681.900000px;}
.x149_c00429{left:684.000000px;}
.x141_c00429{left:686.250000px;}
.x139_c00429{left:687.750000px;}
.x100_c00429{left:690.300000px;}
.x104_c00429{left:692.700000px;}
.xba_c00429{left:693.900000px;}
.xe0_c00429{left:695.700000px;}
.x12b_c00429{left:699.150000px;}
.x146_c00429{left:701.550000px;}
.x105_c00429{left:703.800000px;}
.x133_c00429{left:705.000000px;}
.xc2_c00429{left:707.400000px;}
.xd4_c00429{left:709.050000px;}
.x134_c00429{left:710.550000px;}
.xe8_c00429{left:711.900000px;}
.xed_c00429{left:712.950000px;}
.x14e_c00429{left:714.000000px;}
.x122_c00429{left:715.800000px;}
.x106_c00429{left:717.900000px;}
.x10f_c00429{left:718.950000px;}
.x135_c00429{left:720.600000px;}
.xc3_c00429{left:722.550000px;}
.xe1_c00429{left:724.800000px;}
.x114_c00429{left:725.850000px;}
.xe9_c00429{left:727.350000px;}
.x129_c00429{left:729.150000px;}
.xb2_c00429{left:731.100000px;}
.x125_c00429{left:732.750000px;}
.x13a_c00429{left:735.300000px;}
.xee_c00429{left:736.350000px;}
.xd5_c00429{left:738.150000px;}
.x13d_c00429{left:742.200000px;}
.x12c_c00429{left:743.400000px;}
.xad_c00429{left:745.200000px;}
.xf9_c00429{left:746.550000px;}
.xb3_c00429{left:748.350000px;}
.x11e_c00429{left:750.750000px;}
.xcb_c00429{left:752.550000px;}
.x145_c00429{left:754.500000px;}
.x13e_c00429{left:755.700000px;}
.xcf_c00429{left:757.050000px;}
.xe2_c00429{left:759.000000px;}
.x142_c00429{left:761.400000px;}
.xd6_c00429{left:762.600000px;}
.xbb_c00429{left:763.800000px;}
.xc4_c00429{left:767.250000px;}
.xf5_c00429{left:770.400000px;}
.xea_c00429{left:772.050000px;}
.x115_c00429{left:773.700000px;}
.xfc_c00429{left:775.650000px;}
.xdd_c00429{left:776.850000px;}
.x110_c00429{left:781.200000px;}
.xb4_c00429{left:782.850000px;}
.xbc_c00429{left:784.350000px;}
.xc5_c00429{left:789.150000px;}
.xe3_c00429{left:790.350000px;}
.xd0_c00429{left:792.000000px;}
.xf6_c00429{left:794.100000px;}
.x11c_c00429{left:795.300000px;}
.xde_c00429{left:797.700000px;}
.x116_c00429{left:799.500000px;}
.x136_c00429{left:800.850000px;}
.xd7_c00429{left:802.500000px;}
.xb5_c00429{left:804.150000px;}
.xc6_c00429{left:805.350000px;}
.xbd_c00429{left:806.700000px;}
.xfd_c00429{left:808.350000px;}
.xcc_c00429{left:811.650000px;}
.x126_c00429{left:812.700000px;}
.x14a_c00429{left:813.900000px;}
.x101_c00429{left:816.600000px;}
.x14c_c00429{left:817.950000px;}
.xb6_c00429{left:821.100000px;}
.xd8_c00429{left:822.300000px;}
.x12d_c00429{left:824.400000px;}
.xe4_c00429{left:826.050000px;}
.x10a_c00429{left:827.400000px;}
.x107_c00429{left:829.200000px;}
.x14f_c00429{left:831.750000px;}
.xef_c00429{left:833.850000px;}
.x143_c00429{left:834.900000px;}
.x13f_c00429{left:836.250000px;}
.xcd_c00429{left:837.600000px;}
.xc7_c00429{left:841.050000px;}
.x117_c00429{left:842.700000px;}
.x11f_c00429{left:845.700000px;}
.xbe_c00429{left:851.400000px;}
.x144_c00429{left:852.600000px;}
.xe5_c00429{left:855.150000px;}
.x102_c00429{left:856.500000px;}
.xdf_c00429{left:858.150000px;}
.x10b_c00429{left:862.350000px;}
.x12e_c00429{left:864.000000px;}
.xf0_c00429{left:865.500000px;}
.xc8_c00429{left:867.000000px;}
.x13b_c00429{left:868.500000px;}
.x137_c00429{left:871.350000px;}
.x108_c00429{left:877.800000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws7_c00429{word-spacing:-19.651805pt;}
.ws8_c00429{word-spacing:-9.975744pt;}
.ws9_c00429{word-spacing:-8.641975pt;}
.ws5_c00429{word-spacing:-7.830688pt;}
.ws4_c00429{word-spacing:-3.200643pt;}
.wsa_c00429{word-spacing:0.000000pt;}
.ws0_c00429{word-spacing:3.989822pt;}
.ws3_c00429{word-spacing:5.740902pt;}
.ws6_c00429{word-spacing:7.044890pt;}
.ws2_c00429{word-spacing:45.809524pt;}
.ws1_c00429{word-spacing:48.969697pt;}
.fs6_c00429{font-size:26.666667pt;}
.fs7_c00429{font-size:32.000000pt;}
.fs8_c00429{font-size:37.333333pt;}
.fs5_c00429{font-size:48.000000pt;}
.fs3_c00429{font-size:53.333333pt;}
.fs2_c00429{font-size:58.666667pt;}
.fs4_c00429{font-size:64.000000pt;}
.fs0_c00429{font-size:69.333333pt;}
.fs1_c00429{font-size:74.666667pt;}
.y0_c00429{bottom:0.000000pt;}
.y72_c00429{bottom:163.200000pt;}
.y71_c00429{bottom:169.600000pt;}
.y3a_c00429{bottom:180.133333pt;}
.y70_c00429{bottom:182.666667pt;}
.y6f_c00429{bottom:194.533333pt;}
.y39_c00429{bottom:201.200000pt;}
.y6e_c00429{bottom:207.600000pt;}
.y38_c00429{bottom:211.466667pt;}
.y6d_c00429{bottom:219.733333pt;}
.y37_c00429{bottom:227.466667pt;}
.y6c_c00429{bottom:232.533333pt;}
.y36_c00429{bottom:242.800000pt;}
.y6b_c00429{bottom:245.333333pt;}
.y6a_c00429{bottom:257.866667pt;}
.y35_c00429{bottom:258.133333pt;}
.y69_c00429{bottom:270.666667pt;}
.y34_c00429{bottom:273.866667pt;}
.y68_c00429{bottom:283.466667pt;}
.y33_c00429{bottom:289.200000pt;}
.y67_c00429{bottom:296.400000pt;}
.y32_c00429{bottom:304.533333pt;}
.y66_c00429{bottom:309.466667pt;}
.y31_c00429{bottom:319.600000pt;}
.y65_c00429{bottom:322.266667pt;}
.y30_c00429{bottom:334.933333pt;}
.y64_c00429{bottom:340.533333pt;}
.y2f_c00429{bottom:350.266667pt;}
.y62_c00429{bottom:363.866667pt;}
.y2e_c00429{bottom:366.000000pt;}
.y61_c00429{bottom:380.800000pt;}
.y2d_c00429{bottom:382.000000pt;}
.y60_c00429{bottom:395.733333pt;}
.y2c_c00429{bottom:398.000000pt;}
.y5f_c00429{bottom:411.466667pt;}
.y2b_c00429{bottom:416.266667pt;}
.y5e_c00429{bottom:427.466667pt;}
.y2a_c00429{bottom:429.066667pt;}
.y29_c00429{bottom:441.600000pt;}
.y5d_c00429{bottom:444.133333pt;}
.y28_c00429{bottom:454.400000pt;}
.y5c_c00429{bottom:459.466667pt;}
.y27_c00429{bottom:467.466667pt;}
.y5b_c00429{bottom:475.200000pt;}
.y26_c00429{bottom:480.000000pt;}
.y25_c00429{bottom:492.533333pt;}
.y5a_c00429{bottom:494.666667pt;}
.y24_c00429{bottom:505.200000pt;}
.y63_c00429{bottom:508.133333pt;}
.y59_c00429{bottom:510.400000pt;}
.y23_c00429{bottom:518.000000pt;}
.y22_c00429{bottom:528.266667pt;}
.y21_c00429{bottom:530.133333pt;}
.y20_c00429{bottom:542.666667pt;}
.y58_c00429{bottom:545.866667pt;}
.y1f_c00429{bottom:555.466667pt;}
.y57_c00429{bottom:561.600000pt;}
.y1e_c00429{bottom:568.266667pt;}
.y56_c00429{bottom:577.866667pt;}
.y3b_c00429{bottom:580.133333pt;}
.y1d_c00429{bottom:581.066667pt;}
.y55_c00429{bottom:593.600000pt;}
.y1c_c00429{bottom:593.866667pt;}
.y1b_c00429{bottom:606.400000pt;}
.y54_c00429{bottom:613.466667pt;}
.y1a_c00429{bottom:619.866667pt;}
.y53_c00429{bottom:628.800000pt;}
.y19_c00429{bottom:637.866667pt;}
.y52_c00429{bottom:652.133333pt;}
.y18_c00429{bottom:653.600000pt;}
.y51_c00429{bottom:668.133333pt;}
.y17_c00429{bottom:669.333333pt;}
.y50_c00429{bottom:683.733333pt;}
.y16_c00429{bottom:685.333333pt;}
.y4f_c00429{bottom:699.733333pt;}
.y15_c00429{bottom:701.066667pt;}
.y4e_c00429{bottom:715.466667pt;}
.y14_c00429{bottom:716.800000pt;}
.y13_c00429{bottom:736.266667pt;}
.y4d_c00429{bottom:739.200000pt;}
.y12_c00429{bottom:752.266667pt;}
.y4c_c00429{bottom:755.200000pt;}
.y11_c00429{bottom:768.266667pt;}
.y4b_c00429{bottom:771.200000pt;}
.y10_c00429{bottom:784.000000pt;}
.y4a_c00429{bottom:787.200000pt;}
.yf_c00429{bottom:800.000000pt;}
.y49_c00429{bottom:802.933333pt;}
.ye_c00429{bottom:815.733333pt;}
.y48_c00429{bottom:819.200000pt;}
.yd_c00429{bottom:831.466667pt;}
.y47_c00429{bottom:838.400000pt;}
.yc_c00429{bottom:847.466667pt;}
.y46_c00429{bottom:854.400000pt;}
.yb_c00429{bottom:863.200000pt;}
.y45_c00429{bottom:869.866667pt;}
.ya_c00429{bottom:878.933333pt;}
.y44_c00429{bottom:885.600000pt;}
.y9_c00429{bottom:894.666667pt;}
.y43_c00429{bottom:901.333333pt;}
.y8_c00429{bottom:914.133333pt;}
.y42_c00429{bottom:917.066667pt;}
.y7_c00429{bottom:929.866667pt;}
.y41_c00429{bottom:933.066667pt;}
.y40_c00429{bottom:948.800000pt;}
.y6_c00429{bottom:949.866667pt;}
.y3f_c00429{bottom:965.066667pt;}
.y5_c00429{bottom:966.133333pt;}
.y3e_c00429{bottom:980.400000pt;}
.y4_c00429{bottom:981.466667pt;}
.y3d_c00429{bottom:996.133333pt;}
.y3_c00429{bottom:997.733333pt;}
.y3c_c00429{bottom:1013.466667pt;}
.y2_c00429{bottom:1020.133333pt;}
.y1_c00429{bottom:1021.066667pt;}
.h8_c00429{height:26.666667pt;}
.h9_c00429{height:32.000000pt;}
.ha_c00429{height:37.333333pt;}
.h7_c00429{height:48.000000pt;}
.h5_c00429{height:53.333333pt;}
.h4_c00429{height:58.666667pt;}
.h6_c00429{height:64.000000pt;}
.h2_c00429{height:69.333333pt;}
.h3_c00429{height:74.666667pt;}
.h1_c00429{height:1126.666667pt;}
.h0_c00429{height:1126.719971pt;}
.w0_c00429{width:851.840007pt;}
.w1_c00429{width:852.000000pt;}
.x0_c00429{left:0.000000pt;}
.x5c_c00429{left:163.200000pt;}
.x1_c00429{left:164.533333pt;}
.x8e_c00429{left:168.800000pt;}
.x76_c00429{left:177.066667pt;}
.x71_c00429{left:178.000000pt;}
.xa_c00429{left:178.933333pt;}
.x3_c00429{left:179.866667pt;}
.x88_c00429{left:181.066667pt;}
.x8d_c00429{left:182.000000pt;}
.x91_c00429{left:185.333333pt;}
.x99_c00429{left:186.933333pt;}
.xa2_c00429{left:188.000000pt;}
.x78_c00429{left:191.066667pt;}
.x2c_c00429{left:192.000000pt;}
.x84_c00429{left:193.200000pt;}
.x8a_c00429{left:195.200000pt;}
.x21_c00429{left:196.533333pt;}
.x36_c00429{left:198.666667pt;}
.x4b_c00429{left:200.266667pt;}
.x19_c00429{left:203.333333pt;}
.x5d_c00429{left:205.466667pt;}
.xa0_c00429{left:207.066667pt;}
.x2d_c00429{left:208.266667pt;}
.x54_c00429{left:210.133333pt;}
.x3f_c00429{left:211.200000pt;}
.x61_c00429{left:213.333333pt;}
.x45_c00429{left:214.266667pt;}
.x73_c00429{left:218.133333pt;}
.x58_c00429{left:220.266667pt;}
.x62_c00429{left:222.000000pt;}
.x37_c00429{left:223.600000pt;}
.x26_c00429{left:225.733333pt;}
.xaa_c00429{left:226.933333pt;}
.x6c_c00429{left:227.866667pt;}
.x79_c00429{left:229.066667pt;}
.x80_c00429{left:230.000000pt;}
.xb_c00429{left:231.066667pt;}
.x55_c00429{left:232.533333pt;}
.x89_c00429{left:234.133333pt;}
.x22_c00429{left:235.866667pt;}
.x4_c00429{left:237.733333pt;}
.x2e_c00429{left:240.533333pt;}
.x7b_c00429{left:242.933333pt;}
.x8f_c00429{left:244.933333pt;}
.x13_c00429{left:245.866667pt;}
.x85_c00429{left:247.866667pt;}
.x46_c00429{left:250.133333pt;}
.x4c_c00429{left:251.466667pt;}
.x38_c00429{left:253.066667pt;}
.x59_c00429{left:254.800000pt;}
.x2f_c00429{left:256.266667pt;}
.x5_c00429{left:257.600000pt;}
.x92_c00429{left:259.200000pt;}
.x7c_c00429{left:261.200000pt;}
.x72_c00429{left:262.533333pt;}
.xc_c00429{left:263.733333pt;}
.x9e_c00429{left:264.800000pt;}
.x63_c00429{left:265.866667pt;}
.x5e_c00429{left:267.866667pt;}
.x4d_c00429{left:270.000000pt;}
.x1a_c00429{left:271.200000pt;}
.x23_c00429{left:273.333333pt;}
.x7d_c00429{left:274.266667pt;}
.x64_c00429{left:275.466667pt;}
.x7a_c00429{left:276.800000pt;}
.x5a_c00429{left:277.866667pt;}
.xa3_c00429{left:279.200000pt;}
.xd_c00429{left:282.933333pt;}
.x96_c00429{left:284.000000pt;}
.x30_c00429{left:285.066667pt;}
.x39_c00429{left:286.400000pt;}
.x6d_c00429{left:288.133333pt;}
.x27_c00429{left:290.666667pt;}
.x9f_c00429{left:292.933333pt;}
.x69_c00429{left:294.933333pt;}
.x9a_c00429{left:297.600000pt;}
.x40_c00429{left:298.933333pt;}
.xa9_c00429{left:300.266667pt;}
.x3a_c00429{left:301.466667pt;}
.x14_c00429{left:303.466667pt;}
.xa4_c00429{left:304.800000pt;}
.x4e_c00429{left:306.400000pt;}
.x74_c00429{left:307.466667pt;}
.x28_c00429{left:308.533333pt;}
.x5f_c00429{left:309.733333pt;}
.x86_c00429{left:313.200000pt;}
.x15_c00429{left:314.666667pt;}
.x97_c00429{left:316.266667pt;}
.x8b_c00429{left:318.266667pt;}
.x1b_c00429{left:320.133333pt;}
.xe_c00429{left:324.266667pt;}
.x65_c00429{left:325.333333pt;}
.x31_c00429{left:326.666667pt;}
.x7e_c00429{left:328.000000pt;}
.x41_c00429{left:329.600000pt;}
.xab_c00429{left:330.666667pt;}
.x95_c00429{left:331.733333pt;}
.x6_c00429{left:333.466667pt;}
.x56_c00429{left:335.333333pt;}
.x9b_c00429{left:336.266667pt;}
.x75_c00429{left:337.333333pt;}
.x16_c00429{left:338.666667pt;}
.x47_c00429{left:340.133333pt;}
.xf_c00429{left:342.133333pt;}
.x3b_c00429{left:343.333333pt;}
.x42_c00429{left:347.200000pt;}
.x81_c00429{left:348.933333pt;}
.x32_c00429{left:350.000000pt;}
.x87_c00429{left:351.333333pt;}
.x7_c00429{left:354.000000pt;}
.x10_c00429{left:357.200000pt;}
.x48_c00429{left:359.333333pt;}
.x1c_c00429{left:360.400000pt;}
.xa7_c00429{left:362.266667pt;}
.x66_c00429{left:364.000000pt;}
.x6e_c00429{left:365.200000pt;}
.x82_c00429{left:366.533333pt;}
.x8c_c00429{left:367.600000pt;}
.x33_c00429{left:369.200000pt;}
.x53_c00429{left:370.800000pt;}
.x4f_c00429{left:372.266667pt;}
.x24_c00429{left:374.133333pt;}
.x29_c00429{left:376.000000pt;}
.x9c_c00429{left:377.466667pt;}
.x1f_c00429{left:379.733333pt;}
.x49_c00429{left:381.066667pt;}
.x2_c00429{left:382.133333pt;}
.x6f_c00429{left:383.066667pt;}
.x3c_c00429{left:384.266667pt;}
.x43_c00429{left:385.866667pt;}
.x25_c00429{left:387.600000pt;}
.x17_c00429{left:388.933333pt;}
.x2a_c00429{left:390.133333pt;}
.x5b_c00429{left:392.933333pt;}
.x50_c00429{left:395.600000pt;}
.x77_c00429{left:401.066667pt;}
.x7f_c00429{left:402.266667pt;}
.x11_c00429{left:404.933333pt;}
.x44_c00429{left:406.933333pt;}
.xa1_c00429{left:408.533333pt;}
.x34_c00429{left:409.866667pt;}
.x51_c00429{left:411.600000pt;}
.x67_c00429{left:414.533333pt;}
.x3d_c00429{left:416.000000pt;}
.x2b_c00429{left:418.933333pt;}
.x6a_c00429{left:420.133333pt;}
.x57_c00429{left:421.466667pt;}
.x1d_c00429{left:423.066667pt;}
.x8_c00429{left:424.400000pt;}
.x90_c00429{left:425.600000pt;}
.x93_c00429{left:426.533333pt;}
.x3e_c00429{left:428.133333pt;}
.x83_c00429{left:429.066667pt;}
.x70_c00429{left:431.733333pt;}
.xa5_c00429{left:432.800000pt;}
.xa8_c00429{left:433.866667pt;}
.x60_c00429{left:435.466667pt;}
.x52_c00429{left:437.466667pt;}
.x1e_c00429{left:438.800000pt;}
.x94_c00429{left:440.933333pt;}
.x68_c00429{left:442.400000pt;}
.x20_c00429{left:443.466667pt;}
.xa6_c00429{left:444.800000pt;}
.x12_c00429{left:445.866667pt;}
.x98_c00429{left:447.066667pt;}
.x35_c00429{left:448.000000pt;}
.x9_c00429{left:450.266667pt;}
.x6b_c00429{left:451.866667pt;}
.x18_c00429{left:453.200000pt;}
.x4a_c00429{left:454.666667pt;}
.x9d_c00429{left:463.200000pt;}
.xac_c00429{left:464.533333pt;}
.x10c_c00429{left:481.600000pt;}
.x118_c00429{left:483.200000pt;}
.x12a_c00429{left:484.133333pt;}
.x140_c00429{left:485.200000pt;}
.x13c_c00429{left:491.466667pt;}
.xae_c00429{left:496.933333pt;}
.xbf_c00429{left:498.266667pt;}
.x127_c00429{left:499.600000pt;}
.x120_c00429{left:500.800000pt;}
.x131_c00429{left:502.800000pt;}
.x150_c00429{left:503.866667pt;}
.x10d_c00429{left:507.200000pt;}
.xd9_c00429{left:512.000000pt;}
.xf2_c00429{left:514.533333pt;}
.x119_c00429{left:515.466667pt;}
.xd1_c00429{left:517.333333pt;}
.xaf_c00429{left:519.600000pt;}
.x113_c00429{left:520.666667pt;}
.x151_c00429{left:521.866667pt;}
.xfe_c00429{left:523.333333pt;}
.x147_c00429{left:524.800000pt;}
.x111_c00429{left:526.400000pt;}
.xf7_c00429{left:528.266667pt;}
.xeb_c00429{left:529.333333pt;}
.xf3_c00429{left:530.266667pt;}
.xda_c00429{left:532.133333pt;}
.xe6_c00429{left:535.866667pt;}
.xd2_c00429{left:536.800000pt;}
.xec_c00429{left:538.000000pt;}
.xc0_c00429{left:539.200000pt;}
.xc9_c00429{left:542.133333pt;}
.x14b_c00429{left:543.333333pt;}
.x112_c00429{left:546.533333pt;}
.xf4_c00429{left:548.800000pt;}
.xce_c00429{left:550.000000pt;}
.x148_c00429{left:554.266667pt;}
.xfa_c00429{left:555.466667pt;}
.xb7_c00429{left:557.066667pt;}
.xd3_c00429{left:558.266667pt;}
.x132_c00429{left:559.200000pt;}
.x11a_c00429{left:560.266667pt;}
.x123_c00429{left:561.466667pt;}
.xca_c00429{left:564.266667pt;}
.xb8_c00429{left:566.000000pt;}
.x103_c00429{left:567.066667pt;}
.x121_c00429{left:568.666667pt;}
.xf8_c00429{left:569.866667pt;}
.xf1_c00429{left:572.800000pt;}
.x12f_c00429{left:574.800000pt;}
.xdb_c00429{left:576.266667pt;}
.xff_c00429{left:578.666667pt;}
.xb0_c00429{left:579.733333pt;}
.x128_c00429{left:582.133333pt;}
.xc1_c00429{left:583.333333pt;}
.x124_c00429{left:585.466667pt;}
.xb1_c00429{left:587.466667pt;}
.x138_c00429{left:588.933333pt;}
.x130_c00429{left:591.066667pt;}
.xdc_c00429{left:592.000000pt;}
.x152_c00429{left:593.466667pt;}
.xb9_c00429{left:596.666667pt;}
.x109_c00429{left:597.600000pt;}
.xfb_c00429{left:598.933333pt;}
.xe7_c00429{left:599.866667pt;}
.x11b_c00429{left:601.600000pt;}
.x11d_c00429{left:603.600000pt;}
.x14d_c00429{left:604.933333pt;}
.x10e_c00429{left:606.133333pt;}
.x149_c00429{left:608.000000pt;}
.x141_c00429{left:610.000000pt;}
.x139_c00429{left:611.333333pt;}
.x100_c00429{left:613.600000pt;}
.x104_c00429{left:615.733333pt;}
.xba_c00429{left:616.800000pt;}
.xe0_c00429{left:618.400000pt;}
.x12b_c00429{left:621.466667pt;}
.x146_c00429{left:623.600000pt;}
.x105_c00429{left:625.600000pt;}
.x133_c00429{left:626.666667pt;}
.xc2_c00429{left:628.800000pt;}
.xd4_c00429{left:630.266667pt;}
.x134_c00429{left:631.600000pt;}
.xe8_c00429{left:632.800000pt;}
.xed_c00429{left:633.733333pt;}
.x14e_c00429{left:634.666667pt;}
.x122_c00429{left:636.266667pt;}
.x106_c00429{left:638.133333pt;}
.x10f_c00429{left:639.066667pt;}
.x135_c00429{left:640.533333pt;}
.xc3_c00429{left:642.266667pt;}
.xe1_c00429{left:644.266667pt;}
.x114_c00429{left:645.200000pt;}
.xe9_c00429{left:646.533333pt;}
.x129_c00429{left:648.133333pt;}
.xb2_c00429{left:649.866667pt;}
.x125_c00429{left:651.333333pt;}
.x13a_c00429{left:653.600000pt;}
.xee_c00429{left:654.533333pt;}
.xd5_c00429{left:656.133333pt;}
.x13d_c00429{left:659.733333pt;}
.x12c_c00429{left:660.800000pt;}
.xad_c00429{left:662.400000pt;}
.xf9_c00429{left:663.600000pt;}
.xb3_c00429{left:665.200000pt;}
.x11e_c00429{left:667.333333pt;}
.xcb_c00429{left:668.933333pt;}
.x145_c00429{left:670.666667pt;}
.x13e_c00429{left:671.733333pt;}
.xcf_c00429{left:672.933333pt;}
.xe2_c00429{left:674.666667pt;}
.x142_c00429{left:676.800000pt;}
.xd6_c00429{left:677.866667pt;}
.xbb_c00429{left:678.933333pt;}
.xc4_c00429{left:682.000000pt;}
.xf5_c00429{left:684.800000pt;}
.xea_c00429{left:686.266667pt;}
.x115_c00429{left:687.733333pt;}
.xfc_c00429{left:689.466667pt;}
.xdd_c00429{left:690.533333pt;}
.x110_c00429{left:694.400000pt;}
.xb4_c00429{left:695.866667pt;}
.xbc_c00429{left:697.200000pt;}
.xc5_c00429{left:701.466667pt;}
.xe3_c00429{left:702.533333pt;}
.xd0_c00429{left:704.000000pt;}
.xf6_c00429{left:705.866667pt;}
.x11c_c00429{left:706.933333pt;}
.xde_c00429{left:709.066667pt;}
.x116_c00429{left:710.666667pt;}
.x136_c00429{left:711.866667pt;}
.xd7_c00429{left:713.333333pt;}
.xb5_c00429{left:714.800000pt;}
.xc6_c00429{left:715.866667pt;}
.xbd_c00429{left:717.066667pt;}
.xfd_c00429{left:718.533333pt;}
.xcc_c00429{left:721.466667pt;}
.x126_c00429{left:722.400000pt;}
.x14a_c00429{left:723.466667pt;}
.x101_c00429{left:725.866667pt;}
.x14c_c00429{left:727.066667pt;}
.xb6_c00429{left:729.866667pt;}
.xd8_c00429{left:730.933333pt;}
.x12d_c00429{left:732.800000pt;}
.xe4_c00429{left:734.266667pt;}
.x10a_c00429{left:735.466667pt;}
.x107_c00429{left:737.066667pt;}
.x14f_c00429{left:739.333333pt;}
.xef_c00429{left:741.200000pt;}
.x143_c00429{left:742.133333pt;}
.x13f_c00429{left:743.333333pt;}
.xcd_c00429{left:744.533333pt;}
.xc7_c00429{left:747.600000pt;}
.x117_c00429{left:749.066667pt;}
.x11f_c00429{left:751.733333pt;}
.xbe_c00429{left:756.800000pt;}
.x144_c00429{left:757.866667pt;}
.xe5_c00429{left:760.133333pt;}
.x102_c00429{left:761.333333pt;}
.xdf_c00429{left:762.800000pt;}
.x10b_c00429{left:766.533333pt;}
.x12e_c00429{left:768.000000pt;}
.xf0_c00429{left:769.333333pt;}
.xc8_c00429{left:770.666667pt;}
.x13b_c00429{left:772.000000pt;}
.x137_c00429{left:774.533333pt;}
.x108_c00429{left:780.266667pt;}
}





/* 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_c00430 {
    display:none;
  }
  .loading-indicator_c00430.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00430 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_c00430 { 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_c00430" -> "#page-container .classname_c00430")
 */
.pf_c00430 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00430 { /* 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_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00430 { /* 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_c00430 { /* 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_c00430 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00430 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00430 {overflow:visible;}
  }
}
.c_c00430 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00430 { /* 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_c00430:after { /* webkit #35443 */
  content: '';
}
.t_c00430:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00430 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 */
}
.__c00430 { /* 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_c00430 { /* info for Javascript */
  display:none;
}
.l_c00430 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00430 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00430 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00430: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_c00430 {
    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_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00430.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_c00430 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00430;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.000000;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;}
.m121_c00430{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mda_c00430{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00430{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md7_c00430{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md0_c00430{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00430{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m131_c00430{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00430{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m65_c00430{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m12_c00430{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m111_c00430{transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00430{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00430{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00430{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00430{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00430{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00430{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00430{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m114_c00430{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m125_c00430{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00430{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m34_c00430{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m27_c00430{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8_c00430{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md4_c00430{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m3_c00430{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m98_c00430{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00430{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00430{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m123_c00430{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m73_c00430{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mab_c00430{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00430{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m9_c00430{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md5_c00430{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00430{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.me7_c00430{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me5_c00430{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m71_c00430{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m5_c00430{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00430{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m84_c00430{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m99_c00430{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m20_c00430{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.maf_c00430{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m62_c00430{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me8_c00430{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00430{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m112_c00430{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m32_c00430{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00430{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00430{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mf_c00430{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00430{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m33_c00430{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00430{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m55_c00430{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00430{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m116_c00430{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00430{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m96_c00430{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.md9_c00430{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mde_c00430{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m54_c00430{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00430{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m74_c00430{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00430{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me9_c00430{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m16_c00430{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m61_c00430{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4_c00430{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00430{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00430{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m37_c00430{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m93_c00430{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mec_c00430{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m39_c00430{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00430{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m29_c00430{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00430{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00430{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md1_c00430{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00430{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m47_c00430{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00430{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md8_c00430{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m18_c00430{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m80_c00430{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m23_c00430{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00430{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m36_c00430{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00430{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00430{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.md6_c00430{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00430{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m79_c00430{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m13_c00430{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m129_c00430{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m49_c00430{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00430{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m118_c00430{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m59_c00430{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00430{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m17_c00430{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.med_c00430{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m68_c00430{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m19_c00430{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00430{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m90_c00430{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m119_c00430{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.me4_c00430{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6_c00430{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma_c00430{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00430{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m77_c00430{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m21_c00430{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m89_c00430{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m35_c00430{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00430{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m30_c00430{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00430{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00430{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mac_c00430{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00430{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11_c00430{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00430{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00430{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m91_c00430{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7_c00430{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m78_c00430{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m50_c00430{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00430{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00430{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00430{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00430{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m127_c00430{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00430{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00430{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00430{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m45_c00430{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m63_c00430{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00430{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m92_c00430{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m67_c00430{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00430{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00430{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m14_c00430{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md2_c00430{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m83_c00430{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mea_c00430{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00430{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m110_c00430{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00430{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m43_c00430{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00430{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00430{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mef_c00430{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m15_c00430{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m44_c00430{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m72_c00430{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00430{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m38_c00430{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00430{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00430{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb_c00430{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00430{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m88_c00430{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m81_c00430{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00430{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00430{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00430{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00430{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m25_c00430{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00430{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00430{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m76_c00430{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00430{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00430{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m128_c00430{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me6_c00430{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00430{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00430{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m24_c00430{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00430{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m69_c00430{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00430{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m120_c00430{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00430{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m115_c00430{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m22_c00430{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m51_c00430{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mae_c00430{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00430{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m28_c00430{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m40_c00430{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mc_c00430{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00430{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00430{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m87_c00430{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00430{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m56_c00430{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m48_c00430{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00430{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00430{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m26_c00430{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m94_c00430{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m31_c00430{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2_c00430{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00430{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00430{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00430{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m70_c00430{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00430{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00430{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00430{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00430{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me_c00430{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m82_c00430{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m101_c00430{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m58_c00430{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md_c00430{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m10_c00430{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00430{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00430{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mee_c00430{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00430{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00430{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00430{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00430{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.me3_c00430{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00430{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00430{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00430{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00430{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00430{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00430{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00430{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me0_c00430{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m117_c00430{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me2_c00430{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00430{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);}
.m64_c00430{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m85_c00430{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me1_c00430{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m57_c00430{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m86_c00430{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mff_c00430{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00430{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00430{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m60_c00430{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00430{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m42_c00430{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00430{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m41_c00430{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00430{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.meb_c00430{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00430{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m106_c00430{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00430{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m52_c00430{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00430{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00430{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.maa_c00430{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00430{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00430{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mba_c00430{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m105_c00430{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00430{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m75_c00430{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00430{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mca_c00430{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m122_c00430{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00430{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m53_c00430{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m124_c00430{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m95_c00430{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00430{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mad_c00430{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00430{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00430{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00430{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00430{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00430{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00430{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.mce_c00430{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m97_c00430{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md3_c00430{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m109_c00430{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m46_c00430{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00430{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m66_c00430{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m102_c00430{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m100_c00430{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m103_c00430{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00430{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00430{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m104_c00430{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m130_c00430{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00430{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m107_c00430{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m108_c00430{transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);}
.m126_c00430{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00430{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m113_c00430{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m132_c00430{transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls0_c00430{letter-spacing:0.000000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{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__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00430{word-spacing:-8.750000px;}
.ws3_c00430{word-spacing:-8.694965px;}
.ws2_c00430{word-spacing:-5.828080px;}
.ws6_c00430{word-spacing:-4.736842px;}
.ws5_c00430{word-spacing:-4.627876px;}
.ws8_c00430{word-spacing:-2.031250px;}
.ws4_c00430{word-spacing:-1.750000px;}
.wsb_c00430{word-spacing:0.000000px;}
.wsa_c00430{word-spacing:11.666667px;}
.ws0_c00430{word-spacing:12.077364px;}
.ws1_c00430{word-spacing:19.258065px;}
.ws9_c00430{word-spacing:34.166667px;}
.fc0_c00430{color:transparent;}
.fs6_c00430{font-size:30.000000px;}
.fs5_c00430{font-size:48.000000px;}
.fs4_c00430{font-size:54.000000px;}
.fs3_c00430{font-size:60.000000px;}
.fs2_c00430{font-size:66.000000px;}
.fs1_c00430{font-size:72.000000px;}
.fs0_c00430{font-size:84.000000px;}
.y0_c00430{bottom:0.000000px;}
.y72_c00430{bottom:170.250000px;}
.y71_c00430{bottom:186.150000px;}
.y39_c00430{bottom:187.200000px;}
.y70_c00430{bottom:200.850000px;}
.y38_c00430{bottom:201.900000px;}
.y6f_c00430{bottom:215.250000px;}
.y37_c00430{bottom:216.000000px;}
.y36_c00430{bottom:230.100000px;}
.y6e_c00430{bottom:234.000000px;}
.y6d_c00430{bottom:244.050000px;}
.y35_c00430{bottom:244.500000px;}
.y6c_c00430{bottom:258.450000px;}
.y34_c00430{bottom:259.200000px;}
.y6b_c00430{bottom:272.850000px;}
.y33_c00430{bottom:273.600000px;}
.y6a_c00430{bottom:287.250000px;}
.y32_c00430{bottom:288.000000px;}
.y69_c00430{bottom:301.650000px;}
.y31_c00430{bottom:302.250000px;}
.y68_c00430{bottom:316.350000px;}
.y30_c00430{bottom:316.650000px;}
.y67_c00430{bottom:330.450000px;}
.y2f_c00430{bottom:331.050000px;}
.y66_c00430{bottom:344.850000px;}
.y2e_c00430{bottom:345.150000px;}
.y65_c00430{bottom:359.250000px;}
.y2d_c00430{bottom:360.300000px;}
.y64_c00430{bottom:373.650000px;}
.y2c_c00430{bottom:374.400000px;}
.y63_c00430{bottom:387.750000px;}
.y2b_c00430{bottom:388.800000px;}
.y62_c00430{bottom:402.450000px;}
.y2a_c00430{bottom:403.500000px;}
.y61_c00430{bottom:416.850000px;}
.y29_c00430{bottom:417.150000px;}
.y60_c00430{bottom:430.950000px;}
.y28_c00430{bottom:431.550000px;}
.y5f_c00430{bottom:445.500000px;}
.y27_c00430{bottom:445.950000px;}
.y5e_c00430{bottom:459.900000px;}
.y26_c00430{bottom:460.050000px;}
.y25_c00430{bottom:473.700000px;}
.y5d_c00430{bottom:474.000000px;}
.y24_c00430{bottom:488.400000px;}
.y5c_c00430{bottom:502.500000px;}
.y23_c00430{bottom:502.800000px;}
.y5b_c00430{bottom:516.900000px;}
.y22_c00430{bottom:517.200000px;}
.y21_c00430{bottom:531.300000px;}
.y20_c00430{bottom:545.700000px;}
.y1f_c00430{bottom:560.100000px;}
.y5a_c00430{bottom:574.200000px;}
.y1e_c00430{bottom:574.800000px;}
.y1d_c00430{bottom:588.900000px;}
.y59_c00430{bottom:603.300000px;}
.y58_c00430{bottom:617.400000px;}
.y57_c00430{bottom:631.800000px;}
.y1c_c00430{bottom:636.000000px;}
.y56_c00430{bottom:646.500000px;}
.y1b_c00430{bottom:653.700000px;}
.y55_c00430{bottom:660.900000px;}
.y1a_c00430{bottom:671.400000px;}
.y54_c00430{bottom:674.550000px;}
.y19_c00430{bottom:689.400000px;}
.y53_c00430{bottom:689.700000px;}
.y52_c00430{bottom:704.100000px;}
.y18_c00430{bottom:707.100000px;}
.y51_c00430{bottom:718.200000px;}
.y17_c00430{bottom:724.800000px;}
.y50_c00430{bottom:732.600000px;}
.y16_c00430{bottom:742.500000px;}
.y4f_c00430{bottom:747.000000px;}
.y15_c00430{bottom:760.200000px;}
.y4e_c00430{bottom:761.100000px;}
.y4d_c00430{bottom:775.500000px;}
.y14_c00430{bottom:777.900000px;}
.y4c_c00430{bottom:789.900000px;}
.y13_c00430{bottom:795.600000px;}
.y4b_c00430{bottom:804.300000px;}
.y12_c00430{bottom:818.250000px;}
.y4a_c00430{bottom:832.650000px;}
.y11_c00430{bottom:835.950000px;}
.y49_c00430{bottom:847.350000px;}
.y10_c00430{bottom:853.950000px;}
.y48_c00430{bottom:861.750000px;}
.yf_c00430{bottom:871.650000px;}
.y47_c00430{bottom:875.850000px;}
.ye_c00430{bottom:889.650000px;}
.y46_c00430{bottom:890.250000px;}
.y45_c00430{bottom:904.950000px;}
.yd_c00430{bottom:907.350000px;}
.y44_c00430{bottom:919.350000px;}
.yc_c00430{bottom:925.050000px;}
.y43_c00430{bottom:933.450000px;}
.yb_c00430{bottom:943.050000px;}
.y42_c00430{bottom:947.850000px;}
.ya_c00430{bottom:960.750000px;}
.y41_c00430{bottom:962.250000px;}
.y40_c00430{bottom:976.350000px;}
.y9_c00430{bottom:979.500000px;}
.y3f_c00430{bottom:990.300000px;}
.y8_c00430{bottom:1000.650000px;}
.y3e_c00430{bottom:1005.000000px;}
.y7_c00430{bottom:1018.650000px;}
.y3d_c00430{bottom:1019.100000px;}
.y3c_c00430{bottom:1033.500000px;}
.y6_c00430{bottom:1036.650000px;}
.y3b_c00430{bottom:1047.900000px;}
.y5_c00430{bottom:1054.350000px;}
.y4_c00430{bottom:1072.050000px;}
.y3_c00430{bottom:1090.050000px;}
.y2_c00430{bottom:1107.300000px;}
.y3a_c00430{bottom:1108.050000px;}
.y1_c00430{bottom:1134.300000px;}
.y73_c00430{bottom:1266.450000px;}
.h8_c00430{height:30.000000px;}
.h7_c00430{height:48.000000px;}
.h6_c00430{height:54.000000px;}
.h5_c00430{height:60.000000px;}
.h4_c00430{height:66.000000px;}
.h3_c00430{height:72.000000px;}
.h2_c00430{height:84.000000px;}
.h0_c00430{height:1271.879975px;}
.h1_c00430{height:1272.000000px;}
.w0_c00430{width:958.320007px;}
.w1_c00430{width:958.500000px;}
.x0_c00430{left:0.000000px;}
.x7f_c00430{left:82.200000px;}
.x89_c00430{left:84.000000px;}
.xab_c00430{left:86.100000px;}
.x3_c00430{left:95.400000px;}
.x15_c00430{left:97.200000px;}
.xc_c00430{left:98.550000px;}
.x56_c00430{left:99.600000px;}
.x77_c00430{left:101.400000px;}
.x99_c00430{left:105.000000px;}
.x80_c00430{left:108.150000px;}
.x9a_c00430{left:110.550000px;}
.x84_c00430{left:111.750000px;}
.x8a_c00430{left:113.550000px;}
.x9d_c00430{left:115.650000px;}
.x2c_c00430{left:116.700000px;}
.x5b_c00430{left:118.500000px;}
.x4f_c00430{left:120.900000px;}
.x36_c00430{left:122.700000px;}
.x7b_c00430{left:123.900000px;}
.x9e_c00430{left:125.400000px;}
.x8b_c00430{left:126.900000px;}
.x4_c00430{left:128.100000px;}
.x16_c00430{left:131.100000px;}
.x9b_c00430{left:132.150000px;}
.xa9_c00430{left:133.500000px;}
.x1c_c00430{left:134.550000px;}
.x3f_c00430{left:136.500000px;}
.x31_c00430{left:138.000000px;}
.x53_c00430{left:139.650000px;}
.x44_c00430{left:141.150000px;}
.x6e_c00430{left:142.200000px;}
.x64_c00430{left:144.450000px;}
.x96_c00430{left:145.800000px;}
.x40_c00430{left:148.350000px;}
.x37_c00430{left:150.000000px;}
.x71_c00430{left:151.650000px;}
.x17_c00430{left:152.700000px;}
.xa0_c00430{left:154.350000px;}
.x32_c00430{left:156.000000px;}
.xa5_c00430{left:158.100000px;}
.x57_c00430{left:159.300000px;}
.xd_c00430{left:161.250000px;}
.x5_c00430{left:162.600000px;}
.x22_c00430{left:164.400000px;}
.x82_c00430{left:166.200000px;}
.x8e_c00430{left:167.250000px;}
.x5c_c00430{left:169.350000px;}
.x2b_c00430{left:172.650000px;}
.x50_c00430{left:174.900000px;}
.x33_c00430{left:177.300000px;}
.x8f_c00430{left:178.800000px;}
.xe_c00430{left:181.800000px;}
.x67_c00430{left:183.300000px;}
.x95_c00430{left:184.800000px;}
.x26_c00430{left:186.300000px;}
.x45_c00430{left:189.000000px;}
.x6_c00430{left:191.100000px;}
.x74_c00430{left:193.500000px;}
.x78_c00430{left:196.800000px;}
.x90_c00430{left:197.850000px;}
.xa1_c00430{left:199.950000px;}
.x7d_c00430{left:201.150000px;}
.x27_c00430{left:202.200000px;}
.x1d_c00430{left:204.000000px;}
.x5d_c00430{left:207.150000px;}
.x8c_c00430{left:208.350000px;}
.x46_c00430{left:210.600000px;}
.x58_c00430{left:211.800000px;}
.xa7_c00430{left:213.150000px;}
.x54_c00430{left:214.950000px;}
.x1e_c00430{left:216.300000px;}
.x83_c00430{left:217.650000px;}
.x75_c00430{left:219.450000px;}
.x72_c00430{left:222.150000px;}
.x7_c00430{left:223.500000px;}
.x93_c00430{left:225.300000px;}
.xf_c00430{left:226.800000px;}
.x38_c00430{left:229.200000px;}
.x86_c00430{left:232.350000px;}
.x91_c00430{left:234.900000px;}
.x18_c00430{left:237.600000px;}
.x59_c00430{left:238.800000px;}
.x85_c00430{left:240.600000px;}
.x39_c00430{left:241.800000px;}
.x7c_c00430{left:243.000000px;}
.x8d_c00430{left:244.650000px;}
.x92_c00430{left:246.000000px;}
.x23_c00430{left:247.200000px;}
.x34_c00430{left:250.800000px;}
.x28_c00430{left:252.300000px;}
.x51_c00430{left:253.800000px;}
.x60_c00430{left:254.850000px;}
.x10_c00430{left:256.350000px;}
.x9f_c00430{left:257.700000px;}
.xac_c00430{left:262.050000px;}
.x9c_c00430{left:263.250000px;}
.x2d_c00430{left:264.300000px;}
.x79_c00430{left:266.700000px;}
.x5e_c00430{left:268.350000px;}
.x68_c00430{left:271.500000px;}
.x7e_c00430{left:272.700000px;}
.x87_c00430{left:274.050000px;}
.x8_c00430{left:275.400000px;}
.x1f_c00430{left:277.500000px;}
.x47_c00430{left:279.450000px;}
.x4b_c00430{left:281.400000px;}
.xa3_c00430{left:282.450000px;}
.x61_c00430{left:285.150000px;}
.xa8_c00430{left:286.350000px;}
.x7a_c00430{left:288.600000px;}
.x6b_c00430{left:289.950000px;}
.x11_c00430{left:293.400000px;}
.x19_c00430{left:295.500000px;}
.x5a_c00430{left:297.900000px;}
.x65_c00430{left:299.250000px;}
.x41_c00430{left:302.550000px;}
.x4c_c00430{left:304.800000px;}
.x3a_c00430{left:306.600000px;}
.x97_c00430{left:308.250000px;}
.x69_c00430{left:310.050000px;}
.x6f_c00430{left:314.100000px;}
.x12_c00430{left:317.550000px;}
.x35_c00430{left:318.900000px;}
.x52_c00430{left:320.400000px;}
.x62_c00430{left:321.900000px;}
.x1_c00430{left:323.700000px;}
.x3b_c00430{left:325.350000px;}
.x48_c00430{left:327.750000px;}
.x29_c00430{left:330.000000px;}
.x2e_c00430{left:331.650000px;}
.x9_c00430{left:333.750000px;}
.x55_c00430{left:336.300000px;}
.x70_c00430{left:337.500000px;}
.x1a_c00430{left:339.000000px;}
.xa6_c00430{left:340.800000px;}
.x94_c00430{left:343.350000px;}
.x3c_c00430{left:344.850000px;}
.x49_c00430{left:347.850000px;}
.x20_c00430{left:350.250000px;}
.x4d_c00430{left:351.300000px;}
.xa_c00430{left:352.800000px;}
.x42_c00430{left:355.050000px;}
.x24_c00430{left:356.100000px;}
.x98_c00430{left:358.350000px;}
.x6c_c00430{left:360.150000px;}
.x21_c00430{left:361.350000px;}
.x2a_c00430{left:363.450000px;}
.x1b_c00430{left:364.950000px;}
.x5f_c00430{left:367.350000px;}
.x76_c00430{left:368.850000px;}
.x2f_c00430{left:369.900000px;}
.x81_c00430{left:371.250000px;}
.xaa_c00430{left:372.300000px;}
.x43_c00430{left:375.150000px;}
.xb_c00430{left:378.300000px;}
.x63_c00430{left:381.300000px;}
.x3d_c00430{left:382.800000px;}
.x6d_c00430{left:383.850000px;}
.x66_c00430{left:385.650000px;}
.x4a_c00430{left:388.200000px;}
.x73_c00430{left:389.550000px;}
.x13_c00430{left:390.600000px;}
.x4e_c00430{left:394.200000px;}
.x6a_c00430{left:396.150000px;}
.x30_c00430{left:400.500000px;}
.x14_c00430{left:402.150000px;}
.xa2_c00430{left:404.400000px;}
.x3e_c00430{left:405.900000px;}
.xa4_c00430{left:407.400000px;}
.x88_c00430{left:408.750000px;}
.x25_c00430{left:411.900000px;}
.xad_c00430{left:435.300000px;}
.xcb_c00430{left:436.500000px;}
.xf5_c00430{left:437.700000px;}
.x12f_c00430{left:439.800000px;}
.x14c_c00430{left:441.150000px;}
.x15c_c00430{left:442.200000px;}
.x15d_c00430{left:443.850000px;}
.xda_c00430{left:444.900000px;}
.xb3_c00430{left:452.550000px;}
.x128_c00430{left:453.600000px;}
.x117_c00430{left:454.950000px;}
.xdb_c00430{left:456.750000px;}
.xe2_c00430{left:461.700000px;}
.x134_c00430{left:462.900000px;}
.x137_c00430{left:463.950000px;}
.xc4_c00430{left:466.050000px;}
.xd1_c00430{left:467.700000px;}
.x149_c00430{left:469.200000px;}
.x132_c00430{left:473.400000px;}
.xbd_c00430{left:474.450000px;}
.x138_c00430{left:475.500000px;}
.xd2_c00430{left:477.000000px;}
.xf0_c00430{left:478.350000px;}
.xae_c00430{left:480.600000px;}
.x14b_c00430{left:482.550000px;}
.x11d_c00430{left:484.200000px;}
.xb5_c00430{left:486.000000px;}
.x122_c00430{left:487.650000px;}
.x103_c00430{left:491.400000px;}
.x153_c00430{left:493.200000px;}
.x106_c00430{left:499.650000px;}
.xcc_c00430{left:502.800000px;}
.xb6_c00430{left:504.000000px;}
.xf1_c00430{left:505.050000px;}
.xe3_c00430{left:506.700000px;}
.x146_c00430{left:510.450000px;}
.xdc_c00430{left:511.500000px;}
.xd3_c00430{left:513.300000px;}
.xaf_c00430{left:516.900000px;}
.x118_c00430{left:517.950000px;}
.x135_c00430{left:519.450000px;}
.xb7_c00430{left:521.250000px;}
.x10b_c00430{left:522.600000px;}
.x10d_c00430{left:523.650000px;}
.xcd_c00430{left:526.200000px;}
.xe4_c00430{left:528.300000px;}
.x112_c00430{left:530.850000px;}
.x10f_c00430{left:531.900000px;}
.xd4_c00430{left:533.850000px;}
.xbe_c00430{left:535.350000px;}
.x13d_c00430{left:537.150000px;}
.xdd_c00430{left:538.800000px;}
.xf6_c00430{left:540.750000px;}
.x10e_c00430{left:543.750000px;}
.xb8_c00430{left:546.450000px;}
.xfe_c00430{left:549.300000px;}
.x154_c00430{left:551.100000px;}
.x14f_c00430{left:553.050000px;}
.x12c_c00430{left:554.100000px;}
.x125_c00430{left:555.300000px;}
.xea_c00430{left:557.100000px;}
.x12a_c00430{left:559.200000px;}
.xf2_c00430{left:560.550000px;}
.xe5_c00430{left:562.500000px;}
.x104_c00430{left:564.750000px;}
.xb9_c00430{left:567.300000px;}
.xc5_c00430{left:569.400000px;}
.x110_c00430{left:571.500000px;}
.x150_c00430{left:573.600000px;}
.xce_c00430{left:575.550000px;}
.x130_c00430{left:578.100000px;}
.x107_c00430{left:579.600000px;}
.x12d_c00430{left:581.400000px;}
.xd5_c00430{left:583.200000px;}
.x147_c00430{left:584.550000px;}
.x141_c00430{left:586.050000px;}
.x129_c00430{left:587.250000px;}
.x123_c00430{left:589.200000px;}
.x116_c00430{left:590.400000px;}
.xf7_c00430{left:591.450000px;}
.xd6_c00430{left:592.500000px;}
.xff_c00430{left:593.550000px;}
.xbf_c00430{left:594.750000px;}
.x13f_c00430{left:596.250000px;}
.x133_c00430{left:598.650000px;}
.x11a_c00430{left:601.800000px;}
.xba_c00430{left:603.000000px;}
.x144_c00430{left:604.050000px;}
.x151_c00430{left:606.300000px;}
.x113_c00430{left:607.500000px;}
.x100_c00430{left:609.450000px;}
.xd7_c00430{left:611.550000px;}
.x124_c00430{left:612.600000px;}
.xb0_c00430{left:613.800000px;}
.xc0_c00430{left:615.300000px;}
.x105_c00430{left:616.500000px;}
.xde_c00430{left:618.300000px;}
.x139_c00430{left:623.850000px;}
.xc6_c00430{left:626.700000px;}
.x157_c00430{left:627.900000px;}
.xeb_c00430{left:630.150000px;}
.x126_c00430{left:631.950000px;}
.x148_c00430{left:633.450000px;}
.x120_c00430{left:634.800000px;}
.xc7_c00430{left:636.450000px;}
.xe6_c00430{left:639.300000px;}
.x12b_c00430{left:640.500000px;}
.x14d_c00430{left:641.550000px;}
.x114_c00430{left:644.250000px;}
.xec_c00430{left:645.300000px;}
.x127_c00430{left:647.100000px;}
.xf3_c00430{left:648.150000px;}
.x11b_c00430{left:649.650000px;}
.xc8_c00430{left:651.150000px;}
.xb4_c00430{left:652.350000px;}
.xdf_c00430{left:654.300000px;}
.x108_c00430{left:655.950000px;}
.xbb_c00430{left:657.000000px;}
.x14e_c00430{left:658.500000px;}
.x101_c00430{left:660.150000px;}
.xd8_c00430{left:663.000000px;}
.x145_c00430{left:665.250000px;}
.xed_c00430{left:666.600000px;}
.xc1_c00430{left:668.250000px;}
.x142_c00430{left:669.900000px;}
.xd9_c00430{left:672.300000px;}
.xe0_c00430{left:674.400000px;}
.x13a_c00430{left:675.750000px;}
.x11c_c00430{left:677.400000px;}
.xf8_c00430{left:679.050000px;}
.x109_c00430{left:682.200000px;}
.xcf_c00430{left:684.750000px;}
.x111_c00430{left:687.750000px;}
.xf9_c00430{left:690.600000px;}
.xe7_c00430{left:693.750000px;}
.xee_c00430{left:695.700000px;}
.x140_c00430{left:697.050000px;}
.xb1_c00430{left:699.150000px;}
.x13b_c00430{left:700.200000px;}
.x119_c00430{left:702.900000px;}
.xd0_c00430{left:704.850000px;}
.x15b_c00430{left:707.550000px;}
.x115_c00430{left:708.900000px;}
.xb2_c00430{left:711.000000px;}
.xe8_c00430{left:714.300000px;}
.x11e_c00430{left:715.800000px;}
.xc9_c00430{left:717.300000px;}
.x13c_c00430{left:718.500000px;}
.xfb_c00430{left:719.550000px;}
.x155_c00430{left:720.750000px;}
.xbc_c00430{left:723.900000px;}
.x102_c00430{left:725.400000px;}
.x121_c00430{left:727.050000px;}
.xc2_c00430{left:729.150000px;}
.x158_c00430{left:731.700000px;}
.x12e_c00430{left:732.900000px;}
.x131_c00430{left:734.100000px;}
.xfa_c00430{left:735.300000px;}
.x14a_c00430{left:739.650000px;}
.xca_c00430{left:740.700000px;}
.xf4_c00430{left:742.200000px;}
.xfc_c00430{left:743.250000px;}
.x2_c00430{left:744.900000px;}
.xe9_c00430{left:748.500000px;}
.x156_c00430{left:750.600000px;}
.xfd_c00430{left:751.950000px;}
.x11f_c00430{left:753.300000px;}
.xef_c00430{left:754.350000px;}
.x159_c00430{left:755.400000px;}
.x13e_c00430{left:756.450000px;}
.x10c_c00430{left:757.950000px;}
.x10a_c00430{left:760.050000px;}
.xe1_c00430{left:761.550000px;}
.xc3_c00430{left:763.050000px;}
.x136_c00430{left:764.850000px;}
.x15a_c00430{left:766.500000px;}
.x152_c00430{left:771.450000px;}
.x143_c00430{left:773.250000px;}
.x15e_c00430{left:892.800000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws7_c00430{word-spacing:-7.777778pt;}
.ws3_c00430{word-spacing:-7.728858pt;}
.ws2_c00430{word-spacing:-5.180516pt;}
.ws6_c00430{word-spacing:-4.210526pt;}
.ws5_c00430{word-spacing:-4.113667pt;}
.ws8_c00430{word-spacing:-1.805556pt;}
.ws4_c00430{word-spacing:-1.555556pt;}
.wsb_c00430{word-spacing:0.000000pt;}
.wsa_c00430{word-spacing:10.370370pt;}
.ws0_c00430{word-spacing:10.735435pt;}
.ws1_c00430{word-spacing:17.118280pt;}
.ws9_c00430{word-spacing:30.370370pt;}
.fs6_c00430{font-size:26.666667pt;}
.fs5_c00430{font-size:42.666667pt;}
.fs4_c00430{font-size:48.000000pt;}
.fs3_c00430{font-size:53.333333pt;}
.fs2_c00430{font-size:58.666667pt;}
.fs1_c00430{font-size:64.000000pt;}
.fs0_c00430{font-size:74.666667pt;}
.y0_c00430{bottom:0.000000pt;}
.y72_c00430{bottom:151.333333pt;}
.y71_c00430{bottom:165.466667pt;}
.y39_c00430{bottom:166.400000pt;}
.y70_c00430{bottom:178.533333pt;}
.y38_c00430{bottom:179.466667pt;}
.y6f_c00430{bottom:191.333333pt;}
.y37_c00430{bottom:192.000000pt;}
.y36_c00430{bottom:204.533333pt;}
.y6e_c00430{bottom:208.000000pt;}
.y6d_c00430{bottom:216.933333pt;}
.y35_c00430{bottom:217.333333pt;}
.y6c_c00430{bottom:229.733333pt;}
.y34_c00430{bottom:230.400000pt;}
.y6b_c00430{bottom:242.533333pt;}
.y33_c00430{bottom:243.200000pt;}
.y6a_c00430{bottom:255.333333pt;}
.y32_c00430{bottom:256.000000pt;}
.y69_c00430{bottom:268.133333pt;}
.y31_c00430{bottom:268.666667pt;}
.y68_c00430{bottom:281.200000pt;}
.y30_c00430{bottom:281.466667pt;}
.y67_c00430{bottom:293.733333pt;}
.y2f_c00430{bottom:294.266667pt;}
.y66_c00430{bottom:306.533333pt;}
.y2e_c00430{bottom:306.800000pt;}
.y65_c00430{bottom:319.333333pt;}
.y2d_c00430{bottom:320.266667pt;}
.y64_c00430{bottom:332.133333pt;}
.y2c_c00430{bottom:332.800000pt;}
.y63_c00430{bottom:344.666667pt;}
.y2b_c00430{bottom:345.600000pt;}
.y62_c00430{bottom:357.733333pt;}
.y2a_c00430{bottom:358.666667pt;}
.y61_c00430{bottom:370.533333pt;}
.y29_c00430{bottom:370.800000pt;}
.y60_c00430{bottom:383.066667pt;}
.y28_c00430{bottom:383.600000pt;}
.y5f_c00430{bottom:396.000000pt;}
.y27_c00430{bottom:396.400000pt;}
.y5e_c00430{bottom:408.800000pt;}
.y26_c00430{bottom:408.933333pt;}
.y25_c00430{bottom:421.066667pt;}
.y5d_c00430{bottom:421.333333pt;}
.y24_c00430{bottom:434.133333pt;}
.y5c_c00430{bottom:446.666667pt;}
.y23_c00430{bottom:446.933333pt;}
.y5b_c00430{bottom:459.466667pt;}
.y22_c00430{bottom:459.733333pt;}
.y21_c00430{bottom:472.266667pt;}
.y20_c00430{bottom:485.066667pt;}
.y1f_c00430{bottom:497.866667pt;}
.y5a_c00430{bottom:510.400000pt;}
.y1e_c00430{bottom:510.933333pt;}
.y1d_c00430{bottom:523.466667pt;}
.y59_c00430{bottom:536.266667pt;}
.y58_c00430{bottom:548.800000pt;}
.y57_c00430{bottom:561.600000pt;}
.y1c_c00430{bottom:565.333333pt;}
.y56_c00430{bottom:574.666667pt;}
.y1b_c00430{bottom:581.066667pt;}
.y55_c00430{bottom:587.466667pt;}
.y1a_c00430{bottom:596.800000pt;}
.y54_c00430{bottom:599.600000pt;}
.y19_c00430{bottom:612.800000pt;}
.y53_c00430{bottom:613.066667pt;}
.y52_c00430{bottom:625.866667pt;}
.y18_c00430{bottom:628.533333pt;}
.y51_c00430{bottom:638.400000pt;}
.y17_c00430{bottom:644.266667pt;}
.y50_c00430{bottom:651.200000pt;}
.y16_c00430{bottom:660.000000pt;}
.y4f_c00430{bottom:664.000000pt;}
.y15_c00430{bottom:675.733333pt;}
.y4e_c00430{bottom:676.533333pt;}
.y4d_c00430{bottom:689.333333pt;}
.y14_c00430{bottom:691.466667pt;}
.y4c_c00430{bottom:702.133333pt;}
.y13_c00430{bottom:707.200000pt;}
.y4b_c00430{bottom:714.933333pt;}
.y12_c00430{bottom:727.333333pt;}
.y4a_c00430{bottom:740.133333pt;}
.y11_c00430{bottom:743.066667pt;}
.y49_c00430{bottom:753.200000pt;}
.y10_c00430{bottom:759.066667pt;}
.y48_c00430{bottom:766.000000pt;}
.yf_c00430{bottom:774.800000pt;}
.y47_c00430{bottom:778.533333pt;}
.ye_c00430{bottom:790.800000pt;}
.y46_c00430{bottom:791.333333pt;}
.y45_c00430{bottom:804.400000pt;}
.yd_c00430{bottom:806.533333pt;}
.y44_c00430{bottom:817.200000pt;}
.yc_c00430{bottom:822.266667pt;}
.y43_c00430{bottom:829.733333pt;}
.yb_c00430{bottom:838.266667pt;}
.y42_c00430{bottom:842.533333pt;}
.ya_c00430{bottom:854.000000pt;}
.y41_c00430{bottom:855.333333pt;}
.y40_c00430{bottom:867.866667pt;}
.y9_c00430{bottom:870.666667pt;}
.y3f_c00430{bottom:880.266667pt;}
.y8_c00430{bottom:889.466667pt;}
.y3e_c00430{bottom:893.333333pt;}
.y7_c00430{bottom:905.466667pt;}
.y3d_c00430{bottom:905.866667pt;}
.y3c_c00430{bottom:918.666667pt;}
.y6_c00430{bottom:921.466667pt;}
.y3b_c00430{bottom:931.466667pt;}
.y5_c00430{bottom:937.200000pt;}
.y4_c00430{bottom:952.933333pt;}
.y3_c00430{bottom:968.933333pt;}
.y2_c00430{bottom:984.266667pt;}
.y3a_c00430{bottom:984.933333pt;}
.y1_c00430{bottom:1008.266667pt;}
.y73_c00430{bottom:1125.733333pt;}
.h8_c00430{height:26.666667pt;}
.h7_c00430{height:42.666667pt;}
.h6_c00430{height:48.000000pt;}
.h5_c00430{height:53.333333pt;}
.h4_c00430{height:58.666667pt;}
.h3_c00430{height:64.000000pt;}
.h2_c00430{height:74.666667pt;}
.h0_c00430{height:1130.559977pt;}
.h1_c00430{height:1130.666667pt;}
.w0_c00430{width:851.840007pt;}
.w1_c00430{width:852.000000pt;}
.x0_c00430{left:0.000000pt;}
.x7f_c00430{left:73.066667pt;}
.x89_c00430{left:74.666667pt;}
.xab_c00430{left:76.533333pt;}
.x3_c00430{left:84.800000pt;}
.x15_c00430{left:86.400000pt;}
.xc_c00430{left:87.600000pt;}
.x56_c00430{left:88.533333pt;}
.x77_c00430{left:90.133333pt;}
.x99_c00430{left:93.333333pt;}
.x80_c00430{left:96.133333pt;}
.x9a_c00430{left:98.266667pt;}
.x84_c00430{left:99.333333pt;}
.x8a_c00430{left:100.933333pt;}
.x9d_c00430{left:102.800000pt;}
.x2c_c00430{left:103.733333pt;}
.x5b_c00430{left:105.333333pt;}
.x4f_c00430{left:107.466667pt;}
.x36_c00430{left:109.066667pt;}
.x7b_c00430{left:110.133333pt;}
.x9e_c00430{left:111.466667pt;}
.x8b_c00430{left:112.800000pt;}
.x4_c00430{left:113.866667pt;}
.x16_c00430{left:116.533333pt;}
.x9b_c00430{left:117.466667pt;}
.xa9_c00430{left:118.666667pt;}
.x1c_c00430{left:119.600000pt;}
.x3f_c00430{left:121.333333pt;}
.x31_c00430{left:122.666667pt;}
.x53_c00430{left:124.133333pt;}
.x44_c00430{left:125.466667pt;}
.x6e_c00430{left:126.400000pt;}
.x64_c00430{left:128.400000pt;}
.x96_c00430{left:129.600000pt;}
.x40_c00430{left:131.866667pt;}
.x37_c00430{left:133.333333pt;}
.x71_c00430{left:134.800000pt;}
.x17_c00430{left:135.733333pt;}
.xa0_c00430{left:137.200000pt;}
.x32_c00430{left:138.666667pt;}
.xa5_c00430{left:140.533333pt;}
.x57_c00430{left:141.600000pt;}
.xd_c00430{left:143.333333pt;}
.x5_c00430{left:144.533333pt;}
.x22_c00430{left:146.133333pt;}
.x82_c00430{left:147.733333pt;}
.x8e_c00430{left:148.666667pt;}
.x5c_c00430{left:150.533333pt;}
.x2b_c00430{left:153.466667pt;}
.x50_c00430{left:155.466667pt;}
.x33_c00430{left:157.600000pt;}
.x8f_c00430{left:158.933333pt;}
.xe_c00430{left:161.600000pt;}
.x67_c00430{left:162.933333pt;}
.x95_c00430{left:164.266667pt;}
.x26_c00430{left:165.600000pt;}
.x45_c00430{left:168.000000pt;}
.x6_c00430{left:169.866667pt;}
.x74_c00430{left:172.000000pt;}
.x78_c00430{left:174.933333pt;}
.x90_c00430{left:175.866667pt;}
.xa1_c00430{left:177.733333pt;}
.x7d_c00430{left:178.800000pt;}
.x27_c00430{left:179.733333pt;}
.x1d_c00430{left:181.333333pt;}
.x5d_c00430{left:184.133333pt;}
.x8c_c00430{left:185.200000pt;}
.x46_c00430{left:187.200000pt;}
.x58_c00430{left:188.266667pt;}
.xa7_c00430{left:189.466667pt;}
.x54_c00430{left:191.066667pt;}
.x1e_c00430{left:192.266667pt;}
.x83_c00430{left:193.466667pt;}
.x75_c00430{left:195.066667pt;}
.x72_c00430{left:197.466667pt;}
.x7_c00430{left:198.666667pt;}
.x93_c00430{left:200.266667pt;}
.xf_c00430{left:201.600000pt;}
.x38_c00430{left:203.733333pt;}
.x86_c00430{left:206.533333pt;}
.x91_c00430{left:208.800000pt;}
.x18_c00430{left:211.200000pt;}
.x59_c00430{left:212.266667pt;}
.x85_c00430{left:213.866667pt;}
.x39_c00430{left:214.933333pt;}
.x7c_c00430{left:216.000000pt;}
.x8d_c00430{left:217.466667pt;}
.x92_c00430{left:218.666667pt;}
.x23_c00430{left:219.733333pt;}
.x34_c00430{left:222.933333pt;}
.x28_c00430{left:224.266667pt;}
.x51_c00430{left:225.600000pt;}
.x60_c00430{left:226.533333pt;}
.x10_c00430{left:227.866667pt;}
.x9f_c00430{left:229.066667pt;}
.xac_c00430{left:232.933333pt;}
.x9c_c00430{left:234.000000pt;}
.x2d_c00430{left:234.933333pt;}
.x79_c00430{left:237.066667pt;}
.x5e_c00430{left:238.533333pt;}
.x68_c00430{left:241.333333pt;}
.x7e_c00430{left:242.400000pt;}
.x87_c00430{left:243.600000pt;}
.x8_c00430{left:244.800000pt;}
.x1f_c00430{left:246.666667pt;}
.x47_c00430{left:248.400000pt;}
.x4b_c00430{left:250.133333pt;}
.xa3_c00430{left:251.066667pt;}
.x61_c00430{left:253.466667pt;}
.xa8_c00430{left:254.533333pt;}
.x7a_c00430{left:256.533333pt;}
.x6b_c00430{left:257.733333pt;}
.x11_c00430{left:260.800000pt;}
.x19_c00430{left:262.666667pt;}
.x5a_c00430{left:264.800000pt;}
.x65_c00430{left:266.000000pt;}
.x41_c00430{left:268.933333pt;}
.x4c_c00430{left:270.933333pt;}
.x3a_c00430{left:272.533333pt;}
.x97_c00430{left:274.000000pt;}
.x69_c00430{left:275.600000pt;}
.x6f_c00430{left:279.200000pt;}
.x12_c00430{left:282.266667pt;}
.x35_c00430{left:283.466667pt;}
.x52_c00430{left:284.800000pt;}
.x62_c00430{left:286.133333pt;}
.x1_c00430{left:287.733333pt;}
.x3b_c00430{left:289.200000pt;}
.x48_c00430{left:291.333333pt;}
.x29_c00430{left:293.333333pt;}
.x2e_c00430{left:294.800000pt;}
.x9_c00430{left:296.666667pt;}
.x55_c00430{left:298.933333pt;}
.x70_c00430{left:300.000000pt;}
.x1a_c00430{left:301.333333pt;}
.xa6_c00430{left:302.933333pt;}
.x94_c00430{left:305.200000pt;}
.x3c_c00430{left:306.533333pt;}
.x49_c00430{left:309.200000pt;}
.x20_c00430{left:311.333333pt;}
.x4d_c00430{left:312.266667pt;}
.xa_c00430{left:313.600000pt;}
.x42_c00430{left:315.600000pt;}
.x24_c00430{left:316.533333pt;}
.x98_c00430{left:318.533333pt;}
.x6c_c00430{left:320.133333pt;}
.x21_c00430{left:321.200000pt;}
.x2a_c00430{left:323.066667pt;}
.x1b_c00430{left:324.400000pt;}
.x5f_c00430{left:326.533333pt;}
.x76_c00430{left:327.866667pt;}
.x2f_c00430{left:328.800000pt;}
.x81_c00430{left:330.000000pt;}
.xaa_c00430{left:330.933333pt;}
.x43_c00430{left:333.466667pt;}
.xb_c00430{left:336.266667pt;}
.x63_c00430{left:338.933333pt;}
.x3d_c00430{left:340.266667pt;}
.x6d_c00430{left:341.200000pt;}
.x66_c00430{left:342.800000pt;}
.x4a_c00430{left:345.066667pt;}
.x73_c00430{left:346.266667pt;}
.x13_c00430{left:347.200000pt;}
.x4e_c00430{left:350.400000pt;}
.x6a_c00430{left:352.133333pt;}
.x30_c00430{left:356.000000pt;}
.x14_c00430{left:357.466667pt;}
.xa2_c00430{left:359.466667pt;}
.x3e_c00430{left:360.800000pt;}
.xa4_c00430{left:362.133333pt;}
.x88_c00430{left:363.333333pt;}
.x25_c00430{left:366.133333pt;}
.xad_c00430{left:386.933333pt;}
.xcb_c00430{left:388.000000pt;}
.xf5_c00430{left:389.066667pt;}
.x12f_c00430{left:390.933333pt;}
.x14c_c00430{left:392.133333pt;}
.x15c_c00430{left:393.066667pt;}
.x15d_c00430{left:394.533333pt;}
.xda_c00430{left:395.466667pt;}
.xb3_c00430{left:402.266667pt;}
.x128_c00430{left:403.200000pt;}
.x117_c00430{left:404.400000pt;}
.xdb_c00430{left:406.000000pt;}
.xe2_c00430{left:410.400000pt;}
.x134_c00430{left:411.466667pt;}
.x137_c00430{left:412.400000pt;}
.xc4_c00430{left:414.266667pt;}
.xd1_c00430{left:415.733333pt;}
.x149_c00430{left:417.066667pt;}
.x132_c00430{left:420.800000pt;}
.xbd_c00430{left:421.733333pt;}
.x138_c00430{left:422.666667pt;}
.xd2_c00430{left:424.000000pt;}
.xf0_c00430{left:425.200000pt;}
.xae_c00430{left:427.200000pt;}
.x14b_c00430{left:428.933333pt;}
.x11d_c00430{left:430.400000pt;}
.xb5_c00430{left:432.000000pt;}
.x122_c00430{left:433.466667pt;}
.x103_c00430{left:436.800000pt;}
.x153_c00430{left:438.400000pt;}
.x106_c00430{left:444.133333pt;}
.xcc_c00430{left:446.933333pt;}
.xb6_c00430{left:448.000000pt;}
.xf1_c00430{left:448.933333pt;}
.xe3_c00430{left:450.400000pt;}
.x146_c00430{left:453.733333pt;}
.xdc_c00430{left:454.666667pt;}
.xd3_c00430{left:456.266667pt;}
.xaf_c00430{left:459.466667pt;}
.x118_c00430{left:460.400000pt;}
.x135_c00430{left:461.733333pt;}
.xb7_c00430{left:463.333333pt;}
.x10b_c00430{left:464.533333pt;}
.x10d_c00430{left:465.466667pt;}
.xcd_c00430{left:467.733333pt;}
.xe4_c00430{left:469.600000pt;}
.x112_c00430{left:471.866667pt;}
.x10f_c00430{left:472.800000pt;}
.xd4_c00430{left:474.533333pt;}
.xbe_c00430{left:475.866667pt;}
.x13d_c00430{left:477.466667pt;}
.xdd_c00430{left:478.933333pt;}
.xf6_c00430{left:480.666667pt;}
.x10e_c00430{left:483.333333pt;}
.xb8_c00430{left:485.733333pt;}
.xfe_c00430{left:488.266667pt;}
.x154_c00430{left:489.866667pt;}
.x14f_c00430{left:491.600000pt;}
.x12c_c00430{left:492.533333pt;}
.x125_c00430{left:493.600000pt;}
.xea_c00430{left:495.200000pt;}
.x12a_c00430{left:497.066667pt;}
.xf2_c00430{left:498.266667pt;}
.xe5_c00430{left:500.000000pt;}
.x104_c00430{left:502.000000pt;}
.xb9_c00430{left:504.266667pt;}
.xc5_c00430{left:506.133333pt;}
.x110_c00430{left:508.000000pt;}
.x150_c00430{left:509.866667pt;}
.xce_c00430{left:511.600000pt;}
.x130_c00430{left:513.866667pt;}
.x107_c00430{left:515.200000pt;}
.x12d_c00430{left:516.800000pt;}
.xd5_c00430{left:518.400000pt;}
.x147_c00430{left:519.600000pt;}
.x141_c00430{left:520.933333pt;}
.x129_c00430{left:522.000000pt;}
.x123_c00430{left:523.733333pt;}
.x116_c00430{left:524.800000pt;}
.xf7_c00430{left:525.733333pt;}
.xd6_c00430{left:526.666667pt;}
.xff_c00430{left:527.600000pt;}
.xbf_c00430{left:528.666667pt;}
.x13f_c00430{left:530.000000pt;}
.x133_c00430{left:532.133333pt;}
.x11a_c00430{left:534.933333pt;}
.xba_c00430{left:536.000000pt;}
.x144_c00430{left:536.933333pt;}
.x151_c00430{left:538.933333pt;}
.x113_c00430{left:540.000000pt;}
.x100_c00430{left:541.733333pt;}
.xd7_c00430{left:543.600000pt;}
.x124_c00430{left:544.533333pt;}
.xb0_c00430{left:545.600000pt;}
.xc0_c00430{left:546.933333pt;}
.x105_c00430{left:548.000000pt;}
.xde_c00430{left:549.600000pt;}
.x139_c00430{left:554.533333pt;}
.xc6_c00430{left:557.066667pt;}
.x157_c00430{left:558.133333pt;}
.xeb_c00430{left:560.133333pt;}
.x126_c00430{left:561.733333pt;}
.x148_c00430{left:563.066667pt;}
.x120_c00430{left:564.266667pt;}
.xc7_c00430{left:565.733333pt;}
.xe6_c00430{left:568.266667pt;}
.x12b_c00430{left:569.333333pt;}
.x14d_c00430{left:570.266667pt;}
.x114_c00430{left:572.666667pt;}
.xec_c00430{left:573.600000pt;}
.x127_c00430{left:575.200000pt;}
.xf3_c00430{left:576.133333pt;}
.x11b_c00430{left:577.466667pt;}
.xc8_c00430{left:578.800000pt;}
.xb4_c00430{left:579.866667pt;}
.xdf_c00430{left:581.600000pt;}
.x108_c00430{left:583.066667pt;}
.xbb_c00430{left:584.000000pt;}
.x14e_c00430{left:585.333333pt;}
.x101_c00430{left:586.800000pt;}
.xd8_c00430{left:589.333333pt;}
.x145_c00430{left:591.333333pt;}
.xed_c00430{left:592.533333pt;}
.xc1_c00430{left:594.000000pt;}
.x142_c00430{left:595.466667pt;}
.xd9_c00430{left:597.600000pt;}
.xe0_c00430{left:599.466667pt;}
.x13a_c00430{left:600.666667pt;}
.x11c_c00430{left:602.133333pt;}
.xf8_c00430{left:603.600000pt;}
.x109_c00430{left:606.400000pt;}
.xcf_c00430{left:608.666667pt;}
.x111_c00430{left:611.333333pt;}
.xf9_c00430{left:613.866667pt;}
.xe7_c00430{left:616.666667pt;}
.xee_c00430{left:618.400000pt;}
.x140_c00430{left:619.600000pt;}
.xb1_c00430{left:621.466667pt;}
.x13b_c00430{left:622.400000pt;}
.x119_c00430{left:624.800000pt;}
.xd0_c00430{left:626.533333pt;}
.x15b_c00430{left:628.933333pt;}
.x115_c00430{left:630.133333pt;}
.xb2_c00430{left:632.000000pt;}
.xe8_c00430{left:634.933333pt;}
.x11e_c00430{left:636.266667pt;}
.xc9_c00430{left:637.600000pt;}
.x13c_c00430{left:638.666667pt;}
.xfb_c00430{left:639.600000pt;}
.x155_c00430{left:640.666667pt;}
.xbc_c00430{left:643.466667pt;}
.x102_c00430{left:644.800000pt;}
.x121_c00430{left:646.266667pt;}
.xc2_c00430{left:648.133333pt;}
.x158_c00430{left:650.400000pt;}
.x12e_c00430{left:651.466667pt;}
.x131_c00430{left:652.533333pt;}
.xfa_c00430{left:653.600000pt;}
.x14a_c00430{left:657.466667pt;}
.xca_c00430{left:658.400000pt;}
.xf4_c00430{left:659.733333pt;}
.xfc_c00430{left:660.666667pt;}
.x2_c00430{left:662.133333pt;}
.xe9_c00430{left:665.333333pt;}
.x156_c00430{left:667.200000pt;}
.xfd_c00430{left:668.400000pt;}
.x11f_c00430{left:669.600000pt;}
.xef_c00430{left:670.533333pt;}
.x159_c00430{left:671.466667pt;}
.x13e_c00430{left:672.400000pt;}
.x10c_c00430{left:673.733333pt;}
.x10a_c00430{left:675.600000pt;}
.xe1_c00430{left:676.933333pt;}
.xc3_c00430{left:678.266667pt;}
.x136_c00430{left:679.866667pt;}
.x15a_c00430{left:681.333333pt;}
.x152_c00430{left:685.733333pt;}
.x143_c00430{left:687.333333pt;}
.x15e_c00430{left:793.600000pt;}
}





/* 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_c00431 {
    display:none;
  }
  .loading-indicator_c00431.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00431 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_c00431 { 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_c00431" -> "#page-container .classname_c00431")
 */
.pf_c00431 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00431 { /* 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_c00431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00431 { /* 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_c00431 { /* 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_c00431 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00431 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00431 {overflow:visible;}
  }
}
.c_c00431 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00431 { /* 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_c00431:after { /* webkit #35443 */
  content: '';
}
.t_c00431:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00431 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 */
}
.__c00431 { /* 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_c00431 { /* info for Javascript */
  display:none;
}
.l_c00431 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00431 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00431 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00431: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_c00431 {
    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_c00431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00431.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_c00431 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00431;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.000000;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;}
.m78_c00431{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00431{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.md2_c00431{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.m114_c00431{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00431{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me9_c00431{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00431{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m45_c00431{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m98_c00431{transform:matrix(0.098500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00431{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m71_c00431{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00431{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m54_c00431{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m119_c00431{transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00431{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m121_c00431{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.mec_c00431{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00431{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.maa_c00431{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00431{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00431{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m19_c00431{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00431{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m23_c00431{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00431{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m18_c00431{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m13_c00431{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m97_c00431{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m116_c00431{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00431{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00431{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m94_c00431{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m15_c00431{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m11_c00431{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m55_c00431{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m118_c00431{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m41_c00431{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00431{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m91_c00431{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m102_c00431{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00431{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m117_c00431{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m81_c00431{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc_c00431{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m43_c00431{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00431{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00431{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m40_c00431{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00431{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m14_c00431{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m107_c00431{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00431{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00431{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00431{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m48_c00431{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00431{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m122_c00431{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00431{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00431{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m20_c00431{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00431{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m85_c00431{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m28_c00431{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m58_c00431{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00431{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00431{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00431{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m21_c00431{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.me7_c00431{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00431{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00431{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00431{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00431{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m59_c00431{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m92_c00431{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00431{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m35_c00431{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m10_c00431{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m34_c00431{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m47_c00431{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m86_c00431{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00431{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m95_c00431{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00431{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m110_c00431{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m77_c00431{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00431{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00431{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m51_c00431{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00431{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m50_c00431{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00431{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m65_c00431{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00431{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m108_c00431{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md4_c00431{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00431{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00431{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00431{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00431{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7_c00431{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00431{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00431{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m76_c00431{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00431{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m36_c00431{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00431{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m84_c00431{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00431{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.md_c00431{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m25_c00431{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m56_c00431{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00431{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00431{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00431{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00431{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.med_c00431{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.meb_c00431{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me_c00431{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m111_c00431{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00431{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00431{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00431{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m52_c00431{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00431{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m31_c00431{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00431{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m53_c00431{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m44_c00431{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00431{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00431{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00431{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00431{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5_c00431{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m57_c00431{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mae_c00431{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md0_c00431{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00431{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00431{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00431{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mca_c00431{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00431{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m73_c00431{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00431{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m60_c00431{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m87_c00431{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m64_c00431{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00431{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00431{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m106_c00431{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00431{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m27_c00431{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m46_c00431{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00431{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00431{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00431{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m12_c00431{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md6_c00431{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m72_c00431{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m30_c00431{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00431{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6_c00431{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00431{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00431{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00431{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00431{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00431{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m93_c00431{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00431{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00431{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00431{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00431{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00431{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00431{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3_c00431{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00431{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.md1_c00431{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m109_c00431{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m70_c00431{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m38_c00431{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me1_c00431{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m104_c00431{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me4_c00431{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m75_c00431{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00431{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00431{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m105_c00431{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mea_c00431{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m80_c00431{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m69_c00431{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00431{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb_c00431{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m90_c00431{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m88_c00431{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00431{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00431{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.maf_c00431{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mba_c00431{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf_c00431{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00431{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m83_c00431{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00431{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m61_c00431{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m96_c00431{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m103_c00431{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00431{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00431{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m66_c00431{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m68_c00431{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m120_c00431{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mda_c00431{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md7_c00431{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m26_c00431{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m39_c00431{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m32_c00431{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me8_c00431{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00431{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m8_c00431{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00431{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00431{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m100_c00431{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma_c00431{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m63_c00431{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00431{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mac_c00431{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m62_c00431{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00431{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md9_c00431{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m37_c00431{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m33_c00431{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00431{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9_c00431{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mee_c00431{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00431{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00431{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m49_c00431{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md8_c00431{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md3_c00431{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.me2_c00431{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md5_c00431{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00431{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m67_c00431{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00431{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00431{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00431{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m29_c00431{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00431{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00431{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mce_c00431{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m24_c00431{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00431{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mde_c00431{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00431{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m112_c00431{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m79_c00431{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00431{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00431{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00431{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00431{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00431{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m82_c00431{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mad_c00431{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m2_c00431{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00431{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00431{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m74_c00431{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.me0_c00431{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m113_c00431{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m115_c00431{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m42_c00431{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c00431{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.me6_c00431{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m99_c00431{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00431{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00431{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00431{transform:matrix(0.319750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319750,0.000000,0.000000,0.250000,0,0);}
.m101_c00431{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00431{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00431{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.mff_c00431{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mef_c00431{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m1_c00431{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m89_c00431{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00431{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.mab_c00431{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00431{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.me3_c00431{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.me5_c00431{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m16_c00431{transform:matrix(0.567250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567250,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls0_c00431{letter-spacing:0.000000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{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__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00431{word-spacing:-4.516129px;}
.ws2_c00431{word-spacing:-4.473684px;}
.ws5_c00431{word-spacing:0.000000px;}
.ws3_c00431{word-spacing:0.770171px;}
.ws4_c00431{word-spacing:4.497545px;}
.ws0_c00431{word-spacing:7.205882px;}
.fc0_c00431{color:transparent;}
.fs5_c00431{font-size:54.000000px;}
.fs4_c00431{font-size:60.000000px;}
.fs2_c00431{font-size:66.000000px;}
.fs3_c00431{font-size:72.000000px;}
.fs0_c00431{font-size:78.000000px;}
.fs1_c00431{font-size:84.000000px;}
.y0_c00431{bottom:0.000000px;}
.y66_c00431{bottom:193.650000px;}
.y3a_c00431{bottom:195.450000px;}
.y39_c00431{bottom:210.150000px;}
.y65_c00431{bottom:211.950000px;}
.y38_c00431{bottom:224.250000px;}
.y64_c00431{bottom:229.650000px;}
.y37_c00431{bottom:238.650000px;}
.y63_c00431{bottom:247.350000px;}
.y36_c00431{bottom:252.450000px;}
.y62_c00431{bottom:265.350000px;}
.y35_c00431{bottom:266.850000px;}
.y34_c00431{bottom:281.250000px;}
.y61_c00431{bottom:283.350000px;}
.y33_c00431{bottom:294.900000px;}
.y60_c00431{bottom:301.350000px;}
.y32_c00431{bottom:309.600000px;}
.y31_c00431{bottom:323.700000px;}
.y5f_c00431{bottom:327.300000px;}
.y30_c00431{bottom:337.800000px;}
.y5e_c00431{bottom:345.300000px;}
.y2f_c00431{bottom:351.900000px;}
.y2e_c00431{bottom:366.000000px;}
.y5d_c00431{bottom:376.500000px;}
.y2d_c00431{bottom:380.100000px;}
.y2c_c00431{bottom:394.200000px;}
.y2b_c00431{bottom:408.000000px;}
.y5c_c00431{bottom:412.500000px;}
.y2a_c00431{bottom:423.150000px;}
.y5b_c00431{bottom:430.500000px;}
.y29_c00431{bottom:437.850000px;}
.y28_c00431{bottom:452.250000px;}
.y5a_c00431{bottom:457.200000px;}
.y27_c00431{bottom:466.950000px;}
.y59_c00431{bottom:475.500000px;}
.y26_c00431{bottom:481.650000px;}
.y58_c00431{bottom:493.500000px;}
.y25_c00431{bottom:496.050000px;}
.y24_c00431{bottom:510.450000px;}
.y57_c00431{bottom:511.500000px;}
.y23_c00431{bottom:524.850000px;}
.y56_c00431{bottom:529.050000px;}
.y22_c00431{bottom:539.250000px;}
.y55_c00431{bottom:547.050000px;}
.y21_c00431{bottom:553.650000px;}
.y54_c00431{bottom:564.750000px;}
.y20_c00431{bottom:567.750000px;}
.y1f_c00431{bottom:582.450000px;}
.y53_c00431{bottom:600.750000px;}
.y52_c00431{bottom:618.750000px;}
.y1e_c00431{bottom:627.750000px;}
.y51_c00431{bottom:637.050000px;}
.y1d_c00431{bottom:645.750000px;}
.y50_c00431{bottom:654.750000px;}
.y1c_c00431{bottom:663.750000px;}
.y4f_c00431{bottom:672.750000px;}
.y1b_c00431{bottom:681.750000px;}
.y4e_c00431{bottom:690.750000px;}
.y1a_c00431{bottom:699.750000px;}
.y4d_c00431{bottom:708.750000px;}
.y19_c00431{bottom:717.450000px;}
.y4c_c00431{bottom:726.450000px;}
.y18_c00431{bottom:735.450000px;}
.y4b_c00431{bottom:744.450000px;}
.y17_c00431{bottom:753.450000px;}
.y4a_c00431{bottom:761.700000px;}
.y16_c00431{bottom:771.450000px;}
.y49_c00431{bottom:788.400000px;}
.y15_c00431{bottom:789.450000px;}
.y48_c00431{bottom:806.700000px;}
.y14_c00431{bottom:807.150000px;}
.y47_c00431{bottom:824.400000px;}
.y13_c00431{bottom:829.500000px;}
.y12_c00431{bottom:847.500000px;}
.y46_c00431{bottom:851.250000px;}
.y11_c00431{bottom:865.500000px;}
.y45_c00431{bottom:869.250000px;}
.y10_c00431{bottom:883.500000px;}
.y44_c00431{bottom:886.950000px;}
.yf_c00431{bottom:904.800000px;}
.y43_c00431{bottom:904.950000px;}
.ye_c00431{bottom:922.800000px;}
.y42_c00431{bottom:922.950000px;}
.yd_c00431{bottom:940.800000px;}
.y41_c00431{bottom:940.950000px;}
.yc_c00431{bottom:958.500000px;}
.y40_c00431{bottom:958.950000px;}
.yb_c00431{bottom:976.500000px;}
.y3f_c00431{bottom:979.500000px;}
.ya_c00431{bottom:994.500000px;}
.y3e_c00431{bottom:994.650000px;}
.y9_c00431{bottom:1012.200000px;}
.y3d_c00431{bottom:1017.000000px;}
.y8_c00431{bottom:1030.200000px;}
.y3c_c00431{bottom:1034.700000px;}
.y7_c00431{bottom:1047.900000px;}
.y6_c00431{bottom:1065.900000px;}
.y5_c00431{bottom:1083.900000px;}
.y4_c00431{bottom:1101.900000px;}
.y3b_c00431{bottom:1119.600000px;}
.y3_c00431{bottom:1119.900000px;}
.y1_c00431{bottom:1144.500000px;}
.y2_c00431{bottom:1146.600000px;}
.h7_c00431{height:54.000000px;}
.h6_c00431{height:60.000000px;}
.h4_c00431{height:66.000000px;}
.h5_c00431{height:72.000000px;}
.h2_c00431{height:78.000000px;}
.h3_c00431{height:84.000000px;}
.h1_c00431{height:1271.250000px;}
.h0_c00431{height:1271.519990px;}
.w0_c00431{width:958.320007px;}
.w1_c00431{width:958.500000px;}
.x0_c00431{left:0.000000px;}
.x7d_c00431{left:178.350000px;}
.x8d_c00431{left:179.850000px;}
.x1_c00431{left:181.800000px;}
.x7a_c00431{left:185.700000px;}
.x7b_c00431{left:193.950000px;}
.x58_c00431{left:196.650000px;}
.x50_c00431{left:198.000000px;}
.x46_c00431{left:199.200000px;}
.x8_c00431{left:201.150000px;}
.x94_c00431{left:203.100000px;}
.x82_c00431{left:204.300000px;}
.x95_c00431{left:207.150000px;}
.x91_c00431{left:211.500000px;}
.xaf_c00431{left:213.150000px;}
.x7c_c00431{left:214.800000px;}
.x97_c00431{left:217.650000px;}
.x73_c00431{left:219.150000px;}
.x3_c00431{left:220.650000px;}
.x76_c00431{left:222.900000px;}
.x4a_c00431{left:224.250000px;}
.x47_c00431{left:225.450000px;}
.x17_c00431{left:226.650000px;}
.xad_c00431{left:227.850000px;}
.x37_c00431{left:229.200000px;}
.x63_c00431{left:231.300000px;}
.x98_c00431{left:232.350000px;}
.x29_c00431{left:235.800000px;}
.xac_c00431{left:238.200000px;}
.x5f_c00431{left:239.400000px;}
.x41_c00431{left:240.750000px;}
.x48_c00431{left:241.950000px;}
.x6f_c00431{left:243.900000px;}
.x51_c00431{left:246.300000px;}
.x18_c00431{left:248.250000px;}
.x69_c00431{left:251.100000px;}
.x8e_c00431{left:252.300000px;}
.x25_c00431{left:254.100000px;}
.x59_c00431{left:255.750000px;}
.x2a_c00431{left:257.700000px;}
.x64_c00431{left:260.400000px;}
.x38_c00431{left:263.100000px;}
.x4_c00431{left:266.400000px;}
.x6d_c00431{left:267.600000px;}
.x5b_c00431{left:268.950000px;}
.x7e_c00431{left:270.150000px;}
.x2f_c00431{left:271.200000px;}
.x52_c00431{left:274.050000px;}
.xf_c00431{left:275.250000px;}
.x9_c00431{left:277.500000px;}
.x1f_c00431{left:280.650000px;}
.x39_c00431{left:283.950000px;}
.x2b_c00431{left:285.000000px;}
.xb0_c00431{left:286.350000px;}
.xa0_c00431{left:288.600000px;}
.xa6_c00431{left:289.800000px;}
.x5c_c00431{left:290.850000px;}
.x33_c00431{left:291.900000px;}
.x4b_c00431{left:292.950000px;}
.x19_c00431{left:294.300000px;}
.x83_c00431{left:295.800000px;}
.x60_c00431{left:297.300000px;}
.x10_c00431{left:299.400000px;}
.x2c_c00431{left:300.450000px;}
.x42_c00431{left:302.700000px;}
.x8f_c00431{left:303.750000px;}
.xa8_c00431{left:304.950000px;}
.x53_c00431{left:306.450000px;}
.x3a_c00431{left:307.650000px;}
.x5_c00431{left:309.300000px;}
.x8a_c00431{left:311.100000px;}
.xae_c00431{left:312.450000px;}
.x74_c00431{left:315.600000px;}
.xa_c00431{left:316.800000px;}
.x1a_c00431{left:319.200000px;}
.x11_c00431{left:321.300000px;}
.x43_c00431{left:322.800000px;}
.x20_c00431{left:324.300000px;}
.x54_c00431{left:326.550000px;}
.x68_c00431{left:329.700000px;}
.x1b_c00431{left:334.650000px;}
.x86_c00431{left:336.150000px;}
.xa3_c00431{left:337.200000px;}
.x34_c00431{left:339.750000px;}
.x77_c00431{left:342.300000px;}
.x84_c00431{left:344.100000px;}
.x6_c00431{left:345.600000px;}
.x88_c00431{left:347.850000px;}
.x65_c00431{left:348.900000px;}
.x3b_c00431{left:351.150000px;}
.x78_c00431{left:352.350000px;}
.x9e_c00431{left:354.150000px;}
.xb_c00431{left:355.650000px;}
.x6a_c00431{left:357.300000px;}
.x5d_c00431{left:358.950000px;}
.x1c_c00431{left:361.650000px;}
.x55_c00431{left:364.050000px;}
.x49_c00431{left:365.700000px;}
.x26_c00431{left:367.200000px;}
.x12_c00431{left:369.900000px;}
.xa4_c00431{left:371.400000px;}
.x35_c00431{left:372.450000px;}
.x3c_c00431{left:374.550000px;}
.x9b_c00431{left:375.750000px;}
.x21_c00431{left:378.000000px;}
.x1d_c00431{left:379.650000px;}
.x89_c00431{left:381.750000px;}
.x96_c00431{left:382.800000px;}
.xa9_c00431{left:384.150000px;}
.x90_c00431{left:385.800000px;}
.xa7_c00431{left:387.450000px;}
.x9c_c00431{left:389.850000px;}
.x44_c00431{left:390.900000px;}
.x56_c00431{left:392.100000px;}
.xc_c00431{left:394.500000px;}
.xa1_c00431{left:396.900000px;}
.x7f_c00431{left:399.000000px;}
.x4c_c00431{left:400.500000px;}
.x5a_c00431{left:403.350000px;}
.x2d_c00431{left:405.600000px;}
.xa5_c00431{left:407.700000px;}
.x70_c00431{left:409.200000px;}
.x13_c00431{left:413.400000px;}
.x27_c00431{left:417.900000px;}
.x66_c00431{left:420.150000px;}
.xa2_c00431{left:421.800000px;}
.x4d_c00431{left:423.150000px;}
.x85_c00431{left:424.650000px;}
.x71_c00431{left:426.900000px;}
.x99_c00431{left:429.150000px;}
.x2_c00431{left:430.500000px;}
.x30_c00431{left:431.850000px;}
.x92_c00431{left:433.200000px;}
.x79_c00431{left:434.400000px;}
.x7_c00431{left:435.900000px;}
.x3d_c00431{left:438.300000px;}
.x14_c00431{left:439.350000px;}
.x28_c00431{left:441.300000px;}
.x1e_c00431{left:442.650000px;}
.x8b_c00431{left:445.800000px;}
.xd_c00431{left:447.300000px;}
.x9a_c00431{left:449.400000px;}
.x22_c00431{left:452.850000px;}
.x6b_c00431{left:454.800000px;}
.x4e_c00431{left:456.600000px;}
.x87_c00431{left:458.550000px;}
.x31_c00431{left:459.900000px;}
.xaa_c00431{left:461.550000px;}
.x67_c00431{left:463.350000px;}
.x61_c00431{left:464.700000px;}
.x80_c00431{left:466.350000px;}
.x36_c00431{left:468.900000px;}
.x45_c00431{left:470.850000px;}
.x3e_c00431{left:473.550000px;}
.x15_c00431{left:474.600000px;}
.x23_c00431{left:476.250000px;}
.xab_c00431{left:478.650000px;}
.xe_c00431{left:480.450000px;}
.x93_c00431{left:482.850000px;}
.x81_c00431{left:484.050000px;}
.x2e_c00431{left:485.100000px;}
.x62_c00431{left:486.600000px;}
.x3f_c00431{left:488.700000px;}
.x8c_c00431{left:489.750000px;}
.x6e_c00431{left:490.950000px;}
.x4f_c00431{left:492.900000px;}
.x9d_c00431{left:494.400000px;}
.x24_c00431{left:496.050000px;}
.x72_c00431{left:499.650000px;}
.x57_c00431{left:501.150000px;}
.x6c_c00431{left:502.650000px;}
.x5e_c00431{left:504.000000px;}
.x32_c00431{left:505.650000px;}
.x40_c00431{left:508.800000px;}
.x16_c00431{left:510.300000px;}
.x9f_c00431{left:512.250000px;}
.x75_c00431{left:514.050000px;}
.x136_c00431{left:538.200000px;}
.xfa_c00431{left:540.300000px;}
.xca_c00431{left:541.800000px;}
.x145_c00431{left:554.250000px;}
.x100_c00431{left:555.300000px;}
.xf8_c00431{left:557.250000px;}
.xb1_c00431{left:558.750000px;}
.xd8_c00431{left:560.400000px;}
.xfb_c00431{left:564.000000px;}
.x131_c00431{left:573.450000px;}
.x11a_c00431{left:574.800000px;}
.xcf_c00431{left:578.100000px;}
.x140_c00431{left:580.050000px;}
.xc5_c00431{left:581.700000px;}
.xbf_c00431{left:585.300000px;}
.xb2_c00431{left:586.800000px;}
.x105_c00431{left:589.050000px;}
.xe5_c00431{left:591.000000px;}
.x12c_c00431{left:595.050000px;}
.x114_c00431{left:596.250000px;}
.xd9_c00431{left:598.200000px;}
.x146_c00431{left:599.700000px;}
.xf1_c00431{left:602.550000px;}
.x10c_c00431{left:607.200000px;}
.xb3_c00431{left:608.700000px;}
.xf9_c00431{left:610.500000px;}
.x101_c00431{left:612.900000px;}
.x141_c00431{left:614.250000px;}
.x132_c00431{left:616.950000px;}
.x143_c00431{left:618.150000px;}
.x106_c00431{left:619.650000px;}
.xcb_c00431{left:621.750000px;}
.x13c_c00431{left:623.100000px;}
.xed_c00431{left:625.500000px;}
.xd0_c00431{left:627.450000px;}
.x11b_c00431{left:628.800000px;}
.xce_c00431{left:632.400000px;}
.xc0_c00431{left:635.700000px;}
.x115_c00431{left:637.350000px;}
.xe6_c00431{left:638.550000px;}
.x122_c00431{left:639.600000px;}
.x129_c00431{left:642.150000px;}
.x118_c00431{left:644.550000px;}
.x147_c00431{left:645.900000px;}
.xc1_c00431{left:647.550000px;}
.xc6_c00431{left:649.800000px;}
.x12e_c00431{left:651.150000px;}
.xf2_c00431{left:652.950000px;}
.x107_c00431{left:655.350000px;}
.xe7_c00431{left:657.300000px;}
.xc7_c00431{left:658.500000px;}
.x11c_c00431{left:662.250000px;}
.xba_c00431{left:666.300000px;}
.x116_c00431{left:667.650000px;}
.xda_c00431{left:669.150000px;}
.x123_c00431{left:672.300000px;}
.xd1_c00431{left:673.500000px;}
.xf3_c00431{left:674.850000px;}
.xeb_c00431{left:676.200000px;}
.x126_c00431{left:677.400000px;}
.xc2_c00431{left:678.450000px;}
.xbb_c00431{left:680.400000px;}
.x11d_c00431{left:683.100000px;}
.xee_c00431{left:684.150000px;}
.x12b_c00431{left:686.100000px;}
.xdf_c00431{left:688.200000px;}
.xb4_c00431{left:690.000000px;}
.x109_c00431{left:694.050000px;}
.xfc_c00431{left:696.450000px;}
.x10d_c00431{left:697.500000px;}
.xc3_c00431{left:698.550000px;}
.x102_c00431{left:699.600000px;}
.x125_c00431{left:701.850000px;}
.x142_c00431{left:702.900000px;}
.x127_c00431{left:705.450000px;}
.xf4_c00431{left:707.550000px;}
.x11e_c00431{left:710.400000px;}
.xd2_c00431{left:712.350000px;}
.xc8_c00431{left:713.850000px;}
.xd4_c00431{left:715.200000px;}
.x138_c00431{left:718.200000px;}
.xcc_c00431{left:719.250000px;}
.xbc_c00431{left:721.500000px;}
.x12f_c00431{left:722.850000px;}
.x103_c00431{left:724.050000px;}
.x10e_c00431{left:727.800000px;}
.x148_c00431{left:729.750000px;}
.x12d_c00431{left:730.800000px;}
.x130_c00431{left:733.950000px;}
.xc9_c00431{left:735.150000px;}
.x108_c00431{left:736.350000px;}
.xe0_c00431{left:738.150000px;}
.x11f_c00431{left:740.250000px;}
.xdb_c00431{left:742.200000px;}
.xcd_c00431{left:745.500000px;}
.xb5_c00431{left:746.550000px;}
.x10f_c00431{left:749.400000px;}
.xbd_c00431{left:751.350000px;}
.x134_c00431{left:753.000000px;}
.xd5_c00431{left:754.800000px;}
.xb6_c00431{left:756.300000px;}
.x149_c00431{left:758.250000px;}
.x13d_c00431{left:760.350000px;}
.xe8_c00431{left:761.700000px;}
.x10a_c00431{left:762.750000px;}
.x12a_c00431{left:765.450000px;}
.xf5_c00431{left:767.250000px;}
.xb7_c00431{left:768.600000px;}
.xdc_c00431{left:771.300000px;}
.x111_c00431{left:773.250000px;}
.xfd_c00431{left:775.650000px;}
.x137_c00431{left:777.150000px;}
.xe9_c00431{left:780.450000px;}
.xf6_c00431{left:783.750000px;}
.xb8_c00431{left:786.600000px;}
.xe1_c00431{left:789.300000px;}
.x110_c00431{left:790.500000px;}
.xd3_c00431{left:792.600000px;}
.x13e_c00431{left:795.300000px;}
.xc4_c00431{left:797.250000px;}
.xdd_c00431{left:798.300000px;}
.xfe_c00431{left:800.550000px;}
.x104_c00431{left:803.250000px;}
.x120_c00431{left:805.050000px;}
.x13b_c00431{left:807.900000px;}
.x10b_c00431{left:809.850000px;}
.xbe_c00431{left:811.050000px;}
.xef_c00431{left:812.700000px;}
.x112_c00431{left:814.650000px;}
.xe2_c00431{left:816.600000px;}
.x121_c00431{left:819.150000px;}
.x113_c00431{left:825.450000px;}
.x139_c00431{left:826.800000px;}
.x14a_c00431{left:829.650000px;}
.xd6_c00431{left:831.450000px;}
.xea_c00431{left:834.150000px;}
.xe3_c00431{left:836.400000px;}
.xec_c00431{left:837.900000px;}
.x135_c00431{left:839.700000px;}
.x119_c00431{left:840.900000px;}
.x13f_c00431{left:843.150000px;}
.x128_c00431{left:848.100000px;}
.x14b_c00431{left:849.150000px;}
.xde_c00431{left:850.200000px;}
.xd7_c00431{left:852.000000px;}
.x117_c00431{left:855.150000px;}
.x124_c00431{left:856.350000px;}
.xff_c00431{left:859.200000px;}
.xf7_c00431{left:860.400000px;}
.x144_c00431{left:861.750000px;}
.xb9_c00431{left:864.300000px;}
.x13a_c00431{left:866.100000px;}
.xe4_c00431{left:867.750000px;}
.x133_c00431{left:870.600000px;}
.xf0_c00431{left:874.500000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws1_c00431{word-spacing:-4.014337pt;}
.ws2_c00431{word-spacing:-3.976608pt;}
.ws5_c00431{word-spacing:0.000000pt;}
.ws3_c00431{word-spacing:0.684597pt;}
.ws4_c00431{word-spacing:3.997818pt;}
.ws0_c00431{word-spacing:6.405229pt;}
.fs5_c00431{font-size:48.000000pt;}
.fs4_c00431{font-size:53.333333pt;}
.fs2_c00431{font-size:58.666667pt;}
.fs3_c00431{font-size:64.000000pt;}
.fs0_c00431{font-size:69.333333pt;}
.fs1_c00431{font-size:74.666667pt;}
.y0_c00431{bottom:0.000000pt;}
.y66_c00431{bottom:172.133333pt;}
.y3a_c00431{bottom:173.733333pt;}
.y39_c00431{bottom:186.800000pt;}
.y65_c00431{bottom:188.400000pt;}
.y38_c00431{bottom:199.333333pt;}
.y64_c00431{bottom:204.133333pt;}
.y37_c00431{bottom:212.133333pt;}
.y63_c00431{bottom:219.866667pt;}
.y36_c00431{bottom:224.400000pt;}
.y62_c00431{bottom:235.866667pt;}
.y35_c00431{bottom:237.200000pt;}
.y34_c00431{bottom:250.000000pt;}
.y61_c00431{bottom:251.866667pt;}
.y33_c00431{bottom:262.133333pt;}
.y60_c00431{bottom:267.866667pt;}
.y32_c00431{bottom:275.200000pt;}
.y31_c00431{bottom:287.733333pt;}
.y5f_c00431{bottom:290.933333pt;}
.y30_c00431{bottom:300.266667pt;}
.y5e_c00431{bottom:306.933333pt;}
.y2f_c00431{bottom:312.800000pt;}
.y2e_c00431{bottom:325.333333pt;}
.y5d_c00431{bottom:334.666667pt;}
.y2d_c00431{bottom:337.866667pt;}
.y2c_c00431{bottom:350.400000pt;}
.y2b_c00431{bottom:362.666667pt;}
.y5c_c00431{bottom:366.666667pt;}
.y2a_c00431{bottom:376.133333pt;}
.y5b_c00431{bottom:382.666667pt;}
.y29_c00431{bottom:389.200000pt;}
.y28_c00431{bottom:402.000000pt;}
.y5a_c00431{bottom:406.400000pt;}
.y27_c00431{bottom:415.066667pt;}
.y59_c00431{bottom:422.666667pt;}
.y26_c00431{bottom:428.133333pt;}
.y58_c00431{bottom:438.666667pt;}
.y25_c00431{bottom:440.933333pt;}
.y24_c00431{bottom:453.733333pt;}
.y57_c00431{bottom:454.666667pt;}
.y23_c00431{bottom:466.533333pt;}
.y56_c00431{bottom:470.266667pt;}
.y22_c00431{bottom:479.333333pt;}
.y55_c00431{bottom:486.266667pt;}
.y21_c00431{bottom:492.133333pt;}
.y54_c00431{bottom:502.000000pt;}
.y20_c00431{bottom:504.666667pt;}
.y1f_c00431{bottom:517.733333pt;}
.y53_c00431{bottom:534.000000pt;}
.y52_c00431{bottom:550.000000pt;}
.y1e_c00431{bottom:558.000000pt;}
.y51_c00431{bottom:566.266667pt;}
.y1d_c00431{bottom:574.000000pt;}
.y50_c00431{bottom:582.000000pt;}
.y1c_c00431{bottom:590.000000pt;}
.y4f_c00431{bottom:598.000000pt;}
.y1b_c00431{bottom:606.000000pt;}
.y4e_c00431{bottom:614.000000pt;}
.y1a_c00431{bottom:622.000000pt;}
.y4d_c00431{bottom:630.000000pt;}
.y19_c00431{bottom:637.733333pt;}
.y4c_c00431{bottom:645.733333pt;}
.y18_c00431{bottom:653.733333pt;}
.y4b_c00431{bottom:661.733333pt;}
.y17_c00431{bottom:669.733333pt;}
.y4a_c00431{bottom:677.066667pt;}
.y16_c00431{bottom:685.733333pt;}
.y49_c00431{bottom:700.800000pt;}
.y15_c00431{bottom:701.733333pt;}
.y48_c00431{bottom:717.066667pt;}
.y14_c00431{bottom:717.466667pt;}
.y47_c00431{bottom:732.800000pt;}
.y13_c00431{bottom:737.333333pt;}
.y12_c00431{bottom:753.333333pt;}
.y46_c00431{bottom:756.666667pt;}
.y11_c00431{bottom:769.333333pt;}
.y45_c00431{bottom:772.666667pt;}
.y10_c00431{bottom:785.333333pt;}
.y44_c00431{bottom:788.400000pt;}
.yf_c00431{bottom:804.266667pt;}
.y43_c00431{bottom:804.400000pt;}
.ye_c00431{bottom:820.266667pt;}
.y42_c00431{bottom:820.400000pt;}
.yd_c00431{bottom:836.266667pt;}
.y41_c00431{bottom:836.400000pt;}
.yc_c00431{bottom:852.000000pt;}
.y40_c00431{bottom:852.400000pt;}
.yb_c00431{bottom:868.000000pt;}
.y3f_c00431{bottom:870.666667pt;}
.ya_c00431{bottom:884.000000pt;}
.y3e_c00431{bottom:884.133333pt;}
.y9_c00431{bottom:899.733333pt;}
.y3d_c00431{bottom:904.000000pt;}
.y8_c00431{bottom:915.733333pt;}
.y3c_c00431{bottom:919.733333pt;}
.y7_c00431{bottom:931.466667pt;}
.y6_c00431{bottom:947.466667pt;}
.y5_c00431{bottom:963.466667pt;}
.y4_c00431{bottom:979.466667pt;}
.y3b_c00431{bottom:995.200000pt;}
.y3_c00431{bottom:995.466667pt;}
.y1_c00431{bottom:1017.333333pt;}
.y2_c00431{bottom:1019.200000pt;}
.h7_c00431{height:48.000000pt;}
.h6_c00431{height:53.333333pt;}
.h4_c00431{height:58.666667pt;}
.h5_c00431{height:64.000000pt;}
.h2_c00431{height:69.333333pt;}
.h3_c00431{height:74.666667pt;}
.h1_c00431{height:1130.000000pt;}
.h0_c00431{height:1130.239991pt;}
.w0_c00431{width:851.840007pt;}
.w1_c00431{width:852.000000pt;}
.x0_c00431{left:0.000000pt;}
.x7d_c00431{left:158.533333pt;}
.x8d_c00431{left:159.866667pt;}
.x1_c00431{left:161.600000pt;}
.x7a_c00431{left:165.066667pt;}
.x7b_c00431{left:172.400000pt;}
.x58_c00431{left:174.800000pt;}
.x50_c00431{left:176.000000pt;}
.x46_c00431{left:177.066667pt;}
.x8_c00431{left:178.800000pt;}
.x94_c00431{left:180.533333pt;}
.x82_c00431{left:181.600000pt;}
.x95_c00431{left:184.133333pt;}
.x91_c00431{left:188.000000pt;}
.xaf_c00431{left:189.466667pt;}
.x7c_c00431{left:190.933333pt;}
.x97_c00431{left:193.466667pt;}
.x73_c00431{left:194.800000pt;}
.x3_c00431{left:196.133333pt;}
.x76_c00431{left:198.133333pt;}
.x4a_c00431{left:199.333333pt;}
.x47_c00431{left:200.400000pt;}
.x17_c00431{left:201.466667pt;}
.xad_c00431{left:202.533333pt;}
.x37_c00431{left:203.733333pt;}
.x63_c00431{left:205.600000pt;}
.x98_c00431{left:206.533333pt;}
.x29_c00431{left:209.600000pt;}
.xac_c00431{left:211.733333pt;}
.x5f_c00431{left:212.800000pt;}
.x41_c00431{left:214.000000pt;}
.x48_c00431{left:215.066667pt;}
.x6f_c00431{left:216.800000pt;}
.x51_c00431{left:218.933333pt;}
.x18_c00431{left:220.666667pt;}
.x69_c00431{left:223.200000pt;}
.x8e_c00431{left:224.266667pt;}
.x25_c00431{left:225.866667pt;}
.x59_c00431{left:227.333333pt;}
.x2a_c00431{left:229.066667pt;}
.x64_c00431{left:231.466667pt;}
.x38_c00431{left:233.866667pt;}
.x4_c00431{left:236.800000pt;}
.x6d_c00431{left:237.866667pt;}
.x5b_c00431{left:239.066667pt;}
.x7e_c00431{left:240.133333pt;}
.x2f_c00431{left:241.066667pt;}
.x52_c00431{left:243.600000pt;}
.xf_c00431{left:244.666667pt;}
.x9_c00431{left:246.666667pt;}
.x1f_c00431{left:249.466667pt;}
.x39_c00431{left:252.400000pt;}
.x2b_c00431{left:253.333333pt;}
.xb0_c00431{left:254.533333pt;}
.xa0_c00431{left:256.533333pt;}
.xa6_c00431{left:257.600000pt;}
.x5c_c00431{left:258.533333pt;}
.x33_c00431{left:259.466667pt;}
.x4b_c00431{left:260.400000pt;}
.x19_c00431{left:261.600000pt;}
.x83_c00431{left:262.933333pt;}
.x60_c00431{left:264.266667pt;}
.x10_c00431{left:266.133333pt;}
.x2c_c00431{left:267.066667pt;}
.x42_c00431{left:269.066667pt;}
.x8f_c00431{left:270.000000pt;}
.xa8_c00431{left:271.066667pt;}
.x53_c00431{left:272.400000pt;}
.x3a_c00431{left:273.466667pt;}
.x5_c00431{left:274.933333pt;}
.x8a_c00431{left:276.533333pt;}
.xae_c00431{left:277.733333pt;}
.x74_c00431{left:280.533333pt;}
.xa_c00431{left:281.600000pt;}
.x1a_c00431{left:283.733333pt;}
.x11_c00431{left:285.600000pt;}
.x43_c00431{left:286.933333pt;}
.x20_c00431{left:288.266667pt;}
.x54_c00431{left:290.266667pt;}
.x68_c00431{left:293.066667pt;}
.x1b_c00431{left:297.466667pt;}
.x86_c00431{left:298.800000pt;}
.xa3_c00431{left:299.733333pt;}
.x34_c00431{left:302.000000pt;}
.x77_c00431{left:304.266667pt;}
.x84_c00431{left:305.866667pt;}
.x6_c00431{left:307.200000pt;}
.x88_c00431{left:309.200000pt;}
.x65_c00431{left:310.133333pt;}
.x3b_c00431{left:312.133333pt;}
.x78_c00431{left:313.200000pt;}
.x9e_c00431{left:314.800000pt;}
.xb_c00431{left:316.133333pt;}
.x6a_c00431{left:317.600000pt;}
.x5d_c00431{left:319.066667pt;}
.x1c_c00431{left:321.466667pt;}
.x55_c00431{left:323.600000pt;}
.x49_c00431{left:325.066667pt;}
.x26_c00431{left:326.400000pt;}
.x12_c00431{left:328.800000pt;}
.xa4_c00431{left:330.133333pt;}
.x35_c00431{left:331.066667pt;}
.x3c_c00431{left:332.933333pt;}
.x9b_c00431{left:334.000000pt;}
.x21_c00431{left:336.000000pt;}
.x1d_c00431{left:337.466667pt;}
.x89_c00431{left:339.333333pt;}
.x96_c00431{left:340.266667pt;}
.xa9_c00431{left:341.466667pt;}
.x90_c00431{left:342.933333pt;}
.xa7_c00431{left:344.400000pt;}
.x9c_c00431{left:346.533333pt;}
.x44_c00431{left:347.466667pt;}
.x56_c00431{left:348.533333pt;}
.xc_c00431{left:350.666667pt;}
.xa1_c00431{left:352.800000pt;}
.x7f_c00431{left:354.666667pt;}
.x4c_c00431{left:356.000000pt;}
.x5a_c00431{left:358.533333pt;}
.x2d_c00431{left:360.533333pt;}
.xa5_c00431{left:362.400000pt;}
.x70_c00431{left:363.733333pt;}
.x13_c00431{left:367.466667pt;}
.x27_c00431{left:371.466667pt;}
.x66_c00431{left:373.466667pt;}
.xa2_c00431{left:374.933333pt;}
.x4d_c00431{left:376.133333pt;}
.x85_c00431{left:377.466667pt;}
.x71_c00431{left:379.466667pt;}
.x99_c00431{left:381.466667pt;}
.x2_c00431{left:382.666667pt;}
.x30_c00431{left:383.866667pt;}
.x92_c00431{left:385.066667pt;}
.x79_c00431{left:386.133333pt;}
.x7_c00431{left:387.466667pt;}
.x3d_c00431{left:389.600000pt;}
.x14_c00431{left:390.533333pt;}
.x28_c00431{left:392.266667pt;}
.x1e_c00431{left:393.466667pt;}
.x8b_c00431{left:396.266667pt;}
.xd_c00431{left:397.600000pt;}
.x9a_c00431{left:399.466667pt;}
.x22_c00431{left:402.533333pt;}
.x6b_c00431{left:404.266667pt;}
.x4e_c00431{left:405.866667pt;}
.x87_c00431{left:407.600000pt;}
.x31_c00431{left:408.800000pt;}
.xaa_c00431{left:410.266667pt;}
.x67_c00431{left:411.866667pt;}
.x61_c00431{left:413.066667pt;}
.x80_c00431{left:414.533333pt;}
.x36_c00431{left:416.800000pt;}
.x45_c00431{left:418.533333pt;}
.x3e_c00431{left:420.933333pt;}
.x15_c00431{left:421.866667pt;}
.x23_c00431{left:423.333333pt;}
.xab_c00431{left:425.466667pt;}
.xe_c00431{left:427.066667pt;}
.x93_c00431{left:429.200000pt;}
.x81_c00431{left:430.266667pt;}
.x2e_c00431{left:431.200000pt;}
.x62_c00431{left:432.533333pt;}
.x3f_c00431{left:434.400000pt;}
.x8c_c00431{left:435.333333pt;}
.x6e_c00431{left:436.400000pt;}
.x4f_c00431{left:438.133333pt;}
.x9d_c00431{left:439.466667pt;}
.x24_c00431{left:440.933333pt;}
.x72_c00431{left:444.133333pt;}
.x57_c00431{left:445.466667pt;}
.x6c_c00431{left:446.800000pt;}
.x5e_c00431{left:448.000000pt;}
.x32_c00431{left:449.466667pt;}
.x40_c00431{left:452.266667pt;}
.x16_c00431{left:453.600000pt;}
.x9f_c00431{left:455.333333pt;}
.x75_c00431{left:456.933333pt;}
.x136_c00431{left:478.400000pt;}
.xfa_c00431{left:480.266667pt;}
.xca_c00431{left:481.600000pt;}
.x145_c00431{left:492.666667pt;}
.x100_c00431{left:493.600000pt;}
.xf8_c00431{left:495.333333pt;}
.xb1_c00431{left:496.666667pt;}
.xd8_c00431{left:498.133333pt;}
.xfb_c00431{left:501.333333pt;}
.x131_c00431{left:509.733333pt;}
.x11a_c00431{left:510.933333pt;}
.xcf_c00431{left:513.866667pt;}
.x140_c00431{left:515.600000pt;}
.xc5_c00431{left:517.066667pt;}
.xbf_c00431{left:520.266667pt;}
.xb2_c00431{left:521.600000pt;}
.x105_c00431{left:523.600000pt;}
.xe5_c00431{left:525.333333pt;}
.x12c_c00431{left:528.933333pt;}
.x114_c00431{left:530.000000pt;}
.xd9_c00431{left:531.733333pt;}
.x146_c00431{left:533.066667pt;}
.xf1_c00431{left:535.600000pt;}
.x10c_c00431{left:539.733333pt;}
.xb3_c00431{left:541.066667pt;}
.xf9_c00431{left:542.666667pt;}
.x101_c00431{left:544.800000pt;}
.x141_c00431{left:546.000000pt;}
.x132_c00431{left:548.400000pt;}
.x143_c00431{left:549.466667pt;}
.x106_c00431{left:550.800000pt;}
.xcb_c00431{left:552.666667pt;}
.x13c_c00431{left:553.866667pt;}
.xed_c00431{left:556.000000pt;}
.xd0_c00431{left:557.733333pt;}
.x11b_c00431{left:558.933333pt;}
.xce_c00431{left:562.133333pt;}
.xc0_c00431{left:565.066667pt;}
.x115_c00431{left:566.533333pt;}
.xe6_c00431{left:567.600000pt;}
.x122_c00431{left:568.533333pt;}
.x129_c00431{left:570.800000pt;}
.x118_c00431{left:572.933333pt;}
.x147_c00431{left:574.133333pt;}
.xc1_c00431{left:575.600000pt;}
.xc6_c00431{left:577.600000pt;}
.x12e_c00431{left:578.800000pt;}
.xf2_c00431{left:580.400000pt;}
.x107_c00431{left:582.533333pt;}
.xe7_c00431{left:584.266667pt;}
.xc7_c00431{left:585.333333pt;}
.x11c_c00431{left:588.666667pt;}
.xba_c00431{left:592.266667pt;}
.x116_c00431{left:593.466667pt;}
.xda_c00431{left:594.800000pt;}
.x123_c00431{left:597.600000pt;}
.xd1_c00431{left:598.666667pt;}
.xf3_c00431{left:599.866667pt;}
.xeb_c00431{left:601.066667pt;}
.x126_c00431{left:602.133333pt;}
.xc2_c00431{left:603.066667pt;}
.xbb_c00431{left:604.800000pt;}
.x11d_c00431{left:607.200000pt;}
.xee_c00431{left:608.133333pt;}
.x12b_c00431{left:609.866667pt;}
.xdf_c00431{left:611.733333pt;}
.xb4_c00431{left:613.333333pt;}
.x109_c00431{left:616.933333pt;}
.xfc_c00431{left:619.066667pt;}
.x10d_c00431{left:620.000000pt;}
.xc3_c00431{left:620.933333pt;}
.x102_c00431{left:621.866667pt;}
.x125_c00431{left:623.866667pt;}
.x142_c00431{left:624.800000pt;}
.x127_c00431{left:627.066667pt;}
.xf4_c00431{left:628.933333pt;}
.x11e_c00431{left:631.466667pt;}
.xd2_c00431{left:633.200000pt;}
.xc8_c00431{left:634.533333pt;}
.xd4_c00431{left:635.733333pt;}
.x138_c00431{left:638.400000pt;}
.xcc_c00431{left:639.333333pt;}
.xbc_c00431{left:641.333333pt;}
.x12f_c00431{left:642.533333pt;}
.x103_c00431{left:643.600000pt;}
.x10e_c00431{left:646.933333pt;}
.x148_c00431{left:648.666667pt;}
.x12d_c00431{left:649.600000pt;}
.x130_c00431{left:652.400000pt;}
.xc9_c00431{left:653.466667pt;}
.x108_c00431{left:654.533333pt;}
.xe0_c00431{left:656.133333pt;}
.x11f_c00431{left:658.000000pt;}
.xdb_c00431{left:659.733333pt;}
.xcd_c00431{left:662.666667pt;}
.xb5_c00431{left:663.600000pt;}
.x10f_c00431{left:666.133333pt;}
.xbd_c00431{left:667.866667pt;}
.x134_c00431{left:669.333333pt;}
.xd5_c00431{left:670.933333pt;}
.xb6_c00431{left:672.266667pt;}
.x149_c00431{left:674.000000pt;}
.x13d_c00431{left:675.866667pt;}
.xe8_c00431{left:677.066667pt;}
.x10a_c00431{left:678.000000pt;}
.x12a_c00431{left:680.400000pt;}
.xf5_c00431{left:682.000000pt;}
.xb7_c00431{left:683.200000pt;}
.xdc_c00431{left:685.600000pt;}
.x111_c00431{left:687.333333pt;}
.xfd_c00431{left:689.466667pt;}
.x137_c00431{left:690.800000pt;}
.xe9_c00431{left:693.733333pt;}
.xf6_c00431{left:696.666667pt;}
.xb8_c00431{left:699.200000pt;}
.xe1_c00431{left:701.600000pt;}
.x110_c00431{left:702.666667pt;}
.xd3_c00431{left:704.533333pt;}
.x13e_c00431{left:706.933333pt;}
.xc4_c00431{left:708.666667pt;}
.xdd_c00431{left:709.600000pt;}
.xfe_c00431{left:711.600000pt;}
.x104_c00431{left:714.000000pt;}
.x120_c00431{left:715.600000pt;}
.x13b_c00431{left:718.133333pt;}
.x10b_c00431{left:719.866667pt;}
.xbe_c00431{left:720.933333pt;}
.xef_c00431{left:722.400000pt;}
.x112_c00431{left:724.133333pt;}
.xe2_c00431{left:725.866667pt;}
.x121_c00431{left:728.133333pt;}
.x113_c00431{left:733.733333pt;}
.x139_c00431{left:734.933333pt;}
.x14a_c00431{left:737.466667pt;}
.xd6_c00431{left:739.066667pt;}
.xea_c00431{left:741.466667pt;}
.xe3_c00431{left:743.466667pt;}
.xec_c00431{left:744.800000pt;}
.x135_c00431{left:746.400000pt;}
.x119_c00431{left:747.466667pt;}
.x13f_c00431{left:749.466667pt;}
.x128_c00431{left:753.866667pt;}
.x14b_c00431{left:754.800000pt;}
.xde_c00431{left:755.733333pt;}
.xd7_c00431{left:757.333333pt;}
.x117_c00431{left:760.133333pt;}
.x124_c00431{left:761.200000pt;}
.xff_c00431{left:763.733333pt;}
.xf7_c00431{left:764.800000pt;}
.x144_c00431{left:766.000000pt;}
.xb9_c00431{left:768.266667pt;}
.x13a_c00431{left:769.866667pt;}
.xe4_c00431{left:771.333333pt;}
.x133_c00431{left:773.866667pt;}
.xf0_c00431{left:777.333333pt;}
}





/* 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_c00432 {
    display:none;
  }
  .loading-indicator_c00432.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00432 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_c00432 { 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_c00432" -> "#page-container .classname_c00432")
 */
.pf_c00432 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00432 { /* 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_c00432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00432 { /* 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_c00432 { /* 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_c00432 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00432 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00432 {overflow:visible;}
  }
}
.c_c00432 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00432 { /* 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_c00432:after { /* webkit #35443 */
  content: '';
}
.t_c00432:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00432 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 */
}
.__c00432 { /* 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_c00432 { /* info for Javascript */
  display:none;
}
.l_c00432 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00432 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00432 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00432: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_c00432 {
    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_c00432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00432.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_c00432 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00432;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.000000;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;}
.mad_c00432{transform:matrix(0.009250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00432{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m9_c00432{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00432{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00432{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m91_c00432{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00432{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m7_c00432{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m110_c00432{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m89_c00432{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mac_c00432{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m103_c00432{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00432{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m100_c00432{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m115_c00432{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m45_c00432{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mec_c00432{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00432{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00432{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m41_c00432{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00432{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m71_c00432{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00432{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00432{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m74_c00432{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mce_c00432{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00432{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00432{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00432{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00432{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m77_c00432{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mff_c00432{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00432{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mae_c00432{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00432{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00432{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md4_c00432{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mba_c00432{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m10_c00432{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00432{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00432{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma_c00432{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.md2_c00432{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m15_c00432{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00432{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00432{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00432{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m42_c00432{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00432{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00432{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m72_c00432{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me_c00432{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00432{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00432{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m70_c00432{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00432{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m2_c00432{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m11_c00432{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m117_c00432{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00432{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m24_c00432{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00432{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00432{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m55_c00432{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00432{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m61_c00432{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00432{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m83_c00432{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00432{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00432{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m105_c00432{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m36_c00432{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00432{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00432{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00432{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m39_c00432{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m48_c00432{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00432{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m8_c00432{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00432{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m92_c00432{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00432{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mca_c00432{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00432{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf_c00432{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00432{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md6_c00432{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00432{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00432{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00432{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.md7_c00432{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00432{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00432{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m17_c00432{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m78_c00432{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00432{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m94_c00432{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00432{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.md3_c00432{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md1_c00432{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m46_c00432{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6_c00432{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00432{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m32_c00432{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00432{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m29_c00432{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m35_c00432{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m102_c00432{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.med_c00432{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m114_c00432{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00432{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00432{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m25_c00432{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00432{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m50_c00432{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m47_c00432{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md0_c00432{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00432{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00432{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00432{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m90_c00432{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00432{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m18_c00432{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me7_c00432{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00432{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00432{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m85_c00432{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m104_c00432{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4_c00432{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00432{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00432{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.me1_c00432{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m20_c00432{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m51_c00432{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m19_c00432{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m37_c00432{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00432{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00432{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.me8_c00432{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md_c00432{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m116_c00432{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m108_c00432{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m69_c00432{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m109_c00432{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m64_c00432{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m62_c00432{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00432{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m34_c00432{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00432{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00432{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m75_c00432{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m95_c00432{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00432{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00432{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m93_c00432{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00432{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m26_c00432{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00432{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00432{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00432{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00432{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m53_c00432{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m76_c00432{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00432{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m38_c00432{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m84_c00432{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m54_c00432{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m56_c00432{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00432{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mde_c00432{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00432{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m88_c00432{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00432{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m111_c00432{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m16_c00432{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00432{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00432{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00432{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m118_c00432{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m86_c00432{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.maf_c00432{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m65_c00432{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m27_c00432{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00432{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m80_c00432{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m98_c00432{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m33_c00432{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md8_c00432{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00432{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00432{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3_c00432{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me4_c00432{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m113_c00432{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00432{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00432{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00432{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00432{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00432{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m97_c00432{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m73_c00432{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mc_c00432{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mda_c00432{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00432{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m112_c00432{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m43_c00432{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m99_c00432{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m60_c00432{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m31_c00432{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00432{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m66_c00432{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m21_c00432{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m22_c00432{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00432{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m23_c00432{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00432{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb_c00432{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mee_c00432{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me0_c00432{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mab_c00432{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m44_c00432{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me6_c00432{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00432{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00432{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00432{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.me2_c00432{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00432{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m67_c00432{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00432{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md5_c00432{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m49_c00432{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00432{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00432{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me5_c00432{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);}
.m106_c00432{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m13_c00432{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m58_c00432{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00432{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m82_c00432{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.maa_c00432{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00432{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m79_c00432{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00432{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me3_c00432{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m68_c00432{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00432{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m81_c00432{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md9_c00432{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m28_c00432{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m12_c00432{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m107_c00432{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m30_c00432{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00432{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m96_c00432{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m59_c00432{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m40_c00432{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00432{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mef_c00432{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00432{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00432{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m52_c00432{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00432{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m63_c00432{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00432{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00432{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00432{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m14_c00432{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.meb_c00432{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00432{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00432{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m101_c00432{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m57_c00432{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m87_c00432{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00432{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.me9_c00432{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.mea_c00432{transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00432{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5_c00432{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00432{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00432{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls0_c00432{letter-spacing:0.000000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{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__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00432{word-spacing:-6.934708px;}
.ws5_c00432{word-spacing:-5.277778px;}
.ws6_c00432{word-spacing:0.000000px;}
.ws4_c00432{word-spacing:1.994413px;}
.ws2_c00432{word-spacing:12.673325px;}
.ws1_c00432{word-spacing:12.763158px;}
.ws3_c00432{word-spacing:16.384615px;}
.fc0_c00432{color:transparent;}
.fs7_c00432{font-size:24.000000px;}
.fs9_c00432{font-size:30.000000px;}
.fs8_c00432{font-size:42.000000px;}
.fs4_c00432{font-size:54.000000px;}
.fs5_c00432{font-size:60.000000px;}
.fs3_c00432{font-size:66.000000px;}
.fs2_c00432{font-size:72.000000px;}
.fs6_c00432{font-size:78.000000px;}
.fs0_c00432{font-size:84.000000px;}
.fs1_c00432{font-size:96.000000px;}
.y0_c00432{bottom:0.000000px;}
.y34_c00432{bottom:191.250000px;}
.y6b_c00432{bottom:193.350000px;}
.y33_c00432{bottom:209.550000px;}
.y6a_c00432{bottom:211.650000px;}
.y32_c00432{bottom:227.100000px;}
.y69_c00432{bottom:228.900000px;}
.y68_c00432{bottom:234.000000px;}
.y67_c00432{bottom:244.800000px;}
.y31_c00432{bottom:245.100000px;}
.y66_c00432{bottom:256.500000px;}
.y30_c00432{bottom:263.100000px;}
.y65_c00432{bottom:274.800000px;}
.y64_c00432{bottom:282.300000px;}
.y2f_c00432{bottom:283.050000px;}
.y63_c00432{bottom:284.850000px;}
.y62_c00432{bottom:292.350000px;}
.y2e_c00432{bottom:302.100000px;}
.y61_c00432{bottom:315.000000px;}
.y2d_c00432{bottom:328.350000px;}
.y60_c00432{bottom:336.300000px;}
.y2c_c00432{bottom:347.100000px;}
.y5f_c00432{bottom:355.350000px;}
.y2b_c00432{bottom:365.100000px;}
.y5e_c00432{bottom:375.150000px;}
.y2a_c00432{bottom:383.100000px;}
.y5d_c00432{bottom:394.650000px;}
.y29_c00432{bottom:401.400000px;}
.y5c_c00432{bottom:413.700000px;}
.y28_c00432{bottom:421.800000px;}
.y5b_c00432{bottom:434.850000px;}
.y27_c00432{bottom:440.550000px;}
.y5a_c00432{bottom:452.850000px;}
.y26_c00432{bottom:458.550000px;}
.y59_c00432{bottom:470.850000px;}
.y25_c00432{bottom:476.550000px;}
.y58_c00432{bottom:492.750000px;}
.y24_c00432{bottom:494.550000px;}
.y55_c00432{bottom:500.400000px;}
.y56_c00432{bottom:500.700000px;}
.y57_c00432{bottom:502.800000px;}
.y54_c00432{bottom:510.900000px;}
.y23_c00432{bottom:512.250000px;}
.y53_c00432{bottom:528.900000px;}
.y22_c00432{bottom:530.250000px;}
.y52_c00432{bottom:546.900000px;}
.y21_c00432{bottom:548.250000px;}
.y51_c00432{bottom:562.950000px;}
.y20_c00432{bottom:565.950000px;}
.y50_c00432{bottom:574.800000px;}
.y1f_c00432{bottom:588.150000px;}
.y4f_c00432{bottom:594.300000px;}
.y4e_c00432{bottom:601.500000px;}
.y1e_c00432{bottom:606.150000px;}
.y4d_c00432{bottom:609.900000px;}
.y1d_c00432{bottom:623.850000px;}
.y4c_c00432{bottom:633.000000px;}
.y1c_c00432{bottom:644.850000px;}
.y4b_c00432{bottom:654.900000px;}
.y1b_c00432{bottom:663.600000px;}
.y4a_c00432{bottom:676.800000px;}
.y1a_c00432{bottom:681.300000px;}
.y19_c00432{bottom:699.300000px;}
.y49_c00432{bottom:699.450000px;}
.y18_c00432{bottom:717.300000px;}
.y48_c00432{bottom:734.700000px;}
.y17_c00432{bottom:735.000000px;}
.y16_c00432{bottom:752.700000px;}
.y15_c00432{bottom:769.650000px;}
.y47_c00432{bottom:770.400000px;}
.y46_c00432{bottom:788.400000px;}
.y14_c00432{bottom:789.150000px;}
.y45_c00432{bottom:806.400000px;}
.y13_c00432{bottom:807.450000px;}
.y44_c00432{bottom:823.950000px;}
.y12_c00432{bottom:828.300000px;}
.y43_c00432{bottom:841.950000px;}
.y11_c00432{bottom:859.350000px;}
.y42_c00432{bottom:859.950000px;}
.y41_c00432{bottom:877.650000px;}
.y10_c00432{bottom:878.100000px;}
.y40_c00432{bottom:895.350000px;}
.yf_c00432{bottom:896.100000px;}
.y3f_c00432{bottom:913.350000px;}
.ye_c00432{bottom:913.650000px;}
.yd_c00432{bottom:931.350000px;}
.yc_c00432{bottom:949.650000px;}
.y3e_c00432{bottom:953.250000px;}
.yb_c00432{bottom:967.650000px;}
.y3d_c00432{bottom:971.550000px;}
.ya_c00432{bottom:985.350000px;}
.y3c_c00432{bottom:989.250000px;}
.y9_c00432{bottom:1003.200000px;}
.y3b_c00432{bottom:1007.250000px;}
.y8_c00432{bottom:1024.500000px;}
.y3a_c00432{bottom:1029.900000px;}
.y7_c00432{bottom:1042.500000px;}
.y39_c00432{bottom:1047.900000px;}
.y6_c00432{bottom:1060.500000px;}
.y38_c00432{bottom:1065.600000px;}
.y5_c00432{bottom:1078.500000px;}
.y37_c00432{bottom:1083.600000px;}
.y4_c00432{bottom:1099.800000px;}
.y36_c00432{bottom:1101.300000px;}
.y3_c00432{bottom:1118.550000px;}
.y35_c00432{bottom:1119.300000px;}
.y2_c00432{bottom:1145.100000px;}
.y1_c00432{bottom:1145.850000px;}
.h9_c00432{height:24.000000px;}
.hb_c00432{height:30.000000px;}
.ha_c00432{height:42.000000px;}
.h6_c00432{height:54.000000px;}
.h7_c00432{height:60.000000px;}
.h5_c00432{height:66.000000px;}
.h4_c00432{height:72.000000px;}
.h8_c00432{height:78.000000px;}
.h2_c00432{height:84.000000px;}
.h3_c00432{height:96.000000px;}
.h1_c00432{height:1268.250000px;}
.h0_c00432{height:1268.279937px;}
.w0_c00432{width:958.320007px;}
.w1_c00432{width:958.500000px;}
.x0_c00432{left:0.000000px;}
.x7c_c00432{left:73.500000px;}
.x74_c00432{left:74.550000px;}
.x12_c00432{left:75.900000px;}
.x96_c00432{left:87.750000px;}
.x21_c00432{left:89.850000px;}
.x3a_c00432{left:91.500000px;}
.x3_c00432{left:92.550000px;}
.x67_c00432{left:94.650000px;}
.x90_c00432{left:102.750000px;}
.x35_c00432{left:105.900000px;}
.x72_c00432{left:107.850000px;}
.x98_c00432{left:109.050000px;}
.x4e_c00432{left:111.600000px;}
.x9d_c00432{left:114.600000px;}
.x13_c00432{left:118.050000px;}
.xb_c00432{left:120.450000px;}
.x81_c00432{left:125.550000px;}
.x69_c00432{left:126.900000px;}
.x91_c00432{left:129.750000px;}
.x8d_c00432{left:132.900000px;}
.x4_c00432{left:134.700000px;}
.x56_c00432{left:137.250000px;}
.x4b_c00432{left:139.200000px;}
.x77_c00432{left:141.600000px;}
.x2a_c00432{left:143.100000px;}
.x97_c00432{left:145.050000px;}
.x5c_c00432{left:146.100000px;}
.x6a_c00432{left:147.450000px;}
.x32_c00432{left:148.800000px;}
.x88_c00432{left:149.850000px;}
.x99_c00432{left:152.250000px;}
.x36_c00432{left:153.750000px;}
.x5_c00432{left:156.000000px;}
.x78_c00432{left:158.550000px;}
.x22_c00432{left:159.750000px;}
.x1b_c00432{left:161.550000px;}
.x61_c00432{left:163.800000px;}
.xc_c00432{left:165.450000px;}
.x3b_c00432{left:168.600000px;}
.x5d_c00432{left:170.250000px;}
.x2e_c00432{left:173.550000px;}
.x7d_c00432{left:174.750000px;}
.x89_c00432{left:175.800000px;}
.x1c_c00432{left:180.300000px;}
.x3c_c00432{left:181.950000px;}
.x14_c00432{left:183.900000px;}
.x43_c00432{left:185.100000px;}
.x23_c00432{left:187.050000px;}
.xd_c00432{left:188.100000px;}
.x75_c00432{left:189.450000px;}
.x57_c00432{left:190.500000px;}
.x5e_c00432{left:191.550000px;}
.x3d_c00432{left:193.500000px;}
.x62_c00432{left:195.150000px;}
.x92_c00432{left:197.100000px;}
.x9b_c00432{left:199.200000px;}
.x9e_c00432{left:204.450000px;}
.x47_c00432{left:206.100000px;}
.x8b_c00432{left:208.500000px;}
.x6_c00432{left:210.750000px;}
.x15_c00432{left:211.950000px;}
.x2b_c00432{left:214.350000px;}
.x50_c00432{left:217.050000px;}
.x6b_c00432{left:220.500000px;}
.x86_c00432{left:223.350000px;}
.x9a_c00432{left:224.550000px;}
.xe_c00432{left:228.450000px;}
.x83_c00432{left:229.950000px;}
.x16_c00432{left:231.750000px;}
.x7_c00432{left:233.100000px;}
.x76_c00432{left:234.450000px;}
.x4f_c00432{left:235.800000px;}
.x8a_c00432{left:238.050000px;}
.x58_c00432{left:239.100000px;}
.x4c_c00432{left:240.750000px;}
.x6c_c00432{left:243.600000px;}
.x9f_c00432{left:245.400000px;}
.x24_c00432{left:248.250000px;}
.x93_c00432{left:249.600000px;}
.x40_c00432{left:250.800000px;}
.x44_c00432{left:252.750000px;}
.x51_c00432{left:254.100000px;}
.x68_c00432{left:256.200000px;}
.x73_c00432{left:257.250000px;}
.xa0_c00432{left:258.300000px;}
.x37_c00432{left:259.650000px;}
.x25_c00432{left:262.650000px;}
.x1d_c00432{left:264.600000px;}
.x79_c00432{left:266.850000px;}
.x17_c00432{left:268.800000px;}
.x48_c00432{left:271.200000px;}
.xf_c00432{left:273.150000px;}
.x52_c00432{left:274.650000px;}
.x9c_c00432{left:276.600000px;}
.x63_c00432{left:277.950000px;}
.x7e_c00432{left:280.650000px;}
.x26_c00432{left:282.150000px;}
.x2f_c00432{left:284.700000px;}
.x7a_c00432{left:287.700000px;}
.x18_c00432{left:289.350000px;}
.x6d_c00432{left:290.700000px;}
.x8e_c00432{left:294.150000px;}
.x5f_c00432{left:295.650000px;}
.x59_c00432{left:297.000000px;}
.x1e_c00432{left:298.800000px;}
.x84_c00432{left:300.900000px;}
.x10_c00432{left:304.800000px;}
.x41_c00432{left:305.850000px;}
.x27_c00432{left:307.050000px;}
.x33_c00432{left:309.000000px;}
.x53_c00432{left:312.450000px;}
.x6e_c00432{left:315.150000px;}
.x38_c00432{left:317.550000px;}
.x1f_c00432{left:319.650000px;}
.x5a_c00432{left:320.700000px;}
.x87_c00432{left:323.100000px;}
.x8f_c00432{left:324.450000px;}
.x11_c00432{left:325.650000px;}
.x8_c00432{left:326.700000px;}
.x1_c00432{left:327.900000px;}
.x42_c00432{left:328.950000px;}
.xa1_c00432{left:330.300000px;}
.x6f_c00432{left:332.100000px;}
.x85_c00432{left:333.300000px;}
.x19_c00432{left:334.350000px;}
.x64_c00432{left:336.300000px;}
.x34_c00432{left:337.500000px;}
.x9_c00432{left:339.000000px;}
.x45_c00432{left:340.500000px;}
.x28_c00432{left:343.350000px;}
.x39_c00432{left:347.850000px;}
.x4d_c00432{left:350.400000px;}
.x20_c00432{left:352.350000px;}
.x2c_c00432{left:354.750000px;}
.x65_c00432{left:355.800000px;}
.x30_c00432{left:357.450000px;}
.x1a_c00432{left:358.800000px;}
.x7b_c00432{left:360.150000px;}
.x49_c00432{left:361.650000px;}
.x70_c00432{left:363.450000px;}
.x54_c00432{left:366.900000px;}
.x7f_c00432{left:369.900000px;}
.x8c_c00432{left:371.850000px;}
.x95_c00432{left:373.950000px;}
.x46_c00432{left:376.500000px;}
.x82_c00432{left:378.150000px;}
.x66_c00432{left:379.500000px;}
.x71_c00432{left:380.700000px;}
.x31_c00432{left:382.350000px;}
.x55_c00432{left:384.600000px;}
.x5b_c00432{left:389.100000px;}
.x94_c00432{left:391.350000px;}
.x80_c00432{left:392.550000px;}
.x2d_c00432{left:393.600000px;}
.x4a_c00432{left:398.400000px;}
.x3e_c00432{left:399.900000px;}
.x60_c00432{left:402.150000px;}
.x29_c00432{left:405.600000px;}
.x3f_c00432{left:409.200000px;}
.xa_c00432{left:421.800000px;}
.xfa_c00432{left:432.300000px;}
.xcd_c00432{left:433.500000px;}
.x117_c00432{left:447.300000px;}
.x110_c00432{left:448.650000px;}
.x106_c00432{left:449.700000px;}
.xa2_c00432{left:451.050000px;}
.xc4_c00432{left:452.250000px;}
.x109_c00432{left:457.950000px;}
.x125_c00432{left:461.100000px;}
.x119_c00432{left:465.900000px;}
.xff_c00432{left:468.150000px;}
.xfe_c00432{left:470.250000px;}
.xa3_c00432{left:473.400000px;}
.xce_c00432{left:477.000000px;}
.xf3_c00432{left:478.200000px;}
.xdf_c00432{left:479.700000px;}
.xdc_c00432{left:484.800000px;}
.xad_c00432{left:490.200000px;}
.xfb_c00432{left:491.400000px;}
.x10e_c00432{left:493.650000px;}
.xb3_c00432{left:495.000000px;}
.x121_c00432{left:496.350000px;}
.xc9_c00432{left:498.900000px;}
.xdd_c00432{left:501.300000px;}
.x118_c00432{left:503.400000px;}
.xe9_c00432{left:504.600000px;}
.x11b_c00432{left:505.650000px;}
.xb9_c00432{left:507.600000px;}
.xb4_c00432{left:510.150000px;}
.xca_c00432{left:511.800000px;}
.xf6_c00432{left:513.000000px;}
.x126_c00432{left:514.350000px;}
.xc5_c00432{left:516.000000px;}
.xae_c00432{left:517.950000px;}
.xe6_c00432{left:519.900000px;}
.x111_c00432{left:523.050000px;}
.xa4_c00432{left:524.850000px;}
.xf7_c00432{left:526.350000px;}
.xf8_c00432{left:528.150000px;}
.xba_c00432{left:529.500000px;}
.x10a_c00432{left:531.450000px;}
.xd9_c00432{left:534.300000px;}
.x108_c00432{left:535.500000px;}
.xaf_c00432{left:537.450000px;}
.xe4_c00432{left:540.000000px;}
.x102_c00432{left:541.500000px;}
.x11d_c00432{left:544.350000px;}
.xa5_c00432{left:546.450000px;}
.xd6_c00432{left:549.000000px;}
.xbb_c00432{left:555.000000px;}
.xb5_c00432{left:557.700000px;}
.x10b_c00432{left:561.300000px;}
.xd2_c00432{left:563.700000px;}
.x100_c00432{left:565.200000px;}
.xb0_c00432{left:567.000000px;}
.xe0_c00432{left:568.650000px;}
.x10d_c00432{left:570.600000px;}
.x107_c00432{left:573.600000px;}
.xb6_c00432{left:576.000000px;}
.x10f_c00432{left:578.250000px;}
.xbc_c00432{left:579.900000px;}
.x115_c00432{left:582.000000px;}
.xa6_c00432{left:585.000000px;}
.xef_c00432{left:587.550000px;}
.x11a_c00432{left:588.900000px;}
.xcf_c00432{left:591.000000px;}
.xc6_c00432{left:593.700000px;}
.xe5_c00432{left:600.150000px;}
.xea_c00432{left:601.800000px;}
.xf0_c00432{left:603.450000px;}
.xb7_c00432{left:605.100000px;}
.xbd_c00432{left:606.150000px;}
.x122_c00432{left:609.150000px;}
.x103_c00432{left:610.950000px;}
.xf9_c00432{left:612.450000px;}
.xe7_c00432{left:613.500000px;}
.xd0_c00432{left:614.700000px;}
.xd3_c00432{left:615.900000px;}
.xbe_c00432{left:619.500000px;}
.x101_c00432{left:621.300000px;}
.xa7_c00432{left:623.100000px;}
.x11e_c00432{left:628.200000px;}
.xda_c00432{left:629.400000px;}
.x123_c00432{left:631.800000px;}
.xeb_c00432{left:633.150000px;}
.xbf_c00432{left:637.200000px;}
.xa8_c00432{left:639.300000px;}
.x114_c00432{left:645.300000px;}
.xb1_c00432{left:649.350000px;}
.xc0_c00432{left:651.300000px;}
.xc7_c00432{left:653.100000px;}
.xf1_c00432{left:654.150000px;}
.xfc_c00432{left:655.200000px;}
.xec_c00432{left:659.100000px;}
.x127_c00432{left:660.150000px;}
.xa9_c00432{left:662.400000px;}
.xcb_c00432{left:667.050000px;}
.x112_c00432{left:670.350000px;}
.xb2_c00432{left:672.450000px;}
.x104_c00432{left:673.650000px;}
.xb8_c00432{left:676.050000px;}
.x10c_c00432{left:677.550000px;}
.xd1_c00432{left:678.750000px;}
.xd7_c00432{left:680.100000px;}
.xf4_c00432{left:681.900000px;}
.xcc_c00432{left:688.950000px;}
.xc8_c00432{left:690.450000px;}
.xfd_c00432{left:691.950000px;}
.x11f_c00432{left:698.700000px;}
.xd8_c00432{left:700.950000px;}
.xd4_c00432{left:703.500000px;}
.x124_c00432{left:704.550000px;}
.xaa_c00432{left:708.450000px;}
.x11c_c00432{left:711.900000px;}
.xed_c00432{left:714.900000px;}
.xf2_c00432{left:718.200000px;}
.xe1_c00432{left:719.400000px;}
.xe3_c00432{left:721.800000px;}
.x120_c00432{left:726.000000px;}
.xc1_c00432{left:727.650000px;}
.x128_c00432{left:730.650000px;}
.xab_c00432{left:732.600000px;}
.xf5_c00432{left:734.100000px;}
.xe8_c00432{left:735.450000px;}
.xc2_c00432{left:737.400000px;}
.x116_c00432{left:738.900000px;}
.xde_c00432{left:740.400000px;}
.x2_c00432{left:742.200000px;}
.xe2_c00432{left:746.700000px;}
.xd5_c00432{left:748.500000px;}
.xdb_c00432{left:750.000000px;}
.x113_c00432{left:752.100000px;}
.xac_c00432{left:754.200000px;}
.xee_c00432{left:755.250000px;}
.xc3_c00432{left:764.700000px;}
.x105_c00432{left:766.500000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws0_c00432{word-spacing:-6.164185pt;}
.ws5_c00432{word-spacing:-4.691358pt;}
.ws6_c00432{word-spacing:0.000000pt;}
.ws4_c00432{word-spacing:1.772812pt;}
.ws2_c00432{word-spacing:11.265178pt;}
.ws1_c00432{word-spacing:11.345029pt;}
.ws3_c00432{word-spacing:14.564103pt;}
.fs7_c00432{font-size:21.333333pt;}
.fs9_c00432{font-size:26.666667pt;}
.fs8_c00432{font-size:37.333333pt;}
.fs4_c00432{font-size:48.000000pt;}
.fs5_c00432{font-size:53.333333pt;}
.fs3_c00432{font-size:58.666667pt;}
.fs2_c00432{font-size:64.000000pt;}
.fs6_c00432{font-size:69.333333pt;}
.fs0_c00432{font-size:74.666667pt;}
.fs1_c00432{font-size:85.333333pt;}
.y0_c00432{bottom:0.000000pt;}
.y34_c00432{bottom:170.000000pt;}
.y6b_c00432{bottom:171.866667pt;}
.y33_c00432{bottom:186.266667pt;}
.y6a_c00432{bottom:188.133333pt;}
.y32_c00432{bottom:201.866667pt;}
.y69_c00432{bottom:203.466667pt;}
.y68_c00432{bottom:208.000000pt;}
.y67_c00432{bottom:217.600000pt;}
.y31_c00432{bottom:217.866667pt;}
.y66_c00432{bottom:228.000000pt;}
.y30_c00432{bottom:233.866667pt;}
.y65_c00432{bottom:244.266667pt;}
.y64_c00432{bottom:250.933333pt;}
.y2f_c00432{bottom:251.600000pt;}
.y63_c00432{bottom:253.200000pt;}
.y62_c00432{bottom:259.866667pt;}
.y2e_c00432{bottom:268.533333pt;}
.y61_c00432{bottom:280.000000pt;}
.y2d_c00432{bottom:291.866667pt;}
.y60_c00432{bottom:298.933333pt;}
.y2c_c00432{bottom:308.533333pt;}
.y5f_c00432{bottom:315.866667pt;}
.y2b_c00432{bottom:324.533333pt;}
.y5e_c00432{bottom:333.466667pt;}
.y2a_c00432{bottom:340.533333pt;}
.y5d_c00432{bottom:350.800000pt;}
.y29_c00432{bottom:356.800000pt;}
.y5c_c00432{bottom:367.733333pt;}
.y28_c00432{bottom:374.933333pt;}
.y5b_c00432{bottom:386.533333pt;}
.y27_c00432{bottom:391.600000pt;}
.y5a_c00432{bottom:402.533333pt;}
.y26_c00432{bottom:407.600000pt;}
.y59_c00432{bottom:418.533333pt;}
.y25_c00432{bottom:423.600000pt;}
.y58_c00432{bottom:438.000000pt;}
.y24_c00432{bottom:439.600000pt;}
.y55_c00432{bottom:444.800000pt;}
.y56_c00432{bottom:445.066667pt;}
.y57_c00432{bottom:446.933333pt;}
.y54_c00432{bottom:454.133333pt;}
.y23_c00432{bottom:455.333333pt;}
.y53_c00432{bottom:470.133333pt;}
.y22_c00432{bottom:471.333333pt;}
.y52_c00432{bottom:486.133333pt;}
.y21_c00432{bottom:487.333333pt;}
.y51_c00432{bottom:500.400000pt;}
.y20_c00432{bottom:503.066667pt;}
.y50_c00432{bottom:510.933333pt;}
.y1f_c00432{bottom:522.800000pt;}
.y4f_c00432{bottom:528.266667pt;}
.y4e_c00432{bottom:534.666667pt;}
.y1e_c00432{bottom:538.800000pt;}
.y4d_c00432{bottom:542.133333pt;}
.y1d_c00432{bottom:554.533333pt;}
.y4c_c00432{bottom:562.666667pt;}
.y1c_c00432{bottom:573.200000pt;}
.y4b_c00432{bottom:582.133333pt;}
.y1b_c00432{bottom:589.866667pt;}
.y4a_c00432{bottom:601.600000pt;}
.y1a_c00432{bottom:605.600000pt;}
.y19_c00432{bottom:621.600000pt;}
.y49_c00432{bottom:621.733333pt;}
.y18_c00432{bottom:637.600000pt;}
.y48_c00432{bottom:653.066667pt;}
.y17_c00432{bottom:653.333333pt;}
.y16_c00432{bottom:669.066667pt;}
.y15_c00432{bottom:684.133333pt;}
.y47_c00432{bottom:684.800000pt;}
.y46_c00432{bottom:700.800000pt;}
.y14_c00432{bottom:701.466667pt;}
.y45_c00432{bottom:716.800000pt;}
.y13_c00432{bottom:717.733333pt;}
.y44_c00432{bottom:732.400000pt;}
.y12_c00432{bottom:736.266667pt;}
.y43_c00432{bottom:748.400000pt;}
.y11_c00432{bottom:763.866667pt;}
.y42_c00432{bottom:764.400000pt;}
.y41_c00432{bottom:780.133333pt;}
.y10_c00432{bottom:780.533333pt;}
.y40_c00432{bottom:795.866667pt;}
.yf_c00432{bottom:796.533333pt;}
.y3f_c00432{bottom:811.866667pt;}
.ye_c00432{bottom:812.133333pt;}
.yd_c00432{bottom:827.866667pt;}
.yc_c00432{bottom:844.133333pt;}
.y3e_c00432{bottom:847.333333pt;}
.yb_c00432{bottom:860.133333pt;}
.y3d_c00432{bottom:863.600000pt;}
.ya_c00432{bottom:875.866667pt;}
.y3c_c00432{bottom:879.333333pt;}
.y9_c00432{bottom:891.733333pt;}
.y3b_c00432{bottom:895.333333pt;}
.y8_c00432{bottom:910.666667pt;}
.y3a_c00432{bottom:915.466667pt;}
.y7_c00432{bottom:926.666667pt;}
.y39_c00432{bottom:931.466667pt;}
.y6_c00432{bottom:942.666667pt;}
.y38_c00432{bottom:947.200000pt;}
.y5_c00432{bottom:958.666667pt;}
.y37_c00432{bottom:963.200000pt;}
.y4_c00432{bottom:977.600000pt;}
.y36_c00432{bottom:978.933333pt;}
.y3_c00432{bottom:994.266667pt;}
.y35_c00432{bottom:994.933333pt;}
.y2_c00432{bottom:1017.866667pt;}
.y1_c00432{bottom:1018.533333pt;}
.h9_c00432{height:21.333333pt;}
.hb_c00432{height:26.666667pt;}
.ha_c00432{height:37.333333pt;}
.h6_c00432{height:48.000000pt;}
.h7_c00432{height:53.333333pt;}
.h5_c00432{height:58.666667pt;}
.h4_c00432{height:64.000000pt;}
.h8_c00432{height:69.333333pt;}
.h2_c00432{height:74.666667pt;}
.h3_c00432{height:85.333333pt;}
.h1_c00432{height:1127.333333pt;}
.h0_c00432{height:1127.359944pt;}
.w0_c00432{width:851.840007pt;}
.w1_c00432{width:852.000000pt;}
.x0_c00432{left:0.000000pt;}
.x7c_c00432{left:65.333333pt;}
.x74_c00432{left:66.266667pt;}
.x12_c00432{left:67.466667pt;}
.x96_c00432{left:78.000000pt;}
.x21_c00432{left:79.866667pt;}
.x3a_c00432{left:81.333333pt;}
.x3_c00432{left:82.266667pt;}
.x67_c00432{left:84.133333pt;}
.x90_c00432{left:91.333333pt;}
.x35_c00432{left:94.133333pt;}
.x72_c00432{left:95.866667pt;}
.x98_c00432{left:96.933333pt;}
.x4e_c00432{left:99.200000pt;}
.x9d_c00432{left:101.866667pt;}
.x13_c00432{left:104.933333pt;}
.xb_c00432{left:107.066667pt;}
.x81_c00432{left:111.600000pt;}
.x69_c00432{left:112.800000pt;}
.x91_c00432{left:115.333333pt;}
.x8d_c00432{left:118.133333pt;}
.x4_c00432{left:119.733333pt;}
.x56_c00432{left:122.000000pt;}
.x4b_c00432{left:123.733333pt;}
.x77_c00432{left:125.866667pt;}
.x2a_c00432{left:127.200000pt;}
.x97_c00432{left:128.933333pt;}
.x5c_c00432{left:129.866667pt;}
.x6a_c00432{left:131.066667pt;}
.x32_c00432{left:132.266667pt;}
.x88_c00432{left:133.200000pt;}
.x99_c00432{left:135.333333pt;}
.x36_c00432{left:136.666667pt;}
.x5_c00432{left:138.666667pt;}
.x78_c00432{left:140.933333pt;}
.x22_c00432{left:142.000000pt;}
.x1b_c00432{left:143.600000pt;}
.x61_c00432{left:145.600000pt;}
.xc_c00432{left:147.066667pt;}
.x3b_c00432{left:149.866667pt;}
.x5d_c00432{left:151.333333pt;}
.x2e_c00432{left:154.266667pt;}
.x7d_c00432{left:155.333333pt;}
.x89_c00432{left:156.266667pt;}
.x1c_c00432{left:160.266667pt;}
.x3c_c00432{left:161.733333pt;}
.x14_c00432{left:163.466667pt;}
.x43_c00432{left:164.533333pt;}
.x23_c00432{left:166.266667pt;}
.xd_c00432{left:167.200000pt;}
.x75_c00432{left:168.400000pt;}
.x57_c00432{left:169.333333pt;}
.x5e_c00432{left:170.266667pt;}
.x3d_c00432{left:172.000000pt;}
.x62_c00432{left:173.466667pt;}
.x92_c00432{left:175.200000pt;}
.x9b_c00432{left:177.066667pt;}
.x9e_c00432{left:181.733333pt;}
.x47_c00432{left:183.200000pt;}
.x8b_c00432{left:185.333333pt;}
.x6_c00432{left:187.333333pt;}
.x15_c00432{left:188.400000pt;}
.x2b_c00432{left:190.533333pt;}
.x50_c00432{left:192.933333pt;}
.x6b_c00432{left:196.000000pt;}
.x86_c00432{left:198.533333pt;}
.x9a_c00432{left:199.600000pt;}
.xe_c00432{left:203.066667pt;}
.x83_c00432{left:204.400000pt;}
.x16_c00432{left:206.000000pt;}
.x7_c00432{left:207.200000pt;}
.x76_c00432{left:208.400000pt;}
.x4f_c00432{left:209.600000pt;}
.x8a_c00432{left:211.600000pt;}
.x58_c00432{left:212.533333pt;}
.x4c_c00432{left:214.000000pt;}
.x6c_c00432{left:216.533333pt;}
.x9f_c00432{left:218.133333pt;}
.x24_c00432{left:220.666667pt;}
.x93_c00432{left:221.866667pt;}
.x40_c00432{left:222.933333pt;}
.x44_c00432{left:224.666667pt;}
.x51_c00432{left:225.866667pt;}
.x68_c00432{left:227.733333pt;}
.x73_c00432{left:228.666667pt;}
.xa0_c00432{left:229.600000pt;}
.x37_c00432{left:230.800000pt;}
.x25_c00432{left:233.466667pt;}
.x1d_c00432{left:235.200000pt;}
.x79_c00432{left:237.200000pt;}
.x17_c00432{left:238.933333pt;}
.x48_c00432{left:241.066667pt;}
.xf_c00432{left:242.800000pt;}
.x52_c00432{left:244.133333pt;}
.x9c_c00432{left:245.866667pt;}
.x63_c00432{left:247.066667pt;}
.x7e_c00432{left:249.466667pt;}
.x26_c00432{left:250.800000pt;}
.x2f_c00432{left:253.066667pt;}
.x7a_c00432{left:255.733333pt;}
.x18_c00432{left:257.200000pt;}
.x6d_c00432{left:258.400000pt;}
.x8e_c00432{left:261.466667pt;}
.x5f_c00432{left:262.800000pt;}
.x59_c00432{left:264.000000pt;}
.x1e_c00432{left:265.600000pt;}
.x84_c00432{left:267.466667pt;}
.x10_c00432{left:270.933333pt;}
.x41_c00432{left:271.866667pt;}
.x27_c00432{left:272.933333pt;}
.x33_c00432{left:274.666667pt;}
.x53_c00432{left:277.733333pt;}
.x6e_c00432{left:280.133333pt;}
.x38_c00432{left:282.266667pt;}
.x1f_c00432{left:284.133333pt;}
.x5a_c00432{left:285.066667pt;}
.x87_c00432{left:287.200000pt;}
.x8f_c00432{left:288.400000pt;}
.x11_c00432{left:289.466667pt;}
.x8_c00432{left:290.400000pt;}
.x1_c00432{left:291.466667pt;}
.x42_c00432{left:292.400000pt;}
.xa1_c00432{left:293.600000pt;}
.x6f_c00432{left:295.200000pt;}
.x85_c00432{left:296.266667pt;}
.x19_c00432{left:297.200000pt;}
.x64_c00432{left:298.933333pt;}
.x34_c00432{left:300.000000pt;}
.x9_c00432{left:301.333333pt;}
.x45_c00432{left:302.666667pt;}
.x28_c00432{left:305.200000pt;}
.x39_c00432{left:309.200000pt;}
.x4d_c00432{left:311.466667pt;}
.x20_c00432{left:313.200000pt;}
.x2c_c00432{left:315.333333pt;}
.x65_c00432{left:316.266667pt;}
.x30_c00432{left:317.733333pt;}
.x1a_c00432{left:318.933333pt;}
.x7b_c00432{left:320.133333pt;}
.x49_c00432{left:321.466667pt;}
.x70_c00432{left:323.066667pt;}
.x54_c00432{left:326.133333pt;}
.x7f_c00432{left:328.800000pt;}
.x8c_c00432{left:330.533333pt;}
.x95_c00432{left:332.400000pt;}
.x46_c00432{left:334.666667pt;}
.x82_c00432{left:336.133333pt;}
.x66_c00432{left:337.333333pt;}
.x71_c00432{left:338.400000pt;}
.x31_c00432{left:339.866667pt;}
.x55_c00432{left:341.866667pt;}
.x5b_c00432{left:345.866667pt;}
.x94_c00432{left:347.866667pt;}
.x80_c00432{left:348.933333pt;}
.x2d_c00432{left:349.866667pt;}
.x4a_c00432{left:354.133333pt;}
.x3e_c00432{left:355.466667pt;}
.x60_c00432{left:357.466667pt;}
.x29_c00432{left:360.533333pt;}
.x3f_c00432{left:363.733333pt;}
.xa_c00432{left:374.933333pt;}
.xfa_c00432{left:384.266667pt;}
.xcd_c00432{left:385.333333pt;}
.x117_c00432{left:397.600000pt;}
.x110_c00432{left:398.800000pt;}
.x106_c00432{left:399.733333pt;}
.xa2_c00432{left:400.933333pt;}
.xc4_c00432{left:402.000000pt;}
.x109_c00432{left:407.066667pt;}
.x125_c00432{left:409.866667pt;}
.x119_c00432{left:414.133333pt;}
.xff_c00432{left:416.133333pt;}
.xfe_c00432{left:418.000000pt;}
.xa3_c00432{left:420.800000pt;}
.xce_c00432{left:424.000000pt;}
.xf3_c00432{left:425.066667pt;}
.xdf_c00432{left:426.400000pt;}
.xdc_c00432{left:430.933333pt;}
.xad_c00432{left:435.733333pt;}
.xfb_c00432{left:436.800000pt;}
.x10e_c00432{left:438.800000pt;}
.xb3_c00432{left:440.000000pt;}
.x121_c00432{left:441.200000pt;}
.xc9_c00432{left:443.466667pt;}
.xdd_c00432{left:445.600000pt;}
.x118_c00432{left:447.466667pt;}
.xe9_c00432{left:448.533333pt;}
.x11b_c00432{left:449.466667pt;}
.xb9_c00432{left:451.200000pt;}
.xb4_c00432{left:453.466667pt;}
.xca_c00432{left:454.933333pt;}
.xf6_c00432{left:456.000000pt;}
.x126_c00432{left:457.200000pt;}
.xc5_c00432{left:458.666667pt;}
.xae_c00432{left:460.400000pt;}
.xe6_c00432{left:462.133333pt;}
.x111_c00432{left:464.933333pt;}
.xa4_c00432{left:466.533333pt;}
.xf7_c00432{left:467.866667pt;}
.xf8_c00432{left:469.466667pt;}
.xba_c00432{left:470.666667pt;}
.x10a_c00432{left:472.400000pt;}
.xd9_c00432{left:474.933333pt;}
.x108_c00432{left:476.000000pt;}
.xaf_c00432{left:477.733333pt;}
.xe4_c00432{left:480.000000pt;}
.x102_c00432{left:481.333333pt;}
.x11d_c00432{left:483.866667pt;}
.xa5_c00432{left:485.733333pt;}
.xd6_c00432{left:488.000000pt;}
.xbb_c00432{left:493.333333pt;}
.xb5_c00432{left:495.733333pt;}
.x10b_c00432{left:498.933333pt;}
.xd2_c00432{left:501.066667pt;}
.x100_c00432{left:502.400000pt;}
.xb0_c00432{left:504.000000pt;}
.xe0_c00432{left:505.466667pt;}
.x10d_c00432{left:507.200000pt;}
.x107_c00432{left:509.866667pt;}
.xb6_c00432{left:512.000000pt;}
.x10f_c00432{left:514.000000pt;}
.xbc_c00432{left:515.466667pt;}
.x115_c00432{left:517.333333pt;}
.xa6_c00432{left:520.000000pt;}
.xef_c00432{left:522.266667pt;}
.x11a_c00432{left:523.466667pt;}
.xcf_c00432{left:525.333333pt;}
.xc6_c00432{left:527.733333pt;}
.xe5_c00432{left:533.466667pt;}
.xea_c00432{left:534.933333pt;}
.xf0_c00432{left:536.400000pt;}
.xb7_c00432{left:537.866667pt;}
.xbd_c00432{left:538.800000pt;}
.x122_c00432{left:541.466667pt;}
.x103_c00432{left:543.066667pt;}
.xf9_c00432{left:544.400000pt;}
.xe7_c00432{left:545.333333pt;}
.xd0_c00432{left:546.400000pt;}
.xd3_c00432{left:547.466667pt;}
.xbe_c00432{left:550.666667pt;}
.x101_c00432{left:552.266667pt;}
.xa7_c00432{left:553.866667pt;}
.x11e_c00432{left:558.400000pt;}
.xda_c00432{left:559.466667pt;}
.x123_c00432{left:561.600000pt;}
.xeb_c00432{left:562.800000pt;}
.xbf_c00432{left:566.400000pt;}
.xa8_c00432{left:568.266667pt;}
.x114_c00432{left:573.600000pt;}
.xb1_c00432{left:577.200000pt;}
.xc0_c00432{left:578.933333pt;}
.xc7_c00432{left:580.533333pt;}
.xf1_c00432{left:581.466667pt;}
.xfc_c00432{left:582.400000pt;}
.xec_c00432{left:585.866667pt;}
.x127_c00432{left:586.800000pt;}
.xa9_c00432{left:588.800000pt;}
.xcb_c00432{left:592.933333pt;}
.x112_c00432{left:595.866667pt;}
.xb2_c00432{left:597.733333pt;}
.x104_c00432{left:598.800000pt;}
.xb8_c00432{left:600.933333pt;}
.x10c_c00432{left:602.266667pt;}
.xd1_c00432{left:603.333333pt;}
.xd7_c00432{left:604.533333pt;}
.xf4_c00432{left:606.133333pt;}
.xcc_c00432{left:612.400000pt;}
.xc8_c00432{left:613.733333pt;}
.xfd_c00432{left:615.066667pt;}
.x11f_c00432{left:621.066667pt;}
.xd8_c00432{left:623.066667pt;}
.xd4_c00432{left:625.333333pt;}
.x124_c00432{left:626.266667pt;}
.xaa_c00432{left:629.733333pt;}
.x11c_c00432{left:632.800000pt;}
.xed_c00432{left:635.466667pt;}
.xf2_c00432{left:638.400000pt;}
.xe1_c00432{left:639.466667pt;}
.xe3_c00432{left:641.600000pt;}
.x120_c00432{left:645.333333pt;}
.xc1_c00432{left:646.800000pt;}
.x128_c00432{left:649.466667pt;}
.xab_c00432{left:651.200000pt;}
.xf5_c00432{left:652.533333pt;}
.xe8_c00432{left:653.733333pt;}
.xc2_c00432{left:655.466667pt;}
.x116_c00432{left:656.800000pt;}
.xde_c00432{left:658.133333pt;}
.x2_c00432{left:659.733333pt;}
.xe2_c00432{left:663.733333pt;}
.xd5_c00432{left:665.333333pt;}
.xdb_c00432{left:666.666667pt;}
.x113_c00432{left:668.533333pt;}
.xac_c00432{left:670.400000pt;}
.xee_c00432{left:671.333333pt;}
.xc3_c00432{left:679.733333pt;}
.x105_c00432{left:681.333333pt;}
}





/* 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_c00433 {
    display:none;
  }
  .loading-indicator_c00433.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00433 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_c00433 { 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_c00433" -> "#page-container .classname_c00433")
 */
.pf_c00433 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00433 { /* 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_c00433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00433 { /* 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_c00433 { /* 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_c00433 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00433 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00433 {overflow:visible;}
  }
}
.c_c00433 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00433 { /* 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_c00433:after { /* webkit #35443 */
  content: '';
}
.t_c00433:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00433 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 */
}
.__c00433 { /* 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_c00433 { /* info for Javascript */
  display:none;
}
.l_c00433 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00433 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00433 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00433: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_c00433 {
    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_c00433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00433.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_c00433 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00433{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00433;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.000000;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;}
.mef_c00433{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m100_c00433{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00433{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00433{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00433{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m27_c00433{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m116_c00433{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00433{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00433{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m125_c00433{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m20_c00433{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00433{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00433{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00433{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mba_c00433{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m65_c00433{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00433{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00433{transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00433{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m124_c00433{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00433{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m57_c00433{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00433{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00433{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md5_c00433{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00433{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m32_c00433{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00433{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m118_c00433{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00433{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00433{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00433{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m21_c00433{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m28_c00433{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.md1_c00433{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m36_c00433{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00433{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00433{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00433{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m10_c00433{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m104_c00433{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00433{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m30_c00433{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc_c00433{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00433{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00433{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m106_c00433{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m96_c00433{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m29_c00433{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00433{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m23_c00433{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00433{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m85_c00433{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md0_c00433{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m24_c00433{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m61_c00433{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m122_c00433{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.mda_c00433{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m34_c00433{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00433{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00433{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00433{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mad_c00433{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00433{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m6_c00433{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md6_c00433{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m74_c00433{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m33_c00433{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00433{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00433{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m48_c00433{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m67_c00433{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m70_c00433{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00433{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00433{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00433{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.maf_c00433{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m123_c00433{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00433{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00433{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.me_c00433{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m35_c00433{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m13_c00433{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md3_c00433{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m11_c00433{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m45_c00433{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md7_c00433{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00433{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00433{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00433{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00433{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00433{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00433{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md8_c00433{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00433{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mce_c00433{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m129_c00433{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00433{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00433{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m62_c00433{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m120_c00433{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00433{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00433{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m86_c00433{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00433{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m31_c00433{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m89_c00433{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md9_c00433{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00433{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.me0_c00433{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m92_c00433{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m73_c00433{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md4_c00433{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00433{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00433{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mac_c00433{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00433{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mee_c00433{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m111_c00433{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m110_c00433{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mca_c00433{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m94_c00433{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00433{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m101_c00433{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00433{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m115_c00433{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m71_c00433{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m112_c00433{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m43_c00433{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00433{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m49_c00433{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00433{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00433{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md_c00433{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00433{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.me1_c00433{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00433{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.meb_c00433{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00433{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma_c00433{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00433{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00433{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00433{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m114_c00433{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m93_c00433{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m80_c00433{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m108_c00433{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00433{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m72_c00433{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9_c00433{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m77_c00433{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m105_c00433{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00433{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00433{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00433{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00433{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me6_c00433{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m119_c00433{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4_c00433{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00433{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00433{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md2_c00433{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m44_c00433{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf_c00433{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m60_c00433{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00433{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m66_c00433{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00433{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m81_c00433{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m75_c00433{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5_c00433{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m50_c00433{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00433{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m64_c00433{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m128_c00433{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m91_c00433{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me3_c00433{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m121_c00433{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00433{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m54_c00433{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m25_c00433{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m113_c00433{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mab_c00433{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00433{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.me4_c00433{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m18_c00433{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m84_c00433{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00433{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00433{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m102_c00433{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m95_c00433{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me7_c00433{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb_c00433{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00433{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00433{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m26_c00433{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00433{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m15_c00433{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m98_c00433{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m109_c00433{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m46_c00433{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m97_c00433{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00433{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m69_c00433{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mff_c00433{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mae_c00433{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m52_c00433{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m63_c00433{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00433{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m127_c00433{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00433{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m37_c00433{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me9_c00433{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00433{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00433{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m51_c00433{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00433{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00433{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m14_c00433{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00433{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00433{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m79_c00433{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00433{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m12_c00433{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m68_c00433{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.me2_c00433{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00433{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00433{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00433{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m59_c00433{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00433{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00433{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00433{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m42_c00433{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m17_c00433{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00433{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mde_c00433{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me5_c00433{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m99_c00433{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m83_c00433{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00433{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mea_c00433{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m56_c00433{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m38_c00433{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m22_c00433{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00433{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00433{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00433{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00433{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m39_c00433{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00433{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m103_c00433{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00433{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00433{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00433{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00433{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00433{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00433{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00433{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00433{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m76_c00433{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me8_c00433{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.med_c00433{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00433{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m41_c00433{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00433{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00433{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m19_c00433{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m53_c00433{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00433{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m8_c00433{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m88_c00433{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00433{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7_c00433{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m47_c00433{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00433{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00433{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00433{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00433{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m107_c00433{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00433{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m90_c00433{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00433{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00433{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00433{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m16_c00433{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.maa_c00433{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m117_c00433{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mec_c00433{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m78_c00433{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m40_c00433{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m126_c00433{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00433{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00433{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m87_c00433{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00433{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m55_c00433{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m58_c00433{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m82_c00433{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls1_c00433{letter-spacing:0.000000px;}
.ls0_c00433{letter-spacing:55.714286px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{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__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00433{word-spacing:-85.714286px;}
.ws10_c00433{word-spacing:-10.315271px;}
.wsf_c00433{word-spacing:-7.763158px;}
.ws19_c00433{word-spacing:-7.625337px;}
.ws4_c00433{word-spacing:-7.500000px;}
.ws13_c00433{word-spacing:-7.471698px;}
.ws16_c00433{word-spacing:-7.333333px;}
.ws18_c00433{word-spacing:-5.875000px;}
.ws15_c00433{word-spacing:-5.460796px;}
.ws0_c00433{word-spacing:-3.498282px;}
.ws12_c00433{word-spacing:-3.229299px;}
.ws1a_c00433{word-spacing:0.000000px;}
.ws11_c00433{word-spacing:0.042980px;}
.ws2_c00433{word-spacing:0.555556px;}
.ws1_c00433{word-spacing:4.500000px;}
.ws14_c00433{word-spacing:11.527778px;}
.ws3_c00433{word-spacing:14.523732px;}
.ws17_c00433{word-spacing:15.375000px;}
.ws6_c00433{word-spacing:22.142857px;}
.ws9_c00433{word-spacing:25.714286px;}
.ws7_c00433{word-spacing:29.285714px;}
.wsa_c00433{word-spacing:40.000000px;}
.ws8_c00433{word-spacing:44.166667px;}
.ws5_c00433{word-spacing:66.315789px;}
.wsd_c00433{word-spacing:73.333333px;}
.wse_c00433{word-spacing:165.263158px;}
.wsc_c00433{word-spacing:282.857143px;}
._2_c00433{margin-left:-55.714286px;}
._6_c00433{width:55.714286px;}
._0_c00433{width:59.285714px;}
._1_c00433{width:64.642857px;}
._5_c00433{width:98.571429px;}
._4_c00433{width:104.722222px;}
._3_c00433{width:1353.928571px;}
.fc0_c00433{color:transparent;}
.fs4_c00433{font-size:54.000000px;}
.fs3_c00433{font-size:60.000000px;}
.fs2_c00433{font-size:66.000000px;}
.fs0_c00433{font-size:72.000000px;}
.fs1_c00433{font-size:84.000000px;}
.y0_c00433{bottom:0.000000px;}
.y6c_c00433{bottom:199.050000px;}
.y38_c00433{bottom:199.800000px;}
.y6b_c00433{bottom:217.350000px;}
.y37_c00433{bottom:217.500000px;}
.y36_c00433{bottom:234.750000px;}
.y6a_c00433{bottom:235.050000px;}
.y69_c00433{bottom:252.750000px;}
.y35_c00433{bottom:255.300000px;}
.y34_c00433{bottom:270.300000px;}
.y68_c00433{bottom:270.450000px;}
.y33_c00433{bottom:283.350000px;}
.y67_c00433{bottom:288.450000px;}
.y32_c00433{bottom:298.050000px;}
.y66_c00433{bottom:306.150000px;}
.y31_c00433{bottom:313.200000px;}
.y65_c00433{bottom:323.400000px;}
.y30_c00433{bottom:326.100000px;}
.y2f_c00433{bottom:340.200000px;}
.y64_c00433{bottom:341.100000px;}
.y2e_c00433{bottom:354.900000px;}
.y63_c00433{bottom:358.800000px;}
.y2d_c00433{bottom:369.000000px;}
.y62_c00433{bottom:376.500000px;}
.y2c_c00433{bottom:384.900000px;}
.y61_c00433{bottom:394.500000px;}
.y2b_c00433{bottom:398.100000px;}
.y60_c00433{bottom:412.800000px;}
.y2a_c00433{bottom:413.250000px;}
.y29_c00433{bottom:426.600000px;}
.y5f_c00433{bottom:430.500000px;}
.y28_c00433{bottom:442.800000px;}
.y5e_c00433{bottom:448.500000px;}
.y27_c00433{bottom:457.200000px;}
.y26_c00433{bottom:470.850000px;}
.y5d_c00433{bottom:474.900000px;}
.y25_c00433{bottom:485.250000px;}
.y5c_c00433{bottom:492.900000px;}
.y24_c00433{bottom:501.450000px;}
.y5b_c00433{bottom:510.900000px;}
.y23_c00433{bottom:525.300000px;}
.y5a_c00433{bottom:528.900000px;}
.y22_c00433{bottom:543.600000px;}
.y59_c00433{bottom:546.900000px;}
.y58_c00433{bottom:563.850000px;}
.y21_c00433{bottom:569.850000px;}
.y57_c00433{bottom:581.850000px;}
.y20_c00433{bottom:587.100000px;}
.y56_c00433{bottom:599.550000px;}
.y1f_c00433{bottom:604.800000px;}
.y55_c00433{bottom:617.550000px;}
.y1e_c00433{bottom:622.800000px;}
.y54_c00433{bottom:635.550000px;}
.y1d_c00433{bottom:640.500000px;}
.y53_c00433{bottom:653.550000px;}
.y1c_c00433{bottom:658.500000px;}
.y52_c00433{bottom:671.250000px;}
.y1b_c00433{bottom:676.200000px;}
.y51_c00433{bottom:689.250000px;}
.y1a_c00433{bottom:694.200000px;}
.y50_c00433{bottom:707.250000px;}
.y19_c00433{bottom:712.200000px;}
.y4f_c00433{bottom:724.950000px;}
.y18_c00433{bottom:730.200000px;}
.y4e_c00433{bottom:742.650000px;}
.y17_c00433{bottom:747.900000px;}
.y4d_c00433{bottom:760.350000px;}
.y16_c00433{bottom:765.900000px;}
.y4c_c00433{bottom:778.350000px;}
.y15_c00433{bottom:783.900000px;}
.y4b_c00433{bottom:800.550000px;}
.y14_c00433{bottom:801.600000px;}
.y4a_c00433{bottom:818.250000px;}
.y13_c00433{bottom:819.600000px;}
.y12_c00433{bottom:837.600000px;}
.y49_c00433{bottom:839.550000px;}
.y11_c00433{bottom:855.300000px;}
.y48_c00433{bottom:857.550000px;}
.y10_c00433{bottom:873.300000px;}
.y47_c00433{bottom:875.550000px;}
.yf_c00433{bottom:891.300000px;}
.y46_c00433{bottom:893.550000px;}
.ye_c00433{bottom:909.300000px;}
.y45_c00433{bottom:911.550000px;}
.yd_c00433{bottom:927.000000px;}
.y44_c00433{bottom:929.250000px;}
.yc_c00433{bottom:944.250000px;}
.y43_c00433{bottom:947.250000px;}
.yb_c00433{bottom:962.250000px;}
.y42_c00433{bottom:964.950000px;}
.y41_c00433{bottom:983.250000px;}
.ya_c00433{bottom:983.850000px;}
.y40_c00433{bottom:1000.950000px;}
.y9_c00433{bottom:1002.600000px;}
.y3f_c00433{bottom:1018.650000px;}
.y8_c00433{bottom:1028.850000px;}
.y3e_c00433{bottom:1036.650000px;}
.y7_c00433{bottom:1046.850000px;}
.y3d_c00433{bottom:1054.650000px;}
.y6_c00433{bottom:1069.200000px;}
.y3c_c00433{bottom:1072.350000px;}
.y5_c00433{bottom:1086.900000px;}
.y3b_c00433{bottom:1090.350000px;}
.y4_c00433{bottom:1106.700000px;}
.y3a_c00433{bottom:1108.350000px;}
.y39_c00433{bottom:1126.050000px;}
.y3_c00433{bottom:1127.100000px;}
.y2_c00433{bottom:1153.500000px;}
.y1_c00433{bottom:1154.550000px;}
.h6_c00433{height:54.000000px;}
.h5_c00433{height:60.000000px;}
.h4_c00433{height:66.000000px;}
.h2_c00433{height:72.000000px;}
.h3_c00433{height:84.000000px;}
.h1_c00433{height:1276.500000px;}
.h0_c00433{height:1276.559967px;}
.w0_c00433{width:958.320007px;}
.w1_c00433{width:958.500000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:173.550000px;}
.x8_c00433{left:182.850000px;}
.x23_c00433{left:183.900000px;}
.xa3_c00433{left:187.200000px;}
.x8a_c00433{left:198.300000px;}
.x34_c00433{left:199.650000px;}
.x43_c00433{left:200.700000px;}
.xf_c00433{left:201.900000px;}
.xa5_c00433{left:204.450000px;}
.xa7_c00433{left:205.650000px;}
.x46_c00433{left:211.950000px;}
.x8c_c00433{left:213.000000px;}
.x9b_c00433{left:214.650000px;}
.xa1_c00433{left:216.000000px;}
.x3_c00433{left:219.900000px;}
.x1e_c00433{left:223.500000px;}
.x72_c00433{left:224.550000px;}
.x24_c00433{left:225.600000px;}
.x29_c00433{left:228.900000px;}
.x37_c00433{left:232.350000px;}
.x64_c00433{left:234.000000px;}
.x95_c00433{left:235.050000px;}
.x47_c00433{left:236.400000px;}
.x68_c00433{left:237.600000px;}
.x10_c00433{left:238.950000px;}
.x84_c00433{left:240.900000px;}
.x9_c00433{left:243.750000px;}
.x87_c00433{left:245.100000px;}
.x16_c00433{left:246.150000px;}
.x82_c00433{left:247.200000px;}
.x6f_c00433{left:248.850000px;}
.x1a_c00433{left:250.950000px;}
.x7e_c00433{left:252.600000px;}
.x57_c00433{left:253.800000px;}
.x9f_c00433{left:255.300000px;}
.x98_c00433{left:256.350000px;}
.x4_c00433{left:257.700000px;}
.x48_c00433{left:259.500000px;}
.x25_c00433{left:260.850000px;}
.x92_c00433{left:262.050000px;}
.x38_c00433{left:263.700000px;}
.x4c_c00433{left:265.950000px;}
.x61_c00433{left:268.950000px;}
.xa4_c00433{left:270.300000px;}
.x70_c00433{left:274.050000px;}
.x9d_c00433{left:275.850000px;}
.x3e_c00433{left:277.650000px;}
.x35_c00433{left:278.850000px;}
.x4d_c00433{left:280.350000px;}
.xa2_c00433{left:281.550000px;}
.x1f_c00433{left:282.900000px;}
.x65_c00433{left:283.950000px;}
.x7f_c00433{left:286.500000px;}
.x5d_c00433{left:288.150000px;}
.x85_c00433{left:291.000000px;}
.x8b_c00433{left:292.200000px;}
.x62_c00433{left:294.150000px;}
.x20_c00433{left:295.800000px;}
.x17_c00433{left:299.400000px;}
.x5_c00433{left:300.600000px;}
.x69_c00433{left:301.950000px;}
.x2a_c00433{left:303.750000px;}
.x8d_c00433{left:305.550000px;}
.xa0_c00433{left:308.550000px;}
.xa_c00433{left:310.050000px;}
.x7c_c00433{left:311.700000px;}
.x8e_c00433{left:313.500000px;}
.x26_c00433{left:316.350000px;}
.x88_c00433{left:317.400000px;}
.x66_c00433{left:318.900000px;}
.x4e_c00433{left:320.700000px;}
.x11_c00433{left:323.250000px;}
.x21_c00433{left:324.300000px;}
.x6a_c00433{left:326.400000px;}
.x99_c00433{left:328.350000px;}
.x2b_c00433{left:329.700000px;}
.x86_c00433{left:331.050000px;}
.x49_c00433{left:332.250000px;}
.x18_c00433{left:333.600000px;}
.x9a_c00433{left:336.300000px;}
.x96_c00433{left:338.100000px;}
.x1b_c00433{left:341.250000px;}
.x58_c00433{left:342.300000px;}
.x22_c00433{left:343.800000px;}
.x12_c00433{left:346.350000px;}
.x6b_c00433{left:348.000000px;}
.x9c_c00433{left:350.100000px;}
.x73_c00433{left:352.050000px;}
.x83_c00433{left:353.550000px;}
.x19_c00433{left:354.900000px;}
.x2c_c00433{left:355.950000px;}
.x52_c00433{left:357.300000px;}
.x77_c00433{left:359.250000px;}
.x6_c00433{left:361.050000px;}
.x4a_c00433{left:363.600000px;}
.x2d_c00433{left:367.050000px;}
.x63_c00433{left:369.000000px;}
.x89_c00433{left:373.800000px;}
.x59_c00433{left:375.000000px;}
.x4f_c00433{left:376.500000px;}
.x2e_c00433{left:377.850000px;}
.x53_c00433{left:378.900000px;}
.x3f_c00433{left:380.700000px;}
.x7_c00433{left:382.650000px;}
.x13_c00433{left:384.450000px;}
.x3b_c00433{left:386.250000px;}
.x6c_c00433{left:387.900000px;}
.xb_c00433{left:391.350000px;}
.x2f_c00433{left:393.000000px;}
.x5a_c00433{left:396.900000px;}
.x39_c00433{left:399.150000px;}
.x93_c00433{left:400.650000px;}
.x81_c00433{left:401.700000px;}
.x44_c00433{left:403.500000px;}
.xa8_c00433{left:405.300000px;}
.x90_c00433{left:407.250000px;}
.x6d_c00433{left:408.450000px;}
.x74_c00433{left:410.400000px;}
.x9e_c00433{left:413.100000px;}
.x27_c00433{left:414.600000px;}
.x40_c00433{left:417.000000px;}
.x91_c00433{left:419.850000px;}
.x79_c00433{left:421.500000px;}
.x94_c00433{left:422.700000px;}
.x97_c00433{left:423.750000px;}
.x54_c00433{left:425.250000px;}
.x28_c00433{left:426.450000px;}
.x3c_c00433{left:427.650000px;}
.x4b_c00433{left:429.450000px;}
.x2_c00433{left:430.650000px;}
.x5b_c00433{left:432.150000px;}
.x75_c00433{left:434.100000px;}
.x1c_c00433{left:437.700000px;}
.xc_c00433{left:439.200000px;}
.x55_c00433{left:440.700000px;}
.x41_c00433{left:441.900000px;}
.x5c_c00433{left:443.250000px;}
.x14_c00433{left:444.600000px;}
.x78_c00433{left:447.450000px;}
.x8f_c00433{left:448.950000px;}
.x6e_c00433{left:450.900000px;}
.x30_c00433{left:453.150000px;}
.x45_c00433{left:456.000000px;}
.x1d_c00433{left:457.800000px;}
.x7a_c00433{left:459.600000px;}
.x50_c00433{left:461.400000px;}
.xa9_c00433{left:462.600000px;}
.x31_c00433{left:464.250000px;}
.x42_c00433{left:465.600000px;}
.x15_c00433{left:467.250000px;}
.xa6_c00433{left:469.500000px;}
.x80_c00433{left:470.850000px;}
.x56_c00433{left:475.650000px;}
.xd_c00433{left:477.750000px;}
.x71_c00433{left:479.700000px;}
.x32_c00433{left:481.200000px;}
.x67_c00433{left:482.700000px;}
.x7b_c00433{left:484.500000px;}
.xaa_c00433{left:488.550000px;}
.x5f_c00433{left:489.600000px;}
.x3d_c00433{left:491.400000px;}
.x3a_c00433{left:493.200000px;}
.x60_c00433{left:497.550000px;}
.xe_c00433{left:500.850000px;}
.x7d_c00433{left:502.050000px;}
.x76_c00433{left:505.350000px;}
.x36_c00433{left:507.450000px;}
.x33_c00433{left:508.500000px;}
.x5e_c00433{left:513.450000px;}
.x51_c00433{left:514.650000px;}
.x12f_c00433{left:542.100000px;}
.xdc_c00433{left:557.700000px;}
.xab_c00433{left:558.750000px;}
.x11f_c00433{left:559.950000px;}
.x12c_c00433{left:561.000000px;}
.xf4_c00433{left:572.100000px;}
.xd4_c00433{left:575.550000px;}
.xac_c00433{left:579.600000px;}
.xdd_c00433{left:582.900000px;}
.x11d_c00433{left:584.400000px;}
.xe8_c00433{left:585.600000px;}
.x12d_c00433{left:586.950000px;}
.x133_c00433{left:589.350000px;}
.x100_c00433{left:590.550000px;}
.xe5_c00433{left:594.300000px;}
.xad_c00433{left:597.300000px;}
.x130_c00433{left:598.950000px;}
.xfb_c00433{left:600.150000px;}
.x10a_c00433{left:601.800000px;}
.xf5_c00433{left:604.800000px;}
.xed_c00433{left:606.300000px;}
.x147_c00433{left:607.350000px;}
.xbb_c00433{left:608.700000px;}
.xce_c00433{left:610.050000px;}
.xde_c00433{left:611.400000px;}
.x13c_c00433{left:613.050000px;}
.xf9_c00433{left:614.400000px;}
.xae_c00433{left:617.100000px;}
.xe9_c00433{left:618.300000px;}
.xc8_c00433{left:619.500000px;}
.x10d_c00433{left:620.700000px;}
.x10b_c00433{left:621.900000px;}
.xb5_c00433{left:624.300000px;}
.xd5_c00433{left:627.750000px;}
.x13d_c00433{left:630.000000px;}
.x125_c00433{left:631.050000px;}
.x128_c00433{left:632.550000px;}
.xc4_c00433{left:633.900000px;}
.x144_c00433{left:634.950000px;}
.x10f_c00433{left:636.000000px;}
.xda_c00433{left:638.550000px;}
.x14c_c00433{left:640.650000px;}
.xbc_c00433{left:642.600000px;}
.x119_c00433{left:643.650000px;}
.x139_c00433{left:645.150000px;}
.xd1_c00433{left:648.600000px;}
.xdf_c00433{left:649.950000px;}
.xc9_c00433{left:655.200000px;}
.xee_c00433{left:657.450000px;}
.x129_c00433{left:658.500000px;}
.x110_c00433{left:660.150000px;}
.x104_c00433{left:661.800000px;}
.xea_c00433{left:663.600000px;}
.xaf_c00433{left:665.400000px;}
.x107_c00433{left:667.350000px;}
.x11a_c00433{left:669.900000px;}
.x134_c00433{left:671.400000px;}
.xbd_c00433{left:673.500000px;}
.xd6_c00433{left:676.350000px;}
.xb6_c00433{left:677.550000px;}
.x120_c00433{left:678.750000px;}
.xe6_c00433{left:680.400000px;}
.x105_c00433{left:681.900000px;}
.x101_c00433{left:683.250000px;}
.xb0_c00433{left:685.200000px;}
.xfa_c00433{left:686.400000px;}
.x10e_c00433{left:689.850000px;}
.x135_c00433{left:693.300000px;}
.xbe_c00433{left:695.100000px;}
.xfc_c00433{left:696.600000px;}
.xe0_c00433{left:698.550000px;}
.x148_c00433{left:699.600000px;}
.xb1_c00433{left:700.650000px;}
.xdb_c00433{left:702.900000px;}
.x14a_c00433{left:703.950000px;}
.xca_c00433{left:706.650000px;}
.x102_c00433{left:707.700000px;}
.xe1_c00433{left:709.050000px;}
.xc5_c00433{left:710.250000px;}
.xf6_c00433{left:711.750000px;}
.xef_c00433{left:714.000000px;}
.x126_c00433{left:715.650000px;}
.xd7_c00433{left:717.000000px;}
.x111_c00433{left:718.050000px;}
.x11b_c00433{left:720.300000px;}
.x114_c00433{left:723.450000px;}
.xbf_c00433{left:726.000000px;}
.x112_c00433{left:727.050000px;}
.x12e_c00433{left:730.200000px;}
.xf7_c00433{left:731.850000px;}
.xb7_c00433{left:734.400000px;}
.xc0_c00433{left:736.500000px;}
.x108_c00433{left:737.550000px;}
.x122_c00433{left:739.350000px;}
.x13e_c00433{left:741.000000px;}
.x113_c00433{left:742.950000px;}
.x141_c00433{left:744.600000px;}
.xd2_c00433{left:746.550000px;}
.xf0_c00433{left:747.900000px;}
.x145_c00433{left:749.550000px;}
.xb2_c00433{left:751.800000px;}
.x137_c00433{left:754.950000px;}
.xeb_c00433{left:756.000000px;}
.xb8_c00433{left:759.600000px;}
.xcb_c00433{left:760.950000px;}
.xb3_c00433{left:763.350000px;}
.xcf_c00433{left:765.600000px;}
.xd8_c00433{left:768.150000px;}
.x106_c00433{left:769.500000px;}
.x14b_c00433{left:772.350000px;}
.xe2_c00433{left:775.950000px;}
.x123_c00433{left:777.150000px;}
.xfd_c00433{left:778.200000px;}
.x149_c00433{left:779.850000px;}
.xcc_c00433{left:781.050000px;}
.x115_c00433{left:782.100000px;}
.x124_c00433{left:785.100000px;}
.xb9_c00433{left:787.650000px;}
.x109_c00433{left:788.700000px;}
.xec_c00433{left:792.000000px;}
.x10c_c00433{left:794.100000px;}
.xfe_c00433{left:797.250000px;}
.x117_c00433{left:798.450000px;}
.xc6_c00433{left:799.800000px;}
.x13a_c00433{left:801.000000px;}
.xf1_c00433{left:804.000000px;}
.x11e_c00433{left:807.600000px;}
.x131_c00433{left:809.550000px;}
.xc1_c00433{left:811.350000px;}
.x12b_c00433{left:813.000000px;}
.xb4_c00433{left:814.800000px;}
.x136_c00433{left:817.050000px;}
.x142_c00433{left:818.100000px;}
.xe3_c00433{left:820.650000px;}
.xf2_c00433{left:821.700000px;}
.xc7_c00433{left:823.200000px;}
.xd3_c00433{left:826.800000px;}
.x11c_c00433{left:828.000000px;}
.xba_c00433{left:829.350000px;}
.xc2_c00433{left:830.850000px;}
.x12a_c00433{left:832.650000px;}
.xe7_c00433{left:833.700000px;}
.x132_c00433{left:834.750000px;}
.x121_c00433{left:836.100000px;}
.x13f_c00433{left:837.750000px;}
.xf8_c00433{left:839.100000px;}
.xe4_c00433{left:841.950000px;}
.xff_c00433{left:843.300000px;}
.xd0_c00433{left:844.500000px;}
.xc3_c00433{left:848.100000px;}
.x116_c00433{left:849.600000px;}
.x103_c00433{left:851.700000px;}
.x140_c00433{left:852.900000px;}
.x143_c00433{left:854.850000px;}
.x118_c00433{left:858.150000px;}
.xd9_c00433{left:860.400000px;}
.x138_c00433{left:861.900000px;}
.xf3_c00433{left:864.900000px;}
.x13b_c00433{left:866.850000px;}
.x146_c00433{left:869.100000px;}
.xcd_c00433{left:872.550000px;}
.x127_c00433{left:874.500000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls1_c00433{letter-spacing:0.000000pt;}
.ls0_c00433{letter-spacing:49.523810pt;}
.wsb_c00433{word-spacing:-76.190476pt;}
.ws10_c00433{word-spacing:-9.169130pt;}
.wsf_c00433{word-spacing:-6.900585pt;}
.ws19_c00433{word-spacing:-6.778077pt;}
.ws4_c00433{word-spacing:-6.666667pt;}
.ws13_c00433{word-spacing:-6.641509pt;}
.ws16_c00433{word-spacing:-6.518519pt;}
.ws18_c00433{word-spacing:-5.222222pt;}
.ws15_c00433{word-spacing:-4.854041pt;}
.ws0_c00433{word-spacing:-3.109584pt;}
.ws12_c00433{word-spacing:-2.870488pt;}
.ws1a_c00433{word-spacing:0.000000pt;}
.ws11_c00433{word-spacing:0.038204pt;}
.ws2_c00433{word-spacing:0.493827pt;}
.ws1_c00433{word-spacing:4.000000pt;}
.ws14_c00433{word-spacing:10.246914pt;}
.ws3_c00433{word-spacing:12.909984pt;}
.ws17_c00433{word-spacing:13.666667pt;}
.ws6_c00433{word-spacing:19.682540pt;}
.ws9_c00433{word-spacing:22.857143pt;}
.ws7_c00433{word-spacing:26.031746pt;}
.wsa_c00433{word-spacing:35.555556pt;}
.ws8_c00433{word-spacing:39.259259pt;}
.ws5_c00433{word-spacing:58.947368pt;}
.wsd_c00433{word-spacing:65.185185pt;}
.wse_c00433{word-spacing:146.900585pt;}
.wsc_c00433{word-spacing:251.428571pt;}
._2_c00433{margin-left:-49.523810pt;}
._6_c00433{width:49.523810pt;}
._0_c00433{width:52.698413pt;}
._1_c00433{width:57.460317pt;}
._5_c00433{width:87.619048pt;}
._4_c00433{width:93.086420pt;}
._3_c00433{width:1203.492063pt;}
.fs4_c00433{font-size:48.000000pt;}
.fs3_c00433{font-size:53.333333pt;}
.fs2_c00433{font-size:58.666667pt;}
.fs0_c00433{font-size:64.000000pt;}
.fs1_c00433{font-size:74.666667pt;}
.y0_c00433{bottom:0.000000pt;}
.y6c_c00433{bottom:176.933333pt;}
.y38_c00433{bottom:177.600000pt;}
.y6b_c00433{bottom:193.200000pt;}
.y37_c00433{bottom:193.333333pt;}
.y36_c00433{bottom:208.666667pt;}
.y6a_c00433{bottom:208.933333pt;}
.y69_c00433{bottom:224.666667pt;}
.y35_c00433{bottom:226.933333pt;}
.y34_c00433{bottom:240.266667pt;}
.y68_c00433{bottom:240.400000pt;}
.y33_c00433{bottom:251.866667pt;}
.y67_c00433{bottom:256.400000pt;}
.y32_c00433{bottom:264.933333pt;}
.y66_c00433{bottom:272.133333pt;}
.y31_c00433{bottom:278.400000pt;}
.y65_c00433{bottom:287.466667pt;}
.y30_c00433{bottom:289.866667pt;}
.y2f_c00433{bottom:302.400000pt;}
.y64_c00433{bottom:303.200000pt;}
.y2e_c00433{bottom:315.466667pt;}
.y63_c00433{bottom:318.933333pt;}
.y2d_c00433{bottom:328.000000pt;}
.y62_c00433{bottom:334.666667pt;}
.y2c_c00433{bottom:342.133333pt;}
.y61_c00433{bottom:350.666667pt;}
.y2b_c00433{bottom:353.866667pt;}
.y60_c00433{bottom:366.933333pt;}
.y2a_c00433{bottom:367.333333pt;}
.y29_c00433{bottom:379.200000pt;}
.y5f_c00433{bottom:382.666667pt;}
.y28_c00433{bottom:393.600000pt;}
.y5e_c00433{bottom:398.666667pt;}
.y27_c00433{bottom:406.400000pt;}
.y26_c00433{bottom:418.533333pt;}
.y5d_c00433{bottom:422.133333pt;}
.y25_c00433{bottom:431.333333pt;}
.y5c_c00433{bottom:438.133333pt;}
.y24_c00433{bottom:445.733333pt;}
.y5b_c00433{bottom:454.133333pt;}
.y23_c00433{bottom:466.933333pt;}
.y5a_c00433{bottom:470.133333pt;}
.y22_c00433{bottom:483.200000pt;}
.y59_c00433{bottom:486.133333pt;}
.y58_c00433{bottom:501.200000pt;}
.y21_c00433{bottom:506.533333pt;}
.y57_c00433{bottom:517.200000pt;}
.y20_c00433{bottom:521.866667pt;}
.y56_c00433{bottom:532.933333pt;}
.y1f_c00433{bottom:537.600000pt;}
.y55_c00433{bottom:548.933333pt;}
.y1e_c00433{bottom:553.600000pt;}
.y54_c00433{bottom:564.933333pt;}
.y1d_c00433{bottom:569.333333pt;}
.y53_c00433{bottom:580.933333pt;}
.y1c_c00433{bottom:585.333333pt;}
.y52_c00433{bottom:596.666667pt;}
.y1b_c00433{bottom:601.066667pt;}
.y51_c00433{bottom:612.666667pt;}
.y1a_c00433{bottom:617.066667pt;}
.y50_c00433{bottom:628.666667pt;}
.y19_c00433{bottom:633.066667pt;}
.y4f_c00433{bottom:644.400000pt;}
.y18_c00433{bottom:649.066667pt;}
.y4e_c00433{bottom:660.133333pt;}
.y17_c00433{bottom:664.800000pt;}
.y4d_c00433{bottom:675.866667pt;}
.y16_c00433{bottom:680.800000pt;}
.y4c_c00433{bottom:691.866667pt;}
.y15_c00433{bottom:696.800000pt;}
.y4b_c00433{bottom:711.600000pt;}
.y14_c00433{bottom:712.533333pt;}
.y4a_c00433{bottom:727.333333pt;}
.y13_c00433{bottom:728.533333pt;}
.y12_c00433{bottom:744.533333pt;}
.y49_c00433{bottom:746.266667pt;}
.y11_c00433{bottom:760.266667pt;}
.y48_c00433{bottom:762.266667pt;}
.y10_c00433{bottom:776.266667pt;}
.y47_c00433{bottom:778.266667pt;}
.yf_c00433{bottom:792.266667pt;}
.y46_c00433{bottom:794.266667pt;}
.ye_c00433{bottom:808.266667pt;}
.y45_c00433{bottom:810.266667pt;}
.yd_c00433{bottom:824.000000pt;}
.y44_c00433{bottom:826.000000pt;}
.yc_c00433{bottom:839.333333pt;}
.y43_c00433{bottom:842.000000pt;}
.yb_c00433{bottom:855.333333pt;}
.y42_c00433{bottom:857.733333pt;}
.y41_c00433{bottom:874.000000pt;}
.ya_c00433{bottom:874.533333pt;}
.y40_c00433{bottom:889.733333pt;}
.y9_c00433{bottom:891.200000pt;}
.y3f_c00433{bottom:905.466667pt;}
.y8_c00433{bottom:914.533333pt;}
.y3e_c00433{bottom:921.466667pt;}
.y7_c00433{bottom:930.533333pt;}
.y3d_c00433{bottom:937.466667pt;}
.y6_c00433{bottom:950.400000pt;}
.y3c_c00433{bottom:953.200000pt;}
.y5_c00433{bottom:966.133333pt;}
.y3b_c00433{bottom:969.200000pt;}
.y4_c00433{bottom:983.733333pt;}
.y3a_c00433{bottom:985.200000pt;}
.y39_c00433{bottom:1000.933333pt;}
.y3_c00433{bottom:1001.866667pt;}
.y2_c00433{bottom:1025.333333pt;}
.y1_c00433{bottom:1026.266667pt;}
.h6_c00433{height:48.000000pt;}
.h5_c00433{height:53.333333pt;}
.h4_c00433{height:58.666667pt;}
.h2_c00433{height:64.000000pt;}
.h3_c00433{height:74.666667pt;}
.h1_c00433{height:1134.666667pt;}
.h0_c00433{height:1134.719971pt;}
.w0_c00433{width:851.840007pt;}
.w1_c00433{width:852.000000pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:154.266667pt;}
.x8_c00433{left:162.533333pt;}
.x23_c00433{left:163.466667pt;}
.xa3_c00433{left:166.400000pt;}
.x8a_c00433{left:176.266667pt;}
.x34_c00433{left:177.466667pt;}
.x43_c00433{left:178.400000pt;}
.xf_c00433{left:179.466667pt;}
.xa5_c00433{left:181.733333pt;}
.xa7_c00433{left:182.800000pt;}
.x46_c00433{left:188.400000pt;}
.x8c_c00433{left:189.333333pt;}
.x9b_c00433{left:190.800000pt;}
.xa1_c00433{left:192.000000pt;}
.x3_c00433{left:195.466667pt;}
.x1e_c00433{left:198.666667pt;}
.x72_c00433{left:199.600000pt;}
.x24_c00433{left:200.533333pt;}
.x29_c00433{left:203.466667pt;}
.x37_c00433{left:206.533333pt;}
.x64_c00433{left:208.000000pt;}
.x95_c00433{left:208.933333pt;}
.x47_c00433{left:210.133333pt;}
.x68_c00433{left:211.200000pt;}
.x10_c00433{left:212.400000pt;}
.x84_c00433{left:214.133333pt;}
.x9_c00433{left:216.666667pt;}
.x87_c00433{left:217.866667pt;}
.x16_c00433{left:218.800000pt;}
.x82_c00433{left:219.733333pt;}
.x6f_c00433{left:221.200000pt;}
.x1a_c00433{left:223.066667pt;}
.x7e_c00433{left:224.533333pt;}
.x57_c00433{left:225.600000pt;}
.x9f_c00433{left:226.933333pt;}
.x98_c00433{left:227.866667pt;}
.x4_c00433{left:229.066667pt;}
.x48_c00433{left:230.666667pt;}
.x25_c00433{left:231.866667pt;}
.x92_c00433{left:232.933333pt;}
.x38_c00433{left:234.400000pt;}
.x4c_c00433{left:236.400000pt;}
.x61_c00433{left:239.066667pt;}
.xa4_c00433{left:240.266667pt;}
.x70_c00433{left:243.600000pt;}
.x9d_c00433{left:245.200000pt;}
.x3e_c00433{left:246.800000pt;}
.x35_c00433{left:247.866667pt;}
.x4d_c00433{left:249.200000pt;}
.xa2_c00433{left:250.266667pt;}
.x1f_c00433{left:251.466667pt;}
.x65_c00433{left:252.400000pt;}
.x7f_c00433{left:254.666667pt;}
.x5d_c00433{left:256.133333pt;}
.x85_c00433{left:258.666667pt;}
.x8b_c00433{left:259.733333pt;}
.x62_c00433{left:261.466667pt;}
.x20_c00433{left:262.933333pt;}
.x17_c00433{left:266.133333pt;}
.x5_c00433{left:267.200000pt;}
.x69_c00433{left:268.400000pt;}
.x2a_c00433{left:270.000000pt;}
.x8d_c00433{left:271.600000pt;}
.xa0_c00433{left:274.266667pt;}
.xa_c00433{left:275.600000pt;}
.x7c_c00433{left:277.066667pt;}
.x8e_c00433{left:278.666667pt;}
.x26_c00433{left:281.200000pt;}
.x88_c00433{left:282.133333pt;}
.x66_c00433{left:283.466667pt;}
.x4e_c00433{left:285.066667pt;}
.x11_c00433{left:287.333333pt;}
.x21_c00433{left:288.266667pt;}
.x6a_c00433{left:290.133333pt;}
.x99_c00433{left:291.866667pt;}
.x2b_c00433{left:293.066667pt;}
.x86_c00433{left:294.266667pt;}
.x49_c00433{left:295.333333pt;}
.x18_c00433{left:296.533333pt;}
.x9a_c00433{left:298.933333pt;}
.x96_c00433{left:300.533333pt;}
.x1b_c00433{left:303.333333pt;}
.x58_c00433{left:304.266667pt;}
.x22_c00433{left:305.600000pt;}
.x12_c00433{left:307.866667pt;}
.x6b_c00433{left:309.333333pt;}
.x9c_c00433{left:311.200000pt;}
.x73_c00433{left:312.933333pt;}
.x83_c00433{left:314.266667pt;}
.x19_c00433{left:315.466667pt;}
.x2c_c00433{left:316.400000pt;}
.x52_c00433{left:317.600000pt;}
.x77_c00433{left:319.333333pt;}
.x6_c00433{left:320.933333pt;}
.x4a_c00433{left:323.200000pt;}
.x2d_c00433{left:326.266667pt;}
.x63_c00433{left:328.000000pt;}
.x89_c00433{left:332.266667pt;}
.x59_c00433{left:333.333333pt;}
.x4f_c00433{left:334.666667pt;}
.x2e_c00433{left:335.866667pt;}
.x53_c00433{left:336.800000pt;}
.x3f_c00433{left:338.400000pt;}
.x7_c00433{left:340.133333pt;}
.x13_c00433{left:341.733333pt;}
.x3b_c00433{left:343.333333pt;}
.x6c_c00433{left:344.800000pt;}
.xb_c00433{left:347.866667pt;}
.x2f_c00433{left:349.333333pt;}
.x5a_c00433{left:352.800000pt;}
.x39_c00433{left:354.800000pt;}
.x93_c00433{left:356.133333pt;}
.x81_c00433{left:357.066667pt;}
.x44_c00433{left:358.666667pt;}
.xa8_c00433{left:360.266667pt;}
.x90_c00433{left:362.000000pt;}
.x6d_c00433{left:363.066667pt;}
.x74_c00433{left:364.800000pt;}
.x9e_c00433{left:367.200000pt;}
.x27_c00433{left:368.533333pt;}
.x40_c00433{left:370.666667pt;}
.x91_c00433{left:373.200000pt;}
.x79_c00433{left:374.666667pt;}
.x94_c00433{left:375.733333pt;}
.x97_c00433{left:376.666667pt;}
.x54_c00433{left:378.000000pt;}
.x28_c00433{left:379.066667pt;}
.x3c_c00433{left:380.133333pt;}
.x4b_c00433{left:381.733333pt;}
.x2_c00433{left:382.800000pt;}
.x5b_c00433{left:384.133333pt;}
.x75_c00433{left:385.866667pt;}
.x1c_c00433{left:389.066667pt;}
.xc_c00433{left:390.400000pt;}
.x55_c00433{left:391.733333pt;}
.x41_c00433{left:392.800000pt;}
.x5c_c00433{left:394.000000pt;}
.x14_c00433{left:395.200000pt;}
.x78_c00433{left:397.733333pt;}
.x8f_c00433{left:399.066667pt;}
.x6e_c00433{left:400.800000pt;}
.x30_c00433{left:402.800000pt;}
.x45_c00433{left:405.333333pt;}
.x1d_c00433{left:406.933333pt;}
.x7a_c00433{left:408.533333pt;}
.x50_c00433{left:410.133333pt;}
.xa9_c00433{left:411.200000pt;}
.x31_c00433{left:412.666667pt;}
.x42_c00433{left:413.866667pt;}
.x15_c00433{left:415.333333pt;}
.xa6_c00433{left:417.333333pt;}
.x80_c00433{left:418.533333pt;}
.x56_c00433{left:422.800000pt;}
.xd_c00433{left:424.666667pt;}
.x71_c00433{left:426.400000pt;}
.x32_c00433{left:427.733333pt;}
.x67_c00433{left:429.066667pt;}
.x7b_c00433{left:430.666667pt;}
.xaa_c00433{left:434.266667pt;}
.x5f_c00433{left:435.200000pt;}
.x3d_c00433{left:436.800000pt;}
.x3a_c00433{left:438.400000pt;}
.x60_c00433{left:442.266667pt;}
.xe_c00433{left:445.200000pt;}
.x7d_c00433{left:446.266667pt;}
.x76_c00433{left:449.200000pt;}
.x36_c00433{left:451.066667pt;}
.x33_c00433{left:452.000000pt;}
.x5e_c00433{left:456.400000pt;}
.x51_c00433{left:457.466667pt;}
.x12f_c00433{left:481.866667pt;}
.xdc_c00433{left:495.733333pt;}
.xab_c00433{left:496.666667pt;}
.x11f_c00433{left:497.733333pt;}
.x12c_c00433{left:498.666667pt;}
.xf4_c00433{left:508.533333pt;}
.xd4_c00433{left:511.600000pt;}
.xac_c00433{left:515.200000pt;}
.xdd_c00433{left:518.133333pt;}
.x11d_c00433{left:519.466667pt;}
.xe8_c00433{left:520.533333pt;}
.x12d_c00433{left:521.733333pt;}
.x133_c00433{left:523.866667pt;}
.x100_c00433{left:524.933333pt;}
.xe5_c00433{left:528.266667pt;}
.xad_c00433{left:530.933333pt;}
.x130_c00433{left:532.400000pt;}
.xfb_c00433{left:533.466667pt;}
.x10a_c00433{left:534.933333pt;}
.xf5_c00433{left:537.600000pt;}
.xed_c00433{left:538.933333pt;}
.x147_c00433{left:539.866667pt;}
.xbb_c00433{left:541.066667pt;}
.xce_c00433{left:542.266667pt;}
.xde_c00433{left:543.466667pt;}
.x13c_c00433{left:544.933333pt;}
.xf9_c00433{left:546.133333pt;}
.xae_c00433{left:548.533333pt;}
.xe9_c00433{left:549.600000pt;}
.xc8_c00433{left:550.666667pt;}
.x10d_c00433{left:551.733333pt;}
.x10b_c00433{left:552.800000pt;}
.xb5_c00433{left:554.933333pt;}
.xd5_c00433{left:558.000000pt;}
.x13d_c00433{left:560.000000pt;}
.x125_c00433{left:560.933333pt;}
.x128_c00433{left:562.266667pt;}
.xc4_c00433{left:563.466667pt;}
.x144_c00433{left:564.400000pt;}
.x10f_c00433{left:565.333333pt;}
.xda_c00433{left:567.600000pt;}
.x14c_c00433{left:569.466667pt;}
.xbc_c00433{left:571.200000pt;}
.x119_c00433{left:572.133333pt;}
.x139_c00433{left:573.466667pt;}
.xd1_c00433{left:576.533333pt;}
.xdf_c00433{left:577.733333pt;}
.xc9_c00433{left:582.400000pt;}
.xee_c00433{left:584.400000pt;}
.x129_c00433{left:585.333333pt;}
.x110_c00433{left:586.800000pt;}
.x104_c00433{left:588.266667pt;}
.xea_c00433{left:589.866667pt;}
.xaf_c00433{left:591.466667pt;}
.x107_c00433{left:593.200000pt;}
.x11a_c00433{left:595.466667pt;}
.x134_c00433{left:596.800000pt;}
.xbd_c00433{left:598.666667pt;}
.xd6_c00433{left:601.200000pt;}
.xb6_c00433{left:602.266667pt;}
.x120_c00433{left:603.333333pt;}
.xe6_c00433{left:604.800000pt;}
.x105_c00433{left:606.133333pt;}
.x101_c00433{left:607.333333pt;}
.xb0_c00433{left:609.066667pt;}
.xfa_c00433{left:610.133333pt;}
.x10e_c00433{left:613.200000pt;}
.x135_c00433{left:616.266667pt;}
.xbe_c00433{left:617.866667pt;}
.xfc_c00433{left:619.200000pt;}
.xe0_c00433{left:620.933333pt;}
.x148_c00433{left:621.866667pt;}
.xb1_c00433{left:622.800000pt;}
.xdb_c00433{left:624.800000pt;}
.x14a_c00433{left:625.733333pt;}
.xca_c00433{left:628.133333pt;}
.x102_c00433{left:629.066667pt;}
.xe1_c00433{left:630.266667pt;}
.xc5_c00433{left:631.333333pt;}
.xf6_c00433{left:632.666667pt;}
.xef_c00433{left:634.666667pt;}
.x126_c00433{left:636.133333pt;}
.xd7_c00433{left:637.333333pt;}
.x111_c00433{left:638.266667pt;}
.x11b_c00433{left:640.266667pt;}
.x114_c00433{left:643.066667pt;}
.xbf_c00433{left:645.333333pt;}
.x112_c00433{left:646.266667pt;}
.x12e_c00433{left:649.066667pt;}
.xf7_c00433{left:650.533333pt;}
.xb7_c00433{left:652.800000pt;}
.xc0_c00433{left:654.666667pt;}
.x108_c00433{left:655.600000pt;}
.x122_c00433{left:657.200000pt;}
.x13e_c00433{left:658.666667pt;}
.x113_c00433{left:660.400000pt;}
.x141_c00433{left:661.866667pt;}
.xd2_c00433{left:663.600000pt;}
.xf0_c00433{left:664.800000pt;}
.x145_c00433{left:666.266667pt;}
.xb2_c00433{left:668.266667pt;}
.x137_c00433{left:671.066667pt;}
.xeb_c00433{left:672.000000pt;}
.xb8_c00433{left:675.200000pt;}
.xcb_c00433{left:676.400000pt;}
.xb3_c00433{left:678.533333pt;}
.xcf_c00433{left:680.533333pt;}
.xd8_c00433{left:682.800000pt;}
.x106_c00433{left:684.000000pt;}
.x14b_c00433{left:686.533333pt;}
.xe2_c00433{left:689.733333pt;}
.x123_c00433{left:690.800000pt;}
.xfd_c00433{left:691.733333pt;}
.x149_c00433{left:693.200000pt;}
.xcc_c00433{left:694.266667pt;}
.x115_c00433{left:695.200000pt;}
.x124_c00433{left:697.866667pt;}
.xb9_c00433{left:700.133333pt;}
.x109_c00433{left:701.066667pt;}
.xec_c00433{left:704.000000pt;}
.x10c_c00433{left:705.866667pt;}
.xfe_c00433{left:708.666667pt;}
.x117_c00433{left:709.733333pt;}
.xc6_c00433{left:710.933333pt;}
.x13a_c00433{left:712.000000pt;}
.xf1_c00433{left:714.666667pt;}
.x11e_c00433{left:717.866667pt;}
.x131_c00433{left:719.600000pt;}
.xc1_c00433{left:721.200000pt;}
.x12b_c00433{left:722.666667pt;}
.xb4_c00433{left:724.266667pt;}
.x136_c00433{left:726.266667pt;}
.x142_c00433{left:727.200000pt;}
.xe3_c00433{left:729.466667pt;}
.xf2_c00433{left:730.400000pt;}
.xc7_c00433{left:731.733333pt;}
.xd3_c00433{left:734.933333pt;}
.x11c_c00433{left:736.000000pt;}
.xba_c00433{left:737.200000pt;}
.xc2_c00433{left:738.533333pt;}
.x12a_c00433{left:740.133333pt;}
.xe7_c00433{left:741.066667pt;}
.x132_c00433{left:742.000000pt;}
.x121_c00433{left:743.200000pt;}
.x13f_c00433{left:744.666667pt;}
.xf8_c00433{left:745.866667pt;}
.xe4_c00433{left:748.400000pt;}
.xff_c00433{left:749.600000pt;}
.xd0_c00433{left:750.666667pt;}
.xc3_c00433{left:753.866667pt;}
.x116_c00433{left:755.200000pt;}
.x103_c00433{left:757.066667pt;}
.x140_c00433{left:758.133333pt;}
.x143_c00433{left:759.866667pt;}
.x118_c00433{left:762.800000pt;}
.xd9_c00433{left:764.800000pt;}
.x138_c00433{left:766.133333pt;}
.xf3_c00433{left:768.800000pt;}
.x13b_c00433{left:770.533333pt;}
.x146_c00433{left:772.533333pt;}
.xcd_c00433{left:775.600000pt;}
.x127_c00433{left:777.333333pt;}
}





/* 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_c00434 {
    display:none;
  }
  .loading-indicator_c00434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00434 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_c00434 { 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_c00434" -> "#page-container .classname_c00434")
 */
.pf_c00434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00434 { /* 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_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00434 { /* 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_c00434 { /* 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_c00434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00434 {overflow:visible;}
  }
}
.c_c00434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00434 { /* 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_c00434:after { /* webkit #35443 */
  content: '';
}
.t_c00434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00434 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 */
}
.__c00434 { /* 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_c00434 { /* info for Javascript */
  display:none;
}
.l_c00434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00434: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_c00434 {
    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_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00434.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_c00434 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00434;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.000000;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;}
.mcf_c00434{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m111_c00434{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m126_c00434{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m39_c00434{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m127_c00434{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m64_c00434{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m128_c00434{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00434{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m110_c00434{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00434{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m104_c00434{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00434{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00434{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00434{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m124_c00434{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me2_c00434{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00434{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m93_c00434{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md5_c00434{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m61_c00434{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00434{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00434{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m60_c00434{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00434{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mab_c00434{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m76_c00434{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00434{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m89_c00434{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m70_c00434{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00434{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mec_c00434{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m67_c00434{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me4_c00434{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00434{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00434{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m116_c00434{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m63_c00434{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00434{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00434{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me5_c00434{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m66_c00434{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mea_c00434{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me0_c00434{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.me1_c00434{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m17_c00434{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m109_c00434{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00434{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00434{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m50_c00434{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m84_c00434{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00434{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00434{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00434{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.me8_c00434{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf_c00434{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5_c00434{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00434{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.me6_c00434{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md8_c00434{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m24_c00434{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00434{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00434{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m112_c00434{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m59_c00434{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00434{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mb_c00434{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m122_c00434{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00434{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m49_c00434{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00434{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00434{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00434{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00434{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00434{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00434{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00434{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00434{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00434{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00434{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me9_c00434{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00434{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00434{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m87_c00434{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00434{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.md_c00434{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me3_c00434{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00434{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m14_c00434{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m101_c00434{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00434{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00434{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m83_c00434{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00434{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00434{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mce_c00434{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00434{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00434{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m38_c00434{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00434{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m80_c00434{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m25_c00434{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00434{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m65_c00434{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00434{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m72_c00434{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me7_c00434{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00434{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00434{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00434{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00434{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m11_c00434{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mac_c00434{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00434{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00434{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00434{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00434{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m19_c00434{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00434{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00434{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m108_c00434{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mee_c00434{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mc_c00434{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m29_c00434{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m102_c00434{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m42_c00434{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m20_c00434{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m62_c00434{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00434{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00434{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00434{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m90_c00434{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00434{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m117_c00434{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m82_c00434{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00434{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00434{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m12_c00434{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m97_c00434{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00434{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m23_c00434{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00434{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m121_c00434{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00434{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m73_c00434{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00434{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00434{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00434{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00434{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m96_c00434{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00434{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m10_c00434{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m115_c00434{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00434{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00434{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00434{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00434{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00434{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m120_c00434{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m99_c00434{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m85_c00434{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m33_c00434{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m86_c00434{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m18_c00434{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00434{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00434{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.me_c00434{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00434{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m56_c00434{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m34_c00434{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00434{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00434{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m81_c00434{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m118_c00434{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00434{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00434{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9_c00434{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m48_c00434{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00434{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m57_c00434{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m98_c00434{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m53_c00434{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md2_c00434{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m88_c00434{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m113_c00434{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m46_c00434{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mca_c00434{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00434{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m28_c00434{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m47_c00434{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00434{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m51_c00434{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00434{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m22_c00434{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m26_c00434{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m94_c00434{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00434{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m68_c00434{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00434{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00434{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m27_c00434{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00434{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m7_c00434{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00434{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00434{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00434{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00434{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00434{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m16_c00434{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m125_c00434{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m52_c00434{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6_c00434{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m71_c00434{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m106_c00434{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m114_c00434{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m92_c00434{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mae_c00434{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m100_c00434{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00434{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m45_c00434{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m103_c00434{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m91_c00434{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m15_c00434{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m30_c00434{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.ma_c00434{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00434{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m105_c00434{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00434{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00434{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m69_c00434{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m13_c00434{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mef_c00434{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00434{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8_c00434{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mda_c00434{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00434{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md7_c00434{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00434{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m37_c00434{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md9_c00434{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00434{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00434{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m129_c00434{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mba_c00434{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m58_c00434{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00434{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00434{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00434{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m123_c00434{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00434{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m21_c00434{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00434{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m31_c00434{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00434{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mff_c00434{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m43_c00434{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m95_c00434{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m107_c00434{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00434{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00434{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m40_c00434{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00434{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00434{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00434{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.maa_c00434{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00434{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00434{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00434{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00434{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.med_c00434{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m75_c00434{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m44_c00434{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m36_c00434{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m32_c00434{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.md3_c00434{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00434{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c00434{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m54_c00434{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00434{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00434{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00434{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md6_c00434{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m119_c00434{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00434{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md4_c00434{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00434{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m74_c00434{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.md1_c00434{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m78_c00434{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00434{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m55_c00434{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.mad_c00434{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mde_c00434{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.m41_c00434{transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);}
.m79_c00434{transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);}
.m77_c00434{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00434{transform:matrix(0.410750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410750,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);}
.meb_c00434{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.md0_c00434{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.maf_c00434{transform:matrix(11.028000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(11.028000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(11.028000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls1_c00434{letter-spacing:0.000000px;}
.ls0_c00434{letter-spacing:74.166667px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{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__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00434{word-spacing:-104.166667px;}
.ws7_c00434{word-spacing:-7.500000px;}
.wse_c00434{word-spacing:0.000000px;}
.wsa_c00434{word-spacing:1.757962px;}
.wsc_c00434{word-spacing:1.875000px;}
.wsd_c00434{word-spacing:9.545455px;}
.ws0_c00434{word-spacing:12.506494px;}
.ws8_c00434{word-spacing:18.765043px;}
.ws5_c00434{word-spacing:19.994638px;}
.ws1_c00434{word-spacing:25.714286px;}
.ws3_c00434{word-spacing:44.166667px;}
.ws6_c00434{word-spacing:57.005923px;}
.wsb_c00434{word-spacing:118.000000px;}
.ws4_c00434{word-spacing:142.083333px;}
.ws9_c00434{word-spacing:990.000000px;}
._0_c00434{margin-left:-74.166667px;}
._1_c00434{width:53.428954px;}
.fc0_c00434{color:transparent;}
.fs6_c00434{font-size:24.000000px;}
.fs5_c00434{font-size:36.000000px;}
.fs4_c00434{font-size:54.000000px;}
.fs3_c00434{font-size:60.000000px;}
.fs1_c00434{font-size:66.000000px;}
.fs2_c00434{font-size:72.000000px;}
.fs0_c00434{font-size:84.000000px;}
.y0_c00434{bottom:0.000000px;}
.y3a_c00434{bottom:3.600000px;}
.y71_c00434{bottom:178.650000px;}
.y39_c00434{bottom:184.800000px;}
.y70_c00434{bottom:196.950000px;}
.y38_c00434{bottom:199.500000px;}
.y37_c00434{bottom:213.900000px;}
.y6f_c00434{bottom:214.200000px;}
.y36_c00434{bottom:228.000000px;}
.y6e_c00434{bottom:232.200000px;}
.y35_c00434{bottom:242.400000px;}
.y34_c00434{bottom:256.500000px;}
.y6d_c00434{bottom:259.500000px;}
.y33_c00434{bottom:270.900000px;}
.y6c_c00434{bottom:277.500000px;}
.y32_c00434{bottom:286.050000px;}
.y6b_c00434{bottom:295.200000px;}
.y31_c00434{bottom:300.150000px;}
.y6a_c00434{bottom:312.900000px;}
.y30_c00434{bottom:314.250000px;}
.y2f_c00434{bottom:330.150000px;}
.y69_c00434{bottom:330.900000px;}
.y68_c00434{bottom:337.350000px;}
.y67_c00434{bottom:338.400000px;}
.y66_c00434{bottom:340.950000px;}
.y65_c00434{bottom:348.450000px;}
.y2e_c00434{bottom:352.050000px;}
.y2d_c00434{bottom:370.500000px;}
.y64_c00434{bottom:370.800000px;}
.y2c_c00434{bottom:388.500000px;}
.y63_c00434{bottom:389.100000px;}
.y62_c00434{bottom:407.100000px;}
.y2b_c00434{bottom:410.700000px;}
.y61_c00434{bottom:424.350000px;}
.y2a_c00434{bottom:428.700000px;}
.y60_c00434{bottom:442.650000px;}
.y29_c00434{bottom:445.950000px;}
.y5f_c00434{bottom:460.650000px;}
.y28_c00434{bottom:463.200000px;}
.y5e_c00434{bottom:478.350000px;}
.y27_c00434{bottom:481.200000px;}
.y5d_c00434{bottom:496.050000px;}
.y26_c00434{bottom:498.900000px;}
.y5c_c00434{bottom:514.050000px;}
.y25_c00434{bottom:521.550000px;}
.y5b_c00434{bottom:531.750000px;}
.y24_c00434{bottom:539.250000px;}
.y5a_c00434{bottom:550.050000px;}
.y23_c00434{bottom:557.250000px;}
.y59_c00434{bottom:567.750000px;}
.y22_c00434{bottom:575.250000px;}
.y58_c00434{bottom:585.450000px;}
.y21_c00434{bottom:593.250000px;}
.y57_c00434{bottom:603.150000px;}
.y20_c00434{bottom:610.500000px;}
.y56_c00434{bottom:621.150000px;}
.y1f_c00434{bottom:628.500000px;}
.y55_c00434{bottom:639.150000px;}
.y1e_c00434{bottom:649.200000px;}
.y54_c00434{bottom:656.850000px;}
.y1d_c00434{bottom:663.600000px;}
.y53_c00434{bottom:674.850000px;}
.y1c_c00434{bottom:678.000000px;}
.y1b_c00434{bottom:692.100000px;}
.y52_c00434{bottom:692.550000px;}
.y1a_c00434{bottom:706.500000px;}
.y51_c00434{bottom:710.250000px;}
.y19_c00434{bottom:721.200000px;}
.y50_c00434{bottom:727.950000px;}
.y18_c00434{bottom:734.850000px;}
.y4f_c00434{bottom:745.950000px;}
.y17_c00434{bottom:749.250000px;}
.y16_c00434{bottom:763.950000px;}
.y4e_c00434{bottom:768.150000px;}
.y15_c00434{bottom:777.900000px;}
.y4d_c00434{bottom:786.150000px;}
.y14_c00434{bottom:792.750000px;}
.y4c_c00434{bottom:803.850000px;}
.y13_c00434{bottom:812.700000px;}
.y4b_c00434{bottom:821.850000px;}
.y12_c00434{bottom:830.400000px;}
.y4a_c00434{bottom:839.550000px;}
.y11_c00434{bottom:848.100000px;}
.y49_c00434{bottom:861.750000px;}
.y10_c00434{bottom:870.450000px;}
.y48_c00434{bottom:879.450000px;}
.yf_c00434{bottom:888.150000px;}
.y47_c00434{bottom:897.450000px;}
.ye_c00434{bottom:910.050000px;}
.y46_c00434{bottom:915.150000px;}
.yd_c00434{bottom:932.250000px;}
.y45_c00434{bottom:933.450000px;}
.yc_c00434{bottom:950.250000px;}
.y44_c00434{bottom:950.700000px;}
.yb_c00434{bottom:968.250000px;}
.y43_c00434{bottom:968.700000px;}
.ya_c00434{bottom:985.950000px;}
.y42_c00434{bottom:986.700000px;}
.y9_c00434{bottom:1003.650000px;}
.y41_c00434{bottom:1004.700000px;}
.y40_c00434{bottom:1022.400000px;}
.y8_c00434{bottom:1026.000000px;}
.y3f_c00434{bottom:1040.100000px;}
.y7_c00434{bottom:1044.000000px;}
.y3e_c00434{bottom:1058.100000px;}
.y6_c00434{bottom:1061.250000px;}
.y3d_c00434{bottom:1076.100000px;}
.y5_c00434{bottom:1079.250000px;}
.y4_c00434{bottom:1097.250000px;}
.y3c_c00434{bottom:1098.000000px;}
.y3_c00434{bottom:1115.250000px;}
.y3b_c00434{bottom:1115.700000px;}
.y2_c00434{bottom:1141.200000px;}
.y1_c00434{bottom:1142.250000px;}
.h8_c00434{height:24.000000px;}
.h7_c00434{height:36.000000px;}
.h6_c00434{height:54.000000px;}
.h5_c00434{height:60.000000px;}
.h3_c00434{height:66.000000px;}
.h4_c00434{height:72.000000px;}
.h2_c00434{height:84.000000px;}
.h1_c00434{height:1266.750000px;}
.h0_c00434{height:1266.839905px;}
.w0_c00434{width:958.320007px;}
.w1_c00434{width:958.500000px;}
.x0_c00434{left:0.000000px;}
.xae_c00434{left:61.950000px;}
.xa1_c00434{left:63.300000px;}
.x4c_c00434{left:64.500000px;}
.x56_c00434{left:65.550000px;}
.x28_c00434{left:68.100000px;}
.x44_c00434{left:70.200000px;}
.xac_c00434{left:77.400000px;}
.x9c_c00434{left:78.900000px;}
.x58_c00434{left:81.300000px;}
.x85_c00434{left:82.350000px;}
.x3c_c00434{left:83.700000px;}
.x36_c00434{left:84.900000px;}
.x4_c00434{left:86.100000px;}
.x70_c00434{left:93.600000px;}
.x64_c00434{left:95.100000px;}
.x9e_c00434{left:97.050000px;}
.x86_c00434{left:100.050000px;}
.x24_c00434{left:102.600000px;}
.x45_c00434{left:104.100000px;}
.x22_c00434{left:105.450000px;}
.xe_c00434{left:106.800000px;}
.x40_c00434{left:109.350000px;}
.x9b_c00434{left:111.600000px;}
.xaf_c00434{left:112.650000px;}
.x4d_c00434{left:114.600000px;}
.x6c_c00434{left:117.450000px;}
.xa6_c00434{left:119.100000px;}
.x5_c00434{left:121.050000px;}
.x4a_c00434{left:123.750000px;}
.x65_c00434{left:125.250000px;}
.x25_c00434{left:126.750000px;}
.x6d_c00434{left:128.250000px;}
.x96_c00434{left:130.650000px;}
.x51_c00434{left:132.150000px;}
.x29_c00434{left:134.700000px;}
.x79_c00434{left:136.650000px;}
.x37_c00434{left:138.150000px;}
.x9f_c00434{left:139.200000px;}
.x3d_c00434{left:141.000000px;}
.x2f_c00434{left:142.950000px;}
.x59_c00434{left:145.350000px;}
.x1a_c00434{left:146.400000px;}
.x8d_c00434{left:148.350000px;}
.x23_c00434{left:149.400000px;}
.x6_c00434{left:151.650000px;}
.x76_c00434{left:153.000000px;}
.x5d_c00434{left:155.550000px;}
.xf_c00434{left:156.900000px;}
.x38_c00434{left:159.000000px;}
.x80_c00434{left:160.350000px;}
.x26_c00434{left:162.450000px;}
.x8e_c00434{left:164.250000px;}
.x93_c00434{left:165.750000px;}
.x7_c00434{left:168.150000px;}
.x31_c00434{left:169.950000px;}
.xa7_c00434{left:171.000000px;}
.x7d_c00434{left:172.200000px;}
.x9a_c00434{left:173.700000px;}
.x1b_c00434{left:175.500000px;}
.x89_c00434{left:177.750000px;}
.x2a_c00434{left:178.950000px;}
.x7a_c00434{left:180.450000px;}
.xb0_c00434{left:181.800000px;}
.x16_c00434{left:183.000000px;}
.x4e_c00434{left:184.800000px;}
.x7e_c00434{left:185.850000px;}
.xa0_c00434{left:189.300000px;}
.x1c_c00434{left:192.000000px;}
.x10_c00434{left:193.950000px;}
.x46_c00434{left:195.450000px;}
.x41_c00434{left:196.500000px;}
.x6e_c00434{left:198.750000px;}
.x55_c00434{left:199.950000px;}
.xa3_c00434{left:202.200000px;}
.x8_c00434{left:203.400000px;}
.x71_c00434{left:204.750000px;}
.x81_c00434{left:207.900000px;}
.x3e_c00434{left:209.700000px;}
.x5a_c00434{left:211.200000px;}
.x74_c00434{left:212.850000px;}
.x11_c00434{left:214.050000px;}
.x5e_c00434{left:216.000000px;}
.x82_c00434{left:217.200000px;}
.x52_c00434{left:219.750000px;}
.x57_c00434{left:221.550000px;}
.x9_c00434{left:223.950000px;}
.x97_c00434{left:226.200000px;}
.x2b_c00434{left:227.550000px;}
.x72_c00434{left:229.650000px;}
.x47_c00434{left:230.700000px;}
.x1d_c00434{left:232.650000px;}
.x17_c00434{left:234.150000px;}
.x66_c00434{left:236.550000px;}
.x4b_c00434{left:237.900000px;}
.x39_c00434{left:241.050000px;}
.x27_c00434{left:242.400000px;}
.x5b_c00434{left:243.600000px;}
.xab_c00434{left:244.800000px;}
.xaa_c00434{left:246.150000px;}
.x75_c00434{left:248.100000px;}
.x8f_c00434{left:249.600000px;}
.x2c_c00434{left:251.250000px;}
.x1e_c00434{left:253.950000px;}
.x67_c00434{left:255.300000px;}
.x94_c00434{left:257.100000px;}
.x98_c00434{left:258.900000px;}
.x7b_c00434{left:262.950000px;}
.x91_c00434{left:264.300000px;}
.x30_c00434{left:267.150000px;}
.x5f_c00434{left:268.200000px;}
.x6f_c00434{left:269.400000px;}
.xa8_c00434{left:271.500000px;}
.x1f_c00434{left:272.700000px;}
.x8a_c00434{left:274.650000px;}
.x60_c00434{left:275.700000px;}
.x12_c00434{left:278.850000px;}
.x3f_c00434{left:280.650000px;}
.x99_c00434{left:282.000000px;}
.x32_c00434{left:283.350000px;}
.x5c_c00434{left:285.300000px;}
.x42_c00434{left:289.050000px;}
.x2d_c00434{left:290.550000px;}
.xa2_c00434{left:292.200000px;}
.xa4_c00434{left:294.000000px;}
.x18_c00434{left:295.050000px;}
.x68_c00434{left:298.200000px;}
.x3a_c00434{left:299.400000px;}
.x8b_c00434{left:300.600000px;}
.xa_c00434{left:301.650000px;}
.x77_c00434{left:303.600000px;}
.x69_c00434{left:305.700000px;}
.x48_c00434{left:307.800000px;}
.x4f_c00434{left:309.750000px;}
.x61_c00434{left:312.300000px;}
.x1_c00434{left:313.500000px;}
.x7f_c00434{left:317.250000px;}
.x95_c00434{left:318.300000px;}
.x33_c00434{left:320.850000px;}
.x87_c00434{left:322.800000px;}
.x73_c00434{left:330.900000px;}
.x6a_c00434{left:331.950000px;}
.x13_c00434{left:333.150000px;}
.xb_c00434{left:335.100000px;}
.x8c_c00434{left:336.600000px;}
.xa9_c00434{left:337.800000px;}
.x43_c00434{left:339.150000px;}
.x20_c00434{left:341.400000px;}
.x34_c00434{left:346.350000px;}
.x7c_c00434{left:349.350000px;}
.xad_c00434{left:350.550000px;}
.x53_c00434{left:351.600000px;}
.x50_c00434{left:352.650000px;}
.x14_c00434{left:354.000000px;}
.x83_c00434{left:355.500000px;}
.xc_c00434{left:356.700000px;}
.x78_c00434{left:359.400000px;}
.x62_c00434{left:360.450000px;}
.x6b_c00434{left:361.500000px;}
.xb1_c00434{left:362.850000px;}
.x21_c00434{left:364.050000px;}
.x90_c00434{left:365.550000px;}
.x84_c00434{left:367.050000px;}
.x49_c00434{left:369.300000px;}
.xa5_c00434{left:370.350000px;}
.x9d_c00434{left:372.450000px;}
.x15_c00434{left:378.450000px;}
.x92_c00434{left:382.050000px;}
.x19_c00434{left:383.250000px;}
.xd_c00434{left:384.750000px;}
.x88_c00434{left:386.550000px;}
.x2e_c00434{left:387.750000px;}
.x35_c00434{left:388.800000px;}
.x63_c00434{left:390.000000px;}
.x54_c00434{left:391.950000px;}
.x3b_c00434{left:394.050000px;}
.x157_c00434{left:419.700000px;}
.x119_c00434{left:424.050000px;}
.x10a_c00434{left:425.100000px;}
.xb2_c00434{left:426.900000px;}
.x137_c00434{left:434.100000px;}
.x14f_c00434{left:436.950000px;}
.x141_c00434{left:438.900000px;}
.x13b_c00434{left:439.950000px;}
.x12b_c00434{left:441.000000px;}
.x110_c00434{left:442.050000px;}
.x104_c00434{left:443.400000px;}
.xc2_c00434{left:444.600000px;}
.xb9_c00434{left:445.650000px;}
.xcb_c00434{left:447.300000px;}
.x138_c00434{left:457.050000px;}
.xde_c00434{left:462.750000px;}
.xbb_c00434{left:464.100000px;}
.x155_c00434{left:466.800000px;}
.x10b_c00434{left:468.600000px;}
.xb3_c00434{left:469.800000px;}
.x120_c00434{left:474.300000px;}
.x131_c00434{left:476.250000px;}
.xd4_c00434{left:479.550000px;}
.xba_c00434{left:482.400000px;}
.xc3_c00434{left:483.900000px;}
.x12c_c00434{left:484.950000px;}
.x13f_c00434{left:487.050000px;}
.xdf_c00434{left:488.700000px;}
.x116_c00434{left:490.650000px;}
.x11c_c00434{left:493.350000px;}
.xcc_c00434{left:494.400000px;}
.x147_c00434{left:495.750000px;}
.x132_c00434{left:497.100000px;}
.x128_c00434{left:499.050000px;}
.x135_c00434{left:501.450000px;}
.xee_c00434{left:502.650000px;}
.xb4_c00434{left:503.700000px;}
.x14a_c00434{left:504.750000px;}
.xbc_c00434{left:506.250000px;}
.x101_c00434{left:508.500000px;}
.x11a_c00434{left:509.700000px;}
.x105_c00434{left:511.050000px;}
.x11d_c00434{left:513.150000px;}
.xcd_c00434{left:514.200000px;}
.x111_c00434{left:515.550000px;}
.xfd_c00434{left:516.900000px;}
.xd5_c00434{left:519.450000px;}
.x117_c00434{left:520.950000px;}
.xe0_c00434{left:522.150000px;}
.xc4_c00434{left:525.000000px;}
.x13e_c00434{left:526.050000px;}
.x146_c00434{left:527.850000px;}
.xf8_c00434{left:532.800000px;}
.x10c_c00434{left:535.950000px;}
.x14d_c00434{left:537.150000px;}
.xd6_c00434{left:540.000000px;}
.x11b_c00434{left:541.350000px;}
.x148_c00434{left:542.550000px;}
.xef_c00434{left:543.750000px;}
.x14e_c00434{left:545.400000px;}
.xe1_c00434{left:546.600000px;}
.xbd_c00434{left:547.650000px;}
.x144_c00434{left:549.300000px;}
.x158_c00434{left:550.350000px;}
.xf9_c00434{left:551.550000px;}
.x150_c00434{left:553.950000px;}
.xce_c00434{left:555.600000px;}
.xb5_c00434{left:556.950000px;}
.x121_c00434{left:558.900000px;}
.xe2_c00434{left:559.950000px;}
.x114_c00434{left:561.000000px;}
.x153_c00434{left:562.950000px;}
.x142_c00434{left:565.650000px;}
.x118_c00434{left:566.700000px;}
.xc5_c00434{left:568.500000px;}
.x106_c00434{left:570.750000px;}
.x112_c00434{left:572.100000px;}
.xf1_c00434{left:575.850000px;}
.x11e_c00434{left:576.900000px;}
.xfa_c00434{left:578.850000px;}
.xd7_c00434{left:579.900000px;}
.xbe_c00434{left:582.150000px;}
.x136_c00434{left:583.500000px;}
.xe9_c00434{left:587.700000px;}
.xfe_c00434{left:589.650000px;}
.xfb_c00434{left:591.750000px;}
.x12d_c00434{left:593.250000px;}
.x124_c00434{left:595.950000px;}
.xf2_c00434{left:597.450000px;}
.xcf_c00434{left:599.100000px;}
.xe3_c00434{left:602.850000px;}
.x15a_c00434{left:604.050000px;}
.x159_c00434{left:605.850000px;}
.x108_c00434{left:607.200000px;}
.x12e_c00434{left:610.200000px;}
.xea_c00434{left:611.400000px;}
.xc6_c00434{left:612.450000px;}
.x122_c00434{left:613.950000px;}
.xf3_c00434{left:615.750000px;}
.x129_c00434{left:617.100000px;}
.x133_c00434{left:618.750000px;}
.x14b_c00434{left:621.300000px;}
.xd0_c00434{left:624.300000px;}
.x140_c00434{left:625.650000px;}
.xff_c00434{left:628.500000px;}
.x156_c00434{left:629.550000px;}
.xd8_c00434{left:630.750000px;}
.x11f_c00434{left:632.700000px;}
.x154_c00434{left:635.250000px;}
.x143_c00434{left:639.000000px;}
.x14c_c00434{left:640.350000px;}
.x115_c00434{left:642.300000px;}
.xf4_c00434{left:643.800000px;}
.xeb_c00434{left:645.900000px;}
.xd1_c00434{left:646.950000px;}
.x126_c00434{left:650.550000px;}
.xd9_c00434{left:652.650000px;}
.xc7_c00434{left:653.850000px;}
.xbf_c00434{left:656.250000px;}
.xf5_c00434{left:658.500000px;}
.x12f_c00434{left:659.550000px;}
.x10d_c00434{left:662.250000px;}
.xfc_c00434{left:665.250000px;}
.x145_c00434{left:667.500000px;}
.xb6_c00434{left:668.550000px;}
.xda_c00434{left:669.900000px;}
.xc8_c00434{left:671.550000px;}
.xe4_c00434{left:673.800000px;}
.x151_c00434{left:675.150000px;}
.x109_c00434{left:676.350000px;}
.xb7_c00434{left:677.850000px;}
.x125_c00434{left:681.750000px;}
.x13c_c00434{left:683.250000px;}
.x10e_c00434{left:685.650000px;}
.x134_c00434{left:687.150000px;}
.x149_c00434{left:688.350000px;}
.x123_c00434{left:689.550000px;}
.xe5_c00434{left:694.650000px;}
.xdb_c00434{left:695.850000px;}
.xd2_c00434{left:697.050000px;}
.x139_c00434{left:699.450000px;}
.x102_c00434{left:701.250000px;}
.xc0_c00434{left:702.750000px;}
.x130_c00434{left:704.850000px;}
.x12a_c00434{left:706.350000px;}
.xdc_c00434{left:709.200000px;}
.xc9_c00434{left:711.450000px;}
.xf6_c00434{left:712.500000px;}
.x127_c00434{left:714.300000px;}
.xe6_c00434{left:715.950000px;}
.x13a_c00434{left:718.500000px;}
.x10f_c00434{left:719.550000px;}
.xec_c00434{left:721.200000px;}
.x103_c00434{left:723.150000px;}
.xb8_c00434{left:725.400000px;}
.xdd_c00434{left:727.200000px;}
.xf0_c00434{left:729.150000px;}
.x100_c00434{left:730.650000px;}
.xe7_c00434{left:732.450000px;}
.xf7_c00434{left:734.400000px;}
.x2_c00434{left:736.800000px;}
.xc1_c00434{left:738.000000px;}
.x113_c00434{left:739.500000px;}
.xd3_c00434{left:742.350000px;}
.x152_c00434{left:743.550000px;}
.xed_c00434{left:744.900000px;}
.xca_c00434{left:748.200000px;}
.x107_c00434{left:750.750000px;}
.x13d_c00434{left:753.150000px;}
.xe8_c00434{left:756.150000px;}
.x3_c00434{left:758.100000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls1_c00434{letter-spacing:0.000000pt;}
.ls0_c00434{letter-spacing:65.925926pt;}
.ws2_c00434{word-spacing:-92.592593pt;}
.ws7_c00434{word-spacing:-6.666667pt;}
.wse_c00434{word-spacing:0.000000pt;}
.wsa_c00434{word-spacing:1.562633pt;}
.wsc_c00434{word-spacing:1.666667pt;}
.wsd_c00434{word-spacing:8.484848pt;}
.ws0_c00434{word-spacing:11.116883pt;}
.ws8_c00434{word-spacing:16.680038pt;}
.ws5_c00434{word-spacing:17.773012pt;}
.ws1_c00434{word-spacing:22.857143pt;}
.ws3_c00434{word-spacing:39.259259pt;}
.ws6_c00434{word-spacing:50.671932pt;}
.wsb_c00434{word-spacing:104.888889pt;}
.ws4_c00434{word-spacing:126.296296pt;}
.ws9_c00434{word-spacing:880.000000pt;}
._0_c00434{margin-left:-65.925926pt;}
._1_c00434{width:47.492404pt;}
.fs6_c00434{font-size:21.333333pt;}
.fs5_c00434{font-size:32.000000pt;}
.fs4_c00434{font-size:48.000000pt;}
.fs3_c00434{font-size:53.333333pt;}
.fs1_c00434{font-size:58.666667pt;}
.fs2_c00434{font-size:64.000000pt;}
.fs0_c00434{font-size:74.666667pt;}
.y0_c00434{bottom:0.000000pt;}
.y3a_c00434{bottom:3.200000pt;}
.y71_c00434{bottom:158.800000pt;}
.y39_c00434{bottom:164.266667pt;}
.y70_c00434{bottom:175.066667pt;}
.y38_c00434{bottom:177.333333pt;}
.y37_c00434{bottom:190.133333pt;}
.y6f_c00434{bottom:190.400000pt;}
.y36_c00434{bottom:202.666667pt;}
.y6e_c00434{bottom:206.400000pt;}
.y35_c00434{bottom:215.466667pt;}
.y34_c00434{bottom:228.000000pt;}
.y6d_c00434{bottom:230.666667pt;}
.y33_c00434{bottom:240.800000pt;}
.y6c_c00434{bottom:246.666667pt;}
.y32_c00434{bottom:254.266667pt;}
.y6b_c00434{bottom:262.400000pt;}
.y31_c00434{bottom:266.800000pt;}
.y6a_c00434{bottom:278.133333pt;}
.y30_c00434{bottom:279.333333pt;}
.y2f_c00434{bottom:293.466667pt;}
.y69_c00434{bottom:294.133333pt;}
.y68_c00434{bottom:299.866667pt;}
.y67_c00434{bottom:300.800000pt;}
.y66_c00434{bottom:303.066667pt;}
.y65_c00434{bottom:309.733333pt;}
.y2e_c00434{bottom:312.933333pt;}
.y2d_c00434{bottom:329.333333pt;}
.y64_c00434{bottom:329.600000pt;}
.y2c_c00434{bottom:345.333333pt;}
.y63_c00434{bottom:345.866667pt;}
.y62_c00434{bottom:361.866667pt;}
.y2b_c00434{bottom:365.066667pt;}
.y61_c00434{bottom:377.200000pt;}
.y2a_c00434{bottom:381.066667pt;}
.y60_c00434{bottom:393.466667pt;}
.y29_c00434{bottom:396.400000pt;}
.y5f_c00434{bottom:409.466667pt;}
.y28_c00434{bottom:411.733333pt;}
.y5e_c00434{bottom:425.200000pt;}
.y27_c00434{bottom:427.733333pt;}
.y5d_c00434{bottom:440.933333pt;}
.y26_c00434{bottom:443.466667pt;}
.y5c_c00434{bottom:456.933333pt;}
.y25_c00434{bottom:463.600000pt;}
.y5b_c00434{bottom:472.666667pt;}
.y24_c00434{bottom:479.333333pt;}
.y5a_c00434{bottom:488.933333pt;}
.y23_c00434{bottom:495.333333pt;}
.y59_c00434{bottom:504.666667pt;}
.y22_c00434{bottom:511.333333pt;}
.y58_c00434{bottom:520.400000pt;}
.y21_c00434{bottom:527.333333pt;}
.y57_c00434{bottom:536.133333pt;}
.y20_c00434{bottom:542.666667pt;}
.y56_c00434{bottom:552.133333pt;}
.y1f_c00434{bottom:558.666667pt;}
.y55_c00434{bottom:568.133333pt;}
.y1e_c00434{bottom:577.066667pt;}
.y54_c00434{bottom:583.866667pt;}
.y1d_c00434{bottom:589.866667pt;}
.y53_c00434{bottom:599.866667pt;}
.y1c_c00434{bottom:602.666667pt;}
.y1b_c00434{bottom:615.200000pt;}
.y52_c00434{bottom:615.600000pt;}
.y1a_c00434{bottom:628.000000pt;}
.y51_c00434{bottom:631.333333pt;}
.y19_c00434{bottom:641.066667pt;}
.y50_c00434{bottom:647.066667pt;}
.y18_c00434{bottom:653.200000pt;}
.y4f_c00434{bottom:663.066667pt;}
.y17_c00434{bottom:666.000000pt;}
.y16_c00434{bottom:679.066667pt;}
.y4e_c00434{bottom:682.800000pt;}
.y15_c00434{bottom:691.466667pt;}
.y4d_c00434{bottom:698.800000pt;}
.y14_c00434{bottom:704.666667pt;}
.y4c_c00434{bottom:714.533333pt;}
.y13_c00434{bottom:722.400000pt;}
.y4b_c00434{bottom:730.533333pt;}
.y12_c00434{bottom:738.133333pt;}
.y4a_c00434{bottom:746.266667pt;}
.y11_c00434{bottom:753.866667pt;}
.y49_c00434{bottom:766.000000pt;}
.y10_c00434{bottom:773.733333pt;}
.y48_c00434{bottom:781.733333pt;}
.yf_c00434{bottom:789.466667pt;}
.y47_c00434{bottom:797.733333pt;}
.ye_c00434{bottom:808.933333pt;}
.y46_c00434{bottom:813.466667pt;}
.yd_c00434{bottom:828.666667pt;}
.y45_c00434{bottom:829.733333pt;}
.yc_c00434{bottom:844.666667pt;}
.y44_c00434{bottom:845.066667pt;}
.yb_c00434{bottom:860.666667pt;}
.y43_c00434{bottom:861.066667pt;}
.ya_c00434{bottom:876.400000pt;}
.y42_c00434{bottom:877.066667pt;}
.y9_c00434{bottom:892.133333pt;}
.y41_c00434{bottom:893.066667pt;}
.y40_c00434{bottom:908.800000pt;}
.y8_c00434{bottom:912.000000pt;}
.y3f_c00434{bottom:924.533333pt;}
.y7_c00434{bottom:928.000000pt;}
.y3e_c00434{bottom:940.533333pt;}
.y6_c00434{bottom:943.333333pt;}
.y3d_c00434{bottom:956.533333pt;}
.y5_c00434{bottom:959.333333pt;}
.y4_c00434{bottom:975.333333pt;}
.y3c_c00434{bottom:976.000000pt;}
.y3_c00434{bottom:991.333333pt;}
.y3b_c00434{bottom:991.733333pt;}
.y2_c00434{bottom:1014.400000pt;}
.y1_c00434{bottom:1015.333333pt;}
.h8_c00434{height:21.333333pt;}
.h7_c00434{height:32.000000pt;}
.h6_c00434{height:48.000000pt;}
.h5_c00434{height:53.333333pt;}
.h3_c00434{height:58.666667pt;}
.h4_c00434{height:64.000000pt;}
.h2_c00434{height:74.666667pt;}
.h1_c00434{height:1126.000000pt;}
.h0_c00434{height:1126.079916pt;}
.w0_c00434{width:851.840007pt;}
.w1_c00434{width:852.000000pt;}
.x0_c00434{left:0.000000pt;}
.xae_c00434{left:55.066667pt;}
.xa1_c00434{left:56.266667pt;}
.x4c_c00434{left:57.333333pt;}
.x56_c00434{left:58.266667pt;}
.x28_c00434{left:60.533333pt;}
.x44_c00434{left:62.400000pt;}
.xac_c00434{left:68.800000pt;}
.x9c_c00434{left:70.133333pt;}
.x58_c00434{left:72.266667pt;}
.x85_c00434{left:73.200000pt;}
.x3c_c00434{left:74.400000pt;}
.x36_c00434{left:75.466667pt;}
.x4_c00434{left:76.533333pt;}
.x70_c00434{left:83.200000pt;}
.x64_c00434{left:84.533333pt;}
.x9e_c00434{left:86.266667pt;}
.x86_c00434{left:88.933333pt;}
.x24_c00434{left:91.200000pt;}
.x45_c00434{left:92.533333pt;}
.x22_c00434{left:93.733333pt;}
.xe_c00434{left:94.933333pt;}
.x40_c00434{left:97.200000pt;}
.x9b_c00434{left:99.200000pt;}
.xaf_c00434{left:100.133333pt;}
.x4d_c00434{left:101.866667pt;}
.x6c_c00434{left:104.400000pt;}
.xa6_c00434{left:105.866667pt;}
.x5_c00434{left:107.600000pt;}
.x4a_c00434{left:110.000000pt;}
.x65_c00434{left:111.333333pt;}
.x25_c00434{left:112.666667pt;}
.x6d_c00434{left:114.000000pt;}
.x96_c00434{left:116.133333pt;}
.x51_c00434{left:117.466667pt;}
.x29_c00434{left:119.733333pt;}
.x79_c00434{left:121.466667pt;}
.x37_c00434{left:122.800000pt;}
.x9f_c00434{left:123.733333pt;}
.x3d_c00434{left:125.333333pt;}
.x2f_c00434{left:127.066667pt;}
.x59_c00434{left:129.200000pt;}
.x1a_c00434{left:130.133333pt;}
.x8d_c00434{left:131.866667pt;}
.x23_c00434{left:132.800000pt;}
.x6_c00434{left:134.800000pt;}
.x76_c00434{left:136.000000pt;}
.x5d_c00434{left:138.266667pt;}
.xf_c00434{left:139.466667pt;}
.x38_c00434{left:141.333333pt;}
.x80_c00434{left:142.533333pt;}
.x26_c00434{left:144.400000pt;}
.x8e_c00434{left:146.000000pt;}
.x93_c00434{left:147.333333pt;}
.x7_c00434{left:149.466667pt;}
.x31_c00434{left:151.066667pt;}
.xa7_c00434{left:152.000000pt;}
.x7d_c00434{left:153.066667pt;}
.x9a_c00434{left:154.400000pt;}
.x1b_c00434{left:156.000000pt;}
.x89_c00434{left:158.000000pt;}
.x2a_c00434{left:159.066667pt;}
.x7a_c00434{left:160.400000pt;}
.xb0_c00434{left:161.600000pt;}
.x16_c00434{left:162.666667pt;}
.x4e_c00434{left:164.266667pt;}
.x7e_c00434{left:165.200000pt;}
.xa0_c00434{left:168.266667pt;}
.x1c_c00434{left:170.666667pt;}
.x10_c00434{left:172.400000pt;}
.x46_c00434{left:173.733333pt;}
.x41_c00434{left:174.666667pt;}
.x6e_c00434{left:176.666667pt;}
.x55_c00434{left:177.733333pt;}
.xa3_c00434{left:179.733333pt;}
.x8_c00434{left:180.800000pt;}
.x71_c00434{left:182.000000pt;}
.x81_c00434{left:184.800000pt;}
.x3e_c00434{left:186.400000pt;}
.x5a_c00434{left:187.733333pt;}
.x74_c00434{left:189.200000pt;}
.x11_c00434{left:190.266667pt;}
.x5e_c00434{left:192.000000pt;}
.x82_c00434{left:193.066667pt;}
.x52_c00434{left:195.333333pt;}
.x57_c00434{left:196.933333pt;}
.x9_c00434{left:199.066667pt;}
.x97_c00434{left:201.066667pt;}
.x2b_c00434{left:202.266667pt;}
.x72_c00434{left:204.133333pt;}
.x47_c00434{left:205.066667pt;}
.x1d_c00434{left:206.800000pt;}
.x17_c00434{left:208.133333pt;}
.x66_c00434{left:210.266667pt;}
.x4b_c00434{left:211.466667pt;}
.x39_c00434{left:214.266667pt;}
.x27_c00434{left:215.466667pt;}
.x5b_c00434{left:216.533333pt;}
.xab_c00434{left:217.600000pt;}
.xaa_c00434{left:218.800000pt;}
.x75_c00434{left:220.533333pt;}
.x8f_c00434{left:221.866667pt;}
.x2c_c00434{left:223.333333pt;}
.x1e_c00434{left:225.733333pt;}
.x67_c00434{left:226.933333pt;}
.x94_c00434{left:228.533333pt;}
.x98_c00434{left:230.133333pt;}
.x7b_c00434{left:233.733333pt;}
.x91_c00434{left:234.933333pt;}
.x30_c00434{left:237.466667pt;}
.x5f_c00434{left:238.400000pt;}
.x6f_c00434{left:239.466667pt;}
.xa8_c00434{left:241.333333pt;}
.x1f_c00434{left:242.400000pt;}
.x8a_c00434{left:244.133333pt;}
.x60_c00434{left:245.066667pt;}
.x12_c00434{left:247.866667pt;}
.x3f_c00434{left:249.466667pt;}
.x99_c00434{left:250.666667pt;}
.x32_c00434{left:251.866667pt;}
.x5c_c00434{left:253.600000pt;}
.x42_c00434{left:256.933333pt;}
.x2d_c00434{left:258.266667pt;}
.xa2_c00434{left:259.733333pt;}
.xa4_c00434{left:261.333333pt;}
.x18_c00434{left:262.266667pt;}
.x68_c00434{left:265.066667pt;}
.x3a_c00434{left:266.133333pt;}
.x8b_c00434{left:267.200000pt;}
.xa_c00434{left:268.133333pt;}
.x77_c00434{left:269.866667pt;}
.x69_c00434{left:271.733333pt;}
.x48_c00434{left:273.600000pt;}
.x4f_c00434{left:275.333333pt;}
.x61_c00434{left:277.600000pt;}
.x1_c00434{left:278.666667pt;}
.x7f_c00434{left:282.000000pt;}
.x95_c00434{left:282.933333pt;}
.x33_c00434{left:285.200000pt;}
.x87_c00434{left:286.933333pt;}
.x73_c00434{left:294.133333pt;}
.x6a_c00434{left:295.066667pt;}
.x13_c00434{left:296.133333pt;}
.xb_c00434{left:297.866667pt;}
.x8c_c00434{left:299.200000pt;}
.xa9_c00434{left:300.266667pt;}
.x43_c00434{left:301.466667pt;}
.x20_c00434{left:303.466667pt;}
.x34_c00434{left:307.866667pt;}
.x7c_c00434{left:310.533333pt;}
.xad_c00434{left:311.600000pt;}
.x53_c00434{left:312.533333pt;}
.x50_c00434{left:313.466667pt;}
.x14_c00434{left:314.666667pt;}
.x83_c00434{left:316.000000pt;}
.xc_c00434{left:317.066667pt;}
.x78_c00434{left:319.466667pt;}
.x62_c00434{left:320.400000pt;}
.x6b_c00434{left:321.333333pt;}
.xb1_c00434{left:322.533333pt;}
.x21_c00434{left:323.600000pt;}
.x90_c00434{left:324.933333pt;}
.x84_c00434{left:326.266667pt;}
.x49_c00434{left:328.266667pt;}
.xa5_c00434{left:329.200000pt;}
.x9d_c00434{left:331.066667pt;}
.x15_c00434{left:336.400000pt;}
.x92_c00434{left:339.600000pt;}
.x19_c00434{left:340.666667pt;}
.xd_c00434{left:342.000000pt;}
.x88_c00434{left:343.600000pt;}
.x2e_c00434{left:344.666667pt;}
.x35_c00434{left:345.600000pt;}
.x63_c00434{left:346.666667pt;}
.x54_c00434{left:348.400000pt;}
.x3b_c00434{left:350.266667pt;}
.x157_c00434{left:373.066667pt;}
.x119_c00434{left:376.933333pt;}
.x10a_c00434{left:377.866667pt;}
.xb2_c00434{left:379.466667pt;}
.x137_c00434{left:385.866667pt;}
.x14f_c00434{left:388.400000pt;}
.x141_c00434{left:390.133333pt;}
.x13b_c00434{left:391.066667pt;}
.x12b_c00434{left:392.000000pt;}
.x110_c00434{left:392.933333pt;}
.x104_c00434{left:394.133333pt;}
.xc2_c00434{left:395.200000pt;}
.xb9_c00434{left:396.133333pt;}
.xcb_c00434{left:397.600000pt;}
.x138_c00434{left:406.266667pt;}
.xde_c00434{left:411.333333pt;}
.xbb_c00434{left:412.533333pt;}
.x155_c00434{left:414.933333pt;}
.x10b_c00434{left:416.533333pt;}
.xb3_c00434{left:417.600000pt;}
.x120_c00434{left:421.600000pt;}
.x131_c00434{left:423.333333pt;}
.xd4_c00434{left:426.266667pt;}
.xba_c00434{left:428.800000pt;}
.xc3_c00434{left:430.133333pt;}
.x12c_c00434{left:431.066667pt;}
.x13f_c00434{left:432.933333pt;}
.xdf_c00434{left:434.400000pt;}
.x116_c00434{left:436.133333pt;}
.x11c_c00434{left:438.533333pt;}
.xcc_c00434{left:439.466667pt;}
.x147_c00434{left:440.666667pt;}
.x132_c00434{left:441.866667pt;}
.x128_c00434{left:443.600000pt;}
.x135_c00434{left:445.733333pt;}
.xee_c00434{left:446.800000pt;}
.xb4_c00434{left:447.733333pt;}
.x14a_c00434{left:448.666667pt;}
.xbc_c00434{left:450.000000pt;}
.x101_c00434{left:452.000000pt;}
.x11a_c00434{left:453.066667pt;}
.x105_c00434{left:454.266667pt;}
.x11d_c00434{left:456.133333pt;}
.xcd_c00434{left:457.066667pt;}
.x111_c00434{left:458.266667pt;}
.xfd_c00434{left:459.466667pt;}
.xd5_c00434{left:461.733333pt;}
.x117_c00434{left:463.066667pt;}
.xe0_c00434{left:464.133333pt;}
.xc4_c00434{left:466.666667pt;}
.x13e_c00434{left:467.600000pt;}
.x146_c00434{left:469.200000pt;}
.xf8_c00434{left:473.600000pt;}
.x10c_c00434{left:476.400000pt;}
.x14d_c00434{left:477.466667pt;}
.xd6_c00434{left:480.000000pt;}
.x11b_c00434{left:481.200000pt;}
.x148_c00434{left:482.266667pt;}
.xef_c00434{left:483.333333pt;}
.x14e_c00434{left:484.800000pt;}
.xe1_c00434{left:485.866667pt;}
.xbd_c00434{left:486.800000pt;}
.x144_c00434{left:488.266667pt;}
.x158_c00434{left:489.200000pt;}
.xf9_c00434{left:490.266667pt;}
.x150_c00434{left:492.400000pt;}
.xce_c00434{left:493.866667pt;}
.xb5_c00434{left:495.066667pt;}
.x121_c00434{left:496.800000pt;}
.xe2_c00434{left:497.733333pt;}
.x114_c00434{left:498.666667pt;}
.x153_c00434{left:500.400000pt;}
.x142_c00434{left:502.800000pt;}
.x118_c00434{left:503.733333pt;}
.xc5_c00434{left:505.333333pt;}
.x106_c00434{left:507.333333pt;}
.x112_c00434{left:508.533333pt;}
.xf1_c00434{left:511.866667pt;}
.x11e_c00434{left:512.800000pt;}
.xfa_c00434{left:514.533333pt;}
.xd7_c00434{left:515.466667pt;}
.xbe_c00434{left:517.466667pt;}
.x136_c00434{left:518.666667pt;}
.xe9_c00434{left:522.400000pt;}
.xfe_c00434{left:524.133333pt;}
.xfb_c00434{left:526.000000pt;}
.x12d_c00434{left:527.333333pt;}
.x124_c00434{left:529.733333pt;}
.xf2_c00434{left:531.066667pt;}
.xcf_c00434{left:532.533333pt;}
.xe3_c00434{left:535.866667pt;}
.x15a_c00434{left:536.933333pt;}
.x159_c00434{left:538.533333pt;}
.x108_c00434{left:539.733333pt;}
.x12e_c00434{left:542.400000pt;}
.xea_c00434{left:543.466667pt;}
.xc6_c00434{left:544.400000pt;}
.x122_c00434{left:545.733333pt;}
.xf3_c00434{left:547.333333pt;}
.x129_c00434{left:548.533333pt;}
.x133_c00434{left:550.000000pt;}
.x14b_c00434{left:552.266667pt;}
.xd0_c00434{left:554.933333pt;}
.x140_c00434{left:556.133333pt;}
.xff_c00434{left:558.666667pt;}
.x156_c00434{left:559.600000pt;}
.xd8_c00434{left:560.666667pt;}
.x11f_c00434{left:562.400000pt;}
.x154_c00434{left:564.666667pt;}
.x143_c00434{left:568.000000pt;}
.x14c_c00434{left:569.200000pt;}
.x115_c00434{left:570.933333pt;}
.xf4_c00434{left:572.266667pt;}
.xeb_c00434{left:574.133333pt;}
.xd1_c00434{left:575.066667pt;}
.x126_c00434{left:578.266667pt;}
.xd9_c00434{left:580.133333pt;}
.xc7_c00434{left:581.200000pt;}
.xbf_c00434{left:583.333333pt;}
.xf5_c00434{left:585.333333pt;}
.x12f_c00434{left:586.266667pt;}
.x10d_c00434{left:588.666667pt;}
.xfc_c00434{left:591.333333pt;}
.x145_c00434{left:593.333333pt;}
.xb6_c00434{left:594.266667pt;}
.xda_c00434{left:595.466667pt;}
.xc8_c00434{left:596.933333pt;}
.xe4_c00434{left:598.933333pt;}
.x151_c00434{left:600.133333pt;}
.x109_c00434{left:601.200000pt;}
.xb7_c00434{left:602.533333pt;}
.x125_c00434{left:606.000000pt;}
.x13c_c00434{left:607.333333pt;}
.x10e_c00434{left:609.466667pt;}
.x134_c00434{left:610.800000pt;}
.x149_c00434{left:611.866667pt;}
.x123_c00434{left:612.933333pt;}
.xe5_c00434{left:617.466667pt;}
.xdb_c00434{left:618.533333pt;}
.xd2_c00434{left:619.600000pt;}
.x139_c00434{left:621.733333pt;}
.x102_c00434{left:623.333333pt;}
.xc0_c00434{left:624.666667pt;}
.x130_c00434{left:626.533333pt;}
.x12a_c00434{left:627.866667pt;}
.xdc_c00434{left:630.400000pt;}
.xc9_c00434{left:632.400000pt;}
.xf6_c00434{left:633.333333pt;}
.x127_c00434{left:634.933333pt;}
.xe6_c00434{left:636.400000pt;}
.x13a_c00434{left:638.666667pt;}
.x10f_c00434{left:639.600000pt;}
.xec_c00434{left:641.066667pt;}
.x103_c00434{left:642.800000pt;}
.xb8_c00434{left:644.800000pt;}
.xdd_c00434{left:646.400000pt;}
.xf0_c00434{left:648.133333pt;}
.x100_c00434{left:649.466667pt;}
.xe7_c00434{left:651.066667pt;}
.xf7_c00434{left:652.800000pt;}
.x2_c00434{left:654.933333pt;}
.xc1_c00434{left:656.000000pt;}
.x113_c00434{left:657.333333pt;}
.xd3_c00434{left:659.866667pt;}
.x152_c00434{left:660.933333pt;}
.xed_c00434{left:662.133333pt;}
.xca_c00434{left:665.066667pt;}
.x107_c00434{left:667.333333pt;}
.x13d_c00434{left:669.466667pt;}
.xe8_c00434{left:672.133333pt;}
.x3_c00434{left:673.866667pt;}
}





/* 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_c00435 {
    display:none;
  }
  .loading-indicator_c00435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00435 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_c00435 { 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_c00435" -> "#page-container .classname_c00435")
 */
.pf_c00435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00435 { /* 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_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00435 { /* 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_c00435 { /* 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_c00435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00435 {overflow:visible;}
  }
}
.c_c00435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00435 { /* 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_c00435:after { /* webkit #35443 */
  content: '';
}
.t_c00435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00435 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 */
}
.__c00435 { /* 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_c00435 { /* info for Javascript */
  display:none;
}
.l_c00435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00435: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_c00435 {
    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_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00435.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_c00435 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00435;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.000000;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;}
.m103_c00435{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m91_c00435{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00435{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.me0_c00435{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00435{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00435{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00435{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00435{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m106_c00435{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m102_c00435{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mde_c00435{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m99_c00435{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00435{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00435{transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);}
.m29_c00435{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00435{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.meb_c00435{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00435{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00435{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m71_c00435{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00435{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.maa_c00435{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00435{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.md5_c00435{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m72_c00435{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00435{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m62_c00435{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00435{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m113_c00435{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m49_c00435{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m61_c00435{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m16_c00435{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m40_c00435{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m56_c00435{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00435{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m68_c00435{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00435{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00435{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m64_c00435{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00435{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m53_c00435{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00435{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mea_c00435{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m98_c00435{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md8_c00435{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m119_c00435{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m74_c00435{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00435{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00435{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m97_c00435{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m28_c00435{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m94_c00435{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m90_c00435{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m63_c00435{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m117_c00435{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00435{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00435{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00435{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m11_c00435{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00435{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.me9_c00435{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m50_c00435{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mee_c00435{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.maf_c00435{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m75_c00435{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m8_c00435{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m105_c00435{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00435{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00435{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00435{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m15_c00435{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m65_c00435{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md9_c00435{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00435{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m59_c00435{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m114_c00435{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7_c00435{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00435{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m19_c00435{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00435{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m20_c00435{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md6_c00435{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m45_c00435{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m47_c00435{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m5_c00435{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m18_c00435{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00435{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m58_c00435{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00435{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m12_c00435{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m42_c00435{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00435{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m93_c00435{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m46_c00435{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00435{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00435{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.md7_c00435{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00435{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00435{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00435{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m43_c00435{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m92_c00435{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00435{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md4_c00435{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m80_c00435{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m24_c00435{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00435{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00435{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m32_c00435{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m67_c00435{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00435{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6_c00435{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00435{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m38_c00435{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m13_c00435{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m30_c00435{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m57_c00435{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mab_c00435{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m54_c00435{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m52_c00435{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mff_c00435{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md2_c00435{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m22_c00435{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m37_c00435{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me1_c00435{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m76_c00435{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf_c00435{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mae_c00435{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.md1_c00435{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00435{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mec_c00435{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00435{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m60_c00435{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00435{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00435{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m26_c00435{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00435{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m51_c00435{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mda_c00435{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00435{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00435{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00435{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m17_c00435{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00435{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9_c00435{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00435{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.med_c00435{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00435{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m79_c00435{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3_c00435{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00435{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00435{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m85_c00435{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m83_c00435{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00435{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m35_c00435{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00435{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00435{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00435{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00435{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m96_c00435{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mad_c00435{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m44_c00435{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00435{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00435{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00435{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00435{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m73_c00435{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00435{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00435{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00435{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00435{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00435{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m41_c00435{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m77_c00435{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00435{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00435{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mca_c00435{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m31_c00435{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mba_c00435{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00435{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00435{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00435{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me6_c00435{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00435{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m48_c00435{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00435{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m95_c00435{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00435{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00435{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc_c00435{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m27_c00435{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m55_c00435{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m25_c00435{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00435{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00435{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00435{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.me5_c00435{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00435{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00435{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m108_c00435{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00435{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00435{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00435{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m100_c00435{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb_c00435{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00435{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md0_c00435{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m107_c00435{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00435{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m23_c00435{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00435{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma_c00435{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m34_c00435{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00435{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m36_c00435{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m81_c00435{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md3_c00435{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00435{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m101_c00435{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);}
.m2_c00435{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00435{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00435{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00435{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00435{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00435{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mef_c00435{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me2_c00435{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m110_c00435{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00435{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00435{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00435{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m21_c00435{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m33_c00435{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m82_c00435{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00435{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00435{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m109_c00435{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00435{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00435{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00435{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m104_c00435{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10_c00435{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00435{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m112_c00435{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00435{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00435{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.me_c00435{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00435{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00435{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00435{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m70_c00435{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00435{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m86_c00435{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00435{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mac_c00435{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.me8_c00435{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m78_c00435{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00435{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m116_c00435{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00435{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m84_c00435{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.md_c00435{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m66_c00435{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m39_c00435{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m115_c00435{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m118_c00435{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.mce_c00435{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m111_c00435{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00435{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00435{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me7_c00435{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00435{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m69_c00435{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00435{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m87_c00435{transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);}
.m89_c00435{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m88_c00435{transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);}
.me3_c00435{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{transform:matrix(0.412250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00435{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00435{transform:matrix(0.457250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457250,0.000000,0.000000,0.250000,0,0);}
.me4_c00435{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls0_c00435{letter-spacing:0.000000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{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__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00435{word-spacing:-5.945946px;}
.ws4_c00435{word-spacing:-1.429433px;}
.ws5_c00435{word-spacing:0.000000px;}
.ws2_c00435{word-spacing:9.355795px;}
.ws0_c00435{word-spacing:54.550296px;}
.ws3_c00435{word-spacing:108.250000px;}
.fc0_c00435{color:transparent;}
.fs8_c00435{font-size:18.000000px;}
.fs6_c00435{font-size:30.000000px;}
.fs7_c00435{font-size:42.000000px;}
.fs5_c00435{font-size:48.000000px;}
.fs4_c00435{font-size:54.000000px;}
.fs2_c00435{font-size:60.000000px;}
.fs1_c00435{font-size:66.000000px;}
.fs3_c00435{font-size:72.000000px;}
.fs0_c00435{font-size:84.000000px;}
.y0_c00435{bottom:0.000000px;}
.y62_c00435{bottom:168.450000px;}
.y63_c00435{bottom:187.200000px;}
.y30_c00435{bottom:189.750000px;}
.y61_c00435{bottom:201.600000px;}
.y2f_c00435{bottom:204.450000px;}
.y2e_c00435{bottom:218.850000px;}
.y2d_c00435{bottom:232.500000px;}
.y60_c00435{bottom:237.900000px;}
.y2c_c00435{bottom:246.900000px;}
.y5f_c00435{bottom:255.900000px;}
.y2b_c00435{bottom:261.300000px;}
.y5e_c00435{bottom:273.600000px;}
.y2a_c00435{bottom:275.400000px;}
.y29_c00435{bottom:289.050000px;}
.y5d_c00435{bottom:295.950000px;}
.y28_c00435{bottom:304.200000px;}
.y27_c00435{bottom:317.550000px;}
.y5c_c00435{bottom:326.550000px;}
.y26_c00435{bottom:331.950000px;}
.y5b_c00435{bottom:344.550000px;}
.y25_c00435{bottom:345.600000px;}
.y24_c00435{bottom:360.000000px;}
.y5a_c00435{bottom:371.100000px;}
.y23_c00435{bottom:374.400000px;}
.y22_c00435{bottom:388.800000px;}
.y59_c00435{bottom:389.100000px;}
.y58_c00435{bottom:407.100000px;}
.y57_c00435{bottom:425.100000px;}
.y21_c00435{bottom:440.250000px;}
.y56_c00435{bottom:443.100000px;}
.y20_c00435{bottom:459.000000px;}
.y55_c00435{bottom:461.550000px;}
.y54_c00435{bottom:479.550000px;}
.y1f_c00435{bottom:498.900000px;}
.y53_c00435{bottom:506.100000px;}
.y52_c00435{bottom:523.800000px;}
.y1e_c00435{bottom:538.200000px;}
.y51_c00435{bottom:545.700000px;}
.y1d_c00435{bottom:560.550000px;}
.y50_c00435{bottom:563.400000px;}
.y1c_c00435{bottom:582.600000px;}
.y4f_c00435{bottom:585.600000px;}
.y4e_c00435{bottom:603.600000px;}
.y1b_c00435{bottom:604.500000px;}
.y4d_c00435{bottom:621.300000px;}
.y1a_c00435{bottom:623.550000px;}
.y4c_c00435{bottom:643.650000px;}
.y19_c00435{bottom:649.050000px;}
.y4b_c00435{bottom:661.650000px;}
.y18_c00435{bottom:667.800000px;}
.y4a_c00435{bottom:679.650000px;}
.y49_c00435{bottom:701.550000px;}
.y17_c00435{bottom:703.050000px;}
.y48_c00435{bottom:719.250000px;}
.y47_c00435{bottom:741.600000px;}
.y16_c00435{bottom:743.100000px;}
.y46_c00435{bottom:763.500000px;}
.y45_c00435{bottom:781.500000px;}
.y15_c00435{bottom:783.000000px;}
.y14_c00435{bottom:802.050000px;}
.y44_c00435{bottom:803.850000px;}
.y13_c00435{bottom:820.350000px;}
.y43_c00435{bottom:822.150000px;}
.y12_c00435{bottom:838.050000px;}
.y42_c00435{bottom:839.850000px;}
.y11_c00435{bottom:856.050000px;}
.y41_c00435{bottom:866.400000px;}
.y10_c00435{bottom:873.750000px;}
.y40_c00435{bottom:884.400000px;}
.yf_c00435{bottom:892.050000px;}
.y3f_c00435{bottom:894.900000px;}
.y3e_c00435{bottom:902.400000px;}
.ye_c00435{bottom:910.350000px;}
.y3d_c00435{bottom:914.700000px;}
.y3c_c00435{bottom:920.100000px;}
.yd_c00435{bottom:927.600000px;}
.y3b_c00435{bottom:938.400000px;}
.yc_c00435{bottom:945.600000px;}
.y3a_c00435{bottom:956.100000px;}
.yb_c00435{bottom:963.300000px;}
.ya_c00435{bottom:981.000000px;}
.y39_c00435{bottom:982.500000px;}
.y9_c00435{bottom:999.000000px;}
.y38_c00435{bottom:1000.500000px;}
.y8_c00435{bottom:1017.000000px;}
.y37_c00435{bottom:1022.700000px;}
.y7_c00435{bottom:1035.000000px;}
.y36_c00435{bottom:1040.700000px;}
.y6_c00435{bottom:1053.300000px;}
.y35_c00435{bottom:1058.700000px;}
.y5_c00435{bottom:1071.000000px;}
.y34_c00435{bottom:1078.650000px;}
.y33_c00435{bottom:1086.900000px;}
.y4_c00435{bottom:1089.300000px;}
.y3_c00435{bottom:1107.000000px;}
.y32_c00435{bottom:1111.350000px;}
.y31_c00435{bottom:1119.900000px;}
.y2_c00435{bottom:1124.700000px;}
.y1_c00435{bottom:1150.500000px;}
.ha_c00435{height:18.000000px;}
.h8_c00435{height:30.000000px;}
.h9_c00435{height:42.000000px;}
.h7_c00435{height:48.000000px;}
.h6_c00435{height:54.000000px;}
.h4_c00435{height:60.000000px;}
.h3_c00435{height:66.000000px;}
.h5_c00435{height:72.000000px;}
.h2_c00435{height:84.000000px;}
.h0_c00435{height:1273.320007px;}
.h1_c00435{height:1273.500000px;}
.w0_c00435{width:958.320007px;}
.w1_c00435{width:958.500000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:192.300000px;}
.x71_c00435{left:193.650000px;}
.x74_c00435{left:195.450000px;}
.x7f_c00435{left:196.650000px;}
.x90_c00435{left:197.850000px;}
.x52_c00435{left:211.050000px;}
.x3_c00435{left:212.100000px;}
.x19_c00435{left:213.150000px;}
.x7b_c00435{left:216.750000px;}
.x8f_c00435{left:221.400000px;}
.x93_c00435{left:225.150000px;}
.x97_c00435{left:226.500000px;}
.x6a_c00435{left:228.900000px;}
.x48_c00435{left:231.300000px;}
.x24_c00435{left:233.850000px;}
.x42_c00435{left:234.900000px;}
.x8b_c00435{left:239.550000px;}
.x4_c00435{left:242.400000px;}
.xb_c00435{left:244.050000px;}
.x1a_c00435{left:245.550000px;}
.x76_c00435{left:246.900000px;}
.x91_c00435{left:249.300000px;}
.x80_c00435{left:250.650000px;}
.x64_c00435{left:251.700000px;}
.x83_c00435{left:254.850000px;}
.x6b_c00435{left:257.400000px;}
.x20_c00435{left:259.050000px;}
.x5_c00435{left:260.400000px;}
.x37_c00435{left:261.750000px;}
.x69_c00435{left:263.100000px;}
.x86_c00435{left:264.300000px;}
.x65_c00435{left:265.800000px;}
.x1b_c00435{left:266.850000px;}
.xc_c00435{left:268.200000px;}
.x30_c00435{left:269.250000px;}
.x43_c00435{left:271.950000px;}
.x6f_c00435{left:273.600000px;}
.x53_c00435{left:277.650000px;}
.x21_c00435{left:279.150000px;}
.x13_c00435{left:280.350000px;}
.x25_c00435{left:284.250000px;}
.x38_c00435{left:285.450000px;}
.x6c_c00435{left:286.950000px;}
.x96_c00435{left:289.350000px;}
.x54_c00435{left:292.800000px;}
.x70_c00435{left:294.150000px;}
.x44_c00435{left:296.100000px;}
.x92_c00435{left:298.350000px;}
.x3c_c00435{left:299.550000px;}
.x28_c00435{left:303.600000px;}
.x4e_c00435{left:305.700000px;}
.x1c_c00435{left:307.950000px;}
.x31_c00435{left:311.400000px;}
.xd_c00435{left:313.200000px;}
.x57_c00435{left:314.550000px;}
.x49_c00435{left:316.350000px;}
.x3d_c00435{left:320.100000px;}
.x4f_c00435{left:321.600000px;}
.x98_c00435{left:323.100000px;}
.x29_c00435{left:324.150000px;}
.x94_c00435{left:325.650000px;}
.x73_c00435{left:326.850000px;}
.x84_c00435{left:328.950000px;}
.x66_c00435{left:330.900000px;}
.x6_c00435{left:332.100000px;}
.x5c_c00435{left:333.900000px;}
.xe_c00435{left:335.850000px;}
.x1d_c00435{left:337.500000px;}
.x72_c00435{left:339.450000px;}
.x61_c00435{left:340.800000px;}
.x63_c00435{left:341.850000px;}
.x81_c00435{left:343.200000px;}
.x7c_c00435{left:345.000000px;}
.x4a_c00435{left:349.050000px;}
.x39_c00435{left:351.300000px;}
.x55_c00435{left:354.000000px;}
.x8e_c00435{left:356.400000px;}
.x7_c00435{left:358.800000px;}
.x87_c00435{left:360.150000px;}
.x5d_c00435{left:362.400000px;}
.x14_c00435{left:363.900000px;}
.x1e_c00435{left:365.250000px;}
.x8c_c00435{left:367.350000px;}
.x77_c00435{left:370.650000px;}
.x45_c00435{left:372.750000px;}
.x67_c00435{left:373.800000px;}
.x3a_c00435{left:378.300000px;}
.x58_c00435{left:379.350000px;}
.x2a_c00435{left:382.500000px;}
.x8_c00435{left:383.700000px;}
.x5e_c00435{left:386.100000px;}
.x85_c00435{left:387.300000px;}
.x26_c00435{left:388.350000px;}
.x4b_c00435{left:389.700000px;}
.x32_c00435{left:390.900000px;}
.x3e_c00435{left:392.100000px;}
.x22_c00435{left:394.350000px;}
.x68_c00435{left:395.400000px;}
.x78_c00435{left:396.900000px;}
.x75_c00435{left:398.550000px;}
.x6d_c00435{left:402.600000px;}
.x15_c00435{left:405.000000px;}
.x46_c00435{left:406.200000px;}
.x88_c00435{left:407.700000px;}
.x2e_c00435{left:408.900000px;}
.x62_c00435{left:411.000000px;}
.x33_c00435{left:412.500000px;}
.x3b_c00435{left:414.300000px;}
.x7d_c00435{left:416.700000px;}
.x95_c00435{left:420.000000px;}
.x3f_c00435{left:422.700000px;}
.x6e_c00435{left:423.900000px;}
.x34_c00435{left:425.100000px;}
.x99_c00435{left:427.050000px;}
.xf_c00435{left:429.150000px;}
.x50_c00435{left:432.000000px;}
.x89_c00435{left:433.200000px;}
.x56_c00435{left:436.200000px;}
.x2_c00435{left:437.400000px;}
.x40_c00435{left:442.800000px;}
.x5f_c00435{left:448.050000px;}
.x79_c00435{left:450.150000px;}
.x16_c00435{left:453.300000px;}
.x9_c00435{left:456.450000px;}
.x23_c00435{left:458.100000px;}
.x10_c00435{left:462.300000px;}
.x4c_c00435{left:464.550000px;}
.x2b_c00435{left:468.600000px;}
.x35_c00435{left:471.900000px;}
.x2f_c00435{left:472.950000px;}
.x1f_c00435{left:475.050000px;}
.x17_c00435{left:476.400000px;}
.x2c_c00435{left:477.600000px;}
.x82_c00435{left:478.800000px;}
.xa_c00435{left:481.650000px;}
.x47_c00435{left:485.100000px;}
.x27_c00435{left:487.650000px;}
.x4d_c00435{left:490.050000px;}
.x51_c00435{left:492.150000px;}
.x59_c00435{left:493.800000px;}
.x11_c00435{left:495.750000px;}
.x2d_c00435{left:497.100000px;}
.x5a_c00435{left:500.850000px;}
.x41_c00435{left:501.900000px;}
.x18_c00435{left:503.400000px;}
.x36_c00435{left:505.800000px;}
.x60_c00435{left:508.500000px;}
.x7e_c00435{left:511.350000px;}
.x5b_c00435{left:513.150000px;}
.x8a_c00435{left:514.200000px;}
.x7a_c00435{left:516.000000px;}
.x8d_c00435{left:517.500000px;}
.x12_c00435{left:519.450000px;}
.x9a_c00435{left:550.500000px;}
.x10a_c00435{left:557.550000px;}
.x122_c00435{left:566.250000px;}
.xa2_c00435{left:568.050000px;}
.xe9_c00435{left:569.400000px;}
.xd0_c00435{left:577.050000px;}
.xa6_c00435{left:586.050000px;}
.xb7_c00435{left:587.100000px;}
.xc7_c00435{left:588.750000px;}
.x118_c00435{left:589.950000px;}
.xf8_c00435{left:591.000000px;}
.xb3_c00435{left:594.000000px;}
.x9b_c00435{left:596.550000px;}
.xac_c00435{left:599.850000px;}
.xfd_c00435{left:603.150000px;}
.x10b_c00435{left:604.350000px;}
.xfb_c00435{left:607.350000px;}
.x107_c00435{left:608.700000px;}
.xd1_c00435{left:611.250000px;}
.x101_c00435{left:614.400000px;}
.xea_c00435{left:617.250000px;}
.x126_c00435{left:618.750000px;}
.xda_c00435{left:621.750000px;}
.xc3_c00435{left:623.250000px;}
.xeb_c00435{left:625.350000px;}
.x10e_c00435{left:627.000000px;}
.x103_c00435{left:628.200000px;}
.xa3_c00435{left:630.300000px;}
.xe6_c00435{left:633.150000px;}
.xe0_c00435{left:635.850000px;}
.xf2_c00435{left:637.200000px;}
.xed_c00435{left:640.350000px;}
.x113_c00435{left:641.700000px;}
.x116_c00435{left:642.900000px;}
.xa7_c00435{left:645.150000px;}
.xb8_c00435{left:646.200000px;}
.x10f_c00435{left:647.850000px;}
.xbd_c00435{left:649.050000px;}
.x123_c00435{left:651.150000px;}
.xd2_c00435{left:652.350000px;}
.xe1_c00435{left:656.400000px;}
.x127_c00435{left:658.050000px;}
.xdb_c00435{left:659.250000px;}
.xc8_c00435{left:661.050000px;}
.x9c_c00435{left:662.850000px;}
.x114_c00435{left:665.100000px;}
.xa4_c00435{left:666.300000px;}
.xad_c00435{left:667.500000px;}
.x119_c00435{left:670.950000px;}
.xcc_c00435{left:673.500000px;}
.x108_c00435{left:675.000000px;}
.xb4_c00435{left:676.050000px;}
.xfe_c00435{left:677.400000px;}
.xc9_c00435{left:682.350000px;}
.xf3_c00435{left:684.300000px;}
.x104_c00435{left:690.900000px;}
.xec_c00435{left:692.550000px;}
.xa5_c00435{left:693.600000px;}
.x110_c00435{left:695.700000px;}
.xbe_c00435{left:697.350000px;}
.x112_c00435{left:698.850000px;}
.xdc_c00435{left:700.350000px;}
.xb5_c00435{left:702.300000px;}
.xff_c00435{left:704.700000px;}
.xbf_c00435{left:707.850000px;}
.x124_c00435{left:709.800000px;}
.xf9_c00435{left:712.050000px;}
.xe2_c00435{left:713.250000px;}
.x117_c00435{left:715.200000px;}
.xd3_c00435{left:717.150000px;}
.x10c_c00435{left:719.850000px;}
.xb9_c00435{left:721.500000px;}
.xae_c00435{left:722.550000px;}
.xdd_c00435{left:723.750000px;}
.xcd_c00435{left:726.000000px;}
.x102_c00435{left:727.800000px;}
.xa8_c00435{left:729.750000px;}
.xe3_c00435{left:730.950000px;}
.x115_c00435{left:732.000000px;}
.x9d_c00435{left:734.850000px;}
.xf4_c00435{left:736.800000px;}
.xce_c00435{left:738.600000px;}
.xee_c00435{left:739.950000px;}
.x109_c00435{left:744.150000px;}
.x11a_c00435{left:745.500000px;}
.xe7_c00435{left:749.400000px;}
.xc0_c00435{left:750.750000px;}
.xc4_c00435{left:751.800000px;}
.x11f_c00435{left:752.850000px;}
.xaf_c00435{left:756.750000px;}
.x11e_c00435{left:758.400000px;}
.xd7_c00435{left:760.500000px;}
.xb6_c00435{left:764.250000px;}
.x11b_c00435{left:766.350000px;}
.xd4_c00435{left:768.300000px;}
.xf5_c00435{left:769.950000px;}
.x11d_c00435{left:772.350000px;}
.xb0_c00435{left:774.000000px;}
.x105_c00435{left:778.050000px;}
.xf6_c00435{left:779.250000px;}
.xa9_c00435{left:783.000000px;}
.xde_c00435{left:784.950000px;}
.xc1_c00435{left:786.750000px;}
.x111_c00435{left:788.250000px;}
.xca_c00435{left:789.300000px;}
.x100_c00435{left:790.800000px;}
.xe4_c00435{left:795.000000px;}
.x9e_c00435{left:796.350000px;}
.xef_c00435{left:797.850000px;}
.xaa_c00435{left:802.500000px;}
.xba_c00435{left:804.300000px;}
.xf0_c00435{left:807.150000px;}
.xd8_c00435{left:808.800000px;}
.xfa_c00435{left:811.350000px;}
.xd5_c00435{left:813.600000px;}
.x120_c00435{left:814.800000px;}
.xc5_c00435{left:819.450000px;}
.xe8_c00435{left:822.450000px;}
.xbb_c00435{left:824.100000px;}
.xd9_c00435{left:826.050000px;}
.xf1_c00435{left:827.250000px;}
.x9f_c00435{left:828.750000px;}
.xa1_c00435{left:829.800000px;}
.xb1_c00435{left:832.650000px;}
.xfc_c00435{left:834.600000px;}
.x106_c00435{left:837.150000px;}
.x121_c00435{left:848.700000px;}
.xf7_c00435{left:850.200000px;}
.xab_c00435{left:854.400000px;}
.x125_c00435{left:857.550000px;}
.x10d_c00435{left:858.750000px;}
.xc6_c00435{left:860.850000px;}
.xa0_c00435{left:862.200000px;}
.x11c_c00435{left:864.000000px;}
.xcf_c00435{left:866.850000px;}
.xb2_c00435{left:867.900000px;}
.xbc_c00435{left:871.200000px;}
.xe5_c00435{left:873.150000px;}
.xcb_c00435{left:876.000000px;}
.xc2_c00435{left:877.050000px;}
.xd6_c00435{left:878.100000px;}
.xdf_c00435{left:886.500000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws1_c00435{word-spacing:-5.285285pt;}
.ws4_c00435{word-spacing:-1.270607pt;}
.ws5_c00435{word-spacing:0.000000pt;}
.ws2_c00435{word-spacing:8.316262pt;}
.ws0_c00435{word-spacing:48.489152pt;}
.ws3_c00435{word-spacing:96.222222pt;}
.fs8_c00435{font-size:16.000000pt;}
.fs6_c00435{font-size:26.666667pt;}
.fs7_c00435{font-size:37.333333pt;}
.fs5_c00435{font-size:42.666667pt;}
.fs4_c00435{font-size:48.000000pt;}
.fs2_c00435{font-size:53.333333pt;}
.fs1_c00435{font-size:58.666667pt;}
.fs3_c00435{font-size:64.000000pt;}
.fs0_c00435{font-size:74.666667pt;}
.y0_c00435{bottom:0.000000pt;}
.y62_c00435{bottom:149.733333pt;}
.y63_c00435{bottom:166.400000pt;}
.y30_c00435{bottom:168.666667pt;}
.y61_c00435{bottom:179.200000pt;}
.y2f_c00435{bottom:181.733333pt;}
.y2e_c00435{bottom:194.533333pt;}
.y2d_c00435{bottom:206.666667pt;}
.y60_c00435{bottom:211.466667pt;}
.y2c_c00435{bottom:219.466667pt;}
.y5f_c00435{bottom:227.466667pt;}
.y2b_c00435{bottom:232.266667pt;}
.y5e_c00435{bottom:243.200000pt;}
.y2a_c00435{bottom:244.800000pt;}
.y29_c00435{bottom:256.933333pt;}
.y5d_c00435{bottom:263.066667pt;}
.y28_c00435{bottom:270.400000pt;}
.y27_c00435{bottom:282.266667pt;}
.y5c_c00435{bottom:290.266667pt;}
.y26_c00435{bottom:295.066667pt;}
.y5b_c00435{bottom:306.266667pt;}
.y25_c00435{bottom:307.200000pt;}
.y24_c00435{bottom:320.000000pt;}
.y5a_c00435{bottom:329.866667pt;}
.y23_c00435{bottom:332.800000pt;}
.y22_c00435{bottom:345.600000pt;}
.y59_c00435{bottom:345.866667pt;}
.y58_c00435{bottom:361.866667pt;}
.y57_c00435{bottom:377.866667pt;}
.y21_c00435{bottom:391.333333pt;}
.y56_c00435{bottom:393.866667pt;}
.y20_c00435{bottom:408.000000pt;}
.y55_c00435{bottom:410.266667pt;}
.y54_c00435{bottom:426.266667pt;}
.y1f_c00435{bottom:443.466667pt;}
.y53_c00435{bottom:449.866667pt;}
.y52_c00435{bottom:465.600000pt;}
.y1e_c00435{bottom:478.400000pt;}
.y51_c00435{bottom:485.066667pt;}
.y1d_c00435{bottom:498.266667pt;}
.y50_c00435{bottom:500.800000pt;}
.y1c_c00435{bottom:517.866667pt;}
.y4f_c00435{bottom:520.533333pt;}
.y4e_c00435{bottom:536.533333pt;}
.y1b_c00435{bottom:537.333333pt;}
.y4d_c00435{bottom:552.266667pt;}
.y1a_c00435{bottom:554.266667pt;}
.y4c_c00435{bottom:572.133333pt;}
.y19_c00435{bottom:576.933333pt;}
.y4b_c00435{bottom:588.133333pt;}
.y18_c00435{bottom:593.600000pt;}
.y4a_c00435{bottom:604.133333pt;}
.y49_c00435{bottom:623.600000pt;}
.y17_c00435{bottom:624.933333pt;}
.y48_c00435{bottom:639.333333pt;}
.y47_c00435{bottom:659.200000pt;}
.y16_c00435{bottom:660.533333pt;}
.y46_c00435{bottom:678.666667pt;}
.y45_c00435{bottom:694.666667pt;}
.y15_c00435{bottom:696.000000pt;}
.y14_c00435{bottom:712.933333pt;}
.y44_c00435{bottom:714.533333pt;}
.y13_c00435{bottom:729.200000pt;}
.y43_c00435{bottom:730.800000pt;}
.y12_c00435{bottom:744.933333pt;}
.y42_c00435{bottom:746.533333pt;}
.y11_c00435{bottom:760.933333pt;}
.y41_c00435{bottom:770.133333pt;}
.y10_c00435{bottom:776.666667pt;}
.y40_c00435{bottom:786.133333pt;}
.yf_c00435{bottom:792.933333pt;}
.y3f_c00435{bottom:795.466667pt;}
.y3e_c00435{bottom:802.133333pt;}
.ye_c00435{bottom:809.200000pt;}
.y3d_c00435{bottom:813.066667pt;}
.y3c_c00435{bottom:817.866667pt;}
.yd_c00435{bottom:824.533333pt;}
.y3b_c00435{bottom:834.133333pt;}
.yc_c00435{bottom:840.533333pt;}
.y3a_c00435{bottom:849.866667pt;}
.yb_c00435{bottom:856.266667pt;}
.ya_c00435{bottom:872.000000pt;}
.y39_c00435{bottom:873.333333pt;}
.y9_c00435{bottom:888.000000pt;}
.y38_c00435{bottom:889.333333pt;}
.y8_c00435{bottom:904.000000pt;}
.y37_c00435{bottom:909.066667pt;}
.y7_c00435{bottom:920.000000pt;}
.y36_c00435{bottom:925.066667pt;}
.y6_c00435{bottom:936.266667pt;}
.y35_c00435{bottom:941.066667pt;}
.y5_c00435{bottom:952.000000pt;}
.y34_c00435{bottom:958.800000pt;}
.y33_c00435{bottom:966.133333pt;}
.y4_c00435{bottom:968.266667pt;}
.y3_c00435{bottom:984.000000pt;}
.y32_c00435{bottom:987.866667pt;}
.y31_c00435{bottom:995.466667pt;}
.y2_c00435{bottom:999.733333pt;}
.y1_c00435{bottom:1022.666667pt;}
.ha_c00435{height:16.000000pt;}
.h8_c00435{height:26.666667pt;}
.h9_c00435{height:37.333333pt;}
.h7_c00435{height:42.666667pt;}
.h6_c00435{height:48.000000pt;}
.h4_c00435{height:53.333333pt;}
.h3_c00435{height:58.666667pt;}
.h5_c00435{height:64.000000pt;}
.h2_c00435{height:74.666667pt;}
.h0_c00435{height:1131.840007pt;}
.h1_c00435{height:1132.000000pt;}
.w0_c00435{width:851.840007pt;}
.w1_c00435{width:852.000000pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:170.933333pt;}
.x71_c00435{left:172.133333pt;}
.x74_c00435{left:173.733333pt;}
.x7f_c00435{left:174.800000pt;}
.x90_c00435{left:175.866667pt;}
.x52_c00435{left:187.600000pt;}
.x3_c00435{left:188.533333pt;}
.x19_c00435{left:189.466667pt;}
.x7b_c00435{left:192.666667pt;}
.x8f_c00435{left:196.800000pt;}
.x93_c00435{left:200.133333pt;}
.x97_c00435{left:201.333333pt;}
.x6a_c00435{left:203.466667pt;}
.x48_c00435{left:205.600000pt;}
.x24_c00435{left:207.866667pt;}
.x42_c00435{left:208.800000pt;}
.x8b_c00435{left:212.933333pt;}
.x4_c00435{left:215.466667pt;}
.xb_c00435{left:216.933333pt;}
.x1a_c00435{left:218.266667pt;}
.x76_c00435{left:219.466667pt;}
.x91_c00435{left:221.600000pt;}
.x80_c00435{left:222.800000pt;}
.x64_c00435{left:223.733333pt;}
.x83_c00435{left:226.533333pt;}
.x6b_c00435{left:228.800000pt;}
.x20_c00435{left:230.266667pt;}
.x5_c00435{left:231.466667pt;}
.x37_c00435{left:232.666667pt;}
.x69_c00435{left:233.866667pt;}
.x86_c00435{left:234.933333pt;}
.x65_c00435{left:236.266667pt;}
.x1b_c00435{left:237.200000pt;}
.xc_c00435{left:238.400000pt;}
.x30_c00435{left:239.333333pt;}
.x43_c00435{left:241.733333pt;}
.x6f_c00435{left:243.200000pt;}
.x53_c00435{left:246.800000pt;}
.x21_c00435{left:248.133333pt;}
.x13_c00435{left:249.200000pt;}
.x25_c00435{left:252.666667pt;}
.x38_c00435{left:253.733333pt;}
.x6c_c00435{left:255.066667pt;}
.x96_c00435{left:257.200000pt;}
.x54_c00435{left:260.266667pt;}
.x70_c00435{left:261.466667pt;}
.x44_c00435{left:263.200000pt;}
.x92_c00435{left:265.200000pt;}
.x3c_c00435{left:266.266667pt;}
.x28_c00435{left:269.866667pt;}
.x4e_c00435{left:271.733333pt;}
.x1c_c00435{left:273.733333pt;}
.x31_c00435{left:276.800000pt;}
.xd_c00435{left:278.400000pt;}
.x57_c00435{left:279.600000pt;}
.x49_c00435{left:281.200000pt;}
.x3d_c00435{left:284.533333pt;}
.x4f_c00435{left:285.866667pt;}
.x98_c00435{left:287.200000pt;}
.x29_c00435{left:288.133333pt;}
.x94_c00435{left:289.466667pt;}
.x73_c00435{left:290.533333pt;}
.x84_c00435{left:292.400000pt;}
.x66_c00435{left:294.133333pt;}
.x6_c00435{left:295.200000pt;}
.x5c_c00435{left:296.800000pt;}
.xe_c00435{left:298.533333pt;}
.x1d_c00435{left:300.000000pt;}
.x72_c00435{left:301.733333pt;}
.x61_c00435{left:302.933333pt;}
.x63_c00435{left:303.866667pt;}
.x81_c00435{left:305.066667pt;}
.x7c_c00435{left:306.666667pt;}
.x4a_c00435{left:310.266667pt;}
.x39_c00435{left:312.266667pt;}
.x55_c00435{left:314.666667pt;}
.x8e_c00435{left:316.800000pt;}
.x7_c00435{left:318.933333pt;}
.x87_c00435{left:320.133333pt;}
.x5d_c00435{left:322.133333pt;}
.x14_c00435{left:323.466667pt;}
.x1e_c00435{left:324.666667pt;}
.x8c_c00435{left:326.533333pt;}
.x77_c00435{left:329.466667pt;}
.x45_c00435{left:331.333333pt;}
.x67_c00435{left:332.266667pt;}
.x3a_c00435{left:336.266667pt;}
.x58_c00435{left:337.200000pt;}
.x2a_c00435{left:340.000000pt;}
.x8_c00435{left:341.066667pt;}
.x5e_c00435{left:343.200000pt;}
.x85_c00435{left:344.266667pt;}
.x26_c00435{left:345.200000pt;}
.x4b_c00435{left:346.400000pt;}
.x32_c00435{left:347.466667pt;}
.x3e_c00435{left:348.533333pt;}
.x22_c00435{left:350.533333pt;}
.x68_c00435{left:351.466667pt;}
.x78_c00435{left:352.800000pt;}
.x75_c00435{left:354.266667pt;}
.x6d_c00435{left:357.866667pt;}
.x15_c00435{left:360.000000pt;}
.x46_c00435{left:361.066667pt;}
.x88_c00435{left:362.400000pt;}
.x2e_c00435{left:363.466667pt;}
.x62_c00435{left:365.333333pt;}
.x33_c00435{left:366.666667pt;}
.x3b_c00435{left:368.266667pt;}
.x7d_c00435{left:370.400000pt;}
.x95_c00435{left:373.333333pt;}
.x3f_c00435{left:375.733333pt;}
.x6e_c00435{left:376.800000pt;}
.x34_c00435{left:377.866667pt;}
.x99_c00435{left:379.600000pt;}
.xf_c00435{left:381.466667pt;}
.x50_c00435{left:384.000000pt;}
.x89_c00435{left:385.066667pt;}
.x56_c00435{left:387.733333pt;}
.x2_c00435{left:388.800000pt;}
.x40_c00435{left:393.600000pt;}
.x5f_c00435{left:398.266667pt;}
.x79_c00435{left:400.133333pt;}
.x16_c00435{left:402.933333pt;}
.x9_c00435{left:405.733333pt;}
.x23_c00435{left:407.200000pt;}
.x10_c00435{left:410.933333pt;}
.x4c_c00435{left:412.933333pt;}
.x2b_c00435{left:416.533333pt;}
.x35_c00435{left:419.466667pt;}
.x2f_c00435{left:420.400000pt;}
.x1f_c00435{left:422.266667pt;}
.x17_c00435{left:423.466667pt;}
.x2c_c00435{left:424.533333pt;}
.x82_c00435{left:425.600000pt;}
.xa_c00435{left:428.133333pt;}
.x47_c00435{left:431.200000pt;}
.x27_c00435{left:433.466667pt;}
.x4d_c00435{left:435.600000pt;}
.x51_c00435{left:437.466667pt;}
.x59_c00435{left:438.933333pt;}
.x11_c00435{left:440.666667pt;}
.x2d_c00435{left:441.866667pt;}
.x5a_c00435{left:445.200000pt;}
.x41_c00435{left:446.133333pt;}
.x18_c00435{left:447.466667pt;}
.x36_c00435{left:449.600000pt;}
.x60_c00435{left:452.000000pt;}
.x7e_c00435{left:454.533333pt;}
.x5b_c00435{left:456.133333pt;}
.x8a_c00435{left:457.066667pt;}
.x7a_c00435{left:458.666667pt;}
.x8d_c00435{left:460.000000pt;}
.x12_c00435{left:461.733333pt;}
.x9a_c00435{left:489.333333pt;}
.x10a_c00435{left:495.600000pt;}
.x122_c00435{left:503.333333pt;}
.xa2_c00435{left:504.933333pt;}
.xe9_c00435{left:506.133333pt;}
.xd0_c00435{left:512.933333pt;}
.xa6_c00435{left:520.933333pt;}
.xb7_c00435{left:521.866667pt;}
.xc7_c00435{left:523.333333pt;}
.x118_c00435{left:524.400000pt;}
.xf8_c00435{left:525.333333pt;}
.xb3_c00435{left:528.000000pt;}
.x9b_c00435{left:530.266667pt;}
.xac_c00435{left:533.200000pt;}
.xfd_c00435{left:536.133333pt;}
.x10b_c00435{left:537.200000pt;}
.xfb_c00435{left:539.866667pt;}
.x107_c00435{left:541.066667pt;}
.xd1_c00435{left:543.333333pt;}
.x101_c00435{left:546.133333pt;}
.xea_c00435{left:548.666667pt;}
.x126_c00435{left:550.000000pt;}
.xda_c00435{left:552.666667pt;}
.xc3_c00435{left:554.000000pt;}
.xeb_c00435{left:555.866667pt;}
.x10e_c00435{left:557.333333pt;}
.x103_c00435{left:558.400000pt;}
.xa3_c00435{left:560.266667pt;}
.xe6_c00435{left:562.800000pt;}
.xe0_c00435{left:565.200000pt;}
.xf2_c00435{left:566.400000pt;}
.xed_c00435{left:569.200000pt;}
.x113_c00435{left:570.400000pt;}
.x116_c00435{left:571.466667pt;}
.xa7_c00435{left:573.466667pt;}
.xb8_c00435{left:574.400000pt;}
.x10f_c00435{left:575.866667pt;}
.xbd_c00435{left:576.933333pt;}
.x123_c00435{left:578.800000pt;}
.xd2_c00435{left:579.866667pt;}
.xe1_c00435{left:583.466667pt;}
.x127_c00435{left:584.933333pt;}
.xdb_c00435{left:586.000000pt;}
.xc8_c00435{left:587.600000pt;}
.x9c_c00435{left:589.200000pt;}
.x114_c00435{left:591.200000pt;}
.xa4_c00435{left:592.266667pt;}
.xad_c00435{left:593.333333pt;}
.x119_c00435{left:596.400000pt;}
.xcc_c00435{left:598.666667pt;}
.x108_c00435{left:600.000000pt;}
.xb4_c00435{left:600.933333pt;}
.xfe_c00435{left:602.133333pt;}
.xc9_c00435{left:606.533333pt;}
.xf3_c00435{left:608.266667pt;}
.x104_c00435{left:614.133333pt;}
.xec_c00435{left:615.600000pt;}
.xa5_c00435{left:616.533333pt;}
.x110_c00435{left:618.400000pt;}
.xbe_c00435{left:619.866667pt;}
.x112_c00435{left:621.200000pt;}
.xdc_c00435{left:622.533333pt;}
.xb5_c00435{left:624.266667pt;}
.xff_c00435{left:626.400000pt;}
.xbf_c00435{left:629.200000pt;}
.x124_c00435{left:630.933333pt;}
.xf9_c00435{left:632.933333pt;}
.xe2_c00435{left:634.000000pt;}
.x117_c00435{left:635.733333pt;}
.xd3_c00435{left:637.466667pt;}
.x10c_c00435{left:639.866667pt;}
.xb9_c00435{left:641.333333pt;}
.xae_c00435{left:642.266667pt;}
.xdd_c00435{left:643.333333pt;}
.xcd_c00435{left:645.333333pt;}
.x102_c00435{left:646.933333pt;}
.xa8_c00435{left:648.666667pt;}
.xe3_c00435{left:649.733333pt;}
.x115_c00435{left:650.666667pt;}
.x9d_c00435{left:653.200000pt;}
.xf4_c00435{left:654.933333pt;}
.xce_c00435{left:656.533333pt;}
.xee_c00435{left:657.733333pt;}
.x109_c00435{left:661.466667pt;}
.x11a_c00435{left:662.666667pt;}
.xe7_c00435{left:666.133333pt;}
.xc0_c00435{left:667.333333pt;}
.xc4_c00435{left:668.266667pt;}
.x11f_c00435{left:669.200000pt;}
.xaf_c00435{left:672.666667pt;}
.x11e_c00435{left:674.133333pt;}
.xd7_c00435{left:676.000000pt;}
.xb6_c00435{left:679.333333pt;}
.x11b_c00435{left:681.200000pt;}
.xd4_c00435{left:682.933333pt;}
.xf5_c00435{left:684.400000pt;}
.x11d_c00435{left:686.533333pt;}
.xb0_c00435{left:688.000000pt;}
.x105_c00435{left:691.600000pt;}
.xf6_c00435{left:692.666667pt;}
.xa9_c00435{left:696.000000pt;}
.xde_c00435{left:697.733333pt;}
.xc1_c00435{left:699.333333pt;}
.x111_c00435{left:700.666667pt;}
.xca_c00435{left:701.600000pt;}
.x100_c00435{left:702.933333pt;}
.xe4_c00435{left:706.666667pt;}
.x9e_c00435{left:707.866667pt;}
.xef_c00435{left:709.200000pt;}
.xaa_c00435{left:713.333333pt;}
.xba_c00435{left:714.933333pt;}
.xf0_c00435{left:717.466667pt;}
.xd8_c00435{left:718.933333pt;}
.xfa_c00435{left:721.200000pt;}
.xd5_c00435{left:723.200000pt;}
.x120_c00435{left:724.266667pt;}
.xc5_c00435{left:728.400000pt;}
.xe8_c00435{left:731.066667pt;}
.xbb_c00435{left:732.533333pt;}
.xd9_c00435{left:734.266667pt;}
.xf1_c00435{left:735.333333pt;}
.x9f_c00435{left:736.666667pt;}
.xa1_c00435{left:737.600000pt;}
.xb1_c00435{left:740.133333pt;}
.xfc_c00435{left:741.866667pt;}
.x106_c00435{left:744.133333pt;}
.x121_c00435{left:754.400000pt;}
.xf7_c00435{left:755.733333pt;}
.xab_c00435{left:759.466667pt;}
.x125_c00435{left:762.266667pt;}
.x10d_c00435{left:763.333333pt;}
.xc6_c00435{left:765.200000pt;}
.xa0_c00435{left:766.400000pt;}
.x11c_c00435{left:768.000000pt;}
.xcf_c00435{left:770.533333pt;}
.xb2_c00435{left:771.466667pt;}
.xbc_c00435{left:774.400000pt;}
.xe5_c00435{left:776.133333pt;}
.xcb_c00435{left:778.666667pt;}
.xc2_c00435{left:779.600000pt;}
.xd6_c00435{left:780.533333pt;}
.xdf_c00435{left:788.000000pt;}
}





/* 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_c00436 {
    display:none;
  }
  .loading-indicator_c00436.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00436 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_c00436 { 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_c00436" -> "#page-container .classname_c00436")
 */
.pf_c00436 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00436 { /* 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_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00436 { /* 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_c00436 { /* 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_c00436 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00436 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00436 {overflow:visible;}
  }
}
.c_c00436 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00436 { /* 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_c00436:after { /* webkit #35443 */
  content: '';
}
.t_c00436:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00436 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 */
}
.__c00436 { /* 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_c00436 { /* info for Javascript */
  display:none;
}
.l_c00436 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00436 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00436 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00436: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_c00436 {
    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_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00436.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_c00436 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00436;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.000000;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;}
.mdb_c00436{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00436{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.me2_c00436{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mda_c00436{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me1_c00436{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00436{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00436{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m79_c00436{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.meb_c00436{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m5_c00436{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00436{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00436{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m18_c00436{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00436{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00436{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00436{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mad_c00436{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m16_c00436{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mce_c00436{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00436{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00436{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m30_c00436{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.mff_c00436{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md7_c00436{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00436{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00436{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9_c00436{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00436{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m22_c00436{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m77_c00436{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m67_c00436{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m84_c00436{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.maa_c00436{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00436{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00436{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m4_c00436{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m34_c00436{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m59_c00436{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m88_c00436{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00436{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m8_c00436{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00436{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m31_c00436{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m44_c00436{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00436{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00436{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m72_c00436{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m68_c00436{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00436{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00436{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00436{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m113_c00436{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m21_c00436{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m108_c00436{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m51_c00436{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00436{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m25_c00436{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00436{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m98_c00436{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00436{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00436{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00436{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m55_c00436{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00436{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00436{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6_c00436{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m23_c00436{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m61_c00436{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m85_c00436{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m109_c00436{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m102_c00436{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m70_c00436{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00436{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m36_c00436{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m20_c00436{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.md_c00436{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.me4_c00436{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00436{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m33_c00436{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00436{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m45_c00436{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00436{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m104_c00436{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00436{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m43_c00436{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m106_c00436{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m75_c00436{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m115_c00436{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m54_c00436{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m3_c00436{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m74_c00436{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m15_c00436{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m56_c00436{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc_c00436{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00436{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m82_c00436{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00436{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m32_c00436{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m53_c00436{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m94_c00436{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m58_c00436{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00436{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m52_c00436{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00436{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m117_c00436{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00436{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m65_c00436{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00436{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m87_c00436{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00436{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00436{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00436{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m60_c00436{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00436{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00436{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00436{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00436{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m81_c00436{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m71_c00436{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00436{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m93_c00436{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00436{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m100_c00436{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00436{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me5_c00436{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00436{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mae_c00436{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m80_c00436{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00436{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m78_c00436{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mec_c00436{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00436{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00436{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mde_c00436{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m89_c00436{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m91_c00436{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md6_c00436{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m24_c00436{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m57_c00436{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m69_c00436{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m83_c00436{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m112_c00436{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00436{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m47_c00436{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m111_c00436{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me3_c00436{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m48_c00436{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00436{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00436{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00436{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00436{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m62_c00436{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m50_c00436{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m40_c00436{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00436{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00436{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m49_c00436{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m64_c00436{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00436{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md3_c00436{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m27_c00436{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00436{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00436{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m92_c00436{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00436{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00436{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00436{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m12_c00436{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m26_c00436{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00436{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m42_c00436{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mac_c00436{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00436{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00436{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00436{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00436{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00436{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m29_c00436{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00436{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.me_c00436{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m99_c00436{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m66_c00436{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00436{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m37_c00436{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00436{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m105_c00436{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m95_c00436{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00436{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00436{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.maf_c00436{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00436{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00436{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m17_c00436{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00436{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mef_c00436{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.me0_c00436{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00436{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md9_c00436{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m101_c00436{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md4_c00436{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00436{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00436{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m110_c00436{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m90_c00436{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md8_c00436{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m73_c00436{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00436{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m35_c00436{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mab_c00436{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md2_c00436{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m86_c00436{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m13_c00436{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00436{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00436{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m11_c00436{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00436{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m76_c00436{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00436{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00436{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mea_c00436{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00436{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m39_c00436{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m46_c00436{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00436{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.med_c00436{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m96_c00436{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00436{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00436{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m28_c00436{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m114_c00436{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m63_c00436{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00436{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00436{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2_c00436{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);}
.md0_c00436{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00436{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mca_c00436{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mf_c00436{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mee_c00436{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m116_c00436{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m107_c00436{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m19_c00436{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00436{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00436{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m97_c00436{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00436{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00436{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00436{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00436{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00436{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.md5_c00436{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00436{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00436{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00436{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00436{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m103_c00436{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c00436{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00436{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00436{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00436{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mba_c00436{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00436{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00436{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00436{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m118_c00436{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m1_c00436{transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);}
.mb_c00436{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00436{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00436{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.me6_c00436{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m41_c00436{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.me7_c00436{transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00436{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.me8_c00436{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00436{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m0_c00436{transform:matrix(0.440750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440750,0.000000,0.000000,0.250000,0,0);}
.me9_c00436{transform:matrix(0.463500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463500,0.000000,0.000000,0.250000,0,0);}
.m38_c00436{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.ma_c00436{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.md1_c00436{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m14_c00436{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls0_c00436{letter-spacing:0.000000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{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__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00436{word-spacing:-9.743590px;}
.ws2_c00436{word-spacing:-7.951965px;}
.wse_c00436{word-spacing:-3.428571px;}
.ws10_c00436{word-spacing:0.000000px;}
.wsf_c00436{word-spacing:3.012048px;}
.wsa_c00436{word-spacing:10.637002px;}
.wsc_c00436{word-spacing:22.142857px;}
.wsb_c00436{word-spacing:22.812500px;}
.ws8_c00436{word-spacing:23.211796px;}
.ws9_c00436{word-spacing:32.250000px;}
.ws5_c00436{word-spacing:36.000000px;}
.ws3_c00436{word-spacing:44.078947px;}
.wsd_c00436{word-spacing:55.090909px;}
.ws4_c00436{word-spacing:58.750000px;}
.ws0_c00436{word-spacing:61.250000px;}
.ws6_c00436{word-spacing:65.590909px;}
.ws1_c00436{word-spacing:66.315789px;}
._1_c00436{width:55.714286px;}
._2_c00436{width:59.285714px;}
._0_c00436{width:64.642857px;}
._3_c00436{width:83.777882px;}
.fc0_c00436{color:transparent;}
.fs8_c00436{font-size:30.000000px;}
.fs7_c00436{font-size:36.000000px;}
.fs6_c00436{font-size:48.000000px;}
.fs5_c00436{font-size:54.000000px;}
.fs4_c00436{font-size:60.000000px;}
.fs3_c00436{font-size:66.000000px;}
.fs2_c00436{font-size:72.000000px;}
.fs1_c00436{font-size:78.000000px;}
.fs0_c00436{font-size:84.000000px;}
.y0_c00436{bottom:0.000000px;}
.y71_c00436{bottom:182.550000px;}
.y35_c00436{bottom:199.050000px;}
.y70_c00436{bottom:200.550000px;}
.y34_c00436{bottom:213.150000px;}
.y6f_c00436{bottom:218.550000px;}
.y33_c00436{bottom:227.100000px;}
.y6e_c00436{bottom:236.550000px;}
.y32_c00436{bottom:241.500000px;}
.y6d_c00436{bottom:254.550000px;}
.y31_c00436{bottom:257.400000px;}
.y6c_c00436{bottom:272.550000px;}
.y30_c00436{bottom:276.000000px;}
.y6b_c00436{bottom:290.550000px;}
.y2f_c00436{bottom:293.700000px;}
.y6a_c00436{bottom:308.250000px;}
.y2e_c00436{bottom:311.400000px;}
.y69_c00436{bottom:326.250000px;}
.y2d_c00436{bottom:333.750000px;}
.y68_c00436{bottom:344.250000px;}
.y2c_c00436{bottom:352.050000px;}
.y67_c00436{bottom:361.950000px;}
.y2b_c00436{bottom:369.750000px;}
.y66_c00436{bottom:379.950000px;}
.y2a_c00436{bottom:387.450000px;}
.y65_c00436{bottom:397.650000px;}
.y29_c00436{bottom:405.750000px;}
.y64_c00436{bottom:415.350000px;}
.y28_c00436{bottom:423.000000px;}
.y63_c00436{bottom:433.050000px;}
.y27_c00436{bottom:444.900000px;}
.y62_c00436{bottom:452.550000px;}
.y61_c00436{bottom:468.450000px;}
.y26_c00436{bottom:475.650000px;}
.y60_c00436{bottom:486.450000px;}
.y25_c00436{bottom:493.950000px;}
.y5f_c00436{bottom:504.450000px;}
.y24_c00436{bottom:511.500000px;}
.y5e_c00436{bottom:522.450000px;}
.y23_c00436{bottom:532.500000px;}
.y5d_c00436{bottom:540.450000px;}
.y22_c00436{bottom:551.550000px;}
.y5c_c00436{bottom:558.450000px;}
.y21_c00436{bottom:569.550000px;}
.y5b_c00436{bottom:576.150000px;}
.y20_c00436{bottom:587.250000px;}
.y5a_c00436{bottom:594.150000px;}
.y1f_c00436{bottom:605.250000px;}
.y59_c00436{bottom:611.850000px;}
.y1e_c00436{bottom:622.950000px;}
.y58_c00436{bottom:629.850000px;}
.y1d_c00436{bottom:640.650000px;}
.y57_c00436{bottom:647.550000px;}
.y1c_c00436{bottom:658.350000px;}
.y56_c00436{bottom:665.550000px;}
.y1b_c00436{bottom:676.050000px;}
.y55_c00436{bottom:683.250000px;}
.y1a_c00436{bottom:693.750000px;}
.y54_c00436{bottom:701.250000px;}
.y19_c00436{bottom:715.650000px;}
.y53_c00436{bottom:719.250000px;}
.y18_c00436{bottom:733.650000px;}
.y52_c00436{bottom:739.800000px;}
.y17_c00436{bottom:751.650000px;}
.y51_c00436{bottom:753.450000px;}
.y50_c00436{bottom:768.150000px;}
.y16_c00436{bottom:769.350000px;}
.y4f_c00436{bottom:782.250000px;}
.y15_c00436{bottom:787.350000px;}
.y4e_c00436{bottom:796.650000px;}
.y14_c00436{bottom:805.050000px;}
.y4d_c00436{bottom:811.800000px;}
.y13_c00436{bottom:822.750000px;}
.y4c_c00436{bottom:825.150000px;}
.y4b_c00436{bottom:839.100000px;}
.y12_c00436{bottom:840.750000px;}
.y4a_c00436{bottom:854.550000px;}
.y11_c00436{bottom:858.450000px;}
.y49_c00436{bottom:868.950000px;}
.y10_c00436{bottom:876.450000px;}
.y48_c00436{bottom:882.300000px;}
.yf_c00436{bottom:894.450000px;}
.y47_c00436{bottom:896.700000px;}
.y46_c00436{bottom:911.250000px;}
.ye_c00436{bottom:912.150000px;}
.y45_c00436{bottom:924.150000px;}
.yd_c00436{bottom:929.850000px;}
.y43_c00436{bottom:939.600000px;}
.yc_c00436{bottom:949.350000px;}
.y42_c00436{bottom:953.250000px;}
.y44_c00436{bottom:954.000000px;}
.yb_c00436{bottom:966.300000px;}
.y41_c00436{bottom:968.400000px;}
.ya_c00436{bottom:980.400000px;}
.y40_c00436{bottom:982.950000px;}
.y9_c00436{bottom:993.300000px;}
.y3f_c00436{bottom:997.050000px;}
.y8_c00436{bottom:1010.550000px;}
.y3e_c00436{bottom:1013.250000px;}
.y7_c00436{bottom:1026.750000px;}
.y3d_c00436{bottom:1026.900000px;}
.y3c_c00436{bottom:1039.800000px;}
.y6_c00436{bottom:1044.750000px;}
.y3b_c00436{bottom:1054.500000px;}
.y5_c00436{bottom:1064.550000px;}
.y3a_c00436{bottom:1068.900000px;}
.y39_c00436{bottom:1084.050000px;}
.y4_c00436{bottom:1084.650000px;}
.y38_c00436{bottom:1098.450000px;}
.y3_c00436{bottom:1102.350000px;}
.y37_c00436{bottom:1112.850000px;}
.y2_c00436{bottom:1120.350000px;}
.y36_c00436{bottom:1125.750000px;}
.y1_c00436{bottom:1148.400000px;}
.ha_c00436{height:30.000000px;}
.h9_c00436{height:36.000000px;}
.h8_c00436{height:48.000000px;}
.h7_c00436{height:54.000000px;}
.h6_c00436{height:60.000000px;}
.h5_c00436{height:66.000000px;}
.h4_c00436{height:72.000000px;}
.h3_c00436{height:78.000000px;}
.h2_c00436{height:84.000000px;}
.h0_c00436{height:1269.720063px;}
.h1_c00436{height:1269.750000px;}
.w0_c00436{width:958.320007px;}
.w1_c00436{width:958.500000px;}
.x0_c00436{left:0.000000px;}
.x1b_c00436{left:88.950000px;}
.x28_c00436{left:90.000000px;}
.x39_c00436{left:91.050000px;}
.x6c_c00436{left:92.100000px;}
.x2d_c00436{left:104.850000px;}
.x9d_c00436{left:107.250000px;}
.x3_c00436{left:108.300000px;}
.x14_c00436{left:109.350000px;}
.xf_c00436{left:111.150000px;}
.x8d_c00436{left:115.950000px;}
.x35_c00436{left:119.850000px;}
.x36_c00436{left:120.900000px;}
.x97_c00436{left:122.400000px;}
.x2e_c00436{left:125.700000px;}
.x68_c00436{left:127.050000px;}
.x52_c00436{left:128.100000px;}
.x8e_c00436{left:129.300000px;}
.x76_c00436{left:130.950000px;}
.x5f_c00436{left:132.600000px;}
.x1a_c00436{left:134.550000px;}
.x91_c00436{left:135.900000px;}
.x8b_c00436{left:137.100000px;}
.x1c_c00436{left:138.300000px;}
.x2f_c00436{left:141.150000px;}
.x83_c00436{left:142.200000px;}
.x77_c00436{left:143.250000px;}
.x47_c00436{left:146.850000px;}
.x4e_c00436{left:148.800000px;}
.x4_c00436{left:150.000000px;}
.x41_c00436{left:151.350000px;}
.x59_c00436{left:153.600000px;}
.x21_c00436{left:156.450000px;}
.x85_c00436{left:158.400000px;}
.x95_c00436{left:159.450000px;}
.x78_c00436{left:160.500000px;}
.x70_c00436{left:162.450000px;}
.x75_c00436{left:168.000000px;}
.x81_c00436{left:169.200000px;}
.x37_c00436{left:172.050000px;}
.x10_c00436{left:173.400000px;}
.x5a_c00436{left:174.450000px;}
.x3a_c00436{left:177.150000px;}
.x60_c00436{left:178.350000px;}
.x71_c00436{left:179.700000px;}
.x15_c00436{left:182.100000px;}
.x42_c00436{left:185.250000px;}
.x69_c00436{left:187.050000px;}
.x7d_c00436{left:189.000000px;}
.x5_c00436{left:190.350000px;}
.x16_c00436{left:192.150000px;}
.x8f_c00436{left:194.850000px;}
.x3b_c00436{left:195.900000px;}
.x30_c00436{left:198.150000px;}
.x9a_c00436{left:200.550000px;}
.x22_c00436{left:202.200000px;}
.x65_c00436{left:203.400000px;}
.x48_c00436{left:204.750000px;}
.x1d_c00436{left:206.700000px;}
.x7e_c00436{left:208.800000px;}
.x55_c00436{left:210.900000px;}
.x53_c00436{left:214.050000px;}
.x88_c00436{left:215.550000px;}
.x11_c00436{left:219.150000px;}
.x92_c00436{left:220.500000px;}
.x38_c00436{left:222.750000px;}
.x3c_c00436{left:223.950000px;}
.x5b_c00436{left:225.600000px;}
.x43_c00436{left:228.150000px;}
.x96_c00436{left:229.950000px;}
.x6_c00436{left:231.750000px;}
.x8a_c00436{left:233.400000px;}
.x17_c00436{left:235.050000px;}
.x79_c00436{left:237.450000px;}
.x23_c00436{left:239.250000px;}
.x12_c00436{left:241.050000px;}
.x31_c00436{left:243.450000px;}
.x4f_c00436{left:244.950000px;}
.x7f_c00436{left:246.300000px;}
.x7_c00436{left:248.700000px;}
.x89_c00436{left:250.800000px;}
.x3d_c00436{left:255.600000px;}
.x1e_c00436{left:258.600000px;}
.x72_c00436{left:259.650000px;}
.x66_c00436{left:260.700000px;}
.x82_c00436{left:261.750000px;}
.x5d_c00436{left:262.800000px;}
.x50_c00436{left:264.000000px;}
.x9c_c00436{left:265.350000px;}
.x4b_c00436{left:267.600000px;}
.x73_c00436{left:269.550000px;}
.x29_c00436{left:270.600000px;}
.x9b_c00436{left:271.950000px;}
.x90_c00436{left:274.500000px;}
.x98_c00436{left:275.550000px;}
.x3e_c00436{left:277.200000px;}
.x93_c00436{left:278.400000px;}
.x6a_c00436{left:280.350000px;}
.x8_c00436{left:281.400000px;}
.x2a_c00436{left:284.250000px;}
.x86_c00436{left:287.700000px;}
.x13_c00436{left:290.400000px;}
.x61_c00436{left:291.450000px;}
.x74_c00436{left:292.650000px;}
.x24_c00436{left:295.350000px;}
.x9e_c00436{left:296.550000px;}
.x9_c00436{left:297.900000px;}
.x44_c00436{left:301.950000px;}
.x51_c00436{left:303.600000px;}
.x8c_c00436{left:306.000000px;}
.x32_c00436{left:307.950000px;}
.x56_c00436{left:311.700000px;}
.x18_c00436{left:313.500000px;}
.x49_c00436{left:316.350000px;}
.x1_c00436{left:317.850000px;}
.x25_c00436{left:321.300000px;}
.x99_c00436{left:322.350000px;}
.x1f_c00436{left:324.150000px;}
.x62_c00436{left:325.350000px;}
.x4c_c00436{left:327.750000px;}
.xa_c00436{left:328.800000px;}
.x67_c00436{left:330.450000px;}
.x6b_c00436{left:331.800000px;}
.x87_c00436{left:333.450000px;}
.x19_c00436{left:335.100000px;}
.x6d_c00436{left:336.600000px;}
.xb_c00436{left:343.950000px;}
.x26_c00436{left:345.750000px;}
.x2b_c00436{left:347.250000px;}
.x94_c00436{left:349.200000px;}
.x6e_c00436{left:353.850000px;}
.x7b_c00436{left:355.050000px;}
.x33_c00436{left:356.550000px;}
.xa0_c00436{left:358.200000px;}
.x45_c00436{left:359.250000px;}
.x5e_c00436{left:364.050000px;}
.xc_c00436{left:366.300000px;}
.x3f_c00436{left:367.950000px;}
.x7a_c00436{left:369.600000px;}
.x63_c00436{left:371.100000px;}
.x6f_c00436{left:374.400000px;}
.x57_c00436{left:377.250000px;}
.xd_c00436{left:378.600000px;}
.x46_c00436{left:379.800000px;}
.x5c_c00436{left:381.450000px;}
.x34_c00436{left:384.600000px;}
.x4d_c00436{left:387.150000px;}
.x64_c00436{left:389.850000px;}
.x7c_c00436{left:392.100000px;}
.x27_c00436{left:394.050000px;}
.x4a_c00436{left:396.000000px;}
.x20_c00436{left:398.700000px;}
.x54_c00436{left:399.900000px;}
.x84_c00436{left:404.250000px;}
.x58_c00436{left:406.350000px;}
.x80_c00436{left:408.000000px;}
.xe_c00436{left:411.000000px;}
.x2c_c00436{left:412.350000px;}
.x9f_c00436{left:414.300000px;}
.x40_c00436{left:416.250000px;}
.xf2_c00436{left:449.850000px;}
.xc2_c00436{left:462.300000px;}
.xeb_c00436{left:463.350000px;}
.x131_c00436{left:465.000000px;}
.x116_c00436{left:466.200000px;}
.xf7_c00436{left:467.250000px;}
.xd1_c00436{left:475.950000px;}
.xa4_c00436{left:477.000000px;}
.xdf_c00436{left:478.050000px;}
.x133_c00436{left:481.950000px;}
.xd6_c00436{left:489.600000px;}
.x140_c00436{left:490.950000px;}
.x111_c00436{left:494.400000px;}
.xfd_c00436{left:495.750000px;}
.x129_c00436{left:497.550000px;}
.xaa_c00436{left:498.600000px;}
.xe3_c00436{left:499.650000px;}
.x100_c00436{left:501.450000px;}
.x130_c00436{left:502.950000px;}
.x121_c00436{left:506.850000px;}
.xec_c00436{left:508.050000px;}
.x132_c00436{left:509.250000px;}
.x11c_c00436{left:510.300000px;}
.x107_c00436{left:511.950000px;}
.x101_c00436{left:513.000000px;}
.x135_c00436{left:514.950000px;}
.xab_c00436{left:516.900000px;}
.xdd_c00436{left:519.000000px;}
.xb0_c00436{left:521.850000px;}
.xe4_c00436{left:524.550000px;}
.xcd_c00436{left:525.900000px;}
.xef_c00436{left:527.250000px;}
.xd2_c00436{left:529.950000px;}
.xbd_c00436{left:531.900000px;}
.xf3_c00436{left:533.700000px;}
.x117_c00436{left:535.350000px;}
.xed_c00436{left:536.550000px;}
.xc3_c00436{left:538.650000px;}
.xe7_c00436{left:540.000000px;}
.x102_c00436{left:542.550000px;}
.xcb_c00436{left:546.750000px;}
.x12d_c00436{left:548.550000px;}
.xb1_c00436{left:549.600000px;}
.xe8_c00436{left:551.550000px;}
.x112_c00436{left:553.050000px;}
.x141_c00436{left:555.000000px;}
.xf8_c00436{left:556.200000px;}
.xce_c00436{left:558.450000px;}
.xb7_c00436{left:559.500000px;}
.x108_c00436{left:562.800000px;}
.xb2_c00436{left:566.550000px;}
.xac_c00436{left:568.050000px;}
.xcc_c00436{left:569.850000px;}
.x136_c00436{left:571.050000px;}
.x13a_c00436{left:572.850000px;}
.xcf_c00436{left:573.900000px;}
.x113_c00436{left:576.000000px;}
.xbe_c00436{left:577.200000px;}
.x103_c00436{left:578.850000px;}
.xd7_c00436{left:581.100000px;}
.xc7_c00436{left:583.500000px;}
.x11d_c00436{left:584.550000px;}
.xe0_c00436{left:585.600000px;}
.xd3_c00436{left:586.800000px;}
.xad_c00436{left:588.900000px;}
.x137_c00436{left:590.100000px;}
.x118_c00436{left:592.200000px;}
.x10b_c00436{left:594.000000px;}
.xbf_c00436{left:595.200000px;}
.x12a_c00436{left:596.250000px;}
.xe9_c00436{left:598.050000px;}
.xc4_c00436{left:599.850000px;}
.x124_c00436{left:603.450000px;}
.xae_c00436{left:605.850000px;}
.xf0_c00436{left:606.900000px;}
.x13d_c00436{left:609.150000px;}
.x114_c00436{left:610.200000px;}
.xb3_c00436{left:612.300000px;}
.xd0_c00436{left:615.300000px;}
.xca_c00436{left:617.550000px;}
.xc8_c00436{left:619.800000px;}
.xc0_c00436{left:621.450000px;}
.x10c_c00436{left:622.800000px;}
.x138_c00436{left:624.150000px;}
.xe1_c00436{left:625.200000px;}
.xd4_c00436{left:627.150000px;}
.xd8_c00436{left:628.200000px;}
.x134_c00436{left:630.000000px;}
.xb4_c00436{left:631.800000px;}
.xe5_c00436{left:634.050000px;}
.xd9_c00436{left:635.700000px;}
.x10d_c00436{left:636.900000px;}
.xf4_c00436{left:638.700000px;}
.xfe_c00436{left:640.500000px;}
.xc1_c00436{left:641.550000px;}
.xde_c00436{left:644.250000px;}
.xe2_c00436{left:646.500000px;}
.xda_c00436{left:650.850000px;}
.x115_c00436{left:652.350000px;}
.x10e_c00436{left:654.600000px;}
.xe6_c00436{left:656.400000px;}
.xdb_c00436{left:657.750000px;}
.x13e_c00436{left:659.250000px;}
.xee_c00436{left:660.300000px;}
.xf9_c00436{left:662.850000px;}
.xb8_c00436{left:664.200000px;}
.xdc_c00436{left:665.250000px;}
.x119_c00436{left:666.450000px;}
.xea_c00436{left:668.250000px;}
.xb9_c00436{left:671.100000px;}
.xc9_c00436{left:672.750000px;}
.xb5_c00436{left:674.700000px;}
.x127_c00436{left:676.500000px;}
.x104_c00436{left:677.850000px;}
.xba_c00436{left:679.050000px;}
.xd5_c00436{left:682.200000px;}
.x122_c00436{left:683.550000px;}
.xc5_c00436{left:685.500000px;}
.xbb_c00436{left:686.550000px;}
.x105_c00436{left:688.350000px;}
.x11e_c00436{left:690.000000px;}
.xc6_c00436{left:692.400000px;}
.xbc_c00436{left:693.750000px;}
.x13b_c00436{left:694.950000px;}
.x125_c00436{left:698.250000px;}
.x12b_c00436{left:700.200000px;}
.xfa_c00436{left:701.700000px;}
.xa1_c00436{left:704.850000px;}
.x12e_c00436{left:708.750000px;}
.x126_c00436{left:710.250000px;}
.xa9_c00436{left:712.050000px;}
.xa5_c00436{left:713.100000px;}
.xa8_c00436{left:714.450000px;}
.xaf_c00436{left:715.650000px;}
.x11b_c00436{left:717.750000px;}
.x128_c00436{left:724.050000px;}
.x123_c00436{left:725.250000px;}
.x109_c00436{left:728.100000px;}
.x11f_c00436{left:729.300000px;}
.xff_c00436{left:731.550000px;}
.xfb_c00436{left:733.050000px;}
.xf5_c00436{left:734.400000px;}
.xa2_c00436{left:735.450000px;}
.x139_c00436{left:737.100000px;}
.x10f_c00436{left:738.150000px;}
.x13c_c00436{left:740.700000px;}
.xa6_c00436{left:742.200000px;}
.xb6_c00436{left:743.400000px;}
.x12f_c00436{left:744.750000px;}
.x10a_c00436{left:745.800000px;}
.x11a_c00436{left:748.500000px;}
.x2_c00436{left:751.950000px;}
.xf6_c00436{left:756.300000px;}
.x110_c00436{left:757.950000px;}
.x13f_c00436{left:760.500000px;}
.x12c_c00436{left:763.500000px;}
.xf1_c00436{left:765.900000px;}
.xa3_c00436{left:769.650000px;}
.xa7_c00436{left:771.000000px;}
.xfc_c00436{left:772.650000px;}
.x106_c00436{left:774.750000px;}
.x120_c00436{left:780.450000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws7_c00436{word-spacing:-8.660969pt;}
.ws2_c00436{word-spacing:-7.068413pt;}
.wse_c00436{word-spacing:-3.047619pt;}
.ws10_c00436{word-spacing:0.000000pt;}
.wsf_c00436{word-spacing:2.677376pt;}
.wsa_c00436{word-spacing:9.455113pt;}
.wsc_c00436{word-spacing:19.682540pt;}
.wsb_c00436{word-spacing:20.277778pt;}
.ws8_c00436{word-spacing:20.632708pt;}
.ws9_c00436{word-spacing:28.666667pt;}
.ws5_c00436{word-spacing:32.000000pt;}
.ws3_c00436{word-spacing:39.181287pt;}
.wsd_c00436{word-spacing:48.969697pt;}
.ws4_c00436{word-spacing:52.222222pt;}
.ws0_c00436{word-spacing:54.444444pt;}
.ws6_c00436{word-spacing:58.303030pt;}
.ws1_c00436{word-spacing:58.947368pt;}
._1_c00436{width:49.523810pt;}
._2_c00436{width:52.698413pt;}
._0_c00436{width:57.460317pt;}
._3_c00436{width:74.469228pt;}
.fs8_c00436{font-size:26.666667pt;}
.fs7_c00436{font-size:32.000000pt;}
.fs6_c00436{font-size:42.666667pt;}
.fs5_c00436{font-size:48.000000pt;}
.fs4_c00436{font-size:53.333333pt;}
.fs3_c00436{font-size:58.666667pt;}
.fs2_c00436{font-size:64.000000pt;}
.fs1_c00436{font-size:69.333333pt;}
.fs0_c00436{font-size:74.666667pt;}
.y0_c00436{bottom:0.000000pt;}
.y71_c00436{bottom:162.266667pt;}
.y35_c00436{bottom:176.933333pt;}
.y70_c00436{bottom:178.266667pt;}
.y34_c00436{bottom:189.466667pt;}
.y6f_c00436{bottom:194.266667pt;}
.y33_c00436{bottom:201.866667pt;}
.y6e_c00436{bottom:210.266667pt;}
.y32_c00436{bottom:214.666667pt;}
.y6d_c00436{bottom:226.266667pt;}
.y31_c00436{bottom:228.800000pt;}
.y6c_c00436{bottom:242.266667pt;}
.y30_c00436{bottom:245.333333pt;}
.y6b_c00436{bottom:258.266667pt;}
.y2f_c00436{bottom:261.066667pt;}
.y6a_c00436{bottom:274.000000pt;}
.y2e_c00436{bottom:276.800000pt;}
.y69_c00436{bottom:290.000000pt;}
.y2d_c00436{bottom:296.666667pt;}
.y68_c00436{bottom:306.000000pt;}
.y2c_c00436{bottom:312.933333pt;}
.y67_c00436{bottom:321.733333pt;}
.y2b_c00436{bottom:328.666667pt;}
.y66_c00436{bottom:337.733333pt;}
.y2a_c00436{bottom:344.400000pt;}
.y65_c00436{bottom:353.466667pt;}
.y29_c00436{bottom:360.666667pt;}
.y64_c00436{bottom:369.200000pt;}
.y28_c00436{bottom:376.000000pt;}
.y63_c00436{bottom:384.933333pt;}
.y27_c00436{bottom:395.466667pt;}
.y62_c00436{bottom:402.266667pt;}
.y61_c00436{bottom:416.400000pt;}
.y26_c00436{bottom:422.800000pt;}
.y60_c00436{bottom:432.400000pt;}
.y25_c00436{bottom:439.066667pt;}
.y5f_c00436{bottom:448.400000pt;}
.y24_c00436{bottom:454.666667pt;}
.y5e_c00436{bottom:464.400000pt;}
.y23_c00436{bottom:473.333333pt;}
.y5d_c00436{bottom:480.400000pt;}
.y22_c00436{bottom:490.266667pt;}
.y5c_c00436{bottom:496.400000pt;}
.y21_c00436{bottom:506.266667pt;}
.y5b_c00436{bottom:512.133333pt;}
.y20_c00436{bottom:522.000000pt;}
.y5a_c00436{bottom:528.133333pt;}
.y1f_c00436{bottom:538.000000pt;}
.y59_c00436{bottom:543.866667pt;}
.y1e_c00436{bottom:553.733333pt;}
.y58_c00436{bottom:559.866667pt;}
.y1d_c00436{bottom:569.466667pt;}
.y57_c00436{bottom:575.600000pt;}
.y1c_c00436{bottom:585.200000pt;}
.y56_c00436{bottom:591.600000pt;}
.y1b_c00436{bottom:600.933333pt;}
.y55_c00436{bottom:607.333333pt;}
.y1a_c00436{bottom:616.666667pt;}
.y54_c00436{bottom:623.333333pt;}
.y19_c00436{bottom:636.133333pt;}
.y53_c00436{bottom:639.333333pt;}
.y18_c00436{bottom:652.133333pt;}
.y52_c00436{bottom:657.600000pt;}
.y17_c00436{bottom:668.133333pt;}
.y51_c00436{bottom:669.733333pt;}
.y50_c00436{bottom:682.800000pt;}
.y16_c00436{bottom:683.866667pt;}
.y4f_c00436{bottom:695.333333pt;}
.y15_c00436{bottom:699.866667pt;}
.y4e_c00436{bottom:708.133333pt;}
.y14_c00436{bottom:715.600000pt;}
.y4d_c00436{bottom:721.600000pt;}
.y13_c00436{bottom:731.333333pt;}
.y4c_c00436{bottom:733.466667pt;}
.y4b_c00436{bottom:745.866667pt;}
.y12_c00436{bottom:747.333333pt;}
.y4a_c00436{bottom:759.600000pt;}
.y11_c00436{bottom:763.066667pt;}
.y49_c00436{bottom:772.400000pt;}
.y10_c00436{bottom:779.066667pt;}
.y48_c00436{bottom:784.266667pt;}
.yf_c00436{bottom:795.066667pt;}
.y47_c00436{bottom:797.066667pt;}
.y46_c00436{bottom:810.000000pt;}
.ye_c00436{bottom:810.800000pt;}
.y45_c00436{bottom:821.466667pt;}
.yd_c00436{bottom:826.533333pt;}
.y43_c00436{bottom:835.200000pt;}
.yc_c00436{bottom:843.866667pt;}
.y42_c00436{bottom:847.333333pt;}
.y44_c00436{bottom:848.000000pt;}
.yb_c00436{bottom:858.933333pt;}
.y41_c00436{bottom:860.800000pt;}
.ya_c00436{bottom:871.466667pt;}
.y40_c00436{bottom:873.733333pt;}
.y9_c00436{bottom:882.933333pt;}
.y3f_c00436{bottom:886.266667pt;}
.y8_c00436{bottom:898.266667pt;}
.y3e_c00436{bottom:900.666667pt;}
.y7_c00436{bottom:912.666667pt;}
.y3d_c00436{bottom:912.800000pt;}
.y3c_c00436{bottom:924.266667pt;}
.y6_c00436{bottom:928.666667pt;}
.y3b_c00436{bottom:937.333333pt;}
.y5_c00436{bottom:946.266667pt;}
.y3a_c00436{bottom:950.133333pt;}
.y39_c00436{bottom:963.600000pt;}
.y4_c00436{bottom:964.133333pt;}
.y38_c00436{bottom:976.400000pt;}
.y3_c00436{bottom:979.866667pt;}
.y37_c00436{bottom:989.200000pt;}
.y2_c00436{bottom:995.866667pt;}
.y36_c00436{bottom:1000.666667pt;}
.y1_c00436{bottom:1020.800000pt;}
.ha_c00436{height:26.666667pt;}
.h9_c00436{height:32.000000pt;}
.h8_c00436{height:42.666667pt;}
.h7_c00436{height:48.000000pt;}
.h6_c00436{height:53.333333pt;}
.h5_c00436{height:58.666667pt;}
.h4_c00436{height:64.000000pt;}
.h3_c00436{height:69.333333pt;}
.h2_c00436{height:74.666667pt;}
.h0_c00436{height:1128.640056pt;}
.h1_c00436{height:1128.666667pt;}
.w0_c00436{width:851.840007pt;}
.w1_c00436{width:852.000000pt;}
.x0_c00436{left:0.000000pt;}
.x1b_c00436{left:79.066667pt;}
.x28_c00436{left:80.000000pt;}
.x39_c00436{left:80.933333pt;}
.x6c_c00436{left:81.866667pt;}
.x2d_c00436{left:93.200000pt;}
.x9d_c00436{left:95.333333pt;}
.x3_c00436{left:96.266667pt;}
.x14_c00436{left:97.200000pt;}
.xf_c00436{left:98.800000pt;}
.x8d_c00436{left:103.066667pt;}
.x35_c00436{left:106.533333pt;}
.x36_c00436{left:107.466667pt;}
.x97_c00436{left:108.800000pt;}
.x2e_c00436{left:111.733333pt;}
.x68_c00436{left:112.933333pt;}
.x52_c00436{left:113.866667pt;}
.x8e_c00436{left:114.933333pt;}
.x76_c00436{left:116.400000pt;}
.x5f_c00436{left:117.866667pt;}
.x1a_c00436{left:119.600000pt;}
.x91_c00436{left:120.800000pt;}
.x8b_c00436{left:121.866667pt;}
.x1c_c00436{left:122.933333pt;}
.x2f_c00436{left:125.466667pt;}
.x83_c00436{left:126.400000pt;}
.x77_c00436{left:127.333333pt;}
.x47_c00436{left:130.533333pt;}
.x4e_c00436{left:132.266667pt;}
.x4_c00436{left:133.333333pt;}
.x41_c00436{left:134.533333pt;}
.x59_c00436{left:136.533333pt;}
.x21_c00436{left:139.066667pt;}
.x85_c00436{left:140.800000pt;}
.x95_c00436{left:141.733333pt;}
.x78_c00436{left:142.666667pt;}
.x70_c00436{left:144.400000pt;}
.x75_c00436{left:149.333333pt;}
.x81_c00436{left:150.400000pt;}
.x37_c00436{left:152.933333pt;}
.x10_c00436{left:154.133333pt;}
.x5a_c00436{left:155.066667pt;}
.x3a_c00436{left:157.466667pt;}
.x60_c00436{left:158.533333pt;}
.x71_c00436{left:159.733333pt;}
.x15_c00436{left:161.866667pt;}
.x42_c00436{left:164.666667pt;}
.x69_c00436{left:166.266667pt;}
.x7d_c00436{left:168.000000pt;}
.x5_c00436{left:169.200000pt;}
.x16_c00436{left:170.800000pt;}
.x8f_c00436{left:173.200000pt;}
.x3b_c00436{left:174.133333pt;}
.x30_c00436{left:176.133333pt;}
.x9a_c00436{left:178.266667pt;}
.x22_c00436{left:179.733333pt;}
.x65_c00436{left:180.800000pt;}
.x48_c00436{left:182.000000pt;}
.x1d_c00436{left:183.733333pt;}
.x7e_c00436{left:185.600000pt;}
.x55_c00436{left:187.466667pt;}
.x53_c00436{left:190.266667pt;}
.x88_c00436{left:191.600000pt;}
.x11_c00436{left:194.800000pt;}
.x92_c00436{left:196.000000pt;}
.x38_c00436{left:198.000000pt;}
.x3c_c00436{left:199.066667pt;}
.x5b_c00436{left:200.533333pt;}
.x43_c00436{left:202.800000pt;}
.x96_c00436{left:204.400000pt;}
.x6_c00436{left:206.000000pt;}
.x8a_c00436{left:207.466667pt;}
.x17_c00436{left:208.933333pt;}
.x79_c00436{left:211.066667pt;}
.x23_c00436{left:212.666667pt;}
.x12_c00436{left:214.266667pt;}
.x31_c00436{left:216.400000pt;}
.x4f_c00436{left:217.733333pt;}
.x7f_c00436{left:218.933333pt;}
.x7_c00436{left:221.066667pt;}
.x89_c00436{left:222.933333pt;}
.x3d_c00436{left:227.200000pt;}
.x1e_c00436{left:229.866667pt;}
.x72_c00436{left:230.800000pt;}
.x66_c00436{left:231.733333pt;}
.x82_c00436{left:232.666667pt;}
.x5d_c00436{left:233.600000pt;}
.x50_c00436{left:234.666667pt;}
.x9c_c00436{left:235.866667pt;}
.x4b_c00436{left:237.866667pt;}
.x73_c00436{left:239.600000pt;}
.x29_c00436{left:240.533333pt;}
.x9b_c00436{left:241.733333pt;}
.x90_c00436{left:244.000000pt;}
.x98_c00436{left:244.933333pt;}
.x3e_c00436{left:246.400000pt;}
.x93_c00436{left:247.466667pt;}
.x6a_c00436{left:249.200000pt;}
.x8_c00436{left:250.133333pt;}
.x2a_c00436{left:252.666667pt;}
.x86_c00436{left:255.733333pt;}
.x13_c00436{left:258.133333pt;}
.x61_c00436{left:259.066667pt;}
.x74_c00436{left:260.133333pt;}
.x24_c00436{left:262.533333pt;}
.x9e_c00436{left:263.600000pt;}
.x9_c00436{left:264.800000pt;}
.x44_c00436{left:268.400000pt;}
.x51_c00436{left:269.866667pt;}
.x8c_c00436{left:272.000000pt;}
.x32_c00436{left:273.733333pt;}
.x56_c00436{left:277.066667pt;}
.x18_c00436{left:278.666667pt;}
.x49_c00436{left:281.200000pt;}
.x1_c00436{left:282.533333pt;}
.x25_c00436{left:285.600000pt;}
.x99_c00436{left:286.533333pt;}
.x1f_c00436{left:288.133333pt;}
.x62_c00436{left:289.200000pt;}
.x4c_c00436{left:291.333333pt;}
.xa_c00436{left:292.266667pt;}
.x67_c00436{left:293.733333pt;}
.x6b_c00436{left:294.933333pt;}
.x87_c00436{left:296.400000pt;}
.x19_c00436{left:297.866667pt;}
.x6d_c00436{left:299.200000pt;}
.xb_c00436{left:305.733333pt;}
.x26_c00436{left:307.333333pt;}
.x2b_c00436{left:308.666667pt;}
.x94_c00436{left:310.400000pt;}
.x6e_c00436{left:314.533333pt;}
.x7b_c00436{left:315.600000pt;}
.x33_c00436{left:316.933333pt;}
.xa0_c00436{left:318.400000pt;}
.x45_c00436{left:319.333333pt;}
.x5e_c00436{left:323.600000pt;}
.xc_c00436{left:325.600000pt;}
.x3f_c00436{left:327.066667pt;}
.x7a_c00436{left:328.533333pt;}
.x63_c00436{left:329.866667pt;}
.x6f_c00436{left:332.800000pt;}
.x57_c00436{left:335.333333pt;}
.xd_c00436{left:336.533333pt;}
.x46_c00436{left:337.600000pt;}
.x5c_c00436{left:339.066667pt;}
.x34_c00436{left:341.866667pt;}
.x4d_c00436{left:344.133333pt;}
.x64_c00436{left:346.533333pt;}
.x7c_c00436{left:348.533333pt;}
.x27_c00436{left:350.266667pt;}
.x4a_c00436{left:352.000000pt;}
.x20_c00436{left:354.400000pt;}
.x54_c00436{left:355.466667pt;}
.x84_c00436{left:359.333333pt;}
.x58_c00436{left:361.200000pt;}
.x80_c00436{left:362.666667pt;}
.xe_c00436{left:365.333333pt;}
.x2c_c00436{left:366.533333pt;}
.x9f_c00436{left:368.266667pt;}
.x40_c00436{left:370.000000pt;}
.xf2_c00436{left:399.866667pt;}
.xc2_c00436{left:410.933333pt;}
.xeb_c00436{left:411.866667pt;}
.x131_c00436{left:413.333333pt;}
.x116_c00436{left:414.400000pt;}
.xf7_c00436{left:415.333333pt;}
.xd1_c00436{left:423.066667pt;}
.xa4_c00436{left:424.000000pt;}
.xdf_c00436{left:424.933333pt;}
.x133_c00436{left:428.400000pt;}
.xd6_c00436{left:435.200000pt;}
.x140_c00436{left:436.400000pt;}
.x111_c00436{left:439.466667pt;}
.xfd_c00436{left:440.666667pt;}
.x129_c00436{left:442.266667pt;}
.xaa_c00436{left:443.200000pt;}
.xe3_c00436{left:444.133333pt;}
.x100_c00436{left:445.733333pt;}
.x130_c00436{left:447.066667pt;}
.x121_c00436{left:450.533333pt;}
.xec_c00436{left:451.600000pt;}
.x132_c00436{left:452.666667pt;}
.x11c_c00436{left:453.600000pt;}
.x107_c00436{left:455.066667pt;}
.x101_c00436{left:456.000000pt;}
.x135_c00436{left:457.733333pt;}
.xab_c00436{left:459.466667pt;}
.xdd_c00436{left:461.333333pt;}
.xb0_c00436{left:463.866667pt;}
.xe4_c00436{left:466.266667pt;}
.xcd_c00436{left:467.466667pt;}
.xef_c00436{left:468.666667pt;}
.xd2_c00436{left:471.066667pt;}
.xbd_c00436{left:472.800000pt;}
.xf3_c00436{left:474.400000pt;}
.x117_c00436{left:475.866667pt;}
.xed_c00436{left:476.933333pt;}
.xc3_c00436{left:478.800000pt;}
.xe7_c00436{left:480.000000pt;}
.x102_c00436{left:482.266667pt;}
.xcb_c00436{left:486.000000pt;}
.x12d_c00436{left:487.600000pt;}
.xb1_c00436{left:488.533333pt;}
.xe8_c00436{left:490.266667pt;}
.x112_c00436{left:491.600000pt;}
.x141_c00436{left:493.333333pt;}
.xf8_c00436{left:494.400000pt;}
.xce_c00436{left:496.400000pt;}
.xb7_c00436{left:497.333333pt;}
.x108_c00436{left:500.266667pt;}
.xb2_c00436{left:503.600000pt;}
.xac_c00436{left:504.933333pt;}
.xcc_c00436{left:506.533333pt;}
.x136_c00436{left:507.600000pt;}
.x13a_c00436{left:509.200000pt;}
.xcf_c00436{left:510.133333pt;}
.x113_c00436{left:512.000000pt;}
.xbe_c00436{left:513.066667pt;}
.x103_c00436{left:514.533333pt;}
.xd7_c00436{left:516.533333pt;}
.xc7_c00436{left:518.666667pt;}
.x11d_c00436{left:519.600000pt;}
.xe0_c00436{left:520.533333pt;}
.xd3_c00436{left:521.600000pt;}
.xad_c00436{left:523.466667pt;}
.x137_c00436{left:524.533333pt;}
.x118_c00436{left:526.400000pt;}
.x10b_c00436{left:528.000000pt;}
.xbf_c00436{left:529.066667pt;}
.x12a_c00436{left:530.000000pt;}
.xe9_c00436{left:531.600000pt;}
.xc4_c00436{left:533.200000pt;}
.x124_c00436{left:536.400000pt;}
.xae_c00436{left:538.533333pt;}
.xf0_c00436{left:539.466667pt;}
.x13d_c00436{left:541.466667pt;}
.x114_c00436{left:542.400000pt;}
.xb3_c00436{left:544.266667pt;}
.xd0_c00436{left:546.933333pt;}
.xca_c00436{left:548.933333pt;}
.xc8_c00436{left:550.933333pt;}
.xc0_c00436{left:552.400000pt;}
.x10c_c00436{left:553.600000pt;}
.x138_c00436{left:554.800000pt;}
.xe1_c00436{left:555.733333pt;}
.xd4_c00436{left:557.466667pt;}
.xd8_c00436{left:558.400000pt;}
.x134_c00436{left:560.000000pt;}
.xb4_c00436{left:561.600000pt;}
.xe5_c00436{left:563.600000pt;}
.xd9_c00436{left:565.066667pt;}
.x10d_c00436{left:566.133333pt;}
.xf4_c00436{left:567.733333pt;}
.xfe_c00436{left:569.333333pt;}
.xc1_c00436{left:570.266667pt;}
.xde_c00436{left:572.666667pt;}
.xe2_c00436{left:574.666667pt;}
.xda_c00436{left:578.533333pt;}
.x115_c00436{left:579.866667pt;}
.x10e_c00436{left:581.866667pt;}
.xe6_c00436{left:583.466667pt;}
.xdb_c00436{left:584.666667pt;}
.x13e_c00436{left:586.000000pt;}
.xee_c00436{left:586.933333pt;}
.xf9_c00436{left:589.200000pt;}
.xb8_c00436{left:590.400000pt;}
.xdc_c00436{left:591.333333pt;}
.x119_c00436{left:592.400000pt;}
.xea_c00436{left:594.000000pt;}
.xb9_c00436{left:596.533333pt;}
.xc9_c00436{left:598.000000pt;}
.xb5_c00436{left:599.733333pt;}
.x127_c00436{left:601.333333pt;}
.x104_c00436{left:602.533333pt;}
.xba_c00436{left:603.600000pt;}
.xd5_c00436{left:606.400000pt;}
.x122_c00436{left:607.600000pt;}
.xc5_c00436{left:609.333333pt;}
.xbb_c00436{left:610.266667pt;}
.x105_c00436{left:611.866667pt;}
.x11e_c00436{left:613.333333pt;}
.xc6_c00436{left:615.466667pt;}
.xbc_c00436{left:616.666667pt;}
.x13b_c00436{left:617.733333pt;}
.x125_c00436{left:620.666667pt;}
.x12b_c00436{left:622.400000pt;}
.xfa_c00436{left:623.733333pt;}
.xa1_c00436{left:626.533333pt;}
.x12e_c00436{left:630.000000pt;}
.x126_c00436{left:631.333333pt;}
.xa9_c00436{left:632.933333pt;}
.xa5_c00436{left:633.866667pt;}
.xa8_c00436{left:635.066667pt;}
.xaf_c00436{left:636.133333pt;}
.x11b_c00436{left:638.000000pt;}
.x128_c00436{left:643.600000pt;}
.x123_c00436{left:644.666667pt;}
.x109_c00436{left:647.200000pt;}
.x11f_c00436{left:648.266667pt;}
.xff_c00436{left:650.266667pt;}
.xfb_c00436{left:651.600000pt;}
.xf5_c00436{left:652.800000pt;}
.xa2_c00436{left:653.733333pt;}
.x139_c00436{left:655.200000pt;}
.x10f_c00436{left:656.133333pt;}
.x13c_c00436{left:658.400000pt;}
.xa6_c00436{left:659.733333pt;}
.xb6_c00436{left:660.800000pt;}
.x12f_c00436{left:662.000000pt;}
.x10a_c00436{left:662.933333pt;}
.x11a_c00436{left:665.333333pt;}
.x2_c00436{left:668.400000pt;}
.xf6_c00436{left:672.266667pt;}
.x110_c00436{left:673.733333pt;}
.x13f_c00436{left:676.000000pt;}
.x12c_c00436{left:678.666667pt;}
.xf1_c00436{left:680.800000pt;}
.xa3_c00436{left:684.133333pt;}
.xa7_c00436{left:685.333333pt;}
.xfc_c00436{left:686.800000pt;}
.x106_c00436{left:688.666667pt;}
.x120_c00436{left:693.733333pt;}
}





/* 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_c00437 {
    display:none;
  }
  .loading-indicator_c00437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00437 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_c00437 { 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_c00437" -> "#page-container .classname_c00437")
 */
.pf_c00437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00437 { /* 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_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00437 { /* 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_c00437 { /* 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_c00437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00437 {overflow:visible;}
  }
}
.c_c00437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00437 { /* 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_c00437:after { /* webkit #35443 */
  content: '';
}
.t_c00437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00437 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 */
}
.__c00437 { /* 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_c00437 { /* info for Javascript */
  display:none;
}
.l_c00437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00437: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_c00437 {
    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_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00437.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_c00437 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00437;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.000000;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;}
.mda_c00437{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00437{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00437{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00437{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m77_c00437{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md1_c00437{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m21_c00437{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00437{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m74_c00437{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00437{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00437{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.m73_c00437{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00437{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me2_c00437{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00437{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00437{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m98_c00437{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00437{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m15_c00437{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00437{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m75_c00437{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m96_c00437{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00437{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00437{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m38_c00437{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m33_c00437{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m13_c00437{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mab_c00437{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mba_c00437{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m97_c00437{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00437{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00437{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00437{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00437{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00437{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00437{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m68_c00437{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00437{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf_c00437{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.me6_c00437{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00437{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00437{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m54_c00437{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m51_c00437{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m88_c00437{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mb_c00437{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00437{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md_c00437{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m30_c00437{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00437{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m57_c00437{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00437{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m50_c00437{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10_c00437{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00437{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m80_c00437{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00437{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m56_c00437{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma_c00437{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00437{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m40_c00437{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mec_c00437{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00437{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00437{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m12_c00437{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m23_c00437{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mde_c00437{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m65_c00437{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00437{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m11_c00437{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00437{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00437{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2_c00437{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m41_c00437{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m93_c00437{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m35_c00437{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m14_c00437{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6_c00437{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m46_c00437{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00437{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00437{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00437{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m61_c00437{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m94_c00437{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00437{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m66_c00437{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00437{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m90_c00437{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m52_c00437{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me0_c00437{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00437{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00437{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m32_c00437{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me1_c00437{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00437{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m25_c00437{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8_c00437{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00437{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00437{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9_c00437{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00437{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m31_c00437{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m67_c00437{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00437{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00437{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m22_c00437{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m17_c00437{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00437{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md0_c00437{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m24_c00437{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00437{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00437{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00437{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m60_c00437{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00437{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m49_c00437{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md4_c00437{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m58_c00437{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m19_c00437{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00437{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00437{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00437{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00437{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00437{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00437{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00437{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mca_c00437{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m26_c00437{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5_c00437{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m53_c00437{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00437{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m72_c00437{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00437{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00437{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00437{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m28_c00437{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md8_c00437{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m45_c00437{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m27_c00437{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.meb_c00437{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mea_c00437{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m55_c00437{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7_c00437{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m47_c00437{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m34_c00437{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m18_c00437{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m71_c00437{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00437{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.md2_c00437{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m78_c00437{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m20_c00437{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00437{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00437{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m44_c00437{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00437{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m64_c00437{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m79_c00437{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00437{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00437{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00437{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m36_c00437{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md6_c00437{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.med_c00437{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.me4_c00437{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m76_c00437{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00437{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00437{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00437{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00437{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m42_c00437{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00437{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me8_c00437{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m69_c00437{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00437{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00437{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.maf_c00437{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00437{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00437{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m83_c00437{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m29_c00437{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m84_c00437{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00437{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m89_c00437{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00437{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m39_c00437{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me5_c00437{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00437{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mad_c00437{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m37_c00437{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mce_c00437{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00437{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00437{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m48_c00437{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m95_c00437{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00437{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m87_c00437{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00437{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc_c00437{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00437{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00437{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00437{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00437{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m85_c00437{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m59_c00437{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m16_c00437{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mac_c00437{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m70_c00437{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00437{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00437{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00437{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.maa_c00437{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00437{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00437{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m63_c00437{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00437{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me3_c00437{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m62_c00437{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00437{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00437{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00437{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00437{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00437{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md7_c00437{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md5_c00437{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me7_c00437{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.me9_c00437{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mae_c00437{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00437{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00437{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m82_c00437{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00437{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00437{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00437{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00437{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m86_c00437{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00437{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00437{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.mff_c00437{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m92_c00437{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m81_c00437{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m91_c00437{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00437{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mef_c00437{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00437{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md9_c00437{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00437{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.md3_c00437{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00437{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m43_c00437{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mee_c00437{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m100_c00437{transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00437{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m99_c00437{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls0_c00437{letter-spacing:0.000000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{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__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00437{word-spacing:-6.612457px;}
.ws2_c00437{word-spacing:-3.919771px;}
.ws9_c00437{word-spacing:-3.600724px;}
.wsa_c00437{word-spacing:0.000000px;}
.ws8_c00437{word-spacing:0.189112px;}
.ws3_c00437{word-spacing:0.250000px;}
.ws6_c00437{word-spacing:3.125000px;}
.ws0_c00437{word-spacing:8.410133px;}
.ws7_c00437{word-spacing:15.000000px;}
.ws5_c00437{word-spacing:18.125000px;}
.ws4_c00437{word-spacing:25.714286px;}
._0_c00437{width:52.142857px;}
.fc0_c00437{color:transparent;}
.fs7_c00437{font-size:24.000000px;}
.fs8_c00437{font-size:42.000000px;}
.fs6_c00437{font-size:48.000000px;}
.fs5_c00437{font-size:54.000000px;}
.fs4_c00437{font-size:60.000000px;}
.fs3_c00437{font-size:66.000000px;}
.fs2_c00437{font-size:72.000000px;}
.fs1_c00437{font-size:84.000000px;}
.fs0_c00437{font-size:102.000000px;}
.y0_c00437{bottom:0.000000px;}
.y6d_c00437{bottom:6.450000px;}
.y6c_c00437{bottom:199.800000px;}
.y35_c00437{bottom:207.000000px;}
.y6b_c00437{bottom:217.800000px;}
.y34_c00437{bottom:224.250000px;}
.y6a_c00437{bottom:235.800000px;}
.y33_c00437{bottom:241.950000px;}
.y69_c00437{bottom:254.550000px;}
.y32_c00437{bottom:259.200000px;}
.y68_c00437{bottom:271.500000px;}
.y31_c00437{bottom:283.200000px;}
.y67_c00437{bottom:294.450000px;}
.y30_c00437{bottom:300.900000px;}
.y2f_c00437{bottom:317.700000px;}
.y66_c00437{bottom:325.500000px;}
.y2e_c00437{bottom:335.400000px;}
.y65_c00437{bottom:343.500000px;}
.y2d_c00437{bottom:353.100000px;}
.y64_c00437{bottom:365.850000px;}
.y2c_c00437{bottom:370.800000px;}
.y63_c00437{bottom:384.150000px;}
.y2b_c00437{bottom:399.900000px;}
.y62_c00437{bottom:401.700000px;}
.y2a_c00437{bottom:418.200000px;}
.y61_c00437{bottom:419.700000px;}
.y29_c00437{bottom:435.900000px;}
.y60_c00437{bottom:437.400000px;}
.y28_c00437{bottom:453.900000px;}
.y5f_c00437{bottom:455.400000px;}
.y27_c00437{bottom:471.900000px;}
.y5e_c00437{bottom:473.400000px;}
.y26_c00437{bottom:489.600000px;}
.y5d_c00437{bottom:491.400000px;}
.y25_c00437{bottom:511.800000px;}
.y5c_c00437{bottom:513.600000px;}
.y24_c00437{bottom:529.800000px;}
.y5b_c00437{bottom:531.300000px;}
.y23_c00437{bottom:547.800000px;}
.y5a_c00437{bottom:549.300000px;}
.y22_c00437{bottom:565.800000px;}
.y59_c00437{bottom:567.300000px;}
.y21_c00437{bottom:583.800000px;}
.y58_c00437{bottom:584.550000px;}
.y20_c00437{bottom:601.500000px;}
.y57_c00437{bottom:602.850000px;}
.y1f_c00437{bottom:619.200000px;}
.y56_c00437{bottom:620.550000px;}
.y1e_c00437{bottom:637.500000px;}
.y55_c00437{bottom:638.250000px;}
.y1d_c00437{bottom:655.200000px;}
.y54_c00437{bottom:656.250000px;}
.y1c_c00437{bottom:673.500000px;}
.y53_c00437{bottom:674.250000px;}
.y1b_c00437{bottom:691.200000px;}
.y52_c00437{bottom:692.250000px;}
.y1a_c00437{bottom:709.200000px;}
.y51_c00437{bottom:709.950000px;}
.y4f_c00437{bottom:727.350000px;}
.y19_c00437{bottom:735.750000px;}
.y4e_c00437{bottom:745.350000px;}
.y18_c00437{bottom:753.750000px;}
.y4d_c00437{bottom:763.350000px;}
.y17_c00437{bottom:771.450000px;}
.y4c_c00437{bottom:781.050000px;}
.y16_c00437{bottom:789.750000px;}
.y4b_c00437{bottom:799.050000px;}
.y15_c00437{bottom:807.450000px;}
.y4a_c00437{bottom:817.050000px;}
.y14_c00437{bottom:825.450000px;}
.y49_c00437{bottom:835.050000px;}
.y13_c00437{bottom:842.700000px;}
.y48_c00437{bottom:852.750000px;}
.y12_c00437{bottom:860.700000px;}
.y47_c00437{bottom:870.750000px;}
.y11_c00437{bottom:878.700000px;}
.y46_c00437{bottom:888.750000px;}
.y10_c00437{bottom:896.700000px;}
.y45_c00437{bottom:906.750000px;}
.yf_c00437{bottom:914.400000px;}
.y44_c00437{bottom:924.450000px;}
.ye_c00437{bottom:932.400000px;}
.y43_c00437{bottom:942.450000px;}
.yd_c00437{bottom:949.800000px;}
.y42_c00437{bottom:960.450000px;}
.yc_c00437{bottom:967.500000px;}
.y41_c00437{bottom:978.150000px;}
.yb_c00437{bottom:985.200000px;}
.y40_c00437{bottom:994.650000px;}
.y36_c00437{bottom:996.150000px;}
.ya_c00437{bottom:1003.200000px;}
.y3f_c00437{bottom:1016.550000px;}
.y9_c00437{bottom:1021.200000px;}
.y50_c00437{bottom:1030.350000px;}
.y3e_c00437{bottom:1030.950000px;}
.y8_c00437{bottom:1038.900000px;}
.y3d_c00437{bottom:1045.350000px;}
.y7_c00437{bottom:1056.900000px;}
.y3c_c00437{bottom:1059.750000px;}
.y3b_c00437{bottom:1073.850000px;}
.y6_c00437{bottom:1074.900000px;}
.y3a_c00437{bottom:1088.700000px;}
.y5_c00437{bottom:1092.600000px;}
.y39_c00437{bottom:1103.100000px;}
.y4_c00437{bottom:1110.600000px;}
.y38_c00437{bottom:1117.500000px;}
.y3_c00437{bottom:1128.300000px;}
.y37_c00437{bottom:1130.100000px;}
.y1_c00437{bottom:1154.550000px;}
.y2_c00437{bottom:1154.850000px;}
.h9_c00437{height:24.000000px;}
.ha_c00437{height:42.000000px;}
.h8_c00437{height:48.000000px;}
.h7_c00437{height:54.000000px;}
.h6_c00437{height:60.000000px;}
.h5_c00437{height:66.000000px;}
.h4_c00437{height:72.000000px;}
.h3_c00437{height:84.000000px;}
.h2_c00437{height:102.000000px;}
.h0_c00437{height:1271.879975px;}
.h1_c00437{height:1272.000000px;}
.w0_c00437{width:958.320007px;}
.w1_c00437{width:958.500000px;}
.x0_c00437{left:0.000000px;}
.x62_c00437{left:174.600000px;}
.x9a_c00437{left:175.650000px;}
.x1_c00437{left:180.750000px;}
.x6c_c00437{left:191.550000px;}
.x4a_c00437{left:192.900000px;}
.x3_c00437{left:194.400000px;}
.x73_c00437{left:205.200000px;}
.x87_c00437{left:206.400000px;}
.x8c_c00437{left:209.250000px;}
.x16_c00437{left:211.200000px;}
.x54_c00437{left:213.000000px;}
.x9c_c00437{left:214.650000px;}
.x99_c00437{left:216.000000px;}
.x4b_c00437{left:217.050000px;}
.x7a_c00437{left:219.000000px;}
.x1d_c00437{left:222.000000px;}
.x48_c00437{left:223.500000px;}
.x74_c00437{left:227.550000px;}
.x10_c00437{left:228.750000px;}
.x69_c00437{left:231.000000px;}
.x3c_c00437{left:233.250000px;}
.x63_c00437{left:234.750000px;}
.x5a_c00437{left:235.800000px;}
.x1e_c00437{left:238.200000px;}
.x82_c00437{left:240.750000px;}
.x70_c00437{left:241.950000px;}
.x27_c00437{left:243.450000px;}
.x22_c00437{left:244.950000px;}
.x50_c00437{left:247.050000px;}
.x7d_c00437{left:248.850000px;}
.x4_c00437{left:249.900000px;}
.x59_c00437{left:251.250000px;}
.x91_c00437{left:253.500000px;}
.x3e_c00437{left:255.000000px;}
.x81_c00437{left:256.950000px;}
.x96_c00437{left:258.750000px;}
.x32_c00437{left:259.950000px;}
.x4c_c00437{left:262.800000px;}
.x28_c00437{left:264.750000px;}
.x64_c00437{left:266.100000px;}
.x5e_c00437{left:268.200000px;}
.x8d_c00437{left:269.400000px;}
.x5_c00437{left:273.000000px;}
.x38_c00437{left:274.800000px;}
.x55_c00437{left:277.500000px;}
.x11_c00437{left:282.000000px;}
.x23_c00437{left:283.500000px;}
.x9f_c00437{left:284.550000px;}
.x67_c00437{left:285.750000px;}
.x3d_c00437{left:286.950000px;}
.x33_c00437{left:289.050000px;}
.x6d_c00437{left:290.250000px;}
.x7b_c00437{left:291.300000px;}
.xa_c00437{left:294.300000px;}
.x17_c00437{left:295.500000px;}
.x84_c00437{left:299.100000px;}
.x5b_c00437{left:302.100000px;}
.x89_c00437{left:304.650000px;}
.x42_c00437{left:307.500000px;}
.x12_c00437{left:308.700000px;}
.x2d_c00437{left:310.050000px;}
.x39_c00437{left:311.550000px;}
.x29_c00437{left:314.100000px;}
.x7e_c00437{left:315.450000px;}
.x4d_c00437{left:317.100000px;}
.x1f_c00437{left:318.450000px;}
.x34_c00437{left:320.700000px;}
.x6_c00437{left:322.650000px;}
.x3f_c00437{left:323.700000px;}
.x92_c00437{left:325.200000px;}
.x5f_c00437{left:326.550000px;}
.x93_c00437{left:328.650000px;}
.x85_c00437{left:331.200000px;}
.x2e_c00437{left:332.400000px;}
.x18_c00437{left:333.600000px;}
.x8a_c00437{left:334.950000px;}
.x6a_c00437{left:336.450000px;}
.x8e_c00437{left:337.800000px;}
.x77_c00437{left:342.300000px;}
.x4e_c00437{left:343.350000px;}
.x43_c00437{left:347.400000px;}
.x75_c00437{left:348.900000px;}
.x19_c00437{left:350.100000px;}
.x60_c00437{left:351.750000px;}
.x56_c00437{left:353.100000px;}
.x13_c00437{left:356.250000px;}
.x8f_c00437{left:357.300000px;}
.x5c_c00437{left:358.950000px;}
.x95_c00437{left:360.300000px;}
.x71_c00437{left:361.350000px;}
.x65_c00437{left:362.550000px;}
.x2f_c00437{left:363.750000px;}
.x9d_c00437{left:365.850000px;}
.xb_c00437{left:367.800000px;}
.x76_c00437{left:369.000000px;}
.x35_c00437{left:371.400000px;}
.x9b_c00437{left:373.200000px;}
.x78_c00437{left:375.000000px;}
.x7_c00437{left:376.650000px;}
.x2a_c00437{left:379.500000px;}
.x1a_c00437{left:381.450000px;}
.x5d_c00437{left:383.400000px;}
.x66_c00437{left:385.950000px;}
.x51_c00437{left:388.050000px;}
.x24_c00437{left:391.800000px;}
.x40_c00437{left:393.600000px;}
.x20_c00437{left:395.850000px;}
.x44_c00437{left:397.350000px;}
.x6e_c00437{left:398.700000px;}
.x2b_c00437{left:400.800000px;}
.x52_c00437{left:403.950000px;}
.x6b_c00437{left:406.050000px;}
.x97_c00437{left:407.850000px;}
.x83_c00437{left:411.000000px;}
.x14_c00437{left:412.050000px;}
.x41_c00437{left:413.700000px;}
.x25_c00437{left:415.500000px;}
.x36_c00437{left:416.700000px;}
.x7f_c00437{left:418.050000px;}
.x2_c00437{left:420.450000px;}
.xc_c00437{left:422.100000px;}
.x45_c00437{left:423.600000px;}
.x90_c00437{left:424.650000px;}
.x4f_c00437{left:426.900000px;}
.x98_c00437{left:429.150000px;}
.x3a_c00437{left:430.350000px;}
.x1b_c00437{left:431.550000px;}
.x46_c00437{left:433.350000px;}
.x57_c00437{left:438.450000px;}
.xd_c00437{left:442.200000px;}
.x8_c00437{left:446.100000px;}
.x9e_c00437{left:447.300000px;}
.x49_c00437{left:450.300000px;}
.x21_c00437{left:451.650000px;}
.x30_c00437{left:454.800000px;}
.x79_c00437{left:457.800000px;}
.x3b_c00437{left:458.850000px;}
.x37_c00437{left:460.950000px;}
.x26_c00437{left:462.300000px;}
.x58_c00437{left:466.200000px;}
.x9_c00437{left:469.800000px;}
.x86_c00437{left:471.900000px;}
.x53_c00437{left:473.250000px;}
.x61_c00437{left:474.900000px;}
.x80_c00437{left:476.700000px;}
.xe_c00437{left:478.500000px;}
.x94_c00437{left:480.600000px;}
.x1c_c00437{left:481.950000px;}
.x47_c00437{left:483.750000px;}
.x68_c00437{left:484.950000px;}
.x7c_c00437{left:486.450000px;}
.x8b_c00437{left:490.050000px;}
.x6f_c00437{left:491.100000px;}
.x2c_c00437{left:492.300000px;}
.x31_c00437{left:495.150000px;}
.x88_c00437{left:496.200000px;}
.x15_c00437{left:497.400000px;}
.x72_c00437{left:499.650000px;}
.xf_c00437{left:500.850000px;}
.xa0_c00437{left:532.050000px;}
.x10f_c00437{left:541.500000px;}
.xb7_c00437{left:545.850000px;}
.xc4_c00437{left:549.450000px;}
.x110_c00437{left:550.500000px;}
.xbd_c00437{left:560.250000px;}
.xb1_c00437{left:561.300000px;}
.x123_c00437{left:564.450000px;}
.xe0_c00437{left:565.650000px;}
.x130_c00437{left:567.150000px;}
.x134_c00437{left:574.050000px;}
.x105_c00437{left:575.850000px;}
.xc5_c00437{left:577.500000px;}
.x11c_c00437{left:578.850000px;}
.x121_c00437{left:580.500000px;}
.xbe_c00437{left:582.150000px;}
.xcc_c00437{left:583.950000px;}
.xd4_c00437{left:585.000000px;}
.xef_c00437{left:588.750000px;}
.x12c_c00437{left:591.150000px;}
.x116_c00437{left:592.200000px;}
.xa7_c00437{left:593.700000px;}
.x10b_c00437{left:594.900000px;}
.x13d_c00437{left:597.300000px;}
.xe1_c00437{left:598.800000px;}
.x117_c00437{left:600.450000px;}
.x111_c00437{left:601.950000px;}
.xb8_c00437{left:604.500000px;}
.xfc_c00437{left:605.700000px;}
.xc0_c00437{left:608.100000px;}
.x12b_c00437{left:610.200000px;}
.xc6_c00437{left:611.400000px;}
.xf0_c00437{left:613.200000px;}
.xe8_c00437{left:615.000000px;}
.xf5_c00437{left:616.950000px;}
.x131_c00437{left:618.300000px;}
.xa1_c00437{left:619.500000px;}
.x126_c00437{left:622.050000px;}
.xb2_c00437{left:623.550000px;}
.xfd_c00437{left:627.600000px;}
.xa2_c00437{left:628.800000px;}
.x10c_c00437{left:630.150000px;}
.xc7_c00437{left:631.950000px;}
.xf1_c00437{left:633.300000px;}
.xfa_c00437{left:634.350000px;}
.x101_c00437{left:635.400000px;}
.x112_c00437{left:636.450000px;}
.x11d_c00437{left:637.800000px;}
.x106_c00437{left:638.850000px;}
.x118_c00437{left:640.050000px;}
.xb3_c00437{left:641.250000px;}
.xe9_c00437{left:643.050000px;}
.x12d_c00437{left:644.400000px;}
.xa8_c00437{left:646.650000px;}
.xcd_c00437{left:647.700000px;}
.x135_c00437{left:650.100000px;}
.xda_c00437{left:651.300000px;}
.x141_c00437{left:652.350000px;}
.xd5_c00437{left:656.400000px;}
.x128_c00437{left:657.750000px;}
.x127_c00437{left:659.100000px;}
.xea_c00437{left:660.750000px;}
.x12e_c00437{left:662.400000px;}
.xa9_c00437{left:663.600000px;}
.xe2_c00437{left:669.300000px;}
.x10d_c00437{left:670.500000px;}
.xa3_c00437{left:672.300000px;}
.xdb_c00437{left:675.000000px;}
.xe3_c00437{left:677.550000px;}
.x107_c00437{left:679.200000px;}
.x11f_c00437{left:681.450000px;}
.xb4_c00437{left:682.650000px;}
.xc8_c00437{left:683.700000px;}
.xce_c00437{left:685.500000px;}
.xb9_c00437{left:687.000000px;}
.xf6_c00437{left:689.250000px;}
.xdc_c00437{left:690.900000px;}
.x13a_c00437{left:693.300000px;}
.x129_c00437{left:697.650000px;}
.xd6_c00437{left:698.850000px;}
.x109_c00437{left:700.350000px;}
.xba_c00437{left:702.150000px;}
.xe4_c00437{left:704.250000px;}
.xed_c00437{left:706.200000px;}
.x119_c00437{left:707.700000px;}
.xcf_c00437{left:709.650000px;}
.xeb_c00437{left:710.850000px;}
.xc9_c00437{left:712.500000px;}
.x138_c00437{left:714.000000px;}
.x13c_c00437{left:715.050000px;}
.xfe_c00437{left:716.850000px;}
.xf2_c00437{left:718.650000px;}
.xaa_c00437{left:721.200000px;}
.xb5_c00437{left:724.350000px;}
.x113_c00437{left:726.150000px;}
.x102_c00437{left:728.100000px;}
.xf7_c00437{left:730.350000px;}
.xff_c00437{left:732.300000px;}
.x13e_c00437{left:733.350000px;}
.x139_c00437{left:735.750000px;}
.xc2_c00437{left:737.700000px;}
.xb6_c00437{left:739.500000px;}
.xd7_c00437{left:741.300000px;}
.xbb_c00437{left:742.800000px;}
.x12a_c00437{left:744.750000px;}
.xdd_c00437{left:746.250000px;}
.xab_c00437{left:750.000000px;}
.x120_c00437{left:751.650000px;}
.xe5_c00437{left:753.600000px;}
.xf8_c00437{left:755.250000px;}
.xca_c00437{left:756.450000px;}
.xd0_c00437{left:758.550000px;}
.x11a_c00437{left:762.000000px;}
.x124_c00437{left:763.500000px;}
.xac_c00437{left:764.700000px;}
.x13b_c00437{left:766.800000px;}
.xd8_c00437{left:768.000000px;}
.xe6_c00437{left:769.800000px;}
.xad_c00437{left:771.600000px;}
.xf9_c00437{left:774.000000px;}
.x13f_c00437{left:775.200000px;}
.x11e_c00437{left:776.850000px;}
.xee_c00437{left:778.200000px;}
.x108_c00437{left:780.750000px;}
.x103_c00437{left:782.400000px;}
.xd1_c00437{left:785.850000px;}
.xc3_c00437{left:787.050000px;}
.xa4_c00437{left:789.450000px;}
.xde_c00437{left:792.000000px;}
.xf3_c00437{left:795.300000px;}
.xc1_c00437{left:797.400000px;}
.xbf_c00437{left:798.900000px;}
.xae_c00437{left:799.950000px;}
.x136_c00437{left:801.600000px;}
.xfb_c00437{left:803.400000px;}
.xd2_c00437{left:804.600000px;}
.x122_c00437{left:806.400000px;}
.xdf_c00437{left:807.900000px;}
.xcb_c00437{left:812.250000px;}
.x132_c00437{left:813.750000px;}
.x12f_c00437{left:815.100000px;}
.x115_c00437{left:818.700000px;}
.xa5_c00437{left:820.800000px;}
.x11b_c00437{left:822.150000px;}
.x10a_c00437{left:823.500000px;}
.xbc_c00437{left:826.650000px;}
.xaf_c00437{left:827.700000px;}
.x137_c00437{left:829.350000px;}
.x133_c00437{left:833.550000px;}
.x140_c00437{left:834.900000px;}
.x125_c00437{left:836.250000px;}
.x114_c00437{left:837.450000px;}
.x100_c00437{left:839.250000px;}
.xe7_c00437{left:840.750000px;}
.xf4_c00437{left:842.400000px;}
.xd9_c00437{left:844.350000px;}
.x10e_c00437{left:847.050000px;}
.xec_c00437{left:853.050000px;}
.xa6_c00437{left:854.250000px;}
.xb0_c00437{left:855.750000px;}
.xd3_c00437{left:857.850000px;}
.x104_c00437{left:864.900000px;}
.x142_c00437{left:874.050000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws1_c00437{word-spacing:-5.877739pt;}
.ws2_c00437{word-spacing:-3.484241pt;}
.ws9_c00437{word-spacing:-3.200643pt;}
.wsa_c00437{word-spacing:0.000000pt;}
.ws8_c00437{word-spacing:0.168099pt;}
.ws3_c00437{word-spacing:0.222222pt;}
.ws6_c00437{word-spacing:2.777778pt;}
.ws0_c00437{word-spacing:7.475674pt;}
.ws7_c00437{word-spacing:13.333333pt;}
.ws5_c00437{word-spacing:16.111111pt;}
.ws4_c00437{word-spacing:22.857143pt;}
._0_c00437{width:46.349206pt;}
.fs7_c00437{font-size:21.333333pt;}
.fs8_c00437{font-size:37.333333pt;}
.fs6_c00437{font-size:42.666667pt;}
.fs5_c00437{font-size:48.000000pt;}
.fs4_c00437{font-size:53.333333pt;}
.fs3_c00437{font-size:58.666667pt;}
.fs2_c00437{font-size:64.000000pt;}
.fs1_c00437{font-size:74.666667pt;}
.fs0_c00437{font-size:90.666667pt;}
.y0_c00437{bottom:0.000000pt;}
.y6d_c00437{bottom:5.733333pt;}
.y6c_c00437{bottom:177.600000pt;}
.y35_c00437{bottom:184.000000pt;}
.y6b_c00437{bottom:193.600000pt;}
.y34_c00437{bottom:199.333333pt;}
.y6a_c00437{bottom:209.600000pt;}
.y33_c00437{bottom:215.066667pt;}
.y69_c00437{bottom:226.266667pt;}
.y32_c00437{bottom:230.400000pt;}
.y68_c00437{bottom:241.333333pt;}
.y31_c00437{bottom:251.733333pt;}
.y67_c00437{bottom:261.733333pt;}
.y30_c00437{bottom:267.466667pt;}
.y2f_c00437{bottom:282.400000pt;}
.y66_c00437{bottom:289.333333pt;}
.y2e_c00437{bottom:298.133333pt;}
.y65_c00437{bottom:305.333333pt;}
.y2d_c00437{bottom:313.866667pt;}
.y64_c00437{bottom:325.200000pt;}
.y2c_c00437{bottom:329.600000pt;}
.y63_c00437{bottom:341.466667pt;}
.y2b_c00437{bottom:355.466667pt;}
.y62_c00437{bottom:357.066667pt;}
.y2a_c00437{bottom:371.733333pt;}
.y61_c00437{bottom:373.066667pt;}
.y29_c00437{bottom:387.466667pt;}
.y60_c00437{bottom:388.800000pt;}
.y28_c00437{bottom:403.466667pt;}
.y5f_c00437{bottom:404.800000pt;}
.y27_c00437{bottom:419.466667pt;}
.y5e_c00437{bottom:420.800000pt;}
.y26_c00437{bottom:435.200000pt;}
.y5d_c00437{bottom:436.800000pt;}
.y25_c00437{bottom:454.933333pt;}
.y5c_c00437{bottom:456.533333pt;}
.y24_c00437{bottom:470.933333pt;}
.y5b_c00437{bottom:472.266667pt;}
.y23_c00437{bottom:486.933333pt;}
.y5a_c00437{bottom:488.266667pt;}
.y22_c00437{bottom:502.933333pt;}
.y59_c00437{bottom:504.266667pt;}
.y21_c00437{bottom:518.933333pt;}
.y58_c00437{bottom:519.600000pt;}
.y20_c00437{bottom:534.666667pt;}
.y57_c00437{bottom:535.866667pt;}
.y1f_c00437{bottom:550.400000pt;}
.y56_c00437{bottom:551.600000pt;}
.y1e_c00437{bottom:566.666667pt;}
.y55_c00437{bottom:567.333333pt;}
.y1d_c00437{bottom:582.400000pt;}
.y54_c00437{bottom:583.333333pt;}
.y1c_c00437{bottom:598.666667pt;}
.y53_c00437{bottom:599.333333pt;}
.y1b_c00437{bottom:614.400000pt;}
.y52_c00437{bottom:615.333333pt;}
.y1a_c00437{bottom:630.400000pt;}
.y51_c00437{bottom:631.066667pt;}
.y4f_c00437{bottom:646.533333pt;}
.y19_c00437{bottom:654.000000pt;}
.y4e_c00437{bottom:662.533333pt;}
.y18_c00437{bottom:670.000000pt;}
.y4d_c00437{bottom:678.533333pt;}
.y17_c00437{bottom:685.733333pt;}
.y4c_c00437{bottom:694.266667pt;}
.y16_c00437{bottom:702.000000pt;}
.y4b_c00437{bottom:710.266667pt;}
.y15_c00437{bottom:717.733333pt;}
.y4a_c00437{bottom:726.266667pt;}
.y14_c00437{bottom:733.733333pt;}
.y49_c00437{bottom:742.266667pt;}
.y13_c00437{bottom:749.066667pt;}
.y48_c00437{bottom:758.000000pt;}
.y12_c00437{bottom:765.066667pt;}
.y47_c00437{bottom:774.000000pt;}
.y11_c00437{bottom:781.066667pt;}
.y46_c00437{bottom:790.000000pt;}
.y10_c00437{bottom:797.066667pt;}
.y45_c00437{bottom:806.000000pt;}
.yf_c00437{bottom:812.800000pt;}
.y44_c00437{bottom:821.733333pt;}
.ye_c00437{bottom:828.800000pt;}
.y43_c00437{bottom:837.733333pt;}
.yd_c00437{bottom:844.266667pt;}
.y42_c00437{bottom:853.733333pt;}
.yc_c00437{bottom:860.000000pt;}
.y41_c00437{bottom:869.466667pt;}
.yb_c00437{bottom:875.733333pt;}
.y40_c00437{bottom:884.133333pt;}
.y36_c00437{bottom:885.466667pt;}
.ya_c00437{bottom:891.733333pt;}
.y3f_c00437{bottom:903.600000pt;}
.y9_c00437{bottom:907.733333pt;}
.y50_c00437{bottom:915.866667pt;}
.y3e_c00437{bottom:916.400000pt;}
.y8_c00437{bottom:923.466667pt;}
.y3d_c00437{bottom:929.200000pt;}
.y7_c00437{bottom:939.466667pt;}
.y3c_c00437{bottom:942.000000pt;}
.y3b_c00437{bottom:954.533333pt;}
.y6_c00437{bottom:955.466667pt;}
.y3a_c00437{bottom:967.733333pt;}
.y5_c00437{bottom:971.200000pt;}
.y39_c00437{bottom:980.533333pt;}
.y4_c00437{bottom:987.200000pt;}
.y38_c00437{bottom:993.333333pt;}
.y3_c00437{bottom:1002.933333pt;}
.y37_c00437{bottom:1004.533333pt;}
.y1_c00437{bottom:1026.266667pt;}
.y2_c00437{bottom:1026.533333pt;}
.h9_c00437{height:21.333333pt;}
.ha_c00437{height:37.333333pt;}
.h8_c00437{height:42.666667pt;}
.h7_c00437{height:48.000000pt;}
.h6_c00437{height:53.333333pt;}
.h5_c00437{height:58.666667pt;}
.h4_c00437{height:64.000000pt;}
.h3_c00437{height:74.666667pt;}
.h2_c00437{height:90.666667pt;}
.h0_c00437{height:1130.559977pt;}
.h1_c00437{height:1130.666667pt;}
.w0_c00437{width:851.840007pt;}
.w1_c00437{width:852.000000pt;}
.x0_c00437{left:0.000000pt;}
.x62_c00437{left:155.200000pt;}
.x9a_c00437{left:156.133333pt;}
.x1_c00437{left:160.666667pt;}
.x6c_c00437{left:170.266667pt;}
.x4a_c00437{left:171.466667pt;}
.x3_c00437{left:172.800000pt;}
.x73_c00437{left:182.400000pt;}
.x87_c00437{left:183.466667pt;}
.x8c_c00437{left:186.000000pt;}
.x16_c00437{left:187.733333pt;}
.x54_c00437{left:189.333333pt;}
.x9c_c00437{left:190.800000pt;}
.x99_c00437{left:192.000000pt;}
.x4b_c00437{left:192.933333pt;}
.x7a_c00437{left:194.666667pt;}
.x1d_c00437{left:197.333333pt;}
.x48_c00437{left:198.666667pt;}
.x74_c00437{left:202.266667pt;}
.x10_c00437{left:203.333333pt;}
.x69_c00437{left:205.333333pt;}
.x3c_c00437{left:207.333333pt;}
.x63_c00437{left:208.666667pt;}
.x5a_c00437{left:209.600000pt;}
.x1e_c00437{left:211.733333pt;}
.x82_c00437{left:214.000000pt;}
.x70_c00437{left:215.066667pt;}
.x27_c00437{left:216.400000pt;}
.x22_c00437{left:217.733333pt;}
.x50_c00437{left:219.600000pt;}
.x7d_c00437{left:221.200000pt;}
.x4_c00437{left:222.133333pt;}
.x59_c00437{left:223.333333pt;}
.x91_c00437{left:225.333333pt;}
.x3e_c00437{left:226.666667pt;}
.x81_c00437{left:228.400000pt;}
.x96_c00437{left:230.000000pt;}
.x32_c00437{left:231.066667pt;}
.x4c_c00437{left:233.600000pt;}
.x28_c00437{left:235.333333pt;}
.x64_c00437{left:236.533333pt;}
.x5e_c00437{left:238.400000pt;}
.x8d_c00437{left:239.466667pt;}
.x5_c00437{left:242.666667pt;}
.x38_c00437{left:244.266667pt;}
.x55_c00437{left:246.666667pt;}
.x11_c00437{left:250.666667pt;}
.x23_c00437{left:252.000000pt;}
.x9f_c00437{left:252.933333pt;}
.x67_c00437{left:254.000000pt;}
.x3d_c00437{left:255.066667pt;}
.x33_c00437{left:256.933333pt;}
.x6d_c00437{left:258.000000pt;}
.x7b_c00437{left:258.933333pt;}
.xa_c00437{left:261.600000pt;}
.x17_c00437{left:262.666667pt;}
.x84_c00437{left:265.866667pt;}
.x5b_c00437{left:268.533333pt;}
.x89_c00437{left:270.800000pt;}
.x42_c00437{left:273.333333pt;}
.x12_c00437{left:274.400000pt;}
.x2d_c00437{left:275.600000pt;}
.x39_c00437{left:276.933333pt;}
.x29_c00437{left:279.200000pt;}
.x7e_c00437{left:280.400000pt;}
.x4d_c00437{left:281.866667pt;}
.x1f_c00437{left:283.066667pt;}
.x34_c00437{left:285.066667pt;}
.x6_c00437{left:286.800000pt;}
.x3f_c00437{left:287.733333pt;}
.x92_c00437{left:289.066667pt;}
.x5f_c00437{left:290.266667pt;}
.x93_c00437{left:292.133333pt;}
.x85_c00437{left:294.400000pt;}
.x2e_c00437{left:295.466667pt;}
.x18_c00437{left:296.533333pt;}
.x8a_c00437{left:297.733333pt;}
.x6a_c00437{left:299.066667pt;}
.x8e_c00437{left:300.266667pt;}
.x77_c00437{left:304.266667pt;}
.x4e_c00437{left:305.200000pt;}
.x43_c00437{left:308.800000pt;}
.x75_c00437{left:310.133333pt;}
.x19_c00437{left:311.200000pt;}
.x60_c00437{left:312.666667pt;}
.x56_c00437{left:313.866667pt;}
.x13_c00437{left:316.666667pt;}
.x8f_c00437{left:317.600000pt;}
.x5c_c00437{left:319.066667pt;}
.x95_c00437{left:320.266667pt;}
.x71_c00437{left:321.200000pt;}
.x65_c00437{left:322.266667pt;}
.x2f_c00437{left:323.333333pt;}
.x9d_c00437{left:325.200000pt;}
.xb_c00437{left:326.933333pt;}
.x76_c00437{left:328.000000pt;}
.x35_c00437{left:330.133333pt;}
.x9b_c00437{left:331.733333pt;}
.x78_c00437{left:333.333333pt;}
.x7_c00437{left:334.800000pt;}
.x2a_c00437{left:337.333333pt;}
.x1a_c00437{left:339.066667pt;}
.x5d_c00437{left:340.800000pt;}
.x66_c00437{left:343.066667pt;}
.x51_c00437{left:344.933333pt;}
.x24_c00437{left:348.266667pt;}
.x40_c00437{left:349.866667pt;}
.x20_c00437{left:351.866667pt;}
.x44_c00437{left:353.200000pt;}
.x6e_c00437{left:354.400000pt;}
.x2b_c00437{left:356.266667pt;}
.x52_c00437{left:359.066667pt;}
.x6b_c00437{left:360.933333pt;}
.x97_c00437{left:362.533333pt;}
.x83_c00437{left:365.333333pt;}
.x14_c00437{left:366.266667pt;}
.x41_c00437{left:367.733333pt;}
.x25_c00437{left:369.333333pt;}
.x36_c00437{left:370.400000pt;}
.x7f_c00437{left:371.600000pt;}
.x2_c00437{left:373.733333pt;}
.xc_c00437{left:375.200000pt;}
.x45_c00437{left:376.533333pt;}
.x90_c00437{left:377.466667pt;}
.x4f_c00437{left:379.466667pt;}
.x98_c00437{left:381.466667pt;}
.x3a_c00437{left:382.533333pt;}
.x1b_c00437{left:383.600000pt;}
.x46_c00437{left:385.200000pt;}
.x57_c00437{left:389.733333pt;}
.xd_c00437{left:393.066667pt;}
.x8_c00437{left:396.533333pt;}
.x9e_c00437{left:397.600000pt;}
.x49_c00437{left:400.266667pt;}
.x21_c00437{left:401.466667pt;}
.x30_c00437{left:404.266667pt;}
.x79_c00437{left:406.933333pt;}
.x3b_c00437{left:407.866667pt;}
.x37_c00437{left:409.733333pt;}
.x26_c00437{left:410.933333pt;}
.x58_c00437{left:414.400000pt;}
.x9_c00437{left:417.600000pt;}
.x86_c00437{left:419.466667pt;}
.x53_c00437{left:420.666667pt;}
.x61_c00437{left:422.133333pt;}
.x80_c00437{left:423.733333pt;}
.xe_c00437{left:425.333333pt;}
.x94_c00437{left:427.200000pt;}
.x1c_c00437{left:428.400000pt;}
.x47_c00437{left:430.000000pt;}
.x68_c00437{left:431.066667pt;}
.x7c_c00437{left:432.400000pt;}
.x8b_c00437{left:435.600000pt;}
.x6f_c00437{left:436.533333pt;}
.x2c_c00437{left:437.600000pt;}
.x31_c00437{left:440.133333pt;}
.x88_c00437{left:441.066667pt;}
.x15_c00437{left:442.133333pt;}
.x72_c00437{left:444.133333pt;}
.xf_c00437{left:445.200000pt;}
.xa0_c00437{left:472.933333pt;}
.x10f_c00437{left:481.333333pt;}
.xb7_c00437{left:485.200000pt;}
.xc4_c00437{left:488.400000pt;}
.x110_c00437{left:489.333333pt;}
.xbd_c00437{left:498.000000pt;}
.xb1_c00437{left:498.933333pt;}
.x123_c00437{left:501.733333pt;}
.xe0_c00437{left:502.800000pt;}
.x130_c00437{left:504.133333pt;}
.x134_c00437{left:510.266667pt;}
.x105_c00437{left:511.866667pt;}
.xc5_c00437{left:513.333333pt;}
.x11c_c00437{left:514.533333pt;}
.x121_c00437{left:516.000000pt;}
.xbe_c00437{left:517.466667pt;}
.xcc_c00437{left:519.066667pt;}
.xd4_c00437{left:520.000000pt;}
.xef_c00437{left:523.333333pt;}
.x12c_c00437{left:525.466667pt;}
.x116_c00437{left:526.400000pt;}
.xa7_c00437{left:527.733333pt;}
.x10b_c00437{left:528.800000pt;}
.x13d_c00437{left:530.933333pt;}
.xe1_c00437{left:532.266667pt;}
.x117_c00437{left:533.733333pt;}
.x111_c00437{left:535.066667pt;}
.xb8_c00437{left:537.333333pt;}
.xfc_c00437{left:538.400000pt;}
.xc0_c00437{left:540.533333pt;}
.x12b_c00437{left:542.400000pt;}
.xc6_c00437{left:543.466667pt;}
.xf0_c00437{left:545.066667pt;}
.xe8_c00437{left:546.666667pt;}
.xf5_c00437{left:548.400000pt;}
.x131_c00437{left:549.600000pt;}
.xa1_c00437{left:550.666667pt;}
.x126_c00437{left:552.933333pt;}
.xb2_c00437{left:554.266667pt;}
.xfd_c00437{left:557.866667pt;}
.xa2_c00437{left:558.933333pt;}
.x10c_c00437{left:560.133333pt;}
.xc7_c00437{left:561.733333pt;}
.xf1_c00437{left:562.933333pt;}
.xfa_c00437{left:563.866667pt;}
.x101_c00437{left:564.800000pt;}
.x112_c00437{left:565.733333pt;}
.x11d_c00437{left:566.933333pt;}
.x106_c00437{left:567.866667pt;}
.x118_c00437{left:568.933333pt;}
.xb3_c00437{left:570.000000pt;}
.xe9_c00437{left:571.600000pt;}
.x12d_c00437{left:572.800000pt;}
.xa8_c00437{left:574.800000pt;}
.xcd_c00437{left:575.733333pt;}
.x135_c00437{left:577.866667pt;}
.xda_c00437{left:578.933333pt;}
.x141_c00437{left:579.866667pt;}
.xd5_c00437{left:583.466667pt;}
.x128_c00437{left:584.666667pt;}
.x127_c00437{left:585.866667pt;}
.xea_c00437{left:587.333333pt;}
.x12e_c00437{left:588.800000pt;}
.xa9_c00437{left:589.866667pt;}
.xe2_c00437{left:594.933333pt;}
.x10d_c00437{left:596.000000pt;}
.xa3_c00437{left:597.600000pt;}
.xdb_c00437{left:600.000000pt;}
.xe3_c00437{left:602.266667pt;}
.x107_c00437{left:603.733333pt;}
.x11f_c00437{left:605.733333pt;}
.xb4_c00437{left:606.800000pt;}
.xc8_c00437{left:607.733333pt;}
.xce_c00437{left:609.333333pt;}
.xb9_c00437{left:610.666667pt;}
.xf6_c00437{left:612.666667pt;}
.xdc_c00437{left:614.133333pt;}
.x13a_c00437{left:616.266667pt;}
.x129_c00437{left:620.133333pt;}
.xd6_c00437{left:621.200000pt;}
.x109_c00437{left:622.533333pt;}
.xba_c00437{left:624.133333pt;}
.xe4_c00437{left:626.000000pt;}
.xed_c00437{left:627.733333pt;}
.x119_c00437{left:629.066667pt;}
.xcf_c00437{left:630.800000pt;}
.xeb_c00437{left:631.866667pt;}
.xc9_c00437{left:633.333333pt;}
.x138_c00437{left:634.666667pt;}
.x13c_c00437{left:635.600000pt;}
.xfe_c00437{left:637.200000pt;}
.xf2_c00437{left:638.800000pt;}
.xaa_c00437{left:641.066667pt;}
.xb5_c00437{left:643.866667pt;}
.x113_c00437{left:645.466667pt;}
.x102_c00437{left:647.200000pt;}
.xf7_c00437{left:649.200000pt;}
.xff_c00437{left:650.933333pt;}
.x13e_c00437{left:651.866667pt;}
.x139_c00437{left:654.000000pt;}
.xc2_c00437{left:655.733333pt;}
.xb6_c00437{left:657.333333pt;}
.xd7_c00437{left:658.933333pt;}
.xbb_c00437{left:660.266667pt;}
.x12a_c00437{left:662.000000pt;}
.xdd_c00437{left:663.333333pt;}
.xab_c00437{left:666.666667pt;}
.x120_c00437{left:668.133333pt;}
.xe5_c00437{left:669.866667pt;}
.xf8_c00437{left:671.333333pt;}
.xca_c00437{left:672.400000pt;}
.xd0_c00437{left:674.266667pt;}
.x11a_c00437{left:677.333333pt;}
.x124_c00437{left:678.666667pt;}
.xac_c00437{left:679.733333pt;}
.x13b_c00437{left:681.600000pt;}
.xd8_c00437{left:682.666667pt;}
.xe6_c00437{left:684.266667pt;}
.xad_c00437{left:685.866667pt;}
.xf9_c00437{left:688.000000pt;}
.x13f_c00437{left:689.066667pt;}
.x11e_c00437{left:690.533333pt;}
.xee_c00437{left:691.733333pt;}
.x108_c00437{left:694.000000pt;}
.x103_c00437{left:695.466667pt;}
.xd1_c00437{left:698.533333pt;}
.xc3_c00437{left:699.600000pt;}
.xa4_c00437{left:701.733333pt;}
.xde_c00437{left:704.000000pt;}
.xf3_c00437{left:706.933333pt;}
.xc1_c00437{left:708.800000pt;}
.xbf_c00437{left:710.133333pt;}
.xae_c00437{left:711.066667pt;}
.x136_c00437{left:712.533333pt;}
.xfb_c00437{left:714.133333pt;}
.xd2_c00437{left:715.200000pt;}
.x122_c00437{left:716.800000pt;}
.xdf_c00437{left:718.133333pt;}
.xcb_c00437{left:722.000000pt;}
.x132_c00437{left:723.333333pt;}
.x12f_c00437{left:724.533333pt;}
.x115_c00437{left:727.733333pt;}
.xa5_c00437{left:729.600000pt;}
.x11b_c00437{left:730.800000pt;}
.x10a_c00437{left:732.000000pt;}
.xbc_c00437{left:734.800000pt;}
.xaf_c00437{left:735.733333pt;}
.x137_c00437{left:737.200000pt;}
.x133_c00437{left:740.933333pt;}
.x140_c00437{left:742.133333pt;}
.x125_c00437{left:743.333333pt;}
.x114_c00437{left:744.400000pt;}
.x100_c00437{left:746.000000pt;}
.xe7_c00437{left:747.333333pt;}
.xf4_c00437{left:748.800000pt;}
.xd9_c00437{left:750.533333pt;}
.x10e_c00437{left:752.933333pt;}
.xec_c00437{left:758.266667pt;}
.xa6_c00437{left:759.333333pt;}
.xb0_c00437{left:760.666667pt;}
.xd3_c00437{left:762.533333pt;}
.x104_c00437{left:768.800000pt;}
.x142_c00437{left:776.933333pt;}
}





/* 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_c00438 {
    display:none;
  }
  .loading-indicator_c00438.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00438 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_c00438 { 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_c00438" -> "#page-container .classname_c00438")
 */
.pf_c00438 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00438 { /* 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_c00438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00438 { /* 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_c00438 { /* 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_c00438 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00438 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00438 {overflow:visible;}
  }
}
.c_c00438 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00438 { /* 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_c00438:after { /* webkit #35443 */
  content: '';
}
.t_c00438:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00438 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 */
}
.__c00438 { /* 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_c00438 { /* info for Javascript */
  display:none;
}
.l_c00438 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00438 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00438 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00438: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_c00438 {
    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_c00438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00438.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_c00438 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00438;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.000000;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;}
.m103_c00438{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.me8_c00438{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00438{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00438{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00438{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.me_c00438{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00438{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00438{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00438{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00438{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me2_c00438{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00438{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00438{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m70_c00438{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00438{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m60_c00438{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m64_c00438{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m49_c00438{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00438{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m39_c00438{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00438{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m104_c00438{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00438{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00438{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00438{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00438{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00438{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m102_c00438{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m80_c00438{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m29_c00438{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00438{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m51_c00438{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00438{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00438{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00438{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00438{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m57_c00438{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00438{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m13_c00438{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m85_c00438{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.med_c00438{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m86_c00438{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mde_c00438{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mad_c00438{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00438{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00438{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00438{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00438{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md1_c00438{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m68_c00438{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mce_c00438{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00438{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00438{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00438{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00438{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00438{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00438{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md_c00438{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mac_c00438{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00438{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m35_c00438{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m26_c00438{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00438{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00438{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00438{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m82_c00438{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma_c00438{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00438{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m105_c00438{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m101_c00438{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00438{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mec_c00438{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me1_c00438{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00438{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m65_c00438{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00438{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.me6_c00438{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.maf_c00438{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md4_c00438{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00438{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00438{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00438{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m109_c00438{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m67_c00438{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m10_c00438{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00438{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m84_c00438{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00438{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m33_c00438{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m108_c00438{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m73_c00438{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00438{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m46_c00438{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m77_c00438{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00438{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m19_c00438{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m34_c00438{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m69_c00438{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m11_c00438{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00438{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00438{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m53_c00438{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m66_c00438{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00438{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m89_c00438{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00438{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m79_c00438{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m99_c00438{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md8_c00438{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00438{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00438{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00438{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me7_c00438{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m74_c00438{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mba_c00438{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00438{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m55_c00438{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me0_c00438{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00438{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m83_c00438{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00438{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m61_c00438{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00438{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m75_c00438{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00438{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00438{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00438{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00438{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m47_c00438{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00438{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m94_c00438{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00438{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00438{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00438{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00438{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8_c00438{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00438{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m81_c00438{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m12_c00438{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m96_c00438{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m32_c00438{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m16_c00438{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.maa_c00438{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00438{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00438{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00438{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mee_c00438{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m9_c00438{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00438{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m87_c00438{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00438{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00438{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00438{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m63_c00438{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc_c00438{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m72_c00438{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m92_c00438{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00438{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00438{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00438{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m45_c00438{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md3_c00438{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mea_c00438{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00438{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m78_c00438{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m23_c00438{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m17_c00438{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m20_c00438{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m21_c00438{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me3_c00438{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m76_c00438{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00438{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00438{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mef_c00438{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mf_c00438{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m97_c00438{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00438{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m54_c00438{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00438{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m107_c00438{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m90_c00438{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m56_c00438{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mda_c00438{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m98_c00438{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m48_c00438{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m14_c00438{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m52_c00438{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m42_c00438{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7_c00438{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00438{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me4_c00438{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mff_c00438{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00438{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00438{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m24_c00438{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m43_c00438{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00438{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m93_c00438{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00438{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m15_c00438{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mae_c00438{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00438{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m95_c00438{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m25_c00438{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md0_c00438{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m71_c00438{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m62_c00438{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md6_c00438{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00438{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m91_c00438{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m50_c00438{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m59_c00438{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me5_c00438{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m106_c00438{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00438{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m18_c00438{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00438{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);}
.m2d_c00438{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00438{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00438{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00438{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m31_c00438{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m36_c00438{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m27_c00438{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m22_c00438{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00438{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00438{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00438{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md9_c00438{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00438{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m30_c00438{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00438{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.meb_c00438{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00438{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00438{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md7_c00438{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00438{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m38_c00438{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00438{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00438{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00438{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00438{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m37_c00438{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m88_c00438{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m28_c00438{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00438{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.me9_c00438{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00438{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00438{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m41_c00438{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.md2_c00438{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00438{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.md5_c00438{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00438{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m5_c00438{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m100_c00438{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mab_c00438{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00438{transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00438{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m58_c00438{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);}
.m44_c00438{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00438{transform:matrix(0.482000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00438{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m40_c00438{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.mca_c00438{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls0_c00438{letter-spacing:0.000000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{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__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00438{word-spacing:-7.819407px;}
.wsa_c00438{word-spacing:-6.463415px;}
.wsd_c00438{word-spacing:-5.526316px;}
.wsb_c00438{word-spacing:-4.676856px;}
.ws8_c00438{word-spacing:-4.605263px;}
.ws9_c00438{word-spacing:-2.187500px;}
.wse_c00438{word-spacing:0.000000px;}
.ws7_c00438{word-spacing:20.166667px;}
.ws3_c00438{word-spacing:23.211796px;}
.ws4_c00438{word-spacing:29.285714px;}
.wsc_c00438{word-spacing:29.333333px;}
.ws5_c00438{word-spacing:40.000000px;}
.ws2_c00438{word-spacing:59.721619px;}
.ws1_c00438{word-spacing:60.000000px;}
.ws0_c00438{word-spacing:67.631579px;}
._4_c00438{width:34.105263px;}
._2_c00438{width:52.142857px;}
._1_c00438{width:53.428954px;}
._3_c00438{width:55.714286px;}
._0_c00438{width:87.906219px;}
.fc0_c00438{color:transparent;}
.fs5_c00438{font-size:24.000000px;}
.fs6_c00438{font-size:36.000000px;}
.fs3_c00438{font-size:54.000000px;}
.fs2_c00438{font-size:60.000000px;}
.fs4_c00438{font-size:66.000000px;}
.fs1_c00438{font-size:72.000000px;}
.fs0_c00438{font-size:78.000000px;}
.y0_c00438{bottom:0.000000px;}
.y70_c00438{bottom:163.800000px;}
.y6f_c00438{bottom:182.850000px;}
.y3a_c00438{bottom:185.850000px;}
.y6e_c00438{bottom:200.850000px;}
.y39_c00438{bottom:203.550000px;}
.y6d_c00438{bottom:218.850000px;}
.y38_c00438{bottom:221.250000px;}
.y6c_c00438{bottom:236.550000px;}
.y37_c00438{bottom:238.950000px;}
.y6b_c00438{bottom:254.550000px;}
.y36_c00438{bottom:256.950000px;}
.y6a_c00438{bottom:272.550000px;}
.y35_c00438{bottom:274.950000px;}
.y34_c00438{bottom:292.650000px;}
.y69_c00438{bottom:299.100000px;}
.y33_c00438{bottom:309.900000px;}
.y68_c00438{bottom:317.400000px;}
.y32_c00438{bottom:328.200000px;}
.y67_c00438{bottom:335.100000px;}
.y31_c00438{bottom:345.900000px;}
.y66_c00438{bottom:353.100000px;}
.y30_c00438{bottom:368.550000px;}
.y65_c00438{bottom:374.700000px;}
.y2f_c00438{bottom:386.550000px;}
.y64_c00438{bottom:392.700000px;}
.y2e_c00438{bottom:404.250000px;}
.y63_c00438{bottom:410.700000px;}
.y2d_c00438{bottom:422.250000px;}
.y62_c00438{bottom:428.700000px;}
.y2c_c00438{bottom:439.500000px;}
.y61_c00438{bottom:445.650000px;}
.y60_c00438{bottom:451.050000px;}
.y2b_c00438{bottom:457.200000px;}
.y5f_c00438{bottom:469.050000px;}
.y2a_c00438{bottom:479.400000px;}
.y5e_c00438{bottom:486.750000px;}
.y29_c00438{bottom:497.100000px;}
.y5d_c00438{bottom:509.100000px;}
.y28_c00438{bottom:515.100000px;}
.y5c_c00438{bottom:527.100000px;}
.y27_c00438{bottom:533.100000px;}
.y5b_c00438{bottom:549.600000px;}
.y26_c00438{bottom:551.100000px;}
.y5a_c00438{bottom:567.300000px;}
.y25_c00438{bottom:569.100000px;}
.y59_c00438{bottom:585.000000px;}
.y24_c00438{bottom:587.100000px;}
.y23_c00438{bottom:604.800000px;}
.y58_c00438{bottom:607.650000px;}
.y22_c00438{bottom:622.800000px;}
.y57_c00438{bottom:625.350000px;}
.y21_c00438{bottom:640.800000px;}
.y56_c00438{bottom:643.350000px;}
.y20_c00438{bottom:659.100000px;}
.y55_c00438{bottom:665.400000px;}
.y1f_c00438{bottom:676.800000px;}
.y54_c00438{bottom:683.400000px;}
.y1e_c00438{bottom:694.500000px;}
.y53_c00438{bottom:701.100000px;}
.y1d_c00438{bottom:712.200000px;}
.y52_c00438{bottom:718.800000px;}
.y1c_c00438{bottom:730.200000px;}
.y51_c00438{bottom:736.800000px;}
.y1b_c00438{bottom:746.700000px;}
.y3_c00438{bottom:747.750000px;}
.y50_c00438{bottom:754.500000px;}
.y1a_c00438{bottom:771.900000px;}
.y4f_c00438{bottom:777.150000px;}
.y19_c00438{bottom:786.600000px;}
.y4e_c00438{bottom:795.150000px;}
.y18_c00438{bottom:801.300000px;}
.y4d_c00438{bottom:812.850000px;}
.y17_c00438{bottom:815.700000px;}
.y16_c00438{bottom:830.100000px;}
.y4c_c00438{bottom:831.150000px;}
.y15_c00438{bottom:844.500000px;}
.y4b_c00438{bottom:848.850000px;}
.y3b_c00438{bottom:857.850000px;}
.y14_c00438{bottom:858.900000px;}
.y4a_c00438{bottom:866.100000px;}
.y13_c00438{bottom:873.000000px;}
.y12_c00438{bottom:887.700000px;}
.y49_c00438{bottom:888.150000px;}
.y11_c00438{bottom:901.800000px;}
.y48_c00438{bottom:906.150000px;}
.y10_c00438{bottom:916.200000px;}
.y47_c00438{bottom:923.400000px;}
.yf_c00438{bottom:930.600000px;}
.ye_c00438{bottom:944.700000px;}
.y46_c00438{bottom:945.600000px;}
.yd_c00438{bottom:959.100000px;}
.y45_c00438{bottom:963.600000px;}
.yc_c00438{bottom:973.500000px;}
.y44_c00438{bottom:981.600000px;}
.yb_c00438{bottom:987.900000px;}
.y43_c00438{bottom:999.300000px;}
.ya_c00438{bottom:1002.300000px;}
.y9_c00438{bottom:1017.000000px;}
.y42_c00438{bottom:1017.300000px;}
.y41_c00438{bottom:1035.000000px;}
.y8_c00438{bottom:1041.600000px;}
.y40_c00438{bottom:1053.000000px;}
.y7_c00438{bottom:1059.900000px;}
.y3f_c00438{bottom:1071.000000px;}
.y6_c00438{bottom:1077.150000px;}
.y3e_c00438{bottom:1092.600000px;}
.y5_c00438{bottom:1095.150000px;}
.y3d_c00438{bottom:1110.300000px;}
.y4_c00438{bottom:1112.400000px;}
.y2_c00438{bottom:1134.000000px;}
.y1_c00438{bottom:1138.350000px;}
.y3c_c00438{bottom:1263.900000px;}
.h7_c00438{height:24.000000px;}
.h8_c00438{height:36.000000px;}
.h5_c00438{height:54.000000px;}
.h4_c00438{height:60.000000px;}
.h6_c00438{height:66.000000px;}
.h3_c00438{height:72.000000px;}
.h2_c00438{height:78.000000px;}
.h1_c00438{height:1267.500000px;}
.h0_c00438{height:1267.559967px;}
.w0_c00438{width:958.320007px;}
.w1_c00438{width:958.500000px;}
.x0_c00438{left:0.000000px;}
.x4_c00438{left:81.750000px;}
.x27_c00438{left:83.850000px;}
.x6_c00438{left:86.100000px;}
.x41_c00438{left:95.250000px;}
.x3f_c00438{left:97.050000px;}
.x30_c00438{left:98.250000px;}
.x26_c00438{left:99.600000px;}
.x1e_c00438{left:101.100000px;}
.xe_c00438{left:102.900000px;}
.x4c_c00438{left:109.350000px;}
.x42_c00438{left:111.000000px;}
.x37_c00438{left:112.200000px;}
.x96_c00438{left:114.450000px;}
.x5c_c00438{left:122.550000px;}
.xf_c00438{left:124.800000px;}
.x9c_c00438{left:126.750000px;}
.x7_c00438{left:130.050000px;}
.x4d_c00438{left:131.700000px;}
.x39_c00438{left:133.200000px;}
.x84_c00438{left:134.850000px;}
.x62_c00438{left:136.200000px;}
.x72_c00438{left:137.400000px;}
.x6c_c00438{left:138.450000px;}
.x10_c00438{left:139.950000px;}
.x28_c00438{left:142.950000px;}
.x31_c00438{left:145.350000px;}
.x57_c00438{left:147.300000px;}
.x2c_c00438{left:150.750000px;}
.x3a_c00438{left:152.250000px;}
.x16_c00438{left:153.600000px;}
.x47_c00438{left:156.450000px;}
.x6d_c00438{left:157.500000px;}
.x89_c00438{left:159.750000px;}
.x1f_c00438{left:160.800000px;}
.x91_c00438{left:162.000000px;}
.xa6_c00438{left:163.350000px;}
.x86_c00438{left:164.550000px;}
.x2d_c00438{left:166.200000px;}
.x73_c00438{left:167.250000px;}
.x5d_c00438{left:169.350000px;}
.x5_c00438{left:170.700000px;}
.x93_c00438{left:172.650000px;}
.x48_c00438{left:174.150000px;}
.xa5_c00438{left:175.500000px;}
.x11_c00438{left:176.700000px;}
.x58_c00438{left:178.950000px;}
.x17_c00438{left:181.650000px;}
.x6e_c00438{left:182.700000px;}
.x82_c00438{left:186.750000px;}
.x32_c00438{left:188.550000px;}
.x3b_c00438{left:190.050000px;}
.x4e_c00438{left:191.400000px;}
.x9a_c00438{left:192.450000px;}
.x8_c00438{left:196.350000px;}
.x5e_c00438{left:199.650000px;}
.x20_c00438{left:200.700000px;}
.x2e_c00438{left:202.950000px;}
.x8d_c00438{left:204.000000px;}
.x75_c00438{left:205.800000px;}
.x7d_c00438{left:206.850000px;}
.x18_c00438{left:209.400000px;}
.x4f_c00438{left:210.900000px;}
.x94_c00438{left:212.250000px;}
.x49_c00438{left:214.050000px;}
.x85_c00438{left:215.550000px;}
.x2f_c00438{left:218.850000px;}
.x52_c00438{left:220.200000px;}
.x43_c00438{left:221.850000px;}
.x83_c00438{left:223.350000px;}
.x76_c00438{left:227.100000px;}
.x7e_c00438{left:228.450000px;}
.x4a_c00438{left:229.950000px;}
.x9d_c00438{left:231.150000px;}
.x59_c00438{left:232.200000px;}
.x3c_c00438{left:233.250000px;}
.x53_c00438{left:234.300000px;}
.x12_c00438{left:236.100000px;}
.x6b_c00438{left:237.750000px;}
.x6f_c00438{left:239.550000px;}
.x74_c00438{left:241.800000px;}
.x9_c00438{left:242.850000px;}
.x9f_c00438{left:245.550000px;}
.x9e_c00438{left:247.050000px;}
.x3d_c00438{left:249.450000px;}
.xa2_c00438{left:251.100000px;}
.x5a_c00438{left:252.750000px;}
.x65_c00438{left:253.950000px;}
.x5f_c00438{left:255.000000px;}
.x21_c00438{left:257.550000px;}
.x19_c00438{left:258.750000px;}
.x8a_c00438{left:260.550000px;}
.x79_c00438{left:263.550000px;}
.x33_c00438{left:264.900000px;}
.x68_c00438{left:267.750000px;}
.x95_c00438{left:269.100000px;}
.x87_c00438{left:271.800000px;}
.x77_c00438{left:272.850000px;}
.x54_c00438{left:274.050000px;}
.x1a_c00438{left:275.700000px;}
.x3e_c00438{left:276.750000px;}
.x4b_c00438{left:277.800000px;}
.xa_c00438{left:279.150000px;}
.x70_c00438{left:282.000000px;}
.xa3_c00438{left:283.800000px;}
.x50_c00438{left:285.150000px;}
.x7f_c00438{left:286.800000px;}
.x22_c00438{left:288.150000px;}
.x13_c00438{left:289.800000px;}
.x44_c00438{left:291.750000px;}
.x7c_c00438{left:294.450000px;}
.x40_c00438{left:296.850000px;}
.x1_c00438{left:298.800000px;}
.xa0_c00438{left:299.850000px;}
.x60_c00438{left:302.100000px;}
.x80_c00438{left:304.050000px;}
.x66_c00438{left:305.400000px;}
.x29_c00438{left:306.600000px;}
.xb_c00438{left:309.000000px;}
.xa8_c00438{left:310.350000px;}
.x23_c00438{left:314.100000px;}
.x69_c00438{left:315.600000px;}
.x8e_c00438{left:316.950000px;}
.x98_c00438{left:318.600000px;}
.x1b_c00438{left:320.700000px;}
.x90_c00438{left:322.200000px;}
.x55_c00438{left:323.700000px;}
.x2_c00438{left:327.300000px;}
.x45_c00438{left:328.350000px;}
.x97_c00438{left:329.400000px;}
.xc_c00438{left:331.350000px;}
.x5b_c00438{left:333.150000px;}
.x63_c00438{left:336.450000px;}
.x1c_c00438{left:337.650000px;}
.x14_c00438{left:340.200000px;}
.x78_c00438{left:342.300000px;}
.x7a_c00438{left:346.050000px;}
.x46_c00438{left:347.400000px;}
.x34_c00438{left:348.450000px;}
.x38_c00438{left:349.500000px;}
.x71_c00438{left:351.150000px;}
.x8b_c00438{left:357.450000px;}
.x81_c00438{left:359.550000px;}
.x24_c00438{left:361.650000px;}
.xa7_c00438{left:363.450000px;}
.xa1_c00438{left:366.450000px;}
.x6a_c00438{left:368.250000px;}
.x99_c00438{left:369.300000px;}
.x51_c00438{left:370.350000px;}
.x2a_c00438{left:371.400000px;}
.x92_c00438{left:374.700000px;}
.xd_c00438{left:376.350000px;}
.x35_c00438{left:377.550000px;}
.x25_c00438{left:378.900000px;}
.x67_c00438{left:381.750000px;}
.x15_c00438{left:383.700000px;}
.x88_c00438{left:384.750000px;}
.x8f_c00438{left:386.850000px;}
.x8c_c00438{left:389.550000px;}
.x1d_c00438{left:392.400000px;}
.x56_c00438{left:394.200000px;}
.x64_c00438{left:396.150000px;}
.x9b_c00438{left:397.800000px;}
.xa4_c00438{left:399.450000px;}
.x7b_c00438{left:401.850000px;}
.x2b_c00438{left:405.600000px;}
.x36_c00438{left:406.650000px;}
.x61_c00438{left:414.450000px;}
.x140_c00438{left:451.800000px;}
.x13d_c00438{left:452.850000px;}
.x124_c00438{left:454.500000px;}
.x119_c00438{left:455.700000px;}
.xfd_c00438{left:456.750000px;}
.xe5_c00438{left:457.950000px;}
.xca_c00438{left:459.450000px;}
.xad_c00438{left:460.800000px;}
.x130_c00438{left:462.750000px;}
.x13e_c00438{left:468.750000px;}
.x13a_c00438{left:471.300000px;}
.x132_c00438{left:472.350000px;}
.x11c_c00438{left:473.700000px;}
.x144_c00438{left:474.750000px;}
.xe0_c00438{left:475.950000px;}
.xf5_c00438{left:477.150000px;}
.xb5_c00438{left:478.500000px;}
.x122_c00438{left:481.950000px;}
.xfe_c00438{left:483.750000px;}
.xd5_c00438{left:485.850000px;}
.x11e_c00438{left:487.200000px;}
.xf8_c00438{left:491.400000px;}
.xa9_c00438{left:492.900000px;}
.xbd_c00438{left:495.000000px;}
.x116_c00438{left:496.350000px;}
.x104_c00438{left:498.900000px;}
.xec_c00438{left:501.900000px;}
.x125_c00438{left:503.100000px;}
.xc3_c00438{left:504.900000px;}
.xf1_c00438{left:507.150000px;}
.x110_c00438{left:508.650000px;}
.x145_c00438{left:510.000000px;}
.xae_c00438{left:511.200000px;}
.x11a_c00438{left:514.050000px;}
.xbe_c00438{left:515.550000px;}
.xd0_c00438{left:516.750000px;}
.xb6_c00438{left:517.800000px;}
.xde_c00438{left:518.850000px;}
.xff_c00438{left:520.800000px;}
.xed_c00438{left:522.750000px;}
.x117_c00438{left:524.100000px;}
.xcb_c00438{left:527.100000px;}
.xaf_c00438{left:531.300000px;}
.xe6_c00438{left:532.500000px;}
.x143_c00438{left:533.850000px;}
.x108_c00438{left:535.650000px;}
.x126_c00438{left:537.300000px;}
.xc4_c00438{left:538.800000px;}
.xd1_c00438{left:539.850000px;}
.xe1_c00438{left:541.800000px;}
.x131_c00438{left:543.150000px;}
.x10b_c00438{left:544.350000px;}
.xf6_c00438{left:546.300000px;}
.xda_c00438{left:547.350000px;}
.x100_c00438{left:549.300000px;}
.xdf_c00438{left:550.500000px;}
.xaa_c00438{left:553.350000px;}
.x11f_c00438{left:555.900000px;}
.x109_c00438{left:559.050000px;}
.xb7_c00438{left:561.300000px;}
.xcc_c00438{left:562.350000px;}
.xf9_c00438{left:563.400000px;}
.x111_c00438{left:564.450000px;}
.xee_c00438{left:566.250000px;}
.x146_c00438{left:569.850000px;}
.xe7_c00438{left:571.050000px;}
.xbf_c00438{left:572.700000px;}
.x133_c00438{left:574.200000px;}
.x101_c00438{left:580.200000px;}
.xfa_c00438{left:581.400000px;}
.xd6_c00438{left:582.600000px;}
.xb8_c00438{left:584.700000px;}
.xd2_c00438{left:586.650000px;}
.x127_c00438{left:588.750000px;}
.x134_c00438{left:590.700000px;}
.x102_c00438{left:591.750000px;}
.x137_c00438{left:593.850000px;}
.xc5_c00438{left:595.200000px;}
.xf2_c00438{left:597.750000px;}
.x10c_c00438{left:599.850000px;}
.x120_c00438{left:601.650000px;}
.xd7_c00438{left:603.150000px;}
.xe2_c00438{left:606.150000px;}
.xfb_c00438{left:607.650000px;}
.xf3_c00438{left:608.850000px;}
.x112_c00438{left:610.500000px;}
.x10a_c00438{left:612.000000px;}
.xb0_c00438{left:614.850000px;}
.xe8_c00438{left:617.550000px;}
.x135_c00438{left:621.000000px;}
.xef_c00438{left:622.050000px;}
.x12e_c00438{left:623.250000px;}
.x141_c00438{left:625.350000px;}
.xd3_c00438{left:627.750000px;}
.x103_c00438{left:629.550000px;}
.x12a_c00438{left:630.600000px;}
.x13b_c00438{left:633.300000px;}
.xb1_c00438{left:634.650000px;}
.xc0_c00438{left:637.200000px;}
.xe3_c00438{left:641.100000px;}
.xb9_c00438{left:642.600000px;}
.x105_c00438{left:643.950000px;}
.x12d_c00438{left:645.900000px;}
.xe9_c00438{left:647.400000px;}
.xc6_c00438{left:649.200000px;}
.xba_c00438{left:651.900000px;}
.x139_c00438{left:654.000000px;}
.xcd_c00438{left:656.400000px;}
.xdb_c00438{left:659.250000px;}
.xd4_c00438{left:662.250000px;}
.x114_c00438{left:663.450000px;}
.xea_c00438{left:668.250000px;}
.x142_c00438{left:669.300000px;}
.x113_c00438{left:670.350000px;}
.xbb_c00438{left:673.800000px;}
.x128_c00438{left:676.500000px;}
.xfc_c00438{left:677.850000px;}
.x12f_c00438{left:680.850000px;}
.x138_c00438{left:682.050000px;}
.xc7_c00438{left:683.700000px;}
.x12b_c00438{left:684.900000px;}
.x106_c00438{left:687.900000px;}
.x13f_c00438{left:689.700000px;}
.x115_c00438{left:693.000000px;}
.xdc_c00438{left:698.550000px;}
.xb2_c00438{left:699.750000px;}
.x10d_c00438{left:700.950000px;}
.x148_c00438{left:702.000000px;}
.xd8_c00438{left:706.800000px;}
.x121_c00438{left:710.400000px;}
.x11d_c00438{left:711.750000px;}
.xce_c00438{left:713.250000px;}
.xc1_c00438{left:714.300000px;}
.x147_c00438{left:715.950000px;}
.x123_c00438{left:718.800000px;}
.x118_c00438{left:720.000000px;}
.xb3_c00438{left:722.850000px;}
.x10e_c00438{left:724.650000px;}
.xc8_c00438{left:726.600000px;}
.xf0_c00438{left:727.950000px;}
.xeb_c00438{left:729.750000px;}
.xab_c00438{left:731.550000px;}
.xbc_c00438{left:732.900000px;}
.x13c_c00438{left:735.150000px;}
.xe4_c00438{left:737.250000px;}
.x136_c00438{left:740.250000px;}
.xc2_c00438{left:742.050000px;}
.x10f_c00438{left:743.400000px;}
.x12c_c00438{left:744.900000px;}
.xc9_c00438{left:747.450000px;}
.xf7_c00438{left:748.800000px;}
.xd9_c00438{left:750.300000px;}
.x3_c00438{left:752.400000px;}
.xcf_c00438{left:753.900000px;}
.xdd_c00438{left:757.200000px;}
.x107_c00438{left:758.850000px;}
.x11b_c00438{left:759.900000px;}
.xb4_c00438{left:761.700000px;}
.xf4_c00438{left:765.150000px;}
.x129_c00438{left:771.150000px;}
.xac_c00438{left:775.050000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws6_c00438{word-spacing:-6.950584pt;}
.wsa_c00438{word-spacing:-5.745257pt;}
.wsd_c00438{word-spacing:-4.912281pt;}
.wsb_c00438{word-spacing:-4.157205pt;}
.ws8_c00438{word-spacing:-4.093567pt;}
.ws9_c00438{word-spacing:-1.944444pt;}
.wse_c00438{word-spacing:0.000000pt;}
.ws7_c00438{word-spacing:17.925926pt;}
.ws3_c00438{word-spacing:20.632708pt;}
.ws4_c00438{word-spacing:26.031746pt;}
.wsc_c00438{word-spacing:26.074074pt;}
.ws5_c00438{word-spacing:35.555556pt;}
.ws2_c00438{word-spacing:53.085884pt;}
.ws1_c00438{word-spacing:53.333333pt;}
.ws0_c00438{word-spacing:60.116959pt;}
._4_c00438{width:30.315789pt;}
._2_c00438{width:46.349206pt;}
._1_c00438{width:47.492404pt;}
._3_c00438{width:49.523810pt;}
._0_c00438{width:78.138861pt;}
.fs5_c00438{font-size:21.333333pt;}
.fs6_c00438{font-size:32.000000pt;}
.fs3_c00438{font-size:48.000000pt;}
.fs2_c00438{font-size:53.333333pt;}
.fs4_c00438{font-size:58.666667pt;}
.fs1_c00438{font-size:64.000000pt;}
.fs0_c00438{font-size:69.333333pt;}
.y0_c00438{bottom:0.000000pt;}
.y70_c00438{bottom:145.600000pt;}
.y6f_c00438{bottom:162.533333pt;}
.y3a_c00438{bottom:165.200000pt;}
.y6e_c00438{bottom:178.533333pt;}
.y39_c00438{bottom:180.933333pt;}
.y6d_c00438{bottom:194.533333pt;}
.y38_c00438{bottom:196.666667pt;}
.y6c_c00438{bottom:210.266667pt;}
.y37_c00438{bottom:212.400000pt;}
.y6b_c00438{bottom:226.266667pt;}
.y36_c00438{bottom:228.400000pt;}
.y6a_c00438{bottom:242.266667pt;}
.y35_c00438{bottom:244.400000pt;}
.y34_c00438{bottom:260.133333pt;}
.y69_c00438{bottom:265.866667pt;}
.y33_c00438{bottom:275.466667pt;}
.y68_c00438{bottom:282.133333pt;}
.y32_c00438{bottom:291.733333pt;}
.y67_c00438{bottom:297.866667pt;}
.y31_c00438{bottom:307.466667pt;}
.y66_c00438{bottom:313.866667pt;}
.y30_c00438{bottom:327.600000pt;}
.y65_c00438{bottom:333.066667pt;}
.y2f_c00438{bottom:343.600000pt;}
.y64_c00438{bottom:349.066667pt;}
.y2e_c00438{bottom:359.333333pt;}
.y63_c00438{bottom:365.066667pt;}
.y2d_c00438{bottom:375.333333pt;}
.y62_c00438{bottom:381.066667pt;}
.y2c_c00438{bottom:390.666667pt;}
.y61_c00438{bottom:396.133333pt;}
.y60_c00438{bottom:400.933333pt;}
.y2b_c00438{bottom:406.400000pt;}
.y5f_c00438{bottom:416.933333pt;}
.y2a_c00438{bottom:426.133333pt;}
.y5e_c00438{bottom:432.666667pt;}
.y29_c00438{bottom:441.866667pt;}
.y5d_c00438{bottom:452.533333pt;}
.y28_c00438{bottom:457.866667pt;}
.y5c_c00438{bottom:468.533333pt;}
.y27_c00438{bottom:473.866667pt;}
.y5b_c00438{bottom:488.533333pt;}
.y26_c00438{bottom:489.866667pt;}
.y5a_c00438{bottom:504.266667pt;}
.y25_c00438{bottom:505.866667pt;}
.y59_c00438{bottom:520.000000pt;}
.y24_c00438{bottom:521.866667pt;}
.y23_c00438{bottom:537.600000pt;}
.y58_c00438{bottom:540.133333pt;}
.y22_c00438{bottom:553.600000pt;}
.y57_c00438{bottom:555.866667pt;}
.y21_c00438{bottom:569.600000pt;}
.y56_c00438{bottom:571.866667pt;}
.y20_c00438{bottom:585.866667pt;}
.y55_c00438{bottom:591.466667pt;}
.y1f_c00438{bottom:601.600000pt;}
.y54_c00438{bottom:607.466667pt;}
.y1e_c00438{bottom:617.333333pt;}
.y53_c00438{bottom:623.200000pt;}
.y1d_c00438{bottom:633.066667pt;}
.y52_c00438{bottom:638.933333pt;}
.y1c_c00438{bottom:649.066667pt;}
.y51_c00438{bottom:654.933333pt;}
.y1b_c00438{bottom:663.733333pt;}
.y3_c00438{bottom:664.666667pt;}
.y50_c00438{bottom:670.666667pt;}
.y1a_c00438{bottom:686.133333pt;}
.y4f_c00438{bottom:690.800000pt;}
.y19_c00438{bottom:699.200000pt;}
.y4e_c00438{bottom:706.800000pt;}
.y18_c00438{bottom:712.266667pt;}
.y4d_c00438{bottom:722.533333pt;}
.y17_c00438{bottom:725.066667pt;}
.y16_c00438{bottom:737.866667pt;}
.y4c_c00438{bottom:738.800000pt;}
.y15_c00438{bottom:750.666667pt;}
.y4b_c00438{bottom:754.533333pt;}
.y3b_c00438{bottom:762.533333pt;}
.y14_c00438{bottom:763.466667pt;}
.y4a_c00438{bottom:769.866667pt;}
.y13_c00438{bottom:776.000000pt;}
.y12_c00438{bottom:789.066667pt;}
.y49_c00438{bottom:789.466667pt;}
.y11_c00438{bottom:801.600000pt;}
.y48_c00438{bottom:805.466667pt;}
.y10_c00438{bottom:814.400000pt;}
.y47_c00438{bottom:820.800000pt;}
.yf_c00438{bottom:827.200000pt;}
.ye_c00438{bottom:839.733333pt;}
.y46_c00438{bottom:840.533333pt;}
.yd_c00438{bottom:852.533333pt;}
.y45_c00438{bottom:856.533333pt;}
.yc_c00438{bottom:865.333333pt;}
.y44_c00438{bottom:872.533333pt;}
.yb_c00438{bottom:878.133333pt;}
.y43_c00438{bottom:888.266667pt;}
.ya_c00438{bottom:890.933333pt;}
.y9_c00438{bottom:904.000000pt;}
.y42_c00438{bottom:904.266667pt;}
.y41_c00438{bottom:920.000000pt;}
.y8_c00438{bottom:925.866667pt;}
.y40_c00438{bottom:936.000000pt;}
.y7_c00438{bottom:942.133333pt;}
.y3f_c00438{bottom:952.000000pt;}
.y6_c00438{bottom:957.466667pt;}
.y3e_c00438{bottom:971.200000pt;}
.y5_c00438{bottom:973.466667pt;}
.y3d_c00438{bottom:986.933333pt;}
.y4_c00438{bottom:988.800000pt;}
.y2_c00438{bottom:1008.000000pt;}
.y1_c00438{bottom:1011.866667pt;}
.y3c_c00438{bottom:1123.466667pt;}
.h7_c00438{height:21.333333pt;}
.h8_c00438{height:32.000000pt;}
.h5_c00438{height:48.000000pt;}
.h4_c00438{height:53.333333pt;}
.h6_c00438{height:58.666667pt;}
.h3_c00438{height:64.000000pt;}
.h2_c00438{height:69.333333pt;}
.h1_c00438{height:1126.666667pt;}
.h0_c00438{height:1126.719971pt;}
.w0_c00438{width:851.840007pt;}
.w1_c00438{width:852.000000pt;}
.x0_c00438{left:0.000000pt;}
.x4_c00438{left:72.666667pt;}
.x27_c00438{left:74.533333pt;}
.x6_c00438{left:76.533333pt;}
.x41_c00438{left:84.666667pt;}
.x3f_c00438{left:86.266667pt;}
.x30_c00438{left:87.333333pt;}
.x26_c00438{left:88.533333pt;}
.x1e_c00438{left:89.866667pt;}
.xe_c00438{left:91.466667pt;}
.x4c_c00438{left:97.200000pt;}
.x42_c00438{left:98.666667pt;}
.x37_c00438{left:99.733333pt;}
.x96_c00438{left:101.733333pt;}
.x5c_c00438{left:108.933333pt;}
.xf_c00438{left:110.933333pt;}
.x9c_c00438{left:112.666667pt;}
.x7_c00438{left:115.600000pt;}
.x4d_c00438{left:117.066667pt;}
.x39_c00438{left:118.400000pt;}
.x84_c00438{left:119.866667pt;}
.x62_c00438{left:121.066667pt;}
.x72_c00438{left:122.133333pt;}
.x6c_c00438{left:123.066667pt;}
.x10_c00438{left:124.400000pt;}
.x28_c00438{left:127.066667pt;}
.x31_c00438{left:129.200000pt;}
.x57_c00438{left:130.933333pt;}
.x2c_c00438{left:134.000000pt;}
.x3a_c00438{left:135.333333pt;}
.x16_c00438{left:136.533333pt;}
.x47_c00438{left:139.066667pt;}
.x6d_c00438{left:140.000000pt;}
.x89_c00438{left:142.000000pt;}
.x1f_c00438{left:142.933333pt;}
.x91_c00438{left:144.000000pt;}
.xa6_c00438{left:145.200000pt;}
.x86_c00438{left:146.266667pt;}
.x2d_c00438{left:147.733333pt;}
.x73_c00438{left:148.666667pt;}
.x5d_c00438{left:150.533333pt;}
.x5_c00438{left:151.733333pt;}
.x93_c00438{left:153.466667pt;}
.x48_c00438{left:154.800000pt;}
.xa5_c00438{left:156.000000pt;}
.x11_c00438{left:157.066667pt;}
.x58_c00438{left:159.066667pt;}
.x17_c00438{left:161.466667pt;}
.x6e_c00438{left:162.400000pt;}
.x82_c00438{left:166.000000pt;}
.x32_c00438{left:167.600000pt;}
.x3b_c00438{left:168.933333pt;}
.x4e_c00438{left:170.133333pt;}
.x9a_c00438{left:171.066667pt;}
.x8_c00438{left:174.533333pt;}
.x5e_c00438{left:177.466667pt;}
.x20_c00438{left:178.400000pt;}
.x2e_c00438{left:180.400000pt;}
.x8d_c00438{left:181.333333pt;}
.x75_c00438{left:182.933333pt;}
.x7d_c00438{left:183.866667pt;}
.x18_c00438{left:186.133333pt;}
.x4f_c00438{left:187.466667pt;}
.x94_c00438{left:188.666667pt;}
.x49_c00438{left:190.266667pt;}
.x85_c00438{left:191.600000pt;}
.x2f_c00438{left:194.533333pt;}
.x52_c00438{left:195.733333pt;}
.x43_c00438{left:197.200000pt;}
.x83_c00438{left:198.533333pt;}
.x76_c00438{left:201.866667pt;}
.x7e_c00438{left:203.066667pt;}
.x4a_c00438{left:204.400000pt;}
.x9d_c00438{left:205.466667pt;}
.x59_c00438{left:206.400000pt;}
.x3c_c00438{left:207.333333pt;}
.x53_c00438{left:208.266667pt;}
.x12_c00438{left:209.866667pt;}
.x6b_c00438{left:211.333333pt;}
.x6f_c00438{left:212.933333pt;}
.x74_c00438{left:214.933333pt;}
.x9_c00438{left:215.866667pt;}
.x9f_c00438{left:218.266667pt;}
.x9e_c00438{left:219.600000pt;}
.x3d_c00438{left:221.733333pt;}
.xa2_c00438{left:223.200000pt;}
.x5a_c00438{left:224.666667pt;}
.x65_c00438{left:225.733333pt;}
.x5f_c00438{left:226.666667pt;}
.x21_c00438{left:228.933333pt;}
.x19_c00438{left:230.000000pt;}
.x8a_c00438{left:231.600000pt;}
.x79_c00438{left:234.266667pt;}
.x33_c00438{left:235.466667pt;}
.x68_c00438{left:238.000000pt;}
.x95_c00438{left:239.200000pt;}
.x87_c00438{left:241.600000pt;}
.x77_c00438{left:242.533333pt;}
.x54_c00438{left:243.600000pt;}
.x1a_c00438{left:245.066667pt;}
.x3e_c00438{left:246.000000pt;}
.x4b_c00438{left:246.933333pt;}
.xa_c00438{left:248.133333pt;}
.x70_c00438{left:250.666667pt;}
.xa3_c00438{left:252.266667pt;}
.x50_c00438{left:253.466667pt;}
.x7f_c00438{left:254.933333pt;}
.x22_c00438{left:256.133333pt;}
.x13_c00438{left:257.600000pt;}
.x44_c00438{left:259.333333pt;}
.x7c_c00438{left:261.733333pt;}
.x40_c00438{left:263.866667pt;}
.x1_c00438{left:265.600000pt;}
.xa0_c00438{left:266.533333pt;}
.x60_c00438{left:268.533333pt;}
.x80_c00438{left:270.266667pt;}
.x66_c00438{left:271.466667pt;}
.x29_c00438{left:272.533333pt;}
.xb_c00438{left:274.666667pt;}
.xa8_c00438{left:275.866667pt;}
.x23_c00438{left:279.200000pt;}
.x69_c00438{left:280.533333pt;}
.x8e_c00438{left:281.733333pt;}
.x98_c00438{left:283.200000pt;}
.x1b_c00438{left:285.066667pt;}
.x90_c00438{left:286.400000pt;}
.x55_c00438{left:287.733333pt;}
.x2_c00438{left:290.933333pt;}
.x45_c00438{left:291.866667pt;}
.x97_c00438{left:292.800000pt;}
.xc_c00438{left:294.533333pt;}
.x5b_c00438{left:296.133333pt;}
.x63_c00438{left:299.066667pt;}
.x1c_c00438{left:300.133333pt;}
.x14_c00438{left:302.400000pt;}
.x78_c00438{left:304.266667pt;}
.x7a_c00438{left:307.600000pt;}
.x46_c00438{left:308.800000pt;}
.x34_c00438{left:309.733333pt;}
.x38_c00438{left:310.666667pt;}
.x71_c00438{left:312.133333pt;}
.x8b_c00438{left:317.733333pt;}
.x81_c00438{left:319.600000pt;}
.x24_c00438{left:321.466667pt;}
.xa7_c00438{left:323.066667pt;}
.xa1_c00438{left:325.733333pt;}
.x6a_c00438{left:327.333333pt;}
.x99_c00438{left:328.266667pt;}
.x51_c00438{left:329.200000pt;}
.x2a_c00438{left:330.133333pt;}
.x92_c00438{left:333.066667pt;}
.xd_c00438{left:334.533333pt;}
.x35_c00438{left:335.600000pt;}
.x25_c00438{left:336.800000pt;}
.x67_c00438{left:339.333333pt;}
.x15_c00438{left:341.066667pt;}
.x88_c00438{left:342.000000pt;}
.x8f_c00438{left:343.866667pt;}
.x8c_c00438{left:346.266667pt;}
.x1d_c00438{left:348.800000pt;}
.x56_c00438{left:350.400000pt;}
.x64_c00438{left:352.133333pt;}
.x9b_c00438{left:353.600000pt;}
.xa4_c00438{left:355.066667pt;}
.x7b_c00438{left:357.200000pt;}
.x2b_c00438{left:360.533333pt;}
.x36_c00438{left:361.466667pt;}
.x61_c00438{left:368.400000pt;}
.x140_c00438{left:401.600000pt;}
.x13d_c00438{left:402.533333pt;}
.x124_c00438{left:404.000000pt;}
.x119_c00438{left:405.066667pt;}
.xfd_c00438{left:406.000000pt;}
.xe5_c00438{left:407.066667pt;}
.xca_c00438{left:408.400000pt;}
.xad_c00438{left:409.600000pt;}
.x130_c00438{left:411.333333pt;}
.x13e_c00438{left:416.666667pt;}
.x13a_c00438{left:418.933333pt;}
.x132_c00438{left:419.866667pt;}
.x11c_c00438{left:421.066667pt;}
.x144_c00438{left:422.000000pt;}
.xe0_c00438{left:423.066667pt;}
.xf5_c00438{left:424.133333pt;}
.xb5_c00438{left:425.333333pt;}
.x122_c00438{left:428.400000pt;}
.xfe_c00438{left:430.000000pt;}
.xd5_c00438{left:431.866667pt;}
.x11e_c00438{left:433.066667pt;}
.xf8_c00438{left:436.800000pt;}
.xa9_c00438{left:438.133333pt;}
.xbd_c00438{left:440.000000pt;}
.x116_c00438{left:441.200000pt;}
.x104_c00438{left:443.466667pt;}
.xec_c00438{left:446.133333pt;}
.x125_c00438{left:447.200000pt;}
.xc3_c00438{left:448.800000pt;}
.xf1_c00438{left:450.800000pt;}
.x110_c00438{left:452.133333pt;}
.x145_c00438{left:453.333333pt;}
.xae_c00438{left:454.400000pt;}
.x11a_c00438{left:456.933333pt;}
.xbe_c00438{left:458.266667pt;}
.xd0_c00438{left:459.333333pt;}
.xb6_c00438{left:460.266667pt;}
.xde_c00438{left:461.200000pt;}
.xff_c00438{left:462.933333pt;}
.xed_c00438{left:464.666667pt;}
.x117_c00438{left:465.866667pt;}
.xcb_c00438{left:468.533333pt;}
.xaf_c00438{left:472.266667pt;}
.xe6_c00438{left:473.333333pt;}
.x143_c00438{left:474.533333pt;}
.x108_c00438{left:476.133333pt;}
.x126_c00438{left:477.600000pt;}
.xc4_c00438{left:478.933333pt;}
.xd1_c00438{left:479.866667pt;}
.xe1_c00438{left:481.600000pt;}
.x131_c00438{left:482.800000pt;}
.x10b_c00438{left:483.866667pt;}
.xf6_c00438{left:485.600000pt;}
.xda_c00438{left:486.533333pt;}
.x100_c00438{left:488.266667pt;}
.xdf_c00438{left:489.333333pt;}
.xaa_c00438{left:491.866667pt;}
.x11f_c00438{left:494.133333pt;}
.x109_c00438{left:496.933333pt;}
.xb7_c00438{left:498.933333pt;}
.xcc_c00438{left:499.866667pt;}
.xf9_c00438{left:500.800000pt;}
.x111_c00438{left:501.733333pt;}
.xee_c00438{left:503.333333pt;}
.x146_c00438{left:506.533333pt;}
.xe7_c00438{left:507.600000pt;}
.xbf_c00438{left:509.066667pt;}
.x133_c00438{left:510.400000pt;}
.x101_c00438{left:515.733333pt;}
.xfa_c00438{left:516.800000pt;}
.xd6_c00438{left:517.866667pt;}
.xb8_c00438{left:519.733333pt;}
.xd2_c00438{left:521.466667pt;}
.x127_c00438{left:523.333333pt;}
.x134_c00438{left:525.066667pt;}
.x102_c00438{left:526.000000pt;}
.x137_c00438{left:527.866667pt;}
.xc5_c00438{left:529.066667pt;}
.xf2_c00438{left:531.333333pt;}
.x10c_c00438{left:533.200000pt;}
.x120_c00438{left:534.800000pt;}
.xd7_c00438{left:536.133333pt;}
.xe2_c00438{left:538.800000pt;}
.xfb_c00438{left:540.133333pt;}
.xf3_c00438{left:541.200000pt;}
.x112_c00438{left:542.666667pt;}
.x10a_c00438{left:544.000000pt;}
.xb0_c00438{left:546.533333pt;}
.xe8_c00438{left:548.933333pt;}
.x135_c00438{left:552.000000pt;}
.xef_c00438{left:552.933333pt;}
.x12e_c00438{left:554.000000pt;}
.x141_c00438{left:555.866667pt;}
.xd3_c00438{left:558.000000pt;}
.x103_c00438{left:559.600000pt;}
.x12a_c00438{left:560.533333pt;}
.x13b_c00438{left:562.933333pt;}
.xb1_c00438{left:564.133333pt;}
.xc0_c00438{left:566.400000pt;}
.xe3_c00438{left:569.866667pt;}
.xb9_c00438{left:571.200000pt;}
.x105_c00438{left:572.400000pt;}
.x12d_c00438{left:574.133333pt;}
.xe9_c00438{left:575.466667pt;}
.xc6_c00438{left:577.066667pt;}
.xba_c00438{left:579.466667pt;}
.x139_c00438{left:581.333333pt;}
.xcd_c00438{left:583.466667pt;}
.xdb_c00438{left:586.000000pt;}
.xd4_c00438{left:588.666667pt;}
.x114_c00438{left:589.733333pt;}
.xea_c00438{left:594.000000pt;}
.x142_c00438{left:594.933333pt;}
.x113_c00438{left:595.866667pt;}
.xbb_c00438{left:598.933333pt;}
.x128_c00438{left:601.333333pt;}
.xfc_c00438{left:602.533333pt;}
.x12f_c00438{left:605.200000pt;}
.x138_c00438{left:606.266667pt;}
.xc7_c00438{left:607.733333pt;}
.x12b_c00438{left:608.800000pt;}
.x106_c00438{left:611.466667pt;}
.x13f_c00438{left:613.066667pt;}
.x115_c00438{left:616.000000pt;}
.xdc_c00438{left:620.933333pt;}
.xb2_c00438{left:622.000000pt;}
.x10d_c00438{left:623.066667pt;}
.x148_c00438{left:624.000000pt;}
.xd8_c00438{left:628.266667pt;}
.x121_c00438{left:631.466667pt;}
.x11d_c00438{left:632.666667pt;}
.xce_c00438{left:634.000000pt;}
.xc1_c00438{left:634.933333pt;}
.x147_c00438{left:636.400000pt;}
.x123_c00438{left:638.933333pt;}
.x118_c00438{left:640.000000pt;}
.xb3_c00438{left:642.533333pt;}
.x10e_c00438{left:644.133333pt;}
.xc8_c00438{left:645.866667pt;}
.xf0_c00438{left:647.066667pt;}
.xeb_c00438{left:648.666667pt;}
.xab_c00438{left:650.266667pt;}
.xbc_c00438{left:651.466667pt;}
.x13c_c00438{left:653.466667pt;}
.xe4_c00438{left:655.333333pt;}
.x136_c00438{left:658.000000pt;}
.xc2_c00438{left:659.600000pt;}
.x10f_c00438{left:660.800000pt;}
.x12c_c00438{left:662.133333pt;}
.xc9_c00438{left:664.400000pt;}
.xf7_c00438{left:665.600000pt;}
.xd9_c00438{left:666.933333pt;}
.x3_c00438{left:668.800000pt;}
.xcf_c00438{left:670.133333pt;}
.xdd_c00438{left:673.066667pt;}
.x107_c00438{left:674.533333pt;}
.x11b_c00438{left:675.466667pt;}
.xb4_c00438{left:677.066667pt;}
.xf4_c00438{left:680.133333pt;}
.x129_c00438{left:685.466667pt;}
.xac_c00438{left:688.933333pt;}
}





/* 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_c00439 {
    display:none;
  }
  .loading-indicator_c00439.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00439 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_c00439 { 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_c00439" -> "#page-container .classname_c00439")
 */
.pf_c00439 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00439 { /* 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_c00439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00439 { /* 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_c00439 { /* 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_c00439 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00439 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00439 {overflow:visible;}
  }
}
.c_c00439 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00439 { /* 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_c00439:after { /* webkit #35443 */
  content: '';
}
.t_c00439:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00439 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 */
}
.__c00439 { /* 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_c00439 { /* info for Javascript */
  display:none;
}
.l_c00439 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00439 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00439 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00439: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_c00439 {
    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_c00439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00439.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_c00439 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00439{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00439;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.000000;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;}
.mc5_c00439{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00439{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00439{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mec_c00439{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00439{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mad_c00439{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00439{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00439{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6_c00439{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00439{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00439{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m39_c00439{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00439{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md3_c00439{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00439{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m10_c00439{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00439{transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);}
.m60_c00439{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00439{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.me5_c00439{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mf_c00439{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00439{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md4_c00439{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mb_c00439{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m96_c00439{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00439{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00439{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00439{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00439{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00439{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m84_c00439{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mc_c00439{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00439{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m17_c00439{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m83_c00439{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m57_c00439{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m86_c00439{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me8_c00439{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.md6_c00439{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m37_c00439{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00439{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00439{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m18_c00439{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00439{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00439{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md2_c00439{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m71_c00439{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m75_c00439{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m50_c00439{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m48_c00439{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.me4_c00439{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m81_c00439{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00439{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00439{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m101_c00439{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mca_c00439{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md_c00439{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mef_c00439{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00439{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m46_c00439{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00439{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00439{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m33_c00439{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m52_c00439{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m32_c00439{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m15_c00439{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00439{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00439{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m14_c00439{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m62_c00439{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m44_c00439{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m90_c00439{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m77_c00439{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m43_c00439{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00439{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00439{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.med_c00439{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00439{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m72_c00439{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00439{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00439{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.md7_c00439{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00439{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m29_c00439{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m23_c00439{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m26_c00439{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00439{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m74_c00439{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m38_c00439{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md9_c00439{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me2_c00439{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m24_c00439{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m94_c00439{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00439{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.maa_c00439{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m65_c00439{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m80_c00439{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.me_c00439{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00439{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00439{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m66_c00439{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m54_c00439{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00439{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00439{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00439{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00439{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00439{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m73_c00439{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m25_c00439{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00439{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00439{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m82_c00439{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00439{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m69_c00439{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00439{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md0_c00439{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00439{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mab_c00439{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m98_c00439{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m47_c00439{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00439{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m22_c00439{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00439{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m27_c00439{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m85_c00439{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md5_c00439{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m88_c00439{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.md8_c00439{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00439{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m21_c00439{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m61_c00439{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00439{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00439{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00439{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9_c00439{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00439{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m59_c00439{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00439{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00439{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m30_c00439{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md1_c00439{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m49_c00439{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m31_c00439{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00439{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00439{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00439{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00439{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.me6_c00439{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00439{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me3_c00439{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m35_c00439{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m70_c00439{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m19_c00439{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m89_c00439{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m36_c00439{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m42_c00439{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00439{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8_c00439{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00439{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00439{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m41_c00439{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m34_c00439{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m58_c00439{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00439{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mee_c00439{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mff_c00439{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma_c00439{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00439{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mea_c00439{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m99_c00439{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00439{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00439{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00439{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mac_c00439{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m93_c00439{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3_c00439{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00439{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m87_c00439{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mba_c00439{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.maf_c00439{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00439{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m16_c00439{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00439{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m79_c00439{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00439{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mda_c00439{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00439{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00439{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m78_c00439{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00439{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00439{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m11_c00439{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00439{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00439{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00439{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00439{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m100_c00439{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m28_c00439{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00439{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00439{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00439{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m51_c00439{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00439{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00439{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m45_c00439{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mae_c00439{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7_c00439{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me0_c00439{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00439{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00439{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00439{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m64_c00439{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mce_c00439{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m95_c00439{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m53_c00439{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00439{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m20_c00439{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me7_c00439{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00439{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00439{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.meb_c00439{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m76_c00439{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m97_c00439{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00439{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00439{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00439{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00439{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00439{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00439{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m67_c00439{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me9_c00439{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00439{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00439{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00439{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00439{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00439{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00439{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00439{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m40_c00439{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m55_c00439{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mde_c00439{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me1_c00439{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00439{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m63_c00439{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00439{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00439{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m92_c00439{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m91_c00439{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m68_c00439{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00439{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m56_c00439{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00439{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00439{transform:matrix(0.567250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567250,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls0_c00439{letter-spacing:0.000000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{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__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00439{word-spacing:-11.315789px;}
.ws2_c00439{word-spacing:-9.663230px;}
.ws0_c00439{word-spacing:-6.912409px;}
.ws9_c00439{word-spacing:-1.805556px;}
.wsa_c00439{word-spacing:0.000000px;}
.ws1_c00439{word-spacing:5.619946px;}
.ws3_c00439{word-spacing:7.925501px;}
.ws7_c00439{word-spacing:8.181818px;}
.ws6_c00439{word-spacing:28.555874px;}
.ws4_c00439{word-spacing:41.500000px;}
.ws8_c00439{word-spacing:164.358779px;}
._0_c00439{width:20.789474px;}
.fc0_c00439{color:transparent;}
.fs6_c00439{font-size:30.000000px;}
.fs5_c00439{font-size:54.000000px;}
.fs3_c00439{font-size:60.000000px;}
.fs2_c00439{font-size:66.000000px;}
.fs4_c00439{font-size:72.000000px;}
.fs0_c00439{font-size:78.000000px;}
.fs1_c00439{font-size:84.000000px;}
.y0_c00439{bottom:0.000000px;}
.y6a_c00439{bottom:189.300000px;}
.y37_c00439{bottom:192.900000px;}
.y36_c00439{bottom:198.000000px;}
.y69_c00439{bottom:207.300000px;}
.y35_c00439{bottom:220.200000px;}
.y34_c00439{bottom:237.900000px;}
.y68_c00439{bottom:247.500000px;}
.y33_c00439{bottom:255.300000px;}
.y67_c00439{bottom:265.500000px;}
.y32_c00439{bottom:272.550000px;}
.y66_c00439{bottom:283.500000px;}
.y31_c00439{bottom:289.800000px;}
.y65_c00439{bottom:301.500000px;}
.y30_c00439{bottom:307.500000px;}
.y64_c00439{bottom:319.200000px;}
.y2f_c00439{bottom:324.750000px;}
.y63_c00439{bottom:336.900000px;}
.y2e_c00439{bottom:342.000000px;}
.y62_c00439{bottom:358.200000px;}
.y2d_c00439{bottom:359.250000px;}
.y61_c00439{bottom:376.200000px;}
.y2c_c00439{bottom:376.950000px;}
.y60_c00439{bottom:393.900000px;}
.y2b_c00439{bottom:398.850000px;}
.y5f_c00439{bottom:412.200000px;}
.y2a_c00439{bottom:416.550000px;}
.y5e_c00439{bottom:429.900000px;}
.y29_c00439{bottom:434.550000px;}
.y5d_c00439{bottom:448.200000px;}
.y28_c00439{bottom:452.550000px;}
.y5c_c00439{bottom:466.200000px;}
.y27_c00439{bottom:470.550000px;}
.y5b_c00439{bottom:483.900000px;}
.y26_c00439{bottom:488.550000px;}
.y5a_c00439{bottom:501.600000px;}
.y25_c00439{bottom:506.250000px;}
.y59_c00439{bottom:519.600000px;}
.y24_c00439{bottom:523.950000px;}
.y58_c00439{bottom:537.300000px;}
.y23_c00439{bottom:541.950000px;}
.y57_c00439{bottom:555.300000px;}
.y22_c00439{bottom:559.650000px;}
.y56_c00439{bottom:572.550000px;}
.y21_c00439{bottom:577.650000px;}
.y55_c00439{bottom:590.850000px;}
.y20_c00439{bottom:595.350000px;}
.y54_c00439{bottom:608.550000px;}
.y1f_c00439{bottom:613.050000px;}
.y53_c00439{bottom:626.550000px;}
.y1e_c00439{bottom:631.050000px;}
.y52_c00439{bottom:644.250000px;}
.y1d_c00439{bottom:648.750000px;}
.y51_c00439{bottom:661.950000px;}
.y1c_c00439{bottom:666.750000px;}
.y50_c00439{bottom:679.950000px;}
.y1b_c00439{bottom:684.750000px;}
.y4f_c00439{bottom:697.650000px;}
.y1a_c00439{bottom:703.050000px;}
.y4e_c00439{bottom:715.650000px;}
.y19_c00439{bottom:720.750000px;}
.y4d_c00439{bottom:733.650000px;}
.y18_c00439{bottom:738.750000px;}
.y4c_c00439{bottom:751.650000px;}
.y17_c00439{bottom:756.300000px;}
.y4b_c00439{bottom:768.900000px;}
.y16_c00439{bottom:777.450000px;}
.y4a_c00439{bottom:786.150000px;}
.y15_c00439{bottom:795.750000px;}
.y49_c00439{bottom:804.900000px;}
.y14_c00439{bottom:813.750000px;}
.y48_c00439{bottom:822.600000px;}
.y13_c00439{bottom:831.450000px;}
.y47_c00439{bottom:840.000000px;}
.y12_c00439{bottom:849.450000px;}
.y46_c00439{bottom:858.000000px;}
.y11_c00439{bottom:867.150000px;}
.y45_c00439{bottom:876.750000px;}
.y10_c00439{bottom:885.150000px;}
.y44_c00439{bottom:893.700000px;}
.yf_c00439{bottom:902.850000px;}
.y43_c00439{bottom:911.700000px;}
.ye_c00439{bottom:920.850000px;}
.y42_c00439{bottom:928.950000px;}
.yd_c00439{bottom:941.550000px;}
.y41_c00439{bottom:947.250000px;}
.yc_c00439{bottom:960.300000px;}
.y40_c00439{bottom:964.950000px;}
.yb_c00439{bottom:978.300000px;}
.y3f_c00439{bottom:982.950000px;}
.ya_c00439{bottom:996.000000px;}
.y3e_c00439{bottom:1000.650000px;}
.y9_c00439{bottom:1013.700000px;}
.y3d_c00439{bottom:1018.350000px;}
.y8_c00439{bottom:1031.700000px;}
.y3c_c00439{bottom:1036.050000px;}
.y7_c00439{bottom:1050.450000px;}
.y3b_c00439{bottom:1054.050000px;}
.y6_c00439{bottom:1067.400000px;}
.y3a_c00439{bottom:1076.100000px;}
.y5_c00439{bottom:1085.700000px;}
.y39_c00439{bottom:1102.950000px;}
.y4_c00439{bottom:1103.400000px;}
.y38_c00439{bottom:1120.650000px;}
.y3_c00439{bottom:1122.150000px;}
.y1_c00439{bottom:1146.300000px;}
.y2_c00439{bottom:1147.800000px;}
.h8_c00439{height:30.000000px;}
.h7_c00439{height:54.000000px;}
.h5_c00439{height:60.000000px;}
.h4_c00439{height:66.000000px;}
.h6_c00439{height:72.000000px;}
.h2_c00439{height:78.000000px;}
.h3_c00439{height:84.000000px;}
.h1_c00439{height:1275.750000px;}
.h0_c00439{height:1275.839997px;}
.w0_c00439{width:958.320007px;}
.w1_c00439{width:958.500000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:171.000000px;}
.x5d_c00439{left:174.300000px;}
.xb_c00439{left:189.900000px;}
.x33_c00439{left:190.950000px;}
.x4c_c00439{left:192.300000px;}
.x65_c00439{left:193.350000px;}
.x99_c00439{left:194.550000px;}
.x3_c00439{left:208.800000px;}
.x8d_c00439{left:209.850000px;}
.x41_c00439{left:211.500000px;}
.x9e_c00439{left:213.150000px;}
.x79_c00439{left:214.800000px;}
.x7f_c00439{left:216.000000px;}
.x81_c00439{left:218.550000px;}
.x24_c00439{left:220.350000px;}
.x34_c00439{left:221.550000px;}
.x4d_c00439{left:222.600000px;}
.x1d_c00439{left:224.850000px;}
.x15_c00439{left:226.200000px;}
.x62_c00439{left:227.550000px;}
.x9d_c00439{left:228.600000px;}
.x93_c00439{left:231.000000px;}
.x5e_c00439{left:233.400000px;}
.x4_c00439{left:236.100000px;}
.x7d_c00439{left:237.450000px;}
.xc_c00439{left:238.500000px;}
.x97_c00439{left:240.300000px;}
.x3a_c00439{left:243.450000px;}
.x2a_c00439{left:246.300000px;}
.x95_c00439{left:247.800000px;}
.x16_c00439{left:248.850000px;}
.x5f_c00439{left:252.900000px;}
.x2d_c00439{left:254.250000px;}
.x9a_c00439{left:256.050000px;}
.x53_c00439{left:259.200000px;}
.x25_c00439{left:263.250000px;}
.x35_c00439{left:265.500000px;}
.x7a_c00439{left:267.750000px;}
.x42_c00439{left:269.850000px;}
.x4e_c00439{left:271.200000px;}
.x1e_c00439{left:273.150000px;}
.x48_c00439{left:276.900000px;}
.xd_c00439{left:278.850000px;}
.x8e_c00439{left:280.050000px;}
.x8b_c00439{left:282.150000px;}
.x5_c00439{left:285.000000px;}
.x17_c00439{left:286.350000px;}
.x36_c00439{left:288.150000px;}
.x4f_c00439{left:290.700000px;}
.x58_c00439{left:293.250000px;}
.xe_c00439{left:294.300000px;}
.x6f_c00439{left:296.250000px;}
.x77_c00439{left:298.500000px;}
.x43_c00439{left:300.150000px;}
.x1f_c00439{left:303.450000px;}
.x18_c00439{left:305.850000px;}
.x26_c00439{left:308.550000px;}
.x2e_c00439{left:310.350000px;}
.x74_c00439{left:312.600000px;}
.x46_c00439{left:315.300000px;}
.x84_c00439{left:318.000000px;}
.x3b_c00439{left:319.350000px;}
.x8f_c00439{left:321.750000px;}
.x47_c00439{left:324.000000px;}
.x20_c00439{left:325.050000px;}
.x19_c00439{left:326.400000px;}
.x78_c00439{left:329.400000px;}
.x70_c00439{left:330.600000px;}
.x80_c00439{left:332.250000px;}
.x59_c00439{left:334.350000px;}
.x6c_c00439{left:336.450000px;}
.x85_c00439{left:337.800000px;}
.x69_c00439{left:339.600000px;}
.x3c_c00439{left:341.250000px;}
.x1a_c00439{left:342.900000px;}
.x66_c00439{left:344.250000px;}
.x7b_c00439{left:345.450000px;}
.x2f_c00439{left:347.100000px;}
.x98_c00439{left:348.300000px;}
.x87_c00439{left:349.350000px;}
.x63_c00439{left:350.550000px;}
.x27_c00439{left:351.750000px;}
.x82_c00439{left:353.700000px;}
.x5a_c00439{left:357.000000px;}
.x91_c00439{left:358.500000px;}
.x54_c00439{left:360.300000px;}
.x89_c00439{left:361.800000px;}
.xf_c00439{left:363.000000px;}
.x6d_c00439{left:364.950000px;}
.x6_c00439{left:366.750000px;}
.x5b_c00439{left:367.800000px;}
.x44_c00439{left:369.600000px;}
.x64_c00439{left:371.100000px;}
.x50_c00439{left:372.300000px;}
.x2b_c00439{left:373.350000px;}
.x7e_c00439{left:374.700000px;}
.x37_c00439{left:377.400000px;}
.x60_c00439{left:379.200000px;}
.x21_c00439{left:381.600000px;}
.x94_c00439{left:382.650000px;}
.x9f_c00439{left:384.150000px;}
.x10_c00439{left:386.100000px;}
.x71_c00439{left:387.150000px;}
.x8c_c00439{left:389.850000px;}
.x3d_c00439{left:391.350000px;}
.x7_c00439{left:393.000000px;}
.x30_c00439{left:395.400000px;}
.x5c_c00439{left:398.100000px;}
.x8_c00439{left:400.500000px;}
.x92_c00439{left:401.700000px;}
.x90_c00439{left:403.200000px;}
.x6a_c00439{left:407.250000px;}
.x45_c00439{left:408.900000px;}
.x3e_c00439{left:412.200000px;}
.x11_c00439{left:415.200000px;}
.x83_c00439{left:418.500000px;}
.x9_c00439{left:420.600000px;}
.x49_c00439{left:421.950000px;}
.x1b_c00439{left:423.600000px;}
.x75_c00439{left:426.000000px;}
.x6e_c00439{left:427.650000px;}
.x2_c00439{left:429.900000px;}
.x6b_c00439{left:432.150000px;}
.x86_c00439{left:434.250000px;}
.x2c_c00439{left:438.900000px;}
.x61_c00439{left:440.700000px;}
.x12_c00439{left:442.500000px;}
.x9b_c00439{left:443.550000px;}
.x31_c00439{left:444.750000px;}
.x55_c00439{left:446.250000px;}
.x72_c00439{left:447.600000px;}
.x57_c00439{left:448.650000px;}
.x76_c00439{left:450.450000px;}
.x13_c00439{left:452.550000px;}
.x51_c00439{left:453.600000px;}
.x9c_c00439{left:455.700000px;}
.x1c_c00439{left:458.100000px;}
.x67_c00439{left:459.300000px;}
.x22_c00439{left:460.800000px;}
.x4a_c00439{left:462.300000px;}
.x14_c00439{left:464.100000px;}
.x32_c00439{left:466.050000px;}
.xa_c00439{left:467.400000px;}
.x7c_c00439{left:468.900000px;}
.x28_c00439{left:470.550000px;}
.x96_c00439{left:472.800000px;}
.x56_c00439{left:476.100000px;}
.x38_c00439{left:477.150000px;}
.x29_c00439{left:478.500000px;}
.x68_c00439{left:479.850000px;}
.x73_c00439{left:482.550000px;}
.x3f_c00439{left:486.300000px;}
.x8a_c00439{left:489.600000px;}
.x23_c00439{left:492.150000px;}
.x4b_c00439{left:493.200000px;}
.x40_c00439{left:495.300000px;}
.x88_c00439{left:498.300000px;}
.x39_c00439{left:499.500000px;}
.x52_c00439{left:506.100000px;}
.xa0_c00439{left:528.150000px;}
.xae_c00439{left:529.950000px;}
.x119_c00439{left:541.500000px;}
.x141_c00439{left:543.450000px;}
.xa3_c00439{left:546.150000px;}
.xaa_c00439{left:547.500000px;}
.xc7_c00439{left:549.450000px;}
.xf8_c00439{left:551.100000px;}
.xc8_c00439{left:561.000000px;}
.x10d_c00439{left:562.200000px;}
.x113_c00439{left:563.250000px;}
.xb5_c00439{left:565.950000px;}
.xa1_c00439{left:568.050000px;}
.xab_c00439{left:570.150000px;}
.xaf_c00439{left:571.650000px;}
.xf9_c00439{left:572.700000px;}
.xf2_c00439{left:574.350000px;}
.xa4_c00439{left:576.450000px;}
.xed_c00439{left:577.950000px;}
.x114_c00439{left:579.750000px;}
.x13d_c00439{left:580.950000px;}
.xdd_c00439{left:582.000000px;}
.xcf_c00439{left:584.250000px;}
.xbd_c00439{left:587.250000px;}
.x128_c00439{left:590.250000px;}
.xa2_c00439{left:592.500000px;}
.xd0_c00439{left:594.000000px;}
.x115_c00439{left:595.500000px;}
.xe2_c00439{left:597.900000px;}
.x109_c00439{left:598.950000px;}
.x139_c00439{left:600.300000px;}
.xd5_c00439{left:602.100000px;}
.xb0_c00439{left:606.150000px;}
.xac_c00439{left:607.200000px;}
.x11e_c00439{left:608.400000px;}
.x10a_c00439{left:609.750000px;}
.xbe_c00439{left:611.400000px;}
.xd6_c00439{left:613.200000px;}
.x116_c00439{left:614.550000px;}
.xfa_c00439{left:615.600000px;}
.xe3_c00439{left:619.800000px;}
.x13a_c00439{left:622.200000px;}
.xf3_c00439{left:623.700000px;}
.xc9_c00439{left:625.800000px;}
.xa5_c00439{left:628.650000px;}
.xb6_c00439{left:630.750000px;}
.x10e_c00439{left:632.100000px;}
.xee_c00439{left:634.800000px;}
.xfb_c00439{left:636.900000px;}
.xde_c00439{left:638.850000px;}
.xa6_c00439{left:642.300000px;}
.x10f_c00439{left:644.400000px;}
.xf4_c00439{left:646.350000px;}
.xd1_c00439{left:648.750000px;}
.x11f_c00439{left:651.300000px;}
.xea_c00439{left:653.250000px;}
.xb7_c00439{left:654.450000px;}
.x131_c00439{left:656.850000px;}
.xad_c00439{left:658.050000px;}
.x13b_c00439{left:659.700000px;}
.xd7_c00439{left:662.100000px;}
.x117_c00439{left:664.200000px;}
.xe4_c00439{left:666.600000px;}
.x129_c00439{left:668.850000px;}
.xbf_c00439{left:671.100000px;}
.x121_c00439{left:673.500000px;}
.x132_c00439{left:674.550000px;}
.xb1_c00439{left:675.600000px;}
.x105_c00439{left:678.000000px;}
.xa7_c00439{left:681.900000px;}
.xe5_c00439{left:684.300000px;}
.x106_c00439{left:686.250000px;}
.x136_c00439{left:687.750000px;}
.xef_c00439{left:688.800000px;}
.xd8_c00439{left:691.650000px;}
.x11a_c00439{left:693.000000px;}
.x107_c00439{left:694.200000px;}
.xc0_c00439{left:696.000000px;}
.xd2_c00439{left:698.850000px;}
.x100_c00439{left:700.650000px;}
.xca_c00439{left:702.150000px;}
.xc1_c00439{left:706.800000px;}
.x122_c00439{left:708.450000px;}
.x140_c00439{left:709.650000px;}
.xb8_c00439{left:710.850000px;}
.xf0_c00439{left:711.900000px;}
.xd9_c00439{left:712.950000px;}
.xcb_c00439{left:714.450000px;}
.xeb_c00439{left:715.950000px;}
.xc2_c00439{left:718.650000px;}
.xfc_c00439{left:719.700000px;}
.x101_c00439{left:721.200000px;}
.x12c_c00439{left:722.400000px;}
.xf5_c00439{left:723.750000px;}
.x110_c00439{left:725.700000px;}
.xdf_c00439{left:729.150000px;}
.x10b_c00439{left:730.650000px;}
.xda_c00439{left:731.700000px;}
.xa8_c00439{left:733.350000px;}
.x108_c00439{left:734.550000px;}
.xb9_c00439{left:736.050000px;}
.x133_c00439{left:737.250000px;}
.xe6_c00439{left:739.350000px;}
.x12b_c00439{left:741.000000px;}
.x142_c00439{left:744.150000px;}
.xf6_c00439{left:746.850000px;}
.x137_c00439{left:747.900000px;}
.xc3_c00439{left:749.250000px;}
.x126_c00439{left:750.300000px;}
.x124_c00439{left:751.650000px;}
.xdb_c00439{left:753.300000px;}
.x134_c00439{left:755.550000px;}
.xc4_c00439{left:759.000000px;}
.x135_c00439{left:760.200000px;}
.x11b_c00439{left:761.850000px;}
.xb2_c00439{left:763.050000px;}
.x102_c00439{left:764.400000px;}
.xcc_c00439{left:767.700000px;}
.xc5_c00439{left:770.100000px;}
.x12a_c00439{left:771.600000px;}
.xb3_c00439{left:773.550000px;}
.x118_c00439{left:775.500000px;}
.xf1_c00439{left:777.450000px;}
.x138_c00439{left:779.550000px;}
.x123_c00439{left:780.750000px;}
.xcd_c00439{left:782.100000px;}
.xe0_c00439{left:783.600000px;}
.xd3_c00439{left:785.250000px;}
.xa9_c00439{left:787.650000px;}
.xe7_c00439{left:790.200000px;}
.x13f_c00439{left:792.150000px;}
.x130_c00439{left:794.700000px;}
.x103_c00439{left:795.750000px;}
.xf7_c00439{left:796.950000px;}
.x13c_c00439{left:798.000000px;}
.xba_c00439{left:799.050000px;}
.xe1_c00439{left:800.550000px;}
.xfd_c00439{left:804.000000px;}
.xe8_c00439{left:806.700000px;}
.x10c_c00439{left:811.050000px;}
.xb4_c00439{left:812.400000px;}
.x111_c00439{left:814.950000px;}
.x104_c00439{left:817.350000px;}
.xbb_c00439{left:820.650000px;}
.xc6_c00439{left:822.000000px;}
.xfe_c00439{left:824.850000px;}
.x112_c00439{left:827.550000px;}
.x12e_c00439{left:832.950000px;}
.x120_c00439{left:834.750000px;}
.x11c_c00439{left:837.000000px;}
.x12d_c00439{left:838.050000px;}
.x13e_c00439{left:839.850000px;}
.xdc_c00439{left:842.250000px;}
.xbc_c00439{left:844.350000px;}
.xce_c00439{left:846.750000px;}
.xec_c00439{left:847.950000px;}
.xff_c00439{left:849.750000px;}
.x125_c00439{left:851.400000px;}
.xd4_c00439{left:852.600000px;}
.x12f_c00439{left:854.550000px;}
.x11d_c00439{left:859.650000px;}
.x127_c00439{left:861.150000px;}
.xe9_c00439{left:862.950000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws5_c00439{word-spacing:-10.058480pt;}
.ws2_c00439{word-spacing:-8.589538pt;}
.ws0_c00439{word-spacing:-6.144363pt;}
.ws9_c00439{word-spacing:-1.604938pt;}
.wsa_c00439{word-spacing:0.000000pt;}
.ws1_c00439{word-spacing:4.995508pt;}
.ws3_c00439{word-spacing:7.044890pt;}
.ws7_c00439{word-spacing:7.272727pt;}
.ws6_c00439{word-spacing:25.382999pt;}
.ws4_c00439{word-spacing:36.888889pt;}
.ws8_c00439{word-spacing:146.096692pt;}
._0_c00439{width:18.479532pt;}
.fs6_c00439{font-size:26.666667pt;}
.fs5_c00439{font-size:48.000000pt;}
.fs3_c00439{font-size:53.333333pt;}
.fs2_c00439{font-size:58.666667pt;}
.fs4_c00439{font-size:64.000000pt;}
.fs0_c00439{font-size:69.333333pt;}
.fs1_c00439{font-size:74.666667pt;}
.y0_c00439{bottom:0.000000pt;}
.y6a_c00439{bottom:168.266667pt;}
.y37_c00439{bottom:171.466667pt;}
.y36_c00439{bottom:176.000000pt;}
.y69_c00439{bottom:184.266667pt;}
.y35_c00439{bottom:195.733333pt;}
.y34_c00439{bottom:211.466667pt;}
.y68_c00439{bottom:220.000000pt;}
.y33_c00439{bottom:226.933333pt;}
.y67_c00439{bottom:236.000000pt;}
.y32_c00439{bottom:242.266667pt;}
.y66_c00439{bottom:252.000000pt;}
.y31_c00439{bottom:257.600000pt;}
.y65_c00439{bottom:268.000000pt;}
.y30_c00439{bottom:273.333333pt;}
.y64_c00439{bottom:283.733333pt;}
.y2f_c00439{bottom:288.666667pt;}
.y63_c00439{bottom:299.466667pt;}
.y2e_c00439{bottom:304.000000pt;}
.y62_c00439{bottom:318.400000pt;}
.y2d_c00439{bottom:319.333333pt;}
.y61_c00439{bottom:334.400000pt;}
.y2c_c00439{bottom:335.066667pt;}
.y60_c00439{bottom:350.133333pt;}
.y2b_c00439{bottom:354.533333pt;}
.y5f_c00439{bottom:366.400000pt;}
.y2a_c00439{bottom:370.266667pt;}
.y5e_c00439{bottom:382.133333pt;}
.y29_c00439{bottom:386.266667pt;}
.y5d_c00439{bottom:398.400000pt;}
.y28_c00439{bottom:402.266667pt;}
.y5c_c00439{bottom:414.400000pt;}
.y27_c00439{bottom:418.266667pt;}
.y5b_c00439{bottom:430.133333pt;}
.y26_c00439{bottom:434.266667pt;}
.y5a_c00439{bottom:445.866667pt;}
.y25_c00439{bottom:450.000000pt;}
.y59_c00439{bottom:461.866667pt;}
.y24_c00439{bottom:465.733333pt;}
.y58_c00439{bottom:477.600000pt;}
.y23_c00439{bottom:481.733333pt;}
.y57_c00439{bottom:493.600000pt;}
.y22_c00439{bottom:497.466667pt;}
.y56_c00439{bottom:508.933333pt;}
.y21_c00439{bottom:513.466667pt;}
.y55_c00439{bottom:525.200000pt;}
.y20_c00439{bottom:529.200000pt;}
.y54_c00439{bottom:540.933333pt;}
.y1f_c00439{bottom:544.933333pt;}
.y53_c00439{bottom:556.933333pt;}
.y1e_c00439{bottom:560.933333pt;}
.y52_c00439{bottom:572.666667pt;}
.y1d_c00439{bottom:576.666667pt;}
.y51_c00439{bottom:588.400000pt;}
.y1c_c00439{bottom:592.666667pt;}
.y50_c00439{bottom:604.400000pt;}
.y1b_c00439{bottom:608.666667pt;}
.y4f_c00439{bottom:620.133333pt;}
.y1a_c00439{bottom:624.933333pt;}
.y4e_c00439{bottom:636.133333pt;}
.y19_c00439{bottom:640.666667pt;}
.y4d_c00439{bottom:652.133333pt;}
.y18_c00439{bottom:656.666667pt;}
.y4c_c00439{bottom:668.133333pt;}
.y17_c00439{bottom:672.266667pt;}
.y4b_c00439{bottom:683.466667pt;}
.y16_c00439{bottom:691.066667pt;}
.y4a_c00439{bottom:698.800000pt;}
.y15_c00439{bottom:707.333333pt;}
.y49_c00439{bottom:715.466667pt;}
.y14_c00439{bottom:723.333333pt;}
.y48_c00439{bottom:731.200000pt;}
.y13_c00439{bottom:739.066667pt;}
.y47_c00439{bottom:746.666667pt;}
.y12_c00439{bottom:755.066667pt;}
.y46_c00439{bottom:762.666667pt;}
.y11_c00439{bottom:770.800000pt;}
.y45_c00439{bottom:779.333333pt;}
.y10_c00439{bottom:786.800000pt;}
.y44_c00439{bottom:794.400000pt;}
.yf_c00439{bottom:802.533333pt;}
.y43_c00439{bottom:810.400000pt;}
.ye_c00439{bottom:818.533333pt;}
.y42_c00439{bottom:825.733333pt;}
.yd_c00439{bottom:836.933333pt;}
.y41_c00439{bottom:842.000000pt;}
.yc_c00439{bottom:853.600000pt;}
.y40_c00439{bottom:857.733333pt;}
.yb_c00439{bottom:869.600000pt;}
.y3f_c00439{bottom:873.733333pt;}
.ya_c00439{bottom:885.333333pt;}
.y3e_c00439{bottom:889.466667pt;}
.y9_c00439{bottom:901.066667pt;}
.y3d_c00439{bottom:905.200000pt;}
.y8_c00439{bottom:917.066667pt;}
.y3c_c00439{bottom:920.933333pt;}
.y7_c00439{bottom:933.733333pt;}
.y3b_c00439{bottom:936.933333pt;}
.y6_c00439{bottom:948.800000pt;}
.y3a_c00439{bottom:956.533333pt;}
.y5_c00439{bottom:965.066667pt;}
.y39_c00439{bottom:980.400000pt;}
.y4_c00439{bottom:980.800000pt;}
.y38_c00439{bottom:996.133333pt;}
.y3_c00439{bottom:997.466667pt;}
.y1_c00439{bottom:1018.933333pt;}
.y2_c00439{bottom:1020.266667pt;}
.h8_c00439{height:26.666667pt;}
.h7_c00439{height:48.000000pt;}
.h5_c00439{height:53.333333pt;}
.h4_c00439{height:58.666667pt;}
.h6_c00439{height:64.000000pt;}
.h2_c00439{height:69.333333pt;}
.h3_c00439{height:74.666667pt;}
.h1_c00439{height:1134.000000pt;}
.h0_c00439{height:1134.079997pt;}
.w0_c00439{width:851.840007pt;}
.w1_c00439{width:852.000000pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:152.000000pt;}
.x5d_c00439{left:154.933333pt;}
.xb_c00439{left:168.800000pt;}
.x33_c00439{left:169.733333pt;}
.x4c_c00439{left:170.933333pt;}
.x65_c00439{left:171.866667pt;}
.x99_c00439{left:172.933333pt;}
.x3_c00439{left:185.600000pt;}
.x8d_c00439{left:186.533333pt;}
.x41_c00439{left:188.000000pt;}
.x9e_c00439{left:189.466667pt;}
.x79_c00439{left:190.933333pt;}
.x7f_c00439{left:192.000000pt;}
.x81_c00439{left:194.266667pt;}
.x24_c00439{left:195.866667pt;}
.x34_c00439{left:196.933333pt;}
.x4d_c00439{left:197.866667pt;}
.x1d_c00439{left:199.866667pt;}
.x15_c00439{left:201.066667pt;}
.x62_c00439{left:202.266667pt;}
.x9d_c00439{left:203.200000pt;}
.x93_c00439{left:205.333333pt;}
.x5e_c00439{left:207.466667pt;}
.x4_c00439{left:209.866667pt;}
.x7d_c00439{left:211.066667pt;}
.xc_c00439{left:212.000000pt;}
.x97_c00439{left:213.600000pt;}
.x3a_c00439{left:216.400000pt;}
.x2a_c00439{left:218.933333pt;}
.x95_c00439{left:220.266667pt;}
.x16_c00439{left:221.200000pt;}
.x5f_c00439{left:224.800000pt;}
.x2d_c00439{left:226.000000pt;}
.x9a_c00439{left:227.600000pt;}
.x53_c00439{left:230.400000pt;}
.x25_c00439{left:234.000000pt;}
.x35_c00439{left:236.000000pt;}
.x7a_c00439{left:238.000000pt;}
.x42_c00439{left:239.866667pt;}
.x4e_c00439{left:241.066667pt;}
.x1e_c00439{left:242.800000pt;}
.x48_c00439{left:246.133333pt;}
.xd_c00439{left:247.866667pt;}
.x8e_c00439{left:248.933333pt;}
.x8b_c00439{left:250.800000pt;}
.x5_c00439{left:253.333333pt;}
.x17_c00439{left:254.533333pt;}
.x36_c00439{left:256.133333pt;}
.x4f_c00439{left:258.400000pt;}
.x58_c00439{left:260.666667pt;}
.xe_c00439{left:261.600000pt;}
.x6f_c00439{left:263.333333pt;}
.x77_c00439{left:265.333333pt;}
.x43_c00439{left:266.800000pt;}
.x1f_c00439{left:269.733333pt;}
.x18_c00439{left:271.866667pt;}
.x26_c00439{left:274.266667pt;}
.x2e_c00439{left:275.866667pt;}
.x74_c00439{left:277.866667pt;}
.x46_c00439{left:280.266667pt;}
.x84_c00439{left:282.666667pt;}
.x3b_c00439{left:283.866667pt;}
.x8f_c00439{left:286.000000pt;}
.x47_c00439{left:288.000000pt;}
.x20_c00439{left:288.933333pt;}
.x19_c00439{left:290.133333pt;}
.x78_c00439{left:292.800000pt;}
.x70_c00439{left:293.866667pt;}
.x80_c00439{left:295.333333pt;}
.x59_c00439{left:297.200000pt;}
.x6c_c00439{left:299.066667pt;}
.x85_c00439{left:300.266667pt;}
.x69_c00439{left:301.866667pt;}
.x3c_c00439{left:303.333333pt;}
.x1a_c00439{left:304.800000pt;}
.x66_c00439{left:306.000000pt;}
.x7b_c00439{left:307.066667pt;}
.x2f_c00439{left:308.533333pt;}
.x98_c00439{left:309.600000pt;}
.x87_c00439{left:310.533333pt;}
.x63_c00439{left:311.600000pt;}
.x27_c00439{left:312.666667pt;}
.x82_c00439{left:314.400000pt;}
.x5a_c00439{left:317.333333pt;}
.x91_c00439{left:318.666667pt;}
.x54_c00439{left:320.266667pt;}
.x89_c00439{left:321.600000pt;}
.xf_c00439{left:322.666667pt;}
.x6d_c00439{left:324.400000pt;}
.x6_c00439{left:326.000000pt;}
.x5b_c00439{left:326.933333pt;}
.x44_c00439{left:328.533333pt;}
.x64_c00439{left:329.866667pt;}
.x50_c00439{left:330.933333pt;}
.x2b_c00439{left:331.866667pt;}
.x7e_c00439{left:333.066667pt;}
.x37_c00439{left:335.466667pt;}
.x60_c00439{left:337.066667pt;}
.x21_c00439{left:339.200000pt;}
.x94_c00439{left:340.133333pt;}
.x9f_c00439{left:341.466667pt;}
.x10_c00439{left:343.200000pt;}
.x71_c00439{left:344.133333pt;}
.x8c_c00439{left:346.533333pt;}
.x3d_c00439{left:347.866667pt;}
.x7_c00439{left:349.333333pt;}
.x30_c00439{left:351.466667pt;}
.x5c_c00439{left:353.866667pt;}
.x8_c00439{left:356.000000pt;}
.x92_c00439{left:357.066667pt;}
.x90_c00439{left:358.400000pt;}
.x6a_c00439{left:362.000000pt;}
.x45_c00439{left:363.466667pt;}
.x3e_c00439{left:366.400000pt;}
.x11_c00439{left:369.066667pt;}
.x83_c00439{left:372.000000pt;}
.x9_c00439{left:373.866667pt;}
.x49_c00439{left:375.066667pt;}
.x1b_c00439{left:376.533333pt;}
.x75_c00439{left:378.666667pt;}
.x6e_c00439{left:380.133333pt;}
.x2_c00439{left:382.133333pt;}
.x6b_c00439{left:384.133333pt;}
.x86_c00439{left:386.000000pt;}
.x2c_c00439{left:390.133333pt;}
.x61_c00439{left:391.733333pt;}
.x12_c00439{left:393.333333pt;}
.x9b_c00439{left:394.266667pt;}
.x31_c00439{left:395.333333pt;}
.x55_c00439{left:396.666667pt;}
.x72_c00439{left:397.866667pt;}
.x57_c00439{left:398.800000pt;}
.x76_c00439{left:400.400000pt;}
.x13_c00439{left:402.266667pt;}
.x51_c00439{left:403.200000pt;}
.x9c_c00439{left:405.066667pt;}
.x1c_c00439{left:407.200000pt;}
.x67_c00439{left:408.266667pt;}
.x22_c00439{left:409.600000pt;}
.x4a_c00439{left:410.933333pt;}
.x14_c00439{left:412.533333pt;}
.x32_c00439{left:414.266667pt;}
.xa_c00439{left:415.466667pt;}
.x7c_c00439{left:416.800000pt;}
.x28_c00439{left:418.266667pt;}
.x96_c00439{left:420.266667pt;}
.x56_c00439{left:423.200000pt;}
.x38_c00439{left:424.133333pt;}
.x29_c00439{left:425.333333pt;}
.x68_c00439{left:426.533333pt;}
.x73_c00439{left:428.933333pt;}
.x3f_c00439{left:432.266667pt;}
.x8a_c00439{left:435.200000pt;}
.x23_c00439{left:437.466667pt;}
.x4b_c00439{left:438.400000pt;}
.x40_c00439{left:440.266667pt;}
.x88_c00439{left:442.933333pt;}
.x39_c00439{left:444.000000pt;}
.x52_c00439{left:449.866667pt;}
.xa0_c00439{left:469.466667pt;}
.xae_c00439{left:471.066667pt;}
.x119_c00439{left:481.333333pt;}
.x141_c00439{left:483.066667pt;}
.xa3_c00439{left:485.466667pt;}
.xaa_c00439{left:486.666667pt;}
.xc7_c00439{left:488.400000pt;}
.xf8_c00439{left:489.866667pt;}
.xc8_c00439{left:498.666667pt;}
.x10d_c00439{left:499.733333pt;}
.x113_c00439{left:500.666667pt;}
.xb5_c00439{left:503.066667pt;}
.xa1_c00439{left:504.933333pt;}
.xab_c00439{left:506.800000pt;}
.xaf_c00439{left:508.133333pt;}
.xf9_c00439{left:509.066667pt;}
.xf2_c00439{left:510.533333pt;}
.xa4_c00439{left:512.400000pt;}
.xed_c00439{left:513.733333pt;}
.x114_c00439{left:515.333333pt;}
.x13d_c00439{left:516.400000pt;}
.xdd_c00439{left:517.333333pt;}
.xcf_c00439{left:519.333333pt;}
.xbd_c00439{left:522.000000pt;}
.x128_c00439{left:524.666667pt;}
.xa2_c00439{left:526.666667pt;}
.xd0_c00439{left:528.000000pt;}
.x115_c00439{left:529.333333pt;}
.xe2_c00439{left:531.466667pt;}
.x109_c00439{left:532.400000pt;}
.x139_c00439{left:533.600000pt;}
.xd5_c00439{left:535.200000pt;}
.xb0_c00439{left:538.800000pt;}
.xac_c00439{left:539.733333pt;}
.x11e_c00439{left:540.800000pt;}
.x10a_c00439{left:542.000000pt;}
.xbe_c00439{left:543.466667pt;}
.xd6_c00439{left:545.066667pt;}
.x116_c00439{left:546.266667pt;}
.xfa_c00439{left:547.200000pt;}
.xe3_c00439{left:550.933333pt;}
.x13a_c00439{left:553.066667pt;}
.xf3_c00439{left:554.400000pt;}
.xc9_c00439{left:556.266667pt;}
.xa5_c00439{left:558.800000pt;}
.xb6_c00439{left:560.666667pt;}
.x10e_c00439{left:561.866667pt;}
.xee_c00439{left:564.266667pt;}
.xfb_c00439{left:566.133333pt;}
.xde_c00439{left:567.866667pt;}
.xa6_c00439{left:570.933333pt;}
.x10f_c00439{left:572.800000pt;}
.xf4_c00439{left:574.533333pt;}
.xd1_c00439{left:576.666667pt;}
.x11f_c00439{left:578.933333pt;}
.xea_c00439{left:580.666667pt;}
.xb7_c00439{left:581.733333pt;}
.x131_c00439{left:583.866667pt;}
.xad_c00439{left:584.933333pt;}
.x13b_c00439{left:586.400000pt;}
.xd7_c00439{left:588.533333pt;}
.x117_c00439{left:590.400000pt;}
.xe4_c00439{left:592.533333pt;}
.x129_c00439{left:594.533333pt;}
.xbf_c00439{left:596.533333pt;}
.x121_c00439{left:598.666667pt;}
.x132_c00439{left:599.600000pt;}
.xb1_c00439{left:600.533333pt;}
.x105_c00439{left:602.666667pt;}
.xa7_c00439{left:606.133333pt;}
.xe5_c00439{left:608.266667pt;}
.x106_c00439{left:610.000000pt;}
.x136_c00439{left:611.333333pt;}
.xef_c00439{left:612.266667pt;}
.xd8_c00439{left:614.800000pt;}
.x11a_c00439{left:616.000000pt;}
.x107_c00439{left:617.066667pt;}
.xc0_c00439{left:618.666667pt;}
.xd2_c00439{left:621.200000pt;}
.x100_c00439{left:622.800000pt;}
.xca_c00439{left:624.133333pt;}
.xc1_c00439{left:628.266667pt;}
.x122_c00439{left:629.733333pt;}
.x140_c00439{left:630.800000pt;}
.xb8_c00439{left:631.866667pt;}
.xf0_c00439{left:632.800000pt;}
.xd9_c00439{left:633.733333pt;}
.xcb_c00439{left:635.066667pt;}
.xeb_c00439{left:636.400000pt;}
.xc2_c00439{left:638.800000pt;}
.xfc_c00439{left:639.733333pt;}
.x101_c00439{left:641.066667pt;}
.x12c_c00439{left:642.133333pt;}
.xf5_c00439{left:643.333333pt;}
.x110_c00439{left:645.066667pt;}
.xdf_c00439{left:648.133333pt;}
.x10b_c00439{left:649.466667pt;}
.xda_c00439{left:650.400000pt;}
.xa8_c00439{left:651.866667pt;}
.x108_c00439{left:652.933333pt;}
.xb9_c00439{left:654.266667pt;}
.x133_c00439{left:655.333333pt;}
.xe6_c00439{left:657.200000pt;}
.x12b_c00439{left:658.666667pt;}
.x142_c00439{left:661.466667pt;}
.xf6_c00439{left:663.866667pt;}
.x137_c00439{left:664.800000pt;}
.xc3_c00439{left:666.000000pt;}
.x126_c00439{left:666.933333pt;}
.x124_c00439{left:668.133333pt;}
.xdb_c00439{left:669.600000pt;}
.x134_c00439{left:671.600000pt;}
.xc4_c00439{left:674.666667pt;}
.x135_c00439{left:675.733333pt;}
.x11b_c00439{left:677.200000pt;}
.xb2_c00439{left:678.266667pt;}
.x102_c00439{left:679.466667pt;}
.xcc_c00439{left:682.400000pt;}
.xc5_c00439{left:684.533333pt;}
.x12a_c00439{left:685.866667pt;}
.xb3_c00439{left:687.600000pt;}
.x118_c00439{left:689.333333pt;}
.xf1_c00439{left:691.066667pt;}
.x138_c00439{left:692.933333pt;}
.x123_c00439{left:694.000000pt;}
.xcd_c00439{left:695.200000pt;}
.xe0_c00439{left:696.533333pt;}
.xd3_c00439{left:698.000000pt;}
.xa9_c00439{left:700.133333pt;}
.xe7_c00439{left:702.400000pt;}
.x13f_c00439{left:704.133333pt;}
.x130_c00439{left:706.400000pt;}
.x103_c00439{left:707.333333pt;}
.xf7_c00439{left:708.400000pt;}
.x13c_c00439{left:709.333333pt;}
.xba_c00439{left:710.266667pt;}
.xe1_c00439{left:711.600000pt;}
.xfd_c00439{left:714.666667pt;}
.xe8_c00439{left:717.066667pt;}
.x10c_c00439{left:720.933333pt;}
.xb4_c00439{left:722.133333pt;}
.x111_c00439{left:724.400000pt;}
.x104_c00439{left:726.533333pt;}
.xbb_c00439{left:729.466667pt;}
.xc6_c00439{left:730.666667pt;}
.xfe_c00439{left:733.200000pt;}
.x112_c00439{left:735.600000pt;}
.x12e_c00439{left:740.400000pt;}
.x120_c00439{left:742.000000pt;}
.x11c_c00439{left:744.000000pt;}
.x12d_c00439{left:744.933333pt;}
.x13e_c00439{left:746.533333pt;}
.xdc_c00439{left:748.666667pt;}
.xbc_c00439{left:750.533333pt;}
.xce_c00439{left:752.666667pt;}
.xec_c00439{left:753.733333pt;}
.xff_c00439{left:755.333333pt;}
.x125_c00439{left:756.800000pt;}
.xd4_c00439{left:757.866667pt;}
.x12f_c00439{left:759.600000pt;}
.x11d_c00439{left:764.133333pt;}
.x127_c00439{left:765.466667pt;}
.xe9_c00439{left:767.066667pt;}
}





/* 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_c00440 {
    display:none;
  }
  .loading-indicator_c00440.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00440 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_c00440 { 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_c00440" -> "#page-container .classname_c00440")
 */
.pf_c00440 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00440 { /* 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_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00440 { /* 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_c00440 { /* 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_c00440 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00440 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00440 {overflow:visible;}
  }
}
.c_c00440 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00440 { /* 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_c00440:after { /* webkit #35443 */
  content: '';
}
.t_c00440:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00440 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 */
}
.__c00440 { /* 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_c00440 { /* info for Javascript */
  display:none;
}
.l_c00440 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00440 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00440 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00440: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_c00440 {
    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_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00440.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_c00440 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00440;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.000000;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;}
.m106_c00440{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m100_c00440{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00440{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00440{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00440{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00440{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m60_c00440{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00440{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00440{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.me2_c00440{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00440{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00440{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m85_c00440{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00440{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m96_c00440{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00440{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00440{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00440{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m21_c00440{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mba_c00440{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00440{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m45_c00440{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m83_c00440{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m53_c00440{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mff_c00440{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m23_c00440{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m57_c00440{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m2_c00440{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00440{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m17_c00440{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00440{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mca_c00440{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m102_c00440{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00440{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00440{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m110_c00440{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m89_c00440{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00440{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00440{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m67_c00440{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00440{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.me8_c00440{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00440{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md6_c00440{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m62_c00440{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md3_c00440{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00440{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mef_c00440{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mce_c00440{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00440{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me4_c00440{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00440{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m88_c00440{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00440{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m46_c00440{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00440{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00440{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00440{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m66_c00440{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m101_c00440{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m33_c00440{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00440{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00440{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m92_c00440{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md_c00440{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m22_c00440{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00440{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00440{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00440{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m79_c00440{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me_c00440{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mab_c00440{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00440{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00440{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00440{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00440{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00440{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m87_c00440{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m20_c00440{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00440{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00440{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00440{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md9_c00440{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00440{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00440{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m58_c00440{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m16_c00440{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00440{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m84_c00440{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m77_c00440{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.me9_c00440{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00440{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m19_c00440{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00440{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m49_c00440{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00440{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00440{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00440{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m120_c00440{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m59_c00440{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m86_c00440{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m29_c00440{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m82_c00440{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m56_c00440{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00440{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m70_c00440{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00440{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00440{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md1_c00440{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00440{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m75_c00440{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m52_c00440{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m118_c00440{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m28_c00440{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00440{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9_c00440{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m34_c00440{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00440{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00440{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00440{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m42_c00440{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m78_c00440{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb_c00440{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00440{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m117_c00440{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00440{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00440{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m39_c00440{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m51_c00440{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00440{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00440{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00440{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00440{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m32_c00440{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00440{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mad_c00440{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00440{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mac_c00440{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00440{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00440{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me6_c00440{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m40_c00440{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00440{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6_c00440{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m50_c00440{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m30_c00440{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m31_c00440{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md7_c00440{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00440{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00440{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md0_c00440{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m13_c00440{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00440{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7_c00440{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00440{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m112_c00440{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m27_c00440{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00440{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.md4_c00440{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00440{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m115_c00440{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.me5_c00440{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m18_c00440{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me3_c00440{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00440{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.maf_c00440{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m81_c00440{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me7_c00440{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00440{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mae_c00440{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00440{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m63_c00440{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m93_c00440{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m8_c00440{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md2_c00440{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m68_c00440{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00440{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m24_c00440{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m103_c00440{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mee_c00440{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m76_c00440{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00440{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m114_c00440{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00440{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00440{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00440{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m97_c00440{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00440{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m99_c00440{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m71_c00440{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00440{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m41_c00440{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00440{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m38_c00440{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00440{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m111_c00440{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00440{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m12_c00440{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m73_c00440{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00440{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00440{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10_c00440{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m14_c00440{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00440{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00440{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m43_c00440{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00440{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m105_c00440{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00440{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m74_c00440{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m11_c00440{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00440{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00440{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00440{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me1_c00440{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m48_c00440{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m90_c00440{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00440{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m26_c00440{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00440{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m15_c00440{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00440{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00440{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m109_c00440{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc_c00440{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00440{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00440{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00440{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00440{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m37_c00440{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma_c00440{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00440{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00440{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00440{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00440{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mec_c00440{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m116_c00440{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.med_c00440{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.me0_c00440{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00440{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m80_c00440{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m98_c00440{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m108_c00440{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00440{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m69_c00440{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00440{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mf_c00440{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00440{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m72_c00440{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m55_c00440{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m91_c00440{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m107_c00440{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00440{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00440{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mde_c00440{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m95_c00440{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00440{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00440{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m25_c00440{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m65_c00440{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m61_c00440{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m104_c00440{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md5_c00440{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m94_c00440{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.meb_c00440{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00440{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mda_c00440{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m44_c00440{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00440{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.maa_c00440{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m4_c00440{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.md8_c00440{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m113_c00440{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00440{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m54_c00440{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m64_c00440{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m119_c00440{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00440{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00440{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mea_c00440{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00440{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00440{transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);}
.m35_c00440{transform:matrix(0.436000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00440{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m36_c00440{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{transform:matrix(0.458000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458000,0.000000,0.000000,0.250000,0,0);}
.m47_c00440{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls0_c00440{letter-spacing:0.000000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{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__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00440{word-spacing:-15.000000px;}
.wsa_c00440{word-spacing:-8.658851px;}
.ws4_c00440{word-spacing:-8.298969px;}
.ws8_c00440{word-spacing:-7.050955px;}
.ws5_c00440{word-spacing:-4.892642px;}
.ws7_c00440{word-spacing:-4.500000px;}
.ws9_c00440{word-spacing:-1.666667px;}
.wsc_c00440{word-spacing:0.000000px;}
.wsb_c00440{word-spacing:7.205882px;}
.ws1_c00440{word-spacing:28.426230px;}
.ws3_c00440{word-spacing:40.000000px;}
.ws2_c00440{word-spacing:69.125000px;}
.ws0_c00440{word-spacing:74.722222px;}
._1_c00440{width:74.166667px;}
._0_c00440{width:84.583333px;}
.fc0_c00440{color:transparent;}
.fs5_c00440{font-size:30.000000px;}
.fs4_c00440{font-size:54.000000px;}
.fs2_c00440{font-size:60.000000px;}
.fs3_c00440{font-size:66.000000px;}
.fs6_c00440{font-size:72.000000px;}
.fs0_c00440{font-size:84.000000px;}
.fs1_c00440{font-size:96.000000px;}
.y0_c00440{bottom:0.000000px;}
.y72_c00440{bottom:191.250000px;}
.y63_c00440{bottom:192.600000px;}
.y71_c00440{bottom:205.650000px;}
.y62_c00440{bottom:206.700000px;}
.y70_c00440{bottom:220.350000px;}
.y61_c00440{bottom:221.100000px;}
.y6f_c00440{bottom:234.750000px;}
.y60_c00440{bottom:235.050000px;}
.y6e_c00440{bottom:249.150000px;}
.y5f_c00440{bottom:249.450000px;}
.y5e_c00440{bottom:263.550000px;}
.y5d_c00440{bottom:277.950000px;}
.y6d_c00440{bottom:278.700000px;}
.y6c_c00440{bottom:292.350000px;}
.y5c_c00440{bottom:292.650000px;}
.y6b_c00440{bottom:307.050000px;}
.y5b_c00440{bottom:308.850000px;}
.y6a_c00440{bottom:320.550000px;}
.y5a_c00440{bottom:321.150000px;}
.y59_c00440{bottom:335.550000px;}
.y69_c00440{bottom:336.000000px;}
.y58_c00440{bottom:349.800000px;}
.y68_c00440{bottom:350.700000px;}
.y57_c00440{bottom:364.200000px;}
.y67_c00440{bottom:365.400000px;}
.y56_c00440{bottom:378.900000px;}
.y66_c00440{bottom:379.800000px;}
.y55_c00440{bottom:393.300000px;}
.y65_c00440{bottom:393.900000px;}
.y54_c00440{bottom:407.400000px;}
.y64_c00440{bottom:408.300000px;}
.y53_c00440{bottom:421.500000px;}
.y52_c00440{bottom:435.900000px;}
.y51_c00440{bottom:450.300000px;}
.y4b_c00440{bottom:452.550000px;}
.y50_c00440{bottom:464.250000px;}
.y4a_c00440{bottom:470.850000px;}
.y4f_c00440{bottom:479.400000px;}
.y49_c00440{bottom:488.550000px;}
.y4e_c00440{bottom:493.500000px;}
.y48_c00440{bottom:506.550000px;}
.y4d_c00440{bottom:507.900000px;}
.y4c_c00440{bottom:522.300000px;}
.y47_c00440{bottom:524.400000px;}
.y46_c00440{bottom:542.400000px;}
.y45_c00440{bottom:560.400000px;}
.y25_c00440{bottom:568.050000px;}
.y44_c00440{bottom:578.400000px;}
.y24_c00440{bottom:585.750000px;}
.y43_c00440{bottom:596.100000px;}
.y23_c00440{bottom:610.500000px;}
.y42_c00440{bottom:614.100000px;}
.y22_c00440{bottom:630.600000px;}
.y41_c00440{bottom:632.100000px;}
.y21_c00440{bottom:648.600000px;}
.y40_c00440{bottom:658.500000px;}
.y20_c00440{bottom:666.300000px;}
.y3f_c00440{bottom:676.500000px;}
.y1f_c00440{bottom:684.000000px;}
.y3e_c00440{bottom:694.500000px;}
.y1e_c00440{bottom:702.000000px;}
.y3d_c00440{bottom:712.200000px;}
.y1d_c00440{bottom:719.700000px;}
.y3c_c00440{bottom:730.200000px;}
.y1c_c00440{bottom:745.500000px;}
.y3b_c00440{bottom:747.900000px;}
.y1b_c00440{bottom:758.100000px;}
.y3a_c00440{bottom:765.600000px;}
.y1a_c00440{bottom:774.750000px;}
.y39_c00440{bottom:783.600000px;}
.y19_c00440{bottom:789.150000px;}
.y18_c00440{bottom:799.200000px;}
.y38_c00440{bottom:801.600000px;}
.y17_c00440{bottom:815.700000px;}
.y37_c00440{bottom:821.100000px;}
.y16_c00440{bottom:831.600000px;}
.y36_c00440{bottom:837.300000px;}
.y15_c00440{bottom:845.700000px;}
.y35_c00440{bottom:855.300000px;}
.y14_c00440{bottom:860.400000px;}
.y13_c00440{bottom:872.700000px;}
.y34_c00440{bottom:873.000000px;}
.y12_c00440{bottom:888.600000px;}
.y33_c00440{bottom:891.000000px;}
.y11_c00440{bottom:903.300000px;}
.y32_c00440{bottom:909.300000px;}
.y10_c00440{bottom:915.900000px;}
.y31_c00440{bottom:931.050000px;}
.yf_c00440{bottom:932.100000px;}
.ye_c00440{bottom:944.700000px;}
.y30_c00440{bottom:949.350000px;}
.yd_c00440{bottom:959.400000px;}
.y2f_c00440{bottom:967.350000px;}
.yc_c00440{bottom:972.600000px;}
.y2e_c00440{bottom:984.600000px;}
.yb_c00440{bottom:987.000000px;}
.y2d_c00440{bottom:998.400000px;}
.ya_c00440{bottom:1003.200000px;}
.y9_c00440{bottom:1015.500000px;}
.y2c_c00440{bottom:1016.400000px;}
.y8_c00440{bottom:1029.600000px;}
.y2b_c00440{bottom:1034.100000px;}
.y7_c00440{bottom:1046.850000px;}
.y2a_c00440{bottom:1052.100000px;}
.y6_c00440{bottom:1067.400000px;}
.y29_c00440{bottom:1070.100000px;}
.y5_c00440{bottom:1087.200000px;}
.y28_c00440{bottom:1087.800000px;}
.y4_c00440{bottom:1104.900000px;}
.y27_c00440{bottom:1105.500000px;}
.y3_c00440{bottom:1122.900000px;}
.y26_c00440{bottom:1123.500000px;}
.y1_c00440{bottom:1150.200000px;}
.y2_c00440{bottom:1150.950000px;}
.h7_c00440{height:30.000000px;}
.h6_c00440{height:54.000000px;}
.h4_c00440{height:60.000000px;}
.h5_c00440{height:66.000000px;}
.h8_c00440{height:72.000000px;}
.h2_c00440{height:84.000000px;}
.h3_c00440{height:96.000000px;}
.h0_c00440{height:1269.720063px;}
.h1_c00440{height:1269.750000px;}
.w0_c00440{width:958.320007px;}
.w1_c00440{width:958.500000px;}
.x0_c00440{left:0.000000px;}
.x126_c00440{left:64.050000px;}
.x4_c00440{left:67.350000px;}
.x1d_c00440{left:68.400000px;}
.x5b_c00440{left:70.500000px;}
.x76_c00440{left:71.700000px;}
.x11f_c00440{left:73.200000px;}
.x139_c00440{left:74.850000px;}
.x136_c00440{left:80.250000px;}
.x25_c00440{left:82.650000px;}
.x4d_c00440{left:83.850000px;}
.xc_c00440{left:85.650000px;}
.x19_c00440{left:86.850000px;}
.x123_c00440{left:87.900000px;}
.x60_c00440{left:88.950000px;}
.x63_c00440{left:90.000000px;}
.x135_c00440{left:94.800000px;}
.x34_c00440{left:96.300000px;}
.x28_c00440{left:97.650000px;}
.x55_c00440{left:98.700000px;}
.x1a_c00440{left:99.750000px;}
.x122_c00440{left:101.100000px;}
.x127_c00440{left:102.900000px;}
.x124_c00440{left:104.400000px;}
.x79_c00440{left:107.700000px;}
.x10b_c00440{left:109.800000px;}
.x69_c00440{left:111.900000px;}
.x5_c00440{left:113.100000px;}
.x26_c00440{left:115.350000px;}
.x121_c00440{left:118.950000px;}
.x3f_c00440{left:120.300000px;}
.x12b_c00440{left:123.450000px;}
.x37_c00440{left:124.500000px;}
.xd_c00440{left:126.000000px;}
.x64_c00440{left:127.800000px;}
.x74_c00440{left:129.150000px;}
.x1e_c00440{left:130.350000px;}
.x13_c00440{left:131.400000px;}
.x7a_c00440{left:132.900000px;}
.x1b_c00440{left:134.700000px;}
.x10c_c00440{left:136.800000px;}
.x40_c00440{left:139.350000px;}
.x12c_c00440{left:140.700000px;}
.x137_c00440{left:141.750000px;}
.x4f_c00440{left:144.300000px;}
.x75_c00440{left:146.400000px;}
.x6d_c00440{left:147.450000px;}
.x70_c00440{left:149.550000px;}
.x29_c00440{left:151.650000px;}
.x1c_c00440{left:153.000000px;}
.x5c_c00440{left:154.800000px;}
.x125_c00440{left:155.850000px;}
.xe_c00440{left:156.900000px;}
.x13a_c00440{left:159.150000px;}
.x47_c00440{left:160.200000px;}
.x3a_c00440{left:162.150000px;}
.x53_c00440{left:164.850000px;}
.x48_c00440{left:166.050000px;}
.x58_c00440{left:167.400000px;}
.x111_c00440{left:169.500000px;}
.x7b_c00440{left:170.700000px;}
.x27_c00440{left:172.500000px;}
.x2a_c00440{left:174.000000px;}
.x41_c00440{left:175.350000px;}
.x49_c00440{left:177.900000px;}
.x6_c00440{left:180.000000px;}
.x1f_c00440{left:184.650000px;}
.x42_c00440{left:185.850000px;}
.x13b_c00440{left:187.200000px;}
.x112_c00440{left:188.550000px;}
.x10d_c00440{left:190.500000px;}
.x4e_c00440{left:192.150000px;}
.x12d_c00440{left:194.400000px;}
.x6a_c00440{left:196.500000px;}
.x3b_c00440{left:198.450000px;}
.x43_c00440{left:200.250000px;}
.x12e_c00440{left:203.400000px;}
.x38_c00440{left:204.450000px;}
.x11c_c00440{left:209.400000px;}
.x14_c00440{left:211.350000px;}
.x50_c00440{left:213.750000px;}
.x2b_c00440{left:215.100000px;}
.x138_c00440{left:216.300000px;}
.x54_c00440{left:218.850000px;}
.xf_c00440{left:220.200000px;}
.x4a_c00440{left:221.400000px;}
.x117_c00440{left:223.200000px;}
.x5d_c00440{left:224.250000px;}
.x7_c00440{left:226.500000px;}
.x71_c00440{left:228.450000px;}
.x128_c00440{left:229.650000px;}
.x15_c00440{left:231.450000px;}
.x65_c00440{left:232.500000px;}
.x2c_c00440{left:234.600000px;}
.x4b_c00440{left:236.100000px;}
.x35_c00440{left:237.300000px;}
.x59_c00440{left:239.100000px;}
.x30_c00440{left:241.800000px;}
.x20_c00440{left:245.100000px;}
.x129_c00440{left:246.600000px;}
.x6b_c00440{left:250.800000px;}
.x56_c00440{left:251.850000px;}
.x44_c00440{left:253.200000px;}
.x11b_c00440{left:254.700000px;}
.x7c_c00440{left:258.150000px;}
.x66_c00440{left:259.200000px;}
.x4c_c00440{left:264.150000px;}
.x21_c00440{left:265.950000px;}
.x61_c00440{left:267.600000px;}
.x45_c00440{left:268.650000px;}
.x11d_c00440{left:269.700000px;}
.x51_c00440{left:271.650000px;}
.x10_c00440{left:273.900000px;}
.x36_c00440{left:275.100000px;}
.x2d_c00440{left:276.750000px;}
.x39_c00440{left:279.750000px;}
.x16_c00440{left:280.800000px;}
.x8_c00440{left:283.350000px;}
.x118_c00440{left:284.400000px;}
.x113_c00440{left:288.300000px;}
.x7d_c00440{left:291.600000px;}
.x11e_c00440{left:293.250000px;}
.x2e_c00440{left:296.250000px;}
.x12f_c00440{left:297.300000px;}
.x62_c00440{left:298.500000px;}
.x67_c00440{left:301.650000px;}
.x9_c00440{left:303.900000px;}
.x3c_c00440{left:305.100000px;}
.x46_c00440{left:306.750000px;}
.x5e_c00440{left:308.550000px;}
.x2f_c00440{left:309.900000px;}
.x77_c00440{left:311.100000px;}
.x132_c00440{left:312.150000px;}
.x7e_c00440{left:313.200000px;}
.x119_c00440{left:315.750000px;}
.x72_c00440{left:318.150000px;}
.x10e_c00440{left:320.400000px;}
.x1_c00440{left:324.000000px;}
.x22_c00440{left:325.050000px;}
.x17_c00440{left:327.300000px;}
.x10f_c00440{left:328.650000px;}
.x5f_c00440{left:330.900000px;}
.x7f_c00440{left:332.250000px;}
.x31_c00440{left:333.900000px;}
.x3d_c00440{left:335.700000px;}
.x57_c00440{left:338.250000px;}
.x115_c00440{left:340.050000px;}
.xa_c00440{left:342.000000px;}
.x130_c00440{left:343.650000px;}
.x12a_c00440{left:349.200000px;}
.x11_c00440{left:350.250000px;}
.x68_c00440{left:352.050000px;}
.x23_c00440{left:355.950000px;}
.x3e_c00440{left:357.000000px;}
.x114_c00440{left:358.500000px;}
.x116_c00440{left:361.350000px;}
.x32_c00440{left:364.500000px;}
.x5a_c00440{left:365.850000px;}
.x6e_c00440{left:369.600000px;}
.x131_c00440{left:374.550000px;}
.x73_c00440{left:375.750000px;}
.xb_c00440{left:376.950000px;}
.x110_c00440{left:379.050000px;}
.x6f_c00440{left:380.700000px;}
.x120_c00440{left:382.500000px;}
.x13c_c00440{left:383.550000px;}
.x6c_c00440{left:384.750000px;}
.x78_c00440{left:385.950000px;}
.x18_c00440{left:387.750000px;}
.x24_c00440{left:390.150000px;}
.x33_c00440{left:392.250000px;}
.x12_c00440{left:393.450000px;}
.x52_c00440{left:394.500000px;}
.x133_c00440{left:395.700000px;}
.x11a_c00440{left:398.550000px;}
.x134_c00440{left:416.550000px;}
.x13d_c00440{left:428.700000px;}
.x14a_c00440{left:430.200000px;}
.x150_c00440{left:431.400000px;}
.x80_c00440{left:443.850000px;}
.x96_c00440{left:444.900000px;}
.xbd_c00440{left:446.100000px;}
.xff_c00440{left:447.600000px;}
.x14d_c00440{left:452.550000px;}
.x144_c00440{left:456.300000px;}
.x151_c00440{left:457.350000px;}
.x13e_c00440{left:458.550000px;}
.x141_c00440{left:461.250000px;}
.x9c_c00440{left:463.050000px;}
.xf2_c00440{left:464.400000px;}
.xcc_c00440{left:466.050000px;}
.x109_c00440{left:467.700000px;}
.xc3_c00440{left:469.950000px;}
.xe7_c00440{left:471.450000px;}
.x9d_c00440{left:472.800000px;}
.x148_c00440{left:474.900000px;}
.xb7_c00440{left:478.200000px;}
.x97_c00440{left:480.150000px;}
.x81_c00440{left:481.650000px;}
.xee_c00440{left:482.700000px;}
.xf7_c00440{left:484.200000px;}
.xd2_c00440{left:485.250000px;}
.xa8_c00440{left:486.750000px;}
.xb2_c00440{left:488.850000px;}
.xf3_c00440{left:489.900000px;}
.x8a_c00440{left:492.000000px;}
.xda_c00440{left:494.850000px;}
.xb8_c00440{left:498.300000px;}
.x9e_c00440{left:500.100000px;}
.x91_c00440{left:501.750000px;}
.xa9_c00440{left:504.450000px;}
.xc4_c00440{left:505.950000px;}
.xe4_c00440{left:507.600000px;}
.x2_c00440{left:509.100000px;}
.xde_c00440{left:512.100000px;}
.x100_c00440{left:513.150000px;}
.xb9_c00440{left:514.500000px;}
.xf9_c00440{left:517.500000px;}
.x103_c00440{left:520.350000px;}
.xae_c00440{left:521.400000px;}
.x13f_c00440{left:523.650000px;}
.x82_c00440{left:526.350000px;}
.xc5_c00440{left:527.550000px;}
.xc7_c00440{left:528.900000px;}
.x152_c00440{left:531.150000px;}
.xf4_c00440{left:532.350000px;}
.x145_c00440{left:534.000000px;}
.x83_c00440{left:535.650000px;}
.x98_c00440{left:537.750000px;}
.xbe_c00440{left:540.750000px;}
.x147_c00440{left:542.400000px;}
.x8b_c00440{left:543.450000px;}
.xaf_c00440{left:545.100000px;}
.xa5_c00440{left:547.200000px;}
.x153_c00440{left:549.450000px;}
.x9f_c00440{left:550.800000px;}
.xaa_c00440{left:553.800000px;}
.xfa_c00440{left:555.300000px;}
.xdf_c00440{left:556.350000px;}
.xcd_c00440{left:557.850000px;}
.x140_c00440{left:559.350000px;}
.xd5_c00440{left:562.350000px;}
.xdb_c00440{left:563.550000px;}
.xcf_c00440{left:567.000000px;}
.x92_c00440{left:568.350000px;}
.xa0_c00440{left:570.600000px;}
.xef_c00440{left:574.500000px;}
.xfd_c00440{left:577.200000px;}
.xc8_c00440{left:579.000000px;}
.xb3_c00440{left:580.050000px;}
.x84_c00440{left:582.750000px;}
.x10a_c00440{left:583.950000px;}
.x14b_c00440{left:586.200000px;}
.xd7_c00440{left:588.600000px;}
.x99_c00440{left:590.250000px;}
.xa6_c00440{left:593.700000px;}
.xe8_c00440{left:597.000000px;}
.x8c_c00440{left:599.550000px;}
.xe0_c00440{left:601.050000px;}
.x143_c00440{left:602.550000px;}
.x101_c00440{left:604.200000px;}
.xa1_c00440{left:606.900000px;}
.xba_c00440{left:608.850000px;}
.xfb_c00440{left:612.150000px;}
.x93_c00440{left:613.650000px;}
.xd0_c00440{left:616.650000px;}
.xbf_c00440{left:617.850000px;}
.xe5_c00440{left:619.800000px;}
.x85_c00440{left:622.650000px;}
.xf0_c00440{left:625.200000px;}
.x14e_c00440{left:626.700000px;}
.xd8_c00440{left:628.500000px;}
.x8d_c00440{left:631.950000px;}
.xb4_c00440{left:635.250000px;}
.xc6_c00440{left:637.650000px;}
.xd3_c00440{left:639.000000px;}
.xdc_c00440{left:640.950000px;}
.xf5_c00440{left:642.150000px;}
.xd9_c00440{left:643.950000px;}
.xce_c00440{left:646.050000px;}
.xc0_c00440{left:650.250000px;}
.x107_c00440{left:651.750000px;}
.x9a_c00440{left:653.550000px;}
.x86_c00440{left:655.050000px;}
.xb0_c00440{left:656.400000px;}
.xbb_c00440{left:658.950000px;}
.xab_c00440{left:662.550000px;}
.xa2_c00440{left:663.750000px;}
.x87_c00440{left:666.600000px;}
.x146_c00440{left:669.300000px;}
.x8e_c00440{left:670.500000px;}
.xfe_c00440{left:671.550000px;}
.x94_c00440{left:673.050000px;}
.xa7_c00440{left:674.400000px;}
.xd1_c00440{left:675.750000px;}
.x104_c00440{left:676.950000px;}
.xd4_c00440{left:678.300000px;}
.xeb_c00440{left:679.950000px;}
.xe1_c00440{left:681.750000px;}
.xcb_c00440{left:683.400000px;}
.xe9_c00440{left:684.450000px;}
.xb5_c00440{left:685.950000px;}
.xb1_c00440{left:687.750000px;}
.xc9_c00440{left:688.800000px;}
.xe6_c00440{left:691.050000px;}
.x149_c00440{left:695.850000px;}
.x95_c00440{left:697.200000px;}
.x105_c00440{left:699.000000px;}
.xe3_c00440{left:700.200000px;}
.xc1_c00440{left:701.400000px;}
.x88_c00440{left:702.900000px;}
.xb6_c00440{left:705.450000px;}
.xd6_c00440{left:708.150000px;}
.xbc_c00440{left:709.650000px;}
.xca_c00440{left:711.450000px;}
.x9b_c00440{left:713.250000px;}
.xa3_c00440{left:714.900000px;}
.xec_c00440{left:715.950000px;}
.x142_c00440{left:717.450000px;}
.x8f_c00440{left:718.800000px;}
.xac_c00440{left:721.650000px;}
.x108_c00440{left:723.750000px;}
.xe2_c00440{left:725.700000px;}
.x14f_c00440{left:727.650000px;}
.xf8_c00440{left:729.300000px;}
.xfc_c00440{left:731.250000px;}
.xdd_c00440{left:733.200000px;}
.x3_c00440{left:734.400000px;}
.x14c_c00440{left:735.900000px;}
.xc2_c00440{left:737.100000px;}
.x90_c00440{left:741.450000px;}
.xf6_c00440{left:742.650000px;}
.xea_c00440{left:743.850000px;}
.x102_c00440{left:745.950000px;}
.xad_c00440{left:747.900000px;}
.x89_c00440{left:748.950000px;}
.xf1_c00440{left:750.150000px;}
.xa4_c00440{left:759.150000px;}
.xed_c00440{left:760.200000px;}
.x106_c00440{left:761.250000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws6_c00440{word-spacing:-13.333333pt;}
.wsa_c00440{word-spacing:-7.696757pt;}
.ws4_c00440{word-spacing:-7.376861pt;}
.ws8_c00440{word-spacing:-6.267516pt;}
.ws5_c00440{word-spacing:-4.349015pt;}
.ws7_c00440{word-spacing:-4.000000pt;}
.ws9_c00440{word-spacing:-1.481481pt;}
.wsc_c00440{word-spacing:0.000000pt;}
.wsb_c00440{word-spacing:6.405229pt;}
.ws1_c00440{word-spacing:25.267760pt;}
.ws3_c00440{word-spacing:35.555556pt;}
.ws2_c00440{word-spacing:61.444444pt;}
.ws0_c00440{word-spacing:66.419753pt;}
._1_c00440{width:65.925926pt;}
._0_c00440{width:75.185185pt;}
.fs5_c00440{font-size:26.666667pt;}
.fs4_c00440{font-size:48.000000pt;}
.fs2_c00440{font-size:53.333333pt;}
.fs3_c00440{font-size:58.666667pt;}
.fs6_c00440{font-size:64.000000pt;}
.fs0_c00440{font-size:74.666667pt;}
.fs1_c00440{font-size:85.333333pt;}
.y0_c00440{bottom:0.000000pt;}
.y72_c00440{bottom:170.000000pt;}
.y63_c00440{bottom:171.200000pt;}
.y71_c00440{bottom:182.800000pt;}
.y62_c00440{bottom:183.733333pt;}
.y70_c00440{bottom:195.866667pt;}
.y61_c00440{bottom:196.533333pt;}
.y6f_c00440{bottom:208.666667pt;}
.y60_c00440{bottom:208.933333pt;}
.y6e_c00440{bottom:221.466667pt;}
.y5f_c00440{bottom:221.733333pt;}
.y5e_c00440{bottom:234.266667pt;}
.y5d_c00440{bottom:247.066667pt;}
.y6d_c00440{bottom:247.733333pt;}
.y6c_c00440{bottom:259.866667pt;}
.y5c_c00440{bottom:260.133333pt;}
.y6b_c00440{bottom:272.933333pt;}
.y5b_c00440{bottom:274.533333pt;}
.y6a_c00440{bottom:284.933333pt;}
.y5a_c00440{bottom:285.466667pt;}
.y59_c00440{bottom:298.266667pt;}
.y69_c00440{bottom:298.666667pt;}
.y58_c00440{bottom:310.933333pt;}
.y68_c00440{bottom:311.733333pt;}
.y57_c00440{bottom:323.733333pt;}
.y67_c00440{bottom:324.800000pt;}
.y56_c00440{bottom:336.800000pt;}
.y66_c00440{bottom:337.600000pt;}
.y55_c00440{bottom:349.600000pt;}
.y65_c00440{bottom:350.133333pt;}
.y54_c00440{bottom:362.133333pt;}
.y64_c00440{bottom:362.933333pt;}
.y53_c00440{bottom:374.666667pt;}
.y52_c00440{bottom:387.466667pt;}
.y51_c00440{bottom:400.266667pt;}
.y4b_c00440{bottom:402.266667pt;}
.y50_c00440{bottom:412.666667pt;}
.y4a_c00440{bottom:418.533333pt;}
.y4f_c00440{bottom:426.133333pt;}
.y49_c00440{bottom:434.266667pt;}
.y4e_c00440{bottom:438.666667pt;}
.y48_c00440{bottom:450.266667pt;}
.y4d_c00440{bottom:451.466667pt;}
.y4c_c00440{bottom:464.266667pt;}
.y47_c00440{bottom:466.133333pt;}
.y46_c00440{bottom:482.133333pt;}
.y45_c00440{bottom:498.133333pt;}
.y25_c00440{bottom:504.933333pt;}
.y44_c00440{bottom:514.133333pt;}
.y24_c00440{bottom:520.666667pt;}
.y43_c00440{bottom:529.866667pt;}
.y23_c00440{bottom:542.666667pt;}
.y42_c00440{bottom:545.866667pt;}
.y22_c00440{bottom:560.533333pt;}
.y41_c00440{bottom:561.866667pt;}
.y21_c00440{bottom:576.533333pt;}
.y40_c00440{bottom:585.333333pt;}
.y20_c00440{bottom:592.266667pt;}
.y3f_c00440{bottom:601.333333pt;}
.y1f_c00440{bottom:608.000000pt;}
.y3e_c00440{bottom:617.333333pt;}
.y1e_c00440{bottom:624.000000pt;}
.y3d_c00440{bottom:633.066667pt;}
.y1d_c00440{bottom:639.733333pt;}
.y3c_c00440{bottom:649.066667pt;}
.y1c_c00440{bottom:662.666667pt;}
.y3b_c00440{bottom:664.800000pt;}
.y1b_c00440{bottom:673.866667pt;}
.y3a_c00440{bottom:680.533333pt;}
.y1a_c00440{bottom:688.666667pt;}
.y39_c00440{bottom:696.533333pt;}
.y19_c00440{bottom:701.466667pt;}
.y18_c00440{bottom:710.400000pt;}
.y38_c00440{bottom:712.533333pt;}
.y17_c00440{bottom:725.066667pt;}
.y37_c00440{bottom:729.866667pt;}
.y16_c00440{bottom:739.200000pt;}
.y36_c00440{bottom:744.266667pt;}
.y15_c00440{bottom:751.733333pt;}
.y35_c00440{bottom:760.266667pt;}
.y14_c00440{bottom:764.800000pt;}
.y13_c00440{bottom:775.733333pt;}
.y34_c00440{bottom:776.000000pt;}
.y12_c00440{bottom:789.866667pt;}
.y33_c00440{bottom:792.000000pt;}
.y11_c00440{bottom:802.933333pt;}
.y32_c00440{bottom:808.266667pt;}
.y10_c00440{bottom:814.133333pt;}
.y31_c00440{bottom:827.600000pt;}
.yf_c00440{bottom:828.533333pt;}
.ye_c00440{bottom:839.733333pt;}
.y30_c00440{bottom:843.866667pt;}
.yd_c00440{bottom:852.800000pt;}
.y2f_c00440{bottom:859.866667pt;}
.yc_c00440{bottom:864.533333pt;}
.y2e_c00440{bottom:875.200000pt;}
.yb_c00440{bottom:877.333333pt;}
.y2d_c00440{bottom:887.466667pt;}
.ya_c00440{bottom:891.733333pt;}
.y9_c00440{bottom:902.666667pt;}
.y2c_c00440{bottom:903.466667pt;}
.y8_c00440{bottom:915.200000pt;}
.y2b_c00440{bottom:919.200000pt;}
.y7_c00440{bottom:930.533333pt;}
.y2a_c00440{bottom:935.200000pt;}
.y6_c00440{bottom:948.800000pt;}
.y29_c00440{bottom:951.200000pt;}
.y5_c00440{bottom:966.400000pt;}
.y28_c00440{bottom:966.933333pt;}
.y4_c00440{bottom:982.133333pt;}
.y27_c00440{bottom:982.666667pt;}
.y3_c00440{bottom:998.133333pt;}
.y26_c00440{bottom:998.666667pt;}
.y1_c00440{bottom:1022.400000pt;}
.y2_c00440{bottom:1023.066667pt;}
.h7_c00440{height:26.666667pt;}
.h6_c00440{height:48.000000pt;}
.h4_c00440{height:53.333333pt;}
.h5_c00440{height:58.666667pt;}
.h8_c00440{height:64.000000pt;}
.h2_c00440{height:74.666667pt;}
.h3_c00440{height:85.333333pt;}
.h0_c00440{height:1128.640056pt;}
.h1_c00440{height:1128.666667pt;}
.w0_c00440{width:851.840007pt;}
.w1_c00440{width:852.000000pt;}
.x0_c00440{left:0.000000pt;}
.x126_c00440{left:56.933333pt;}
.x4_c00440{left:59.866667pt;}
.x1d_c00440{left:60.800000pt;}
.x5b_c00440{left:62.666667pt;}
.x76_c00440{left:63.733333pt;}
.x11f_c00440{left:65.066667pt;}
.x139_c00440{left:66.533333pt;}
.x136_c00440{left:71.333333pt;}
.x25_c00440{left:73.466667pt;}
.x4d_c00440{left:74.533333pt;}
.xc_c00440{left:76.133333pt;}
.x19_c00440{left:77.200000pt;}
.x123_c00440{left:78.133333pt;}
.x60_c00440{left:79.066667pt;}
.x63_c00440{left:80.000000pt;}
.x135_c00440{left:84.266667pt;}
.x34_c00440{left:85.600000pt;}
.x28_c00440{left:86.800000pt;}
.x55_c00440{left:87.733333pt;}
.x1a_c00440{left:88.666667pt;}
.x122_c00440{left:89.866667pt;}
.x127_c00440{left:91.466667pt;}
.x124_c00440{left:92.800000pt;}
.x79_c00440{left:95.733333pt;}
.x10b_c00440{left:97.600000pt;}
.x69_c00440{left:99.466667pt;}
.x5_c00440{left:100.533333pt;}
.x26_c00440{left:102.533333pt;}
.x121_c00440{left:105.733333pt;}
.x3f_c00440{left:106.933333pt;}
.x12b_c00440{left:109.733333pt;}
.x37_c00440{left:110.666667pt;}
.xd_c00440{left:112.000000pt;}
.x64_c00440{left:113.600000pt;}
.x74_c00440{left:114.800000pt;}
.x1e_c00440{left:115.866667pt;}
.x13_c00440{left:116.800000pt;}
.x7a_c00440{left:118.133333pt;}
.x1b_c00440{left:119.733333pt;}
.x10c_c00440{left:121.600000pt;}
.x40_c00440{left:123.866667pt;}
.x12c_c00440{left:125.066667pt;}
.x137_c00440{left:126.000000pt;}
.x4f_c00440{left:128.266667pt;}
.x75_c00440{left:130.133333pt;}
.x6d_c00440{left:131.066667pt;}
.x70_c00440{left:132.933333pt;}
.x29_c00440{left:134.800000pt;}
.x1c_c00440{left:136.000000pt;}
.x5c_c00440{left:137.600000pt;}
.x125_c00440{left:138.533333pt;}
.xe_c00440{left:139.466667pt;}
.x13a_c00440{left:141.466667pt;}
.x47_c00440{left:142.400000pt;}
.x3a_c00440{left:144.133333pt;}
.x53_c00440{left:146.533333pt;}
.x48_c00440{left:147.600000pt;}
.x58_c00440{left:148.800000pt;}
.x111_c00440{left:150.666667pt;}
.x7b_c00440{left:151.733333pt;}
.x27_c00440{left:153.333333pt;}
.x2a_c00440{left:154.666667pt;}
.x41_c00440{left:155.866667pt;}
.x49_c00440{left:158.133333pt;}
.x6_c00440{left:160.000000pt;}
.x1f_c00440{left:164.133333pt;}
.x42_c00440{left:165.200000pt;}
.x13b_c00440{left:166.400000pt;}
.x112_c00440{left:167.600000pt;}
.x10d_c00440{left:169.333333pt;}
.x4e_c00440{left:170.800000pt;}
.x12d_c00440{left:172.800000pt;}
.x6a_c00440{left:174.666667pt;}
.x3b_c00440{left:176.400000pt;}
.x43_c00440{left:178.000000pt;}
.x12e_c00440{left:180.800000pt;}
.x38_c00440{left:181.733333pt;}
.x11c_c00440{left:186.133333pt;}
.x14_c00440{left:187.866667pt;}
.x50_c00440{left:190.000000pt;}
.x2b_c00440{left:191.200000pt;}
.x138_c00440{left:192.266667pt;}
.x54_c00440{left:194.533333pt;}
.xf_c00440{left:195.733333pt;}
.x4a_c00440{left:196.800000pt;}
.x117_c00440{left:198.400000pt;}
.x5d_c00440{left:199.333333pt;}
.x7_c00440{left:201.333333pt;}
.x71_c00440{left:203.066667pt;}
.x128_c00440{left:204.133333pt;}
.x15_c00440{left:205.733333pt;}
.x65_c00440{left:206.666667pt;}
.x2c_c00440{left:208.533333pt;}
.x4b_c00440{left:209.866667pt;}
.x35_c00440{left:210.933333pt;}
.x59_c00440{left:212.533333pt;}
.x30_c00440{left:214.933333pt;}
.x20_c00440{left:217.866667pt;}
.x129_c00440{left:219.200000pt;}
.x6b_c00440{left:222.933333pt;}
.x56_c00440{left:223.866667pt;}
.x44_c00440{left:225.066667pt;}
.x11b_c00440{left:226.400000pt;}
.x7c_c00440{left:229.466667pt;}
.x66_c00440{left:230.400000pt;}
.x4c_c00440{left:234.800000pt;}
.x21_c00440{left:236.400000pt;}
.x61_c00440{left:237.866667pt;}
.x45_c00440{left:238.800000pt;}
.x11d_c00440{left:239.733333pt;}
.x51_c00440{left:241.466667pt;}
.x10_c00440{left:243.466667pt;}
.x36_c00440{left:244.533333pt;}
.x2d_c00440{left:246.000000pt;}
.x39_c00440{left:248.666667pt;}
.x16_c00440{left:249.600000pt;}
.x8_c00440{left:251.866667pt;}
.x118_c00440{left:252.800000pt;}
.x113_c00440{left:256.266667pt;}
.x7d_c00440{left:259.200000pt;}
.x11e_c00440{left:260.666667pt;}
.x2e_c00440{left:263.333333pt;}
.x12f_c00440{left:264.266667pt;}
.x62_c00440{left:265.333333pt;}
.x67_c00440{left:268.133333pt;}
.x9_c00440{left:270.133333pt;}
.x3c_c00440{left:271.200000pt;}
.x46_c00440{left:272.666667pt;}
.x5e_c00440{left:274.266667pt;}
.x2f_c00440{left:275.466667pt;}
.x77_c00440{left:276.533333pt;}
.x132_c00440{left:277.466667pt;}
.x7e_c00440{left:278.400000pt;}
.x119_c00440{left:280.666667pt;}
.x72_c00440{left:282.800000pt;}
.x10e_c00440{left:284.800000pt;}
.x1_c00440{left:288.000000pt;}
.x22_c00440{left:288.933333pt;}
.x17_c00440{left:290.933333pt;}
.x10f_c00440{left:292.133333pt;}
.x5f_c00440{left:294.133333pt;}
.x7f_c00440{left:295.333333pt;}
.x31_c00440{left:296.800000pt;}
.x3d_c00440{left:298.400000pt;}
.x57_c00440{left:300.666667pt;}
.x115_c00440{left:302.266667pt;}
.xa_c00440{left:304.000000pt;}
.x130_c00440{left:305.466667pt;}
.x12a_c00440{left:310.400000pt;}
.x11_c00440{left:311.333333pt;}
.x68_c00440{left:312.933333pt;}
.x23_c00440{left:316.400000pt;}
.x3e_c00440{left:317.333333pt;}
.x114_c00440{left:318.666667pt;}
.x116_c00440{left:321.200000pt;}
.x32_c00440{left:324.000000pt;}
.x5a_c00440{left:325.200000pt;}
.x6e_c00440{left:328.533333pt;}
.x131_c00440{left:332.933333pt;}
.x73_c00440{left:334.000000pt;}
.xb_c00440{left:335.066667pt;}
.x110_c00440{left:336.933333pt;}
.x6f_c00440{left:338.400000pt;}
.x120_c00440{left:340.000000pt;}
.x13c_c00440{left:340.933333pt;}
.x6c_c00440{left:342.000000pt;}
.x78_c00440{left:343.066667pt;}
.x18_c00440{left:344.666667pt;}
.x24_c00440{left:346.800000pt;}
.x33_c00440{left:348.666667pt;}
.x12_c00440{left:349.733333pt;}
.x52_c00440{left:350.666667pt;}
.x133_c00440{left:351.733333pt;}
.x11a_c00440{left:354.266667pt;}
.x134_c00440{left:370.266667pt;}
.x13d_c00440{left:381.066667pt;}
.x14a_c00440{left:382.400000pt;}
.x150_c00440{left:383.466667pt;}
.x80_c00440{left:394.533333pt;}
.x96_c00440{left:395.466667pt;}
.xbd_c00440{left:396.533333pt;}
.xff_c00440{left:397.866667pt;}
.x14d_c00440{left:402.266667pt;}
.x144_c00440{left:405.600000pt;}
.x151_c00440{left:406.533333pt;}
.x13e_c00440{left:407.600000pt;}
.x141_c00440{left:410.000000pt;}
.x9c_c00440{left:411.600000pt;}
.xf2_c00440{left:412.800000pt;}
.xcc_c00440{left:414.266667pt;}
.x109_c00440{left:415.733333pt;}
.xc3_c00440{left:417.733333pt;}
.xe7_c00440{left:419.066667pt;}
.x9d_c00440{left:420.266667pt;}
.x148_c00440{left:422.133333pt;}
.xb7_c00440{left:425.066667pt;}
.x97_c00440{left:426.800000pt;}
.x81_c00440{left:428.133333pt;}
.xee_c00440{left:429.066667pt;}
.xf7_c00440{left:430.400000pt;}
.xd2_c00440{left:431.333333pt;}
.xa8_c00440{left:432.666667pt;}
.xb2_c00440{left:434.533333pt;}
.xf3_c00440{left:435.466667pt;}
.x8a_c00440{left:437.333333pt;}
.xda_c00440{left:439.866667pt;}
.xb8_c00440{left:442.933333pt;}
.x9e_c00440{left:444.533333pt;}
.x91_c00440{left:446.000000pt;}
.xa9_c00440{left:448.400000pt;}
.xc4_c00440{left:449.733333pt;}
.xe4_c00440{left:451.200000pt;}
.x2_c00440{left:452.533333pt;}
.xde_c00440{left:455.200000pt;}
.x100_c00440{left:456.133333pt;}
.xb9_c00440{left:457.333333pt;}
.xf9_c00440{left:460.000000pt;}
.x103_c00440{left:462.533333pt;}
.xae_c00440{left:463.466667pt;}
.x13f_c00440{left:465.466667pt;}
.x82_c00440{left:467.866667pt;}
.xc5_c00440{left:468.933333pt;}
.xc7_c00440{left:470.133333pt;}
.x152_c00440{left:472.133333pt;}
.xf4_c00440{left:473.200000pt;}
.x145_c00440{left:474.666667pt;}
.x83_c00440{left:476.133333pt;}
.x98_c00440{left:478.000000pt;}
.xbe_c00440{left:480.666667pt;}
.x147_c00440{left:482.133333pt;}
.x8b_c00440{left:483.066667pt;}
.xaf_c00440{left:484.533333pt;}
.xa5_c00440{left:486.400000pt;}
.x153_c00440{left:488.400000pt;}
.x9f_c00440{left:489.600000pt;}
.xaa_c00440{left:492.266667pt;}
.xfa_c00440{left:493.600000pt;}
.xdf_c00440{left:494.533333pt;}
.xcd_c00440{left:495.866667pt;}
.x140_c00440{left:497.200000pt;}
.xd5_c00440{left:499.866667pt;}
.xdb_c00440{left:500.933333pt;}
.xcf_c00440{left:504.000000pt;}
.x92_c00440{left:505.200000pt;}
.xa0_c00440{left:507.200000pt;}
.xef_c00440{left:510.666667pt;}
.xfd_c00440{left:513.066667pt;}
.xc8_c00440{left:514.666667pt;}
.xb3_c00440{left:515.600000pt;}
.x84_c00440{left:518.000000pt;}
.x10a_c00440{left:519.066667pt;}
.x14b_c00440{left:521.066667pt;}
.xd7_c00440{left:523.200000pt;}
.x99_c00440{left:524.666667pt;}
.xa6_c00440{left:527.733333pt;}
.xe8_c00440{left:530.666667pt;}
.x8c_c00440{left:532.933333pt;}
.xe0_c00440{left:534.266667pt;}
.x143_c00440{left:535.600000pt;}
.x101_c00440{left:537.066667pt;}
.xa1_c00440{left:539.466667pt;}
.xba_c00440{left:541.200000pt;}
.xfb_c00440{left:544.133333pt;}
.x93_c00440{left:545.466667pt;}
.xd0_c00440{left:548.133333pt;}
.xbf_c00440{left:549.200000pt;}
.xe5_c00440{left:550.933333pt;}
.x85_c00440{left:553.466667pt;}
.xf0_c00440{left:555.733333pt;}
.x14e_c00440{left:557.066667pt;}
.xd8_c00440{left:558.666667pt;}
.x8d_c00440{left:561.733333pt;}
.xb4_c00440{left:564.666667pt;}
.xc6_c00440{left:566.800000pt;}
.xd3_c00440{left:568.000000pt;}
.xdc_c00440{left:569.733333pt;}
.xf5_c00440{left:570.800000pt;}
.xd9_c00440{left:572.400000pt;}
.xce_c00440{left:574.266667pt;}
.xc0_c00440{left:578.000000pt;}
.x107_c00440{left:579.333333pt;}
.x9a_c00440{left:580.933333pt;}
.x86_c00440{left:582.266667pt;}
.xb0_c00440{left:583.466667pt;}
.xbb_c00440{left:585.733333pt;}
.xab_c00440{left:588.933333pt;}
.xa2_c00440{left:590.000000pt;}
.x87_c00440{left:592.533333pt;}
.x146_c00440{left:594.933333pt;}
.x8e_c00440{left:596.000000pt;}
.xfe_c00440{left:596.933333pt;}
.x94_c00440{left:598.266667pt;}
.xa7_c00440{left:599.466667pt;}
.xd1_c00440{left:600.666667pt;}
.x104_c00440{left:601.733333pt;}
.xd4_c00440{left:602.933333pt;}
.xeb_c00440{left:604.400000pt;}
.xe1_c00440{left:606.000000pt;}
.xcb_c00440{left:607.466667pt;}
.xe9_c00440{left:608.400000pt;}
.xb5_c00440{left:609.733333pt;}
.xb1_c00440{left:611.333333pt;}
.xc9_c00440{left:612.266667pt;}
.xe6_c00440{left:614.266667pt;}
.x149_c00440{left:618.533333pt;}
.x95_c00440{left:619.733333pt;}
.x105_c00440{left:621.333333pt;}
.xe3_c00440{left:622.400000pt;}
.xc1_c00440{left:623.466667pt;}
.x88_c00440{left:624.800000pt;}
.xb6_c00440{left:627.066667pt;}
.xd6_c00440{left:629.466667pt;}
.xbc_c00440{left:630.800000pt;}
.xca_c00440{left:632.400000pt;}
.x9b_c00440{left:634.000000pt;}
.xa3_c00440{left:635.466667pt;}
.xec_c00440{left:636.400000pt;}
.x142_c00440{left:637.733333pt;}
.x8f_c00440{left:638.933333pt;}
.xac_c00440{left:641.466667pt;}
.x108_c00440{left:643.333333pt;}
.xe2_c00440{left:645.066667pt;}
.x14f_c00440{left:646.800000pt;}
.xf8_c00440{left:648.266667pt;}
.xfc_c00440{left:650.000000pt;}
.xdd_c00440{left:651.733333pt;}
.x3_c00440{left:652.800000pt;}
.x14c_c00440{left:654.133333pt;}
.xc2_c00440{left:655.200000pt;}
.x90_c00440{left:659.066667pt;}
.xf6_c00440{left:660.133333pt;}
.xea_c00440{left:661.200000pt;}
.x102_c00440{left:663.066667pt;}
.xad_c00440{left:664.800000pt;}
.x89_c00440{left:665.733333pt;}
.xf1_c00440{left:666.800000pt;}
.xa4_c00440{left:674.800000pt;}
.xed_c00440{left:675.733333pt;}
.x106_c00440{left:676.666667pt;}
}





/* 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_c00441 {
    display:none;
  }
  .loading-indicator_c00441.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00441 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_c00441 { 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_c00441" -> "#page-container .classname_c00441")
 */
.pf_c00441 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00441 { /* 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_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00441 { /* 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_c00441 { /* 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_c00441 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00441 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00441 {overflow:visible;}
  }
}
.c_c00441 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00441 { /* 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_c00441:after { /* webkit #35443 */
  content: '';
}
.t_c00441:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00441 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 */
}
.__c00441 { /* 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_c00441 { /* info for Javascript */
  display:none;
}
.l_c00441 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00441 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00441 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00441: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_c00441 {
    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_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00441.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_c00441 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00441{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00441;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00441{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00441{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00441{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m43_c00441{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00441{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00441{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00441{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m105_c00441{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00441{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00441{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00441{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m28_c00441{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m104_c00441{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00441{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m57_c00441{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00441{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m93_c00441{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00441{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m55_c00441{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00441{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00441{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00441{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m16_c00441{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00441{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00441{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00441{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m77_c00441{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md7_c00441{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m82_c00441{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m89_c00441{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00441{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m107_c00441{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m59_c00441{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00441{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mde_c00441{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf_c00441{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md0_c00441{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m41_c00441{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m70_c00441{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m86_c00441{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m81_c00441{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mec_c00441{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00441{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00441{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00441{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00441{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00441{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m101_c00441{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m56_c00441{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m88_c00441{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00441{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00441{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me3_c00441{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m110_c00441{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00441{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me2_c00441{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m71_c00441{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m26_c00441{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m64_c00441{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mad_c00441{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mee_c00441{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00441{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m85_c00441{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m25_c00441{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00441{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m53_c00441{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00441{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00441{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mab_c00441{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m8_c00441{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00441{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00441{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5_c00441{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m76_c00441{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me1_c00441{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m78_c00441{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00441{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00441{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9_c00441{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mef_c00441{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00441{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m30_c00441{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00441{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m61_c00441{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m13_c00441{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m42_c00441{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00441{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.ma_c00441{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00441{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mca_c00441{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mba_c00441{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00441{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m32_c00441{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00441{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00441{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00441{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mac_c00441{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m51_c00441{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00441{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00441{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m68_c00441{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00441{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m15_c00441{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md4_c00441{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00441{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6_c00441{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00441{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00441{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00441{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00441{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m67_c00441{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me9_c00441{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m62_c00441{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mae_c00441{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m94_c00441{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc_c00441{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m72_c00441{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mce_c00441{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m49_c00441{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m48_c00441{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m24_c00441{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00441{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m87_c00441{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m79_c00441{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb_c00441{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11_c00441{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m73_c00441{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00441{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m27_c00441{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m84_c00441{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00441{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m21_c00441{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00441{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00441{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m33_c00441{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me6_c00441{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md9_c00441{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00441{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me_c00441{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m17_c00441{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00441{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me4_c00441{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m12_c00441{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m65_c00441{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00441{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m102_c00441{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00441{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00441{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m111_c00441{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.md_c00441{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00441{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m95_c00441{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00441{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m18_c00441{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m63_c00441{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m22_c00441{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00441{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m74_c00441{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m10_c00441{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00441{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m20_c00441{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m19_c00441{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m35_c00441{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m7_c00441{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00441{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00441{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md1_c00441{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00441{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m66_c00441{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00441{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00441{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m31_c00441{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m103_c00441{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00441{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00441{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m54_c00441{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00441{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00441{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.md3_c00441{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m14_c00441{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00441{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m91_c00441{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00441{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m60_c00441{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00441{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md8_c00441{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m69_c00441{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00441{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m75_c00441{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00441{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m29_c00441{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m23_c00441{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m52_c00441{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00441{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00441{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00441{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00441{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00441{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.maa_c00441{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m50_c00441{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.meb_c00441{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m96_c00441{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mda_c00441{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m40_c00441{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m46_c00441{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m99_c00441{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m80_c00441{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00441{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m58_c00441{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00441{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00441{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m47_c00441{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);}
.m98_c00441{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m44_c00441{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me8_c00441{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.me5_c00441{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m83_c00441{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00441{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.md5_c00441{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00441{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md2_c00441{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00441{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00441{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m90_c00441{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.med_c00441{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me0_c00441{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m97_c00441{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md6_c00441{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mea_c00441{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.maf_c00441{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00441{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00441{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00441{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00441{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m106_c00441{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mff_c00441{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m92_c00441{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00441{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00441{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00441{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00441{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m108_c00441{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00441{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00441{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00441{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00441{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m45_c00441{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00441{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00441{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00441{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00441{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m34_c00441{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00441{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00441{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00441{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.me7_c00441{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00441{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m36_c00441{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m37_c00441{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00441{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00441{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00441{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m39_c00441{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00441{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m38_c00441{transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);}
.m109_c00441{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00441{transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);}
.m100_c00441{transform:matrix(0.383750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00441{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00441{transform:matrix(6.513250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.513250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.513250,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls0_c00441{letter-spacing:0.000000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{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__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00441{word-spacing:-15.611580px;}
.ws0_c00441{word-spacing:-12.643979px;}
.ws1_c00441{word-spacing:-9.167598px;}
.ws5_c00441{word-spacing:-8.891403px;}
.ws7_c00441{word-spacing:-7.750000px;}
.ws4_c00441{word-spacing:-5.986900px;}
.ws2_c00441{word-spacing:-3.750806px;}
.ws3_c00441{word-spacing:-1.657682px;}
.ws9_c00441{word-spacing:0.000000px;}
.ws8_c00441{word-spacing:663.426273px;}
.fc0_c00441{color:transparent;}
.fs7_c00441{font-size:30.000000px;}
.fs8_c00441{font-size:36.000000px;}
.fs5_c00441{font-size:42.000000px;}
.fs2_c00441{font-size:48.000000px;}
.fs6_c00441{font-size:54.000000px;}
.fs4_c00441{font-size:60.000000px;}
.fs3_c00441{font-size:66.000000px;}
.fs1_c00441{font-size:72.000000px;}
.fs0_c00441{font-size:78.000000px;}
.y63_c00441{bottom:-0.300000px;}
.y0_c00441{bottom:0.000000px;}
.y6b_c00441{bottom:203.700000px;}
.y6a_c00441{bottom:205.500000px;}
.y6d_c00441{bottom:211.650000px;}
.y69_c00441{bottom:222.900000px;}
.y6c_c00441{bottom:230.700000px;}
.y68_c00441{bottom:237.300000px;}
.y67_c00441{bottom:247.350000px;}
.y65_c00441{bottom:261.750000px;}
.y66_c00441{bottom:265.350000px;}
.y62_c00441{bottom:277.200000px;}
.y64_c00441{bottom:279.750000px;}
.y61_c00441{bottom:295.050000px;}
.y32_c00441{bottom:297.000000px;}
.y60_c00441{bottom:312.750000px;}
.y31_c00441{bottom:317.100000px;}
.y5f_c00441{bottom:330.450000px;}
.y30_c00441{bottom:334.800000px;}
.y5e_c00441{bottom:345.300000px;}
.y2f_c00441{bottom:352.500000px;}
.y2e_c00441{bottom:370.200000px;}
.y5d_c00441{bottom:370.800000px;}
.y5c_c00441{bottom:388.050000px;}
.y2d_c00441{bottom:388.500000px;}
.y6e_c00441{bottom:395.250000px;}
.y2c_c00441{bottom:405.750000px;}
.y5b_c00441{bottom:406.350000px;}
.y2b_c00441{bottom:421.500000px;}
.y5a_c00441{bottom:424.050000px;}
.y59_c00441{bottom:442.050000px;}
.y2a_c00441{bottom:445.650000px;}
.y29_c00441{bottom:450.300000px;}
.y58_c00441{bottom:460.050000px;}
.y28_c00441{bottom:462.750000px;}
.y57_c00441{bottom:478.050000px;}
.y27_c00441{bottom:480.450000px;}
.y56_c00441{bottom:495.750000px;}
.y26_c00441{bottom:498.450000px;}
.y55_c00441{bottom:513.750000px;}
.y25_c00441{bottom:516.450000px;}
.y54_c00441{bottom:531.750000px;}
.y24_c00441{bottom:534.150000px;}
.y53_c00441{bottom:550.800000px;}
.y23_c00441{bottom:552.900000px;}
.y22_c00441{bottom:570.150000px;}
.y52_c00441{bottom:572.100000px;}
.y21_c00441{bottom:587.400000px;}
.y51_c00441{bottom:589.800000px;}
.y20_c00441{bottom:605.400000px;}
.y50_c00441{bottom:608.100000px;}
.y1f_c00441{bottom:623.100000px;}
.y4f_c00441{bottom:625.350000px;}
.y1e_c00441{bottom:641.100000px;}
.y4e_c00441{bottom:643.350000px;}
.y1d_c00441{bottom:657.450000px;}
.y4d_c00441{bottom:661.350000px;}
.y4c_c00441{bottom:679.350000px;}
.y1c_c00441{bottom:680.100000px;}
.y4b_c00441{bottom:696.900000px;}
.y1b_c00441{bottom:698.400000px;}
.y4a_c00441{bottom:715.200000px;}
.y1a_c00441{bottom:716.400000px;}
.y49_c00441{bottom:732.900000px;}
.y19_c00441{bottom:734.100000px;}
.y48_c00441{bottom:750.900000px;}
.y18_c00441{bottom:751.800000px;}
.y47_c00441{bottom:768.150000px;}
.y17_c00441{bottom:769.500000px;}
.y46_c00441{bottom:785.850000px;}
.y16_c00441{bottom:787.500000px;}
.y45_c00441{bottom:803.550000px;}
.y15_c00441{bottom:804.750000px;}
.y44_c00441{bottom:821.850000px;}
.y14_c00441{bottom:823.500000px;}
.y43_c00441{bottom:839.100000px;}
.y13_c00441{bottom:841.200000px;}
.y42_c00441{bottom:858.600000px;}
.y12_c00441{bottom:858.900000px;}
.y11_c00441{bottom:876.900000px;}
.y41_c00441{bottom:879.150000px;}
.y10_c00441{bottom:894.900000px;}
.y40_c00441{bottom:897.150000px;}
.yf_c00441{bottom:912.600000px;}
.y3f_c00441{bottom:914.850000px;}
.ye_c00441{bottom:930.600000px;}
.y3e_c00441{bottom:932.850000px;}
.yd_c00441{bottom:942.750000px;}
.y3d_c00441{bottom:951.150000px;}
.y3c_c00441{bottom:968.850000px;}
.yc_c00441{bottom:970.500000px;}
.y3b_c00441{bottom:986.100000px;}
.yb_c00441{bottom:986.400000px;}
.ya_c00441{bottom:1004.400000px;}
.y3a_c00441{bottom:1005.450000px;}
.y9_c00441{bottom:1022.100000px;}
.y39_c00441{bottom:1030.950000px;}
.y8_c00441{bottom:1040.400000px;}
.y38_c00441{bottom:1048.650000px;}
.y7_c00441{bottom:1057.650000px;}
.y37_c00441{bottom:1066.650000px;}
.y6_c00441{bottom:1075.650000px;}
.y36_c00441{bottom:1084.650000px;}
.y5_c00441{bottom:1095.150000px;}
.y35_c00441{bottom:1099.800000px;}
.y4_c00441{bottom:1114.200000px;}
.y34_c00441{bottom:1129.650000px;}
.y3_c00441{bottom:1132.950000px;}
.y2_c00441{bottom:1145.100000px;}
.y33_c00441{bottom:1147.350000px;}
.y1_c00441{bottom:1163.550000px;}
.h9_c00441{height:30.000000px;}
.ha_c00441{height:36.000000px;}
.h7_c00441{height:42.000000px;}
.h4_c00441{height:48.000000px;}
.h8_c00441{height:54.000000px;}
.h6_c00441{height:60.000000px;}
.h5_c00441{height:66.000000px;}
.h3_c00441{height:72.000000px;}
.h2_c00441{height:78.000000px;}
.h1_c00441{height:1297.500000px;}
.h0_c00441{height:1297.799927px;}
.w0_c00441{width:958.320007px;}
.w1_c00441{width:958.500000px;}
.x0_c00441{left:0.000000px;}
.x2_c00441{left:147.900000px;}
.x4_c00441{left:168.900000px;}
.x1d_c00441{left:170.400000px;}
.x2c_c00441{left:172.200000px;}
.x4f_c00441{left:174.300000px;}
.x5f_c00441{left:175.800000px;}
.x69_c00441{left:177.000000px;}
.x6c_c00441{left:178.050000px;}
.x7f_c00441{left:180.750000px;}
.x88_c00441{left:181.950000px;}
.x8f_c00441{left:183.000000px;}
.x9a_c00441{left:184.050000px;}
.x9f_c00441{left:185.400000px;}
.xa6_c00441{left:187.200000px;}
.x16_c00441{left:189.300000px;}
.xb_c00441{left:192.600000px;}
.xa3_c00441{left:194.400000px;}
.x7e_c00441{left:199.050000px;}
.x157_c00441{left:200.250000px;}
.x99_c00441{left:203.100000px;}
.x60_c00441{left:204.300000px;}
.x32_c00441{left:206.250000px;}
.x39_c00441{left:209.850000px;}
.x153_c00441{left:211.050000px;}
.x5_c00441{left:212.400000px;}
.x17_c00441{left:215.250000px;}
.x63_c00441{left:216.450000px;}
.x42_c00441{left:218.100000px;}
.x23_c00441{left:219.750000px;}
.x10_c00441{left:222.000000px;}
.x72_c00441{left:223.950000px;}
.x158_c00441{left:225.150000px;}
.x48_c00441{left:226.800000px;}
.x70_c00441{left:229.350000px;}
.x3a_c00441{left:230.400000px;}
.x91_c00441{left:232.050000px;}
.x1e_c00441{left:233.400000px;}
.x50_c00441{left:234.750000px;}
.x7a_c00441{left:237.150000px;}
.x96_c00441{left:240.150000px;}
.x73_c00441{left:241.950000px;}
.xa4_c00441{left:243.000000px;}
.x8c_c00441{left:244.650000px;}
.x8a_c00441{left:246.300000px;}
.x53_c00441{left:248.250000px;}
.x15a_c00441{left:252.000000px;}
.x18_c00441{left:254.100000px;}
.x3b_c00441{left:255.900000px;}
.x24_c00441{left:259.050000px;}
.x2d_c00441{left:264.000000px;}
.x5c_c00441{left:265.500000px;}
.x64_c00441{left:267.150000px;}
.xc_c00441{left:268.500000px;}
.x89_c00441{left:271.050000px;}
.x33_c00441{left:272.100000px;}
.x85_c00441{left:274.500000px;}
.x49_c00441{left:277.200000px;}
.x6_c00441{left:279.300000px;}
.x3c_c00441{left:281.100000px;}
.x6a_c00441{left:282.450000px;}
.x65_c00441{left:283.650000px;}
.x58_c00441{left:285.000000px;}
.x155_c00441{left:286.800000px;}
.x25_c00441{left:288.900000px;}
.x2e_c00441{left:292.500000px;}
.xd_c00441{left:294.750000px;}
.x92_c00441{left:297.150000px;}
.x26_c00441{left:300.000000px;}
.x59_c00441{left:301.500000px;}
.xa0_c00441{left:302.700000px;}
.x80_c00441{left:304.500000px;}
.x15b_c00441{left:307.500000px;}
.x11_c00441{left:308.700000px;}
.x19_c00441{left:310.650000px;}
.x78_c00441{left:312.450000px;}
.x82_c00441{left:313.650000px;}
.x74_c00441{left:314.700000px;}
.x1f_c00441{left:318.750000px;}
.x34_c00441{left:321.000000px;}
.x79_c00441{left:322.200000px;}
.x7_c00441{left:323.550000px;}
.xa1_c00441{left:325.050000px;}
.x27_c00441{left:328.800000px;}
.x61_c00441{left:330.900000px;}
.x9b_c00441{left:332.400000px;}
.x86_c00441{left:333.900000px;}
.x3d_c00441{left:335.400000px;}
.x5a_c00441{left:336.450000px;}
.x43_c00441{left:337.650000px;}
.x66_c00441{left:339.450000px;}
.x6d_c00441{left:341.400000px;}
.x4a_c00441{left:342.450000px;}
.x12_c00441{left:343.950000px;}
.x90_c00441{left:346.050000px;}
.x20_c00441{left:347.550000px;}
.x67_c00441{left:349.950000px;}
.x47_c00441{left:353.100000px;}
.x93_c00441{left:356.550000px;}
.x35_c00441{left:358.500000px;}
.x75_c00441{left:361.800000px;}
.xe_c00441{left:367.350000px;}
.xa5_c00441{left:368.700000px;}
.x8e_c00441{left:370.050000px;}
.x5d_c00441{left:371.400000px;}
.x44_c00441{left:374.700000px;}
.x28_c00441{left:375.900000px;}
.x13_c00441{left:377.400000px;}
.x87_c00441{left:379.200000px;}
.x62_c00441{left:381.000000px;}
.x83_c00441{left:382.050000px;}
.x8_c00441{left:383.250000px;}
.x97_c00441{left:384.600000px;}
.xa7_c00441{left:386.100000px;}
.x9c_c00441{left:387.600000px;}
.x4b_c00441{left:389.550000px;}
.xa2_c00441{left:390.600000px;}
.x3e_c00441{left:392.700000px;}
.x29_c00441{left:394.200000px;}
.x1_c00441{left:396.300000px;}
.x1a_c00441{left:397.800000px;}
.x14_c00441{left:400.050000px;}
.x68_c00441{left:401.850000px;}
.x9_c00441{left:403.800000px;}
.x54_c00441{left:404.850000px;}
.x7b_c00441{left:408.450000px;}
.x84_c00441{left:410.550000px;}
.x95_c00441{left:412.950000px;}
.x2f_c00441{left:414.600000px;}
.x55_c00441{left:415.950000px;}
.x36_c00441{left:417.900000px;}
.x3f_c00441{left:419.400000px;}
.x1b_c00441{left:420.900000px;}
.xf_c00441{left:423.150000px;}
.x51_c00441{left:425.100000px;}
.x7c_c00441{left:426.150000px;}
.x4c_c00441{left:427.350000px;}
.x37_c00441{left:428.400000px;}
.x21_c00441{left:430.050000px;}
.x45_c00441{left:432.000000px;}
.x6b_c00441{left:433.650000px;}
.x9d_c00441{left:435.900000px;}
.x2a_c00441{left:438.150000px;}
.x5b_c00441{left:439.650000px;}
.x81_c00441{left:441.300000px;}
.x7d_c00441{left:443.250000px;}
.x1c_c00441{left:444.300000px;}
.x15_c00441{left:446.850000px;}
.x2b_c00441{left:448.650000px;}
.x30_c00441{left:450.900000px;}
.x52_c00441{left:452.400000px;}
.x8b_c00441{left:453.450000px;}
.x40_c00441{left:455.100000px;}
.x4d_c00441{left:457.200000px;}
.x31_c00441{left:460.650000px;}
.x159_c00441{left:462.000000px;}
.x8d_c00441{left:463.200000px;}
.x6e_c00441{left:464.400000px;}
.xa_c00441{left:465.600000px;}
.x4e_c00441{left:467.700000px;}
.x154_c00441{left:468.900000px;}
.x41_c00441{left:470.550000px;}
.x56_c00441{left:472.200000px;}
.x71_c00441{left:474.150000px;}
.x76_c00441{left:475.800000px;}
.x22_c00441{left:478.350000px;}
.x38_c00441{left:480.300000px;}
.x46_c00441{left:481.650000px;}
.x57_c00441{left:483.000000px;}
.x5e_c00441{left:484.350000px;}
.x9e_c00441{left:488.100000px;}
.x77_c00441{left:494.250000px;}
.x3_c00441{left:496.800000px;}
.x6f_c00441{left:498.900000px;}
.x98_c00441{left:503.400000px;}
.x156_c00441{left:507.300000px;}
.x94_c00441{left:510.900000px;}
.xa8_c00441{left:515.250000px;}
.x15f_c00441{left:523.500000px;}
.xa9_c00441{left:527.400000px;}
.xb5_c00441{left:529.200000px;}
.xbe_c00441{left:531.150000px;}
.xcc_c00441{left:532.200000px;}
.xd2_c00441{left:533.550000px;}
.xe1_c00441{left:535.500000px;}
.xe9_c00441{left:536.850000px;}
.xf6_c00441{left:538.350000px;}
.x106_c00441{left:540.000000px;}
.x10e_c00441{left:541.050000px;}
.x118_c00441{left:542.850000px;}
.xd5_c00441{left:543.900000px;}
.x12a_c00441{left:545.850000px;}
.xb6_c00441{left:547.950000px;}
.x137_c00441{left:549.000000px;}
.x126_c00441{left:550.050000px;}
.xbf_c00441{left:552.000000px;}
.xcd_c00441{left:553.050000px;}
.x143_c00441{left:554.700000px;}
.xfb_c00441{left:556.200000px;}
.x14a_c00441{left:557.700000px;}
.x14c_c00441{left:558.900000px;}
.x10f_c00441{left:562.350000px;}
.xc4_c00441{left:565.050000px;}
.xaa_c00441{left:567.300000px;}
.x13a_c00441{left:568.500000px;}
.x12e_c00441{left:569.850000px;}
.x107_c00441{left:571.650000px;}
.xd6_c00441{left:573.000000px;}
.xb0_c00441{left:576.300000px;}
.xea_c00441{left:577.950000px;}
.x12b_c00441{left:579.750000px;}
.xfc_c00441{left:582.150000px;}
.x140_c00441{left:586.350000px;}
.xce_c00441{left:587.700000px;}
.x12f_c00441{left:588.900000px;}
.xd3_c00441{left:590.400000px;}
.x120_c00441{left:591.750000px;}
.xb7_c00441{left:594.000000px;}
.x138_c00441{left:595.050000px;}
.xb1_c00441{left:600.000000px;}
.xeb_c00441{left:602.400000px;}
.x10a_c00441{left:603.600000px;}
.xe5_c00441{left:604.950000px;}
.xc5_c00441{left:606.750000px;}
.xf7_c00441{left:607.800000px;}
.x144_c00441{left:609.000000px;}
.x11b_c00441{left:610.950000px;}
.xd7_c00441{left:614.400000px;}
.xc0_c00441{left:619.650000px;}
.x130_c00441{left:623.400000px;}
.x110_c00441{left:624.600000px;}
.x117_c00441{left:626.550000px;}
.xd4_c00441{left:627.900000px;}
.x14d_c00441{left:629.550000px;}
.xc1_c00441{left:631.500000px;}
.xe2_c00441{left:632.700000px;}
.xe6_c00441{left:634.050000px;}
.xab_c00441{left:635.400000px;}
.x146_c00441{left:636.750000px;}
.xc6_c00441{left:638.400000px;}
.xb8_c00441{left:641.100000px;}
.x133_c00441{left:642.600000px;}
.x111_c00441{left:645.150000px;}
.xdc_c00441{left:646.200000px;}
.x10b_c00441{left:647.850000px;}
.xef_c00441{left:649.050000px;}
.x14f_c00441{left:652.200000px;}
.xc2_c00441{left:654.600000px;}
.xb2_c00441{left:660.900000px;}
.xec_c00441{left:663.900000px;}
.xcf_c00441{left:666.450000px;}
.x127_c00441{left:668.400000px;}
.x15e_c00441{left:669.600000px;}
.xe3_c00441{left:671.250000px;}
.xf8_c00441{left:672.600000px;}
.xb9_c00441{left:673.800000px;}
.xfd_c00441{left:676.350000px;}
.x102_c00441{left:678.750000px;}
.x112_c00441{left:680.100000px;}
.xf9_c00441{left:681.300000px;}
.x11c_c00441{left:683.250000px;}
.x121_c00441{left:685.350000px;}
.xfe_c00441{left:687.900000px;}
.xac_c00441{left:689.700000px;}
.xc7_c00441{left:691.350000px;}
.x108_c00441{left:692.550000px;}
.x11d_c00441{left:693.750000px;}
.xdd_c00441{left:694.800000px;}
.xed_c00441{left:697.350000px;}
.xfa_c00441{left:698.550000px;}
.x113_c00441{left:699.600000px;}
.xba_c00441{left:701.100000px;}
.xf0_c00441{left:703.800000px;}
.x128_c00441{left:706.200000px;}
.x119_c00441{left:708.450000px;}
.xff_c00441{left:709.500000px;}
.x147_c00441{left:710.550000px;}
.xd8_c00441{left:711.900000px;}
.x13d_c00441{left:713.100000px;}
.x122_c00441{left:714.900000px;}
.xde_c00441{left:717.150000px;}
.xd0_c00441{left:719.400000px;}
.x12c_c00441{left:721.500000px;}
.xf1_c00441{left:724.350000px;}
.x150_c00441{left:726.600000px;}
.x100_c00441{left:727.800000px;}
.x14b_c00441{left:731.550000px;}
.xc8_c00441{left:733.050000px;}
.x14e_c00441{left:738.300000px;}
.x10c_c00441{left:739.650000px;}
.x139_c00441{left:741.300000px;}
.xee_c00441{left:742.650000px;}
.x131_c00441{left:745.050000px;}
.xad_c00441{left:747.600000px;}
.xb3_c00441{left:749.100000px;}
.x11a_c00441{left:751.950000px;}
.x11e_c00441{left:753.450000px;}
.xc9_c00441{left:754.650000px;}
.x129_c00441{left:758.700000px;}
.x149_c00441{left:759.750000px;}
.xbb_c00441{left:761.550000px;}
.x13b_c00441{left:762.600000px;}
.x103_c00441{left:763.950000px;}
.xe4_c00441{left:765.600000px;}
.xd9_c00441{left:766.650000px;}
.xc3_c00441{left:768.750000px;}
.x10d_c00441{left:770.250000px;}
.xf4_c00441{left:771.750000px;}
.x13e_c00441{left:773.250000px;}
.xf2_c00441{left:774.450000px;}
.x109_c00441{left:775.800000px;}
.x15c_c00441{left:777.000000px;}
.x101_c00441{left:778.200000px;}
.x136_c00441{left:781.200000px;}
.x123_c00441{left:783.300000px;}
.x134_c00441{left:785.700000px;}
.x114_c00441{left:786.750000px;}
.x141_c00441{left:787.950000px;}
.xbc_c00441{left:789.300000px;}
.xe7_c00441{left:790.950000px;}
.xda_c00441{left:792.900000px;}
.xb4_c00441{left:795.150000px;}
.xd1_c00441{left:796.500000px;}
.xae_c00441{left:798.300000px;}
.xe8_c00441{left:801.450000px;}
.xca_c00441{left:803.250000px;}
.xf5_c00441{left:804.450000px;}
.x115_c00441{left:806.250000px;}
.x104_c00441{left:808.650000px;}
.xbd_c00441{left:810.900000px;}
.x151_c00441{left:811.950000px;}
.xdf_c00441{left:813.750000px;}
.xdb_c00441{left:817.050000px;}
.x124_c00441{left:819.600000px;}
.x152_c00441{left:822.750000px;}
.xcb_c00441{left:823.800000px;}
.xaf_c00441{left:825.300000px;}
.x125_c00441{left:831.150000px;}
.x12d_c00441{left:833.400000px;}
.x145_c00441{left:836.550000px;}
.x105_c00441{left:837.750000px;}
.xf3_c00441{left:840.000000px;}
.x132_c00441{left:841.200000px;}
.x116_c00441{left:842.550000px;}
.x11f_c00441{left:844.200000px;}
.x135_c00441{left:845.850000px;}
.x13f_c00441{left:847.050000px;}
.xe0_c00441{left:850.800000px;}
.x13c_c00441{left:854.700000px;}
.x148_c00441{left:855.900000px;}
.x15d_c00441{left:860.550000px;}
.x142_c00441{left:867.600000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws6_c00441{word-spacing:-13.876960pt;}
.ws0_c00441{word-spacing:-11.239092pt;}
.ws1_c00441{word-spacing:-8.148976pt;}
.ws5_c00441{word-spacing:-7.903469pt;}
.ws7_c00441{word-spacing:-6.888889pt;}
.ws4_c00441{word-spacing:-5.321689pt;}
.ws2_c00441{word-spacing:-3.334049pt;}
.ws3_c00441{word-spacing:-1.473495pt;}
.ws9_c00441{word-spacing:0.000000pt;}
.ws8_c00441{word-spacing:589.712243pt;}
.fs7_c00441{font-size:26.666667pt;}
.fs8_c00441{font-size:32.000000pt;}
.fs5_c00441{font-size:37.333333pt;}
.fs2_c00441{font-size:42.666667pt;}
.fs6_c00441{font-size:48.000000pt;}
.fs4_c00441{font-size:53.333333pt;}
.fs3_c00441{font-size:58.666667pt;}
.fs1_c00441{font-size:64.000000pt;}
.fs0_c00441{font-size:69.333333pt;}
.y63_c00441{bottom:-0.266667pt;}
.y0_c00441{bottom:0.000000pt;}
.y6b_c00441{bottom:181.066667pt;}
.y6a_c00441{bottom:182.666667pt;}
.y6d_c00441{bottom:188.133333pt;}
.y69_c00441{bottom:198.133333pt;}
.y6c_c00441{bottom:205.066667pt;}
.y68_c00441{bottom:210.933333pt;}
.y67_c00441{bottom:219.866667pt;}
.y65_c00441{bottom:232.666667pt;}
.y66_c00441{bottom:235.866667pt;}
.y62_c00441{bottom:246.400000pt;}
.y64_c00441{bottom:248.666667pt;}
.y61_c00441{bottom:262.266667pt;}
.y32_c00441{bottom:264.000000pt;}
.y60_c00441{bottom:278.000000pt;}
.y31_c00441{bottom:281.866667pt;}
.y5f_c00441{bottom:293.733333pt;}
.y30_c00441{bottom:297.600000pt;}
.y5e_c00441{bottom:306.933333pt;}
.y2f_c00441{bottom:313.333333pt;}
.y2e_c00441{bottom:329.066667pt;}
.y5d_c00441{bottom:329.600000pt;}
.y5c_c00441{bottom:344.933333pt;}
.y2d_c00441{bottom:345.333333pt;}
.y6e_c00441{bottom:351.333333pt;}
.y2c_c00441{bottom:360.666667pt;}
.y5b_c00441{bottom:361.200000pt;}
.y2b_c00441{bottom:374.666667pt;}
.y5a_c00441{bottom:376.933333pt;}
.y59_c00441{bottom:392.933333pt;}
.y2a_c00441{bottom:396.133333pt;}
.y29_c00441{bottom:400.266667pt;}
.y58_c00441{bottom:408.933333pt;}
.y28_c00441{bottom:411.333333pt;}
.y57_c00441{bottom:424.933333pt;}
.y27_c00441{bottom:427.066667pt;}
.y56_c00441{bottom:440.666667pt;}
.y26_c00441{bottom:443.066667pt;}
.y55_c00441{bottom:456.666667pt;}
.y25_c00441{bottom:459.066667pt;}
.y54_c00441{bottom:472.666667pt;}
.y24_c00441{bottom:474.800000pt;}
.y53_c00441{bottom:489.600000pt;}
.y23_c00441{bottom:491.466667pt;}
.y22_c00441{bottom:506.800000pt;}
.y52_c00441{bottom:508.533333pt;}
.y21_c00441{bottom:522.133333pt;}
.y51_c00441{bottom:524.266667pt;}
.y20_c00441{bottom:538.133333pt;}
.y50_c00441{bottom:540.533333pt;}
.y1f_c00441{bottom:553.866667pt;}
.y4f_c00441{bottom:555.866667pt;}
.y1e_c00441{bottom:569.866667pt;}
.y4e_c00441{bottom:571.866667pt;}
.y1d_c00441{bottom:584.400000pt;}
.y4d_c00441{bottom:587.866667pt;}
.y4c_c00441{bottom:603.866667pt;}
.y1c_c00441{bottom:604.533333pt;}
.y4b_c00441{bottom:619.466667pt;}
.y1b_c00441{bottom:620.800000pt;}
.y4a_c00441{bottom:635.733333pt;}
.y1a_c00441{bottom:636.800000pt;}
.y49_c00441{bottom:651.466667pt;}
.y19_c00441{bottom:652.533333pt;}
.y48_c00441{bottom:667.466667pt;}
.y18_c00441{bottom:668.266667pt;}
.y47_c00441{bottom:682.800000pt;}
.y17_c00441{bottom:684.000000pt;}
.y46_c00441{bottom:698.533333pt;}
.y16_c00441{bottom:700.000000pt;}
.y45_c00441{bottom:714.266667pt;}
.y15_c00441{bottom:715.333333pt;}
.y44_c00441{bottom:730.533333pt;}
.y14_c00441{bottom:732.000000pt;}
.y43_c00441{bottom:745.866667pt;}
.y13_c00441{bottom:747.733333pt;}
.y42_c00441{bottom:763.200000pt;}
.y12_c00441{bottom:763.466667pt;}
.y11_c00441{bottom:779.466667pt;}
.y41_c00441{bottom:781.466667pt;}
.y10_c00441{bottom:795.466667pt;}
.y40_c00441{bottom:797.466667pt;}
.yf_c00441{bottom:811.200000pt;}
.y3f_c00441{bottom:813.200000pt;}
.ye_c00441{bottom:827.200000pt;}
.y3e_c00441{bottom:829.200000pt;}
.yd_c00441{bottom:838.000000pt;}
.y3d_c00441{bottom:845.466667pt;}
.y3c_c00441{bottom:861.200000pt;}
.yc_c00441{bottom:862.666667pt;}
.y3b_c00441{bottom:876.533333pt;}
.yb_c00441{bottom:876.800000pt;}
.ya_c00441{bottom:892.800000pt;}
.y3a_c00441{bottom:893.733333pt;}
.y9_c00441{bottom:908.533333pt;}
.y39_c00441{bottom:916.400000pt;}
.y8_c00441{bottom:924.800000pt;}
.y38_c00441{bottom:932.133333pt;}
.y7_c00441{bottom:940.133333pt;}
.y37_c00441{bottom:948.133333pt;}
.y6_c00441{bottom:956.133333pt;}
.y36_c00441{bottom:964.133333pt;}
.y5_c00441{bottom:973.466667pt;}
.y35_c00441{bottom:977.600000pt;}
.y4_c00441{bottom:990.400000pt;}
.y34_c00441{bottom:1004.133333pt;}
.y3_c00441{bottom:1007.066667pt;}
.y2_c00441{bottom:1017.866667pt;}
.y33_c00441{bottom:1019.866667pt;}
.y1_c00441{bottom:1034.266667pt;}
.h9_c00441{height:26.666667pt;}
.ha_c00441{height:32.000000pt;}
.h7_c00441{height:37.333333pt;}
.h4_c00441{height:42.666667pt;}
.h8_c00441{height:48.000000pt;}
.h6_c00441{height:53.333333pt;}
.h5_c00441{height:58.666667pt;}
.h3_c00441{height:64.000000pt;}
.h2_c00441{height:69.333333pt;}
.h1_c00441{height:1153.333333pt;}
.h0_c00441{height:1153.599935pt;}
.w0_c00441{width:851.840007pt;}
.w1_c00441{width:852.000000pt;}
.x0_c00441{left:0.000000pt;}
.x2_c00441{left:131.466667pt;}
.x4_c00441{left:150.133333pt;}
.x1d_c00441{left:151.466667pt;}
.x2c_c00441{left:153.066667pt;}
.x4f_c00441{left:154.933333pt;}
.x5f_c00441{left:156.266667pt;}
.x69_c00441{left:157.333333pt;}
.x6c_c00441{left:158.266667pt;}
.x7f_c00441{left:160.666667pt;}
.x88_c00441{left:161.733333pt;}
.x8f_c00441{left:162.666667pt;}
.x9a_c00441{left:163.600000pt;}
.x9f_c00441{left:164.800000pt;}
.xa6_c00441{left:166.400000pt;}
.x16_c00441{left:168.266667pt;}
.xb_c00441{left:171.200000pt;}
.xa3_c00441{left:172.800000pt;}
.x7e_c00441{left:176.933333pt;}
.x157_c00441{left:178.000000pt;}
.x99_c00441{left:180.533333pt;}
.x60_c00441{left:181.600000pt;}
.x32_c00441{left:183.333333pt;}
.x39_c00441{left:186.533333pt;}
.x153_c00441{left:187.600000pt;}
.x5_c00441{left:188.800000pt;}
.x17_c00441{left:191.333333pt;}
.x63_c00441{left:192.400000pt;}
.x42_c00441{left:193.866667pt;}
.x23_c00441{left:195.333333pt;}
.x10_c00441{left:197.333333pt;}
.x72_c00441{left:199.066667pt;}
.x158_c00441{left:200.133333pt;}
.x48_c00441{left:201.600000pt;}
.x70_c00441{left:203.866667pt;}
.x3a_c00441{left:204.800000pt;}
.x91_c00441{left:206.266667pt;}
.x1e_c00441{left:207.466667pt;}
.x50_c00441{left:208.666667pt;}
.x7a_c00441{left:210.800000pt;}
.x96_c00441{left:213.466667pt;}
.x73_c00441{left:215.066667pt;}
.xa4_c00441{left:216.000000pt;}
.x8c_c00441{left:217.466667pt;}
.x8a_c00441{left:218.933333pt;}
.x53_c00441{left:220.666667pt;}
.x15a_c00441{left:224.000000pt;}
.x18_c00441{left:225.866667pt;}
.x3b_c00441{left:227.466667pt;}
.x24_c00441{left:230.266667pt;}
.x2d_c00441{left:234.666667pt;}
.x5c_c00441{left:236.000000pt;}
.x64_c00441{left:237.466667pt;}
.xc_c00441{left:238.666667pt;}
.x89_c00441{left:240.933333pt;}
.x33_c00441{left:241.866667pt;}
.x85_c00441{left:244.000000pt;}
.x49_c00441{left:246.400000pt;}
.x6_c00441{left:248.266667pt;}
.x3c_c00441{left:249.866667pt;}
.x6a_c00441{left:251.066667pt;}
.x65_c00441{left:252.133333pt;}
.x58_c00441{left:253.333333pt;}
.x155_c00441{left:254.933333pt;}
.x25_c00441{left:256.800000pt;}
.x2e_c00441{left:260.000000pt;}
.xd_c00441{left:262.000000pt;}
.x92_c00441{left:264.133333pt;}
.x26_c00441{left:266.666667pt;}
.x59_c00441{left:268.000000pt;}
.xa0_c00441{left:269.066667pt;}
.x80_c00441{left:270.666667pt;}
.x15b_c00441{left:273.333333pt;}
.x11_c00441{left:274.400000pt;}
.x19_c00441{left:276.133333pt;}
.x78_c00441{left:277.733333pt;}
.x82_c00441{left:278.800000pt;}
.x74_c00441{left:279.733333pt;}
.x1f_c00441{left:283.333333pt;}
.x34_c00441{left:285.333333pt;}
.x79_c00441{left:286.400000pt;}
.x7_c00441{left:287.600000pt;}
.xa1_c00441{left:288.933333pt;}
.x27_c00441{left:292.266667pt;}
.x61_c00441{left:294.133333pt;}
.x9b_c00441{left:295.466667pt;}
.x86_c00441{left:296.800000pt;}
.x3d_c00441{left:298.133333pt;}
.x5a_c00441{left:299.066667pt;}
.x43_c00441{left:300.133333pt;}
.x66_c00441{left:301.733333pt;}
.x6d_c00441{left:303.466667pt;}
.x4a_c00441{left:304.400000pt;}
.x12_c00441{left:305.733333pt;}
.x90_c00441{left:307.600000pt;}
.x20_c00441{left:308.933333pt;}
.x67_c00441{left:311.066667pt;}
.x47_c00441{left:313.866667pt;}
.x93_c00441{left:316.933333pt;}
.x35_c00441{left:318.666667pt;}
.x75_c00441{left:321.600000pt;}
.xe_c00441{left:326.533333pt;}
.xa5_c00441{left:327.733333pt;}
.x8e_c00441{left:328.933333pt;}
.x5d_c00441{left:330.133333pt;}
.x44_c00441{left:333.066667pt;}
.x28_c00441{left:334.133333pt;}
.x13_c00441{left:335.466667pt;}
.x87_c00441{left:337.066667pt;}
.x62_c00441{left:338.666667pt;}
.x83_c00441{left:339.600000pt;}
.x8_c00441{left:340.666667pt;}
.x97_c00441{left:341.866667pt;}
.xa7_c00441{left:343.200000pt;}
.x9c_c00441{left:344.533333pt;}
.x4b_c00441{left:346.266667pt;}
.xa2_c00441{left:347.200000pt;}
.x3e_c00441{left:349.066667pt;}
.x29_c00441{left:350.400000pt;}
.x1_c00441{left:352.266667pt;}
.x1a_c00441{left:353.600000pt;}
.x14_c00441{left:355.600000pt;}
.x68_c00441{left:357.200000pt;}
.x9_c00441{left:358.933333pt;}
.x54_c00441{left:359.866667pt;}
.x7b_c00441{left:363.066667pt;}
.x84_c00441{left:364.933333pt;}
.x95_c00441{left:367.066667pt;}
.x2f_c00441{left:368.533333pt;}
.x55_c00441{left:369.733333pt;}
.x36_c00441{left:371.466667pt;}
.x3f_c00441{left:372.800000pt;}
.x1b_c00441{left:374.133333pt;}
.xf_c00441{left:376.133333pt;}
.x51_c00441{left:377.866667pt;}
.x7c_c00441{left:378.800000pt;}
.x4c_c00441{left:379.866667pt;}
.x37_c00441{left:380.800000pt;}
.x21_c00441{left:382.266667pt;}
.x45_c00441{left:384.000000pt;}
.x6b_c00441{left:385.466667pt;}
.x9d_c00441{left:387.466667pt;}
.x2a_c00441{left:389.466667pt;}
.x5b_c00441{left:390.800000pt;}
.x81_c00441{left:392.266667pt;}
.x7d_c00441{left:394.000000pt;}
.x1c_c00441{left:394.933333pt;}
.x15_c00441{left:397.200000pt;}
.x2b_c00441{left:398.800000pt;}
.x30_c00441{left:400.800000pt;}
.x52_c00441{left:402.133333pt;}
.x8b_c00441{left:403.066667pt;}
.x40_c00441{left:404.533333pt;}
.x4d_c00441{left:406.400000pt;}
.x31_c00441{left:409.466667pt;}
.x159_c00441{left:410.666667pt;}
.x8d_c00441{left:411.733333pt;}
.x6e_c00441{left:412.800000pt;}
.xa_c00441{left:413.866667pt;}
.x4e_c00441{left:415.733333pt;}
.x154_c00441{left:416.800000pt;}
.x41_c00441{left:418.266667pt;}
.x56_c00441{left:419.733333pt;}
.x71_c00441{left:421.466667pt;}
.x76_c00441{left:422.933333pt;}
.x22_c00441{left:425.200000pt;}
.x38_c00441{left:426.933333pt;}
.x46_c00441{left:428.133333pt;}
.x57_c00441{left:429.333333pt;}
.x5e_c00441{left:430.533333pt;}
.x9e_c00441{left:433.866667pt;}
.x77_c00441{left:439.333333pt;}
.x3_c00441{left:441.600000pt;}
.x6f_c00441{left:443.466667pt;}
.x98_c00441{left:447.466667pt;}
.x156_c00441{left:450.933333pt;}
.x94_c00441{left:454.133333pt;}
.xa8_c00441{left:458.000000pt;}
.x15f_c00441{left:465.333333pt;}
.xa9_c00441{left:468.800000pt;}
.xb5_c00441{left:470.400000pt;}
.xbe_c00441{left:472.133333pt;}
.xcc_c00441{left:473.066667pt;}
.xd2_c00441{left:474.266667pt;}
.xe1_c00441{left:476.000000pt;}
.xe9_c00441{left:477.200000pt;}
.xf6_c00441{left:478.533333pt;}
.x106_c00441{left:480.000000pt;}
.x10e_c00441{left:480.933333pt;}
.x118_c00441{left:482.533333pt;}
.xd5_c00441{left:483.466667pt;}
.x12a_c00441{left:485.200000pt;}
.xb6_c00441{left:487.066667pt;}
.x137_c00441{left:488.000000pt;}
.x126_c00441{left:488.933333pt;}
.xbf_c00441{left:490.666667pt;}
.xcd_c00441{left:491.600000pt;}
.x143_c00441{left:493.066667pt;}
.xfb_c00441{left:494.400000pt;}
.x14a_c00441{left:495.733333pt;}
.x14c_c00441{left:496.800000pt;}
.x10f_c00441{left:499.866667pt;}
.xc4_c00441{left:502.266667pt;}
.xaa_c00441{left:504.266667pt;}
.x13a_c00441{left:505.333333pt;}
.x12e_c00441{left:506.533333pt;}
.x107_c00441{left:508.133333pt;}
.xd6_c00441{left:509.333333pt;}
.xb0_c00441{left:512.266667pt;}
.xea_c00441{left:513.733333pt;}
.x12b_c00441{left:515.333333pt;}
.xfc_c00441{left:517.466667pt;}
.x140_c00441{left:521.200000pt;}
.xce_c00441{left:522.400000pt;}
.x12f_c00441{left:523.466667pt;}
.xd3_c00441{left:524.800000pt;}
.x120_c00441{left:526.000000pt;}
.xb7_c00441{left:528.000000pt;}
.x138_c00441{left:528.933333pt;}
.xb1_c00441{left:533.333333pt;}
.xeb_c00441{left:535.466667pt;}
.x10a_c00441{left:536.533333pt;}
.xe5_c00441{left:537.733333pt;}
.xc5_c00441{left:539.333333pt;}
.xf7_c00441{left:540.266667pt;}
.x144_c00441{left:541.333333pt;}
.x11b_c00441{left:543.066667pt;}
.xd7_c00441{left:546.133333pt;}
.xc0_c00441{left:550.800000pt;}
.x130_c00441{left:554.133333pt;}
.x110_c00441{left:555.200000pt;}
.x117_c00441{left:556.933333pt;}
.xd4_c00441{left:558.133333pt;}
.x14d_c00441{left:559.600000pt;}
.xc1_c00441{left:561.333333pt;}
.xe2_c00441{left:562.400000pt;}
.xe6_c00441{left:563.600000pt;}
.xab_c00441{left:564.800000pt;}
.x146_c00441{left:566.000000pt;}
.xc6_c00441{left:567.466667pt;}
.xb8_c00441{left:569.866667pt;}
.x133_c00441{left:571.200000pt;}
.x111_c00441{left:573.466667pt;}
.xdc_c00441{left:574.400000pt;}
.x10b_c00441{left:575.866667pt;}
.xef_c00441{left:576.933333pt;}
.x14f_c00441{left:579.733333pt;}
.xc2_c00441{left:581.866667pt;}
.xb2_c00441{left:587.466667pt;}
.xec_c00441{left:590.133333pt;}
.xcf_c00441{left:592.400000pt;}
.x127_c00441{left:594.133333pt;}
.x15e_c00441{left:595.200000pt;}
.xe3_c00441{left:596.666667pt;}
.xf8_c00441{left:597.866667pt;}
.xb9_c00441{left:598.933333pt;}
.xfd_c00441{left:601.200000pt;}
.x102_c00441{left:603.333333pt;}
.x112_c00441{left:604.533333pt;}
.xf9_c00441{left:605.600000pt;}
.x11c_c00441{left:607.333333pt;}
.x121_c00441{left:609.200000pt;}
.xfe_c00441{left:611.466667pt;}
.xac_c00441{left:613.066667pt;}
.xc7_c00441{left:614.533333pt;}
.x108_c00441{left:615.600000pt;}
.x11d_c00441{left:616.666667pt;}
.xdd_c00441{left:617.600000pt;}
.xed_c00441{left:619.866667pt;}
.xfa_c00441{left:620.933333pt;}
.x113_c00441{left:621.866667pt;}
.xba_c00441{left:623.200000pt;}
.xf0_c00441{left:625.600000pt;}
.x128_c00441{left:627.733333pt;}
.x119_c00441{left:629.733333pt;}
.xff_c00441{left:630.666667pt;}
.x147_c00441{left:631.600000pt;}
.xd8_c00441{left:632.800000pt;}
.x13d_c00441{left:633.866667pt;}
.x122_c00441{left:635.466667pt;}
.xde_c00441{left:637.466667pt;}
.xd0_c00441{left:639.466667pt;}
.x12c_c00441{left:641.333333pt;}
.xf1_c00441{left:643.866667pt;}
.x150_c00441{left:645.866667pt;}
.x100_c00441{left:646.933333pt;}
.x14b_c00441{left:650.266667pt;}
.xc8_c00441{left:651.600000pt;}
.x14e_c00441{left:656.266667pt;}
.x10c_c00441{left:657.466667pt;}
.x139_c00441{left:658.933333pt;}
.xee_c00441{left:660.133333pt;}
.x131_c00441{left:662.266667pt;}
.xad_c00441{left:664.533333pt;}
.xb3_c00441{left:665.866667pt;}
.x11a_c00441{left:668.400000pt;}
.x11e_c00441{left:669.733333pt;}
.xc9_c00441{left:670.800000pt;}
.x129_c00441{left:674.400000pt;}
.x149_c00441{left:675.333333pt;}
.xbb_c00441{left:676.933333pt;}
.x13b_c00441{left:677.866667pt;}
.x103_c00441{left:679.066667pt;}
.xe4_c00441{left:680.533333pt;}
.xd9_c00441{left:681.466667pt;}
.xc3_c00441{left:683.333333pt;}
.x10d_c00441{left:684.666667pt;}
.xf4_c00441{left:686.000000pt;}
.x13e_c00441{left:687.333333pt;}
.xf2_c00441{left:688.400000pt;}
.x109_c00441{left:689.600000pt;}
.x15c_c00441{left:690.666667pt;}
.x101_c00441{left:691.733333pt;}
.x136_c00441{left:694.400000pt;}
.x123_c00441{left:696.266667pt;}
.x134_c00441{left:698.400000pt;}
.x114_c00441{left:699.333333pt;}
.x141_c00441{left:700.400000pt;}
.xbc_c00441{left:701.600000pt;}
.xe7_c00441{left:703.066667pt;}
.xda_c00441{left:704.800000pt;}
.xb4_c00441{left:706.800000pt;}
.xd1_c00441{left:708.000000pt;}
.xae_c00441{left:709.600000pt;}
.xe8_c00441{left:712.400000pt;}
.xca_c00441{left:714.000000pt;}
.xf5_c00441{left:715.066667pt;}
.x115_c00441{left:716.666667pt;}
.x104_c00441{left:718.800000pt;}
.xbd_c00441{left:720.800000pt;}
.x151_c00441{left:721.733333pt;}
.xdf_c00441{left:723.333333pt;}
.xdb_c00441{left:726.266667pt;}
.x124_c00441{left:728.533333pt;}
.x152_c00441{left:731.333333pt;}
.xcb_c00441{left:732.266667pt;}
.xaf_c00441{left:733.600000pt;}
.x125_c00441{left:738.800000pt;}
.x12d_c00441{left:740.800000pt;}
.x145_c00441{left:743.600000pt;}
.x105_c00441{left:744.666667pt;}
.xf3_c00441{left:746.666667pt;}
.x132_c00441{left:747.733333pt;}
.x116_c00441{left:748.933333pt;}
.x11f_c00441{left:750.400000pt;}
.x135_c00441{left:751.866667pt;}
.x13f_c00441{left:752.933333pt;}
.xe0_c00441{left:756.266667pt;}
.x13c_c00441{left:759.733333pt;}
.x148_c00441{left:760.800000pt;}
.x15d_c00441{left:764.933333pt;}
.x142_c00441{left:771.200000pt;}
}





/* 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_c00442 {
    display:none;
  }
  .loading-indicator_c00442.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00442 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_c00442 { 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_c00442" -> "#page-container .classname_c00442")
 */
.pf_c00442 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00442 { /* 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_c00442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00442 { /* 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_c00442 { /* 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_c00442 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00442 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00442 {overflow:visible;}
  }
}
.c_c00442 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00442 { /* 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_c00442:after { /* webkit #35443 */
  content: '';
}
.t_c00442:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00442 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 */
}
.__c00442 { /* 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_c00442 { /* info for Javascript */
  display:none;
}
.l_c00442 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00442 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00442 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00442: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_c00442 {
    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_c00442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00442.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_c00442 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00442{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00442;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.000000;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;}
.m65_c00442{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00442{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mac_c00442{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m100_c00442{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00442{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00442{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m104_c00442{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00442{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.maf_c00442{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m101_c00442{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m32_c00442{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m105_c00442{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00442{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m88_c00442{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00442{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00442{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00442{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00442{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m102_c00442{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m94_c00442{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.mde_c00442{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m76_c00442{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m90_c00442{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00442{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00442{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mca_c00442{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m25_c00442{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00442{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00442{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00442{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m23_c00442{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00442{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m11_c00442{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00442{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00442{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00442{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m72_c00442{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.meb_c00442{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00442{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.md_c00442{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m67_c00442{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m36_c00442{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m62_c00442{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00442{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3_c00442{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m71_c00442{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m103_c00442{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.md4_c00442{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00442{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00442{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00442{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m59_c00442{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m56_c00442{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m99_c00442{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m18_c00442{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2_c00442{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00442{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m42_c00442{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me_c00442{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m82_c00442{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m51_c00442{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m47_c00442{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00442{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m93_c00442{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m15_c00442{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00442{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m96_c00442{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00442{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m91_c00442{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00442{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00442{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00442{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m34_c00442{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m83_c00442{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m38_c00442{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m97_c00442{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00442{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m48_c00442{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mee_c00442{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00442{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00442{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9_c00442{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m12_c00442{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc_c00442{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m17_c00442{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00442{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00442{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00442{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00442{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m81_c00442{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00442{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6_c00442{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m80_c00442{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00442{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m14_c00442{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00442{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00442{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m50_c00442{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m63_c00442{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me6_c00442{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00442{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m21_c00442{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m66_c00442{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md5_c00442{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00442{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m22_c00442{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m64_c00442{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m16_c00442{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m92_c00442{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m13_c00442{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m70_c00442{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m33_c00442{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m49_c00442{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00442{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00442{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m54_c00442{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00442{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00442{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me0_c00442{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00442{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mda_c00442{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00442{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00442{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m35_c00442{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4_c00442{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00442{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me8_c00442{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m46_c00442{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00442{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00442{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m41_c00442{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.md7_c00442{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00442{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00442{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me2_c00442{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00442{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00442{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m44_c00442{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md0_c00442{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00442{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m98_c00442{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00442{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m37_c00442{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me4_c00442{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00442{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00442{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00442{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m19_c00442{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00442{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md3_c00442{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m73_c00442{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m39_c00442{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00442{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00442{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00442{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m74_c00442{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00442{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m24_c00442{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00442{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00442{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00442{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m31_c00442{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m57_c00442{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma_c00442{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00442{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8_c00442{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7_c00442{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m55_c00442{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00442{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00442{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00442{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00442{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m77_c00442{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00442{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5_c00442{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me3_c00442{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00442{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb_c00442{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00442{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00442{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m86_c00442{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m60_c00442{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00442{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00442{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mba_c00442{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00442{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10_c00442{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00442{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00442{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00442{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mff_c00442{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m30_c00442{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00442{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00442{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m53_c00442{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m40_c00442{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00442{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00442{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00442{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m43_c00442{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m85_c00442{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00442{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00442{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.maa_c00442{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00442{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00442{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00442{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m61_c00442{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mec_c00442{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md2_c00442{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m29_c00442{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00442{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mf_c00442{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mad_c00442{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00442{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00442{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m27_c00442{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m75_c00442{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md6_c00442{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m45_c00442{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m89_c00442{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m68_c00442{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m20_c00442{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m79_c00442{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md8_c00442{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00442{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mae_c00442{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00442{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m26_c00442{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me5_c00442{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00442{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.med_c00442{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m69_c00442{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00442{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00442{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00442{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me1_c00442{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00442{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m84_c00442{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mce_c00442{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m87_c00442{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00442{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m78_c00442{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.me7_c00442{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.md1_c00442{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mef_c00442{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m58_c00442{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00442{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.md9_c00442{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m28_c00442{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mab_c00442{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m52_c00442{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.me9_c00442{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m95_c00442{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00442{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00442{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00442{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mea_c00442{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m106_c00442{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00442{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m0_c00442{transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00442{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{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__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00442{word-spacing:-15.593486px;}
.ws2_c00442{word-spacing:-7.500000px;}
.ws5_c00442{word-spacing:-3.954545px;}
.wsa_c00442{word-spacing:-3.125000px;}
.wsb_c00442{word-spacing:0.000000px;}
.ws4_c00442{word-spacing:1.323024px;}
.ws1_c00442{word-spacing:6.944444px;}
.ws9_c00442{word-spacing:7.000000px;}
.ws0_c00442{word-spacing:7.500000px;}
.ws3_c00442{word-spacing:13.166667px;}
.ws8_c00442{word-spacing:23.923567px;}
.ws6_c00442{word-spacing:6947.000000px;}
._0_c00442{width:23.750000px;}
.fc0_c00442{color:transparent;}
.fs5_c00442{font-size:48.000000px;}
.fs4_c00442{font-size:54.000000px;}
.fs3_c00442{font-size:60.000000px;}
.fs2_c00442{font-size:66.000000px;}
.fs6_c00442{font-size:72.000000px;}
.fs0_c00442{font-size:108.000000px;}
.fs1_c00442{font-size:138.000000px;}
.y0_c00442{bottom:0.000000px;}
.y69_c00442{bottom:187.500000px;}
.y35_c00442{bottom:191.100000px;}
.y34_c00442{bottom:205.200000px;}
.y68_c00442{bottom:210.150000px;}
.y33_c00442{bottom:219.600000px;}
.y67_c00442{bottom:227.850000px;}
.y32_c00442{bottom:233.700000px;}
.y66_c00442{bottom:245.850000px;}
.y31_c00442{bottom:247.350000px;}
.y65_c00442{bottom:263.850000px;}
.y64_c00442{bottom:281.850000px;}
.y30_c00442{bottom:289.350000px;}
.y63_c00442{bottom:304.200000px;}
.y2f_c00442{bottom:307.050000px;}
.y62_c00442{bottom:321.900000px;}
.y2e_c00442{bottom:324.750000px;}
.y61_c00442{bottom:339.600000px;}
.y2d_c00442{bottom:342.000000px;}
.y60_c00442{bottom:357.300000px;}
.y2c_c00442{bottom:364.350000px;}
.y5f_c00442{bottom:375.300000px;}
.y2b_c00442{bottom:382.350000px;}
.y5e_c00442{bottom:393.300000px;}
.y2a_c00442{bottom:400.200000px;}
.y5d_c00442{bottom:411.300000px;}
.y29_c00442{bottom:417.900000px;}
.y5c_c00442{bottom:429.000000px;}
.y28_c00442{bottom:435.900000px;}
.y5b_c00442{bottom:447.000000px;}
.y27_c00442{bottom:453.600000px;}
.y5a_c00442{bottom:464.700000px;}
.y26_c00442{bottom:470.550000px;}
.y59_c00442{bottom:482.400000px;}
.y25_c00442{bottom:488.850000px;}
.y58_c00442{bottom:500.400000px;}
.y24_c00442{bottom:505.800000px;}
.y57_c00442{bottom:518.400000px;}
.y23_c00442{bottom:528.000000px;}
.y56_c00442{bottom:536.400000px;}
.y22_c00442{bottom:546.300000px;}
.y55_c00442{bottom:554.100000px;}
.y21_c00442{bottom:564.000000px;}
.y54_c00442{bottom:576.000000px;}
.y20_c00442{bottom:581.700000px;}
.y53_c00442{bottom:594.000000px;}
.y1f_c00442{bottom:599.700000px;}
.y52_c00442{bottom:611.700000px;}
.y1e_c00442{bottom:626.100000px;}
.y51_c00442{bottom:629.400000px;}
.y1d_c00442{bottom:644.100000px;}
.y50_c00442{bottom:647.400000px;}
.y1c_c00442{bottom:661.650000px;}
.y4f_c00442{bottom:665.100000px;}
.y1b_c00442{bottom:679.650000px;}
.y4e_c00442{bottom:683.100000px;}
.y1a_c00442{bottom:697.350000px;}
.y4d_c00442{bottom:700.800000px;}
.y19_c00442{bottom:714.600000px;}
.y4c_c00442{bottom:718.800000px;}
.y18_c00442{bottom:732.600000px;}
.y4b_c00442{bottom:736.500000px;}
.y17_c00442{bottom:750.300000px;}
.y4a_c00442{bottom:758.850000px;}
.y16_c00442{bottom:767.550000px;}
.y49_c00442{bottom:776.850000px;}
.y15_c00442{bottom:790.200000px;}
.y48_c00442{bottom:794.850000px;}
.y14_c00442{bottom:807.600000px;}
.y47_c00442{bottom:812.550000px;}
.y13_c00442{bottom:825.300000px;}
.y46_c00442{bottom:830.550000px;}
.y12_c00442{bottom:843.300000px;}
.y45_c00442{bottom:848.550000px;}
.y11_c00442{bottom:861.000000px;}
.y44_c00442{bottom:866.250000px;}
.y10_c00442{bottom:879.000000px;}
.y43_c00442{bottom:884.250000px;}
.yf_c00442{bottom:896.700000px;}
.y42_c00442{bottom:901.950000px;}
.ye_c00442{bottom:914.700000px;}
.y41_c00442{bottom:919.950000px;}
.yd_c00442{bottom:932.400000px;}
.y40_c00442{bottom:937.950000px;}
.yc_c00442{bottom:950.400000px;}
.y3f_c00442{bottom:955.650000px;}
.yb_c00442{bottom:967.650000px;}
.y3e_c00442{bottom:973.650000px;}
.ya_c00442{bottom:985.650000px;}
.y3d_c00442{bottom:991.650000px;}
.y9_c00442{bottom:1003.350000px;}
.y3c_c00442{bottom:1009.350000px;}
.y8_c00442{bottom:1025.550000px;}
.y3b_c00442{bottom:1027.350000px;}
.y7_c00442{bottom:1043.250000px;}
.y3a_c00442{bottom:1045.350000px;}
.y6_c00442{bottom:1061.250000px;}
.y39_c00442{bottom:1063.050000px;}
.y5_c00442{bottom:1079.250000px;}
.y38_c00442{bottom:1080.750000px;}
.y37_c00442{bottom:1098.750000px;}
.y4_c00442{bottom:1101.300000px;}
.y36_c00442{bottom:1116.750000px;}
.y3_c00442{bottom:1119.300000px;}
.y2_c00442{bottom:1140.450000px;}
.y1_c00442{bottom:1144.800000px;}
.h7_c00442{height:48.000000px;}
.h6_c00442{height:54.000000px;}
.h5_c00442{height:60.000000px;}
.h4_c00442{height:66.000000px;}
.h8_c00442{height:72.000000px;}
.h2_c00442{height:108.000000px;}
.h3_c00442{height:138.000000px;}
.h1_c00442{height:1270.500000px;}
.h0_c00442{height:1270.799927px;}
.w0_c00442{width:958.320007px;}
.w1_c00442{width:958.500000px;}
.x0_c00442{left:0.000000px;}
.x8e_c00442{left:64.650000px;}
.x4a_c00442{left:75.900000px;}
.x6b_c00442{left:77.250000px;}
.x5d_c00442{left:78.600000px;}
.x7c_c00442{left:81.750000px;}
.x3_c00442{left:82.800000px;}
.x4b_c00442{left:83.850000px;}
.x8f_c00442{left:93.450000px;}
.xa_c00442{left:101.100000px;}
.x78_c00442{left:103.950000px;}
.x2d_c00442{left:106.800000px;}
.x81_c00442{left:113.550000px;}
.x24_c00442{left:116.250000px;}
.x33_c00442{left:118.050000px;}
.x61_c00442{left:121.200000px;}
.x4_c00442{left:122.400000px;}
.x29_c00442{left:125.250000px;}
.x51_c00442{left:129.150000px;}
.x1e_c00442{left:130.350000px;}
.x34_c00442{left:132.150000px;}
.x68_c00442{left:133.200000px;}
.x18_c00442{left:135.450000px;}
.x8d_c00442{left:136.500000px;}
.x12_c00442{left:137.550000px;}
.x3e_c00442{left:140.550000px;}
.x5_c00442{left:141.900000px;}
.x70_c00442{left:142.950000px;}
.x1d_c00442{left:144.450000px;}
.xb_c00442{left:147.900000px;}
.x2e_c00442{left:148.950000px;}
.x8b_c00442{left:150.000000px;}
.x5a_c00442{left:151.050000px;}
.x35_c00442{left:153.750000px;}
.x93_c00442{left:155.550000px;}
.x7d_c00442{left:157.050000px;}
.x65_c00442{left:159.750000px;}
.x4c_c00442{left:162.300000px;}
.x3a_c00442{left:164.850000px;}
.x13_c00442{left:167.400000px;}
.x1f_c00442{left:169.650000px;}
.x62_c00442{left:173.400000px;}
.x5b_c00442{left:175.200000px;}
.x73_c00442{left:176.550000px;}
.x25_c00442{left:179.250000px;}
.x54_c00442{left:181.050000px;}
.x90_c00442{left:183.900000px;}
.x2a_c00442{left:184.950000px;}
.x3b_c00442{left:186.450000px;}
.x63_c00442{left:189.450000px;}
.xc_c00442{left:191.850000px;}
.x48_c00442{left:195.900000px;}
.x6_c00442{left:198.750000px;}
.x55_c00442{left:201.600000px;}
.x74_c00442{left:202.950000px;}
.x86_c00442{left:204.450000px;}
.x41_c00442{left:206.100000px;}
.x7f_c00442{left:207.150000px;}
.x6c_c00442{left:208.350000px;}
.x66_c00442{left:211.200000px;}
.x36_c00442{left:213.450000px;}
.x19_c00442{left:217.050000px;}
.x2f_c00442{left:219.150000px;}
.x7_c00442{left:222.150000px;}
.x77_c00442{left:223.200000px;}
.xd_c00442{left:225.300000px;}
.x5e_c00442{left:227.700000px;}
.x4d_c00442{left:228.900000px;}
.x87_c00442{left:230.400000px;}
.x43_c00442{left:231.600000px;}
.x7e_c00442{left:234.900000px;}
.x20_c00442{left:236.250000px;}
.x75_c00442{left:237.450000px;}
.x69_c00442{left:238.950000px;}
.x46_c00442{left:240.000000px;}
.x52_c00442{left:241.950000px;}
.x14_c00442{left:243.300000px;}
.x4e_c00442{left:245.850000px;}
.x56_c00442{left:248.400000px;}
.xe_c00442{left:250.500000px;}
.x76_c00442{left:253.800000px;}
.x3c_c00442{left:256.650000px;}
.x5f_c00442{left:259.500000px;}
.x6a_c00442{left:260.850000px;}
.x6d_c00442{left:263.100000px;}
.x15_c00442{left:264.600000px;}
.x30_c00442{left:267.000000px;}
.x37_c00442{left:268.500000px;}
.x8_c00442{left:270.750000px;}
.x71_c00442{left:272.100000px;}
.x2b_c00442{left:273.450000px;}
.x79_c00442{left:279.750000px;}
.x4f_c00442{left:280.800000px;}
.xf_c00442{left:282.150000px;}
.x5c_c00442{left:284.250000px;}
.x21_c00442{left:286.950000px;}
.x16_c00442{left:289.050000px;}
.x42_c00442{left:290.700000px;}
.x53_c00442{left:293.850000px;}
.x80_c00442{left:295.350000px;}
.x50_c00442{left:297.750000px;}
.x1a_c00442{left:299.550000px;}
.x72_c00442{left:302.250000px;}
.x88_c00442{left:303.900000px;}
.x44_c00442{left:305.100000px;}
.x1_c00442{left:307.050000px;}
.x9_c00442{left:308.850000px;}
.x7a_c00442{left:310.350000px;}
.x3f_c00442{left:314.100000px;}
.x31_c00442{left:315.300000px;}
.x60_c00442{left:319.950000px;}
.x26_c00442{left:321.750000px;}
.x57_c00442{left:323.250000px;}
.x45_c00442{left:325.950000px;}
.x22_c00442{left:328.650000px;}
.x2c_c00442{left:330.300000px;}
.x3d_c00442{left:333.450000px;}
.x38_c00442{left:335.400000px;}
.x58_c00442{left:337.950000px;}
.x27_c00442{left:340.800000px;}
.x83_c00442{left:344.100000px;}
.x82_c00442{left:347.100000px;}
.x47_c00442{left:348.450000px;}
.x8c_c00442{left:350.100000px;}
.x17_c00442{left:351.450000px;}
.x10_c00442{left:353.850000px;}
.x64_c00442{left:356.550000px;}
.x1b_c00442{left:357.900000px;}
.x7b_c00442{left:358.950000px;}
.x91_c00442{left:360.750000px;}
.x84_c00442{left:361.800000px;}
.x28_c00442{left:363.900000px;}
.x6e_c00442{left:367.500000px;}
.x32_c00442{left:370.050000px;}
.x59_c00442{left:372.150000px;}
.x40_c00442{left:373.500000px;}
.x1c_c00442{left:374.850000px;}
.x39_c00442{left:376.800000px;}
.x89_c00442{left:379.500000px;}
.x23_c00442{left:381.150000px;}
.x49_c00442{left:382.350000px;}
.x6f_c00442{left:386.250000px;}
.x8a_c00442{left:388.350000px;}
.x11_c00442{left:392.400000px;}
.x85_c00442{left:397.050000px;}
.x92_c00442{left:407.250000px;}
.x67_c00442{left:409.950000px;}
.x128_c00442{left:431.250000px;}
.x129_c00442{left:437.700000px;}
.xcf_c00442{left:439.650000px;}
.x94_c00442{left:441.300000px;}
.xf5_c00442{left:456.450000px;}
.x102_c00442{left:457.650000px;}
.xec_c00442{left:458.700000px;}
.x12e_c00442{left:460.050000px;}
.xc0_c00442{left:461.400000px;}
.x105_c00442{left:463.650000px;}
.xd0_c00442{left:468.750000px;}
.xe6_c00442{left:471.150000px;}
.x108_c00442{left:473.100000px;}
.xe9_c00442{left:474.300000px;}
.x12f_c00442{left:476.250000px;}
.xc6_c00442{left:478.350000px;}
.xdf_c00442{left:479.850000px;}
.xa4_c00442{left:481.950000px;}
.xa9_c00442{left:483.600000px;}
.xd1_c00442{left:486.750000px;}
.xaf_c00442{left:490.050000px;}
.x95_c00442{left:492.450000px;}
.xbb_c00442{left:493.650000px;}
.xf1_c00442{left:494.850000px;}
.x9e_c00442{left:497.100000px;}
.x11c_c00442{left:498.750000px;}
.xb0_c00442{left:499.800000px;}
.xd5_c00442{left:501.600000px;}
.xdb_c00442{left:503.700000px;}
.x121_c00442{left:505.350000px;}
.xe0_c00442{left:506.400000px;}
.x9a_c00442{left:510.150000px;}
.xaa_c00442{left:513.150000px;}
.xbc_c00442{left:515.250000px;}
.x123_c00442{left:516.900000px;}
.x10c_c00442{left:518.400000px;}
.xb6_c00442{left:520.050000px;}
.xc1_c00442{left:521.100000px;}
.x117_c00442{left:522.150000px;}
.xee_c00442{left:523.800000px;}
.xf2_c00442{left:526.200000px;}
.xe1_c00442{left:530.100000px;}
.x11a_c00442{left:532.500000px;}
.x103_c00442{left:533.550000px;}
.xcb_c00442{left:535.800000px;}
.xc7_c00442{left:537.300000px;}
.x106_c00442{left:540.000000px;}
.xf6_c00442{left:542.100000px;}
.xdc_c00442{left:544.050000px;}
.x109_c00442{left:545.850000px;}
.xef_c00442{left:546.900000px;}
.x12b_c00442{left:550.500000px;}
.xc2_c00442{left:551.700000px;}
.xea_c00442{left:556.500000px;}
.x9f_c00442{left:558.300000px;}
.xbd_c00442{left:559.500000px;}
.x96_c00442{left:561.150000px;}
.xe7_c00442{left:562.200000px;}
.xb7_c00442{left:563.250000px;}
.xab_c00442{left:564.300000px;}
.x10a_c00442{left:565.950000px;}
.x114_c00442{left:567.150000px;}
.xa5_c00442{left:568.350000px;}
.xc3_c00442{left:569.700000px;}
.xfd_c00442{left:571.800000px;}
.xdd_c00442{left:574.950000px;}
.xed_c00442{left:576.000000px;}
.xf7_c00442{left:578.850000px;}
.xb1_c00442{left:580.800000px;}
.x10d_c00442{left:582.150000px;}
.x124_c00442{left:584.400000px;}
.x11d_c00442{left:585.450000px;}
.xe8_c00442{left:586.650000px;}
.xc8_c00442{left:587.700000px;}
.xfb_c00442{left:589.050000px;}
.xcc_c00442{left:591.600000px;}
.xa6_c00442{left:592.800000px;}
.x111_c00442{left:596.100000px;}
.xd9_c00442{left:598.050000px;}
.xf8_c00442{left:599.400000px;}
.xd6_c00442{left:600.600000px;}
.xc4_c00442{left:602.100000px;}
.xe2_c00442{left:604.650000px;}
.x97_c00442{left:609.000000px;}
.xd2_c00442{left:610.500000px;}
.xbe_c00442{left:612.000000px;}
.xc9_c00442{left:613.200000px;}
.xac_c00442{left:615.000000px;}
.xfe_c00442{left:616.050000px;}
.x125_c00442{left:617.100000px;}
.xa0_c00442{left:619.200000px;}
.xd7_c00442{left:621.150000px;}
.xf3_c00442{left:622.650000px;}
.xa7_c00442{left:624.450000px;}
.x12c_c00442{left:626.100000px;}
.x104_c00442{left:627.150000px;}
.xb8_c00442{left:628.350000px;}
.x11b_c00442{left:629.700000px;}
.xb2_c00442{left:633.000000px;}
.x10b_c00442{left:635.400000px;}
.xff_c00442{left:637.650000px;}
.xa1_c00442{left:640.500000px;}
.x126_c00442{left:641.550000px;}
.xcd_c00442{left:644.100000px;}
.xfc_c00442{left:645.600000px;}
.x11f_c00442{left:646.800000px;}
.x112_c00442{left:650.550000px;}
.x9b_c00442{left:652.350000px;}
.x118_c00442{left:653.550000px;}
.xf0_c00442{left:654.600000px;}
.x10e_c00442{left:657.000000px;}
.xca_c00442{left:658.200000px;}
.xf9_c00442{left:659.550000px;}
.xb3_c00442{left:660.750000px;}
.xeb_c00442{left:663.000000px;}
.xbf_c00442{left:664.200000px;}
.xe3_c00442{left:665.850000px;}
.xa2_c00442{left:671.400000px;}
.xad_c00442{left:672.600000px;}
.x115_c00442{left:675.750000px;}
.xd3_c00442{left:677.850000px;}
.xc5_c00442{left:679.950000px;}
.x10f_c00442{left:683.250000px;}
.x107_c00442{left:684.450000px;}
.xa8_c00442{left:685.650000px;}
.xce_c00442{left:688.350000px;}
.xd8_c00442{left:689.850000px;}
.xb9_c00442{left:692.100000px;}
.x98_c00442{left:693.300000px;}
.xf4_c00442{left:695.100000px;}
.x100_c00442{left:696.750000px;}
.x110_c00442{left:699.450000px;}
.x122_c00442{left:700.500000px;}
.x119_c00442{left:702.150000px;}
.x12a_c00442{left:703.350000px;}
.x113_c00442{left:704.850000px;}
.x120_c00442{left:706.200000px;}
.x9c_c00442{left:708.900000px;}
.x11e_c00442{left:710.100000px;}
.xba_c00442{left:711.150000px;}
.xb4_c00442{left:712.650000px;}
.xde_c00442{left:717.450000px;}
.x101_c00442{left:720.450000px;}
.xe4_c00442{left:721.650000px;}
.x99_c00442{left:722.850000px;}
.xda_c00442{left:726.150000px;}
.xae_c00442{left:728.700000px;}
.xe5_c00442{left:730.350000px;}
.xd4_c00442{left:731.550000px;}
.x2_c00442{left:732.600000px;}
.xa3_c00442{left:733.650000px;}
.x116_c00442{left:734.850000px;}
.xb5_c00442{left:738.150000px;}
.x127_c00442{left:742.650000px;}
.x12d_c00442{left:743.850000px;}
.xfa_c00442{left:744.900000px;}
.x130_c00442{left:751.650000px;}
.x9d_c00442{left:756.000000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws7_c00442{word-spacing:-13.860877pt;}
.ws2_c00442{word-spacing:-6.666667pt;}
.ws5_c00442{word-spacing:-3.515152pt;}
.wsa_c00442{word-spacing:-2.777778pt;}
.wsb_c00442{word-spacing:0.000000pt;}
.ws4_c00442{word-spacing:1.176021pt;}
.ws1_c00442{word-spacing:6.172840pt;}
.ws9_c00442{word-spacing:6.222222pt;}
.ws0_c00442{word-spacing:6.666667pt;}
.ws3_c00442{word-spacing:11.703704pt;}
.ws8_c00442{word-spacing:21.265393pt;}
.ws6_c00442{word-spacing:6175.111111pt;}
._0_c00442{width:21.111111pt;}
.fs5_c00442{font-size:42.666667pt;}
.fs4_c00442{font-size:48.000000pt;}
.fs3_c00442{font-size:53.333333pt;}
.fs2_c00442{font-size:58.666667pt;}
.fs6_c00442{font-size:64.000000pt;}
.fs0_c00442{font-size:96.000000pt;}
.fs1_c00442{font-size:122.666667pt;}
.y0_c00442{bottom:0.000000pt;}
.y69_c00442{bottom:166.666667pt;}
.y35_c00442{bottom:169.866667pt;}
.y34_c00442{bottom:182.400000pt;}
.y68_c00442{bottom:186.800000pt;}
.y33_c00442{bottom:195.200000pt;}
.y67_c00442{bottom:202.533333pt;}
.y32_c00442{bottom:207.733333pt;}
.y66_c00442{bottom:218.533333pt;}
.y31_c00442{bottom:219.866667pt;}
.y65_c00442{bottom:234.533333pt;}
.y64_c00442{bottom:250.533333pt;}
.y30_c00442{bottom:257.200000pt;}
.y63_c00442{bottom:270.400000pt;}
.y2f_c00442{bottom:272.933333pt;}
.y62_c00442{bottom:286.133333pt;}
.y2e_c00442{bottom:288.666667pt;}
.y61_c00442{bottom:301.866667pt;}
.y2d_c00442{bottom:304.000000pt;}
.y60_c00442{bottom:317.600000pt;}
.y2c_c00442{bottom:323.866667pt;}
.y5f_c00442{bottom:333.600000pt;}
.y2b_c00442{bottom:339.866667pt;}
.y5e_c00442{bottom:349.600000pt;}
.y2a_c00442{bottom:355.733333pt;}
.y5d_c00442{bottom:365.600000pt;}
.y29_c00442{bottom:371.466667pt;}
.y5c_c00442{bottom:381.333333pt;}
.y28_c00442{bottom:387.466667pt;}
.y5b_c00442{bottom:397.333333pt;}
.y27_c00442{bottom:403.200000pt;}
.y5a_c00442{bottom:413.066667pt;}
.y26_c00442{bottom:418.266667pt;}
.y59_c00442{bottom:428.800000pt;}
.y25_c00442{bottom:434.533333pt;}
.y58_c00442{bottom:444.800000pt;}
.y24_c00442{bottom:449.600000pt;}
.y57_c00442{bottom:460.800000pt;}
.y23_c00442{bottom:469.333333pt;}
.y56_c00442{bottom:476.800000pt;}
.y22_c00442{bottom:485.600000pt;}
.y55_c00442{bottom:492.533333pt;}
.y21_c00442{bottom:501.333333pt;}
.y54_c00442{bottom:512.000000pt;}
.y20_c00442{bottom:517.066667pt;}
.y53_c00442{bottom:528.000000pt;}
.y1f_c00442{bottom:533.066667pt;}
.y52_c00442{bottom:543.733333pt;}
.y1e_c00442{bottom:556.533333pt;}
.y51_c00442{bottom:559.466667pt;}
.y1d_c00442{bottom:572.533333pt;}
.y50_c00442{bottom:575.466667pt;}
.y1c_c00442{bottom:588.133333pt;}
.y4f_c00442{bottom:591.200000pt;}
.y1b_c00442{bottom:604.133333pt;}
.y4e_c00442{bottom:607.200000pt;}
.y1a_c00442{bottom:619.866667pt;}
.y4d_c00442{bottom:622.933333pt;}
.y19_c00442{bottom:635.200000pt;}
.y4c_c00442{bottom:638.933333pt;}
.y18_c00442{bottom:651.200000pt;}
.y4b_c00442{bottom:654.666667pt;}
.y17_c00442{bottom:666.933333pt;}
.y4a_c00442{bottom:674.533333pt;}
.y16_c00442{bottom:682.266667pt;}
.y49_c00442{bottom:690.533333pt;}
.y15_c00442{bottom:702.400000pt;}
.y48_c00442{bottom:706.533333pt;}
.y14_c00442{bottom:717.866667pt;}
.y47_c00442{bottom:722.266667pt;}
.y13_c00442{bottom:733.600000pt;}
.y46_c00442{bottom:738.266667pt;}
.y12_c00442{bottom:749.600000pt;}
.y45_c00442{bottom:754.266667pt;}
.y11_c00442{bottom:765.333333pt;}
.y44_c00442{bottom:770.000000pt;}
.y10_c00442{bottom:781.333333pt;}
.y43_c00442{bottom:786.000000pt;}
.yf_c00442{bottom:797.066667pt;}
.y42_c00442{bottom:801.733333pt;}
.ye_c00442{bottom:813.066667pt;}
.y41_c00442{bottom:817.733333pt;}
.yd_c00442{bottom:828.800000pt;}
.y40_c00442{bottom:833.733333pt;}
.yc_c00442{bottom:844.800000pt;}
.y3f_c00442{bottom:849.466667pt;}
.yb_c00442{bottom:860.133333pt;}
.y3e_c00442{bottom:865.466667pt;}
.ya_c00442{bottom:876.133333pt;}
.y3d_c00442{bottom:881.466667pt;}
.y9_c00442{bottom:891.866667pt;}
.y3c_c00442{bottom:897.200000pt;}
.y8_c00442{bottom:911.600000pt;}
.y3b_c00442{bottom:913.200000pt;}
.y7_c00442{bottom:927.333333pt;}
.y3a_c00442{bottom:929.200000pt;}
.y6_c00442{bottom:943.333333pt;}
.y39_c00442{bottom:944.933333pt;}
.y5_c00442{bottom:959.333333pt;}
.y38_c00442{bottom:960.666667pt;}
.y37_c00442{bottom:976.666667pt;}
.y4_c00442{bottom:978.933333pt;}
.y36_c00442{bottom:992.666667pt;}
.y3_c00442{bottom:994.933333pt;}
.y2_c00442{bottom:1013.733333pt;}
.y1_c00442{bottom:1017.600000pt;}
.h7_c00442{height:42.666667pt;}
.h6_c00442{height:48.000000pt;}
.h5_c00442{height:53.333333pt;}
.h4_c00442{height:58.666667pt;}
.h8_c00442{height:64.000000pt;}
.h2_c00442{height:96.000000pt;}
.h3_c00442{height:122.666667pt;}
.h1_c00442{height:1129.333333pt;}
.h0_c00442{height:1129.599935pt;}
.w0_c00442{width:851.840007pt;}
.w1_c00442{width:852.000000pt;}
.x0_c00442{left:0.000000pt;}
.x8e_c00442{left:57.466667pt;}
.x4a_c00442{left:67.466667pt;}
.x6b_c00442{left:68.666667pt;}
.x5d_c00442{left:69.866667pt;}
.x7c_c00442{left:72.666667pt;}
.x3_c00442{left:73.600000pt;}
.x4b_c00442{left:74.533333pt;}
.x8f_c00442{left:83.066667pt;}
.xa_c00442{left:89.866667pt;}
.x78_c00442{left:92.400000pt;}
.x2d_c00442{left:94.933333pt;}
.x81_c00442{left:100.933333pt;}
.x24_c00442{left:103.333333pt;}
.x33_c00442{left:104.933333pt;}
.x61_c00442{left:107.733333pt;}
.x4_c00442{left:108.800000pt;}
.x29_c00442{left:111.333333pt;}
.x51_c00442{left:114.800000pt;}
.x1e_c00442{left:115.866667pt;}
.x34_c00442{left:117.466667pt;}
.x68_c00442{left:118.400000pt;}
.x18_c00442{left:120.400000pt;}
.x8d_c00442{left:121.333333pt;}
.x12_c00442{left:122.266667pt;}
.x3e_c00442{left:124.933333pt;}
.x5_c00442{left:126.133333pt;}
.x70_c00442{left:127.066667pt;}
.x1d_c00442{left:128.400000pt;}
.xb_c00442{left:131.466667pt;}
.x2e_c00442{left:132.400000pt;}
.x8b_c00442{left:133.333333pt;}
.x5a_c00442{left:134.266667pt;}
.x35_c00442{left:136.666667pt;}
.x93_c00442{left:138.266667pt;}
.x7d_c00442{left:139.600000pt;}
.x65_c00442{left:142.000000pt;}
.x4c_c00442{left:144.266667pt;}
.x3a_c00442{left:146.533333pt;}
.x13_c00442{left:148.800000pt;}
.x1f_c00442{left:150.800000pt;}
.x62_c00442{left:154.133333pt;}
.x5b_c00442{left:155.733333pt;}
.x73_c00442{left:156.933333pt;}
.x25_c00442{left:159.333333pt;}
.x54_c00442{left:160.933333pt;}
.x90_c00442{left:163.466667pt;}
.x2a_c00442{left:164.400000pt;}
.x3b_c00442{left:165.733333pt;}
.x63_c00442{left:168.400000pt;}
.xc_c00442{left:170.533333pt;}
.x48_c00442{left:174.133333pt;}
.x6_c00442{left:176.666667pt;}
.x55_c00442{left:179.200000pt;}
.x74_c00442{left:180.400000pt;}
.x86_c00442{left:181.733333pt;}
.x41_c00442{left:183.200000pt;}
.x7f_c00442{left:184.133333pt;}
.x6c_c00442{left:185.200000pt;}
.x66_c00442{left:187.733333pt;}
.x36_c00442{left:189.733333pt;}
.x19_c00442{left:192.933333pt;}
.x2f_c00442{left:194.800000pt;}
.x7_c00442{left:197.466667pt;}
.x77_c00442{left:198.400000pt;}
.xd_c00442{left:200.266667pt;}
.x5e_c00442{left:202.400000pt;}
.x4d_c00442{left:203.466667pt;}
.x87_c00442{left:204.800000pt;}
.x43_c00442{left:205.866667pt;}
.x7e_c00442{left:208.800000pt;}
.x20_c00442{left:210.000000pt;}
.x75_c00442{left:211.066667pt;}
.x69_c00442{left:212.400000pt;}
.x46_c00442{left:213.333333pt;}
.x52_c00442{left:215.066667pt;}
.x14_c00442{left:216.266667pt;}
.x4e_c00442{left:218.533333pt;}
.x56_c00442{left:220.800000pt;}
.xe_c00442{left:222.666667pt;}
.x76_c00442{left:225.600000pt;}
.x3c_c00442{left:228.133333pt;}
.x5f_c00442{left:230.666667pt;}
.x6a_c00442{left:231.866667pt;}
.x6d_c00442{left:233.866667pt;}
.x15_c00442{left:235.200000pt;}
.x30_c00442{left:237.333333pt;}
.x37_c00442{left:238.666667pt;}
.x8_c00442{left:240.666667pt;}
.x71_c00442{left:241.866667pt;}
.x2b_c00442{left:243.066667pt;}
.x79_c00442{left:248.666667pt;}
.x4f_c00442{left:249.600000pt;}
.xf_c00442{left:250.800000pt;}
.x5c_c00442{left:252.666667pt;}
.x21_c00442{left:255.066667pt;}
.x16_c00442{left:256.933333pt;}
.x42_c00442{left:258.400000pt;}
.x53_c00442{left:261.200000pt;}
.x80_c00442{left:262.533333pt;}
.x50_c00442{left:264.666667pt;}
.x1a_c00442{left:266.266667pt;}
.x72_c00442{left:268.666667pt;}
.x88_c00442{left:270.133333pt;}
.x44_c00442{left:271.200000pt;}
.x1_c00442{left:272.933333pt;}
.x9_c00442{left:274.533333pt;}
.x7a_c00442{left:275.866667pt;}
.x3f_c00442{left:279.200000pt;}
.x31_c00442{left:280.266667pt;}
.x60_c00442{left:284.400000pt;}
.x26_c00442{left:286.000000pt;}
.x57_c00442{left:287.333333pt;}
.x45_c00442{left:289.733333pt;}
.x22_c00442{left:292.133333pt;}
.x2c_c00442{left:293.600000pt;}
.x3d_c00442{left:296.400000pt;}
.x38_c00442{left:298.133333pt;}
.x58_c00442{left:300.400000pt;}
.x27_c00442{left:302.933333pt;}
.x83_c00442{left:305.866667pt;}
.x82_c00442{left:308.533333pt;}
.x47_c00442{left:309.733333pt;}
.x8c_c00442{left:311.200000pt;}
.x17_c00442{left:312.400000pt;}
.x10_c00442{left:314.533333pt;}
.x64_c00442{left:316.933333pt;}
.x1b_c00442{left:318.133333pt;}
.x7b_c00442{left:319.066667pt;}
.x91_c00442{left:320.666667pt;}
.x84_c00442{left:321.600000pt;}
.x28_c00442{left:323.466667pt;}
.x6e_c00442{left:326.666667pt;}
.x32_c00442{left:328.933333pt;}
.x59_c00442{left:330.800000pt;}
.x40_c00442{left:332.000000pt;}
.x1c_c00442{left:333.200000pt;}
.x39_c00442{left:334.933333pt;}
.x89_c00442{left:337.333333pt;}
.x23_c00442{left:338.800000pt;}
.x49_c00442{left:339.866667pt;}
.x6f_c00442{left:343.333333pt;}
.x8a_c00442{left:345.200000pt;}
.x11_c00442{left:348.800000pt;}
.x85_c00442{left:352.933333pt;}
.x92_c00442{left:362.000000pt;}
.x67_c00442{left:364.400000pt;}
.x128_c00442{left:383.333333pt;}
.x129_c00442{left:389.066667pt;}
.xcf_c00442{left:390.800000pt;}
.x94_c00442{left:392.266667pt;}
.xf5_c00442{left:405.733333pt;}
.x102_c00442{left:406.800000pt;}
.xec_c00442{left:407.733333pt;}
.x12e_c00442{left:408.933333pt;}
.xc0_c00442{left:410.133333pt;}
.x105_c00442{left:412.133333pt;}
.xd0_c00442{left:416.666667pt;}
.xe6_c00442{left:418.800000pt;}
.x108_c00442{left:420.533333pt;}
.xe9_c00442{left:421.600000pt;}
.x12f_c00442{left:423.333333pt;}
.xc6_c00442{left:425.200000pt;}
.xdf_c00442{left:426.533333pt;}
.xa4_c00442{left:428.400000pt;}
.xa9_c00442{left:429.866667pt;}
.xd1_c00442{left:432.666667pt;}
.xaf_c00442{left:435.600000pt;}
.x95_c00442{left:437.733333pt;}
.xbb_c00442{left:438.800000pt;}
.xf1_c00442{left:439.866667pt;}
.x9e_c00442{left:441.866667pt;}
.x11c_c00442{left:443.333333pt;}
.xb0_c00442{left:444.266667pt;}
.xd5_c00442{left:445.866667pt;}
.xdb_c00442{left:447.733333pt;}
.x121_c00442{left:449.200000pt;}
.xe0_c00442{left:450.133333pt;}
.x9a_c00442{left:453.466667pt;}
.xaa_c00442{left:456.133333pt;}
.xbc_c00442{left:458.000000pt;}
.x123_c00442{left:459.466667pt;}
.x10c_c00442{left:460.800000pt;}
.xb6_c00442{left:462.266667pt;}
.xc1_c00442{left:463.200000pt;}
.x117_c00442{left:464.133333pt;}
.xee_c00442{left:465.600000pt;}
.xf2_c00442{left:467.733333pt;}
.xe1_c00442{left:471.200000pt;}
.x11a_c00442{left:473.333333pt;}
.x103_c00442{left:474.266667pt;}
.xcb_c00442{left:476.266667pt;}
.xc7_c00442{left:477.600000pt;}
.x106_c00442{left:480.000000pt;}
.xf6_c00442{left:481.866667pt;}
.xdc_c00442{left:483.600000pt;}
.x109_c00442{left:485.200000pt;}
.xef_c00442{left:486.133333pt;}
.x12b_c00442{left:489.333333pt;}
.xc2_c00442{left:490.400000pt;}
.xea_c00442{left:494.666667pt;}
.x9f_c00442{left:496.266667pt;}
.xbd_c00442{left:497.333333pt;}
.x96_c00442{left:498.800000pt;}
.xe7_c00442{left:499.733333pt;}
.xb7_c00442{left:500.666667pt;}
.xab_c00442{left:501.600000pt;}
.x10a_c00442{left:503.066667pt;}
.x114_c00442{left:504.133333pt;}
.xa5_c00442{left:505.200000pt;}
.xc3_c00442{left:506.400000pt;}
.xfd_c00442{left:508.266667pt;}
.xdd_c00442{left:511.066667pt;}
.xed_c00442{left:512.000000pt;}
.xf7_c00442{left:514.533333pt;}
.xb1_c00442{left:516.266667pt;}
.x10d_c00442{left:517.466667pt;}
.x124_c00442{left:519.466667pt;}
.x11d_c00442{left:520.400000pt;}
.xe8_c00442{left:521.466667pt;}
.xc8_c00442{left:522.400000pt;}
.xfb_c00442{left:523.600000pt;}
.xcc_c00442{left:525.866667pt;}
.xa6_c00442{left:526.933333pt;}
.x111_c00442{left:529.866667pt;}
.xd9_c00442{left:531.600000pt;}
.xf8_c00442{left:532.800000pt;}
.xd6_c00442{left:533.866667pt;}
.xc4_c00442{left:535.200000pt;}
.xe2_c00442{left:537.466667pt;}
.x97_c00442{left:541.333333pt;}
.xd2_c00442{left:542.666667pt;}
.xbe_c00442{left:544.000000pt;}
.xc9_c00442{left:545.066667pt;}
.xac_c00442{left:546.666667pt;}
.xfe_c00442{left:547.600000pt;}
.x125_c00442{left:548.533333pt;}
.xa0_c00442{left:550.400000pt;}
.xd7_c00442{left:552.133333pt;}
.xf3_c00442{left:553.466667pt;}
.xa7_c00442{left:555.066667pt;}
.x12c_c00442{left:556.533333pt;}
.x104_c00442{left:557.466667pt;}
.xb8_c00442{left:558.533333pt;}
.x11b_c00442{left:559.733333pt;}
.xb2_c00442{left:562.666667pt;}
.x10b_c00442{left:564.800000pt;}
.xff_c00442{left:566.800000pt;}
.xa1_c00442{left:569.333333pt;}
.x126_c00442{left:570.266667pt;}
.xcd_c00442{left:572.533333pt;}
.xfc_c00442{left:573.866667pt;}
.x11f_c00442{left:574.933333pt;}
.x112_c00442{left:578.266667pt;}
.x9b_c00442{left:579.866667pt;}
.x118_c00442{left:580.933333pt;}
.xf0_c00442{left:581.866667pt;}
.x10e_c00442{left:584.000000pt;}
.xca_c00442{left:585.066667pt;}
.xf9_c00442{left:586.266667pt;}
.xb3_c00442{left:587.333333pt;}
.xeb_c00442{left:589.333333pt;}
.xbf_c00442{left:590.400000pt;}
.xe3_c00442{left:591.866667pt;}
.xa2_c00442{left:596.800000pt;}
.xad_c00442{left:597.866667pt;}
.x115_c00442{left:600.666667pt;}
.xd3_c00442{left:602.533333pt;}
.xc5_c00442{left:604.400000pt;}
.x10f_c00442{left:607.333333pt;}
.x107_c00442{left:608.400000pt;}
.xa8_c00442{left:609.466667pt;}
.xce_c00442{left:611.866667pt;}
.xd8_c00442{left:613.200000pt;}
.xb9_c00442{left:615.200000pt;}
.x98_c00442{left:616.266667pt;}
.xf4_c00442{left:617.866667pt;}
.x100_c00442{left:619.333333pt;}
.x110_c00442{left:621.733333pt;}
.x122_c00442{left:622.666667pt;}
.x119_c00442{left:624.133333pt;}
.x12a_c00442{left:625.200000pt;}
.x113_c00442{left:626.533333pt;}
.x120_c00442{left:627.733333pt;}
.x9c_c00442{left:630.133333pt;}
.x11e_c00442{left:631.200000pt;}
.xba_c00442{left:632.133333pt;}
.xb4_c00442{left:633.466667pt;}
.xde_c00442{left:637.733333pt;}
.x101_c00442{left:640.400000pt;}
.xe4_c00442{left:641.466667pt;}
.x99_c00442{left:642.533333pt;}
.xda_c00442{left:645.466667pt;}
.xae_c00442{left:647.733333pt;}
.xe5_c00442{left:649.200000pt;}
.xd4_c00442{left:650.266667pt;}
.x2_c00442{left:651.200000pt;}
.xa3_c00442{left:652.133333pt;}
.x116_c00442{left:653.200000pt;}
.xb5_c00442{left:656.133333pt;}
.x127_c00442{left:660.133333pt;}
.x12d_c00442{left:661.200000pt;}
.xfa_c00442{left:662.133333pt;}
.x130_c00442{left:668.133333pt;}
.x9d_c00442{left:672.000000pt;}
}





/* 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_c00443 {
    display:none;
  }
  .loading-indicator_c00443.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00443 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_c00443 { 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_c00443" -> "#page-container .classname_c00443")
 */
.pf_c00443 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00443 { /* 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_c00443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00443 { /* 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_c00443 { /* 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_c00443 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00443 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00443 {overflow:visible;}
  }
}
.c_c00443 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00443 { /* 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_c00443:after { /* webkit #35443 */
  content: '';
}
.t_c00443:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00443 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 */
}
.__c00443 { /* 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_c00443 { /* info for Javascript */
  display:none;
}
.l_c00443 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00443 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00443 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00443: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_c00443 {
    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_c00443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00443.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_c00443 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00443;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.000000;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;}
.m1_c00443{transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);}
.m13_c00443{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m52_c00443{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m56_c00443{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00443{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mad_c00443{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m28_c00443{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m97_c00443{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m40_c00443{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m18_c00443{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md6_c00443{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m73_c00443{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00443{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m84_c00443{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m91_c00443{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00443{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00443{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m88_c00443{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m20_c00443{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00443{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00443{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m39_c00443{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00443{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00443{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mac_c00443{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00443{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m80_c00443{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00443{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m6_c00443{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m36_c00443{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m64_c00443{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m12_c00443{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m45_c00443{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc_c00443{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00443{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m7_c00443{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00443{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00443{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m35_c00443{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m41_c00443{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00443{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00443{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m98_c00443{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00443{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m57_c00443{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00443{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00443{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mef_c00443{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.me6_c00443{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m26_c00443{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m30_c00443{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00443{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00443{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00443{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.maf_c00443{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m99_c00443{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00443{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m32_c00443{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00443{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m27_c00443{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00443{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m92_c00443{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mae_c00443{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m48_c00443{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00443{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00443{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mab_c00443{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00443{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00443{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m29_c00443{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m11_c00443{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m46_c00443{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m8_c00443{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00443{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00443{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00443{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me7_c00443{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00443{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m37_c00443{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9_c00443{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m67_c00443{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m72_c00443{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m70_c00443{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m85_c00443{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00443{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m53_c00443{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00443{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.maa_c00443{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m49_c00443{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00443{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md_c00443{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00443{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m75_c00443{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me_c00443{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00443{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00443{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m38_c00443{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00443{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00443{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00443{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m16_c00443{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00443{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00443{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma_c00443{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00443{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00443{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m68_c00443{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00443{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00443{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.med_c00443{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m55_c00443{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m59_c00443{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.md5_c00443{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.meb_c00443{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00443{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m61_c00443{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md7_c00443{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m89_c00443{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m21_c00443{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00443{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md1_c00443{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md9_c00443{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00443{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00443{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m22_c00443{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m23_c00443{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m96_c00443{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m54_c00443{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me0_c00443{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00443{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00443{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m25_c00443{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m79_c00443{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00443{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m19_c00443{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m81_c00443{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m34_c00443{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m60_c00443{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00443{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mee_c00443{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m86_c00443{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00443{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4_c00443{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m83_c00443{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.md4_c00443{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb_c00443{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m65_c00443{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00443{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00443{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00443{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m66_c00443{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m31_c00443{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00443{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5_c00443{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m58_c00443{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m24_c00443{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00443{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me8_c00443{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00443{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00443{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00443{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00443{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m62_c00443{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00443{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00443{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m44_c00443{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m43_c00443{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00443{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mec_c00443{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md8_c00443{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00443{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m87_c00443{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00443{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00443{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mda_c00443{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00443{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00443{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m33_c00443{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00443{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00443{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00443{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me4_c00443{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00443{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me1_c00443{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m93_c00443{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00443{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me9_c00443{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf_c00443{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00443{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mce_c00443{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me2_c00443{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00443{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md3_c00443{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00443{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m47_c00443{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00443{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00443{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00443{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m90_c00443{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m10_c00443{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00443{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00443{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m82_c00443{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m15_c00443{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00443{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00443{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m76_c00443{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md2_c00443{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m63_c00443{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m50_c00443{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m78_c00443{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00443{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m77_c00443{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md0_c00443{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mca_c00443{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00443{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);}
.m14_c00443{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00443{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00443{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00443{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me3_c00443{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00443{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00443{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me5_c00443{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00443{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m71_c00443{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00443{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m95_c00443{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00443{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00443{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00443{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00443{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m42_c00443{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00443{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00443{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m51_c00443{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mba_c00443{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00443{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m74_c00443{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m17_c00443{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00443{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m94_c00443{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mea_c00443{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mde_c00443{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00443{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00443{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00443{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m69_c00443{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00443{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m2_c00443{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls0_c00443{letter-spacing:0.000000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{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__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00443{word-spacing:-11.393871px;}
.ws5_c00443{word-spacing:-4.910736px;}
.ws3_c00443{word-spacing:-4.759162px;}
.ws2_c00443{word-spacing:-2.738095px;}
.ws6_c00443{word-spacing:0.000000px;}
.ws4_c00443{word-spacing:11.063694px;}
.ws0_c00443{word-spacing:21.898089px;}
.fc0_c00443{color:transparent;}
.fs3_c00443{font-size:54.000000px;}
.fs2_c00443{font-size:60.000000px;}
.fs1_c00443{font-size:66.000000px;}
.fs4_c00443{font-size:72.000000px;}
.fs0_c00443{font-size:108.000000px;}
.y0_c00443{bottom:0.000000px;}
.y67_c00443{bottom:180.000000px;}
.y34_c00443{bottom:195.600000px;}
.y66_c00443{bottom:198.750000px;}
.y33_c00443{bottom:209.250000px;}
.y65_c00443{bottom:216.750000px;}
.y32_c00443{bottom:223.950000px;}
.y31_c00443{bottom:237.600000px;}
.y64_c00443{bottom:243.000000px;}
.y30_c00443{bottom:252.000000px;}
.y63_c00443{bottom:264.900000px;}
.y2f_c00443{bottom:266.100000px;}
.y62_c00443{bottom:282.600000px;}
.y61_c00443{bottom:300.600000px;}
.y2e_c00443{bottom:315.300000px;}
.y60_c00443{bottom:318.600000px;}
.y2d_c00443{bottom:333.300000px;}
.y5f_c00443{bottom:335.850000px;}
.y5e_c00443{bottom:352.800000px;}
.y2c_c00443{bottom:353.400000px;}
.y2b_c00443{bottom:369.300000px;}
.y5d_c00443{bottom:374.850000px;}
.y2a_c00443{bottom:387.300000px;}
.y5c_c00443{bottom:393.150000px;}
.y29_c00443{bottom:405.000000px;}
.y5b_c00443{bottom:410.850000px;}
.y28_c00443{bottom:423.000000px;}
.y5a_c00443{bottom:429.150000px;}
.y27_c00443{bottom:441.000000px;}
.y59_c00443{bottom:446.400000px;}
.y26_c00443{bottom:461.100000px;}
.y58_c00443{bottom:464.400000px;}
.y25_c00443{bottom:480.600000px;}
.y57_c00443{bottom:482.400000px;}
.y24_c00443{bottom:498.300000px;}
.y56_c00443{bottom:500.400000px;}
.y23_c00443{bottom:516.300000px;}
.y55_c00443{bottom:522.000000px;}
.y22_c00443{bottom:534.000000px;}
.y54_c00443{bottom:540.300000px;}
.y21_c00443{bottom:552.000000px;}
.y53_c00443{bottom:558.300000px;}
.y20_c00443{bottom:569.700000px;}
.y52_c00443{bottom:576.000000px;}
.y1f_c00443{bottom:587.400000px;}
.y51_c00443{bottom:594.000000px;}
.y1e_c00443{bottom:605.400000px;}
.y50_c00443{bottom:612.000000px;}
.y1d_c00443{bottom:623.100000px;}
.y4f_c00443{bottom:629.700000px;}
.y1c_c00443{bottom:644.250000px;}
.y4e_c00443{bottom:647.700000px;}
.y1b_c00443{bottom:663.000000px;}
.y4d_c00443{bottom:669.000000px;}
.y1a_c00443{bottom:680.700000px;}
.y4c_c00443{bottom:687.000000px;}
.y19_c00443{bottom:698.700000px;}
.y4b_c00443{bottom:705.000000px;}
.y18_c00443{bottom:716.700000px;}
.y4a_c00443{bottom:722.700000px;}
.y17_c00443{bottom:734.400000px;}
.y49_c00443{bottom:740.400000px;}
.y16_c00443{bottom:752.400000px;}
.y48_c00443{bottom:758.100000px;}
.y15_c00443{bottom:770.100000px;}
.y47_c00443{bottom:779.700000px;}
.y14_c00443{bottom:788.100000px;}
.y46_c00443{bottom:797.700000px;}
.y13_c00443{bottom:806.100000px;}
.y45_c00443{bottom:815.700000px;}
.y12_c00443{bottom:824.100000px;}
.y44_c00443{bottom:833.400000px;}
.y11_c00443{bottom:842.100000px;}
.y43_c00443{bottom:851.400000px;}
.y10_c00443{bottom:863.700000px;}
.y42_c00443{bottom:869.400000px;}
.yf_c00443{bottom:881.700000px;}
.y41_c00443{bottom:887.400000px;}
.ye_c00443{bottom:899.400000px;}
.y40_c00443{bottom:913.500000px;}
.yd_c00443{bottom:917.400000px;}
.y3f_c00443{bottom:931.500000px;}
.yc_c00443{bottom:935.100000px;}
.y3e_c00443{bottom:949.200000px;}
.yb_c00443{bottom:953.100000px;}
.y3d_c00443{bottom:967.200000px;}
.ya_c00443{bottom:970.800000px;}
.y3c_c00443{bottom:984.900000px;}
.y9_c00443{bottom:988.800000px;}
.y3b_c00443{bottom:1002.900000px;}
.y8_c00443{bottom:1006.800000px;}
.y7_c00443{bottom:1024.500000px;}
.y3a_c00443{bottom:1025.250000px;}
.y39_c00443{bottom:1042.950000px;}
.y6_c00443{bottom:1043.250000px;}
.y5_c00443{bottom:1060.200000px;}
.y38_c00443{bottom:1060.950000px;}
.y4_c00443{bottom:1078.200000px;}
.y37_c00443{bottom:1082.850000px;}
.y3_c00443{bottom:1100.100000px;}
.y36_c00443{bottom:1101.300000px;}
.y2_c00443{bottom:1117.800000px;}
.y35_c00443{bottom:1119.300000px;}
.y1_c00443{bottom:1144.800000px;}
.h5_c00443{height:54.000000px;}
.h4_c00443{height:60.000000px;}
.h3_c00443{height:66.000000px;}
.h6_c00443{height:72.000000px;}
.h2_c00443{height:108.000000px;}
.h1_c00443{height:1268.250000px;}
.h0_c00443{height:1268.279937px;}
.w0_c00443{width:958.320007px;}
.w1_c00443{width:958.500000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:204.450000px;}
.x9f_c00443{left:208.500000px;}
.x9c_c00443{left:209.700000px;}
.x4_c00443{left:221.700000px;}
.x12_c00443{left:223.500000px;}
.x89_c00443{left:225.000000px;}
.x9d_c00443{left:231.600000px;}
.xa0_c00443{left:234.000000px;}
.x59_c00443{left:235.650000px;}
.x4f_c00443{left:240.150000px;}
.x15_c00443{left:241.500000px;}
.xa3_c00443{left:242.850000px;}
.x6a_c00443{left:243.900000px;}
.x5_c00443{left:245.400000px;}
.x45_c00443{left:246.750000px;}
.x1c_c00443{left:247.800000px;}
.x71_c00443{left:248.850000px;}
.x2c_c00443{left:251.550000px;}
.x13_c00443{left:254.400000px;}
.x7b_c00443{left:256.050000px;}
.x91_c00443{left:257.400000px;}
.x3a_c00443{left:260.250000px;}
.xa4_c00443{left:261.600000px;}
.x28_c00443{left:263.700000px;}
.x50_c00443{left:266.100000px;}
.x16_c00443{left:268.200000px;}
.x72_c00443{left:269.400000px;}
.x6b_c00443{left:270.600000px;}
.x23_c00443{left:271.950000px;}
.x54_c00443{left:274.500000px;}
.x67_c00443{left:275.550000px;}
.x40_c00443{left:278.850000px;}
.x8a_c00443{left:280.800000px;}
.x65_c00443{left:282.450000px;}
.x14_c00443{left:285.000000px;}
.x2_c00443{left:287.550000px;}
.xc_c00443{left:288.600000px;}
.x79_c00443{left:290.700000px;}
.x2d_c00443{left:291.900000px;}
.x35_c00443{left:293.850000px;}
.x24_c00443{left:295.650000px;}
.xa1_c00443{left:298.050000px;}
.x97_c00443{left:301.500000px;}
.x41_c00443{left:303.300000px;}
.x4e_c00443{left:304.350000px;}
.x17_c00443{left:305.700000px;}
.x86_c00443{left:307.500000px;}
.x6c_c00443{left:308.700000px;}
.x60_c00443{left:311.550000px;}
.x78_c00443{left:315.300000px;}
.x5a_c00443{left:316.650000px;}
.xd_c00443{left:319.950000px;}
.x49_c00443{left:322.350000px;}
.x46_c00443{left:323.400000px;}
.x6d_c00443{left:325.650000px;}
.xa8_c00443{left:328.050000px;}
.x6_c00443{left:330.000000px;}
.x61_c00443{left:331.650000px;}
.x5c_c00443{left:333.450000px;}
.x29_c00443{left:336.000000px;}
.x7c_c00443{left:338.250000px;}
.x80_c00443{left:339.750000px;}
.x32_c00443{left:342.000000px;}
.x8f_c00443{left:343.050000px;}
.x2e_c00443{left:344.100000px;}
.x4a_c00443{left:345.750000px;}
.x76_c00443{left:348.000000px;}
.x83_c00443{left:350.100000px;}
.x1d_c00443{left:351.150000px;}
.xe_c00443{left:352.650000px;}
.x62_c00443{left:354.750000px;}
.x7d_c00443{left:355.950000px;}
.x9e_c00443{left:357.150000px;}
.x68_c00443{left:358.650000px;}
.x8e_c00443{left:360.000000px;}
.x18_c00443{left:364.050000px;}
.x55_c00443{left:365.250000px;}
.x7_c00443{left:366.750000px;}
.x47_c00443{left:368.100000px;}
.x75_c00443{left:369.300000px;}
.x1e_c00443{left:370.950000px;}
.x7e_c00443{left:372.150000px;}
.x8b_c00443{left:373.650000px;}
.x36_c00443{left:374.850000px;}
.x4b_c00443{left:377.100000px;}
.x9a_c00443{left:379.050000px;}
.xf_c00443{left:380.400000px;}
.x51_c00443{left:383.100000px;}
.x56_c00443{left:385.050000px;}
.x70_c00443{left:386.400000px;}
.x25_c00443{left:387.450000px;}
.x42_c00443{left:388.650000px;}
.x3b_c00443{left:390.150000px;}
.x81_c00443{left:391.200000px;}
.x8_c00443{left:394.500000px;}
.x2a_c00443{left:396.150000px;}
.x4c_c00443{left:399.000000px;}
.x66_c00443{left:400.050000px;}
.x5d_c00443{left:401.550000px;}
.x92_c00443{left:402.900000px;}
.x6e_c00443{left:404.550000px;}
.x43_c00443{left:405.900000px;}
.x77_c00443{left:407.700000px;}
.x5b_c00443{left:412.800000px;}
.x33_c00443{left:414.750000px;}
.x1f_c00443{left:416.250000px;}
.x37_c00443{left:418.350000px;}
.x3c_c00443{left:421.050000px;}
.xa5_c00443{left:422.400000px;}
.x69_c00443{left:423.900000px;}
.x52_c00443{left:425.250000px;}
.x8c_c00443{left:426.600000px;}
.x87_c00443{left:428.100000px;}
.x73_c00443{left:429.150000px;}
.x9_c00443{left:430.500000px;}
.x57_c00443{left:431.550000px;}
.x93_c00443{left:433.200000px;}
.x19_c00443{left:434.550000px;}
.x2f_c00443{left:436.650000px;}
.x26_c00443{left:438.600000px;}
.x3d_c00443{left:440.100000px;}
.x7f_c00443{left:441.600000px;}
.x1a_c00443{left:444.300000px;}
.x63_c00443{left:446.550000px;}
.x3_c00443{left:448.800000px;}
.x38_c00443{left:451.800000px;}
.x20_c00443{left:454.050000px;}
.xa_c00443{left:455.400000px;}
.x5e_c00443{left:459.450000px;}
.x10_c00443{left:461.400000px;}
.x98_c00443{left:464.550000px;}
.x1b_c00443{left:465.600000px;}
.x95_c00443{left:468.000000px;}
.x58_c00443{left:469.650000px;}
.x3e_c00443{left:472.200000px;}
.x88_c00443{left:475.200000px;}
.x34_c00443{left:476.700000px;}
.x2b_c00443{left:478.350000px;}
.x53_c00443{left:480.000000px;}
.x30_c00443{left:481.950000px;}
.x48_c00443{left:485.100000px;}
.x11_c00443{left:487.350000px;}
.x8d_c00443{left:489.900000px;}
.x3f_c00443{left:492.300000px;}
.x64_c00443{left:493.350000px;}
.x82_c00443{left:494.550000px;}
.x84_c00443{left:496.200000px;}
.x4d_c00443{left:497.250000px;}
.x31_c00443{left:499.200000px;}
.xa2_c00443{left:500.700000px;}
.xa6_c00443{left:502.650000px;}
.x90_c00443{left:504.000000px;}
.x9b_c00443{left:506.400000px;}
.x21_c00443{left:508.800000px;}
.x6f_c00443{left:510.300000px;}
.x39_c00443{left:511.500000px;}
.x44_c00443{left:513.900000px;}
.x85_c00443{left:515.250000px;}
.x27_c00443{left:517.050000px;}
.x5f_c00443{left:519.600000px;}
.x74_c00443{left:520.950000px;}
.x99_c00443{left:522.750000px;}
.x96_c00443{left:524.550000px;}
.xb_c00443{left:525.600000px;}
.xa7_c00443{left:526.650000px;}
.x22_c00443{left:527.850000px;}
.x7a_c00443{left:531.150000px;}
.x94_c00443{left:533.400000px;}
.xa9_c00443{left:579.300000px;}
.x115_c00443{left:580.350000px;}
.x134_c00443{left:581.550000px;}
.xb9_c00443{left:597.600000px;}
.xee_c00443{left:598.950000px;}
.xfc_c00443{left:601.650000px;}
.x106_c00443{left:603.300000px;}
.xaa_c00443{left:606.600000px;}
.xd7_c00443{left:611.100000px;}
.xe3_c00443{left:612.900000px;}
.xc7_c00443{left:615.900000px;}
.xc2_c00443{left:618.450000px;}
.xba_c00443{left:619.950000px;}
.xe9_c00443{left:622.650000px;}
.xf1_c00443{left:624.150000px;}
.x137_c00443{left:625.950000px;}
.x11f_c00443{left:627.450000px;}
.xb8_c00443{left:628.500000px;}
.xb2_c00443{left:631.650000px;}
.x107_c00443{left:632.850000px;}
.xda_c00443{left:634.350000px;}
.x12b_c00443{left:636.750000px;}
.x128_c00443{left:637.800000px;}
.x132_c00443{left:640.500000px;}
.xf5_c00443{left:642.000000px;}
.xe5_c00443{left:643.950000px;}
.x12c_c00443{left:645.750000px;}
.x136_c00443{left:647.700000px;}
.xde_c00443{left:650.850000px;}
.x112_c00443{left:652.350000px;}
.xc3_c00443{left:655.500000px;}
.xcd_c00443{left:658.800000px;}
.x10a_c00443{left:660.900000px;}
.x12d_c00443{left:661.950000px;}
.xab_c00443{left:663.150000px;}
.xf6_c00443{left:665.100000px;}
.xdf_c00443{left:667.800000px;}
.xc8_c00443{left:668.850000px;}
.x10e_c00443{left:671.550000px;}
.xd0_c00443{left:673.200000px;}
.xe4_c00443{left:674.850000px;}
.xdb_c00443{left:676.500000px;}
.x100_c00443{left:677.700000px;}
.xc9_c00443{left:678.900000px;}
.x10b_c00443{left:681.450000px;}
.x11c_c00443{left:682.800000px;}
.xb3_c00443{left:684.900000px;}
.x116_c00443{left:686.850000px;}
.xea_c00443{left:688.200000px;}
.x10f_c00443{left:690.300000px;}
.x11d_c00443{left:691.500000px;}
.xd1_c00443{left:693.000000px;}
.xf2_c00443{left:694.050000px;}
.x101_c00443{left:698.550000px;}
.xac_c00443{left:700.200000px;}
.xbb_c00443{left:701.700000px;}
.xc4_c00443{left:704.400000px;}
.xb4_c00443{left:706.500000px;}
.x120_c00443{left:709.500000px;}
.xbc_c00443{left:712.200000px;}
.xdc_c00443{left:714.600000px;}
.xe0_c00443{left:720.000000px;}
.x117_c00443{left:721.050000px;}
.xad_c00443{left:722.550000px;}
.xf7_c00443{left:724.200000px;}
.x110_c00443{left:726.450000px;}
.xce_c00443{left:729.000000px;}
.x10c_c00443{left:732.150000px;}
.x113_c00443{left:733.350000px;}
.x123_c00443{left:734.850000px;}
.xca_c00443{left:738.000000px;}
.xd2_c00443{left:739.050000px;}
.x135_c00443{left:740.250000px;}
.xe1_c00443{left:741.600000px;}
.x118_c00443{left:742.950000px;}
.x121_c00443{left:744.000000px;}
.x102_c00443{left:747.150000px;}
.x114_c00443{left:749.550000px;}
.xbd_c00443{left:751.800000px;}
.xef_c00443{left:753.750000px;}
.xf3_c00443{left:755.850000px;}
.xb5_c00443{left:757.200000px;}
.xd8_c00443{left:759.750000px;}
.xe6_c00443{left:761.250000px;}
.x126_c00443{left:763.500000px;}
.xae_c00443{left:766.500000px;}
.xe2_c00443{left:768.300000px;}
.xeb_c00443{left:770.250000px;}
.xbe_c00443{left:773.400000px;}
.xd3_c00443{left:776.850000px;}
.x12e_c00443{left:777.900000px;}
.xcf_c00443{left:779.400000px;}
.xdd_c00443{left:782.250000px;}
.xe7_c00443{left:784.350000px;}
.xc5_c00443{left:785.400000px;}
.x119_c00443{left:787.650000px;}
.xfd_c00443{left:790.050000px;}
.x131_c00443{left:791.400000px;}
.xf8_c00443{left:792.600000px;}
.xfa_c00443{left:794.400000px;}
.xaf_c00443{left:798.600000px;}
.xcb_c00443{left:799.950000px;}
.x138_c00443{left:801.000000px;}
.x11a_c00443{left:804.150000px;}
.xd4_c00443{left:806.700000px;}
.x103_c00443{left:808.350000px;}
.x10d_c00443{left:809.550000px;}
.xcc_c00443{left:811.050000px;}
.xfe_c00443{left:814.500000px;}
.xf0_c00443{left:816.000000px;}
.xd5_c00443{left:817.800000px;}
.xb0_c00443{left:820.200000px;}
.x124_c00443{left:824.850000px;}
.x12f_c00443{left:828.300000px;}
.xe8_c00443{left:830.850000px;}
.xbf_c00443{left:832.500000px;}
.xb6_c00443{left:833.550000px;}
.xff_c00443{left:836.400000px;}
.xec_c00443{left:837.600000px;}
.xb1_c00443{left:839.700000px;}
.x12a_c00443{left:842.100000px;}
.xd9_c00443{left:844.650000px;}
.xc6_c00443{left:846.600000px;}
.xd6_c00443{left:848.700000px;}
.x108_c00443{left:851.250000px;}
.x105_c00443{left:854.850000px;}
.xed_c00443{left:856.350000px;}
.xc0_c00443{left:858.000000px;}
.x129_c00443{left:859.050000px;}
.x139_c00443{left:861.900000px;}
.x11e_c00443{left:863.250000px;}
.x125_c00443{left:864.450000px;}
.x111_c00443{left:866.550000px;}
.xc1_c00443{left:869.850000px;}
.x130_c00443{left:873.000000px;}
.x122_c00443{left:875.550000px;}
.x109_c00443{left:877.950000px;}
.xb7_c00443{left:881.100000px;}
.x127_c00443{left:882.300000px;}
.xf4_c00443{left:884.700000px;}
.xfb_c00443{left:888.600000px;}
.x11b_c00443{left:889.800000px;}
.x133_c00443{left:892.200000px;}
.xf9_c00443{left:895.500000px;}
.x104_c00443{left:897.600000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws1_c00443{word-spacing:-10.127885pt;}
.ws5_c00443{word-spacing:-4.365099pt;}
.ws3_c00443{word-spacing:-4.230366pt;}
.ws2_c00443{word-spacing:-2.433862pt;}
.ws6_c00443{word-spacing:0.000000pt;}
.ws4_c00443{word-spacing:9.834395pt;}
.ws0_c00443{word-spacing:19.464968pt;}
.fs3_c00443{font-size:48.000000pt;}
.fs2_c00443{font-size:53.333333pt;}
.fs1_c00443{font-size:58.666667pt;}
.fs4_c00443{font-size:64.000000pt;}
.fs0_c00443{font-size:96.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y67_c00443{bottom:160.000000pt;}
.y34_c00443{bottom:173.866667pt;}
.y66_c00443{bottom:176.666667pt;}
.y33_c00443{bottom:186.000000pt;}
.y65_c00443{bottom:192.666667pt;}
.y32_c00443{bottom:199.066667pt;}
.y31_c00443{bottom:211.200000pt;}
.y64_c00443{bottom:216.000000pt;}
.y30_c00443{bottom:224.000000pt;}
.y63_c00443{bottom:235.466667pt;}
.y2f_c00443{bottom:236.533333pt;}
.y62_c00443{bottom:251.200000pt;}
.y61_c00443{bottom:267.200000pt;}
.y2e_c00443{bottom:280.266667pt;}
.y60_c00443{bottom:283.200000pt;}
.y2d_c00443{bottom:296.266667pt;}
.y5f_c00443{bottom:298.533333pt;}
.y5e_c00443{bottom:313.600000pt;}
.y2c_c00443{bottom:314.133333pt;}
.y2b_c00443{bottom:328.266667pt;}
.y5d_c00443{bottom:333.200000pt;}
.y2a_c00443{bottom:344.266667pt;}
.y5c_c00443{bottom:349.466667pt;}
.y29_c00443{bottom:360.000000pt;}
.y5b_c00443{bottom:365.200000pt;}
.y28_c00443{bottom:376.000000pt;}
.y5a_c00443{bottom:381.466667pt;}
.y27_c00443{bottom:392.000000pt;}
.y59_c00443{bottom:396.800000pt;}
.y26_c00443{bottom:409.866667pt;}
.y58_c00443{bottom:412.800000pt;}
.y25_c00443{bottom:427.200000pt;}
.y57_c00443{bottom:428.800000pt;}
.y24_c00443{bottom:442.933333pt;}
.y56_c00443{bottom:444.800000pt;}
.y23_c00443{bottom:458.933333pt;}
.y55_c00443{bottom:464.000000pt;}
.y22_c00443{bottom:474.666667pt;}
.y54_c00443{bottom:480.266667pt;}
.y21_c00443{bottom:490.666667pt;}
.y53_c00443{bottom:496.266667pt;}
.y20_c00443{bottom:506.400000pt;}
.y52_c00443{bottom:512.000000pt;}
.y1f_c00443{bottom:522.133333pt;}
.y51_c00443{bottom:528.000000pt;}
.y1e_c00443{bottom:538.133333pt;}
.y50_c00443{bottom:544.000000pt;}
.y1d_c00443{bottom:553.866667pt;}
.y4f_c00443{bottom:559.733333pt;}
.y1c_c00443{bottom:572.666667pt;}
.y4e_c00443{bottom:575.733333pt;}
.y1b_c00443{bottom:589.333333pt;}
.y4d_c00443{bottom:594.666667pt;}
.y1a_c00443{bottom:605.066667pt;}
.y4c_c00443{bottom:610.666667pt;}
.y19_c00443{bottom:621.066667pt;}
.y4b_c00443{bottom:626.666667pt;}
.y18_c00443{bottom:637.066667pt;}
.y4a_c00443{bottom:642.400000pt;}
.y17_c00443{bottom:652.800000pt;}
.y49_c00443{bottom:658.133333pt;}
.y16_c00443{bottom:668.800000pt;}
.y48_c00443{bottom:673.866667pt;}
.y15_c00443{bottom:684.533333pt;}
.y47_c00443{bottom:693.066667pt;}
.y14_c00443{bottom:700.533333pt;}
.y46_c00443{bottom:709.066667pt;}
.y13_c00443{bottom:716.533333pt;}
.y45_c00443{bottom:725.066667pt;}
.y12_c00443{bottom:732.533333pt;}
.y44_c00443{bottom:740.800000pt;}
.y11_c00443{bottom:748.533333pt;}
.y43_c00443{bottom:756.800000pt;}
.y10_c00443{bottom:767.733333pt;}
.y42_c00443{bottom:772.800000pt;}
.yf_c00443{bottom:783.733333pt;}
.y41_c00443{bottom:788.800000pt;}
.ye_c00443{bottom:799.466667pt;}
.y40_c00443{bottom:812.000000pt;}
.yd_c00443{bottom:815.466667pt;}
.y3f_c00443{bottom:828.000000pt;}
.yc_c00443{bottom:831.200000pt;}
.y3e_c00443{bottom:843.733333pt;}
.yb_c00443{bottom:847.200000pt;}
.y3d_c00443{bottom:859.733333pt;}
.ya_c00443{bottom:862.933333pt;}
.y3c_c00443{bottom:875.466667pt;}
.y9_c00443{bottom:878.933333pt;}
.y3b_c00443{bottom:891.466667pt;}
.y8_c00443{bottom:894.933333pt;}
.y7_c00443{bottom:910.666667pt;}
.y3a_c00443{bottom:911.333333pt;}
.y39_c00443{bottom:927.066667pt;}
.y6_c00443{bottom:927.333333pt;}
.y5_c00443{bottom:942.400000pt;}
.y38_c00443{bottom:943.066667pt;}
.y4_c00443{bottom:958.400000pt;}
.y37_c00443{bottom:962.533333pt;}
.y3_c00443{bottom:977.866667pt;}
.y36_c00443{bottom:978.933333pt;}
.y2_c00443{bottom:993.600000pt;}
.y35_c00443{bottom:994.933333pt;}
.y1_c00443{bottom:1017.600000pt;}
.h5_c00443{height:48.000000pt;}
.h4_c00443{height:53.333333pt;}
.h3_c00443{height:58.666667pt;}
.h6_c00443{height:64.000000pt;}
.h2_c00443{height:96.000000pt;}
.h1_c00443{height:1127.333333pt;}
.h0_c00443{height:1127.359944pt;}
.w0_c00443{width:851.840007pt;}
.w1_c00443{width:852.000000pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:181.733333pt;}
.x9f_c00443{left:185.333333pt;}
.x9c_c00443{left:186.400000pt;}
.x4_c00443{left:197.066667pt;}
.x12_c00443{left:198.666667pt;}
.x89_c00443{left:200.000000pt;}
.x9d_c00443{left:205.866667pt;}
.xa0_c00443{left:208.000000pt;}
.x59_c00443{left:209.466667pt;}
.x4f_c00443{left:213.466667pt;}
.x15_c00443{left:214.666667pt;}
.xa3_c00443{left:215.866667pt;}
.x6a_c00443{left:216.800000pt;}
.x5_c00443{left:218.133333pt;}
.x45_c00443{left:219.333333pt;}
.x1c_c00443{left:220.266667pt;}
.x71_c00443{left:221.200000pt;}
.x2c_c00443{left:223.600000pt;}
.x13_c00443{left:226.133333pt;}
.x7b_c00443{left:227.600000pt;}
.x91_c00443{left:228.800000pt;}
.x3a_c00443{left:231.333333pt;}
.xa4_c00443{left:232.533333pt;}
.x28_c00443{left:234.400000pt;}
.x50_c00443{left:236.533333pt;}
.x16_c00443{left:238.400000pt;}
.x72_c00443{left:239.466667pt;}
.x6b_c00443{left:240.533333pt;}
.x23_c00443{left:241.733333pt;}
.x54_c00443{left:244.000000pt;}
.x67_c00443{left:244.933333pt;}
.x40_c00443{left:247.866667pt;}
.x8a_c00443{left:249.600000pt;}
.x65_c00443{left:251.066667pt;}
.x14_c00443{left:253.333333pt;}
.x2_c00443{left:255.600000pt;}
.xc_c00443{left:256.533333pt;}
.x79_c00443{left:258.400000pt;}
.x2d_c00443{left:259.466667pt;}
.x35_c00443{left:261.200000pt;}
.x24_c00443{left:262.800000pt;}
.xa1_c00443{left:264.933333pt;}
.x97_c00443{left:268.000000pt;}
.x41_c00443{left:269.600000pt;}
.x4e_c00443{left:270.533333pt;}
.x17_c00443{left:271.733333pt;}
.x86_c00443{left:273.333333pt;}
.x6c_c00443{left:274.400000pt;}
.x60_c00443{left:276.933333pt;}
.x78_c00443{left:280.266667pt;}
.x5a_c00443{left:281.466667pt;}
.xd_c00443{left:284.400000pt;}
.x49_c00443{left:286.533333pt;}
.x46_c00443{left:287.466667pt;}
.x6d_c00443{left:289.466667pt;}
.xa8_c00443{left:291.600000pt;}
.x6_c00443{left:293.333333pt;}
.x61_c00443{left:294.800000pt;}
.x5c_c00443{left:296.400000pt;}
.x29_c00443{left:298.666667pt;}
.x7c_c00443{left:300.666667pt;}
.x80_c00443{left:302.000000pt;}
.x32_c00443{left:304.000000pt;}
.x8f_c00443{left:304.933333pt;}
.x2e_c00443{left:305.866667pt;}
.x4a_c00443{left:307.333333pt;}
.x76_c00443{left:309.333333pt;}
.x83_c00443{left:311.200000pt;}
.x1d_c00443{left:312.133333pt;}
.xe_c00443{left:313.466667pt;}
.x62_c00443{left:315.333333pt;}
.x7d_c00443{left:316.400000pt;}
.x9e_c00443{left:317.466667pt;}
.x68_c00443{left:318.800000pt;}
.x8e_c00443{left:320.000000pt;}
.x18_c00443{left:323.600000pt;}
.x55_c00443{left:324.666667pt;}
.x7_c00443{left:326.000000pt;}
.x47_c00443{left:327.200000pt;}
.x75_c00443{left:328.266667pt;}
.x1e_c00443{left:329.733333pt;}
.x7e_c00443{left:330.800000pt;}
.x8b_c00443{left:332.133333pt;}
.x36_c00443{left:333.200000pt;}
.x4b_c00443{left:335.200000pt;}
.x9a_c00443{left:336.933333pt;}
.xf_c00443{left:338.133333pt;}
.x51_c00443{left:340.533333pt;}
.x56_c00443{left:342.266667pt;}
.x70_c00443{left:343.466667pt;}
.x25_c00443{left:344.400000pt;}
.x42_c00443{left:345.466667pt;}
.x3b_c00443{left:346.800000pt;}
.x81_c00443{left:347.733333pt;}
.x8_c00443{left:350.666667pt;}
.x2a_c00443{left:352.133333pt;}
.x4c_c00443{left:354.666667pt;}
.x66_c00443{left:355.600000pt;}
.x5d_c00443{left:356.933333pt;}
.x92_c00443{left:358.133333pt;}
.x6e_c00443{left:359.600000pt;}
.x43_c00443{left:360.800000pt;}
.x77_c00443{left:362.400000pt;}
.x5b_c00443{left:366.933333pt;}
.x33_c00443{left:368.666667pt;}
.x1f_c00443{left:370.000000pt;}
.x37_c00443{left:371.866667pt;}
.x3c_c00443{left:374.266667pt;}
.xa5_c00443{left:375.466667pt;}
.x69_c00443{left:376.800000pt;}
.x52_c00443{left:378.000000pt;}
.x8c_c00443{left:379.200000pt;}
.x87_c00443{left:380.533333pt;}
.x73_c00443{left:381.466667pt;}
.x9_c00443{left:382.666667pt;}
.x57_c00443{left:383.600000pt;}
.x93_c00443{left:385.066667pt;}
.x19_c00443{left:386.266667pt;}
.x2f_c00443{left:388.133333pt;}
.x26_c00443{left:389.866667pt;}
.x3d_c00443{left:391.200000pt;}
.x7f_c00443{left:392.533333pt;}
.x1a_c00443{left:394.933333pt;}
.x63_c00443{left:396.933333pt;}
.x3_c00443{left:398.933333pt;}
.x38_c00443{left:401.600000pt;}
.x20_c00443{left:403.600000pt;}
.xa_c00443{left:404.800000pt;}
.x5e_c00443{left:408.400000pt;}
.x10_c00443{left:410.133333pt;}
.x98_c00443{left:412.933333pt;}
.x1b_c00443{left:413.866667pt;}
.x95_c00443{left:416.000000pt;}
.x58_c00443{left:417.466667pt;}
.x3e_c00443{left:419.733333pt;}
.x88_c00443{left:422.400000pt;}
.x34_c00443{left:423.733333pt;}
.x2b_c00443{left:425.200000pt;}
.x53_c00443{left:426.666667pt;}
.x30_c00443{left:428.400000pt;}
.x48_c00443{left:431.200000pt;}
.x11_c00443{left:433.200000pt;}
.x8d_c00443{left:435.466667pt;}
.x3f_c00443{left:437.600000pt;}
.x64_c00443{left:438.533333pt;}
.x82_c00443{left:439.600000pt;}
.x84_c00443{left:441.066667pt;}
.x4d_c00443{left:442.000000pt;}
.x31_c00443{left:443.733333pt;}
.xa2_c00443{left:445.066667pt;}
.xa6_c00443{left:446.800000pt;}
.x90_c00443{left:448.000000pt;}
.x9b_c00443{left:450.133333pt;}
.x21_c00443{left:452.266667pt;}
.x6f_c00443{left:453.600000pt;}
.x39_c00443{left:454.666667pt;}
.x44_c00443{left:456.800000pt;}
.x85_c00443{left:458.000000pt;}
.x27_c00443{left:459.600000pt;}
.x5f_c00443{left:461.866667pt;}
.x74_c00443{left:463.066667pt;}
.x99_c00443{left:464.666667pt;}
.x96_c00443{left:466.266667pt;}
.xb_c00443{left:467.200000pt;}
.xa7_c00443{left:468.133333pt;}
.x22_c00443{left:469.200000pt;}
.x7a_c00443{left:472.133333pt;}
.x94_c00443{left:474.133333pt;}
.xa9_c00443{left:514.933333pt;}
.x115_c00443{left:515.866667pt;}
.x134_c00443{left:516.933333pt;}
.xb9_c00443{left:531.200000pt;}
.xee_c00443{left:532.400000pt;}
.xfc_c00443{left:534.800000pt;}
.x106_c00443{left:536.266667pt;}
.xaa_c00443{left:539.200000pt;}
.xd7_c00443{left:543.200000pt;}
.xe3_c00443{left:544.800000pt;}
.xc7_c00443{left:547.466667pt;}
.xc2_c00443{left:549.733333pt;}
.xba_c00443{left:551.066667pt;}
.xe9_c00443{left:553.466667pt;}
.xf1_c00443{left:554.800000pt;}
.x137_c00443{left:556.400000pt;}
.x11f_c00443{left:557.733333pt;}
.xb8_c00443{left:558.666667pt;}
.xb2_c00443{left:561.466667pt;}
.x107_c00443{left:562.533333pt;}
.xda_c00443{left:563.866667pt;}
.x12b_c00443{left:566.000000pt;}
.x128_c00443{left:566.933333pt;}
.x132_c00443{left:569.333333pt;}
.xf5_c00443{left:570.666667pt;}
.xe5_c00443{left:572.400000pt;}
.x12c_c00443{left:574.000000pt;}
.x136_c00443{left:575.733333pt;}
.xde_c00443{left:578.533333pt;}
.x112_c00443{left:579.866667pt;}
.xc3_c00443{left:582.666667pt;}
.xcd_c00443{left:585.600000pt;}
.x10a_c00443{left:587.466667pt;}
.x12d_c00443{left:588.400000pt;}
.xab_c00443{left:589.466667pt;}
.xf6_c00443{left:591.200000pt;}
.xdf_c00443{left:593.600000pt;}
.xc8_c00443{left:594.533333pt;}
.x10e_c00443{left:596.933333pt;}
.xd0_c00443{left:598.400000pt;}
.xe4_c00443{left:599.866667pt;}
.xdb_c00443{left:601.333333pt;}
.x100_c00443{left:602.400000pt;}
.xc9_c00443{left:603.466667pt;}
.x10b_c00443{left:605.733333pt;}
.x11c_c00443{left:606.933333pt;}
.xb3_c00443{left:608.800000pt;}
.x116_c00443{left:610.533333pt;}
.xea_c00443{left:611.733333pt;}
.x10f_c00443{left:613.600000pt;}
.x11d_c00443{left:614.666667pt;}
.xd1_c00443{left:616.000000pt;}
.xf2_c00443{left:616.933333pt;}
.x101_c00443{left:620.933333pt;}
.xac_c00443{left:622.400000pt;}
.xbb_c00443{left:623.733333pt;}
.xc4_c00443{left:626.133333pt;}
.xb4_c00443{left:628.000000pt;}
.x120_c00443{left:630.666667pt;}
.xbc_c00443{left:633.066667pt;}
.xdc_c00443{left:635.200000pt;}
.xe0_c00443{left:640.000000pt;}
.x117_c00443{left:640.933333pt;}
.xad_c00443{left:642.266667pt;}
.xf7_c00443{left:643.733333pt;}
.x110_c00443{left:645.733333pt;}
.xce_c00443{left:648.000000pt;}
.x10c_c00443{left:650.800000pt;}
.x113_c00443{left:651.866667pt;}
.x123_c00443{left:653.200000pt;}
.xca_c00443{left:656.000000pt;}
.xd2_c00443{left:656.933333pt;}
.x135_c00443{left:658.000000pt;}
.xe1_c00443{left:659.200000pt;}
.x118_c00443{left:660.400000pt;}
.x121_c00443{left:661.333333pt;}
.x102_c00443{left:664.133333pt;}
.x114_c00443{left:666.266667pt;}
.xbd_c00443{left:668.266667pt;}
.xef_c00443{left:670.000000pt;}
.xf3_c00443{left:671.866667pt;}
.xb5_c00443{left:673.066667pt;}
.xd8_c00443{left:675.333333pt;}
.xe6_c00443{left:676.666667pt;}
.x126_c00443{left:678.666667pt;}
.xae_c00443{left:681.333333pt;}
.xe2_c00443{left:682.933333pt;}
.xeb_c00443{left:684.666667pt;}
.xbe_c00443{left:687.466667pt;}
.xd3_c00443{left:690.533333pt;}
.x12e_c00443{left:691.466667pt;}
.xcf_c00443{left:692.800000pt;}
.xdd_c00443{left:695.333333pt;}
.xe7_c00443{left:697.200000pt;}
.xc5_c00443{left:698.133333pt;}
.x119_c00443{left:700.133333pt;}
.xfd_c00443{left:702.266667pt;}
.x131_c00443{left:703.466667pt;}
.xf8_c00443{left:704.533333pt;}
.xfa_c00443{left:706.133333pt;}
.xaf_c00443{left:709.866667pt;}
.xcb_c00443{left:711.066667pt;}
.x138_c00443{left:712.000000pt;}
.x11a_c00443{left:714.800000pt;}
.xd4_c00443{left:717.066667pt;}
.x103_c00443{left:718.533333pt;}
.x10d_c00443{left:719.600000pt;}
.xcc_c00443{left:720.933333pt;}
.xfe_c00443{left:724.000000pt;}
.xf0_c00443{left:725.333333pt;}
.xd5_c00443{left:726.933333pt;}
.xb0_c00443{left:729.066667pt;}
.x124_c00443{left:733.200000pt;}
.x12f_c00443{left:736.266667pt;}
.xe8_c00443{left:738.533333pt;}
.xbf_c00443{left:740.000000pt;}
.xb6_c00443{left:740.933333pt;}
.xff_c00443{left:743.466667pt;}
.xec_c00443{left:744.533333pt;}
.xb1_c00443{left:746.400000pt;}
.x12a_c00443{left:748.533333pt;}
.xd9_c00443{left:750.800000pt;}
.xc6_c00443{left:752.533333pt;}
.xd6_c00443{left:754.400000pt;}
.x108_c00443{left:756.666667pt;}
.x105_c00443{left:759.866667pt;}
.xed_c00443{left:761.200000pt;}
.xc0_c00443{left:762.666667pt;}
.x129_c00443{left:763.600000pt;}
.x139_c00443{left:766.133333pt;}
.x11e_c00443{left:767.333333pt;}
.x125_c00443{left:768.400000pt;}
.x111_c00443{left:770.266667pt;}
.xc1_c00443{left:773.200000pt;}
.x130_c00443{left:776.000000pt;}
.x122_c00443{left:778.266667pt;}
.x109_c00443{left:780.400000pt;}
.xb7_c00443{left:783.200000pt;}
.x127_c00443{left:784.266667pt;}
.xf4_c00443{left:786.400000pt;}
.xfb_c00443{left:789.866667pt;}
.x11b_c00443{left:790.933333pt;}
.x133_c00443{left:793.066667pt;}
.xf9_c00443{left:796.000000pt;}
.x104_c00443{left:797.866667pt;}
}





/* 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_c00444 {
    display:none;
  }
  .loading-indicator_c00444.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00444 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_c00444 { 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_c00444" -> "#page-container .classname_c00444")
 */
.pf_c00444 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00444 { /* 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_c00444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00444 { /* 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_c00444 { /* 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_c00444 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00444 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00444 {overflow:visible;}
  }
}
.c_c00444 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00444 { /* 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_c00444:after { /* webkit #35443 */
  content: '';
}
.t_c00444:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00444 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 */
}
.__c00444 { /* 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_c00444 { /* info for Javascript */
  display:none;
}
.l_c00444 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00444 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00444 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00444: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_c00444 {
    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_c00444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00444.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_c00444 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00444;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.000000;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;}
.m10a_c00444{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.md9_c00444{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m28_c00444{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m91_c00444{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00444{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00444{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m56_c00444{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00444{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00444{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m59_c00444{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m14_c00444{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc_c00444{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00444{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00444{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md4_c00444{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00444{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00444{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.me4_c00444{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.med_c00444{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m58_c00444{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m37_c00444{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.me7_c00444{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00444{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me9_c00444{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00444{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m107_c00444{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m104_c00444{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00444{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00444{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00444{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me8_c00444{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mef_c00444{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m20_c00444{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m99_c00444{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00444{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00444{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m93_c00444{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m4_c00444{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00444{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00444{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m88_c00444{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m106_c00444{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m38_c00444{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00444{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00444{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mad_c00444{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00444{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00444{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00444{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00444{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m9_c00444{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00444{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m26_c00444{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md8_c00444{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mac_c00444{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00444{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00444{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mea_c00444{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00444{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m65_c00444{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m54_c00444{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00444{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00444{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me2_c00444{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.mf_c00444{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00444{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00444{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m103_c00444{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00444{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m23_c00444{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m95_c00444{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m66_c00444{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m46_c00444{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00444{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.md6_c00444{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m76_c00444{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m89_c00444{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m92_c00444{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m55_c00444{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m13_c00444{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00444{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m94_c00444{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00444{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00444{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00444{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00444{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mce_c00444{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m25_c00444{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m50_c00444{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m8_c00444{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00444{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00444{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m87_c00444{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me_c00444{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00444{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00444{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00444{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m41_c00444{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m22_c00444{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00444{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m53_c00444{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00444{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m33_c00444{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m85_c00444{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m51_c00444{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m45_c00444{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m44_c00444{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.md_c00444{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00444{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00444{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m16_c00444{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00444{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m105_c00444{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00444{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mba_c00444{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00444{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.md7_c00444{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m79_c00444{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mca_c00444{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m15_c00444{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00444{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00444{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.me1_c00444{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00444{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00444{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00444{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m70_c00444{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00444{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00444{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7_c00444{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00444{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m32_c00444{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m29_c00444{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m71_c00444{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m64_c00444{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m61_c00444{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m17_c00444{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00444{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00444{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m31_c00444{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00444{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00444{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m98_c00444{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m48_c00444{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mff_c00444{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m75_c00444{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00444{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00444{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m24_c00444{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m21_c00444{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m19_c00444{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m77_c00444{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m86_c00444{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m57_c00444{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00444{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m72_c00444{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00444{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mda_c00444{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m34_c00444{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00444{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00444{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m49_c00444{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.maf_c00444{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma_c00444{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m18_c00444{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me0_c00444{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m68_c00444{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m10_c00444{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m97_c00444{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mde_c00444{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00444{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m96_c00444{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m11_c00444{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00444{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00444{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb_c00444{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00444{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mab_c00444{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m78_c00444{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00444{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00444{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m73_c00444{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00444{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00444{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m36_c00444{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m74_c00444{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mae_c00444{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m82_c00444{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m30_c00444{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m35_c00444{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m12_c00444{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00444{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00444{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00444{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00444{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md1_c00444{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00444{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.me5_c00444{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m101_c00444{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00444{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md2_c00444{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me3_c00444{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m60_c00444{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00444{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m109_c00444{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m62_c00444{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00444{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m47_c00444{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00444{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00444{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00444{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00444{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00444{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00444{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00444{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m83_c00444{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m39_c00444{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mec_c00444{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.me6_c00444{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00444{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m27_c00444{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.md0_c00444{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00444{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m52_c00444{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00444{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m102_c00444{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.maa_c00444{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m80_c00444{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00444{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m100_c00444{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m42_c00444{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m40_c00444{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00444{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00444{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00444{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00444{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00444{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m84_c00444{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00444{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00444{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m108_c00444{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00444{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00444{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.md3_c00444{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00444{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m63_c00444{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00444{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.md5_c00444{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m2_c00444{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00444{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mee_c00444{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m43_c00444{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00444{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.meb_c00444{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00444{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00444{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m69_c00444{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00444{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m67_c00444{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00444{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00444{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m81_c00444{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00444{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m90_c00444{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00444{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00444{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m3_c00444{transform:matrix(0.630750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630750,0.000000,0.000000,0.250000,0,0);}
.m6_c00444{transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.920000,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls0_c00444{letter-spacing:0.000000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{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__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00444{word-spacing:-9.104803px;}
.ws3_c00444{word-spacing:-8.333333px;}
.ws5_c00444{word-spacing:-6.139535px;}
.ws8_c00444{word-spacing:-3.906250px;}
.ws7_c00444{word-spacing:-2.666667px;}
.ws4_c00444{word-spacing:-1.997587px;}
.ws6_c00444{word-spacing:-0.722814px;}
.wsa_c00444{word-spacing:0.000000px;}
.ws0_c00444{word-spacing:5.942675px;}
.ws2_c00444{word-spacing:7.924644px;}
.ws9_c00444{word-spacing:9.000000px;}
.fc0_c00444{color:transparent;}
.fs1_c00444{font-size:30.000000px;}
.fs5_c00444{font-size:54.000000px;}
.fs4_c00444{font-size:60.000000px;}
.fs3_c00444{font-size:66.000000px;}
.fs2_c00444{font-size:72.000000px;}
.fs0_c00444{font-size:114.000000px;}
.y0_c00444{bottom:0.000000px;}
.y6c_c00444{bottom:163.050000px;}
.y6b_c00444{bottom:179.400000px;}
.y36_c00444{bottom:184.650000px;}
.y6a_c00444{bottom:194.100000px;}
.y35_c00444{bottom:203.400000px;}
.y69_c00444{bottom:208.800000px;}
.y34_c00444{bottom:221.100000px;}
.y68_c00444{bottom:223.200000px;}
.y67_c00444{bottom:237.300000px;}
.y33_c00444{bottom:239.400000px;}
.y66_c00444{bottom:252.000000px;}
.y32_c00444{bottom:257.100000px;}
.y65_c00444{bottom:266.400000px;}
.y31_c00444{bottom:275.100000px;}
.y64_c00444{bottom:281.100000px;}
.y30_c00444{bottom:293.100000px;}
.y63_c00444{bottom:295.500000px;}
.y62_c00444{bottom:309.900000px;}
.y2f_c00444{bottom:310.350000px;}
.y61_c00444{bottom:324.600000px;}
.y2e_c00444{bottom:333.000000px;}
.y60_c00444{bottom:338.700000px;}
.y2d_c00444{bottom:351.300000px;}
.y2c_c00444{bottom:369.000000px;}
.y5f_c00444{bottom:376.800000px;}
.y2b_c00444{bottom:387.300000px;}
.y5e_c00444{bottom:394.800000px;}
.y2a_c00444{bottom:405.300000px;}
.y5d_c00444{bottom:412.500000px;}
.y29_c00444{bottom:423.300000px;}
.y5c_c00444{bottom:430.500000px;}
.y28_c00444{bottom:440.250000px;}
.y5b_c00444{bottom:448.500000px;}
.y27_c00444{bottom:462.600000px;}
.y5a_c00444{bottom:466.500000px;}
.y26_c00444{bottom:480.600000px;}
.y59_c00444{bottom:484.200000px;}
.y25_c00444{bottom:498.300000px;}
.y58_c00444{bottom:504.300000px;}
.y24_c00444{bottom:516.000000px;}
.y57_c00444{bottom:520.200000px;}
.y23_c00444{bottom:534.300000px;}
.y56_c00444{bottom:538.500000px;}
.y22_c00444{bottom:552.300000px;}
.y55_c00444{bottom:556.200000px;}
.y21_c00444{bottom:570.150000px;}
.y54_c00444{bottom:574.500000px;}
.y20_c00444{bottom:587.850000px;}
.y53_c00444{bottom:592.200000px;}
.y1f_c00444{bottom:605.850000px;}
.y52_c00444{bottom:610.200000px;}
.y1e_c00444{bottom:624.150000px;}
.y51_c00444{bottom:630.300000px;}
.y1d_c00444{bottom:642.150000px;}
.y50_c00444{bottom:646.200000px;}
.y1c_c00444{bottom:659.850000px;}
.y4f_c00444{bottom:664.200000px;}
.y1b_c00444{bottom:681.600000px;}
.y4e_c00444{bottom:681.900000px;}
.y1a_c00444{bottom:699.300000px;}
.y4d_c00444{bottom:699.900000px;}
.y19_c00444{bottom:717.300000px;}
.y4c_c00444{bottom:717.900000px;}
.y18_c00444{bottom:735.300000px;}
.y4b_c00444{bottom:740.100000px;}
.y17_c00444{bottom:753.000000px;}
.y4a_c00444{bottom:757.800000px;}
.y16_c00444{bottom:770.700000px;}
.y49_c00444{bottom:775.800000px;}
.y15_c00444{bottom:788.700000px;}
.y48_c00444{bottom:794.100000px;}
.y14_c00444{bottom:806.700000px;}
.y47_c00444{bottom:811.800000px;}
.y13_c00444{bottom:824.700000px;}
.y46_c00444{bottom:829.800000px;}
.y12_c00444{bottom:842.700000px;}
.y45_c00444{bottom:847.800000px;}
.y11_c00444{bottom:860.700000px;}
.y44_c00444{bottom:865.800000px;}
.y10_c00444{bottom:878.700000px;}
.y43_c00444{bottom:883.800000px;}
.yf_c00444{bottom:896.700000px;}
.y42_c00444{bottom:901.500000px;}
.ye_c00444{bottom:914.700000px;}
.y41_c00444{bottom:919.500000px;}
.yd_c00444{bottom:936.750000px;}
.y40_c00444{bottom:937.500000px;}
.yc_c00444{bottom:954.750000px;}
.y3f_c00444{bottom:955.500000px;}
.yb_c00444{bottom:973.050000px;}
.ya_c00444{bottom:991.050000px;}
.y3e_c00444{bottom:991.350000px;}
.y9_c00444{bottom:1009.050000px;}
.y3d_c00444{bottom:1009.350000px;}
.y8_c00444{bottom:1026.750000px;}
.y3c_c00444{bottom:1027.350000px;}
.y7_c00444{bottom:1044.750000px;}
.y3b_c00444{bottom:1045.350000px;}
.y6_c00444{bottom:1062.750000px;}
.y3a_c00444{bottom:1063.050000px;}
.y5_c00444{bottom:1080.750000px;}
.y39_c00444{bottom:1081.500000px;}
.y4_c00444{bottom:1098.750000px;}
.y38_c00444{bottom:1099.800000px;}
.y3_c00444{bottom:1116.750000px;}
.y37_c00444{bottom:1117.500000px;}
.y1_c00444{bottom:1143.750000px;}
.y6d_c00444{bottom:1268.700000px;}
.y2_c00444{bottom:1269.300000px;}
.h3_c00444{height:30.000000px;}
.h7_c00444{height:54.000000px;}
.h6_c00444{height:60.000000px;}
.h5_c00444{height:66.000000px;}
.h4_c00444{height:72.000000px;}
.h2_c00444{height:114.000000px;}
.h1_c00444{height:1270.500000px;}
.h0_c00444{height:1270.799927px;}
.w0_c00444{width:958.320007px;}
.w1_c00444{width:958.500000px;}
.x0_c00444{left:0.000000px;}
.xe_c00444{left:104.100000px;}
.x7_c00444{left:105.150000px;}
.x4e_c00444{left:106.200000px;}
.x77_c00444{left:107.550000px;}
.x7e_c00444{left:108.750000px;}
.x9e_c00444{left:111.300000px;}
.x2e_c00444{left:123.900000px;}
.x86_c00444{left:125.100000px;}
.x80_c00444{left:126.300000px;}
.x91_c00444{left:128.100000px;}
.xa0_c00444{left:129.900000px;}
.x38_c00444{left:133.050000px;}
.x28_c00444{left:135.750000px;}
.x45_c00444{left:137.850000px;}
.x84_c00444{left:138.900000px;}
.x64_c00444{left:141.450000px;}
.x20_c00444{left:142.800000px;}
.x59_c00444{left:144.300000px;}
.x54_c00444{left:145.950000px;}
.x99_c00444{left:147.600000px;}
.x6f_c00444{left:148.650000px;}
.x1b_c00444{left:149.850000px;}
.xf_c00444{left:153.750000px;}
.x8c_c00444{left:154.800000px;}
.x34_c00444{left:156.300000px;}
.x1c_c00444{left:159.150000px;}
.x5a_c00444{left:160.500000px;}
.xa1_c00444{left:162.600000px;}
.x65_c00444{left:163.800000px;}
.x4f_c00444{left:164.850000px;}
.x8_c00444{left:166.650000px;}
.x21_c00444{left:168.000000px;}
.x8a_c00444{left:169.500000px;}
.x10_c00444{left:171.000000px;}
.x66_c00444{left:173.550000px;}
.x78_c00444{left:174.900000px;}
.x29_c00444{left:178.650000px;}
.x9a_c00444{left:182.550000px;}
.x60_c00444{left:184.650000px;}
.x48_c00444{left:185.700000px;}
.x68_c00444{left:187.200000px;}
.x70_c00444{left:188.250000px;}
.x22_c00444{left:189.900000px;}
.x39_c00444{left:192.150000px;}
.x16_c00444{left:194.850000px;}
.x2f_c00444{left:196.950000px;}
.x9b_c00444{left:198.750000px;}
.x55_c00444{left:200.700000px;}
.x9f_c00444{left:203.100000px;}
.x17_c00444{left:204.900000px;}
.x6c_c00444{left:206.400000px;}
.x69_c00444{left:208.050000px;}
.x61_c00444{left:210.750000px;}
.x3a_c00444{left:212.250000px;}
.x73_c00444{left:213.600000px;}
.x40_c00444{left:214.650000px;}
.x5b_c00444{left:216.300000px;}
.x46_c00444{left:217.800000px;}
.x2a_c00444{left:219.000000px;}
.x79_c00444{left:221.700000px;}
.x92_c00444{left:222.750000px;}
.x11_c00444{left:226.500000px;}
.x67_c00444{left:229.350000px;}
.x1d_c00444{left:231.900000px;}
.x74_c00444{left:233.700000px;}
.x56_c00444{left:235.950000px;}
.x47_c00444{left:237.300000px;}
.x9_c00444{left:239.700000px;}
.x23_c00444{left:241.350000px;}
.x93_c00444{left:242.400000px;}
.x7c_c00444{left:243.600000px;}
.x62_c00444{left:244.650000px;}
.x18_c00444{left:246.300000px;}
.x12_c00444{left:247.350000px;}
.x3b_c00444{left:249.300000px;}
.x81_c00444{left:250.350000px;}
.x7a_c00444{left:256.650000px;}
.x4b_c00444{left:258.450000px;}
.x30_c00444{left:262.500000px;}
.x49_c00444{left:264.150000px;}
.x5c_c00444{left:267.450000px;}
.x82_c00444{left:270.150000px;}
.x6d_c00444{left:271.200000px;}
.x2b_c00444{left:272.700000px;}
.x94_c00444{left:273.750000px;}
.x8b_c00444{left:275.100000px;}
.x41_c00444{left:276.300000px;}
.x87_c00444{left:277.800000px;}
.x31_c00444{left:279.450000px;}
.xa_c00444{left:280.800000px;}
.x3c_c00444{left:282.000000px;}
.x2c_c00444{left:284.250000px;}
.x57_c00444{left:286.350000px;}
.x5d_c00444{left:287.550000px;}
.x50_c00444{left:290.700000px;}
.x6a_c00444{left:294.450000px;}
.x42_c00444{left:296.400000px;}
.x8d_c00444{left:298.050000px;}
.x83_c00444{left:299.250000px;}
.x35_c00444{left:301.800000px;}
.x24_c00444{left:304.350000px;}
.x7b_c00444{left:306.750000px;}
.xb_c00444{left:307.800000px;}
.x19_c00444{left:310.050000px;}
.x13_c00444{left:312.900000px;}
.x8e_c00444{left:313.950000px;}
.x71_c00444{left:315.000000px;}
.x90_c00444{left:316.350000px;}
.x6b_c00444{left:319.950000px;}
.x88_c00444{left:321.150000px;}
.x96_c00444{left:322.350000px;}
.x25_c00444{left:324.150000px;}
.x43_c00444{left:325.200000px;}
.x4c_c00444{left:326.250000px;}
.x2d_c00444{left:328.950000px;}
.x1_c00444{left:330.900000px;}
.x14_c00444{left:333.000000px;}
.x72_c00444{left:337.650000px;}
.x7f_c00444{left:339.450000px;}
.x1e_c00444{left:341.100000px;}
.x51_c00444{left:342.150000px;}
.x5e_c00444{left:344.100000px;}
.x63_c00444{left:345.900000px;}
.x3d_c00444{left:348.150000px;}
.x58_c00444{left:349.650000px;}
.x52_c00444{left:352.200000px;}
.xc_c00444{left:353.550000px;}
.x89_c00444{left:354.900000px;}
.x75_c00444{left:356.700000px;}
.x1a_c00444{left:358.950000px;}
.x36_c00444{left:360.900000px;}
.x97_c00444{left:362.250000px;}
.x32_c00444{left:364.050000px;}
.x44_c00444{left:365.850000px;}
.xd_c00444{left:367.950000px;}
.x26_c00444{left:372.000000px;}
.x53_c00444{left:373.050000px;}
.x37_c00444{left:375.000000px;}
.x15_c00444{left:377.700000px;}
.x4a_c00444{left:379.650000px;}
.x3e_c00444{left:383.100000px;}
.x7d_c00444{left:384.150000px;}
.x95_c00444{left:385.650000px;}
.x4d_c00444{left:387.750000px;}
.x27_c00444{left:389.250000px;}
.x9c_c00444{left:390.300000px;}
.x33_c00444{left:391.800000px;}
.x85_c00444{left:395.250000px;}
.x76_c00444{left:396.600000px;}
.x1f_c00444{left:399.750000px;}
.x98_c00444{left:401.850000px;}
.x5f_c00444{left:403.200000px;}
.x9d_c00444{left:404.700000px;}
.x6e_c00444{left:408.600000px;}
.x3f_c00444{left:412.200000px;}
.x8f_c00444{left:422.700000px;}
.x106_c00444{left:447.900000px;}
.x13f_c00444{left:448.950000px;}
.x147_c00444{left:450.600000px;}
.x14f_c00444{left:451.950000px;}
.xa2_c00444{left:462.600000px;}
.xf3_c00444{left:463.650000px;}
.xf7_c00444{left:464.700000px;}
.x10e_c00444{left:465.750000px;}
.x124_c00444{left:467.550000px;}
.x144_c00444{left:471.750000px;}
.x148_c00444{left:473.700000px;}
.x13c_c00444{left:475.500000px;}
.x140_c00444{left:476.700000px;}
.xb2_c00444{left:480.300000px;}
.xd5_c00444{left:481.650000px;}
.x102_c00444{left:484.200000px;}
.x121_c00444{left:485.400000px;}
.x138_c00444{left:488.400000px;}
.x141_c00444{left:489.600000px;}
.xd9_c00444{left:492.450000px;}
.xc3_c00444{left:495.450000px;}
.xf4_c00444{left:497.850000px;}
.x117_c00444{left:499.650000px;}
.xf8_c00444{left:502.500000px;}
.xaa_c00444{left:503.700000px;}
.xe1_c00444{left:505.200000px;}
.x107_c00444{left:507.000000px;}
.x149_c00444{left:508.200000px;}
.xda_c00444{left:509.400000px;}
.xa3_c00444{left:511.500000px;}
.xf0_c00444{left:513.450000px;}
.xb3_c00444{left:516.000000px;}
.xd2_c00444{left:517.650000px;}
.xbb_c00444{left:519.600000px;}
.xa4_c00444{left:521.250000px;}
.xe8_c00444{left:522.300000px;}
.x11b_c00444{left:524.400000px;}
.xd6_c00444{left:525.900000px;}
.xca_c00444{left:527.250000px;}
.x125_c00444{left:528.450000px;}
.x103_c00444{left:529.950000px;}
.xfb_c00444{left:531.600000px;}
.x134_c00444{left:532.950000px;}
.x12b_c00444{left:534.000000px;}
.xce_c00444{left:538.050000px;}
.x127_c00444{left:539.100000px;}
.xc4_c00444{left:540.450000px;}
.x113_c00444{left:541.650000px;}
.xe2_c00444{left:545.100000px;}
.xdb_c00444{left:546.900000px;}
.xab_c00444{left:549.450000px;}
.x131_c00444{left:551.400000px;}
.xd3_c00444{left:553.650000px;}
.xb4_c00444{left:555.600000px;}
.x128_c00444{left:557.100000px;}
.xac_c00444{left:558.150000px;}
.x139_c00444{left:559.350000px;}
.xed_c00444{left:560.850000px;}
.x112_c00444{left:562.050000px;}
.xbc_c00444{left:564.300000px;}
.x14a_c00444{left:565.350000px;}
.xd7_c00444{left:568.050000px;}
.x150_c00444{left:569.400000px;}
.x135_c00444{left:570.450000px;}
.xf5_c00444{left:571.650000px;}
.xcb_c00444{left:574.350000px;}
.xb5_c00444{left:576.450000px;}
.x10a_c00444{left:578.100000px;}
.x3_c00444{left:579.900000px;}
.x122_c00444{left:581.250000px;}
.x118_c00444{left:582.750000px;}
.xbd_c00444{left:583.800000px;}
.xa5_c00444{left:585.300000px;}
.x14d_c00444{left:586.350000px;}
.xd4_c00444{left:588.150000px;}
.x12c_c00444{left:590.100000px;}
.xb6_c00444{left:591.750000px;}
.x11c_c00444{left:594.600000px;}
.xc5_c00444{left:595.950000px;}
.x4_c00444{left:597.600000px;}
.xe3_c00444{left:599.400000px;}
.xff_c00444{left:600.600000px;}
.x10b_c00444{left:601.800000px;}
.xcf_c00444{left:606.150000px;}
.x132_c00444{left:607.200000px;}
.xf1_c00444{left:608.250000px;}
.x10f_c00444{left:612.000000px;}
.xa6_c00444{left:614.100000px;}
.x114_c00444{left:616.200000px;}
.xc6_c00444{left:617.550000px;}
.xe4_c00444{left:619.500000px;}
.x10c_c00444{left:620.850000px;}
.xe9_c00444{left:622.500000px;}
.x145_c00444{left:624.750000px;}
.xdc_c00444{left:626.100000px;}
.x129_c00444{left:627.600000px;}
.xbe_c00444{left:629.100000px;}
.xcc_c00444{left:630.150000px;}
.xf6_c00444{left:632.100000px;}
.x11f_c00444{left:634.200000px;}
.x100_c00444{left:637.350000px;}
.xee_c00444{left:638.550000px;}
.xe5_c00444{left:640.050000px;}
.xd0_c00444{left:641.850000px;}
.xea_c00444{left:645.150000px;}
.x14b_c00444{left:646.650000px;}
.x119_c00444{left:647.850000px;}
.x12d_c00444{left:648.900000px;}
.xfc_c00444{left:650.700000px;}
.x136_c00444{left:652.950000px;}
.xad_c00444{left:655.650000px;}
.xc7_c00444{left:656.850000px;}
.x13a_c00444{left:658.350000px;}
.xdd_c00444{left:660.300000px;}
.x151_c00444{left:661.650000px;}
.xf9_c00444{left:662.700000px;}
.x126_c00444{left:663.750000px;}
.xbf_c00444{left:665.400000px;}
.xae_c00444{left:666.750000px;}
.x108_c00444{left:669.450000px;}
.xc8_c00444{left:670.500000px;}
.xcd_c00444{left:672.300000px;}
.xa7_c00444{left:673.800000px;}
.xb7_c00444{left:674.850000px;}
.xeb_c00444{left:677.550000px;}
.x146_c00444{left:680.250000px;}
.x115_c00444{left:682.050000px;}
.x5_c00444{left:683.700000px;}
.x152_c00444{left:685.500000px;}
.xb8_c00444{left:686.700000px;}
.x110_c00444{left:688.350000px;}
.x137_c00444{left:690.000000px;}
.x13d_c00444{left:691.050000px;}
.x123_c00444{left:692.250000px;}
.xd8_c00444{left:693.600000px;}
.xec_c00444{left:694.800000px;}
.xb9_c00444{left:696.450000px;}
.xc0_c00444{left:698.850000px;}
.x6_c00444{left:700.200000px;}
.x104_c00444{left:701.550000px;}
.xaf_c00444{left:703.500000px;}
.xfd_c00444{left:705.900000px;}
.xe6_c00444{left:707.400000px;}
.xc1_c00444{left:709.650000px;}
.x133_c00444{left:710.850000px;}
.x142_c00444{left:712.800000px;}
.x10d_c00444{left:713.850000px;}
.xba_c00444{left:715.500000px;}
.x120_c00444{left:718.350000px;}
.xde_c00444{left:720.000000px;}
.x13b_c00444{left:721.350000px;}
.xa8_c00444{left:722.700000px;}
.x11d_c00444{left:725.250000px;}
.xd1_c00444{left:727.200000px;}
.x12e_c00444{left:728.550000px;}
.x12f_c00444{left:729.900000px;}
.xc2_c00444{left:731.250000px;}
.x109_c00444{left:732.750000px;}
.x11e_c00444{left:733.950000px;}
.x143_c00444{left:735.900000px;}
.xb0_c00444{left:737.700000px;}
.xc9_c00444{left:740.400000px;}
.x111_c00444{left:742.050000px;}
.xdf_c00444{left:744.150000px;}
.x11a_c00444{left:746.550000px;}
.x13e_c00444{left:749.100000px;}
.x101_c00444{left:750.450000px;}
.xa9_c00444{left:751.500000px;}
.x2_c00444{left:754.950000px;}
.xf2_c00444{left:757.350000px;}
.xb1_c00444{left:759.300000px;}
.x116_c00444{left:762.750000px;}
.x14c_c00444{left:765.000000px;}
.xe7_c00444{left:766.050000px;}
.xe0_c00444{left:767.550000px;}
.xef_c00444{left:768.750000px;}
.x105_c00444{left:769.950000px;}
.xfe_c00444{left:772.500000px;}
.x12a_c00444{left:775.200000px;}
.x14e_c00444{left:778.500000px;}
.xfa_c00444{left:779.700000px;}
.x130_c00444{left:781.800000px;}
.x153_c00444{left:817.200000px;}
.x154_c00444{left:827.700000px;}
.x155_c00444{left:847.800000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws1_c00444{word-spacing:-8.093159pt;}
.ws3_c00444{word-spacing:-7.407407pt;}
.ws5_c00444{word-spacing:-5.457364pt;}
.ws8_c00444{word-spacing:-3.472222pt;}
.ws7_c00444{word-spacing:-2.370370pt;}
.ws4_c00444{word-spacing:-1.775633pt;}
.ws6_c00444{word-spacing:-0.642502pt;}
.wsa_c00444{word-spacing:0.000000pt;}
.ws0_c00444{word-spacing:5.282378pt;}
.ws2_c00444{word-spacing:7.044128pt;}
.ws9_c00444{word-spacing:8.000000pt;}
.fs1_c00444{font-size:26.666667pt;}
.fs5_c00444{font-size:48.000000pt;}
.fs4_c00444{font-size:53.333333pt;}
.fs3_c00444{font-size:58.666667pt;}
.fs2_c00444{font-size:64.000000pt;}
.fs0_c00444{font-size:101.333333pt;}
.y0_c00444{bottom:0.000000pt;}
.y6c_c00444{bottom:144.933333pt;}
.y6b_c00444{bottom:159.466667pt;}
.y36_c00444{bottom:164.133333pt;}
.y6a_c00444{bottom:172.533333pt;}
.y35_c00444{bottom:180.800000pt;}
.y69_c00444{bottom:185.600000pt;}
.y34_c00444{bottom:196.533333pt;}
.y68_c00444{bottom:198.400000pt;}
.y67_c00444{bottom:210.933333pt;}
.y33_c00444{bottom:212.800000pt;}
.y66_c00444{bottom:224.000000pt;}
.y32_c00444{bottom:228.533333pt;}
.y65_c00444{bottom:236.800000pt;}
.y31_c00444{bottom:244.533333pt;}
.y64_c00444{bottom:249.866667pt;}
.y30_c00444{bottom:260.533333pt;}
.y63_c00444{bottom:262.666667pt;}
.y62_c00444{bottom:275.466667pt;}
.y2f_c00444{bottom:275.866667pt;}
.y61_c00444{bottom:288.533333pt;}
.y2e_c00444{bottom:296.000000pt;}
.y60_c00444{bottom:301.066667pt;}
.y2d_c00444{bottom:312.266667pt;}
.y2c_c00444{bottom:328.000000pt;}
.y5f_c00444{bottom:334.933333pt;}
.y2b_c00444{bottom:344.266667pt;}
.y5e_c00444{bottom:350.933333pt;}
.y2a_c00444{bottom:360.266667pt;}
.y5d_c00444{bottom:366.666667pt;}
.y29_c00444{bottom:376.266667pt;}
.y5c_c00444{bottom:382.666667pt;}
.y28_c00444{bottom:391.333333pt;}
.y5b_c00444{bottom:398.666667pt;}
.y27_c00444{bottom:411.200000pt;}
.y5a_c00444{bottom:414.666667pt;}
.y26_c00444{bottom:427.200000pt;}
.y59_c00444{bottom:430.400000pt;}
.y25_c00444{bottom:442.933333pt;}
.y58_c00444{bottom:448.266667pt;}
.y24_c00444{bottom:458.666667pt;}
.y57_c00444{bottom:462.400000pt;}
.y23_c00444{bottom:474.933333pt;}
.y56_c00444{bottom:478.666667pt;}
.y22_c00444{bottom:490.933333pt;}
.y55_c00444{bottom:494.400000pt;}
.y21_c00444{bottom:506.800000pt;}
.y54_c00444{bottom:510.666667pt;}
.y20_c00444{bottom:522.533333pt;}
.y53_c00444{bottom:526.400000pt;}
.y1f_c00444{bottom:538.533333pt;}
.y52_c00444{bottom:542.400000pt;}
.y1e_c00444{bottom:554.800000pt;}
.y51_c00444{bottom:560.266667pt;}
.y1d_c00444{bottom:570.800000pt;}
.y50_c00444{bottom:574.400000pt;}
.y1c_c00444{bottom:586.533333pt;}
.y4f_c00444{bottom:590.400000pt;}
.y1b_c00444{bottom:605.866667pt;}
.y4e_c00444{bottom:606.133333pt;}
.y1a_c00444{bottom:621.600000pt;}
.y4d_c00444{bottom:622.133333pt;}
.y19_c00444{bottom:637.600000pt;}
.y4c_c00444{bottom:638.133333pt;}
.y18_c00444{bottom:653.600000pt;}
.y4b_c00444{bottom:657.866667pt;}
.y17_c00444{bottom:669.333333pt;}
.y4a_c00444{bottom:673.600000pt;}
.y16_c00444{bottom:685.066667pt;}
.y49_c00444{bottom:689.600000pt;}
.y15_c00444{bottom:701.066667pt;}
.y48_c00444{bottom:705.866667pt;}
.y14_c00444{bottom:717.066667pt;}
.y47_c00444{bottom:721.600000pt;}
.y13_c00444{bottom:733.066667pt;}
.y46_c00444{bottom:737.600000pt;}
.y12_c00444{bottom:749.066667pt;}
.y45_c00444{bottom:753.600000pt;}
.y11_c00444{bottom:765.066667pt;}
.y44_c00444{bottom:769.600000pt;}
.y10_c00444{bottom:781.066667pt;}
.y43_c00444{bottom:785.600000pt;}
.yf_c00444{bottom:797.066667pt;}
.y42_c00444{bottom:801.333333pt;}
.ye_c00444{bottom:813.066667pt;}
.y41_c00444{bottom:817.333333pt;}
.yd_c00444{bottom:832.666667pt;}
.y40_c00444{bottom:833.333333pt;}
.yc_c00444{bottom:848.666667pt;}
.y3f_c00444{bottom:849.333333pt;}
.yb_c00444{bottom:864.933333pt;}
.ya_c00444{bottom:880.933333pt;}
.y3e_c00444{bottom:881.200000pt;}
.y9_c00444{bottom:896.933333pt;}
.y3d_c00444{bottom:897.200000pt;}
.y8_c00444{bottom:912.666667pt;}
.y3c_c00444{bottom:913.200000pt;}
.y7_c00444{bottom:928.666667pt;}
.y3b_c00444{bottom:929.200000pt;}
.y6_c00444{bottom:944.666667pt;}
.y3a_c00444{bottom:944.933333pt;}
.y5_c00444{bottom:960.666667pt;}
.y39_c00444{bottom:961.333333pt;}
.y4_c00444{bottom:976.666667pt;}
.y38_c00444{bottom:977.600000pt;}
.y3_c00444{bottom:992.666667pt;}
.y37_c00444{bottom:993.333333pt;}
.y1_c00444{bottom:1016.666667pt;}
.y6d_c00444{bottom:1127.733333pt;}
.y2_c00444{bottom:1128.266667pt;}
.h3_c00444{height:26.666667pt;}
.h7_c00444{height:48.000000pt;}
.h6_c00444{height:53.333333pt;}
.h5_c00444{height:58.666667pt;}
.h4_c00444{height:64.000000pt;}
.h2_c00444{height:101.333333pt;}
.h1_c00444{height:1129.333333pt;}
.h0_c00444{height:1129.599935pt;}
.w0_c00444{width:851.840007pt;}
.w1_c00444{width:852.000000pt;}
.x0_c00444{left:0.000000pt;}
.xe_c00444{left:92.533333pt;}
.x7_c00444{left:93.466667pt;}
.x4e_c00444{left:94.400000pt;}
.x77_c00444{left:95.600000pt;}
.x7e_c00444{left:96.666667pt;}
.x9e_c00444{left:98.933333pt;}
.x2e_c00444{left:110.133333pt;}
.x86_c00444{left:111.200000pt;}
.x80_c00444{left:112.266667pt;}
.x91_c00444{left:113.866667pt;}
.xa0_c00444{left:115.466667pt;}
.x38_c00444{left:118.266667pt;}
.x28_c00444{left:120.666667pt;}
.x45_c00444{left:122.533333pt;}
.x84_c00444{left:123.466667pt;}
.x64_c00444{left:125.733333pt;}
.x20_c00444{left:126.933333pt;}
.x59_c00444{left:128.266667pt;}
.x54_c00444{left:129.733333pt;}
.x99_c00444{left:131.200000pt;}
.x6f_c00444{left:132.133333pt;}
.x1b_c00444{left:133.200000pt;}
.xf_c00444{left:136.666667pt;}
.x8c_c00444{left:137.600000pt;}
.x34_c00444{left:138.933333pt;}
.x1c_c00444{left:141.466667pt;}
.x5a_c00444{left:142.666667pt;}
.xa1_c00444{left:144.533333pt;}
.x65_c00444{left:145.600000pt;}
.x4f_c00444{left:146.533333pt;}
.x8_c00444{left:148.133333pt;}
.x21_c00444{left:149.333333pt;}
.x8a_c00444{left:150.666667pt;}
.x10_c00444{left:152.000000pt;}
.x66_c00444{left:154.266667pt;}
.x78_c00444{left:155.466667pt;}
.x29_c00444{left:158.800000pt;}
.x9a_c00444{left:162.266667pt;}
.x60_c00444{left:164.133333pt;}
.x48_c00444{left:165.066667pt;}
.x68_c00444{left:166.400000pt;}
.x70_c00444{left:167.333333pt;}
.x22_c00444{left:168.800000pt;}
.x39_c00444{left:170.800000pt;}
.x16_c00444{left:173.200000pt;}
.x2f_c00444{left:175.066667pt;}
.x9b_c00444{left:176.666667pt;}
.x55_c00444{left:178.400000pt;}
.x9f_c00444{left:180.533333pt;}
.x17_c00444{left:182.133333pt;}
.x6c_c00444{left:183.466667pt;}
.x69_c00444{left:184.933333pt;}
.x61_c00444{left:187.333333pt;}
.x3a_c00444{left:188.666667pt;}
.x73_c00444{left:189.866667pt;}
.x40_c00444{left:190.800000pt;}
.x5b_c00444{left:192.266667pt;}
.x46_c00444{left:193.600000pt;}
.x2a_c00444{left:194.666667pt;}
.x79_c00444{left:197.066667pt;}
.x92_c00444{left:198.000000pt;}
.x11_c00444{left:201.333333pt;}
.x67_c00444{left:203.866667pt;}
.x1d_c00444{left:206.133333pt;}
.x74_c00444{left:207.733333pt;}
.x56_c00444{left:209.733333pt;}
.x47_c00444{left:210.933333pt;}
.x9_c00444{left:213.066667pt;}
.x23_c00444{left:214.533333pt;}
.x93_c00444{left:215.466667pt;}
.x7c_c00444{left:216.533333pt;}
.x62_c00444{left:217.466667pt;}
.x18_c00444{left:218.933333pt;}
.x12_c00444{left:219.866667pt;}
.x3b_c00444{left:221.600000pt;}
.x81_c00444{left:222.533333pt;}
.x7a_c00444{left:228.133333pt;}
.x4b_c00444{left:229.733333pt;}
.x30_c00444{left:233.333333pt;}
.x49_c00444{left:234.800000pt;}
.x5c_c00444{left:237.733333pt;}
.x82_c00444{left:240.133333pt;}
.x6d_c00444{left:241.066667pt;}
.x2b_c00444{left:242.400000pt;}
.x94_c00444{left:243.333333pt;}
.x8b_c00444{left:244.533333pt;}
.x41_c00444{left:245.600000pt;}
.x87_c00444{left:246.933333pt;}
.x31_c00444{left:248.400000pt;}
.xa_c00444{left:249.600000pt;}
.x3c_c00444{left:250.666667pt;}
.x2c_c00444{left:252.666667pt;}
.x57_c00444{left:254.533333pt;}
.x5d_c00444{left:255.600000pt;}
.x50_c00444{left:258.400000pt;}
.x6a_c00444{left:261.733333pt;}
.x42_c00444{left:263.466667pt;}
.x8d_c00444{left:264.933333pt;}
.x83_c00444{left:266.000000pt;}
.x35_c00444{left:268.266667pt;}
.x24_c00444{left:270.533333pt;}
.x7b_c00444{left:272.666667pt;}
.xb_c00444{left:273.600000pt;}
.x19_c00444{left:275.600000pt;}
.x13_c00444{left:278.133333pt;}
.x8e_c00444{left:279.066667pt;}
.x71_c00444{left:280.000000pt;}
.x90_c00444{left:281.200000pt;}
.x6b_c00444{left:284.400000pt;}
.x88_c00444{left:285.466667pt;}
.x96_c00444{left:286.533333pt;}
.x25_c00444{left:288.133333pt;}
.x43_c00444{left:289.066667pt;}
.x4c_c00444{left:290.000000pt;}
.x2d_c00444{left:292.400000pt;}
.x1_c00444{left:294.133333pt;}
.x14_c00444{left:296.000000pt;}
.x72_c00444{left:300.133333pt;}
.x7f_c00444{left:301.733333pt;}
.x1e_c00444{left:303.200000pt;}
.x51_c00444{left:304.133333pt;}
.x5e_c00444{left:305.866667pt;}
.x63_c00444{left:307.466667pt;}
.x3d_c00444{left:309.466667pt;}
.x58_c00444{left:310.800000pt;}
.x52_c00444{left:313.066667pt;}
.xc_c00444{left:314.266667pt;}
.x89_c00444{left:315.466667pt;}
.x75_c00444{left:317.066667pt;}
.x1a_c00444{left:319.066667pt;}
.x36_c00444{left:320.800000pt;}
.x97_c00444{left:322.000000pt;}
.x32_c00444{left:323.600000pt;}
.x44_c00444{left:325.200000pt;}
.xd_c00444{left:327.066667pt;}
.x26_c00444{left:330.666667pt;}
.x53_c00444{left:331.600000pt;}
.x37_c00444{left:333.333333pt;}
.x15_c00444{left:335.733333pt;}
.x4a_c00444{left:337.466667pt;}
.x3e_c00444{left:340.533333pt;}
.x7d_c00444{left:341.466667pt;}
.x95_c00444{left:342.800000pt;}
.x4d_c00444{left:344.666667pt;}
.x27_c00444{left:346.000000pt;}
.x9c_c00444{left:346.933333pt;}
.x33_c00444{left:348.266667pt;}
.x85_c00444{left:351.333333pt;}
.x76_c00444{left:352.533333pt;}
.x1f_c00444{left:355.333333pt;}
.x98_c00444{left:357.200000pt;}
.x5f_c00444{left:358.400000pt;}
.x9d_c00444{left:359.733333pt;}
.x6e_c00444{left:363.200000pt;}
.x3f_c00444{left:366.400000pt;}
.x8f_c00444{left:375.733333pt;}
.x106_c00444{left:398.133333pt;}
.x13f_c00444{left:399.066667pt;}
.x147_c00444{left:400.533333pt;}
.x14f_c00444{left:401.733333pt;}
.xa2_c00444{left:411.200000pt;}
.xf3_c00444{left:412.133333pt;}
.xf7_c00444{left:413.066667pt;}
.x10e_c00444{left:414.000000pt;}
.x124_c00444{left:415.600000pt;}
.x144_c00444{left:419.333333pt;}
.x148_c00444{left:421.066667pt;}
.x13c_c00444{left:422.666667pt;}
.x140_c00444{left:423.733333pt;}
.xb2_c00444{left:426.933333pt;}
.xd5_c00444{left:428.133333pt;}
.x102_c00444{left:430.400000pt;}
.x121_c00444{left:431.466667pt;}
.x138_c00444{left:434.133333pt;}
.x141_c00444{left:435.200000pt;}
.xd9_c00444{left:437.733333pt;}
.xc3_c00444{left:440.400000pt;}
.xf4_c00444{left:442.533333pt;}
.x117_c00444{left:444.133333pt;}
.xf8_c00444{left:446.666667pt;}
.xaa_c00444{left:447.733333pt;}
.xe1_c00444{left:449.066667pt;}
.x107_c00444{left:450.666667pt;}
.x149_c00444{left:451.733333pt;}
.xda_c00444{left:452.800000pt;}
.xa3_c00444{left:454.666667pt;}
.xf0_c00444{left:456.400000pt;}
.xb3_c00444{left:458.666667pt;}
.xd2_c00444{left:460.133333pt;}
.xbb_c00444{left:461.866667pt;}
.xa4_c00444{left:463.333333pt;}
.xe8_c00444{left:464.266667pt;}
.x11b_c00444{left:466.133333pt;}
.xd6_c00444{left:467.466667pt;}
.xca_c00444{left:468.666667pt;}
.x125_c00444{left:469.733333pt;}
.x103_c00444{left:471.066667pt;}
.xfb_c00444{left:472.533333pt;}
.x134_c00444{left:473.733333pt;}
.x12b_c00444{left:474.666667pt;}
.xce_c00444{left:478.266667pt;}
.x127_c00444{left:479.200000pt;}
.xc4_c00444{left:480.400000pt;}
.x113_c00444{left:481.466667pt;}
.xe2_c00444{left:484.533333pt;}
.xdb_c00444{left:486.133333pt;}
.xab_c00444{left:488.400000pt;}
.x131_c00444{left:490.133333pt;}
.xd3_c00444{left:492.133333pt;}
.xb4_c00444{left:493.866667pt;}
.x128_c00444{left:495.200000pt;}
.xac_c00444{left:496.133333pt;}
.x139_c00444{left:497.200000pt;}
.xed_c00444{left:498.533333pt;}
.x112_c00444{left:499.600000pt;}
.xbc_c00444{left:501.600000pt;}
.x14a_c00444{left:502.533333pt;}
.xd7_c00444{left:504.933333pt;}
.x150_c00444{left:506.133333pt;}
.x135_c00444{left:507.066667pt;}
.xf5_c00444{left:508.133333pt;}
.xcb_c00444{left:510.533333pt;}
.xb5_c00444{left:512.400000pt;}
.x10a_c00444{left:513.866667pt;}
.x3_c00444{left:515.466667pt;}
.x122_c00444{left:516.666667pt;}
.x118_c00444{left:518.000000pt;}
.xbd_c00444{left:518.933333pt;}
.xa5_c00444{left:520.266667pt;}
.x14d_c00444{left:521.200000pt;}
.xd4_c00444{left:522.800000pt;}
.x12c_c00444{left:524.533333pt;}
.xb6_c00444{left:526.000000pt;}
.x11c_c00444{left:528.533333pt;}
.xc5_c00444{left:529.733333pt;}
.x4_c00444{left:531.200000pt;}
.xe3_c00444{left:532.800000pt;}
.xff_c00444{left:533.866667pt;}
.x10b_c00444{left:534.933333pt;}
.xcf_c00444{left:538.800000pt;}
.x132_c00444{left:539.733333pt;}
.xf1_c00444{left:540.666667pt;}
.x10f_c00444{left:544.000000pt;}
.xa6_c00444{left:545.866667pt;}
.x114_c00444{left:547.733333pt;}
.xc6_c00444{left:548.933333pt;}
.xe4_c00444{left:550.666667pt;}
.x10c_c00444{left:551.866667pt;}
.xe9_c00444{left:553.333333pt;}
.x145_c00444{left:555.333333pt;}
.xdc_c00444{left:556.533333pt;}
.x129_c00444{left:557.866667pt;}
.xbe_c00444{left:559.200000pt;}
.xcc_c00444{left:560.133333pt;}
.xf6_c00444{left:561.866667pt;}
.x11f_c00444{left:563.733333pt;}
.x100_c00444{left:566.533333pt;}
.xee_c00444{left:567.600000pt;}
.xe5_c00444{left:568.933333pt;}
.xd0_c00444{left:570.533333pt;}
.xea_c00444{left:573.466667pt;}
.x14b_c00444{left:574.800000pt;}
.x119_c00444{left:575.866667pt;}
.x12d_c00444{left:576.800000pt;}
.xfc_c00444{left:578.400000pt;}
.x136_c00444{left:580.400000pt;}
.xad_c00444{left:582.800000pt;}
.xc7_c00444{left:583.866667pt;}
.x13a_c00444{left:585.200000pt;}
.xdd_c00444{left:586.933333pt;}
.x151_c00444{left:588.133333pt;}
.xf9_c00444{left:589.066667pt;}
.x126_c00444{left:590.000000pt;}
.xbf_c00444{left:591.466667pt;}
.xae_c00444{left:592.666667pt;}
.x108_c00444{left:595.066667pt;}
.xc8_c00444{left:596.000000pt;}
.xcd_c00444{left:597.600000pt;}
.xa7_c00444{left:598.933333pt;}
.xb7_c00444{left:599.866667pt;}
.xeb_c00444{left:602.266667pt;}
.x146_c00444{left:604.666667pt;}
.x115_c00444{left:606.266667pt;}
.x5_c00444{left:607.733333pt;}
.x152_c00444{left:609.333333pt;}
.xb8_c00444{left:610.400000pt;}
.x110_c00444{left:611.866667pt;}
.x137_c00444{left:613.333333pt;}
.x13d_c00444{left:614.266667pt;}
.x123_c00444{left:615.333333pt;}
.xd8_c00444{left:616.533333pt;}
.xec_c00444{left:617.600000pt;}
.xb9_c00444{left:619.066667pt;}
.xc0_c00444{left:621.200000pt;}
.x6_c00444{left:622.400000pt;}
.x104_c00444{left:623.600000pt;}
.xaf_c00444{left:625.333333pt;}
.xfd_c00444{left:627.466667pt;}
.xe6_c00444{left:628.800000pt;}
.xc1_c00444{left:630.800000pt;}
.x133_c00444{left:631.866667pt;}
.x142_c00444{left:633.600000pt;}
.x10d_c00444{left:634.533333pt;}
.xba_c00444{left:636.000000pt;}
.x120_c00444{left:638.533333pt;}
.xde_c00444{left:640.000000pt;}
.x13b_c00444{left:641.200000pt;}
.xa8_c00444{left:642.400000pt;}
.x11d_c00444{left:644.666667pt;}
.xd1_c00444{left:646.400000pt;}
.x12e_c00444{left:647.600000pt;}
.x12f_c00444{left:648.800000pt;}
.xc2_c00444{left:650.000000pt;}
.x109_c00444{left:651.333333pt;}
.x11e_c00444{left:652.400000pt;}
.x143_c00444{left:654.133333pt;}
.xb0_c00444{left:655.733333pt;}
.xc9_c00444{left:658.133333pt;}
.x111_c00444{left:659.600000pt;}
.xdf_c00444{left:661.466667pt;}
.x11a_c00444{left:663.600000pt;}
.x13e_c00444{left:665.866667pt;}
.x101_c00444{left:667.066667pt;}
.xa9_c00444{left:668.000000pt;}
.x2_c00444{left:671.066667pt;}
.xf2_c00444{left:673.200000pt;}
.xb1_c00444{left:674.933333pt;}
.x116_c00444{left:678.000000pt;}
.x14c_c00444{left:680.000000pt;}
.xe7_c00444{left:680.933333pt;}
.xe0_c00444{left:682.266667pt;}
.xef_c00444{left:683.333333pt;}
.x105_c00444{left:684.400000pt;}
.xfe_c00444{left:686.666667pt;}
.x12a_c00444{left:689.066667pt;}
.x14e_c00444{left:692.000000pt;}
.xfa_c00444{left:693.066667pt;}
.x130_c00444{left:694.933333pt;}
.x153_c00444{left:726.400000pt;}
.x154_c00444{left:735.733333pt;}
.x155_c00444{left:753.600000pt;}
}





/* 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_c00445 {
    display:none;
  }
  .loading-indicator_c00445.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00445 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_c00445 { 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_c00445" -> "#page-container .classname_c00445")
 */
.pf_c00445 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00445 { /* 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_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00445 { /* 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_c00445 { /* 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_c00445 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00445 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00445 {overflow:visible;}
  }
}
.c_c00445 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00445 { /* 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_c00445:after { /* webkit #35443 */
  content: '';
}
.t_c00445:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00445 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 */
}
.__c00445 { /* 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_c00445 { /* info for Javascript */
  display:none;
}
.l_c00445 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00445 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00445 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00445: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_c00445 {
    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_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00445.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_c00445 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00445;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.000000;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;}
.m11a_c00445{transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00445{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00445{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00445{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00445{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00445{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m110_c00445{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m105_c00445{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m104_c00445{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00445{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m76_c00445{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md7_c00445{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md_c00445{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m11_c00445{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m78_c00445{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m84_c00445{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00445{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.me4_c00445{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m85_c00445{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m107_c00445{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m63_c00445{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.maf_c00445{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m12_c00445{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md9_c00445{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00445{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00445{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5_c00445{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mea_c00445{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00445{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00445{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mce_c00445{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m93_c00445{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m41_c00445{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00445{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00445{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m4_c00445{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m114_c00445{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m66_c00445{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf_c00445{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m112_c00445{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mab_c00445{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00445{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00445{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m88_c00445{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m38_c00445{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m22_c00445{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m55_c00445{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m45_c00445{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00445{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m99_c00445{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00445{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m44_c00445{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00445{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00445{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6_c00445{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00445{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00445{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m37_c00445{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00445{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m101_c00445{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00445{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m33_c00445{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m62_c00445{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m87_c00445{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00445{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m28_c00445{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m51_c00445{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00445{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00445{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00445{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m16_c00445{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00445{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00445{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m31_c00445{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.md0_c00445{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00445{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m26_c00445{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00445{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00445{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me_c00445{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00445{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00445{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m48_c00445{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m20_c00445{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m61_c00445{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2_c00445{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00445{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m56_c00445{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m95_c00445{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00445{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m60_c00445{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m42_c00445{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00445{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m57_c00445{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m40_c00445{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00445{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m65_c00445{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc_c00445{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.me2_c00445{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md2_c00445{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00445{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00445{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m71_c00445{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mca_c00445{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00445{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me8_c00445{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m106_c00445{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m24_c00445{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m74_c00445{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m7_c00445{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m21_c00445{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00445{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m17_c00445{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m100_c00445{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00445{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m30_c00445{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00445{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00445{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m54_c00445{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m102_c00445{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m36_c00445{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md6_c00445{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m52_c00445{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m14_c00445{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m49_c00445{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00445{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m18_c00445{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m59_c00445{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m53_c00445{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m34_c00445{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00445{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m10_c00445{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m79_c00445{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m113_c00445{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00445{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00445{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m118_c00445{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00445{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m81_c00445{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m91_c00445{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00445{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m70_c00445{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mec_c00445{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m25_c00445{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00445{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m29_c00445{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00445{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00445{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m39_c00445{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00445{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00445{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00445{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m117_c00445{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00445{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m82_c00445{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m97_c00445{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00445{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m19_c00445{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00445{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00445{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m47_c00445{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00445{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m68_c00445{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00445{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8_c00445{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00445{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00445{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00445{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00445{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m90_c00445{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m111_c00445{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00445{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m69_c00445{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mef_c00445{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m58_c00445{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m108_c00445{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00445{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m46_c00445{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m109_c00445{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00445{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m13_c00445{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me0_c00445{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m72_c00445{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00445{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00445{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9_c00445{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mba_c00445{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.med_c00445{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00445{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00445{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00445{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m89_c00445{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m73_c00445{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00445{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m119_c00445{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m75_c00445{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.mb_c00445{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.meb_c00445{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mee_c00445{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m116_c00445{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00445{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.md4_c00445{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.me9_c00445{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00445{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00445{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00445{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m50_c00445{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00445{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md1_c00445{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00445{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m15_c00445{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00445{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00445{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.maa_c00445{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m43_c00445{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00445{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m35_c00445{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m98_c00445{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m115_c00445{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00445{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00445{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00445{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m67_c00445{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m27_c00445{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00445{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m23_c00445{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00445{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00445{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m64_c00445{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mda_c00445{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00445{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00445{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me1_c00445{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma_c00445{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00445{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m96_c00445{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mad_c00445{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m83_c00445{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00445{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00445{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me6_c00445{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00445{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mff_c00445{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me7_c00445{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.me3_c00445{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00445{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00445{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m86_c00445{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00445{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00445{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00445{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00445{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m0_c00445{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.md5_c00445{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00445{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00445{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00445{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00445{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00445{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00445{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00445{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.md8_c00445{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m80_c00445{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mde_c00445{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m32_c00445{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00445{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00445{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m77_c00445{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m103_c00445{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00445{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mac_c00445{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00445{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m92_c00445{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m94_c00445{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mae_c00445{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00445{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00445{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00445{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00445{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.md3_c00445{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me5_c00445{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00445{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m1_c00445{transform:matrix(0.399500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399500,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls0_c00445{letter-spacing:0.000000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{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__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00445{word-spacing:-8.217765px;}
.ws6_c00445{word-spacing:-8.051672px;}
.ws9_c00445{word-spacing:-6.578947px;}
.wsa_c00445{word-spacing:0.000000px;}
.ws4_c00445{word-spacing:1.689956px;}
.ws2_c00445{word-spacing:3.774194px;}
.ws0_c00445{word-spacing:4.308057px;}
.ws8_c00445{word-spacing:5.431034px;}
.ws3_c00445{word-spacing:6.204188px;}
.ws5_c00445{word-spacing:8.410133px;}
.ws7_c00445{word-spacing:10.000000px;}
._1_c00445{width:27.768997px;}
._0_c00445{width:37.493450px;}
.fc0_c00445{color:transparent;}
.fs6_c00445{font-size:54.000000px;}
.fs3_c00445{font-size:60.000000px;}
.fs2_c00445{font-size:66.000000px;}
.fs0_c00445{font-size:72.000000px;}
.fs1_c00445{font-size:84.000000px;}
.fs5_c00445{font-size:108.000000px;}
.fs4_c00445{font-size:120.000000px;}
.y0_c00445{bottom:0.000000px;}
.y67_c00445{bottom:183.300000px;}
.y36_c00445{bottom:185.100000px;}
.y66_c00445{bottom:198.000000px;}
.y35_c00445{bottom:199.500000px;}
.y65_c00445{bottom:212.700000px;}
.y64_c00445{bottom:227.100000px;}
.y34_c00445{bottom:236.850000px;}
.y63_c00445{bottom:239.550000px;}
.y33_c00445{bottom:254.100000px;}
.y62_c00445{bottom:256.050000px;}
.y61_c00445{bottom:270.450000px;}
.y32_c00445{bottom:271.800000px;}
.y60_c00445{bottom:284.850000px;}
.y31_c00445{bottom:289.800000px;}
.y5f_c00445{bottom:299.250000px;}
.y30_c00445{bottom:307.500000px;}
.y5e_c00445{bottom:313.350000px;}
.y5d_c00445{bottom:327.750000px;}
.y2f_c00445{bottom:329.850000px;}
.y5c_c00445{bottom:341.400000px;}
.y2e_c00445{bottom:347.850000px;}
.y5b_c00445{bottom:355.800000px;}
.y2d_c00445{bottom:364.800000px;}
.y5a_c00445{bottom:370.500000px;}
.y2c_c00445{bottom:382.500000px;}
.y59_c00445{bottom:385.200000px;}
.y58_c00445{bottom:399.300000px;}
.y2b_c00445{bottom:399.750000px;}
.y57_c00445{bottom:413.700000px;}
.y2a_c00445{bottom:418.050000px;}
.y56_c00445{bottom:428.400000px;}
.y29_c00445{bottom:436.050000px;}
.y55_c00445{bottom:442.950000px;}
.y28_c00445{bottom:453.750000px;}
.y54_c00445{bottom:457.650000px;}
.y27_c00445{bottom:472.050000px;}
.y53_c00445{bottom:486.450000px;}
.y26_c00445{bottom:490.050000px;}
.y52_c00445{bottom:500.850000px;}
.y25_c00445{bottom:508.350000px;}
.y51_c00445{bottom:515.550000px;}
.y24_c00445{bottom:525.600000px;}
.y23_c00445{bottom:543.600000px;}
.y22_c00445{bottom:561.900000px;}
.y50_c00445{bottom:562.200000px;}
.y21_c00445{bottom:579.900000px;}
.y20_c00445{bottom:597.900000px;}
.y4f_c00445{bottom:602.250000px;}
.y1f_c00445{bottom:615.600000px;}
.y4e_c00445{bottom:624.600000px;}
.y1e_c00445{bottom:633.600000px;}
.y4d_c00445{bottom:642.600000px;}
.y1d_c00445{bottom:651.600000px;}
.y4c_c00445{bottom:660.600000px;}
.y1c_c00445{bottom:669.300000px;}
.y4b_c00445{bottom:683.250000px;}
.y1b_c00445{bottom:687.300000px;}
.y4a_c00445{bottom:701.250000px;}
.y1a_c00445{bottom:705.300000px;}
.y19_c00445{bottom:723.300000px;}
.y18_c00445{bottom:741.300000px;}
.y49_c00445{bottom:741.600000px;}
.y17_c00445{bottom:759.000000px;}
.y48_c00445{bottom:759.300000px;}
.y16_c00445{bottom:777.000000px;}
.y47_c00445{bottom:777.300000px;}
.y15_c00445{bottom:795.000000px;}
.y46_c00445{bottom:799.500000px;}
.y14_c00445{bottom:812.700000px;}
.y45_c00445{bottom:822.300000px;}
.y13_c00445{bottom:830.700000px;}
.y44_c00445{bottom:841.050000px;}
.y12_c00445{bottom:848.700000px;}
.y43_c00445{bottom:858.300000px;}
.y11_c00445{bottom:866.700000px;}
.y42_c00445{bottom:876.300000px;}
.y10_c00445{bottom:884.700000px;}
.y41_c00445{bottom:894.300000px;}
.yf_c00445{bottom:902.700000px;}
.y40_c00445{bottom:916.500000px;}
.ye_c00445{bottom:920.700000px;}
.y3f_c00445{bottom:934.800000px;}
.yd_c00445{bottom:938.400000px;}
.y3e_c00445{bottom:952.500000px;}
.yc_c00445{bottom:956.400000px;}
.y3d_c00445{bottom:970.500000px;}
.yb_c00445{bottom:974.400000px;}
.y3c_c00445{bottom:988.500000px;}
.ya_c00445{bottom:992.400000px;}
.y3b_c00445{bottom:1006.200000px;}
.y9_c00445{bottom:1010.400000px;}
.y8_c00445{bottom:1028.400000px;}
.y3a_c00445{bottom:1028.550000px;}
.y7_c00445{bottom:1046.100000px;}
.y39_c00445{bottom:1046.550000px;}
.y6_c00445{bottom:1064.100000px;}
.y38_c00445{bottom:1077.900000px;}
.y5_c00445{bottom:1082.100000px;}
.y4_c00445{bottom:1100.100000px;}
.y3_c00445{bottom:1118.100000px;}
.y37_c00445{bottom:1140.150000px;}
.y1_c00445{bottom:1143.300000px;}
.y2_c00445{bottom:1144.350000px;}
.h7_c00445{height:54.000000px;}
.h4_c00445{height:60.000000px;}
.h3_c00445{height:66.000000px;}
.h1_c00445{height:72.000000px;}
.h2_c00445{height:84.000000px;}
.h6_c00445{height:108.000000px;}
.h5_c00445{height:120.000000px;}
.h0_c00445{height:1269.000000px;}
.w0_c00445{width:958.320007px;}
.w1_c00445{width:958.500000px;}
.x0_c00445{left:0.000000px;}
.xa6_c00445{left:170.250000px;}
.x9b_c00445{left:173.550000px;}
.x1_c00445{left:178.950000px;}
.xa4_c00445{left:186.150000px;}
.x7f_c00445{left:190.800000px;}
.x78_c00445{left:191.850000px;}
.x6e_c00445{left:193.200000px;}
.x69_c00445{left:194.550000px;}
.x4c_c00445{left:196.050000px;}
.x3_c00445{left:198.000000px;}
.xa_c00445{left:199.200000px;}
.x79_c00445{left:209.100000px;}
.x6a_c00445{left:211.500000px;}
.x14_c00445{left:215.250000px;}
.x5b_c00445{left:216.900000px;}
.x56_c00445{left:219.900000px;}
.x43_c00445{left:222.300000px;}
.x34_c00445{left:225.750000px;}
.x3b_c00445{left:226.950000px;}
.x96_c00445{left:228.000000px;}
.xb_c00445{left:229.050000px;}
.x2a_c00445{left:232.350000px;}
.x4_c00445{left:234.300000px;}
.x5c_c00445{left:235.950000px;}
.x15_c00445{left:237.150000px;}
.x7a_c00445{left:238.200000px;}
.x35_c00445{left:240.150000px;}
.x22_c00445{left:241.200000px;}
.xa5_c00445{left:243.300000px;}
.x92_c00445{left:245.250000px;}
.x8d_c00445{left:246.600000px;}
.x1d_c00445{left:249.450000px;}
.x73_c00445{left:250.950000px;}
.x98_c00445{left:252.300000px;}
.x2f_c00445{left:254.250000px;}
.x5d_c00445{left:257.550000px;}
.xa2_c00445{left:260.700000px;}
.x36_c00445{left:261.750000px;}
.x64_c00445{left:263.250000px;}
.x8f_c00445{left:264.300000px;}
.x87_c00445{left:266.100000px;}
.x3c_c00445{left:267.300000px;}
.x23_c00445{left:270.300000px;}
.x48_c00445{left:272.100000px;}
.x7d_c00445{left:274.350000px;}
.x16_c00445{left:277.500000px;}
.x37_c00445{left:279.450000px;}
.x84_c00445{left:280.500000px;}
.x1e_c00445{left:281.850000px;}
.x6f_c00445{left:282.900000px;}
.x65_c00445{left:287.400000px;}
.x3d_c00445{left:289.950000px;}
.x89_c00445{left:291.450000px;}
.xc_c00445{left:293.550000px;}
.x2b_c00445{left:294.600000px;}
.x53_c00445{left:298.500000px;}
.x80_c00445{left:300.900000px;}
.x30_c00445{left:302.100000px;}
.x17_c00445{left:306.600000px;}
.x7c_c00445{left:308.100000px;}
.x24_c00445{left:313.200000px;}
.x40_c00445{left:315.900000px;}
.x83_c00445{left:317.100000px;}
.x90_c00445{left:320.100000px;}
.x5e_c00445{left:322.050000px;}
.x8e_c00445{left:323.700000px;}
.x94_c00445{left:325.050000px;}
.x97_c00445{left:326.250000px;}
.x18_c00445{left:328.500000px;}
.x57_c00445{left:331.050000px;}
.x5_c00445{left:333.000000px;}
.x91_c00445{left:334.050000px;}
.x44_c00445{left:335.400000px;}
.x93_c00445{left:337.200000px;}
.x31_c00445{left:340.650000px;}
.x8a_c00445{left:341.850000px;}
.x9e_c00445{left:343.050000px;}
.x49_c00445{left:344.400000px;}
.x4d_c00445{left:345.600000px;}
.x81_c00445{left:348.000000px;}
.x85_c00445{left:349.950000px;}
.x5f_c00445{left:351.900000px;}
.x66_c00445{left:355.050000px;}
.x6_c00445{left:356.100000px;}
.x70_c00445{left:357.150000px;}
.x19_c00445{left:358.800000px;}
.x9a_c00445{left:360.600000px;}
.xd_c00445{left:361.650000px;}
.x58_c00445{left:362.700000px;}
.x7b_c00445{left:364.800000px;}
.x7e_c00445{left:365.850000px;}
.x4e_c00445{left:367.950000px;}
.xe_c00445{left:369.150000px;}
.x41_c00445{left:370.650000px;}
.x1f_c00445{left:372.600000px;}
.xa3_c00445{left:376.200000px;}
.x2c_c00445{left:377.400000px;}
.x54_c00445{left:378.750000px;}
.xf_c00445{left:379.950000px;}
.x38_c00445{left:381.750000px;}
.x45_c00445{left:382.950000px;}
.x7_c00445{left:384.600000px;}
.x67_c00445{left:385.650000px;}
.x6b_c00445{left:390.450000px;}
.x4f_c00445{left:392.400000px;}
.x25_c00445{left:397.050000px;}
.x3e_c00445{left:398.700000px;}
.x50_c00445{left:402.150000px;}
.x9c_c00445{left:403.200000px;}
.x74_c00445{left:405.300000px;}
.x26_c00445{left:407.550000px;}
.x4a_c00445{left:409.500000px;}
.x2_c00445{left:410.850000px;}
.x10_c00445{left:412.050000px;}
.x20_c00445{left:413.700000px;}
.x2d_c00445{left:415.500000px;}
.x55_c00445{left:417.300000px;}
.x6c_c00445{left:418.500000px;}
.x39_c00445{left:419.850000px;}
.x82_c00445{left:421.500000px;}
.x51_c00445{left:422.700000px;}
.xa0_c00445{left:424.500000px;}
.x42_c00445{left:425.700000px;}
.x32_c00445{left:427.050000px;}
.x27_c00445{left:429.450000px;}
.x1a_c00445{left:430.500000px;}
.x11_c00445{left:431.850000px;}
.x71_c00445{left:433.800000px;}
.x88_c00445{left:437.400000px;}
.x21_c00445{left:439.200000px;}
.x72_c00445{left:441.300000px;}
.x62_c00445{left:443.250000px;}
.xa1_c00445{left:445.050000px;}
.x95_c00445{left:446.550000px;}
.x8b_c00445{left:447.900000px;}
.x59_c00445{left:449.100000px;}
.x28_c00445{left:450.300000px;}
.x75_c00445{left:453.150000px;}
.x60_c00445{left:454.350000px;}
.x46_c00445{left:455.400000px;}
.x3f_c00445{left:457.350000px;}
.x76_c00445{left:458.850000px;}
.x52_c00445{left:460.800000px;}
.x1b_c00445{left:462.900000px;}
.x8_c00445{left:465.600000px;}
.x33_c00445{left:467.700000px;}
.x5a_c00445{left:469.950000px;}
.x4b_c00445{left:471.750000px;}
.x77_c00445{left:474.750000px;}
.x12_c00445{left:477.600000px;}
.x3a_c00445{left:480.000000px;}
.x29_c00445{left:481.200000px;}
.x61_c00445{left:483.900000px;}
.x86_c00445{left:485.550000px;}
.x9_c00445{left:486.900000px;}
.x1c_c00445{left:488.100000px;}
.x6d_c00445{left:489.450000px;}
.x2e_c00445{left:495.750000px;}
.x8c_c00445{left:497.100000px;}
.x68_c00445{left:498.150000px;}
.x99_c00445{left:499.350000px;}
.x9d_c00445{left:500.400000px;}
.x9f_c00445{left:502.650000px;}
.x47_c00445{left:504.000000px;}
.x63_c00445{left:508.050000px;}
.x13_c00445{left:511.800000px;}
.x145_c00445{left:529.200000px;}
.x11f_c00445{left:530.550000px;}
.x109_c00445{left:531.750000px;}
.x112_c00445{left:533.100000px;}
.xab_c00445{left:535.650000px;}
.xfa_c00445{left:543.300000px;}
.x11a_c00445{left:544.500000px;}
.x105_c00445{left:549.600000px;}
.xf8_c00445{left:550.800000px;}
.xe2_c00445{left:552.000000px;}
.xb3_c00445{left:553.050000px;}
.x139_c00445{left:557.250000px;}
.x134_c00445{left:558.450000px;}
.x141_c00445{left:560.550000px;}
.x10e_c00445{left:561.600000px;}
.x126_c00445{left:562.950000px;}
.x13d_c00445{left:565.800000px;}
.x143_c00445{left:567.300000px;}
.xdc_c00445{left:569.250000px;}
.xac_c00445{left:570.600000px;}
.xb4_c00445{left:571.800000px;}
.x120_c00445{left:573.450000px;}
.x129_c00445{left:575.400000px;}
.xa7_c00445{left:577.500000px;}
.xf9_c00445{left:581.400000px;}
.x115_c00445{left:585.000000px;}
.xd7_c00445{left:586.350000px;}
.xb5_c00445{left:589.800000px;}
.xca_c00445{left:591.000000px;}
.xc3_c00445{left:594.900000px;}
.xf2_c00445{left:598.050000px;}
.xa9_c00445{left:600.450000px;}
.x13e_c00445{left:601.800000px;}
.x106_c00445{left:602.850000px;}
.x11b_c00445{left:603.900000px;}
.xcf_c00445{left:605.100000px;}
.xbe_c00445{left:606.750000px;}
.xf3_c00445{left:608.100000px;}
.xad_c00445{left:609.450000px;}
.x100_c00445{left:610.800000px;}
.xec_c00445{left:612.000000px;}
.xe3_c00445{left:613.950000px;}
.xd0_c00445{left:618.750000px;}
.xb6_c00445{left:620.400000px;}
.xd9_c00445{left:622.500000px;}
.x146_c00445{left:624.600000px;}
.xba_c00445{left:628.650000px;}
.xe7_c00445{left:630.300000px;}
.x10f_c00445{left:631.500000px;}
.xdd_c00445{left:632.850000px;}
.x12f_c00445{left:633.900000px;}
.xfb_c00445{left:636.150000px;}
.x137_c00445{left:638.250000px;}
.x116_c00445{left:640.050000px;}
.xae_c00445{left:642.150000px;}
.x148_c00445{left:643.800000px;}
.xed_c00445{left:646.650000px;}
.x123_c00445{left:648.450000px;}
.x110_c00445{left:652.050000px;}
.xc4_c00445{left:654.600000px;}
.xf4_c00445{left:655.950000px;}
.xd1_c00445{left:658.050000px;}
.x10c_c00445{left:659.550000px;}
.x101_c00445{left:660.900000px;}
.x124_c00445{left:662.550000px;}
.xee_c00445{left:663.600000px;}
.xbf_c00445{left:665.850000px;}
.x107_c00445{left:666.900000px;}
.x12e_c00445{left:668.700000px;}
.xde_c00445{left:669.900000px;}
.xcb_c00445{left:672.300000px;}
.x131_c00445{left:673.950000px;}
.x103_c00445{left:676.950000px;}
.xb7_c00445{left:678.300000px;}
.x12a_c00445{left:680.100000px;}
.xc5_c00445{left:683.100000px;}
.x108_c00445{left:684.150000px;}
.xf6_c00445{left:686.100000px;}
.x113_c00445{left:687.600000px;}
.xc0_c00445{left:689.250000px;}
.x11c_c00445{left:690.900000px;}
.xda_c00445{left:691.950000px;}
.xd2_c00445{left:694.050000px;}
.xb8_c00445{left:697.800000px;}
.x132_c00445{left:699.150000px;}
.x125_c00445{left:701.100000px;}
.xaf_c00445{left:702.300000px;}
.xbb_c00445{left:703.500000px;}
.x12c_c00445{left:705.750000px;}
.x102_c00445{left:708.450000px;}
.x13f_c00445{left:711.000000px;}
.xe8_c00445{left:713.400000px;}
.xfc_c00445{left:716.400000px;}
.xe4_c00445{left:717.600000px;}
.x127_c00445{left:719.100000px;}
.x121_c00445{left:720.300000px;}
.x135_c00445{left:721.950000px;}
.x10a_c00445{left:723.600000px;}
.xef_c00445{left:725.100000px;}
.xc1_c00445{left:727.050000px;}
.xa8_c00445{left:729.000000px;}
.x13a_c00445{left:730.050000px;}
.xd3_c00445{left:731.100000px;}
.x117_c00445{left:733.950000px;}
.xf7_c00445{left:736.200000px;}
.xfd_c00445{left:738.750000px;}
.x111_c00445{left:741.300000px;}
.x149_c00445{left:742.500000px;}
.xdf_c00445{left:744.150000px;}
.xc6_c00445{left:746.100000px;}
.x147_c00445{left:748.200000px;}
.xe9_c00445{left:749.400000px;}
.x122_c00445{left:751.200000px;}
.x133_c00445{left:753.150000px;}
.xd4_c00445{left:754.200000px;}
.xaa_c00445{left:756.000000px;}
.x142_c00445{left:757.200000px;}
.xcc_c00445{left:760.500000px;}
.xe0_c00445{left:763.950000px;}
.xc7_c00445{left:766.650000px;}
.x128_c00445{left:767.700000px;}
.x12d_c00445{left:769.500000px;}
.xb0_c00445{left:772.500000px;}
.xea_c00445{left:773.850000px;}
.x11d_c00445{left:775.050000px;}
.xb9_c00445{left:777.000000px;}
.xd5_c00445{left:779.400000px;}
.xf0_c00445{left:781.650000px;}
.x138_c00445{left:783.600000px;}
.xc2_c00445{left:784.650000px;}
.x130_c00445{left:786.900000px;}
.x118_c00445{left:789.750000px;}
.x140_c00445{left:793.500000px;}
.x144_c00445{left:795.000000px;}
.xfe_c00445{left:797.400000px;}
.xc8_c00445{left:798.750000px;}
.xcd_c00445{left:801.600000px;}
.xe5_c00445{left:804.000000px;}
.xd8_c00445{left:806.700000px;}
.x14a_c00445{left:807.750000px;}
.x119_c00445{left:810.600000px;}
.xeb_c00445{left:813.150000px;}
.x13b_c00445{left:814.650000px;}
.x10b_c00445{left:815.700000px;}
.xf1_c00445{left:817.650000px;}
.xe1_c00445{left:822.600000px;}
.x10d_c00445{left:823.650000px;}
.x11e_c00445{left:825.450000px;}
.x12b_c00445{left:827.700000px;}
.xd6_c00445{left:830.850000px;}
.xbc_c00445{left:833.100000px;}
.xe6_c00445{left:835.350000px;}
.x13c_c00445{left:840.900000px;}
.xdb_c00445{left:843.150000px;}
.xbd_c00445{left:845.400000px;}
.xb1_c00445{left:847.800000px;}
.x104_c00445{left:850.200000px;}
.xc9_c00445{left:852.000000px;}
.x114_c00445{left:853.200000px;}
.x136_c00445{left:855.900000px;}
.xce_c00445{left:858.150000px;}
.xf5_c00445{left:860.400000px;}
.xff_c00445{left:865.050000px;}
.xb2_c00445{left:870.150000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws1_c00445{word-spacing:-7.304680pt;}
.ws6_c00445{word-spacing:-7.157042pt;}
.ws9_c00445{word-spacing:-5.847953pt;}
.wsa_c00445{word-spacing:0.000000pt;}
.ws4_c00445{word-spacing:1.502183pt;}
.ws2_c00445{word-spacing:3.354839pt;}
.ws0_c00445{word-spacing:3.829384pt;}
.ws8_c00445{word-spacing:4.827586pt;}
.ws3_c00445{word-spacing:5.514834pt;}
.ws5_c00445{word-spacing:7.475674pt;}
.ws7_c00445{word-spacing:8.888889pt;}
._1_c00445{width:24.683553pt;}
._0_c00445{width:33.327511pt;}
.fs6_c00445{font-size:48.000000pt;}
.fs3_c00445{font-size:53.333333pt;}
.fs2_c00445{font-size:58.666667pt;}
.fs0_c00445{font-size:64.000000pt;}
.fs1_c00445{font-size:74.666667pt;}
.fs5_c00445{font-size:96.000000pt;}
.fs4_c00445{font-size:106.666667pt;}
.y0_c00445{bottom:0.000000pt;}
.y67_c00445{bottom:162.933333pt;}
.y36_c00445{bottom:164.533333pt;}
.y66_c00445{bottom:176.000000pt;}
.y35_c00445{bottom:177.333333pt;}
.y65_c00445{bottom:189.066667pt;}
.y64_c00445{bottom:201.866667pt;}
.y34_c00445{bottom:210.533333pt;}
.y63_c00445{bottom:212.933333pt;}
.y33_c00445{bottom:225.866667pt;}
.y62_c00445{bottom:227.600000pt;}
.y61_c00445{bottom:240.400000pt;}
.y32_c00445{bottom:241.600000pt;}
.y60_c00445{bottom:253.200000pt;}
.y31_c00445{bottom:257.600000pt;}
.y5f_c00445{bottom:266.000000pt;}
.y30_c00445{bottom:273.333333pt;}
.y5e_c00445{bottom:278.533333pt;}
.y5d_c00445{bottom:291.333333pt;}
.y2f_c00445{bottom:293.200000pt;}
.y5c_c00445{bottom:303.466667pt;}
.y2e_c00445{bottom:309.200000pt;}
.y5b_c00445{bottom:316.266667pt;}
.y2d_c00445{bottom:324.266667pt;}
.y5a_c00445{bottom:329.333333pt;}
.y2c_c00445{bottom:340.000000pt;}
.y59_c00445{bottom:342.400000pt;}
.y58_c00445{bottom:354.933333pt;}
.y2b_c00445{bottom:355.333333pt;}
.y57_c00445{bottom:367.733333pt;}
.y2a_c00445{bottom:371.600000pt;}
.y56_c00445{bottom:380.800000pt;}
.y29_c00445{bottom:387.600000pt;}
.y55_c00445{bottom:393.733333pt;}
.y28_c00445{bottom:403.333333pt;}
.y54_c00445{bottom:406.800000pt;}
.y27_c00445{bottom:419.600000pt;}
.y53_c00445{bottom:432.400000pt;}
.y26_c00445{bottom:435.600000pt;}
.y52_c00445{bottom:445.200000pt;}
.y25_c00445{bottom:451.866667pt;}
.y51_c00445{bottom:458.266667pt;}
.y24_c00445{bottom:467.200000pt;}
.y23_c00445{bottom:483.200000pt;}
.y22_c00445{bottom:499.466667pt;}
.y50_c00445{bottom:499.733333pt;}
.y21_c00445{bottom:515.466667pt;}
.y20_c00445{bottom:531.466667pt;}
.y4f_c00445{bottom:535.333333pt;}
.y1f_c00445{bottom:547.200000pt;}
.y4e_c00445{bottom:555.200000pt;}
.y1e_c00445{bottom:563.200000pt;}
.y4d_c00445{bottom:571.200000pt;}
.y1d_c00445{bottom:579.200000pt;}
.y4c_c00445{bottom:587.200000pt;}
.y1c_c00445{bottom:594.933333pt;}
.y4b_c00445{bottom:607.333333pt;}
.y1b_c00445{bottom:610.933333pt;}
.y4a_c00445{bottom:623.333333pt;}
.y1a_c00445{bottom:626.933333pt;}
.y19_c00445{bottom:642.933333pt;}
.y18_c00445{bottom:658.933333pt;}
.y49_c00445{bottom:659.200000pt;}
.y17_c00445{bottom:674.666667pt;}
.y48_c00445{bottom:674.933333pt;}
.y16_c00445{bottom:690.666667pt;}
.y47_c00445{bottom:690.933333pt;}
.y15_c00445{bottom:706.666667pt;}
.y46_c00445{bottom:710.666667pt;}
.y14_c00445{bottom:722.400000pt;}
.y45_c00445{bottom:730.933333pt;}
.y13_c00445{bottom:738.400000pt;}
.y44_c00445{bottom:747.600000pt;}
.y12_c00445{bottom:754.400000pt;}
.y43_c00445{bottom:762.933333pt;}
.y11_c00445{bottom:770.400000pt;}
.y42_c00445{bottom:778.933333pt;}
.y10_c00445{bottom:786.400000pt;}
.y41_c00445{bottom:794.933333pt;}
.yf_c00445{bottom:802.400000pt;}
.y40_c00445{bottom:814.666667pt;}
.ye_c00445{bottom:818.400000pt;}
.y3f_c00445{bottom:830.933333pt;}
.yd_c00445{bottom:834.133333pt;}
.y3e_c00445{bottom:846.666667pt;}
.yc_c00445{bottom:850.133333pt;}
.y3d_c00445{bottom:862.666667pt;}
.yb_c00445{bottom:866.133333pt;}
.y3c_c00445{bottom:878.666667pt;}
.ya_c00445{bottom:882.133333pt;}
.y3b_c00445{bottom:894.400000pt;}
.y9_c00445{bottom:898.133333pt;}
.y8_c00445{bottom:914.133333pt;}
.y3a_c00445{bottom:914.266667pt;}
.y7_c00445{bottom:929.866667pt;}
.y39_c00445{bottom:930.266667pt;}
.y6_c00445{bottom:945.866667pt;}
.y38_c00445{bottom:958.133333pt;}
.y5_c00445{bottom:961.866667pt;}
.y4_c00445{bottom:977.866667pt;}
.y3_c00445{bottom:993.866667pt;}
.y37_c00445{bottom:1013.466667pt;}
.y1_c00445{bottom:1016.266667pt;}
.y2_c00445{bottom:1017.200000pt;}
.h7_c00445{height:48.000000pt;}
.h4_c00445{height:53.333333pt;}
.h3_c00445{height:58.666667pt;}
.h1_c00445{height:64.000000pt;}
.h2_c00445{height:74.666667pt;}
.h6_c00445{height:96.000000pt;}
.h5_c00445{height:106.666667pt;}
.h0_c00445{height:1128.000000pt;}
.w0_c00445{width:851.840007pt;}
.w1_c00445{width:852.000000pt;}
.x0_c00445{left:0.000000pt;}
.xa6_c00445{left:151.333333pt;}
.x9b_c00445{left:154.266667pt;}
.x1_c00445{left:159.066667pt;}
.xa4_c00445{left:165.466667pt;}
.x7f_c00445{left:169.600000pt;}
.x78_c00445{left:170.533333pt;}
.x6e_c00445{left:171.733333pt;}
.x69_c00445{left:172.933333pt;}
.x4c_c00445{left:174.266667pt;}
.x3_c00445{left:176.000000pt;}
.xa_c00445{left:177.066667pt;}
.x79_c00445{left:185.866667pt;}
.x6a_c00445{left:188.000000pt;}
.x14_c00445{left:191.333333pt;}
.x5b_c00445{left:192.800000pt;}
.x56_c00445{left:195.466667pt;}
.x43_c00445{left:197.600000pt;}
.x34_c00445{left:200.666667pt;}
.x3b_c00445{left:201.733333pt;}
.x96_c00445{left:202.666667pt;}
.xb_c00445{left:203.600000pt;}
.x2a_c00445{left:206.533333pt;}
.x4_c00445{left:208.266667pt;}
.x5c_c00445{left:209.733333pt;}
.x15_c00445{left:210.800000pt;}
.x7a_c00445{left:211.733333pt;}
.x35_c00445{left:213.466667pt;}
.x22_c00445{left:214.400000pt;}
.xa5_c00445{left:216.266667pt;}
.x92_c00445{left:218.000000pt;}
.x8d_c00445{left:219.200000pt;}
.x1d_c00445{left:221.733333pt;}
.x73_c00445{left:223.066667pt;}
.x98_c00445{left:224.266667pt;}
.x2f_c00445{left:226.000000pt;}
.x5d_c00445{left:228.933333pt;}
.xa2_c00445{left:231.733333pt;}
.x36_c00445{left:232.666667pt;}
.x64_c00445{left:234.000000pt;}
.x8f_c00445{left:234.933333pt;}
.x87_c00445{left:236.533333pt;}
.x3c_c00445{left:237.600000pt;}
.x23_c00445{left:240.266667pt;}
.x48_c00445{left:241.866667pt;}
.x7d_c00445{left:243.866667pt;}
.x16_c00445{left:246.666667pt;}
.x37_c00445{left:248.400000pt;}
.x84_c00445{left:249.333333pt;}
.x1e_c00445{left:250.533333pt;}
.x6f_c00445{left:251.466667pt;}
.x65_c00445{left:255.466667pt;}
.x3d_c00445{left:257.733333pt;}
.x89_c00445{left:259.066667pt;}
.xc_c00445{left:260.933333pt;}
.x2b_c00445{left:261.866667pt;}
.x53_c00445{left:265.333333pt;}
.x80_c00445{left:267.466667pt;}
.x30_c00445{left:268.533333pt;}
.x17_c00445{left:272.533333pt;}
.x7c_c00445{left:273.866667pt;}
.x24_c00445{left:278.400000pt;}
.x40_c00445{left:280.800000pt;}
.x83_c00445{left:281.866667pt;}
.x90_c00445{left:284.533333pt;}
.x5e_c00445{left:286.266667pt;}
.x8e_c00445{left:287.733333pt;}
.x94_c00445{left:288.933333pt;}
.x97_c00445{left:290.000000pt;}
.x18_c00445{left:292.000000pt;}
.x57_c00445{left:294.266667pt;}
.x5_c00445{left:296.000000pt;}
.x91_c00445{left:296.933333pt;}
.x44_c00445{left:298.133333pt;}
.x93_c00445{left:299.733333pt;}
.x31_c00445{left:302.800000pt;}
.x8a_c00445{left:303.866667pt;}
.x9e_c00445{left:304.933333pt;}
.x49_c00445{left:306.133333pt;}
.x4d_c00445{left:307.200000pt;}
.x81_c00445{left:309.333333pt;}
.x85_c00445{left:311.066667pt;}
.x5f_c00445{left:312.800000pt;}
.x66_c00445{left:315.600000pt;}
.x6_c00445{left:316.533333pt;}
.x70_c00445{left:317.466667pt;}
.x19_c00445{left:318.933333pt;}
.x9a_c00445{left:320.533333pt;}
.xd_c00445{left:321.466667pt;}
.x58_c00445{left:322.400000pt;}
.x7b_c00445{left:324.266667pt;}
.x7e_c00445{left:325.200000pt;}
.x4e_c00445{left:327.066667pt;}
.xe_c00445{left:328.133333pt;}
.x41_c00445{left:329.466667pt;}
.x1f_c00445{left:331.200000pt;}
.xa3_c00445{left:334.400000pt;}
.x2c_c00445{left:335.466667pt;}
.x54_c00445{left:336.666667pt;}
.xf_c00445{left:337.733333pt;}
.x38_c00445{left:339.333333pt;}
.x45_c00445{left:340.400000pt;}
.x7_c00445{left:341.866667pt;}
.x67_c00445{left:342.800000pt;}
.x6b_c00445{left:347.066667pt;}
.x4f_c00445{left:348.800000pt;}
.x25_c00445{left:352.933333pt;}
.x3e_c00445{left:354.400000pt;}
.x50_c00445{left:357.466667pt;}
.x9c_c00445{left:358.400000pt;}
.x74_c00445{left:360.266667pt;}
.x26_c00445{left:362.266667pt;}
.x4a_c00445{left:364.000000pt;}
.x2_c00445{left:365.200000pt;}
.x10_c00445{left:366.266667pt;}
.x20_c00445{left:367.733333pt;}
.x2d_c00445{left:369.333333pt;}
.x55_c00445{left:370.933333pt;}
.x6c_c00445{left:372.000000pt;}
.x39_c00445{left:373.200000pt;}
.x82_c00445{left:374.666667pt;}
.x51_c00445{left:375.733333pt;}
.xa0_c00445{left:377.333333pt;}
.x42_c00445{left:378.400000pt;}
.x32_c00445{left:379.600000pt;}
.x27_c00445{left:381.733333pt;}
.x1a_c00445{left:382.666667pt;}
.x11_c00445{left:383.866667pt;}
.x71_c00445{left:385.600000pt;}
.x88_c00445{left:388.800000pt;}
.x21_c00445{left:390.400000pt;}
.x72_c00445{left:392.266667pt;}
.x62_c00445{left:394.000000pt;}
.xa1_c00445{left:395.600000pt;}
.x95_c00445{left:396.933333pt;}
.x8b_c00445{left:398.133333pt;}
.x59_c00445{left:399.200000pt;}
.x28_c00445{left:400.266667pt;}
.x75_c00445{left:402.800000pt;}
.x60_c00445{left:403.866667pt;}
.x46_c00445{left:404.800000pt;}
.x3f_c00445{left:406.533333pt;}
.x76_c00445{left:407.866667pt;}
.x52_c00445{left:409.600000pt;}
.x1b_c00445{left:411.466667pt;}
.x8_c00445{left:413.866667pt;}
.x33_c00445{left:415.733333pt;}
.x5a_c00445{left:417.733333pt;}
.x4b_c00445{left:419.333333pt;}
.x77_c00445{left:422.000000pt;}
.x12_c00445{left:424.533333pt;}
.x3a_c00445{left:426.666667pt;}
.x29_c00445{left:427.733333pt;}
.x61_c00445{left:430.133333pt;}
.x86_c00445{left:431.600000pt;}
.x9_c00445{left:432.800000pt;}
.x1c_c00445{left:433.866667pt;}
.x6d_c00445{left:435.066667pt;}
.x2e_c00445{left:440.666667pt;}
.x8c_c00445{left:441.866667pt;}
.x68_c00445{left:442.800000pt;}
.x99_c00445{left:443.866667pt;}
.x9d_c00445{left:444.800000pt;}
.x9f_c00445{left:446.800000pt;}
.x47_c00445{left:448.000000pt;}
.x63_c00445{left:451.600000pt;}
.x13_c00445{left:454.933333pt;}
.x145_c00445{left:470.400000pt;}
.x11f_c00445{left:471.600000pt;}
.x109_c00445{left:472.666667pt;}
.x112_c00445{left:473.866667pt;}
.xab_c00445{left:476.133333pt;}
.xfa_c00445{left:482.933333pt;}
.x11a_c00445{left:484.000000pt;}
.x105_c00445{left:488.533333pt;}
.xf8_c00445{left:489.600000pt;}
.xe2_c00445{left:490.666667pt;}
.xb3_c00445{left:491.600000pt;}
.x139_c00445{left:495.333333pt;}
.x134_c00445{left:496.400000pt;}
.x141_c00445{left:498.266667pt;}
.x10e_c00445{left:499.200000pt;}
.x126_c00445{left:500.400000pt;}
.x13d_c00445{left:502.933333pt;}
.x143_c00445{left:504.266667pt;}
.xdc_c00445{left:506.000000pt;}
.xac_c00445{left:507.200000pt;}
.xb4_c00445{left:508.266667pt;}
.x120_c00445{left:509.733333pt;}
.x129_c00445{left:511.466667pt;}
.xa7_c00445{left:513.333333pt;}
.xf9_c00445{left:516.800000pt;}
.x115_c00445{left:520.000000pt;}
.xd7_c00445{left:521.200000pt;}
.xb5_c00445{left:524.266667pt;}
.xca_c00445{left:525.333333pt;}
.xc3_c00445{left:528.800000pt;}
.xf2_c00445{left:531.600000pt;}
.xa9_c00445{left:533.733333pt;}
.x13e_c00445{left:534.933333pt;}
.x106_c00445{left:535.866667pt;}
.x11b_c00445{left:536.800000pt;}
.xcf_c00445{left:537.866667pt;}
.xbe_c00445{left:539.333333pt;}
.xf3_c00445{left:540.533333pt;}
.xad_c00445{left:541.733333pt;}
.x100_c00445{left:542.933333pt;}
.xec_c00445{left:544.000000pt;}
.xe3_c00445{left:545.733333pt;}
.xd0_c00445{left:550.000000pt;}
.xb6_c00445{left:551.466667pt;}
.xd9_c00445{left:553.333333pt;}
.x146_c00445{left:555.200000pt;}
.xba_c00445{left:558.800000pt;}
.xe7_c00445{left:560.266667pt;}
.x10f_c00445{left:561.333333pt;}
.xdd_c00445{left:562.533333pt;}
.x12f_c00445{left:563.466667pt;}
.xfb_c00445{left:565.466667pt;}
.x137_c00445{left:567.333333pt;}
.x116_c00445{left:568.933333pt;}
.xae_c00445{left:570.800000pt;}
.x148_c00445{left:572.266667pt;}
.xed_c00445{left:574.800000pt;}
.x123_c00445{left:576.400000pt;}
.x110_c00445{left:579.600000pt;}
.xc4_c00445{left:581.866667pt;}
.xf4_c00445{left:583.066667pt;}
.xd1_c00445{left:584.933333pt;}
.x10c_c00445{left:586.266667pt;}
.x101_c00445{left:587.466667pt;}
.x124_c00445{left:588.933333pt;}
.xee_c00445{left:589.866667pt;}
.xbf_c00445{left:591.866667pt;}
.x107_c00445{left:592.800000pt;}
.x12e_c00445{left:594.400000pt;}
.xde_c00445{left:595.466667pt;}
.xcb_c00445{left:597.600000pt;}
.x131_c00445{left:599.066667pt;}
.x103_c00445{left:601.733333pt;}
.xb7_c00445{left:602.933333pt;}
.x12a_c00445{left:604.533333pt;}
.xc5_c00445{left:607.200000pt;}
.x108_c00445{left:608.133333pt;}
.xf6_c00445{left:609.866667pt;}
.x113_c00445{left:611.200000pt;}
.xc0_c00445{left:612.666667pt;}
.x11c_c00445{left:614.133333pt;}
.xda_c00445{left:615.066667pt;}
.xd2_c00445{left:616.933333pt;}
.xb8_c00445{left:620.266667pt;}
.x132_c00445{left:621.466667pt;}
.x125_c00445{left:623.200000pt;}
.xaf_c00445{left:624.266667pt;}
.xbb_c00445{left:625.333333pt;}
.x12c_c00445{left:627.333333pt;}
.x102_c00445{left:629.733333pt;}
.x13f_c00445{left:632.000000pt;}
.xe8_c00445{left:634.133333pt;}
.xfc_c00445{left:636.800000pt;}
.xe4_c00445{left:637.866667pt;}
.x127_c00445{left:639.200000pt;}
.x121_c00445{left:640.266667pt;}
.x135_c00445{left:641.733333pt;}
.x10a_c00445{left:643.200000pt;}
.xef_c00445{left:644.533333pt;}
.xc1_c00445{left:646.266667pt;}
.xa8_c00445{left:648.000000pt;}
.x13a_c00445{left:648.933333pt;}
.xd3_c00445{left:649.866667pt;}
.x117_c00445{left:652.400000pt;}
.xf7_c00445{left:654.400000pt;}
.xfd_c00445{left:656.666667pt;}
.x111_c00445{left:658.933333pt;}
.x149_c00445{left:660.000000pt;}
.xdf_c00445{left:661.466667pt;}
.xc6_c00445{left:663.200000pt;}
.x147_c00445{left:665.066667pt;}
.xe9_c00445{left:666.133333pt;}
.x122_c00445{left:667.733333pt;}
.x133_c00445{left:669.466667pt;}
.xd4_c00445{left:670.400000pt;}
.xaa_c00445{left:672.000000pt;}
.x142_c00445{left:673.066667pt;}
.xcc_c00445{left:676.000000pt;}
.xe0_c00445{left:679.066667pt;}
.xc7_c00445{left:681.466667pt;}
.x128_c00445{left:682.400000pt;}
.x12d_c00445{left:684.000000pt;}
.xb0_c00445{left:686.666667pt;}
.xea_c00445{left:687.866667pt;}
.x11d_c00445{left:688.933333pt;}
.xb9_c00445{left:690.666667pt;}
.xd5_c00445{left:692.800000pt;}
.xf0_c00445{left:694.800000pt;}
.x138_c00445{left:696.533333pt;}
.xc2_c00445{left:697.466667pt;}
.x130_c00445{left:699.466667pt;}
.x118_c00445{left:702.000000pt;}
.x140_c00445{left:705.333333pt;}
.x144_c00445{left:706.666667pt;}
.xfe_c00445{left:708.800000pt;}
.xc8_c00445{left:710.000000pt;}
.xcd_c00445{left:712.533333pt;}
.xe5_c00445{left:714.666667pt;}
.xd8_c00445{left:717.066667pt;}
.x14a_c00445{left:718.000000pt;}
.x119_c00445{left:720.533333pt;}
.xeb_c00445{left:722.800000pt;}
.x13b_c00445{left:724.133333pt;}
.x10b_c00445{left:725.066667pt;}
.xf1_c00445{left:726.800000pt;}
.xe1_c00445{left:731.200000pt;}
.x10d_c00445{left:732.133333pt;}
.x11e_c00445{left:733.733333pt;}
.x12b_c00445{left:735.733333pt;}
.xd6_c00445{left:738.533333pt;}
.xbc_c00445{left:740.533333pt;}
.xe6_c00445{left:742.533333pt;}
.x13c_c00445{left:747.466667pt;}
.xdb_c00445{left:749.466667pt;}
.xbd_c00445{left:751.466667pt;}
.xb1_c00445{left:753.600000pt;}
.x104_c00445{left:755.733333pt;}
.xc9_c00445{left:757.333333pt;}
.x114_c00445{left:758.400000pt;}
.x136_c00445{left:760.800000pt;}
.xce_c00445{left:762.800000pt;}
.xf5_c00445{left:764.800000pt;}
.xff_c00445{left:768.933333pt;}
.xb2_c00445{left:773.466667pt;}
}





/* 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_c00446 {
    display:none;
  }
  .loading-indicator_c00446.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00446 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_c00446 { 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_c00446" -> "#page-container .classname_c00446")
 */
.pf_c00446 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00446 { /* 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_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00446 { /* 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_c00446 { /* 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_c00446 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00446 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00446 {overflow:visible;}
  }
}
.c_c00446 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00446 { /* 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_c00446:after { /* webkit #35443 */
  content: '';
}
.t_c00446:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00446 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 */
}
.__c00446 { /* 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_c00446 { /* info for Javascript */
  display:none;
}
.l_c00446 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00446 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00446 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00446: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_c00446 {
    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_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00446.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_c00446 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00446{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00446;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.000000;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;}
.m49_c00446{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00446{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00446{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m108_c00446{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m100_c00446{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00446{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00446{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m102_c00446{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00446{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m112_c00446{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00446{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m101_c00446{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00446{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m109_c00446{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m105_c00446{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00446{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m63_c00446{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me6_c00446{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.md8_c00446{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00446{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00446{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.me0_c00446{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m65_c00446{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m103_c00446{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00446{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.me3_c00446{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m95_c00446{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.maf_c00446{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m23_c00446{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m76_c00446{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m104_c00446{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00446{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00446{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00446{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m70_c00446{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00446{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m56_c00446{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00446{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me1_c00446{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m16_c00446{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m24_c00446{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m62_c00446{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00446{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m35_c00446{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mec_c00446{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m32_c00446{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00446{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00446{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m25_c00446{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mca_c00446{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m94_c00446{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mee_c00446{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00446{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2_c00446{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m41_c00446{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mc_c00446{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m67_c00446{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m19_c00446{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m96_c00446{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00446{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m40_c00446{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00446{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00446{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00446{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m69_c00446{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00446{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00446{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m74_c00446{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m77_c00446{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m84_c00446{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m79_c00446{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00446{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m73_c00446{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m72_c00446{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00446{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m110_c00446{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m66_c00446{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mae_c00446{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m82_c00446{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00446{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m12_c00446{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00446{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m87_c00446{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00446{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m20_c00446{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00446{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m34_c00446{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00446{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m22_c00446{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.me_c00446{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m27_c00446{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m93_c00446{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m36_c00446{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m75_c00446{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00446{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m86_c00446{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00446{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m83_c00446{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mce_c00446{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m68_c00446{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00446{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00446{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00446{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00446{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00446{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7_c00446{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00446{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00446{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m61_c00446{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00446{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m38_c00446{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00446{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m39_c00446{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00446{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md6_c00446{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3_c00446{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00446{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00446{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m88_c00446{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00446{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.med_c00446{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00446{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00446{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5_c00446{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00446{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m59_c00446{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md5_c00446{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m29_c00446{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mad_c00446{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00446{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m21_c00446{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00446{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6_c00446{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00446{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00446{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m45_c00446{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00446{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m53_c00446{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mff_c00446{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m28_c00446{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m44_c00446{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m91_c00446{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m48_c00446{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m26_c00446{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00446{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00446{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m71_c00446{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m30_c00446{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00446{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb_c00446{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00446{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00446{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00446{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m17_c00446{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m107_c00446{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m78_c00446{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m89_c00446{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mab_c00446{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m31_c00446{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00446{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00446{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00446{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.md2_c00446{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.md3_c00446{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00446{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m11_c00446{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m114_c00446{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00446{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4_c00446{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m54_c00446{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00446{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m18_c00446{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf_c00446{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md4_c00446{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m33_c00446{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me2_c00446{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00446{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00446{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00446{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mba_c00446{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9_c00446{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m80_c00446{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mef_c00446{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m13_c00446{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00446{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m92_c00446{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00446{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00446{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m46_c00446{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00446{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00446{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00446{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00446{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10_c00446{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00446{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m14_c00446{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00446{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md9_c00446{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.md1_c00446{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00446{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma_c00446{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00446{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m43_c00446{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00446{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00446{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00446{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m37_c00446{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m99_c00446{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00446{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00446{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00446{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mac_c00446{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00446{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00446{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md7_c00446{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00446{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m55_c00446{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.maa_c00446{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00446{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m106_c00446{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00446{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00446{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m64_c00446{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m47_c00446{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m15_c00446{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8_c00446{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m85_c00446{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m81_c00446{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m90_c00446{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00446{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m58_c00446{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m115_c00446{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m98_c00446{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00446{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00446{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00446{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md_c00446{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00446{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00446{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m111_c00446{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00446{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00446{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00446{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00446{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00446{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00446{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00446{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m42_c00446{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mea_c00446{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00446{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00446{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md0_c00446{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me5_c00446{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00446{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m97_c00446{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m57_c00446{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.me9_c00446{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00446{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.meb_c00446{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00446{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mde_c00446{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.me8_c00446{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00446{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00446{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m52_c00446{transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);}
.m50_c00446{transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374000,0.000000,0.000000,0.250000,0,0);}
.m51_c00446{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.me4_c00446{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.m113_c00446{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00446{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00446{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mda_c00446{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.me7_c00446{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m60_c00446{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00446{transform:matrix(1.836000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.836000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.836000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00446{transform:matrix(2.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.316000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls3_c00446{letter-spacing:0.000000px;}
.ls2_c00446{letter-spacing:55.714286px;}
.ls1_c00446{letter-spacing:70.000000px;}
.ls0_c00446{letter-spacing:74.166667px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{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__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00446{word-spacing:-104.166667px;}
.ws8_c00446{word-spacing:-100.000000px;}
.wsd_c00446{word-spacing:-85.714286px;}
.ws0_c00446{word-spacing:-11.745704px;}
.wsf_c00446{word-spacing:0.000000px;}
.ws1_c00446{word-spacing:2.597765px;}
.ws4_c00446{word-spacing:10.637002px;}
.ws2_c00446{word-spacing:12.747851px;}
.ws5_c00446{word-spacing:22.142857px;}
.ws3_c00446{word-spacing:23.211796px;}
.ws9_c00446{word-spacing:25.714286px;}
.ws6_c00446{word-spacing:26.428954px;}
.wsa_c00446{word-spacing:29.285714px;}
.wsc_c00446{word-spacing:40.000000px;}
.wsb_c00446{word-spacing:44.166667px;}
.wse_c00446{word-spacing:60.000000px;}
._2_c00446{margin-left:-74.166667px;}
._3_c00446{margin-left:-70.000000px;}
._6_c00446{margin-left:-55.714286px;}
._4_c00446{width:52.142857px;}
._0_c00446{width:53.428954px;}
._1_c00446{width:55.714286px;}
._5_c00446{width:1195.000000px;}
.fc0_c00446{color:transparent;}
.fs6_c00446{font-size:30.000000px;}
.fs4_c00446{font-size:48.000000px;}
.fs5_c00446{font-size:54.000000px;}
.fs2_c00446{font-size:60.000000px;}
.fs3_c00446{font-size:66.000000px;}
.fs1_c00446{font-size:72.000000px;}
.fs0_c00446{font-size:84.000000px;}
.y0_c00446{bottom:0.000000px;}
.y64_c00446{bottom:180.750000px;}
.y30_c00446{bottom:186.150000px;}
.y63_c00446{bottom:195.900000px;}
.y2f_c00446{bottom:204.150000px;}
.y62_c00446{bottom:209.550000px;}
.y2e_c00446{bottom:221.400000px;}
.y61_c00446{bottom:224.700000px;}
.y60_c00446{bottom:239.400000px;}
.y2d_c00446{bottom:244.050000px;}
.y5f_c00446{bottom:253.800000px;}
.y2c_c00446{bottom:261.750000px;}
.y5e_c00446{bottom:268.650000px;}
.y5d_c00446{bottom:283.350000px;}
.y2b_c00446{bottom:284.100000px;}
.y5c_c00446{bottom:297.750000px;}
.y2a_c00446{bottom:302.100000px;}
.y5b_c00446{bottom:312.150000px;}
.y29_c00446{bottom:320.100000px;}
.y5a_c00446{bottom:326.850000px;}
.y28_c00446{bottom:338.100000px;}
.y59_c00446{bottom:340.950000px;}
.y58_c00446{bottom:355.350000px;}
.y27_c00446{bottom:360.750000px;}
.y57_c00446{bottom:369.750000px;}
.y26_c00446{bottom:383.400000px;}
.y56_c00446{bottom:384.150000px;}
.y55_c00446{bottom:398.850000px;}
.y25_c00446{bottom:405.750000px;}
.y24_c00446{bottom:424.050000px;}
.y23_c00446{bottom:441.000000px;}
.y54_c00446{bottom:441.750000px;}
.y22_c00446{bottom:459.300000px;}
.y53_c00446{bottom:460.050000px;}
.y21_c00446{bottom:481.650000px;}
.y52_c00446{bottom:486.750000px;}
.y20_c00446{bottom:503.250000px;}
.y51_c00446{bottom:503.550000px;}
.y50_c00446{bottom:522.600000px;}
.y1f_c00446{bottom:525.000000px;}
.y4f_c00446{bottom:540.600000px;}
.y1e_c00446{bottom:543.300000px;}
.y4e_c00446{bottom:558.300000px;}
.y1d_c00446{bottom:561.300000px;}
.y4d_c00446{bottom:576.600000px;}
.y1c_c00446{bottom:579.300000px;}
.y4c_c00446{bottom:594.600000px;}
.y1b_c00446{bottom:601.950000px;}
.y4b_c00446{bottom:612.300000px;}
.y1a_c00446{bottom:623.850000px;}
.y4a_c00446{bottom:634.950000px;}
.y19_c00446{bottom:641.850000px;}
.y49_c00446{bottom:652.650000px;}
.y18_c00446{bottom:661.650000px;}
.y17_c00446{bottom:669.900000px;}
.y48_c00446{bottom:688.650000px;}
.y16_c00446{bottom:702.300000px;}
.y47_c00446{bottom:706.350000px;}
.y46_c00446{bottom:724.350000px;}
.y15_c00446{bottom:732.900000px;}
.y45_c00446{bottom:747.000000px;}
.y14_c00446{bottom:750.600000px;}
.y44_c00446{bottom:765.000000px;}
.y43_c00446{bottom:782.700000px;}
.y13_c00446{bottom:789.150000px;}
.y42_c00446{bottom:801.000000px;}
.y41_c00446{bottom:818.700000px;}
.y12_c00446{bottom:829.050000px;}
.y40_c00446{bottom:837.000000px;}
.y11_c00446{bottom:847.800000px;}
.y3f_c00446{bottom:854.250000px;}
.y3e_c00446{bottom:872.250000px;}
.yf_c00446{bottom:879.000000px;}
.y3d_c00446{bottom:890.250000px;}
.ye_c00446{bottom:897.300000px;}
.y3c_c00446{bottom:908.250000px;}
.yd_c00446{bottom:915.000000px;}
.y3b_c00446{bottom:926.250000px;}
.yc_c00446{bottom:932.700000px;}
.y3a_c00446{bottom:948.300000px;}
.yb_c00446{bottom:950.700000px;}
.y39_c00446{bottom:970.500000px;}
.ya_c00446{bottom:972.900000px;}
.y38_c00446{bottom:988.200000px;}
.y9_c00446{bottom:990.900000px;}
.y8_c00446{bottom:1008.600000px;}
.y37_c00446{bottom:1011.000000px;}
.y7_c00446{bottom:1026.600000px;}
.y36_c00446{bottom:1029.000000px;}
.y6_c00446{bottom:1044.300000px;}
.y35_c00446{bottom:1047.300000px;}
.y5_c00446{bottom:1062.600000px;}
.y34_c00446{bottom:1068.750000px;}
.y4_c00446{bottom:1080.300000px;}
.y33_c00446{bottom:1091.100000px;}
.y3_c00446{bottom:1098.000000px;}
.y32_c00446{bottom:1113.450000px;}
.y2_c00446{bottom:1116.000000px;}
.y10_c00446{bottom:1121.100000px;}
.y1_c00446{bottom:1141.200000px;}
.y31_c00446{bottom:1265.700000px;}
.h7_c00446{height:30.000000px;}
.h5_c00446{height:48.000000px;}
.h6_c00446{height:54.000000px;}
.h3_c00446{height:60.000000px;}
.h4_c00446{height:66.000000px;}
.h2_c00446{height:72.000000px;}
.h1_c00446{height:84.000000px;}
.h0_c00446{height:1269.000000px;}
.w0_c00446{width:958.320007px;}
.w1_c00446{width:958.500000px;}
.x0_c00446{left:0.000000px;}
.x50_c00446{left:86.400000px;}
.x48_c00446{left:88.500000px;}
.x41_c00446{left:91.500000px;}
.x8b_c00446{left:96.150000px;}
.x86_c00446{left:97.950000px;}
.x78_c00446{left:99.300000px;}
.x74_c00446{left:100.350000px;}
.x6e_c00446{left:102.000000px;}
.x5f_c00446{left:103.050000px;}
.x54_c00446{left:104.250000px;}
.x4e_c00446{left:106.650000px;}
.x34_c00446{left:108.450000px;}
.x2b_c00446{left:109.650000px;}
.x3_c00446{left:110.850000px;}
.x88_c00446{left:114.450000px;}
.x80_c00446{left:116.250000px;}
.x7f_c00446{left:117.300000px;}
.x6f_c00446{left:118.950000px;}
.x42_c00446{left:120.600000px;}
.x5a_c00446{left:122.100000px;}
.x6c_c00446{left:124.800000px;}
.x90_c00446{left:126.150000px;}
.x31_c00446{left:127.500000px;}
.x15_c00446{left:129.450000px;}
.x25_c00446{left:131.400000px;}
.x82_c00446{left:135.150000px;}
.x7a_c00446{left:139.800000px;}
.x4_c00446{left:141.450000px;}
.x91_c00446{left:142.650000px;}
.x37_c00446{left:143.850000px;}
.x4f_c00446{left:145.500000px;}
.x21_c00446{left:146.850000px;}
.x89_c00446{left:148.950000px;}
.x79_c00446{left:150.000000px;}
.x55_c00446{left:152.850000px;}
.x67_c00446{left:154.350000px;}
.x26_c00446{left:155.850000px;}
.x7d_c00446{left:156.900000px;}
.xa_c00446{left:160.650000px;}
.x5_c00446{left:162.000000px;}
.x73_c00446{left:163.050000px;}
.x10_c00446{left:168.300000px;}
.x3f_c00446{left:169.800000px;}
.x8c_c00446{left:171.000000px;}
.x1b_c00446{left:173.850000px;}
.x60_c00446{left:176.100000px;}
.x63_c00446{left:177.150000px;}
.x7b_c00446{left:178.650000px;}
.x16_c00446{left:180.600000px;}
.x70_c00446{left:182.550000px;}
.x22_c00446{left:183.600000px;}
.x5b_c00446{left:186.900000px;}
.x11_c00446{left:188.850000px;}
.x49_c00446{left:191.850000px;}
.x87_c00446{left:194.100000px;}
.x2c_c00446{left:197.550000px;}
.x43_c00446{left:200.100000px;}
.x27_c00446{left:202.350000px;}
.x6_c00446{left:207.000000px;}
.x68_c00446{left:208.350000px;}
.x45_c00446{left:210.450000px;}
.x3d_c00446{left:211.800000px;}
.x84_c00446{left:212.850000px;}
.x56_c00446{left:214.050000px;}
.xb_c00446{left:219.000000px;}
.x92_c00446{left:220.800000px;}
.x71_c00446{left:222.150000px;}
.x28_c00446{left:226.050000px;}
.x75_c00446{left:227.100000px;}
.x64_c00446{left:230.100000px;}
.x46_c00446{left:234.150000px;}
.x38_c00446{left:236.700000px;}
.x2d_c00446{left:239.700000px;}
.x1c_c00446{left:242.250000px;}
.x17_c00446{left:245.400000px;}
.x76_c00446{left:247.950000px;}
.x35_c00446{left:249.150000px;}
.x8a_c00446{left:250.950000px;}
.x4a_c00446{left:252.300000px;}
.x57_c00446{left:253.950000px;}
.x23_c00446{left:255.600000px;}
.x5c_c00446{left:259.650000px;}
.x72_c00446{left:261.450000px;}
.x47_c00446{left:263.850000px;}
.x12_c00446{left:266.250000px;}
.x77_c00446{left:269.250000px;}
.x44_c00446{left:271.050000px;}
.x61_c00446{left:274.350000px;}
.x2e_c00446{left:278.550000px;}
.x1d_c00446{left:280.350000px;}
.x5d_c00446{left:283.050000px;}
.x18_c00446{left:284.250000px;}
.xc_c00446{left:286.350000px;}
.x51_c00446{left:288.000000px;}
.x4b_c00446{left:293.400000px;}
.x7_c00446{left:294.900000px;}
.x13_c00446{left:296.100000px;}
.x52_c00446{left:298.800000px;}
.x85_c00446{left:302.100000px;}
.x1e_c00446{left:305.250000px;}
.x7e_c00446{left:308.100000px;}
.x65_c00446{left:311.400000px;}
.x58_c00446{left:315.450000px;}
.xd_c00446{left:317.700000px;}
.x62_c00446{left:319.350000px;}
.x7c_c00446{left:320.550000px;}
.x69_c00446{left:323.100000px;}
.x5e_c00446{left:325.200000px;}
.x39_c00446{left:327.150000px;}
.x32_c00446{left:329.400000px;}
.x4c_c00446{left:333.000000px;}
.x1_c00446{left:334.500000px;}
.x36_c00446{left:335.850000px;}
.xe_c00446{left:339.000000px;}
.x24_c00446{left:340.200000px;}
.x29_c00446{left:341.850000px;}
.x6a_c00446{left:346.500000px;}
.x3a_c00446{left:347.700000px;}
.x2f_c00446{left:348.750000px;}
.x8_c00446{left:352.500000px;}
.x14_c00446{left:355.500000px;}
.x1f_c00446{left:357.150000px;}
.x53_c00446{left:358.500000px;}
.x6d_c00446{left:360.450000px;}
.x6b_c00446{left:366.000000px;}
.x30_c00446{left:367.800000px;}
.x3b_c00446{left:370.800000px;}
.x83_c00446{left:373.800000px;}
.x8d_c00446{left:375.600000px;}
.x59_c00446{left:378.900000px;}
.x8e_c00446{left:379.950000px;}
.x3e_c00446{left:382.200000px;}
.x20_c00446{left:383.400000px;}
.x81_c00446{left:384.600000px;}
.x4d_c00446{left:385.950000px;}
.x66_c00446{left:387.000000px;}
.x2a_c00446{left:392.550000px;}
.x8f_c00446{left:395.100000px;}
.xf_c00446{left:398.700000px;}
.x33_c00446{left:402.900000px;}
.x9_c00446{left:405.450000px;}
.x19_c00446{left:407.100000px;}
.x3c_c00446{left:411.900000px;}
.x2_c00446{left:414.750000px;}
.x1a_c00446{left:420.750000px;}
.x40_c00446{left:423.750000px;}
.x93_c00446{left:429.900000px;}
.x94_c00446{left:435.300000px;}
.x113_c00446{left:437.700000px;}
.x10b_c00446{left:439.500000px;}
.xee_c00446{left:443.850000px;}
.xe7_c00446{left:445.350000px;}
.xbb_c00446{left:447.900000px;}
.x122_c00446{left:450.750000px;}
.x119_c00446{left:451.800000px;}
.x95_c00446{left:455.100000px;}
.x10f_c00446{left:456.600000px;}
.x105_c00446{left:457.950000px;}
.xfc_c00446{left:459.750000px;}
.xf0_c00446{left:460.800000px;}
.xea_c00446{left:462.750000px;}
.xe6_c00446{left:464.250000px;}
.xc0_c00446{left:465.300000px;}
.xb1_c00446{left:466.800000px;}
.xa4_c00446{left:467.850000px;}
.x123_c00446{left:473.850000px;}
.x10a_c00446{left:474.900000px;}
.xf1_c00446{left:479.550000px;}
.xdb_c00446{left:481.200000px;}
.x10c_c00446{left:482.400000px;}
.xb4_c00446{left:485.250000px;}
.x99_c00446{left:487.500000px;}
.x97_c00446{left:489.300000px;}
.xa5_c00446{left:492.000000px;}
.xc9_c00446{left:496.350000px;}
.x114_c00446{left:498.900000px;}
.xd2_c00446{left:500.100000px;}
.xc1_c00446{left:502.050000px;}
.xb2_c00446{left:504.300000px;}
.xb5_c00446{left:508.950000px;}
.xff_c00446{left:512.550000px;}
.xca_c00446{left:514.650000px;}
.xeb_c00446{left:517.050000px;}
.xf8_c00446{left:519.150000px;}
.x11d_c00446{left:520.350000px;}
.xb3_c00446{left:522.000000px;}
.xef_c00446{left:523.350000px;}
.xcd_c00446{left:525.600000px;}
.x96_c00446{left:527.100000px;}
.x127_c00446{left:529.350000px;}
.xdc_c00446{left:530.550000px;}
.x9e_c00446{left:531.750000px;}
.xa9_c00446{left:532.950000px;}
.x106_c00446{left:534.600000px;}
.x98_c00446{left:535.800000px;}
.xa6_c00446{left:539.850000px;}
.xd7_c00446{left:541.200000px;}
.x128_c00446{left:542.700000px;}
.x110_c00446{left:543.750000px;}
.xaa_c00446{left:544.800000px;}
.xe8_c00446{left:546.150000px;}
.xad_c00446{left:548.700000px;}
.xc6_c00446{left:550.350000px;}
.x9a_c00446{left:554.850000px;}
.x100_c00446{left:556.800000px;}
.xde_c00446{left:558.000000px;}
.x124_c00446{left:559.200000px;}
.xf2_c00446{left:560.250000px;}
.x115_c00446{left:562.200000px;}
.xc2_c00446{left:564.000000px;}
.x12b_c00446{left:570.450000px;}
.x11e_c00446{left:571.500000px;}
.x9f_c00446{left:572.850000px;}
.x9b_c00446{left:574.650000px;}
.x12d_c00446{left:576.000000px;}
.xf9_c00446{left:577.500000px;}
.xb6_c00446{left:579.150000px;}
.x102_c00446{left:581.700000px;}
.xf3_c00446{left:584.700000px;}
.xae_c00446{left:588.000000px;}
.x11f_c00446{left:590.550000px;}
.xdd_c00446{left:592.050000px;}
.x10d_c00446{left:593.250000px;}
.xb7_c00446{left:596.400000px;}
.x121_c00446{left:599.550000px;}
.xa0_c00446{left:600.900000px;}
.xab_c00446{left:604.200000px;}
.xce_c00446{left:607.650000px;}
.xbc_c00446{left:609.600000px;}
.xf4_c00446{left:610.950000px;}
.x12a_c00446{left:612.900000px;}
.xcb_c00446{left:614.850000px;}
.xc3_c00446{left:615.900000px;}
.x103_c00446{left:617.400000px;}
.x116_c00446{left:618.750000px;}
.xd3_c00446{left:620.700000px;}
.x111_c00446{left:623.400000px;}
.xac_c00446{left:624.750000px;}
.xa7_c00446{left:626.250000px;}
.xfa_c00446{left:629.700000px;}
.x9c_c00446{left:632.250000px;}
.x10e_c00446{left:635.700000px;}
.xa1_c00446{left:637.200000px;}
.xf5_c00446{left:638.250000px;}
.x11a_c00446{left:640.200000px;}
.x112_c00446{left:642.450000px;}
.xbd_c00446{left:644.850000px;}
.xe1_c00446{left:646.500000px;}
.xd4_c00446{left:651.000000px;}
.x107_c00446{left:652.050000px;}
.x9d_c00446{left:653.100000px;}
.xd8_c00446{left:654.750000px;}
.xdf_c00446{left:656.250000px;}
.xc7_c00446{left:658.350000px;}
.x11b_c00446{left:660.600000px;}
.xfe_c00446{left:664.050000px;}
.xf6_c00446{left:665.250000px;}
.x125_c00446{left:667.200000px;}
.x129_c00446{left:668.700000px;}
.xaf_c00446{left:670.500000px;}
.x12c_c00446{left:672.900000px;}
.xb8_c00446{left:674.250000px;}
.xfb_c00446{left:675.450000px;}
.xcf_c00446{left:676.800000px;}
.xd5_c00446{left:679.500000px;}
.x108_c00446{left:681.600000px;}
.xa8_c00446{left:682.800000px;}
.xc4_c00446{left:686.850000px;}
.x101_c00446{left:688.200000px;}
.xe9_c00446{left:691.650000px;}
.xd9_c00446{left:692.850000px;}
.xcc_c00446{left:695.100000px;}
.x117_c00446{left:696.600000px;}
.xe2_c00446{left:697.950000px;}
.x12e_c00446{left:700.050000px;}
.x126_c00446{left:701.100000px;}
.x120_c00446{left:702.300000px;}
.xec_c00446{left:706.050000px;}
.xe0_c00446{left:707.400000px;}
.xb9_c00446{left:708.750000px;}
.xda_c00446{left:714.150000px;}
.xe3_c00446{left:715.950000px;}
.xf7_c00446{left:718.500000px;}
.xa2_c00446{left:722.100000px;}
.x118_c00446{left:723.600000px;}
.xed_c00446{left:725.100000px;}
.x109_c00446{left:727.350000px;}
.xd6_c00446{left:729.600000px;}
.x11c_c00446{left:731.250000px;}
.xe4_c00446{left:738.600000px;}
.xd0_c00446{left:742.350000px;}
.xb0_c00446{left:744.300000px;}
.xbe_c00446{left:745.350000px;}
.xc8_c00446{left:749.400000px;}
.xe5_c00446{left:756.600000px;}
.xd1_c00446{left:758.250000px;}
.x104_c00446{left:759.600000px;}
.xbf_c00446{left:762.600000px;}
.xc5_c00446{left:766.800000px;}
.xba_c00446{left:770.250000px;}
.xa3_c00446{left:772.800000px;}
.xfd_c00446{left:774.150000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls3_c00446{letter-spacing:0.000000pt;}
.ls2_c00446{letter-spacing:49.523810pt;}
.ls1_c00446{letter-spacing:62.222222pt;}
.ls0_c00446{letter-spacing:65.925926pt;}
.ws7_c00446{word-spacing:-92.592593pt;}
.ws8_c00446{word-spacing:-88.888889pt;}
.wsd_c00446{word-spacing:-76.190476pt;}
.ws0_c00446{word-spacing:-10.440626pt;}
.wsf_c00446{word-spacing:0.000000pt;}
.ws1_c00446{word-spacing:2.309125pt;}
.ws4_c00446{word-spacing:9.455113pt;}
.ws2_c00446{word-spacing:11.331423pt;}
.ws5_c00446{word-spacing:19.682540pt;}
.ws3_c00446{word-spacing:20.632708pt;}
.ws9_c00446{word-spacing:22.857143pt;}
.ws6_c00446{word-spacing:23.492404pt;}
.wsa_c00446{word-spacing:26.031746pt;}
.wsc_c00446{word-spacing:35.555556pt;}
.wsb_c00446{word-spacing:39.259259pt;}
.wse_c00446{word-spacing:53.333333pt;}
._2_c00446{margin-left:-65.925926pt;}
._3_c00446{margin-left:-62.222222pt;}
._6_c00446{margin-left:-49.523810pt;}
._4_c00446{width:46.349206pt;}
._0_c00446{width:47.492404pt;}
._1_c00446{width:49.523810pt;}
._5_c00446{width:1062.222222pt;}
.fs6_c00446{font-size:26.666667pt;}
.fs4_c00446{font-size:42.666667pt;}
.fs5_c00446{font-size:48.000000pt;}
.fs2_c00446{font-size:53.333333pt;}
.fs3_c00446{font-size:58.666667pt;}
.fs1_c00446{font-size:64.000000pt;}
.fs0_c00446{font-size:74.666667pt;}
.y0_c00446{bottom:0.000000pt;}
.y64_c00446{bottom:160.666667pt;}
.y30_c00446{bottom:165.466667pt;}
.y63_c00446{bottom:174.133333pt;}
.y2f_c00446{bottom:181.466667pt;}
.y62_c00446{bottom:186.266667pt;}
.y2e_c00446{bottom:196.800000pt;}
.y61_c00446{bottom:199.733333pt;}
.y60_c00446{bottom:212.800000pt;}
.y2d_c00446{bottom:216.933333pt;}
.y5f_c00446{bottom:225.600000pt;}
.y2c_c00446{bottom:232.666667pt;}
.y5e_c00446{bottom:238.800000pt;}
.y5d_c00446{bottom:251.866667pt;}
.y2b_c00446{bottom:252.533333pt;}
.y5c_c00446{bottom:264.666667pt;}
.y2a_c00446{bottom:268.533333pt;}
.y5b_c00446{bottom:277.466667pt;}
.y29_c00446{bottom:284.533333pt;}
.y5a_c00446{bottom:290.533333pt;}
.y28_c00446{bottom:300.533333pt;}
.y59_c00446{bottom:303.066667pt;}
.y58_c00446{bottom:315.866667pt;}
.y27_c00446{bottom:320.666667pt;}
.y57_c00446{bottom:328.666667pt;}
.y26_c00446{bottom:340.800000pt;}
.y56_c00446{bottom:341.466667pt;}
.y55_c00446{bottom:354.533333pt;}
.y25_c00446{bottom:360.666667pt;}
.y24_c00446{bottom:376.933333pt;}
.y23_c00446{bottom:392.000000pt;}
.y54_c00446{bottom:392.666667pt;}
.y22_c00446{bottom:408.266667pt;}
.y53_c00446{bottom:408.933333pt;}
.y21_c00446{bottom:428.133333pt;}
.y52_c00446{bottom:432.666667pt;}
.y20_c00446{bottom:447.333333pt;}
.y51_c00446{bottom:447.600000pt;}
.y50_c00446{bottom:464.533333pt;}
.y1f_c00446{bottom:466.666667pt;}
.y4f_c00446{bottom:480.533333pt;}
.y1e_c00446{bottom:482.933333pt;}
.y4e_c00446{bottom:496.266667pt;}
.y1d_c00446{bottom:498.933333pt;}
.y4d_c00446{bottom:512.533333pt;}
.y1c_c00446{bottom:514.933333pt;}
.y4c_c00446{bottom:528.533333pt;}
.y1b_c00446{bottom:535.066667pt;}
.y4b_c00446{bottom:544.266667pt;}
.y1a_c00446{bottom:554.533333pt;}
.y4a_c00446{bottom:564.400000pt;}
.y19_c00446{bottom:570.533333pt;}
.y49_c00446{bottom:580.133333pt;}
.y18_c00446{bottom:588.133333pt;}
.y17_c00446{bottom:595.466667pt;}
.y48_c00446{bottom:612.133333pt;}
.y16_c00446{bottom:624.266667pt;}
.y47_c00446{bottom:627.866667pt;}
.y46_c00446{bottom:643.866667pt;}
.y15_c00446{bottom:651.466667pt;}
.y45_c00446{bottom:664.000000pt;}
.y14_c00446{bottom:667.200000pt;}
.y44_c00446{bottom:680.000000pt;}
.y43_c00446{bottom:695.733333pt;}
.y13_c00446{bottom:701.466667pt;}
.y42_c00446{bottom:712.000000pt;}
.y41_c00446{bottom:727.733333pt;}
.y12_c00446{bottom:736.933333pt;}
.y40_c00446{bottom:744.000000pt;}
.y11_c00446{bottom:753.600000pt;}
.y3f_c00446{bottom:759.333333pt;}
.y3e_c00446{bottom:775.333333pt;}
.yf_c00446{bottom:781.333333pt;}
.y3d_c00446{bottom:791.333333pt;}
.ye_c00446{bottom:797.600000pt;}
.y3c_c00446{bottom:807.333333pt;}
.yd_c00446{bottom:813.333333pt;}
.y3b_c00446{bottom:823.333333pt;}
.yc_c00446{bottom:829.066667pt;}
.y3a_c00446{bottom:842.933333pt;}
.yb_c00446{bottom:845.066667pt;}
.y39_c00446{bottom:862.666667pt;}
.ya_c00446{bottom:864.800000pt;}
.y38_c00446{bottom:878.400000pt;}
.y9_c00446{bottom:880.800000pt;}
.y8_c00446{bottom:896.533333pt;}
.y37_c00446{bottom:898.666667pt;}
.y7_c00446{bottom:912.533333pt;}
.y36_c00446{bottom:914.666667pt;}
.y6_c00446{bottom:928.266667pt;}
.y35_c00446{bottom:930.933333pt;}
.y5_c00446{bottom:944.533333pt;}
.y34_c00446{bottom:950.000000pt;}
.y4_c00446{bottom:960.266667pt;}
.y33_c00446{bottom:969.866667pt;}
.y3_c00446{bottom:976.000000pt;}
.y32_c00446{bottom:989.733333pt;}
.y2_c00446{bottom:992.000000pt;}
.y10_c00446{bottom:996.533333pt;}
.y1_c00446{bottom:1014.400000pt;}
.y31_c00446{bottom:1125.066667pt;}
.h7_c00446{height:26.666667pt;}
.h5_c00446{height:42.666667pt;}
.h6_c00446{height:48.000000pt;}
.h3_c00446{height:53.333333pt;}
.h4_c00446{height:58.666667pt;}
.h2_c00446{height:64.000000pt;}
.h1_c00446{height:74.666667pt;}
.h0_c00446{height:1128.000000pt;}
.w0_c00446{width:851.840007pt;}
.w1_c00446{width:852.000000pt;}
.x0_c00446{left:0.000000pt;}
.x50_c00446{left:76.800000pt;}
.x48_c00446{left:78.666667pt;}
.x41_c00446{left:81.333333pt;}
.x8b_c00446{left:85.466667pt;}
.x86_c00446{left:87.066667pt;}
.x78_c00446{left:88.266667pt;}
.x74_c00446{left:89.200000pt;}
.x6e_c00446{left:90.666667pt;}
.x5f_c00446{left:91.600000pt;}
.x54_c00446{left:92.666667pt;}
.x4e_c00446{left:94.800000pt;}
.x34_c00446{left:96.400000pt;}
.x2b_c00446{left:97.466667pt;}
.x3_c00446{left:98.533333pt;}
.x88_c00446{left:101.733333pt;}
.x80_c00446{left:103.333333pt;}
.x7f_c00446{left:104.266667pt;}
.x6f_c00446{left:105.733333pt;}
.x42_c00446{left:107.200000pt;}
.x5a_c00446{left:108.533333pt;}
.x6c_c00446{left:110.933333pt;}
.x90_c00446{left:112.133333pt;}
.x31_c00446{left:113.333333pt;}
.x15_c00446{left:115.066667pt;}
.x25_c00446{left:116.800000pt;}
.x82_c00446{left:120.133333pt;}
.x7a_c00446{left:124.266667pt;}
.x4_c00446{left:125.733333pt;}
.x91_c00446{left:126.800000pt;}
.x37_c00446{left:127.866667pt;}
.x4f_c00446{left:129.333333pt;}
.x21_c00446{left:130.533333pt;}
.x89_c00446{left:132.400000pt;}
.x79_c00446{left:133.333333pt;}
.x55_c00446{left:135.866667pt;}
.x67_c00446{left:137.200000pt;}
.x26_c00446{left:138.533333pt;}
.x7d_c00446{left:139.466667pt;}
.xa_c00446{left:142.800000pt;}
.x5_c00446{left:144.000000pt;}
.x73_c00446{left:144.933333pt;}
.x10_c00446{left:149.600000pt;}
.x3f_c00446{left:150.933333pt;}
.x8c_c00446{left:152.000000pt;}
.x1b_c00446{left:154.533333pt;}
.x60_c00446{left:156.533333pt;}
.x63_c00446{left:157.466667pt;}
.x7b_c00446{left:158.800000pt;}
.x16_c00446{left:160.533333pt;}
.x70_c00446{left:162.266667pt;}
.x22_c00446{left:163.200000pt;}
.x5b_c00446{left:166.133333pt;}
.x11_c00446{left:167.866667pt;}
.x49_c00446{left:170.533333pt;}
.x87_c00446{left:172.533333pt;}
.x2c_c00446{left:175.600000pt;}
.x43_c00446{left:177.866667pt;}
.x27_c00446{left:179.866667pt;}
.x6_c00446{left:184.000000pt;}
.x68_c00446{left:185.200000pt;}
.x45_c00446{left:187.066667pt;}
.x3d_c00446{left:188.266667pt;}
.x84_c00446{left:189.200000pt;}
.x56_c00446{left:190.266667pt;}
.xb_c00446{left:194.666667pt;}
.x92_c00446{left:196.266667pt;}
.x71_c00446{left:197.466667pt;}
.x28_c00446{left:200.933333pt;}
.x75_c00446{left:201.866667pt;}
.x64_c00446{left:204.533333pt;}
.x46_c00446{left:208.133333pt;}
.x38_c00446{left:210.400000pt;}
.x2d_c00446{left:213.066667pt;}
.x1c_c00446{left:215.333333pt;}
.x17_c00446{left:218.133333pt;}
.x76_c00446{left:220.400000pt;}
.x35_c00446{left:221.466667pt;}
.x8a_c00446{left:223.066667pt;}
.x4a_c00446{left:224.266667pt;}
.x57_c00446{left:225.733333pt;}
.x23_c00446{left:227.200000pt;}
.x5c_c00446{left:230.800000pt;}
.x72_c00446{left:232.400000pt;}
.x47_c00446{left:234.533333pt;}
.x12_c00446{left:236.666667pt;}
.x77_c00446{left:239.333333pt;}
.x44_c00446{left:240.933333pt;}
.x61_c00446{left:243.866667pt;}
.x2e_c00446{left:247.600000pt;}
.x1d_c00446{left:249.200000pt;}
.x5d_c00446{left:251.600000pt;}
.x18_c00446{left:252.666667pt;}
.xc_c00446{left:254.533333pt;}
.x51_c00446{left:256.000000pt;}
.x4b_c00446{left:260.800000pt;}
.x7_c00446{left:262.133333pt;}
.x13_c00446{left:263.200000pt;}
.x52_c00446{left:265.600000pt;}
.x85_c00446{left:268.533333pt;}
.x1e_c00446{left:271.333333pt;}
.x7e_c00446{left:273.866667pt;}
.x65_c00446{left:276.800000pt;}
.x58_c00446{left:280.400000pt;}
.xd_c00446{left:282.400000pt;}
.x62_c00446{left:283.866667pt;}
.x7c_c00446{left:284.933333pt;}
.x69_c00446{left:287.200000pt;}
.x5e_c00446{left:289.066667pt;}
.x39_c00446{left:290.800000pt;}
.x32_c00446{left:292.800000pt;}
.x4c_c00446{left:296.000000pt;}
.x1_c00446{left:297.333333pt;}
.x36_c00446{left:298.533333pt;}
.xe_c00446{left:301.333333pt;}
.x24_c00446{left:302.400000pt;}
.x29_c00446{left:303.866667pt;}
.x6a_c00446{left:308.000000pt;}
.x3a_c00446{left:309.066667pt;}
.x2f_c00446{left:310.000000pt;}
.x8_c00446{left:313.333333pt;}
.x14_c00446{left:316.000000pt;}
.x1f_c00446{left:317.466667pt;}
.x53_c00446{left:318.666667pt;}
.x6d_c00446{left:320.400000pt;}
.x6b_c00446{left:325.333333pt;}
.x30_c00446{left:326.933333pt;}
.x3b_c00446{left:329.600000pt;}
.x83_c00446{left:332.266667pt;}
.x8d_c00446{left:333.866667pt;}
.x59_c00446{left:336.800000pt;}
.x8e_c00446{left:337.733333pt;}
.x3e_c00446{left:339.733333pt;}
.x20_c00446{left:340.800000pt;}
.x81_c00446{left:341.866667pt;}
.x4d_c00446{left:343.066667pt;}
.x66_c00446{left:344.000000pt;}
.x2a_c00446{left:348.933333pt;}
.x8f_c00446{left:351.200000pt;}
.xf_c00446{left:354.400000pt;}
.x33_c00446{left:358.133333pt;}
.x9_c00446{left:360.400000pt;}
.x19_c00446{left:361.866667pt;}
.x3c_c00446{left:366.133333pt;}
.x2_c00446{left:368.666667pt;}
.x1a_c00446{left:374.000000pt;}
.x40_c00446{left:376.666667pt;}
.x93_c00446{left:382.133333pt;}
.x94_c00446{left:386.933333pt;}
.x113_c00446{left:389.066667pt;}
.x10b_c00446{left:390.666667pt;}
.xee_c00446{left:394.533333pt;}
.xe7_c00446{left:395.866667pt;}
.xbb_c00446{left:398.133333pt;}
.x122_c00446{left:400.666667pt;}
.x119_c00446{left:401.600000pt;}
.x95_c00446{left:404.533333pt;}
.x10f_c00446{left:405.866667pt;}
.x105_c00446{left:407.066667pt;}
.xfc_c00446{left:408.666667pt;}
.xf0_c00446{left:409.600000pt;}
.xea_c00446{left:411.333333pt;}
.xe6_c00446{left:412.666667pt;}
.xc0_c00446{left:413.600000pt;}
.xb1_c00446{left:414.933333pt;}
.xa4_c00446{left:415.866667pt;}
.x123_c00446{left:421.200000pt;}
.x10a_c00446{left:422.133333pt;}
.xf1_c00446{left:426.266667pt;}
.xdb_c00446{left:427.733333pt;}
.x10c_c00446{left:428.800000pt;}
.xb4_c00446{left:431.333333pt;}
.x99_c00446{left:433.333333pt;}
.x97_c00446{left:434.933333pt;}
.xa5_c00446{left:437.333333pt;}
.xc9_c00446{left:441.200000pt;}
.x114_c00446{left:443.466667pt;}
.xd2_c00446{left:444.533333pt;}
.xc1_c00446{left:446.266667pt;}
.xb2_c00446{left:448.266667pt;}
.xb5_c00446{left:452.400000pt;}
.xff_c00446{left:455.600000pt;}
.xca_c00446{left:457.466667pt;}
.xeb_c00446{left:459.600000pt;}
.xf8_c00446{left:461.466667pt;}
.x11d_c00446{left:462.533333pt;}
.xb3_c00446{left:464.000000pt;}
.xef_c00446{left:465.200000pt;}
.xcd_c00446{left:467.200000pt;}
.x96_c00446{left:468.533333pt;}
.x127_c00446{left:470.533333pt;}
.xdc_c00446{left:471.600000pt;}
.x9e_c00446{left:472.666667pt;}
.xa9_c00446{left:473.733333pt;}
.x106_c00446{left:475.200000pt;}
.x98_c00446{left:476.266667pt;}
.xa6_c00446{left:479.866667pt;}
.xd7_c00446{left:481.066667pt;}
.x128_c00446{left:482.400000pt;}
.x110_c00446{left:483.333333pt;}
.xaa_c00446{left:484.266667pt;}
.xe8_c00446{left:485.466667pt;}
.xad_c00446{left:487.733333pt;}
.xc6_c00446{left:489.200000pt;}
.x9a_c00446{left:493.200000pt;}
.x100_c00446{left:494.933333pt;}
.xde_c00446{left:496.000000pt;}
.x124_c00446{left:497.066667pt;}
.xf2_c00446{left:498.000000pt;}
.x115_c00446{left:499.733333pt;}
.xc2_c00446{left:501.333333pt;}
.x12b_c00446{left:507.066667pt;}
.x11e_c00446{left:508.000000pt;}
.x9f_c00446{left:509.200000pt;}
.x9b_c00446{left:510.800000pt;}
.x12d_c00446{left:512.000000pt;}
.xf9_c00446{left:513.333333pt;}
.xb6_c00446{left:514.800000pt;}
.x102_c00446{left:517.066667pt;}
.xf3_c00446{left:519.733333pt;}
.xae_c00446{left:522.666667pt;}
.x11f_c00446{left:524.933333pt;}
.xdd_c00446{left:526.266667pt;}
.x10d_c00446{left:527.333333pt;}
.xb7_c00446{left:530.133333pt;}
.x121_c00446{left:532.933333pt;}
.xa0_c00446{left:534.133333pt;}
.xab_c00446{left:537.066667pt;}
.xce_c00446{left:540.133333pt;}
.xbc_c00446{left:541.866667pt;}
.xf4_c00446{left:543.066667pt;}
.x12a_c00446{left:544.800000pt;}
.xcb_c00446{left:546.533333pt;}
.xc3_c00446{left:547.466667pt;}
.x103_c00446{left:548.800000pt;}
.x116_c00446{left:550.000000pt;}
.xd3_c00446{left:551.733333pt;}
.x111_c00446{left:554.133333pt;}
.xac_c00446{left:555.333333pt;}
.xa7_c00446{left:556.666667pt;}
.xfa_c00446{left:559.733333pt;}
.x9c_c00446{left:562.000000pt;}
.x10e_c00446{left:565.066667pt;}
.xa1_c00446{left:566.400000pt;}
.xf5_c00446{left:567.333333pt;}
.x11a_c00446{left:569.066667pt;}
.x112_c00446{left:571.066667pt;}
.xbd_c00446{left:573.200000pt;}
.xe1_c00446{left:574.666667pt;}
.xd4_c00446{left:578.666667pt;}
.x107_c00446{left:579.600000pt;}
.x9d_c00446{left:580.533333pt;}
.xd8_c00446{left:582.000000pt;}
.xdf_c00446{left:583.333333pt;}
.xc7_c00446{left:585.200000pt;}
.x11b_c00446{left:587.200000pt;}
.xfe_c00446{left:590.266667pt;}
.xf6_c00446{left:591.333333pt;}
.x125_c00446{left:593.066667pt;}
.x129_c00446{left:594.400000pt;}
.xaf_c00446{left:596.000000pt;}
.x12c_c00446{left:598.133333pt;}
.xb8_c00446{left:599.333333pt;}
.xfb_c00446{left:600.400000pt;}
.xcf_c00446{left:601.600000pt;}
.xd5_c00446{left:604.000000pt;}
.x108_c00446{left:605.866667pt;}
.xa8_c00446{left:606.933333pt;}
.xc4_c00446{left:610.533333pt;}
.x101_c00446{left:611.733333pt;}
.xe9_c00446{left:614.800000pt;}
.xd9_c00446{left:615.866667pt;}
.xcc_c00446{left:617.866667pt;}
.x117_c00446{left:619.200000pt;}
.xe2_c00446{left:620.400000pt;}
.x12e_c00446{left:622.266667pt;}
.x126_c00446{left:623.200000pt;}
.x120_c00446{left:624.266667pt;}
.xec_c00446{left:627.600000pt;}
.xe0_c00446{left:628.800000pt;}
.xb9_c00446{left:630.000000pt;}
.xda_c00446{left:634.800000pt;}
.xe3_c00446{left:636.400000pt;}
.xf7_c00446{left:638.666667pt;}
.xa2_c00446{left:641.866667pt;}
.x118_c00446{left:643.200000pt;}
.xed_c00446{left:644.533333pt;}
.x109_c00446{left:646.533333pt;}
.xd6_c00446{left:648.533333pt;}
.x11c_c00446{left:650.000000pt;}
.xe4_c00446{left:656.533333pt;}
.xd0_c00446{left:659.866667pt;}
.xb0_c00446{left:661.600000pt;}
.xbe_c00446{left:662.533333pt;}
.xc8_c00446{left:666.133333pt;}
.xe5_c00446{left:672.533333pt;}
.xd1_c00446{left:674.000000pt;}
.x104_c00446{left:675.200000pt;}
.xbf_c00446{left:677.866667pt;}
.xc5_c00446{left:681.600000pt;}
.xba_c00446{left:684.666667pt;}
.xa3_c00446{left:686.933333pt;}
.xfd_c00446{left:688.133333pt;}
}





/* 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_c00447 {
    display:none;
  }
  .loading-indicator_c00447.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00447 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_c00447 { 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_c00447" -> "#page-container .classname_c00447")
 */
.pf_c00447 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00447 { /* 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_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00447 { /* 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_c00447 { /* 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_c00447 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00447 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00447 {overflow:visible;}
  }
}
.c_c00447 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00447 { /* 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_c00447:after { /* webkit #35443 */
  content: '';
}
.t_c00447:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00447 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 */
}
.__c00447 { /* 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_c00447 { /* info for Javascript */
  display:none;
}
.l_c00447 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00447 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00447 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00447: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_c00447 {
    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_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00447.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_c00447 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00447;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.000000;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;}
.m9c_c00447{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00447{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.maa_c00447{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m95_c00447{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00447{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m122_c00447{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m64_c00447{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00447{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m109_c00447{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m132_c00447{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00447{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m38_c00447{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m119_c00447{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m15_c00447{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m20_c00447{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m39_c00447{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00447{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.me_c00447{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00447{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00447{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m71_c00447{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00447{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m133_c00447{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00447{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mf_c00447{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00447{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00447{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m69_c00447{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m127_c00447{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.mac_c00447{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00447{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m43_c00447{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00447{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m30_c00447{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00447{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00447{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m112_c00447{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m49_c00447{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m134_c00447{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00447{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00447{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00447{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m113_c00447{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c00447{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m25_c00447{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mce_c00447{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m61_c00447{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m78_c00447{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m26_c00447{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00447{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00447{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00447{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m66_c00447{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m107_c00447{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m17_c00447{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7_c00447{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00447{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m21_c00447{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m70_c00447{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00447{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m79_c00447{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m85_c00447{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00447{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m99_c00447{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m57_c00447{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00447{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m5_c00447{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00447{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00447{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m88_c00447{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00447{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00447{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m100_c00447{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00447{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md7_c00447{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00447{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m92_c00447{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00447{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m86_c00447{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00447{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m110_c00447{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00447{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00447{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m104_c00447{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00447{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00447{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m137_c00447{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m73_c00447{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m83_c00447{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m108_c00447{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m33_c00447{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m76_c00447{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m82_c00447{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m46_c00447{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m8_c00447{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mae_c00447{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m94_c00447{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mca_c00447{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00447{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00447{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m105_c00447{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00447{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4_c00447{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m96_c00447{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00447{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00447{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00447{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m111_c00447{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m29_c00447{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m123_c00447{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m67_c00447{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m48_c00447{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00447{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00447{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m60_c00447{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00447{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m22_c00447{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mad_c00447{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m54_c00447{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00447{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m16_c00447{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00447{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00447{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m58_c00447{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m124_c00447{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00447{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m37_c00447{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me5_c00447{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m103_c00447{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m28_c00447{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m130_c00447{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00447{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00447{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00447{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m74_c00447{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00447{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mab_c00447{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m116_c00447{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m75_c00447{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00447{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m56_c00447{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mff_c00447{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m53_c00447{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00447{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00447{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00447{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00447{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9_c00447{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00447{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m84_c00447{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m50_c00447{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me0_c00447{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00447{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00447{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md5_c00447{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00447{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma_c00447{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00447{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m27_c00447{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m72_c00447{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m90_c00447{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m77_c00447{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m87_c00447{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m62_c00447{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m41_c00447{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m89_c00447{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m59_c00447{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00447{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00447{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m63_c00447{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00447{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m68_c00447{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6_c00447{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m129_c00447{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00447{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00447{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m65_c00447{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00447{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00447{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00447{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00447{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md6_c00447{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m31_c00447{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00447{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00447{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00447{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00447{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00447{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m55_c00447{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m45_c00447{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m40_c00447{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m24_c00447{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00447{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00447{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m138_c00447{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00447{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00447{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00447{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00447{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m106_c00447{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00447{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00447{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m81_c00447{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00447{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00447{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m98_c00447{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m52_c00447{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00447{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00447{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m18_c00447{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00447{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md8_c00447{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00447{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3_c00447{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mc_c00447{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00447{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00447{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00447{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md3_c00447{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m80_c00447{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00447{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00447{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.md9_c00447{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md4_c00447{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.me7_c00447{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m102_c00447{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00447{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00447{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00447{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00447{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m35_c00447{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mba_c00447{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00447{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md_c00447{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m118_c00447{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m51_c00447{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00447{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00447{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00447{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.maf_c00447{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00447{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00447{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m47_c00447{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00447{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m19_c00447{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00447{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00447{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md1_c00447{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2_c00447{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00447{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m23_c00447{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mde_c00447{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m120_c00447{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m91_c00447{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00447{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mda_c00447{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mea_c00447{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mee_c00447{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me2_c00447{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);}
.me9_c00447{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m42_c00447{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00447{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11_c00447{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00447{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m97_c00447{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m93_c00447{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.me6_c00447{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00447{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m101_c00447{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00447{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00447{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.md0_c00447{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00447{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m34_c00447{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me4_c00447{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m36_c00447{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00447{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mb_c00447{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m125_c00447{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00447{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00447{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.me3_c00447{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00447{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m14_c00447{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m12_c00447{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m117_c00447{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m121_c00447{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m44_c00447{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md2_c00447{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mec_c00447{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m131_c00447{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00447{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me1_c00447{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.m135_c00447{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m114_c00447{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m115_c00447{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m136_c00447{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.meb_c00447{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.mef_c00447{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00447{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00447{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00447{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m126_c00447{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m1_c00447{transform:matrix(0.446500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446500,0.000000,0.000000,0.250000,0,0);}
.m32_c00447{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m128_c00447{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00447{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m13_c00447{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00447{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.med_c00447{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.me8_c00447{transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00447{transform:matrix(12.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(12.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(12.453250,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls4_c00447{letter-spacing:0.000000px;}
.ls0_c00447{letter-spacing:45.000000px;}
.ls2_c00447{letter-spacing:55.714286px;}
.ls1_c00447{letter-spacing:57.491803px;}
.ls3_c00447{letter-spacing:74.166667px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{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__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws24_c00447{word-spacing:-104.166667px;}
.ws15_c00447{word-spacing:-90.491803px;}
.ws23_c00447{word-spacing:-85.714286px;}
.ws5_c00447{word-spacing:-75.000000px;}
.ws10_c00447{word-spacing:-10.142857px;}
.ws22_c00447{word-spacing:-7.857143px;}
.ws13_c00447{word-spacing:-6.857143px;}
.ws12_c00447{word-spacing:-4.204545px;}
.ws2b_c00447{word-spacing:0.000000px;}
.ws1e_c00447{word-spacing:0.810811px;}
.wsd_c00447{word-spacing:1.099344px;}
.ws1f_c00447{word-spacing:1.944444px;}
.ws8_c00447{word-spacing:7.187500px;}
.ws20_c00447{word-spacing:9.000000px;}
.ws28_c00447{word-spacing:10.459016px;}
.ws1_c00447{word-spacing:10.637002px;}
.ws3_c00447{word-spacing:13.447307px;}
.ws18_c00447{word-spacing:15.000000px;}
.ws19_c00447{word-spacing:15.168901px;}
.ws27_c00447{word-spacing:15.500000px;}
.ws17_c00447{word-spacing:16.521490px;}
.ws21_c00447{word-spacing:16.785714px;}
.ws11_c00447{word-spacing:17.142857px;}
.ws2a_c00447{word-spacing:18.000000px;}
.ws1b_c00447{word-spacing:18.125000px;}
.wsc_c00447{word-spacing:19.959885px;}
.ws0_c00447{word-spacing:19.994638px;}
.ws29_c00447{word-spacing:20.500000px;}
.wsb_c00447{word-spacing:22.142857px;}
.ws2_c00447{word-spacing:23.211796px;}
.ws16_c00447{word-spacing:24.491803px;}
.wsa_c00447{word-spacing:25.714286px;}
.ws4_c00447{word-spacing:26.428954px;}
.ws7_c00447{word-spacing:29.285714px;}
.ws26_c00447{word-spacing:30.500000px;}
.ws1d_c00447{word-spacing:34.642857px;}
.ws1a_c00447{word-spacing:40.000000px;}
.ws14_c00447{word-spacing:48.503817px;}
.ws25_c00447{word-spacing:50.416667px;}
.wse_c00447{word-spacing:60.906219px;}
.wsf_c00447{word-spacing:67.333333px;}
.ws6_c00447{word-spacing:67.631579px;}
.ws1c_c00447{word-spacing:126.111111px;}
.ws9_c00447{word-spacing:126.538462px;}
._11_c00447{margin-left:-74.166667px;}
._8_c00447{margin-left:-57.491803px;}
._f_c00447{margin-left:-55.714286px;}
._4_c00447{margin-left:-45.000000px;}
._10_c00447{margin-left:-8.333333px;}
._12_c00447{width:39.000000px;}
._1_c00447{width:43.257611px;}
._3_c00447{width:46.994638px;}
._b_c00447{width:48.125000px;}
._2_c00447{width:50.211796px;}
._5_c00447{width:52.812500px;}
._a_c00447{width:55.714286px;}
._0_c00447{width:58.254692px;}
._6_c00447{width:59.285714px;}
._e_c00447{width:64.642857px;}
._d_c00447{width:68.214286px;}
._9_c00447{width:71.262295px;}
._c_c00447{width:74.166667px;}
._7_c00447{width:312.857143px;}
.fc0_c00447{color:transparent;}
.fs7_c00447{font-size:42.000000px;}
.fs3_c00447{font-size:54.000000px;}
.fs2_c00447{font-size:60.000000px;}
.fs4_c00447{font-size:66.000000px;}
.fs6_c00447{font-size:72.000000px;}
.fs5_c00447{font-size:78.000000px;}
.fs1_c00447{font-size:84.000000px;}
.fs0_c00447{font-size:102.000000px;}
.y0_c00447{bottom:0.000000px;}
.y6e_c00447{bottom:183.900000px;}
.y71_c00447{bottom:189.300000px;}
.y5e_c00447{bottom:198.300000px;}
.y70_c00447{bottom:203.700000px;}
.y5d_c00447{bottom:212.700000px;}
.y6f_c00447{bottom:218.100000px;}
.y5c_c00447{bottom:226.800000px;}
.y5b_c00447{bottom:243.300000px;}
.y34_c00447{bottom:273.600000px;}
.y6d_c00447{bottom:276.750000px;}
.y33_c00447{bottom:290.850000px;}
.y6c_c00447{bottom:292.650000px;}
.y6b_c00447{bottom:305.250000px;}
.y32_c00447{bottom:309.300000px;}
.y6a_c00447{bottom:321.150000px;}
.y69_c00447{bottom:334.800000px;}
.y31_c00447{bottom:335.850000px;}
.y68_c00447{bottom:348.900000px;}
.y30_c00447{bottom:353.550000px;}
.y67_c00447{bottom:363.600000px;}
.y2f_c00447{bottom:371.100000px;}
.y66_c00447{bottom:378.300000px;}
.y2e_c00447{bottom:388.800000px;}
.y65_c00447{bottom:392.700000px;}
.y2d_c00447{bottom:406.500000px;}
.y64_c00447{bottom:406.800000px;}
.y63_c00447{bottom:423.000000px;}
.y2c_c00447{bottom:424.500000px;}
.y62_c00447{bottom:436.350000px;}
.y2b_c00447{bottom:442.800000px;}
.y61_c00447{bottom:451.050000px;}
.y2a_c00447{bottom:460.800000px;}
.y60_c00447{bottom:465.450000px;}
.y29_c00447{bottom:479.100000px;}
.y5f_c00447{bottom:479.850000px;}
.y5a_c00447{bottom:494.700000px;}
.y28_c00447{bottom:496.800000px;}
.y59_c00447{bottom:509.100000px;}
.y27_c00447{bottom:514.800000px;}
.y58_c00447{bottom:523.800000px;}
.y26_c00447{bottom:533.100000px;}
.y57_c00447{bottom:537.900000px;}
.y25_c00447{bottom:551.100000px;}
.y56_c00447{bottom:552.300000px;}
.y55_c00447{bottom:566.400000px;}
.y24_c00447{bottom:569.100000px;}
.y54_c00447{bottom:580.800000px;}
.y23_c00447{bottom:591.750000px;}
.y53_c00447{bottom:595.500000px;}
.y22_c00447{bottom:609.450000px;}
.y52_c00447{bottom:609.900000px;}
.y51_c00447{bottom:624.300000px;}
.y21_c00447{bottom:627.450000px;}
.y50_c00447{bottom:639.750000px;}
.y20_c00447{bottom:645.750000px;}
.y4f_c00447{bottom:653.400000px;}
.y1f_c00447{bottom:663.750000px;}
.y4e_c00447{bottom:667.800000px;}
.y1e_c00447{bottom:681.450000px;}
.y4d_c00447{bottom:682.200000px;}
.y4c_c00447{bottom:696.600000px;}
.y1d_c00447{bottom:699.750000px;}
.y4b_c00447{bottom:711.000000px;}
.y1c_c00447{bottom:717.750000px;}
.y4a_c00447{bottom:725.700000px;}
.y1b_c00447{bottom:735.750000px;}
.y49_c00447{bottom:741.300000px;}
.y1a_c00447{bottom:753.450000px;}
.y48_c00447{bottom:765.300000px;}
.y19_c00447{bottom:771.450000px;}
.y47_c00447{bottom:783.300000px;}
.y18_c00447{bottom:789.450000px;}
.y17_c00447{bottom:807.450000px;}
.y46_c00447{bottom:810.000000px;}
.y16_c00447{bottom:825.150000px;}
.y45_c00447{bottom:828.300000px;}
.y15_c00447{bottom:843.150000px;}
.y44_c00447{bottom:844.500000px;}
.y35_c00447{bottom:846.000000px;}
.y14_c00447{bottom:861.450000px;}
.y43_c00447{bottom:864.300000px;}
.y13_c00447{bottom:879.450000px;}
.y42_c00447{bottom:882.000000px;}
.y12_c00447{bottom:897.450000px;}
.y41_c00447{bottom:900.000000px;}
.y11_c00447{bottom:915.150000px;}
.y40_c00447{bottom:918.000000px;}
.y10_c00447{bottom:935.400000px;}
.y3f_c00447{bottom:936.000000px;}
.yf_c00447{bottom:950.100000px;}
.y3e_c00447{bottom:955.050000px;}
.ye_c00447{bottom:964.500000px;}
.y3d_c00447{bottom:975.900000px;}
.yd_c00447{bottom:978.900000px;}
.yc_c00447{bottom:993.300000px;}
.y3c_c00447{bottom:993.900000px;}
.yb_c00447{bottom:1007.700000px;}
.ya_c00447{bottom:1022.100000px;}
.y3b_c00447{bottom:1029.900000px;}
.y9_c00447{bottom:1036.200000px;}
.y3a_c00447{bottom:1047.900000px;}
.y8_c00447{bottom:1050.900000px;}
.y7_c00447{bottom:1065.600000px;}
.y39_c00447{bottom:1065.900000px;}
.y6_c00447{bottom:1080.000000px;}
.y38_c00447{bottom:1083.900000px;}
.y5_c00447{bottom:1094.100000px;}
.y37_c00447{bottom:1101.600000px;}
.y4_c00447{bottom:1108.800000px;}
.y36_c00447{bottom:1119.900000px;}
.y3_c00447{bottom:1123.500000px;}
.y2_c00447{bottom:1146.600000px;}
.y1_c00447{bottom:1148.700000px;}
.h9_c00447{height:42.000000px;}
.h5_c00447{height:54.000000px;}
.h4_c00447{height:60.000000px;}
.h6_c00447{height:66.000000px;}
.h8_c00447{height:72.000000px;}
.h7_c00447{height:78.000000px;}
.h3_c00447{height:84.000000px;}
.h2_c00447{height:102.000000px;}
.h0_c00447{height:1272.600036px;}
.h1_c00447{height:1272.750000px;}
.w0_c00447{width:958.320007px;}
.w1_c00447{width:958.500000px;}
.x0_c00447{left:0.000000px;}
.x7a_c00447{left:167.400000px;}
.x1_c00447{left:174.900000px;}
.x42_c00447{left:177.150000px;}
.x12f_c00447{left:178.200000px;}
.x90_c00447{left:189.300000px;}
.xb_c00447{left:191.850000px;}
.x23_c00447{left:192.900000px;}
.x49_c00447{left:194.400000px;}
.x7e_c00447{left:195.750000px;}
.x14f_c00447{left:197.250000px;}
.x3_c00447{left:206.250000px;}
.x33_c00447{left:207.600000px;}
.xc_c00447{left:209.100000px;}
.x60_c00447{left:212.100000px;}
.x14b_c00447{left:213.450000px;}
.x71_c00447{left:215.850000px;}
.x8a_c00447{left:221.550000px;}
.x64_c00447{left:223.950000px;}
.x82_c00447{left:225.750000px;}
.x87_c00447{left:226.800000px;}
.x17_c00447{left:228.600000px;}
.x68_c00447{left:229.800000px;}
.x9c_c00447{left:233.700000px;}
.x2b_c00447{left:236.850000px;}
.x95_c00447{left:238.350000px;}
.x75_c00447{left:239.400000px;}
.x88_c00447{left:240.450000px;}
.x150_c00447{left:241.950000px;}
.x73_c00447{left:244.200000px;}
.x72_c00447{left:246.450000px;}
.x2c_c00447{left:248.700000px;}
.xd_c00447{left:251.250000px;}
.x61_c00447{left:252.450000px;}
.x83_c00447{left:253.500000px;}
.x4c_c00447{left:254.850000px;}
.x9d_c00447{left:256.350000px;}
.x8b_c00447{left:259.050000px;}
.x7f_c00447{left:260.250000px;}
.x43_c00447{left:261.750000px;}
.x54_c00447{left:262.800000px;}
.x74_c00447{left:264.000000px;}
.x4a_c00447{left:265.650000px;}
.x26_c00447{left:269.400000px;}
.x65_c00447{left:270.750000px;}
.x62_c00447{left:272.250000px;}
.x55_c00447{left:273.600000px;}
.x4_c00447{left:276.750000px;}
.x2d_c00447{left:278.550000px;}
.x51_c00447{left:282.600000px;}
.x14c_c00447{left:285.150000px;}
.x85_c00447{left:286.350000px;}
.x27_c00447{left:287.400000px;}
.x3b_c00447{left:290.850000px;}
.x6a_c00447{left:292.050000px;}
.x3f_c00447{left:294.000000px;}
.x77_c00447{left:295.200000px;}
.x2e_c00447{left:298.350000px;}
.x5_c00447{left:300.150000px;}
.x6e_c00447{left:301.200000px;}
.x5d_c00447{left:303.750000px;}
.xe_c00447{left:304.950000px;}
.x38_c00447{left:306.000000px;}
.x18_c00447{left:307.800000px;}
.x34_c00447{left:310.950000px;}
.x39_c00447{left:313.200000px;}
.x97_c00447{left:314.700000px;}
.x6b_c00447{left:316.950000px;}
.x56_c00447{left:318.300000px;}
.x21_c00447{left:320.850000px;}
.x19_c00447{left:322.200000px;}
.x9e_c00447{left:323.250000px;}
.x151_c00447{left:324.300000px;}
.x44_c00447{left:325.500000px;}
.x35_c00447{left:326.850000px;}
.x7b_c00447{left:328.350000px;}
.x78_c00447{left:329.400000px;}
.x5a_c00447{left:332.700000px;}
.x8c_c00447{left:333.900000px;}
.x3a_c00447{left:335.550000px;}
.x1a_c00447{left:336.600000px;}
.x66_c00447{left:338.700000px;}
.x22_c00447{left:340.350000px;}
.x9b_c00447{left:341.400000px;}
.x40_c00447{left:342.600000px;}
.x1b_c00447{left:343.800000px;}
.x52_c00447{left:344.850000px;}
.x45_c00447{left:348.600000px;}
.x14d_c00447{left:349.650000px;}
.x2f_c00447{left:350.850000px;}
.xf_c00447{left:352.050000px;}
.x96_c00447{left:353.850000px;}
.x8d_c00447{left:355.800000px;}
.x28_c00447{left:357.150000px;}
.x1c_c00447{left:358.500000px;}
.x98_c00447{left:361.200000px;}
.x3e_c00447{left:363.600000px;}
.x1d_c00447{left:364.950000px;}
.x46_c00447{left:366.600000px;}
.x3c_c00447{left:367.650000px;}
.x14e_c00447{left:369.150000px;}
.x4d_c00447{left:370.200000px;}
.x6_c00447{left:371.400000px;}
.x6c_c00447{left:372.750000px;}
.x36_c00447{left:373.950000px;}
.x63_c00447{left:375.450000px;}
.x57_c00447{left:376.650000px;}
.x91_c00447{left:377.850000px;}
.x24_c00447{left:379.350000px;}
.x10_c00447{left:381.000000px;}
.x80_c00447{left:383.100000px;}
.x8e_c00447{left:384.300000px;}
.x152_c00447{left:385.500000px;}
.x30_c00447{left:386.550000px;}
.x7_c00447{left:389.100000px;}
.x37_c00447{left:391.200000px;}
.x31_c00447{left:394.500000px;}
.x47_c00447{left:396.900000px;}
.x5b_c00447{left:399.750000px;}
.x11_c00447{left:402.300000px;}
.x3d_c00447{left:404.700000px;}
.x4b_c00447{left:406.800000px;}
.x29_c00447{left:408.600000px;}
.x12_c00447{left:409.800000px;}
.x67_c00447{left:411.900000px;}
.x58_c00447{left:413.700000px;}
.x1e_c00447{left:415.950000px;}
.x13_c00447{left:417.300000px;}
.x79_c00447{left:419.100000px;}
.x2_c00447{left:420.450000px;}
.x92_c00447{left:422.100000px;}
.x2a_c00447{left:423.300000px;}
.x76_c00447{left:425.850000px;}
.x86_c00447{left:428.700000px;}
.x9f_c00447{left:430.350000px;}
.x93_c00447{left:432.000000px;}
.x8_c00447{left:433.800000px;}
.x5e_c00447{left:435.600000px;}
.x41_c00447{left:441.150000px;}
.x25_c00447{left:442.350000px;}
.x1f_c00447{left:444.000000px;}
.x14_c00447{left:445.350000px;}
.x4e_c00447{left:447.600000px;}
.x7c_c00447{left:449.400000px;}
.x6f_c00447{left:454.500000px;}
.x6d_c00447{left:456.300000px;}
.x53_c00447{left:458.250000px;}
.x5f_c00447{left:461.100000px;}
.x4f_c00447{left:462.750000px;}
.x9_c00447{left:465.150000px;}
.x15_c00447{left:466.200000px;}
.x99_c00447{left:467.250000px;}
.x32_c00447{left:471.150000px;}
.x20_c00447{left:473.100000px;}
.x48_c00447{left:476.400000px;}
.x5c_c00447{left:477.750000px;}
.x89_c00447{left:482.550000px;}
.x84_c00447{left:484.050000px;}
.x70_c00447{left:486.150000px;}
.x9a_c00447{left:488.100000px;}
.x81_c00447{left:489.300000px;}
.x94_c00447{left:493.950000px;}
.x69_c00447{left:496.500000px;}
.xa_c00447{left:499.350000px;}
.x16_c00447{left:500.700000px;}
.x59_c00447{left:502.200000px;}
.x8f_c00447{left:510.750000px;}
.x50_c00447{left:518.850000px;}
.x7d_c00447{left:525.450000px;}
.xfa_c00447{left:532.800000px;}
.xcc_c00447{left:534.600000px;}
.xa0_c00447{left:539.250000px;}
.x11b_c00447{left:541.500000px;}
.x103_c00447{left:545.100000px;}
.x101_c00447{left:546.450000px;}
.x130_c00447{left:547.950000px;}
.xa1_c00447{left:549.750000px;}
.xd9_c00447{left:551.100000px;}
.xaa_c00447{left:552.300000px;}
.xd2_c00447{left:553.350000px;}
.x128_c00447{left:560.550000px;}
.x108_c00447{left:561.750000px;}
.x140_c00447{left:563.250000px;}
.x11c_c00447{left:566.700000px;}
.xd3_c00447{left:570.900000px;}
.x131_c00447{left:572.400000px;}
.xda_c00447{left:573.450000px;}
.xcd_c00447{left:577.050000px;}
.xc4_c00447{left:579.600000px;}
.xfc_c00447{left:582.600000px;}
.x123_c00447{left:583.800000px;}
.x142_c00447{left:584.850000px;}
.xdf_c00447{left:586.050000px;}
.x134_c00447{left:588.450000px;}
.xa2_c00447{left:589.650000px;}
.xb7_c00447{left:591.900000px;}
.xe5_c00447{left:593.100000px;}
.x148_c00447{left:594.450000px;}
.xea_c00447{left:595.950000px;}
.xbd_c00447{left:597.600000px;}
.xa3_c00447{left:598.650000px;}
.xc5_c00447{left:599.700000px;}
.x10d_c00447{left:602.100000px;}
.x12b_c00447{left:603.450000px;}
.xab_c00447{left:606.000000px;}
.x117_c00447{left:607.500000px;}
.x149_c00447{left:608.700000px;}
.xce_c00447{left:612.300000px;}
.xb8_c00447{left:613.800000px;}
.xa4_c00447{left:616.650000px;}
.x11d_c00447{left:620.400000px;}
.xc9_c00447{left:622.050000px;}
.x111_c00447{left:623.100000px;}
.x12c_c00447{left:625.200000px;}
.x11e_c00447{left:627.300000px;}
.xb1_c00447{left:630.000000px;}
.xbe_c00447{left:631.500000px;}
.xe0_c00447{left:632.550000px;}
.xd4_c00447{left:633.600000px;}
.x109_c00447{left:635.550000px;}
.xa5_c00447{left:637.950000px;}
.x112_c00447{left:639.450000px;}
.xac_c00447{left:641.250000px;}
.x11f_c00447{left:642.300000px;}
.xe6_c00447{left:645.000000px;}
.x141_c00447{left:646.800000px;}
.xf5_c00447{left:648.600000px;}
.xb2_c00447{left:650.100000px;}
.xbf_c00447{left:651.600000px;}
.x138_c00447{left:652.950000px;}
.x13c_c00447{left:654.150000px;}
.xa6_c00447{left:655.200000px;}
.xeb_c00447{left:657.450000px;}
.xe1_c00447{left:658.500000px;}
.xad_c00447{left:659.550000px;}
.xfd_c00447{left:661.350000px;}
.x145_c00447{left:662.700000px;}
.x119_c00447{left:663.750000px;}
.xe7_c00447{left:666.300000px;}
.x10a_c00447{left:667.650000px;}
.xc6_c00447{left:669.150000px;}
.x13f_c00447{left:670.500000px;}
.x129_c00447{left:672.450000px;}
.xfe_c00447{left:674.700000px;}
.x12d_c00447{left:676.050000px;}
.xa7_c00447{left:677.100000px;}
.xec_c00447{left:678.750000px;}
.xd5_c00447{left:680.400000px;}
.xb9_c00447{left:682.800000px;}
.x104_c00447{left:684.750000px;}
.xb3_c00447{left:686.400000px;}
.xdb_c00447{left:688.950000px;}
.xf8_c00447{left:690.150000px;}
.x118_c00447{left:691.350000px;}
.x11a_c00447{left:692.550000px;}
.xca_c00447{left:695.100000px;}
.x13d_c00447{left:696.900000px;}
.xa8_c00447{left:699.000000px;}
.xe8_c00447{left:700.200000px;}
.xf6_c00447{left:702.900000px;}
.xb4_c00447{left:704.100000px;}
.x10e_c00447{left:705.150000px;}
.xd6_c00447{left:706.350000px;}
.x143_c00447{left:707.400000px;}
.xef_c00447{left:708.450000px;}
.x12a_c00447{left:709.950000px;}
.xba_c00447{left:711.600000px;}
.x10f_c00447{left:712.650000px;}
.x124_c00447{left:714.750000px;}
.xfb_c00447{left:716.400000px;}
.xcf_c00447{left:719.250000px;}
.x113_c00447{left:720.450000px;}
.xed_c00447{left:722.700000px;}
.x144_c00447{left:723.750000px;}
.xdc_c00447{left:726.750000px;}
.x10b_c00447{left:727.800000px;}
.x120_c00447{left:729.300000px;}
.x12e_c00447{left:730.800000px;}
.xc0_c00447{left:732.600000px;}
.xd7_c00447{left:733.650000px;}
.xf0_c00447{left:735.450000px;}
.xe2_c00447{left:736.650000px;}
.xa9_c00447{left:738.300000px;}
.x132_c00447{left:739.800000px;}
.x10c_c00447{left:742.200000px;}
.x121_c00447{left:744.000000px;}
.x13e_c00447{left:745.200000px;}
.xf9_c00447{left:747.450000px;}
.x110_c00447{left:748.650000px;}
.x146_c00447{left:750.000000px;}
.xae_c00447{left:751.350000px;}
.x14a_c00447{left:752.850000px;}
.xc1_c00447{left:754.950000px;}
.x105_c00447{left:756.600000px;}
.xcb_c00447{left:758.100000px;}
.xd0_c00447{left:759.900000px;}
.x135_c00447{left:761.850000px;}
.x102_c00447{left:763.500000px;}
.x125_c00447{left:765.150000px;}
.xb5_c00447{left:768.900000px;}
.xdd_c00447{left:769.950000px;}
.x114_c00447{left:771.450000px;}
.x122_c00447{left:772.500000px;}
.xf3_c00447{left:777.450000px;}
.xaf_c00447{left:778.650000px;}
.x13a_c00447{left:779.700000px;}
.x133_c00447{left:782.700000px;}
.xbb_c00447{left:785.100000px;}
.xc7_c00447{left:786.600000px;}
.xff_c00447{left:788.100000px;}
.xe9_c00447{left:790.500000px;}
.xde_c00447{left:794.850000px;}
.xf4_c00447{left:796.500000px;}
.x106_c00447{left:798.300000px;}
.x115_c00447{left:799.500000px;}
.xbc_c00447{left:801.000000px;}
.x126_c00447{left:802.200000px;}
.xb0_c00447{left:804.900000px;}
.xe3_c00447{left:807.600000px;}
.xc2_c00447{left:808.650000px;}
.x136_c00447{left:814.500000px;}
.x139_c00447{left:816.300000px;}
.xf1_c00447{left:820.050000px;}
.xd1_c00447{left:823.200000px;}
.xf7_c00447{left:826.050000px;}
.x107_c00447{left:827.100000px;}
.x116_c00447{left:828.300000px;}
.x13b_c00447{left:829.350000px;}
.xc3_c00447{left:830.550000px;}
.xd8_c00447{left:835.500000px;}
.xb6_c00447{left:837.300000px;}
.xf2_c00447{left:840.150000px;}
.x137_c00447{left:842.250000px;}
.xe4_c00447{left:850.500000px;}
.x100_c00447{left:854.400000px;}
.x147_c00447{left:855.750000px;}
.xc8_c00447{left:857.100000px;}
.x127_c00447{left:858.300000px;}
.xee_c00447{left:866.250000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls4_c00447{letter-spacing:0.000000pt;}
.ls0_c00447{letter-spacing:40.000000pt;}
.ls2_c00447{letter-spacing:49.523810pt;}
.ls1_c00447{letter-spacing:51.103825pt;}
.ls3_c00447{letter-spacing:65.925926pt;}
.ws24_c00447{word-spacing:-92.592593pt;}
.ws15_c00447{word-spacing:-80.437158pt;}
.ws23_c00447{word-spacing:-76.190476pt;}
.ws5_c00447{word-spacing:-66.666667pt;}
.ws10_c00447{word-spacing:-9.015873pt;}
.ws22_c00447{word-spacing:-6.984127pt;}
.ws13_c00447{word-spacing:-6.095238pt;}
.ws12_c00447{word-spacing:-3.737374pt;}
.ws2b_c00447{word-spacing:0.000000pt;}
.ws1e_c00447{word-spacing:0.720721pt;}
.wsd_c00447{word-spacing:0.977195pt;}
.ws1f_c00447{word-spacing:1.728395pt;}
.ws8_c00447{word-spacing:6.388889pt;}
.ws20_c00447{word-spacing:8.000000pt;}
.ws28_c00447{word-spacing:9.296903pt;}
.ws1_c00447{word-spacing:9.455113pt;}
.ws3_c00447{word-spacing:11.953162pt;}
.ws18_c00447{word-spacing:13.333333pt;}
.ws19_c00447{word-spacing:13.483467pt;}
.ws27_c00447{word-spacing:13.777778pt;}
.ws17_c00447{word-spacing:14.685769pt;}
.ws21_c00447{word-spacing:14.920635pt;}
.ws11_c00447{word-spacing:15.238095pt;}
.ws2a_c00447{word-spacing:16.000000pt;}
.ws1b_c00447{word-spacing:16.111111pt;}
.wsc_c00447{word-spacing:17.742120pt;}
.ws0_c00447{word-spacing:17.773012pt;}
.ws29_c00447{word-spacing:18.222222pt;}
.wsb_c00447{word-spacing:19.682540pt;}
.ws2_c00447{word-spacing:20.632708pt;}
.ws16_c00447{word-spacing:21.770492pt;}
.wsa_c00447{word-spacing:22.857143pt;}
.ws4_c00447{word-spacing:23.492404pt;}
.ws7_c00447{word-spacing:26.031746pt;}
.ws26_c00447{word-spacing:27.111111pt;}
.ws1d_c00447{word-spacing:30.793651pt;}
.ws1a_c00447{word-spacing:35.555556pt;}
.ws14_c00447{word-spacing:43.114504pt;}
.ws25_c00447{word-spacing:44.814815pt;}
.wse_c00447{word-spacing:54.138861pt;}
.wsf_c00447{word-spacing:59.851852pt;}
.ws6_c00447{word-spacing:60.116959pt;}
.ws1c_c00447{word-spacing:112.098765pt;}
.ws9_c00447{word-spacing:112.478632pt;}
._11_c00447{margin-left:-65.925926pt;}
._8_c00447{margin-left:-51.103825pt;}
._f_c00447{margin-left:-49.523810pt;}
._4_c00447{margin-left:-40.000000pt;}
._10_c00447{margin-left:-7.407407pt;}
._12_c00447{width:34.666667pt;}
._1_c00447{width:38.451210pt;}
._3_c00447{width:41.773012pt;}
._b_c00447{width:42.777778pt;}
._2_c00447{width:44.632708pt;}
._5_c00447{width:46.944444pt;}
._a_c00447{width:49.523810pt;}
._0_c00447{width:51.781948pt;}
._6_c00447{width:52.698413pt;}
._e_c00447{width:57.460317pt;}
._d_c00447{width:60.634921pt;}
._9_c00447{width:63.344262pt;}
._c_c00447{width:65.925926pt;}
._7_c00447{width:278.095238pt;}
.fs7_c00447{font-size:37.333333pt;}
.fs3_c00447{font-size:48.000000pt;}
.fs2_c00447{font-size:53.333333pt;}
.fs4_c00447{font-size:58.666667pt;}
.fs6_c00447{font-size:64.000000pt;}
.fs5_c00447{font-size:69.333333pt;}
.fs1_c00447{font-size:74.666667pt;}
.fs0_c00447{font-size:90.666667pt;}
.y0_c00447{bottom:0.000000pt;}
.y6e_c00447{bottom:163.466667pt;}
.y71_c00447{bottom:168.266667pt;}
.y5e_c00447{bottom:176.266667pt;}
.y70_c00447{bottom:181.066667pt;}
.y5d_c00447{bottom:189.066667pt;}
.y6f_c00447{bottom:193.866667pt;}
.y5c_c00447{bottom:201.600000pt;}
.y5b_c00447{bottom:216.266667pt;}
.y34_c00447{bottom:243.200000pt;}
.y6d_c00447{bottom:246.000000pt;}
.y33_c00447{bottom:258.533333pt;}
.y6c_c00447{bottom:260.133333pt;}
.y6b_c00447{bottom:271.333333pt;}
.y32_c00447{bottom:274.933333pt;}
.y6a_c00447{bottom:285.466667pt;}
.y69_c00447{bottom:297.600000pt;}
.y31_c00447{bottom:298.533333pt;}
.y68_c00447{bottom:310.133333pt;}
.y30_c00447{bottom:314.266667pt;}
.y67_c00447{bottom:323.200000pt;}
.y2f_c00447{bottom:329.866667pt;}
.y66_c00447{bottom:336.266667pt;}
.y2e_c00447{bottom:345.600000pt;}
.y65_c00447{bottom:349.066667pt;}
.y2d_c00447{bottom:361.333333pt;}
.y64_c00447{bottom:361.600000pt;}
.y63_c00447{bottom:376.000000pt;}
.y2c_c00447{bottom:377.333333pt;}
.y62_c00447{bottom:387.866667pt;}
.y2b_c00447{bottom:393.600000pt;}
.y61_c00447{bottom:400.933333pt;}
.y2a_c00447{bottom:409.600000pt;}
.y60_c00447{bottom:413.733333pt;}
.y29_c00447{bottom:425.866667pt;}
.y5f_c00447{bottom:426.533333pt;}
.y5a_c00447{bottom:439.733333pt;}
.y28_c00447{bottom:441.600000pt;}
.y59_c00447{bottom:452.533333pt;}
.y27_c00447{bottom:457.600000pt;}
.y58_c00447{bottom:465.600000pt;}
.y26_c00447{bottom:473.866667pt;}
.y57_c00447{bottom:478.133333pt;}
.y25_c00447{bottom:489.866667pt;}
.y56_c00447{bottom:490.933333pt;}
.y55_c00447{bottom:503.466667pt;}
.y24_c00447{bottom:505.866667pt;}
.y54_c00447{bottom:516.266667pt;}
.y23_c00447{bottom:526.000000pt;}
.y53_c00447{bottom:529.333333pt;}
.y22_c00447{bottom:541.733333pt;}
.y52_c00447{bottom:542.133333pt;}
.y51_c00447{bottom:554.933333pt;}
.y21_c00447{bottom:557.733333pt;}
.y50_c00447{bottom:568.666667pt;}
.y20_c00447{bottom:574.000000pt;}
.y4f_c00447{bottom:580.800000pt;}
.y1f_c00447{bottom:590.000000pt;}
.y4e_c00447{bottom:593.600000pt;}
.y1e_c00447{bottom:605.733333pt;}
.y4d_c00447{bottom:606.400000pt;}
.y4c_c00447{bottom:619.200000pt;}
.y1d_c00447{bottom:622.000000pt;}
.y4b_c00447{bottom:632.000000pt;}
.y1c_c00447{bottom:638.000000pt;}
.y4a_c00447{bottom:645.066667pt;}
.y1b_c00447{bottom:654.000000pt;}
.y49_c00447{bottom:658.933333pt;}
.y1a_c00447{bottom:669.733333pt;}
.y48_c00447{bottom:680.266667pt;}
.y19_c00447{bottom:685.733333pt;}
.y47_c00447{bottom:696.266667pt;}
.y18_c00447{bottom:701.733333pt;}
.y17_c00447{bottom:717.733333pt;}
.y46_c00447{bottom:720.000000pt;}
.y16_c00447{bottom:733.466667pt;}
.y45_c00447{bottom:736.266667pt;}
.y15_c00447{bottom:749.466667pt;}
.y44_c00447{bottom:750.666667pt;}
.y35_c00447{bottom:752.000000pt;}
.y14_c00447{bottom:765.733333pt;}
.y43_c00447{bottom:768.266667pt;}
.y13_c00447{bottom:781.733333pt;}
.y42_c00447{bottom:784.000000pt;}
.y12_c00447{bottom:797.733333pt;}
.y41_c00447{bottom:800.000000pt;}
.y11_c00447{bottom:813.466667pt;}
.y40_c00447{bottom:816.000000pt;}
.y10_c00447{bottom:831.466667pt;}
.y3f_c00447{bottom:832.000000pt;}
.yf_c00447{bottom:844.533333pt;}
.y3e_c00447{bottom:848.933333pt;}
.ye_c00447{bottom:857.333333pt;}
.y3d_c00447{bottom:867.466667pt;}
.yd_c00447{bottom:870.133333pt;}
.yc_c00447{bottom:882.933333pt;}
.y3c_c00447{bottom:883.466667pt;}
.yb_c00447{bottom:895.733333pt;}
.ya_c00447{bottom:908.533333pt;}
.y3b_c00447{bottom:915.466667pt;}
.y9_c00447{bottom:921.066667pt;}
.y3a_c00447{bottom:931.466667pt;}
.y8_c00447{bottom:934.133333pt;}
.y7_c00447{bottom:947.200000pt;}
.y39_c00447{bottom:947.466667pt;}
.y6_c00447{bottom:960.000000pt;}
.y38_c00447{bottom:963.466667pt;}
.y5_c00447{bottom:972.533333pt;}
.y37_c00447{bottom:979.200000pt;}
.y4_c00447{bottom:985.600000pt;}
.y36_c00447{bottom:995.466667pt;}
.y3_c00447{bottom:998.666667pt;}
.y2_c00447{bottom:1019.200000pt;}
.y1_c00447{bottom:1021.066667pt;}
.h9_c00447{height:37.333333pt;}
.h5_c00447{height:48.000000pt;}
.h4_c00447{height:53.333333pt;}
.h6_c00447{height:58.666667pt;}
.h8_c00447{height:64.000000pt;}
.h7_c00447{height:69.333333pt;}
.h3_c00447{height:74.666667pt;}
.h2_c00447{height:90.666667pt;}
.h0_c00447{height:1131.200032pt;}
.h1_c00447{height:1131.333333pt;}
.w0_c00447{width:851.840007pt;}
.w1_c00447{width:852.000000pt;}
.x0_c00447{left:0.000000pt;}
.x7a_c00447{left:148.800000pt;}
.x1_c00447{left:155.466667pt;}
.x42_c00447{left:157.466667pt;}
.x12f_c00447{left:158.400000pt;}
.x90_c00447{left:168.266667pt;}
.xb_c00447{left:170.533333pt;}
.x23_c00447{left:171.466667pt;}
.x49_c00447{left:172.800000pt;}
.x7e_c00447{left:174.000000pt;}
.x14f_c00447{left:175.333333pt;}
.x3_c00447{left:183.333333pt;}
.x33_c00447{left:184.533333pt;}
.xc_c00447{left:185.866667pt;}
.x60_c00447{left:188.533333pt;}
.x14b_c00447{left:189.733333pt;}
.x71_c00447{left:191.866667pt;}
.x8a_c00447{left:196.933333pt;}
.x64_c00447{left:199.066667pt;}
.x82_c00447{left:200.666667pt;}
.x87_c00447{left:201.600000pt;}
.x17_c00447{left:203.200000pt;}
.x68_c00447{left:204.266667pt;}
.x9c_c00447{left:207.733333pt;}
.x2b_c00447{left:210.533333pt;}
.x95_c00447{left:211.866667pt;}
.x75_c00447{left:212.800000pt;}
.x88_c00447{left:213.733333pt;}
.x150_c00447{left:215.066667pt;}
.x73_c00447{left:217.066667pt;}
.x72_c00447{left:219.066667pt;}
.x2c_c00447{left:221.066667pt;}
.xd_c00447{left:223.333333pt;}
.x61_c00447{left:224.400000pt;}
.x83_c00447{left:225.333333pt;}
.x4c_c00447{left:226.533333pt;}
.x9d_c00447{left:227.866667pt;}
.x8b_c00447{left:230.266667pt;}
.x7f_c00447{left:231.333333pt;}
.x43_c00447{left:232.666667pt;}
.x54_c00447{left:233.600000pt;}
.x74_c00447{left:234.666667pt;}
.x4a_c00447{left:236.133333pt;}
.x26_c00447{left:239.466667pt;}
.x65_c00447{left:240.666667pt;}
.x62_c00447{left:242.000000pt;}
.x55_c00447{left:243.200000pt;}
.x4_c00447{left:246.000000pt;}
.x2d_c00447{left:247.600000pt;}
.x51_c00447{left:251.200000pt;}
.x14c_c00447{left:253.466667pt;}
.x85_c00447{left:254.533333pt;}
.x27_c00447{left:255.466667pt;}
.x3b_c00447{left:258.533333pt;}
.x6a_c00447{left:259.600000pt;}
.x3f_c00447{left:261.333333pt;}
.x77_c00447{left:262.400000pt;}
.x2e_c00447{left:265.200000pt;}
.x5_c00447{left:266.800000pt;}
.x6e_c00447{left:267.733333pt;}
.x5d_c00447{left:270.000000pt;}
.xe_c00447{left:271.066667pt;}
.x38_c00447{left:272.000000pt;}
.x18_c00447{left:273.600000pt;}
.x34_c00447{left:276.400000pt;}
.x39_c00447{left:278.400000pt;}
.x97_c00447{left:279.733333pt;}
.x6b_c00447{left:281.733333pt;}
.x56_c00447{left:282.933333pt;}
.x21_c00447{left:285.200000pt;}
.x19_c00447{left:286.400000pt;}
.x9e_c00447{left:287.333333pt;}
.x151_c00447{left:288.266667pt;}
.x44_c00447{left:289.333333pt;}
.x35_c00447{left:290.533333pt;}
.x7b_c00447{left:291.866667pt;}
.x78_c00447{left:292.800000pt;}
.x5a_c00447{left:295.733333pt;}
.x8c_c00447{left:296.800000pt;}
.x3a_c00447{left:298.266667pt;}
.x1a_c00447{left:299.200000pt;}
.x66_c00447{left:301.066667pt;}
.x22_c00447{left:302.533333pt;}
.x9b_c00447{left:303.466667pt;}
.x40_c00447{left:304.533333pt;}
.x1b_c00447{left:305.600000pt;}
.x52_c00447{left:306.533333pt;}
.x45_c00447{left:309.866667pt;}
.x14d_c00447{left:310.800000pt;}
.x2f_c00447{left:311.866667pt;}
.xf_c00447{left:312.933333pt;}
.x96_c00447{left:314.533333pt;}
.x8d_c00447{left:316.266667pt;}
.x28_c00447{left:317.466667pt;}
.x1c_c00447{left:318.666667pt;}
.x98_c00447{left:321.066667pt;}
.x3e_c00447{left:323.200000pt;}
.x1d_c00447{left:324.400000pt;}
.x46_c00447{left:325.866667pt;}
.x3c_c00447{left:326.800000pt;}
.x14e_c00447{left:328.133333pt;}
.x4d_c00447{left:329.066667pt;}
.x6_c00447{left:330.133333pt;}
.x6c_c00447{left:331.333333pt;}
.x36_c00447{left:332.400000pt;}
.x63_c00447{left:333.733333pt;}
.x57_c00447{left:334.800000pt;}
.x91_c00447{left:335.866667pt;}
.x24_c00447{left:337.200000pt;}
.x10_c00447{left:338.666667pt;}
.x80_c00447{left:340.533333pt;}
.x8e_c00447{left:341.600000pt;}
.x152_c00447{left:342.666667pt;}
.x30_c00447{left:343.600000pt;}
.x7_c00447{left:345.866667pt;}
.x37_c00447{left:347.733333pt;}
.x31_c00447{left:350.666667pt;}
.x47_c00447{left:352.800000pt;}
.x5b_c00447{left:355.333333pt;}
.x11_c00447{left:357.600000pt;}
.x3d_c00447{left:359.733333pt;}
.x4b_c00447{left:361.600000pt;}
.x29_c00447{left:363.200000pt;}
.x12_c00447{left:364.266667pt;}
.x67_c00447{left:366.133333pt;}
.x58_c00447{left:367.733333pt;}
.x1e_c00447{left:369.733333pt;}
.x13_c00447{left:370.933333pt;}
.x79_c00447{left:372.533333pt;}
.x2_c00447{left:373.733333pt;}
.x92_c00447{left:375.200000pt;}
.x2a_c00447{left:376.266667pt;}
.x76_c00447{left:378.533333pt;}
.x86_c00447{left:381.066667pt;}
.x9f_c00447{left:382.533333pt;}
.x93_c00447{left:384.000000pt;}
.x8_c00447{left:385.600000pt;}
.x5e_c00447{left:387.200000pt;}
.x41_c00447{left:392.133333pt;}
.x25_c00447{left:393.200000pt;}
.x1f_c00447{left:394.666667pt;}
.x14_c00447{left:395.866667pt;}
.x4e_c00447{left:397.866667pt;}
.x7c_c00447{left:399.466667pt;}
.x6f_c00447{left:404.000000pt;}
.x6d_c00447{left:405.600000pt;}
.x53_c00447{left:407.333333pt;}
.x5f_c00447{left:409.866667pt;}
.x4f_c00447{left:411.333333pt;}
.x9_c00447{left:413.466667pt;}
.x15_c00447{left:414.400000pt;}
.x99_c00447{left:415.333333pt;}
.x32_c00447{left:418.800000pt;}
.x20_c00447{left:420.533333pt;}
.x48_c00447{left:423.466667pt;}
.x5c_c00447{left:424.666667pt;}
.x89_c00447{left:428.933333pt;}
.x84_c00447{left:430.266667pt;}
.x70_c00447{left:432.133333pt;}
.x9a_c00447{left:433.866667pt;}
.x81_c00447{left:434.933333pt;}
.x94_c00447{left:439.066667pt;}
.x69_c00447{left:441.333333pt;}
.xa_c00447{left:443.866667pt;}
.x16_c00447{left:445.066667pt;}
.x59_c00447{left:446.400000pt;}
.x8f_c00447{left:454.000000pt;}
.x50_c00447{left:461.200000pt;}
.x7d_c00447{left:467.066667pt;}
.xfa_c00447{left:473.600000pt;}
.xcc_c00447{left:475.200000pt;}
.xa0_c00447{left:479.333333pt;}
.x11b_c00447{left:481.333333pt;}
.x103_c00447{left:484.533333pt;}
.x101_c00447{left:485.733333pt;}
.x130_c00447{left:487.066667pt;}
.xa1_c00447{left:488.666667pt;}
.xd9_c00447{left:489.866667pt;}
.xaa_c00447{left:490.933333pt;}
.xd2_c00447{left:491.866667pt;}
.x128_c00447{left:498.266667pt;}
.x108_c00447{left:499.333333pt;}
.x140_c00447{left:500.666667pt;}
.x11c_c00447{left:503.733333pt;}
.xd3_c00447{left:507.466667pt;}
.x131_c00447{left:508.800000pt;}
.xda_c00447{left:509.733333pt;}
.xcd_c00447{left:512.933333pt;}
.xc4_c00447{left:515.200000pt;}
.xfc_c00447{left:517.866667pt;}
.x123_c00447{left:518.933333pt;}
.x142_c00447{left:519.866667pt;}
.xdf_c00447{left:520.933333pt;}
.x134_c00447{left:523.066667pt;}
.xa2_c00447{left:524.133333pt;}
.xb7_c00447{left:526.133333pt;}
.xe5_c00447{left:527.200000pt;}
.x148_c00447{left:528.400000pt;}
.xea_c00447{left:529.733333pt;}
.xbd_c00447{left:531.200000pt;}
.xa3_c00447{left:532.133333pt;}
.xc5_c00447{left:533.066667pt;}
.x10d_c00447{left:535.200000pt;}
.x12b_c00447{left:536.400000pt;}
.xab_c00447{left:538.666667pt;}
.x117_c00447{left:540.000000pt;}
.x149_c00447{left:541.066667pt;}
.xce_c00447{left:544.266667pt;}
.xb8_c00447{left:545.600000pt;}
.xa4_c00447{left:548.133333pt;}
.x11d_c00447{left:551.466667pt;}
.xc9_c00447{left:552.933333pt;}
.x111_c00447{left:553.866667pt;}
.x12c_c00447{left:555.733333pt;}
.x11e_c00447{left:557.600000pt;}
.xb1_c00447{left:560.000000pt;}
.xbe_c00447{left:561.333333pt;}
.xe0_c00447{left:562.266667pt;}
.xd4_c00447{left:563.200000pt;}
.x109_c00447{left:564.933333pt;}
.xa5_c00447{left:567.066667pt;}
.x112_c00447{left:568.400000pt;}
.xac_c00447{left:570.000000pt;}
.x11f_c00447{left:570.933333pt;}
.xe6_c00447{left:573.333333pt;}
.x141_c00447{left:574.933333pt;}
.xf5_c00447{left:576.533333pt;}
.xb2_c00447{left:577.866667pt;}
.xbf_c00447{left:579.200000pt;}
.x138_c00447{left:580.400000pt;}
.x13c_c00447{left:581.466667pt;}
.xa6_c00447{left:582.400000pt;}
.xeb_c00447{left:584.400000pt;}
.xe1_c00447{left:585.333333pt;}
.xad_c00447{left:586.266667pt;}
.xfd_c00447{left:587.866667pt;}
.x145_c00447{left:589.066667pt;}
.x119_c00447{left:590.000000pt;}
.xe7_c00447{left:592.266667pt;}
.x10a_c00447{left:593.466667pt;}
.xc6_c00447{left:594.800000pt;}
.x13f_c00447{left:596.000000pt;}
.x129_c00447{left:597.733333pt;}
.xfe_c00447{left:599.733333pt;}
.x12d_c00447{left:600.933333pt;}
.xa7_c00447{left:601.866667pt;}
.xec_c00447{left:603.333333pt;}
.xd5_c00447{left:604.800000pt;}
.xb9_c00447{left:606.933333pt;}
.x104_c00447{left:608.666667pt;}
.xb3_c00447{left:610.133333pt;}
.xdb_c00447{left:612.400000pt;}
.xf8_c00447{left:613.466667pt;}
.x118_c00447{left:614.533333pt;}
.x11a_c00447{left:615.600000pt;}
.xca_c00447{left:617.866667pt;}
.x13d_c00447{left:619.466667pt;}
.xa8_c00447{left:621.333333pt;}
.xe8_c00447{left:622.400000pt;}
.xf6_c00447{left:624.800000pt;}
.xb4_c00447{left:625.866667pt;}
.x10e_c00447{left:626.800000pt;}
.xd6_c00447{left:627.866667pt;}
.x143_c00447{left:628.800000pt;}
.xef_c00447{left:629.733333pt;}
.x12a_c00447{left:631.066667pt;}
.xba_c00447{left:632.533333pt;}
.x10f_c00447{left:633.466667pt;}
.x124_c00447{left:635.333333pt;}
.xfb_c00447{left:636.800000pt;}
.xcf_c00447{left:639.333333pt;}
.x113_c00447{left:640.400000pt;}
.xed_c00447{left:642.400000pt;}
.x144_c00447{left:643.333333pt;}
.xdc_c00447{left:646.000000pt;}
.x10b_c00447{left:646.933333pt;}
.x120_c00447{left:648.266667pt;}
.x12e_c00447{left:649.600000pt;}
.xc0_c00447{left:651.200000pt;}
.xd7_c00447{left:652.133333pt;}
.xf0_c00447{left:653.733333pt;}
.xe2_c00447{left:654.800000pt;}
.xa9_c00447{left:656.266667pt;}
.x132_c00447{left:657.600000pt;}
.x10c_c00447{left:659.733333pt;}
.x121_c00447{left:661.333333pt;}
.x13e_c00447{left:662.400000pt;}
.xf9_c00447{left:664.400000pt;}
.x110_c00447{left:665.466667pt;}
.x146_c00447{left:666.666667pt;}
.xae_c00447{left:667.866667pt;}
.x14a_c00447{left:669.200000pt;}
.xc1_c00447{left:671.066667pt;}
.x105_c00447{left:672.533333pt;}
.xcb_c00447{left:673.866667pt;}
.xd0_c00447{left:675.466667pt;}
.x135_c00447{left:677.200000pt;}
.x102_c00447{left:678.666667pt;}
.x125_c00447{left:680.133333pt;}
.xb5_c00447{left:683.466667pt;}
.xdd_c00447{left:684.400000pt;}
.x114_c00447{left:685.733333pt;}
.x122_c00447{left:686.666667pt;}
.xf3_c00447{left:691.066667pt;}
.xaf_c00447{left:692.133333pt;}
.x13a_c00447{left:693.066667pt;}
.x133_c00447{left:695.733333pt;}
.xbb_c00447{left:697.866667pt;}
.xc7_c00447{left:699.200000pt;}
.xff_c00447{left:700.533333pt;}
.xe9_c00447{left:702.666667pt;}
.xde_c00447{left:706.533333pt;}
.xf4_c00447{left:708.000000pt;}
.x106_c00447{left:709.600000pt;}
.x115_c00447{left:710.666667pt;}
.xbc_c00447{left:712.000000pt;}
.x126_c00447{left:713.066667pt;}
.xb0_c00447{left:715.466667pt;}
.xe3_c00447{left:717.866667pt;}
.xc2_c00447{left:718.800000pt;}
.x136_c00447{left:724.000000pt;}
.x139_c00447{left:725.600000pt;}
.xf1_c00447{left:728.933333pt;}
.xd1_c00447{left:731.733333pt;}
.xf7_c00447{left:734.266667pt;}
.x107_c00447{left:735.200000pt;}
.x116_c00447{left:736.266667pt;}
.x13b_c00447{left:737.200000pt;}
.xc3_c00447{left:738.266667pt;}
.xd8_c00447{left:742.666667pt;}
.xb6_c00447{left:744.266667pt;}
.xf2_c00447{left:746.800000pt;}
.x137_c00447{left:748.666667pt;}
.xe4_c00447{left:756.000000pt;}
.x100_c00447{left:759.466667pt;}
.x147_c00447{left:760.666667pt;}
.xc8_c00447{left:761.866667pt;}
.x127_c00447{left:762.933333pt;}
.xee_c00447{left:770.000000pt;}
}





/* 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_c00448 {
    display:none;
  }
  .loading-indicator_c00448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00448 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_c00448 { 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_c00448" -> "#page-container .classname_c00448")
 */
.pf_c00448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00448 { /* 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_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00448 { /* 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_c00448 { /* 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_c00448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00448 {overflow:visible;}
  }
}
.c_c00448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00448 { /* 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_c00448:after { /* webkit #35443 */
  content: '';
}
.t_c00448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00448 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 */
}
.__c00448 { /* 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_c00448 { /* info for Javascript */
  display:none;
}
.l_c00448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00448: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_c00448 {
    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_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00448.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_c00448 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00448;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00448{transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);}
.mae_c00448{transform:matrix(0.042250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042250,0.000000,0.000000,0.250000,0,0);}
.m46_c00448{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00448{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m111_c00448{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00448{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00448{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m113_c00448{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00448{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00448{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m106_c00448{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00448{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m41_c00448{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m108_c00448{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00448{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m112_c00448{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m20_c00448{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m44_c00448{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m25_c00448{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00448{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00448{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m114_c00448{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m61_c00448{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00448{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m73_c00448{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.me0_c00448{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mad_c00448{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00448{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mee_c00448{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mde_c00448{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00448{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00448{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00448{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00448{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m68_c00448{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00448{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00448{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9_c00448{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me6_c00448{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00448{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00448{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.maf_c00448{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.med_c00448{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00448{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m67_c00448{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00448{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m116_c00448{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me1_c00448{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m30_c00448{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00448{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m94_c00448{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00448{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00448{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00448{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00448{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00448{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00448{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.mf_c00448{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00448{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m89_c00448{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00448{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00448{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m59_c00448{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m40_c00448{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.me2_c00448{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00448{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m17_c00448{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00448{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00448{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00448{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00448{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m39_c00448{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00448{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m36_c00448{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mba_c00448{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m19_c00448{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m83_c00448{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00448{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00448{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mab_c00448{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m100_c00448{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00448{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00448{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00448{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m57_c00448{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.ma_c00448{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m58_c00448{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00448{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00448{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m24_c00448{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m90_c00448{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00448{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m55_c00448{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m15_c00448{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m77_c00448{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00448{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m96_c00448{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m42_c00448{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m56_c00448{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00448{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m28_c00448{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00448{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00448{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m32_c00448{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m102_c00448{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m63_c00448{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00448{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00448{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m27_c00448{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00448{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m11_c00448{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m69_c00448{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mca_c00448{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00448{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3_c00448{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m16_c00448{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00448{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00448{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m38_c00448{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00448{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00448{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m29_c00448{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m70_c00448{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m66_c00448{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m75_c00448{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00448{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m43_c00448{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m34_c00448{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m101_c00448{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00448{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m109_c00448{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00448{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc_c00448{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m93_c00448{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00448{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m99_c00448{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m117_c00448{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m13_c00448{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00448{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m79_c00448{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00448{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m82_c00448{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00448{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m110_c00448{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m81_c00448{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m86_c00448{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00448{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m95_c00448{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00448{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00448{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6_c00448{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m97_c00448{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00448{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m33_c00448{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m85_c00448{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00448{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m18_c00448{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00448{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md8_c00448{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m21_c00448{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m88_c00448{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me_c00448{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m91_c00448{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m5_c00448{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m80_c00448{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00448{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00448{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mef_c00448{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00448{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00448{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mce_c00448{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00448{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00448{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00448{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m64_c00448{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m103_c00448{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00448{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m119_c00448{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00448{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m23_c00448{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m62_c00448{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m31_c00448{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00448{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m14_c00448{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m92_c00448{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00448{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00448{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md7_c00448{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m105_c00448{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00448{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m37_c00448{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00448{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m115_c00448{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00448{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m12_c00448{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md0_c00448{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.maa_c00448{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mea_c00448{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00448{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00448{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m76_c00448{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md6_c00448{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m52_c00448{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mac_c00448{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00448{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m118_c00448{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m26_c00448{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md4_c00448{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m104_c00448{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00448{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00448{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md_c00448{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m51_c00448{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md5_c00448{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1_c00448{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m72_c00448{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4_c00448{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m53_c00448{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb_c00448{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00448{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m48_c00448{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.me7_c00448{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00448{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.me5_c00448{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m49_c00448{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00448{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m65_c00448{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00448{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7_c00448{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m71_c00448{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m84_c00448{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00448{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00448{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00448{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00448{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);}
.m45_c00448{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md3_c00448{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10_c00448{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00448{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m107_c00448{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mff_c00448{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00448{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.meb_c00448{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m35_c00448{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00448{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mec_c00448{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md2_c00448{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.md1_c00448{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00448{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00448{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m78_c00448{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00448{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m47_c00448{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00448{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00448{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00448{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mda_c00448{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00448{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m74_c00448{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.md9_c00448{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.me8_c00448{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m87_c00448{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00448{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m22_c00448{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00448{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m60_c00448{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00448{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00448{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00448{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m98_c00448{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00448{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m54_c00448{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m50_c00448{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.me4_c00448{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00448{transform:matrix(0.383750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00448{transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00448{transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.430750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00448{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00448{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.me9_c00448{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.me3_c00448{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls0_c00448{letter-spacing:0.000000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{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__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00448{word-spacing:-8.294790px;}
.ws4_c00448{word-spacing:-3.414634px;}
.ws7_c00448{word-spacing:0.000000px;}
.ws2_c00448{word-spacing:4.019455px;}
.ws6_c00448{word-spacing:6.052632px;}
.ws0_c00448{word-spacing:9.000000px;}
.ws3_c00448{word-spacing:24.491803px;}
.ws5_c00448{word-spacing:29.285714px;}
._0_c00448{width:65.360656px;}
.fc0_c00448{color:transparent;}
.fs5_c00448{font-size:48.000000px;}
.fs3_c00448{font-size:60.000000px;}
.fs2_c00448{font-size:66.000000px;}
.fs1_c00448{font-size:72.000000px;}
.fs0_c00448{font-size:84.000000px;}
.fs4_c00448{font-size:102.000000px;}
.y0_c00448{bottom:0.000000px;}
.y33_c00448{bottom:181.500000px;}
.y65_c00448{bottom:184.650000px;}
.y64_c00448{bottom:196.500000px;}
.y32_c00448{bottom:204.150000px;}
.y63_c00448{bottom:210.600000px;}
.y31_c00448{bottom:225.750000px;}
.y62_c00448{bottom:226.800000px;}
.y61_c00448{bottom:240.900000px;}
.y60_c00448{bottom:256.050000px;}
.y30_c00448{bottom:261.000000px;}
.y5f_c00448{bottom:271.500000px;}
.y5e_c00448{bottom:285.150000px;}
.y2f_c00448{bottom:296.550000px;}
.y5d_c00448{bottom:298.800000px;}
.y5c_c00448{bottom:313.950000px;}
.y2e_c00448{bottom:315.300000px;}
.y5b_c00448{bottom:328.350000px;}
.y2d_c00448{bottom:333.300000px;}
.y5a_c00448{bottom:342.600000px;}
.y2c_c00448{bottom:351.300000px;}
.y59_c00448{bottom:360.600000px;}
.y2b_c00448{bottom:369.600000px;}
.y58_c00448{bottom:378.900000px;}
.y2a_c00448{bottom:387.300000px;}
.y57_c00448{bottom:396.600000px;}
.y29_c00448{bottom:405.300000px;}
.y56_c00448{bottom:414.300000px;}
.y28_c00448{bottom:423.600000px;}
.y55_c00448{bottom:440.700000px;}
.y27_c00448{bottom:441.300000px;}
.y54_c00448{bottom:459.000000px;}
.y26_c00448{bottom:466.800000px;}
.y53_c00448{bottom:480.300000px;}
.y25_c00448{bottom:486.300000px;}
.y52_c00448{bottom:499.800000px;}
.y24_c00448{bottom:504.600000px;}
.y51_c00448{bottom:517.800000px;}
.y23_c00448{bottom:522.300000px;}
.y50_c00448{bottom:535.800000px;}
.y22_c00448{bottom:540.300000px;}
.y4f_c00448{bottom:553.800000px;}
.y21_c00448{bottom:566.400000px;}
.y4e_c00448{bottom:571.800000px;}
.y20_c00448{bottom:585.150000px;}
.y4d_c00448{bottom:590.100000px;}
.y1f_c00448{bottom:603.150000px;}
.y4c_c00448{bottom:607.350000px;}
.y1e_c00448{bottom:620.850000px;}
.y4b_c00448{bottom:626.400000px;}
.y1d_c00448{bottom:639.150000px;}
.y4a_c00448{bottom:648.750000px;}
.y1c_c00448{bottom:656.850000px;}
.y1b_c00448{bottom:674.550000px;}
.y49_c00448{bottom:679.350000px;}
.y1a_c00448{bottom:692.550000px;}
.y48_c00448{bottom:704.850000px;}
.y19_c00448{bottom:710.550000px;}
.y47_c00448{bottom:724.350000px;}
.y18_c00448{bottom:728.550000px;}
.y46_c00448{bottom:742.650000px;}
.y17_c00448{bottom:746.250000px;}
.y45_c00448{bottom:762.900000px;}
.y16_c00448{bottom:764.250000px;}
.y15_c00448{bottom:782.250000px;}
.y44_c00448{bottom:787.050000px;}
.y14_c00448{bottom:800.250000px;}
.y43_c00448{bottom:807.900000px;}
.y13_c00448{bottom:818.250000px;}
.y42_c00448{bottom:830.250000px;}
.y12_c00448{bottom:835.500000px;}
.y41_c00448{bottom:850.350000px;}
.y11_c00448{bottom:853.500000px;}
.y10_c00448{bottom:871.500000px;}
.y40_c00448{bottom:871.950000px;}
.yf_c00448{bottom:889.500000px;}
.y3f_c00448{bottom:893.400000px;}
.y3e_c00448{bottom:912.900000px;}
.ye_c00448{bottom:914.250000px;}
.y3d_c00448{bottom:930.900000px;}
.yd_c00448{bottom:934.800000px;}
.y3c_c00448{bottom:948.600000px;}
.yc_c00448{bottom:952.800000px;}
.y3b_c00448{bottom:970.500000px;}
.yb_c00448{bottom:971.100000px;}
.ya_c00448{bottom:989.100000px;}
.y3a_c00448{bottom:992.100000px;}
.y9_c00448{bottom:1006.800000px;}
.y39_c00448{bottom:1010.850000px;}
.y8_c00448{bottom:1024.500000px;}
.y38_c00448{bottom:1031.850000px;}
.y7_c00448{bottom:1042.500000px;}
.y37_c00448{bottom:1050.900000px;}
.y6_c00448{bottom:1060.800000px;}
.y5_c00448{bottom:1078.500000px;}
.y36_c00448{bottom:1079.250000px;}
.y35_c00448{bottom:1087.200000px;}
.y4_c00448{bottom:1096.500000px;}
.y34_c00448{bottom:1107.750000px;}
.y3_c00448{bottom:1114.500000px;}
.y1_c00448{bottom:1142.700000px;}
.y2_c00448{bottom:1144.500000px;}
.h7_c00448{height:48.000000px;}
.h5_c00448{height:60.000000px;}
.h4_c00448{height:66.000000px;}
.h3_c00448{height:72.000000px;}
.h2_c00448{height:84.000000px;}
.h6_c00448{height:102.000000px;}
.h1_c00448{height:1266.750000px;}
.h0_c00448{height:1266.839905px;}
.w0_c00448{width:958.320007px;}
.w1_c00448{width:958.500000px;}
.x0_c00448{left:0.000000px;}
.x4_c00448{left:61.500000px;}
.x48_c00448{left:63.000000px;}
.x28_c00448{left:80.100000px;}
.xb_c00448{left:81.450000px;}
.x75_c00448{left:82.800000px;}
.x93_c00448{left:83.850000px;}
.x88_c00448{left:98.100000px;}
.x80_c00448{left:100.050000px;}
.x7a_c00448{left:103.200000px;}
.x7e_c00448{left:105.900000px;}
.x76_c00448{left:109.500000px;}
.x5b_c00448{left:111.450000px;}
.xc_c00448{left:113.850000px;}
.x6f_c00448{left:115.350000px;}
.x1c_c00448{left:119.250000px;}
.x3e_c00448{left:121.050000px;}
.x6a_c00448{left:122.100000px;}
.x43_c00448{left:124.800000px;}
.x33_c00448{left:127.800000px;}
.x97_c00448{left:129.300000px;}
.x3f_c00448{left:131.250000px;}
.x6d_c00448{left:132.450000px;}
.x29_c00448{left:134.100000px;}
.x14_c00448{left:136.500000px;}
.x58_c00448{left:139.350000px;}
.x47_c00448{left:141.900000px;}
.x78_c00448{left:144.300000px;}
.x5_c00448{left:146.850000px;}
.x21_c00448{left:148.500000px;}
.x96_c00448{left:149.700000px;}
.x9a_c00448{left:151.950000px;}
.x49_c00448{left:153.750000px;}
.x82_c00448{left:155.550000px;}
.x22_c00448{left:157.500000px;}
.x34_c00448{left:158.700000px;}
.xd_c00448{left:161.700000px;}
.x66_c00448{left:163.950000px;}
.x15_c00448{left:165.600000px;}
.x94_c00448{left:168.150000px;}
.x92_c00448{left:169.950000px;}
.x89_c00448{left:172.350000px;}
.x35_c00448{left:175.200000px;}
.x85_c00448{left:177.450000px;}
.x54_c00448{left:179.400000px;}
.x4e_c00448{left:181.200000px;}
.x8d_c00448{left:182.700000px;}
.x2e_c00448{left:183.750000px;}
.x7b_c00448{left:185.250000px;}
.x90_c00448{left:186.300000px;}
.x6b_c00448{left:189.450000px;}
.x83_c00448{left:191.550000px;}
.x40_c00448{left:194.700000px;}
.x16_c00448{left:197.250000px;}
.x55_c00448{left:200.700000px;}
.xe_c00448{left:202.350000px;}
.x95_c00448{left:203.850000px;}
.x6_c00448{left:205.200000px;}
.x61_c00448{left:206.250000px;}
.x1d_c00448{left:208.500000px;}
.x5e_c00448{left:210.150000px;}
.x23_c00448{left:211.200000px;}
.x4a_c00448{left:213.450000px;}
.x71_c00448{left:215.250000px;}
.x36_c00448{left:217.650000px;}
.x4f_c00448{left:218.700000px;}
.x2a_c00448{left:220.200000px;}
.x67_c00448{left:221.850000px;}
.x6e_c00448{left:223.800000px;}
.x2f_c00448{left:225.450000px;}
.x4b_c00448{left:227.550000px;}
.x8b_c00448{left:229.200000px;}
.xf_c00448{left:232.950000px;}
.x37_c00448{left:234.900000px;}
.x17_c00448{left:237.150000px;}
.x98_c00448{left:239.550000px;}
.x59_c00448{left:240.600000px;}
.x24_c00448{left:245.400000px;}
.x5f_c00448{left:247.650000px;}
.x18_c00448{left:249.450000px;}
.x7_c00448{left:251.250000px;}
.x50_c00448{left:252.600000px;}
.x65_c00448{left:254.700000px;}
.x8a_c00448{left:256.200000px;}
.x2b_c00448{left:257.250000px;}
.x38_c00448{left:259.050000px;}
.x44_c00448{left:260.400000px;}
.x4c_c00448{left:261.450000px;}
.x30_c00448{left:263.250000px;}
.x25_c00448{left:265.500000px;}
.x7f_c00448{left:266.550000px;}
.x10_c00448{left:269.700000px;}
.x62_c00448{left:272.250000px;}
.x51_c00448{left:273.450000px;}
.x39_c00448{left:274.950000px;}
.x72_c00448{left:280.800000px;}
.x5a_c00448{left:283.500000px;}
.x7c_c00448{left:285.900000px;}
.x1e_c00448{left:287.400000px;}
.x11_c00448{left:288.750000px;}
.x56_c00448{left:290.400000px;}
.x73_c00448{left:293.700000px;}
.x1_c00448{left:295.200000px;}
.x2c_c00448{left:296.550000px;}
.x79_c00448{left:298.950000px;}
.x60_c00448{left:300.150000px;}
.x8f_c00448{left:302.550000px;}
.x8_c00448{left:304.200000px;}
.x99_c00448{left:307.500000px;}
.x3a_c00448{left:308.850000px;}
.x57_c00448{left:310.950000px;}
.x77_c00448{left:313.200000px;}
.x26_c00448{left:320.250000px;}
.x87_c00448{left:321.750000px;}
.x81_c00448{left:324.000000px;}
.x19_c00448{left:325.800000px;}
.x8c_c00448{left:327.150000px;}
.x84_c00448{left:328.350000px;}
.x3b_c00448{left:329.400000px;}
.x5c_c00448{left:331.050000px;}
.x2d_c00448{left:332.850000px;}
.x9b_c00448{left:334.800000px;}
.x70_c00448{left:336.600000px;}
.x45_c00448{left:341.700000px;}
.x6c_c00448{left:342.900000px;}
.x1a_c00448{left:345.300000px;}
.x3c_c00448{left:346.350000px;}
.x1f_c00448{left:347.550000px;}
.x91_c00448{left:350.400000px;}
.x52_c00448{left:352.200000px;}
.x63_c00448{left:354.300000px;}
.x12_c00448{left:355.350000px;}
.x4d_c00448{left:356.550000px;}
.x20_c00448{left:358.050000px;}
.x68_c00448{left:359.700000px;}
.x41_c00448{left:361.050000px;}
.x8e_c00448{left:362.400000px;}
.x31_c00448{left:364.050000px;}
.x9_c00448{left:365.100000px;}
.x13_c00448{left:369.450000px;}
.x42_c00448{left:372.150000px;}
.x5d_c00448{left:376.800000px;}
.x3d_c00448{left:379.800000px;}
.x1b_c00448{left:381.300000px;}
.x53_c00448{left:382.500000px;}
.x74_c00448{left:383.700000px;}
.x86_c00448{left:385.500000px;}
.x69_c00448{left:387.000000px;}
.xa_c00448{left:388.500000px;}
.x32_c00448{left:390.300000px;}
.x64_c00448{left:391.800000px;}
.x7d_c00448{left:394.650000px;}
.x27_c00448{left:396.150000px;}
.x46_c00448{left:397.500000px;}
.x9c_c00448{left:420.450000px;}
.xe1_c00448{left:422.250000px;}
.x11a_c00448{left:423.300000px;}
.x121_c00448{left:437.250000px;}
.xa8_c00448{left:438.450000px;}
.xba_c00448{left:439.800000px;}
.xfa_c00448{left:441.300000px;}
.xe9_c00448{left:442.500000px;}
.x11e_c00448{left:451.350000px;}
.x10a_c00448{left:452.550000px;}
.xdf_c00448{left:453.750000px;}
.xae_c00448{left:456.900000px;}
.xbf_c00448{left:458.700000px;}
.xdb_c00448{left:459.750000px;}
.xf2_c00448{left:464.100000px;}
.x110_c00448{left:466.950000px;}
.xc9_c00448{left:469.050000px;}
.xcf_c00448{left:472.950000px;}
.xfc_c00448{left:474.600000px;}
.x107_c00448{left:475.950000px;}
.xb3_c00448{left:478.950000px;}
.xbb_c00448{left:480.450000px;}
.xe2_c00448{left:481.950000px;}
.x11b_c00448{left:483.000000px;}
.xa9_c00448{left:486.750000px;}
.xe8_c00448{left:488.850000px;}
.xe5_c00448{left:490.800000px;}
.x115_c00448{left:492.300000px;}
.x9d_c00448{left:493.500000px;}
.xc0_c00448{left:495.450000px;}
.xc3_c00448{left:499.650000px;}
.xe0_c00448{left:501.300000px;}
.xaf_c00448{left:503.700000px;}
.xb4_c00448{left:505.200000px;}
.xdc_c00448{left:506.850000px;}
.x112_c00448{left:508.650000px;}
.xd0_c00448{left:509.700000px;}
.x118_c00448{left:511.500000px;}
.xfb_c00448{left:515.100000px;}
.xb5_c00448{left:516.300000px;}
.xd6_c00448{left:519.750000px;}
.xca_c00448{left:521.250000px;}
.xa4_c00448{left:522.750000px;}
.xed_c00448{left:524.250000px;}
.xfd_c00448{left:527.100000px;}
.x101_c00448{left:531.150000px;}
.xf4_c00448{left:532.950000px;}
.xf8_c00448{left:536.100000px;}
.x11c_c00448{left:537.750000px;}
.xbc_c00448{left:539.100000px;}
.xb0_c00448{left:543.000000px;}
.xea_c00448{left:544.050000px;}
.xee_c00448{left:545.100000px;}
.xb6_c00448{left:547.650000px;}
.x10b_c00448{left:549.000000px;}
.xe3_c00448{left:550.650000px;}
.xa5_c00448{left:551.850000px;}
.x122_c00448{left:553.200000px;}
.x125_c00448{left:554.400000px;}
.x9e_c00448{left:557.250000px;}
.xd8_c00448{left:560.100000px;}
.xaa_c00448{left:561.600000px;}
.xc4_c00448{left:563.700000px;}
.x102_c00448{left:566.850000px;}
.xd3_c00448{left:568.500000px;}
.xef_c00448{left:570.300000px;}
.x10f_c00448{left:572.250000px;}
.xf5_c00448{left:574.050000px;}
.xd9_c00448{left:575.250000px;}
.x108_c00448{left:577.200000px;}
.xbd_c00448{left:578.700000px;}
.xfe_c00448{left:581.550000px;}
.xd1_c00448{left:583.200000px;}
.x103_c00448{left:584.550000px;}
.xcb_c00448{left:587.100000px;}
.xc1_c00448{left:588.450000px;}
.xe6_c00448{left:589.800000px;}
.xc5_c00448{left:592.200000px;}
.xd4_c00448{left:593.400000px;}
.xab_c00448{left:595.500000px;}
.xa6_c00448{left:596.550000px;}
.xbe_c00448{left:600.600000px;}
.xb7_c00448{left:602.400000px;}
.xff_c00448{left:604.200000px;}
.x104_c00448{left:606.900000px;}
.xd5_c00448{left:609.900000px;}
.x113_c00448{left:611.250000px;}
.x116_c00448{left:613.650000px;}
.x9f_c00448{left:617.400000px;}
.x123_c00448{left:619.050000px;}
.xf0_c00448{left:621.450000px;}
.xb1_c00448{left:625.050000px;}
.xa7_c00448{left:626.400000px;}
.xac_c00448{left:627.600000px;}
.xc6_c00448{left:629.250000px;}
.x117_c00448{left:631.650000px;}
.xb8_c00448{left:638.100000px;}
.xe4_c00448{left:641.400000px;}
.xeb_c00448{left:645.600000px;}
.xf6_c00448{left:646.800000px;}
.xdd_c00448{left:649.350000px;}
.x10c_c00448{left:651.150000px;}
.xc2_c00448{left:653.250000px;}
.x120_c00448{left:655.350000px;}
.xad_c00448{left:656.400000px;}
.xda_c00448{left:657.750000px;}
.xe7_c00448{left:659.250000px;}
.xde_c00448{left:660.450000px;}
.xa0_c00448{left:665.250000px;}
.xd2_c00448{left:667.800000px;}
.x126_c00448{left:669.000000px;}
.xc7_c00448{left:677.100000px;}
.xcc_c00448{left:678.600000px;}
.x109_c00448{left:679.800000px;}
.xd7_c00448{left:681.000000px;}
.x114_c00448{left:687.900000px;}
.xb9_c00448{left:689.250000px;}
.xa1_c00448{left:691.200000px;}
.x127_c00448{left:692.250000px;}
.x100_c00448{left:694.200000px;}
.x111_c00448{left:696.600000px;}
.x105_c00448{left:698.100000px;}
.x10d_c00448{left:704.850000px;}
.xf1_c00448{left:707.100000px;}
.xf7_c00448{left:709.050000px;}
.xcd_c00448{left:711.300000px;}
.xb2_c00448{left:712.950000px;}
.xec_c00448{left:715.800000px;}
.x11d_c00448{left:718.500000px;}
.xf9_c00448{left:720.300000px;}
.xc8_c00448{left:723.900000px;}
.xa2_c00448{left:726.150000px;}
.x10e_c00448{left:727.200000px;}
.x2_c00448{left:732.600000px;}
.xce_c00448{left:733.950000px;}
.x106_c00448{left:735.900000px;}
.x11f_c00448{left:741.300000px;}
.xf3_c00448{left:744.300000px;}
.x119_c00448{left:745.500000px;}
.x129_c00448{left:746.850000px;}
.x124_c00448{left:748.350000px;}
.x128_c00448{left:749.550000px;}
.xa3_c00448{left:755.250000px;}
.x3_c00448{left:774.000000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws1_c00448{word-spacing:-7.373147pt;}
.ws4_c00448{word-spacing:-3.035230pt;}
.ws7_c00448{word-spacing:0.000000pt;}
.ws2_c00448{word-spacing:3.572849pt;}
.ws6_c00448{word-spacing:5.380117pt;}
.ws0_c00448{word-spacing:8.000000pt;}
.ws3_c00448{word-spacing:21.770492pt;}
.ws5_c00448{word-spacing:26.031746pt;}
._0_c00448{width:58.098361pt;}
.fs5_c00448{font-size:42.666667pt;}
.fs3_c00448{font-size:53.333333pt;}
.fs2_c00448{font-size:58.666667pt;}
.fs1_c00448{font-size:64.000000pt;}
.fs0_c00448{font-size:74.666667pt;}
.fs4_c00448{font-size:90.666667pt;}
.y0_c00448{bottom:0.000000pt;}
.y33_c00448{bottom:161.333333pt;}
.y65_c00448{bottom:164.133333pt;}
.y64_c00448{bottom:174.666667pt;}
.y32_c00448{bottom:181.466667pt;}
.y63_c00448{bottom:187.200000pt;}
.y31_c00448{bottom:200.666667pt;}
.y62_c00448{bottom:201.600000pt;}
.y61_c00448{bottom:214.133333pt;}
.y60_c00448{bottom:227.600000pt;}
.y30_c00448{bottom:232.000000pt;}
.y5f_c00448{bottom:241.333333pt;}
.y5e_c00448{bottom:253.466667pt;}
.y2f_c00448{bottom:263.600000pt;}
.y5d_c00448{bottom:265.600000pt;}
.y5c_c00448{bottom:279.066667pt;}
.y2e_c00448{bottom:280.266667pt;}
.y5b_c00448{bottom:291.866667pt;}
.y2d_c00448{bottom:296.266667pt;}
.y5a_c00448{bottom:304.533333pt;}
.y2c_c00448{bottom:312.266667pt;}
.y59_c00448{bottom:320.533333pt;}
.y2b_c00448{bottom:328.533333pt;}
.y58_c00448{bottom:336.800000pt;}
.y2a_c00448{bottom:344.266667pt;}
.y57_c00448{bottom:352.533333pt;}
.y29_c00448{bottom:360.266667pt;}
.y56_c00448{bottom:368.266667pt;}
.y28_c00448{bottom:376.533333pt;}
.y55_c00448{bottom:391.733333pt;}
.y27_c00448{bottom:392.266667pt;}
.y54_c00448{bottom:408.000000pt;}
.y26_c00448{bottom:414.933333pt;}
.y53_c00448{bottom:426.933333pt;}
.y25_c00448{bottom:432.266667pt;}
.y52_c00448{bottom:444.266667pt;}
.y24_c00448{bottom:448.533333pt;}
.y51_c00448{bottom:460.266667pt;}
.y23_c00448{bottom:464.266667pt;}
.y50_c00448{bottom:476.266667pt;}
.y22_c00448{bottom:480.266667pt;}
.y4f_c00448{bottom:492.266667pt;}
.y21_c00448{bottom:503.466667pt;}
.y4e_c00448{bottom:508.266667pt;}
.y20_c00448{bottom:520.133333pt;}
.y4d_c00448{bottom:524.533333pt;}
.y1f_c00448{bottom:536.133333pt;}
.y4c_c00448{bottom:539.866667pt;}
.y1e_c00448{bottom:551.866667pt;}
.y4b_c00448{bottom:556.800000pt;}
.y1d_c00448{bottom:568.133333pt;}
.y4a_c00448{bottom:576.666667pt;}
.y1c_c00448{bottom:583.866667pt;}
.y1b_c00448{bottom:599.600000pt;}
.y49_c00448{bottom:603.866667pt;}
.y1a_c00448{bottom:615.600000pt;}
.y48_c00448{bottom:626.533333pt;}
.y19_c00448{bottom:631.600000pt;}
.y47_c00448{bottom:643.866667pt;}
.y18_c00448{bottom:647.600000pt;}
.y46_c00448{bottom:660.133333pt;}
.y17_c00448{bottom:663.333333pt;}
.y45_c00448{bottom:678.133333pt;}
.y16_c00448{bottom:679.333333pt;}
.y15_c00448{bottom:695.333333pt;}
.y44_c00448{bottom:699.600000pt;}
.y14_c00448{bottom:711.333333pt;}
.y43_c00448{bottom:718.133333pt;}
.y13_c00448{bottom:727.333333pt;}
.y42_c00448{bottom:738.000000pt;}
.y12_c00448{bottom:742.666667pt;}
.y41_c00448{bottom:755.866667pt;}
.y11_c00448{bottom:758.666667pt;}
.y10_c00448{bottom:774.666667pt;}
.y40_c00448{bottom:775.066667pt;}
.yf_c00448{bottom:790.666667pt;}
.y3f_c00448{bottom:794.133333pt;}
.y3e_c00448{bottom:811.466667pt;}
.ye_c00448{bottom:812.666667pt;}
.y3d_c00448{bottom:827.466667pt;}
.yd_c00448{bottom:830.933333pt;}
.y3c_c00448{bottom:843.200000pt;}
.yc_c00448{bottom:846.933333pt;}
.y3b_c00448{bottom:862.666667pt;}
.yb_c00448{bottom:863.200000pt;}
.ya_c00448{bottom:879.200000pt;}
.y3a_c00448{bottom:881.866667pt;}
.y9_c00448{bottom:894.933333pt;}
.y39_c00448{bottom:898.533333pt;}
.y8_c00448{bottom:910.666667pt;}
.y38_c00448{bottom:917.200000pt;}
.y7_c00448{bottom:926.666667pt;}
.y37_c00448{bottom:934.133333pt;}
.y6_c00448{bottom:942.933333pt;}
.y5_c00448{bottom:958.666667pt;}
.y36_c00448{bottom:959.333333pt;}
.y35_c00448{bottom:966.400000pt;}
.y4_c00448{bottom:974.666667pt;}
.y34_c00448{bottom:984.666667pt;}
.y3_c00448{bottom:990.666667pt;}
.y1_c00448{bottom:1015.733333pt;}
.y2_c00448{bottom:1017.333333pt;}
.h7_c00448{height:42.666667pt;}
.h5_c00448{height:53.333333pt;}
.h4_c00448{height:58.666667pt;}
.h3_c00448{height:64.000000pt;}
.h2_c00448{height:74.666667pt;}
.h6_c00448{height:90.666667pt;}
.h1_c00448{height:1126.000000pt;}
.h0_c00448{height:1126.079916pt;}
.w0_c00448{width:851.840007pt;}
.w1_c00448{width:852.000000pt;}
.x0_c00448{left:0.000000pt;}
.x4_c00448{left:54.666667pt;}
.x48_c00448{left:56.000000pt;}
.x28_c00448{left:71.200000pt;}
.xb_c00448{left:72.400000pt;}
.x75_c00448{left:73.600000pt;}
.x93_c00448{left:74.533333pt;}
.x88_c00448{left:87.200000pt;}
.x80_c00448{left:88.933333pt;}
.x7a_c00448{left:91.733333pt;}
.x7e_c00448{left:94.133333pt;}
.x76_c00448{left:97.333333pt;}
.x5b_c00448{left:99.066667pt;}
.xc_c00448{left:101.200000pt;}
.x6f_c00448{left:102.533333pt;}
.x1c_c00448{left:106.000000pt;}
.x3e_c00448{left:107.600000pt;}
.x6a_c00448{left:108.533333pt;}
.x43_c00448{left:110.933333pt;}
.x33_c00448{left:113.600000pt;}
.x97_c00448{left:114.933333pt;}
.x3f_c00448{left:116.666667pt;}
.x6d_c00448{left:117.733333pt;}
.x29_c00448{left:119.200000pt;}
.x14_c00448{left:121.333333pt;}
.x58_c00448{left:123.866667pt;}
.x47_c00448{left:126.133333pt;}
.x78_c00448{left:128.266667pt;}
.x5_c00448{left:130.533333pt;}
.x21_c00448{left:132.000000pt;}
.x96_c00448{left:133.066667pt;}
.x9a_c00448{left:135.066667pt;}
.x49_c00448{left:136.666667pt;}
.x82_c00448{left:138.266667pt;}
.x22_c00448{left:140.000000pt;}
.x34_c00448{left:141.066667pt;}
.xd_c00448{left:143.733333pt;}
.x66_c00448{left:145.733333pt;}
.x15_c00448{left:147.200000pt;}
.x94_c00448{left:149.466667pt;}
.x92_c00448{left:151.066667pt;}
.x89_c00448{left:153.200000pt;}
.x35_c00448{left:155.733333pt;}
.x85_c00448{left:157.733333pt;}
.x54_c00448{left:159.466667pt;}
.x4e_c00448{left:161.066667pt;}
.x8d_c00448{left:162.400000pt;}
.x2e_c00448{left:163.333333pt;}
.x7b_c00448{left:164.666667pt;}
.x90_c00448{left:165.600000pt;}
.x6b_c00448{left:168.400000pt;}
.x83_c00448{left:170.266667pt;}
.x40_c00448{left:173.066667pt;}
.x16_c00448{left:175.333333pt;}
.x55_c00448{left:178.400000pt;}
.xe_c00448{left:179.866667pt;}
.x95_c00448{left:181.200000pt;}
.x6_c00448{left:182.400000pt;}
.x61_c00448{left:183.333333pt;}
.x1d_c00448{left:185.333333pt;}
.x5e_c00448{left:186.800000pt;}
.x23_c00448{left:187.733333pt;}
.x4a_c00448{left:189.733333pt;}
.x71_c00448{left:191.333333pt;}
.x36_c00448{left:193.466667pt;}
.x4f_c00448{left:194.400000pt;}
.x2a_c00448{left:195.733333pt;}
.x67_c00448{left:197.200000pt;}
.x6e_c00448{left:198.933333pt;}
.x2f_c00448{left:200.400000pt;}
.x4b_c00448{left:202.266667pt;}
.x8b_c00448{left:203.733333pt;}
.xf_c00448{left:207.066667pt;}
.x37_c00448{left:208.800000pt;}
.x17_c00448{left:210.800000pt;}
.x98_c00448{left:212.933333pt;}
.x59_c00448{left:213.866667pt;}
.x24_c00448{left:218.133333pt;}
.x5f_c00448{left:220.133333pt;}
.x18_c00448{left:221.733333pt;}
.x7_c00448{left:223.333333pt;}
.x50_c00448{left:224.533333pt;}
.x65_c00448{left:226.400000pt;}
.x8a_c00448{left:227.733333pt;}
.x2b_c00448{left:228.666667pt;}
.x38_c00448{left:230.266667pt;}
.x44_c00448{left:231.466667pt;}
.x4c_c00448{left:232.400000pt;}
.x30_c00448{left:234.000000pt;}
.x25_c00448{left:236.000000pt;}
.x7f_c00448{left:236.933333pt;}
.x10_c00448{left:239.733333pt;}
.x62_c00448{left:242.000000pt;}
.x51_c00448{left:243.066667pt;}
.x39_c00448{left:244.400000pt;}
.x72_c00448{left:249.600000pt;}
.x5a_c00448{left:252.000000pt;}
.x7c_c00448{left:254.133333pt;}
.x1e_c00448{left:255.466667pt;}
.x11_c00448{left:256.666667pt;}
.x56_c00448{left:258.133333pt;}
.x73_c00448{left:261.066667pt;}
.x1_c00448{left:262.400000pt;}
.x2c_c00448{left:263.600000pt;}
.x79_c00448{left:265.733333pt;}
.x60_c00448{left:266.800000pt;}
.x8f_c00448{left:268.933333pt;}
.x8_c00448{left:270.400000pt;}
.x99_c00448{left:273.333333pt;}
.x3a_c00448{left:274.533333pt;}
.x57_c00448{left:276.400000pt;}
.x77_c00448{left:278.400000pt;}
.x26_c00448{left:284.666667pt;}
.x87_c00448{left:286.000000pt;}
.x81_c00448{left:288.000000pt;}
.x19_c00448{left:289.600000pt;}
.x8c_c00448{left:290.800000pt;}
.x84_c00448{left:291.866667pt;}
.x3b_c00448{left:292.800000pt;}
.x5c_c00448{left:294.266667pt;}
.x2d_c00448{left:295.866667pt;}
.x9b_c00448{left:297.600000pt;}
.x70_c00448{left:299.200000pt;}
.x45_c00448{left:303.733333pt;}
.x6c_c00448{left:304.800000pt;}
.x1a_c00448{left:306.933333pt;}
.x3c_c00448{left:307.866667pt;}
.x1f_c00448{left:308.933333pt;}
.x91_c00448{left:311.466667pt;}
.x52_c00448{left:313.066667pt;}
.x63_c00448{left:314.933333pt;}
.x12_c00448{left:315.866667pt;}
.x4d_c00448{left:316.933333pt;}
.x20_c00448{left:318.266667pt;}
.x68_c00448{left:319.733333pt;}
.x41_c00448{left:320.933333pt;}
.x8e_c00448{left:322.133333pt;}
.x31_c00448{left:323.600000pt;}
.x9_c00448{left:324.533333pt;}
.x13_c00448{left:328.400000pt;}
.x42_c00448{left:330.800000pt;}
.x5d_c00448{left:334.933333pt;}
.x3d_c00448{left:337.600000pt;}
.x1b_c00448{left:338.933333pt;}
.x53_c00448{left:340.000000pt;}
.x74_c00448{left:341.066667pt;}
.x86_c00448{left:342.666667pt;}
.x69_c00448{left:344.000000pt;}
.xa_c00448{left:345.333333pt;}
.x32_c00448{left:346.933333pt;}
.x64_c00448{left:348.266667pt;}
.x7d_c00448{left:350.800000pt;}
.x27_c00448{left:352.133333pt;}
.x46_c00448{left:353.333333pt;}
.x9c_c00448{left:373.733333pt;}
.xe1_c00448{left:375.333333pt;}
.x11a_c00448{left:376.266667pt;}
.x121_c00448{left:388.666667pt;}
.xa8_c00448{left:389.733333pt;}
.xba_c00448{left:390.933333pt;}
.xfa_c00448{left:392.266667pt;}
.xe9_c00448{left:393.333333pt;}
.x11e_c00448{left:401.200000pt;}
.x10a_c00448{left:402.266667pt;}
.xdf_c00448{left:403.333333pt;}
.xae_c00448{left:406.133333pt;}
.xbf_c00448{left:407.733333pt;}
.xdb_c00448{left:408.666667pt;}
.xf2_c00448{left:412.533333pt;}
.x110_c00448{left:415.066667pt;}
.xc9_c00448{left:416.933333pt;}
.xcf_c00448{left:420.400000pt;}
.xfc_c00448{left:421.866667pt;}
.x107_c00448{left:423.066667pt;}
.xb3_c00448{left:425.733333pt;}
.xbb_c00448{left:427.066667pt;}
.xe2_c00448{left:428.400000pt;}
.x11b_c00448{left:429.333333pt;}
.xa9_c00448{left:432.666667pt;}
.xe8_c00448{left:434.533333pt;}
.xe5_c00448{left:436.266667pt;}
.x115_c00448{left:437.600000pt;}
.x9d_c00448{left:438.666667pt;}
.xc0_c00448{left:440.400000pt;}
.xc3_c00448{left:444.133333pt;}
.xe0_c00448{left:445.600000pt;}
.xaf_c00448{left:447.733333pt;}
.xb4_c00448{left:449.066667pt;}
.xdc_c00448{left:450.533333pt;}
.x112_c00448{left:452.133333pt;}
.xd0_c00448{left:453.066667pt;}
.x118_c00448{left:454.666667pt;}
.xfb_c00448{left:457.866667pt;}
.xb5_c00448{left:458.933333pt;}
.xd6_c00448{left:462.000000pt;}
.xca_c00448{left:463.333333pt;}
.xa4_c00448{left:464.666667pt;}
.xed_c00448{left:466.000000pt;}
.xfd_c00448{left:468.533333pt;}
.x101_c00448{left:472.133333pt;}
.xf4_c00448{left:473.733333pt;}
.xf8_c00448{left:476.533333pt;}
.x11c_c00448{left:478.000000pt;}
.xbc_c00448{left:479.200000pt;}
.xb0_c00448{left:482.666667pt;}
.xea_c00448{left:483.600000pt;}
.xee_c00448{left:484.533333pt;}
.xb6_c00448{left:486.800000pt;}
.x10b_c00448{left:488.000000pt;}
.xe3_c00448{left:489.466667pt;}
.xa5_c00448{left:490.533333pt;}
.x122_c00448{left:491.733333pt;}
.x125_c00448{left:492.800000pt;}
.x9e_c00448{left:495.333333pt;}
.xd8_c00448{left:497.866667pt;}
.xaa_c00448{left:499.200000pt;}
.xc4_c00448{left:501.066667pt;}
.x102_c00448{left:503.866667pt;}
.xd3_c00448{left:505.333333pt;}
.xef_c00448{left:506.933333pt;}
.x10f_c00448{left:508.666667pt;}
.xf5_c00448{left:510.266667pt;}
.xd9_c00448{left:511.333333pt;}
.x108_c00448{left:513.066667pt;}
.xbd_c00448{left:514.400000pt;}
.xfe_c00448{left:516.933333pt;}
.xd1_c00448{left:518.400000pt;}
.x103_c00448{left:519.600000pt;}
.xcb_c00448{left:521.866667pt;}
.xc1_c00448{left:523.066667pt;}
.xe6_c00448{left:524.266667pt;}
.xc5_c00448{left:526.400000pt;}
.xd4_c00448{left:527.466667pt;}
.xab_c00448{left:529.333333pt;}
.xa6_c00448{left:530.266667pt;}
.xbe_c00448{left:533.866667pt;}
.xb7_c00448{left:535.466667pt;}
.xff_c00448{left:537.066667pt;}
.x104_c00448{left:539.466667pt;}
.xd5_c00448{left:542.133333pt;}
.x113_c00448{left:543.333333pt;}
.x116_c00448{left:545.466667pt;}
.x9f_c00448{left:548.800000pt;}
.x123_c00448{left:550.266667pt;}
.xf0_c00448{left:552.400000pt;}
.xb1_c00448{left:555.600000pt;}
.xa7_c00448{left:556.800000pt;}
.xac_c00448{left:557.866667pt;}
.xc6_c00448{left:559.333333pt;}
.x117_c00448{left:561.466667pt;}
.xb8_c00448{left:567.200000pt;}
.xe4_c00448{left:570.133333pt;}
.xeb_c00448{left:573.866667pt;}
.xf6_c00448{left:574.933333pt;}
.xdd_c00448{left:577.200000pt;}
.x10c_c00448{left:578.800000pt;}
.xc2_c00448{left:580.666667pt;}
.x120_c00448{left:582.533333pt;}
.xad_c00448{left:583.466667pt;}
.xda_c00448{left:584.666667pt;}
.xe7_c00448{left:586.000000pt;}
.xde_c00448{left:587.066667pt;}
.xa0_c00448{left:591.333333pt;}
.xd2_c00448{left:593.600000pt;}
.x126_c00448{left:594.666667pt;}
.xc7_c00448{left:601.866667pt;}
.xcc_c00448{left:603.200000pt;}
.x109_c00448{left:604.266667pt;}
.xd7_c00448{left:605.333333pt;}
.x114_c00448{left:611.466667pt;}
.xb9_c00448{left:612.666667pt;}
.xa1_c00448{left:614.400000pt;}
.x127_c00448{left:615.333333pt;}
.x100_c00448{left:617.066667pt;}
.x111_c00448{left:619.200000pt;}
.x105_c00448{left:620.533333pt;}
.x10d_c00448{left:626.533333pt;}
.xf1_c00448{left:628.533333pt;}
.xf7_c00448{left:630.266667pt;}
.xcd_c00448{left:632.266667pt;}
.xb2_c00448{left:633.733333pt;}
.xec_c00448{left:636.266667pt;}
.x11d_c00448{left:638.666667pt;}
.xf9_c00448{left:640.266667pt;}
.xc8_c00448{left:643.466667pt;}
.xa2_c00448{left:645.466667pt;}
.x10e_c00448{left:646.400000pt;}
.x2_c00448{left:651.200000pt;}
.xce_c00448{left:652.400000pt;}
.x106_c00448{left:654.133333pt;}
.x11f_c00448{left:658.933333pt;}
.xf3_c00448{left:661.600000pt;}
.x119_c00448{left:662.666667pt;}
.x129_c00448{left:663.866667pt;}
.x124_c00448{left:665.200000pt;}
.x128_c00448{left:666.266667pt;}
.xa3_c00448{left:671.333333pt;}
.x3_c00448{left:688.000000pt;}
}





/* 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_c00449 {
    display:none;
  }
  .loading-indicator_c00449.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00449 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_c00449 { 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_c00449" -> "#page-container .classname_c00449")
 */
.pf_c00449 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00449 { /* 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_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00449 { /* 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_c00449 { /* 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_c00449 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00449 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00449 {overflow:visible;}
  }
}
.c_c00449 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00449 { /* 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_c00449:after { /* webkit #35443 */
  content: '';
}
.t_c00449:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00449 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 */
}
.__c00449 { /* 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_c00449 { /* info for Javascript */
  display:none;
}
.l_c00449 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00449 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00449 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00449: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_c00449 {
    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_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00449.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_c00449 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00449;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.000000;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;}
.mde_c00449{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00449{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m109_c00449{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00449{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m113_c00449{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m108_c00449{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m49_c00449{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m114_c00449{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m21_c00449{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m25_c00449{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m51_c00449{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m115_c00449{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m104_c00449{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m19_c00449{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00449{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m126_c00449{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mb_c00449{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m106_c00449{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00449{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00449{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00449{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m107_c00449{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00449{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m91_c00449{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m59_c00449{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00449{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00449{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00449{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00449{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m53_c00449{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00449{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m77_c00449{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00449{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.maf_c00449{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m98_c00449{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m56_c00449{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf_c00449{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m63_c00449{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00449{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m97_c00449{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m50_c00449{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00449{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mce_c00449{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m111_c00449{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00449{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m11_c00449{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00449{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00449{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m37_c00449{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m128_c00449{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md9_c00449{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m58_c00449{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00449{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00449{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00449{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m55_c00449{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md7_c00449{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m99_c00449{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m54_c00449{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6_c00449{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m22_c00449{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00449{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.md8_c00449{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m84_c00449{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m64_c00449{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m79_c00449{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m73_c00449{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.md_c00449{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mee_c00449{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00449{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m85_c00449{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m86_c00449{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m13_c00449{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m65_c00449{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00449{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00449{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00449{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m42_c00449{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md6_c00449{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m26_c00449{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.me_c00449{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00449{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m8_c00449{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m76_c00449{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00449{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mac_c00449{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m60_c00449{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m33_c00449{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m44_c00449{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00449{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.md2_c00449{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00449{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me9_c00449{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00449{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m103_c00449{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00449{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me8_c00449{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md5_c00449{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m47_c00449{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00449{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00449{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m24_c00449{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m90_c00449{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m38_c00449{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00449{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00449{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mda_c00449{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00449{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m27_c00449{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m52_c00449{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m92_c00449{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00449{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00449{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00449{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00449{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.me5_c00449{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m66_c00449{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00449{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m31_c00449{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00449{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m39_c00449{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00449{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m36_c00449{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00449{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m20_c00449{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m95_c00449{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m81_c00449{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.md3_c00449{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00449{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mae_c00449{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00449{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00449{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00449{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m62_c00449{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m43_c00449{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m30_c00449{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00449{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10_c00449{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00449{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00449{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m12_c00449{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00449{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00449{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m34_c00449{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m45_c00449{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00449{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m78_c00449{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7_c00449{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00449{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00449{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me1_c00449{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00449{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00449{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m68_c00449{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m29_c00449{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00449{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00449{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00449{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00449{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m57_c00449{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00449{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00449{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.meb_c00449{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00449{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mef_c00449{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m41_c00449{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m14_c00449{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00449{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m94_c00449{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00449{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00449{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00449{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m32_c00449{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m23_c00449{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m48_c00449{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00449{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mca_c00449{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m129_c00449{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m18_c00449{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00449{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m71_c00449{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00449{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m61_c00449{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00449{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m16_c00449{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00449{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00449{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me0_c00449{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mc_c00449{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00449{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m17_c00449{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md1_c00449{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m93_c00449{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00449{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m75_c00449{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00449{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m70_c00449{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m119_c00449{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00449{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00449{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m9_c00449{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mba_c00449{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00449{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00449{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00449{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.med_c00449{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m87_c00449{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mab_c00449{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00449{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00449{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00449{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5_c00449{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mea_c00449{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00449{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00449{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m102_c00449{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m96_c00449{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00449{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mec_c00449{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m69_c00449{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00449{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3_c00449{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m88_c00449{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m28_c00449{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me4_c00449{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m46_c00449{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m125_c00449{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m82_c00449{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m40_c00449{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m127_c00449{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me3_c00449{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00449{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m83_c00449{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00449{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m67_c00449{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m74_c00449{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00449{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mad_c00449{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00449{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00449{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m105_c00449{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m15_c00449{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00449{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00449{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m35_c00449{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00449{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.maa_c00449{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mff_c00449{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m110_c00449{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00449{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00449{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00449{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m72_c00449{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00449{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m89_c00449{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00449{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00449{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m118_c00449{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00449{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m80_c00449{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m116_c00449{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00449{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00449{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.md4_c00449{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.md0_c00449{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m112_c00449{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.me7_c00449{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00449{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00449{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00449{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00449{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00449{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00449{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m100_c00449{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.me2_c00449{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00449{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00449{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00449{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m101_c00449{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00449{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me6_c00449{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00449{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00449{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m117_c00449{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m120_c00449{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00449{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00449{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00449{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00449{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00449{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m121_c00449{transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);}
.m123_c00449{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m122_c00449{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00449{transform:matrix(0.403250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403250,0.000000,0.000000,0.250000,0,0);}
.m124_c00449{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00449{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls4_c00449{letter-spacing:0.000000px;}
.ls2_c00449{letter-spacing:33.428571px;}
.ls3_c00449{letter-spacing:44.500000px;}
.ls1_c00449{letter-spacing:46.994638px;}
.ls0_c00449{letter-spacing:59.250000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{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__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00449{word-spacing:-86.250000px;}
.wsc_c00449{word-spacing:-73.994638px;}
.wsf_c00449{word-spacing:-62.500000px;}
.wse_c00449{word-spacing:-51.428571px;}
.ws1_c00449{word-spacing:-12.150838px;}
.ws0_c00449{word-spacing:-2.346705px;}
.ws12_c00449{word-spacing:0.000000px;}
.ws2_c00449{word-spacing:0.740741px;}
.ws7_c00449{word-spacing:0.793230px;}
.ws3_c00449{word-spacing:6.663934px;}
.ws10_c00449{word-spacing:17.571429px;}
.ws11_c00449{word-spacing:17.750000px;}
.ws4_c00449{word-spacing:22.142857px;}
.ws8_c00449{word-spacing:26.428954px;}
.ws6_c00449{word-spacing:29.285714px;}
.ws9_c00449{word-spacing:32.250000px;}
.wsa_c00449{word-spacing:36.000000px;}
.wsd_c00449{word-spacing:39.750000px;}
.ws5_c00449{word-spacing:50.416667px;}
._2_c00449{margin-left:-59.250000px;}
._3_c00449{margin-left:-46.994638px;}
._5_c00449{margin-left:-44.500000px;}
._4_c00449{margin-left:-33.428571px;}
._6_c00449{width:42.000000px;}
._7_c00449{width:44.500000px;}
._1_c00449{width:46.994638px;}
._0_c00449{width:52.142857px;}
.fc0_c00449{color:transparent;}
.fs6_c00449{font-size:36.000000px;}
.fs5_c00449{font-size:48.000000px;}
.fs4_c00449{font-size:54.000000px;}
.fs3_c00449{font-size:60.000000px;}
.fs2_c00449{font-size:66.000000px;}
.fs0_c00449{font-size:72.000000px;}
.fs1_c00449{font-size:126.000000px;}
.y0_c00449{bottom:0.000000px;}
.y6c_c00449{bottom:188.550000px;}
.y36_c00449{bottom:194.100000px;}
.y6b_c00449{bottom:207.300000px;}
.y35_c00449{bottom:220.800000px;}
.y6a_c00449{bottom:229.650000px;}
.y34_c00449{bottom:238.500000px;}
.y69_c00449{bottom:243.750000px;}
.y33_c00449{bottom:256.200000px;}
.y68_c00449{bottom:256.800000px;}
.y67_c00449{bottom:272.250000px;}
.y32_c00449{bottom:273.900000px;}
.y66_c00449{bottom:286.650000px;}
.y31_c00449{bottom:296.700000px;}
.y65_c00449{bottom:308.250000px;}
.y30_c00449{bottom:313.950000px;}
.y64_c00449{bottom:315.750000px;}
.y63_c00449{bottom:328.350000px;}
.y2f_c00449{bottom:331.950000px;}
.y62_c00449{bottom:342.450000px;}
.y2e_c00449{bottom:349.200000px;}
.y61_c00449{bottom:357.150000px;}
.y2d_c00449{bottom:366.450000px;}
.y60_c00449{bottom:371.550000px;}
.y2c_c00449{bottom:384.150000px;}
.y5f_c00449{bottom:386.550000px;}
.y5e_c00449{bottom:400.650000px;}
.y2b_c00449{bottom:402.150000px;}
.y5d_c00449{bottom:416.100000px;}
.y2a_c00449{bottom:420.150000px;}
.y5c_c00449{bottom:435.600000px;}
.y29_c00449{bottom:438.450000px;}
.y5b_c00449{bottom:453.600000px;}
.y28_c00449{bottom:456.450000px;}
.y5a_c00449{bottom:471.600000px;}
.y27_c00449{bottom:474.450000px;}
.y59_c00449{bottom:489.600000px;}
.y26_c00449{bottom:492.150000px;}
.y25_c00449{bottom:510.450000px;}
.y58_c00449{bottom:512.250000px;}
.y57_c00449{bottom:529.950000px;}
.y24_c00449{bottom:533.250000px;}
.y56_c00449{bottom:547.950000px;}
.y23_c00449{bottom:551.250000px;}
.y55_c00449{bottom:565.950000px;}
.y22_c00449{bottom:568.950000px;}
.y54_c00449{bottom:583.650000px;}
.y21_c00449{bottom:587.250000px;}
.y53_c00449{bottom:601.650000px;}
.y20_c00449{bottom:604.500000px;}
.y1f_c00449{bottom:622.500000px;}
.y52_c00449{bottom:623.550000px;}
.y1e_c00449{bottom:642.000000px;}
.y51_c00449{bottom:650.550000px;}
.y1d_c00449{bottom:659.700000px;}
.y50_c00449{bottom:668.550000px;}
.y1c_c00449{bottom:678.000000px;}
.y4f_c00449{bottom:686.550000px;}
.y1b_c00449{bottom:696.000000px;}
.y4e_c00449{bottom:704.550000px;}
.y1a_c00449{bottom:713.700000px;}
.y4d_c00449{bottom:727.200000px;}
.y19_c00449{bottom:731.700000px;}
.y4c_c00449{bottom:745.200000px;}
.y18_c00449{bottom:749.700000px;}
.y4b_c00449{bottom:763.200000px;}
.y17_c00449{bottom:767.700000px;}
.y4a_c00449{bottom:781.200000px;}
.y16_c00449{bottom:785.700000px;}
.y49_c00449{bottom:799.200000px;}
.y15_c00449{bottom:803.400000px;}
.y48_c00449{bottom:817.200000px;}
.y14_c00449{bottom:821.400000px;}
.y47_c00449{bottom:835.200000px;}
.y13_c00449{bottom:839.100000px;}
.y46_c00449{bottom:852.900000px;}
.y12_c00449{bottom:857.100000px;}
.y45_c00449{bottom:871.200000px;}
.y11_c00449{bottom:875.100000px;}
.y44_c00449{bottom:889.200000px;}
.y10_c00449{bottom:893.100000px;}
.y43_c00449{bottom:907.200000px;}
.yf_c00449{bottom:911.100000px;}
.y42_c00449{bottom:927.750000px;}
.ye_c00449{bottom:928.800000px;}
.y41_c00449{bottom:942.150000px;}
.yd_c00449{bottom:947.100000px;}
.y40_c00449{bottom:957.300000px;}
.yc_c00449{bottom:964.800000px;}
.y3f_c00449{bottom:977.250000px;}
.yb_c00449{bottom:982.800000px;}
.y3e_c00449{bottom:995.250000px;}
.ya_c00449{bottom:1000.800000px;}
.y3d_c00449{bottom:1012.950000px;}
.y9_c00449{bottom:1018.800000px;}
.y3c_c00449{bottom:1031.700000px;}
.y8_c00449{bottom:1036.500000px;}
.y3b_c00449{bottom:1053.300000px;}
.y7_c00449{bottom:1054.500000px;}
.y3a_c00449{bottom:1071.300000px;}
.y6_c00449{bottom:1072.500000px;}
.y39_c00449{bottom:1089.000000px;}
.y5_c00449{bottom:1090.350000px;}
.y38_c00449{bottom:1107.000000px;}
.y4_c00449{bottom:1108.050000px;}
.y37_c00449{bottom:1124.250000px;}
.y3_c00449{bottom:1126.050000px;}
.y2_c00449{bottom:1151.550000px;}
.y1_c00449{bottom:1153.050000px;}
.h8_c00449{height:36.000000px;}
.h7_c00449{height:48.000000px;}
.h6_c00449{height:54.000000px;}
.h5_c00449{height:60.000000px;}
.h4_c00449{height:66.000000px;}
.h2_c00449{height:72.000000px;}
.h3_c00449{height:126.000000px;}
.h1_c00449{height:1272.000000px;}
.h0_c00449{height:1272.239960px;}
.w0_c00449{width:958.320007px;}
.w1_c00449{width:958.500000px;}
.x0_c00449{left:0.000000px;}
.xa5_c00449{left:195.150000px;}
.x92_c00449{left:196.500000px;}
.x1_c00449{left:204.150000px;}
.x5_c00449{left:205.950000px;}
.x9b_c00449{left:212.100000px;}
.x90_c00449{left:213.750000px;}
.x8a_c00449{left:215.100000px;}
.x3b_c00449{left:216.450000px;}
.x7d_c00449{left:217.500000px;}
.x52_c00449{left:218.550000px;}
.x43_c00449{left:219.900000px;}
.xd_c00449{left:222.000000px;}
.x13_c00449{left:223.200000px;}
.x91_c00449{left:230.700000px;}
.x81_c00449{left:233.250000px;}
.x7c_c00449{left:237.600000px;}
.x3c_c00449{left:240.150000px;}
.x5c_c00449{left:243.450000px;}
.x48_c00449{left:244.800000px;}
.x57_c00449{left:245.850000px;}
.x6a_c00449{left:248.550000px;}
.x28_c00449{left:249.600000px;}
.x14_c00449{left:250.950000px;}
.x44_c00449{left:252.000000px;}
.x8b_c00449{left:256.200000px;}
.x74_c00449{left:258.450000px;}
.x64_c00449{left:260.550000px;}
.xe_c00449{left:261.900000px;}
.x1b_c00449{left:263.250000px;}
.xa0_c00449{left:264.900000px;}
.x5f_c00449{left:265.950000px;}
.x15_c00449{left:268.200000px;}
.x79_c00449{left:271.500000px;}
.xa6_c00449{left:272.850000px;}
.x23_c00449{left:274.050000px;}
.x60_c00449{left:275.250000px;}
.x49_c00449{left:276.900000px;}
.x5d_c00449{left:280.650000px;}
.x8c_c00449{left:282.000000px;}
.xa3_c00449{left:284.100000px;}
.x4e_c00449{left:285.600000px;}
.x53_c00449{left:288.150000px;}
.x6_c00449{left:290.850000px;}
.x2e_c00449{left:292.800000px;}
.x32_c00449{left:295.200000px;}
.x3d_c00449{left:297.000000px;}
.x29_c00449{left:300.000000px;}
.xf_c00449{left:301.800000px;}
.xa4_c00449{left:303.900000px;}
.x6f_c00449{left:306.000000px;}
.x82_c00449{left:307.050000px;}
.x58_c00449{left:308.550000px;}
.x77_c00449{left:310.050000px;}
.x38_c00449{left:317.250000px;}
.x16_c00449{left:320.400000px;}
.x6e_c00449{left:323.400000px;}
.x67_c00449{left:325.200000px;}
.x45_c00449{left:326.550000px;}
.x24_c00449{left:328.050000px;}
.x98_c00449{left:329.400000px;}
.x7e_c00449{left:330.600000px;}
.x1c_c00449{left:331.650000px;}
.x9c_c00449{left:333.900000px;}
.x7_c00449{left:335.850000px;}
.x39_c00449{left:337.350000px;}
.x4a_c00449{left:338.400000px;}
.xa1_c00449{left:339.750000px;}
.x95_c00449{left:340.800000px;}
.x8f_c00449{left:342.300000px;}
.x59_c00449{left:343.500000px;}
.x33_c00449{left:345.300000px;}
.x70_c00449{left:348.150000px;}
.x6b_c00449{left:349.350000px;}
.x93_c00449{left:351.000000px;}
.x54_c00449{left:352.950000px;}
.x8_c00449{left:354.900000px;}
.x72_c00449{left:356.400000px;}
.x9d_c00449{left:357.600000px;}
.x46_c00449{left:360.450000px;}
.x99_c00449{left:361.800000px;}
.x3e_c00449{left:362.850000px;}
.x2f_c00449{left:364.800000px;}
.x87_c00449{left:366.000000px;}
.x17_c00449{left:367.200000px;}
.x83_c00449{left:369.000000px;}
.x7f_c00449{left:370.200000px;}
.x3f_c00449{left:372.900000px;}
.x8d_c00449{left:375.150000px;}
.x10_c00449{left:377.100000px;}
.x1d_c00449{left:378.150000px;}
.x9e_c00449{left:379.200000px;}
.x4b_c00449{left:382.350000px;}
.x47_c00449{left:383.550000px;}
.x4f_c00449{left:385.350000px;}
.x34_c00449{left:388.200000px;}
.x25_c00449{left:390.000000px;}
.x30_c00449{left:391.500000px;}
.x85_c00449{left:392.700000px;}
.x8e_c00449{left:393.900000px;}
.x65_c00449{left:395.100000px;}
.x35_c00449{left:397.500000px;}
.x55_c00449{left:399.450000px;}
.x1e_c00449{left:401.550000px;}
.x88_c00449{left:404.100000px;}
.x3a_c00449{left:407.850000px;}
.x11_c00449{left:410.250000px;}
.x2a_c00449{left:411.600000px;}
.x31_c00449{left:413.400000px;}
.x50_c00449{left:415.200000px;}
.x80_c00449{left:416.250000px;}
.x71_c00449{left:418.650000px;}
.x6c_c00449{left:420.600000px;}
.x96_c00449{left:422.100000px;}
.x9_c00449{left:424.050000px;}
.x94_c00449{left:425.550000px;}
.x9a_c00449{left:427.650000px;}
.x5e_c00449{left:430.050000px;}
.x1f_c00449{left:431.100000px;}
.x61_c00449{left:432.150000px;}
.x5a_c00449{left:437.400000px;}
.x89_c00449{left:438.600000px;}
.x36_c00449{left:441.450000px;}
.x7a_c00449{left:442.800000px;}
.x86_c00449{left:444.150000px;}
.xa_c00449{left:448.200000px;}
.x2_c00449{left:450.000000px;}
.x40_c00449{left:451.800000px;}
.x62_c00449{left:453.450000px;}
.x4c_c00449{left:455.400000px;}
.x26_c00449{left:457.650000px;}
.x6d_c00449{left:459.900000px;}
.x18_c00449{left:462.300000px;}
.x2b_c00449{left:464.850000px;}
.x27_c00449{left:466.650000px;}
.x41_c00449{left:467.700000px;}
.x84_c00449{left:469.050000px;}
.x12_c00449{left:470.400000px;}
.x73_c00449{left:472.200000px;}
.x20_c00449{left:473.550000px;}
.x9f_c00449{left:475.350000px;}
.x68_c00449{left:477.900000px;}
.xb_c00449{left:479.100000px;}
.x51_c00449{left:481.050000px;}
.x63_c00449{left:484.050000px;}
.x75_c00449{left:486.000000px;}
.x69_c00449{left:489.450000px;}
.x2c_c00449{left:492.150000px;}
.x21_c00449{left:494.400000px;}
.x7b_c00449{left:496.800000px;}
.xa2_c00449{left:498.900000px;}
.x66_c00449{left:501.600000px;}
.x19_c00449{left:502.650000px;}
.x42_c00449{left:505.800000px;}
.x2d_c00449{left:507.600000px;}
.x5b_c00449{left:509.100000px;}
.x78_c00449{left:511.350000px;}
.x1a_c00449{left:513.450000px;}
.x97_c00449{left:514.500000px;}
.x3_c00449{left:516.600000px;}
.x4d_c00449{left:518.100000px;}
.x76_c00449{left:520.200000px;}
.x56_c00449{left:522.600000px;}
.xc_c00449{left:526.200000px;}
.x37_c00449{left:532.950000px;}
.x22_c00449{left:536.100000px;}
.x134_c00449{left:551.100000px;}
.x12b_c00449{left:553.350000px;}
.x10e_c00449{left:555.150000px;}
.xda_c00449{left:558.000000px;}
.xc8_c00449{left:560.550000px;}
.x146_c00449{left:564.450000px;}
.x137_c00449{left:565.500000px;}
.x149_c00449{left:567.450000px;}
.x132_c00449{left:569.400000px;}
.x124_c00449{left:570.450000px;}
.xe3_c00449{left:571.800000px;}
.xe1_c00449{left:573.000000px;}
.xfa_c00449{left:574.200000px;}
.xea_c00449{left:575.250000px;}
.xbb_c00449{left:578.850000px;}
.x4_c00449{left:580.650000px;}
.x138_c00449{left:583.500000px;}
.x119_c00449{left:589.650000px;}
.xd4_c00449{left:593.100000px;}
.x103_c00449{left:594.750000px;}
.x117_c00449{left:595.800000px;}
.x12c_c00449{left:597.600000px;}
.xa7_c00449{left:599.100000px;}
.x101_c00449{left:600.750000px;}
.x13c_c00449{left:601.950000px;}
.xf3_c00449{left:603.600000px;}
.xc9_c00449{left:604.800000px;}
.x114_c00449{left:607.050000px;}
.xa8_c00449{left:608.850000px;}
.x11d_c00449{left:611.100000px;}
.x129_c00449{left:612.150000px;}
.xeb_c00449{left:613.800000px;}
.xdb_c00449{left:617.400000px;}
.x10f_c00449{left:619.950000px;}
.xd5_c00449{left:622.650000px;}
.x106_c00449{left:625.650000px;}
.x108_c00449{left:627.000000px;}
.x11e_c00449{left:629.100000px;}
.xdc_c00449{left:631.500000px;}
.x14a_c00449{left:633.300000px;}
.xd6_c00449{left:634.950000px;}
.xf4_c00449{left:638.850000px;}
.xc4_c00449{left:640.800000px;}
.xb0_c00449{left:643.800000px;}
.xa9_c00449{left:645.150000px;}
.x109_c00449{left:646.500000px;}
.xbc_c00449{left:648.750000px;}
.x125_c00449{left:650.100000px;}
.xf5_c00449{left:651.450000px;}
.xd7_c00449{left:654.000000px;}
.x112_c00449{left:655.200000px;}
.xdd_c00449{left:656.700000px;}
.xd1_c00449{left:658.200000px;}
.xb5_c00449{left:659.250000px;}
.xec_c00449{left:660.300000px;}
.xc5_c00449{left:662.700000px;}
.x12d_c00449{left:663.900000px;}
.x11f_c00449{left:665.100000px;}
.xcf_c00449{left:669.150000px;}
.x12f_c00449{left:670.650000px;}
.xca_c00449{left:672.900000px;}
.x135_c00449{left:676.350000px;}
.x107_c00449{left:678.150000px;}
.xfb_c00449{left:679.500000px;}
.xe4_c00449{left:680.850000px;}
.xed_c00449{left:682.950000px;}
.xbd_c00449{left:686.250000px;}
.x123_c00449{left:687.300000px;}
.x126_c00449{left:690.450000px;}
.x102_c00449{left:692.850000px;}
.x10c_c00449{left:695.700000px;}
.xb1_c00449{left:696.750000px;}
.xe5_c00449{left:699.150000px;}
.xaa_c00449{left:700.950000px;}
.xd8_c00449{left:702.600000px;}
.xf6_c00449{left:703.950000px;}
.xcb_c00449{left:705.000000px;}
.x139_c00449{left:706.200000px;}
.x115_c00449{left:708.600000px;}
.xfc_c00449{left:710.100000px;}
.x13e_c00449{left:711.450000px;}
.x110_c00449{left:713.550000px;}
.x10a_c00449{left:715.950000px;}
.x113_c00449{left:717.150000px;}
.x13f_c00449{left:718.650000px;}
.xc6_c00449{left:720.000000px;}
.xd2_c00449{left:721.950000px;}
.xbe_c00449{left:723.300000px;}
.xee_c00449{left:725.100000px;}
.x130_c00449{left:727.200000px;}
.xb2_c00449{left:732.000000px;}
.x12a_c00449{left:734.250000px;}
.xab_c00449{left:735.450000px;}
.x11a_c00449{left:737.700000px;}
.x143_c00449{left:738.750000px;}
.x13d_c00449{left:739.950000px;}
.xb6_c00449{left:741.300000px;}
.xd3_c00449{left:742.500000px;}
.x116_c00449{left:743.850000px;}
.xe6_c00449{left:746.700000px;}
.x120_c00449{left:748.500000px;}
.xbf_c00449{left:749.550000px;}
.x104_c00449{left:751.350000px;}
.xb7_c00449{left:752.400000px;}
.xef_c00449{left:753.600000px;}
.xd9_c00449{left:754.800000px;}
.x147_c00449{left:756.000000px;}
.x118_c00449{left:759.900000px;}
.x145_c00449{left:760.950000px;}
.x131_c00449{left:762.450000px;}
.xfe_c00449{left:764.250000px;}
.xb3_c00449{left:766.500000px;}
.x11b_c00449{left:768.000000px;}
.x140_c00449{left:769.050000px;}
.xde_c00449{left:770.700000px;}
.xc7_c00449{left:771.900000px;}
.x144_c00449{left:774.150000px;}
.x13a_c00449{left:776.100000px;}
.xf0_c00449{left:777.300000px;}
.xac_c00449{left:781.950000px;}
.xc0_c00449{left:783.750000px;}
.x10d_c00449{left:786.150000px;}
.x10b_c00449{left:787.500000px;}
.xb8_c00449{left:789.450000px;}
.xe7_c00449{left:790.950000px;}
.xcc_c00449{left:793.650000px;}
.x142_c00449{left:795.600000px;}
.x13b_c00449{left:797.100000px;}
.xf7_c00449{left:798.600000px;}
.xe2_c00449{left:799.650000px;}
.xc1_c00449{left:802.050000px;}
.xdf_c00449{left:803.100000px;}
.xe8_c00449{left:806.400000px;}
.x136_c00449{left:808.200000px;}
.xd0_c00449{left:809.700000px;}
.x111_c00449{left:810.750000px;}
.xc2_c00449{left:812.100000px;}
.x121_c00449{left:813.600000px;}
.x133_c00449{left:814.650000px;}
.xf1_c00449{left:816.900000px;}
.xad_c00449{left:823.050000px;}
.x148_c00449{left:824.850000px;}
.xf2_c00449{left:828.750000px;}
.xcd_c00449{left:831.450000px;}
.x11c_c00449{left:832.500000px;}
.xff_c00449{left:834.150000px;}
.x127_c00449{left:836.100000px;}
.xb9_c00449{left:840.150000px;}
.xe9_c00449{left:842.700000px;}
.xf8_c00449{left:845.400000px;}
.xb4_c00449{left:847.200000px;}
.x122_c00449{left:850.650000px;}
.xae_c00449{left:858.300000px;}
.x12e_c00449{left:859.650000px;}
.x105_c00449{left:861.150000px;}
.xc3_c00449{left:862.200000px;}
.xaf_c00449{left:868.050000px;}
.xce_c00449{left:871.800000px;}
.xba_c00449{left:874.350000px;}
.x141_c00449{left:876.000000px;}
.xe0_c00449{left:877.200000px;}
.x100_c00449{left:879.450000px;}
.xf9_c00449{left:881.700000px;}
.xfd_c00449{left:886.200000px;}
.x128_c00449{left:887.250000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls4_c00449{letter-spacing:0.000000pt;}
.ls2_c00449{letter-spacing:29.714286pt;}
.ls3_c00449{letter-spacing:39.555556pt;}
.ls1_c00449{letter-spacing:41.773012pt;}
.ls0_c00449{letter-spacing:52.666667pt;}
.wsb_c00449{word-spacing:-76.666667pt;}
.wsc_c00449{word-spacing:-65.773012pt;}
.wsf_c00449{word-spacing:-55.555556pt;}
.wse_c00449{word-spacing:-45.714286pt;}
.ws1_c00449{word-spacing:-10.800745pt;}
.ws0_c00449{word-spacing:-2.085960pt;}
.ws12_c00449{word-spacing:0.000000pt;}
.ws2_c00449{word-spacing:0.658436pt;}
.ws7_c00449{word-spacing:0.705093pt;}
.ws3_c00449{word-spacing:5.923497pt;}
.ws10_c00449{word-spacing:15.619048pt;}
.ws11_c00449{word-spacing:15.777778pt;}
.ws4_c00449{word-spacing:19.682540pt;}
.ws8_c00449{word-spacing:23.492404pt;}
.ws6_c00449{word-spacing:26.031746pt;}
.ws9_c00449{word-spacing:28.666667pt;}
.wsa_c00449{word-spacing:32.000000pt;}
.wsd_c00449{word-spacing:35.333333pt;}
.ws5_c00449{word-spacing:44.814815pt;}
._2_c00449{margin-left:-52.666667pt;}
._3_c00449{margin-left:-41.773012pt;}
._5_c00449{margin-left:-39.555556pt;}
._4_c00449{margin-left:-29.714286pt;}
._6_c00449{width:37.333333pt;}
._7_c00449{width:39.555556pt;}
._1_c00449{width:41.773012pt;}
._0_c00449{width:46.349206pt;}
.fs6_c00449{font-size:32.000000pt;}
.fs5_c00449{font-size:42.666667pt;}
.fs4_c00449{font-size:48.000000pt;}
.fs3_c00449{font-size:53.333333pt;}
.fs2_c00449{font-size:58.666667pt;}
.fs0_c00449{font-size:64.000000pt;}
.fs1_c00449{font-size:112.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y6c_c00449{bottom:167.600000pt;}
.y36_c00449{bottom:172.533333pt;}
.y6b_c00449{bottom:184.266667pt;}
.y35_c00449{bottom:196.266667pt;}
.y6a_c00449{bottom:204.133333pt;}
.y34_c00449{bottom:212.000000pt;}
.y69_c00449{bottom:216.666667pt;}
.y33_c00449{bottom:227.733333pt;}
.y68_c00449{bottom:228.266667pt;}
.y67_c00449{bottom:242.000000pt;}
.y32_c00449{bottom:243.466667pt;}
.y66_c00449{bottom:254.800000pt;}
.y31_c00449{bottom:263.733333pt;}
.y65_c00449{bottom:274.000000pt;}
.y30_c00449{bottom:279.066667pt;}
.y64_c00449{bottom:280.666667pt;}
.y63_c00449{bottom:291.866667pt;}
.y2f_c00449{bottom:295.066667pt;}
.y62_c00449{bottom:304.400000pt;}
.y2e_c00449{bottom:310.400000pt;}
.y61_c00449{bottom:317.466667pt;}
.y2d_c00449{bottom:325.733333pt;}
.y60_c00449{bottom:330.266667pt;}
.y2c_c00449{bottom:341.466667pt;}
.y5f_c00449{bottom:343.600000pt;}
.y5e_c00449{bottom:356.133333pt;}
.y2b_c00449{bottom:357.466667pt;}
.y5d_c00449{bottom:369.866667pt;}
.y2a_c00449{bottom:373.466667pt;}
.y5c_c00449{bottom:387.200000pt;}
.y29_c00449{bottom:389.733333pt;}
.y5b_c00449{bottom:403.200000pt;}
.y28_c00449{bottom:405.733333pt;}
.y5a_c00449{bottom:419.200000pt;}
.y27_c00449{bottom:421.733333pt;}
.y59_c00449{bottom:435.200000pt;}
.y26_c00449{bottom:437.466667pt;}
.y25_c00449{bottom:453.733333pt;}
.y58_c00449{bottom:455.333333pt;}
.y57_c00449{bottom:471.066667pt;}
.y24_c00449{bottom:474.000000pt;}
.y56_c00449{bottom:487.066667pt;}
.y23_c00449{bottom:490.000000pt;}
.y55_c00449{bottom:503.066667pt;}
.y22_c00449{bottom:505.733333pt;}
.y54_c00449{bottom:518.800000pt;}
.y21_c00449{bottom:522.000000pt;}
.y53_c00449{bottom:534.800000pt;}
.y20_c00449{bottom:537.333333pt;}
.y1f_c00449{bottom:553.333333pt;}
.y52_c00449{bottom:554.266667pt;}
.y1e_c00449{bottom:570.666667pt;}
.y51_c00449{bottom:578.266667pt;}
.y1d_c00449{bottom:586.400000pt;}
.y50_c00449{bottom:594.266667pt;}
.y1c_c00449{bottom:602.666667pt;}
.y4f_c00449{bottom:610.266667pt;}
.y1b_c00449{bottom:618.666667pt;}
.y4e_c00449{bottom:626.266667pt;}
.y1a_c00449{bottom:634.400000pt;}
.y4d_c00449{bottom:646.400000pt;}
.y19_c00449{bottom:650.400000pt;}
.y4c_c00449{bottom:662.400000pt;}
.y18_c00449{bottom:666.400000pt;}
.y4b_c00449{bottom:678.400000pt;}
.y17_c00449{bottom:682.400000pt;}
.y4a_c00449{bottom:694.400000pt;}
.y16_c00449{bottom:698.400000pt;}
.y49_c00449{bottom:710.400000pt;}
.y15_c00449{bottom:714.133333pt;}
.y48_c00449{bottom:726.400000pt;}
.y14_c00449{bottom:730.133333pt;}
.y47_c00449{bottom:742.400000pt;}
.y13_c00449{bottom:745.866667pt;}
.y46_c00449{bottom:758.133333pt;}
.y12_c00449{bottom:761.866667pt;}
.y45_c00449{bottom:774.400000pt;}
.y11_c00449{bottom:777.866667pt;}
.y44_c00449{bottom:790.400000pt;}
.y10_c00449{bottom:793.866667pt;}
.y43_c00449{bottom:806.400000pt;}
.yf_c00449{bottom:809.866667pt;}
.y42_c00449{bottom:824.666667pt;}
.ye_c00449{bottom:825.600000pt;}
.y41_c00449{bottom:837.466667pt;}
.yd_c00449{bottom:841.866667pt;}
.y40_c00449{bottom:850.933333pt;}
.yc_c00449{bottom:857.600000pt;}
.y3f_c00449{bottom:868.666667pt;}
.yb_c00449{bottom:873.600000pt;}
.y3e_c00449{bottom:884.666667pt;}
.ya_c00449{bottom:889.600000pt;}
.y3d_c00449{bottom:900.400000pt;}
.y9_c00449{bottom:905.600000pt;}
.y3c_c00449{bottom:917.066667pt;}
.y8_c00449{bottom:921.333333pt;}
.y3b_c00449{bottom:936.266667pt;}
.y7_c00449{bottom:937.333333pt;}
.y3a_c00449{bottom:952.266667pt;}
.y6_c00449{bottom:953.333333pt;}
.y39_c00449{bottom:968.000000pt;}
.y5_c00449{bottom:969.200000pt;}
.y38_c00449{bottom:984.000000pt;}
.y4_c00449{bottom:984.933333pt;}
.y37_c00449{bottom:999.333333pt;}
.y3_c00449{bottom:1000.933333pt;}
.y2_c00449{bottom:1023.600000pt;}
.y1_c00449{bottom:1024.933333pt;}
.h8_c00449{height:32.000000pt;}
.h7_c00449{height:42.666667pt;}
.h6_c00449{height:48.000000pt;}
.h5_c00449{height:53.333333pt;}
.h4_c00449{height:58.666667pt;}
.h2_c00449{height:64.000000pt;}
.h3_c00449{height:112.000000pt;}
.h1_c00449{height:1130.666667pt;}
.h0_c00449{height:1130.879964pt;}
.w0_c00449{width:851.840007pt;}
.w1_c00449{width:852.000000pt;}
.x0_c00449{left:0.000000pt;}
.xa5_c00449{left:173.466667pt;}
.x92_c00449{left:174.666667pt;}
.x1_c00449{left:181.466667pt;}
.x5_c00449{left:183.066667pt;}
.x9b_c00449{left:188.533333pt;}
.x90_c00449{left:190.000000pt;}
.x8a_c00449{left:191.200000pt;}
.x3b_c00449{left:192.400000pt;}
.x7d_c00449{left:193.333333pt;}
.x52_c00449{left:194.266667pt;}
.x43_c00449{left:195.466667pt;}
.xd_c00449{left:197.333333pt;}
.x13_c00449{left:198.400000pt;}
.x91_c00449{left:205.066667pt;}
.x81_c00449{left:207.333333pt;}
.x7c_c00449{left:211.200000pt;}
.x3c_c00449{left:213.466667pt;}
.x5c_c00449{left:216.400000pt;}
.x48_c00449{left:217.600000pt;}
.x57_c00449{left:218.533333pt;}
.x6a_c00449{left:220.933333pt;}
.x28_c00449{left:221.866667pt;}
.x14_c00449{left:223.066667pt;}
.x44_c00449{left:224.000000pt;}
.x8b_c00449{left:227.733333pt;}
.x74_c00449{left:229.733333pt;}
.x64_c00449{left:231.600000pt;}
.xe_c00449{left:232.800000pt;}
.x1b_c00449{left:234.000000pt;}
.xa0_c00449{left:235.466667pt;}
.x5f_c00449{left:236.400000pt;}
.x15_c00449{left:238.400000pt;}
.x79_c00449{left:241.333333pt;}
.xa6_c00449{left:242.533333pt;}
.x23_c00449{left:243.600000pt;}
.x60_c00449{left:244.666667pt;}
.x49_c00449{left:246.133333pt;}
.x5d_c00449{left:249.466667pt;}
.x8c_c00449{left:250.666667pt;}
.xa3_c00449{left:252.533333pt;}
.x4e_c00449{left:253.866667pt;}
.x53_c00449{left:256.133333pt;}
.x6_c00449{left:258.533333pt;}
.x2e_c00449{left:260.266667pt;}
.x32_c00449{left:262.400000pt;}
.x3d_c00449{left:264.000000pt;}
.x29_c00449{left:266.666667pt;}
.xf_c00449{left:268.266667pt;}
.xa4_c00449{left:270.133333pt;}
.x6f_c00449{left:272.000000pt;}
.x82_c00449{left:272.933333pt;}
.x58_c00449{left:274.266667pt;}
.x77_c00449{left:275.600000pt;}
.x38_c00449{left:282.000000pt;}
.x16_c00449{left:284.800000pt;}
.x6e_c00449{left:287.466667pt;}
.x67_c00449{left:289.066667pt;}
.x45_c00449{left:290.266667pt;}
.x24_c00449{left:291.600000pt;}
.x98_c00449{left:292.800000pt;}
.x7e_c00449{left:293.866667pt;}
.x1c_c00449{left:294.800000pt;}
.x9c_c00449{left:296.800000pt;}
.x7_c00449{left:298.533333pt;}
.x39_c00449{left:299.866667pt;}
.x4a_c00449{left:300.800000pt;}
.xa1_c00449{left:302.000000pt;}
.x95_c00449{left:302.933333pt;}
.x8f_c00449{left:304.266667pt;}
.x59_c00449{left:305.333333pt;}
.x33_c00449{left:306.933333pt;}
.x70_c00449{left:309.466667pt;}
.x6b_c00449{left:310.533333pt;}
.x93_c00449{left:312.000000pt;}
.x54_c00449{left:313.733333pt;}
.x8_c00449{left:315.466667pt;}
.x72_c00449{left:316.800000pt;}
.x9d_c00449{left:317.866667pt;}
.x46_c00449{left:320.400000pt;}
.x99_c00449{left:321.600000pt;}
.x3e_c00449{left:322.533333pt;}
.x2f_c00449{left:324.266667pt;}
.x87_c00449{left:325.333333pt;}
.x17_c00449{left:326.400000pt;}
.x83_c00449{left:328.000000pt;}
.x7f_c00449{left:329.066667pt;}
.x3f_c00449{left:331.466667pt;}
.x8d_c00449{left:333.466667pt;}
.x10_c00449{left:335.200000pt;}
.x1d_c00449{left:336.133333pt;}
.x9e_c00449{left:337.066667pt;}
.x4b_c00449{left:339.866667pt;}
.x47_c00449{left:340.933333pt;}
.x4f_c00449{left:342.533333pt;}
.x34_c00449{left:345.066667pt;}
.x25_c00449{left:346.666667pt;}
.x30_c00449{left:348.000000pt;}
.x85_c00449{left:349.066667pt;}
.x8e_c00449{left:350.133333pt;}
.x65_c00449{left:351.200000pt;}
.x35_c00449{left:353.333333pt;}
.x55_c00449{left:355.066667pt;}
.x1e_c00449{left:356.933333pt;}
.x88_c00449{left:359.200000pt;}
.x3a_c00449{left:362.533333pt;}
.x11_c00449{left:364.666667pt;}
.x2a_c00449{left:365.866667pt;}
.x31_c00449{left:367.466667pt;}
.x50_c00449{left:369.066667pt;}
.x80_c00449{left:370.000000pt;}
.x71_c00449{left:372.133333pt;}
.x6c_c00449{left:373.866667pt;}
.x96_c00449{left:375.200000pt;}
.x9_c00449{left:376.933333pt;}
.x94_c00449{left:378.266667pt;}
.x9a_c00449{left:380.133333pt;}
.x5e_c00449{left:382.266667pt;}
.x1f_c00449{left:383.200000pt;}
.x61_c00449{left:384.133333pt;}
.x5a_c00449{left:388.800000pt;}
.x89_c00449{left:389.866667pt;}
.x36_c00449{left:392.400000pt;}
.x7a_c00449{left:393.600000pt;}
.x86_c00449{left:394.800000pt;}
.xa_c00449{left:398.400000pt;}
.x2_c00449{left:400.000000pt;}
.x40_c00449{left:401.600000pt;}
.x62_c00449{left:403.066667pt;}
.x4c_c00449{left:404.800000pt;}
.x26_c00449{left:406.800000pt;}
.x6d_c00449{left:408.800000pt;}
.x18_c00449{left:410.933333pt;}
.x2b_c00449{left:413.200000pt;}
.x27_c00449{left:414.800000pt;}
.x41_c00449{left:415.733333pt;}
.x84_c00449{left:416.933333pt;}
.x12_c00449{left:418.133333pt;}
.x73_c00449{left:419.733333pt;}
.x20_c00449{left:420.933333pt;}
.x9f_c00449{left:422.533333pt;}
.x68_c00449{left:424.800000pt;}
.xb_c00449{left:425.866667pt;}
.x51_c00449{left:427.600000pt;}
.x63_c00449{left:430.266667pt;}
.x75_c00449{left:432.000000pt;}
.x69_c00449{left:435.066667pt;}
.x2c_c00449{left:437.466667pt;}
.x21_c00449{left:439.466667pt;}
.x7b_c00449{left:441.600000pt;}
.xa2_c00449{left:443.466667pt;}
.x66_c00449{left:445.866667pt;}
.x19_c00449{left:446.800000pt;}
.x42_c00449{left:449.600000pt;}
.x2d_c00449{left:451.200000pt;}
.x5b_c00449{left:452.533333pt;}
.x78_c00449{left:454.533333pt;}
.x1a_c00449{left:456.400000pt;}
.x97_c00449{left:457.333333pt;}
.x3_c00449{left:459.200000pt;}
.x4d_c00449{left:460.533333pt;}
.x76_c00449{left:462.400000pt;}
.x56_c00449{left:464.533333pt;}
.xc_c00449{left:467.733333pt;}
.x37_c00449{left:473.733333pt;}
.x22_c00449{left:476.533333pt;}
.x134_c00449{left:489.866667pt;}
.x12b_c00449{left:491.866667pt;}
.x10e_c00449{left:493.466667pt;}
.xda_c00449{left:496.000000pt;}
.xc8_c00449{left:498.266667pt;}
.x146_c00449{left:501.733333pt;}
.x137_c00449{left:502.666667pt;}
.x149_c00449{left:504.400000pt;}
.x132_c00449{left:506.133333pt;}
.x124_c00449{left:507.066667pt;}
.xe3_c00449{left:508.266667pt;}
.xe1_c00449{left:509.333333pt;}
.xfa_c00449{left:510.400000pt;}
.xea_c00449{left:511.333333pt;}
.xbb_c00449{left:514.533333pt;}
.x4_c00449{left:516.133333pt;}
.x138_c00449{left:518.666667pt;}
.x119_c00449{left:524.133333pt;}
.xd4_c00449{left:527.200000pt;}
.x103_c00449{left:528.666667pt;}
.x117_c00449{left:529.600000pt;}
.x12c_c00449{left:531.200000pt;}
.xa7_c00449{left:532.533333pt;}
.x101_c00449{left:534.000000pt;}
.x13c_c00449{left:535.066667pt;}
.xf3_c00449{left:536.533333pt;}
.xc9_c00449{left:537.600000pt;}
.x114_c00449{left:539.600000pt;}
.xa8_c00449{left:541.200000pt;}
.x11d_c00449{left:543.200000pt;}
.x129_c00449{left:544.133333pt;}
.xeb_c00449{left:545.600000pt;}
.xdb_c00449{left:548.800000pt;}
.x10f_c00449{left:551.066667pt;}
.xd5_c00449{left:553.466667pt;}
.x106_c00449{left:556.133333pt;}
.x108_c00449{left:557.333333pt;}
.x11e_c00449{left:559.200000pt;}
.xdc_c00449{left:561.333333pt;}
.x14a_c00449{left:562.933333pt;}
.xd6_c00449{left:564.400000pt;}
.xf4_c00449{left:567.866667pt;}
.xc4_c00449{left:569.600000pt;}
.xb0_c00449{left:572.266667pt;}
.xa9_c00449{left:573.466667pt;}
.x109_c00449{left:574.666667pt;}
.xbc_c00449{left:576.666667pt;}
.x125_c00449{left:577.866667pt;}
.xf5_c00449{left:579.066667pt;}
.xd7_c00449{left:581.333333pt;}
.x112_c00449{left:582.400000pt;}
.xdd_c00449{left:583.733333pt;}
.xd1_c00449{left:585.066667pt;}
.xb5_c00449{left:586.000000pt;}
.xec_c00449{left:586.933333pt;}
.xc5_c00449{left:589.066667pt;}
.x12d_c00449{left:590.133333pt;}
.x11f_c00449{left:591.200000pt;}
.xcf_c00449{left:594.800000pt;}
.x12f_c00449{left:596.133333pt;}
.xca_c00449{left:598.133333pt;}
.x135_c00449{left:601.200000pt;}
.x107_c00449{left:602.800000pt;}
.xfb_c00449{left:604.000000pt;}
.xe4_c00449{left:605.200000pt;}
.xed_c00449{left:607.066667pt;}
.xbd_c00449{left:610.000000pt;}
.x123_c00449{left:610.933333pt;}
.x126_c00449{left:613.733333pt;}
.x102_c00449{left:615.866667pt;}
.x10c_c00449{left:618.400000pt;}
.xb1_c00449{left:619.333333pt;}
.xe5_c00449{left:621.466667pt;}
.xaa_c00449{left:623.066667pt;}
.xd8_c00449{left:624.533333pt;}
.xf6_c00449{left:625.733333pt;}
.xcb_c00449{left:626.666667pt;}
.x139_c00449{left:627.733333pt;}
.x115_c00449{left:629.866667pt;}
.xfc_c00449{left:631.200000pt;}
.x13e_c00449{left:632.400000pt;}
.x110_c00449{left:634.266667pt;}
.x10a_c00449{left:636.400000pt;}
.x113_c00449{left:637.466667pt;}
.x13f_c00449{left:638.800000pt;}
.xc6_c00449{left:640.000000pt;}
.xd2_c00449{left:641.733333pt;}
.xbe_c00449{left:642.933333pt;}
.xee_c00449{left:644.533333pt;}
.x130_c00449{left:646.400000pt;}
.xb2_c00449{left:650.666667pt;}
.x12a_c00449{left:652.666667pt;}
.xab_c00449{left:653.733333pt;}
.x11a_c00449{left:655.733333pt;}
.x143_c00449{left:656.666667pt;}
.x13d_c00449{left:657.733333pt;}
.xb6_c00449{left:658.933333pt;}
.xd3_c00449{left:660.000000pt;}
.x116_c00449{left:661.200000pt;}
.xe6_c00449{left:663.733333pt;}
.x120_c00449{left:665.333333pt;}
.xbf_c00449{left:666.266667pt;}
.x104_c00449{left:667.866667pt;}
.xb7_c00449{left:668.800000pt;}
.xef_c00449{left:669.866667pt;}
.xd9_c00449{left:670.933333pt;}
.x147_c00449{left:672.000000pt;}
.x118_c00449{left:675.466667pt;}
.x145_c00449{left:676.400000pt;}
.x131_c00449{left:677.733333pt;}
.xfe_c00449{left:679.333333pt;}
.xb3_c00449{left:681.333333pt;}
.x11b_c00449{left:682.666667pt;}
.x140_c00449{left:683.600000pt;}
.xde_c00449{left:685.066667pt;}
.xc7_c00449{left:686.133333pt;}
.x144_c00449{left:688.133333pt;}
.x13a_c00449{left:689.866667pt;}
.xf0_c00449{left:690.933333pt;}
.xac_c00449{left:695.066667pt;}
.xc0_c00449{left:696.666667pt;}
.x10d_c00449{left:698.800000pt;}
.x10b_c00449{left:700.000000pt;}
.xb8_c00449{left:701.733333pt;}
.xe7_c00449{left:703.066667pt;}
.xcc_c00449{left:705.466667pt;}
.x142_c00449{left:707.200000pt;}
.x13b_c00449{left:708.533333pt;}
.xf7_c00449{left:709.866667pt;}
.xe2_c00449{left:710.800000pt;}
.xc1_c00449{left:712.933333pt;}
.xdf_c00449{left:713.866667pt;}
.xe8_c00449{left:716.800000pt;}
.x136_c00449{left:718.400000pt;}
.xd0_c00449{left:719.733333pt;}
.x111_c00449{left:720.666667pt;}
.xc2_c00449{left:721.866667pt;}
.x121_c00449{left:723.200000pt;}
.x133_c00449{left:724.133333pt;}
.xf1_c00449{left:726.133333pt;}
.xad_c00449{left:731.600000pt;}
.x148_c00449{left:733.200000pt;}
.xf2_c00449{left:736.666667pt;}
.xcd_c00449{left:739.066667pt;}
.x11c_c00449{left:740.000000pt;}
.xff_c00449{left:741.466667pt;}
.x127_c00449{left:743.200000pt;}
.xb9_c00449{left:746.800000pt;}
.xe9_c00449{left:749.066667pt;}
.xf8_c00449{left:751.466667pt;}
.xb4_c00449{left:753.066667pt;}
.x122_c00449{left:756.133333pt;}
.xae_c00449{left:762.933333pt;}
.x12e_c00449{left:764.133333pt;}
.x105_c00449{left:765.466667pt;}
.xc3_c00449{left:766.400000pt;}
.xaf_c00449{left:771.600000pt;}
.xce_c00449{left:774.933333pt;}
.xba_c00449{left:777.200000pt;}
.x141_c00449{left:778.666667pt;}
.xe0_c00449{left:779.733333pt;}
.x100_c00449{left:781.733333pt;}
.xf9_c00449{left:783.733333pt;}
.xfd_c00449{left:787.733333pt;}
.x128_c00449{left:788.666667pt;}
}





/* 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_c00450 {
    display:none;
  }
  .loading-indicator_c00450.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00450 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_c00450 { 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_c00450" -> "#page-container .classname_c00450")
 */
.pf_c00450 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00450 { /* 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_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00450 { /* 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_c00450 { /* 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_c00450 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00450 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00450 {overflow:visible;}
  }
}
.c_c00450 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00450 { /* 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_c00450:after { /* webkit #35443 */
  content: '';
}
.t_c00450:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00450 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 */
}
.__c00450 { /* 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_c00450 { /* info for Javascript */
  display:none;
}
.l_c00450 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00450 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00450 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00450: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_c00450 {
    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_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00450.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_c00450 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00450;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.000000;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;}
.ma0_c00450{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mf_c00450{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.me0_c00450{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m116_c00450{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m115_c00450{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00450{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00450{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00450{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m126_c00450{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00450{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m128_c00450{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m24_c00450{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m119_c00450{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m127_c00450{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00450{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m17_c00450{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m118_c00450{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00450{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00450{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00450{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m114_c00450{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m75_c00450{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m36_c00450{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00450{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00450{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00450{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m110_c00450{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00450{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m108_c00450{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.md_c00450{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m107_c00450{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.md9_c00450{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mce_c00450{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00450{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m15_c00450{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00450{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00450{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m106_c00450{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00450{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m80_c00450{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00450{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m87_c00450{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00450{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00450{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00450{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m41_c00450{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7_c00450{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m44_c00450{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m97_c00450{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00450{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00450{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md6_c00450{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m46_c00450{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00450{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00450{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mef_c00450{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00450{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m112_c00450{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00450{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m29_c00450{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m45_c00450{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m25_c00450{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00450{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00450{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00450{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md3_c00450{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00450{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mb_c00450{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m68_c00450{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me5_c00450{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.md8_c00450{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00450{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m50_c00450{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m23_c00450{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m62_c00450{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m76_c00450{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m94_c00450{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m51_c00450{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00450{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00450{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00450{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m63_c00450{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.med_c00450{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md5_c00450{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00450{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00450{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m56_c00450{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m64_c00450{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00450{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00450{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m49_c00450{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m19_c00450{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m93_c00450{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.me3_c00450{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00450{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m33_c00450{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m61_c00450{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m26_c00450{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m79_c00450{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00450{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00450{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.me4_c00450{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00450{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma_c00450{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m69_c00450{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m73_c00450{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m14_c00450{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00450{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9_c00450{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00450{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m120_c00450{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00450{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.me_c00450{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00450{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m53_c00450{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00450{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m82_c00450{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m31_c00450{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m40_c00450{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00450{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00450{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m34_c00450{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m60_c00450{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00450{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00450{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m47_c00450{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mec_c00450{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me9_c00450{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00450{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m52_c00450{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00450{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00450{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mff_c00450{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m43_c00450{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00450{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md7_c00450{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mda_c00450{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m65_c00450{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00450{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc_c00450{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m22_c00450{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.me6_c00450{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00450{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00450{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m70_c00450{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m78_c00450{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m123_c00450{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00450{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00450{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m30_c00450{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00450{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00450{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00450{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mde_c00450{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m71_c00450{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m16_c00450{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m27_c00450{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00450{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m109_c00450{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md4_c00450{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m125_c00450{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m32_c00450{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mba_c00450{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00450{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m48_c00450{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m21_c00450{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00450{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m81_c00450{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m91_c00450{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m88_c00450{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m55_c00450{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m83_c00450{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00450{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m35_c00450{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00450{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m74_c00450{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00450{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00450{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00450{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00450{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m10_c00450{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00450{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m37_c00450{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00450{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m18_c00450{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m54_c00450{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00450{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mab_c00450{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00450{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00450{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m86_c00450{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00450{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m12_c00450{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00450{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.meb_c00450{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mea_c00450{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m42_c00450{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00450{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m85_c00450{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00450{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00450{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00450{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00450{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m59_c00450{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00450{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00450{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m39_c00450{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00450{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00450{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m20_c00450{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m122_c00450{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m95_c00450{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m92_c00450{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00450{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00450{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00450{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m28_c00450{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00450{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.md0_c00450{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.maf_c00450{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00450{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m72_c00450{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m111_c00450{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m117_c00450{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00450{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m105_c00450{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m84_c00450{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00450{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m96_c00450{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00450{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00450{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00450{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);}
.md1_c00450{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m38_c00450{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00450{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00450{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mae_c00450{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00450{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11_c00450{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m98_c00450{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m113_c00450{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m129_c00450{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m8_c00450{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m90_c00450{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mee_c00450{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me1_c00450{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m101_c00450{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00450{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m58_c00450{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00450{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.md2_c00450{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00450{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m57_c00450{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00450{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00450{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00450{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m66_c00450{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mac_c00450{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m104_c00450{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me2_c00450{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m103_c00450{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00450{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00450{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m124_c00450{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mca_c00450{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00450{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.me8_c00450{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.me7_c00450{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m121_c00450{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00450{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m13_c00450{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00450{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00450{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00450{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m102_c00450{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m99_c00450{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.mad_c00450{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m67_c00450{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m77_c00450{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00450{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m89_c00450{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00450{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00450{transform:matrix(0.379750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00450{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00450{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00450{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.maa_c00450{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00450{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m100_c00450{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00450{transform:matrix(0.654500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00450{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00450{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00450{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00450{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls0_c00450{letter-spacing:0.000000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{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__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00450{word-spacing:-17.212291px;}
.ws5_c00450{word-spacing:-10.371532px;}
.ws2_c00450{word-spacing:-3.333333px;}
.wsd_c00450{word-spacing:0.000000px;}
.ws4_c00450{word-spacing:5.515078px;}
.ws3_c00450{word-spacing:6.370370px;}
.ws0_c00450{word-spacing:7.375796px;}
.wsa_c00450{word-spacing:8.500000px;}
.wsc_c00450{word-spacing:17.571429px;}
.ws7_c00450{word-spacing:19.994638px;}
.wsb_c00450{word-spacing:25.714286px;}
.ws8_c00450{word-spacing:31.254692px;}
.ws6_c00450{word-spacing:32.250000px;}
.ws9_c00450{word-spacing:93.189097px;}
._0_c00450{width:53.428954px;}
.fc0_c00450{color:transparent;}
.fs7_c00450{font-size:24.000000px;}
.fs5_c00450{font-size:30.000000px;}
.fs8_c00450{font-size:36.000000px;}
.fs6_c00450{font-size:54.000000px;}
.fs3_c00450{font-size:60.000000px;}
.fs2_c00450{font-size:66.000000px;}
.fs1_c00450{font-size:72.000000px;}
.fs4_c00450{font-size:84.000000px;}
.fs0_c00450{font-size:108.000000px;}
.y0_c00450{bottom:0.000000px;}
.y31_c00450{bottom:169.500000px;}
.y34_c00450{bottom:182.550000px;}
.y68_c00450{bottom:185.100000px;}
.y33_c00450{bottom:197.700000px;}
.y67_c00450{bottom:204.900000px;}
.y66_c00450{bottom:205.650000px;}
.y32_c00450{bottom:212.400000px;}
.y65_c00450{bottom:220.350000px;}
.y30_c00450{bottom:226.800000px;}
.y64_c00450{bottom:234.750000px;}
.y2f_c00450{bottom:241.500000px;}
.y63_c00450{bottom:249.450000px;}
.y62_c00450{bottom:263.850000px;}
.y2e_c00450{bottom:275.700000px;}
.y61_c00450{bottom:278.250000px;}
.y2d_c00450{bottom:284.700000px;}
.y60_c00450{bottom:292.350000px;}
.y5f_c00450{bottom:307.200000px;}
.y2c_c00450{bottom:310.200000px;}
.y5e_c00450{bottom:318.000000px;}
.y5d_c00450{bottom:321.900000px;}
.y2b_c00450{bottom:332.550000px;}
.y5c_c00450{bottom:336.600000px;}
.y2a_c00450{bottom:354.900000px;}
.y5b_c00450{bottom:356.400000px;}
.y29_c00450{bottom:373.650000px;}
.y5a_c00450{bottom:374.400000px;}
.y59_c00450{bottom:392.400000px;}
.y58_c00450{bottom:409.650000px;}
.y28_c00450{bottom:414.750000px;}
.y57_c00450{bottom:432.600000px;}
.y27_c00450{bottom:445.050000px;}
.y56_c00450{bottom:450.300000px;}
.y26_c00450{bottom:463.800000px;}
.y55_c00450{bottom:468.300000px;}
.y25_c00450{bottom:481.500000px;}
.y54_c00450{bottom:486.300000px;}
.y24_c00450{bottom:499.500000px;}
.y53_c00450{bottom:504.000000px;}
.y23_c00450{bottom:517.500000px;}
.y52_c00450{bottom:522.300000px;}
.y22_c00450{bottom:535.500000px;}
.y51_c00450{bottom:540.000000px;}
.y21_c00450{bottom:553.500000px;}
.y50_c00450{bottom:558.000000px;}
.y20_c00450{bottom:571.200000px;}
.y4f_c00450{bottom:576.000000px;}
.y1f_c00450{bottom:589.200000px;}
.y4e_c00450{bottom:594.000000px;}
.y1e_c00450{bottom:607.200000px;}
.y4d_c00450{bottom:612.000000px;}
.y1d_c00450{bottom:625.200000px;}
.y4c_c00450{bottom:634.200000px;}
.y1c_c00450{bottom:643.200000px;}
.y4b_c00450{bottom:651.900000px;}
.y1b_c00450{bottom:660.900000px;}
.y1a_c00450{bottom:678.600000px;}
.y4a_c00450{bottom:678.900000px;}
.y19_c00450{bottom:696.300000px;}
.y49_c00450{bottom:696.900000px;}
.y18_c00450{bottom:714.600000px;}
.y48_c00450{bottom:718.800000px;}
.y17_c00450{bottom:732.600000px;}
.y47_c00450{bottom:736.500000px;}
.y16_c00450{bottom:750.600000px;}
.y46_c00450{bottom:759.150000px;}
.y15_c00450{bottom:768.300000px;}
.y45_c00450{bottom:781.500000px;}
.y14_c00450{bottom:786.300000px;}
.y44_c00450{bottom:803.850000px;}
.y13_c00450{bottom:806.850000px;}
.y43_c00450{bottom:826.200000px;}
.y12_c00450{bottom:826.350000px;}
.y11_c00450{bottom:844.050000px;}
.y42_c00450{bottom:848.850000px;}
.y10_c00450{bottom:862.350000px;}
.y41_c00450{bottom:870.450000px;}
.yf_c00450{bottom:880.350000px;}
.y40_c00450{bottom:888.450000px;}
.ye_c00450{bottom:898.650000px;}
.y3f_c00450{bottom:906.450000px;}
.yd_c00450{bottom:916.650000px;}
.y3e_c00450{bottom:928.800000px;}
.yc_c00450{bottom:934.350000px;}
.y3d_c00450{bottom:946.800000px;}
.yb_c00450{bottom:952.350000px;}
.y3c_c00450{bottom:969.150000px;}
.ya_c00450{bottom:970.650000px;}
.y3b_c00450{bottom:987.450000px;}
.y9_c00450{bottom:988.650000px;}
.y3a_c00450{bottom:1005.150000px;}
.y8_c00450{bottom:1005.900000px;}
.y7_c00450{bottom:1023.900000px;}
.y39_c00450{bottom:1027.500000px;}
.y6_c00450{bottom:1041.600000px;}
.y38_c00450{bottom:1045.500000px;}
.y5_c00450{bottom:1059.600000px;}
.y37_c00450{bottom:1073.850000px;}
.y4_c00450{bottom:1077.900000px;}
.y3_c00450{bottom:1095.450000px;}
.y36_c00450{bottom:1104.750000px;}
.y2_c00450{bottom:1113.450000px;}
.y35_c00450{bottom:1125.300000px;}
.y1_c00450{bottom:1141.200000px;}
.h9_c00450{height:24.000000px;}
.h7_c00450{height:30.000000px;}
.ha_c00450{height:36.000000px;}
.h8_c00450{height:54.000000px;}
.h5_c00450{height:60.000000px;}
.h4_c00450{height:66.000000px;}
.h3_c00450{height:72.000000px;}
.h6_c00450{height:84.000000px;}
.h2_c00450{height:108.000000px;}
.h1_c00450{height:1266.750000px;}
.h0_c00450{height:1266.839905px;}
.w0_c00450{width:958.320007px;}
.w1_c00450{width:958.500000px;}
.x0_c00450{left:0.000000px;}
.x9b_c00450{left:53.700000px;}
.x98_c00450{left:56.100000px;}
.x9e_c00450{left:57.600000px;}
.x8f_c00450{left:58.650000px;}
.x59_c00450{left:61.500000px;}
.xf_c00450{left:71.700000px;}
.x29_c00450{left:73.500000px;}
.x91_c00450{left:75.900000px;}
.x7f_c00450{left:76.950000px;}
.x2f_c00450{left:78.300000px;}
.x2_c00450{left:79.500000px;}
.x99_c00450{left:91.800000px;}
.x92_c00450{left:94.950000px;}
.x89_c00450{left:96.750000px;}
.x10_c00450{left:99.000000px;}
.x94_c00450{left:100.350000px;}
.x44_c00450{left:102.150000px;}
.x9f_c00450{left:104.100000px;}
.x67_c00450{left:105.750000px;}
.x36_c00450{left:109.200000px;}
.x16_c00450{left:113.550000px;}
.x76_c00450{left:115.500000px;}
.x21_c00450{left:116.550000px;}
.x1d_c00450{left:118.950000px;}
.x5a_c00450{left:121.200000px;}
.x2a_c00450{left:123.150000px;}
.x3_c00450{left:124.800000px;}
.x41_c00450{left:126.600000px;}
.x4f_c00450{left:128.250000px;}
.x9c_c00450{left:129.300000px;}
.x17_c00450{left:130.500000px;}
.x3d_c00450{left:131.700000px;}
.x87_c00450{left:132.900000px;}
.x4b_c00450{left:135.150000px;}
.x22_c00450{left:138.450000px;}
.x5b_c00450{left:139.950000px;}
.x30_c00450{left:141.300000px;}
.x8e_c00450{left:142.500000px;}
.x71_c00450{left:143.850000px;}
.x37_c00450{left:147.000000px;}
.x3e_c00450{left:150.000000px;}
.x5e_c00450{left:152.100000px;}
.x93_c00450{left:153.150000px;}
.x9_c00450{left:155.100000px;}
.x88_c00450{left:157.350000px;}
.x4_c00450{left:159.300000px;}
.x6c_c00450{left:160.650000px;}
.x83_c00450{left:162.600000px;}
.x50_c00450{left:164.250000px;}
.x18_c00450{left:165.750000px;}
.x38_c00450{left:166.800000px;}
.x9a_c00450{left:170.700000px;}
.x63_c00450{left:172.350000px;}
.x11_c00450{left:173.550000px;}
.x5f_c00450{left:175.200000px;}
.x80_c00450{left:177.450000px;}
.x84_c00450{left:178.800000px;}
.x51_c00450{left:181.200000px;}
.x73_c00450{left:182.400000px;}
.x1e_c00450{left:183.450000px;}
.x61_c00450{left:184.650000px;}
.x6d_c00450{left:186.150000px;}
.x3f_c00450{left:187.500000px;}
.x77_c00450{left:188.550000px;}
.x23_c00450{left:192.750000px;}
.x68_c00450{left:194.250000px;}
.x19_c00450{left:196.050000px;}
.x8a_c00450{left:197.850000px;}
.x31_c00450{left:200.700000px;}
.x57_c00450{left:202.200000px;}
.x12_c00450{left:204.450000px;}
.x52_c00450{left:206.100000px;}
.x8b_c00450{left:209.250000px;}
.xa_c00450{left:210.600000px;}
.x72_c00450{left:213.000000px;}
.x39_c00450{left:216.150000px;}
.x45_c00450{left:219.000000px;}
.x1a_c00450{left:221.550000px;}
.x42_c00450{left:224.550000px;}
.x3a_c00450{left:227.250000px;}
.x24_c00450{left:228.450000px;}
.x5_c00450{left:230.250000px;}
.x32_c00450{left:232.350000px;}
.xa0_c00450{left:234.000000px;}
.x58_c00450{left:236.100000px;}
.x78_c00450{left:238.950000px;}
.x43_c00450{left:240.000000px;}
.x1b_c00450{left:242.850000px;}
.x62_c00450{left:244.350000px;}
.x7b_c00450{left:246.450000px;}
.x55_c00450{left:247.650000px;}
.x2b_c00450{left:250.200000px;}
.xb_c00450{left:251.700000px;}
.x7d_c00450{left:253.050000px;}
.x6e_c00450{left:256.050000px;}
.x13_c00450{left:258.000000px;}
.x9d_c00450{left:261.450000px;}
.x6_c00450{left:262.650000px;}
.x25_c00450{left:266.250000px;}
.x81_c00450{left:267.750000px;}
.x53_c00450{left:269.400000px;}
.x46_c00450{left:270.450000px;}
.xc_c00450{left:273.000000px;}
.x69_c00450{left:276.000000px;}
.x7e_c00450{left:277.200000px;}
.x2c_c00450{left:278.700000px;}
.x8c_c00450{left:280.500000px;}
.x1f_c00450{left:283.500000px;}
.x85_c00450{left:284.700000px;}
.x1c_c00450{left:286.350000px;}
.x2d_c00450{left:288.750000px;}
.x97_c00450{left:291.600000px;}
.x6f_c00450{left:293.550000px;}
.x47_c00450{left:294.600000px;}
.x14_c00450{left:296.100000px;}
.x33_c00450{left:297.750000px;}
.x64_c00450{left:299.100000px;}
.x7_c00450{left:301.200000px;}
.x8d_c00450{left:302.400000px;}
.x65_c00450{left:303.750000px;}
.x1_c00450{left:306.000000px;}
.x56_c00450{left:307.350000px;}
.x40_c00450{left:308.400000px;}
.x48_c00450{left:311.100000px;}
.x95_c00450{left:312.150000px;}
.x34_c00450{left:313.200000px;}
.x82_c00450{left:314.850000px;}
.x70_c00450{left:316.950000px;}
.x3b_c00450{left:320.400000px;}
.x54_c00450{left:321.900000px;}
.x79_c00450{left:323.550000px;}
.x74_c00450{left:325.350000px;}
.x4c_c00450{left:327.750000px;}
.x66_c00450{left:330.750000px;}
.x20_c00450{left:331.800000px;}
.xd_c00450{left:336.000000px;}
.x2e_c00450{left:340.650000px;}
.x26_c00450{left:342.900000px;}
.x5c_c00450{left:343.950000px;}
.xe_c00450{left:345.750000px;}
.x15_c00450{left:348.600000px;}
.x60_c00450{left:349.650000px;}
.x4d_c00450{left:351.450000px;}
.x75_c00450{left:352.650000px;}
.x27_c00450{left:355.800000px;}
.x7a_c00450{left:358.500000px;}
.x49_c00450{left:363.300000px;}
.x5d_c00450{left:365.250000px;}
.x86_c00450{left:366.900000px;}
.x35_c00450{left:368.700000px;}
.x4e_c00450{left:371.250000px;}
.x6a_c00450{left:372.750000px;}
.x8_c00450{left:373.950000px;}
.x7c_c00450{left:375.000000px;}
.x3c_c00450{left:381.900000px;}
.x6b_c00450{left:383.250000px;}
.x4a_c00450{left:386.700000px;}
.x96_c00450{left:391.350000px;}
.x28_c00450{left:392.850000px;}
.x90_c00450{left:407.850000px;}
.x11c_c00450{left:417.300000px;}
.xec_c00450{left:418.350000px;}
.xfb_c00450{left:429.450000px;}
.x12c_c00450{left:430.500000px;}
.x11f_c00450{left:433.050000px;}
.x10b_c00450{left:434.550000px;}
.xab_c00450{left:435.750000px;}
.x126_c00450{left:438.450000px;}
.x133_c00450{left:445.050000px;}
.x13c_c00450{left:446.850000px;}
.x129_c00450{left:451.800000px;}
.xb3_c00450{left:452.850000px;}
.xbc_c00450{left:454.350000px;}
.xcd_c00450{left:455.400000px;}
.xdf_c00450{left:457.200000px;}
.xfc_c00450{left:459.000000px;}
.xf9_c00450{left:460.050000px;}
.xba_c00450{left:462.300000px;}
.x136_c00450{left:466.050000px;}
.x112_c00450{left:467.400000px;}
.xc5_c00450{left:469.050000px;}
.xac_c00450{left:471.000000px;}
.xa1_c00450{left:472.650000px;}
.x105_c00450{left:474.450000px;}
.x10c_c00450{left:477.000000px;}
.xed_c00450{left:478.500000px;}
.x12d_c00450{left:479.550000px;}
.x124_c00450{left:480.600000px;}
.xc1_c00450{left:481.650000px;}
.x116_c00450{left:484.650000px;}
.xf6_c00450{left:486.000000px;}
.xd1_c00450{left:487.800000px;}
.xc6_c00450{left:489.600000px;}
.xce_c00450{left:491.100000px;}
.x121_c00450{left:492.750000px;}
.x11a_c00450{left:494.850000px;}
.xf1_c00450{left:496.050000px;}
.xe1_c00450{left:497.100000px;}
.xb1_c00450{left:498.150000px;}
.xd9_c00450{left:499.950000px;}
.x113_c00450{left:501.900000px;}
.xe0_c00450{left:505.500000px;}
.xa2_c00450{left:507.900000px;}
.x12e_c00450{left:508.950000px;}
.x117_c00450{left:510.150000px;}
.xbd_c00450{left:511.950000px;}
.xb4_c00450{left:513.000000px;}
.x13b_c00450{left:516.150000px;}
.x11b_c00450{left:517.200000px;}
.xe3_c00450{left:518.850000px;}
.x108_c00450{left:520.200000px;}
.xea_c00450{left:522.750000px;}
.x11d_c00450{left:524.700000px;}
.xe7_c00450{left:525.750000px;}
.xd2_c00450{left:527.400000px;}
.xb5_c00450{left:528.450000px;}
.x10d_c00450{left:530.700000px;}
.xb2_c00450{left:532.050000px;}
.xad_c00450{left:534.000000px;}
.xc7_c00450{left:536.100000px;}
.x137_c00450{left:537.600000px;}
.xf2_c00450{left:539.550000px;}
.x127_c00450{left:541.050000px;}
.xfe_c00450{left:543.600000px;}
.xc8_c00450{left:546.900000px;}
.xee_c00450{left:547.950000px;}
.x134_c00450{left:549.450000px;}
.xf3_c00450{left:552.450000px;}
.x139_c00450{left:553.500000px;}
.x102_c00450{left:554.700000px;}
.xdd_c00450{left:556.200000px;}
.xd4_c00450{left:558.000000px;}
.xae_c00450{left:560.250000px;}
.xe2_c00450{left:562.650000px;}
.xeb_c00450{left:564.450000px;}
.xe8_c00450{left:565.650000px;}
.xda_c00450{left:568.050000px;}
.xf4_c00450{left:570.750000px;}
.xff_c00450{left:572.700000px;}
.xc2_c00450{left:575.250000px;}
.xdb_c00450{left:577.050000px;}
.x12f_c00450{left:582.000000px;}
.xb6_c00450{left:586.050000px;}
.x130_c00450{left:589.950000px;}
.x106_c00450{left:591.450000px;}
.xd3_c00450{left:593.250000px;}
.xd5_c00450{left:594.750000px;}
.x131_c00450{left:597.150000px;}
.xc9_c00450{left:598.800000px;}
.x100_c00450{left:601.200000px;}
.x114_c00450{left:603.750000px;}
.xb7_c00450{left:604.800000px;}
.x103_c00450{left:607.200000px;}
.xf7_c00450{left:609.450000px;}
.xe9_c00450{left:610.950000px;}
.xbb_c00450{left:612.450000px;}
.xa3_c00450{left:615.600000px;}
.x107_c00450{left:616.650000px;}
.x10e_c00450{left:618.150000px;}
.x115_c00450{left:621.450000px;}
.x138_c00450{left:623.850000px;}
.x122_c00450{left:625.650000px;}
.x12a_c00450{left:627.150000px;}
.xcf_c00450{left:628.950000px;}
.xef_c00450{left:630.300000px;}
.xdc_c00450{left:631.350000px;}
.x135_c00450{left:633.000000px;}
.x13d_c00450{left:634.200000px;}
.xa4_c00450{left:635.700000px;}
.xe4_c00450{left:638.100000px;}
.x128_c00450{left:639.750000px;}
.x118_c00450{left:644.550000px;}
.x12b_c00450{left:647.250000px;}
.xd6_c00450{left:648.450000px;}
.xbe_c00450{left:654.150000px;}
.xa5_c00450{left:655.800000px;}
.xf5_c00450{left:657.150000px;}
.x10f_c00450{left:662.850000px;}
.xe5_c00450{left:664.050000px;}
.xca_c00450{left:665.400000px;}
.xa6_c00450{left:667.350000px;}
.xd7_c00450{left:669.000000px;}
.xc3_c00450{left:672.150000px;}
.x109_c00450{left:673.200000px;}
.x120_c00450{left:675.300000px;}
.xaf_c00450{left:677.100000px;}
.xfa_c00450{left:678.150000px;}
.xe6_c00450{left:682.050000px;}
.x132_c00450{left:683.400000px;}
.xf8_c00450{left:686.550000px;}
.xcb_c00450{left:688.500000px;}
.xa7_c00450{left:690.450000px;}
.xc4_c00450{left:694.500000px;}
.xd0_c00450{left:696.300000px;}
.xa8_c00450{left:699.750000px;}
.xfd_c00450{left:703.650000px;}
.xcc_c00450{left:704.700000px;}
.xbf_c00450{left:707.850000px;}
.x123_c00450{left:709.950000px;}
.xb8_c00450{left:711.750000px;}
.x13a_c00450{left:713.700000px;}
.xf0_c00450{left:716.400000px;}
.xc0_c00450{left:718.650000px;}
.xb0_c00450{left:721.350000px;}
.xb9_c00450{left:722.850000px;}
.x119_c00450{left:726.600000px;}
.xa9_c00450{left:729.600000px;}
.x104_c00450{left:735.450000px;}
.x110_c00450{left:736.650000px;}
.xde_c00450{left:737.700000px;}
.x125_c00450{left:738.750000px;}
.xd8_c00450{left:740.700000px;}
.x11e_c00450{left:743.400000px;}
.x111_c00450{left:745.350000px;}
.x13e_c00450{left:749.250000px;}
.x10a_c00450{left:750.600000px;}
.x101_c00450{left:751.650000px;}
.xaa_c00450{left:753.300000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws1_c00450{word-spacing:-15.299814pt;}
.ws5_c00450{word-spacing:-9.219140pt;}
.ws2_c00450{word-spacing:-2.962963pt;}
.wsd_c00450{word-spacing:0.000000pt;}
.ws4_c00450{word-spacing:4.902292pt;}
.ws3_c00450{word-spacing:5.662551pt;}
.ws0_c00450{word-spacing:6.556263pt;}
.wsa_c00450{word-spacing:7.555556pt;}
.wsc_c00450{word-spacing:15.619048pt;}
.ws7_c00450{word-spacing:17.773012pt;}
.wsb_c00450{word-spacing:22.857143pt;}
.ws8_c00450{word-spacing:27.781948pt;}
.ws6_c00450{word-spacing:28.666667pt;}
.ws9_c00450{word-spacing:82.834753pt;}
._0_c00450{width:47.492404pt;}
.fs7_c00450{font-size:21.333333pt;}
.fs5_c00450{font-size:26.666667pt;}
.fs8_c00450{font-size:32.000000pt;}
.fs6_c00450{font-size:48.000000pt;}
.fs3_c00450{font-size:53.333333pt;}
.fs2_c00450{font-size:58.666667pt;}
.fs1_c00450{font-size:64.000000pt;}
.fs4_c00450{font-size:74.666667pt;}
.fs0_c00450{font-size:96.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y31_c00450{bottom:150.666667pt;}
.y34_c00450{bottom:162.266667pt;}
.y68_c00450{bottom:164.533333pt;}
.y33_c00450{bottom:175.733333pt;}
.y67_c00450{bottom:182.133333pt;}
.y66_c00450{bottom:182.800000pt;}
.y32_c00450{bottom:188.800000pt;}
.y65_c00450{bottom:195.866667pt;}
.y30_c00450{bottom:201.600000pt;}
.y64_c00450{bottom:208.666667pt;}
.y2f_c00450{bottom:214.666667pt;}
.y63_c00450{bottom:221.733333pt;}
.y62_c00450{bottom:234.533333pt;}
.y2e_c00450{bottom:245.066667pt;}
.y61_c00450{bottom:247.333333pt;}
.y2d_c00450{bottom:253.066667pt;}
.y60_c00450{bottom:259.866667pt;}
.y5f_c00450{bottom:273.066667pt;}
.y2c_c00450{bottom:275.733333pt;}
.y5e_c00450{bottom:282.666667pt;}
.y5d_c00450{bottom:286.133333pt;}
.y2b_c00450{bottom:295.600000pt;}
.y5c_c00450{bottom:299.200000pt;}
.y2a_c00450{bottom:315.466667pt;}
.y5b_c00450{bottom:316.800000pt;}
.y29_c00450{bottom:332.133333pt;}
.y5a_c00450{bottom:332.800000pt;}
.y59_c00450{bottom:348.800000pt;}
.y58_c00450{bottom:364.133333pt;}
.y28_c00450{bottom:368.666667pt;}
.y57_c00450{bottom:384.533333pt;}
.y27_c00450{bottom:395.600000pt;}
.y56_c00450{bottom:400.266667pt;}
.y26_c00450{bottom:412.266667pt;}
.y55_c00450{bottom:416.266667pt;}
.y25_c00450{bottom:428.000000pt;}
.y54_c00450{bottom:432.266667pt;}
.y24_c00450{bottom:444.000000pt;}
.y53_c00450{bottom:448.000000pt;}
.y23_c00450{bottom:460.000000pt;}
.y52_c00450{bottom:464.266667pt;}
.y22_c00450{bottom:476.000000pt;}
.y51_c00450{bottom:480.000000pt;}
.y21_c00450{bottom:492.000000pt;}
.y50_c00450{bottom:496.000000pt;}
.y20_c00450{bottom:507.733333pt;}
.y4f_c00450{bottom:512.000000pt;}
.y1f_c00450{bottom:523.733333pt;}
.y4e_c00450{bottom:528.000000pt;}
.y1e_c00450{bottom:539.733333pt;}
.y4d_c00450{bottom:544.000000pt;}
.y1d_c00450{bottom:555.733333pt;}
.y4c_c00450{bottom:563.733333pt;}
.y1c_c00450{bottom:571.733333pt;}
.y4b_c00450{bottom:579.466667pt;}
.y1b_c00450{bottom:587.466667pt;}
.y1a_c00450{bottom:603.200000pt;}
.y4a_c00450{bottom:603.466667pt;}
.y19_c00450{bottom:618.933333pt;}
.y49_c00450{bottom:619.466667pt;}
.y18_c00450{bottom:635.200000pt;}
.y48_c00450{bottom:638.933333pt;}
.y17_c00450{bottom:651.200000pt;}
.y47_c00450{bottom:654.666667pt;}
.y16_c00450{bottom:667.200000pt;}
.y46_c00450{bottom:674.800000pt;}
.y15_c00450{bottom:682.933333pt;}
.y45_c00450{bottom:694.666667pt;}
.y14_c00450{bottom:698.933333pt;}
.y44_c00450{bottom:714.533333pt;}
.y13_c00450{bottom:717.200000pt;}
.y43_c00450{bottom:734.400000pt;}
.y12_c00450{bottom:734.533333pt;}
.y11_c00450{bottom:750.266667pt;}
.y42_c00450{bottom:754.533333pt;}
.y10_c00450{bottom:766.533333pt;}
.y41_c00450{bottom:773.733333pt;}
.yf_c00450{bottom:782.533333pt;}
.y40_c00450{bottom:789.733333pt;}
.ye_c00450{bottom:798.800000pt;}
.y3f_c00450{bottom:805.733333pt;}
.yd_c00450{bottom:814.800000pt;}
.y3e_c00450{bottom:825.600000pt;}
.yc_c00450{bottom:830.533333pt;}
.y3d_c00450{bottom:841.600000pt;}
.yb_c00450{bottom:846.533333pt;}
.y3c_c00450{bottom:861.466667pt;}
.ya_c00450{bottom:862.800000pt;}
.y3b_c00450{bottom:877.733333pt;}
.y9_c00450{bottom:878.800000pt;}
.y3a_c00450{bottom:893.466667pt;}
.y8_c00450{bottom:894.133333pt;}
.y7_c00450{bottom:910.133333pt;}
.y39_c00450{bottom:913.333333pt;}
.y6_c00450{bottom:925.866667pt;}
.y38_c00450{bottom:929.333333pt;}
.y5_c00450{bottom:941.866667pt;}
.y37_c00450{bottom:954.533333pt;}
.y4_c00450{bottom:958.133333pt;}
.y3_c00450{bottom:973.733333pt;}
.y36_c00450{bottom:982.000000pt;}
.y2_c00450{bottom:989.733333pt;}
.y35_c00450{bottom:1000.266667pt;}
.y1_c00450{bottom:1014.400000pt;}
.h9_c00450{height:21.333333pt;}
.h7_c00450{height:26.666667pt;}
.ha_c00450{height:32.000000pt;}
.h8_c00450{height:48.000000pt;}
.h5_c00450{height:53.333333pt;}
.h4_c00450{height:58.666667pt;}
.h3_c00450{height:64.000000pt;}
.h6_c00450{height:74.666667pt;}
.h2_c00450{height:96.000000pt;}
.h1_c00450{height:1126.000000pt;}
.h0_c00450{height:1126.079916pt;}
.w0_c00450{width:851.840007pt;}
.w1_c00450{width:852.000000pt;}
.x0_c00450{left:0.000000pt;}
.x9b_c00450{left:47.733333pt;}
.x98_c00450{left:49.866667pt;}
.x9e_c00450{left:51.200000pt;}
.x8f_c00450{left:52.133333pt;}
.x59_c00450{left:54.666667pt;}
.xf_c00450{left:63.733333pt;}
.x29_c00450{left:65.333333pt;}
.x91_c00450{left:67.466667pt;}
.x7f_c00450{left:68.400000pt;}
.x2f_c00450{left:69.600000pt;}
.x2_c00450{left:70.666667pt;}
.x99_c00450{left:81.600000pt;}
.x92_c00450{left:84.400000pt;}
.x89_c00450{left:86.000000pt;}
.x10_c00450{left:88.000000pt;}
.x94_c00450{left:89.200000pt;}
.x44_c00450{left:90.800000pt;}
.x9f_c00450{left:92.533333pt;}
.x67_c00450{left:94.000000pt;}
.x36_c00450{left:97.066667pt;}
.x16_c00450{left:100.933333pt;}
.x76_c00450{left:102.666667pt;}
.x21_c00450{left:103.600000pt;}
.x1d_c00450{left:105.733333pt;}
.x5a_c00450{left:107.733333pt;}
.x2a_c00450{left:109.466667pt;}
.x3_c00450{left:110.933333pt;}
.x41_c00450{left:112.533333pt;}
.x4f_c00450{left:114.000000pt;}
.x9c_c00450{left:114.933333pt;}
.x17_c00450{left:116.000000pt;}
.x3d_c00450{left:117.066667pt;}
.x87_c00450{left:118.133333pt;}
.x4b_c00450{left:120.133333pt;}
.x22_c00450{left:123.066667pt;}
.x5b_c00450{left:124.400000pt;}
.x30_c00450{left:125.600000pt;}
.x8e_c00450{left:126.666667pt;}
.x71_c00450{left:127.866667pt;}
.x37_c00450{left:130.666667pt;}
.x3e_c00450{left:133.333333pt;}
.x5e_c00450{left:135.200000pt;}
.x93_c00450{left:136.133333pt;}
.x9_c00450{left:137.866667pt;}
.x88_c00450{left:139.866667pt;}
.x4_c00450{left:141.600000pt;}
.x6c_c00450{left:142.800000pt;}
.x83_c00450{left:144.533333pt;}
.x50_c00450{left:146.000000pt;}
.x18_c00450{left:147.333333pt;}
.x38_c00450{left:148.266667pt;}
.x9a_c00450{left:151.733333pt;}
.x63_c00450{left:153.200000pt;}
.x11_c00450{left:154.266667pt;}
.x5f_c00450{left:155.733333pt;}
.x80_c00450{left:157.733333pt;}
.x84_c00450{left:158.933333pt;}
.x51_c00450{left:161.066667pt;}
.x73_c00450{left:162.133333pt;}
.x1e_c00450{left:163.066667pt;}
.x61_c00450{left:164.133333pt;}
.x6d_c00450{left:165.466667pt;}
.x3f_c00450{left:166.666667pt;}
.x77_c00450{left:167.600000pt;}
.x23_c00450{left:171.333333pt;}
.x68_c00450{left:172.666667pt;}
.x19_c00450{left:174.266667pt;}
.x8a_c00450{left:175.866667pt;}
.x31_c00450{left:178.400000pt;}
.x57_c00450{left:179.733333pt;}
.x12_c00450{left:181.733333pt;}
.x52_c00450{left:183.200000pt;}
.x8b_c00450{left:186.000000pt;}
.xa_c00450{left:187.200000pt;}
.x72_c00450{left:189.333333pt;}
.x39_c00450{left:192.133333pt;}
.x45_c00450{left:194.666667pt;}
.x1a_c00450{left:196.933333pt;}
.x42_c00450{left:199.600000pt;}
.x3a_c00450{left:202.000000pt;}
.x24_c00450{left:203.066667pt;}
.x5_c00450{left:204.666667pt;}
.x32_c00450{left:206.533333pt;}
.xa0_c00450{left:208.000000pt;}
.x58_c00450{left:209.866667pt;}
.x78_c00450{left:212.400000pt;}
.x43_c00450{left:213.333333pt;}
.x1b_c00450{left:215.866667pt;}
.x62_c00450{left:217.200000pt;}
.x7b_c00450{left:219.066667pt;}
.x55_c00450{left:220.133333pt;}
.x2b_c00450{left:222.400000pt;}
.xb_c00450{left:223.733333pt;}
.x7d_c00450{left:224.933333pt;}
.x6e_c00450{left:227.600000pt;}
.x13_c00450{left:229.333333pt;}
.x9d_c00450{left:232.400000pt;}
.x6_c00450{left:233.466667pt;}
.x25_c00450{left:236.666667pt;}
.x81_c00450{left:238.000000pt;}
.x53_c00450{left:239.466667pt;}
.x46_c00450{left:240.400000pt;}
.xc_c00450{left:242.666667pt;}
.x69_c00450{left:245.333333pt;}
.x7e_c00450{left:246.400000pt;}
.x2c_c00450{left:247.733333pt;}
.x8c_c00450{left:249.333333pt;}
.x1f_c00450{left:252.000000pt;}
.x85_c00450{left:253.066667pt;}
.x1c_c00450{left:254.533333pt;}
.x2d_c00450{left:256.666667pt;}
.x97_c00450{left:259.200000pt;}
.x6f_c00450{left:260.933333pt;}
.x47_c00450{left:261.866667pt;}
.x14_c00450{left:263.200000pt;}
.x33_c00450{left:264.666667pt;}
.x64_c00450{left:265.866667pt;}
.x7_c00450{left:267.733333pt;}
.x8d_c00450{left:268.800000pt;}
.x65_c00450{left:270.000000pt;}
.x1_c00450{left:272.000000pt;}
.x56_c00450{left:273.200000pt;}
.x40_c00450{left:274.133333pt;}
.x48_c00450{left:276.533333pt;}
.x95_c00450{left:277.466667pt;}
.x34_c00450{left:278.400000pt;}
.x82_c00450{left:279.866667pt;}
.x70_c00450{left:281.733333pt;}
.x3b_c00450{left:284.800000pt;}
.x54_c00450{left:286.133333pt;}
.x79_c00450{left:287.600000pt;}
.x74_c00450{left:289.200000pt;}
.x4c_c00450{left:291.333333pt;}
.x66_c00450{left:294.000000pt;}
.x20_c00450{left:294.933333pt;}
.xd_c00450{left:298.666667pt;}
.x2e_c00450{left:302.800000pt;}
.x26_c00450{left:304.800000pt;}
.x5c_c00450{left:305.733333pt;}
.xe_c00450{left:307.333333pt;}
.x15_c00450{left:309.866667pt;}
.x60_c00450{left:310.800000pt;}
.x4d_c00450{left:312.400000pt;}
.x75_c00450{left:313.466667pt;}
.x27_c00450{left:316.266667pt;}
.x7a_c00450{left:318.666667pt;}
.x49_c00450{left:322.933333pt;}
.x5d_c00450{left:324.666667pt;}
.x86_c00450{left:326.133333pt;}
.x35_c00450{left:327.733333pt;}
.x4e_c00450{left:330.000000pt;}
.x6a_c00450{left:331.333333pt;}
.x8_c00450{left:332.400000pt;}
.x7c_c00450{left:333.333333pt;}
.x3c_c00450{left:339.466667pt;}
.x6b_c00450{left:340.666667pt;}
.x4a_c00450{left:343.733333pt;}
.x96_c00450{left:347.866667pt;}
.x28_c00450{left:349.200000pt;}
.x90_c00450{left:362.533333pt;}
.x11c_c00450{left:370.933333pt;}
.xec_c00450{left:371.866667pt;}
.xfb_c00450{left:381.733333pt;}
.x12c_c00450{left:382.666667pt;}
.x11f_c00450{left:384.933333pt;}
.x10b_c00450{left:386.266667pt;}
.xab_c00450{left:387.333333pt;}
.x126_c00450{left:389.733333pt;}
.x133_c00450{left:395.600000pt;}
.x13c_c00450{left:397.200000pt;}
.x129_c00450{left:401.600000pt;}
.xb3_c00450{left:402.533333pt;}
.xbc_c00450{left:403.866667pt;}
.xcd_c00450{left:404.800000pt;}
.xdf_c00450{left:406.400000pt;}
.xfc_c00450{left:408.000000pt;}
.xf9_c00450{left:408.933333pt;}
.xba_c00450{left:410.933333pt;}
.x136_c00450{left:414.266667pt;}
.x112_c00450{left:415.466667pt;}
.xc5_c00450{left:416.933333pt;}
.xac_c00450{left:418.666667pt;}
.xa1_c00450{left:420.133333pt;}
.x105_c00450{left:421.733333pt;}
.x10c_c00450{left:424.000000pt;}
.xed_c00450{left:425.333333pt;}
.x12d_c00450{left:426.266667pt;}
.x124_c00450{left:427.200000pt;}
.xc1_c00450{left:428.133333pt;}
.x116_c00450{left:430.800000pt;}
.xf6_c00450{left:432.000000pt;}
.xd1_c00450{left:433.600000pt;}
.xc6_c00450{left:435.200000pt;}
.xce_c00450{left:436.533333pt;}
.x121_c00450{left:438.000000pt;}
.x11a_c00450{left:439.866667pt;}
.xf1_c00450{left:440.933333pt;}
.xe1_c00450{left:441.866667pt;}
.xb1_c00450{left:442.800000pt;}
.xd9_c00450{left:444.400000pt;}
.x113_c00450{left:446.133333pt;}
.xe0_c00450{left:449.333333pt;}
.xa2_c00450{left:451.466667pt;}
.x12e_c00450{left:452.400000pt;}
.x117_c00450{left:453.466667pt;}
.xbd_c00450{left:455.066667pt;}
.xb4_c00450{left:456.000000pt;}
.x13b_c00450{left:458.800000pt;}
.x11b_c00450{left:459.733333pt;}
.xe3_c00450{left:461.200000pt;}
.x108_c00450{left:462.400000pt;}
.xea_c00450{left:464.666667pt;}
.x11d_c00450{left:466.400000pt;}
.xe7_c00450{left:467.333333pt;}
.xd2_c00450{left:468.800000pt;}
.xb5_c00450{left:469.733333pt;}
.x10d_c00450{left:471.733333pt;}
.xb2_c00450{left:472.933333pt;}
.xad_c00450{left:474.666667pt;}
.xc7_c00450{left:476.533333pt;}
.x137_c00450{left:477.866667pt;}
.xf2_c00450{left:479.600000pt;}
.x127_c00450{left:480.933333pt;}
.xfe_c00450{left:483.200000pt;}
.xc8_c00450{left:486.133333pt;}
.xee_c00450{left:487.066667pt;}
.x134_c00450{left:488.400000pt;}
.xf3_c00450{left:491.066667pt;}
.x139_c00450{left:492.000000pt;}
.x102_c00450{left:493.066667pt;}
.xdd_c00450{left:494.400000pt;}
.xd4_c00450{left:496.000000pt;}
.xae_c00450{left:498.000000pt;}
.xe2_c00450{left:500.133333pt;}
.xeb_c00450{left:501.733333pt;}
.xe8_c00450{left:502.800000pt;}
.xda_c00450{left:504.933333pt;}
.xf4_c00450{left:507.333333pt;}
.xff_c00450{left:509.066667pt;}
.xc2_c00450{left:511.333333pt;}
.xdb_c00450{left:512.933333pt;}
.x12f_c00450{left:517.333333pt;}
.xb6_c00450{left:520.933333pt;}
.x130_c00450{left:524.400000pt;}
.x106_c00450{left:525.733333pt;}
.xd3_c00450{left:527.333333pt;}
.xd5_c00450{left:528.666667pt;}
.x131_c00450{left:530.800000pt;}
.xc9_c00450{left:532.266667pt;}
.x100_c00450{left:534.400000pt;}
.x114_c00450{left:536.666667pt;}
.xb7_c00450{left:537.600000pt;}
.x103_c00450{left:539.733333pt;}
.xf7_c00450{left:541.733333pt;}
.xe9_c00450{left:543.066667pt;}
.xbb_c00450{left:544.400000pt;}
.xa3_c00450{left:547.200000pt;}
.x107_c00450{left:548.133333pt;}
.x10e_c00450{left:549.466667pt;}
.x115_c00450{left:552.400000pt;}
.x138_c00450{left:554.533333pt;}
.x122_c00450{left:556.133333pt;}
.x12a_c00450{left:557.466667pt;}
.xcf_c00450{left:559.066667pt;}
.xef_c00450{left:560.266667pt;}
.xdc_c00450{left:561.200000pt;}
.x135_c00450{left:562.666667pt;}
.x13d_c00450{left:563.733333pt;}
.xa4_c00450{left:565.066667pt;}
.xe4_c00450{left:567.200000pt;}
.x128_c00450{left:568.666667pt;}
.x118_c00450{left:572.933333pt;}
.x12b_c00450{left:575.333333pt;}
.xd6_c00450{left:576.400000pt;}
.xbe_c00450{left:581.466667pt;}
.xa5_c00450{left:582.933333pt;}
.xf5_c00450{left:584.133333pt;}
.x10f_c00450{left:589.200000pt;}
.xe5_c00450{left:590.266667pt;}
.xca_c00450{left:591.466667pt;}
.xa6_c00450{left:593.200000pt;}
.xd7_c00450{left:594.666667pt;}
.xc3_c00450{left:597.466667pt;}
.x109_c00450{left:598.400000pt;}
.x120_c00450{left:600.266667pt;}
.xaf_c00450{left:601.866667pt;}
.xfa_c00450{left:602.800000pt;}
.xe6_c00450{left:606.266667pt;}
.x132_c00450{left:607.466667pt;}
.xf8_c00450{left:610.266667pt;}
.xcb_c00450{left:612.000000pt;}
.xa7_c00450{left:613.733333pt;}
.xc4_c00450{left:617.333333pt;}
.xd0_c00450{left:618.933333pt;}
.xa8_c00450{left:622.000000pt;}
.xfd_c00450{left:625.466667pt;}
.xcc_c00450{left:626.400000pt;}
.xbf_c00450{left:629.200000pt;}
.x123_c00450{left:631.066667pt;}
.xb8_c00450{left:632.666667pt;}
.x13a_c00450{left:634.400000pt;}
.xf0_c00450{left:636.800000pt;}
.xc0_c00450{left:638.800000pt;}
.xb0_c00450{left:641.200000pt;}
.xb9_c00450{left:642.533333pt;}
.x119_c00450{left:645.866667pt;}
.xa9_c00450{left:648.533333pt;}
.x104_c00450{left:653.733333pt;}
.x110_c00450{left:654.800000pt;}
.xde_c00450{left:655.733333pt;}
.x125_c00450{left:656.666667pt;}
.xd8_c00450{left:658.400000pt;}
.x11e_c00450{left:660.800000pt;}
.x111_c00450{left:662.533333pt;}
.x13e_c00450{left:666.000000pt;}
.x10a_c00450{left:667.200000pt;}
.x101_c00450{left:668.133333pt;}
.xaa_c00450{left:669.600000pt;}
}





/* 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_c00451 {
    display:none;
  }
  .loading-indicator_c00451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00451 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_c00451 { 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_c00451" -> "#page-container .classname_c00451")
 */
.pf_c00451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00451 { /* 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_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00451 { /* 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_c00451 { /* 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_c00451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00451 {overflow:visible;}
  }
}
.c_c00451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00451 { /* 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_c00451:after { /* webkit #35443 */
  content: '';
}
.t_c00451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00451 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 */
}
.__c00451 { /* 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_c00451 { /* info for Javascript */
  display:none;
}
.l_c00451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00451: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_c00451 {
    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_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00451.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_c00451 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00451;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.000000;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;}
.m4b_c00451{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00451{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00451{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.me8_c00451{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me1_c00451{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.me4_c00451{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me2_c00451{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m106_c00451{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00451{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mad_c00451{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m17_c00451{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me6_c00451{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00451{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00451{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00451{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m78_c00451{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m34_c00451{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00451{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m41_c00451{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m116_c00451{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.meb_c00451{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m7_c00451{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00451{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00451{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00451{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00451{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m73_c00451{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00451{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00451{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00451{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m62_c00451{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m97_c00451{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00451{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m121_c00451{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m25_c00451{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00451{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m103_c00451{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m84_c00451{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.md4_c00451{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00451{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m117_c00451{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m85_c00451{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00451{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m43_c00451{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00451{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m104_c00451{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m105_c00451{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.me3_c00451{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00451{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00451{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00451{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m115_c00451{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m51_c00451{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m12_c00451{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00451{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m86_c00451{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m44_c00451{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m65_c00451{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m24_c00451{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00451{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m42_c00451{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m30_c00451{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00451{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00451{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00451{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00451{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00451{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00451{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m114_c00451{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m46_c00451{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m45_c00451{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.md6_c00451{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m120_c00451{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00451{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00451{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m26_c00451{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00451{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf_c00451{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00451{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma_c00451{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m75_c00451{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m96_c00451{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m98_c00451{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00451{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m21_c00451{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mca_c00451{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00451{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00451{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m111_c00451{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00451{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mae_c00451{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m31_c00451{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m11_c00451{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m113_c00451{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m38_c00451{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mac_c00451{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00451{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00451{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m40_c00451{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m70_c00451{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m28_c00451{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00451{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00451{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00451{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m76_c00451{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3_c00451{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00451{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2_c00451{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m19_c00451{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m18_c00451{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m74_c00451{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m16_c00451{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00451{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m5_c00451{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m49_c00451{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m71_c00451{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m50_c00451{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00451{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00451{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mff_c00451{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00451{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00451{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m6_c00451{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m110_c00451{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00451{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00451{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00451{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00451{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mee_c00451{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m55_c00451{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9_c00451{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maa_c00451{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00451{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m39_c00451{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00451{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m14_c00451{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m107_c00451{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00451{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00451{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00451{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m27_c00451{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00451{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00451{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m60_c00451{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00451{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m57_c00451{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m83_c00451{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00451{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00451{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00451{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4_c00451{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m61_c00451{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m94_c00451{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m15_c00451{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m29_c00451{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m59_c00451{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.md5_c00451{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00451{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m33_c00451{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00451{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.md7_c00451{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00451{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00451{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m95_c00451{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00451{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00451{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.md_c00451{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m37_c00451{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m63_c00451{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m100_c00451{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00451{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb_c00451{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m53_c00451{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m67_c00451{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00451{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m20_c00451{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00451{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m47_c00451{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me_c00451{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00451{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m10_c00451{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00451{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00451{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m35_c00451{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00451{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m23_c00451{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m58_c00451{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00451{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00451{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m66_c00451{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00451{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00451{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m92_c00451{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00451{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00451{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00451{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00451{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00451{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m80_c00451{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m22_c00451{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00451{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.maf_c00451{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00451{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00451{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m81_c00451{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mde_c00451{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00451{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m13_c00451{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00451{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8_c00451{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md1_c00451{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00451{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00451{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m89_c00451{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00451{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00451{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m87_c00451{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m90_c00451{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00451{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00451{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m101_c00451{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m118_c00451{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00451{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.md2_c00451{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m36_c00451{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00451{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mab_c00451{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m69_c00451{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md3_c00451{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m32_c00451{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00451{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m79_c00451{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m109_c00451{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00451{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m48_c00451{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m112_c00451{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m54_c00451{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m56_c00451{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mec_c00451{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00451{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00451{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m93_c00451{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m77_c00451{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.med_c00451{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00451{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00451{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me0_c00451{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m99_c00451{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m88_c00451{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00451{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.me5_c00451{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m91_c00451{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mce_c00451{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m72_c00451{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00451{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00451{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m119_c00451{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00451{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m108_c00451{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m102_c00451{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mea_c00451{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00451{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00451{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00451{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m68_c00451{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md9_c00451{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00451{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mda_c00451{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00451{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me9_c00451{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md0_c00451{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00451{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m52_c00451{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00451{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.md8_c00451{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m64_c00451{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00451{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00451{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00451{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mef_c00451{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00451{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00451{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m82_c00451{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00451{transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);}
.mba_c00451{transform:matrix(0.388750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388750,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);}
.me7_c00451{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00451{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00451{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls1_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:45.000000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{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__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00451{word-spacing:-75.000000px;}
.ws14_c00451{word-spacing:-17.890034px;}
.ws13_c00451{word-spacing:-7.859838px;}
.ws0_c00451{word-spacing:-4.519651px;}
.ws12_c00451{word-spacing:-0.975610px;}
.ws16_c00451{word-spacing:0.000000px;}
.ws1_c00451{word-spacing:0.307278px;}
.ws11_c00451{word-spacing:4.677472px;}
.ws15_c00451{word-spacing:8.068182px;}
.ws10_c00451{word-spacing:10.459016px;}
.wsb_c00451{word-spacing:11.875000px;}
.wsf_c00451{word-spacing:12.644809px;}
.ws7_c00451{word-spacing:15.000000px;}
.wse_c00451{word-spacing:15.500000px;}
.wsa_c00451{word-spacing:16.785714px;}
.wsd_c00451{word-spacing:18.000000px;}
.ws8_c00451{word-spacing:18.125000px;}
.ws6_c00451{word-spacing:22.142857px;}
.ws5_c00451{word-spacing:22.812500px;}
.ws3_c00451{word-spacing:25.117479px;}
.wsc_c00451{word-spacing:25.714286px;}
.ws4_c00451{word-spacing:28.426230px;}
.ws2_c00451{word-spacing:43.750000px;}
._6_c00451{margin-left:-45.000000px;}
._1_c00451{width:36.204967px;}
._3_c00451{width:41.875000px;}
._0_c00451{width:45.982533px;}
._4_c00451{width:48.125000px;}
._5_c00451{width:52.812500px;}
._2_c00451{width:55.937500px;}
._7_c00451{width:64.642857px;}
.fc0_c00451{color:transparent;}
.fs6_c00451{font-size:42.000000px;}
.fs5_c00451{font-size:54.000000px;}
.fs4_c00451{font-size:60.000000px;}
.fs3_c00451{font-size:66.000000px;}
.fs2_c00451{font-size:72.000000px;}
.fs1_c00451{font-size:84.000000px;}
.fs0_c00451{font-size:96.000000px;}
.y0_c00451{bottom:0.000000px;}
.y6b_c00451{bottom:175.350000px;}
.y6a_c00451{bottom:187.650000px;}
.y34_c00451{bottom:192.900000px;}
.y69_c00451{bottom:206.400000px;}
.y33_c00451{bottom:208.050000px;}
.y32_c00451{bottom:222.750000px;}
.y68_c00451{bottom:224.100000px;}
.y31_c00451{bottom:236.100000px;}
.y67_c00451{bottom:241.800000px;}
.y30_c00451{bottom:250.200000px;}
.y66_c00451{bottom:259.500000px;}
.y2f_c00451{bottom:264.300000px;}
.y65_c00451{bottom:277.500000px;}
.y2e_c00451{bottom:277.950000px;}
.y64_c00451{bottom:295.800000px;}
.y63_c00451{bottom:313.500000px;}
.y62_c00451{bottom:331.200000px;}
.y2d_c00451{bottom:340.800000px;}
.y61_c00451{bottom:348.900000px;}
.y2c_c00451{bottom:358.050000px;}
.y60_c00451{bottom:370.950000px;}
.y2b_c00451{bottom:375.750000px;}
.y5f_c00451{bottom:389.250000px;}
.y2a_c00451{bottom:393.450000px;}
.y5e_c00451{bottom:407.250000px;}
.y29_c00451{bottom:411.150000px;}
.y5d_c00451{bottom:425.550000px;}
.y28_c00451{bottom:429.450000px;}
.y5c_c00451{bottom:443.250000px;}
.y27_c00451{bottom:447.150000px;}
.y5b_c00451{bottom:460.500000px;}
.y35_c00451{bottom:461.100000px;}
.y26_c00451{bottom:465.150000px;}
.y25_c00451{bottom:482.850000px;}
.y5a_c00451{bottom:483.600000px;}
.y24_c00451{bottom:501.150000px;}
.y59_c00451{bottom:501.900000px;}
.y23_c00451{bottom:518.700000px;}
.y58_c00451{bottom:519.900000px;}
.y57_c00451{bottom:537.900000px;}
.y22_c00451{bottom:546.750000px;}
.y56_c00451{bottom:555.150000px;}
.y21_c00451{bottom:564.750000px;}
.y55_c00451{bottom:573.150000px;}
.y20_c00451{bottom:582.750000px;}
.y54_c00451{bottom:591.450000px;}
.y1f_c00451{bottom:600.450000px;}
.y53_c00451{bottom:609.450000px;}
.y1e_c00451{bottom:618.450000px;}
.y52_c00451{bottom:627.450000px;}
.y1d_c00451{bottom:636.150000px;}
.y51_c00451{bottom:645.450000px;}
.y1c_c00451{bottom:654.150000px;}
.y50_c00451{bottom:663.150000px;}
.y1b_c00451{bottom:672.150000px;}
.y4f_c00451{bottom:683.700000px;}
.y1a_c00451{bottom:690.150000px;}
.y4e_c00451{bottom:698.850000px;}
.y19_c00451{bottom:708.150000px;}
.y4d_c00451{bottom:712.800000px;}
.y4c_c00451{bottom:727.050000px;}
.y18_c00451{bottom:735.150000px;}
.y4b_c00451{bottom:742.200000px;}
.y17_c00451{bottom:753.150000px;}
.y4a_c00451{bottom:756.300000px;}
.y49_c00451{bottom:770.850000px;}
.y16_c00451{bottom:774.900000px;}
.y48_c00451{bottom:785.550000px;}
.y15_c00451{bottom:792.900000px;}
.y47_c00451{bottom:799.950000px;}
.y14_c00451{bottom:810.900000px;}
.y46_c00451{bottom:814.350000px;}
.y13_c00451{bottom:828.600000px;}
.y45_c00451{bottom:828.750000px;}
.y44_c00451{bottom:843.450000px;}
.y12_c00451{bottom:846.600000px;}
.y43_c00451{bottom:858.300000px;}
.y11_c00451{bottom:864.600000px;}
.y42_c00451{bottom:878.100000px;}
.y10_c00451{bottom:882.300000px;}
.y41_c00451{bottom:896.400000px;}
.yf_c00451{bottom:900.300000px;}
.y40_c00451{bottom:914.100000px;}
.ye_c00451{bottom:918.300000px;}
.y3f_c00451{bottom:932.100000px;}
.yd_c00451{bottom:936.300000px;}
.yc_c00451{bottom:954.300000px;}
.y3e_c00451{bottom:958.800000px;}
.yb_c00451{bottom:972.300000px;}
.y3d_c00451{bottom:976.800000px;}
.ya_c00451{bottom:990.300000px;}
.y3c_c00451{bottom:994.800000px;}
.y9_c00451{bottom:1008.300000px;}
.y3b_c00451{bottom:1013.100000px;}
.y8_c00451{bottom:1026.300000px;}
.y3a_c00451{bottom:1030.350000px;}
.y7_c00451{bottom:1044.000000px;}
.y39_c00451{bottom:1048.650000px;}
.y6_c00451{bottom:1062.000000px;}
.y38_c00451{bottom:1066.650000px;}
.y5_c00451{bottom:1080.000000px;}
.y37_c00451{bottom:1093.350000px;}
.y4_c00451{bottom:1098.000000px;}
.y36_c00451{bottom:1110.900000px;}
.y3_c00451{bottom:1116.000000px;}
.y1_c00451{bottom:1141.950000px;}
.y2_c00451{bottom:1142.700000px;}
.h8_c00451{height:42.000000px;}
.h7_c00451{height:54.000000px;}
.h6_c00451{height:60.000000px;}
.h5_c00451{height:66.000000px;}
.h4_c00451{height:72.000000px;}
.h3_c00451{height:84.000000px;}
.h2_c00451{height:96.000000px;}
.h1_c00451{height:1267.500000px;}
.h0_c00451{height:1267.559967px;}
.w0_c00451{width:958.320007px;}
.w1_c00451{width:958.500000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:204.450000px;}
.x5f_c00451{left:207.000000px;}
.x78_c00451{left:209.550000px;}
.x94_c00451{left:213.000000px;}
.x3_c00451{left:223.200000px;}
.x13_c00451{left:224.550000px;}
.x68_c00451{left:226.050000px;}
.x71_c00451{left:227.850000px;}
.x90_c00451{left:229.200000px;}
.x5c_c00451{left:243.750000px;}
.x43_c00451{left:247.050000px;}
.x73_c00451{left:249.600000px;}
.x57_c00451{left:250.950000px;}
.x9b_c00451{left:253.800000px;}
.x19_c00451{left:256.950000px;}
.x8b_c00451{left:258.150000px;}
.x2b_c00451{left:259.350000px;}
.x95_c00451{left:261.600000px;}
.x39_c00451{left:262.800000px;}
.x3f_c00451{left:265.200000px;}
.x35_c00451{left:267.000000px;}
.x60_c00451{left:268.950000px;}
.x4d_c00451{left:271.500000px;}
.x74_c00451{left:273.300000px;}
.x3a_c00451{left:274.350000px;}
.x63_c00451{left:275.850000px;}
.x79_c00451{left:276.900000px;}
.x4c_c00451{left:278.100000px;}
.xe_c00451{left:279.300000px;}
.x7e_c00451{left:282.600000px;}
.x27_c00451{left:284.100000px;}
.x36_c00451{left:286.500000px;}
.x2f_c00451{left:287.700000px;}
.x8c_c00451{left:289.050000px;}
.x86_c00451{left:290.250000px;}
.x14_c00451{left:291.900000px;}
.x4_c00451{left:293.700000px;}
.x1a_c00451{left:296.550000px;}
.x21_c00451{left:300.150000px;}
.x5d_c00451{left:301.350000px;}
.x7a_c00451{left:303.150000px;}
.x3b_c00451{left:304.950000px;}
.x64_c00451{left:306.450000px;}
.x7f_c00451{left:307.500000px;}
.x37_c00451{left:309.900000px;}
.x22_c00451{left:310.950000px;}
.x83_c00451{left:315.600000px;}
.x44_c00451{left:316.800000px;}
.x69_c00451{left:318.300000px;}
.x50_c00451{left:319.350000px;}
.x91_c00451{left:320.550000px;}
.x2c_c00451{left:321.600000px;}
.x58_c00451{left:324.750000px;}
.x23_c00451{left:326.850000px;}
.xf_c00451{left:328.950000px;}
.x82_c00451{left:332.550000px;}
.x4e_c00451{left:334.800000px;}
.x2d_c00451{left:338.850000px;}
.x15_c00451{left:343.800000px;}
.x5_c00451{left:344.850000px;}
.x59_c00451{left:346.050000px;}
.x1b_c00451{left:347.250000px;}
.x28_c00451{left:348.900000px;}
.x5e_c00451{left:351.300000px;}
.x40_c00451{left:353.400000px;}
.x30_c00451{left:355.350000px;}
.x3c_c00451{left:356.700000px;}
.x8f_c00451{left:360.150000px;}
.x51_c00451{left:361.500000px;}
.x24_c00451{left:362.850000px;}
.x98_c00451{left:364.050000px;}
.x1c_c00451{left:366.000000px;}
.x67_c00451{left:369.000000px;}
.x87_c00451{left:370.200000px;}
.x80_c00451{left:371.550000px;}
.x84_c00451{left:374.250000px;}
.x31_c00451{left:375.450000px;}
.xa_c00451{left:377.850000px;}
.x61_c00451{left:379.200000px;}
.x65_c00451{left:380.700000px;}
.x10_c00451{left:382.200000px;}
.x6_c00451{left:383.400000px;}
.x6a_c00451{left:385.200000px;}
.x48_c00451{left:386.400000px;}
.x5a_c00451{left:389.250000px;}
.x97_c00451{left:391.050000px;}
.x81_c00451{left:392.400000px;}
.x76_c00451{left:394.500000px;}
.x2e_c00451{left:396.150000px;}
.x52_c00451{left:398.700000px;}
.x92_c00451{left:399.900000px;}
.x55_c00451{left:402.750000px;}
.x49_c00451{left:406.950000px;}
.x96_c00451{left:409.650000px;}
.x5b_c00451{left:410.850000px;}
.x16_c00451{left:412.200000px;}
.x45_c00451{left:414.000000px;}
.x77_c00451{left:415.050000px;}
.x29_c00451{left:419.100000px;}
.x41_c00451{left:422.850000px;}
.x1d_c00451{left:424.650000px;}
.x56_c00451{left:427.650000px;}
.x6b_c00451{left:429.150000px;}
.x66_c00451{left:431.100000px;}
.x38_c00451{left:434.100000px;}
.x7b_c00451{left:437.100000px;}
.x6f_c00451{left:438.600000px;}
.x25_c00451{left:439.950000px;}
.x7_c00451{left:441.300000px;}
.x1e_c00451{left:445.200000px;}
.xb_c00451{left:446.250000px;}
.x11_c00451{left:449.100000px;}
.x4a_c00451{left:450.900000px;}
.x46_c00451{left:453.300000px;}
.x2_c00451{left:456.150000px;}
.x88_c00451{left:458.100000px;}
.x32_c00451{left:459.750000px;}
.x7c_c00451{left:461.550000px;}
.x53_c00451{left:463.950000px;}
.x4f_c00451{left:465.150000px;}
.x75_c00451{left:466.350000px;}
.x2a_c00451{left:467.400000px;}
.xc_c00451{left:468.600000px;}
.x3d_c00451{left:470.250000px;}
.x47_c00451{left:473.850000px;}
.x72_c00451{left:475.050000px;}
.x8_c00451{left:477.000000px;}
.x6c_c00451{left:478.500000px;}
.x8d_c00451{left:480.900000px;}
.x33_c00451{left:482.400000px;}
.x54_c00451{left:485.250000px;}
.x6d_c00451{left:486.600000px;}
.x4b_c00451{left:488.250000px;}
.x93_c00451{left:491.400000px;}
.x12_c00451{left:493.800000px;}
.x1f_c00451{left:496.650000px;}
.x89_c00451{left:498.750000px;}
.x9a_c00451{left:500.250000px;}
.x42_c00451{left:504.900000px;}
.x8a_c00451{left:506.850000px;}
.x70_c00451{left:508.350000px;}
.x17_c00451{left:511.500000px;}
.x9_c00451{left:513.750000px;}
.x34_c00451{left:516.900000px;}
.x26_c00451{left:518.100000px;}
.x18_c00451{left:519.750000px;}
.x99_c00451{left:522.150000px;}
.x20_c00451{left:526.950000px;}
.xd_c00451{left:528.000000px;}
.x9c_c00451{left:529.350000px;}
.x6e_c00451{left:530.850000px;}
.x7d_c00451{left:532.050000px;}
.x62_c00451{left:534.000000px;}
.x85_c00451{left:536.400000px;}
.x3e_c00451{left:539.400000px;}
.x8e_c00451{left:542.400000px;}
.xa2_c00451{left:564.150000px;}
.x11b_c00451{left:565.950000px;}
.x9d_c00451{left:567.000000px;}
.x141_c00451{left:568.050000px;}
.xec_c00451{left:578.100000px;}
.xa7_c00451{left:579.600000px;}
.x11a_c00451{left:580.650000px;}
.xb1_c00451{left:582.150000px;}
.x120_c00451{left:583.500000px;}
.x12d_c00451{left:584.700000px;}
.x13f_c00451{left:585.900000px;}
.x144_c00451{left:586.950000px;}
.xf7_c00451{left:593.550000px;}
.x116_c00451{left:594.750000px;}
.x13c_c00451{left:597.150000px;}
.xa8_c00451{left:599.700000px;}
.x117_c00451{left:604.050000px;}
.xbe_c00451{left:606.000000px;}
.xd8_c00451{left:608.400000px;}
.xc7_c00451{left:610.500000px;}
.xa3_c00451{left:612.750000px;}
.xf8_c00451{left:615.450000px;}
.xd0_c00451{left:618.300000px;}
.x12b_c00451{left:620.400000px;}
.xdb_c00451{left:622.800000px;}
.xb2_c00451{left:624.300000px;}
.xe8_c00451{left:626.100000px;}
.x9e_c00451{left:628.950000px;}
.x134_c00451{left:630.300000px;}
.x110_c00451{left:632.850000px;}
.x10e_c00451{left:634.500000px;}
.xc8_c00451{left:635.700000px;}
.xbf_c00451{left:636.900000px;}
.xed_c00451{left:638.250000px;}
.xfd_c00451{left:640.500000px;}
.x135_c00451{left:642.150000px;}
.x12f_c00451{left:643.350000px;}
.x106_c00451{left:645.450000px;}
.x138_c00451{left:646.650000px;}
.xb9_c00451{left:648.150000px;}
.xdc_c00451{left:650.550000px;}
.x11c_c00451{left:651.600000px;}
.xa4_c00451{left:654.450000px;}
.xd1_c00451{left:656.850000px;}
.xba_c00451{left:659.250000px;}
.x9f_c00451{left:661.650000px;}
.xc9_c00451{left:662.700000px;}
.xa9_c00451{left:664.200000px;}
.x107_c00451{left:666.750000px;}
.xca_c00451{left:669.900000px;}
.x14b_c00451{left:672.900000px;}
.x108_c00451{left:673.950000px;}
.xdd_c00451{left:675.450000px;}
.xcb_c00451{left:677.100000px;}
.x104_c00451{left:678.150000px;}
.xef_c00451{left:679.350000px;}
.x109_c00451{left:680.850000px;}
.xc0_c00451{left:682.950000px;}
.x111_c00451{left:684.000000px;}
.xaa_c00451{left:686.550000px;}
.xe2_c00451{left:688.650000px;}
.x112_c00451{left:690.450000px;}
.x13d_c00451{left:691.650000px;}
.xe9_c00451{left:694.800000px;}
.xab_c00451{left:695.850000px;}
.xcc_c00451{left:697.950000px;}
.x10f_c00451{left:699.600000px;}
.xf0_c00451{left:702.000000px;}
.x10a_c00451{left:703.350000px;}
.xe3_c00451{left:705.900000px;}
.x124_c00451{left:707.550000px;}
.xde_c00451{left:709.350000px;}
.xb3_c00451{left:711.750000px;}
.xac_c00451{left:713.550000px;}
.xf1_c00451{left:716.100000px;}
.xfe_c00451{left:717.750000px;}
.xea_c00451{left:719.250000px;}
.x113_c00451{left:723.150000px;}
.xd2_c00451{left:724.200000px;}
.x128_c00451{left:725.550000px;}
.xa0_c00451{left:727.500000px;}
.xb4_c00451{left:729.450000px;}
.xf2_c00451{left:730.500000px;}
.xd3_c00451{left:732.900000px;}
.x143_c00451{left:734.550000px;}
.xee_c00451{left:738.300000px;}
.x102_c00451{left:739.350000px;}
.xad_c00451{left:741.300000px;}
.x142_c00451{left:742.350000px;}
.x140_c00451{left:743.850000px;}
.xf3_c00451{left:745.500000px;}
.xf9_c00451{left:746.550000px;}
.x12e_c00451{left:748.800000px;}
.xbb_c00451{left:750.000000px;}
.x11d_c00451{left:751.350000px;}
.xb5_c00451{left:755.400000px;}
.x13a_c00451{left:756.900000px;}
.xe4_c00451{left:758.400000px;}
.xfa_c00451{left:760.350000px;}
.x103_c00451{left:761.400000px;}
.x114_c00451{left:763.500000px;}
.xd9_c00451{left:764.550000px;}
.xc1_c00451{left:766.500000px;}
.xa5_c00451{left:768.900000px;}
.xae_c00451{left:770.100000px;}
.xcd_c00451{left:772.050000px;}
.xb6_c00451{left:774.150000px;}
.xff_c00451{left:775.200000px;}
.x10b_c00451{left:776.400000px;}
.xd4_c00451{left:779.700000px;}
.x129_c00451{left:781.650000px;}
.xa1_c00451{left:784.050000px;}
.xdf_c00451{left:785.700000px;}
.x14a_c00451{left:787.950000px;}
.x125_c00451{left:789.300000px;}
.x10c_c00451{left:790.800000px;}
.x105_c00451{left:792.300000px;}
.x145_c00451{left:793.950000px;}
.x121_c00451{left:795.450000px;}
.xc2_c00451{left:796.800000px;}
.x10d_c00451{left:798.000000px;}
.x14c_c00451{left:799.500000px;}
.x118_c00451{left:801.300000px;}
.xd5_c00451{left:802.350000px;}
.x136_c00451{left:803.400000px;}
.x100_c00451{left:804.600000px;}
.x139_c00451{left:806.100000px;}
.xb7_c00451{left:807.300000px;}
.x127_c00451{left:809.400000px;}
.x101_c00451{left:812.100000px;}
.x130_c00451{left:814.800000px;}
.x146_c00451{left:816.300000px;}
.xe5_c00451{left:818.100000px;}
.xbc_c00451{left:820.500000px;}
.x122_c00451{left:822.750000px;}
.xc3_c00451{left:823.800000px;}
.x137_c00451{left:825.000000px;}
.x115_c00451{left:828.150000px;}
.xaf_c00451{left:829.800000px;}
.xf4_c00451{left:830.850000px;}
.xfb_c00451{left:832.350000px;}
.xda_c00451{left:834.450000px;}
.xce_c00451{left:835.500000px;}
.xe6_c00451{left:837.900000px;}
.x13b_c00451{left:840.750000px;}
.x131_c00451{left:841.800000px;}
.xd6_c00451{left:845.550000px;}
.x132_c00451{left:846.900000px;}
.x13e_c00451{left:848.850000px;}
.xe0_c00451{left:850.050000px;}
.xa6_c00451{left:851.400000px;}
.xb8_c00451{left:856.200000px;}
.x11e_c00451{left:858.300000px;}
.xc4_c00451{left:859.800000px;}
.xf5_c00451{left:861.750000px;}
.xfc_c00451{left:863.250000px;}
.xbd_c00451{left:865.200000px;}
.x147_c00451{left:867.750000px;}
.xd7_c00451{left:868.950000px;}
.x126_c00451{left:870.000000px;}
.xc5_c00451{left:872.700000px;}
.x12a_c00451{left:876.300000px;}
.x123_c00451{left:878.850000px;}
.x11f_c00451{left:880.950000px;}
.x119_c00451{left:882.300000px;}
.x12c_c00451{left:885.600000px;}
.x148_c00451{left:887.550000px;}
.xeb_c00451{left:890.100000px;}
.xf6_c00451{left:891.300000px;}
.xe7_c00451{left:892.650000px;}
.xe1_c00451{left:894.000000px;}
.x133_c00451{left:895.200000px;}
.xc6_c00451{left:897.150000px;}
.xcf_c00451{left:901.350000px;}
.xb0_c00451{left:902.550000px;}
.x149_c00451{left:904.050000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls1_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:40.000000pt;}
.ws9_c00451{word-spacing:-66.666667pt;}
.ws14_c00451{word-spacing:-15.902253pt;}
.ws13_c00451{word-spacing:-6.986523pt;}
.ws0_c00451{word-spacing:-4.017467pt;}
.ws12_c00451{word-spacing:-0.867209pt;}
.ws16_c00451{word-spacing:0.000000pt;}
.ws1_c00451{word-spacing:0.273136pt;}
.ws11_c00451{word-spacing:4.157753pt;}
.ws15_c00451{word-spacing:7.171717pt;}
.ws10_c00451{word-spacing:9.296903pt;}
.wsb_c00451{word-spacing:10.555556pt;}
.wsf_c00451{word-spacing:11.239830pt;}
.ws7_c00451{word-spacing:13.333333pt;}
.wse_c00451{word-spacing:13.777778pt;}
.wsa_c00451{word-spacing:14.920635pt;}
.wsd_c00451{word-spacing:16.000000pt;}
.ws8_c00451{word-spacing:16.111111pt;}
.ws6_c00451{word-spacing:19.682540pt;}
.ws5_c00451{word-spacing:20.277778pt;}
.ws3_c00451{word-spacing:22.326648pt;}
.wsc_c00451{word-spacing:22.857143pt;}
.ws4_c00451{word-spacing:25.267760pt;}
.ws2_c00451{word-spacing:38.888889pt;}
._6_c00451{margin-left:-40.000000pt;}
._1_c00451{width:32.182193pt;}
._3_c00451{width:37.222222pt;}
._0_c00451{width:40.873362pt;}
._4_c00451{width:42.777778pt;}
._5_c00451{width:46.944444pt;}
._2_c00451{width:49.722222pt;}
._7_c00451{width:57.460317pt;}
.fs6_c00451{font-size:37.333333pt;}
.fs5_c00451{font-size:48.000000pt;}
.fs4_c00451{font-size:53.333333pt;}
.fs3_c00451{font-size:58.666667pt;}
.fs2_c00451{font-size:64.000000pt;}
.fs1_c00451{font-size:74.666667pt;}
.fs0_c00451{font-size:85.333333pt;}
.y0_c00451{bottom:0.000000pt;}
.y6b_c00451{bottom:155.866667pt;}
.y6a_c00451{bottom:166.800000pt;}
.y34_c00451{bottom:171.466667pt;}
.y69_c00451{bottom:183.466667pt;}
.y33_c00451{bottom:184.933333pt;}
.y32_c00451{bottom:198.000000pt;}
.y68_c00451{bottom:199.200000pt;}
.y31_c00451{bottom:209.866667pt;}
.y67_c00451{bottom:214.933333pt;}
.y30_c00451{bottom:222.400000pt;}
.y66_c00451{bottom:230.666667pt;}
.y2f_c00451{bottom:234.933333pt;}
.y65_c00451{bottom:246.666667pt;}
.y2e_c00451{bottom:247.066667pt;}
.y64_c00451{bottom:262.933333pt;}
.y63_c00451{bottom:278.666667pt;}
.y62_c00451{bottom:294.400000pt;}
.y2d_c00451{bottom:302.933333pt;}
.y61_c00451{bottom:310.133333pt;}
.y2c_c00451{bottom:318.266667pt;}
.y60_c00451{bottom:329.733333pt;}
.y2b_c00451{bottom:334.000000pt;}
.y5f_c00451{bottom:346.000000pt;}
.y2a_c00451{bottom:349.733333pt;}
.y5e_c00451{bottom:362.000000pt;}
.y29_c00451{bottom:365.466667pt;}
.y5d_c00451{bottom:378.266667pt;}
.y28_c00451{bottom:381.733333pt;}
.y5c_c00451{bottom:394.000000pt;}
.y27_c00451{bottom:397.466667pt;}
.y5b_c00451{bottom:409.333333pt;}
.y35_c00451{bottom:409.866667pt;}
.y26_c00451{bottom:413.466667pt;}
.y25_c00451{bottom:429.200000pt;}
.y5a_c00451{bottom:429.866667pt;}
.y24_c00451{bottom:445.466667pt;}
.y59_c00451{bottom:446.133333pt;}
.y23_c00451{bottom:461.066667pt;}
.y58_c00451{bottom:462.133333pt;}
.y57_c00451{bottom:478.133333pt;}
.y22_c00451{bottom:486.000000pt;}
.y56_c00451{bottom:493.466667pt;}
.y21_c00451{bottom:502.000000pt;}
.y55_c00451{bottom:509.466667pt;}
.y20_c00451{bottom:518.000000pt;}
.y54_c00451{bottom:525.733333pt;}
.y1f_c00451{bottom:533.733333pt;}
.y53_c00451{bottom:541.733333pt;}
.y1e_c00451{bottom:549.733333pt;}
.y52_c00451{bottom:557.733333pt;}
.y1d_c00451{bottom:565.466667pt;}
.y51_c00451{bottom:573.733333pt;}
.y1c_c00451{bottom:581.466667pt;}
.y50_c00451{bottom:589.466667pt;}
.y1b_c00451{bottom:597.466667pt;}
.y4f_c00451{bottom:607.733333pt;}
.y1a_c00451{bottom:613.466667pt;}
.y4e_c00451{bottom:621.200000pt;}
.y19_c00451{bottom:629.466667pt;}
.y4d_c00451{bottom:633.600000pt;}
.y4c_c00451{bottom:646.266667pt;}
.y18_c00451{bottom:653.466667pt;}
.y4b_c00451{bottom:659.733333pt;}
.y17_c00451{bottom:669.466667pt;}
.y4a_c00451{bottom:672.266667pt;}
.y49_c00451{bottom:685.200000pt;}
.y16_c00451{bottom:688.800000pt;}
.y48_c00451{bottom:698.266667pt;}
.y15_c00451{bottom:704.800000pt;}
.y47_c00451{bottom:711.066667pt;}
.y14_c00451{bottom:720.800000pt;}
.y46_c00451{bottom:723.866667pt;}
.y13_c00451{bottom:736.533333pt;}
.y45_c00451{bottom:736.666667pt;}
.y44_c00451{bottom:749.733333pt;}
.y12_c00451{bottom:752.533333pt;}
.y43_c00451{bottom:762.933333pt;}
.y11_c00451{bottom:768.533333pt;}
.y42_c00451{bottom:780.533333pt;}
.y10_c00451{bottom:784.266667pt;}
.y41_c00451{bottom:796.800000pt;}
.yf_c00451{bottom:800.266667pt;}
.y40_c00451{bottom:812.533333pt;}
.ye_c00451{bottom:816.266667pt;}
.y3f_c00451{bottom:828.533333pt;}
.yd_c00451{bottom:832.266667pt;}
.yc_c00451{bottom:848.266667pt;}
.y3e_c00451{bottom:852.266667pt;}
.yb_c00451{bottom:864.266667pt;}
.y3d_c00451{bottom:868.266667pt;}
.ya_c00451{bottom:880.266667pt;}
.y3c_c00451{bottom:884.266667pt;}
.y9_c00451{bottom:896.266667pt;}
.y3b_c00451{bottom:900.533333pt;}
.y8_c00451{bottom:912.266667pt;}
.y3a_c00451{bottom:915.866667pt;}
.y7_c00451{bottom:928.000000pt;}
.y39_c00451{bottom:932.133333pt;}
.y6_c00451{bottom:944.000000pt;}
.y38_c00451{bottom:948.133333pt;}
.y5_c00451{bottom:960.000000pt;}
.y37_c00451{bottom:971.866667pt;}
.y4_c00451{bottom:976.000000pt;}
.y36_c00451{bottom:987.466667pt;}
.y3_c00451{bottom:992.000000pt;}
.y1_c00451{bottom:1015.066667pt;}
.y2_c00451{bottom:1015.733333pt;}
.h8_c00451{height:37.333333pt;}
.h7_c00451{height:48.000000pt;}
.h6_c00451{height:53.333333pt;}
.h5_c00451{height:58.666667pt;}
.h4_c00451{height:64.000000pt;}
.h3_c00451{height:74.666667pt;}
.h2_c00451{height:85.333333pt;}
.h1_c00451{height:1126.666667pt;}
.h0_c00451{height:1126.719971pt;}
.w0_c00451{width:851.840007pt;}
.w1_c00451{width:852.000000pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:181.733333pt;}
.x5f_c00451{left:184.000000pt;}
.x78_c00451{left:186.266667pt;}
.x94_c00451{left:189.333333pt;}
.x3_c00451{left:198.400000pt;}
.x13_c00451{left:199.600000pt;}
.x68_c00451{left:200.933333pt;}
.x71_c00451{left:202.533333pt;}
.x90_c00451{left:203.733333pt;}
.x5c_c00451{left:216.666667pt;}
.x43_c00451{left:219.600000pt;}
.x73_c00451{left:221.866667pt;}
.x57_c00451{left:223.066667pt;}
.x9b_c00451{left:225.600000pt;}
.x19_c00451{left:228.400000pt;}
.x8b_c00451{left:229.466667pt;}
.x2b_c00451{left:230.533333pt;}
.x95_c00451{left:232.533333pt;}
.x39_c00451{left:233.600000pt;}
.x3f_c00451{left:235.733333pt;}
.x35_c00451{left:237.333333pt;}
.x60_c00451{left:239.066667pt;}
.x4d_c00451{left:241.333333pt;}
.x74_c00451{left:242.933333pt;}
.x3a_c00451{left:243.866667pt;}
.x63_c00451{left:245.200000pt;}
.x79_c00451{left:246.133333pt;}
.x4c_c00451{left:247.200000pt;}
.xe_c00451{left:248.266667pt;}
.x7e_c00451{left:251.200000pt;}
.x27_c00451{left:252.533333pt;}
.x36_c00451{left:254.666667pt;}
.x2f_c00451{left:255.733333pt;}
.x8c_c00451{left:256.933333pt;}
.x86_c00451{left:258.000000pt;}
.x14_c00451{left:259.466667pt;}
.x4_c00451{left:261.066667pt;}
.x1a_c00451{left:263.600000pt;}
.x21_c00451{left:266.800000pt;}
.x5d_c00451{left:267.866667pt;}
.x7a_c00451{left:269.466667pt;}
.x3b_c00451{left:271.066667pt;}
.x64_c00451{left:272.400000pt;}
.x7f_c00451{left:273.333333pt;}
.x37_c00451{left:275.466667pt;}
.x22_c00451{left:276.400000pt;}
.x83_c00451{left:280.533333pt;}
.x44_c00451{left:281.600000pt;}
.x69_c00451{left:282.933333pt;}
.x50_c00451{left:283.866667pt;}
.x91_c00451{left:284.933333pt;}
.x2c_c00451{left:285.866667pt;}
.x58_c00451{left:288.666667pt;}
.x23_c00451{left:290.533333pt;}
.xf_c00451{left:292.400000pt;}
.x82_c00451{left:295.600000pt;}
.x4e_c00451{left:297.600000pt;}
.x2d_c00451{left:301.200000pt;}
.x15_c00451{left:305.600000pt;}
.x5_c00451{left:306.533333pt;}
.x59_c00451{left:307.600000pt;}
.x1b_c00451{left:308.666667pt;}
.x28_c00451{left:310.133333pt;}
.x5e_c00451{left:312.266667pt;}
.x40_c00451{left:314.133333pt;}
.x30_c00451{left:315.866667pt;}
.x3c_c00451{left:317.066667pt;}
.x8f_c00451{left:320.133333pt;}
.x51_c00451{left:321.333333pt;}
.x24_c00451{left:322.533333pt;}
.x98_c00451{left:323.600000pt;}
.x1c_c00451{left:325.333333pt;}
.x67_c00451{left:328.000000pt;}
.x87_c00451{left:329.066667pt;}
.x80_c00451{left:330.266667pt;}
.x84_c00451{left:332.666667pt;}
.x31_c00451{left:333.733333pt;}
.xa_c00451{left:335.866667pt;}
.x61_c00451{left:337.066667pt;}
.x65_c00451{left:338.400000pt;}
.x10_c00451{left:339.733333pt;}
.x6_c00451{left:340.800000pt;}
.x6a_c00451{left:342.400000pt;}
.x48_c00451{left:343.466667pt;}
.x5a_c00451{left:346.000000pt;}
.x97_c00451{left:347.600000pt;}
.x81_c00451{left:348.800000pt;}
.x76_c00451{left:350.666667pt;}
.x2e_c00451{left:352.133333pt;}
.x52_c00451{left:354.400000pt;}
.x92_c00451{left:355.466667pt;}
.x55_c00451{left:358.000000pt;}
.x49_c00451{left:361.733333pt;}
.x96_c00451{left:364.133333pt;}
.x5b_c00451{left:365.200000pt;}
.x16_c00451{left:366.400000pt;}
.x45_c00451{left:368.000000pt;}
.x77_c00451{left:368.933333pt;}
.x29_c00451{left:372.533333pt;}
.x41_c00451{left:375.866667pt;}
.x1d_c00451{left:377.466667pt;}
.x56_c00451{left:380.133333pt;}
.x6b_c00451{left:381.466667pt;}
.x66_c00451{left:383.200000pt;}
.x38_c00451{left:385.866667pt;}
.x7b_c00451{left:388.533333pt;}
.x6f_c00451{left:389.866667pt;}
.x25_c00451{left:391.066667pt;}
.x7_c00451{left:392.266667pt;}
.x1e_c00451{left:395.733333pt;}
.xb_c00451{left:396.666667pt;}
.x11_c00451{left:399.200000pt;}
.x4a_c00451{left:400.800000pt;}
.x46_c00451{left:402.933333pt;}
.x2_c00451{left:405.466667pt;}
.x88_c00451{left:407.200000pt;}
.x32_c00451{left:408.666667pt;}
.x7c_c00451{left:410.266667pt;}
.x53_c00451{left:412.400000pt;}
.x4f_c00451{left:413.466667pt;}
.x75_c00451{left:414.533333pt;}
.x2a_c00451{left:415.466667pt;}
.xc_c00451{left:416.533333pt;}
.x3d_c00451{left:418.000000pt;}
.x47_c00451{left:421.200000pt;}
.x72_c00451{left:422.266667pt;}
.x8_c00451{left:424.000000pt;}
.x6c_c00451{left:425.333333pt;}
.x8d_c00451{left:427.466667pt;}
.x33_c00451{left:428.800000pt;}
.x54_c00451{left:431.333333pt;}
.x6d_c00451{left:432.533333pt;}
.x4b_c00451{left:434.000000pt;}
.x93_c00451{left:436.800000pt;}
.x12_c00451{left:438.933333pt;}
.x1f_c00451{left:441.466667pt;}
.x89_c00451{left:443.333333pt;}
.x9a_c00451{left:444.666667pt;}
.x42_c00451{left:448.800000pt;}
.x8a_c00451{left:450.533333pt;}
.x70_c00451{left:451.866667pt;}
.x17_c00451{left:454.666667pt;}
.x9_c00451{left:456.666667pt;}
.x34_c00451{left:459.466667pt;}
.x26_c00451{left:460.533333pt;}
.x18_c00451{left:462.000000pt;}
.x99_c00451{left:464.133333pt;}
.x20_c00451{left:468.400000pt;}
.xd_c00451{left:469.333333pt;}
.x9c_c00451{left:470.533333pt;}
.x6e_c00451{left:471.866667pt;}
.x7d_c00451{left:472.933333pt;}
.x62_c00451{left:474.666667pt;}
.x85_c00451{left:476.800000pt;}
.x3e_c00451{left:479.466667pt;}
.x8e_c00451{left:482.133333pt;}
.xa2_c00451{left:501.466667pt;}
.x11b_c00451{left:503.066667pt;}
.x9d_c00451{left:504.000000pt;}
.x141_c00451{left:504.933333pt;}
.xec_c00451{left:513.866667pt;}
.xa7_c00451{left:515.200000pt;}
.x11a_c00451{left:516.133333pt;}
.xb1_c00451{left:517.466667pt;}
.x120_c00451{left:518.666667pt;}
.x12d_c00451{left:519.733333pt;}
.x13f_c00451{left:520.800000pt;}
.x144_c00451{left:521.733333pt;}
.xf7_c00451{left:527.600000pt;}
.x116_c00451{left:528.666667pt;}
.x13c_c00451{left:530.800000pt;}
.xa8_c00451{left:533.066667pt;}
.x117_c00451{left:536.933333pt;}
.xbe_c00451{left:538.666667pt;}
.xd8_c00451{left:540.800000pt;}
.xc7_c00451{left:542.666667pt;}
.xa3_c00451{left:544.666667pt;}
.xf8_c00451{left:547.066667pt;}
.xd0_c00451{left:549.600000pt;}
.x12b_c00451{left:551.466667pt;}
.xdb_c00451{left:553.600000pt;}
.xb2_c00451{left:554.933333pt;}
.xe8_c00451{left:556.533333pt;}
.x9e_c00451{left:559.066667pt;}
.x134_c00451{left:560.266667pt;}
.x110_c00451{left:562.533333pt;}
.x10e_c00451{left:564.000000pt;}
.xc8_c00451{left:565.066667pt;}
.xbf_c00451{left:566.133333pt;}
.xed_c00451{left:567.333333pt;}
.xfd_c00451{left:569.333333pt;}
.x135_c00451{left:570.800000pt;}
.x12f_c00451{left:571.866667pt;}
.x106_c00451{left:573.733333pt;}
.x138_c00451{left:574.800000pt;}
.xb9_c00451{left:576.133333pt;}
.xdc_c00451{left:578.266667pt;}
.x11c_c00451{left:579.200000pt;}
.xa4_c00451{left:581.733333pt;}
.xd1_c00451{left:583.866667pt;}
.xba_c00451{left:586.000000pt;}
.x9f_c00451{left:588.133333pt;}
.xc9_c00451{left:589.066667pt;}
.xa9_c00451{left:590.400000pt;}
.x107_c00451{left:592.666667pt;}
.xca_c00451{left:595.466667pt;}
.x14b_c00451{left:598.133333pt;}
.x108_c00451{left:599.066667pt;}
.xdd_c00451{left:600.400000pt;}
.xcb_c00451{left:601.866667pt;}
.x104_c00451{left:602.800000pt;}
.xef_c00451{left:603.866667pt;}
.x109_c00451{left:605.200000pt;}
.xc0_c00451{left:607.066667pt;}
.x111_c00451{left:608.000000pt;}
.xaa_c00451{left:610.266667pt;}
.xe2_c00451{left:612.133333pt;}
.x112_c00451{left:613.733333pt;}
.x13d_c00451{left:614.800000pt;}
.xe9_c00451{left:617.600000pt;}
.xab_c00451{left:618.533333pt;}
.xcc_c00451{left:620.400000pt;}
.x10f_c00451{left:621.866667pt;}
.xf0_c00451{left:624.000000pt;}
.x10a_c00451{left:625.200000pt;}
.xe3_c00451{left:627.466667pt;}
.x124_c00451{left:628.933333pt;}
.xde_c00451{left:630.533333pt;}
.xb3_c00451{left:632.666667pt;}
.xac_c00451{left:634.266667pt;}
.xf1_c00451{left:636.533333pt;}
.xfe_c00451{left:638.000000pt;}
.xea_c00451{left:639.333333pt;}
.x113_c00451{left:642.800000pt;}
.xd2_c00451{left:643.733333pt;}
.x128_c00451{left:644.933333pt;}
.xa0_c00451{left:646.666667pt;}
.xb4_c00451{left:648.400000pt;}
.xf2_c00451{left:649.333333pt;}
.xd3_c00451{left:651.466667pt;}
.x143_c00451{left:652.933333pt;}
.xee_c00451{left:656.266667pt;}
.x102_c00451{left:657.200000pt;}
.xad_c00451{left:658.933333pt;}
.x142_c00451{left:659.866667pt;}
.x140_c00451{left:661.200000pt;}
.xf3_c00451{left:662.666667pt;}
.xf9_c00451{left:663.600000pt;}
.x12e_c00451{left:665.600000pt;}
.xbb_c00451{left:666.666667pt;}
.x11d_c00451{left:667.866667pt;}
.xb5_c00451{left:671.466667pt;}
.x13a_c00451{left:672.800000pt;}
.xe4_c00451{left:674.133333pt;}
.xfa_c00451{left:675.866667pt;}
.x103_c00451{left:676.800000pt;}
.x114_c00451{left:678.666667pt;}
.xd9_c00451{left:679.600000pt;}
.xc1_c00451{left:681.333333pt;}
.xa5_c00451{left:683.466667pt;}
.xae_c00451{left:684.533333pt;}
.xcd_c00451{left:686.266667pt;}
.xb6_c00451{left:688.133333pt;}
.xff_c00451{left:689.066667pt;}
.x10b_c00451{left:690.133333pt;}
.xd4_c00451{left:693.066667pt;}
.x129_c00451{left:694.800000pt;}
.xa1_c00451{left:696.933333pt;}
.xdf_c00451{left:698.400000pt;}
.x14a_c00451{left:700.400000pt;}
.x125_c00451{left:701.600000pt;}
.x10c_c00451{left:702.933333pt;}
.x105_c00451{left:704.266667pt;}
.x145_c00451{left:705.733333pt;}
.x121_c00451{left:707.066667pt;}
.xc2_c00451{left:708.266667pt;}
.x10d_c00451{left:709.333333pt;}
.x14c_c00451{left:710.666667pt;}
.x118_c00451{left:712.266667pt;}
.xd5_c00451{left:713.200000pt;}
.x136_c00451{left:714.133333pt;}
.x100_c00451{left:715.200000pt;}
.x139_c00451{left:716.533333pt;}
.xb7_c00451{left:717.600000pt;}
.x127_c00451{left:719.466667pt;}
.x101_c00451{left:721.866667pt;}
.x130_c00451{left:724.266667pt;}
.x146_c00451{left:725.600000pt;}
.xe5_c00451{left:727.200000pt;}
.xbc_c00451{left:729.333333pt;}
.x122_c00451{left:731.333333pt;}
.xc3_c00451{left:732.266667pt;}
.x137_c00451{left:733.333333pt;}
.x115_c00451{left:736.133333pt;}
.xaf_c00451{left:737.600000pt;}
.xf4_c00451{left:738.533333pt;}
.xfb_c00451{left:739.866667pt;}
.xda_c00451{left:741.733333pt;}
.xce_c00451{left:742.666667pt;}
.xe6_c00451{left:744.800000pt;}
.x13b_c00451{left:747.333333pt;}
.x131_c00451{left:748.266667pt;}
.xd6_c00451{left:751.600000pt;}
.x132_c00451{left:752.800000pt;}
.x13e_c00451{left:754.533333pt;}
.xe0_c00451{left:755.600000pt;}
.xa6_c00451{left:756.800000pt;}
.xb8_c00451{left:761.066667pt;}
.x11e_c00451{left:762.933333pt;}
.xc4_c00451{left:764.266667pt;}
.xf5_c00451{left:766.000000pt;}
.xfc_c00451{left:767.333333pt;}
.xbd_c00451{left:769.066667pt;}
.x147_c00451{left:771.333333pt;}
.xd7_c00451{left:772.400000pt;}
.x126_c00451{left:773.333333pt;}
.xc5_c00451{left:775.733333pt;}
.x12a_c00451{left:778.933333pt;}
.x123_c00451{left:781.200000pt;}
.x11f_c00451{left:783.066667pt;}
.x119_c00451{left:784.266667pt;}
.x12c_c00451{left:787.200000pt;}
.x148_c00451{left:788.933333pt;}
.xeb_c00451{left:791.200000pt;}
.xf6_c00451{left:792.266667pt;}
.xe7_c00451{left:793.466667pt;}
.xe1_c00451{left:794.666667pt;}
.x133_c00451{left:795.733333pt;}
.xc6_c00451{left:797.466667pt;}
.xcf_c00451{left:801.200000pt;}
.xb0_c00451{left:802.266667pt;}
.x149_c00451{left:803.600000pt;}
}





/* 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_c00452 {
    display:none;
  }
  .loading-indicator_c00452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00452 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_c00452 { 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_c00452" -> "#page-container .classname_c00452")
 */
.pf_c00452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00452 { /* 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_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00452 { /* 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_c00452 { /* 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_c00452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00452 {overflow:visible;}
  }
}
.c_c00452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00452 { /* 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_c00452:after { /* webkit #35443 */
  content: '';
}
.t_c00452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00452 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 */
}
.__c00452 { /* 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_c00452 { /* info for Javascript */
  display:none;
}
.l_c00452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00452: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_c00452 {
    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_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00452.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_c00452 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00452;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.000000;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;}
.ma_c00452{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m120_c00452{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m12_c00452{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m9_c00452{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00452{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m57_c00452{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me2_c00452{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m55_c00452{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00452{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m56_c00452{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m24_c00452{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m6_c00452{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00452{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00452{transform:matrix(0.104750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00452{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mab_c00452{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m61_c00452{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00452{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m67_c00452{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m52_c00452{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.maf_c00452{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00452{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m51_c00452{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m32_c00452{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m54_c00452{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me9_c00452{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m50_c00452{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00452{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00452{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00452{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00452{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mc_c00452{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mff_c00452{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00452{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.me3_c00452{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00452{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m88_c00452{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00452{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mf_c00452{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m109_c00452{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m49_c00452{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00452{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00452{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00452{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mba_c00452{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00452{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m27_c00452{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m87_c00452{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00452{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m73_c00452{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m74_c00452{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m36_c00452{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00452{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m113_c00452{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m92_c00452{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00452{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00452{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00452{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m28_c00452{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m129_c00452{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00452{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00452{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00452{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m35_c00452{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m69_c00452{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m78_c00452{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00452{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m68_c00452{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00452{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00452{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m22_c00452{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00452{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m104_c00452{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00452{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00452{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m91_c00452{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m11_c00452{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00452{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00452{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m71_c00452{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00452{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.md8_c00452{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m29_c00452{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m99_c00452{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00452{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m89_c00452{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m122_c00452{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00452{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00452{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m103_c00452{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m84_c00452{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m64_c00452{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00452{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00452{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mee_c00452{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.md2_c00452{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m14_c00452{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m3_c00452{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10_c00452{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00452{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m13_c00452{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00452{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00452{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m81_c00452{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m70_c00452{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m21_c00452{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00452{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00452{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m45_c00452{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.me_c00452{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00452{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m44_c00452{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00452{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m106_c00452{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00452{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.md3_c00452{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m62_c00452{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m116_c00452{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m47_c00452{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me1_c00452{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m18_c00452{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m40_c00452{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m46_c00452{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00452{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m42_c00452{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md4_c00452{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m112_c00452{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00452{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00452{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m128_c00452{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7_c00452{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00452{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00452{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m20_c00452{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m30_c00452{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m66_c00452{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m101_c00452{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m41_c00452{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00452{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m96_c00452{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m65_c00452{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00452{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md7_c00452{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.md6_c00452{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m34_c00452{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m124_c00452{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m60_c00452{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mac_c00452{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00452{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mae_c00452{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m43_c00452{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m2_c00452{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m39_c00452{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00452{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00452{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00452{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00452{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m63_c00452{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00452{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m95_c00452{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m121_c00452{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00452{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m125_c00452{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00452{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00452{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mb_c00452{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m98_c00452{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mec_c00452{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m85_c00452{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00452{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00452{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00452{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00452{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m82_c00452{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00452{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m17_c00452{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m102_c00452{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m23_c00452{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00452{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00452{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00452{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m123_c00452{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00452{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00452{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m97_c00452{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m26_c00452{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00452{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00452{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00452{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00452{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00452{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00452{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00452{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8_c00452{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00452{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00452{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m90_c00452{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m115_c00452{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m105_c00452{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00452{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m72_c00452{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00452{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00452{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00452{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m76_c00452{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00452{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00452{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m114_c00452{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m100_c00452{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00452{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00452{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00452{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00452{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m33_c00452{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mad_c00452{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m107_c00452{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m48_c00452{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.med_c00452{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m126_c00452{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m16_c00452{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00452{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md_c00452{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m53_c00452{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m93_c00452{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00452{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00452{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mea_c00452{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00452{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mca_c00452{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00452{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m31_c00452{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m117_c00452{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m83_c00452{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m38_c00452{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mce_c00452{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.maa_c00452{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00452{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m110_c00452{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00452{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m111_c00452{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m80_c00452{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00452{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00452{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00452{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00452{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00452{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m119_c00452{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00452{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4_c00452{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m77_c00452{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00452{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00452{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m127_c00452{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m15_c00452{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00452{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00452{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mde_c00452{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00452{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.md1_c00452{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m108_c00452{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00452{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00452{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00452{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00452{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m118_c00452{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00452{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m5_c00452{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m79_c00452{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00452{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00452{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m58_c00452{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m59_c00452{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00452{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00452{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me0_c00452{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m37_c00452{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m75_c00452{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00452{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00452{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m94_c00452{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.md5_c00452{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mef_c00452{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m25_c00452{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.me4_c00452{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00452{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mda_c00452{transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);}
.md9_c00452{transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);}
.me8_c00452{transform:matrix(0.408500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408500,0.000000,0.000000,0.250000,0,0);}
.md0_c00452{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.meb_c00452{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.me5_c00452{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m0_c00452{transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00452{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m19_c00452{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m86_c00452{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.me6_c00452{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.me7_c00452{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls0_c00452{letter-spacing:0.000000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{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__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00452{word-spacing:-6.903780px;}
.ws3_c00452{word-spacing:-6.704545px;}
.ws7_c00452{word-spacing:0.000000px;}
.ws5_c00452{word-spacing:5.507937px;}
.ws4_c00452{word-spacing:12.828054px;}
.ws6_c00452{word-spacing:21.000000px;}
.ws0_c00452{word-spacing:22.549618px;}
.ws1_c00452{word-spacing:53.966261px;}
.fc0_c00452{color:transparent;}
.fs7_c00452{font-size:30.000000px;}
.fs9_c00452{font-size:36.000000px;}
.fsa_c00452{font-size:42.000000px;}
.fs5_c00452{font-size:48.000000px;}
.fs6_c00452{font-size:54.000000px;}
.fs4_c00452{font-size:60.000000px;}
.fs3_c00452{font-size:66.000000px;}
.fs2_c00452{font-size:72.000000px;}
.fs0_c00452{font-size:78.000000px;}
.fs1_c00452{font-size:96.000000px;}
.fs8_c00452{font-size:102.000000px;}
.y0_c00452{bottom:0.000000px;}
.y69_c00452{bottom:172.050000px;}
.y32_c00452{bottom:187.200000px;}
.y68_c00452{bottom:187.950000px;}
.y67_c00452{bottom:202.650000px;}
.y31_c00452{bottom:209.700000px;}
.y66_c00452{bottom:217.050000px;}
.y30_c00452{bottom:228.450000px;}
.y65_c00452{bottom:231.750000px;}
.y64_c00452{bottom:246.150000px;}
.y2f_c00452{bottom:246.450000px;}
.y63_c00452{bottom:260.250000px;}
.y2e_c00452{bottom:264.450000px;}
.y62_c00452{bottom:274.800000px;}
.y2d_c00452{bottom:281.700000px;}
.y61_c00452{bottom:289.200000px;}
.y2c_c00452{bottom:299.700000px;}
.y60_c00452{bottom:303.900000px;}
.y2b_c00452{bottom:317.400000px;}
.y5f_c00452{bottom:318.000000px;}
.y5e_c00452{bottom:332.700000px;}
.y2a_c00452{bottom:335.100000px;}
.y5d_c00452{bottom:346.500000px;}
.y29_c00452{bottom:360.300000px;}
.y5c_c00452{bottom:361.200000px;}
.y5b_c00452{bottom:375.600000px;}
.y28_c00452{bottom:383.850000px;}
.y5a_c00452{bottom:390.300000px;}
.y27_c00452{bottom:402.900000px;}
.y26_c00452{bottom:420.750000px;}
.y59_c00452{bottom:429.750000px;}
.y25_c00452{bottom:438.750000px;}
.y58_c00452{bottom:447.450000px;}
.y24_c00452{bottom:456.450000px;}
.y57_c00452{bottom:465.150000px;}
.y23_c00452{bottom:481.350000px;}
.y56_c00452{bottom:483.150000px;}
.y22_c00452{bottom:500.700000px;}
.y55_c00452{bottom:501.150000px;}
.y21_c00452{bottom:518.400000px;}
.y54_c00452{bottom:519.000000px;}
.y20_c00452{bottom:536.700000px;}
.y53_c00452{bottom:537.000000px;}
.y52_c00452{bottom:554.700000px;}
.y1f_c00452{bottom:556.800000px;}
.y51_c00452{bottom:572.700000px;}
.y1e_c00452{bottom:576.300000px;}
.y50_c00452{bottom:590.400000px;}
.y1d_c00452{bottom:606.600000px;}
.y4f_c00452{bottom:612.000000px;}
.y1c_c00452{bottom:632.850000px;}
.y4e_c00452{bottom:634.650000px;}
.y4d_c00452{bottom:656.250000px;}
.y1b_c00452{bottom:659.400000px;}
.y4c_c00452{bottom:674.250000px;}
.y1a_c00452{bottom:677.400000px;}
.y19_c00452{bottom:695.400000px;}
.y4b_c00452{bottom:695.550000px;}
.y18_c00452{bottom:713.100000px;}
.y4a_c00452{bottom:714.300000px;}
.y17_c00452{bottom:731.100000px;}
.y49_c00452{bottom:736.200000px;}
.y16_c00452{bottom:748.800000px;}
.y48_c00452{bottom:753.900000px;}
.y15_c00452{bottom:766.800000px;}
.y47_c00452{bottom:771.900000px;}
.y46_c00452{bottom:791.250000px;}
.y14_c00452{bottom:793.200000px;}
.y45_c00452{bottom:798.150000px;}
.y44_c00452{bottom:800.250000px;}
.y43_c00452{bottom:807.150000px;}
.y13_c00452{bottom:807.600000px;}
.y42_c00452{bottom:818.250000px;}
.y12_c00452{bottom:822.000000px;}
.y41_c00452{bottom:826.950000px;}
.y11_c00452{bottom:833.850000px;}
.y10_c00452{bottom:850.350000px;}
.y40_c00452{bottom:853.500000px;}
.yf_c00452{bottom:863.250000px;}
.y3f_c00452{bottom:871.200000px;}
.ye_c00452{bottom:880.950000px;}
.yd_c00452{bottom:899.700000px;}
.y3e_c00452{bottom:905.700000px;}
.yc_c00452{bottom:917.700000px;}
.yb_c00452{bottom:935.700000px;}
.y3d_c00452{bottom:936.450000px;}
.y3c_c00452{bottom:954.450000px;}
.ya_c00452{bottom:961.350000px;}
.y3b_c00452{bottom:972.150000px;}
.y9_c00452{bottom:979.350000px;}
.y39_c00452{bottom:979.950000px;}
.y3a_c00452{bottom:986.850000px;}
.y38_c00452{bottom:989.700000px;}
.y8_c00452{bottom:997.350000px;}
.y7_c00452{bottom:1014.600000px;}
.y37_c00452{bottom:1018.500000px;}
.y6_c00452{bottom:1032.900000px;}
.y36_c00452{bottom:1045.350000px;}
.y5_c00452{bottom:1050.150000px;}
.y35_c00452{bottom:1063.350000px;}
.y4_c00452{bottom:1068.150000px;}
.y34_c00452{bottom:1081.050000px;}
.y3_c00452{bottom:1092.150000px;}
.y2_c00452{bottom:1111.650000px;}
.y33_c00452{bottom:1112.100000px;}
.y1_c00452{bottom:1139.100000px;}
.h9_c00452{height:30.000000px;}
.hb_c00452{height:36.000000px;}
.hc_c00452{height:42.000000px;}
.h7_c00452{height:48.000000px;}
.h8_c00452{height:54.000000px;}
.h6_c00452{height:60.000000px;}
.h5_c00452{height:66.000000px;}
.h4_c00452{height:72.000000px;}
.h2_c00452{height:78.000000px;}
.h3_c00452{height:96.000000px;}
.ha_c00452{height:102.000000px;}
.h0_c00452{height:1267.919952px;}
.h1_c00452{height:1268.250000px;}
.w0_c00452{width:958.320007px;}
.w1_c00452{width:958.500000px;}
.x0_c00452{left:0.000000px;}
.x37_c00452{left:79.200000px;}
.x3_c00452{left:80.250000px;}
.x70_c00452{left:82.500000px;}
.x8a_c00452{left:83.550000px;}
.x15_c00452{left:89.700000px;}
.x22_c00452{left:97.650000px;}
.x9_c00452{left:99.450000px;}
.x32_c00452{left:101.250000px;}
.x9c_c00452{left:102.450000px;}
.xb_c00452{left:104.100000px;}
.x53_c00452{left:110.100000px;}
.x7c_c00452{left:112.050000px;}
.xc_c00452{left:117.750000px;}
.x60_c00452{left:120.300000px;}
.x3c_c00452{left:123.300000px;}
.x38_c00452{left:124.500000px;}
.x7f_c00452{left:126.000000px;}
.x7d_c00452{left:127.500000px;}
.x4_c00452{left:128.550000px;}
.x1b_c00452{left:130.050000px;}
.x16_c00452{left:132.600000px;}
.x3d_c00452{left:135.600000px;}
.x96_c00452{left:137.100000px;}
.x69_c00452{left:138.300000px;}
.x71_c00452{left:140.850000px;}
.x89_c00452{left:141.900000px;}
.x6e_c00452{left:143.400000px;}
.x4e_c00452{left:144.750000px;}
.x29_c00452{left:148.500000px;}
.x49_c00452{left:150.600000px;}
.x44_c00452{left:153.300000px;}
.x1c_c00452{left:156.000000px;}
.x66_c00452{left:158.400000px;}
.x7e_c00452{left:161.400000px;}
.x5_c00452{left:163.800000px;}
.x23_c00452{left:165.750000px;}
.x59_c00452{left:167.850000px;}
.x4a_c00452{left:170.100000px;}
.x87_c00452{left:172.500000px;}
.x5d_c00452{left:174.600000px;}
.x3e_c00452{left:175.950000px;}
.x82_c00452{left:178.650000px;}
.x9d_c00452{left:180.150000px;}
.x76_c00452{left:182.250000px;}
.xd_c00452{left:184.050000px;}
.x97_c00452{left:186.450000px;}
.x8e_c00452{left:187.800000px;}
.x39_c00452{left:190.050000px;}
.x2a_c00452{left:191.400000px;}
.x80_c00452{left:193.650000px;}
.x79_c00452{left:195.450000px;}
.x45_c00452{left:196.500000px;}
.x3f_c00452{left:197.550000px;}
.x91_c00452{left:201.900000px;}
.x17_c00452{left:203.850000px;}
.x67_c00452{left:205.500000px;}
.xe_c00452{left:207.750000px;}
.x61_c00452{left:210.000000px;}
.x72_c00452{left:211.350000px;}
.x83_c00452{left:214.650000px;}
.x77_c00452{left:220.350000px;}
.x5a_c00452{left:222.150000px;}
.x33_c00452{left:223.650000px;}
.x65_c00452{left:225.750000px;}
.x2f_c00452{left:226.950000px;}
.x4f_c00452{left:228.150000px;}
.x92_c00452{left:229.650000px;}
.x55_c00452{left:231.000000px;}
.x1d_c00452{left:233.700000px;}
.x2b_c00452{left:235.650000px;}
.xf_c00452{left:238.650000px;}
.x3a_c00452{left:240.150000px;}
.x24_c00452{left:243.450000px;}
.x56_c00452{left:245.400000px;}
.x1e_c00452{left:246.600000px;}
.x7a_c00452{left:249.150000px;}
.x73_c00452{left:250.650000px;}
.x57_c00452{left:252.900000px;}
.x4b_c00452{left:253.950000px;}
.x62_c00452{left:255.300000px;}
.x8b_c00452{left:256.350000px;}
.x85_c00452{left:257.700000px;}
.x40_c00452{left:259.050000px;}
.x98_c00452{left:265.500000px;}
.x6a_c00452{left:266.550000px;}
.x94_c00452{left:268.200000px;}
.x10_c00452{left:269.250000px;}
.x46_c00452{left:270.300000px;}
.x50_c00452{left:271.350000px;}
.x25_c00452{left:275.100000px;}
.x6_c00452{left:276.900000px;}
.x34_c00452{left:280.950000px;}
.x18_c00452{left:283.050000px;}
.x1f_c00452{left:286.200000px;}
.x99_c00452{left:287.550000px;}
.x5b_c00452{left:288.750000px;}
.x47_c00452{left:289.800000px;}
.x11_c00452{left:292.650000px;}
.x78_c00452{left:295.650000px;}
.x41_c00452{left:297.600000px;}
.x30_c00452{left:299.250000px;}
.x6b_c00452{left:301.050000px;}
.x35_c00452{left:302.250000px;}
.x84_c00452{left:307.500000px;}
.x68_c00452{left:310.350000px;}
.x12_c00452{left:311.700000px;}
.x26_c00452{left:312.900000px;}
.x9a_c00452{left:315.600000px;}
.x5e_c00452{left:317.550000px;}
.x8f_c00452{left:319.200000px;}
.x86_c00452{left:320.400000px;}
.x1_c00452{left:322.200000px;}
.x8c_c00452{left:323.700000px;}
.x2c_c00452{left:326.400000px;}
.x74_c00452{left:328.350000px;}
.x88_c00452{left:329.850000px;}
.x19_c00452{left:331.650000px;}
.x6c_c00452{left:334.500000px;}
.x4c_c00452{left:336.300000px;}
.x27_c00452{left:337.500000px;}
.x2d_c00452{left:342.300000px;}
.x9b_c00452{left:343.650000px;}
.x54_c00452{left:345.150000px;}
.x51_c00452{left:346.950000px;}
.x6f_c00452{left:348.600000px;}
.x7_c00452{left:352.500000px;}
.x42_c00452{left:353.700000px;}
.x63_c00452{left:355.350000px;}
.x20_c00452{left:357.150000px;}
.x90_c00452{left:360.300000px;}
.xa_c00452{left:361.500000px;}
.x8_c00452{left:365.100000px;}
.x5f_c00452{left:366.150000px;}
.x2e_c00452{left:367.800000px;}
.x28_c00452{left:369.900000px;}
.x3b_c00452{left:372.300000px;}
.x52_c00452{left:373.950000px;}
.x43_c00452{left:375.000000px;}
.x64_c00452{left:376.950000px;}
.x21_c00452{left:378.750000px;}
.x6d_c00452{left:381.000000px;}
.x13_c00452{left:383.400000px;}
.x7b_c00452{left:385.200000px;}
.x93_c00452{left:386.550000px;}
.x36_c00452{left:388.200000px;}
.x1a_c00452{left:390.750000px;}
.x81_c00452{left:395.550000px;}
.x14_c00452{left:397.800000px;}
.x31_c00452{left:399.750000px;}
.x4d_c00452{left:401.100000px;}
.x48_c00452{left:402.900000px;}
.x58_c00452{left:404.250000px;}
.x75_c00452{left:405.750000px;}
.x8d_c00452{left:407.550000px;}
.x5c_c00452{left:412.200000px;}
.x95_c00452{left:415.050000px;}
.x9e_c00452{left:437.700000px;}
.x117_c00452{left:439.050000px;}
.x12c_c00452{left:440.100000px;}
.x135_c00452{left:441.150000px;}
.x106_c00452{left:447.450000px;}
.xa9_c00452{left:453.600000px;}
.xaf_c00452{left:454.800000px;}
.xd7_c00452{left:455.850000px;}
.xfa_c00452{left:456.900000px;}
.x136_c00452{left:458.850000px;}
.xa3_c00452{left:466.650000px;}
.xb9_c00452{left:472.050000px;}
.xe2_c00452{left:473.400000px;}
.xea_c00452{left:474.900000px;}
.x123_c00452{left:475.950000px;}
.xde_c00452{left:477.450000px;}
.x129_c00452{left:478.500000px;}
.x114_c00452{left:479.850000px;}
.x111_c00452{left:481.950000px;}
.xb0_c00452{left:483.300000px;}
.x132_c00452{left:485.250000px;}
.x10a_c00452{left:488.850000px;}
.xfd_c00452{left:490.200000px;}
.x11e_c00452{left:491.850000px;}
.xb1_c00452{left:494.400000px;}
.xd4_c00452{left:498.900000px;}
.x10d_c00452{left:502.500000px;}
.x9f_c00452{left:504.000000px;}
.xba_c00452{left:507.000000px;}
.xe0_c00452{left:508.050000px;}
.xb7_c00452{left:509.700000px;}
.xd8_c00452{left:511.200000px;}
.x11b_c00452{left:513.000000px;}
.xb2_c00452{left:514.200000px;}
.xfe_c00452{left:516.150000px;}
.xe6_c00452{left:519.150000px;}
.xd2_c00452{left:521.250000px;}
.x107_c00452{left:523.050000px;}
.xf3_c00452{left:524.700000px;}
.xc1_c00452{left:527.100000px;}
.xc6_c00452{left:528.900000px;}
.xff_c00452{left:532.350000px;}
.x10e_c00452{left:535.950000px;}
.x112_c00452{left:537.750000px;}
.xa0_c00452{left:539.700000px;}
.xaa_c00452{left:541.500000px;}
.xa4_c00452{left:544.800000px;}
.xf8_c00452{left:545.850000px;}
.xf4_c00452{left:549.450000px;}
.x126_c00452{left:550.650000px;}
.xd5_c00452{left:553.650000px;}
.xbb_c00452{left:554.850000px;}
.xb3_c00452{left:557.100000px;}
.x12a_c00452{left:559.050000px;}
.xa1_c00452{left:560.250000px;}
.xdf_c00452{left:563.100000px;}
.xeb_c00452{left:565.950000px;}
.xe3_c00452{left:567.750000px;}
.xee_c00452{left:569.400000px;}
.x11c_c00452{left:570.900000px;}
.x118_c00452{left:573.600000px;}
.xf5_c00452{left:575.400000px;}
.xc2_c00452{left:576.750000px;}
.x12d_c00452{left:578.400000px;}
.x11f_c00452{left:580.050000px;}
.xf0_c00452{left:581.850000px;}
.x138_c00452{left:583.350000px;}
.x127_c00452{left:585.150000px;}
.xab_c00452{left:586.500000px;}
.xc7_c00452{left:587.550000px;}
.x100_c00452{left:588.900000px;}
.xf1_c00452{left:591.150000px;}
.xb4_c00452{left:592.800000px;}
.xa2_c00452{left:597.000000px;}
.xef_c00452{left:598.200000px;}
.xcd_c00452{left:600.450000px;}
.xbf_c00452{left:604.500000px;}
.x124_c00452{left:605.550000px;}
.xb5_c00452{left:608.250000px;}
.x12e_c00452{left:609.750000px;}
.xc8_c00452{left:611.700000px;}
.x120_c00452{left:614.550000px;}
.x10f_c00452{left:617.250000px;}
.xa5_c00452{left:618.600000px;}
.xd3_c00452{left:622.350000px;}
.xce_c00452{left:624.600000px;}
.xf6_c00452{left:625.800000px;}
.xed_c00452{left:627.300000px;}
.xc9_c00452{left:628.650000px;}
.xe9_c00452{left:630.450000px;}
.xb8_c00452{left:633.150000px;}
.x11d_c00452{left:634.350000px;}
.xd9_c00452{left:636.150000px;}
.xb6_c00452{left:638.850000px;}
.xac_c00452{left:640.200000px;}
.xcf_c00452{left:641.850000px;}
.xda_c00452{left:644.400000px;}
.xbc_c00452{left:646.650000px;}
.x108_c00452{left:647.700000px;}
.xc3_c00452{left:649.050000px;}
.x121_c00452{left:653.100000px;}
.xca_c00452{left:655.350000px;}
.xe1_c00452{left:658.200000px;}
.x119_c00452{left:659.250000px;}
.xf2_c00452{left:661.050000px;}
.xa6_c00452{left:662.100000px;}
.xfb_c00452{left:664.350000px;}
.xd0_c00452{left:668.550000px;}
.x104_c00452{left:669.600000px;}
.x101_c00452{left:670.950000px;}
.xe7_c00452{left:676.800000px;}
.xcb_c00452{left:679.050000px;}
.xdb_c00452{left:682.200000px;}
.xfc_c00452{left:684.150000px;}
.xa7_c00452{left:687.600000px;}
.xd1_c00452{left:690.450000px;}
.x12f_c00452{left:691.800000px;}
.xdc_c00452{left:694.050000px;}
.xd6_c00452{left:696.300000px;}
.xc4_c00452{left:697.650000px;}
.x133_c00452{left:700.350000px;}
.x115_c00452{left:704.100000px;}
.x130_c00452{left:705.300000px;}
.xbd_c00452{left:707.100000px;}
.xe4_c00452{left:709.650000px;}
.xf7_c00452{left:712.200000px;}
.x128_c00452{left:714.600000px;}
.x11a_c00452{left:718.200000px;}
.x134_c00452{left:720.150000px;}
.x125_c00452{left:721.800000px;}
.xbe_c00452{left:723.000000px;}
.xf9_c00452{left:724.050000px;}
.xc5_c00452{left:727.200000px;}
.x102_c00452{left:729.300000px;}
.x109_c00452{left:730.500000px;}
.xa8_c00452{left:731.850000px;}
.x122_c00452{left:733.350000px;}
.x113_c00452{left:735.300000px;}
.xad_c00452{left:737.400000px;}
.xdd_c00452{left:738.750000px;}
.xcc_c00452{left:741.300000px;}
.x103_c00452{left:742.650000px;}
.x2_c00452{left:744.450000px;}
.x137_c00452{left:745.800000px;}
.x131_c00452{left:747.450000px;}
.x105_c00452{left:750.600000px;}
.xae_c00452{left:754.350000px;}
.x12b_c00452{left:756.600000px;}
.x10b_c00452{left:757.650000px;}
.xec_c00452{left:758.700000px;}
.xe5_c00452{left:760.050000px;}
.xe8_c00452{left:762.150000px;}
.x110_c00452{left:763.500000px;}
.xc0_c00452{left:766.800000px;}
.x116_c00452{left:771.300000px;}
.x10c_c00452{left:786.750000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ws2_c00452{word-spacing:-6.136693pt;}
.ws3_c00452{word-spacing:-5.959596pt;}
.ws7_c00452{word-spacing:0.000000pt;}
.ws5_c00452{word-spacing:4.895944pt;}
.ws4_c00452{word-spacing:11.402715pt;}
.ws6_c00452{word-spacing:18.666667pt;}
.ws0_c00452{word-spacing:20.044105pt;}
.ws1_c00452{word-spacing:47.970009pt;}
.fs7_c00452{font-size:26.666667pt;}
.fs9_c00452{font-size:32.000000pt;}
.fsa_c00452{font-size:37.333333pt;}
.fs5_c00452{font-size:42.666667pt;}
.fs6_c00452{font-size:48.000000pt;}
.fs4_c00452{font-size:53.333333pt;}
.fs3_c00452{font-size:58.666667pt;}
.fs2_c00452{font-size:64.000000pt;}
.fs0_c00452{font-size:69.333333pt;}
.fs1_c00452{font-size:85.333333pt;}
.fs8_c00452{font-size:90.666667pt;}
.y0_c00452{bottom:0.000000pt;}
.y69_c00452{bottom:152.933333pt;}
.y32_c00452{bottom:166.400000pt;}
.y68_c00452{bottom:167.066667pt;}
.y67_c00452{bottom:180.133333pt;}
.y31_c00452{bottom:186.400000pt;}
.y66_c00452{bottom:192.933333pt;}
.y30_c00452{bottom:203.066667pt;}
.y65_c00452{bottom:206.000000pt;}
.y64_c00452{bottom:218.800000pt;}
.y2f_c00452{bottom:219.066667pt;}
.y63_c00452{bottom:231.333333pt;}
.y2e_c00452{bottom:235.066667pt;}
.y62_c00452{bottom:244.266667pt;}
.y2d_c00452{bottom:250.400000pt;}
.y61_c00452{bottom:257.066667pt;}
.y2c_c00452{bottom:266.400000pt;}
.y60_c00452{bottom:270.133333pt;}
.y2b_c00452{bottom:282.133333pt;}
.y5f_c00452{bottom:282.666667pt;}
.y5e_c00452{bottom:295.733333pt;}
.y2a_c00452{bottom:297.866667pt;}
.y5d_c00452{bottom:308.000000pt;}
.y29_c00452{bottom:320.266667pt;}
.y5c_c00452{bottom:321.066667pt;}
.y5b_c00452{bottom:333.866667pt;}
.y28_c00452{bottom:341.200000pt;}
.y5a_c00452{bottom:346.933333pt;}
.y27_c00452{bottom:358.133333pt;}
.y26_c00452{bottom:374.000000pt;}
.y59_c00452{bottom:382.000000pt;}
.y25_c00452{bottom:390.000000pt;}
.y58_c00452{bottom:397.733333pt;}
.y24_c00452{bottom:405.733333pt;}
.y57_c00452{bottom:413.466667pt;}
.y23_c00452{bottom:427.866667pt;}
.y56_c00452{bottom:429.466667pt;}
.y22_c00452{bottom:445.066667pt;}
.y55_c00452{bottom:445.466667pt;}
.y21_c00452{bottom:460.800000pt;}
.y54_c00452{bottom:461.333333pt;}
.y20_c00452{bottom:477.066667pt;}
.y53_c00452{bottom:477.333333pt;}
.y52_c00452{bottom:493.066667pt;}
.y1f_c00452{bottom:494.933333pt;}
.y51_c00452{bottom:509.066667pt;}
.y1e_c00452{bottom:512.266667pt;}
.y50_c00452{bottom:524.800000pt;}
.y1d_c00452{bottom:539.200000pt;}
.y4f_c00452{bottom:544.000000pt;}
.y1c_c00452{bottom:562.533333pt;}
.y4e_c00452{bottom:564.133333pt;}
.y4d_c00452{bottom:583.333333pt;}
.y1b_c00452{bottom:586.133333pt;}
.y4c_c00452{bottom:599.333333pt;}
.y1a_c00452{bottom:602.133333pt;}
.y19_c00452{bottom:618.133333pt;}
.y4b_c00452{bottom:618.266667pt;}
.y18_c00452{bottom:633.866667pt;}
.y4a_c00452{bottom:634.933333pt;}
.y17_c00452{bottom:649.866667pt;}
.y49_c00452{bottom:654.400000pt;}
.y16_c00452{bottom:665.600000pt;}
.y48_c00452{bottom:670.133333pt;}
.y15_c00452{bottom:681.600000pt;}
.y47_c00452{bottom:686.133333pt;}
.y46_c00452{bottom:703.333333pt;}
.y14_c00452{bottom:705.066667pt;}
.y45_c00452{bottom:709.466667pt;}
.y44_c00452{bottom:711.333333pt;}
.y43_c00452{bottom:717.466667pt;}
.y13_c00452{bottom:717.866667pt;}
.y42_c00452{bottom:727.333333pt;}
.y12_c00452{bottom:730.666667pt;}
.y41_c00452{bottom:735.066667pt;}
.y11_c00452{bottom:741.200000pt;}
.y10_c00452{bottom:755.866667pt;}
.y40_c00452{bottom:758.666667pt;}
.yf_c00452{bottom:767.333333pt;}
.y3f_c00452{bottom:774.400000pt;}
.ye_c00452{bottom:783.066667pt;}
.yd_c00452{bottom:799.733333pt;}
.y3e_c00452{bottom:805.066667pt;}
.yc_c00452{bottom:815.733333pt;}
.yb_c00452{bottom:831.733333pt;}
.y3d_c00452{bottom:832.400000pt;}
.y3c_c00452{bottom:848.400000pt;}
.ya_c00452{bottom:854.533333pt;}
.y3b_c00452{bottom:864.133333pt;}
.y9_c00452{bottom:870.533333pt;}
.y39_c00452{bottom:871.066667pt;}
.y3a_c00452{bottom:877.200000pt;}
.y38_c00452{bottom:879.733333pt;}
.y8_c00452{bottom:886.533333pt;}
.y7_c00452{bottom:901.866667pt;}
.y37_c00452{bottom:905.333333pt;}
.y6_c00452{bottom:918.133333pt;}
.y36_c00452{bottom:929.200000pt;}
.y5_c00452{bottom:933.466667pt;}
.y35_c00452{bottom:945.200000pt;}
.y4_c00452{bottom:949.466667pt;}
.y34_c00452{bottom:960.933333pt;}
.y3_c00452{bottom:970.800000pt;}
.y2_c00452{bottom:988.133333pt;}
.y33_c00452{bottom:988.533333pt;}
.y1_c00452{bottom:1012.533333pt;}
.h9_c00452{height:26.666667pt;}
.hb_c00452{height:32.000000pt;}
.hc_c00452{height:37.333333pt;}
.h7_c00452{height:42.666667pt;}
.h8_c00452{height:48.000000pt;}
.h6_c00452{height:53.333333pt;}
.h5_c00452{height:58.666667pt;}
.h4_c00452{height:64.000000pt;}
.h2_c00452{height:69.333333pt;}
.h3_c00452{height:85.333333pt;}
.ha_c00452{height:90.666667pt;}
.h0_c00452{height:1127.039957pt;}
.h1_c00452{height:1127.333333pt;}
.w0_c00452{width:851.840007pt;}
.w1_c00452{width:852.000000pt;}
.x0_c00452{left:0.000000pt;}
.x37_c00452{left:70.400000pt;}
.x3_c00452{left:71.333333pt;}
.x70_c00452{left:73.333333pt;}
.x8a_c00452{left:74.266667pt;}
.x15_c00452{left:79.733333pt;}
.x22_c00452{left:86.800000pt;}
.x9_c00452{left:88.400000pt;}
.x32_c00452{left:90.000000pt;}
.x9c_c00452{left:91.066667pt;}
.xb_c00452{left:92.533333pt;}
.x53_c00452{left:97.866667pt;}
.x7c_c00452{left:99.600000pt;}
.xc_c00452{left:104.666667pt;}
.x60_c00452{left:106.933333pt;}
.x3c_c00452{left:109.600000pt;}
.x38_c00452{left:110.666667pt;}
.x7f_c00452{left:112.000000pt;}
.x7d_c00452{left:113.333333pt;}
.x4_c00452{left:114.266667pt;}
.x1b_c00452{left:115.600000pt;}
.x16_c00452{left:117.866667pt;}
.x3d_c00452{left:120.533333pt;}
.x96_c00452{left:121.866667pt;}
.x69_c00452{left:122.933333pt;}
.x71_c00452{left:125.200000pt;}
.x89_c00452{left:126.133333pt;}
.x6e_c00452{left:127.466667pt;}
.x4e_c00452{left:128.666667pt;}
.x29_c00452{left:132.000000pt;}
.x49_c00452{left:133.866667pt;}
.x44_c00452{left:136.266667pt;}
.x1c_c00452{left:138.666667pt;}
.x66_c00452{left:140.800000pt;}
.x7e_c00452{left:143.466667pt;}
.x5_c00452{left:145.600000pt;}
.x23_c00452{left:147.333333pt;}
.x59_c00452{left:149.200000pt;}
.x4a_c00452{left:151.200000pt;}
.x87_c00452{left:153.333333pt;}
.x5d_c00452{left:155.200000pt;}
.x3e_c00452{left:156.400000pt;}
.x82_c00452{left:158.800000pt;}
.x9d_c00452{left:160.133333pt;}
.x76_c00452{left:162.000000pt;}
.xd_c00452{left:163.600000pt;}
.x97_c00452{left:165.733333pt;}
.x8e_c00452{left:166.933333pt;}
.x39_c00452{left:168.933333pt;}
.x2a_c00452{left:170.133333pt;}
.x80_c00452{left:172.133333pt;}
.x79_c00452{left:173.733333pt;}
.x45_c00452{left:174.666667pt;}
.x3f_c00452{left:175.600000pt;}
.x91_c00452{left:179.466667pt;}
.x17_c00452{left:181.200000pt;}
.x67_c00452{left:182.666667pt;}
.xe_c00452{left:184.666667pt;}
.x61_c00452{left:186.666667pt;}
.x72_c00452{left:187.866667pt;}
.x83_c00452{left:190.800000pt;}
.x77_c00452{left:195.866667pt;}
.x5a_c00452{left:197.466667pt;}
.x33_c00452{left:198.800000pt;}
.x65_c00452{left:200.666667pt;}
.x2f_c00452{left:201.733333pt;}
.x4f_c00452{left:202.800000pt;}
.x92_c00452{left:204.133333pt;}
.x55_c00452{left:205.333333pt;}
.x1d_c00452{left:207.733333pt;}
.x2b_c00452{left:209.466667pt;}
.xf_c00452{left:212.133333pt;}
.x3a_c00452{left:213.466667pt;}
.x24_c00452{left:216.400000pt;}
.x56_c00452{left:218.133333pt;}
.x1e_c00452{left:219.200000pt;}
.x7a_c00452{left:221.466667pt;}
.x73_c00452{left:222.800000pt;}
.x57_c00452{left:224.800000pt;}
.x4b_c00452{left:225.733333pt;}
.x62_c00452{left:226.933333pt;}
.x8b_c00452{left:227.866667pt;}
.x85_c00452{left:229.066667pt;}
.x40_c00452{left:230.266667pt;}
.x98_c00452{left:236.000000pt;}
.x6a_c00452{left:236.933333pt;}
.x94_c00452{left:238.400000pt;}
.x10_c00452{left:239.333333pt;}
.x46_c00452{left:240.266667pt;}
.x50_c00452{left:241.200000pt;}
.x25_c00452{left:244.533333pt;}
.x6_c00452{left:246.133333pt;}
.x34_c00452{left:249.733333pt;}
.x18_c00452{left:251.600000pt;}
.x1f_c00452{left:254.400000pt;}
.x99_c00452{left:255.600000pt;}
.x5b_c00452{left:256.666667pt;}
.x47_c00452{left:257.600000pt;}
.x11_c00452{left:260.133333pt;}
.x78_c00452{left:262.800000pt;}
.x41_c00452{left:264.533333pt;}
.x30_c00452{left:266.000000pt;}
.x6b_c00452{left:267.600000pt;}
.x35_c00452{left:268.666667pt;}
.x84_c00452{left:273.333333pt;}
.x68_c00452{left:275.866667pt;}
.x12_c00452{left:277.066667pt;}
.x26_c00452{left:278.133333pt;}
.x9a_c00452{left:280.533333pt;}
.x5e_c00452{left:282.266667pt;}
.x8f_c00452{left:283.733333pt;}
.x86_c00452{left:284.800000pt;}
.x1_c00452{left:286.400000pt;}
.x8c_c00452{left:287.733333pt;}
.x2c_c00452{left:290.133333pt;}
.x74_c00452{left:291.866667pt;}
.x88_c00452{left:293.200000pt;}
.x19_c00452{left:294.800000pt;}
.x6c_c00452{left:297.333333pt;}
.x4c_c00452{left:298.933333pt;}
.x27_c00452{left:300.000000pt;}
.x2d_c00452{left:304.266667pt;}
.x9b_c00452{left:305.466667pt;}
.x54_c00452{left:306.800000pt;}
.x51_c00452{left:308.400000pt;}
.x6f_c00452{left:309.866667pt;}
.x7_c00452{left:313.333333pt;}
.x42_c00452{left:314.400000pt;}
.x63_c00452{left:315.866667pt;}
.x20_c00452{left:317.466667pt;}
.x90_c00452{left:320.266667pt;}
.xa_c00452{left:321.333333pt;}
.x8_c00452{left:324.533333pt;}
.x5f_c00452{left:325.466667pt;}
.x2e_c00452{left:326.933333pt;}
.x28_c00452{left:328.800000pt;}
.x3b_c00452{left:330.933333pt;}
.x52_c00452{left:332.400000pt;}
.x43_c00452{left:333.333333pt;}
.x64_c00452{left:335.066667pt;}
.x21_c00452{left:336.666667pt;}
.x6d_c00452{left:338.666667pt;}
.x13_c00452{left:340.800000pt;}
.x7b_c00452{left:342.400000pt;}
.x93_c00452{left:343.600000pt;}
.x36_c00452{left:345.066667pt;}
.x1a_c00452{left:347.333333pt;}
.x81_c00452{left:351.600000pt;}
.x14_c00452{left:353.600000pt;}
.x31_c00452{left:355.333333pt;}
.x4d_c00452{left:356.533333pt;}
.x48_c00452{left:358.133333pt;}
.x58_c00452{left:359.333333pt;}
.x75_c00452{left:360.666667pt;}
.x8d_c00452{left:362.266667pt;}
.x5c_c00452{left:366.400000pt;}
.x95_c00452{left:368.933333pt;}
.x9e_c00452{left:389.066667pt;}
.x117_c00452{left:390.266667pt;}
.x12c_c00452{left:391.200000pt;}
.x135_c00452{left:392.133333pt;}
.x106_c00452{left:397.733333pt;}
.xa9_c00452{left:403.200000pt;}
.xaf_c00452{left:404.266667pt;}
.xd7_c00452{left:405.200000pt;}
.xfa_c00452{left:406.133333pt;}
.x136_c00452{left:407.866667pt;}
.xa3_c00452{left:414.800000pt;}
.xb9_c00452{left:419.600000pt;}
.xe2_c00452{left:420.800000pt;}
.xea_c00452{left:422.133333pt;}
.x123_c00452{left:423.066667pt;}
.xde_c00452{left:424.400000pt;}
.x129_c00452{left:425.333333pt;}
.x114_c00452{left:426.533333pt;}
.x111_c00452{left:428.400000pt;}
.xb0_c00452{left:429.600000pt;}
.x132_c00452{left:431.333333pt;}
.x10a_c00452{left:434.533333pt;}
.xfd_c00452{left:435.733333pt;}
.x11e_c00452{left:437.200000pt;}
.xb1_c00452{left:439.466667pt;}
.xd4_c00452{left:443.466667pt;}
.x10d_c00452{left:446.666667pt;}
.x9f_c00452{left:448.000000pt;}
.xba_c00452{left:450.666667pt;}
.xe0_c00452{left:451.600000pt;}
.xb7_c00452{left:453.066667pt;}
.xd8_c00452{left:454.400000pt;}
.x11b_c00452{left:456.000000pt;}
.xb2_c00452{left:457.066667pt;}
.xfe_c00452{left:458.800000pt;}
.xe6_c00452{left:461.466667pt;}
.xd2_c00452{left:463.333333pt;}
.x107_c00452{left:464.933333pt;}
.xf3_c00452{left:466.400000pt;}
.xc1_c00452{left:468.533333pt;}
.xc6_c00452{left:470.133333pt;}
.xff_c00452{left:473.200000pt;}
.x10e_c00452{left:476.400000pt;}
.x112_c00452{left:478.000000pt;}
.xa0_c00452{left:479.733333pt;}
.xaa_c00452{left:481.333333pt;}
.xa4_c00452{left:484.266667pt;}
.xf8_c00452{left:485.200000pt;}
.xf4_c00452{left:488.400000pt;}
.x126_c00452{left:489.466667pt;}
.xd5_c00452{left:492.133333pt;}
.xbb_c00452{left:493.200000pt;}
.xb3_c00452{left:495.200000pt;}
.x12a_c00452{left:496.933333pt;}
.xa1_c00452{left:498.000000pt;}
.xdf_c00452{left:500.533333pt;}
.xeb_c00452{left:503.066667pt;}
.xe3_c00452{left:504.666667pt;}
.xee_c00452{left:506.133333pt;}
.x11c_c00452{left:507.466667pt;}
.x118_c00452{left:509.866667pt;}
.xf5_c00452{left:511.466667pt;}
.xc2_c00452{left:512.666667pt;}
.x12d_c00452{left:514.133333pt;}
.x11f_c00452{left:515.600000pt;}
.xf0_c00452{left:517.200000pt;}
.x138_c00452{left:518.533333pt;}
.x127_c00452{left:520.133333pt;}
.xab_c00452{left:521.333333pt;}
.xc7_c00452{left:522.266667pt;}
.x100_c00452{left:523.466667pt;}
.xf1_c00452{left:525.466667pt;}
.xb4_c00452{left:526.933333pt;}
.xa2_c00452{left:530.666667pt;}
.xef_c00452{left:531.733333pt;}
.xcd_c00452{left:533.733333pt;}
.xbf_c00452{left:537.333333pt;}
.x124_c00452{left:538.266667pt;}
.xb5_c00452{left:540.666667pt;}
.x12e_c00452{left:542.000000pt;}
.xc8_c00452{left:543.733333pt;}
.x120_c00452{left:546.266667pt;}
.x10f_c00452{left:548.666667pt;}
.xa5_c00452{left:549.866667pt;}
.xd3_c00452{left:553.200000pt;}
.xce_c00452{left:555.200000pt;}
.xf6_c00452{left:556.266667pt;}
.xed_c00452{left:557.600000pt;}
.xc9_c00452{left:558.800000pt;}
.xe9_c00452{left:560.400000pt;}
.xb8_c00452{left:562.800000pt;}
.x11d_c00452{left:563.866667pt;}
.xd9_c00452{left:565.466667pt;}
.xb6_c00452{left:567.866667pt;}
.xac_c00452{left:569.066667pt;}
.xcf_c00452{left:570.533333pt;}
.xda_c00452{left:572.800000pt;}
.xbc_c00452{left:574.800000pt;}
.x108_c00452{left:575.733333pt;}
.xc3_c00452{left:576.933333pt;}
.x121_c00452{left:580.533333pt;}
.xca_c00452{left:582.533333pt;}
.xe1_c00452{left:585.066667pt;}
.x119_c00452{left:586.000000pt;}
.xf2_c00452{left:587.600000pt;}
.xa6_c00452{left:588.533333pt;}
.xfb_c00452{left:590.533333pt;}
.xd0_c00452{left:594.266667pt;}
.x104_c00452{left:595.200000pt;}
.x101_c00452{left:596.400000pt;}
.xe7_c00452{left:601.600000pt;}
.xcb_c00452{left:603.600000pt;}
.xdb_c00452{left:606.400000pt;}
.xfc_c00452{left:608.133333pt;}
.xa7_c00452{left:611.200000pt;}
.xd1_c00452{left:613.733333pt;}
.x12f_c00452{left:614.933333pt;}
.xdc_c00452{left:616.933333pt;}
.xd6_c00452{left:618.933333pt;}
.xc4_c00452{left:620.133333pt;}
.x133_c00452{left:622.533333pt;}
.x115_c00452{left:625.866667pt;}
.x130_c00452{left:626.933333pt;}
.xbd_c00452{left:628.533333pt;}
.xe4_c00452{left:630.800000pt;}
.xf7_c00452{left:633.066667pt;}
.x128_c00452{left:635.200000pt;}
.x11a_c00452{left:638.400000pt;}
.x134_c00452{left:640.133333pt;}
.x125_c00452{left:641.600000pt;}
.xbe_c00452{left:642.666667pt;}
.xf9_c00452{left:643.600000pt;}
.xc5_c00452{left:646.400000pt;}
.x102_c00452{left:648.266667pt;}
.x109_c00452{left:649.333333pt;}
.xa8_c00452{left:650.533333pt;}
.x122_c00452{left:651.866667pt;}
.x113_c00452{left:653.600000pt;}
.xad_c00452{left:655.466667pt;}
.xdd_c00452{left:656.666667pt;}
.xcc_c00452{left:658.933333pt;}
.x103_c00452{left:660.133333pt;}
.x2_c00452{left:661.733333pt;}
.x137_c00452{left:662.933333pt;}
.x131_c00452{left:664.400000pt;}
.x105_c00452{left:667.200000pt;}
.xae_c00452{left:670.533333pt;}
.x12b_c00452{left:672.533333pt;}
.x10b_c00452{left:673.466667pt;}
.xec_c00452{left:674.400000pt;}
.xe5_c00452{left:675.600000pt;}
.xe8_c00452{left:677.466667pt;}
.x110_c00452{left:678.666667pt;}
.xc0_c00452{left:681.600000pt;}
.x116_c00452{left:685.600000pt;}
.x10c_c00452{left:699.333333pt;}
}





/* 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_c00453 {
    display:none;
  }
  .loading-indicator_c00453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00453 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_c00453 { 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_c00453" -> "#page-container .classname_c00453")
 */
.pf_c00453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00453 { /* 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_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00453 { /* 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_c00453 { /* 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_c00453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00453 {overflow:visible;}
  }
}
.c_c00453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00453 { /* 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_c00453:after { /* webkit #35443 */
  content: '';
}
.t_c00453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00453 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 */
}
.__c00453 { /* 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_c00453 { /* info for Javascript */
  display:none;
}
.l_c00453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00453: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_c00453 {
    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_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00453.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_c00453 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00453;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.000000;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;}
.m56_c00453{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mad_c00453{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00453{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m6_c00453{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.maf_c00453{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00453{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00453{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00453{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.md8_c00453{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00453{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00453{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m51_c00453{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00453{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00453{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00453{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.me6_c00453{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00453{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00453{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00453{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00453{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00453{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m114_c00453{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00453{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00453{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00453{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00453{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00453{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.me8_c00453{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m107_c00453{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mea_c00453{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00453{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m111_c00453{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mde_c00453{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md6_c00453{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md3_c00453{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m83_c00453{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00453{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m88_c00453{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m75_c00453{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00453{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00453{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mab_c00453{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me5_c00453{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.md2_c00453{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00453{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00453{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m99_c00453{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m27_c00453{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00453{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00453{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md1_c00453{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00453{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00453{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00453{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m17_c00453{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00453{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mec_c00453{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m58_c00453{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00453{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m12_c00453{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00453{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m79_c00453{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m108_c00453{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m16_c00453{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00453{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00453{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00453{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m97_c00453{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m44_c00453{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00453{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m118_c00453{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00453{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00453{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m67_c00453{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m49_c00453{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m102_c00453{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00453{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00453{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m52_c00453{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m4_c00453{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m71_c00453{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.me_c00453{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m101_c00453{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m43_c00453{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me4_c00453{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m84_c00453{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m40_c00453{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m35_c00453{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m109_c00453{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00453{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5_c00453{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m32_c00453{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m121_c00453{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00453{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m47_c00453{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00453{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m74_c00453{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00453{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00453{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m7_c00453{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m34_c00453{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00453{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m63_c00453{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m61_c00453{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mac_c00453{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00453{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m126_c00453{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m122_c00453{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m23_c00453{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m28_c00453{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m66_c00453{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00453{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00453{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m8_c00453{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m30_c00453{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m73_c00453{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m10_c00453{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m14_c00453{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m20_c00453{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m116_c00453{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.me3_c00453{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mef_c00453{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mba_c00453{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m60_c00453{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00453{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00453{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00453{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m25_c00453{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb_c00453{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00453{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m22_c00453{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m119_c00453{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.me2_c00453{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m86_c00453{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00453{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00453{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m59_c00453{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00453{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m46_c00453{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m106_c00453{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mc_c00453{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00453{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m77_c00453{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m15_c00453{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m21_c00453{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m45_c00453{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00453{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11_c00453{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00453{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00453{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m55_c00453{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m82_c00453{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00453{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.me1_c00453{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00453{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00453{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00453{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m70_c00453{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m18_c00453{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m48_c00453{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m65_c00453{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00453{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00453{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00453{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m94_c00453{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m26_c00453{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00453{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m120_c00453{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00453{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me9_c00453{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00453{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m31_c00453{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00453{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m105_c00453{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m53_c00453{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf_c00453{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m13_c00453{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m38_c00453{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m62_c00453{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00453{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m19_c00453{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.meb_c00453{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m57_c00453{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m117_c00453{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m29_c00453{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m78_c00453{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00453{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00453{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00453{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md_c00453{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.med_c00453{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m68_c00453{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mce_c00453{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m110_c00453{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00453{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m96_c00453{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00453{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00453{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00453{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m127_c00453{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00453{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00453{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m54_c00453{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00453{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m33_c00453{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m95_c00453{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00453{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00453{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me0_c00453{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m128_c00453{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m50_c00453{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m37_c00453{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m76_c00453{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m24_c00453{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mae_c00453{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00453{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00453{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00453{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00453{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mda_c00453{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m123_c00453{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m90_c00453{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m42_c00453{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00453{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00453{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00453{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m129_c00453{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00453{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00453{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00453{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m39_c00453{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00453{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00453{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mff_c00453{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m93_c00453{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00453{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma_c00453{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m36_c00453{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00453{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00453{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00453{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.maa_c00453{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00453{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m125_c00453{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00453{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md4_c00453{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00453{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00453{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m100_c00453{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m124_c00453{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00453{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mee_c00453{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00453{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00453{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m81_c00453{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md0_c00453{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00453{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m112_c00453{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00453{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00453{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00453{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m41_c00453{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m98_c00453{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.md7_c00453{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m85_c00453{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m104_c00453{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00453{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m64_c00453{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m9_c00453{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00453{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00453{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00453{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00453{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m92_c00453{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00453{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00453{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md5_c00453{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00453{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m113_c00453{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.me7_c00453{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00453{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00453{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00453{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m91_c00453{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m87_c00453{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m115_c00453{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m69_c00453{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00453{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m89_c00453{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m103_c00453{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mca_c00453{transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00453{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00453{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00453{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m72_c00453{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m0_c00453{transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00453{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.md9_c00453{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00453{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m80_c00453{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls1_c00453{letter-spacing:0.000000px;}
.ls0_c00453{letter-spacing:59.285714px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{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__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00453{word-spacing:-89.285714px;}
.ws1_c00453{word-spacing:-8.714286px;}
.wsa_c00453{word-spacing:-6.934708px;}
.ws0_c00453{word-spacing:-1.811321px;}
.wsb_c00453{word-spacing:0.000000px;}
.ws4_c00453{word-spacing:2.076923px;}
.ws2_c00453{word-spacing:2.254777px;}
.ws3_c00453{word-spacing:3.071006px;}
.ws5_c00453{word-spacing:3.308519px;}
.ws9_c00453{word-spacing:6.962606px;}
.ws6_c00453{word-spacing:22.142857px;}
.ws7_c00453{word-spacing:29.285714px;}
._3_c00453{margin-left:-59.285714px;}
._0_c00453{width:55.714286px;}
._2_c00453{width:59.285714px;}
._1_c00453{width:64.642857px;}
.fc0_c00453{color:transparent;}
.fs7_c00453{font-size:30.000000px;}
.fs6_c00453{font-size:42.000000px;}
.fs5_c00453{font-size:54.000000px;}
.fs4_c00453{font-size:60.000000px;}
.fs2_c00453{font-size:66.000000px;}
.fs3_c00453{font-size:72.000000px;}
.fs0_c00453{font-size:78.000000px;}
.fs1_c00453{font-size:84.000000px;}
.y0_c00453{bottom:0.000000px;}
.y39_c00453{bottom:192.900000px;}
.y72_c00453{bottom:193.800000px;}
.y36_c00453{bottom:195.000000px;}
.y38_c00453{bottom:195.900000px;}
.y35_c00453{bottom:209.400000px;}
.y71_c00453{bottom:211.050000px;}
.y34_c00453{bottom:223.500000px;}
.y37_c00453{bottom:224.700000px;}
.y70_c00453{bottom:228.750000px;}
.y33_c00453{bottom:240.450000px;}
.y6f_c00453{bottom:247.050000px;}
.y32_c00453{bottom:252.300000px;}
.y6e_c00453{bottom:264.750000px;}
.y31_c00453{bottom:266.250000px;}
.y30_c00453{bottom:280.350000px;}
.y6d_c00453{bottom:282.450000px;}
.y2f_c00453{bottom:295.500000px;}
.y6c_c00453{bottom:300.450000px;}
.y2e_c00453{bottom:314.700000px;}
.y6b_c00453{bottom:318.150000px;}
.y2d_c00453{bottom:332.400000px;}
.y6a_c00453{bottom:336.150000px;}
.y2c_c00453{bottom:350.400000px;}
.y69_c00453{bottom:354.150000px;}
.y2b_c00453{bottom:368.400000px;}
.y68_c00453{bottom:372.150000px;}
.y2a_c00453{bottom:386.400000px;}
.y67_c00453{bottom:390.150000px;}
.y29_c00453{bottom:404.700000px;}
.y66_c00453{bottom:407.850000px;}
.y28_c00453{bottom:425.250000px;}
.y65_c00453{bottom:426.150000px;}
.y64_c00453{bottom:443.850000px;}
.y27_c00453{bottom:444.000000px;}
.y63_c00453{bottom:461.850000px;}
.y26_c00453{bottom:462.300000px;}
.y62_c00453{bottom:479.850000px;}
.y25_c00453{bottom:480.000000px;}
.y61_c00453{bottom:497.550000px;}
.y24_c00453{bottom:498.000000px;}
.y60_c00453{bottom:515.550000px;}
.y23_c00453{bottom:516.000000px;}
.y5f_c00453{bottom:533.550000px;}
.y22_c00453{bottom:533.700000px;}
.y5e_c00453{bottom:551.550000px;}
.y21_c00453{bottom:551.700000px;}
.y5d_c00453{bottom:569.250000px;}
.y20_c00453{bottom:569.400000px;}
.y5c_c00453{bottom:586.950000px;}
.y1f_c00453{bottom:604.350000px;}
.y1e_c00453{bottom:605.100000px;}
.y5b_c00453{bottom:605.250000px;}
.y5a_c00453{bottom:622.950000px;}
.y1d_c00453{bottom:626.700000px;}
.y59_c00453{bottom:640.650000px;}
.y1c_c00453{bottom:653.400000px;}
.y58_c00453{bottom:658.650000px;}
.y1b_c00453{bottom:675.600000px;}
.y57_c00453{bottom:676.650000px;}
.y1a_c00453{bottom:693.600000px;}
.y56_c00453{bottom:694.650000px;}
.y19_c00453{bottom:711.600000px;}
.y55_c00453{bottom:712.650000px;}
.y18_c00453{bottom:729.300000px;}
.y54_c00453{bottom:730.650000px;}
.y17_c00453{bottom:747.000000px;}
.y53_c00453{bottom:748.350000px;}
.y16_c00453{bottom:765.000000px;}
.y52_c00453{bottom:766.050000px;}
.y15_c00453{bottom:783.000000px;}
.y51_c00453{bottom:784.050000px;}
.y14_c00453{bottom:800.700000px;}
.y50_c00453{bottom:802.050000px;}
.y13_c00453{bottom:818.700000px;}
.y4f_c00453{bottom:820.050000px;}
.y12_c00453{bottom:836.700000px;}
.y4c_c00453{bottom:844.650000px;}
.y11_c00453{bottom:856.800000px;}
.y4b_c00453{bottom:859.350000px;}
.y4a_c00453{bottom:873.750000px;}
.y10_c00453{bottom:876.300000px;}
.y49_c00453{bottom:888.450000px;}
.yf_c00453{bottom:897.900000px;}
.y48_c00453{bottom:902.550000px;}
.ye_c00453{bottom:915.900000px;}
.y47_c00453{bottom:917.250000px;}
.y46_c00453{bottom:931.350000px;}
.yd_c00453{bottom:938.100000px;}
.y45_c00453{bottom:945.750000px;}
.yc_c00453{bottom:960.450000px;}
.y44_c00453{bottom:964.050000px;}
.yb_c00453{bottom:978.450000px;}
.y43_c00453{bottom:993.600000px;}
.ya_c00453{bottom:996.450000px;}
.y42_c00453{bottom:1007.550000px;}
.y9_c00453{bottom:1014.150000px;}
.y41_c00453{bottom:1021.650000px;}
.y8_c00453{bottom:1032.150000px;}
.y4d_c00453{bottom:1035.300000px;}
.y40_c00453{bottom:1035.750000px;}
.y4e_c00453{bottom:1037.100000px;}
.y7_c00453{bottom:1049.700000px;}
.y3f_c00453{bottom:1050.450000px;}
.y3e_c00453{bottom:1064.850000px;}
.y6_c00453{bottom:1067.400000px;}
.y3d_c00453{bottom:1078.950000px;}
.y5_c00453{bottom:1085.400000px;}
.y3c_c00453{bottom:1093.650000px;}
.y4_c00453{bottom:1103.400000px;}
.y3b_c00453{bottom:1108.050000px;}
.y3_c00453{bottom:1121.400000px;}
.y3a_c00453{bottom:1122.450000px;}
.y1_c00453{bottom:1142.250000px;}
.y2_c00453{bottom:1147.950000px;}
.h9_c00453{height:30.000000px;}
.h8_c00453{height:42.000000px;}
.h7_c00453{height:54.000000px;}
.h6_c00453{height:60.000000px;}
.h4_c00453{height:66.000000px;}
.h5_c00453{height:72.000000px;}
.h2_c00453{height:78.000000px;}
.h3_c00453{height:84.000000px;}
.h1_c00453{height:1276.500000px;}
.h0_c00453{height:1276.559967px;}
.w0_c00453{width:958.320007px;}
.w1_c00453{width:958.500000px;}
.x0_c00453{left:0.000000px;}
.x1_c00453{left:184.650000px;}
.x41_c00453{left:187.200000px;}
.x91_c00453{left:202.500000px;}
.x3_c00453{left:204.150000px;}
.x21_c00453{left:205.350000px;}
.x2b_c00453{left:206.400000px;}
.x9e_c00453{left:215.250000px;}
.x94_c00453{left:216.300000px;}
.x37_c00453{left:222.450000px;}
.x19_c00453{left:223.950000px;}
.x4_c00453{left:225.000000px;}
.x55_c00453{left:227.250000px;}
.x4c_c00453{left:228.450000px;}
.x22_c00453{left:230.550000px;}
.x34_c00453{left:232.200000px;}
.x70_c00453{left:237.300000px;}
.x2c_c00453{left:239.850000px;}
.x5d_c00453{left:241.200000px;}
.x42_c00453{left:243.300000px;}
.x64_c00453{left:245.250000px;}
.x8f_c00453{left:247.650000px;}
.x6a_c00453{left:248.850000px;}
.x26_c00453{left:253.950000px;}
.x8e_c00453{left:255.450000px;}
.x1e_c00453{left:257.100000px;}
.x65_c00453{left:258.150000px;}
.x56_c00453{left:259.950000px;}
.x50_c00453{left:261.300000px;}
.x8d_c00453{left:262.650000px;}
.x12_c00453{left:264.750000px;}
.x6e_c00453{left:266.550000px;}
.xb_c00453{left:268.200000px;}
.x2d_c00453{left:269.400000px;}
.x95_c00453{left:270.600000px;}
.x5_c00453{left:271.800000px;}
.x38_c00453{left:272.850000px;}
.x3f_c00453{left:274.650000px;}
.x9b_c00453{left:276.750000px;}
.x27_c00453{left:278.400000px;}
.x92_c00453{left:279.450000px;}
.x13_c00453{left:281.250000px;}
.x18_c00453{left:283.200000px;}
.x40_c00453{left:285.000000px;}
.x4d_c00453{left:286.050000px;}
.x23_c00453{left:288.150000px;}
.x3a_c00453{left:290.550000px;}
.x47_c00453{left:292.200000px;}
.x75_c00453{left:294.450000px;}
.x87_c00453{left:296.250000px;}
.x14_c00453{left:298.200000px;}
.x71_c00453{left:299.850000px;}
.x59_c00453{left:301.350000px;}
.x7d_c00453{left:304.200000px;}
.x7b_c00453{left:305.400000px;}
.x1a_c00453{left:306.450000px;}
.x9c_c00453{left:308.400000px;}
.x82_c00453{left:310.350000px;}
.x3b_c00453{left:311.850000px;}
.x88_c00453{left:313.350000px;}
.x1b_c00453{left:314.700000px;}
.x76_c00453{left:316.050000px;}
.x2e_c00453{left:318.300000px;}
.x96_c00453{left:321.300000px;}
.x8b_c00453{left:323.100000px;}
.x24_c00453{left:324.900000px;}
.xc_c00453{left:326.550000px;}
.x35_c00453{left:328.650000px;}
.x57_c00453{left:330.150000px;}
.x43_c00453{left:332.550000px;}
.x6b_c00453{left:333.900000px;}
.x28_c00453{left:335.700000px;}
.x39_c00453{left:336.900000px;}
.x2f_c00453{left:338.850000px;}
.x6_c00453{left:343.050000px;}
.x80_c00453{left:345.750000px;}
.x3c_c00453{left:346.800000px;}
.x36_c00453{left:349.950000px;}
.x1f_c00453{left:351.750000px;}
.xd_c00453{left:352.800000px;}
.x60_c00453{left:355.800000px;}
.x83_c00453{left:357.150000px;}
.x51_c00453{left:358.950000px;}
.x30_c00453{left:362.550000px;}
.x1c_c00453{left:365.100000px;}
.x7a_c00453{left:367.350000px;}
.x52_c00453{left:369.000000px;}
.x5e_c00453{left:371.100000px;}
.x48_c00453{left:373.500000px;}
.x84_c00453{left:377.700000px;}
.x66_c00453{left:378.750000px;}
.xe_c00453{left:380.850000px;}
.x5a_c00453{left:382.350000px;}
.x6f_c00453{left:385.050000px;}
.x15_c00453{left:386.100000px;}
.x29_c00453{left:388.650000px;}
.x44_c00453{left:391.650000px;}
.x79_c00453{left:394.200000px;}
.x20_c00453{left:395.400000px;}
.x1d_c00453{left:398.550000px;}
.x7e_c00453{left:400.050000px;}
.x72_c00453{left:401.700000px;}
.x31_c00453{left:402.900000px;}
.x8a_c00453{left:403.950000px;}
.x45_c00453{left:407.550000px;}
.x97_c00453{left:408.750000px;}
.x4e_c00453{left:409.950000px;}
.xf_c00453{left:412.200000px;}
.x3d_c00453{left:414.150000px;}
.x7_c00453{left:416.550000px;}
.x7c_c00453{left:419.250000px;}
.x58_c00453{left:420.750000px;}
.x49_c00453{left:421.800000px;}
.x67_c00453{left:423.000000px;}
.x32_c00453{left:424.200000px;}
.x6c_c00453{left:426.000000px;}
.x53_c00453{left:427.350000px;}
.x8_c00453{left:429.150000px;}
.x2_c00453{left:430.950000px;}
.x7f_c00453{left:433.200000px;}
.x81_c00453{left:434.700000px;}
.x4f_c00453{left:436.950000px;}
.x98_c00453{left:438.150000px;}
.x77_c00453{left:439.200000px;}
.x16_c00453{left:441.150000px;}
.x61_c00453{left:442.200000px;}
.x73_c00453{left:444.150000px;}
.x3e_c00453{left:446.250000px;}
.x85_c00453{left:447.450000px;}
.x9d_c00453{left:449.250000px;}
.x5f_c00453{left:451.050000px;}
.x4a_c00453{left:452.700000px;}
.x9_c00453{left:454.650000px;}
.x6d_c00453{left:460.950000px;}
.x10_c00453{left:463.350000px;}
.x74_c00453{left:465.000000px;}
.x33_c00453{left:467.400000px;}
.x8c_c00453{left:470.100000px;}
.x5b_c00453{left:473.100000px;}
.x4b_c00453{left:475.050000px;}
.x86_c00453{left:478.050000px;}
.x99_c00453{left:479.850000px;}
.x46_c00453{left:482.400000px;}
.x11_c00453{left:483.900000px;}
.x68_c00453{left:486.000000px;}
.xa_c00453{left:487.800000px;}
.x17_c00453{left:490.050000px;}
.x78_c00453{left:492.150000px;}
.x25_c00453{left:494.100000px;}
.x2a_c00453{left:496.200000px;}
.x62_c00453{left:497.250000px;}
.x9a_c00453{left:501.450000px;}
.x69_c00453{left:503.700000px;}
.x90_c00453{left:507.000000px;}
.x54_c00453{left:508.050000px;}
.x93_c00453{left:509.100000px;}
.x89_c00453{left:511.950000px;}
.x63_c00453{left:518.850000px;}
.x9f_c00453{left:524.100000px;}
.x5c_c00453{left:529.200000px;}
.xfb_c00453{left:543.600000px;}
.xa8_c00453{left:557.700000px;}
.x13e_c00453{left:558.900000px;}
.x11f_c00453{left:560.100000px;}
.xff_c00453{left:561.300000px;}
.xe8_c00453{left:569.100000px;}
.xae_c00453{left:571.350000px;}
.xa0_c00453{left:572.700000px;}
.xd0_c00453{left:575.100000px;}
.x129_c00453{left:576.300000px;}
.xe1_c00453{left:581.100000px;}
.x120_c00453{left:583.200000px;}
.x122_c00453{left:584.850000px;}
.xd1_c00453{left:586.650000px;}
.x12c_c00453{left:590.550000px;}
.xb1_c00453{left:593.400000px;}
.xd9_c00453{left:595.350000px;}
.xe2_c00453{left:598.350000px;}
.xbd_c00453{left:601.050000px;}
.xe9_c00453{left:604.350000px;}
.xd2_c00453{left:605.400000px;}
.x100_c00453{left:608.850000px;}
.xb2_c00453{left:612.450000px;}
.x113_c00453{left:614.100000px;}
.xc5_c00453{left:616.350000px;}
.x12a_c00453{left:619.500000px;}
.xea_c00453{left:620.850000px;}
.xd3_c00453{left:623.700000px;}
.x12d_c00453{left:624.750000px;}
.xb3_c00453{left:627.150000px;}
.xa1_c00453{left:629.250000px;}
.x133_c00453{left:630.450000px;}
.xfc_c00453{left:632.100000px;}
.x134_c00453{left:633.900000px;}
.x10c_c00453{left:635.400000px;}
.xbe_c00453{left:636.750000px;}
.x12b_c00453{left:639.300000px;}
.xd4_c00453{left:642.000000px;}
.xda_c00453{left:643.200000px;}
.xfa_c00453{left:644.250000px;}
.xf0_c00453{left:645.600000px;}
.x130_c00453{left:648.600000px;}
.x108_c00453{left:650.250000px;}
.xbf_c00453{left:653.250000px;}
.xa2_c00453{left:654.450000px;}
.xc6_c00453{left:655.650000px;}
.xc3_c00453{left:656.700000px;}
.xe3_c00453{left:657.750000px;}
.xd5_c00453{left:659.700000px;}
.x13f_c00453{left:661.800000px;}
.x118_c00453{left:663.600000px;}
.x115_c00453{left:664.650000px;}
.xeb_c00453{left:666.150000px;}
.xb4_c00453{left:667.800000px;}
.x114_c00453{left:668.850000px;}
.xc4_c00453{left:671.850000px;}
.x12e_c00453{left:673.650000px;}
.xce_c00453{left:674.850000px;}
.xe4_c00453{left:677.850000px;}
.x119_c00453{left:680.850000px;}
.x11c_c00453{left:682.350000px;}
.xec_c00453{left:685.200000px;}
.xb5_c00453{left:687.600000px;}
.x125_c00453{left:688.800000px;}
.xdb_c00453{left:690.300000px;}
.xf1_c00453{left:692.400000px;}
.x13d_c00453{left:693.450000px;}
.xd6_c00453{left:694.950000px;}
.xe5_c00453{left:696.900000px;}
.x104_c00453{left:700.800000px;}
.x109_c00453{left:702.750000px;}
.xc0_c00453{left:703.950000px;}
.xd7_c00453{left:705.000000px;}
.xf2_c00453{left:707.550000px;}
.xb8_c00453{left:709.200000px;}
.xed_c00453{left:710.400000px;}
.x126_c00453{left:712.200000px;}
.x110_c00453{left:713.850000px;}
.x101_c00453{left:715.650000px;}
.xb9_c00453{left:716.700000px;}
.xcf_c00453{left:719.550000px;}
.x105_c00453{left:720.900000px;}
.x123_c00453{left:721.950000px;}
.xba_c00453{left:723.900000px;}
.x10d_c00453{left:725.700000px;}
.x136_c00453{left:728.100000px;}
.xd8_c00453{left:729.150000px;}
.x138_c00453{left:731.250000px;}
.xa3_c00453{left:733.350000px;}
.xcc_c00453{left:735.000000px;}
.xdc_c00453{left:736.050000px;}
.xb6_c00453{left:739.050000px;}
.x11d_c00453{left:741.150000px;}
.xf7_c00453{left:743.100000px;}
.xc7_c00453{left:745.950000px;}
.x10a_c00453{left:748.050000px;}
.x127_c00453{left:749.550000px;}
.xc1_c00453{left:750.750000px;}
.xc8_c00453{left:753.450000px;}
.x128_c00453{left:756.450000px;}
.x116_c00453{left:757.950000px;}
.x11e_c00453{left:759.000000px;}
.xc9_c00453{left:760.650000px;}
.x121_c00453{left:763.800000px;}
.xa4_c00453{left:765.450000px;}
.x137_c00453{left:766.650000px;}
.xca_c00453{left:767.850000px;}
.xdd_c00453{left:769.200000px;}
.xf3_c00453{left:770.550000px;}
.x139_c00453{left:771.600000px;}
.xcd_c00453{left:773.100000px;}
.xbb_c00453{left:774.750000px;}
.x102_c00453{left:776.850000px;}
.x106_c00453{left:778.500000px;}
.xbc_c00453{left:781.950000px;}
.xb7_c00453{left:783.000000px;}
.x12f_c00453{left:784.800000px;}
.xc2_c00453{left:788.850000px;}
.xfd_c00453{left:789.900000px;}
.xee_c00453{left:791.700000px;}
.x10b_c00453{left:792.750000px;}
.xf8_c00453{left:797.400000px;}
.xa5_c00453{left:799.350000px;}
.x135_c00453{left:804.300000px;}
.x10e_c00453{left:805.950000px;}
.xaf_c00453{left:809.700000px;}
.xa9_c00453{left:810.750000px;}
.x131_c00453{left:811.800000px;}
.xde_c00453{left:814.500000px;}
.xe6_c00453{left:815.700000px;}
.xf4_c00453{left:817.800000px;}
.x103_c00453{left:819.750000px;}
.x11a_c00453{left:820.950000px;}
.x111_c00453{left:822.900000px;}
.x13a_c00453{left:825.600000px;}
.xef_c00453{left:826.950000px;}
.xf5_c00453{left:828.300000px;}
.xa6_c00453{left:830.250000px;}
.x13c_c00453{left:831.600000px;}
.xaa_c00453{left:833.100000px;}
.xdf_c00453{left:835.350000px;}
.xcb_c00453{left:836.550000px;}
.xac_c00453{left:837.750000px;}
.xb0_c00453{left:840.000000px;}
.x124_c00453{left:841.500000px;}
.x10f_c00453{left:843.450000px;}
.x11b_c00453{left:845.400000px;}
.x107_c00453{left:846.600000px;}
.x132_c00453{left:848.100000px;}
.xe7_c00453{left:851.700000px;}
.xe0_c00453{left:853.650000px;}
.xfe_c00453{left:859.350000px;}
.xf9_c00453{left:860.850000px;}
.x112_c00453{left:863.550000px;}
.xa7_c00453{left:864.750000px;}
.xf6_c00453{left:865.800000px;}
.xad_c00453{left:866.850000px;}
.xab_c00453{left:868.050000px;}
.x13b_c00453{left:871.800000px;}
.x117_c00453{left:875.250000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls1_c00453{letter-spacing:0.000000pt;}
.ls0_c00453{letter-spacing:52.698413pt;}
.ws8_c00453{word-spacing:-79.365079pt;}
.ws1_c00453{word-spacing:-7.746032pt;}
.wsa_c00453{word-spacing:-6.164185pt;}
.ws0_c00453{word-spacing:-1.610063pt;}
.wsb_c00453{word-spacing:0.000000pt;}
.ws4_c00453{word-spacing:1.846154pt;}
.ws2_c00453{word-spacing:2.004246pt;}
.ws3_c00453{word-spacing:2.729783pt;}
.ws5_c00453{word-spacing:2.940906pt;}
.ws9_c00453{word-spacing:6.188983pt;}
.ws6_c00453{word-spacing:19.682540pt;}
.ws7_c00453{word-spacing:26.031746pt;}
._3_c00453{margin-left:-52.698413pt;}
._0_c00453{width:49.523810pt;}
._2_c00453{width:52.698413pt;}
._1_c00453{width:57.460317pt;}
.fs7_c00453{font-size:26.666667pt;}
.fs6_c00453{font-size:37.333333pt;}
.fs5_c00453{font-size:48.000000pt;}
.fs4_c00453{font-size:53.333333pt;}
.fs2_c00453{font-size:58.666667pt;}
.fs3_c00453{font-size:64.000000pt;}
.fs0_c00453{font-size:69.333333pt;}
.fs1_c00453{font-size:74.666667pt;}
.y0_c00453{bottom:0.000000pt;}
.y39_c00453{bottom:171.466667pt;}
.y72_c00453{bottom:172.266667pt;}
.y36_c00453{bottom:173.333333pt;}
.y38_c00453{bottom:174.133333pt;}
.y35_c00453{bottom:186.133333pt;}
.y71_c00453{bottom:187.600000pt;}
.y34_c00453{bottom:198.666667pt;}
.y37_c00453{bottom:199.733333pt;}
.y70_c00453{bottom:203.333333pt;}
.y33_c00453{bottom:213.733333pt;}
.y6f_c00453{bottom:219.600000pt;}
.y32_c00453{bottom:224.266667pt;}
.y6e_c00453{bottom:235.333333pt;}
.y31_c00453{bottom:236.666667pt;}
.y30_c00453{bottom:249.200000pt;}
.y6d_c00453{bottom:251.066667pt;}
.y2f_c00453{bottom:262.666667pt;}
.y6c_c00453{bottom:267.066667pt;}
.y2e_c00453{bottom:279.733333pt;}
.y6b_c00453{bottom:282.800000pt;}
.y2d_c00453{bottom:295.466667pt;}
.y6a_c00453{bottom:298.800000pt;}
.y2c_c00453{bottom:311.466667pt;}
.y69_c00453{bottom:314.800000pt;}
.y2b_c00453{bottom:327.466667pt;}
.y68_c00453{bottom:330.800000pt;}
.y2a_c00453{bottom:343.466667pt;}
.y67_c00453{bottom:346.800000pt;}
.y29_c00453{bottom:359.733333pt;}
.y66_c00453{bottom:362.533333pt;}
.y28_c00453{bottom:378.000000pt;}
.y65_c00453{bottom:378.800000pt;}
.y64_c00453{bottom:394.533333pt;}
.y27_c00453{bottom:394.666667pt;}
.y63_c00453{bottom:410.533333pt;}
.y26_c00453{bottom:410.933333pt;}
.y62_c00453{bottom:426.533333pt;}
.y25_c00453{bottom:426.666667pt;}
.y61_c00453{bottom:442.266667pt;}
.y24_c00453{bottom:442.666667pt;}
.y60_c00453{bottom:458.266667pt;}
.y23_c00453{bottom:458.666667pt;}
.y5f_c00453{bottom:474.266667pt;}
.y22_c00453{bottom:474.400000pt;}
.y5e_c00453{bottom:490.266667pt;}
.y21_c00453{bottom:490.400000pt;}
.y5d_c00453{bottom:506.000000pt;}
.y20_c00453{bottom:506.133333pt;}
.y5c_c00453{bottom:521.733333pt;}
.y1f_c00453{bottom:537.200000pt;}
.y1e_c00453{bottom:537.866667pt;}
.y5b_c00453{bottom:538.000000pt;}
.y5a_c00453{bottom:553.733333pt;}
.y1d_c00453{bottom:557.066667pt;}
.y59_c00453{bottom:569.466667pt;}
.y1c_c00453{bottom:580.800000pt;}
.y58_c00453{bottom:585.466667pt;}
.y1b_c00453{bottom:600.533333pt;}
.y57_c00453{bottom:601.466667pt;}
.y1a_c00453{bottom:616.533333pt;}
.y56_c00453{bottom:617.466667pt;}
.y19_c00453{bottom:632.533333pt;}
.y55_c00453{bottom:633.466667pt;}
.y18_c00453{bottom:648.266667pt;}
.y54_c00453{bottom:649.466667pt;}
.y17_c00453{bottom:664.000000pt;}
.y53_c00453{bottom:665.200000pt;}
.y16_c00453{bottom:680.000000pt;}
.y52_c00453{bottom:680.933333pt;}
.y15_c00453{bottom:696.000000pt;}
.y51_c00453{bottom:696.933333pt;}
.y14_c00453{bottom:711.733333pt;}
.y50_c00453{bottom:712.933333pt;}
.y13_c00453{bottom:727.733333pt;}
.y4f_c00453{bottom:728.933333pt;}
.y12_c00453{bottom:743.733333pt;}
.y4c_c00453{bottom:750.800000pt;}
.y11_c00453{bottom:761.600000pt;}
.y4b_c00453{bottom:763.866667pt;}
.y4a_c00453{bottom:776.666667pt;}
.y10_c00453{bottom:778.933333pt;}
.y49_c00453{bottom:789.733333pt;}
.yf_c00453{bottom:798.133333pt;}
.y48_c00453{bottom:802.266667pt;}
.ye_c00453{bottom:814.133333pt;}
.y47_c00453{bottom:815.333333pt;}
.y46_c00453{bottom:827.866667pt;}
.yd_c00453{bottom:833.866667pt;}
.y45_c00453{bottom:840.666667pt;}
.yc_c00453{bottom:853.733333pt;}
.y44_c00453{bottom:856.933333pt;}
.yb_c00453{bottom:869.733333pt;}
.y43_c00453{bottom:883.200000pt;}
.ya_c00453{bottom:885.733333pt;}
.y42_c00453{bottom:895.600000pt;}
.y9_c00453{bottom:901.466667pt;}
.y41_c00453{bottom:908.133333pt;}
.y8_c00453{bottom:917.466667pt;}
.y4d_c00453{bottom:920.266667pt;}
.y40_c00453{bottom:920.666667pt;}
.y4e_c00453{bottom:921.866667pt;}
.y7_c00453{bottom:933.066667pt;}
.y3f_c00453{bottom:933.733333pt;}
.y3e_c00453{bottom:946.533333pt;}
.y6_c00453{bottom:948.800000pt;}
.y3d_c00453{bottom:959.066667pt;}
.y5_c00453{bottom:964.800000pt;}
.y3c_c00453{bottom:972.133333pt;}
.y4_c00453{bottom:980.800000pt;}
.y3b_c00453{bottom:984.933333pt;}
.y3_c00453{bottom:996.800000pt;}
.y3a_c00453{bottom:997.733333pt;}
.y1_c00453{bottom:1015.333333pt;}
.y2_c00453{bottom:1020.400000pt;}
.h9_c00453{height:26.666667pt;}
.h8_c00453{height:37.333333pt;}
.h7_c00453{height:48.000000pt;}
.h6_c00453{height:53.333333pt;}
.h4_c00453{height:58.666667pt;}
.h5_c00453{height:64.000000pt;}
.h2_c00453{height:69.333333pt;}
.h3_c00453{height:74.666667pt;}
.h1_c00453{height:1134.666667pt;}
.h0_c00453{height:1134.719971pt;}
.w0_c00453{width:851.840007pt;}
.w1_c00453{width:852.000000pt;}
.x0_c00453{left:0.000000pt;}
.x1_c00453{left:164.133333pt;}
.x41_c00453{left:166.400000pt;}
.x91_c00453{left:180.000000pt;}
.x3_c00453{left:181.466667pt;}
.x21_c00453{left:182.533333pt;}
.x2b_c00453{left:183.466667pt;}
.x9e_c00453{left:191.333333pt;}
.x94_c00453{left:192.266667pt;}
.x37_c00453{left:197.733333pt;}
.x19_c00453{left:199.066667pt;}
.x4_c00453{left:200.000000pt;}
.x55_c00453{left:202.000000pt;}
.x4c_c00453{left:203.066667pt;}
.x22_c00453{left:204.933333pt;}
.x34_c00453{left:206.400000pt;}
.x70_c00453{left:210.933333pt;}
.x2c_c00453{left:213.200000pt;}
.x5d_c00453{left:214.400000pt;}
.x42_c00453{left:216.266667pt;}
.x64_c00453{left:218.000000pt;}
.x8f_c00453{left:220.133333pt;}
.x6a_c00453{left:221.200000pt;}
.x26_c00453{left:225.733333pt;}
.x8e_c00453{left:227.066667pt;}
.x1e_c00453{left:228.533333pt;}
.x65_c00453{left:229.466667pt;}
.x56_c00453{left:231.066667pt;}
.x50_c00453{left:232.266667pt;}
.x8d_c00453{left:233.466667pt;}
.x12_c00453{left:235.333333pt;}
.x6e_c00453{left:236.933333pt;}
.xb_c00453{left:238.400000pt;}
.x2d_c00453{left:239.466667pt;}
.x95_c00453{left:240.533333pt;}
.x5_c00453{left:241.600000pt;}
.x38_c00453{left:242.533333pt;}
.x3f_c00453{left:244.133333pt;}
.x9b_c00453{left:246.000000pt;}
.x27_c00453{left:247.466667pt;}
.x92_c00453{left:248.400000pt;}
.x13_c00453{left:250.000000pt;}
.x18_c00453{left:251.733333pt;}
.x40_c00453{left:253.333333pt;}
.x4d_c00453{left:254.266667pt;}
.x23_c00453{left:256.133333pt;}
.x3a_c00453{left:258.266667pt;}
.x47_c00453{left:259.733333pt;}
.x75_c00453{left:261.733333pt;}
.x87_c00453{left:263.333333pt;}
.x14_c00453{left:265.066667pt;}
.x71_c00453{left:266.533333pt;}
.x59_c00453{left:267.866667pt;}
.x7d_c00453{left:270.400000pt;}
.x7b_c00453{left:271.466667pt;}
.x1a_c00453{left:272.400000pt;}
.x9c_c00453{left:274.133333pt;}
.x82_c00453{left:275.866667pt;}
.x3b_c00453{left:277.200000pt;}
.x88_c00453{left:278.533333pt;}
.x1b_c00453{left:279.733333pt;}
.x76_c00453{left:280.933333pt;}
.x2e_c00453{left:282.933333pt;}
.x96_c00453{left:285.600000pt;}
.x8b_c00453{left:287.200000pt;}
.x24_c00453{left:288.800000pt;}
.xc_c00453{left:290.266667pt;}
.x35_c00453{left:292.133333pt;}
.x57_c00453{left:293.466667pt;}
.x43_c00453{left:295.600000pt;}
.x6b_c00453{left:296.800000pt;}
.x28_c00453{left:298.400000pt;}
.x39_c00453{left:299.466667pt;}
.x2f_c00453{left:301.200000pt;}
.x6_c00453{left:304.933333pt;}
.x80_c00453{left:307.333333pt;}
.x3c_c00453{left:308.266667pt;}
.x36_c00453{left:311.066667pt;}
.x1f_c00453{left:312.666667pt;}
.xd_c00453{left:313.600000pt;}
.x60_c00453{left:316.266667pt;}
.x83_c00453{left:317.466667pt;}
.x51_c00453{left:319.066667pt;}
.x30_c00453{left:322.266667pt;}
.x1c_c00453{left:324.533333pt;}
.x7a_c00453{left:326.533333pt;}
.x52_c00453{left:328.000000pt;}
.x5e_c00453{left:329.866667pt;}
.x48_c00453{left:332.000000pt;}
.x84_c00453{left:335.733333pt;}
.x66_c00453{left:336.666667pt;}
.xe_c00453{left:338.533333pt;}
.x5a_c00453{left:339.866667pt;}
.x6f_c00453{left:342.266667pt;}
.x15_c00453{left:343.200000pt;}
.x29_c00453{left:345.466667pt;}
.x44_c00453{left:348.133333pt;}
.x79_c00453{left:350.400000pt;}
.x20_c00453{left:351.466667pt;}
.x1d_c00453{left:354.266667pt;}
.x7e_c00453{left:355.600000pt;}
.x72_c00453{left:357.066667pt;}
.x31_c00453{left:358.133333pt;}
.x8a_c00453{left:359.066667pt;}
.x45_c00453{left:362.266667pt;}
.x97_c00453{left:363.333333pt;}
.x4e_c00453{left:364.400000pt;}
.xf_c00453{left:366.400000pt;}
.x3d_c00453{left:368.133333pt;}
.x7_c00453{left:370.266667pt;}
.x7c_c00453{left:372.666667pt;}
.x58_c00453{left:374.000000pt;}
.x49_c00453{left:374.933333pt;}
.x67_c00453{left:376.000000pt;}
.x32_c00453{left:377.066667pt;}
.x6c_c00453{left:378.666667pt;}
.x53_c00453{left:379.866667pt;}
.x8_c00453{left:381.466667pt;}
.x2_c00453{left:383.066667pt;}
.x7f_c00453{left:385.066667pt;}
.x81_c00453{left:386.400000pt;}
.x4f_c00453{left:388.400000pt;}
.x98_c00453{left:389.466667pt;}
.x77_c00453{left:390.400000pt;}
.x16_c00453{left:392.133333pt;}
.x61_c00453{left:393.066667pt;}
.x73_c00453{left:394.800000pt;}
.x3e_c00453{left:396.666667pt;}
.x85_c00453{left:397.733333pt;}
.x9d_c00453{left:399.333333pt;}
.x5f_c00453{left:400.933333pt;}
.x4a_c00453{left:402.400000pt;}
.x9_c00453{left:404.133333pt;}
.x6d_c00453{left:409.733333pt;}
.x10_c00453{left:411.866667pt;}
.x74_c00453{left:413.333333pt;}
.x33_c00453{left:415.466667pt;}
.x8c_c00453{left:417.866667pt;}
.x5b_c00453{left:420.533333pt;}
.x4b_c00453{left:422.266667pt;}
.x86_c00453{left:424.933333pt;}
.x99_c00453{left:426.533333pt;}
.x46_c00453{left:428.800000pt;}
.x11_c00453{left:430.133333pt;}
.x68_c00453{left:432.000000pt;}
.xa_c00453{left:433.600000pt;}
.x17_c00453{left:435.600000pt;}
.x78_c00453{left:437.466667pt;}
.x25_c00453{left:439.200000pt;}
.x2a_c00453{left:441.066667pt;}
.x62_c00453{left:442.000000pt;}
.x9a_c00453{left:445.733333pt;}
.x69_c00453{left:447.733333pt;}
.x90_c00453{left:450.666667pt;}
.x54_c00453{left:451.600000pt;}
.x93_c00453{left:452.533333pt;}
.x89_c00453{left:455.066667pt;}
.x63_c00453{left:461.200000pt;}
.x9f_c00453{left:465.866667pt;}
.x5c_c00453{left:470.400000pt;}
.xfb_c00453{left:483.200000pt;}
.xa8_c00453{left:495.733333pt;}
.x13e_c00453{left:496.800000pt;}
.x11f_c00453{left:497.866667pt;}
.xff_c00453{left:498.933333pt;}
.xe8_c00453{left:505.866667pt;}
.xae_c00453{left:507.866667pt;}
.xa0_c00453{left:509.066667pt;}
.xd0_c00453{left:511.200000pt;}
.x129_c00453{left:512.266667pt;}
.xe1_c00453{left:516.533333pt;}
.x120_c00453{left:518.400000pt;}
.x122_c00453{left:519.866667pt;}
.xd1_c00453{left:521.466667pt;}
.x12c_c00453{left:524.933333pt;}
.xb1_c00453{left:527.466667pt;}
.xd9_c00453{left:529.200000pt;}
.xe2_c00453{left:531.866667pt;}
.xbd_c00453{left:534.266667pt;}
.xe9_c00453{left:537.200000pt;}
.xd2_c00453{left:538.133333pt;}
.x100_c00453{left:541.200000pt;}
.xb2_c00453{left:544.400000pt;}
.x113_c00453{left:545.866667pt;}
.xc5_c00453{left:547.866667pt;}
.x12a_c00453{left:550.666667pt;}
.xea_c00453{left:551.866667pt;}
.xd3_c00453{left:554.400000pt;}
.x12d_c00453{left:555.333333pt;}
.xb3_c00453{left:557.466667pt;}
.xa1_c00453{left:559.333333pt;}
.x133_c00453{left:560.400000pt;}
.xfc_c00453{left:561.866667pt;}
.x134_c00453{left:563.466667pt;}
.x10c_c00453{left:564.800000pt;}
.xbe_c00453{left:566.000000pt;}
.x12b_c00453{left:568.266667pt;}
.xd4_c00453{left:570.666667pt;}
.xda_c00453{left:571.733333pt;}
.xfa_c00453{left:572.666667pt;}
.xf0_c00453{left:573.866667pt;}
.x130_c00453{left:576.533333pt;}
.x108_c00453{left:578.000000pt;}
.xbf_c00453{left:580.666667pt;}
.xa2_c00453{left:581.733333pt;}
.xc6_c00453{left:582.800000pt;}
.xc3_c00453{left:583.733333pt;}
.xe3_c00453{left:584.666667pt;}
.xd5_c00453{left:586.400000pt;}
.x13f_c00453{left:588.266667pt;}
.x118_c00453{left:589.866667pt;}
.x115_c00453{left:590.800000pt;}
.xeb_c00453{left:592.133333pt;}
.xb4_c00453{left:593.600000pt;}
.x114_c00453{left:594.533333pt;}
.xc4_c00453{left:597.200000pt;}
.x12e_c00453{left:598.800000pt;}
.xce_c00453{left:599.866667pt;}
.xe4_c00453{left:602.533333pt;}
.x119_c00453{left:605.200000pt;}
.x11c_c00453{left:606.533333pt;}
.xec_c00453{left:609.066667pt;}
.xb5_c00453{left:611.200000pt;}
.x125_c00453{left:612.266667pt;}
.xdb_c00453{left:613.600000pt;}
.xf1_c00453{left:615.466667pt;}
.x13d_c00453{left:616.400000pt;}
.xd6_c00453{left:617.733333pt;}
.xe5_c00453{left:619.466667pt;}
.x104_c00453{left:622.933333pt;}
.x109_c00453{left:624.666667pt;}
.xc0_c00453{left:625.733333pt;}
.xd7_c00453{left:626.666667pt;}
.xf2_c00453{left:628.933333pt;}
.xb8_c00453{left:630.400000pt;}
.xed_c00453{left:631.466667pt;}
.x126_c00453{left:633.066667pt;}
.x110_c00453{left:634.533333pt;}
.x101_c00453{left:636.133333pt;}
.xb9_c00453{left:637.066667pt;}
.xcf_c00453{left:639.600000pt;}
.x105_c00453{left:640.800000pt;}
.x123_c00453{left:641.733333pt;}
.xba_c00453{left:643.466667pt;}
.x10d_c00453{left:645.066667pt;}
.x136_c00453{left:647.200000pt;}
.xd8_c00453{left:648.133333pt;}
.x138_c00453{left:650.000000pt;}
.xa3_c00453{left:651.866667pt;}
.xcc_c00453{left:653.333333pt;}
.xdc_c00453{left:654.266667pt;}
.xb6_c00453{left:656.933333pt;}
.x11d_c00453{left:658.800000pt;}
.xf7_c00453{left:660.533333pt;}
.xc7_c00453{left:663.066667pt;}
.x10a_c00453{left:664.933333pt;}
.x127_c00453{left:666.266667pt;}
.xc1_c00453{left:667.333333pt;}
.xc8_c00453{left:669.733333pt;}
.x128_c00453{left:672.400000pt;}
.x116_c00453{left:673.733333pt;}
.x11e_c00453{left:674.666667pt;}
.xc9_c00453{left:676.133333pt;}
.x121_c00453{left:678.933333pt;}
.xa4_c00453{left:680.400000pt;}
.x137_c00453{left:681.466667pt;}
.xca_c00453{left:682.533333pt;}
.xdd_c00453{left:683.733333pt;}
.xf3_c00453{left:684.933333pt;}
.x139_c00453{left:685.866667pt;}
.xcd_c00453{left:687.200000pt;}
.xbb_c00453{left:688.666667pt;}
.x102_c00453{left:690.533333pt;}
.x106_c00453{left:692.000000pt;}
.xbc_c00453{left:695.066667pt;}
.xb7_c00453{left:696.000000pt;}
.x12f_c00453{left:697.600000pt;}
.xc2_c00453{left:701.200000pt;}
.xfd_c00453{left:702.133333pt;}
.xee_c00453{left:703.733333pt;}
.x10b_c00453{left:704.666667pt;}
.xf8_c00453{left:708.800000pt;}
.xa5_c00453{left:710.533333pt;}
.x135_c00453{left:714.933333pt;}
.x10e_c00453{left:716.400000pt;}
.xaf_c00453{left:719.733333pt;}
.xa9_c00453{left:720.666667pt;}
.x131_c00453{left:721.600000pt;}
.xde_c00453{left:724.000000pt;}
.xe6_c00453{left:725.066667pt;}
.xf4_c00453{left:726.933333pt;}
.x103_c00453{left:728.666667pt;}
.x11a_c00453{left:729.733333pt;}
.x111_c00453{left:731.466667pt;}
.x13a_c00453{left:733.866667pt;}
.xef_c00453{left:735.066667pt;}
.xf5_c00453{left:736.266667pt;}
.xa6_c00453{left:738.000000pt;}
.x13c_c00453{left:739.200000pt;}
.xaa_c00453{left:740.533333pt;}
.xdf_c00453{left:742.533333pt;}
.xcb_c00453{left:743.600000pt;}
.xac_c00453{left:744.666667pt;}
.xb0_c00453{left:746.666667pt;}
.x124_c00453{left:748.000000pt;}
.x10f_c00453{left:749.733333pt;}
.x11b_c00453{left:751.466667pt;}
.x107_c00453{left:752.533333pt;}
.x132_c00453{left:753.866667pt;}
.xe7_c00453{left:757.066667pt;}
.xe0_c00453{left:758.800000pt;}
.xfe_c00453{left:763.866667pt;}
.xf9_c00453{left:765.200000pt;}
.x112_c00453{left:767.600000pt;}
.xa7_c00453{left:768.666667pt;}
.xf6_c00453{left:769.600000pt;}
.xad_c00453{left:770.533333pt;}
.xab_c00453{left:771.600000pt;}
.x13b_c00453{left:774.933333pt;}
.x117_c00453{left:778.000000pt;}
}





/* 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_c00454 {
    display:none;
  }
  .loading-indicator_c00454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00454 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_c00454 { 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_c00454" -> "#page-container .classname_c00454")
 */
.pf_c00454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00454 { /* 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_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00454 { /* 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_c00454 { /* 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_c00454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00454 {overflow:visible;}
  }
}
.c_c00454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00454 { /* 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_c00454:after { /* webkit #35443 */
  content: '';
}
.t_c00454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00454 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 */
}
.__c00454 { /* 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_c00454 { /* info for Javascript */
  display:none;
}
.l_c00454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00454: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_c00454 {
    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_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00454.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_c00454 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00454;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.000000;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;}
.m9_c00454{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00454{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.me0_c00454{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mee_c00454{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m109_c00454{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md7_c00454{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00454{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me6_c00454{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.me8_c00454{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00454{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m73_c00454{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.me9_c00454{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m15_c00454{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m59_c00454{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m94_c00454{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me7_c00454{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mea_c00454{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00454{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m58_c00454{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00454{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mff_c00454{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.me1_c00454{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m99_c00454{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00454{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00454{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m50_c00454{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00454{transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00454{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m100_c00454{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m93_c00454{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00454{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.mad_c00454{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00454{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00454{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m24_c00454{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00454{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m70_c00454{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m90_c00454{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00454{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00454{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00454{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00454{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00454{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m112_c00454{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00454{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m84_c00454{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m53_c00454{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m45_c00454{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00454{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00454{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m55_c00454{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m75_c00454{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00454{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00454{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00454{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m62_c00454{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m110_c00454{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m49_c00454{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00454{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m106_c00454{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m122_c00454{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00454{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md3_c00454{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m72_c00454{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m18_c00454{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00454{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.me4_c00454{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00454{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00454{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00454{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00454{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00454{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m47_c00454{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m33_c00454{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00454{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m71_c00454{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00454{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00454{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m43_c00454{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m96_c00454{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m26_c00454{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m74_c00454{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m22_c00454{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m31_c00454{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m92_c00454{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00454{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb_c00454{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00454{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m16_c00454{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m54_c00454{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m63_c00454{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m30_c00454{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mac_c00454{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m121_c00454{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00454{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00454{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00454{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00454{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m85_c00454{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00454{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00454{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m69_c00454{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m117_c00454{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m28_c00454{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md_c00454{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m60_c00454{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m128_c00454{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m101_c00454{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m118_c00454{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m102_c00454{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00454{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00454{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m125_c00454{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mde_c00454{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00454{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2_c00454{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me5_c00454{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.md2_c00454{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00454{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m20_c00454{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m91_c00454{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00454{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mec_c00454{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m42_c00454{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m124_c00454{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00454{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md4_c00454{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mae_c00454{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mf_c00454{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00454{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m68_c00454{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00454{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00454{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00454{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00454{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00454{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m29_c00454{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00454{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00454{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00454{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m35_c00454{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6_c00454{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m23_c00454{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00454{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m105_c00454{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00454{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m51_c00454{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m107_c00454{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00454{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m11_c00454{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m88_c00454{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00454{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00454{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m111_c00454{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma_c00454{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00454{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m44_c00454{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m46_c00454{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m52_c00454{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00454{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m17_c00454{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00454{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mc_c00454{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.med_c00454{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00454{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m108_c00454{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00454{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m129_c00454{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m12_c00454{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m95_c00454{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m86_c00454{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m25_c00454{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00454{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00454{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00454{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00454{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00454{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m32_c00454{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00454{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me_c00454{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m116_c00454{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m115_c00454{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00454{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7_c00454{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.meb_c00454{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8_c00454{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00454{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m61_c00454{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00454{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m56_c00454{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md5_c00454{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00454{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00454{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m89_c00454{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00454{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00454{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m67_c00454{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m41_c00454{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m66_c00454{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00454{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mab_c00454{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m48_c00454{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00454{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m119_c00454{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m98_c00454{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m5_c00454{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00454{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m14_c00454{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m77_c00454{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00454{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00454{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00454{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00454{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m78_c00454{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m64_c00454{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00454{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00454{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me2_c00454{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m21_c00454{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m34_c00454{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m27_c00454{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00454{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00454{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m10_c00454{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00454{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mca_c00454{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m113_c00454{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00454{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m126_c00454{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00454{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md1_c00454{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m114_c00454{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00454{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m19_c00454{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00454{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m37_c00454{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m36_c00454{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00454{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m40_c00454{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m81_c00454{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.maf_c00454{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m82_c00454{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00454{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);}
.m87_c00454{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m13_c00454{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00454{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mda_c00454{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00454{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00454{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00454{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m39_c00454{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m127_c00454{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00454{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md9_c00454{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m80_c00454{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m65_c00454{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00454{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.md0_c00454{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m79_c00454{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md8_c00454{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00454{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m83_c00454{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m120_c00454{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00454{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00454{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mef_c00454{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00454{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00454{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m97_c00454{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m57_c00454{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mce_c00454{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00454{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m38_c00454{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.md6_c00454{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00454{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00454{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00454{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m76_c00454{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m123_c00454{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00454{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m103_c00454{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00454{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00454{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00454{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00454{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00454{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00454{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00454{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00454{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00454{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00454{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m0_c00454{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m104_c00454{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00454{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00454{transform:matrix(0.391250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00454{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.me3_c00454{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.maa_c00454{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mba_c00454{transform:matrix(3.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.150000,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls0_c00454{letter-spacing:0.000000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{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__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00454{word-spacing:-17.900344px;}
.ws5_c00454{word-spacing:-13.285714px;}
.wsb_c00454{word-spacing:-12.631579px;}
.wsc_c00454{word-spacing:-10.625000px;}
.ws1a_c00454{word-spacing:-10.407720px;}
.ws0_c00454{word-spacing:-9.602620px;}
.ws1c_c00454{word-spacing:-6.903780px;}
.ws1b_c00454{word-spacing:-4.949807px;}
.ws4_c00454{word-spacing:-4.906314px;}
.ws9_c00454{word-spacing:-3.483871px;}
.ws6_c00454{word-spacing:-2.298851px;}
.ws1_c00454{word-spacing:-0.137405px;}
.ws8_c00454{word-spacing:0.000000px;}
.wsa_c00454{word-spacing:2.500000px;}
.ws3_c00454{word-spacing:4.807860px;}
.ws7_c00454{word-spacing:9.560137px;}
.wsf_c00454{word-spacing:15.000000px;}
.ws18_c00454{word-spacing:16.785714px;}
.ws17_c00454{word-spacing:18.125000px;}
.ws13_c00454{word-spacing:23.211796px;}
.wsd_c00454{word-spacing:25.714286px;}
.ws15_c00454{word-spacing:34.642857px;}
.wse_c00454{word-spacing:40.000000px;}
.ws14_c00454{word-spacing:44.166667px;}
.ws16_c00454{word-spacing:45.375000px;}
.ws10_c00454{word-spacing:126.538462px;}
.ws11_c00454{word-spacing:142.083333px;}
.ws19_c00454{word-spacing:181.666667px;}
.ws12_c00454{word-spacing:254.847185px;}
._2_c00454{width:59.285714px;}
._0_c00454{width:64.642857px;}
._1_c00454{width:230.714286px;}
.fc0_c00454{color:transparent;}
.fs5_c00454{font-size:30.000000px;}
.fs7_c00454{font-size:42.000000px;}
.fs6_c00454{font-size:54.000000px;}
.fs3_c00454{font-size:60.000000px;}
.fs2_c00454{font-size:66.000000px;}
.fs4_c00454{font-size:72.000000px;}
.fs1_c00454{font-size:90.000000px;}
.fs0_c00454{font-size:102.000000px;}
.y0_c00454{bottom:0.000000px;}
.y6c_c00454{bottom:179.700000px;}
.y6b_c00454{bottom:198.300000px;}
.y34_c00454{bottom:198.450000px;}
.y6a_c00454{bottom:216.300000px;}
.y33_c00454{bottom:217.200000px;}
.y69_c00454{bottom:234.000000px;}
.y32_c00454{bottom:234.900000px;}
.y68_c00454{bottom:252.300000px;}
.y31_c00454{bottom:252.600000px;}
.y67_c00454{bottom:270.300000px;}
.y30_c00454{bottom:270.900000px;}
.y66_c00454{bottom:288.300000px;}
.y2f_c00454{bottom:288.600000px;}
.y2e_c00454{bottom:306.300000px;}
.y65_c00454{bottom:324.300000px;}
.y64_c00454{bottom:342.000000px;}
.y2d_c00454{bottom:349.200000px;}
.y63_c00454{bottom:360.000000px;}
.y2c_c00454{bottom:369.600000px;}
.y62_c00454{bottom:377.700000px;}
.y2b_c00454{bottom:387.600000px;}
.y61_c00454{bottom:396.000000px;}
.y2a_c00454{bottom:405.600000px;}
.y60_c00454{bottom:413.550000px;}
.y29_c00454{bottom:423.600000px;}
.y5f_c00454{bottom:430.800000px;}
.y28_c00454{bottom:441.300000px;}
.y5e_c00454{bottom:449.100000px;}
.y27_c00454{bottom:459.000000px;}
.y5d_c00454{bottom:466.800000px;}
.y26_c00454{bottom:476.250000px;}
.y5c_c00454{bottom:485.100000px;}
.y25_c00454{bottom:494.250000px;}
.y5b_c00454{bottom:502.800000px;}
.y24_c00454{bottom:511.950000px;}
.y5a_c00454{bottom:520.800000px;}
.y23_c00454{bottom:529.800000px;}
.y59_c00454{bottom:538.800000px;}
.y22_c00454{bottom:547.800000px;}
.y58_c00454{bottom:556.800000px;}
.y21_c00454{bottom:565.500000px;}
.y57_c00454{bottom:574.500000px;}
.y20_c00454{bottom:583.500000px;}
.y56_c00454{bottom:592.500000px;}
.y1f_c00454{bottom:601.200000px;}
.y55_c00454{bottom:610.200000px;}
.y1e_c00454{bottom:627.450000px;}
.y54_c00454{bottom:628.200000px;}
.y1d_c00454{bottom:645.450000px;}
.y53_c00454{bottom:652.650000px;}
.y1c_c00454{bottom:663.150000px;}
.y52_c00454{bottom:677.850000px;}
.y1b_c00454{bottom:681.150000px;}
.y51_c00454{bottom:692.550000px;}
.y1a_c00454{bottom:698.400000px;}
.y50_c00454{bottom:706.950000px;}
.y19_c00454{bottom:716.400000px;}
.y4f_c00454{bottom:721.050000px;}
.y18_c00454{bottom:734.400000px;}
.y4e_c00454{bottom:734.700000px;}
.y4d_c00454{bottom:749.250000px;}
.y17_c00454{bottom:752.100000px;}
.y4c_c00454{bottom:763.650000px;}
.y16_c00454{bottom:769.800000px;}
.y4b_c00454{bottom:778.350000px;}
.y15_c00454{bottom:787.500000px;}
.y4a_c00454{bottom:792.300000px;}
.y14_c00454{bottom:805.500000px;}
.y49_c00454{bottom:807.450000px;}
.y48_c00454{bottom:821.850000px;}
.y13_c00454{bottom:823.200000px;}
.y47_c00454{bottom:835.200000px;}
.y12_c00454{bottom:840.900000px;}
.y46_c00454{bottom:849.750000px;}
.y11_c00454{bottom:858.900000px;}
.y45_c00454{bottom:864.450000px;}
.y10_c00454{bottom:876.900000px;}
.y44_c00454{bottom:879.600000px;}
.y43_c00454{bottom:892.500000px;}
.yf_c00454{bottom:894.900000px;}
.y42_c00454{bottom:906.900000px;}
.ye_c00454{bottom:912.900000px;}
.y41_c00454{bottom:924.900000px;}
.y40_c00454{bottom:935.700000px;}
.yd_c00454{bottom:939.000000px;}
.y3f_c00454{bottom:950.100000px;}
.yc_c00454{bottom:957.300000px;}
.y3e_c00454{bottom:965.850000px;}
.yb_c00454{bottom:974.550000px;}
.y3d_c00454{bottom:989.250000px;}
.ya_c00454{bottom:992.550000px;}
.y3c_c00454{bottom:1006.950000px;}
.y9_c00454{bottom:1014.150000px;}
.y3b_c00454{bottom:1025.250000px;}
.y8_c00454{bottom:1032.450000px;}
.y3a_c00454{bottom:1042.500000px;}
.y7_c00454{bottom:1050.450000px;}
.y6_c00454{bottom:1068.150000px;}
.y39_c00454{bottom:1068.900000px;}
.y5_c00454{bottom:1086.150000px;}
.y38_c00454{bottom:1086.900000px;}
.y4_c00454{bottom:1104.150000px;}
.y37_c00454{bottom:1104.900000px;}
.y3_c00454{bottom:1121.700000px;}
.y36_c00454{bottom:1122.900000px;}
.y2_c00454{bottom:1144.800000px;}
.y1_c00454{bottom:1148.700000px;}
.y35_c00454{bottom:1265.100000px;}
.h7_c00454{height:30.000000px;}
.h9_c00454{height:42.000000px;}
.h8_c00454{height:54.000000px;}
.h5_c00454{height:60.000000px;}
.h4_c00454{height:66.000000px;}
.h6_c00454{height:72.000000px;}
.h3_c00454{height:90.000000px;}
.h2_c00454{height:102.000000px;}
.h1_c00454{height:1272.750000px;}
.h0_c00454{height:1272.960022px;}
.w0_c00454{width:958.320007px;}
.w1_c00454{width:958.500000px;}
.x0_c00454{left:0.000000px;}
.x3c_c00454{left:79.500000px;}
.x80_c00454{left:88.500000px;}
.x8c_c00454{left:94.350000px;}
.x45_c00454{left:95.850000px;}
.x3_c00454{left:96.900000px;}
.xd_c00454{left:97.950000px;}
.x42_c00454{left:99.000000px;}
.x2e_c00454{left:106.500000px;}
.x5b_c00454{left:112.800000px;}
.x4_c00454{left:115.200000px;}
.x53_c00454{left:118.800000px;}
.x43_c00454{left:120.300000px;}
.x1e_c00454{left:122.700000px;}
.x77_c00454{left:124.200000px;}
.x8e_c00454{left:125.250000px;}
.x5c_c00454{left:128.700000px;}
.x5_c00454{left:129.900000px;}
.xe_c00454{left:132.150000px;}
.x46_c00454{left:133.650000px;}
.x2f_c00454{left:135.600000px;}
.xa0_c00454{left:138.600000px;}
.x3d_c00454{left:139.950000px;}
.x9c_c00454{left:142.950000px;}
.x6d_c00454{left:145.050000px;}
.x9f_c00454{left:146.250000px;}
.x23_c00454{left:148.050000px;}
.x49_c00454{left:150.300000px;}
.x8d_c00454{left:151.950000px;}
.x55_c00454{left:154.350000px;}
.x16_c00454{left:156.450000px;}
.x50_c00454{left:158.400000px;}
.x1f_c00454{left:159.750000px;}
.xf_c00454{left:161.700000px;}
.x6_c00454{left:166.200000px;}
.x54_c00454{left:167.700000px;}
.x39_c00454{left:168.900000px;}
.x94_c00454{left:170.100000px;}
.x51_c00454{left:171.300000px;}
.x27_c00454{left:173.550000px;}
.x84_c00454{left:174.600000px;}
.x81_c00454{left:175.800000px;}
.x60_c00454{left:177.000000px;}
.x20_c00454{left:178.800000px;}
.x69_c00454{left:180.450000px;}
.x87_c00454{left:182.250000px;}
.x97_c00454{left:185.100000px;}
.x67_c00454{left:188.550000px;}
.x7_c00454{left:189.900000px;}
.x6b_c00454{left:193.800000px;}
.x74_c00454{left:194.850000px;}
.x30_c00454{left:196.500000px;}
.x4b_c00454{left:197.700000px;}
.x6e_c00454{left:199.800000px;}
.x24_c00454{left:201.300000px;}
.x56_c00454{left:202.650000px;}
.x78_c00454{left:204.900000px;}
.x2b_c00454{left:206.550000px;}
.x35_c00454{left:207.750000px;}
.x3e_c00454{left:209.400000px;}
.x10_c00454{left:211.350000px;}
.x57_c00454{left:213.450000px;}
.x4c_c00454{left:215.700000px;}
.x6f_c00454{left:217.050000px;}
.x89_c00454{left:218.250000px;}
.x8f_c00454{left:219.300000px;}
.x28_c00454{left:220.350000px;}
.x17_c00454{left:222.750000px;}
.x31_c00454{left:227.400000px;}
.x6c_c00454{left:228.750000px;}
.x64_c00454{left:231.450000px;}
.x52_c00454{left:234.300000px;}
.x11_c00454{left:235.800000px;}
.x70_c00454{left:238.350000px;}
.x36_c00454{left:239.850000px;}
.x95_c00454{left:244.650000px;}
.x18_c00454{left:246.900000px;}
.x58_c00454{left:249.150000px;}
.x82_c00454{left:250.650000px;}
.x12_c00454{left:252.000000px;}
.x75_c00454{left:255.000000px;}
.x73_c00454{left:256.800000px;}
.x3f_c00454{left:258.750000px;}
.x8_c00454{left:261.150000px;}
.x3a_c00454{left:263.250000px;}
.x32_c00454{left:265.200000px;}
.x99_c00454{left:267.150000px;}
.x7d_c00454{left:269.250000px;}
.x6a_c00454{left:270.450000px;}
.x61_c00454{left:271.800000px;}
.x71_c00454{left:272.850000px;}
.x85_c00454{left:274.650000px;}
.x98_c00454{left:277.050000px;}
.x5d_c00454{left:278.250000px;}
.x37_c00454{left:280.200000px;}
.x4d_c00454{left:282.000000px;}
.x40_c00454{left:283.650000px;}
.x9a_c00454{left:284.850000px;}
.x33_c00454{left:286.500000px;}
.x79_c00454{left:288.150000px;}
.x59_c00454{left:289.500000px;}
.x9b_c00454{left:291.300000px;}
.x7e_c00454{left:292.650000px;}
.x90_c00454{left:294.900000px;}
.x9d_c00454{left:296.100000px;}
.x65_c00454{left:297.300000px;}
.x19_c00454{left:299.850000px;}
.x13_c00454{left:302.700000px;}
.x72_c00454{left:303.750000px;}
.x25_c00454{left:306.000000px;}
.x68_c00454{left:307.500000px;}
.x2c_c00454{left:308.850000px;}
.x44_c00454{left:310.050000px;}
.x1a_c00454{left:311.700000px;}
.x7a_c00454{left:313.050000px;}
.x5e_c00454{left:314.550000px;}
.x92_c00454{left:315.900000px;}
.x34_c00454{left:317.400000px;}
.x4e_c00454{left:319.050000px;}
.x3b_c00454{left:321.600000px;}
.x8a_c00454{left:322.950000px;}
.x1_c00454{left:324.000000px;}
.x9_c00454{left:325.650000px;}
.x14_c00454{left:328.200000px;}
.x1b_c00454{left:329.400000px;}
.x62_c00454{left:330.900000px;}
.x88_c00454{left:333.000000px;}
.x41_c00454{left:334.050000px;}
.x21_c00454{left:335.400000px;}
.x8b_c00454{left:339.900000px;}
.x29_c00454{left:344.100000px;}
.x5a_c00454{left:346.350000px;}
.x38_c00454{left:348.600000px;}
.x83_c00454{left:349.650000px;}
.x96_c00454{left:353.700000px;}
.x1c_c00454{left:354.900000px;}
.xa_c00454{left:358.350000px;}
.x9e_c00454{left:359.400000px;}
.x4a_c00454{left:362.550000px;}
.x2d_c00454{left:364.650000px;}
.x7f_c00454{left:368.250000px;}
.x4f_c00454{left:369.750000px;}
.x47_c00454{left:370.950000px;}
.x1d_c00454{left:372.600000px;}
.x7b_c00454{left:376.050000px;}
.x76_c00454{left:377.850000px;}
.x2a_c00454{left:379.800000px;}
.x15_c00454{left:381.450000px;}
.x91_c00454{left:383.850000px;}
.x66_c00454{left:385.800000px;}
.x7c_c00454{left:387.600000px;}
.x26_c00454{left:388.800000px;}
.x86_c00454{left:391.350000px;}
.xb_c00454{left:393.300000px;}
.x22_c00454{left:401.250000px;}
.x5f_c00454{left:402.750000px;}
.x48_c00454{left:404.850000px;}
.x63_c00454{left:407.250000px;}
.x93_c00454{left:412.350000px;}
.xc_c00454{left:426.000000px;}
.xd4_c00454{left:435.900000px;}
.xc0_c00454{left:437.100000px;}
.xdb_c00454{left:451.050000px;}
.xcf_c00454{left:453.150000px;}
.xa2_c00454{left:454.350000px;}
.x126_c00454{left:455.700000px;}
.xf9_c00454{left:463.200000px;}
.x132_c00454{left:464.400000px;}
.xe9_c00454{left:465.600000px;}
.x117_c00454{left:466.950000px;}
.xc8_c00454{left:470.550000px;}
.x147_c00454{left:474.150000px;}
.xdc_c00454{left:477.750000px;}
.xb2_c00454{left:480.300000px;}
.xff_c00454{left:481.800000px;}
.x13e_c00454{left:483.600000px;}
.xf2_c00454{left:487.050000px;}
.x10a_c00454{left:488.250000px;}
.x13b_c00454{left:489.900000px;}
.xd0_c00454{left:491.250000px;}
.x128_c00454{left:492.750000px;}
.xbb_c00454{left:493.950000px;}
.xd5_c00454{left:497.100000px;}
.xe1_c00454{left:498.300000px;}
.x100_c00454{left:500.100000px;}
.xa3_c00454{left:501.450000px;}
.x140_c00454{left:502.800000px;}
.xaa_c00454{left:506.850000px;}
.x113_c00454{left:508.350000px;}
.xd1_c00454{left:510.000000px;}
.xb3_c00454{left:511.650000px;}
.x146_c00454{left:513.750000px;}
.xe2_c00454{left:515.250000px;}
.xdd_c00454{left:517.050000px;}
.xea_c00454{left:519.600000px;}
.x10b_c00454{left:521.400000px;}
.xc3_c00454{left:522.750000px;}
.x114_c00454{left:524.250000px;}
.xde_c00454{left:527.100000px;}
.x106_c00454{left:529.500000px;}
.xc4_c00454{left:531.450000px;}
.xa4_c00454{left:534.600000px;}
.xfc_c00454{left:536.250000px;}
.x11d_c00454{left:537.600000px;}
.xeb_c00454{left:538.650000px;}
.x12b_c00454{left:541.500000px;}
.x112_c00454{left:543.450000px;}
.xbc_c00454{left:544.650000px;}
.xe3_c00454{left:545.850000px;}
.x10f_c00454{left:547.050000px;}
.x107_c00454{left:548.250000px;}
.xf4_c00454{left:549.300000px;}
.xfa_c00454{left:551.400000px;}
.xa1_c00454{left:552.600000px;}
.xb4_c00454{left:556.350000px;}
.xd6_c00454{left:558.300000px;}
.xd2_c00454{left:559.650000px;}
.x10c_c00454{left:561.300000px;}
.xa5_c00454{left:563.100000px;}
.xf5_c00454{left:564.450000px;}
.xfb_c00454{left:565.800000px;}
.xab_c00454{left:567.750000px;}
.x141_c00454{left:568.950000px;}
.xec_c00454{left:570.300000px;}
.xd3_c00454{left:571.500000px;}
.x133_c00454{left:576.600000px;}
.x119_c00454{left:578.250000px;}
.x10d_c00454{left:579.600000px;}
.xa6_c00454{left:580.800000px;}
.xb5_c00454{left:583.350000px;}
.xe4_c00454{left:584.700000px;}
.xbd_c00454{left:586.050000px;}
.xdf_c00454{left:587.850000px;}
.xed_c00454{left:589.350000px;}
.xc5_c00454{left:593.400000px;}
.xc9_c00454{left:594.450000px;}
.xa7_c00454{left:596.250000px;}
.x11b_c00454{left:599.400000px;}
.xd7_c00454{left:602.250000px;}
.x139_c00454{left:604.350000px;}
.x135_c00454{left:605.550000px;}
.xfd_c00454{left:606.750000px;}
.x123_c00454{left:608.700000px;}
.xca_c00454{left:609.900000px;}
.x142_c00454{left:611.400000px;}
.x11e_c00454{left:613.200000px;}
.xf3_c00454{left:616.350000px;}
.xa8_c00454{left:617.850000px;}
.xac_c00454{left:619.650000px;}
.xbe_c00454{left:621.300000px;}
.xc6_c00454{left:622.500000px;}
.x101_c00454{left:624.600000px;}
.x11a_c00454{left:627.150000px;}
.xf6_c00454{left:629.550000px;}
.x143_c00454{left:630.900000px;}
.xb6_c00454{left:631.950000px;}
.x148_c00454{left:633.000000px;}
.x12f_c00454{left:634.050000px;}
.x115_c00454{left:635.400000px;}
.xee_c00454{left:637.950000px;}
.x102_c00454{left:639.600000px;}
.xe0_c00454{left:641.850000px;}
.x12d_c00454{left:643.800000px;}
.xe5_c00454{left:644.850000px;}
.x118_c00454{left:646.650000px;}
.x116_c00454{left:648.750000px;}
.x11f_c00454{left:651.000000px;}
.xe6_c00454{left:652.350000px;}
.xad_c00454{left:654.150000px;}
.xc1_c00454{left:655.500000px;}
.xf7_c00454{left:658.650000px;}
.xc7_c00454{left:660.000000px;}
.x103_c00454{left:661.200000px;}
.xcb_c00454{left:662.400000px;}
.xfe_c00454{left:664.350000px;}
.xef_c00454{left:667.200000px;}
.xa9_c00454{left:668.550000px;}
.xb7_c00454{left:669.750000px;}
.x129_c00454{left:670.800000px;}
.x13c_c00454{left:672.300000px;}
.xcc_c00454{left:673.500000px;}
.x104_c00454{left:674.850000px;}
.xc2_c00454{left:676.350000px;}
.x130_c00454{left:678.000000px;}
.xf0_c00454{left:681.600000px;}
.xbf_c00454{left:683.550000px;}
.x13f_c00454{left:684.900000px;}
.xb8_c00454{left:687.000000px;}
.x144_c00454{left:688.500000px;}
.xae_c00454{left:690.900000px;}
.xd8_c00454{left:692.400000px;}
.x145_c00454{left:694.350000px;}
.x13a_c00454{left:697.950000px;}
.x137_c00454{left:700.200000px;}
.xe7_c00454{left:701.250000px;}
.xf1_c00454{left:702.450000px;}
.x110_c00454{left:703.650000px;}
.x124_c00454{left:705.150000px;}
.x131_c00454{left:706.200000px;}
.x12e_c00454{left:707.400000px;}
.x11c_c00454{left:708.450000px;}
.xb9_c00454{left:710.100000px;}
.xcd_c00454{left:712.050000px;}
.x127_c00454{left:714.300000px;}
.x136_c00454{left:715.350000px;}
.xaf_c00454{left:718.200000px;}
.x122_c00454{left:720.150000px;}
.x120_c00454{left:721.950000px;}
.xd9_c00454{left:723.300000px;}
.x12a_c00454{left:724.650000px;}
.x108_c00454{left:725.850000px;}
.x105_c00454{left:727.050000px;}
.x149_c00454{left:728.100000px;}
.x13d_c00454{left:729.150000px;}
.xba_c00454{left:730.200000px;}
.xf8_c00454{left:732.150000px;}
.x111_c00454{left:733.200000px;}
.x125_c00454{left:735.000000px;}
.x134_c00454{left:743.700000px;}
.x10e_c00454{left:745.650000px;}
.x2_c00454{left:746.700000px;}
.x138_c00454{left:748.800000px;}
.xb0_c00454{left:753.900000px;}
.xda_c00454{left:756.750000px;}
.x12c_c00454{left:757.800000px;}
.xe8_c00454{left:759.300000px;}
.x109_c00454{left:760.500000px;}
.x121_c00454{left:763.650000px;}
.xce_c00454{left:767.100000px;}
.xb1_c00454{left:770.400000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws2_c00454{word-spacing:-15.911417pt;}
.ws5_c00454{word-spacing:-11.809524pt;}
.wsb_c00454{word-spacing:-11.228070pt;}
.wsc_c00454{word-spacing:-9.444444pt;}
.ws1a_c00454{word-spacing:-9.251307pt;}
.ws0_c00454{word-spacing:-8.535662pt;}
.ws1c_c00454{word-spacing:-6.136693pt;}
.ws1b_c00454{word-spacing:-4.399828pt;}
.ws4_c00454{word-spacing:-4.361168pt;}
.ws9_c00454{word-spacing:-3.096774pt;}
.ws6_c00454{word-spacing:-2.043423pt;}
.ws1_c00454{word-spacing:-0.122137pt;}
.ws8_c00454{word-spacing:0.000000pt;}
.wsa_c00454{word-spacing:2.222222pt;}
.ws3_c00454{word-spacing:4.273654pt;}
.ws7_c00454{word-spacing:8.497900pt;}
.wsf_c00454{word-spacing:13.333333pt;}
.ws18_c00454{word-spacing:14.920635pt;}
.ws17_c00454{word-spacing:16.111111pt;}
.ws13_c00454{word-spacing:20.632708pt;}
.wsd_c00454{word-spacing:22.857143pt;}
.ws15_c00454{word-spacing:30.793651pt;}
.wse_c00454{word-spacing:35.555556pt;}
.ws14_c00454{word-spacing:39.259259pt;}
.ws16_c00454{word-spacing:40.333333pt;}
.ws10_c00454{word-spacing:112.478632pt;}
.ws11_c00454{word-spacing:126.296296pt;}
.ws19_c00454{word-spacing:161.481481pt;}
.ws12_c00454{word-spacing:226.530831pt;}
._2_c00454{width:52.698413pt;}
._0_c00454{width:57.460317pt;}
._1_c00454{width:205.079365pt;}
.fs5_c00454{font-size:26.666667pt;}
.fs7_c00454{font-size:37.333333pt;}
.fs6_c00454{font-size:48.000000pt;}
.fs3_c00454{font-size:53.333333pt;}
.fs2_c00454{font-size:58.666667pt;}
.fs4_c00454{font-size:64.000000pt;}
.fs1_c00454{font-size:80.000000pt;}
.fs0_c00454{font-size:90.666667pt;}
.y0_c00454{bottom:0.000000pt;}
.y6c_c00454{bottom:159.733333pt;}
.y6b_c00454{bottom:176.266667pt;}
.y34_c00454{bottom:176.400000pt;}
.y6a_c00454{bottom:192.266667pt;}
.y33_c00454{bottom:193.066667pt;}
.y69_c00454{bottom:208.000000pt;}
.y32_c00454{bottom:208.800000pt;}
.y68_c00454{bottom:224.266667pt;}
.y31_c00454{bottom:224.533333pt;}
.y67_c00454{bottom:240.266667pt;}
.y30_c00454{bottom:240.800000pt;}
.y66_c00454{bottom:256.266667pt;}
.y2f_c00454{bottom:256.533333pt;}
.y2e_c00454{bottom:272.266667pt;}
.y65_c00454{bottom:288.266667pt;}
.y64_c00454{bottom:304.000000pt;}
.y2d_c00454{bottom:310.400000pt;}
.y63_c00454{bottom:320.000000pt;}
.y2c_c00454{bottom:328.533333pt;}
.y62_c00454{bottom:335.733333pt;}
.y2b_c00454{bottom:344.533333pt;}
.y61_c00454{bottom:352.000000pt;}
.y2a_c00454{bottom:360.533333pt;}
.y60_c00454{bottom:367.600000pt;}
.y29_c00454{bottom:376.533333pt;}
.y5f_c00454{bottom:382.933333pt;}
.y28_c00454{bottom:392.266667pt;}
.y5e_c00454{bottom:399.200000pt;}
.y27_c00454{bottom:408.000000pt;}
.y5d_c00454{bottom:414.933333pt;}
.y26_c00454{bottom:423.333333pt;}
.y5c_c00454{bottom:431.200000pt;}
.y25_c00454{bottom:439.333333pt;}
.y5b_c00454{bottom:446.933333pt;}
.y24_c00454{bottom:455.066667pt;}
.y5a_c00454{bottom:462.933333pt;}
.y23_c00454{bottom:470.933333pt;}
.y59_c00454{bottom:478.933333pt;}
.y22_c00454{bottom:486.933333pt;}
.y58_c00454{bottom:494.933333pt;}
.y21_c00454{bottom:502.666667pt;}
.y57_c00454{bottom:510.666667pt;}
.y20_c00454{bottom:518.666667pt;}
.y56_c00454{bottom:526.666667pt;}
.y1f_c00454{bottom:534.400000pt;}
.y55_c00454{bottom:542.400000pt;}
.y1e_c00454{bottom:557.733333pt;}
.y54_c00454{bottom:558.400000pt;}
.y1d_c00454{bottom:573.733333pt;}
.y53_c00454{bottom:580.133333pt;}
.y1c_c00454{bottom:589.466667pt;}
.y52_c00454{bottom:602.533333pt;}
.y1b_c00454{bottom:605.466667pt;}
.y51_c00454{bottom:615.600000pt;}
.y1a_c00454{bottom:620.800000pt;}
.y50_c00454{bottom:628.400000pt;}
.y19_c00454{bottom:636.800000pt;}
.y4f_c00454{bottom:640.933333pt;}
.y18_c00454{bottom:652.800000pt;}
.y4e_c00454{bottom:653.066667pt;}
.y4d_c00454{bottom:666.000000pt;}
.y17_c00454{bottom:668.533333pt;}
.y4c_c00454{bottom:678.800000pt;}
.y16_c00454{bottom:684.266667pt;}
.y4b_c00454{bottom:691.866667pt;}
.y15_c00454{bottom:700.000000pt;}
.y4a_c00454{bottom:704.266667pt;}
.y14_c00454{bottom:716.000000pt;}
.y49_c00454{bottom:717.733333pt;}
.y48_c00454{bottom:730.533333pt;}
.y13_c00454{bottom:731.733333pt;}
.y47_c00454{bottom:742.400000pt;}
.y12_c00454{bottom:747.466667pt;}
.y46_c00454{bottom:755.333333pt;}
.y11_c00454{bottom:763.466667pt;}
.y45_c00454{bottom:768.400000pt;}
.y10_c00454{bottom:779.466667pt;}
.y44_c00454{bottom:781.866667pt;}
.y43_c00454{bottom:793.333333pt;}
.yf_c00454{bottom:795.466667pt;}
.y42_c00454{bottom:806.133333pt;}
.ye_c00454{bottom:811.466667pt;}
.y41_c00454{bottom:822.133333pt;}
.y40_c00454{bottom:831.733333pt;}
.yd_c00454{bottom:834.666667pt;}
.y3f_c00454{bottom:844.533333pt;}
.yc_c00454{bottom:850.933333pt;}
.y3e_c00454{bottom:858.533333pt;}
.yb_c00454{bottom:866.266667pt;}
.y3d_c00454{bottom:879.333333pt;}
.ya_c00454{bottom:882.266667pt;}
.y3c_c00454{bottom:895.066667pt;}
.y9_c00454{bottom:901.466667pt;}
.y3b_c00454{bottom:911.333333pt;}
.y8_c00454{bottom:917.733333pt;}
.y3a_c00454{bottom:926.666667pt;}
.y7_c00454{bottom:933.733333pt;}
.y6_c00454{bottom:949.466667pt;}
.y39_c00454{bottom:950.133333pt;}
.y5_c00454{bottom:965.466667pt;}
.y38_c00454{bottom:966.133333pt;}
.y4_c00454{bottom:981.466667pt;}
.y37_c00454{bottom:982.133333pt;}
.y3_c00454{bottom:997.066667pt;}
.y36_c00454{bottom:998.133333pt;}
.y2_c00454{bottom:1017.600000pt;}
.y1_c00454{bottom:1021.066667pt;}
.y35_c00454{bottom:1124.533333pt;}
.h7_c00454{height:26.666667pt;}
.h9_c00454{height:37.333333pt;}
.h8_c00454{height:48.000000pt;}
.h5_c00454{height:53.333333pt;}
.h4_c00454{height:58.666667pt;}
.h6_c00454{height:64.000000pt;}
.h3_c00454{height:80.000000pt;}
.h2_c00454{height:90.666667pt;}
.h1_c00454{height:1131.333333pt;}
.h0_c00454{height:1131.520020pt;}
.w0_c00454{width:851.840007pt;}
.w1_c00454{width:852.000000pt;}
.x0_c00454{left:0.000000pt;}
.x3c_c00454{left:70.666667pt;}
.x80_c00454{left:78.666667pt;}
.x8c_c00454{left:83.866667pt;}
.x45_c00454{left:85.200000pt;}
.x3_c00454{left:86.133333pt;}
.xd_c00454{left:87.066667pt;}
.x42_c00454{left:88.000000pt;}
.x2e_c00454{left:94.666667pt;}
.x5b_c00454{left:100.266667pt;}
.x4_c00454{left:102.400000pt;}
.x53_c00454{left:105.600000pt;}
.x43_c00454{left:106.933333pt;}
.x1e_c00454{left:109.066667pt;}
.x77_c00454{left:110.400000pt;}
.x8e_c00454{left:111.333333pt;}
.x5c_c00454{left:114.400000pt;}
.x5_c00454{left:115.466667pt;}
.xe_c00454{left:117.466667pt;}
.x46_c00454{left:118.800000pt;}
.x2f_c00454{left:120.533333pt;}
.xa0_c00454{left:123.200000pt;}
.x3d_c00454{left:124.400000pt;}
.x9c_c00454{left:127.066667pt;}
.x6d_c00454{left:128.933333pt;}
.x9f_c00454{left:130.000000pt;}
.x23_c00454{left:131.600000pt;}
.x49_c00454{left:133.600000pt;}
.x8d_c00454{left:135.066667pt;}
.x55_c00454{left:137.200000pt;}
.x16_c00454{left:139.066667pt;}
.x50_c00454{left:140.800000pt;}
.x1f_c00454{left:142.000000pt;}
.xf_c00454{left:143.733333pt;}
.x6_c00454{left:147.733333pt;}
.x54_c00454{left:149.066667pt;}
.x39_c00454{left:150.133333pt;}
.x94_c00454{left:151.200000pt;}
.x51_c00454{left:152.266667pt;}
.x27_c00454{left:154.266667pt;}
.x84_c00454{left:155.200000pt;}
.x81_c00454{left:156.266667pt;}
.x60_c00454{left:157.333333pt;}
.x20_c00454{left:158.933333pt;}
.x69_c00454{left:160.400000pt;}
.x87_c00454{left:162.000000pt;}
.x97_c00454{left:164.533333pt;}
.x67_c00454{left:167.600000pt;}
.x7_c00454{left:168.800000pt;}
.x6b_c00454{left:172.266667pt;}
.x74_c00454{left:173.200000pt;}
.x30_c00454{left:174.666667pt;}
.x4b_c00454{left:175.733333pt;}
.x6e_c00454{left:177.600000pt;}
.x24_c00454{left:178.933333pt;}
.x56_c00454{left:180.133333pt;}
.x78_c00454{left:182.133333pt;}
.x2b_c00454{left:183.600000pt;}
.x35_c00454{left:184.666667pt;}
.x3e_c00454{left:186.133333pt;}
.x10_c00454{left:187.866667pt;}
.x57_c00454{left:189.733333pt;}
.x4c_c00454{left:191.733333pt;}
.x6f_c00454{left:192.933333pt;}
.x89_c00454{left:194.000000pt;}
.x8f_c00454{left:194.933333pt;}
.x28_c00454{left:195.866667pt;}
.x17_c00454{left:198.000000pt;}
.x31_c00454{left:202.133333pt;}
.x6c_c00454{left:203.333333pt;}
.x64_c00454{left:205.733333pt;}
.x52_c00454{left:208.266667pt;}
.x11_c00454{left:209.600000pt;}
.x70_c00454{left:211.866667pt;}
.x36_c00454{left:213.200000pt;}
.x95_c00454{left:217.466667pt;}
.x18_c00454{left:219.466667pt;}
.x58_c00454{left:221.466667pt;}
.x82_c00454{left:222.800000pt;}
.x12_c00454{left:224.000000pt;}
.x75_c00454{left:226.666667pt;}
.x73_c00454{left:228.266667pt;}
.x3f_c00454{left:230.000000pt;}
.x8_c00454{left:232.133333pt;}
.x3a_c00454{left:234.000000pt;}
.x32_c00454{left:235.733333pt;}
.x99_c00454{left:237.466667pt;}
.x7d_c00454{left:239.333333pt;}
.x6a_c00454{left:240.400000pt;}
.x61_c00454{left:241.600000pt;}
.x71_c00454{left:242.533333pt;}
.x85_c00454{left:244.133333pt;}
.x98_c00454{left:246.266667pt;}
.x5d_c00454{left:247.333333pt;}
.x37_c00454{left:249.066667pt;}
.x4d_c00454{left:250.666667pt;}
.x40_c00454{left:252.133333pt;}
.x9a_c00454{left:253.200000pt;}
.x33_c00454{left:254.666667pt;}
.x79_c00454{left:256.133333pt;}
.x59_c00454{left:257.333333pt;}
.x9b_c00454{left:258.933333pt;}
.x7e_c00454{left:260.133333pt;}
.x90_c00454{left:262.133333pt;}
.x9d_c00454{left:263.200000pt;}
.x65_c00454{left:264.266667pt;}
.x19_c00454{left:266.533333pt;}
.x13_c00454{left:269.066667pt;}
.x72_c00454{left:270.000000pt;}
.x25_c00454{left:272.000000pt;}
.x68_c00454{left:273.333333pt;}
.x2c_c00454{left:274.533333pt;}
.x44_c00454{left:275.600000pt;}
.x1a_c00454{left:277.066667pt;}
.x7a_c00454{left:278.266667pt;}
.x5e_c00454{left:279.600000pt;}
.x92_c00454{left:280.800000pt;}
.x34_c00454{left:282.133333pt;}
.x4e_c00454{left:283.600000pt;}
.x3b_c00454{left:285.866667pt;}
.x8a_c00454{left:287.066667pt;}
.x1_c00454{left:288.000000pt;}
.x9_c00454{left:289.466667pt;}
.x14_c00454{left:291.733333pt;}
.x1b_c00454{left:292.800000pt;}
.x62_c00454{left:294.133333pt;}
.x88_c00454{left:296.000000pt;}
.x41_c00454{left:296.933333pt;}
.x21_c00454{left:298.133333pt;}
.x8b_c00454{left:302.133333pt;}
.x29_c00454{left:305.866667pt;}
.x5a_c00454{left:307.866667pt;}
.x38_c00454{left:309.866667pt;}
.x83_c00454{left:310.800000pt;}
.x96_c00454{left:314.400000pt;}
.x1c_c00454{left:315.466667pt;}
.xa_c00454{left:318.533333pt;}
.x9e_c00454{left:319.466667pt;}
.x4a_c00454{left:322.266667pt;}
.x2d_c00454{left:324.133333pt;}
.x7f_c00454{left:327.333333pt;}
.x4f_c00454{left:328.666667pt;}
.x47_c00454{left:329.733333pt;}
.x1d_c00454{left:331.200000pt;}
.x7b_c00454{left:334.266667pt;}
.x76_c00454{left:335.866667pt;}
.x2a_c00454{left:337.600000pt;}
.x15_c00454{left:339.066667pt;}
.x91_c00454{left:341.200000pt;}
.x66_c00454{left:342.933333pt;}
.x7c_c00454{left:344.533333pt;}
.x26_c00454{left:345.600000pt;}
.x86_c00454{left:347.866667pt;}
.xb_c00454{left:349.600000pt;}
.x22_c00454{left:356.666667pt;}
.x5f_c00454{left:358.000000pt;}
.x48_c00454{left:359.866667pt;}
.x63_c00454{left:362.000000pt;}
.x93_c00454{left:366.533333pt;}
.xc_c00454{left:378.666667pt;}
.xd4_c00454{left:387.466667pt;}
.xc0_c00454{left:388.533333pt;}
.xdb_c00454{left:400.933333pt;}
.xcf_c00454{left:402.800000pt;}
.xa2_c00454{left:403.866667pt;}
.x126_c00454{left:405.066667pt;}
.xf9_c00454{left:411.733333pt;}
.x132_c00454{left:412.800000pt;}
.xe9_c00454{left:413.866667pt;}
.x117_c00454{left:415.066667pt;}
.xc8_c00454{left:418.266667pt;}
.x147_c00454{left:421.466667pt;}
.xdc_c00454{left:424.666667pt;}
.xb2_c00454{left:426.933333pt;}
.xff_c00454{left:428.266667pt;}
.x13e_c00454{left:429.866667pt;}
.xf2_c00454{left:432.933333pt;}
.x10a_c00454{left:434.000000pt;}
.x13b_c00454{left:435.466667pt;}
.xd0_c00454{left:436.666667pt;}
.x128_c00454{left:438.000000pt;}
.xbb_c00454{left:439.066667pt;}
.xd5_c00454{left:441.866667pt;}
.xe1_c00454{left:442.933333pt;}
.x100_c00454{left:444.533333pt;}
.xa3_c00454{left:445.733333pt;}
.x140_c00454{left:446.933333pt;}
.xaa_c00454{left:450.533333pt;}
.x113_c00454{left:451.866667pt;}
.xd1_c00454{left:453.333333pt;}
.xb3_c00454{left:454.800000pt;}
.x146_c00454{left:456.666667pt;}
.xe2_c00454{left:458.000000pt;}
.xdd_c00454{left:459.600000pt;}
.xea_c00454{left:461.866667pt;}
.x10b_c00454{left:463.466667pt;}
.xc3_c00454{left:464.666667pt;}
.x114_c00454{left:466.000000pt;}
.xde_c00454{left:468.533333pt;}
.x106_c00454{left:470.666667pt;}
.xc4_c00454{left:472.400000pt;}
.xa4_c00454{left:475.200000pt;}
.xfc_c00454{left:476.666667pt;}
.x11d_c00454{left:477.866667pt;}
.xeb_c00454{left:478.800000pt;}
.x12b_c00454{left:481.333333pt;}
.x112_c00454{left:483.066667pt;}
.xbc_c00454{left:484.133333pt;}
.xe3_c00454{left:485.200000pt;}
.x10f_c00454{left:486.266667pt;}
.x107_c00454{left:487.333333pt;}
.xf4_c00454{left:488.266667pt;}
.xfa_c00454{left:490.133333pt;}
.xa1_c00454{left:491.200000pt;}
.xb4_c00454{left:494.533333pt;}
.xd6_c00454{left:496.266667pt;}
.xd2_c00454{left:497.466667pt;}
.x10c_c00454{left:498.933333pt;}
.xa5_c00454{left:500.533333pt;}
.xf5_c00454{left:501.733333pt;}
.xfb_c00454{left:502.933333pt;}
.xab_c00454{left:504.666667pt;}
.x141_c00454{left:505.733333pt;}
.xec_c00454{left:506.933333pt;}
.xd3_c00454{left:508.000000pt;}
.x133_c00454{left:512.533333pt;}
.x119_c00454{left:514.000000pt;}
.x10d_c00454{left:515.200000pt;}
.xa6_c00454{left:516.266667pt;}
.xb5_c00454{left:518.533333pt;}
.xe4_c00454{left:519.733333pt;}
.xbd_c00454{left:520.933333pt;}
.xdf_c00454{left:522.533333pt;}
.xed_c00454{left:523.866667pt;}
.xc5_c00454{left:527.466667pt;}
.xc9_c00454{left:528.400000pt;}
.xa7_c00454{left:530.000000pt;}
.x11b_c00454{left:532.800000pt;}
.xd7_c00454{left:535.333333pt;}
.x139_c00454{left:537.200000pt;}
.x135_c00454{left:538.266667pt;}
.xfd_c00454{left:539.333333pt;}
.x123_c00454{left:541.066667pt;}
.xca_c00454{left:542.133333pt;}
.x142_c00454{left:543.466667pt;}
.x11e_c00454{left:545.066667pt;}
.xf3_c00454{left:547.866667pt;}
.xa8_c00454{left:549.200000pt;}
.xac_c00454{left:550.800000pt;}
.xbe_c00454{left:552.266667pt;}
.xc6_c00454{left:553.333333pt;}
.x101_c00454{left:555.200000pt;}
.x11a_c00454{left:557.466667pt;}
.xf6_c00454{left:559.600000pt;}
.x143_c00454{left:560.800000pt;}
.xb6_c00454{left:561.733333pt;}
.x148_c00454{left:562.666667pt;}
.x12f_c00454{left:563.600000pt;}
.x115_c00454{left:564.800000pt;}
.xee_c00454{left:567.066667pt;}
.x102_c00454{left:568.533333pt;}
.xe0_c00454{left:570.533333pt;}
.x12d_c00454{left:572.266667pt;}
.xe5_c00454{left:573.200000pt;}
.x118_c00454{left:574.800000pt;}
.x116_c00454{left:576.666667pt;}
.x11f_c00454{left:578.666667pt;}
.xe6_c00454{left:579.866667pt;}
.xad_c00454{left:581.466667pt;}
.xc1_c00454{left:582.666667pt;}
.xf7_c00454{left:585.466667pt;}
.xc7_c00454{left:586.666667pt;}
.x103_c00454{left:587.733333pt;}
.xcb_c00454{left:588.800000pt;}
.xfe_c00454{left:590.533333pt;}
.xef_c00454{left:593.066667pt;}
.xa9_c00454{left:594.266667pt;}
.xb7_c00454{left:595.333333pt;}
.x129_c00454{left:596.266667pt;}
.x13c_c00454{left:597.600000pt;}
.xcc_c00454{left:598.666667pt;}
.x104_c00454{left:599.866667pt;}
.xc2_c00454{left:601.200000pt;}
.x130_c00454{left:602.666667pt;}
.xf0_c00454{left:605.866667pt;}
.xbf_c00454{left:607.600000pt;}
.x13f_c00454{left:608.800000pt;}
.xb8_c00454{left:610.666667pt;}
.x144_c00454{left:612.000000pt;}
.xae_c00454{left:614.133333pt;}
.xd8_c00454{left:615.466667pt;}
.x145_c00454{left:617.200000pt;}
.x13a_c00454{left:620.400000pt;}
.x137_c00454{left:622.400000pt;}
.xe7_c00454{left:623.333333pt;}
.xf1_c00454{left:624.400000pt;}
.x110_c00454{left:625.466667pt;}
.x124_c00454{left:626.800000pt;}
.x131_c00454{left:627.733333pt;}
.x12e_c00454{left:628.800000pt;}
.x11c_c00454{left:629.733333pt;}
.xb9_c00454{left:631.200000pt;}
.xcd_c00454{left:632.933333pt;}
.x127_c00454{left:634.933333pt;}
.x136_c00454{left:635.866667pt;}
.xaf_c00454{left:638.400000pt;}
.x122_c00454{left:640.133333pt;}
.x120_c00454{left:641.733333pt;}
.xd9_c00454{left:642.933333pt;}
.x12a_c00454{left:644.133333pt;}
.x108_c00454{left:645.200000pt;}
.x105_c00454{left:646.266667pt;}
.x149_c00454{left:647.200000pt;}
.x13d_c00454{left:648.133333pt;}
.xba_c00454{left:649.066667pt;}
.xf8_c00454{left:650.800000pt;}
.x111_c00454{left:651.733333pt;}
.x125_c00454{left:653.333333pt;}
.x134_c00454{left:661.066667pt;}
.x10e_c00454{left:662.800000pt;}
.x2_c00454{left:663.733333pt;}
.x138_c00454{left:665.600000pt;}
.xb0_c00454{left:670.133333pt;}
.xda_c00454{left:672.666667pt;}
.x12c_c00454{left:673.600000pt;}
.xe8_c00454{left:674.933333pt;}
.x109_c00454{left:676.000000pt;}
.x121_c00454{left:678.800000pt;}
.xce_c00454{left:681.866667pt;}
.xb1_c00454{left:684.800000pt;}
}





/* 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_c00455 {
    display:none;
  }
  .loading-indicator_c00455.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00455 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_c00455 { 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_c00455" -> "#page-container .classname_c00455")
 */
.pf_c00455 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00455 { /* 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_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00455 { /* 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_c00455 { /* 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_c00455 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00455 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00455 {overflow:visible;}
  }
}
.c_c00455 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00455 { /* 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_c00455:after { /* webkit #35443 */
  content: '';
}
.t_c00455:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00455 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 */
}
.__c00455 { /* 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_c00455 { /* info for Javascript */
  display:none;
}
.l_c00455 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00455 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00455 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00455: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_c00455 {
    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_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00455.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_c00455 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00455;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.000000;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;}
.m46_c00455{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m72_c00455{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m47_c00455{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00455{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00455{transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);}
.md5_c00455{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m91_c00455{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mac_c00455{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00455{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00455{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00455{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m86_c00455{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00455{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m108_c00455{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00455{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m101_c00455{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m38_c00455{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m96_c00455{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m66_c00455{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.med_c00455{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00455{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m114_c00455{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m121_c00455{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m124_c00455{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m41_c00455{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m89_c00455{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.me9_c00455{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00455{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m98_c00455{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00455{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.md6_c00455{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00455{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.md7_c00455{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.ma_c00455{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00455{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m25_c00455{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m53_c00455{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mf_c00455{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m64_c00455{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m52_c00455{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m7_c00455{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m129_c00455{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mad_c00455{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m16_c00455{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00455{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00455{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m105_c00455{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00455{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00455{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me2_c00455{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m83_c00455{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00455{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00455{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m88_c00455{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00455{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m58_c00455{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00455{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00455{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb_c00455{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc_c00455{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m11_c00455{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.me1_c00455{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00455{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00455{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mda_c00455{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00455{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m99_c00455{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.md4_c00455{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00455{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m104_c00455{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00455{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m40_c00455{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m97_c00455{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m24_c00455{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00455{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m22_c00455{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00455{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me6_c00455{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m9_c00455{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md2_c00455{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00455{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me0_c00455{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00455{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m45_c00455{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m94_c00455{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m95_c00455{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m57_c00455{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00455{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me7_c00455{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m107_c00455{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00455{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m23_c00455{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00455{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m34_c00455{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00455{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m35_c00455{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m17_c00455{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md8_c00455{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00455{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00455{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00455{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mae_c00455{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00455{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00455{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m54_c00455{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m118_c00455{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m61_c00455{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m136_c00455{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m51_c00455{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m50_c00455{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mec_c00455{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00455{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.maf_c00455{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00455{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00455{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m15_c00455{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00455{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00455{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00455{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m30_c00455{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00455{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m49_c00455{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00455{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00455{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m19_c00455{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m44_c00455{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00455{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m42_c00455{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mab_c00455{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me_c00455{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m43_c00455{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m20_c00455{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6_c00455{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m39_c00455{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00455{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m27_c00455{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m33_c00455{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00455{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m14_c00455{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m126_c00455{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00455{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00455{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00455{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00455{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m110_c00455{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m26_c00455{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m68_c00455{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00455{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00455{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m87_c00455{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m21_c00455{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m55_c00455{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00455{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00455{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m135_c00455{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.me4_c00455{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m18_c00455{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00455{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md9_c00455{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mef_c00455{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00455{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m106_c00455{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00455{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m36_c00455{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8_c00455{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00455{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m77_c00455{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00455{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m85_c00455{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m119_c00455{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m10_c00455{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00455{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00455{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00455{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00455{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m29_c00455{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m82_c00455{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00455{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m120_c00455{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00455{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md_c00455{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m59_c00455{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.maa_c00455{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m127_c00455{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00455{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00455{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00455{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00455{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m69_c00455{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me5_c00455{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m28_c00455{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00455{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00455{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00455{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00455{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m117_c00455{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m12_c00455{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m74_c00455{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00455{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00455{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00455{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00455{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m31_c00455{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00455{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m56_c00455{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00455{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m63_c00455{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00455{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00455{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00455{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m32_c00455{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m37_c00455{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00455{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00455{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00455{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00455{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00455{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00455{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m71_c00455{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00455{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00455{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mea_c00455{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m111_c00455{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00455{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00455{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00455{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m109_c00455{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00455{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m122_c00455{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00455{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mce_c00455{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00455{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00455{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00455{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m134_c00455{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00455{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m100_c00455{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00455{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m76_c00455{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m112_c00455{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m125_c00455{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m93_c00455{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m80_c00455{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m78_c00455{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md0_c00455{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00455{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00455{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00455{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.md1_c00455{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00455{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m79_c00455{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00455{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m103_c00455{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00455{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00455{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m65_c00455{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m84_c00455{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mba_c00455{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mee_c00455{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00455{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md3_c00455{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m113_c00455{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m115_c00455{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00455{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00455{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00455{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m73_c00455{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.me8_c00455{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m67_c00455{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m81_c00455{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00455{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00455{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m48_c00455{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m132_c00455{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m116_c00455{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00455{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00455{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me3_c00455{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00455{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m62_c00455{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mca_c00455{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00455{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m128_c00455{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00455{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m70_c00455{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m130_c00455{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00455{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m131_c00455{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00455{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m90_c00455{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00455{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mde_c00455{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m123_c00455{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00455{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m75_c00455{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00455{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00455{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00455{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.meb_c00455{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m102_c00455{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.mff_c00455{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m60_c00455{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00455{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m92_c00455{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m133_c00455{transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls0_c00455{letter-spacing:0.000000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{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__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00455{word-spacing:-7.201448px;}
.wsa_c00455{word-spacing:0.000000px;}
.ws5_c00455{word-spacing:1.000000px;}
.ws4_c00455{word-spacing:1.250000px;}
.ws8_c00455{word-spacing:1.333333px;}
.ws6_c00455{word-spacing:1.842105px;}
.ws3_c00455{word-spacing:3.243243px;}
.ws1_c00455{word-spacing:5.808917px;}
.ws0_c00455{word-spacing:18.000000px;}
.ws7_c00455{word-spacing:74.318182px;}
.ws2_c00455{word-spacing:2595.068702px;}
._0_c00455{width:27.658625px;}
.fc0_c00455{color:transparent;}
.fs8_c00455{font-size:30.000000px;}
.fs7_c00455{font-size:42.000000px;}
.fs2_c00455{font-size:48.000000px;}
.fs3_c00455{font-size:54.000000px;}
.fs6_c00455{font-size:60.000000px;}
.fs5_c00455{font-size:66.000000px;}
.fs4_c00455{font-size:72.000000px;}
.fs0_c00455{font-size:78.000000px;}
.fs1_c00455{font-size:84.000000px;}
.y0_c00455{bottom:0.000000px;}
.y6d_c00455{bottom:199.050000px;}
.y39_c00455{bottom:203.100000px;}
.y4_c00455{bottom:207.000000px;}
.y38_c00455{bottom:219.300000px;}
.y3_c00455{bottom:221.400000px;}
.y37_c00455{bottom:222.900000px;}
.y3a_c00455{bottom:230.100000px;}
.y36_c00455{bottom:235.500000px;}
.y6c_c00455{bottom:243.000000px;}
.y6b_c00455{bottom:260.700000px;}
.y6a_c00455{bottom:278.250000px;}
.y35_c00455{bottom:278.700000px;}
.y34_c00455{bottom:295.650000px;}
.y69_c00455{bottom:295.950000px;}
.y67_c00455{bottom:309.600000px;}
.y68_c00455{bottom:313.200000px;}
.y33_c00455{bottom:313.350000px;}
.y32_c00455{bottom:331.050000px;}
.y66_c00455{bottom:335.550000px;}
.y31_c00455{bottom:348.000000px;}
.y30_c00455{bottom:364.950000px;}
.y65_c00455{bottom:371.850000px;}
.y2f_c00455{bottom:382.200000px;}
.y64_c00455{bottom:389.550000px;}
.y2e_c00455{bottom:399.900000px;}
.y63_c00455{bottom:407.550000px;}
.y2d_c00455{bottom:418.200000px;}
.y62_c00455{bottom:425.550000px;}
.y2c_c00455{bottom:434.700000px;}
.y61_c00455{bottom:443.550000px;}
.y2b_c00455{bottom:451.950000px;}
.y60_c00455{bottom:460.950000px;}
.y2a_c00455{bottom:469.650000px;}
.y5f_c00455{bottom:478.950000px;}
.y29_c00455{bottom:487.350000px;}
.y5e_c00455{bottom:496.950000px;}
.y28_c00455{bottom:505.050000px;}
.y5d_c00455{bottom:514.650000px;}
.y27_c00455{bottom:522.750000px;}
.y5c_c00455{bottom:532.350000px;}
.y26_c00455{bottom:540.750000px;}
.y5b_c00455{bottom:550.350000px;}
.y24_c00455{bottom:566.250000px;}
.y5a_c00455{bottom:568.050000px;}
.y23_c00455{bottom:583.950000px;}
.y59_c00455{bottom:585.750000px;}
.y22_c00455{bottom:601.650000px;}
.y58_c00455{bottom:603.300000px;}
.y21_c00455{bottom:619.350000px;}
.y57_c00455{bottom:621.300000px;}
.y20_c00455{bottom:637.050000px;}
.y56_c00455{bottom:638.700000px;}
.y1f_c00455{bottom:655.050000px;}
.y55_c00455{bottom:656.550000px;}
.y25_c00455{bottom:665.700000px;}
.y1e_c00455{bottom:673.050000px;}
.y54_c00455{bottom:674.550000px;}
.y1d_c00455{bottom:690.750000px;}
.y53_c00455{bottom:692.250000px;}
.y1c_c00455{bottom:708.750000px;}
.y52_c00455{bottom:709.950000px;}
.y1b_c00455{bottom:726.450000px;}
.y51_c00455{bottom:727.950000px;}
.y50_c00455{bottom:745.950000px;}
.y1a_c00455{bottom:748.200000px;}
.y4f_c00455{bottom:763.200000px;}
.y19_c00455{bottom:766.200000px;}
.y4e_c00455{bottom:781.200000px;}
.y18_c00455{bottom:783.900000px;}
.y4d_c00455{bottom:799.200000px;}
.y17_c00455{bottom:801.900000px;}
.y4c_c00455{bottom:816.900000px;}
.y16_c00455{bottom:819.600000px;}
.y4b_c00455{bottom:834.450000px;}
.y15_c00455{bottom:837.600000px;}
.y4a_c00455{bottom:852.450000px;}
.y14_c00455{bottom:855.300000px;}
.y49_c00455{bottom:870.150000px;}
.y13_c00455{bottom:873.000000px;}
.y48_c00455{bottom:888.150000px;}
.y12_c00455{bottom:891.000000px;}
.y47_c00455{bottom:905.700000px;}
.y11_c00455{bottom:909.000000px;}
.y10_c00455{bottom:928.050000px;}
.y46_c00455{bottom:931.650000px;}
.yf_c00455{bottom:947.850000px;}
.y45_c00455{bottom:949.350000px;}
.ye_c00455{bottom:965.850000px;}
.y44_c00455{bottom:967.050000px;}
.yd_c00455{bottom:983.850000px;}
.y43_c00455{bottom:984.750000px;}
.yc_c00455{bottom:1001.550000px;}
.y42_c00455{bottom:1002.750000px;}
.yb_c00455{bottom:1019.250000px;}
.y41_c00455{bottom:1020.450000px;}
.ya_c00455{bottom:1036.950000px;}
.y40_c00455{bottom:1038.150000px;}
.y9_c00455{bottom:1054.950000px;}
.y3f_c00455{bottom:1056.150000px;}
.y8_c00455{bottom:1072.200000px;}
.y3e_c00455{bottom:1073.850000px;}
.y7_c00455{bottom:1089.900000px;}
.y3d_c00455{bottom:1091.850000px;}
.y6_c00455{bottom:1107.600000px;}
.y3c_c00455{bottom:1109.550000px;}
.y5_c00455{bottom:1125.300000px;}
.y3b_c00455{bottom:1127.550000px;}
.y1_c00455{bottom:1149.450000px;}
.y2_c00455{bottom:1153.800000px;}
.ha_c00455{height:30.000000px;}
.h9_c00455{height:42.000000px;}
.h4_c00455{height:48.000000px;}
.h5_c00455{height:54.000000px;}
.h8_c00455{height:60.000000px;}
.h7_c00455{height:66.000000px;}
.h6_c00455{height:72.000000px;}
.h2_c00455{height:78.000000px;}
.h3_c00455{height:84.000000px;}
.h0_c00455{height:1271.160094px;}
.h1_c00455{height:1271.250000px;}
.w0_c00455{width:958.320007px;}
.w1_c00455{width:958.500000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:181.800000px;}
.x3_c00455{left:185.100000px;}
.x79_c00455{left:190.950000px;}
.x81_c00455{left:192.000000px;}
.x8e_c00455{left:193.500000px;}
.x6e_c00455{left:197.250000px;}
.x4d_c00455{left:198.450000px;}
.x7a_c00455{left:200.250000px;}
.xa8_c00455{left:201.300000px;}
.x6_c00455{left:202.350000px;}
.x1a_c00455{left:203.550000px;}
.x62_c00455{left:204.750000px;}
.xab_c00455{left:214.350000px;}
.x4_c00455{left:217.200000px;}
.x70_c00455{left:220.650000px;}
.x47_c00455{left:221.700000px;}
.x7b_c00455{left:223.350000px;}
.x6c_c00455{left:224.400000px;}
.x8a_c00455{left:225.450000px;}
.x9e_c00455{left:226.800000px;}
.x39_c00455{left:229.200000px;}
.x8f_c00455{left:230.250000px;}
.x5_c00455{left:231.900000px;}
.x87_c00455{left:234.000000px;}
.x92_c00455{left:236.250000px;}
.x65_c00455{left:238.200000px;}
.xd_c00455{left:240.150000px;}
.x3f_c00455{left:241.350000px;}
.x31_c00455{left:243.150000px;}
.x5d_c00455{left:244.350000px;}
.x20_c00455{left:245.400000px;}
.x6a_c00455{left:247.350000px;}
.x2e_c00455{left:248.550000px;}
.xac_c00455{left:249.900000px;}
.x74_c00455{left:252.750000px;}
.x97_c00455{left:255.150000px;}
.x44_c00455{left:256.950000px;}
.x48_c00455{left:258.000000px;}
.x7e_c00455{left:259.050000px;}
.x52_c00455{left:260.400000px;}
.x90_c00455{left:262.350000px;}
.xa1_c00455{left:265.200000px;}
.x40_c00455{left:266.250000px;}
.x55_c00455{left:268.050000px;}
.x2f_c00455{left:270.900000px;}
.x84_c00455{left:272.550000px;}
.x1b_c00455{left:273.750000px;}
.x6f_c00455{left:274.950000px;}
.x7_c00455{left:276.150000px;}
.x5a_c00455{left:277.800000px;}
.x3a_c00455{left:279.900000px;}
.xa9_c00455{left:281.700000px;}
.xad_c00455{left:282.750000px;}
.x26_c00455{left:284.850000px;}
.x45_c00455{left:286.800000px;}
.x5e_c00455{left:288.300000px;}
.x8b_c00455{left:289.950000px;}
.x80_c00455{left:291.450000px;}
.xaa_c00455{left:292.500000px;}
.xe_c00455{left:293.700000px;}
.x13_c00455{left:295.800000px;}
.xa3_c00455{left:298.050000px;}
.x32_c00455{left:299.400000px;}
.x5b_c00455{left:301.200000px;}
.x21_c00455{left:303.000000px;}
.x2b_c00455{left:304.800000px;}
.x56_c00455{left:307.950000px;}
.x8c_c00455{left:309.750000px;}
.x98_c00455{left:311.700000px;}
.x1c_c00455{left:313.050000px;}
.x49_c00455{left:315.600000px;}
.x9b_c00455{left:316.950000px;}
.x14_c00455{left:318.900000px;}
.x41_c00455{left:321.300000px;}
.xf_c00455{left:322.800000px;}
.x4e_c00455{left:324.000000px;}
.xa2_c00455{left:325.350000px;}
.x8_c00455{left:326.850000px;}
.x4a_c00455{left:328.950000px;}
.x93_c00455{left:331.200000px;}
.x5f_c00455{left:333.000000px;}
.x53_c00455{left:334.200000px;}
.x33_c00455{left:336.150000px;}
.x71_c00455{left:338.400000px;}
.x75_c00455{left:339.900000px;}
.x88_c00455{left:341.250000px;}
.x27_c00455{left:343.950000px;}
.x9f_c00455{left:346.200000px;}
.x22_c00455{left:348.300000px;}
.x9_c00455{left:350.250000px;}
.x1d_c00455{left:352.350000px;}
.x83_c00455{left:354.450000px;}
.x34_c00455{left:356.700000px;}
.xae_c00455{left:357.900000px;}
.x2c_c00455{left:359.100000px;}
.x5c_c00455{left:360.600000px;}
.x66_c00455{left:362.100000px;}
.x42_c00455{left:363.450000px;}
.x54_c00455{left:364.500000px;}
.x77_c00455{left:367.950000px;}
.x15_c00455{left:369.600000px;}
.x7c_c00455{left:370.950000px;}
.x1e_c00455{left:376.500000px;}
.x99_c00455{left:379.500000px;}
.x63_c00455{left:380.700000px;}
.xa_c00455{left:382.650000px;}
.x35_c00455{left:386.550000px;}
.x3b_c00455{left:390.000000px;}
.x16_c00455{left:391.500000px;}
.x4b_c00455{left:393.300000px;}
.x94_c00455{left:395.250000px;}
.x10_c00455{left:396.600000px;}
.x28_c00455{left:399.000000px;}
.x6b_c00455{left:401.100000px;}
.xb_c00455{left:402.450000px;}
.x85_c00455{left:403.650000px;}
.x4f_c00455{left:405.000000px;}
.x76_c00455{left:409.350000px;}
.x60_c00455{left:411.750000px;}
.x72_c00455{left:414.750000px;}
.x7d_c00455{left:416.250000px;}
.x95_c00455{left:417.900000px;}
.x46_c00455{left:420.750000px;}
.x1f_c00455{left:422.250000px;}
.x2_c00455{left:425.850000px;}
.x89_c00455{left:426.900000px;}
.x43_c00455{left:428.700000px;}
.x29_c00455{left:430.350000px;}
.x23_c00455{left:431.400000px;}
.xa7_c00455{left:432.600000px;}
.x36_c00455{left:434.850000px;}
.x78_c00455{left:436.050000px;}
.x3c_c00455{left:437.100000px;}
.x67_c00455{left:440.700000px;}
.x50_c00455{left:443.550000px;}
.x17_c00455{left:445.500000px;}
.x8d_c00455{left:446.550000px;}
.x91_c00455{left:448.500000px;}
.x9c_c00455{left:450.450000px;}
.x57_c00455{left:452.400000px;}
.x11_c00455{left:454.200000px;}
.x37_c00455{left:455.400000px;}
.x73_c00455{left:456.450000px;}
.x61_c00455{left:457.500000px;}
.x51_c00455{left:459.450000px;}
.x86_c00455{left:463.350000px;}
.x18_c00455{left:465.300000px;}
.x2a_c00455{left:466.350000px;}
.x9a_c00455{left:467.700000px;}
.x24_c00455{left:469.500000px;}
.xa0_c00455{left:471.150000px;}
.x6d_c00455{left:472.650000px;}
.x4c_c00455{left:474.600000px;}
.x12_c00455{left:476.550000px;}
.x58_c00455{left:477.600000px;}
.x64_c00455{left:479.400000px;}
.x3d_c00455{left:481.050000px;}
.x96_c00455{left:482.400000px;}
.x82_c00455{left:483.900000px;}
.xa4_c00455{left:485.400000px;}
.x2d_c00455{left:487.950000px;}
.x68_c00455{left:489.600000px;}
.xc_c00455{left:492.150000px;}
.x7f_c00455{left:494.100000px;}
.x59_c00455{left:495.300000px;}
.x38_c00455{left:498.600000px;}
.x9d_c00455{left:499.800000px;}
.x25_c00455{left:501.150000px;}
.x19_c00455{left:502.350000px;}
.x30_c00455{left:503.400000px;}
.xa5_c00455{left:508.050000px;}
.x69_c00455{left:509.400000px;}
.x3e_c00455{left:513.750000px;}
.xa6_c00455{left:517.800000px;}
.xaf_c00455{left:525.600000px;}
.xfc_c00455{left:538.500000px;}
.x14b_c00455{left:541.500000px;}
.x151_c00455{left:547.500000px;}
.x105_c00455{left:550.050000px;}
.x14e_c00455{left:553.350000px;}
.xb0_c00455{left:554.400000px;}
.xb8_c00455{left:556.050000px;}
.xe8_c00455{left:557.250000px;}
.x118_c00455{left:558.300000px;}
.x140_c00455{left:559.500000px;}
.xbf_c00455{left:573.150000px;}
.x14f_c00455{left:577.800000px;}
.xc6_c00455{left:578.850000px;}
.x119_c00455{left:580.650000px;}
.x14c_c00455{left:582.900000px;}
.xe1_c00455{left:584.100000px;}
.x139_c00455{left:588.600000px;}
.xb9_c00455{left:590.550000px;}
.x152_c00455{left:593.550000px;}
.x150_c00455{left:595.050000px;}
.xf1_c00455{left:597.450000px;}
.x134_c00455{left:599.250000px;}
.xc7_c00455{left:601.200000px;}
.x106_c00455{left:602.550000px;}
.x128_c00455{left:604.650000px;}
.xf8_c00455{left:606.900000px;}
.x10a_c00455{left:608.700000px;}
.x13f_c00455{left:610.350000px;}
.xd5_c00455{left:613.650000px;}
.x114_c00455{left:615.900000px;}
.xce_c00455{left:617.100000px;}
.xe2_c00455{left:619.050000px;}
.xba_c00455{left:620.100000px;}
.x135_c00455{left:621.150000px;}
.xf2_c00455{left:622.650000px;}
.x10f_c00455{left:624.600000px;}
.xc8_c00455{left:626.100000px;}
.xc0_c00455{left:629.250000px;}
.xf9_c00455{left:632.100000px;}
.x121_c00455{left:633.150000px;}
.x11d_c00455{left:634.350000px;}
.xe9_c00455{left:636.450000px;}
.x131_c00455{left:639.450000px;}
.xb1_c00455{left:640.500000px;}
.xcf_c00455{left:642.600000px;}
.xdb_c00455{left:645.000000px;}
.xea_c00455{left:648.300000px;}
.x143_c00455{left:650.250000px;}
.x101_c00455{left:652.650000px;}
.x141_c00455{left:654.450000px;}
.xc1_c00455{left:657.000000px;}
.x13d_c00455{left:658.500000px;}
.x12b_c00455{left:660.150000px;}
.xfa_c00455{left:662.400000px;}
.xb2_c00455{left:665.400000px;}
.x14d_c00455{left:667.200000px;}
.x155_c00455{left:669.600000px;}
.xf3_c00455{left:672.000000px;}
.x11a_c00455{left:673.950000px;}
.xe3_c00455{left:676.350000px;}
.xfd_c00455{left:677.400000px;}
.xbb_c00455{left:678.450000px;}
.xfb_c00455{left:680.100000px;}
.xdc_c00455{left:682.800000px;}
.x153_c00455{left:685.650000px;}
.xb3_c00455{left:686.700000px;}
.xc9_c00455{left:689.100000px;}
.x10b_c00455{left:691.200000px;}
.xd6_c00455{left:692.850000px;}
.x132_c00455{left:694.200000px;}
.x12e_c00455{left:696.150000px;}
.x107_c00455{left:697.200000px;}
.x147_c00455{left:698.700000px;}
.xfe_c00455{left:699.750000px;}
.xeb_c00455{left:701.250000px;}
.x12c_c00455{left:704.100000px;}
.xd0_c00455{left:706.650000px;}
.x136_c00455{left:707.850000px;}
.x110_c00455{left:708.900000px;}
.xca_c00455{left:709.950000px;}
.x102_c00455{left:711.450000px;}
.xd7_c00455{left:712.650000px;}
.xc2_c00455{left:714.600000px;}
.xdd_c00455{left:716.700000px;}
.xf4_c00455{left:718.500000px;}
.xe4_c00455{left:724.950000px;}
.x127_c00455{left:726.300000px;}
.x108_c00455{left:727.500000px;}
.xbc_c00455{left:729.150000px;}
.xd1_c00455{left:731.100000px;}
.x12a_c00455{left:732.450000px;}
.xc3_c00455{left:735.450000px;}
.x13a_c00455{left:737.700000px;}
.x11b_c00455{left:739.050000px;}
.x156_c00455{left:740.250000px;}
.xf5_c00455{left:742.950000px;}
.x123_c00455{left:744.600000px;}
.x103_c00455{left:745.650000px;}
.xd2_c00455{left:747.600000px;}
.xb4_c00455{left:749.400000px;}
.xde_c00455{left:751.650000px;}
.x145_c00455{left:752.700000px;}
.x12f_c00455{left:753.750000px;}
.xd8_c00455{left:755.100000px;}
.xff_c00455{left:758.100000px;}
.x109_c00455{left:760.200000px;}
.x137_c00455{left:761.850000px;}
.x115_c00455{left:763.200000px;}
.xcb_c00455{left:764.700000px;}
.x12d_c00455{left:766.350000px;}
.xf0_c00455{left:767.700000px;}
.x11e_c00455{left:768.900000px;}
.xec_c00455{left:770.700000px;}
.xd3_c00455{left:772.500000px;}
.x154_c00455{left:773.550000px;}
.xb5_c00455{left:774.600000px;}
.x148_c00455{left:778.200000px;}
.xf6_c00455{left:779.250000px;}
.x14a_c00455{left:780.600000px;}
.x10c_c00455{left:782.250000px;}
.x157_c00455{left:784.050000px;}
.x129_c00455{left:785.700000px;}
.x146_c00455{left:787.200000px;}
.xcc_c00455{left:789.150000px;}
.x111_c00455{left:790.200000px;}
.x11f_c00455{left:792.000000px;}
.xd9_c00455{left:793.950000px;}
.xdf_c00455{left:796.050000px;}
.x133_c00455{left:797.250000px;}
.xe5_c00455{left:800.250000px;}
.x10d_c00455{left:801.750000px;}
.x13b_c00455{left:803.550000px;}
.xed_c00455{left:805.200000px;}
.x149_c00455{left:806.250000px;}
.xbd_c00455{left:807.600000px;}
.x104_c00455{left:808.650000px;}
.xc4_c00455{left:810.750000px;}
.x112_c00455{left:812.550000px;}
.x142_c00455{left:813.900000px;}
.xf7_c00455{left:815.250000px;}
.x116_c00455{left:817.200000px;}
.x13c_c00455{left:820.050000px;}
.xd4_c00455{left:821.100000px;}
.xee_c00455{left:822.900000px;}
.xcd_c00455{left:825.900000px;}
.xda_c00455{left:828.450000px;}
.xe0_c00455{left:831.000000px;}
.x124_c00455{left:832.800000px;}
.xb6_c00455{left:834.000000px;}
.x11c_c00455{left:840.900000px;}
.x125_c00455{left:842.550000px;}
.x138_c00455{left:844.200000px;}
.x100_c00455{left:845.850000px;}
.x113_c00455{left:847.800000px;}
.xe6_c00455{left:849.150000px;}
.x130_c00455{left:850.350000px;}
.x120_c00455{left:853.200000px;}
.x10e_c00455{left:854.700000px;}
.xc5_c00455{left:856.500000px;}
.xe7_c00455{left:858.150000px;}
.xef_c00455{left:859.200000px;}
.x126_c00455{left:860.250000px;}
.xb7_c00455{left:863.850000px;}
.x122_c00455{left:865.350000px;}
.x13e_c00455{left:868.050000px;}
.xbe_c00455{left:870.900000px;}
.x117_c00455{left:872.250000px;}
.x144_c00455{left:874.800000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws9_c00455{word-spacing:-6.401287pt;}
.wsa_c00455{word-spacing:0.000000pt;}
.ws5_c00455{word-spacing:0.888889pt;}
.ws4_c00455{word-spacing:1.111111pt;}
.ws8_c00455{word-spacing:1.185185pt;}
.ws6_c00455{word-spacing:1.637427pt;}
.ws3_c00455{word-spacing:2.882883pt;}
.ws1_c00455{word-spacing:5.163482pt;}
.ws0_c00455{word-spacing:16.000000pt;}
.ws7_c00455{word-spacing:66.060606pt;}
.ws2_c00455{word-spacing:2306.727735pt;}
._0_c00455{width:24.585444pt;}
.fs8_c00455{font-size:26.666667pt;}
.fs7_c00455{font-size:37.333333pt;}
.fs2_c00455{font-size:42.666667pt;}
.fs3_c00455{font-size:48.000000pt;}
.fs6_c00455{font-size:53.333333pt;}
.fs5_c00455{font-size:58.666667pt;}
.fs4_c00455{font-size:64.000000pt;}
.fs0_c00455{font-size:69.333333pt;}
.fs1_c00455{font-size:74.666667pt;}
.y0_c00455{bottom:0.000000pt;}
.y6d_c00455{bottom:176.933333pt;}
.y39_c00455{bottom:180.533333pt;}
.y4_c00455{bottom:184.000000pt;}
.y38_c00455{bottom:194.933333pt;}
.y3_c00455{bottom:196.800000pt;}
.y37_c00455{bottom:198.133333pt;}
.y3a_c00455{bottom:204.533333pt;}
.y36_c00455{bottom:209.333333pt;}
.y6c_c00455{bottom:216.000000pt;}
.y6b_c00455{bottom:231.733333pt;}
.y6a_c00455{bottom:247.333333pt;}
.y35_c00455{bottom:247.733333pt;}
.y34_c00455{bottom:262.800000pt;}
.y69_c00455{bottom:263.066667pt;}
.y67_c00455{bottom:275.200000pt;}
.y68_c00455{bottom:278.400000pt;}
.y33_c00455{bottom:278.533333pt;}
.y32_c00455{bottom:294.266667pt;}
.y66_c00455{bottom:298.266667pt;}
.y31_c00455{bottom:309.333333pt;}
.y30_c00455{bottom:324.400000pt;}
.y65_c00455{bottom:330.533333pt;}
.y2f_c00455{bottom:339.733333pt;}
.y64_c00455{bottom:346.266667pt;}
.y2e_c00455{bottom:355.466667pt;}
.y63_c00455{bottom:362.266667pt;}
.y2d_c00455{bottom:371.733333pt;}
.y62_c00455{bottom:378.266667pt;}
.y2c_c00455{bottom:386.400000pt;}
.y61_c00455{bottom:394.266667pt;}
.y2b_c00455{bottom:401.733333pt;}
.y60_c00455{bottom:409.733333pt;}
.y2a_c00455{bottom:417.466667pt;}
.y5f_c00455{bottom:425.733333pt;}
.y29_c00455{bottom:433.200000pt;}
.y5e_c00455{bottom:441.733333pt;}
.y28_c00455{bottom:448.933333pt;}
.y5d_c00455{bottom:457.466667pt;}
.y27_c00455{bottom:464.666667pt;}
.y5c_c00455{bottom:473.200000pt;}
.y26_c00455{bottom:480.666667pt;}
.y5b_c00455{bottom:489.200000pt;}
.y24_c00455{bottom:503.333333pt;}
.y5a_c00455{bottom:504.933333pt;}
.y23_c00455{bottom:519.066667pt;}
.y59_c00455{bottom:520.666667pt;}
.y22_c00455{bottom:534.800000pt;}
.y58_c00455{bottom:536.266667pt;}
.y21_c00455{bottom:550.533333pt;}
.y57_c00455{bottom:552.266667pt;}
.y20_c00455{bottom:566.266667pt;}
.y56_c00455{bottom:567.733333pt;}
.y1f_c00455{bottom:582.266667pt;}
.y55_c00455{bottom:583.600000pt;}
.y25_c00455{bottom:591.733333pt;}
.y1e_c00455{bottom:598.266667pt;}
.y54_c00455{bottom:599.600000pt;}
.y1d_c00455{bottom:614.000000pt;}
.y53_c00455{bottom:615.333333pt;}
.y1c_c00455{bottom:630.000000pt;}
.y52_c00455{bottom:631.066667pt;}
.y1b_c00455{bottom:645.733333pt;}
.y51_c00455{bottom:647.066667pt;}
.y50_c00455{bottom:663.066667pt;}
.y1a_c00455{bottom:665.066667pt;}
.y4f_c00455{bottom:678.400000pt;}
.y19_c00455{bottom:681.066667pt;}
.y4e_c00455{bottom:694.400000pt;}
.y18_c00455{bottom:696.800000pt;}
.y4d_c00455{bottom:710.400000pt;}
.y17_c00455{bottom:712.800000pt;}
.y4c_c00455{bottom:726.133333pt;}
.y16_c00455{bottom:728.533333pt;}
.y4b_c00455{bottom:741.733333pt;}
.y15_c00455{bottom:744.533333pt;}
.y4a_c00455{bottom:757.733333pt;}
.y14_c00455{bottom:760.266667pt;}
.y49_c00455{bottom:773.466667pt;}
.y13_c00455{bottom:776.000000pt;}
.y48_c00455{bottom:789.466667pt;}
.y12_c00455{bottom:792.000000pt;}
.y47_c00455{bottom:805.066667pt;}
.y11_c00455{bottom:808.000000pt;}
.y10_c00455{bottom:824.933333pt;}
.y46_c00455{bottom:828.133333pt;}
.yf_c00455{bottom:842.533333pt;}
.y45_c00455{bottom:843.866667pt;}
.ye_c00455{bottom:858.533333pt;}
.y44_c00455{bottom:859.600000pt;}
.yd_c00455{bottom:874.533333pt;}
.y43_c00455{bottom:875.333333pt;}
.yc_c00455{bottom:890.266667pt;}
.y42_c00455{bottom:891.333333pt;}
.yb_c00455{bottom:906.000000pt;}
.y41_c00455{bottom:907.066667pt;}
.ya_c00455{bottom:921.733333pt;}
.y40_c00455{bottom:922.800000pt;}
.y9_c00455{bottom:937.733333pt;}
.y3f_c00455{bottom:938.800000pt;}
.y8_c00455{bottom:953.066667pt;}
.y3e_c00455{bottom:954.533333pt;}
.y7_c00455{bottom:968.800000pt;}
.y3d_c00455{bottom:970.533333pt;}
.y6_c00455{bottom:984.533333pt;}
.y3c_c00455{bottom:986.266667pt;}
.y5_c00455{bottom:1000.266667pt;}
.y3b_c00455{bottom:1002.266667pt;}
.y1_c00455{bottom:1021.733333pt;}
.y2_c00455{bottom:1025.600000pt;}
.ha_c00455{height:26.666667pt;}
.h9_c00455{height:37.333333pt;}
.h4_c00455{height:42.666667pt;}
.h5_c00455{height:48.000000pt;}
.h8_c00455{height:53.333333pt;}
.h7_c00455{height:58.666667pt;}
.h6_c00455{height:64.000000pt;}
.h2_c00455{height:69.333333pt;}
.h3_c00455{height:74.666667pt;}
.h0_c00455{height:1129.920084pt;}
.h1_c00455{height:1130.000000pt;}
.w0_c00455{width:851.840007pt;}
.w1_c00455{width:852.000000pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:161.600000pt;}
.x3_c00455{left:164.533333pt;}
.x79_c00455{left:169.733333pt;}
.x81_c00455{left:170.666667pt;}
.x8e_c00455{left:172.000000pt;}
.x6e_c00455{left:175.333333pt;}
.x4d_c00455{left:176.400000pt;}
.x7a_c00455{left:178.000000pt;}
.xa8_c00455{left:178.933333pt;}
.x6_c00455{left:179.866667pt;}
.x1a_c00455{left:180.933333pt;}
.x62_c00455{left:182.000000pt;}
.xab_c00455{left:190.533333pt;}
.x4_c00455{left:193.066667pt;}
.x70_c00455{left:196.133333pt;}
.x47_c00455{left:197.066667pt;}
.x7b_c00455{left:198.533333pt;}
.x6c_c00455{left:199.466667pt;}
.x8a_c00455{left:200.400000pt;}
.x9e_c00455{left:201.600000pt;}
.x39_c00455{left:203.733333pt;}
.x8f_c00455{left:204.666667pt;}
.x5_c00455{left:206.133333pt;}
.x87_c00455{left:208.000000pt;}
.x92_c00455{left:210.000000pt;}
.x65_c00455{left:211.733333pt;}
.xd_c00455{left:213.466667pt;}
.x3f_c00455{left:214.533333pt;}
.x31_c00455{left:216.133333pt;}
.x5d_c00455{left:217.200000pt;}
.x20_c00455{left:218.133333pt;}
.x6a_c00455{left:219.866667pt;}
.x2e_c00455{left:220.933333pt;}
.xac_c00455{left:222.133333pt;}
.x74_c00455{left:224.666667pt;}
.x97_c00455{left:226.800000pt;}
.x44_c00455{left:228.400000pt;}
.x48_c00455{left:229.333333pt;}
.x7e_c00455{left:230.266667pt;}
.x52_c00455{left:231.466667pt;}
.x90_c00455{left:233.200000pt;}
.xa1_c00455{left:235.733333pt;}
.x40_c00455{left:236.666667pt;}
.x55_c00455{left:238.266667pt;}
.x2f_c00455{left:240.800000pt;}
.x84_c00455{left:242.266667pt;}
.x1b_c00455{left:243.333333pt;}
.x6f_c00455{left:244.400000pt;}
.x7_c00455{left:245.466667pt;}
.x5a_c00455{left:246.933333pt;}
.x3a_c00455{left:248.800000pt;}
.xa9_c00455{left:250.400000pt;}
.xad_c00455{left:251.333333pt;}
.x26_c00455{left:253.200000pt;}
.x45_c00455{left:254.933333pt;}
.x5e_c00455{left:256.266667pt;}
.x8b_c00455{left:257.733333pt;}
.x80_c00455{left:259.066667pt;}
.xaa_c00455{left:260.000000pt;}
.xe_c00455{left:261.066667pt;}
.x13_c00455{left:262.933333pt;}
.xa3_c00455{left:264.933333pt;}
.x32_c00455{left:266.133333pt;}
.x5b_c00455{left:267.733333pt;}
.x21_c00455{left:269.333333pt;}
.x2b_c00455{left:270.933333pt;}
.x56_c00455{left:273.733333pt;}
.x8c_c00455{left:275.333333pt;}
.x98_c00455{left:277.066667pt;}
.x1c_c00455{left:278.266667pt;}
.x49_c00455{left:280.533333pt;}
.x9b_c00455{left:281.733333pt;}
.x14_c00455{left:283.466667pt;}
.x41_c00455{left:285.600000pt;}
.xf_c00455{left:286.933333pt;}
.x4e_c00455{left:288.000000pt;}
.xa2_c00455{left:289.200000pt;}
.x8_c00455{left:290.533333pt;}
.x4a_c00455{left:292.400000pt;}
.x93_c00455{left:294.400000pt;}
.x5f_c00455{left:296.000000pt;}
.x53_c00455{left:297.066667pt;}
.x33_c00455{left:298.800000pt;}
.x71_c00455{left:300.800000pt;}
.x75_c00455{left:302.133333pt;}
.x88_c00455{left:303.333333pt;}
.x27_c00455{left:305.733333pt;}
.x9f_c00455{left:307.733333pt;}
.x22_c00455{left:309.600000pt;}
.x9_c00455{left:311.333333pt;}
.x1d_c00455{left:313.200000pt;}
.x83_c00455{left:315.066667pt;}
.x34_c00455{left:317.066667pt;}
.xae_c00455{left:318.133333pt;}
.x2c_c00455{left:319.200000pt;}
.x5c_c00455{left:320.533333pt;}
.x66_c00455{left:321.866667pt;}
.x42_c00455{left:323.066667pt;}
.x54_c00455{left:324.000000pt;}
.x77_c00455{left:327.066667pt;}
.x15_c00455{left:328.533333pt;}
.x7c_c00455{left:329.733333pt;}
.x1e_c00455{left:334.666667pt;}
.x99_c00455{left:337.333333pt;}
.x63_c00455{left:338.400000pt;}
.xa_c00455{left:340.133333pt;}
.x35_c00455{left:343.600000pt;}
.x3b_c00455{left:346.666667pt;}
.x16_c00455{left:348.000000pt;}
.x4b_c00455{left:349.600000pt;}
.x94_c00455{left:351.333333pt;}
.x10_c00455{left:352.533333pt;}
.x28_c00455{left:354.666667pt;}
.x6b_c00455{left:356.533333pt;}
.xb_c00455{left:357.733333pt;}
.x85_c00455{left:358.800000pt;}
.x4f_c00455{left:360.000000pt;}
.x76_c00455{left:363.866667pt;}
.x60_c00455{left:366.000000pt;}
.x72_c00455{left:368.666667pt;}
.x7d_c00455{left:370.000000pt;}
.x95_c00455{left:371.466667pt;}
.x46_c00455{left:374.000000pt;}
.x1f_c00455{left:375.333333pt;}
.x2_c00455{left:378.533333pt;}
.x89_c00455{left:379.466667pt;}
.x43_c00455{left:381.066667pt;}
.x29_c00455{left:382.533333pt;}
.x23_c00455{left:383.466667pt;}
.xa7_c00455{left:384.533333pt;}
.x36_c00455{left:386.533333pt;}
.x78_c00455{left:387.600000pt;}
.x3c_c00455{left:388.533333pt;}
.x67_c00455{left:391.733333pt;}
.x50_c00455{left:394.266667pt;}
.x17_c00455{left:396.000000pt;}
.x8d_c00455{left:396.933333pt;}
.x91_c00455{left:398.666667pt;}
.x9c_c00455{left:400.400000pt;}
.x57_c00455{left:402.133333pt;}
.x11_c00455{left:403.733333pt;}
.x37_c00455{left:404.800000pt;}
.x73_c00455{left:405.733333pt;}
.x61_c00455{left:406.666667pt;}
.x51_c00455{left:408.400000pt;}
.x86_c00455{left:411.866667pt;}
.x18_c00455{left:413.600000pt;}
.x2a_c00455{left:414.533333pt;}
.x9a_c00455{left:415.733333pt;}
.x24_c00455{left:417.333333pt;}
.xa0_c00455{left:418.800000pt;}
.x6d_c00455{left:420.133333pt;}
.x4c_c00455{left:421.866667pt;}
.x12_c00455{left:423.600000pt;}
.x58_c00455{left:424.533333pt;}
.x64_c00455{left:426.133333pt;}
.x3d_c00455{left:427.600000pt;}
.x96_c00455{left:428.800000pt;}
.x82_c00455{left:430.133333pt;}
.xa4_c00455{left:431.466667pt;}
.x2d_c00455{left:433.733333pt;}
.x68_c00455{left:435.200000pt;}
.xc_c00455{left:437.466667pt;}
.x7f_c00455{left:439.200000pt;}
.x59_c00455{left:440.266667pt;}
.x38_c00455{left:443.200000pt;}
.x9d_c00455{left:444.266667pt;}
.x25_c00455{left:445.466667pt;}
.x19_c00455{left:446.533333pt;}
.x30_c00455{left:447.466667pt;}
.xa5_c00455{left:451.600000pt;}
.x69_c00455{left:452.800000pt;}
.x3e_c00455{left:456.666667pt;}
.xa6_c00455{left:460.266667pt;}
.xaf_c00455{left:467.200000pt;}
.xfc_c00455{left:478.666667pt;}
.x14b_c00455{left:481.333333pt;}
.x151_c00455{left:486.666667pt;}
.x105_c00455{left:488.933333pt;}
.x14e_c00455{left:491.866667pt;}
.xb0_c00455{left:492.800000pt;}
.xb8_c00455{left:494.266667pt;}
.xe8_c00455{left:495.333333pt;}
.x118_c00455{left:496.266667pt;}
.x140_c00455{left:497.333333pt;}
.xbf_c00455{left:509.466667pt;}
.x14f_c00455{left:513.600000pt;}
.xc6_c00455{left:514.533333pt;}
.x119_c00455{left:516.133333pt;}
.x14c_c00455{left:518.133333pt;}
.xe1_c00455{left:519.200000pt;}
.x139_c00455{left:523.200000pt;}
.xb9_c00455{left:524.933333pt;}
.x152_c00455{left:527.600000pt;}
.x150_c00455{left:528.933333pt;}
.xf1_c00455{left:531.066667pt;}
.x134_c00455{left:532.666667pt;}
.xc7_c00455{left:534.400000pt;}
.x106_c00455{left:535.600000pt;}
.x128_c00455{left:537.466667pt;}
.xf8_c00455{left:539.466667pt;}
.x10a_c00455{left:541.066667pt;}
.x13f_c00455{left:542.533333pt;}
.xd5_c00455{left:545.466667pt;}
.x114_c00455{left:547.466667pt;}
.xce_c00455{left:548.533333pt;}
.xe2_c00455{left:550.266667pt;}
.xba_c00455{left:551.200000pt;}
.x135_c00455{left:552.133333pt;}
.xf2_c00455{left:553.466667pt;}
.x10f_c00455{left:555.200000pt;}
.xc8_c00455{left:556.533333pt;}
.xc0_c00455{left:559.333333pt;}
.xf9_c00455{left:561.866667pt;}
.x121_c00455{left:562.800000pt;}
.x11d_c00455{left:563.866667pt;}
.xe9_c00455{left:565.733333pt;}
.x131_c00455{left:568.400000pt;}
.xb1_c00455{left:569.333333pt;}
.xcf_c00455{left:571.200000pt;}
.xdb_c00455{left:573.333333pt;}
.xea_c00455{left:576.266667pt;}
.x143_c00455{left:578.000000pt;}
.x101_c00455{left:580.133333pt;}
.x141_c00455{left:581.733333pt;}
.xc1_c00455{left:584.000000pt;}
.x13d_c00455{left:585.333333pt;}
.x12b_c00455{left:586.800000pt;}
.xfa_c00455{left:588.800000pt;}
.xb2_c00455{left:591.466667pt;}
.x14d_c00455{left:593.066667pt;}
.x155_c00455{left:595.200000pt;}
.xf3_c00455{left:597.333333pt;}
.x11a_c00455{left:599.066667pt;}
.xe3_c00455{left:601.200000pt;}
.xfd_c00455{left:602.133333pt;}
.xbb_c00455{left:603.066667pt;}
.xfb_c00455{left:604.533333pt;}
.xdc_c00455{left:606.933333pt;}
.x153_c00455{left:609.466667pt;}
.xb3_c00455{left:610.400000pt;}
.xc9_c00455{left:612.533333pt;}
.x10b_c00455{left:614.400000pt;}
.xd6_c00455{left:615.866667pt;}
.x132_c00455{left:617.066667pt;}
.x12e_c00455{left:618.800000pt;}
.x107_c00455{left:619.733333pt;}
.x147_c00455{left:621.066667pt;}
.xfe_c00455{left:622.000000pt;}
.xeb_c00455{left:623.333333pt;}
.x12c_c00455{left:625.866667pt;}
.xd0_c00455{left:628.133333pt;}
.x136_c00455{left:629.200000pt;}
.x110_c00455{left:630.133333pt;}
.xca_c00455{left:631.066667pt;}
.x102_c00455{left:632.400000pt;}
.xd7_c00455{left:633.466667pt;}
.xc2_c00455{left:635.200000pt;}
.xdd_c00455{left:637.066667pt;}
.xf4_c00455{left:638.666667pt;}
.xe4_c00455{left:644.400000pt;}
.x127_c00455{left:645.600000pt;}
.x108_c00455{left:646.666667pt;}
.xbc_c00455{left:648.133333pt;}
.xd1_c00455{left:649.866667pt;}
.x12a_c00455{left:651.066667pt;}
.xc3_c00455{left:653.733333pt;}
.x13a_c00455{left:655.733333pt;}
.x11b_c00455{left:656.933333pt;}
.x156_c00455{left:658.000000pt;}
.xf5_c00455{left:660.400000pt;}
.x123_c00455{left:661.866667pt;}
.x103_c00455{left:662.800000pt;}
.xd2_c00455{left:664.533333pt;}
.xb4_c00455{left:666.133333pt;}
.xde_c00455{left:668.133333pt;}
.x145_c00455{left:669.066667pt;}
.x12f_c00455{left:670.000000pt;}
.xd8_c00455{left:671.200000pt;}
.xff_c00455{left:673.866667pt;}
.x109_c00455{left:675.733333pt;}
.x137_c00455{left:677.200000pt;}
.x115_c00455{left:678.400000pt;}
.xcb_c00455{left:679.733333pt;}
.x12d_c00455{left:681.200000pt;}
.xf0_c00455{left:682.400000pt;}
.x11e_c00455{left:683.466667pt;}
.xec_c00455{left:685.066667pt;}
.xd3_c00455{left:686.666667pt;}
.x154_c00455{left:687.600000pt;}
.xb5_c00455{left:688.533333pt;}
.x148_c00455{left:691.733333pt;}
.xf6_c00455{left:692.666667pt;}
.x14a_c00455{left:693.866667pt;}
.x10c_c00455{left:695.333333pt;}
.x157_c00455{left:696.933333pt;}
.x129_c00455{left:698.400000pt;}
.x146_c00455{left:699.733333pt;}
.xcc_c00455{left:701.466667pt;}
.x111_c00455{left:702.400000pt;}
.x11f_c00455{left:704.000000pt;}
.xd9_c00455{left:705.733333pt;}
.xdf_c00455{left:707.600000pt;}
.x133_c00455{left:708.666667pt;}
.xe5_c00455{left:711.333333pt;}
.x10d_c00455{left:712.666667pt;}
.x13b_c00455{left:714.266667pt;}
.xed_c00455{left:715.733333pt;}
.x149_c00455{left:716.666667pt;}
.xbd_c00455{left:717.866667pt;}
.x104_c00455{left:718.800000pt;}
.xc4_c00455{left:720.666667pt;}
.x112_c00455{left:722.266667pt;}
.x142_c00455{left:723.466667pt;}
.xf7_c00455{left:724.666667pt;}
.x116_c00455{left:726.400000pt;}
.x13c_c00455{left:728.933333pt;}
.xd4_c00455{left:729.866667pt;}
.xee_c00455{left:731.466667pt;}
.xcd_c00455{left:734.133333pt;}
.xda_c00455{left:736.400000pt;}
.xe0_c00455{left:738.666667pt;}
.x124_c00455{left:740.266667pt;}
.xb6_c00455{left:741.333333pt;}
.x11c_c00455{left:747.466667pt;}
.x125_c00455{left:748.933333pt;}
.x138_c00455{left:750.400000pt;}
.x100_c00455{left:751.866667pt;}
.x113_c00455{left:753.600000pt;}
.xe6_c00455{left:754.800000pt;}
.x130_c00455{left:755.866667pt;}
.x120_c00455{left:758.400000pt;}
.x10e_c00455{left:759.733333pt;}
.xc5_c00455{left:761.333333pt;}
.xe7_c00455{left:762.800000pt;}
.xef_c00455{left:763.733333pt;}
.x126_c00455{left:764.666667pt;}
.xb7_c00455{left:767.866667pt;}
.x122_c00455{left:769.200000pt;}
.x13e_c00455{left:771.600000pt;}
.xbe_c00455{left:774.133333pt;}
.x117_c00455{left:775.333333pt;}
.x144_c00455{left:777.600000pt;}
}





/* 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_c00456 {
    display:none;
  }
  .loading-indicator_c00456.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00456 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_c00456 { 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_c00456" -> "#page-container .classname_c00456")
 */
.pf_c00456 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00456 { /* 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_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00456 { /* 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_c00456 { /* 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_c00456 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00456 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00456 {overflow:visible;}
  }
}
.c_c00456 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00456 { /* 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_c00456:after { /* webkit #35443 */
  content: '';
}
.t_c00456:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00456 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 */
}
.__c00456 { /* 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_c00456 { /* info for Javascript */
  display:none;
}
.l_c00456 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00456 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00456 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00456: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_c00456 {
    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_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00456.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_c00456 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00456;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.000000;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;}
.m31_c00456{transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017250,0.000000,0.000000,0.250000,0,0);}
.m119_c00456{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00456{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m12_c00456{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00456{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m17_c00456{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00456{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m104_c00456{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00456{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00456{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m39_c00456{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m33_c00456{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m73_c00456{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md8_c00456{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00456{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00456{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00456{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00456{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.md4_c00456{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00456{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00456{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me4_c00456{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00456{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m108_c00456{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00456{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00456{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00456{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00456{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.mef_c00456{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mde_c00456{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m109_c00456{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.mba_c00456{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.md2_c00456{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00456{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00456{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00456{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5_c00456{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m70_c00456{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m67_c00456{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00456{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m42_c00456{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00456{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m43_c00456{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m110_c00456{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m86_c00456{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00456{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.me8_c00456{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m7_c00456{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00456{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00456{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m14_c00456{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m59_c00456{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00456{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00456{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00456{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00456{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.me_c00456{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md_c00456{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00456{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m55_c00456{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00456{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m93_c00456{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00456{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.ma_c00456{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m90_c00456{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00456{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m30_c00456{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00456{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m11_c00456{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m92_c00456{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mf_c00456{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00456{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00456{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m19_c00456{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m69_c00456{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00456{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00456{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m15_c00456{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md0_c00456{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m29_c00456{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00456{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m89_c00456{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m35_c00456{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m91_c00456{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00456{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m61_c00456{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00456{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00456{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00456{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00456{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00456{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00456{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m45_c00456{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m16_c00456{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mac_c00456{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00456{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00456{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m83_c00456{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m28_c00456{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00456{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m27_c00456{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00456{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00456{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m47_c00456{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00456{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m100_c00456{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00456{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m62_c00456{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m96_c00456{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m85_c00456{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00456{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00456{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00456{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00456{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00456{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m57_c00456{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00456{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00456{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m48_c00456{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m72_c00456{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00456{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00456{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m66_c00456{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m38_c00456{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m88_c00456{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00456{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m98_c00456{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00456{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00456{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m79_c00456{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m18_c00456{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00456{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m52_c00456{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md1_c00456{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00456{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m37_c00456{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00456{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m107_c00456{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m60_c00456{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m120_c00456{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00456{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m80_c00456{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00456{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m49_c00456{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m78_c00456{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00456{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m101_c00456{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m87_c00456{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m76_c00456{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m103_c00456{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00456{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00456{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m41_c00456{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m10_c00456{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00456{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m64_c00456{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00456{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md5_c00456{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc_c00456{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00456{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mff_c00456{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00456{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m40_c00456{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00456{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00456{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00456{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00456{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00456{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mb_c00456{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mec_c00456{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mae_c00456{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00456{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mce_c00456{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m44_c00456{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mab_c00456{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m54_c00456{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m25_c00456{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00456{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00456{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00456{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00456{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00456{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m32_c00456{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00456{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m75_c00456{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mca_c00456{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m97_c00456{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me2_c00456{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m26_c00456{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00456{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m21_c00456{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.me3_c00456{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m94_c00456{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00456{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00456{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m50_c00456{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00456{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m56_c00456{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00456{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00456{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m68_c00456{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00456{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md7_c00456{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m84_c00456{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m63_c00456{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8_c00456{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m23_c00456{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m65_c00456{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.med_c00456{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00456{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m46_c00456{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m77_c00456{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00456{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m102_c00456{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00456{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00456{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6_c00456{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m99_c00456{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m105_c00456{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00456{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m20_c00456{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mee_c00456{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.me0_c00456{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md3_c00456{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00456{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m51_c00456{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00456{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00456{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00456{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00456{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m71_c00456{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9_c00456{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00456{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m24_c00456{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m13_c00456{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m81_c00456{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m34_c00456{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.maf_c00456{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00456{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m95_c00456{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00456{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m74_c00456{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4_c00456{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m53_c00456{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m118_c00456{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00456{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00456{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00456{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.maa_c00456{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00456{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00456{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00456{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mda_c00456{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me6_c00456{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m113_c00456{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00456{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00456{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mea_c00456{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.me9_c00456{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md9_c00456{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.meb_c00456{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md6_c00456{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.me7_c00456{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m58_c00456{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m114_c00456{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m82_c00456{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m36_c00456{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00456{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.me1_c00456{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00456{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00456{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00456{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m111_c00456{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mad_c00456{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00456{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00456{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m106_c00456{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00456{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m115_c00456{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00456{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00456{transform:matrix(0.375250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375250,0.000000,0.000000,0.250000,0,0);}
.m116_c00456{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m117_c00456{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m112_c00456{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.me5_c00456{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls0_c00456{letter-spacing:0.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{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__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:-11.538462px;}
.ws5_c00456{word-spacing:-4.934708px;}
.ws6_c00456{word-spacing:0.000000px;}
.ws1_c00456{word-spacing:11.562500px;}
.ws4_c00456{word-spacing:20.500000px;}
.ws3_c00456{word-spacing:25.153285px;}
.ws2_c00456{word-spacing:106.679300px;}
.fc0_c00456{color:transparent;}
.fs7_c00456{font-size:24.000000px;}
.fs6_c00456{font-size:30.000000px;}
.fs8_c00456{font-size:36.000000px;}
.fs3_c00456{font-size:42.000000px;}
.fs4_c00456{font-size:54.000000px;}
.fs1_c00456{font-size:60.000000px;}
.fs2_c00456{font-size:66.000000px;}
.fs5_c00456{font-size:72.000000px;}
.fs0_c00456{font-size:84.000000px;}
.y0_c00456{bottom:0.000000px;}
.y6f_c00456{bottom:196.050000px;}
.y39_c00456{bottom:200.550000px;}
.y6e_c00456{bottom:214.050000px;}
.y38_c00456{bottom:217.800000px;}
.y6d_c00456{bottom:232.350000px;}
.y37_c00456{bottom:235.050000px;}
.y6c_c00456{bottom:250.050000px;}
.y36_c00456{bottom:253.050000px;}
.y6b_c00456{bottom:267.750000px;}
.y35_c00456{bottom:270.300000px;}
.y6a_c00456{bottom:285.750000px;}
.y34_c00456{bottom:288.300000px;}
.y69_c00456{bottom:303.450000px;}
.y33_c00456{bottom:310.650000px;}
.y68_c00456{bottom:321.450000px;}
.y32_c00456{bottom:328.350000px;}
.y67_c00456{bottom:339.150000px;}
.y31_c00456{bottom:346.350000px;}
.y66_c00456{bottom:362.550000px;}
.y64_c00456{bottom:362.850000px;}
.y65_c00456{bottom:363.900000px;}
.y30_c00456{bottom:367.500000px;}
.y63_c00456{bottom:378.600000px;}
.y70_c00456{bottom:382.650000px;}
.y2f_c00456{bottom:385.500000px;}
.y62_c00456{bottom:392.700000px;}
.y2e_c00456{bottom:403.200000px;}
.y61_c00456{bottom:406.800000px;}
.y2d_c00456{bottom:421.950000px;}
.y60_c00456{bottom:422.250000px;}
.y2c_c00456{bottom:438.900000px;}
.y5f_c00456{bottom:440.700000px;}
.y5e_c00456{bottom:445.650000px;}
.y2b_c00456{bottom:456.150000px;}
.y5d_c00456{bottom:463.650000px;}
.y2a_c00456{bottom:474.150000px;}
.y5c_c00456{bottom:480.900000px;}
.y29_c00456{bottom:491.850000px;}
.y5b_c00456{bottom:498.600000px;}
.y28_c00456{bottom:509.550000px;}
.y5a_c00456{bottom:516.600000px;}
.y27_c00456{bottom:527.250000px;}
.y59_c00456{bottom:534.600000px;}
.y26_c00456{bottom:545.250000px;}
.y58_c00456{bottom:552.300000px;}
.y25_c00456{bottom:562.950000px;}
.y57_c00456{bottom:578.250000px;}
.y24_c00456{bottom:580.950000px;}
.y56_c00456{bottom:595.950000px;}
.y23_c00456{bottom:598.650000px;}
.y55_c00456{bottom:613.650000px;}
.y22_c00456{bottom:616.350000px;}
.y54_c00456{bottom:631.650000px;}
.y21_c00456{bottom:634.350000px;}
.y53_c00456{bottom:649.350000px;}
.y20_c00456{bottom:652.050000px;}
.y52_c00456{bottom:667.050000px;}
.y1f_c00456{bottom:669.750000px;}
.y51_c00456{bottom:685.050000px;}
.y1e_c00456{bottom:687.450000px;}
.y50_c00456{bottom:703.050000px;}
.y1d_c00456{bottom:705.150000px;}
.y1c_c00456{bottom:722.850000px;}
.y4f_c00456{bottom:729.000000px;}
.y1b_c00456{bottom:740.550000px;}
.y4e_c00456{bottom:747.300000px;}
.y1a_c00456{bottom:758.250000px;}
.y19_c00456{bottom:776.550000px;}
.y4d_c00456{bottom:781.950000px;}
.y18_c00456{bottom:793.800000px;}
.y4c_c00456{bottom:799.950000px;}
.y17_c00456{bottom:811.500000px;}
.y4b_c00456{bottom:817.650000px;}
.y16_c00456{bottom:829.200000px;}
.y4a_c00456{bottom:835.350000px;}
.y15_c00456{bottom:846.900000px;}
.y49_c00456{bottom:853.350000px;}
.y14_c00456{bottom:864.900000px;}
.y48_c00456{bottom:871.350000px;}
.y13_c00456{bottom:882.600000px;}
.y47_c00456{bottom:889.050000px;}
.y12_c00456{bottom:900.300000px;}
.y46_c00456{bottom:906.750000px;}
.y45_c00456{bottom:924.750000px;}
.y11_c00456{bottom:924.900000px;}
.y10_c00456{bottom:935.250000px;}
.yf_c00456{bottom:939.600000px;}
.y44_c00456{bottom:942.450000px;}
.ye_c00456{bottom:954.000000px;}
.y43_c00456{bottom:964.500000px;}
.yd_c00456{bottom:968.400000px;}
.y42_c00456{bottom:982.500000px;}
.yc_c00456{bottom:983.850000px;}
.yb_c00456{bottom:997.950000px;}
.y41_c00456{bottom:1008.450000px;}
.ya_c00456{bottom:1010.550000px;}
.y9_c00456{bottom:1024.200000px;}
.y40_c00456{bottom:1026.150000px;}
.y8_c00456{bottom:1042.650000px;}
.y3f_c00456{bottom:1044.150000px;}
.y7_c00456{bottom:1060.650000px;}
.y3e_c00456{bottom:1062.150000px;}
.y6_c00456{bottom:1077.900000px;}
.y3d_c00456{bottom:1079.850000px;}
.y5_c00456{bottom:1096.200000px;}
.y3c_c00456{bottom:1097.550000px;}
.y4_c00456{bottom:1113.450000px;}
.y3b_c00456{bottom:1115.250000px;}
.y3_c00456{bottom:1131.150000px;}
.y3a_c00456{bottom:1133.250000px;}
.y1_c00456{bottom:1158.900000px;}
.y2_c00456{bottom:1159.650000px;}
.h9_c00456{height:24.000000px;}
.h8_c00456{height:30.000000px;}
.ha_c00456{height:36.000000px;}
.h5_c00456{height:42.000000px;}
.h6_c00456{height:54.000000px;}
.h3_c00456{height:60.000000px;}
.h4_c00456{height:66.000000px;}
.h7_c00456{height:72.000000px;}
.h2_c00456{height:84.000000px;}
.h0_c00456{height:1277.640015px;}
.h1_c00456{height:1278.000000px;}
.w0_c00456{width:958.320007px;}
.w1_c00456{width:958.500000px;}
.x0_c00456{left:0.000000px;}
.x35_c00456{left:78.000000px;}
.x52_c00456{left:79.500000px;}
.xa8_c00456{left:83.850000px;}
.x43_c00456{left:91.800000px;}
.x3_c00456{left:92.850000px;}
.xb_c00456{left:95.550000px;}
.x28_c00456{left:96.900000px;}
.x54_c00456{left:98.400000px;}
.x85_c00456{left:99.450000px;}
.x8e_c00456{left:100.650000px;}
.xa9_c00456{left:101.850000px;}
.x40_c00456{left:106.350000px;}
.x3c_c00456{left:107.700000px;}
.x76_c00456{left:118.500000px;}
.x44_c00456{left:120.300000px;}
.x97_c00456{left:123.000000px;}
.x91_c00456{left:124.950000px;}
.xa2_c00456{left:126.000000px;}
.x14_c00456{left:127.200000px;}
.x67_c00456{left:128.700000px;}
.x4b_c00456{left:133.500000px;}
.x45_c00456{left:135.450000px;}
.x29_c00456{left:136.800000px;}
.x36_c00456{left:138.150000px;}
.x7c_c00456{left:139.350000px;}
.x15_c00456{left:142.650000px;}
.x4_c00456{left:144.000000px;}
.xc_c00456{left:145.650000px;}
.x68_c00456{left:148.500000px;}
.x2e_c00456{left:150.150000px;}
.x9b_c00456{left:153.450000px;}
.x8f_c00456{left:156.450000px;}
.x59_c00456{left:158.250000px;}
.x86_c00456{left:159.900000px;}
.x71_c00456{left:161.250000px;}
.xd_c00456{left:163.650000px;}
.x80_c00456{left:164.700000px;}
.x16_c00456{left:168.150000px;}
.x2a_c00456{left:169.950000px;}
.x1b_c00456{left:171.900000px;}
.x7d_c00456{left:173.250000px;}
.x46_c00456{left:175.350000px;}
.x5_c00456{left:177.150000px;}
.x3d_c00456{left:179.400000px;}
.x6d_c00456{left:180.750000px;}
.x77_c00456{left:183.300000px;}
.x69_c00456{left:184.500000px;}
.x21_c00456{left:186.150000px;}
.xa0_c00456{left:189.750000px;}
.x9d_c00456{left:192.000000px;}
.xe_c00456{left:193.500000px;}
.x72_c00456{left:194.700000px;}
.x1c_c00456{left:196.800000px;}
.x98_c00456{left:197.850000px;}
.x50_c00456{left:201.600000px;}
.x5f_c00456{left:203.700000px;}
.x5a_c00456{left:205.800000px;}
.x17_c00456{left:207.450000px;}
.x4c_c00456{left:209.100000px;}
.xa6_c00456{left:210.750000px;}
.x37_c00456{left:211.950000px;}
.x3e_c00456{left:213.300000px;}
.x99_c00456{left:215.100000px;}
.x22_c00456{left:217.050000px;}
.x8b_c00456{left:219.300000px;}
.x89_c00456{left:222.150000px;}
.x9e_c00456{left:223.350000px;}
.x55_c00456{left:224.400000px;}
.x8d_c00456{left:225.600000px;}
.x5b_c00456{left:228.900000px;}
.x4d_c00456{left:231.450000px;}
.x64_c00456{left:233.550000px;}
.x23_c00456{left:236.850000px;}
.x60_c00456{left:238.650000px;}
.x47_c00456{left:240.150000px;}
.x9c_c00456{left:242.700000px;}
.x7a_c00456{left:243.750000px;}
.x1d_c00456{left:247.200000px;}
.xf_c00456{left:248.550000px;}
.x6_c00456{left:250.950000px;}
.x38_c00456{left:253.350000px;}
.x51_c00456{left:254.550000px;}
.xa1_c00456{left:257.100000px;}
.x56_c00456{left:258.900000px;}
.xa4_c00456{left:260.400000px;}
.x81_c00456{left:261.450000px;}
.x48_c00456{left:263.250000px;}
.x65_c00456{left:264.450000px;}
.x92_c00456{left:265.800000px;}
.x7_c00456{left:266.850000px;}
.xae_c00456{left:268.650000px;}
.x9f_c00456{left:271.200000px;}
.x7b_c00456{left:272.550000px;}
.x41_c00456{left:274.050000px;}
.x93_c00456{left:275.100000px;}
.x24_c00456{left:277.200000px;}
.x73_c00456{left:278.550000px;}
.x57_c00456{left:279.750000px;}
.x61_c00456{left:280.800000px;}
.x5c_c00456{left:281.850000px;}
.x10_c00456{left:283.050000px;}
.x49_c00456{left:284.550000px;}
.x18_c00456{left:286.350000px;}
.x82_c00456{left:288.750000px;}
.xa7_c00456{left:289.800000px;}
.x90_c00456{left:291.600000px;}
.x6e_c00456{left:292.950000px;}
.x39_c00456{left:294.450000px;}
.x6a_c00456{left:295.800000px;}
.x78_c00456{left:297.150000px;}
.x11_c00456{left:298.500000px;}
.x7f_c00456{left:300.750000px;}
.x74_c00456{left:302.250000px;}
.x9a_c00456{left:306.450000px;}
.xab_c00456{left:308.400000px;}
.x58_c00456{left:309.600000px;}
.x2b_c00456{left:310.650000px;}
.x8_c00456{left:312.600000px;}
.x6f_c00456{left:313.800000px;}
.x25_c00456{left:315.750000px;}
.x1_c00456{left:317.850000px;}
.x1e_c00456{left:319.200000px;}
.x95_c00456{left:320.250000px;}
.x4e_c00456{left:321.450000px;}
.x53_c00456{left:323.850000px;}
.x8a_c00456{left:326.250000px;}
.x87_c00456{left:329.100000px;}
.x9_c00456{left:330.900000px;}
.x2c_c00456{left:333.300000px;}
.x75_c00456{left:334.350000px;}
.x5d_c00456{left:336.900000px;}
.xac_c00456{left:338.250000px;}
.x2f_c00456{left:340.650000px;}
.x83_c00456{left:341.700000px;}
.x3a_c00456{left:343.050000px;}
.x4a_c00456{left:345.450000px;}
.x26_c00456{left:347.400000px;}
.x30_c00456{left:349.350000px;}
.x62_c00456{left:350.550000px;}
.x1f_c00456{left:353.100000px;}
.x5e_c00456{left:354.600000px;}
.x32_c00456{left:356.250000px;}
.x12_c00456{left:357.600000px;}
.xaa_c00456{left:358.650000px;}
.x42_c00456{left:360.150000px;}
.x94_c00456{left:361.500000px;}
.x88_c00456{left:363.600000px;}
.x33_c00456{left:365.250000px;}
.x19_c00456{left:367.800000px;}
.x66_c00456{left:369.900000px;}
.x27_c00456{left:371.550000px;}
.x3f_c00456{left:372.750000px;}
.x20_c00456{left:374.400000px;}
.x8c_c00456{left:375.600000px;}
.x13_c00456{left:377.400000px;}
.x7e_c00456{left:378.600000px;}
.x1a_c00456{left:380.100000px;}
.x63_c00456{left:381.150000px;}
.x2d_c00456{left:382.650000px;}
.x6b_c00456{left:383.700000px;}
.xad_c00456{left:385.500000px;}
.x79_c00456{left:388.800000px;}
.xa_c00456{left:391.050000px;}
.x6c_c00456{left:393.450000px;}
.xa3_c00456{left:395.700000px;}
.x4f_c00456{left:397.800000px;}
.x31_c00456{left:399.000000px;}
.x3b_c00456{left:400.950000px;}
.x34_c00456{left:402.300000px;}
.xa5_c00456{left:403.650000px;}
.x96_c00456{left:406.650000px;}
.x84_c00456{left:410.850000px;}
.x70_c00456{left:412.200000px;}
.xdf_c00456{left:435.600000px;}
.x110_c00456{left:437.100000px;}
.x129_c00456{left:438.900000px;}
.xaf_c00456{left:450.000000px;}
.xbe_c00456{left:451.200000px;}
.xcb_c00456{left:452.700000px;}
.xff_c00456{left:453.900000px;}
.xf4_c00456{left:454.950000px;}
.x11e_c00456{left:456.150000px;}
.x146_c00456{left:457.950000px;}
.x134_c00456{left:460.800000px;}
.x141_c00456{left:468.000000px;}
.xd5_c00456{left:469.500000px;}
.x102_c00456{left:471.150000px;}
.x114_c00456{left:473.400000px;}
.x12e_c00456{left:476.550000px;}
.x14c_c00456{left:478.200000px;}
.xc5_c00456{left:480.300000px;}
.xef_c00456{left:482.100000px;}
.x124_c00456{left:483.600000px;}
.x10a_c00456{left:484.800000px;}
.xbf_c00456{left:486.900000px;}
.x116_c00456{left:488.550000px;}
.xe6_c00456{left:489.900000px;}
.x149_c00456{left:491.550000px;}
.xb6_c00456{left:494.850000px;}
.x125_c00456{left:496.650000px;}
.x151_c00456{left:497.700000px;}
.x13c_c00456{left:499.050000px;}
.x117_c00456{left:500.400000px;}
.xd6_c00456{left:501.600000px;}
.x135_c00456{left:502.950000px;}
.xf5_c00456{left:504.600000px;}
.xdb_c00456{left:507.450000px;}
.xd2_c00456{left:509.700000px;}
.xc6_c00456{left:510.900000px;}
.xc0_c00456{left:512.400000px;}
.xea_c00456{left:516.600000px;}
.x14d_c00456{left:517.800000px;}
.x111_c00456{left:518.850000px;}
.xcc_c00456{left:520.350000px;}
.x103_c00456{left:521.850000px;}
.xe0_c00456{left:524.550000px;}
.x106_c00456{left:526.650000px;}
.xdc_c00456{left:528.300000px;}
.xf6_c00456{left:531.300000px;}
.xb7_c00456{left:533.400000px;}
.x112_c00456{left:535.350000px;}
.xb0_c00456{left:537.150000px;}
.x136_c00456{left:539.250000px;}
.x10b_c00456{left:541.350000px;}
.x100_c00456{left:543.150000px;}
.x128_c00456{left:545.100000px;}
.x12a_c00456{left:548.400000px;}
.xf7_c00456{left:549.600000px;}
.xe7_c00456{left:551.100000px;}
.x12f_c00456{left:552.150000px;}
.xb8_c00456{left:553.950000px;}
.xc1_c00456{left:555.300000px;}
.x142_c00456{left:556.650000px;}
.xeb_c00456{left:558.300000px;}
.xb1_c00456{left:560.550000px;}
.x145_c00456{left:564.450000px;}
.x130_c00456{left:565.800000px;}
.xe1_c00456{left:568.050000px;}
.x13b_c00456{left:569.250000px;}
.x143_c00456{left:571.350000px;}
.x11f_c00456{left:572.700000px;}
.x118_c00456{left:576.450000px;}
.x147_c00456{left:578.550000px;}
.xe8_c00456{left:579.600000px;}
.xcd_c00456{left:583.050000px;}
.xb2_c00456{left:586.050000px;}
.xc7_c00456{left:587.550000px;}
.xec_c00456{left:588.600000px;}
.xe2_c00456{left:589.650000px;}
.x152_c00456{left:592.350000px;}
.x131_c00456{left:593.550000px;}
.xb9_c00456{left:595.050000px;}
.xf8_c00456{left:597.150000px;}
.x119_c00456{left:600.600000px;}
.xf2_c00456{left:602.100000px;}
.xd3_c00456{left:603.300000px;}
.x121_c00456{left:604.500000px;}
.x12b_c00456{left:605.850000px;}
.xc8_c00456{left:608.850000px;}
.x137_c00456{left:610.200000px;}
.x120_c00456{left:612.000000px;}
.xf9_c00456{left:613.650000px;}
.x104_c00456{left:615.450000px;}
.xba_c00456{left:619.500000px;}
.xe3_c00456{left:621.300000px;}
.xce_c00456{left:622.350000px;}
.x126_c00456{left:624.150000px;}
.xd7_c00456{left:628.800000px;}
.x107_c00456{left:632.400000px;}
.x115_c00456{left:635.100000px;}
.xc2_c00456{left:639.150000px;}
.xb3_c00456{left:641.100000px;}
.x122_c00456{left:643.050000px;}
.x14b_c00456{left:644.100000px;}
.x11a_c00456{left:646.650000px;}
.x108_c00456{left:648.300000px;}
.x12c_c00456{left:651.900000px;}
.xdd_c00456{left:653.850000px;}
.x14e_c00456{left:656.250000px;}
.xfa_c00456{left:658.650000px;}
.x148_c00456{left:660.900000px;}
.xcf_c00456{left:662.700000px;}
.x105_c00456{left:663.750000px;}
.xd8_c00456{left:666.150000px;}
.x10e_c00456{left:667.950000px;}
.x138_c00456{left:669.900000px;}
.xbb_c00456{left:672.450000px;}
.x14a_c00456{left:674.400000px;}
.xde_c00456{left:675.750000px;}
.x13d_c00456{left:678.000000px;}
.x12d_c00456{left:679.650000px;}
.xfb_c00456{left:681.000000px;}
.xe4_c00456{left:682.500000px;}
.xe9_c00456{left:684.000000px;}
.xed_c00456{left:685.800000px;}
.x11b_c00456{left:687.000000px;}
.x113_c00456{left:688.650000px;}
.xf0_c00456{left:689.850000px;}
.xbc_c00456{left:691.200000px;}
.xd0_c00456{left:692.250000px;}
.xc3_c00456{left:694.200000px;}
.x14f_c00456{left:696.600000px;}
.xf3_c00456{left:698.250000px;}
.xd4_c00456{left:699.450000px;}
.x132_c00456{left:700.500000px;}
.x10c_c00456{left:702.600000px;}
.x144_c00456{left:703.800000px;}
.x13f_c00456{left:705.300000px;}
.xfc_c00456{left:706.950000px;}
.xb4_c00456{left:708.000000px;}
.x127_c00456{left:714.900000px;}
.xc4_c00456{left:716.550000px;}
.xc9_c00456{left:718.350000px;}
.xf1_c00456{left:720.450000px;}
.x133_c00456{left:722.100000px;}
.xee_c00456{left:724.350000px;}
.xe5_c00456{left:726.000000px;}
.x109_c00456{left:727.800000px;}
.x139_c00456{left:729.300000px;}
.xd9_c00456{left:730.950000px;}
.x11c_c00456{left:732.300000px;}
.x140_c00456{left:734.400000px;}
.xb5_c00456{left:739.650000px;}
.x2_c00456{left:740.850000px;}
.xfd_c00456{left:742.650000px;}
.x150_c00456{left:745.500000px;}
.xd1_c00456{left:746.550000px;}
.x123_c00456{left:747.900000px;}
.xca_c00456{left:748.950000px;}
.x11d_c00456{left:750.300000px;}
.x13a_c00456{left:752.700000px;}
.x10d_c00456{left:754.050000px;}
.xbd_c00456{left:755.700000px;}
.xda_c00456{left:756.900000px;}
.x101_c00456{left:759.450000px;}
.x10f_c00456{left:760.500000px;}
.x13e_c00456{left:761.850000px;}
.xfe_c00456{left:763.500000px;}
.x153_c00456{left:784.800000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:-10.256410pt;}
.ws5_c00456{word-spacing:-4.386407pt;}
.ws6_c00456{word-spacing:0.000000pt;}
.ws1_c00456{word-spacing:10.277778pt;}
.ws4_c00456{word-spacing:18.222222pt;}
.ws3_c00456{word-spacing:22.358475pt;}
.ws2_c00456{word-spacing:94.826045pt;}
.fs7_c00456{font-size:21.333333pt;}
.fs6_c00456{font-size:26.666667pt;}
.fs8_c00456{font-size:32.000000pt;}
.fs3_c00456{font-size:37.333333pt;}
.fs4_c00456{font-size:48.000000pt;}
.fs1_c00456{font-size:53.333333pt;}
.fs2_c00456{font-size:58.666667pt;}
.fs5_c00456{font-size:64.000000pt;}
.fs0_c00456{font-size:74.666667pt;}
.y0_c00456{bottom:0.000000pt;}
.y6f_c00456{bottom:174.266667pt;}
.y39_c00456{bottom:178.266667pt;}
.y6e_c00456{bottom:190.266667pt;}
.y38_c00456{bottom:193.600000pt;}
.y6d_c00456{bottom:206.533333pt;}
.y37_c00456{bottom:208.933333pt;}
.y6c_c00456{bottom:222.266667pt;}
.y36_c00456{bottom:224.933333pt;}
.y6b_c00456{bottom:238.000000pt;}
.y35_c00456{bottom:240.266667pt;}
.y6a_c00456{bottom:254.000000pt;}
.y34_c00456{bottom:256.266667pt;}
.y69_c00456{bottom:269.733333pt;}
.y33_c00456{bottom:276.133333pt;}
.y68_c00456{bottom:285.733333pt;}
.y32_c00456{bottom:291.866667pt;}
.y67_c00456{bottom:301.466667pt;}
.y31_c00456{bottom:307.866667pt;}
.y66_c00456{bottom:322.266667pt;}
.y64_c00456{bottom:322.533333pt;}
.y65_c00456{bottom:323.466667pt;}
.y30_c00456{bottom:326.666667pt;}
.y63_c00456{bottom:336.533333pt;}
.y70_c00456{bottom:340.133333pt;}
.y2f_c00456{bottom:342.666667pt;}
.y62_c00456{bottom:349.066667pt;}
.y2e_c00456{bottom:358.400000pt;}
.y61_c00456{bottom:361.600000pt;}
.y2d_c00456{bottom:375.066667pt;}
.y60_c00456{bottom:375.333333pt;}
.y2c_c00456{bottom:390.133333pt;}
.y5f_c00456{bottom:391.733333pt;}
.y5e_c00456{bottom:396.133333pt;}
.y2b_c00456{bottom:405.466667pt;}
.y5d_c00456{bottom:412.133333pt;}
.y2a_c00456{bottom:421.466667pt;}
.y5c_c00456{bottom:427.466667pt;}
.y29_c00456{bottom:437.200000pt;}
.y5b_c00456{bottom:443.200000pt;}
.y28_c00456{bottom:452.933333pt;}
.y5a_c00456{bottom:459.200000pt;}
.y27_c00456{bottom:468.666667pt;}
.y59_c00456{bottom:475.200000pt;}
.y26_c00456{bottom:484.666667pt;}
.y58_c00456{bottom:490.933333pt;}
.y25_c00456{bottom:500.400000pt;}
.y57_c00456{bottom:514.000000pt;}
.y24_c00456{bottom:516.400000pt;}
.y56_c00456{bottom:529.733333pt;}
.y23_c00456{bottom:532.133333pt;}
.y55_c00456{bottom:545.466667pt;}
.y22_c00456{bottom:547.866667pt;}
.y54_c00456{bottom:561.466667pt;}
.y21_c00456{bottom:563.866667pt;}
.y53_c00456{bottom:577.200000pt;}
.y20_c00456{bottom:579.600000pt;}
.y52_c00456{bottom:592.933333pt;}
.y1f_c00456{bottom:595.333333pt;}
.y51_c00456{bottom:608.933333pt;}
.y1e_c00456{bottom:611.066667pt;}
.y50_c00456{bottom:624.933333pt;}
.y1d_c00456{bottom:626.800000pt;}
.y1c_c00456{bottom:642.533333pt;}
.y4f_c00456{bottom:648.000000pt;}
.y1b_c00456{bottom:658.266667pt;}
.y4e_c00456{bottom:664.266667pt;}
.y1a_c00456{bottom:674.000000pt;}
.y19_c00456{bottom:690.266667pt;}
.y4d_c00456{bottom:695.066667pt;}
.y18_c00456{bottom:705.600000pt;}
.y4c_c00456{bottom:711.066667pt;}
.y17_c00456{bottom:721.333333pt;}
.y4b_c00456{bottom:726.800000pt;}
.y16_c00456{bottom:737.066667pt;}
.y4a_c00456{bottom:742.533333pt;}
.y15_c00456{bottom:752.800000pt;}
.y49_c00456{bottom:758.533333pt;}
.y14_c00456{bottom:768.800000pt;}
.y48_c00456{bottom:774.533333pt;}
.y13_c00456{bottom:784.533333pt;}
.y47_c00456{bottom:790.266667pt;}
.y12_c00456{bottom:800.266667pt;}
.y46_c00456{bottom:806.000000pt;}
.y45_c00456{bottom:822.000000pt;}
.y11_c00456{bottom:822.133333pt;}
.y10_c00456{bottom:831.333333pt;}
.yf_c00456{bottom:835.200000pt;}
.y44_c00456{bottom:837.733333pt;}
.ye_c00456{bottom:848.000000pt;}
.y43_c00456{bottom:857.333333pt;}
.yd_c00456{bottom:860.800000pt;}
.y42_c00456{bottom:873.333333pt;}
.yc_c00456{bottom:874.533333pt;}
.yb_c00456{bottom:887.066667pt;}
.y41_c00456{bottom:896.400000pt;}
.ya_c00456{bottom:898.266667pt;}
.y9_c00456{bottom:910.400000pt;}
.y40_c00456{bottom:912.133333pt;}
.y8_c00456{bottom:926.800000pt;}
.y3f_c00456{bottom:928.133333pt;}
.y7_c00456{bottom:942.800000pt;}
.y3e_c00456{bottom:944.133333pt;}
.y6_c00456{bottom:958.133333pt;}
.y3d_c00456{bottom:959.866667pt;}
.y5_c00456{bottom:974.400000pt;}
.y3c_c00456{bottom:975.600000pt;}
.y4_c00456{bottom:989.733333pt;}
.y3b_c00456{bottom:991.333333pt;}
.y3_c00456{bottom:1005.466667pt;}
.y3a_c00456{bottom:1007.333333pt;}
.y1_c00456{bottom:1030.133333pt;}
.y2_c00456{bottom:1030.800000pt;}
.h9_c00456{height:21.333333pt;}
.h8_c00456{height:26.666667pt;}
.ha_c00456{height:32.000000pt;}
.h5_c00456{height:37.333333pt;}
.h6_c00456{height:48.000000pt;}
.h3_c00456{height:53.333333pt;}
.h4_c00456{height:58.666667pt;}
.h7_c00456{height:64.000000pt;}
.h2_c00456{height:74.666667pt;}
.h0_c00456{height:1135.680013pt;}
.h1_c00456{height:1136.000000pt;}
.w0_c00456{width:851.840007pt;}
.w1_c00456{width:852.000000pt;}
.x0_c00456{left:0.000000pt;}
.x35_c00456{left:69.333333pt;}
.x52_c00456{left:70.666667pt;}
.xa8_c00456{left:74.533333pt;}
.x43_c00456{left:81.600000pt;}
.x3_c00456{left:82.533333pt;}
.xb_c00456{left:84.933333pt;}
.x28_c00456{left:86.133333pt;}
.x54_c00456{left:87.466667pt;}
.x85_c00456{left:88.400000pt;}
.x8e_c00456{left:89.466667pt;}
.xa9_c00456{left:90.533333pt;}
.x40_c00456{left:94.533333pt;}
.x3c_c00456{left:95.733333pt;}
.x76_c00456{left:105.333333pt;}
.x44_c00456{left:106.933333pt;}
.x97_c00456{left:109.333333pt;}
.x91_c00456{left:111.066667pt;}
.xa2_c00456{left:112.000000pt;}
.x14_c00456{left:113.066667pt;}
.x67_c00456{left:114.400000pt;}
.x4b_c00456{left:118.666667pt;}
.x45_c00456{left:120.400000pt;}
.x29_c00456{left:121.600000pt;}
.x36_c00456{left:122.800000pt;}
.x7c_c00456{left:123.866667pt;}
.x15_c00456{left:126.800000pt;}
.x4_c00456{left:128.000000pt;}
.xc_c00456{left:129.466667pt;}
.x68_c00456{left:132.000000pt;}
.x2e_c00456{left:133.466667pt;}
.x9b_c00456{left:136.400000pt;}
.x8f_c00456{left:139.066667pt;}
.x59_c00456{left:140.666667pt;}
.x86_c00456{left:142.133333pt;}
.x71_c00456{left:143.333333pt;}
.xd_c00456{left:145.466667pt;}
.x80_c00456{left:146.400000pt;}
.x16_c00456{left:149.466667pt;}
.x2a_c00456{left:151.066667pt;}
.x1b_c00456{left:152.800000pt;}
.x7d_c00456{left:154.000000pt;}
.x46_c00456{left:155.866667pt;}
.x5_c00456{left:157.466667pt;}
.x3d_c00456{left:159.466667pt;}
.x6d_c00456{left:160.666667pt;}
.x77_c00456{left:162.933333pt;}
.x69_c00456{left:164.000000pt;}
.x21_c00456{left:165.466667pt;}
.xa0_c00456{left:168.666667pt;}
.x9d_c00456{left:170.666667pt;}
.xe_c00456{left:172.000000pt;}
.x72_c00456{left:173.066667pt;}
.x1c_c00456{left:174.933333pt;}
.x98_c00456{left:175.866667pt;}
.x50_c00456{left:179.200000pt;}
.x5f_c00456{left:181.066667pt;}
.x5a_c00456{left:182.933333pt;}
.x17_c00456{left:184.400000pt;}
.x4c_c00456{left:185.866667pt;}
.xa6_c00456{left:187.333333pt;}
.x37_c00456{left:188.400000pt;}
.x3e_c00456{left:189.600000pt;}
.x99_c00456{left:191.200000pt;}
.x22_c00456{left:192.933333pt;}
.x8b_c00456{left:194.933333pt;}
.x89_c00456{left:197.466667pt;}
.x9e_c00456{left:198.533333pt;}
.x55_c00456{left:199.466667pt;}
.x8d_c00456{left:200.533333pt;}
.x5b_c00456{left:203.466667pt;}
.x4d_c00456{left:205.733333pt;}
.x64_c00456{left:207.600000pt;}
.x23_c00456{left:210.533333pt;}
.x60_c00456{left:212.133333pt;}
.x47_c00456{left:213.466667pt;}
.x9c_c00456{left:215.733333pt;}
.x7a_c00456{left:216.666667pt;}
.x1d_c00456{left:219.733333pt;}
.xf_c00456{left:220.933333pt;}
.x6_c00456{left:223.066667pt;}
.x38_c00456{left:225.200000pt;}
.x51_c00456{left:226.266667pt;}
.xa1_c00456{left:228.533333pt;}
.x56_c00456{left:230.133333pt;}
.xa4_c00456{left:231.466667pt;}
.x81_c00456{left:232.400000pt;}
.x48_c00456{left:234.000000pt;}
.x65_c00456{left:235.066667pt;}
.x92_c00456{left:236.266667pt;}
.x7_c00456{left:237.200000pt;}
.xae_c00456{left:238.800000pt;}
.x9f_c00456{left:241.066667pt;}
.x7b_c00456{left:242.266667pt;}
.x41_c00456{left:243.600000pt;}
.x93_c00456{left:244.533333pt;}
.x24_c00456{left:246.400000pt;}
.x73_c00456{left:247.600000pt;}
.x57_c00456{left:248.666667pt;}
.x61_c00456{left:249.600000pt;}
.x5c_c00456{left:250.533333pt;}
.x10_c00456{left:251.600000pt;}
.x49_c00456{left:252.933333pt;}
.x18_c00456{left:254.533333pt;}
.x82_c00456{left:256.666667pt;}
.xa7_c00456{left:257.600000pt;}
.x90_c00456{left:259.200000pt;}
.x6e_c00456{left:260.400000pt;}
.x39_c00456{left:261.733333pt;}
.x6a_c00456{left:262.933333pt;}
.x78_c00456{left:264.133333pt;}
.x11_c00456{left:265.333333pt;}
.x7f_c00456{left:267.333333pt;}
.x74_c00456{left:268.666667pt;}
.x9a_c00456{left:272.400000pt;}
.xab_c00456{left:274.133333pt;}
.x58_c00456{left:275.200000pt;}
.x2b_c00456{left:276.133333pt;}
.x8_c00456{left:277.866667pt;}
.x6f_c00456{left:278.933333pt;}
.x25_c00456{left:280.666667pt;}
.x1_c00456{left:282.533333pt;}
.x1e_c00456{left:283.733333pt;}
.x95_c00456{left:284.666667pt;}
.x4e_c00456{left:285.733333pt;}
.x53_c00456{left:287.866667pt;}
.x8a_c00456{left:290.000000pt;}
.x87_c00456{left:292.533333pt;}
.x9_c00456{left:294.133333pt;}
.x2c_c00456{left:296.266667pt;}
.x75_c00456{left:297.200000pt;}
.x5d_c00456{left:299.466667pt;}
.xac_c00456{left:300.666667pt;}
.x2f_c00456{left:302.800000pt;}
.x83_c00456{left:303.733333pt;}
.x3a_c00456{left:304.933333pt;}
.x4a_c00456{left:307.066667pt;}
.x26_c00456{left:308.800000pt;}
.x30_c00456{left:310.533333pt;}
.x62_c00456{left:311.600000pt;}
.x1f_c00456{left:313.866667pt;}
.x5e_c00456{left:315.200000pt;}
.x32_c00456{left:316.666667pt;}
.x12_c00456{left:317.866667pt;}
.xaa_c00456{left:318.800000pt;}
.x42_c00456{left:320.133333pt;}
.x94_c00456{left:321.333333pt;}
.x88_c00456{left:323.200000pt;}
.x33_c00456{left:324.666667pt;}
.x19_c00456{left:326.933333pt;}
.x66_c00456{left:328.800000pt;}
.x27_c00456{left:330.266667pt;}
.x3f_c00456{left:331.333333pt;}
.x20_c00456{left:332.800000pt;}
.x8c_c00456{left:333.866667pt;}
.x13_c00456{left:335.466667pt;}
.x7e_c00456{left:336.533333pt;}
.x1a_c00456{left:337.866667pt;}
.x63_c00456{left:338.800000pt;}
.x2d_c00456{left:340.133333pt;}
.x6b_c00456{left:341.066667pt;}
.xad_c00456{left:342.666667pt;}
.x79_c00456{left:345.600000pt;}
.xa_c00456{left:347.600000pt;}
.x6c_c00456{left:349.733333pt;}
.xa3_c00456{left:351.733333pt;}
.x4f_c00456{left:353.600000pt;}
.x31_c00456{left:354.666667pt;}
.x3b_c00456{left:356.400000pt;}
.x34_c00456{left:357.600000pt;}
.xa5_c00456{left:358.800000pt;}
.x96_c00456{left:361.466667pt;}
.x84_c00456{left:365.200000pt;}
.x70_c00456{left:366.400000pt;}
.xdf_c00456{left:387.200000pt;}
.x110_c00456{left:388.533333pt;}
.x129_c00456{left:390.133333pt;}
.xaf_c00456{left:400.000000pt;}
.xbe_c00456{left:401.066667pt;}
.xcb_c00456{left:402.400000pt;}
.xff_c00456{left:403.466667pt;}
.xf4_c00456{left:404.400000pt;}
.x11e_c00456{left:405.466667pt;}
.x146_c00456{left:407.066667pt;}
.x134_c00456{left:409.600000pt;}
.x141_c00456{left:416.000000pt;}
.xd5_c00456{left:417.333333pt;}
.x102_c00456{left:418.800000pt;}
.x114_c00456{left:420.800000pt;}
.x12e_c00456{left:423.600000pt;}
.x14c_c00456{left:425.066667pt;}
.xc5_c00456{left:426.933333pt;}
.xef_c00456{left:428.533333pt;}
.x124_c00456{left:429.866667pt;}
.x10a_c00456{left:430.933333pt;}
.xbf_c00456{left:432.800000pt;}
.x116_c00456{left:434.266667pt;}
.xe6_c00456{left:435.466667pt;}
.x149_c00456{left:436.933333pt;}
.xb6_c00456{left:439.866667pt;}
.x125_c00456{left:441.466667pt;}
.x151_c00456{left:442.400000pt;}
.x13c_c00456{left:443.600000pt;}
.x117_c00456{left:444.800000pt;}
.xd6_c00456{left:445.866667pt;}
.x135_c00456{left:447.066667pt;}
.xf5_c00456{left:448.533333pt;}
.xdb_c00456{left:451.066667pt;}
.xd2_c00456{left:453.066667pt;}
.xc6_c00456{left:454.133333pt;}
.xc0_c00456{left:455.466667pt;}
.xea_c00456{left:459.200000pt;}
.x14d_c00456{left:460.266667pt;}
.x111_c00456{left:461.200000pt;}
.xcc_c00456{left:462.533333pt;}
.x103_c00456{left:463.866667pt;}
.xe0_c00456{left:466.266667pt;}
.x106_c00456{left:468.133333pt;}
.xdc_c00456{left:469.600000pt;}
.xf6_c00456{left:472.266667pt;}
.xb7_c00456{left:474.133333pt;}
.x112_c00456{left:475.866667pt;}
.xb0_c00456{left:477.466667pt;}
.x136_c00456{left:479.333333pt;}
.x10b_c00456{left:481.200000pt;}
.x100_c00456{left:482.800000pt;}
.x128_c00456{left:484.533333pt;}
.x12a_c00456{left:487.466667pt;}
.xf7_c00456{left:488.533333pt;}
.xe7_c00456{left:489.866667pt;}
.x12f_c00456{left:490.800000pt;}
.xb8_c00456{left:492.400000pt;}
.xc1_c00456{left:493.600000pt;}
.x142_c00456{left:494.800000pt;}
.xeb_c00456{left:496.266667pt;}
.xb1_c00456{left:498.266667pt;}
.x145_c00456{left:501.733333pt;}
.x130_c00456{left:502.933333pt;}
.xe1_c00456{left:504.933333pt;}
.x13b_c00456{left:506.000000pt;}
.x143_c00456{left:507.866667pt;}
.x11f_c00456{left:509.066667pt;}
.x118_c00456{left:512.400000pt;}
.x147_c00456{left:514.266667pt;}
.xe8_c00456{left:515.200000pt;}
.xcd_c00456{left:518.266667pt;}
.xb2_c00456{left:520.933333pt;}
.xc7_c00456{left:522.266667pt;}
.xec_c00456{left:523.200000pt;}
.xe2_c00456{left:524.133333pt;}
.x152_c00456{left:526.533333pt;}
.x131_c00456{left:527.600000pt;}
.xb9_c00456{left:528.933333pt;}
.xf8_c00456{left:530.800000pt;}
.x119_c00456{left:533.866667pt;}
.xf2_c00456{left:535.200000pt;}
.xd3_c00456{left:536.266667pt;}
.x121_c00456{left:537.333333pt;}
.x12b_c00456{left:538.533333pt;}
.xc8_c00456{left:541.200000pt;}
.x137_c00456{left:542.400000pt;}
.x120_c00456{left:544.000000pt;}
.xf9_c00456{left:545.466667pt;}
.x104_c00456{left:547.066667pt;}
.xba_c00456{left:550.666667pt;}
.xe3_c00456{left:552.266667pt;}
.xce_c00456{left:553.200000pt;}
.x126_c00456{left:554.800000pt;}
.xd7_c00456{left:558.933333pt;}
.x107_c00456{left:562.133333pt;}
.x115_c00456{left:564.533333pt;}
.xc2_c00456{left:568.133333pt;}
.xb3_c00456{left:569.866667pt;}
.x122_c00456{left:571.600000pt;}
.x14b_c00456{left:572.533333pt;}
.x11a_c00456{left:574.800000pt;}
.x108_c00456{left:576.266667pt;}
.x12c_c00456{left:579.466667pt;}
.xdd_c00456{left:581.200000pt;}
.x14e_c00456{left:583.333333pt;}
.xfa_c00456{left:585.466667pt;}
.x148_c00456{left:587.466667pt;}
.xcf_c00456{left:589.066667pt;}
.x105_c00456{left:590.000000pt;}
.xd8_c00456{left:592.133333pt;}
.x10e_c00456{left:593.733333pt;}
.x138_c00456{left:595.466667pt;}
.xbb_c00456{left:597.733333pt;}
.x14a_c00456{left:599.466667pt;}
.xde_c00456{left:600.666667pt;}
.x13d_c00456{left:602.666667pt;}
.x12d_c00456{left:604.133333pt;}
.xfb_c00456{left:605.333333pt;}
.xe4_c00456{left:606.666667pt;}
.xe9_c00456{left:608.000000pt;}
.xed_c00456{left:609.600000pt;}
.x11b_c00456{left:610.666667pt;}
.x113_c00456{left:612.133333pt;}
.xf0_c00456{left:613.200000pt;}
.xbc_c00456{left:614.400000pt;}
.xd0_c00456{left:615.333333pt;}
.xc3_c00456{left:617.066667pt;}
.x14f_c00456{left:619.200000pt;}
.xf3_c00456{left:620.666667pt;}
.xd4_c00456{left:621.733333pt;}
.x132_c00456{left:622.666667pt;}
.x10c_c00456{left:624.533333pt;}
.x144_c00456{left:625.600000pt;}
.x13f_c00456{left:626.933333pt;}
.xfc_c00456{left:628.400000pt;}
.xb4_c00456{left:629.333333pt;}
.x127_c00456{left:635.466667pt;}
.xc4_c00456{left:636.933333pt;}
.xc9_c00456{left:638.533333pt;}
.xf1_c00456{left:640.400000pt;}
.x133_c00456{left:641.866667pt;}
.xee_c00456{left:643.866667pt;}
.xe5_c00456{left:645.333333pt;}
.x109_c00456{left:646.933333pt;}
.x139_c00456{left:648.266667pt;}
.xd9_c00456{left:649.733333pt;}
.x11c_c00456{left:650.933333pt;}
.x140_c00456{left:652.800000pt;}
.xb5_c00456{left:657.466667pt;}
.x2_c00456{left:658.533333pt;}
.xfd_c00456{left:660.133333pt;}
.x150_c00456{left:662.666667pt;}
.xd1_c00456{left:663.600000pt;}
.x123_c00456{left:664.800000pt;}
.xca_c00456{left:665.733333pt;}
.x11d_c00456{left:666.933333pt;}
.x13a_c00456{left:669.066667pt;}
.x10d_c00456{left:670.266667pt;}
.xbd_c00456{left:671.733333pt;}
.xda_c00456{left:672.800000pt;}
.x101_c00456{left:675.066667pt;}
.x10f_c00456{left:676.000000pt;}
.x13e_c00456{left:677.200000pt;}
.xfe_c00456{left:678.666667pt;}
.x153_c00456{left:697.600000pt;}
}





/* 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_c00457 {
    display:none;
  }
  .loading-indicator_c00457.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00457 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_c00457 { 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_c00457" -> "#page-container .classname_c00457")
 */
.pf_c00457 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00457 { /* 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_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00457 { /* 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_c00457 { /* 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_c00457 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00457 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00457 {overflow:visible;}
  }
}
.c_c00457 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00457 { /* 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_c00457:after { /* webkit #35443 */
  content: '';
}
.t_c00457:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00457 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 */
}
.__c00457 { /* 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_c00457 { /* info for Javascript */
  display:none;
}
.l_c00457 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00457 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00457 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00457: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_c00457 {
    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_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00457.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_c00457 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00457{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00457;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.000000;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;}
.mb9_c00457{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m108_c00457{transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00457{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00457{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.maa_c00457{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m20_c00457{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.md3_c00457{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00457{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00457{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m116_c00457{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00457{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mab_c00457{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m107_c00457{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00457{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00457{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m91_c00457{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.me8_c00457{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.me2_c00457{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00457{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m98_c00457{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00457{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00457{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00457{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00457{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00457{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m47_c00457{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00457{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00457{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m46_c00457{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00457{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me0_c00457{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m51_c00457{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m65_c00457{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00457{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m49_c00457{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m96_c00457{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00457{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m11_c00457{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m89_c00457{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m29_c00457{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m12_c00457{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00457{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00457{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m118_c00457{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00457{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00457{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00457{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf_c00457{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m27_c00457{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m38_c00457{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00457{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00457{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m78_c00457{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m106_c00457{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.md7_c00457{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00457{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00457{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00457{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00457{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m97_c00457{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00457{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00457{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m100_c00457{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00457{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00457{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m74_c00457{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00457{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.md5_c00457{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00457{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m59_c00457{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m119_c00457{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6_c00457{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00457{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00457{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m31_c00457{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00457{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00457{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m61_c00457{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m103_c00457{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m41_c00457{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00457{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m114_c00457{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m79_c00457{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m63_c00457{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00457{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m37_c00457{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m87_c00457{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mff_c00457{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.md6_c00457{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m32_c00457{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00457{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m86_c00457{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m117_c00457{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m5_c00457{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m99_c00457{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00457{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m36_c00457{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m80_c00457{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mee_c00457{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00457{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00457{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me7_c00457{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00457{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00457{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00457{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00457{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m73_c00457{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00457{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me_c00457{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m115_c00457{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m69_c00457{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00457{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m15_c00457{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m113_c00457{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00457{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m68_c00457{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00457{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00457{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m64_c00457{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.md0_c00457{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mca_c00457{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00457{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m48_c00457{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00457{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00457{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00457{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00457{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m26_c00457{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m56_c00457{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m85_c00457{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m75_c00457{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m104_c00457{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md4_c00457{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m83_c00457{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m52_c00457{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00457{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00457{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00457{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m105_c00457{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00457{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m76_c00457{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m45_c00457{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00457{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.med_c00457{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m10_c00457{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00457{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00457{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m94_c00457{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m44_c00457{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mda_c00457{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m14_c00457{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m50_c00457{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00457{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mad_c00457{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00457{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m60_c00457{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m90_c00457{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me6_c00457{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00457{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m16_c00457{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00457{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00457{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00457{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00457{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00457{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00457{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.md1_c00457{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m111_c00457{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9_c00457{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00457{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00457{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m25_c00457{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7_c00457{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m109_c00457{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00457{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc_c00457{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00457{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m77_c00457{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m58_c00457{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m120_c00457{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.maf_c00457{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00457{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m112_c00457{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00457{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00457{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00457{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00457{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m28_c00457{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00457{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m67_c00457{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.md8_c00457{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb_c00457{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m102_c00457{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me1_c00457{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m33_c00457{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma_c00457{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00457{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m13_c00457{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00457{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m72_c00457{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00457{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m55_c00457{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00457{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00457{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m62_c00457{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.me4_c00457{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m21_c00457{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00457{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00457{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00457{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00457{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00457{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m95_c00457{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00457{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me3_c00457{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m88_c00457{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00457{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mef_c00457{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mea_c00457{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m93_c00457{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m101_c00457{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.md_c00457{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m71_c00457{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m19_c00457{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00457{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00457{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00457{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m17_c00457{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md2_c00457{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00457{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m23_c00457{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00457{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m53_c00457{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m54_c00457{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md9_c00457{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m24_c00457{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m40_c00457{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m22_c00457{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m81_c00457{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00457{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mac_c00457{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m35_c00457{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00457{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m34_c00457{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m57_c00457{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m92_c00457{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00457{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00457{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00457{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00457{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00457{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00457{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00457{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m121_c00457{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m18_c00457{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.meb_c00457{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00457{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00457{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00457{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m70_c00457{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me9_c00457{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mde_c00457{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mce_c00457{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mec_c00457{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m66_c00457{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m82_c00457{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m39_c00457{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m110_c00457{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00457{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mba_c00457{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m30_c00457{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00457{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00457{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00457{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8_c00457{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00457{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m42_c00457{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m43_c00457{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00457{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);}
.mae_c00457{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00457{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00457{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.me5_c00457{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00457{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00457{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls1_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:45.000000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{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__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00457{word-spacing:-75.000000px;}
.ws1_c00457{word-spacing:-12.396439px;}
.wsd_c00457{word-spacing:-8.333333px;}
.ws14_c00457{word-spacing:-7.500000px;}
.wsb_c00457{word-spacing:-6.911765px;}
.ws13_c00457{word-spacing:-4.393939px;}
.ws0_c00457{word-spacing:-2.179487px;}
.ws10_c00457{word-spacing:-1.722557px;}
.ws15_c00457{word-spacing:0.000000px;}
.ws11_c00457{word-spacing:1.465621px;}
.ws12_c00457{word-spacing:9.401274px;}
.wsc_c00457{word-spacing:11.875000px;}
.ws2_c00457{word-spacing:15.000000px;}
.ws5_c00457{word-spacing:22.142857px;}
.ws3_c00457{word-spacing:22.812500px;}
.ws9_c00457{word-spacing:25.714286px;}
.ws8_c00457{word-spacing:29.285714px;}
.ws7_c00457{word-spacing:40.000000px;}
.ws4_c00457{word-spacing:61.250000px;}
.ws6_c00457{word-spacing:65.000000px;}
.wsa_c00457{word-spacing:66.315789px;}
.wsf_c00457{word-spacing:68.750000px;}
._4_c00457{margin-left:-45.000000px;}
._5_c00457{width:48.125000px;}
._1_c00457{width:55.714286px;}
._0_c00457{width:59.285714px;}
._3_c00457{width:97.631579px;}
._2_c00457{width:402.142857px;}
.fc0_c00457{color:transparent;}
.fs4_c00457{font-size:54.000000px;}
.fs3_c00457{font-size:60.000000px;}
.fs2_c00457{font-size:66.000000px;}
.fs1_c00457{font-size:72.000000px;}
.fs5_c00457{font-size:78.000000px;}
.fs0_c00457{font-size:84.000000px;}
.y0_c00457{bottom:0.000000px;}
.y1f_c00457{bottom:9.000000px;}
.y6c_c00457{bottom:194.400000px;}
.y38_c00457{bottom:199.350000px;}
.y37_c00457{bottom:212.700000px;}
.y36_c00457{bottom:227.550000px;}
.y6b_c00457{bottom:237.300000px;}
.y39_c00457{bottom:240.450000px;}
.y35_c00457{bottom:241.200000px;}
.y6a_c00457{bottom:255.150000px;}
.y34_c00457{bottom:255.300000px;}
.y33_c00457{bottom:268.950000px;}
.y69_c00457{bottom:272.850000px;}
.y32_c00457{bottom:282.600000px;}
.y68_c00457{bottom:293.100000px;}
.y31_c00457{bottom:296.250000px;}
.y30_c00457{bottom:309.600000px;}
.y67_c00457{bottom:311.700000px;}
.y2f_c00457{bottom:324.300000px;}
.y66_c00457{bottom:329.700000px;}
.y2e_c00457{bottom:337.950000px;}
.y65_c00457{bottom:346.950000px;}
.y2d_c00457{bottom:351.600000px;}
.y64_c00457{bottom:364.650000px;}
.y2c_c00457{bottom:365.700000px;}
.y63_c00457{bottom:387.300000px;}
.y2b_c00457{bottom:405.300000px;}
.y2a_c00457{bottom:419.700000px;}
.y62_c00457{bottom:423.000000px;}
.y29_c00457{bottom:432.600000px;}
.y61_c00457{bottom:441.300000px;}
.y28_c00457{bottom:448.500000px;}
.y60_c00457{bottom:459.000000px;}
.y27_c00457{bottom:462.600000px;}
.y26_c00457{bottom:475.950000px;}
.y5f_c00457{bottom:477.000000px;}
.y25_c00457{bottom:490.050000px;}
.y5e_c00457{bottom:499.200000px;}
.y24_c00457{bottom:502.950000px;}
.y5d_c00457{bottom:516.900000px;}
.y23_c00457{bottom:517.650000px;}
.y22_c00457{bottom:531.750000px;}
.y5c_c00457{bottom:534.900000px;}
.y21_c00457{bottom:546.750000px;}
.y5b_c00457{bottom:560.400000px;}
.y20_c00457{bottom:563.700000px;}
.y5a_c00457{bottom:578.700000px;}
.y1e_c00457{bottom:584.700000px;}
.y59_c00457{bottom:596.700000px;}
.y1d_c00457{bottom:604.500000px;}
.y58_c00457{bottom:614.700000px;}
.y1c_c00457{bottom:622.500000px;}
.y57_c00457{bottom:632.400000px;}
.y1b_c00457{bottom:640.200000px;}
.y56_c00457{bottom:650.700000px;}
.y1a_c00457{bottom:657.450000px;}
.y55_c00457{bottom:668.400000px;}
.y19_c00457{bottom:675.450000px;}
.y54_c00457{bottom:686.100000px;}
.y18_c00457{bottom:693.450000px;}
.y53_c00457{bottom:703.800000px;}
.y17_c00457{bottom:710.700000px;}
.y52_c00457{bottom:721.800000px;}
.y16_c00457{bottom:728.700000px;}
.y51_c00457{bottom:739.500000px;}
.y15_c00457{bottom:749.850000px;}
.y50_c00457{bottom:757.200000px;}
.y14_c00457{bottom:767.850000px;}
.y4f_c00457{bottom:775.200000px;}
.y13_c00457{bottom:785.550000px;}
.y4e_c00457{bottom:792.900000px;}
.y12_c00457{bottom:803.550000px;}
.y4d_c00457{bottom:810.900000px;}
.y11_c00457{bottom:821.550000px;}
.y4c_c00457{bottom:828.600000px;}
.y10_c00457{bottom:839.250000px;}
.y4b_c00457{bottom:846.600000px;}
.yf_c00457{bottom:857.550000px;}
.y4a_c00457{bottom:864.300000px;}
.ye_c00457{bottom:874.500000px;}
.y49_c00457{bottom:882.300000px;}
.yd_c00457{bottom:896.100000px;}
.y48_c00457{bottom:899.550000px;}
.y47_c00457{bottom:917.550000px;}
.yc_c00457{bottom:925.500000px;}
.y46_c00457{bottom:935.250000px;}
.yb_c00457{bottom:945.300000px;}
.y45_c00457{bottom:953.250000px;}
.ya_c00457{bottom:963.000000px;}
.y44_c00457{bottom:970.950000px;}
.y9_c00457{bottom:987.750000px;}
.y43_c00457{bottom:995.400000px;}
.y8_c00457{bottom:1006.800000px;}
.y42_c00457{bottom:1009.800000px;}
.y7_c00457{bottom:1024.500000px;}
.y41_c00457{bottom:1026.300000px;}
.y40_c00457{bottom:1038.600000px;}
.y6_c00457{bottom:1042.200000px;}
.y3f_c00457{bottom:1053.000000px;}
.y3e_c00457{bottom:1067.100000px;}
.y5_c00457{bottom:1068.150000px;}
.y3d_c00457{bottom:1081.800000px;}
.y4_c00457{bottom:1086.450000px;}
.y3c_c00457{bottom:1097.700000px;}
.y3_c00457{bottom:1104.450000px;}
.y3b_c00457{bottom:1110.600000px;}
.y2_c00457{bottom:1122.150000px;}
.y3a_c00457{bottom:1127.850000px;}
.y1_c00457{bottom:1149.150000px;}
.h6_c00457{height:54.000000px;}
.h5_c00457{height:60.000000px;}
.h4_c00457{height:66.000000px;}
.h3_c00457{height:72.000000px;}
.h7_c00457{height:78.000000px;}
.h2_c00457{height:84.000000px;}
.h1_c00457{height:1268.250000px;}
.h0_c00457{height:1268.279937px;}
.w0_c00457{width:958.320007px;}
.w1_c00457{width:958.500000px;}
.x0_c00457{left:0.000000px;}
.x81_c00457{left:42.150000px;}
.x1_c00457{left:182.550000px;}
.x1b_c00457{left:184.650000px;}
.x82_c00457{left:186.150000px;}
.x95_c00457{left:187.200000px;}
.x9e_c00457{left:188.400000px;}
.xa1_c00457{left:189.450000px;}
.xa9_c00457{left:190.950000px;}
.xa8_c00457{left:195.150000px;}
.x98_c00457{left:196.200000px;}
.x62_c00457{left:199.950000px;}
.x3_c00457{left:201.300000px;}
.xf_c00457{left:202.350000px;}
.x25_c00457{left:203.400000px;}
.x69_c00457{left:204.900000px;}
.x99_c00457{left:211.350000px;}
.x8b_c00457{left:215.550000px;}
.x87_c00457{left:216.600000px;}
.x7f_c00457{left:218.250000px;}
.x72_c00457{left:220.800000px;}
.x4b_c00457{left:222.000000px;}
.x76_c00457{left:224.700000px;}
.x41_c00457{left:226.200000px;}
.x96_c00457{left:227.250000px;}
.x48_c00457{left:228.600000px;}
.xaa_c00457{left:230.250000px;}
.x9_c00457{left:231.900000px;}
.x4f_c00457{left:234.450000px;}
.x36_c00457{left:237.000000px;}
.x26_c00457{left:238.350000px;}
.xab_c00457{left:240.600000px;}
.x7b_c00457{left:243.000000px;}
.x63_c00457{left:244.200000px;}
.x1c_c00457{left:246.600000px;}
.x2e_c00457{left:247.950000px;}
.xae_c00457{left:249.150000px;}
.x59_c00457{left:250.200000px;}
.x3a_c00457{left:251.250000px;}
.xa_c00457{left:253.800000px;}
.x50_c00457{left:255.300000px;}
.x16_c00457{left:257.400000px;}
.x85_c00457{left:258.750000px;}
.x9f_c00457{left:259.800000px;}
.x2f_c00457{left:263.100000px;}
.x49_c00457{left:264.900000px;}
.x4_c00457{left:266.100000px;}
.xaf_c00457{left:268.950000px;}
.x54_c00457{left:270.450000px;}
.x6b_c00457{left:271.950000px;}
.x1d_c00457{left:273.600000px;}
.x3b_c00457{left:274.950000px;}
.x37_c00457{left:276.300000px;}
.x17_c00457{left:277.950000px;}
.x8f_c00457{left:279.450000px;}
.x64_c00457{left:280.500000px;}
.x27_c00457{left:283.050000px;}
.x4c_c00457{left:284.250000px;}
.x73_c00457{left:285.450000px;}
.x5_c00457{left:289.500000px;}
.x28_c00457{left:291.000000px;}
.x7d_c00457{left:292.500000px;}
.x42_c00457{left:294.600000px;}
.x38_c00457{left:296.100000px;}
.x18_c00457{left:298.050000px;}
.xa0_c00457{left:299.700000px;}
.x3c_c00457{left:300.900000px;}
.x5a_c00457{left:304.500000px;}
.x10_c00457{left:306.750000px;}
.xb_c00457{left:308.550000px;}
.x51_c00457{left:309.600000px;}
.x30_c00457{left:311.700000px;}
.x6_c00457{left:312.900000px;}
.x55_c00457{left:315.750000px;}
.x9b_c00457{left:317.250000px;}
.x43_c00457{left:319.050000px;}
.x88_c00457{left:321.000000px;}
.x29_c00457{left:324.450000px;}
.x56_c00457{left:326.550000px;}
.x74_c00457{left:327.600000px;}
.x77_c00457{left:330.150000px;}
.x39_c00457{left:332.100000px;}
.x1e_c00457{left:334.050000px;}
.x4d_c00457{left:335.400000px;}
.x19_c00457{left:336.600000px;}
.xac_c00457{left:337.650000px;}
.x7c_c00457{left:339.150000px;}
.x52_c00457{left:340.950000px;}
.x97_c00457{left:342.000000px;}
.x5b_c00457{left:344.400000px;}
.x2a_c00457{left:346.050000px;}
.x44_c00457{left:347.100000px;}
.x65_c00457{left:348.150000px;}
.x8c_c00457{left:349.950000px;}
.x5c_c00457{left:352.650000px;}
.x11_c00457{left:355.050000px;}
.x3d_c00457{left:357.150000px;}
.x1f_c00457{left:359.250000px;}
.x1a_c00457{left:361.050000px;}
.x57_c00457{left:362.850000px;}
.xa5_c00457{left:364.650000px;}
.x5e_c00457{left:367.500000px;}
.x31_c00457{left:369.000000px;}
.x8d_c00457{left:372.000000px;}
.x45_c00457{left:373.350000px;}
.x6d_c00457{left:374.400000px;}
.x12_c00457{left:376.350000px;}
.x2b_c00457{left:380.550000px;}
.x78_c00457{left:382.350000px;}
.x66_c00457{left:383.850000px;}
.x53_c00457{left:384.900000px;}
.x6e_c00457{left:387.750000px;}
.x90_c00457{left:389.400000px;}
.x20_c00457{left:390.600000px;}
.x4a_c00457{left:392.250000px;}
.xc_c00457{left:393.900000px;}
.x7_c00457{left:394.950000px;}
.x89_c00457{left:396.300000px;}
.x8e_c00457{left:397.950000px;}
.x2c_c00457{left:399.600000px;}
.x32_c00457{left:400.650000px;}
.x9c_c00457{left:401.850000px;}
.x5d_c00457{left:403.800000px;}
.x58_c00457{left:406.050000px;}
.x5f_c00457{left:407.400000px;}
.x86_c00457{left:408.450000px;}
.x21_c00457{left:410.700000px;}
.x92_c00457{left:411.900000px;}
.x83_c00457{left:414.000000px;}
.xad_c00457{left:416.100000px;}
.x70_c00457{left:417.600000px;}
.x33_c00457{left:418.950000px;}
.x3e_c00457{left:420.450000px;}
.x13_c00457{left:422.400000px;}
.x8_c00457{left:423.750000px;}
.x79_c00457{left:426.000000px;}
.x2_c00457{left:427.650000px;}
.x60_c00457{left:430.050000px;}
.xd_c00457{left:432.000000px;}
.x91_c00457{left:433.200000px;}
.x22_c00457{left:436.950000px;}
.x7e_c00457{left:439.650000px;}
.x67_c00457{left:442.200000px;}
.x6a_c00457{left:444.000000px;}
.x9a_c00457{left:445.050000px;}
.x14_c00457{left:446.850000px;}
.x23_c00457{left:451.050000px;}
.x8a_c00457{left:453.450000px;}
.x3f_c00457{left:454.650000px;}
.x46_c00457{left:457.950000px;}
.x80_c00457{left:459.000000px;}
.x34_c00457{left:461.700000px;}
.x75_c00457{left:463.050000px;}
.xa6_c00457{left:464.400000px;}
.x15_c00457{left:468.450000px;}
.xa2_c00457{left:471.450000px;}
.x2d_c00457{left:472.650000px;}
.x6c_c00457{left:474.900000px;}
.x40_c00457{left:477.750000px;}
.x35_c00457{left:478.950000px;}
.x7a_c00457{left:480.300000px;}
.x68_c00457{left:481.500000px;}
.x94_c00457{left:483.150000px;}
.x4e_c00457{left:484.950000px;}
.x71_c00457{left:486.600000px;}
.x9d_c00457{left:488.700000px;}
.x24_c00457{left:489.900000px;}
.xb0_c00457{left:491.850000px;}
.xa3_c00457{left:494.100000px;}
.x47_c00457{left:495.450000px;}
.xa4_c00457{left:497.850000px;}
.x6f_c00457{left:500.100000px;}
.xe_c00457{left:503.250000px;}
.xa7_c00457{left:504.750000px;}
.x84_c00457{left:506.400000px;}
.x61_c00457{left:509.550000px;}
.x93_c00457{left:510.900000px;}
.xe9_c00457{left:540.000000px;}
.xba_c00457{left:552.600000px;}
.xcf_c00457{left:553.650000px;}
.x100_c00457{left:557.250000px;}
.xec_c00457{left:558.600000px;}
.x121_c00457{left:560.100000px;}
.x12f_c00457{left:561.150000px;}
.x148_c00457{left:562.800000px;}
.xb1_c00457{left:567.750000px;}
.x14c_c00457{left:571.650000px;}
.x150_c00457{left:573.900000px;}
.x101_c00457{left:579.600000px;}
.x125_c00457{left:581.250000px;}
.x132_c00457{left:583.800000px;}
.x153_c00457{left:585.450000px;}
.x10c_c00457{left:586.500000px;}
.x11d_c00457{left:588.600000px;}
.xc2_c00457{left:590.100000px;}
.xd0_c00457{left:592.200000px;}
.xf7_c00457{left:593.250000px;}
.x122_c00457{left:596.100000px;}
.x151_c00457{left:599.100000px;}
.xed_c00457{left:600.300000px;}
.x154_c00457{left:601.950000px;}
.x10d_c00457{left:606.000000px;}
.x126_c00457{left:608.550000px;}
.xc3_c00457{left:609.600000px;}
.x136_c00457{left:611.850000px;}
.x12b_c00457{left:614.100000px;}
.x138_c00457{left:616.050000px;}
.x108_c00457{left:618.000000px;}
.x112_c00457{left:619.050000px;}
.x11a_c00457{left:620.550000px;}
.xf4_c00457{left:621.750000px;}
.xea_c00457{left:624.900000px;}
.xef_c00457{left:627.150000px;}
.x141_c00457{left:629.400000px;}
.xdc_c00457{left:630.600000px;}
.xb2_c00457{left:632.250000px;}
.x130_c00457{left:633.900000px;}
.xe0_c00457{left:634.950000px;}
.x145_c00457{left:637.200000px;}
.xe2_c00457{left:638.400000px;}
.x13c_c00457{left:640.050000px;}
.x10e_c00457{left:642.300000px;}
.xd1_c00457{left:644.100000px;}
.xe3_c00457{left:645.900000px;}
.x14d_c00457{left:647.400000px;}
.xe1_c00457{left:648.600000px;}
.xc4_c00457{left:649.950000px;}
.x12c_c00457{left:652.200000px;}
.xb3_c00457{left:653.550000px;}
.xfb_c00457{left:654.900000px;}
.x102_c00457{left:658.050000px;}
.xf0_c00457{left:659.250000px;}
.x116_c00457{left:661.800000px;}
.x139_c00457{left:663.450000px;}
.x127_c00457{left:664.650000px;}
.xf8_c00457{left:666.000000px;}
.xe4_c00457{left:667.800000px;}
.x103_c00457{left:670.350000px;}
.xc5_c00457{left:673.650000px;}
.xe5_c00457{left:675.000000px;}
.xd2_c00457{left:676.500000px;}
.xee_c00457{left:679.800000px;}
.x117_c00457{left:680.850000px;}
.xd3_c00457{left:683.700000px;}
.x13a_c00457{left:684.750000px;}
.x104_c00457{left:686.550000px;}
.x10f_c00457{left:688.050000px;}
.xf9_c00457{left:689.100000px;}
.xe6_c00457{left:690.150000px;}
.xb4_c00457{left:692.400000px;}
.x146_c00457{left:694.800000px;}
.x11e_c00457{left:695.850000px;}
.xcc_c00457{left:698.250000px;}
.x14e_c00457{left:700.650000px;}
.x113_c00457{left:702.150000px;}
.xe7_c00457{left:703.800000px;}
.xd4_c00457{left:705.300000px;}
.x13f_c00457{left:707.100000px;}
.x13d_c00457{left:708.450000px;}
.xc6_c00457{left:709.950000px;}
.xdd_c00457{left:711.150000px;}
.xd5_c00457{left:712.800000px;}
.xbb_c00457{left:714.300000px;}
.x11b_c00457{left:715.350000px;}
.xcd_c00457{left:717.000000px;}
.xdf_c00457{left:718.200000px;}
.xd6_c00457{left:720.300000px;}
.xbc_c00457{left:721.500000px;}
.x142_c00457{left:723.600000px;}
.xfc_c00457{left:725.850000px;}
.xd7_c00457{left:727.800000px;}
.xc7_c00457{left:729.000000px;}
.xfa_c00457{left:730.800000px;}
.x134_c00457{left:731.850000px;}
.xf1_c00457{left:734.100000px;}
.xd8_c00457{left:735.300000px;}
.xbd_c00457{left:736.350000px;}
.x143_c00457{left:738.450000px;}
.xb5_c00457{left:740.250000px;}
.x118_c00457{left:744.900000px;}
.x11f_c00457{left:745.950000px;}
.x147_c00457{left:747.750000px;}
.xfd_c00457{left:749.250000px;}
.x105_c00457{left:752.850000px;}
.xb6_c00457{left:755.700000px;}
.xd9_c00457{left:757.500000px;}
.x140_c00457{left:759.000000px;}
.x123_c00457{left:760.500000px;}
.xeb_c00457{left:762.750000px;}
.xbe_c00457{left:765.450000px;}
.x137_c00457{left:766.950000px;}
.x110_c00457{left:768.450000px;}
.xce_c00457{left:771.000000px;}
.xda_c00457{left:772.500000px;}
.xde_c00457{left:774.900000px;}
.xf5_c00457{left:776.550000px;}
.xc8_c00457{left:779.700000px;}
.x109_c00457{left:781.500000px;}
.x12d_c00457{left:784.050000px;}
.xc9_c00457{left:786.600000px;}
.x114_c00457{left:788.250000px;}
.xf2_c00457{left:793.500000px;}
.xb7_c00457{left:798.150000px;}
.x106_c00457{left:800.400000px;}
.x149_c00457{left:802.500000px;}
.x10a_c00457{left:804.150000px;}
.xca_c00457{left:806.100000px;}
.x14f_c00457{left:807.600000px;}
.xbf_c00457{left:808.650000px;}
.xfe_c00457{left:810.750000px;}
.x120_c00457{left:813.900000px;}
.x14b_c00457{left:816.300000px;}
.x115_c00457{left:819.150000px;}
.x13e_c00457{left:824.100000px;}
.xf6_c00457{left:825.450000px;}
.xb8_c00457{left:828.750000px;}
.xcb_c00457{left:829.800000px;}
.x131_c00457{left:831.450000px;}
.xe8_c00457{left:834.000000px;}
.x133_c00457{left:835.350000px;}
.xc0_c00457{left:836.400000px;}
.x128_c00457{left:837.450000px;}
.x119_c00457{left:838.650000px;}
.xf3_c00457{left:840.600000px;}
.x12a_c00457{left:843.450000px;}
.x10b_c00457{left:845.250000px;}
.x124_c00457{left:847.650000px;}
.x107_c00457{left:848.700000px;}
.x111_c00457{left:853.350000px;}
.x11c_c00457{left:854.400000px;}
.x152_c00457{left:857.550000px;}
.x12e_c00457{left:858.900000px;}
.x129_c00457{left:860.100000px;}
.x135_c00457{left:861.450000px;}
.xb9_c00457{left:863.250000px;}
.xdb_c00457{left:864.600000px;}
.xc1_c00457{left:865.950000px;}
.x14a_c00457{left:867.150000px;}
.x13b_c00457{left:870.150000px;}
.xff_c00457{left:877.650000px;}
.x144_c00457{left:879.900000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls1_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:40.000000pt;}
.wse_c00457{word-spacing:-66.666667pt;}
.ws1_c00457{word-spacing:-11.019057pt;}
.wsd_c00457{word-spacing:-7.407407pt;}
.ws14_c00457{word-spacing:-6.666667pt;}
.wsb_c00457{word-spacing:-6.143791pt;}
.ws13_c00457{word-spacing:-3.905724pt;}
.ws0_c00457{word-spacing:-1.937322pt;}
.ws10_c00457{word-spacing:-1.531162pt;}
.ws15_c00457{word-spacing:0.000000pt;}
.ws11_c00457{word-spacing:1.302774pt;}
.ws12_c00457{word-spacing:8.356688pt;}
.wsc_c00457{word-spacing:10.555556pt;}
.ws2_c00457{word-spacing:13.333333pt;}
.ws5_c00457{word-spacing:19.682540pt;}
.ws3_c00457{word-spacing:20.277778pt;}
.ws9_c00457{word-spacing:22.857143pt;}
.ws8_c00457{word-spacing:26.031746pt;}
.ws7_c00457{word-spacing:35.555556pt;}
.ws4_c00457{word-spacing:54.444444pt;}
.ws6_c00457{word-spacing:57.777778pt;}
.wsa_c00457{word-spacing:58.947368pt;}
.wsf_c00457{word-spacing:61.111111pt;}
._4_c00457{margin-left:-40.000000pt;}
._5_c00457{width:42.777778pt;}
._1_c00457{width:49.523810pt;}
._0_c00457{width:52.698413pt;}
._3_c00457{width:86.783626pt;}
._2_c00457{width:357.460317pt;}
.fs4_c00457{font-size:48.000000pt;}
.fs3_c00457{font-size:53.333333pt;}
.fs2_c00457{font-size:58.666667pt;}
.fs1_c00457{font-size:64.000000pt;}
.fs5_c00457{font-size:69.333333pt;}
.fs0_c00457{font-size:74.666667pt;}
.y0_c00457{bottom:0.000000pt;}
.y1f_c00457{bottom:8.000000pt;}
.y6c_c00457{bottom:172.800000pt;}
.y38_c00457{bottom:177.200000pt;}
.y37_c00457{bottom:189.066667pt;}
.y36_c00457{bottom:202.266667pt;}
.y6b_c00457{bottom:210.933333pt;}
.y39_c00457{bottom:213.733333pt;}
.y35_c00457{bottom:214.400000pt;}
.y6a_c00457{bottom:226.800000pt;}
.y34_c00457{bottom:226.933333pt;}
.y33_c00457{bottom:239.066667pt;}
.y69_c00457{bottom:242.533333pt;}
.y32_c00457{bottom:251.200000pt;}
.y68_c00457{bottom:260.533333pt;}
.y31_c00457{bottom:263.333333pt;}
.y30_c00457{bottom:275.200000pt;}
.y67_c00457{bottom:277.066667pt;}
.y2f_c00457{bottom:288.266667pt;}
.y66_c00457{bottom:293.066667pt;}
.y2e_c00457{bottom:300.400000pt;}
.y65_c00457{bottom:308.400000pt;}
.y2d_c00457{bottom:312.533333pt;}
.y64_c00457{bottom:324.133333pt;}
.y2c_c00457{bottom:325.066667pt;}
.y63_c00457{bottom:344.266667pt;}
.y2b_c00457{bottom:360.266667pt;}
.y2a_c00457{bottom:373.066667pt;}
.y62_c00457{bottom:376.000000pt;}
.y29_c00457{bottom:384.533333pt;}
.y61_c00457{bottom:392.266667pt;}
.y28_c00457{bottom:398.666667pt;}
.y60_c00457{bottom:408.000000pt;}
.y27_c00457{bottom:411.200000pt;}
.y26_c00457{bottom:423.066667pt;}
.y5f_c00457{bottom:424.000000pt;}
.y25_c00457{bottom:435.600000pt;}
.y5e_c00457{bottom:443.733333pt;}
.y24_c00457{bottom:447.066667pt;}
.y5d_c00457{bottom:459.466667pt;}
.y23_c00457{bottom:460.133333pt;}
.y22_c00457{bottom:472.666667pt;}
.y5c_c00457{bottom:475.466667pt;}
.y21_c00457{bottom:486.000000pt;}
.y5b_c00457{bottom:498.133333pt;}
.y20_c00457{bottom:501.066667pt;}
.y5a_c00457{bottom:514.400000pt;}
.y1e_c00457{bottom:519.733333pt;}
.y59_c00457{bottom:530.400000pt;}
.y1d_c00457{bottom:537.333333pt;}
.y58_c00457{bottom:546.400000pt;}
.y1c_c00457{bottom:553.333333pt;}
.y57_c00457{bottom:562.133333pt;}
.y1b_c00457{bottom:569.066667pt;}
.y56_c00457{bottom:578.400000pt;}
.y1a_c00457{bottom:584.400000pt;}
.y55_c00457{bottom:594.133333pt;}
.y19_c00457{bottom:600.400000pt;}
.y54_c00457{bottom:609.866667pt;}
.y18_c00457{bottom:616.400000pt;}
.y53_c00457{bottom:625.600000pt;}
.y17_c00457{bottom:631.733333pt;}
.y52_c00457{bottom:641.600000pt;}
.y16_c00457{bottom:647.733333pt;}
.y51_c00457{bottom:657.333333pt;}
.y15_c00457{bottom:666.533333pt;}
.y50_c00457{bottom:673.066667pt;}
.y14_c00457{bottom:682.533333pt;}
.y4f_c00457{bottom:689.066667pt;}
.y13_c00457{bottom:698.266667pt;}
.y4e_c00457{bottom:704.800000pt;}
.y12_c00457{bottom:714.266667pt;}
.y4d_c00457{bottom:720.800000pt;}
.y11_c00457{bottom:730.266667pt;}
.y4c_c00457{bottom:736.533333pt;}
.y10_c00457{bottom:746.000000pt;}
.y4b_c00457{bottom:752.533333pt;}
.yf_c00457{bottom:762.266667pt;}
.y4a_c00457{bottom:768.266667pt;}
.ye_c00457{bottom:777.333333pt;}
.y49_c00457{bottom:784.266667pt;}
.yd_c00457{bottom:796.533333pt;}
.y48_c00457{bottom:799.600000pt;}
.y47_c00457{bottom:815.600000pt;}
.yc_c00457{bottom:822.666667pt;}
.y46_c00457{bottom:831.333333pt;}
.yb_c00457{bottom:840.266667pt;}
.y45_c00457{bottom:847.333333pt;}
.ya_c00457{bottom:856.000000pt;}
.y44_c00457{bottom:863.066667pt;}
.y9_c00457{bottom:878.000000pt;}
.y43_c00457{bottom:884.800000pt;}
.y8_c00457{bottom:894.933333pt;}
.y42_c00457{bottom:897.600000pt;}
.y7_c00457{bottom:910.666667pt;}
.y41_c00457{bottom:912.266667pt;}
.y40_c00457{bottom:923.200000pt;}
.y6_c00457{bottom:926.400000pt;}
.y3f_c00457{bottom:936.000000pt;}
.y3e_c00457{bottom:948.533333pt;}
.y5_c00457{bottom:949.466667pt;}
.y3d_c00457{bottom:961.600000pt;}
.y4_c00457{bottom:965.733333pt;}
.y3c_c00457{bottom:975.733333pt;}
.y3_c00457{bottom:981.733333pt;}
.y3b_c00457{bottom:987.200000pt;}
.y2_c00457{bottom:997.466667pt;}
.y3a_c00457{bottom:1002.533333pt;}
.y1_c00457{bottom:1021.466667pt;}
.h6_c00457{height:48.000000pt;}
.h5_c00457{height:53.333333pt;}
.h4_c00457{height:58.666667pt;}
.h3_c00457{height:64.000000pt;}
.h7_c00457{height:69.333333pt;}
.h2_c00457{height:74.666667pt;}
.h1_c00457{height:1127.333333pt;}
.h0_c00457{height:1127.359944pt;}
.w0_c00457{width:851.840007pt;}
.w1_c00457{width:852.000000pt;}
.x0_c00457{left:0.000000pt;}
.x81_c00457{left:37.466667pt;}
.x1_c00457{left:162.266667pt;}
.x1b_c00457{left:164.133333pt;}
.x82_c00457{left:165.466667pt;}
.x95_c00457{left:166.400000pt;}
.x9e_c00457{left:167.466667pt;}
.xa1_c00457{left:168.400000pt;}
.xa9_c00457{left:169.733333pt;}
.xa8_c00457{left:173.466667pt;}
.x98_c00457{left:174.400000pt;}
.x62_c00457{left:177.733333pt;}
.x3_c00457{left:178.933333pt;}
.xf_c00457{left:179.866667pt;}
.x25_c00457{left:180.800000pt;}
.x69_c00457{left:182.133333pt;}
.x99_c00457{left:187.866667pt;}
.x8b_c00457{left:191.600000pt;}
.x87_c00457{left:192.533333pt;}
.x7f_c00457{left:194.000000pt;}
.x72_c00457{left:196.266667pt;}
.x4b_c00457{left:197.333333pt;}
.x76_c00457{left:199.733333pt;}
.x41_c00457{left:201.066667pt;}
.x96_c00457{left:202.000000pt;}
.x48_c00457{left:203.200000pt;}
.xaa_c00457{left:204.666667pt;}
.x9_c00457{left:206.133333pt;}
.x4f_c00457{left:208.400000pt;}
.x36_c00457{left:210.666667pt;}
.x26_c00457{left:211.866667pt;}
.xab_c00457{left:213.866667pt;}
.x7b_c00457{left:216.000000pt;}
.x63_c00457{left:217.066667pt;}
.x1c_c00457{left:219.200000pt;}
.x2e_c00457{left:220.400000pt;}
.xae_c00457{left:221.466667pt;}
.x59_c00457{left:222.400000pt;}
.x3a_c00457{left:223.333333pt;}
.xa_c00457{left:225.600000pt;}
.x50_c00457{left:226.933333pt;}
.x16_c00457{left:228.800000pt;}
.x85_c00457{left:230.000000pt;}
.x9f_c00457{left:230.933333pt;}
.x2f_c00457{left:233.866667pt;}
.x49_c00457{left:235.466667pt;}
.x4_c00457{left:236.533333pt;}
.xaf_c00457{left:239.066667pt;}
.x54_c00457{left:240.400000pt;}
.x6b_c00457{left:241.733333pt;}
.x1d_c00457{left:243.200000pt;}
.x3b_c00457{left:244.400000pt;}
.x37_c00457{left:245.600000pt;}
.x17_c00457{left:247.066667pt;}
.x8f_c00457{left:248.400000pt;}
.x64_c00457{left:249.333333pt;}
.x27_c00457{left:251.600000pt;}
.x4c_c00457{left:252.666667pt;}
.x73_c00457{left:253.733333pt;}
.x5_c00457{left:257.333333pt;}
.x28_c00457{left:258.666667pt;}
.x7d_c00457{left:260.000000pt;}
.x42_c00457{left:261.866667pt;}
.x38_c00457{left:263.200000pt;}
.x18_c00457{left:264.933333pt;}
.xa0_c00457{left:266.400000pt;}
.x3c_c00457{left:267.466667pt;}
.x5a_c00457{left:270.666667pt;}
.x10_c00457{left:272.666667pt;}
.xb_c00457{left:274.266667pt;}
.x51_c00457{left:275.200000pt;}
.x30_c00457{left:277.066667pt;}
.x6_c00457{left:278.133333pt;}
.x55_c00457{left:280.666667pt;}
.x9b_c00457{left:282.000000pt;}
.x43_c00457{left:283.600000pt;}
.x88_c00457{left:285.333333pt;}
.x29_c00457{left:288.400000pt;}
.x56_c00457{left:290.266667pt;}
.x74_c00457{left:291.200000pt;}
.x77_c00457{left:293.466667pt;}
.x39_c00457{left:295.200000pt;}
.x1e_c00457{left:296.933333pt;}
.x4d_c00457{left:298.133333pt;}
.x19_c00457{left:299.200000pt;}
.xac_c00457{left:300.133333pt;}
.x7c_c00457{left:301.466667pt;}
.x52_c00457{left:303.066667pt;}
.x97_c00457{left:304.000000pt;}
.x5b_c00457{left:306.133333pt;}
.x2a_c00457{left:307.600000pt;}
.x44_c00457{left:308.533333pt;}
.x65_c00457{left:309.466667pt;}
.x8c_c00457{left:311.066667pt;}
.x5c_c00457{left:313.466667pt;}
.x11_c00457{left:315.600000pt;}
.x3d_c00457{left:317.466667pt;}
.x1f_c00457{left:319.333333pt;}
.x1a_c00457{left:320.933333pt;}
.x57_c00457{left:322.533333pt;}
.xa5_c00457{left:324.133333pt;}
.x5e_c00457{left:326.666667pt;}
.x31_c00457{left:328.000000pt;}
.x8d_c00457{left:330.666667pt;}
.x45_c00457{left:331.866667pt;}
.x6d_c00457{left:332.800000pt;}
.x12_c00457{left:334.533333pt;}
.x2b_c00457{left:338.266667pt;}
.x78_c00457{left:339.866667pt;}
.x66_c00457{left:341.200000pt;}
.x53_c00457{left:342.133333pt;}
.x6e_c00457{left:344.666667pt;}
.x90_c00457{left:346.133333pt;}
.x20_c00457{left:347.200000pt;}
.x4a_c00457{left:348.666667pt;}
.xc_c00457{left:350.133333pt;}
.x7_c00457{left:351.066667pt;}
.x89_c00457{left:352.266667pt;}
.x8e_c00457{left:353.733333pt;}
.x2c_c00457{left:355.200000pt;}
.x32_c00457{left:356.133333pt;}
.x9c_c00457{left:357.200000pt;}
.x5d_c00457{left:358.933333pt;}
.x58_c00457{left:360.933333pt;}
.x5f_c00457{left:362.133333pt;}
.x86_c00457{left:363.066667pt;}
.x21_c00457{left:365.066667pt;}
.x92_c00457{left:366.133333pt;}
.x83_c00457{left:368.000000pt;}
.xad_c00457{left:369.866667pt;}
.x70_c00457{left:371.200000pt;}
.x33_c00457{left:372.400000pt;}
.x3e_c00457{left:373.733333pt;}
.x13_c00457{left:375.466667pt;}
.x8_c00457{left:376.666667pt;}
.x79_c00457{left:378.666667pt;}
.x2_c00457{left:380.133333pt;}
.x60_c00457{left:382.266667pt;}
.xd_c00457{left:384.000000pt;}
.x91_c00457{left:385.066667pt;}
.x22_c00457{left:388.400000pt;}
.x7e_c00457{left:390.800000pt;}
.x67_c00457{left:393.066667pt;}
.x6a_c00457{left:394.666667pt;}
.x9a_c00457{left:395.600000pt;}
.x14_c00457{left:397.200000pt;}
.x23_c00457{left:400.933333pt;}
.x8a_c00457{left:403.066667pt;}
.x3f_c00457{left:404.133333pt;}
.x46_c00457{left:407.066667pt;}
.x80_c00457{left:408.000000pt;}
.x34_c00457{left:410.400000pt;}
.x75_c00457{left:411.600000pt;}
.xa6_c00457{left:412.800000pt;}
.x15_c00457{left:416.400000pt;}
.xa2_c00457{left:419.066667pt;}
.x2d_c00457{left:420.133333pt;}
.x6c_c00457{left:422.133333pt;}
.x40_c00457{left:424.666667pt;}
.x35_c00457{left:425.733333pt;}
.x7a_c00457{left:426.933333pt;}
.x68_c00457{left:428.000000pt;}
.x94_c00457{left:429.466667pt;}
.x4e_c00457{left:431.066667pt;}
.x71_c00457{left:432.533333pt;}
.x9d_c00457{left:434.400000pt;}
.x24_c00457{left:435.466667pt;}
.xb0_c00457{left:437.200000pt;}
.xa3_c00457{left:439.200000pt;}
.x47_c00457{left:440.400000pt;}
.xa4_c00457{left:442.533333pt;}
.x6f_c00457{left:444.533333pt;}
.xe_c00457{left:447.333333pt;}
.xa7_c00457{left:448.666667pt;}
.x84_c00457{left:450.133333pt;}
.x61_c00457{left:452.933333pt;}
.x93_c00457{left:454.133333pt;}
.xe9_c00457{left:480.000000pt;}
.xba_c00457{left:491.200000pt;}
.xcf_c00457{left:492.133333pt;}
.x100_c00457{left:495.333333pt;}
.xec_c00457{left:496.533333pt;}
.x121_c00457{left:497.866667pt;}
.x12f_c00457{left:498.800000pt;}
.x148_c00457{left:500.266667pt;}
.xb1_c00457{left:504.666667pt;}
.x14c_c00457{left:508.133333pt;}
.x150_c00457{left:510.133333pt;}
.x101_c00457{left:515.200000pt;}
.x125_c00457{left:516.666667pt;}
.x132_c00457{left:518.933333pt;}
.x153_c00457{left:520.400000pt;}
.x10c_c00457{left:521.333333pt;}
.x11d_c00457{left:523.200000pt;}
.xc2_c00457{left:524.533333pt;}
.xd0_c00457{left:526.400000pt;}
.xf7_c00457{left:527.333333pt;}
.x122_c00457{left:529.866667pt;}
.x151_c00457{left:532.533333pt;}
.xed_c00457{left:533.600000pt;}
.x154_c00457{left:535.066667pt;}
.x10d_c00457{left:538.666667pt;}
.x126_c00457{left:540.933333pt;}
.xc3_c00457{left:541.866667pt;}
.x136_c00457{left:543.866667pt;}
.x12b_c00457{left:545.866667pt;}
.x138_c00457{left:547.600000pt;}
.x108_c00457{left:549.333333pt;}
.x112_c00457{left:550.266667pt;}
.x11a_c00457{left:551.600000pt;}
.xf4_c00457{left:552.666667pt;}
.xea_c00457{left:555.466667pt;}
.xef_c00457{left:557.466667pt;}
.x141_c00457{left:559.466667pt;}
.xdc_c00457{left:560.533333pt;}
.xb2_c00457{left:562.000000pt;}
.x130_c00457{left:563.466667pt;}
.xe0_c00457{left:564.400000pt;}
.x145_c00457{left:566.400000pt;}
.xe2_c00457{left:567.466667pt;}
.x13c_c00457{left:568.933333pt;}
.x10e_c00457{left:570.933333pt;}
.xd1_c00457{left:572.533333pt;}
.xe3_c00457{left:574.133333pt;}
.x14d_c00457{left:575.466667pt;}
.xe1_c00457{left:576.533333pt;}
.xc4_c00457{left:577.733333pt;}
.x12c_c00457{left:579.733333pt;}
.xb3_c00457{left:580.933333pt;}
.xfb_c00457{left:582.133333pt;}
.x102_c00457{left:584.933333pt;}
.xf0_c00457{left:586.000000pt;}
.x116_c00457{left:588.266667pt;}
.x139_c00457{left:589.733333pt;}
.x127_c00457{left:590.800000pt;}
.xf8_c00457{left:592.000000pt;}
.xe4_c00457{left:593.600000pt;}
.x103_c00457{left:595.866667pt;}
.xc5_c00457{left:598.800000pt;}
.xe5_c00457{left:600.000000pt;}
.xd2_c00457{left:601.333333pt;}
.xee_c00457{left:604.266667pt;}
.x117_c00457{left:605.200000pt;}
.xd3_c00457{left:607.733333pt;}
.x13a_c00457{left:608.666667pt;}
.x104_c00457{left:610.266667pt;}
.x10f_c00457{left:611.600000pt;}
.xf9_c00457{left:612.533333pt;}
.xe6_c00457{left:613.466667pt;}
.xb4_c00457{left:615.466667pt;}
.x146_c00457{left:617.600000pt;}
.x11e_c00457{left:618.533333pt;}
.xcc_c00457{left:620.666667pt;}
.x14e_c00457{left:622.800000pt;}
.x113_c00457{left:624.133333pt;}
.xe7_c00457{left:625.600000pt;}
.xd4_c00457{left:626.933333pt;}
.x13f_c00457{left:628.533333pt;}
.x13d_c00457{left:629.733333pt;}
.xc6_c00457{left:631.066667pt;}
.xdd_c00457{left:632.133333pt;}
.xd5_c00457{left:633.600000pt;}
.xbb_c00457{left:634.933333pt;}
.x11b_c00457{left:635.866667pt;}
.xcd_c00457{left:637.333333pt;}
.xdf_c00457{left:638.400000pt;}
.xd6_c00457{left:640.266667pt;}
.xbc_c00457{left:641.333333pt;}
.x142_c00457{left:643.200000pt;}
.xfc_c00457{left:645.200000pt;}
.xd7_c00457{left:646.933333pt;}
.xc7_c00457{left:648.000000pt;}
.xfa_c00457{left:649.600000pt;}
.x134_c00457{left:650.533333pt;}
.xf1_c00457{left:652.533333pt;}
.xd8_c00457{left:653.600000pt;}
.xbd_c00457{left:654.533333pt;}
.x143_c00457{left:656.400000pt;}
.xb5_c00457{left:658.000000pt;}
.x118_c00457{left:662.133333pt;}
.x11f_c00457{left:663.066667pt;}
.x147_c00457{left:664.666667pt;}
.xfd_c00457{left:666.000000pt;}
.x105_c00457{left:669.200000pt;}
.xb6_c00457{left:671.733333pt;}
.xd9_c00457{left:673.333333pt;}
.x140_c00457{left:674.666667pt;}
.x123_c00457{left:676.000000pt;}
.xeb_c00457{left:678.000000pt;}
.xbe_c00457{left:680.400000pt;}
.x137_c00457{left:681.733333pt;}
.x110_c00457{left:683.066667pt;}
.xce_c00457{left:685.333333pt;}
.xda_c00457{left:686.666667pt;}
.xde_c00457{left:688.800000pt;}
.xf5_c00457{left:690.266667pt;}
.xc8_c00457{left:693.066667pt;}
.x109_c00457{left:694.666667pt;}
.x12d_c00457{left:696.933333pt;}
.xc9_c00457{left:699.200000pt;}
.x114_c00457{left:700.666667pt;}
.xf2_c00457{left:705.333333pt;}
.xb7_c00457{left:709.466667pt;}
.x106_c00457{left:711.466667pt;}
.x149_c00457{left:713.333333pt;}
.x10a_c00457{left:714.800000pt;}
.xca_c00457{left:716.533333pt;}
.x14f_c00457{left:717.866667pt;}
.xbf_c00457{left:718.800000pt;}
.xfe_c00457{left:720.666667pt;}
.x120_c00457{left:723.466667pt;}
.x14b_c00457{left:725.600000pt;}
.x115_c00457{left:728.133333pt;}
.x13e_c00457{left:732.533333pt;}
.xf6_c00457{left:733.733333pt;}
.xb8_c00457{left:736.666667pt;}
.xcb_c00457{left:737.600000pt;}
.x131_c00457{left:739.066667pt;}
.xe8_c00457{left:741.333333pt;}
.x133_c00457{left:742.533333pt;}
.xc0_c00457{left:743.466667pt;}
.x128_c00457{left:744.400000pt;}
.x119_c00457{left:745.466667pt;}
.xf3_c00457{left:747.200000pt;}
.x12a_c00457{left:749.733333pt;}
.x10b_c00457{left:751.333333pt;}
.x124_c00457{left:753.466667pt;}
.x107_c00457{left:754.400000pt;}
.x111_c00457{left:758.533333pt;}
.x11c_c00457{left:759.466667pt;}
.x152_c00457{left:762.266667pt;}
.x12e_c00457{left:763.466667pt;}
.x129_c00457{left:764.533333pt;}
.x135_c00457{left:765.733333pt;}
.xb9_c00457{left:767.333333pt;}
.xdb_c00457{left:768.533333pt;}
.xc1_c00457{left:769.733333pt;}
.x14a_c00457{left:770.800000pt;}
.x13b_c00457{left:773.466667pt;}
.xff_c00457{left:780.133333pt;}
.x144_c00457{left:782.133333pt;}
}





/* 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_c00458 {
    display:none;
  }
  .loading-indicator_c00458.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00458 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_c00458 { 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_c00458" -> "#page-container .classname_c00458")
 */
.pf_c00458 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00458 { /* 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_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00458 { /* 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_c00458 { /* 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_c00458 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00458 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00458 {overflow:visible;}
  }
}
.c_c00458 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00458 { /* 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_c00458:after { /* webkit #35443 */
  content: '';
}
.t_c00458:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00458 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 */
}
.__c00458 { /* 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_c00458 { /* info for Javascript */
  display:none;
}
.l_c00458 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00458 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00458 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00458: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_c00458 {
    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_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00458.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_c00458 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00458;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.000000;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;}
.m7b_c00458{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00458{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.md5_c00458{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00458{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00458{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m91_c00458{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00458{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me0_c00458{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00458{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m72_c00458{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m12_c00458{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00458{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00458{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mde_c00458{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m67_c00458{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m28_c00458{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m104_c00458{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.m83_c00458{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc_c00458{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00458{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00458{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m108_c00458{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m8_c00458{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00458{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00458{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md_c00458{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m56_c00458{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m25_c00458{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m22_c00458{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00458{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m62_c00458{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4_c00458{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00458{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.meb_c00458{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mda_c00458{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m36_c00458{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00458{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00458{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00458{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md8_c00458{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00458{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00458{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mef_c00458{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00458{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00458{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m78_c00458{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m20_c00458{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m38_c00458{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m5_c00458{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7_c00458{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me8_c00458{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00458{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md1_c00458{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00458{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m43_c00458{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00458{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma_c00458{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m31_c00458{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m96_c00458{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m106_c00458{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00458{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me9_c00458{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m3_c00458{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00458{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00458{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m44_c00458{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00458{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00458{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00458{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m13_c00458{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m23_c00458{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00458{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.med_c00458{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00458{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00458{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m60_c00458{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00458{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m49_c00458{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m6_c00458{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.me3_c00458{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m14_c00458{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00458{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2_c00458{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00458{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m53_c00458{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00458{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00458{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m102_c00458{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00458{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m57_c00458{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00458{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00458{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00458{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m100_c00458{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00458{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00458{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m24_c00458{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00458{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md2_c00458{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m64_c00458{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00458{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00458{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00458{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m32_c00458{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00458{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m11_c00458{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m27_c00458{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m65_c00458{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00458{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00458{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m84_c00458{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00458{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md9_c00458{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb_c00458{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00458{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m37_c00458{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m52_c00458{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mba_c00458{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00458{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m50_c00458{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00458{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00458{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m10_c00458{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m74_c00458{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m86_c00458{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me1_c00458{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m109_c00458{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00458{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m29_c00458{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.maf_c00458{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00458{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m95_c00458{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.md0_c00458{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m39_c00458{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00458{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m59_c00458{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.me_c00458{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m40_c00458{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m70_c00458{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00458{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m19_c00458{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00458{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m33_c00458{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m75_c00458{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9_c00458{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00458{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00458{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mea_c00458{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m42_c00458{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m107_c00458{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m30_c00458{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m63_c00458{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md7_c00458{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00458{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m45_c00458{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m51_c00458{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m34_c00458{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mff_c00458{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00458{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00458{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00458{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.me7_c00458{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00458{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m69_c00458{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00458{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mee_c00458{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me5_c00458{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf_c00458{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00458{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m81_c00458{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m79_c00458{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m54_c00458{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00458{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m89_c00458{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00458{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00458{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00458{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mae_c00458{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00458{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m82_c00458{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m18_c00458{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m93_c00458{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00458{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md6_c00458{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00458{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m90_c00458{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00458{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1_c00458{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00458{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00458{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m88_c00458{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00458{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m92_c00458{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m61_c00458{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00458{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me2_c00458{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m103_c00458{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00458{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00458{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00458{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m85_c00458{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m15_c00458{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m98_c00458{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00458{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.me6_c00458{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00458{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00458{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mca_c00458{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m73_c00458{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00458{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md3_c00458{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00458{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00458{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mec_c00458{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00458{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00458{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m21_c00458{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00458{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m68_c00458{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m80_c00458{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.me4_c00458{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00458{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m99_c00458{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00458{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m46_c00458{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00458{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00458{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);}
.mad_c00458{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m71_c00458{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m77_c00458{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00458{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md4_c00458{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mac_c00458{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00458{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00458{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m35_c00458{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m41_c00458{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00458{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m66_c00458{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m87_c00458{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.maa_c00458{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mab_c00458{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m58_c00458{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00458{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m16_c00458{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mce_c00458{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00458{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m17_c00458{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m26_c00458{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00458{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00458{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m101_c00458{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m97_c00458{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m105_c00458{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00458{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m76_c00458{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00458{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m94_c00458{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m55_c00458{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00458{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00458{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00458{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m47_c00458{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00458{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00458{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00458{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00458{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00458{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m48_c00458{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls0_c00458{letter-spacing:0.000000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{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__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00458{word-spacing:-8.278351px;}
.ws0_c00458{word-spacing:-7.833333px;}
.ws1_c00458{word-spacing:-4.625000px;}
.ws6_c00458{word-spacing:0.000000px;}
.ws5_c00458{word-spacing:1.805556px;}
.ws3_c00458{word-spacing:6.250000px;}
.ws4_c00458{word-spacing:15.951397px;}
.fc0_c00458{color:transparent;}
.fs4_c00458{font-size:54.000000px;}
.fs3_c00458{font-size:60.000000px;}
.fs2_c00458{font-size:66.000000px;}
.fs1_c00458{font-size:72.000000px;}
.fs0_c00458{font-size:84.000000px;}
.y0_c00458{bottom:0.000000px;}
.y60_c00458{bottom:192.000000px;}
.y62_c00458{bottom:194.100000px;}
.y5f_c00458{bottom:206.700000px;}
.y61_c00458{bottom:211.350000px;}
.y5e_c00458{bottom:221.100000px;}
.y5d_c00458{bottom:238.350000px;}
.y53_c00458{bottom:242.100000px;}
.y5c_c00458{bottom:250.200000px;}
.y52_c00458{bottom:259.800000px;}
.y51_c00458{bottom:278.100000px;}
.y50_c00458{bottom:295.350000px;}
.y4f_c00458{bottom:313.350000px;}
.y5b_c00458{bottom:318.300000px;}
.y4e_c00458{bottom:331.050000px;}
.y5a_c00458{bottom:345.150000px;}
.y4d_c00458{bottom:349.050000px;}
.y59_c00458{bottom:362.850000px;}
.y4c_c00458{bottom:366.750000px;}
.y58_c00458{bottom:380.550000px;}
.y4b_c00458{bottom:385.050000px;}
.y57_c00458{bottom:398.550000px;}
.y4a_c00458{bottom:402.750000px;}
.y56_c00458{bottom:416.550000px;}
.y49_c00458{bottom:420.450000px;}
.y55_c00458{bottom:433.800000px;}
.y48_c00458{bottom:442.500000px;}
.y54_c00458{bottom:456.150000px;}
.y47_c00458{bottom:460.800000px;}
.y25_c00458{bottom:477.900000px;}
.y24_c00458{bottom:495.900000px;}
.y23_c00458{bottom:513.600000px;}
.y22_c00458{bottom:531.300000px;}
.y46_c00458{bottom:531.900000px;}
.y21_c00458{bottom:549.300000px;}
.y45_c00458{bottom:549.600000px;}
.y20_c00458{bottom:567.300000px;}
.y44_c00458{bottom:567.900000px;}
.y1f_c00458{bottom:585.000000px;}
.y43_c00458{bottom:585.600000px;}
.y1e_c00458{bottom:603.000000px;}
.y42_c00458{bottom:603.300000px;}
.y1d_c00458{bottom:621.000000px;}
.y41_c00458{bottom:621.300000px;}
.y40_c00458{bottom:639.000000px;}
.y1c_c00458{bottom:643.200000px;}
.y3f_c00458{bottom:657.000000px;}
.y1b_c00458{bottom:660.900000px;}
.y3e_c00458{bottom:674.700000px;}
.y1a_c00458{bottom:678.000000px;}
.y3d_c00458{bottom:692.700000px;}
.y19_c00458{bottom:695.700000px;}
.y3c_c00458{bottom:710.700000px;}
.y18_c00458{bottom:713.700000px;}
.y3b_c00458{bottom:728.400000px;}
.y17_c00458{bottom:731.400000px;}
.y3a_c00458{bottom:746.100000px;}
.y16_c00458{bottom:749.400000px;}
.y39_c00458{bottom:764.850000px;}
.y15_c00458{bottom:767.100000px;}
.y38_c00458{bottom:782.100000px;}
.y14_c00458{bottom:785.100000px;}
.y37_c00458{bottom:799.800000px;}
.y13_c00458{bottom:802.800000px;}
.y36_c00458{bottom:817.800000px;}
.y12_c00458{bottom:820.800000px;}
.y35_c00458{bottom:835.800000px;}
.y11_c00458{bottom:838.500000px;}
.y34_c00458{bottom:853.500000px;}
.y10_c00458{bottom:856.200000px;}
.y33_c00458{bottom:871.500000px;}
.yf_c00458{bottom:874.200000px;}
.y32_c00458{bottom:892.050000px;}
.ye_c00458{bottom:892.200000px;}
.y31_c00458{bottom:907.950000px;}
.yd_c00458{bottom:909.900000px;}
.yc_c00458{bottom:927.900000px;}
.y30_c00458{bottom:931.200000px;}
.yb_c00458{bottom:945.900000px;}
.y2f_c00458{bottom:949.200000px;}
.ya_c00458{bottom:963.900000px;}
.y2e_c00458{bottom:966.900000px;}
.y9_c00458{bottom:981.600000px;}
.y2d_c00458{bottom:984.900000px;}
.y8_c00458{bottom:999.300000px;}
.y2c_c00458{bottom:1002.900000px;}
.y7_c00458{bottom:1017.300000px;}
.y2b_c00458{bottom:1020.600000px;}
.y2a_c00458{bottom:1038.900000px;}
.y6_c00458{bottom:1043.400000px;}
.y29_c00458{bottom:1060.500000px;}
.y5_c00458{bottom:1061.700000px;}
.y28_c00458{bottom:1078.500000px;}
.y4_c00458{bottom:1083.600000px;}
.y27_c00458{bottom:1096.500000px;}
.y3_c00458{bottom:1101.300000px;}
.y26_c00458{bottom:1114.500000px;}
.y2_c00458{bottom:1119.300000px;}
.y1_c00458{bottom:1146.300000px;}
.h6_c00458{height:54.000000px;}
.h5_c00458{height:60.000000px;}
.h4_c00458{height:66.000000px;}
.h3_c00458{height:72.000000px;}
.h2_c00458{height:84.000000px;}
.h1_c00458{height:1275.000000px;}
.h0_c00458{height:1275.119934px;}
.w0_c00458{width:958.320007px;}
.w1_c00458{width:958.500000px;}
.x0_c00458{left:0.000000px;}
.x120_c00458{left:79.200000px;}
.x24_c00458{left:80.250000px;}
.x7b_c00458{left:92.400000px;}
.x148_c00458{left:95.100000px;}
.x92_c00458{left:97.200000px;}
.x75_c00458{left:98.250000px;}
.x3_c00458{left:99.300000px;}
.x38_c00458{left:100.500000px;}
.x121_c00458{left:115.050000px;}
.x19_c00458{left:117.300000px;}
.x32_c00458{left:120.300000px;}
.x76_c00458{left:121.350000px;}
.x48_c00458{left:122.700000px;}
.xe_c00458{left:124.800000px;}
.x61_c00458{left:127.500000px;}
.x123_c00458{left:128.700000px;}
.x5c_c00458{left:130.200000px;}
.x91_c00458{left:131.400000px;}
.x50_c00458{left:132.450000px;}
.x14_c00458{left:133.950000px;}
.x84_c00458{left:136.800000px;}
.x20_c00458{left:139.650000px;}
.x3e_c00458{left:141.300000px;}
.x12a_c00458{left:143.100000px;}
.x29_c00458{left:144.750000px;}
.x4_c00458{left:146.100000px;}
.x8e_c00458{left:149.700000px;}
.x1a_c00458{left:151.500000px;}
.x65_c00458{left:154.950000px;}
.x124_c00458{left:157.200000px;}
.x21_c00458{left:159.150000px;}
.x3f_c00458{left:160.350000px;}
.x2a_c00458{left:164.250000px;}
.x3b_c00458{left:166.800000px;}
.x62_c00458{left:167.850000px;}
.xf_c00458{left:169.800000px;}
.x66_c00458{left:170.850000px;}
.x5_c00458{left:172.050000px;}
.x1b_c00458{left:173.400000px;}
.x22_c00458{left:175.350000px;}
.x40_c00458{left:179.100000px;}
.x5d_c00458{left:181.050000px;}
.x49_c00458{left:182.100000px;}
.x63_c00458{left:184.050000px;}
.x2f_c00458{left:185.100000px;}
.x55_c00458{left:186.750000px;}
.x67_c00458{left:188.550000px;}
.x3c_c00458{left:190.500000px;}
.x122_c00458{left:191.700000px;}
.x77_c00458{left:193.050000px;}
.x70_c00458{left:194.100000px;}
.x51_c00458{left:196.200000px;}
.x2b_c00458{left:200.250000px;}
.x125_c00458{left:202.950000px;}
.x41_c00458{left:204.000000px;}
.x8f_c00458{left:205.800000px;}
.x6_c00458{left:207.300000px;}
.x1c_c00458{left:208.650000px;}
.x6a_c00458{left:211.650000px;}
.x7e_c00458{left:214.200000px;}
.x42_c00458{left:218.700000px;}
.x15_c00458{left:220.650000px;}
.x44_c00458{left:223.650000px;}
.x10_c00458{left:225.300000px;}
.x128_c00458{left:226.350000px;}
.x88_c00458{left:228.750000px;}
.x23_c00458{left:231.450000px;}
.x33_c00458{left:235.800000px;}
.x7_c00458{left:237.900000px;}
.x85_c00458{left:238.950000px;}
.x39_c00458{left:241.650000px;}
.x4c_c00458{left:243.450000px;}
.x2c_c00458{left:246.750000px;}
.x59_c00458{left:250.800000px;}
.x126_c00458{left:252.600000px;}
.x7c_c00458{left:255.450000px;}
.x1d_c00458{left:256.950000px;}
.x6b_c00458{left:258.750000px;}
.x68_c00458{left:260.250000px;}
.x11_c00458{left:261.300000px;}
.x4d_c00458{left:263.550000px;}
.x7f_c00458{left:265.650000px;}
.x43_c00458{left:267.750000px;}
.x25_c00458{left:268.950000px;}
.x90_c00458{left:271.350000px;}
.x8b_c00458{left:274.650000px;}
.x8_c00458{left:276.750000px;}
.x71_c00458{left:278.250000px;}
.x56_c00458{left:280.350000px;}
.x52_c00458{left:282.300000px;}
.x3d_c00458{left:284.100000px;}
.x5e_c00458{left:285.450000px;}
.x89_c00458{left:287.100000px;}
.x12_c00458{left:288.300000px;}
.x16_c00458{left:290.100000px;}
.x72_c00458{left:291.900000px;}
.x26_c00458{left:293.850000px;}
.x30_c00458{left:295.650000px;}
.x86_c00458{left:297.300000px;}
.x17_c00458{left:299.400000px;}
.x9_c00458{left:301.200000px;}
.x6d_c00458{left:303.150000px;}
.x34_c00458{left:304.800000px;}
.x129_c00458{left:306.750000px;}
.x8c_c00458{left:308.400000px;}
.x53_c00458{left:310.800000px;}
.x6c_c00458{left:312.750000px;}
.x45_c00458{left:314.100000px;}
.x80_c00458{left:315.300000px;}
.xa_c00458{left:317.100000px;}
.x5a_c00458{left:318.450000px;}
.x57_c00458{left:320.250000px;}
.x35_c00458{left:321.750000px;}
.x2d_c00458{left:324.150000px;}
.x31_c00458{left:326.250000px;}
.x78_c00458{left:327.750000px;}
.x73_c00458{left:329.250000px;}
.x46_c00458{left:330.300000px;}
.x81_c00458{left:332.550000px;}
.x1_c00458{left:335.550000px;}
.x5f_c00458{left:336.900000px;}
.x6e_c00458{left:339.450000px;}
.x18_c00458{left:342.300000px;}
.xb_c00458{left:344.100000px;}
.x13_c00458{left:345.900000px;}
.x87_c00458{left:347.100000px;}
.x4e_c00458{left:348.900000px;}
.x27_c00458{left:350.700000px;}
.x1e_c00458{left:352.350000px;}
.x2e_c00458{left:354.750000px;}
.x36_c00458{left:357.450000px;}
.x64_c00458{left:361.200000px;}
.xc_c00458{left:362.850000px;}
.x47_c00458{left:366.300000px;}
.x3a_c00458{left:370.050000px;}
.x4a_c00458{left:371.100000px;}
.x6f_c00458{left:374.400000px;}
.x37_c00458{left:376.200000px;}
.x79_c00458{left:379.200000px;}
.x82_c00458{left:381.150000px;}
.x127_c00458{left:382.650000px;}
.xd_c00458{left:383.700000px;}
.x58_c00458{left:385.350000px;}
.x5b_c00458{left:387.300000px;}
.x74_c00458{left:388.650000px;}
.x83_c00458{left:389.850000px;}
.x54_c00458{left:392.250000px;}
.x1f_c00458{left:395.250000px;}
.x4f_c00458{left:397.800000px;}
.x28_c00458{left:399.000000px;}
.x8a_c00458{left:400.500000px;}
.x7a_c00458{left:402.300000px;}
.x60_c00458{left:404.250000px;}
.x8d_c00458{left:405.600000px;}
.x4b_c00458{left:406.800000px;}
.x69_c00458{left:408.600000px;}
.x7d_c00458{left:423.600000px;}
.x139_c00458{left:435.600000px;}
.x12b_c00458{left:437.100000px;}
.xa8_c00458{left:439.200000px;}
.x141_c00458{left:451.500000px;}
.xd7_c00458{left:452.550000px;}
.x12e_c00458{left:454.500000px;}
.x99_c00458{left:456.600000px;}
.xee_c00458{left:457.650000px;}
.x145_c00458{left:461.400000px;}
.x13c_c00458{left:471.600000px;}
.x137_c00458{left:473.550000px;}
.x93_c00458{left:474.900000px;}
.xc2_c00458{left:476.400000px;}
.xfc_c00458{left:477.450000px;}
.x13a_c00458{left:478.800000px;}
.xca_c00458{left:480.600000px;}
.x119_c00458{left:482.250000px;}
.xa9_c00458{left:484.200000px;}
.xa2_c00458{left:485.400000px;}
.x11f_c00458{left:488.850000px;}
.x113_c00458{left:490.050000px;}
.xcb_c00458{left:492.450000px;}
.xb5_c00458{left:493.650000px;}
.x9a_c00458{left:494.700000px;}
.x12c_c00458{left:497.250000px;}
.xd0_c00458{left:499.650000px;}
.xe3_c00458{left:501.300000px;}
.x102_c00458{left:502.350000px;}
.xfd_c00458{left:503.400000px;}
.xf1_c00458{left:504.750000px;}
.xe8_c00458{left:507.300000px;}
.xdd_c00458{left:508.500000px;}
.x109_c00458{left:510.000000px;}
.xba_c00458{left:511.950000px;}
.x11d_c00458{left:513.000000px;}
.xf7_c00458{left:514.800000px;}
.xaf_c00458{left:517.350000px;}
.xe9_c00458{left:518.400000px;}
.x94_c00458{left:519.600000px;}
.xa3_c00458{left:521.400000px;}
.x146_c00458{left:522.600000px;}
.xc3_c00458{left:525.300000px;}
.xf2_c00458{left:526.350000px;}
.xf4_c00458{left:527.850000px;}
.x12f_c00458{left:529.350000px;}
.x114_c00458{left:531.750000px;}
.x142_c00458{left:532.950000px;}
.x138_c00458{left:535.200000px;}
.xb0_c00458{left:538.650000px;}
.xea_c00458{left:540.300000px;}
.xd1_c00458{left:542.550000px;}
.xcc_c00458{left:543.600000px;}
.xbf_c00458{left:545.850000px;}
.xde_c00458{left:548.100000px;}
.xaa_c00458{left:549.300000px;}
.x11e_c00458{left:550.500000px;}
.xf9_c00458{left:552.150000px;}
.x9b_c00458{left:553.800000px;}
.xfe_c00458{left:558.150000px;}
.xcd_c00458{left:559.500000px;}
.xbb_c00458{left:560.550000px;}
.x95_c00458{left:562.500000px;}
.x13b_c00458{left:564.150000px;}
.x103_c00458{left:565.650000px;}
.xd8_c00458{left:566.850000px;}
.xdf_c00458{left:567.900000px;}
.xb6_c00458{left:569.250000px;}
.x10c_c00458{left:571.650000px;}
.xe4_c00458{left:573.300000px;}
.x9c_c00458{left:575.100000px;}
.x13d_c00458{left:577.500000px;}
.xa4_c00458{left:579.000000px;}
.xef_c00458{left:580.200000px;}
.xc4_c00458{left:581.850000px;}
.xf8_c00458{left:582.900000px;}
.xab_c00458{left:585.600000px;}
.xeb_c00458{left:587.100000px;}
.xe0_c00458{left:588.450000px;}
.xb1_c00458{left:589.800000px;}
.x115_c00458{left:592.200000px;}
.x131_c00458{left:593.550000px;}
.xd2_c00458{left:595.050000px;}
.xa5_c00458{left:597.300000px;}
.x96_c00458{left:598.500000px;}
.x134_c00458{left:600.000000px;}
.xe5_c00458{left:601.350000px;}
.x13e_c00458{left:604.500000px;}
.x9d_c00458{left:605.700000px;}
.xb2_c00458{left:607.050000px;}
.x143_c00458{left:609.600000px;}
.x118_c00458{left:612.900000px;}
.xc0_c00458{left:615.300000px;}
.x10b_c00458{left:616.350000px;}
.xc5_c00458{left:618.900000px;}
.x9e_c00458{left:620.400000px;}
.x132_c00458{left:623.100000px;}
.xd3_c00458{left:624.900000px;}
.x10d_c00458{left:626.250000px;}
.x104_c00458{left:627.900000px;}
.xf5_c00458{left:629.250000px;}
.xe1_c00458{left:632.400000px;}
.xac_c00458{left:634.200000px;}
.xdb_c00458{left:635.550000px;}
.x110_c00458{left:637.950000px;}
.xbc_c00458{left:640.950000px;}
.x10a_c00458{left:642.450000px;}
.xff_c00458{left:643.500000px;}
.xf0_c00458{left:645.750000px;}
.xa6_c00458{left:648.450000px;}
.x9f_c00458{left:649.500000px;}
.x133_c00458{left:651.150000px;}
.x107_c00458{left:652.200000px;}
.x147_c00458{left:653.250000px;}
.xd4_c00458{left:655.200000px;}
.xe2_c00458{left:657.900000px;}
.xec_c00458{left:659.850000px;}
.xdc_c00458{left:661.050000px;}
.x12d_c00458{left:662.250000px;}
.xce_c00458{left:663.300000px;}
.xb7_c00458{left:667.500000px;}
.xb3_c00458{left:670.800000px;}
.x97_c00458{left:672.300000px;}
.xa0_c00458{left:675.450000px;}
.xc6_c00458{left:676.500000px;}
.x111_c00458{left:677.850000px;}
.x116_c00458{left:679.350000px;}
.x100_c00458{left:681.000000px;}
.x10e_c00458{left:682.050000px;}
.xcf_c00458{left:683.400000px;}
.x105_c00458{left:684.900000px;}
.x144_c00458{left:685.950000px;}
.xc7_c00458{left:688.050000px;}
.xb8_c00458{left:690.900000px;}
.x108_c00458{left:695.100000px;}
.x135_c00458{left:696.150000px;}
.xd5_c00458{left:699.450000px;}
.xe6_c00458{left:702.150000px;}
.x106_c00458{left:703.650000px;}
.xad_c00458{left:705.900000px;}
.xf3_c00458{left:707.100000px;}
.xfa_c00458{left:708.450000px;}
.xd6_c00458{left:709.950000px;}
.xbd_c00458{left:712.200000px;}
.x11a_c00458{left:714.450000px;}
.x101_c00458{left:715.500000px;}
.xb4_c00458{left:718.650000px;}
.x117_c00458{left:719.700000px;}
.xd9_c00458{left:721.200000px;}
.xe7_c00458{left:724.500000px;}
.xed_c00458{left:726.150000px;}
.x13f_c00458{left:727.200000px;}
.xfb_c00458{left:729.000000px;}
.xbe_c00458{left:731.250000px;}
.x11c_c00458{left:734.400000px;}
.xc8_c00458{left:736.950000px;}
.x130_c00458{left:739.350000px;}
.x98_c00458{left:740.700000px;}
.x112_c00458{left:742.050000px;}
.xb9_c00458{left:743.100000px;}
.x11b_c00458{left:744.750000px;}
.xa1_c00458{left:747.450000px;}
.x2_c00458{left:748.500000px;}
.xda_c00458{left:749.700000px;}
.x136_c00458{left:751.500000px;}
.xa7_c00458{left:753.600000px;}
.xae_c00458{left:754.950000px;}
.x140_c00458{left:757.050000px;}
.x10f_c00458{left:760.200000px;}
.xc1_c00458{left:763.650000px;}
.xc9_c00458{left:766.800000px;}
.xf6_c00458{left:771.900000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws2_c00458{word-spacing:-7.358534pt;}
.ws0_c00458{word-spacing:-6.962963pt;}
.ws1_c00458{word-spacing:-4.111111pt;}
.ws6_c00458{word-spacing:0.000000pt;}
.ws5_c00458{word-spacing:1.604938pt;}
.ws3_c00458{word-spacing:5.555556pt;}
.ws4_c00458{word-spacing:14.179020pt;}
.fs4_c00458{font-size:48.000000pt;}
.fs3_c00458{font-size:53.333333pt;}
.fs2_c00458{font-size:58.666667pt;}
.fs1_c00458{font-size:64.000000pt;}
.fs0_c00458{font-size:74.666667pt;}
.y0_c00458{bottom:0.000000pt;}
.y60_c00458{bottom:170.666667pt;}
.y62_c00458{bottom:172.533333pt;}
.y5f_c00458{bottom:183.733333pt;}
.y61_c00458{bottom:187.866667pt;}
.y5e_c00458{bottom:196.533333pt;}
.y5d_c00458{bottom:211.866667pt;}
.y53_c00458{bottom:215.200000pt;}
.y5c_c00458{bottom:222.400000pt;}
.y52_c00458{bottom:230.933333pt;}
.y51_c00458{bottom:247.200000pt;}
.y50_c00458{bottom:262.533333pt;}
.y4f_c00458{bottom:278.533333pt;}
.y5b_c00458{bottom:282.933333pt;}
.y4e_c00458{bottom:294.266667pt;}
.y5a_c00458{bottom:306.800000pt;}
.y4d_c00458{bottom:310.266667pt;}
.y59_c00458{bottom:322.533333pt;}
.y4c_c00458{bottom:326.000000pt;}
.y58_c00458{bottom:338.266667pt;}
.y4b_c00458{bottom:342.266667pt;}
.y57_c00458{bottom:354.266667pt;}
.y4a_c00458{bottom:358.000000pt;}
.y56_c00458{bottom:370.266667pt;}
.y49_c00458{bottom:373.733333pt;}
.y55_c00458{bottom:385.600000pt;}
.y48_c00458{bottom:393.333333pt;}
.y54_c00458{bottom:405.466667pt;}
.y47_c00458{bottom:409.600000pt;}
.y25_c00458{bottom:424.800000pt;}
.y24_c00458{bottom:440.800000pt;}
.y23_c00458{bottom:456.533333pt;}
.y22_c00458{bottom:472.266667pt;}
.y46_c00458{bottom:472.800000pt;}
.y21_c00458{bottom:488.266667pt;}
.y45_c00458{bottom:488.533333pt;}
.y20_c00458{bottom:504.266667pt;}
.y44_c00458{bottom:504.800000pt;}
.y1f_c00458{bottom:520.000000pt;}
.y43_c00458{bottom:520.533333pt;}
.y1e_c00458{bottom:536.000000pt;}
.y42_c00458{bottom:536.266667pt;}
.y1d_c00458{bottom:552.000000pt;}
.y41_c00458{bottom:552.266667pt;}
.y40_c00458{bottom:568.000000pt;}
.y1c_c00458{bottom:571.733333pt;}
.y3f_c00458{bottom:584.000000pt;}
.y1b_c00458{bottom:587.466667pt;}
.y3e_c00458{bottom:599.733333pt;}
.y1a_c00458{bottom:602.666667pt;}
.y3d_c00458{bottom:615.733333pt;}
.y19_c00458{bottom:618.400000pt;}
.y3c_c00458{bottom:631.733333pt;}
.y18_c00458{bottom:634.400000pt;}
.y3b_c00458{bottom:647.466667pt;}
.y17_c00458{bottom:650.133333pt;}
.y3a_c00458{bottom:663.200000pt;}
.y16_c00458{bottom:666.133333pt;}
.y39_c00458{bottom:679.866667pt;}
.y15_c00458{bottom:681.866667pt;}
.y38_c00458{bottom:695.200000pt;}
.y14_c00458{bottom:697.866667pt;}
.y37_c00458{bottom:710.933333pt;}
.y13_c00458{bottom:713.600000pt;}
.y36_c00458{bottom:726.933333pt;}
.y12_c00458{bottom:729.600000pt;}
.y35_c00458{bottom:742.933333pt;}
.y11_c00458{bottom:745.333333pt;}
.y34_c00458{bottom:758.666667pt;}
.y10_c00458{bottom:761.066667pt;}
.y33_c00458{bottom:774.666667pt;}
.yf_c00458{bottom:777.066667pt;}
.y32_c00458{bottom:792.933333pt;}
.ye_c00458{bottom:793.066667pt;}
.y31_c00458{bottom:807.066667pt;}
.yd_c00458{bottom:808.800000pt;}
.yc_c00458{bottom:824.800000pt;}
.y30_c00458{bottom:827.733333pt;}
.yb_c00458{bottom:840.800000pt;}
.y2f_c00458{bottom:843.733333pt;}
.ya_c00458{bottom:856.800000pt;}
.y2e_c00458{bottom:859.466667pt;}
.y9_c00458{bottom:872.533333pt;}
.y2d_c00458{bottom:875.466667pt;}
.y8_c00458{bottom:888.266667pt;}
.y2c_c00458{bottom:891.466667pt;}
.y7_c00458{bottom:904.266667pt;}
.y2b_c00458{bottom:907.200000pt;}
.y2a_c00458{bottom:923.466667pt;}
.y6_c00458{bottom:927.466667pt;}
.y29_c00458{bottom:942.666667pt;}
.y5_c00458{bottom:943.733333pt;}
.y28_c00458{bottom:958.666667pt;}
.y4_c00458{bottom:963.200000pt;}
.y27_c00458{bottom:974.666667pt;}
.y3_c00458{bottom:978.933333pt;}
.y26_c00458{bottom:990.666667pt;}
.y2_c00458{bottom:994.933333pt;}
.y1_c00458{bottom:1018.933333pt;}
.h6_c00458{height:48.000000pt;}
.h5_c00458{height:53.333333pt;}
.h4_c00458{height:58.666667pt;}
.h3_c00458{height:64.000000pt;}
.h2_c00458{height:74.666667pt;}
.h1_c00458{height:1133.333333pt;}
.h0_c00458{height:1133.439941pt;}
.w0_c00458{width:851.840007pt;}
.w1_c00458{width:852.000000pt;}
.x0_c00458{left:0.000000pt;}
.x120_c00458{left:70.400000pt;}
.x24_c00458{left:71.333333pt;}
.x7b_c00458{left:82.133333pt;}
.x148_c00458{left:84.533333pt;}
.x92_c00458{left:86.400000pt;}
.x75_c00458{left:87.333333pt;}
.x3_c00458{left:88.266667pt;}
.x38_c00458{left:89.333333pt;}
.x121_c00458{left:102.266667pt;}
.x19_c00458{left:104.266667pt;}
.x32_c00458{left:106.933333pt;}
.x76_c00458{left:107.866667pt;}
.x48_c00458{left:109.066667pt;}
.xe_c00458{left:110.933333pt;}
.x61_c00458{left:113.333333pt;}
.x123_c00458{left:114.400000pt;}
.x5c_c00458{left:115.733333pt;}
.x91_c00458{left:116.800000pt;}
.x50_c00458{left:117.733333pt;}
.x14_c00458{left:119.066667pt;}
.x84_c00458{left:121.600000pt;}
.x20_c00458{left:124.133333pt;}
.x3e_c00458{left:125.600000pt;}
.x12a_c00458{left:127.200000pt;}
.x29_c00458{left:128.666667pt;}
.x4_c00458{left:129.866667pt;}
.x8e_c00458{left:133.066667pt;}
.x1a_c00458{left:134.666667pt;}
.x65_c00458{left:137.733333pt;}
.x124_c00458{left:139.733333pt;}
.x21_c00458{left:141.466667pt;}
.x3f_c00458{left:142.533333pt;}
.x2a_c00458{left:146.000000pt;}
.x3b_c00458{left:148.266667pt;}
.x62_c00458{left:149.200000pt;}
.xf_c00458{left:150.933333pt;}
.x66_c00458{left:151.866667pt;}
.x5_c00458{left:152.933333pt;}
.x1b_c00458{left:154.133333pt;}
.x22_c00458{left:155.866667pt;}
.x40_c00458{left:159.200000pt;}
.x5d_c00458{left:160.933333pt;}
.x49_c00458{left:161.866667pt;}
.x63_c00458{left:163.600000pt;}
.x2f_c00458{left:164.533333pt;}
.x55_c00458{left:166.000000pt;}
.x67_c00458{left:167.600000pt;}
.x3c_c00458{left:169.333333pt;}
.x122_c00458{left:170.400000pt;}
.x77_c00458{left:171.600000pt;}
.x70_c00458{left:172.533333pt;}
.x51_c00458{left:174.400000pt;}
.x2b_c00458{left:178.000000pt;}
.x125_c00458{left:180.400000pt;}
.x41_c00458{left:181.333333pt;}
.x8f_c00458{left:182.933333pt;}
.x6_c00458{left:184.266667pt;}
.x1c_c00458{left:185.466667pt;}
.x6a_c00458{left:188.133333pt;}
.x7e_c00458{left:190.400000pt;}
.x42_c00458{left:194.400000pt;}
.x15_c00458{left:196.133333pt;}
.x44_c00458{left:198.800000pt;}
.x10_c00458{left:200.266667pt;}
.x128_c00458{left:201.200000pt;}
.x88_c00458{left:203.333333pt;}
.x23_c00458{left:205.733333pt;}
.x33_c00458{left:209.600000pt;}
.x7_c00458{left:211.466667pt;}
.x85_c00458{left:212.400000pt;}
.x39_c00458{left:214.800000pt;}
.x4c_c00458{left:216.400000pt;}
.x2c_c00458{left:219.333333pt;}
.x59_c00458{left:222.933333pt;}
.x126_c00458{left:224.533333pt;}
.x7c_c00458{left:227.066667pt;}
.x1d_c00458{left:228.400000pt;}
.x6b_c00458{left:230.000000pt;}
.x68_c00458{left:231.333333pt;}
.x11_c00458{left:232.266667pt;}
.x4d_c00458{left:234.266667pt;}
.x7f_c00458{left:236.133333pt;}
.x43_c00458{left:238.000000pt;}
.x25_c00458{left:239.066667pt;}
.x90_c00458{left:241.200000pt;}
.x8b_c00458{left:244.133333pt;}
.x8_c00458{left:246.000000pt;}
.x71_c00458{left:247.333333pt;}
.x56_c00458{left:249.200000pt;}
.x52_c00458{left:250.933333pt;}
.x3d_c00458{left:252.533333pt;}
.x5e_c00458{left:253.733333pt;}
.x89_c00458{left:255.200000pt;}
.x12_c00458{left:256.266667pt;}
.x16_c00458{left:257.866667pt;}
.x72_c00458{left:259.466667pt;}
.x26_c00458{left:261.200000pt;}
.x30_c00458{left:262.800000pt;}
.x86_c00458{left:264.266667pt;}
.x17_c00458{left:266.133333pt;}
.x9_c00458{left:267.733333pt;}
.x6d_c00458{left:269.466667pt;}
.x34_c00458{left:270.933333pt;}
.x129_c00458{left:272.666667pt;}
.x8c_c00458{left:274.133333pt;}
.x53_c00458{left:276.266667pt;}
.x6c_c00458{left:278.000000pt;}
.x45_c00458{left:279.200000pt;}
.x80_c00458{left:280.266667pt;}
.xa_c00458{left:281.866667pt;}
.x5a_c00458{left:283.066667pt;}
.x57_c00458{left:284.666667pt;}
.x35_c00458{left:286.000000pt;}
.x2d_c00458{left:288.133333pt;}
.x31_c00458{left:290.000000pt;}
.x78_c00458{left:291.333333pt;}
.x73_c00458{left:292.666667pt;}
.x46_c00458{left:293.600000pt;}
.x81_c00458{left:295.600000pt;}
.x1_c00458{left:298.266667pt;}
.x5f_c00458{left:299.466667pt;}
.x6e_c00458{left:301.733333pt;}
.x18_c00458{left:304.266667pt;}
.xb_c00458{left:305.866667pt;}
.x13_c00458{left:307.466667pt;}
.x87_c00458{left:308.533333pt;}
.x4e_c00458{left:310.133333pt;}
.x27_c00458{left:311.733333pt;}
.x1e_c00458{left:313.200000pt;}
.x2e_c00458{left:315.333333pt;}
.x36_c00458{left:317.733333pt;}
.x64_c00458{left:321.066667pt;}
.xc_c00458{left:322.533333pt;}
.x47_c00458{left:325.600000pt;}
.x3a_c00458{left:328.933333pt;}
.x4a_c00458{left:329.866667pt;}
.x6f_c00458{left:332.800000pt;}
.x37_c00458{left:334.400000pt;}
.x79_c00458{left:337.066667pt;}
.x82_c00458{left:338.800000pt;}
.x127_c00458{left:340.133333pt;}
.xd_c00458{left:341.066667pt;}
.x58_c00458{left:342.533333pt;}
.x5b_c00458{left:344.266667pt;}
.x74_c00458{left:345.466667pt;}
.x83_c00458{left:346.533333pt;}
.x54_c00458{left:348.666667pt;}
.x1f_c00458{left:351.333333pt;}
.x4f_c00458{left:353.600000pt;}
.x28_c00458{left:354.666667pt;}
.x8a_c00458{left:356.000000pt;}
.x7a_c00458{left:357.600000pt;}
.x60_c00458{left:359.333333pt;}
.x8d_c00458{left:360.533333pt;}
.x4b_c00458{left:361.600000pt;}
.x69_c00458{left:363.200000pt;}
.x7d_c00458{left:376.533333pt;}
.x139_c00458{left:387.200000pt;}
.x12b_c00458{left:388.533333pt;}
.xa8_c00458{left:390.400000pt;}
.x141_c00458{left:401.333333pt;}
.xd7_c00458{left:402.266667pt;}
.x12e_c00458{left:404.000000pt;}
.x99_c00458{left:405.866667pt;}
.xee_c00458{left:406.800000pt;}
.x145_c00458{left:410.133333pt;}
.x13c_c00458{left:419.200000pt;}
.x137_c00458{left:420.933333pt;}
.x93_c00458{left:422.133333pt;}
.xc2_c00458{left:423.466667pt;}
.xfc_c00458{left:424.400000pt;}
.x13a_c00458{left:425.600000pt;}
.xca_c00458{left:427.200000pt;}
.x119_c00458{left:428.666667pt;}
.xa9_c00458{left:430.400000pt;}
.xa2_c00458{left:431.466667pt;}
.x11f_c00458{left:434.533333pt;}
.x113_c00458{left:435.600000pt;}
.xcb_c00458{left:437.733333pt;}
.xb5_c00458{left:438.800000pt;}
.x9a_c00458{left:439.733333pt;}
.x12c_c00458{left:442.000000pt;}
.xd0_c00458{left:444.133333pt;}
.xe3_c00458{left:445.600000pt;}
.x102_c00458{left:446.533333pt;}
.xfd_c00458{left:447.466667pt;}
.xf1_c00458{left:448.666667pt;}
.xe8_c00458{left:450.933333pt;}
.xdd_c00458{left:452.000000pt;}
.x109_c00458{left:453.333333pt;}
.xba_c00458{left:455.066667pt;}
.x11d_c00458{left:456.000000pt;}
.xf7_c00458{left:457.600000pt;}
.xaf_c00458{left:459.866667pt;}
.xe9_c00458{left:460.800000pt;}
.x94_c00458{left:461.866667pt;}
.xa3_c00458{left:463.466667pt;}
.x146_c00458{left:464.533333pt;}
.xc3_c00458{left:466.933333pt;}
.xf2_c00458{left:467.866667pt;}
.xf4_c00458{left:469.200000pt;}
.x12f_c00458{left:470.533333pt;}
.x114_c00458{left:472.666667pt;}
.x142_c00458{left:473.733333pt;}
.x138_c00458{left:475.733333pt;}
.xb0_c00458{left:478.800000pt;}
.xea_c00458{left:480.266667pt;}
.xd1_c00458{left:482.266667pt;}
.xcc_c00458{left:483.200000pt;}
.xbf_c00458{left:485.200000pt;}
.xde_c00458{left:487.200000pt;}
.xaa_c00458{left:488.266667pt;}
.x11e_c00458{left:489.333333pt;}
.xf9_c00458{left:490.800000pt;}
.x9b_c00458{left:492.266667pt;}
.xfe_c00458{left:496.133333pt;}
.xcd_c00458{left:497.333333pt;}
.xbb_c00458{left:498.266667pt;}
.x95_c00458{left:500.000000pt;}
.x13b_c00458{left:501.466667pt;}
.x103_c00458{left:502.800000pt;}
.xd8_c00458{left:503.866667pt;}
.xdf_c00458{left:504.800000pt;}
.xb6_c00458{left:506.000000pt;}
.x10c_c00458{left:508.133333pt;}
.xe4_c00458{left:509.600000pt;}
.x9c_c00458{left:511.200000pt;}
.x13d_c00458{left:513.333333pt;}
.xa4_c00458{left:514.666667pt;}
.xef_c00458{left:515.733333pt;}
.xc4_c00458{left:517.200000pt;}
.xf8_c00458{left:518.133333pt;}
.xab_c00458{left:520.533333pt;}
.xeb_c00458{left:521.866667pt;}
.xe0_c00458{left:523.066667pt;}
.xb1_c00458{left:524.266667pt;}
.x115_c00458{left:526.400000pt;}
.x131_c00458{left:527.600000pt;}
.xd2_c00458{left:528.933333pt;}
.xa5_c00458{left:530.933333pt;}
.x96_c00458{left:532.000000pt;}
.x134_c00458{left:533.333333pt;}
.xe5_c00458{left:534.533333pt;}
.x13e_c00458{left:537.333333pt;}
.x9d_c00458{left:538.400000pt;}
.xb2_c00458{left:539.600000pt;}
.x143_c00458{left:541.866667pt;}
.x118_c00458{left:544.800000pt;}
.xc0_c00458{left:546.933333pt;}
.x10b_c00458{left:547.866667pt;}
.xc5_c00458{left:550.133333pt;}
.x9e_c00458{left:551.466667pt;}
.x132_c00458{left:553.866667pt;}
.xd3_c00458{left:555.466667pt;}
.x10d_c00458{left:556.666667pt;}
.x104_c00458{left:558.133333pt;}
.xf5_c00458{left:559.333333pt;}
.xe1_c00458{left:562.133333pt;}
.xac_c00458{left:563.733333pt;}
.xdb_c00458{left:564.933333pt;}
.x110_c00458{left:567.066667pt;}
.xbc_c00458{left:569.733333pt;}
.x10a_c00458{left:571.066667pt;}
.xff_c00458{left:572.000000pt;}
.xf0_c00458{left:574.000000pt;}
.xa6_c00458{left:576.400000pt;}
.x9f_c00458{left:577.333333pt;}
.x133_c00458{left:578.800000pt;}
.x107_c00458{left:579.733333pt;}
.x147_c00458{left:580.666667pt;}
.xd4_c00458{left:582.400000pt;}
.xe2_c00458{left:584.800000pt;}
.xec_c00458{left:586.533333pt;}
.xdc_c00458{left:587.600000pt;}
.x12d_c00458{left:588.666667pt;}
.xce_c00458{left:589.600000pt;}
.xb7_c00458{left:593.333333pt;}
.xb3_c00458{left:596.266667pt;}
.x97_c00458{left:597.600000pt;}
.xa0_c00458{left:600.400000pt;}
.xc6_c00458{left:601.333333pt;}
.x111_c00458{left:602.533333pt;}
.x116_c00458{left:603.866667pt;}
.x100_c00458{left:605.333333pt;}
.x10e_c00458{left:606.266667pt;}
.xcf_c00458{left:607.466667pt;}
.x105_c00458{left:608.800000pt;}
.x144_c00458{left:609.733333pt;}
.xc7_c00458{left:611.600000pt;}
.xb8_c00458{left:614.133333pt;}
.x108_c00458{left:617.866667pt;}
.x135_c00458{left:618.800000pt;}
.xd5_c00458{left:621.733333pt;}
.xe6_c00458{left:624.133333pt;}
.x106_c00458{left:625.466667pt;}
.xad_c00458{left:627.466667pt;}
.xf3_c00458{left:628.533333pt;}
.xfa_c00458{left:629.733333pt;}
.xd6_c00458{left:631.066667pt;}
.xbd_c00458{left:633.066667pt;}
.x11a_c00458{left:635.066667pt;}
.x101_c00458{left:636.000000pt;}
.xb4_c00458{left:638.800000pt;}
.x117_c00458{left:639.733333pt;}
.xd9_c00458{left:641.066667pt;}
.xe7_c00458{left:644.000000pt;}
.xed_c00458{left:645.466667pt;}
.x13f_c00458{left:646.400000pt;}
.xfb_c00458{left:648.000000pt;}
.xbe_c00458{left:650.000000pt;}
.x11c_c00458{left:652.800000pt;}
.xc8_c00458{left:655.066667pt;}
.x130_c00458{left:657.200000pt;}
.x98_c00458{left:658.400000pt;}
.x112_c00458{left:659.600000pt;}
.xb9_c00458{left:660.533333pt;}
.x11b_c00458{left:662.000000pt;}
.xa1_c00458{left:664.400000pt;}
.x2_c00458{left:665.333333pt;}
.xda_c00458{left:666.400000pt;}
.x136_c00458{left:668.000000pt;}
.xa7_c00458{left:669.866667pt;}
.xae_c00458{left:671.066667pt;}
.x140_c00458{left:672.933333pt;}
.x10f_c00458{left:675.733333pt;}
.xc1_c00458{left:678.800000pt;}
.xc9_c00458{left:681.600000pt;}
.xf6_c00458{left:686.133333pt;}
}





/* 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_c00459 {
    display:none;
  }
  .loading-indicator_c00459.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00459 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_c00459 { 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_c00459" -> "#page-container .classname_c00459")
 */
.pf_c00459 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00459 { /* 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_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00459 { /* 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_c00459 { /* 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_c00459 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00459 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00459 {overflow:visible;}
  }
}
.c_c00459 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00459 { /* 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_c00459:after { /* webkit #35443 */
  content: '';
}
.t_c00459:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00459 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 */
}
.__c00459 { /* 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_c00459 { /* info for Javascript */
  display:none;
}
.l_c00459 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00459 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00459 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00459: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_c00459 {
    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_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00459.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_c00459 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00459;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.000000;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;}
.mf1_c00459{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m25_c00459{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m89_c00459{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00459{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m41_c00459{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00459{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00459{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00459{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00459{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m61_c00459{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00459{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m77_c00459{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m88_c00459{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m62_c00459{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00459{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00459{transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);}
.m99_c00459{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m65_c00459{transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00459{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m64_c00459{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m129_c00459{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00459{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00459{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00459{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m52_c00459{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m12_c00459{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me0_c00459{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m102_c00459{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8_c00459{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m18_c00459{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md4_c00459{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.md8_c00459{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m33_c00459{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m40_c00459{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.maa_c00459{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md1_c00459{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00459{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00459{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md0_c00459{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00459{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m48_c00459{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m53_c00459{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00459{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md5_c00459{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00459{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00459{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00459{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m100_c00459{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mad_c00459{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m50_c00459{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00459{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m68_c00459{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mac_c00459{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md6_c00459{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m126_c00459{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00459{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m97_c00459{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00459{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m5_c00459{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m47_c00459{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mee_c00459{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mef_c00459{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.ma_c00459{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00459{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.me8_c00459{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00459{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m54_c00459{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00459{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00459{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00459{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7_c00459{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m114_c00459{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md3_c00459{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00459{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3_c00459{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00459{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00459{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00459{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mb_c00459{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m71_c00459{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00459{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m101_c00459{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m17_c00459{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m0_c00459{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m63_c00459{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mce_c00459{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00459{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00459{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00459{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00459{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mda_c00459{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00459{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00459{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00459{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m55_c00459{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00459{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m51_c00459{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00459{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00459{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00459{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00459{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00459{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m122_c00459{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00459{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md9_c00459{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m23_c00459{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00459{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00459{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00459{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00459{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.md7_c00459{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00459{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00459{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m106_c00459{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00459{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00459{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me5_c00459{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m45_c00459{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00459{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m49_c00459{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m127_c00459{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m75_c00459{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m43_c00459{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m72_c00459{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00459{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00459{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00459{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md2_c00459{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00459{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m56_c00459{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00459{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00459{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me4_c00459{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me7_c00459{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m28_c00459{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m66_c00459{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me1_c00459{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00459{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00459{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00459{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m24_c00459{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00459{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m9_c00459{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mec_c00459{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00459{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00459{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m46_c00459{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00459{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m94_c00459{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m103_c00459{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00459{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m35_c00459{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00459{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00459{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00459{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00459{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m14_c00459{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00459{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00459{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00459{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m26_c00459{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mba_c00459{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00459{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00459{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m98_c00459{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m16_c00459{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m44_c00459{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00459{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m42_c00459{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m96_c00459{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m74_c00459{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m117_c00459{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00459{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m15_c00459{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m57_c00459{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m29_c00459{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00459{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6_c00459{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00459{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00459{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me9_c00459{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00459{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.md_c00459{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00459{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m39_c00459{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m123_c00459{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00459{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me_c00459{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m105_c00459{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00459{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m112_c00459{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m10_c00459{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me2_c00459{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00459{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m80_c00459{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m31_c00459{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mab_c00459{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00459{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m58_c00459{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00459{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00459{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf_c00459{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00459{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m36_c00459{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m60_c00459{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.med_c00459{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00459{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00459{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m20_c00459{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00459{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00459{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00459{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m111_c00459{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00459{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m69_c00459{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m93_c00459{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m115_c00459{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mea_c00459{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m27_c00459{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.meb_c00459{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m34_c00459{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m113_c00459{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00459{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00459{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m30_c00459{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m38_c00459{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mca_c00459{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00459{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m104_c00459{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m124_c00459{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);}
.mc5_c00459{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m95_c00459{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mae_c00459{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00459{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m37_c00459{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2_c00459{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00459{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m13_c00459{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00459{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m128_c00459{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00459{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m19_c00459{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.maf_c00459{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m109_c00459{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m108_c00459{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00459{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m67_c00459{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m32_c00459{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m116_c00459{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00459{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00459{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m21_c00459{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m11_c00459{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00459{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m110_c00459{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00459{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00459{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m59_c00459{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m85_c00459{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00459{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00459{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00459{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mde_c00459{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m119_c00459{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00459{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00459{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mff_c00459{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m120_c00459{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m118_c00459{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me3_c00459{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00459{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m107_c00459{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mc_c00459{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m91_c00459{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.me6_c00459{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m121_c00459{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m90_c00459{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m125_c00459{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00459{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m82_c00459{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00459{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00459{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m22_c00459{transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);}
.m78_c00459{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m76_c00459{transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);}
.m79_c00459{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m92_c00459{transform:matrix(0.402750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402750,0.000000,0.000000,0.250000,0,0);}
.m73_c00459{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00459{transform:matrix(0.420250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420250,0.000000,0.000000,0.250000,0,0);}
.m87_c00459{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.434250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434250,0.000000,0.000000,0.250000,0,0);}
.m83_c00459{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m81_c00459{transform:matrix(0.445250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00459{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m86_c00459{transform:matrix(0.459500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459500,0.000000,0.000000,0.250000,0,0);}
.m84_c00459{transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);}
.m70_c00459{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00459{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls0_c00459{letter-spacing:0.000000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{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__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00459{word-spacing:-7.512129px;}
.wse_c00459{word-spacing:-5.833333px;}
.wsd_c00459{word-spacing:-5.588235px;}
.wsa_c00459{word-spacing:-4.393939px;}
.ws1_c00459{word-spacing:-2.750000px;}
.wsc_c00459{word-spacing:-1.964960px;}
.ws0_c00459{word-spacing:-0.020619px;}
.ws10_c00459{word-spacing:0.000000px;}
.ws9_c00459{word-spacing:5.512821px;}
.ws8_c00459{word-spacing:8.026316px;}
.ws5_c00459{word-spacing:15.168901px;}
.ws3_c00459{word-spacing:19.994638px;}
.ws6_c00459{word-spacing:23.211796px;}
.ws4_c00459{word-spacing:35.833333px;}
.ws2_c00459{word-spacing:39.750000px;}
.ws7_c00459{word-spacing:58.750000px;}
.wsf_c00459{word-spacing:69.605263px;}
._0_c00459{width:58.254692px;}
._1_c00459{width:74.166667px;}
.fc0_c00459{color:transparent;}
.fs6_c00459{font-size:24.000000px;}
.fs7_c00459{font-size:30.000000px;}
.fs5_c00459{font-size:36.000000px;}
.fs8_c00459{font-size:42.000000px;}
.fs4_c00459{font-size:54.000000px;}
.fs3_c00459{font-size:60.000000px;}
.fs2_c00459{font-size:66.000000px;}
.fs9_c00459{font-size:72.000000px;}
.fs1_c00459{font-size:84.000000px;}
.fs0_c00459{font-size:114.000000px;}
.y0_c00459{bottom:0.000000px;}
.y75_c00459{bottom:174.900000px;}
.y74_c00459{bottom:192.600000px;}
.y42_c00459{bottom:197.850000px;}
.y73_c00459{bottom:208.500000px;}
.y41_c00459{bottom:215.850000px;}
.y72_c00459{bottom:224.100000px;}
.y40_c00459{bottom:233.100000px;}
.y71_c00459{bottom:244.650000px;}
.y3f_c00459{bottom:250.350000px;}
.y70_c00459{bottom:262.350000px;}
.y3e_c00459{bottom:267.600000px;}
.y6f_c00459{bottom:280.050000px;}
.y3d_c00459{bottom:284.550000px;}
.y6e_c00459{bottom:297.750000px;}
.y3c_c00459{bottom:302.250000px;}
.y6d_c00459{bottom:318.300000px;}
.y3b_c00459{bottom:319.950000px;}
.y3a_c00459{bottom:336.900000px;}
.y6c_c00459{bottom:337.350000px;}
.y6b_c00459{bottom:354.300000px;}
.y39_c00459{bottom:354.600000px;}
.y38_c00459{bottom:372.300000px;}
.y37_c00459{bottom:390.000000px;}
.y6a_c00459{bottom:398.850000px;}
.y36_c00459{bottom:408.000000px;}
.y69_c00459{bottom:421.500000px;}
.y35_c00459{bottom:426.000000px;}
.y68_c00459{bottom:439.500000px;}
.y34_c00459{bottom:443.700000px;}
.y67_c00459{bottom:456.900000px;}
.y33_c00459{bottom:462.000000px;}
.y66_c00459{bottom:474.900000px;}
.y32_c00459{bottom:480.000000px;}
.y65_c00459{bottom:492.900000px;}
.y31_c00459{bottom:498.000000px;}
.y64_c00459{bottom:511.650000px;}
.y30_c00459{bottom:516.000000px;}
.y63_c00459{bottom:528.900000px;}
.y2f_c00459{bottom:533.700000px;}
.y62_c00459{bottom:546.600000px;}
.y2e_c00459{bottom:551.400000px;}
.y61_c00459{bottom:564.300000px;}
.y2d_c00459{bottom:569.400000px;}
.y60_c00459{bottom:582.000000px;}
.y2c_c00459{bottom:587.100000px;}
.y5f_c00459{bottom:600.000000px;}
.y2b_c00459{bottom:610.350000px;}
.y5e_c00459{bottom:617.250000px;}
.y2a_c00459{bottom:626.850000px;}
.y5d_c00459{bottom:635.250000px;}
.y29_c00459{bottom:642.300000px;}
.y5c_c00459{bottom:652.950000px;}
.y1f_c00459{bottom:655.650000px;}
.y5b_c00459{bottom:670.950000px;}
.y1e_c00459{bottom:671.100000px;}
.y1d_c00459{bottom:684.750000px;}
.y5a_c00459{bottom:688.950000px;}
.y1c_c00459{bottom:699.900000px;}
.y59_c00459{bottom:706.650000px;}
.y1b_c00459{bottom:713.250000px;}
.y58_c00459{bottom:724.650000px;}
.y28_c00459{bottom:731.550000px;}
.y1a_c00459{bottom:740.550000px;}
.y26_c00459{bottom:741.600000px;}
.y57_c00459{bottom:742.350000px;}
.y19_c00459{bottom:756.300000px;}
.y56_c00459{bottom:765.000000px;}
.y18_c00459{bottom:771.750000px;}
.y55_c00459{bottom:782.700000px;}
.y17_c00459{bottom:785.100000px;}
.y25_c00459{bottom:786.300000px;}
.y16_c00459{bottom:797.400000px;}
.y24_c00459{bottom:799.200000px;}
.y23_c00459{bottom:800.250000px;}
.y54_c00459{bottom:800.700000px;}
.y27_c00459{bottom:804.600000px;}
.y15_c00459{bottom:813.600000px;}
.y53_c00459{bottom:822.150000px;}
.y14_c00459{bottom:828.000000px;}
.y52_c00459{bottom:840.150000px;}
.y13_c00459{bottom:842.100000px;}
.y21_c00459{bottom:842.400000px;}
.y12_c00459{bottom:856.500000px;}
.y20_c00459{bottom:857.850000px;}
.y11_c00459{bottom:870.900000px;}
.y51_c00459{bottom:875.850000px;}
.y22_c00459{bottom:876.300000px;}
.y10_c00459{bottom:885.600000px;}
.y50_c00459{bottom:893.550000px;}
.yf_c00459{bottom:902.100000px;}
.y4f_c00459{bottom:911.100000px;}
.ye_c00459{bottom:923.550000px;}
.y4e_c00459{bottom:929.100000px;}
.yd_c00459{bottom:942.600000px;}
.y4d_c00459{bottom:946.800000px;}
.yc_c00459{bottom:960.300000px;}
.y4c_c00459{bottom:964.800000px;}
.yb_c00459{bottom:978.000000px;}
.y4b_c00459{bottom:982.800000px;}
.ya_c00459{bottom:996.000000px;}
.y4a_c00459{bottom:1000.500000px;}
.y9_c00459{bottom:1013.700000px;}
.y49_c00459{bottom:1018.500000px;}
.y8_c00459{bottom:1031.700000px;}
.y48_c00459{bottom:1036.200000px;}
.y7_c00459{bottom:1051.350000px;}
.y47_c00459{bottom:1054.200000px;}
.y6_c00459{bottom:1071.450000px;}
.y46_c00459{bottom:1071.900000px;}
.y45_c00459{bottom:1089.600000px;}
.y5_c00459{bottom:1089.750000px;}
.y4_c00459{bottom:1107.000000px;}
.y44_c00459{bottom:1107.600000px;}
.y3_c00459{bottom:1125.000000px;}
.y43_c00459{bottom:1125.300000px;}
.y1_c00459{bottom:1147.650000px;}
.y2_c00459{bottom:1151.250000px;}
.h8_c00459{height:24.000000px;}
.h9_c00459{height:30.000000px;}
.h7_c00459{height:36.000000px;}
.ha_c00459{height:42.000000px;}
.h6_c00459{height:54.000000px;}
.h5_c00459{height:60.000000px;}
.h4_c00459{height:66.000000px;}
.hb_c00459{height:72.000000px;}
.h3_c00459{height:84.000000px;}
.h2_c00459{height:114.000000px;}
.h0_c00459{height:1276.920044px;}
.h1_c00459{height:1277.250000px;}
.w0_c00459{width:958.320007px;}
.w1_c00459{width:958.500000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:189.750000px;}
.x49_c00459{left:192.300000px;}
.x24_c00459{left:193.350000px;}
.x81_c00459{left:195.150000px;}
.x78_c00459{left:205.950000px;}
.x50_c00459{left:207.750000px;}
.x3_c00459{left:210.600000px;}
.x1b_c00459{left:211.650000px;}
.x83_c00459{left:213.600000px;}
.x9e_c00459{left:214.950000px;}
.xa7_c00459{left:216.750000px;}
.x59_c00459{left:221.700000px;}
.x69_c00459{left:222.900000px;}
.x64_c00459{left:224.400000px;}
.x33_c00459{left:229.200000px;}
.x8f_c00459{left:231.900000px;}
.xd_c00459{left:233.700000px;}
.x94_c00459{left:236.100000px;}
.x25_c00459{left:238.650000px;}
.x2d_c00459{left:243.600000px;}
.x74_c00459{left:244.650000px;}
.x90_c00459{left:246.300000px;}
.x89_c00459{left:247.500000px;}
.x84_c00459{left:249.900000px;}
.x4a_c00459{left:251.700000px;}
.x14_c00459{left:252.750000px;}
.x40_c00459{left:254.100000px;}
.x3a_c00459{left:255.900000px;}
.xa1_c00459{left:257.850000px;}
.x51_c00459{left:261.000000px;}
.x5f_c00459{left:262.050000px;}
.x75_c00459{left:263.700000px;}
.x34_c00459{left:264.900000px;}
.x22_c00459{left:267.150000px;}
.x4_c00459{left:269.250000px;}
.x46_c00459{left:271.500000px;}
.x35_c00459{left:273.150000px;}
.x92_c00459{left:274.650000px;}
.x5a_c00459{left:276.450000px;}
.x86_c00459{left:278.400000px;}
.x65_c00459{left:279.450000px;}
.x9f_c00459{left:280.500000px;}
.xe_c00459{left:283.350000px;}
.x47_c00459{left:284.400000px;}
.x6f_c00459{left:286.050000px;}
.x8c_c00459{left:288.450000px;}
.x2e_c00459{left:290.400000px;}
.x1c_c00459{left:291.600000px;}
.x52_c00459{left:292.650000px;}
.x60_c00459{left:294.450000px;}
.x5b_c00459{left:295.500000px;}
.x15_c00459{left:298.050000px;}
.x41_c00459{left:299.400000px;}
.x53_c00459{left:301.500000px;}
.x26_c00459{left:304.200000px;}
.x3b_c00459{left:306.300000px;}
.x5_c00459{left:307.800000px;}
.x7d_c00459{left:309.300000px;}
.x70_c00459{left:311.250000px;}
.x4b_c00459{left:313.200000px;}
.x68_c00459{left:314.700000px;}
.x54_c00459{left:316.650000px;}
.x9a_c00459{left:317.850000px;}
.x42_c00459{left:319.200000px;}
.x91_c00459{left:321.450000px;}
.x2f_c00459{left:322.500000px;}
.x82_c00459{left:324.000000px;}
.xf_c00459{left:326.850000px;}
.x66_c00459{left:328.350000px;}
.x36_c00459{left:330.000000px;}
.x7e_c00459{left:331.650000px;}
.x29_c00459{left:332.700000px;}
.x9c_c00459{left:334.500000px;}
.x76_c00459{left:337.200000px;}
.x3c_c00459{left:338.700000px;}
.x27_c00459{left:340.950000px;}
.x5c_c00459{left:344.100000px;}
.x1d_c00459{left:345.900000px;}
.x48_c00459{left:347.400000px;}
.x6_c00459{left:348.900000px;}
.x16_c00459{left:349.950000px;}
.xa4_c00459{left:351.900000px;}
.x4c_c00459{left:353.100000px;}
.x6a_c00459{left:354.750000px;}
.x23_c00459{left:360.000000px;}
.x2a_c00459{left:363.600000px;}
.x61_c00459{left:364.650000px;}
.x30_c00459{left:365.700000px;}
.x71_c00459{left:366.750000px;}
.x62_c00459{left:371.100000px;}
.x10_c00459{left:372.600000px;}
.x1e_c00459{left:374.400000px;}
.x95_c00459{left:376.950000px;}
.x55_c00459{left:379.350000px;}
.x7_c00459{left:381.000000px;}
.x17_c00459{left:382.350000px;}
.x2b_c00459{left:384.150000px;}
.x3d_c00459{left:387.300000px;}
.x79_c00459{left:388.500000px;}
.x67_c00459{left:389.550000px;}
.x37_c00459{left:391.500000px;}
.x77_c00459{left:393.000000px;}
.x43_c00459{left:394.050000px;}
.x1f_c00459{left:395.700000px;}
.x8d_c00459{left:396.750000px;}
.x8a_c00459{left:399.450000px;}
.x80_c00459{left:401.100000px;}
.x72_c00459{left:402.450000px;}
.x63_c00459{left:404.100000px;}
.x5d_c00459{left:408.150000px;}
.x73_c00459{left:409.350000px;}
.x98_c00459{left:411.300000px;}
.xa0_c00459{left:413.250000px;}
.x6b_c00459{left:417.000000px;}
.x8_c00459{left:418.050000px;}
.x18_c00459{left:419.100000px;}
.x56_c00459{left:422.250000px;}
.x6c_c00459{left:424.200000px;}
.x2c_c00459{left:425.250000px;}
.x9b_c00459{left:426.900000px;}
.x38_c00459{left:428.250000px;}
.x57_c00459{left:429.750000px;}
.x11_c00459{left:431.700000px;}
.x31_c00459{left:434.100000px;}
.x96_c00459{left:435.300000px;}
.x20_c00459{left:436.800000px;}
.x6d_c00459{left:438.300000px;}
.x19_c00459{left:441.000000px;}
.xa9_c00459{left:442.350000px;}
.x9_c00459{left:445.050000px;}
.x4d_c00459{left:447.450000px;}
.x2_c00459{left:448.650000px;}
.x44_c00459{left:449.850000px;}
.xa5_c00459{left:452.850000px;}
.x58_c00459{left:456.000000px;}
.x5e_c00459{left:457.800000px;}
.x6e_c00459{left:459.600000px;}
.x93_c00459{left:462.900000px;}
.x87_c00459{left:464.550000px;}
.xa2_c00459{left:466.200000px;}
.x32_c00459{left:467.550000px;}
.xa_c00459{left:469.500000px;}
.x8e_c00459{left:471.600000px;}
.x21_c00459{left:474.600000px;}
.x97_c00459{left:475.650000px;}
.x85_c00459{left:476.700000px;}
.x4e_c00459{left:478.050000px;}
.x12_c00459{left:479.250000px;}
.x7a_c00459{left:481.350000px;}
.x3e_c00459{left:484.200000px;}
.x28_c00459{left:485.250000px;}
.x7c_c00459{left:486.750000px;}
.x1a_c00459{left:488.550000px;}
.xb_c00459{left:490.350000px;}
.xaa_c00459{left:492.000000px;}
.x45_c00459{left:493.050000px;}
.x39_c00459{left:495.300000px;}
.x99_c00459{left:496.350000px;}
.x88_c00459{left:498.000000px;}
.x9d_c00459{left:501.900000px;}
.x3f_c00459{left:504.300000px;}
.x13_c00459{left:505.950000px;}
.xa6_c00459{left:507.300000px;}
.xc_c00459{left:509.100000px;}
.x4f_c00459{left:512.250000px;}
.x7f_c00459{left:514.050000px;}
.x7b_c00459{left:515.850000px;}
.xa8_c00459{left:516.900000px;}
.x8b_c00459{left:525.750000px;}
.xa3_c00459{left:527.100000px;}
.x113_c00459{left:549.300000px;}
.x142_c00459{left:550.800000px;}
.x147_c00459{left:552.600000px;}
.xf8_c00459{left:558.000000px;}
.xeb_c00459{left:562.800000px;}
.xab_c00459{left:566.250000px;}
.xb4_c00459{left:567.300000px;}
.xe4_c00459{left:568.350000px;}
.x146_c00459{left:570.000000px;}
.x148_c00459{left:581.100000px;}
.xd2_c00459{left:583.500000px;}
.xcb_c00459{left:584.700000px;}
.x117_c00459{left:587.100000px;}
.x13b_c00459{left:589.200000px;}
.x140_c00459{left:594.600000px;}
.x133_c00459{left:597.300000px;}
.xf2_c00459{left:599.550000px;}
.xb5_c00459{left:600.750000px;}
.x125_c00459{left:603.150000px;}
.xde_c00459{left:605.850000px;}
.x137_c00459{left:609.600000px;}
.xec_c00459{left:611.700000px;}
.x104_c00459{left:613.200000px;}
.xcc_c00459{left:614.250000px;}
.xef_c00459{left:615.750000px;}
.xe5_c00459{left:616.950000px;}
.xac_c00459{left:618.150000px;}
.xb6_c00459{left:619.500000px;}
.xd3_c00459{left:621.000000px;}
.x123_c00459{left:622.500000px;}
.xd9_c00459{left:623.700000px;}
.x130_c00459{left:625.350000px;}
.xc8_c00459{left:629.250000px;}
.xed_c00459{left:631.800000px;}
.xc1_c00459{left:633.000000px;}
.x105_c00459{left:634.050000px;}
.x134_c00459{left:635.100000px;}
.x12c_c00459{left:636.150000px;}
.x118_c00459{left:638.250000px;}
.xfe_c00459{left:639.300000px;}
.x108_c00459{left:640.350000px;}
.xd4_c00459{left:641.550000px;}
.x11b_c00459{left:642.600000px;}
.x144_c00459{left:646.050000px;}
.xad_c00459{left:652.050000px;}
.xdf_c00459{left:653.700000px;}
.x10d_c00459{left:655.050000px;}
.xd5_c00459{left:657.000000px;}
.xbb_c00459{left:660.600000px;}
.x143_c00459{left:663.450000px;}
.xc2_c00459{left:664.650000px;}
.xf9_c00459{left:666.300000px;}
.xf3_c00459{left:668.700000px;}
.x11e_c00459{left:670.650000px;}
.x109_c00459{left:671.700000px;}
.xe6_c00459{left:673.800000px;}
.x10f_c00459{left:676.500000px;}
.xe0_c00459{left:678.600000px;}
.xb7_c00459{left:680.400000px;}
.xf0_c00459{left:682.050000px;}
.x149_c00459{left:684.000000px;}
.xcd_c00459{left:685.950000px;}
.x11c_c00459{left:688.350000px;}
.x12a_c00459{left:690.600000px;}
.xae_c00459{left:694.950000px;}
.x124_c00459{left:696.750000px;}
.xd6_c00459{left:698.100000px;}
.x11f_c00459{left:699.150000px;}
.xbc_c00459{left:700.200000px;}
.xff_c00459{left:702.000000px;}
.x13e_c00459{left:705.150000px;}
.xfa_c00459{left:707.400000px;}
.xc3_c00459{left:708.600000px;}
.x114_c00459{left:710.250000px;}
.xe1_c00459{left:711.300000px;}
.x145_c00459{left:714.750000px;}
.x13c_c00459{left:716.550000px;}
.xbd_c00459{left:720.750000px;}
.xc4_c00459{left:724.050000px;}
.xce_c00459{left:725.550000px;}
.xb8_c00459{left:726.900000px;}
.xfb_c00459{left:727.950000px;}
.xc9_c00459{left:729.000000px;}
.xee_c00459{left:731.250000px;}
.x10a_c00459{left:733.950000px;}
.x106_c00459{left:736.950000px;}
.x100_c00459{left:739.500000px;}
.x12d_c00459{left:742.800000px;}
.x115_c00459{left:744.150000px;}
.xe2_c00459{left:745.200000px;}
.xaf_c00459{left:747.150000px;}
.x126_c00459{left:750.000000px;}
.xe7_c00459{left:751.200000px;}
.xf4_c00459{left:753.000000px;}
.xda_c00459{left:756.600000px;}
.x10b_c00459{left:757.650000px;}
.xf1_c00459{left:759.000000px;}
.x10e_c00459{left:760.200000px;}
.x138_c00459{left:763.200000px;}
.xbe_c00459{left:765.000000px;}
.xd7_c00459{left:768.000000px;}
.x12b_c00459{left:769.350000px;}
.xb0_c00459{left:770.550000px;}
.xdb_c00459{left:773.850000px;}
.x119_c00459{left:775.050000px;}
.x127_c00459{left:776.700000px;}
.x101_c00459{left:778.050000px;}
.x135_c00459{left:779.550000px;}
.xfc_c00459{left:782.250000px;}
.x128_c00459{left:783.450000px;}
.x131_c00459{left:785.250000px;}
.x107_c00459{left:786.300000px;}
.x139_c00459{left:787.650000px;}
.xc5_c00459{left:789.450000px;}
.x112_c00459{left:791.850000px;}
.xe8_c00459{left:793.650000px;}
.x116_c00459{left:795.300000px;}
.x13a_c00459{left:798.450000px;}
.x136_c00459{left:799.650000px;}
.x12e_c00459{left:800.700000px;}
.xf5_c00459{left:803.400000px;}
.x120_c00459{left:804.600000px;}
.xbf_c00459{left:806.100000px;}
.xb1_c00459{left:808.050000px;}
.xc6_c00459{left:810.000000px;}
.x11d_c00459{left:811.050000px;}
.xe3_c00459{left:812.100000px;}
.x13f_c00459{left:815.700000px;}
.x110_c00459{left:816.900000px;}
.x14a_c00459{left:818.250000px;}
.xcf_c00459{left:820.650000px;}
.xdc_c00459{left:822.150000px;}
.xb2_c00459{left:823.500000px;}
.xf6_c00459{left:824.700000px;}
.x13d_c00459{left:826.350000px;}
.x121_c00459{left:828.750000px;}
.xe9_c00459{left:831.750000px;}
.xb9_c00459{left:832.800000px;}
.xca_c00459{left:836.250000px;}
.xd0_c00459{left:838.350000px;}
.x11a_c00459{left:839.850000px;}
.xb3_c00459{left:841.200000px;}
.x102_c00459{left:842.850000px;}
.xc0_c00459{left:845.400000px;}
.x10c_c00459{left:847.650000px;}
.x122_c00459{left:849.300000px;}
.x132_c00459{left:850.800000px;}
.xba_c00459{left:853.650000px;}
.xf7_c00459{left:855.600000px;}
.xc7_c00459{left:857.100000px;}
.xd1_c00459{left:859.200000px;}
.x141_c00459{left:861.000000px;}
.xfd_c00459{left:862.800000px;}
.x12f_c00459{left:864.450000px;}
.x129_c00459{left:870.300000px;}
.x103_c00459{left:871.650000px;}
.xd8_c00459{left:872.850000px;}
.xea_c00459{left:874.950000px;}
.x14b_c00459{left:876.900000px;}
.xdd_c00459{left:880.500000px;}
.x111_c00459{left:886.350000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.wsb_c00459{word-spacing:-6.677448pt;}
.wse_c00459{word-spacing:-5.185185pt;}
.wsd_c00459{word-spacing:-4.967320pt;}
.wsa_c00459{word-spacing:-3.905724pt;}
.ws1_c00459{word-spacing:-2.444444pt;}
.wsc_c00459{word-spacing:-1.746631pt;}
.ws0_c00459{word-spacing:-0.018328pt;}
.ws10_c00459{word-spacing:0.000000pt;}
.ws9_c00459{word-spacing:4.900285pt;}
.ws8_c00459{word-spacing:7.134503pt;}
.ws5_c00459{word-spacing:13.483467pt;}
.ws3_c00459{word-spacing:17.773012pt;}
.ws6_c00459{word-spacing:20.632708pt;}
.ws4_c00459{word-spacing:31.851852pt;}
.ws2_c00459{word-spacing:35.333333pt;}
.ws7_c00459{word-spacing:52.222222pt;}
.wsf_c00459{word-spacing:61.871345pt;}
._0_c00459{width:51.781948pt;}
._1_c00459{width:65.925926pt;}
.fs6_c00459{font-size:21.333333pt;}
.fs7_c00459{font-size:26.666667pt;}
.fs5_c00459{font-size:32.000000pt;}
.fs8_c00459{font-size:37.333333pt;}
.fs4_c00459{font-size:48.000000pt;}
.fs3_c00459{font-size:53.333333pt;}
.fs2_c00459{font-size:58.666667pt;}
.fs9_c00459{font-size:64.000000pt;}
.fs1_c00459{font-size:74.666667pt;}
.fs0_c00459{font-size:101.333333pt;}
.y0_c00459{bottom:0.000000pt;}
.y75_c00459{bottom:155.466667pt;}
.y74_c00459{bottom:171.200000pt;}
.y42_c00459{bottom:175.866667pt;}
.y73_c00459{bottom:185.333333pt;}
.y41_c00459{bottom:191.866667pt;}
.y72_c00459{bottom:199.200000pt;}
.y40_c00459{bottom:207.200000pt;}
.y71_c00459{bottom:217.466667pt;}
.y3f_c00459{bottom:222.533333pt;}
.y70_c00459{bottom:233.200000pt;}
.y3e_c00459{bottom:237.866667pt;}
.y6f_c00459{bottom:248.933333pt;}
.y3d_c00459{bottom:252.933333pt;}
.y6e_c00459{bottom:264.666667pt;}
.y3c_c00459{bottom:268.666667pt;}
.y6d_c00459{bottom:282.933333pt;}
.y3b_c00459{bottom:284.400000pt;}
.y3a_c00459{bottom:299.466667pt;}
.y6c_c00459{bottom:299.866667pt;}
.y6b_c00459{bottom:314.933333pt;}
.y39_c00459{bottom:315.200000pt;}
.y38_c00459{bottom:330.933333pt;}
.y37_c00459{bottom:346.666667pt;}
.y6a_c00459{bottom:354.533333pt;}
.y36_c00459{bottom:362.666667pt;}
.y69_c00459{bottom:374.666667pt;}
.y35_c00459{bottom:378.666667pt;}
.y68_c00459{bottom:390.666667pt;}
.y34_c00459{bottom:394.400000pt;}
.y67_c00459{bottom:406.133333pt;}
.y33_c00459{bottom:410.666667pt;}
.y66_c00459{bottom:422.133333pt;}
.y32_c00459{bottom:426.666667pt;}
.y65_c00459{bottom:438.133333pt;}
.y31_c00459{bottom:442.666667pt;}
.y64_c00459{bottom:454.800000pt;}
.y30_c00459{bottom:458.666667pt;}
.y63_c00459{bottom:470.133333pt;}
.y2f_c00459{bottom:474.400000pt;}
.y62_c00459{bottom:485.866667pt;}
.y2e_c00459{bottom:490.133333pt;}
.y61_c00459{bottom:501.600000pt;}
.y2d_c00459{bottom:506.133333pt;}
.y60_c00459{bottom:517.333333pt;}
.y2c_c00459{bottom:521.866667pt;}
.y5f_c00459{bottom:533.333333pt;}
.y2b_c00459{bottom:542.533333pt;}
.y5e_c00459{bottom:548.666667pt;}
.y2a_c00459{bottom:557.200000pt;}
.y5d_c00459{bottom:564.666667pt;}
.y29_c00459{bottom:570.933333pt;}
.y5c_c00459{bottom:580.400000pt;}
.y1f_c00459{bottom:582.800000pt;}
.y5b_c00459{bottom:596.400000pt;}
.y1e_c00459{bottom:596.533333pt;}
.y1d_c00459{bottom:608.666667pt;}
.y5a_c00459{bottom:612.400000pt;}
.y1c_c00459{bottom:622.133333pt;}
.y59_c00459{bottom:628.133333pt;}
.y1b_c00459{bottom:634.000000pt;}
.y58_c00459{bottom:644.133333pt;}
.y28_c00459{bottom:650.266667pt;}
.y1a_c00459{bottom:658.266667pt;}
.y26_c00459{bottom:659.200000pt;}
.y57_c00459{bottom:659.866667pt;}
.y19_c00459{bottom:672.266667pt;}
.y56_c00459{bottom:680.000000pt;}
.y18_c00459{bottom:686.000000pt;}
.y55_c00459{bottom:695.733333pt;}
.y17_c00459{bottom:697.866667pt;}
.y25_c00459{bottom:698.933333pt;}
.y16_c00459{bottom:708.800000pt;}
.y24_c00459{bottom:710.400000pt;}
.y23_c00459{bottom:711.333333pt;}
.y54_c00459{bottom:711.733333pt;}
.y27_c00459{bottom:715.200000pt;}
.y15_c00459{bottom:723.200000pt;}
.y53_c00459{bottom:730.800000pt;}
.y14_c00459{bottom:736.000000pt;}
.y52_c00459{bottom:746.800000pt;}
.y13_c00459{bottom:748.533333pt;}
.y21_c00459{bottom:748.800000pt;}
.y12_c00459{bottom:761.333333pt;}
.y20_c00459{bottom:762.533333pt;}
.y11_c00459{bottom:774.133333pt;}
.y51_c00459{bottom:778.533333pt;}
.y22_c00459{bottom:778.933333pt;}
.y10_c00459{bottom:787.200000pt;}
.y50_c00459{bottom:794.266667pt;}
.yf_c00459{bottom:801.866667pt;}
.y4f_c00459{bottom:809.866667pt;}
.ye_c00459{bottom:820.933333pt;}
.y4e_c00459{bottom:825.866667pt;}
.yd_c00459{bottom:837.866667pt;}
.y4d_c00459{bottom:841.600000pt;}
.yc_c00459{bottom:853.600000pt;}
.y4c_c00459{bottom:857.600000pt;}
.yb_c00459{bottom:869.333333pt;}
.y4b_c00459{bottom:873.600000pt;}
.ya_c00459{bottom:885.333333pt;}
.y4a_c00459{bottom:889.333333pt;}
.y9_c00459{bottom:901.066667pt;}
.y49_c00459{bottom:905.333333pt;}
.y8_c00459{bottom:917.066667pt;}
.y48_c00459{bottom:921.066667pt;}
.y7_c00459{bottom:934.533333pt;}
.y47_c00459{bottom:937.066667pt;}
.y6_c00459{bottom:952.400000pt;}
.y46_c00459{bottom:952.800000pt;}
.y45_c00459{bottom:968.533333pt;}
.y5_c00459{bottom:968.666667pt;}
.y4_c00459{bottom:984.000000pt;}
.y44_c00459{bottom:984.533333pt;}
.y3_c00459{bottom:1000.000000pt;}
.y43_c00459{bottom:1000.266667pt;}
.y1_c00459{bottom:1020.133333pt;}
.y2_c00459{bottom:1023.333333pt;}
.h8_c00459{height:21.333333pt;}
.h9_c00459{height:26.666667pt;}
.h7_c00459{height:32.000000pt;}
.ha_c00459{height:37.333333pt;}
.h6_c00459{height:48.000000pt;}
.h5_c00459{height:53.333333pt;}
.h4_c00459{height:58.666667pt;}
.hb_c00459{height:64.000000pt;}
.h3_c00459{height:74.666667pt;}
.h2_c00459{height:101.333333pt;}
.h0_c00459{height:1135.040039pt;}
.h1_c00459{height:1135.333333pt;}
.w0_c00459{width:851.840007pt;}
.w1_c00459{width:852.000000pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:168.666667pt;}
.x49_c00459{left:170.933333pt;}
.x24_c00459{left:171.866667pt;}
.x81_c00459{left:173.466667pt;}
.x78_c00459{left:183.066667pt;}
.x50_c00459{left:184.666667pt;}
.x3_c00459{left:187.200000pt;}
.x1b_c00459{left:188.133333pt;}
.x83_c00459{left:189.866667pt;}
.x9e_c00459{left:191.066667pt;}
.xa7_c00459{left:192.666667pt;}
.x59_c00459{left:197.066667pt;}
.x69_c00459{left:198.133333pt;}
.x64_c00459{left:199.466667pt;}
.x33_c00459{left:203.733333pt;}
.x8f_c00459{left:206.133333pt;}
.xd_c00459{left:207.733333pt;}
.x94_c00459{left:209.866667pt;}
.x25_c00459{left:212.133333pt;}
.x2d_c00459{left:216.533333pt;}
.x74_c00459{left:217.466667pt;}
.x90_c00459{left:218.933333pt;}
.x89_c00459{left:220.000000pt;}
.x84_c00459{left:222.133333pt;}
.x4a_c00459{left:223.733333pt;}
.x14_c00459{left:224.666667pt;}
.x40_c00459{left:225.866667pt;}
.x3a_c00459{left:227.466667pt;}
.xa1_c00459{left:229.200000pt;}
.x51_c00459{left:232.000000pt;}
.x5f_c00459{left:232.933333pt;}
.x75_c00459{left:234.400000pt;}
.x34_c00459{left:235.466667pt;}
.x22_c00459{left:237.466667pt;}
.x4_c00459{left:239.333333pt;}
.x46_c00459{left:241.333333pt;}
.x35_c00459{left:242.800000pt;}
.x92_c00459{left:244.133333pt;}
.x5a_c00459{left:245.733333pt;}
.x86_c00459{left:247.466667pt;}
.x65_c00459{left:248.400000pt;}
.x9f_c00459{left:249.333333pt;}
.xe_c00459{left:251.866667pt;}
.x47_c00459{left:252.800000pt;}
.x6f_c00459{left:254.266667pt;}
.x8c_c00459{left:256.400000pt;}
.x2e_c00459{left:258.133333pt;}
.x1c_c00459{left:259.200000pt;}
.x52_c00459{left:260.133333pt;}
.x60_c00459{left:261.733333pt;}
.x5b_c00459{left:262.666667pt;}
.x15_c00459{left:264.933333pt;}
.x41_c00459{left:266.133333pt;}
.x53_c00459{left:268.000000pt;}
.x26_c00459{left:270.400000pt;}
.x3b_c00459{left:272.266667pt;}
.x5_c00459{left:273.600000pt;}
.x7d_c00459{left:274.933333pt;}
.x70_c00459{left:276.666667pt;}
.x4b_c00459{left:278.400000pt;}
.x68_c00459{left:279.733333pt;}
.x54_c00459{left:281.466667pt;}
.x9a_c00459{left:282.533333pt;}
.x42_c00459{left:283.733333pt;}
.x91_c00459{left:285.733333pt;}
.x2f_c00459{left:286.666667pt;}
.x82_c00459{left:288.000000pt;}
.xf_c00459{left:290.533333pt;}
.x66_c00459{left:291.866667pt;}
.x36_c00459{left:293.333333pt;}
.x7e_c00459{left:294.800000pt;}
.x29_c00459{left:295.733333pt;}
.x9c_c00459{left:297.333333pt;}
.x76_c00459{left:299.733333pt;}
.x3c_c00459{left:301.066667pt;}
.x27_c00459{left:303.066667pt;}
.x5c_c00459{left:305.866667pt;}
.x1d_c00459{left:307.466667pt;}
.x48_c00459{left:308.800000pt;}
.x6_c00459{left:310.133333pt;}
.x16_c00459{left:311.066667pt;}
.xa4_c00459{left:312.800000pt;}
.x4c_c00459{left:313.866667pt;}
.x6a_c00459{left:315.333333pt;}
.x23_c00459{left:320.000000pt;}
.x2a_c00459{left:323.200000pt;}
.x61_c00459{left:324.133333pt;}
.x30_c00459{left:325.066667pt;}
.x71_c00459{left:326.000000pt;}
.x62_c00459{left:329.866667pt;}
.x10_c00459{left:331.200000pt;}
.x1e_c00459{left:332.800000pt;}
.x95_c00459{left:335.066667pt;}
.x55_c00459{left:337.200000pt;}
.x7_c00459{left:338.666667pt;}
.x17_c00459{left:339.866667pt;}
.x2b_c00459{left:341.466667pt;}
.x3d_c00459{left:344.266667pt;}
.x79_c00459{left:345.333333pt;}
.x67_c00459{left:346.266667pt;}
.x37_c00459{left:348.000000pt;}
.x77_c00459{left:349.333333pt;}
.x43_c00459{left:350.266667pt;}
.x1f_c00459{left:351.733333pt;}
.x8d_c00459{left:352.666667pt;}
.x8a_c00459{left:355.066667pt;}
.x80_c00459{left:356.533333pt;}
.x72_c00459{left:357.733333pt;}
.x63_c00459{left:359.200000pt;}
.x5d_c00459{left:362.800000pt;}
.x73_c00459{left:363.866667pt;}
.x98_c00459{left:365.600000pt;}
.xa0_c00459{left:367.333333pt;}
.x6b_c00459{left:370.666667pt;}
.x8_c00459{left:371.600000pt;}
.x18_c00459{left:372.533333pt;}
.x56_c00459{left:375.333333pt;}
.x6c_c00459{left:377.066667pt;}
.x2c_c00459{left:378.000000pt;}
.x9b_c00459{left:379.466667pt;}
.x38_c00459{left:380.666667pt;}
.x57_c00459{left:382.000000pt;}
.x11_c00459{left:383.733333pt;}
.x31_c00459{left:385.866667pt;}
.x96_c00459{left:386.933333pt;}
.x20_c00459{left:388.266667pt;}
.x6d_c00459{left:389.600000pt;}
.x19_c00459{left:392.000000pt;}
.xa9_c00459{left:393.200000pt;}
.x9_c00459{left:395.600000pt;}
.x4d_c00459{left:397.733333pt;}
.x2_c00459{left:398.800000pt;}
.x44_c00459{left:399.866667pt;}
.xa5_c00459{left:402.533333pt;}
.x58_c00459{left:405.333333pt;}
.x5e_c00459{left:406.933333pt;}
.x6e_c00459{left:408.533333pt;}
.x93_c00459{left:411.466667pt;}
.x87_c00459{left:412.933333pt;}
.xa2_c00459{left:414.400000pt;}
.x32_c00459{left:415.600000pt;}
.xa_c00459{left:417.333333pt;}
.x8e_c00459{left:419.200000pt;}
.x21_c00459{left:421.866667pt;}
.x97_c00459{left:422.800000pt;}
.x85_c00459{left:423.733333pt;}
.x4e_c00459{left:424.933333pt;}
.x12_c00459{left:426.000000pt;}
.x7a_c00459{left:427.866667pt;}
.x3e_c00459{left:430.400000pt;}
.x28_c00459{left:431.333333pt;}
.x7c_c00459{left:432.666667pt;}
.x1a_c00459{left:434.266667pt;}
.xb_c00459{left:435.866667pt;}
.xaa_c00459{left:437.333333pt;}
.x45_c00459{left:438.266667pt;}
.x39_c00459{left:440.266667pt;}
.x99_c00459{left:441.200000pt;}
.x88_c00459{left:442.666667pt;}
.x9d_c00459{left:446.133333pt;}
.x3f_c00459{left:448.266667pt;}
.x13_c00459{left:449.733333pt;}
.xa6_c00459{left:450.933333pt;}
.xc_c00459{left:452.533333pt;}
.x4f_c00459{left:455.333333pt;}
.x7f_c00459{left:456.933333pt;}
.x7b_c00459{left:458.533333pt;}
.xa8_c00459{left:459.466667pt;}
.x8b_c00459{left:467.333333pt;}
.xa3_c00459{left:468.533333pt;}
.x113_c00459{left:488.266667pt;}
.x142_c00459{left:489.600000pt;}
.x147_c00459{left:491.200000pt;}
.xf8_c00459{left:496.000000pt;}
.xeb_c00459{left:500.266667pt;}
.xab_c00459{left:503.333333pt;}
.xb4_c00459{left:504.266667pt;}
.xe4_c00459{left:505.200000pt;}
.x146_c00459{left:506.666667pt;}
.x148_c00459{left:516.533333pt;}
.xd2_c00459{left:518.666667pt;}
.xcb_c00459{left:519.733333pt;}
.x117_c00459{left:521.866667pt;}
.x13b_c00459{left:523.733333pt;}
.x140_c00459{left:528.533333pt;}
.x133_c00459{left:530.933333pt;}
.xf2_c00459{left:532.933333pt;}
.xb5_c00459{left:534.000000pt;}
.x125_c00459{left:536.133333pt;}
.xde_c00459{left:538.533333pt;}
.x137_c00459{left:541.866667pt;}
.xec_c00459{left:543.733333pt;}
.x104_c00459{left:545.066667pt;}
.xcc_c00459{left:546.000000pt;}
.xef_c00459{left:547.333333pt;}
.xe5_c00459{left:548.400000pt;}
.xac_c00459{left:549.466667pt;}
.xb6_c00459{left:550.666667pt;}
.xd3_c00459{left:552.000000pt;}
.x123_c00459{left:553.333333pt;}
.xd9_c00459{left:554.400000pt;}
.x130_c00459{left:555.866667pt;}
.xc8_c00459{left:559.333333pt;}
.xed_c00459{left:561.600000pt;}
.xc1_c00459{left:562.666667pt;}
.x105_c00459{left:563.600000pt;}
.x134_c00459{left:564.533333pt;}
.x12c_c00459{left:565.466667pt;}
.x118_c00459{left:567.333333pt;}
.xfe_c00459{left:568.266667pt;}
.x108_c00459{left:569.200000pt;}
.xd4_c00459{left:570.266667pt;}
.x11b_c00459{left:571.200000pt;}
.x144_c00459{left:574.266667pt;}
.xad_c00459{left:579.600000pt;}
.xdf_c00459{left:581.066667pt;}
.x10d_c00459{left:582.266667pt;}
.xd5_c00459{left:584.000000pt;}
.xbb_c00459{left:587.200000pt;}
.x143_c00459{left:589.733333pt;}
.xc2_c00459{left:590.800000pt;}
.xf9_c00459{left:592.266667pt;}
.xf3_c00459{left:594.400000pt;}
.x11e_c00459{left:596.133333pt;}
.x109_c00459{left:597.066667pt;}
.xe6_c00459{left:598.933333pt;}
.x10f_c00459{left:601.333333pt;}
.xe0_c00459{left:603.200000pt;}
.xb7_c00459{left:604.800000pt;}
.xf0_c00459{left:606.266667pt;}
.x149_c00459{left:608.000000pt;}
.xcd_c00459{left:609.733333pt;}
.x11c_c00459{left:611.866667pt;}
.x12a_c00459{left:613.866667pt;}
.xae_c00459{left:617.733333pt;}
.x124_c00459{left:619.333333pt;}
.xd6_c00459{left:620.533333pt;}
.x11f_c00459{left:621.466667pt;}
.xbc_c00459{left:622.400000pt;}
.xff_c00459{left:624.000000pt;}
.x13e_c00459{left:626.800000pt;}
.xfa_c00459{left:628.800000pt;}
.xc3_c00459{left:629.866667pt;}
.x114_c00459{left:631.333333pt;}
.xe1_c00459{left:632.266667pt;}
.x145_c00459{left:635.333333pt;}
.x13c_c00459{left:636.933333pt;}
.xbd_c00459{left:640.666667pt;}
.xc4_c00459{left:643.600000pt;}
.xce_c00459{left:644.933333pt;}
.xb8_c00459{left:646.133333pt;}
.xfb_c00459{left:647.066667pt;}
.xc9_c00459{left:648.000000pt;}
.xee_c00459{left:650.000000pt;}
.x10a_c00459{left:652.400000pt;}
.x106_c00459{left:655.066667pt;}
.x100_c00459{left:657.333333pt;}
.x12d_c00459{left:660.266667pt;}
.x115_c00459{left:661.466667pt;}
.xe2_c00459{left:662.400000pt;}
.xaf_c00459{left:664.133333pt;}
.x126_c00459{left:666.666667pt;}
.xe7_c00459{left:667.733333pt;}
.xf4_c00459{left:669.333333pt;}
.xda_c00459{left:672.533333pt;}
.x10b_c00459{left:673.466667pt;}
.xf1_c00459{left:674.666667pt;}
.x10e_c00459{left:675.733333pt;}
.x138_c00459{left:678.400000pt;}
.xbe_c00459{left:680.000000pt;}
.xd7_c00459{left:682.666667pt;}
.x12b_c00459{left:683.866667pt;}
.xb0_c00459{left:684.933333pt;}
.xdb_c00459{left:687.866667pt;}
.x119_c00459{left:688.933333pt;}
.x127_c00459{left:690.400000pt;}
.x101_c00459{left:691.600000pt;}
.x135_c00459{left:692.933333pt;}
.xfc_c00459{left:695.333333pt;}
.x128_c00459{left:696.400000pt;}
.x131_c00459{left:698.000000pt;}
.x107_c00459{left:698.933333pt;}
.x139_c00459{left:700.133333pt;}
.xc5_c00459{left:701.733333pt;}
.x112_c00459{left:703.866667pt;}
.xe8_c00459{left:705.466667pt;}
.x116_c00459{left:706.933333pt;}
.x13a_c00459{left:709.733333pt;}
.x136_c00459{left:710.800000pt;}
.x12e_c00459{left:711.733333pt;}
.xf5_c00459{left:714.133333pt;}
.x120_c00459{left:715.200000pt;}
.xbf_c00459{left:716.533333pt;}
.xb1_c00459{left:718.266667pt;}
.xc6_c00459{left:720.000000pt;}
.x11d_c00459{left:720.933333pt;}
.xe3_c00459{left:721.866667pt;}
.x13f_c00459{left:725.066667pt;}
.x110_c00459{left:726.133333pt;}
.x14a_c00459{left:727.333333pt;}
.xcf_c00459{left:729.466667pt;}
.xdc_c00459{left:730.800000pt;}
.xb2_c00459{left:732.000000pt;}
.xf6_c00459{left:733.066667pt;}
.x13d_c00459{left:734.533333pt;}
.x121_c00459{left:736.666667pt;}
.xe9_c00459{left:739.333333pt;}
.xb9_c00459{left:740.266667pt;}
.xca_c00459{left:743.333333pt;}
.xd0_c00459{left:745.200000pt;}
.x11a_c00459{left:746.533333pt;}
.xb3_c00459{left:747.733333pt;}
.x102_c00459{left:749.200000pt;}
.xc0_c00459{left:751.466667pt;}
.x10c_c00459{left:753.466667pt;}
.x122_c00459{left:754.933333pt;}
.x132_c00459{left:756.266667pt;}
.xba_c00459{left:758.800000pt;}
.xf7_c00459{left:760.533333pt;}
.xc7_c00459{left:761.866667pt;}
.xd1_c00459{left:763.733333pt;}
.x141_c00459{left:765.333333pt;}
.xfd_c00459{left:766.933333pt;}
.x12f_c00459{left:768.400000pt;}
.x129_c00459{left:773.600000pt;}
.x103_c00459{left:774.800000pt;}
.xd8_c00459{left:775.866667pt;}
.xea_c00459{left:777.733333pt;}
.x14b_c00459{left:779.466667pt;}
.xdd_c00459{left:782.666667pt;}
.x111_c00459{left:787.866667pt;}
}





/* 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_c00460 {
    display:none;
  }
  .loading-indicator_c00460.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00460 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_c00460 { 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_c00460" -> "#page-container .classname_c00460")
 */
.pf_c00460 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00460 { /* 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_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00460 { /* 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_c00460 { /* 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_c00460 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00460 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00460 {overflow:visible;}
  }
}
.c_c00460 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00460 { /* 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_c00460:after { /* webkit #35443 */
  content: '';
}
.t_c00460:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00460 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 */
}
.__c00460 { /* 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_c00460 { /* info for Javascript */
  display:none;
}
.l_c00460 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00460 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00460 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00460: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_c00460 {
    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_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00460.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_c00460 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00460;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.000000;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;}
.m1_c00460{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m89_c00460{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mba_c00460{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00460{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m88_c00460{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00460{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m113_c00460{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mca_c00460{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00460{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m101_c00460{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00460{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00460{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m96_c00460{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m19_c00460{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00460{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00460{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m106_c00460{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m87_c00460{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m34_c00460{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m48_c00460{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.ma_c00460{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m42_c00460{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00460{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00460{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m111_c00460{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md7_c00460{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.me6_c00460{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m28_c00460{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00460{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.me5_c00460{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00460{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mef_c00460{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m80_c00460{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00460{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m124_c00460{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00460{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m107_c00460{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00460{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m115_c00460{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m72_c00460{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00460{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00460{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m5_c00460{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00460{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00460{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00460{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m7_c00460{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00460{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00460{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00460{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00460{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00460{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00460{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m40_c00460{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00460{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m30_c00460{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb_c00460{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m36_c00460{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00460{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00460{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m49_c00460{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00460{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m22_c00460{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m126_c00460{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00460{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00460{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00460{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00460{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m108_c00460{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00460{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m92_c00460{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00460{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00460{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00460{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00460{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00460{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00460{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00460{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00460{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m104_c00460{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00460{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00460{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00460{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m44_c00460{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me8_c00460{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00460{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m24_c00460{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m90_c00460{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00460{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00460{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m121_c00460{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m53_c00460{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00460{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00460{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m125_c00460{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00460{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m102_c00460{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m13_c00460{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00460{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mda_c00460{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00460{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mce_c00460{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m57_c00460{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mec_c00460{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m26_c00460{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00460{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m35_c00460{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m70_c00460{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mee_c00460{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.me0_c00460{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md0_c00460{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m138_c00460{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m93_c00460{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00460{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mea_c00460{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00460{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m23_c00460{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md3_c00460{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m33_c00460{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00460{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m59_c00460{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00460{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m60_c00460{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2_c00460{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m76_c00460{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m130_c00460{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00460{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00460{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m103_c00460{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m29_c00460{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00460{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00460{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3_c00460{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00460{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m56_c00460{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00460{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00460{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md6_c00460{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m37_c00460{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00460{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me4_c00460{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m116_c00460{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m54_c00460{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m117_c00460{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m61_c00460{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m82_c00460{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mde_c00460{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00460{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m14_c00460{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md5_c00460{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m16_c00460{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me7_c00460{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m95_c00460{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m64_c00460{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00460{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m17_c00460{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m123_c00460{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00460{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m55_c00460{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mac_c00460{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m50_c00460{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00460{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m31_c00460{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00460{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00460{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m83_c00460{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00460{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m18_c00460{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.maa_c00460{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00460{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m13a_c00460{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00460{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00460{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m52_c00460{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m69_c00460{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00460{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00460{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00460{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m51_c00460{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m127_c00460{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00460{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m20_c00460{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11_c00460{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00460{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m71_c00460{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m122_c00460{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m132_c00460{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m27_c00460{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00460{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00460{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00460{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m15_c00460{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00460{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mab_c00460{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m99_c00460{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00460{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00460{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00460{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m84_c00460{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m77_c00460{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m137_c00460{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m129_c00460{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4_c00460{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m68_c00460{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.me_c00460{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m73_c00460{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00460{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.md4_c00460{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m10_c00460{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m75_c00460{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m119_c00460{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m13c_c00460{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m43_c00460{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00460{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m39_c00460{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mff_c00460{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m118_c00460{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00460{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mae_c00460{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m128_c00460{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m109_c00460{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m58_c00460{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.md2_c00460{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m12_c00460{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m85_c00460{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00460{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00460{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m91_c00460{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m131_c00460{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m139_c00460{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00460{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m78_c00460{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m41_c00460{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00460{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00460{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md8_c00460{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00460{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00460{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m86_c00460{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00460{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.med_c00460{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m94_c00460{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00460{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00460{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00460{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00460{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m100_c00460{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m114_c00460{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00460{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m47_c00460{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00460{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc_c00460{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m120_c00460{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00460{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m32_c00460{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00460{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m98_c00460{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m67_c00460{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00460{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me1_c00460{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00460{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m38_c00460{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mad_c00460{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00460{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m46_c00460{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m62_c00460{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9_c00460{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md1_c00460{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00460{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00460{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m66_c00460{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00460{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m134_c00460{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.md_c00460{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m110_c00460{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00460{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00460{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf_c00460{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m21_c00460{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00460{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00460{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00460{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00460{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00460{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00460{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m6_c00460{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m79_c00460{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m63_c00460{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00460{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.me3_c00460{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m97_c00460{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00460{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m105_c00460{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00460{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me2_c00460{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md9_c00460{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00460{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.me9_c00460{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m81_c00460{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m74_c00460{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m65_c00460{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m133_c00460{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00460{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m136_c00460{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m25_c00460{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00460{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00460{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m112_c00460{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.maf_c00460{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m135_c00460{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00460{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m45_c00460{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00460{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m13d_c00460{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00460{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00460{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.meb_c00460{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls0_c00460{letter-spacing:0.000000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{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__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00460{word-spacing:-13.577805px;}
.ws3_c00460{word-spacing:-11.267606px;}
.ws8_c00460{word-spacing:-10.625000px;}
.ws2_c00460{word-spacing:-9.743935px;}
.ws12_c00460{word-spacing:-9.609665px;}
.wsb_c00460{word-spacing:-6.250000px;}
.wsd_c00460{word-spacing:-6.057692px;}
.ws6_c00460{word-spacing:-5.512821px;}
.ws4_c00460{word-spacing:-5.012158px;}
.ws1_c00460{word-spacing:-3.726115px;}
.ws5_c00460{word-spacing:-1.911765px;}
.ws7_c00460{word-spacing:-1.666667px;}
.ws13_c00460{word-spacing:0.000000px;}
.wsa_c00460{word-spacing:5.312500px;}
.wse_c00460{word-spacing:7.126005px;}
.ws9_c00460{word-spacing:25.131579px;}
.ws11_c00460{word-spacing:28.555874px;}
.wsf_c00460{word-spacing:32.250000px;}
.ws0_c00460{word-spacing:53.966261px;}
.ws10_c00460{word-spacing:66.315789px;}
._0_c00460{width:40.000000px;}
._1_c00460{width:58.117479px;}
._2_c00460{width:70.151862px;}
.fc0_c00460{color:transparent;}
.fs2_c00460{font-size:48.000000px;}
.fs3_c00460{font-size:54.000000px;}
.fs4_c00460{font-size:60.000000px;}
.fs5_c00460{font-size:66.000000px;}
.fs6_c00460{font-size:72.000000px;}
.fs0_c00460{font-size:84.000000px;}
.fs1_c00460{font-size:96.000000px;}
.y0_c00460{bottom:0.000000px;}
.y70_c00460{bottom:177.150000px;}
.y3c_c00460{bottom:195.300000px;}
.y6f_c00460{bottom:195.450000px;}
.y3b_c00460{bottom:209.700000px;}
.y6e_c00460{bottom:213.150000px;}
.y3a_c00460{bottom:224.100000px;}
.y6d_c00460{bottom:231.150000px;}
.y39_c00460{bottom:238.500000px;}
.y6c_c00460{bottom:248.850000px;}
.y38_c00460{bottom:252.900000px;}
.y6b_c00460{bottom:267.150000px;}
.y37_c00460{bottom:267.600000px;}
.y36_c00460{bottom:281.700000px;}
.y6a_c00460{bottom:293.700000px;}
.y35_c00460{bottom:296.400000px;}
.y34_c00460{bottom:310.800000px;}
.y69_c00460{bottom:311.700000px;}
.y33_c00460{bottom:325.200000px;}
.y68_c00460{bottom:329.700000px;}
.y32_c00460{bottom:339.600000px;}
.y67_c00460{bottom:352.050000px;}
.y31_c00460{bottom:354.000000px;}
.y30_c00460{bottom:368.400000px;}
.y66_c00460{bottom:382.650000px;}
.y2f_c00460{bottom:383.100000px;}
.y2e_c00460{bottom:401.400000px;}
.y65_c00460{bottom:405.300000px;}
.y2d_c00460{bottom:416.100000px;}
.y64_c00460{bottom:427.950000px;}
.y2c_c00460{bottom:430.200000px;}
.y2b_c00460{bottom:444.300000px;}
.y63_c00460{bottom:445.950000px;}
.y2a_c00460{bottom:459.000000px;}
.y62_c00460{bottom:463.650000px;}
.y29_c00460{bottom:473.100000px;}
.y61_c00460{bottom:481.350000px;}
.y28_c00460{bottom:487.500000px;}
.y60_c00460{bottom:499.500000px;}
.y27_c00460{bottom:501.900000px;}
.y5f_c00460{bottom:517.200000px;}
.y26_c00460{bottom:519.150000px;}
.y25_c00460{bottom:534.150000px;}
.y5e_c00460{bottom:535.200000px;}
.y24_c00460{bottom:548.850000px;}
.y5d_c00460{bottom:553.200000px;}
.y23_c00460{bottom:563.250000px;}
.y5c_c00460{bottom:570.900000px;}
.y22_c00460{bottom:577.950000px;}
.y5b_c00460{bottom:589.200000px;}
.y21_c00460{bottom:592.350000px;}
.y20_c00460{bottom:606.450000px;}
.y5a_c00460{bottom:606.900000px;}
.y1f_c00460{bottom:621.600000px;}
.y59_c00460{bottom:624.900000px;}
.y1e_c00460{bottom:635.700000px;}
.y58_c00460{bottom:642.900000px;}
.y1d_c00460{bottom:649.800000px;}
.y57_c00460{bottom:660.450000px;}
.y1c_c00460{bottom:672.450000px;}
.y56_c00460{bottom:678.150000px;}
.y1b_c00460{bottom:682.500000px;}
.y55_c00460{bottom:696.150000px;}
.y1a_c00460{bottom:696.900000px;}
.y19_c00460{bottom:711.300000px;}
.y54_c00460{bottom:714.150000px;}
.y18_c00460{bottom:725.700000px;}
.y53_c00460{bottom:731.850000px;}
.y17_c00460{bottom:740.100000px;}
.y52_c00460{bottom:749.550000px;}
.y16_c00460{bottom:754.500000px;}
.y51_c00460{bottom:767.100000px;}
.y15_c00460{bottom:768.600000px;}
.y50_c00460{bottom:780.450000px;}
.y14_c00460{bottom:783.300000px;}
.y4f_c00460{bottom:795.600000px;}
.y13_c00460{bottom:797.400000px;}
.y4e_c00460{bottom:810.000000px;}
.y12_c00460{bottom:811.800000px;}
.y4d_c00460{bottom:824.400000px;}
.y11_c00460{bottom:826.500000px;}
.y4c_c00460{bottom:838.500000px;}
.y4b_c00460{bottom:852.750000px;}
.y4a_c00460{bottom:867.900000px;}
.y10_c00460{bottom:876.300000px;}
.y49_c00460{bottom:887.700000px;}
.yf_c00460{bottom:894.300000px;}
.y48_c00460{bottom:905.400000px;}
.y47_c00460{bottom:923.100000px;}
.ye_c00460{bottom:924.450000px;}
.y46_c00460{bottom:941.100000px;}
.yd_c00460{bottom:946.800000px;}
.y45_c00460{bottom:959.100000px;}
.yc_c00460{bottom:965.850000px;}
.yb_c00460{bottom:983.850000px;}
.y44_c00460{bottom:985.650000px;}
.ya_c00460{bottom:1001.550000px;}
.y43_c00460{bottom:1003.650000px;}
.y42_c00460{bottom:1021.650000px;}
.y9_c00460{bottom:1022.700000px;}
.y41_c00460{bottom:1039.350000px;}
.y8_c00460{bottom:1041.450000px;}
.y40_c00460{bottom:1057.350000px;}
.y7_c00460{bottom:1059.750000px;}
.y6_c00460{bottom:1077.450000px;}
.y3f_c00460{bottom:1079.250000px;}
.y5_c00460{bottom:1103.700000px;}
.y3e_c00460{bottom:1110.000000px;}
.y4_c00460{bottom:1117.800000px;}
.y3d_c00460{bottom:1128.300000px;}
.y3_c00460{bottom:1131.150000px;}
.y1_c00460{bottom:1154.850000px;}
.y2_c00460{bottom:1155.600000px;}
.h4_c00460{height:48.000000px;}
.h5_c00460{height:54.000000px;}
.h6_c00460{height:60.000000px;}
.h7_c00460{height:66.000000px;}
.h8_c00460{height:72.000000px;}
.h2_c00460{height:84.000000px;}
.h3_c00460{height:96.000000px;}
.h1_c00460{height:1270.500000px;}
.h0_c00460{height:1270.799927px;}
.w0_c00460{width:958.320007px;}
.w1_c00460{width:958.500000px;}
.x0_c00460{left:0.000000px;}
.x93_c00460{left:78.300000px;}
.x7e_c00460{left:79.650000px;}
.x51_c00460{left:80.850000px;}
.xc_c00460{left:82.500000px;}
.xaa_c00460{left:87.900000px;}
.x76_c00460{left:88.950000px;}
.xa4_c00460{left:95.400000px;}
.x55_c00460{left:96.450000px;}
.x4b_c00460{left:97.500000px;}
.x1a_c00460{left:99.450000px;}
.x13_c00460{left:100.800000px;}
.x6a_c00460{left:103.650000px;}
.x66_c00460{left:105.150000px;}
.xa7_c00460{left:106.500000px;}
.x3d_c00460{left:108.450000px;}
.xb0_c00460{left:109.800000px;}
.x7_c00460{left:110.850000px;}
.x7a_c00460{left:112.650000px;}
.x77_c00460{left:116.250000px;}
.x22_c00460{left:117.300000px;}
.x8f_c00460{left:119.100000px;}
.x4c_c00460{left:120.600000px;}
.x8e_c00460{left:123.450000px;}
.x96_c00460{left:125.850000px;}
.x1b_c00460{left:127.200000px;}
.x6f_c00460{left:129.000000px;}
.xb4_c00460{left:130.350000px;}
.x44_c00460{left:131.700000px;}
.x29_c00460{left:134.550000px;}
.xa0_c00460{left:136.050000px;}
.x8c_c00460{left:138.600000px;}
.x3e_c00460{left:141.150000px;}
.xaf_c00460{left:142.800000px;}
.x32_c00460{left:144.000000px;}
.x14_c00460{left:146.550000px;}
.x70_c00460{left:147.750000px;}
.x9a_c00460{left:150.900000px;}
.x3f_c00460{left:151.950000px;}
.x3a_c00460{left:153.300000px;}
.x2a_c00460{left:155.400000px;}
.x45_c00460{left:157.200000px;}
.x5f_c00460{left:158.850000px;}
.x84_c00460{left:160.200000px;}
.x6b_c00460{left:161.550000px;}
.x20_c00460{left:162.600000px;}
.x94_c00460{left:166.500000px;}
.x92_c00460{left:167.850000px;}
.xd_c00460{left:168.900000px;}
.x63_c00460{left:169.950000px;}
.x71_c00460{left:171.150000px;}
.x3b_c00460{left:173.850000px;}
.x9b_c00460{left:177.150000px;}
.x6c_c00460{left:179.850000px;}
.x9e_c00460{left:181.800000px;}
.x23_c00460{left:182.850000px;}
.x21_c00460{left:184.200000px;}
.xa2_c00460{left:185.550000px;}
.x5b_c00460{left:187.500000px;}
.x15_c00460{left:189.750000px;}
.x60_c00460{left:190.950000px;}
.x58_c00460{left:192.900000px;}
.xa5_c00460{left:195.900000px;}
.x85_c00460{left:196.950000px;}
.x52_c00460{left:198.600000px;}
.x46_c00460{left:200.400000px;}
.xa3_c00460{left:201.450000px;}
.x1c_c00460{left:205.050000px;}
.x90_c00460{left:206.250000px;}
.x2b_c00460{left:209.400000px;}
.x40_c00460{left:210.600000px;}
.x24_c00460{left:212.400000px;}
.x3c_c00460{left:213.450000px;}
.xe_c00460{left:214.650000px;}
.x67_c00460{left:216.300000px;}
.x33_c00460{left:218.550000px;}
.x9c_c00460{left:220.350000px;}
.xb5_c00460{left:223.200000px;}
.xa8_c00460{left:226.500000px;}
.x34_c00460{left:227.850000px;}
.x59_c00460{left:229.200000px;}
.x2c_c00460{left:230.250000px;}
.xb8_c00460{left:231.750000px;}
.x64_c00460{left:234.000000px;}
.xbc_c00460{left:237.000000px;}
.x86_c00460{left:238.050000px;}
.xae_c00460{left:240.150000px;}
.x4d_c00460{left:243.300000px;}
.x47_c00460{left:244.650000px;}
.x97_c00460{left:245.700000px;}
.x35_c00460{left:246.900000px;}
.x16_c00460{left:249.150000px;}
.x81_c00460{left:251.100000px;}
.x4e_c00460{left:252.300000px;}
.x5c_c00460{left:253.350000px;}
.xb1_c00460{left:254.550000px;}
.x78_c00460{left:255.600000px;}
.xf_c00460{left:256.800000px;}
.x53_c00460{left:258.750000px;}
.x6d_c00460{left:259.800000px;}
.x61_c00460{left:261.150000px;}
.x36_c00460{left:262.350000px;}
.x4f_c00460{left:263.400000px;}
.x74_c00460{left:265.500000px;}
.xab_c00460{left:269.100000px;}
.x5d_c00460{left:270.600000px;}
.x5a_c00460{left:272.400000px;}
.x1d_c00460{left:274.500000px;}
.xad_c00460{left:276.150000px;}
.x8a_c00460{left:277.200000px;}
.x10_c00460{left:278.400000px;}
.x98_c00460{left:279.900000px;}
.xb9_c00460{left:281.400000px;}
.x65_c00460{left:282.600000px;}
.x87_c00460{left:283.800000px;}
.x82_c00460{left:285.000000px;}
.xba_c00460{left:286.800000px;}
.x25_c00460{left:288.000000px;}
.x5e_c00460{left:289.650000px;}
.x2d_c00460{left:290.700000px;}
.x72_c00460{left:291.750000px;}
.x1e_c00460{left:295.050000px;}
.x41_c00460{left:296.250000px;}
.xa6_c00460{left:298.050000px;}
.x2e_c00460{left:300.000000px;}
.x62_c00460{left:301.050000px;}
.x68_c00460{left:302.700000px;}
.x26_c00460{left:304.500000px;}
.x83_c00460{left:306.600000px;}
.x50_c00460{left:307.650000px;}
.x17_c00460{left:309.600000px;}
.x8d_c00460{left:314.250000px;}
.x54_c00460{left:315.900000px;}
.xa9_c00460{left:317.850000px;}
.x42_c00460{left:318.900000px;}
.x75_c00460{left:320.550000px;}
.x2f_c00460{left:321.600000px;}
.x7b_c00460{left:323.250000px;}
.xb6_c00460{left:324.450000px;}
.x48_c00460{left:325.950000px;}
.x1_c00460{left:327.900000px;}
.xa1_c00460{left:329.100000px;}
.xb2_c00460{left:330.150000px;}
.x69_c00460{left:331.500000px;}
.x37_c00460{left:333.300000px;}
.x27_c00460{left:335.400000px;}
.x49_c00460{left:337.500000px;}
.x4_c00460{left:339.150000px;}
.x7f_c00460{left:342.150000px;}
.x73_c00460{left:343.500000px;}
.x56_c00460{left:346.050000px;}
.x8_c00460{left:348.150000px;}
.x7c_c00460{left:349.950000px;}
.x9d_c00460{left:351.000000px;}
.x30_c00460{left:354.300000px;}
.x79_c00460{left:355.350000px;}
.x1f_c00460{left:357.750000px;}
.xbb_c00460{left:360.150000px;}
.x88_c00460{left:361.200000px;}
.x28_c00460{left:362.400000px;}
.x4a_c00460{left:363.450000px;}
.x11_c00460{left:364.800000px;}
.xb3_c00460{left:365.850000px;}
.x5_c00460{left:369.750000px;}
.x6e_c00460{left:371.400000px;}
.x91_c00460{left:372.600000px;}
.x43_c00460{left:374.700000px;}
.x9_c00460{left:375.900000px;}
.xa_c00460{left:378.000000px;}
.x18_c00460{left:379.050000px;}
.x8b_c00460{left:380.550000px;}
.xb7_c00460{left:383.250000px;}
.x38_c00460{left:384.750000px;}
.x95_c00460{left:385.800000px;}
.x12_c00460{left:388.500000px;}
.x80_c00460{left:390.450000px;}
.x9f_c00460{left:392.100000px;}
.x89_c00460{left:393.150000px;}
.x31_c00460{left:394.200000px;}
.x7d_c00460{left:395.700000px;}
.xac_c00460{left:397.500000px;}
.x19_c00460{left:398.550000px;}
.x57_c00460{left:399.750000px;}
.x99_c00460{left:401.850000px;}
.x6_c00460{left:403.950000px;}
.xb_c00460{left:406.050000px;}
.x39_c00460{left:408.150000px;}
.x157_c00460{left:435.300000px;}
.x156_c00460{left:436.350000px;}
.x106_c00460{left:438.450000px;}
.xc7_c00460{left:439.500000px;}
.x10b_c00460{left:453.450000px;}
.x14e_c00460{left:454.650000px;}
.xc3_c00460{left:456.150000px;}
.xbd_c00460{left:457.200000px;}
.xe7_c00460{left:458.400000px;}
.x135_c00460{left:465.900000px;}
.x111_c00460{left:467.700000px;}
.x161_c00460{left:470.550000px;}
.x158_c00460{left:471.900000px;}
.xcd_c00460{left:475.950000px;}
.x13e_c00460{left:477.450000px;}
.x123_c00460{left:478.650000px;}
.xc8_c00460{left:481.200000px;}
.xef_c00460{left:482.850000px;}
.xc4_c00460{left:483.900000px;}
.x2_c00460{left:485.550000px;}
.xf9_c00460{left:487.650000px;}
.x115_c00460{left:489.300000px;}
.x131_c00460{left:491.100000px;}
.xdf_c00460{left:492.150000px;}
.x150_c00460{left:493.500000px;}
.xd4_c00460{left:496.500000px;}
.xbe_c00460{left:497.850000px;}
.x149_c00460{left:498.900000px;}
.xc5_c00460{left:501.150000px;}
.xe8_c00460{left:504.150000px;}
.x13a_c00460{left:505.500000px;}
.x124_c00460{left:507.150000px;}
.x12d_c00460{left:509.700000px;}
.xdc_c00460{left:513.000000px;}
.x136_c00460{left:514.200000px;}
.xc9_c00460{left:516.150000px;}
.xbf_c00460{left:517.650000px;}
.x14a_c00460{left:519.450000px;}
.xfa_c00460{left:521.100000px;}
.x145_c00460{left:522.750000px;}
.xd5_c00460{left:525.000000px;}
.xf7_c00460{left:527.250000px;}
.x132_c00460{left:528.600000px;}
.x10c_c00460{left:530.100000px;}
.x119_c00460{left:531.450000px;}
.x159_c00460{left:532.500000px;}
.x162_c00460{left:536.850000px;}
.x143_c00460{left:537.900000px;}
.x112_c00460{left:538.950000px;}
.xfb_c00460{left:540.600000px;}
.xe0_c00460{left:542.250000px;}
.x146_c00460{left:543.600000px;}
.x10d_c00460{left:544.800000px;}
.x12a_c00460{left:546.600000px;}
.xf0_c00460{left:547.950000px;}
.x11a_c00460{left:550.500000px;}
.x126_c00460{left:552.150000px;}
.x13b_c00460{left:553.800000px;}
.x104_c00460{left:555.450000px;}
.xce_c00460{left:557.700000px;}
.x15c_c00460{left:559.050000px;}
.x107_c00460{left:561.300000px;}
.x14b_c00460{left:562.950000px;}
.xca_c00460{left:564.000000px;}
.x11b_c00460{left:565.950000px;}
.xc6_c00460{left:567.450000px;}
.x113_c00460{left:571.050000px;}
.x11e_c00460{left:572.850000px;}
.xe9_c00460{left:574.050000px;}
.xd6_c00460{left:575.100000px;}
.x10e_c00460{left:576.450000px;}
.x144_c00460{left:578.250000px;}
.xcf_c00460{left:580.350000px;}
.xf1_c00460{left:582.450000px;}
.x14c_c00460{left:584.850000px;}
.x105_c00460{left:586.050000px;}
.x11f_c00460{left:588.300000px;}
.x114_c00460{left:590.850000px;}
.x13f_c00460{left:594.450000px;}
.x10f_c00460{left:596.250000px;}
.xc0_c00460{left:597.600000px;}
.x15a_c00460{left:599.100000px;}
.x108_c00460{left:600.600000px;}
.x11c_c00460{left:603.300000px;}
.xd0_c00460{left:605.250000px;}
.x13c_c00460{left:606.300000px;}
.x152_c00460{left:607.350000px;}
.xe1_c00460{left:608.550000px;}
.x120_c00460{left:609.600000px;}
.xd7_c00460{left:610.800000px;}
.x14d_c00460{left:611.850000px;}
.xfc_c00460{left:612.900000px;}
.x14f_c00460{left:614.100000px;}
.xea_c00460{left:615.150000px;}
.xc1_c00460{left:616.350000px;}
.x11d_c00460{left:617.400000px;}
.xf2_c00460{left:619.950000px;}
.x140_c00460{left:621.450000px;}
.x15f_c00460{left:623.850000px;}
.x137_c00460{left:625.050000px;}
.xd8_c00460{left:627.750000px;}
.xd1_c00460{left:630.150000px;}
.x12e_c00460{left:633.150000px;}
.xfd_c00460{left:634.200000px;}
.x127_c00460{left:636.300000px;}
.x141_c00460{left:637.650000px;}
.xdd_c00460{left:639.750000px;}
.xcb_c00460{left:641.100000px;}
.x15b_c00460{left:643.050000px;}
.x153_c00460{left:644.400000px;}
.xf8_c00460{left:646.050000px;}
.x133_c00460{left:649.200000px;}
.xd9_c00460{left:651.450000px;}
.x155_c00460{left:654.450000px;}
.xd2_c00460{left:657.450000px;}
.xe2_c00460{left:660.000000px;}
.xeb_c00460{left:662.250000px;}
.x109_c00460{left:665.400000px;}
.x100_c00460{left:667.050000px;}
.xf3_c00460{left:670.050000px;}
.x138_c00460{left:672.900000px;}
.xda_c00460{left:674.550000px;}
.x12b_c00460{left:676.950000px;}
.x15d_c00460{left:678.300000px;}
.x128_c00460{left:680.550000px;}
.xf4_c00460{left:681.600000px;}
.xcc_c00460{left:683.250000px;}
.x15e_c00460{left:687.600000px;}
.x142_c00460{left:689.100000px;}
.xe3_c00460{left:692.400000px;}
.x151_c00460{left:694.050000px;}
.xc2_c00460{left:696.600000px;}
.xfe_c00460{left:697.950000px;}
.x160_c00460{left:699.150000px;}
.x116_c00460{left:702.450000px;}
.x101_c00460{left:704.100000px;}
.x12f_c00460{left:707.700000px;}
.x13d_c00460{left:710.400000px;}
.xe4_c00460{left:711.450000px;}
.x121_c00460{left:712.950000px;}
.x102_c00460{left:714.150000px;}
.xff_c00460{left:715.200000px;}
.xec_c00460{left:716.550000px;}
.x147_c00460{left:721.950000px;}
.xf5_c00460{left:723.000000px;}
.x10a_c00460{left:725.550000px;}
.x117_c00460{left:730.500000px;}
.x110_c00460{left:732.750000px;}
.x12c_c00460{left:734.250000px;}
.x154_c00460{left:735.450000px;}
.xde_c00460{left:738.300000px;}
.x130_c00460{left:740.850000px;}
.xe5_c00460{left:742.050000px;}
.x122_c00460{left:743.250000px;}
.xd3_c00460{left:745.350000px;}
.xed_c00460{left:747.150000px;}
.x3_c00460{left:750.150000px;}
.x129_c00460{left:751.500000px;}
.x148_c00460{left:753.300000px;}
.x125_c00460{left:754.800000px;}
.xf6_c00460{left:756.900000px;}
.xe6_c00460{left:759.300000px;}
.x118_c00460{left:760.350000px;}
.x103_c00460{left:762.450000px;}
.x134_c00460{left:764.400000px;}
.xee_c00460{left:766.200000px;}
.x139_c00460{left:770.850000px;}
.xdb_c00460{left:773.250000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.wsc_c00460{word-spacing:-12.069160pt;}
.ws3_c00460{word-spacing:-10.015649pt;}
.ws8_c00460{word-spacing:-9.444444pt;}
.ws2_c00460{word-spacing:-8.661276pt;}
.ws12_c00460{word-spacing:-8.541925pt;}
.wsb_c00460{word-spacing:-5.555556pt;}
.wsd_c00460{word-spacing:-5.384615pt;}
.ws6_c00460{word-spacing:-4.900285pt;}
.ws4_c00460{word-spacing:-4.455252pt;}
.ws1_c00460{word-spacing:-3.312102pt;}
.ws5_c00460{word-spacing:-1.699346pt;}
.ws7_c00460{word-spacing:-1.481481pt;}
.ws13_c00460{word-spacing:0.000000pt;}
.wsa_c00460{word-spacing:4.722222pt;}
.wse_c00460{word-spacing:6.334227pt;}
.ws9_c00460{word-spacing:22.339181pt;}
.ws11_c00460{word-spacing:25.382999pt;}
.wsf_c00460{word-spacing:28.666667pt;}
.ws0_c00460{word-spacing:47.970009pt;}
.ws10_c00460{word-spacing:58.947368pt;}
._0_c00460{width:35.555556pt;}
._1_c00460{width:51.659981pt;}
._2_c00460{width:62.357211pt;}
.fs2_c00460{font-size:42.666667pt;}
.fs3_c00460{font-size:48.000000pt;}
.fs4_c00460{font-size:53.333333pt;}
.fs5_c00460{font-size:58.666667pt;}
.fs6_c00460{font-size:64.000000pt;}
.fs0_c00460{font-size:74.666667pt;}
.fs1_c00460{font-size:85.333333pt;}
.y0_c00460{bottom:0.000000pt;}
.y70_c00460{bottom:157.466667pt;}
.y3c_c00460{bottom:173.600000pt;}
.y6f_c00460{bottom:173.733333pt;}
.y3b_c00460{bottom:186.400000pt;}
.y6e_c00460{bottom:189.466667pt;}
.y3a_c00460{bottom:199.200000pt;}
.y6d_c00460{bottom:205.466667pt;}
.y39_c00460{bottom:212.000000pt;}
.y6c_c00460{bottom:221.200000pt;}
.y38_c00460{bottom:224.800000pt;}
.y6b_c00460{bottom:237.466667pt;}
.y37_c00460{bottom:237.866667pt;}
.y36_c00460{bottom:250.400000pt;}
.y6a_c00460{bottom:261.066667pt;}
.y35_c00460{bottom:263.466667pt;}
.y34_c00460{bottom:276.266667pt;}
.y69_c00460{bottom:277.066667pt;}
.y33_c00460{bottom:289.066667pt;}
.y68_c00460{bottom:293.066667pt;}
.y32_c00460{bottom:301.866667pt;}
.y67_c00460{bottom:312.933333pt;}
.y31_c00460{bottom:314.666667pt;}
.y30_c00460{bottom:327.466667pt;}
.y66_c00460{bottom:340.133333pt;}
.y2f_c00460{bottom:340.533333pt;}
.y2e_c00460{bottom:356.800000pt;}
.y65_c00460{bottom:360.266667pt;}
.y2d_c00460{bottom:369.866667pt;}
.y64_c00460{bottom:380.400000pt;}
.y2c_c00460{bottom:382.400000pt;}
.y2b_c00460{bottom:394.933333pt;}
.y63_c00460{bottom:396.400000pt;}
.y2a_c00460{bottom:408.000000pt;}
.y62_c00460{bottom:412.133333pt;}
.y29_c00460{bottom:420.533333pt;}
.y61_c00460{bottom:427.866667pt;}
.y28_c00460{bottom:433.333333pt;}
.y60_c00460{bottom:444.000000pt;}
.y27_c00460{bottom:446.133333pt;}
.y5f_c00460{bottom:459.733333pt;}
.y26_c00460{bottom:461.466667pt;}
.y25_c00460{bottom:474.800000pt;}
.y5e_c00460{bottom:475.733333pt;}
.y24_c00460{bottom:487.866667pt;}
.y5d_c00460{bottom:491.733333pt;}
.y23_c00460{bottom:500.666667pt;}
.y5c_c00460{bottom:507.466667pt;}
.y22_c00460{bottom:513.733333pt;}
.y5b_c00460{bottom:523.733333pt;}
.y21_c00460{bottom:526.533333pt;}
.y20_c00460{bottom:539.066667pt;}
.y5a_c00460{bottom:539.466667pt;}
.y1f_c00460{bottom:552.533333pt;}
.y59_c00460{bottom:555.466667pt;}
.y1e_c00460{bottom:565.066667pt;}
.y58_c00460{bottom:571.466667pt;}
.y1d_c00460{bottom:577.600000pt;}
.y57_c00460{bottom:587.066667pt;}
.y1c_c00460{bottom:597.733333pt;}
.y56_c00460{bottom:602.800000pt;}
.y1b_c00460{bottom:606.666667pt;}
.y55_c00460{bottom:618.800000pt;}
.y1a_c00460{bottom:619.466667pt;}
.y19_c00460{bottom:632.266667pt;}
.y54_c00460{bottom:634.800000pt;}
.y18_c00460{bottom:645.066667pt;}
.y53_c00460{bottom:650.533333pt;}
.y17_c00460{bottom:657.866667pt;}
.y52_c00460{bottom:666.266667pt;}
.y16_c00460{bottom:670.666667pt;}
.y51_c00460{bottom:681.866667pt;}
.y15_c00460{bottom:683.200000pt;}
.y50_c00460{bottom:693.733333pt;}
.y14_c00460{bottom:696.266667pt;}
.y4f_c00460{bottom:707.200000pt;}
.y13_c00460{bottom:708.800000pt;}
.y4e_c00460{bottom:720.000000pt;}
.y12_c00460{bottom:721.600000pt;}
.y4d_c00460{bottom:732.800000pt;}
.y11_c00460{bottom:734.666667pt;}
.y4c_c00460{bottom:745.333333pt;}
.y4b_c00460{bottom:758.000000pt;}
.y4a_c00460{bottom:771.466667pt;}
.y10_c00460{bottom:778.933333pt;}
.y49_c00460{bottom:789.066667pt;}
.yf_c00460{bottom:794.933333pt;}
.y48_c00460{bottom:804.800000pt;}
.y47_c00460{bottom:820.533333pt;}
.ye_c00460{bottom:821.733333pt;}
.y46_c00460{bottom:836.533333pt;}
.yd_c00460{bottom:841.600000pt;}
.y45_c00460{bottom:852.533333pt;}
.yc_c00460{bottom:858.533333pt;}
.yb_c00460{bottom:874.533333pt;}
.y44_c00460{bottom:876.133333pt;}
.ya_c00460{bottom:890.266667pt;}
.y43_c00460{bottom:892.133333pt;}
.y42_c00460{bottom:908.133333pt;}
.y9_c00460{bottom:909.066667pt;}
.y41_c00460{bottom:923.866667pt;}
.y8_c00460{bottom:925.733333pt;}
.y40_c00460{bottom:939.866667pt;}
.y7_c00460{bottom:942.000000pt;}
.y6_c00460{bottom:957.733333pt;}
.y3f_c00460{bottom:959.333333pt;}
.y5_c00460{bottom:981.066667pt;}
.y3e_c00460{bottom:986.666667pt;}
.y4_c00460{bottom:993.600000pt;}
.y3d_c00460{bottom:1002.933333pt;}
.y3_c00460{bottom:1005.466667pt;}
.y1_c00460{bottom:1026.533333pt;}
.y2_c00460{bottom:1027.200000pt;}
.h4_c00460{height:42.666667pt;}
.h5_c00460{height:48.000000pt;}
.h6_c00460{height:53.333333pt;}
.h7_c00460{height:58.666667pt;}
.h8_c00460{height:64.000000pt;}
.h2_c00460{height:74.666667pt;}
.h3_c00460{height:85.333333pt;}
.h1_c00460{height:1129.333333pt;}
.h0_c00460{height:1129.599935pt;}
.w0_c00460{width:851.840007pt;}
.w1_c00460{width:852.000000pt;}
.x0_c00460{left:0.000000pt;}
.x93_c00460{left:69.600000pt;}
.x7e_c00460{left:70.800000pt;}
.x51_c00460{left:71.866667pt;}
.xc_c00460{left:73.333333pt;}
.xaa_c00460{left:78.133333pt;}
.x76_c00460{left:79.066667pt;}
.xa4_c00460{left:84.800000pt;}
.x55_c00460{left:85.733333pt;}
.x4b_c00460{left:86.666667pt;}
.x1a_c00460{left:88.400000pt;}
.x13_c00460{left:89.600000pt;}
.x6a_c00460{left:92.133333pt;}
.x66_c00460{left:93.466667pt;}
.xa7_c00460{left:94.666667pt;}
.x3d_c00460{left:96.400000pt;}
.xb0_c00460{left:97.600000pt;}
.x7_c00460{left:98.533333pt;}
.x7a_c00460{left:100.133333pt;}
.x77_c00460{left:103.333333pt;}
.x22_c00460{left:104.266667pt;}
.x8f_c00460{left:105.866667pt;}
.x4c_c00460{left:107.200000pt;}
.x8e_c00460{left:109.733333pt;}
.x96_c00460{left:111.866667pt;}
.x1b_c00460{left:113.066667pt;}
.x6f_c00460{left:114.666667pt;}
.xb4_c00460{left:115.866667pt;}
.x44_c00460{left:117.066667pt;}
.x29_c00460{left:119.600000pt;}
.xa0_c00460{left:120.933333pt;}
.x8c_c00460{left:123.200000pt;}
.x3e_c00460{left:125.466667pt;}
.xaf_c00460{left:126.933333pt;}
.x32_c00460{left:128.000000pt;}
.x14_c00460{left:130.266667pt;}
.x70_c00460{left:131.333333pt;}
.x9a_c00460{left:134.133333pt;}
.x3f_c00460{left:135.066667pt;}
.x3a_c00460{left:136.266667pt;}
.x2a_c00460{left:138.133333pt;}
.x45_c00460{left:139.733333pt;}
.x5f_c00460{left:141.200000pt;}
.x84_c00460{left:142.400000pt;}
.x6b_c00460{left:143.600000pt;}
.x20_c00460{left:144.533333pt;}
.x94_c00460{left:148.000000pt;}
.x92_c00460{left:149.200000pt;}
.xd_c00460{left:150.133333pt;}
.x63_c00460{left:151.066667pt;}
.x71_c00460{left:152.133333pt;}
.x3b_c00460{left:154.533333pt;}
.x9b_c00460{left:157.466667pt;}
.x6c_c00460{left:159.866667pt;}
.x9e_c00460{left:161.600000pt;}
.x23_c00460{left:162.533333pt;}
.x21_c00460{left:163.733333pt;}
.xa2_c00460{left:164.933333pt;}
.x5b_c00460{left:166.666667pt;}
.x15_c00460{left:168.666667pt;}
.x60_c00460{left:169.733333pt;}
.x58_c00460{left:171.466667pt;}
.xa5_c00460{left:174.133333pt;}
.x85_c00460{left:175.066667pt;}
.x52_c00460{left:176.533333pt;}
.x46_c00460{left:178.133333pt;}
.xa3_c00460{left:179.066667pt;}
.x1c_c00460{left:182.266667pt;}
.x90_c00460{left:183.333333pt;}
.x2b_c00460{left:186.133333pt;}
.x40_c00460{left:187.200000pt;}
.x24_c00460{left:188.800000pt;}
.x3c_c00460{left:189.733333pt;}
.xe_c00460{left:190.800000pt;}
.x67_c00460{left:192.266667pt;}
.x33_c00460{left:194.266667pt;}
.x9c_c00460{left:195.866667pt;}
.xb5_c00460{left:198.400000pt;}
.xa8_c00460{left:201.333333pt;}
.x34_c00460{left:202.533333pt;}
.x59_c00460{left:203.733333pt;}
.x2c_c00460{left:204.666667pt;}
.xb8_c00460{left:206.000000pt;}
.x64_c00460{left:208.000000pt;}
.xbc_c00460{left:210.666667pt;}
.x86_c00460{left:211.600000pt;}
.xae_c00460{left:213.466667pt;}
.x4d_c00460{left:216.266667pt;}
.x47_c00460{left:217.466667pt;}
.x97_c00460{left:218.400000pt;}
.x35_c00460{left:219.466667pt;}
.x16_c00460{left:221.466667pt;}
.x81_c00460{left:223.200000pt;}
.x4e_c00460{left:224.266667pt;}
.x5c_c00460{left:225.200000pt;}
.xb1_c00460{left:226.266667pt;}
.x78_c00460{left:227.200000pt;}
.xf_c00460{left:228.266667pt;}
.x53_c00460{left:230.000000pt;}
.x6d_c00460{left:230.933333pt;}
.x61_c00460{left:232.133333pt;}
.x36_c00460{left:233.200000pt;}
.x4f_c00460{left:234.133333pt;}
.x74_c00460{left:236.000000pt;}
.xab_c00460{left:239.200000pt;}
.x5d_c00460{left:240.533333pt;}
.x5a_c00460{left:242.133333pt;}
.x1d_c00460{left:244.000000pt;}
.xad_c00460{left:245.466667pt;}
.x8a_c00460{left:246.400000pt;}
.x10_c00460{left:247.466667pt;}
.x98_c00460{left:248.800000pt;}
.xb9_c00460{left:250.133333pt;}
.x65_c00460{left:251.200000pt;}
.x87_c00460{left:252.266667pt;}
.x82_c00460{left:253.333333pt;}
.xba_c00460{left:254.933333pt;}
.x25_c00460{left:256.000000pt;}
.x5e_c00460{left:257.466667pt;}
.x2d_c00460{left:258.400000pt;}
.x72_c00460{left:259.333333pt;}
.x1e_c00460{left:262.266667pt;}
.x41_c00460{left:263.333333pt;}
.xa6_c00460{left:264.933333pt;}
.x2e_c00460{left:266.666667pt;}
.x62_c00460{left:267.600000pt;}
.x68_c00460{left:269.066667pt;}
.x26_c00460{left:270.666667pt;}
.x83_c00460{left:272.533333pt;}
.x50_c00460{left:273.466667pt;}
.x17_c00460{left:275.200000pt;}
.x8d_c00460{left:279.333333pt;}
.x54_c00460{left:280.800000pt;}
.xa9_c00460{left:282.533333pt;}
.x42_c00460{left:283.466667pt;}
.x75_c00460{left:284.933333pt;}
.x2f_c00460{left:285.866667pt;}
.x7b_c00460{left:287.333333pt;}
.xb6_c00460{left:288.400000pt;}
.x48_c00460{left:289.733333pt;}
.x1_c00460{left:291.466667pt;}
.xa1_c00460{left:292.533333pt;}
.xb2_c00460{left:293.466667pt;}
.x69_c00460{left:294.666667pt;}
.x37_c00460{left:296.266667pt;}
.x27_c00460{left:298.133333pt;}
.x49_c00460{left:300.000000pt;}
.x4_c00460{left:301.466667pt;}
.x7f_c00460{left:304.133333pt;}
.x73_c00460{left:305.333333pt;}
.x56_c00460{left:307.600000pt;}
.x8_c00460{left:309.466667pt;}
.x7c_c00460{left:311.066667pt;}
.x9d_c00460{left:312.000000pt;}
.x30_c00460{left:314.933333pt;}
.x79_c00460{left:315.866667pt;}
.x1f_c00460{left:318.000000pt;}
.xbb_c00460{left:320.133333pt;}
.x88_c00460{left:321.066667pt;}
.x28_c00460{left:322.133333pt;}
.x4a_c00460{left:323.066667pt;}
.x11_c00460{left:324.266667pt;}
.xb3_c00460{left:325.200000pt;}
.x5_c00460{left:328.666667pt;}
.x6e_c00460{left:330.133333pt;}
.x91_c00460{left:331.200000pt;}
.x43_c00460{left:333.066667pt;}
.x9_c00460{left:334.133333pt;}
.xa_c00460{left:336.000000pt;}
.x18_c00460{left:336.933333pt;}
.x8b_c00460{left:338.266667pt;}
.xb7_c00460{left:340.666667pt;}
.x38_c00460{left:342.000000pt;}
.x95_c00460{left:342.933333pt;}
.x12_c00460{left:345.333333pt;}
.x80_c00460{left:347.066667pt;}
.x9f_c00460{left:348.533333pt;}
.x89_c00460{left:349.466667pt;}
.x31_c00460{left:350.400000pt;}
.x7d_c00460{left:351.733333pt;}
.xac_c00460{left:353.333333pt;}
.x19_c00460{left:354.266667pt;}
.x57_c00460{left:355.333333pt;}
.x99_c00460{left:357.200000pt;}
.x6_c00460{left:359.066667pt;}
.xb_c00460{left:360.933333pt;}
.x39_c00460{left:362.800000pt;}
.x157_c00460{left:386.933333pt;}
.x156_c00460{left:387.866667pt;}
.x106_c00460{left:389.733333pt;}
.xc7_c00460{left:390.666667pt;}
.x10b_c00460{left:403.066667pt;}
.x14e_c00460{left:404.133333pt;}
.xc3_c00460{left:405.466667pt;}
.xbd_c00460{left:406.400000pt;}
.xe7_c00460{left:407.466667pt;}
.x135_c00460{left:414.133333pt;}
.x111_c00460{left:415.733333pt;}
.x161_c00460{left:418.266667pt;}
.x158_c00460{left:419.466667pt;}
.xcd_c00460{left:423.066667pt;}
.x13e_c00460{left:424.400000pt;}
.x123_c00460{left:425.466667pt;}
.xc8_c00460{left:427.733333pt;}
.xef_c00460{left:429.200000pt;}
.xc4_c00460{left:430.133333pt;}
.x2_c00460{left:431.600000pt;}
.xf9_c00460{left:433.466667pt;}
.x115_c00460{left:434.933333pt;}
.x131_c00460{left:436.533333pt;}
.xdf_c00460{left:437.466667pt;}
.x150_c00460{left:438.666667pt;}
.xd4_c00460{left:441.333333pt;}
.xbe_c00460{left:442.533333pt;}
.x149_c00460{left:443.466667pt;}
.xc5_c00460{left:445.466667pt;}
.xe8_c00460{left:448.133333pt;}
.x13a_c00460{left:449.333333pt;}
.x124_c00460{left:450.800000pt;}
.x12d_c00460{left:453.066667pt;}
.xdc_c00460{left:456.000000pt;}
.x136_c00460{left:457.066667pt;}
.xc9_c00460{left:458.800000pt;}
.xbf_c00460{left:460.133333pt;}
.x14a_c00460{left:461.733333pt;}
.xfa_c00460{left:463.200000pt;}
.x145_c00460{left:464.666667pt;}
.xd5_c00460{left:466.666667pt;}
.xf7_c00460{left:468.666667pt;}
.x132_c00460{left:469.866667pt;}
.x10c_c00460{left:471.200000pt;}
.x119_c00460{left:472.400000pt;}
.x159_c00460{left:473.333333pt;}
.x162_c00460{left:477.200000pt;}
.x143_c00460{left:478.133333pt;}
.x112_c00460{left:479.066667pt;}
.xfb_c00460{left:480.533333pt;}
.xe0_c00460{left:482.000000pt;}
.x146_c00460{left:483.200000pt;}
.x10d_c00460{left:484.266667pt;}
.x12a_c00460{left:485.866667pt;}
.xf0_c00460{left:487.066667pt;}
.x11a_c00460{left:489.333333pt;}
.x126_c00460{left:490.800000pt;}
.x13b_c00460{left:492.266667pt;}
.x104_c00460{left:493.733333pt;}
.xce_c00460{left:495.733333pt;}
.x15c_c00460{left:496.933333pt;}
.x107_c00460{left:498.933333pt;}
.x14b_c00460{left:500.400000pt;}
.xca_c00460{left:501.333333pt;}
.x11b_c00460{left:503.066667pt;}
.xc6_c00460{left:504.400000pt;}
.x113_c00460{left:507.600000pt;}
.x11e_c00460{left:509.200000pt;}
.xe9_c00460{left:510.266667pt;}
.xd6_c00460{left:511.200000pt;}
.x10e_c00460{left:512.400000pt;}
.x144_c00460{left:514.000000pt;}
.xcf_c00460{left:515.866667pt;}
.xf1_c00460{left:517.733333pt;}
.x14c_c00460{left:519.866667pt;}
.x105_c00460{left:520.933333pt;}
.x11f_c00460{left:522.933333pt;}
.x114_c00460{left:525.200000pt;}
.x13f_c00460{left:528.400000pt;}
.x10f_c00460{left:530.000000pt;}
.xc0_c00460{left:531.200000pt;}
.x15a_c00460{left:532.533333pt;}
.x108_c00460{left:533.866667pt;}
.x11c_c00460{left:536.266667pt;}
.xd0_c00460{left:538.000000pt;}
.x13c_c00460{left:538.933333pt;}
.x152_c00460{left:539.866667pt;}
.xe1_c00460{left:540.933333pt;}
.x120_c00460{left:541.866667pt;}
.xd7_c00460{left:542.933333pt;}
.x14d_c00460{left:543.866667pt;}
.xfc_c00460{left:544.800000pt;}
.x14f_c00460{left:545.866667pt;}
.xea_c00460{left:546.800000pt;}
.xc1_c00460{left:547.866667pt;}
.x11d_c00460{left:548.800000pt;}
.xf2_c00460{left:551.066667pt;}
.x140_c00460{left:552.400000pt;}
.x15f_c00460{left:554.533333pt;}
.x137_c00460{left:555.600000pt;}
.xd8_c00460{left:558.000000pt;}
.xd1_c00460{left:560.133333pt;}
.x12e_c00460{left:562.800000pt;}
.xfd_c00460{left:563.733333pt;}
.x127_c00460{left:565.600000pt;}
.x141_c00460{left:566.800000pt;}
.xdd_c00460{left:568.666667pt;}
.xcb_c00460{left:569.866667pt;}
.x15b_c00460{left:571.600000pt;}
.x153_c00460{left:572.800000pt;}
.xf8_c00460{left:574.266667pt;}
.x133_c00460{left:577.066667pt;}
.xd9_c00460{left:579.066667pt;}
.x155_c00460{left:581.733333pt;}
.xd2_c00460{left:584.400000pt;}
.xe2_c00460{left:586.666667pt;}
.xeb_c00460{left:588.666667pt;}
.x109_c00460{left:591.466667pt;}
.x100_c00460{left:592.933333pt;}
.xf3_c00460{left:595.600000pt;}
.x138_c00460{left:598.133333pt;}
.xda_c00460{left:599.600000pt;}
.x12b_c00460{left:601.733333pt;}
.x15d_c00460{left:602.933333pt;}
.x128_c00460{left:604.933333pt;}
.xf4_c00460{left:605.866667pt;}
.xcc_c00460{left:607.333333pt;}
.x15e_c00460{left:611.200000pt;}
.x142_c00460{left:612.533333pt;}
.xe3_c00460{left:615.466667pt;}
.x151_c00460{left:616.933333pt;}
.xc2_c00460{left:619.200000pt;}
.xfe_c00460{left:620.400000pt;}
.x160_c00460{left:621.466667pt;}
.x116_c00460{left:624.400000pt;}
.x101_c00460{left:625.866667pt;}
.x12f_c00460{left:629.066667pt;}
.x13d_c00460{left:631.466667pt;}
.xe4_c00460{left:632.400000pt;}
.x121_c00460{left:633.733333pt;}
.x102_c00460{left:634.800000pt;}
.xff_c00460{left:635.733333pt;}
.xec_c00460{left:636.933333pt;}
.x147_c00460{left:641.733333pt;}
.xf5_c00460{left:642.666667pt;}
.x10a_c00460{left:644.933333pt;}
.x117_c00460{left:649.333333pt;}
.x110_c00460{left:651.333333pt;}
.x12c_c00460{left:652.666667pt;}
.x154_c00460{left:653.733333pt;}
.xde_c00460{left:656.266667pt;}
.x130_c00460{left:658.533333pt;}
.xe5_c00460{left:659.600000pt;}
.x122_c00460{left:660.666667pt;}
.xd3_c00460{left:662.533333pt;}
.xed_c00460{left:664.133333pt;}
.x3_c00460{left:666.800000pt;}
.x129_c00460{left:668.000000pt;}
.x148_c00460{left:669.600000pt;}
.x125_c00460{left:670.933333pt;}
.xf6_c00460{left:672.800000pt;}
.xe6_c00460{left:674.933333pt;}
.x118_c00460{left:675.866667pt;}
.x103_c00460{left:677.733333pt;}
.x134_c00460{left:679.466667pt;}
.xee_c00460{left:681.066667pt;}
.x139_c00460{left:685.200000pt;}
.xdb_c00460{left:687.333333pt;}
}





/* 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_c00461 {
    display:none;
  }
  .loading-indicator_c00461.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00461 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_c00461 { 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_c00461" -> "#page-container .classname_c00461")
 */
.pf_c00461 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00461 { /* 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_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00461 { /* 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_c00461 { /* 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_c00461 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00461 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00461 {overflow:visible;}
  }
}
.c_c00461 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00461 { /* 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_c00461:after { /* webkit #35443 */
  content: '';
}
.t_c00461:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00461 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 */
}
.__c00461 { /* 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_c00461 { /* info for Javascript */
  display:none;
}
.l_c00461 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00461 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00461 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00461: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_c00461 {
    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_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00461.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_c00461 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00461;src:url('chunks/assets/font_4a04c8a26d7078751013c7d1.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.000000;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;}
.mdc_c00461{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m117_c00461{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00461{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00461{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00461{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00461{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m47_c00461{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m62_c00461{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m108_c00461{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00461{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00461{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m18_c00461{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00461{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00461{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00461{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00461{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00461{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00461{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m93_c00461{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00461{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m88_c00461{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00461{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00461{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.med_c00461{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m75_c00461{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m34_c00461{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00461{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00461{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00461{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md6_c00461{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.md7_c00461{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.md8_c00461{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m52_c00461{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00461{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m118_c00461{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mec_c00461{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m20_c00461{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00461{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m76_c00461{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md1_c00461{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00461{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00461{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m37_c00461{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00461{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m124_c00461{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00461{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00461{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00461{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00461{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00461{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m79_c00461{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m24_c00461{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00461{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m35_c00461{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m71_c00461{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.md4_c00461{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me_c00461{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mef_c00461{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.md5_c00461{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00461{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.md_c00461{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me4_c00461{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m114_c00461{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00461{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m21_c00461{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00461{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.md9_c00461{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m87_c00461{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma_c00461{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00461{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00461{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m96_c00461{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m44_c00461{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m74_c00461{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00461{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m12_c00461{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00461{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00461{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00461{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00461{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m119_c00461{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m109_c00461{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00461{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00461{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me5_c00461{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mac_c00461{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m0_c00461{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m70_c00461{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00461{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mff_c00461{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m41_c00461{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m38_c00461{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m27_c00461{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m65_c00461{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m46_c00461{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00461{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00461{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00461{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00461{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mda_c00461{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m43_c00461{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00461{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m28_c00461{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m26_c00461{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00461{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00461{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00461{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m53_c00461{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00461{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00461{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00461{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m73_c00461{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m31_c00461{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00461{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00461{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m36_c00461{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00461{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m45_c00461{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00461{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m39_c00461{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m123_c00461{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m30_c00461{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m85_c00461{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m120_c00461{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00461{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m40_c00461{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00461{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m92_c00461{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m60_c00461{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mae_c00461{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m13_c00461{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00461{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m23_c00461{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m83_c00461{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me9_c00461{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m63_c00461{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m29_c00461{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00461{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.maf_c00461{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m10_c00461{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00461{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m54_c00461{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00461{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00461{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mba_c00461{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00461{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00461{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m81_c00461{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00461{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00461{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m66_c00461{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m107_c00461{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m89_c00461{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00461{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m91_c00461{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m32_c00461{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf_c00461{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mad_c00461{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00461{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00461{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md2_c00461{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m25_c00461{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00461{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00461{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m103_c00461{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me8_c00461{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00461{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00461{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00461{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00461{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m19_c00461{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00461{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00461{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00461{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00461{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m8_c00461{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.me6_c00461{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00461{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m86_c00461{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m11_c00461{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00461{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc_c00461{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m22_c00461{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m78_c00461{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m68_c00461{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m14_c00461{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00461{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00461{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m95_c00461{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00461{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m128_c00461{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00461{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00461{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m116_c00461{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00461{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m84_c00461{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m90_c00461{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m100_c00461{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m16_c00461{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m111_c00461{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m80_c00461{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m33_c00461{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.maa_c00461{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m125_c00461{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m56_c00461{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m49_c00461{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m9_c00461{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00461{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00461{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00461{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00461{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m72_c00461{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me3_c00461{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m98_c00461{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mca_c00461{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m57_c00461{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00461{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md3_c00461{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m129_c00461{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00461{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m15_c00461{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m102_c00461{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00461{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00461{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb_c00461{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m106_c00461{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00461{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.me7_c00461{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me0_c00461{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3_c00461{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.meb_c00461{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m17_c00461{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00461{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00461{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m115_c00461{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m5_c00461{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m64_c00461{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mea_c00461{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00461{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m67_c00461{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mce_c00461{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m42_c00461{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7_c00461{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00461{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00461{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m110_c00461{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00461{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m126_c00461{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m94_c00461{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00461{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md0_c00461{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m97_c00461{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m122_c00461{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00461{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00461{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m127_c00461{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00461{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mee_c00461{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00461{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00461{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00461{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00461{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00461{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mab_c00461{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00461{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00461{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00461{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m121_c00461{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00461{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m61_c00461{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m55_c00461{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m113_c00461{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m82_c00461{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m51_c00461{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.me2_c00461{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m99_c00461{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00461{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m77_c00461{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m105_c00461{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m104_c00461{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m112_c00461{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mde_c00461{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m48_c00461{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m50_c00461{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00461{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m101_c00461{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m59_c00461{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00461{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.m6_c00461{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.me1_c00461{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00461{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00461{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00461{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00461{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00461{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m58_c00461{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls0_c00461{letter-spacing:0.000000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{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__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00461{word-spacing:-14.307058px;}
.ws1_c00461{word-spacing:-12.130277px;}
.ws9_c00461{word-spacing:-8.333333px;}
.ws6_c00461{word-spacing:-7.631579px;}
.wsc_c00461{word-spacing:-6.684783px;}
.ws10_c00461{word-spacing:-5.138889px;}
.ws7_c00461{word-spacing:-2.962963px;}
.ws2_c00461{word-spacing:-2.942779px;}
.ws11_c00461{word-spacing:0.000000px;}
.ws0_c00461{word-spacing:3.062827px;}
.ws5_c00461{word-spacing:7.631579px;}
.ws4_c00461{word-spacing:8.823529px;}
.ws3_c00461{word-spacing:10.294118px;}
.wsf_c00461{word-spacing:14.467049px;}
.wse_c00461{word-spacing:22.142857px;}
.wsa_c00461{word-spacing:25.714286px;}
.wsb_c00461{word-spacing:34.642857px;}
.wsd_c00461{word-spacing:61.250000px;}
._0_c00461{width:59.285714px;}
._1_c00461{width:236.071429px;}
.fc0_c00461{color:transparent;}
.fs6_c00461{font-size:48.000000px;}
.fs5_c00461{font-size:54.000000px;}
.fs2_c00461{font-size:60.000000px;}
.fs3_c00461{font-size:66.000000px;}
.fs4_c00461{font-size:72.000000px;}
.fs1_c00461{font-size:84.000000px;}
.fs0_c00461{font-size:108.000000px;}
.y0_c00461{bottom:0.000000px;}
.y74_c00461{bottom:189.750000px;}
.y38_c00461{bottom:194.700000px;}
.y73_c00461{bottom:207.300000px;}
.y37_c00461{bottom:209.100000px;}
.y36_c00461{bottom:223.350000px;}
.y72_c00461{bottom:225.600000px;}
.y35_c00461{bottom:237.450000px;}
.y71_c00461{bottom:243.900000px;}
.y34_c00461{bottom:251.850000px;}
.y70_c00461{bottom:261.150000px;}
.y33_c00461{bottom:266.250000px;}
.y6f_c00461{bottom:279.900000px;}
.y32_c00461{bottom:280.650000px;}
.y31_c00461{bottom:294.000000px;}
.y6e_c00461{bottom:297.900000px;}
.y30_c00461{bottom:308.400000px;}
.y6d_c00461{bottom:315.900000px;}
.y2f_c00461{bottom:322.800000px;}
.y6c_c00461{bottom:333.600000px;}
.y2e_c00461{bottom:336.900000px;}
.y2d_c00461{bottom:351.000000px;}
.y6b_c00461{bottom:351.300000px;}
.y2c_c00461{bottom:365.700000px;}
.y6a_c00461{bottom:369.600000px;}
.y2b_c00461{bottom:379.350000px;}
.y69_c00461{bottom:387.300000px;}
.y2a_c00461{bottom:393.450000px;}
.y68_c00461{bottom:406.800000px;}
.y29_c00461{bottom:407.850000px;}
.y28_c00461{bottom:422.400000px;}
.y67_c00461{bottom:423.300000px;}
.y27_c00461{bottom:436.800000px;}
.y66_c00461{bottom:441.300000px;}
.y26_c00461{bottom:451.200000px;}
.y65_c00461{bottom:459.300000px;}
.y25_c00461{bottom:465.900000px;}
.y64_c00461{bottom:477.300000px;}
.y24_c00461{bottom:479.550000px;}
.y23_c00461{bottom:493.950000px;}
.y63_c00461{bottom:494.550000px;}
.y39_c00461{bottom:495.750000px;}
.y22_c00461{bottom:508.350000px;}
.y62_c00461{bottom:513.300000px;}
.y21_c00461{bottom:522.750000px;}
.y61_c00461{bottom:531.300000px;}
.y20_c00461{bottom:537.150000px;}
.y60_c00461{bottom:549.000000px;}
.y1f_c00461{bottom:551.850000px;}
.y1e_c00461{bottom:565.950000px;}
.y5f_c00461{bottom:567.000000px;}
.y1d_c00461{bottom:580.350000px;}
.y5e_c00461{bottom:584.700000px;}
.y1c_c00461{bottom:594.750000px;}
.y5d_c00461{bottom:602.700000px;}
.y1b_c00461{bottom:609.150000px;}
.y5c_c00461{bottom:621.000000px;}
.y5b_c00461{bottom:639.000000px;}
.y1a_c00461{bottom:646.500000px;}
.y5a_c00461{bottom:657.000000px;}
.y19_c00461{bottom:664.500000px;}
.y59_c00461{bottom:674.700000px;}
.y18_c00461{bottom:682.500000px;}
.y58_c00461{bottom:696.150000px;}
.y17_c00461{bottom:700.500000px;}
.y57_c00461{bottom:709.500000px;}
.y16_c00461{bottom:718.200000px;}
.y56_c00461{bottom:723.900000px;}
.y15_c00461{bottom:736.500000px;}
.y55_c00461{bottom:738.000000px;}
.y54_c00461{bottom:753.150000px;}
.y14_c00461{bottom:754.200000px;}
.y53_c00461{bottom:768.300000px;}
.y13_c00461{bottom:772.950000px;}
.y52_c00461{bottom:783.000000px;}
.y12_c00461{bottom:791.250000px;}
.y51_c00461{bottom:797.400000px;}
.y50_c00461{bottom:810.750000px;}
.y11_c00461{bottom:811.800000px;}
.y4f_c00461{bottom:826.200000px;}
.y4e_c00461{bottom:840.600000px;}
.y10_c00461{bottom:842.850000px;}
.y4d_c00461{bottom:855.000000px;}
.yf_c00461{bottom:861.150000px;}
.y4c_c00461{bottom:868.950000px;}
.ye_c00461{bottom:879.150000px;}
.y4b_c00461{bottom:883.050000px;}
.y4_c00461{bottom:896.700000px;}
.y4a_c00461{bottom:911.100000px;}
.y49_c00461{bottom:912.300000px;}
.y3_c00461{bottom:919.050000px;}
.y48_c00461{bottom:927.000000px;}
.y3a_c00461{bottom:929.550000px;}
.yd_c00461{bottom:941.100000px;}
.y47_c00461{bottom:942.450000px;}
.yc_c00461{bottom:959.100000px;}
.y46_c00461{bottom:961.500000px;}
.yb_c00461{bottom:977.400000px;}
.y45_c00461{bottom:979.500000px;}
.ya_c00461{bottom:995.100000px;}
.y44_c00461{bottom:997.500000px;}
.y9_c00461{bottom:1013.100000px;}
.y43_c00461{bottom:1015.200000px;}
.y8_c00461{bottom:1031.100000px;}
.y42_c00461{bottom:1033.200000px;}
.y7_c00461{bottom:1048.950000px;}
.y41_c00461{bottom:1051.200000px;}
.y6_c00461{bottom:1066.950000px;}
.y40_c00461{bottom:1069.500000px;}
.y5_c00461{bottom:1084.650000px;}
.y3f_c00461{bottom:1086.900000px;}
.y3c_c00461{bottom:1102.650000px;}
.y3e_c00461{bottom:1109.100000px;}
.y3d_c00461{bottom:1127.100000px;}
.y3b_c00461{bottom:1127.550000px;}
.y1_c00461{bottom:1150.500000px;}
.y2_c00461{bottom:1153.050000px;}
.h8_c00461{height:48.000000px;}
.h7_c00461{height:54.000000px;}
.h4_c00461{height:60.000000px;}
.h5_c00461{height:66.000000px;}
.h6_c00461{height:72.000000px;}
.h3_c00461{height:84.000000px;}
.h2_c00461{height:108.000000px;}
.h1_c00461{height:1268.250000px;}
.h0_c00461{height:1268.279937px;}
.w0_c00461{width:958.320007px;}
.w1_c00461{width:958.500000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:179.250000px;}
.xc4_c00461{left:181.200000px;}
.x3_c00461{left:183.600000px;}
.x50_c00461{left:185.700000px;}
.x72_c00461{left:188.100000px;}
.x7c_c00461{left:189.300000px;}
.x8e_c00461{left:191.100000px;}
.x9a_c00461{left:192.150000px;}
.xa9_c00461{left:193.650000px;}
.xb0_c00461{left:195.000000px;}
.xb_c00461{left:199.050000px;}
.x2b_c00461{left:201.000000px;}
.x4a_c00461{left:202.350000px;}
.x5a_c00461{left:204.000000px;}
.x93_c00461{left:206.250000px;}
.xb1_c00461{left:207.300000px;}
.x21_c00461{left:209.550000px;}
.x86_c00461{left:210.600000px;}
.x9b_c00461{left:212.700000px;}
.xaa_c00461{left:213.750000px;}
.xa0_c00461{left:215.250000px;}
.x97_c00461{left:216.450000px;}
.xbb_c00461{left:218.100000px;}
.x46_c00461{left:219.300000px;}
.x53_c00461{left:221.700000px;}
.x43_c00461{left:223.950000px;}
.x68_c00461{left:225.600000px;}
.x87_c00461{left:227.550000px;}
.x51_c00461{left:229.950000px;}
.xab_c00461{left:231.450000px;}
.x22_c00461{left:232.650000px;}
.x2c_c00461{left:234.450000px;}
.xb5_c00461{left:236.850000px;}
.x3e_c00461{left:238.050000px;}
.x32_c00461{left:241.500000px;}
.x4_c00461{left:243.000000px;}
.x7f_c00461{left:244.050000px;}
.x83_c00461{left:245.550000px;}
.x65_c00461{left:246.900000px;}
.x89_c00461{left:249.000000px;}
.x5_c00461{left:250.200000px;}
.x62_c00461{left:252.300000px;}
.x23_c00461{left:253.500000px;}
.x7a_c00461{left:254.850000px;}
.x19_c00461{left:256.200000px;}
.x3f_c00461{left:257.550000px;}
.x80_c00461{left:258.750000px;}
.x70_c00461{left:262.500000px;}
.x9e_c00461{left:263.850000px;}
.x7b_c00461{left:264.900000px;}
.x8f_c00461{left:266.400000px;}
.x52_c00461{left:267.750000px;}
.x73_c00461{left:269.550000px;}
.xb3_c00461{left:270.900000px;}
.x12_c00461{left:273.000000px;}
.x4e_c00461{left:274.200000px;}
.xa5_c00461{left:276.450000px;}
.xc_c00461{left:278.250000px;}
.x84_c00461{left:281.550000px;}
.x5f_c00461{left:283.650000px;}
.x44_c00461{left:284.850000px;}
.x1a_c00461{left:286.500000px;}
.x54_c00461{left:288.000000px;}
.x90_c00461{left:290.100000px;}
.x38_c00461{left:292.050000px;}
.x6_c00461{left:293.100000px;}
.xb7_c00461{left:294.300000px;}
.xd_c00461{left:296.550000px;}
.x81_c00461{left:297.600000px;}
.x8a_c00461{left:299.400000px;}
.x2d_c00461{left:303.900000px;}
.xa6_c00461{left:307.350000px;}
.x24_c00461{left:308.550000px;}
.x91_c00461{left:309.900000px;}
.xac_c00461{left:311.100000px;}
.x55_c00461{left:312.450000px;}
.x39_c00461{left:313.950000px;}
.xad_c00461{left:315.150000px;}
.x40_c00461{left:316.200000px;}
.x25_c00461{left:317.850000px;}
.x7_c00461{left:319.800000px;}
.xa7_c00461{left:321.000000px;}
.x6d_c00461{left:322.650000px;}
.x47_c00461{left:323.700000px;}
.x4b_c00461{left:324.900000px;}
.x69_c00461{left:326.400000px;}
.xe_c00461{left:327.450000px;}
.x8b_c00461{left:328.950000px;}
.x9c_c00461{left:330.450000px;}
.x74_c00461{left:332.850000px;}
.x58_c00461{left:334.350000px;}
.x1b_c00461{left:336.900000px;}
.x4f_c00461{left:337.950000px;}
.x13_c00461{left:339.600000px;}
.x8_c00461{left:341.400000px;}
.x33_c00461{left:343.050000px;}
.x26_c00461{left:344.100000px;}
.x98_c00461{left:347.400000px;}
.x1c_c00461{left:348.750000px;}
.x8c_c00461{left:350.250000px;}
.x60_c00461{left:352.800000px;}
.x45_c00461{left:354.000000px;}
.x75_c00461{left:358.050000px;}
.x82_c00461{left:360.600000px;}
.x14_c00461{left:363.000000px;}
.xc3_c00461{left:364.500000px;}
.x27_c00461{left:366.000000px;}
.x1d_c00461{left:368.550000px;}
.x56_c00461{left:369.750000px;}
.x3a_c00461{left:372.900000px;}
.x6a_c00461{left:376.800000px;}
.x5b_c00461{left:378.000000px;}
.x4c_c00461{left:380.700000px;}
.x2e_c00461{left:382.650000px;}
.xb9_c00461{left:384.300000px;}
.x28_c00461{left:386.100000px;}
.x59_c00461{left:387.300000px;}
.x3b_c00461{left:389.400000px;}
.xf_c00461{left:390.450000px;}
.x63_c00461{left:391.650000px;}
.x15_c00461{left:393.600000px;}
.xb8_c00461{left:394.650000px;}
.x9d_c00461{left:396.750000px;}
.x6b_c00461{left:398.100000px;}
.x57_c00461{left:400.050000px;}
.xa8_c00461{left:401.550000px;}
.x34_c00461{left:404.550000px;}
.x71_c00461{left:405.900000px;}
.x5d_c00461{left:407.850000px;}
.x9f_c00461{left:409.350000px;}
.x1e_c00461{left:411.450000px;}
.x9_c00461{left:413.400000px;}
.xc5_c00461{left:415.500000px;}
.x2f_c00461{left:417.900000px;}
.x6e_c00461{left:419.550000px;}
.x7d_c00461{left:422.250000px;}
.x35_c00461{left:423.600000px;}
.x2_c00461{left:426.150000px;}
.x88_c00461{left:427.800000px;}
.x48_c00461{left:428.850000px;}
.xa2_c00461{left:431.250000px;}
.xba_c00461{left:433.050000px;}
.x94_c00461{left:435.150000px;}
.x7e_c00461{left:437.700000px;}
.x64_c00461{left:439.200000px;}
.x99_c00461{left:440.250000px;}
.x41_c00461{left:442.200000px;}
.x16_c00461{left:443.700000px;}
.x6f_c00461{left:445.500000px;}
.x10_c00461{left:446.550000px;}
.x3c_c00461{left:447.750000px;}
.x29_c00461{left:449.400000px;}
.xb2_c00461{left:452.100000px;}
.x76_c00461{left:453.150000px;}
.xaf_c00461{left:454.500000px;}
.xa_c00461{left:456.150000px;}
.x30_c00461{left:457.500000px;}
.x66_c00461{left:458.850000px;}
.x36_c00461{left:463.200000px;}
.x17_c00461{left:465.300000px;}
.x3d_c00461{left:466.500000px;}
.x31_c00461{left:468.300000px;}
.x5c_c00461{left:470.550000px;}
.xa1_c00461{left:473.250000px;}
.x8d_c00461{left:474.750000px;}
.x85_c00461{left:475.950000px;}
.xa3_c00461{left:477.750000px;}
.x95_c00461{left:479.850000px;}
.xb4_c00461{left:480.900000px;}
.x1f_c00461{left:482.700000px;}
.x77_c00461{left:484.050000px;}
.x6c_c00461{left:485.850000px;}
.xc6_c00461{left:486.900000px;}
.x2a_c00461{left:487.950000px;}
.x4d_c00461{left:490.500000px;}
.x11_c00461{left:491.850000px;}
.x42_c00461{left:493.950000px;}
.x92_c00461{left:497.100000px;}
.x96_c00461{left:499.650000px;}
.x78_c00461{left:501.000000px;}
.x61_c00461{left:502.050000px;}
.xa4_c00461{left:503.250000px;}
.x49_c00461{left:504.750000px;}
.x20_c00461{left:506.850000px;}
.x67_c00461{left:508.950000px;}
.x5e_c00461{left:510.000000px;}
.xae_c00461{left:511.350000px;}
.x18_c00461{left:512.850000px;}
.x37_c00461{left:513.900000px;}
.xb6_c00461{left:517.350000px;}
.x79_c00461{left:519.900000px;}
.xc2_c00461{left:526.650000px;}
.xd5_c00461{left:537.450000px;}
.x106_c00461{left:539.250000px;}
.x138_c00461{left:544.350000px;}
.xe0_c00461{left:553.350000px;}
.xc7_c00461{left:554.700000px;}
.xbc_c00461{left:556.500000px;}
.xfb_c00461{left:557.700000px;}
.x13c_c00461{left:562.350000px;}
.x142_c00461{left:564.150000px;}
.x162_c00461{left:565.500000px;}
.x110_c00461{left:566.700000px;}
.x119_c00461{left:568.950000px;}
.x126_c00461{left:570.900000px;}
.x136_c00461{left:572.400000px;}
.x121_c00461{left:574.200000px;}
.xe7_c00461{left:580.200000px;}
.xd6_c00461{left:582.750000px;}
.xcf_c00461{left:584.550000px;}
.x10c_c00461{left:587.100000px;}
.x13f_c00461{left:588.600000px;}
.x163_c00461{left:589.650000px;}
.x11a_c00461{left:591.600000px;}
.x127_c00461{left:593.250000px;}
.xc8_c00461{left:595.050000px;}
.x161_c00461{left:597.450000px;}
.x148_c00461{left:599.250000px;}
.x107_c00461{left:602.250000px;}
.x144_c00461{left:604.650000px;}
.xd0_c00461{left:609.750000px;}
.xf0_c00461{left:610.800000px;}
.x11b_c00461{left:612.450000px;}
.x12c_c00461{left:614.700000px;}
.x14f_c00461{left:617.250000px;}
.xf6_c00461{left:619.050000px;}
.xbd_c00461{left:621.300000px;}
.xdb_c00461{left:623.100000px;}
.xc9_c00461{left:624.900000px;}
.xfc_c00461{left:628.950000px;}
.x14d_c00461{left:630.300000px;}
.xd1_c00461{left:631.350000px;}
.xf1_c00461{left:632.700000px;}
.x10d_c00461{left:635.400000px;}
.xe8_c00461{left:637.050000px;}
.x15a_c00461{left:638.550000px;}
.x115_c00461{left:641.850000px;}
.x101_c00461{left:644.100000px;}
.xe1_c00461{left:646.200000px;}
.xe9_c00461{left:648.150000px;}
.x130_c00461{left:650.850000px;}
.xbe_c00461{left:651.900000px;}
.x11e_c00461{left:654.300000px;}
.x111_c00461{left:655.950000px;}
.x12d_c00461{left:657.450000px;}
.x146_c00461{left:658.500000px;}
.xf2_c00461{left:660.750000px;}
.x11c_c00461{left:662.100000px;}
.xca_c00461{left:663.450000px;}
.x15f_c00461{left:664.800000px;}
.xf7_c00461{left:665.850000px;}
.x11f_c00461{left:670.500000px;}
.xd2_c00461{left:672.750000px;}
.x131_c00461{left:673.950000px;}
.x112_c00461{left:675.000000px;}
.xfd_c00461{left:677.250000px;}
.x10e_c00461{left:678.900000px;}
.xea_c00461{left:680.250000px;}
.xcb_c00461{left:682.200000px;}
.xf8_c00461{left:683.550000px;}
.xd7_c00461{left:688.500000px;}
.xbf_c00461{left:691.800000px;}
.xe2_c00461{left:694.050000px;}
.x10f_c00461{left:696.150000px;}
.x128_c00461{left:697.650000px;}
.x140_c00461{left:699.150000px;}
.x14a_c00461{left:700.200000px;}
.x134_c00461{left:702.150000px;}
.x12e_c00461{left:705.000000px;}
.x102_c00461{left:707.400000px;}
.xd3_c00461{left:709.050000px;}
.xeb_c00461{left:714.450000px;}
.xcc_c00461{left:715.650000px;}
.x108_c00461{left:718.200000px;}
.x122_c00461{left:721.500000px;}
.x103_c00461{left:723.300000px;}
.x152_c00461{left:725.100000px;}
.x158_c00461{left:727.350000px;}
.xe3_c00461{left:728.550000px;}
.x139_c00461{left:730.050000px;}
.xdc_c00461{left:731.100000px;}
.x14e_c00461{left:733.200000px;}
.xfe_c00461{left:735.900000px;}
.x129_c00461{left:737.550000px;}
.xf9_c00461{left:738.600000px;}
.xcd_c00461{left:740.100000px;}
.x116_c00461{left:742.950000px;}
.x12a_c00461{left:744.000000px;}
.x123_c00461{left:745.950000px;}
.xf3_c00461{left:747.150000px;}
.x120_c00461{left:749.400000px;}
.xc0_c00461{left:751.950000px;}
.xdd_c00461{left:753.750000px;}
.x135_c00461{left:755.850000px;}
.x12b_c00461{left:758.400000px;}
.x159_c00461{left:759.450000px;}
.xfa_c00461{left:760.500000px;}
.x13d_c00461{left:761.700000px;}
.xd8_c00461{left:764.400000px;}
.xe4_c00461{left:766.350000px;}
.xd4_c00461{left:769.500000px;}
.xff_c00461{left:771.150000px;}
.x132_c00461{left:774.450000px;}
.x104_c00461{left:775.500000px;}
.xe5_c00461{left:778.200000px;}
.x164_c00461{left:780.300000px;}
.x15b_c00461{left:783.000000px;}
.xc1_c00461{left:786.150000px;}
.x137_c00461{left:787.350000px;}
.x124_c00461{left:788.400000px;}
.xec_c00461{left:790.800000px;}
.x105_c00461{left:793.800000px;}
.x109_c00461{left:796.050000px;}
.xf4_c00461{left:799.650000px;}
.x15c_c00461{left:800.700000px;}
.x153_c00461{left:802.500000px;}
.xed_c00461{left:804.450000px;}
.x117_c00461{left:805.500000px;}
.x143_c00461{left:806.550000px;}
.x11d_c00461{left:807.600000px;}
.xd9_c00461{left:809.700000px;}
.xde_c00461{left:811.350000px;}
.xe6_c00461{left:813.900000px;}
.x14b_c00461{left:814.950000px;}
.x156_c00461{left:818.400000px;}
.x149_c00461{left:820.500000px;}
.xee_c00461{left:822.150000px;}
.x150_c00461{left:823.200000px;}
.x13a_c00461{left:826.650000px;}
.x10a_c00461{left:827.700000px;}
.xdf_c00461{left:829.050000px;}
.x113_c00461{left:830.100000px;}
.x12f_c00461{left:831.600000px;}
.xce_c00461{left:834.450000px;}
.x118_c00461{left:836.400000px;}
.x133_c00461{left:837.450000px;}
.x157_c00461{left:838.500000px;}
.xda_c00461{left:839.550000px;}
.x15d_c00461{left:840.750000px;}
.x155_c00461{left:842.100000px;}
.xf5_c00461{left:844.650000px;}
.x100_c00461{left:846.750000px;}
.x14c_c00461{left:850.950000px;}
.x141_c00461{left:853.200000px;}
.x147_c00461{left:854.400000px;}
.xef_c00461{left:857.100000px;}
.x15e_c00461{left:859.500000px;}
.x160_c00461{left:860.550000px;}
.x10b_c00461{left:862.650000px;}
.x114_c00461{left:865.800000px;}
.x125_c00461{left:867.300000px;}
.x151_c00461{left:870.300000px;}
.x13b_c00461{left:871.650000px;}
.x145_c00461{left:872.700000px;}
.x154_c00461{left:875.550000px;}
.x13e_c00461{left:879.000000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ws8_c00461{word-spacing:-12.717385pt;}
.ws1_c00461{word-spacing:-10.782469pt;}
.ws9_c00461{word-spacing:-7.407407pt;}
.ws6_c00461{word-spacing:-6.783626pt;}
.wsc_c00461{word-spacing:-5.942029pt;}
.ws10_c00461{word-spacing:-4.567901pt;}
.ws7_c00461{word-spacing:-2.633745pt;}
.ws2_c00461{word-spacing:-2.615804pt;}
.ws11_c00461{word-spacing:0.000000pt;}
.ws0_c00461{word-spacing:2.722513pt;}
.ws5_c00461{word-spacing:6.783626pt;}
.ws4_c00461{word-spacing:7.843137pt;}
.ws3_c00461{word-spacing:9.150327pt;}
.wsf_c00461{word-spacing:12.859599pt;}
.wse_c00461{word-spacing:19.682540pt;}
.wsa_c00461{word-spacing:22.857143pt;}
.wsb_c00461{word-spacing:30.793651pt;}
.wsd_c00461{word-spacing:54.444444pt;}
._0_c00461{width:52.698413pt;}
._1_c00461{width:209.841270pt;}
.fs6_c00461{font-size:42.666667pt;}
.fs5_c00461{font-size:48.000000pt;}
.fs2_c00461{font-size:53.333333pt;}
.fs3_c00461{font-size:58.666667pt;}
.fs4_c00461{font-size:64.000000pt;}
.fs1_c00461{font-size:74.666667pt;}
.fs0_c00461{font-size:96.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y74_c00461{bottom:168.666667pt;}
.y38_c00461{bottom:173.066667pt;}
.y73_c00461{bottom:184.266667pt;}
.y37_c00461{bottom:185.866667pt;}
.y36_c00461{bottom:198.533333pt;}
.y72_c00461{bottom:200.533333pt;}
.y35_c00461{bottom:211.066667pt;}
.y71_c00461{bottom:216.800000pt;}
.y34_c00461{bottom:223.866667pt;}
.y70_c00461{bottom:232.133333pt;}
.y33_c00461{bottom:236.666667pt;}
.y6f_c00461{bottom:248.800000pt;}
.y32_c00461{bottom:249.466667pt;}
.y31_c00461{bottom:261.333333pt;}
.y6e_c00461{bottom:264.800000pt;}
.y30_c00461{bottom:274.133333pt;}
.y6d_c00461{bottom:280.800000pt;}
.y2f_c00461{bottom:286.933333pt;}
.y6c_c00461{bottom:296.533333pt;}
.y2e_c00461{bottom:299.466667pt;}
.y2d_c00461{bottom:312.000000pt;}
.y6b_c00461{bottom:312.266667pt;}
.y2c_c00461{bottom:325.066667pt;}
.y6a_c00461{bottom:328.533333pt;}
.y2b_c00461{bottom:337.200000pt;}
.y69_c00461{bottom:344.266667pt;}
.y2a_c00461{bottom:349.733333pt;}
.y68_c00461{bottom:361.600000pt;}
.y29_c00461{bottom:362.533333pt;}
.y28_c00461{bottom:375.466667pt;}
.y67_c00461{bottom:376.266667pt;}
.y27_c00461{bottom:388.266667pt;}
.y66_c00461{bottom:392.266667pt;}
.y26_c00461{bottom:401.066667pt;}
.y65_c00461{bottom:408.266667pt;}
.y25_c00461{bottom:414.133333pt;}
.y64_c00461{bottom:424.266667pt;}
.y24_c00461{bottom:426.266667pt;}
.y23_c00461{bottom:439.066667pt;}
.y63_c00461{bottom:439.600000pt;}
.y39_c00461{bottom:440.666667pt;}
.y22_c00461{bottom:451.866667pt;}
.y62_c00461{bottom:456.266667pt;}
.y21_c00461{bottom:464.666667pt;}
.y61_c00461{bottom:472.266667pt;}
.y20_c00461{bottom:477.466667pt;}
.y60_c00461{bottom:488.000000pt;}
.y1f_c00461{bottom:490.533333pt;}
.y1e_c00461{bottom:503.066667pt;}
.y5f_c00461{bottom:504.000000pt;}
.y1d_c00461{bottom:515.866667pt;}
.y5e_c00461{bottom:519.733333pt;}
.y1c_c00461{bottom:528.666667pt;}
.y5d_c00461{bottom:535.733333pt;}
.y1b_c00461{bottom:541.466667pt;}
.y5c_c00461{bottom:552.000000pt;}
.y5b_c00461{bottom:568.000000pt;}
.y1a_c00461{bottom:574.666667pt;}
.y5a_c00461{bottom:584.000000pt;}
.y19_c00461{bottom:590.666667pt;}
.y59_c00461{bottom:599.733333pt;}
.y18_c00461{bottom:606.666667pt;}
.y58_c00461{bottom:618.800000pt;}
.y17_c00461{bottom:622.666667pt;}
.y57_c00461{bottom:630.666667pt;}
.y16_c00461{bottom:638.400000pt;}
.y56_c00461{bottom:643.466667pt;}
.y15_c00461{bottom:654.666667pt;}
.y55_c00461{bottom:656.000000pt;}
.y54_c00461{bottom:669.466667pt;}
.y14_c00461{bottom:670.400000pt;}
.y53_c00461{bottom:682.933333pt;}
.y13_c00461{bottom:687.066667pt;}
.y52_c00461{bottom:696.000000pt;}
.y12_c00461{bottom:703.333333pt;}
.y51_c00461{bottom:708.800000pt;}
.y50_c00461{bottom:720.666667pt;}
.y11_c00461{bottom:721.600000pt;}
.y4f_c00461{bottom:734.400000pt;}
.y4e_c00461{bottom:747.200000pt;}
.y10_c00461{bottom:749.200000pt;}
.y4d_c00461{bottom:760.000000pt;}
.yf_c00461{bottom:765.466667pt;}
.y4c_c00461{bottom:772.400000pt;}
.ye_c00461{bottom:781.466667pt;}
.y4b_c00461{bottom:784.933333pt;}
.y4_c00461{bottom:797.066667pt;}
.y4a_c00461{bottom:809.866667pt;}
.y49_c00461{bottom:810.933333pt;}
.y3_c00461{bottom:816.933333pt;}
.y48_c00461{bottom:824.000000pt;}
.y3a_c00461{bottom:826.266667pt;}
.yd_c00461{bottom:836.533333pt;}
.y47_c00461{bottom:837.733333pt;}
.yc_c00461{bottom:852.533333pt;}
.y46_c00461{bottom:854.666667pt;}
.yb_c00461{bottom:868.800000pt;}
.y45_c00461{bottom:870.666667pt;}
.ya_c00461{bottom:884.533333pt;}
.y44_c00461{bottom:886.666667pt;}
.y9_c00461{bottom:900.533333pt;}
.y43_c00461{bottom:902.400000pt;}
.y8_c00461{bottom:916.533333pt;}
.y42_c00461{bottom:918.400000pt;}
.y7_c00461{bottom:932.400000pt;}
.y41_c00461{bottom:934.400000pt;}
.y6_c00461{bottom:948.400000pt;}
.y40_c00461{bottom:950.666667pt;}
.y5_c00461{bottom:964.133333pt;}
.y3f_c00461{bottom:966.133333pt;}
.y3c_c00461{bottom:980.133333pt;}
.y3e_c00461{bottom:985.866667pt;}
.y3d_c00461{bottom:1001.866667pt;}
.y3b_c00461{bottom:1002.266667pt;}
.y1_c00461{bottom:1022.666667pt;}
.y2_c00461{bottom:1024.933333pt;}
.h8_c00461{height:42.666667pt;}
.h7_c00461{height:48.000000pt;}
.h4_c00461{height:53.333333pt;}
.h5_c00461{height:58.666667pt;}
.h6_c00461{height:64.000000pt;}
.h3_c00461{height:74.666667pt;}
.h2_c00461{height:96.000000pt;}
.h1_c00461{height:1127.333333pt;}
.h0_c00461{height:1127.359944pt;}
.w0_c00461{width:851.840007pt;}
.w1_c00461{width:852.000000pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:159.333333pt;}
.xc4_c00461{left:161.066667pt;}
.x3_c00461{left:163.200000pt;}
.x50_c00461{left:165.066667pt;}
.x72_c00461{left:167.200000pt;}
.x7c_c00461{left:168.266667pt;}
.x8e_c00461{left:169.866667pt;}
.x9a_c00461{left:170.800000pt;}
.xa9_c00461{left:172.133333pt;}
.xb0_c00461{left:173.333333pt;}
.xb_c00461{left:176.933333pt;}
.x2b_c00461{left:178.666667pt;}
.x4a_c00461{left:179.866667pt;}
.x5a_c00461{left:181.333333pt;}
.x93_c00461{left:183.333333pt;}
.xb1_c00461{left:184.266667pt;}
.x21_c00461{left:186.266667pt;}
.x86_c00461{left:187.200000pt;}
.x9b_c00461{left:189.066667pt;}
.xaa_c00461{left:190.000000pt;}
.xa0_c00461{left:191.333333pt;}
.x97_c00461{left:192.400000pt;}
.xbb_c00461{left:193.866667pt;}
.x46_c00461{left:194.933333pt;}
.x53_c00461{left:197.066667pt;}
.x43_c00461{left:199.066667pt;}
.x68_c00461{left:200.533333pt;}
.x87_c00461{left:202.266667pt;}
.x51_c00461{left:204.400000pt;}
.xab_c00461{left:205.733333pt;}
.x22_c00461{left:206.800000pt;}
.x2c_c00461{left:208.400000pt;}
.xb5_c00461{left:210.533333pt;}
.x3e_c00461{left:211.600000pt;}
.x32_c00461{left:214.666667pt;}
.x4_c00461{left:216.000000pt;}
.x7f_c00461{left:216.933333pt;}
.x83_c00461{left:218.266667pt;}
.x65_c00461{left:219.466667pt;}
.x89_c00461{left:221.333333pt;}
.x5_c00461{left:222.400000pt;}
.x62_c00461{left:224.266667pt;}
.x23_c00461{left:225.333333pt;}
.x7a_c00461{left:226.533333pt;}
.x19_c00461{left:227.733333pt;}
.x3f_c00461{left:228.933333pt;}
.x80_c00461{left:230.000000pt;}
.x70_c00461{left:233.333333pt;}
.x9e_c00461{left:234.533333pt;}
.x7b_c00461{left:235.466667pt;}
.x8f_c00461{left:236.800000pt;}
.x52_c00461{left:238.000000pt;}
.x73_c00461{left:239.600000pt;}
.xb3_c00461{left:240.800000pt;}
.x12_c00461{left:242.666667pt;}
.x4e_c00461{left:243.733333pt;}
.xa5_c00461{left:245.733333pt;}
.xc_c00461{left:247.333333pt;}
.x84_c00461{left:250.266667pt;}
.x5f_c00461{left:252.133333pt;}
.x44_c00461{left:253.200000pt;}
.x1a_c00461{left:254.666667pt;}
.x54_c00461{left:256.000000pt;}
.x90_c00461{left:257.866667pt;}
.x38_c00461{left:259.600000pt;}
.x6_c00461{left:260.533333pt;}
.xb7_c00461{left:261.600000pt;}
.xd_c00461{left:263.600000pt;}
.x81_c00461{left:264.533333pt;}
.x8a_c00461{left:266.133333pt;}
.x2d_c00461{left:270.133333pt;}
.xa6_c00461{left:273.200000pt;}
.x24_c00461{left:274.266667pt;}
.x91_c00461{left:275.466667pt;}
.xac_c00461{left:276.533333pt;}
.x55_c00461{left:277.733333pt;}
.x39_c00461{left:279.066667pt;}
.xad_c00461{left:280.133333pt;}
.x40_c00461{left:281.066667pt;}
.x25_c00461{left:282.533333pt;}
.x7_c00461{left:284.266667pt;}
.xa7_c00461{left:285.333333pt;}
.x6d_c00461{left:286.800000pt;}
.x47_c00461{left:287.733333pt;}
.x4b_c00461{left:288.800000pt;}
.x69_c00461{left:290.133333pt;}
.xe_c00461{left:291.066667pt;}
.x8b_c00461{left:292.400000pt;}
.x9c_c00461{left:293.733333pt;}
.x74_c00461{left:295.866667pt;}
.x58_c00461{left:297.200000pt;}
.x1b_c00461{left:299.466667pt;}
.x4f_c00461{left:300.400000pt;}
.x13_c00461{left:301.866667pt;}
.x8_c00461{left:303.466667pt;}
.x33_c00461{left:304.933333pt;}
.x26_c00461{left:305.866667pt;}
.x98_c00461{left:308.800000pt;}
.x1c_c00461{left:310.000000pt;}
.x8c_c00461{left:311.333333pt;}
.x60_c00461{left:313.600000pt;}
.x45_c00461{left:314.666667pt;}
.x75_c00461{left:318.266667pt;}
.x82_c00461{left:320.533333pt;}
.x14_c00461{left:322.666667pt;}
.xc3_c00461{left:324.000000pt;}
.x27_c00461{left:325.333333pt;}
.x1d_c00461{left:327.600000pt;}
.x56_c00461{left:328.666667pt;}
.x3a_c00461{left:331.466667pt;}
.x6a_c00461{left:334.933333pt;}
.x5b_c00461{left:336.000000pt;}
.x4c_c00461{left:338.400000pt;}
.x2e_c00461{left:340.133333pt;}
.xb9_c00461{left:341.600000pt;}
.x28_c00461{left:343.200000pt;}
.x59_c00461{left:344.266667pt;}
.x3b_c00461{left:346.133333pt;}
.xf_c00461{left:347.066667pt;}
.x63_c00461{left:348.133333pt;}
.x15_c00461{left:349.866667pt;}
.xb8_c00461{left:350.800000pt;}
.x9d_c00461{left:352.666667pt;}
.x6b_c00461{left:353.866667pt;}
.x57_c00461{left:355.600000pt;}
.xa8_c00461{left:356.933333pt;}
.x34_c00461{left:359.600000pt;}
.x71_c00461{left:360.800000pt;}
.x5d_c00461{left:362.533333pt;}
.x9f_c00461{left:363.866667pt;}
.x1e_c00461{left:365.733333pt;}
.x9_c00461{left:367.466667pt;}
.xc5_c00461{left:369.333333pt;}
.x2f_c00461{left:371.466667pt;}
.x6e_c00461{left:372.933333pt;}
.x7d_c00461{left:375.333333pt;}
.x35_c00461{left:376.533333pt;}
.x2_c00461{left:378.800000pt;}
.x88_c00461{left:380.266667pt;}
.x48_c00461{left:381.200000pt;}
.xa2_c00461{left:383.333333pt;}
.xba_c00461{left:384.933333pt;}
.x94_c00461{left:386.800000pt;}
.x7e_c00461{left:389.066667pt;}
.x64_c00461{left:390.400000pt;}
.x99_c00461{left:391.333333pt;}
.x41_c00461{left:393.066667pt;}
.x16_c00461{left:394.400000pt;}
.x6f_c00461{left:396.000000pt;}
.x10_c00461{left:396.933333pt;}
.x3c_c00461{left:398.000000pt;}
.x29_c00461{left:399.466667pt;}
.xb2_c00461{left:401.866667pt;}
.x76_c00461{left:402.800000pt;}
.xaf_c00461{left:404.000000pt;}
.xa_c00461{left:405.466667pt;}
.x30_c00461{left:406.666667pt;}
.x66_c00461{left:407.866667pt;}
.x36_c00461{left:411.733333pt;}
.x17_c00461{left:413.600000pt;}
.x3d_c00461{left:414.666667pt;}
.x31_c00461{left:416.266667pt;}
.x5c_c00461{left:418.266667pt;}
.xa1_c00461{left:420.666667pt;}
.x8d_c00461{left:422.000000pt;}
.x85_c00461{left:423.066667pt;}
.xa3_c00461{left:424.666667pt;}
.x95_c00461{left:426.533333pt;}
.xb4_c00461{left:427.466667pt;}
.x1f_c00461{left:429.066667pt;}
.x77_c00461{left:430.266667pt;}
.x6c_c00461{left:431.866667pt;}
.xc6_c00461{left:432.800000pt;}
.x2a_c00461{left:433.733333pt;}
.x4d_c00461{left:436.000000pt;}
.x11_c00461{left:437.200000pt;}
.x42_c00461{left:439.066667pt;}
.x92_c00461{left:441.866667pt;}
.x96_c00461{left:444.133333pt;}
.x78_c00461{left:445.333333pt;}
.x61_c00461{left:446.266667pt;}
.xa4_c00461{left:447.333333pt;}
.x49_c00461{left:448.666667pt;}
.x20_c00461{left:450.533333pt;}
.x67_c00461{left:452.400000pt;}
.x5e_c00461{left:453.333333pt;}
.xae_c00461{left:454.533333pt;}
.x18_c00461{left:455.866667pt;}
.x37_c00461{left:456.800000pt;}
.xb6_c00461{left:459.866667pt;}
.x79_c00461{left:462.133333pt;}
.xc2_c00461{left:468.133333pt;}
.xd5_c00461{left:477.733333pt;}
.x106_c00461{left:479.333333pt;}
.x138_c00461{left:483.866667pt;}
.xe0_c00461{left:491.866667pt;}
.xc7_c00461{left:493.066667pt;}
.xbc_c00461{left:494.666667pt;}
.xfb_c00461{left:495.733333pt;}
.x13c_c00461{left:499.866667pt;}
.x142_c00461{left:501.466667pt;}
.x162_c00461{left:502.666667pt;}
.x110_c00461{left:503.733333pt;}
.x119_c00461{left:505.733333pt;}
.x126_c00461{left:507.466667pt;}
.x136_c00461{left:508.800000pt;}
.x121_c00461{left:510.400000pt;}
.xe7_c00461{left:515.733333pt;}
.xd6_c00461{left:518.000000pt;}
.xcf_c00461{left:519.600000pt;}
.x10c_c00461{left:521.866667pt;}
.x13f_c00461{left:523.200000pt;}
.x163_c00461{left:524.133333pt;}
.x11a_c00461{left:525.866667pt;}
.x127_c00461{left:527.333333pt;}
.xc8_c00461{left:528.933333pt;}
.x161_c00461{left:531.066667pt;}
.x148_c00461{left:532.666667pt;}
.x107_c00461{left:535.333333pt;}
.x144_c00461{left:537.466667pt;}
.xd0_c00461{left:542.000000pt;}
.xf0_c00461{left:542.933333pt;}
.x11b_c00461{left:544.400000pt;}
.x12c_c00461{left:546.400000pt;}
.x14f_c00461{left:548.666667pt;}
.xf6_c00461{left:550.266667pt;}
.xbd_c00461{left:552.266667pt;}
.xdb_c00461{left:553.866667pt;}
.xc9_c00461{left:555.466667pt;}
.xfc_c00461{left:559.066667pt;}
.x14d_c00461{left:560.266667pt;}
.xd1_c00461{left:561.200000pt;}
.xf1_c00461{left:562.400000pt;}
.x10d_c00461{left:564.800000pt;}
.xe8_c00461{left:566.266667pt;}
.x15a_c00461{left:567.600000pt;}
.x115_c00461{left:570.533333pt;}
.x101_c00461{left:572.533333pt;}
.xe1_c00461{left:574.400000pt;}
.xe9_c00461{left:576.133333pt;}
.x130_c00461{left:578.533333pt;}
.xbe_c00461{left:579.466667pt;}
.x11e_c00461{left:581.600000pt;}
.x111_c00461{left:583.066667pt;}
.x12d_c00461{left:584.400000pt;}
.x146_c00461{left:585.333333pt;}
.xf2_c00461{left:587.333333pt;}
.x11c_c00461{left:588.533333pt;}
.xca_c00461{left:589.733333pt;}
.x15f_c00461{left:590.933333pt;}
.xf7_c00461{left:591.866667pt;}
.x11f_c00461{left:596.000000pt;}
.xd2_c00461{left:598.000000pt;}
.x131_c00461{left:599.066667pt;}
.x112_c00461{left:600.000000pt;}
.xfd_c00461{left:602.000000pt;}
.x10e_c00461{left:603.466667pt;}
.xea_c00461{left:604.666667pt;}
.xcb_c00461{left:606.400000pt;}
.xf8_c00461{left:607.600000pt;}
.xd7_c00461{left:612.000000pt;}
.xbf_c00461{left:614.933333pt;}
.xe2_c00461{left:616.933333pt;}
.x10f_c00461{left:618.800000pt;}
.x128_c00461{left:620.133333pt;}
.x140_c00461{left:621.466667pt;}
.x14a_c00461{left:622.400000pt;}
.x134_c00461{left:624.133333pt;}
.x12e_c00461{left:626.666667pt;}
.x102_c00461{left:628.800000pt;}
.xd3_c00461{left:630.266667pt;}
.xeb_c00461{left:635.066667pt;}
.xcc_c00461{left:636.133333pt;}
.x108_c00461{left:638.400000pt;}
.x122_c00461{left:641.333333pt;}
.x103_c00461{left:642.933333pt;}
.x152_c00461{left:644.533333pt;}
.x158_c00461{left:646.533333pt;}
.xe3_c00461{left:647.600000pt;}
.x139_c00461{left:648.933333pt;}
.xdc_c00461{left:649.866667pt;}
.x14e_c00461{left:651.733333pt;}
.xfe_c00461{left:654.133333pt;}
.x129_c00461{left:655.600000pt;}
.xf9_c00461{left:656.533333pt;}
.xcd_c00461{left:657.866667pt;}
.x116_c00461{left:660.400000pt;}
.x12a_c00461{left:661.333333pt;}
.x123_c00461{left:663.066667pt;}
.xf3_c00461{left:664.133333pt;}
.x120_c00461{left:666.133333pt;}
.xc0_c00461{left:668.400000pt;}
.xdd_c00461{left:670.000000pt;}
.x135_c00461{left:671.866667pt;}
.x12b_c00461{left:674.133333pt;}
.x159_c00461{left:675.066667pt;}
.xfa_c00461{left:676.000000pt;}
.x13d_c00461{left:677.066667pt;}
.xd8_c00461{left:679.466667pt;}
.xe4_c00461{left:681.200000pt;}
.xd4_c00461{left:684.000000pt;}
.xff_c00461{left:685.466667pt;}
.x132_c00461{left:688.400000pt;}
.x104_c00461{left:689.333333pt;}
.xe5_c00461{left:691.733333pt;}
.x164_c00461{left:693.600000pt;}
.x15b_c00461{left:696.000000pt;}
.xc1_c00461{left:698.800000pt;}
.x137_c00461{left:699.866667pt;}
.x124_c00461{left:700.800000pt;}
.xec_c00461{left:702.933333pt;}
.x105_c00461{left:705.600000pt;}
.x109_c00461{left:707.600000pt;}
.xf4_c00461{left:710.800000pt;}
.x15c_c00461{left:711.733333pt;}
.x153_c00461{left:713.333333pt;}
.xed_c00461{left:715.066667pt;}
.x117_c00461{left:716.000000pt;}
.x143_c00461{left:716.933333pt;}
.x11d_c00461{left:717.866667pt;}
.xd9_c00461{left:719.733333pt;}
.xde_c00461{left:721.200000pt;}
.xe6_c00461{left:723.466667pt;}
.x14b_c00461{left:724.400000pt;}
.x156_c00461{left:727.466667pt;}
.x149_c00461{left:729.333333pt;}
.xee_c00461{left:730.800000pt;}
.x150_c00461{left:731.733333pt;}
.x13a_c00461{left:734.800000pt;}
.x10a_c00461{left:735.733333pt;}
.xdf_c00461{left:736.933333pt;}
.x113_c00461{left:737.866667pt;}
.x12f_c00461{left:739.200000pt;}
.xce_c00461{left:741.733333pt;}
.x118_c00461{left:743.466667pt;}
.x133_c00461{left:744.400000pt;}
.x157_c00461{left:745.333333pt;}
.xda_c00461{left:746.266667pt;}
.x15d_c00461{left:747.333333pt;}
.x155_c00461{left:748.533333pt;}
.xf5_c00461{left:750.800000pt;}
.x100_c00461{left:752.666667pt;}
.x14c_c00461{left:756.400000pt;}
.x141_c00461{left:758.400000pt;}
.x147_c00461{left:759.466667pt;}
.xef_c00461{left:761.866667pt;}
.x15e_c00461{left:764.000000pt;}
.x160_c00461{left:764.933333pt;}
.x10b_c00461{left:766.800000pt;}
.x114_c00461{left:769.600000pt;}
.x125_c00461{left:770.933333pt;}
.x151_c00461{left:773.600000pt;}
.x13b_c00461{left:774.800000pt;}
.x145_c00461{left:775.733333pt;}
.x154_c00461{left:778.266667pt;}
.x13e_c00461{left:781.333333pt;}
}





/* 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_c00462 {
    display:none;
  }
  .loading-indicator_c00462.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00462 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_c00462 { 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_c00462" -> "#page-container .classname_c00462")
 */
.pf_c00462 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00462 { /* 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_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00462 { /* 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_c00462 { /* 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_c00462 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00462 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00462 {overflow:visible;}
  }
}
.c_c00462 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00462 { /* 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_c00462:after { /* webkit #35443 */
  content: '';
}
.t_c00462:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00462 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 */
}
.__c00462 { /* 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_c00462 { /* info for Javascript */
  display:none;
}
.l_c00462 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00462 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00462 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00462: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_c00462 {
    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_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00462.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_c00462 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00462;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.000000;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;}
.m125_c00462{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m128_c00462{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00462{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00462{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m119_c00462{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m32_c00462{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00462{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00462{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m63_c00462{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m114_c00462{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m50_c00462{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00462{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00462{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00462{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m12_c00462{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8_c00462{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00462{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m47_c00462{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00462{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10_c00462{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m126_c00462{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m100_c00462{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m23_c00462{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m129_c00462{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00462{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.mff_c00462{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.me1_c00462{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m101_c00462{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m42_c00462{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00462{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00462{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m25_c00462{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m120_c00462{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md1_c00462{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00462{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00462{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m86_c00462{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00462{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m113_c00462{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00462{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m121_c00462{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00462{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m104_c00462{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m33_c00462{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m17_c00462{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m18_c00462{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00462{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.me7_c00462{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m84_c00462{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m41_c00462{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m99_c00462{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mce_c00462{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.ma_c00462{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00462{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m87_c00462{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00462{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00462{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00462{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m92_c00462{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00462{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00462{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00462{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m44_c00462{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m106_c00462{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mba_c00462{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m65_c00462{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m109_c00462{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m76_c00462{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.md5_c00462{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00462{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m48_c00462{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m105_c00462{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00462{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00462{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00462{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m85_c00462{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m89_c00462{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m21_c00462{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m118_c00462{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00462{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me4_c00462{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00462{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m80_c00462{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00462{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.med_c00462{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m77_c00462{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00462{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00462{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.meb_c00462{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2_c00462{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m93_c00462{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.md2_c00462{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00462{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00462{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me_c00462{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m35_c00462{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00462{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00462{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m72_c00462{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m75_c00462{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00462{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m31_c00462{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mec_c00462{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mc_c00462{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00462{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00462{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m53_c00462{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.maa_c00462{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m59_c00462{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00462{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m6_c00462{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00462{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m88_c00462{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m115_c00462{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m16_c00462{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00462{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00462{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m19_c00462{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m38_c00462{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md4_c00462{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00462{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m79_c00462{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m57_c00462{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m15_c00462{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00462{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me2_c00462{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m61_c00462{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mde_c00462{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00462{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m78_c00462{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00462{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m14_c00462{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00462{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00462{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m46_c00462{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00462{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m11_c00462{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00462{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m91_c00462{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00462{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00462{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m83_c00462{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m73_c00462{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9_c00462{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m70_c00462{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00462{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00462{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mf_c00462{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1_c00462{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m116_c00462{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me5_c00462{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00462{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00462{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00462{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m62_c00462{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00462{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00462{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00462{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m56_c00462{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00462{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m20_c00462{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m36_c00462{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m90_c00462{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m52_c00462{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m28_c00462{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7_c00462{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00462{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00462{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m43_c00462{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m58_c00462{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00462{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00462{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.me8_c00462{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mee_c00462{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mad_c00462{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00462{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m27_c00462{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00462{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00462{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m94_c00462{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m5_c00462{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m71_c00462{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00462{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00462{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m34_c00462{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me9_c00462{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m54_c00462{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me3_c00462{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00462{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m66_c00462{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00462{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00462{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m30_c00462{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00462{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00462{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m117_c00462{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m68_c00462{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m51_c00462{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00462{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00462{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m45_c00462{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00462{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00462{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m103_c00462{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mb_c00462{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m127_c00462{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m49_c00462{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00462{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00462{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m122_c00462{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m64_c00462{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00462{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00462{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m82_c00462{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me0_c00462{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m74_c00462{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m112_c00462{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m108_c00462{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00462{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00462{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00462{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m13_c00462{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m97_c00462{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00462{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m55_c00462{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00462{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m60_c00462{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00462{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00462{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00462{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00462{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00462{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00462{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00462{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m110_c00462{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md9_c00462{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00462{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md3_c00462{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m98_c00462{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00462{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00462{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m67_c00462{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mab_c00462{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00462{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00462{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md_c00462{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00462{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00462{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00462{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00462{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00462{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m102_c00462{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);}
.m96_c00462{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00462{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mae_c00462{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00462{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00462{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00462{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00462{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00462{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00462{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00462{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00462{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00462{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00462{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00462{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.maf_c00462{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00462{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m123_c00462{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00462{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mef_c00462{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m111_c00462{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00462{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00462{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00462{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m81_c00462{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me6_c00462{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m39_c00462{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md8_c00462{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m24_c00462{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m107_c00462{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00462{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m22_c00462{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mea_c00462{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00462{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m26_c00462{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mca_c00462{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m37_c00462{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m95_c00462{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00462{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mda_c00462{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m40_c00462{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.md7_c00462{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00462{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mac_c00462{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00462{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00462{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m29_c00462{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m124_c00462{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m130_c00462{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.md6_c00462{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.md0_c00462{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls0_c00462{letter-spacing:0.000000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{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__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00462{word-spacing:-8.594274px;}
.ws7_c00462{word-spacing:-7.413655px;}
.ws4_c00462{word-spacing:-6.934708px;}
.ws3_c00462{word-spacing:-5.705882px;}
.ws0_c00462{word-spacing:-4.444126px;}
.ws1_c00462{word-spacing:-2.852018px;}
.ws6_c00462{word-spacing:-1.582418px;}
.wsb_c00462{word-spacing:0.000000px;}
.ws9_c00462{word-spacing:7.187500px;}
.ws5_c00462{word-spacing:16.280255px;}
.ws8_c00462{word-spacing:25.714286px;}
.wsa_c00462{word-spacing:60.000000px;}
._0_c00462{width:48.125000px;}
._2_c00462{width:93.125000px;}
._1_c00462{width:96.250000px;}
.fc0_c00462{color:transparent;}
.fs5_c00462{font-size:54.000000px;}
.fs4_c00462{font-size:60.000000px;}
.fs3_c00462{font-size:66.000000px;}
.fs2_c00462{font-size:72.000000px;}
.fs6_c00462{font-size:78.000000px;}
.fs1_c00462{font-size:96.000000px;}
.fs0_c00462{font-size:114.000000px;}
.y0_c00462{bottom:0.000000px;}
.y6b_c00462{bottom:165.900000px;}
.y6a_c00462{bottom:181.800000px;}
.y35_c00462{bottom:182.100000px;}
.y69_c00462{bottom:196.200000px;}
.y34_c00462{bottom:197.250000px;}
.y68_c00462{bottom:210.900000px;}
.y33_c00462{bottom:211.500000px;}
.y32_c00462{bottom:225.600000px;}
.y31_c00462{bottom:239.700000px;}
.y67_c00462{bottom:246.600000px;}
.y66_c00462{bottom:261.000000px;}
.y65_c00462{bottom:275.700000px;}
.y30_c00462{bottom:280.800000px;}
.y64_c00462{bottom:290.850000px;}
.y2f_c00462{bottom:302.700000px;}
.y63_c00462{bottom:304.500000px;}
.y2e_c00462{bottom:320.400000px;}
.y62_c00462{bottom:333.750000px;}
.y2d_c00462{bottom:338.400000px;}
.y61_c00462{bottom:349.200000px;}
.y2c_c00462{bottom:356.400000px;}
.y60_c00462{bottom:362.550000px;}
.y2b_c00462{bottom:374.400000px;}
.y5f_c00462{bottom:377.250000px;}
.y5e_c00462{bottom:391.650000px;}
.y2a_c00462{bottom:392.400000px;}
.y5d_c00462{bottom:407.850000px;}
.y29_c00462{bottom:410.400000px;}
.y5c_c00462{bottom:420.000000px;}
.y28_c00462{bottom:428.100000px;}
.y5b_c00462{bottom:435.900000px;}
.y27_c00462{bottom:445.800000px;}
.y5a_c00462{bottom:454.650000px;}
.y26_c00462{bottom:463.500000px;}
.y59_c00462{bottom:472.650000px;}
.y25_c00462{bottom:481.200000px;}
.y58_c00462{bottom:490.350000px;}
.y24_c00462{bottom:498.900000px;}
.y57_c00462{bottom:508.350000px;}
.y23_c00462{bottom:516.900000px;}
.y56_c00462{bottom:526.350000px;}
.y22_c00462{bottom:534.900000px;}
.y55_c00462{bottom:544.350000px;}
.y21_c00462{bottom:552.900000px;}
.y54_c00462{bottom:566.250000px;}
.y20_c00462{bottom:570.600000px;}
.y53_c00462{bottom:584.250000px;}
.y1f_c00462{bottom:593.100000px;}
.y52_c00462{bottom:601.500000px;}
.y1e_c00462{bottom:610.800000px;}
.y51_c00462{bottom:619.500000px;}
.y1d_c00462{bottom:628.800000px;}
.y50_c00462{bottom:637.650000px;}
.y1c_c00462{bottom:646.800000px;}
.y4f_c00462{bottom:659.550000px;}
.y1b_c00462{bottom:664.500000px;}
.y4e_c00462{bottom:686.100000px;}
.y1a_c00462{bottom:686.850000px;}
.y4d_c00462{bottom:703.800000px;}
.y19_c00462{bottom:704.550000px;}
.y4c_c00462{bottom:721.800000px;}
.y18_c00462{bottom:722.550000px;}
.y4b_c00462{bottom:739.800000px;}
.y17_c00462{bottom:740.550000px;}
.y4a_c00462{bottom:757.800000px;}
.y16_c00462{bottom:762.300000px;}
.y49_c00462{bottom:775.500000px;}
.y15_c00462{bottom:780.000000px;}
.y48_c00462{bottom:793.800000px;}
.y14_c00462{bottom:798.000000px;}
.y47_c00462{bottom:811.500000px;}
.y13_c00462{bottom:815.700000px;}
.y46_c00462{bottom:829.500000px;}
.y12_c00462{bottom:833.700000px;}
.y45_c00462{bottom:847.500000px;}
.y11_c00462{bottom:851.700000px;}
.y44_c00462{bottom:865.500000px;}
.y10_c00462{bottom:869.700000px;}
.y43_c00462{bottom:883.500000px;}
.yf_c00462{bottom:887.700000px;}
.y42_c00462{bottom:900.900000px;}
.ye_c00462{bottom:905.700000px;}
.y41_c00462{bottom:918.600000px;}
.yd_c00462{bottom:923.700000px;}
.y40_c00462{bottom:936.300000px;}
.yc_c00462{bottom:941.400000px;}
.y3f_c00462{bottom:958.650000px;}
.yb_c00462{bottom:963.750000px;}
.ya_c00462{bottom:983.250000px;}
.y3e_c00462{bottom:985.800000px;}
.y9_c00462{bottom:999.750000px;}
.y3d_c00462{bottom:1004.100000px;}
.y8_c00462{bottom:1017.750000px;}
.y3c_c00462{bottom:1021.350000px;}
.y3b_c00462{bottom:1022.100000px;}
.y3a_c00462{bottom:1039.350000px;}
.y7_c00462{bottom:1039.950000px;}
.y39_c00462{bottom:1057.350000px;}
.y6_c00462{bottom:1057.950000px;}
.y38_c00462{bottom:1075.350000px;}
.y5_c00462{bottom:1075.950000px;}
.y37_c00462{bottom:1093.350000px;}
.y4_c00462{bottom:1093.950000px;}
.y36_c00462{bottom:1111.350000px;}
.y3_c00462{bottom:1111.650000px;}
.y2_c00462{bottom:1136.850000px;}
.y1_c00462{bottom:1138.350000px;}
.h7_c00462{height:54.000000px;}
.h6_c00462{height:60.000000px;}
.h5_c00462{height:66.000000px;}
.h4_c00462{height:72.000000px;}
.h8_c00462{height:78.000000px;}
.h3_c00462{height:96.000000px;}
.h2_c00462{height:114.000000px;}
.h0_c00462{height:1270.440033px;}
.h1_c00462{height:1270.500000px;}
.w0_c00462{width:958.320007px;}
.w1_c00462{width:958.500000px;}
.x0_c00462{left:0.000000px;}
.x9d_c00462{left:76.200000px;}
.x7a_c00462{left:77.700000px;}
.xa4_c00462{left:86.700000px;}
.x60_c00462{left:91.950000px;}
.x3_c00462{left:93.600000px;}
.xd_c00462{left:94.800000px;}
.x44_c00462{left:96.600000px;}
.x9c_c00462{left:99.300000px;}
.x9f_c00462{left:109.800000px;}
.x65_c00462{left:113.400000px;}
.x22_c00462{left:114.900000px;}
.x13_c00462{left:116.550000px;}
.x47_c00462{left:119.850000px;}
.x85_c00462{left:121.650000px;}
.x34_c00462{left:124.350000px;}
.x7f_c00462{left:126.150000px;}
.x84_c00462{left:128.550000px;}
.x18_c00462{left:130.200000px;}
.x1e_c00462{left:132.150000px;}
.x3f_c00462{left:134.100000px;}
.x6c_c00462{left:136.050000px;}
.x4_c00462{left:138.900000px;}
.x61_c00462{left:140.850000px;}
.x6a_c00462{left:142.950000px;}
.x2a_c00462{left:144.150000px;}
.x2f_c00462{left:145.200000px;}
.x39_c00462{left:147.600000px;}
.x80_c00462{left:149.850000px;}
.x23_c00462{left:152.700000px;}
.xa0_c00462{left:153.750000px;}
.xe_c00462{left:156.300000px;}
.x1f_c00462{left:157.350000px;}
.x73_c00462{left:159.450000px;}
.x59_c00462{left:161.550000px;}
.x19_c00462{left:165.150000px;}
.x7b_c00462{left:166.950000px;}
.x3a_c00462{left:168.900000px;}
.x48_c00462{left:171.300000px;}
.x5_c00462{left:172.350000px;}
.x20_c00462{left:175.350000px;}
.x24_c00462{left:177.900000px;}
.x51_c00462{left:179.250000px;}
.x5e_c00462{left:180.600000px;}
.x14_c00462{left:182.400000px;}
.x66_c00462{left:184.650000px;}
.x2b_c00462{left:185.850000px;}
.x6_c00462{left:189.600000px;}
.x30_c00462{left:190.950000px;}
.xf_c00462{left:193.050000px;}
.x8f_c00462{left:194.250000px;}
.x15_c00462{left:196.800000px;}
.x62_c00462{left:198.150000px;}
.x98_c00462{left:199.500000px;}
.xa1_c00462{left:201.000000px;}
.x6d_c00462{left:204.000000px;}
.x72_c00462{left:205.200000px;}
.x89_c00462{left:207.000000px;}
.x77_c00462{left:208.200000px;}
.x45_c00462{left:210.750000px;}
.x21_c00462{left:213.150000px;}
.x40_c00462{left:214.350000px;}
.x3b_c00462{left:215.700000px;}
.x35_c00462{left:217.650000px;}
.x86_c00462{left:220.200000px;}
.x1a_c00462{left:222.300000px;}
.x2c_c00462{left:223.650000px;}
.x56_c00462{left:224.700000px;}
.x25_c00462{left:226.500000px;}
.x52_c00462{left:227.550000px;}
.x9e_c00462{left:228.900000px;}
.x49_c00462{left:231.300000px;}
.x96_c00462{left:233.400000px;}
.x7_c00462{left:234.900000px;}
.x36_c00462{left:238.500000px;}
.x9a_c00462{left:239.550000px;}
.x78_c00462{left:240.600000px;}
.x5a_c00462{left:241.800000px;}
.x10_c00462{left:243.150000px;}
.x31_c00462{left:246.000000px;}
.x6e_c00462{left:247.500000px;}
.x7c_c00462{left:248.550000px;}
.x94_c00462{left:249.750000px;}
.x63_c00462{left:253.200000px;}
.x37_c00462{left:255.000000px;}
.x41_c00462{left:257.250000px;}
.x3c_c00462{left:258.900000px;}
.x53_c00462{left:261.000000px;}
.x99_c00462{left:266.100000px;}
.x8a_c00462{left:268.950000px;}
.x57_c00462{left:270.000000px;}
.x46_c00462{left:273.450000px;}
.x8_c00462{left:275.550000px;}
.xa2_c00462{left:276.600000px;}
.x4d_c00462{left:278.250000px;}
.x3d_c00462{left:279.450000px;}
.x26_c00462{left:281.250000px;}
.x2d_c00462{left:282.750000px;}
.x81_c00462{left:285.300000px;}
.x32_c00462{left:286.350000px;}
.x8d_c00462{left:287.400000px;}
.x87_c00462{left:288.600000px;}
.x91_c00462{left:289.650000px;}
.x16_c00462{left:292.200000px;}
.x42_c00462{left:294.300000px;}
.x5f_c00462{left:297.600000px;}
.x92_c00462{left:298.950000px;}
.x1b_c00462{left:300.150000px;}
.x27_c00462{left:302.550000px;}
.x3e_c00462{left:305.400000px;}
.x4e_c00462{left:308.550000px;}
.x74_c00462{left:309.900000px;}
.x38_c00462{left:311.850000px;}
.x97_c00462{left:312.900000px;}
.x43_c00462{left:315.150000px;}
.x6f_c00462{left:316.200000px;}
.x9_c00462{left:319.050000px;}
.xa3_c00462{left:320.100000px;}
.x5b_c00462{left:322.500000px;}
.x95_c00462{left:323.550000px;}
.x1_c00462{left:324.750000px;}
.x79_c00462{left:326.250000px;}
.x67_c00462{left:327.600000px;}
.x28_c00462{left:329.850000px;}
.xa_c00462{left:331.650000px;}
.x54_c00462{left:333.000000px;}
.x4f_c00462{left:335.550000px;}
.x70_c00462{left:337.050000px;}
.x11_c00462{left:338.250000px;}
.x8b_c00462{left:340.350000px;}
.x4a_c00462{left:342.450000px;}
.x90_c00462{left:343.950000px;}
.x75_c00462{left:346.200000px;}
.x5c_c00462{left:348.000000px;}
.x88_c00462{left:349.050000px;}
.x68_c00462{left:352.050000px;}
.x93_c00462{left:353.250000px;}
.xb_c00462{left:355.800000px;}
.x4b_c00462{left:356.850000px;}
.x82_c00462{left:358.800000px;}
.x1c_c00462{left:361.050000px;}
.x33_c00462{left:363.000000px;}
.x50_c00462{left:364.650000px;}
.x8e_c00462{left:366.600000px;}
.x17_c00462{left:368.550000px;}
.x83_c00462{left:370.500000px;}
.x8c_c00462{left:372.000000px;}
.x9b_c00462{left:374.400000px;}
.x29_c00462{left:375.600000px;}
.x64_c00462{left:377.100000px;}
.x7d_c00462{left:378.150000px;}
.x2e_c00462{left:380.250000px;}
.x4c_c00462{left:381.300000px;}
.x1d_c00462{left:382.650000px;}
.x58_c00462{left:386.250000px;}
.x55_c00462{left:387.750000px;}
.x7e_c00462{left:388.950000px;}
.x69_c00462{left:390.600000px;}
.xc_c00462{left:391.800000px;}
.x12_c00462{left:393.750000px;}
.x5d_c00462{left:395.850000px;}
.x76_c00462{left:397.950000px;}
.x71_c00462{left:399.750000px;}
.x6b_c00462{left:402.150000px;}
.xe1_c00462{left:434.100000px;}
.xa5_c00462{left:435.300000px;}
.x147_c00462{left:436.500000px;}
.x144_c00462{left:439.950000px;}
.xf2_c00462{left:449.250000px;}
.xc4_c00462{left:451.500000px;}
.xad_c00462{left:452.850000px;}
.x109_c00462{left:454.200000px;}
.xf3_c00462{left:459.000000px;}
.x145_c00462{left:462.300000px;}
.x13b_c00462{left:463.500000px;}
.x137_c00462{left:465.450000px;}
.xe5_c00462{left:467.250000px;}
.x13e_c00462{left:468.300000px;}
.xf8_c00462{left:470.400000px;}
.xdf_c00462{left:471.750000px;}
.xd2_c00462{left:474.900000px;}
.xc5_c00462{left:475.950000px;}
.xae_c00462{left:477.750000px;}
.xe6_c00462{left:479.550000px;}
.x136_c00462{left:484.500000px;}
.xee_c00462{left:486.450000px;}
.xb6_c00462{left:487.950000px;}
.x101_c00462{left:491.550000px;}
.xe0_c00462{left:492.600000px;}
.x111_c00462{left:494.700000px;}
.xd9_c00462{left:498.000000px;}
.xbe_c00462{left:499.350000px;}
.x102_c00462{left:501.600000px;}
.xa6_c00462{left:502.950000px;}
.x142_c00462{left:504.300000px;}
.xb7_c00462{left:505.650000px;}
.xaf_c00462{left:507.600000px;}
.x125_c00462{left:508.650000px;}
.xe2_c00462{left:510.450000px;}
.x14a_c00462{left:511.500000px;}
.x12c_c00462{left:512.700000px;}
.x11b_c00462{left:513.750000px;}
.xce_c00462{left:514.950000px;}
.x138_c00462{left:516.450000px;}
.xda_c00462{left:518.850000px;}
.xef_c00462{left:521.400000px;}
.xbf_c00462{left:523.500000px;}
.xf9_c00462{left:527.400000px;}
.x148_c00462{left:530.400000px;}
.xb8_c00462{left:532.350000px;}
.xa7_c00462{left:533.550000px;}
.xfd_c00462{left:535.200000px;}
.x12e_c00462{left:536.700000px;}
.x107_c00462{left:537.750000px;}
.x126_c00462{left:539.550000px;}
.x117_c00462{left:540.600000px;}
.xd3_c00462{left:541.950000px;}
.x12a_c00462{left:544.650000px;}
.x135_c00462{left:548.100000px;}
.x127_c00462{left:549.300000px;}
.x140_c00462{left:551.400000px;}
.x11e_c00462{left:552.600000px;}
.xb9_c00462{left:554.250000px;}
.xb0_c00462{left:555.900000px;}
.x10d_c00462{left:556.950000px;}
.x149_c00462{left:558.450000px;}
.xcf_c00462{left:559.650000px;}
.xe3_c00462{left:560.850000px;}
.xd4_c00462{left:562.500000px;}
.xe7_c00462{left:564.450000px;}
.xba_c00462{left:566.850000px;}
.x118_c00462{left:569.100000px;}
.x128_c00462{left:570.150000px;}
.xc6_c00462{left:571.350000px;}
.xc0_c00462{left:574.200000px;}
.x12f_c00462{left:576.000000px;}
.xf4_c00462{left:577.800000px;}
.xb1_c00462{left:579.000000px;}
.xa8_c00462{left:580.350000px;}
.x133_c00462{left:581.850000px;}
.xd5_c00462{left:583.350000px;}
.x103_c00462{left:584.400000px;}
.x13c_c00462{left:586.950000px;}
.x129_c00462{left:590.250000px;}
.xc7_c00462{left:591.450000px;}
.x119_c00462{left:593.250000px;}
.x112_c00462{left:595.050000px;}
.xc1_c00462{left:596.850000px;}
.xe9_c00462{left:598.350000px;}
.x130_c00462{left:600.150000px;}
.x14b_c00462{left:601.200000px;}
.xe8_c00462{left:603.000000px;}
.x11f_c00462{left:605.550000px;}
.xbb_c00462{left:607.200000px;}
.x108_c00462{left:608.550000px;}
.x104_c00462{left:610.350000px;}
.x123_c00462{left:611.700000px;}
.xfa_c00462{left:613.050000px;}
.x120_c00462{left:614.250000px;}
.xa9_c00462{left:616.350000px;}
.x10e_c00462{left:618.900000px;}
.x143_c00462{left:621.150000px;}
.xd0_c00462{left:622.950000px;}
.x10f_c00462{left:624.000000px;}
.xfe_c00462{left:625.950000px;}
.xb2_c00462{left:627.300000px;}
.xdb_c00462{left:630.150000px;}
.xc8_c00462{left:631.800000px;}
.xd1_c00462{left:635.850000px;}
.x13d_c00462{left:637.350000px;}
.xea_c00462{left:640.800000px;}
.x11a_c00462{left:641.850000px;}
.xf5_c00462{left:645.900000px;}
.xf0_c00462{left:647.850000px;}
.x113_c00462{left:649.050000px;}
.x11c_c00462{left:652.650000px;}
.xc9_c00462{left:654.150000px;}
.xd6_c00462{left:656.400000px;}
.x10a_c00462{left:657.450000px;}
.x139_c00462{left:659.700000px;}
.xe4_c00462{left:661.350000px;}
.xff_c00462{left:663.450000px;}
.xdc_c00462{left:665.400000px;}
.x134_c00462{left:666.900000px;}
.xeb_c00462{left:668.550000px;}
.x114_c00462{left:669.600000px;}
.x105_c00462{left:672.600000px;}
.xca_c00462{left:673.950000px;}
.xc2_c00462{left:676.800000px;}
.xd7_c00462{left:679.050000px;}
.x122_c00462{left:680.100000px;}
.xf1_c00462{left:681.300000px;}
.x146_c00462{left:682.500000px;}
.xbc_c00462{left:685.650000px;}
.xfb_c00462{left:690.750000px;}
.xb3_c00462{left:691.800000px;}
.x110_c00462{left:693.450000px;}
.xaa_c00462{left:694.800000px;}
.x10b_c00462{left:696.000000px;}
.x100_c00462{left:697.350000px;}
.xc3_c00462{left:699.150000px;}
.x13f_c00462{left:700.800000px;}
.x13a_c00462{left:701.850000px;}
.xdd_c00462{left:704.700000px;}
.xab_c00462{left:708.150000px;}
.x11d_c00462{left:711.300000px;}
.xd8_c00462{left:714.300000px;}
.x124_c00462{left:715.350000px;}
.x12d_c00462{left:717.150000px;}
.xcb_c00462{left:718.650000px;}
.xb4_c00462{left:721.350000px;}
.xec_c00462{left:723.600000px;}
.xde_c00462{left:725.550000px;}
.xf6_c00462{left:726.900000px;}
.x115_c00462{left:727.950000px;}
.x106_c00462{left:730.650000px;}
.x121_c00462{left:732.300000px;}
.xbd_c00462{left:735.450000px;}
.xcc_c00462{left:738.150000px;}
.x132_c00462{left:740.100000px;}
.xf7_c00462{left:743.400000px;}
.x116_c00462{left:744.450000px;}
.x2_c00462{left:746.250000px;}
.x141_c00462{left:747.900000px;}
.x10c_c00462{left:750.300000px;}
.xfc_c00462{left:751.950000px;}
.x12b_c00462{left:755.700000px;}
.xb5_c00462{left:757.650000px;}
.x131_c00462{left:759.300000px;}
.xed_c00462{left:760.350000px;}
.xcd_c00462{left:762.600000px;}
.xac_c00462{left:769.650000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws2_c00462{word-spacing:-7.639355pt;}
.ws7_c00462{word-spacing:-6.589915pt;}
.ws4_c00462{word-spacing:-6.164185pt;}
.ws3_c00462{word-spacing:-5.071895pt;}
.ws0_c00462{word-spacing:-3.950334pt;}
.ws1_c00462{word-spacing:-2.535127pt;}
.ws6_c00462{word-spacing:-1.406593pt;}
.wsb_c00462{word-spacing:0.000000pt;}
.ws9_c00462{word-spacing:6.388889pt;}
.ws5_c00462{word-spacing:14.471338pt;}
.ws8_c00462{word-spacing:22.857143pt;}
.wsa_c00462{word-spacing:53.333333pt;}
._0_c00462{width:42.777778pt;}
._2_c00462{width:82.777778pt;}
._1_c00462{width:85.555556pt;}
.fs5_c00462{font-size:48.000000pt;}
.fs4_c00462{font-size:53.333333pt;}
.fs3_c00462{font-size:58.666667pt;}
.fs2_c00462{font-size:64.000000pt;}
.fs6_c00462{font-size:69.333333pt;}
.fs1_c00462{font-size:85.333333pt;}
.fs0_c00462{font-size:101.333333pt;}
.y0_c00462{bottom:0.000000pt;}
.y6b_c00462{bottom:147.466667pt;}
.y6a_c00462{bottom:161.600000pt;}
.y35_c00462{bottom:161.866667pt;}
.y69_c00462{bottom:174.400000pt;}
.y34_c00462{bottom:175.333333pt;}
.y68_c00462{bottom:187.466667pt;}
.y33_c00462{bottom:188.000000pt;}
.y32_c00462{bottom:200.533333pt;}
.y31_c00462{bottom:213.066667pt;}
.y67_c00462{bottom:219.200000pt;}
.y66_c00462{bottom:232.000000pt;}
.y65_c00462{bottom:245.066667pt;}
.y30_c00462{bottom:249.600000pt;}
.y64_c00462{bottom:258.533333pt;}
.y2f_c00462{bottom:269.066667pt;}
.y63_c00462{bottom:270.666667pt;}
.y2e_c00462{bottom:284.800000pt;}
.y62_c00462{bottom:296.666667pt;}
.y2d_c00462{bottom:300.800000pt;}
.y61_c00462{bottom:310.400000pt;}
.y2c_c00462{bottom:316.800000pt;}
.y60_c00462{bottom:322.266667pt;}
.y2b_c00462{bottom:332.800000pt;}
.y5f_c00462{bottom:335.333333pt;}
.y5e_c00462{bottom:348.133333pt;}
.y2a_c00462{bottom:348.800000pt;}
.y5d_c00462{bottom:362.533333pt;}
.y29_c00462{bottom:364.800000pt;}
.y5c_c00462{bottom:373.333333pt;}
.y28_c00462{bottom:380.533333pt;}
.y5b_c00462{bottom:387.466667pt;}
.y27_c00462{bottom:396.266667pt;}
.y5a_c00462{bottom:404.133333pt;}
.y26_c00462{bottom:412.000000pt;}
.y59_c00462{bottom:420.133333pt;}
.y25_c00462{bottom:427.733333pt;}
.y58_c00462{bottom:435.866667pt;}
.y24_c00462{bottom:443.466667pt;}
.y57_c00462{bottom:451.866667pt;}
.y23_c00462{bottom:459.466667pt;}
.y56_c00462{bottom:467.866667pt;}
.y22_c00462{bottom:475.466667pt;}
.y55_c00462{bottom:483.866667pt;}
.y21_c00462{bottom:491.466667pt;}
.y54_c00462{bottom:503.333333pt;}
.y20_c00462{bottom:507.200000pt;}
.y53_c00462{bottom:519.333333pt;}
.y1f_c00462{bottom:527.200000pt;}
.y52_c00462{bottom:534.666667pt;}
.y1e_c00462{bottom:542.933333pt;}
.y51_c00462{bottom:550.666667pt;}
.y1d_c00462{bottom:558.933333pt;}
.y50_c00462{bottom:566.800000pt;}
.y1c_c00462{bottom:574.933333pt;}
.y4f_c00462{bottom:586.266667pt;}
.y1b_c00462{bottom:590.666667pt;}
.y4e_c00462{bottom:609.866667pt;}
.y1a_c00462{bottom:610.533333pt;}
.y4d_c00462{bottom:625.600000pt;}
.y19_c00462{bottom:626.266667pt;}
.y4c_c00462{bottom:641.600000pt;}
.y18_c00462{bottom:642.266667pt;}
.y4b_c00462{bottom:657.600000pt;}
.y17_c00462{bottom:658.266667pt;}
.y4a_c00462{bottom:673.600000pt;}
.y16_c00462{bottom:677.600000pt;}
.y49_c00462{bottom:689.333333pt;}
.y15_c00462{bottom:693.333333pt;}
.y48_c00462{bottom:705.600000pt;}
.y14_c00462{bottom:709.333333pt;}
.y47_c00462{bottom:721.333333pt;}
.y13_c00462{bottom:725.066667pt;}
.y46_c00462{bottom:737.333333pt;}
.y12_c00462{bottom:741.066667pt;}
.y45_c00462{bottom:753.333333pt;}
.y11_c00462{bottom:757.066667pt;}
.y44_c00462{bottom:769.333333pt;}
.y10_c00462{bottom:773.066667pt;}
.y43_c00462{bottom:785.333333pt;}
.yf_c00462{bottom:789.066667pt;}
.y42_c00462{bottom:800.800000pt;}
.ye_c00462{bottom:805.066667pt;}
.y41_c00462{bottom:816.533333pt;}
.yd_c00462{bottom:821.066667pt;}
.y40_c00462{bottom:832.266667pt;}
.yc_c00462{bottom:836.800000pt;}
.y3f_c00462{bottom:852.133333pt;}
.yb_c00462{bottom:856.666667pt;}
.ya_c00462{bottom:874.000000pt;}
.y3e_c00462{bottom:876.266667pt;}
.y9_c00462{bottom:888.666667pt;}
.y3d_c00462{bottom:892.533333pt;}
.y8_c00462{bottom:904.666667pt;}
.y3c_c00462{bottom:907.866667pt;}
.y3b_c00462{bottom:908.533333pt;}
.y3a_c00462{bottom:923.866667pt;}
.y7_c00462{bottom:924.400000pt;}
.y39_c00462{bottom:939.866667pt;}
.y6_c00462{bottom:940.400000pt;}
.y38_c00462{bottom:955.866667pt;}
.y5_c00462{bottom:956.400000pt;}
.y37_c00462{bottom:971.866667pt;}
.y4_c00462{bottom:972.400000pt;}
.y36_c00462{bottom:987.866667pt;}
.y3_c00462{bottom:988.133333pt;}
.y2_c00462{bottom:1010.533333pt;}
.y1_c00462{bottom:1011.866667pt;}
.h7_c00462{height:48.000000pt;}
.h6_c00462{height:53.333333pt;}
.h5_c00462{height:58.666667pt;}
.h4_c00462{height:64.000000pt;}
.h8_c00462{height:69.333333pt;}
.h3_c00462{height:85.333333pt;}
.h2_c00462{height:101.333333pt;}
.h0_c00462{height:1129.280029pt;}
.h1_c00462{height:1129.333333pt;}
.w0_c00462{width:851.840007pt;}
.w1_c00462{width:852.000000pt;}
.x0_c00462{left:0.000000pt;}
.x9d_c00462{left:67.733333pt;}
.x7a_c00462{left:69.066667pt;}
.xa4_c00462{left:77.066667pt;}
.x60_c00462{left:81.733333pt;}
.x3_c00462{left:83.200000pt;}
.xd_c00462{left:84.266667pt;}
.x44_c00462{left:85.866667pt;}
.x9c_c00462{left:88.266667pt;}
.x9f_c00462{left:97.600000pt;}
.x65_c00462{left:100.800000pt;}
.x22_c00462{left:102.133333pt;}
.x13_c00462{left:103.600000pt;}
.x47_c00462{left:106.533333pt;}
.x85_c00462{left:108.133333pt;}
.x34_c00462{left:110.533333pt;}
.x7f_c00462{left:112.133333pt;}
.x84_c00462{left:114.266667pt;}
.x18_c00462{left:115.733333pt;}
.x1e_c00462{left:117.466667pt;}
.x3f_c00462{left:119.200000pt;}
.x6c_c00462{left:120.933333pt;}
.x4_c00462{left:123.466667pt;}
.x61_c00462{left:125.200000pt;}
.x6a_c00462{left:127.066667pt;}
.x2a_c00462{left:128.133333pt;}
.x2f_c00462{left:129.066667pt;}
.x39_c00462{left:131.200000pt;}
.x80_c00462{left:133.200000pt;}
.x23_c00462{left:135.733333pt;}
.xa0_c00462{left:136.666667pt;}
.xe_c00462{left:138.933333pt;}
.x1f_c00462{left:139.866667pt;}
.x73_c00462{left:141.733333pt;}
.x59_c00462{left:143.600000pt;}
.x19_c00462{left:146.800000pt;}
.x7b_c00462{left:148.400000pt;}
.x3a_c00462{left:150.133333pt;}
.x48_c00462{left:152.266667pt;}
.x5_c00462{left:153.200000pt;}
.x20_c00462{left:155.866667pt;}
.x24_c00462{left:158.133333pt;}
.x51_c00462{left:159.333333pt;}
.x5e_c00462{left:160.533333pt;}
.x14_c00462{left:162.133333pt;}
.x66_c00462{left:164.133333pt;}
.x2b_c00462{left:165.200000pt;}
.x6_c00462{left:168.533333pt;}
.x30_c00462{left:169.733333pt;}
.xf_c00462{left:171.600000pt;}
.x8f_c00462{left:172.666667pt;}
.x15_c00462{left:174.933333pt;}
.x62_c00462{left:176.133333pt;}
.x98_c00462{left:177.333333pt;}
.xa1_c00462{left:178.666667pt;}
.x6d_c00462{left:181.333333pt;}
.x72_c00462{left:182.400000pt;}
.x89_c00462{left:184.000000pt;}
.x77_c00462{left:185.066667pt;}
.x45_c00462{left:187.333333pt;}
.x21_c00462{left:189.466667pt;}
.x40_c00462{left:190.533333pt;}
.x3b_c00462{left:191.733333pt;}
.x35_c00462{left:193.466667pt;}
.x86_c00462{left:195.733333pt;}
.x1a_c00462{left:197.600000pt;}
.x2c_c00462{left:198.800000pt;}
.x56_c00462{left:199.733333pt;}
.x25_c00462{left:201.333333pt;}
.x52_c00462{left:202.266667pt;}
.x9e_c00462{left:203.466667pt;}
.x49_c00462{left:205.600000pt;}
.x96_c00462{left:207.466667pt;}
.x7_c00462{left:208.800000pt;}
.x36_c00462{left:212.000000pt;}
.x9a_c00462{left:212.933333pt;}
.x78_c00462{left:213.866667pt;}
.x5a_c00462{left:214.933333pt;}
.x10_c00462{left:216.133333pt;}
.x31_c00462{left:218.666667pt;}
.x6e_c00462{left:220.000000pt;}
.x7c_c00462{left:220.933333pt;}
.x94_c00462{left:222.000000pt;}
.x63_c00462{left:225.066667pt;}
.x37_c00462{left:226.666667pt;}
.x41_c00462{left:228.666667pt;}
.x3c_c00462{left:230.133333pt;}
.x53_c00462{left:232.000000pt;}
.x99_c00462{left:236.533333pt;}
.x8a_c00462{left:239.066667pt;}
.x57_c00462{left:240.000000pt;}
.x46_c00462{left:243.066667pt;}
.x8_c00462{left:244.933333pt;}
.xa2_c00462{left:245.866667pt;}
.x4d_c00462{left:247.333333pt;}
.x3d_c00462{left:248.400000pt;}
.x26_c00462{left:250.000000pt;}
.x2d_c00462{left:251.333333pt;}
.x81_c00462{left:253.600000pt;}
.x32_c00462{left:254.533333pt;}
.x8d_c00462{left:255.466667pt;}
.x87_c00462{left:256.533333pt;}
.x91_c00462{left:257.466667pt;}
.x16_c00462{left:259.733333pt;}
.x42_c00462{left:261.600000pt;}
.x5f_c00462{left:264.533333pt;}
.x92_c00462{left:265.733333pt;}
.x1b_c00462{left:266.800000pt;}
.x27_c00462{left:268.933333pt;}
.x3e_c00462{left:271.466667pt;}
.x4e_c00462{left:274.266667pt;}
.x74_c00462{left:275.466667pt;}
.x38_c00462{left:277.200000pt;}
.x97_c00462{left:278.133333pt;}
.x43_c00462{left:280.133333pt;}
.x6f_c00462{left:281.066667pt;}
.x9_c00462{left:283.600000pt;}
.xa3_c00462{left:284.533333pt;}
.x5b_c00462{left:286.666667pt;}
.x95_c00462{left:287.600000pt;}
.x1_c00462{left:288.666667pt;}
.x79_c00462{left:290.000000pt;}
.x67_c00462{left:291.200000pt;}
.x28_c00462{left:293.200000pt;}
.xa_c00462{left:294.800000pt;}
.x54_c00462{left:296.000000pt;}
.x4f_c00462{left:298.266667pt;}
.x70_c00462{left:299.600000pt;}
.x11_c00462{left:300.666667pt;}
.x8b_c00462{left:302.533333pt;}
.x4a_c00462{left:304.400000pt;}
.x90_c00462{left:305.733333pt;}
.x75_c00462{left:307.733333pt;}
.x5c_c00462{left:309.333333pt;}
.x88_c00462{left:310.266667pt;}
.x68_c00462{left:312.933333pt;}
.x93_c00462{left:314.000000pt;}
.xb_c00462{left:316.266667pt;}
.x4b_c00462{left:317.200000pt;}
.x82_c00462{left:318.933333pt;}
.x1c_c00462{left:320.933333pt;}
.x33_c00462{left:322.666667pt;}
.x50_c00462{left:324.133333pt;}
.x8e_c00462{left:325.866667pt;}
.x17_c00462{left:327.600000pt;}
.x83_c00462{left:329.333333pt;}
.x8c_c00462{left:330.666667pt;}
.x9b_c00462{left:332.800000pt;}
.x29_c00462{left:333.866667pt;}
.x64_c00462{left:335.200000pt;}
.x7d_c00462{left:336.133333pt;}
.x2e_c00462{left:338.000000pt;}
.x4c_c00462{left:338.933333pt;}
.x1d_c00462{left:340.133333pt;}
.x58_c00462{left:343.333333pt;}
.x55_c00462{left:344.666667pt;}
.x7e_c00462{left:345.733333pt;}
.x69_c00462{left:347.200000pt;}
.xc_c00462{left:348.266667pt;}
.x12_c00462{left:350.000000pt;}
.x5d_c00462{left:351.866667pt;}
.x76_c00462{left:353.733333pt;}
.x71_c00462{left:355.333333pt;}
.x6b_c00462{left:357.466667pt;}
.xe1_c00462{left:385.866667pt;}
.xa5_c00462{left:386.933333pt;}
.x147_c00462{left:388.000000pt;}
.x144_c00462{left:391.066667pt;}
.xf2_c00462{left:399.333333pt;}
.xc4_c00462{left:401.333333pt;}
.xad_c00462{left:402.533333pt;}
.x109_c00462{left:403.733333pt;}
.xf3_c00462{left:408.000000pt;}
.x145_c00462{left:410.933333pt;}
.x13b_c00462{left:412.000000pt;}
.x137_c00462{left:413.733333pt;}
.xe5_c00462{left:415.333333pt;}
.x13e_c00462{left:416.266667pt;}
.xf8_c00462{left:418.133333pt;}
.xdf_c00462{left:419.333333pt;}
.xd2_c00462{left:422.133333pt;}
.xc5_c00462{left:423.066667pt;}
.xae_c00462{left:424.666667pt;}
.xe6_c00462{left:426.266667pt;}
.x136_c00462{left:430.666667pt;}
.xee_c00462{left:432.400000pt;}
.xb6_c00462{left:433.733333pt;}
.x101_c00462{left:436.933333pt;}
.xe0_c00462{left:437.866667pt;}
.x111_c00462{left:439.733333pt;}
.xd9_c00462{left:442.666667pt;}
.xbe_c00462{left:443.866667pt;}
.x102_c00462{left:445.866667pt;}
.xa6_c00462{left:447.066667pt;}
.x142_c00462{left:448.266667pt;}
.xb7_c00462{left:449.466667pt;}
.xaf_c00462{left:451.200000pt;}
.x125_c00462{left:452.133333pt;}
.xe2_c00462{left:453.733333pt;}
.x14a_c00462{left:454.666667pt;}
.x12c_c00462{left:455.733333pt;}
.x11b_c00462{left:456.666667pt;}
.xce_c00462{left:457.733333pt;}
.x138_c00462{left:459.066667pt;}
.xda_c00462{left:461.200000pt;}
.xef_c00462{left:463.466667pt;}
.xbf_c00462{left:465.333333pt;}
.xf9_c00462{left:468.800000pt;}
.x148_c00462{left:471.466667pt;}
.xb8_c00462{left:473.200000pt;}
.xa7_c00462{left:474.266667pt;}
.xfd_c00462{left:475.733333pt;}
.x12e_c00462{left:477.066667pt;}
.x107_c00462{left:478.000000pt;}
.x126_c00462{left:479.600000pt;}
.x117_c00462{left:480.533333pt;}
.xd3_c00462{left:481.733333pt;}
.x12a_c00462{left:484.133333pt;}
.x135_c00462{left:487.200000pt;}
.x127_c00462{left:488.266667pt;}
.x140_c00462{left:490.133333pt;}
.x11e_c00462{left:491.200000pt;}
.xb9_c00462{left:492.666667pt;}
.xb0_c00462{left:494.133333pt;}
.x10d_c00462{left:495.066667pt;}
.x149_c00462{left:496.400000pt;}
.xcf_c00462{left:497.466667pt;}
.xe3_c00462{left:498.533333pt;}
.xd4_c00462{left:500.000000pt;}
.xe7_c00462{left:501.733333pt;}
.xba_c00462{left:503.866667pt;}
.x118_c00462{left:505.866667pt;}
.x128_c00462{left:506.800000pt;}
.xc6_c00462{left:507.866667pt;}
.xc0_c00462{left:510.400000pt;}
.x12f_c00462{left:512.000000pt;}
.xf4_c00462{left:513.600000pt;}
.xb1_c00462{left:514.666667pt;}
.xa8_c00462{left:515.866667pt;}
.x133_c00462{left:517.200000pt;}
.xd5_c00462{left:518.533333pt;}
.x103_c00462{left:519.466667pt;}
.x13c_c00462{left:521.733333pt;}
.x129_c00462{left:524.666667pt;}
.xc7_c00462{left:525.733333pt;}
.x119_c00462{left:527.333333pt;}
.x112_c00462{left:528.933333pt;}
.xc1_c00462{left:530.533333pt;}
.xe9_c00462{left:531.866667pt;}
.x130_c00462{left:533.466667pt;}
.x14b_c00462{left:534.400000pt;}
.xe8_c00462{left:536.000000pt;}
.x11f_c00462{left:538.266667pt;}
.xbb_c00462{left:539.733333pt;}
.x108_c00462{left:540.933333pt;}
.x104_c00462{left:542.533333pt;}
.x123_c00462{left:543.733333pt;}
.xfa_c00462{left:544.933333pt;}
.x120_c00462{left:546.000000pt;}
.xa9_c00462{left:547.866667pt;}
.x10e_c00462{left:550.133333pt;}
.x143_c00462{left:552.133333pt;}
.xd0_c00462{left:553.733333pt;}
.x10f_c00462{left:554.666667pt;}
.xfe_c00462{left:556.400000pt;}
.xb2_c00462{left:557.600000pt;}
.xdb_c00462{left:560.133333pt;}
.xc8_c00462{left:561.600000pt;}
.xd1_c00462{left:565.200000pt;}
.x13d_c00462{left:566.533333pt;}
.xea_c00462{left:569.600000pt;}
.x11a_c00462{left:570.533333pt;}
.xf5_c00462{left:574.133333pt;}
.xf0_c00462{left:575.866667pt;}
.x113_c00462{left:576.933333pt;}
.x11c_c00462{left:580.133333pt;}
.xc9_c00462{left:581.466667pt;}
.xd6_c00462{left:583.466667pt;}
.x10a_c00462{left:584.400000pt;}
.x139_c00462{left:586.400000pt;}
.xe4_c00462{left:587.866667pt;}
.xff_c00462{left:589.733333pt;}
.xdc_c00462{left:591.466667pt;}
.x134_c00462{left:592.800000pt;}
.xeb_c00462{left:594.266667pt;}
.x114_c00462{left:595.200000pt;}
.x105_c00462{left:597.866667pt;}
.xca_c00462{left:599.066667pt;}
.xc2_c00462{left:601.600000pt;}
.xd7_c00462{left:603.600000pt;}
.x122_c00462{left:604.533333pt;}
.xf1_c00462{left:605.600000pt;}
.x146_c00462{left:606.666667pt;}
.xbc_c00462{left:609.466667pt;}
.xfb_c00462{left:614.000000pt;}
.xb3_c00462{left:614.933333pt;}
.x110_c00462{left:616.400000pt;}
.xaa_c00462{left:617.600000pt;}
.x10b_c00462{left:618.666667pt;}
.x100_c00462{left:619.866667pt;}
.xc3_c00462{left:621.466667pt;}
.x13f_c00462{left:622.933333pt;}
.x13a_c00462{left:623.866667pt;}
.xdd_c00462{left:626.400000pt;}
.xab_c00462{left:629.466667pt;}
.x11d_c00462{left:632.266667pt;}
.xd8_c00462{left:634.933333pt;}
.x124_c00462{left:635.866667pt;}
.x12d_c00462{left:637.466667pt;}
.xcb_c00462{left:638.800000pt;}
.xb4_c00462{left:641.200000pt;}
.xec_c00462{left:643.200000pt;}
.xde_c00462{left:644.933333pt;}
.xf6_c00462{left:646.133333pt;}
.x115_c00462{left:647.066667pt;}
.x106_c00462{left:649.466667pt;}
.x121_c00462{left:650.933333pt;}
.xbd_c00462{left:653.733333pt;}
.xcc_c00462{left:656.133333pt;}
.x132_c00462{left:657.866667pt;}
.xf7_c00462{left:660.800000pt;}
.x116_c00462{left:661.733333pt;}
.x2_c00462{left:663.333333pt;}
.x141_c00462{left:664.800000pt;}
.x10c_c00462{left:666.933333pt;}
.xfc_c00462{left:668.400000pt;}
.x12b_c00462{left:671.733333pt;}
.xb5_c00462{left:673.466667pt;}
.x131_c00462{left:674.933333pt;}
.xed_c00462{left:675.866667pt;}
.xcd_c00462{left:677.866667pt;}
.xac_c00462{left:684.133333pt;}
}





/* 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_c00463 {
    display:none;
  }
  .loading-indicator_c00463.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00463 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_c00463 { 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_c00463" -> "#page-container .classname_c00463")
 */
.pf_c00463 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00463 { /* 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_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00463 { /* 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_c00463 { /* 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_c00463 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00463 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00463 {overflow:visible;}
  }
}
.c_c00463 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00463 { /* 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_c00463:after { /* webkit #35443 */
  content: '';
}
.t_c00463:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00463 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 */
}
.__c00463 { /* 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_c00463 { /* info for Javascript */
  display:none;
}
.l_c00463 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00463 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00463 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00463: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_c00463 {
    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_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00463.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_c00463 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00463;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.000000;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;}
.ma5_c00463{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.me0_c00463{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mf_c00463{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m116_c00463{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.me_c00463{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00463{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m10_c00463{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00463{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00463{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00463{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m121_c00463{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00463{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m36_c00463{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m94_c00463{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mde_c00463{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m13_c00463{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00463{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m11_c00463{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00463{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m21_c00463{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m105_c00463{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00463{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00463{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00463{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00463{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb_c00463{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m28_c00463{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m5_c00463{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m91_c00463{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m106_c00463{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00463{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m25_c00463{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m103_c00463{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00463{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m67_c00463{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m101_c00463{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m27_c00463{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m52_c00463{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m7_c00463{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9_c00463{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00463{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m81_c00463{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00463{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mce_c00463{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m23_c00463{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m57_c00463{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m79_c00463{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m30_c00463{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00463{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00463{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00463{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m51_c00463{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00463{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m113_c00463{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mca_c00463{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00463{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me8_c00463{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m89_c00463{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00463{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00463{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00463{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m92_c00463{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m119_c00463{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00463{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md1_c00463{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00463{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00463{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m88_c00463{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m111_c00463{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00463{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00463{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.ma_c00463{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m80_c00463{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.md0_c00463{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00463{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m72_c00463{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00463{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00463{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00463{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00463{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m93_c00463{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m26_c00463{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.me1_c00463{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00463{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00463{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m47_c00463{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00463{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00463{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00463{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00463{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mab_c00463{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00463{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md4_c00463{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00463{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md_c00463{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m109_c00463{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m78_c00463{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mea_c00463{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m50_c00463{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m99_c00463{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00463{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8_c00463{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00463{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m22_c00463{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md5_c00463{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m117_c00463{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m90_c00463{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00463{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mae_c00463{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m66_c00463{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m61_c00463{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m77_c00463{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00463{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mad_c00463{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m46_c00463{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00463{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00463{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00463{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m63_c00463{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m49_c00463{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00463{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00463{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mef_c00463{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m35_c00463{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00463{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00463{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00463{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m65_c00463{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m43_c00463{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00463{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m53_c00463{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00463{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00463{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m97_c00463{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m71_c00463{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mc_c00463{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m38_c00463{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m73_c00463{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00463{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m76_c00463{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00463{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00463{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00463{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00463{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00463{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00463{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00463{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mee_c00463{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m115_c00463{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m70_c00463{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00463{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m33_c00463{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6_c00463{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00463{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00463{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00463{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m44_c00463{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m45_c00463{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m64_c00463{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m60_c00463{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m39_c00463{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00463{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00463{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00463{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00463{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m42_c00463{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00463{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m12_c00463{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00463{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m24_c00463{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00463{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m84_c00463{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00463{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m34_c00463{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00463{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00463{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m17_c00463{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m75_c00463{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00463{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mac_c00463{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m82_c00463{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m56_c00463{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m59_c00463{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m107_c00463{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m69_c00463{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m95_c00463{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00463{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m112_c00463{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m41_c00463{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mba_c00463{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00463{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m55_c00463{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m74_c00463{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md9_c00463{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m18_c00463{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00463{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00463{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m32_c00463{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m29_c00463{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m4_c00463{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m37_c00463{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m102_c00463{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m16_c00463{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00463{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.md7_c00463{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00463{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.me2_c00463{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.me5_c00463{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00463{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m110_c00463{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00463{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m19_c00463{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m40_c00463{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00463{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00463{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m96_c00463{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00463{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m54_c00463{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00463{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m98_c00463{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.maf_c00463{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me4_c00463{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m108_c00463{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m85_c00463{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3_c00463{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m15_c00463{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00463{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00463{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00463{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md2_c00463{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md6_c00463{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m104_c00463{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00463{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m68_c00463{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m86_c00463{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00463{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00463{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mff_c00463{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00463{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m83_c00463{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00463{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m48_c00463{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m87_c00463{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00463{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00463{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me3_c00463{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00463{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m62_c00463{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00463{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md8_c00463{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m114_c00463{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m58_c00463{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00463{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00463{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mda_c00463{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00463{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.me6_c00463{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md3_c00463{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me7_c00463{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m20_c00463{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.meb_c00463{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.maa_c00463{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00463{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00463{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m100_c00463{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00463{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m31_c00463{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00463{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00463{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00463{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00463{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00463{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00463{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m118_c00463{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00463{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00463{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00463{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.med_c00463{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mec_c00463{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00463{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m120_c00463{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00463{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00463{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00463{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.me9_c00463{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m14_c00463{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00463{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls0_c00463{letter-spacing:0.000000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{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__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00463{word-spacing:-12.150838px;}
.wse_c00463{word-spacing:-10.509554px;}
.wsc_c00463{word-spacing:-10.248869px;}
.wsd_c00463{word-spacing:-3.630573px;}
.ws11_c00463{word-spacing:0.000000px;}
.wsf_c00463{word-spacing:1.603136px;}
.ws10_c00463{word-spacing:1.730458px;}
.ws6_c00463{word-spacing:6.121294px;}
.ws9_c00463{word-spacing:7.500000px;}
.wsa_c00463{word-spacing:10.000000px;}
.ws4_c00463{word-spacing:12.644809px;}
.ws7_c00463{word-spacing:13.907117px;}
.ws3_c00463{word-spacing:15.500000px;}
.ws2_c00463{word-spacing:18.125000px;}
.ws8_c00463{word-spacing:20.329609px;}
.ws1_c00463{word-spacing:25.714286px;}
.ws0_c00463{word-spacing:29.583333px;}
.ws5_c00463{word-spacing:46.411358px;}
._2_c00463{width:41.500000px;}
._1_c00463{width:52.142857px;}
._0_c00463{width:64.642857px;}
.fc0_c00463{color:transparent;}
.fs8_c00463{font-size:36.000000px;}
.fs4_c00463{font-size:42.000000px;}
.fs9_c00463{font-size:48.000000px;}
.fs7_c00463{font-size:54.000000px;}
.fs3_c00463{font-size:60.000000px;}
.fs6_c00463{font-size:66.000000px;}
.fs5_c00463{font-size:72.000000px;}
.fs2_c00463{font-size:78.000000px;}
.fs1_c00463{font-size:84.000000px;}
.fs0_c00463{font-size:96.000000px;}
.y0_c00463{bottom:0.000000px;}
.y38_c00463{bottom:190.350000px;}
.y6b_c00463{bottom:190.800000px;}
.y37_c00463{bottom:204.450000px;}
.y6a_c00463{bottom:209.100000px;}
.y35_c00463{bottom:217.500000px;}
.y36_c00463{bottom:218.550000px;}
.y69_c00463{bottom:231.150000px;}
.y34_c00463{bottom:232.500000px;}
.y33_c00463{bottom:246.900000px;}
.y68_c00463{bottom:255.300000px;}
.y32_c00463{bottom:260.700000px;}
.y67_c00463{bottom:275.400000px;}
.y66_c00463{bottom:293.100000px;}
.y31_c00463{bottom:306.450000px;}
.y65_c00463{bottom:314.700000px;}
.y30_c00463{bottom:324.150000px;}
.y64_c00463{bottom:333.000000px;}
.y2f_c00463{bottom:341.850000px;}
.y63_c00463{bottom:353.850000px;}
.y2e_c00463{bottom:359.550000px;}
.y62_c00463{bottom:371.850000px;}
.y2d_c00463{bottom:377.250000px;}
.y61_c00463{bottom:390.150000px;}
.y2c_c00463{bottom:395.250000px;}
.y60_c00463{bottom:408.150000px;}
.y2b_c00463{bottom:413.250000px;}
.y5f_c00463{bottom:425.850000px;}
.y2a_c00463{bottom:437.700000px;}
.y5e_c00463{bottom:444.150000px;}
.y29_c00463{bottom:459.750000px;}
.y5d_c00463{bottom:461.850000px;}
.y28_c00463{bottom:478.050000px;}
.y5c_c00463{bottom:479.850000px;}
.y27_c00463{bottom:495.750000px;}
.y5b_c00463{bottom:497.850000px;}
.y26_c00463{bottom:513.750000px;}
.y5a_c00463{bottom:515.850000px;}
.y25_c00463{bottom:531.300000px;}
.y59_c00463{bottom:533.850000px;}
.y24_c00463{bottom:549.300000px;}
.y58_c00463{bottom:554.100000px;}
.y23_c00463{bottom:567.000000px;}
.y57_c00463{bottom:568.500000px;}
.y22_c00463{bottom:584.700000px;}
.y56_c00463{bottom:588.750000px;}
.y21_c00463{bottom:602.400000px;}
.y55_c00463{bottom:607.050000px;}
.y20_c00463{bottom:620.700000px;}
.y54_c00463{bottom:625.050000px;}
.y1f_c00463{bottom:638.400000px;}
.y53_c00463{bottom:643.350000px;}
.y1e_c00463{bottom:656.400000px;}
.y52_c00463{bottom:661.350000px;}
.y1d_c00463{bottom:674.400000px;}
.y51_c00463{bottom:679.350000px;}
.y1c_c00463{bottom:692.400000px;}
.y50_c00463{bottom:701.250000px;}
.y1b_c00463{bottom:710.100000px;}
.y4f_c00463{bottom:719.250000px;}
.y1a_c00463{bottom:728.100000px;}
.y4e_c00463{bottom:737.550000px;}
.y19_c00463{bottom:746.100000px;}
.y4d_c00463{bottom:755.250000px;}
.y18_c00463{bottom:764.100000px;}
.y4c_c00463{bottom:772.950000px;}
.y17_c00463{bottom:781.800000px;}
.y16_c00463{bottom:799.800000px;}
.y4b_c00463{bottom:801.000000px;}
.y15_c00463{bottom:817.500000px;}
.y4a_c00463{bottom:821.850000px;}
.y14_c00463{bottom:835.500000px;}
.y49_c00463{bottom:840.150000px;}
.y13_c00463{bottom:853.500000px;}
.y48_c00463{bottom:858.150000px;}
.y12_c00463{bottom:871.500000px;}
.y47_c00463{bottom:876.450000px;}
.y11_c00463{bottom:889.500000px;}
.y46_c00463{bottom:894.150000px;}
.y10_c00463{bottom:907.200000px;}
.y45_c00463{bottom:911.850000px;}
.y39_c00463{bottom:912.300000px;}
.yf_c00463{bottom:925.200000px;}
.y44_c00463{bottom:933.750000px;}
.ye_c00463{bottom:943.200000px;}
.y43_c00463{bottom:952.500000px;}
.yd_c00463{bottom:961.200000px;}
.y42_c00463{bottom:970.500000px;}
.yc_c00463{bottom:978.900000px;}
.y41_c00463{bottom:988.500000px;}
.yb_c00463{bottom:996.900000px;}
.y40_c00463{bottom:1006.500000px;}
.ya_c00463{bottom:1014.900000px;}
.y3f_c00463{bottom:1024.500000px;}
.y9_c00463{bottom:1032.900000px;}
.y3e_c00463{bottom:1042.200000px;}
.y8_c00463{bottom:1059.000000px;}
.y3d_c00463{bottom:1060.500000px;}
.y7_c00463{bottom:1073.100000px;}
.y3c_c00463{bottom:1078.200000px;}
.y6_c00463{bottom:1086.450000px;}
.y3b_c00463{bottom:1096.200000px;}
.y5_c00463{bottom:1102.350000px;}
.y3a_c00463{bottom:1113.900000px;}
.y4_c00463{bottom:1117.500000px;}
.y1_c00463{bottom:1135.800000px;}
.y3_c00463{bottom:1139.400000px;}
.y2_c00463{bottom:1140.900000px;}
.ha_c00463{height:36.000000px;}
.h6_c00463{height:42.000000px;}
.hb_c00463{height:48.000000px;}
.h9_c00463{height:54.000000px;}
.h5_c00463{height:60.000000px;}
.h8_c00463{height:66.000000px;}
.h7_c00463{height:72.000000px;}
.h4_c00463{height:78.000000px;}
.h3_c00463{height:84.000000px;}
.h2_c00463{height:96.000000px;}
.h1_c00463{height:1273.500000px;}
.h0_c00463{height:1273.679993px;}
.w0_c00463{width:958.320007px;}
.w1_c00463{width:958.500000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:186.450000px;}
.xa2_c00463{left:188.250000px;}
.x29_c00463{left:190.500000px;}
.xa6_c00463{left:194.400000px;}
.x97_c00463{left:195.450000px;}
.x3_c00463{left:196.650000px;}
.xe_c00463{left:203.100000px;}
.x22_c00463{left:204.900000px;}
.x93_c00463{left:205.950000px;}
.x7f_c00463{left:207.000000px;}
.x34_c00463{left:208.050000px;}
.x65_c00463{left:209.100000px;}
.xab_c00463{left:215.250000px;}
.x4_c00463{left:217.500000px;}
.x1b_c00463{left:219.000000px;}
.xa7_c00463{left:221.400000px;}
.x4c_c00463{left:225.150000px;}
.xa0_c00463{left:226.500000px;}
.x6c_c00463{left:228.750000px;}
.xf_c00463{left:230.850000px;}
.x6e_c00463{left:232.050000px;}
.x8f_c00463{left:233.700000px;}
.x57_c00463{left:235.650000px;}
.x85_c00463{left:237.900000px;}
.x1c_c00463{left:240.900000px;}
.x70_c00463{left:242.100000px;}
.x94_c00463{left:243.750000px;}
.x3b_c00463{left:245.250000px;}
.x5f_c00463{left:247.350000px;}
.x8d_c00463{left:249.150000px;}
.x35_c00463{left:250.950000px;}
.x84_c00463{left:252.450000px;}
.x41_c00463{left:254.550000px;}
.x72_c00463{left:256.950000px;}
.x9d_c00463{left:258.000000px;}
.x51_c00463{left:260.850000px;}
.x1d_c00463{left:263.250000px;}
.x36_c00463{left:264.600000px;}
.x60_c00463{left:266.400000px;}
.x58_c00463{left:269.100000px;}
.x42_c00463{left:271.500000px;}
.x2a_c00463{left:273.600000px;}
.x9b_c00463{left:276.900000px;}
.x7c_c00463{left:278.100000px;}
.x47_c00463{left:279.150000px;}
.x5_c00463{left:281.550000px;}
.x5a_c00463{left:283.950000px;}
.x10_c00463{left:285.600000px;}
.x4d_c00463{left:289.200000px;}
.xa1_c00463{left:292.050000px;}
.x37_c00463{left:294.900000px;}
.x90_c00463{left:295.950000px;}
.x5c_c00463{left:298.650000px;}
.x6_c00463{left:300.600000px;}
.x52_c00463{left:303.600000px;}
.x8e_c00463{left:305.250000px;}
.x2b_c00463{left:306.750000px;}
.x1e_c00463{left:308.550000px;}
.x92_c00463{left:309.900000px;}
.x4e_c00463{left:311.100000px;}
.x7_c00463{left:315.000000px;}
.x9c_c00463{left:316.500000px;}
.x11_c00463{left:318.300000px;}
.x61_c00463{left:319.650000px;}
.x3c_c00463{left:320.850000px;}
.x77_c00463{left:322.350000px;}
.x91_c00463{left:323.700000px;}
.x43_c00463{left:324.750000px;}
.x12_c00463{left:325.800000px;}
.x38_c00463{left:328.050000px;}
.x3d_c00463{left:329.100000px;}
.x89_c00463{left:330.750000px;}
.x13_c00463{left:332.250000px;}
.x82_c00463{left:334.050000px;}
.x53_c00463{left:336.750000px;}
.x1f_c00463{left:338.400000px;}
.x14_c00463{left:339.750000px;}
.x2c_c00463{left:341.700000px;}
.x73_c00463{left:343.350000px;}
.x69_c00463{left:345.600000px;}
.x15_c00463{left:347.700000px;}
.x39_c00463{left:353.550000px;}
.x23_c00463{left:355.350000px;}
.x66_c00463{left:356.700000px;}
.x4f_c00463{left:358.350000px;}
.x80_c00463{left:360.300000px;}
.x16_c00463{left:361.350000px;}
.x8_c00463{left:363.300000px;}
.x9e_c00463{left:364.350000px;}
.x3e_c00463{left:365.400000px;}
.x78_c00463{left:368.400000px;}
.x6d_c00463{left:369.450000px;}
.x2d_c00463{left:370.500000px;}
.x83_c00463{left:373.650000px;}
.x44_c00463{left:375.150000px;}
.xa4_c00463{left:377.550000px;}
.x7d_c00463{left:381.900000px;}
.x24_c00463{left:384.150000px;}
.x5d_c00463{left:385.350000px;}
.x2e_c00463{left:387.000000px;}
.x8a_c00463{left:388.050000px;}
.x20_c00463{left:389.100000px;}
.x86_c00463{left:391.500000px;}
.x95_c00463{left:393.750000px;}
.x71_c00463{left:394.800000px;}
.x25_c00463{left:398.850000px;}
.x67_c00463{left:401.400000px;}
.xa9_c00463{left:402.900000px;}
.x9_c00463{left:406.200000px;}
.x79_c00463{left:408.000000px;}
.x21_c00463{left:412.200000px;}
.x26_c00463{left:413.250000px;}
.x2f_c00463{left:416.850000px;}
.x6f_c00463{left:418.200000px;}
.xa5_c00463{left:419.250000px;}
.xa_c00463{left:420.300000px;}
.x54_c00463{left:421.350000px;}
.x74_c00463{left:422.550000px;}
.x48_c00463{left:423.900000px;}
.x17_c00463{left:426.600000px;}
.x62_c00463{left:428.250000px;}
.x6a_c00463{left:429.450000px;}
.x2_c00463{left:430.950000px;}
.x9f_c00463{left:432.300000px;}
.x30_c00463{left:434.550000px;}
.x87_c00463{left:436.500000px;}
.x50_c00463{left:439.050000px;}
.x7a_c00463{left:440.100000px;}
.x45_c00463{left:441.450000px;}
.x55_c00463{left:442.650000px;}
.xb_c00463{left:443.700000px;}
.x7e_c00463{left:444.900000px;}
.xaa_c00463{left:446.100000px;}
.x63_c00463{left:448.050000px;}
.x31_c00463{left:450.000000px;}
.x5e_c00463{left:451.050000px;}
.xa3_c00463{left:452.100000px;}
.x18_c00463{left:453.150000px;}
.x27_c00463{left:454.350000px;}
.x88_c00463{left:455.550000px;}
.x3a_c00463{left:456.600000px;}
.x75_c00463{left:458.850000px;}
.x96_c00463{left:461.400000px;}
.x49_c00463{left:462.450000px;}
.x3f_c00463{left:465.450000px;}
.x6b_c00463{left:466.650000px;}
.x99_c00463{left:468.450000px;}
.x56_c00463{left:471.750000px;}
.x4a_c00463{left:473.550000px;}
.xc_c00463{left:475.050000px;}
.x19_c00463{left:476.850000px;}
.x81_c00463{left:478.800000px;}
.x59_c00463{left:482.250000px;}
.x28_c00463{left:483.450000px;}
.x40_c00463{left:484.500000px;}
.x32_c00463{left:487.050000px;}
.x98_c00463{left:489.300000px;}
.x7b_c00463{left:492.300000px;}
.x8b_c00463{left:493.500000px;}
.x9a_c00463{left:494.700000px;}
.x33_c00463{left:496.050000px;}
.xa8_c00463{left:498.750000px;}
.x4b_c00463{left:499.800000px;}
.x64_c00463{left:501.750000px;}
.x5b_c00463{left:503.100000px;}
.x46_c00463{left:504.150000px;}
.x76_c00463{left:505.350000px;}
.x8c_c00463{left:506.850000px;}
.xd_c00463{left:509.550000px;}
.x1a_c00463{left:511.350000px;}
.x68_c00463{left:514.500000px;}
.xac_c00463{left:545.100000px;}
.x11e_c00463{left:559.200000px;}
.x121_c00463{left:560.550000px;}
.x10d_c00463{left:562.350000px;}
.xaf_c00463{left:563.400000px;}
.xee_c00463{left:568.350000px;}
.x132_c00463{left:571.350000px;}
.x128_c00463{left:573.750000px;}
.xc7_c00463{left:574.950000px;}
.xbf_c00463{left:580.200000px;}
.x109_c00463{left:581.400000px;}
.x117_c00463{left:582.600000px;}
.xff_c00463{left:584.400000px;}
.x13b_c00463{left:585.900000px;}
.x105_c00463{left:589.050000px;}
.x11a_c00463{left:590.700000px;}
.xcf_c00463{left:594.000000px;}
.xea_c00463{left:595.800000px;}
.x119_c00463{left:597.150000px;}
.xf6_c00463{left:598.200000px;}
.xdb_c00463{left:600.750000px;}
.xb0_c00463{left:602.700000px;}
.x13f_c00463{left:604.350000px;}
.xc0_c00463{left:605.400000px;}
.x12c_c00463{left:607.650000px;}
.xc8_c00463{left:608.850000px;}
.x11f_c00463{left:611.400000px;}
.xb7_c00463{left:612.900000px;}
.x10e_c00463{left:614.850000px;}
.xad_c00463{left:616.350000px;}
.x114_c00463{left:617.550000px;}
.x12f_c00463{left:618.900000px;}
.x140_c00463{left:620.850000px;}
.xdc_c00463{left:622.050000px;}
.xf0_c00463{left:623.700000px;}
.xc1_c00463{left:625.200000px;}
.x11b_c00463{left:627.000000px;}
.x129_c00463{left:628.200000px;}
.x10f_c00463{left:630.300000px;}
.xd5_c00463{left:631.800000px;}
.xe4_c00463{left:635.850000px;}
.xb8_c00463{left:638.400000px;}
.x103_c00463{left:640.950000px;}
.x122_c00463{left:643.800000px;}
.xf1_c00463{left:645.300000px;}
.x13c_c00463{left:646.350000px;}
.xc9_c00463{left:649.500000px;}
.xb1_c00463{left:652.800000px;}
.xd6_c00463{left:654.900000px;}
.xfa_c00463{left:659.550000px;}
.x104_c00463{left:661.050000px;}
.x123_c00463{left:662.850000px;}
.xe5_c00463{left:664.950000px;}
.x110_c00463{left:666.600000px;}
.xae_c00463{left:670.050000px;}
.xca_c00463{left:672.150000px;}
.x106_c00463{left:673.200000px;}
.x11c_c00463{left:675.900000px;}
.x13e_c00463{left:678.000000px;}
.x136_c00463{left:679.650000px;}
.xdd_c00463{left:681.450000px;}
.xc2_c00463{left:682.500000px;}
.xd0_c00463{left:684.300000px;}
.x12d_c00463{left:685.500000px;}
.xf7_c00463{left:686.850000px;}
.x144_c00463{left:688.350000px;}
.xd7_c00463{left:689.400000px;}
.xb2_c00463{left:691.350000px;}
.x125_c00463{left:693.150000px;}
.x111_c00463{left:696.450000px;}
.x10a_c00463{left:697.650000px;}
.xe6_c00463{left:699.450000px;}
.x147_c00463{left:701.700000px;}
.x133_c00463{left:702.750000px;}
.xde_c00463{left:704.550000px;}
.x100_c00463{left:706.050000px;}
.x107_c00463{left:708.150000px;}
.x118_c00463{left:710.700000px;}
.xcb_c00463{left:712.500000px;}
.xf2_c00463{left:713.700000px;}
.xb9_c00463{left:716.100000px;}
.xc3_c00463{left:717.450000px;}
.x108_c00463{left:719.250000px;}
.xd8_c00463{left:720.300000px;}
.x124_c00463{left:722.550000px;}
.x143_c00463{left:724.800000px;}
.xd1_c00463{left:727.800000px;}
.xcc_c00463{left:733.350000px;}
.x12a_c00463{left:735.450000px;}
.x134_c00463{left:737.250000px;}
.x101_c00463{left:738.450000px;}
.xeb_c00463{left:740.100000px;}
.xb3_c00463{left:742.500000px;}
.xba_c00463{left:745.200000px;}
.xfb_c00463{left:746.700000px;}
.xd2_c00463{left:748.350000px;}
.xf8_c00463{left:750.600000px;}
.x10b_c00463{left:752.700000px;}
.x138_c00463{left:753.750000px;}
.x115_c00463{left:755.100000px;}
.xbb_c00463{left:756.300000px;}
.x135_c00463{left:758.100000px;}
.xc4_c00463{left:762.750000px;}
.x126_c00463{left:765.150000px;}
.xec_c00463{left:766.350000px;}
.xfc_c00463{left:768.300000px;}
.xf3_c00463{left:769.500000px;}
.x120_c00463{left:774.750000px;}
.x13d_c00463{left:776.550000px;}
.xe1_c00463{left:777.600000px;}
.x12e_c00463{left:779.850000px;}
.x139_c00463{left:781.050000px;}
.x112_c00463{left:782.100000px;}
.xdf_c00463{left:783.750000px;}
.x130_c00463{left:787.800000px;}
.x127_c00463{left:789.600000px;}
.xe7_c00463{left:791.550000px;}
.x148_c00463{left:793.800000px;}
.xfd_c00463{left:796.350000px;}
.x10c_c00463{left:797.400000px;}
.xd3_c00463{left:799.050000px;}
.xd9_c00463{left:800.250000px;}
.xc5_c00463{left:801.300000px;}
.xb4_c00463{left:802.650000px;}
.x137_c00463{left:804.000000px;}
.xef_c00463{left:805.050000px;}
.xe2_c00463{left:807.150000px;}
.xcd_c00463{left:809.700000px;}
.x145_c00463{left:810.750000px;}
.xf4_c00463{left:811.950000px;}
.x102_c00463{left:814.800000px;}
.xfe_c00463{left:816.900000px;}
.x141_c00463{left:818.100000px;}
.x11d_c00463{left:819.450000px;}
.xe8_c00463{left:822.450000px;}
.x131_c00463{left:823.800000px;}
.xf9_c00463{left:826.950000px;}
.x12b_c00463{left:828.000000px;}
.xd4_c00463{left:829.650000px;}
.xce_c00463{left:831.600000px;}
.x13a_c00463{left:833.250000px;}
.xf5_c00463{left:834.300000px;}
.xbc_c00463{left:838.050000px;}
.xb5_c00463{left:842.550000px;}
.x116_c00463{left:846.150000px;}
.x142_c00463{left:847.650000px;}
.xed_c00463{left:850.200000px;}
.xe3_c00463{left:852.900000px;}
.xbd_c00463{left:854.250000px;}
.xc6_c00463{left:856.050000px;}
.xe0_c00463{left:861.450000px;}
.xb6_c00463{left:862.650000px;}
.xda_c00463{left:866.100000px;}
.x113_c00463{left:870.300000px;}
.x146_c00463{left:875.850000px;}
.xbe_c00463{left:877.950000px;}
.xe9_c00463{left:888.000000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.wsb_c00463{word-spacing:-10.800745pt;}
.wse_c00463{word-spacing:-9.341826pt;}
.wsc_c00463{word-spacing:-9.110106pt;}
.wsd_c00463{word-spacing:-3.227176pt;}
.ws11_c00463{word-spacing:0.000000pt;}
.wsf_c00463{word-spacing:1.425010pt;}
.ws10_c00463{word-spacing:1.538185pt;}
.ws6_c00463{word-spacing:5.441150pt;}
.ws9_c00463{word-spacing:6.666667pt;}
.wsa_c00463{word-spacing:8.888889pt;}
.ws4_c00463{word-spacing:11.239830pt;}
.ws7_c00463{word-spacing:12.361882pt;}
.ws3_c00463{word-spacing:13.777778pt;}
.ws2_c00463{word-spacing:16.111111pt;}
.ws8_c00463{word-spacing:18.070764pt;}
.ws1_c00463{word-spacing:22.857143pt;}
.ws0_c00463{word-spacing:26.296296pt;}
.ws5_c00463{word-spacing:41.254541pt;}
._2_c00463{width:36.888889pt;}
._1_c00463{width:46.349206pt;}
._0_c00463{width:57.460317pt;}
.fs8_c00463{font-size:32.000000pt;}
.fs4_c00463{font-size:37.333333pt;}
.fs9_c00463{font-size:42.666667pt;}
.fs7_c00463{font-size:48.000000pt;}
.fs3_c00463{font-size:53.333333pt;}
.fs6_c00463{font-size:58.666667pt;}
.fs5_c00463{font-size:64.000000pt;}
.fs2_c00463{font-size:69.333333pt;}
.fs1_c00463{font-size:74.666667pt;}
.fs0_c00463{font-size:85.333333pt;}
.y0_c00463{bottom:0.000000pt;}
.y38_c00463{bottom:169.200000pt;}
.y6b_c00463{bottom:169.600000pt;}
.y37_c00463{bottom:181.733333pt;}
.y6a_c00463{bottom:185.866667pt;}
.y35_c00463{bottom:193.333333pt;}
.y36_c00463{bottom:194.266667pt;}
.y69_c00463{bottom:205.466667pt;}
.y34_c00463{bottom:206.666667pt;}
.y33_c00463{bottom:219.466667pt;}
.y68_c00463{bottom:226.933333pt;}
.y32_c00463{bottom:231.733333pt;}
.y67_c00463{bottom:244.800000pt;}
.y66_c00463{bottom:260.533333pt;}
.y31_c00463{bottom:272.400000pt;}
.y65_c00463{bottom:279.733333pt;}
.y30_c00463{bottom:288.133333pt;}
.y64_c00463{bottom:296.000000pt;}
.y2f_c00463{bottom:303.866667pt;}
.y63_c00463{bottom:314.533333pt;}
.y2e_c00463{bottom:319.600000pt;}
.y62_c00463{bottom:330.533333pt;}
.y2d_c00463{bottom:335.333333pt;}
.y61_c00463{bottom:346.800000pt;}
.y2c_c00463{bottom:351.333333pt;}
.y60_c00463{bottom:362.800000pt;}
.y2b_c00463{bottom:367.333333pt;}
.y5f_c00463{bottom:378.533333pt;}
.y2a_c00463{bottom:389.066667pt;}
.y5e_c00463{bottom:394.800000pt;}
.y29_c00463{bottom:408.666667pt;}
.y5d_c00463{bottom:410.533333pt;}
.y28_c00463{bottom:424.933333pt;}
.y5c_c00463{bottom:426.533333pt;}
.y27_c00463{bottom:440.666667pt;}
.y5b_c00463{bottom:442.533333pt;}
.y26_c00463{bottom:456.666667pt;}
.y5a_c00463{bottom:458.533333pt;}
.y25_c00463{bottom:472.266667pt;}
.y59_c00463{bottom:474.533333pt;}
.y24_c00463{bottom:488.266667pt;}
.y58_c00463{bottom:492.533333pt;}
.y23_c00463{bottom:504.000000pt;}
.y57_c00463{bottom:505.333333pt;}
.y22_c00463{bottom:519.733333pt;}
.y56_c00463{bottom:523.333333pt;}
.y21_c00463{bottom:535.466667pt;}
.y55_c00463{bottom:539.600000pt;}
.y20_c00463{bottom:551.733333pt;}
.y54_c00463{bottom:555.600000pt;}
.y1f_c00463{bottom:567.466667pt;}
.y53_c00463{bottom:571.866667pt;}
.y1e_c00463{bottom:583.466667pt;}
.y52_c00463{bottom:587.866667pt;}
.y1d_c00463{bottom:599.466667pt;}
.y51_c00463{bottom:603.866667pt;}
.y1c_c00463{bottom:615.466667pt;}
.y50_c00463{bottom:623.333333pt;}
.y1b_c00463{bottom:631.200000pt;}
.y4f_c00463{bottom:639.333333pt;}
.y1a_c00463{bottom:647.200000pt;}
.y4e_c00463{bottom:655.600000pt;}
.y19_c00463{bottom:663.200000pt;}
.y4d_c00463{bottom:671.333333pt;}
.y18_c00463{bottom:679.200000pt;}
.y4c_c00463{bottom:687.066667pt;}
.y17_c00463{bottom:694.933333pt;}
.y16_c00463{bottom:710.933333pt;}
.y4b_c00463{bottom:712.000000pt;}
.y15_c00463{bottom:726.666667pt;}
.y4a_c00463{bottom:730.533333pt;}
.y14_c00463{bottom:742.666667pt;}
.y49_c00463{bottom:746.800000pt;}
.y13_c00463{bottom:758.666667pt;}
.y48_c00463{bottom:762.800000pt;}
.y12_c00463{bottom:774.666667pt;}
.y47_c00463{bottom:779.066667pt;}
.y11_c00463{bottom:790.666667pt;}
.y46_c00463{bottom:794.800000pt;}
.y10_c00463{bottom:806.400000pt;}
.y45_c00463{bottom:810.533333pt;}
.y39_c00463{bottom:810.933333pt;}
.yf_c00463{bottom:822.400000pt;}
.y44_c00463{bottom:830.000000pt;}
.ye_c00463{bottom:838.400000pt;}
.y43_c00463{bottom:846.666667pt;}
.yd_c00463{bottom:854.400000pt;}
.y42_c00463{bottom:862.666667pt;}
.yc_c00463{bottom:870.133333pt;}
.y41_c00463{bottom:878.666667pt;}
.yb_c00463{bottom:886.133333pt;}
.y40_c00463{bottom:894.666667pt;}
.ya_c00463{bottom:902.133333pt;}
.y3f_c00463{bottom:910.666667pt;}
.y9_c00463{bottom:918.133333pt;}
.y3e_c00463{bottom:926.400000pt;}
.y8_c00463{bottom:941.333333pt;}
.y3d_c00463{bottom:942.666667pt;}
.y7_c00463{bottom:953.866667pt;}
.y3c_c00463{bottom:958.400000pt;}
.y6_c00463{bottom:965.733333pt;}
.y3b_c00463{bottom:974.400000pt;}
.y5_c00463{bottom:979.866667pt;}
.y3a_c00463{bottom:990.133333pt;}
.y4_c00463{bottom:993.333333pt;}
.y1_c00463{bottom:1009.600000pt;}
.y3_c00463{bottom:1012.800000pt;}
.y2_c00463{bottom:1014.133333pt;}
.ha_c00463{height:32.000000pt;}
.h6_c00463{height:37.333333pt;}
.hb_c00463{height:42.666667pt;}
.h9_c00463{height:48.000000pt;}
.h5_c00463{height:53.333333pt;}
.h8_c00463{height:58.666667pt;}
.h7_c00463{height:64.000000pt;}
.h4_c00463{height:69.333333pt;}
.h3_c00463{height:74.666667pt;}
.h2_c00463{height:85.333333pt;}
.h1_c00463{height:1132.000000pt;}
.h0_c00463{height:1132.159993pt;}
.w0_c00463{width:851.840007pt;}
.w1_c00463{width:852.000000pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:165.733333pt;}
.xa2_c00463{left:167.333333pt;}
.x29_c00463{left:169.333333pt;}
.xa6_c00463{left:172.800000pt;}
.x97_c00463{left:173.733333pt;}
.x3_c00463{left:174.800000pt;}
.xe_c00463{left:180.533333pt;}
.x22_c00463{left:182.133333pt;}
.x93_c00463{left:183.066667pt;}
.x7f_c00463{left:184.000000pt;}
.x34_c00463{left:184.933333pt;}
.x65_c00463{left:185.866667pt;}
.xab_c00463{left:191.333333pt;}
.x4_c00463{left:193.333333pt;}
.x1b_c00463{left:194.666667pt;}
.xa7_c00463{left:196.800000pt;}
.x4c_c00463{left:200.133333pt;}
.xa0_c00463{left:201.333333pt;}
.x6c_c00463{left:203.333333pt;}
.xf_c00463{left:205.200000pt;}
.x6e_c00463{left:206.266667pt;}
.x8f_c00463{left:207.733333pt;}
.x57_c00463{left:209.466667pt;}
.x85_c00463{left:211.466667pt;}
.x1c_c00463{left:214.133333pt;}
.x70_c00463{left:215.200000pt;}
.x94_c00463{left:216.666667pt;}
.x3b_c00463{left:218.000000pt;}
.x5f_c00463{left:219.866667pt;}
.x8d_c00463{left:221.466667pt;}
.x35_c00463{left:223.066667pt;}
.x84_c00463{left:224.400000pt;}
.x41_c00463{left:226.266667pt;}
.x72_c00463{left:228.400000pt;}
.x9d_c00463{left:229.333333pt;}
.x51_c00463{left:231.866667pt;}
.x1d_c00463{left:234.000000pt;}
.x36_c00463{left:235.200000pt;}
.x60_c00463{left:236.800000pt;}
.x58_c00463{left:239.200000pt;}
.x42_c00463{left:241.333333pt;}
.x2a_c00463{left:243.200000pt;}
.x9b_c00463{left:246.133333pt;}
.x7c_c00463{left:247.200000pt;}
.x47_c00463{left:248.133333pt;}
.x5_c00463{left:250.266667pt;}
.x5a_c00463{left:252.400000pt;}
.x10_c00463{left:253.866667pt;}
.x4d_c00463{left:257.066667pt;}
.xa1_c00463{left:259.600000pt;}
.x37_c00463{left:262.133333pt;}
.x90_c00463{left:263.066667pt;}
.x5c_c00463{left:265.466667pt;}
.x6_c00463{left:267.200000pt;}
.x52_c00463{left:269.866667pt;}
.x8e_c00463{left:271.333333pt;}
.x2b_c00463{left:272.666667pt;}
.x1e_c00463{left:274.266667pt;}
.x92_c00463{left:275.466667pt;}
.x4e_c00463{left:276.533333pt;}
.x7_c00463{left:280.000000pt;}
.x9c_c00463{left:281.333333pt;}
.x11_c00463{left:282.933333pt;}
.x61_c00463{left:284.133333pt;}
.x3c_c00463{left:285.200000pt;}
.x77_c00463{left:286.533333pt;}
.x91_c00463{left:287.733333pt;}
.x43_c00463{left:288.666667pt;}
.x12_c00463{left:289.600000pt;}
.x38_c00463{left:291.600000pt;}
.x3d_c00463{left:292.533333pt;}
.x89_c00463{left:294.000000pt;}
.x13_c00463{left:295.333333pt;}
.x82_c00463{left:296.933333pt;}
.x53_c00463{left:299.333333pt;}
.x1f_c00463{left:300.800000pt;}
.x14_c00463{left:302.000000pt;}
.x2c_c00463{left:303.733333pt;}
.x73_c00463{left:305.200000pt;}
.x69_c00463{left:307.200000pt;}
.x15_c00463{left:309.066667pt;}
.x39_c00463{left:314.266667pt;}
.x23_c00463{left:315.866667pt;}
.x66_c00463{left:317.066667pt;}
.x4f_c00463{left:318.533333pt;}
.x80_c00463{left:320.266667pt;}
.x16_c00463{left:321.200000pt;}
.x8_c00463{left:322.933333pt;}
.x9e_c00463{left:323.866667pt;}
.x3e_c00463{left:324.800000pt;}
.x78_c00463{left:327.466667pt;}
.x6d_c00463{left:328.400000pt;}
.x2d_c00463{left:329.333333pt;}
.x83_c00463{left:332.133333pt;}
.x44_c00463{left:333.466667pt;}
.xa4_c00463{left:335.600000pt;}
.x7d_c00463{left:339.466667pt;}
.x24_c00463{left:341.466667pt;}
.x5d_c00463{left:342.533333pt;}
.x2e_c00463{left:344.000000pt;}
.x8a_c00463{left:344.933333pt;}
.x20_c00463{left:345.866667pt;}
.x86_c00463{left:348.000000pt;}
.x95_c00463{left:350.000000pt;}
.x71_c00463{left:350.933333pt;}
.x25_c00463{left:354.533333pt;}
.x67_c00463{left:356.800000pt;}
.xa9_c00463{left:358.133333pt;}
.x9_c00463{left:361.066667pt;}
.x79_c00463{left:362.666667pt;}
.x21_c00463{left:366.400000pt;}
.x26_c00463{left:367.333333pt;}
.x2f_c00463{left:370.533333pt;}
.x6f_c00463{left:371.733333pt;}
.xa5_c00463{left:372.666667pt;}
.xa_c00463{left:373.600000pt;}
.x54_c00463{left:374.533333pt;}
.x74_c00463{left:375.600000pt;}
.x48_c00463{left:376.800000pt;}
.x17_c00463{left:379.200000pt;}
.x62_c00463{left:380.666667pt;}
.x6a_c00463{left:381.733333pt;}
.x2_c00463{left:383.066667pt;}
.x9f_c00463{left:384.266667pt;}
.x30_c00463{left:386.266667pt;}
.x87_c00463{left:388.000000pt;}
.x50_c00463{left:390.266667pt;}
.x7a_c00463{left:391.200000pt;}
.x45_c00463{left:392.400000pt;}
.x55_c00463{left:393.466667pt;}
.xb_c00463{left:394.400000pt;}
.x7e_c00463{left:395.466667pt;}
.xaa_c00463{left:396.533333pt;}
.x63_c00463{left:398.266667pt;}
.x31_c00463{left:400.000000pt;}
.x5e_c00463{left:400.933333pt;}
.xa3_c00463{left:401.866667pt;}
.x18_c00463{left:402.800000pt;}
.x27_c00463{left:403.866667pt;}
.x88_c00463{left:404.933333pt;}
.x3a_c00463{left:405.866667pt;}
.x75_c00463{left:407.866667pt;}
.x96_c00463{left:410.133333pt;}
.x49_c00463{left:411.066667pt;}
.x3f_c00463{left:413.733333pt;}
.x6b_c00463{left:414.800000pt;}
.x99_c00463{left:416.400000pt;}
.x56_c00463{left:419.333333pt;}
.x4a_c00463{left:420.933333pt;}
.xc_c00463{left:422.266667pt;}
.x19_c00463{left:423.866667pt;}
.x81_c00463{left:425.600000pt;}
.x59_c00463{left:428.666667pt;}
.x28_c00463{left:429.733333pt;}
.x40_c00463{left:430.666667pt;}
.x32_c00463{left:432.933333pt;}
.x98_c00463{left:434.933333pt;}
.x7b_c00463{left:437.600000pt;}
.x8b_c00463{left:438.666667pt;}
.x9a_c00463{left:439.733333pt;}
.x33_c00463{left:440.933333pt;}
.xa8_c00463{left:443.333333pt;}
.x4b_c00463{left:444.266667pt;}
.x64_c00463{left:446.000000pt;}
.x5b_c00463{left:447.200000pt;}
.x46_c00463{left:448.133333pt;}
.x76_c00463{left:449.200000pt;}
.x8c_c00463{left:450.533333pt;}
.xd_c00463{left:452.933333pt;}
.x1a_c00463{left:454.533333pt;}
.x68_c00463{left:457.333333pt;}
.xac_c00463{left:484.533333pt;}
.x11e_c00463{left:497.066667pt;}
.x121_c00463{left:498.266667pt;}
.x10d_c00463{left:499.866667pt;}
.xaf_c00463{left:500.800000pt;}
.xee_c00463{left:505.200000pt;}
.x132_c00463{left:507.866667pt;}
.x128_c00463{left:510.000000pt;}
.xc7_c00463{left:511.066667pt;}
.xbf_c00463{left:515.733333pt;}
.x109_c00463{left:516.800000pt;}
.x117_c00463{left:517.866667pt;}
.xff_c00463{left:519.466667pt;}
.x13b_c00463{left:520.800000pt;}
.x105_c00463{left:523.600000pt;}
.x11a_c00463{left:525.066667pt;}
.xcf_c00463{left:528.000000pt;}
.xea_c00463{left:529.600000pt;}
.x119_c00463{left:530.800000pt;}
.xf6_c00463{left:531.733333pt;}
.xdb_c00463{left:534.000000pt;}
.xb0_c00463{left:535.733333pt;}
.x13f_c00463{left:537.200000pt;}
.xc0_c00463{left:538.133333pt;}
.x12c_c00463{left:540.133333pt;}
.xc8_c00463{left:541.200000pt;}
.x11f_c00463{left:543.466667pt;}
.xb7_c00463{left:544.800000pt;}
.x10e_c00463{left:546.533333pt;}
.xad_c00463{left:547.866667pt;}
.x114_c00463{left:548.933333pt;}
.x12f_c00463{left:550.133333pt;}
.x140_c00463{left:551.866667pt;}
.xdc_c00463{left:552.933333pt;}
.xf0_c00463{left:554.400000pt;}
.xc1_c00463{left:555.733333pt;}
.x11b_c00463{left:557.333333pt;}
.x129_c00463{left:558.400000pt;}
.x10f_c00463{left:560.266667pt;}
.xd5_c00463{left:561.600000pt;}
.xe4_c00463{left:565.200000pt;}
.xb8_c00463{left:567.466667pt;}
.x103_c00463{left:569.733333pt;}
.x122_c00463{left:572.266667pt;}
.xf1_c00463{left:573.600000pt;}
.x13c_c00463{left:574.533333pt;}
.xc9_c00463{left:577.333333pt;}
.xb1_c00463{left:580.266667pt;}
.xd6_c00463{left:582.133333pt;}
.xfa_c00463{left:586.266667pt;}
.x104_c00463{left:587.600000pt;}
.x123_c00463{left:589.200000pt;}
.xe5_c00463{left:591.066667pt;}
.x110_c00463{left:592.533333pt;}
.xae_c00463{left:595.600000pt;}
.xca_c00463{left:597.466667pt;}
.x106_c00463{left:598.400000pt;}
.x11c_c00463{left:600.800000pt;}
.x13e_c00463{left:602.666667pt;}
.x136_c00463{left:604.133333pt;}
.xdd_c00463{left:605.733333pt;}
.xc2_c00463{left:606.666667pt;}
.xd0_c00463{left:608.266667pt;}
.x12d_c00463{left:609.333333pt;}
.xf7_c00463{left:610.533333pt;}
.x144_c00463{left:611.866667pt;}
.xd7_c00463{left:612.800000pt;}
.xb2_c00463{left:614.533333pt;}
.x125_c00463{left:616.133333pt;}
.x111_c00463{left:619.066667pt;}
.x10a_c00463{left:620.133333pt;}
.xe6_c00463{left:621.733333pt;}
.x147_c00463{left:623.733333pt;}
.x133_c00463{left:624.666667pt;}
.xde_c00463{left:626.266667pt;}
.x100_c00463{left:627.600000pt;}
.x107_c00463{left:629.466667pt;}
.x118_c00463{left:631.733333pt;}
.xcb_c00463{left:633.333333pt;}
.xf2_c00463{left:634.400000pt;}
.xb9_c00463{left:636.533333pt;}
.xc3_c00463{left:637.733333pt;}
.x108_c00463{left:639.333333pt;}
.xd8_c00463{left:640.266667pt;}
.x124_c00463{left:642.266667pt;}
.x143_c00463{left:644.266667pt;}
.xd1_c00463{left:646.933333pt;}
.xcc_c00463{left:651.866667pt;}
.x12a_c00463{left:653.733333pt;}
.x134_c00463{left:655.333333pt;}
.x101_c00463{left:656.400000pt;}
.xeb_c00463{left:657.866667pt;}
.xb3_c00463{left:660.000000pt;}
.xba_c00463{left:662.400000pt;}
.xfb_c00463{left:663.733333pt;}
.xd2_c00463{left:665.200000pt;}
.xf8_c00463{left:667.200000pt;}
.x10b_c00463{left:669.066667pt;}
.x138_c00463{left:670.000000pt;}
.x115_c00463{left:671.200000pt;}
.xbb_c00463{left:672.266667pt;}
.x135_c00463{left:673.866667pt;}
.xc4_c00463{left:678.000000pt;}
.x126_c00463{left:680.133333pt;}
.xec_c00463{left:681.200000pt;}
.xfc_c00463{left:682.933333pt;}
.xf3_c00463{left:684.000000pt;}
.x120_c00463{left:688.666667pt;}
.x13d_c00463{left:690.266667pt;}
.xe1_c00463{left:691.200000pt;}
.x12e_c00463{left:693.200000pt;}
.x139_c00463{left:694.266667pt;}
.x112_c00463{left:695.200000pt;}
.xdf_c00463{left:696.666667pt;}
.x130_c00463{left:700.266667pt;}
.x127_c00463{left:701.866667pt;}
.xe7_c00463{left:703.600000pt;}
.x148_c00463{left:705.600000pt;}
.xfd_c00463{left:707.866667pt;}
.x10c_c00463{left:708.800000pt;}
.xd3_c00463{left:710.266667pt;}
.xd9_c00463{left:711.333333pt;}
.xc5_c00463{left:712.266667pt;}
.xb4_c00463{left:713.466667pt;}
.x137_c00463{left:714.666667pt;}
.xef_c00463{left:715.600000pt;}
.xe2_c00463{left:717.466667pt;}
.xcd_c00463{left:719.733333pt;}
.x145_c00463{left:720.666667pt;}
.xf4_c00463{left:721.733333pt;}
.x102_c00463{left:724.266667pt;}
.xfe_c00463{left:726.133333pt;}
.x141_c00463{left:727.200000pt;}
.x11d_c00463{left:728.400000pt;}
.xe8_c00463{left:731.066667pt;}
.x131_c00463{left:732.266667pt;}
.xf9_c00463{left:735.066667pt;}
.x12b_c00463{left:736.000000pt;}
.xd4_c00463{left:737.466667pt;}
.xce_c00463{left:739.200000pt;}
.x13a_c00463{left:740.666667pt;}
.xf5_c00463{left:741.600000pt;}
.xbc_c00463{left:744.933333pt;}
.xb5_c00463{left:748.933333pt;}
.x116_c00463{left:752.133333pt;}
.x142_c00463{left:753.466667pt;}
.xed_c00463{left:755.733333pt;}
.xe3_c00463{left:758.133333pt;}
.xbd_c00463{left:759.333333pt;}
.xc6_c00463{left:760.933333pt;}
.xe0_c00463{left:765.733333pt;}
.xb6_c00463{left:766.800000pt;}
.xda_c00463{left:769.866667pt;}
.x113_c00463{left:773.600000pt;}
.x146_c00463{left:778.533333pt;}
.xbe_c00463{left:780.400000pt;}
.xe9_c00463{left:789.333333pt;}
}





/* 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_c00464 {
    display:none;
  }
  .loading-indicator_c00464.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00464 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_c00464 { 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_c00464" -> "#page-container .classname_c00464")
 */
.pf_c00464 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00464 { /* 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_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00464 { /* 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_c00464 { /* 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_c00464 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00464 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00464 {overflow:visible;}
  }
}
.c_c00464 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00464 { /* 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_c00464:after { /* webkit #35443 */
  content: '';
}
.t_c00464:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00464 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 */
}
.__c00464 { /* 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_c00464 { /* info for Javascript */
  display:none;
}
.l_c00464 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00464 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00464 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00464: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_c00464 {
    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_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00464.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_c00464 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00464;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.000000;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;}
.m12e_c00464{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m59_c00464{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m30_c00464{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m58_c00464{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00464{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m57_c00464{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m68_c00464{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00464{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00464{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00464{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m47_c00464{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00464{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md8_c00464{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m48_c00464{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m74_c00464{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m69_c00464{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m53_c00464{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00464{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md5_c00464{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m50_c00464{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00464{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m106_c00464{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00464{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00464{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m76_c00464{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00464{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00464{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m82_c00464{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m118_c00464{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m8_c00464{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.meb_c00464{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00464{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m26_c00464{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00464{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m77_c00464{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.me9_c00464{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00464{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00464{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m41_c00464{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00464{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m33_c00464{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00464{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m9_c00464{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m45_c00464{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md6_c00464{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.md_c00464{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mee_c00464{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m7_c00464{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m56_c00464{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m117_c00464{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m22_c00464{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00464{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00464{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00464{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m37_c00464{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m123_c00464{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md1_c00464{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00464{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m32_c00464{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md7_c00464{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00464{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m31_c00464{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md9_c00464{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.me4_c00464{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00464{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00464{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00464{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.mc_c00464{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.med_c00464{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00464{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m4_c00464{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m105_c00464{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m65_c00464{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.md3_c00464{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m51_c00464{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mec_c00464{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m88_c00464{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00464{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m24_c00464{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mff_c00464{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00464{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m119_c00464{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m44_c00464{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me7_c00464{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00464{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00464{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00464{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.md4_c00464{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m17_c00464{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00464{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00464{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00464{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m113_c00464{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mca_c00464{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me2_c00464{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m20_c00464{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m124_c00464{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00464{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5_c00464{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m34_c00464{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m40_c00464{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m19_c00464{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00464{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md2_c00464{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00464{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00464{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00464{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m52_c00464{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.me5_c00464{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mda_c00464{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00464{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mad_c00464{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m14_c00464{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m85_c00464{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m43_c00464{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m27_c00464{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma_c00464{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00464{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m23_c00464{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00464{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00464{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m29_c00464{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m86_c00464{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00464{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00464{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00464{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00464{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00464{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m125_c00464{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00464{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m25_c00464{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m116_c00464{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m96_c00464{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10_c00464{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00464{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m66_c00464{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.maf_c00464{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m42_c00464{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00464{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me1_c00464{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m94_c00464{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m115_c00464{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00464{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md0_c00464{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00464{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00464{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m35_c00464{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00464{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m81_c00464{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00464{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00464{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m99_c00464{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m18_c00464{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00464{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00464{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00464{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00464{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mea_c00464{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00464{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6_c00464{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m11_c00464{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m80_c00464{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m60_c00464{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m93_c00464{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mef_c00464{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mab_c00464{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.me6_c00464{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m36_c00464{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m28_c00464{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mde_c00464{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m84_c00464{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m16_c00464{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00464{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m61_c00464{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00464{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m71_c00464{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00464{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m12_c00464{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00464{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00464{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m111_c00464{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00464{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m55_c00464{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m104_c00464{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m39_c00464{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00464{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00464{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m120_c00464{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mae_c00464{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m95_c00464{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00464{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00464{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00464{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00464{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00464{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00464{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m21_c00464{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00464{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00464{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00464{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00464{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m15_c00464{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00464{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00464{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m97_c00464{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m100_c00464{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m49_c00464{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00464{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mb_c00464{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00464{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m72_c00464{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m46_c00464{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00464{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m127_c00464{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m64_c00464{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me0_c00464{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00464{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m90_c00464{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mac_c00464{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00464{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00464{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m83_c00464{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m98_c00464{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00464{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00464{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00464{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m62_c00464{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00464{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00464{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m129_c00464{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00464{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00464{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00464{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m103_c00464{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00464{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00464{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00464{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m114_c00464{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00464{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00464{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00464{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m121_c00464{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.me3_c00464{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00464{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me_c00464{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00464{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m110_c00464{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00464{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00464{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m54_c00464{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m126_c00464{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.me8_c00464{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00464{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.maa_c00464{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00464{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m109_c00464{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00464{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00464{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00464{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m108_c00464{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m91_c00464{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m67_c00464{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00464{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m63_c00464{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00464{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m92_c00464{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m122_c00464{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m38_c00464{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00464{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00464{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m89_c00464{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00464{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00464{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00464{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00464{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m13_c00464{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00464{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m70_c00464{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m75_c00464{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mf_c00464{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m128_c00464{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mce_c00464{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m79_c00464{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00464{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m101_c00464{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00464{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00464{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00464{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m102_c00464{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00464{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00464{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mba_c00464{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m112_c00464{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00464{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m73_c00464{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m78_c00464{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.448750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00464{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m87_c00464{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m3_c00464{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m107_c00464{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls1_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:55.714286px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{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__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00464{word-spacing:-85.714286px;}
.ws0_c00464{word-spacing:-17.522911px;}
.ws13_c00464{word-spacing:-11.184211px;}
.ws14_c00464{word-spacing:-10.820961px;}
.ws16_c00464{word-spacing:-9.473684px;}
.ws18_c00464{word-spacing:-8.278351px;}
.ws19_c00464{word-spacing:-8.168443px;}
.ws1a_c00464{word-spacing:-0.214286px;}
.ws1b_c00464{word-spacing:0.000000px;}
.wsc_c00464{word-spacing:10.459016px;}
.ws17_c00464{word-spacing:13.816514px;}
.wsf_c00464{word-spacing:15.000000px;}
.ws9_c00464{word-spacing:16.257611px;}
.wsa_c00464{word-spacing:17.854015px;}
.wsb_c00464{word-spacing:18.000000px;}
.ws8_c00464{word-spacing:19.994638px;}
.wsd_c00464{word-spacing:20.500000px;}
.ws3_c00464{word-spacing:22.142857px;}
.ws15_c00464{word-spacing:22.727794px;}
.wse_c00464{word-spacing:25.153285px;}
.ws5_c00464{word-spacing:25.714286px;}
.ws7_c00464{word-spacing:28.426230px;}
.ws2_c00464{word-spacing:29.285714px;}
.ws12_c00464{word-spacing:34.642857px;}
.ws6_c00464{word-spacing:39.343511px;}
.ws11_c00464{word-spacing:40.000000px;}
.ws4_c00464{word-spacing:50.416667px;}
.ws1_c00464{word-spacing:65.000000px;}
._4_c00464{margin-left:-55.714286px;}
._7_c00464{width:25.048035px;}
._3_c00464{width:48.125000px;}
._2_c00464{width:50.211796px;}
._6_c00464{width:52.142857px;}
._0_c00464{width:55.714286px;}
._1_c00464{width:59.285714px;}
._5_c00464{width:64.642857px;}
.fc0_c00464{color:transparent;}
.fs6_c00464{font-size:42.000000px;}
.fs5_c00464{font-size:54.000000px;}
.fs4_c00464{font-size:60.000000px;}
.fs3_c00464{font-size:66.000000px;}
.fs2_c00464{font-size:72.000000px;}
.fs0_c00464{font-size:84.000000px;}
.fs1_c00464{font-size:96.000000px;}
.y0_c00464{bottom:0.000000px;}
.y3a_c00464{bottom:187.050000px;}
.y6a_c00464{bottom:191.100000px;}
.y39_c00464{bottom:202.500000px;}
.y69_c00464{bottom:213.900000px;}
.y38_c00464{bottom:217.200000px;}
.y37_c00464{bottom:231.900000px;}
.y36_c00464{bottom:246.000000px;}
.y68_c00464{bottom:249.900000px;}
.y35_c00464{bottom:260.700000px;}
.y67_c00464{bottom:267.900000px;}
.y34_c00464{bottom:275.100000px;}
.y66_c00464{bottom:286.650000px;}
.y33_c00464{bottom:289.500000px;}
.y65_c00464{bottom:303.600000px;}
.y32_c00464{bottom:303.900000px;}
.y31_c00464{bottom:318.600000px;}
.y64_c00464{bottom:322.350000px;}
.y63_c00464{bottom:340.050000px;}
.y62_c00464{bottom:358.050000px;}
.y30_c00464{bottom:369.150000px;}
.y61_c00464{bottom:376.050000px;}
.y2f_c00464{bottom:386.850000px;}
.y60_c00464{bottom:393.750000px;}
.y2e_c00464{bottom:405.150000px;}
.y5f_c00464{bottom:411.750000px;}
.y2d_c00464{bottom:423.150000px;}
.y5e_c00464{bottom:429.450000px;}
.y2c_c00464{bottom:441.150000px;}
.y5d_c00464{bottom:447.450000px;}
.y2b_c00464{bottom:459.450000px;}
.y5c_c00464{bottom:465.450000px;}
.y2a_c00464{bottom:477.150000px;}
.y5b_c00464{bottom:483.150000px;}
.y29_c00464{bottom:495.150000px;}
.y5a_c00464{bottom:505.800000px;}
.y28_c00464{bottom:512.850000px;}
.y59_c00464{bottom:524.100000px;}
.y27_c00464{bottom:530.550000px;}
.y58_c00464{bottom:542.100000px;}
.y26_c00464{bottom:548.550000px;}
.y57_c00464{bottom:559.800000px;}
.y25_c00464{bottom:566.550000px;}
.y56_c00464{bottom:577.800000px;}
.y24_c00464{bottom:584.550000px;}
.y55_c00464{bottom:600.450000px;}
.y23_c00464{bottom:602.550000px;}
.y54_c00464{bottom:618.150000px;}
.y22_c00464{bottom:620.250000px;}
.y53_c00464{bottom:636.450000px;}
.y21_c00464{bottom:645.900000px;}
.y52_c00464{bottom:658.800000px;}
.y20_c00464{bottom:661.050000px;}
.y1f_c00464{bottom:674.700000px;}
.y1e_c00464{bottom:689.100000px;}
.y1d_c00464{bottom:703.500000px;}
.y51_c00464{bottom:711.750000px;}
.y1c_c00464{bottom:715.350000px;}
.y1b_c00464{bottom:730.050000px;}
.y50_c00464{bottom:730.500000px;}
.y1a_c00464{bottom:746.550000px;}
.y4f_c00464{bottom:748.500000px;}
.y19_c00464{bottom:758.400000px;}
.y4e_c00464{bottom:769.350000px;}
.y18_c00464{bottom:772.800000px;}
.y4d_c00464{bottom:788.850000px;}
.y17_c00464{bottom:789.000000px;}
.y16_c00464{bottom:801.300000px;}
.y4c_c00464{bottom:806.850000px;}
.y15_c00464{bottom:816.450000px;}
.y4b_c00464{bottom:824.850000px;}
.y14_c00464{bottom:830.550000px;}
.y4a_c00464{bottom:844.950000px;}
.y13_c00464{bottom:846.750000px;}
.y12_c00464{bottom:859.350000px;}
.y49_c00464{bottom:864.000000px;}
.y11_c00464{bottom:873.750000px;}
.y48_c00464{bottom:883.500000px;}
.y10_c00464{bottom:890.700000px;}
.y47_c00464{bottom:903.600000px;}
.yf_c00464{bottom:905.100000px;}
.ye_c00464{bottom:917.250000px;}
.y46_c00464{bottom:923.400000px;}
.yd_c00464{bottom:934.200000px;}
.y45_c00464{bottom:941.700000px;}
.yc_c00464{bottom:949.950000px;}
.y44_c00464{bottom:960.000000px;}
.yb_c00464{bottom:971.550000px;}
.y43_c00464{bottom:977.700000px;}
.ya_c00464{bottom:989.250000px;}
.y42_c00464{bottom:995.400000px;}
.y9_c00464{bottom:1007.550000px;}
.y41_c00464{bottom:1013.400000px;}
.y8_c00464{bottom:1024.500000px;}
.y40_c00464{bottom:1031.700000px;}
.y7_c00464{bottom:1042.800000px;}
.y3f_c00464{bottom:1049.400000px;}
.y6_c00464{bottom:1060.500000px;}
.y3e_c00464{bottom:1067.700000px;}
.y5_c00464{bottom:1076.400000px;}
.y3d_c00464{bottom:1085.700000px;}
.y4_c00464{bottom:1100.100000px;}
.y3c_c00464{bottom:1103.700000px;}
.y3_c00464{bottom:1118.100000px;}
.y3b_c00464{bottom:1121.700000px;}
.y1_c00464{bottom:1146.600000px;}
.y2_c00464{bottom:1148.700000px;}
.h8_c00464{height:42.000000px;}
.h7_c00464{height:54.000000px;}
.h6_c00464{height:60.000000px;}
.h5_c00464{height:66.000000px;}
.h4_c00464{height:72.000000px;}
.h2_c00464{height:84.000000px;}
.h3_c00464{height:96.000000px;}
.h1_c00464{height:1271.250000px;}
.h0_c00464{height:1271.519990px;}
.w0_c00464{width:958.320007px;}
.w1_c00464{width:958.500000px;}
.x0_c00464{left:0.000000px;}
.x14_c00464{left:79.950000px;}
.x9d_c00464{left:81.000000px;}
.x7b_c00464{left:82.800000px;}
.x3c_c00464{left:94.350000px;}
.x2a_c00464{left:95.700000px;}
.x3_c00464{left:97.200000px;}
.x7c_c00464{left:100.950000px;}
.x8a_c00464{left:102.000000px;}
.x68_c00464{left:104.850000px;}
.x45_c00464{left:110.850000px;}
.x3d_c00464{left:114.150000px;}
.x5a_c00464{left:116.250000px;}
.x22_c00464{left:117.450000px;}
.xc_c00464{left:119.550000px;}
.x15_c00464{left:121.350000px;}
.x98_c00464{left:124.500000px;}
.x69_c00464{left:126.750000px;}
.xa0_c00464{left:128.700000px;}
.x50_c00464{left:132.150000px;}
.x6d_c00464{left:133.350000px;}
.x8b_c00464{left:135.900000px;}
.x9a_c00464{left:138.300000px;}
.x38_c00464{left:141.450000px;}
.x4_c00464{left:142.500000px;}
.x32_c00464{left:144.900000px;}
.x7d_c00464{left:145.950000px;}
.xa4_c00464{left:149.400000px;}
.x6a_c00464{left:150.600000px;}
.x51_c00464{left:151.950000px;}
.x93_c00464{left:155.100000px;}
.x82_c00464{left:156.300000px;}
.xd_c00464{left:157.350000px;}
.x1a_c00464{left:159.150000px;}
.x90_c00464{left:160.800000px;}
.x3e_c00464{left:162.450000px;}
.x6b_c00464{left:163.800000px;}
.x5_c00464{left:164.850000px;}
.x5d_c00464{left:166.050000px;}
.xe_c00464{left:167.400000px;}
.x41_c00464{left:169.650000px;}
.x46_c00464{left:173.100000px;}
.x56_c00464{left:175.350000px;}
.x91_c00464{left:176.700000px;}
.xa5_c00464{left:178.500000px;}
.x33_c00464{left:180.600000px;}
.x37_c00464{left:182.100000px;}
.x89_c00464{left:183.150000px;}
.x47_c00464{left:184.200000px;}
.x16_c00464{left:186.150000px;}
.x1b_c00464{left:187.650000px;}
.x61_c00464{left:189.150000px;}
.x2b_c00464{left:191.100000px;}
.x42_c00464{left:192.750000px;}
.x67_c00464{left:194.100000px;}
.x7e_c00464{left:196.650000px;}
.x60_c00464{left:197.700000px;}
.x23_c00464{left:200.550000px;}
.x6_c00464{left:202.350000px;}
.x5e_c00464{left:203.550000px;}
.x2c_c00464{left:205.800000px;}
.x80_c00464{left:207.150000px;}
.x57_c00464{left:209.100000px;}
.xf_c00464{left:211.350000px;}
.x24_c00464{left:212.850000px;}
.x6e_c00464{left:214.650000px;}
.x48_c00464{left:216.300000px;}
.x1c_c00464{left:218.250000px;}
.x3f_c00464{left:219.300000px;}
.x94_c00464{left:221.700000px;}
.x17_c00464{left:222.900000px;}
.x5b_c00464{left:224.250000px;}
.x10_c00464{left:225.450000px;}
.x75_c00464{left:227.400000px;}
.x62_c00464{left:228.450000px;}
.x25_c00464{left:230.100000px;}
.x65_c00464{left:233.100000px;}
.x6f_c00464{left:234.900000px;}
.x49_c00464{left:236.100000px;}
.x58_c00464{left:237.900000px;}
.x63_c00464{left:239.550000px;}
.x70_c00464{left:242.100000px;}
.x8f_c00464{left:244.350000px;}
.x43_c00464{left:246.450000px;}
.x66_c00464{left:247.800000px;}
.x7_c00464{left:248.850000px;}
.xa6_c00464{left:250.650000px;}
.x5f_c00464{left:251.700000px;}
.x34_c00464{left:253.350000px;}
.x52_c00464{left:254.550000px;}
.x11_c00464{left:256.800000px;}
.x26_c00464{left:260.400000px;}
.x1d_c00464{left:261.450000px;}
.x78_c00464{left:262.800000px;}
.x64_c00464{left:264.000000px;}
.xa1_c00464{left:265.050000px;}
.x40_c00464{left:266.100000px;}
.x87_c00464{left:267.900000px;}
.x53_c00464{left:269.400000px;}
.x27_c00464{left:271.200000px;}
.x1e_c00464{left:273.000000px;}
.x96_c00464{left:274.500000px;}
.x4a_c00464{left:276.450000px;}
.x79_c00464{left:277.500000px;}
.x2d_c00464{left:278.550000px;}
.x30_c00464{left:281.100000px;}
.x95_c00464{left:282.150000px;}
.x4b_c00464{left:283.650000px;}
.x7a_c00464{left:284.700000px;}
.x8_c00464{left:285.900000px;}
.x59_c00464{left:289.650000px;}
.x54_c00464{left:291.600000px;}
.x8c_c00464{left:292.800000px;}
.x35_c00464{left:294.750000px;}
.x9b_c00464{left:296.250000px;}
.x4c_c00464{left:298.350000px;}
.x76_c00464{left:299.850000px;}
.x71_c00464{left:300.900000px;}
.x9_c00464{left:304.650000px;}
.x5c_c00464{left:306.450000px;}
.x18_c00464{left:309.000000px;}
.x6c_c00464{left:312.300000px;}
.x1f_c00464{left:313.650000px;}
.x12_c00464{left:315.900000px;}
.x83_c00464{left:317.250000px;}
.x7f_c00464{left:318.750000px;}
.x55_c00464{left:319.950000px;}
.x1_c00464{left:321.450000px;}
.x97_c00464{left:325.950000px;}
.xa_c00464{left:327.750000px;}
.x72_c00464{left:329.700000px;}
.x20_c00464{left:332.400000px;}
.x31_c00464{left:334.350000px;}
.x39_c00464{left:336.600000px;}
.x85_c00464{left:339.750000px;}
.x2e_c00464{left:341.250000px;}
.x44_c00464{left:346.950000px;}
.x4d_c00464{left:348.150000px;}
.x8d_c00464{left:349.650000px;}
.x28_c00464{left:351.600000px;}
.x99_c00464{left:355.050000px;}
.x81_c00464{left:359.400000px;}
.x19_c00464{left:361.500000px;}
.x21_c00464{left:365.850000px;}
.x3a_c00464{left:368.250000px;}
.x88_c00464{left:371.100000px;}
.xb_c00464{left:373.500000px;}
.x4e_c00464{left:374.850000px;}
.x13_c00464{left:376.350000px;}
.x77_c00464{left:378.000000px;}
.x73_c00464{left:379.050000px;}
.x8e_c00464{left:381.300000px;}
.x9f_c00464{left:382.500000px;}
.x29_c00464{left:384.750000px;}
.xa3_c00464{left:386.550000px;}
.x2f_c00464{left:387.600000px;}
.x92_c00464{left:389.850000px;}
.x36_c00464{left:390.900000px;}
.x9e_c00464{left:394.200000px;}
.x84_c00464{left:398.250000px;}
.x9c_c00464{left:399.300000px;}
.xa7_c00464{left:400.800000px;}
.x3b_c00464{left:402.150000px;}
.x4f_c00464{left:404.400000px;}
.x74_c00464{left:406.350000px;}
.xa2_c00464{left:414.900000px;}
.x86_c00464{left:416.100000px;}
.x103_c00464{left:439.950000px;}
.xa8_c00464{left:453.900000px;}
.xc5_c00464{left:455.250000px;}
.xe7_c00464{left:456.450000px;}
.xff_c00464{left:457.800000px;}
.x132_c00464{left:459.000000px;}
.x144_c00464{left:463.350000px;}
.x142_c00464{left:467.700000px;}
.x13e_c00464{left:470.700000px;}
.xdc_c00464{left:474.450000px;}
.x111_c00464{left:476.700000px;}
.xbd_c00464{left:479.700000px;}
.x118_c00464{left:481.350000px;}
.xb1_c00464{left:482.700000px;}
.x11b_c00464{left:484.200000px;}
.xd2_c00464{left:487.050000px;}
.xe2_c00464{left:488.850000px;}
.x12c_c00464{left:490.350000px;}
.xf8_c00464{left:492.300000px;}
.x139_c00464{left:494.100000px;}
.xc6_c00464{left:495.150000px;}
.x100_c00464{left:497.100000px;}
.x104_c00464{left:499.350000px;}
.xb9_c00464{left:500.850000px;}
.x124_c00464{left:504.150000px;}
.x11d_c00464{left:506.400000px;}
.x10d_c00464{left:507.600000px;}
.xe3_c00464{left:508.650000px;}
.xf3_c00464{left:510.750000px;}
.xd8_c00464{left:512.550000px;}
.x109_c00464{left:514.650000px;}
.xbe_c00464{left:515.700000px;}
.x125_c00464{left:517.050000px;}
.xf5_c00464{left:519.150000px;}
.xa9_c00464{left:521.250000px;}
.x12f_c00464{left:522.300000px;}
.x120_c00464{left:523.800000px;}
.xbf_c00464{left:525.000000px;}
.x137_c00464{left:526.800000px;}
.x12e_c00464{left:527.850000px;}
.xe8_c00464{left:528.900000px;}
.xcc_c00464{left:531.300000px;}
.x135_c00464{left:533.250000px;}
.xdd_c00464{left:534.600000px;}
.xb2_c00464{left:535.650000px;}
.xd3_c00464{left:539.250000px;}
.xaa_c00464{left:541.800000px;}
.xc7_c00464{left:543.750000px;}
.x126_c00464{left:544.800000px;}
.x13d_c00464{left:546.600000px;}
.xe4_c00464{left:549.000000px;}
.xf4_c00464{left:550.350000px;}
.x10a_c00464{left:552.450000px;}
.x121_c00464{left:554.700000px;}
.x146_c00464{left:556.500000px;}
.xd9_c00464{left:558.300000px;}
.x140_c00464{left:561.000000px;}
.x134_c00464{left:562.050000px;}
.xb3_c00464{left:563.700000px;}
.x10e_c00464{left:567.300000px;}
.xc0_c00464{left:568.950000px;}
.xe9_c00464{left:571.350000px;}
.xd4_c00464{left:572.700000px;}
.xf9_c00464{left:575.100000px;}
.x105_c00464{left:576.450000px;}
.x112_c00464{left:577.500000px;}
.x10f_c00464{left:579.300000px;}
.x122_c00464{left:582.000000px;}
.xb4_c00464{left:583.500000px;}
.xed_c00464{left:584.550000px;}
.xf6_c00464{left:586.800000px;}
.x10c_c00464{left:588.750000px;}
.xab_c00464{left:591.450000px;}
.xfa_c00464{left:593.400000px;}
.xcd_c00464{left:595.350000px;}
.x13a_c00464{left:598.050000px;}
.xba_c00464{left:599.850000px;}
.x101_c00464{left:602.100000px;}
.xea_c00464{left:603.750000px;}
.xac_c00464{left:605.850000px;}
.xde_c00464{left:607.350000px;}
.x114_c00464{left:612.150000px;}
.xc1_c00464{left:613.650000px;}
.x119_c00464{left:615.300000px;}
.x106_c00464{left:616.350000px;}
.xdf_c00464{left:618.450000px;}
.xe5_c00464{left:621.000000px;}
.x127_c00464{left:622.500000px;}
.xbb_c00464{left:624.000000px;}
.xf1_c00464{left:625.650000px;}
.x115_c00464{left:627.600000px;}
.xc2_c00464{left:630.150000px;}
.x110_c00464{left:632.550000px;}
.xc8_c00464{left:636.600000px;}
.xb5_c00464{left:641.100000px;}
.x11e_c00464{left:642.450000px;}
.xda_c00464{left:646.200000px;}
.xee_c00464{left:647.550000px;}
.x129_c00464{left:649.050000px;}
.xce_c00464{left:650.850000px;}
.xfb_c00464{left:652.800000px;}
.x107_c00464{left:653.850000px;}
.x11c_c00464{left:654.900000px;}
.x116_c00464{left:656.100000px;}
.xad_c00464{left:659.550000px;}
.xd5_c00464{left:661.650000px;}
.x141_c00464{left:663.900000px;}
.xb6_c00464{left:665.550000px;}
.xcf_c00464{left:670.950000px;}
.x128_c00464{left:674.700000px;}
.xfc_c00464{left:675.900000px;}
.xc3_c00464{left:678.450000px;}
.x143_c00464{left:681.150000px;}
.x12a_c00464{left:682.950000px;}
.xe0_c00464{left:684.300000px;}
.x130_c00464{left:685.800000px;}
.xeb_c00464{left:687.600000px;}
.x11a_c00464{left:688.650000px;}
.x13f_c00464{left:690.450000px;}
.xc9_c00464{left:692.400000px;}
.xe6_c00464{left:693.750000px;}
.x13c_c00464{left:695.250000px;}
.xf7_c00464{left:697.800000px;}
.xae_c00464{left:699.150000px;}
.xef_c00464{left:701.250000px;}
.x13b_c00464{left:702.450000px;}
.xb7_c00464{left:704.100000px;}
.xf2_c00464{left:705.900000px;}
.x108_c00464{left:708.900000px;}
.x133_c00464{left:711.750000px;}
.xe1_c00464{left:713.100000px;}
.xbc_c00464{left:715.050000px;}
.xd0_c00464{left:717.450000px;}
.x136_c00464{left:719.700000px;}
.xf0_c00464{left:720.750000px;}
.xd6_c00464{left:721.800000px;}
.xfd_c00464{left:724.500000px;}
.xec_c00464{left:726.150000px;}
.xdb_c00464{left:727.650000px;}
.x12b_c00464{left:729.750000px;}
.x138_c00464{left:730.950000px;}
.x10b_c00464{left:732.750000px;}
.x123_c00464{left:735.300000px;}
.xca_c00464{left:736.650000px;}
.xb8_c00464{left:738.000000px;}
.xaf_c00464{left:740.850000px;}
.x2_c00464{left:743.400000px;}
.xd1_c00464{left:744.750000px;}
.xc4_c00464{left:746.550000px;}
.xd7_c00464{left:749.100000px;}
.xfe_c00464{left:752.250000px;}
.xb0_c00464{left:753.750000px;}
.x117_c00464{left:754.950000px;}
.x131_c00464{left:756.750000px;}
.x12d_c00464{left:761.850000px;}
.xcb_c00464{left:763.350000px;}
.x102_c00464{left:765.600000px;}
.x11f_c00464{left:767.250000px;}
.x113_c00464{left:771.000000px;}
.x145_c00464{left:772.200000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls1_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:49.523810pt;}
.ws10_c00464{word-spacing:-76.190476pt;}
.ws0_c00464{word-spacing:-15.575921pt;}
.ws13_c00464{word-spacing:-9.941520pt;}
.ws14_c00464{word-spacing:-9.618632pt;}
.ws16_c00464{word-spacing:-8.421053pt;}
.ws18_c00464{word-spacing:-7.358534pt;}
.ws19_c00464{word-spacing:-7.260839pt;}
.ws1a_c00464{word-spacing:-0.190476pt;}
.ws1b_c00464{word-spacing:0.000000pt;}
.wsc_c00464{word-spacing:9.296903pt;}
.ws17_c00464{word-spacing:12.281346pt;}
.wsf_c00464{word-spacing:13.333333pt;}
.ws9_c00464{word-spacing:14.451210pt;}
.wsa_c00464{word-spacing:15.870235pt;}
.wsb_c00464{word-spacing:16.000000pt;}
.ws8_c00464{word-spacing:17.773012pt;}
.wsd_c00464{word-spacing:18.222222pt;}
.ws3_c00464{word-spacing:19.682540pt;}
.ws15_c00464{word-spacing:20.202483pt;}
.wse_c00464{word-spacing:22.358475pt;}
.ws5_c00464{word-spacing:22.857143pt;}
.ws7_c00464{word-spacing:25.267760pt;}
.ws2_c00464{word-spacing:26.031746pt;}
.ws12_c00464{word-spacing:30.793651pt;}
.ws6_c00464{word-spacing:34.972010pt;}
.ws11_c00464{word-spacing:35.555556pt;}
.ws4_c00464{word-spacing:44.814815pt;}
.ws1_c00464{word-spacing:57.777778pt;}
._4_c00464{margin-left:-49.523810pt;}
._7_c00464{width:22.264920pt;}
._3_c00464{width:42.777778pt;}
._2_c00464{width:44.632708pt;}
._6_c00464{width:46.349206pt;}
._0_c00464{width:49.523810pt;}
._1_c00464{width:52.698413pt;}
._5_c00464{width:57.460317pt;}
.fs6_c00464{font-size:37.333333pt;}
.fs5_c00464{font-size:48.000000pt;}
.fs4_c00464{font-size:53.333333pt;}
.fs3_c00464{font-size:58.666667pt;}
.fs2_c00464{font-size:64.000000pt;}
.fs0_c00464{font-size:74.666667pt;}
.fs1_c00464{font-size:85.333333pt;}
.y0_c00464{bottom:0.000000pt;}
.y3a_c00464{bottom:166.266667pt;}
.y6a_c00464{bottom:169.866667pt;}
.y39_c00464{bottom:180.000000pt;}
.y69_c00464{bottom:190.133333pt;}
.y38_c00464{bottom:193.066667pt;}
.y37_c00464{bottom:206.133333pt;}
.y36_c00464{bottom:218.666667pt;}
.y68_c00464{bottom:222.133333pt;}
.y35_c00464{bottom:231.733333pt;}
.y67_c00464{bottom:238.133333pt;}
.y34_c00464{bottom:244.533333pt;}
.y66_c00464{bottom:254.800000pt;}
.y33_c00464{bottom:257.333333pt;}
.y65_c00464{bottom:269.866667pt;}
.y32_c00464{bottom:270.133333pt;}
.y31_c00464{bottom:283.200000pt;}
.y64_c00464{bottom:286.533333pt;}
.y63_c00464{bottom:302.266667pt;}
.y62_c00464{bottom:318.266667pt;}
.y30_c00464{bottom:328.133333pt;}
.y61_c00464{bottom:334.266667pt;}
.y2f_c00464{bottom:343.866667pt;}
.y60_c00464{bottom:350.000000pt;}
.y2e_c00464{bottom:360.133333pt;}
.y5f_c00464{bottom:366.000000pt;}
.y2d_c00464{bottom:376.133333pt;}
.y5e_c00464{bottom:381.733333pt;}
.y2c_c00464{bottom:392.133333pt;}
.y5d_c00464{bottom:397.733333pt;}
.y2b_c00464{bottom:408.400000pt;}
.y5c_c00464{bottom:413.733333pt;}
.y2a_c00464{bottom:424.133333pt;}
.y5b_c00464{bottom:429.466667pt;}
.y29_c00464{bottom:440.133333pt;}
.y5a_c00464{bottom:449.600000pt;}
.y28_c00464{bottom:455.866667pt;}
.y59_c00464{bottom:465.866667pt;}
.y27_c00464{bottom:471.600000pt;}
.y58_c00464{bottom:481.866667pt;}
.y26_c00464{bottom:487.600000pt;}
.y57_c00464{bottom:497.600000pt;}
.y25_c00464{bottom:503.600000pt;}
.y56_c00464{bottom:513.600000pt;}
.y24_c00464{bottom:519.600000pt;}
.y55_c00464{bottom:533.733333pt;}
.y23_c00464{bottom:535.600000pt;}
.y54_c00464{bottom:549.466667pt;}
.y22_c00464{bottom:551.333333pt;}
.y53_c00464{bottom:565.733333pt;}
.y21_c00464{bottom:574.133333pt;}
.y52_c00464{bottom:585.600000pt;}
.y20_c00464{bottom:587.600000pt;}
.y1f_c00464{bottom:599.733333pt;}
.y1e_c00464{bottom:612.533333pt;}
.y1d_c00464{bottom:625.333333pt;}
.y51_c00464{bottom:632.666667pt;}
.y1c_c00464{bottom:635.866667pt;}
.y1b_c00464{bottom:648.933333pt;}
.y50_c00464{bottom:649.333333pt;}
.y1a_c00464{bottom:663.600000pt;}
.y4f_c00464{bottom:665.333333pt;}
.y19_c00464{bottom:674.133333pt;}
.y4e_c00464{bottom:683.866667pt;}
.y18_c00464{bottom:686.933333pt;}
.y4d_c00464{bottom:701.200000pt;}
.y17_c00464{bottom:701.333333pt;}
.y16_c00464{bottom:712.266667pt;}
.y4c_c00464{bottom:717.200000pt;}
.y15_c00464{bottom:725.733333pt;}
.y4b_c00464{bottom:733.200000pt;}
.y14_c00464{bottom:738.266667pt;}
.y4a_c00464{bottom:751.066667pt;}
.y13_c00464{bottom:752.666667pt;}
.y12_c00464{bottom:763.866667pt;}
.y49_c00464{bottom:768.000000pt;}
.y11_c00464{bottom:776.666667pt;}
.y48_c00464{bottom:785.333333pt;}
.y10_c00464{bottom:791.733333pt;}
.y47_c00464{bottom:803.200000pt;}
.yf_c00464{bottom:804.533333pt;}
.ye_c00464{bottom:815.333333pt;}
.y46_c00464{bottom:820.800000pt;}
.yd_c00464{bottom:830.400000pt;}
.y45_c00464{bottom:837.066667pt;}
.yc_c00464{bottom:844.400000pt;}
.y44_c00464{bottom:853.333333pt;}
.yb_c00464{bottom:863.600000pt;}
.y43_c00464{bottom:869.066667pt;}
.ya_c00464{bottom:879.333333pt;}
.y42_c00464{bottom:884.800000pt;}
.y9_c00464{bottom:895.600000pt;}
.y41_c00464{bottom:900.800000pt;}
.y8_c00464{bottom:910.666667pt;}
.y40_c00464{bottom:917.066667pt;}
.y7_c00464{bottom:926.933333pt;}
.y3f_c00464{bottom:932.800000pt;}
.y6_c00464{bottom:942.666667pt;}
.y3e_c00464{bottom:949.066667pt;}
.y5_c00464{bottom:956.800000pt;}
.y3d_c00464{bottom:965.066667pt;}
.y4_c00464{bottom:977.866667pt;}
.y3c_c00464{bottom:981.066667pt;}
.y3_c00464{bottom:993.866667pt;}
.y3b_c00464{bottom:997.066667pt;}
.y1_c00464{bottom:1019.200000pt;}
.y2_c00464{bottom:1021.066667pt;}
.h8_c00464{height:37.333333pt;}
.h7_c00464{height:48.000000pt;}
.h6_c00464{height:53.333333pt;}
.h5_c00464{height:58.666667pt;}
.h4_c00464{height:64.000000pt;}
.h2_c00464{height:74.666667pt;}
.h3_c00464{height:85.333333pt;}
.h1_c00464{height:1130.000000pt;}
.h0_c00464{height:1130.239991pt;}
.w0_c00464{width:851.840007pt;}
.w1_c00464{width:852.000000pt;}
.x0_c00464{left:0.000000pt;}
.x14_c00464{left:71.066667pt;}
.x9d_c00464{left:72.000000pt;}
.x7b_c00464{left:73.600000pt;}
.x3c_c00464{left:83.866667pt;}
.x2a_c00464{left:85.066667pt;}
.x3_c00464{left:86.400000pt;}
.x7c_c00464{left:89.733333pt;}
.x8a_c00464{left:90.666667pt;}
.x68_c00464{left:93.200000pt;}
.x45_c00464{left:98.533333pt;}
.x3d_c00464{left:101.466667pt;}
.x5a_c00464{left:103.333333pt;}
.x22_c00464{left:104.400000pt;}
.xc_c00464{left:106.266667pt;}
.x15_c00464{left:107.866667pt;}
.x98_c00464{left:110.666667pt;}
.x69_c00464{left:112.666667pt;}
.xa0_c00464{left:114.400000pt;}
.x50_c00464{left:117.466667pt;}
.x6d_c00464{left:118.533333pt;}
.x8b_c00464{left:120.800000pt;}
.x9a_c00464{left:122.933333pt;}
.x38_c00464{left:125.733333pt;}
.x4_c00464{left:126.666667pt;}
.x32_c00464{left:128.800000pt;}
.x7d_c00464{left:129.733333pt;}
.xa4_c00464{left:132.800000pt;}
.x6a_c00464{left:133.866667pt;}
.x51_c00464{left:135.066667pt;}
.x93_c00464{left:137.866667pt;}
.x82_c00464{left:138.933333pt;}
.xd_c00464{left:139.866667pt;}
.x1a_c00464{left:141.466667pt;}
.x90_c00464{left:142.933333pt;}
.x3e_c00464{left:144.400000pt;}
.x6b_c00464{left:145.600000pt;}
.x5_c00464{left:146.533333pt;}
.x5d_c00464{left:147.600000pt;}
.xe_c00464{left:148.800000pt;}
.x41_c00464{left:150.800000pt;}
.x46_c00464{left:153.866667pt;}
.x56_c00464{left:155.866667pt;}
.x91_c00464{left:157.066667pt;}
.xa5_c00464{left:158.666667pt;}
.x33_c00464{left:160.533333pt;}
.x37_c00464{left:161.866667pt;}
.x89_c00464{left:162.800000pt;}
.x47_c00464{left:163.733333pt;}
.x16_c00464{left:165.466667pt;}
.x1b_c00464{left:166.800000pt;}
.x61_c00464{left:168.133333pt;}
.x2b_c00464{left:169.866667pt;}
.x42_c00464{left:171.333333pt;}
.x67_c00464{left:172.533333pt;}
.x7e_c00464{left:174.800000pt;}
.x60_c00464{left:175.733333pt;}
.x23_c00464{left:178.266667pt;}
.x6_c00464{left:179.866667pt;}
.x5e_c00464{left:180.933333pt;}
.x2c_c00464{left:182.933333pt;}
.x80_c00464{left:184.133333pt;}
.x57_c00464{left:185.866667pt;}
.xf_c00464{left:187.866667pt;}
.x24_c00464{left:189.200000pt;}
.x6e_c00464{left:190.800000pt;}
.x48_c00464{left:192.266667pt;}
.x1c_c00464{left:194.000000pt;}
.x3f_c00464{left:194.933333pt;}
.x94_c00464{left:197.066667pt;}
.x17_c00464{left:198.133333pt;}
.x5b_c00464{left:199.333333pt;}
.x10_c00464{left:200.400000pt;}
.x75_c00464{left:202.133333pt;}
.x62_c00464{left:203.066667pt;}
.x25_c00464{left:204.533333pt;}
.x65_c00464{left:207.200000pt;}
.x6f_c00464{left:208.800000pt;}
.x49_c00464{left:209.866667pt;}
.x58_c00464{left:211.466667pt;}
.x63_c00464{left:212.933333pt;}
.x70_c00464{left:215.200000pt;}
.x8f_c00464{left:217.200000pt;}
.x43_c00464{left:219.066667pt;}
.x66_c00464{left:220.266667pt;}
.x7_c00464{left:221.200000pt;}
.xa6_c00464{left:222.800000pt;}
.x5f_c00464{left:223.733333pt;}
.x34_c00464{left:225.200000pt;}
.x52_c00464{left:226.266667pt;}
.x11_c00464{left:228.266667pt;}
.x26_c00464{left:231.466667pt;}
.x1d_c00464{left:232.400000pt;}
.x78_c00464{left:233.600000pt;}
.x64_c00464{left:234.666667pt;}
.xa1_c00464{left:235.600000pt;}
.x40_c00464{left:236.533333pt;}
.x87_c00464{left:238.133333pt;}
.x53_c00464{left:239.466667pt;}
.x27_c00464{left:241.066667pt;}
.x1e_c00464{left:242.666667pt;}
.x96_c00464{left:244.000000pt;}
.x4a_c00464{left:245.733333pt;}
.x79_c00464{left:246.666667pt;}
.x2d_c00464{left:247.600000pt;}
.x30_c00464{left:249.866667pt;}
.x95_c00464{left:250.800000pt;}
.x4b_c00464{left:252.133333pt;}
.x7a_c00464{left:253.066667pt;}
.x8_c00464{left:254.133333pt;}
.x59_c00464{left:257.466667pt;}
.x54_c00464{left:259.200000pt;}
.x8c_c00464{left:260.266667pt;}
.x35_c00464{left:262.000000pt;}
.x9b_c00464{left:263.333333pt;}
.x4c_c00464{left:265.200000pt;}
.x76_c00464{left:266.533333pt;}
.x71_c00464{left:267.466667pt;}
.x9_c00464{left:270.800000pt;}
.x5c_c00464{left:272.400000pt;}
.x18_c00464{left:274.666667pt;}
.x6c_c00464{left:277.600000pt;}
.x1f_c00464{left:278.800000pt;}
.x12_c00464{left:280.800000pt;}
.x83_c00464{left:282.000000pt;}
.x7f_c00464{left:283.333333pt;}
.x55_c00464{left:284.400000pt;}
.x1_c00464{left:285.733333pt;}
.x97_c00464{left:289.733333pt;}
.xa_c00464{left:291.333333pt;}
.x72_c00464{left:293.066667pt;}
.x20_c00464{left:295.466667pt;}
.x31_c00464{left:297.200000pt;}
.x39_c00464{left:299.200000pt;}
.x85_c00464{left:302.000000pt;}
.x2e_c00464{left:303.333333pt;}
.x44_c00464{left:308.400000pt;}
.x4d_c00464{left:309.466667pt;}
.x8d_c00464{left:310.800000pt;}
.x28_c00464{left:312.533333pt;}
.x99_c00464{left:315.600000pt;}
.x81_c00464{left:319.466667pt;}
.x19_c00464{left:321.333333pt;}
.x21_c00464{left:325.200000pt;}
.x3a_c00464{left:327.333333pt;}
.x88_c00464{left:329.866667pt;}
.xb_c00464{left:332.000000pt;}
.x4e_c00464{left:333.200000pt;}
.x13_c00464{left:334.533333pt;}
.x77_c00464{left:336.000000pt;}
.x73_c00464{left:336.933333pt;}
.x8e_c00464{left:338.933333pt;}
.x9f_c00464{left:340.000000pt;}
.x29_c00464{left:342.000000pt;}
.xa3_c00464{left:343.600000pt;}
.x2f_c00464{left:344.533333pt;}
.x92_c00464{left:346.533333pt;}
.x36_c00464{left:347.466667pt;}
.x9e_c00464{left:350.400000pt;}
.x84_c00464{left:354.000000pt;}
.x9c_c00464{left:354.933333pt;}
.xa7_c00464{left:356.266667pt;}
.x3b_c00464{left:357.466667pt;}
.x4f_c00464{left:359.466667pt;}
.x74_c00464{left:361.200000pt;}
.xa2_c00464{left:368.800000pt;}
.x86_c00464{left:369.866667pt;}
.x103_c00464{left:391.066667pt;}
.xa8_c00464{left:403.466667pt;}
.xc5_c00464{left:404.666667pt;}
.xe7_c00464{left:405.733333pt;}
.xff_c00464{left:406.933333pt;}
.x132_c00464{left:408.000000pt;}
.x144_c00464{left:411.866667pt;}
.x142_c00464{left:415.733333pt;}
.x13e_c00464{left:418.400000pt;}
.xdc_c00464{left:421.733333pt;}
.x111_c00464{left:423.733333pt;}
.xbd_c00464{left:426.400000pt;}
.x118_c00464{left:427.866667pt;}
.xb1_c00464{left:429.066667pt;}
.x11b_c00464{left:430.400000pt;}
.xd2_c00464{left:432.933333pt;}
.xe2_c00464{left:434.533333pt;}
.x12c_c00464{left:435.866667pt;}
.xf8_c00464{left:437.600000pt;}
.x139_c00464{left:439.200000pt;}
.xc6_c00464{left:440.133333pt;}
.x100_c00464{left:441.866667pt;}
.x104_c00464{left:443.866667pt;}
.xb9_c00464{left:445.200000pt;}
.x124_c00464{left:448.133333pt;}
.x11d_c00464{left:450.133333pt;}
.x10d_c00464{left:451.200000pt;}
.xe3_c00464{left:452.133333pt;}
.xf3_c00464{left:454.000000pt;}
.xd8_c00464{left:455.600000pt;}
.x109_c00464{left:457.466667pt;}
.xbe_c00464{left:458.400000pt;}
.x125_c00464{left:459.600000pt;}
.xf5_c00464{left:461.466667pt;}
.xa9_c00464{left:463.333333pt;}
.x12f_c00464{left:464.266667pt;}
.x120_c00464{left:465.600000pt;}
.xbf_c00464{left:466.666667pt;}
.x137_c00464{left:468.266667pt;}
.x12e_c00464{left:469.200000pt;}
.xe8_c00464{left:470.133333pt;}
.xcc_c00464{left:472.266667pt;}
.x135_c00464{left:474.000000pt;}
.xdd_c00464{left:475.200000pt;}
.xb2_c00464{left:476.133333pt;}
.xd3_c00464{left:479.333333pt;}
.xaa_c00464{left:481.600000pt;}
.xc7_c00464{left:483.333333pt;}
.x126_c00464{left:484.266667pt;}
.x13d_c00464{left:485.866667pt;}
.xe4_c00464{left:488.000000pt;}
.xf4_c00464{left:489.200000pt;}
.x10a_c00464{left:491.066667pt;}
.x121_c00464{left:493.066667pt;}
.x146_c00464{left:494.666667pt;}
.xd9_c00464{left:496.266667pt;}
.x140_c00464{left:498.666667pt;}
.x134_c00464{left:499.600000pt;}
.xb3_c00464{left:501.066667pt;}
.x10e_c00464{left:504.266667pt;}
.xc0_c00464{left:505.733333pt;}
.xe9_c00464{left:507.866667pt;}
.xd4_c00464{left:509.066667pt;}
.xf9_c00464{left:511.200000pt;}
.x105_c00464{left:512.400000pt;}
.x112_c00464{left:513.333333pt;}
.x10f_c00464{left:514.933333pt;}
.x122_c00464{left:517.333333pt;}
.xb4_c00464{left:518.666667pt;}
.xed_c00464{left:519.600000pt;}
.xf6_c00464{left:521.600000pt;}
.x10c_c00464{left:523.333333pt;}
.xab_c00464{left:525.733333pt;}
.xfa_c00464{left:527.466667pt;}
.xcd_c00464{left:529.200000pt;}
.x13a_c00464{left:531.600000pt;}
.xba_c00464{left:533.200000pt;}
.x101_c00464{left:535.200000pt;}
.xea_c00464{left:536.666667pt;}
.xac_c00464{left:538.533333pt;}
.xde_c00464{left:539.866667pt;}
.x114_c00464{left:544.133333pt;}
.xc1_c00464{left:545.466667pt;}
.x119_c00464{left:546.933333pt;}
.x106_c00464{left:547.866667pt;}
.xdf_c00464{left:549.733333pt;}
.xe5_c00464{left:552.000000pt;}
.x127_c00464{left:553.333333pt;}
.xbb_c00464{left:554.666667pt;}
.xf1_c00464{left:556.133333pt;}
.x115_c00464{left:557.866667pt;}
.xc2_c00464{left:560.133333pt;}
.x110_c00464{left:562.266667pt;}
.xc8_c00464{left:565.866667pt;}
.xb5_c00464{left:569.866667pt;}
.x11e_c00464{left:571.066667pt;}
.xda_c00464{left:574.400000pt;}
.xee_c00464{left:575.600000pt;}
.x129_c00464{left:576.933333pt;}
.xce_c00464{left:578.533333pt;}
.xfb_c00464{left:580.266667pt;}
.x107_c00464{left:581.200000pt;}
.x11c_c00464{left:582.133333pt;}
.x116_c00464{left:583.200000pt;}
.xad_c00464{left:586.266667pt;}
.xd5_c00464{left:588.133333pt;}
.x141_c00464{left:590.133333pt;}
.xb6_c00464{left:591.600000pt;}
.xcf_c00464{left:596.400000pt;}
.x128_c00464{left:599.733333pt;}
.xfc_c00464{left:600.800000pt;}
.xc3_c00464{left:603.066667pt;}
.x143_c00464{left:605.466667pt;}
.x12a_c00464{left:607.066667pt;}
.xe0_c00464{left:608.266667pt;}
.x130_c00464{left:609.600000pt;}
.xeb_c00464{left:611.200000pt;}
.x11a_c00464{left:612.133333pt;}
.x13f_c00464{left:613.733333pt;}
.xc9_c00464{left:615.466667pt;}
.xe6_c00464{left:616.666667pt;}
.x13c_c00464{left:618.000000pt;}
.xf7_c00464{left:620.266667pt;}
.xae_c00464{left:621.466667pt;}
.xef_c00464{left:623.333333pt;}
.x13b_c00464{left:624.400000pt;}
.xb7_c00464{left:625.866667pt;}
.xf2_c00464{left:627.466667pt;}
.x108_c00464{left:630.133333pt;}
.x133_c00464{left:632.666667pt;}
.xe1_c00464{left:633.866667pt;}
.xbc_c00464{left:635.600000pt;}
.xd0_c00464{left:637.733333pt;}
.x136_c00464{left:639.733333pt;}
.xf0_c00464{left:640.666667pt;}
.xd6_c00464{left:641.600000pt;}
.xfd_c00464{left:644.000000pt;}
.xec_c00464{left:645.466667pt;}
.xdb_c00464{left:646.800000pt;}
.x12b_c00464{left:648.666667pt;}
.x138_c00464{left:649.733333pt;}
.x10b_c00464{left:651.333333pt;}
.x123_c00464{left:653.600000pt;}
.xca_c00464{left:654.800000pt;}
.xb8_c00464{left:656.000000pt;}
.xaf_c00464{left:658.533333pt;}
.x2_c00464{left:660.800000pt;}
.xd1_c00464{left:662.000000pt;}
.xc4_c00464{left:663.600000pt;}
.xd7_c00464{left:665.866667pt;}
.xfe_c00464{left:668.666667pt;}
.xb0_c00464{left:670.000000pt;}
.x117_c00464{left:671.066667pt;}
.x131_c00464{left:672.666667pt;}
.x12d_c00464{left:677.200000pt;}
.xcb_c00464{left:678.533333pt;}
.x102_c00464{left:680.533333pt;}
.x11f_c00464{left:682.000000pt;}
.x113_c00464{left:685.333333pt;}
.x145_c00464{left:686.400000pt;}
}





/* 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_c00465 {
    display:none;
  }
  .loading-indicator_c00465.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00465 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_c00465 { 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_c00465" -> "#page-container .classname_c00465")
 */
.pf_c00465 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00465 { /* 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_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00465 { /* 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_c00465 { /* 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_c00465 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00465 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00465 {overflow:visible;}
  }
}
.c_c00465 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00465 { /* 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_c00465:after { /* webkit #35443 */
  content: '';
}
.t_c00465:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00465 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 */
}
.__c00465 { /* 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_c00465 { /* info for Javascript */
  display:none;
}
.l_c00465 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00465 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00465 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00465: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_c00465 {
    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_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00465.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_c00465 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00465;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.000000;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;}
.md4_c00465{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00465{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m65_c00465{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00465{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00465{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m99_c00465{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m35_c00465{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00465{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00465{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00465{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m105_c00465{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.maf_c00465{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00465{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00465{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md_c00465{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m29_c00465{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00465{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m19_c00465{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m116_c00465{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m82_c00465{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m102_c00465{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.md8_c00465{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00465{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m39_c00465{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m67_c00465{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00465{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00465{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m0_c00465{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m87_c00465{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m28_c00465{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m22_c00465{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00465{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m93_c00465{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me2_c00465{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m30_c00465{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00465{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00465{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me1_c00465{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10_c00465{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m17_c00465{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m121_c00465{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.maa_c00465{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00465{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m119_c00465{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m74_c00465{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00465{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00465{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00465{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00465{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00465{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00465{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mae_c00465{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00465{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m24_c00465{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m127_c00465{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m9_c00465{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m15_c00465{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00465{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m98_c00465{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00465{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m26_c00465{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m128_c00465{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mff_c00465{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.med_c00465{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m8_c00465{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00465{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00465{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m88_c00465{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00465{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m63_c00465{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m95_c00465{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m21_c00465{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00465{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.md9_c00465{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m100_c00465{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m42_c00465{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00465{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mf_c00465{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00465{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m13_c00465{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m11_c00465{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00465{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mda_c00465{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00465{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00465{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m49_c00465{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m91_c00465{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m71_c00465{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m14_c00465{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00465{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00465{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00465{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00465{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00465{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m75_c00465{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m96_c00465{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00465{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00465{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m122_c00465{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00465{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m62_c00465{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m117_c00465{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m12_c00465{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m66_c00465{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m34_c00465{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m79_c00465{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m76_c00465{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3_c00465{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00465{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00465{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00465{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md5_c00465{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m38_c00465{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00465{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.me5_c00465{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00465{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m61_c00465{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00465{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m47_c00465{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m114_c00465{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2_c00465{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00465{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00465{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00465{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00465{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00465{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00465{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me6_c00465{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m64_c00465{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00465{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m113_c00465{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00465{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00465{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00465{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m118_c00465{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m129_c00465{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00465{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m18_c00465{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00465{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00465{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00465{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m50_c00465{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m27_c00465{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m20_c00465{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m78_c00465{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mb_c00465{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00465{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00465{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00465{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00465{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00465{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.me3_c00465{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00465{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m90_c00465{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m52_c00465{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00465{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00465{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m59_c00465{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m33_c00465{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00465{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00465{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m110_c00465{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m123_c00465{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m16_c00465{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.meb_c00465{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m7_c00465{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00465{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m69_c00465{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00465{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00465{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m54_c00465{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m92_c00465{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m56_c00465{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m58_c00465{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m23_c00465{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00465{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00465{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00465{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m126_c00465{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00465{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m37_c00465{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00465{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00465{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m40_c00465{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00465{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00465{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m31_c00465{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00465{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m45_c00465{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00465{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00465{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00465{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m57_c00465{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00465{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00465{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.me9_c00465{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00465{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m80_c00465{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m36_c00465{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m43_c00465{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m73_c00465{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00465{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00465{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00465{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m48_c00465{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00465{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6_c00465{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m70_c00465{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.me7_c00465{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m97_c00465{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m115_c00465{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00465{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m68_c00465{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00465{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m32_c00465{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00465{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m53_c00465{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00465{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00465{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00465{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00465{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md2_c00465{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00465{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma_c00465{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00465{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mca_c00465{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00465{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mef_c00465{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00465{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m77_c00465{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m83_c00465{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00465{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m103_c00465{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m85_c00465{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00465{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m106_c00465{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00465{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mde_c00465{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m112_c00465{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00465{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m72_c00465{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m89_c00465{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m104_c00465{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mad_c00465{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m125_c00465{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m108_c00465{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mab_c00465{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00465{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00465{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00465{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00465{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md7_c00465{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m25_c00465{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00465{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m41_c00465{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5_c00465{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);}
.mb0_c00465{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me4_c00465{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00465{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m111_c00465{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00465{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md0_c00465{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc_c00465{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00465{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00465{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m86_c00465{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00465{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00465{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me8_c00465{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m55_c00465{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m101_c00465{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m124_c00465{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m84_c00465{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m120_c00465{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mba_c00465{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m44_c00465{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mee_c00465{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00465{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00465{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00465{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00465{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00465{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m46_c00465{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mce_c00465{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m94_c00465{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00465{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.me_c00465{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md3_c00465{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md6_c00465{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4_c00465{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md1_c00465{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m51_c00465{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00465{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m60_c00465{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m81_c00465{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mac_c00465{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.mea_c00465{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.m109_c00465{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00465{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m107_c00465{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00465{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.me0_c00465{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.mec_c00465{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00465{transform:matrix(0.633000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.000000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{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__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00465{word-spacing:-11.093750px;}
.ws1_c00465{word-spacing:-10.508380px;}
.ws8_c00465{word-spacing:-8.529554px;}
.wse_c00465{word-spacing:-6.705882px;}
.ws4_c00465{word-spacing:-5.833333px;}
.wsf_c00465{word-spacing:-4.393939px;}
.ws0_c00465{word-spacing:-1.964960px;}
.ws10_c00465{word-spacing:0.000000px;}
.wsd_c00465{word-spacing:1.666667px;}
.ws5_c00465{word-spacing:5.937500px;}
.ws3_c00465{word-spacing:9.342105px;}
.ws2_c00465{word-spacing:13.333333px;}
.wsc_c00465{word-spacing:15.000000px;}
.wsa_c00465{word-spacing:25.714286px;}
.ws9_c00465{word-spacing:44.166667px;}
.wsb_c00465{word-spacing:69.605263px;}
.ws7_c00465{word-spacing:3790.488550px;}
._0_c00465{width:59.285714px;}
.fc0_c00465{color:transparent;}
.fs6_c00465{font-size:30.000000px;}
.fs3_c00465{font-size:42.000000px;}
.fs8_c00465{font-size:48.000000px;}
.fs7_c00465{font-size:54.000000px;}
.fs5_c00465{font-size:60.000000px;}
.fs4_c00465{font-size:66.000000px;}
.fs2_c00465{font-size:72.000000px;}
.fs1_c00465{font-size:78.000000px;}
.fs0_c00465{font-size:96.000000px;}
.y0_c00465{bottom:0.000000px;}
.y3b_c00465{bottom:189.450000px;}
.y70_c00465{bottom:192.450000px;}
.y3a_c00465{bottom:204.150000px;}
.y6f_c00465{bottom:210.750000px;}
.y39_c00465{bottom:218.550000px;}
.y6e_c00465{bottom:228.750000px;}
.y38_c00465{bottom:232.950000px;}
.y6d_c00465{bottom:246.450000px;}
.y37_c00465{bottom:247.350000px;}
.y36_c00465{bottom:261.450000px;}
.y6c_c00465{bottom:264.150000px;}
.y35_c00465{bottom:275.850000px;}
.y6b_c00465{bottom:282.150000px;}
.y34_c00465{bottom:289.950000px;}
.y6a_c00465{bottom:300.150000px;}
.y33_c00465{bottom:304.350000px;}
.y69_c00465{bottom:318.450000px;}
.y32_c00465{bottom:320.850000px;}
.y31_c00465{bottom:333.150000px;}
.y68_c00465{bottom:335.700000px;}
.y30_c00465{bottom:347.550000px;}
.y67_c00465{bottom:352.950000px;}
.y2f_c00465{bottom:362.250000px;}
.y66_c00465{bottom:370.950000px;}
.y2e_c00465{bottom:376.950000px;}
.y65_c00465{bottom:388.950000px;}
.y2d_c00465{bottom:391.050000px;}
.y2c_c00465{bottom:405.750000px;}
.y64_c00465{bottom:406.950000px;}
.y2b_c00465{bottom:420.150000px;}
.y63_c00465{bottom:425.250000px;}
.y2a_c00465{bottom:434.550000px;}
.y62_c00465{bottom:442.950000px;}
.y29_c00465{bottom:448.950000px;}
.y61_c00465{bottom:460.950000px;}
.y28_c00465{bottom:463.650000px;}
.y27_c00465{bottom:478.050000px;}
.y60_c00465{bottom:479.250000px;}
.y26_c00465{bottom:492.450000px;}
.y5f_c00465{bottom:496.950000px;}
.y25_c00465{bottom:506.850000px;}
.y5e_c00465{bottom:514.950000px;}
.y24_c00465{bottom:520.950000px;}
.y5d_c00465{bottom:533.250000px;}
.y23_c00465{bottom:535.650000px;}
.y22_c00465{bottom:549.750000px;}
.y5c_c00465{bottom:550.500000px;}
.y21_c00465{bottom:568.800000px;}
.y5b_c00465{bottom:579.600000px;}
.y20_c00465{bottom:588.000000px;}
.y5a_c00465{bottom:593.700000px;}
.y1f_c00465{bottom:606.000000px;}
.y59_c00465{bottom:609.600000px;}
.y58_c00465{bottom:622.500000px;}
.y1e_c00465{bottom:624.000000px;}
.y57_c00465{bottom:637.950000px;}
.y1d_c00465{bottom:642.000000px;}
.y54_c00465{bottom:651.750000px;}
.y1c_c00465{bottom:659.700000px;}
.y53_c00465{bottom:666.150000px;}
.y1b_c00465{bottom:677.700000px;}
.y52_c00465{bottom:680.550000px;}
.y56_c00465{bottom:681.150000px;}
.y55_c00465{bottom:682.200000px;}
.y1a_c00465{bottom:695.700000px;}
.y51_c00465{bottom:696.000000px;}
.y50_c00465{bottom:709.650000px;}
.y19_c00465{bottom:713.400000px;}
.y4f_c00465{bottom:724.350000px;}
.y18_c00465{bottom:731.400000px;}
.y4e_c00465{bottom:739.500000px;}
.y17_c00465{bottom:749.100000px;}
.y4d_c00465{bottom:752.100000px;}
.y16_c00465{bottom:767.400000px;}
.y4c_c00465{bottom:771.000000px;}
.y15_c00465{bottom:785.100000px;}
.y4b_c00465{bottom:789.000000px;}
.y14_c00465{bottom:803.100000px;}
.y4a_c00465{bottom:807.000000px;}
.y13_c00465{bottom:820.800000px;}
.y49_c00465{bottom:825.000000px;}
.y12_c00465{bottom:838.800000px;}
.y48_c00465{bottom:842.700000px;}
.y11_c00465{bottom:856.800000px;}
.y47_c00465{bottom:860.700000px;}
.y10_c00465{bottom:874.800000px;}
.y46_c00465{bottom:878.700000px;}
.yf_c00465{bottom:892.800000px;}
.y45_c00465{bottom:909.600000px;}
.ye_c00465{bottom:910.500000px;}
.y44_c00465{bottom:927.300000px;}
.yd_c00465{bottom:933.000000px;}
.y43_c00465{bottom:945.300000px;}
.yc_c00465{bottom:951.000000px;}
.y42_c00465{bottom:963.300000px;}
.yb_c00465{bottom:969.000000px;}
.y41_c00465{bottom:981.000000px;}
.ya_c00465{bottom:986.700000px;}
.y40_c00465{bottom:999.300000px;}
.y9_c00465{bottom:1004.700000px;}
.y3f_c00465{bottom:1017.300000px;}
.y8_c00465{bottom:1026.750000px;}
.y3e_c00465{bottom:1035.300000px;}
.y7_c00465{bottom:1045.050000px;}
.y3d_c00465{bottom:1062.300000px;}
.y6_c00465{bottom:1063.050000px;}
.y3c_c00465{bottom:1080.000000px;}
.y5_c00465{bottom:1081.050000px;}
.y4_c00465{bottom:1103.100000px;}
.y3_c00465{bottom:1121.400000px;}
.y2_c00465{bottom:1148.100000px;}
.y1_c00465{bottom:1148.400000px;}
.h8_c00465{height:30.000000px;}
.h5_c00465{height:42.000000px;}
.ha_c00465{height:48.000000px;}
.h9_c00465{height:54.000000px;}
.h7_c00465{height:60.000000px;}
.h6_c00465{height:66.000000px;}
.h4_c00465{height:72.000000px;}
.h3_c00465{height:78.000000px;}
.h2_c00465{height:96.000000px;}
.h0_c00465{height:1271.879975px;}
.h1_c00465{height:1272.000000px;}
.w0_c00465{width:958.320007px;}
.w1_c00465{width:958.500000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:178.200000px;}
.x3_c00465{left:179.700000px;}
.x28_c00465{left:180.750000px;}
.x8d_c00465{left:181.800000px;}
.x8a_c00465{left:183.300000px;}
.xa4_c00465{left:184.350000px;}
.xb1_c00465{left:185.400000px;}
.x86_c00465{left:186.900000px;}
.x36_c00465{left:195.300000px;}
.x3c_c00465{left:196.500000px;}
.xc_c00465{left:198.000000px;}
.x83_c00465{left:199.050000px;}
.x1d_c00465{left:200.400000px;}
.x91_c00465{left:202.500000px;}
.x1e_c00465{left:209.100000px;}
.xa5_c00465{left:213.900000px;}
.x9c_c00465{left:215.700000px;}
.x96_c00465{left:216.750000px;}
.xd_c00465{left:217.800000px;}
.x1f_c00465{left:219.600000px;}
.x9a_c00465{left:220.650000px;}
.x87_c00465{left:221.850000px;}
.x93_c00465{left:223.050000px;}
.x8e_c00465{left:224.250000px;}
.x4_c00465{left:225.750000px;}
.xe_c00465{left:226.800000px;}
.xb2_c00465{left:228.600000px;}
.x24_c00465{left:230.400000px;}
.xae_c00465{left:234.900000px;}
.x78_c00465{left:237.450000px;}
.x37_c00465{left:240.300000px;}
.x97_c00465{left:242.250000px;}
.x20_c00465{left:243.300000px;}
.x88_c00465{left:245.250000px;}
.x5b_c00465{left:246.450000px;}
.xa0_c00465{left:247.950000px;}
.x81_c00465{left:249.000000px;}
.x67_c00465{left:250.500000px;}
.xac_c00465{left:251.850000px;}
.x6b_c00465{left:255.000000px;}
.x64_c00465{left:256.800000px;}
.x79_c00465{left:260.100000px;}
.x25_c00465{left:262.500000px;}
.x5_c00465{left:263.550000px;}
.x17_c00465{left:264.600000px;}
.xf_c00465{left:266.400000px;}
.xa6_c00465{left:268.950000px;}
.x4b_c00465{left:270.150000px;}
.x5f_c00465{left:271.650000px;}
.x68_c00465{left:273.900000px;}
.x52_c00465{left:275.700000px;}
.x21_c00465{left:277.200000px;}
.x5c_c00465{left:280.650000px;}
.x26_c00465{left:283.050000px;}
.x71_c00465{left:284.550000px;}
.x2f_c00465{left:286.500000px;}
.x3d_c00465{left:288.300000px;}
.x7e_c00465{left:290.400000px;}
.x69_c00465{left:291.900000px;}
.x53_c00465{left:294.750000px;}
.x29_c00465{left:295.950000px;}
.xa1_c00465{left:297.300000px;}
.x58_c00465{left:298.500000px;}
.x74_c00465{left:300.450000px;}
.x65_c00465{left:301.500000px;}
.x61_c00465{left:305.400000px;}
.x30_c00465{left:308.100000px;}
.x27_c00465{left:309.750000px;}
.x10_c00465{left:311.400000px;}
.x6_c00465{left:312.450000px;}
.x18_c00465{left:317.850000px;}
.x38_c00465{left:319.500000px;}
.x98_c00465{left:321.750000px;}
.xb4_c00465{left:322.950000px;}
.x11_c00465{left:324.000000px;}
.x41_c00465{left:326.250000px;}
.x7_c00465{left:329.400000px;}
.x89_c00465{left:330.600000px;}
.x45_c00465{left:332.250000px;}
.x94_c00465{left:333.300000px;}
.x2a_c00465{left:334.800000px;}
.x9b_c00465{left:337.800000px;}
.x3e_c00465{left:339.450000px;}
.x4c_c00465{left:341.400000px;}
.x31_c00465{left:344.400000px;}
.x42_c00465{left:345.750000px;}
.x3f_c00465{left:347.700000px;}
.xa2_c00465{left:349.800000px;}
.x6d_c00465{left:352.650000px;}
.xaf_c00465{left:353.850000px;}
.x59_c00465{left:354.900000px;}
.xb0_c00465{left:357.000000px;}
.x12_c00465{left:359.700000px;}
.x46_c00465{left:361.350000px;}
.x7a_c00465{left:362.700000px;}
.x54_c00465{left:365.250000px;}
.x9d_c00465{left:367.050000px;}
.xa9_c00465{left:368.700000px;}
.x84_c00465{left:370.200000px;}
.x13_c00465{left:371.550000px;}
.x40_c00465{left:373.950000px;}
.x22_c00465{left:376.200000px;}
.x82_c00465{left:377.550000px;}
.x8_c00465{left:379.500000px;}
.xaa_c00465{left:381.000000px;}
.x60_c00465{left:382.800000px;}
.x6e_c00465{left:385.800000px;}
.x62_c00465{left:387.600000px;}
.x55_c00465{left:389.700000px;}
.x66_c00465{left:391.800000px;}
.x8b_c00465{left:392.850000px;}
.x2b_c00465{left:394.500000px;}
.x39_c00465{left:396.600000px;}
.x19_c00465{left:397.800000px;}
.x4d_c00465{left:399.300000px;}
.x7f_c00465{left:401.250000px;}
.x72_c00465{left:403.800000px;}
.x14_c00465{left:407.250000px;}
.x4e_c00465{left:409.050000px;}
.x2c_c00465{left:411.000000px;}
.x47_c00465{left:412.800000px;}
.x70_c00465{left:414.900000px;}
.x8f_c00465{left:417.000000px;}
.x1a_c00465{left:418.650000px;}
.x75_c00465{left:420.300000px;}
.x32_c00465{left:423.900000px;}
.xa8_c00465{left:425.250000px;}
.x2_c00465{left:427.650000px;}
.x85_c00465{left:429.300000px;}
.x43_c00465{left:431.100000px;}
.x48_c00465{left:432.600000px;}
.x4f_c00465{left:434.550000px;}
.x1b_c00465{left:435.900000px;}
.x92_c00465{left:439.350000px;}
.x3a_c00465{left:440.850000px;}
.x73_c00465{left:442.650000px;}
.x56_c00465{left:443.700000px;}
.x33_c00465{left:444.750000px;}
.x5a_c00465{left:445.950000px;}
.x15_c00465{left:447.150000px;}
.x80_c00465{left:449.100000px;}
.x3b_c00465{left:451.350000px;}
.x7c_c00465{left:452.700000px;}
.x44_c00465{left:453.750000px;}
.x2d_c00465{left:455.250000px;}
.x50_c00465{left:459.000000px;}
.x76_c00465{left:460.950000px;}
.xa3_c00465{left:462.900000px;}
.x5d_c00465{left:464.400000px;}
.x6c_c00465{left:465.450000px;}
.x1c_c00465{left:466.800000px;}
.xa7_c00465{left:468.000000px;}
.x49_c00465{left:469.350000px;}
.x57_c00465{left:471.450000px;}
.x77_c00465{left:473.550000px;}
.x9_c00465{left:474.900000px;}
.x90_c00465{left:476.400000px;}
.x51_c00465{left:478.800000px;}
.xb3_c00465{left:479.850000px;}
.x23_c00465{left:481.350000px;}
.x9e_c00465{left:482.550000px;}
.x2e_c00465{left:484.050000px;}
.xab_c00465{left:486.600000px;}
.x34_c00465{left:488.250000px;}
.x16_c00465{left:490.650000px;}
.x5e_c00465{left:492.450000px;}
.x7d_c00465{left:494.100000px;}
.x6f_c00465{left:495.600000px;}
.x95_c00465{left:497.250000px;}
.x8c_c00465{left:498.300000px;}
.x7b_c00465{left:499.500000px;}
.x6a_c00465{left:500.850000px;}
.x63_c00465{left:502.350000px;}
.x99_c00465{left:503.550000px;}
.x9f_c00465{left:504.900000px;}
.x35_c00465{left:507.000000px;}
.xad_c00465{left:512.100000px;}
.x4a_c00465{left:514.650000px;}
.xa_c00465{left:538.950000px;}
.x12b_c00465{left:540.300000px;}
.xd2_c00465{left:553.950000px;}
.xc6_c00465{left:555.450000px;}
.xbb_c00465{left:556.950000px;}
.x130_c00465{left:558.000000px;}
.x13d_c00465{left:559.500000px;}
.x14e_c00465{left:560.550000px;}
.x112_c00465{left:568.500000px;}
.xbc_c00465{left:575.250000px;}
.x131_c00465{left:577.800000px;}
.xec_c00465{left:579.900000px;}
.x119_c00465{left:581.400000px;}
.xb5_c00465{left:584.250000px;}
.xf5_c00465{left:588.900000px;}
.x103_c00465{left:590.400000px;}
.x109_c00465{left:591.750000px;}
.xdb_c00465{left:593.550000px;}
.xf9_c00465{left:595.650000px;}
.x113_c00465{left:597.600000px;}
.xe7_c00465{left:598.800000px;}
.x10f_c00465{left:602.700000px;}
.x11a_c00465{left:603.750000px;}
.xb_c00465{left:605.850000px;}
.xc7_c00465{left:606.900000px;}
.xfa_c00465{left:609.300000px;}
.xd3_c00465{left:612.300000px;}
.xdc_c00465{left:614.850000px;}
.x137_c00465{left:616.050000px;}
.x143_c00465{left:617.550000px;}
.x148_c00465{left:619.950000px;}
.xb6_c00465{left:622.800000px;}
.xf0_c00465{left:624.750000px;}
.x10a_c00465{left:625.950000px;}
.x133_c00465{left:627.150000px;}
.x121_c00465{left:629.100000px;}
.x115_c00465{left:630.450000px;}
.xcc_c00465{left:632.700000px;}
.xe0_c00465{left:633.750000px;}
.xe8_c00465{left:635.550000px;}
.xbd_c00465{left:639.750000px;}
.xdd_c00465{left:640.800000px;}
.xee_c00465{left:642.300000px;}
.x12c_c00465{left:644.250000px;}
.xed_c00465{left:646.800000px;}
.xd4_c00465{left:648.600000px;}
.x11b_c00465{left:649.800000px;}
.x104_c00465{left:652.950000px;}
.xf6_c00465{left:654.150000px;}
.xe1_c00465{left:655.350000px;}
.x10b_c00465{left:656.550000px;}
.x110_c00465{left:658.200000px;}
.xbe_c00465{left:660.300000px;}
.xfb_c00465{left:662.250000px;}
.x14d_c00465{left:663.750000px;}
.xf1_c00465{left:665.100000px;}
.x146_c00465{left:666.900000px;}
.x122_c00465{left:668.400000px;}
.x11d_c00465{left:669.750000px;}
.xb7_c00465{left:673.950000px;}
.x10c_c00465{left:676.650000px;}
.xfe_c00465{left:678.000000px;}
.x11e_c00465{left:684.150000px;}
.xd5_c00465{left:685.350000px;}
.xcd_c00465{left:686.400000px;}
.xff_c00465{left:688.800000px;}
.xe2_c00465{left:692.100000px;}
.xd6_c00465{left:693.600000px;}
.xfc_c00465{left:694.950000px;}
.x13b_c00465{left:696.000000px;}
.xc8_c00465{left:697.200000px;}
.x117_c00465{left:698.700000px;}
.x105_c00465{left:700.500000px;}
.x138_c00465{left:701.700000px;}
.xb8_c00465{left:703.500000px;}
.xbf_c00465{left:705.600000px;}
.x149_c00465{left:706.800000px;}
.x125_c00465{left:708.000000px;}
.xd7_c00465{left:710.850000px;}
.x13c_c00465{left:712.500000px;}
.x126_c00465{left:714.450000px;}
.x100_c00465{left:715.800000px;}
.xe3_c00465{left:717.000000px;}
.x13e_c00465{left:720.150000px;}
.x127_c00465{left:721.950000px;}
.x14c_c00465{left:724.650000px;}
.xde_c00465{left:727.650000px;}
.x153_c00465{left:728.850000px;}
.xc0_c00465{left:730.050000px;}
.x151_c00465{left:731.100000px;}
.xd8_c00465{left:732.150000px;}
.x123_c00465{left:734.250000px;}
.x14a_c00465{left:735.300000px;}
.xfd_c00465{left:736.650000px;}
.xef_c00465{left:738.450000px;}
.xe4_c00465{left:740.400000px;}
.x118_c00465{left:745.500000px;}
.x14f_c00465{left:747.000000px;}
.xce_c00465{left:748.350000px;}
.x147_c00465{left:749.700000px;}
.xe9_c00465{left:750.750000px;}
.xdf_c00465{left:752.100000px;}
.x139_c00465{left:754.200000px;}
.x134_c00465{left:756.000000px;}
.xc1_c00465{left:757.050000px;}
.x11c_c00465{left:758.850000px;}
.xf7_c00465{left:759.900000px;}
.x13f_c00465{left:761.850000px;}
.xc9_c00465{left:764.850000px;}
.xc2_c00465{left:767.850000px;}
.x150_c00465{left:770.700000px;}
.x124_c00465{left:772.050000px;}
.x128_c00465{left:773.250000px;}
.x12d_c00465{left:775.650000px;}
.xc3_c00465{left:778.950000px;}
.x129_c00465{left:780.450000px;}
.xcf_c00465{left:782.250000px;}
.x101_c00465{left:783.450000px;}
.xea_c00465{left:784.650000px;}
.xf2_c00465{left:787.800000px;}
.xe5_c00465{left:791.850000px;}
.xb9_c00465{left:793.800000px;}
.x10d_c00465{left:795.600000px;}
.x14b_c00465{left:796.950000px;}
.x12e_c00465{left:798.000000px;}
.x141_c00465{left:801.600000px;}
.x132_c00465{left:803.850000px;}
.x116_c00465{left:805.350000px;}
.xd0_c00465{left:806.700000px;}
.x11f_c00465{left:808.050000px;}
.x13a_c00465{left:811.500000px;}
.xca_c00465{left:813.150000px;}
.x106_c00465{left:816.000000px;}
.xf3_c00465{left:818.100000px;}
.x144_c00465{left:820.500000px;}
.x12f_c00465{left:822.900000px;}
.xc4_c00465{left:824.700000px;}
.xd9_c00465{left:827.100000px;}
.xd1_c00465{left:828.300000px;}
.x12a_c00465{left:830.250000px;}
.xeb_c00465{left:831.450000px;}
.x135_c00465{left:832.650000px;}
.x107_c00465{left:833.700000px;}
.x120_c00465{left:835.050000px;}
.x145_c00465{left:836.700000px;}
.xf8_c00465{left:839.400000px;}
.xe6_c00465{left:840.450000px;}
.xba_c00465{left:841.650000px;}
.xc5_c00465{left:842.700000px;}
.xda_c00465{left:844.800000px;}
.x102_c00465{left:846.450000px;}
.xcb_c00465{left:850.200000px;}
.x140_c00465{left:852.900000px;}
.x108_c00465{left:855.300000px;}
.x10e_c00465{left:861.900000px;}
.x111_c00465{left:863.100000px;}
.x114_c00465{left:864.750000px;}
.xf4_c00465{left:866.400000px;}
.x152_c00465{left:867.600000px;}
.x142_c00465{left:873.750000px;}
.x136_c00465{left:875.550000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws6_c00465{word-spacing:-9.861111pt;}
.ws1_c00465{word-spacing:-9.340782pt;}
.ws8_c00465{word-spacing:-7.581825pt;}
.wse_c00465{word-spacing:-5.960784pt;}
.ws4_c00465{word-spacing:-5.185185pt;}
.wsf_c00465{word-spacing:-3.905724pt;}
.ws0_c00465{word-spacing:-1.746631pt;}
.ws10_c00465{word-spacing:0.000000pt;}
.wsd_c00465{word-spacing:1.481481pt;}
.ws5_c00465{word-spacing:5.277778pt;}
.ws3_c00465{word-spacing:8.304094pt;}
.ws2_c00465{word-spacing:11.851852pt;}
.wsc_c00465{word-spacing:13.333333pt;}
.wsa_c00465{word-spacing:22.857143pt;}
.ws9_c00465{word-spacing:39.259259pt;}
.wsb_c00465{word-spacing:61.871345pt;}
.ws7_c00465{word-spacing:3369.323155pt;}
._0_c00465{width:52.698413pt;}
.fs6_c00465{font-size:26.666667pt;}
.fs3_c00465{font-size:37.333333pt;}
.fs8_c00465{font-size:42.666667pt;}
.fs7_c00465{font-size:48.000000pt;}
.fs5_c00465{font-size:53.333333pt;}
.fs4_c00465{font-size:58.666667pt;}
.fs2_c00465{font-size:64.000000pt;}
.fs1_c00465{font-size:69.333333pt;}
.fs0_c00465{font-size:85.333333pt;}
.y0_c00465{bottom:0.000000pt;}
.y3b_c00465{bottom:168.400000pt;}
.y70_c00465{bottom:171.066667pt;}
.y3a_c00465{bottom:181.466667pt;}
.y6f_c00465{bottom:187.333333pt;}
.y39_c00465{bottom:194.266667pt;}
.y6e_c00465{bottom:203.333333pt;}
.y38_c00465{bottom:207.066667pt;}
.y6d_c00465{bottom:219.066667pt;}
.y37_c00465{bottom:219.866667pt;}
.y36_c00465{bottom:232.400000pt;}
.y6c_c00465{bottom:234.800000pt;}
.y35_c00465{bottom:245.200000pt;}
.y6b_c00465{bottom:250.800000pt;}
.y34_c00465{bottom:257.733333pt;}
.y6a_c00465{bottom:266.800000pt;}
.y33_c00465{bottom:270.533333pt;}
.y69_c00465{bottom:283.066667pt;}
.y32_c00465{bottom:285.200000pt;}
.y31_c00465{bottom:296.133333pt;}
.y68_c00465{bottom:298.400000pt;}
.y30_c00465{bottom:308.933333pt;}
.y67_c00465{bottom:313.733333pt;}
.y2f_c00465{bottom:322.000000pt;}
.y66_c00465{bottom:329.733333pt;}
.y2e_c00465{bottom:335.066667pt;}
.y65_c00465{bottom:345.733333pt;}
.y2d_c00465{bottom:347.600000pt;}
.y2c_c00465{bottom:360.666667pt;}
.y64_c00465{bottom:361.733333pt;}
.y2b_c00465{bottom:373.466667pt;}
.y63_c00465{bottom:378.000000pt;}
.y2a_c00465{bottom:386.266667pt;}
.y62_c00465{bottom:393.733333pt;}
.y29_c00465{bottom:399.066667pt;}
.y61_c00465{bottom:409.733333pt;}
.y28_c00465{bottom:412.133333pt;}
.y27_c00465{bottom:424.933333pt;}
.y60_c00465{bottom:426.000000pt;}
.y26_c00465{bottom:437.733333pt;}
.y5f_c00465{bottom:441.733333pt;}
.y25_c00465{bottom:450.533333pt;}
.y5e_c00465{bottom:457.733333pt;}
.y24_c00465{bottom:463.066667pt;}
.y5d_c00465{bottom:474.000000pt;}
.y23_c00465{bottom:476.133333pt;}
.y22_c00465{bottom:488.666667pt;}
.y5c_c00465{bottom:489.333333pt;}
.y21_c00465{bottom:505.600000pt;}
.y5b_c00465{bottom:515.200000pt;}
.y20_c00465{bottom:522.666667pt;}
.y5a_c00465{bottom:527.733333pt;}
.y1f_c00465{bottom:538.666667pt;}
.y59_c00465{bottom:541.866667pt;}
.y58_c00465{bottom:553.333333pt;}
.y1e_c00465{bottom:554.666667pt;}
.y57_c00465{bottom:567.066667pt;}
.y1d_c00465{bottom:570.666667pt;}
.y54_c00465{bottom:579.333333pt;}
.y1c_c00465{bottom:586.400000pt;}
.y53_c00465{bottom:592.133333pt;}
.y1b_c00465{bottom:602.400000pt;}
.y52_c00465{bottom:604.933333pt;}
.y56_c00465{bottom:605.466667pt;}
.y55_c00465{bottom:606.400000pt;}
.y1a_c00465{bottom:618.400000pt;}
.y51_c00465{bottom:618.666667pt;}
.y50_c00465{bottom:630.800000pt;}
.y19_c00465{bottom:634.133333pt;}
.y4f_c00465{bottom:643.866667pt;}
.y18_c00465{bottom:650.133333pt;}
.y4e_c00465{bottom:657.333333pt;}
.y17_c00465{bottom:665.866667pt;}
.y4d_c00465{bottom:668.533333pt;}
.y16_c00465{bottom:682.133333pt;}
.y4c_c00465{bottom:685.333333pt;}
.y15_c00465{bottom:697.866667pt;}
.y4b_c00465{bottom:701.333333pt;}
.y14_c00465{bottom:713.866667pt;}
.y4a_c00465{bottom:717.333333pt;}
.y13_c00465{bottom:729.600000pt;}
.y49_c00465{bottom:733.333333pt;}
.y12_c00465{bottom:745.600000pt;}
.y48_c00465{bottom:749.066667pt;}
.y11_c00465{bottom:761.600000pt;}
.y47_c00465{bottom:765.066667pt;}
.y10_c00465{bottom:777.600000pt;}
.y46_c00465{bottom:781.066667pt;}
.yf_c00465{bottom:793.600000pt;}
.y45_c00465{bottom:808.533333pt;}
.ye_c00465{bottom:809.333333pt;}
.y44_c00465{bottom:824.266667pt;}
.yd_c00465{bottom:829.333333pt;}
.y43_c00465{bottom:840.266667pt;}
.yc_c00465{bottom:845.333333pt;}
.y42_c00465{bottom:856.266667pt;}
.yb_c00465{bottom:861.333333pt;}
.y41_c00465{bottom:872.000000pt;}
.ya_c00465{bottom:877.066667pt;}
.y40_c00465{bottom:888.266667pt;}
.y9_c00465{bottom:893.066667pt;}
.y3f_c00465{bottom:904.266667pt;}
.y8_c00465{bottom:912.666667pt;}
.y3e_c00465{bottom:920.266667pt;}
.y7_c00465{bottom:928.933333pt;}
.y3d_c00465{bottom:944.266667pt;}
.y6_c00465{bottom:944.933333pt;}
.y3c_c00465{bottom:960.000000pt;}
.y5_c00465{bottom:960.933333pt;}
.y4_c00465{bottom:980.533333pt;}
.y3_c00465{bottom:996.800000pt;}
.y2_c00465{bottom:1020.533333pt;}
.y1_c00465{bottom:1020.800000pt;}
.h8_c00465{height:26.666667pt;}
.h5_c00465{height:37.333333pt;}
.ha_c00465{height:42.666667pt;}
.h9_c00465{height:48.000000pt;}
.h7_c00465{height:53.333333pt;}
.h6_c00465{height:58.666667pt;}
.h4_c00465{height:64.000000pt;}
.h3_c00465{height:69.333333pt;}
.h2_c00465{height:85.333333pt;}
.h0_c00465{height:1130.559977pt;}
.h1_c00465{height:1130.666667pt;}
.w0_c00465{width:851.840007pt;}
.w1_c00465{width:852.000000pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:158.400000pt;}
.x3_c00465{left:159.733333pt;}
.x28_c00465{left:160.666667pt;}
.x8d_c00465{left:161.600000pt;}
.x8a_c00465{left:162.933333pt;}
.xa4_c00465{left:163.866667pt;}
.xb1_c00465{left:164.800000pt;}
.x86_c00465{left:166.133333pt;}
.x36_c00465{left:173.600000pt;}
.x3c_c00465{left:174.666667pt;}
.xc_c00465{left:176.000000pt;}
.x83_c00465{left:176.933333pt;}
.x1d_c00465{left:178.133333pt;}
.x91_c00465{left:180.000000pt;}
.x1e_c00465{left:185.866667pt;}
.xa5_c00465{left:190.133333pt;}
.x9c_c00465{left:191.733333pt;}
.x96_c00465{left:192.666667pt;}
.xd_c00465{left:193.600000pt;}
.x1f_c00465{left:195.200000pt;}
.x9a_c00465{left:196.133333pt;}
.x87_c00465{left:197.200000pt;}
.x93_c00465{left:198.266667pt;}
.x8e_c00465{left:199.333333pt;}
.x4_c00465{left:200.666667pt;}
.xe_c00465{left:201.600000pt;}
.xb2_c00465{left:203.200000pt;}
.x24_c00465{left:204.800000pt;}
.xae_c00465{left:208.800000pt;}
.x78_c00465{left:211.066667pt;}
.x37_c00465{left:213.600000pt;}
.x97_c00465{left:215.333333pt;}
.x20_c00465{left:216.266667pt;}
.x88_c00465{left:218.000000pt;}
.x5b_c00465{left:219.066667pt;}
.xa0_c00465{left:220.400000pt;}
.x81_c00465{left:221.333333pt;}
.x67_c00465{left:222.666667pt;}
.xac_c00465{left:223.866667pt;}
.x6b_c00465{left:226.666667pt;}
.x64_c00465{left:228.266667pt;}
.x79_c00465{left:231.200000pt;}
.x25_c00465{left:233.333333pt;}
.x5_c00465{left:234.266667pt;}
.x17_c00465{left:235.200000pt;}
.xf_c00465{left:236.800000pt;}
.xa6_c00465{left:239.066667pt;}
.x4b_c00465{left:240.133333pt;}
.x5f_c00465{left:241.466667pt;}
.x68_c00465{left:243.466667pt;}
.x52_c00465{left:245.066667pt;}
.x21_c00465{left:246.400000pt;}
.x5c_c00465{left:249.466667pt;}
.x26_c00465{left:251.600000pt;}
.x71_c00465{left:252.933333pt;}
.x2f_c00465{left:254.666667pt;}
.x3d_c00465{left:256.266667pt;}
.x7e_c00465{left:258.133333pt;}
.x69_c00465{left:259.466667pt;}
.x53_c00465{left:262.000000pt;}
.x29_c00465{left:263.066667pt;}
.xa1_c00465{left:264.266667pt;}
.x58_c00465{left:265.333333pt;}
.x74_c00465{left:267.066667pt;}
.x65_c00465{left:268.000000pt;}
.x61_c00465{left:271.466667pt;}
.x30_c00465{left:273.866667pt;}
.x27_c00465{left:275.333333pt;}
.x10_c00465{left:276.800000pt;}
.x6_c00465{left:277.733333pt;}
.x18_c00465{left:282.533333pt;}
.x38_c00465{left:284.000000pt;}
.x98_c00465{left:286.000000pt;}
.xb4_c00465{left:287.066667pt;}
.x11_c00465{left:288.000000pt;}
.x41_c00465{left:290.000000pt;}
.x7_c00465{left:292.800000pt;}
.x89_c00465{left:293.866667pt;}
.x45_c00465{left:295.333333pt;}
.x94_c00465{left:296.266667pt;}
.x2a_c00465{left:297.600000pt;}
.x9b_c00465{left:300.266667pt;}
.x3e_c00465{left:301.733333pt;}
.x4c_c00465{left:303.466667pt;}
.x31_c00465{left:306.133333pt;}
.x42_c00465{left:307.333333pt;}
.x3f_c00465{left:309.066667pt;}
.xa2_c00465{left:310.933333pt;}
.x6d_c00465{left:313.466667pt;}
.xaf_c00465{left:314.533333pt;}
.x59_c00465{left:315.466667pt;}
.xb0_c00465{left:317.333333pt;}
.x12_c00465{left:319.733333pt;}
.x46_c00465{left:321.200000pt;}
.x7a_c00465{left:322.400000pt;}
.x54_c00465{left:324.666667pt;}
.x9d_c00465{left:326.266667pt;}
.xa9_c00465{left:327.733333pt;}
.x84_c00465{left:329.066667pt;}
.x13_c00465{left:330.266667pt;}
.x40_c00465{left:332.400000pt;}
.x22_c00465{left:334.400000pt;}
.x82_c00465{left:335.600000pt;}
.x8_c00465{left:337.333333pt;}
.xaa_c00465{left:338.666667pt;}
.x60_c00465{left:340.266667pt;}
.x6e_c00465{left:342.933333pt;}
.x62_c00465{left:344.533333pt;}
.x55_c00465{left:346.400000pt;}
.x66_c00465{left:348.266667pt;}
.x8b_c00465{left:349.200000pt;}
.x2b_c00465{left:350.666667pt;}
.x39_c00465{left:352.533333pt;}
.x19_c00465{left:353.600000pt;}
.x4d_c00465{left:354.933333pt;}
.x7f_c00465{left:356.666667pt;}
.x72_c00465{left:358.933333pt;}
.x14_c00465{left:362.000000pt;}
.x4e_c00465{left:363.600000pt;}
.x2c_c00465{left:365.333333pt;}
.x47_c00465{left:366.933333pt;}
.x70_c00465{left:368.800000pt;}
.x8f_c00465{left:370.666667pt;}
.x1a_c00465{left:372.133333pt;}
.x75_c00465{left:373.600000pt;}
.x32_c00465{left:376.800000pt;}
.xa8_c00465{left:378.000000pt;}
.x2_c00465{left:380.133333pt;}
.x85_c00465{left:381.600000pt;}
.x43_c00465{left:383.200000pt;}
.x48_c00465{left:384.533333pt;}
.x4f_c00465{left:386.266667pt;}
.x1b_c00465{left:387.466667pt;}
.x92_c00465{left:390.533333pt;}
.x3a_c00465{left:391.866667pt;}
.x73_c00465{left:393.466667pt;}
.x56_c00465{left:394.400000pt;}
.x33_c00465{left:395.333333pt;}
.x5a_c00465{left:396.400000pt;}
.x15_c00465{left:397.466667pt;}
.x80_c00465{left:399.200000pt;}
.x3b_c00465{left:401.200000pt;}
.x7c_c00465{left:402.400000pt;}
.x44_c00465{left:403.333333pt;}
.x2d_c00465{left:404.666667pt;}
.x50_c00465{left:408.000000pt;}
.x76_c00465{left:409.733333pt;}
.xa3_c00465{left:411.466667pt;}
.x5d_c00465{left:412.800000pt;}
.x6c_c00465{left:413.733333pt;}
.x1c_c00465{left:414.933333pt;}
.xa7_c00465{left:416.000000pt;}
.x49_c00465{left:417.200000pt;}
.x57_c00465{left:419.066667pt;}
.x77_c00465{left:420.933333pt;}
.x9_c00465{left:422.133333pt;}
.x90_c00465{left:423.466667pt;}
.x51_c00465{left:425.600000pt;}
.xb3_c00465{left:426.533333pt;}
.x23_c00465{left:427.866667pt;}
.x9e_c00465{left:428.933333pt;}
.x2e_c00465{left:430.266667pt;}
.xab_c00465{left:432.533333pt;}
.x34_c00465{left:434.000000pt;}
.x16_c00465{left:436.133333pt;}
.x5e_c00465{left:437.733333pt;}
.x7d_c00465{left:439.200000pt;}
.x6f_c00465{left:440.533333pt;}
.x95_c00465{left:442.000000pt;}
.x8c_c00465{left:442.933333pt;}
.x7b_c00465{left:444.000000pt;}
.x6a_c00465{left:445.200000pt;}
.x63_c00465{left:446.533333pt;}
.x99_c00465{left:447.600000pt;}
.x9f_c00465{left:448.800000pt;}
.x35_c00465{left:450.666667pt;}
.xad_c00465{left:455.200000pt;}
.x4a_c00465{left:457.466667pt;}
.xa_c00465{left:479.066667pt;}
.x12b_c00465{left:480.266667pt;}
.xd2_c00465{left:492.400000pt;}
.xc6_c00465{left:493.733333pt;}
.xbb_c00465{left:495.066667pt;}
.x130_c00465{left:496.000000pt;}
.x13d_c00465{left:497.333333pt;}
.x14e_c00465{left:498.266667pt;}
.x112_c00465{left:505.333333pt;}
.xbc_c00465{left:511.333333pt;}
.x131_c00465{left:513.600000pt;}
.xec_c00465{left:515.466667pt;}
.x119_c00465{left:516.800000pt;}
.xb5_c00465{left:519.333333pt;}
.xf5_c00465{left:523.466667pt;}
.x103_c00465{left:524.800000pt;}
.x109_c00465{left:526.000000pt;}
.xdb_c00465{left:527.600000pt;}
.xf9_c00465{left:529.466667pt;}
.x113_c00465{left:531.200000pt;}
.xe7_c00465{left:532.266667pt;}
.x10f_c00465{left:535.733333pt;}
.x11a_c00465{left:536.666667pt;}
.xb_c00465{left:538.533333pt;}
.xc7_c00465{left:539.466667pt;}
.xfa_c00465{left:541.600000pt;}
.xd3_c00465{left:544.266667pt;}
.xdc_c00465{left:546.533333pt;}
.x137_c00465{left:547.600000pt;}
.x143_c00465{left:548.933333pt;}
.x148_c00465{left:551.066667pt;}
.xb6_c00465{left:553.600000pt;}
.xf0_c00465{left:555.333333pt;}
.x10a_c00465{left:556.400000pt;}
.x133_c00465{left:557.466667pt;}
.x121_c00465{left:559.200000pt;}
.x115_c00465{left:560.400000pt;}
.xcc_c00465{left:562.400000pt;}
.xe0_c00465{left:563.333333pt;}
.xe8_c00465{left:564.933333pt;}
.xbd_c00465{left:568.666667pt;}
.xdd_c00465{left:569.600000pt;}
.xee_c00465{left:570.933333pt;}
.x12c_c00465{left:572.666667pt;}
.xed_c00465{left:574.933333pt;}
.xd4_c00465{left:576.533333pt;}
.x11b_c00465{left:577.600000pt;}
.x104_c00465{left:580.400000pt;}
.xf6_c00465{left:581.466667pt;}
.xe1_c00465{left:582.533333pt;}
.x10b_c00465{left:583.600000pt;}
.x110_c00465{left:585.066667pt;}
.xbe_c00465{left:586.933333pt;}
.xfb_c00465{left:588.666667pt;}
.x14d_c00465{left:590.000000pt;}
.xf1_c00465{left:591.200000pt;}
.x146_c00465{left:592.800000pt;}
.x122_c00465{left:594.133333pt;}
.x11d_c00465{left:595.333333pt;}
.xb7_c00465{left:599.066667pt;}
.x10c_c00465{left:601.466667pt;}
.xfe_c00465{left:602.666667pt;}
.x11e_c00465{left:608.133333pt;}
.xd5_c00465{left:609.200000pt;}
.xcd_c00465{left:610.133333pt;}
.xff_c00465{left:612.266667pt;}
.xe2_c00465{left:615.200000pt;}
.xd6_c00465{left:616.533333pt;}
.xfc_c00465{left:617.733333pt;}
.x13b_c00465{left:618.666667pt;}
.xc8_c00465{left:619.733333pt;}
.x117_c00465{left:621.066667pt;}
.x105_c00465{left:622.666667pt;}
.x138_c00465{left:623.733333pt;}
.xb8_c00465{left:625.333333pt;}
.xbf_c00465{left:627.200000pt;}
.x149_c00465{left:628.266667pt;}
.x125_c00465{left:629.333333pt;}
.xd7_c00465{left:631.866667pt;}
.x13c_c00465{left:633.333333pt;}
.x126_c00465{left:635.066667pt;}
.x100_c00465{left:636.266667pt;}
.xe3_c00465{left:637.333333pt;}
.x13e_c00465{left:640.133333pt;}
.x127_c00465{left:641.733333pt;}
.x14c_c00465{left:644.133333pt;}
.xde_c00465{left:646.800000pt;}
.x153_c00465{left:647.866667pt;}
.xc0_c00465{left:648.933333pt;}
.x151_c00465{left:649.866667pt;}
.xd8_c00465{left:650.800000pt;}
.x123_c00465{left:652.666667pt;}
.x14a_c00465{left:653.600000pt;}
.xfd_c00465{left:654.800000pt;}
.xef_c00465{left:656.400000pt;}
.xe4_c00465{left:658.133333pt;}
.x118_c00465{left:662.666667pt;}
.x14f_c00465{left:664.000000pt;}
.xce_c00465{left:665.200000pt;}
.x147_c00465{left:666.400000pt;}
.xe9_c00465{left:667.333333pt;}
.xdf_c00465{left:668.533333pt;}
.x139_c00465{left:670.400000pt;}
.x134_c00465{left:672.000000pt;}
.xc1_c00465{left:672.933333pt;}
.x11c_c00465{left:674.533333pt;}
.xf7_c00465{left:675.466667pt;}
.x13f_c00465{left:677.200000pt;}
.xc9_c00465{left:679.866667pt;}
.xc2_c00465{left:682.533333pt;}
.x150_c00465{left:685.066667pt;}
.x124_c00465{left:686.266667pt;}
.x128_c00465{left:687.333333pt;}
.x12d_c00465{left:689.466667pt;}
.xc3_c00465{left:692.400000pt;}
.x129_c00465{left:693.733333pt;}
.xcf_c00465{left:695.333333pt;}
.x101_c00465{left:696.400000pt;}
.xea_c00465{left:697.466667pt;}
.xf2_c00465{left:700.266667pt;}
.xe5_c00465{left:703.866667pt;}
.xb9_c00465{left:705.600000pt;}
.x10d_c00465{left:707.200000pt;}
.x14b_c00465{left:708.400000pt;}
.x12e_c00465{left:709.333333pt;}
.x141_c00465{left:712.533333pt;}
.x132_c00465{left:714.533333pt;}
.x116_c00465{left:715.866667pt;}
.xd0_c00465{left:717.066667pt;}
.x11f_c00465{left:718.266667pt;}
.x13a_c00465{left:721.333333pt;}
.xca_c00465{left:722.800000pt;}
.x106_c00465{left:725.333333pt;}
.xf3_c00465{left:727.200000pt;}
.x144_c00465{left:729.333333pt;}
.x12f_c00465{left:731.466667pt;}
.xc4_c00465{left:733.066667pt;}
.xd9_c00465{left:735.200000pt;}
.xd1_c00465{left:736.266667pt;}
.x12a_c00465{left:738.000000pt;}
.xeb_c00465{left:739.066667pt;}
.x135_c00465{left:740.133333pt;}
.x107_c00465{left:741.066667pt;}
.x120_c00465{left:742.266667pt;}
.x145_c00465{left:743.733333pt;}
.xf8_c00465{left:746.133333pt;}
.xe6_c00465{left:747.066667pt;}
.xba_c00465{left:748.133333pt;}
.xc5_c00465{left:749.066667pt;}
.xda_c00465{left:750.933333pt;}
.x102_c00465{left:752.400000pt;}
.xcb_c00465{left:755.733333pt;}
.x140_c00465{left:758.133333pt;}
.x108_c00465{left:760.266667pt;}
.x10e_c00465{left:766.133333pt;}
.x111_c00465{left:767.200000pt;}
.x114_c00465{left:768.666667pt;}
.xf4_c00465{left:770.133333pt;}
.x152_c00465{left:771.200000pt;}
.x142_c00465{left:776.666667pt;}
.x136_c00465{left:778.266667pt;}
}





/* 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_c00466 {
    display:none;
  }
  .loading-indicator_c00466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00466 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_c00466 { 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_c00466" -> "#page-container .classname_c00466")
 */
.pf_c00466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00466 { /* 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_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00466 { /* 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_c00466 { /* 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_c00466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00466 {overflow:visible;}
  }
}
.c_c00466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00466 { /* 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_c00466:after { /* webkit #35443 */
  content: '';
}
.t_c00466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00466 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 */
}
.__c00466 { /* 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_c00466 { /* info for Javascript */
  display:none;
}
.l_c00466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00466: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_c00466 {
    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_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00466.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_c00466 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00466;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.000000;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;}
.mbf_c00466{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m101_c00466{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00466{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m125_c00466{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m107_c00466{transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);}
.m40_c00466{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m105_c00466{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.me3_c00466{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mee_c00466{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me5_c00466{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.med_c00466{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00466{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m106_c00466{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m131_c00466{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00466{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00466{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m130_c00466{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m59_c00466{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00466{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.md4_c00466{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00466{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.md_c00466{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m135_c00466{transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00466{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00466{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00466{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00466{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mae_c00466{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md5_c00466{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m113_c00466{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m49_c00466{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mea_c00466{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md2_c00466{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00466{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00466{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.me1_c00466{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m31_c00466{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m71_c00466{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00466{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m6_c00466{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mec_c00466{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00466{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00466{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m22_c00466{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00466{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m60_c00466{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00466{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00466{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m139_c00466{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00466{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m94_c00466{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m115_c00466{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00466{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma_c00466{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m95_c00466{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3_c00466{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m103_c00466{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00466{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m26_c00466{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00466{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m91_c00466{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00466{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m36_c00466{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00466{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00466{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00466{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m29_c00466{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00466{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m89_c00466{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m44_c00466{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m54_c00466{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00466{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m32_c00466{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m37_c00466{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00466{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m84_c00466{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m65_c00466{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.mc_c00466{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me8_c00466{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m16_c00466{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.me_c00466{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00466{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m70_c00466{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00466{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00466{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.md3_c00466{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00466{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m124_c00466{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m33_c00466{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m34_c00466{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00466{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00466{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00466{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.md1_c00466{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m41_c00466{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m86_c00466{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md8_c00466{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m25_c00466{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00466{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m61_c00466{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m117_c00466{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00466{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00466{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m62_c00466{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m77_c00466{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m46_c00466{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00466{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me6_c00466{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m47_c00466{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m109_c00466{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00466{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m64_c00466{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00466{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m38_c00466{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m92_c00466{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.me4_c00466{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00466{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m73_c00466{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mda_c00466{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m99_c00466{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00466{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m66_c00466{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m48_c00466{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md7_c00466{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00466{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00466{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me0_c00466{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00466{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00466{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00466{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00466{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m11_c00466{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00466{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00466{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m19_c00466{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00466{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mca_c00466{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00466{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m97_c00466{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7_c00466{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00466{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00466{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m68_c00466{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00466{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m63_c00466{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00466{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00466{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5_c00466{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m76_c00466{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00466{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00466{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m50_c00466{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m20_c00466{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00466{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00466{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m123_c00466{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m28_c00466{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00466{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00466{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.meb_c00466{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m52_c00466{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m83_c00466{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00466{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00466{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9_c00466{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00466{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00466{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m35_c00466{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00466{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m126_c00466{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m21_c00466{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m18_c00466{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00466{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00466{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m88_c00466{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m82_c00466{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m13_c00466{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m69_c00466{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m45_c00466{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m128_c00466{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m10_c00466{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00466{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m127_c00466{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00466{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m58_c00466{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m14_c00466{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00466{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00466{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00466{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00466{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m27_c00466{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md9_c00466{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m12_c00466{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m42_c00466{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m74_c00466{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00466{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m108_c00466{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00466{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00466{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m104_c00466{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00466{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00466{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00466{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00466{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m96_c00466{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m55_c00466{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8_c00466{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00466{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m114_c00466{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00466{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00466{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m24_c00466{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m80_c00466{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00466{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m134_c00466{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m90_c00466{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m30_c00466{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.maa_c00466{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00466{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m15_c00466{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00466{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00466{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00466{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m72_c00466{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00466{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m118_c00466{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m51_c00466{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00466{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00466{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00466{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m23_c00466{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mde_c00466{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m116_c00466{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00466{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00466{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00466{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m93_c00466{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00466{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00466{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb_c00466{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00466{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m102_c00466{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m129_c00466{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00466{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mba_c00466{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf_c00466{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mac_c00466{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m53_c00466{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m119_c00466{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m87_c00466{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m136_c00466{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00466{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m137_c00466{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00466{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m57_c00466{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m100_c00466{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m39_c00466{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00466{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00466{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00466{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me2_c00466{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00466{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m138_c00466{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00466{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);}
.m133_c00466{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me7_c00466{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m56_c00466{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00466{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m85_c00466{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m98_c00466{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00466{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me9_c00466{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m75_c00466{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mab_c00466{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00466{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00466{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00466{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mff_c00466{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m79_c00466{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00466{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00466{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00466{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00466{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.md6_c00466{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00466{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00466{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00466{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m121_c00466{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00466{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m132_c00466{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00466{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m120_c00466{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.maf_c00466{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m81_c00466{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mef_c00466{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m43_c00466{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mad_c00466{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m78_c00466{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m67_c00466{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00466{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m110_c00466{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m111_c00466{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m122_c00466{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00466{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00466{transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339250,0.000000,0.000000,0.250000,0,0);}
.m112_c00466{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00466{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.433500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00466{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.md0_c00466{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mce_c00466{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls0_c00466{letter-spacing:0.000000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{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__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00466{word-spacing:-21.641820px;}
.ws2_c00466{word-spacing:-11.052632px;}
.ws3_c00466{word-spacing:-8.960193px;}
.wsb_c00466{word-spacing:-3.573271px;}
.ws8_c00466{word-spacing:-3.382353px;}
.ws1_c00466{word-spacing:-1.206897px;}
.wsd_c00466{word-spacing:0.000000px;}
.wsa_c00466{word-spacing:2.000000px;}
.ws6_c00466{word-spacing:3.589744px;}
.ws0_c00466{word-spacing:6.833333px;}
.wsc_c00466{word-spacing:9.154930px;}
.ws7_c00466{word-spacing:25.714286px;}
.ws5_c00466{word-spacing:44.166667px;}
.ws9_c00466{word-spacing:278.756757px;}
.fc0_c00466{color:transparent;}
.fs7_c00466{font-size:42.000000px;}
.fs6_c00466{font-size:48.000000px;}
.fs5_c00466{font-size:54.000000px;}
.fs4_c00466{font-size:60.000000px;}
.fs3_c00466{font-size:66.000000px;}
.fs2_c00466{font-size:72.000000px;}
.fs8_c00466{font-size:78.000000px;}
.fs0_c00466{font-size:84.000000px;}
.fs1_c00466{font-size:96.000000px;}
.y0_c00466{bottom:0.000000px;}
.y70_c00466{bottom:187.200000px;}
.y34_c00466{bottom:187.950000px;}
.y6f_c00466{bottom:201.900000px;}
.y33_c00466{bottom:203.100000px;}
.y6e_c00466{bottom:216.300000px;}
.y32_c00466{bottom:217.200000px;}
.y6d_c00466{bottom:230.700000px;}
.y31_c00466{bottom:231.900000px;}
.y6c_c00466{bottom:245.100000px;}
.y30_c00466{bottom:246.000000px;}
.y2f_c00466{bottom:260.700000px;}
.y6b_c00466{bottom:262.350000px;}
.y6a_c00466{bottom:274.650000px;}
.y69_c00466{bottom:290.550000px;}
.y68_c00466{bottom:303.900000px;}
.y2e_c00466{bottom:312.450000px;}
.y67_c00466{bottom:318.300000px;}
.y2d_c00466{bottom:330.450000px;}
.y66_c00466{bottom:332.400000px;}
.y65_c00466{bottom:347.100000px;}
.y2c_c00466{bottom:348.150000px;}
.y64_c00466{bottom:361.500000px;}
.y2b_c00466{bottom:366.150000px;}
.y63_c00466{bottom:375.900000px;}
.y62_c00466{bottom:390.600000px;}
.y2a_c00466{bottom:391.950000px;}
.y61_c00466{bottom:405.750000px;}
.y29_c00466{bottom:409.950000px;}
.y60_c00466{bottom:418.650000px;}
.y28_c00466{bottom:427.950000px;}
.y5f_c00466{bottom:433.500000px;}
.y27_c00466{bottom:445.650000px;}
.y5e_c00466{bottom:448.650000px;}
.y5d_c00466{bottom:462.300000px;}
.y26_c00466{bottom:463.200000px;}
.y5c_c00466{bottom:476.400000px;}
.y25_c00466{bottom:480.900000px;}
.y5b_c00466{bottom:491.100000px;}
.y24_c00466{bottom:498.900000px;}
.y5a_c00466{bottom:505.500000px;}
.y23_c00466{bottom:516.600000px;}
.y59_c00466{bottom:520.200000px;}
.y22_c00466{bottom:534.600000px;}
.y58_c00466{bottom:534.900000px;}
.y57_c00466{bottom:549.000000px;}
.y21_c00466{bottom:552.600000px;}
.y56_c00466{bottom:563.400000px;}
.y20_c00466{bottom:570.600000px;}
.y55_c00466{bottom:577.800000px;}
.y1f_c00466{bottom:588.600000px;}
.y54_c00466{bottom:592.200000px;}
.y1e_c00466{bottom:606.600000px;}
.y1d_c00466{bottom:624.600000px;}
.y53_c00466{bottom:629.700000px;}
.y52_c00466{bottom:647.700000px;}
.y1c_c00466{bottom:650.850000px;}
.y51_c00466{bottom:660.300000px;}
.y50_c00466{bottom:665.700000px;}
.y1b_c00466{bottom:668.850000px;}
.y4f_c00466{bottom:683.400000px;}
.y1a_c00466{bottom:686.850000px;}
.y4e_c00466{bottom:703.950000px;}
.y19_c00466{bottom:704.850000px;}
.y4d_c00466{bottom:718.650000px;}
.y18_c00466{bottom:722.550000px;}
.y4c_c00466{bottom:733.050000px;}
.y17_c00466{bottom:740.550000px;}
.y4b_c00466{bottom:747.450000px;}
.y16_c00466{bottom:758.850000px;}
.y4a_c00466{bottom:761.850000px;}
.y49_c00466{bottom:776.550000px;}
.y15_c00466{bottom:776.850000px;}
.y48_c00466{bottom:791.250000px;}
.y14_c00466{bottom:794.550000px;}
.y47_c00466{bottom:805.350000px;}
.y13_c00466{bottom:812.550000px;}
.y46_c00466{bottom:819.750000px;}
.y12_c00466{bottom:830.250000px;}
.y45_c00466{bottom:834.450000px;}
.y11_c00466{bottom:848.250000px;}
.y44_c00466{bottom:850.650000px;}
.y10_c00466{bottom:866.550000px;}
.y43_c00466{bottom:868.650000px;}
.y42_c00466{bottom:881.250000px;}
.yf_c00466{bottom:884.250000px;}
.y41_c00466{bottom:887.700000px;}
.ye_c00466{bottom:902.550000px;}
.y40_c00466{bottom:905.700000px;}
.yd_c00466{bottom:920.550000px;}
.y3f_c00466{bottom:923.400000px;}
.yc_c00466{bottom:938.550000px;}
.y3e_c00466{bottom:941.400000px;}
.yb_c00466{bottom:956.550000px;}
.y3d_c00466{bottom:961.950000px;}
.ya_c00466{bottom:974.550000px;}
.y3c_c00466{bottom:977.400000px;}
.y9_c00466{bottom:992.850000px;}
.y3b_c00466{bottom:999.300000px;}
.y8_c00466{bottom:1010.550000px;}
.y3a_c00466{bottom:1019.100000px;}
.y7_c00466{bottom:1028.550000px;}
.y39_c00466{bottom:1035.600000px;}
.y6_c00466{bottom:1046.550000px;}
.y38_c00466{bottom:1053.300000px;}
.y5_c00466{bottom:1064.550000px;}
.y37_c00466{bottom:1075.800000px;}
.y4_c00466{bottom:1082.850000px;}
.y36_c00466{bottom:1094.100000px;}
.y3_c00466{bottom:1100.550000px;}
.y2_c00466{bottom:1118.550000px;}
.y35_c00466{bottom:1121.100000px;}
.y1_c00466{bottom:1147.350000px;}
.h9_c00466{height:42.000000px;}
.h8_c00466{height:48.000000px;}
.h7_c00466{height:54.000000px;}
.h6_c00466{height:60.000000px;}
.h5_c00466{height:66.000000px;}
.h4_c00466{height:72.000000px;}
.ha_c00466{height:78.000000px;}
.h2_c00466{height:84.000000px;}
.h3_c00466{height:96.000000px;}
.h0_c00466{height:1272.600036px;}
.h1_c00466{height:1272.750000px;}
.w0_c00466{width:958.320007px;}
.w1_c00466{width:958.500000px;}
.x0_c00466{left:0.000000px;}
.xaa_c00466{left:69.450000px;}
.x9d_c00466{left:71.250000px;}
.x7e_c00466{left:73.050000px;}
.xab_c00466{left:77.250000px;}
.xa3_c00466{left:85.350000px;}
.xb0_c00466{left:86.550000px;}
.x8f_c00466{left:87.600000px;}
.x7c_c00466{left:89.250000px;}
.x67_c00466{left:90.300000px;}
.x34_c00466{left:91.500000px;}
.x48_c00466{left:92.550000px;}
.x3_c00466{left:93.600000px;}
.x96_c00466{left:100.050000px;}
.x4_c00466{left:102.300000px;}
.xac_c00466{left:104.550000px;}
.x24_c00466{left:109.800000px;}
.xae_c00466{left:112.950000px;}
.x52_c00466{left:114.300000px;}
.x61_c00466{left:115.950000px;}
.x19_c00466{left:118.200000px;}
.x73_c00466{left:120.150000px;}
.x35_c00466{left:122.100000px;}
.xa4_c00466{left:123.150000px;}
.x68_c00466{left:124.800000px;}
.x2e_c00466{left:126.600000px;}
.x92_c00466{left:128.250000px;}
.x5f_c00466{left:129.900000px;}
.xc_c00466{left:131.700000px;}
.x3b_c00466{left:133.350000px;}
.x49_c00466{left:134.700000px;}
.x5b_c00466{left:135.750000px;}
.x36_c00466{left:138.000000px;}
.x62_c00466{left:140.100000px;}
.x14_c00466{left:141.450000px;}
.x20_c00466{left:142.800000px;}
.x58_c00466{left:147.600000px;}
.xa1_c00466{left:148.800000px;}
.x5_c00466{left:149.850000px;}
.x2f_c00466{left:151.050000px;}
.x93_c00466{left:152.400000px;}
.x86_c00466{left:153.600000px;}
.x69_c00466{left:155.400000px;}
.x7d_c00466{left:156.900000px;}
.x25_c00466{left:158.400000px;}
.x3c_c00466{left:159.600000px;}
.x63_c00466{left:163.500000px;}
.x74_c00466{left:164.850000px;}
.x5c_c00466{left:166.350000px;}
.x4a_c00466{left:167.400000px;}
.x6d_c00466{left:171.900000px;}
.x59_c00466{left:173.850000px;}
.x1a_c00466{left:175.800000px;}
.x3d_c00466{left:177.300000px;}
.x81_c00466{left:179.400000px;}
.x6_c00466{left:180.450000px;}
.x88_c00466{left:182.100000px;}
.x26_c00466{left:183.600000px;}
.x9e_c00466{left:185.100000px;}
.x6a_c00466{left:187.500000px;}
.x85_c00466{left:189.150000px;}
.xd_c00466{left:192.150000px;}
.x9a_c00466{left:195.000000px;}
.x1b_c00466{left:196.350000px;}
.x30_c00466{left:198.150000px;}
.x15_c00466{left:199.800000px;}
.xa5_c00466{left:201.000000px;}
.xe_c00466{left:202.950000px;}
.x50_c00466{left:204.150000px;}
.x37_c00466{left:207.900000px;}
.x9f_c00466{left:209.100000px;}
.xaf_c00466{left:210.450000px;}
.xad_c00466{left:211.500000px;}
.x41_c00466{left:213.600000px;}
.x45_c00466{left:214.950000px;}
.x3e_c00466{left:217.650000px;}
.x16_c00466{left:219.900000px;}
.x6e_c00466{left:222.300000px;}
.x7_c00466{left:223.650000px;}
.x8b_c00466{left:225.750000px;}
.x1c_c00466{left:228.150000px;}
.x5d_c00466{left:229.350000px;}
.x82_c00466{left:231.600000px;}
.x97_c00466{left:232.950000px;}
.x27_c00466{left:234.000000px;}
.x77_c00466{left:235.950000px;}
.x64_c00466{left:237.900000px;}
.x53_c00466{left:239.850000px;}
.xf_c00466{left:241.050000px;}
.x28_c00466{left:243.000000px;}
.x21_c00466{left:244.650000px;}
.x70_c00466{left:247.950000px;}
.x83_c00466{left:250.350000px;}
.x8_c00466{left:252.150000px;}
.xa6_c00466{left:255.000000px;}
.x75_c00466{left:257.850000px;}
.x29_c00466{left:259.200000px;}
.x6b_c00466{left:260.250000px;}
.xa2_c00466{left:261.900000px;}
.x10_c00466{left:263.700000px;}
.x90_c00466{left:264.750000px;}
.x56_c00466{left:267.150000px;}
.x17_c00466{left:268.500000px;}
.x31_c00466{left:270.150000px;}
.x6f_c00466{left:272.700000px;}
.x78_c00466{left:276.600000px;}
.x22_c00466{left:278.250000px;}
.xa7_c00466{left:280.500000px;}
.x4b_c00466{left:281.550000px;}
.x38_c00466{left:282.750000px;}
.x5a_c00466{left:284.400000px;}
.x54_c00466{left:285.600000px;}
.x32_c00466{left:287.400000px;}
.x60_c00466{left:289.200000px;}
.x3f_c00466{left:291.300000px;}
.x4c_c00466{left:292.650000px;}
.x89_c00466{left:295.050000px;}
.x65_c00466{left:296.250000px;}
.x11_c00466{left:297.600000px;}
.x9_c00466{left:300.000000px;}
.x1d_c00466{left:304.500000px;}
.x2a_c00466{left:308.550000px;}
.x4d_c00466{left:309.900000px;}
.x42_c00466{left:311.100000px;}
.x9b_c00466{left:312.300000px;}
.x18_c00466{left:313.500000px;}
.x1_c00466{left:316.050000px;}
.x66_c00466{left:318.900000px;}
.x76_c00466{left:320.550000px;}
.x33_c00466{left:322.650000px;}
.x7b_c00466{left:323.700000px;}
.x2b_c00466{left:324.750000px;}
.x57_c00466{left:326.550000px;}
.xa0_c00466{left:327.600000px;}
.x46_c00466{left:329.850000px;}
.x9c_c00466{left:331.350000px;}
.x94_c00466{left:333.600000px;}
.x39_c00466{left:335.250000px;}
.x12_c00466{left:337.500000px;}
.x79_c00466{left:338.850000px;}
.x51_c00466{left:341.850000px;}
.x71_c00466{left:343.350000px;}
.x23_c00466{left:344.550000px;}
.x8d_c00466{left:345.750000px;}
.x3a_c00466{left:349.650000px;}
.x6c_c00466{left:351.000000px;}
.x4e_c00466{left:354.600000px;}
.x1e_c00466{left:356.700000px;}
.x98_c00466{left:358.350000px;}
.x95_c00466{left:360.300000px;}
.xa_c00466{left:361.500000px;}
.x72_c00466{left:363.150000px;}
.x47_c00466{left:364.350000px;}
.x87_c00466{left:366.000000px;}
.xa8_c00466{left:367.950000px;}
.x8a_c00466{left:369.600000px;}
.x43_c00466{left:374.400000px;}
.x13_c00466{left:376.350000px;}
.x2c_c00466{left:378.000000px;}
.x91_c00466{left:379.500000px;}
.x40_c00466{left:380.550000px;}
.xb_c00466{left:382.050000px;}
.x55_c00466{left:383.100000px;}
.x99_c00466{left:385.200000px;}
.xa9_c00466{left:386.250000px;}
.x5e_c00466{left:387.300000px;}
.x8c_c00466{left:388.500000px;}
.x7a_c00466{left:390.000000px;}
.x7f_c00466{left:391.500000px;}
.x2d_c00466{left:392.700000px;}
.x8e_c00466{left:394.650000px;}
.x1f_c00466{left:397.050000px;}
.x4f_c00466{left:398.850000px;}
.x44_c00466{left:400.350000px;}
.x149_c00466{left:404.250000px;}
.x84_c00466{left:406.650000px;}
.x80_c00466{left:416.400000px;}
.x153_c00466{left:420.000000px;}
.x11f_c00466{left:421.350000px;}
.x171_c00466{left:423.450000px;}
.x16c_c00466{left:426.750000px;}
.x15a_c00466{left:427.800000px;}
.x147_c00466{left:428.850000px;}
.x120_c00466{left:430.050000px;}
.xba_c00466{left:432.000000px;}
.x157_c00466{left:439.350000px;}
.x15f_c00466{left:442.200000px;}
.x14d_c00466{left:443.400000px;}
.x102_c00466{left:444.750000px;}
.x125_c00466{left:447.750000px;}
.xb1_c00466{left:449.250000px;}
.x154_c00466{left:450.600000px;}
.x12d_c00466{left:453.600000px;}
.x14a_c00466{left:454.650000px;}
.x123_c00466{left:456.600000px;}
.x15c_c00466{left:457.650000px;}
.x112_c00466{left:458.850000px;}
.x109_c00466{left:459.900000px;}
.x14e_c00466{left:464.250000px;}
.x13b_c00466{left:466.350000px;}
.xbf_c00466{left:468.000000px;}
.x137_c00466{left:469.500000px;}
.x160_c00466{left:470.700000px;}
.xbb_c00466{left:474.150000px;}
.x145_c00466{left:475.650000px;}
.xc0_c00466{left:476.700000px;}
.xfa_c00466{left:478.500000px;}
.x115_c00466{left:480.750000px;}
.x10a_c00466{left:482.550000px;}
.xe5_c00466{left:483.750000px;}
.xb2_c00466{left:486.000000px;}
.xf3_c00466{left:487.050000px;}
.xde_c00466{left:490.350000px;}
.x165_c00466{left:491.700000px;}
.x158_c00466{left:493.050000px;}
.x10c_c00466{left:494.400000px;}
.xb3_c00466{left:497.100000px;}
.xf4_c00466{left:499.950000px;}
.xfb_c00466{left:501.600000px;}
.xee_c00466{left:502.800000px;}
.xcd_c00466{left:504.600000px;}
.x124_c00466{left:507.000000px;}
.x163_c00466{left:508.050000px;}
.xbc_c00466{left:509.100000px;}
.x138_c00466{left:510.900000px;}
.xc1_c00466{left:511.950000px;}
.xc7_c00466{left:514.350000px;}
.xb4_c00466{left:515.850000px;}
.xdf_c00466{left:518.100000px;}
.x13e_c00466{left:519.600000px;}
.x16e_c00466{left:521.400000px;}
.x14b_c00466{left:523.050000px;}
.xe6_c00466{left:524.100000px;}
.x12e_c00466{left:526.200000px;}
.x132_c00466{left:527.850000px;}
.x116_c00466{left:529.350000px;}
.x15d_c00466{left:531.150000px;}
.x103_c00466{left:532.500000px;}
.xf5_c00466{left:533.850000px;}
.x129_c00466{left:534.900000px;}
.xd5_c00466{left:536.700000px;}
.x16f_c00466{left:538.650000px;}
.xdb_c00466{left:540.000000px;}
.xe0_c00466{left:541.500000px;}
.xce_c00466{left:543.450000px;}
.xe7_c00466{left:545.700000px;}
.x16d_c00466{left:547.950000px;}
.x15e_c00466{left:549.450000px;}
.xfc_c00466{left:551.100000px;}
.xc8_c00466{left:552.900000px;}
.x113_c00466{left:554.250000px;}
.x12a_c00466{left:555.450000px;}
.xbd_c00466{left:556.650000px;}
.xcf_c00466{left:558.900000px;}
.x10d_c00466{left:560.250000px;}
.xf6_c00466{left:561.600000px;}
.xe9_c00466{left:564.000000px;}
.xc2_c00466{left:565.650000px;}
.x111_c00466{left:567.450000px;}
.x117_c00466{left:568.950000px;}
.x134_c00466{left:571.350000px;}
.x141_c00466{left:573.000000px;}
.xd6_c00466{left:574.500000px;}
.x162_c00466{left:576.900000px;}
.xc9_c00466{left:578.400000px;}
.x11a_c00466{left:580.800000px;}
.x170_c00466{left:581.850000px;}
.xb5_c00466{left:583.500000px;}
.xef_c00466{left:584.550000px;}
.x10e_c00466{left:586.500000px;}
.x128_c00466{left:589.050000px;}
.x161_c00466{left:590.250000px;}
.xd0_c00466{left:591.300000px;}
.xfd_c00466{left:592.800000px;}
.x118_c00466{left:594.450000px;}
.xe1_c00466{left:596.250000px;}
.xea_c00466{left:597.450000px;}
.xf7_c00466{left:600.150000px;}
.x139_c00466{left:604.500000px;}
.x13f_c00466{left:607.050000px;}
.xf0_c00466{left:608.700000px;}
.x142_c00466{left:610.050000px;}
.xdc_c00466{left:612.450000px;}
.xe2_c00466{left:613.950000px;}
.x126_c00466{left:616.200000px;}
.xd1_c00466{left:617.550000px;}
.x151_c00466{left:618.600000px;}
.xf8_c00466{left:619.650000px;}
.xc3_c00466{left:621.450000px;}
.xca_c00466{left:622.650000px;}
.x133_c00466{left:624.000000px;}
.x16a_c00466{left:625.050000px;}
.x164_c00466{left:626.700000px;}
.xb6_c00466{left:629.550000px;}
.x11b_c00466{left:631.500000px;}
.x104_c00466{left:633.750000px;}
.xfe_c00466{left:634.950000px;}
.x10f_c00466{left:637.650000px;}
.x135_c00466{left:639.000000px;}
.xd2_c00466{left:640.650000px;}
.x155_c00466{left:642.750000px;}
.x119_c00466{left:643.800000px;}
.x11c_c00466{left:645.900000px;}
.xc4_c00466{left:648.150000px;}
.xff_c00466{left:649.650000px;}
.xcb_c00466{left:652.200000px;}
.x11d_c00466{left:653.400000px;}
.xb7_c00466{left:655.500000px;}
.x127_c00466{left:656.850000px;}
.x12b_c00466{left:658.050000px;}
.xd7_c00466{left:659.850000px;}
.xeb_c00466{left:661.500000px;}
.xf1_c00466{left:663.450000px;}
.xdd_c00466{left:664.950000px;}
.xc5_c00466{left:666.150000px;}
.xe3_c00466{left:667.500000px;}
.x136_c00466{left:668.850000px;}
.x105_c00466{left:670.050000px;}
.x148_c00466{left:671.400000px;}
.xf9_c00466{left:672.600000px;}
.xf2_c00466{left:673.950000px;}
.x10b_c00466{left:675.450000px;}
.xd8_c00466{left:677.550000px;}
.x166_c00466{left:679.350000px;}
.x12f_c00466{left:680.400000px;}
.xe8_c00466{left:682.800000px;}
.xd3_c00466{left:684.600000px;}
.x12c_c00466{left:685.800000px;}
.x100_c00466{left:687.750000px;}
.x13c_c00466{left:690.300000px;}
.x121_c00466{left:692.400000px;}
.x11e_c00466{left:695.100000px;}
.x106_c00466{left:697.050000px;}
.x156_c00466{left:699.300000px;}
.x130_c00466{left:700.500000px;}
.x168_c00466{left:701.850000px;}
.x143_c00466{left:703.500000px;}
.xd4_c00466{left:704.700000px;}
.x14c_c00466{left:705.900000px;}
.xb8_c00466{left:706.950000px;}
.x14f_c00466{left:708.450000px;}
.xec_c00466{left:709.800000px;}
.xd9_c00466{left:711.750000px;}
.x152_c00466{left:714.450000px;}
.x16b_c00466{left:716.850000px;}
.xe4_c00466{left:718.200000px;}
.x131_c00466{left:719.550000px;}
.xda_c00466{left:720.750000px;}
.x144_c00466{left:722.550000px;}
.xcc_c00466{left:724.500000px;}
.x107_c00466{left:725.550000px;}
.x114_c00466{left:727.050000px;}
.x167_c00466{left:728.550000px;}
.xed_c00466{left:734.250000px;}
.x13a_c00466{left:735.600000px;}
.x122_c00466{left:738.150000px;}
.x146_c00466{left:739.950000px;}
.x15b_c00466{left:741.000000px;}
.x2_c00466{left:742.350000px;}
.x150_c00466{left:744.150000px;}
.xb9_c00466{left:747.600000px;}
.xbe_c00466{left:748.950000px;}
.x159_c00466{left:750.000000px;}
.x101_c00466{left:752.550000px;}
.x108_c00466{left:753.600000px;}
.x110_c00466{left:754.650000px;}
.x169_c00466{left:757.350000px;}
.x140_c00466{left:759.000000px;}
.x13d_c00466{left:762.600000px;}
.xc6_c00466{left:765.900000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws4_c00466{word-spacing:-19.237173pt;}
.ws2_c00466{word-spacing:-9.824561pt;}
.ws3_c00466{word-spacing:-7.964616pt;}
.wsb_c00466{word-spacing:-3.176241pt;}
.ws8_c00466{word-spacing:-3.006536pt;}
.ws1_c00466{word-spacing:-1.072797pt;}
.wsd_c00466{word-spacing:0.000000pt;}
.wsa_c00466{word-spacing:1.777778pt;}
.ws6_c00466{word-spacing:3.190883pt;}
.ws0_c00466{word-spacing:6.074074pt;}
.wsc_c00466{word-spacing:8.137715pt;}
.ws7_c00466{word-spacing:22.857143pt;}
.ws5_c00466{word-spacing:39.259259pt;}
.ws9_c00466{word-spacing:247.783784pt;}
.fs7_c00466{font-size:37.333333pt;}
.fs6_c00466{font-size:42.666667pt;}
.fs5_c00466{font-size:48.000000pt;}
.fs4_c00466{font-size:53.333333pt;}
.fs3_c00466{font-size:58.666667pt;}
.fs2_c00466{font-size:64.000000pt;}
.fs8_c00466{font-size:69.333333pt;}
.fs0_c00466{font-size:74.666667pt;}
.fs1_c00466{font-size:85.333333pt;}
.y0_c00466{bottom:0.000000pt;}
.y70_c00466{bottom:166.400000pt;}
.y34_c00466{bottom:167.066667pt;}
.y6f_c00466{bottom:179.466667pt;}
.y33_c00466{bottom:180.533333pt;}
.y6e_c00466{bottom:192.266667pt;}
.y32_c00466{bottom:193.066667pt;}
.y6d_c00466{bottom:205.066667pt;}
.y31_c00466{bottom:206.133333pt;}
.y6c_c00466{bottom:217.866667pt;}
.y30_c00466{bottom:218.666667pt;}
.y2f_c00466{bottom:231.733333pt;}
.y6b_c00466{bottom:233.200000pt;}
.y6a_c00466{bottom:244.133333pt;}
.y69_c00466{bottom:258.266667pt;}
.y68_c00466{bottom:270.133333pt;}
.y2e_c00466{bottom:277.733333pt;}
.y67_c00466{bottom:282.933333pt;}
.y2d_c00466{bottom:293.733333pt;}
.y66_c00466{bottom:295.466667pt;}
.y65_c00466{bottom:308.533333pt;}
.y2c_c00466{bottom:309.466667pt;}
.y64_c00466{bottom:321.333333pt;}
.y2b_c00466{bottom:325.466667pt;}
.y63_c00466{bottom:334.133333pt;}
.y62_c00466{bottom:347.200000pt;}
.y2a_c00466{bottom:348.400000pt;}
.y61_c00466{bottom:360.666667pt;}
.y29_c00466{bottom:364.400000pt;}
.y60_c00466{bottom:372.133333pt;}
.y28_c00466{bottom:380.400000pt;}
.y5f_c00466{bottom:385.333333pt;}
.y27_c00466{bottom:396.133333pt;}
.y5e_c00466{bottom:398.800000pt;}
.y5d_c00466{bottom:410.933333pt;}
.y26_c00466{bottom:411.733333pt;}
.y5c_c00466{bottom:423.466667pt;}
.y25_c00466{bottom:427.466667pt;}
.y5b_c00466{bottom:436.533333pt;}
.y24_c00466{bottom:443.466667pt;}
.y5a_c00466{bottom:449.333333pt;}
.y23_c00466{bottom:459.200000pt;}
.y59_c00466{bottom:462.400000pt;}
.y22_c00466{bottom:475.200000pt;}
.y58_c00466{bottom:475.466667pt;}
.y57_c00466{bottom:488.000000pt;}
.y21_c00466{bottom:491.200000pt;}
.y56_c00466{bottom:500.800000pt;}
.y20_c00466{bottom:507.200000pt;}
.y55_c00466{bottom:513.600000pt;}
.y1f_c00466{bottom:523.200000pt;}
.y54_c00466{bottom:526.400000pt;}
.y1e_c00466{bottom:539.200000pt;}
.y1d_c00466{bottom:555.200000pt;}
.y53_c00466{bottom:559.733333pt;}
.y52_c00466{bottom:575.733333pt;}
.y1c_c00466{bottom:578.533333pt;}
.y51_c00466{bottom:586.933333pt;}
.y50_c00466{bottom:591.733333pt;}
.y1b_c00466{bottom:594.533333pt;}
.y4f_c00466{bottom:607.466667pt;}
.y1a_c00466{bottom:610.533333pt;}
.y4e_c00466{bottom:625.733333pt;}
.y19_c00466{bottom:626.533333pt;}
.y4d_c00466{bottom:638.800000pt;}
.y18_c00466{bottom:642.266667pt;}
.y4c_c00466{bottom:651.600000pt;}
.y17_c00466{bottom:658.266667pt;}
.y4b_c00466{bottom:664.400000pt;}
.y16_c00466{bottom:674.533333pt;}
.y4a_c00466{bottom:677.200000pt;}
.y49_c00466{bottom:690.266667pt;}
.y15_c00466{bottom:690.533333pt;}
.y48_c00466{bottom:703.333333pt;}
.y14_c00466{bottom:706.266667pt;}
.y47_c00466{bottom:715.866667pt;}
.y13_c00466{bottom:722.266667pt;}
.y46_c00466{bottom:728.666667pt;}
.y12_c00466{bottom:738.000000pt;}
.y45_c00466{bottom:741.733333pt;}
.y11_c00466{bottom:754.000000pt;}
.y44_c00466{bottom:756.133333pt;}
.y10_c00466{bottom:770.266667pt;}
.y43_c00466{bottom:772.133333pt;}
.y42_c00466{bottom:783.333333pt;}
.yf_c00466{bottom:786.000000pt;}
.y41_c00466{bottom:789.066667pt;}
.ye_c00466{bottom:802.266667pt;}
.y40_c00466{bottom:805.066667pt;}
.yd_c00466{bottom:818.266667pt;}
.y3f_c00466{bottom:820.800000pt;}
.yc_c00466{bottom:834.266667pt;}
.y3e_c00466{bottom:836.800000pt;}
.yb_c00466{bottom:850.266667pt;}
.y3d_c00466{bottom:855.066667pt;}
.ya_c00466{bottom:866.266667pt;}
.y3c_c00466{bottom:868.800000pt;}
.y9_c00466{bottom:882.533333pt;}
.y3b_c00466{bottom:888.266667pt;}
.y8_c00466{bottom:898.266667pt;}
.y3a_c00466{bottom:905.866667pt;}
.y7_c00466{bottom:914.266667pt;}
.y39_c00466{bottom:920.533333pt;}
.y6_c00466{bottom:930.266667pt;}
.y38_c00466{bottom:936.266667pt;}
.y5_c00466{bottom:946.266667pt;}
.y37_c00466{bottom:956.266667pt;}
.y4_c00466{bottom:962.533333pt;}
.y36_c00466{bottom:972.533333pt;}
.y3_c00466{bottom:978.266667pt;}
.y2_c00466{bottom:994.266667pt;}
.y35_c00466{bottom:996.533333pt;}
.y1_c00466{bottom:1019.866667pt;}
.h9_c00466{height:37.333333pt;}
.h8_c00466{height:42.666667pt;}
.h7_c00466{height:48.000000pt;}
.h6_c00466{height:53.333333pt;}
.h5_c00466{height:58.666667pt;}
.h4_c00466{height:64.000000pt;}
.ha_c00466{height:69.333333pt;}
.h2_c00466{height:74.666667pt;}
.h3_c00466{height:85.333333pt;}
.h0_c00466{height:1131.200032pt;}
.h1_c00466{height:1131.333333pt;}
.w0_c00466{width:851.840007pt;}
.w1_c00466{width:852.000000pt;}
.x0_c00466{left:0.000000pt;}
.xaa_c00466{left:61.733333pt;}
.x9d_c00466{left:63.333333pt;}
.x7e_c00466{left:64.933333pt;}
.xab_c00466{left:68.666667pt;}
.xa3_c00466{left:75.866667pt;}
.xb0_c00466{left:76.933333pt;}
.x8f_c00466{left:77.866667pt;}
.x7c_c00466{left:79.333333pt;}
.x67_c00466{left:80.266667pt;}
.x34_c00466{left:81.333333pt;}
.x48_c00466{left:82.266667pt;}
.x3_c00466{left:83.200000pt;}
.x96_c00466{left:88.933333pt;}
.x4_c00466{left:90.933333pt;}
.xac_c00466{left:92.933333pt;}
.x24_c00466{left:97.600000pt;}
.xae_c00466{left:100.400000pt;}
.x52_c00466{left:101.600000pt;}
.x61_c00466{left:103.066667pt;}
.x19_c00466{left:105.066667pt;}
.x73_c00466{left:106.800000pt;}
.x35_c00466{left:108.533333pt;}
.xa4_c00466{left:109.466667pt;}
.x68_c00466{left:110.933333pt;}
.x2e_c00466{left:112.533333pt;}
.x92_c00466{left:114.000000pt;}
.x5f_c00466{left:115.466667pt;}
.xc_c00466{left:117.066667pt;}
.x3b_c00466{left:118.533333pt;}
.x49_c00466{left:119.733333pt;}
.x5b_c00466{left:120.666667pt;}
.x36_c00466{left:122.666667pt;}
.x62_c00466{left:124.533333pt;}
.x14_c00466{left:125.733333pt;}
.x20_c00466{left:126.933333pt;}
.x58_c00466{left:131.200000pt;}
.xa1_c00466{left:132.266667pt;}
.x5_c00466{left:133.200000pt;}
.x2f_c00466{left:134.266667pt;}
.x93_c00466{left:135.466667pt;}
.x86_c00466{left:136.533333pt;}
.x69_c00466{left:138.133333pt;}
.x7d_c00466{left:139.466667pt;}
.x25_c00466{left:140.800000pt;}
.x3c_c00466{left:141.866667pt;}
.x63_c00466{left:145.333333pt;}
.x74_c00466{left:146.533333pt;}
.x5c_c00466{left:147.866667pt;}
.x4a_c00466{left:148.800000pt;}
.x6d_c00466{left:152.800000pt;}
.x59_c00466{left:154.533333pt;}
.x1a_c00466{left:156.266667pt;}
.x3d_c00466{left:157.600000pt;}
.x81_c00466{left:159.466667pt;}
.x6_c00466{left:160.400000pt;}
.x88_c00466{left:161.866667pt;}
.x26_c00466{left:163.200000pt;}
.x9e_c00466{left:164.533333pt;}
.x6a_c00466{left:166.666667pt;}
.x85_c00466{left:168.133333pt;}
.xd_c00466{left:170.800000pt;}
.x9a_c00466{left:173.333333pt;}
.x1b_c00466{left:174.533333pt;}
.x30_c00466{left:176.133333pt;}
.x15_c00466{left:177.600000pt;}
.xa5_c00466{left:178.666667pt;}
.xe_c00466{left:180.400000pt;}
.x50_c00466{left:181.466667pt;}
.x37_c00466{left:184.800000pt;}
.x9f_c00466{left:185.866667pt;}
.xaf_c00466{left:187.066667pt;}
.xad_c00466{left:188.000000pt;}
.x41_c00466{left:189.866667pt;}
.x45_c00466{left:191.066667pt;}
.x3e_c00466{left:193.466667pt;}
.x16_c00466{left:195.466667pt;}
.x6e_c00466{left:197.600000pt;}
.x7_c00466{left:198.800000pt;}
.x8b_c00466{left:200.666667pt;}
.x1c_c00466{left:202.800000pt;}
.x5d_c00466{left:203.866667pt;}
.x82_c00466{left:205.866667pt;}
.x97_c00466{left:207.066667pt;}
.x27_c00466{left:208.000000pt;}
.x77_c00466{left:209.733333pt;}
.x64_c00466{left:211.466667pt;}
.x53_c00466{left:213.200000pt;}
.xf_c00466{left:214.266667pt;}
.x28_c00466{left:216.000000pt;}
.x21_c00466{left:217.466667pt;}
.x70_c00466{left:220.400000pt;}
.x83_c00466{left:222.533333pt;}
.x8_c00466{left:224.133333pt;}
.xa6_c00466{left:226.666667pt;}
.x75_c00466{left:229.200000pt;}
.x29_c00466{left:230.400000pt;}
.x6b_c00466{left:231.333333pt;}
.xa2_c00466{left:232.800000pt;}
.x10_c00466{left:234.400000pt;}
.x90_c00466{left:235.333333pt;}
.x56_c00466{left:237.466667pt;}
.x17_c00466{left:238.666667pt;}
.x31_c00466{left:240.133333pt;}
.x6f_c00466{left:242.400000pt;}
.x78_c00466{left:245.866667pt;}
.x22_c00466{left:247.333333pt;}
.xa7_c00466{left:249.333333pt;}
.x4b_c00466{left:250.266667pt;}
.x38_c00466{left:251.333333pt;}
.x5a_c00466{left:252.800000pt;}
.x54_c00466{left:253.866667pt;}
.x32_c00466{left:255.466667pt;}
.x60_c00466{left:257.066667pt;}
.x3f_c00466{left:258.933333pt;}
.x4c_c00466{left:260.133333pt;}
.x89_c00466{left:262.266667pt;}
.x65_c00466{left:263.333333pt;}
.x11_c00466{left:264.533333pt;}
.x9_c00466{left:266.666667pt;}
.x1d_c00466{left:270.666667pt;}
.x2a_c00466{left:274.266667pt;}
.x4d_c00466{left:275.466667pt;}
.x42_c00466{left:276.533333pt;}
.x9b_c00466{left:277.600000pt;}
.x18_c00466{left:278.666667pt;}
.x1_c00466{left:280.933333pt;}
.x66_c00466{left:283.466667pt;}
.x76_c00466{left:284.933333pt;}
.x33_c00466{left:286.800000pt;}
.x7b_c00466{left:287.733333pt;}
.x2b_c00466{left:288.666667pt;}
.x57_c00466{left:290.266667pt;}
.xa0_c00466{left:291.200000pt;}
.x46_c00466{left:293.200000pt;}
.x9c_c00466{left:294.533333pt;}
.x94_c00466{left:296.533333pt;}
.x39_c00466{left:298.000000pt;}
.x12_c00466{left:300.000000pt;}
.x79_c00466{left:301.200000pt;}
.x51_c00466{left:303.866667pt;}
.x71_c00466{left:305.200000pt;}
.x23_c00466{left:306.266667pt;}
.x8d_c00466{left:307.333333pt;}
.x3a_c00466{left:310.800000pt;}
.x6c_c00466{left:312.000000pt;}
.x4e_c00466{left:315.200000pt;}
.x1e_c00466{left:317.066667pt;}
.x98_c00466{left:318.533333pt;}
.x95_c00466{left:320.266667pt;}
.xa_c00466{left:321.333333pt;}
.x72_c00466{left:322.800000pt;}
.x47_c00466{left:323.866667pt;}
.x87_c00466{left:325.333333pt;}
.xa8_c00466{left:327.066667pt;}
.x8a_c00466{left:328.533333pt;}
.x43_c00466{left:332.800000pt;}
.x13_c00466{left:334.533333pt;}
.x2c_c00466{left:336.000000pt;}
.x91_c00466{left:337.333333pt;}
.x40_c00466{left:338.266667pt;}
.xb_c00466{left:339.600000pt;}
.x55_c00466{left:340.533333pt;}
.x99_c00466{left:342.400000pt;}
.xa9_c00466{left:343.333333pt;}
.x5e_c00466{left:344.266667pt;}
.x8c_c00466{left:345.333333pt;}
.x7a_c00466{left:346.666667pt;}
.x7f_c00466{left:348.000000pt;}
.x2d_c00466{left:349.066667pt;}
.x8e_c00466{left:350.800000pt;}
.x1f_c00466{left:352.933333pt;}
.x4f_c00466{left:354.533333pt;}
.x44_c00466{left:355.866667pt;}
.x149_c00466{left:359.333333pt;}
.x84_c00466{left:361.466667pt;}
.x80_c00466{left:370.133333pt;}
.x153_c00466{left:373.333333pt;}
.x11f_c00466{left:374.533333pt;}
.x171_c00466{left:376.400000pt;}
.x16c_c00466{left:379.333333pt;}
.x15a_c00466{left:380.266667pt;}
.x147_c00466{left:381.200000pt;}
.x120_c00466{left:382.266667pt;}
.xba_c00466{left:384.000000pt;}
.x157_c00466{left:390.533333pt;}
.x15f_c00466{left:393.066667pt;}
.x14d_c00466{left:394.133333pt;}
.x102_c00466{left:395.333333pt;}
.x125_c00466{left:398.000000pt;}
.xb1_c00466{left:399.333333pt;}
.x154_c00466{left:400.533333pt;}
.x12d_c00466{left:403.200000pt;}
.x14a_c00466{left:404.133333pt;}
.x123_c00466{left:405.866667pt;}
.x15c_c00466{left:406.800000pt;}
.x112_c00466{left:407.866667pt;}
.x109_c00466{left:408.800000pt;}
.x14e_c00466{left:412.666667pt;}
.x13b_c00466{left:414.533333pt;}
.xbf_c00466{left:416.000000pt;}
.x137_c00466{left:417.333333pt;}
.x160_c00466{left:418.400000pt;}
.xbb_c00466{left:421.466667pt;}
.x145_c00466{left:422.800000pt;}
.xc0_c00466{left:423.733333pt;}
.xfa_c00466{left:425.333333pt;}
.x115_c00466{left:427.333333pt;}
.x10a_c00466{left:428.933333pt;}
.xe5_c00466{left:430.000000pt;}
.xb2_c00466{left:432.000000pt;}
.xf3_c00466{left:432.933333pt;}
.xde_c00466{left:435.866667pt;}
.x165_c00466{left:437.066667pt;}
.x158_c00466{left:438.266667pt;}
.x10c_c00466{left:439.466667pt;}
.xb3_c00466{left:441.866667pt;}
.xf4_c00466{left:444.400000pt;}
.xfb_c00466{left:445.866667pt;}
.xee_c00466{left:446.933333pt;}
.xcd_c00466{left:448.533333pt;}
.x124_c00466{left:450.666667pt;}
.x163_c00466{left:451.600000pt;}
.xbc_c00466{left:452.533333pt;}
.x138_c00466{left:454.133333pt;}
.xc1_c00466{left:455.066667pt;}
.xc7_c00466{left:457.200000pt;}
.xb4_c00466{left:458.533333pt;}
.xdf_c00466{left:460.533333pt;}
.x13e_c00466{left:461.866667pt;}
.x16e_c00466{left:463.466667pt;}
.x14b_c00466{left:464.933333pt;}
.xe6_c00466{left:465.866667pt;}
.x12e_c00466{left:467.733333pt;}
.x132_c00466{left:469.200000pt;}
.x116_c00466{left:470.533333pt;}
.x15d_c00466{left:472.133333pt;}
.x103_c00466{left:473.333333pt;}
.xf5_c00466{left:474.533333pt;}
.x129_c00466{left:475.466667pt;}
.xd5_c00466{left:477.066667pt;}
.x16f_c00466{left:478.800000pt;}
.xdb_c00466{left:480.000000pt;}
.xe0_c00466{left:481.333333pt;}
.xce_c00466{left:483.066667pt;}
.xe7_c00466{left:485.066667pt;}
.x16d_c00466{left:487.066667pt;}
.x15e_c00466{left:488.400000pt;}
.xfc_c00466{left:489.866667pt;}
.xc8_c00466{left:491.466667pt;}
.x113_c00466{left:492.666667pt;}
.x12a_c00466{left:493.733333pt;}
.xbd_c00466{left:494.800000pt;}
.xcf_c00466{left:496.800000pt;}
.x10d_c00466{left:498.000000pt;}
.xf6_c00466{left:499.200000pt;}
.xe9_c00466{left:501.333333pt;}
.xc2_c00466{left:502.800000pt;}
.x111_c00466{left:504.400000pt;}
.x117_c00466{left:505.733333pt;}
.x134_c00466{left:507.866667pt;}
.x141_c00466{left:509.333333pt;}
.xd6_c00466{left:510.666667pt;}
.x162_c00466{left:512.800000pt;}
.xc9_c00466{left:514.133333pt;}
.x11a_c00466{left:516.266667pt;}
.x170_c00466{left:517.200000pt;}
.xb5_c00466{left:518.666667pt;}
.xef_c00466{left:519.600000pt;}
.x10e_c00466{left:521.333333pt;}
.x128_c00466{left:523.600000pt;}
.x161_c00466{left:524.666667pt;}
.xd0_c00466{left:525.600000pt;}
.xfd_c00466{left:526.933333pt;}
.x118_c00466{left:528.400000pt;}
.xe1_c00466{left:530.000000pt;}
.xea_c00466{left:531.066667pt;}
.xf7_c00466{left:533.466667pt;}
.x139_c00466{left:537.333333pt;}
.x13f_c00466{left:539.600000pt;}
.xf0_c00466{left:541.066667pt;}
.x142_c00466{left:542.266667pt;}
.xdc_c00466{left:544.400000pt;}
.xe2_c00466{left:545.733333pt;}
.x126_c00466{left:547.733333pt;}
.xd1_c00466{left:548.933333pt;}
.x151_c00466{left:549.866667pt;}
.xf8_c00466{left:550.800000pt;}
.xc3_c00466{left:552.400000pt;}
.xca_c00466{left:553.466667pt;}
.x133_c00466{left:554.666667pt;}
.x16a_c00466{left:555.600000pt;}
.x164_c00466{left:557.066667pt;}
.xb6_c00466{left:559.600000pt;}
.x11b_c00466{left:561.333333pt;}
.x104_c00466{left:563.333333pt;}
.xfe_c00466{left:564.400000pt;}
.x10f_c00466{left:566.800000pt;}
.x135_c00466{left:568.000000pt;}
.xd2_c00466{left:569.466667pt;}
.x155_c00466{left:571.333333pt;}
.x119_c00466{left:572.266667pt;}
.x11c_c00466{left:574.133333pt;}
.xc4_c00466{left:576.133333pt;}
.xff_c00466{left:577.466667pt;}
.xcb_c00466{left:579.733333pt;}
.x11d_c00466{left:580.800000pt;}
.xb7_c00466{left:582.666667pt;}
.x127_c00466{left:583.866667pt;}
.x12b_c00466{left:584.933333pt;}
.xd7_c00466{left:586.533333pt;}
.xeb_c00466{left:588.000000pt;}
.xf1_c00466{left:589.733333pt;}
.xdd_c00466{left:591.066667pt;}
.xc5_c00466{left:592.133333pt;}
.xe3_c00466{left:593.333333pt;}
.x136_c00466{left:594.533333pt;}
.x105_c00466{left:595.600000pt;}
.x148_c00466{left:596.800000pt;}
.xf9_c00466{left:597.866667pt;}
.xf2_c00466{left:599.066667pt;}
.x10b_c00466{left:600.400000pt;}
.xd8_c00466{left:602.266667pt;}
.x166_c00466{left:603.866667pt;}
.x12f_c00466{left:604.800000pt;}
.xe8_c00466{left:606.933333pt;}
.xd3_c00466{left:608.533333pt;}
.x12c_c00466{left:609.600000pt;}
.x100_c00466{left:611.333333pt;}
.x13c_c00466{left:613.600000pt;}
.x121_c00466{left:615.466667pt;}
.x11e_c00466{left:617.866667pt;}
.x106_c00466{left:619.600000pt;}
.x156_c00466{left:621.600000pt;}
.x130_c00466{left:622.666667pt;}
.x168_c00466{left:623.866667pt;}
.x143_c00466{left:625.333333pt;}
.xd4_c00466{left:626.400000pt;}
.x14c_c00466{left:627.466667pt;}
.xb8_c00466{left:628.400000pt;}
.x14f_c00466{left:629.733333pt;}
.xec_c00466{left:630.933333pt;}
.xd9_c00466{left:632.666667pt;}
.x152_c00466{left:635.066667pt;}
.x16b_c00466{left:637.200000pt;}
.xe4_c00466{left:638.400000pt;}
.x131_c00466{left:639.600000pt;}
.xda_c00466{left:640.666667pt;}
.x144_c00466{left:642.266667pt;}
.xcc_c00466{left:644.000000pt;}
.x107_c00466{left:644.933333pt;}
.x114_c00466{left:646.266667pt;}
.x167_c00466{left:647.600000pt;}
.xed_c00466{left:652.666667pt;}
.x13a_c00466{left:653.866667pt;}
.x122_c00466{left:656.133333pt;}
.x146_c00466{left:657.733333pt;}
.x15b_c00466{left:658.666667pt;}
.x2_c00466{left:659.866667pt;}
.x150_c00466{left:661.466667pt;}
.xb9_c00466{left:664.533333pt;}
.xbe_c00466{left:665.733333pt;}
.x159_c00466{left:666.666667pt;}
.x101_c00466{left:668.933333pt;}
.x108_c00466{left:669.866667pt;}
.x110_c00466{left:670.800000pt;}
.x169_c00466{left:673.200000pt;}
.x140_c00466{left:674.666667pt;}
.x13d_c00466{left:677.866667pt;}
.xc6_c00466{left:680.800000pt;}
}





/* 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_c00467 {
    display:none;
  }
  .loading-indicator_c00467.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00467 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_c00467 { 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_c00467" -> "#page-container .classname_c00467")
 */
.pf_c00467 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00467 { /* 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_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00467 { /* 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_c00467 { /* 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_c00467 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00467 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00467 {overflow:visible;}
  }
}
.c_c00467 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00467 { /* 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_c00467:after { /* webkit #35443 */
  content: '';
}
.t_c00467:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00467 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 */
}
.__c00467 { /* 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_c00467 { /* info for Javascript */
  display:none;
}
.l_c00467 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00467 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00467 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00467: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_c00467 {
    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_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00467.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_c00467 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00467;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.000000;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;}
.m9a_c00467{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00467{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m120_c00467{transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);}
.mee_c00467{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00467{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m109_c00467{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00467{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00467{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00467{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00467{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00467{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m105_c00467{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m66_c00467{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m104_c00467{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00467{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m54_c00467{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m45_c00467{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00467{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00467{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m47_c00467{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00467{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00467{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m101_c00467{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mba_c00467{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m75_c00467{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mec_c00467{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m91_c00467{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m40_c00467{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mff_c00467{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m72_c00467{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00467{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m12_c00467{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00467{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m113_c00467{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m28_c00467{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00467{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00467{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me1_c00467{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m26_c00467{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00467{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m64_c00467{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m52_c00467{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00467{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m59_c00467{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00467{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00467{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m88_c00467{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m112_c00467{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md8_c00467{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m90_c00467{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m24_c00467{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m50_c00467{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00467{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mea_c00467{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00467{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00467{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00467{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m27_c00467{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00467{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00467{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m73_c00467{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m29_c00467{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00467{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m9_c00467{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m62_c00467{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m69_c00467{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00467{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m22_c00467{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00467{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me0_c00467{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00467{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00467{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00467{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m79_c00467{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mc_c00467{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00467{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.me5_c00467{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00467{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00467{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00467{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.me3_c00467{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m83_c00467{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m118_c00467{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m41_c00467{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00467{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00467{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.me2_c00467{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00467{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m106_c00467{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00467{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m74_c00467{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00467{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m23_c00467{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m10_c00467{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00467{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8_c00467{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m78_c00467{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m16_c00467{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma_c00467{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m2_c00467{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00467{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m107_c00467{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00467{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00467{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00467{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00467{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mce_c00467{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m17_c00467{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m39_c00467{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m37_c00467{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m18_c00467{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00467{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00467{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00467{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m80_c00467{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m15_c00467{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00467{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.md5_c00467{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m65_c00467{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00467{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00467{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6_c00467{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m25_c00467{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00467{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m46_c00467{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00467{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m85_c00467{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m68_c00467{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00467{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00467{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m56_c00467{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00467{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.med_c00467{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m57_c00467{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m67_c00467{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mae_c00467{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00467{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.md_c00467{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00467{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m42_c00467{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00467{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m44_c00467{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m21_c00467{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5_c00467{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m48_c00467{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00467{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb_c00467{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00467{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md2_c00467{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.me_c00467{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00467{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00467{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00467{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m33_c00467{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m13_c00467{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m19_c00467{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m49_c00467{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m34_c00467{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00467{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md9_c00467{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m111_c00467{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00467{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m7_c00467{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00467{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00467{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mca_c00467{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00467{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00467{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.meb_c00467{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00467{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m20_c00467{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m63_c00467{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m31_c00467{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md7_c00467{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00467{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m119_c00467{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00467{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11_c00467{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00467{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md3_c00467{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00467{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m32_c00467{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m87_c00467{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me8_c00467{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m70_c00467{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m89_c00467{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00467{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00467{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m86_c00467{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.me4_c00467{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m14_c00467{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00467{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m117_c00467{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00467{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m58_c00467{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00467{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00467{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maf_c00467{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00467{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00467{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m61_c00467{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m60_c00467{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m71_c00467{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00467{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m36_c00467{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00467{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me6_c00467{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mda_c00467{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m94_c00467{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00467{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md6_c00467{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m103_c00467{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md4_c00467{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00467{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00467{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00467{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.md0_c00467{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00467{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00467{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00467{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00467{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m81_c00467{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00467{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m115_c00467{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m95_c00467{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00467{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mac_c00467{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00467{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m51_c00467{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00467{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m30_c00467{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m35_c00467{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00467{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00467{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00467{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);}
.mf_c00467{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m55_c00467{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00467{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mad_c00467{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m38_c00467{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00467{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00467{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00467{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mef_c00467{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m53_c00467{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m43_c00467{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m96_c00467{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m100_c00467{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m110_c00467{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00467{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m77_c00467{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00467{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md1_c00467{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mde_c00467{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00467{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00467{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m108_c00467{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00467{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.maa_c00467{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m114_c00467{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00467{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00467{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.me9_c00467{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00467{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m116_c00467{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00467{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m76_c00467{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mab_c00467{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.me7_c00467{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m82_c00467{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00467{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00467{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m93_c00467{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m84_c00467{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00467{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00467{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00467{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00467{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00467{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m98_c00467{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m92_c00467{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00467{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m97_c00467{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m99_c00467{transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);}
.m102_c00467{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls0_c00467{letter-spacing:0.000000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{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__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00467{word-spacing:-6.292683px;}
.ws5_c00467{word-spacing:-0.119048px;}
.ws9_c00467{word-spacing:0.000000px;}
.ws0_c00467{word-spacing:0.862069px;}
.ws4_c00467{word-spacing:3.000000px;}
.ws2_c00467{word-spacing:9.634241px;}
.ws8_c00467{word-spacing:16.257611px;}
.ws7_c00467{word-spacing:19.994638px;}
.ws3_c00467{word-spacing:24.666667px;}
.ws6_c00467{word-spacing:29.285714px;}
._0_c00467{width:52.142857px;}
._1_c00467{width:53.428954px;}
.fc0_c00467{color:transparent;}
.fs6_c00467{font-size:30.000000px;}
.fs5_c00467{font-size:54.000000px;}
.fs4_c00467{font-size:60.000000px;}
.fs2_c00467{font-size:66.000000px;}
.fs3_c00467{font-size:72.000000px;}
.fs7_c00467{font-size:78.000000px;}
.fs1_c00467{font-size:84.000000px;}
.fs0_c00467{font-size:144.000000px;}
.y0_c00467{bottom:0.000000px;}
.y6a_c00467{bottom:167.100000px;}
.y69_c00467{bottom:184.050000px;}
.y35_c00467{bottom:185.700000px;}
.y68_c00467{bottom:199.500000px;}
.y34_c00467{bottom:203.700000px;}
.y67_c00467{bottom:213.900000px;}
.y33_c00467{bottom:225.150000px;}
.y66_c00467{bottom:228.000000px;}
.y65_c00467{bottom:242.700000px;}
.y32_c00467{bottom:242.850000px;}
.y64_c00467{bottom:257.100000px;}
.y31_c00467{bottom:260.550000px;}
.y30_c00467{bottom:278.250000px;}
.y63_c00467{bottom:287.250000px;}
.y2f_c00467{bottom:295.950000px;}
.y62_c00467{bottom:302.100000px;}
.y2e_c00467{bottom:313.950000px;}
.y61_c00467{bottom:316.800000px;}
.y2d_c00467{bottom:331.950000px;}
.y60_c00467{bottom:332.250000px;}
.y5f_c00467{bottom:345.900000px;}
.y2c_c00467{bottom:354.600000px;}
.y5e_c00467{bottom:359.400000px;}
.y2b_c00467{bottom:372.600000px;}
.y5d_c00467{bottom:374.100000px;}
.y5c_c00467{bottom:388.800000px;}
.y2a_c00467{bottom:390.600000px;}
.y5b_c00467{bottom:402.900000px;}
.y29_c00467{bottom:408.600000px;}
.y5a_c00467{bottom:417.600000px;}
.y28_c00467{bottom:430.200000px;}
.y59_c00467{bottom:432.000000px;}
.y58_c00467{bottom:446.400000px;}
.y27_c00467{bottom:448.950000px;}
.y57_c00467{bottom:461.850000px;}
.y26_c00467{bottom:479.550000px;}
.y56_c00467{bottom:481.350000px;}
.y55_c00467{bottom:499.350000px;}
.y25_c00467{bottom:501.900000px;}
.y54_c00467{bottom:517.050000px;}
.y24_c00467{bottom:519.900000px;}
.y53_c00467{bottom:534.750000px;}
.y23_c00467{bottom:542.100000px;}
.y52_c00467{bottom:552.450000px;}
.y22_c00467{bottom:560.100000px;}
.y51_c00467{bottom:570.150000px;}
.y21_c00467{bottom:577.800000px;}
.y50_c00467{bottom:588.150000px;}
.y20_c00467{bottom:595.500000px;}
.y4f_c00467{bottom:605.850000px;}
.y1f_c00467{bottom:613.800000px;}
.y4e_c00467{bottom:623.850000px;}
.y1e_c00467{bottom:631.800000px;}
.y4d_c00467{bottom:646.050000px;}
.y1d_c00467{bottom:649.200000px;}
.y4c_c00467{bottom:663.750000px;}
.y1c_c00467{bottom:667.500000px;}
.y4b_c00467{bottom:681.750000px;}
.y1b_c00467{bottom:685.200000px;}
.y4a_c00467{bottom:699.750000px;}
.y1a_c00467{bottom:703.200000px;}
.y49_c00467{bottom:717.450000px;}
.y19_c00467{bottom:721.200000px;}
.y18_c00467{bottom:739.200000px;}
.y48_c00467{bottom:739.500000px;}
.y17_c00467{bottom:757.200000px;}
.y47_c00467{bottom:757.500000px;}
.y16_c00467{bottom:775.200000px;}
.y46_c00467{bottom:789.450000px;}
.y15_c00467{bottom:793.200000px;}
.y45_c00467{bottom:807.300000px;}
.y14_c00467{bottom:810.900000px;}
.y44_c00467{bottom:825.000000px;}
.y13_c00467{bottom:828.900000px;}
.y43_c00467{bottom:843.000000px;}
.y12_c00467{bottom:846.600000px;}
.y42_c00467{bottom:861.000000px;}
.y11_c00467{bottom:864.600000px;}
.y41_c00467{bottom:879.000000px;}
.y10_c00467{bottom:882.600000px;}
.y40_c00467{bottom:897.000000px;}
.yf_c00467{bottom:900.600000px;}
.y3f_c00467{bottom:914.700000px;}
.ye_c00467{bottom:918.600000px;}
.yd_c00467{bottom:936.600000px;}
.y3e_c00467{bottom:937.050000px;}
.yc_c00467{bottom:954.600000px;}
.y3d_c00467{bottom:955.050000px;}
.yb_c00467{bottom:972.600000px;}
.y3c_c00467{bottom:973.050000px;}
.ya_c00467{bottom:990.600000px;}
.y3b_c00467{bottom:991.050000px;}
.y9_c00467{bottom:1008.600000px;}
.y3a_c00467{bottom:1009.050000px;}
.y8_c00467{bottom:1026.300000px;}
.y39_c00467{bottom:1027.050000px;}
.y7_c00467{bottom:1044.300000px;}
.y38_c00467{bottom:1044.900000px;}
.y6_c00467{bottom:1062.600000px;}
.y5_c00467{bottom:1080.300000px;}
.y37_c00467{bottom:1080.600000px;}
.y4_c00467{bottom:1098.300000px;}
.y36_c00467{bottom:1098.600000px;}
.y3_c00467{bottom:1116.300000px;}
.y1_c00467{bottom:1139.100000px;}
.y2_c00467{bottom:1143.750000px;}
.h7_c00467{height:30.000000px;}
.h6_c00467{height:54.000000px;}
.h5_c00467{height:60.000000px;}
.h3_c00467{height:66.000000px;}
.h4_c00467{height:72.000000px;}
.h8_c00467{height:78.000000px;}
.h2_c00467{height:84.000000px;}
.h1_c00467{height:144.000000px;}
.h0_c00467{height:1269.000000px;}
.w0_c00467{width:958.320007px;}
.w1_c00467{width:958.500000px;}
.x0_c00467{left:0.000000px;}
.x9b_c00467{left:190.500000px;}
.x8b_c00467{left:192.300000px;}
.x87_c00467{left:193.350000px;}
.x8f_c00467{left:194.700000px;}
.x1_c00467{left:199.500000px;}
.xa0_c00467{left:208.500000px;}
.x92_c00467{left:209.550000px;}
.x66_c00467{left:211.050000px;}
.x4c_c00467{left:212.100000px;}
.x3e_c00467{left:214.200000px;}
.x30_c00467{left:215.400000px;}
.x1f_c00467{left:216.600000px;}
.x3_c00467{left:218.100000px;}
.x94_c00467{left:227.550000px;}
.x80_c00467{left:229.650000px;}
.x6b_c00467{left:230.850000px;}
.x9c_c00467{left:232.950000px;}
.x8c_c00467{left:234.000000px;}
.x74_c00467{left:235.200000px;}
.x24_c00467{left:236.850000px;}
.x45_c00467{left:238.500000px;}
.x7b_c00467{left:243.000000px;}
.x85_c00467{left:244.800000px;}
.x71_c00467{left:245.850000px;}
.x2b_c00467{left:249.600000px;}
.xa3_c00467{left:250.950000px;}
.x20_c00467{left:252.900000px;}
.x81_c00467{left:254.100000px;}
.x93_c00467{left:255.300000px;}
.x4d_c00467{left:257.100000px;}
.x8d_c00467{left:259.200000px;}
.xa7_c00467{left:260.850000px;}
.x12_c00467{left:261.900000px;}
.x18_c00467{left:264.450000px;}
.x72_c00467{left:265.950000px;}
.x35_c00467{left:267.300000px;}
.xa4_c00467{left:268.650000px;}
.x31_c00467{left:269.700000px;}
.x25_c00467{left:272.850000px;}
.x4_c00467{left:274.650000px;}
.x3f_c00467{left:277.200000px;}
.x13_c00467{left:281.400000px;}
.x58_c00467{left:282.750000px;}
.x8e_c00467{left:284.100000px;}
.x5b_c00467{left:286.050000px;}
.x67_c00467{left:287.400000px;}
.x89_c00467{left:289.050000px;}
.x6c_c00467{left:291.300000px;}
.x40_c00467{left:293.700000px;}
.x14_c00467{left:296.550000px;}
.x5_c00467{left:297.750000px;}
.x49_c00467{left:301.200000px;}
.x46_c00467{left:304.800000px;}
.xb_c00467{left:307.350000px;}
.x96_c00467{left:311.550000px;}
.x59_c00467{left:313.050000px;}
.x21_c00467{left:314.850000px;}
.x68_c00467{left:316.950000px;}
.x95_c00467{left:318.600000px;}
.x19_c00467{left:321.000000px;}
.x26_c00467{left:323.250000px;}
.x76_c00467{left:325.500000px;}
.x3b_c00467{left:328.050000px;}
.x54_c00467{left:332.700000px;}
.x6_c00467{left:334.050000px;}
.x63_c00467{left:336.300000px;}
.xa5_c00467{left:337.350000px;}
.x2c_c00467{left:338.550000px;}
.x47_c00467{left:339.750000px;}
.x77_c00467{left:340.950000px;}
.x36_c00467{left:342.150000px;}
.x15_c00467{left:343.350000px;}
.x82_c00467{left:344.850000px;}
.x57_c00467{left:346.050000px;}
.xc_c00467{left:348.000000px;}
.x6d_c00467{left:349.200000px;}
.x97_c00467{left:351.150000px;}
.x55_c00467{left:355.350000px;}
.xa1_c00467{left:358.350000px;}
.x7c_c00467{left:359.700000px;}
.xd_c00467{left:360.900000px;}
.x16_c00467{left:362.100000px;}
.x52_c00467{left:363.900000px;}
.x1a_c00467{left:366.000000px;}
.x60_c00467{left:369.300000px;}
.x8a_c00467{left:371.100000px;}
.x98_c00467{left:372.450000px;}
.x37_c00467{left:375.300000px;}
.x4e_c00467{left:376.350000px;}
.x64_c00467{left:378.750000px;}
.x2d_c00467{left:380.250000px;}
.x4a_c00467{left:382.500000px;}
.x27_c00467{left:384.150000px;}
.x53_c00467{left:387.000000px;}
.x7_c00467{left:388.050000px;}
.x7e_c00467{left:391.650000px;}
.x7d_c00467{left:392.850000px;}
.x6e_c00467{left:395.250000px;}
.x61_c00467{left:396.300000px;}
.x99_c00467{left:397.350000px;}
.x32_c00467{left:399.000000px;}
.x78_c00467{left:402.150000px;}
.x41_c00467{left:407.100000px;}
.xe_c00467{left:408.450000px;}
.x83_c00467{left:409.650000px;}
.x73_c00467{left:410.700000px;}
.x69_c00467{left:412.350000px;}
.x5c_c00467{left:414.300000px;}
.x2e_c00467{left:415.500000px;}
.x9d_c00467{left:416.550000px;}
.x48_c00467{left:417.600000px;}
.x8_c00467{left:418.650000px;}
.x1b_c00467{left:420.000000px;}
.x42_c00467{left:421.800000px;}
.x4b_c00467{left:424.200000px;}
.x28_c00467{left:426.900000px;}
.x4f_c00467{left:428.550000px;}
.x22_c00467{left:429.900000px;}
.xa6_c00467{left:431.250000px;}
.x17_c00467{left:432.300000px;}
.x38_c00467{left:433.500000px;}
.x5a_c00467{left:435.450000px;}
.x90_c00467{left:438.450000px;}
.x3c_c00467{left:440.250000px;}
.x1c_c00467{left:442.350000px;}
.x50_c00467{left:444.750000px;}
.x2f_c00467{left:447.900000px;}
.x2_c00467{left:448.950000px;}
.x5d_c00467{left:450.600000px;}
.x43_c00467{left:453.000000px;}
.x86_c00467{left:454.350000px;}
.x33_c00467{left:455.850000px;}
.xf_c00467{left:457.350000px;}
.x65_c00467{left:458.700000px;}
.x9e_c00467{left:460.050000px;}
.x7f_c00467{left:463.650000px;}
.x3d_c00467{left:465.150000px;}
.x9_c00467{left:467.250000px;}
.x39_c00467{left:471.300000px;}
.x6f_c00467{left:472.650000px;}
.xa9_c00467{left:473.700000px;}
.x56_c00467{left:474.900000px;}
.x10_c00467{left:476.100000px;}
.x62_c00467{left:477.900000px;}
.x9a_c00467{left:479.400000px;}
.x5e_c00467{left:480.900000px;}
.x79_c00467{left:482.100000px;}
.x44_c00467{left:483.300000px;}
.x6a_c00467{left:484.350000px;}
.x23_c00467{left:488.550000px;}
.x88_c00467{left:490.350000px;}
.x91_c00467{left:491.400000px;}
.x1d_c00467{left:493.050000px;}
.x84_c00467{left:494.550000px;}
.x29_c00467{left:496.350000px;}
.xa_c00467{left:498.900000px;}
.x9f_c00467{left:500.400000px;}
.x7a_c00467{left:502.650000px;}
.xa8_c00467{left:503.850000px;}
.x51_c00467{left:508.050000px;}
.x75_c00467{left:510.300000px;}
.x1e_c00467{left:512.100000px;}
.xa2_c00467{left:513.150000px;}
.x11_c00467{left:515.700000px;}
.x70_c00467{left:517.950000px;}
.x3a_c00467{left:520.650000px;}
.x34_c00467{left:522.150000px;}
.x5f_c00467{left:525.900000px;}
.x2a_c00467{left:527.250000px;}
.x14b_c00467{left:546.600000px;}
.x109_c00467{left:547.950000px;}
.x120_c00467{left:550.050000px;}
.xe7_c00467{left:551.850000px;}
.x13b_c00467{left:558.300000px;}
.x142_c00467{left:561.900000px;}
.xd8_c00467{left:563.700000px;}
.xc1_c00467{left:565.200000px;}
.xfb_c00467{left:566.400000px;}
.x10d_c00467{left:568.050000px;}
.xf3_c00467{left:569.400000px;}
.xc2_c00467{left:570.900000px;}
.xaa_c00467{left:572.400000px;}
.xcb_c00467{left:576.300000px;}
.x143_c00467{left:579.900000px;}
.x14e_c00467{left:584.850000px;}
.x10e_c00467{left:587.100000px;}
.x108_c00467{left:588.300000px;}
.xfe_c00467{left:591.450000px;}
.x121_c00467{left:592.950000px;}
.x151_c00467{left:594.450000px;}
.x10a_c00467{left:595.500000px;}
.xd5_c00467{left:596.700000px;}
.x12f_c00467{left:598.800000px;}
.xb1_c00467{left:600.450000px;}
.xe2_c00467{left:605.700000px;}
.x140_c00467{left:607.650000px;}
.xcc_c00467{left:608.700000px;}
.x104_c00467{left:610.950000px;}
.xd1_c00467{left:615.150000px;}
.xff_c00467{left:616.350000px;}
.xe8_c00467{left:619.200000px;}
.xc6_c00467{left:621.600000px;}
.x12a_c00467{left:623.250000px;}
.xab_c00467{left:624.300000px;}
.x12d_c00467{left:626.100000px;}
.xd9_c00467{left:627.300000px;}
.x105_c00467{left:631.050000px;}
.x10b_c00467{left:633.600000px;}
.xb2_c00467{left:634.950000px;}
.x14f_c00467{left:636.300000px;}
.xda_c00467{left:637.350000px;}
.xe9_c00467{left:639.000000px;}
.x117_c00467{left:640.200000px;}
.xf4_c00467{left:641.400000px;}
.x112_c00467{left:644.700000px;}
.x149_c00467{left:646.650000px;}
.xcd_c00467{left:648.300000px;}
.xb3_c00467{left:649.650000px;}
.xc7_c00467{left:651.150000px;}
.x122_c00467{left:654.900000px;}
.x153_c00467{left:657.450000px;}
.x131_c00467{left:659.400000px;}
.xea_c00467{left:662.400000px;}
.x144_c00467{left:666.000000px;}
.xe3_c00467{left:669.750000px;}
.xac_c00467{left:671.400000px;}
.xc3_c00467{left:672.450000px;}
.xdd_c00467{left:674.100000px;}
.xba_c00467{left:676.050000px;}
.x14c_c00467{left:678.000000px;}
.x13d_c00467{left:679.500000px;}
.x10f_c00467{left:681.150000px;}
.xb4_c00467{left:682.350000px;}
.x100_c00467{left:684.750000px;}
.x113_c00467{left:686.100000px;}
.xc8_c00467{left:687.900000px;}
.xe4_c00467{left:690.600000px;}
.xad_c00467{left:692.250000px;}
.xeb_c00467{left:693.750000px;}
.x110_c00467{left:695.550000px;}
.x124_c00467{left:697.200000px;}
.x13e_c00467{left:699.000000px;}
.xce_c00467{left:700.800000px;}
.xde_c00467{left:702.150000px;}
.x134_c00467{left:706.950000px;}
.xf0_c00467{left:708.000000px;}
.x125_c00467{left:709.800000px;}
.x106_c00467{left:711.000000px;}
.xbb_c00467{left:712.050000px;}
.x119_c00467{left:713.400000px;}
.xe5_c00467{left:715.050000px;}
.xd2_c00467{left:716.250000px;}
.x11d_c00467{left:718.200000px;}
.x132_c00467{left:719.850000px;}
.x101_c00467{left:722.850000px;}
.xb5_c00467{left:724.800000px;}
.xbc_c00467{left:728.550000px;}
.xd3_c00467{left:731.700000px;}
.xc9_c00467{left:733.650000px;}
.x145_c00467{left:734.850000px;}
.xdb_c00467{left:736.350000px;}
.x11a_c00467{left:737.850000px;}
.xfc_c00467{left:739.500000px;}
.xec_c00467{left:741.300000px;}
.x13f_c00467{left:742.500000px;}
.xd6_c00467{left:744.750000px;}
.xb6_c00467{left:747.900000px;}
.x135_c00467{left:749.100000px;}
.xdf_c00467{left:750.750000px;}
.x150_c00467{left:751.950000px;}
.x141_c00467{left:757.050000px;}
.x114_c00467{left:758.400000px;}
.x136_c00467{left:759.900000px;}
.xae_c00467{left:761.400000px;}
.x12b_c00467{left:764.700000px;}
.xed_c00467{left:767.250000px;}
.xf7_c00467{left:769.050000px;}
.x152_c00467{left:770.100000px;}
.x11e_c00467{left:771.150000px;}
.x126_c00467{left:772.800000px;}
.xbd_c00467{left:774.300000px;}
.xb7_c00467{left:777.750000px;}
.x12e_c00467{left:779.850000px;}
.x127_c00467{left:785.100000px;}
.x146_c00467{left:786.300000px;}
.xaf_c00467{left:787.350000px;}
.xca_c00467{left:790.200000px;}
.xe6_c00467{left:791.400000px;}
.xdc_c00467{left:792.900000px;}
.x14a_c00467{left:794.250000px;}
.xc4_c00467{left:795.750000px;}
.xcf_c00467{left:798.000000px;}
.xf1_c00467{left:800.250000px;}
.xf5_c00467{left:802.650000px;}
.x11b_c00467{left:804.150000px;}
.xbe_c00467{left:805.650000px;}
.x138_c00467{left:807.150000px;}
.x107_c00467{left:808.950000px;}
.x128_c00467{left:810.300000px;}
.xfd_c00467{left:811.500000px;}
.x13a_c00467{left:812.850000px;}
.x118_c00467{left:814.500000px;}
.xf2_c00467{left:815.700000px;}
.x137_c00467{left:817.800000px;}
.xd4_c00467{left:818.850000px;}
.x115_c00467{left:820.200000px;}
.xe0_c00467{left:822.750000px;}
.x14d_c00467{left:824.250000px;}
.x102_c00467{left:825.450000px;}
.xee_c00467{left:826.650000px;}
.xbf_c00467{left:829.350000px;}
.xd7_c00467{left:830.850000px;}
.xf8_c00467{left:832.500000px;}
.xf6_c00467{left:834.000000px;}
.xb8_c00467{left:835.050000px;}
.x10c_c00467{left:837.300000px;}
.x130_c00467{left:838.950000px;}
.x147_c00467{left:842.850000px;}
.xf9_c00467{left:844.050000px;}
.x133_c00467{left:845.850000px;}
.xef_c00467{left:849.750000px;}
.x123_c00467{left:852.450000px;}
.xe1_c00467{left:853.650000px;}
.x11f_c00467{left:855.150000px;}
.x11c_c00467{left:857.100000px;}
.xfa_c00467{left:858.750000px;}
.xc5_c00467{left:860.250000px;}
.x12c_c00467{left:861.750000px;}
.x103_c00467{left:863.250000px;}
.xd0_c00467{left:865.650000px;}
.xb9_c00467{left:867.750000px;}
.x148_c00467{left:871.050000px;}
.x139_c00467{left:872.700000px;}
.x116_c00467{left:873.900000px;}
.x13c_c00467{left:875.400000px;}
.xb0_c00467{left:877.350000px;}
.xc0_c00467{left:879.450000px;}
.x129_c00467{left:883.800000px;}
.x111_c00467{left:886.350000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws1_c00467{word-spacing:-5.593496pt;}
.ws5_c00467{word-spacing:-0.105820pt;}
.ws9_c00467{word-spacing:0.000000pt;}
.ws0_c00467{word-spacing:0.766284pt;}
.ws4_c00467{word-spacing:2.666667pt;}
.ws2_c00467{word-spacing:8.563770pt;}
.ws8_c00467{word-spacing:14.451210pt;}
.ws7_c00467{word-spacing:17.773012pt;}
.ws3_c00467{word-spacing:21.925926pt;}
.ws6_c00467{word-spacing:26.031746pt;}
._0_c00467{width:46.349206pt;}
._1_c00467{width:47.492404pt;}
.fs6_c00467{font-size:26.666667pt;}
.fs5_c00467{font-size:48.000000pt;}
.fs4_c00467{font-size:53.333333pt;}
.fs2_c00467{font-size:58.666667pt;}
.fs3_c00467{font-size:64.000000pt;}
.fs7_c00467{font-size:69.333333pt;}
.fs1_c00467{font-size:74.666667pt;}
.fs0_c00467{font-size:128.000000pt;}
.y0_c00467{bottom:0.000000pt;}
.y6a_c00467{bottom:148.533333pt;}
.y69_c00467{bottom:163.600000pt;}
.y35_c00467{bottom:165.066667pt;}
.y68_c00467{bottom:177.333333pt;}
.y34_c00467{bottom:181.066667pt;}
.y67_c00467{bottom:190.133333pt;}
.y33_c00467{bottom:200.133333pt;}
.y66_c00467{bottom:202.666667pt;}
.y65_c00467{bottom:215.733333pt;}
.y32_c00467{bottom:215.866667pt;}
.y64_c00467{bottom:228.533333pt;}
.y31_c00467{bottom:231.600000pt;}
.y30_c00467{bottom:247.333333pt;}
.y63_c00467{bottom:255.333333pt;}
.y2f_c00467{bottom:263.066667pt;}
.y62_c00467{bottom:268.533333pt;}
.y2e_c00467{bottom:279.066667pt;}
.y61_c00467{bottom:281.600000pt;}
.y2d_c00467{bottom:295.066667pt;}
.y60_c00467{bottom:295.333333pt;}
.y5f_c00467{bottom:307.466667pt;}
.y2c_c00467{bottom:315.200000pt;}
.y5e_c00467{bottom:319.466667pt;}
.y2b_c00467{bottom:331.200000pt;}
.y5d_c00467{bottom:332.533333pt;}
.y5c_c00467{bottom:345.600000pt;}
.y2a_c00467{bottom:347.200000pt;}
.y5b_c00467{bottom:358.133333pt;}
.y29_c00467{bottom:363.200000pt;}
.y5a_c00467{bottom:371.200000pt;}
.y28_c00467{bottom:382.400000pt;}
.y59_c00467{bottom:384.000000pt;}
.y58_c00467{bottom:396.800000pt;}
.y27_c00467{bottom:399.066667pt;}
.y57_c00467{bottom:410.533333pt;}
.y26_c00467{bottom:426.266667pt;}
.y56_c00467{bottom:427.866667pt;}
.y55_c00467{bottom:443.866667pt;}
.y25_c00467{bottom:446.133333pt;}
.y54_c00467{bottom:459.600000pt;}
.y24_c00467{bottom:462.133333pt;}
.y53_c00467{bottom:475.333333pt;}
.y23_c00467{bottom:481.866667pt;}
.y52_c00467{bottom:491.066667pt;}
.y22_c00467{bottom:497.866667pt;}
.y51_c00467{bottom:506.800000pt;}
.y21_c00467{bottom:513.600000pt;}
.y50_c00467{bottom:522.800000pt;}
.y20_c00467{bottom:529.333333pt;}
.y4f_c00467{bottom:538.533333pt;}
.y1f_c00467{bottom:545.600000pt;}
.y4e_c00467{bottom:554.533333pt;}
.y1e_c00467{bottom:561.600000pt;}
.y4d_c00467{bottom:574.266667pt;}
.y1d_c00467{bottom:577.066667pt;}
.y4c_c00467{bottom:590.000000pt;}
.y1c_c00467{bottom:593.333333pt;}
.y4b_c00467{bottom:606.000000pt;}
.y1b_c00467{bottom:609.066667pt;}
.y4a_c00467{bottom:622.000000pt;}
.y1a_c00467{bottom:625.066667pt;}
.y49_c00467{bottom:637.733333pt;}
.y19_c00467{bottom:641.066667pt;}
.y18_c00467{bottom:657.066667pt;}
.y48_c00467{bottom:657.333333pt;}
.y17_c00467{bottom:673.066667pt;}
.y47_c00467{bottom:673.333333pt;}
.y16_c00467{bottom:689.066667pt;}
.y46_c00467{bottom:701.733333pt;}
.y15_c00467{bottom:705.066667pt;}
.y45_c00467{bottom:717.600000pt;}
.y14_c00467{bottom:720.800000pt;}
.y44_c00467{bottom:733.333333pt;}
.y13_c00467{bottom:736.800000pt;}
.y43_c00467{bottom:749.333333pt;}
.y12_c00467{bottom:752.533333pt;}
.y42_c00467{bottom:765.333333pt;}
.y11_c00467{bottom:768.533333pt;}
.y41_c00467{bottom:781.333333pt;}
.y10_c00467{bottom:784.533333pt;}
.y40_c00467{bottom:797.333333pt;}
.yf_c00467{bottom:800.533333pt;}
.y3f_c00467{bottom:813.066667pt;}
.ye_c00467{bottom:816.533333pt;}
.yd_c00467{bottom:832.533333pt;}
.y3e_c00467{bottom:832.933333pt;}
.yc_c00467{bottom:848.533333pt;}
.y3d_c00467{bottom:848.933333pt;}
.yb_c00467{bottom:864.533333pt;}
.y3c_c00467{bottom:864.933333pt;}
.ya_c00467{bottom:880.533333pt;}
.y3b_c00467{bottom:880.933333pt;}
.y9_c00467{bottom:896.533333pt;}
.y3a_c00467{bottom:896.933333pt;}
.y8_c00467{bottom:912.266667pt;}
.y39_c00467{bottom:912.933333pt;}
.y7_c00467{bottom:928.266667pt;}
.y38_c00467{bottom:928.800000pt;}
.y6_c00467{bottom:944.533333pt;}
.y5_c00467{bottom:960.266667pt;}
.y37_c00467{bottom:960.533333pt;}
.y4_c00467{bottom:976.266667pt;}
.y36_c00467{bottom:976.533333pt;}
.y3_c00467{bottom:992.266667pt;}
.y1_c00467{bottom:1012.533333pt;}
.y2_c00467{bottom:1016.666667pt;}
.h7_c00467{height:26.666667pt;}
.h6_c00467{height:48.000000pt;}
.h5_c00467{height:53.333333pt;}
.h3_c00467{height:58.666667pt;}
.h4_c00467{height:64.000000pt;}
.h8_c00467{height:69.333333pt;}
.h2_c00467{height:74.666667pt;}
.h1_c00467{height:128.000000pt;}
.h0_c00467{height:1128.000000pt;}
.w0_c00467{width:851.840007pt;}
.w1_c00467{width:852.000000pt;}
.x0_c00467{left:0.000000pt;}
.x9b_c00467{left:169.333333pt;}
.x8b_c00467{left:170.933333pt;}
.x87_c00467{left:171.866667pt;}
.x8f_c00467{left:173.066667pt;}
.x1_c00467{left:177.333333pt;}
.xa0_c00467{left:185.333333pt;}
.x92_c00467{left:186.266667pt;}
.x66_c00467{left:187.600000pt;}
.x4c_c00467{left:188.533333pt;}
.x3e_c00467{left:190.400000pt;}
.x30_c00467{left:191.466667pt;}
.x1f_c00467{left:192.533333pt;}
.x3_c00467{left:193.866667pt;}
.x94_c00467{left:202.266667pt;}
.x80_c00467{left:204.133333pt;}
.x6b_c00467{left:205.200000pt;}
.x9c_c00467{left:207.066667pt;}
.x8c_c00467{left:208.000000pt;}
.x74_c00467{left:209.066667pt;}
.x24_c00467{left:210.533333pt;}
.x45_c00467{left:212.000000pt;}
.x7b_c00467{left:216.000000pt;}
.x85_c00467{left:217.600000pt;}
.x71_c00467{left:218.533333pt;}
.x2b_c00467{left:221.866667pt;}
.xa3_c00467{left:223.066667pt;}
.x20_c00467{left:224.800000pt;}
.x81_c00467{left:225.866667pt;}
.x93_c00467{left:226.933333pt;}
.x4d_c00467{left:228.533333pt;}
.x8d_c00467{left:230.400000pt;}
.xa7_c00467{left:231.866667pt;}
.x12_c00467{left:232.800000pt;}
.x18_c00467{left:235.066667pt;}
.x72_c00467{left:236.400000pt;}
.x35_c00467{left:237.600000pt;}
.xa4_c00467{left:238.800000pt;}
.x31_c00467{left:239.733333pt;}
.x25_c00467{left:242.533333pt;}
.x4_c00467{left:244.133333pt;}
.x3f_c00467{left:246.400000pt;}
.x13_c00467{left:250.133333pt;}
.x58_c00467{left:251.333333pt;}
.x8e_c00467{left:252.533333pt;}
.x5b_c00467{left:254.266667pt;}
.x67_c00467{left:255.466667pt;}
.x89_c00467{left:256.933333pt;}
.x6c_c00467{left:258.933333pt;}
.x40_c00467{left:261.066667pt;}
.x14_c00467{left:263.600000pt;}
.x5_c00467{left:264.666667pt;}
.x49_c00467{left:267.733333pt;}
.x46_c00467{left:270.933333pt;}
.xb_c00467{left:273.200000pt;}
.x96_c00467{left:276.933333pt;}
.x59_c00467{left:278.266667pt;}
.x21_c00467{left:279.866667pt;}
.x68_c00467{left:281.733333pt;}
.x95_c00467{left:283.200000pt;}
.x19_c00467{left:285.333333pt;}
.x26_c00467{left:287.333333pt;}
.x76_c00467{left:289.333333pt;}
.x3b_c00467{left:291.600000pt;}
.x54_c00467{left:295.733333pt;}
.x6_c00467{left:296.933333pt;}
.x63_c00467{left:298.933333pt;}
.xa5_c00467{left:299.866667pt;}
.x2c_c00467{left:300.933333pt;}
.x47_c00467{left:302.000000pt;}
.x77_c00467{left:303.066667pt;}
.x36_c00467{left:304.133333pt;}
.x15_c00467{left:305.200000pt;}
.x82_c00467{left:306.533333pt;}
.x57_c00467{left:307.600000pt;}
.xc_c00467{left:309.333333pt;}
.x6d_c00467{left:310.400000pt;}
.x97_c00467{left:312.133333pt;}
.x55_c00467{left:315.866667pt;}
.xa1_c00467{left:318.533333pt;}
.x7c_c00467{left:319.733333pt;}
.xd_c00467{left:320.800000pt;}
.x16_c00467{left:321.866667pt;}
.x52_c00467{left:323.466667pt;}
.x1a_c00467{left:325.333333pt;}
.x60_c00467{left:328.266667pt;}
.x8a_c00467{left:329.866667pt;}
.x98_c00467{left:331.066667pt;}
.x37_c00467{left:333.600000pt;}
.x4e_c00467{left:334.533333pt;}
.x64_c00467{left:336.666667pt;}
.x2d_c00467{left:338.000000pt;}
.x4a_c00467{left:340.000000pt;}
.x27_c00467{left:341.466667pt;}
.x53_c00467{left:344.000000pt;}
.x7_c00467{left:344.933333pt;}
.x7e_c00467{left:348.133333pt;}
.x7d_c00467{left:349.200000pt;}
.x6e_c00467{left:351.333333pt;}
.x61_c00467{left:352.266667pt;}
.x99_c00467{left:353.200000pt;}
.x32_c00467{left:354.666667pt;}
.x78_c00467{left:357.466667pt;}
.x41_c00467{left:361.866667pt;}
.xe_c00467{left:363.066667pt;}
.x83_c00467{left:364.133333pt;}
.x73_c00467{left:365.066667pt;}
.x69_c00467{left:366.533333pt;}
.x5c_c00467{left:368.266667pt;}
.x2e_c00467{left:369.333333pt;}
.x9d_c00467{left:370.266667pt;}
.x48_c00467{left:371.200000pt;}
.x8_c00467{left:372.133333pt;}
.x1b_c00467{left:373.333333pt;}
.x42_c00467{left:374.933333pt;}
.x4b_c00467{left:377.066667pt;}
.x28_c00467{left:379.466667pt;}
.x4f_c00467{left:380.933333pt;}
.x22_c00467{left:382.133333pt;}
.xa6_c00467{left:383.333333pt;}
.x17_c00467{left:384.266667pt;}
.x38_c00467{left:385.333333pt;}
.x5a_c00467{left:387.066667pt;}
.x90_c00467{left:389.733333pt;}
.x3c_c00467{left:391.333333pt;}
.x1c_c00467{left:393.200000pt;}
.x50_c00467{left:395.333333pt;}
.x2f_c00467{left:398.133333pt;}
.x2_c00467{left:399.066667pt;}
.x5d_c00467{left:400.533333pt;}
.x43_c00467{left:402.666667pt;}
.x86_c00467{left:403.866667pt;}
.x33_c00467{left:405.200000pt;}
.xf_c00467{left:406.533333pt;}
.x65_c00467{left:407.733333pt;}
.x9e_c00467{left:408.933333pt;}
.x7f_c00467{left:412.133333pt;}
.x3d_c00467{left:413.466667pt;}
.x9_c00467{left:415.333333pt;}
.x39_c00467{left:418.933333pt;}
.x6f_c00467{left:420.133333pt;}
.xa9_c00467{left:421.066667pt;}
.x56_c00467{left:422.133333pt;}
.x10_c00467{left:423.200000pt;}
.x62_c00467{left:424.800000pt;}
.x9a_c00467{left:426.133333pt;}
.x5e_c00467{left:427.466667pt;}
.x79_c00467{left:428.533333pt;}
.x44_c00467{left:429.600000pt;}
.x6a_c00467{left:430.533333pt;}
.x23_c00467{left:434.266667pt;}
.x88_c00467{left:435.866667pt;}
.x91_c00467{left:436.800000pt;}
.x1d_c00467{left:438.266667pt;}
.x84_c00467{left:439.600000pt;}
.x29_c00467{left:441.200000pt;}
.xa_c00467{left:443.466667pt;}
.x9f_c00467{left:444.800000pt;}
.x7a_c00467{left:446.800000pt;}
.xa8_c00467{left:447.866667pt;}
.x51_c00467{left:451.600000pt;}
.x75_c00467{left:453.600000pt;}
.x1e_c00467{left:455.200000pt;}
.xa2_c00467{left:456.133333pt;}
.x11_c00467{left:458.400000pt;}
.x70_c00467{left:460.400000pt;}
.x3a_c00467{left:462.800000pt;}
.x34_c00467{left:464.133333pt;}
.x5f_c00467{left:467.466667pt;}
.x2a_c00467{left:468.666667pt;}
.x14b_c00467{left:485.866667pt;}
.x109_c00467{left:487.066667pt;}
.x120_c00467{left:488.933333pt;}
.xe7_c00467{left:490.533333pt;}
.x13b_c00467{left:496.266667pt;}
.x142_c00467{left:499.466667pt;}
.xd8_c00467{left:501.066667pt;}
.xc1_c00467{left:502.400000pt;}
.xfb_c00467{left:503.466667pt;}
.x10d_c00467{left:504.933333pt;}
.xf3_c00467{left:506.133333pt;}
.xc2_c00467{left:507.466667pt;}
.xaa_c00467{left:508.800000pt;}
.xcb_c00467{left:512.266667pt;}
.x143_c00467{left:515.466667pt;}
.x14e_c00467{left:519.866667pt;}
.x10e_c00467{left:521.866667pt;}
.x108_c00467{left:522.933333pt;}
.xfe_c00467{left:525.733333pt;}
.x121_c00467{left:527.066667pt;}
.x151_c00467{left:528.400000pt;}
.x10a_c00467{left:529.333333pt;}
.xd5_c00467{left:530.400000pt;}
.x12f_c00467{left:532.266667pt;}
.xb1_c00467{left:533.733333pt;}
.xe2_c00467{left:538.400000pt;}
.x140_c00467{left:540.133333pt;}
.xcc_c00467{left:541.066667pt;}
.x104_c00467{left:543.066667pt;}
.xd1_c00467{left:546.800000pt;}
.xff_c00467{left:547.866667pt;}
.xe8_c00467{left:550.400000pt;}
.xc6_c00467{left:552.533333pt;}
.x12a_c00467{left:554.000000pt;}
.xab_c00467{left:554.933333pt;}
.x12d_c00467{left:556.533333pt;}
.xd9_c00467{left:557.600000pt;}
.x105_c00467{left:560.933333pt;}
.x10b_c00467{left:563.200000pt;}
.xb2_c00467{left:564.400000pt;}
.x14f_c00467{left:565.600000pt;}
.xda_c00467{left:566.533333pt;}
.xe9_c00467{left:568.000000pt;}
.x117_c00467{left:569.066667pt;}
.xf4_c00467{left:570.133333pt;}
.x112_c00467{left:573.066667pt;}
.x149_c00467{left:574.800000pt;}
.xcd_c00467{left:576.266667pt;}
.xb3_c00467{left:577.466667pt;}
.xc7_c00467{left:578.800000pt;}
.x122_c00467{left:582.133333pt;}
.x153_c00467{left:584.400000pt;}
.x131_c00467{left:586.133333pt;}
.xea_c00467{left:588.800000pt;}
.x144_c00467{left:592.000000pt;}
.xe3_c00467{left:595.333333pt;}
.xac_c00467{left:596.800000pt;}
.xc3_c00467{left:597.733333pt;}
.xdd_c00467{left:599.200000pt;}
.xba_c00467{left:600.933333pt;}
.x14c_c00467{left:602.666667pt;}
.x13d_c00467{left:604.000000pt;}
.x10f_c00467{left:605.466667pt;}
.xb4_c00467{left:606.533333pt;}
.x100_c00467{left:608.666667pt;}
.x113_c00467{left:609.866667pt;}
.xc8_c00467{left:611.466667pt;}
.xe4_c00467{left:613.866667pt;}
.xad_c00467{left:615.333333pt;}
.xeb_c00467{left:616.666667pt;}
.x110_c00467{left:618.266667pt;}
.x124_c00467{left:619.733333pt;}
.x13e_c00467{left:621.333333pt;}
.xce_c00467{left:622.933333pt;}
.xde_c00467{left:624.133333pt;}
.x134_c00467{left:628.400000pt;}
.xf0_c00467{left:629.333333pt;}
.x125_c00467{left:630.933333pt;}
.x106_c00467{left:632.000000pt;}
.xbb_c00467{left:632.933333pt;}
.x119_c00467{left:634.133333pt;}
.xe5_c00467{left:635.600000pt;}
.xd2_c00467{left:636.666667pt;}
.x11d_c00467{left:638.400000pt;}
.x132_c00467{left:639.866667pt;}
.x101_c00467{left:642.533333pt;}
.xb5_c00467{left:644.266667pt;}
.xbc_c00467{left:647.600000pt;}
.xd3_c00467{left:650.400000pt;}
.xc9_c00467{left:652.133333pt;}
.x145_c00467{left:653.200000pt;}
.xdb_c00467{left:654.533333pt;}
.x11a_c00467{left:655.866667pt;}
.xfc_c00467{left:657.333333pt;}
.xec_c00467{left:658.933333pt;}
.x13f_c00467{left:660.000000pt;}
.xd6_c00467{left:662.000000pt;}
.xb6_c00467{left:664.800000pt;}
.x135_c00467{left:665.866667pt;}
.xdf_c00467{left:667.333333pt;}
.x150_c00467{left:668.400000pt;}
.x141_c00467{left:672.933333pt;}
.x114_c00467{left:674.133333pt;}
.x136_c00467{left:675.466667pt;}
.xae_c00467{left:676.800000pt;}
.x12b_c00467{left:679.733333pt;}
.xed_c00467{left:682.000000pt;}
.xf7_c00467{left:683.600000pt;}
.x152_c00467{left:684.533333pt;}
.x11e_c00467{left:685.466667pt;}
.x126_c00467{left:686.933333pt;}
.xbd_c00467{left:688.266667pt;}
.xb7_c00467{left:691.333333pt;}
.x12e_c00467{left:693.200000pt;}
.x127_c00467{left:697.866667pt;}
.x146_c00467{left:698.933333pt;}
.xaf_c00467{left:699.866667pt;}
.xca_c00467{left:702.400000pt;}
.xe6_c00467{left:703.466667pt;}
.xdc_c00467{left:704.800000pt;}
.x14a_c00467{left:706.000000pt;}
.xc4_c00467{left:707.333333pt;}
.xcf_c00467{left:709.333333pt;}
.xf1_c00467{left:711.333333pt;}
.xf5_c00467{left:713.466667pt;}
.x11b_c00467{left:714.800000pt;}
.xbe_c00467{left:716.133333pt;}
.x138_c00467{left:717.466667pt;}
.x107_c00467{left:719.066667pt;}
.x128_c00467{left:720.266667pt;}
.xfd_c00467{left:721.333333pt;}
.x13a_c00467{left:722.533333pt;}
.x118_c00467{left:724.000000pt;}
.xf2_c00467{left:725.066667pt;}
.x137_c00467{left:726.933333pt;}
.xd4_c00467{left:727.866667pt;}
.x115_c00467{left:729.066667pt;}
.xe0_c00467{left:731.333333pt;}
.x14d_c00467{left:732.666667pt;}
.x102_c00467{left:733.733333pt;}
.xee_c00467{left:734.800000pt;}
.xbf_c00467{left:737.200000pt;}
.xd7_c00467{left:738.533333pt;}
.xf8_c00467{left:740.000000pt;}
.xf6_c00467{left:741.333333pt;}
.xb8_c00467{left:742.266667pt;}
.x10c_c00467{left:744.266667pt;}
.x130_c00467{left:745.733333pt;}
.x147_c00467{left:749.200000pt;}
.xf9_c00467{left:750.266667pt;}
.x133_c00467{left:751.866667pt;}
.xef_c00467{left:755.333333pt;}
.x123_c00467{left:757.733333pt;}
.xe1_c00467{left:758.800000pt;}
.x11f_c00467{left:760.133333pt;}
.x11c_c00467{left:761.866667pt;}
.xfa_c00467{left:763.333333pt;}
.xc5_c00467{left:764.666667pt;}
.x12c_c00467{left:766.000000pt;}
.x103_c00467{left:767.333333pt;}
.xd0_c00467{left:769.466667pt;}
.xb9_c00467{left:771.333333pt;}
.x148_c00467{left:774.266667pt;}
.x139_c00467{left:775.733333pt;}
.x116_c00467{left:776.800000pt;}
.x13c_c00467{left:778.133333pt;}
.xb0_c00467{left:779.866667pt;}
.xc0_c00467{left:781.733333pt;}
.x129_c00467{left:785.600000pt;}
.x111_c00467{left:787.866667pt;}
}





/* 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_c00468 {
    display:none;
  }
  .loading-indicator_c00468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00468 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_c00468 { 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_c00468" -> "#page-container .classname_c00468")
 */
.pf_c00468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00468 { /* 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_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00468 { /* 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_c00468 { /* 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_c00468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00468 {overflow:visible;}
  }
}
.c_c00468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00468 { /* 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_c00468:after { /* webkit #35443 */
  content: '';
}
.t_c00468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00468 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 */
}
.__c00468 { /* 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_c00468 { /* info for Javascript */
  display:none;
}
.l_c00468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00468: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_c00468 {
    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_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00468.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_c00468 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00468;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.000000;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;}
.m83_c00468{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m100_c00468{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m107_c00468{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m53_c00468{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m119_c00468{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00468{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.md6_c00468{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md8_c00468{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00468{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.meb_c00468{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m112_c00468{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mae_c00468{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00468{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mee_c00468{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00468{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.me7_c00468{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mc_c00468{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00468{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.me3_c00468{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00468{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m36_c00468{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.me8_c00468{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00468{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00468{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00468{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mea_c00468{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00468{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00468{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m76_c00468{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00468{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m74_c00468{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m78_c00468{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00468{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m105_c00468{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me1_c00468{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m61_c00468{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.md4_c00468{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00468{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00468{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00468{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00468{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m104_c00468{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m65_c00468{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m67_c00468{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00468{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00468{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00468{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00468{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00468{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m9_c00468{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00468{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mba_c00468{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mde_c00468{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.me4_c00468{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma_c00468{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mca_c00468{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mec_c00468{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m111_c00468{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m5_c00468{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00468{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m58_c00468{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6_c00468{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mef_c00468{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m39_c00468{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m106_c00468{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m45_c00468{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00468{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00468{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m75_c00468{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m80_c00468{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00468{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00468{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00468{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m48_c00468{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m109_c00468{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m26_c00468{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mff_c00468{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m93_c00468{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00468{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mda_c00468{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00468{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00468{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00468{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf_c00468{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m77_c00468{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m51_c00468{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m92_c00468{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7_c00468{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00468{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00468{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m118_c00468{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m8_c00468{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00468{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00468{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m68_c00468{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00468{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m29_c00468{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.med_c00468{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00468{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md9_c00468{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00468{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00468{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00468{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m94_c00468{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mb_c00468{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m99_c00468{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00468{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00468{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m18_c00468{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m47_c00468{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00468{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m64_c00468{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m96_c00468{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m72_c00468{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.md_c00468{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00468{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00468{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4_c00468{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00468{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m97_c00468{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m69_c00468{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00468{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me_c00468{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me6_c00468{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m56_c00468{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00468{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m52_c00468{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m15_c00468{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00468{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00468{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00468{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m34_c00468{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m55_c00468{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00468{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00468{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md3_c00468{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00468{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m35_c00468{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m43_c00468{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00468{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m28_c00468{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00468{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m90_c00468{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00468{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00468{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m11_c00468{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m41_c00468{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m85_c00468{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m63_c00468{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.maa_c00468{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m25_c00468{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m13_c00468{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00468{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00468{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00468{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00468{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00468{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m84_c00468{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m46_c00468{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00468{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00468{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m20_c00468{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m21_c00468{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00468{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m81_c00468{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00468{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00468{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00468{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m71_c00468{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00468{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00468{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00468{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00468{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00468{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m23_c00468{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m14_c00468{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m50_c00468{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m108_c00468{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m54_c00468{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mad_c00468{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m49_c00468{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m95_c00468{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m89_c00468{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m88_c00468{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00468{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m32_c00468{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00468{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m59_c00468{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m38_c00468{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00468{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m98_c00468{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00468{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00468{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00468{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m101_c00468{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m37_c00468{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m19_c00468{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m113_c00468{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mac_c00468{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md0_c00468{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m44_c00468{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m87_c00468{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00468{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00468{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m24_c00468{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m91_c00468{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m115_c00468{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m22_c00468{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00468{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m82_c00468{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m17_c00468{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.me0_c00468{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m10_c00468{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00468{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m103_c00468{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m114_c00468{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m70_c00468{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00468{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00468{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m57_c00468{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00468{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00468{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00468{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00468{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00468{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00468{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m27_c00468{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00468{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m12_c00468{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00468{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m73_c00468{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00468{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m31_c00468{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m102_c00468{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00468{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m16_c00468{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.maf_c00468{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mab_c00468{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md1_c00468{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00468{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m60_c00468{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00468{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00468{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00468{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00468{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1_c00468{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00468{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m40_c00468{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m33_c00468{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00468{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00468{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md2_c00468{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00468{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00468{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00468{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00468{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m30_c00468{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m86_c00468{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00468{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m117_c00468{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m3_c00468{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m110_c00468{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m66_c00468{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md7_c00468{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mce_c00468{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m62_c00468{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00468{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00468{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00468{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00468{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.me5_c00468{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m79_c00468{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00468{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m42_c00468{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00468{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00468{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00468{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.md5_c00468{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00468{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m116_c00468{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.me2_c00468{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me9_c00468{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls0_c00468{letter-spacing:0.000000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{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__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00468{word-spacing:0.000000px;}
.ws0_c00468{word-spacing:3.000000px;}
.ws1_c00468{word-spacing:6.117904px;}
.ws7_c00468{word-spacing:6.925754px;}
.ws8_c00468{word-spacing:11.562500px;}
.ws6_c00468{word-spacing:13.027491px;}
.ws2_c00468{word-spacing:24.166667px;}
.ws4_c00468{word-spacing:25.714286px;}
.ws5_c00468{word-spacing:40.000000px;}
.ws3_c00468{word-spacing:279.285714px;}
.ws9_c00468{word-spacing:3144.687023px;}
.fc0_c00468{color:transparent;}
.fs4_c00468{font-size:54.000000px;}
.fs2_c00468{font-size:60.000000px;}
.fs1_c00468{font-size:66.000000px;}
.fs3_c00468{font-size:72.000000px;}
.fs0_c00468{font-size:84.000000px;}
.y0_c00468{bottom:0.000000px;}
.y6c_c00468{bottom:179.700000px;}
.y6b_c00468{bottom:195.900000px;}
.y37_c00468{bottom:196.200000px;}
.y6a_c00468{bottom:210.300000px;}
.y36_c00468{bottom:210.600000px;}
.y69_c00468{bottom:224.700000px;}
.y35_c00468{bottom:225.300000px;}
.y34_c00468{bottom:238.950000px;}
.y68_c00468{bottom:239.400000px;}
.y67_c00468{bottom:253.050000px;}
.y33_c00468{bottom:253.350000px;}
.y32_c00468{bottom:267.750000px;}
.y66_c00468{bottom:268.200000px;}
.y65_c00468{bottom:281.850000px;}
.y31_c00468{bottom:282.150000px;}
.y64_c00468{bottom:295.950000px;}
.y30_c00468{bottom:296.250000px;}
.y2f_c00468{bottom:310.350000px;}
.y2e_c00468{bottom:324.750000px;}
.y2d_c00468{bottom:339.150000px;}
.y63_c00468{bottom:347.100000px;}
.y2c_c00468{bottom:353.250000px;}
.y62_c00468{bottom:354.600000px;}
.y2b_c00468{bottom:367.650000px;}
.y61_c00468{bottom:380.400000px;}
.y2a_c00468{bottom:382.050000px;}
.y29_c00468{bottom:396.450000px;}
.y60_c00468{bottom:398.100000px;}
.y28_c00468{bottom:411.150000px;}
.y5f_c00468{bottom:433.050000px;}
.y5e_c00468{bottom:441.600000px;}
.y27_c00468{bottom:447.900000px;}
.y5d_c00468{bottom:459.300000px;}
.y26_c00468{bottom:465.900000px;}
.y5c_c00468{bottom:477.300000px;}
.y25_c00468{bottom:483.150000px;}
.y5b_c00468{bottom:495.000000px;}
.y24_c00468{bottom:500.850000px;}
.y5a_c00468{bottom:513.000000px;}
.y23_c00468{bottom:518.850000px;}
.y59_c00468{bottom:530.700000px;}
.y22_c00468{bottom:536.550000px;}
.y58_c00468{bottom:548.400000px;}
.y21_c00468{bottom:554.250000px;}
.y57_c00468{bottom:566.400000px;}
.y20_c00468{bottom:571.950000px;}
.y56_c00468{bottom:584.100000px;}
.y1f_c00468{bottom:589.650000px;}
.y55_c00468{bottom:602.100000px;}
.y1e_c00468{bottom:612.000000px;}
.y54_c00468{bottom:619.800000px;}
.y1d_c00468{bottom:629.700000px;}
.y53_c00468{bottom:637.500000px;}
.y1c_c00468{bottom:651.150000px;}
.y52_c00468{bottom:662.700000px;}
.y1b_c00468{bottom:669.150000px;}
.y51_c00468{bottom:676.800000px;}
.y1a_c00468{bottom:686.850000px;}
.y50_c00468{bottom:691.050000px;}
.y19_c00468{bottom:704.100000px;}
.y4f_c00468{bottom:705.150000px;}
.y4e_c00468{bottom:719.850000px;}
.y18_c00468{bottom:726.450000px;}
.y4d_c00468{bottom:733.950000px;}
.y17_c00468{bottom:744.150000px;}
.y4c_c00468{bottom:748.050000px;}
.y4b_c00468{bottom:762.000000px;}
.y16_c00468{bottom:765.600000px;}
.y4a_c00468{bottom:776.400000px;}
.y15_c00468{bottom:783.600000px;}
.y49_c00468{bottom:792.300000px;}
.y14_c00468{bottom:801.300000px;}
.y48_c00468{bottom:811.050000px;}
.y13_c00468{bottom:819.000000px;}
.y47_c00468{bottom:829.050000px;}
.y12_c00468{bottom:836.700000px;}
.y46_c00468{bottom:847.050000px;}
.y11_c00468{bottom:853.950000px;}
.y45_c00468{bottom:864.750000px;}
.y10_c00468{bottom:872.250000px;}
.y44_c00468{bottom:882.000000px;}
.yf_c00468{bottom:889.500000px;}
.y43_c00468{bottom:899.700000px;}
.ye_c00468{bottom:907.500000px;}
.yd_c00468{bottom:925.200000px;}
.y42_c00468{bottom:925.950000px;}
.yc_c00468{bottom:942.900000px;}
.y41_c00468{bottom:943.800000px;}
.yb_c00468{bottom:960.600000px;}
.y40_c00468{bottom:961.500000px;}
.ya_c00468{bottom:978.600000px;}
.y3f_c00468{bottom:979.200000px;}
.y9_c00468{bottom:995.850000px;}
.y3e_c00468{bottom:996.900000px;}
.y8_c00468{bottom:1013.850000px;}
.y3d_c00468{bottom:1014.900000px;}
.y7_c00468{bottom:1031.550000px;}
.y3c_c00468{bottom:1032.600000px;}
.y6_c00468{bottom:1049.250000px;}
.y3b_c00468{bottom:1054.500000px;}
.y5_c00468{bottom:1067.250000px;}
.y4_c00468{bottom:1084.950000px;}
.y3a_c00468{bottom:1085.400000px;}
.y39_c00468{bottom:1098.000000px;}
.y3_c00468{bottom:1102.650000px;}
.y38_c00468{bottom:1103.100000px;}
.y2_c00468{bottom:1120.650000px;}
.y1_c00468{bottom:1164.600000px;}
.h6_c00468{height:54.000000px;}
.h4_c00468{height:60.000000px;}
.h3_c00468{height:66.000000px;}
.h5_c00468{height:72.000000px;}
.h2_c00468{height:84.000000px;}
.h1_c00468{height:1271.250000px;}
.h0_c00468{height:1271.519990px;}
.w0_c00468{width:958.320007px;}
.w1_c00468{width:958.500000px;}
.x0_c00468{left:0.000000px;}
.x3_c00468{left:92.100000px;}
.x91_c00468{left:93.600000px;}
.x7d_c00468{left:95.100000px;}
.x5f_c00468{left:101.850000px;}
.xa7_c00468{left:105.450000px;}
.x8d_c00468{left:107.700000px;}
.x1b_c00468{left:108.750000px;}
.xa_c00468{left:109.800000px;}
.x49_c00468{left:110.850000px;}
.x76_c00468{left:112.050000px;}
.x7f_c00468{left:113.400000px;}
.x92_c00468{left:118.500000px;}
.xa3_c00468{left:123.750000px;}
.x3c_c00468{left:126.150000px;}
.x93_c00468{left:128.100000px;}
.x25_c00468{left:129.600000px;}
.xb_c00468{left:131.400000px;}
.x1c_c00468{left:132.900000px;}
.x83_c00468{left:135.300000px;}
.x99_c00468{left:140.550000px;}
.x43_c00468{left:141.750000px;}
.x22_c00468{left:144.750000px;}
.x60_c00468{left:145.800000px;}
.xc_c00468{left:147.600000px;}
.x1d_c00468{left:149.400000px;}
.x87_c00468{left:151.350000px;}
.x4a_c00468{left:153.300000px;}
.x69_c00468{left:155.250000px;}
.x13_c00468{left:156.450000px;}
.x79_c00468{left:157.800000px;}
.x2c_c00468{left:159.750000px;}
.x50_c00468{left:161.700000px;}
.x94_c00468{left:164.400000px;}
.x26_c00468{left:165.900000px;}
.x7a_c00468{left:167.400000px;}
.x7e_c00468{left:169.200000px;}
.x36_c00468{left:170.700000px;}
.x4_c00468{left:173.100000px;}
.x6e_c00468{left:175.200000px;}
.x2d_c00468{left:176.250000px;}
.x97_c00468{left:178.050000px;}
.x31_c00468{left:179.250000px;}
.x61_c00468{left:181.050000px;}
.x37_c00468{left:182.550000px;}
.x51_c00468{left:184.350000px;}
.x9a_c00468{left:185.550000px;}
.x82_c00468{left:187.050000px;}
.x8b_c00468{left:189.450000px;}
.xd_c00468{left:191.100000px;}
.x14_c00468{left:193.200000px;}
.x44_c00468{left:198.000000px;}
.x4b_c00468{left:200.400000px;}
.xe_c00468{left:201.900000px;}
.x55_c00468{left:206.250000px;}
.x9e_c00468{left:207.300000px;}
.x2e_c00468{left:210.450000px;}
.x5_c00468{left:211.950000px;}
.x27_c00468{left:213.000000px;}
.x70_c00468{left:214.650000px;}
.x84_c00468{left:216.600000px;}
.x6f_c00468{left:218.850000px;}
.x5c_c00468{left:220.200000px;}
.x73_c00468{left:221.550000px;}
.x88_c00468{left:222.600000px;}
.x1e_c00468{left:225.000000px;}
.x8f_c00468{left:226.050000px;}
.xf_c00468{left:227.400000px;}
.x28_c00468{left:230.250000px;}
.x40_c00468{left:232.050000px;}
.x8e_c00468{left:234.150000px;}
.x6a_c00468{left:236.250000px;}
.x80_c00468{left:238.350000px;}
.x15_c00468{left:241.500000px;}
.x56_c00468{left:243.000000px;}
.x45_c00468{left:245.550000px;}
.x52_c00468{left:246.900000px;}
.x5d_c00468{left:248.250000px;}
.x95_c00468{left:251.100000px;}
.x57_c00468{left:252.300000px;}
.x68_c00468{left:253.650000px;}
.x90_c00468{left:255.600000px;}
.x81_c00468{left:256.650000px;}
.x6b_c00468{left:258.600000px;}
.x3d_c00468{left:261.900000px;}
.x6_c00468{left:263.400000px;}
.x62_c00468{left:266.100000px;}
.xa6_c00468{left:268.500000px;}
.xa4_c00468{left:269.850000px;}
.x98_c00468{left:272.250000px;}
.x1f_c00468{left:273.300000px;}
.x4c_c00468{left:275.250000px;}
.x32_c00468{left:276.750000px;}
.x29_c00468{left:278.100000px;}
.xa0_c00468{left:279.750000px;}
.x38_c00468{left:281.250000px;}
.x53_c00468{left:283.200000px;}
.xa1_c00468{left:285.300000px;}
.x16_c00468{left:286.500000px;}
.x46_c00468{left:288.000000px;}
.x39_c00468{left:289.500000px;}
.x6c_c00468{left:292.500000px;}
.x5e_c00468{left:294.300000px;}
.x10_c00468{left:295.500000px;}
.x17_c00468{left:297.300000px;}
.x2a_c00468{left:298.650000px;}
.x9f_c00468{left:301.650000px;}
.x85_c00468{left:303.000000px;}
.x77_c00468{left:305.100000px;}
.x7_c00468{left:308.400000px;}
.x71_c00468{left:310.350000px;}
.x8c_c00468{left:312.150000px;}
.x3a_c00468{left:318.000000px;}
.x65_c00468{left:319.500000px;}
.x41_c00468{left:321.000000px;}
.x58_c00468{left:324.000000px;}
.x11_c00468{left:325.350000px;}
.x64_c00468{left:327.000000px;}
.x2b_c00468{left:328.950000px;}
.x4d_c00468{left:330.300000px;}
.x18_c00468{left:332.250000px;}
.x1_c00468{left:335.550000px;}
.x78_c00468{left:337.800000px;}
.xa2_c00468{left:339.000000px;}
.x59_c00468{left:340.500000px;}
.x33_c00468{left:343.350000px;}
.x23_c00468{left:344.850000px;}
.x7b_c00468{left:347.100000px;}
.x47_c00468{left:349.500000px;}
.x3b_c00468{left:351.900000px;}
.x4e_c00468{left:352.950000px;}
.x20_c00468{left:354.600000px;}
.x63_c00468{left:355.800000px;}
.x9c_c00468{left:358.650000px;}
.x8_c00468{left:360.600000px;}
.x5a_c00468{left:363.600000px;}
.x6d_c00468{left:365.250000px;}
.x66_c00468{left:367.050000px;}
.x34_c00468{left:368.550000px;}
.x9b_c00468{left:372.300000px;}
.x24_c00468{left:374.400000px;}
.x74_c00468{left:375.600000px;}
.x19_c00468{left:378.000000px;}
.x2f_c00468{left:380.100000px;}
.x89_c00468{left:381.150000px;}
.x54_c00468{left:384.000000px;}
.x48_c00468{left:387.300000px;}
.x3e_c00468{left:390.000000px;}
.x12_c00468{left:391.650000px;}
.x1a_c00468{left:393.150000px;}
.x42_c00468{left:394.500000px;}
.x9_c00468{left:396.300000px;}
.x30_c00468{left:397.800000px;}
.x75_c00468{left:399.300000px;}
.x86_c00468{left:400.500000px;}
.x67_c00468{left:402.000000px;}
.xa5_c00468{left:403.200000px;}
.x4f_c00468{left:404.400000px;}
.x35_c00468{left:406.050000px;}
.x3f_c00468{left:407.250000px;}
.x21_c00468{left:409.350000px;}
.x72_c00468{left:411.150000px;}
.x9d_c00468{left:416.100000px;}
.x7c_c00468{left:418.050000px;}
.x5b_c00468{left:421.950000px;}
.x96_c00468{left:423.600000px;}
.x8a_c00468{left:425.850000px;}
.xb8_c00468{left:446.100000px;}
.xa8_c00468{left:447.450000px;}
.x11d_c00468{left:449.250000px;}
.xe3_c00468{left:460.500000px;}
.x104_c00468{left:461.550000px;}
.x13f_c00468{left:462.600000px;}
.xad_c00468{left:464.400000px;}
.xde_c00468{left:465.450000px;}
.x121_c00468{left:466.800000px;}
.x14b_c00468{left:473.100000px;}
.x109_c00468{left:476.250000px;}
.x115_c00468{left:477.750000px;}
.xbf_c00468{left:482.550000px;}
.x140_c00468{left:484.200000px;}
.x2_c00468{left:485.700000px;}
.x132_c00468{left:487.500000px;}
.x12a_c00468{left:488.550000px;}
.xb9_c00468{left:490.050000px;}
.xc0_c00468{left:491.250000px;}
.x10d_c00468{left:493.050000px;}
.xae_c00468{left:495.000000px;}
.x111_c00468{left:498.150000px;}
.xd1_c00468{left:499.650000px;}
.x139_c00468{left:501.150000px;}
.xe4_c00468{left:502.200000px;}
.x141_c00468{left:503.700000px;}
.x12b_c00468{left:505.050000px;}
.xf2_c00468{left:506.250000px;}
.xff_c00468{left:508.950000px;}
.xeb_c00468{left:511.050000px;}
.xa9_c00468{left:514.050000px;}
.xdf_c00468{left:516.150000px;}
.x10a_c00468{left:517.200000px;}
.x136_c00468{left:518.700000px;}
.xaf_c00468{left:521.250000px;}
.xd2_c00468{left:522.750000px;}
.xd8_c00468{left:524.250000px;}
.xba_c00468{left:525.300000px;}
.xc1_c00468{left:527.250000px;}
.xec_c00468{left:530.550000px;}
.x133_c00468{left:531.750000px;}
.xc6_c00468{left:532.950000px;}
.x11e_c00468{left:534.900000px;}
.xaa_c00468{left:536.400000px;}
.xcc_c00468{left:538.800000px;}
.xf8_c00468{left:540.900000px;}
.xfc_c00468{left:543.900000px;}
.x146_c00468{left:547.800000px;}
.x11b_c00468{left:549.300000px;}
.xd3_c00468{left:550.500000px;}
.x122_c00468{left:551.850000px;}
.xe5_c00468{left:553.950000px;}
.x147_c00468{left:556.050000px;}
.xed_c00468{left:557.550000px;}
.xb6_c00468{left:559.350000px;}
.x123_c00468{left:560.700000px;}
.x13a_c00468{left:563.550000px;}
.xe0_c00468{left:564.750000px;}
.x10b_c00468{left:566.100000px;}
.xb0_c00468{left:567.300000px;}
.x149_c00468{left:569.850000px;}
.xd9_c00468{left:571.050000px;}
.xf3_c00468{left:572.100000px;}
.xbb_c00468{left:573.150000px;}
.xc7_c00468{left:575.400000px;}
.x12c_c00468{left:577.350000px;}
.xcd_c00468{left:578.400000px;}
.x116_c00468{left:581.400000px;}
.xc2_c00468{left:583.350000px;}
.xe6_c00468{left:586.050000px;}
.x144_c00468{left:587.400000px;}
.xf9_c00468{left:589.800000px;}
.xf4_c00468{left:590.850000px;}
.xee_c00468{left:595.050000px;}
.xb1_c00468{left:596.100000px;}
.xce_c00468{left:597.150000px;}
.x14c_c00468{left:598.800000px;}
.x117_c00468{left:600.450000px;}
.xc8_c00468{left:603.900000px;}
.xd4_c00468{left:606.300000px;}
.xab_c00468{left:608.100000px;}
.x148_c00468{left:609.150000px;}
.xda_c00468{left:611.700000px;}
.xb2_c00468{left:613.050000px;}
.x131_c00468{left:615.450000px;}
.xe7_c00468{left:616.950000px;}
.x100_c00468{left:621.300000px;}
.x10c_c00468{left:622.500000px;}
.xf5_c00468{left:624.000000px;}
.x130_c00468{left:627.450000px;}
.x13c_c00468{left:628.650000px;}
.xdb_c00468{left:629.700000px;}
.xcf_c00468{left:632.100000px;}
.xb7_c00468{left:633.900000px;}
.xfa_c00468{left:635.550000px;}
.x10e_c00468{left:636.750000px;}
.x113_c00468{left:639.300000px;}
.x14a_c00468{left:642.150000px;}
.xb3_c00468{left:643.650000px;}
.xef_c00468{left:646.950000px;}
.x118_c00468{left:648.300000px;}
.xc9_c00468{left:650.400000px;}
.x13b_c00468{left:651.450000px;}
.xac_c00468{left:652.800000px;}
.xe1_c00468{left:654.150000px;}
.x105_c00468{left:656.250000px;}
.xfd_c00468{left:657.450000px;}
.x11f_c00468{left:659.400000px;}
.x12d_c00468{left:661.950000px;}
.x119_c00468{left:663.000000px;}
.xe8_c00468{left:664.050000px;}
.xdc_c00468{left:666.000000px;}
.x134_c00468{left:667.800000px;}
.xc3_c00468{left:669.000000px;}
.x11a_c00468{left:670.200000px;}
.xd5_c00468{left:671.400000px;}
.x114_c00468{left:673.800000px;}
.x127_c00468{left:675.450000px;}
.x101_c00468{left:677.850000px;}
.x120_c00468{left:682.500000px;}
.xbc_c00468{left:683.700000px;}
.xb4_c00468{left:685.800000px;}
.xf6_c00468{left:688.500000px;}
.xc4_c00468{left:690.300000px;}
.x10f_c00468{left:692.550000px;}
.xbd_c00468{left:694.200000px;}
.x142_c00468{left:695.700000px;}
.xdd_c00468{left:699.150000px;}
.x128_c00468{left:700.650000px;}
.x102_c00468{left:702.750000px;}
.xd6_c00468{left:704.550000px;}
.xfe_c00468{left:708.600000px;}
.x112_c00468{left:711.300000px;}
.x106_c00468{left:712.350000px;}
.xca_c00468{left:715.200000px;}
.x12e_c00468{left:716.250000px;}
.xfb_c00468{left:719.700000px;}
.xd0_c00468{left:721.800000px;}
.xf0_c00468{left:723.300000px;}
.x124_c00468{left:726.900000px;}
.xd7_c00468{left:730.500000px;}
.x103_c00468{left:733.350000px;}
.x107_c00468{left:734.700000px;}
.x11c_c00468{left:736.200000px;}
.xbe_c00468{left:738.450000px;}
.xf1_c00468{left:739.500000px;}
.x110_c00468{left:741.150000px;}
.xe9_c00468{left:742.500000px;}
.x125_c00468{left:743.850000px;}
.x129_c00468{left:744.900000px;}
.x145_c00468{left:750.300000px;}
.x137_c00468{left:751.500000px;}
.xea_c00468{left:754.050000px;}
.xe2_c00468{left:756.600000px;}
.x12f_c00468{left:760.200000px;}
.x13e_c00468{left:761.250000px;}
.x135_c00468{left:762.900000px;}
.xcb_c00468{left:765.600000px;}
.xb5_c00468{left:767.100000px;}
.x108_c00468{left:769.200000px;}
.x143_c00468{left:772.350000px;}
.x13d_c00468{left:773.400000px;}
.xc5_c00468{left:776.700000px;}
.xf7_c00468{left:777.750000px;}
.x126_c00468{left:780.150000px;}
.x138_c00468{left:792.900000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.wsa_c00468{word-spacing:0.000000pt;}
.ws0_c00468{word-spacing:2.666667pt;}
.ws1_c00468{word-spacing:5.438137pt;}
.ws7_c00468{word-spacing:6.156226pt;}
.ws8_c00468{word-spacing:10.277778pt;}
.ws6_c00468{word-spacing:11.579992pt;}
.ws2_c00468{word-spacing:21.481481pt;}
.ws4_c00468{word-spacing:22.857143pt;}
.ws5_c00468{word-spacing:35.555556pt;}
.ws3_c00468{word-spacing:248.253968pt;}
.ws9_c00468{word-spacing:2795.277354pt;}
.fs4_c00468{font-size:48.000000pt;}
.fs2_c00468{font-size:53.333333pt;}
.fs1_c00468{font-size:58.666667pt;}
.fs3_c00468{font-size:64.000000pt;}
.fs0_c00468{font-size:74.666667pt;}
.y0_c00468{bottom:0.000000pt;}
.y6c_c00468{bottom:159.733333pt;}
.y6b_c00468{bottom:174.133333pt;}
.y37_c00468{bottom:174.400000pt;}
.y6a_c00468{bottom:186.933333pt;}
.y36_c00468{bottom:187.200000pt;}
.y69_c00468{bottom:199.733333pt;}
.y35_c00468{bottom:200.266667pt;}
.y34_c00468{bottom:212.400000pt;}
.y68_c00468{bottom:212.800000pt;}
.y67_c00468{bottom:224.933333pt;}
.y33_c00468{bottom:225.200000pt;}
.y32_c00468{bottom:238.000000pt;}
.y66_c00468{bottom:238.400000pt;}
.y65_c00468{bottom:250.533333pt;}
.y31_c00468{bottom:250.800000pt;}
.y64_c00468{bottom:263.066667pt;}
.y30_c00468{bottom:263.333333pt;}
.y2f_c00468{bottom:275.866667pt;}
.y2e_c00468{bottom:288.666667pt;}
.y2d_c00468{bottom:301.466667pt;}
.y63_c00468{bottom:308.533333pt;}
.y2c_c00468{bottom:314.000000pt;}
.y62_c00468{bottom:315.200000pt;}
.y2b_c00468{bottom:326.800000pt;}
.y61_c00468{bottom:338.133333pt;}
.y2a_c00468{bottom:339.600000pt;}
.y29_c00468{bottom:352.400000pt;}
.y60_c00468{bottom:353.866667pt;}
.y28_c00468{bottom:365.466667pt;}
.y5f_c00468{bottom:384.933333pt;}
.y5e_c00468{bottom:392.533333pt;}
.y27_c00468{bottom:398.133333pt;}
.y5d_c00468{bottom:408.266667pt;}
.y26_c00468{bottom:414.133333pt;}
.y5c_c00468{bottom:424.266667pt;}
.y25_c00468{bottom:429.466667pt;}
.y5b_c00468{bottom:440.000000pt;}
.y24_c00468{bottom:445.200000pt;}
.y5a_c00468{bottom:456.000000pt;}
.y23_c00468{bottom:461.200000pt;}
.y59_c00468{bottom:471.733333pt;}
.y22_c00468{bottom:476.933333pt;}
.y58_c00468{bottom:487.466667pt;}
.y21_c00468{bottom:492.666667pt;}
.y57_c00468{bottom:503.466667pt;}
.y20_c00468{bottom:508.400000pt;}
.y56_c00468{bottom:519.200000pt;}
.y1f_c00468{bottom:524.133333pt;}
.y55_c00468{bottom:535.200000pt;}
.y1e_c00468{bottom:544.000000pt;}
.y54_c00468{bottom:550.933333pt;}
.y1d_c00468{bottom:559.733333pt;}
.y53_c00468{bottom:566.666667pt;}
.y1c_c00468{bottom:578.800000pt;}
.y52_c00468{bottom:589.066667pt;}
.y1b_c00468{bottom:594.800000pt;}
.y51_c00468{bottom:601.600000pt;}
.y1a_c00468{bottom:610.533333pt;}
.y50_c00468{bottom:614.266667pt;}
.y19_c00468{bottom:625.866667pt;}
.y4f_c00468{bottom:626.800000pt;}
.y4e_c00468{bottom:639.866667pt;}
.y18_c00468{bottom:645.733333pt;}
.y4d_c00468{bottom:652.400000pt;}
.y17_c00468{bottom:661.466667pt;}
.y4c_c00468{bottom:664.933333pt;}
.y4b_c00468{bottom:677.333333pt;}
.y16_c00468{bottom:680.533333pt;}
.y4a_c00468{bottom:690.133333pt;}
.y15_c00468{bottom:696.533333pt;}
.y49_c00468{bottom:704.266667pt;}
.y14_c00468{bottom:712.266667pt;}
.y48_c00468{bottom:720.933333pt;}
.y13_c00468{bottom:728.000000pt;}
.y47_c00468{bottom:736.933333pt;}
.y12_c00468{bottom:743.733333pt;}
.y46_c00468{bottom:752.933333pt;}
.y11_c00468{bottom:759.066667pt;}
.y45_c00468{bottom:768.666667pt;}
.y10_c00468{bottom:775.333333pt;}
.y44_c00468{bottom:784.000000pt;}
.yf_c00468{bottom:790.666667pt;}
.y43_c00468{bottom:799.733333pt;}
.ye_c00468{bottom:806.666667pt;}
.yd_c00468{bottom:822.400000pt;}
.y42_c00468{bottom:823.066667pt;}
.yc_c00468{bottom:838.133333pt;}
.y41_c00468{bottom:838.933333pt;}
.yb_c00468{bottom:853.866667pt;}
.y40_c00468{bottom:854.666667pt;}
.ya_c00468{bottom:869.866667pt;}
.y3f_c00468{bottom:870.400000pt;}
.y9_c00468{bottom:885.200000pt;}
.y3e_c00468{bottom:886.133333pt;}
.y8_c00468{bottom:901.200000pt;}
.y3d_c00468{bottom:902.133333pt;}
.y7_c00468{bottom:916.933333pt;}
.y3c_c00468{bottom:917.866667pt;}
.y6_c00468{bottom:932.666667pt;}
.y3b_c00468{bottom:937.333333pt;}
.y5_c00468{bottom:948.666667pt;}
.y4_c00468{bottom:964.400000pt;}
.y3a_c00468{bottom:964.800000pt;}
.y39_c00468{bottom:976.000000pt;}
.y3_c00468{bottom:980.133333pt;}
.y38_c00468{bottom:980.533333pt;}
.y2_c00468{bottom:996.133333pt;}
.y1_c00468{bottom:1035.200000pt;}
.h6_c00468{height:48.000000pt;}
.h4_c00468{height:53.333333pt;}
.h3_c00468{height:58.666667pt;}
.h5_c00468{height:64.000000pt;}
.h2_c00468{height:74.666667pt;}
.h1_c00468{height:1130.000000pt;}
.h0_c00468{height:1130.239991pt;}
.w0_c00468{width:851.840007pt;}
.w1_c00468{width:852.000000pt;}
.x0_c00468{left:0.000000pt;}
.x3_c00468{left:81.866667pt;}
.x91_c00468{left:83.200000pt;}
.x7d_c00468{left:84.533333pt;}
.x5f_c00468{left:90.533333pt;}
.xa7_c00468{left:93.733333pt;}
.x8d_c00468{left:95.733333pt;}
.x1b_c00468{left:96.666667pt;}
.xa_c00468{left:97.600000pt;}
.x49_c00468{left:98.533333pt;}
.x76_c00468{left:99.600000pt;}
.x7f_c00468{left:100.800000pt;}
.x92_c00468{left:105.333333pt;}
.xa3_c00468{left:110.000000pt;}
.x3c_c00468{left:112.133333pt;}
.x93_c00468{left:113.866667pt;}
.x25_c00468{left:115.200000pt;}
.xb_c00468{left:116.800000pt;}
.x1c_c00468{left:118.133333pt;}
.x83_c00468{left:120.266667pt;}
.x99_c00468{left:124.933333pt;}
.x43_c00468{left:126.000000pt;}
.x22_c00468{left:128.666667pt;}
.x60_c00468{left:129.600000pt;}
.xc_c00468{left:131.200000pt;}
.x1d_c00468{left:132.800000pt;}
.x87_c00468{left:134.533333pt;}
.x4a_c00468{left:136.266667pt;}
.x69_c00468{left:138.000000pt;}
.x13_c00468{left:139.066667pt;}
.x79_c00468{left:140.266667pt;}
.x2c_c00468{left:142.000000pt;}
.x50_c00468{left:143.733333pt;}
.x94_c00468{left:146.133333pt;}
.x26_c00468{left:147.466667pt;}
.x7a_c00468{left:148.800000pt;}
.x7e_c00468{left:150.400000pt;}
.x36_c00468{left:151.733333pt;}
.x4_c00468{left:153.866667pt;}
.x6e_c00468{left:155.733333pt;}
.x2d_c00468{left:156.666667pt;}
.x97_c00468{left:158.266667pt;}
.x31_c00468{left:159.333333pt;}
.x61_c00468{left:160.933333pt;}
.x37_c00468{left:162.266667pt;}
.x51_c00468{left:163.866667pt;}
.x9a_c00468{left:164.933333pt;}
.x82_c00468{left:166.266667pt;}
.x8b_c00468{left:168.400000pt;}
.xd_c00468{left:169.866667pt;}
.x14_c00468{left:171.733333pt;}
.x44_c00468{left:176.000000pt;}
.x4b_c00468{left:178.133333pt;}
.xe_c00468{left:179.466667pt;}
.x55_c00468{left:183.333333pt;}
.x9e_c00468{left:184.266667pt;}
.x2e_c00468{left:187.066667pt;}
.x5_c00468{left:188.400000pt;}
.x27_c00468{left:189.333333pt;}
.x70_c00468{left:190.800000pt;}
.x84_c00468{left:192.533333pt;}
.x6f_c00468{left:194.533333pt;}
.x5c_c00468{left:195.733333pt;}
.x73_c00468{left:196.933333pt;}
.x88_c00468{left:197.866667pt;}
.x1e_c00468{left:200.000000pt;}
.x8f_c00468{left:200.933333pt;}
.xf_c00468{left:202.133333pt;}
.x28_c00468{left:204.666667pt;}
.x40_c00468{left:206.266667pt;}
.x8e_c00468{left:208.133333pt;}
.x6a_c00468{left:210.000000pt;}
.x80_c00468{left:211.866667pt;}
.x15_c00468{left:214.666667pt;}
.x56_c00468{left:216.000000pt;}
.x45_c00468{left:218.266667pt;}
.x52_c00468{left:219.466667pt;}
.x5d_c00468{left:220.666667pt;}
.x95_c00468{left:223.200000pt;}
.x57_c00468{left:224.266667pt;}
.x68_c00468{left:225.466667pt;}
.x90_c00468{left:227.200000pt;}
.x81_c00468{left:228.133333pt;}
.x6b_c00468{left:229.866667pt;}
.x3d_c00468{left:232.800000pt;}
.x6_c00468{left:234.133333pt;}
.x62_c00468{left:236.533333pt;}
.xa6_c00468{left:238.666667pt;}
.xa4_c00468{left:239.866667pt;}
.x98_c00468{left:242.000000pt;}
.x1f_c00468{left:242.933333pt;}
.x4c_c00468{left:244.666667pt;}
.x32_c00468{left:246.000000pt;}
.x29_c00468{left:247.200000pt;}
.xa0_c00468{left:248.666667pt;}
.x38_c00468{left:250.000000pt;}
.x53_c00468{left:251.733333pt;}
.xa1_c00468{left:253.600000pt;}
.x16_c00468{left:254.666667pt;}
.x46_c00468{left:256.000000pt;}
.x39_c00468{left:257.333333pt;}
.x6c_c00468{left:260.000000pt;}
.x5e_c00468{left:261.600000pt;}
.x10_c00468{left:262.666667pt;}
.x17_c00468{left:264.266667pt;}
.x2a_c00468{left:265.466667pt;}
.x9f_c00468{left:268.133333pt;}
.x85_c00468{left:269.333333pt;}
.x77_c00468{left:271.200000pt;}
.x7_c00468{left:274.133333pt;}
.x71_c00468{left:275.866667pt;}
.x8c_c00468{left:277.466667pt;}
.x3a_c00468{left:282.666667pt;}
.x65_c00468{left:284.000000pt;}
.x41_c00468{left:285.333333pt;}
.x58_c00468{left:288.000000pt;}
.x11_c00468{left:289.200000pt;}
.x64_c00468{left:290.666667pt;}
.x2b_c00468{left:292.400000pt;}
.x4d_c00468{left:293.600000pt;}
.x18_c00468{left:295.333333pt;}
.x1_c00468{left:298.266667pt;}
.x78_c00468{left:300.266667pt;}
.xa2_c00468{left:301.333333pt;}
.x59_c00468{left:302.666667pt;}
.x33_c00468{left:305.200000pt;}
.x23_c00468{left:306.533333pt;}
.x7b_c00468{left:308.533333pt;}
.x47_c00468{left:310.666667pt;}
.x3b_c00468{left:312.800000pt;}
.x4e_c00468{left:313.733333pt;}
.x20_c00468{left:315.200000pt;}
.x63_c00468{left:316.266667pt;}
.x9c_c00468{left:318.800000pt;}
.x8_c00468{left:320.533333pt;}
.x5a_c00468{left:323.200000pt;}
.x6d_c00468{left:324.666667pt;}
.x66_c00468{left:326.266667pt;}
.x34_c00468{left:327.600000pt;}
.x9b_c00468{left:330.933333pt;}
.x24_c00468{left:332.800000pt;}
.x74_c00468{left:333.866667pt;}
.x19_c00468{left:336.000000pt;}
.x2f_c00468{left:337.866667pt;}
.x89_c00468{left:338.800000pt;}
.x54_c00468{left:341.333333pt;}
.x48_c00468{left:344.266667pt;}
.x3e_c00468{left:346.666667pt;}
.x12_c00468{left:348.133333pt;}
.x1a_c00468{left:349.466667pt;}
.x42_c00468{left:350.666667pt;}
.x9_c00468{left:352.266667pt;}
.x30_c00468{left:353.600000pt;}
.x75_c00468{left:354.933333pt;}
.x86_c00468{left:356.000000pt;}
.x67_c00468{left:357.333333pt;}
.xa5_c00468{left:358.400000pt;}
.x4f_c00468{left:359.466667pt;}
.x35_c00468{left:360.933333pt;}
.x3f_c00468{left:362.000000pt;}
.x21_c00468{left:363.866667pt;}
.x72_c00468{left:365.466667pt;}
.x9d_c00468{left:369.866667pt;}
.x7c_c00468{left:371.600000pt;}
.x5b_c00468{left:375.066667pt;}
.x96_c00468{left:376.533333pt;}
.x8a_c00468{left:378.533333pt;}
.xb8_c00468{left:396.533333pt;}
.xa8_c00468{left:397.733333pt;}
.x11d_c00468{left:399.333333pt;}
.xe3_c00468{left:409.333333pt;}
.x104_c00468{left:410.266667pt;}
.x13f_c00468{left:411.200000pt;}
.xad_c00468{left:412.800000pt;}
.xde_c00468{left:413.733333pt;}
.x121_c00468{left:414.933333pt;}
.x14b_c00468{left:420.533333pt;}
.x109_c00468{left:423.333333pt;}
.x115_c00468{left:424.666667pt;}
.xbf_c00468{left:428.933333pt;}
.x140_c00468{left:430.400000pt;}
.x2_c00468{left:431.733333pt;}
.x132_c00468{left:433.333333pt;}
.x12a_c00468{left:434.266667pt;}
.xb9_c00468{left:435.600000pt;}
.xc0_c00468{left:436.666667pt;}
.x10d_c00468{left:438.266667pt;}
.xae_c00468{left:440.000000pt;}
.x111_c00468{left:442.800000pt;}
.xd1_c00468{left:444.133333pt;}
.x139_c00468{left:445.466667pt;}
.xe4_c00468{left:446.400000pt;}
.x141_c00468{left:447.733333pt;}
.x12b_c00468{left:448.933333pt;}
.xf2_c00468{left:450.000000pt;}
.xff_c00468{left:452.400000pt;}
.xeb_c00468{left:454.266667pt;}
.xa9_c00468{left:456.933333pt;}
.xdf_c00468{left:458.800000pt;}
.x10a_c00468{left:459.733333pt;}
.x136_c00468{left:461.066667pt;}
.xaf_c00468{left:463.333333pt;}
.xd2_c00468{left:464.666667pt;}
.xd8_c00468{left:466.000000pt;}
.xba_c00468{left:466.933333pt;}
.xc1_c00468{left:468.666667pt;}
.xec_c00468{left:471.600000pt;}
.x133_c00468{left:472.666667pt;}
.xc6_c00468{left:473.733333pt;}
.x11e_c00468{left:475.466667pt;}
.xaa_c00468{left:476.800000pt;}
.xcc_c00468{left:478.933333pt;}
.xf8_c00468{left:480.800000pt;}
.xfc_c00468{left:483.466667pt;}
.x146_c00468{left:486.933333pt;}
.x11b_c00468{left:488.266667pt;}
.xd3_c00468{left:489.333333pt;}
.x122_c00468{left:490.533333pt;}
.xe5_c00468{left:492.400000pt;}
.x147_c00468{left:494.266667pt;}
.xed_c00468{left:495.600000pt;}
.xb6_c00468{left:497.200000pt;}
.x123_c00468{left:498.400000pt;}
.x13a_c00468{left:500.933333pt;}
.xe0_c00468{left:502.000000pt;}
.x10b_c00468{left:503.200000pt;}
.xb0_c00468{left:504.266667pt;}
.x149_c00468{left:506.533333pt;}
.xd9_c00468{left:507.600000pt;}
.xf3_c00468{left:508.533333pt;}
.xbb_c00468{left:509.466667pt;}
.xc7_c00468{left:511.466667pt;}
.x12c_c00468{left:513.200000pt;}
.xcd_c00468{left:514.133333pt;}
.x116_c00468{left:516.800000pt;}
.xc2_c00468{left:518.533333pt;}
.xe6_c00468{left:520.933333pt;}
.x144_c00468{left:522.133333pt;}
.xf9_c00468{left:524.266667pt;}
.xf4_c00468{left:525.200000pt;}
.xee_c00468{left:528.933333pt;}
.xb1_c00468{left:529.866667pt;}
.xce_c00468{left:530.800000pt;}
.x14c_c00468{left:532.266667pt;}
.x117_c00468{left:533.733333pt;}
.xc8_c00468{left:536.800000pt;}
.xd4_c00468{left:538.933333pt;}
.xab_c00468{left:540.533333pt;}
.x148_c00468{left:541.466667pt;}
.xda_c00468{left:543.733333pt;}
.xb2_c00468{left:544.933333pt;}
.x131_c00468{left:547.066667pt;}
.xe7_c00468{left:548.400000pt;}
.x100_c00468{left:552.266667pt;}
.x10c_c00468{left:553.333333pt;}
.xf5_c00468{left:554.666667pt;}
.x130_c00468{left:557.733333pt;}
.x13c_c00468{left:558.800000pt;}
.xdb_c00468{left:559.733333pt;}
.xcf_c00468{left:561.866667pt;}
.xb7_c00468{left:563.466667pt;}
.xfa_c00468{left:564.933333pt;}
.x10e_c00468{left:566.000000pt;}
.x113_c00468{left:568.266667pt;}
.x14a_c00468{left:570.800000pt;}
.xb3_c00468{left:572.133333pt;}
.xef_c00468{left:575.066667pt;}
.x118_c00468{left:576.266667pt;}
.xc9_c00468{left:578.133333pt;}
.x13b_c00468{left:579.066667pt;}
.xac_c00468{left:580.266667pt;}
.xe1_c00468{left:581.466667pt;}
.x105_c00468{left:583.333333pt;}
.xfd_c00468{left:584.400000pt;}
.x11f_c00468{left:586.133333pt;}
.x12d_c00468{left:588.400000pt;}
.x119_c00468{left:589.333333pt;}
.xe8_c00468{left:590.266667pt;}
.xdc_c00468{left:592.000000pt;}
.x134_c00468{left:593.600000pt;}
.xc3_c00468{left:594.666667pt;}
.x11a_c00468{left:595.733333pt;}
.xd5_c00468{left:596.800000pt;}
.x114_c00468{left:598.933333pt;}
.x127_c00468{left:600.400000pt;}
.x101_c00468{left:602.533333pt;}
.x120_c00468{left:606.666667pt;}
.xbc_c00468{left:607.733333pt;}
.xb4_c00468{left:609.600000pt;}
.xf6_c00468{left:612.000000pt;}
.xc4_c00468{left:613.600000pt;}
.x10f_c00468{left:615.600000pt;}
.xbd_c00468{left:617.066667pt;}
.x142_c00468{left:618.400000pt;}
.xdd_c00468{left:621.466667pt;}
.x128_c00468{left:622.800000pt;}
.x102_c00468{left:624.666667pt;}
.xd6_c00468{left:626.266667pt;}
.xfe_c00468{left:629.866667pt;}
.x112_c00468{left:632.266667pt;}
.x106_c00468{left:633.200000pt;}
.xca_c00468{left:635.733333pt;}
.x12e_c00468{left:636.666667pt;}
.xfb_c00468{left:639.733333pt;}
.xd0_c00468{left:641.600000pt;}
.xf0_c00468{left:642.933333pt;}
.x124_c00468{left:646.133333pt;}
.xd7_c00468{left:649.333333pt;}
.x103_c00468{left:651.866667pt;}
.x107_c00468{left:653.066667pt;}
.x11c_c00468{left:654.400000pt;}
.xbe_c00468{left:656.400000pt;}
.xf1_c00468{left:657.333333pt;}
.x110_c00468{left:658.800000pt;}
.xe9_c00468{left:660.000000pt;}
.x125_c00468{left:661.200000pt;}
.x129_c00468{left:662.133333pt;}
.x145_c00468{left:666.933333pt;}
.x137_c00468{left:668.000000pt;}
.xea_c00468{left:670.266667pt;}
.xe2_c00468{left:672.533333pt;}
.x12f_c00468{left:675.733333pt;}
.x13e_c00468{left:676.666667pt;}
.x135_c00468{left:678.133333pt;}
.xcb_c00468{left:680.533333pt;}
.xb5_c00468{left:681.866667pt;}
.x108_c00468{left:683.733333pt;}
.x143_c00468{left:686.533333pt;}
.x13d_c00468{left:687.466667pt;}
.xc5_c00468{left:690.400000pt;}
.xf7_c00468{left:691.333333pt;}
.x126_c00468{left:693.466667pt;}
.x138_c00468{left:704.800000pt;}
}





/* 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_c00469 {
    display:none;
  }
  .loading-indicator_c00469.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00469 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_c00469 { 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_c00469" -> "#page-container .classname_c00469")
 */
.pf_c00469 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00469 { /* 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_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00469 { /* 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_c00469 { /* 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_c00469 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00469 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00469 {overflow:visible;}
  }
}
.c_c00469 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00469 { /* 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_c00469:after { /* webkit #35443 */
  content: '';
}
.t_c00469:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00469 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 */
}
.__c00469 { /* 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_c00469 { /* info for Javascript */
  display:none;
}
.l_c00469 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00469 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00469 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00469: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_c00469 {
    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_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00469.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_c00469 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00469;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.000000;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;}
.m10e_c00469{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mab_c00469{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00469{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m28_c00469{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m69_c00469{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m60_c00469{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m26_c00469{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m67_c00469{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m6_c00469{transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00469{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00469{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00469{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m68_c00469{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m59_c00469{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m94_c00469{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00469{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mda_c00469{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.ma_c00469{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m41_c00469{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m75_c00469{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00469{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m37_c00469{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m58_c00469{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00469{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m50_c00469{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00469{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m103_c00469{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m23_c00469{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m7_c00469{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00469{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m13e_c00469{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m57_c00469{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00469{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00469{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m55_c00469{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m63_c00469{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3_c00469{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m104_c00469{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00469{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m25_c00469{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m108_c00469{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m92_c00469{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m91_c00469{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m2_c00469{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m140_c00469{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00469{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00469{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m110_c00469{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m33_c00469{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m139_c00469{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m70_c00469{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00469{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m14_c00469{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00469{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m126_c00469{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00469{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00469{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00469{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00469{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m96_c00469{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00469{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00469{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00469{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m24_c00469{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00469{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m145_c00469{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me5_c00469{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00469{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m105_c00469{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m88_c00469{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8_c00469{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m95_c00469{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m138_c00469{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m36_c00469{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00469{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00469{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m93_c00469{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00469{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mad_c00469{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00469{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00469{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00469{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m78_c00469{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m89_c00469{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m124_c00469{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m77_c00469{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00469{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00469{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00469{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m144_c00469{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00469{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.me_c00469{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m31_c00469{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10_c00469{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00469{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m71_c00469{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m13f_c00469{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m86_c00469{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00469{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mac_c00469{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00469{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00469{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00469{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00469{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00469{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00469{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m125_c00469{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m51_c00469{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00469{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.md3_c00469{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m15_c00469{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.maa_c00469{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m66_c00469{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m106_c00469{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00469{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md8_c00469{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00469{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m22_c00469{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00469{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m42_c00469{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m123_c00469{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00469{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00469{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m54_c00469{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m98_c00469{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m121_c00469{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00469{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m13_c00469{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me2_c00469{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m127_c00469{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m80_c00469{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00469{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00469{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc_c00469{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mba_c00469{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m48_c00469{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m38_c00469{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m133_c00469{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00469{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m119_c00469{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00469{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00469{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m134_c00469{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m97_c00469{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m45_c00469{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.md1_c00469{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00469{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00469{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00469{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00469{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00469{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m85_c00469{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00469{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00469{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00469{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me6_c00469{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m132_c00469{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m107_c00469{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00469{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m90_c00469{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m12_c00469{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00469{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m109_c00469{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m79_c00469{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00469{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00469{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00469{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m29_c00469{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m47_c00469{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00469{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md_c00469{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mae_c00469{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00469{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00469{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m20_c00469{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00469{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m46_c00469{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00469{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m87_c00469{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m130_c00469{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00469{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13a_c00469{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m27_c00469{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00469{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00469{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m40_c00469{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m39_c00469{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m44_c00469{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m142_c00469{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00469{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5_c00469{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00469{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m116_c00469{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m16_c00469{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9_c00469{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mf_c00469{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me4_c00469{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00469{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m17_c00469{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00469{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m122_c00469{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m136_c00469{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m65_c00469{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00469{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00469{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.maf_c00469{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00469{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m117_c00469{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00469{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m118_c00469{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00469{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md6_c00469{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m137_c00469{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00469{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m52_c00469{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00469{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00469{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m101_c00469{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00469{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me9_c00469{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m115_c00469{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00469{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00469{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m21_c00469{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11_c00469{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m53_c00469{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00469{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m56_c00469{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00469{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md9_c00469{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00469{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m43_c00469{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00469{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m120_c00469{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m129_c00469{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00469{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m64_c00469{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m19_c00469{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m32_c00469{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m73_c00469{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00469{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m34_c00469{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md7_c00469{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4_c00469{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00469{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00469{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m143_c00469{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);}
.md4_c00469{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m128_c00469{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00469{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00469{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m62_c00469{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mec_c00469{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m111_c00469{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.meb_c00469{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00469{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me7_c00469{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mee_c00469{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00469{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.md2_c00469{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m35_c00469{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00469{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00469{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m99_c00469{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m61_c00469{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.me1_c00469{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m141_c00469{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m74_c00469{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00469{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m72_c00469{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00469{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00469{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.med_c00469{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mef_c00469{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mea_c00469{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00469{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m30_c00469{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mca_c00469{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m18_c00469{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00469{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.me0_c00469{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m131_c00469{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00469{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00469{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m113_c00469{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m112_c00469{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00469{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00469{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m135_c00469{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00469{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m13b_c00469{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00469{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00469{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.me8_c00469{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00469{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00469{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00469{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00469{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m114_c00469{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.mde_c00469{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m76_c00469{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me3_c00469{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m13d_c00469{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mb_c00469{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mce_c00469{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00469{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00469{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00469{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m13c_c00469{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00469{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m83_c00469{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m49_c00469{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m100_c00469{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00469{transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);}
.m82_c00469{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.md0_c00469{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00469{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00469{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m81_c00469{transform:matrix(0.383000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383000,0.000000,0.000000,0.250000,0,0);}
.m102_c00469{transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389000,0.000000,0.000000,0.250000,0,0);}
.m84_c00469{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.md5_c00469{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00469{transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00469{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mff_c00469{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls1_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:50.211796px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{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__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00469{word-spacing:-77.211796px;}
.wse_c00469{word-spacing:-5.000000px;}
.wsd_c00469{word-spacing:-3.750000px;}
.ws10_c00469{word-spacing:-2.019231px;}
.ws11_c00469{word-spacing:-1.961538px;}
.wsf_c00469{word-spacing:-1.842105px;}
.wsc_c00469{word-spacing:0.000000px;}
.ws0_c00469{word-spacing:5.128205px;}
.wsb_c00469{word-spacing:17.442049px;}
.ws6_c00469{word-spacing:19.994638px;}
.ws1_c00469{word-spacing:23.211796px;}
.wsa_c00469{word-spacing:25.714286px;}
.ws4_c00469{word-spacing:26.428954px;}
.ws8_c00469{word-spacing:29.285714px;}
.ws5_c00469{word-spacing:32.250000px;}
.ws9_c00469{word-spacing:35.833333px;}
.ws3_c00469{word-spacing:36.000000px;}
.ws7_c00469{word-spacing:44.166667px;}
._0_c00469{margin-left:-50.211796px;}
._1_c00469{width:66.750000px;}
._2_c00469{width:70.000000px;}
._3_c00469{width:74.166667px;}
.fc0_c00469{color:transparent;}
.fs9_c00469{font-size:18.000000px;}
.fsb_c00469{font-size:24.000000px;}
.fsa_c00469{font-size:30.000000px;}
.fs6_c00469{font-size:36.000000px;}
.fs7_c00469{font-size:48.000000px;}
.fs3_c00469{font-size:54.000000px;}
.fs5_c00469{font-size:60.000000px;}
.fs4_c00469{font-size:66.000000px;}
.fs8_c00469{font-size:72.000000px;}
.fs1_c00469{font-size:78.000000px;}
.fs2_c00469{font-size:84.000000px;}
.fs0_c00469{font-size:96.000000px;}
.y0_c00469{bottom:0.000000px;}
.y42_c00469{bottom:189.000000px;}
.y7a_c00469{bottom:202.650000px;}
.y41_c00469{bottom:203.100000px;}
.y40_c00469{bottom:218.550000px;}
.y3a_c00469{bottom:223.650000px;}
.y3b_c00469{bottom:223.950000px;}
.y3f_c00469{bottom:224.700000px;}
.y3e_c00469{bottom:225.000000px;}
.y3d_c00469{bottom:225.450000px;}
.y3c_c00469{bottom:225.750000px;}
.y39_c00469{bottom:231.150000px;}
.y79_c00469{bottom:233.250000px;}
.y78_c00469{bottom:247.350000px;}
.y77_c00469{bottom:261.750000px;}
.y38_c00469{bottom:276.150000px;}
.y76_c00469{bottom:276.900000px;}
.y75_c00469{bottom:290.100000px;}
.y37_c00469{bottom:294.150000px;}
.y74_c00469{bottom:304.500000px;}
.y36_c00469{bottom:311.100000px;}
.y73_c00469{bottom:318.900000px;}
.y35_c00469{bottom:329.100000px;}
.y72_c00469{bottom:333.000000px;}
.y71_c00469{bottom:346.200000px;}
.y34_c00469{bottom:346.350000px;}
.y70_c00469{bottom:360.600000px;}
.y33_c00469{bottom:364.350000px;}
.y6f_c00469{bottom:374.700000px;}
.y32_c00469{bottom:384.900000px;}
.y6e_c00469{bottom:389.400000px;}
.y31_c00469{bottom:403.650000px;}
.y6d_c00469{bottom:403.800000px;}
.y6c_c00469{bottom:418.200000px;}
.y30_c00469{bottom:421.350000px;}
.y6b_c00469{bottom:432.900000px;}
.y2f_c00469{bottom:439.350000px;}
.y6a_c00469{bottom:447.300000px;}
.y2e_c00469{bottom:457.050000px;}
.y69_c00469{bottom:462.000000px;}
.y2d_c00469{bottom:474.750000px;}
.y68_c00469{bottom:475.650000px;}
.y67_c00469{bottom:490.050000px;}
.y2c_c00469{bottom:492.750000px;}
.y66_c00469{bottom:504.450000px;}
.y2b_c00469{bottom:510.450000px;}
.y65_c00469{bottom:519.900000px;}
.y2a_c00469{bottom:528.150000px;}
.y64_c00469{bottom:533.550000px;}
.y29_c00469{bottom:545.850000px;}
.y63_c00469{bottom:547.950000px;}
.y62_c00469{bottom:561.300000px;}
.y28_c00469{bottom:563.850000px;}
.y61_c00469{bottom:575.700000px;}
.y27_c00469{bottom:581.550000px;}
.y60_c00469{bottom:590.400000px;}
.y26_c00469{bottom:599.250000px;}
.y5f_c00469{bottom:604.500000px;}
.y25_c00469{bottom:616.950000px;}
.y5e_c00469{bottom:618.900000px;}
.y5d_c00469{bottom:633.600000px;}
.y24_c00469{bottom:634.950000px;}
.y5c_c00469{bottom:646.500000px;}
.y23_c00469{bottom:652.650000px;}
.y5b_c00469{bottom:661.950000px;}
.y5a_c00469{bottom:676.050000px;}
.y21_c00469{bottom:676.800000px;}
.y22_c00469{bottom:679.650000px;}
.y59_c00469{bottom:690.750000px;}
.y20_c00469{bottom:692.250000px;}
.y58_c00469{bottom:705.150000px;}
.y1f_c00469{bottom:707.100000px;}
.y57_c00469{bottom:719.250000px;}
.y1e_c00469{bottom:720.750000px;}
.y1c_c00469{bottom:731.850000px;}
.y1d_c00469{bottom:735.900000px;}
.y15_c00469{bottom:736.500000px;}
.y1b_c00469{bottom:749.550000px;}
.y1a_c00469{bottom:763.200000px;}
.y56_c00469{bottom:765.150000px;}
.y19_c00469{bottom:777.600000px;}
.y55_c00469{bottom:782.850000px;}
.y18_c00469{bottom:793.050000px;}
.y54_c00469{bottom:800.550000px;}
.y17_c00469{bottom:807.450000px;}
.y53_c00469{bottom:818.550000px;}
.y16_c00469{bottom:821.850000px;}
.y14_c00469{bottom:835.200000px;}
.y52_c00469{bottom:836.250000px;}
.y13_c00469{bottom:850.650000px;}
.y51_c00469{bottom:853.950000px;}
.y12_c00469{bottom:864.000000px;}
.y50_c00469{bottom:874.800000px;}
.y11_c00469{bottom:878.400000px;}
.y4f_c00469{bottom:893.850000px;}
.y10_c00469{bottom:894.600000px;}
.yf_c00469{bottom:914.100000px;}
.y4e_c00469{bottom:924.450000px;}
.ye_c00469{bottom:933.900000px;}
.yd_c00469{bottom:950.400000px;}
.y4d_c00469{bottom:959.400000px;}
.yc_c00469{bottom:968.400000px;}
.y4c_c00469{bottom:981.300000px;}
.yb_c00469{bottom:992.100000px;}
.y4b_c00469{bottom:999.600000px;}
.ya_c00469{bottom:1013.400000px;}
.y4a_c00469{bottom:1017.600000px;}
.y9_c00469{bottom:1025.700000px;}
.y8_c00469{bottom:1029.600000px;}
.y49_c00469{bottom:1035.300000px;}
.y7_c00469{bottom:1048.350000px;}
.y48_c00469{bottom:1055.850000px;}
.y6_c00469{bottom:1065.300000px;}
.y47_c00469{bottom:1071.000000px;}
.y46_c00469{bottom:1074.900000px;}
.y5_c00469{bottom:1083.300000px;}
.y45_c00469{bottom:1092.900000px;}
.y4_c00469{bottom:1102.350000px;}
.y44_c00469{bottom:1110.600000px;}
.y3_c00469{bottom:1124.700000px;}
.y43_c00469{bottom:1128.300000px;}
.y1_c00469{bottom:1146.300000px;}
.y2_c00469{bottom:1149.150000px;}
.hb_c00469{height:18.000000px;}
.hd_c00469{height:24.000000px;}
.hc_c00469{height:30.000000px;}
.h8_c00469{height:36.000000px;}
.h9_c00469{height:48.000000px;}
.h5_c00469{height:54.000000px;}
.h7_c00469{height:60.000000px;}
.h6_c00469{height:66.000000px;}
.ha_c00469{height:72.000000px;}
.h3_c00469{height:78.000000px;}
.h4_c00469{height:84.000000px;}
.h2_c00469{height:96.000000px;}
.h1_c00469{height:1273.500000px;}
.h0_c00469{height:1273.679993px;}
.w0_c00469{width:958.320007px;}
.w1_c00469{width:958.500000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:173.100000px;}
.x6d_c00469{left:174.300000px;}
.xa0_c00469{left:177.750000px;}
.x9d_c00469{left:178.800000px;}
.x42_c00469{left:186.750000px;}
.x53_c00469{left:187.950000px;}
.x30_c00469{left:190.800000px;}
.x9_c00469{left:192.000000px;}
.x1c_c00469{left:193.350000px;}
.x83_c00469{left:194.550000px;}
.x99_c00469{left:196.650000px;}
.x93_c00469{left:200.100000px;}
.x4c_c00469{left:201.900000px;}
.x5e_c00469{left:203.250000px;}
.xa_c00469{left:210.300000px;}
.x70_c00469{left:213.600000px;}
.x84_c00469{left:215.100000px;}
.x3_c00469{left:216.750000px;}
.x73_c00469{left:218.100000px;}
.xb_c00469{left:219.300000px;}
.x4d_c00469{left:223.500000px;}
.x61_c00469{left:225.150000px;}
.x9c_c00469{left:227.550000px;}
.x8f_c00469{left:229.650000px;}
.x43_c00469{left:231.000000px;}
.x96_c00469{left:232.350000px;}
.x3b_c00469{left:234.000000px;}
.x17_c00469{left:235.500000px;}
.x77_c00469{left:238.950000px;}
.x7f_c00469{left:241.200000px;}
.x4e_c00469{left:242.550000px;}
.x8d_c00469{left:243.600000px;}
.x62_c00469{left:244.950000px;}
.x31_c00469{left:246.300000px;}
.x85_c00469{left:249.300000px;}
.x4_c00469{left:250.950000px;}
.x37_c00469{left:253.500000px;}
.xc_c00469{left:255.000000px;}
.x4f_c00469{left:256.650000px;}
.x1d_c00469{left:258.450000px;}
.x80_c00469{left:261.000000px;}
.x6e_c00469{left:262.200000px;}
.x54_c00469{left:264.150000px;}
.x7a_c00469{left:265.200000px;}
.x63_c00469{left:267.450000px;}
.x86_c00469{left:270.150000px;}
.x94_c00469{left:271.350000px;}
.x71_c00469{left:273.000000px;}
.x18_c00469{left:275.400000px;}
.x5f_c00469{left:277.050000px;}
.x55_c00469{left:278.550000px;}
.x50_c00469{left:283.350000px;}
.x2d_c00469{left:284.700000px;}
.x64_c00469{left:288.750000px;}
.x11_c00469{left:292.650000px;}
.x46_c00469{left:294.600000px;}
.x32_c00469{left:295.950000px;}
.x1e_c00469{left:297.000000px;}
.x81_c00469{left:298.500000px;}
.x5_c00469{left:300.300000px;}
.x8a_c00469{left:301.650000px;}
.x29_c00469{left:305.700000px;}
.x60_c00469{left:307.950000px;}
.xd_c00469{left:310.050000px;}
.x6a_c00469{left:311.400000px;}
.x90_c00469{left:313.950000px;}
.x12_c00469{left:315.750000px;}
.x38_c00469{left:316.800000px;}
.x2a_c00469{left:318.300000px;}
.x3c_c00469{left:320.400000px;}
.xa3_c00469{left:323.100000px;}
.x1f_c00469{left:324.300000px;}
.x19_c00469{left:326.850000px;}
.x78_c00469{left:328.650000px;}
.x7b_c00469{left:330.000000px;}
.x59_c00469{left:331.200000px;}
.x56_c00469{left:332.850000px;}
.x3a_c00469{left:333.900000px;}
.x98_c00469{left:335.700000px;}
.x91_c00469{left:339.450000px;}
.x7c_c00469{left:342.600000px;}
.x47_c00469{left:343.950000px;}
.x44_c00469{left:346.500000px;}
.x20_c00469{left:348.000000px;}
.x51_c00469{left:349.800000px;}
.x13_c00469{left:351.750000px;}
.x5a_c00469{left:353.100000px;}
.x3d_c00469{left:358.200000px;}
.x33_c00469{left:360.750000px;}
.x65_c00469{left:362.700000px;}
.x6f_c00469{left:364.050000px;}
.x67_c00469{left:366.300000px;}
.x39_c00469{left:368.250000px;}
.x95_c00469{left:369.900000px;}
.x1a_c00469{left:373.650000px;}
.x5b_c00469{left:375.000000px;}
.x82_c00469{left:377.700000px;}
.xe_c00469{left:380.250000px;}
.x5c_c00469{left:382.200000px;}
.x6b_c00469{left:384.600000px;}
.x66_c00469{left:385.800000px;}
.x92_c00469{left:387.750000px;}
.x5d_c00469{left:389.400000px;}
.x6c_c00469{left:390.900000px;}
.x48_c00469{left:394.050000px;}
.x3e_c00469{left:397.050000px;}
.x34_c00469{left:399.300000px;}
.x52_c00469{left:400.500000px;}
.x9e_c00469{left:402.000000px;}
.x45_c00469{left:403.800000px;}
.x14_c00469{left:405.150000px;}
.xf_c00469{left:407.250000px;}
.x6_c00469{left:410.850000px;}
.x7d_c00469{left:412.050000px;}
.x72_c00469{left:414.600000px;}
.x35_c00469{left:417.000000px;}
.x2_c00469{left:418.200000px;}
.x21_c00469{left:420.000000px;}
.x8b_c00469{left:421.200000px;}
.x1b_c00469{left:422.250000px;}
.x7_c00469{left:424.200000px;}
.x88_c00469{left:425.850000px;}
.x10_c00469{left:427.350000px;}
.x2b_c00469{left:429.600000px;}
.x3f_c00469{left:432.000000px;}
.x7e_c00469{left:433.650000px;}
.x2e_c00469{left:435.600000px;}
.x49_c00469{left:438.600000px;}
.x68_c00469{left:440.550000px;}
.x26_c00469{left:442.050000px;}
.x9f_c00469{left:444.150000px;}
.x8c_c00469{left:446.700000px;}
.x9a_c00469{left:449.100000px;}
.x22_c00469{left:450.300000px;}
.x15_c00469{left:451.650000px;}
.x36_c00469{left:453.000000px;}
.x27_c00469{left:454.950000px;}
.x79_c00469{left:456.300000px;}
.x40_c00469{left:458.250000px;}
.xa1_c00469{left:459.600000px;}
.x69_c00469{left:462.450000px;}
.x75_c00469{left:463.950000px;}
.x23_c00469{left:465.450000px;}
.x57_c00469{left:466.500000px;}
.x4a_c00469{left:467.700000px;}
.x8_c00469{left:469.500000px;}
.x16_c00469{left:473.550000px;}
.x76_c00469{left:474.750000px;}
.x87_c00469{left:477.450000px;}
.x24_c00469{left:480.150000px;}
.x8e_c00469{left:482.400000px;}
.x74_c00469{left:484.500000px;}
.x9b_c00469{left:486.900000px;}
.x58_c00469{left:490.350000px;}
.x97_c00469{left:492.300000px;}
.x41_c00469{left:493.500000px;}
.x4b_c00469{left:495.000000px;}
.x2f_c00469{left:496.800000px;}
.x28_c00469{left:499.950000px;}
.x89_c00469{left:501.900000px;}
.x2c_c00469{left:503.700000px;}
.x25_c00469{left:506.850000px;}
.xa2_c00469{left:507.900000px;}
.xc8_c00469{left:530.700000px;}
.x134_c00469{left:531.750000px;}
.x108_c00469{left:533.700000px;}
.x141_c00469{left:542.700000px;}
.x100_c00469{left:546.150000px;}
.xa4_c00469{left:547.950000px;}
.xe7_c00469{left:549.000000px;}
.x149_c00469{left:552.150000px;}
.x133_c00469{left:554.400000px;}
.x14c_c00469{left:556.950000px;}
.x110_c00469{left:558.900000px;}
.xbb_c00469{left:560.250000px;}
.x14a_c00469{left:561.300000px;}
.x118_c00469{left:563.700000px;}
.x11a_c00469{left:564.900000px;}
.x12a_c00469{left:565.950000px;}
.xa5_c00469{left:567.000000px;}
.x101_c00469{left:568.800000px;}
.x116_c00469{left:571.950000px;}
.xe3_c00469{left:573.600000px;}
.x121_c00469{left:578.100000px;}
.xb2_c00469{left:580.950000px;}
.xdb_c00469{left:582.900000px;}
.xcd_c00469{left:585.900000px;}
.x102_c00469{left:587.850000px;}
.xd6_c00469{left:589.200000px;}
.x109_c00469{left:590.550000px;}
.x11b_c00469{left:593.700000px;}
.x147_c00469{left:595.200000px;}
.xde_c00469{left:596.550000px;}
.xea_c00469{left:598.050000px;}
.x135_c00469{left:599.100000px;}
.xb3_c00469{left:600.450000px;}
.x126_c00469{left:602.550000px;}
.x103_c00469{left:604.350000px;}
.xce_c00469{left:605.700000px;}
.xa6_c00469{left:607.350000px;}
.xf7_c00469{left:609.300000px;}
.xe4_c00469{left:610.350000px;}
.xd7_c00469{left:612.300000px;}
.xc9_c00469{left:613.800000px;}
.xe8_c00469{left:615.000000px;}
.x139_c00469{left:616.950000px;}
.xc2_c00469{left:618.300000px;}
.xdf_c00469{left:620.700000px;}
.x12b_c00469{left:622.500000px;}
.xfc_c00469{left:624.300000px;}
.x122_c00469{left:627.450000px;}
.x11c_c00469{left:628.950000px;}
.xa7_c00469{left:630.750000px;}
.xf4_c00469{left:632.700000px;}
.xcf_c00469{left:636.600000px;}
.xb4_c00469{left:637.950000px;}
.xdc_c00469{left:640.200000px;}
.x137_c00469{left:642.600000px;}
.x13a_c00469{left:643.650000px;}
.xeb_c00469{left:646.350000px;}
.xf8_c00469{left:648.900000px;}
.xf0_c00469{left:651.300000px;}
.xe1_c00469{left:653.400000px;}
.x104_c00469{left:654.750000px;}
.x10c_c00469{left:656.850000px;}
.xdd_c00469{left:660.300000px;}
.xb5_c00469{left:661.650000px;}
.xa8_c00469{left:663.450000px;}
.x127_c00469{left:664.500000px;}
.xc3_c00469{left:665.850000px;}
.xec_c00469{left:667.200000px;}
.xf9_c00469{left:668.400000px;}
.xd8_c00469{left:669.900000px;}
.x142_c00469{left:671.100000px;}
.xbc_c00469{left:672.900000px;}
.x128_c00469{left:674.250000px;}
.xfd_c00469{left:679.050000px;}
.x114_c00469{left:681.000000px;}
.x13c_c00469{left:683.250000px;}
.xf1_c00469{left:684.450000px;}
.xa9_c00469{left:686.100000px;}
.x10a_c00469{left:688.950000px;}
.xe2_c00469{left:692.250000px;}
.xbd_c00469{left:693.450000px;}
.x11d_c00469{left:694.800000px;}
.xc4_c00469{left:696.750000px;}
.xe9_c00469{left:697.800000px;}
.x12d_c00469{left:699.600000px;}
.xca_c00469{left:701.250000px;}
.x105_c00469{left:702.600000px;}
.xd0_c00469{left:704.400000px;}
.x111_c00469{left:706.500000px;}
.x14b_c00469{left:707.850000px;}
.x10d_c00469{left:709.350000px;}
.xbe_c00469{left:711.450000px;}
.x124_c00469{left:713.700000px;}
.x143_c00469{left:714.750000px;}
.xaa_c00469{left:717.450000px;}
.xe0_c00469{left:719.700000px;}
.x10b_c00469{left:721.650000px;}
.xd1_c00469{left:724.950000px;}
.x117_c00469{left:726.000000px;}
.xb6_c00469{left:727.200000px;}
.x11e_c00469{left:729.000000px;}
.x12c_c00469{left:730.050000px;}
.x136_c00469{left:732.300000px;}
.xd9_c00469{left:734.400000px;}
.xfe_c00469{left:736.350000px;}
.x13e_c00469{left:738.900000px;}
.xf5_c00469{left:740.400000px;}
.xd2_c00469{left:742.200000px;}
.x112_c00469{left:743.550000px;}
.xaf_c00469{left:745.500000px;}
.x146_c00469{left:747.600000px;}
.xbf_c00469{left:750.750000px;}
.xcb_c00469{left:751.950000px;}
.xb7_c00469{left:753.150000px;}
.x11f_c00469{left:754.500000px;}
.xab_c00469{left:755.550000px;}
.xb0_c00469{left:758.100000px;}
.xf2_c00469{left:760.050000px;}
.xe5_c00469{left:761.850000px;}
.x13f_c00469{left:765.000000px;}
.x10e_c00469{left:767.700000px;}
.x138_c00469{left:769.500000px;}
.x115_c00469{left:771.000000px;}
.xc0_c00469{left:773.850000px;}
.xcc_c00469{left:777.150000px;}
.xd3_c00469{left:779.250000px;}
.x148_c00469{left:782.850000px;}
.xc5_c00469{left:784.200000px;}
.xed_c00469{left:786.000000px;}
.xda_c00469{left:789.450000px;}
.xac_c00469{left:790.800000px;}
.x106_c00469{left:792.900000px;}
.xd4_c00469{left:795.450000px;}
.x144_c00469{left:797.850000px;}
.x120_c00469{left:799.200000px;}
.xfa_c00469{left:800.850000px;}
.xb8_c00469{left:802.800000px;}
.xad_c00469{left:804.150000px;}
.x132_c00469{left:805.950000px;}
.x129_c00469{left:807.000000px;}
.xe6_c00469{left:809.700000px;}
.xc6_c00469{left:811.200000px;}
.x10f_c00469{left:812.700000px;}
.xb9_c00469{left:816.150000px;}
.x13d_c00469{left:817.500000px;}
.xee_c00469{left:819.450000px;}
.x130_c00469{left:820.500000px;}
.x107_c00469{left:824.250000px;}
.x113_c00469{left:825.900000px;}
.xae_c00469{left:827.250000px;}
.xf6_c00469{left:829.650000px;}
.x12e_c00469{left:831.000000px;}
.x145_c00469{left:832.050000px;}
.xff_c00469{left:833.550000px;}
.xd5_c00469{left:836.550000px;}
.xef_c00469{left:838.500000px;}
.xba_c00469{left:840.600000px;}
.xc7_c00469{left:842.850000px;}
.xf3_c00469{left:846.450000px;}
.x125_c00469{left:850.500000px;}
.xfb_c00469{left:852.300000px;}
.x140_c00469{left:853.650000px;}
.x13b_c00469{left:854.700000px;}
.x12f_c00469{left:856.500000px;}
.x131_c00469{left:858.600000px;}
.xc1_c00469{left:861.000000px;}
.xb1_c00469{left:862.500000px;}
.x123_c00469{left:864.000000px;}
.x119_c00469{left:866.250000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls1_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:44.632708pt;}
.ws2_c00469{word-spacing:-68.632708pt;}
.wse_c00469{word-spacing:-4.444444pt;}
.wsd_c00469{word-spacing:-3.333333pt;}
.ws10_c00469{word-spacing:-1.794872pt;}
.ws11_c00469{word-spacing:-1.743590pt;}
.wsf_c00469{word-spacing:-1.637427pt;}
.wsc_c00469{word-spacing:0.000000pt;}
.ws0_c00469{word-spacing:4.558405pt;}
.wsb_c00469{word-spacing:15.504043pt;}
.ws6_c00469{word-spacing:17.773012pt;}
.ws1_c00469{word-spacing:20.632708pt;}
.wsa_c00469{word-spacing:22.857143pt;}
.ws4_c00469{word-spacing:23.492404pt;}
.ws8_c00469{word-spacing:26.031746pt;}
.ws5_c00469{word-spacing:28.666667pt;}
.ws9_c00469{word-spacing:31.851852pt;}
.ws3_c00469{word-spacing:32.000000pt;}
.ws7_c00469{word-spacing:39.259259pt;}
._0_c00469{margin-left:-44.632708pt;}
._1_c00469{width:59.333333pt;}
._2_c00469{width:62.222222pt;}
._3_c00469{width:65.925926pt;}
.fs9_c00469{font-size:16.000000pt;}
.fsb_c00469{font-size:21.333333pt;}
.fsa_c00469{font-size:26.666667pt;}
.fs6_c00469{font-size:32.000000pt;}
.fs7_c00469{font-size:42.666667pt;}
.fs3_c00469{font-size:48.000000pt;}
.fs5_c00469{font-size:53.333333pt;}
.fs4_c00469{font-size:58.666667pt;}
.fs8_c00469{font-size:64.000000pt;}
.fs1_c00469{font-size:69.333333pt;}
.fs2_c00469{font-size:74.666667pt;}
.fs0_c00469{font-size:85.333333pt;}
.y0_c00469{bottom:0.000000pt;}
.y42_c00469{bottom:168.000000pt;}
.y7a_c00469{bottom:180.133333pt;}
.y41_c00469{bottom:180.533333pt;}
.y40_c00469{bottom:194.266667pt;}
.y3a_c00469{bottom:198.800000pt;}
.y3b_c00469{bottom:199.066667pt;}
.y3f_c00469{bottom:199.733333pt;}
.y3e_c00469{bottom:200.000000pt;}
.y3d_c00469{bottom:200.400000pt;}
.y3c_c00469{bottom:200.666667pt;}
.y39_c00469{bottom:205.466667pt;}
.y79_c00469{bottom:207.333333pt;}
.y78_c00469{bottom:219.866667pt;}
.y77_c00469{bottom:232.666667pt;}
.y38_c00469{bottom:245.466667pt;}
.y76_c00469{bottom:246.133333pt;}
.y75_c00469{bottom:257.866667pt;}
.y37_c00469{bottom:261.466667pt;}
.y74_c00469{bottom:270.666667pt;}
.y36_c00469{bottom:276.533333pt;}
.y73_c00469{bottom:283.466667pt;}
.y35_c00469{bottom:292.533333pt;}
.y72_c00469{bottom:296.000000pt;}
.y71_c00469{bottom:307.733333pt;}
.y34_c00469{bottom:307.866667pt;}
.y70_c00469{bottom:320.533333pt;}
.y33_c00469{bottom:323.866667pt;}
.y6f_c00469{bottom:333.066667pt;}
.y32_c00469{bottom:342.133333pt;}
.y6e_c00469{bottom:346.133333pt;}
.y31_c00469{bottom:358.800000pt;}
.y6d_c00469{bottom:358.933333pt;}
.y6c_c00469{bottom:371.733333pt;}
.y30_c00469{bottom:374.533333pt;}
.y6b_c00469{bottom:384.800000pt;}
.y2f_c00469{bottom:390.533333pt;}
.y6a_c00469{bottom:397.600000pt;}
.y2e_c00469{bottom:406.266667pt;}
.y69_c00469{bottom:410.666667pt;}
.y2d_c00469{bottom:422.000000pt;}
.y68_c00469{bottom:422.800000pt;}
.y67_c00469{bottom:435.600000pt;}
.y2c_c00469{bottom:438.000000pt;}
.y66_c00469{bottom:448.400000pt;}
.y2b_c00469{bottom:453.733333pt;}
.y65_c00469{bottom:462.133333pt;}
.y2a_c00469{bottom:469.466667pt;}
.y64_c00469{bottom:474.266667pt;}
.y29_c00469{bottom:485.200000pt;}
.y63_c00469{bottom:487.066667pt;}
.y62_c00469{bottom:498.933333pt;}
.y28_c00469{bottom:501.200000pt;}
.y61_c00469{bottom:511.733333pt;}
.y27_c00469{bottom:516.933333pt;}
.y60_c00469{bottom:524.800000pt;}
.y26_c00469{bottom:532.666667pt;}
.y5f_c00469{bottom:537.333333pt;}
.y25_c00469{bottom:548.400000pt;}
.y5e_c00469{bottom:550.133333pt;}
.y5d_c00469{bottom:563.200000pt;}
.y24_c00469{bottom:564.400000pt;}
.y5c_c00469{bottom:574.666667pt;}
.y23_c00469{bottom:580.133333pt;}
.y5b_c00469{bottom:588.400000pt;}
.y5a_c00469{bottom:600.933333pt;}
.y21_c00469{bottom:601.600000pt;}
.y22_c00469{bottom:604.133333pt;}
.y59_c00469{bottom:614.000000pt;}
.y20_c00469{bottom:615.333333pt;}
.y58_c00469{bottom:626.800000pt;}
.y1f_c00469{bottom:628.533333pt;}
.y57_c00469{bottom:639.333333pt;}
.y1e_c00469{bottom:640.666667pt;}
.y1c_c00469{bottom:650.533333pt;}
.y1d_c00469{bottom:654.133333pt;}
.y15_c00469{bottom:654.666667pt;}
.y1b_c00469{bottom:666.266667pt;}
.y1a_c00469{bottom:678.400000pt;}
.y56_c00469{bottom:680.133333pt;}
.y19_c00469{bottom:691.200000pt;}
.y55_c00469{bottom:695.866667pt;}
.y18_c00469{bottom:704.933333pt;}
.y54_c00469{bottom:711.600000pt;}
.y17_c00469{bottom:717.733333pt;}
.y53_c00469{bottom:727.600000pt;}
.y16_c00469{bottom:730.533333pt;}
.y14_c00469{bottom:742.400000pt;}
.y52_c00469{bottom:743.333333pt;}
.y13_c00469{bottom:756.133333pt;}
.y51_c00469{bottom:759.066667pt;}
.y12_c00469{bottom:768.000000pt;}
.y50_c00469{bottom:777.600000pt;}
.y11_c00469{bottom:780.800000pt;}
.y4f_c00469{bottom:794.533333pt;}
.y10_c00469{bottom:795.200000pt;}
.yf_c00469{bottom:812.533333pt;}
.y4e_c00469{bottom:821.733333pt;}
.ye_c00469{bottom:830.133333pt;}
.yd_c00469{bottom:844.800000pt;}
.y4d_c00469{bottom:852.800000pt;}
.yc_c00469{bottom:860.800000pt;}
.y4c_c00469{bottom:872.266667pt;}
.yb_c00469{bottom:881.866667pt;}
.y4b_c00469{bottom:888.533333pt;}
.ya_c00469{bottom:900.800000pt;}
.y4a_c00469{bottom:904.533333pt;}
.y9_c00469{bottom:911.733333pt;}
.y8_c00469{bottom:915.200000pt;}
.y49_c00469{bottom:920.266667pt;}
.y7_c00469{bottom:931.866667pt;}
.y48_c00469{bottom:938.533333pt;}
.y6_c00469{bottom:946.933333pt;}
.y47_c00469{bottom:952.000000pt;}
.y46_c00469{bottom:955.466667pt;}
.y5_c00469{bottom:962.933333pt;}
.y45_c00469{bottom:971.466667pt;}
.y4_c00469{bottom:979.866667pt;}
.y44_c00469{bottom:987.200000pt;}
.y3_c00469{bottom:999.733333pt;}
.y43_c00469{bottom:1002.933333pt;}
.y1_c00469{bottom:1018.933333pt;}
.y2_c00469{bottom:1021.466667pt;}
.hb_c00469{height:16.000000pt;}
.hd_c00469{height:21.333333pt;}
.hc_c00469{height:26.666667pt;}
.h8_c00469{height:32.000000pt;}
.h9_c00469{height:42.666667pt;}
.h5_c00469{height:48.000000pt;}
.h7_c00469{height:53.333333pt;}
.h6_c00469{height:58.666667pt;}
.ha_c00469{height:64.000000pt;}
.h3_c00469{height:69.333333pt;}
.h4_c00469{height:74.666667pt;}
.h2_c00469{height:85.333333pt;}
.h1_c00469{height:1132.000000pt;}
.h0_c00469{height:1132.159993pt;}
.w0_c00469{width:851.840007pt;}
.w1_c00469{width:852.000000pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:153.866667pt;}
.x6d_c00469{left:154.933333pt;}
.xa0_c00469{left:158.000000pt;}
.x9d_c00469{left:158.933333pt;}
.x42_c00469{left:166.000000pt;}
.x53_c00469{left:167.066667pt;}
.x30_c00469{left:169.600000pt;}
.x9_c00469{left:170.666667pt;}
.x1c_c00469{left:171.866667pt;}
.x83_c00469{left:172.933333pt;}
.x99_c00469{left:174.800000pt;}
.x93_c00469{left:177.866667pt;}
.x4c_c00469{left:179.466667pt;}
.x5e_c00469{left:180.666667pt;}
.xa_c00469{left:186.933333pt;}
.x70_c00469{left:189.866667pt;}
.x84_c00469{left:191.200000pt;}
.x3_c00469{left:192.666667pt;}
.x73_c00469{left:193.866667pt;}
.xb_c00469{left:194.933333pt;}
.x4d_c00469{left:198.666667pt;}
.x61_c00469{left:200.133333pt;}
.x9c_c00469{left:202.266667pt;}
.x8f_c00469{left:204.133333pt;}
.x43_c00469{left:205.333333pt;}
.x96_c00469{left:206.533333pt;}
.x3b_c00469{left:208.000000pt;}
.x17_c00469{left:209.333333pt;}
.x77_c00469{left:212.400000pt;}
.x7f_c00469{left:214.400000pt;}
.x4e_c00469{left:215.600000pt;}
.x8d_c00469{left:216.533333pt;}
.x62_c00469{left:217.733333pt;}
.x31_c00469{left:218.933333pt;}
.x85_c00469{left:221.600000pt;}
.x4_c00469{left:223.066667pt;}
.x37_c00469{left:225.333333pt;}
.xc_c00469{left:226.666667pt;}
.x4f_c00469{left:228.133333pt;}
.x1d_c00469{left:229.733333pt;}
.x80_c00469{left:232.000000pt;}
.x6e_c00469{left:233.066667pt;}
.x54_c00469{left:234.800000pt;}
.x7a_c00469{left:235.733333pt;}
.x63_c00469{left:237.733333pt;}
.x86_c00469{left:240.133333pt;}
.x94_c00469{left:241.200000pt;}
.x71_c00469{left:242.666667pt;}
.x18_c00469{left:244.800000pt;}
.x5f_c00469{left:246.266667pt;}
.x55_c00469{left:247.600000pt;}
.x50_c00469{left:251.866667pt;}
.x2d_c00469{left:253.066667pt;}
.x64_c00469{left:256.666667pt;}
.x11_c00469{left:260.133333pt;}
.x46_c00469{left:261.866667pt;}
.x32_c00469{left:263.066667pt;}
.x1e_c00469{left:264.000000pt;}
.x81_c00469{left:265.333333pt;}
.x5_c00469{left:266.933333pt;}
.x8a_c00469{left:268.133333pt;}
.x29_c00469{left:271.733333pt;}
.x60_c00469{left:273.733333pt;}
.xd_c00469{left:275.600000pt;}
.x6a_c00469{left:276.800000pt;}
.x90_c00469{left:279.066667pt;}
.x12_c00469{left:280.666667pt;}
.x38_c00469{left:281.600000pt;}
.x2a_c00469{left:282.933333pt;}
.x3c_c00469{left:284.800000pt;}
.xa3_c00469{left:287.200000pt;}
.x1f_c00469{left:288.266667pt;}
.x19_c00469{left:290.533333pt;}
.x78_c00469{left:292.133333pt;}
.x7b_c00469{left:293.333333pt;}
.x59_c00469{left:294.400000pt;}
.x56_c00469{left:295.866667pt;}
.x3a_c00469{left:296.800000pt;}
.x98_c00469{left:298.400000pt;}
.x91_c00469{left:301.733333pt;}
.x7c_c00469{left:304.533333pt;}
.x47_c00469{left:305.733333pt;}
.x44_c00469{left:308.000000pt;}
.x20_c00469{left:309.333333pt;}
.x51_c00469{left:310.933333pt;}
.x13_c00469{left:312.666667pt;}
.x5a_c00469{left:313.866667pt;}
.x3d_c00469{left:318.400000pt;}
.x33_c00469{left:320.666667pt;}
.x65_c00469{left:322.400000pt;}
.x6f_c00469{left:323.600000pt;}
.x67_c00469{left:325.600000pt;}
.x39_c00469{left:327.333333pt;}
.x95_c00469{left:328.800000pt;}
.x1a_c00469{left:332.133333pt;}
.x5b_c00469{left:333.333333pt;}
.x82_c00469{left:335.733333pt;}
.xe_c00469{left:338.000000pt;}
.x5c_c00469{left:339.733333pt;}
.x6b_c00469{left:341.866667pt;}
.x66_c00469{left:342.933333pt;}
.x92_c00469{left:344.666667pt;}
.x5d_c00469{left:346.133333pt;}
.x6c_c00469{left:347.466667pt;}
.x48_c00469{left:350.266667pt;}
.x3e_c00469{left:352.933333pt;}
.x34_c00469{left:354.933333pt;}
.x52_c00469{left:356.000000pt;}
.x9e_c00469{left:357.333333pt;}
.x45_c00469{left:358.933333pt;}
.x14_c00469{left:360.133333pt;}
.xf_c00469{left:362.000000pt;}
.x6_c00469{left:365.200000pt;}
.x7d_c00469{left:366.266667pt;}
.x72_c00469{left:368.533333pt;}
.x35_c00469{left:370.666667pt;}
.x2_c00469{left:371.733333pt;}
.x21_c00469{left:373.333333pt;}
.x8b_c00469{left:374.400000pt;}
.x1b_c00469{left:375.333333pt;}
.x7_c00469{left:377.066667pt;}
.x88_c00469{left:378.533333pt;}
.x10_c00469{left:379.866667pt;}
.x2b_c00469{left:381.866667pt;}
.x3f_c00469{left:384.000000pt;}
.x7e_c00469{left:385.466667pt;}
.x2e_c00469{left:387.200000pt;}
.x49_c00469{left:389.866667pt;}
.x68_c00469{left:391.600000pt;}
.x26_c00469{left:392.933333pt;}
.x9f_c00469{left:394.800000pt;}
.x8c_c00469{left:397.066667pt;}
.x9a_c00469{left:399.200000pt;}
.x22_c00469{left:400.266667pt;}
.x15_c00469{left:401.466667pt;}
.x36_c00469{left:402.666667pt;}
.x27_c00469{left:404.400000pt;}
.x79_c00469{left:405.600000pt;}
.x40_c00469{left:407.333333pt;}
.xa1_c00469{left:408.533333pt;}
.x69_c00469{left:411.066667pt;}
.x75_c00469{left:412.400000pt;}
.x23_c00469{left:413.733333pt;}
.x57_c00469{left:414.666667pt;}
.x4a_c00469{left:415.733333pt;}
.x8_c00469{left:417.333333pt;}
.x16_c00469{left:420.933333pt;}
.x76_c00469{left:422.000000pt;}
.x87_c00469{left:424.400000pt;}
.x24_c00469{left:426.800000pt;}
.x8e_c00469{left:428.800000pt;}
.x74_c00469{left:430.666667pt;}
.x9b_c00469{left:432.800000pt;}
.x58_c00469{left:435.866667pt;}
.x97_c00469{left:437.600000pt;}
.x41_c00469{left:438.666667pt;}
.x4b_c00469{left:440.000000pt;}
.x2f_c00469{left:441.600000pt;}
.x28_c00469{left:444.400000pt;}
.x89_c00469{left:446.133333pt;}
.x2c_c00469{left:447.733333pt;}
.x25_c00469{left:450.533333pt;}
.xa2_c00469{left:451.466667pt;}
.xc8_c00469{left:471.733333pt;}
.x134_c00469{left:472.666667pt;}
.x108_c00469{left:474.400000pt;}
.x141_c00469{left:482.400000pt;}
.x100_c00469{left:485.466667pt;}
.xa4_c00469{left:487.066667pt;}
.xe7_c00469{left:488.000000pt;}
.x149_c00469{left:490.800000pt;}
.x133_c00469{left:492.800000pt;}
.x14c_c00469{left:495.066667pt;}
.x110_c00469{left:496.800000pt;}
.xbb_c00469{left:498.000000pt;}
.x14a_c00469{left:498.933333pt;}
.x118_c00469{left:501.066667pt;}
.x11a_c00469{left:502.133333pt;}
.x12a_c00469{left:503.066667pt;}
.xa5_c00469{left:504.000000pt;}
.x101_c00469{left:505.600000pt;}
.x116_c00469{left:508.400000pt;}
.xe3_c00469{left:509.866667pt;}
.x121_c00469{left:513.866667pt;}
.xb2_c00469{left:516.400000pt;}
.xdb_c00469{left:518.133333pt;}
.xcd_c00469{left:520.800000pt;}
.x102_c00469{left:522.533333pt;}
.xd6_c00469{left:523.733333pt;}
.x109_c00469{left:524.933333pt;}
.x11b_c00469{left:527.733333pt;}
.x147_c00469{left:529.066667pt;}
.xde_c00469{left:530.266667pt;}
.xea_c00469{left:531.600000pt;}
.x135_c00469{left:532.533333pt;}
.xb3_c00469{left:533.733333pt;}
.x126_c00469{left:535.600000pt;}
.x103_c00469{left:537.200000pt;}
.xce_c00469{left:538.400000pt;}
.xa6_c00469{left:539.866667pt;}
.xf7_c00469{left:541.600000pt;}
.xe4_c00469{left:542.533333pt;}
.xd7_c00469{left:544.266667pt;}
.xc9_c00469{left:545.600000pt;}
.xe8_c00469{left:546.666667pt;}
.x139_c00469{left:548.400000pt;}
.xc2_c00469{left:549.600000pt;}
.xdf_c00469{left:551.733333pt;}
.x12b_c00469{left:553.333333pt;}
.xfc_c00469{left:554.933333pt;}
.x122_c00469{left:557.733333pt;}
.x11c_c00469{left:559.066667pt;}
.xa7_c00469{left:560.666667pt;}
.xf4_c00469{left:562.400000pt;}
.xcf_c00469{left:565.866667pt;}
.xb4_c00469{left:567.066667pt;}
.xdc_c00469{left:569.066667pt;}
.x137_c00469{left:571.200000pt;}
.x13a_c00469{left:572.133333pt;}
.xeb_c00469{left:574.533333pt;}
.xf8_c00469{left:576.800000pt;}
.xf0_c00469{left:578.933333pt;}
.xe1_c00469{left:580.800000pt;}
.x104_c00469{left:582.000000pt;}
.x10c_c00469{left:583.866667pt;}
.xdd_c00469{left:586.933333pt;}
.xb5_c00469{left:588.133333pt;}
.xa8_c00469{left:589.733333pt;}
.x127_c00469{left:590.666667pt;}
.xc3_c00469{left:591.866667pt;}
.xec_c00469{left:593.066667pt;}
.xf9_c00469{left:594.133333pt;}
.xd8_c00469{left:595.466667pt;}
.x142_c00469{left:596.533333pt;}
.xbc_c00469{left:598.133333pt;}
.x128_c00469{left:599.333333pt;}
.xfd_c00469{left:603.600000pt;}
.x114_c00469{left:605.333333pt;}
.x13c_c00469{left:607.333333pt;}
.xf1_c00469{left:608.400000pt;}
.xa9_c00469{left:609.866667pt;}
.x10a_c00469{left:612.400000pt;}
.xe2_c00469{left:615.333333pt;}
.xbd_c00469{left:616.400000pt;}
.x11d_c00469{left:617.600000pt;}
.xc4_c00469{left:619.333333pt;}
.xe9_c00469{left:620.266667pt;}
.x12d_c00469{left:621.866667pt;}
.xca_c00469{left:623.333333pt;}
.x105_c00469{left:624.533333pt;}
.xd0_c00469{left:626.133333pt;}
.x111_c00469{left:628.000000pt;}
.x14b_c00469{left:629.200000pt;}
.x10d_c00469{left:630.533333pt;}
.xbe_c00469{left:632.400000pt;}
.x124_c00469{left:634.400000pt;}
.x143_c00469{left:635.333333pt;}
.xaa_c00469{left:637.733333pt;}
.xe0_c00469{left:639.733333pt;}
.x10b_c00469{left:641.466667pt;}
.xd1_c00469{left:644.400000pt;}
.x117_c00469{left:645.333333pt;}
.xb6_c00469{left:646.400000pt;}
.x11e_c00469{left:648.000000pt;}
.x12c_c00469{left:648.933333pt;}
.x136_c00469{left:650.933333pt;}
.xd9_c00469{left:652.800000pt;}
.xfe_c00469{left:654.533333pt;}
.x13e_c00469{left:656.800000pt;}
.xf5_c00469{left:658.133333pt;}
.xd2_c00469{left:659.733333pt;}
.x112_c00469{left:660.933333pt;}
.xaf_c00469{left:662.666667pt;}
.x146_c00469{left:664.533333pt;}
.xbf_c00469{left:667.333333pt;}
.xcb_c00469{left:668.400000pt;}
.xb7_c00469{left:669.466667pt;}
.x11f_c00469{left:670.666667pt;}
.xab_c00469{left:671.600000pt;}
.xb0_c00469{left:673.866667pt;}
.xf2_c00469{left:675.600000pt;}
.xe5_c00469{left:677.200000pt;}
.x13f_c00469{left:680.000000pt;}
.x10e_c00469{left:682.400000pt;}
.x138_c00469{left:684.000000pt;}
.x115_c00469{left:685.333333pt;}
.xc0_c00469{left:687.866667pt;}
.xcc_c00469{left:690.800000pt;}
.xd3_c00469{left:692.666667pt;}
.x148_c00469{left:695.866667pt;}
.xc5_c00469{left:697.066667pt;}
.xed_c00469{left:698.666667pt;}
.xda_c00469{left:701.733333pt;}
.xac_c00469{left:702.933333pt;}
.x106_c00469{left:704.800000pt;}
.xd4_c00469{left:707.066667pt;}
.x144_c00469{left:709.200000pt;}
.x120_c00469{left:710.400000pt;}
.xfa_c00469{left:711.866667pt;}
.xb8_c00469{left:713.600000pt;}
.xad_c00469{left:714.800000pt;}
.x132_c00469{left:716.400000pt;}
.x129_c00469{left:717.333333pt;}
.xe6_c00469{left:719.733333pt;}
.xc6_c00469{left:721.066667pt;}
.x10f_c00469{left:722.400000pt;}
.xb9_c00469{left:725.466667pt;}
.x13d_c00469{left:726.666667pt;}
.xee_c00469{left:728.400000pt;}
.x130_c00469{left:729.333333pt;}
.x107_c00469{left:732.666667pt;}
.x113_c00469{left:734.133333pt;}
.xae_c00469{left:735.333333pt;}
.xf6_c00469{left:737.466667pt;}
.x12e_c00469{left:738.666667pt;}
.x145_c00469{left:739.600000pt;}
.xff_c00469{left:740.933333pt;}
.xd5_c00469{left:743.600000pt;}
.xef_c00469{left:745.333333pt;}
.xba_c00469{left:747.200000pt;}
.xc7_c00469{left:749.200000pt;}
.xf3_c00469{left:752.400000pt;}
.x125_c00469{left:756.000000pt;}
.xfb_c00469{left:757.600000pt;}
.x140_c00469{left:758.800000pt;}
.x13b_c00469{left:759.733333pt;}
.x12f_c00469{left:761.333333pt;}
.x131_c00469{left:763.200000pt;}
.xc1_c00469{left:765.333333pt;}
.xb1_c00469{left:766.666667pt;}
.x123_c00469{left:768.000000pt;}
.x119_c00469{left:770.000000pt;}
}





/* 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_c00470 {
    display:none;
  }
  .loading-indicator_c00470.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00470 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_c00470 { 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_c00470" -> "#page-container .classname_c00470")
 */
.pf_c00470 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00470 { /* 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_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00470 { /* 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_c00470 { /* 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_c00470 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00470 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00470 {overflow:visible;}
  }
}
.c_c00470 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00470 { /* 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_c00470:after { /* webkit #35443 */
  content: '';
}
.t_c00470:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00470 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 */
}
.__c00470 { /* 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_c00470 { /* info for Javascript */
  display:none;
}
.l_c00470 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00470 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00470 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00470: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_c00470 {
    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_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00470.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_c00470 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00470;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.000000;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;}
.m33_c00470{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00470{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00470{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m45_c00470{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00470{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.md7_c00470{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00470{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00470{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m101_c00470{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m91_c00470{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m77_c00470{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00470{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m100_c00470{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m113_c00470{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m14_c00470{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00470{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00470{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00470{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m102_c00470{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m15_c00470{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00470{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m115_c00470{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md1_c00470{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00470{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00470{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00470{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m103_c00470{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me1_c00470{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m92_c00470{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00470{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m99_c00470{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m30_c00470{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m96_c00470{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00470{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m64_c00470{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00470{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m97_c00470{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.ma_c00470{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md_c00470{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m105_c00470{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00470{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mda_c00470{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m110_c00470{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m111_c00470{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m81_c00470{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00470{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00470{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m10_c00470{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00470{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m98_c00470{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.meb_c00470{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m44_c00470{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m112_c00470{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m58_c00470{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc_c00470{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00470{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m21_c00470{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m109_c00470{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.me_c00470{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00470{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00470{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00470{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00470{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m28_c00470{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00470{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m83_c00470{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00470{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9_c00470{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00470{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m13_c00470{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00470{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m107_c00470{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00470{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1_c00470{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m62_c00470{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00470{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00470{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00470{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mca_c00470{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m49_c00470{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00470{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mba_c00470{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00470{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m66_c00470{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m71_c00470{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00470{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m50_c00470{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m95_c00470{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mea_c00470{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mad_c00470{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00470{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00470{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00470{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mec_c00470{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m34_c00470{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m93_c00470{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m60_c00470{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00470{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m57_c00470{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00470{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m19_c00470{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00470{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m74_c00470{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00470{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m4_c00470{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mef_c00470{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me4_c00470{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.md8_c00470{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00470{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mac_c00470{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m51_c00470{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00470{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00470{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m42_c00470{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00470{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m55_c00470{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m11_c00470{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00470{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00470{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00470{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m31_c00470{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m48_c00470{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m80_c00470{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m6_c00470{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m20_c00470{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m82_c00470{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00470{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00470{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00470{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m65_c00470{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00470{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00470{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00470{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00470{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me2_c00470{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00470{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m38_c00470{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00470{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m84_c00470{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00470{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mae_c00470{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00470{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00470{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m73_c00470{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00470{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m53_c00470{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00470{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5_c00470{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m59_c00470{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00470{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00470{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00470{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.maa_c00470{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m46_c00470{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m79_c00470{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m63_c00470{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00470{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.maf_c00470{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00470{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m23_c00470{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00470{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00470{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00470{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00470{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me3_c00470{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00470{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00470{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00470{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00470{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.md0_c00470{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00470{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00470{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00470{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00470{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mce_c00470{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m18_c00470{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m32_c00470{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m104_c00470{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00470{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00470{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mff_c00470{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m108_c00470{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m61_c00470{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00470{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me8_c00470{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb_c00470{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00470{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me5_c00470{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m41_c00470{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m37_c00470{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me9_c00470{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.md5_c00470{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m35_c00470{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf_c00470{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00470{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mee_c00470{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00470{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m75_c00470{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me7_c00470{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m8_c00470{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00470{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m56_c00470{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00470{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m54_c00470{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00470{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m52_c00470{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m29_c00470{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00470{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7_c00470{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m78_c00470{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mde_c00470{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00470{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m22_c00470{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m36_c00470{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00470{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m40_c00470{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m67_c00470{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00470{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m68_c00470{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00470{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m43_c00470{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m17_c00470{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00470{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m69_c00470{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3_c00470{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m88_c00470{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m26_c00470{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m90_c00470{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00470{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00470{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00470{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md6_c00470{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m47_c00470{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md9_c00470{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00470{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00470{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00470{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00470{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.me6_c00470{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00470{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m39_c00470{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00470{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00470{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me0_c00470{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m27_c00470{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00470{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00470{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m76_c00470{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00470{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m70_c00470{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m16_c00470{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mab_c00470{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.md4_c00470{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m24_c00470{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00470{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00470{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m12_c00470{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00470{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c00470{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m89_c00470{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.md2_c00470{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00470{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00470{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00470{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.md3_c00470{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m87_c00470{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m106_c00470{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m86_c00470{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00470{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00470{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m117_c00470{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00470{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m72_c00470{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.med_c00470{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00470{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m85_c00470{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m114_c00470{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.476750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476750,0.000000,0.000000,0.250000,0,0);}
.m116_c00470{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m94_c00470{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m119_c00470{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m118_c00470{transform:matrix(1.908000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.908000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.908000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls0_c00470{letter-spacing:0.000000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{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__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00470{word-spacing:-14.292994px;}
.ws4_c00470{word-spacing:0.000000px;}
.ws2_c00470{word-spacing:0.714286px;}
.ws1_c00470{word-spacing:3.106614px;}
.ws0_c00470{word-spacing:31.566879px;}
.fc0_c00470{color:transparent;}
.fs6_c00470{font-size:30.000000px;}
.fs5_c00470{font-size:54.000000px;}
.fs4_c00470{font-size:60.000000px;}
.fs2_c00470{font-size:66.000000px;}
.fs3_c00470{font-size:72.000000px;}
.fs0_c00470{font-size:78.000000px;}
.fs1_c00470{font-size:102.000000px;}
.y0_c00470{bottom:0.000000px;}
.y65_c00470{bottom:22.650000px;}
.y66_c00470{bottom:178.200000px;}
.y64_c00470{bottom:197.400000px;}
.y34_c00470{bottom:197.550000px;}
.y33_c00470{bottom:215.250000px;}
.y63_c00470{bottom:215.700000px;}
.y32_c00470{bottom:232.950000px;}
.y31_c00470{bottom:250.350000px;}
.y62_c00470{bottom:259.500000px;}
.y30_c00470{bottom:268.050000px;}
.y61_c00470{bottom:279.000000px;}
.y2f_c00470{bottom:286.050000px;}
.y60_c00470{bottom:295.200000px;}
.y2e_c00470{bottom:304.050000px;}
.y5f_c00470{bottom:312.900000px;}
.y2d_c00470{bottom:322.050000px;}
.y5e_c00470{bottom:334.200000px;}
.y2c_c00470{bottom:339.750000px;}
.y5d_c00470{bottom:352.200000px;}
.y2b_c00470{bottom:357.450000px;}
.y5c_c00470{bottom:369.900000px;}
.y2a_c00470{bottom:375.150000px;}
.y5b_c00470{bottom:387.600000px;}
.y29_c00470{bottom:399.900000px;}
.y5a_c00470{bottom:405.600000px;}
.y28_c00470{bottom:414.300000px;}
.y59_c00470{bottom:423.300000px;}
.y27_c00470{bottom:428.700000px;}
.y58_c00470{bottom:440.550000px;}
.y26_c00470{bottom:453.150000px;}
.y57_c00470{bottom:458.250000px;}
.y25_c00470{bottom:470.850000px;}
.y24_c00470{bottom:488.850000px;}
.y56_c00470{bottom:489.300000px;}
.y55_c00470{bottom:509.400000px;}
.y23_c00470{bottom:510.450000px;}
.y54_c00470{bottom:524.850000px;}
.y22_c00470{bottom:528.450000px;}
.y53_c00470{bottom:542.850000px;}
.y21_c00470{bottom:546.750000px;}
.y52_c00470{bottom:560.550000px;}
.y20_c00470{bottom:564.000000px;}
.y1f_c00470{bottom:581.700000px;}
.y51_c00470{bottom:586.950000px;}
.y1e_c00470{bottom:604.050000px;}
.y50_c00470{bottom:604.650000px;}
.y4f_c00470{bottom:622.950000px;}
.y1d_c00470{bottom:634.500000px;}
.y4e_c00470{bottom:640.200000px;}
.y1c_c00470{bottom:652.500000px;}
.y4d_c00470{bottom:658.500000px;}
.y1b_c00470{bottom:669.750000px;}
.y4c_c00470{bottom:679.500000px;}
.y1a_c00470{bottom:687.750000px;}
.y4b_c00470{bottom:697.200000px;}
.y19_c00470{bottom:705.450000px;}
.y4a_c00470{bottom:715.200000px;}
.y18_c00470{bottom:723.150000px;}
.y49_c00470{bottom:732.900000px;}
.y17_c00470{bottom:740.850000px;}
.y48_c00470{bottom:750.600000px;}
.y16_c00470{bottom:762.750000px;}
.y47_c00470{bottom:768.300000px;}
.y15_c00470{bottom:780.750000px;}
.y46_c00470{bottom:786.300000px;}
.y14_c00470{bottom:798.450000px;}
.y45_c00470{bottom:803.850000px;}
.y13_c00470{bottom:816.450000px;}
.y44_c00470{bottom:821.550000px;}
.y12_c00470{bottom:834.150000px;}
.y43_c00470{bottom:846.300000px;}
.y11_c00470{bottom:852.150000px;}
.y42_c00470{bottom:860.700000px;}
.y10_c00470{bottom:869.400000px;}
.y41_c00470{bottom:880.800000px;}
.yf_c00470{bottom:887.400000px;}
.y40_c00470{bottom:898.500000px;}
.ye_c00470{bottom:905.400000px;}
.y3f_c00470{bottom:916.500000px;}
.yd_c00470{bottom:922.650000px;}
.yc_c00470{bottom:940.650000px;}
.y3e_c00470{bottom:942.900000px;}
.yb_c00470{bottom:958.350000px;}
.y3d_c00470{bottom:960.450000px;}
.y3c_c00470{bottom:978.150000px;}
.ya_c00470{bottom:982.800000px;}
.y3b_c00470{bottom:995.700000px;}
.y9_c00470{bottom:997.500000px;}
.y3a_c00470{bottom:1013.400000px;}
.y8_c00470{bottom:1022.400000px;}
.y39_c00470{bottom:1031.400000px;}
.y7_c00470{bottom:1039.950000px;}
.y38_c00470{bottom:1048.650000px;}
.y6_c00470{bottom:1057.650000px;}
.y37_c00470{bottom:1079.550000px;}
.y5_c00470{bottom:1083.600000px;}
.y36_c00470{bottom:1097.250000px;}
.y4_c00470{bottom:1101.600000px;}
.y35_c00470{bottom:1119.300000px;}
.y3_c00470{bottom:1119.900000px;}
.y2_c00470{bottom:1141.200000px;}
.y1_c00470{bottom:1145.850000px;}
.h8_c00470{height:30.000000px;}
.h7_c00470{height:54.000000px;}
.h6_c00470{height:60.000000px;}
.h4_c00470{height:66.000000px;}
.h5_c00470{height:72.000000px;}
.h2_c00470{height:78.000000px;}
.h3_c00470{height:102.000000px;}
.h0_c00470{height:1265.760040px;}
.h1_c00470{height:1266.000000px;}
.w0_c00470{width:958.320007px;}
.w1_c00470{width:958.500000px;}
.x0_c00470{left:0.000000px;}
.x28_c00470{left:87.150000px;}
.x16_c00470{left:91.050000px;}
.x31_c00470{left:104.700000px;}
.x3_c00470{left:108.750000px;}
.x9c_c00470{left:109.800000px;}
.x11_c00470{left:110.850000px;}
.x8c_c00470{left:116.700000px;}
.x89_c00470{left:120.300000px;}
.x9d_c00470{left:125.700000px;}
.x3e_c00470{left:127.500000px;}
.x4_c00470{left:132.150000px;}
.x88_c00470{left:133.800000px;}
.x17_c00470{left:135.300000px;}
.x68_c00470{left:136.500000px;}
.x12_c00470{left:138.600000px;}
.x84_c00470{left:141.600000px;}
.x4c_c00470{left:142.650000px;}
.x53_c00470{left:144.450000px;}
.x95_c00470{left:145.950000px;}
.x7f_c00470{left:147.000000px;}
.x29_c00470{left:148.050000px;}
.x45_c00470{left:149.100000px;}
.xa_c00470{left:152.550000px;}
.x32_c00470{left:156.600000px;}
.x8f_c00470{left:158.550000px;}
.x46_c00470{left:160.200000px;}
.x65_c00470{left:161.550000px;}
.x4a_c00470{left:162.750000px;}
.x8d_c00470{left:163.800000px;}
.x4d_c00470{left:166.050000px;}
.x80_c00470{left:167.100000px;}
.x74_c00470{left:168.150000px;}
.x5d_c00470{left:171.600000px;}
.x92_c00470{left:173.850000px;}
.x5_c00470{left:175.050000px;}
.x37_c00470{left:176.100000px;}
.x9a_c00470{left:177.600000px;}
.x33_c00470{left:179.700000px;}
.x1e_c00470{left:181.800000px;}
.x13_c00470{left:185.400000px;}
.x79_c00470{left:186.750000px;}
.x98_c00470{left:187.800000px;}
.x5e_c00470{left:189.900000px;}
.x2a_c00470{left:190.950000px;}
.x57_c00470{left:192.450000px;}
.x85_c00470{left:194.250000px;}
.xb_c00470{left:195.750000px;}
.x18_c00470{left:197.550000px;}
.x90_c00470{left:199.200000px;}
.x38_c00470{left:200.250000px;}
.x3f_c00470{left:203.850000px;}
.x86_c00470{left:206.550000px;}
.x9f_c00470{left:208.200000px;}
.x6f_c00470{left:210.000000px;}
.x54_c00470{left:212.100000px;}
.x34_c00470{left:213.150000px;}
.x81_c00470{left:214.650000px;}
.x6_c00470{left:217.200000px;}
.x60_c00470{left:218.250000px;}
.x14_c00470{left:219.600000px;}
.x40_c00470{left:221.100000px;}
.x47_c00470{left:222.450000px;}
.x75_c00470{left:224.250000px;}
.x1f_c00470{left:225.300000px;}
.x15_c00470{left:228.900000px;}
.x19_c00470{left:231.000000px;}
.x39_c00470{left:232.350000px;}
.x4e_c00470{left:233.400000px;}
.x83_c00470{left:235.200000px;}
.x58_c00470{left:239.550000px;}
.x69_c00470{left:240.600000px;}
.x77_c00470{left:242.700000px;}
.x93_c00470{left:243.750000px;}
.x23_c00470{left:244.950000px;}
.x76_c00470{left:246.150000px;}
.x5c_c00470{left:248.850000px;}
.x8a_c00470{left:251.400000px;}
.x3a_c00470{left:252.900000px;}
.x66_c00470{left:254.700000px;}
.xc_c00470{left:259.050000px;}
.x63_c00470{left:261.000000px;}
.x6a_c00470{left:262.200000px;}
.x4f_c00470{left:265.050000px;}
.x2b_c00470{left:267.300000px;}
.x96_c00470{left:268.500000px;}
.x35_c00470{left:270.450000px;}
.x3b_c00470{left:271.650000px;}
.x5a_c00470{left:273.750000px;}
.x41_c00470{left:276.900000px;}
.x94_c00470{left:279.450000px;}
.x24_c00470{left:280.650000px;}
.x50_c00470{left:283.050000px;}
.x61_c00470{left:284.550000px;}
.x55_c00470{left:285.600000px;}
.x7_c00470{left:286.800000px;}
.x8e_c00470{left:287.850000px;}
.x132_c00470{left:289.500000px;}
.x7a_c00470{left:291.150000px;}
.x59_c00470{left:293.550000px;}
.x25_c00470{left:295.800000px;}
.x36_c00470{left:299.550000px;}
.x3c_c00470{left:301.200000px;}
.x7c_c00470{left:302.850000px;}
.x1a_c00470{left:304.800000px;}
.x56_c00470{left:306.900000px;}
.x82_c00470{left:309.750000px;}
.x5b_c00470{left:310.800000px;}
.x1b_c00470{left:313.500000px;}
.x7b_c00470{left:314.550000px;}
.xd_c00470{left:317.700000px;}
.x70_c00470{left:319.350000px;}
.x42_c00470{left:321.900000px;}
.x51_c00470{left:322.950000px;}
.x8_c00470{left:324.600000px;}
.x26_c00470{left:326.400000px;}
.x64_c00470{left:327.900000px;}
.x1_c00470{left:331.500000px;}
.x20_c00470{left:333.300000px;}
.x87_c00470{left:334.650000px;}
.x67_c00470{left:336.750000px;}
.x62_c00470{left:340.350000px;}
.x2c_c00470{left:341.850000px;}
.xe_c00470{left:344.700000px;}
.x27_c00470{left:346.500000px;}
.x97_c00470{left:349.050000px;}
.x2d_c00470{left:350.850000px;}
.x4b_c00470{left:352.500000px;}
.x21_c00470{left:353.850000px;}
.x71_c00470{left:355.350000px;}
.x5f_c00470{left:356.550000px;}
.x48_c00470{left:361.350000px;}
.x9_c00470{left:364.500000px;}
.x73_c00470{left:366.750000px;}
.x6d_c00470{left:368.700000px;}
.x1c_c00470{left:370.800000px;}
.x72_c00470{left:374.100000px;}
.x78_c00470{left:375.300000px;}
.x43_c00470{left:376.650000px;}
.xf_c00470{left:377.850000px;}
.x6b_c00470{left:379.800000px;}
.x91_c00470{left:383.400000px;}
.x8b_c00470{left:384.900000px;}
.x2e_c00470{left:386.550000px;}
.x22_c00470{left:388.050000px;}
.x99_c00470{left:389.250000px;}
.x6e_c00470{left:391.050000px;}
.x52_c00470{left:392.100000px;}
.x1d_c00470{left:395.700000px;}
.x3d_c00470{left:397.500000px;}
.x7e_c00470{left:400.050000px;}
.x49_c00470{left:402.450000px;}
.x6c_c00470{left:406.800000px;}
.x2f_c00470{left:407.850000px;}
.x7d_c00470{left:409.050000px;}
.x9b_c00470{left:410.850000px;}
.x44_c00470{left:412.350000px;}
.x10_c00470{left:415.350000px;}
.x9e_c00470{left:433.500000px;}
.x30_c00470{left:438.750000px;}
.xde_c00470{left:446.100000px;}
.xa8_c00470{left:447.150000px;}
.x117_c00470{left:448.200000px;}
.xbd_c00470{left:452.550000px;}
.x130_c00470{left:458.700000px;}
.xe2_c00470{left:460.650000px;}
.xbe_c00470{left:463.350000px;}
.xa0_c00470{left:464.700000px;}
.xc5_c00470{left:466.500000px;}
.x104_c00470{left:470.250000px;}
.x101_c00470{left:473.400000px;}
.x124_c00470{left:476.250000px;}
.x105_c00470{left:481.800000px;}
.xb7_c00470{left:483.450000px;}
.xf2_c00470{left:484.800000px;}
.xa1_c00470{left:488.850000px;}
.xb2_c00470{left:490.650000px;}
.xd2_c00470{left:492.450000px;}
.x115_c00470{left:494.250000px;}
.x118_c00470{left:496.500000px;}
.xd7_c00470{left:499.200000px;}
.xaf_c00470{left:501.150000px;}
.xc6_c00470{left:502.500000px;}
.xdc_c00470{left:507.150000px;}
.x10b_c00470{left:508.650000px;}
.x10e_c00470{left:509.700000px;}
.xbf_c00470{left:510.900000px;}
.x106_c00470{left:514.950000px;}
.xe7_c00470{left:516.900000px;}
.x113_c00470{left:519.600000px;}
.x126_c00470{left:521.550000px;}
.xb3_c00470{left:525.600000px;}
.x11c_c00470{left:527.700000px;}
.xc7_c00470{left:528.750000px;}
.x10f_c00470{left:530.250000px;}
.xb8_c00470{left:531.750000px;}
.xe3_c00470{left:533.100000px;}
.x116_c00470{left:535.050000px;}
.xdd_c00470{left:536.250000px;}
.x10c_c00470{left:537.450000px;}
.xa2_c00470{left:538.950000px;}
.xa9_c00470{left:542.550000px;}
.x119_c00470{left:544.800000px;}
.x109_c00470{left:546.150000px;}
.x127_c00470{left:548.250000px;}
.xeb_c00470{left:551.550000px;}
.xe8_c00470{left:552.600000px;}
.xc8_c00470{left:555.750000px;}
.xc0_c00470{left:557.700000px;}
.xf3_c00470{left:560.400000px;}
.xb0_c00470{left:564.450000px;}
.x12d_c00470{left:565.950000px;}
.xdf_c00470{left:568.050000px;}
.xfc_c00470{left:570.900000px;}
.xe9_c00470{left:574.200000px;}
.xb9_c00470{left:575.250000px;}
.x114_c00470{left:578.700000px;}
.xe4_c00470{left:579.900000px;}
.x11d_c00470{left:581.400000px;}
.xc9_c00470{left:583.050000px;}
.xb1_c00470{left:584.550000px;}
.xf4_c00470{left:585.900000px;}
.xb4_c00470{left:587.250000px;}
.xcd_c00470{left:588.600000px;}
.xf8_c00470{left:591.750000px;}
.x128_c00470{left:592.950000px;}
.xc1_c00470{left:595.200000px;}
.xaa_c00470{left:597.300000px;}
.xe5_c00470{left:599.700000px;}
.x11a_c00470{left:600.900000px;}
.x11f_c00470{left:603.300000px;}
.x10a_c00470{left:604.500000px;}
.xca_c00470{left:606.150000px;}
.x110_c00470{left:607.200000px;}
.xba_c00470{left:610.950000px;}
.xec_c00470{left:613.500000px;}
.xa3_c00470{left:617.850000px;}
.xce_c00470{left:619.950000px;}
.x111_c00470{left:621.600000px;}
.x102_c00470{left:623.250000px;}
.xfd_c00470{left:626.400000px;}
.xcb_c00470{left:628.050000px;}
.x12a_c00470{left:630.300000px;}
.xab_c00470{left:631.500000px;}
.xc2_c00470{left:633.300000px;}
.x120_c00470{left:639.300000px;}
.x107_c00470{left:640.950000px;}
.xa4_c00470{left:642.300000px;}
.x12e_c00470{left:645.900000px;}
.x129_c00470{left:650.400000px;}
.x12c_c00470{left:652.950000px;}
.xc3_c00470{left:654.600000px;}
.xd8_c00470{left:656.850000px;}
.xcf_c00470{left:658.500000px;}
.xac_c00470{left:661.050000px;}
.xed_c00470{left:663.150000px;}
.xd3_c00470{left:666.150000px;}
.xe6_c00470{left:667.350000px;}
.x11e_c00470{left:668.850000px;}
.xe0_c00470{left:673.800000px;}
.xfe_c00470{left:675.000000px;}
.x121_c00470{left:676.350000px;}
.xd9_c00470{left:678.150000px;}
.xfa_c00470{left:680.100000px;}
.xd4_c00470{left:683.100000px;}
.xee_c00470{left:685.050000px;}
.x12b_c00470{left:687.900000px;}
.x10d_c00470{left:691.500000px;}
.xa5_c00470{left:693.450000px;}
.x131_c00470{left:695.850000px;}
.xf5_c00470{left:697.500000px;}
.xb5_c00470{left:698.850000px;}
.xe1_c00470{left:700.050000px;}
.xbb_c00470{left:702.450000px;}
.x11b_c00470{left:703.500000px;}
.xf6_c00470{left:709.050000px;}
.xff_c00470{left:711.300000px;}
.x12f_c00470{left:712.950000px;}
.x133_c00470{left:714.000000px;}
.xa6_c00470{left:715.800000px;}
.xf1_c00470{left:718.050000px;}
.xd0_c00470{left:719.400000px;}
.xef_c00470{left:721.050000px;}
.x108_c00470{left:722.700000px;}
.x100_c00470{left:725.400000px;}
.x103_c00470{left:730.200000px;}
.xc4_c00470{left:731.400000px;}
.x122_c00470{left:733.650000px;}
.xad_c00470{left:734.850000px;}
.xda_c00470{left:736.800000px;}
.xa7_c00470{left:740.250000px;}
.xd5_c00470{left:741.450000px;}
.xb6_c00470{left:744.600000px;}
.xd1_c00470{left:745.650000px;}
.x112_c00470{left:747.150000px;}
.xbc_c00470{left:748.950000px;}
.xf7_c00470{left:750.750000px;}
.x123_c00470{left:751.950000px;}
.x125_c00470{left:754.050000px;}
.x2_c00470{left:755.250000px;}
.xf9_c00470{left:756.900000px;}
.xdb_c00470{left:760.500000px;}
.xcc_c00470{left:763.050000px;}
.xfb_c00470{left:765.000000px;}
.xae_c00470{left:767.250000px;}
.xea_c00470{left:768.600000px;}
.xd6_c00470{left:776.400000px;}
.xf0_c00470{left:779.400000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws3_c00470{word-spacing:-12.704883pt;}
.ws4_c00470{word-spacing:0.000000pt;}
.ws2_c00470{word-spacing:0.634921pt;}
.ws1_c00470{word-spacing:2.761435pt;}
.ws0_c00470{word-spacing:28.059448pt;}
.fs6_c00470{font-size:26.666667pt;}
.fs5_c00470{font-size:48.000000pt;}
.fs4_c00470{font-size:53.333333pt;}
.fs2_c00470{font-size:58.666667pt;}
.fs3_c00470{font-size:64.000000pt;}
.fs0_c00470{font-size:69.333333pt;}
.fs1_c00470{font-size:90.666667pt;}
.y0_c00470{bottom:0.000000pt;}
.y65_c00470{bottom:20.133333pt;}
.y66_c00470{bottom:158.400000pt;}
.y64_c00470{bottom:175.466667pt;}
.y34_c00470{bottom:175.600000pt;}
.y33_c00470{bottom:191.333333pt;}
.y63_c00470{bottom:191.733333pt;}
.y32_c00470{bottom:207.066667pt;}
.y31_c00470{bottom:222.533333pt;}
.y62_c00470{bottom:230.666667pt;}
.y30_c00470{bottom:238.266667pt;}
.y61_c00470{bottom:248.000000pt;}
.y2f_c00470{bottom:254.266667pt;}
.y60_c00470{bottom:262.400000pt;}
.y2e_c00470{bottom:270.266667pt;}
.y5f_c00470{bottom:278.133333pt;}
.y2d_c00470{bottom:286.266667pt;}
.y5e_c00470{bottom:297.066667pt;}
.y2c_c00470{bottom:302.000000pt;}
.y5d_c00470{bottom:313.066667pt;}
.y2b_c00470{bottom:317.733333pt;}
.y5c_c00470{bottom:328.800000pt;}
.y2a_c00470{bottom:333.466667pt;}
.y5b_c00470{bottom:344.533333pt;}
.y29_c00470{bottom:355.466667pt;}
.y5a_c00470{bottom:360.533333pt;}
.y28_c00470{bottom:368.266667pt;}
.y59_c00470{bottom:376.266667pt;}
.y27_c00470{bottom:381.066667pt;}
.y58_c00470{bottom:391.600000pt;}
.y26_c00470{bottom:402.800000pt;}
.y57_c00470{bottom:407.333333pt;}
.y25_c00470{bottom:418.533333pt;}
.y24_c00470{bottom:434.533333pt;}
.y56_c00470{bottom:434.933333pt;}
.y55_c00470{bottom:452.800000pt;}
.y23_c00470{bottom:453.733333pt;}
.y54_c00470{bottom:466.533333pt;}
.y22_c00470{bottom:469.733333pt;}
.y53_c00470{bottom:482.533333pt;}
.y21_c00470{bottom:486.000000pt;}
.y52_c00470{bottom:498.266667pt;}
.y20_c00470{bottom:501.333333pt;}
.y1f_c00470{bottom:517.066667pt;}
.y51_c00470{bottom:521.733333pt;}
.y1e_c00470{bottom:536.933333pt;}
.y50_c00470{bottom:537.466667pt;}
.y4f_c00470{bottom:553.733333pt;}
.y1d_c00470{bottom:564.000000pt;}
.y4e_c00470{bottom:569.066667pt;}
.y1c_c00470{bottom:580.000000pt;}
.y4d_c00470{bottom:585.333333pt;}
.y1b_c00470{bottom:595.333333pt;}
.y4c_c00470{bottom:604.000000pt;}
.y1a_c00470{bottom:611.333333pt;}
.y4b_c00470{bottom:619.733333pt;}
.y19_c00470{bottom:627.066667pt;}
.y4a_c00470{bottom:635.733333pt;}
.y18_c00470{bottom:642.800000pt;}
.y49_c00470{bottom:651.466667pt;}
.y17_c00470{bottom:658.533333pt;}
.y48_c00470{bottom:667.200000pt;}
.y16_c00470{bottom:678.000000pt;}
.y47_c00470{bottom:682.933333pt;}
.y15_c00470{bottom:694.000000pt;}
.y46_c00470{bottom:698.933333pt;}
.y14_c00470{bottom:709.733333pt;}
.y45_c00470{bottom:714.533333pt;}
.y13_c00470{bottom:725.733333pt;}
.y44_c00470{bottom:730.266667pt;}
.y12_c00470{bottom:741.466667pt;}
.y43_c00470{bottom:752.266667pt;}
.y11_c00470{bottom:757.466667pt;}
.y42_c00470{bottom:765.066667pt;}
.y10_c00470{bottom:772.800000pt;}
.y41_c00470{bottom:782.933333pt;}
.yf_c00470{bottom:788.800000pt;}
.y40_c00470{bottom:798.666667pt;}
.ye_c00470{bottom:804.800000pt;}
.y3f_c00470{bottom:814.666667pt;}
.yd_c00470{bottom:820.133333pt;}
.yc_c00470{bottom:836.133333pt;}
.y3e_c00470{bottom:838.133333pt;}
.yb_c00470{bottom:851.866667pt;}
.y3d_c00470{bottom:853.733333pt;}
.y3c_c00470{bottom:869.466667pt;}
.ya_c00470{bottom:873.600000pt;}
.y3b_c00470{bottom:885.066667pt;}
.y9_c00470{bottom:886.666667pt;}
.y3a_c00470{bottom:900.800000pt;}
.y8_c00470{bottom:908.800000pt;}
.y39_c00470{bottom:916.800000pt;}
.y7_c00470{bottom:924.400000pt;}
.y38_c00470{bottom:932.133333pt;}
.y6_c00470{bottom:940.133333pt;}
.y37_c00470{bottom:959.600000pt;}
.y5_c00470{bottom:963.200000pt;}
.y36_c00470{bottom:975.333333pt;}
.y4_c00470{bottom:979.200000pt;}
.y35_c00470{bottom:994.933333pt;}
.y3_c00470{bottom:995.466667pt;}
.y2_c00470{bottom:1014.400000pt;}
.y1_c00470{bottom:1018.533333pt;}
.h8_c00470{height:26.666667pt;}
.h7_c00470{height:48.000000pt;}
.h6_c00470{height:53.333333pt;}
.h4_c00470{height:58.666667pt;}
.h5_c00470{height:64.000000pt;}
.h2_c00470{height:69.333333pt;}
.h3_c00470{height:90.666667pt;}
.h0_c00470{height:1125.120036pt;}
.h1_c00470{height:1125.333333pt;}
.w0_c00470{width:851.840007pt;}
.w1_c00470{width:852.000000pt;}
.x0_c00470{left:0.000000pt;}
.x28_c00470{left:77.466667pt;}
.x16_c00470{left:80.933333pt;}
.x31_c00470{left:93.066667pt;}
.x3_c00470{left:96.666667pt;}
.x9c_c00470{left:97.600000pt;}
.x11_c00470{left:98.533333pt;}
.x8c_c00470{left:103.733333pt;}
.x89_c00470{left:106.933333pt;}
.x9d_c00470{left:111.733333pt;}
.x3e_c00470{left:113.333333pt;}
.x4_c00470{left:117.466667pt;}
.x88_c00470{left:118.933333pt;}
.x17_c00470{left:120.266667pt;}
.x68_c00470{left:121.333333pt;}
.x12_c00470{left:123.200000pt;}
.x84_c00470{left:125.866667pt;}
.x4c_c00470{left:126.800000pt;}
.x53_c00470{left:128.400000pt;}
.x95_c00470{left:129.733333pt;}
.x7f_c00470{left:130.666667pt;}
.x29_c00470{left:131.600000pt;}
.x45_c00470{left:132.533333pt;}
.xa_c00470{left:135.600000pt;}
.x32_c00470{left:139.200000pt;}
.x8f_c00470{left:140.933333pt;}
.x46_c00470{left:142.400000pt;}
.x65_c00470{left:143.600000pt;}
.x4a_c00470{left:144.666667pt;}
.x8d_c00470{left:145.600000pt;}
.x4d_c00470{left:147.600000pt;}
.x80_c00470{left:148.533333pt;}
.x74_c00470{left:149.466667pt;}
.x5d_c00470{left:152.533333pt;}
.x92_c00470{left:154.533333pt;}
.x5_c00470{left:155.600000pt;}
.x37_c00470{left:156.533333pt;}
.x9a_c00470{left:157.866667pt;}
.x33_c00470{left:159.733333pt;}
.x1e_c00470{left:161.600000pt;}
.x13_c00470{left:164.800000pt;}
.x79_c00470{left:166.000000pt;}
.x98_c00470{left:166.933333pt;}
.x5e_c00470{left:168.800000pt;}
.x2a_c00470{left:169.733333pt;}
.x57_c00470{left:171.066667pt;}
.x85_c00470{left:172.666667pt;}
.xb_c00470{left:174.000000pt;}
.x18_c00470{left:175.600000pt;}
.x90_c00470{left:177.066667pt;}
.x38_c00470{left:178.000000pt;}
.x3f_c00470{left:181.200000pt;}
.x86_c00470{left:183.600000pt;}
.x9f_c00470{left:185.066667pt;}
.x6f_c00470{left:186.666667pt;}
.x54_c00470{left:188.533333pt;}
.x34_c00470{left:189.466667pt;}
.x81_c00470{left:190.800000pt;}
.x6_c00470{left:193.066667pt;}
.x60_c00470{left:194.000000pt;}
.x14_c00470{left:195.200000pt;}
.x40_c00470{left:196.533333pt;}
.x47_c00470{left:197.733333pt;}
.x75_c00470{left:199.333333pt;}
.x1f_c00470{left:200.266667pt;}
.x15_c00470{left:203.466667pt;}
.x19_c00470{left:205.333333pt;}
.x39_c00470{left:206.533333pt;}
.x4e_c00470{left:207.466667pt;}
.x83_c00470{left:209.066667pt;}
.x58_c00470{left:212.933333pt;}
.x69_c00470{left:213.866667pt;}
.x77_c00470{left:215.733333pt;}
.x93_c00470{left:216.666667pt;}
.x23_c00470{left:217.733333pt;}
.x76_c00470{left:218.800000pt;}
.x5c_c00470{left:221.200000pt;}
.x8a_c00470{left:223.466667pt;}
.x3a_c00470{left:224.800000pt;}
.x66_c00470{left:226.400000pt;}
.xc_c00470{left:230.266667pt;}
.x63_c00470{left:232.000000pt;}
.x6a_c00470{left:233.066667pt;}
.x4f_c00470{left:235.600000pt;}
.x2b_c00470{left:237.600000pt;}
.x96_c00470{left:238.666667pt;}
.x35_c00470{left:240.400000pt;}
.x3b_c00470{left:241.466667pt;}
.x5a_c00470{left:243.333333pt;}
.x41_c00470{left:246.133333pt;}
.x94_c00470{left:248.400000pt;}
.x24_c00470{left:249.466667pt;}
.x50_c00470{left:251.600000pt;}
.x61_c00470{left:252.933333pt;}
.x55_c00470{left:253.866667pt;}
.x7_c00470{left:254.933333pt;}
.x8e_c00470{left:255.866667pt;}
.x132_c00470{left:257.333333pt;}
.x7a_c00470{left:258.800000pt;}
.x59_c00470{left:260.933333pt;}
.x25_c00470{left:262.933333pt;}
.x36_c00470{left:266.266667pt;}
.x3c_c00470{left:267.733333pt;}
.x7c_c00470{left:269.200000pt;}
.x1a_c00470{left:270.933333pt;}
.x56_c00470{left:272.800000pt;}
.x82_c00470{left:275.333333pt;}
.x5b_c00470{left:276.266667pt;}
.x1b_c00470{left:278.666667pt;}
.x7b_c00470{left:279.600000pt;}
.xd_c00470{left:282.400000pt;}
.x70_c00470{left:283.866667pt;}
.x42_c00470{left:286.133333pt;}
.x51_c00470{left:287.066667pt;}
.x8_c00470{left:288.533333pt;}
.x26_c00470{left:290.133333pt;}
.x64_c00470{left:291.466667pt;}
.x1_c00470{left:294.666667pt;}
.x20_c00470{left:296.266667pt;}
.x87_c00470{left:297.466667pt;}
.x67_c00470{left:299.333333pt;}
.x62_c00470{left:302.533333pt;}
.x2c_c00470{left:303.866667pt;}
.xe_c00470{left:306.400000pt;}
.x27_c00470{left:308.000000pt;}
.x97_c00470{left:310.266667pt;}
.x2d_c00470{left:311.866667pt;}
.x4b_c00470{left:313.333333pt;}
.x21_c00470{left:314.533333pt;}
.x71_c00470{left:315.866667pt;}
.x5f_c00470{left:316.933333pt;}
.x48_c00470{left:321.200000pt;}
.x9_c00470{left:324.000000pt;}
.x73_c00470{left:326.000000pt;}
.x6d_c00470{left:327.733333pt;}
.x1c_c00470{left:329.600000pt;}
.x72_c00470{left:332.533333pt;}
.x78_c00470{left:333.600000pt;}
.x43_c00470{left:334.800000pt;}
.xf_c00470{left:335.866667pt;}
.x6b_c00470{left:337.600000pt;}
.x91_c00470{left:340.800000pt;}
.x8b_c00470{left:342.133333pt;}
.x2e_c00470{left:343.600000pt;}
.x22_c00470{left:344.933333pt;}
.x99_c00470{left:346.000000pt;}
.x6e_c00470{left:347.600000pt;}
.x52_c00470{left:348.533333pt;}
.x1d_c00470{left:351.733333pt;}
.x3d_c00470{left:353.333333pt;}
.x7e_c00470{left:355.600000pt;}
.x49_c00470{left:357.733333pt;}
.x6c_c00470{left:361.600000pt;}
.x2f_c00470{left:362.533333pt;}
.x7d_c00470{left:363.600000pt;}
.x9b_c00470{left:365.200000pt;}
.x44_c00470{left:366.533333pt;}
.x10_c00470{left:369.200000pt;}
.x9e_c00470{left:385.333333pt;}
.x30_c00470{left:390.000000pt;}
.xde_c00470{left:396.533333pt;}
.xa8_c00470{left:397.466667pt;}
.x117_c00470{left:398.400000pt;}
.xbd_c00470{left:402.266667pt;}
.x130_c00470{left:407.733333pt;}
.xe2_c00470{left:409.466667pt;}
.xbe_c00470{left:411.866667pt;}
.xa0_c00470{left:413.066667pt;}
.xc5_c00470{left:414.666667pt;}
.x104_c00470{left:418.000000pt;}
.x101_c00470{left:420.800000pt;}
.x124_c00470{left:423.333333pt;}
.x105_c00470{left:428.266667pt;}
.xb7_c00470{left:429.733333pt;}
.xf2_c00470{left:430.933333pt;}
.xa1_c00470{left:434.533333pt;}
.xb2_c00470{left:436.133333pt;}
.xd2_c00470{left:437.733333pt;}
.x115_c00470{left:439.333333pt;}
.x118_c00470{left:441.333333pt;}
.xd7_c00470{left:443.733333pt;}
.xaf_c00470{left:445.466667pt;}
.xc6_c00470{left:446.666667pt;}
.xdc_c00470{left:450.800000pt;}
.x10b_c00470{left:452.133333pt;}
.x10e_c00470{left:453.066667pt;}
.xbf_c00470{left:454.133333pt;}
.x106_c00470{left:457.733333pt;}
.xe7_c00470{left:459.466667pt;}
.x113_c00470{left:461.866667pt;}
.x126_c00470{left:463.600000pt;}
.xb3_c00470{left:467.200000pt;}
.x11c_c00470{left:469.066667pt;}
.xc7_c00470{left:470.000000pt;}
.x10f_c00470{left:471.333333pt;}
.xb8_c00470{left:472.666667pt;}
.xe3_c00470{left:473.866667pt;}
.x116_c00470{left:475.600000pt;}
.xdd_c00470{left:476.666667pt;}
.x10c_c00470{left:477.733333pt;}
.xa2_c00470{left:479.066667pt;}
.xa9_c00470{left:482.266667pt;}
.x119_c00470{left:484.266667pt;}
.x109_c00470{left:485.466667pt;}
.x127_c00470{left:487.333333pt;}
.xeb_c00470{left:490.266667pt;}
.xe8_c00470{left:491.200000pt;}
.xc8_c00470{left:494.000000pt;}
.xc0_c00470{left:495.733333pt;}
.xf3_c00470{left:498.133333pt;}
.xb0_c00470{left:501.733333pt;}
.x12d_c00470{left:503.066667pt;}
.xdf_c00470{left:504.933333pt;}
.xfc_c00470{left:507.466667pt;}
.xe9_c00470{left:510.400000pt;}
.xb9_c00470{left:511.333333pt;}
.x114_c00470{left:514.400000pt;}
.xe4_c00470{left:515.466667pt;}
.x11d_c00470{left:516.800000pt;}
.xc9_c00470{left:518.266667pt;}
.xb1_c00470{left:519.600000pt;}
.xf4_c00470{left:520.800000pt;}
.xb4_c00470{left:522.000000pt;}
.xcd_c00470{left:523.200000pt;}
.xf8_c00470{left:526.000000pt;}
.x128_c00470{left:527.066667pt;}
.xc1_c00470{left:529.066667pt;}
.xaa_c00470{left:530.933333pt;}
.xe5_c00470{left:533.066667pt;}
.x11a_c00470{left:534.133333pt;}
.x11f_c00470{left:536.266667pt;}
.x10a_c00470{left:537.333333pt;}
.xca_c00470{left:538.800000pt;}
.x110_c00470{left:539.733333pt;}
.xba_c00470{left:543.066667pt;}
.xec_c00470{left:545.333333pt;}
.xa3_c00470{left:549.200000pt;}
.xce_c00470{left:551.066667pt;}
.x111_c00470{left:552.533333pt;}
.x102_c00470{left:554.000000pt;}
.xfd_c00470{left:556.800000pt;}
.xcb_c00470{left:558.266667pt;}
.x12a_c00470{left:560.266667pt;}
.xab_c00470{left:561.333333pt;}
.xc2_c00470{left:562.933333pt;}
.x120_c00470{left:568.266667pt;}
.x107_c00470{left:569.733333pt;}
.xa4_c00470{left:570.933333pt;}
.x12e_c00470{left:574.133333pt;}
.x129_c00470{left:578.133333pt;}
.x12c_c00470{left:580.400000pt;}
.xc3_c00470{left:581.866667pt;}
.xd8_c00470{left:583.866667pt;}
.xcf_c00470{left:585.333333pt;}
.xac_c00470{left:587.600000pt;}
.xed_c00470{left:589.466667pt;}
.xd3_c00470{left:592.133333pt;}
.xe6_c00470{left:593.200000pt;}
.x11e_c00470{left:594.533333pt;}
.xe0_c00470{left:598.933333pt;}
.xfe_c00470{left:600.000000pt;}
.x121_c00470{left:601.200000pt;}
.xd9_c00470{left:602.800000pt;}
.xfa_c00470{left:604.533333pt;}
.xd4_c00470{left:607.200000pt;}
.xee_c00470{left:608.933333pt;}
.x12b_c00470{left:611.466667pt;}
.x10d_c00470{left:614.666667pt;}
.xa5_c00470{left:616.400000pt;}
.x131_c00470{left:618.533333pt;}
.xf5_c00470{left:620.000000pt;}
.xb5_c00470{left:621.200000pt;}
.xe1_c00470{left:622.266667pt;}
.xbb_c00470{left:624.400000pt;}
.x11b_c00470{left:625.333333pt;}
.xf6_c00470{left:630.266667pt;}
.xff_c00470{left:632.266667pt;}
.x12f_c00470{left:633.733333pt;}
.x133_c00470{left:634.666667pt;}
.xa6_c00470{left:636.266667pt;}
.xf1_c00470{left:638.266667pt;}
.xd0_c00470{left:639.466667pt;}
.xef_c00470{left:640.933333pt;}
.x108_c00470{left:642.400000pt;}
.x100_c00470{left:644.800000pt;}
.x103_c00470{left:649.066667pt;}
.xc4_c00470{left:650.133333pt;}
.x122_c00470{left:652.133333pt;}
.xad_c00470{left:653.200000pt;}
.xda_c00470{left:654.933333pt;}
.xa7_c00470{left:658.000000pt;}
.xd5_c00470{left:659.066667pt;}
.xb6_c00470{left:661.866667pt;}
.xd1_c00470{left:662.800000pt;}
.x112_c00470{left:664.133333pt;}
.xbc_c00470{left:665.733333pt;}
.xf7_c00470{left:667.333333pt;}
.x123_c00470{left:668.400000pt;}
.x125_c00470{left:670.266667pt;}
.x2_c00470{left:671.333333pt;}
.xf9_c00470{left:672.800000pt;}
.xdb_c00470{left:676.000000pt;}
.xcc_c00470{left:678.266667pt;}
.xfb_c00470{left:680.000000pt;}
.xae_c00470{left:682.000000pt;}
.xea_c00470{left:683.200000pt;}
.xd6_c00470{left:690.133333pt;}
.xf0_c00470{left:692.800000pt;}
}





/* 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_c00471 {
    display:none;
  }
  .loading-indicator_c00471.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00471 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_c00471 { 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_c00471" -> "#page-container .classname_c00471")
 */
.pf_c00471 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00471 { /* 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_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00471 { /* 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_c00471 { /* 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_c00471 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00471 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00471 {overflow:visible;}
  }
}
.c_c00471 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00471 { /* 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_c00471:after { /* webkit #35443 */
  content: '';
}
.t_c00471:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00471 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 */
}
.__c00471 { /* 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_c00471 { /* info for Javascript */
  display:none;
}
.l_c00471 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00471 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00471 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00471: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_c00471 {
    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_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00471.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_c00471 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00471{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00471;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.000000;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;}
.m114_c00471{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00471{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mba_c00471{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m115_c00471{transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);}
.m110_c00471{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m69_c00471{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m124_c00471{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.med_c00471{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.me0_c00471{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00471{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00471{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00471{transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);}
.m15_c00471{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m106_c00471{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.mde_c00471{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.me6_c00471{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m21_c00471{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mce_c00471{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00471{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00471{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.md9_c00471{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00471{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m111_c00471{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m96_c00471{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00471{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m50_c00471{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mae_c00471{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma_c00471{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00471{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m107_c00471{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00471{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00471{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00471{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00471{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00471{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00471{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00471{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m32_c00471{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00471{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m62_c00471{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc_c00471{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m108_c00471{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00471{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00471{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00471{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m31_c00471{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00471{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00471{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md5_c00471{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m17_c00471{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00471{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00471{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m68_c00471{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m18_c00471{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.md8_c00471{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m55_c00471{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00471{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m52_c00471{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00471{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00471{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m5_c00471{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m57_c00471{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m104_c00471{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m79_c00471{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.me7_c00471{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00471{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mef_c00471{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m48_c00471{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00471{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me3_c00471{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.md_c00471{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m93_c00471{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00471{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00471{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00471{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00471{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m89_c00471{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00471{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00471{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m77_c00471{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m51_c00471{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m67_c00471{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00471{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00471{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00471{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m38_c00471{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m10_c00471{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8_c00471{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m88_c00471{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m109_c00471{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.md7_c00471{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00471{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m102_c00471{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mac_c00471{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m113_c00471{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00471{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00471{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00471{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mb_c00471{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00471{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md6_c00471{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m45_c00471{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m105_c00471{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m25_c00471{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m43_c00471{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00471{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.maa_c00471{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00471{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m26_c00471{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00471{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00471{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m98_c00471{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00471{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m99_c00471{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00471{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m97_c00471{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00471{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m75_c00471{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00471{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m70_c00471{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00471{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00471{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me_c00471{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00471{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m33_c00471{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md0_c00471{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.me1_c00471{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00471{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m103_c00471{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00471{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m30_c00471{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00471{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00471{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m14_c00471{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md2_c00471{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00471{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m46_c00471{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00471{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m125_c00471{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00471{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00471{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00471{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m100_c00471{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m78_c00471{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m44_c00471{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m24_c00471{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00471{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00471{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m19_c00471{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00471{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.me4_c00471{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00471{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m85_c00471{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m83_c00471{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00471{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m37_c00471{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me2_c00471{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m13_c00471{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00471{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m87_c00471{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m95_c00471{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mda_c00471{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00471{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00471{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m56_c00471{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m49_c00471{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00471{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00471{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m119_c00471{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00471{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m73_c00471{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m20_c00471{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mff_c00471{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00471{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mad_c00471{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me5_c00471{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00471{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00471{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m27_c00471{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00471{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00471{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m127_c00471{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m4_c00471{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m11_c00471{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m116_c00471{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m36_c00471{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m47_c00471{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me9_c00471{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m35_c00471{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7_c00471{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m54_c00471{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00471{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m72_c00471{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m94_c00471{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00471{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00471{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00471{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00471{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00471{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00471{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00471{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00471{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00471{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00471{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00471{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md4_c00471{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m29_c00471{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m84_c00471{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00471{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m39_c00471{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m92_c00471{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00471{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00471{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00471{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m66_c00471{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00471{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6_c00471{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m71_c00471{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m74_c00471{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m123_c00471{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00471{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m9_c00471{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m63_c00471{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00471{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00471{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m16_c00471{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m61_c00471{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m53_c00471{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m12_c00471{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m76_c00471{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00471{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m64_c00471{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf_c00471{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00471{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00471{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m65_c00471{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m112_c00471{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m28_c00471{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00471{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00471{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00471{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00471{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00471{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m117_c00471{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m34_c00471{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m126_c00471{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00471{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m122_c00471{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m42_c00471{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00471{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00471{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00471{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mca_c00471{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m128_c00471{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m90_c00471{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m23_c00471{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m86_c00471{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00471{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m121_c00471{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00471{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mec_c00471{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00471{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00471{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me8_c00471{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.md1_c00471{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00471{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.md3_c00471{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mea_c00471{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00471{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.mab_c00471{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.maf_c00471{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00471{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m118_c00471{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00471{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m80_c00471{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mee_c00471{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m82_c00471{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00471{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m91_c00471{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00471{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00471{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m60_c00471{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00471{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m101_c00471{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.meb_c00471{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00471{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.m120_c00471{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m81_c00471{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00471{transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);}
.m59_c00471{transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);}
.m58_c00471{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.m41_c00471{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m40_c00471{transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480750,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls0_c00471{letter-spacing:0.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{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__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00471{word-spacing:-8.611111px;}
.ws8_c00471{word-spacing:-3.846154px;}
.ws2_c00471{word-spacing:-1.956522px;}
.ws3_c00471{word-spacing:0.000000px;}
.ws0_c00471{word-spacing:1.666667px;}
.ws7_c00471{word-spacing:4.207101px;}
.ws4_c00471{word-spacing:10.000000px;}
.ws6_c00471{word-spacing:16.079137px;}
.ws5_c00471{word-spacing:22.812500px;}
.fc0_c00471{color:transparent;}
.fs4_c00471{font-size:48.000000px;}
.fs3_c00471{font-size:54.000000px;}
.fs2_c00471{font-size:60.000000px;}
.fs1_c00471{font-size:66.000000px;}
.fs0_c00471{font-size:78.000000px;}
.y0_c00471{bottom:0.000000px;}
.y75_c00471{bottom:199.350000px;}
.y44_c00471{bottom:204.450000px;}
.y74_c00471{bottom:213.450000px;}
.y73_c00471{bottom:228.600000px;}
.y43_c00471{bottom:232.200000px;}
.y72_c00471{bottom:242.700000px;}
.y42_c00471{bottom:246.300000px;}
.y71_c00471{bottom:257.100000px;}
.y41_c00471{bottom:260.400000px;}
.y70_c00471{bottom:271.500000px;}
.y40_c00471{bottom:275.100000px;}
.y3f_c00471{bottom:288.750000px;}
.y6f_c00471{bottom:289.950000px;}
.y3e_c00471{bottom:302.850000px;}
.y6e_c00471{bottom:304.350000px;}
.y3d_c00471{bottom:316.950000px;}
.y6d_c00471{bottom:319.500000px;}
.y3c_c00471{bottom:331.050000px;}
.y6c_c00471{bottom:333.600000px;}
.y3b_c00471{bottom:345.150000px;}
.y6b_c00471{bottom:347.700000px;}
.y3a_c00471{bottom:359.250000px;}
.y6a_c00471{bottom:366.000000px;}
.y39_c00471{bottom:373.650000px;}
.y69_c00471{bottom:380.100000px;}
.y38_c00471{bottom:388.350000px;}
.y68_c00471{bottom:394.950000px;}
.y37_c00471{bottom:402.450000px;}
.y67_c00471{bottom:413.700000px;}
.y36_c00471{bottom:416.550000px;}
.y66_c00471{bottom:427.800000px;}
.y35_c00471{bottom:430.950000px;}
.y65_c00471{bottom:442.500000px;}
.y34_c00471{bottom:445.350000px;}
.y64_c00471{bottom:456.900000px;}
.y33_c00471{bottom:459.300000px;}
.y63_c00471{bottom:472.350000px;}
.y32_c00471{bottom:473.700000px;}
.y31_c00471{bottom:488.850000px;}
.y62_c00471{bottom:492.900000px;}
.y30_c00471{bottom:502.950000px;}
.y61_c00471{bottom:508.800000px;}
.y2f_c00471{bottom:517.350000px;}
.y60_c00471{bottom:523.500000px;}
.y2e_c00471{bottom:531.000000px;}
.y5f_c00471{bottom:541.800000px;}
.y2d_c00471{bottom:545.400000px;}
.y2c_c00471{bottom:559.800000px;}
.y5e_c00471{bottom:560.550000px;}
.y2b_c00471{bottom:574.200000px;}
.y5d_c00471{bottom:579.000000px;}
.y2a_c00471{bottom:588.300000px;}
.y5c_c00471{bottom:593.700000px;}
.y29_c00471{bottom:602.550000px;}
.y5b_c00471{bottom:607.650000px;}
.y28_c00471{bottom:616.650000px;}
.y5a_c00471{bottom:622.050000px;}
.y27_c00471{bottom:631.050000px;}
.y59_c00471{bottom:636.450000px;}
.y26_c00471{bottom:645.450000px;}
.y58_c00471{bottom:655.500000px;}
.y25_c00471{bottom:659.550000px;}
.y24_c00471{bottom:673.950000px;}
.y57_c00471{bottom:674.250000px;}
.y23_c00471{bottom:688.200000px;}
.y56_c00471{bottom:693.300000px;}
.y22_c00471{bottom:702.300000px;}
.y55_c00471{bottom:707.700000px;}
.y21_c00471{bottom:716.700000px;}
.y54_c00471{bottom:725.550000px;}
.y20_c00471{bottom:731.100000px;}
.y53_c00471{bottom:739.950000px;}
.y1f_c00471{bottom:745.200000px;}
.y52_c00471{bottom:754.350000px;}
.y1e_c00471{bottom:759.300000px;}
.y51_c00471{bottom:768.450000px;}
.y1d_c00471{bottom:774.000000px;}
.y50_c00471{bottom:782.850000px;}
.y1c_c00471{bottom:787.350000px;}
.y4f_c00471{bottom:797.250000px;}
.y1b_c00471{bottom:801.900000px;}
.y4e_c00471{bottom:811.650000px;}
.y1a_c00471{bottom:816.300000px;}
.y4d_c00471{bottom:825.750000px;}
.y19_c00471{bottom:830.400000px;}
.y4c_c00471{bottom:839.850000px;}
.y18_c00471{bottom:844.800000px;}
.y4b_c00471{bottom:854.100000px;}
.y17_c00471{bottom:858.900000px;}
.y4a_c00471{bottom:868.200000px;}
.y16_c00471{bottom:873.300000px;}
.y49_c00471{bottom:882.600000px;}
.y48_c00471{bottom:897.000000px;}
.y47_c00471{bottom:911.700000px;}
.yd_c00471{bottom:919.500000px;}
.y46_c00471{bottom:925.800000px;}
.yc_c00471{bottom:937.200000px;}
.y45_c00471{bottom:939.900000px;}
.yb_c00471{bottom:955.200000px;}
.ya_c00471{bottom:972.900000px;}
.y15_c00471{bottom:981.300000px;}
.y9_c00471{bottom:990.600000px;}
.y14_c00471{bottom:999.300000px;}
.y8_c00471{bottom:1008.300000px;}
.y13_c00471{bottom:1024.950000px;}
.y7_c00471{bottom:1026.300000px;}
.y6_c00471{bottom:1051.500000px;}
.y12_c00471{bottom:1051.800000px;}
.y11_c00471{bottom:1069.500000px;}
.y5_c00471{bottom:1069.800000px;}
.y10_c00471{bottom:1087.200000px;}
.y4_c00471{bottom:1087.800000px;}
.yf_c00471{bottom:1105.200000px;}
.y3_c00471{bottom:1105.500000px;}
.y2_c00471{bottom:1123.200000px;}
.ye_c00471{bottom:1125.750000px;}
.y1_c00471{bottom:1149.450000px;}
.h6_c00471{height:48.000000px;}
.h5_c00471{height:54.000000px;}
.h4_c00471{height:60.000000px;}
.h3_c00471{height:66.000000px;}
.h2_c00471{height:78.000000px;}
.h0_c00471{height:1266.480010px;}
.h1_c00471{height:1266.750000px;}
.w0_c00471{width:958.320007px;}
.w1_c00471{width:958.500000px;}
.x0_c00471{left:0.000000px;}
.xc8_c00471{left:180.750000px;}
.x9d_c00471{left:181.800000px;}
.xbd_c00471{left:182.850000px;}
.xb3_c00471{left:184.200000px;}
.xa7_c00471{left:185.550000px;}
.x6d_c00471{left:186.900000px;}
.x89_c00471{left:187.950000px;}
.x1_c00471{left:189.000000px;}
.x21_c00471{left:190.800000px;}
.xd8_c00471{left:195.150000px;}
.xba_c00471{left:198.000000px;}
.xc5_c00471{left:199.500000px;}
.xab_c00471{left:200.550000px;}
.x66_c00471{left:202.350000px;}
.x83_c00471{left:204.150000px;}
.xca_c00471{left:205.500000px;}
.x3_c00471{left:207.000000px;}
.xc4_c00471{left:211.800000px;}
.x10_c00471{left:218.250000px;}
.x6e_c00471{left:219.600000px;}
.xaa_c00471{left:221.250000px;}
.xdc_c00471{left:223.500000px;}
.x67_c00471{left:225.000000px;}
.x75_c00471{left:226.350000px;}
.x8e_c00471{left:227.700000px;}
.xa4_c00471{left:229.350000px;}
.xa0_c00471{left:230.850000px;}
.x91_c00471{left:232.950000px;}
.xd2_c00471{left:234.000000px;}
.x3c_c00471{left:235.500000px;}
.xb7_c00471{left:237.900000px;}
.xa_c00471{left:238.950000px;}
.x7d_c00471{left:240.000000px;}
.x2d_c00471{left:241.350000px;}
.x11_c00471{left:243.450000px;}
.xcb_c00471{left:244.800000px;}
.x68_c00471{left:245.850000px;}
.x9b_c00471{left:246.900000px;}
.xda_c00471{left:247.950000px;}
.x84_c00471{left:249.150000px;}
.xb4_c00471{left:251.100000px;}
.xc0_c00471{left:253.350000px;}
.x97_c00471{left:255.300000px;}
.x4_c00471{left:256.650000px;}
.x34_c00471{left:258.150000px;}
.xb_c00471{left:261.300000px;}
.xb0_c00471{left:262.650000px;}
.x1c_c00471{left:264.450000px;}
.x3f_c00471{left:265.800000px;}
.x92_c00471{left:267.450000px;}
.x76_c00471{left:271.050000px;}
.xb5_c00471{left:272.700000px;}
.xa8_c00471{left:274.200000px;}
.xa5_c00471{left:276.150000px;}
.x1d_c00471{left:277.350000px;}
.x27_c00471{left:280.350000px;}
.x79_c00471{left:281.400000px;}
.xcc_c00471{left:282.900000px;}
.x17_c00471{left:285.150000px;}
.x22_c00471{left:286.500000px;}
.x8f_c00471{left:288.600000px;}
.x35_c00471{left:290.550000px;}
.x93_c00471{left:291.900000px;}
.xc_c00471{left:294.000000px;}
.x28_c00471{left:298.350000px;}
.x2e_c00471{left:300.750000px;}
.xdb_c00471{left:303.000000px;}
.x8a_c00471{left:304.950000px;}
.x12_c00471{left:307.950000px;}
.xb8_c00471{left:309.150000px;}
.x6f_c00471{left:310.650000px;}
.xd3_c00471{left:312.000000px;}
.x1e_c00471{left:313.050000px;}
.xbe_c00471{left:314.250000px;}
.x23_c00471{left:315.300000px;}
.x3d_c00471{left:316.500000px;}
.xad_c00471{left:319.350000px;}
.x9e_c00471{left:321.150000px;}
.xcd_c00471{left:323.250000px;}
.x5_c00471{left:325.350000px;}
.x81_c00471{left:327.000000px;}
.x8b_c00471{left:328.350000px;}
.xbb_c00471{left:329.400000px;}
.xac_c00471{left:330.450000px;}
.x2f_c00471{left:331.650000px;}
.x85_c00471{left:332.700000px;}
.x1f_c00471{left:335.400000px;}
.x98_c00471{left:340.200000px;}
.x18_c00471{left:341.250000px;}
.xae_c00471{left:342.750000px;}
.x7a_c00471{left:344.400000px;}
.xd_c00471{left:346.500000px;}
.xbc_c00471{left:348.150000px;}
.x6_c00471{left:349.800000px;}
.x30_c00471{left:352.500000px;}
.x7e_c00471{left:355.200000px;}
.xce_c00471{left:356.700000px;}
.x69_c00471{left:357.750000px;}
.x29_c00471{left:360.300000px;}
.x36_c00471{left:361.950000px;}
.x19_c00471{left:363.150000px;}
.xe_c00471{left:364.500000px;}
.xa1_c00471{left:366.300000px;}
.xa9_c00471{left:368.400000px;}
.xc1_c00471{left:370.650000px;}
.x77_c00471{left:371.850000px;}
.x20_c00471{left:376.500000px;}
.x9c_c00471{left:378.600000px;}
.x7b_c00471{left:379.650000px;}
.x70_c00471{left:380.850000px;}
.x40_c00471{left:382.350000px;}
.x13_c00471{left:384.600000px;}
.x24_c00471{left:386.100000px;}
.x86_c00471{left:388.800000px;}
.x7f_c00471{left:390.450000px;}
.x94_c00471{left:391.950000px;}
.x71_c00471{left:394.200000px;}
.x2a_c00471{left:395.550000px;}
.xb1_c00471{left:397.200000px;}
.x38_c00471{left:399.300000px;}
.xd4_c00471{left:401.700000px;}
.x78_c00471{left:402.750000px;}
.x7_c00471{left:405.600000px;}
.xb9_c00471{left:407.250000px;}
.x6a_c00471{left:410.250000px;}
.xc9_c00471{left:411.450000px;}
.x2b_c00471{left:413.850000px;}
.x39_c00471{left:416.250000px;}
.x72_c00471{left:418.350000px;}
.x90_c00471{left:420.450000px;}
.xa6_c00471{left:422.400000px;}
.xc6_c00471{left:424.500000px;}
.x41_c00471{left:425.550000px;}
.xd6_c00471{left:426.600000px;}
.x1a_c00471{left:428.250000px;}
.x2_c00471{left:429.450000px;}
.x8_c00471{left:431.100000px;}
.x14_c00471{left:432.450000px;}
.xbf_c00471{left:434.100000px;}
.x3a_c00471{left:435.750000px;}
.xc2_c00471{left:437.550000px;}
.x9f_c00471{left:438.600000px;}
.xf_c00471{left:440.400000px;}
.x7c_c00471{left:441.900000px;}
.xa2_c00471{left:442.950000px;}
.x95_c00471{left:444.900000px;}
.xaf_c00471{left:447.150000px;}
.x31_c00471{left:448.200000px;}
.xcf_c00471{left:449.250000px;}
.xdd_c00471{left:450.750000px;}
.x8c_c00471{left:451.950000px;}
.x3e_c00471{left:454.050000px;}
.x37_c00471{left:456.000000px;}
.x25_c00471{left:457.350000px;}
.x6b_c00471{left:460.200000px;}
.xd1_c00471{left:462.600000px;}
.x87_c00471{left:465.450000px;}
.xd5_c00471{left:466.950000px;}
.x2c_c00471{left:468.150000px;}
.x80_c00471{left:470.700000px;}
.xd7_c00471{left:471.900000px;}
.x88_c00471{left:474.450000px;}
.x15_c00471{left:475.650000px;}
.x82_c00471{left:477.150000px;}
.x96_c00471{left:478.350000px;}
.x73_c00471{left:479.850000px;}
.x99_c00471{left:481.350000px;}
.x8d_c00471{left:483.300000px;}
.x9_c00471{left:484.800000px;}
.xc3_c00471{left:487.950000px;}
.x3b_c00471{left:490.050000px;}
.x16_c00471{left:491.550000px;}
.x32_c00471{left:493.650000px;}
.x1b_c00471{left:495.600000px;}
.x9a_c00471{left:498.300000px;}
.xa3_c00471{left:499.350000px;}
.xc7_c00471{left:502.500000px;}
.xb6_c00471{left:504.000000px;}
.x74_c00471{left:505.050000px;}
.xb2_c00471{left:506.700000px;}
.x26_c00471{left:508.500000px;}
.x6c_c00471{left:510.600000px;}
.xd9_c00471{left:513.150000px;}
.xd0_c00471{left:515.850000px;}
.x33_c00471{left:517.350000px;}
.x12a_c00471{left:542.100000px;}
.x44_c00471{left:543.300000px;}
.xea_c00471{left:544.350000px;}
.x133_c00471{left:554.850000px;}
.x100_c00471{left:558.000000px;}
.x4c_c00471{left:560.850000px;}
.x10b_c00471{left:568.950000px;}
.x123_c00471{left:570.000000px;}
.xeb_c00471{left:574.650000px;}
.x118_c00471{left:575.850000px;}
.x45_c00471{left:577.800000px;}
.x12e_c00471{left:579.750000px;}
.xde_c00471{left:581.100000px;}
.x142_c00471{left:583.050000px;}
.x13c_c00471{left:584.250000px;}
.x114_c00471{left:585.450000px;}
.xf7_c00471{left:586.800000px;}
.x134_c00471{left:588.900000px;}
.x101_c00471{left:594.000000px;}
.x53_c00471{left:595.050000px;}
.x15e_c00471{left:596.100000px;}
.x5e_c00471{left:597.450000px;}
.x148_c00471{left:599.100000px;}
.xe6_c00471{left:600.900000px;}
.x128_c00471{left:603.750000px;}
.x115_c00471{left:604.950000px;}
.xdf_c00471{left:608.400000px;}
.xf1_c00471{left:610.200000px;}
.x124_c00471{left:612.450000px;}
.x65_c00471{left:613.800000px;}
.x4d_c00471{left:615.150000px;}
.x119_c00471{left:616.200000px;}
.x60_c00471{left:618.150000px;}
.x13d_c00471{left:619.200000px;}
.xf8_c00471{left:620.700000px;}
.xf2_c00471{left:621.750000px;}
.xec_c00471{left:622.950000px;}
.x46_c00471{left:624.900000px;}
.x138_c00471{left:626.250000px;}
.x14e_c00471{left:627.600000px;}
.x11e_c00471{left:629.850000px;}
.x54_c00471{left:632.550000px;}
.x61_c00471{left:633.600000px;}
.x42_c00471{left:636.150000px;}
.x140_c00471{left:637.200000px;}
.x110_c00471{left:639.150000px;}
.x106_c00471{left:640.500000px;}
.xed_c00471{left:643.500000px;}
.xfd_c00471{left:644.700000px;}
.x47_c00471{left:646.800000px;}
.x102_c00471{left:648.000000px;}
.x143_c00471{left:650.400000px;}
.x12f_c00471{left:652.500000px;}
.x152_c00471{left:654.600000px;}
.x4e_c00471{left:655.800000px;}
.x139_c00471{left:657.600000px;}
.x154_c00471{left:658.800000px;}
.x14c_c00471{left:660.750000px;}
.x55_c00471{left:662.850000px;}
.x15a_c00471{left:664.950000px;}
.x144_c00471{left:666.600000px;}
.x103_c00471{left:667.800000px;}
.x11a_c00471{left:669.150000px;}
.xe0_c00471{left:670.350000px;}
.x125_c00471{left:672.900000px;}
.x149_c00471{left:674.850000px;}
.x10c_c00471{left:675.900000px;}
.x12b_c00471{left:677.400000px;}
.x111_c00471{left:678.750000px;}
.x56_c00471{left:679.800000px;}
.x11f_c00471{left:681.000000px;}
.x157_c00471{left:682.800000px;}
.x14a_c00471{left:683.850000px;}
.xf9_c00471{left:685.050000px;}
.xee_c00471{left:686.250000px;}
.xe1_c00471{left:688.050000px;}
.x15c_c00471{left:689.400000px;}
.xe7_c00471{left:690.450000px;}
.x135_c00471{left:691.500000px;}
.x13e_c00471{left:693.300000px;}
.x4f_c00471{left:694.350000px;}
.x14f_c00471{left:698.850000px;}
.xef_c00471{left:700.650000px;}
.x15f_c00471{left:701.850000px;}
.x161_c00471{left:703.050000px;}
.x120_c00471{left:704.100000px;}
.x57_c00471{left:706.050000px;}
.xf3_c00471{left:707.400000px;}
.x129_c00471{left:709.950000px;}
.x107_c00471{left:712.200000px;}
.x130_c00471{left:714.300000px;}
.x153_c00471{left:718.200000px;}
.x145_c00471{left:720.300000px;}
.x147_c00471{left:721.650000px;}
.x5f_c00471{left:722.850000px;}
.x58_c00471{left:725.100000px;}
.x155_c00471{left:726.450000px;}
.x12c_c00471{left:727.800000px;}
.x156_c00471{left:728.850000px;}
.x43_c00471{left:731.250000px;}
.x11b_c00471{left:735.150000px;}
.x108_c00471{left:736.350000px;}
.x131_c00471{left:738.750000px;}
.x48_c00471{left:740.100000px;}
.x50_c00471{left:741.900000px;}
.xe2_c00471{left:743.100000px;}
.x59_c00471{left:744.600000px;}
.x151_c00471{left:746.700000px;}
.x62_c00471{left:749.550000px;}
.x109_c00471{left:750.750000px;}
.x15d_c00471{left:753.450000px;}
.xf4_c00471{left:755.700000px;}
.x126_c00471{left:756.750000px;}
.x121_c00471{left:757.800000px;}
.xfe_c00471{left:759.750000px;}
.x104_c00471{left:761.100000px;}
.x132_c00471{left:762.450000px;}
.x49_c00471{left:763.500000px;}
.x158_c00471{left:765.450000px;}
.xe8_c00471{left:767.100000px;}
.x13a_c00471{left:768.150000px;}
.xfa_c00471{left:770.850000px;}
.x51_c00471{left:774.000000px;}
.x116_c00471{left:778.200000px;}
.xf5_c00471{left:781.950000px;}
.x14b_c00471{left:784.950000px;}
.xe3_c00471{left:786.300000px;}
.x12d_c00471{left:788.550000px;}
.x5a_c00471{left:790.350000px;}
.x14d_c00471{left:791.850000px;}
.x146_c00471{left:794.400000px;}
.x4a_c00471{left:795.600000px;}
.x63_c00471{left:798.150000px;}
.x11c_c00471{left:800.250000px;}
.x10d_c00471{left:802.200000px;}
.x112_c00471{left:803.700000px;}
.xfb_c00471{left:804.750000px;}
.x160_c00471{left:807.150000px;}
.xe4_c00471{left:809.400000px;}
.x105_c00471{left:810.450000px;}
.x141_c00471{left:813.000000px;}
.x150_c00471{left:814.350000px;}
.x5b_c00471{left:818.400000px;}
.x15b_c00471{left:819.750000px;}
.x127_c00471{left:820.800000px;}
.x136_c00471{left:822.150000px;}
.x122_c00471{left:824.100000px;}
.x11d_c00471{left:826.500000px;}
.x10a_c00471{left:828.900000px;}
.x5c_c00471{left:831.750000px;}
.xe5_c00471{left:834.900000px;}
.x13b_c00471{left:837.000000px;}
.x159_c00471{left:838.200000px;}
.x113_c00471{left:840.000000px;}
.x64_c00471{left:843.900000px;}
.x10e_c00471{left:846.150000px;}
.x137_c00471{left:847.350000px;}
.xf0_c00471{left:849.300000px;}
.xff_c00471{left:851.850000px;}
.x4b_c00471{left:853.200000px;}
.xe9_c00471{left:854.250000px;}
.x13f_c00471{left:855.300000px;}
.xfc_c00471{left:856.650000px;}
.x52_c00471{left:858.900000px;}
.xf6_c00471{left:863.250000px;}
.x117_c00471{left:867.450000px;}
.x5d_c00471{left:871.350000px;}
.x10f_c00471{left:878.850000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws1_c00471{word-spacing:-7.654321pt;}
.ws8_c00471{word-spacing:-3.418803pt;}
.ws2_c00471{word-spacing:-1.739130pt;}
.ws3_c00471{word-spacing:0.000000pt;}
.ws0_c00471{word-spacing:1.481481pt;}
.ws7_c00471{word-spacing:3.739645pt;}
.ws4_c00471{word-spacing:8.888889pt;}
.ws6_c00471{word-spacing:14.292566pt;}
.ws5_c00471{word-spacing:20.277778pt;}
.fs4_c00471{font-size:42.666667pt;}
.fs3_c00471{font-size:48.000000pt;}
.fs2_c00471{font-size:53.333333pt;}
.fs1_c00471{font-size:58.666667pt;}
.fs0_c00471{font-size:69.333333pt;}
.y0_c00471{bottom:0.000000pt;}
.y75_c00471{bottom:177.200000pt;}
.y44_c00471{bottom:181.733333pt;}
.y74_c00471{bottom:189.733333pt;}
.y73_c00471{bottom:203.200000pt;}
.y43_c00471{bottom:206.400000pt;}
.y72_c00471{bottom:215.733333pt;}
.y42_c00471{bottom:218.933333pt;}
.y71_c00471{bottom:228.533333pt;}
.y41_c00471{bottom:231.466667pt;}
.y70_c00471{bottom:241.333333pt;}
.y40_c00471{bottom:244.533333pt;}
.y3f_c00471{bottom:256.666667pt;}
.y6f_c00471{bottom:257.733333pt;}
.y3e_c00471{bottom:269.200000pt;}
.y6e_c00471{bottom:270.533333pt;}
.y3d_c00471{bottom:281.733333pt;}
.y6d_c00471{bottom:284.000000pt;}
.y3c_c00471{bottom:294.266667pt;}
.y6c_c00471{bottom:296.533333pt;}
.y3b_c00471{bottom:306.800000pt;}
.y6b_c00471{bottom:309.066667pt;}
.y3a_c00471{bottom:319.333333pt;}
.y6a_c00471{bottom:325.333333pt;}
.y39_c00471{bottom:332.133333pt;}
.y69_c00471{bottom:337.866667pt;}
.y38_c00471{bottom:345.200000pt;}
.y68_c00471{bottom:351.066667pt;}
.y37_c00471{bottom:357.733333pt;}
.y67_c00471{bottom:367.733333pt;}
.y36_c00471{bottom:370.266667pt;}
.y66_c00471{bottom:380.266667pt;}
.y35_c00471{bottom:383.066667pt;}
.y65_c00471{bottom:393.333333pt;}
.y34_c00471{bottom:395.866667pt;}
.y64_c00471{bottom:406.133333pt;}
.y33_c00471{bottom:408.266667pt;}
.y63_c00471{bottom:419.866667pt;}
.y32_c00471{bottom:421.066667pt;}
.y31_c00471{bottom:434.533333pt;}
.y62_c00471{bottom:438.133333pt;}
.y30_c00471{bottom:447.066667pt;}
.y61_c00471{bottom:452.266667pt;}
.y2f_c00471{bottom:459.866667pt;}
.y60_c00471{bottom:465.333333pt;}
.y2e_c00471{bottom:472.000000pt;}
.y5f_c00471{bottom:481.600000pt;}
.y2d_c00471{bottom:484.800000pt;}
.y2c_c00471{bottom:497.600000pt;}
.y5e_c00471{bottom:498.266667pt;}
.y2b_c00471{bottom:510.400000pt;}
.y5d_c00471{bottom:514.666667pt;}
.y2a_c00471{bottom:522.933333pt;}
.y5c_c00471{bottom:527.733333pt;}
.y29_c00471{bottom:535.600000pt;}
.y5b_c00471{bottom:540.133333pt;}
.y28_c00471{bottom:548.133333pt;}
.y5a_c00471{bottom:552.933333pt;}
.y27_c00471{bottom:560.933333pt;}
.y59_c00471{bottom:565.733333pt;}
.y26_c00471{bottom:573.733333pt;}
.y58_c00471{bottom:582.666667pt;}
.y25_c00471{bottom:586.266667pt;}
.y24_c00471{bottom:599.066667pt;}
.y57_c00471{bottom:599.333333pt;}
.y23_c00471{bottom:611.733333pt;}
.y56_c00471{bottom:616.266667pt;}
.y22_c00471{bottom:624.266667pt;}
.y55_c00471{bottom:629.066667pt;}
.y21_c00471{bottom:637.066667pt;}
.y54_c00471{bottom:644.933333pt;}
.y20_c00471{bottom:649.866667pt;}
.y53_c00471{bottom:657.733333pt;}
.y1f_c00471{bottom:662.400000pt;}
.y52_c00471{bottom:670.533333pt;}
.y1e_c00471{bottom:674.933333pt;}
.y51_c00471{bottom:683.066667pt;}
.y1d_c00471{bottom:688.000000pt;}
.y50_c00471{bottom:695.866667pt;}
.y1c_c00471{bottom:699.866667pt;}
.y4f_c00471{bottom:708.666667pt;}
.y1b_c00471{bottom:712.800000pt;}
.y4e_c00471{bottom:721.466667pt;}
.y1a_c00471{bottom:725.600000pt;}
.y4d_c00471{bottom:734.000000pt;}
.y19_c00471{bottom:738.133333pt;}
.y4c_c00471{bottom:746.533333pt;}
.y18_c00471{bottom:750.933333pt;}
.y4b_c00471{bottom:759.200000pt;}
.y17_c00471{bottom:763.466667pt;}
.y4a_c00471{bottom:771.733333pt;}
.y16_c00471{bottom:776.266667pt;}
.y49_c00471{bottom:784.533333pt;}
.y48_c00471{bottom:797.333333pt;}
.y47_c00471{bottom:810.400000pt;}
.yd_c00471{bottom:817.333333pt;}
.y46_c00471{bottom:822.933333pt;}
.yc_c00471{bottom:833.066667pt;}
.y45_c00471{bottom:835.466667pt;}
.yb_c00471{bottom:849.066667pt;}
.ya_c00471{bottom:864.800000pt;}
.y15_c00471{bottom:872.266667pt;}
.y9_c00471{bottom:880.533333pt;}
.y14_c00471{bottom:888.266667pt;}
.y8_c00471{bottom:896.266667pt;}
.y13_c00471{bottom:911.066667pt;}
.y7_c00471{bottom:912.266667pt;}
.y6_c00471{bottom:934.666667pt;}
.y12_c00471{bottom:934.933333pt;}
.y11_c00471{bottom:950.666667pt;}
.y5_c00471{bottom:950.933333pt;}
.y10_c00471{bottom:966.400000pt;}
.y4_c00471{bottom:966.933333pt;}
.yf_c00471{bottom:982.400000pt;}
.y3_c00471{bottom:982.666667pt;}
.y2_c00471{bottom:998.400000pt;}
.ye_c00471{bottom:1000.666667pt;}
.y1_c00471{bottom:1021.733333pt;}
.h6_c00471{height:42.666667pt;}
.h5_c00471{height:48.000000pt;}
.h4_c00471{height:53.333333pt;}
.h3_c00471{height:58.666667pt;}
.h2_c00471{height:69.333333pt;}
.h0_c00471{height:1125.760009pt;}
.h1_c00471{height:1126.000000pt;}
.w0_c00471{width:851.840007pt;}
.w1_c00471{width:852.000000pt;}
.x0_c00471{left:0.000000pt;}
.xc8_c00471{left:160.666667pt;}
.x9d_c00471{left:161.600000pt;}
.xbd_c00471{left:162.533333pt;}
.xb3_c00471{left:163.733333pt;}
.xa7_c00471{left:164.933333pt;}
.x6d_c00471{left:166.133333pt;}
.x89_c00471{left:167.066667pt;}
.x1_c00471{left:168.000000pt;}
.x21_c00471{left:169.600000pt;}
.xd8_c00471{left:173.466667pt;}
.xba_c00471{left:176.000000pt;}
.xc5_c00471{left:177.333333pt;}
.xab_c00471{left:178.266667pt;}
.x66_c00471{left:179.866667pt;}
.x83_c00471{left:181.466667pt;}
.xca_c00471{left:182.666667pt;}
.x3_c00471{left:184.000000pt;}
.xc4_c00471{left:188.266667pt;}
.x10_c00471{left:194.000000pt;}
.x6e_c00471{left:195.200000pt;}
.xaa_c00471{left:196.666667pt;}
.xdc_c00471{left:198.666667pt;}
.x67_c00471{left:200.000000pt;}
.x75_c00471{left:201.200000pt;}
.x8e_c00471{left:202.400000pt;}
.xa4_c00471{left:203.866667pt;}
.xa0_c00471{left:205.200000pt;}
.x91_c00471{left:207.066667pt;}
.xd2_c00471{left:208.000000pt;}
.x3c_c00471{left:209.333333pt;}
.xb7_c00471{left:211.466667pt;}
.xa_c00471{left:212.400000pt;}
.x7d_c00471{left:213.333333pt;}
.x2d_c00471{left:214.533333pt;}
.x11_c00471{left:216.400000pt;}
.xcb_c00471{left:217.600000pt;}
.x68_c00471{left:218.533333pt;}
.x9b_c00471{left:219.466667pt;}
.xda_c00471{left:220.400000pt;}
.x84_c00471{left:221.466667pt;}
.xb4_c00471{left:223.200000pt;}
.xc0_c00471{left:225.200000pt;}
.x97_c00471{left:226.933333pt;}
.x4_c00471{left:228.133333pt;}
.x34_c00471{left:229.466667pt;}
.xb_c00471{left:232.266667pt;}
.xb0_c00471{left:233.466667pt;}
.x1c_c00471{left:235.066667pt;}
.x3f_c00471{left:236.266667pt;}
.x92_c00471{left:237.733333pt;}
.x76_c00471{left:240.933333pt;}
.xb5_c00471{left:242.400000pt;}
.xa8_c00471{left:243.733333pt;}
.xa5_c00471{left:245.466667pt;}
.x1d_c00471{left:246.533333pt;}
.x27_c00471{left:249.200000pt;}
.x79_c00471{left:250.133333pt;}
.xcc_c00471{left:251.466667pt;}
.x17_c00471{left:253.466667pt;}
.x22_c00471{left:254.666667pt;}
.x8f_c00471{left:256.533333pt;}
.x35_c00471{left:258.266667pt;}
.x93_c00471{left:259.466667pt;}
.xc_c00471{left:261.333333pt;}
.x28_c00471{left:265.200000pt;}
.x2e_c00471{left:267.333333pt;}
.xdb_c00471{left:269.333333pt;}
.x8a_c00471{left:271.066667pt;}
.x12_c00471{left:273.733333pt;}
.xb8_c00471{left:274.800000pt;}
.x6f_c00471{left:276.133333pt;}
.xd3_c00471{left:277.333333pt;}
.x1e_c00471{left:278.266667pt;}
.xbe_c00471{left:279.333333pt;}
.x23_c00471{left:280.266667pt;}
.x3d_c00471{left:281.333333pt;}
.xad_c00471{left:283.866667pt;}
.x9e_c00471{left:285.466667pt;}
.xcd_c00471{left:287.333333pt;}
.x5_c00471{left:289.200000pt;}
.x81_c00471{left:290.666667pt;}
.x8b_c00471{left:291.866667pt;}
.xbb_c00471{left:292.800000pt;}
.xac_c00471{left:293.733333pt;}
.x2f_c00471{left:294.800000pt;}
.x85_c00471{left:295.733333pt;}
.x1f_c00471{left:298.133333pt;}
.x98_c00471{left:302.400000pt;}
.x18_c00471{left:303.333333pt;}
.xae_c00471{left:304.666667pt;}
.x7a_c00471{left:306.133333pt;}
.xd_c00471{left:308.000000pt;}
.xbc_c00471{left:309.466667pt;}
.x6_c00471{left:310.933333pt;}
.x30_c00471{left:313.333333pt;}
.x7e_c00471{left:315.733333pt;}
.xce_c00471{left:317.066667pt;}
.x69_c00471{left:318.000000pt;}
.x29_c00471{left:320.266667pt;}
.x36_c00471{left:321.733333pt;}
.x19_c00471{left:322.800000pt;}
.xe_c00471{left:324.000000pt;}
.xa1_c00471{left:325.600000pt;}
.xa9_c00471{left:327.466667pt;}
.xc1_c00471{left:329.466667pt;}
.x77_c00471{left:330.533333pt;}
.x20_c00471{left:334.666667pt;}
.x9c_c00471{left:336.533333pt;}
.x7b_c00471{left:337.466667pt;}
.x70_c00471{left:338.533333pt;}
.x40_c00471{left:339.866667pt;}
.x13_c00471{left:341.866667pt;}
.x24_c00471{left:343.200000pt;}
.x86_c00471{left:345.600000pt;}
.x7f_c00471{left:347.066667pt;}
.x94_c00471{left:348.400000pt;}
.x71_c00471{left:350.400000pt;}
.x2a_c00471{left:351.600000pt;}
.xb1_c00471{left:353.066667pt;}
.x38_c00471{left:354.933333pt;}
.xd4_c00471{left:357.066667pt;}
.x78_c00471{left:358.000000pt;}
.x7_c00471{left:360.533333pt;}
.xb9_c00471{left:362.000000pt;}
.x6a_c00471{left:364.666667pt;}
.xc9_c00471{left:365.733333pt;}
.x2b_c00471{left:367.866667pt;}
.x39_c00471{left:370.000000pt;}
.x72_c00471{left:371.866667pt;}
.x90_c00471{left:373.733333pt;}
.xa6_c00471{left:375.466667pt;}
.xc6_c00471{left:377.333333pt;}
.x41_c00471{left:378.266667pt;}
.xd6_c00471{left:379.200000pt;}
.x1a_c00471{left:380.666667pt;}
.x2_c00471{left:381.733333pt;}
.x8_c00471{left:383.200000pt;}
.x14_c00471{left:384.400000pt;}
.xbf_c00471{left:385.866667pt;}
.x3a_c00471{left:387.333333pt;}
.xc2_c00471{left:388.933333pt;}
.x9f_c00471{left:389.866667pt;}
.xf_c00471{left:391.466667pt;}
.x7c_c00471{left:392.800000pt;}
.xa2_c00471{left:393.733333pt;}
.x95_c00471{left:395.466667pt;}
.xaf_c00471{left:397.466667pt;}
.x31_c00471{left:398.400000pt;}
.xcf_c00471{left:399.333333pt;}
.xdd_c00471{left:400.666667pt;}
.x8c_c00471{left:401.733333pt;}
.x3e_c00471{left:403.600000pt;}
.x37_c00471{left:405.333333pt;}
.x25_c00471{left:406.533333pt;}
.x6b_c00471{left:409.066667pt;}
.xd1_c00471{left:411.200000pt;}
.x87_c00471{left:413.733333pt;}
.xd5_c00471{left:415.066667pt;}
.x2c_c00471{left:416.133333pt;}
.x80_c00471{left:418.400000pt;}
.xd7_c00471{left:419.466667pt;}
.x88_c00471{left:421.733333pt;}
.x15_c00471{left:422.800000pt;}
.x82_c00471{left:424.133333pt;}
.x96_c00471{left:425.200000pt;}
.x73_c00471{left:426.533333pt;}
.x99_c00471{left:427.866667pt;}
.x8d_c00471{left:429.600000pt;}
.x9_c00471{left:430.933333pt;}
.xc3_c00471{left:433.733333pt;}
.x3b_c00471{left:435.600000pt;}
.x16_c00471{left:436.933333pt;}
.x32_c00471{left:438.800000pt;}
.x1b_c00471{left:440.533333pt;}
.x9a_c00471{left:442.933333pt;}
.xa3_c00471{left:443.866667pt;}
.xc7_c00471{left:446.666667pt;}
.xb6_c00471{left:448.000000pt;}
.x74_c00471{left:448.933333pt;}
.xb2_c00471{left:450.400000pt;}
.x26_c00471{left:452.000000pt;}
.x6c_c00471{left:453.866667pt;}
.xd9_c00471{left:456.133333pt;}
.xd0_c00471{left:458.533333pt;}
.x33_c00471{left:459.866667pt;}
.x12a_c00471{left:481.866667pt;}
.x44_c00471{left:482.933333pt;}
.xea_c00471{left:483.866667pt;}
.x133_c00471{left:493.200000pt;}
.x100_c00471{left:496.000000pt;}
.x4c_c00471{left:498.533333pt;}
.x10b_c00471{left:505.733333pt;}
.x123_c00471{left:506.666667pt;}
.xeb_c00471{left:510.800000pt;}
.x118_c00471{left:511.866667pt;}
.x45_c00471{left:513.600000pt;}
.x12e_c00471{left:515.333333pt;}
.xde_c00471{left:516.533333pt;}
.x142_c00471{left:518.266667pt;}
.x13c_c00471{left:519.333333pt;}
.x114_c00471{left:520.400000pt;}
.xf7_c00471{left:521.600000pt;}
.x134_c00471{left:523.466667pt;}
.x101_c00471{left:528.000000pt;}
.x53_c00471{left:528.933333pt;}
.x15e_c00471{left:529.866667pt;}
.x5e_c00471{left:531.066667pt;}
.x148_c00471{left:532.533333pt;}
.xe6_c00471{left:534.133333pt;}
.x128_c00471{left:536.666667pt;}
.x115_c00471{left:537.733333pt;}
.xdf_c00471{left:540.800000pt;}
.xf1_c00471{left:542.400000pt;}
.x124_c00471{left:544.400000pt;}
.x65_c00471{left:545.600000pt;}
.x4d_c00471{left:546.800000pt;}
.x119_c00471{left:547.733333pt;}
.x60_c00471{left:549.466667pt;}
.x13d_c00471{left:550.400000pt;}
.xf8_c00471{left:551.733333pt;}
.xf2_c00471{left:552.666667pt;}
.xec_c00471{left:553.733333pt;}
.x46_c00471{left:555.466667pt;}
.x138_c00471{left:556.666667pt;}
.x14e_c00471{left:557.866667pt;}
.x11e_c00471{left:559.866667pt;}
.x54_c00471{left:562.266667pt;}
.x61_c00471{left:563.200000pt;}
.x42_c00471{left:565.466667pt;}
.x140_c00471{left:566.400000pt;}
.x110_c00471{left:568.133333pt;}
.x106_c00471{left:569.333333pt;}
.xed_c00471{left:572.000000pt;}
.xfd_c00471{left:573.066667pt;}
.x47_c00471{left:574.933333pt;}
.x102_c00471{left:576.000000pt;}
.x143_c00471{left:578.133333pt;}
.x12f_c00471{left:580.000000pt;}
.x152_c00471{left:581.866667pt;}
.x4e_c00471{left:582.933333pt;}
.x139_c00471{left:584.533333pt;}
.x154_c00471{left:585.600000pt;}
.x14c_c00471{left:587.333333pt;}
.x55_c00471{left:589.200000pt;}
.x15a_c00471{left:591.066667pt;}
.x144_c00471{left:592.533333pt;}
.x103_c00471{left:593.600000pt;}
.x11a_c00471{left:594.800000pt;}
.xe0_c00471{left:595.866667pt;}
.x125_c00471{left:598.133333pt;}
.x149_c00471{left:599.866667pt;}
.x10c_c00471{left:600.800000pt;}
.x12b_c00471{left:602.133333pt;}
.x111_c00471{left:603.333333pt;}
.x56_c00471{left:604.266667pt;}
.x11f_c00471{left:605.333333pt;}
.x157_c00471{left:606.933333pt;}
.x14a_c00471{left:607.866667pt;}
.xf9_c00471{left:608.933333pt;}
.xee_c00471{left:610.000000pt;}
.xe1_c00471{left:611.600000pt;}
.x15c_c00471{left:612.800000pt;}
.xe7_c00471{left:613.733333pt;}
.x135_c00471{left:614.666667pt;}
.x13e_c00471{left:616.266667pt;}
.x4f_c00471{left:617.200000pt;}
.x14f_c00471{left:621.200000pt;}
.xef_c00471{left:622.800000pt;}
.x15f_c00471{left:623.866667pt;}
.x161_c00471{left:624.933333pt;}
.x120_c00471{left:625.866667pt;}
.x57_c00471{left:627.600000pt;}
.xf3_c00471{left:628.800000pt;}
.x129_c00471{left:631.066667pt;}
.x107_c00471{left:633.066667pt;}
.x130_c00471{left:634.933333pt;}
.x153_c00471{left:638.400000pt;}
.x145_c00471{left:640.266667pt;}
.x147_c00471{left:641.466667pt;}
.x5f_c00471{left:642.533333pt;}
.x58_c00471{left:644.533333pt;}
.x155_c00471{left:645.733333pt;}
.x12c_c00471{left:646.933333pt;}
.x156_c00471{left:647.866667pt;}
.x43_c00471{left:650.000000pt;}
.x11b_c00471{left:653.466667pt;}
.x108_c00471{left:654.533333pt;}
.x131_c00471{left:656.666667pt;}
.x48_c00471{left:657.866667pt;}
.x50_c00471{left:659.466667pt;}
.xe2_c00471{left:660.533333pt;}
.x59_c00471{left:661.866667pt;}
.x151_c00471{left:663.733333pt;}
.x62_c00471{left:666.266667pt;}
.x109_c00471{left:667.333333pt;}
.x15d_c00471{left:669.733333pt;}
.xf4_c00471{left:671.733333pt;}
.x126_c00471{left:672.666667pt;}
.x121_c00471{left:673.600000pt;}
.xfe_c00471{left:675.333333pt;}
.x104_c00471{left:676.533333pt;}
.x132_c00471{left:677.733333pt;}
.x49_c00471{left:678.666667pt;}
.x158_c00471{left:680.400000pt;}
.xe8_c00471{left:681.866667pt;}
.x13a_c00471{left:682.800000pt;}
.xfa_c00471{left:685.200000pt;}
.x51_c00471{left:688.000000pt;}
.x116_c00471{left:691.733333pt;}
.xf5_c00471{left:695.066667pt;}
.x14b_c00471{left:697.733333pt;}
.xe3_c00471{left:698.933333pt;}
.x12d_c00471{left:700.933333pt;}
.x5a_c00471{left:702.533333pt;}
.x14d_c00471{left:703.866667pt;}
.x146_c00471{left:706.133333pt;}
.x4a_c00471{left:707.200000pt;}
.x63_c00471{left:709.466667pt;}
.x11c_c00471{left:711.333333pt;}
.x10d_c00471{left:713.066667pt;}
.x112_c00471{left:714.400000pt;}
.xfb_c00471{left:715.333333pt;}
.x160_c00471{left:717.466667pt;}
.xe4_c00471{left:719.466667pt;}
.x105_c00471{left:720.400000pt;}
.x141_c00471{left:722.666667pt;}
.x150_c00471{left:723.866667pt;}
.x5b_c00471{left:727.466667pt;}
.x15b_c00471{left:728.666667pt;}
.x127_c00471{left:729.600000pt;}
.x136_c00471{left:730.800000pt;}
.x122_c00471{left:732.533333pt;}
.x11d_c00471{left:734.666667pt;}
.x10a_c00471{left:736.800000pt;}
.x5c_c00471{left:739.333333pt;}
.xe5_c00471{left:742.133333pt;}
.x13b_c00471{left:744.000000pt;}
.x159_c00471{left:745.066667pt;}
.x113_c00471{left:746.666667pt;}
.x64_c00471{left:750.133333pt;}
.x10e_c00471{left:752.133333pt;}
.x137_c00471{left:753.200000pt;}
.xf0_c00471{left:754.933333pt;}
.xff_c00471{left:757.200000pt;}
.x4b_c00471{left:758.400000pt;}
.xe9_c00471{left:759.333333pt;}
.x13f_c00471{left:760.266667pt;}
.xfc_c00471{left:761.466667pt;}
.x52_c00471{left:763.466667pt;}
.xf6_c00471{left:767.333333pt;}
.x117_c00471{left:771.066667pt;}
.x5d_c00471{left:774.533333pt;}
.x10f_c00471{left:781.200000pt;}
}





/* 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_c00472 {
    display:none;
  }
  .loading-indicator_c00472.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00472 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_c00472 { 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_c00472" -> "#page-container .classname_c00472")
 */
.pf_c00472 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00472 { /* 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_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00472 { /* 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_c00472 { /* 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_c00472 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00472 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00472 {overflow:visible;}
  }
}
.c_c00472 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00472 { /* 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_c00472:after { /* webkit #35443 */
  content: '';
}
.t_c00472:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00472 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 */
}
.__c00472 { /* 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_c00472 { /* info for Javascript */
  display:none;
}
.l_c00472 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00472 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00472 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00472: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_c00472 {
    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_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00472.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_c00472 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00472{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00472;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.000000;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;}
.m1b_c00472{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m112_c00472{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00472{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m104_c00472{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m110_c00472{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00472{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md_c00472{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00472{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00472{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00472{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m31_c00472{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m107_c00472{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00472{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00472{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md5_c00472{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00472{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m95_c00472{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mea_c00472{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00472{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m101_c00472{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00472{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00472{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.me9_c00472{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00472{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mac_c00472{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mda_c00472{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.md7_c00472{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00472{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mce_c00472{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m3_c00472{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1_c00472{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00472{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m118_c00472{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m13_c00472{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m22_c00472{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma_c00472{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m57_c00472{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md8_c00472{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m84_c00472{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00472{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m52_c00472{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m73_c00472{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mab_c00472{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00472{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mba_c00472{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me8_c00472{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m64_c00472{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m59_c00472{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m93_c00472{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mec_c00472{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m41_c00472{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00472{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00472{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00472{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.me0_c00472{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00472{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00472{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00472{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00472{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m117_c00472{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md9_c00472{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00472{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00472{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m68_c00472{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m38_c00472{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m33_c00472{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00472{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m108_c00472{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00472{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00472{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m21_c00472{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00472{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00472{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00472{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00472{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00472{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00472{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m87_c00472{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m109_c00472{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00472{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00472{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.maf_c00472{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m67_c00472{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00472{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m16_c00472{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mad_c00472{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00472{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00472{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m20_c00472{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00472{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00472{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m78_c00472{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00472{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00472{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00472{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00472{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m102_c00472{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m53_c00472{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m103_c00472{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00472{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m24_c00472{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m50_c00472{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m40_c00472{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00472{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m105_c00472{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m15_c00472{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00472{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m19_c00472{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00472{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00472{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m77_c00472{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00472{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m29_c00472{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00472{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m116_c00472{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m25_c00472{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9_c00472{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m26_c00472{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m43_c00472{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00472{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m36_c00472{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m23_c00472{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00472{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m82_c00472{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mc_c00472{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00472{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00472{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m34_c00472{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00472{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m17_c00472{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00472{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00472{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m42_c00472{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00472{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00472{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00472{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00472{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00472{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m51_c00472{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.md2_c00472{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m63_c00472{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m91_c00472{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mae_c00472{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mef_c00472{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00472{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00472{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00472{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m100_c00472{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00472{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m55_c00472{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00472{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m39_c00472{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00472{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m90_c00472{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m86_c00472{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb_c00472{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00472{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00472{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00472{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00472{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00472{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00472{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00472{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00472{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.md4_c00472{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m85_c00472{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m30_c00472{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00472{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00472{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m27_c00472{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me6_c00472{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00472{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m46_c00472{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m74_c00472{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m65_c00472{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00472{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00472{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.meb_c00472{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00472{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00472{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mde_c00472{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mca_c00472{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6_c00472{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m92_c00472{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m18_c00472{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00472{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m83_c00472{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m69_c00472{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00472{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00472{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m75_c00472{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m10_c00472{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m76_c00472{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00472{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m58_c00472{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.md1_c00472{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m79_c00472{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m119_c00472{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m66_c00472{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00472{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m37_c00472{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5_c00472{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.me2_c00472{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00472{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00472{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00472{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m89_c00472{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m80_c00472{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m88_c00472{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00472{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m35_c00472{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.md3_c00472{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00472{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00472{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m113_c00472{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00472{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m81_c00472{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m96_c00472{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00472{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00472{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.md0_c00472{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00472{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00472{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m32_c00472{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m45_c00472{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00472{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_c00472{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m28_c00472{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00472{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m114_c00472{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m47_c00472{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);}
.m9c_c00472{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2_c00472{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md6_c00472{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m61_c00472{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00472{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00472{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m98_c00472{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00472{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00472{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m56_c00472{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00472{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00472{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m72_c00472{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00472{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00472{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m115_c00472{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.maa_c00472{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m49_c00472{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m62_c00472{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00472{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00472{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m60_c00472{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00472{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m54_c00472{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m44_c00472{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mee_c00472{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m7_c00472{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m48_c00472{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00472{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.me7_c00472{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m94_c00472{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m71_c00472{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00472{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.m99_c00472{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m97_c00472{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00472{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.med_c00472{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.me4_c00472{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m70_c00472{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00472{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00472{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.me5_c00472{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m11_c00472{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c00472{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.mf_c00472{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00472{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m14_c00472{transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454250,0.000000,0.000000,0.250000,0,0);}
.m106_c00472{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m111_c00472{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mff_c00472{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.me1_c00472{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00472{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.me3_c00472{transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);}
.m12_c00472{transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls1_c00472{letter-spacing:0.000000px;}
.ls0_c00472{letter-spacing:55.714286px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{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__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00472{word-spacing:-85.714286px;}
.ws0_c00472{word-spacing:-19.375000px;}
.ws17_c00472{word-spacing:0.000000px;}
.ws2_c00472{word-spacing:3.055556px;}
.ws15_c00472{word-spacing:6.052632px;}
.ws1_c00472{word-spacing:12.000000px;}
.ws9_c00472{word-spacing:12.352941px;}
.ws10_c00472{word-spacing:13.447307px;}
.ws11_c00472{word-spacing:16.257611px;}
.ws13_c00472{word-spacing:18.125000px;}
.ws16_c00472{word-spacing:19.333333px;}
.wse_c00472{word-spacing:19.994638px;}
.ws6_c00472{word-spacing:22.142857px;}
.wsc_c00472{word-spacing:23.211796px;}
.ws5_c00472{word-spacing:25.714286px;}
.wsf_c00472{word-spacing:26.428954px;}
.wsb_c00472{word-spacing:29.285714px;}
.ws3_c00472{word-spacing:31.911765px;}
.wsa_c00472{word-spacing:35.833333px;}
.wsd_c00472{word-spacing:36.000000px;}
.ws7_c00472{word-spacing:44.166667px;}
.ws12_c00472{word-spacing:54.062500px;}
.ws8_c00472{word-spacing:66.315789px;}
.ws14_c00472{word-spacing:67.631579px;}
._1_c00472{margin-left:-55.714286px;}
._0_c00472{margin-left:-8.928571px;}
._9_c00472{width:34.285714px;}
._2_c00472{width:37.857143px;}
._5_c00472{width:43.970588px;}
._b_c00472{width:50.211796px;}
._4_c00472{width:52.142857px;}
._a_c00472{width:53.428954px;}
._8_c00472{width:55.714286px;}
._3_c00472{width:59.285714px;}
._7_c00472{width:64.642857px;}
._6_c00472{width:70.000000px;}
.fc0_c00472{color:transparent;}
.fs8_c00472{font-size:30.000000px;}
.fs5_c00472{font-size:42.000000px;}
.fs7_c00472{font-size:48.000000px;}
.fs4_c00472{font-size:54.000000px;}
.fs2_c00472{font-size:60.000000px;}
.fs3_c00472{font-size:66.000000px;}
.fs6_c00472{font-size:72.000000px;}
.fs0_c00472{font-size:78.000000px;}
.fs1_c00472{font-size:96.000000px;}
.y0_c00472{bottom:0.000000px;}
.y74_c00472{bottom:192.150000px;}
.y3b_c00472{bottom:196.500000px;}
.y73_c00472{bottom:210.150000px;}
.y3a_c00472{bottom:211.650000px;}
.y39_c00472{bottom:225.450000px;}
.y72_c00472{bottom:227.850000px;}
.y38_c00472{bottom:239.850000px;}
.y71_c00472{bottom:245.850000px;}
.y37_c00472{bottom:253.950000px;}
.y70_c00472{bottom:263.850000px;}
.y36_c00472{bottom:268.650000px;}
.y35_c00472{bottom:282.300000px;}
.y6f_c00472{bottom:289.050000px;}
.y34_c00472{bottom:300.600000px;}
.y6e_c00472{bottom:303.450000px;}
.y6d_c00472{bottom:317.850000px;}
.y33_c00472{bottom:318.600000px;}
.y6c_c00472{bottom:331.950000px;}
.y32_c00472{bottom:333.300000px;}
.y6b_c00472{bottom:346.650000px;}
.y31_c00472{bottom:348.450000px;}
.y6a_c00472{bottom:360.300000px;}
.y30_c00472{bottom:362.550000px;}
.y69_c00472{bottom:374.400000px;}
.y2f_c00472{bottom:376.950000px;}
.y68_c00472{bottom:388.800000px;}
.y2e_c00472{bottom:391.350000px;}
.y67_c00472{bottom:406.500000px;}
.y2d_c00472{bottom:410.100000px;}
.y66_c00472{bottom:417.600000px;}
.y2c_c00472{bottom:428.400000px;}
.y65_c00472{bottom:432.300000px;}
.y2b_c00472{bottom:442.500000px;}
.y64_c00472{bottom:446.700000px;}
.y2a_c00472{bottom:456.150000px;}
.y63_c00472{bottom:460.800000px;}
.y29_c00472{bottom:470.550000px;}
.y62_c00472{bottom:475.200000px;}
.y28_c00472{bottom:484.650000px;}
.y61_c00472{bottom:489.600000px;}
.y27_c00472{bottom:498.300000px;}
.y60_c00472{bottom:503.700000px;}
.y26_c00472{bottom:513.000000px;}
.y5f_c00472{bottom:518.100000px;}
.y25_c00472{bottom:526.650000px;}
.y5e_c00472{bottom:532.500000px;}
.y24_c00472{bottom:542.100000px;}
.y5d_c00472{bottom:547.200000px;}
.y23_c00472{bottom:556.500000px;}
.y5c_c00472{bottom:561.300000px;}
.y22_c00472{bottom:574.950000px;}
.y5b_c00472{bottom:575.700000px;}
.y21_c00472{bottom:589.650000px;}
.y5a_c00472{bottom:590.100000px;}
.y59_c00472{bottom:604.800000px;}
.y20_c00472{bottom:608.100000px;}
.y58_c00472{bottom:618.900000px;}
.y1f_c00472{bottom:622.500000px;}
.y57_c00472{bottom:633.300000px;}
.y1e_c00472{bottom:641.100000px;}
.y56_c00472{bottom:647.700000px;}
.y1d_c00472{bottom:659.850000px;}
.y55_c00472{bottom:662.100000px;}
.y1c_c00472{bottom:673.950000px;}
.y54_c00472{bottom:675.750000px;}
.y1b_c00472{bottom:695.850000px;}
.y53_c00472{bottom:696.300000px;}
.y52_c00472{bottom:714.300000px;}
.y1a_c00472{bottom:715.050000px;}
.y19_c00472{bottom:729.450000px;}
.y51_c00472{bottom:731.550000px;}
.y18_c00472{bottom:744.150000px;}
.y50_c00472{bottom:753.000000px;}
.y17_c00472{bottom:757.800000px;}
.y4f_c00472{bottom:770.700000px;}
.y16_c00472{bottom:775.800000px;}
.y4e_c00472{bottom:788.400000px;}
.y15_c00472{bottom:790.500000px;}
.y4d_c00472{bottom:806.400000px;}
.y14_c00472{bottom:808.200000px;}
.y13_c00472{bottom:822.600000px;}
.y4c_c00472{bottom:824.400000px;}
.y4b_c00472{bottom:842.100000px;}
.y4a_c00472{bottom:860.100000px;}
.y12_c00472{bottom:861.150000px;}
.y49_c00472{bottom:877.350000px;}
.y11_c00472{bottom:878.400000px;}
.y48_c00472{bottom:895.650000px;}
.y10_c00472{bottom:896.250000px;}
.y47_c00472{bottom:913.350000px;}
.yf_c00472{bottom:913.950000px;}
.y46_c00472{bottom:930.600000px;}
.ye_c00472{bottom:931.650000px;}
.y45_c00472{bottom:948.600000px;}
.yd_c00472{bottom:948.900000px;}
.y44_c00472{bottom:970.200000px;}
.yc_c00472{bottom:971.250000px;}
.y43_c00472{bottom:987.900000px;}
.yb_c00472{bottom:988.950000px;}
.ya_c00472{bottom:1006.950000px;}
.y42_c00472{bottom:1014.900000px;}
.y9_c00472{bottom:1024.200000px;}
.y41_c00472{bottom:1037.100000px;}
.y7_c00472{bottom:1047.900000px;}
.y6_c00472{bottom:1054.800000px;}
.y40_c00472{bottom:1059.450000px;}
.y8_c00472{bottom:1066.350000px;}
.y5_c00472{bottom:1073.550000px;}
.y3f_c00472{bottom:1077.450000px;}
.y3e_c00472{bottom:1095.150000px;}
.y4_c00472{bottom:1095.600000px;}
.y3d_c00472{bottom:1117.050000px;}
.y3_c00472{bottom:1117.500000px;}
.y2_c00472{bottom:1138.800000px;}
.y1_c00472{bottom:1144.500000px;}
.y3c_c00472{bottom:1176.900000px;}
.ha_c00472{height:30.000000px;}
.h7_c00472{height:42.000000px;}
.h9_c00472{height:48.000000px;}
.h6_c00472{height:54.000000px;}
.h4_c00472{height:60.000000px;}
.h5_c00472{height:66.000000px;}
.h8_c00472{height:72.000000px;}
.h2_c00472{height:78.000000px;}
.h3_c00472{height:96.000000px;}
.h1_c00472{height:1267.500000px;}
.h0_c00472{height:1267.559967px;}
.w0_c00472{width:958.320007px;}
.w1_c00472{width:958.500000px;}
.x0_c00472{left:0.000000px;}
.x90_c00472{left:65.550000px;}
.x8c_c00472{left:66.900000px;}
.x58_c00472{left:68.700000px;}
.x8_c00472{left:71.250000px;}
.x92_c00472{left:80.700000px;}
.x4e_c00472{left:83.850000px;}
.x97_c00472{left:85.350000px;}
.x11_c00472{left:88.350000px;}
.x68_c00472{left:91.350000px;}
.x98_c00472{left:92.550000px;}
.x9c_c00472{left:94.050000px;}
.x6a_c00472{left:96.150000px;}
.x55_c00472{left:98.100000px;}
.x4f_c00472{left:102.150000px;}
.x3_c00472{left:106.200000px;}
.x6_c00472{left:107.700000px;}
.x14_c00472{left:110.100000px;}
.x6d_c00472{left:111.450000px;}
.x6e_c00472{left:112.800000px;}
.x6b_c00472{left:114.450000px;}
.x9_c00472{left:116.250000px;}
.x59_c00472{left:118.800000px;}
.x8a_c00472{left:121.650000px;}
.xe_c00472{left:122.700000px;}
.x40_c00472{left:123.900000px;}
.x56_c00472{left:125.100000px;}
.x49_c00472{left:126.600000px;}
.x46_c00472{left:128.100000px;}
.x32_c00472{left:130.650000px;}
.x37_c00472{left:132.300000px;}
.x1c_c00472{left:136.350000px;}
.x7b_c00472{left:137.700000px;}
.x63_c00472{left:139.650000px;}
.x15_c00472{left:141.450000px;}
.x41_c00472{left:143.700000px;}
.x20_c00472{left:146.850000px;}
.xf_c00472{left:148.200000px;}
.x2c_c00472{left:149.700000px;}
.x50_c00472{left:151.800000px;}
.x33_c00472{left:153.000000px;}
.x8b_c00472{left:154.050000px;}
.x4_c00472{left:155.100000px;}
.x81_c00472{left:156.900000px;}
.x93_c00472{left:160.200000px;}
.x51_c00472{left:161.850000px;}
.x95_c00472{left:163.200000px;}
.x7_c00472{left:165.000000px;}
.x3e_c00472{left:166.350000px;}
.x5_c00472{left:167.400000px;}
.x21_c00472{left:170.250000px;}
.x73_c00472{left:171.600000px;}
.x2d_c00472{left:172.800000px;}
.x27_c00472{left:174.900000px;}
.x4a_c00472{left:178.050000px;}
.xa_c00472{left:180.000000px;}
.x38_c00472{left:181.200000px;}
.x6f_c00472{left:182.700000px;}
.x10_c00472{left:184.500000px;}
.x5c_c00472{left:186.150000px;}
.x96_c00472{left:188.700000px;}
.x22_c00472{left:189.750000px;}
.x5a_c00472{left:192.600000px;}
.x67_c00472{left:195.600000px;}
.x76_c00472{left:199.050000px;}
.x28_c00472{left:200.400000px;}
.x99_c00472{left:203.400000px;}
.x42_c00472{left:206.700000px;}
.x52_c00472{left:210.150000px;}
.x12_c00472{left:212.400000px;}
.x91_c00472{left:215.700000px;}
.x60_c00472{left:218.250000px;}
.x34_c00472{left:219.600000px;}
.x16_c00472{left:221.400000px;}
.x9a_c00472{left:222.900000px;}
.x69_c00472{left:224.850000px;}
.x7c_c00472{left:226.500000px;}
.x29_c00472{left:228.150000px;}
.x77_c00472{left:229.950000px;}
.x39_c00472{left:231.900000px;}
.x4b_c00472{left:233.850000px;}
.x8d_c00472{left:237.450000px;}
.x1d_c00472{left:240.000000px;}
.x57_c00472{left:241.650000px;}
.x53_c00472{left:244.350000px;}
.x65_c00472{left:246.300000px;}
.xb_c00472{left:249.450000px;}
.x8f_c00472{left:250.500000px;}
.x43_c00472{left:252.750000px;}
.x3a_c00472{left:254.550000px;}
.x2e_c00472{left:255.600000px;}
.x23_c00472{left:257.100000px;}
.x84_c00472{left:259.200000px;}
.x17_c00472{left:260.700000px;}
.x61_c00472{left:262.500000px;}
.x82_c00472{left:264.150000px;}
.x3d_c00472{left:266.100000px;}
.x2a_c00472{left:269.850000px;}
.x47_c00472{left:272.100000px;}
.x70_c00472{left:273.300000px;}
.x85_c00472{left:274.650000px;}
.x1e_c00472{left:276.000000px;}
.x7d_c00472{left:279.450000px;}
.x18_c00472{left:280.500000px;}
.x71_c00472{left:282.600000px;}
.x64_c00472{left:285.450000px;}
.xc_c00472{left:287.550000px;}
.x2b_c00472{left:289.950000px;}
.x5d_c00472{left:292.050000px;}
.x4c_c00472{left:298.350000px;}
.x8e_c00472{left:302.100000px;}
.x78_c00472{left:303.300000px;}
.x7e_c00472{left:305.400000px;}
.x35_c00472{left:306.750000px;}
.x3b_c00472{left:307.800000px;}
.xd_c00472{left:310.200000px;}
.x80_c00472{left:311.550000px;}
.x54_c00472{left:314.850000px;}
.x24_c00472{left:316.200000px;}
.x74_c00472{left:321.000000px;}
.x2f_c00472{left:323.250000px;}
.x1_c00472{left:325.050000px;}
.x44_c00472{left:326.250000px;}
.x88_c00472{left:327.450000px;}
.x86_c00472{left:332.850000px;}
.x79_c00472{left:334.650000px;}
.x25_c00472{left:336.000000px;}
.x83_c00472{left:337.500000px;}
.x1f_c00472{left:338.700000px;}
.x6c_c00472{left:340.800000px;}
.x75_c00472{left:344.100000px;}
.x5e_c00472{left:345.750000px;}
.x19_c00472{left:347.100000px;}
.x5b_c00472{left:349.200000px;}
.x45_c00472{left:351.450000px;}
.x30_c00472{left:353.100000px;}
.x9b_c00472{left:356.400000px;}
.x7a_c00472{left:358.050000px;}
.x87_c00472{left:359.100000px;}
.x89_c00472{left:362.400000px;}
.x4d_c00472{left:366.000000px;}
.x13_c00472{left:368.250000px;}
.x36_c00472{left:371.250000px;}
.x26_c00472{left:373.050000px;}
.x3c_c00472{left:374.400000px;}
.x48_c00472{left:375.450000px;}
.x66_c00472{left:378.150000px;}
.x5f_c00472{left:379.200000px;}
.x62_c00472{left:382.950000px;}
.x72_c00472{left:384.450000px;}
.x94_c00472{left:388.950000px;}
.x7f_c00472{left:390.300000px;}
.x1a_c00472{left:392.100000px;}
.x3f_c00472{left:399.000000px;}
.x31_c00472{left:401.400000px;}
.x1b_c00472{left:412.650000px;}
.x134_c00472{left:422.250000px;}
.xf9_c00472{left:424.800000px;}
.xb2_c00472{left:426.300000px;}
.x12e_c00472{left:437.250000px;}
.x100_c00472{left:438.300000px;}
.xfe_c00472{left:439.500000px;}
.xe1_c00472{left:440.550000px;}
.xa5_c00472{left:442.350000px;}
.xab_c00472{left:444.150000px;}
.x133_c00472{left:450.600000px;}
.x121_c00472{left:451.800000px;}
.x10b_c00472{left:453.150000px;}
.x107_c00472{left:454.350000px;}
.x11d_c00472{left:457.650000px;}
.x9e_c00472{left:462.600000px;}
.xe4_c00472{left:464.700000px;}
.xb3_c00472{left:469.800000px;}
.xef_c00472{left:471.900000px;}
.x128_c00472{left:473.400000px;}
.x114_c00472{left:474.450000px;}
.xa6_c00472{left:475.800000px;}
.xc8_c00472{left:480.000000px;}
.x102_c00472{left:481.650000px;}
.xfa_c00472{left:483.150000px;}
.xf4_c00472{left:484.650000px;}
.xc3_c00472{left:486.450000px;}
.xeb_c00472{left:489.750000px;}
.x129_c00472{left:491.100000px;}
.x116_c00472{left:493.200000px;}
.x9f_c00472{left:494.700000px;}
.x13a_c00472{left:496.650000px;}
.x11f_c00472{left:497.700000px;}
.x12f_c00472{left:499.200000px;}
.xce_c00472{left:501.300000px;}
.x138_c00472{left:503.700000px;}
.xc4_c00472{left:504.750000px;}
.xb4_c00472{left:505.800000px;}
.x117_c00472{left:507.600000px;}
.x130_c00472{left:508.650000px;}
.x9d_c00472{left:512.700000px;}
.x103_c00472{left:514.050000px;}
.x108_c00472{left:515.250000px;}
.xa0_c00472{left:516.600000px;}
.xcf_c00472{left:519.300000px;}
.xb8_c00472{left:523.500000px;}
.xec_c00472{left:525.450000px;}
.xd6_c00472{left:527.550000px;}
.xae_c00472{left:528.750000px;}
.x109_c00472{left:529.950000px;}
.x11b_c00472{left:534.300000px;}
.xfb_c00472{left:535.650000px;}
.x10a_c00472{left:537.450000px;}
.xc9_c00472{left:539.400000px;}
.xf5_c00472{left:540.450000px;}
.xed_c00472{left:542.400000px;}
.x12d_c00472{left:543.450000px;}
.xe7_c00472{left:544.650000px;}
.xb9_c00472{left:546.600000px;}
.x118_c00472{left:547.950000px;}
.xaf_c00472{left:549.600000px;}
.xd0_c00472{left:551.700000px;}
.x11e_c00472{left:552.750000px;}
.xac_c00472{left:555.000000px;}
.xa1_c00472{left:556.500000px;}
.x123_c00472{left:559.050000px;}
.xa7_c00472{left:560.700000px;}
.xd8_c00472{left:563.100000px;}
.xe2_c00472{left:564.750000px;}
.xff_c00472{left:566.550000px;}
.x127_c00472{left:567.750000px;}
.xf6_c00472{left:568.950000px;}
.xba_c00472{left:570.300000px;}
.xb5_c00472{left:572.100000px;}
.xee_c00472{left:574.050000px;}
.xad_c00472{left:575.100000px;}
.xca_c00472{left:576.150000px;}
.x12a_c00472{left:578.250000px;}
.x122_c00472{left:580.950000px;}
.xde_c00472{left:582.450000px;}
.xbe_c00472{left:584.400000px;}
.x11c_c00472{left:586.500000px;}
.xd1_c00472{left:588.750000px;}
.xf0_c00472{left:590.400000px;}
.x119_c00472{left:592.800000px;}
.xa8_c00472{left:594.150000px;}
.xbb_c00472{left:595.200000px;}
.x10c_c00472{left:596.550000px;}
.x120_c00472{left:598.350000px;}
.x12b_c00472{left:599.850000px;}
.x124_c00472{left:602.250000px;}
.x104_c00472{left:603.750000px;}
.xb0_c00472{left:605.100000px;}
.x11a_c00472{left:606.150000px;}
.x125_c00472{left:609.450000px;}
.x10d_c00472{left:610.950000px;}
.xd9_c00472{left:612.000000px;}
.xcb_c00472{left:613.650000px;}
.xa2_c00472{left:616.200000px;}
.xa9_c00472{left:619.050000px;}
.xbc_c00472{left:620.700000px;}
.xd2_c00472{left:622.650000px;}
.xe8_c00472{left:624.300000px;}
.xb1_c00472{left:625.950000px;}
.x13d_c00472{left:627.150000px;}
.xf1_c00472{left:629.250000px;}
.x12c_c00472{left:630.750000px;}
.xd7_c00472{left:631.950000px;}
.x10e_c00472{left:633.300000px;}
.xdf_c00472{left:634.950000px;}
.xf7_c00472{left:636.000000px;}
.xbf_c00472{left:638.100000px;}
.x101_c00472{left:640.050000px;}
.x13b_c00472{left:641.700000px;}
.xda_c00472{left:643.650000px;}
.xd3_c00472{left:646.050000px;}
.x10f_c00472{left:647.400000px;}
.x112_c00472{left:649.650000px;}
.x135_c00472{left:651.150000px;}
.xc0_c00472{left:652.500000px;}
.xc5_c00472{left:653.850000px;}
.xb6_c00472{left:657.450000px;}
.x126_c00472{left:660.450000px;}
.x115_c00472{left:661.500000px;}
.xe5_c00472{left:662.700000px;}
.xe3_c00472{left:664.800000px;}
.xb7_c00472{left:667.200000px;}
.xdb_c00472{left:668.850000px;}
.xd4_c00472{left:670.200000px;}
.x136_c00472{left:674.850000px;}
.xfc_c00472{left:679.650000px;}
.x105_c00472{left:682.200000px;}
.xaa_c00472{left:684.600000px;}
.x131_c00472{left:686.100000px;}
.xa3_c00472{left:687.150000px;}
.x110_c00472{left:688.350000px;}
.xdc_c00472{left:691.200000px;}
.xf8_c00472{left:694.200000px;}
.xc1_c00472{left:695.700000px;}
.xf2_c00472{left:699.450000px;}
.xe6_c00472{left:701.250000px;}
.xd5_c00472{left:707.250000px;}
.x132_c00472{left:708.750000px;}
.xe0_c00472{left:710.550000px;}
.xcc_c00472{left:715.200000px;}
.x111_c00472{left:716.850000px;}
.xc6_c00472{left:717.900000px;}
.x113_c00472{left:719.550000px;}
.x13c_c00472{left:723.900000px;}
.xe9_c00472{left:727.650000px;}
.x137_c00472{left:729.150000px;}
.xbd_c00472{left:730.200000px;}
.xc7_c00472{left:731.250000px;}
.x2_c00472{left:732.900000px;}
.xdd_c00472{left:740.100000px;}
.x139_c00472{left:741.450000px;}
.xa4_c00472{left:742.650000px;}
.xfd_c00472{left:744.450000px;}
.x106_c00472{left:745.950000px;}
.xea_c00472{left:748.950000px;}
.xf3_c00472{left:753.150000px;}
.xc2_c00472{left:755.400000px;}
.xcd_c00472{left:756.600000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls1_c00472{letter-spacing:0.000000pt;}
.ls0_c00472{letter-spacing:49.523810pt;}
.ws4_c00472{word-spacing:-76.190476pt;}
.ws0_c00472{word-spacing:-17.222222pt;}
.ws17_c00472{word-spacing:0.000000pt;}
.ws2_c00472{word-spacing:2.716049pt;}
.ws15_c00472{word-spacing:5.380117pt;}
.ws1_c00472{word-spacing:10.666667pt;}
.ws9_c00472{word-spacing:10.980392pt;}
.ws10_c00472{word-spacing:11.953162pt;}
.ws11_c00472{word-spacing:14.451210pt;}
.ws13_c00472{word-spacing:16.111111pt;}
.ws16_c00472{word-spacing:17.185185pt;}
.wse_c00472{word-spacing:17.773012pt;}
.ws6_c00472{word-spacing:19.682540pt;}
.wsc_c00472{word-spacing:20.632708pt;}
.ws5_c00472{word-spacing:22.857143pt;}
.wsf_c00472{word-spacing:23.492404pt;}
.wsb_c00472{word-spacing:26.031746pt;}
.ws3_c00472{word-spacing:28.366013pt;}
.wsa_c00472{word-spacing:31.851852pt;}
.wsd_c00472{word-spacing:32.000000pt;}
.ws7_c00472{word-spacing:39.259259pt;}
.ws12_c00472{word-spacing:48.055556pt;}
.ws8_c00472{word-spacing:58.947368pt;}
.ws14_c00472{word-spacing:60.116959pt;}
._1_c00472{margin-left:-49.523810pt;}
._0_c00472{margin-left:-7.936508pt;}
._9_c00472{width:30.476190pt;}
._2_c00472{width:33.650794pt;}
._5_c00472{width:39.084967pt;}
._b_c00472{width:44.632708pt;}
._4_c00472{width:46.349206pt;}
._a_c00472{width:47.492404pt;}
._8_c00472{width:49.523810pt;}
._3_c00472{width:52.698413pt;}
._7_c00472{width:57.460317pt;}
._6_c00472{width:62.222222pt;}
.fs8_c00472{font-size:26.666667pt;}
.fs5_c00472{font-size:37.333333pt;}
.fs7_c00472{font-size:42.666667pt;}
.fs4_c00472{font-size:48.000000pt;}
.fs2_c00472{font-size:53.333333pt;}
.fs3_c00472{font-size:58.666667pt;}
.fs6_c00472{font-size:64.000000pt;}
.fs0_c00472{font-size:69.333333pt;}
.fs1_c00472{font-size:85.333333pt;}
.y0_c00472{bottom:0.000000pt;}
.y74_c00472{bottom:170.800000pt;}
.y3b_c00472{bottom:174.666667pt;}
.y73_c00472{bottom:186.800000pt;}
.y3a_c00472{bottom:188.133333pt;}
.y39_c00472{bottom:200.400000pt;}
.y72_c00472{bottom:202.533333pt;}
.y38_c00472{bottom:213.200000pt;}
.y71_c00472{bottom:218.533333pt;}
.y37_c00472{bottom:225.733333pt;}
.y70_c00472{bottom:234.533333pt;}
.y36_c00472{bottom:238.800000pt;}
.y35_c00472{bottom:250.933333pt;}
.y6f_c00472{bottom:256.933333pt;}
.y34_c00472{bottom:267.200000pt;}
.y6e_c00472{bottom:269.733333pt;}
.y6d_c00472{bottom:282.533333pt;}
.y33_c00472{bottom:283.200000pt;}
.y6c_c00472{bottom:295.066667pt;}
.y32_c00472{bottom:296.266667pt;}
.y6b_c00472{bottom:308.133333pt;}
.y31_c00472{bottom:309.733333pt;}
.y6a_c00472{bottom:320.266667pt;}
.y30_c00472{bottom:322.266667pt;}
.y69_c00472{bottom:332.800000pt;}
.y2f_c00472{bottom:335.066667pt;}
.y68_c00472{bottom:345.600000pt;}
.y2e_c00472{bottom:347.866667pt;}
.y67_c00472{bottom:361.333333pt;}
.y2d_c00472{bottom:364.533333pt;}
.y66_c00472{bottom:371.200000pt;}
.y2c_c00472{bottom:380.800000pt;}
.y65_c00472{bottom:384.266667pt;}
.y2b_c00472{bottom:393.333333pt;}
.y64_c00472{bottom:397.066667pt;}
.y2a_c00472{bottom:405.466667pt;}
.y63_c00472{bottom:409.600000pt;}
.y29_c00472{bottom:418.266667pt;}
.y62_c00472{bottom:422.400000pt;}
.y28_c00472{bottom:430.800000pt;}
.y61_c00472{bottom:435.200000pt;}
.y27_c00472{bottom:442.933333pt;}
.y60_c00472{bottom:447.733333pt;}
.y26_c00472{bottom:456.000000pt;}
.y5f_c00472{bottom:460.533333pt;}
.y25_c00472{bottom:468.133333pt;}
.y5e_c00472{bottom:473.333333pt;}
.y24_c00472{bottom:481.866667pt;}
.y5d_c00472{bottom:486.400000pt;}
.y23_c00472{bottom:494.666667pt;}
.y5c_c00472{bottom:498.933333pt;}
.y22_c00472{bottom:511.066667pt;}
.y5b_c00472{bottom:511.733333pt;}
.y21_c00472{bottom:524.133333pt;}
.y5a_c00472{bottom:524.533333pt;}
.y59_c00472{bottom:537.600000pt;}
.y20_c00472{bottom:540.533333pt;}
.y58_c00472{bottom:550.133333pt;}
.y1f_c00472{bottom:553.333333pt;}
.y57_c00472{bottom:562.933333pt;}
.y1e_c00472{bottom:569.866667pt;}
.y56_c00472{bottom:575.733333pt;}
.y1d_c00472{bottom:586.533333pt;}
.y55_c00472{bottom:588.533333pt;}
.y1c_c00472{bottom:599.066667pt;}
.y54_c00472{bottom:600.666667pt;}
.y1b_c00472{bottom:618.533333pt;}
.y53_c00472{bottom:618.933333pt;}
.y52_c00472{bottom:634.933333pt;}
.y1a_c00472{bottom:635.600000pt;}
.y19_c00472{bottom:648.400000pt;}
.y51_c00472{bottom:650.266667pt;}
.y18_c00472{bottom:661.466667pt;}
.y50_c00472{bottom:669.333333pt;}
.y17_c00472{bottom:673.600000pt;}
.y4f_c00472{bottom:685.066667pt;}
.y16_c00472{bottom:689.600000pt;}
.y4e_c00472{bottom:700.800000pt;}
.y15_c00472{bottom:702.666667pt;}
.y4d_c00472{bottom:716.800000pt;}
.y14_c00472{bottom:718.400000pt;}
.y13_c00472{bottom:731.200000pt;}
.y4c_c00472{bottom:732.800000pt;}
.y4b_c00472{bottom:748.533333pt;}
.y4a_c00472{bottom:764.533333pt;}
.y12_c00472{bottom:765.466667pt;}
.y49_c00472{bottom:779.866667pt;}
.y11_c00472{bottom:780.800000pt;}
.y48_c00472{bottom:796.133333pt;}
.y10_c00472{bottom:796.666667pt;}
.y47_c00472{bottom:811.866667pt;}
.yf_c00472{bottom:812.400000pt;}
.y46_c00472{bottom:827.200000pt;}
.ye_c00472{bottom:828.133333pt;}
.y45_c00472{bottom:843.200000pt;}
.yd_c00472{bottom:843.466667pt;}
.y44_c00472{bottom:862.400000pt;}
.yc_c00472{bottom:863.333333pt;}
.y43_c00472{bottom:878.133333pt;}
.yb_c00472{bottom:879.066667pt;}
.ya_c00472{bottom:895.066667pt;}
.y42_c00472{bottom:902.133333pt;}
.y9_c00472{bottom:910.400000pt;}
.y41_c00472{bottom:921.866667pt;}
.y7_c00472{bottom:931.466667pt;}
.y6_c00472{bottom:937.600000pt;}
.y40_c00472{bottom:941.733333pt;}
.y8_c00472{bottom:947.866667pt;}
.y5_c00472{bottom:954.266667pt;}
.y3f_c00472{bottom:957.733333pt;}
.y3e_c00472{bottom:973.466667pt;}
.y4_c00472{bottom:973.866667pt;}
.y3d_c00472{bottom:992.933333pt;}
.y3_c00472{bottom:993.333333pt;}
.y2_c00472{bottom:1012.266667pt;}
.y1_c00472{bottom:1017.333333pt;}
.y3c_c00472{bottom:1046.133333pt;}
.ha_c00472{height:26.666667pt;}
.h7_c00472{height:37.333333pt;}
.h9_c00472{height:42.666667pt;}
.h6_c00472{height:48.000000pt;}
.h4_c00472{height:53.333333pt;}
.h5_c00472{height:58.666667pt;}
.h8_c00472{height:64.000000pt;}
.h2_c00472{height:69.333333pt;}
.h3_c00472{height:85.333333pt;}
.h1_c00472{height:1126.666667pt;}
.h0_c00472{height:1126.719971pt;}
.w0_c00472{width:851.840007pt;}
.w1_c00472{width:852.000000pt;}
.x0_c00472{left:0.000000pt;}
.x90_c00472{left:58.266667pt;}
.x8c_c00472{left:59.466667pt;}
.x58_c00472{left:61.066667pt;}
.x8_c00472{left:63.333333pt;}
.x92_c00472{left:71.733333pt;}
.x4e_c00472{left:74.533333pt;}
.x97_c00472{left:75.866667pt;}
.x11_c00472{left:78.533333pt;}
.x68_c00472{left:81.200000pt;}
.x98_c00472{left:82.266667pt;}
.x9c_c00472{left:83.600000pt;}
.x6a_c00472{left:85.466667pt;}
.x55_c00472{left:87.200000pt;}
.x4f_c00472{left:90.800000pt;}
.x3_c00472{left:94.400000pt;}
.x6_c00472{left:95.733333pt;}
.x14_c00472{left:97.866667pt;}
.x6d_c00472{left:99.066667pt;}
.x6e_c00472{left:100.266667pt;}
.x6b_c00472{left:101.733333pt;}
.x9_c00472{left:103.333333pt;}
.x59_c00472{left:105.600000pt;}
.x8a_c00472{left:108.133333pt;}
.xe_c00472{left:109.066667pt;}
.x40_c00472{left:110.133333pt;}
.x56_c00472{left:111.200000pt;}
.x49_c00472{left:112.533333pt;}
.x46_c00472{left:113.866667pt;}
.x32_c00472{left:116.133333pt;}
.x37_c00472{left:117.600000pt;}
.x1c_c00472{left:121.200000pt;}
.x7b_c00472{left:122.400000pt;}
.x63_c00472{left:124.133333pt;}
.x15_c00472{left:125.733333pt;}
.x41_c00472{left:127.733333pt;}
.x20_c00472{left:130.533333pt;}
.xf_c00472{left:131.733333pt;}
.x2c_c00472{left:133.066667pt;}
.x50_c00472{left:134.933333pt;}
.x33_c00472{left:136.000000pt;}
.x8b_c00472{left:136.933333pt;}
.x4_c00472{left:137.866667pt;}
.x81_c00472{left:139.466667pt;}
.x93_c00472{left:142.400000pt;}
.x51_c00472{left:143.866667pt;}
.x95_c00472{left:145.066667pt;}
.x7_c00472{left:146.666667pt;}
.x3e_c00472{left:147.866667pt;}
.x5_c00472{left:148.800000pt;}
.x21_c00472{left:151.333333pt;}
.x73_c00472{left:152.533333pt;}
.x2d_c00472{left:153.600000pt;}
.x27_c00472{left:155.466667pt;}
.x4a_c00472{left:158.266667pt;}
.xa_c00472{left:160.000000pt;}
.x38_c00472{left:161.066667pt;}
.x6f_c00472{left:162.400000pt;}
.x10_c00472{left:164.000000pt;}
.x5c_c00472{left:165.466667pt;}
.x96_c00472{left:167.733333pt;}
.x22_c00472{left:168.666667pt;}
.x5a_c00472{left:171.200000pt;}
.x67_c00472{left:173.866667pt;}
.x76_c00472{left:176.933333pt;}
.x28_c00472{left:178.133333pt;}
.x99_c00472{left:180.800000pt;}
.x42_c00472{left:183.733333pt;}
.x52_c00472{left:186.800000pt;}
.x12_c00472{left:188.800000pt;}
.x91_c00472{left:191.733333pt;}
.x60_c00472{left:194.000000pt;}
.x34_c00472{left:195.200000pt;}
.x16_c00472{left:196.800000pt;}
.x9a_c00472{left:198.133333pt;}
.x69_c00472{left:199.866667pt;}
.x7c_c00472{left:201.333333pt;}
.x29_c00472{left:202.800000pt;}
.x77_c00472{left:204.400000pt;}
.x39_c00472{left:206.133333pt;}
.x4b_c00472{left:207.866667pt;}
.x8d_c00472{left:211.066667pt;}
.x1d_c00472{left:213.333333pt;}
.x57_c00472{left:214.800000pt;}
.x53_c00472{left:217.200000pt;}
.x65_c00472{left:218.933333pt;}
.xb_c00472{left:221.733333pt;}
.x8f_c00472{left:222.666667pt;}
.x43_c00472{left:224.666667pt;}
.x3a_c00472{left:226.266667pt;}
.x2e_c00472{left:227.200000pt;}
.x23_c00472{left:228.533333pt;}
.x84_c00472{left:230.400000pt;}
.x17_c00472{left:231.733333pt;}
.x61_c00472{left:233.333333pt;}
.x82_c00472{left:234.800000pt;}
.x3d_c00472{left:236.533333pt;}
.x2a_c00472{left:239.866667pt;}
.x47_c00472{left:241.866667pt;}
.x70_c00472{left:242.933333pt;}
.x85_c00472{left:244.133333pt;}
.x1e_c00472{left:245.333333pt;}
.x7d_c00472{left:248.400000pt;}
.x18_c00472{left:249.333333pt;}
.x71_c00472{left:251.200000pt;}
.x64_c00472{left:253.733333pt;}
.xc_c00472{left:255.600000pt;}
.x2b_c00472{left:257.733333pt;}
.x5d_c00472{left:259.600000pt;}
.x4c_c00472{left:265.200000pt;}
.x8e_c00472{left:268.533333pt;}
.x78_c00472{left:269.600000pt;}
.x7e_c00472{left:271.466667pt;}
.x35_c00472{left:272.666667pt;}
.x3b_c00472{left:273.600000pt;}
.xd_c00472{left:275.733333pt;}
.x80_c00472{left:276.933333pt;}
.x54_c00472{left:279.866667pt;}
.x24_c00472{left:281.066667pt;}
.x74_c00472{left:285.333333pt;}
.x2f_c00472{left:287.333333pt;}
.x1_c00472{left:288.933333pt;}
.x44_c00472{left:290.000000pt;}
.x88_c00472{left:291.066667pt;}
.x86_c00472{left:295.866667pt;}
.x79_c00472{left:297.466667pt;}
.x25_c00472{left:298.666667pt;}
.x83_c00472{left:300.000000pt;}
.x1f_c00472{left:301.066667pt;}
.x6c_c00472{left:302.933333pt;}
.x75_c00472{left:305.866667pt;}
.x5e_c00472{left:307.333333pt;}
.x19_c00472{left:308.533333pt;}
.x5b_c00472{left:310.400000pt;}
.x45_c00472{left:312.400000pt;}
.x30_c00472{left:313.866667pt;}
.x9b_c00472{left:316.800000pt;}
.x7a_c00472{left:318.266667pt;}
.x87_c00472{left:319.200000pt;}
.x89_c00472{left:322.133333pt;}
.x4d_c00472{left:325.333333pt;}
.x13_c00472{left:327.333333pt;}
.x36_c00472{left:330.000000pt;}
.x26_c00472{left:331.600000pt;}
.x3c_c00472{left:332.800000pt;}
.x48_c00472{left:333.733333pt;}
.x66_c00472{left:336.133333pt;}
.x5f_c00472{left:337.066667pt;}
.x62_c00472{left:340.400000pt;}
.x72_c00472{left:341.733333pt;}
.x94_c00472{left:345.733333pt;}
.x7f_c00472{left:346.933333pt;}
.x1a_c00472{left:348.533333pt;}
.x3f_c00472{left:354.666667pt;}
.x31_c00472{left:356.800000pt;}
.x1b_c00472{left:366.800000pt;}
.x134_c00472{left:375.333333pt;}
.xf9_c00472{left:377.600000pt;}
.xb2_c00472{left:378.933333pt;}
.x12e_c00472{left:388.666667pt;}
.x100_c00472{left:389.600000pt;}
.xfe_c00472{left:390.666667pt;}
.xe1_c00472{left:391.600000pt;}
.xa5_c00472{left:393.200000pt;}
.xab_c00472{left:394.800000pt;}
.x133_c00472{left:400.533333pt;}
.x121_c00472{left:401.600000pt;}
.x10b_c00472{left:402.800000pt;}
.x107_c00472{left:403.866667pt;}
.x11d_c00472{left:406.800000pt;}
.x9e_c00472{left:411.200000pt;}
.xe4_c00472{left:413.066667pt;}
.xb3_c00472{left:417.600000pt;}
.xef_c00472{left:419.466667pt;}
.x128_c00472{left:420.800000pt;}
.x114_c00472{left:421.733333pt;}
.xa6_c00472{left:422.933333pt;}
.xc8_c00472{left:426.666667pt;}
.x102_c00472{left:428.133333pt;}
.xfa_c00472{left:429.466667pt;}
.xf4_c00472{left:430.800000pt;}
.xc3_c00472{left:432.400000pt;}
.xeb_c00472{left:435.333333pt;}
.x129_c00472{left:436.533333pt;}
.x116_c00472{left:438.400000pt;}
.x9f_c00472{left:439.733333pt;}
.x13a_c00472{left:441.466667pt;}
.x11f_c00472{left:442.400000pt;}
.x12f_c00472{left:443.733333pt;}
.xce_c00472{left:445.600000pt;}
.x138_c00472{left:447.733333pt;}
.xc4_c00472{left:448.666667pt;}
.xb4_c00472{left:449.600000pt;}
.x117_c00472{left:451.200000pt;}
.x130_c00472{left:452.133333pt;}
.x9d_c00472{left:455.733333pt;}
.x103_c00472{left:456.933333pt;}
.x108_c00472{left:458.000000pt;}
.xa0_c00472{left:459.200000pt;}
.xcf_c00472{left:461.600000pt;}
.xb8_c00472{left:465.333333pt;}
.xec_c00472{left:467.066667pt;}
.xd6_c00472{left:468.933333pt;}
.xae_c00472{left:470.000000pt;}
.x109_c00472{left:471.066667pt;}
.x11b_c00472{left:474.933333pt;}
.xfb_c00472{left:476.133333pt;}
.x10a_c00472{left:477.733333pt;}
.xc9_c00472{left:479.466667pt;}
.xf5_c00472{left:480.400000pt;}
.xed_c00472{left:482.133333pt;}
.x12d_c00472{left:483.066667pt;}
.xe7_c00472{left:484.133333pt;}
.xb9_c00472{left:485.866667pt;}
.x118_c00472{left:487.066667pt;}
.xaf_c00472{left:488.533333pt;}
.xd0_c00472{left:490.400000pt;}
.x11e_c00472{left:491.333333pt;}
.xac_c00472{left:493.333333pt;}
.xa1_c00472{left:494.666667pt;}
.x123_c00472{left:496.933333pt;}
.xa7_c00472{left:498.400000pt;}
.xd8_c00472{left:500.533333pt;}
.xe2_c00472{left:502.000000pt;}
.xff_c00472{left:503.600000pt;}
.x127_c00472{left:504.666667pt;}
.xf6_c00472{left:505.733333pt;}
.xba_c00472{left:506.933333pt;}
.xb5_c00472{left:508.533333pt;}
.xee_c00472{left:510.266667pt;}
.xad_c00472{left:511.200000pt;}
.xca_c00472{left:512.133333pt;}
.x12a_c00472{left:514.000000pt;}
.x122_c00472{left:516.400000pt;}
.xde_c00472{left:517.733333pt;}
.xbe_c00472{left:519.466667pt;}
.x11c_c00472{left:521.333333pt;}
.xd1_c00472{left:523.333333pt;}
.xf0_c00472{left:524.800000pt;}
.x119_c00472{left:526.933333pt;}
.xa8_c00472{left:528.133333pt;}
.xbb_c00472{left:529.066667pt;}
.x10c_c00472{left:530.266667pt;}
.x120_c00472{left:531.866667pt;}
.x12b_c00472{left:533.200000pt;}
.x124_c00472{left:535.333333pt;}
.x104_c00472{left:536.666667pt;}
.xb0_c00472{left:537.866667pt;}
.x11a_c00472{left:538.800000pt;}
.x125_c00472{left:541.733333pt;}
.x10d_c00472{left:543.066667pt;}
.xd9_c00472{left:544.000000pt;}
.xcb_c00472{left:545.466667pt;}
.xa2_c00472{left:547.733333pt;}
.xa9_c00472{left:550.266667pt;}
.xbc_c00472{left:551.733333pt;}
.xd2_c00472{left:553.466667pt;}
.xe8_c00472{left:554.933333pt;}
.xb1_c00472{left:556.400000pt;}
.x13d_c00472{left:557.466667pt;}
.xf1_c00472{left:559.333333pt;}
.x12c_c00472{left:560.666667pt;}
.xd7_c00472{left:561.733333pt;}
.x10e_c00472{left:562.933333pt;}
.xdf_c00472{left:564.400000pt;}
.xf7_c00472{left:565.333333pt;}
.xbf_c00472{left:567.200000pt;}
.x101_c00472{left:568.933333pt;}
.x13b_c00472{left:570.400000pt;}
.xda_c00472{left:572.133333pt;}
.xd3_c00472{left:574.266667pt;}
.x10f_c00472{left:575.466667pt;}
.x112_c00472{left:577.466667pt;}
.x135_c00472{left:578.800000pt;}
.xc0_c00472{left:580.000000pt;}
.xc5_c00472{left:581.200000pt;}
.xb6_c00472{left:584.400000pt;}
.x126_c00472{left:587.066667pt;}
.x115_c00472{left:588.000000pt;}
.xe5_c00472{left:589.066667pt;}
.xe3_c00472{left:590.933333pt;}
.xb7_c00472{left:593.066667pt;}
.xdb_c00472{left:594.533333pt;}
.xd4_c00472{left:595.733333pt;}
.x136_c00472{left:599.866667pt;}
.xfc_c00472{left:604.133333pt;}
.x105_c00472{left:606.400000pt;}
.xaa_c00472{left:608.533333pt;}
.x131_c00472{left:609.866667pt;}
.xa3_c00472{left:610.800000pt;}
.x110_c00472{left:611.866667pt;}
.xdc_c00472{left:614.400000pt;}
.xf8_c00472{left:617.066667pt;}
.xc1_c00472{left:618.400000pt;}
.xf2_c00472{left:621.733333pt;}
.xe6_c00472{left:623.333333pt;}
.xd5_c00472{left:628.666667pt;}
.x132_c00472{left:630.000000pt;}
.xe0_c00472{left:631.600000pt;}
.xcc_c00472{left:635.733333pt;}
.x111_c00472{left:637.200000pt;}
.xc6_c00472{left:638.133333pt;}
.x113_c00472{left:639.600000pt;}
.x13c_c00472{left:643.466667pt;}
.xe9_c00472{left:646.800000pt;}
.x137_c00472{left:648.133333pt;}
.xbd_c00472{left:649.066667pt;}
.xc7_c00472{left:650.000000pt;}
.x2_c00472{left:651.466667pt;}
.xdd_c00472{left:657.866667pt;}
.x139_c00472{left:659.066667pt;}
.xa4_c00472{left:660.133333pt;}
.xfd_c00472{left:661.733333pt;}
.x106_c00472{left:663.066667pt;}
.xea_c00472{left:665.733333pt;}
.xf3_c00472{left:669.466667pt;}
.xc2_c00472{left:671.466667pt;}
.xcd_c00472{left:672.533333pt;}
}





/* 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_c00473 {
    display:none;
  }
  .loading-indicator_c00473.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00473 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_c00473 { 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_c00473" -> "#page-container .classname_c00473")
 */
.pf_c00473 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00473 { /* 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_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00473 { /* 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_c00473 { /* 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_c00473 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00473 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00473 {overflow:visible;}
  }
}
.c_c00473 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00473 { /* 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_c00473:after { /* webkit #35443 */
  content: '';
}
.t_c00473:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00473 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 */
}
.__c00473 { /* 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_c00473 { /* info for Javascript */
  display:none;
}
.l_c00473 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00473 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00473 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00473: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_c00473 {
    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_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00473.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_c00473 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00473;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.000000;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;}
.mc4_c00473{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00473{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00473{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00473{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00473{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00473{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.me9_c00473{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m19_c00473{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m32_c00473{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.maa_c00473{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m28_c00473{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00473{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00473{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00473{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00473{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00473{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00473{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m16_c00473{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.md6_c00473{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00473{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md1_c00473{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00473{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00473{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00473{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.me5_c00473{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m88_c00473{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m37_c00473{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00473{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00473{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mac_c00473{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m65_c00473{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m78_c00473{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00473{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00473{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00473{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m97_c00473{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m68_c00473{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m79_c00473{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m99_c00473{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.me1_c00473{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00473{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00473{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00473{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m107_c00473{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00473{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00473{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00473{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m12_c00473{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00473{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00473{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00473{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m54_c00473{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m91_c00473{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00473{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m76_c00473{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00473{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.me8_c00473{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m39_c00473{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m9_c00473{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me7_c00473{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m61_c00473{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00473{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m98_c00473{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.me6_c00473{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m14_c00473{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m64_c00473{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m48_c00473{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m50_c00473{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m86_c00473{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me4_c00473{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m34_c00473{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00473{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m73_c00473{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mea_c00473{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00473{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00473{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00473{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m11_c00473{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00473{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m84_c00473{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00473{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00473{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mef_c00473{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m13_c00473{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m85_c00473{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m22_c00473{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00473{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m60_c00473{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00473{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m69_c00473{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00473{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m49_c00473{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me_c00473{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m102_c00473{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00473{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00473{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00473{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00473{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.md_c00473{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00473{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m70_c00473{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m77_c00473{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00473{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m35_c00473{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m83_c00473{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m18_c00473{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m55_c00473{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00473{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m24_c00473{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m30_c00473{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m38_c00473{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00473{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mc_c00473{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00473{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00473{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m46_c00473{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me3_c00473{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00473{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00473{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m56_c00473{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m51_c00473{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me2_c00473{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m41_c00473{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00473{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m63_c00473{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m75_c00473{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m27_c00473{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00473{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m59_c00473{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5_c00473{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00473{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00473{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m58_c00473{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mae_c00473{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6_c00473{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00473{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m90_c00473{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m47_c00473{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m53_c00473{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00473{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00473{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00473{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m45_c00473{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00473{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m20_c00473{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m81_c00473{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m33_c00473{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb_c00473{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma_c00473{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00473{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m29_c00473{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m40_c00473{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00473{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00473{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00473{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10_c00473{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00473{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mee_c00473{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00473{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8_c00473{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00473{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m106_c00473{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00473{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00473{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m66_c00473{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m67_c00473{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.maf_c00473{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m26_c00473{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m74_c00473{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00473{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00473{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m87_c00473{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00473{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00473{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m57_c00473{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m62_c00473{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m21_c00473{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m95_c00473{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00473{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m71_c00473{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00473{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00473{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mce_c00473{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m7_c00473{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m25_c00473{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00473{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md7_c00473{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00473{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00473{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m44_c00473{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m94_c00473{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m36_c00473{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m42_c00473{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00473{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00473{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00473{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m52_c00473{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m92_c00473{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00473{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00473{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m93_c00473{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m82_c00473{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m89_c00473{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00473{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m17_c00473{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00473{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md0_c00473{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.md3_c00473{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00473{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00473{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md2_c00473{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00473{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mec_c00473{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m23_c00473{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00473{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00473{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00473{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00473{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);}
.m108_c00473{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m96_c00473{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m100_c00473{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m31_c00473{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00473{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00473{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mad_c00473{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.med_c00473{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf_c00473{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00473{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00473{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m43_c00473{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00473{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00473{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md4_c00473{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m72_c00473{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mab_c00473{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m105_c00473{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.meb_c00473{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m104_c00473{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00473{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00473{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m101_c00473{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00473{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m80_c00473{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mff_c00473{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00473{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mda_c00473{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00473{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m109_c00473{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md5_c00473{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00473{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m103_c00473{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00473{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00473{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00473{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mca_c00473{transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00473{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00473{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00473{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md8_c00473{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00473{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00473{transform:matrix(0.419250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419250,0.000000,0.000000,0.250000,0,0);}
.mde_c00473{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.md9_c00473{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00473{transform:matrix(0.593250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593250,0.000000,0.000000,0.250000,0,0);}
.me0_c00473{transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);}
.mba_c00473{transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00473{transform:matrix(3.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.120000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls0_c00473{letter-spacing:0.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{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__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:-6.000000px;}
.ws4_c00473{word-spacing:0.000000px;}
.ws1_c00473{word-spacing:1.987261px;}
.ws2_c00473{word-spacing:4.682927px;}
.ws3_c00473{word-spacing:5.368421px;}
.fc0_c00473{color:transparent;}
.fs2_c00473{font-size:30.000000px;}
.fs6_c00473{font-size:48.000000px;}
.fs5_c00473{font-size:54.000000px;}
.fs4_c00473{font-size:60.000000px;}
.fs3_c00473{font-size:66.000000px;}
.fs0_c00473{font-size:72.000000px;}
.fs1_c00473{font-size:78.000000px;}
.y0_c00473{bottom:0.000000px;}
.y39_c00473{bottom:9.750000px;}
.y38_c00473{bottom:31.650000px;}
.y3_c00473{bottom:152.700000px;}
.y37_c00473{bottom:195.150000px;}
.y66_c00473{bottom:198.000000px;}
.y36_c00473{bottom:214.350000px;}
.y65_c00473{bottom:220.350000px;}
.y35_c00473{bottom:232.350000px;}
.y64_c00473{bottom:236.850000px;}
.y34_c00473{bottom:250.050000px;}
.y63_c00473{bottom:255.900000px;}
.y33_c00473{bottom:267.750000px;}
.y62_c00473{bottom:277.200000px;}
.y32_c00473{bottom:285.450000px;}
.y61_c00473{bottom:295.500000px;}
.y31_c00473{bottom:303.450000px;}
.y60_c00473{bottom:315.300000px;}
.y30_c00473{bottom:321.450000px;}
.y5f_c00473{bottom:336.600000px;}
.y2f_c00473{bottom:339.450000px;}
.y2e_c00473{bottom:356.700000px;}
.y2d_c00473{bottom:374.700000px;}
.y5e_c00473{bottom:378.000000px;}
.y2c_c00473{bottom:392.700000px;}
.y5d_c00473{bottom:396.300000px;}
.y2b_c00473{bottom:410.400000px;}
.y5c_c00473{bottom:418.650000px;}
.y2a_c00473{bottom:428.400000px;}
.y5b_c00473{bottom:436.650000px;}
.y29_c00473{bottom:448.350000px;}
.y5a_c00473{bottom:458.400000px;}
.y28_c00473{bottom:467.850000px;}
.y59_c00473{bottom:476.700000px;}
.y27_c00473{bottom:485.850000px;}
.y58_c00473{bottom:498.300000px;}
.y26_c00473{bottom:503.850000px;}
.y57_c00473{bottom:518.100000px;}
.y25_c00473{bottom:521.550000px;}
.y56_c00473{bottom:538.350000px;}
.y24_c00473{bottom:539.550000px;}
.y55_c00473{bottom:556.350000px;}
.y23_c00473{bottom:557.250000px;}
.y54_c00473{bottom:574.050000px;}
.y22_c00473{bottom:575.250000px;}
.y53_c00473{bottom:591.750000px;}
.y21_c00473{bottom:592.800000px;}
.y52_c00473{bottom:609.750000px;}
.y20_c00473{bottom:610.500000px;}
.y51_c00473{bottom:627.450000px;}
.y1f_c00473{bottom:628.500000px;}
.y1e_c00473{bottom:646.500000px;}
.y50_c00473{bottom:646.950000px;}
.y1d_c00473{bottom:664.200000px;}
.y4f_c00473{bottom:667.200000px;}
.y4e_c00473{bottom:685.200000px;}
.y1c_c00473{bottom:686.250000px;}
.y4d_c00473{bottom:702.900000px;}
.y1b_c00473{bottom:708.150000px;}
.y4c_c00473{bottom:720.600000px;}
.y1a_c00473{bottom:726.150000px;}
.y4b_c00473{bottom:738.600000px;}
.y19_c00473{bottom:744.150000px;}
.y4a_c00473{bottom:756.300000px;}
.y18_c00473{bottom:764.100000px;}
.y17_c00473{bottom:783.600000px;}
.y16_c00473{bottom:801.300000px;}
.y48_c00473{bottom:816.150000px;}
.y49_c00473{bottom:816.450000px;}
.y15_c00473{bottom:819.300000px;}
.y47_c00473{bottom:825.150000px;}
.y14_c00473{bottom:837.000000px;}
.y46_c00473{bottom:842.400000px;}
.y13_c00473{bottom:855.000000px;}
.y45_c00473{bottom:864.300000px;}
.y12_c00473{bottom:872.700000px;}
.y11_c00473{bottom:890.700000px;}
.y44_c00473{bottom:894.900000px;}
.y10_c00473{bottom:908.400000px;}
.y43_c00473{bottom:908.550000px;}
.yf_c00473{bottom:926.400000px;}
.y42_c00473{bottom:930.900000px;}
.ye_c00473{bottom:944.400000px;}
.y41_c00473{bottom:952.200000px;}
.yd_c00473{bottom:962.100000px;}
.y40_c00473{bottom:977.100000px;}
.yc_c00473{bottom:979.800000px;}
.y3f_c00473{bottom:995.400000px;}
.yb_c00473{bottom:997.800000px;}
.ya_c00473{bottom:1015.500000px;}
.y3e_c00473{bottom:1029.900000px;}
.y9_c00473{bottom:1033.500000px;}
.y8_c00473{bottom:1051.500000px;}
.y3d_c00473{bottom:1065.450000px;}
.y7_c00473{bottom:1069.200000px;}
.y3c_c00473{bottom:1084.950000px;}
.y6_c00473{bottom:1087.200000px;}
.y3b_c00473{bottom:1102.650000px;}
.y5_c00473{bottom:1104.900000px;}
.y4_c00473{bottom:1122.900000px;}
.y3a_c00473{bottom:1129.650000px;}
.y1_c00473{bottom:1144.800000px;}
.y2_c00473{bottom:1150.500000px;}
.h4_c00473{height:30.000000px;}
.h8_c00473{height:48.000000px;}
.h7_c00473{height:54.000000px;}
.h6_c00473{height:60.000000px;}
.h5_c00473{height:66.000000px;}
.h2_c00473{height:72.000000px;}
.h3_c00473{height:78.000000px;}
.h1_c00473{height:1273.500000px;}
.h0_c00473{height:1273.679993px;}
.w0_c00473{width:958.320007px;}
.w1_c00473{width:958.500000px;}
.x0_c00473{left:0.000000px;}
.x3_c00473{left:28.050000px;}
.x1_c00473{left:187.200000px;}
.x71_c00473{left:196.200000px;}
.x95_c00473{left:200.550000px;}
.x4_c00473{left:209.550000px;}
.x11_c00473{left:210.750000px;}
.x51_c00473{left:211.800000px;}
.x63_c00473{left:212.850000px;}
.x6a_c00473{left:214.500000px;}
.x7b_c00473{left:215.850000px;}
.x86_c00473{left:217.050000px;}
.x97_c00473{left:219.300000px;}
.x9e_c00473{left:220.950000px;}
.xa2_c00473{left:222.000000px;}
.xa6_c00473{left:223.350000px;}
.xa7_c00473{left:224.550000px;}
.xaa_c00473{left:227.100000px;}
.x26_c00473{left:230.850000px;}
.x66_c00473{left:232.200000px;}
.x1f_c00473{left:233.400000px;}
.x9a_c00473{left:235.200000px;}
.x77_c00473{left:238.950000px;}
.x52_c00473{left:241.350000px;}
.x31_c00473{left:243.450000px;}
.xc_c00473{left:244.950000px;}
.x91_c00473{left:247.500000px;}
.x6b_c00473{left:249.000000px;}
.x17_c00473{left:251.100000px;}
.x57_c00473{left:252.600000px;}
.x12_c00473{left:253.650000px;}
.x48_c00473{left:256.350000px;}
.x72_c00473{left:257.400000px;}
.x43_c00473{left:259.650000px;}
.x93_c00473{left:260.850000px;}
.x2b_c00473{left:262.650000px;}
.x64_c00473{left:264.000000px;}
.x32_c00473{left:265.050000px;}
.x89_c00473{left:267.300000px;}
.x18_c00473{left:268.350000px;}
.x58_c00473{left:269.850000px;}
.x5_c00473{left:271.800000px;}
.x8c_c00473{left:274.650000px;}
.x20_c00473{left:275.850000px;}
.x6e_c00473{left:277.500000px;}
.x4c_c00473{left:280.650000px;}
.x37_c00473{left:282.000000px;}
.x5f_c00473{left:283.500000px;}
.x87_c00473{left:285.150000px;}
.xa4_c00473{left:286.200000px;}
.x53_c00473{left:287.400000px;}
.x19_c00473{left:288.450000px;}
.x7f_c00473{left:289.950000px;}
.xd_c00473{left:291.450000px;}
.x6_c00473{left:295.500000px;}
.x67_c00473{left:297.300000px;}
.x8d_c00473{left:299.100000px;}
.x33_c00473{left:300.300000px;}
.x4d_c00473{left:301.950000px;}
.x6c_c00473{left:303.000000px;}
.x59_c00473{left:304.350000px;}
.x6f_c00473{left:305.550000px;}
.xa3_c00473{left:306.600000px;}
.x60_c00473{left:307.950000px;}
.x98_c00473{left:309.600000px;}
.xe_c00473{left:311.550000px;}
.x21_c00473{left:312.900000px;}
.x3e_c00473{left:314.100000px;}
.x90_c00473{left:319.950000px;}
.x2c_c00473{left:321.300000px;}
.x49_c00473{left:323.250000px;}
.x74_c00473{left:325.500000px;}
.x94_c00473{left:326.700000px;}
.x13_c00473{left:328.200000px;}
.x7c_c00473{left:330.000000px;}
.x2d_c00473{left:332.850000px;}
.x1a_c00473{left:334.200000px;}
.x54_c00473{left:335.250000px;}
.x78_c00473{left:337.200000px;}
.x8a_c00473{left:338.850000px;}
.x34_c00473{left:341.700000px;}
.x5a_c00473{left:342.900000px;}
.x1b_c00473{left:345.000000px;}
.x96_c00473{left:346.050000px;}
.x7_c00473{left:348.450000px;}
.x3b_c00473{left:350.250000px;}
.x22_c00473{left:352.200000px;}
.x62_c00473{left:354.300000px;}
.x61_c00473{left:356.250000px;}
.x9c_c00473{left:357.300000px;}
.x55_c00473{left:358.350000px;}
.x3f_c00473{left:360.600000px;}
.x5b_c00473{left:362.700000px;}
.x35_c00473{left:364.050000px;}
.x27_c00473{left:366.150000px;}
.x2e_c00473{left:367.350000px;}
.x4a_c00473{left:369.750000px;}
.x23_c00473{left:371.700000px;}
.x38_c00473{left:373.800000px;}
.x65_c00473{left:375.900000px;}
.xf_c00473{left:377.400000px;}
.x80_c00473{left:382.200000px;}
.x4e_c00473{left:385.050000px;}
.x14_c00473{left:386.100000px;}
.x9f_c00473{left:388.050000px;}
.x46_c00473{left:390.000000px;}
.x83_c00473{left:391.350000px;}
.x40_c00473{left:394.050000px;}
.x8e_c00473{left:397.650000px;}
.x8_c00473{left:398.850000px;}
.x75_c00473{left:400.050000px;}
.x9d_c00473{left:403.050000px;}
.x28_c00473{left:405.000000px;}
.x79_c00473{left:409.200000px;}
.x1c_c00473{left:410.850000px;}
.xa5_c00473{left:411.900000px;}
.x2f_c00473{left:413.400000px;}
.x41_c00473{left:415.650000px;}
.xa8_c00473{left:417.150000px;}
.x47_c00473{left:421.350000px;}
.x9_c00473{left:423.300000px;}
.x99_c00473{left:424.500000px;}
.x2_c00473{left:425.550000px;}
.x39_c00473{left:429.600000px;}
.x15_c00473{left:432.150000px;}
.x30_c00473{left:434.550000px;}
.x4f_c00473{left:436.500000px;}
.x44_c00473{left:438.600000px;}
.x24_c00473{left:441.150000px;}
.x5c_c00473{left:442.350000px;}
.x8b_c00473{left:445.350000px;}
.x7d_c00473{left:448.050000px;}
.x29_c00473{left:449.250000px;}
.x84_c00473{left:450.750000px;}
.x1d_c00473{left:452.550000px;}
.x76_c00473{left:456.150000px;}
.x81_c00473{left:457.800000px;}
.x3c_c00473{left:459.150000px;}
.x36_c00473{left:460.500000px;}
.x42_c00473{left:461.700000px;}
.x45_c00473{left:463.800000px;}
.x7a_c00473{left:465.000000px;}
.x16_c00473{left:466.050000px;}
.x68_c00473{left:467.550000px;}
.x85_c00473{left:469.800000px;}
.x6d_c00473{left:472.200000px;}
.x5d_c00473{left:473.250000px;}
.x9b_c00473{left:475.650000px;}
.xa0_c00473{left:477.300000px;}
.x73_c00473{left:479.100000px;}
.x7e_c00473{left:481.200000px;}
.x10_c00473{left:482.550000px;}
.x69_c00473{left:484.500000px;}
.x1e_c00473{left:486.450000px;}
.x92_c00473{left:488.400000px;}
.xa_c00473{left:489.900000px;}
.x70_c00473{left:492.450000px;}
.x5e_c00473{left:494.100000px;}
.x25_c00473{left:495.150000px;}
.x4b_c00473{left:497.400000px;}
.x56_c00473{left:499.200000px;}
.x2a_c00473{left:500.700000px;}
.x50_c00473{left:504.150000px;}
.x3a_c00473{left:506.250000px;}
.x82_c00473{left:508.200000px;}
.x8f_c00473{left:510.300000px;}
.xb_c00473{left:511.800000px;}
.xa9_c00473{left:514.350000px;}
.x3d_c00473{left:516.000000px;}
.x88_c00473{left:517.200000px;}
.xa1_c00473{left:519.300000px;}
.xb5_c00473{left:535.350000px;}
.xb6_c00473{left:546.900000px;}
.xe2_c00473{left:550.050000px;}
.xbd_c00473{left:556.800000px;}
.x102_c00473{left:559.050000px;}
.xf1_c00473{left:561.000000px;}
.xc6_c00473{left:562.950000px;}
.xbe_c00473{left:564.300000px;}
.xd3_c00473{left:565.950000px;}
.xe8_c00473{left:568.050000px;}
.xfd_c00473{left:569.550000px;}
.x118_c00473{left:570.600000px;}
.x121_c00473{left:571.650000px;}
.xdd_c00473{left:574.200000px;}
.x136_c00473{left:575.250000px;}
.xab_c00473{left:580.650000px;}
.xae_c00473{left:582.600000px;}
.xd9_c00473{left:585.300000px;}
.x104_c00473{left:587.100000px;}
.x11a_c00473{left:589.050000px;}
.xc7_c00473{left:590.700000px;}
.x12a_c00473{left:591.900000px;}
.x103_c00473{left:596.550000px;}
.xf4_c00473{left:601.050000px;}
.xfa_c00473{left:602.550000px;}
.x109_c00473{left:607.050000px;}
.xf2_c00473{left:609.600000px;}
.x122_c00473{left:612.300000px;}
.x128_c00473{left:615.450000px;}
.xbf_c00473{left:618.300000px;}
.x10e_c00473{left:619.800000px;}
.xe3_c00473{left:622.350000px;}
.x133_c00473{left:624.300000px;}
.xd4_c00473{left:627.150000px;}
.xb3_c00473{left:628.200000px;}
.xe7_c00473{left:629.250000px;}
.xc0_c00473{left:630.600000px;}
.xcd_c00473{left:631.800000px;}
.xac_c00473{left:633.150000px;}
.xda_c00473{left:635.550000px;}
.xfb_c00473{left:637.050000px;}
.xdb_c00473{left:639.150000px;}
.x10f_c00473{left:640.650000px;}
.xc8_c00473{left:643.200000px;}
.xb7_c00473{left:645.150000px;}
.xeb_c00473{left:647.400000px;}
.x10a_c00473{left:648.750000px;}
.x12f_c00473{left:649.950000px;}
.xdc_c00473{left:651.450000px;}
.xc9_c00473{left:657.900000px;}
.xcf_c00473{left:659.850000px;}
.xe9_c00473{left:662.700000px;}
.xde_c00473{left:665.400000px;}
.xfe_c00473{left:667.500000px;}
.xb8_c00473{left:668.850000px;}
.x119_c00473{left:670.350000px;}
.xf5_c00473{left:673.050000px;}
.x137_c00473{left:674.250000px;}
.xdf_c00473{left:678.000000px;}
.x11d_c00473{left:679.350000px;}
.xd5_c00473{left:681.900000px;}
.x129_c00473{left:682.950000px;}
.xe4_c00473{left:685.350000px;}
.xc1_c00473{left:687.900000px;}
.xea_c00473{left:690.000000px;}
.xee_c00473{left:691.350000px;}
.x134_c00473{left:695.250000px;}
.xad_c00473{left:700.050000px;}
.xb9_c00473{left:701.550000px;}
.xc2_c00473{left:703.800000px;}
.xec_c00473{left:706.050000px;}
.x11b_c00473{left:709.350000px;}
.x123_c00473{left:711.300000px;}
.xca_c00473{left:713.400000px;}
.x115_c00473{left:717.000000px;}
.xed_c00473{left:719.700000px;}
.x10b_c00473{left:721.800000px;}
.xd6_c00473{left:727.200000px;}
.xd0_c00473{left:729.000000px;}
.xce_c00473{left:730.800000px;}
.x10c_c00473{left:737.250000px;}
.x124_c00473{left:739.800000px;}
.x12b_c00473{left:741.750000px;}
.xb4_c00473{left:743.100000px;}
.xe5_c00473{left:744.750000px;}
.x111_c00473{left:746.400000px;}
.xcb_c00473{left:749.100000px;}
.xf6_c00473{left:751.950000px;}
.xe6_c00473{left:753.000000px;}
.x11c_c00473{left:755.850000px;}
.xba_c00473{left:758.850000px;}
.x135_c00473{left:761.550000px;}
.xd7_c00473{left:764.700000px;}
.xcc_c00473{left:766.350000px;}
.x105_c00473{left:767.700000px;}
.x126_c00473{left:769.050000px;}
.x11f_c00473{left:774.300000px;}
.xff_c00473{left:776.100000px;}
.xf7_c00473{left:778.200000px;}
.x11e_c00473{left:779.700000px;}
.xaf_c00473{left:780.900000px;}
.xd1_c00473{left:784.050000px;}
.xef_c00473{left:786.000000px;}
.x116_c00473{left:789.000000px;}
.xb0_c00473{left:790.950000px;}
.xe0_c00473{left:794.550000px;}
.xf3_c00473{left:797.850000px;}
.x113_c00473{left:799.650000px;}
.xf8_c00473{left:801.900000px;}
.x132_c00473{left:803.100000px;}
.x130_c00473{left:806.400000px;}
.x12c_c00473{left:809.400000px;}
.x106_c00473{left:814.200000px;}
.xc3_c00473{left:816.000000px;}
.xd8_c00473{left:818.700000px;}
.xbb_c00473{left:820.050000px;}
.x120_c00473{left:823.650000px;}
.xc4_c00473{left:827.850000px;}
.x12d_c00473{left:828.900000px;}
.x100_c00473{left:830.850000px;}
.x112_c00473{left:833.550000px;}
.x127_c00473{left:834.600000px;}
.x10d_c00473{left:836.250000px;}
.x107_c00473{left:839.700000px;}
.xd2_c00473{left:841.650000px;}
.x101_c00473{left:843.450000px;}
.x110_c00473{left:844.800000px;}
.xfc_c00473{left:852.450000px;}
.xe1_c00473{left:853.650000px;}
.xc5_c00473{left:855.600000px;}
.x12e_c00473{left:856.650000px;}
.x125_c00473{left:858.600000px;}
.xbc_c00473{left:861.750000px;}
.xf9_c00473{left:865.950000px;}
.x117_c00473{left:869.700000px;}
.xf0_c00473{left:871.350000px;}
.x138_c00473{left:874.800000px;}
.x108_c00473{left:876.000000px;}
.x131_c00473{left:877.650000px;}
.x114_c00473{left:884.550000px;}
.xb1_c00473{left:915.150000px;}
.xb2_c00473{left:950.400000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:-5.333333pt;}
.ws4_c00473{word-spacing:0.000000pt;}
.ws1_c00473{word-spacing:1.766454pt;}
.ws2_c00473{word-spacing:4.162602pt;}
.ws3_c00473{word-spacing:4.771930pt;}
.fs2_c00473{font-size:26.666667pt;}
.fs6_c00473{font-size:42.666667pt;}
.fs5_c00473{font-size:48.000000pt;}
.fs4_c00473{font-size:53.333333pt;}
.fs3_c00473{font-size:58.666667pt;}
.fs0_c00473{font-size:64.000000pt;}
.fs1_c00473{font-size:69.333333pt;}
.y0_c00473{bottom:0.000000pt;}
.y39_c00473{bottom:8.666667pt;}
.y38_c00473{bottom:28.133333pt;}
.y3_c00473{bottom:135.733333pt;}
.y37_c00473{bottom:173.466667pt;}
.y66_c00473{bottom:176.000000pt;}
.y36_c00473{bottom:190.533333pt;}
.y65_c00473{bottom:195.866667pt;}
.y35_c00473{bottom:206.533333pt;}
.y64_c00473{bottom:210.533333pt;}
.y34_c00473{bottom:222.266667pt;}
.y63_c00473{bottom:227.466667pt;}
.y33_c00473{bottom:238.000000pt;}
.y62_c00473{bottom:246.400000pt;}
.y32_c00473{bottom:253.733333pt;}
.y61_c00473{bottom:262.666667pt;}
.y31_c00473{bottom:269.733333pt;}
.y60_c00473{bottom:280.266667pt;}
.y30_c00473{bottom:285.733333pt;}
.y5f_c00473{bottom:299.200000pt;}
.y2f_c00473{bottom:301.733333pt;}
.y2e_c00473{bottom:317.066667pt;}
.y2d_c00473{bottom:333.066667pt;}
.y5e_c00473{bottom:336.000000pt;}
.y2c_c00473{bottom:349.066667pt;}
.y5d_c00473{bottom:352.266667pt;}
.y2b_c00473{bottom:364.800000pt;}
.y5c_c00473{bottom:372.133333pt;}
.y2a_c00473{bottom:380.800000pt;}
.y5b_c00473{bottom:388.133333pt;}
.y29_c00473{bottom:398.533333pt;}
.y5a_c00473{bottom:407.466667pt;}
.y28_c00473{bottom:415.866667pt;}
.y59_c00473{bottom:423.733333pt;}
.y27_c00473{bottom:431.866667pt;}
.y58_c00473{bottom:442.933333pt;}
.y26_c00473{bottom:447.866667pt;}
.y57_c00473{bottom:460.533333pt;}
.y25_c00473{bottom:463.600000pt;}
.y56_c00473{bottom:478.533333pt;}
.y24_c00473{bottom:479.600000pt;}
.y55_c00473{bottom:494.533333pt;}
.y23_c00473{bottom:495.333333pt;}
.y54_c00473{bottom:510.266667pt;}
.y22_c00473{bottom:511.333333pt;}
.y53_c00473{bottom:526.000000pt;}
.y21_c00473{bottom:526.933333pt;}
.y52_c00473{bottom:542.000000pt;}
.y20_c00473{bottom:542.666667pt;}
.y51_c00473{bottom:557.733333pt;}
.y1f_c00473{bottom:558.666667pt;}
.y1e_c00473{bottom:574.666667pt;}
.y50_c00473{bottom:575.066667pt;}
.y1d_c00473{bottom:590.400000pt;}
.y4f_c00473{bottom:593.066667pt;}
.y4e_c00473{bottom:609.066667pt;}
.y1c_c00473{bottom:610.000000pt;}
.y4d_c00473{bottom:624.800000pt;}
.y1b_c00473{bottom:629.466667pt;}
.y4c_c00473{bottom:640.533333pt;}
.y1a_c00473{bottom:645.466667pt;}
.y4b_c00473{bottom:656.533333pt;}
.y19_c00473{bottom:661.466667pt;}
.y4a_c00473{bottom:672.266667pt;}
.y18_c00473{bottom:679.200000pt;}
.y17_c00473{bottom:696.533333pt;}
.y16_c00473{bottom:712.266667pt;}
.y48_c00473{bottom:725.466667pt;}
.y49_c00473{bottom:725.733333pt;}
.y15_c00473{bottom:728.266667pt;}
.y47_c00473{bottom:733.466667pt;}
.y14_c00473{bottom:744.000000pt;}
.y46_c00473{bottom:748.800000pt;}
.y13_c00473{bottom:760.000000pt;}
.y45_c00473{bottom:768.266667pt;}
.y12_c00473{bottom:775.733333pt;}
.y11_c00473{bottom:791.733333pt;}
.y44_c00473{bottom:795.466667pt;}
.y10_c00473{bottom:807.466667pt;}
.y43_c00473{bottom:807.600000pt;}
.yf_c00473{bottom:823.466667pt;}
.y42_c00473{bottom:827.466667pt;}
.ye_c00473{bottom:839.466667pt;}
.y41_c00473{bottom:846.400000pt;}
.yd_c00473{bottom:855.200000pt;}
.y40_c00473{bottom:868.533333pt;}
.yc_c00473{bottom:870.933333pt;}
.y3f_c00473{bottom:884.800000pt;}
.yb_c00473{bottom:886.933333pt;}
.ya_c00473{bottom:902.666667pt;}
.y3e_c00473{bottom:915.466667pt;}
.y9_c00473{bottom:918.666667pt;}
.y8_c00473{bottom:934.666667pt;}
.y3d_c00473{bottom:947.066667pt;}
.y7_c00473{bottom:950.400000pt;}
.y3c_c00473{bottom:964.400000pt;}
.y6_c00473{bottom:966.400000pt;}
.y3b_c00473{bottom:980.133333pt;}
.y5_c00473{bottom:982.133333pt;}
.y4_c00473{bottom:998.133333pt;}
.y3a_c00473{bottom:1004.133333pt;}
.y1_c00473{bottom:1017.600000pt;}
.y2_c00473{bottom:1022.666667pt;}
.h4_c00473{height:26.666667pt;}
.h8_c00473{height:42.666667pt;}
.h7_c00473{height:48.000000pt;}
.h6_c00473{height:53.333333pt;}
.h5_c00473{height:58.666667pt;}
.h2_c00473{height:64.000000pt;}
.h3_c00473{height:69.333333pt;}
.h1_c00473{height:1132.000000pt;}
.h0_c00473{height:1132.159993pt;}
.w0_c00473{width:851.840007pt;}
.w1_c00473{width:852.000000pt;}
.x0_c00473{left:0.000000pt;}
.x3_c00473{left:24.933333pt;}
.x1_c00473{left:166.400000pt;}
.x71_c00473{left:174.400000pt;}
.x95_c00473{left:178.266667pt;}
.x4_c00473{left:186.266667pt;}
.x11_c00473{left:187.333333pt;}
.x51_c00473{left:188.266667pt;}
.x63_c00473{left:189.200000pt;}
.x6a_c00473{left:190.666667pt;}
.x7b_c00473{left:191.866667pt;}
.x86_c00473{left:192.933333pt;}
.x97_c00473{left:194.933333pt;}
.x9e_c00473{left:196.400000pt;}
.xa2_c00473{left:197.333333pt;}
.xa6_c00473{left:198.533333pt;}
.xa7_c00473{left:199.600000pt;}
.xaa_c00473{left:201.866667pt;}
.x26_c00473{left:205.200000pt;}
.x66_c00473{left:206.400000pt;}
.x1f_c00473{left:207.466667pt;}
.x9a_c00473{left:209.066667pt;}
.x77_c00473{left:212.400000pt;}
.x52_c00473{left:214.533333pt;}
.x31_c00473{left:216.400000pt;}
.xc_c00473{left:217.733333pt;}
.x91_c00473{left:220.000000pt;}
.x6b_c00473{left:221.333333pt;}
.x17_c00473{left:223.200000pt;}
.x57_c00473{left:224.533333pt;}
.x12_c00473{left:225.466667pt;}
.x48_c00473{left:227.866667pt;}
.x72_c00473{left:228.800000pt;}
.x43_c00473{left:230.800000pt;}
.x93_c00473{left:231.866667pt;}
.x2b_c00473{left:233.466667pt;}
.x64_c00473{left:234.666667pt;}
.x32_c00473{left:235.600000pt;}
.x89_c00473{left:237.600000pt;}
.x18_c00473{left:238.533333pt;}
.x58_c00473{left:239.866667pt;}
.x5_c00473{left:241.600000pt;}
.x8c_c00473{left:244.133333pt;}
.x20_c00473{left:245.200000pt;}
.x6e_c00473{left:246.666667pt;}
.x4c_c00473{left:249.466667pt;}
.x37_c00473{left:250.666667pt;}
.x5f_c00473{left:252.000000pt;}
.x87_c00473{left:253.466667pt;}
.xa4_c00473{left:254.400000pt;}
.x53_c00473{left:255.466667pt;}
.x19_c00473{left:256.400000pt;}
.x7f_c00473{left:257.733333pt;}
.xd_c00473{left:259.066667pt;}
.x6_c00473{left:262.666667pt;}
.x67_c00473{left:264.266667pt;}
.x8d_c00473{left:265.866667pt;}
.x33_c00473{left:266.933333pt;}
.x4d_c00473{left:268.400000pt;}
.x6c_c00473{left:269.333333pt;}
.x59_c00473{left:270.533333pt;}
.x6f_c00473{left:271.600000pt;}
.xa3_c00473{left:272.533333pt;}
.x60_c00473{left:273.733333pt;}
.x98_c00473{left:275.200000pt;}
.xe_c00473{left:276.933333pt;}
.x21_c00473{left:278.133333pt;}
.x3e_c00473{left:279.200000pt;}
.x90_c00473{left:284.400000pt;}
.x2c_c00473{left:285.600000pt;}
.x49_c00473{left:287.333333pt;}
.x74_c00473{left:289.333333pt;}
.x94_c00473{left:290.400000pt;}
.x13_c00473{left:291.733333pt;}
.x7c_c00473{left:293.333333pt;}
.x2d_c00473{left:295.866667pt;}
.x1a_c00473{left:297.066667pt;}
.x54_c00473{left:298.000000pt;}
.x78_c00473{left:299.733333pt;}
.x8a_c00473{left:301.200000pt;}
.x34_c00473{left:303.733333pt;}
.x5a_c00473{left:304.800000pt;}
.x1b_c00473{left:306.666667pt;}
.x96_c00473{left:307.600000pt;}
.x7_c00473{left:309.733333pt;}
.x3b_c00473{left:311.333333pt;}
.x22_c00473{left:313.066667pt;}
.x62_c00473{left:314.933333pt;}
.x61_c00473{left:316.666667pt;}
.x9c_c00473{left:317.600000pt;}
.x55_c00473{left:318.533333pt;}
.x3f_c00473{left:320.533333pt;}
.x5b_c00473{left:322.400000pt;}
.x35_c00473{left:323.600000pt;}
.x27_c00473{left:325.466667pt;}
.x2e_c00473{left:326.533333pt;}
.x4a_c00473{left:328.666667pt;}
.x23_c00473{left:330.400000pt;}
.x38_c00473{left:332.266667pt;}
.x65_c00473{left:334.133333pt;}
.xf_c00473{left:335.466667pt;}
.x80_c00473{left:339.733333pt;}
.x4e_c00473{left:342.266667pt;}
.x14_c00473{left:343.200000pt;}
.x9f_c00473{left:344.933333pt;}
.x46_c00473{left:346.666667pt;}
.x83_c00473{left:347.866667pt;}
.x40_c00473{left:350.266667pt;}
.x8e_c00473{left:353.466667pt;}
.x8_c00473{left:354.533333pt;}
.x75_c00473{left:355.600000pt;}
.x9d_c00473{left:358.266667pt;}
.x28_c00473{left:360.000000pt;}
.x79_c00473{left:363.733333pt;}
.x1c_c00473{left:365.200000pt;}
.xa5_c00473{left:366.133333pt;}
.x2f_c00473{left:367.466667pt;}
.x41_c00473{left:369.466667pt;}
.xa8_c00473{left:370.800000pt;}
.x47_c00473{left:374.533333pt;}
.x9_c00473{left:376.266667pt;}
.x99_c00473{left:377.333333pt;}
.x2_c00473{left:378.266667pt;}
.x39_c00473{left:381.866667pt;}
.x15_c00473{left:384.133333pt;}
.x30_c00473{left:386.266667pt;}
.x4f_c00473{left:388.000000pt;}
.x44_c00473{left:389.866667pt;}
.x24_c00473{left:392.133333pt;}
.x5c_c00473{left:393.200000pt;}
.x8b_c00473{left:395.866667pt;}
.x7d_c00473{left:398.266667pt;}
.x29_c00473{left:399.333333pt;}
.x84_c00473{left:400.666667pt;}
.x1d_c00473{left:402.266667pt;}
.x76_c00473{left:405.466667pt;}
.x81_c00473{left:406.933333pt;}
.x3c_c00473{left:408.133333pt;}
.x36_c00473{left:409.333333pt;}
.x42_c00473{left:410.400000pt;}
.x45_c00473{left:412.266667pt;}
.x7a_c00473{left:413.333333pt;}
.x16_c00473{left:414.266667pt;}
.x68_c00473{left:415.600000pt;}
.x85_c00473{left:417.600000pt;}
.x6d_c00473{left:419.733333pt;}
.x5d_c00473{left:420.666667pt;}
.x9b_c00473{left:422.800000pt;}
.xa0_c00473{left:424.266667pt;}
.x73_c00473{left:425.866667pt;}
.x7e_c00473{left:427.733333pt;}
.x10_c00473{left:428.933333pt;}
.x69_c00473{left:430.666667pt;}
.x1e_c00473{left:432.400000pt;}
.x92_c00473{left:434.133333pt;}
.xa_c00473{left:435.466667pt;}
.x70_c00473{left:437.733333pt;}
.x5e_c00473{left:439.200000pt;}
.x25_c00473{left:440.133333pt;}
.x4b_c00473{left:442.133333pt;}
.x56_c00473{left:443.733333pt;}
.x2a_c00473{left:445.066667pt;}
.x50_c00473{left:448.133333pt;}
.x3a_c00473{left:450.000000pt;}
.x82_c00473{left:451.733333pt;}
.x8f_c00473{left:453.600000pt;}
.xb_c00473{left:454.933333pt;}
.xa9_c00473{left:457.200000pt;}
.x3d_c00473{left:458.666667pt;}
.x88_c00473{left:459.733333pt;}
.xa1_c00473{left:461.600000pt;}
.xb5_c00473{left:475.866667pt;}
.xb6_c00473{left:486.133333pt;}
.xe2_c00473{left:488.933333pt;}
.xbd_c00473{left:494.933333pt;}
.x102_c00473{left:496.933333pt;}
.xf1_c00473{left:498.666667pt;}
.xc6_c00473{left:500.400000pt;}
.xbe_c00473{left:501.600000pt;}
.xd3_c00473{left:503.066667pt;}
.xe8_c00473{left:504.933333pt;}
.xfd_c00473{left:506.266667pt;}
.x118_c00473{left:507.200000pt;}
.x121_c00473{left:508.133333pt;}
.xdd_c00473{left:510.400000pt;}
.x136_c00473{left:511.333333pt;}
.xab_c00473{left:516.133333pt;}
.xae_c00473{left:517.866667pt;}
.xd9_c00473{left:520.266667pt;}
.x104_c00473{left:521.866667pt;}
.x11a_c00473{left:523.600000pt;}
.xc7_c00473{left:525.066667pt;}
.x12a_c00473{left:526.133333pt;}
.x103_c00473{left:530.266667pt;}
.xf4_c00473{left:534.266667pt;}
.xfa_c00473{left:535.600000pt;}
.x109_c00473{left:539.600000pt;}
.xf2_c00473{left:541.866667pt;}
.x122_c00473{left:544.266667pt;}
.x128_c00473{left:547.066667pt;}
.xbf_c00473{left:549.600000pt;}
.x10e_c00473{left:550.933333pt;}
.xe3_c00473{left:553.200000pt;}
.x133_c00473{left:554.933333pt;}
.xd4_c00473{left:557.466667pt;}
.xb3_c00473{left:558.400000pt;}
.xe7_c00473{left:559.333333pt;}
.xc0_c00473{left:560.533333pt;}
.xcd_c00473{left:561.600000pt;}
.xac_c00473{left:562.800000pt;}
.xda_c00473{left:564.933333pt;}
.xfb_c00473{left:566.266667pt;}
.xdb_c00473{left:568.133333pt;}
.x10f_c00473{left:569.466667pt;}
.xc8_c00473{left:571.733333pt;}
.xb7_c00473{left:573.466667pt;}
.xeb_c00473{left:575.466667pt;}
.x10a_c00473{left:576.666667pt;}
.x12f_c00473{left:577.733333pt;}
.xdc_c00473{left:579.066667pt;}
.xc9_c00473{left:584.800000pt;}
.xcf_c00473{left:586.533333pt;}
.xe9_c00473{left:589.066667pt;}
.xde_c00473{left:591.466667pt;}
.xfe_c00473{left:593.333333pt;}
.xb8_c00473{left:594.533333pt;}
.x119_c00473{left:595.866667pt;}
.xf5_c00473{left:598.266667pt;}
.x137_c00473{left:599.333333pt;}
.xdf_c00473{left:602.666667pt;}
.x11d_c00473{left:603.866667pt;}
.xd5_c00473{left:606.133333pt;}
.x129_c00473{left:607.066667pt;}
.xe4_c00473{left:609.200000pt;}
.xc1_c00473{left:611.466667pt;}
.xea_c00473{left:613.333333pt;}
.xee_c00473{left:614.533333pt;}
.x134_c00473{left:618.000000pt;}
.xad_c00473{left:622.266667pt;}
.xb9_c00473{left:623.600000pt;}
.xc2_c00473{left:625.600000pt;}
.xec_c00473{left:627.600000pt;}
.x11b_c00473{left:630.533333pt;}
.x123_c00473{left:632.266667pt;}
.xca_c00473{left:634.133333pt;}
.x115_c00473{left:637.333333pt;}
.xed_c00473{left:639.733333pt;}
.x10b_c00473{left:641.600000pt;}
.xd6_c00473{left:646.400000pt;}
.xd0_c00473{left:648.000000pt;}
.xce_c00473{left:649.600000pt;}
.x10c_c00473{left:655.333333pt;}
.x124_c00473{left:657.600000pt;}
.x12b_c00473{left:659.333333pt;}
.xb4_c00473{left:660.533333pt;}
.xe5_c00473{left:662.000000pt;}
.x111_c00473{left:663.466667pt;}
.xcb_c00473{left:665.866667pt;}
.xf6_c00473{left:668.400000pt;}
.xe6_c00473{left:669.333333pt;}
.x11c_c00473{left:671.866667pt;}
.xba_c00473{left:674.533333pt;}
.x135_c00473{left:676.933333pt;}
.xd7_c00473{left:679.733333pt;}
.xcc_c00473{left:681.200000pt;}
.x105_c00473{left:682.400000pt;}
.x126_c00473{left:683.600000pt;}
.x11f_c00473{left:688.266667pt;}
.xff_c00473{left:689.866667pt;}
.xf7_c00473{left:691.733333pt;}
.x11e_c00473{left:693.066667pt;}
.xaf_c00473{left:694.133333pt;}
.xd1_c00473{left:696.933333pt;}
.xef_c00473{left:698.666667pt;}
.x116_c00473{left:701.333333pt;}
.xb0_c00473{left:703.066667pt;}
.xe0_c00473{left:706.266667pt;}
.xf3_c00473{left:709.200000pt;}
.x113_c00473{left:710.800000pt;}
.xf8_c00473{left:712.800000pt;}
.x132_c00473{left:713.866667pt;}
.x130_c00473{left:716.800000pt;}
.x12c_c00473{left:719.466667pt;}
.x106_c00473{left:723.733333pt;}
.xc3_c00473{left:725.333333pt;}
.xd8_c00473{left:727.733333pt;}
.xbb_c00473{left:728.933333pt;}
.x120_c00473{left:732.133333pt;}
.xc4_c00473{left:735.866667pt;}
.x12d_c00473{left:736.800000pt;}
.x100_c00473{left:738.533333pt;}
.x112_c00473{left:740.933333pt;}
.x127_c00473{left:741.866667pt;}
.x10d_c00473{left:743.333333pt;}
.x107_c00473{left:746.400000pt;}
.xd2_c00473{left:748.133333pt;}
.x101_c00473{left:749.733333pt;}
.x110_c00473{left:750.933333pt;}
.xfc_c00473{left:757.733333pt;}
.xe1_c00473{left:758.800000pt;}
.xc5_c00473{left:760.533333pt;}
.x12e_c00473{left:761.466667pt;}
.x125_c00473{left:763.200000pt;}
.xbc_c00473{left:766.000000pt;}
.xf9_c00473{left:769.733333pt;}
.x117_c00473{left:773.066667pt;}
.xf0_c00473{left:774.533333pt;}
.x138_c00473{left:777.600000pt;}
.x108_c00473{left:778.666667pt;}
.x131_c00473{left:780.133333pt;}
.x114_c00473{left:786.266667pt;}
.xb1_c00473{left:813.466667pt;}
.xb2_c00473{left:844.800000pt;}
}





/* 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_c00474 {
    display:none;
  }
  .loading-indicator_c00474.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00474 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_c00474 { 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_c00474" -> "#page-container .classname_c00474")
 */
.pf_c00474 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00474 { /* 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_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00474 { /* 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_c00474 { /* 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_c00474 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00474 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00474 {overflow:visible;}
  }
}
.c_c00474 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00474 { /* 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_c00474:after { /* webkit #35443 */
  content: '';
}
.t_c00474:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00474 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 */
}
.__c00474 { /* 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_c00474 { /* info for Javascript */
  display:none;
}
.l_c00474 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00474 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00474 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00474: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_c00474 {
    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_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00474.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_c00474 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00474;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.000000;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;}
.m54_c00474{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.md4_c00474{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m119_c00474{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m57_c00474{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00474{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mde_c00474{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00474{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.me0_c00474{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mea_c00474{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00474{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00474{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00474{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00474{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00474{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m32_c00474{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00474{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m11_c00474{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m115_c00474{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.md2_c00474{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m91_c00474{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m62_c00474{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m40_c00474{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mff_c00474{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00474{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00474{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mab_c00474{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m88_c00474{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00474{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00474{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m79_c00474{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m53_c00474{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m72_c00474{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m33_c00474{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m64_c00474{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m86_c00474{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m50_c00474{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m96_c00474{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00474{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m15_c00474{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me8_c00474{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mee_c00474{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m60_c00474{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00474{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m23_c00474{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m18_c00474{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00474{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m44_c00474{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.med_c00474{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m85_c00474{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m46_c00474{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md8_c00474{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.me9_c00474{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00474{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00474{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00474{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m43_c00474{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m13_c00474{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m103_c00474{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mae_c00474{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m82_c00474{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00474{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00474{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf_c00474{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00474{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m78_c00474{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m116_c00474{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m25_c00474{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m38_c00474{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m105_c00474{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m48_c00474{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00474{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.maf_c00474{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m28_c00474{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mef_c00474{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m109_c00474{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m114_c00474{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m65_c00474{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5_c00474{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00474{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m47_c00474{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m70_c00474{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m84_c00474{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m97_c00474{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00474{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m87_c00474{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m12_c00474{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m117_c00474{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7_c00474{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m118_c00474{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m80_c00474{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00474{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m81_c00474{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00474{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00474{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00474{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9_c00474{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m106_c00474{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00474{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m102_c00474{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m74_c00474{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00474{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00474{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00474{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00474{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00474{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00474{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00474{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00474{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00474{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00474{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m20_c00474{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6_c00474{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m51_c00474{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m29_c00474{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00474{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00474{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00474{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00474{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00474{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m16_c00474{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m83_c00474{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb_c00474{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m52_c00474{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00474{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m42_c00474{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md6_c00474{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00474{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m41_c00474{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00474{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m66_c00474{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m63_c00474{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00474{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00474{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m31_c00474{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m34_c00474{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00474{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00474{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m75_c00474{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m67_c00474{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00474{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00474{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m14_c00474{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me4_c00474{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mba_c00474{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m94_c00474{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00474{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md1_c00474{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m61_c00474{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00474{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m68_c00474{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m35_c00474{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mca_c00474{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m21_c00474{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00474{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m30_c00474{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00474{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m39_c00474{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m95_c00474{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00474{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m101_c00474{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00474{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md_c00474{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m73_c00474{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00474{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00474{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00474{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00474{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m19_c00474{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00474{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00474{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00474{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00474{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mad_c00474{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00474{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00474{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m107_c00474{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m17_c00474{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00474{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m56_c00474{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00474{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00474{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00474{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.meb_c00474{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00474{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m99_c00474{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m104_c00474{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00474{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m110_c00474{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00474{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00474{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00474{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m89_c00474{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m49_c00474{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m111_c00474{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00474{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00474{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00474{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m37_c00474{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00474{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me5_c00474{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mec_c00474{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00474{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00474{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m36_c00474{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00474{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.me_c00474{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m58_c00474{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00474{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00474{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma_c00474{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00474{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3_c00474{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00474{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00474{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1_c00474{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m76_c00474{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00474{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);}
.mdd_c00474{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m22_c00474{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00474{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00474{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00474{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m100_c00474{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00474{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10_c00474{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00474{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00474{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00474{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.me3_c00474{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00474{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m108_c00474{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.maa_c00474{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00474{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00474{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00474{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00474{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m98_c00474{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00474{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00474{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.me6_c00474{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m27_c00474{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m26_c00474{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00474{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mce_c00474{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m77_c00474{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.mc_c00474{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m112_c00474{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00474{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m69_c00474{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m55_c00474{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00474{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m93_c00474{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m59_c00474{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m90_c00474{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00474{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m8_c00474{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m113_c00474{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00474{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.md0_c00474{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00474{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00474{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00474{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00474{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00474{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00474{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mac_c00474{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00474{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m24_c00474{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m92_c00474{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me2_c00474{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m45_c00474{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mda_c00474{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.md7_c00474{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00474{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m71_c00474{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.md9_c00474{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00474{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.me1_c00474{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.me7_c00474{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.md5_c00474{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.md3_c00474{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00474{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00474{transform:matrix(6.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.840000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls0_c00474{letter-spacing:0.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{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__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:-17.105263px;}
.ws8_c00474{word-spacing:0.000000px;}
.ws6_c00474{word-spacing:1.873362px;}
.ws7_c00474{word-spacing:11.738126px;}
.ws3_c00474{word-spacing:19.994638px;}
.ws4_c00474{word-spacing:48.857143px;}
.ws5_c00474{word-spacing:65.000000px;}
.ws2_c00474{word-spacing:69.605263px;}
.ws1_c00474{word-spacing:69.722222px;}
.fc0_c00474{color:transparent;}
.fs6_c00474{font-size:24.000000px;}
.fs8_c00474{font-size:30.000000px;}
.fs5_c00474{font-size:36.000000px;}
.fs7_c00474{font-size:42.000000px;}
.fs4_c00474{font-size:54.000000px;}
.fs2_c00474{font-size:60.000000px;}
.fs3_c00474{font-size:66.000000px;}
.fs1_c00474{font-size:72.000000px;}
.fs0_c00474{font-size:78.000000px;}
.y0_c00474{bottom:0.000000px;}
.y6b_c00474{bottom:165.600000px;}
.y6a_c00474{bottom:191.850000px;}
.y32_c00474{bottom:196.950000px;}
.y69_c00474{bottom:209.550000px;}
.y31_c00474{bottom:216.300000px;}
.y68_c00474{bottom:227.850000px;}
.y30_c00474{bottom:230.700000px;}
.y2f_c00474{bottom:244.800000px;}
.y67_c00474{bottom:254.100000px;}
.y2e_c00474{bottom:259.500000px;}
.y66_c00474{bottom:272.100000px;}
.y2d_c00474{bottom:272.850000px;}
.y65_c00474{bottom:290.100000px;}
.y2c_c00474{bottom:291.600000px;}
.y64_c00474{bottom:307.800000px;}
.y2b_c00474{bottom:318.300000px;}
.y63_c00474{bottom:325.500000px;}
.y62_c00474{bottom:343.500000px;}
.y2a_c00474{bottom:353.100000px;}
.y61_c00474{bottom:361.050000px;}
.y29_c00474{bottom:368.250000px;}
.y60_c00474{bottom:379.050000px;}
.y28_c00474{bottom:386.250000px;}
.y5f_c00474{bottom:397.050000px;}
.y27_c00474{bottom:403.950000px;}
.y5e_c00474{bottom:414.750000px;}
.y26_c00474{bottom:421.950000px;}
.y5d_c00474{bottom:436.650000px;}
.y25_c00474{bottom:452.550000px;}
.y5c_c00474{bottom:454.350000px;}
.y24_c00474{bottom:469.800000px;}
.y5b_c00474{bottom:472.350000px;}
.y23_c00474{bottom:487.500000px;}
.y5a_c00474{bottom:489.900000px;}
.y22_c00474{bottom:504.750000px;}
.y59_c00474{bottom:507.750000px;}
.y21_c00474{bottom:522.750000px;}
.y58_c00474{bottom:528.600000px;}
.y57_c00474{bottom:543.000000px;}
.y20_c00474{bottom:544.650000px;}
.y1f_c00474{bottom:558.300000px;}
.y56_c00474{bottom:561.000000px;}
.y1e_c00474{bottom:576.300000px;}
.y55_c00474{bottom:578.700000px;}
.y1d_c00474{bottom:594.000000px;}
.y54_c00474{bottom:596.700000px;}
.y1c_c00474{bottom:611.700000px;}
.y53_c00474{bottom:614.400000px;}
.y52_c00474{bottom:632.100000px;}
.y1b_c00474{bottom:634.050000px;}
.y51_c00474{bottom:650.100000px;}
.y1a_c00474{bottom:651.300000px;}
.y50_c00474{bottom:667.800000px;}
.y4f_c00474{bottom:685.800000px;}
.y19_c00474{bottom:686.250000px;}
.y4e_c00474{bottom:703.050000px;}
.y18_c00474{bottom:705.000000px;}
.y4d_c00474{bottom:720.750000px;}
.y17_c00474{bottom:721.500000px;}
.y4c_c00474{bottom:738.750000px;}
.y16_c00474{bottom:739.500000px;}
.y15_c00474{bottom:757.500000px;}
.y4b_c00474{bottom:759.600000px;}
.y4a_c00474{bottom:774.000000px;}
.y49_c00474{bottom:792.000000px;}
.y14_c00474{bottom:795.900000px;}
.y48_c00474{bottom:806.400000px;}
.y13_c00474{bottom:810.000000px;}
.y47_c00474{bottom:821.100000px;}
.y12_c00474{bottom:827.250000px;}
.y46_c00474{bottom:835.050000px;}
.y45_c00474{bottom:849.450000px;}
.y11_c00474{bottom:853.950000px;}
.y44_c00474{bottom:863.550000px;}
.y10_c00474{bottom:871.950000px;}
.y43_c00474{bottom:879.450000px;}
.yf_c00474{bottom:889.200000px;}
.y42_c00474{bottom:892.200000px;}
.y41_c00474{bottom:906.900000px;}
.ye_c00474{bottom:907.200000px;}
.y40_c00474{bottom:921.300000px;}
.yd_c00474{bottom:925.500000px;}
.y3f_c00474{bottom:935.250000px;}
.yc_c00474{bottom:943.200000px;}
.y3e_c00474{bottom:950.100000px;}
.yb_c00474{bottom:960.450000px;}
.y3d_c00474{bottom:963.750000px;}
.ya_c00474{bottom:978.150000px;}
.y3c_c00474{bottom:992.250000px;}
.y9_c00474{bottom:1004.100000px;}
.y3b_c00474{bottom:1006.950000px;}
.y3a_c00474{bottom:1019.550000px;}
.y8_c00474{bottom:1026.300000px;}
.y39_c00474{bottom:1035.300000px;}
.y7_c00474{bottom:1044.000000px;}
.y38_c00474{bottom:1049.400000px;}
.y6_c00474{bottom:1062.000000px;}
.y37_c00474{bottom:1063.800000px;}
.y36_c00474{bottom:1078.200000px;}
.y5_c00474{bottom:1082.850000px;}
.y35_c00474{bottom:1092.600000px;}
.y4_c00474{bottom:1100.100000px;}
.y34_c00474{bottom:1106.700000px;}
.y3_c00474{bottom:1117.800000px;}
.y33_c00474{bottom:1121.100000px;}
.y2_c00474{bottom:1143.750000px;}
.y1_c00474{bottom:1145.850000px;}
.h8_c00474{height:24.000000px;}
.ha_c00474{height:30.000000px;}
.h7_c00474{height:36.000000px;}
.h9_c00474{height:42.000000px;}
.h6_c00474{height:54.000000px;}
.h4_c00474{height:60.000000px;}
.h5_c00474{height:66.000000px;}
.h3_c00474{height:72.000000px;}
.h2_c00474{height:78.000000px;}
.h1_c00474{height:1269.750000px;}
.h0_c00474{height:1270.080048px;}
.w0_c00474{width:958.320007px;}
.w1_c00474{width:958.500000px;}
.x0_c00474{left:0.000000px;}
.x9b_c00474{left:72.150000px;}
.x98_c00474{left:73.200000px;}
.x84_c00474{left:75.600000px;}
.x5a_c00474{left:77.700000px;}
.x27_c00474{left:78.900000px;}
.x95_c00474{left:80.700000px;}
.x77_c00474{left:82.350000px;}
.x57_c00474{left:84.600000px;}
.xa1_c00474{left:85.650000px;}
.x97_c00474{left:87.900000px;}
.x8c_c00474{left:89.850000px;}
.x80_c00474{left:92.100000px;}
.x53_c00474{left:93.300000px;}
.x3e_c00474{left:94.500000px;}
.xa_c00474{left:97.050000px;}
.x14_c00474{left:99.000000px;}
.x9c_c00474{left:102.750000px;}
.x5b_c00474{left:106.800000px;}
.xa2_c00474{left:108.300000px;}
.x96_c00474{left:109.800000px;}
.x23_c00474{left:111.600000px;}
.x6b_c00474{left:112.650000px;}
.x4_c00474{left:115.500000px;}
.x3f_c00474{left:120.450000px;}
.x66_c00474{left:121.950000px;}
.x45_c00474{left:123.300000px;}
.xb_c00474{left:126.150000px;}
.x5d_c00474{left:128.850000px;}
.x88_c00474{left:130.200000px;}
.x37_c00474{left:131.400000px;}
.x1c_c00474{left:133.050000px;}
.x21_c00474{left:136.050000px;}
.x28_c00474{left:141.600000px;}
.x5e_c00474{left:143.550000px;}
.xc_c00474{left:145.950000px;}
.x24_c00474{left:147.900000px;}
.x4f_c00474{left:149.400000px;}
.x38_c00474{left:152.700000px;}
.x9d_c00474{left:154.200000px;}
.x5_c00474{left:155.850000px;}
.x67_c00474{left:157.950000px;}
.x74_c00474{left:160.650000px;}
.x32_c00474{left:161.850000px;}
.x81_c00474{left:163.350000px;}
.x2d_c00474{left:164.700000px;}
.x17_c00474{left:167.100000px;}
.xd_c00474{left:169.050000px;}
.x58_c00474{left:170.250000px;}
.x4d_c00474{left:172.800000px;}
.x7e_c00474{left:174.000000px;}
.x6_c00474{left:176.400000px;}
.x15_c00474{left:177.750000px;}
.x70_c00474{left:179.850000px;}
.x40_c00474{left:180.900000px;}
.x1d_c00474{left:187.650000px;}
.x5c_c00474{left:189.600000px;}
.x82_c00474{left:191.400000px;}
.x16_c00474{left:193.950000px;}
.x6c_c00474{left:195.150000px;}
.x46_c00474{left:198.600000px;}
.x7c_c00474{left:200.400000px;}
.x25_c00474{left:202.650000px;}
.x8d_c00474{left:204.300000px;}
.x39_c00474{left:206.400000px;}
.x7f_c00474{left:207.450000px;}
.x4a_c00474{left:209.550000px;}
.x29_c00474{left:210.750000px;}
.x93_c00474{left:212.100000px;}
.x22_c00474{left:214.500000px;}
.x6d_c00474{left:217.500000px;}
.x26_c00474{left:220.350000px;}
.x7_c00474{left:222.900000px;}
.x89_c00474{left:225.600000px;}
.x63_c00474{left:227.250000px;}
.xa0_c00474{left:228.450000px;}
.xe_c00474{left:229.950000px;}
.x54_c00474{left:233.250000px;}
.x2e_c00474{left:234.600000px;}
.x78_c00474{left:236.400000px;}
.x50_c00474{left:238.350000px;}
.x68_c00474{left:240.750000px;}
.x60_c00474{left:242.700000px;}
.x33_c00474{left:244.950000px;}
.x85_c00474{left:246.150000px;}
.x94_c00474{left:250.950000px;}
.x4e_c00474{left:254.400000px;}
.x47_c00474{left:258.000000px;}
.x61_c00474{left:261.450000px;}
.x18_c00474{left:263.550000px;}
.x83_c00474{left:265.650000px;}
.x3a_c00474{left:268.650000px;}
.x99_c00474{left:269.850000px;}
.x6e_c00474{left:271.200000px;}
.x8e_c00474{left:272.400000px;}
.x2a_c00474{left:274.500000px;}
.x75_c00474{left:277.950000px;}
.x3b_c00474{left:280.200000px;}
.x1e_c00474{left:282.750000px;}
.x9e_c00474{left:284.250000px;}
.x41_c00474{left:286.050000px;}
.x8a_c00474{left:287.850000px;}
.x19_c00474{left:289.050000px;}
.x8f_c00474{left:290.400000px;}
.x8_c00474{left:293.850000px;}
.x79_c00474{left:295.800000px;}
.x7b_c00474{left:296.850000px;}
.x2b_c00474{left:297.900000px;}
.x3c_c00474{left:299.250000px;}
.x51_c00474{left:300.600000px;}
.x86_c00474{left:301.950000px;}
.x42_c00474{left:304.050000px;}
.x72_c00474{left:305.400000px;}
.x1a_c00474{left:306.750000px;}
.xf_c00474{left:308.850000px;}
.x55_c00474{left:313.950000px;}
.x62_c00474{left:316.200000px;}
.x7d_c00474{left:317.700000px;}
.x64_c00474{left:319.350000px;}
.x1_c00474{left:322.950000px;}
.x90_c00474{left:325.650000px;}
.x43_c00474{left:328.200000px;}
.x4b_c00474{left:331.950000px;}
.x69_c00474{left:333.000000px;}
.x2f_c00474{left:334.650000px;}
.x8b_c00474{left:336.150000px;}
.x6f_c00474{left:337.200000px;}
.x9f_c00474{left:340.650000px;}
.x87_c00474{left:342.600000px;}
.x10_c00474{left:343.800000px;}
.x56_c00474{left:344.850000px;}
.x34_c00474{left:346.500000px;}
.x71_c00474{left:348.000000px;}
.x44_c00474{left:352.650000px;}
.x35_c00474{left:354.000000px;}
.x30_c00474{left:356.250000px;}
.x1f_c00474{left:357.300000px;}
.x76_c00474{left:358.500000px;}
.x11_c00474{left:361.050000px;}
.x1b_c00474{left:363.900000px;}
.x91_c00474{left:366.300000px;}
.x9a_c00474{left:367.650000px;}
.x73_c00474{left:369.150000px;}
.x65_c00474{left:371.550000px;}
.x7a_c00474{left:372.900000px;}
.x2c_c00474{left:374.550000px;}
.x9_c00474{left:376.350000px;}
.x36_c00474{left:377.700000px;}
.x4c_c00474{left:380.250000px;}
.x5f_c00474{left:382.650000px;}
.x48_c00474{left:385.050000px;}
.x3d_c00474{left:387.150000px;}
.x59_c00474{left:390.150000px;}
.x6a_c00474{left:391.350000px;}
.x12_c00474{left:396.000000px;}
.x49_c00474{left:397.350000px;}
.x52_c00474{left:399.600000px;}
.x20_c00474{left:401.250000px;}
.x92_c00474{left:402.600000px;}
.x13_c00474{left:405.000000px;}
.x31_c00474{left:412.050000px;}
.x121_c00474{left:432.750000px;}
.xf2_c00474{left:435.300000px;}
.xa3_c00474{left:437.100000px;}
.x124_c00474{left:444.300000px;}
.xdc_c00474{left:448.200000px;}
.xd1_c00474{left:449.250000px;}
.xad_c00474{left:450.750000px;}
.xf4_c00474{left:452.550000px;}
.xe1_c00474{left:456.900000px;}
.x122_c00474{left:459.450000px;}
.x11a_c00474{left:463.350000px;}
.xc6_c00474{left:464.400000px;}
.xbe_c00474{left:465.750000px;}
.xae_c00474{left:470.850000px;}
.x106_c00474{left:473.250000px;}
.x12f_c00474{left:475.800000px;}
.x129_c00474{left:477.750000px;}
.x115_c00474{left:479.250000px;}
.xd2_c00474{left:480.900000px;}
.xb7_c00474{left:482.400000px;}
.xd5_c00474{left:485.400000px;}
.xc7_c00474{left:486.750000px;}
.x101_c00474{left:488.550000px;}
.xfe_c00474{left:491.700000px;}
.x10f_c00474{left:493.650000px;}
.xa4_c00474{left:496.500000px;}
.x103_c00474{left:497.550000px;}
.xf9_c00474{left:498.600000px;}
.xb8_c00474{left:500.400000px;}
.x109_c00474{left:503.400000px;}
.xaf_c00474{left:505.050000px;}
.xe2_c00474{left:506.400000px;}
.xc8_c00474{left:508.650000px;}
.x13d_c00474{left:510.750000px;}
.x12a_c00474{left:514.050000px;}
.xdd_c00474{left:515.100000px;}
.xb0_c00474{left:516.150000px;}
.x110_c00474{left:517.350000px;}
.xee_c00474{left:519.150000px;}
.xbf_c00474{left:520.800000px;}
.x125_c00474{left:524.550000px;}
.xcc_c00474{left:525.750000px;}
.x111_c00474{left:527.100000px;}
.x104_c00474{left:529.500000px;}
.xf0_c00474{left:531.300000px;}
.x13b_c00474{left:533.550000px;}
.x118_c00474{left:535.200000px;}
.x10a_c00474{left:537.600000px;}
.xa5_c00474{left:538.650000px;}
.xc9_c00474{left:541.800000px;}
.xc0_c00474{left:543.150000px;}
.x128_c00474{left:544.650000px;}
.x135_c00474{left:545.700000px;}
.x138_c00474{left:547.200000px;}
.xb9_c00474{left:548.700000px;}
.x116_c00474{left:549.750000px;}
.xea_c00474{left:551.700000px;}
.xde_c00474{left:554.400000px;}
.xfa_c00474{left:555.450000px;}
.xa6_c00474{left:556.650000px;}
.x10b_c00474{left:557.700000px;}
.xef_c00474{left:559.800000px;}
.x126_c00474{left:561.300000px;}
.xca_c00474{left:562.350000px;}
.xba_c00474{left:563.400000px;}
.xb1_c00474{left:569.400000px;}
.xeb_c00474{left:571.500000px;}
.x12b_c00474{left:572.700000px;}
.xc1_c00474{left:575.550000px;}
.x117_c00474{left:581.100000px;}
.x12d_c00474{left:582.750000px;}
.xd8_c00474{left:584.400000px;}
.xf5_c00474{left:586.800000px;}
.xa7_c00474{left:589.800000px;}
.xcd_c00474{left:590.850000px;}
.xb2_c00474{left:592.800000px;}
.x139_c00474{left:594.000000px;}
.xc2_c00474{left:596.400000px;}
.xd9_c00474{left:598.800000px;}
.x123_c00474{left:600.150000px;}
.xd3_c00474{left:601.200000px;}
.xce_c00474{left:602.700000px;}
.xf3_c00474{left:605.700000px;}
.xe3_c00474{left:606.900000px;}
.xfb_c00474{left:607.950000px;}
.xb3_c00474{left:609.750000px;}
.x11d_c00474{left:611.850000px;}
.x10d_c00474{left:613.200000px;}
.xe5_c00474{left:614.550000px;}
.xa8_c00474{left:617.100000px;}
.xdf_c00474{left:621.000000px;}
.xff_c00474{left:624.600000px;}
.x11e_c00474{left:626.550000px;}
.xa9_c00474{left:628.950000px;}
.x112_c00474{left:630.750000px;}
.xe6_c00474{left:631.950000px;}
.xb4_c00474{left:634.650000px;}
.xda_c00474{left:638.400000px;}
.xb5_c00474{left:643.350000px;}
.xf6_c00474{left:645.150000px;}
.xe7_c00474{left:646.350000px;}
.xbb_c00474{left:648.300000px;}
.xcf_c00474{left:651.300000px;}
.xfc_c00474{left:653.700000px;}
.xf7_c00474{left:655.200000px;}
.x136_c00474{left:657.000000px;}
.xe4_c00474{left:659.400000px;}
.x113_c00474{left:661.350000px;}
.xfd_c00474{left:662.400000px;}
.xe0_c00474{left:665.250000px;}
.x11b_c00474{left:666.750000px;}
.xd0_c00474{left:668.250000px;}
.x12e_c00474{left:669.450000px;}
.x12c_c00474{left:673.800000px;}
.x130_c00474{left:675.750000px;}
.xb6_c00474{left:677.550000px;}
.x102_c00474{left:679.650000px;}
.xcb_c00474{left:682.650000px;}
.x100_c00474{left:684.750000px;}
.x107_c00474{left:688.500000px;}
.x114_c00474{left:690.450000px;}
.x13c_c00474{left:691.950000px;}
.xaa_c00474{left:693.450000px;}
.x10e_c00474{left:694.500000px;}
.x11f_c00474{left:695.700000px;}
.xe9_c00474{left:699.150000px;}
.xed_c00474{left:700.200000px;}
.xd7_c00474{left:701.550000px;}
.xc3_c00474{left:702.600000px;}
.xbc_c00474{left:704.100000px;}
.x10c_c00474{left:706.500000px;}
.xf8_c00474{left:708.150000px;}
.xf1_c00474{left:711.300000px;}
.x120_c00474{left:714.000000px;}
.x131_c00474{left:715.350000px;}
.xab_c00474{left:723.300000px;}
.xbd_c00474{left:725.700000px;}
.xc4_c00474{left:729.600000px;}
.xdb_c00474{left:730.800000px;}
.xd4_c00474{left:732.300000px;}
.x133_c00474{left:734.700000px;}
.x105_c00474{left:735.750000px;}
.x132_c00474{left:737.250000px;}
.x137_c00474{left:739.500000px;}
.x108_c00474{left:741.000000px;}
.x11c_c00474{left:742.800000px;}
.x2_c00474{left:745.650000px;}
.xec_c00474{left:748.650000px;}
.xd6_c00474{left:751.500000px;}
.x127_c00474{left:753.600000px;}
.x13a_c00474{left:755.250000px;}
.xac_c00474{left:758.550000px;}
.xc5_c00474{left:759.900000px;}
.xe8_c00474{left:761.100000px;}
.x134_c00474{left:762.450000px;}
.x3_c00474{left:768.000000px;}
.x119_c00474{left:779.700000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:-15.204678pt;}
.ws8_c00474{word-spacing:0.000000pt;}
.ws6_c00474{word-spacing:1.665211pt;}
.ws7_c00474{word-spacing:10.433890pt;}
.ws3_c00474{word-spacing:17.773012pt;}
.ws4_c00474{word-spacing:43.428571pt;}
.ws5_c00474{word-spacing:57.777778pt;}
.ws2_c00474{word-spacing:61.871345pt;}
.ws1_c00474{word-spacing:61.975309pt;}
.fs6_c00474{font-size:21.333333pt;}
.fs8_c00474{font-size:26.666667pt;}
.fs5_c00474{font-size:32.000000pt;}
.fs7_c00474{font-size:37.333333pt;}
.fs4_c00474{font-size:48.000000pt;}
.fs2_c00474{font-size:53.333333pt;}
.fs3_c00474{font-size:58.666667pt;}
.fs1_c00474{font-size:64.000000pt;}
.fs0_c00474{font-size:69.333333pt;}
.y0_c00474{bottom:0.000000pt;}
.y6b_c00474{bottom:147.200000pt;}
.y6a_c00474{bottom:170.533333pt;}
.y32_c00474{bottom:175.066667pt;}
.y69_c00474{bottom:186.266667pt;}
.y31_c00474{bottom:192.266667pt;}
.y68_c00474{bottom:202.533333pt;}
.y30_c00474{bottom:205.066667pt;}
.y2f_c00474{bottom:217.600000pt;}
.y67_c00474{bottom:225.866667pt;}
.y2e_c00474{bottom:230.666667pt;}
.y66_c00474{bottom:241.866667pt;}
.y2d_c00474{bottom:242.533333pt;}
.y65_c00474{bottom:257.866667pt;}
.y2c_c00474{bottom:259.200000pt;}
.y64_c00474{bottom:273.600000pt;}
.y2b_c00474{bottom:282.933333pt;}
.y63_c00474{bottom:289.333333pt;}
.y62_c00474{bottom:305.333333pt;}
.y2a_c00474{bottom:313.866667pt;}
.y61_c00474{bottom:320.933333pt;}
.y29_c00474{bottom:327.333333pt;}
.y60_c00474{bottom:336.933333pt;}
.y28_c00474{bottom:343.333333pt;}
.y5f_c00474{bottom:352.933333pt;}
.y27_c00474{bottom:359.066667pt;}
.y5e_c00474{bottom:368.666667pt;}
.y26_c00474{bottom:375.066667pt;}
.y5d_c00474{bottom:388.133333pt;}
.y25_c00474{bottom:402.266667pt;}
.y5c_c00474{bottom:403.866667pt;}
.y24_c00474{bottom:417.600000pt;}
.y5b_c00474{bottom:419.866667pt;}
.y23_c00474{bottom:433.333333pt;}
.y5a_c00474{bottom:435.466667pt;}
.y22_c00474{bottom:448.666667pt;}
.y59_c00474{bottom:451.333333pt;}
.y21_c00474{bottom:464.666667pt;}
.y58_c00474{bottom:469.866667pt;}
.y57_c00474{bottom:482.666667pt;}
.y20_c00474{bottom:484.133333pt;}
.y1f_c00474{bottom:496.266667pt;}
.y56_c00474{bottom:498.666667pt;}
.y1e_c00474{bottom:512.266667pt;}
.y55_c00474{bottom:514.400000pt;}
.y1d_c00474{bottom:528.000000pt;}
.y54_c00474{bottom:530.400000pt;}
.y1c_c00474{bottom:543.733333pt;}
.y53_c00474{bottom:546.133333pt;}
.y52_c00474{bottom:561.866667pt;}
.y1b_c00474{bottom:563.600000pt;}
.y51_c00474{bottom:577.866667pt;}
.y1a_c00474{bottom:578.933333pt;}
.y50_c00474{bottom:593.600000pt;}
.y4f_c00474{bottom:609.600000pt;}
.y19_c00474{bottom:610.000000pt;}
.y4e_c00474{bottom:624.933333pt;}
.y18_c00474{bottom:626.666667pt;}
.y4d_c00474{bottom:640.666667pt;}
.y17_c00474{bottom:641.333333pt;}
.y4c_c00474{bottom:656.666667pt;}
.y16_c00474{bottom:657.333333pt;}
.y15_c00474{bottom:673.333333pt;}
.y4b_c00474{bottom:675.200000pt;}
.y4a_c00474{bottom:688.000000pt;}
.y49_c00474{bottom:704.000000pt;}
.y14_c00474{bottom:707.466667pt;}
.y48_c00474{bottom:716.800000pt;}
.y13_c00474{bottom:720.000000pt;}
.y47_c00474{bottom:729.866667pt;}
.y12_c00474{bottom:735.333333pt;}
.y46_c00474{bottom:742.266667pt;}
.y45_c00474{bottom:755.066667pt;}
.y11_c00474{bottom:759.066667pt;}
.y44_c00474{bottom:767.600000pt;}
.y10_c00474{bottom:775.066667pt;}
.y43_c00474{bottom:781.733333pt;}
.yf_c00474{bottom:790.400000pt;}
.y42_c00474{bottom:793.066667pt;}
.y41_c00474{bottom:806.133333pt;}
.ye_c00474{bottom:806.400000pt;}
.y40_c00474{bottom:818.933333pt;}
.yd_c00474{bottom:822.666667pt;}
.y3f_c00474{bottom:831.333333pt;}
.yc_c00474{bottom:838.400000pt;}
.y3e_c00474{bottom:844.533333pt;}
.yb_c00474{bottom:853.733333pt;}
.y3d_c00474{bottom:856.666667pt;}
.ya_c00474{bottom:869.466667pt;}
.y3c_c00474{bottom:882.000000pt;}
.y9_c00474{bottom:892.533333pt;}
.y3b_c00474{bottom:895.066667pt;}
.y3a_c00474{bottom:906.266667pt;}
.y8_c00474{bottom:912.266667pt;}
.y39_c00474{bottom:920.266667pt;}
.y7_c00474{bottom:928.000000pt;}
.y38_c00474{bottom:932.800000pt;}
.y6_c00474{bottom:944.000000pt;}
.y37_c00474{bottom:945.600000pt;}
.y36_c00474{bottom:958.400000pt;}
.y5_c00474{bottom:962.533333pt;}
.y35_c00474{bottom:971.200000pt;}
.y4_c00474{bottom:977.866667pt;}
.y34_c00474{bottom:983.733333pt;}
.y3_c00474{bottom:993.600000pt;}
.y33_c00474{bottom:996.533333pt;}
.y2_c00474{bottom:1016.666667pt;}
.y1_c00474{bottom:1018.533333pt;}
.h8_c00474{height:21.333333pt;}
.ha_c00474{height:26.666667pt;}
.h7_c00474{height:32.000000pt;}
.h9_c00474{height:37.333333pt;}
.h6_c00474{height:48.000000pt;}
.h4_c00474{height:53.333333pt;}
.h5_c00474{height:58.666667pt;}
.h3_c00474{height:64.000000pt;}
.h2_c00474{height:69.333333pt;}
.h1_c00474{height:1128.666667pt;}
.h0_c00474{height:1128.960043pt;}
.w0_c00474{width:851.840007pt;}
.w1_c00474{width:852.000000pt;}
.x0_c00474{left:0.000000pt;}
.x9b_c00474{left:64.133333pt;}
.x98_c00474{left:65.066667pt;}
.x84_c00474{left:67.200000pt;}
.x5a_c00474{left:69.066667pt;}
.x27_c00474{left:70.133333pt;}
.x95_c00474{left:71.733333pt;}
.x77_c00474{left:73.200000pt;}
.x57_c00474{left:75.200000pt;}
.xa1_c00474{left:76.133333pt;}
.x97_c00474{left:78.133333pt;}
.x8c_c00474{left:79.866667pt;}
.x80_c00474{left:81.866667pt;}
.x53_c00474{left:82.933333pt;}
.x3e_c00474{left:84.000000pt;}
.xa_c00474{left:86.266667pt;}
.x14_c00474{left:88.000000pt;}
.x9c_c00474{left:91.333333pt;}
.x5b_c00474{left:94.933333pt;}
.xa2_c00474{left:96.266667pt;}
.x96_c00474{left:97.600000pt;}
.x23_c00474{left:99.200000pt;}
.x6b_c00474{left:100.133333pt;}
.x4_c00474{left:102.666667pt;}
.x3f_c00474{left:107.066667pt;}
.x66_c00474{left:108.400000pt;}
.x45_c00474{left:109.600000pt;}
.xb_c00474{left:112.133333pt;}
.x5d_c00474{left:114.533333pt;}
.x88_c00474{left:115.733333pt;}
.x37_c00474{left:116.800000pt;}
.x1c_c00474{left:118.266667pt;}
.x21_c00474{left:120.933333pt;}
.x28_c00474{left:125.866667pt;}
.x5e_c00474{left:127.600000pt;}
.xc_c00474{left:129.733333pt;}
.x24_c00474{left:131.466667pt;}
.x4f_c00474{left:132.800000pt;}
.x38_c00474{left:135.733333pt;}
.x9d_c00474{left:137.066667pt;}
.x5_c00474{left:138.533333pt;}
.x67_c00474{left:140.400000pt;}
.x74_c00474{left:142.800000pt;}
.x32_c00474{left:143.866667pt;}
.x81_c00474{left:145.200000pt;}
.x2d_c00474{left:146.400000pt;}
.x17_c00474{left:148.533333pt;}
.xd_c00474{left:150.266667pt;}
.x58_c00474{left:151.333333pt;}
.x4d_c00474{left:153.600000pt;}
.x7e_c00474{left:154.666667pt;}
.x6_c00474{left:156.800000pt;}
.x15_c00474{left:158.000000pt;}
.x70_c00474{left:159.866667pt;}
.x40_c00474{left:160.800000pt;}
.x1d_c00474{left:166.800000pt;}
.x5c_c00474{left:168.533333pt;}
.x82_c00474{left:170.133333pt;}
.x16_c00474{left:172.400000pt;}
.x6c_c00474{left:173.466667pt;}
.x46_c00474{left:176.533333pt;}
.x7c_c00474{left:178.133333pt;}
.x25_c00474{left:180.133333pt;}
.x8d_c00474{left:181.600000pt;}
.x39_c00474{left:183.466667pt;}
.x7f_c00474{left:184.400000pt;}
.x4a_c00474{left:186.266667pt;}
.x29_c00474{left:187.333333pt;}
.x93_c00474{left:188.533333pt;}
.x22_c00474{left:190.666667pt;}
.x6d_c00474{left:193.333333pt;}
.x26_c00474{left:195.866667pt;}
.x7_c00474{left:198.133333pt;}
.x89_c00474{left:200.533333pt;}
.x63_c00474{left:202.000000pt;}
.xa0_c00474{left:203.066667pt;}
.xe_c00474{left:204.400000pt;}
.x54_c00474{left:207.333333pt;}
.x2e_c00474{left:208.533333pt;}
.x78_c00474{left:210.133333pt;}
.x50_c00474{left:211.866667pt;}
.x68_c00474{left:214.000000pt;}
.x60_c00474{left:215.733333pt;}
.x33_c00474{left:217.733333pt;}
.x85_c00474{left:218.800000pt;}
.x94_c00474{left:223.066667pt;}
.x4e_c00474{left:226.133333pt;}
.x47_c00474{left:229.333333pt;}
.x61_c00474{left:232.400000pt;}
.x18_c00474{left:234.266667pt;}
.x83_c00474{left:236.133333pt;}
.x3a_c00474{left:238.800000pt;}
.x99_c00474{left:239.866667pt;}
.x6e_c00474{left:241.066667pt;}
.x8e_c00474{left:242.133333pt;}
.x2a_c00474{left:244.000000pt;}
.x75_c00474{left:247.066667pt;}
.x3b_c00474{left:249.066667pt;}
.x1e_c00474{left:251.333333pt;}
.x9e_c00474{left:252.666667pt;}
.x41_c00474{left:254.266667pt;}
.x8a_c00474{left:255.866667pt;}
.x19_c00474{left:256.933333pt;}
.x8f_c00474{left:258.133333pt;}
.x8_c00474{left:261.200000pt;}
.x79_c00474{left:262.933333pt;}
.x7b_c00474{left:263.866667pt;}
.x2b_c00474{left:264.800000pt;}
.x3c_c00474{left:266.000000pt;}
.x51_c00474{left:267.200000pt;}
.x86_c00474{left:268.400000pt;}
.x42_c00474{left:270.266667pt;}
.x72_c00474{left:271.466667pt;}
.x1a_c00474{left:272.666667pt;}
.xf_c00474{left:274.533333pt;}
.x55_c00474{left:279.066667pt;}
.x62_c00474{left:281.066667pt;}
.x7d_c00474{left:282.400000pt;}
.x64_c00474{left:283.866667pt;}
.x1_c00474{left:287.066667pt;}
.x90_c00474{left:289.466667pt;}
.x43_c00474{left:291.733333pt;}
.x4b_c00474{left:295.066667pt;}
.x69_c00474{left:296.000000pt;}
.x2f_c00474{left:297.466667pt;}
.x8b_c00474{left:298.800000pt;}
.x6f_c00474{left:299.733333pt;}
.x9f_c00474{left:302.800000pt;}
.x87_c00474{left:304.533333pt;}
.x10_c00474{left:305.600000pt;}
.x56_c00474{left:306.533333pt;}
.x34_c00474{left:308.000000pt;}
.x71_c00474{left:309.333333pt;}
.x44_c00474{left:313.466667pt;}
.x35_c00474{left:314.666667pt;}
.x30_c00474{left:316.666667pt;}
.x1f_c00474{left:317.600000pt;}
.x76_c00474{left:318.666667pt;}
.x11_c00474{left:320.933333pt;}
.x1b_c00474{left:323.466667pt;}
.x91_c00474{left:325.600000pt;}
.x9a_c00474{left:326.800000pt;}
.x73_c00474{left:328.133333pt;}
.x65_c00474{left:330.266667pt;}
.x7a_c00474{left:331.466667pt;}
.x2c_c00474{left:332.933333pt;}
.x9_c00474{left:334.533333pt;}
.x36_c00474{left:335.733333pt;}
.x4c_c00474{left:338.000000pt;}
.x5f_c00474{left:340.133333pt;}
.x48_c00474{left:342.266667pt;}
.x3d_c00474{left:344.133333pt;}
.x59_c00474{left:346.800000pt;}
.x6a_c00474{left:347.866667pt;}
.x12_c00474{left:352.000000pt;}
.x49_c00474{left:353.200000pt;}
.x52_c00474{left:355.200000pt;}
.x20_c00474{left:356.666667pt;}
.x92_c00474{left:357.866667pt;}
.x13_c00474{left:360.000000pt;}
.x31_c00474{left:366.266667pt;}
.x121_c00474{left:384.666667pt;}
.xf2_c00474{left:386.933333pt;}
.xa3_c00474{left:388.533333pt;}
.x124_c00474{left:394.933333pt;}
.xdc_c00474{left:398.400000pt;}
.xd1_c00474{left:399.333333pt;}
.xad_c00474{left:400.666667pt;}
.xf4_c00474{left:402.266667pt;}
.xe1_c00474{left:406.133333pt;}
.x122_c00474{left:408.400000pt;}
.x11a_c00474{left:411.866667pt;}
.xc6_c00474{left:412.800000pt;}
.xbe_c00474{left:414.000000pt;}
.xae_c00474{left:418.533333pt;}
.x106_c00474{left:420.666667pt;}
.x12f_c00474{left:422.933333pt;}
.x129_c00474{left:424.666667pt;}
.x115_c00474{left:426.000000pt;}
.xd2_c00474{left:427.466667pt;}
.xb7_c00474{left:428.800000pt;}
.xd5_c00474{left:431.466667pt;}
.xc7_c00474{left:432.666667pt;}
.x101_c00474{left:434.266667pt;}
.xfe_c00474{left:437.066667pt;}
.x10f_c00474{left:438.800000pt;}
.xa4_c00474{left:441.333333pt;}
.x103_c00474{left:442.266667pt;}
.xf9_c00474{left:443.200000pt;}
.xb8_c00474{left:444.800000pt;}
.x109_c00474{left:447.466667pt;}
.xaf_c00474{left:448.933333pt;}
.xe2_c00474{left:450.133333pt;}
.xc8_c00474{left:452.133333pt;}
.x13d_c00474{left:454.000000pt;}
.x12a_c00474{left:456.933333pt;}
.xdd_c00474{left:457.866667pt;}
.xb0_c00474{left:458.800000pt;}
.x110_c00474{left:459.866667pt;}
.xee_c00474{left:461.466667pt;}
.xbf_c00474{left:462.933333pt;}
.x125_c00474{left:466.266667pt;}
.xcc_c00474{left:467.333333pt;}
.x111_c00474{left:468.533333pt;}
.x104_c00474{left:470.666667pt;}
.xf0_c00474{left:472.266667pt;}
.x13b_c00474{left:474.266667pt;}
.x118_c00474{left:475.733333pt;}
.x10a_c00474{left:477.866667pt;}
.xa5_c00474{left:478.800000pt;}
.xc9_c00474{left:481.600000pt;}
.xc0_c00474{left:482.800000pt;}
.x128_c00474{left:484.133333pt;}
.x135_c00474{left:485.066667pt;}
.x138_c00474{left:486.400000pt;}
.xb9_c00474{left:487.733333pt;}
.x116_c00474{left:488.666667pt;}
.xea_c00474{left:490.400000pt;}
.xde_c00474{left:492.800000pt;}
.xfa_c00474{left:493.733333pt;}
.xa6_c00474{left:494.800000pt;}
.x10b_c00474{left:495.733333pt;}
.xef_c00474{left:497.600000pt;}
.x126_c00474{left:498.933333pt;}
.xca_c00474{left:499.866667pt;}
.xba_c00474{left:500.800000pt;}
.xb1_c00474{left:506.133333pt;}
.xeb_c00474{left:508.000000pt;}
.x12b_c00474{left:509.066667pt;}
.xc1_c00474{left:511.600000pt;}
.x117_c00474{left:516.533333pt;}
.x12d_c00474{left:518.000000pt;}
.xd8_c00474{left:519.466667pt;}
.xf5_c00474{left:521.600000pt;}
.xa7_c00474{left:524.266667pt;}
.xcd_c00474{left:525.200000pt;}
.xb2_c00474{left:526.933333pt;}
.x139_c00474{left:528.000000pt;}
.xc2_c00474{left:530.133333pt;}
.xd9_c00474{left:532.266667pt;}
.x123_c00474{left:533.466667pt;}
.xd3_c00474{left:534.400000pt;}
.xce_c00474{left:535.733333pt;}
.xf3_c00474{left:538.400000pt;}
.xe3_c00474{left:539.466667pt;}
.xfb_c00474{left:540.400000pt;}
.xb3_c00474{left:542.000000pt;}
.x11d_c00474{left:543.866667pt;}
.x10d_c00474{left:545.066667pt;}
.xe5_c00474{left:546.266667pt;}
.xa8_c00474{left:548.533333pt;}
.xdf_c00474{left:552.000000pt;}
.xff_c00474{left:555.200000pt;}
.x11e_c00474{left:556.933333pt;}
.xa9_c00474{left:559.066667pt;}
.x112_c00474{left:560.666667pt;}
.xe6_c00474{left:561.733333pt;}
.xb4_c00474{left:564.133333pt;}
.xda_c00474{left:567.466667pt;}
.xb5_c00474{left:571.866667pt;}
.xf6_c00474{left:573.466667pt;}
.xe7_c00474{left:574.533333pt;}
.xbb_c00474{left:576.266667pt;}
.xcf_c00474{left:578.933333pt;}
.xfc_c00474{left:581.066667pt;}
.xf7_c00474{left:582.400000pt;}
.x136_c00474{left:584.000000pt;}
.xe4_c00474{left:586.133333pt;}
.x113_c00474{left:587.866667pt;}
.xfd_c00474{left:588.800000pt;}
.xe0_c00474{left:591.333333pt;}
.x11b_c00474{left:592.666667pt;}
.xd0_c00474{left:594.000000pt;}
.x12e_c00474{left:595.066667pt;}
.x12c_c00474{left:598.933333pt;}
.x130_c00474{left:600.666667pt;}
.xb6_c00474{left:602.266667pt;}
.x102_c00474{left:604.133333pt;}
.xcb_c00474{left:606.800000pt;}
.x100_c00474{left:608.666667pt;}
.x107_c00474{left:612.000000pt;}
.x114_c00474{left:613.733333pt;}
.x13c_c00474{left:615.066667pt;}
.xaa_c00474{left:616.400000pt;}
.x10e_c00474{left:617.333333pt;}
.x11f_c00474{left:618.400000pt;}
.xe9_c00474{left:621.466667pt;}
.xed_c00474{left:622.400000pt;}
.xd7_c00474{left:623.600000pt;}
.xc3_c00474{left:624.533333pt;}
.xbc_c00474{left:625.866667pt;}
.x10c_c00474{left:628.000000pt;}
.xf8_c00474{left:629.466667pt;}
.xf1_c00474{left:632.266667pt;}
.x120_c00474{left:634.666667pt;}
.x131_c00474{left:635.866667pt;}
.xab_c00474{left:642.933333pt;}
.xbd_c00474{left:645.066667pt;}
.xc4_c00474{left:648.533333pt;}
.xdb_c00474{left:649.600000pt;}
.xd4_c00474{left:650.933333pt;}
.x133_c00474{left:653.066667pt;}
.x105_c00474{left:654.000000pt;}
.x132_c00474{left:655.333333pt;}
.x137_c00474{left:657.333333pt;}
.x108_c00474{left:658.666667pt;}
.x11c_c00474{left:660.266667pt;}
.x2_c00474{left:662.800000pt;}
.xec_c00474{left:665.466667pt;}
.xd6_c00474{left:668.000000pt;}
.x127_c00474{left:669.866667pt;}
.x13a_c00474{left:671.333333pt;}
.xac_c00474{left:674.266667pt;}
.xc5_c00474{left:675.466667pt;}
.xe8_c00474{left:676.533333pt;}
.x134_c00474{left:677.733333pt;}
.x3_c00474{left:682.666667pt;}
.x119_c00474{left:693.066667pt;}
}





/* 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_c00475 {
    display:none;
  }
  .loading-indicator_c00475.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00475 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_c00475 { 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_c00475" -> "#page-container .classname_c00475")
 */
.pf_c00475 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00475 { /* 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_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00475 { /* 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_c00475 { /* 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_c00475 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00475 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00475 {overflow:visible;}
  }
}
.c_c00475 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00475 { /* 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_c00475:after { /* webkit #35443 */
  content: '';
}
.t_c00475:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00475 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 */
}
.__c00475 { /* 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_c00475 { /* info for Javascript */
  display:none;
}
.l_c00475 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00475 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00475 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00475: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_c00475 {
    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_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00475.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_c00475 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00475{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00475;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.000000;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;}
.mfe_c00475{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00475{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m109_c00475{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m75_c00475{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m112_c00475{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00475{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00475{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00475{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m114_c00475{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.maa_c00475{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00475{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00475{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m113_c00475{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m15_c00475{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00475{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m116_c00475{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m115_c00475{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00475{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m80_c00475{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m35_c00475{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00475{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00475{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mad_c00475{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m41_c00475{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m7_c00475{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00475{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m87_c00475{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m33_c00475{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6_c00475{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m58_c00475{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00475{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00475{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m85_c00475{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m17_c00475{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mce_c00475{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00475{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00475{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m45_c00475{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m56_c00475{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00475{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00475{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md4_c00475{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00475{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.me0_c00475{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00475{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mea_c00475{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00475{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00475{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3_c00475{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m31_c00475{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00475{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00475{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00475{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m119_c00475{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m66_c00475{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.med_c00475{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00475{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00475{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.me5_c00475{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m30_c00475{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m92_c00475{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4_c00475{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00475{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m27_c00475{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m54_c00475{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00475{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00475{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me9_c00475{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m107_c00475{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m21_c00475{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00475{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00475{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m46_c00475{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00475{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00475{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00475{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00475{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m34_c00475{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m12_c00475{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.md6_c00475{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m79_c00475{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m65_c00475{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00475{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m14_c00475{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m57_c00475{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00475{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.me3_c00475{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00475{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00475{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m51_c00475{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00475{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m24_c00475{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m74_c00475{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00475{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00475{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00475{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mee_c00475{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00475{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00475{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00475{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m53_c00475{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m98_c00475{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m44_c00475{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m38_c00475{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m77_c00475{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00475{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00475{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m91_c00475{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m93_c00475{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00475{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00475{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m42_c00475{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00475{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m90_c00475{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m78_c00475{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00475{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md_c00475{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m23_c00475{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m55_c00475{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m73_c00475{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00475{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00475{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m19_c00475{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m72_c00475{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mca_c00475{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.me_c00475{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00475{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00475{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m28_c00475{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m97_c00475{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mae_c00475{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00475{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m99_c00475{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m29_c00475{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m9_c00475{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00475{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00475{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mba_c00475{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m16_c00475{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m84_c00475{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me6_c00475{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m32_c00475{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00475{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mec_c00475{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m96_c00475{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m76_c00475{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb_c00475{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m2_c00475{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00475{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.me4_c00475{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00475{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00475{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00475{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m95_c00475{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf_c00475{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00475{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00475{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m37_c00475{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m22_c00475{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00475{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5_c00475{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00475{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m82_c00475{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00475{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc_c00475{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m105_c00475{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00475{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00475{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00475{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m64_c00475{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m67_c00475{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00475{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m20_c00475{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00475{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00475{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m111_c00475{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m26_c00475{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m94_c00475{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m89_c00475{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00475{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m101_c00475{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m81_c00475{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m106_c00475{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00475{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8_c00475{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mef_c00475{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.md2_c00475{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me8_c00475{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m83_c00475{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m52_c00475{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00475{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m50_c00475{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00475{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mab_c00475{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m118_c00475{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m49_c00475{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m11_c00475{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m63_c00475{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00475{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00475{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me2_c00475{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00475{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00475{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00475{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00475{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00475{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m71_c00475{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m108_c00475{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00475{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00475{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00475{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00475{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m39_c00475{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00475{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma_c00475{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md7_c00475{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00475{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m0_c00475{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md1_c00475{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.meb_c00475{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.md9_c00475{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00475{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m59_c00475{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m61_c00475{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00475{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m36_c00475{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m110_c00475{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00475{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00475{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m62_c00475{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00475{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);}
.m10a_c00475{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m40_c00475{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00475{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00475{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00475{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00475{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m117_c00475{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md5_c00475{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.md8_c00475{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.maf_c00475{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m86_c00475{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md0_c00475{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m69_c00475{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m25_c00475{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00475{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mac_c00475{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00475{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me7_c00475{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00475{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m88_c00475{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00475{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m47_c00475{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00475{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00475{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mde_c00475{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m104_c00475{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00475{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mff_c00475{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mda_c00475{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m48_c00475{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.md3_c00475{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m68_c00475{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m103_c00475{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m70_c00475{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00475{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00475{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00475{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00475{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00475{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m10_c00475{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00475{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m60_c00475{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m18_c00475{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m43_c00475{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00475{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00475{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00475{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.me1_c00475{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00475{transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00475{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00475{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00475{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00475{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m102_c00475{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00475{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00475{transform:matrix(0.568000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568000,0.000000,0.000000,0.250000,0,0);}
.m100_c00475{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls0_c00475{letter-spacing:0.000000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{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__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00475{word-spacing:-12.748072px;}
.ws9_c00475{word-spacing:0.000000px;}
.ws4_c00475{word-spacing:4.718213px;}
.ws6_c00475{word-spacing:6.666667px;}
.ws3_c00475{word-spacing:6.994819px;}
.ws0_c00475{word-spacing:7.374502px;}
.ws1_c00475{word-spacing:11.433962px;}
.ws8_c00475{word-spacing:18.125000px;}
.ws7_c00475{word-spacing:25.714286px;}
.ws5_c00475{word-spacing:29.285714px;}
.fc0_c00475{color:transparent;}
.fs6_c00475{font-size:30.000000px;}
.fs5_c00475{font-size:48.000000px;}
.fs4_c00475{font-size:54.000000px;}
.fs2_c00475{font-size:60.000000px;}
.fs1_c00475{font-size:66.000000px;}
.fs3_c00475{font-size:72.000000px;}
.fs0_c00475{font-size:78.000000px;}
.y0_c00475{bottom:0.000000px;}
.y6c_c00475{bottom:12.900000px;}
.y6b_c00475{bottom:189.750000px;}
.y35_c00475{bottom:206.850000px;}
.y6a_c00475{bottom:208.050000px;}
.y34_c00475{bottom:225.150000px;}
.y69_c00475{bottom:225.900000px;}
.y33_c00475{bottom:242.850000px;}
.y68_c00475{bottom:243.600000px;}
.y32_c00475{bottom:260.550000px;}
.y67_c00475{bottom:261.600000px;}
.y31_c00475{bottom:277.800000px;}
.y66_c00475{bottom:279.600000px;}
.y30_c00475{bottom:295.500000px;}
.y65_c00475{bottom:299.100000px;}
.y2f_c00475{bottom:313.500000px;}
.y64_c00475{bottom:313.950000px;}
.y63_c00475{bottom:314.700000px;}
.y62_c00475{bottom:328.350000px;}
.y2e_c00475{bottom:338.700000px;}
.y61_c00475{bottom:343.800000px;}
.y2d_c00475{bottom:358.500000px;}
.y60_c00475{bottom:367.050000px;}
.y2c_c00475{bottom:376.500000px;}
.y5f_c00475{bottom:385.050000px;}
.y2b_c00475{bottom:394.200000px;}
.y5e_c00475{bottom:403.050000px;}
.y2a_c00475{bottom:412.200000px;}
.y5d_c00475{bottom:420.750000px;}
.y29_c00475{bottom:430.500000px;}
.y5c_c00475{bottom:438.750000px;}
.y28_c00475{bottom:451.950000px;}
.y5b_c00475{bottom:456.450000px;}
.y27_c00475{bottom:469.950000px;}
.y5a_c00475{bottom:474.150000px;}
.y26_c00475{bottom:487.950000px;}
.y59_c00475{bottom:496.350000px;}
.y25_c00475{bottom:505.650000px;}
.y58_c00475{bottom:514.350000px;}
.y24_c00475{bottom:523.650000px;}
.y57_c00475{bottom:532.050000px;}
.y23_c00475{bottom:541.350000px;}
.y56_c00475{bottom:550.200000px;}
.y22_c00475{bottom:559.350000px;}
.y55_c00475{bottom:567.450000px;}
.y21_c00475{bottom:577.050000px;}
.y54_c00475{bottom:585.450000px;}
.y20_c00475{bottom:594.750000px;}
.y53_c00475{bottom:602.700000px;}
.y1f_c00475{bottom:613.050000px;}
.y52_c00475{bottom:624.600000px;}
.y1e_c00475{bottom:630.300000px;}
.y51_c00475{bottom:642.600000px;}
.y1d_c00475{bottom:654.900000px;}
.y50_c00475{bottom:664.350000px;}
.y1c_c00475{bottom:669.600000px;}
.y4f_c00475{bottom:682.350000px;}
.y1b_c00475{bottom:684.000000px;}
.y4e_c00475{bottom:700.050000px;}
.y1a_c00475{bottom:702.600000px;}
.y4d_c00475{bottom:717.750000px;}
.y19_c00475{bottom:722.100000px;}
.y4c_c00475{bottom:735.450000px;}
.y18_c00475{bottom:740.100000px;}
.y4b_c00475{bottom:753.150000px;}
.y17_c00475{bottom:758.100000px;}
.y4a_c00475{bottom:771.150000px;}
.y16_c00475{bottom:775.350000px;}
.y49_c00475{bottom:788.850000px;}
.y15_c00475{bottom:793.050000px;}
.y48_c00475{bottom:806.850000px;}
.y14_c00475{bottom:811.050000px;}
.y47_c00475{bottom:824.550000px;}
.y13_c00475{bottom:832.950000px;}
.y46_c00475{bottom:842.550000px;}
.y12_c00475{bottom:850.650000px;}
.y45_c00475{bottom:860.250000px;}
.y11_c00475{bottom:868.650000px;}
.y44_c00475{bottom:877.950000px;}
.y10_c00475{bottom:886.650000px;}
.y43_c00475{bottom:895.950000px;}
.yf_c00475{bottom:904.350000px;}
.y42_c00475{bottom:913.650000px;}
.ye_c00475{bottom:922.050000px;}
.y41_c00475{bottom:935.550000px;}
.yd_c00475{bottom:940.050000px;}
.y40_c00475{bottom:953.550000px;}
.yc_c00475{bottom:957.300000px;}
.y3f_c00475{bottom:971.550000px;}
.yb_c00475{bottom:975.300000px;}
.y3e_c00475{bottom:989.250000px;}
.ya_c00475{bottom:997.500000px;}
.y3d_c00475{bottom:1006.950000px;}
.y9_c00475{bottom:1021.500000px;}
.y3c_c00475{bottom:1025.250000px;}
.y8_c00475{bottom:1041.600000px;}
.y3b_c00475{bottom:1042.500000px;}
.y7_c00475{bottom:1059.300000px;}
.y3a_c00475{bottom:1060.500000px;}
.y6_c00475{bottom:1077.300000px;}
.y39_c00475{bottom:1077.750000px;}
.y5_c00475{bottom:1095.000000px;}
.y38_c00475{bottom:1095.750000px;}
.y4_c00475{bottom:1112.700000px;}
.y37_c00475{bottom:1113.450000px;}
.y3_c00475{bottom:1130.700000px;}
.y36_c00475{bottom:1131.150000px;}
.y1_c00475{bottom:1155.600000px;}
.y2_c00475{bottom:1157.100000px;}
.h8_c00475{height:30.000000px;}
.h7_c00475{height:48.000000px;}
.h6_c00475{height:54.000000px;}
.h4_c00475{height:60.000000px;}
.h3_c00475{height:66.000000px;}
.h5_c00475{height:72.000000px;}
.h2_c00475{height:78.000000px;}
.h0_c00475{height:1276.920044px;}
.h1_c00475{height:1277.250000px;}
.w0_c00475{width:958.320007px;}
.w1_c00475{width:958.500000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:192.300000px;}
.x27_c00475{left:195.150000px;}
.x79_c00475{left:196.200000px;}
.x99_c00475{left:197.700000px;}
.x3_c00475{left:210.900000px;}
.x18_c00475{left:212.100000px;}
.x55_c00475{left:213.150000px;}
.x7f_c00475{left:214.350000px;}
.x9c_c00475{left:215.550000px;}
.x1d_c00475{left:229.800000px;}
.x2c_c00475{left:232.200000px;}
.x63_c00475{left:234.600000px;}
.x80_c00475{left:235.650000px;}
.x98_c00475{left:236.850000px;}
.x4_c00475{left:237.900000px;}
.x5a_c00475{left:240.000000px;}
.x8e_c00475{left:241.350000px;}
.x67_c00475{left:242.400000px;}
.x60_c00475{left:244.050000px;}
.x3f_c00475{left:245.850000px;}
.x87_c00475{left:247.500000px;}
.x47_c00475{left:249.750000px;}
.x4f_c00475{left:252.600000px;}
.x6d_c00475{left:254.850000px;}
.x34_c00475{left:256.500000px;}
.x56_c00475{left:258.450000px;}
.x5_c00475{left:261.600000px;}
.x5d_c00475{left:262.800000px;}
.x88_c00475{left:264.750000px;}
.x11_c00475{left:266.700000px;}
.x48_c00475{left:267.750000px;}
.x81_c00475{left:269.850000px;}
.xa1_c00475{left:270.900000px;}
.xc_c00475{left:273.150000px;}
.x28_c00475{left:275.700000px;}
.x6e_c00475{left:277.500000px;}
.x4b_c00475{left:278.550000px;}
.x7a_c00475{left:280.500000px;}
.x96_c00475{left:283.200000px;}
.x50_c00475{left:284.700000px;}
.x3a_c00475{left:285.750000px;}
.x35_c00475{left:287.100000px;}
.x9d_c00475{left:288.300000px;}
.x6_c00475{left:290.100000px;}
.x1e_c00475{left:293.100000px;}
.x64_c00475{left:295.050000px;}
.x2d_c00475{left:299.550000px;}
.x86_c00475{left:300.750000px;}
.x40_c00475{left:301.950000px;}
.x36_c00475{left:303.300000px;}
.x89_c00475{left:304.350000px;}
.x57_c00475{left:305.550000px;}
.x3b_c00475{left:307.050000px;}
.x75_c00475{left:309.450000px;}
.x41_c00475{left:310.950000px;}
.x8c_c00475{left:312.300000px;}
.x12_c00475{left:314.250000px;}
.x1f_c00475{left:315.450000px;}
.x7c_c00475{left:318.000000px;}
.x51_c00475{left:319.650000px;}
.x24_c00475{left:322.350000px;}
.x2e_c00475{left:325.050000px;}
.x42_c00475{left:326.100000px;}
.x6f_c00475{left:327.300000px;}
.x76_c00475{left:329.250000px;}
.x9a_c00475{left:330.450000px;}
.x97_c00475{left:331.500000px;}
.x83_c00475{left:334.050000px;}
.x19_c00475{left:336.300000px;}
.x13_c00475{left:338.400000px;}
.x6a_c00475{left:341.100000px;}
.xd_c00475{left:345.900000px;}
.x43_c00475{left:347.400000px;}
.x71_c00475{left:349.800000px;}
.x25_c00475{left:351.450000px;}
.x5e_c00475{left:353.550000px;}
.x7_c00475{left:354.600000px;}
.x5b_c00475{left:357.000000px;}
.x29_c00475{left:358.500000px;}
.x14_c00475{left:360.000000px;}
.xa2_c00475{left:362.550000px;}
.x68_c00475{left:364.050000px;}
.x20_c00475{left:365.550000px;}
.x9e_c00475{left:366.750000px;}
.x5f_c00475{left:367.950000px;}
.x8_c00475{left:370.050000px;}
.x82_c00475{left:371.700000px;}
.x77_c00475{left:372.750000px;}
.x8b_c00475{left:374.100000px;}
.x8f_c00475{left:375.150000px;}
.x2f_c00475{left:376.200000px;}
.x5c_c00475{left:380.400000px;}
.x3c_c00475{left:382.650000px;}
.x7b_c00475{left:384.150000px;}
.x84_c00475{left:387.000000px;}
.xe_c00475{left:389.100000px;}
.x30_c00475{left:390.600000px;}
.x44_c00475{left:393.150000px;}
.x7d_c00475{left:394.650000px;}
.x21_c00475{left:399.750000px;}
.x9f_c00475{left:402.750000px;}
.x65_c00475{left:404.850000px;}
.x2a_c00475{left:407.100000px;}
.x15_c00475{left:408.900000px;}
.x31_c00475{left:410.100000px;}
.x72_c00475{left:411.300000px;}
.x94_c00475{left:412.350000px;}
.x49_c00475{left:414.300000px;}
.x9_c00475{left:415.350000px;}
.x8d_c00475{left:416.700000px;}
.x2b_c00475{left:417.900000px;}
.x22_c00475{left:419.550000px;}
.x52_c00475{left:421.950000px;}
.x16_c00475{left:423.300000px;}
.x1a_c00475{left:425.250000px;}
.x45_c00475{left:426.600000px;}
.x8a_c00475{left:427.800000px;}
.x73_c00475{left:429.600000px;}
.x6b_c00475{left:430.800000px;}
.x4c_c00475{left:432.300000px;}
.x9b_c00475{left:434.100000px;}
.xa_c00475{left:435.450000px;}
.x78_c00475{left:436.500000px;}
.x61_c00475{left:440.550000px;}
.x3d_c00475{left:443.550000px;}
.x32_c00475{left:445.050000px;}
.x1b_c00475{left:447.600000px;}
.xa0_c00475{left:448.800000px;}
.x90_c00475{left:450.000000px;}
.x2_c00475{left:453.000000px;}
.x69_c00475{left:455.100000px;}
.xa3_c00475{left:456.450000px;}
.xf_c00475{left:459.300000px;}
.x74_c00475{left:460.500000px;}
.x37_c00475{left:463.200000px;}
.x4d_c00475{left:466.500000px;}
.x17_c00475{left:468.000000px;}
.x4a_c00475{left:469.350000px;}
.x58_c00475{left:471.900000px;}
.x26_c00475{left:474.300000px;}
.x53_c00475{left:477.000000px;}
.x3e_c00475{left:479.850000px;}
.x46_c00475{left:482.700000px;}
.x93_c00475{left:484.650000px;}
.x62_c00475{left:486.300000px;}
.xb_c00475{left:489.150000px;}
.x54_c00475{left:490.650000px;}
.x23_c00475{left:492.600000px;}
.x7e_c00475{left:493.650000px;}
.x91_c00475{left:495.300000px;}
.x33_c00475{left:496.950000px;}
.x38_c00475{left:501.000000px;}
.x66_c00475{left:502.350000px;}
.x4e_c00475{left:504.600000px;}
.x6c_c00475{left:506.700000px;}
.x70_c00475{left:507.750000px;}
.x1c_c00475{left:510.300000px;}
.x59_c00475{left:511.800000px;}
.x10_c00475{left:514.050000px;}
.x85_c00475{left:516.900000px;}
.x39_c00475{left:519.750000px;}
.x92_c00475{left:521.850000px;}
.x95_c00475{left:526.500000px;}
.x139_c00475{left:545.400000px;}
.xec_c00475{left:551.100000px;}
.x123_c00475{left:552.600000px;}
.x12f_c00475{left:563.100000px;}
.x146_c00475{left:565.650000px;}
.x142_c00475{left:567.450000px;}
.xa4_c00475{left:569.100000px;}
.x14b_c00475{left:570.150000px;}
.x104_c00475{left:580.500000px;}
.x125_c00475{left:587.550000px;}
.xfa_c00475{left:589.350000px;}
.xd0_c00475{left:595.500000px;}
.x124_c00475{left:596.550000px;}
.x121_c00475{left:597.900000px;}
.xfe_c00475{left:600.150000px;}
.x10a_c00475{left:602.400000px;}
.x113_c00475{left:604.200000px;}
.xad_c00475{left:605.850000px;}
.x134_c00475{left:606.900000px;}
.xe6_c00475{left:608.550000px;}
.x144_c00475{left:609.900000px;}
.x14f_c00475{left:610.950000px;}
.x13e_c00475{left:612.000000px;}
.xd7_c00475{left:613.200000px;}
.xed_c00475{left:616.650000px;}
.x120_c00475{left:618.900000px;}
.x10b_c00475{left:620.100000px;}
.xd1_c00475{left:621.450000px;}
.xc5_c00475{left:624.450000px;}
.xf4_c00475{left:626.250000px;}
.xa5_c00475{left:628.500000px;}
.x10f_c00475{left:629.700000px;}
.xcb_c00475{left:630.900000px;}
.xf6_c00475{left:632.100000px;}
.x114_c00475{left:634.800000px;}
.x11c_c00475{left:636.150000px;}
.xa6_c00475{left:637.800000px;}
.x135_c00475{left:639.000000px;}
.x13f_c00475{left:640.500000px;}
.xff_c00475{left:643.650000px;}
.xee_c00475{left:645.450000px;}
.xc6_c00475{left:646.800000px;}
.x130_c00475{left:648.750000px;}
.x145_c00475{left:649.800000px;}
.xfb_c00475{left:651.000000px;}
.x110_c00475{left:652.050000px;}
.x118_c00475{left:653.400000px;}
.xb4_c00475{left:655.500000px;}
.x105_c00475{left:659.250000px;}
.x14c_c00475{left:660.450000px;}
.xde_c00475{left:662.250000px;}
.xbc_c00475{left:664.950000px;}
.x126_c00475{left:666.450000px;}
.xa7_c00475{left:668.400000px;}
.xae_c00475{left:669.600000px;}
.x131_c00475{left:670.650000px;}
.xf7_c00475{left:671.700000px;}
.x13b_c00475{left:673.050000px;}
.x136_c00475{left:675.300000px;}
.x116_c00475{left:676.800000px;}
.xb5_c00475{left:677.850000px;}
.xe7_c00475{left:679.800000px;}
.x12d_c00475{left:680.850000px;}
.x149_c00475{left:682.650000px;}
.xd2_c00475{left:684.150000px;}
.xcc_c00475{left:685.500000px;}
.xbd_c00475{left:688.350000px;}
.xef_c00475{left:690.150000px;}
.xe3_c00475{left:691.800000px;}
.x14d_c00475{left:693.150000px;}
.x119_c00475{left:694.800000px;}
.x11d_c00475{left:696.600000px;}
.x127_c00475{left:698.100000px;}
.xd3_c00475{left:700.050000px;}
.xbe_c00475{left:701.700000px;}
.xaf_c00475{left:702.750000px;}
.x100_c00475{left:704.100000px;}
.xa8_c00475{left:708.300000px;}
.xb6_c00475{left:709.500000px;}
.x111_c00475{left:714.000000px;}
.xd8_c00475{left:716.100000px;}
.xfc_c00475{left:718.650000px;}
.xcd_c00475{left:720.750000px;}
.x12a_c00475{left:722.100000px;}
.x106_c00475{left:723.300000px;}
.xd4_c00475{left:724.950000px;}
.x132_c00475{left:727.500000px;}
.xc7_c00475{left:729.600000px;}
.x137_c00475{left:731.400000px;}
.xb0_c00475{left:733.650000px;}
.xa9_c00475{left:735.000000px;}
.x10c_c00475{left:736.350000px;}
.xb7_c00475{left:739.050000px;}
.xbf_c00475{left:741.000000px;}
.x14a_c00475{left:742.200000px;}
.x11e_c00475{left:743.850000px;}
.xdf_c00475{left:745.650000px;}
.x150_c00475{left:747.450000px;}
.xd5_c00475{left:748.650000px;}
.xf0_c00475{left:750.600000px;}
.x11a_c00475{left:751.650000px;}
.xe4_c00475{left:753.300000px;}
.xd9_c00475{left:754.950000px;}
.xe8_c00475{left:757.500000px;}
.xb1_c00475{left:758.550000px;}
.xb8_c00475{left:760.650000px;}
.x107_c00475{left:761.850000px;}
.x138_c00475{left:763.800000px;}
.xe0_c00475{left:765.150000px;}
.x128_c00475{left:766.800000px;}
.x13c_c00475{left:768.450000px;}
.x140_c00475{left:769.800000px;}
.xf1_c00475{left:773.250000px;}
.xf8_c00475{left:776.100000px;}
.x115_c00475{left:778.050000px;}
.x108_c00475{left:779.550000px;}
.xce_c00475{left:781.200000px;}
.xc8_c00475{left:782.850000px;}
.x12e_c00475{left:784.050000px;}
.x147_c00475{left:787.500000px;}
.xc0_c00475{left:789.600000px;}
.x112_c00475{left:791.850000px;}
.x10d_c00475{left:793.500000px;}
.xe9_c00475{left:794.550000px;}
.xda_c00475{left:796.650000px;}
.x133_c00475{left:798.000000px;}
.x13d_c00475{left:799.350000px;}
.x101_c00475{left:800.850000px;}
.xcf_c00475{left:802.500000px;}
.x14e_c00475{left:803.550000px;}
.x11f_c00475{left:805.350000px;}
.xb9_c00475{left:806.700000px;}
.xc9_c00475{left:807.750000px;}
.xaa_c00475{left:808.800000px;}
.xc1_c00475{left:810.150000px;}
.x141_c00475{left:811.500000px;}
.xf5_c00475{left:812.850000px;}
.x148_c00475{left:814.500000px;}
.x122_c00475{left:815.700000px;}
.xdb_c00475{left:818.550000px;}
.x10e_c00475{left:820.800000px;}
.xf2_c00475{left:821.850000px;}
.x129_c00475{left:824.100000px;}
.x143_c00475{left:826.950000px;}
.xba_c00475{left:829.050000px;}
.xab_c00475{left:831.900000px;}
.xd6_c00475{left:833.250000px;}
.xb2_c00475{left:834.450000px;}
.x102_c00475{left:836.550000px;}
.xf9_c00475{left:837.750000px;}
.xe1_c00475{left:838.950000px;}
.xc2_c00475{left:841.050000px;}
.xea_c00475{left:842.850000px;}
.xf3_c00475{left:844.200000px;}
.x109_c00475{left:845.850000px;}
.x12b_c00475{left:848.100000px;}
.xb3_c00475{left:850.650000px;}
.xc3_c00475{left:853.650000px;}
.x13a_c00475{left:856.200000px;}
.xdc_c00475{left:857.850000px;}
.x117_c00475{left:859.650000px;}
.xca_c00475{left:860.700000px;}
.x12c_c00475{left:861.750000px;}
.xe5_c00475{left:864.150000px;}
.xeb_c00475{left:865.500000px;}
.xac_c00475{left:867.600000px;}
.xe2_c00475{left:869.550000px;}
.x11b_c00475{left:872.250000px;}
.xbb_c00475{left:873.750000px;}
.xc4_c00475{left:875.250000px;}
.xdd_c00475{left:876.900000px;}
.xfd_c00475{left:878.100000px;}
.x103_c00475{left:884.400000px;}
.x151_c00475{left:898.950000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws2_c00475{word-spacing:-11.331620pt;}
.ws9_c00475{word-spacing:0.000000pt;}
.ws4_c00475{word-spacing:4.193967pt;}
.ws6_c00475{word-spacing:5.925926pt;}
.ws3_c00475{word-spacing:6.217617pt;}
.ws0_c00475{word-spacing:6.555113pt;}
.ws1_c00475{word-spacing:10.163522pt;}
.ws8_c00475{word-spacing:16.111111pt;}
.ws7_c00475{word-spacing:22.857143pt;}
.ws5_c00475{word-spacing:26.031746pt;}
.fs6_c00475{font-size:26.666667pt;}
.fs5_c00475{font-size:42.666667pt;}
.fs4_c00475{font-size:48.000000pt;}
.fs2_c00475{font-size:53.333333pt;}
.fs1_c00475{font-size:58.666667pt;}
.fs3_c00475{font-size:64.000000pt;}
.fs0_c00475{font-size:69.333333pt;}
.y0_c00475{bottom:0.000000pt;}
.y6c_c00475{bottom:11.466667pt;}
.y6b_c00475{bottom:168.666667pt;}
.y35_c00475{bottom:183.866667pt;}
.y6a_c00475{bottom:184.933333pt;}
.y34_c00475{bottom:200.133333pt;}
.y69_c00475{bottom:200.800000pt;}
.y33_c00475{bottom:215.866667pt;}
.y68_c00475{bottom:216.533333pt;}
.y32_c00475{bottom:231.600000pt;}
.y67_c00475{bottom:232.533333pt;}
.y31_c00475{bottom:246.933333pt;}
.y66_c00475{bottom:248.533333pt;}
.y30_c00475{bottom:262.666667pt;}
.y65_c00475{bottom:265.866667pt;}
.y2f_c00475{bottom:278.666667pt;}
.y64_c00475{bottom:279.066667pt;}
.y63_c00475{bottom:279.733333pt;}
.y62_c00475{bottom:291.866667pt;}
.y2e_c00475{bottom:301.066667pt;}
.y61_c00475{bottom:305.600000pt;}
.y2d_c00475{bottom:318.666667pt;}
.y60_c00475{bottom:326.266667pt;}
.y2c_c00475{bottom:334.666667pt;}
.y5f_c00475{bottom:342.266667pt;}
.y2b_c00475{bottom:350.400000pt;}
.y5e_c00475{bottom:358.266667pt;}
.y2a_c00475{bottom:366.400000pt;}
.y5d_c00475{bottom:374.000000pt;}
.y29_c00475{bottom:382.666667pt;}
.y5c_c00475{bottom:390.000000pt;}
.y28_c00475{bottom:401.733333pt;}
.y5b_c00475{bottom:405.733333pt;}
.y27_c00475{bottom:417.733333pt;}
.y5a_c00475{bottom:421.466667pt;}
.y26_c00475{bottom:433.733333pt;}
.y59_c00475{bottom:441.200000pt;}
.y25_c00475{bottom:449.466667pt;}
.y58_c00475{bottom:457.200000pt;}
.y24_c00475{bottom:465.466667pt;}
.y57_c00475{bottom:472.933333pt;}
.y23_c00475{bottom:481.200000pt;}
.y56_c00475{bottom:489.066667pt;}
.y22_c00475{bottom:497.200000pt;}
.y55_c00475{bottom:504.400000pt;}
.y21_c00475{bottom:512.933333pt;}
.y54_c00475{bottom:520.400000pt;}
.y20_c00475{bottom:528.666667pt;}
.y53_c00475{bottom:535.733333pt;}
.y1f_c00475{bottom:544.933333pt;}
.y52_c00475{bottom:555.200000pt;}
.y1e_c00475{bottom:560.266667pt;}
.y51_c00475{bottom:571.200000pt;}
.y1d_c00475{bottom:582.133333pt;}
.y50_c00475{bottom:590.533333pt;}
.y1c_c00475{bottom:595.200000pt;}
.y4f_c00475{bottom:606.533333pt;}
.y1b_c00475{bottom:608.000000pt;}
.y4e_c00475{bottom:622.266667pt;}
.y1a_c00475{bottom:624.533333pt;}
.y4d_c00475{bottom:638.000000pt;}
.y19_c00475{bottom:641.866667pt;}
.y4c_c00475{bottom:653.733333pt;}
.y18_c00475{bottom:657.866667pt;}
.y4b_c00475{bottom:669.466667pt;}
.y17_c00475{bottom:673.866667pt;}
.y4a_c00475{bottom:685.466667pt;}
.y16_c00475{bottom:689.200000pt;}
.y49_c00475{bottom:701.200000pt;}
.y15_c00475{bottom:704.933333pt;}
.y48_c00475{bottom:717.200000pt;}
.y14_c00475{bottom:720.933333pt;}
.y47_c00475{bottom:732.933333pt;}
.y13_c00475{bottom:740.400000pt;}
.y46_c00475{bottom:748.933333pt;}
.y12_c00475{bottom:756.133333pt;}
.y45_c00475{bottom:764.666667pt;}
.y11_c00475{bottom:772.133333pt;}
.y44_c00475{bottom:780.400000pt;}
.y10_c00475{bottom:788.133333pt;}
.y43_c00475{bottom:796.400000pt;}
.yf_c00475{bottom:803.866667pt;}
.y42_c00475{bottom:812.133333pt;}
.ye_c00475{bottom:819.600000pt;}
.y41_c00475{bottom:831.600000pt;}
.yd_c00475{bottom:835.600000pt;}
.y40_c00475{bottom:847.600000pt;}
.yc_c00475{bottom:850.933333pt;}
.y3f_c00475{bottom:863.600000pt;}
.yb_c00475{bottom:866.933333pt;}
.y3e_c00475{bottom:879.333333pt;}
.ya_c00475{bottom:886.666667pt;}
.y3d_c00475{bottom:895.066667pt;}
.y9_c00475{bottom:908.000000pt;}
.y3c_c00475{bottom:911.333333pt;}
.y8_c00475{bottom:925.866667pt;}
.y3b_c00475{bottom:926.666667pt;}
.y7_c00475{bottom:941.600000pt;}
.y3a_c00475{bottom:942.666667pt;}
.y6_c00475{bottom:957.600000pt;}
.y39_c00475{bottom:958.000000pt;}
.y5_c00475{bottom:973.333333pt;}
.y38_c00475{bottom:974.000000pt;}
.y4_c00475{bottom:989.066667pt;}
.y37_c00475{bottom:989.733333pt;}
.y3_c00475{bottom:1005.066667pt;}
.y36_c00475{bottom:1005.466667pt;}
.y1_c00475{bottom:1027.200000pt;}
.y2_c00475{bottom:1028.533333pt;}
.h8_c00475{height:26.666667pt;}
.h7_c00475{height:42.666667pt;}
.h6_c00475{height:48.000000pt;}
.h4_c00475{height:53.333333pt;}
.h3_c00475{height:58.666667pt;}
.h5_c00475{height:64.000000pt;}
.h2_c00475{height:69.333333pt;}
.h0_c00475{height:1135.040039pt;}
.h1_c00475{height:1135.333333pt;}
.w0_c00475{width:851.840007pt;}
.w1_c00475{width:852.000000pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:170.933333pt;}
.x27_c00475{left:173.466667pt;}
.x79_c00475{left:174.400000pt;}
.x99_c00475{left:175.733333pt;}
.x3_c00475{left:187.466667pt;}
.x18_c00475{left:188.533333pt;}
.x55_c00475{left:189.466667pt;}
.x7f_c00475{left:190.533333pt;}
.x9c_c00475{left:191.600000pt;}
.x1d_c00475{left:204.266667pt;}
.x2c_c00475{left:206.400000pt;}
.x63_c00475{left:208.533333pt;}
.x80_c00475{left:209.466667pt;}
.x98_c00475{left:210.533333pt;}
.x4_c00475{left:211.466667pt;}
.x5a_c00475{left:213.333333pt;}
.x8e_c00475{left:214.533333pt;}
.x67_c00475{left:215.466667pt;}
.x60_c00475{left:216.933333pt;}
.x3f_c00475{left:218.533333pt;}
.x87_c00475{left:220.000000pt;}
.x47_c00475{left:222.000000pt;}
.x4f_c00475{left:224.533333pt;}
.x6d_c00475{left:226.533333pt;}
.x34_c00475{left:228.000000pt;}
.x56_c00475{left:229.733333pt;}
.x5_c00475{left:232.533333pt;}
.x5d_c00475{left:233.600000pt;}
.x88_c00475{left:235.333333pt;}
.x11_c00475{left:237.066667pt;}
.x48_c00475{left:238.000000pt;}
.x81_c00475{left:239.866667pt;}
.xa1_c00475{left:240.800000pt;}
.xc_c00475{left:242.800000pt;}
.x28_c00475{left:245.066667pt;}
.x6e_c00475{left:246.666667pt;}
.x4b_c00475{left:247.600000pt;}
.x7a_c00475{left:249.333333pt;}
.x96_c00475{left:251.733333pt;}
.x50_c00475{left:253.066667pt;}
.x3a_c00475{left:254.000000pt;}
.x35_c00475{left:255.200000pt;}
.x9d_c00475{left:256.266667pt;}
.x6_c00475{left:257.866667pt;}
.x1e_c00475{left:260.533333pt;}
.x64_c00475{left:262.266667pt;}
.x2d_c00475{left:266.266667pt;}
.x86_c00475{left:267.333333pt;}
.x40_c00475{left:268.400000pt;}
.x36_c00475{left:269.600000pt;}
.x89_c00475{left:270.533333pt;}
.x57_c00475{left:271.600000pt;}
.x3b_c00475{left:272.933333pt;}
.x75_c00475{left:275.066667pt;}
.x41_c00475{left:276.400000pt;}
.x8c_c00475{left:277.600000pt;}
.x12_c00475{left:279.333333pt;}
.x1f_c00475{left:280.400000pt;}
.x7c_c00475{left:282.666667pt;}
.x51_c00475{left:284.133333pt;}
.x24_c00475{left:286.533333pt;}
.x2e_c00475{left:288.933333pt;}
.x42_c00475{left:289.866667pt;}
.x6f_c00475{left:290.933333pt;}
.x76_c00475{left:292.666667pt;}
.x9a_c00475{left:293.733333pt;}
.x97_c00475{left:294.666667pt;}
.x83_c00475{left:296.933333pt;}
.x19_c00475{left:298.933333pt;}
.x13_c00475{left:300.800000pt;}
.x6a_c00475{left:303.200000pt;}
.xd_c00475{left:307.466667pt;}
.x43_c00475{left:308.800000pt;}
.x71_c00475{left:310.933333pt;}
.x25_c00475{left:312.400000pt;}
.x5e_c00475{left:314.266667pt;}
.x7_c00475{left:315.200000pt;}
.x5b_c00475{left:317.333333pt;}
.x29_c00475{left:318.666667pt;}
.x14_c00475{left:320.000000pt;}
.xa2_c00475{left:322.266667pt;}
.x68_c00475{left:323.600000pt;}
.x20_c00475{left:324.933333pt;}
.x9e_c00475{left:326.000000pt;}
.x5f_c00475{left:327.066667pt;}
.x8_c00475{left:328.933333pt;}
.x82_c00475{left:330.400000pt;}
.x77_c00475{left:331.333333pt;}
.x8b_c00475{left:332.533333pt;}
.x8f_c00475{left:333.466667pt;}
.x2f_c00475{left:334.400000pt;}
.x5c_c00475{left:338.133333pt;}
.x3c_c00475{left:340.133333pt;}
.x7b_c00475{left:341.466667pt;}
.x84_c00475{left:344.000000pt;}
.xe_c00475{left:345.866667pt;}
.x30_c00475{left:347.200000pt;}
.x44_c00475{left:349.466667pt;}
.x7d_c00475{left:350.800000pt;}
.x21_c00475{left:355.333333pt;}
.x9f_c00475{left:358.000000pt;}
.x65_c00475{left:359.866667pt;}
.x2a_c00475{left:361.866667pt;}
.x15_c00475{left:363.466667pt;}
.x31_c00475{left:364.533333pt;}
.x72_c00475{left:365.600000pt;}
.x94_c00475{left:366.533333pt;}
.x49_c00475{left:368.266667pt;}
.x9_c00475{left:369.200000pt;}
.x8d_c00475{left:370.400000pt;}
.x2b_c00475{left:371.466667pt;}
.x22_c00475{left:372.933333pt;}
.x52_c00475{left:375.066667pt;}
.x16_c00475{left:376.266667pt;}
.x1a_c00475{left:378.000000pt;}
.x45_c00475{left:379.200000pt;}
.x8a_c00475{left:380.266667pt;}
.x73_c00475{left:381.866667pt;}
.x6b_c00475{left:382.933333pt;}
.x4c_c00475{left:384.266667pt;}
.x9b_c00475{left:385.866667pt;}
.xa_c00475{left:387.066667pt;}
.x78_c00475{left:388.000000pt;}
.x61_c00475{left:391.600000pt;}
.x3d_c00475{left:394.266667pt;}
.x32_c00475{left:395.600000pt;}
.x1b_c00475{left:397.866667pt;}
.xa0_c00475{left:398.933333pt;}
.x90_c00475{left:400.000000pt;}
.x2_c00475{left:402.666667pt;}
.x69_c00475{left:404.533333pt;}
.xa3_c00475{left:405.733333pt;}
.xf_c00475{left:408.266667pt;}
.x74_c00475{left:409.333333pt;}
.x37_c00475{left:411.733333pt;}
.x4d_c00475{left:414.666667pt;}
.x17_c00475{left:416.000000pt;}
.x4a_c00475{left:417.200000pt;}
.x58_c00475{left:419.466667pt;}
.x26_c00475{left:421.600000pt;}
.x53_c00475{left:424.000000pt;}
.x3e_c00475{left:426.533333pt;}
.x46_c00475{left:429.066667pt;}
.x93_c00475{left:430.800000pt;}
.x62_c00475{left:432.266667pt;}
.xb_c00475{left:434.800000pt;}
.x54_c00475{left:436.133333pt;}
.x23_c00475{left:437.866667pt;}
.x7e_c00475{left:438.800000pt;}
.x91_c00475{left:440.266667pt;}
.x33_c00475{left:441.733333pt;}
.x38_c00475{left:445.333333pt;}
.x66_c00475{left:446.533333pt;}
.x4e_c00475{left:448.533333pt;}
.x6c_c00475{left:450.400000pt;}
.x70_c00475{left:451.333333pt;}
.x1c_c00475{left:453.600000pt;}
.x59_c00475{left:454.933333pt;}
.x10_c00475{left:456.933333pt;}
.x85_c00475{left:459.466667pt;}
.x39_c00475{left:462.000000pt;}
.x92_c00475{left:463.866667pt;}
.x95_c00475{left:468.000000pt;}
.x139_c00475{left:484.800000pt;}
.xec_c00475{left:489.866667pt;}
.x123_c00475{left:491.200000pt;}
.x12f_c00475{left:500.533333pt;}
.x146_c00475{left:502.800000pt;}
.x142_c00475{left:504.400000pt;}
.xa4_c00475{left:505.866667pt;}
.x14b_c00475{left:506.800000pt;}
.x104_c00475{left:516.000000pt;}
.x125_c00475{left:522.266667pt;}
.xfa_c00475{left:523.866667pt;}
.xd0_c00475{left:529.333333pt;}
.x124_c00475{left:530.266667pt;}
.x121_c00475{left:531.466667pt;}
.xfe_c00475{left:533.466667pt;}
.x10a_c00475{left:535.466667pt;}
.x113_c00475{left:537.066667pt;}
.xad_c00475{left:538.533333pt;}
.x134_c00475{left:539.466667pt;}
.xe6_c00475{left:540.933333pt;}
.x144_c00475{left:542.133333pt;}
.x14f_c00475{left:543.066667pt;}
.x13e_c00475{left:544.000000pt;}
.xd7_c00475{left:545.066667pt;}
.xed_c00475{left:548.133333pt;}
.x120_c00475{left:550.133333pt;}
.x10b_c00475{left:551.200000pt;}
.xd1_c00475{left:552.400000pt;}
.xc5_c00475{left:555.066667pt;}
.xf4_c00475{left:556.666667pt;}
.xa5_c00475{left:558.666667pt;}
.x10f_c00475{left:559.733333pt;}
.xcb_c00475{left:560.800000pt;}
.xf6_c00475{left:561.866667pt;}
.x114_c00475{left:564.266667pt;}
.x11c_c00475{left:565.466667pt;}
.xa6_c00475{left:566.933333pt;}
.x135_c00475{left:568.000000pt;}
.x13f_c00475{left:569.333333pt;}
.xff_c00475{left:572.133333pt;}
.xee_c00475{left:573.733333pt;}
.xc6_c00475{left:574.933333pt;}
.x130_c00475{left:576.666667pt;}
.x145_c00475{left:577.600000pt;}
.xfb_c00475{left:578.666667pt;}
.x110_c00475{left:579.600000pt;}
.x118_c00475{left:580.800000pt;}
.xb4_c00475{left:582.666667pt;}
.x105_c00475{left:586.000000pt;}
.x14c_c00475{left:587.066667pt;}
.xde_c00475{left:588.666667pt;}
.xbc_c00475{left:591.066667pt;}
.x126_c00475{left:592.400000pt;}
.xa7_c00475{left:594.133333pt;}
.xae_c00475{left:595.200000pt;}
.x131_c00475{left:596.133333pt;}
.xf7_c00475{left:597.066667pt;}
.x13b_c00475{left:598.266667pt;}
.x136_c00475{left:600.266667pt;}
.x116_c00475{left:601.600000pt;}
.xb5_c00475{left:602.533333pt;}
.xe7_c00475{left:604.266667pt;}
.x12d_c00475{left:605.200000pt;}
.x149_c00475{left:606.800000pt;}
.xd2_c00475{left:608.133333pt;}
.xcc_c00475{left:609.333333pt;}
.xbd_c00475{left:611.866667pt;}
.xef_c00475{left:613.466667pt;}
.xe3_c00475{left:614.933333pt;}
.x14d_c00475{left:616.133333pt;}
.x119_c00475{left:617.600000pt;}
.x11d_c00475{left:619.200000pt;}
.x127_c00475{left:620.533333pt;}
.xd3_c00475{left:622.266667pt;}
.xbe_c00475{left:623.733333pt;}
.xaf_c00475{left:624.666667pt;}
.x100_c00475{left:625.866667pt;}
.xa8_c00475{left:629.600000pt;}
.xb6_c00475{left:630.666667pt;}
.x111_c00475{left:634.666667pt;}
.xd8_c00475{left:636.533333pt;}
.xfc_c00475{left:638.800000pt;}
.xcd_c00475{left:640.666667pt;}
.x12a_c00475{left:641.866667pt;}
.x106_c00475{left:642.933333pt;}
.xd4_c00475{left:644.400000pt;}
.x132_c00475{left:646.666667pt;}
.xc7_c00475{left:648.533333pt;}
.x137_c00475{left:650.133333pt;}
.xb0_c00475{left:652.133333pt;}
.xa9_c00475{left:653.333333pt;}
.x10c_c00475{left:654.533333pt;}
.xb7_c00475{left:656.933333pt;}
.xbf_c00475{left:658.666667pt;}
.x14a_c00475{left:659.733333pt;}
.x11e_c00475{left:661.200000pt;}
.xdf_c00475{left:662.800000pt;}
.x150_c00475{left:664.400000pt;}
.xd5_c00475{left:665.466667pt;}
.xf0_c00475{left:667.200000pt;}
.x11a_c00475{left:668.133333pt;}
.xe4_c00475{left:669.600000pt;}
.xd9_c00475{left:671.066667pt;}
.xe8_c00475{left:673.333333pt;}
.xb1_c00475{left:674.266667pt;}
.xb8_c00475{left:676.133333pt;}
.x107_c00475{left:677.200000pt;}
.x138_c00475{left:678.933333pt;}
.xe0_c00475{left:680.133333pt;}
.x128_c00475{left:681.600000pt;}
.x13c_c00475{left:683.066667pt;}
.x140_c00475{left:684.266667pt;}
.xf1_c00475{left:687.333333pt;}
.xf8_c00475{left:689.866667pt;}
.x115_c00475{left:691.600000pt;}
.x108_c00475{left:692.933333pt;}
.xce_c00475{left:694.400000pt;}
.xc8_c00475{left:695.866667pt;}
.x12e_c00475{left:696.933333pt;}
.x147_c00475{left:700.000000pt;}
.xc0_c00475{left:701.866667pt;}
.x112_c00475{left:703.866667pt;}
.x10d_c00475{left:705.333333pt;}
.xe9_c00475{left:706.266667pt;}
.xda_c00475{left:708.133333pt;}
.x133_c00475{left:709.333333pt;}
.x13d_c00475{left:710.533333pt;}
.x101_c00475{left:711.866667pt;}
.xcf_c00475{left:713.333333pt;}
.x14e_c00475{left:714.266667pt;}
.x11f_c00475{left:715.866667pt;}
.xb9_c00475{left:717.066667pt;}
.xc9_c00475{left:718.000000pt;}
.xaa_c00475{left:718.933333pt;}
.xc1_c00475{left:720.133333pt;}
.x141_c00475{left:721.333333pt;}
.xf5_c00475{left:722.533333pt;}
.x148_c00475{left:724.000000pt;}
.x122_c00475{left:725.066667pt;}
.xdb_c00475{left:727.600000pt;}
.x10e_c00475{left:729.600000pt;}
.xf2_c00475{left:730.533333pt;}
.x129_c00475{left:732.533333pt;}
.x143_c00475{left:735.066667pt;}
.xba_c00475{left:736.933333pt;}
.xab_c00475{left:739.466667pt;}
.xd6_c00475{left:740.666667pt;}
.xb2_c00475{left:741.733333pt;}
.x102_c00475{left:743.600000pt;}
.xf9_c00475{left:744.666667pt;}
.xe1_c00475{left:745.733333pt;}
.xc2_c00475{left:747.600000pt;}
.xea_c00475{left:749.200000pt;}
.xf3_c00475{left:750.400000pt;}
.x109_c00475{left:751.866667pt;}
.x12b_c00475{left:753.866667pt;}
.xb3_c00475{left:756.133333pt;}
.xc3_c00475{left:758.800000pt;}
.x13a_c00475{left:761.066667pt;}
.xdc_c00475{left:762.533333pt;}
.x117_c00475{left:764.133333pt;}
.xca_c00475{left:765.066667pt;}
.x12c_c00475{left:766.000000pt;}
.xe5_c00475{left:768.133333pt;}
.xeb_c00475{left:769.333333pt;}
.xac_c00475{left:771.200000pt;}
.xe2_c00475{left:772.933333pt;}
.x11b_c00475{left:775.333333pt;}
.xbb_c00475{left:776.666667pt;}
.xc4_c00475{left:778.000000pt;}
.xdd_c00475{left:779.466667pt;}
.xfd_c00475{left:780.533333pt;}
.x103_c00475{left:786.133333pt;}
.x151_c00475{left:799.066667pt;}
}





/* 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_c00476 {
    display:none;
  }
  .loading-indicator_c00476.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00476 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_c00476 { 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_c00476" -> "#page-container .classname_c00476")
 */
.pf_c00476 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00476 { /* 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_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00476 { /* 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_c00476 { /* 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_c00476 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00476 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00476 {overflow:visible;}
  }
}
.c_c00476 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00476 { /* 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_c00476:after { /* webkit #35443 */
  content: '';
}
.t_c00476:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00476 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 */
}
.__c00476 { /* 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_c00476 { /* info for Javascript */
  display:none;
}
.l_c00476 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00476 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00476 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00476: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_c00476 {
    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_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00476.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_c00476 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00476;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.000000;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;}
.m113_c00476{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00476{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m23_c00476{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m46_c00476{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m96_c00476{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m109_c00476{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00476{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mac_c00476{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00476{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00476{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00476{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00476{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m103_c00476{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m125_c00476{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00476{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00476{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00476{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m112_c00476{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00476{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m110_c00476{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00476{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00476{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00476{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md5_c00476{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m100_c00476{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m126_c00476{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.md0_c00476{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.md3_c00476{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mda_c00476{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mce_c00476{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m91_c00476{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00476{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00476{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m84_c00476{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00476{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m72_c00476{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.me4_c00476{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m135_c00476{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me6_c00476{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m11_c00476{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00476{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00476{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00476{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00476{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m16_c00476{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00476{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m108_c00476{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00476{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m28_c00476{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00476{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00476{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m77_c00476{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m73_c00476{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00476{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m65_c00476{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m94_c00476{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m44_c00476{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m105_c00476{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9_c00476{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00476{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.md_c00476{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00476{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m74_c00476{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m81_c00476{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m70_c00476{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00476{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00476{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00476{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00476{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m15_c00476{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m107_c00476{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m32_c00476{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2_c00476{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m6_c00476{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m76_c00476{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00476{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me5_c00476{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00476{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00476{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00476{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m88_c00476{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m14_c00476{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m51_c00476{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.meb_c00476{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00476{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00476{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00476{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00476{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m64_c00476{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m75_c00476{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mde_c00476{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m31_c00476{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00476{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mad_c00476{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00476{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md2_c00476{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00476{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m123_c00476{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m56_c00476{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m45_c00476{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00476{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf_c00476{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mae_c00476{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00476{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m66_c00476{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00476{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00476{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m67_c00476{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m93_c00476{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m101_c00476{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m10_c00476{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m131_c00476{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00476{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m102_c00476{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m83_c00476{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m49_c00476{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m36_c00476{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m68_c00476{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00476{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m80_c00476{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m30_c00476{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m136_c00476{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m25_c00476{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m52_c00476{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m78_c00476{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m21_c00476{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mff_c00476{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m133_c00476{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00476{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00476{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m86_c00476{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00476{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3_c00476{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00476{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m41_c00476{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m55_c00476{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00476{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m130_c00476{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00476{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md7_c00476{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.maf_c00476{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00476{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m117_c00476{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m20_c00476{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00476{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m82_c00476{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m85_c00476{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md9_c00476{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me7_c00476{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00476{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb_c00476{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00476{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00476{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m24_c00476{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00476{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m132_c00476{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m69_c00476{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m59_c00476{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m98_c00476{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00476{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m27_c00476{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m114_c00476{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m120_c00476{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m17_c00476{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00476{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m29_c00476{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00476{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00476{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m53_c00476{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00476{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m7_c00476{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m138_c00476{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m26_c00476{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mec_c00476{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m12_c00476{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00476{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00476{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00476{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m137_c00476{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00476{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m48_c00476{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00476{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00476{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m97_c00476{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m63_c00476{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mef_c00476{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.md4_c00476{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m95_c00476{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00476{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5_c00476{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m34_c00476{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m90_c00476{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m35_c00476{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m116_c00476{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00476{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00476{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me3_c00476{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00476{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00476{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00476{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00476{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.me_c00476{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00476{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m33_c00476{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00476{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m43_c00476{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00476{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m92_c00476{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m57_c00476{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00476{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m54_c00476{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4_c00476{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00476{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m99_c00476{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m42_c00476{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m37_c00476{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m40_c00476{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m13_c00476{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00476{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m50_c00476{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00476{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m62_c00476{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m13b_c00476{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00476{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00476{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m8_c00476{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00476{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00476{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00476{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00476{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m121_c00476{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m118_c00476{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00476{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00476{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m119_c00476{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m13a_c00476{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00476{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m18_c00476{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m22_c00476{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00476{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00476{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mea_c00476{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m139_c00476{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00476{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00476{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m61_c00476{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00476{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00476{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m58_c00476{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.med_c00476{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc_c00476{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00476{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1_c00476{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m87_c00476{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m13d_c00476{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);}
.me8_c00476{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00476{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00476{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma_c00476{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m71_c00476{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00476{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m60_c00476{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m38_c00476{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m39_c00476{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00476{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00476{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00476{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00476{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m19_c00476{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m134_c00476{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00476{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00476{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00476{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00476{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00476{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00476{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00476{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m47_c00476{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00476{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00476{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00476{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00476{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m122_c00476{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00476{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00476{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mee_c00476{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00476{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m89_c00476{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me1_c00476{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.me2_c00476{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.maa_c00476{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m79_c00476{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00476{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00476{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00476{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00476{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mab_c00476{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mca_c00476{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00476{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m127_c00476{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00476{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m128_c00476{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m106_c00476{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m124_c00476{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.me9_c00476{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md6_c00476{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m129_c00476{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.md8_c00476{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.m115_c00476{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00476{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00476{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.md1_c00476{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m0_c00476{transform:matrix(0.475750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475750,0.000000,0.000000,0.250000,0,0);}
.m111_c00476{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00476{transform:matrix(0.498250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00476{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m104_c00476{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.mba_c00476{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.me0_c00476{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls4_c00476{letter-spacing:0.000000px;}
.ls1_c00476{letter-spacing:52.142857px;}
.ls0_c00476{letter-spacing:55.714286px;}
.ls3_c00476{letter-spacing:59.285714px;}
.ls2_c00476{letter-spacing:70.000000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{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__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00476{word-spacing:-100.000000px;}
.ws17_c00476{word-spacing:-89.285714px;}
.ws7_c00476{word-spacing:-85.714286px;}
.wsa_c00476{word-spacing:-82.142857px;}
.ws2_c00476{word-spacing:-8.333333px;}
.ws1_c00476{word-spacing:-2.200573px;}
.ws0_c00476{word-spacing:-2.187500px;}
.ws13_c00476{word-spacing:0.000000px;}
.ws18_c00476{word-spacing:10.000000px;}
.ws6_c00476{word-spacing:15.000000px;}
.ws11_c00476{word-spacing:18.000000px;}
.ws15_c00476{word-spacing:18.590164px;}
.ws5_c00476{word-spacing:22.142857px;}
.ws14_c00476{word-spacing:24.491803px;}
.wsc_c00476{word-spacing:25.714286px;}
.wsf_c00476{word-spacing:29.285714px;}
.wse_c00476{word-spacing:35.833333px;}
.ws16_c00476{word-spacing:39.343511px;}
.ws9_c00476{word-spacing:40.000000px;}
.ws12_c00476{word-spacing:42.026258px;}
.ws3_c00476{word-spacing:43.923664px;}
.ws4_c00476{word-spacing:50.416667px;}
.wsd_c00476{word-spacing:60.000000px;}
.ws8_c00476{word-spacing:65.000000px;}
.ws10_c00476{word-spacing:67.631579px;}
._6_c00476{margin-left:-70.000000px;}
._b_c00476{margin-left:-59.285714px;}
._3_c00476{margin-left:-55.714286px;}
._5_c00476{margin-left:-52.142857px;}
._a_c00476{margin-left:-3.571429px;}
._2_c00476{width:3.571429px;}
._1_c00476{width:41.875000px;}
._7_c00476{width:52.142857px;}
._0_c00476{width:59.285714px;}
._9_c00476{width:62.144028px;}
._8_c00476{width:64.642857px;}
._4_c00476{width:74.166667px;}
.fc0_c00476{color:transparent;}
.fs7_c00476{font-size:30.000000px;}
.fs6_c00476{font-size:42.000000px;}
.fs5_c00476{font-size:48.000000px;}
.fs4_c00476{font-size:54.000000px;}
.fs2_c00476{font-size:60.000000px;}
.fs1_c00476{font-size:66.000000px;}
.fs3_c00476{font-size:72.000000px;}
.fs0_c00476{font-size:78.000000px;}
.y0_c00476{bottom:0.000000px;}
.y70_c00476{bottom:183.600000px;}
.y33_c00476{bottom:201.600000px;}
.y6f_c00476{bottom:202.350000px;}
.y6e_c00476{bottom:220.200000px;}
.y32_c00476{bottom:222.450000px;}
.y6d_c00476{bottom:238.200000px;}
.y31_c00476{bottom:241.800000px;}
.y6c_c00476{bottom:255.900000px;}
.y30_c00476{bottom:259.800000px;}
.y6b_c00476{bottom:273.900000px;}
.y2f_c00476{bottom:277.800000px;}
.y6a_c00476{bottom:291.600000px;}
.y2e_c00476{bottom:295.050000px;}
.y69_c00476{bottom:309.300000px;}
.y2d_c00476{bottom:312.750000px;}
.y68_c00476{bottom:327.300000px;}
.y2c_c00476{bottom:330.450000px;}
.y67_c00476{bottom:344.550000px;}
.y2b_c00476{bottom:348.150000px;}
.y66_c00476{bottom:362.100000px;}
.y2a_c00476{bottom:366.150000px;}
.y65_c00476{bottom:382.200000px;}
.y29_c00476{bottom:388.050000px;}
.y64_c00476{bottom:396.600000px;}
.y63_c00476{bottom:410.700000px;}
.y28_c00476{bottom:422.850000px;}
.y62_c00476{bottom:425.100000px;}
.y61_c00476{bottom:439.500000px;}
.y27_c00476{bottom:440.550000px;}
.y60_c00476{bottom:453.600000px;}
.y26_c00476{bottom:458.250000px;}
.y5f_c00476{bottom:468.000000px;}
.y5e_c00476{bottom:475.200000px;}
.y25_c00476{bottom:475.950000px;}
.y5d_c00476{bottom:482.700000px;}
.y24_c00476{bottom:493.200000px;}
.y5c_c00476{bottom:496.500000px;}
.y23_c00476{bottom:510.450000px;}
.y5b_c00476{bottom:511.200000px;}
.y5a_c00476{bottom:525.300000px;}
.y22_c00476{bottom:528.450000px;}
.y59_c00476{bottom:540.000000px;}
.y21_c00476{bottom:546.150000px;}
.y58_c00476{bottom:554.100000px;}
.y57_c00476{bottom:568.500000px;}
.y20_c00476{bottom:581.700000px;}
.y56_c00476{bottom:582.450000px;}
.y55_c00476{bottom:597.150000px;}
.y1f_c00476{bottom:599.250000px;}
.y54_c00476{bottom:611.550000px;}
.y1e_c00476{bottom:616.950000px;}
.y53_c00476{bottom:625.650000px;}
.y1d_c00476{bottom:634.650000px;}
.y52_c00476{bottom:640.050000px;}
.y1c_c00476{bottom:652.350000px;}
.y51_c00476{bottom:654.150000px;}
.y50_c00476{bottom:668.700000px;}
.y1b_c00476{bottom:674.250000px;}
.y4f_c00476{bottom:682.800000px;}
.y1a_c00476{bottom:691.500000px;}
.y4e_c00476{bottom:696.900000px;}
.y19_c00476{bottom:709.500000px;}
.y4d_c00476{bottom:711.000000px;}
.y4c_c00476{bottom:725.700000px;}
.y18_c00476{bottom:727.200000px;}
.y4b_c00476{bottom:739.800000px;}
.y17_c00476{bottom:744.900000px;}
.y4a_c00476{bottom:754.200000px;}
.y16_c00476{bottom:762.600000px;}
.y49_c00476{bottom:768.600000px;}
.y15_c00476{bottom:780.600000px;}
.y48_c00476{bottom:782.700000px;}
.y47_c00476{bottom:797.400000px;}
.y14_c00476{bottom:798.300000px;}
.y46_c00476{bottom:811.500000px;}
.y13_c00476{bottom:816.000000px;}
.y45_c00476{bottom:826.500000px;}
.y12_c00476{bottom:834.750000px;}
.y44_c00476{bottom:846.300000px;}
.y11_c00476{bottom:852.450000px;}
.y43_c00476{bottom:863.700000px;}
.y10_c00476{bottom:868.650000px;}
.y42_c00476{bottom:882.750000px;}
.yf_c00476{bottom:886.650000px;}
.y41_c00476{bottom:899.250000px;}
.ye_c00476{bottom:908.400000px;}
.y40_c00476{bottom:917.250000px;}
.yd_c00476{bottom:926.100000px;}
.y3f_c00476{bottom:930.900000px;}
.y3e_c00476{bottom:934.500000px;}
.yc_c00476{bottom:948.450000px;}
.y3d_c00476{bottom:952.200000px;}
.yb_c00476{bottom:961.350000px;}
.y3c_c00476{bottom:973.950000px;}
.ya_c00476{bottom:979.050000px;}
.y3b_c00476{bottom:991.950000px;}
.y9_c00476{bottom:996.750000px;}
.y3a_c00476{bottom:1009.650000px;}
.y8_c00476{bottom:1014.450000px;}
.y39_c00476{bottom:1027.350000px;}
.y7_c00476{bottom:1032.450000px;}
.y38_c00476{bottom:1045.050000px;}
.y6_c00476{bottom:1050.150000px;}
.y37_c00476{bottom:1062.750000px;}
.y5_c00476{bottom:1067.850000px;}
.y36_c00476{bottom:1084.650000px;}
.y4_c00476{bottom:1085.100000px;}
.y35_c00476{bottom:1102.650000px;}
.y3_c00476{bottom:1105.200000px;}
.y34_c00476{bottom:1120.350000px;}
.y2_c00476{bottom:1120.650000px;}
.y1_c00476{bottom:1147.350000px;}
.h9_c00476{height:30.000000px;}
.h8_c00476{height:42.000000px;}
.h7_c00476{height:48.000000px;}
.h6_c00476{height:54.000000px;}
.h4_c00476{height:60.000000px;}
.h3_c00476{height:66.000000px;}
.h5_c00476{height:72.000000px;}
.h2_c00476{height:78.000000px;}
.h1_c00476{height:1272.000000px;}
.h0_c00476{height:1272.239960px;}
.w0_c00476{width:958.320007px;}
.w1_c00476{width:958.500000px;}
.x0_c00476{left:0.000000px;}
.x93_c00476{left:69.450000px;}
.x6e_c00476{left:72.750000px;}
.x48_c00476{left:75.600000px;}
.xa5_c00476{left:85.050000px;}
.x8e_c00476{left:86.100000px;}
.x87_c00476{left:88.650000px;}
.x79_c00476{left:90.000000px;}
.x61_c00476{left:91.350000px;}
.x56_c00476{left:92.550000px;}
.x34_c00476{left:93.750000px;}
.x19_c00476{left:95.250000px;}
.x3_c00476{left:96.450000px;}
.x7d_c00476{left:102.600000px;}
.x94_c00476{left:106.500000px;}
.x7c_c00476{left:111.300000px;}
.x91_c00476{left:114.450000px;}
.x88_c00476{left:116.700000px;}
.xa6_c00476{left:118.200000px;}
.xf_c00476{left:120.450000px;}
.x9a_c00476{left:121.950000px;}
.xa8_c00476{left:123.450000px;}
.x8_c00476{left:125.550000px;}
.x53_c00476{left:127.800000px;}
.x9d_c00476{left:130.200000px;}
.x22_c00476{left:131.250000px;}
.x75_c00476{left:132.450000px;}
.x49_c00476{left:135.000000px;}
.xa0_c00476{left:136.350000px;}
.x84_c00476{left:138.750000px;}
.x23_c00476{left:139.950000px;}
.x4c_c00476{left:141.150000px;}
.x6f_c00476{left:142.200000px;}
.x39_c00476{left:143.250000px;}
.x10_c00476{left:144.600000px;}
.x2d_c00476{left:146.700000px;}
.x41_c00476{left:148.650000px;}
.x62_c00476{left:150.750000px;}
.x65_c00476{left:151.800000px;}
.x3d_c00476{left:154.950000px;}
.x9_c00476{left:157.200000px;}
.x35_c00476{left:158.850000px;}
.x11_c00476{left:160.050000px;}
.x7a_c00476{left:162.750000px;}
.x4d_c00476{left:164.550000px;}
.x2a_c00476{left:167.250000px;}
.x98_c00476{left:168.750000px;}
.xa_c00476{left:170.850000px;}
.x85_c00476{left:172.950000px;}
.x1a_c00476{left:175.200000px;}
.x99_c00476{left:177.450000px;}
.x4_c00476{left:180.000000px;}
.x92_c00476{left:181.050000px;}
.x24_c00476{left:184.200000px;}
.x69_c00476{left:186.600000px;}
.x51_c00476{left:188.250000px;}
.xa4_c00476{left:189.900000px;}
.x2b_c00476{left:191.700000px;}
.x2e_c00476{left:193.200000px;}
.x57_c00476{left:194.850000px;}
.x1b_c00476{left:198.300000px;}
.x9e_c00476{left:202.500000px;}
.xb_c00476{left:203.550000px;}
.x36_c00476{left:206.400000px;}
.x12_c00476{left:207.600000px;}
.x9b_c00476{left:208.650000px;}
.x72_c00476{left:211.350000px;}
.x4e_c00476{left:213.450000px;}
.x67_c00476{left:214.500000px;}
.x42_c00476{left:217.500000px;}
.xa1_c00476{left:219.600000px;}
.x63_c00476{left:221.550000px;}
.x5b_c00476{left:222.900000px;}
.x76_c00476{left:224.550000px;}
.xa9_c00476{left:226.350000px;}
.x13_c00476{left:227.700000px;}
.x5_c00476{left:229.650000px;}
.x89_c00476{left:234.750000px;}
.x6a_c00476{left:235.950000px;}
.x25_c00476{left:238.950000px;}
.x82_c00476{left:240.000000px;}
.x3a_c00476{left:241.200000px;}
.x68_c00476{left:242.250000px;}
.x5c_c00476{left:243.450000px;}
.x7b_c00476{left:245.700000px;}
.x70_c00476{left:250.350000px;}
.xc_c00476{left:251.400000px;}
.x95_c00476{left:253.050000px;}
.x47_c00476{left:255.000000px;}
.x58_c00476{left:256.800000px;}
.x7e_c00476{left:258.150000px;}
.x4f_c00476{left:259.200000px;}
.x77_c00476{left:261.300000px;}
.x2f_c00476{left:262.350000px;}
.x14_c00476{left:263.400000px;}
.x26_c00476{left:264.450000px;}
.x7f_c00476{left:266.400000px;}
.x1f_c00476{left:267.750000px;}
.x1c_c00476{left:268.800000px;}
.x64_c00476{left:269.850000px;}
.x71_c00476{left:271.650000px;}
.x52_c00476{left:273.900000px;}
.x86_c00476{left:275.100000px;}
.xd_c00476{left:278.100000px;}
.x5f_c00476{left:279.600000px;}
.xa2_c00476{left:281.400000px;}
.x15_c00476{left:284.250000px;}
.x50_c00476{left:285.450000px;}
.x30_c00476{left:286.800000px;}
.x54_c00476{left:288.300000px;}
.x73_c00476{left:289.800000px;}
.x66_c00476{left:291.900000px;}
.x20_c00476{left:292.950000px;}
.x43_c00476{left:294.600000px;}
.x8f_c00476{left:296.700000px;}
.x59_c00476{left:297.900000px;}
.x2c_c00476{left:300.750000px;}
.x5d_c00476{left:302.550000px;}
.x1d_c00476{left:303.750000px;}
.x37_c00476{left:304.950000px;}
.x16_c00476{left:306.900000px;}
.x55_c00476{left:308.100000px;}
.x6b_c00476{left:309.150000px;}
.x4a_c00476{left:313.950000px;}
.x80_c00476{left:315.300000px;}
.x3b_c00476{left:317.250000px;}
.xe_c00476{left:318.750000px;}
.x3e_c00476{left:321.150000px;}
.x6_c00476{left:322.500000px;}
.x81_c00476{left:325.350000px;}
.x27_c00476{left:327.750000px;}
.x1_c00476{left:330.450000px;}
.x3f_c00476{left:332.250000px;}
.x31_c00476{left:333.900000px;}
.x1e_c00476{left:335.100000px;}
.x96_c00476{left:336.150000px;}
.x3c_c00476{left:337.350000px;}
.x17_c00476{left:339.300000px;}
.x44_c00476{left:342.150000px;}
.x8c_c00476{left:344.250000px;}
.x4b_c00476{left:345.600000px;}
.x90_c00476{left:347.400000px;}
.x28_c00476{left:349.050000px;}
.x40_c00476{left:351.750000px;}
.x60_c00476{left:352.950000px;}
.x32_c00476{left:354.000000px;}
.x6c_c00476{left:355.200000px;}
.x5e_c00476{left:357.300000px;}
.x5a_c00476{left:358.650000px;}
.x9c_c00476{left:359.850000px;}
.x38_c00476{left:361.500000px;}
.x18_c00476{left:362.700000px;}
.x8a_c00476{left:364.350000px;}
.x8d_c00476{left:366.600000px;}
.x6d_c00476{left:367.800000px;}
.xa3_c00476{left:370.350000px;}
.x21_c00476{left:371.850000px;}
.x8b_c00476{left:375.450000px;}
.xa7_c00476{left:378.450000px;}
.x45_c00476{left:379.650000px;}
.x78_c00476{left:381.600000px;}
.x9f_c00476{left:383.400000px;}
.x29_c00476{left:385.050000px;}
.x83_c00476{left:386.100000px;}
.x74_c00476{left:388.050000px;}
.x7_c00476{left:390.150000px;}
.x97_c00476{left:392.250000px;}
.x33_c00476{left:396.150000px;}
.x46_c00476{left:403.350000px;}
.x154_c00476{left:423.000000px;}
.x105_c00476{left:428.100000px;}
.xde_c00476{left:430.500000px;}
.x13d_c00476{left:437.700000px;}
.x135_c00476{left:439.200000px;}
.x129_c00476{left:440.700000px;}
.x10b_c00476{left:441.750000px;}
.xf2_c00476{left:444.600000px;}
.xeb_c00476{left:446.400000px;}
.xe3_c00476{left:447.450000px;}
.xaa_c00476{left:448.950000px;}
.xb4_c00476{left:450.000000px;}
.x145_c00476{left:451.800000px;}
.x136_c00476{left:453.150000px;}
.x12a_c00476{left:454.500000px;}
.x115_c00476{left:456.000000px;}
.xe4_c00476{left:460.800000px;}
.x13b_c00476{left:462.600000px;}
.xbb_c00476{left:467.250000px;}
.xb9_c00476{left:469.800000px;}
.xcd_c00476{left:471.750000px;}
.x131_c00476{left:473.850000px;}
.xdf_c00476{left:475.800000px;}
.x11c_c00476{left:477.150000px;}
.xd3_c00476{left:478.200000px;}
.xf3_c00476{left:479.550000px;}
.x100_c00476{left:480.600000px;}
.x12b_c00476{left:483.600000px;}
.x10e_c00476{left:484.950000px;}
.x146_c00476{left:487.050000px;}
.x155_c00476{left:490.650000px;}
.x106_c00476{left:491.850000px;}
.xab_c00476{left:493.200000px;}
.x12d_c00476{left:494.550000px;}
.xd4_c00476{left:496.500000px;}
.x123_c00476{left:497.700000px;}
.x101_c00476{left:499.650000px;}
.x14b_c00476{left:500.700000px;}
.x11d_c00476{left:502.050000px;}
.xdd_c00476{left:504.000000px;}
.xb5_c00476{left:506.550000px;}
.xfb_c00476{left:507.600000px;}
.x116_c00476{left:509.250000px;}
.x15a_c00476{left:511.200000px;}
.x128_c00476{left:512.550000px;}
.x14d_c00476{left:515.700000px;}
.x13a_c00476{left:516.900000px;}
.xe5_c00476{left:519.600000px;}
.xbc_c00476{left:524.100000px;}
.x10c_c00476{left:525.300000px;}
.x15b_c00476{left:526.650000px;}
.xce_c00476{left:527.850000px;}
.xac_c00476{left:531.000000px;}
.x10f_c00476{left:532.200000px;}
.x132_c00476{left:533.700000px;}
.xec_c00476{left:535.650000px;}
.x14c_c00476{left:537.000000px;}
.xd9_c00476{left:539.550000px;}
.xc6_c00476{left:541.500000px;}
.xf4_c00476{left:543.750000px;}
.xd5_c00476{left:544.800000px;}
.x11e_c00476{left:547.050000px;}
.x14e_c00476{left:548.400000px;}
.x110_c00476{left:549.900000px;}
.x107_c00476{left:551.550000px;}
.xf5_c00476{left:553.050000px;}
.xed_c00476{left:555.150000px;}
.xb6_c00476{left:556.950000px;}
.x157_c00476{left:559.350000px;}
.x124_c00476{left:560.400000px;}
.x11f_c00476{left:562.200000px;}
.xbd_c00476{left:564.450000px;}
.x102_c00476{left:565.500000px;}
.x13e_c00476{left:566.550000px;}
.xba_c00476{left:567.750000px;}
.x120_c00476{left:569.700000px;}
.x153_c00476{left:571.200000px;}
.x141_c00476{left:572.400000px;}
.x119_c00476{left:573.450000px;}
.x12c_c00476{left:575.100000px;}
.x134_c00476{left:576.150000px;}
.xad_c00476{left:577.500000px;}
.xcf_c00476{left:579.300000px;}
.xe9_c00476{left:582.450000px;}
.xee_c00476{left:583.650000px;}
.x117_c00476{left:586.050000px;}
.x147_c00476{left:587.250000px;}
.xe0_c00476{left:588.900000px;}
.xc7_c00476{left:590.850000px;}
.xe6_c00476{left:591.900000px;}
.x127_c00476{left:593.400000px;}
.x14f_c00476{left:594.450000px;}
.x108_c00476{left:595.800000px;}
.xf6_c00476{left:597.300000px;}
.x121_c00476{left:598.500000px;}
.xc8_c00476{left:599.550000px;}
.xbe_c00476{left:601.200000px;}
.x13f_c00476{left:602.550000px;}
.xfe_c00476{left:604.500000px;}
.x122_c00476{left:605.700000px;}
.x148_c00476{left:607.050000px;}
.x142_c00476{left:608.400000px;}
.x140_c00476{left:610.050000px;}
.x137_c00476{left:611.400000px;}
.xfc_c00476{left:612.600000px;}
.x125_c00476{left:614.700000px;}
.x150_c00476{left:616.050000px;}
.xae_c00476{left:617.400000px;}
.xda_c00476{left:619.800000px;}
.x133_c00476{left:620.850000px;}
.x143_c00476{left:622.800000px;}
.x103_c00476{left:624.600000px;}
.xd0_c00476{left:626.850000px;}
.xbf_c00476{left:628.200000px;}
.xea_c00476{left:630.750000px;}
.x10d_c00476{left:632.850000px;}
.x118_c00476{left:634.650000px;}
.x158_c00476{left:635.700000px;}
.xf7_c00476{left:637.650000px;}
.x12e_c00476{left:640.950000px;}
.x11a_c00476{left:642.150000px;}
.x111_c00476{left:644.250000px;}
.xe7_c00476{left:646.200000px;}
.xc9_c00476{left:648.450000px;}
.xaf_c00476{left:651.300000px;}
.x144_c00476{left:652.650000px;}
.xe1_c00476{left:654.450000px;}
.xf8_c00476{left:656.400000px;}
.x13c_c00476{left:658.050000px;}
.xd6_c00476{left:659.400000px;}
.xdb_c00476{left:660.450000px;}
.x12f_c00476{left:661.800000px;}
.xff_c00476{left:663.300000px;}
.x151_c00476{left:666.150000px;}
.x149_c00476{left:667.200000px;}
.x138_c00476{left:668.250000px;}
.x130_c00476{left:669.300000px;}
.x11b_c00476{left:670.650000px;}
.xc0_c00476{left:672.600000px;}
.x15c_c00476{left:676.800000px;}
.x156_c00476{left:678.900000px;}
.xb7_c00476{left:680.850000px;}
.x109_c00476{left:682.650000px;}
.xef_c00476{left:685.950000px;}
.xca_c00476{left:688.050000px;}
.xc1_c00476{left:689.850000px;}
.xb0_c00476{left:690.900000px;}
.x112_c00476{left:692.550000px;}
.x104_c00476{left:694.050000px;}
.xd7_c00476{left:696.450000px;}
.xf9_c00476{left:697.800000px;}
.xc2_c00476{left:701.400000px;}
.xf0_c00476{left:703.200000px;}
.xe8_c00476{left:705.600000px;}
.x159_c00476{left:707.250000px;}
.xfd_c00476{left:709.200000px;}
.xfa_c00476{left:710.700000px;}
.xd1_c00476{left:712.200000px;}
.x14a_c00476{left:714.750000px;}
.xb8_c00476{left:715.800000px;}
.xc3_c00476{left:717.900000px;}
.xdc_c00476{left:719.550000px;}
.x113_c00476{left:721.350000px;}
.xcb_c00476{left:724.050000px;}
.xb1_c00476{left:726.150000px;}
.xd8_c00476{left:728.550000px;}
.x126_c00476{left:732.600000px;}
.xf1_c00476{left:734.850000px;}
.xb2_c00476{left:736.200000px;}
.x2_c00476{left:740.850000px;}
.x152_c00476{left:742.500000px;}
.xc4_c00476{left:744.150000px;}
.x139_c00476{left:745.500000px;}
.x10a_c00476{left:747.150000px;}
.x114_c00476{left:749.100000px;}
.xb3_c00476{left:750.300000px;}
.xe2_c00476{left:751.350000px;}
.xcc_c00476{left:753.900000px;}
.xc5_c00476{left:754.950000px;}
.xd2_c00476{left:761.100000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls4_c00476{letter-spacing:0.000000pt;}
.ls1_c00476{letter-spacing:46.349206pt;}
.ls0_c00476{letter-spacing:49.523810pt;}
.ls3_c00476{letter-spacing:52.698413pt;}
.ls2_c00476{letter-spacing:62.222222pt;}
.wsb_c00476{word-spacing:-88.888889pt;}
.ws17_c00476{word-spacing:-79.365079pt;}
.ws7_c00476{word-spacing:-76.190476pt;}
.wsa_c00476{word-spacing:-73.015873pt;}
.ws2_c00476{word-spacing:-7.407407pt;}
.ws1_c00476{word-spacing:-1.956065pt;}
.ws0_c00476{word-spacing:-1.944444pt;}
.ws13_c00476{word-spacing:0.000000pt;}
.ws18_c00476{word-spacing:8.888889pt;}
.ws6_c00476{word-spacing:13.333333pt;}
.ws11_c00476{word-spacing:16.000000pt;}
.ws15_c00476{word-spacing:16.524590pt;}
.ws5_c00476{word-spacing:19.682540pt;}
.ws14_c00476{word-spacing:21.770492pt;}
.wsc_c00476{word-spacing:22.857143pt;}
.wsf_c00476{word-spacing:26.031746pt;}
.wse_c00476{word-spacing:31.851852pt;}
.ws16_c00476{word-spacing:34.972010pt;}
.ws9_c00476{word-spacing:35.555556pt;}
.ws12_c00476{word-spacing:37.356674pt;}
.ws3_c00476{word-spacing:39.043257pt;}
.ws4_c00476{word-spacing:44.814815pt;}
.wsd_c00476{word-spacing:53.333333pt;}
.ws8_c00476{word-spacing:57.777778pt;}
.ws10_c00476{word-spacing:60.116959pt;}
._6_c00476{margin-left:-62.222222pt;}
._b_c00476{margin-left:-52.698413pt;}
._3_c00476{margin-left:-49.523810pt;}
._5_c00476{margin-left:-46.349206pt;}
._a_c00476{margin-left:-3.174603pt;}
._2_c00476{width:3.174603pt;}
._1_c00476{width:37.222222pt;}
._7_c00476{width:46.349206pt;}
._0_c00476{width:52.698413pt;}
._9_c00476{width:55.239136pt;}
._8_c00476{width:57.460317pt;}
._4_c00476{width:65.925926pt;}
.fs7_c00476{font-size:26.666667pt;}
.fs6_c00476{font-size:37.333333pt;}
.fs5_c00476{font-size:42.666667pt;}
.fs4_c00476{font-size:48.000000pt;}
.fs2_c00476{font-size:53.333333pt;}
.fs1_c00476{font-size:58.666667pt;}
.fs3_c00476{font-size:64.000000pt;}
.fs0_c00476{font-size:69.333333pt;}
.y0_c00476{bottom:0.000000pt;}
.y70_c00476{bottom:163.200000pt;}
.y33_c00476{bottom:179.200000pt;}
.y6f_c00476{bottom:179.866667pt;}
.y6e_c00476{bottom:195.733333pt;}
.y32_c00476{bottom:197.733333pt;}
.y6d_c00476{bottom:211.733333pt;}
.y31_c00476{bottom:214.933333pt;}
.y6c_c00476{bottom:227.466667pt;}
.y30_c00476{bottom:230.933333pt;}
.y6b_c00476{bottom:243.466667pt;}
.y2f_c00476{bottom:246.933333pt;}
.y6a_c00476{bottom:259.200000pt;}
.y2e_c00476{bottom:262.266667pt;}
.y69_c00476{bottom:274.933333pt;}
.y2d_c00476{bottom:278.000000pt;}
.y68_c00476{bottom:290.933333pt;}
.y2c_c00476{bottom:293.733333pt;}
.y67_c00476{bottom:306.266667pt;}
.y2b_c00476{bottom:309.466667pt;}
.y66_c00476{bottom:321.866667pt;}
.y2a_c00476{bottom:325.466667pt;}
.y65_c00476{bottom:339.733333pt;}
.y29_c00476{bottom:344.933333pt;}
.y64_c00476{bottom:352.533333pt;}
.y63_c00476{bottom:365.066667pt;}
.y28_c00476{bottom:375.866667pt;}
.y62_c00476{bottom:377.866667pt;}
.y61_c00476{bottom:390.666667pt;}
.y27_c00476{bottom:391.600000pt;}
.y60_c00476{bottom:403.200000pt;}
.y26_c00476{bottom:407.333333pt;}
.y5f_c00476{bottom:416.000000pt;}
.y5e_c00476{bottom:422.400000pt;}
.y25_c00476{bottom:423.066667pt;}
.y5d_c00476{bottom:429.066667pt;}
.y24_c00476{bottom:438.400000pt;}
.y5c_c00476{bottom:441.333333pt;}
.y23_c00476{bottom:453.733333pt;}
.y5b_c00476{bottom:454.400000pt;}
.y5a_c00476{bottom:466.933333pt;}
.y22_c00476{bottom:469.733333pt;}
.y59_c00476{bottom:480.000000pt;}
.y21_c00476{bottom:485.466667pt;}
.y58_c00476{bottom:492.533333pt;}
.y57_c00476{bottom:505.333333pt;}
.y20_c00476{bottom:517.066667pt;}
.y56_c00476{bottom:517.733333pt;}
.y55_c00476{bottom:530.800000pt;}
.y1f_c00476{bottom:532.666667pt;}
.y54_c00476{bottom:543.600000pt;}
.y1e_c00476{bottom:548.400000pt;}
.y53_c00476{bottom:556.133333pt;}
.y1d_c00476{bottom:564.133333pt;}
.y52_c00476{bottom:568.933333pt;}
.y1c_c00476{bottom:579.866667pt;}
.y51_c00476{bottom:581.466667pt;}
.y50_c00476{bottom:594.400000pt;}
.y1b_c00476{bottom:599.333333pt;}
.y4f_c00476{bottom:606.933333pt;}
.y1a_c00476{bottom:614.666667pt;}
.y4e_c00476{bottom:619.466667pt;}
.y19_c00476{bottom:630.666667pt;}
.y4d_c00476{bottom:632.000000pt;}
.y4c_c00476{bottom:645.066667pt;}
.y18_c00476{bottom:646.400000pt;}
.y4b_c00476{bottom:657.600000pt;}
.y17_c00476{bottom:662.133333pt;}
.y4a_c00476{bottom:670.400000pt;}
.y16_c00476{bottom:677.866667pt;}
.y49_c00476{bottom:683.200000pt;}
.y15_c00476{bottom:693.866667pt;}
.y48_c00476{bottom:695.733333pt;}
.y47_c00476{bottom:708.800000pt;}
.y14_c00476{bottom:709.600000pt;}
.y46_c00476{bottom:721.333333pt;}
.y13_c00476{bottom:725.333333pt;}
.y45_c00476{bottom:734.666667pt;}
.y12_c00476{bottom:742.000000pt;}
.y44_c00476{bottom:752.266667pt;}
.y11_c00476{bottom:757.733333pt;}
.y43_c00476{bottom:767.733333pt;}
.y10_c00476{bottom:772.133333pt;}
.y42_c00476{bottom:784.666667pt;}
.yf_c00476{bottom:788.133333pt;}
.y41_c00476{bottom:799.333333pt;}
.ye_c00476{bottom:807.466667pt;}
.y40_c00476{bottom:815.333333pt;}
.yd_c00476{bottom:823.200000pt;}
.y3f_c00476{bottom:827.466667pt;}
.y3e_c00476{bottom:830.666667pt;}
.yc_c00476{bottom:843.066667pt;}
.y3d_c00476{bottom:846.400000pt;}
.yb_c00476{bottom:854.533333pt;}
.y3c_c00476{bottom:865.733333pt;}
.ya_c00476{bottom:870.266667pt;}
.y3b_c00476{bottom:881.733333pt;}
.y9_c00476{bottom:886.000000pt;}
.y3a_c00476{bottom:897.466667pt;}
.y8_c00476{bottom:901.733333pt;}
.y39_c00476{bottom:913.200000pt;}
.y7_c00476{bottom:917.733333pt;}
.y38_c00476{bottom:928.933333pt;}
.y6_c00476{bottom:933.466667pt;}
.y37_c00476{bottom:944.666667pt;}
.y5_c00476{bottom:949.200000pt;}
.y36_c00476{bottom:964.133333pt;}
.y4_c00476{bottom:964.533333pt;}
.y35_c00476{bottom:980.133333pt;}
.y3_c00476{bottom:982.400000pt;}
.y34_c00476{bottom:995.866667pt;}
.y2_c00476{bottom:996.133333pt;}
.y1_c00476{bottom:1019.866667pt;}
.h9_c00476{height:26.666667pt;}
.h8_c00476{height:37.333333pt;}
.h7_c00476{height:42.666667pt;}
.h6_c00476{height:48.000000pt;}
.h4_c00476{height:53.333333pt;}
.h3_c00476{height:58.666667pt;}
.h5_c00476{height:64.000000pt;}
.h2_c00476{height:69.333333pt;}
.h1_c00476{height:1130.666667pt;}
.h0_c00476{height:1130.879964pt;}
.w0_c00476{width:851.840007pt;}
.w1_c00476{width:852.000000pt;}
.x0_c00476{left:0.000000pt;}
.x93_c00476{left:61.733333pt;}
.x6e_c00476{left:64.666667pt;}
.x48_c00476{left:67.200000pt;}
.xa5_c00476{left:75.600000pt;}
.x8e_c00476{left:76.533333pt;}
.x87_c00476{left:78.800000pt;}
.x79_c00476{left:80.000000pt;}
.x61_c00476{left:81.200000pt;}
.x56_c00476{left:82.266667pt;}
.x34_c00476{left:83.333333pt;}
.x19_c00476{left:84.666667pt;}
.x3_c00476{left:85.733333pt;}
.x7d_c00476{left:91.200000pt;}
.x94_c00476{left:94.666667pt;}
.x7c_c00476{left:98.933333pt;}
.x91_c00476{left:101.733333pt;}
.x88_c00476{left:103.733333pt;}
.xa6_c00476{left:105.066667pt;}
.xf_c00476{left:107.066667pt;}
.x9a_c00476{left:108.400000pt;}
.xa8_c00476{left:109.733333pt;}
.x8_c00476{left:111.600000pt;}
.x53_c00476{left:113.600000pt;}
.x9d_c00476{left:115.733333pt;}
.x22_c00476{left:116.666667pt;}
.x75_c00476{left:117.733333pt;}
.x49_c00476{left:120.000000pt;}
.xa0_c00476{left:121.200000pt;}
.x84_c00476{left:123.333333pt;}
.x23_c00476{left:124.400000pt;}
.x4c_c00476{left:125.466667pt;}
.x6f_c00476{left:126.400000pt;}
.x39_c00476{left:127.333333pt;}
.x10_c00476{left:128.533333pt;}
.x2d_c00476{left:130.400000pt;}
.x41_c00476{left:132.133333pt;}
.x62_c00476{left:134.000000pt;}
.x65_c00476{left:134.933333pt;}
.x3d_c00476{left:137.733333pt;}
.x9_c00476{left:139.733333pt;}
.x35_c00476{left:141.200000pt;}
.x11_c00476{left:142.266667pt;}
.x7a_c00476{left:144.666667pt;}
.x4d_c00476{left:146.266667pt;}
.x2a_c00476{left:148.666667pt;}
.x98_c00476{left:150.000000pt;}
.xa_c00476{left:151.866667pt;}
.x85_c00476{left:153.733333pt;}
.x1a_c00476{left:155.733333pt;}
.x99_c00476{left:157.733333pt;}
.x4_c00476{left:160.000000pt;}
.x92_c00476{left:160.933333pt;}
.x24_c00476{left:163.733333pt;}
.x69_c00476{left:165.866667pt;}
.x51_c00476{left:167.333333pt;}
.xa4_c00476{left:168.800000pt;}
.x2b_c00476{left:170.400000pt;}
.x2e_c00476{left:171.733333pt;}
.x57_c00476{left:173.200000pt;}
.x1b_c00476{left:176.266667pt;}
.x9e_c00476{left:180.000000pt;}
.xb_c00476{left:180.933333pt;}
.x36_c00476{left:183.466667pt;}
.x12_c00476{left:184.533333pt;}
.x9b_c00476{left:185.466667pt;}
.x72_c00476{left:187.866667pt;}
.x4e_c00476{left:189.733333pt;}
.x67_c00476{left:190.666667pt;}
.x42_c00476{left:193.333333pt;}
.xa1_c00476{left:195.200000pt;}
.x63_c00476{left:196.933333pt;}
.x5b_c00476{left:198.133333pt;}
.x76_c00476{left:199.600000pt;}
.xa9_c00476{left:201.200000pt;}
.x13_c00476{left:202.400000pt;}
.x5_c00476{left:204.133333pt;}
.x89_c00476{left:208.666667pt;}
.x6a_c00476{left:209.733333pt;}
.x25_c00476{left:212.400000pt;}
.x82_c00476{left:213.333333pt;}
.x3a_c00476{left:214.400000pt;}
.x68_c00476{left:215.333333pt;}
.x5c_c00476{left:216.400000pt;}
.x7b_c00476{left:218.400000pt;}
.x70_c00476{left:222.533333pt;}
.xc_c00476{left:223.466667pt;}
.x95_c00476{left:224.933333pt;}
.x47_c00476{left:226.666667pt;}
.x58_c00476{left:228.266667pt;}
.x7e_c00476{left:229.466667pt;}
.x4f_c00476{left:230.400000pt;}
.x77_c00476{left:232.266667pt;}
.x2f_c00476{left:233.200000pt;}
.x14_c00476{left:234.133333pt;}
.x26_c00476{left:235.066667pt;}
.x7f_c00476{left:236.800000pt;}
.x1f_c00476{left:238.000000pt;}
.x1c_c00476{left:238.933333pt;}
.x64_c00476{left:239.866667pt;}
.x71_c00476{left:241.466667pt;}
.x52_c00476{left:243.466667pt;}
.x86_c00476{left:244.533333pt;}
.xd_c00476{left:247.200000pt;}
.x5f_c00476{left:248.533333pt;}
.xa2_c00476{left:250.133333pt;}
.x15_c00476{left:252.666667pt;}
.x50_c00476{left:253.733333pt;}
.x30_c00476{left:254.933333pt;}
.x54_c00476{left:256.266667pt;}
.x73_c00476{left:257.600000pt;}
.x66_c00476{left:259.466667pt;}
.x20_c00476{left:260.400000pt;}
.x43_c00476{left:261.866667pt;}
.x8f_c00476{left:263.733333pt;}
.x59_c00476{left:264.800000pt;}
.x2c_c00476{left:267.333333pt;}
.x5d_c00476{left:268.933333pt;}
.x1d_c00476{left:270.000000pt;}
.x37_c00476{left:271.066667pt;}
.x16_c00476{left:272.800000pt;}
.x55_c00476{left:273.866667pt;}
.x6b_c00476{left:274.800000pt;}
.x4a_c00476{left:279.066667pt;}
.x80_c00476{left:280.266667pt;}
.x3b_c00476{left:282.000000pt;}
.xe_c00476{left:283.333333pt;}
.x3e_c00476{left:285.466667pt;}
.x6_c00476{left:286.666667pt;}
.x81_c00476{left:289.200000pt;}
.x27_c00476{left:291.333333pt;}
.x1_c00476{left:293.733333pt;}
.x3f_c00476{left:295.333333pt;}
.x31_c00476{left:296.800000pt;}
.x1e_c00476{left:297.866667pt;}
.x96_c00476{left:298.800000pt;}
.x3c_c00476{left:299.866667pt;}
.x17_c00476{left:301.600000pt;}
.x44_c00476{left:304.133333pt;}
.x8c_c00476{left:306.000000pt;}
.x4b_c00476{left:307.200000pt;}
.x90_c00476{left:308.800000pt;}
.x28_c00476{left:310.266667pt;}
.x40_c00476{left:312.666667pt;}
.x60_c00476{left:313.733333pt;}
.x32_c00476{left:314.666667pt;}
.x6c_c00476{left:315.733333pt;}
.x5e_c00476{left:317.600000pt;}
.x5a_c00476{left:318.800000pt;}
.x9c_c00476{left:319.866667pt;}
.x38_c00476{left:321.333333pt;}
.x18_c00476{left:322.400000pt;}
.x8a_c00476{left:323.866667pt;}
.x8d_c00476{left:325.866667pt;}
.x6d_c00476{left:326.933333pt;}
.xa3_c00476{left:329.200000pt;}
.x21_c00476{left:330.533333pt;}
.x8b_c00476{left:333.733333pt;}
.xa7_c00476{left:336.400000pt;}
.x45_c00476{left:337.466667pt;}
.x78_c00476{left:339.200000pt;}
.x9f_c00476{left:340.800000pt;}
.x29_c00476{left:342.266667pt;}
.x83_c00476{left:343.200000pt;}
.x74_c00476{left:344.933333pt;}
.x7_c00476{left:346.800000pt;}
.x97_c00476{left:348.666667pt;}
.x33_c00476{left:352.133333pt;}
.x46_c00476{left:358.533333pt;}
.x154_c00476{left:376.000000pt;}
.x105_c00476{left:380.533333pt;}
.xde_c00476{left:382.666667pt;}
.x13d_c00476{left:389.066667pt;}
.x135_c00476{left:390.400000pt;}
.x129_c00476{left:391.733333pt;}
.x10b_c00476{left:392.666667pt;}
.xf2_c00476{left:395.200000pt;}
.xeb_c00476{left:396.800000pt;}
.xe3_c00476{left:397.733333pt;}
.xaa_c00476{left:399.066667pt;}
.xb4_c00476{left:400.000000pt;}
.x145_c00476{left:401.600000pt;}
.x136_c00476{left:402.800000pt;}
.x12a_c00476{left:404.000000pt;}
.x115_c00476{left:405.333333pt;}
.xe4_c00476{left:409.600000pt;}
.x13b_c00476{left:411.200000pt;}
.xbb_c00476{left:415.333333pt;}
.xb9_c00476{left:417.600000pt;}
.xcd_c00476{left:419.333333pt;}
.x131_c00476{left:421.200000pt;}
.xdf_c00476{left:422.933333pt;}
.x11c_c00476{left:424.133333pt;}
.xd3_c00476{left:425.066667pt;}
.xf3_c00476{left:426.266667pt;}
.x100_c00476{left:427.200000pt;}
.x12b_c00476{left:429.866667pt;}
.x10e_c00476{left:431.066667pt;}
.x146_c00476{left:432.933333pt;}
.x155_c00476{left:436.133333pt;}
.x106_c00476{left:437.200000pt;}
.xab_c00476{left:438.400000pt;}
.x12d_c00476{left:439.600000pt;}
.xd4_c00476{left:441.333333pt;}
.x123_c00476{left:442.400000pt;}
.x101_c00476{left:444.133333pt;}
.x14b_c00476{left:445.066667pt;}
.x11d_c00476{left:446.266667pt;}
.xdd_c00476{left:448.000000pt;}
.xb5_c00476{left:450.266667pt;}
.xfb_c00476{left:451.200000pt;}
.x116_c00476{left:452.666667pt;}
.x15a_c00476{left:454.400000pt;}
.x128_c00476{left:455.600000pt;}
.x14d_c00476{left:458.400000pt;}
.x13a_c00476{left:459.466667pt;}
.xe5_c00476{left:461.866667pt;}
.xbc_c00476{left:465.866667pt;}
.x10c_c00476{left:466.933333pt;}
.x15b_c00476{left:468.133333pt;}
.xce_c00476{left:469.200000pt;}
.xac_c00476{left:472.000000pt;}
.x10f_c00476{left:473.066667pt;}
.x132_c00476{left:474.400000pt;}
.xec_c00476{left:476.133333pt;}
.x14c_c00476{left:477.333333pt;}
.xd9_c00476{left:479.600000pt;}
.xc6_c00476{left:481.333333pt;}
.xf4_c00476{left:483.333333pt;}
.xd5_c00476{left:484.266667pt;}
.x11e_c00476{left:486.266667pt;}
.x14e_c00476{left:487.466667pt;}
.x110_c00476{left:488.800000pt;}
.x107_c00476{left:490.266667pt;}
.xf5_c00476{left:491.600000pt;}
.xed_c00476{left:493.466667pt;}
.xb6_c00476{left:495.066667pt;}
.x157_c00476{left:497.200000pt;}
.x124_c00476{left:498.133333pt;}
.x11f_c00476{left:499.733333pt;}
.xbd_c00476{left:501.733333pt;}
.x102_c00476{left:502.666667pt;}
.x13e_c00476{left:503.600000pt;}
.xba_c00476{left:504.666667pt;}
.x120_c00476{left:506.400000pt;}
.x153_c00476{left:507.733333pt;}
.x141_c00476{left:508.800000pt;}
.x119_c00476{left:509.733333pt;}
.x12c_c00476{left:511.200000pt;}
.x134_c00476{left:512.133333pt;}
.xad_c00476{left:513.333333pt;}
.xcf_c00476{left:514.933333pt;}
.xe9_c00476{left:517.733333pt;}
.xee_c00476{left:518.800000pt;}
.x117_c00476{left:520.933333pt;}
.x147_c00476{left:522.000000pt;}
.xe0_c00476{left:523.466667pt;}
.xc7_c00476{left:525.200000pt;}
.xe6_c00476{left:526.133333pt;}
.x127_c00476{left:527.466667pt;}
.x14f_c00476{left:528.400000pt;}
.x108_c00476{left:529.600000pt;}
.xf6_c00476{left:530.933333pt;}
.x121_c00476{left:532.000000pt;}
.xc8_c00476{left:532.933333pt;}
.xbe_c00476{left:534.400000pt;}
.x13f_c00476{left:535.600000pt;}
.xfe_c00476{left:537.333333pt;}
.x122_c00476{left:538.400000pt;}
.x148_c00476{left:539.600000pt;}
.x142_c00476{left:540.800000pt;}
.x140_c00476{left:542.266667pt;}
.x137_c00476{left:543.466667pt;}
.xfc_c00476{left:544.533333pt;}
.x125_c00476{left:546.400000pt;}
.x150_c00476{left:547.600000pt;}
.xae_c00476{left:548.800000pt;}
.xda_c00476{left:550.933333pt;}
.x133_c00476{left:551.866667pt;}
.x143_c00476{left:553.600000pt;}
.x103_c00476{left:555.200000pt;}
.xd0_c00476{left:557.200000pt;}
.xbf_c00476{left:558.400000pt;}
.xea_c00476{left:560.666667pt;}
.x10d_c00476{left:562.533333pt;}
.x118_c00476{left:564.133333pt;}
.x158_c00476{left:565.066667pt;}
.xf7_c00476{left:566.800000pt;}
.x12e_c00476{left:569.733333pt;}
.x11a_c00476{left:570.800000pt;}
.x111_c00476{left:572.666667pt;}
.xe7_c00476{left:574.400000pt;}
.xc9_c00476{left:576.400000pt;}
.xaf_c00476{left:578.933333pt;}
.x144_c00476{left:580.133333pt;}
.xe1_c00476{left:581.733333pt;}
.xf8_c00476{left:583.466667pt;}
.x13c_c00476{left:584.933333pt;}
.xd6_c00476{left:586.133333pt;}
.xdb_c00476{left:587.066667pt;}
.x12f_c00476{left:588.266667pt;}
.xff_c00476{left:589.600000pt;}
.x151_c00476{left:592.133333pt;}
.x149_c00476{left:593.066667pt;}
.x138_c00476{left:594.000000pt;}
.x130_c00476{left:594.933333pt;}
.x11b_c00476{left:596.133333pt;}
.xc0_c00476{left:597.866667pt;}
.x15c_c00476{left:601.600000pt;}
.x156_c00476{left:603.466667pt;}
.xb7_c00476{left:605.200000pt;}
.x109_c00476{left:606.800000pt;}
.xef_c00476{left:609.733333pt;}
.xca_c00476{left:611.600000pt;}
.xc1_c00476{left:613.200000pt;}
.xb0_c00476{left:614.133333pt;}
.x112_c00476{left:615.600000pt;}
.x104_c00476{left:616.933333pt;}
.xd7_c00476{left:619.066667pt;}
.xf9_c00476{left:620.266667pt;}
.xc2_c00476{left:623.466667pt;}
.xf0_c00476{left:625.066667pt;}
.xe8_c00476{left:627.200000pt;}
.x159_c00476{left:628.666667pt;}
.xfd_c00476{left:630.400000pt;}
.xfa_c00476{left:631.733333pt;}
.xd1_c00476{left:633.066667pt;}
.x14a_c00476{left:635.333333pt;}
.xb8_c00476{left:636.266667pt;}
.xc3_c00476{left:638.133333pt;}
.xdc_c00476{left:639.600000pt;}
.x113_c00476{left:641.200000pt;}
.xcb_c00476{left:643.600000pt;}
.xb1_c00476{left:645.466667pt;}
.xd8_c00476{left:647.600000pt;}
.x126_c00476{left:651.200000pt;}
.xf1_c00476{left:653.200000pt;}
.xb2_c00476{left:654.400000pt;}
.x2_c00476{left:658.533333pt;}
.x152_c00476{left:660.000000pt;}
.xc4_c00476{left:661.466667pt;}
.x139_c00476{left:662.666667pt;}
.x10a_c00476{left:664.133333pt;}
.x114_c00476{left:665.866667pt;}
.xb3_c00476{left:666.933333pt;}
.xe2_c00476{left:667.866667pt;}
.xcc_c00476{left:670.133333pt;}
.xc5_c00476{left:671.066667pt;}
.xd2_c00476{left:676.533333pt;}
}





/* 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_c00477 {
    display:none;
  }
  .loading-indicator_c00477.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00477 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_c00477 { 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_c00477" -> "#page-container .classname_c00477")
 */
.pf_c00477 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00477 { /* 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_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00477 { /* 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_c00477 { /* 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_c00477 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00477 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00477 {overflow:visible;}
  }
}
.c_c00477 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00477 { /* 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_c00477:after { /* webkit #35443 */
  content: '';
}
.t_c00477:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00477 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 */
}
.__c00477 { /* 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_c00477 { /* info for Javascript */
  display:none;
}
.l_c00477 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00477 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00477 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00477: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_c00477 {
    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_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00477.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_c00477 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00477{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00477;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.000000;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;}
.m5_c00477{transform:matrix(0.016000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016000,0.000000,0.000000,0.250000,0,0);}
.m1_c00477{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00477{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00477{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m81_c00477{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.me9_c00477{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m47_c00477{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.maa_c00477{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mda_c00477{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m4_c00477{transform:matrix(0.067250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00477{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m3_c00477{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m38_c00477{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m88_c00477{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m35_c00477{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.maf_c00477{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00477{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m20_c00477{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m52_c00477{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m108_c00477{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00477{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00477{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00477{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00477{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m0_c00477{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00477{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00477{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.md3_c00477{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00477{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00477{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m109_c00477{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00477{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m103_c00477{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m37_c00477{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m12_c00477{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00477{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m106_c00477{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mac_c00477{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m8_c00477{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00477{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00477{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.me1_c00477{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00477{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00477{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00477{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m56_c00477{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m70_c00477{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mae_c00477{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00477{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00477{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00477{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md1_c00477{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md2_c00477{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mce_c00477{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00477{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m117_c00477{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00477{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00477{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00477{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00477{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00477{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m34_c00477{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m72_c00477{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m14_c00477{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10_c00477{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00477{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00477{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m66_c00477{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m98_c00477{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m58_c00477{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00477{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00477{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00477{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m13_c00477{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m67_c00477{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m7_c00477{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m53_c00477{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md0_c00477{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00477{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00477{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mab_c00477{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00477{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00477{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.me_c00477{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m30_c00477{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00477{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m48_c00477{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md6_c00477{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m51_c00477{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mc_c00477{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00477{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m23_c00477{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00477{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00477{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m101_c00477{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m65_c00477{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m36_c00477{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00477{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me2_c00477{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00477{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m39_c00477{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00477{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m90_c00477{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00477{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m31_c00477{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m97_c00477{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00477{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m119_c00477{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00477{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00477{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00477{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m74_c00477{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m62_c00477{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me5_c00477{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m60_c00477{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m75_c00477{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00477{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mb_c00477{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m46_c00477{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md9_c00477{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m82_c00477{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m63_c00477{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m116_c00477{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9_c00477{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m28_c00477{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00477{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00477{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00477{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m27_c00477{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00477{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m22_c00477{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00477{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m61_c00477{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m69_c00477{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m59_c00477{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mad_c00477{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m17_c00477{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00477{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00477{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m25_c00477{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md4_c00477{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m100_c00477{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m92_c00477{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m54_c00477{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00477{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m102_c00477{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00477{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m32_c00477{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00477{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00477{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m73_c00477{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00477{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00477{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m18_c00477{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00477{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m49_c00477{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m99_c00477{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00477{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00477{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00477{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00477{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.me6_c00477{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m64_c00477{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00477{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma_c00477{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m6_c00477{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m21_c00477{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00477{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m93_c00477{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.meb_c00477{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00477{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mf_c00477{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m77_c00477{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m79_c00477{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md7_c00477{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m86_c00477{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00477{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m40_c00477{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00477{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00477{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00477{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00477{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00477{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00477{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11_c00477{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m104_c00477{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00477{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m76_c00477{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00477{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m118_c00477{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m83_c00477{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m50_c00477{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00477{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m87_c00477{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m33_c00477{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00477{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00477{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m24_c00477{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m84_c00477{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00477{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m80_c00477{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00477{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m91_c00477{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m42_c00477{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00477{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md_c00477{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m44_c00477{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00477{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m41_c00477{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00477{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m55_c00477{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me7_c00477{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m19_c00477{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m26_c00477{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00477{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00477{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mde_c00477{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m85_c00477{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00477{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m45_c00477{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00477{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00477{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m71_c00477{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00477{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mea_c00477{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m15_c00477{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m111_c00477{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m89_c00477{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00477{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m57_c00477{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00477{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00477{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00477{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16_c00477{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m107_c00477{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00477{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00477{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m78_c00477{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);}
.mbe_c00477{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mca_c00477{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m112_c00477{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m43_c00477{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00477{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me8_c00477{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00477{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m105_c00477{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.me3_c00477{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m115_c00477{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00477{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m96_c00477{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00477{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00477{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.md5_c00477{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00477{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m94_c00477{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00477{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m29_c00477{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00477{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mee_c00477{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00477{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00477{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m110_c00477{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mff_c00477{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.md8_c00477{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00477{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m113_c00477{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00477{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m95_c00477{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00477{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00477{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m114_c00477{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mef_c00477{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m68_c00477{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.me4_c00477{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00477{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mba_c00477{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00477{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.me0_c00477{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00477{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.mec_c00477{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00477{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.med_c00477{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00477{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls0_c00477{letter-spacing:0.000000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{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__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00477{word-spacing:-6.464684px;}
.ws2_c00477{word-spacing:-2.346705px;}
.ws4_c00477{word-spacing:-1.457045px;}
.ws7_c00477{word-spacing:-0.714286px;}
.ws9_c00477{word-spacing:0.000000px;}
.ws1_c00477{word-spacing:1.764706px;}
.ws6_c00477{word-spacing:2.151899px;}
.ws5_c00477{word-spacing:5.441176px;}
.ws0_c00477{word-spacing:15.528347px;}
.ws8_c00477{word-spacing:127.875000px;}
.fc0_c00477{color:transparent;}
.fs1_c00477{font-size:30.000000px;}
.fs6_c00477{font-size:48.000000px;}
.fs4_c00477{font-size:54.000000px;}
.fs3_c00477{font-size:60.000000px;}
.fs2_c00477{font-size:66.000000px;}
.fs5_c00477{font-size:72.000000px;}
.fs0_c00477{font-size:108.000000px;}
.y0_c00477{bottom:0.000000px;}
.y36_c00477{bottom:197.250000px;}
.y35_c00477{bottom:213.750000px;}
.y68_c00477{bottom:214.200000px;}
.y34_c00477{bottom:227.850000px;}
.y67_c00477{bottom:232.500000px;}
.y33_c00477{bottom:241.950000px;}
.y66_c00477{bottom:250.200000px;}
.y32_c00477{bottom:256.350000px;}
.y65_c00477{bottom:270.750000px;}
.y64_c00477{bottom:285.450000px;}
.y63_c00477{bottom:299.550000px;}
.y31_c00477{bottom:302.250000px;}
.y62_c00477{bottom:313.200000px;}
.y30_c00477{bottom:319.950000px;}
.y61_c00477{bottom:330.150000px;}
.y2f_c00477{bottom:337.650000px;}
.y60_c00477{bottom:352.200000px;}
.y2e_c00477{bottom:355.650000px;}
.y5f_c00477{bottom:369.900000px;}
.y2d_c00477{bottom:373.350000px;}
.y5e_c00477{bottom:387.600000px;}
.y2c_c00477{bottom:394.650000px;}
.y5d_c00477{bottom:405.300000px;}
.y2b_c00477{bottom:412.650000px;}
.y5c_c00477{bottom:423.000000px;}
.y2a_c00477{bottom:430.650000px;}
.y5b_c00477{bottom:448.500000px;}
.y29_c00477{bottom:448.650000px;}
.y5a_c00477{bottom:466.500000px;}
.y28_c00477{bottom:466.650000px;}
.y59_c00477{bottom:484.200000px;}
.y27_c00477{bottom:484.350000px;}
.y26_c00477{bottom:502.350000px;}
.y58_c00477{bottom:502.500000px;}
.y57_c00477{bottom:519.750000px;}
.y25_c00477{bottom:520.050000px;}
.y2_c00477{bottom:530.250000px;}
.y56_c00477{bottom:537.450000px;}
.y24_c00477{bottom:537.750000px;}
.y23_c00477{bottom:555.450000px;}
.y55_c00477{bottom:559.350000px;}
.y22_c00477{bottom:573.150000px;}
.y54_c00477{bottom:577.050000px;}
.y21_c00477{bottom:591.150000px;}
.y53_c00477{bottom:603.600000px;}
.y20_c00477{bottom:608.400000px;}
.y52_c00477{bottom:621.900000px;}
.y1f_c00477{bottom:626.400000px;}
.y51_c00477{bottom:639.900000px;}
.y1e_c00477{bottom:644.100000px;}
.y50_c00477{bottom:657.600000px;}
.y1d_c00477{bottom:665.700000px;}
.y4f_c00477{bottom:675.300000px;}
.y1c_c00477{bottom:683.700000px;}
.y4e_c00477{bottom:693.300000px;}
.y1b_c00477{bottom:701.400000px;}
.y4d_c00477{bottom:714.000000px;}
.y1a_c00477{bottom:719.400000px;}
.y4c_c00477{bottom:732.750000px;}
.y19_c00477{bottom:737.100000px;}
.y4b_c00477{bottom:751.050000px;}
.y18_c00477{bottom:754.350000px;}
.y4a_c00477{bottom:768.300000px;}
.y17_c00477{bottom:772.350000px;}
.y49_c00477{bottom:786.000000px;}
.y16_c00477{bottom:790.350000px;}
.y48_c00477{bottom:803.700000px;}
.y15_c00477{bottom:807.600000px;}
.y47_c00477{bottom:821.700000px;}
.y14_c00477{bottom:825.600000px;}
.y46_c00477{bottom:839.400000px;}
.y13_c00477{bottom:843.300000px;}
.y45_c00477{bottom:857.100000px;}
.y12_c00477{bottom:861.000000px;}
.y44_c00477{bottom:874.800000px;}
.y11_c00477{bottom:879.000000px;}
.y43_c00477{bottom:892.800000px;}
.y10_c00477{bottom:897.000000px;}
.y42_c00477{bottom:913.950000px;}
.yf_c00477{bottom:914.700000px;}
.y41_c00477{bottom:932.250000px;}
.ye_c00477{bottom:932.700000px;}
.yd_c00477{bottom:949.950000px;}
.y40_c00477{bottom:967.650000px;}
.yc_c00477{bottom:967.950000px;}
.yb_c00477{bottom:985.650000px;}
.y3f_c00477{bottom:988.950000px;}
.ya_c00477{bottom:1003.650000px;}
.y3e_c00477{bottom:1006.950000px;}
.y9_c00477{bottom:1020.900000px;}
.y3d_c00477{bottom:1024.650000px;}
.y8_c00477{bottom:1038.900000px;}
.y3c_c00477{bottom:1042.650000px;}
.y7_c00477{bottom:1056.600000px;}
.y3b_c00477{bottom:1060.350000px;}
.y3a_c00477{bottom:1078.050000px;}
.y6_c00477{bottom:1078.350000px;}
.y39_c00477{bottom:1095.750000px;}
.y5_c00477{bottom:1096.050000px;}
.y38_c00477{bottom:1113.450000px;}
.y4_c00477{bottom:1113.750000px;}
.y37_c00477{bottom:1131.150000px;}
.y3_c00477{bottom:1131.450000px;}
.y1_c00477{bottom:1158.150000px;}
.h3_c00477{height:30.000000px;}
.h8_c00477{height:48.000000px;}
.h6_c00477{height:54.000000px;}
.h5_c00477{height:60.000000px;}
.h4_c00477{height:66.000000px;}
.h7_c00477{height:72.000000px;}
.h2_c00477{height:108.000000px;}
.h1_c00477{height:1277.250000px;}
.h0_c00477{height:1277.280030px;}
.w0_c00477{width:958.320007px;}
.w1_c00477{width:958.500000px;}
.x0_c00477{left:0.000000px;}
.x4_c00477{left:2.100000px;}
.x1_c00477{left:195.150000px;}
.x9e_c00477{left:200.250000px;}
.x99_c00477{left:209.400000px;}
.x5_c00477{left:213.150000px;}
.x40_c00477{left:214.500000px;}
.x12_c00477{left:215.550000px;}
.x80_c00477{left:216.600000px;}
.x8a_c00477{left:218.250000px;}
.x7b_c00477{left:221.100000px;}
.x97_c00477{left:222.150000px;}
.x9f_c00477{left:223.650000px;}
.x33_c00477{left:232.500000px;}
.x20_c00477{left:233.700000px;}
.x57_c00477{left:237.450000px;}
.xc_c00477{left:240.150000px;}
.x77_c00477{left:242.400000px;}
.x47_c00477{left:245.400000px;}
.x60_c00477{left:246.900000px;}
.x13_c00477{left:249.000000px;}
.x3a_c00477{left:251.100000px;}
.x6_c00477{left:252.450000px;}
.x8b_c00477{left:253.950000px;}
.x19_c00477{left:256.950000px;}
.x72_c00477{left:260.700000px;}
.x2_c00477{left:261.750000px;}
.x25_c00477{left:264.150000px;}
.x30_c00477{left:266.250000px;}
.x3b_c00477{left:267.600000px;}
.x7_c00477{left:269.700000px;}
.x14_c00477{left:272.100000px;}
.x41_c00477{left:274.950000px;}
.x34_c00477{left:278.250000px;}
.x51_c00477{left:281.400000px;}
.x8_c00477{left:283.350000px;}
.x95_c00477{left:285.000000px;}
.x58_c00477{left:286.050000px;}
.x35_c00477{left:289.350000px;}
.x85_c00477{left:290.400000px;}
.x87_c00477{left:292.050000px;}
.x4a_c00477{left:294.900000px;}
.x21_c00477{left:296.700000px;}
.x15_c00477{left:299.100000px;}
.x83_c00477{left:300.600000px;}
.x1a_c00477{left:301.950000px;}
.x3c_c00477{left:305.100000px;}
.x78_c00477{left:306.150000px;}
.x26_c00477{left:307.650000px;}
.x59_c00477{left:309.150000px;}
.x2c_c00477{left:310.200000px;}
.xa1_c00477{left:311.550000px;}
.x9c_c00477{left:312.600000px;}
.x96_c00477{left:317.400000px;}
.x1b_c00477{left:318.450000px;}
.x65_c00477{left:320.400000px;}
.x6d_c00477{left:322.950000px;}
.x79_c00477{left:325.950000px;}
.x9_c00477{left:327.600000px;}
.xa2_c00477{left:328.800000px;}
.x73_c00477{left:329.850000px;}
.x42_c00477{left:331.050000px;}
.x48_c00477{left:333.750000px;}
.x16_c00477{left:335.100000px;}
.x22_c00477{left:337.350000px;}
.x4d_c00477{left:339.150000px;}
.x91_c00477{left:340.500000px;}
.x6e_c00477{left:342.000000px;}
.x27_c00477{left:344.400000px;}
.x81_c00477{left:345.600000px;}
.x5c_c00477{left:346.800000px;}
.xd_c00477{left:348.450000px;}
.x61_c00477{left:350.250000px;}
.x7e_c00477{left:351.300000px;}
.x1c_c00477{left:354.750000px;}
.x5a_c00477{left:357.000000px;}
.x4e_c00477{left:358.650000px;}
.x52_c00477{left:359.850000px;}
.x43_c00477{left:360.900000px;}
.x86_c00477{left:362.400000px;}
.x2d_c00477{left:363.450000px;}
.x8f_c00477{left:364.950000px;}
.xe_c00477{left:367.950000px;}
.x62_c00477{left:369.000000px;}
.x9a_c00477{left:371.850000px;}
.x8d_c00477{left:373.350000px;}
.x66_c00477{left:374.700000px;}
.x1d_c00477{left:376.350000px;}
.x17_c00477{left:378.300000px;}
.x3d_c00477{left:380.400000px;}
.x53_c00477{left:382.950000px;}
.x28_c00477{left:384.750000px;}
.x23_c00477{left:386.250000px;}
.x31_c00477{left:389.400000px;}
.x88_c00477{left:393.600000px;}
.x4b_c00477{left:394.950000px;}
.xa_c00477{left:396.000000px;}
.x6b_c00477{left:397.350000px;}
.x82_c00477{left:398.400000px;}
.x6f_c00477{left:399.600000px;}
.xf_c00477{left:401.400000px;}
.x7a_c00477{left:403.650000px;}
.x44_c00477{left:405.900000px;}
.x4f_c00477{left:406.950000px;}
.x24_c00477{left:410.400000px;}
.x6c_c00477{left:412.050000px;}
.x68_c00477{left:414.150000px;}
.x50_c00477{left:415.950000px;}
.x75_c00477{left:417.150000px;}
.x36_c00477{left:418.500000px;}
.x7c_c00477{left:420.150000px;}
.x10_c00477{left:422.250000px;}
.x63_c00477{left:424.800000px;}
.x29_c00477{left:426.150000px;}
.x37_c00477{left:427.500000px;}
.x69_c00477{left:428.550000px;}
.x3e_c00477{left:431.850000px;}
.x84_c00477{left:435.150000px;}
.x3_c00477{left:436.650000px;}
.x18_c00477{left:438.000000px;}
.x5b_c00477{left:439.050000px;}
.x54_c00477{left:440.550000px;}
.x89_c00477{left:444.300000px;}
.x2a_c00477{left:446.700000px;}
.x9b_c00477{left:448.200000px;}
.x1e_c00477{left:449.400000px;}
.x98_c00477{left:450.750000px;}
.x2e_c00477{left:453.750000px;}
.x92_c00477{left:455.700000px;}
.x71_c00477{left:457.200000px;}
.x49_c00477{left:458.700000px;}
.x70_c00477{left:460.800000px;}
.x45_c00477{left:462.750000px;}
.x90_c00477{left:464.550000px;}
.xb_c00477{left:466.200000px;}
.x64_c00477{left:467.700000px;}
.x74_c00477{left:470.250000px;}
.x38_c00477{left:471.450000px;}
.x8c_c00477{left:474.000000px;}
.x32_c00477{left:476.850000px;}
.x93_c00477{left:478.050000px;}
.x5e_c00477{left:480.600000px;}
.x55_c00477{left:482.250000px;}
.x46_c00477{left:484.050000px;}
.x6a_c00477{left:486.150000px;}
.x11_c00477{left:488.850000px;}
.x5d_c00477{left:490.950000px;}
.x39_c00477{left:492.750000px;}
.x3f_c00477{left:496.050000px;}
.x56_c00477{left:498.450000px;}
.xa0_c00477{left:499.500000px;}
.x5f_c00477{left:504.300000px;}
.x2f_c00477{left:505.650000px;}
.x1f_c00477{left:507.300000px;}
.x2b_c00477{left:508.950000px;}
.x76_c00477{left:510.000000px;}
.x67_c00477{left:511.800000px;}
.x4c_c00477{left:515.250000px;}
.x9d_c00477{left:517.350000px;}
.x7f_c00477{left:520.500000px;}
.x8e_c00477{left:522.150000px;}
.x94_c00477{left:529.500000px;}
.x7d_c00477{left:537.900000px;}
.xf0_c00477{left:550.050000px;}
.x11b_c00477{left:551.850000px;}
.xa3_c00477{left:567.000000px;}
.xee_c00477{left:568.200000px;}
.x121_c00477{left:569.250000px;}
.x137_c00477{left:580.500000px;}
.xe0_c00477{left:585.000000px;}
.x11c_c00477{left:587.100000px;}
.x106_c00477{left:589.500000px;}
.xa4_c00477{left:592.950000px;}
.x128_c00477{left:594.300000px;}
.xba_c00477{left:595.800000px;}
.xf5_c00477{left:599.400000px;}
.xc9_c00477{left:601.800000px;}
.xb3_c00477{left:607.350000px;}
.xf1_c00477{left:610.200000px;}
.x122_c00477{left:611.400000px;}
.x103_c00477{left:613.500000px;}
.x10b_c00477{left:616.350000px;}
.xd9_c00477{left:617.400000px;}
.xc2_c00477{left:618.450000px;}
.xd2_c00477{left:621.150000px;}
.xe7_c00477{left:624.750000px;}
.xb4_c00477{left:627.900000px;}
.xad_c00477{left:629.700000px;}
.x107_c00477{left:632.700000px;}
.x126_c00477{left:634.350000px;}
.xbb_c00477{left:636.450000px;}
.xff_c00477{left:639.750000px;}
.xa5_c00477{left:640.800000px;}
.xb5_c00477{left:643.350000px;}
.xae_c00477{left:646.650000px;}
.x13b_c00477{left:648.300000px;}
.xe1_c00477{left:650.550000px;}
.xca_c00477{left:651.900000px;}
.xe8_c00477{left:653.550000px;}
.x11d_c00477{left:654.750000px;}
.x131_c00477{left:656.100000px;}
.xbc_c00477{left:657.750000px;}
.x101_c00477{left:659.550000px;}
.x118_c00477{left:661.800000px;}
.xa6_c00477{left:663.900000px;}
.x114_c00477{left:666.600000px;}
.xd3_c00477{left:667.650000px;}
.xc3_c00477{left:670.350000px;}
.x120_c00477{left:672.000000px;}
.xbd_c00477{left:673.200000px;}
.x104_c00477{left:675.750000px;}
.x108_c00477{left:677.100000px;}
.xe9_c00477{left:679.050000px;}
.x12b_c00477{left:680.100000px;}
.x10c_c00477{left:681.150000px;}
.xda_c00477{left:682.200000px;}
.xcb_c00477{left:684.600000px;}
.x119_c00477{left:686.700000px;}
.xa7_c00477{left:689.400000px;}
.x13c_c00477{left:691.650000px;}
.xcc_c00477{left:696.150000px;}
.xaf_c00477{left:697.350000px;}
.x12c_c00477{left:698.400000px;}
.xb6_c00477{left:699.900000px;}
.x117_c00477{left:701.550000px;}
.x111_c00477{left:703.050000px;}
.xf2_c00477{left:704.100000px;}
.x115_c00477{left:705.450000px;}
.xe2_c00477{left:706.500000px;}
.xd4_c00477{left:708.300000px;}
.x133_c00477{left:710.100000px;}
.xcd_c00477{left:711.300000px;}
.x11e_c00477{left:712.350000px;}
.xa8_c00477{left:713.550000px;}
.xea_c00477{left:716.100000px;}
.xbe_c00477{left:718.200000px;}
.xdb_c00477{left:720.300000px;}
.x134_c00477{left:723.450000px;}
.xd5_c00477{left:725.250000px;}
.xc4_c00477{left:726.900000px;}
.x129_c00477{left:728.100000px;}
.xfa_c00477{left:729.150000px;}
.x139_c00477{left:731.100000px;}
.xb7_c00477{left:734.400000px;}
.xb0_c00477{left:737.700000px;}
.x11f_c00477{left:740.400000px;}
.x132_c00477{left:742.050000px;}
.x116_c00477{left:744.000000px;}
.x124_c00477{left:746.400000px;}
.xf3_c00477{left:748.800000px;}
.x109_c00477{left:749.850000px;}
.x123_c00477{left:751.050000px;}
.xd6_c00477{left:753.750000px;}
.xf6_c00477{left:755.550000px;}
.xdc_c00477{left:758.850000px;}
.x12a_c00477{left:761.550000px;}
.x10d_c00477{left:762.900000px;}
.xa9_c00477{left:764.250000px;}
.xe3_c00477{left:766.200000px;}
.xc5_c00477{left:768.300000px;}
.xbf_c00477{left:769.350000px;}
.xf7_c00477{left:771.450000px;}
.x10a_c00477{left:775.050000px;}
.xce_c00477{left:776.100000px;}
.xaa_c00477{left:778.350000px;}
.xe4_c00477{left:779.550000px;}
.x10e_c00477{left:780.900000px;}
.xcf_c00477{left:783.600000px;}
.xdd_c00477{left:784.800000px;}
.xeb_c00477{left:787.050000px;}
.x12d_c00477{left:788.700000px;}
.x125_c00477{left:793.500000px;}
.xb1_c00477{left:795.300000px;}
.xd7_c00477{left:796.650000px;}
.x130_c00477{left:797.700000px;}
.xe5_c00477{left:799.050000px;}
.xab_c00477{left:800.700000px;}
.xc6_c00477{left:802.500000px;}
.x112_c00477{left:803.850000px;}
.xb8_c00477{left:806.400000px;}
.xfb_c00477{left:808.350000px;}
.x102_c00477{left:811.950000px;}
.xfd_c00477{left:813.750000px;}
.x136_c00477{left:814.950000px;}
.x138_c00477{left:816.000000px;}
.x105_c00477{left:817.500000px;}
.xc7_c00477{left:818.700000px;}
.xf4_c00477{left:820.050000px;}
.xf8_c00477{left:821.550000px;}
.x113_c00477{left:823.650000px;}
.x11a_c00477{left:825.600000px;}
.xef_c00477{left:827.700000px;}
.x12e_c00477{left:829.350000px;}
.xde_c00477{left:831.600000px;}
.xec_c00477{left:833.550000px;}
.xb9_c00477{left:835.500000px;}
.xd0_c00477{left:837.300000px;}
.x127_c00477{left:839.250000px;}
.xe6_c00477{left:840.450000px;}
.x10f_c00477{left:842.100000px;}
.xfc_c00477{left:844.650000px;}
.xc0_c00477{left:846.300000px;}
.xac_c00477{left:848.550000px;}
.xed_c00477{left:849.750000px;}
.xdf_c00477{left:852.150000px;}
.xd1_c00477{left:853.800000px;}
.xc1_c00477{left:856.050000px;}
.x100_c00477{left:860.850000px;}
.xb2_c00477{left:862.200000px;}
.x110_c00477{left:863.700000px;}
.x12f_c00477{left:868.200000px;}
.x135_c00477{left:869.550000px;}
.xd8_c00477{left:871.200000px;}
.x13a_c00477{left:873.300000px;}
.xfe_c00477{left:874.500000px;}
.xc8_c00477{left:880.200000px;}
.xf9_c00477{left:881.400000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws3_c00477{word-spacing:-5.746386pt;}
.ws2_c00477{word-spacing:-2.085960pt;}
.ws4_c00477{word-spacing:-1.295151pt;}
.ws7_c00477{word-spacing:-0.634921pt;}
.ws9_c00477{word-spacing:0.000000pt;}
.ws1_c00477{word-spacing:1.568627pt;}
.ws6_c00477{word-spacing:1.912799pt;}
.ws5_c00477{word-spacing:4.836601pt;}
.ws0_c00477{word-spacing:13.802975pt;}
.ws8_c00477{word-spacing:113.666667pt;}
.fs1_c00477{font-size:26.666667pt;}
.fs6_c00477{font-size:42.666667pt;}
.fs4_c00477{font-size:48.000000pt;}
.fs3_c00477{font-size:53.333333pt;}
.fs2_c00477{font-size:58.666667pt;}
.fs5_c00477{font-size:64.000000pt;}
.fs0_c00477{font-size:96.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y36_c00477{bottom:175.333333pt;}
.y35_c00477{bottom:190.000000pt;}
.y68_c00477{bottom:190.400000pt;}
.y34_c00477{bottom:202.533333pt;}
.y67_c00477{bottom:206.666667pt;}
.y33_c00477{bottom:215.066667pt;}
.y66_c00477{bottom:222.400000pt;}
.y32_c00477{bottom:227.866667pt;}
.y65_c00477{bottom:240.666667pt;}
.y64_c00477{bottom:253.733333pt;}
.y63_c00477{bottom:266.266667pt;}
.y31_c00477{bottom:268.666667pt;}
.y62_c00477{bottom:278.400000pt;}
.y30_c00477{bottom:284.400000pt;}
.y61_c00477{bottom:293.466667pt;}
.y2f_c00477{bottom:300.133333pt;}
.y60_c00477{bottom:313.066667pt;}
.y2e_c00477{bottom:316.133333pt;}
.y5f_c00477{bottom:328.800000pt;}
.y2d_c00477{bottom:331.866667pt;}
.y5e_c00477{bottom:344.533333pt;}
.y2c_c00477{bottom:350.800000pt;}
.y5d_c00477{bottom:360.266667pt;}
.y2b_c00477{bottom:366.800000pt;}
.y5c_c00477{bottom:376.000000pt;}
.y2a_c00477{bottom:382.800000pt;}
.y5b_c00477{bottom:398.666667pt;}
.y29_c00477{bottom:398.800000pt;}
.y5a_c00477{bottom:414.666667pt;}
.y28_c00477{bottom:414.800000pt;}
.y59_c00477{bottom:430.400000pt;}
.y27_c00477{bottom:430.533333pt;}
.y26_c00477{bottom:446.533333pt;}
.y58_c00477{bottom:446.666667pt;}
.y57_c00477{bottom:462.000000pt;}
.y25_c00477{bottom:462.266667pt;}
.y2_c00477{bottom:471.333333pt;}
.y56_c00477{bottom:477.733333pt;}
.y24_c00477{bottom:478.000000pt;}
.y23_c00477{bottom:493.733333pt;}
.y55_c00477{bottom:497.200000pt;}
.y22_c00477{bottom:509.466667pt;}
.y54_c00477{bottom:512.933333pt;}
.y21_c00477{bottom:525.466667pt;}
.y53_c00477{bottom:536.533333pt;}
.y20_c00477{bottom:540.800000pt;}
.y52_c00477{bottom:552.800000pt;}
.y1f_c00477{bottom:556.800000pt;}
.y51_c00477{bottom:568.800000pt;}
.y1e_c00477{bottom:572.533333pt;}
.y50_c00477{bottom:584.533333pt;}
.y1d_c00477{bottom:591.733333pt;}
.y4f_c00477{bottom:600.266667pt;}
.y1c_c00477{bottom:607.733333pt;}
.y4e_c00477{bottom:616.266667pt;}
.y1b_c00477{bottom:623.466667pt;}
.y4d_c00477{bottom:634.666667pt;}
.y1a_c00477{bottom:639.466667pt;}
.y4c_c00477{bottom:651.333333pt;}
.y19_c00477{bottom:655.200000pt;}
.y4b_c00477{bottom:667.600000pt;}
.y18_c00477{bottom:670.533333pt;}
.y4a_c00477{bottom:682.933333pt;}
.y17_c00477{bottom:686.533333pt;}
.y49_c00477{bottom:698.666667pt;}
.y16_c00477{bottom:702.533333pt;}
.y48_c00477{bottom:714.400000pt;}
.y15_c00477{bottom:717.866667pt;}
.y47_c00477{bottom:730.400000pt;}
.y14_c00477{bottom:733.866667pt;}
.y46_c00477{bottom:746.133333pt;}
.y13_c00477{bottom:749.600000pt;}
.y45_c00477{bottom:761.866667pt;}
.y12_c00477{bottom:765.333333pt;}
.y44_c00477{bottom:777.600000pt;}
.y11_c00477{bottom:781.333333pt;}
.y43_c00477{bottom:793.600000pt;}
.y10_c00477{bottom:797.333333pt;}
.y42_c00477{bottom:812.400000pt;}
.yf_c00477{bottom:813.066667pt;}
.y41_c00477{bottom:828.666667pt;}
.ye_c00477{bottom:829.066667pt;}
.yd_c00477{bottom:844.400000pt;}
.y40_c00477{bottom:860.133333pt;}
.yc_c00477{bottom:860.400000pt;}
.yb_c00477{bottom:876.133333pt;}
.y3f_c00477{bottom:879.066667pt;}
.ya_c00477{bottom:892.133333pt;}
.y3e_c00477{bottom:895.066667pt;}
.y9_c00477{bottom:907.466667pt;}
.y3d_c00477{bottom:910.800000pt;}
.y8_c00477{bottom:923.466667pt;}
.y3c_c00477{bottom:926.800000pt;}
.y7_c00477{bottom:939.200000pt;}
.y3b_c00477{bottom:942.533333pt;}
.y3a_c00477{bottom:958.266667pt;}
.y6_c00477{bottom:958.533333pt;}
.y39_c00477{bottom:974.000000pt;}
.y5_c00477{bottom:974.266667pt;}
.y38_c00477{bottom:989.733333pt;}
.y4_c00477{bottom:990.000000pt;}
.y37_c00477{bottom:1005.466667pt;}
.y3_c00477{bottom:1005.733333pt;}
.y1_c00477{bottom:1029.466667pt;}
.h3_c00477{height:26.666667pt;}
.h8_c00477{height:42.666667pt;}
.h6_c00477{height:48.000000pt;}
.h5_c00477{height:53.333333pt;}
.h4_c00477{height:58.666667pt;}
.h7_c00477{height:64.000000pt;}
.h2_c00477{height:96.000000pt;}
.h1_c00477{height:1135.333333pt;}
.h0_c00477{height:1135.360027pt;}
.w0_c00477{width:851.840007pt;}
.w1_c00477{width:852.000000pt;}
.x0_c00477{left:0.000000pt;}
.x4_c00477{left:1.866667pt;}
.x1_c00477{left:173.466667pt;}
.x9e_c00477{left:178.000000pt;}
.x99_c00477{left:186.133333pt;}
.x5_c00477{left:189.466667pt;}
.x40_c00477{left:190.666667pt;}
.x12_c00477{left:191.600000pt;}
.x80_c00477{left:192.533333pt;}
.x8a_c00477{left:194.000000pt;}
.x7b_c00477{left:196.533333pt;}
.x97_c00477{left:197.466667pt;}
.x9f_c00477{left:198.800000pt;}
.x33_c00477{left:206.666667pt;}
.x20_c00477{left:207.733333pt;}
.x57_c00477{left:211.066667pt;}
.xc_c00477{left:213.466667pt;}
.x77_c00477{left:215.466667pt;}
.x47_c00477{left:218.133333pt;}
.x60_c00477{left:219.466667pt;}
.x13_c00477{left:221.333333pt;}
.x3a_c00477{left:223.200000pt;}
.x6_c00477{left:224.400000pt;}
.x8b_c00477{left:225.733333pt;}
.x19_c00477{left:228.400000pt;}
.x72_c00477{left:231.733333pt;}
.x2_c00477{left:232.666667pt;}
.x25_c00477{left:234.800000pt;}
.x30_c00477{left:236.666667pt;}
.x3b_c00477{left:237.866667pt;}
.x7_c00477{left:239.733333pt;}
.x14_c00477{left:241.866667pt;}
.x41_c00477{left:244.400000pt;}
.x34_c00477{left:247.333333pt;}
.x51_c00477{left:250.133333pt;}
.x8_c00477{left:251.866667pt;}
.x95_c00477{left:253.333333pt;}
.x58_c00477{left:254.266667pt;}
.x35_c00477{left:257.200000pt;}
.x85_c00477{left:258.133333pt;}
.x87_c00477{left:259.600000pt;}
.x4a_c00477{left:262.133333pt;}
.x21_c00477{left:263.733333pt;}
.x15_c00477{left:265.866667pt;}
.x83_c00477{left:267.200000pt;}
.x1a_c00477{left:268.400000pt;}
.x3c_c00477{left:271.200000pt;}
.x78_c00477{left:272.133333pt;}
.x26_c00477{left:273.466667pt;}
.x59_c00477{left:274.800000pt;}
.x2c_c00477{left:275.733333pt;}
.xa1_c00477{left:276.933333pt;}
.x9c_c00477{left:277.866667pt;}
.x96_c00477{left:282.133333pt;}
.x1b_c00477{left:283.066667pt;}
.x65_c00477{left:284.800000pt;}
.x6d_c00477{left:287.066667pt;}
.x79_c00477{left:289.733333pt;}
.x9_c00477{left:291.200000pt;}
.xa2_c00477{left:292.266667pt;}
.x73_c00477{left:293.200000pt;}
.x42_c00477{left:294.266667pt;}
.x48_c00477{left:296.666667pt;}
.x16_c00477{left:297.866667pt;}
.x22_c00477{left:299.866667pt;}
.x4d_c00477{left:301.466667pt;}
.x91_c00477{left:302.666667pt;}
.x6e_c00477{left:304.000000pt;}
.x27_c00477{left:306.133333pt;}
.x81_c00477{left:307.200000pt;}
.x5c_c00477{left:308.266667pt;}
.xd_c00477{left:309.733333pt;}
.x61_c00477{left:311.333333pt;}
.x7e_c00477{left:312.266667pt;}
.x1c_c00477{left:315.333333pt;}
.x5a_c00477{left:317.333333pt;}
.x4e_c00477{left:318.800000pt;}
.x52_c00477{left:319.866667pt;}
.x43_c00477{left:320.800000pt;}
.x86_c00477{left:322.133333pt;}
.x2d_c00477{left:323.066667pt;}
.x8f_c00477{left:324.400000pt;}
.xe_c00477{left:327.066667pt;}
.x62_c00477{left:328.000000pt;}
.x9a_c00477{left:330.533333pt;}
.x8d_c00477{left:331.866667pt;}
.x66_c00477{left:333.066667pt;}
.x1d_c00477{left:334.533333pt;}
.x17_c00477{left:336.266667pt;}
.x3d_c00477{left:338.133333pt;}
.x53_c00477{left:340.400000pt;}
.x28_c00477{left:342.000000pt;}
.x23_c00477{left:343.333333pt;}
.x31_c00477{left:346.133333pt;}
.x88_c00477{left:349.866667pt;}
.x4b_c00477{left:351.066667pt;}
.xa_c00477{left:352.000000pt;}
.x6b_c00477{left:353.200000pt;}
.x82_c00477{left:354.133333pt;}
.x6f_c00477{left:355.200000pt;}
.xf_c00477{left:356.800000pt;}
.x7a_c00477{left:358.800000pt;}
.x44_c00477{left:360.800000pt;}
.x4f_c00477{left:361.733333pt;}
.x24_c00477{left:364.800000pt;}
.x6c_c00477{left:366.266667pt;}
.x68_c00477{left:368.133333pt;}
.x50_c00477{left:369.733333pt;}
.x75_c00477{left:370.800000pt;}
.x36_c00477{left:372.000000pt;}
.x7c_c00477{left:373.466667pt;}
.x10_c00477{left:375.333333pt;}
.x63_c00477{left:377.600000pt;}
.x29_c00477{left:378.800000pt;}
.x37_c00477{left:380.000000pt;}
.x69_c00477{left:380.933333pt;}
.x3e_c00477{left:383.866667pt;}
.x84_c00477{left:386.800000pt;}
.x3_c00477{left:388.133333pt;}
.x18_c00477{left:389.333333pt;}
.x5b_c00477{left:390.266667pt;}
.x54_c00477{left:391.600000pt;}
.x89_c00477{left:394.933333pt;}
.x2a_c00477{left:397.066667pt;}
.x9b_c00477{left:398.400000pt;}
.x1e_c00477{left:399.466667pt;}
.x98_c00477{left:400.666667pt;}
.x2e_c00477{left:403.333333pt;}
.x92_c00477{left:405.066667pt;}
.x71_c00477{left:406.400000pt;}
.x49_c00477{left:407.733333pt;}
.x70_c00477{left:409.600000pt;}
.x45_c00477{left:411.333333pt;}
.x90_c00477{left:412.933333pt;}
.xb_c00477{left:414.400000pt;}
.x64_c00477{left:415.733333pt;}
.x74_c00477{left:418.000000pt;}
.x38_c00477{left:419.066667pt;}
.x8c_c00477{left:421.333333pt;}
.x32_c00477{left:423.866667pt;}
.x93_c00477{left:424.933333pt;}
.x5e_c00477{left:427.200000pt;}
.x55_c00477{left:428.666667pt;}
.x46_c00477{left:430.266667pt;}
.x6a_c00477{left:432.133333pt;}
.x11_c00477{left:434.533333pt;}
.x5d_c00477{left:436.400000pt;}
.x39_c00477{left:438.000000pt;}
.x3f_c00477{left:440.933333pt;}
.x56_c00477{left:443.066667pt;}
.xa0_c00477{left:444.000000pt;}
.x5f_c00477{left:448.266667pt;}
.x2f_c00477{left:449.466667pt;}
.x1f_c00477{left:450.933333pt;}
.x2b_c00477{left:452.400000pt;}
.x76_c00477{left:453.333333pt;}
.x67_c00477{left:454.933333pt;}
.x4c_c00477{left:458.000000pt;}
.x9d_c00477{left:459.866667pt;}
.x7f_c00477{left:462.666667pt;}
.x8e_c00477{left:464.133333pt;}
.x94_c00477{left:470.666667pt;}
.x7d_c00477{left:478.133333pt;}
.xf0_c00477{left:488.933333pt;}
.x11b_c00477{left:490.533333pt;}
.xa3_c00477{left:504.000000pt;}
.xee_c00477{left:505.066667pt;}
.x121_c00477{left:506.000000pt;}
.x137_c00477{left:516.000000pt;}
.xe0_c00477{left:520.000000pt;}
.x11c_c00477{left:521.866667pt;}
.x106_c00477{left:524.000000pt;}
.xa4_c00477{left:527.066667pt;}
.x128_c00477{left:528.266667pt;}
.xba_c00477{left:529.600000pt;}
.xf5_c00477{left:532.800000pt;}
.xc9_c00477{left:534.933333pt;}
.xb3_c00477{left:539.866667pt;}
.xf1_c00477{left:542.400000pt;}
.x122_c00477{left:543.466667pt;}
.x103_c00477{left:545.333333pt;}
.x10b_c00477{left:547.866667pt;}
.xd9_c00477{left:548.800000pt;}
.xc2_c00477{left:549.733333pt;}
.xd2_c00477{left:552.133333pt;}
.xe7_c00477{left:555.333333pt;}
.xb4_c00477{left:558.133333pt;}
.xad_c00477{left:559.733333pt;}
.x107_c00477{left:562.400000pt;}
.x126_c00477{left:563.866667pt;}
.xbb_c00477{left:565.733333pt;}
.xff_c00477{left:568.666667pt;}
.xa5_c00477{left:569.600000pt;}
.xb5_c00477{left:571.866667pt;}
.xae_c00477{left:574.800000pt;}
.x13b_c00477{left:576.266667pt;}
.xe1_c00477{left:578.266667pt;}
.xca_c00477{left:579.466667pt;}
.xe8_c00477{left:580.933333pt;}
.x11d_c00477{left:582.000000pt;}
.x131_c00477{left:583.200000pt;}
.xbc_c00477{left:584.666667pt;}
.x101_c00477{left:586.266667pt;}
.x118_c00477{left:588.266667pt;}
.xa6_c00477{left:590.133333pt;}
.x114_c00477{left:592.533333pt;}
.xd3_c00477{left:593.466667pt;}
.xc3_c00477{left:595.866667pt;}
.x120_c00477{left:597.333333pt;}
.xbd_c00477{left:598.400000pt;}
.x104_c00477{left:600.666667pt;}
.x108_c00477{left:601.866667pt;}
.xe9_c00477{left:603.600000pt;}
.x12b_c00477{left:604.533333pt;}
.x10c_c00477{left:605.466667pt;}
.xda_c00477{left:606.400000pt;}
.xcb_c00477{left:608.533333pt;}
.x119_c00477{left:610.400000pt;}
.xa7_c00477{left:612.800000pt;}
.x13c_c00477{left:614.800000pt;}
.xcc_c00477{left:618.800000pt;}
.xaf_c00477{left:619.866667pt;}
.x12c_c00477{left:620.800000pt;}
.xb6_c00477{left:622.133333pt;}
.x117_c00477{left:623.600000pt;}
.x111_c00477{left:624.933333pt;}
.xf2_c00477{left:625.866667pt;}
.x115_c00477{left:627.066667pt;}
.xe2_c00477{left:628.000000pt;}
.xd4_c00477{left:629.600000pt;}
.x133_c00477{left:631.200000pt;}
.xcd_c00477{left:632.266667pt;}
.x11e_c00477{left:633.200000pt;}
.xa8_c00477{left:634.266667pt;}
.xea_c00477{left:636.533333pt;}
.xbe_c00477{left:638.400000pt;}
.xdb_c00477{left:640.266667pt;}
.x134_c00477{left:643.066667pt;}
.xd5_c00477{left:644.666667pt;}
.xc4_c00477{left:646.133333pt;}
.x129_c00477{left:647.200000pt;}
.xfa_c00477{left:648.133333pt;}
.x139_c00477{left:649.866667pt;}
.xb7_c00477{left:652.800000pt;}
.xb0_c00477{left:655.733333pt;}
.x11f_c00477{left:658.133333pt;}
.x132_c00477{left:659.600000pt;}
.x116_c00477{left:661.333333pt;}
.x124_c00477{left:663.466667pt;}
.xf3_c00477{left:665.600000pt;}
.x109_c00477{left:666.533333pt;}
.x123_c00477{left:667.600000pt;}
.xd6_c00477{left:670.000000pt;}
.xf6_c00477{left:671.600000pt;}
.xdc_c00477{left:674.533333pt;}
.x12a_c00477{left:676.933333pt;}
.x10d_c00477{left:678.133333pt;}
.xa9_c00477{left:679.333333pt;}
.xe3_c00477{left:681.066667pt;}
.xc5_c00477{left:682.933333pt;}
.xbf_c00477{left:683.866667pt;}
.xf7_c00477{left:685.733333pt;}
.x10a_c00477{left:688.933333pt;}
.xce_c00477{left:689.866667pt;}
.xaa_c00477{left:691.866667pt;}
.xe4_c00477{left:692.933333pt;}
.x10e_c00477{left:694.133333pt;}
.xcf_c00477{left:696.533333pt;}
.xdd_c00477{left:697.600000pt;}
.xeb_c00477{left:699.600000pt;}
.x12d_c00477{left:701.066667pt;}
.x125_c00477{left:705.333333pt;}
.xb1_c00477{left:706.933333pt;}
.xd7_c00477{left:708.133333pt;}
.x130_c00477{left:709.066667pt;}
.xe5_c00477{left:710.266667pt;}
.xab_c00477{left:711.733333pt;}
.xc6_c00477{left:713.333333pt;}
.x112_c00477{left:714.533333pt;}
.xb8_c00477{left:716.800000pt;}
.xfb_c00477{left:718.533333pt;}
.x102_c00477{left:721.733333pt;}
.xfd_c00477{left:723.333333pt;}
.x136_c00477{left:724.400000pt;}
.x138_c00477{left:725.333333pt;}
.x105_c00477{left:726.666667pt;}
.xc7_c00477{left:727.733333pt;}
.xf4_c00477{left:728.933333pt;}
.xf8_c00477{left:730.266667pt;}
.x113_c00477{left:732.133333pt;}
.x11a_c00477{left:733.866667pt;}
.xef_c00477{left:735.733333pt;}
.x12e_c00477{left:737.200000pt;}
.xde_c00477{left:739.200000pt;}
.xec_c00477{left:740.933333pt;}
.xb9_c00477{left:742.666667pt;}
.xd0_c00477{left:744.266667pt;}
.x127_c00477{left:746.000000pt;}
.xe6_c00477{left:747.066667pt;}
.x10f_c00477{left:748.533333pt;}
.xfc_c00477{left:750.800000pt;}
.xc0_c00477{left:752.266667pt;}
.xac_c00477{left:754.266667pt;}
.xed_c00477{left:755.333333pt;}
.xdf_c00477{left:757.466667pt;}
.xd1_c00477{left:758.933333pt;}
.xc1_c00477{left:760.933333pt;}
.x100_c00477{left:765.200000pt;}
.xb2_c00477{left:766.400000pt;}
.x110_c00477{left:767.733333pt;}
.x12f_c00477{left:771.733333pt;}
.x135_c00477{left:772.933333pt;}
.xd8_c00477{left:774.400000pt;}
.x13a_c00477{left:776.266667pt;}
.xfe_c00477{left:777.333333pt;}
.xc8_c00477{left:782.400000pt;}
.xf9_c00477{left:783.466667pt;}
}





/* 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_c00478 {
    display:none;
  }
  .loading-indicator_c00478.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00478 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_c00478 { 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_c00478" -> "#page-container .classname_c00478")
 */
.pf_c00478 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00478 { /* 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_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00478 { /* 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_c00478 { /* 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_c00478 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00478 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00478 {overflow:visible;}
  }
}
.c_c00478 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00478 { /* 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_c00478:after { /* webkit #35443 */
  content: '';
}
.t_c00478:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00478 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 */
}
.__c00478 { /* 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_c00478 { /* info for Javascript */
  display:none;
}
.l_c00478 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00478 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00478 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00478: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_c00478 {
    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_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00478.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_c00478 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00478;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.000000;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;}
.ma8_c00478{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.me9_c00478{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m27_c00478{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m72_c00478{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m83_c00478{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m51_c00478{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00478{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.md7_c00478{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m55_c00478{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m61_c00478{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00478{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m7_c00478{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m103_c00478{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00478{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00478{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00478{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00478{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mab_c00478{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00478{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m36_c00478{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.me_c00478{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m42_c00478{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m88_c00478{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00478{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.maa_c00478{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.ma_c00478{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00478{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m64_c00478{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00478{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00478{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m40_c00478{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00478{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m58_c00478{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.meb_c00478{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00478{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mee_c00478{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00478{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00478{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00478{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m20_c00478{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00478{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00478{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md_c00478{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00478{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m66_c00478{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m62_c00478{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m33_c00478{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6_c00478{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m59_c00478{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m23_c00478{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mff_c00478{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m52_c00478{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mae_c00478{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.md8_c00478{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m104_c00478{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m25_c00478{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m89_c00478{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00478{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m26_c00478{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m50_c00478{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00478{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00478{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m22_c00478{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00478{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00478{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m68_c00478{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m93_c00478{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m11_c00478{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m77_c00478{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00478{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m41_c00478{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00478{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mac_c00478{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00478{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4_c00478{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m109_c00478{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m94_c00478{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00478{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m10_c00478{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m73_c00478{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m17_c00478{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m65_c00478{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m78_c00478{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m34_c00478{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00478{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00478{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00478{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m79_c00478{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf_c00478{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m90_c00478{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m57_c00478{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m91_c00478{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m105_c00478{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m56_c00478{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3_c00478{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00478{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m100_c00478{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m84_c00478{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m15_c00478{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m24_c00478{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00478{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m98_c00478{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00478{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mec_c00478{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00478{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00478{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mc_c00478{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md9_c00478{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00478{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m38_c00478{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m106_c00478{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb_c00478{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.med_c00478{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m31_c00478{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m71_c00478{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m63_c00478{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m87_c00478{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m69_c00478{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00478{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m53_c00478{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m46_c00478{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m75_c00478{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00478{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m86_c00478{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md5_c00478{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00478{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m80_c00478{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00478{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00478{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00478{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00478{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00478{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00478{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00478{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m19_c00478{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m60_c00478{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m30_c00478{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m39_c00478{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2_c00478{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00478{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m12_c00478{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00478{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00478{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8_c00478{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m102_c00478{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00478{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00478{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md6_c00478{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00478{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00478{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00478{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00478{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m29_c00478{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00478{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00478{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m101_c00478{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9_c00478{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00478{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00478{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00478{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m81_c00478{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m47_c00478{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00478{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m13_c00478{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m49_c00478{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mad_c00478{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00478{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m76_c00478{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m67_c00478{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m16_c00478{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00478{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00478{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m44_c00478{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m21_c00478{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m32_c00478{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m74_c00478{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m70_c00478{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00478{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00478{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m35_c00478{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m107_c00478{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00478{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00478{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00478{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00478{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00478{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m5_c00478{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00478{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me8_c00478{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m45_c00478{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mef_c00478{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m18_c00478{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00478{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00478{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m28_c00478{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00478{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m82_c00478{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00478{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00478{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m37_c00478{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00478{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00478{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00478{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00478{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00478{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00478{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00478{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00478{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m14_c00478{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00478{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m43_c00478{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00478{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md0_c00478{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00478{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m99_c00478{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00478{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.maf_c00478{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00478{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mce_c00478{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00478{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00478{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00478{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mde_c00478{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00478{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me4_c00478{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00478{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.me3_c00478{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me0_c00478{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00478{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00478{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m48_c00478{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md1_c00478{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1_c00478{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mea_c00478{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00478{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me1_c00478{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m54_c00478{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me2_c00478{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mba_c00478{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m108_c00478{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.me5_c00478{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00478{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00478{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00478{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00478{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00478{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00478{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00478{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mda_c00478{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mca_c00478{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00478{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.md4_c00478{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00478{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00478{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00478{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00478{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m92_c00478{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00478{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m96_c00478{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00478{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md3_c00478{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me7_c00478{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m85_c00478{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00478{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00478{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m97_c00478{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.me6_c00478{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.md2_c00478{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m95_c00478{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m110_c00478{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00478{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00478{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls0_c00478{letter-spacing:0.000000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{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__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00478{word-spacing:-13.714286px;}
.ws5_c00478{word-spacing:-8.329897px;}
.ws6_c00478{word-spacing:-7.857143px;}
.ws3_c00478{word-spacing:-1.140178px;}
.ws7_c00478{word-spacing:0.000000px;}
.ws1_c00478{word-spacing:0.799257px;}
.ws0_c00478{word-spacing:6.250000px;}
.ws2_c00478{word-spacing:9.000000px;}
._0_c00478{width:26.000000px;}
.fc0_c00478{color:transparent;}
.fs4_c00478{font-size:54.000000px;}
.fs2_c00478{font-size:60.000000px;}
.fs1_c00478{font-size:66.000000px;}
.fs3_c00478{font-size:72.000000px;}
.fs0_c00478{font-size:78.000000px;}
.y0_c00478{bottom:0.000000px;}
.y69_c00478{bottom:177.900000px;}
.y68_c00478{bottom:197.100000px;}
.y35_c00478{bottom:200.100000px;}
.y67_c00478{bottom:215.100000px;}
.y34_c00478{bottom:217.800000px;}
.y66_c00478{bottom:232.800000px;}
.y33_c00478{bottom:239.700000px;}
.y65_c00478{bottom:250.800000px;}
.y32_c00478{bottom:257.700000px;}
.y64_c00478{bottom:268.500000px;}
.y31_c00478{bottom:275.400000px;}
.y63_c00478{bottom:286.500000px;}
.y30_c00478{bottom:293.100000px;}
.y62_c00478{bottom:304.200000px;}
.y2f_c00478{bottom:310.650000px;}
.y61_c00478{bottom:321.900000px;}
.y2e_c00478{bottom:332.550000px;}
.y60_c00478{bottom:347.700000px;}
.y2d_c00478{bottom:350.550000px;}
.y5f_c00478{bottom:365.400000px;}
.y2c_c00478{bottom:368.250000px;}
.y5e_c00478{bottom:383.100000px;}
.y2b_c00478{bottom:390.450000px;}
.y5d_c00478{bottom:401.100000px;}
.y2a_c00478{bottom:408.150000px;}
.y5c_c00478{bottom:418.350000px;}
.y29_c00478{bottom:426.150000px;}
.y5b_c00478{bottom:436.350000px;}
.y28_c00478{bottom:443.100000px;}
.y5a_c00478{bottom:454.050000px;}
.y27_c00478{bottom:460.800000px;}
.y59_c00478{bottom:472.050000px;}
.y26_c00478{bottom:478.500000px;}
.y58_c00478{bottom:489.750000px;}
.y25_c00478{bottom:495.600000px;}
.y57_c00478{bottom:507.450000px;}
.y24_c00478{bottom:513.300000px;}
.y56_c00478{bottom:525.150000px;}
.y23_c00478{bottom:531.000000px;}
.y55_c00478{bottom:543.150000px;}
.y22_c00478{bottom:547.950000px;}
.y54_c00478{bottom:560.850000px;}
.y21_c00478{bottom:565.650000px;}
.y53_c00478{bottom:578.850000px;}
.y20_c00478{bottom:583.650000px;}
.y52_c00478{bottom:596.100000px;}
.y1f_c00478{bottom:601.350000px;}
.y1e_c00478{bottom:619.350000px;}
.y51_c00478{bottom:621.000000px;}
.y50_c00478{bottom:635.400000px;}
.y1d_c00478{bottom:637.050000px;}
.y1c_c00478{bottom:654.750000px;}
.y4f_c00478{bottom:655.650000px;}
.y1b_c00478{bottom:672.000000px;}
.y4e_c00478{bottom:673.350000px;}
.y1a_c00478{bottom:689.700000px;}
.y4d_c00478{bottom:691.050000px;}
.y19_c00478{bottom:707.400000px;}
.y4c_c00478{bottom:708.750000px;}
.y18_c00478{bottom:725.400000px;}
.y4b_c00478{bottom:726.450000px;}
.y17_c00478{bottom:743.100000px;}
.y4a_c00478{bottom:744.150000px;}
.y16_c00478{bottom:760.800000px;}
.y49_c00478{bottom:766.500000px;}
.y15_c00478{bottom:778.500000px;}
.y48_c00478{bottom:784.500000px;}
.y14_c00478{bottom:796.200000px;}
.y47_c00478{bottom:801.300000px;}
.y13_c00478{bottom:814.200000px;}
.y46_c00478{bottom:819.300000px;}
.y12_c00478{bottom:831.450000px;}
.y45_c00478{bottom:837.000000px;}
.y11_c00478{bottom:849.450000px;}
.y44_c00478{bottom:854.700000px;}
.y10_c00478{bottom:867.150000px;}
.y43_c00478{bottom:872.700000px;}
.yf_c00478{bottom:884.850000px;}
.y42_c00478{bottom:890.400000px;}
.ye_c00478{bottom:902.550000px;}
.y41_c00478{bottom:908.100000px;}
.yd_c00478{bottom:920.250000px;}
.y40_c00478{bottom:925.350000px;}
.yc_c00478{bottom:937.950000px;}
.y3f_c00478{bottom:943.050000px;}
.yb_c00478{bottom:955.650000px;}
.y3e_c00478{bottom:961.050000px;}
.ya_c00478{bottom:973.650000px;}
.y3d_c00478{bottom:978.750000px;}
.y9_c00478{bottom:990.900000px;}
.y3c_c00478{bottom:996.450000px;}
.y8_c00478{bottom:1008.600000px;}
.y3b_c00478{bottom:1018.050000px;}
.y7_c00478{bottom:1026.600000px;}
.y3a_c00478{bottom:1036.050000px;}
.y6_c00478{bottom:1043.850000px;}
.y5_c00478{bottom:1061.850000px;}
.y39_c00478{bottom:1062.000000px;}
.y4_c00478{bottom:1079.550000px;}
.y38_c00478{bottom:1080.300000px;}
.y3_c00478{bottom:1097.250000px;}
.y37_c00478{bottom:1098.000000px;}
.y2_c00478{bottom:1114.950000px;}
.y36_c00478{bottom:1115.700000px;}
.y1_c00478{bottom:1141.500000px;}
.h6_c00478{height:54.000000px;}
.h4_c00478{height:60.000000px;}
.h3_c00478{height:66.000000px;}
.h5_c00478{height:72.000000px;}
.h2_c00478{height:78.000000px;}
.h1_c00478{height:1266.750000px;}
.h0_c00478{height:1266.839905px;}
.w0_c00478{width:958.320007px;}
.w1_c00478{width:958.500000px;}
.x0_c00478{left:0.000000px;}
.x99_c00478{left:79.200000px;}
.x42_c00478{left:95.400000px;}
.x3_c00478{left:96.450000px;}
.x7b_c00478{left:98.100000px;}
.xb_c00478{left:112.950000px;}
.x8d_c00478{left:115.200000px;}
.x66_c00478{left:118.200000px;}
.x7e_c00478{left:119.700000px;}
.x36_c00478{left:121.050000px;}
.x63_c00478{left:122.250000px;}
.x95_c00478{left:127.500000px;}
.x6d_c00478{left:129.300000px;}
.x6a_c00478{left:130.800000px;}
.x57_c00478{left:131.850000px;}
.x21_c00478{left:133.050000px;}
.x51_c00478{left:134.700000px;}
.x7f_c00478{left:136.350000px;}
.x1b_c00478{left:138.900000px;}
.x37_c00478{left:140.550000px;}
.x16_c00478{left:143.850000px;}
.xc_c00478{left:145.050000px;}
.x93_c00478{left:147.300000px;}
.x13_c00478{left:148.500000px;}
.x2e_c00478{left:149.850000px;}
.x82_c00478{left:151.050000px;}
.x7c_c00478{left:152.850000px;}
.x27_c00478{left:154.500000px;}
.x4_c00478{left:157.650000px;}
.x1c_c00478{left:159.000000px;}
.x17_c00478{left:161.550000px;}
.x52_c00478{left:162.750000px;}
.x22_c00478{left:166.200000px;}
.x4d_c00478{left:167.250000px;}
.x6b_c00478{left:168.900000px;}
.x5_c00478{left:169.950000px;}
.x98_c00478{left:171.450000px;}
.x38_c00478{left:174.750000px;}
.x6e_c00478{left:177.150000px;}
.x43_c00478{left:178.200000px;}
.x46_c00478{left:179.400000px;}
.x96_c00478{left:181.800000px;}
.xd_c00478{left:184.950000px;}
.x85_c00478{left:188.100000px;}
.x60_c00478{left:190.200000px;}
.x2f_c00478{left:191.250000px;}
.x9d_c00478{left:192.900000px;}
.x1d_c00478{left:194.700000px;}
.x6f_c00478{left:196.650000px;}
.x28_c00478{left:197.700000px;}
.x44_c00478{left:198.750000px;}
.x53_c00478{left:200.250000px;}
.x30_c00478{left:202.050000px;}
.x97_c00478{left:203.700000px;}
.x23_c00478{left:204.750000px;}
.x78_c00478{left:205.800000px;}
.x73_c00478{left:207.900000px;}
.x18_c00478{left:209.100000px;}
.x58_c00478{left:211.500000px;}
.x67_c00478{left:212.550000px;}
.x48_c00478{left:214.050000px;}
.x4a_c00478{left:215.250000px;}
.x87_c00478{left:217.050000px;}
.x31_c00478{left:218.550000px;}
.x94_c00478{left:219.750000px;}
.x29_c00478{left:221.100000px;}
.x9a_c00478{left:222.450000px;}
.x24_c00478{left:224.850000px;}
.x14_c00478{left:226.650000px;}
.x3e_c00478{left:229.050000px;}
.x59_c00478{left:232.050000px;}
.x8f_c00478{left:233.550000px;}
.x7d_c00478{left:234.600000px;}
.x5d_c00478{left:237.750000px;}
.x70_c00478{left:239.100000px;}
.x4e_c00478{left:241.050000px;}
.x6_c00478{left:243.000000px;}
.x8a_c00478{left:244.500000px;}
.x39_c00478{left:246.450000px;}
.x32_c00478{left:249.150000px;}
.x80_c00478{left:250.500000px;}
.x90_c00478{left:252.300000px;}
.x4b_c00478{left:255.150000px;}
.x33_c00478{left:257.850000px;}
.x19_c00478{left:263.100000px;}
.x5a_c00478{left:264.450000px;}
.x25_c00478{left:267.000000px;}
.x1e_c00478{left:269.550000px;}
.x88_c00478{left:270.750000px;}
.x34_c00478{left:273.750000px;}
.x54_c00478{left:275.100000px;}
.x3a_c00478{left:277.050000px;}
.x5e_c00478{left:278.100000px;}
.x2a_c00478{left:279.450000px;}
.x79_c00478{left:281.100000px;}
.x5b_c00478{left:285.300000px;}
.x2b_c00478{left:286.950000px;}
.xe_c00478{left:288.600000px;}
.x89_c00478{left:290.550000px;}
.x4c_c00478{left:291.900000px;}
.x76_c00478{left:293.550000px;}
.x1f_c00478{left:295.050000px;}
.x68_c00478{left:296.100000px;}
.xf_c00478{left:298.350000px;}
.x7_c00478{left:300.600000px;}
.x74_c00478{left:301.800000px;}
.x4f_c00478{left:304.350000px;}
.x71_c00478{left:306.450000px;}
.x83_c00478{left:310.500000px;}
.x61_c00478{left:313.350000px;}
.x81_c00478{left:315.300000px;}
.x10_c00478{left:317.850000px;}
.x3b_c00478{left:319.200000px;}
.x91_c00478{left:320.250000px;}
.x75_c00478{left:321.600000px;}
.x1_c00478{left:323.250000px;}
.x1a_c00478{left:324.300000px;}
.x55_c00478{left:325.500000px;}
.x5f_c00478{left:328.200000px;}
.x2c_c00478{left:329.850000px;}
.x5c_c00478{left:331.050000px;}
.x3f_c00478{left:333.750000px;}
.x7a_c00478{left:336.450000px;}
.x64_c00478{left:337.800000px;}
.x49_c00478{left:339.300000px;}
.x11_c00478{left:340.500000px;}
.x9b_c00478{left:341.550000px;}
.x40_c00478{left:342.750000px;}
.x50_c00478{left:347.550000px;}
.x9c_c00478{left:349.800000px;}
.x8_c00478{left:351.300000px;}
.x8b_c00478{left:353.250000px;}
.x20_c00478{left:355.200000px;}
.x56_c00478{left:356.850000px;}
.x92_c00478{left:357.900000px;}
.x41_c00478{left:359.250000px;}
.x26_c00478{left:361.650000px;}
.x9_c00478{left:363.600000px;}
.x69_c00478{left:365.550000px;}
.x77_c00478{left:366.600000px;}
.x84_c00478{left:369.900000px;}
.x35_c00478{left:371.250000px;}
.x3c_c00478{left:373.200000px;}
.x65_c00478{left:374.850000px;}
.x2d_c00478{left:376.350000px;}
.x45_c00478{left:377.700000px;}
.x47_c00478{left:380.250000px;}
.x15_c00478{left:381.750000px;}
.x86_c00478{left:382.950000px;}
.x72_c00478{left:384.300000px;}
.x12_c00478{left:385.800000px;}
.x6c_c00478{left:388.050000px;}
.x62_c00478{left:394.350000px;}
.x8e_c00478{left:395.550000px;}
.xa_c00478{left:397.050000px;}
.x3d_c00478{left:400.200000px;}
.x8c_c00478{left:417.300000px;}
.x9e_c00478{left:420.150000px;}
.xb4_c00478{left:431.700000px;}
.x104_c00478{left:444.900000px;}
.x9f_c00478{left:448.500000px;}
.xd9_c00478{left:450.150000px;}
.x108_c00478{left:460.050000px;}
.xb2_c00478{left:466.800000px;}
.xbb_c00478{left:470.850000px;}
.x132_c00478{left:472.200000px;}
.xd0_c00478{left:473.550000px;}
.xea_c00478{left:474.900000px;}
.xb5_c00478{left:476.400000px;}
.xad_c00478{left:479.550000px;}
.xda_c00478{left:481.800000px;}
.x114_c00478{left:483.150000px;}
.x105_c00478{left:485.250000px;}
.xa6_c00478{left:486.600000px;}
.xd5_c00478{left:487.650000px;}
.xff_c00478{left:492.150000px;}
.xe9_c00478{left:493.200000px;}
.x11a_c00478{left:495.450000px;}
.xdb_c00478{left:496.500000px;}
.x121_c00478{left:497.700000px;}
.xe3_c00478{left:500.700000px;}
.x10f_c00478{left:503.850000px;}
.x124_c00478{left:505.950000px;}
.xf9_c00478{left:507.300000px;}
.xf1_c00478{left:508.500000px;}
.x11d_c00478{left:511.050000px;}
.xb6_c00478{left:512.100000px;}
.x117_c00478{left:514.650000px;}
.xa7_c00478{left:515.700000px;}
.xbf_c00478{left:518.100000px;}
.x122_c00478{left:520.050000px;}
.xc4_c00478{left:521.100000px;}
.x110_c00478{left:525.150000px;}
.x133_c00478{left:526.500000px;}
.x100_c00478{left:528.150000px;}
.x12c_c00478{left:529.500000px;}
.x109_c00478{left:533.100000px;}
.xdf_c00478{left:534.750000px;}
.xe6_c00478{left:537.150000px;}
.xeb_c00478{left:538.950000px;}
.xb3_c00478{left:541.050000px;}
.xa0_c00478{left:543.150000px;}
.xc5_c00478{left:544.800000px;}
.xc9_c00478{left:546.600000px;}
.xfa_c00478{left:548.700000px;}
.x106_c00478{left:550.500000px;}
.xee_c00478{left:552.600000px;}
.x12f_c00478{left:554.400000px;}
.xa8_c00478{left:556.350000px;}
.x11b_c00478{left:557.400000px;}
.xf7_c00478{left:561.600000px;}
.xbc_c00478{left:563.700000px;}
.xc6_c00478{left:566.400000px;}
.xc0_c00478{left:571.050000px;}
.xfd_c00478{left:572.400000px;}
.x134_c00478{left:574.050000px;}
.xa1_c00478{left:576.300000px;}
.x125_c00478{left:578.250000px;}
.xdc_c00478{left:579.300000px;}
.x10a_c00478{left:580.650000px;}
.xca_c00478{left:582.300000px;}
.xe0_c00478{left:584.100000px;}
.xd4_c00478{left:588.000000px;}
.xf2_c00478{left:590.550000px;}
.xe7_c00478{left:592.200000px;}
.xd1_c00478{left:593.850000px;}
.xae_c00478{left:596.550000px;}
.xb7_c00478{left:597.750000px;}
.xd6_c00478{left:599.250000px;}
.xa2_c00478{left:600.750000px;}
.xbd_c00478{left:603.300000px;}
.xa9_c00478{left:604.950000px;}
.x111_c00478{left:606.600000px;}
.xec_c00478{left:610.200000px;}
.x126_c00478{left:612.450000px;}
.xf3_c00478{left:613.650000px;}
.x130_c00478{left:615.600000px;}
.xb8_c00478{left:617.250000px;}
.xaf_c00478{left:618.450000px;}
.x118_c00478{left:620.550000px;}
.xe1_c00478{left:622.650000px;}
.x129_c00478{left:624.300000px;}
.xa3_c00478{left:625.950000px;}
.xe4_c00478{left:627.750000px;}
.x123_c00478{left:630.150000px;}
.x10d_c00478{left:631.350000px;}
.xf4_c00478{left:632.400000px;}
.xcb_c00478{left:634.200000px;}
.x127_c00478{left:635.700000px;}
.xe5_c00478{left:638.400000px;}
.x113_c00478{left:641.100000px;}
.xef_c00478{left:643.350000px;}
.x11e_c00478{left:644.550000px;}
.x10b_c00478{left:645.750000px;}
.xd2_c00478{left:646.800000px;}
.xed_c00478{left:648.750000px;}
.x135_c00478{left:650.700000px;}
.x12e_c00478{left:651.750000px;}
.xc1_c00478{left:652.800000px;}
.xb0_c00478{left:654.450000px;}
.x112_c00478{left:656.700000px;}
.xaa_c00478{left:660.750000px;}
.xcc_c00478{left:662.700000px;}
.xdd_c00478{left:666.450000px;}
.x11f_c00478{left:670.800000px;}
.xd7_c00478{left:671.850000px;}
.x101_c00478{left:673.050000px;}
.xab_c00478{left:674.400000px;}
.xf5_c00478{left:677.100000px;}
.x115_c00478{left:679.650000px;}
.xa4_c00478{left:681.450000px;}
.x107_c00478{left:684.900000px;}
.xb9_c00478{left:688.200000px;}
.x102_c00478{left:689.550000px;}
.xc2_c00478{left:690.600000px;}
.xc7_c00478{left:692.100000px;}
.xbe_c00478{left:694.050000px;}
.xfb_c00478{left:696.150000px;}
.x128_c00478{left:697.650000px;}
.x12a_c00478{left:699.900000px;}
.xcd_c00478{left:702.300000px;}
.xfe_c00478{left:703.800000px;}
.xb1_c00478{left:708.450000px;}
.xc3_c00478{left:711.150000px;}
.xf0_c00478{left:712.500000px;}
.xe8_c00478{left:713.850000px;}
.x10e_c00478{left:715.200000px;}
.xd3_c00478{left:716.550000px;}
.xd8_c00478{left:717.900000px;}
.xf6_c00478{left:719.250000px;}
.x11c_c00478{left:720.600000px;}
.x120_c00478{left:721.650000px;}
.xac_c00478{left:723.300000px;}
.x12d_c00478{left:724.650000px;}
.x116_c00478{left:725.700000px;}
.xce_c00478{left:727.800000px;}
.x12b_c00478{left:730.200000px;}
.x10c_c00478{left:731.850000px;}
.xfc_c00478{left:733.650000px;}
.x103_c00478{left:736.350000px;}
.x2_c00478{left:739.800000px;}
.xe2_c00478{left:741.450000px;}
.xa5_c00478{left:744.750000px;}
.xba_c00478{left:746.850000px;}
.xc8_c00478{left:748.200000px;}
.x131_c00478{left:749.850000px;}
.xf8_c00478{left:752.400000px;}
.xcf_c00478{left:754.350000px;}
.x119_c00478{left:758.850000px;}
.xde_c00478{left:762.600000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws4_c00478{word-spacing:-12.190476pt;}
.ws5_c00478{word-spacing:-7.404353pt;}
.ws6_c00478{word-spacing:-6.984127pt;}
.ws3_c00478{word-spacing:-1.013491pt;}
.ws7_c00478{word-spacing:0.000000pt;}
.ws1_c00478{word-spacing:0.710450pt;}
.ws0_c00478{word-spacing:5.555556pt;}
.ws2_c00478{word-spacing:8.000000pt;}
._0_c00478{width:23.111111pt;}
.fs4_c00478{font-size:48.000000pt;}
.fs2_c00478{font-size:53.333333pt;}
.fs1_c00478{font-size:58.666667pt;}
.fs3_c00478{font-size:64.000000pt;}
.fs0_c00478{font-size:69.333333pt;}
.y0_c00478{bottom:0.000000pt;}
.y69_c00478{bottom:158.133333pt;}
.y68_c00478{bottom:175.200000pt;}
.y35_c00478{bottom:177.866667pt;}
.y67_c00478{bottom:191.200000pt;}
.y34_c00478{bottom:193.600000pt;}
.y66_c00478{bottom:206.933333pt;}
.y33_c00478{bottom:213.066667pt;}
.y65_c00478{bottom:222.933333pt;}
.y32_c00478{bottom:229.066667pt;}
.y64_c00478{bottom:238.666667pt;}
.y31_c00478{bottom:244.800000pt;}
.y63_c00478{bottom:254.666667pt;}
.y30_c00478{bottom:260.533333pt;}
.y62_c00478{bottom:270.400000pt;}
.y2f_c00478{bottom:276.133333pt;}
.y61_c00478{bottom:286.133333pt;}
.y2e_c00478{bottom:295.600000pt;}
.y60_c00478{bottom:309.066667pt;}
.y2d_c00478{bottom:311.600000pt;}
.y5f_c00478{bottom:324.800000pt;}
.y2c_c00478{bottom:327.333333pt;}
.y5e_c00478{bottom:340.533333pt;}
.y2b_c00478{bottom:347.066667pt;}
.y5d_c00478{bottom:356.533333pt;}
.y2a_c00478{bottom:362.800000pt;}
.y5c_c00478{bottom:371.866667pt;}
.y29_c00478{bottom:378.800000pt;}
.y5b_c00478{bottom:387.866667pt;}
.y28_c00478{bottom:393.866667pt;}
.y5a_c00478{bottom:403.600000pt;}
.y27_c00478{bottom:409.600000pt;}
.y59_c00478{bottom:419.600000pt;}
.y26_c00478{bottom:425.333333pt;}
.y58_c00478{bottom:435.333333pt;}
.y25_c00478{bottom:440.533333pt;}
.y57_c00478{bottom:451.066667pt;}
.y24_c00478{bottom:456.266667pt;}
.y56_c00478{bottom:466.800000pt;}
.y23_c00478{bottom:472.000000pt;}
.y55_c00478{bottom:482.800000pt;}
.y22_c00478{bottom:487.066667pt;}
.y54_c00478{bottom:498.533333pt;}
.y21_c00478{bottom:502.800000pt;}
.y53_c00478{bottom:514.533333pt;}
.y20_c00478{bottom:518.800000pt;}
.y52_c00478{bottom:529.866667pt;}
.y1f_c00478{bottom:534.533333pt;}
.y1e_c00478{bottom:550.533333pt;}
.y51_c00478{bottom:552.000000pt;}
.y50_c00478{bottom:564.800000pt;}
.y1d_c00478{bottom:566.266667pt;}
.y1c_c00478{bottom:582.000000pt;}
.y4f_c00478{bottom:582.800000pt;}
.y1b_c00478{bottom:597.333333pt;}
.y4e_c00478{bottom:598.533333pt;}
.y1a_c00478{bottom:613.066667pt;}
.y4d_c00478{bottom:614.266667pt;}
.y19_c00478{bottom:628.800000pt;}
.y4c_c00478{bottom:630.000000pt;}
.y18_c00478{bottom:644.800000pt;}
.y4b_c00478{bottom:645.733333pt;}
.y17_c00478{bottom:660.533333pt;}
.y4a_c00478{bottom:661.466667pt;}
.y16_c00478{bottom:676.266667pt;}
.y49_c00478{bottom:681.333333pt;}
.y15_c00478{bottom:692.000000pt;}
.y48_c00478{bottom:697.333333pt;}
.y14_c00478{bottom:707.733333pt;}
.y47_c00478{bottom:712.266667pt;}
.y13_c00478{bottom:723.733333pt;}
.y46_c00478{bottom:728.266667pt;}
.y12_c00478{bottom:739.066667pt;}
.y45_c00478{bottom:744.000000pt;}
.y11_c00478{bottom:755.066667pt;}
.y44_c00478{bottom:759.733333pt;}
.y10_c00478{bottom:770.800000pt;}
.y43_c00478{bottom:775.733333pt;}
.yf_c00478{bottom:786.533333pt;}
.y42_c00478{bottom:791.466667pt;}
.ye_c00478{bottom:802.266667pt;}
.y41_c00478{bottom:807.200000pt;}
.yd_c00478{bottom:818.000000pt;}
.y40_c00478{bottom:822.533333pt;}
.yc_c00478{bottom:833.733333pt;}
.y3f_c00478{bottom:838.266667pt;}
.yb_c00478{bottom:849.466667pt;}
.y3e_c00478{bottom:854.266667pt;}
.ya_c00478{bottom:865.466667pt;}
.y3d_c00478{bottom:870.000000pt;}
.y9_c00478{bottom:880.800000pt;}
.y3c_c00478{bottom:885.733333pt;}
.y8_c00478{bottom:896.533333pt;}
.y3b_c00478{bottom:904.933333pt;}
.y7_c00478{bottom:912.533333pt;}
.y3a_c00478{bottom:920.933333pt;}
.y6_c00478{bottom:927.866667pt;}
.y5_c00478{bottom:943.866667pt;}
.y39_c00478{bottom:944.000000pt;}
.y4_c00478{bottom:959.600000pt;}
.y38_c00478{bottom:960.266667pt;}
.y3_c00478{bottom:975.333333pt;}
.y37_c00478{bottom:976.000000pt;}
.y2_c00478{bottom:991.066667pt;}
.y36_c00478{bottom:991.733333pt;}
.y1_c00478{bottom:1014.666667pt;}
.h6_c00478{height:48.000000pt;}
.h4_c00478{height:53.333333pt;}
.h3_c00478{height:58.666667pt;}
.h5_c00478{height:64.000000pt;}
.h2_c00478{height:69.333333pt;}
.h1_c00478{height:1126.000000pt;}
.h0_c00478{height:1126.079916pt;}
.w0_c00478{width:851.840007pt;}
.w1_c00478{width:852.000000pt;}
.x0_c00478{left:0.000000pt;}
.x99_c00478{left:70.400000pt;}
.x42_c00478{left:84.800000pt;}
.x3_c00478{left:85.733333pt;}
.x7b_c00478{left:87.200000pt;}
.xb_c00478{left:100.400000pt;}
.x8d_c00478{left:102.400000pt;}
.x66_c00478{left:105.066667pt;}
.x7e_c00478{left:106.400000pt;}
.x36_c00478{left:107.600000pt;}
.x63_c00478{left:108.666667pt;}
.x95_c00478{left:113.333333pt;}
.x6d_c00478{left:114.933333pt;}
.x6a_c00478{left:116.266667pt;}
.x57_c00478{left:117.200000pt;}
.x21_c00478{left:118.266667pt;}
.x51_c00478{left:119.733333pt;}
.x7f_c00478{left:121.200000pt;}
.x1b_c00478{left:123.466667pt;}
.x37_c00478{left:124.933333pt;}
.x16_c00478{left:127.866667pt;}
.xc_c00478{left:128.933333pt;}
.x93_c00478{left:130.933333pt;}
.x13_c00478{left:132.000000pt;}
.x2e_c00478{left:133.200000pt;}
.x82_c00478{left:134.266667pt;}
.x7c_c00478{left:135.866667pt;}
.x27_c00478{left:137.333333pt;}
.x4_c00478{left:140.133333pt;}
.x1c_c00478{left:141.333333pt;}
.x17_c00478{left:143.600000pt;}
.x52_c00478{left:144.666667pt;}
.x22_c00478{left:147.733333pt;}
.x4d_c00478{left:148.666667pt;}
.x6b_c00478{left:150.133333pt;}
.x5_c00478{left:151.066667pt;}
.x98_c00478{left:152.400000pt;}
.x38_c00478{left:155.333333pt;}
.x6e_c00478{left:157.466667pt;}
.x43_c00478{left:158.400000pt;}
.x46_c00478{left:159.466667pt;}
.x96_c00478{left:161.600000pt;}
.xd_c00478{left:164.400000pt;}
.x85_c00478{left:167.200000pt;}
.x60_c00478{left:169.066667pt;}
.x2f_c00478{left:170.000000pt;}
.x9d_c00478{left:171.466667pt;}
.x1d_c00478{left:173.066667pt;}
.x6f_c00478{left:174.800000pt;}
.x28_c00478{left:175.733333pt;}
.x44_c00478{left:176.666667pt;}
.x53_c00478{left:178.000000pt;}
.x30_c00478{left:179.600000pt;}
.x97_c00478{left:181.066667pt;}
.x23_c00478{left:182.000000pt;}
.x78_c00478{left:182.933333pt;}
.x73_c00478{left:184.800000pt;}
.x18_c00478{left:185.866667pt;}
.x58_c00478{left:188.000000pt;}
.x67_c00478{left:188.933333pt;}
.x48_c00478{left:190.266667pt;}
.x4a_c00478{left:191.333333pt;}
.x87_c00478{left:192.933333pt;}
.x31_c00478{left:194.266667pt;}
.x94_c00478{left:195.333333pt;}
.x29_c00478{left:196.533333pt;}
.x9a_c00478{left:197.733333pt;}
.x24_c00478{left:199.866667pt;}
.x14_c00478{left:201.466667pt;}
.x3e_c00478{left:203.600000pt;}
.x59_c00478{left:206.266667pt;}
.x8f_c00478{left:207.600000pt;}
.x7d_c00478{left:208.533333pt;}
.x5d_c00478{left:211.333333pt;}
.x70_c00478{left:212.533333pt;}
.x4e_c00478{left:214.266667pt;}
.x6_c00478{left:216.000000pt;}
.x8a_c00478{left:217.333333pt;}
.x39_c00478{left:219.066667pt;}
.x32_c00478{left:221.466667pt;}
.x80_c00478{left:222.666667pt;}
.x90_c00478{left:224.266667pt;}
.x4b_c00478{left:226.800000pt;}
.x33_c00478{left:229.200000pt;}
.x19_c00478{left:233.866667pt;}
.x5a_c00478{left:235.066667pt;}
.x25_c00478{left:237.333333pt;}
.x1e_c00478{left:239.600000pt;}
.x88_c00478{left:240.666667pt;}
.x34_c00478{left:243.333333pt;}
.x54_c00478{left:244.533333pt;}
.x3a_c00478{left:246.266667pt;}
.x5e_c00478{left:247.200000pt;}
.x2a_c00478{left:248.400000pt;}
.x79_c00478{left:249.866667pt;}
.x5b_c00478{left:253.600000pt;}
.x2b_c00478{left:255.066667pt;}
.xe_c00478{left:256.533333pt;}
.x89_c00478{left:258.266667pt;}
.x4c_c00478{left:259.466667pt;}
.x76_c00478{left:260.933333pt;}
.x1f_c00478{left:262.266667pt;}
.x68_c00478{left:263.200000pt;}
.xf_c00478{left:265.200000pt;}
.x7_c00478{left:267.200000pt;}
.x74_c00478{left:268.266667pt;}
.x4f_c00478{left:270.533333pt;}
.x71_c00478{left:272.400000pt;}
.x83_c00478{left:276.000000pt;}
.x61_c00478{left:278.533333pt;}
.x81_c00478{left:280.266667pt;}
.x10_c00478{left:282.533333pt;}
.x3b_c00478{left:283.733333pt;}
.x91_c00478{left:284.666667pt;}
.x75_c00478{left:285.866667pt;}
.x1_c00478{left:287.333333pt;}
.x1a_c00478{left:288.266667pt;}
.x55_c00478{left:289.333333pt;}
.x5f_c00478{left:291.733333pt;}
.x2c_c00478{left:293.200000pt;}
.x5c_c00478{left:294.266667pt;}
.x3f_c00478{left:296.666667pt;}
.x7a_c00478{left:299.066667pt;}
.x64_c00478{left:300.266667pt;}
.x49_c00478{left:301.600000pt;}
.x11_c00478{left:302.666667pt;}
.x9b_c00478{left:303.600000pt;}
.x40_c00478{left:304.666667pt;}
.x50_c00478{left:308.933333pt;}
.x9c_c00478{left:310.933333pt;}
.x8_c00478{left:312.266667pt;}
.x8b_c00478{left:314.000000pt;}
.x20_c00478{left:315.733333pt;}
.x56_c00478{left:317.200000pt;}
.x92_c00478{left:318.133333pt;}
.x41_c00478{left:319.333333pt;}
.x26_c00478{left:321.466667pt;}
.x9_c00478{left:323.200000pt;}
.x69_c00478{left:324.933333pt;}
.x77_c00478{left:325.866667pt;}
.x84_c00478{left:328.800000pt;}
.x35_c00478{left:330.000000pt;}
.x3c_c00478{left:331.733333pt;}
.x65_c00478{left:333.200000pt;}
.x2d_c00478{left:334.533333pt;}
.x45_c00478{left:335.733333pt;}
.x47_c00478{left:338.000000pt;}
.x15_c00478{left:339.333333pt;}
.x86_c00478{left:340.400000pt;}
.x72_c00478{left:341.600000pt;}
.x12_c00478{left:342.933333pt;}
.x6c_c00478{left:344.933333pt;}
.x62_c00478{left:350.533333pt;}
.x8e_c00478{left:351.600000pt;}
.xa_c00478{left:352.933333pt;}
.x3d_c00478{left:355.733333pt;}
.x8c_c00478{left:370.933333pt;}
.x9e_c00478{left:373.466667pt;}
.xb4_c00478{left:383.733333pt;}
.x104_c00478{left:395.466667pt;}
.x9f_c00478{left:398.666667pt;}
.xd9_c00478{left:400.133333pt;}
.x108_c00478{left:408.933333pt;}
.xb2_c00478{left:414.933333pt;}
.xbb_c00478{left:418.533333pt;}
.x132_c00478{left:419.733333pt;}
.xd0_c00478{left:420.933333pt;}
.xea_c00478{left:422.133333pt;}
.xb5_c00478{left:423.466667pt;}
.xad_c00478{left:426.266667pt;}
.xda_c00478{left:428.266667pt;}
.x114_c00478{left:429.466667pt;}
.x105_c00478{left:431.333333pt;}
.xa6_c00478{left:432.533333pt;}
.xd5_c00478{left:433.466667pt;}
.xff_c00478{left:437.466667pt;}
.xe9_c00478{left:438.400000pt;}
.x11a_c00478{left:440.400000pt;}
.xdb_c00478{left:441.333333pt;}
.x121_c00478{left:442.400000pt;}
.xe3_c00478{left:445.066667pt;}
.x10f_c00478{left:447.866667pt;}
.x124_c00478{left:449.733333pt;}
.xf9_c00478{left:450.933333pt;}
.xf1_c00478{left:452.000000pt;}
.x11d_c00478{left:454.266667pt;}
.xb6_c00478{left:455.200000pt;}
.x117_c00478{left:457.466667pt;}
.xa7_c00478{left:458.400000pt;}
.xbf_c00478{left:460.533333pt;}
.x122_c00478{left:462.266667pt;}
.xc4_c00478{left:463.200000pt;}
.x110_c00478{left:466.800000pt;}
.x133_c00478{left:468.000000pt;}
.x100_c00478{left:469.466667pt;}
.x12c_c00478{left:470.666667pt;}
.x109_c00478{left:473.866667pt;}
.xdf_c00478{left:475.333333pt;}
.xe6_c00478{left:477.466667pt;}
.xeb_c00478{left:479.066667pt;}
.xb3_c00478{left:480.933333pt;}
.xa0_c00478{left:482.800000pt;}
.xc5_c00478{left:484.266667pt;}
.xc9_c00478{left:485.866667pt;}
.xfa_c00478{left:487.733333pt;}
.x106_c00478{left:489.333333pt;}
.xee_c00478{left:491.200000pt;}
.x12f_c00478{left:492.800000pt;}
.xa8_c00478{left:494.533333pt;}
.x11b_c00478{left:495.466667pt;}
.xf7_c00478{left:499.200000pt;}
.xbc_c00478{left:501.066667pt;}
.xc6_c00478{left:503.466667pt;}
.xc0_c00478{left:507.600000pt;}
.xfd_c00478{left:508.800000pt;}
.x134_c00478{left:510.266667pt;}
.xa1_c00478{left:512.266667pt;}
.x125_c00478{left:514.000000pt;}
.xdc_c00478{left:514.933333pt;}
.x10a_c00478{left:516.133333pt;}
.xca_c00478{left:517.600000pt;}
.xe0_c00478{left:519.200000pt;}
.xd4_c00478{left:522.666667pt;}
.xf2_c00478{left:524.933333pt;}
.xe7_c00478{left:526.400000pt;}
.xd1_c00478{left:527.866667pt;}
.xae_c00478{left:530.266667pt;}
.xb7_c00478{left:531.333333pt;}
.xd6_c00478{left:532.666667pt;}
.xa2_c00478{left:534.000000pt;}
.xbd_c00478{left:536.266667pt;}
.xa9_c00478{left:537.733333pt;}
.x111_c00478{left:539.200000pt;}
.xec_c00478{left:542.400000pt;}
.x126_c00478{left:544.400000pt;}
.xf3_c00478{left:545.466667pt;}
.x130_c00478{left:547.200000pt;}
.xb8_c00478{left:548.666667pt;}
.xaf_c00478{left:549.733333pt;}
.x118_c00478{left:551.600000pt;}
.xe1_c00478{left:553.466667pt;}
.x129_c00478{left:554.933333pt;}
.xa3_c00478{left:556.400000pt;}
.xe4_c00478{left:558.000000pt;}
.x123_c00478{left:560.133333pt;}
.x10d_c00478{left:561.200000pt;}
.xf4_c00478{left:562.133333pt;}
.xcb_c00478{left:563.733333pt;}
.x127_c00478{left:565.066667pt;}
.xe5_c00478{left:567.466667pt;}
.x113_c00478{left:569.866667pt;}
.xef_c00478{left:571.866667pt;}
.x11e_c00478{left:572.933333pt;}
.x10b_c00478{left:574.000000pt;}
.xd2_c00478{left:574.933333pt;}
.xed_c00478{left:576.666667pt;}
.x135_c00478{left:578.400000pt;}
.x12e_c00478{left:579.333333pt;}
.xc1_c00478{left:580.266667pt;}
.xb0_c00478{left:581.733333pt;}
.x112_c00478{left:583.733333pt;}
.xaa_c00478{left:587.333333pt;}
.xcc_c00478{left:589.066667pt;}
.xdd_c00478{left:592.400000pt;}
.x11f_c00478{left:596.266667pt;}
.xd7_c00478{left:597.200000pt;}
.x101_c00478{left:598.266667pt;}
.xab_c00478{left:599.466667pt;}
.xf5_c00478{left:601.866667pt;}
.x115_c00478{left:604.133333pt;}
.xa4_c00478{left:605.733333pt;}
.x107_c00478{left:608.800000pt;}
.xb9_c00478{left:611.733333pt;}
.x102_c00478{left:612.933333pt;}
.xc2_c00478{left:613.866667pt;}
.xc7_c00478{left:615.200000pt;}
.xbe_c00478{left:616.933333pt;}
.xfb_c00478{left:618.800000pt;}
.x128_c00478{left:620.133333pt;}
.x12a_c00478{left:622.133333pt;}
.xcd_c00478{left:624.266667pt;}
.xfe_c00478{left:625.600000pt;}
.xb1_c00478{left:629.733333pt;}
.xc3_c00478{left:632.133333pt;}
.xf0_c00478{left:633.333333pt;}
.xe8_c00478{left:634.533333pt;}
.x10e_c00478{left:635.733333pt;}
.xd3_c00478{left:636.933333pt;}
.xd8_c00478{left:638.133333pt;}
.xf6_c00478{left:639.333333pt;}
.x11c_c00478{left:640.533333pt;}
.x120_c00478{left:641.466667pt;}
.xac_c00478{left:642.933333pt;}
.x12d_c00478{left:644.133333pt;}
.x116_c00478{left:645.066667pt;}
.xce_c00478{left:646.933333pt;}
.x12b_c00478{left:649.066667pt;}
.x10c_c00478{left:650.533333pt;}
.xfc_c00478{left:652.133333pt;}
.x103_c00478{left:654.533333pt;}
.x2_c00478{left:657.600000pt;}
.xe2_c00478{left:659.066667pt;}
.xa5_c00478{left:662.000000pt;}
.xba_c00478{left:663.866667pt;}
.xc8_c00478{left:665.066667pt;}
.x131_c00478{left:666.533333pt;}
.xf8_c00478{left:668.800000pt;}
.xcf_c00478{left:670.533333pt;}
.x119_c00478{left:674.533333pt;}
.xde_c00478{left:677.866667pt;}
}





/* 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_c00479 {
    display:none;
  }
  .loading-indicator_c00479.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00479 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_c00479 { 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_c00479" -> "#page-container .classname_c00479")
 */
.pf_c00479 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00479 { /* 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_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00479 { /* 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_c00479 { /* 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_c00479 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00479 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00479 {overflow:visible;}
  }
}
.c_c00479 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00479 { /* 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_c00479:after { /* webkit #35443 */
  content: '';
}
.t_c00479:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00479 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 */
}
.__c00479 { /* 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_c00479 { /* info for Javascript */
  display:none;
}
.l_c00479 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00479 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00479 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00479: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_c00479 {
    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_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00479.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_c00479 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00479;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.000000;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;}
.mb1_c00479{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m59_c00479{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00479{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m75_c00479{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m114_c00479{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m66_c00479{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m118_c00479{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m74_c00479{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m120_c00479{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m115_c00479{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00479{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m73_c00479{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m116_c00479{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00479{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00479{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m83_c00479{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m77_c00479{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m29_c00479{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00479{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00479{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00479{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m80_c00479{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.md6_c00479{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00479{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00479{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00479{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m45_c00479{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m111_c00479{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m79_c00479{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m41_c00479{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00479{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m43_c00479{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m62_c00479{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md_c00479{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me8_c00479{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m64_c00479{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5_c00479{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m87_c00479{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m16_c00479{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00479{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m101_c00479{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00479{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m26_c00479{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00479{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00479{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00479{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00479{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00479{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00479{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00479{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00479{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m104_c00479{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m4_c00479{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00479{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m7_c00479{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m100_c00479{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m58_c00479{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00479{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m72_c00479{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.maa_c00479{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00479{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00479{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00479{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mde_c00479{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00479{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00479{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mb_c00479{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.me0_c00479{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00479{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m55_c00479{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m113_c00479{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00479{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00479{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m13_c00479{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md5_c00479{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m99_c00479{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m97_c00479{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00479{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m42_c00479{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m40_c00479{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m67_c00479{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m46_c00479{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00479{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00479{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9_c00479{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m86_c00479{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00479{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6_c00479{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m11_c00479{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00479{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m69_c00479{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00479{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m10_c00479{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m61_c00479{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m23_c00479{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mc_c00479{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00479{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m14_c00479{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m71_c00479{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00479{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00479{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mef_c00479{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m105_c00479{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00479{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m17_c00479{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m33_c00479{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00479{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.me2_c00479{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00479{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00479{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m53_c00479{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mf_c00479{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m65_c00479{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m89_c00479{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m19_c00479{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m32_c00479{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00479{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00479{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m28_c00479{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m22_c00479{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00479{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00479{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.med_c00479{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma_c00479{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md2_c00479{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00479{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8_c00479{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.me9_c00479{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00479{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00479{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m56_c00479{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00479{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m50_c00479{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00479{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m63_c00479{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00479{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00479{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m84_c00479{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00479{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m39_c00479{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00479{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00479{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00479{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m95_c00479{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.md7_c00479{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m54_c00479{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00479{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00479{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.me5_c00479{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m88_c00479{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00479{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m35_c00479{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m85_c00479{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mab_c00479{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00479{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m90_c00479{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00479{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00479{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00479{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m15_c00479{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m34_c00479{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m98_c00479{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m31_c00479{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00479{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00479{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00479{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00479{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.md4_c00479{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00479{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00479{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00479{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m60_c00479{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mba_c00479{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m121_c00479{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m27_c00479{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mda_c00479{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00479{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00479{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00479{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00479{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m57_c00479{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mff_c00479{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m38_c00479{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m70_c00479{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00479{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00479{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m37_c00479{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me_c00479{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m78_c00479{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00479{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00479{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00479{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00479{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00479{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m48_c00479{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00479{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00479{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00479{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md8_c00479{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00479{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00479{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00479{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00479{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m12_c00479{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m93_c00479{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mec_c00479{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.md3_c00479{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00479{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00479{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m82_c00479{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m92_c00479{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mea_c00479{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m44_c00479{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me1_c00479{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00479{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00479{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mee_c00479{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mce_c00479{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mad_c00479{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00479{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00479{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m20_c00479{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m109_c00479{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m102_c00479{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00479{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00479{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00479{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.me7_c00479{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);}
.m21_c00479{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m76_c00479{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me3_c00479{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m81_c00479{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m25_c00479{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00479{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m91_c00479{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00479{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m68_c00479{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mca_c00479{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00479{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.md9_c00479{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00479{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00479{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m110_c00479{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00479{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00479{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m106_c00479{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m24_c00479{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m96_c00479{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.maf_c00479{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m49_c00479{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00479{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.me6_c00479{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00479{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m108_c00479{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m30_c00479{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mae_c00479{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m112_c00479{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.md1_c00479{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m52_c00479{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.meb_c00479{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00479{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00479{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m107_c00479{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00479{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m119_c00479{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00479{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.md0_c00479{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00479{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m103_c00479{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mac_c00479{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00479{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00479{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00479{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.me4_c00479{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00479{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00479{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m51_c00479{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00479{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m117_c00479{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m47_c00479{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m94_c00479{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00479{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00479{transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);}
.m36_c00479{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00479{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00479{transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);}
.m122_c00479{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls2_c00479{letter-spacing:0.000000px;}
.ls0_c00479{letter-spacing:50.211796px;}
.ls1_c00479{letter-spacing:56.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{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__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00479{word-spacing:-80.000000px;}
.ws8_c00479{word-spacing:-77.211796px;}
.ws1_c00479{word-spacing:-9.183314px;}
.ws9_c00479{word-spacing:-4.722222px;}
.wsa_c00479{word-spacing:-1.779221px;}
.ws13_c00479{word-spacing:0.000000px;}
.ws5_c00479{word-spacing:0.714286px;}
.wsb_c00479{word-spacing:7.698113px;}
.ws0_c00479{word-spacing:9.000000px;}
.ws4_c00479{word-spacing:11.875000px;}
.wse_c00479{word-spacing:13.428571px;}
.ws10_c00479{word-spacing:14.500000px;}
.ws6_c00479{word-spacing:16.785714px;}
.wsf_c00479{word-spacing:17.714286px;}
.ws11_c00479{word-spacing:19.994638px;}
.ws3_c00479{word-spacing:22.142857px;}
.ws12_c00479{word-spacing:23.211796px;}
.ws2_c00479{word-spacing:25.714286px;}
.wsd_c00479{word-spacing:35.333333px;}
.ws7_c00479{word-spacing:40.000000px;}
._6_c00479{margin-left:-56.000000px;}
._5_c00479{margin-left:-50.211796px;}
._3_c00479{width:43.214286px;}
._2_c00479{width:45.000000px;}
._8_c00479{width:50.211796px;}
._7_c00479{width:53.428954px;}
._1_c00479{width:55.714286px;}
._0_c00479{width:59.285714px;}
._4_c00479{width:74.166667px;}
.fc0_c00479{color:transparent;}
.fs7_c00479{font-size:24.000000px;}
.fs6_c00479{font-size:48.000000px;}
.fs5_c00479{font-size:54.000000px;}
.fs3_c00479{font-size:60.000000px;}
.fs2_c00479{font-size:66.000000px;}
.fs4_c00479{font-size:72.000000px;}
.fs1_c00479{font-size:78.000000px;}
.fs0_c00479{font-size:102.000000px;}
.y0_c00479{bottom:0.000000px;}
.y68_c00479{bottom:209.700000px;}
.y35_c00479{bottom:210.600000px;}
.y67_c00479{bottom:228.000000px;}
.y34_c00479{bottom:228.900000px;}
.y66_c00479{bottom:245.700000px;}
.y33_c00479{bottom:250.500000px;}
.y65_c00479{bottom:263.700000px;}
.y32_c00479{bottom:268.200000px;}
.y64_c00479{bottom:281.400000px;}
.y31_c00479{bottom:285.900000px;}
.y63_c00479{bottom:299.100000px;}
.y30_c00479{bottom:303.150000px;}
.y62_c00479{bottom:316.650000px;}
.y2f_c00479{bottom:320.400000px;}
.y61_c00479{bottom:333.900000px;}
.y2e_c00479{bottom:346.350000px;}
.y60_c00479{bottom:351.600000px;}
.y2d_c00479{bottom:364.650000px;}
.y5f_c00479{bottom:369.300000px;}
.y2c_c00479{bottom:382.650000px;}
.y5e_c00479{bottom:387.000000px;}
.y2b_c00479{bottom:403.950000px;}
.y69_c00479{bottom:407.100000px;}
.y5d_c00479{bottom:417.900000px;}
.y5c_c00479{bottom:421.500000px;}
.y2a_c00479{bottom:425.850000px;}
.y5b_c00479{bottom:436.350000px;}
.y29_c00479{bottom:443.850000px;}
.y5a_c00479{bottom:451.500000px;}
.y28_c00479{bottom:462.150000px;}
.y59_c00479{bottom:471.000000px;}
.y27_c00479{bottom:479.850000px;}
.y58_c00479{bottom:488.700000px;}
.y26_c00479{bottom:497.550000px;}
.y57_c00479{bottom:506.400000px;}
.y25_c00479{bottom:515.550000px;}
.y56_c00479{bottom:524.400000px;}
.y24_c00479{bottom:533.250000px;}
.y55_c00479{bottom:541.650000px;}
.y23_c00479{bottom:551.250000px;}
.y54_c00479{bottom:559.350000px;}
.y22_c00479{bottom:568.950000px;}
.y53_c00479{bottom:577.050000px;}
.y21_c00479{bottom:586.650000px;}
.y52_c00479{bottom:594.750000px;}
.y20_c00479{bottom:604.350000px;}
.y51_c00479{bottom:616.350000px;}
.y1f_c00479{bottom:622.050000px;}
.y50_c00479{bottom:634.350000px;}
.y1e_c00479{bottom:640.050000px;}
.y4f_c00479{bottom:652.350000px;}
.y1d_c00479{bottom:659.400000px;}
.y4e_c00479{bottom:669.600000px;}
.y1c_c00479{bottom:675.300000px;}
.y4d_c00479{bottom:687.600000px;}
.y1b_c00479{bottom:689.400000px;}
.y1a_c00479{bottom:702.600000px;}
.y4c_c00479{bottom:705.300000px;}
.y19_c00479{bottom:718.500000px;}
.y4b_c00479{bottom:727.200000px;}
.y18_c00479{bottom:736.950000px;}
.y4a_c00479{bottom:745.200000px;}
.y17_c00479{bottom:755.250000px;}
.y16_c00479{bottom:773.250000px;}
.y49_c00479{bottom:775.800000px;}
.y15_c00479{bottom:790.500000px;}
.y48_c00479{bottom:793.800000px;}
.y14_c00479{bottom:808.200000px;}
.y47_c00479{bottom:811.500000px;}
.y13_c00479{bottom:825.900000px;}
.y46_c00479{bottom:829.500000px;}
.y12_c00479{bottom:847.050000px;}
.y45_c00479{bottom:851.250000px;}
.y11_c00479{bottom:864.750000px;}
.y44_c00479{bottom:868.950000px;}
.y10_c00479{bottom:882.450000px;}
.y43_c00479{bottom:886.950000px;}
.yf_c00479{bottom:900.150000px;}
.y42_c00479{bottom:904.650000px;}
.ye_c00479{bottom:917.850000px;}
.y41_c00479{bottom:921.900000px;}
.yd_c00479{bottom:935.550000px;}
.y40_c00479{bottom:939.600000px;}
.yc_c00479{bottom:953.250000px;}
.y3f_c00479{bottom:957.900000px;}
.yb_c00479{bottom:970.800000px;}
.y3e_c00479{bottom:975.150000px;}
.ya_c00479{bottom:988.500000px;}
.y3d_c00479{bottom:994.950000px;}
.y3c_c00479{bottom:1010.100000px;}
.y9_c00479{bottom:1013.700000px;}
.y8_c00479{bottom:1032.450000px;}
.y3b_c00479{bottom:1035.000000px;}
.y7_c00479{bottom:1053.600000px;}
.y3a_c00479{bottom:1054.800000px;}
.y6_c00479{bottom:1071.600000px;}
.y39_c00479{bottom:1073.100000px;}
.y5_c00479{bottom:1089.600000px;}
.y38_c00479{bottom:1091.100000px;}
.y4_c00479{bottom:1107.300000px;}
.y37_c00479{bottom:1108.800000px;}
.y3_c00479{bottom:1125.000000px;}
.y36_c00479{bottom:1126.500000px;}
.y1_c00479{bottom:1150.500000px;}
.y2_c00479{bottom:1151.550000px;}
.h8_c00479{height:24.000000px;}
.h7_c00479{height:48.000000px;}
.h6_c00479{height:54.000000px;}
.h4_c00479{height:60.000000px;}
.h3_c00479{height:66.000000px;}
.h5_c00479{height:72.000000px;}
.h2_c00479{height:78.000000px;}
.h1_c00479{height:102.000000px;}
.h0_c00479{height:1278.000000px;}
.w0_c00479{width:958.320007px;}
.w1_c00479{width:958.500000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:190.800000px;}
.x1f_c00479{left:195.900000px;}
.x4b_c00479{left:196.950000px;}
.x90_c00479{left:198.000000px;}
.x98_c00479{left:200.850000px;}
.x3_c00479{left:211.650000px;}
.xb_c00479{left:213.150000px;}
.x18_c00479{left:214.500000px;}
.x79_c00479{left:216.300000px;}
.x9a_c00479{left:217.500000px;}
.x74_c00479{left:226.050000px;}
.x5c_c00479{left:227.700000px;}
.x29_c00479{left:232.200000px;}
.x9b_c00479{left:235.500000px;}
.x8e_c00479{left:237.150000px;}
.x26_c00479{left:240.150000px;}
.x2a_c00479{left:241.950000px;}
.x7d_c00479{left:243.150000px;}
.xa2_c00479{left:244.350000px;}
.xc_c00479{left:247.050000px;}
.x58_c00479{left:248.100000px;}
.x54_c00479{left:250.050000px;}
.x47_c00479{left:252.450000px;}
.xa3_c00479{left:254.850000px;}
.x64_c00479{left:255.900000px;}
.x6a_c00479{left:258.150000px;}
.x87_c00479{left:259.950000px;}
.x20_c00479{left:262.800000px;}
.x3c_c00479{left:263.850000px;}
.x91_c00479{left:265.050000px;}
.x51_c00479{left:267.450000px;}
.x5d_c00479{left:269.850000px;}
.x19_c00479{left:271.800000px;}
.x13_c00479{left:273.600000px;}
.x34_c00479{left:274.650000px;}
.x4_c00479{left:275.700000px;}
.x37_c00479{left:277.500000px;}
.x70_c00479{left:280.200000px;}
.x99_c00479{left:282.900000px;}
.x7b_c00479{left:284.250000px;}
.x8f_c00479{left:286.500000px;}
.x48_c00479{left:289.200000px;}
.x21_c00479{left:293.400000px;}
.x14_c00479{left:294.450000px;}
.x92_c00479{left:295.950000px;}
.x88_c00479{left:297.000000px;}
.x71_c00479{left:298.500000px;}
.x3d_c00479{left:300.600000px;}
.x5_c00479{left:301.650000px;}
.x5e_c00479{left:303.300000px;}
.xa0_c00479{left:306.000000px;}
.x4c_c00479{left:307.350000px;}
.x68_c00479{left:310.200000px;}
.x55_c00479{left:311.250000px;}
.x75_c00479{left:312.450000px;}
.x7e_c00479{left:314.550000px;}
.x97_c00479{left:316.050000px;}
.x3e_c00479{left:318.900000px;}
.x65_c00479{left:319.950000px;}
.x1a_c00479{left:321.900000px;}
.x6_c00479{left:324.000000px;}
.x2b_c00479{left:325.800000px;}
.xd_c00479{left:328.350000px;}
.x15_c00479{left:329.400000px;}
.x2e_c00479{left:331.950000px;}
.x7f_c00479{left:333.300000px;}
.x72_c00479{left:334.800000px;}
.x5f_c00479{left:336.000000px;}
.x3f_c00479{left:337.200000px;}
.x8a_c00479{left:338.700000px;}
.x2f_c00479{left:341.250000px;}
.x8b_c00479{left:342.300000px;}
.x82_c00479{left:344.850000px;}
.x38_c00479{left:345.900000px;}
.x59_c00479{left:348.900000px;}
.x7c_c00479{left:351.900000px;}
.x4d_c00479{left:353.100000px;}
.x22_c00479{left:355.650000px;}
.x93_c00479{left:356.850000px;}
.x85_c00479{left:358.200000px;}
.x2c_c00479{left:359.700000px;}
.x73_c00479{left:361.050000px;}
.x7_c00479{left:362.100000px;}
.x52_c00479{left:366.000000px;}
.x6b_c00479{left:369.150000px;}
.x80_c00479{left:370.350000px;}
.x60_c00479{left:371.700000px;}
.x76_c00479{left:373.650000px;}
.x7a_c00479{left:375.150000px;}
.x95_c00479{left:378.750000px;}
.x40_c00479{left:380.100000px;}
.xe_c00479{left:382.050000px;}
.x5a_c00479{left:383.400000px;}
.x1b_c00479{left:385.950000px;}
.x77_c00479{left:388.800000px;}
.x9d_c00479{left:390.300000px;}
.x39_c00479{left:393.750000px;}
.x49_c00479{left:395.400000px;}
.x43_c00479{left:397.800000px;}
.x4e_c00479{left:400.950000px;}
.xf_c00479{left:402.150000px;}
.x66_c00479{left:404.250000px;}
.x86_c00479{left:405.300000px;}
.x8c_c00479{left:406.350000px;}
.x44_c00479{left:407.550000px;}
.x8_c00479{left:411.750000px;}
.x1c_c00479{left:414.000000px;}
.x84_c00479{left:415.350000px;}
.x56_c00479{left:416.700000px;}
.x69_c00479{left:417.900000px;}
.x6c_c00479{left:419.850000px;}
.xa4_c00479{left:420.900000px;}
.x5b_c00479{left:422.550000px;}
.x35_c00479{left:425.700000px;}
.x6d_c00479{left:427.050000px;}
.x9_c00479{left:428.700000px;}
.x2d_c00479{left:432.000000px;}
.x2_c00479{left:435.900000px;}
.x1d_c00479{left:438.450000px;}
.x45_c00479{left:439.650000px;}
.x61_c00479{left:441.150000px;}
.x8d_c00479{left:442.350000px;}
.x30_c00479{left:444.900000px;}
.x27_c00479{left:447.150000px;}
.x10_c00479{left:448.200000px;}
.x41_c00479{left:450.300000px;}
.x4f_c00479{left:452.100000px;}
.x78_c00479{left:454.650000px;}
.x9e_c00479{left:455.700000px;}
.x53_c00479{left:458.100000px;}
.x23_c00479{left:459.600000px;}
.x6e_c00479{left:460.950000px;}
.x46_c00479{left:462.000000px;}
.x36_c00479{left:464.550000px;}
.x16_c00479{left:465.750000px;}
.x11_c00479{left:468.750000px;}
.x31_c00479{left:470.400000px;}
.x9f_c00479{left:471.600000px;}
.x94_c00479{left:472.800000px;}
.x81_c00479{left:474.750000px;}
.x24_c00479{left:477.600000px;}
.x67_c00479{left:480.600000px;}
.x4a_c00479{left:483.000000px;}
.x89_c00479{left:484.200000px;}
.x3a_c00479{left:485.550000px;}
.x6f_c00479{left:488.250000px;}
.x9c_c00479{left:489.600000px;}
.x42_c00479{left:490.950000px;}
.x57_c00479{left:493.950000px;}
.x17_c00479{left:495.300000px;}
.x32_c00479{left:496.650000px;}
.x62_c00479{left:499.050000px;}
.x96_c00479{left:500.850000px;}
.xa_c00479{left:502.200000px;}
.x50_c00479{left:503.550000px;}
.xa1_c00479{left:505.800000px;}
.x28_c00479{left:506.850000px;}
.x1e_c00479{left:510.450000px;}
.x33_c00479{left:512.550000px;}
.x25_c00479{left:514.350000px;}
.x83_c00479{left:515.400000px;}
.x63_c00479{left:517.050000px;}
.x3b_c00479{left:519.000000px;}
.x12_c00479{left:522.000000px;}
.xa5_c00479{left:541.200000px;}
.xce_c00479{left:549.000000px;}
.x106_c00479{left:550.050000px;}
.x12e_c00479{left:551.850000px;}
.xa6_c00479{left:564.900000px;}
.xba_c00479{left:565.950000px;}
.xda_c00479{left:567.900000px;}
.x122_c00479{left:568.950000px;}
.x112_c00479{left:570.300000px;}
.xff_c00479{left:579.150000px;}
.x13b_c00479{left:580.350000px;}
.x10a_c00479{left:586.800000px;}
.x11c_c00479{left:588.600000px;}
.xcb_c00479{left:590.550000px;}
.x123_c00479{left:591.600000px;}
.xdb_c00479{left:593.400000px;}
.x103_c00479{left:594.600000px;}
.xe0_c00479{left:595.950000px;}
.x134_c00479{left:597.600000px;}
.xbb_c00479{left:598.650000px;}
.xa7_c00479{left:600.900000px;}
.xd5_c00479{left:602.100000px;}
.x148_c00479{left:603.750000px;}
.xcf_c00479{left:606.600000px;}
.x131_c00479{left:608.250000px;}
.xfc_c00479{left:609.900000px;}
.x118_c00479{left:611.700000px;}
.xe8_c00479{left:613.950000px;}
.x10e_c00479{left:616.050000px;}
.xa8_c00479{left:617.850000px;}
.x149_c00479{left:618.900000px;}
.x100_c00479{left:620.550000px;}
.xf0_c00479{left:621.600000px;}
.xe1_c00479{left:623.700000px;}
.xb1_c00479{left:626.250000px;}
.xd6_c00479{left:628.350000px;}
.xbc_c00479{left:630.300000px;}
.xd2_c00479{left:631.800000px;}
.x147_c00479{left:632.850000px;}
.xe9_c00479{left:634.050000px;}
.x12b_c00479{left:637.350000px;}
.x13e_c00479{left:638.700000px;}
.xcc_c00479{left:639.900000px;}
.x119_c00479{left:642.000000px;}
.xf1_c00479{left:643.200000px;}
.xb2_c00479{left:644.250000px;}
.xd0_c00479{left:645.900000px;}
.x145_c00479{left:648.750000px;}
.xbd_c00479{left:651.900000px;}
.xa9_c00479{left:653.550000px;}
.x116_c00479{left:655.500000px;}
.xdc_c00479{left:659.250000px;}
.x132_c00479{left:660.450000px;}
.x143_c00479{left:662.100000px;}
.xfa_c00479{left:664.200000px;}
.xbe_c00479{left:665.250000px;}
.x135_c00479{left:666.450000px;}
.xcd_c00479{left:668.400000px;}
.xaa_c00479{left:670.050000px;}
.x12f_c00479{left:672.000000px;}
.xed_c00479{left:673.950000px;}
.xe2_c00479{left:675.150000px;}
.xd7_c00479{left:678.750000px;}
.x104_c00479{left:679.950000px;}
.xbf_c00479{left:681.150000px;}
.xd1_c00479{left:682.200000px;}
.x124_c00479{left:683.700000px;}
.x10b_c00479{left:684.750000px;}
.xf2_c00479{left:686.100000px;}
.xc6_c00479{left:687.150000px;}
.x14a_c00479{left:689.100000px;}
.x11d_c00479{left:690.150000px;}
.xb3_c00479{left:691.800000px;}
.xfd_c00479{left:694.500000px;}
.x128_c00479{left:696.450000px;}
.xee_c00479{left:697.650000px;}
.xea_c00479{left:699.900000px;}
.x136_c00479{left:701.250000px;}
.xab_c00479{left:704.250000px;}
.xd8_c00479{left:706.500000px;}
.xb4_c00479{left:708.750000px;}
.xf3_c00479{left:710.250000px;}
.xc7_c00479{left:711.600000px;}
.x107_c00479{left:712.800000px;}
.xc0_c00479{left:714.300000px;}
.x146_c00479{left:717.300000px;}
.xdd_c00479{left:718.350000px;}
.xac_c00479{left:719.700000px;}
.x125_c00479{left:720.750000px;}
.x10c_c00479{left:722.250000px;}
.x12c_c00479{left:723.450000px;}
.xf7_c00479{left:725.550000px;}
.xb5_c00479{left:727.050000px;}
.x120_c00479{left:729.450000px;}
.x140_c00479{left:730.950000px;}
.xe3_c00479{left:734.550000px;}
.xd3_c00479{left:735.900000px;}
.xc1_c00479{left:737.400000px;}
.x14b_c00479{left:741.000000px;}
.xde_c00479{left:743.250000px;}
.x137_c00479{left:744.300000px;}
.xeb_c00479{left:746.250000px;}
.xad_c00479{left:750.300000px;}
.x108_c00479{left:751.350000px;}
.x11a_c00479{left:753.450000px;}
.x133_c00479{left:756.150000px;}
.x138_c00479{left:759.000000px;}
.xe4_c00479{left:760.500000px;}
.x117_c00479{left:762.450000px;}
.xfb_c00479{left:765.150000px;}
.xb6_c00479{left:766.950000px;}
.xf4_c00479{left:768.900000px;}
.xfe_c00479{left:771.900000px;}
.x10f_c00479{left:773.700000px;}
.xb7_c00479{left:775.650000px;}
.xd9_c00479{left:776.700000px;}
.xc2_c00479{left:779.850000px;}
.x11e_c00479{left:781.500000px;}
.x12d_c00479{left:783.150000px;}
.xf8_c00479{left:784.200000px;}
.xe6_c00479{left:785.700000px;}
.xc8_c00479{left:786.750000px;}
.x139_c00479{left:787.950000px;}
.xc3_c00479{left:792.150000px;}
.x129_c00479{left:793.200000px;}
.x13c_c00479{left:795.000000px;}
.x10d_c00479{left:797.100000px;}
.xae_c00479{left:798.900000px;}
.x11f_c00479{left:803.100000px;}
.x113_c00479{left:804.300000px;}
.x130_c00479{left:805.800000px;}
.x11b_c00479{left:807.450000px;}
.x105_c00479{left:812.100000px;}
.x101_c00479{left:813.150000px;}
.xe5_c00479{left:814.500000px;}
.x13d_c00479{left:815.850000px;}
.x13f_c00479{left:817.800000px;}
.xdf_c00479{left:819.150000px;}
.xb8_c00479{left:820.350000px;}
.x114_c00479{left:823.050000px;}
.xc4_c00479{left:824.250000px;}
.x110_c00479{left:828.000000px;}
.xd4_c00479{left:830.700000px;}
.x121_c00479{left:833.550000px;}
.x102_c00479{left:834.750000px;}
.xec_c00479{left:836.550000px;}
.x12a_c00479{left:838.950000px;}
.xaf_c00479{left:840.300000px;}
.xc9_c00479{left:841.500000px;}
.x127_c00479{left:843.000000px;}
.x13a_c00479{left:844.050000px;}
.x142_c00479{left:846.150000px;}
.xc5_c00479{left:848.700000px;}
.xf9_c00479{left:851.100000px;}
.xf5_c00479{left:852.150000px;}
.x109_c00479{left:854.250000px;}
.x115_c00479{left:857.250000px;}
.x111_c00479{left:858.600000px;}
.x144_c00479{left:860.550000px;}
.xb0_c00479{left:861.600000px;}
.xb9_c00479{left:863.250000px;}
.xe7_c00479{left:870.600000px;}
.xf6_c00479{left:871.650000px;}
.x14d_c00479{left:873.000000px;}
.xef_c00479{left:874.050000px;}
.x14c_c00479{left:875.700000px;}
.x126_c00479{left:877.350000px;}
.xca_c00479{left:882.150000px;}
.x141_c00479{left:883.650000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls2_c00479{letter-spacing:0.000000pt;}
.ls0_c00479{letter-spacing:44.632708pt;}
.ls1_c00479{letter-spacing:49.777778pt;}
.wsc_c00479{word-spacing:-71.111111pt;}
.ws8_c00479{word-spacing:-68.632708pt;}
.ws1_c00479{word-spacing:-8.162946pt;}
.ws9_c00479{word-spacing:-4.197531pt;}
.wsa_c00479{word-spacing:-1.581530pt;}
.ws13_c00479{word-spacing:0.000000pt;}
.ws5_c00479{word-spacing:0.634921pt;}
.wsb_c00479{word-spacing:6.842767pt;}
.ws0_c00479{word-spacing:8.000000pt;}
.ws4_c00479{word-spacing:10.555556pt;}
.wse_c00479{word-spacing:11.936508pt;}
.ws10_c00479{word-spacing:12.888889pt;}
.ws6_c00479{word-spacing:14.920635pt;}
.wsf_c00479{word-spacing:15.746032pt;}
.ws11_c00479{word-spacing:17.773012pt;}
.ws3_c00479{word-spacing:19.682540pt;}
.ws12_c00479{word-spacing:20.632708pt;}
.ws2_c00479{word-spacing:22.857143pt;}
.wsd_c00479{word-spacing:31.407407pt;}
.ws7_c00479{word-spacing:35.555556pt;}
._6_c00479{margin-left:-49.777778pt;}
._5_c00479{margin-left:-44.632708pt;}
._3_c00479{width:38.412698pt;}
._2_c00479{width:40.000000pt;}
._8_c00479{width:44.632708pt;}
._7_c00479{width:47.492404pt;}
._1_c00479{width:49.523810pt;}
._0_c00479{width:52.698413pt;}
._4_c00479{width:65.925926pt;}
.fs7_c00479{font-size:21.333333pt;}
.fs6_c00479{font-size:42.666667pt;}
.fs5_c00479{font-size:48.000000pt;}
.fs3_c00479{font-size:53.333333pt;}
.fs2_c00479{font-size:58.666667pt;}
.fs4_c00479{font-size:64.000000pt;}
.fs1_c00479{font-size:69.333333pt;}
.fs0_c00479{font-size:90.666667pt;}
.y0_c00479{bottom:0.000000pt;}
.y68_c00479{bottom:186.400000pt;}
.y35_c00479{bottom:187.200000pt;}
.y67_c00479{bottom:202.666667pt;}
.y34_c00479{bottom:203.466667pt;}
.y66_c00479{bottom:218.400000pt;}
.y33_c00479{bottom:222.666667pt;}
.y65_c00479{bottom:234.400000pt;}
.y32_c00479{bottom:238.400000pt;}
.y64_c00479{bottom:250.133333pt;}
.y31_c00479{bottom:254.133333pt;}
.y63_c00479{bottom:265.866667pt;}
.y30_c00479{bottom:269.466667pt;}
.y62_c00479{bottom:281.466667pt;}
.y2f_c00479{bottom:284.800000pt;}
.y61_c00479{bottom:296.800000pt;}
.y2e_c00479{bottom:307.866667pt;}
.y60_c00479{bottom:312.533333pt;}
.y2d_c00479{bottom:324.133333pt;}
.y5f_c00479{bottom:328.266667pt;}
.y2c_c00479{bottom:340.133333pt;}
.y5e_c00479{bottom:344.000000pt;}
.y2b_c00479{bottom:359.066667pt;}
.y69_c00479{bottom:361.866667pt;}
.y5d_c00479{bottom:371.466667pt;}
.y5c_c00479{bottom:374.666667pt;}
.y2a_c00479{bottom:378.533333pt;}
.y5b_c00479{bottom:387.866667pt;}
.y29_c00479{bottom:394.533333pt;}
.y5a_c00479{bottom:401.333333pt;}
.y28_c00479{bottom:410.800000pt;}
.y59_c00479{bottom:418.666667pt;}
.y27_c00479{bottom:426.533333pt;}
.y58_c00479{bottom:434.400000pt;}
.y26_c00479{bottom:442.266667pt;}
.y57_c00479{bottom:450.133333pt;}
.y25_c00479{bottom:458.266667pt;}
.y56_c00479{bottom:466.133333pt;}
.y24_c00479{bottom:474.000000pt;}
.y55_c00479{bottom:481.466667pt;}
.y23_c00479{bottom:490.000000pt;}
.y54_c00479{bottom:497.200000pt;}
.y22_c00479{bottom:505.733333pt;}
.y53_c00479{bottom:512.933333pt;}
.y21_c00479{bottom:521.466667pt;}
.y52_c00479{bottom:528.666667pt;}
.y20_c00479{bottom:537.200000pt;}
.y51_c00479{bottom:547.866667pt;}
.y1f_c00479{bottom:552.933333pt;}
.y50_c00479{bottom:563.866667pt;}
.y1e_c00479{bottom:568.933333pt;}
.y4f_c00479{bottom:579.866667pt;}
.y1d_c00479{bottom:586.133333pt;}
.y4e_c00479{bottom:595.200000pt;}
.y1c_c00479{bottom:600.266667pt;}
.y4d_c00479{bottom:611.200000pt;}
.y1b_c00479{bottom:612.800000pt;}
.y1a_c00479{bottom:624.533333pt;}
.y4c_c00479{bottom:626.933333pt;}
.y19_c00479{bottom:638.666667pt;}
.y4b_c00479{bottom:646.400000pt;}
.y18_c00479{bottom:655.066667pt;}
.y4a_c00479{bottom:662.400000pt;}
.y17_c00479{bottom:671.333333pt;}
.y16_c00479{bottom:687.333333pt;}
.y49_c00479{bottom:689.600000pt;}
.y15_c00479{bottom:702.666667pt;}
.y48_c00479{bottom:705.600000pt;}
.y14_c00479{bottom:718.400000pt;}
.y47_c00479{bottom:721.333333pt;}
.y13_c00479{bottom:734.133333pt;}
.y46_c00479{bottom:737.333333pt;}
.y12_c00479{bottom:752.933333pt;}
.y45_c00479{bottom:756.666667pt;}
.y11_c00479{bottom:768.666667pt;}
.y44_c00479{bottom:772.400000pt;}
.y10_c00479{bottom:784.400000pt;}
.y43_c00479{bottom:788.400000pt;}
.yf_c00479{bottom:800.133333pt;}
.y42_c00479{bottom:804.133333pt;}
.ye_c00479{bottom:815.866667pt;}
.y41_c00479{bottom:819.466667pt;}
.yd_c00479{bottom:831.600000pt;}
.y40_c00479{bottom:835.200000pt;}
.yc_c00479{bottom:847.333333pt;}
.y3f_c00479{bottom:851.466667pt;}
.yb_c00479{bottom:862.933333pt;}
.y3e_c00479{bottom:866.800000pt;}
.ya_c00479{bottom:878.666667pt;}
.y3d_c00479{bottom:884.400000pt;}
.y3c_c00479{bottom:897.866667pt;}
.y9_c00479{bottom:901.066667pt;}
.y8_c00479{bottom:917.733333pt;}
.y3b_c00479{bottom:920.000000pt;}
.y7_c00479{bottom:936.533333pt;}
.y3a_c00479{bottom:937.600000pt;}
.y6_c00479{bottom:952.533333pt;}
.y39_c00479{bottom:953.866667pt;}
.y5_c00479{bottom:968.533333pt;}
.y38_c00479{bottom:969.866667pt;}
.y4_c00479{bottom:984.266667pt;}
.y37_c00479{bottom:985.600000pt;}
.y3_c00479{bottom:1000.000000pt;}
.y36_c00479{bottom:1001.333333pt;}
.y1_c00479{bottom:1022.666667pt;}
.y2_c00479{bottom:1023.600000pt;}
.h8_c00479{height:21.333333pt;}
.h7_c00479{height:42.666667pt;}
.h6_c00479{height:48.000000pt;}
.h4_c00479{height:53.333333pt;}
.h3_c00479{height:58.666667pt;}
.h5_c00479{height:64.000000pt;}
.h2_c00479{height:69.333333pt;}
.h1_c00479{height:90.666667pt;}
.h0_c00479{height:1136.000000pt;}
.w0_c00479{width:851.840007pt;}
.w1_c00479{width:852.000000pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:169.600000pt;}
.x1f_c00479{left:174.133333pt;}
.x4b_c00479{left:175.066667pt;}
.x90_c00479{left:176.000000pt;}
.x98_c00479{left:178.533333pt;}
.x3_c00479{left:188.133333pt;}
.xb_c00479{left:189.466667pt;}
.x18_c00479{left:190.666667pt;}
.x79_c00479{left:192.266667pt;}
.x9a_c00479{left:193.333333pt;}
.x74_c00479{left:200.933333pt;}
.x5c_c00479{left:202.400000pt;}
.x29_c00479{left:206.400000pt;}
.x9b_c00479{left:209.333333pt;}
.x8e_c00479{left:210.800000pt;}
.x26_c00479{left:213.466667pt;}
.x2a_c00479{left:215.066667pt;}
.x7d_c00479{left:216.133333pt;}
.xa2_c00479{left:217.200000pt;}
.xc_c00479{left:219.600000pt;}
.x58_c00479{left:220.533333pt;}
.x54_c00479{left:222.266667pt;}
.x47_c00479{left:224.400000pt;}
.xa3_c00479{left:226.533333pt;}
.x64_c00479{left:227.466667pt;}
.x6a_c00479{left:229.466667pt;}
.x87_c00479{left:231.066667pt;}
.x20_c00479{left:233.600000pt;}
.x3c_c00479{left:234.533333pt;}
.x91_c00479{left:235.600000pt;}
.x51_c00479{left:237.733333pt;}
.x5d_c00479{left:239.866667pt;}
.x19_c00479{left:241.600000pt;}
.x13_c00479{left:243.200000pt;}
.x34_c00479{left:244.133333pt;}
.x4_c00479{left:245.066667pt;}
.x37_c00479{left:246.666667pt;}
.x70_c00479{left:249.066667pt;}
.x99_c00479{left:251.466667pt;}
.x7b_c00479{left:252.666667pt;}
.x8f_c00479{left:254.666667pt;}
.x48_c00479{left:257.066667pt;}
.x21_c00479{left:260.800000pt;}
.x14_c00479{left:261.733333pt;}
.x92_c00479{left:263.066667pt;}
.x88_c00479{left:264.000000pt;}
.x71_c00479{left:265.333333pt;}
.x3d_c00479{left:267.200000pt;}
.x5_c00479{left:268.133333pt;}
.x5e_c00479{left:269.600000pt;}
.xa0_c00479{left:272.000000pt;}
.x4c_c00479{left:273.200000pt;}
.x68_c00479{left:275.733333pt;}
.x55_c00479{left:276.666667pt;}
.x75_c00479{left:277.733333pt;}
.x7e_c00479{left:279.600000pt;}
.x97_c00479{left:280.933333pt;}
.x3e_c00479{left:283.466667pt;}
.x65_c00479{left:284.400000pt;}
.x1a_c00479{left:286.133333pt;}
.x6_c00479{left:288.000000pt;}
.x2b_c00479{left:289.600000pt;}
.xd_c00479{left:291.866667pt;}
.x15_c00479{left:292.800000pt;}
.x2e_c00479{left:295.066667pt;}
.x7f_c00479{left:296.266667pt;}
.x72_c00479{left:297.600000pt;}
.x5f_c00479{left:298.666667pt;}
.x3f_c00479{left:299.733333pt;}
.x8a_c00479{left:301.066667pt;}
.x2f_c00479{left:303.333333pt;}
.x8b_c00479{left:304.266667pt;}
.x82_c00479{left:306.533333pt;}
.x38_c00479{left:307.466667pt;}
.x59_c00479{left:310.133333pt;}
.x7c_c00479{left:312.800000pt;}
.x4d_c00479{left:313.866667pt;}
.x22_c00479{left:316.133333pt;}
.x93_c00479{left:317.200000pt;}
.x85_c00479{left:318.400000pt;}
.x2c_c00479{left:319.733333pt;}
.x73_c00479{left:320.933333pt;}
.x7_c00479{left:321.866667pt;}
.x52_c00479{left:325.333333pt;}
.x6b_c00479{left:328.133333pt;}
.x80_c00479{left:329.200000pt;}
.x60_c00479{left:330.400000pt;}
.x76_c00479{left:332.133333pt;}
.x7a_c00479{left:333.466667pt;}
.x95_c00479{left:336.666667pt;}
.x40_c00479{left:337.866667pt;}
.xe_c00479{left:339.600000pt;}
.x5a_c00479{left:340.800000pt;}
.x1b_c00479{left:343.066667pt;}
.x77_c00479{left:345.600000pt;}
.x9d_c00479{left:346.933333pt;}
.x39_c00479{left:350.000000pt;}
.x49_c00479{left:351.466667pt;}
.x43_c00479{left:353.600000pt;}
.x4e_c00479{left:356.400000pt;}
.xf_c00479{left:357.466667pt;}
.x66_c00479{left:359.333333pt;}
.x86_c00479{left:360.266667pt;}
.x8c_c00479{left:361.200000pt;}
.x44_c00479{left:362.266667pt;}
.x8_c00479{left:366.000000pt;}
.x1c_c00479{left:368.000000pt;}
.x84_c00479{left:369.200000pt;}
.x56_c00479{left:370.400000pt;}
.x69_c00479{left:371.466667pt;}
.x6c_c00479{left:373.200000pt;}
.xa4_c00479{left:374.133333pt;}
.x5b_c00479{left:375.600000pt;}
.x35_c00479{left:378.400000pt;}
.x6d_c00479{left:379.600000pt;}
.x9_c00479{left:381.066667pt;}
.x2d_c00479{left:384.000000pt;}
.x2_c00479{left:387.466667pt;}
.x1d_c00479{left:389.733333pt;}
.x45_c00479{left:390.800000pt;}
.x61_c00479{left:392.133333pt;}
.x8d_c00479{left:393.200000pt;}
.x30_c00479{left:395.466667pt;}
.x27_c00479{left:397.466667pt;}
.x10_c00479{left:398.400000pt;}
.x41_c00479{left:400.266667pt;}
.x4f_c00479{left:401.866667pt;}
.x78_c00479{left:404.133333pt;}
.x9e_c00479{left:405.066667pt;}
.x53_c00479{left:407.200000pt;}
.x23_c00479{left:408.533333pt;}
.x6e_c00479{left:409.733333pt;}
.x46_c00479{left:410.666667pt;}
.x36_c00479{left:412.933333pt;}
.x16_c00479{left:414.000000pt;}
.x11_c00479{left:416.666667pt;}
.x31_c00479{left:418.133333pt;}
.x9f_c00479{left:419.200000pt;}
.x94_c00479{left:420.266667pt;}
.x81_c00479{left:422.000000pt;}
.x24_c00479{left:424.533333pt;}
.x67_c00479{left:427.200000pt;}
.x4a_c00479{left:429.333333pt;}
.x89_c00479{left:430.400000pt;}
.x3a_c00479{left:431.600000pt;}
.x6f_c00479{left:434.000000pt;}
.x9c_c00479{left:435.200000pt;}
.x42_c00479{left:436.400000pt;}
.x57_c00479{left:439.066667pt;}
.x17_c00479{left:440.266667pt;}
.x32_c00479{left:441.466667pt;}
.x62_c00479{left:443.600000pt;}
.x96_c00479{left:445.200000pt;}
.xa_c00479{left:446.400000pt;}
.x50_c00479{left:447.600000pt;}
.xa1_c00479{left:449.600000pt;}
.x28_c00479{left:450.533333pt;}
.x1e_c00479{left:453.733333pt;}
.x33_c00479{left:455.600000pt;}
.x25_c00479{left:457.200000pt;}
.x83_c00479{left:458.133333pt;}
.x63_c00479{left:459.600000pt;}
.x3b_c00479{left:461.333333pt;}
.x12_c00479{left:464.000000pt;}
.xa5_c00479{left:481.066667pt;}
.xce_c00479{left:488.000000pt;}
.x106_c00479{left:488.933333pt;}
.x12e_c00479{left:490.533333pt;}
.xa6_c00479{left:502.133333pt;}
.xba_c00479{left:503.066667pt;}
.xda_c00479{left:504.800000pt;}
.x122_c00479{left:505.733333pt;}
.x112_c00479{left:506.933333pt;}
.xff_c00479{left:514.800000pt;}
.x13b_c00479{left:515.866667pt;}
.x10a_c00479{left:521.600000pt;}
.x11c_c00479{left:523.200000pt;}
.xcb_c00479{left:524.933333pt;}
.x123_c00479{left:525.866667pt;}
.xdb_c00479{left:527.466667pt;}
.x103_c00479{left:528.533333pt;}
.xe0_c00479{left:529.733333pt;}
.x134_c00479{left:531.200000pt;}
.xbb_c00479{left:532.133333pt;}
.xa7_c00479{left:534.133333pt;}
.xd5_c00479{left:535.200000pt;}
.x148_c00479{left:536.666667pt;}
.xcf_c00479{left:539.200000pt;}
.x131_c00479{left:540.666667pt;}
.xfc_c00479{left:542.133333pt;}
.x118_c00479{left:543.733333pt;}
.xe8_c00479{left:545.733333pt;}
.x10e_c00479{left:547.600000pt;}
.xa8_c00479{left:549.200000pt;}
.x149_c00479{left:550.133333pt;}
.x100_c00479{left:551.600000pt;}
.xf0_c00479{left:552.533333pt;}
.xe1_c00479{left:554.400000pt;}
.xb1_c00479{left:556.666667pt;}
.xd6_c00479{left:558.533333pt;}
.xbc_c00479{left:560.266667pt;}
.xd2_c00479{left:561.600000pt;}
.x147_c00479{left:562.533333pt;}
.xe9_c00479{left:563.600000pt;}
.x12b_c00479{left:566.533333pt;}
.x13e_c00479{left:567.733333pt;}
.xcc_c00479{left:568.800000pt;}
.x119_c00479{left:570.666667pt;}
.xf1_c00479{left:571.733333pt;}
.xb2_c00479{left:572.666667pt;}
.xd0_c00479{left:574.133333pt;}
.x145_c00479{left:576.666667pt;}
.xbd_c00479{left:579.466667pt;}
.xa9_c00479{left:580.933333pt;}
.x116_c00479{left:582.666667pt;}
.xdc_c00479{left:586.000000pt;}
.x132_c00479{left:587.066667pt;}
.x143_c00479{left:588.533333pt;}
.xfa_c00479{left:590.400000pt;}
.xbe_c00479{left:591.333333pt;}
.x135_c00479{left:592.400000pt;}
.xcd_c00479{left:594.133333pt;}
.xaa_c00479{left:595.600000pt;}
.x12f_c00479{left:597.333333pt;}
.xed_c00479{left:599.066667pt;}
.xe2_c00479{left:600.133333pt;}
.xd7_c00479{left:603.333333pt;}
.x104_c00479{left:604.400000pt;}
.xbf_c00479{left:605.466667pt;}
.xd1_c00479{left:606.400000pt;}
.x124_c00479{left:607.733333pt;}
.x10b_c00479{left:608.666667pt;}
.xf2_c00479{left:609.866667pt;}
.xc6_c00479{left:610.800000pt;}
.x14a_c00479{left:612.533333pt;}
.x11d_c00479{left:613.466667pt;}
.xb3_c00479{left:614.933333pt;}
.xfd_c00479{left:617.333333pt;}
.x128_c00479{left:619.066667pt;}
.xee_c00479{left:620.133333pt;}
.xea_c00479{left:622.133333pt;}
.x136_c00479{left:623.333333pt;}
.xab_c00479{left:626.000000pt;}
.xd8_c00479{left:628.000000pt;}
.xb4_c00479{left:630.000000pt;}
.xf3_c00479{left:631.333333pt;}
.xc7_c00479{left:632.533333pt;}
.x107_c00479{left:633.600000pt;}
.xc0_c00479{left:634.933333pt;}
.x146_c00479{left:637.600000pt;}
.xdd_c00479{left:638.533333pt;}
.xac_c00479{left:639.733333pt;}
.x125_c00479{left:640.666667pt;}
.x10c_c00479{left:642.000000pt;}
.x12c_c00479{left:643.066667pt;}
.xf7_c00479{left:644.933333pt;}
.xb5_c00479{left:646.266667pt;}
.x120_c00479{left:648.400000pt;}
.x140_c00479{left:649.733333pt;}
.xe3_c00479{left:652.933333pt;}
.xd3_c00479{left:654.133333pt;}
.xc1_c00479{left:655.466667pt;}
.x14b_c00479{left:658.666667pt;}
.xde_c00479{left:660.666667pt;}
.x137_c00479{left:661.600000pt;}
.xeb_c00479{left:663.333333pt;}
.xad_c00479{left:666.933333pt;}
.x108_c00479{left:667.866667pt;}
.x11a_c00479{left:669.733333pt;}
.x133_c00479{left:672.133333pt;}
.x138_c00479{left:674.666667pt;}
.xe4_c00479{left:676.000000pt;}
.x117_c00479{left:677.733333pt;}
.xfb_c00479{left:680.133333pt;}
.xb6_c00479{left:681.733333pt;}
.xf4_c00479{left:683.466667pt;}
.xfe_c00479{left:686.133333pt;}
.x10f_c00479{left:687.733333pt;}
.xb7_c00479{left:689.466667pt;}
.xd9_c00479{left:690.400000pt;}
.xc2_c00479{left:693.200000pt;}
.x11e_c00479{left:694.666667pt;}
.x12d_c00479{left:696.133333pt;}
.xf8_c00479{left:697.066667pt;}
.xe6_c00479{left:698.400000pt;}
.xc8_c00479{left:699.333333pt;}
.x139_c00479{left:700.400000pt;}
.xc3_c00479{left:704.133333pt;}
.x129_c00479{left:705.066667pt;}
.x13c_c00479{left:706.666667pt;}
.x10d_c00479{left:708.533333pt;}
.xae_c00479{left:710.133333pt;}
.x11f_c00479{left:713.866667pt;}
.x113_c00479{left:714.933333pt;}
.x130_c00479{left:716.266667pt;}
.x11b_c00479{left:717.733333pt;}
.x105_c00479{left:721.866667pt;}
.x101_c00479{left:722.800000pt;}
.xe5_c00479{left:724.000000pt;}
.x13d_c00479{left:725.200000pt;}
.x13f_c00479{left:726.933333pt;}
.xdf_c00479{left:728.133333pt;}
.xb8_c00479{left:729.200000pt;}
.x114_c00479{left:731.600000pt;}
.xc4_c00479{left:732.666667pt;}
.x110_c00479{left:736.000000pt;}
.xd4_c00479{left:738.400000pt;}
.x121_c00479{left:740.933333pt;}
.x102_c00479{left:742.000000pt;}
.xec_c00479{left:743.600000pt;}
.x12a_c00479{left:745.733333pt;}
.xaf_c00479{left:746.933333pt;}
.xc9_c00479{left:748.000000pt;}
.x127_c00479{left:749.333333pt;}
.x13a_c00479{left:750.266667pt;}
.x142_c00479{left:752.133333pt;}
.xc5_c00479{left:754.400000pt;}
.xf9_c00479{left:756.533333pt;}
.xf5_c00479{left:757.466667pt;}
.x109_c00479{left:759.333333pt;}
.x115_c00479{left:762.000000pt;}
.x111_c00479{left:763.200000pt;}
.x144_c00479{left:764.933333pt;}
.xb0_c00479{left:765.866667pt;}
.xb9_c00479{left:767.333333pt;}
.xe7_c00479{left:773.866667pt;}
.xf6_c00479{left:774.800000pt;}
.x14d_c00479{left:776.000000pt;}
.xef_c00479{left:776.933333pt;}
.x14c_c00479{left:778.400000pt;}
.x126_c00479{left:779.866667pt;}
.xca_c00479{left:784.133333pt;}
.x141_c00479{left:785.466667pt;}
}





/* 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_c00480 {
    display:none;
  }
  .loading-indicator_c00480.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00480 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_c00480 { 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_c00480" -> "#page-container .classname_c00480")
 */
.pf_c00480 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00480 { /* 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_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00480 { /* 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_c00480 { /* 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_c00480 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00480 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00480 {overflow:visible;}
  }
}
.c_c00480 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00480 { /* 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_c00480:after { /* webkit #35443 */
  content: '';
}
.t_c00480:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00480 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 */
}
.__c00480 { /* 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_c00480 { /* info for Javascript */
  display:none;
}
.l_c00480 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00480 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00480 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00480: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_c00480 {
    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_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00480.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_c00480 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00480{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00480;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.000000;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;}
.m109_c00480{transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00480{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m111_c00480{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00480{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.md4_c00480{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00480{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00480{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00480{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00480{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00480{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.me0_c00480{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m50_c00480{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00480{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m64_c00480{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.me8_c00480{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m96_c00480{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m80_c00480{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m43_c00480{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m45_c00480{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m75_c00480{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00480{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m110_c00480{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m98_c00480{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00480{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m84_c00480{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00480{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m72_c00480{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m1_c00480{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00480{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00480{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m74_c00480{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00480{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m33_c00480{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00480{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m71_c00480{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md8_c00480{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m14_c00480{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m102_c00480{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00480{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00480{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m100_c00480{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00480{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mee_c00480{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m34_c00480{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m21_c00480{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md_c00480{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00480{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00480{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mba_c00480{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00480{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00480{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00480{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.me7_c00480{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md2_c00480{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00480{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m101_c00480{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m62_c00480{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m10_c00480{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5_c00480{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00480{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00480{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m82_c00480{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m103_c00480{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00480{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00480{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m49_c00480{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m37_c00480{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m124_c00480{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00480{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m35_c00480{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m7_c00480{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00480{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m42_c00480{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m94_c00480{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m106_c00480{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00480{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mab_c00480{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m114_c00480{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m8_c00480{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00480{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md3_c00480{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m66_c00480{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00480{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00480{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m40_c00480{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mff_c00480{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mef_c00480{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.md6_c00480{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00480{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mea_c00480{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m29_c00480{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m13_c00480{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m26_c00480{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m6_c00480{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00480{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00480{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00480{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00480{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m47_c00480{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m24_c00480{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00480{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m108_c00480{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m12_c00480{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00480{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me3_c00480{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00480{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m23_c00480{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mde_c00480{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m28_c00480{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00480{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00480{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00480{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00480{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m79_c00480{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00480{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00480{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00480{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m93_c00480{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00480{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00480{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m39_c00480{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00480{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00480{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00480{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00480{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m48_c00480{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m123_c00480{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00480{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m58_c00480{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mc_c00480{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m16_c00480{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m104_c00480{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.me4_c00480{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m20_c00480{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00480{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00480{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m115_c00480{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m126_c00480{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00480{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m107_c00480{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00480{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00480{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.me1_c00480{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m56_c00480{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00480{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00480{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00480{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00480{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m31_c00480{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.md5_c00480{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00480{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m22_c00480{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m92_c00480{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00480{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9_c00480{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00480{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m63_c00480{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m52_c00480{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00480{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00480{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00480{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m128_c00480{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00480{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m44_c00480{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m25_c00480{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m69_c00480{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m87_c00480{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m95_c00480{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m105_c00480{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me9_c00480{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.md7_c00480{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m116_c00480{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.me_c00480{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb_c00480{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md1_c00480{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00480{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m91_c00480{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00480{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00480{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00480{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00480{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4_c00480{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00480{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m99_c00480{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m90_c00480{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m65_c00480{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00480{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m60_c00480{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00480{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3_c00480{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m127_c00480{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m122_c00480{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m18_c00480{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m89_c00480{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mca_c00480{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00480{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m53_c00480{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00480{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m38_c00480{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.med_c00480{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m68_c00480{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00480{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma_c00480{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00480{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mac_c00480{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00480{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00480{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00480{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m117_c00480{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m32_c00480{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m55_c00480{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00480{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m27_c00480{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00480{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00480{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m57_c00480{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00480{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m88_c00480{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m61_c00480{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m97_c00480{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mad_c00480{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m78_c00480{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m129_c00480{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m73_c00480{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m125_c00480{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m19_c00480{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m81_c00480{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00480{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m113_c00480{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.meb_c00480{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m112_c00480{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00480{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00480{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00480{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mf_c00480{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m41_c00480{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mce_c00480{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m118_c00480{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00480{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00480{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me6_c00480{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00480{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);}
.mc8_c00480{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00480{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00480{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m51_c00480{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00480{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00480{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mda_c00480{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m70_c00480{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.maf_c00480{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md0_c00480{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00480{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m76_c00480{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m11_c00480{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mec_c00480{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.maa_c00480{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00480{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m85_c00480{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00480{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.md9_c00480{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me2_c00480{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m36_c00480{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mae_c00480{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00480{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00480{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m77_c00480{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m46_c00480{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00480{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00480{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m83_c00480{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00480{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m54_c00480{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00480{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00480{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00480{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m30_c00480{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00480{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m120_c00480{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00480{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00480{transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00480{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00480{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c00480{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00480{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.me5_c00480{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00480{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00480{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00480{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m121_c00480{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m59_c00480{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00480{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00480{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00480{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m15_c00480{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00480{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m67_c00480{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m119_c00480{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m86_c00480{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00480{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00480{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m0_c00480{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{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__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00480{word-spacing:-9.652921px;}
.ws0_c00480{word-spacing:-5.121019px;}
.ws3_c00480{word-spacing:-3.477663px;}
.ws2_c00480{word-spacing:-1.805556px;}
.ws5_c00480{word-spacing:0.000000px;}
.ws1_c00480{word-spacing:8.101266px;}
.fc0_c00480{color:transparent;}
.fs6_c00480{font-size:30.000000px;}
.fs7_c00480{font-size:48.000000px;}
.fs4_c00480{font-size:54.000000px;}
.fs3_c00480{font-size:60.000000px;}
.fs2_c00480{font-size:66.000000px;}
.fs5_c00480{font-size:72.000000px;}
.fs0_c00480{font-size:78.000000px;}
.fs1_c00480{font-size:90.000000px;}
.y0_c00480{bottom:0.000000px;}
.y6c_c00480{bottom:201.150000px;}
.y56_c00480{bottom:201.300000px;}
.y6b_c00480{bottom:215.250000px;}
.y55_c00480{bottom:216.300000px;}
.y6a_c00480{bottom:229.650000px;}
.y54_c00480{bottom:230.700000px;}
.y53_c00480{bottom:244.800000px;}
.y69_c00480{bottom:258.900000px;}
.y68_c00480{bottom:272.850000px;}
.y31_c00480{bottom:277.200000px;}
.y57_c00480{bottom:285.450000px;}
.y67_c00480{bottom:286.800000px;}
.y30_c00480{bottom:299.100000px;}
.y66_c00480{bottom:301.500000px;}
.y65_c00480{bottom:315.900000px;}
.y64_c00480{bottom:329.550000px;}
.y2f_c00480{bottom:329.700000px;}
.y63_c00480{bottom:343.650000px;}
.y2e_c00480{bottom:347.400000px;}
.y62_c00480{bottom:357.750000px;}
.y2d_c00480{bottom:364.950000px;}
.y61_c00480{bottom:371.850000px;}
.y2c_c00480{bottom:382.950000px;}
.y60_c00480{bottom:386.850000px;}
.y5f_c00480{bottom:400.500000px;}
.y2b_c00480{bottom:400.950000px;}
.y5e_c00480{bottom:414.600000px;}
.y2a_c00480{bottom:418.650000px;}
.y5d_c00480{bottom:429.000000px;}
.y29_c00480{bottom:435.900000px;}
.y5c_c00480{bottom:443.400000px;}
.y28_c00480{bottom:453.600000px;}
.y5b_c00480{bottom:457.500000px;}
.y27_c00480{bottom:471.300000px;}
.y5a_c00480{bottom:471.600000px;}
.y59_c00480{bottom:485.700000px;}
.y26_c00480{bottom:489.000000px;}
.y58_c00480{bottom:500.400000px;}
.y25_c00480{bottom:507.000000px;}
.y24_c00480{bottom:524.700000px;}
.y52_c00480{bottom:540.450000px;}
.y23_c00480{bottom:542.400000px;}
.y51_c00480{bottom:558.450000px;}
.y22_c00480{bottom:560.100000px;}
.y50_c00480{bottom:576.150000px;}
.y21_c00480{bottom:577.800000px;}
.y4f_c00480{bottom:593.850000px;}
.y20_c00480{bottom:595.800000px;}
.y4e_c00480{bottom:611.550000px;}
.y1f_c00480{bottom:613.500000px;}
.y4d_c00480{bottom:629.250000px;}
.y1e_c00480{bottom:634.350000px;}
.y4c_c00480{bottom:646.950000px;}
.y1d_c00480{bottom:648.600000px;}
.y1c_c00480{bottom:662.700000px;}
.y4b_c00480{bottom:664.200000px;}
.y1b_c00480{bottom:677.100000px;}
.y1a_c00480{bottom:689.700000px;}
.y4a_c00480{bottom:695.250000px;}
.y19_c00480{bottom:706.650000px;}
.y49_c00480{bottom:717.150000px;}
.y18_c00480{bottom:725.850000px;}
.y48_c00480{bottom:738.900000px;}
.y17_c00480{bottom:743.850000px;}
.y47_c00480{bottom:756.600000px;}
.y16_c00480{bottom:761.100000px;}
.y46_c00480{bottom:774.300000px;}
.y15_c00480{bottom:779.400000px;}
.y45_c00480{bottom:792.000000px;}
.y14_c00480{bottom:800.250000px;}
.y44_c00480{bottom:810.000000px;}
.y13_c00480{bottom:819.000000px;}
.y43_c00480{bottom:827.250000px;}
.y12_c00480{bottom:836.550000px;}
.y42_c00480{bottom:844.950000px;}
.y11_c00480{bottom:854.250000px;}
.y41_c00480{bottom:864.900000px;}
.y10_c00480{bottom:872.250000px;}
.y40_c00480{bottom:879.300000px;}
.yf_c00480{bottom:891.000000px;}
.y3f_c00480{bottom:893.700000px;}
.y3e_c00480{bottom:907.800000px;}
.ye_c00480{bottom:911.550000px;}
.y3d_c00480{bottom:921.900000px;}
.y3c_c00480{bottom:936.300000px;}
.yd_c00480{bottom:938.550000px;}
.y3b_c00480{bottom:956.100000px;}
.yc_c00480{bottom:957.900000px;}
.y3a_c00480{bottom:974.100000px;}
.yb_c00480{bottom:975.900000px;}
.y39_c00480{bottom:992.100000px;}
.ya_c00480{bottom:992.850000px;}
.y38_c00480{bottom:1009.350000px;}
.y9_c00480{bottom:1009.650000px;}
.y37_c00480{bottom:1027.050000px;}
.y8_c00480{bottom:1028.700000px;}
.y36_c00480{bottom:1044.300000px;}
.y7_c00480{bottom:1046.400000px;}
.y6_c00480{bottom:1064.100000px;}
.y35_c00480{bottom:1066.200000px;}
.y5_c00480{bottom:1082.100000px;}
.y34_c00480{bottom:1083.900000px;}
.y4_c00480{bottom:1099.350000px;}
.y33_c00480{bottom:1101.600000px;}
.y3_c00480{bottom:1117.050000px;}
.y32_c00480{bottom:1119.600000px;}
.y1_c00480{bottom:1144.800000px;}
.y2_c00480{bottom:1145.550000px;}
.h8_c00480{height:30.000000px;}
.h9_c00480{height:48.000000px;}
.h6_c00480{height:54.000000px;}
.h5_c00480{height:60.000000px;}
.h4_c00480{height:66.000000px;}
.h7_c00480{height:72.000000px;}
.h2_c00480{height:78.000000px;}
.h3_c00480{height:90.000000px;}
.h1_c00480{height:1270.500000px;}
.h0_c00480{height:1270.799927px;}
.w0_c00480{width:958.320007px;}
.w1_c00480{width:958.500000px;}
.x0_c00480{left:0.000000px;}
.x2a_c00480{left:75.900000px;}
.x18_c00480{left:78.900000px;}
.x72_c00480{left:79.950000px;}
.x11f_c00480{left:81.450000px;}
.x11d_c00480{left:84.900000px;}
.x6a_c00480{left:92.550000px;}
.x68_c00480{left:93.750000px;}
.x93_c00480{left:94.950000px;}
.x3_c00480{left:96.150000px;}
.x4a_c00480{left:97.200000px;}
.x4f_c00480{left:98.250000px;}
.x6f_c00480{left:107.250000px;}
.x32_c00480{left:112.350000px;}
.x78_c00480{left:114.450000px;}
.x11a_c00480{left:118.350000px;}
.x51_c00480{left:121.200000px;}
.x48_c00480{left:122.550000px;}
.x3d_c00480{left:123.750000px;}
.x39_c00480{left:126.300000px;}
.x75_c00480{left:128.250000px;}
.x79_c00480{left:130.650000px;}
.x89_c00480{left:132.300000px;}
.x26_c00480{left:133.350000px;}
.xc_c00480{left:134.400000px;}
.x61_c00480{left:135.750000px;}
.x42_c00480{left:137.550000px;}
.x14_c00480{left:138.600000px;}
.x6b_c00480{left:140.400000px;}
.x50_c00480{left:142.200000px;}
.x92_c00480{left:143.400000px;}
.x4_c00480{left:145.500000px;}
.x5e_c00480{left:147.000000px;}
.x1d_c00480{left:148.350000px;}
.x55_c00480{left:150.900000px;}
.x76_c00480{left:152.700000px;}
.x62_c00480{left:154.800000px;}
.x94_c00480{left:156.150000px;}
.x86_c00480{left:157.650000px;}
.xd_c00480{left:159.300000px;}
.x97_c00480{left:161.250000px;}
.x37_c00480{left:162.750000px;}
.x3a_c00480{left:165.150000px;}
.x27_c00480{left:167.850000px;}
.x5_c00480{left:168.900000px;}
.x43_c00480{left:170.250000px;}
.x19_c00480{left:171.450000px;}
.x7f_c00480{left:173.400000px;}
.xe_c00480{left:175.500000px;}
.x11b_c00480{left:177.750000px;}
.x33_c00480{left:180.000000px;}
.x2d_c00480{left:181.200000px;}
.x20_c00480{left:182.850000px;}
.x38_c00480{left:184.050000px;}
.x4b_c00480{left:187.200000px;}
.x1a_c00480{left:191.250000px;}
.x80_c00480{left:193.200000px;}
.x82_c00480{left:194.850000px;}
.x28_c00480{left:196.650000px;}
.x49_c00480{left:197.850000px;}
.x7a_c00480{left:199.350000px;}
.x5a_c00480{left:203.250000px;}
.x73_c00480{left:205.200000px;}
.x6_c00480{left:207.750000px;}
.x44_c00480{left:209.100000px;}
.x4c_c00480{left:210.300000px;}
.x85_c00480{left:212.400000px;}
.x120_c00480{left:215.400000px;}
.x1b_c00480{left:216.750000px;}
.xf_c00480{left:220.500000px;}
.x7_c00480{left:222.450000px;}
.x7b_c00480{left:224.250000px;}
.x8b_c00480{left:226.500000px;}
.x5f_c00480{left:227.700000px;}
.x29_c00480{left:229.350000px;}
.x52_c00480{left:231.750000px;}
.x34_c00480{left:234.000000px;}
.x21_c00480{left:235.800000px;}
.x11e_c00480{left:236.850000px;}
.x2b_c00480{left:238.500000px;}
.x56_c00480{left:240.900000px;}
.x3e_c00480{left:243.600000px;}
.x121_c00480{left:247.800000px;}
.x63_c00480{left:249.300000px;}
.x3b_c00480{left:251.250000px;}
.x95_c00480{left:252.300000px;}
.x1e_c00480{left:254.100000px;}
.x35_c00480{left:255.600000px;}
.x15_c00480{left:257.100000px;}
.x6c_c00480{left:258.300000px;}
.x2e_c00480{left:259.350000px;}
.x5b_c00480{left:260.550000px;}
.x2c_c00480{left:261.900000px;}
.x1c_c00480{left:264.300000px;}
.x8e_c00480{left:266.550000px;}
.x60_c00480{left:269.100000px;}
.x7c_c00480{left:271.350000px;}
.x22_c00480{left:272.550000px;}
.x4d_c00480{left:273.600000px;}
.x87_c00480{left:274.650000px;}
.x16_c00480{left:276.900000px;}
.x8c_c00480{left:279.000000px;}
.x8_c00480{left:281.550000px;}
.x53_c00480{left:282.900000px;}
.x57_c00480{left:285.900000px;}
.x23_c00480{left:291.300000px;}
.x17_c00480{left:293.100000px;}
.x58_c00480{left:294.600000px;}
.x96_c00480{left:295.800000px;}
.x1f_c00480{left:298.500000px;}
.x10_c00480{left:299.700000px;}
.x4e_c00480{left:301.350000px;}
.x9_c00480{left:302.400000px;}
.x3f_c00480{left:305.100000px;}
.x3c_c00480{left:306.750000px;}
.x2f_c00480{left:308.250000px;}
.x64_c00480{left:311.550000px;}
.x69_c00480{left:313.350000px;}
.x40_c00480{left:315.150000px;}
.x7d_c00480{left:316.650000px;}
.x1_c00480{left:318.900000px;}
.x8d_c00480{left:320.700000px;}
.x11_c00480{left:322.050000px;}
.x83_c00480{left:323.250000px;}
.x77_c00480{left:325.050000px;}
.x88_c00480{left:327.750000px;}
.x45_c00480{left:329.250000px;}
.x8a_c00480{left:330.600000px;}
.x8f_c00480{left:331.650000px;}
.x65_c00480{left:333.450000px;}
.x74_c00480{left:334.500000px;}
.x12_c00480{left:337.950000px;}
.x84_c00480{left:339.150000px;}
.x71_c00480{left:341.700000px;}
.xa_c00480{left:342.750000px;}
.x70_c00480{left:343.800000px;}
.x90_c00480{left:345.300000px;}
.x5c_c00480{left:347.250000px;}
.x81_c00480{left:350.100000px;}
.x30_c00480{left:352.500000px;}
.x24_c00480{left:355.800000px;}
.x91_c00480{left:358.650000px;}
.x11c_c00480{left:360.900000px;}
.x66_c00480{left:363.750000px;}
.xb_c00480{left:366.150000px;}
.x46_c00480{left:367.350000px;}
.x59_c00480{left:369.150000px;}
.x6d_c00480{left:370.650000px;}
.x36_c00480{left:372.600000px;}
.x54_c00480{left:374.100000px;}
.x25_c00480{left:379.950000px;}
.x41_c00480{left:381.750000px;}
.x13_c00480{left:389.100000px;}
.x5d_c00480{left:391.500000px;}
.x47_c00480{left:392.850000px;}
.x31_c00480{left:396.750000px;}
.x67_c00480{left:397.950000px;}
.x6e_c00480{left:399.900000px;}
.x7e_c00480{left:402.300000px;}
.x122_c00480{left:421.500000px;}
.xb8_c00480{left:432.300000px;}
.x141_c00480{left:433.350000px;}
.x147_c00480{left:439.200000px;}
.x114_c00480{left:445.650000px;}
.xd6_c00480{left:447.450000px;}
.x98_c00480{left:448.950000px;}
.xcf_c00480{left:450.450000px;}
.xa1_c00480{left:451.500000px;}
.x126_c00480{left:459.000000px;}
.x134_c00480{left:461.250000px;}
.xed_c00480{left:462.450000px;}
.x138_c00480{left:464.550000px;}
.x115_c00480{left:466.950000px;}
.xb3_c00480{left:469.350000px;}
.x123_c00480{left:471.600000px;}
.x130_c00480{left:472.650000px;}
.x99_c00480{left:474.150000px;}
.xb9_c00480{left:475.800000px;}
.xe3_c00480{left:477.750000px;}
.xa2_c00480{left:479.250000px;}
.xee_c00480{left:480.750000px;}
.xc7_c00480{left:481.950000px;}
.xb4_c00480{left:483.450000px;}
.x140_c00480{left:485.550000px;}
.xdd_c00480{left:486.750000px;}
.x13d_c00480{left:487.800000px;}
.xe4_c00480{left:489.600000px;}
.xd4_c00480{left:491.100000px;}
.x128_c00480{left:492.750000px;}
.x139_c00480{left:494.400000px;}
.xd0_c00480{left:496.950000px;}
.x101_c00480{left:498.150000px;}
.xc8_c00480{left:501.000000px;}
.x105_c00480{left:504.300000px;}
.xf3_c00480{left:507.000000px;}
.x109_c00480{left:508.500000px;}
.xcc_c00480{left:509.550000px;}
.xa3_c00480{left:512.700000px;}
.x9a_c00480{left:513.750000px;}
.x129_c00480{left:515.100000px;}
.xb5_c00480{left:516.150000px;}
.xef_c00480{left:518.400000px;}
.x102_c00480{left:521.550000px;}
.x131_c00480{left:523.350000px;}
.x148_c00480{left:525.600000px;}
.x10f_c00480{left:526.950000px;}
.x143_c00480{left:528.000000px;}
.x10d_c00480{left:529.050000px;}
.xac_c00480{left:530.550000px;}
.xd1_c00480{left:531.900000px;}
.x116_c00480{left:533.250000px;}
.xc2_c00480{left:535.200000px;}
.x135_c00480{left:536.550000px;}
.xf5_c00480{left:538.500000px;}
.xe9_c00480{left:540.000000px;}
.xa4_c00480{left:542.550000px;}
.xba_c00480{left:544.200000px;}
.xc3_c00480{left:546.000000px;}
.xde_c00480{left:547.200000px;}
.xd7_c00480{left:548.700000px;}
.xbd_c00480{left:550.950000px;}
.x9b_c00480{left:552.300000px;}
.xd2_c00480{left:553.800000px;}
.x13e_c00480{left:554.850000px;}
.xfe_c00480{left:556.200000px;}
.xfa_c00480{left:558.300000px;}
.xf4_c00480{left:559.500000px;}
.xa5_c00480{left:561.300000px;}
.xf0_c00480{left:562.350000px;}
.x12a_c00480{left:566.550000px;}
.xc9_c00480{left:568.950000px;}
.x9c_c00480{left:570.600000px;}
.xad_c00480{left:572.700000px;}
.xbe_c00480{left:574.650000px;}
.x12b_c00480{left:576.600000px;}
.x13b_c00480{left:579.000000px;}
.xdf_c00480{left:580.650000px;}
.x118_c00480{left:582.750000px;}
.x144_c00480{left:584.850000px;}
.xca_c00480{left:587.250000px;}
.x10a_c00480{left:589.500000px;}
.xd8_c00480{left:592.650000px;}
.xbb_c00480{left:595.350000px;}
.x110_c00480{left:596.550000px;}
.xa6_c00480{left:597.600000px;}
.xe0_c00480{left:598.650000px;}
.xc4_c00480{left:600.000000px;}
.x13f_c00480{left:601.350000px;}
.xfb_c00480{left:603.300000px;}
.x111_c00480{left:606.600000px;}
.xf1_c00480{left:607.650000px;}
.xbf_c00480{left:611.400000px;}
.x132_c00480{left:615.900000px;}
.x106_c00480{left:616.950000px;}
.xff_c00480{left:618.150000px;}
.xa7_c00480{left:620.250000px;}
.x9d_c00480{left:622.050000px;}
.x13a_c00480{left:623.250000px;}
.xae_c00480{left:625.200000px;}
.x100_c00480{left:626.550000px;}
.xf2_c00480{left:628.200000px;}
.xe5_c00480{left:630.600000px;}
.x9e_c00480{left:632.550000px;}
.x136_c00480{left:635.100000px;}
.xd9_c00480{left:637.950000px;}
.xe1_c00480{left:639.750000px;}
.xfc_c00480{left:640.800000px;}
.xf8_c00480{left:644.700000px;}
.xe6_c00480{left:646.050000px;}
.x124_c00480{left:647.250000px;}
.xa8_c00480{left:648.300000px;}
.xb6_c00480{left:651.600000px;}
.xf6_c00480{left:653.400000px;}
.x112_c00480{left:657.000000px;}
.xda_c00480{left:658.500000px;}
.x107_c00480{left:662.250000px;}
.xfd_c00480{left:663.900000px;}
.xaf_c00480{left:665.550000px;}
.xd5_c00480{left:667.350000px;}
.x9f_c00480{left:670.050000px;}
.xc0_c00480{left:671.550000px;}
.x13c_c00480{left:672.900000px;}
.x12c_c00480{left:674.550000px;}
.xa9_c00480{left:675.600000px;}
.x10b_c00480{left:676.650000px;}
.xcd_c00480{left:679.800000px;}
.x113_c00480{left:681.150000px;}
.xc5_c00480{left:682.800000px;}
.x12d_c00480{left:683.850000px;}
.x10c_c00480{left:687.150000px;}
.xb7_c00480{left:689.100000px;}
.xaa_c00480{left:690.750000px;}
.x145_c00480{left:691.800000px;}
.x103_c00480{left:692.850000px;}
.xe7_c00480{left:696.450000px;}
.xea_c00480{left:698.700000px;}
.x10e_c00480{left:699.750000px;}
.x119_c00480{left:701.400000px;}
.xb0_c00480{left:702.600000px;}
.x12e_c00480{left:705.150000px;}
.xdb_c00480{left:707.100000px;}
.xa0_c00480{left:708.900000px;}
.xbc_c00480{left:710.100000px;}
.xab_c00480{left:713.100000px;}
.xce_c00480{left:714.750000px;}
.xe2_c00480{left:715.800000px;}
.xe8_c00480{left:717.000000px;}
.x142_c00480{left:720.000000px;}
.xb1_c00480{left:721.650000px;}
.xeb_c00480{left:724.650000px;}
.xcb_c00480{left:727.800000px;}
.x125_c00480{left:729.600000px;}
.xf7_c00480{left:732.300000px;}
.x133_c00480{left:733.350000px;}
.x108_c00480{left:734.550000px;}
.xdc_c00480{left:736.650000px;}
.x2_c00480{left:738.300000px;}
.xc6_c00480{left:740.100000px;}
.x117_c00480{left:741.750000px;}
.x137_c00480{left:742.800000px;}
.xd3_c00480{left:744.900000px;}
.xf9_c00480{left:748.050000px;}
.x146_c00480{left:750.900000px;}
.xc1_c00480{left:753.300000px;}
.xb2_c00480{left:756.900000px;}
.x127_c00480{left:758.250000px;}
.x104_c00480{left:762.000000px;}
.xec_c00480{left:763.500000px;}
.x12f_c00480{left:776.100000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws4_c00480{word-spacing:-8.580374pt;}
.ws0_c00480{word-spacing:-4.552017pt;}
.ws3_c00480{word-spacing:-3.091256pt;}
.ws2_c00480{word-spacing:-1.604938pt;}
.ws5_c00480{word-spacing:0.000000pt;}
.ws1_c00480{word-spacing:7.201125pt;}
.fs6_c00480{font-size:26.666667pt;}
.fs7_c00480{font-size:42.666667pt;}
.fs4_c00480{font-size:48.000000pt;}
.fs3_c00480{font-size:53.333333pt;}
.fs2_c00480{font-size:58.666667pt;}
.fs5_c00480{font-size:64.000000pt;}
.fs0_c00480{font-size:69.333333pt;}
.fs1_c00480{font-size:80.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y6c_c00480{bottom:178.800000pt;}
.y56_c00480{bottom:178.933333pt;}
.y6b_c00480{bottom:191.333333pt;}
.y55_c00480{bottom:192.266667pt;}
.y6a_c00480{bottom:204.133333pt;}
.y54_c00480{bottom:205.066667pt;}
.y53_c00480{bottom:217.600000pt;}
.y69_c00480{bottom:230.133333pt;}
.y68_c00480{bottom:242.533333pt;}
.y31_c00480{bottom:246.400000pt;}
.y57_c00480{bottom:253.733333pt;}
.y67_c00480{bottom:254.933333pt;}
.y30_c00480{bottom:265.866667pt;}
.y66_c00480{bottom:268.000000pt;}
.y65_c00480{bottom:280.800000pt;}
.y64_c00480{bottom:292.933333pt;}
.y2f_c00480{bottom:293.066667pt;}
.y63_c00480{bottom:305.466667pt;}
.y2e_c00480{bottom:308.800000pt;}
.y62_c00480{bottom:318.000000pt;}
.y2d_c00480{bottom:324.400000pt;}
.y61_c00480{bottom:330.533333pt;}
.y2c_c00480{bottom:340.400000pt;}
.y60_c00480{bottom:343.866667pt;}
.y5f_c00480{bottom:356.000000pt;}
.y2b_c00480{bottom:356.400000pt;}
.y5e_c00480{bottom:368.533333pt;}
.y2a_c00480{bottom:372.133333pt;}
.y5d_c00480{bottom:381.333333pt;}
.y29_c00480{bottom:387.466667pt;}
.y5c_c00480{bottom:394.133333pt;}
.y28_c00480{bottom:403.200000pt;}
.y5b_c00480{bottom:406.666667pt;}
.y27_c00480{bottom:418.933333pt;}
.y5a_c00480{bottom:419.200000pt;}
.y59_c00480{bottom:431.733333pt;}
.y26_c00480{bottom:434.666667pt;}
.y58_c00480{bottom:444.800000pt;}
.y25_c00480{bottom:450.666667pt;}
.y24_c00480{bottom:466.400000pt;}
.y52_c00480{bottom:480.400000pt;}
.y23_c00480{bottom:482.133333pt;}
.y51_c00480{bottom:496.400000pt;}
.y22_c00480{bottom:497.866667pt;}
.y50_c00480{bottom:512.133333pt;}
.y21_c00480{bottom:513.600000pt;}
.y4f_c00480{bottom:527.866667pt;}
.y20_c00480{bottom:529.600000pt;}
.y4e_c00480{bottom:543.600000pt;}
.y1f_c00480{bottom:545.333333pt;}
.y4d_c00480{bottom:559.333333pt;}
.y1e_c00480{bottom:563.866667pt;}
.y4c_c00480{bottom:575.066667pt;}
.y1d_c00480{bottom:576.533333pt;}
.y1c_c00480{bottom:589.066667pt;}
.y4b_c00480{bottom:590.400000pt;}
.y1b_c00480{bottom:601.866667pt;}
.y1a_c00480{bottom:613.066667pt;}
.y4a_c00480{bottom:618.000000pt;}
.y19_c00480{bottom:628.133333pt;}
.y49_c00480{bottom:637.466667pt;}
.y18_c00480{bottom:645.200000pt;}
.y48_c00480{bottom:656.800000pt;}
.y17_c00480{bottom:661.200000pt;}
.y47_c00480{bottom:672.533333pt;}
.y16_c00480{bottom:676.533333pt;}
.y46_c00480{bottom:688.266667pt;}
.y15_c00480{bottom:692.800000pt;}
.y45_c00480{bottom:704.000000pt;}
.y14_c00480{bottom:711.333333pt;}
.y44_c00480{bottom:720.000000pt;}
.y13_c00480{bottom:728.000000pt;}
.y43_c00480{bottom:735.333333pt;}
.y12_c00480{bottom:743.600000pt;}
.y42_c00480{bottom:751.066667pt;}
.y11_c00480{bottom:759.333333pt;}
.y41_c00480{bottom:768.800000pt;}
.y10_c00480{bottom:775.333333pt;}
.y40_c00480{bottom:781.600000pt;}
.yf_c00480{bottom:792.000000pt;}
.y3f_c00480{bottom:794.400000pt;}
.y3e_c00480{bottom:806.933333pt;}
.ye_c00480{bottom:810.266667pt;}
.y3d_c00480{bottom:819.466667pt;}
.y3c_c00480{bottom:832.266667pt;}
.yd_c00480{bottom:834.266667pt;}
.y3b_c00480{bottom:849.866667pt;}
.yc_c00480{bottom:851.466667pt;}
.y3a_c00480{bottom:865.866667pt;}
.yb_c00480{bottom:867.466667pt;}
.y39_c00480{bottom:881.866667pt;}
.ya_c00480{bottom:882.533333pt;}
.y38_c00480{bottom:897.200000pt;}
.y9_c00480{bottom:897.466667pt;}
.y37_c00480{bottom:912.933333pt;}
.y8_c00480{bottom:914.400000pt;}
.y36_c00480{bottom:928.266667pt;}
.y7_c00480{bottom:930.133333pt;}
.y6_c00480{bottom:945.866667pt;}
.y35_c00480{bottom:947.733333pt;}
.y5_c00480{bottom:961.866667pt;}
.y34_c00480{bottom:963.466667pt;}
.y4_c00480{bottom:977.200000pt;}
.y33_c00480{bottom:979.200000pt;}
.y3_c00480{bottom:992.933333pt;}
.y32_c00480{bottom:995.200000pt;}
.y1_c00480{bottom:1017.600000pt;}
.y2_c00480{bottom:1018.266667pt;}
.h8_c00480{height:26.666667pt;}
.h9_c00480{height:42.666667pt;}
.h6_c00480{height:48.000000pt;}
.h5_c00480{height:53.333333pt;}
.h4_c00480{height:58.666667pt;}
.h7_c00480{height:64.000000pt;}
.h2_c00480{height:69.333333pt;}
.h3_c00480{height:80.000000pt;}
.h1_c00480{height:1129.333333pt;}
.h0_c00480{height:1129.599935pt;}
.w0_c00480{width:851.840007pt;}
.w1_c00480{width:852.000000pt;}
.x0_c00480{left:0.000000pt;}
.x2a_c00480{left:67.466667pt;}
.x18_c00480{left:70.133333pt;}
.x72_c00480{left:71.066667pt;}
.x11f_c00480{left:72.400000pt;}
.x11d_c00480{left:75.466667pt;}
.x6a_c00480{left:82.266667pt;}
.x68_c00480{left:83.333333pt;}
.x93_c00480{left:84.400000pt;}
.x3_c00480{left:85.466667pt;}
.x4a_c00480{left:86.400000pt;}
.x4f_c00480{left:87.333333pt;}
.x6f_c00480{left:95.333333pt;}
.x32_c00480{left:99.866667pt;}
.x78_c00480{left:101.733333pt;}
.x11a_c00480{left:105.200000pt;}
.x51_c00480{left:107.733333pt;}
.x48_c00480{left:108.933333pt;}
.x3d_c00480{left:110.000000pt;}
.x39_c00480{left:112.266667pt;}
.x75_c00480{left:114.000000pt;}
.x79_c00480{left:116.133333pt;}
.x89_c00480{left:117.600000pt;}
.x26_c00480{left:118.533333pt;}
.xc_c00480{left:119.466667pt;}
.x61_c00480{left:120.666667pt;}
.x42_c00480{left:122.266667pt;}
.x14_c00480{left:123.200000pt;}
.x6b_c00480{left:124.800000pt;}
.x50_c00480{left:126.400000pt;}
.x92_c00480{left:127.466667pt;}
.x4_c00480{left:129.333333pt;}
.x5e_c00480{left:130.666667pt;}
.x1d_c00480{left:131.866667pt;}
.x55_c00480{left:134.133333pt;}
.x76_c00480{left:135.733333pt;}
.x62_c00480{left:137.600000pt;}
.x94_c00480{left:138.800000pt;}
.x86_c00480{left:140.133333pt;}
.xd_c00480{left:141.600000pt;}
.x97_c00480{left:143.333333pt;}
.x37_c00480{left:144.666667pt;}
.x3a_c00480{left:146.800000pt;}
.x27_c00480{left:149.200000pt;}
.x5_c00480{left:150.133333pt;}
.x43_c00480{left:151.333333pt;}
.x19_c00480{left:152.400000pt;}
.x7f_c00480{left:154.133333pt;}
.xe_c00480{left:156.000000pt;}
.x11b_c00480{left:158.000000pt;}
.x33_c00480{left:160.000000pt;}
.x2d_c00480{left:161.066667pt;}
.x20_c00480{left:162.533333pt;}
.x38_c00480{left:163.600000pt;}
.x4b_c00480{left:166.400000pt;}
.x1a_c00480{left:170.000000pt;}
.x80_c00480{left:171.733333pt;}
.x82_c00480{left:173.200000pt;}
.x28_c00480{left:174.800000pt;}
.x49_c00480{left:175.866667pt;}
.x7a_c00480{left:177.200000pt;}
.x5a_c00480{left:180.666667pt;}
.x73_c00480{left:182.400000pt;}
.x6_c00480{left:184.666667pt;}
.x44_c00480{left:185.866667pt;}
.x4c_c00480{left:186.933333pt;}
.x85_c00480{left:188.800000pt;}
.x120_c00480{left:191.466667pt;}
.x1b_c00480{left:192.666667pt;}
.xf_c00480{left:196.000000pt;}
.x7_c00480{left:197.733333pt;}
.x7b_c00480{left:199.333333pt;}
.x8b_c00480{left:201.333333pt;}
.x5f_c00480{left:202.400000pt;}
.x29_c00480{left:203.866667pt;}
.x52_c00480{left:206.000000pt;}
.x34_c00480{left:208.000000pt;}
.x21_c00480{left:209.600000pt;}
.x11e_c00480{left:210.533333pt;}
.x2b_c00480{left:212.000000pt;}
.x56_c00480{left:214.133333pt;}
.x3e_c00480{left:216.533333pt;}
.x121_c00480{left:220.266667pt;}
.x63_c00480{left:221.600000pt;}
.x3b_c00480{left:223.333333pt;}
.x95_c00480{left:224.266667pt;}
.x1e_c00480{left:225.866667pt;}
.x35_c00480{left:227.200000pt;}
.x15_c00480{left:228.533333pt;}
.x6c_c00480{left:229.600000pt;}
.x2e_c00480{left:230.533333pt;}
.x5b_c00480{left:231.600000pt;}
.x2c_c00480{left:232.800000pt;}
.x1c_c00480{left:234.933333pt;}
.x8e_c00480{left:236.933333pt;}
.x60_c00480{left:239.200000pt;}
.x7c_c00480{left:241.200000pt;}
.x22_c00480{left:242.266667pt;}
.x4d_c00480{left:243.200000pt;}
.x87_c00480{left:244.133333pt;}
.x16_c00480{left:246.133333pt;}
.x8c_c00480{left:248.000000pt;}
.x8_c00480{left:250.266667pt;}
.x53_c00480{left:251.466667pt;}
.x57_c00480{left:254.133333pt;}
.x23_c00480{left:258.933333pt;}
.x17_c00480{left:260.533333pt;}
.x58_c00480{left:261.866667pt;}
.x96_c00480{left:262.933333pt;}
.x1f_c00480{left:265.333333pt;}
.x10_c00480{left:266.400000pt;}
.x4e_c00480{left:267.866667pt;}
.x9_c00480{left:268.800000pt;}
.x3f_c00480{left:271.200000pt;}
.x3c_c00480{left:272.666667pt;}
.x2f_c00480{left:274.000000pt;}
.x64_c00480{left:276.933333pt;}
.x69_c00480{left:278.533333pt;}
.x40_c00480{left:280.133333pt;}
.x7d_c00480{left:281.466667pt;}
.x1_c00480{left:283.466667pt;}
.x8d_c00480{left:285.066667pt;}
.x11_c00480{left:286.266667pt;}
.x83_c00480{left:287.333333pt;}
.x77_c00480{left:288.933333pt;}
.x88_c00480{left:291.333333pt;}
.x45_c00480{left:292.666667pt;}
.x8a_c00480{left:293.866667pt;}
.x8f_c00480{left:294.800000pt;}
.x65_c00480{left:296.400000pt;}
.x74_c00480{left:297.333333pt;}
.x12_c00480{left:300.400000pt;}
.x84_c00480{left:301.466667pt;}
.x71_c00480{left:303.733333pt;}
.xa_c00480{left:304.666667pt;}
.x70_c00480{left:305.600000pt;}
.x90_c00480{left:306.933333pt;}
.x5c_c00480{left:308.666667pt;}
.x81_c00480{left:311.200000pt;}
.x30_c00480{left:313.333333pt;}
.x24_c00480{left:316.266667pt;}
.x91_c00480{left:318.800000pt;}
.x11c_c00480{left:320.800000pt;}
.x66_c00480{left:323.333333pt;}
.xb_c00480{left:325.466667pt;}
.x46_c00480{left:326.533333pt;}
.x59_c00480{left:328.133333pt;}
.x6d_c00480{left:329.466667pt;}
.x36_c00480{left:331.200000pt;}
.x54_c00480{left:332.533333pt;}
.x25_c00480{left:337.733333pt;}
.x41_c00480{left:339.333333pt;}
.x13_c00480{left:345.866667pt;}
.x5d_c00480{left:348.000000pt;}
.x47_c00480{left:349.200000pt;}
.x31_c00480{left:352.666667pt;}
.x67_c00480{left:353.733333pt;}
.x6e_c00480{left:355.466667pt;}
.x7e_c00480{left:357.600000pt;}
.x122_c00480{left:374.666667pt;}
.xb8_c00480{left:384.266667pt;}
.x141_c00480{left:385.200000pt;}
.x147_c00480{left:390.400000pt;}
.x114_c00480{left:396.133333pt;}
.xd6_c00480{left:397.733333pt;}
.x98_c00480{left:399.066667pt;}
.xcf_c00480{left:400.400000pt;}
.xa1_c00480{left:401.333333pt;}
.x126_c00480{left:408.000000pt;}
.x134_c00480{left:410.000000pt;}
.xed_c00480{left:411.066667pt;}
.x138_c00480{left:412.933333pt;}
.x115_c00480{left:415.066667pt;}
.xb3_c00480{left:417.200000pt;}
.x123_c00480{left:419.200000pt;}
.x130_c00480{left:420.133333pt;}
.x99_c00480{left:421.466667pt;}
.xb9_c00480{left:422.933333pt;}
.xe3_c00480{left:424.666667pt;}
.xa2_c00480{left:426.000000pt;}
.xee_c00480{left:427.333333pt;}
.xc7_c00480{left:428.400000pt;}
.xb4_c00480{left:429.733333pt;}
.x140_c00480{left:431.600000pt;}
.xdd_c00480{left:432.666667pt;}
.x13d_c00480{left:433.600000pt;}
.xe4_c00480{left:435.200000pt;}
.xd4_c00480{left:436.533333pt;}
.x128_c00480{left:438.000000pt;}
.x139_c00480{left:439.466667pt;}
.xd0_c00480{left:441.733333pt;}
.x101_c00480{left:442.800000pt;}
.xc8_c00480{left:445.333333pt;}
.x105_c00480{left:448.266667pt;}
.xf3_c00480{left:450.666667pt;}
.x109_c00480{left:452.000000pt;}
.xcc_c00480{left:452.933333pt;}
.xa3_c00480{left:455.733333pt;}
.x9a_c00480{left:456.666667pt;}
.x129_c00480{left:457.866667pt;}
.xb5_c00480{left:458.800000pt;}
.xef_c00480{left:460.800000pt;}
.x102_c00480{left:463.600000pt;}
.x131_c00480{left:465.200000pt;}
.x148_c00480{left:467.200000pt;}
.x10f_c00480{left:468.400000pt;}
.x143_c00480{left:469.333333pt;}
.x10d_c00480{left:470.266667pt;}
.xac_c00480{left:471.600000pt;}
.xd1_c00480{left:472.800000pt;}
.x116_c00480{left:474.000000pt;}
.xc2_c00480{left:475.733333pt;}
.x135_c00480{left:476.933333pt;}
.xf5_c00480{left:478.666667pt;}
.xe9_c00480{left:480.000000pt;}
.xa4_c00480{left:482.266667pt;}
.xba_c00480{left:483.733333pt;}
.xc3_c00480{left:485.333333pt;}
.xde_c00480{left:486.400000pt;}
.xd7_c00480{left:487.733333pt;}
.xbd_c00480{left:489.733333pt;}
.x9b_c00480{left:490.933333pt;}
.xd2_c00480{left:492.266667pt;}
.x13e_c00480{left:493.200000pt;}
.xfe_c00480{left:494.400000pt;}
.xfa_c00480{left:496.266667pt;}
.xf4_c00480{left:497.333333pt;}
.xa5_c00480{left:498.933333pt;}
.xf0_c00480{left:499.866667pt;}
.x12a_c00480{left:503.600000pt;}
.xc9_c00480{left:505.733333pt;}
.x9c_c00480{left:507.200000pt;}
.xad_c00480{left:509.066667pt;}
.xbe_c00480{left:510.800000pt;}
.x12b_c00480{left:512.533333pt;}
.x13b_c00480{left:514.666667pt;}
.xdf_c00480{left:516.133333pt;}
.x118_c00480{left:518.000000pt;}
.x144_c00480{left:519.866667pt;}
.xca_c00480{left:522.000000pt;}
.x10a_c00480{left:524.000000pt;}
.xd8_c00480{left:526.800000pt;}
.xbb_c00480{left:529.200000pt;}
.x110_c00480{left:530.266667pt;}
.xa6_c00480{left:531.200000pt;}
.xe0_c00480{left:532.133333pt;}
.xc4_c00480{left:533.333333pt;}
.x13f_c00480{left:534.533333pt;}
.xfb_c00480{left:536.266667pt;}
.x111_c00480{left:539.200000pt;}
.xf1_c00480{left:540.133333pt;}
.xbf_c00480{left:543.466667pt;}
.x132_c00480{left:547.466667pt;}
.x106_c00480{left:548.400000pt;}
.xff_c00480{left:549.466667pt;}
.xa7_c00480{left:551.333333pt;}
.x9d_c00480{left:552.933333pt;}
.x13a_c00480{left:554.000000pt;}
.xae_c00480{left:555.733333pt;}
.x100_c00480{left:556.933333pt;}
.xf2_c00480{left:558.400000pt;}
.xe5_c00480{left:560.533333pt;}
.x9e_c00480{left:562.266667pt;}
.x136_c00480{left:564.533333pt;}
.xd9_c00480{left:567.066667pt;}
.xe1_c00480{left:568.666667pt;}
.xfc_c00480{left:569.600000pt;}
.xf8_c00480{left:573.066667pt;}
.xe6_c00480{left:574.266667pt;}
.x124_c00480{left:575.333333pt;}
.xa8_c00480{left:576.266667pt;}
.xb6_c00480{left:579.200000pt;}
.xf6_c00480{left:580.800000pt;}
.x112_c00480{left:584.000000pt;}
.xda_c00480{left:585.333333pt;}
.x107_c00480{left:588.666667pt;}
.xfd_c00480{left:590.133333pt;}
.xaf_c00480{left:591.600000pt;}
.xd5_c00480{left:593.200000pt;}
.x9f_c00480{left:595.600000pt;}
.xc0_c00480{left:596.933333pt;}
.x13c_c00480{left:598.133333pt;}
.x12c_c00480{left:599.600000pt;}
.xa9_c00480{left:600.533333pt;}
.x10b_c00480{left:601.466667pt;}
.xcd_c00480{left:604.266667pt;}
.x113_c00480{left:605.466667pt;}
.xc5_c00480{left:606.933333pt;}
.x12d_c00480{left:607.866667pt;}
.x10c_c00480{left:610.800000pt;}
.xb7_c00480{left:612.533333pt;}
.xaa_c00480{left:614.000000pt;}
.x145_c00480{left:614.933333pt;}
.x103_c00480{left:615.866667pt;}
.xe7_c00480{left:619.066667pt;}
.xea_c00480{left:621.066667pt;}
.x10e_c00480{left:622.000000pt;}
.x119_c00480{left:623.466667pt;}
.xb0_c00480{left:624.533333pt;}
.x12e_c00480{left:626.800000pt;}
.xdb_c00480{left:628.533333pt;}
.xa0_c00480{left:630.133333pt;}
.xbc_c00480{left:631.200000pt;}
.xab_c00480{left:633.866667pt;}
.xce_c00480{left:635.333333pt;}
.xe2_c00480{left:636.266667pt;}
.xe8_c00480{left:637.333333pt;}
.x142_c00480{left:640.000000pt;}
.xb1_c00480{left:641.466667pt;}
.xeb_c00480{left:644.133333pt;}
.xcb_c00480{left:646.933333pt;}
.x125_c00480{left:648.533333pt;}
.xf7_c00480{left:650.933333pt;}
.x133_c00480{left:651.866667pt;}
.x108_c00480{left:652.933333pt;}
.xdc_c00480{left:654.800000pt;}
.x2_c00480{left:656.266667pt;}
.xc6_c00480{left:657.866667pt;}
.x117_c00480{left:659.333333pt;}
.x137_c00480{left:660.266667pt;}
.xd3_c00480{left:662.133333pt;}
.xf9_c00480{left:664.933333pt;}
.x146_c00480{left:667.466667pt;}
.xc1_c00480{left:669.600000pt;}
.xb2_c00480{left:672.800000pt;}
.x127_c00480{left:674.000000pt;}
.x104_c00480{left:677.333333pt;}
.xec_c00480{left:678.666667pt;}
.x12f_c00480{left:689.866667pt;}
}





/* 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_c00481 {
    display:none;
  }
  .loading-indicator_c00481.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00481 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_c00481 { 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_c00481" -> "#page-container .classname_c00481")
 */
.pf_c00481 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00481 { /* 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_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00481 { /* 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_c00481 { /* 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_c00481 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00481 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00481 {overflow:visible;}
  }
}
.c_c00481 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00481 { /* 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_c00481:after { /* webkit #35443 */
  content: '';
}
.t_c00481:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00481 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 */
}
.__c00481 { /* 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_c00481 { /* info for Javascript */
  display:none;
}
.l_c00481 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00481 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00481 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00481: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_c00481 {
    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_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00481.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_c00481 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00481{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00481;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.000000;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;}
.m121_c00481{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00481{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m119_c00481{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.md1_c00481{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00481{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.md7_c00481{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00481{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m68_c00481{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m71_c00481{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m120_c00481{transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);}
.m38_c00481{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.me0_c00481{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m67_c00481{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m72_c00481{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00481{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m69_c00481{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m73_c00481{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00481{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00481{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00481{transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);}
.m66_c00481{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00481{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m39_c00481{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.me_c00481{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00481{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m18_c00481{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00481{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mae_c00481{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m42_c00481{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00481{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m100_c00481{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00481{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m114_c00481{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00481{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.mf_c00481{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mef_c00481{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.md_c00481{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m64_c00481{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00481{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m23_c00481{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00481{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m27_c00481{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m17_c00481{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m32_c00481{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00481{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.md8_c00481{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00481{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mba_c00481{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m28_c00481{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m113_c00481{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00481{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m11_c00481{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00481{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m33_c00481{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m58_c00481{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00481{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m96_c00481{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m47_c00481{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m45_c00481{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.mea_c00481{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00481{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00481{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m19_c00481{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md4_c00481{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00481{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m10_c00481{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m62_c00481{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m31_c00481{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00481{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.md2_c00481{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m49_c00481{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m5_c00481{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mec_c00481{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m21_c00481{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00481{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m112_c00481{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m128_c00481{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m48_c00481{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m70_c00481{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m124_c00481{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00481{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m126_c00481{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m14_c00481{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00481{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m15_c00481{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00481{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m79_c00481{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m26_c00481{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00481{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00481{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00481{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m82_c00481{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma_c00481{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m125_c00481{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00481{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4_c00481{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00481{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.maf_c00481{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.md6_c00481{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00481{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m13_c00481{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00481{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00481{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00481{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00481{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m111_c00481{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00481{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m77_c00481{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00481{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00481{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00481{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m94_c00481{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m0_c00481{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md3_c00481{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00481{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me8_c00481{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m20_c00481{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00481{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m24_c00481{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00481{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mc_c00481{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m99_c00481{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00481{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me4_c00481{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mac_c00481{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m88_c00481{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00481{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00481{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m59_c00481{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00481{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mad_c00481{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00481{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.meb_c00481{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me9_c00481{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m92_c00481{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m109_c00481{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00481{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m34_c00481{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m87_c00481{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00481{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00481{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00481{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m116_c00481{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.med_c00481{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00481{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m36_c00481{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m43_c00481{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m30_c00481{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00481{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m44_c00481{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m7_c00481{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m91_c00481{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00481{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00481{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m46_c00481{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.md5_c00481{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00481{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m122_c00481{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m25_c00481{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m123_c00481{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m118_c00481{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.me3_c00481{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me5_c00481{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00481{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m55_c00481{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m37_c00481{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00481{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m50_c00481{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00481{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00481{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m41_c00481{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00481{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m104_c00481{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00481{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00481{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m95_c00481{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00481{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00481{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m6_c00481{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00481{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00481{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m78_c00481{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me7_c00481{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mca_c00481{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m16_c00481{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m57_c00481{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00481{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m56_c00481{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mab_c00481{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00481{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m63_c00481{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00481{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m127_c00481{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m53_c00481{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m22_c00481{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00481{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m86_c00481{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00481{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m54_c00481{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mde_c00481{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb_c00481{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m115_c00481{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00481{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m61_c00481{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00481{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00481{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3_c00481{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00481{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m90_c00481{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00481{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m85_c00481{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00481{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00481{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m80_c00481{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00481{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00481{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00481{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00481{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00481{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mff_c00481{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00481{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mda_c00481{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m52_c00481{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00481{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.maa_c00481{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00481{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00481{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00481{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00481{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m129_c00481{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00481{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00481{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00481{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me6_c00481{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00481{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00481{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m60_c00481{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00481{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00481{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00481{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m76_c00481{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m65_c00481{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m83_c00481{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00481{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m97_c00481{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00481{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m93_c00481{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m29_c00481{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m98_c00481{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m107_c00481{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00481{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m75_c00481{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00481{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00481{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me1_c00481{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m103_c00481{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m106_c00481{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m108_c00481{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00481{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m89_c00481{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00481{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00481{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m12_c00481{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.md9_c00481{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00481{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m51_c00481{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00481{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m40_c00481{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m84_c00481{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00481{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00481{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00481{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mce_c00481{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00481{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00481{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m8_c00481{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00481{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00481{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m101_c00481{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00481{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m74_c00481{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m110_c00481{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mee_c00481{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m9_c00481{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m105_c00481{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00481{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m102_c00481{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00481{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.me2_c00481{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00481{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m81_c00481{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00481{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);}
.md0_c00481{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m35_c00481{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.m117_c00481{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00481{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls2_c00481{letter-spacing:0.000000px;}
.ls1_c00481{letter-spacing:50.211796px;}
.ls0_c00481{letter-spacing:55.714286px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{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__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00481{word-spacing:-85.714286px;}
.ws1a_c00481{word-spacing:-77.211796px;}
.ws12_c00481{word-spacing:-17.145251px;}
.ws17_c00481{word-spacing:-10.114596px;}
.ws4_c00481{word-spacing:-8.207547px;}
.ws16_c00481{word-spacing:-7.156425px;}
.ws18_c00481{word-spacing:-6.773196px;}
.ws1c_c00481{word-spacing:-5.388535px;}
.ws9_c00481{word-spacing:-3.282723px;}
.ws1d_c00481{word-spacing:-1.429433px;}
.ws13_c00481{word-spacing:-0.068702px;}
.ws1e_c00481{word-spacing:0.000000px;}
.ws14_c00481{word-spacing:6.052632px;}
.ws15_c00481{word-spacing:6.571429px;}
.ws1_c00481{word-spacing:9.562500px;}
.ws8_c00481{word-spacing:12.340169px;}
.ws2_c00481{word-spacing:13.816514px;}
.ws0_c00481{word-spacing:15.250000px;}
.ws6_c00481{word-spacing:22.142857px;}
.ws1b_c00481{word-spacing:23.211796px;}
.ws7_c00481{word-spacing:25.714286px;}
.wsb_c00481{word-spacing:28.426230px;}
.wse_c00481{word-spacing:29.285714px;}
.wsd_c00481{word-spacing:35.833333px;}
.ws3_c00481{word-spacing:36.000000px;}
.wsf_c00481{word-spacing:40.000000px;}
.wsa_c00481{word-spacing:43.923664px;}
.ws5_c00481{word-spacing:44.166667px;}
.ws19_c00481{word-spacing:63.125000px;}
.ws11_c00481{word-spacing:65.000000px;}
.wsc_c00481{word-spacing:69.343788px;}
._6_c00481{margin-left:-55.714286px;}
._7_c00481{margin-left:-50.211796px;}
._5_c00481{width:3.571429px;}
._0_c00481{width:55.714286px;}
._1_c00481{width:57.491803px;}
._3_c00481{width:59.285714px;}
._4_c00481{width:64.642857px;}
._2_c00481{width:66.750000px;}
.fc0_c00481{color:transparent;}
.fs6_c00481{font-size:48.000000px;}
.fs5_c00481{font-size:54.000000px;}
.fs2_c00481{font-size:60.000000px;}
.fs3_c00481{font-size:66.000000px;}
.fs4_c00481{font-size:72.000000px;}
.fs0_c00481{font-size:78.000000px;}
.fs1_c00481{font-size:96.000000px;}
.y0_c00481{bottom:0.000000px;}
.y6c_c00481{bottom:208.650000px;}
.y35_c00481{bottom:208.800000px;}
.y34_c00481{bottom:223.200000px;}
.y6b_c00481{bottom:226.350000px;}
.y33_c00481{bottom:237.600000px;}
.y6a_c00481{bottom:244.350000px;}
.y32_c00481{bottom:252.000000px;}
.y69_c00481{bottom:262.050000px;}
.y31_c00481{bottom:271.800000px;}
.y68_c00481{bottom:279.300000px;}
.y30_c00481{bottom:289.500000px;}
.y67_c00481{bottom:297.300000px;}
.y2f_c00481{bottom:306.750000px;}
.y66_c00481{bottom:315.000000px;}
.y2e_c00481{bottom:324.750000px;}
.y65_c00481{bottom:332.700000px;}
.y2d_c00481{bottom:345.900000px;}
.y64_c00481{bottom:351.000000px;}
.y2c_c00481{bottom:363.900000px;}
.y63_c00481{bottom:368.250000px;}
.y2b_c00481{bottom:381.900000px;}
.y62_c00481{bottom:385.200000px;}
.y2a_c00481{bottom:399.600000px;}
.y61_c00481{bottom:400.650000px;}
.y60_c00481{bottom:413.250000px;}
.y29_c00481{bottom:417.600000px;}
.y5f_c00481{bottom:427.350000px;}
.y28_c00481{bottom:435.300000px;}
.y5e_c00481{bottom:443.550000px;}
.y27_c00481{bottom:453.300000px;}
.y5d_c00481{bottom:458.100000px;}
.y26_c00481{bottom:475.200000px;}
.y5c_c00481{bottom:476.100000px;}
.y5b_c00481{bottom:493.800000px;}
.y25_c00481{bottom:505.800000px;}
.y5a_c00481{bottom:511.500000px;}
.y24_c00481{bottom:524.100000px;}
.y59_c00481{bottom:529.200000px;}
.y23_c00481{bottom:541.800000px;}
.y58_c00481{bottom:546.750000px;}
.y22_c00481{bottom:559.650000px;}
.y57_c00481{bottom:564.450000px;}
.y21_c00481{bottom:577.350000px;}
.y56_c00481{bottom:582.150000px;}
.y20_c00481{bottom:594.600000px;}
.y55_c00481{bottom:600.450000px;}
.y1f_c00481{bottom:612.300000px;}
.y54_c00481{bottom:617.700000px;}
.y1e_c00481{bottom:630.000000px;}
.y53_c00481{bottom:636.450000px;}
.y1d_c00481{bottom:647.100000px;}
.y52_c00481{bottom:653.700000px;}
.y1c_c00481{bottom:665.100000px;}
.y51_c00481{bottom:675.300000px;}
.y1b_c00481{bottom:683.100000px;}
.y50_c00481{bottom:693.300000px;}
.y1a_c00481{bottom:700.800000px;}
.y19_c00481{bottom:718.500000px;}
.y4f_c00481{bottom:719.250000px;}
.y18_c00481{bottom:736.200000px;}
.y4e_c00481{bottom:737.250000px;}
.y17_c00481{bottom:753.900000px;}
.y4d_c00481{bottom:754.950000px;}
.y16_c00481{bottom:771.900000px;}
.y4c_c00481{bottom:772.350000px;}
.y4b_c00481{bottom:790.350000px;}
.y15_c00481{bottom:797.700000px;}
.y4a_c00481{bottom:808.350000px;}
.y14_c00481{bottom:810.000000px;}
.y13_c00481{bottom:824.700000px;}
.y49_c00481{bottom:826.050000px;}
.y12_c00481{bottom:839.100000px;}
.y48_c00481{bottom:843.750000px;}
.y11_c00481{bottom:857.100000px;}
.y47_c00481{bottom:861.450000px;}
.y10_c00481{bottom:874.800000px;}
.y46_c00481{bottom:879.750000px;}
.yf_c00481{bottom:892.500000px;}
.y45_c00481{bottom:897.000000px;}
.ye_c00481{bottom:912.300000px;}
.y44_c00481{bottom:915.000000px;}
.yd_c00481{bottom:927.750000px;}
.y43_c00481{bottom:932.700000px;}
.yc_c00481{bottom:948.900000px;}
.y42_c00481{bottom:950.700000px;}
.yb_c00481{bottom:967.200000px;}
.y41_c00481{bottom:968.400000px;}
.ya_c00481{bottom:985.200000px;}
.y40_c00481{bottom:985.350000px;}
.y3f_c00481{bottom:999.750000px;}
.y9_c00481{bottom:1002.450000px;}
.y3e_c00481{bottom:1014.150000px;}
.y8_c00481{bottom:1020.150000px;}
.y3d_c00481{bottom:1028.550000px;}
.y7_c00481{bottom:1037.850000px;}
.y3c_c00481{bottom:1042.950000px;}
.y6_c00481{bottom:1055.850000px;}
.y3b_c00481{bottom:1057.650000px;}
.y3a_c00481{bottom:1071.300000px;}
.y5_c00481{bottom:1073.550000px;}
.y39_c00481{bottom:1084.350000px;}
.y4_c00481{bottom:1095.150000px;}
.y38_c00481{bottom:1107.450000px;}
.y37_c00481{bottom:1115.700000px;}
.y3_c00481{bottom:1120.650000px;}
.y36_c00481{bottom:1128.300000px;}
.y1_c00481{bottom:1146.300000px;}
.y2_c00481{bottom:1148.400000px;}
.h8_c00481{height:48.000000px;}
.h7_c00481{height:54.000000px;}
.h4_c00481{height:60.000000px;}
.h5_c00481{height:66.000000px;}
.h6_c00481{height:72.000000px;}
.h2_c00481{height:78.000000px;}
.h3_c00481{height:96.000000px;}
.h1_c00481{height:1273.500000px;}
.h0_c00481{height:1273.679993px;}
.w0_c00481{width:958.320007px;}
.w1_c00481{width:958.500000px;}
.x0_c00481{left:0.000000px;}
.x8f_c00481{left:187.200000px;}
.x47_c00481{left:189.000000px;}
.x1_c00481{left:190.050000px;}
.x98_c00481{left:191.100000px;}
.x99_c00481{left:204.000000px;}
.x1f_c00481{left:205.500000px;}
.x15_c00481{left:207.150000px;}
.x84_c00481{left:208.350000px;}
.x9b_c00481{left:209.400000px;}
.x61_c00481{left:218.400000px;}
.x5d_c00481{left:219.450000px;}
.xa1_c00481{left:220.800000px;}
.x55_c00481{left:222.000000px;}
.xd_c00481{left:225.000000px;}
.x27_c00481{left:226.950000px;}
.x8_c00481{left:231.450000px;}
.x7c_c00481{left:234.000000px;}
.x16_c00481{left:235.650000px;}
.x9c_c00481{left:236.700000px;}
.x4f_c00481{left:238.350000px;}
.x7d_c00481{left:240.450000px;}
.x74_c00481{left:242.250000px;}
.x30_c00481{left:244.350000px;}
.x20_c00481{left:247.950000px;}
.x3b_c00481{left:250.350000px;}
.x28_c00481{left:254.250000px;}
.x7e_c00481{left:256.350000px;}
.x90_c00481{left:258.150000px;}
.x76_c00481{left:259.200000px;}
.x3_c00481{left:261.750000px;}
.x44_c00481{left:262.800000px;}
.x9_c00481{left:264.900000px;}
.x7f_c00481{left:269.250000px;}
.x3c_c00481{left:271.200000px;}
.x96_c00481{left:272.850000px;}
.x68_c00481{left:275.850000px;}
.x17_c00481{left:277.050000px;}
.x4_c00481{left:278.700000px;}
.x62_c00481{left:281.100000px;}
.x29_c00481{left:282.750000px;}
.x21_c00481{left:284.250000px;}
.x6a_c00481{left:286.950000px;}
.xe_c00481{left:288.000000px;}
.x56_c00481{left:289.050000px;}
.x80_c00481{left:290.850000px;}
.x18_c00481{left:292.500000px;}
.x9d_c00481{left:293.550000px;}
.x8a_c00481{left:295.350000px;}
.x2a_c00481{left:297.900000px;}
.x37_c00481{left:301.650000px;}
.x6f_c00481{left:302.850000px;}
.x52_c00481{left:305.250000px;}
.x48_c00481{left:306.750000px;}
.x85_c00481{left:308.100000px;}
.xf_c00481{left:309.900000px;}
.x91_c00481{left:311.250000px;}
.x19_c00481{left:312.750000px;}
.x31_c00481{left:315.300000px;}
.x10_c00481{left:319.650000px;}
.x2b_c00481{left:321.300000px;}
.x22_c00481{left:322.800000px;}
.x3d_c00481{left:326.250000px;}
.x1a_c00481{left:328.950000px;}
.x5_c00481{left:330.150000px;}
.x11_c00481{left:335.100000px;}
.x38_c00481{left:337.350000px;}
.x86_c00481{left:340.200000px;}
.x5e_c00481{left:341.400000px;}
.x8d_c00481{left:343.500000px;}
.x75_c00481{left:344.550000px;}
.xa_c00481{left:346.650000px;}
.x5f_c00481{left:348.600000px;}
.x81_c00481{left:349.800000px;}
.x50_c00481{left:351.450000px;}
.x8b_c00481{left:353.250000px;}
.x23_c00481{left:354.450000px;}
.x63_c00481{left:355.500000px;}
.x3e_c00481{left:356.550000px;}
.x1b_c00481{left:358.050000px;}
.x49_c00481{left:359.700000px;}
.x12_c00481{left:361.350000px;}
.x32_c00481{left:362.850000px;}
.x45_c00481{left:363.900000px;}
.x39_c00481{left:365.100000px;}
.x9e_c00481{left:368.400000px;}
.x82_c00481{left:369.600000px;}
.x4c_c00481{left:371.100000px;}
.x87_c00481{left:373.200000px;}
.x1c_c00481{left:374.250000px;}
.x64_c00481{left:376.050000px;}
.x5a_c00481{left:378.150000px;}
.x77_c00481{left:380.100000px;}
.x3f_c00481{left:382.500000px;}
.x2c_c00481{left:384.300000px;}
.x6_c00481{left:386.250000px;}
.x6b_c00481{left:388.200000px;}
.x40_c00481{left:389.700000px;}
.x24_c00481{left:391.950000px;}
.x94_c00481{left:395.400000px;}
.x70_c00481{left:398.250000px;}
.x57_c00481{left:399.450000px;}
.x46_c00481{left:401.700000px;}
.x53_c00481{left:405.600000px;}
.x60_c00481{left:406.950000px;}
.x7_c00481{left:409.350000px;}
.x33_c00481{left:411.150000px;}
.x1d_c00481{left:414.600000px;}
.x78_c00481{left:416.400000px;}
.x97_c00481{left:418.200000px;}
.x25_c00481{left:419.250000px;}
.x4a_c00481{left:421.950000px;}
.x41_c00481{left:423.600000px;}
.x4d_c00481{left:425.400000px;}
.x65_c00481{left:427.650000px;}
.x95_c00481{left:428.850000px;}
.x71_c00481{left:430.350000px;}
.xb_c00481{left:432.300000px;}
.x8c_c00481{left:433.500000px;}
.x2_c00481{left:434.550000px;}
.x2d_c00481{left:435.750000px;}
.x79_c00481{left:436.950000px;}
.x42_c00481{left:439.800000px;}
.x13_c00481{left:441.600000px;}
.x9a_c00481{left:443.100000px;}
.x58_c00481{left:444.300000px;}
.x83_c00481{left:445.500000px;}
.x9f_c00481{left:446.550000px;}
.x34_c00481{left:449.250000px;}
.x72_c00481{left:450.450000px;}
.x26_c00481{left:451.950000px;}
.x66_c00481{left:454.350000px;}
.x5b_c00481{left:456.300000px;}
.x6c_c00481{left:459.450000px;}
.x43_c00481{left:463.200000px;}
.x4b_c00481{left:465.450000px;}
.x8e_c00481{left:467.400000px;}
.x6d_c00481{left:472.050000px;}
.x92_c00481{left:474.150000px;}
.x3a_c00481{left:475.650000px;}
.x2e_c00481{left:477.150000px;}
.x4e_c00481{left:479.100000px;}
.x35_c00481{left:480.900000px;}
.x67_c00481{left:482.850000px;}
.x51_c00481{left:483.900000px;}
.xc_c00481{left:486.000000px;}
.x7a_c00481{left:487.650000px;}
.x2f_c00481{left:488.700000px;}
.x14_c00481{left:490.500000px;}
.x69_c00481{left:496.050000px;}
.x1e_c00481{left:497.100000px;}
.x36_c00481{left:498.150000px;}
.x54_c00481{left:499.200000px;}
.x6e_c00481{left:500.550000px;}
.x73_c00481{left:502.950000px;}
.x88_c00481{left:504.900000px;}
.x7b_c00481{left:507.150000px;}
.x59_c00481{left:509.850000px;}
.xa0_c00481{left:510.900000px;}
.x5c_c00481{left:512.100000px;}
.x89_c00481{left:513.900000px;}
.x93_c00481{left:515.250000px;}
.xdb_c00481{left:545.100000px;}
.x13a_c00481{left:546.150000px;}
.x13e_c00481{left:556.500000px;}
.xc0_c00481{left:558.750000px;}
.x133_c00481{left:559.800000px;}
.x117_c00481{left:561.750000px;}
.xe1_c00481{left:563.250000px;}
.xf7_c00481{left:564.450000px;}
.xa5_c00481{left:572.700000px;}
.xda_c00481{left:574.050000px;}
.xc1_c00481{left:579.300000px;}
.x118_c00481{left:581.400000px;}
.x113_c00481{left:586.500000px;}
.x128_c00481{left:588.600000px;}
.xaf_c00481{left:589.950000px;}
.xfd_c00481{left:591.000000px;}
.x126_c00481{left:592.800000px;}
.xb0_c00481{left:594.600000px;}
.xf3_c00481{left:595.800000px;}
.xeb_c00481{left:597.150000px;}
.xe2_c00481{left:598.950000px;}
.x100_c00481{left:601.050000px;}
.x10f_c00481{left:604.350000px;}
.x132_c00481{left:605.400000px;}
.x108_c00481{left:606.450000px;}
.xf8_c00481{left:607.650000px;}
.xd4_c00481{left:608.850000px;}
.x147_c00481{left:611.550000px;}
.xb1_c00481{left:612.900000px;}
.x134_c00481{left:614.850000px;}
.xf9_c00481{left:616.650000px;}
.x11d_c00481{left:617.850000px;}
.x11a_c00481{left:618.900000px;}
.xc2_c00481{left:621.450000px;}
.x10e_c00481{left:622.650000px;}
.x114_c00481{left:624.000000px;}
.xa6_c00481{left:625.650000px;}
.xdc_c00481{left:627.150000px;}
.xe4_c00481{left:629.550000px;}
.x122_c00481{left:630.600000px;}
.x143_c00481{left:633.450000px;}
.xba_c00481{left:635.700000px;}
.xc3_c00481{left:637.650000px;}
.x104_c00481{left:639.300000px;}
.xf4_c00481{left:641.850000px;}
.xa7_c00481{left:644.700000px;}
.xec_c00481{left:647.550000px;}
.x145_c00481{left:649.350000px;}
.x112_c00481{left:651.750000px;}
.xdd_c00481{left:653.850000px;}
.xbb_c00481{left:655.500000px;}
.xc9_c00481{left:657.450000px;}
.x129_c00481{left:659.550000px;}
.xb2_c00481{left:661.500000px;}
.xca_c00481{left:664.650000px;}
.xe5_c00481{left:665.850000px;}
.x11e_c00481{left:667.950000px;}
.xc4_c00481{left:669.750000px;}
.xcb_c00481{left:672.150000px;}
.x110_c00481{left:673.200000px;}
.x119_c00481{left:674.700000px;}
.x12e_c00481{left:676.050000px;}
.xa8_c00481{left:678.150000px;}
.x127_c00481{left:679.200000px;}
.xe6_c00481{left:680.550000px;}
.xde_c00481{left:681.600000px;}
.x141_c00481{left:683.100000px;}
.xcc_c00481{left:685.950000px;}
.x11b_c00481{left:687.300000px;}
.xc5_c00481{left:689.250000px;}
.xfe_c00481{left:690.750000px;}
.xfa_c00481{left:693.000000px;}
.x137_c00481{left:694.050000px;}
.xed_c00481{left:695.100000px;}
.xbc_c00481{left:696.150000px;}
.xa9_c00481{left:697.650000px;}
.xcd_c00481{left:700.650000px;}
.x138_c00481{left:702.000000px;}
.xe7_c00481{left:703.650000px;}
.xbd_c00481{left:704.850000px;}
.x144_c00481{left:706.200000px;}
.xce_c00481{left:708.150000px;}
.xb3_c00481{left:709.800000px;}
.xb4_c00481{left:714.900000px;}
.xe8_c00481{left:717.000000px;}
.x12f_c00481{left:718.200000px;}
.xee_c00481{left:720.000000px;}
.x13c_c00481{left:723.600000px;}
.xfb_c00481{left:726.150000px;}
.x12a_c00481{left:727.950000px;}
.xd5_c00481{left:729.150000px;}
.x10d_c00481{left:730.800000px;}
.x130_c00481{left:732.300000px;}
.x13f_c00481{left:733.950000px;}
.x123_c00481{left:735.450000px;}
.xb5_c00481{left:736.800000px;}
.xef_c00481{left:740.100000px;}
.xbe_c00481{left:741.900000px;}
.xb6_c00481{left:743.700000px;}
.xd0_c00481{left:744.900000px;}
.xaa_c00481{left:745.950000px;}
.xd6_c00481{left:750.450000px;}
.x105_c00481{left:752.250000px;}
.x109_c00481{left:753.300000px;}
.xdf_c00481{left:758.250000px;}
.xc6_c00481{left:759.750000px;}
.x121_c00481{left:761.700000px;}
.xbf_c00481{left:763.800000px;}
.xd7_c00481{left:764.850000px;}
.xd1_c00481{left:766.050000px;}
.xc7_c00481{left:767.700000px;}
.x11c_c00481{left:770.100000px;}
.xd8_c00481{left:772.050000px;}
.xc8_c00481{left:774.150000px;}
.x135_c00481{left:775.350000px;}
.x10a_c00481{left:777.000000px;}
.xb7_c00481{left:780.150000px;}
.xab_c00481{left:782.550000px;}
.x11f_c00481{left:783.600000px;}
.x12b_c00481{left:784.800000px;}
.xd9_c00481{left:786.450000px;}
.xd3_c00481{left:787.800000px;}
.xac_c00481{left:789.750000px;}
.x101_c00481{left:793.500000px;}
.xf0_c00481{left:795.900000px;}
.x131_c00481{left:798.900000px;}
.x106_c00481{left:800.100000px;}
.xa2_c00481{left:801.300000px;}
.x115_c00481{left:803.250000px;}
.xe9_c00481{left:805.950000px;}
.xcf_c00481{left:807.150000px;}
.xb8_c00481{left:809.250000px;}
.xad_c00481{left:810.300000px;}
.xf5_c00481{left:813.150000px;}
.xf1_c00481{left:814.650000px;}
.x120_c00481{left:816.750000px;}
.x10b_c00481{left:822.300000px;}
.x139_c00481{left:825.000000px;}
.x12d_c00481{left:826.350000px;}
.x13b_c00481{left:827.400000px;}
.xea_c00481{left:829.050000px;}
.x111_c00481{left:830.850000px;}
.xa3_c00481{left:831.900000px;}
.x136_c00481{left:832.950000px;}
.x107_c00481{left:834.300000px;}
.xd2_c00481{left:835.800000px;}
.xb9_c00481{left:837.000000px;}
.x125_c00481{left:838.050000px;}
.xae_c00481{left:839.100000px;}
.xf2_c00481{left:842.400000px;}
.x102_c00481{left:844.200000px;}
.x124_c00481{left:847.500000px;}
.xfc_c00481{left:849.900000px;}
.x140_c00481{left:851.550000px;}
.xf6_c00481{left:852.750000px;}
.x12c_c00481{left:853.800000px;}
.x10c_c00481{left:855.750000px;}
.x116_c00481{left:858.750000px;}
.x146_c00481{left:860.400000px;}
.x142_c00481{left:861.750000px;}
.xff_c00481{left:863.100000px;}
.xe3_c00481{left:864.750000px;}
.xa4_c00481{left:866.400000px;}
.x103_c00481{left:869.700000px;}
.x148_c00481{left:870.900000px;}
.x13d_c00481{left:874.500000px;}
.xe0_c00481{left:876.750000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls2_c00481{letter-spacing:0.000000pt;}
.ls1_c00481{letter-spacing:44.632708pt;}
.ls0_c00481{letter-spacing:49.523810pt;}
.ws10_c00481{word-spacing:-76.190476pt;}
.ws1a_c00481{word-spacing:-68.632708pt;}
.ws12_c00481{word-spacing:-15.240223pt;}
.ws17_c00481{word-spacing:-8.990752pt;}
.ws4_c00481{word-spacing:-7.295597pt;}
.ws16_c00481{word-spacing:-6.361266pt;}
.ws18_c00481{word-spacing:-6.020619pt;}
.ws1c_c00481{word-spacing:-4.789809pt;}
.ws9_c00481{word-spacing:-2.917976pt;}
.ws1d_c00481{word-spacing:-1.270607pt;}
.ws13_c00481{word-spacing:-0.061069pt;}
.ws1e_c00481{word-spacing:0.000000pt;}
.ws14_c00481{word-spacing:5.380117pt;}
.ws15_c00481{word-spacing:5.841270pt;}
.ws1_c00481{word-spacing:8.500000pt;}
.ws8_c00481{word-spacing:10.969039pt;}
.ws2_c00481{word-spacing:12.281346pt;}
.ws0_c00481{word-spacing:13.555556pt;}
.ws6_c00481{word-spacing:19.682540pt;}
.ws1b_c00481{word-spacing:20.632708pt;}
.ws7_c00481{word-spacing:22.857143pt;}
.wsb_c00481{word-spacing:25.267760pt;}
.wse_c00481{word-spacing:26.031746pt;}
.wsd_c00481{word-spacing:31.851852pt;}
.ws3_c00481{word-spacing:32.000000pt;}
.wsf_c00481{word-spacing:35.555556pt;}
.wsa_c00481{word-spacing:39.043257pt;}
.ws5_c00481{word-spacing:39.259259pt;}
.ws19_c00481{word-spacing:56.111111pt;}
.ws11_c00481{word-spacing:57.777778pt;}
.wsc_c00481{word-spacing:61.638922pt;}
._6_c00481{margin-left:-49.523810pt;}
._7_c00481{margin-left:-44.632708pt;}
._5_c00481{width:3.174603pt;}
._0_c00481{width:49.523810pt;}
._1_c00481{width:51.103825pt;}
._3_c00481{width:52.698413pt;}
._4_c00481{width:57.460317pt;}
._2_c00481{width:59.333333pt;}
.fs6_c00481{font-size:42.666667pt;}
.fs5_c00481{font-size:48.000000pt;}
.fs2_c00481{font-size:53.333333pt;}
.fs3_c00481{font-size:58.666667pt;}
.fs4_c00481{font-size:64.000000pt;}
.fs0_c00481{font-size:69.333333pt;}
.fs1_c00481{font-size:85.333333pt;}
.y0_c00481{bottom:0.000000pt;}
.y6c_c00481{bottom:185.466667pt;}
.y35_c00481{bottom:185.600000pt;}
.y34_c00481{bottom:198.400000pt;}
.y6b_c00481{bottom:201.200000pt;}
.y33_c00481{bottom:211.200000pt;}
.y6a_c00481{bottom:217.200000pt;}
.y32_c00481{bottom:224.000000pt;}
.y69_c00481{bottom:232.933333pt;}
.y31_c00481{bottom:241.600000pt;}
.y68_c00481{bottom:248.266667pt;}
.y30_c00481{bottom:257.333333pt;}
.y67_c00481{bottom:264.266667pt;}
.y2f_c00481{bottom:272.666667pt;}
.y66_c00481{bottom:280.000000pt;}
.y2e_c00481{bottom:288.666667pt;}
.y65_c00481{bottom:295.733333pt;}
.y2d_c00481{bottom:307.466667pt;}
.y64_c00481{bottom:312.000000pt;}
.y2c_c00481{bottom:323.466667pt;}
.y63_c00481{bottom:327.333333pt;}
.y2b_c00481{bottom:339.466667pt;}
.y62_c00481{bottom:342.400000pt;}
.y2a_c00481{bottom:355.200000pt;}
.y61_c00481{bottom:356.133333pt;}
.y60_c00481{bottom:367.333333pt;}
.y29_c00481{bottom:371.200000pt;}
.y5f_c00481{bottom:379.866667pt;}
.y28_c00481{bottom:386.933333pt;}
.y5e_c00481{bottom:394.266667pt;}
.y27_c00481{bottom:402.933333pt;}
.y5d_c00481{bottom:407.200000pt;}
.y26_c00481{bottom:422.400000pt;}
.y5c_c00481{bottom:423.200000pt;}
.y5b_c00481{bottom:438.933333pt;}
.y25_c00481{bottom:449.600000pt;}
.y5a_c00481{bottom:454.666667pt;}
.y24_c00481{bottom:465.866667pt;}
.y59_c00481{bottom:470.400000pt;}
.y23_c00481{bottom:481.600000pt;}
.y58_c00481{bottom:486.000000pt;}
.y22_c00481{bottom:497.466667pt;}
.y57_c00481{bottom:501.733333pt;}
.y21_c00481{bottom:513.200000pt;}
.y56_c00481{bottom:517.466667pt;}
.y20_c00481{bottom:528.533333pt;}
.y55_c00481{bottom:533.733333pt;}
.y1f_c00481{bottom:544.266667pt;}
.y54_c00481{bottom:549.066667pt;}
.y1e_c00481{bottom:560.000000pt;}
.y53_c00481{bottom:565.733333pt;}
.y1d_c00481{bottom:575.200000pt;}
.y52_c00481{bottom:581.066667pt;}
.y1c_c00481{bottom:591.200000pt;}
.y51_c00481{bottom:600.266667pt;}
.y1b_c00481{bottom:607.200000pt;}
.y50_c00481{bottom:616.266667pt;}
.y1a_c00481{bottom:622.933333pt;}
.y19_c00481{bottom:638.666667pt;}
.y4f_c00481{bottom:639.333333pt;}
.y18_c00481{bottom:654.400000pt;}
.y4e_c00481{bottom:655.333333pt;}
.y17_c00481{bottom:670.133333pt;}
.y4d_c00481{bottom:671.066667pt;}
.y16_c00481{bottom:686.133333pt;}
.y4c_c00481{bottom:686.533333pt;}
.y4b_c00481{bottom:702.533333pt;}
.y15_c00481{bottom:709.066667pt;}
.y4a_c00481{bottom:718.533333pt;}
.y14_c00481{bottom:720.000000pt;}
.y13_c00481{bottom:733.066667pt;}
.y49_c00481{bottom:734.266667pt;}
.y12_c00481{bottom:745.866667pt;}
.y48_c00481{bottom:750.000000pt;}
.y11_c00481{bottom:761.866667pt;}
.y47_c00481{bottom:765.733333pt;}
.y10_c00481{bottom:777.600000pt;}
.y46_c00481{bottom:782.000000pt;}
.yf_c00481{bottom:793.333333pt;}
.y45_c00481{bottom:797.333333pt;}
.ye_c00481{bottom:810.933333pt;}
.y44_c00481{bottom:813.333333pt;}
.yd_c00481{bottom:824.666667pt;}
.y43_c00481{bottom:829.066667pt;}
.yc_c00481{bottom:843.466667pt;}
.y42_c00481{bottom:845.066667pt;}
.yb_c00481{bottom:859.733333pt;}
.y41_c00481{bottom:860.800000pt;}
.ya_c00481{bottom:875.733333pt;}
.y40_c00481{bottom:875.866667pt;}
.y3f_c00481{bottom:888.666667pt;}
.y9_c00481{bottom:891.066667pt;}
.y3e_c00481{bottom:901.466667pt;}
.y8_c00481{bottom:906.800000pt;}
.y3d_c00481{bottom:914.266667pt;}
.y7_c00481{bottom:922.533333pt;}
.y3c_c00481{bottom:927.066667pt;}
.y6_c00481{bottom:938.533333pt;}
.y3b_c00481{bottom:940.133333pt;}
.y3a_c00481{bottom:952.266667pt;}
.y5_c00481{bottom:954.266667pt;}
.y39_c00481{bottom:963.866667pt;}
.y4_c00481{bottom:973.466667pt;}
.y38_c00481{bottom:984.400000pt;}
.y37_c00481{bottom:991.733333pt;}
.y3_c00481{bottom:996.133333pt;}
.y36_c00481{bottom:1002.933333pt;}
.y1_c00481{bottom:1018.933333pt;}
.y2_c00481{bottom:1020.800000pt;}
.h8_c00481{height:42.666667pt;}
.h7_c00481{height:48.000000pt;}
.h4_c00481{height:53.333333pt;}
.h5_c00481{height:58.666667pt;}
.h6_c00481{height:64.000000pt;}
.h2_c00481{height:69.333333pt;}
.h3_c00481{height:85.333333pt;}
.h1_c00481{height:1132.000000pt;}
.h0_c00481{height:1132.159993pt;}
.w0_c00481{width:851.840007pt;}
.w1_c00481{width:852.000000pt;}
.x0_c00481{left:0.000000pt;}
.x8f_c00481{left:166.400000pt;}
.x47_c00481{left:168.000000pt;}
.x1_c00481{left:168.933333pt;}
.x98_c00481{left:169.866667pt;}
.x99_c00481{left:181.333333pt;}
.x1f_c00481{left:182.666667pt;}
.x15_c00481{left:184.133333pt;}
.x84_c00481{left:185.200000pt;}
.x9b_c00481{left:186.133333pt;}
.x61_c00481{left:194.133333pt;}
.x5d_c00481{left:195.066667pt;}
.xa1_c00481{left:196.266667pt;}
.x55_c00481{left:197.333333pt;}
.xd_c00481{left:200.000000pt;}
.x27_c00481{left:201.733333pt;}
.x8_c00481{left:205.733333pt;}
.x7c_c00481{left:208.000000pt;}
.x16_c00481{left:209.466667pt;}
.x9c_c00481{left:210.400000pt;}
.x4f_c00481{left:211.866667pt;}
.x7d_c00481{left:213.733333pt;}
.x74_c00481{left:215.333333pt;}
.x30_c00481{left:217.200000pt;}
.x20_c00481{left:220.400000pt;}
.x3b_c00481{left:222.533333pt;}
.x28_c00481{left:226.000000pt;}
.x7e_c00481{left:227.866667pt;}
.x90_c00481{left:229.466667pt;}
.x76_c00481{left:230.400000pt;}
.x3_c00481{left:232.666667pt;}
.x44_c00481{left:233.600000pt;}
.x9_c00481{left:235.466667pt;}
.x7f_c00481{left:239.333333pt;}
.x3c_c00481{left:241.066667pt;}
.x96_c00481{left:242.533333pt;}
.x68_c00481{left:245.200000pt;}
.x17_c00481{left:246.266667pt;}
.x4_c00481{left:247.733333pt;}
.x62_c00481{left:249.866667pt;}
.x29_c00481{left:251.333333pt;}
.x21_c00481{left:252.666667pt;}
.x6a_c00481{left:255.066667pt;}
.xe_c00481{left:256.000000pt;}
.x56_c00481{left:256.933333pt;}
.x80_c00481{left:258.533333pt;}
.x18_c00481{left:260.000000pt;}
.x9d_c00481{left:260.933333pt;}
.x8a_c00481{left:262.533333pt;}
.x2a_c00481{left:264.800000pt;}
.x37_c00481{left:268.133333pt;}
.x6f_c00481{left:269.200000pt;}
.x52_c00481{left:271.333333pt;}
.x48_c00481{left:272.666667pt;}
.x85_c00481{left:273.866667pt;}
.xf_c00481{left:275.466667pt;}
.x91_c00481{left:276.666667pt;}
.x19_c00481{left:278.000000pt;}
.x31_c00481{left:280.266667pt;}
.x10_c00481{left:284.133333pt;}
.x2b_c00481{left:285.600000pt;}
.x22_c00481{left:286.933333pt;}
.x3d_c00481{left:290.000000pt;}
.x1a_c00481{left:292.400000pt;}
.x5_c00481{left:293.466667pt;}
.x11_c00481{left:297.866667pt;}
.x38_c00481{left:299.866667pt;}
.x86_c00481{left:302.400000pt;}
.x5e_c00481{left:303.466667pt;}
.x8d_c00481{left:305.333333pt;}
.x75_c00481{left:306.266667pt;}
.xa_c00481{left:308.133333pt;}
.x5f_c00481{left:309.866667pt;}
.x81_c00481{left:310.933333pt;}
.x50_c00481{left:312.400000pt;}
.x8b_c00481{left:314.000000pt;}
.x23_c00481{left:315.066667pt;}
.x63_c00481{left:316.000000pt;}
.x3e_c00481{left:316.933333pt;}
.x1b_c00481{left:318.266667pt;}
.x49_c00481{left:319.733333pt;}
.x12_c00481{left:321.200000pt;}
.x32_c00481{left:322.533333pt;}
.x45_c00481{left:323.466667pt;}
.x39_c00481{left:324.533333pt;}
.x9e_c00481{left:327.466667pt;}
.x82_c00481{left:328.533333pt;}
.x4c_c00481{left:329.866667pt;}
.x87_c00481{left:331.733333pt;}
.x1c_c00481{left:332.666667pt;}
.x64_c00481{left:334.266667pt;}
.x5a_c00481{left:336.133333pt;}
.x77_c00481{left:337.866667pt;}
.x3f_c00481{left:340.000000pt;}
.x2c_c00481{left:341.600000pt;}
.x6_c00481{left:343.333333pt;}
.x6b_c00481{left:345.066667pt;}
.x40_c00481{left:346.400000pt;}
.x24_c00481{left:348.400000pt;}
.x94_c00481{left:351.466667pt;}
.x70_c00481{left:354.000000pt;}
.x57_c00481{left:355.066667pt;}
.x46_c00481{left:357.066667pt;}
.x53_c00481{left:360.533333pt;}
.x60_c00481{left:361.733333pt;}
.x7_c00481{left:363.866667pt;}
.x33_c00481{left:365.466667pt;}
.x1d_c00481{left:368.533333pt;}
.x78_c00481{left:370.133333pt;}
.x97_c00481{left:371.733333pt;}
.x25_c00481{left:372.666667pt;}
.x4a_c00481{left:375.066667pt;}
.x41_c00481{left:376.533333pt;}
.x4d_c00481{left:378.133333pt;}
.x65_c00481{left:380.133333pt;}
.x95_c00481{left:381.200000pt;}
.x71_c00481{left:382.533333pt;}
.xb_c00481{left:384.266667pt;}
.x8c_c00481{left:385.333333pt;}
.x2_c00481{left:386.266667pt;}
.x2d_c00481{left:387.333333pt;}
.x79_c00481{left:388.400000pt;}
.x42_c00481{left:390.933333pt;}
.x13_c00481{left:392.533333pt;}
.x9a_c00481{left:393.866667pt;}
.x58_c00481{left:394.933333pt;}
.x83_c00481{left:396.000000pt;}
.x9f_c00481{left:396.933333pt;}
.x34_c00481{left:399.333333pt;}
.x72_c00481{left:400.400000pt;}
.x26_c00481{left:401.733333pt;}
.x66_c00481{left:403.866667pt;}
.x5b_c00481{left:405.600000pt;}
.x6c_c00481{left:408.400000pt;}
.x43_c00481{left:411.733333pt;}
.x4b_c00481{left:413.733333pt;}
.x8e_c00481{left:415.466667pt;}
.x6d_c00481{left:419.600000pt;}
.x92_c00481{left:421.466667pt;}
.x3a_c00481{left:422.800000pt;}
.x2e_c00481{left:424.133333pt;}
.x4e_c00481{left:425.866667pt;}
.x35_c00481{left:427.466667pt;}
.x67_c00481{left:429.200000pt;}
.x51_c00481{left:430.133333pt;}
.xc_c00481{left:432.000000pt;}
.x7a_c00481{left:433.466667pt;}
.x2f_c00481{left:434.400000pt;}
.x14_c00481{left:436.000000pt;}
.x69_c00481{left:440.933333pt;}
.x1e_c00481{left:441.866667pt;}
.x36_c00481{left:442.800000pt;}
.x54_c00481{left:443.733333pt;}
.x6e_c00481{left:444.933333pt;}
.x73_c00481{left:447.066667pt;}
.x88_c00481{left:448.800000pt;}
.x7b_c00481{left:450.800000pt;}
.x59_c00481{left:453.200000pt;}
.xa0_c00481{left:454.133333pt;}
.x5c_c00481{left:455.200000pt;}
.x89_c00481{left:456.800000pt;}
.x93_c00481{left:458.000000pt;}
.xdb_c00481{left:484.533333pt;}
.x13a_c00481{left:485.466667pt;}
.x13e_c00481{left:494.666667pt;}
.xc0_c00481{left:496.666667pt;}
.x133_c00481{left:497.600000pt;}
.x117_c00481{left:499.333333pt;}
.xe1_c00481{left:500.666667pt;}
.xf7_c00481{left:501.733333pt;}
.xa5_c00481{left:509.066667pt;}
.xda_c00481{left:510.266667pt;}
.xc1_c00481{left:514.933333pt;}
.x118_c00481{left:516.800000pt;}
.x113_c00481{left:521.333333pt;}
.x128_c00481{left:523.200000pt;}
.xaf_c00481{left:524.400000pt;}
.xfd_c00481{left:525.333333pt;}
.x126_c00481{left:526.933333pt;}
.xb0_c00481{left:528.533333pt;}
.xf3_c00481{left:529.600000pt;}
.xeb_c00481{left:530.800000pt;}
.xe2_c00481{left:532.400000pt;}
.x100_c00481{left:534.266667pt;}
.x10f_c00481{left:537.200000pt;}
.x132_c00481{left:538.133333pt;}
.x108_c00481{left:539.066667pt;}
.xf8_c00481{left:540.133333pt;}
.xd4_c00481{left:541.200000pt;}
.x147_c00481{left:543.600000pt;}
.xb1_c00481{left:544.800000pt;}
.x134_c00481{left:546.533333pt;}
.xf9_c00481{left:548.133333pt;}
.x11d_c00481{left:549.200000pt;}
.x11a_c00481{left:550.133333pt;}
.xc2_c00481{left:552.400000pt;}
.x10e_c00481{left:553.466667pt;}
.x114_c00481{left:554.666667pt;}
.xa6_c00481{left:556.133333pt;}
.xdc_c00481{left:557.466667pt;}
.xe4_c00481{left:559.600000pt;}
.x122_c00481{left:560.533333pt;}
.x143_c00481{left:563.066667pt;}
.xba_c00481{left:565.066667pt;}
.xc3_c00481{left:566.800000pt;}
.x104_c00481{left:568.266667pt;}
.xf4_c00481{left:570.533333pt;}
.xa7_c00481{left:573.066667pt;}
.xec_c00481{left:575.600000pt;}
.x145_c00481{left:577.200000pt;}
.x112_c00481{left:579.333333pt;}
.xdd_c00481{left:581.200000pt;}
.xbb_c00481{left:582.666667pt;}
.xc9_c00481{left:584.400000pt;}
.x129_c00481{left:586.266667pt;}
.xb2_c00481{left:588.000000pt;}
.xca_c00481{left:590.800000pt;}
.xe5_c00481{left:591.866667pt;}
.x11e_c00481{left:593.733333pt;}
.xc4_c00481{left:595.333333pt;}
.xcb_c00481{left:597.466667pt;}
.x110_c00481{left:598.400000pt;}
.x119_c00481{left:599.733333pt;}
.x12e_c00481{left:600.933333pt;}
.xa8_c00481{left:602.800000pt;}
.x127_c00481{left:603.733333pt;}
.xe6_c00481{left:604.933333pt;}
.xde_c00481{left:605.866667pt;}
.x141_c00481{left:607.200000pt;}
.xcc_c00481{left:609.733333pt;}
.x11b_c00481{left:610.933333pt;}
.xc5_c00481{left:612.666667pt;}
.xfe_c00481{left:614.000000pt;}
.xfa_c00481{left:616.000000pt;}
.x137_c00481{left:616.933333pt;}
.xed_c00481{left:617.866667pt;}
.xbc_c00481{left:618.800000pt;}
.xa9_c00481{left:620.133333pt;}
.xcd_c00481{left:622.800000pt;}
.x138_c00481{left:624.000000pt;}
.xe7_c00481{left:625.466667pt;}
.xbd_c00481{left:626.533333pt;}
.x144_c00481{left:627.733333pt;}
.xce_c00481{left:629.466667pt;}
.xb3_c00481{left:630.933333pt;}
.xb4_c00481{left:635.466667pt;}
.xe8_c00481{left:637.333333pt;}
.x12f_c00481{left:638.400000pt;}
.xee_c00481{left:640.000000pt;}
.x13c_c00481{left:643.200000pt;}
.xfb_c00481{left:645.466667pt;}
.x12a_c00481{left:647.066667pt;}
.xd5_c00481{left:648.133333pt;}
.x10d_c00481{left:649.600000pt;}
.x130_c00481{left:650.933333pt;}
.x13f_c00481{left:652.400000pt;}
.x123_c00481{left:653.733333pt;}
.xb5_c00481{left:654.933333pt;}
.xef_c00481{left:657.866667pt;}
.xbe_c00481{left:659.466667pt;}
.xb6_c00481{left:661.066667pt;}
.xd0_c00481{left:662.133333pt;}
.xaa_c00481{left:663.066667pt;}
.xd6_c00481{left:667.066667pt;}
.x105_c00481{left:668.666667pt;}
.x109_c00481{left:669.600000pt;}
.xdf_c00481{left:674.000000pt;}
.xc6_c00481{left:675.333333pt;}
.x121_c00481{left:677.066667pt;}
.xbf_c00481{left:678.933333pt;}
.xd7_c00481{left:679.866667pt;}
.xd1_c00481{left:680.933333pt;}
.xc7_c00481{left:682.400000pt;}
.x11c_c00481{left:684.533333pt;}
.xd8_c00481{left:686.266667pt;}
.xc8_c00481{left:688.133333pt;}
.x135_c00481{left:689.200000pt;}
.x10a_c00481{left:690.666667pt;}
.xb7_c00481{left:693.466667pt;}
.xab_c00481{left:695.600000pt;}
.x11f_c00481{left:696.533333pt;}
.x12b_c00481{left:697.600000pt;}
.xd9_c00481{left:699.066667pt;}
.xd3_c00481{left:700.266667pt;}
.xac_c00481{left:702.000000pt;}
.x101_c00481{left:705.333333pt;}
.xf0_c00481{left:707.466667pt;}
.x131_c00481{left:710.133333pt;}
.x106_c00481{left:711.200000pt;}
.xa2_c00481{left:712.266667pt;}
.x115_c00481{left:714.000000pt;}
.xe9_c00481{left:716.400000pt;}
.xcf_c00481{left:717.466667pt;}
.xb8_c00481{left:719.333333pt;}
.xad_c00481{left:720.266667pt;}
.xf5_c00481{left:722.800000pt;}
.xf1_c00481{left:724.133333pt;}
.x120_c00481{left:726.000000pt;}
.x10b_c00481{left:730.933333pt;}
.x139_c00481{left:733.333333pt;}
.x12d_c00481{left:734.533333pt;}
.x13b_c00481{left:735.466667pt;}
.xea_c00481{left:736.933333pt;}
.x111_c00481{left:738.533333pt;}
.xa3_c00481{left:739.466667pt;}
.x136_c00481{left:740.400000pt;}
.x107_c00481{left:741.600000pt;}
.xd2_c00481{left:742.933333pt;}
.xb9_c00481{left:744.000000pt;}
.x125_c00481{left:744.933333pt;}
.xae_c00481{left:745.866667pt;}
.xf2_c00481{left:748.800000pt;}
.x102_c00481{left:750.400000pt;}
.x124_c00481{left:753.333333pt;}
.xfc_c00481{left:755.466667pt;}
.x140_c00481{left:756.933333pt;}
.xf6_c00481{left:758.000000pt;}
.x12c_c00481{left:758.933333pt;}
.x10c_c00481{left:760.666667pt;}
.x116_c00481{left:763.333333pt;}
.x146_c00481{left:764.800000pt;}
.x142_c00481{left:766.000000pt;}
.xff_c00481{left:767.200000pt;}
.xe3_c00481{left:768.666667pt;}
.xa4_c00481{left:770.133333pt;}
.x103_c00481{left:773.066667pt;}
.x148_c00481{left:774.133333pt;}
.x13d_c00481{left:777.333333pt;}
.xe0_c00481{left:779.333333pt;}
}





/* 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_c00482 {
    display:none;
  }
  .loading-indicator_c00482.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00482 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_c00482 { 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_c00482" -> "#page-container .classname_c00482")
 */
.pf_c00482 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00482 { /* 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_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00482 { /* 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_c00482 { /* 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_c00482 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00482 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00482 {overflow:visible;}
  }
}
.c_c00482 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00482 { /* 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_c00482:after { /* webkit #35443 */
  content: '';
}
.t_c00482:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00482 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 */
}
.__c00482 { /* 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_c00482 { /* info for Javascript */
  display:none;
}
.l_c00482 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00482 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00482 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00482: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_c00482 {
    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_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00482.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_c00482 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00482;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.000000;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;}
.m68_c00482{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00482{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m49_c00482{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00482{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00482{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00482{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00482{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.md6_c00482{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00482{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00482{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00482{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00482{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.md5_c00482{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00482{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00482{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00482{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00482{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m55_c00482{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.md9_c00482{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00482{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m17_c00482{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m58_c00482{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mda_c00482{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m59_c00482{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00482{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00482{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m51_c00482{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m79_c00482{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mee_c00482{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m57_c00482{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m130_c00482{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.md7_c00482{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m114_c00482{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.mae_c00482{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m39_c00482{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00482{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00482{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00482{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m42_c00482{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00482{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00482{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00482{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00482{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00482{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00482{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m72_c00482{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00482{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00482{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md_c00482{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md4_c00482{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m13_c00482{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00482{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m50_c00482{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00482{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00482{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00482{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m25_c00482{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00482{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00482{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m107_c00482{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00482{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00482{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00482{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m7_c00482{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00482{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00482{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00482{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m94_c00482{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m113_c00482{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00482{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.me3_c00482{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m65_c00482{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me8_c00482{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m132_c00482{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me_c00482{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m126_c00482{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m89_c00482{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m28_c00482{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m61_c00482{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m75_c00482{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m131_c00482{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00482{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m109_c00482{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m67_c00482{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m73_c00482{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mff_c00482{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00482{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m137_c00482{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me0_c00482{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00482{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb_c00482{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00482{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00482{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00482{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m46_c00482{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m88_c00482{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m104_c00482{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.med_c00482{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00482{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m99_c00482{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00482{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m9_c00482{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00482{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00482{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m111_c00482{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00482{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m92_c00482{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00482{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me9_c00482{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mad_c00482{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00482{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00482{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m52_c00482{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m106_c00482{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00482{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m112_c00482{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00482{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00482{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00482{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m74_c00482{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m5_c00482{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00482{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00482{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00482{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00482{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m30_c00482{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m37_c00482{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m32_c00482{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00482{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m41_c00482{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00482{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00482{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m19_c00482{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m11_c00482{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00482{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00482{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md3_c00482{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00482{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc_c00482{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00482{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m139_c00482{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00482{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m76_c00482{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00482{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m116_c00482{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00482{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00482{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00482{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m29_c00482{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m26_c00482{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00482{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00482{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mf_c00482{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m78_c00482{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00482{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00482{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00482{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00482{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m12_c00482{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m115_c00482{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00482{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m33_c00482{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00482{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m134_c00482{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00482{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m95_c00482{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m44_c00482{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m31_c00482{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m48_c00482{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00482{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m64_c00482{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m38_c00482{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m118_c00482{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m20_c00482{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me4_c00482{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m81_c00482{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00482{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m43_c00482{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mec_c00482{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me7_c00482{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8_c00482{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00482{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m16_c00482{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mea_c00482{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m102_c00482{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00482{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m10_c00482{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00482{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m125_c00482{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m62_c00482{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m86_c00482{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m97_c00482{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m127_c00482{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m90_c00482{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m23_c00482{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m136_c00482{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m83_c00482{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m84_c00482{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m6_c00482{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00482{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m36_c00482{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.maf_c00482{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00482{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00482{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m14_c00482{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00482{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m21_c00482{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00482{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m77_c00482{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m91_c00482{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00482{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00482{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m40_c00482{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m80_c00482{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m24_c00482{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00482{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00482{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md1_c00482{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00482{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00482{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me1_c00482{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma_c00482{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00482{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me6_c00482{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md2_c00482{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m96_c00482{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00482{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m54_c00482{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.md8_c00482{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m3_c00482{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m56_c00482{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m34_c00482{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m119_c00482{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m103_c00482{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m87_c00482{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00482{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00482{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m18_c00482{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mce_c00482{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00482{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m135_c00482{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m27_c00482{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mac_c00482{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00482{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.me5_c00482{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m121_c00482{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00482{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mde_c00482{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);}
.me2_c00482{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m133_c00482{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m124_c00482{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m15_c00482{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00482{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m85_c00482{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m69_c00482{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00482{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m82_c00482{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.meb_c00482{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m66_c00482{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00482{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m138_c00482{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m35_c00482{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mca_c00482{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00482{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.maa_c00482{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00482{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m22_c00482{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m45_c00482{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m47_c00482{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m129_c00482{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mef_c00482{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m63_c00482{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00482{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00482{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00482{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mab_c00482{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m108_c00482{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mba_c00482{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m120_c00482{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m100_c00482{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m101_c00482{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m110_c00482{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00482{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m123_c00482{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00482{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m117_c00482{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00482{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00482{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m70_c00482{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m2_c00482{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00482{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m60_c00482{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00482{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m122_c00482{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m93_c00482{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00482{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m128_c00482{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m71_c00482{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00482{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m105_c00482{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00482{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00482{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m98_c00482{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00482{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00482{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00482{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m53_c00482{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00482{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00482{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.md0_c00482{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00482{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00482{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.v1_c00482{vertical-align:56.400000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{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__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00482{word-spacing:-6.250000px;}
.ws0_c00482{word-spacing:-0.750000px;}
.ws12_c00482{word-spacing:0.000000px;}
.wsa_c00482{word-spacing:1.323024px;}
.wse_c00482{word-spacing:7.115385px;}
.ws1_c00482{word-spacing:8.333333px;}
.wsd_c00482{word-spacing:18.125000px;}
.wsf_c00482{word-spacing:19.994638px;}
.ws10_c00482{word-spacing:23.211796px;}
.ws2_c00482{word-spacing:25.714286px;}
.wsb_c00482{word-spacing:29.285714px;}
.wsc_c00482{word-spacing:31.254692px;}
.ws4_c00482{word-spacing:34.642857px;}
.ws3_c00482{word-spacing:35.833333px;}
.ws7_c00482{word-spacing:39.750000px;}
.ws11_c00482{word-spacing:53.966261px;}
.ws9_c00482{word-spacing:115.000000px;}
.ws5_c00482{word-spacing:412.667359px;}
.ws8_c00482{word-spacing:829.583333px;}
._2_c00482{width:50.211796px;}
._0_c00482{width:59.285714px;}
._1_c00482{width:70.000000px;}
.fc0_c00482{color:transparent;}
.fs7_c00482{font-size:24.000000px;}
.fs8_c00482{font-size:30.000000px;}
.fs6_c00482{font-size:36.000000px;}
.fs5_c00482{font-size:42.000000px;}
.fsa_c00482{font-size:48.000000px;}
.fs4_c00482{font-size:54.000000px;}
.fs2_c00482{font-size:60.000000px;}
.fs3_c00482{font-size:66.000000px;}
.fs9_c00482{font-size:72.000000px;}
.fs0_c00482{font-size:78.000000px;}
.fs1_c00482{font-size:90.000000px;}
.y0_c00482{bottom:0.000000px;}
.y67_c00482{bottom:207.000000px;}
.y66_c00482{bottom:219.450000px;}
.y6a_c00482{bottom:226.050000px;}
.y65_c00482{bottom:233.850000px;}
.y5a_c00482{bottom:242.700000px;}
.y64_c00482{bottom:248.250000px;}
.y59_c00482{bottom:260.400000px;}
.y63_c00482{bottom:262.350000px;}
.y62_c00482{bottom:276.750000px;}
.y58_c00482{bottom:278.400000px;}
.y61_c00482{bottom:291.900000px;}
.y57_c00482{bottom:295.650000px;}
.y60_c00482{bottom:304.500000px;}
.y56_c00482{bottom:313.350000px;}
.y5f_c00482{bottom:319.950000px;}
.y55_c00482{bottom:331.350000px;}
.y5e_c00482{bottom:334.050000px;}
.y5d_c00482{bottom:348.450000px;}
.y54_c00482{bottom:349.050000px;}
.y5c_c00482{bottom:362.850000px;}
.y53_c00482{bottom:366.750000px;}
.y52_c00482{bottom:384.450000px;}
.y47_c00482{bottom:400.800000px;}
.y51_c00482{bottom:402.150000px;}
.y46_c00482{bottom:418.050000px;}
.y50_c00482{bottom:419.400000px;}
.y45_c00482{bottom:436.350000px;}
.y4f_c00482{bottom:440.250000px;}
.y44_c00482{bottom:454.050000px;}
.y4e_c00482{bottom:454.650000px;}
.y4d_c00482{bottom:468.300000px;}
.y43_c00482{bottom:471.750000px;}
.y4c_c00482{bottom:482.700000px;}
.y42_c00482{bottom:489.450000px;}
.y4b_c00482{bottom:497.100000px;}
.y41_c00482{bottom:507.150000px;}
.y4a_c00482{bottom:511.500000px;}
.y40_c00482{bottom:524.850000px;}
.y5b_c00482{bottom:525.300000px;}
.y49_c00482{bottom:525.600000px;}
.y48_c00482{bottom:539.700000px;}
.y3f_c00482{bottom:542.550000px;}
.y69_c00482{bottom:554.400000px;}
.y3d_c00482{bottom:568.050000px;}
.y3e_c00482{bottom:568.800000px;}
.y3c_c00482{bottom:583.950000px;}
.y3b_c00482{bottom:597.300000px;}
.y3a_c00482{bottom:599.700000px;}
.y39_c00482{bottom:611.250000px;}
.y38_c00482{bottom:616.050000px;}
.y33_c00482{bottom:625.350000px;}
.y32_c00482{bottom:639.750000px;}
.y37_c00482{bottom:642.150000px;}
.y31_c00482{bottom:654.150000px;}
.y36_c00482{bottom:659.850000px;}
.y30_c00482{bottom:668.250000px;}
.y35_c00482{bottom:677.550000px;}
.y2f_c00482{bottom:682.950000px;}
.y34_c00482{bottom:694.800000px;}
.y2e_c00482{bottom:702.300000px;}
.y2d_c00482{bottom:720.000000px;}
.y2a_c00482{bottom:721.050000px;}
.y2c_c00482{bottom:738.000000px;}
.y29_c00482{bottom:739.050000px;}
.y2b_c00482{bottom:755.250000px;}
.y28_c00482{bottom:756.300000px;}
.y68_c00482{bottom:772.500000px;}
.y27_c00482{bottom:774.600000px;}
.y26_c00482{bottom:792.300000px;}
.y25_c00482{bottom:794.850000px;}
.y24_c00482{bottom:810.300000px;}
.y23_c00482{bottom:812.550000px;}
.y13_c00482{bottom:826.950000px;}
.y22_c00482{bottom:829.950000px;}
.y12_c00482{bottom:845.250000px;}
.y21_c00482{bottom:847.650000px;}
.y11_c00482{bottom:862.950000px;}
.y20_c00482{bottom:865.650000px;}
.y10_c00482{bottom:882.750000px;}
.y1f_c00482{bottom:882.900000px;}
.y1e_c00482{bottom:900.600000px;}
.yf_c00482{bottom:902.850000px;}
.y1d_c00482{bottom:918.300000px;}
.y1c_c00482{bottom:936.000000px;}
.ye_c00482{bottom:936.750000px;}
.yd_c00482{bottom:955.800000px;}
.y1b_c00482{bottom:957.600000px;}
.yc_c00482{bottom:973.800000px;}
.y1a_c00482{bottom:975.300000px;}
.yb_c00482{bottom:991.500000px;}
.ya_c00482{bottom:1012.350000px;}
.y19_c00482{bottom:1014.900000px;}
.y9_c00482{bottom:1030.650000px;}
.y18_c00482{bottom:1032.450000px;}
.y8_c00482{bottom:1048.350000px;}
.y17_c00482{bottom:1054.350000px;}
.y7_c00482{bottom:1066.350000px;}
.y16_c00482{bottom:1072.350000px;}
.y6_c00482{bottom:1085.700000px;}
.y15_c00482{bottom:1090.050000px;}
.y5_c00482{bottom:1105.500000px;}
.y14_c00482{bottom:1107.750000px;}
.y4_c00482{bottom:1123.500000px;}
.y3_c00482{bottom:1125.300000px;}
.y1_c00482{bottom:1151.250000px;}
.y2_c00482{bottom:1151.550000px;}
.h9_c00482{height:24.000000px;}
.hc_c00482{height:30.000000px;}
.h8_c00482{height:36.000000px;}
.h7_c00482{height:42.000000px;}
.hd_c00482{height:48.000000px;}
.h6_c00482{height:54.000000px;}
.h4_c00482{height:60.000000px;}
.h5_c00482{height:66.000000px;}
.hb_c00482{height:72.000000px;}
.h2_c00482{height:78.000000px;}
.ha_c00482{height:86.400000px;}
.h3_c00482{height:90.000000px;}
.h1_c00482{height:1266.750000px;}
.h0_c00482{height:1266.839905px;}
.w0_c00482{width:958.320007px;}
.w1_c00482{width:958.500000px;}
.x0_c00482{left:0.000000px;}
.x1f_c00482{left:69.900000px;}
.x3a_c00482{left:70.950000px;}
.xfd_c00482{left:72.000000px;}
.x109_c00482{left:73.050000px;}
.x141_c00482{left:74.250000px;}
.x13d_c00482{left:75.600000px;}
.x13c_c00482{left:77.700000px;}
.x103_c00482{left:85.500000px;}
.x101_c00482{left:86.700000px;}
.xd_c00482{left:87.900000px;}
.x2d_c00482{left:89.400000px;}
.x5d_c00482{left:90.600000px;}
.x119_c00482{left:92.100000px;}
.x147_c00482{left:95.700000px;}
.x149_c00482{left:97.500000px;}
.x5e_c00482{left:99.300000px;}
.x142_c00482{left:102.300000px;}
.x26_c00482{left:105.450000px;}
.x52_c00482{left:107.700000px;}
.x49_c00482{left:109.800000px;}
.xf2_c00482{left:114.900000px;}
.xc4_c00482{left:115.950000px;}
.xec_c00482{left:118.500000px;}
.x4d_c00482{left:120.600000px;}
.x1c_c00482{left:121.950000px;}
.x34_c00482{left:123.000000px;}
.x10d_c00482{left:124.200000px;}
.x4a_c00482{left:125.250000px;}
.x15_c00482{left:127.950000px;}
.x20_c00482{left:130.050000px;}
.xf5_c00482{left:132.600000px;}
.x57_c00482{left:133.800000px;}
.xfe_c00482{left:135.750000px;}
.x3b_c00482{left:137.550000px;}
.x135_c00482{left:138.600000px;}
.xc6_c00482{left:139.650000px;}
.x138_c00482{left:141.000000px;}
.x2e_c00482{left:143.700000px;}
.xe_c00482{left:144.750000px;}
.x1d_c00482{left:147.150000px;}
.x44_c00482{left:149.400000px;}
.x113_c00482{left:150.900000px;}
.x13a_c00482{left:152.100000px;}
.x53_c00482{left:153.450000px;}
.x4e_c00482{left:158.100000px;}
.x2f_c00482{left:159.900000px;}
.xc0_c00482{left:161.400000px;}
.xb9_c00482{left:163.050000px;}
.xbd_c00482{left:164.250000px;}
.x3c_c00482{left:165.600000px;}
.x27_c00482{left:167.400000px;}
.xff_c00482{left:168.450000px;}
.xf_c00482{left:169.950000px;}
.x21_c00482{left:171.750000px;}
.x14a_c00482{left:172.800000px;}
.x35_c00482{left:174.450000px;}
.xf0_c00482{left:175.500000px;}
.x58_c00482{left:177.750000px;}
.x143_c00482{left:179.700000px;}
.x10e_c00482{left:180.750000px;}
.xbe_c00482{left:183.300000px;}
.xed_c00482{left:184.800000px;}
.x36_c00482{left:186.000000px;}
.x115_c00482{left:192.300000px;}
.x16_c00482{left:194.550000px;}
.x13b_c00482{left:197.100000px;}
.xf6_c00482{left:199.950000px;}
.xb2_c00482{left:201.150000px;}
.x28_c00482{left:203.100000px;}
.x45_c00482{left:205.200000px;}
.xf1_c00482{left:206.400000px;}
.x54_c00482{left:208.950000px;}
.x37_c00482{left:211.200000px;}
.x4b_c00482{left:213.150000px;}
.x51_c00482{left:214.500000px;}
.xc7_c00482{left:216.000000px;}
.xb3_c00482{left:217.050000px;}
.x10_c00482{left:220.050000px;}
.x111_c00482{left:221.700000px;}
.x5f_c00482{left:222.750000px;}
.x29_c00482{left:224.400000px;}
.x46_c00482{left:227.850000px;}
.x22_c00482{left:230.850000px;}
.x30_c00482{left:231.900000px;}
.x107_c00482{left:232.950000px;}
.x4c_c00482{left:234.000000px;}
.xc1_c00482{left:235.500000px;}
.x17_c00482{left:236.700000px;}
.xba_c00482{left:237.900000px;}
.x59_c00482{left:239.700000px;}
.x4f_c00482{left:241.200000px;}
.x11a_c00482{left:243.150000px;}
.x3d_c00482{left:244.350000px;}
.x55_c00482{left:247.050000px;}
.xb4_c00482{left:248.700000px;}
.xc5_c00482{left:250.200000px;}
.x116_c00482{left:251.400000px;}
.x31_c00482{left:253.800000px;}
.x11_c00482{left:256.350000px;}
.x3e_c00482{left:258.750000px;}
.x136_c00482{left:260.550000px;}
.xc8_c00482{left:262.500000px;}
.xb5_c00482{left:268.200000px;}
.x117_c00482{left:270.150000px;}
.x146_c00482{left:272.100000px;}
.x10a_c00482{left:273.150000px;}
.x38_c00482{left:274.800000px;}
.x23_c00482{left:276.900000px;}
.x114_c00482{left:277.950000px;}
.x12_c00482{left:279.750000px;}
.x40_c00482{left:281.850000px;}
.xf3_c00482{left:282.900000px;}
.xc2_c00482{left:284.100000px;}
.x137_c00482{left:286.650000px;}
.x2a_c00482{left:288.150000px;}
.x18_c00482{left:289.950000px;}
.xc9_c00482{left:292.800000px;}
.x13e_c00482{left:295.800000px;}
.x148_c00482{left:298.500000px;}
.x19_c00482{left:300.750000px;}
.x112_c00482{left:306.750000px;}
.x2b_c00482{left:308.250000px;}
.x10f_c00482{left:309.300000px;}
.x24_c00482{left:312.150000px;}
.x1_c00482{left:314.250000px;}
.xf4_c00482{left:318.600000px;}
.x41_c00482{left:319.950000px;}
.x50_c00482{left:321.900000px;}
.x5a_c00482{left:323.550000px;}
.xb6_c00482{left:325.050000px;}
.x56_c00482{left:326.250000px;}
.x1a_c00482{left:327.450000px;}
.xca_c00482{left:329.100000px;}
.x139_c00482{left:330.900000px;}
.x13_c00482{left:332.250000px;}
.x11b_c00482{left:333.450000px;}
.x39_c00482{left:334.500000px;}
.x25_c00482{left:335.550000px;}
.xbf_c00482{left:336.600000px;}
.xbb_c00482{left:339.000000px;}
.x60_c00482{left:341.850000px;}
.xc3_c00482{left:344.250000px;}
.xcb_c00482{left:346.350000px;}
.xee_c00482{left:349.950000px;}
.x42_c00482{left:352.650000px;}
.x2c_c00482{left:354.000000px;}
.x61_c00482{left:355.500000px;}
.x1b_c00482{left:357.000000px;}
.x47_c00482{left:359.250000px;}
.x32_c00482{left:360.300000px;}
.x5b_c00482{left:361.650000px;}
.x13f_c00482{left:368.100000px;}
.x110_c00482{left:370.200000px;}
.x144_c00482{left:371.550000px;}
.x48_c00482{left:372.600000px;}
.x62_c00482{left:374.550000px;}
.xbc_c00482{left:376.500000px;}
.x1e_c00482{left:377.550000px;}
.x5c_c00482{left:379.350000px;}
.x118_c00482{left:380.400000px;}
.x14_c00482{left:382.350000px;}
.xb7_c00482{left:384.150000px;}
.x33_c00482{left:385.800000px;}
.x63_c00482{left:388.950000px;}
.x43_c00482{left:390.150000px;}
.x3f_c00482{left:391.200000px;}
.x100_c00482{left:392.850000px;}
.x145_c00482{left:396.000000px;}
.x140_c00482{left:399.000000px;}
.xef_c00482{left:402.000000px;}
.x3_c00482{left:426.900000px;}
.xdf_c00482{left:440.700000px;}
.xa4_c00482{left:443.400000px;}
.x64_c00482{left:444.600000px;}
.x12a_c00482{left:445.800000px;}
.xe9_c00482{left:455.700000px;}
.x150_c00482{left:456.900000px;}
.xa5_c00482{left:459.600000px;}
.x87_c00482{left:462.900000px;}
.xad_c00482{left:464.400000px;}
.x9e_c00482{left:466.200000px;}
.x6d_c00482{left:469.350000px;}
.x14d_c00482{left:471.300000px;}
.x83_c00482{left:472.350000px;}
.x8f_c00482{left:475.050000px;}
.xcc_c00482{left:477.750000px;}
.xa8_c00482{left:480.750000px;}
.xa6_c00482{left:483.300000px;}
.x12c_c00482{left:484.500000px;}
.x4_c00482{left:486.300000px;}
.x90_c00482{left:487.950000px;}
.xa9_c00482{left:490.500000px;}
.xdb_c00482{left:492.000000px;}
.x7e_c00482{left:493.200000px;}
.x82_c00482{left:495.300000px;}
.xf7_c00482{left:496.350000px;}
.x9f_c00482{left:497.550000px;}
.x7b_c00482{left:500.100000px;}
.xd2_c00482{left:501.300000px;}
.x65_c00482{left:503.250000px;}
.xcf_c00482{left:504.900000px;}
.x10b_c00482{left:506.400000px;}
.x84_c00482{left:510.150000px;}
.x121_c00482{left:511.350000px;}
.x73_c00482{left:513.150000px;}
.x122_c00482{left:514.200000px;}
.xd7_c00482{left:517.050000px;}
.xa0_c00482{left:519.450000px;}
.x5_c00482{left:520.800000px;}
.xaa_c00482{left:522.150000px;}
.x7f_c00482{left:524.100000px;}
.x132_c00482{left:525.300000px;}
.x88_c00482{left:527.400000px;}
.x66_c00482{left:529.200000px;}
.x96_c00482{left:532.200000px;}
.x6e_c00482{left:534.900000px;}
.xd8_c00482{left:536.100000px;}
.x108_c00482{left:537.450000px;}
.x6_c00482{left:538.500000px;}
.xfb_c00482{left:539.700000px;}
.xe2_c00482{left:541.050000px;}
.x12f_c00482{left:542.250000px;}
.x9a_c00482{left:544.050000px;}
.x74_c00482{left:545.850000px;}
.x154_c00482{left:546.900000px;}
.xf8_c00482{left:548.250000px;}
.x89_c00482{left:551.550000px;}
.x104_c00482{left:553.200000px;}
.xae_c00482{left:555.150000px;}
.xd0_c00482{left:556.350000px;}
.x7c_c00482{left:557.400000px;}
.xe3_c00482{left:559.800000px;}
.xea_c00482{left:561.150000px;}
.x67_c00482{left:562.350000px;}
.x6f_c00482{left:563.400000px;}
.xb8_c00482{left:567.000000px;}
.x75_c00482{left:568.500000px;}
.x123_c00482{left:569.700000px;}
.xe0_c00482{left:570.750000px;}
.x105_c00482{left:571.950000px;}
.x7_c00482{left:573.750000px;}
.xe4_c00482{left:574.950000px;}
.x8a_c00482{left:577.800000px;}
.x120_c00482{left:579.300000px;}
.x7d_c00482{left:580.500000px;}
.x155_c00482{left:582.150000px;}
.xd1_c00482{left:584.400000px;}
.x80_c00482{left:586.050000px;}
.x70_c00482{left:587.550000px;}
.xfc_c00482{left:589.350000px;}
.x11d_c00482{left:591.600000px;}
.x125_c00482{left:593.400000px;}
.xd9_c00482{left:595.950000px;}
.x91_c00482{left:597.750000px;}
.xaf_c00482{left:598.800000px;}
.x85_c00482{left:599.850000px;}
.xcd_c00482{left:601.650000px;}
.x8b_c00482{left:603.300000px;}
.xd3_c00482{left:605.250000px;}
.xf9_c00482{left:606.300000px;}
.x92_c00482{left:607.500000px;}
.x11f_c00482{left:610.050000px;}
.x12d_c00482{left:611.250000px;}
.xdc_c00482{left:612.600000px;}
.xfa_c00482{left:613.800000px;}
.x8_c00482{left:615.150000px;}
.x129_c00482{left:616.500000px;}
.x76_c00482{left:618.150000px;}
.x9b_c00482{left:619.950000px;}
.x10c_c00482{left:621.300000px;}
.x8c_c00482{left:625.200000px;}
.xeb_c00482{left:627.000000px;}
.x102_c00482{left:629.100000px;}
.xe1_c00482{left:631.200000px;}
.xdd_c00482{left:634.500000px;}
.x97_c00482{left:636.150000px;}
.x156_c00482{left:638.700000px;}
.x9_c00482{left:640.350000px;}
.xe5_c00482{left:641.850000px;}
.x71_c00482{left:643.050000px;}
.x68_c00482{left:646.200000px;}
.x130_c00482{left:647.250000px;}
.xe6_c00482{left:649.050000px;}
.xab_c00482{left:651.000000px;}
.xa1_c00482{left:652.200000px;}
.x98_c00482{left:653.850000px;}
.x69_c00482{left:656.250000px;}
.x11c_c00482{left:657.300000px;}
.x93_c00482{left:658.650000px;}
.x8d_c00482{left:659.700000px;}
.x126_c00482{left:661.800000px;}
.x9c_c00482{left:663.900000px;}
.x77_c00482{left:665.250000px;}
.xd4_c00482{left:668.550000px;}
.x14b_c00482{left:669.900000px;}
.x86_c00482{left:671.550000px;}
.xda_c00482{left:673.350000px;}
.x78_c00482{left:677.550000px;}
.x6a_c00482{left:678.900000px;}
.x14e_c00482{left:680.400000px;}
.x94_c00482{left:682.800000px;}
.xb0_c00482{left:685.500000px;}
.x133_c00482{left:687.450000px;}
.x127_c00482{left:688.500000px;}
.xe7_c00482{left:690.450000px;}
.xa_c00482{left:692.250000px;}
.x79_c00482{left:693.750000px;}
.xa2_c00482{left:695.700000px;}
.x157_c00482{left:697.350000px;}
.x72_c00482{left:702.150000px;}
.x6b_c00482{left:703.350000px;}
.x124_c00482{left:705.000000px;}
.xb_c00482{left:708.750000px;}
.xce_c00482{left:710.400000px;}
.xde_c00482{left:712.950000px;}
.x106_c00482{left:714.300000px;}
.xd5_c00482{left:715.350000px;}
.x128_c00482{left:716.550000px;}
.x8e_c00482{left:718.050000px;}
.x9d_c00482{left:719.700000px;}
.x151_c00482{left:720.900000px;}
.x134_c00482{left:721.950000px;}
.x99_c00482{left:725.850000px;}
.x12b_c00482{left:727.650000px;}
.xa7_c00482{left:729.600000px;}
.x131_c00482{left:730.650000px;}
.xac_c00482{left:732.450000px;}
.x2_c00482{left:733.950000px;}
.x14f_c00482{left:735.450000px;}
.xd6_c00482{left:736.650000px;}
.x7a_c00482{left:738.750000px;}
.xb1_c00482{left:740.550000px;}
.x14c_c00482{left:742.650000px;}
.x152_c00482{left:744.000000px;}
.xc_c00482{left:745.050000px;}
.x81_c00482{left:746.700000px;}
.xe8_c00482{left:748.050000px;}
.x11e_c00482{left:749.100000px;}
.x6c_c00482{left:750.150000px;}
.xa3_c00482{left:751.500000px;}
.x95_c00482{left:756.900000px;}
.x12e_c00482{left:758.550000px;}
.x153_c00482{left:765.900000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.v1_c00482{vertical-align:50.133333pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws6_c00482{word-spacing:-5.555556pt;}
.ws0_c00482{word-spacing:-0.666667pt;}
.ws12_c00482{word-spacing:0.000000pt;}
.wsa_c00482{word-spacing:1.176021pt;}
.wse_c00482{word-spacing:6.324786pt;}
.ws1_c00482{word-spacing:7.407407pt;}
.wsd_c00482{word-spacing:16.111111pt;}
.wsf_c00482{word-spacing:17.773012pt;}
.ws10_c00482{word-spacing:20.632708pt;}
.ws2_c00482{word-spacing:22.857143pt;}
.wsb_c00482{word-spacing:26.031746pt;}
.wsc_c00482{word-spacing:27.781948pt;}
.ws4_c00482{word-spacing:30.793651pt;}
.ws3_c00482{word-spacing:31.851852pt;}
.ws7_c00482{word-spacing:35.333333pt;}
.ws11_c00482{word-spacing:47.970009pt;}
.ws9_c00482{word-spacing:102.222222pt;}
.ws5_c00482{word-spacing:366.815430pt;}
.ws8_c00482{word-spacing:737.407407pt;}
._2_c00482{width:44.632708pt;}
._0_c00482{width:52.698413pt;}
._1_c00482{width:62.222222pt;}
.fs7_c00482{font-size:21.333333pt;}
.fs8_c00482{font-size:26.666667pt;}
.fs6_c00482{font-size:32.000000pt;}
.fs5_c00482{font-size:37.333333pt;}
.fsa_c00482{font-size:42.666667pt;}
.fs4_c00482{font-size:48.000000pt;}
.fs2_c00482{font-size:53.333333pt;}
.fs3_c00482{font-size:58.666667pt;}
.fs9_c00482{font-size:64.000000pt;}
.fs0_c00482{font-size:69.333333pt;}
.fs1_c00482{font-size:80.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y67_c00482{bottom:184.000000pt;}
.y66_c00482{bottom:195.066667pt;}
.y6a_c00482{bottom:200.933333pt;}
.y65_c00482{bottom:207.866667pt;}
.y5a_c00482{bottom:215.733333pt;}
.y64_c00482{bottom:220.666667pt;}
.y59_c00482{bottom:231.466667pt;}
.y63_c00482{bottom:233.200000pt;}
.y62_c00482{bottom:246.000000pt;}
.y58_c00482{bottom:247.466667pt;}
.y61_c00482{bottom:259.466667pt;}
.y57_c00482{bottom:262.800000pt;}
.y60_c00482{bottom:270.666667pt;}
.y56_c00482{bottom:278.533333pt;}
.y5f_c00482{bottom:284.400000pt;}
.y55_c00482{bottom:294.533333pt;}
.y5e_c00482{bottom:296.933333pt;}
.y5d_c00482{bottom:309.733333pt;}
.y54_c00482{bottom:310.266667pt;}
.y5c_c00482{bottom:322.533333pt;}
.y53_c00482{bottom:326.000000pt;}
.y52_c00482{bottom:341.733333pt;}
.y47_c00482{bottom:356.266667pt;}
.y51_c00482{bottom:357.466667pt;}
.y46_c00482{bottom:371.600000pt;}
.y50_c00482{bottom:372.800000pt;}
.y45_c00482{bottom:387.866667pt;}
.y4f_c00482{bottom:391.333333pt;}
.y44_c00482{bottom:403.600000pt;}
.y4e_c00482{bottom:404.133333pt;}
.y4d_c00482{bottom:416.266667pt;}
.y43_c00482{bottom:419.333333pt;}
.y4c_c00482{bottom:429.066667pt;}
.y42_c00482{bottom:435.066667pt;}
.y4b_c00482{bottom:441.866667pt;}
.y41_c00482{bottom:450.800000pt;}
.y4a_c00482{bottom:454.666667pt;}
.y40_c00482{bottom:466.533333pt;}
.y5b_c00482{bottom:466.933333pt;}
.y49_c00482{bottom:467.200000pt;}
.y48_c00482{bottom:479.733333pt;}
.y3f_c00482{bottom:482.266667pt;}
.y69_c00482{bottom:492.800000pt;}
.y3d_c00482{bottom:504.933333pt;}
.y3e_c00482{bottom:505.600000pt;}
.y3c_c00482{bottom:519.066667pt;}
.y3b_c00482{bottom:530.933333pt;}
.y3a_c00482{bottom:533.066667pt;}
.y39_c00482{bottom:543.333333pt;}
.y38_c00482{bottom:547.600000pt;}
.y33_c00482{bottom:555.866667pt;}
.y32_c00482{bottom:568.666667pt;}
.y37_c00482{bottom:570.800000pt;}
.y31_c00482{bottom:581.466667pt;}
.y36_c00482{bottom:586.533333pt;}
.y30_c00482{bottom:594.000000pt;}
.y35_c00482{bottom:602.266667pt;}
.y2f_c00482{bottom:607.066667pt;}
.y34_c00482{bottom:617.600000pt;}
.y2e_c00482{bottom:624.266667pt;}
.y2d_c00482{bottom:640.000000pt;}
.y2a_c00482{bottom:640.933333pt;}
.y2c_c00482{bottom:656.000000pt;}
.y29_c00482{bottom:656.933333pt;}
.y2b_c00482{bottom:671.333333pt;}
.y28_c00482{bottom:672.266667pt;}
.y68_c00482{bottom:686.666667pt;}
.y27_c00482{bottom:688.533333pt;}
.y26_c00482{bottom:704.266667pt;}
.y25_c00482{bottom:706.533333pt;}
.y24_c00482{bottom:720.266667pt;}
.y23_c00482{bottom:722.266667pt;}
.y13_c00482{bottom:735.066667pt;}
.y22_c00482{bottom:737.733333pt;}
.y12_c00482{bottom:751.333333pt;}
.y21_c00482{bottom:753.466667pt;}
.y11_c00482{bottom:767.066667pt;}
.y20_c00482{bottom:769.466667pt;}
.y10_c00482{bottom:784.666667pt;}
.y1f_c00482{bottom:784.800000pt;}
.y1e_c00482{bottom:800.533333pt;}
.yf_c00482{bottom:802.533333pt;}
.y1d_c00482{bottom:816.266667pt;}
.y1c_c00482{bottom:832.000000pt;}
.ye_c00482{bottom:832.666667pt;}
.yd_c00482{bottom:849.600000pt;}
.y1b_c00482{bottom:851.200000pt;}
.yc_c00482{bottom:865.600000pt;}
.y1a_c00482{bottom:866.933333pt;}
.yb_c00482{bottom:881.333333pt;}
.ya_c00482{bottom:899.866667pt;}
.y19_c00482{bottom:902.133333pt;}
.y9_c00482{bottom:916.133333pt;}
.y18_c00482{bottom:917.733333pt;}
.y8_c00482{bottom:931.866667pt;}
.y17_c00482{bottom:937.200000pt;}
.y7_c00482{bottom:947.866667pt;}
.y16_c00482{bottom:953.200000pt;}
.y6_c00482{bottom:965.066667pt;}
.y15_c00482{bottom:968.933333pt;}
.y5_c00482{bottom:982.666667pt;}
.y14_c00482{bottom:984.666667pt;}
.y4_c00482{bottom:998.666667pt;}
.y3_c00482{bottom:1000.266667pt;}
.y1_c00482{bottom:1023.333333pt;}
.y2_c00482{bottom:1023.600000pt;}
.h9_c00482{height:21.333333pt;}
.hc_c00482{height:26.666667pt;}
.h8_c00482{height:32.000000pt;}
.h7_c00482{height:37.333333pt;}
.hd_c00482{height:42.666667pt;}
.h6_c00482{height:48.000000pt;}
.h4_c00482{height:53.333333pt;}
.h5_c00482{height:58.666667pt;}
.hb_c00482{height:64.000000pt;}
.h2_c00482{height:69.333333pt;}
.ha_c00482{height:76.800000pt;}
.h3_c00482{height:80.000000pt;}
.h1_c00482{height:1126.000000pt;}
.h0_c00482{height:1126.079916pt;}
.w0_c00482{width:851.840007pt;}
.w1_c00482{width:852.000000pt;}
.x0_c00482{left:0.000000pt;}
.x1f_c00482{left:62.133333pt;}
.x3a_c00482{left:63.066667pt;}
.xfd_c00482{left:64.000000pt;}
.x109_c00482{left:64.933333pt;}
.x141_c00482{left:66.000000pt;}
.x13d_c00482{left:67.200000pt;}
.x13c_c00482{left:69.066667pt;}
.x103_c00482{left:76.000000pt;}
.x101_c00482{left:77.066667pt;}
.xd_c00482{left:78.133333pt;}
.x2d_c00482{left:79.466667pt;}
.x5d_c00482{left:80.533333pt;}
.x119_c00482{left:81.866667pt;}
.x147_c00482{left:85.066667pt;}
.x149_c00482{left:86.666667pt;}
.x5e_c00482{left:88.266667pt;}
.x142_c00482{left:90.933333pt;}
.x26_c00482{left:93.733333pt;}
.x52_c00482{left:95.733333pt;}
.x49_c00482{left:97.600000pt;}
.xf2_c00482{left:102.133333pt;}
.xc4_c00482{left:103.066667pt;}
.xec_c00482{left:105.333333pt;}
.x4d_c00482{left:107.200000pt;}
.x1c_c00482{left:108.400000pt;}
.x34_c00482{left:109.333333pt;}
.x10d_c00482{left:110.400000pt;}
.x4a_c00482{left:111.333333pt;}
.x15_c00482{left:113.733333pt;}
.x20_c00482{left:115.600000pt;}
.xf5_c00482{left:117.866667pt;}
.x57_c00482{left:118.933333pt;}
.xfe_c00482{left:120.666667pt;}
.x3b_c00482{left:122.266667pt;}
.x135_c00482{left:123.200000pt;}
.xc6_c00482{left:124.133333pt;}
.x138_c00482{left:125.333333pt;}
.x2e_c00482{left:127.733333pt;}
.xe_c00482{left:128.666667pt;}
.x1d_c00482{left:130.800000pt;}
.x44_c00482{left:132.800000pt;}
.x113_c00482{left:134.133333pt;}
.x13a_c00482{left:135.200000pt;}
.x53_c00482{left:136.400000pt;}
.x4e_c00482{left:140.533333pt;}
.x2f_c00482{left:142.133333pt;}
.xc0_c00482{left:143.466667pt;}
.xb9_c00482{left:144.933333pt;}
.xbd_c00482{left:146.000000pt;}
.x3c_c00482{left:147.200000pt;}
.x27_c00482{left:148.800000pt;}
.xff_c00482{left:149.733333pt;}
.xf_c00482{left:151.066667pt;}
.x21_c00482{left:152.666667pt;}
.x14a_c00482{left:153.600000pt;}
.x35_c00482{left:155.066667pt;}
.xf0_c00482{left:156.000000pt;}
.x58_c00482{left:158.000000pt;}
.x143_c00482{left:159.733333pt;}
.x10e_c00482{left:160.666667pt;}
.xbe_c00482{left:162.933333pt;}
.xed_c00482{left:164.266667pt;}
.x36_c00482{left:165.333333pt;}
.x115_c00482{left:170.933333pt;}
.x16_c00482{left:172.933333pt;}
.x13b_c00482{left:175.200000pt;}
.xf6_c00482{left:177.733333pt;}
.xb2_c00482{left:178.800000pt;}
.x28_c00482{left:180.533333pt;}
.x45_c00482{left:182.400000pt;}
.xf1_c00482{left:183.466667pt;}
.x54_c00482{left:185.733333pt;}
.x37_c00482{left:187.733333pt;}
.x4b_c00482{left:189.466667pt;}
.x51_c00482{left:190.666667pt;}
.xc7_c00482{left:192.000000pt;}
.xb3_c00482{left:192.933333pt;}
.x10_c00482{left:195.600000pt;}
.x111_c00482{left:197.066667pt;}
.x5f_c00482{left:198.000000pt;}
.x29_c00482{left:199.466667pt;}
.x46_c00482{left:202.533333pt;}
.x22_c00482{left:205.200000pt;}
.x30_c00482{left:206.133333pt;}
.x107_c00482{left:207.066667pt;}
.x4c_c00482{left:208.000000pt;}
.xc1_c00482{left:209.333333pt;}
.x17_c00482{left:210.400000pt;}
.xba_c00482{left:211.466667pt;}
.x59_c00482{left:213.066667pt;}
.x4f_c00482{left:214.400000pt;}
.x11a_c00482{left:216.133333pt;}
.x3d_c00482{left:217.200000pt;}
.x55_c00482{left:219.600000pt;}
.xb4_c00482{left:221.066667pt;}
.xc5_c00482{left:222.400000pt;}
.x116_c00482{left:223.466667pt;}
.x31_c00482{left:225.600000pt;}
.x11_c00482{left:227.866667pt;}
.x3e_c00482{left:230.000000pt;}
.x136_c00482{left:231.600000pt;}
.xc8_c00482{left:233.333333pt;}
.xb5_c00482{left:238.400000pt;}
.x117_c00482{left:240.133333pt;}
.x146_c00482{left:241.866667pt;}
.x10a_c00482{left:242.800000pt;}
.x38_c00482{left:244.266667pt;}
.x23_c00482{left:246.133333pt;}
.x114_c00482{left:247.066667pt;}
.x12_c00482{left:248.666667pt;}
.x40_c00482{left:250.533333pt;}
.xf3_c00482{left:251.466667pt;}
.xc2_c00482{left:252.533333pt;}
.x137_c00482{left:254.800000pt;}
.x2a_c00482{left:256.133333pt;}
.x18_c00482{left:257.733333pt;}
.xc9_c00482{left:260.266667pt;}
.x13e_c00482{left:262.933333pt;}
.x148_c00482{left:265.333333pt;}
.x19_c00482{left:267.333333pt;}
.x112_c00482{left:272.666667pt;}
.x2b_c00482{left:274.000000pt;}
.x10f_c00482{left:274.933333pt;}
.x24_c00482{left:277.466667pt;}
.x1_c00482{left:279.333333pt;}
.xf4_c00482{left:283.200000pt;}
.x41_c00482{left:284.400000pt;}
.x50_c00482{left:286.133333pt;}
.x5a_c00482{left:287.600000pt;}
.xb6_c00482{left:288.933333pt;}
.x56_c00482{left:290.000000pt;}
.x1a_c00482{left:291.066667pt;}
.xca_c00482{left:292.533333pt;}
.x139_c00482{left:294.133333pt;}
.x13_c00482{left:295.333333pt;}
.x11b_c00482{left:296.400000pt;}
.x39_c00482{left:297.333333pt;}
.x25_c00482{left:298.266667pt;}
.xbf_c00482{left:299.200000pt;}
.xbb_c00482{left:301.333333pt;}
.x60_c00482{left:303.866667pt;}
.xc3_c00482{left:306.000000pt;}
.xcb_c00482{left:307.866667pt;}
.xee_c00482{left:311.066667pt;}
.x42_c00482{left:313.466667pt;}
.x2c_c00482{left:314.666667pt;}
.x61_c00482{left:316.000000pt;}
.x1b_c00482{left:317.333333pt;}
.x47_c00482{left:319.333333pt;}
.x32_c00482{left:320.266667pt;}
.x5b_c00482{left:321.466667pt;}
.x13f_c00482{left:327.200000pt;}
.x110_c00482{left:329.066667pt;}
.x144_c00482{left:330.266667pt;}
.x48_c00482{left:331.200000pt;}
.x62_c00482{left:332.933333pt;}
.xbc_c00482{left:334.666667pt;}
.x1e_c00482{left:335.600000pt;}
.x5c_c00482{left:337.200000pt;}
.x118_c00482{left:338.133333pt;}
.x14_c00482{left:339.866667pt;}
.xb7_c00482{left:341.466667pt;}
.x33_c00482{left:342.933333pt;}
.x63_c00482{left:345.733333pt;}
.x43_c00482{left:346.800000pt;}
.x3f_c00482{left:347.733333pt;}
.x100_c00482{left:349.200000pt;}
.x145_c00482{left:352.000000pt;}
.x140_c00482{left:354.666667pt;}
.xef_c00482{left:357.333333pt;}
.x3_c00482{left:379.466667pt;}
.xdf_c00482{left:391.733333pt;}
.xa4_c00482{left:394.133333pt;}
.x64_c00482{left:395.200000pt;}
.x12a_c00482{left:396.266667pt;}
.xe9_c00482{left:405.066667pt;}
.x150_c00482{left:406.133333pt;}
.xa5_c00482{left:408.533333pt;}
.x87_c00482{left:411.466667pt;}
.xad_c00482{left:412.800000pt;}
.x9e_c00482{left:414.400000pt;}
.x6d_c00482{left:417.200000pt;}
.x14d_c00482{left:418.933333pt;}
.x83_c00482{left:419.866667pt;}
.x8f_c00482{left:422.266667pt;}
.xcc_c00482{left:424.666667pt;}
.xa8_c00482{left:427.333333pt;}
.xa6_c00482{left:429.600000pt;}
.x12c_c00482{left:430.666667pt;}
.x4_c00482{left:432.266667pt;}
.x90_c00482{left:433.733333pt;}
.xa9_c00482{left:436.000000pt;}
.xdb_c00482{left:437.333333pt;}
.x7e_c00482{left:438.400000pt;}
.x82_c00482{left:440.266667pt;}
.xf7_c00482{left:441.200000pt;}
.x9f_c00482{left:442.266667pt;}
.x7b_c00482{left:444.533333pt;}
.xd2_c00482{left:445.600000pt;}
.x65_c00482{left:447.333333pt;}
.xcf_c00482{left:448.800000pt;}
.x10b_c00482{left:450.133333pt;}
.x84_c00482{left:453.466667pt;}
.x121_c00482{left:454.533333pt;}
.x73_c00482{left:456.133333pt;}
.x122_c00482{left:457.066667pt;}
.xd7_c00482{left:459.600000pt;}
.xa0_c00482{left:461.733333pt;}
.x5_c00482{left:462.933333pt;}
.xaa_c00482{left:464.133333pt;}
.x7f_c00482{left:465.866667pt;}
.x132_c00482{left:466.933333pt;}
.x88_c00482{left:468.800000pt;}
.x66_c00482{left:470.400000pt;}
.x96_c00482{left:473.066667pt;}
.x6e_c00482{left:475.466667pt;}
.xd8_c00482{left:476.533333pt;}
.x108_c00482{left:477.733333pt;}
.x6_c00482{left:478.666667pt;}
.xfb_c00482{left:479.733333pt;}
.xe2_c00482{left:480.933333pt;}
.x12f_c00482{left:482.000000pt;}
.x9a_c00482{left:483.600000pt;}
.x74_c00482{left:485.200000pt;}
.x154_c00482{left:486.133333pt;}
.xf8_c00482{left:487.333333pt;}
.x89_c00482{left:490.266667pt;}
.x104_c00482{left:491.733333pt;}
.xae_c00482{left:493.466667pt;}
.xd0_c00482{left:494.533333pt;}
.x7c_c00482{left:495.466667pt;}
.xe3_c00482{left:497.600000pt;}
.xea_c00482{left:498.800000pt;}
.x67_c00482{left:499.866667pt;}
.x6f_c00482{left:500.800000pt;}
.xb8_c00482{left:504.000000pt;}
.x75_c00482{left:505.333333pt;}
.x123_c00482{left:506.400000pt;}
.xe0_c00482{left:507.333333pt;}
.x105_c00482{left:508.400000pt;}
.x7_c00482{left:510.000000pt;}
.xe4_c00482{left:511.066667pt;}
.x8a_c00482{left:513.600000pt;}
.x120_c00482{left:514.933333pt;}
.x7d_c00482{left:516.000000pt;}
.x155_c00482{left:517.466667pt;}
.xd1_c00482{left:519.466667pt;}
.x80_c00482{left:520.933333pt;}
.x70_c00482{left:522.266667pt;}
.xfc_c00482{left:523.866667pt;}
.x11d_c00482{left:525.866667pt;}
.x125_c00482{left:527.466667pt;}
.xd9_c00482{left:529.733333pt;}
.x91_c00482{left:531.333333pt;}
.xaf_c00482{left:532.266667pt;}
.x85_c00482{left:533.200000pt;}
.xcd_c00482{left:534.800000pt;}
.x8b_c00482{left:536.266667pt;}
.xd3_c00482{left:538.000000pt;}
.xf9_c00482{left:538.933333pt;}
.x92_c00482{left:540.000000pt;}
.x11f_c00482{left:542.266667pt;}
.x12d_c00482{left:543.333333pt;}
.xdc_c00482{left:544.533333pt;}
.xfa_c00482{left:545.600000pt;}
.x8_c00482{left:546.800000pt;}
.x129_c00482{left:548.000000pt;}
.x76_c00482{left:549.466667pt;}
.x9b_c00482{left:551.066667pt;}
.x10c_c00482{left:552.266667pt;}
.x8c_c00482{left:555.733333pt;}
.xeb_c00482{left:557.333333pt;}
.x102_c00482{left:559.200000pt;}
.xe1_c00482{left:561.066667pt;}
.xdd_c00482{left:564.000000pt;}
.x97_c00482{left:565.466667pt;}
.x156_c00482{left:567.733333pt;}
.x9_c00482{left:569.200000pt;}
.xe5_c00482{left:570.533333pt;}
.x71_c00482{left:571.600000pt;}
.x68_c00482{left:574.400000pt;}
.x130_c00482{left:575.333333pt;}
.xe6_c00482{left:576.933333pt;}
.xab_c00482{left:578.666667pt;}
.xa1_c00482{left:579.733333pt;}
.x98_c00482{left:581.200000pt;}
.x69_c00482{left:583.333333pt;}
.x11c_c00482{left:584.266667pt;}
.x93_c00482{left:585.466667pt;}
.x8d_c00482{left:586.400000pt;}
.x126_c00482{left:588.266667pt;}
.x9c_c00482{left:590.133333pt;}
.x77_c00482{left:591.333333pt;}
.xd4_c00482{left:594.266667pt;}
.x14b_c00482{left:595.466667pt;}
.x86_c00482{left:596.933333pt;}
.xda_c00482{left:598.533333pt;}
.x78_c00482{left:602.266667pt;}
.x6a_c00482{left:603.466667pt;}
.x14e_c00482{left:604.800000pt;}
.x94_c00482{left:606.933333pt;}
.xb0_c00482{left:609.333333pt;}
.x133_c00482{left:611.066667pt;}
.x127_c00482{left:612.000000pt;}
.xe7_c00482{left:613.733333pt;}
.xa_c00482{left:615.333333pt;}
.x79_c00482{left:616.666667pt;}
.xa2_c00482{left:618.400000pt;}
.x157_c00482{left:619.866667pt;}
.x72_c00482{left:624.133333pt;}
.x6b_c00482{left:625.200000pt;}
.x124_c00482{left:626.666667pt;}
.xb_c00482{left:630.000000pt;}
.xce_c00482{left:631.466667pt;}
.xde_c00482{left:633.733333pt;}
.x106_c00482{left:634.933333pt;}
.xd5_c00482{left:635.866667pt;}
.x128_c00482{left:636.933333pt;}
.x8e_c00482{left:638.266667pt;}
.x9d_c00482{left:639.733333pt;}
.x151_c00482{left:640.800000pt;}
.x134_c00482{left:641.733333pt;}
.x99_c00482{left:645.200000pt;}
.x12b_c00482{left:646.800000pt;}
.xa7_c00482{left:648.533333pt;}
.x131_c00482{left:649.466667pt;}
.xac_c00482{left:651.066667pt;}
.x2_c00482{left:652.400000pt;}
.x14f_c00482{left:653.733333pt;}
.xd6_c00482{left:654.800000pt;}
.x7a_c00482{left:656.666667pt;}
.xb1_c00482{left:658.266667pt;}
.x14c_c00482{left:660.133333pt;}
.x152_c00482{left:661.333333pt;}
.xc_c00482{left:662.266667pt;}
.x81_c00482{left:663.733333pt;}
.xe8_c00482{left:664.933333pt;}
.x11e_c00482{left:665.866667pt;}
.x6c_c00482{left:666.800000pt;}
.xa3_c00482{left:668.000000pt;}
.x95_c00482{left:672.800000pt;}
.x12e_c00482{left:674.266667pt;}
.x153_c00482{left:680.800000pt;}
}





/* 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_c00483 {
    display:none;
  }
  .loading-indicator_c00483.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00483 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_c00483 { 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_c00483" -> "#page-container .classname_c00483")
 */
.pf_c00483 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00483 { /* 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_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00483 { /* 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_c00483 { /* 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_c00483 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00483 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00483 {overflow:visible;}
  }
}
.c_c00483 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00483 { /* 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_c00483:after { /* webkit #35443 */
  content: '';
}
.t_c00483:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00483 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 */
}
.__c00483 { /* 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_c00483 { /* info for Javascript */
  display:none;
}
.l_c00483 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00483 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00483 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00483: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_c00483 {
    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_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00483.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_c00483 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00483{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00483;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.000000;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;}
.m15_c00483{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m40_c00483{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00483{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00483{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me_c00483{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m121_c00483{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m104_c00483{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00483{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m23_c00483{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00483{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00483{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00483{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00483{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m96_c00483{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m21_c00483{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7_c00483{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00483{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00483{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00483{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m74_c00483{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.me6_c00483{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me2_c00483{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.md1_c00483{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m55_c00483{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m86_c00483{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m65_c00483{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m66_c00483{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m79_c00483{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m70_c00483{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00483{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00483{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3_c00483{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00483{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00483{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8_c00483{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00483{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m4_c00483{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00483{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00483{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m5_c00483{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m33_c00483{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mae_c00483{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m52_c00483{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00483{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.me8_c00483{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00483{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00483{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00483{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md0_c00483{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00483{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m132_c00483{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m6_c00483{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m101_c00483{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00483{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00483{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00483{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00483{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m110_c00483{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m85_c00483{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00483{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m89_c00483{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00483{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m22_c00483{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00483{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m32_c00483{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m81_c00483{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m63_c00483{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00483{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mda_c00483{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00483{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00483{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00483{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00483{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00483{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00483{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00483{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m120_c00483{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m127_c00483{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00483{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m93_c00483{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m67_c00483{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00483{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me5_c00483{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00483{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00483{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m12_c00483{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m29_c00483{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m73_c00483{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md4_c00483{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.maf_c00483{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mf_c00483{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mde_c00483{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m114_c00483{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m76_c00483{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m99_c00483{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00483{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00483{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m87_c00483{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m78_c00483{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m91_c00483{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m68_c00483{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00483{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me0_c00483{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00483{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00483{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00483{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m97_c00483{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m118_c00483{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md6_c00483{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m98_c00483{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m62_c00483{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00483{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m49_c00483{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00483{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00483{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00483{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m31_c00483{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m95_c00483{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00483{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00483{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00483{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00483{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00483{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.md2_c00483{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m13_c00483{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m42_c00483{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00483{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m57_c00483{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m19_c00483{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m84_c00483{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00483{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.md9_c00483{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m107_c00483{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00483{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma_c00483{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.me4_c00483{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00483{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00483{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00483{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mea_c00483{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00483{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m50_c00483{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mee_c00483{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc_c00483{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00483{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m113_c00483{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00483{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m56_c00483{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00483{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m69_c00483{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00483{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m14_c00483{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m103_c00483{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m119_c00483{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m47_c00483{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m64_c00483{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m92_c00483{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00483{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m112_c00483{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m111_c00483{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m60_c00483{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m20_c00483{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m116_c00483{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00483{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m128_c00483{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00483{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m28_c00483{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m90_c00483{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00483{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00483{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.maa_c00483{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m58_c00483{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mac_c00483{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m27_c00483{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00483{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00483{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00483{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00483{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m38_c00483{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00483{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m131_c00483{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m48_c00483{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00483{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.med_c00483{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.me7_c00483{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00483{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m122_c00483{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m59_c00483{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m26_c00483{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00483{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00483{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m45_c00483{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00483{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00483{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00483{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m117_c00483{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m126_c00483{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mca_c00483{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m71_c00483{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m30_c00483{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00483{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00483{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00483{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00483{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00483{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00483{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me3_c00483{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00483{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mec_c00483{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00483{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.md_c00483{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m108_c00483{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00483{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m109_c00483{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m129_c00483{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m35_c00483{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m83_c00483{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m115_c00483{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00483{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mce_c00483{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00483{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00483{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00483{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00483{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00483{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m36_c00483{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mba_c00483{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);}
.m75_c00483{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00483{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00483{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m17_c00483{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00483{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00483{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m124_c00483{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mef_c00483{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00483{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00483{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m61_c00483{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mab_c00483{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00483{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m53_c00483{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00483{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m105_c00483{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m51_c00483{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00483{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md7_c00483{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00483{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00483{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m39_c00483{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m130_c00483{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m125_c00483{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m123_c00483{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m37_c00483{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m88_c00483{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m82_c00483{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m34_c00483{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m46_c00483{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00483{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.md5_c00483{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mff_c00483{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m25_c00483{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00483{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00483{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00483{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.md8_c00483{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me1_c00483{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00483{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md3_c00483{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m9_c00483{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00483{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00483{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00483{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m44_c00483{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m43_c00483{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00483{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m10_c00483{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00483{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m18_c00483{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m11_c00483{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00483{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00483{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m80_c00483{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00483{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00483{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00483{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m54_c00483{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00483{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00483{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m72_c00483{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m133_c00483{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00483{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m41_c00483{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.mad_c00483{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00483{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m24_c00483{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00483{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00483{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.me9_c00483{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c00483{transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435500,0.000000,0.000000,0.250000,0,0);}
.meb_c00483{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m102_c00483{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m106_c00483{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00483{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00483{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m77_c00483{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m100_c00483{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls0_c00483{letter-spacing:0.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{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__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00483{word-spacing:-5.384615px;}
.wsa_c00483{word-spacing:0.000000px;}
.ws5_c00483{word-spacing:2.001172px;}
.ws9_c00483{word-spacing:3.888889px;}
.ws6_c00483{word-spacing:7.297297px;}
.ws2_c00483{word-spacing:12.894737px;}
.ws7_c00483{word-spacing:20.018757px;}
.ws8_c00483{word-spacing:20.451348px;}
.ws0_c00483{word-spacing:25.714286px;}
.ws3_c00483{word-spacing:44.687500px;}
.ws1_c00483{word-spacing:101.538462px;}
._0_c00483{width:25.897436px;}
.fc0_c00483{color:transparent;}
.fs7_c00483{font-size:30.000000px;}
.fs6_c00483{font-size:42.000000px;}
.fs3_c00483{font-size:48.000000px;}
.fs5_c00483{font-size:54.000000px;}
.fs4_c00483{font-size:60.000000px;}
.fs2_c00483{font-size:66.000000px;}
.fs0_c00483{font-size:72.000000px;}
.fs1_c00483{font-size:78.000000px;}
.y0_c00483{bottom:0.000000px;}
.y71_c00483{bottom:198.000000px;}
.y65_c00483{bottom:212.400000px;}
.y70_c00483{bottom:215.250000px;}
.y64_c00483{bottom:227.100000px;}
.y6f_c00483{bottom:229.950000px;}
.y63_c00483{bottom:241.200000px;}
.y6e_c00483{bottom:244.050000px;}
.y62_c00483{bottom:255.300000px;}
.y6d_c00483{bottom:258.450000px;}
.y61_c00483{bottom:269.400000px;}
.y6c_c00483{bottom:272.550000px;}
.y60_c00483{bottom:283.500000px;}
.y6b_c00483{bottom:286.950000px;}
.y5f_c00483{bottom:297.600000px;}
.y6a_c00483{bottom:301.050000px;}
.y5e_c00483{bottom:311.700000px;}
.y69_c00483{bottom:315.150000px;}
.y5d_c00483{bottom:325.800000px;}
.y68_c00483{bottom:329.250000px;}
.y5c_c00483{bottom:340.200000px;}
.y67_c00483{bottom:343.350000px;}
.y5b_c00483{bottom:354.600000px;}
.y66_c00483{bottom:357.450000px;}
.y5a_c00483{bottom:369.000000px;}
.y59_c00483{bottom:383.100000px;}
.y58_c00483{bottom:397.200000px;}
.y28_c00483{bottom:403.500000px;}
.y57_c00483{bottom:411.600000px;}
.y56_c00483{bottom:425.700000px;}
.y27_c00483{bottom:427.650000px;}
.y55_c00483{bottom:440.100000px;}
.y26_c00483{bottom:442.800000px;}
.y54_c00483{bottom:454.200000px;}
.y25_c00483{bottom:455.700000px;}
.y53_c00483{bottom:468.300000px;}
.y24_c00483{bottom:474.750000px;}
.y52_c00483{bottom:482.700000px;}
.y23_c00483{bottom:493.500000px;}
.y51_c00483{bottom:496.800000px;}
.y22_c00483{bottom:510.450000px;}
.y50_c00483{bottom:511.200000px;}
.y4f_c00483{bottom:525.600000px;}
.y21_c00483{bottom:528.150000px;}
.y4e_c00483{bottom:539.700000px;}
.y20_c00483{bottom:545.850000px;}
.y4d_c00483{bottom:553.800000px;}
.y1f_c00483{bottom:563.100000px;}
.y4c_c00483{bottom:567.900000px;}
.y4b_c00483{bottom:582.000000px;}
.y1e_c00483{bottom:588.450000px;}
.y4a_c00483{bottom:596.100000px;}
.y1d_c00483{bottom:606.450000px;}
.y49_c00483{bottom:610.500000px;}
.y1c_c00483{bottom:624.450000px;}
.y48_c00483{bottom:624.600000px;}
.y47_c00483{bottom:639.000000px;}
.y1b_c00483{bottom:642.150000px;}
.y46_c00483{bottom:653.100000px;}
.y1a_c00483{bottom:660.150000px;}
.y45_c00483{bottom:667.500000px;}
.y19_c00483{bottom:677.850000px;}
.y44_c00483{bottom:681.300000px;}
.y43_c00483{bottom:695.700000px;}
.y18_c00483{bottom:695.850000px;}
.y42_c00483{bottom:709.800000px;}
.y17_c00483{bottom:713.550000px;}
.y41_c00483{bottom:723.900000px;}
.y16_c00483{bottom:734.400000px;}
.y40_c00483{bottom:738.000000px;}
.y3f_c00483{bottom:752.400000px;}
.y15_c00483{bottom:752.700000px;}
.y3e_c00483{bottom:766.350000px;}
.y3d_c00483{bottom:780.450000px;}
.y14_c00483{bottom:792.300000px;}
.y3c_c00483{bottom:794.850000px;}
.y3b_c00483{bottom:809.250000px;}
.y3a_c00483{bottom:822.300000px;}
.y13_c00483{bottom:831.900000px;}
.y39_c00483{bottom:837.450000px;}
.y12_c00483{bottom:849.600000px;}
.y38_c00483{bottom:851.850000px;}
.y37_c00483{bottom:866.250000px;}
.y11_c00483{bottom:867.600000px;}
.y36_c00483{bottom:880.650000px;}
.y35_c00483{bottom:894.300000px;}
.y10_c00483{bottom:897.900000px;}
.y34_c00483{bottom:908.700000px;}
.yf_c00483{bottom:915.750000px;}
.y33_c00483{bottom:929.100000px;}
.ye_c00483{bottom:933.450000px;}
.y32_c00483{bottom:948.900000px;}
.yd_c00483{bottom:956.850000px;}
.y31_c00483{bottom:967.200000px;}
.yc_c00483{bottom:981.150000px;}
.y30_c00483{bottom:984.900000px;}
.yb_c00483{bottom:999.900000px;}
.y2f_c00483{bottom:1002.900000px;}
.ya_c00483{bottom:1017.600000px;}
.y2e_c00483{bottom:1024.050000px;}
.y9_c00483{bottom:1035.300000px;}
.y2d_c00483{bottom:1042.050000px;}
.y8_c00483{bottom:1053.000000px;}
.y2c_c00483{bottom:1059.750000px;}
.y2b_c00483{bottom:1077.450000px;}
.y7_c00483{bottom:1078.500000px;}
.y2a_c00483{bottom:1095.150000px;}
.y6_c00483{bottom:1096.500000px;}
.y29_c00483{bottom:1114.200000px;}
.y5_c00483{bottom:1117.500000px;}
.y4_c00483{bottom:1131.450000px;}
.y3_c00483{bottom:1136.100000px;}
.y1_c00483{bottom:1158.450000px;}
.y2_c00483{bottom:1161.300000px;}
.h9_c00483{height:30.000000px;}
.h8_c00483{height:42.000000px;}
.h5_c00483{height:48.000000px;}
.h7_c00483{height:54.000000px;}
.h6_c00483{height:60.000000px;}
.h4_c00483{height:66.000000px;}
.h2_c00483{height:72.000000px;}
.h3_c00483{height:78.000000px;}
.h1_c00483{height:1276.500000px;}
.h0_c00483{height:1276.559967px;}
.w0_c00483{width:958.320007px;}
.w1_c00483{width:958.500000px;}
.x0_c00483{left:0.000000px;}
.x139_c00483{left:185.700000px;}
.x125_c00483{left:187.050000px;}
.xe3_c00483{left:188.250000px;}
.xd5_c00483{left:189.300000px;}
.x1_c00483{left:191.850000px;}
.x110_c00483{left:196.200000px;}
.x118_c00483{left:200.400000px;}
.x123_c00483{left:201.900000px;}
.xef_c00483{left:203.100000px;}
.xd6_c00483{left:204.150000px;}
.xe6_c00483{left:205.800000px;}
.xc4_c00483{left:208.350000px;}
.x9f_c00483{left:209.850000px;}
.x3_c00483{left:210.900000px;}
.xf9_c00483{left:212.250000px;}
.x135_c00483{left:213.600000px;}
.x126_c00483{left:216.600000px;}
.x12b_c00483{left:217.800000px;}
.x141_c00483{left:219.300000px;}
.x129_c00483{left:221.100000px;}
.xf2_c00483{left:222.900000px;}
.xee_c00483{left:226.200000px;}
.xd7_c00483{left:228.300000px;}
.xa6_c00483{left:230.550000px;}
.xdf_c00483{left:231.900000px;}
.xac_c00483{left:233.850000px;}
.xb4_c00483{left:235.050000px;}
.x124_c00483{left:236.100000px;}
.xfa_c00483{left:238.950000px;}
.xea_c00483{left:241.050000px;}
.x13d_c00483{left:242.100000px;}
.x4_c00483{left:244.050000px;}
.x104_c00483{left:245.250000px;}
.xc5_c00483{left:246.900000px;}
.xd1_c00483{left:249.450000px;}
.xca_c00483{left:251.550000px;}
.xfe_c00483{left:253.350000px;}
.xa0_c00483{left:254.550000px;}
.x11e_c00483{left:256.050000px;}
.x105_c00483{left:257.100000px;}
.x136_c00483{left:258.900000px;}
.xd8_c00483{left:260.700000px;}
.xe0_c00483{left:263.250000px;}
.xad_c00483{left:264.750000px;}
.x127_c00483{left:265.800000px;}
.x111_c00483{left:267.450000px;}
.x140_c00483{left:268.950000px;}
.xd2_c00483{left:270.300000px;}
.x12d_c00483{left:272.250000px;}
.xf3_c00483{left:273.300000px;}
.xbd_c00483{left:276.450000px;}
.xa7_c00483{left:278.100000px;}
.xfb_c00483{left:280.050000px;}
.x106_c00483{left:282.300000px;}
.x15_c00483{left:285.750000px;}
.xa1_c00483{left:286.950000px;}
.x11d_c00483{left:289.650000px;}
.x130_c00483{left:291.300000px;}
.xe1_c00483{left:292.350000px;}
.x5_c00483{left:293.700000px;}
.xbb_c00483{left:297.450000px;}
.xae_c00483{left:298.950000px;}
.x11b_c00483{left:300.150000px;}
.xdb_c00483{left:302.850000px;}
.x114_c00483{left:304.800000px;}
.xb5_c00483{left:306.750000px;}
.xd3_c00483{left:307.800000px;}
.xcb_c00483{left:310.650000px;}
.xfc_c00483{left:312.150000px;}
.x11f_c00483{left:314.400000px;}
.x143_c00483{left:315.900000px;}
.xaf_c00483{left:317.700000px;}
.x12e_c00483{left:318.750000px;}
.x109_c00483{left:320.250000px;}
.x16_c00483{left:321.450000px;}
.x119_c00483{left:323.100000px;}
.xd9_c00483{left:325.500000px;}
.x10d_c00483{left:326.700000px;}
.xa8_c00483{left:327.750000px;}
.x6_c00483{left:329.700000px;}
.x101_c00483{left:331.800000px;}
.xbe_c00483{left:335.550000px;}
.xa9_c00483{left:336.750000px;}
.x13e_c00483{left:337.800000px;}
.xff_c00483{left:339.150000px;}
.x137_c00483{left:340.650000px;}
.xcc_c00483{left:342.300000px;}
.xe4_c00483{left:344.100000px;}
.x10c_c00483{left:346.050000px;}
.x13f_c00483{left:347.100000px;}
.xb6_c00483{left:349.950000px;}
.x144_c00483{left:351.150000px;}
.xa2_c00483{left:352.500000px;}
.xbf_c00483{left:353.850000px;}
.xe2_c00483{left:355.950000px;}
.xc6_c00483{left:358.200000px;}
.xd4_c00483{left:360.300000px;}
.x120_c00483{left:361.500000px;}
.xdc_c00483{left:364.350000px;}
.xf0_c00483{left:365.400000px;}
.x7_c00483{left:367.800000px;}
.x145_c00483{left:370.200000px;}
.xb7_c00483{left:371.250000px;}
.x10a_c00483{left:373.500000px;}
.x132_c00483{left:375.150000px;}
.xa3_c00483{left:376.200000px;}
.xb0_c00483{left:377.400000px;}
.xc7_c00483{left:379.050000px;}
.xcd_c00483{left:381.450000px;}
.xfd_c00483{left:383.400000px;}
.xe5_c00483{left:385.800000px;}
.x133_c00483{left:387.450000px;}
.xdd_c00483{left:389.850000px;}
.x17_c00483{left:390.900000px;}
.xeb_c00483{left:392.250000px;}
.x8_c00483{left:394.500000px;}
.x10e_c00483{left:396.600000px;}
.x13a_c00483{left:397.800000px;}
.x107_c00483{left:399.000000px;}
.xf1_c00483{left:400.650000px;}
.xbc_c00483{left:402.450000px;}
.xf6_c00483{left:404.400000px;}
.x102_c00483{left:406.350000px;}
.x134_c00483{left:407.550000px;}
.x115_c00483{left:408.900000px;}
.xc8_c00483{left:412.200000px;}
.xa4_c00483{left:413.700000px;}
.xce_c00483{left:414.900000px;}
.x138_c00483{left:416.700000px;}
.xb1_c00483{left:417.750000px;}
.x12a_c00483{left:419.100000px;}
.xc0_c00483{left:420.750000px;}
.x9_c00483{left:423.300000px;}
.x112_c00483{left:425.550000px;}
.x10f_c00483{left:427.950000px;}
.x12f_c00483{left:429.750000px;}
.xaa_c00483{left:432.150000px;}
.xe7_c00483{left:433.650000px;}
.x103_c00483{left:434.850000px;}
.xc9_c00483{left:435.900000px;}
.x2_c00483{left:437.400000px;}
.xb2_c00483{left:439.050000px;}
.x13c_c00483{left:440.850000px;}
.xf4_c00483{left:442.050000px;}
.xb8_c00483{left:443.250000px;}
.xc1_c00483{left:445.200000px;}
.xcf_c00483{left:447.000000px;}
.xa_c00483{left:448.500000px;}
.x11c_c00483{left:449.550000px;}
.xe8_c00483{left:452.700000px;}
.x13b_c00483{left:454.350000px;}
.x108_c00483{left:456.300000px;}
.x12c_c00483{left:457.500000px;}
.x11a_c00483{left:459.000000px;}
.xf7_c00483{left:462.300000px;}
.xa5_c00483{left:463.800000px;}
.xb9_c00483{left:465.900000px;}
.xec_c00483{left:468.150000px;}
.x131_c00483{left:470.550000px;}
.x116_c00483{left:471.900000px;}
.xf5_c00483{left:475.200000px;}
.x18_c00483{left:477.600000px;}
.xe9_c00483{left:478.950000px;}
.x117_c00483{left:481.650000px;}
.xde_c00483{left:484.200000px;}
.xb_c00483{left:486.300000px;}
.xed_c00483{left:487.950000px;}
.x121_c00483{left:489.300000px;}
.xc2_c00483{left:490.950000px;}
.xf8_c00483{left:492.600000px;}
.xab_c00483{left:494.100000px;}
.x10b_c00483{left:495.900000px;}
.x128_c00483{left:497.250000px;}
.xb3_c00483{left:499.950000px;}
.xc3_c00483{left:502.050000px;}
.x142_c00483{left:503.400000px;}
.xda_c00483{left:505.950000px;}
.x122_c00483{left:507.600000px;}
.x100_c00483{left:508.950000px;}
.xd0_c00483{left:510.300000px;}
.xc_c00483{left:511.500000px;}
.xba_c00483{left:513.450000px;}
.x113_c00483{left:517.050000px;}
.x15a_c00483{left:537.450000px;}
.x146_c00483{left:538.500000px;}
.x93_c00483{left:539.550000px;}
.x82_c00483{left:542.100000px;}
.x5e_c00483{left:543.300000px;}
.x44_c00483{left:544.350000px;}
.xd_c00483{left:546.750000px;}
.x88_c00483{left:555.750000px;}
.x19_c00483{left:557.550000px;}
.x7f_c00483{left:559.200000px;}
.x61_c00483{left:560.250000px;}
.x37_c00483{left:562.200000px;}
.x1c_c00483{left:564.150000px;}
.x14d_c00483{left:566.250000px;}
.x9b_c00483{left:568.500000px;}
.x2b_c00483{left:570.300000px;}
.x152_c00483{left:573.300000px;}
.x147_c00483{left:574.500000px;}
.x15e_c00483{left:575.850000px;}
.x84_c00483{left:578.100000px;}
.x62_c00483{left:579.600000px;}
.x159_c00483{left:581.850000px;}
.x1d_c00483{left:583.200000px;}
.x41_c00483{left:584.700000px;}
.x5f_c00483{left:586.200000px;}
.x85_c00483{left:588.900000px;}
.xe_c00483{left:589.950000px;}
.x54_c00483{left:591.750000px;}
.x148_c00483{left:593.250000px;}
.x38_c00483{left:594.900000px;}
.x78_c00483{left:596.400000px;}
.x4b_c00483{left:598.050000px;}
.x6f_c00483{left:599.700000px;}
.x50_c00483{left:601.950000px;}
.x22_c00483{left:604.200000px;}
.x1a_c00483{left:606.900000px;}
.x39_c00483{left:609.300000px;}
.x8f_c00483{left:610.500000px;}
.x79_c00483{left:612.900000px;}
.xf_c00483{left:614.850000px;}
.x14b_c00483{left:616.950000px;}
.x51_c00483{left:618.900000px;}
.x9c_c00483{left:619.950000px;}
.x52_c00483{left:621.450000px;}
.x10_c00483{left:624.150000px;}
.x14e_c00483{left:625.650000px;}
.x1e_c00483{left:626.700000px;}
.x45_c00483{left:628.200000px;}
.x73_c00483{left:630.750000px;}
.x11_c00483{left:636.750000px;}
.x23_c00483{left:639.900000px;}
.x30_c00483{left:641.850000px;}
.x5b_c00483{left:645.150000px;}
.x7a_c00483{left:646.800000px;}
.x149_c00483{left:648.300000px;}
.x14c_c00483{left:649.350000px;}
.x4c_c00483{left:650.550000px;}
.x2c_c00483{left:651.600000px;}
.x155_c00483{left:653.550000px;}
.x31_c00483{left:655.500000px;}
.x9d_c00483{left:656.700000px;}
.x5c_c00483{left:658.050000px;}
.x94_c00483{left:659.100000px;}
.x24_c00483{left:660.450000px;}
.x7b_c00483{left:665.850000px;}
.x70_c00483{left:667.050000px;}
.x46_c00483{left:668.850000px;}
.x69_c00483{left:670.950000px;}
.x3a_c00483{left:673.050000px;}
.x5d_c00483{left:675.000000px;}
.x25_c00483{left:676.350000px;}
.x4d_c00483{left:677.850000px;}
.x156_c00483{left:680.850000px;}
.x15c_c00483{left:682.500000px;}
.x3b_c00483{left:683.550000px;}
.x53_c00483{left:686.250000px;}
.x15b_c00483{left:687.750000px;}
.x89_c00483{left:688.950000px;}
.x1f_c00483{left:690.000000px;}
.x7c_c00483{left:692.850000px;}
.x4e_c00483{left:696.150000px;}
.x2d_c00483{left:698.100000px;}
.x7d_c00483{left:700.800000px;}
.x74_c00483{left:702.000000px;}
.x60_c00483{left:703.500000px;}
.x26_c00483{left:705.150000px;}
.x6a_c00483{left:706.650000px;}
.x55_c00483{left:712.350000px;}
.x80_c00483{left:714.300000px;}
.x95_c00483{left:716.400000px;}
.x83_c00483{left:717.450000px;}
.x8a_c00483{left:718.500000px;}
.x12_c00483{left:720.300000px;}
.x14a_c00483{left:722.100000px;}
.x6b_c00483{left:723.600000px;}
.x3c_c00483{left:724.650000px;}
.x7e_c00483{left:725.700000px;}
.x8c_c00483{left:727.050000px;}
.x86_c00483{left:728.250000px;}
.x32_c00483{left:730.050000px;}
.x75_c00483{left:736.200000px;}
.x87_c00483{left:737.250000px;}
.x63_c00483{left:740.100000px;}
.x5a_c00483{left:741.750000px;}
.x14f_c00483{left:742.950000px;}
.x33_c00483{left:744.450000px;}
.x42_c00483{left:746.850000px;}
.x3d_c00483{left:748.350000px;}
.x20_c00483{left:751.200000px;}
.x153_c00483{left:753.300000px;}
.x96_c00483{left:755.700000px;}
.x2e_c00483{left:757.500000px;}
.x4f_c00483{left:758.850000px;}
.x64_c00483{left:759.900000px;}
.x154_c00483{left:761.250000px;}
.x27_c00483{left:762.450000px;}
.x6c_c00483{left:764.550000px;}
.x150_c00483{left:766.500000px;}
.x56_c00483{left:768.450000px;}
.x28_c00483{left:770.400000px;}
.x47_c00483{left:774.000000px;}
.x97_c00483{left:777.300000px;}
.x29_c00483{left:780.900000px;}
.x98_c00483{left:784.500000px;}
.x2a_c00483{left:788.100000px;}
.x6d_c00483{left:789.750000px;}
.x66_c00483{left:791.850000px;}
.x90_c00483{left:793.500000px;}
.x76_c00483{left:796.650000px;}
.x15d_c00483{left:800.250000px;}
.x57_c00483{left:801.900000px;}
.x34_c00483{left:803.100000px;}
.x99_c00483{left:805.050000px;}
.x48_c00483{left:807.150000px;}
.x3e_c00483{left:809.100000px;}
.x151_c00483{left:811.050000px;}
.x157_c00483{left:812.700000px;}
.x58_c00483{left:813.750000px;}
.x35_c00483{left:814.950000px;}
.x65_c00483{left:816.000000px;}
.x71_c00483{left:818.250000px;}
.x43_c00483{left:820.650000px;}
.x3f_c00483{left:822.000000px;}
.x2f_c00483{left:823.350000px;}
.x91_c00483{left:824.400000px;}
.x49_c00483{left:828.750000px;}
.x9e_c00483{left:830.850000px;}
.x13_c00483{left:832.200000px;}
.x21_c00483{left:834.300000px;}
.x59_c00483{left:836.400000px;}
.x72_c00483{left:840.600000px;}
.x158_c00483{left:841.800000px;}
.x81_c00483{left:843.000000px;}
.x77_c00483{left:846.000000px;}
.x67_c00483{left:847.350000px;}
.x40_c00483{left:850.050000px;}
.x8d_c00483{left:851.700000px;}
.x6e_c00483{left:855.300000px;}
.x36_c00483{left:857.100000px;}
.x92_c00483{left:858.900000px;}
.x9a_c00483{left:861.900000px;}
.x4a_c00483{left:863.250000px;}
.x8e_c00483{left:865.050000px;}
.x8b_c00483{left:867.150000px;}
.x1b_c00483{left:870.450000px;}
.x68_c00483{left:878.250000px;}
.x14_c00483{left:880.050000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws4_c00483{word-spacing:-4.786325pt;}
.wsa_c00483{word-spacing:0.000000pt;}
.ws5_c00483{word-spacing:1.778820pt;}
.ws9_c00483{word-spacing:3.456790pt;}
.ws6_c00483{word-spacing:6.486486pt;}
.ws2_c00483{word-spacing:11.461988pt;}
.ws7_c00483{word-spacing:17.794451pt;}
.ws8_c00483{word-spacing:18.178976pt;}
.ws0_c00483{word-spacing:22.857143pt;}
.ws3_c00483{word-spacing:39.722222pt;}
.ws1_c00483{word-spacing:90.256410pt;}
._0_c00483{width:23.019943pt;}
.fs7_c00483{font-size:26.666667pt;}
.fs6_c00483{font-size:37.333333pt;}
.fs3_c00483{font-size:42.666667pt;}
.fs5_c00483{font-size:48.000000pt;}
.fs4_c00483{font-size:53.333333pt;}
.fs2_c00483{font-size:58.666667pt;}
.fs0_c00483{font-size:64.000000pt;}
.fs1_c00483{font-size:69.333333pt;}
.y0_c00483{bottom:0.000000pt;}
.y71_c00483{bottom:176.000000pt;}
.y65_c00483{bottom:188.800000pt;}
.y70_c00483{bottom:191.333333pt;}
.y64_c00483{bottom:201.866667pt;}
.y6f_c00483{bottom:204.400000pt;}
.y63_c00483{bottom:214.400000pt;}
.y6e_c00483{bottom:216.933333pt;}
.y62_c00483{bottom:226.933333pt;}
.y6d_c00483{bottom:229.733333pt;}
.y61_c00483{bottom:239.466667pt;}
.y6c_c00483{bottom:242.266667pt;}
.y60_c00483{bottom:252.000000pt;}
.y6b_c00483{bottom:255.066667pt;}
.y5f_c00483{bottom:264.533333pt;}
.y6a_c00483{bottom:267.600000pt;}
.y5e_c00483{bottom:277.066667pt;}
.y69_c00483{bottom:280.133333pt;}
.y5d_c00483{bottom:289.600000pt;}
.y68_c00483{bottom:292.666667pt;}
.y5c_c00483{bottom:302.400000pt;}
.y67_c00483{bottom:305.200000pt;}
.y5b_c00483{bottom:315.200000pt;}
.y66_c00483{bottom:317.733333pt;}
.y5a_c00483{bottom:328.000000pt;}
.y59_c00483{bottom:340.533333pt;}
.y58_c00483{bottom:353.066667pt;}
.y28_c00483{bottom:358.666667pt;}
.y57_c00483{bottom:365.866667pt;}
.y56_c00483{bottom:378.400000pt;}
.y27_c00483{bottom:380.133333pt;}
.y55_c00483{bottom:391.200000pt;}
.y26_c00483{bottom:393.600000pt;}
.y54_c00483{bottom:403.733333pt;}
.y25_c00483{bottom:405.066667pt;}
.y53_c00483{bottom:416.266667pt;}
.y24_c00483{bottom:422.000000pt;}
.y52_c00483{bottom:429.066667pt;}
.y23_c00483{bottom:438.666667pt;}
.y51_c00483{bottom:441.600000pt;}
.y22_c00483{bottom:453.733333pt;}
.y50_c00483{bottom:454.400000pt;}
.y4f_c00483{bottom:467.200000pt;}
.y21_c00483{bottom:469.466667pt;}
.y4e_c00483{bottom:479.733333pt;}
.y20_c00483{bottom:485.200000pt;}
.y4d_c00483{bottom:492.266667pt;}
.y1f_c00483{bottom:500.533333pt;}
.y4c_c00483{bottom:504.800000pt;}
.y4b_c00483{bottom:517.333333pt;}
.y1e_c00483{bottom:523.066667pt;}
.y4a_c00483{bottom:529.866667pt;}
.y1d_c00483{bottom:539.066667pt;}
.y49_c00483{bottom:542.666667pt;}
.y1c_c00483{bottom:555.066667pt;}
.y48_c00483{bottom:555.200000pt;}
.y47_c00483{bottom:568.000000pt;}
.y1b_c00483{bottom:570.800000pt;}
.y46_c00483{bottom:580.533333pt;}
.y1a_c00483{bottom:586.800000pt;}
.y45_c00483{bottom:593.333333pt;}
.y19_c00483{bottom:602.533333pt;}
.y44_c00483{bottom:605.600000pt;}
.y43_c00483{bottom:618.400000pt;}
.y18_c00483{bottom:618.533333pt;}
.y42_c00483{bottom:630.933333pt;}
.y17_c00483{bottom:634.266667pt;}
.y41_c00483{bottom:643.466667pt;}
.y16_c00483{bottom:652.800000pt;}
.y40_c00483{bottom:656.000000pt;}
.y3f_c00483{bottom:668.800000pt;}
.y15_c00483{bottom:669.066667pt;}
.y3e_c00483{bottom:681.200000pt;}
.y3d_c00483{bottom:693.733333pt;}
.y14_c00483{bottom:704.266667pt;}
.y3c_c00483{bottom:706.533333pt;}
.y3b_c00483{bottom:719.333333pt;}
.y3a_c00483{bottom:730.933333pt;}
.y13_c00483{bottom:739.466667pt;}
.y39_c00483{bottom:744.400000pt;}
.y12_c00483{bottom:755.200000pt;}
.y38_c00483{bottom:757.200000pt;}
.y37_c00483{bottom:770.000000pt;}
.y11_c00483{bottom:771.200000pt;}
.y36_c00483{bottom:782.800000pt;}
.y35_c00483{bottom:794.933333pt;}
.y10_c00483{bottom:798.133333pt;}
.y34_c00483{bottom:807.733333pt;}
.yf_c00483{bottom:814.000000pt;}
.y33_c00483{bottom:825.866667pt;}
.ye_c00483{bottom:829.733333pt;}
.y32_c00483{bottom:843.466667pt;}
.yd_c00483{bottom:850.533333pt;}
.y31_c00483{bottom:859.733333pt;}
.yc_c00483{bottom:872.133333pt;}
.y30_c00483{bottom:875.466667pt;}
.yb_c00483{bottom:888.800000pt;}
.y2f_c00483{bottom:891.466667pt;}
.ya_c00483{bottom:904.533333pt;}
.y2e_c00483{bottom:910.266667pt;}
.y9_c00483{bottom:920.266667pt;}
.y2d_c00483{bottom:926.266667pt;}
.y8_c00483{bottom:936.000000pt;}
.y2c_c00483{bottom:942.000000pt;}
.y2b_c00483{bottom:957.733333pt;}
.y7_c00483{bottom:958.666667pt;}
.y2a_c00483{bottom:973.466667pt;}
.y6_c00483{bottom:974.666667pt;}
.y29_c00483{bottom:990.400000pt;}
.y5_c00483{bottom:993.333333pt;}
.y4_c00483{bottom:1005.733333pt;}
.y3_c00483{bottom:1009.866667pt;}
.y1_c00483{bottom:1029.733333pt;}
.y2_c00483{bottom:1032.266667pt;}
.h9_c00483{height:26.666667pt;}
.h8_c00483{height:37.333333pt;}
.h5_c00483{height:42.666667pt;}
.h7_c00483{height:48.000000pt;}
.h6_c00483{height:53.333333pt;}
.h4_c00483{height:58.666667pt;}
.h2_c00483{height:64.000000pt;}
.h3_c00483{height:69.333333pt;}
.h1_c00483{height:1134.666667pt;}
.h0_c00483{height:1134.719971pt;}
.w0_c00483{width:851.840007pt;}
.w1_c00483{width:852.000000pt;}
.x0_c00483{left:0.000000pt;}
.x139_c00483{left:165.066667pt;}
.x125_c00483{left:166.266667pt;}
.xe3_c00483{left:167.333333pt;}
.xd5_c00483{left:168.266667pt;}
.x1_c00483{left:170.533333pt;}
.x110_c00483{left:174.400000pt;}
.x118_c00483{left:178.133333pt;}
.x123_c00483{left:179.466667pt;}
.xef_c00483{left:180.533333pt;}
.xd6_c00483{left:181.466667pt;}
.xe6_c00483{left:182.933333pt;}
.xc4_c00483{left:185.200000pt;}
.x9f_c00483{left:186.533333pt;}
.x3_c00483{left:187.466667pt;}
.xf9_c00483{left:188.666667pt;}
.x135_c00483{left:189.866667pt;}
.x126_c00483{left:192.533333pt;}
.x12b_c00483{left:193.600000pt;}
.x141_c00483{left:194.933333pt;}
.x129_c00483{left:196.533333pt;}
.xf2_c00483{left:198.133333pt;}
.xee_c00483{left:201.066667pt;}
.xd7_c00483{left:202.933333pt;}
.xa6_c00483{left:204.933333pt;}
.xdf_c00483{left:206.133333pt;}
.xac_c00483{left:207.866667pt;}
.xb4_c00483{left:208.933333pt;}
.x124_c00483{left:209.866667pt;}
.xfa_c00483{left:212.400000pt;}
.xea_c00483{left:214.266667pt;}
.x13d_c00483{left:215.200000pt;}
.x4_c00483{left:216.933333pt;}
.x104_c00483{left:218.000000pt;}
.xc5_c00483{left:219.466667pt;}
.xd1_c00483{left:221.733333pt;}
.xca_c00483{left:223.600000pt;}
.xfe_c00483{left:225.200000pt;}
.xa0_c00483{left:226.266667pt;}
.x11e_c00483{left:227.600000pt;}
.x105_c00483{left:228.533333pt;}
.x136_c00483{left:230.133333pt;}
.xd8_c00483{left:231.733333pt;}
.xe0_c00483{left:234.000000pt;}
.xad_c00483{left:235.333333pt;}
.x127_c00483{left:236.266667pt;}
.x111_c00483{left:237.733333pt;}
.x140_c00483{left:239.066667pt;}
.xd2_c00483{left:240.266667pt;}
.x12d_c00483{left:242.000000pt;}
.xf3_c00483{left:242.933333pt;}
.xbd_c00483{left:245.733333pt;}
.xa7_c00483{left:247.200000pt;}
.xfb_c00483{left:248.933333pt;}
.x106_c00483{left:250.933333pt;}
.x15_c00483{left:254.000000pt;}
.xa1_c00483{left:255.066667pt;}
.x11d_c00483{left:257.466667pt;}
.x130_c00483{left:258.933333pt;}
.xe1_c00483{left:259.866667pt;}
.x5_c00483{left:261.066667pt;}
.xbb_c00483{left:264.400000pt;}
.xae_c00483{left:265.733333pt;}
.x11b_c00483{left:266.800000pt;}
.xdb_c00483{left:269.200000pt;}
.x114_c00483{left:270.933333pt;}
.xb5_c00483{left:272.666667pt;}
.xd3_c00483{left:273.600000pt;}
.xcb_c00483{left:276.133333pt;}
.xfc_c00483{left:277.466667pt;}
.x11f_c00483{left:279.466667pt;}
.x143_c00483{left:280.800000pt;}
.xaf_c00483{left:282.400000pt;}
.x12e_c00483{left:283.333333pt;}
.x109_c00483{left:284.666667pt;}
.x16_c00483{left:285.733333pt;}
.x119_c00483{left:287.200000pt;}
.xd9_c00483{left:289.333333pt;}
.x10d_c00483{left:290.400000pt;}
.xa8_c00483{left:291.333333pt;}
.x6_c00483{left:293.066667pt;}
.x101_c00483{left:294.933333pt;}
.xbe_c00483{left:298.266667pt;}
.xa9_c00483{left:299.333333pt;}
.x13e_c00483{left:300.266667pt;}
.xff_c00483{left:301.466667pt;}
.x137_c00483{left:302.800000pt;}
.xcc_c00483{left:304.266667pt;}
.xe4_c00483{left:305.866667pt;}
.x10c_c00483{left:307.600000pt;}
.x13f_c00483{left:308.533333pt;}
.xb6_c00483{left:311.066667pt;}
.x144_c00483{left:312.133333pt;}
.xa2_c00483{left:313.333333pt;}
.xbf_c00483{left:314.533333pt;}
.xe2_c00483{left:316.400000pt;}
.xc6_c00483{left:318.400000pt;}
.xd4_c00483{left:320.266667pt;}
.x120_c00483{left:321.333333pt;}
.xdc_c00483{left:323.866667pt;}
.xf0_c00483{left:324.800000pt;}
.x7_c00483{left:326.933333pt;}
.x145_c00483{left:329.066667pt;}
.xb7_c00483{left:330.000000pt;}
.x10a_c00483{left:332.000000pt;}
.x132_c00483{left:333.466667pt;}
.xa3_c00483{left:334.400000pt;}
.xb0_c00483{left:335.466667pt;}
.xc7_c00483{left:336.933333pt;}
.xcd_c00483{left:339.066667pt;}
.xfd_c00483{left:340.800000pt;}
.xe5_c00483{left:342.933333pt;}
.x133_c00483{left:344.400000pt;}
.xdd_c00483{left:346.533333pt;}
.x17_c00483{left:347.466667pt;}
.xeb_c00483{left:348.666667pt;}
.x8_c00483{left:350.666667pt;}
.x10e_c00483{left:352.533333pt;}
.x13a_c00483{left:353.600000pt;}
.x107_c00483{left:354.666667pt;}
.xf1_c00483{left:356.133333pt;}
.xbc_c00483{left:357.733333pt;}
.xf6_c00483{left:359.466667pt;}
.x102_c00483{left:361.200000pt;}
.x134_c00483{left:362.266667pt;}
.x115_c00483{left:363.466667pt;}
.xc8_c00483{left:366.400000pt;}
.xa4_c00483{left:367.733333pt;}
.xce_c00483{left:368.800000pt;}
.x138_c00483{left:370.400000pt;}
.xb1_c00483{left:371.333333pt;}
.x12a_c00483{left:372.533333pt;}
.xc0_c00483{left:374.000000pt;}
.x9_c00483{left:376.266667pt;}
.x112_c00483{left:378.266667pt;}
.x10f_c00483{left:380.400000pt;}
.x12f_c00483{left:382.000000pt;}
.xaa_c00483{left:384.133333pt;}
.xe7_c00483{left:385.466667pt;}
.x103_c00483{left:386.533333pt;}
.xc9_c00483{left:387.466667pt;}
.x2_c00483{left:388.800000pt;}
.xb2_c00483{left:390.266667pt;}
.x13c_c00483{left:391.866667pt;}
.xf4_c00483{left:392.933333pt;}
.xb8_c00483{left:394.000000pt;}
.xc1_c00483{left:395.733333pt;}
.xcf_c00483{left:397.333333pt;}
.xa_c00483{left:398.666667pt;}
.x11c_c00483{left:399.600000pt;}
.xe8_c00483{left:402.400000pt;}
.x13b_c00483{left:403.866667pt;}
.x108_c00483{left:405.600000pt;}
.x12c_c00483{left:406.666667pt;}
.x11a_c00483{left:408.000000pt;}
.xf7_c00483{left:410.933333pt;}
.xa5_c00483{left:412.266667pt;}
.xb9_c00483{left:414.133333pt;}
.xec_c00483{left:416.133333pt;}
.x131_c00483{left:418.266667pt;}
.x116_c00483{left:419.466667pt;}
.xf5_c00483{left:422.400000pt;}
.x18_c00483{left:424.533333pt;}
.xe9_c00483{left:425.733333pt;}
.x117_c00483{left:428.133333pt;}
.xde_c00483{left:430.400000pt;}
.xb_c00483{left:432.266667pt;}
.xed_c00483{left:433.733333pt;}
.x121_c00483{left:434.933333pt;}
.xc2_c00483{left:436.400000pt;}
.xf8_c00483{left:437.866667pt;}
.xab_c00483{left:439.200000pt;}
.x10b_c00483{left:440.800000pt;}
.x128_c00483{left:442.000000pt;}
.xb3_c00483{left:444.400000pt;}
.xc3_c00483{left:446.266667pt;}
.x142_c00483{left:447.466667pt;}
.xda_c00483{left:449.733333pt;}
.x122_c00483{left:451.200000pt;}
.x100_c00483{left:452.400000pt;}
.xd0_c00483{left:453.600000pt;}
.xc_c00483{left:454.666667pt;}
.xba_c00483{left:456.400000pt;}
.x113_c00483{left:459.600000pt;}
.x15a_c00483{left:477.733333pt;}
.x146_c00483{left:478.666667pt;}
.x93_c00483{left:479.600000pt;}
.x82_c00483{left:481.866667pt;}
.x5e_c00483{left:482.933333pt;}
.x44_c00483{left:483.866667pt;}
.xd_c00483{left:486.000000pt;}
.x88_c00483{left:494.000000pt;}
.x19_c00483{left:495.600000pt;}
.x7f_c00483{left:497.066667pt;}
.x61_c00483{left:498.000000pt;}
.x37_c00483{left:499.733333pt;}
.x1c_c00483{left:501.466667pt;}
.x14d_c00483{left:503.333333pt;}
.x9b_c00483{left:505.333333pt;}
.x2b_c00483{left:506.933333pt;}
.x152_c00483{left:509.600000pt;}
.x147_c00483{left:510.666667pt;}
.x15e_c00483{left:511.866667pt;}
.x84_c00483{left:513.866667pt;}
.x62_c00483{left:515.200000pt;}
.x159_c00483{left:517.200000pt;}
.x1d_c00483{left:518.400000pt;}
.x41_c00483{left:519.733333pt;}
.x5f_c00483{left:521.066667pt;}
.x85_c00483{left:523.466667pt;}
.xe_c00483{left:524.400000pt;}
.x54_c00483{left:526.000000pt;}
.x148_c00483{left:527.333333pt;}
.x38_c00483{left:528.800000pt;}
.x78_c00483{left:530.133333pt;}
.x4b_c00483{left:531.600000pt;}
.x6f_c00483{left:533.066667pt;}
.x50_c00483{left:535.066667pt;}
.x22_c00483{left:537.066667pt;}
.x1a_c00483{left:539.466667pt;}
.x39_c00483{left:541.600000pt;}
.x8f_c00483{left:542.666667pt;}
.x79_c00483{left:544.800000pt;}
.xf_c00483{left:546.533333pt;}
.x14b_c00483{left:548.400000pt;}
.x51_c00483{left:550.133333pt;}
.x9c_c00483{left:551.066667pt;}
.x52_c00483{left:552.400000pt;}
.x10_c00483{left:554.800000pt;}
.x14e_c00483{left:556.133333pt;}
.x1e_c00483{left:557.066667pt;}
.x45_c00483{left:558.400000pt;}
.x73_c00483{left:560.666667pt;}
.x11_c00483{left:566.000000pt;}
.x23_c00483{left:568.800000pt;}
.x30_c00483{left:570.533333pt;}
.x5b_c00483{left:573.466667pt;}
.x7a_c00483{left:574.933333pt;}
.x149_c00483{left:576.266667pt;}
.x14c_c00483{left:577.200000pt;}
.x4c_c00483{left:578.266667pt;}
.x2c_c00483{left:579.200000pt;}
.x155_c00483{left:580.933333pt;}
.x31_c00483{left:582.666667pt;}
.x9d_c00483{left:583.733333pt;}
.x5c_c00483{left:584.933333pt;}
.x94_c00483{left:585.866667pt;}
.x24_c00483{left:587.066667pt;}
.x7b_c00483{left:591.866667pt;}
.x70_c00483{left:592.933333pt;}
.x46_c00483{left:594.533333pt;}
.x69_c00483{left:596.400000pt;}
.x3a_c00483{left:598.266667pt;}
.x5d_c00483{left:600.000000pt;}
.x25_c00483{left:601.200000pt;}
.x4d_c00483{left:602.533333pt;}
.x156_c00483{left:605.200000pt;}
.x15c_c00483{left:606.666667pt;}
.x3b_c00483{left:607.600000pt;}
.x53_c00483{left:610.000000pt;}
.x15b_c00483{left:611.333333pt;}
.x89_c00483{left:612.400000pt;}
.x1f_c00483{left:613.333333pt;}
.x7c_c00483{left:615.866667pt;}
.x4e_c00483{left:618.800000pt;}
.x2d_c00483{left:620.533333pt;}
.x7d_c00483{left:622.933333pt;}
.x74_c00483{left:624.000000pt;}
.x60_c00483{left:625.333333pt;}
.x26_c00483{left:626.800000pt;}
.x6a_c00483{left:628.133333pt;}
.x55_c00483{left:633.200000pt;}
.x80_c00483{left:634.933333pt;}
.x95_c00483{left:636.800000pt;}
.x83_c00483{left:637.733333pt;}
.x8a_c00483{left:638.666667pt;}
.x12_c00483{left:640.266667pt;}
.x14a_c00483{left:641.866667pt;}
.x6b_c00483{left:643.200000pt;}
.x3c_c00483{left:644.133333pt;}
.x7e_c00483{left:645.066667pt;}
.x8c_c00483{left:646.266667pt;}
.x86_c00483{left:647.333333pt;}
.x32_c00483{left:648.933333pt;}
.x75_c00483{left:654.400000pt;}
.x87_c00483{left:655.333333pt;}
.x63_c00483{left:657.866667pt;}
.x5a_c00483{left:659.333333pt;}
.x14f_c00483{left:660.400000pt;}
.x33_c00483{left:661.733333pt;}
.x42_c00483{left:663.866667pt;}
.x3d_c00483{left:665.200000pt;}
.x20_c00483{left:667.733333pt;}
.x153_c00483{left:669.600000pt;}
.x96_c00483{left:671.733333pt;}
.x2e_c00483{left:673.333333pt;}
.x4f_c00483{left:674.533333pt;}
.x64_c00483{left:675.466667pt;}
.x154_c00483{left:676.666667pt;}
.x27_c00483{left:677.733333pt;}
.x6c_c00483{left:679.600000pt;}
.x150_c00483{left:681.333333pt;}
.x56_c00483{left:683.066667pt;}
.x28_c00483{left:684.800000pt;}
.x47_c00483{left:688.000000pt;}
.x97_c00483{left:690.933333pt;}
.x29_c00483{left:694.133333pt;}
.x98_c00483{left:697.333333pt;}
.x2a_c00483{left:700.533333pt;}
.x6d_c00483{left:702.000000pt;}
.x66_c00483{left:703.866667pt;}
.x90_c00483{left:705.333333pt;}
.x76_c00483{left:708.133333pt;}
.x15d_c00483{left:711.333333pt;}
.x57_c00483{left:712.800000pt;}
.x34_c00483{left:713.866667pt;}
.x99_c00483{left:715.600000pt;}
.x48_c00483{left:717.466667pt;}
.x3e_c00483{left:719.200000pt;}
.x151_c00483{left:720.933333pt;}
.x157_c00483{left:722.400000pt;}
.x58_c00483{left:723.333333pt;}
.x35_c00483{left:724.400000pt;}
.x65_c00483{left:725.333333pt;}
.x71_c00483{left:727.333333pt;}
.x43_c00483{left:729.466667pt;}
.x3f_c00483{left:730.666667pt;}
.x2f_c00483{left:731.866667pt;}
.x91_c00483{left:732.800000pt;}
.x49_c00483{left:736.666667pt;}
.x9e_c00483{left:738.533333pt;}
.x13_c00483{left:739.733333pt;}
.x21_c00483{left:741.600000pt;}
.x59_c00483{left:743.466667pt;}
.x72_c00483{left:747.200000pt;}
.x158_c00483{left:748.266667pt;}
.x81_c00483{left:749.333333pt;}
.x77_c00483{left:752.000000pt;}
.x67_c00483{left:753.200000pt;}
.x40_c00483{left:755.600000pt;}
.x8d_c00483{left:757.066667pt;}
.x6e_c00483{left:760.266667pt;}
.x36_c00483{left:761.866667pt;}
.x92_c00483{left:763.466667pt;}
.x9a_c00483{left:766.133333pt;}
.x4a_c00483{left:767.333333pt;}
.x8e_c00483{left:768.933333pt;}
.x8b_c00483{left:770.800000pt;}
.x1b_c00483{left:773.733333pt;}
.x68_c00483{left:780.666667pt;}
.x14_c00483{left:782.266667pt;}
}





/* 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_c00484 {
    display:none;
  }
  .loading-indicator_c00484.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00484 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_c00484 { 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_c00484" -> "#page-container .classname_c00484")
 */
.pf_c00484 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00484 { /* 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_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00484 { /* 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_c00484 { /* 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_c00484 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00484 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00484 {overflow:visible;}
  }
}
.c_c00484 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00484 { /* 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_c00484:after { /* webkit #35443 */
  content: '';
}
.t_c00484:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00484 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 */
}
.__c00484 { /* 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_c00484 { /* info for Javascript */
  display:none;
}
.l_c00484 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00484 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00484 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00484: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_c00484 {
    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_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00484.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_c00484 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00484{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00484;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00484{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m84_c00484{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m53_c00484{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mef_c00484{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m112_c00484{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m48_c00484{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00484{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.md7_c00484{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00484{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00484{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.md6_c00484{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mca_c00484{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00484{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.md8_c00484{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00484{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m82_c00484{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00484{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00484{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m18_c00484{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00484{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00484{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00484{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00484{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m81_c00484{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m98_c00484{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m105_c00484{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.me7_c00484{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m134_c00484{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00484{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00484{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m89_c00484{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mda_c00484{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00484{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00484{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00484{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m92_c00484{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m86_c00484{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m99_c00484{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.me_c00484{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00484{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m45_c00484{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00484{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00484{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m16_c00484{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00484{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00484{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00484{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00484{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.md1_c00484{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00484{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00484{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00484{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00484{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m34_c00484{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m49_c00484{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m104_c00484{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00484{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m121_c00484{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m51_c00484{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00484{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00484{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00484{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00484{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00484{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00484{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00484{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mc_c00484{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m26_c00484{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m129_c00484{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00484{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m83_c00484{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00484{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00484{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m43_c00484{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m12_c00484{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m44_c00484{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m55_c00484{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00484{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m7_c00484{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00484{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00484{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m24_c00484{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m52_c00484{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00484{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m85_c00484{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00484{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m108_c00484{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00484{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m8_c00484{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m117_c00484{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00484{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m110_c00484{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m132_c00484{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00484{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m39_c00484{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mec_c00484{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m56_c00484{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me9_c00484{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5_c00484{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m88_c00484{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00484{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00484{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m58_c00484{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00484{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m47_c00484{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m6_c00484{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m77_c00484{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m59_c00484{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00484{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m17_c00484{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00484{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m19_c00484{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00484{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00484{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m20_c00484{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.me5_c00484{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m107_c00484{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me4_c00484{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m79_c00484{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m50_c00484{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00484{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m111_c00484{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m36_c00484{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00484{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m57_c00484{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00484{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mb_c00484{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m122_c00484{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m30_c00484{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m31_c00484{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m72_c00484{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m100_c00484{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m23_c00484{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00484{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00484{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9_c00484{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m64_c00484{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00484{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00484{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m109_c00484{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00484{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md5_c00484{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00484{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m41_c00484{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mff_c00484{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00484{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00484{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00484{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m27_c00484{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m22_c00484{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00484{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m101_c00484{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m21_c00484{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00484{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00484{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00484{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mad_c00484{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00484{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m29_c00484{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m95_c00484{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.md_c00484{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m60_c00484{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00484{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00484{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00484{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00484{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00484{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m46_c00484{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.ma_c00484{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m37_c00484{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m14_c00484{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00484{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m113_c00484{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m97_c00484{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00484{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m120_c00484{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m65_c00484{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m73_c00484{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.maa_c00484{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00484{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m66_c00484{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m61_c00484{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m33_c00484{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.md9_c00484{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m38_c00484{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m96_c00484{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m70_c00484{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00484{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00484{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00484{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m102_c00484{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mab_c00484{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00484{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00484{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m68_c00484{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00484{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md0_c00484{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00484{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00484{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m103_c00484{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mf_c00484{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00484{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00484{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00484{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m10_c00484{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00484{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m25_c00484{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m32_c00484{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m125_c00484{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00484{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00484{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00484{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m40_c00484{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m28_c00484{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.med_c00484{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00484{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m87_c00484{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m15_c00484{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00484{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m116_c00484{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00484{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00484{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00484{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m13_c00484{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m35_c00484{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00484{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00484{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m63_c00484{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m75_c00484{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m119_c00484{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m42_c00484{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00484{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00484{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m128_c00484{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m115_c00484{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m91_c00484{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00484{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m76_c00484{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00484{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00484{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m123_c00484{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.md4_c00484{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m130_c00484{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00484{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md2_c00484{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00484{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m11_c00484{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m54_c00484{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m127_c00484{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00484{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m71_c00484{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00484{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m118_c00484{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m93_c00484{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mac_c00484{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m131_c00484{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00484{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m62_c00484{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00484{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);}
.mba_c00484{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m90_c00484{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00484{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00484{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00484{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00484{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m114_c00484{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00484{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m124_c00484{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00484{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00484{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00484{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m74_c00484{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00484{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00484{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00484{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.md3_c00484{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00484{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00484{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00484{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.maf_c00484{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m78_c00484{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me6_c00484{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m80_c00484{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m94_c00484{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00484{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00484{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.mae_c00484{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me2_c00484{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m126_c00484{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00484{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m133_c00484{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.me1_c00484{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me0_c00484{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.m67_c00484{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mce_c00484{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00484{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.mee_c00484{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m106_c00484{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.meb_c00484{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337000,0.000000,0.000000,0.250000,0,0);}
.me8_c00484{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m135_c00484{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.mde_c00484{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00484{transform:matrix(0.476500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476500,0.000000,0.000000,0.250000,0,0);}
.me3_c00484{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00484{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.mea_c00484{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls1_c00484{letter-spacing:0.000000px;}
.ls0_c00484{letter-spacing:66.750000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{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__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00484{word-spacing:-93.750000px;}
.ws3_c00484{word-spacing:-18.000000px;}
.wsf_c00484{word-spacing:-14.196429px;}
.ws13_c00484{word-spacing:-11.875000px;}
.ws4_c00484{word-spacing:-7.219542px;}
.ws0_c00484{word-spacing:-7.063932px;}
.ws14_c00484{word-spacing:-5.333333px;}
.ws5_c00484{word-spacing:-4.577689px;}
.ws2_c00484{word-spacing:-1.944444px;}
.ws1_c00484{word-spacing:-1.433121px;}
.ws15_c00484{word-spacing:0.000000px;}
.ws12_c00484{word-spacing:4.742515px;}
.ws6_c00484{word-spacing:7.738854px;}
.wsa_c00484{word-spacing:16.521490px;}
.ws9_c00484{word-spacing:19.959885px;}
.ws7_c00484{word-spacing:19.994638px;}
.wse_c00484{word-spacing:23.211796px;}
.wsc_c00484{word-spacing:34.642857px;}
.wsd_c00484{word-spacing:36.000000px;}
.wsb_c00484{word-spacing:66.315789px;}
.ws11_c00484{word-spacing:74.722222px;}
.ws10_c00484{word-spacing:854.583333px;}
._0_c00484{margin-left:-66.750000px;}
._2_c00484{width:66.750000px;}
._3_c00484{width:99.605263px;}
._1_c00484{width:218.214286px;}
.fc0_c00484{color:transparent;}
.fs9_c00484{font-size:24.000000px;}
.fs6_c00484{font-size:30.000000px;}
.fs8_c00484{font-size:42.000000px;}
.fs7_c00484{font-size:48.000000px;}
.fs5_c00484{font-size:54.000000px;}
.fs3_c00484{font-size:60.000000px;}
.fs2_c00484{font-size:66.000000px;}
.fs4_c00484{font-size:72.000000px;}
.fs0_c00484{font-size:108.000000px;}
.fs1_c00484{font-size:132.000000px;}
.y0_c00484{bottom:0.000000px;}
.y37_c00484{bottom:5.700000px;}
.y70_c00484{bottom:178.500000px;}
.y6f_c00484{bottom:196.200000px;}
.y36_c00484{bottom:198.000000px;}
.y35_c00484{bottom:209.850000px;}
.y6e_c00484{bottom:223.950000px;}
.y34_c00484{bottom:224.700000px;}
.y6d_c00484{bottom:238.350000px;}
.y33_c00484{bottom:239.100000px;}
.y6c_c00484{bottom:252.750000px;}
.y32_c00484{bottom:253.500000px;}
.y6b_c00484{bottom:267.150000px;}
.y31_c00484{bottom:267.450000px;}
.y6a_c00484{bottom:281.550000px;}
.y30_c00484{bottom:281.850000px;}
.y69_c00484{bottom:295.950000px;}
.y2f_c00484{bottom:297.750000px;}
.y2e_c00484{bottom:318.300000px;}
.y2d_c00484{bottom:336.300000px;}
.y2c_c00484{bottom:354.000000px;}
.y68_c00484{bottom:354.750000px;}
.y2b_c00484{bottom:371.700000px;}
.y67_c00484{bottom:372.750000px;}
.y2a_c00484{bottom:389.700000px;}
.y66_c00484{bottom:390.750000px;}
.y29_c00484{bottom:407.400000px;}
.y65_c00484{bottom:408.450000px;}
.y28_c00484{bottom:425.100000px;}
.y64_c00484{bottom:426.450000px;}
.y63_c00484{bottom:444.150000px;}
.y27_c00484{bottom:447.150000px;}
.y62_c00484{bottom:461.850000px;}
.y26_c00484{bottom:464.850000px;}
.y61_c00484{bottom:479.850000px;}
.y25_c00484{bottom:482.550000px;}
.y60_c00484{bottom:497.400000px;}
.y24_c00484{bottom:500.550000px;}
.y5f_c00484{bottom:515.400000px;}
.y23_c00484{bottom:518.250000px;}
.y5e_c00484{bottom:533.100000px;}
.y22_c00484{bottom:535.950000px;}
.y5d_c00484{bottom:551.100000px;}
.y21_c00484{bottom:553.650000px;}
.y5c_c00484{bottom:571.650000px;}
.y20_c00484{bottom:573.450000px;}
.y5b_c00484{bottom:586.800000px;}
.y1f_c00484{bottom:589.350000px;}
.y5a_c00484{bottom:603.900000px;}
.y1e_c00484{bottom:611.250000px;}
.y59_c00484{bottom:621.600000px;}
.y1d_c00484{bottom:628.950000px;}
.y58_c00484{bottom:639.600000px;}
.y57_c00484{bottom:657.300000px;}
.y1c_c00484{bottom:659.850000px;}
.y56_c00484{bottom:675.000000px;}
.y1b_c00484{bottom:677.850000px;}
.y55_c00484{bottom:693.000000px;}
.y1a_c00484{bottom:704.550000px;}
.y54_c00484{bottom:710.700000px;}
.y19_c00484{bottom:722.550000px;}
.y53_c00484{bottom:728.700000px;}
.y18_c00484{bottom:740.550000px;}
.y52_c00484{bottom:746.400000px;}
.y17_c00484{bottom:758.550000px;}
.y51_c00484{bottom:764.100000px;}
.y16_c00484{bottom:776.550000px;}
.y50_c00484{bottom:781.800000px;}
.y15_c00484{bottom:793.800000px;}
.y4f_c00484{bottom:799.800000px;}
.y4e_c00484{bottom:817.500000px;}
.y14_c00484{bottom:820.050000px;}
.y4d_c00484{bottom:835.500000px;}
.y13_c00484{bottom:837.750000px;}
.y4c_c00484{bottom:853.200000px;}
.y12_c00484{bottom:855.750000px;}
.y11_c00484{bottom:873.750000px;}
.y48_c00484{bottom:882.300000px;}
.y4a_c00484{bottom:884.100000px;}
.y10_c00484{bottom:891.750000px;}
.y49_c00484{bottom:896.400000px;}
.y4b_c00484{bottom:898.500000px;}
.yf_c00484{bottom:909.450000px;}
.y47_c00484{bottom:911.100000px;}
.y46_c00484{bottom:926.250000px;}
.ye_c00484{bottom:927.150000px;}
.y45_c00484{bottom:939.900000px;}
.yd_c00484{bottom:945.150000px;}
.y44_c00484{bottom:954.900000px;}
.yc_c00484{bottom:962.850000px;}
.y43_c00484{bottom:969.600000px;}
.yb_c00484{bottom:980.550000px;}
.y42_c00484{bottom:984.300000px;}
.y41_c00484{bottom:997.200000px;}
.ya_c00484{bottom:998.250000px;}
.y40_c00484{bottom:1011.300000px;}
.y9_c00484{bottom:1015.950000px;}
.y3f_c00484{bottom:1026.750000px;}
.y8_c00484{bottom:1033.950000px;}
.y3e_c00484{bottom:1039.650000px;}
.y7_c00484{bottom:1051.650000px;}
.y3d_c00484{bottom:1053.900000px;}
.y3c_c00484{bottom:1069.050000px;}
.y6_c00484{bottom:1069.650000px;}
.y3b_c00484{bottom:1083.150000px;}
.y5_c00484{bottom:1086.900000px;}
.y3a_c00484{bottom:1098.300000px;}
.y4_c00484{bottom:1104.900000px;}
.y39_c00484{bottom:1112.400000px;}
.y3_c00484{bottom:1122.900000px;}
.y38_c00484{bottom:1127.850000px;}
.y2_c00484{bottom:1142.700000px;}
.y1_c00484{bottom:1149.900000px;}
.hb_c00484{height:24.000000px;}
.h8_c00484{height:30.000000px;}
.ha_c00484{height:42.000000px;}
.h9_c00484{height:48.000000px;}
.h7_c00484{height:54.000000px;}
.h5_c00484{height:60.000000px;}
.h4_c00484{height:66.000000px;}
.h6_c00484{height:72.000000px;}
.h2_c00484{height:108.000000px;}
.h3_c00484{height:132.000000px;}
.h1_c00484{height:1269.000000px;}
.h0_c00484{height:1269.359985px;}
.w0_c00484{width:958.320007px;}
.w1_c00484{width:958.500000px;}
.x0_c00484{left:0.000000px;}
.x5c_c00484{left:79.200000px;}
.xa6_c00484{left:80.850000px;}
.x6b_c00484{left:84.300000px;}
.x89_c00484{left:85.350000px;}
.x4_c00484{left:97.200000px;}
.x23_c00484{left:99.000000px;}
.x44_c00484{left:100.050000px;}
.x64_c00484{left:101.250000px;}
.x6a_c00484{left:102.300000px;}
.x75_c00484{left:103.650000px;}
.x7a_c00484{left:112.050000px;}
.x9c_c00484{left:113.400000px;}
.x30_c00484{left:118.950000px;}
.x72_c00484{left:121.650000px;}
.x48_c00484{left:123.450000px;}
.x6e_c00484{left:124.500000px;}
.x67_c00484{left:127.800000px;}
.x6f_c00484{left:128.850000px;}
.x34_c00484{left:130.350000px;}
.x8a_c00484{left:132.450000px;}
.x3b_c00484{left:134.250000px;}
.xa2_c00484{left:136.500000px;}
.x5a_c00484{left:137.850000px;}
.xb_c00484{left:139.350000px;}
.x5_c00484{left:140.400000px;}
.x5d_c00484{left:142.950000px;}
.x24_c00484{left:144.750000px;}
.x76_c00484{left:146.850000px;}
.x60_c00484{left:148.200000px;}
.x16_c00484{left:150.900000px;}
.x8e_c00484{left:152.850000px;}
.x6c_c00484{left:154.200000px;}
.x2b_c00484{left:156.000000px;}
.x99_c00484{left:157.050000px;}
.x25_c00484{left:158.100000px;}
.x45_c00484{left:160.200000px;}
.x7c_c00484{left:161.400000px;}
.x31_c00484{left:162.900000px;}
.x12_c00484{left:165.000000px;}
.xc_c00484{left:166.350000px;}
.x85_c00484{left:168.150000px;}
.x4e_c00484{left:170.100000px;}
.x82_c00484{left:173.850000px;}
.x1c_c00484{left:176.700000px;}
.x3f_c00484{left:178.050000px;}
.x13_c00484{left:185.100000px;}
.x9d_c00484{left:186.450000px;}
.x56_c00484{left:189.150000px;}
.x26_c00484{left:190.500000px;}
.x87_c00484{left:192.750000px;}
.x68_c00484{left:194.400000px;}
.x4f_c00484{left:195.600000px;}
.x35_c00484{left:196.950000px;}
.x40_c00484{left:198.600000px;}
.x98_c00484{left:199.800000px;}
.xd_c00484{left:201.600000px;}
.x6_c00484{left:203.400000px;}
.x49_c00484{left:206.700000px;}
.x88_c00484{left:208.950000px;}
.x8f_c00484{left:210.750000px;}
.x39_c00484{left:214.650000px;}
.x80_c00484{left:217.050000px;}
.x7d_c00484{left:218.250000px;}
.x90_c00484{left:220.500000px;}
.x84_c00484{left:222.450000px;}
.x86_c00484{left:224.250000px;}
.x57_c00484{left:226.950000px;}
.x2c_c00484{left:228.750000px;}
.x4a_c00484{left:230.100000px;}
.x77_c00484{left:231.450000px;}
.x27_c00484{left:234.450000px;}
.x61_c00484{left:236.700000px;}
.x17_c00484{left:237.750000px;}
.x41_c00484{left:239.700000px;}
.x50_c00484{left:241.650000px;}
.x7_c00484{left:243.000000px;}
.x3c_c00484{left:245.550000px;}
.x70_c00484{left:247.350000px;}
.x54_c00484{left:248.550000px;}
.x1d_c00484{left:250.500000px;}
.xe_c00484{left:251.700000px;}
.x81_c00484{left:252.750000px;}
.x96_c00484{left:254.700000px;}
.x7b_c00484{left:257.850000px;}
.x93_c00484{left:259.200000px;}
.x46_c00484{left:260.250000px;}
.x5e_c00484{left:261.300000px;}
.x1e_c00484{left:263.400000px;}
.xa3_c00484{left:265.650000px;}
.x83_c00484{left:270.000000px;}
.x32_c00484{left:271.200000px;}
.xf_c00484{left:272.550000px;}
.x2d_c00484{left:275.550000px;}
.x14_c00484{left:277.650000px;}
.x28_c00484{left:279.450000px;}
.x3a_c00484{left:282.300000px;}
.x9a_c00484{left:284.550000px;}
.xa4_c00484{left:286.950000px;}
.x62_c00484{left:288.900000px;}
.x8_c00484{left:290.550000px;}
.x7e_c00484{left:292.350000px;}
.x78_c00484{left:294.150000px;}
.x18_c00484{left:295.350000px;}
.x1f_c00484{left:297.300000px;}
.x51_c00484{left:300.000000px;}
.x9e_c00484{left:301.050000px;}
.x42_c00484{left:302.700000px;}
.x69_c00484{left:303.750000px;}
.x63_c00484{left:305.100000px;}
.x36_c00484{left:306.750000px;}
.x10_c00484{left:308.250000px;}
.xa5_c00484{left:309.450000px;}
.x7f_c00484{left:311.100000px;}
.x29_c00484{left:313.350000px;}
.x19_c00484{left:315.450000px;}
.x37_c00484{left:317.850000px;}
.x73_c00484{left:319.650000px;}
.x1_c00484{left:322.200000px;}
.x9f_c00484{left:323.400000px;}
.x43_c00484{left:325.800000px;}
.x3d_c00484{left:329.400000px;}
.x1a_c00484{left:331.950000px;}
.x58_c00484{left:334.650000px;}
.x33_c00484{left:336.600000px;}
.x5f_c00484{left:337.650000px;}
.x91_c00484{left:339.600000px;}
.x4b_c00484{left:340.950000px;}
.x94_c00484{left:342.150000px;}
.x20_c00484{left:344.850000px;}
.x8d_c00484{left:346.200000px;}
.x65_c00484{left:347.400000px;}
.x9b_c00484{left:348.450000px;}
.xa0_c00484{left:350.100000px;}
.xa7_c00484{left:351.600000px;}
.x59_c00484{left:358.050000px;}
.x2e_c00484{left:359.100000px;}
.x47_c00484{left:360.750000px;}
.x21_c00484{left:361.800000px;}
.x4c_c00484{left:364.050000px;}
.x9_c00484{left:365.400000px;}
.x55_c00484{left:367.800000px;}
.x2a_c00484{left:369.450000px;}
.x8b_c00484{left:370.800000px;}
.x3e_c00484{left:371.850000px;}
.x38_c00484{left:373.350000px;}
.x66_c00484{left:374.400000px;}
.xa1_c00484{left:379.200000px;}
.x4d_c00484{left:381.000000px;}
.x74_c00484{left:382.650000px;}
.x92_c00484{left:385.200000px;}
.xa_c00484{left:387.000000px;}
.x22_c00484{left:388.050000px;}
.x11_c00484{left:390.000000px;}
.x52_c00484{left:391.800000px;}
.x6d_c00484{left:393.450000px;}
.x1b_c00484{left:394.650000px;}
.x97_c00484{left:396.300000px;}
.x15_c00484{left:398.550000px;}
.x71_c00484{left:400.650000px;}
.x53_c00484{left:402.300000px;}
.x2f_c00484{left:404.100000px;}
.x95_c00484{left:407.250000px;}
.x79_c00484{left:409.800000px;}
.x5b_c00484{left:411.450000px;}
.x8c_c00484{left:415.800000px;}
.xea_c00484{left:431.250000px;}
.xeb_c00484{left:437.700000px;}
.x13b_c00484{left:439.500000px;}
.x13f_c00484{left:441.000000px;}
.x148_c00484{left:442.200000px;}
.xb2_c00484{left:448.500000px;}
.xdd_c00484{left:450.300000px;}
.x125_c00484{left:451.350000px;}
.x138_c00484{left:454.650000px;}
.xee_c00484{left:456.600000px;}
.x108_c00484{left:457.650000px;}
.x111_c00484{left:459.150000px;}
.x149_c00484{left:461.250000px;}
.xa8_c00484{left:462.900000px;}
.xd6_c00484{left:464.700000px;}
.xe1_c00484{left:465.900000px;}
.x140_c00484{left:470.550000px;}
.xc9_c00484{left:473.550000px;}
.x119_c00484{left:476.100000px;}
.x11f_c00484{left:477.900000px;}
.x139_c00484{left:479.100000px;}
.xfd_c00484{left:481.200000px;}
.x126_c00484{left:483.000000px;}
.xd0_c00484{left:484.950000px;}
.xd7_c00484{left:487.050000px;}
.x12f_c00484{left:488.550000px;}
.xdf_c00484{left:489.600000px;}
.x135_c00484{left:490.800000px;}
.xc2_c00484{left:495.450000px;}
.xcd_c00484{left:496.800000px;}
.x109_c00484{left:498.750000px;}
.xef_c00484{left:500.100000px;}
.x103_c00484{left:501.300000px;}
.x11a_c00484{left:503.400000px;}
.x113_c00484{left:504.450000px;}
.xe2_c00484{left:508.050000px;}
.xd1_c00484{left:510.450000px;}
.x143_c00484{left:512.850000px;}
.xca_c00484{left:515.700000px;}
.x12c_c00484{left:518.700000px;}
.xfe_c00484{left:520.350000px;}
.xfb_c00484{left:522.750000px;}
.xdb_c00484{left:524.550000px;}
.xec_c00484{left:525.900000px;}
.xa9_c00484{left:526.950000px;}
.xf6_c00484{left:528.450000px;}
.xd8_c00484{left:530.250000px;}
.x144_c00484{left:531.600000px;}
.x136_c00484{left:534.750000px;}
.xf0_c00484{left:536.100000px;}
.xe3_c00484{left:537.600000px;}
.x12a_c00484{left:539.700000px;}
.xf7_c00484{left:541.050000px;}
.x114_c00484{left:543.000000px;}
.x10a_c00484{left:544.200000px;}
.xaa_c00484{left:546.450000px;}
.x134_c00484{left:548.700000px;}
.xb6_c00484{left:551.100000px;}
.x11b_c00484{left:553.800000px;}
.x13c_c00484{left:555.000000px;}
.xd2_c00484{left:557.550000px;}
.xe4_c00484{left:558.750000px;}
.x14a_c00484{left:560.250000px;}
.xff_c00484{left:562.050000px;}
.xab_c00484{left:564.450000px;}
.xc3_c00484{left:565.950000px;}
.x121_c00484{left:568.350000px;}
.x12b_c00484{left:571.800000px;}
.x100_c00484{left:573.150000px;}
.x12d_c00484{left:574.200000px;}
.x127_c00484{left:575.250000px;}
.xc4_c00484{left:577.500000px;}
.x10b_c00484{left:579.150000px;}
.x104_c00484{left:580.500000px;}
.xcb_c00484{left:582.300000px;}
.xe0_c00484{left:585.300000px;}
.xed_c00484{left:586.350000px;}
.xe5_c00484{left:587.550000px;}
.xc5_c00484{left:591.600000px;}
.xac_c00484{left:592.950000px;}
.x13d_c00484{left:594.300000px;}
.x11c_c00484{left:595.500000px;}
.xf8_c00484{left:597.600000px;}
.xb7_c00484{left:599.400000px;}
.x12e_c00484{left:600.450000px;}
.x122_c00484{left:603.300000px;}
.xb8_c00484{left:606.600000px;}
.x101_c00484{left:608.850000px;}
.xdc_c00484{left:610.500000px;}
.x145_c00484{left:612.150000px;}
.xb9_c00484{left:613.800000px;}
.x13a_c00484{left:616.500000px;}
.xf1_c00484{left:618.450000px;}
.xba_c00484{left:620.700000px;}
.xd3_c00484{left:621.750000px;}
.x146_c00484{left:622.950000px;}
.x130_c00484{left:624.600000px;}
.xbb_c00484{left:628.200000px;}
.x137_c00484{left:629.550000px;}
.x107_c00484{left:631.200000px;}
.x110_c00484{left:634.350000px;}
.xbc_c00484{left:635.400000px;}
.x10e_c00484{left:637.350000px;}
.x10c_c00484{left:639.600000px;}
.xad_c00484{left:640.800000px;}
.xbd_c00484{left:642.300000px;}
.xf2_c00484{left:643.650000px;}
.x117_c00484{left:645.150000px;}
.x131_c00484{left:646.950000px;}
.xd9_c00484{left:648.750000px;}
.xbe_c00484{left:649.800000px;}
.x105_c00484{left:652.800000px;}
.xfc_c00484{left:654.900000px;}
.xcf_c00484{left:656.250000px;}
.xae_c00484{left:657.300000px;}
.x102_c00484{left:658.950000px;}
.x115_c00484{left:662.100000px;}
.xbf_c00484{left:664.200000px;}
.xcc_c00484{left:665.850000px;}
.x128_c00484{left:667.050000px;}
.x141_c00484{left:670.200000px;}
.xc0_c00484{left:671.400000px;}
.x123_c00484{left:675.600000px;}
.x10d_c00484{left:677.400000px;}
.xc1_c00484{left:679.350000px;}
.x14b_c00484{left:680.400000px;}
.x10f_c00484{left:685.650000px;}
.x11d_c00484{left:687.750000px;}
.xaf_c00484{left:688.950000px;}
.xf3_c00484{left:690.150000px;}
.x14c_c00484{left:693.750000px;}
.x133_c00484{left:695.700000px;}
.xb3_c00484{left:697.650000px;}
.xd4_c00484{left:699.450000px;}
.xe8_c00484{left:701.250000px;}
.xe6_c00484{left:702.750000px;}
.x129_c00484{left:706.350000px;}
.x120_c00484{left:708.300000px;}
.xf9_c00484{left:709.950000px;}
.xce_c00484{left:711.750000px;}
.x14e_c00484{left:712.950000px;}
.x124_c00484{left:715.200000px;}
.x112_c00484{left:716.850000px;}
.xb0_c00484{left:719.850000px;}
.xda_c00484{left:722.550000px;}
.xf4_c00484{left:725.100000px;}
.xb4_c00484{left:727.200000px;}
.xc6_c00484{left:728.850000px;}
.xe9_c00484{left:730.350000px;}
.xe7_c00484{left:731.550000px;}
.xfa_c00484{left:732.600000px;}
.x13e_c00484{left:733.650000px;}
.x106_c00484{left:736.350000px;}
.x147_c00484{left:737.700000px;}
.x142_c00484{left:740.400000px;}
.xf5_c00484{left:742.350000px;}
.x2_c00484{left:744.450000px;}
.x116_c00484{left:747.450000px;}
.xc8_c00484{left:749.250000px;}
.xc7_c00484{left:752.550000px;}
.xb1_c00484{left:753.750000px;}
.xb5_c00484{left:755.250000px;}
.xd5_c00484{left:756.600000px;}
.xde_c00484{left:757.800000px;}
.x132_c00484{left:758.850000px;}
.x118_c00484{left:760.050000px;}
.x11e_c00484{left:763.350000px;}
.x14d_c00484{left:773.250000px;}
.x3_c00484{left:781.500000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls1_c00484{letter-spacing:0.000000pt;}
.ls0_c00484{letter-spacing:59.333333pt;}
.ws8_c00484{word-spacing:-83.333333pt;}
.ws3_c00484{word-spacing:-16.000000pt;}
.wsf_c00484{word-spacing:-12.619048pt;}
.ws13_c00484{word-spacing:-10.555556pt;}
.ws4_c00484{word-spacing:-6.417370pt;}
.ws0_c00484{word-spacing:-6.279051pt;}
.ws14_c00484{word-spacing:-4.740741pt;}
.ws5_c00484{word-spacing:-4.069057pt;}
.ws2_c00484{word-spacing:-1.728395pt;}
.ws1_c00484{word-spacing:-1.273885pt;}
.ws15_c00484{word-spacing:0.000000pt;}
.ws12_c00484{word-spacing:4.215569pt;}
.ws6_c00484{word-spacing:6.878981pt;}
.wsa_c00484{word-spacing:14.685769pt;}
.ws9_c00484{word-spacing:17.742120pt;}
.ws7_c00484{word-spacing:17.773012pt;}
.wse_c00484{word-spacing:20.632708pt;}
.wsc_c00484{word-spacing:30.793651pt;}
.wsd_c00484{word-spacing:32.000000pt;}
.wsb_c00484{word-spacing:58.947368pt;}
.ws11_c00484{word-spacing:66.419753pt;}
.ws10_c00484{word-spacing:759.629630pt;}
._0_c00484{margin-left:-59.333333pt;}
._2_c00484{width:59.333333pt;}
._3_c00484{width:88.538012pt;}
._1_c00484{width:193.968254pt;}
.fs9_c00484{font-size:21.333333pt;}
.fs6_c00484{font-size:26.666667pt;}
.fs8_c00484{font-size:37.333333pt;}
.fs7_c00484{font-size:42.666667pt;}
.fs5_c00484{font-size:48.000000pt;}
.fs3_c00484{font-size:53.333333pt;}
.fs2_c00484{font-size:58.666667pt;}
.fs4_c00484{font-size:64.000000pt;}
.fs0_c00484{font-size:96.000000pt;}
.fs1_c00484{font-size:117.333333pt;}
.y0_c00484{bottom:0.000000pt;}
.y37_c00484{bottom:5.066667pt;}
.y70_c00484{bottom:158.666667pt;}
.y6f_c00484{bottom:174.400000pt;}
.y36_c00484{bottom:176.000000pt;}
.y35_c00484{bottom:186.533333pt;}
.y6e_c00484{bottom:199.066667pt;}
.y34_c00484{bottom:199.733333pt;}
.y6d_c00484{bottom:211.866667pt;}
.y33_c00484{bottom:212.533333pt;}
.y6c_c00484{bottom:224.666667pt;}
.y32_c00484{bottom:225.333333pt;}
.y6b_c00484{bottom:237.466667pt;}
.y31_c00484{bottom:237.733333pt;}
.y6a_c00484{bottom:250.266667pt;}
.y30_c00484{bottom:250.533333pt;}
.y69_c00484{bottom:263.066667pt;}
.y2f_c00484{bottom:264.666667pt;}
.y2e_c00484{bottom:282.933333pt;}
.y2d_c00484{bottom:298.933333pt;}
.y2c_c00484{bottom:314.666667pt;}
.y68_c00484{bottom:315.333333pt;}
.y2b_c00484{bottom:330.400000pt;}
.y67_c00484{bottom:331.333333pt;}
.y2a_c00484{bottom:346.400000pt;}
.y66_c00484{bottom:347.333333pt;}
.y29_c00484{bottom:362.133333pt;}
.y65_c00484{bottom:363.066667pt;}
.y28_c00484{bottom:377.866667pt;}
.y64_c00484{bottom:379.066667pt;}
.y63_c00484{bottom:394.800000pt;}
.y27_c00484{bottom:397.466667pt;}
.y62_c00484{bottom:410.533333pt;}
.y26_c00484{bottom:413.200000pt;}
.y61_c00484{bottom:426.533333pt;}
.y25_c00484{bottom:428.933333pt;}
.y60_c00484{bottom:442.133333pt;}
.y24_c00484{bottom:444.933333pt;}
.y5f_c00484{bottom:458.133333pt;}
.y23_c00484{bottom:460.666667pt;}
.y5e_c00484{bottom:473.866667pt;}
.y22_c00484{bottom:476.400000pt;}
.y5d_c00484{bottom:489.866667pt;}
.y21_c00484{bottom:492.133333pt;}
.y5c_c00484{bottom:508.133333pt;}
.y20_c00484{bottom:509.733333pt;}
.y5b_c00484{bottom:521.600000pt;}
.y1f_c00484{bottom:523.866667pt;}
.y5a_c00484{bottom:536.800000pt;}
.y1e_c00484{bottom:543.333333pt;}
.y59_c00484{bottom:552.533333pt;}
.y1d_c00484{bottom:559.066667pt;}
.y58_c00484{bottom:568.533333pt;}
.y57_c00484{bottom:584.266667pt;}
.y1c_c00484{bottom:586.533333pt;}
.y56_c00484{bottom:600.000000pt;}
.y1b_c00484{bottom:602.533333pt;}
.y55_c00484{bottom:616.000000pt;}
.y1a_c00484{bottom:626.266667pt;}
.y54_c00484{bottom:631.733333pt;}
.y19_c00484{bottom:642.266667pt;}
.y53_c00484{bottom:647.733333pt;}
.y18_c00484{bottom:658.266667pt;}
.y52_c00484{bottom:663.466667pt;}
.y17_c00484{bottom:674.266667pt;}
.y51_c00484{bottom:679.200000pt;}
.y16_c00484{bottom:690.266667pt;}
.y50_c00484{bottom:694.933333pt;}
.y15_c00484{bottom:705.600000pt;}
.y4f_c00484{bottom:710.933333pt;}
.y4e_c00484{bottom:726.666667pt;}
.y14_c00484{bottom:728.933333pt;}
.y4d_c00484{bottom:742.666667pt;}
.y13_c00484{bottom:744.666667pt;}
.y4c_c00484{bottom:758.400000pt;}
.y12_c00484{bottom:760.666667pt;}
.y11_c00484{bottom:776.666667pt;}
.y48_c00484{bottom:784.266667pt;}
.y4a_c00484{bottom:785.866667pt;}
.y10_c00484{bottom:792.666667pt;}
.y49_c00484{bottom:796.800000pt;}
.y4b_c00484{bottom:798.666667pt;}
.yf_c00484{bottom:808.400000pt;}
.y47_c00484{bottom:809.866667pt;}
.y46_c00484{bottom:823.333333pt;}
.ye_c00484{bottom:824.133333pt;}
.y45_c00484{bottom:835.466667pt;}
.yd_c00484{bottom:840.133333pt;}
.y44_c00484{bottom:848.800000pt;}
.yc_c00484{bottom:855.866667pt;}
.y43_c00484{bottom:861.866667pt;}
.yb_c00484{bottom:871.600000pt;}
.y42_c00484{bottom:874.933333pt;}
.y41_c00484{bottom:886.400000pt;}
.ya_c00484{bottom:887.333333pt;}
.y40_c00484{bottom:898.933333pt;}
.y9_c00484{bottom:903.066667pt;}
.y3f_c00484{bottom:912.666667pt;}
.y8_c00484{bottom:919.066667pt;}
.y3e_c00484{bottom:924.133333pt;}
.y7_c00484{bottom:934.800000pt;}
.y3d_c00484{bottom:936.800000pt;}
.y3c_c00484{bottom:950.266667pt;}
.y6_c00484{bottom:950.800000pt;}
.y3b_c00484{bottom:962.800000pt;}
.y5_c00484{bottom:966.133333pt;}
.y3a_c00484{bottom:976.266667pt;}
.y4_c00484{bottom:982.133333pt;}
.y39_c00484{bottom:988.800000pt;}
.y3_c00484{bottom:998.133333pt;}
.y38_c00484{bottom:1002.533333pt;}
.y2_c00484{bottom:1015.733333pt;}
.y1_c00484{bottom:1022.133333pt;}
.hb_c00484{height:21.333333pt;}
.h8_c00484{height:26.666667pt;}
.ha_c00484{height:37.333333pt;}
.h9_c00484{height:42.666667pt;}
.h7_c00484{height:48.000000pt;}
.h5_c00484{height:53.333333pt;}
.h4_c00484{height:58.666667pt;}
.h6_c00484{height:64.000000pt;}
.h2_c00484{height:96.000000pt;}
.h3_c00484{height:117.333333pt;}
.h1_c00484{height:1128.000000pt;}
.h0_c00484{height:1128.319987pt;}
.w0_c00484{width:851.840007pt;}
.w1_c00484{width:852.000000pt;}
.x0_c00484{left:0.000000pt;}
.x5c_c00484{left:70.400000pt;}
.xa6_c00484{left:71.866667pt;}
.x6b_c00484{left:74.933333pt;}
.x89_c00484{left:75.866667pt;}
.x4_c00484{left:86.400000pt;}
.x23_c00484{left:88.000000pt;}
.x44_c00484{left:88.933333pt;}
.x64_c00484{left:90.000000pt;}
.x6a_c00484{left:90.933333pt;}
.x75_c00484{left:92.133333pt;}
.x7a_c00484{left:99.600000pt;}
.x9c_c00484{left:100.800000pt;}
.x30_c00484{left:105.733333pt;}
.x72_c00484{left:108.133333pt;}
.x48_c00484{left:109.733333pt;}
.x6e_c00484{left:110.666667pt;}
.x67_c00484{left:113.600000pt;}
.x6f_c00484{left:114.533333pt;}
.x34_c00484{left:115.866667pt;}
.x8a_c00484{left:117.733333pt;}
.x3b_c00484{left:119.333333pt;}
.xa2_c00484{left:121.333333pt;}
.x5a_c00484{left:122.533333pt;}
.xb_c00484{left:123.866667pt;}
.x5_c00484{left:124.800000pt;}
.x5d_c00484{left:127.066667pt;}
.x24_c00484{left:128.666667pt;}
.x76_c00484{left:130.533333pt;}
.x60_c00484{left:131.733333pt;}
.x16_c00484{left:134.133333pt;}
.x8e_c00484{left:135.866667pt;}
.x6c_c00484{left:137.066667pt;}
.x2b_c00484{left:138.666667pt;}
.x99_c00484{left:139.600000pt;}
.x25_c00484{left:140.533333pt;}
.x45_c00484{left:142.400000pt;}
.x7c_c00484{left:143.466667pt;}
.x31_c00484{left:144.800000pt;}
.x12_c00484{left:146.666667pt;}
.xc_c00484{left:147.866667pt;}
.x85_c00484{left:149.466667pt;}
.x4e_c00484{left:151.200000pt;}
.x82_c00484{left:154.533333pt;}
.x1c_c00484{left:157.066667pt;}
.x3f_c00484{left:158.266667pt;}
.x13_c00484{left:164.533333pt;}
.x9d_c00484{left:165.733333pt;}
.x56_c00484{left:168.133333pt;}
.x26_c00484{left:169.333333pt;}
.x87_c00484{left:171.333333pt;}
.x68_c00484{left:172.800000pt;}
.x4f_c00484{left:173.866667pt;}
.x35_c00484{left:175.066667pt;}
.x40_c00484{left:176.533333pt;}
.x98_c00484{left:177.600000pt;}
.xd_c00484{left:179.200000pt;}
.x6_c00484{left:180.800000pt;}
.x49_c00484{left:183.733333pt;}
.x88_c00484{left:185.733333pt;}
.x8f_c00484{left:187.333333pt;}
.x39_c00484{left:190.800000pt;}
.x80_c00484{left:192.933333pt;}
.x7d_c00484{left:194.000000pt;}
.x90_c00484{left:196.000000pt;}
.x84_c00484{left:197.733333pt;}
.x86_c00484{left:199.333333pt;}
.x57_c00484{left:201.733333pt;}
.x2c_c00484{left:203.333333pt;}
.x4a_c00484{left:204.533333pt;}
.x77_c00484{left:205.733333pt;}
.x27_c00484{left:208.400000pt;}
.x61_c00484{left:210.400000pt;}
.x17_c00484{left:211.333333pt;}
.x41_c00484{left:213.066667pt;}
.x50_c00484{left:214.800000pt;}
.x7_c00484{left:216.000000pt;}
.x3c_c00484{left:218.266667pt;}
.x70_c00484{left:219.866667pt;}
.x54_c00484{left:220.933333pt;}
.x1d_c00484{left:222.666667pt;}
.xe_c00484{left:223.733333pt;}
.x81_c00484{left:224.666667pt;}
.x96_c00484{left:226.400000pt;}
.x7b_c00484{left:229.200000pt;}
.x93_c00484{left:230.400000pt;}
.x46_c00484{left:231.333333pt;}
.x5e_c00484{left:232.266667pt;}
.x1e_c00484{left:234.133333pt;}
.xa3_c00484{left:236.133333pt;}
.x83_c00484{left:240.000000pt;}
.x32_c00484{left:241.066667pt;}
.xf_c00484{left:242.266667pt;}
.x2d_c00484{left:244.933333pt;}
.x14_c00484{left:246.800000pt;}
.x28_c00484{left:248.400000pt;}
.x3a_c00484{left:250.933333pt;}
.x9a_c00484{left:252.933333pt;}
.xa4_c00484{left:255.066667pt;}
.x62_c00484{left:256.800000pt;}
.x8_c00484{left:258.266667pt;}
.x7e_c00484{left:259.866667pt;}
.x78_c00484{left:261.466667pt;}
.x18_c00484{left:262.533333pt;}
.x1f_c00484{left:264.266667pt;}
.x51_c00484{left:266.666667pt;}
.x9e_c00484{left:267.600000pt;}
.x42_c00484{left:269.066667pt;}
.x69_c00484{left:270.000000pt;}
.x63_c00484{left:271.200000pt;}
.x36_c00484{left:272.666667pt;}
.x10_c00484{left:274.000000pt;}
.xa5_c00484{left:275.066667pt;}
.x7f_c00484{left:276.533333pt;}
.x29_c00484{left:278.533333pt;}
.x19_c00484{left:280.400000pt;}
.x37_c00484{left:282.533333pt;}
.x73_c00484{left:284.133333pt;}
.x1_c00484{left:286.400000pt;}
.x9f_c00484{left:287.466667pt;}
.x43_c00484{left:289.600000pt;}
.x3d_c00484{left:292.800000pt;}
.x1a_c00484{left:295.066667pt;}
.x58_c00484{left:297.466667pt;}
.x33_c00484{left:299.200000pt;}
.x5f_c00484{left:300.133333pt;}
.x91_c00484{left:301.866667pt;}
.x4b_c00484{left:303.066667pt;}
.x94_c00484{left:304.133333pt;}
.x20_c00484{left:306.533333pt;}
.x8d_c00484{left:307.733333pt;}
.x65_c00484{left:308.800000pt;}
.x9b_c00484{left:309.733333pt;}
.xa0_c00484{left:311.200000pt;}
.xa7_c00484{left:312.533333pt;}
.x59_c00484{left:318.266667pt;}
.x2e_c00484{left:319.200000pt;}
.x47_c00484{left:320.666667pt;}
.x21_c00484{left:321.600000pt;}
.x4c_c00484{left:323.600000pt;}
.x9_c00484{left:324.800000pt;}
.x55_c00484{left:326.933333pt;}
.x2a_c00484{left:328.400000pt;}
.x8b_c00484{left:329.600000pt;}
.x3e_c00484{left:330.533333pt;}
.x38_c00484{left:331.866667pt;}
.x66_c00484{left:332.800000pt;}
.xa1_c00484{left:337.066667pt;}
.x4d_c00484{left:338.666667pt;}
.x74_c00484{left:340.133333pt;}
.x92_c00484{left:342.400000pt;}
.xa_c00484{left:344.000000pt;}
.x22_c00484{left:344.933333pt;}
.x11_c00484{left:346.666667pt;}
.x52_c00484{left:348.266667pt;}
.x6d_c00484{left:349.733333pt;}
.x1b_c00484{left:350.800000pt;}
.x97_c00484{left:352.266667pt;}
.x15_c00484{left:354.266667pt;}
.x71_c00484{left:356.133333pt;}
.x53_c00484{left:357.600000pt;}
.x2f_c00484{left:359.200000pt;}
.x95_c00484{left:362.000000pt;}
.x79_c00484{left:364.266667pt;}
.x5b_c00484{left:365.733333pt;}
.x8c_c00484{left:369.600000pt;}
.xea_c00484{left:383.333333pt;}
.xeb_c00484{left:389.066667pt;}
.x13b_c00484{left:390.666667pt;}
.x13f_c00484{left:392.000000pt;}
.x148_c00484{left:393.066667pt;}
.xb2_c00484{left:398.666667pt;}
.xdd_c00484{left:400.266667pt;}
.x125_c00484{left:401.200000pt;}
.x138_c00484{left:404.133333pt;}
.xee_c00484{left:405.866667pt;}
.x108_c00484{left:406.800000pt;}
.x111_c00484{left:408.133333pt;}
.x149_c00484{left:410.000000pt;}
.xa8_c00484{left:411.466667pt;}
.xd6_c00484{left:413.066667pt;}
.xe1_c00484{left:414.133333pt;}
.x140_c00484{left:418.266667pt;}
.xc9_c00484{left:420.933333pt;}
.x119_c00484{left:423.200000pt;}
.x11f_c00484{left:424.800000pt;}
.x139_c00484{left:425.866667pt;}
.xfd_c00484{left:427.733333pt;}
.x126_c00484{left:429.333333pt;}
.xd0_c00484{left:431.066667pt;}
.xd7_c00484{left:432.933333pt;}
.x12f_c00484{left:434.266667pt;}
.xdf_c00484{left:435.200000pt;}
.x135_c00484{left:436.266667pt;}
.xc2_c00484{left:440.400000pt;}
.xcd_c00484{left:441.600000pt;}
.x109_c00484{left:443.333333pt;}
.xef_c00484{left:444.533333pt;}
.x103_c00484{left:445.600000pt;}
.x11a_c00484{left:447.466667pt;}
.x113_c00484{left:448.400000pt;}
.xe2_c00484{left:451.600000pt;}
.xd1_c00484{left:453.733333pt;}
.x143_c00484{left:455.866667pt;}
.xca_c00484{left:458.400000pt;}
.x12c_c00484{left:461.066667pt;}
.xfe_c00484{left:462.533333pt;}
.xfb_c00484{left:464.666667pt;}
.xdb_c00484{left:466.266667pt;}
.xec_c00484{left:467.466667pt;}
.xa9_c00484{left:468.400000pt;}
.xf6_c00484{left:469.733333pt;}
.xd8_c00484{left:471.333333pt;}
.x144_c00484{left:472.533333pt;}
.x136_c00484{left:475.333333pt;}
.xf0_c00484{left:476.533333pt;}
.xe3_c00484{left:477.866667pt;}
.x12a_c00484{left:479.733333pt;}
.xf7_c00484{left:480.933333pt;}
.x114_c00484{left:482.666667pt;}
.x10a_c00484{left:483.733333pt;}
.xaa_c00484{left:485.733333pt;}
.x134_c00484{left:487.733333pt;}
.xb6_c00484{left:489.866667pt;}
.x11b_c00484{left:492.266667pt;}
.x13c_c00484{left:493.333333pt;}
.xd2_c00484{left:495.600000pt;}
.xe4_c00484{left:496.666667pt;}
.x14a_c00484{left:498.000000pt;}
.xff_c00484{left:499.600000pt;}
.xab_c00484{left:501.733333pt;}
.xc3_c00484{left:503.066667pt;}
.x121_c00484{left:505.200000pt;}
.x12b_c00484{left:508.266667pt;}
.x100_c00484{left:509.466667pt;}
.x12d_c00484{left:510.400000pt;}
.x127_c00484{left:511.333333pt;}
.xc4_c00484{left:513.333333pt;}
.x10b_c00484{left:514.800000pt;}
.x104_c00484{left:516.000000pt;}
.xcb_c00484{left:517.600000pt;}
.xe0_c00484{left:520.266667pt;}
.xed_c00484{left:521.200000pt;}
.xe5_c00484{left:522.266667pt;}
.xc5_c00484{left:525.866667pt;}
.xac_c00484{left:527.066667pt;}
.x13d_c00484{left:528.266667pt;}
.x11c_c00484{left:529.333333pt;}
.xf8_c00484{left:531.200000pt;}
.xb7_c00484{left:532.800000pt;}
.x12e_c00484{left:533.733333pt;}
.x122_c00484{left:536.266667pt;}
.xb8_c00484{left:539.200000pt;}
.x101_c00484{left:541.200000pt;}
.xdc_c00484{left:542.666667pt;}
.x145_c00484{left:544.133333pt;}
.xb9_c00484{left:545.600000pt;}
.x13a_c00484{left:548.000000pt;}
.xf1_c00484{left:549.733333pt;}
.xba_c00484{left:551.733333pt;}
.xd3_c00484{left:552.666667pt;}
.x146_c00484{left:553.733333pt;}
.x130_c00484{left:555.200000pt;}
.xbb_c00484{left:558.400000pt;}
.x137_c00484{left:559.600000pt;}
.x107_c00484{left:561.066667pt;}
.x110_c00484{left:563.866667pt;}
.xbc_c00484{left:564.800000pt;}
.x10e_c00484{left:566.533333pt;}
.x10c_c00484{left:568.533333pt;}
.xad_c00484{left:569.600000pt;}
.xbd_c00484{left:570.933333pt;}
.xf2_c00484{left:572.133333pt;}
.x117_c00484{left:573.466667pt;}
.x131_c00484{left:575.066667pt;}
.xd9_c00484{left:576.666667pt;}
.xbe_c00484{left:577.600000pt;}
.x105_c00484{left:580.266667pt;}
.xfc_c00484{left:582.133333pt;}
.xcf_c00484{left:583.333333pt;}
.xae_c00484{left:584.266667pt;}
.x102_c00484{left:585.733333pt;}
.x115_c00484{left:588.533333pt;}
.xbf_c00484{left:590.400000pt;}
.xcc_c00484{left:591.866667pt;}
.x128_c00484{left:592.933333pt;}
.x141_c00484{left:595.733333pt;}
.xc0_c00484{left:596.800000pt;}
.x123_c00484{left:600.533333pt;}
.x10d_c00484{left:602.133333pt;}
.xc1_c00484{left:603.866667pt;}
.x14b_c00484{left:604.800000pt;}
.x10f_c00484{left:609.466667pt;}
.x11d_c00484{left:611.333333pt;}
.xaf_c00484{left:612.400000pt;}
.xf3_c00484{left:613.466667pt;}
.x14c_c00484{left:616.666667pt;}
.x133_c00484{left:618.400000pt;}
.xb3_c00484{left:620.133333pt;}
.xd4_c00484{left:621.733333pt;}
.xe8_c00484{left:623.333333pt;}
.xe6_c00484{left:624.666667pt;}
.x129_c00484{left:627.866667pt;}
.x120_c00484{left:629.600000pt;}
.xf9_c00484{left:631.066667pt;}
.xce_c00484{left:632.666667pt;}
.x14e_c00484{left:633.733333pt;}
.x124_c00484{left:635.733333pt;}
.x112_c00484{left:637.200000pt;}
.xb0_c00484{left:639.866667pt;}
.xda_c00484{left:642.266667pt;}
.xf4_c00484{left:644.533333pt;}
.xb4_c00484{left:646.400000pt;}
.xc6_c00484{left:647.866667pt;}
.xe9_c00484{left:649.200000pt;}
.xe7_c00484{left:650.266667pt;}
.xfa_c00484{left:651.200000pt;}
.x13e_c00484{left:652.133333pt;}
.x106_c00484{left:654.533333pt;}
.x147_c00484{left:655.733333pt;}
.x142_c00484{left:658.133333pt;}
.xf5_c00484{left:659.866667pt;}
.x2_c00484{left:661.733333pt;}
.x116_c00484{left:664.400000pt;}
.xc8_c00484{left:666.000000pt;}
.xc7_c00484{left:668.933333pt;}
.xb1_c00484{left:670.000000pt;}
.xb5_c00484{left:671.333333pt;}
.xd5_c00484{left:672.533333pt;}
.xde_c00484{left:673.600000pt;}
.x132_c00484{left:674.533333pt;}
.x118_c00484{left:675.600000pt;}
.x11e_c00484{left:678.533333pt;}
.x14d_c00484{left:687.333333pt;}
.x3_c00484{left:694.666667pt;}
}





/* 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_c00485 {
    display:none;
  }
  .loading-indicator_c00485.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00485 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_c00485 { 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_c00485" -> "#page-container .classname_c00485")
 */
.pf_c00485 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00485 { /* 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_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00485 { /* 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_c00485 { /* 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_c00485 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00485 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00485 {overflow:visible;}
  }
}
.c_c00485 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00485 { /* 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_c00485:after { /* webkit #35443 */
  content: '';
}
.t_c00485:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00485 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 */
}
.__c00485 { /* 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_c00485 { /* info for Javascript */
  display:none;
}
.l_c00485 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00485 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00485 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00485: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_c00485 {
    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_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00485.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_c00485 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00485{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00485;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.000000;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;}
.md7_c00485{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00485{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.maf_c00485{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00485{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00485{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m119_c00485{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mec_c00485{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00485{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.mae_c00485{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m29_c00485{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00485{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m129_c00485{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m65_c00485{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00485{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00485{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m115_c00485{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.md_c00485{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m23_c00485{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00485{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00485{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m16_c00485{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m126_c00485{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m127_c00485{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m107_c00485{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00485{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m68_c00485{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00485{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00485{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00485{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00485{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m21_c00485{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00485{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.md9_c00485{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m104_c00485{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m96_c00485{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00485{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m33_c00485{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00485{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m93_c00485{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m99_c00485{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m11_c00485{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m40_c00485{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00485{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m108_c00485{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00485{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m128_c00485{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00485{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00485{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m91_c00485{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m121_c00485{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m45_c00485{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00485{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00485{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00485{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m41_c00485{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00485{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00485{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00485{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00485{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00485{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00485{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00485{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m27_c00485{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m71_c00485{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mea_c00485{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m131_c00485{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00485{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00485{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m94_c00485{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00485{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mac_c00485{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00485{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md5_c00485{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00485{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m102_c00485{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m54_c00485{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m24_c00485{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00485{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m109_c00485{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00485{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.mda_c00485{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00485{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m39_c00485{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m89_c00485{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.med_c00485{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m20_c00485{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00485{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m77_c00485{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00485{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m32_c00485{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m132_c00485{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m30_c00485{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00485{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00485{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m86_c00485{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00485{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00485{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00485{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m130_c00485{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m9_c00485{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me9_c00485{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00485{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mce_c00485{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m79_c00485{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00485{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00485{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m44_c00485{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00485{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m85_c00485{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m51_c00485{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m59_c00485{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m120_c00485{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m97_c00485{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00485{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mba_c00485{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m122_c00485{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00485{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m22_c00485{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m58_c00485{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m34_c00485{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00485{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00485{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.me8_c00485{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00485{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00485{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m38_c00485{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m0_c00485{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00485{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00485{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mff_c00485{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m78_c00485{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00485{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00485{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m37_c00485{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00485{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00485{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m42_c00485{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m49_c00485{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00485{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m55_c00485{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m46_c00485{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00485{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m73_c00485{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me_c00485{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00485{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00485{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m92_c00485{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00485{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m95_c00485{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m28_c00485{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m90_c00485{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m106_c00485{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.maa_c00485{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00485{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00485{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m125_c00485{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8_c00485{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m98_c00485{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m53_c00485{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.meb_c00485{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me6_c00485{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00485{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00485{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m17_c00485{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00485{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mab_c00485{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00485{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m63_c00485{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00485{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m100_c00485{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m103_c00485{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m66_c00485{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me0_c00485{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc_c00485{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00485{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00485{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m56_c00485{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mad_c00485{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m47_c00485{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m69_c00485{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m76_c00485{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md2_c00485{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mb_c00485{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00485{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00485{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m75_c00485{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m7_c00485{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00485{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00485{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00485{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5_c00485{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00485{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m26_c00485{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m18_c00485{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00485{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00485{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00485{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md4_c00485{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mee_c00485{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2_c00485{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m72_c00485{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md0_c00485{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00485{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00485{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00485{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00485{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m60_c00485{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6_c00485{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m74_c00485{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m25_c00485{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00485{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m31_c00485{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m62_c00485{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m88_c00485{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m35_c00485{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m80_c00485{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00485{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m70_c00485{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00485{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00485{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m84_c00485{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m113_c00485{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00485{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m110_c00485{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m87_c00485{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m48_c00485{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m82_c00485{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf_c00485{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m114_c00485{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m111_c00485{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00485{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m36_c00485{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.me4_c00485{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.ma_c00485{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00485{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00485{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00485{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m81_c00485{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00485{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00485{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00485{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00485{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00485{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m52_c00485{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00485{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m61_c00485{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00485{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00485{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md3_c00485{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00485{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m123_c00485{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);}
.mfa_c00485{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12_c00485{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m64_c00485{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mef_c00485{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00485{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00485{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00485{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00485{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m14_c00485{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m83_c00485{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00485{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00485{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00485{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00485{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m57_c00485{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m112_c00485{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m67_c00485{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m10_c00485{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mca_c00485{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m118_c00485{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m116_c00485{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00485{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m101_c00485{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00485{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00485{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md1_c00485{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m105_c00485{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m117_c00485{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md8_c00485{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.me7_c00485{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00485{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00485{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.me2_c00485{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00485{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00485{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00485{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m43_c00485{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00485{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00485{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m124_c00485{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00485{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00485{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m50_c00485{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00485{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.me3_c00485{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.me5_c00485{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00485{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.md6_c00485{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m19_c00485{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00485{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.me1_c00485{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00485{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mde_c00485{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls0_c00485{letter-spacing:0.000000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{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__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00485{word-spacing:-14.307058px;}
.ws2_c00485{word-spacing:-9.218750px;}
.ws4_c00485{word-spacing:-6.527778px;}
.ws5_c00485{word-spacing:-5.147059px;}
.ws0_c00485{word-spacing:-4.039106px;}
.wsa_c00485{word-spacing:0.000000px;}
.ws6_c00485{word-spacing:7.609756px;}
.ws1_c00485{word-spacing:14.250000px;}
.ws9_c00485{word-spacing:15.166667px;}
.ws7_c00485{word-spacing:16.833333px;}
.ws3_c00485{word-spacing:30.312500px;}
.fc0_c00485{color:transparent;}
.fs6_c00485{font-size:24.000000px;}
.fs7_c00485{font-size:30.000000px;}
.fs5_c00485{font-size:48.000000px;}
.fs4_c00485{font-size:54.000000px;}
.fs3_c00485{font-size:60.000000px;}
.fs2_c00485{font-size:66.000000px;}
.fs0_c00485{font-size:72.000000px;}
.fs1_c00485{font-size:78.000000px;}
.y0_c00485{bottom:0.000000px;}
.y3f_c00485{bottom:13.350000px;}
.y3e_c00485{bottom:23.100000px;}
.y3d_c00485{bottom:190.050000px;}
.y3c_c00485{bottom:203.400000px;}
.y70_c00485{bottom:204.900000px;}
.y6f_c00485{bottom:222.900000px;}
.y3b_c00485{bottom:232.950000px;}
.y3a_c00485{bottom:246.600000px;}
.y6e_c00485{bottom:252.750000px;}
.y39_c00485{bottom:260.550000px;}
.y6d_c00485{bottom:271.050000px;}
.y38_c00485{bottom:275.250000px;}
.y37_c00485{bottom:288.900000px;}
.y6c_c00485{bottom:289.350000px;}
.y36_c00485{bottom:303.300000px;}
.y6b_c00485{bottom:308.400000px;}
.y35_c00485{bottom:317.400000px;}
.y6a_c00485{bottom:324.300000px;}
.y34_c00485{bottom:331.500000px;}
.y33_c00485{bottom:345.900000px;}
.y69_c00485{bottom:346.950000px;}
.y32_c00485{bottom:360.300000px;}
.y68_c00485{bottom:364.650000px;}
.y31_c00485{bottom:375.450000px;}
.y30_c00485{bottom:389.100000px;}
.y67_c00485{bottom:400.350000px;}
.y2f_c00485{bottom:403.200000px;}
.y2e_c00485{bottom:417.600000px;}
.y66_c00485{bottom:418.350000px;}
.y2d_c00485{bottom:432.300000px;}
.y65_c00485{bottom:436.350000px;}
.y2c_c00485{bottom:446.700000px;}
.y64_c00485{bottom:459.000000px;}
.y2b_c00485{bottom:460.800000px;}
.y2a_c00485{bottom:475.200000px;}
.y63_c00485{bottom:476.250000px;}
.y29_c00485{bottom:489.900000px;}
.y62_c00485{bottom:494.250000px;}
.y28_c00485{bottom:504.000000px;}
.y27_c00485{bottom:518.400000px;}
.y61_c00485{bottom:520.050000px;}
.y26_c00485{bottom:533.250000px;}
.y60_c00485{bottom:540.900000px;}
.y25_c00485{bottom:546.600000px;}
.y5f_c00485{bottom:556.350000px;}
.y24_c00485{bottom:561.000000px;}
.y5e_c00485{bottom:573.600000px;}
.y23_c00485{bottom:575.100000px;}
.y22_c00485{bottom:589.500000px;}
.y5d_c00485{bottom:591.900000px;}
.y21_c00485{bottom:603.600000px;}
.y5c_c00485{bottom:609.150000px;}
.y20_c00485{bottom:618.000000px;}
.y5b_c00485{bottom:627.150000px;}
.y1f_c00485{bottom:634.200000px;}
.y5a_c00485{bottom:644.850000px;}
.y1e_c00485{bottom:646.500000px;}
.y1d_c00485{bottom:661.650000px;}
.y59_c00485{bottom:662.550000px;}
.y1c_c00485{bottom:678.900000px;}
.y58_c00485{bottom:680.550000px;}
.y1b_c00485{bottom:694.050000px;}
.y57_c00485{bottom:698.550000px;}
.y1a_c00485{bottom:708.900000px;}
.y56_c00485{bottom:717.600000px;}
.y19_c00485{bottom:727.200000px;}
.y55_c00485{bottom:733.800000px;}
.y18_c00485{bottom:741.300000px;}
.y54_c00485{bottom:751.800000px;}
.y17_c00485{bottom:756.000000px;}
.y16_c00485{bottom:769.800000px;}
.y53_c00485{bottom:770.850000px;}
.y15_c00485{bottom:784.500000px;}
.y52_c00485{bottom:787.800000px;}
.y14_c00485{bottom:799.200000px;}
.y51_c00485{bottom:805.500000px;}
.y13_c00485{bottom:813.600000px;}
.y50_c00485{bottom:823.200000px;}
.y12_c00485{bottom:827.250000px;}
.y4f_c00485{bottom:841.200000px;}
.y4e_c00485{bottom:858.900000px;}
.y4d_c00485{bottom:876.600000px;}
.y11_c00485{bottom:881.250000px;}
.y10_c00485{bottom:900.300000px;}
.y4c_c00485{bottom:900.750000px;}
.yf_c00485{bottom:916.800000px;}
.y4b_c00485{bottom:918.000000px;}
.ye_c00485{bottom:934.800000px;}
.y4a_c00485{bottom:940.200000px;}
.yd_c00485{bottom:952.500000px;}
.y49_c00485{bottom:958.200000px;}
.yc_c00485{bottom:970.200000px;}
.y48_c00485{bottom:976.200000px;}
.yb_c00485{bottom:988.200000px;}
.y47_c00485{bottom:993.900000px;}
.ya_c00485{bottom:1005.900000px;}
.y46_c00485{bottom:1011.600000px;}
.y9_c00485{bottom:1023.900000px;}
.y45_c00485{bottom:1029.600000px;}
.y8_c00485{bottom:1041.600000px;}
.y44_c00485{bottom:1055.550000px;}
.y7_c00485{bottom:1059.300000px;}
.y43_c00485{bottom:1073.400000px;}
.y6_c00485{bottom:1077.300000px;}
.y42_c00485{bottom:1091.100000px;}
.y5_c00485{bottom:1095.000000px;}
.y4_c00485{bottom:1112.700000px;}
.y41_c00485{bottom:1112.850000px;}
.y3_c00485{bottom:1130.700000px;}
.y40_c00485{bottom:1131.150000px;}
.y1_c00485{bottom:1155.900000px;}
.y2_c00485{bottom:1156.950000px;}
.h8_c00485{height:24.000000px;}
.h9_c00485{height:30.000000px;}
.h7_c00485{height:48.000000px;}
.h6_c00485{height:54.000000px;}
.h5_c00485{height:60.000000px;}
.h4_c00485{height:66.000000px;}
.h2_c00485{height:72.000000px;}
.h3_c00485{height:78.000000px;}
.h0_c00485{height:1274.759949px;}
.h1_c00485{height:1275.000000px;}
.w0_c00485{width:958.320007px;}
.w1_c00485{width:958.500000px;}
.x0_c00485{left:0.000000px;}
.x7c_c00485{left:180.750000px;}
.x57_c00485{left:181.800000px;}
.x1_c00485{left:182.850000px;}
.xaa_c00485{left:184.050000px;}
.x63_c00485{left:190.500000px;}
.xa7_c00485{left:194.700000px;}
.x69_c00485{left:196.500000px;}
.x9d_c00485{left:197.700000px;}
.x75_c00485{left:199.050000px;}
.x17_c00485{left:200.400000px;}
.x9_c00485{left:202.050000px;}
.x9f_c00485{left:207.900000px;}
.x86_c00485{left:208.950000px;}
.x58_c00485{left:211.350000px;}
.xab_c00485{left:213.150000px;}
.x6e_c00485{left:214.350000px;}
.x89_c00485{left:215.550000px;}
.x79_c00485{left:216.600000px;}
.xa3_c00485{left:219.600000px;}
.x76_c00485{left:220.650000px;}
.x18_c00485{left:222.300000px;}
.x72_c00485{left:223.500000px;}
.xa_c00485{left:224.700000px;}
.x67_c00485{left:225.750000px;}
.xa9_c00485{left:226.800000px;}
.x40_c00485{left:228.300000px;}
.x4b_c00485{left:229.500000px;}
.xad_c00485{left:231.450000px;}
.x5d_c00485{left:232.650000px;}
.x90_c00485{left:233.700000px;}
.x19_c00485{left:235.200000px;}
.x2e_c00485{left:237.150000px;}
.x39_c00485{left:238.350000px;}
.x46_c00485{left:239.850000px;}
.xa4_c00485{left:240.900000px;}
.x3_c00485{left:242.700000px;}
.x73_c00485{left:244.050000px;}
.xb_c00485{left:245.550000px;}
.x1a_c00485{left:247.050000px;}
.x41_c00485{left:248.100000px;}
.x8d_c00485{left:249.600000px;}
.x5e_c00485{left:250.950000px;}
.xaf_c00485{left:255.300000px;}
.x64_c00485{left:256.800000px;}
.x22_c00485{left:258.300000px;}
.x4_c00485{left:260.400000px;}
.xb0_c00485{left:261.900000px;}
.x3b_c00485{left:263.850000px;}
.xb4_c00485{left:264.900000px;}
.x59_c00485{left:266.400000px;}
.x8a_c00485{left:267.750000px;}
.x1b_c00485{left:268.950000px;}
.x36_c00485{left:270.750000px;}
.x6f_c00485{left:272.400000px;}
.x95_c00485{left:274.350000px;}
.x8e_c00485{left:275.850000px;}
.x13_c00485{left:277.950000px;}
.x23_c00485{left:280.200000px;}
.x2f_c00485{left:281.400000px;}
.x7e_c00485{left:282.600000px;}
.x7d_c00485{left:283.950000px;}
.xb5_c00485{left:285.000000px;}
.x4c_c00485{left:287.850000px;}
.x14_c00485{left:289.800000px;}
.xac_c00485{left:292.650000px;}
.xa6_c00485{left:294.300000px;}
.x77_c00485{left:295.500000px;}
.x83_c00485{left:296.850000px;}
.xc_c00485{left:299.250000px;}
.x68_c00485{left:301.050000px;}
.x37_c00485{left:302.400000px;}
.x8b_c00485{left:304.350000px;}
.x53_c00485{left:306.000000px;}
.x5f_c00485{left:309.300000px;}
.x74_c00485{left:311.400000px;}
.x70_c00485{left:312.750000px;}
.x52_c00485{left:315.150000px;}
.xa2_c00485{left:317.400000px;}
.xd_c00485{left:319.050000px;}
.x24_c00485{left:321.600000px;}
.x7a_c00485{left:322.800000px;}
.x1c_c00485{left:324.000000px;}
.x47_c00485{left:325.500000px;}
.x5_c00485{left:327.750000px;}
.x28_c00485{left:329.700000px;}
.x91_c00485{left:332.250000px;}
.x96_c00485{left:333.750000px;}
.x30_c00485{left:336.900000px;}
.xa5_c00485{left:338.700000px;}
.x15_c00485{left:340.200000px;}
.x7b_c00485{left:342.300000px;}
.x98_c00485{left:344.850000px;}
.xe_c00485{left:346.050000px;}
.x1d_c00485{left:347.700000px;}
.x5a_c00485{left:348.900000px;}
.x65_c00485{left:350.700000px;}
.xb1_c00485{left:352.200000px;}
.x31_c00485{left:353.400000px;}
.x4d_c00485{left:355.950000px;}
.xf_c00485{left:357.900000px;}
.x60_c00485{left:359.700000px;}
.x7f_c00485{left:362.100000px;}
.x6a_c00485{left:363.150000px;}
.x9e_c00485{left:364.800000px;}
.x3c_c00485{left:366.150000px;}
.x61_c00485{left:367.950000px;}
.x42_c00485{left:369.150000px;}
.x1e_c00485{left:370.800000px;}
.x16_c00485{left:371.850000px;}
.x25_c00485{left:374.550000px;}
.x4e_c00485{left:377.250000px;}
.x29_c00485{left:378.600000px;}
.x32_c00485{left:380.400000px;}
.x48_c00485{left:382.050000px;}
.x26_c00485{left:384.300000px;}
.x9b_c00485{left:387.750000px;}
.x99_c00485{left:389.850000px;}
.x6_c00485{left:391.800000px;}
.x33_c00485{left:394.500000px;}
.x3d_c00485{left:397.050000px;}
.x92_c00485{left:399.450000px;}
.x2a_c00485{left:400.950000px;}
.x4f_c00485{left:403.500000px;}
.x49_c00485{left:406.200000px;}
.x87_c00485{left:407.700000px;}
.x10_c00485{left:409.350000px;}
.x5b_c00485{left:411.150000px;}
.x54_c00485{left:413.400000px;}
.x43_c00485{left:414.450000px;}
.x6b_c00485{left:416.400000px;}
.x9a_c00485{left:418.050000px;}
.x7_c00485{left:419.550000px;}
.x78_c00485{left:422.250000px;}
.x6c_c00485{left:424.350000px;}
.x2_c00485{left:425.550000px;}
.x8c_c00485{left:427.800000px;}
.x38_c00485{left:430.200000px;}
.xb7_c00485{left:431.400000px;}
.x1f_c00485{left:433.050000px;}
.x2b_c00485{left:434.850000px;}
.x34_c00485{left:436.200000px;}
.x55_c00485{left:440.400000px;}
.x8f_c00485{left:442.500000px;}
.x3e_c00485{left:443.550000px;}
.x80_c00485{left:444.600000px;}
.x2c_c00485{left:445.950000px;}
.x81_c00485{left:447.000000px;}
.x6d_c00485{left:448.800000px;}
.xa0_c00485{left:449.850000px;}
.x94_c00485{left:453.000000px;}
.x8_c00485{left:454.050000px;}
.x44_c00485{left:455.100000px;}
.x20_c00485{left:456.750000px;}
.x3a_c00485{left:458.250000px;}
.x62_c00485{left:460.050000px;}
.x51_c00485{left:462.000000px;}
.x11_c00485{left:463.050000px;}
.x50_c00485{left:464.700000px;}
.x27_c00485{left:467.550000px;}
.x5c_c00485{left:468.750000px;}
.x2d_c00485{left:470.850000px;}
.x35_c00485{left:472.200000px;}
.x84_c00485{left:473.250000px;}
.xa1_c00485{left:474.300000px;}
.x21_c00485{left:475.800000px;}
.xa8_c00485{left:478.050000px;}
.x45_c00485{left:483.900000px;}
.x85_c00485{left:487.950000px;}
.x56_c00485{left:489.300000px;}
.x66_c00485{left:490.650000px;}
.x88_c00485{left:491.700000px;}
.x71_c00485{left:493.200000px;}
.x14a_c00485{left:494.250000px;}
.x93_c00485{left:495.600000px;}
.xb6_c00485{left:498.450000px;}
.x12_c00485{left:500.100000px;}
.x9c_c00485{left:501.150000px;}
.x4a_c00485{left:503.400000px;}
.x82_c00485{left:504.600000px;}
.xae_c00485{left:507.900000px;}
.x3f_c00485{left:511.950000px;}
.x97_c00485{left:513.300000px;}
.xb2_c00485{left:514.950000px;}
.xb3_c00485{left:524.700000px;}
.x14b_c00485{left:527.700000px;}
.xb8_c00485{left:536.100000px;}
.xf9_c00485{left:537.900000px;}
.x138_c00485{left:549.750000px;}
.xd7_c00485{left:552.000000px;}
.xc6_c00485{left:553.650000px;}
.xff_c00485{left:555.150000px;}
.x14c_c00485{left:556.500000px;}
.xbe_c00485{left:563.850000px;}
.xf8_c00485{left:564.900000px;}
.x115_c00485{left:568.050000px;}
.xbf_c00485{left:571.350000px;}
.xf2_c00485{left:573.600000px;}
.x143_c00485{left:578.850000px;}
.x10d_c00485{left:580.500000px;}
.xb9_c00485{left:582.150000px;}
.xd3_c00485{left:583.200000px;}
.xd8_c00485{left:584.400000px;}
.xc7_c00485{left:590.700000px;}
.x123_c00485{left:592.050000px;}
.xea_c00485{left:593.850000px;}
.x10f_c00485{left:595.500000px;}
.xdf_c00485{left:596.550000px;}
.xe3_c00485{left:599.250000px;}
.xc8_c00485{left:601.800000px;}
.x11c_c00485{left:602.850000px;}
.x104_c00485{left:603.900000px;}
.xce_c00485{left:606.300000px;}
.x126_c00485{left:608.700000px;}
.x146_c00485{left:609.900000px;}
.xe4_c00485{left:616.200000px;}
.xc0_c00485{left:617.400000px;}
.x127_c00485{left:619.050000px;}
.xba_c00485{left:620.700000px;}
.xfa_c00485{left:622.800000px;}
.x116_c00485{left:627.750000px;}
.x12d_c00485{left:629.250000px;}
.xd9_c00485{left:631.950000px;}
.xeb_c00485{left:633.750000px;}
.x128_c00485{left:634.950000px;}
.xf3_c00485{left:636.450000px;}
.xcf_c00485{left:638.700000px;}
.x13d_c00485{left:639.750000px;}
.x13a_c00485{left:640.800000px;}
.x14d_c00485{left:641.850000px;}
.x105_c00485{left:643.500000px;}
.x100_c00485{left:645.750000px;}
.xd4_c00485{left:647.700000px;}
.x11d_c00485{left:648.900000px;}
.x118_c00485{left:650.250000px;}
.xf4_c00485{left:654.450000px;}
.xc9_c00485{left:657.300000px;}
.xda_c00485{left:659.700000px;}
.x124_c00485{left:661.950000px;}
.xc1_c00485{left:664.200000px;}
.x106_c00485{left:665.400000px;}
.x144_c00485{left:666.900000px;}
.xec_c00485{left:668.250000px;}
.x119_c00485{left:675.750000px;}
.xdb_c00485{left:676.950000px;}
.xe5_c00485{left:679.950000px;}
.x12e_c00485{left:681.900000px;}
.xed_c00485{left:685.950000px;}
.xfb_c00485{left:687.600000px;}
.x10a_c00485{left:689.400000px;}
.xd0_c00485{left:693.750000px;}
.x125_c00485{left:696.900000px;}
.xc2_c00485{left:698.400000px;}
.xd5_c00485{left:699.900000px;}
.x101_c00485{left:702.600000px;}
.x11a_c00485{left:704.550000px;}
.xbb_c00485{left:706.350000px;}
.x135_c00485{left:708.450000px;}
.xdc_c00485{left:711.900000px;}
.x129_c00485{left:713.400000px;}
.x141_c00485{left:714.900000px;}
.x11e_c00485{left:717.600000px;}
.xd1_c00485{left:719.250000px;}
.xe0_c00485{left:724.200000px;}
.xca_c00485{left:728.250000px;}
.x12a_c00485{left:731.400000px;}
.x121_c00485{left:732.450000px;}
.x131_c00485{left:734.400000px;}
.xbc_c00485{left:735.450000px;}
.x107_c00485{left:736.650000px;}
.xee_c00485{left:740.250000px;}
.xd2_c00485{left:742.350000px;}
.x10c_c00485{left:746.100000px;}
.xe1_c00485{left:747.600000px;}
.x110_c00485{left:749.250000px;}
.xfc_c00485{left:750.300000px;}
.x132_c00485{left:751.650000px;}
.x136_c00485{left:756.750000px;}
.x11f_c00485{left:757.950000px;}
.x112_c00485{left:760.050000px;}
.x147_c00485{left:761.100000px;}
.xd6_c00485{left:762.150000px;}
.xcb_c00485{left:766.350000px;}
.xe6_c00485{left:767.700000px;}
.xc3_c00485{left:771.450000px;}
.x102_c00485{left:772.800000px;}
.x13e_c00485{left:777.000000px;}
.xef_c00485{left:778.800000px;}
.xdd_c00485{left:780.600000px;}
.x12b_c00485{left:782.250000px;}
.x10e_c00485{left:784.950000px;}
.x108_c00485{left:786.000000px;}
.x103_c00485{left:787.500000px;}
.x117_c00485{left:789.150000px;}
.xf5_c00485{left:792.750000px;}
.xe7_c00485{left:795.000000px;}
.x13b_c00485{left:796.650000px;}
.x113_c00485{left:798.900000px;}
.xf0_c00485{left:800.700000px;}
.xcc_c00485{left:803.100000px;}
.x12f_c00485{left:805.350000px;}
.x13f_c00485{left:807.000000px;}
.x120_c00485{left:809.400000px;}
.x10b_c00485{left:812.850000px;}
.xe8_c00485{left:815.100000px;}
.x140_c00485{left:816.750000px;}
.x111_c00485{left:817.950000px;}
.x133_c00485{left:820.500000px;}
.x13c_c00485{left:821.850000px;}
.xbd_c00485{left:823.350000px;}
.xf6_c00485{left:825.150000px;}
.x149_c00485{left:826.200000px;}
.x145_c00485{left:828.750000px;}
.xc4_c00485{left:832.950000px;}
.xfd_c00485{left:835.200000px;}
.x114_c00485{left:837.750000px;}
.x12c_c00485{left:839.100000px;}
.x122_c00485{left:840.450000px;}
.xde_c00485{left:842.100000px;}
.x134_c00485{left:843.900000px;}
.x137_c00485{left:846.000000px;}
.xe9_c00485{left:847.200000px;}
.x142_c00485{left:849.300000px;}
.xcd_c00485{left:850.950000px;}
.xc5_c00485{left:852.750000px;}
.x11b_c00485{left:854.550000px;}
.x139_c00485{left:855.750000px;}
.xe2_c00485{left:857.850000px;}
.x148_c00485{left:859.050000px;}
.x130_c00485{left:860.100000px;}
.xf7_c00485{left:861.150000px;}
.xf1_c00485{left:863.700000px;}
.x109_c00485{left:870.900000px;}
.xfe_c00485{left:873.750000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws8_c00485{word-spacing:-12.717385pt;}
.ws2_c00485{word-spacing:-8.194444pt;}
.ws4_c00485{word-spacing:-5.802469pt;}
.ws5_c00485{word-spacing:-4.575163pt;}
.ws0_c00485{word-spacing:-3.590317pt;}
.wsa_c00485{word-spacing:0.000000pt;}
.ws6_c00485{word-spacing:6.764228pt;}
.ws1_c00485{word-spacing:12.666667pt;}
.ws9_c00485{word-spacing:13.481481pt;}
.ws7_c00485{word-spacing:14.962963pt;}
.ws3_c00485{word-spacing:26.944444pt;}
.fs6_c00485{font-size:21.333333pt;}
.fs7_c00485{font-size:26.666667pt;}
.fs5_c00485{font-size:42.666667pt;}
.fs4_c00485{font-size:48.000000pt;}
.fs3_c00485{font-size:53.333333pt;}
.fs2_c00485{font-size:58.666667pt;}
.fs0_c00485{font-size:64.000000pt;}
.fs1_c00485{font-size:69.333333pt;}
.y0_c00485{bottom:0.000000pt;}
.y3f_c00485{bottom:11.866667pt;}
.y3e_c00485{bottom:20.533333pt;}
.y3d_c00485{bottom:168.933333pt;}
.y3c_c00485{bottom:180.800000pt;}
.y70_c00485{bottom:182.133333pt;}
.y6f_c00485{bottom:198.133333pt;}
.y3b_c00485{bottom:207.066667pt;}
.y3a_c00485{bottom:219.200000pt;}
.y6e_c00485{bottom:224.666667pt;}
.y39_c00485{bottom:231.600000pt;}
.y6d_c00485{bottom:240.933333pt;}
.y38_c00485{bottom:244.666667pt;}
.y37_c00485{bottom:256.800000pt;}
.y6c_c00485{bottom:257.200000pt;}
.y36_c00485{bottom:269.600000pt;}
.y6b_c00485{bottom:274.133333pt;}
.y35_c00485{bottom:282.133333pt;}
.y6a_c00485{bottom:288.266667pt;}
.y34_c00485{bottom:294.666667pt;}
.y33_c00485{bottom:307.466667pt;}
.y69_c00485{bottom:308.400000pt;}
.y32_c00485{bottom:320.266667pt;}
.y68_c00485{bottom:324.133333pt;}
.y31_c00485{bottom:333.733333pt;}
.y30_c00485{bottom:345.866667pt;}
.y67_c00485{bottom:355.866667pt;}
.y2f_c00485{bottom:358.400000pt;}
.y2e_c00485{bottom:371.200000pt;}
.y66_c00485{bottom:371.866667pt;}
.y2d_c00485{bottom:384.266667pt;}
.y65_c00485{bottom:387.866667pt;}
.y2c_c00485{bottom:397.066667pt;}
.y64_c00485{bottom:408.000000pt;}
.y2b_c00485{bottom:409.600000pt;}
.y2a_c00485{bottom:422.400000pt;}
.y63_c00485{bottom:423.333333pt;}
.y29_c00485{bottom:435.466667pt;}
.y62_c00485{bottom:439.333333pt;}
.y28_c00485{bottom:448.000000pt;}
.y27_c00485{bottom:460.800000pt;}
.y61_c00485{bottom:462.266667pt;}
.y26_c00485{bottom:474.000000pt;}
.y60_c00485{bottom:480.800000pt;}
.y25_c00485{bottom:485.866667pt;}
.y5f_c00485{bottom:494.533333pt;}
.y24_c00485{bottom:498.666667pt;}
.y5e_c00485{bottom:509.866667pt;}
.y23_c00485{bottom:511.200000pt;}
.y22_c00485{bottom:524.000000pt;}
.y5d_c00485{bottom:526.133333pt;}
.y21_c00485{bottom:536.533333pt;}
.y5c_c00485{bottom:541.466667pt;}
.y20_c00485{bottom:549.333333pt;}
.y5b_c00485{bottom:557.466667pt;}
.y1f_c00485{bottom:563.733333pt;}
.y5a_c00485{bottom:573.200000pt;}
.y1e_c00485{bottom:574.666667pt;}
.y1d_c00485{bottom:588.133333pt;}
.y59_c00485{bottom:588.933333pt;}
.y1c_c00485{bottom:603.466667pt;}
.y58_c00485{bottom:604.933333pt;}
.y1b_c00485{bottom:616.933333pt;}
.y57_c00485{bottom:620.933333pt;}
.y1a_c00485{bottom:630.133333pt;}
.y56_c00485{bottom:637.866667pt;}
.y19_c00485{bottom:646.400000pt;}
.y55_c00485{bottom:652.266667pt;}
.y18_c00485{bottom:658.933333pt;}
.y54_c00485{bottom:668.266667pt;}
.y17_c00485{bottom:672.000000pt;}
.y16_c00485{bottom:684.266667pt;}
.y53_c00485{bottom:685.200000pt;}
.y15_c00485{bottom:697.333333pt;}
.y52_c00485{bottom:700.266667pt;}
.y14_c00485{bottom:710.400000pt;}
.y51_c00485{bottom:716.000000pt;}
.y13_c00485{bottom:723.200000pt;}
.y50_c00485{bottom:731.733333pt;}
.y12_c00485{bottom:735.333333pt;}
.y4f_c00485{bottom:747.733333pt;}
.y4e_c00485{bottom:763.466667pt;}
.y4d_c00485{bottom:779.200000pt;}
.y11_c00485{bottom:783.333333pt;}
.y10_c00485{bottom:800.266667pt;}
.y4c_c00485{bottom:800.666667pt;}
.yf_c00485{bottom:814.933333pt;}
.y4b_c00485{bottom:816.000000pt;}
.ye_c00485{bottom:830.933333pt;}
.y4a_c00485{bottom:835.733333pt;}
.yd_c00485{bottom:846.666667pt;}
.y49_c00485{bottom:851.733333pt;}
.yc_c00485{bottom:862.400000pt;}
.y48_c00485{bottom:867.733333pt;}
.yb_c00485{bottom:878.400000pt;}
.y47_c00485{bottom:883.466667pt;}
.ya_c00485{bottom:894.133333pt;}
.y46_c00485{bottom:899.200000pt;}
.y9_c00485{bottom:910.133333pt;}
.y45_c00485{bottom:915.200000pt;}
.y8_c00485{bottom:925.866667pt;}
.y44_c00485{bottom:938.266667pt;}
.y7_c00485{bottom:941.600000pt;}
.y43_c00485{bottom:954.133333pt;}
.y6_c00485{bottom:957.600000pt;}
.y42_c00485{bottom:969.866667pt;}
.y5_c00485{bottom:973.333333pt;}
.y4_c00485{bottom:989.066667pt;}
.y41_c00485{bottom:989.200000pt;}
.y3_c00485{bottom:1005.066667pt;}
.y40_c00485{bottom:1005.466667pt;}
.y1_c00485{bottom:1027.466667pt;}
.y2_c00485{bottom:1028.400000pt;}
.h8_c00485{height:21.333333pt;}
.h9_c00485{height:26.666667pt;}
.h7_c00485{height:42.666667pt;}
.h6_c00485{height:48.000000pt;}
.h5_c00485{height:53.333333pt;}
.h4_c00485{height:58.666667pt;}
.h2_c00485{height:64.000000pt;}
.h3_c00485{height:69.333333pt;}
.h0_c00485{height:1133.119955pt;}
.h1_c00485{height:1133.333333pt;}
.w0_c00485{width:851.840007pt;}
.w1_c00485{width:852.000000pt;}
.x0_c00485{left:0.000000pt;}
.x7c_c00485{left:160.666667pt;}
.x57_c00485{left:161.600000pt;}
.x1_c00485{left:162.533333pt;}
.xaa_c00485{left:163.600000pt;}
.x63_c00485{left:169.333333pt;}
.xa7_c00485{left:173.066667pt;}
.x69_c00485{left:174.666667pt;}
.x9d_c00485{left:175.733333pt;}
.x75_c00485{left:176.933333pt;}
.x17_c00485{left:178.133333pt;}
.x9_c00485{left:179.600000pt;}
.x9f_c00485{left:184.800000pt;}
.x86_c00485{left:185.733333pt;}
.x58_c00485{left:187.866667pt;}
.xab_c00485{left:189.466667pt;}
.x6e_c00485{left:190.533333pt;}
.x89_c00485{left:191.600000pt;}
.x79_c00485{left:192.533333pt;}
.xa3_c00485{left:195.200000pt;}
.x76_c00485{left:196.133333pt;}
.x18_c00485{left:197.600000pt;}
.x72_c00485{left:198.666667pt;}
.xa_c00485{left:199.733333pt;}
.x67_c00485{left:200.666667pt;}
.xa9_c00485{left:201.600000pt;}
.x40_c00485{left:202.933333pt;}
.x4b_c00485{left:204.000000pt;}
.xad_c00485{left:205.733333pt;}
.x5d_c00485{left:206.800000pt;}
.x90_c00485{left:207.733333pt;}
.x19_c00485{left:209.066667pt;}
.x2e_c00485{left:210.800000pt;}
.x39_c00485{left:211.866667pt;}
.x46_c00485{left:213.200000pt;}
.xa4_c00485{left:214.133333pt;}
.x3_c00485{left:215.733333pt;}
.x73_c00485{left:216.933333pt;}
.xb_c00485{left:218.266667pt;}
.x1a_c00485{left:219.600000pt;}
.x41_c00485{left:220.533333pt;}
.x8d_c00485{left:221.866667pt;}
.x5e_c00485{left:223.066667pt;}
.xaf_c00485{left:226.933333pt;}
.x64_c00485{left:228.266667pt;}
.x22_c00485{left:229.600000pt;}
.x4_c00485{left:231.466667pt;}
.xb0_c00485{left:232.800000pt;}
.x3b_c00485{left:234.533333pt;}
.xb4_c00485{left:235.466667pt;}
.x59_c00485{left:236.800000pt;}
.x8a_c00485{left:238.000000pt;}
.x1b_c00485{left:239.066667pt;}
.x36_c00485{left:240.666667pt;}
.x6f_c00485{left:242.133333pt;}
.x95_c00485{left:243.866667pt;}
.x8e_c00485{left:245.200000pt;}
.x13_c00485{left:247.066667pt;}
.x23_c00485{left:249.066667pt;}
.x2f_c00485{left:250.133333pt;}
.x7e_c00485{left:251.200000pt;}
.x7d_c00485{left:252.400000pt;}
.xb5_c00485{left:253.333333pt;}
.x4c_c00485{left:255.866667pt;}
.x14_c00485{left:257.600000pt;}
.xac_c00485{left:260.133333pt;}
.xa6_c00485{left:261.600000pt;}
.x77_c00485{left:262.666667pt;}
.x83_c00485{left:263.866667pt;}
.xc_c00485{left:266.000000pt;}
.x68_c00485{left:267.600000pt;}
.x37_c00485{left:268.800000pt;}
.x8b_c00485{left:270.533333pt;}
.x53_c00485{left:272.000000pt;}
.x5f_c00485{left:274.933333pt;}
.x74_c00485{left:276.800000pt;}
.x70_c00485{left:278.000000pt;}
.x52_c00485{left:280.133333pt;}
.xa2_c00485{left:282.133333pt;}
.xd_c00485{left:283.600000pt;}
.x24_c00485{left:285.866667pt;}
.x7a_c00485{left:286.933333pt;}
.x1c_c00485{left:288.000000pt;}
.x47_c00485{left:289.333333pt;}
.x5_c00485{left:291.333333pt;}
.x28_c00485{left:293.066667pt;}
.x91_c00485{left:295.333333pt;}
.x96_c00485{left:296.666667pt;}
.x30_c00485{left:299.466667pt;}
.xa5_c00485{left:301.066667pt;}
.x15_c00485{left:302.400000pt;}
.x7b_c00485{left:304.266667pt;}
.x98_c00485{left:306.533333pt;}
.xe_c00485{left:307.600000pt;}
.x1d_c00485{left:309.066667pt;}
.x5a_c00485{left:310.133333pt;}
.x65_c00485{left:311.733333pt;}
.xb1_c00485{left:313.066667pt;}
.x31_c00485{left:314.133333pt;}
.x4d_c00485{left:316.400000pt;}
.xf_c00485{left:318.133333pt;}
.x60_c00485{left:319.733333pt;}
.x7f_c00485{left:321.866667pt;}
.x6a_c00485{left:322.800000pt;}
.x9e_c00485{left:324.266667pt;}
.x3c_c00485{left:325.466667pt;}
.x61_c00485{left:327.066667pt;}
.x42_c00485{left:328.133333pt;}
.x1e_c00485{left:329.600000pt;}
.x16_c00485{left:330.533333pt;}
.x25_c00485{left:332.933333pt;}
.x4e_c00485{left:335.333333pt;}
.x29_c00485{left:336.533333pt;}
.x32_c00485{left:338.133333pt;}
.x48_c00485{left:339.600000pt;}
.x26_c00485{left:341.600000pt;}
.x9b_c00485{left:344.666667pt;}
.x99_c00485{left:346.533333pt;}
.x6_c00485{left:348.266667pt;}
.x33_c00485{left:350.666667pt;}
.x3d_c00485{left:352.933333pt;}
.x92_c00485{left:355.066667pt;}
.x2a_c00485{left:356.400000pt;}
.x4f_c00485{left:358.666667pt;}
.x49_c00485{left:361.066667pt;}
.x87_c00485{left:362.400000pt;}
.x10_c00485{left:363.866667pt;}
.x5b_c00485{left:365.466667pt;}
.x54_c00485{left:367.466667pt;}
.x43_c00485{left:368.400000pt;}
.x6b_c00485{left:370.133333pt;}
.x9a_c00485{left:371.600000pt;}
.x7_c00485{left:372.933333pt;}
.x78_c00485{left:375.333333pt;}
.x6c_c00485{left:377.200000pt;}
.x2_c00485{left:378.266667pt;}
.x8c_c00485{left:380.266667pt;}
.x38_c00485{left:382.400000pt;}
.xb7_c00485{left:383.466667pt;}
.x1f_c00485{left:384.933333pt;}
.x2b_c00485{left:386.533333pt;}
.x34_c00485{left:387.733333pt;}
.x55_c00485{left:391.466667pt;}
.x8f_c00485{left:393.333333pt;}
.x3e_c00485{left:394.266667pt;}
.x80_c00485{left:395.200000pt;}
.x2c_c00485{left:396.400000pt;}
.x81_c00485{left:397.333333pt;}
.x6d_c00485{left:398.933333pt;}
.xa0_c00485{left:399.866667pt;}
.x94_c00485{left:402.666667pt;}
.x8_c00485{left:403.600000pt;}
.x44_c00485{left:404.533333pt;}
.x20_c00485{left:406.000000pt;}
.x3a_c00485{left:407.333333pt;}
.x62_c00485{left:408.933333pt;}
.x51_c00485{left:410.666667pt;}
.x11_c00485{left:411.600000pt;}
.x50_c00485{left:413.066667pt;}
.x27_c00485{left:415.600000pt;}
.x5c_c00485{left:416.666667pt;}
.x2d_c00485{left:418.533333pt;}
.x35_c00485{left:419.733333pt;}
.x84_c00485{left:420.666667pt;}
.xa1_c00485{left:421.600000pt;}
.x21_c00485{left:422.933333pt;}
.xa8_c00485{left:424.933333pt;}
.x45_c00485{left:430.133333pt;}
.x85_c00485{left:433.733333pt;}
.x56_c00485{left:434.933333pt;}
.x66_c00485{left:436.133333pt;}
.x88_c00485{left:437.066667pt;}
.x71_c00485{left:438.400000pt;}
.x14a_c00485{left:439.333333pt;}
.x93_c00485{left:440.533333pt;}
.xb6_c00485{left:443.066667pt;}
.x12_c00485{left:444.533333pt;}
.x9c_c00485{left:445.466667pt;}
.x4a_c00485{left:447.466667pt;}
.x82_c00485{left:448.533333pt;}
.xae_c00485{left:451.466667pt;}
.x3f_c00485{left:455.066667pt;}
.x97_c00485{left:456.266667pt;}
.xb2_c00485{left:457.733333pt;}
.xb3_c00485{left:466.400000pt;}
.x14b_c00485{left:469.066667pt;}
.xb8_c00485{left:476.533333pt;}
.xf9_c00485{left:478.133333pt;}
.x138_c00485{left:488.666667pt;}
.xd7_c00485{left:490.666667pt;}
.xc6_c00485{left:492.133333pt;}
.xff_c00485{left:493.466667pt;}
.x14c_c00485{left:494.666667pt;}
.xbe_c00485{left:501.200000pt;}
.xf8_c00485{left:502.133333pt;}
.x115_c00485{left:504.933333pt;}
.xbf_c00485{left:507.866667pt;}
.xf2_c00485{left:509.866667pt;}
.x143_c00485{left:514.533333pt;}
.x10d_c00485{left:516.000000pt;}
.xb9_c00485{left:517.466667pt;}
.xd3_c00485{left:518.400000pt;}
.xd8_c00485{left:519.466667pt;}
.xc7_c00485{left:525.066667pt;}
.x123_c00485{left:526.266667pt;}
.xea_c00485{left:527.866667pt;}
.x10f_c00485{left:529.333333pt;}
.xdf_c00485{left:530.266667pt;}
.xe3_c00485{left:532.666667pt;}
.xc8_c00485{left:534.933333pt;}
.x11c_c00485{left:535.866667pt;}
.x104_c00485{left:536.800000pt;}
.xce_c00485{left:538.933333pt;}
.x126_c00485{left:541.066667pt;}
.x146_c00485{left:542.133333pt;}
.xe4_c00485{left:547.733333pt;}
.xc0_c00485{left:548.800000pt;}
.x127_c00485{left:550.266667pt;}
.xba_c00485{left:551.733333pt;}
.xfa_c00485{left:553.600000pt;}
.x116_c00485{left:558.000000pt;}
.x12d_c00485{left:559.333333pt;}
.xd9_c00485{left:561.733333pt;}
.xeb_c00485{left:563.333333pt;}
.x128_c00485{left:564.400000pt;}
.xf3_c00485{left:565.733333pt;}
.xcf_c00485{left:567.733333pt;}
.x13d_c00485{left:568.666667pt;}
.x13a_c00485{left:569.600000pt;}
.x14d_c00485{left:570.533333pt;}
.x105_c00485{left:572.000000pt;}
.x100_c00485{left:574.000000pt;}
.xd4_c00485{left:575.733333pt;}
.x11d_c00485{left:576.800000pt;}
.x118_c00485{left:578.000000pt;}
.xf4_c00485{left:581.733333pt;}
.xc9_c00485{left:584.266667pt;}
.xda_c00485{left:586.400000pt;}
.x124_c00485{left:588.400000pt;}
.xc1_c00485{left:590.400000pt;}
.x106_c00485{left:591.466667pt;}
.x144_c00485{left:592.800000pt;}
.xec_c00485{left:594.000000pt;}
.x119_c00485{left:600.666667pt;}
.xdb_c00485{left:601.733333pt;}
.xe5_c00485{left:604.400000pt;}
.x12e_c00485{left:606.133333pt;}
.xed_c00485{left:609.733333pt;}
.xfb_c00485{left:611.200000pt;}
.x10a_c00485{left:612.800000pt;}
.xd0_c00485{left:616.666667pt;}
.x125_c00485{left:619.466667pt;}
.xc2_c00485{left:620.800000pt;}
.xd5_c00485{left:622.133333pt;}
.x101_c00485{left:624.533333pt;}
.x11a_c00485{left:626.266667pt;}
.xbb_c00485{left:627.866667pt;}
.x135_c00485{left:629.733333pt;}
.xdc_c00485{left:632.800000pt;}
.x129_c00485{left:634.133333pt;}
.x141_c00485{left:635.466667pt;}
.x11e_c00485{left:637.866667pt;}
.xd1_c00485{left:639.333333pt;}
.xe0_c00485{left:643.733333pt;}
.xca_c00485{left:647.333333pt;}
.x12a_c00485{left:650.133333pt;}
.x121_c00485{left:651.066667pt;}
.x131_c00485{left:652.800000pt;}
.xbc_c00485{left:653.733333pt;}
.x107_c00485{left:654.800000pt;}
.xee_c00485{left:658.000000pt;}
.xd2_c00485{left:659.866667pt;}
.x10c_c00485{left:663.200000pt;}
.xe1_c00485{left:664.533333pt;}
.x110_c00485{left:666.000000pt;}
.xfc_c00485{left:666.933333pt;}
.x132_c00485{left:668.133333pt;}
.x136_c00485{left:672.666667pt;}
.x11f_c00485{left:673.733333pt;}
.x112_c00485{left:675.600000pt;}
.x147_c00485{left:676.533333pt;}
.xd6_c00485{left:677.466667pt;}
.xcb_c00485{left:681.200000pt;}
.xe6_c00485{left:682.400000pt;}
.xc3_c00485{left:685.733333pt;}
.x102_c00485{left:686.933333pt;}
.x13e_c00485{left:690.666667pt;}
.xef_c00485{left:692.266667pt;}
.xdd_c00485{left:693.866667pt;}
.x12b_c00485{left:695.333333pt;}
.x10e_c00485{left:697.733333pt;}
.x108_c00485{left:698.666667pt;}
.x103_c00485{left:700.000000pt;}
.x117_c00485{left:701.466667pt;}
.xf5_c00485{left:704.666667pt;}
.xe7_c00485{left:706.666667pt;}
.x13b_c00485{left:708.133333pt;}
.x113_c00485{left:710.133333pt;}
.xf0_c00485{left:711.733333pt;}
.xcc_c00485{left:713.866667pt;}
.x12f_c00485{left:715.866667pt;}
.x13f_c00485{left:717.333333pt;}
.x120_c00485{left:719.466667pt;}
.x10b_c00485{left:722.533333pt;}
.xe8_c00485{left:724.533333pt;}
.x140_c00485{left:726.000000pt;}
.x111_c00485{left:727.066667pt;}
.x133_c00485{left:729.333333pt;}
.x13c_c00485{left:730.533333pt;}
.xbd_c00485{left:731.866667pt;}
.xf6_c00485{left:733.466667pt;}
.x149_c00485{left:734.400000pt;}
.x145_c00485{left:736.666667pt;}
.xc4_c00485{left:740.400000pt;}
.xfd_c00485{left:742.400000pt;}
.x114_c00485{left:744.666667pt;}
.x12c_c00485{left:745.866667pt;}
.x122_c00485{left:747.066667pt;}
.xde_c00485{left:748.533333pt;}
.x134_c00485{left:750.133333pt;}
.x137_c00485{left:752.000000pt;}
.xe9_c00485{left:753.066667pt;}
.x142_c00485{left:754.933333pt;}
.xcd_c00485{left:756.400000pt;}
.xc5_c00485{left:758.000000pt;}
.x11b_c00485{left:759.600000pt;}
.x139_c00485{left:760.666667pt;}
.xe2_c00485{left:762.533333pt;}
.x148_c00485{left:763.600000pt;}
.x130_c00485{left:764.533333pt;}
.xf7_c00485{left:765.466667pt;}
.xf1_c00485{left:767.733333pt;}
.x109_c00485{left:774.133333pt;}
.xfe_c00485{left:776.666667pt;}
}





/* 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_c00486 {
    display:none;
  }
  .loading-indicator_c00486.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00486 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_c00486 { 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_c00486" -> "#page-container .classname_c00486")
 */
.pf_c00486 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00486 { /* 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_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00486 { /* 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_c00486 { /* 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_c00486 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00486 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00486 {overflow:visible;}
  }
}
.c_c00486 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00486 { /* 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_c00486:after { /* webkit #35443 */
  content: '';
}
.t_c00486:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00486 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 */
}
.__c00486 { /* 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_c00486 { /* info for Javascript */
  display:none;
}
.l_c00486 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00486 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00486 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00486: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_c00486 {
    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_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00486.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_c00486 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00486{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00486;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.000000;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;}
.m67_c00486{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m68_c00486{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md2_c00486{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m111_c00486{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00486{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m27_c00486{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00486{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m41_c00486{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.md3_c00486{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00486{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m86_c00486{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00486{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.me1_c00486{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m47_c00486{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m109_c00486{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m125_c00486{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m17_c00486{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m108_c00486{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00486{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00486{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00486{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m14_c00486{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00486{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00486{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00486{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb_c00486{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00486{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m46_c00486{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m126_c00486{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00486{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m39_c00486{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00486{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m38_c00486{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00486{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m10_c00486{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m35_c00486{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m105_c00486{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m115_c00486{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00486{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m94_c00486{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m8_c00486{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m82_c00486{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m120_c00486{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00486{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m43_c00486{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m123_c00486{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m116_c00486{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00486{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m95_c00486{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mde_c00486{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00486{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m99_c00486{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00486{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m114_c00486{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m72_c00486{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mca_c00486{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m48_c00486{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m102_c00486{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00486{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00486{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m97_c00486{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00486{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.maa_c00486{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00486{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00486{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mad_c00486{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.ma_c00486{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00486{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00486{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00486{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m103_c00486{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m121_c00486{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00486{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m85_c00486{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00486{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.maf_c00486{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m61_c00486{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m112_c00486{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m89_c00486{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00486{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m83_c00486{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m11_c00486{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00486{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m79_c00486{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00486{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m65_c00486{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m113_c00486{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00486{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00486{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mac_c00486{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mba_c00486{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00486{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m74_c00486{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00486{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m60_c00486{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf9_c00486{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00486{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00486{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf_c00486{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00486{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m84_c00486{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00486{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00486{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m90_c00486{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m87_c00486{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m56_c00486{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md_c00486{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00486{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m98_c00486{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m93_c00486{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m78_c00486{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00486{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m42_c00486{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00486{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m34_c00486{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.meb_c00486{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00486{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m64_c00486{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m119_c00486{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00486{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00486{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00486{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00486{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m63_c00486{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m9_c00486{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mec_c00486{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00486{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00486{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me5_c00486{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00486{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00486{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me0_c00486{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m92_c00486{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc_c00486{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m88_c00486{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00486{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.md8_c00486{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m16_c00486{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00486{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00486{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00486{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m96_c00486{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m59_c00486{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m81_c00486{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00486{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00486{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00486{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m77_c00486{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m57_c00486{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m76_c00486{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00486{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m50_c00486{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mae_c00486{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00486{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.me4_c00486{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m71_c00486{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m55_c00486{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00486{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m29_c00486{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00486{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00486{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00486{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00486{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m26_c00486{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00486{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m36_c00486{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m101_c00486{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m118_c00486{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m117_c00486{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m66_c00486{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m51_c00486{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.me_c00486{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00486{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m49_c00486{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00486{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00486{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me8_c00486{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00486{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00486{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00486{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00486{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m15_c00486{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00486{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m19_c00486{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m54_c00486{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00486{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m40_c00486{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00486{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00486{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m13_c00486{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mff_c00486{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00486{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m53_c00486{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.me7_c00486{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00486{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m18_c00486{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m6_c00486{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m80_c00486{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m20_c00486{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00486{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00486{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m37_c00486{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mda_c00486{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m45_c00486{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00486{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m106_c00486{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m32_c00486{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m12_c00486{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00486{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m23_c00486{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m28_c00486{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00486{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md7_c00486{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00486{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m25_c00486{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me2_c00486{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mab_c00486{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00486{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mea_c00486{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m21_c00486{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00486{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00486{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m91_c00486{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00486{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m73_c00486{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00486{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00486{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00486{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m22_c00486{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m70_c00486{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m44_c00486{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m24_c00486{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m33_c00486{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00486{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00486{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00486{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00486{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);}
.m2a_c00486{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m75_c00486{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00486{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4_c00486{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00486{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00486{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me9_c00486{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00486{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m124_c00486{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00486{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m58_c00486{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m30_c00486{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.md9_c00486{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00486{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mee_c00486{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7_c00486{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m31_c00486{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.med_c00486{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00486{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00486{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m100_c00486{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00486{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m107_c00486{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.me3_c00486{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00486{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m104_c00486{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00486{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m110_c00486{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m2_c00486{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m69_c00486{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00486{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00486{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00486{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00486{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00486{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.me6_c00486{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.md1_c00486{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00486{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00486{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00486{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00486{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mef_c00486{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00486{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.md0_c00486{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);}
.m127_c00486{transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);}
.m122_c00486{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md5_c00486{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.md4_c00486{transform:matrix(0.413000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413000,0.000000,0.000000,0.250000,0,0);}
.mce_c00486{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md6_c00486{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m62_c00486{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m52_c00486{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00486{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00486{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m128_c00486{transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00486{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls2_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:45.000000px;}
.ls1_c00486{letter-spacing:48.125000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{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__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00486{word-spacing:-78.125000px;}
.ws3_c00486{word-spacing:-75.000000px;}
.ws1_c00486{word-spacing:-9.722222px;}
.ws0_c00486{word-spacing:-8.122677px;}
.ws6_c00486{word-spacing:-3.529412px;}
.wsb_c00486{word-spacing:0.000000px;}
.ws8_c00486{word-spacing:3.126984px;}
.ws7_c00486{word-spacing:5.178905px;}
.wsa_c00486{word-spacing:9.166667px;}
.ws9_c00486{word-spacing:12.666667px;}
.ws2_c00486{word-spacing:15.000000px;}
.ws5_c00486{word-spacing:25.714286px;}
._1_c00486{margin-left:-48.125000px;}
._0_c00486{margin-left:-45.000000px;}
.fc0_c00486{color:transparent;}
.fsa_c00486{font-size:24.000000px;}
.fs9_c00486{font-size:30.000000px;}
.fs7_c00486{font-size:36.000000px;}
.fs8_c00486{font-size:42.000000px;}
.fs5_c00486{font-size:48.000000px;}
.fs4_c00486{font-size:54.000000px;}
.fs2_c00486{font-size:60.000000px;}
.fs3_c00486{font-size:66.000000px;}
.fs6_c00486{font-size:72.000000px;}
.fs1_c00486{font-size:78.000000px;}
.fs0_c00486{font-size:102.000000px;}
.y0_c00486{bottom:0.000000px;}
.y7b_c00486{bottom:4.350000px;}
.y7a_c00486{bottom:174.300000px;}
.y3a_c00486{bottom:191.550000px;}
.y79_c00486{bottom:192.150000px;}
.y39_c00486{bottom:209.550000px;}
.y78_c00486{bottom:209.850000px;}
.y38_c00486{bottom:227.550000px;}
.y77_c00486{bottom:232.050000px;}
.y37_c00486{bottom:245.250000px;}
.y76_c00486{bottom:249.750000px;}
.y36_c00486{bottom:263.250000px;}
.y75_c00486{bottom:267.750000px;}
.y35_c00486{bottom:280.950000px;}
.y74_c00486{bottom:285.000000px;}
.y34_c00486{bottom:298.950000px;}
.y73_c00486{bottom:302.700000px;}
.y33_c00486{bottom:316.950000px;}
.y72_c00486{bottom:320.700000px;}
.y32_c00486{bottom:334.650000px;}
.y71_c00486{bottom:338.400000px;}
.y31_c00486{bottom:352.650000px;}
.y70_c00486{bottom:356.100000px;}
.y30_c00486{bottom:370.350000px;}
.y6f_c00486{bottom:374.100000px;}
.y2f_c00486{bottom:388.350000px;}
.y6e_c00486{bottom:391.800000px;}
.y2e_c00486{bottom:406.050000px;}
.y6d_c00486{bottom:409.500000px;}
.y2d_c00486{bottom:423.300000px;}
.y6c_c00486{bottom:427.200000px;}
.y2c_c00486{bottom:441.000000px;}
.y6b_c00486{bottom:444.900000px;}
.y2b_c00486{bottom:459.000000px;}
.y6a_c00486{bottom:462.600000px;}
.y2a_c00486{bottom:476.700000px;}
.y69_c00486{bottom:480.600000px;}
.y29_c00486{bottom:494.400000px;}
.y65_c00486{bottom:501.150000px;}
.y68_c00486{bottom:501.900000px;}
.y64_c00486{bottom:512.250000px;}
.y28_c00486{bottom:512.400000px;}
.y66_c00486{bottom:515.100000px;}
.y67_c00486{bottom:516.300000px;}
.y27_c00486{bottom:530.100000px;}
.y63_c00486{bottom:531.000000px;}
.y61_c00486{bottom:543.600000px;}
.y62_c00486{bottom:545.100000px;}
.y26_c00486{bottom:548.100000px;}
.y60_c00486{bottom:558.000000px;}
.y25_c00486{bottom:565.800000px;}
.y5f_c00486{bottom:574.500000px;}
.y24_c00486{bottom:583.800000px;}
.y5e_c00486{bottom:596.550000px;}
.y23_c00486{bottom:601.500000px;}
.y5d_c00486{bottom:614.550000px;}
.y22_c00486{bottom:619.500000px;}
.y5c_c00486{bottom:632.550000px;}
.y21_c00486{bottom:637.500000px;}
.y5b_c00486{bottom:650.550000px;}
.y20_c00486{bottom:655.200000px;}
.y5a_c00486{bottom:667.800000px;}
.y1f_c00486{bottom:672.900000px;}
.y59_c00486{bottom:685.800000px;}
.y1e_c00486{bottom:690.150000px;}
.y58_c00486{bottom:703.500000px;}
.y1d_c00486{bottom:715.350000px;}
.y57_c00486{bottom:725.250000px;}
.y1c_c00486{bottom:729.450000px;}
.y42_c00486{bottom:730.500000px;}
.y56_c00486{bottom:742.950000px;}
.y1b_c00486{bottom:743.550000px;}
.y1a_c00486{bottom:758.250000px;}
.y55_c00486{bottom:760.650000px;}
.y19_c00486{bottom:772.350000px;}
.y54_c00486{bottom:778.650000px;}
.y18_c00486{bottom:786.750000px;}
.y53_c00486{bottom:800.550000px;}
.y17_c00486{bottom:801.150000px;}
.y41_c00486{bottom:815.400000px;}
.y16_c00486{bottom:815.550000px;}
.y52_c00486{bottom:818.250000px;}
.y15_c00486{bottom:829.650000px;}
.y14_c00486{bottom:843.750000px;}
.y3f_c00486{bottom:845.250000px;}
.y51_c00486{bottom:848.850000px;}
.y13_c00486{bottom:858.150000px;}
.y50_c00486{bottom:866.850000px;}
.y40_c00486{bottom:871.950000px;}
.y12_c00486{bottom:872.250000px;}
.y4f_c00486{bottom:884.550000px;}
.y11_c00486{bottom:887.400000px;}
.y10_c00486{bottom:901.800000px;}
.y4e_c00486{bottom:910.800000px;}
.y3d_c00486{bottom:915.150000px;}
.yf_c00486{bottom:915.450000px;}
.y3e_c00486{bottom:916.950000px;}
.y4d_c00486{bottom:928.500000px;}
.ye_c00486{bottom:929.550000px;}
.y3c_c00486{bottom:931.350000px;}
.yd_c00486{bottom:944.700000px;}
.y4c_c00486{bottom:946.500000px;}
.yc_c00486{bottom:958.950000px;}
.y3b_c00486{bottom:959.400000px;}
.y4b_c00486{bottom:964.200000px;}
.yb_c00486{bottom:973.050000px;}
.y4a_c00486{bottom:981.450000px;}
.ya_c00486{bottom:987.450000px;}
.y49_c00486{bottom:999.450000px;}
.y9_c00486{bottom:1003.650000px;}
.y48_c00486{bottom:1017.150000px;}
.y8_c00486{bottom:1025.850000px;}
.y47_c00486{bottom:1034.850000px;}
.y7_c00486{bottom:1043.850000px;}
.y46_c00486{bottom:1052.550000px;}
.y6_c00486{bottom:1061.850000px;}
.y45_c00486{bottom:1070.250000px;}
.y5_c00486{bottom:1079.550000px;}
.y44_c00486{bottom:1096.950000px;}
.y4_c00486{bottom:1097.250000px;}
.y3_c00486{bottom:1114.500000px;}
.y43_c00486{bottom:1114.950000px;}
.y2_c00486{bottom:1140.900000px;}
.y1_c00486{bottom:1162.800000px;}
.hb_c00486{height:24.000000px;}
.ha_c00486{height:30.000000px;}
.h8_c00486{height:36.000000px;}
.h9_c00486{height:42.000000px;}
.h6_c00486{height:48.000000px;}
.h5_c00486{height:54.000000px;}
.h3_c00486{height:60.000000px;}
.h4_c00486{height:66.000000px;}
.h7_c00486{height:72.000000px;}
.h2_c00486{height:78.000000px;}
.h1_c00486{height:102.000000px;}
.h0_c00486{height:1269.000000px;}
.w0_c00486{width:958.320007px;}
.w1_c00486{width:958.500000px;}
.x0_c00486{left:0.000000px;}
.x69_c00486{left:79.950000px;}
.x27_c00486{left:81.300000px;}
.xaa_c00486{left:91.800000px;}
.xa1_c00486{left:93.450000px;}
.x40_c00486{left:95.100000px;}
.x2e_c00486{left:96.450000px;}
.xa_c00486{left:98.250000px;}
.x3_c00486{left:100.050000px;}
.x92_c00486{left:104.700000px;}
.x4d_c00486{left:109.500000px;}
.x3b_c00486{left:110.550000px;}
.x2f_c00486{left:114.450000px;}
.x49_c00486{left:116.700000px;}
.x35_c00486{left:120.300000px;}
.x96_c00486{left:122.100000px;}
.x5d_c00486{left:123.600000px;}
.xa2_c00486{left:126.900000px;}
.x36_c00486{left:129.000000px;}
.x19_c00486{left:130.350000px;}
.x42_c00486{left:132.450000px;}
.x8d_c00486{left:133.650000px;}
.x99_c00486{left:134.850000px;}
.x1f_c00486{left:136.200000px;}
.x12_c00486{left:137.700000px;}
.x5e_c00486{left:139.050000px;}
.x4_c00486{left:141.150000px;}
.x89_c00486{left:143.850000px;}
.x7d_c00486{left:144.900000px;}
.x28_c00486{left:146.850000px;}
.x1a_c00486{left:148.650000px;}
.xb_c00486{left:150.450000px;}
.x61_c00486{left:152.250000px;}
.x13_c00486{left:157.200000px;}
.x78_c00486{left:158.250000px;}
.x70_c00486{left:159.300000px;}
.x50_c00486{left:161.400000px;}
.x4a_c00486{left:163.500000px;}
.x3c_c00486{left:165.600000px;}
.x83_c00486{left:168.000000px;}
.xc_c00486{left:169.500000px;}
.x5a_c00486{left:171.600000px;}
.x97_c00486{left:172.800000px;}
.x44_c00486{left:173.850000px;}
.x5f_c00486{left:176.100000px;}
.x64_c00486{left:177.450000px;}
.x30_c00486{left:179.550000px;}
.xa7_c00486{left:180.900000px;}
.x57_c00486{left:182.100000px;}
.x93_c00486{left:183.150000px;}
.x3d_c00486{left:185.100000px;}
.x73_c00486{left:186.900000px;}
.x14_c00486{left:188.100000px;}
.x32_c00486{left:191.250000px;}
.x26_c00486{left:192.750000px;}
.x45_c00486{left:194.700000px;}
.x5_c00486{left:196.200000px;}
.x15_c00486{left:197.400000px;}
.xd_c00486{left:199.350000px;}
.x80_c00486{left:200.550000px;}
.x43_c00486{left:203.400000px;}
.x58_c00486{left:205.200000px;}
.x20_c00486{left:207.150000px;}
.x37_c00486{left:208.200000px;}
.xe_c00486{left:209.850000px;}
.x46_c00486{left:211.650000px;}
.x6_c00486{left:213.150000px;}
.x4b_c00486{left:216.450000px;}
.x3e_c00486{left:218.550000px;}
.x82_c00486{left:221.100000px;}
.x4e_c00486{left:222.150000px;}
.xa3_c00486{left:223.350000px;}
.x6d_c00486{left:225.000000px;}
.xa0_c00486{left:226.350000px;}
.x76_c00486{left:228.300000px;}
.x9a_c00486{left:230.250000px;}
.x4c_c00486{left:231.900000px;}
.x8e_c00486{left:233.400000px;}
.x31_c00486{left:236.400000px;}
.x3f_c00486{left:238.050000px;}
.x5b_c00486{left:240.300000px;}
.x29_c00486{left:241.500000px;}
.x16_c00486{left:243.150000px;}
.x74_c00486{left:244.500000px;}
.x7_c00486{left:245.550000px;}
.x47_c00486{left:247.350000px;}
.x59_c00486{left:248.700000px;}
.x8f_c00486{left:250.650000px;}
.x7b_c00486{left:252.900000px;}
.x1b_c00486{left:255.900000px;}
.x21_c00486{left:257.250000px;}
.x84_c00486{left:258.600000px;}
.x51_c00486{left:259.650000px;}
.xa4_c00486{left:261.900000px;}
.x2a_c00486{left:263.100000px;}
.x33_c00486{left:264.300000px;}
.x38_c00486{left:266.550000px;}
.x91_c00486{left:267.750000px;}
.x98_c00486{left:268.800000px;}
.x22_c00486{left:270.600000px;}
.x4f_c00486{left:273.000000px;}
.x52_c00486{left:274.350000px;}
.x62_c00486{left:276.000000px;}
.x9b_c00486{left:277.050000px;}
.x85_c00486{left:278.700000px;}
.x60_c00486{left:281.250000px;}
.x65_c00486{left:282.900000px;}
.x9f_c00486{left:284.250000px;}
.x39_c00486{left:287.100000px;}
.x53_c00486{left:288.750000px;}
.x17_c00486{left:290.250000px;}
.x81_c00486{left:291.300000px;}
.x8a_c00486{left:293.550000px;}
.x54_c00486{left:296.250000px;}
.x23_c00486{left:297.900000px;}
.x18_c00486{left:299.250000px;}
.x5c_c00486{left:301.800000px;}
.xa8_c00486{left:302.850000px;}
.x48_c00486{left:304.200000px;}
.x88_c00486{left:307.350000px;}
.x75_c00486{left:309.300000px;}
.x1_c00486{left:310.350000px;}
.x34_c00486{left:312.150000px;}
.x1c_c00486{left:313.800000px;}
.x55_c00486{left:317.850000px;}
.x63_c00486{left:319.200000px;}
.x6e_c00486{left:320.400000px;}
.x8_c00486{left:321.450000px;}
.x56_c00486{left:325.350000px;}
.x3a_c00486{left:327.150000px;}
.xa5_c00486{left:328.500000px;}
.x9c_c00486{left:330.300000px;}
.xa9_c00486{left:334.350000px;}
.x71_c00486{left:336.000000px;}
.x86_c00486{left:337.800000px;}
.x2b_c00486{left:339.000000px;}
.x94_c00486{left:341.250000px;}
.xab_c00486{left:342.750000px;}
.x66_c00486{left:344.100000px;}
.xf_c00486{left:345.900000px;}
.x6a_c00486{left:346.950000px;}
.x41_c00486{left:348.150000px;}
.x90_c00486{left:349.200000px;}
.x9d_c00486{left:350.850000px;}
.x24_c00486{left:351.900000px;}
.x7c_c00486{left:354.750000px;}
.x6f_c00486{left:358.200000px;}
.x8b_c00486{left:359.400000px;}
.x7e_c00486{left:362.100000px;}
.x10_c00486{left:363.900000px;}
.x95_c00486{left:364.950000px;}
.x6b_c00486{left:367.500000px;}
.x79_c00486{left:368.550000px;}
.x2c_c00486{left:369.600000px;}
.x1d_c00486{left:371.700000px;}
.x67_c00486{left:373.650000px;}
.x6c_c00486{left:375.750000px;}
.x77_c00486{left:377.400000px;}
.x87_c00486{left:379.950000px;}
.xa6_c00486{left:381.450000px;}
.x8c_c00486{left:383.550000px;}
.x9_c00486{left:385.500000px;}
.x1e_c00486{left:386.850000px;}
.x7f_c00486{left:388.050000px;}
.x7a_c00486{left:393.750000px;}
.x72_c00486{left:396.900000px;}
.x9e_c00486{left:400.200000px;}
.x68_c00486{left:401.700000px;}
.x2d_c00486{left:403.500000px;}
.x25_c00486{left:406.200000px;}
.x11_c00486{left:409.950000px;}
.x14d_c00486{left:416.550000px;}
.x149_c00486{left:430.200000px;}
.x12c_c00486{left:434.850000px;}
.x113_c00486{left:436.650000px;}
.xf8_c00486{left:438.150000px;}
.xb5_c00486{left:441.000000px;}
.x14e_c00486{left:443.250000px;}
.x14a_c00486{left:445.350000px;}
.x144_c00486{left:447.600000px;}
.x12f_c00486{left:448.650000px;}
.x13f_c00486{left:450.000000px;}
.x120_c00486{left:451.350000px;}
.x10d_c00486{left:452.400000px;}
.xfb_c00486{left:453.450000px;}
.xe5_c00486{left:455.400000px;}
.xcc_c00486{left:456.450000px;}
.xac_c00486{left:457.950000px;}
.x134_c00486{left:462.300000px;}
.x138_c00486{left:467.700000px;}
.x13a_c00486{left:471.300000px;}
.x106_c00486{left:473.700000px;}
.xb3_c00486{left:475.800000px;}
.xbc_c00486{left:477.450000px;}
.x114_c00486{left:479.550000px;}
.x10a_c00486{left:481.650000px;}
.xc4_c00486{left:483.900000px;}
.x135_c00486{left:485.100000px;}
.x101_c00486{left:486.300000px;}
.xd9_c00486{left:489.300000px;}
.x142_c00486{left:493.350000px;}
.x119_c00486{left:494.400000px;}
.x145_c00486{left:495.900000px;}
.xb6_c00486{left:498.300000px;}
.xe6_c00486{left:500.100000px;}
.xad_c00486{left:501.450000px;}
.xde_c00486{left:505.050000px;}
.x11a_c00486{left:507.000000px;}
.xff_c00486{left:508.950000px;}
.xb4_c00486{left:510.000000px;}
.xfc_c00486{left:512.850000px;}
.x122_c00486{left:515.250000px;}
.x10e_c00486{left:517.950000px;}
.x107_c00486{left:519.000000px;}
.x137_c00486{left:520.950000px;}
.xd4_c00486{left:522.150000px;}
.x11b_c00486{left:523.500000px;}
.xcd_c00486{left:525.150000px;}
.x102_c00486{left:526.200000px;}
.x100_c00486{left:527.700000px;}
.x125_c00486{left:531.600000px;}
.x123_c00486{left:533.250000px;}
.xbd_c00486{left:535.800000px;}
.xd5_c00486{left:537.300000px;}
.x13c_c00486{left:538.800000px;}
.xb7_c00486{left:543.300000px;}
.x115_c00486{left:544.650000px;}
.x14c_c00486{left:547.200000px;}
.xf3_c00486{left:548.400000px;}
.xe7_c00486{left:550.500000px;}
.x11c_c00486{left:553.050000px;}
.xce_c00486{left:554.700000px;}
.xdf_c00486{left:559.650000px;}
.xc5_c00486{left:561.600000px;}
.xfd_c00486{left:563.250000px;}
.x143_c00486{left:565.350000px;}
.xae_c00486{left:567.000000px;}
.x139_c00486{left:568.200000px;}
.xbe_c00486{left:569.250000px;}
.xe8_c00486{left:570.600000px;}
.xed_c00486{left:572.850000px;}
.x128_c00486{left:574.800000px;}
.xf4_c00486{left:576.150000px;}
.x140_c00486{left:578.100000px;}
.x136_c00486{left:579.600000px;}
.x11d_c00486{left:581.850000px;}
.x10f_c00486{left:583.500000px;}
.xf5_c00486{left:587.700000px;}
.xc6_c00486{left:589.350000px;}
.xb8_c00486{left:592.200000px;}
.xbf_c00486{left:595.200000px;}
.xe0_c00486{left:596.400000px;}
.x129_c00486{left:597.900000px;}
.x108_c00486{left:601.200000px;}
.x147_c00486{left:604.350000px;}
.xee_c00486{left:607.050000px;}
.x112_c00486{left:610.200000px;}
.x103_c00486{left:612.900000px;}
.xf6_c00486{left:614.700000px;}
.xaf_c00486{left:618.150000px;}
.xc7_c00486{left:619.200000px;}
.xfe_c00486{left:620.550000px;}
.xd6_c00486{left:624.000000px;}
.xc0_c00486{left:627.900000px;}
.xcf_c00486{left:630.000000px;}
.x13d_c00486{left:631.500000px;}
.xe9_c00486{left:632.550000px;}
.xc8_c00486{left:634.650000px;}
.x116_c00486{left:637.200000px;}
.xb9_c00486{left:638.700000px;}
.x124_c00486{left:641.700000px;}
.xe1_c00486{left:642.900000px;}
.x126_c00486{left:646.050000px;}
.x10b_c00486{left:647.100000px;}
.xda_c00486{left:649.050000px;}
.x13e_c00486{left:650.100000px;}
.x146_c00486{left:651.450000px;}
.xd0_c00486{left:652.650000px;}
.x148_c00486{left:654.450000px;}
.xea_c00486{left:655.650000px;}
.xf7_c00486{left:656.850000px;}
.x13b_c00486{left:660.000000px;}
.xba_c00486{left:662.100000px;}
.xdb_c00486{left:664.950000px;}
.xef_c00486{left:666.450000px;}
.x12d_c00486{left:667.500000px;}
.xd7_c00486{left:669.300000px;}
.xc9_c00486{left:671.400000px;}
.x109_c00486{left:673.200000px;}
.xf0_c00486{left:677.550000px;}
.xe2_c00486{left:679.650000px;}
.x10c_c00486{left:681.000000px;}
.x14b_c00486{left:682.350000px;}
.x12a_c00486{left:683.550000px;}
.xb0_c00486{left:685.800000px;}
.x117_c00486{left:687.300000px;}
.xd1_c00486{left:688.950000px;}
.xca_c00486{left:691.500000px;}
.xeb_c00486{left:693.750000px;}
.xe3_c00486{left:695.850000px;}
.x110_c00486{left:697.050000px;}
.x131_c00486{left:699.450000px;}
.x130_c00486{left:700.950000px;}
.xc1_c00486{left:702.450000px;}
.xb1_c00486{left:705.300000px;}
.x104_c00486{left:708.600000px;}
.xf9_c00486{left:711.600000px;}
.xf1_c00486{left:713.250000px;}
.xbb_c00486{left:715.350000px;}
.xec_c00486{left:716.400000px;}
.x111_c00486{left:719.700000px;}
.x12e_c00486{left:722.250000px;}
.x105_c00486{left:725.850000px;}
.xd2_c00486{left:727.050000px;}
.x11e_c00486{left:728.250000px;}
.xdc_c00486{left:729.750000px;}
.xfa_c00486{left:731.700000px;}
.x141_c00486{left:732.750000px;}
.xc2_c00486{left:733.800000px;}
.x118_c00486{left:738.450000px;}
.xb2_c00486{left:739.800000px;}
.xd8_c00486{left:743.550000px;}
.x12b_c00486{left:744.750000px;}
.xcb_c00486{left:746.550000px;}
.xf2_c00486{left:749.250000px;}
.x2_c00486{left:750.600000px;}
.xc3_c00486{left:752.100000px;}
.xdd_c00486{left:753.150000px;}
.xe4_c00486{left:754.950000px;}
.x133_c00486{left:756.750000px;}
.x132_c00486{left:757.800000px;}
.xd3_c00486{left:759.150000px;}
.x121_c00486{left:763.050000px;}
.x127_c00486{left:766.200000px;}
.x11f_c00486{left:767.850000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls2_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:40.000000pt;}
.ls1_c00486{letter-spacing:42.777778pt;}
.ws4_c00486{word-spacing:-69.444444pt;}
.ws3_c00486{word-spacing:-66.666667pt;}
.ws1_c00486{word-spacing:-8.641975pt;}
.ws0_c00486{word-spacing:-7.220157pt;}
.ws6_c00486{word-spacing:-3.137255pt;}
.wsb_c00486{word-spacing:0.000000pt;}
.ws8_c00486{word-spacing:2.779541pt;}
.ws7_c00486{word-spacing:4.603471pt;}
.wsa_c00486{word-spacing:8.148148pt;}
.ws9_c00486{word-spacing:11.259259pt;}
.ws2_c00486{word-spacing:13.333333pt;}
.ws5_c00486{word-spacing:22.857143pt;}
._1_c00486{margin-left:-42.777778pt;}
._0_c00486{margin-left:-40.000000pt;}
.fsa_c00486{font-size:21.333333pt;}
.fs9_c00486{font-size:26.666667pt;}
.fs7_c00486{font-size:32.000000pt;}
.fs8_c00486{font-size:37.333333pt;}
.fs5_c00486{font-size:42.666667pt;}
.fs4_c00486{font-size:48.000000pt;}
.fs2_c00486{font-size:53.333333pt;}
.fs3_c00486{font-size:58.666667pt;}
.fs6_c00486{font-size:64.000000pt;}
.fs1_c00486{font-size:69.333333pt;}
.fs0_c00486{font-size:90.666667pt;}
.y0_c00486{bottom:0.000000pt;}
.y7b_c00486{bottom:3.866667pt;}
.y7a_c00486{bottom:154.933333pt;}
.y3a_c00486{bottom:170.266667pt;}
.y79_c00486{bottom:170.800000pt;}
.y39_c00486{bottom:186.266667pt;}
.y78_c00486{bottom:186.533333pt;}
.y38_c00486{bottom:202.266667pt;}
.y77_c00486{bottom:206.266667pt;}
.y37_c00486{bottom:218.000000pt;}
.y76_c00486{bottom:222.000000pt;}
.y36_c00486{bottom:234.000000pt;}
.y75_c00486{bottom:238.000000pt;}
.y35_c00486{bottom:249.733333pt;}
.y74_c00486{bottom:253.333333pt;}
.y34_c00486{bottom:265.733333pt;}
.y73_c00486{bottom:269.066667pt;}
.y33_c00486{bottom:281.733333pt;}
.y72_c00486{bottom:285.066667pt;}
.y32_c00486{bottom:297.466667pt;}
.y71_c00486{bottom:300.800000pt;}
.y31_c00486{bottom:313.466667pt;}
.y70_c00486{bottom:316.533333pt;}
.y30_c00486{bottom:329.200000pt;}
.y6f_c00486{bottom:332.533333pt;}
.y2f_c00486{bottom:345.200000pt;}
.y6e_c00486{bottom:348.266667pt;}
.y2e_c00486{bottom:360.933333pt;}
.y6d_c00486{bottom:364.000000pt;}
.y2d_c00486{bottom:376.266667pt;}
.y6c_c00486{bottom:379.733333pt;}
.y2c_c00486{bottom:392.000000pt;}
.y6b_c00486{bottom:395.466667pt;}
.y2b_c00486{bottom:408.000000pt;}
.y6a_c00486{bottom:411.200000pt;}
.y2a_c00486{bottom:423.733333pt;}
.y69_c00486{bottom:427.200000pt;}
.y29_c00486{bottom:439.466667pt;}
.y65_c00486{bottom:445.466667pt;}
.y68_c00486{bottom:446.133333pt;}
.y64_c00486{bottom:455.333333pt;}
.y28_c00486{bottom:455.466667pt;}
.y66_c00486{bottom:457.866667pt;}
.y67_c00486{bottom:458.933333pt;}
.y27_c00486{bottom:471.200000pt;}
.y63_c00486{bottom:472.000000pt;}
.y61_c00486{bottom:483.200000pt;}
.y62_c00486{bottom:484.533333pt;}
.y26_c00486{bottom:487.200000pt;}
.y60_c00486{bottom:496.000000pt;}
.y25_c00486{bottom:502.933333pt;}
.y5f_c00486{bottom:510.666667pt;}
.y24_c00486{bottom:518.933333pt;}
.y5e_c00486{bottom:530.266667pt;}
.y23_c00486{bottom:534.666667pt;}
.y5d_c00486{bottom:546.266667pt;}
.y22_c00486{bottom:550.666667pt;}
.y5c_c00486{bottom:562.266667pt;}
.y21_c00486{bottom:566.666667pt;}
.y5b_c00486{bottom:578.266667pt;}
.y20_c00486{bottom:582.400000pt;}
.y5a_c00486{bottom:593.600000pt;}
.y1f_c00486{bottom:598.133333pt;}
.y59_c00486{bottom:609.600000pt;}
.y1e_c00486{bottom:613.466667pt;}
.y58_c00486{bottom:625.333333pt;}
.y1d_c00486{bottom:635.866667pt;}
.y57_c00486{bottom:644.666667pt;}
.y1c_c00486{bottom:648.400000pt;}
.y42_c00486{bottom:649.333333pt;}
.y56_c00486{bottom:660.400000pt;}
.y1b_c00486{bottom:660.933333pt;}
.y1a_c00486{bottom:674.000000pt;}
.y55_c00486{bottom:676.133333pt;}
.y19_c00486{bottom:686.533333pt;}
.y54_c00486{bottom:692.133333pt;}
.y18_c00486{bottom:699.333333pt;}
.y53_c00486{bottom:711.600000pt;}
.y17_c00486{bottom:712.133333pt;}
.y41_c00486{bottom:724.800000pt;}
.y16_c00486{bottom:724.933333pt;}
.y52_c00486{bottom:727.333333pt;}
.y15_c00486{bottom:737.466667pt;}
.y14_c00486{bottom:750.000000pt;}
.y3f_c00486{bottom:751.333333pt;}
.y51_c00486{bottom:754.533333pt;}
.y13_c00486{bottom:762.800000pt;}
.y50_c00486{bottom:770.533333pt;}
.y40_c00486{bottom:775.066667pt;}
.y12_c00486{bottom:775.333333pt;}
.y4f_c00486{bottom:786.266667pt;}
.y11_c00486{bottom:788.800000pt;}
.y10_c00486{bottom:801.600000pt;}
.y4e_c00486{bottom:809.600000pt;}
.y3d_c00486{bottom:813.466667pt;}
.yf_c00486{bottom:813.733333pt;}
.y3e_c00486{bottom:815.066667pt;}
.y4d_c00486{bottom:825.333333pt;}
.ye_c00486{bottom:826.266667pt;}
.y3c_c00486{bottom:827.866667pt;}
.yd_c00486{bottom:839.733333pt;}
.y4c_c00486{bottom:841.333333pt;}
.yc_c00486{bottom:852.400000pt;}
.y3b_c00486{bottom:852.800000pt;}
.y4b_c00486{bottom:857.066667pt;}
.yb_c00486{bottom:864.933333pt;}
.y4a_c00486{bottom:872.400000pt;}
.ya_c00486{bottom:877.733333pt;}
.y49_c00486{bottom:888.400000pt;}
.y9_c00486{bottom:892.133333pt;}
.y48_c00486{bottom:904.133333pt;}
.y8_c00486{bottom:911.866667pt;}
.y47_c00486{bottom:919.866667pt;}
.y7_c00486{bottom:927.866667pt;}
.y46_c00486{bottom:935.600000pt;}
.y6_c00486{bottom:943.866667pt;}
.y45_c00486{bottom:951.333333pt;}
.y5_c00486{bottom:959.600000pt;}
.y44_c00486{bottom:975.066667pt;}
.y4_c00486{bottom:975.333333pt;}
.y3_c00486{bottom:990.666667pt;}
.y43_c00486{bottom:991.066667pt;}
.y2_c00486{bottom:1014.133333pt;}
.y1_c00486{bottom:1033.600000pt;}
.hb_c00486{height:21.333333pt;}
.ha_c00486{height:26.666667pt;}
.h8_c00486{height:32.000000pt;}
.h9_c00486{height:37.333333pt;}
.h6_c00486{height:42.666667pt;}
.h5_c00486{height:48.000000pt;}
.h3_c00486{height:53.333333pt;}
.h4_c00486{height:58.666667pt;}
.h7_c00486{height:64.000000pt;}
.h2_c00486{height:69.333333pt;}
.h1_c00486{height:90.666667pt;}
.h0_c00486{height:1128.000000pt;}
.w0_c00486{width:851.840007pt;}
.w1_c00486{width:852.000000pt;}
.x0_c00486{left:0.000000pt;}
.x69_c00486{left:71.066667pt;}
.x27_c00486{left:72.266667pt;}
.xaa_c00486{left:81.600000pt;}
.xa1_c00486{left:83.066667pt;}
.x40_c00486{left:84.533333pt;}
.x2e_c00486{left:85.733333pt;}
.xa_c00486{left:87.333333pt;}
.x3_c00486{left:88.933333pt;}
.x92_c00486{left:93.066667pt;}
.x4d_c00486{left:97.333333pt;}
.x3b_c00486{left:98.266667pt;}
.x2f_c00486{left:101.733333pt;}
.x49_c00486{left:103.733333pt;}
.x35_c00486{left:106.933333pt;}
.x96_c00486{left:108.533333pt;}
.x5d_c00486{left:109.866667pt;}
.xa2_c00486{left:112.800000pt;}
.x36_c00486{left:114.666667pt;}
.x19_c00486{left:115.866667pt;}
.x42_c00486{left:117.733333pt;}
.x8d_c00486{left:118.800000pt;}
.x99_c00486{left:119.866667pt;}
.x1f_c00486{left:121.066667pt;}
.x12_c00486{left:122.400000pt;}
.x5e_c00486{left:123.600000pt;}
.x4_c00486{left:125.466667pt;}
.x89_c00486{left:127.866667pt;}
.x7d_c00486{left:128.800000pt;}
.x28_c00486{left:130.533333pt;}
.x1a_c00486{left:132.133333pt;}
.xb_c00486{left:133.733333pt;}
.x61_c00486{left:135.333333pt;}
.x13_c00486{left:139.733333pt;}
.x78_c00486{left:140.666667pt;}
.x70_c00486{left:141.600000pt;}
.x50_c00486{left:143.466667pt;}
.x4a_c00486{left:145.333333pt;}
.x3c_c00486{left:147.200000pt;}
.x83_c00486{left:149.333333pt;}
.xc_c00486{left:150.666667pt;}
.x5a_c00486{left:152.533333pt;}
.x97_c00486{left:153.600000pt;}
.x44_c00486{left:154.533333pt;}
.x5f_c00486{left:156.533333pt;}
.x64_c00486{left:157.733333pt;}
.x30_c00486{left:159.600000pt;}
.xa7_c00486{left:160.800000pt;}
.x57_c00486{left:161.866667pt;}
.x93_c00486{left:162.800000pt;}
.x3d_c00486{left:164.533333pt;}
.x73_c00486{left:166.133333pt;}
.x14_c00486{left:167.200000pt;}
.x32_c00486{left:170.000000pt;}
.x26_c00486{left:171.333333pt;}
.x45_c00486{left:173.066667pt;}
.x5_c00486{left:174.400000pt;}
.x15_c00486{left:175.466667pt;}
.xd_c00486{left:177.200000pt;}
.x80_c00486{left:178.266667pt;}
.x43_c00486{left:180.800000pt;}
.x58_c00486{left:182.400000pt;}
.x20_c00486{left:184.133333pt;}
.x37_c00486{left:185.066667pt;}
.xe_c00486{left:186.533333pt;}
.x46_c00486{left:188.133333pt;}
.x6_c00486{left:189.466667pt;}
.x4b_c00486{left:192.400000pt;}
.x3e_c00486{left:194.266667pt;}
.x82_c00486{left:196.533333pt;}
.x4e_c00486{left:197.466667pt;}
.xa3_c00486{left:198.533333pt;}
.x6d_c00486{left:200.000000pt;}
.xa0_c00486{left:201.200000pt;}
.x76_c00486{left:202.933333pt;}
.x9a_c00486{left:204.666667pt;}
.x4c_c00486{left:206.133333pt;}
.x8e_c00486{left:207.466667pt;}
.x31_c00486{left:210.133333pt;}
.x3f_c00486{left:211.600000pt;}
.x5b_c00486{left:213.600000pt;}
.x29_c00486{left:214.666667pt;}
.x16_c00486{left:216.133333pt;}
.x74_c00486{left:217.333333pt;}
.x7_c00486{left:218.266667pt;}
.x47_c00486{left:219.866667pt;}
.x59_c00486{left:221.066667pt;}
.x8f_c00486{left:222.800000pt;}
.x7b_c00486{left:224.800000pt;}
.x1b_c00486{left:227.466667pt;}
.x21_c00486{left:228.666667pt;}
.x84_c00486{left:229.866667pt;}
.x51_c00486{left:230.800000pt;}
.xa4_c00486{left:232.800000pt;}
.x2a_c00486{left:233.866667pt;}
.x33_c00486{left:234.933333pt;}
.x38_c00486{left:236.933333pt;}
.x91_c00486{left:238.000000pt;}
.x98_c00486{left:238.933333pt;}
.x22_c00486{left:240.533333pt;}
.x4f_c00486{left:242.666667pt;}
.x52_c00486{left:243.866667pt;}
.x62_c00486{left:245.333333pt;}
.x9b_c00486{left:246.266667pt;}
.x85_c00486{left:247.733333pt;}
.x60_c00486{left:250.000000pt;}
.x65_c00486{left:251.466667pt;}
.x9f_c00486{left:252.666667pt;}
.x39_c00486{left:255.200000pt;}
.x53_c00486{left:256.666667pt;}
.x17_c00486{left:258.000000pt;}
.x81_c00486{left:258.933333pt;}
.x8a_c00486{left:260.933333pt;}
.x54_c00486{left:263.333333pt;}
.x23_c00486{left:264.800000pt;}
.x18_c00486{left:266.000000pt;}
.x5c_c00486{left:268.266667pt;}
.xa8_c00486{left:269.200000pt;}
.x48_c00486{left:270.400000pt;}
.x88_c00486{left:273.200000pt;}
.x75_c00486{left:274.933333pt;}
.x1_c00486{left:275.866667pt;}
.x34_c00486{left:277.466667pt;}
.x1c_c00486{left:278.933333pt;}
.x55_c00486{left:282.533333pt;}
.x63_c00486{left:283.733333pt;}
.x6e_c00486{left:284.800000pt;}
.x8_c00486{left:285.733333pt;}
.x56_c00486{left:289.200000pt;}
.x3a_c00486{left:290.800000pt;}
.xa5_c00486{left:292.000000pt;}
.x9c_c00486{left:293.600000pt;}
.xa9_c00486{left:297.200000pt;}
.x71_c00486{left:298.666667pt;}
.x86_c00486{left:300.266667pt;}
.x2b_c00486{left:301.333333pt;}
.x94_c00486{left:303.333333pt;}
.xab_c00486{left:304.666667pt;}
.x66_c00486{left:305.866667pt;}
.xf_c00486{left:307.466667pt;}
.x6a_c00486{left:308.400000pt;}
.x41_c00486{left:309.466667pt;}
.x90_c00486{left:310.400000pt;}
.x9d_c00486{left:311.866667pt;}
.x24_c00486{left:312.800000pt;}
.x7c_c00486{left:315.333333pt;}
.x6f_c00486{left:318.400000pt;}
.x8b_c00486{left:319.466667pt;}
.x7e_c00486{left:321.866667pt;}
.x10_c00486{left:323.466667pt;}
.x95_c00486{left:324.400000pt;}
.x6b_c00486{left:326.666667pt;}
.x79_c00486{left:327.600000pt;}
.x2c_c00486{left:328.533333pt;}
.x1d_c00486{left:330.400000pt;}
.x67_c00486{left:332.133333pt;}
.x6c_c00486{left:334.000000pt;}
.x77_c00486{left:335.466667pt;}
.x87_c00486{left:337.733333pt;}
.xa6_c00486{left:339.066667pt;}
.x8c_c00486{left:340.933333pt;}
.x9_c00486{left:342.666667pt;}
.x1e_c00486{left:343.866667pt;}
.x7f_c00486{left:344.933333pt;}
.x7a_c00486{left:350.000000pt;}
.x72_c00486{left:352.800000pt;}
.x9e_c00486{left:355.733333pt;}
.x68_c00486{left:357.066667pt;}
.x2d_c00486{left:358.666667pt;}
.x25_c00486{left:361.066667pt;}
.x11_c00486{left:364.400000pt;}
.x14d_c00486{left:370.266667pt;}
.x149_c00486{left:382.400000pt;}
.x12c_c00486{left:386.533333pt;}
.x113_c00486{left:388.133333pt;}
.xf8_c00486{left:389.466667pt;}
.xb5_c00486{left:392.000000pt;}
.x14e_c00486{left:394.000000pt;}
.x14a_c00486{left:395.866667pt;}
.x144_c00486{left:397.866667pt;}
.x12f_c00486{left:398.800000pt;}
.x13f_c00486{left:400.000000pt;}
.x120_c00486{left:401.200000pt;}
.x10d_c00486{left:402.133333pt;}
.xfb_c00486{left:403.066667pt;}
.xe5_c00486{left:404.800000pt;}
.xcc_c00486{left:405.733333pt;}
.xac_c00486{left:407.066667pt;}
.x134_c00486{left:410.933333pt;}
.x138_c00486{left:415.733333pt;}
.x13a_c00486{left:418.933333pt;}
.x106_c00486{left:421.066667pt;}
.xb3_c00486{left:422.933333pt;}
.xbc_c00486{left:424.400000pt;}
.x114_c00486{left:426.266667pt;}
.x10a_c00486{left:428.133333pt;}
.xc4_c00486{left:430.133333pt;}
.x135_c00486{left:431.200000pt;}
.x101_c00486{left:432.266667pt;}
.xd9_c00486{left:434.933333pt;}
.x142_c00486{left:438.533333pt;}
.x119_c00486{left:439.466667pt;}
.x145_c00486{left:440.800000pt;}
.xb6_c00486{left:442.933333pt;}
.xe6_c00486{left:444.533333pt;}
.xad_c00486{left:445.733333pt;}
.xde_c00486{left:448.933333pt;}
.x11a_c00486{left:450.666667pt;}
.xff_c00486{left:452.400000pt;}
.xb4_c00486{left:453.333333pt;}
.xfc_c00486{left:455.866667pt;}
.x122_c00486{left:458.000000pt;}
.x10e_c00486{left:460.400000pt;}
.x107_c00486{left:461.333333pt;}
.x137_c00486{left:463.066667pt;}
.xd4_c00486{left:464.133333pt;}
.x11b_c00486{left:465.333333pt;}
.xcd_c00486{left:466.800000pt;}
.x102_c00486{left:467.733333pt;}
.x100_c00486{left:469.066667pt;}
.x125_c00486{left:472.533333pt;}
.x123_c00486{left:474.000000pt;}
.xbd_c00486{left:476.266667pt;}
.xd5_c00486{left:477.600000pt;}
.x13c_c00486{left:478.933333pt;}
.xb7_c00486{left:482.933333pt;}
.x115_c00486{left:484.133333pt;}
.x14c_c00486{left:486.400000pt;}
.xf3_c00486{left:487.466667pt;}
.xe7_c00486{left:489.333333pt;}
.x11c_c00486{left:491.600000pt;}
.xce_c00486{left:493.066667pt;}
.xdf_c00486{left:497.466667pt;}
.xc5_c00486{left:499.200000pt;}
.xfd_c00486{left:500.666667pt;}
.x143_c00486{left:502.533333pt;}
.xae_c00486{left:504.000000pt;}
.x139_c00486{left:505.066667pt;}
.xbe_c00486{left:506.000000pt;}
.xe8_c00486{left:507.200000pt;}
.xed_c00486{left:509.200000pt;}
.x128_c00486{left:510.933333pt;}
.xf4_c00486{left:512.133333pt;}
.x140_c00486{left:513.866667pt;}
.x136_c00486{left:515.200000pt;}
.x11d_c00486{left:517.200000pt;}
.x10f_c00486{left:518.666667pt;}
.xf5_c00486{left:522.400000pt;}
.xc6_c00486{left:523.866667pt;}
.xb8_c00486{left:526.400000pt;}
.xbf_c00486{left:529.066667pt;}
.xe0_c00486{left:530.133333pt;}
.x129_c00486{left:531.466667pt;}
.x108_c00486{left:534.400000pt;}
.x147_c00486{left:537.200000pt;}
.xee_c00486{left:539.600000pt;}
.x112_c00486{left:542.400000pt;}
.x103_c00486{left:544.800000pt;}
.xf6_c00486{left:546.400000pt;}
.xaf_c00486{left:549.466667pt;}
.xc7_c00486{left:550.400000pt;}
.xfe_c00486{left:551.600000pt;}
.xd6_c00486{left:554.666667pt;}
.xc0_c00486{left:558.133333pt;}
.xcf_c00486{left:560.000000pt;}
.x13d_c00486{left:561.333333pt;}
.xe9_c00486{left:562.266667pt;}
.xc8_c00486{left:564.133333pt;}
.x116_c00486{left:566.400000pt;}
.xb9_c00486{left:567.733333pt;}
.x124_c00486{left:570.400000pt;}
.xe1_c00486{left:571.466667pt;}
.x126_c00486{left:574.266667pt;}
.x10b_c00486{left:575.200000pt;}
.xda_c00486{left:576.933333pt;}
.x13e_c00486{left:577.866667pt;}
.x146_c00486{left:579.066667pt;}
.xd0_c00486{left:580.133333pt;}
.x148_c00486{left:581.733333pt;}
.xea_c00486{left:582.800000pt;}
.xf7_c00486{left:583.866667pt;}
.x13b_c00486{left:586.666667pt;}
.xba_c00486{left:588.533333pt;}
.xdb_c00486{left:591.066667pt;}
.xef_c00486{left:592.400000pt;}
.x12d_c00486{left:593.333333pt;}
.xd7_c00486{left:594.933333pt;}
.xc9_c00486{left:596.800000pt;}
.x109_c00486{left:598.400000pt;}
.xf0_c00486{left:602.266667pt;}
.xe2_c00486{left:604.133333pt;}
.x10c_c00486{left:605.333333pt;}
.x14b_c00486{left:606.533333pt;}
.x12a_c00486{left:607.600000pt;}
.xb0_c00486{left:609.600000pt;}
.x117_c00486{left:610.933333pt;}
.xd1_c00486{left:612.400000pt;}
.xca_c00486{left:614.666667pt;}
.xeb_c00486{left:616.666667pt;}
.xe3_c00486{left:618.533333pt;}
.x110_c00486{left:619.600000pt;}
.x131_c00486{left:621.733333pt;}
.x130_c00486{left:623.066667pt;}
.xc1_c00486{left:624.400000pt;}
.xb1_c00486{left:626.933333pt;}
.x104_c00486{left:629.866667pt;}
.xf9_c00486{left:632.533333pt;}
.xf1_c00486{left:634.000000pt;}
.xbb_c00486{left:635.866667pt;}
.xec_c00486{left:636.800000pt;}
.x111_c00486{left:639.733333pt;}
.x12e_c00486{left:642.000000pt;}
.x105_c00486{left:645.200000pt;}
.xd2_c00486{left:646.266667pt;}
.x11e_c00486{left:647.333333pt;}
.xdc_c00486{left:648.666667pt;}
.xfa_c00486{left:650.400000pt;}
.x141_c00486{left:651.333333pt;}
.xc2_c00486{left:652.266667pt;}
.x118_c00486{left:656.400000pt;}
.xb2_c00486{left:657.600000pt;}
.xd8_c00486{left:660.933333pt;}
.x12b_c00486{left:662.000000pt;}
.xcb_c00486{left:663.600000pt;}
.xf2_c00486{left:666.000000pt;}
.x2_c00486{left:667.200000pt;}
.xc3_c00486{left:668.533333pt;}
.xdd_c00486{left:669.466667pt;}
.xe4_c00486{left:671.066667pt;}
.x133_c00486{left:672.666667pt;}
.x132_c00486{left:673.600000pt;}
.xd3_c00486{left:674.800000pt;}
.x121_c00486{left:678.266667pt;}
.x127_c00486{left:681.066667pt;}
.x11f_c00486{left:682.533333pt;}
}





/* 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_c00487 {
    display:none;
  }
  .loading-indicator_c00487.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00487 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_c00487 { 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_c00487" -> "#page-container .classname_c00487")
 */
.pf_c00487 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00487 { /* 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_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00487 { /* 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_c00487 { /* 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_c00487 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00487 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00487 {overflow:visible;}
  }
}
.c_c00487 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00487 { /* 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_c00487:after { /* webkit #35443 */
  content: '';
}
.t_c00487:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00487 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 */
}
.__c00487 { /* 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_c00487 { /* info for Javascript */
  display:none;
}
.l_c00487 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00487 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00487 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00487: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_c00487 {
    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_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00487.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_c00487 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00487{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00487;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.000000;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;}
.m10e_c00487{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00487{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m78_c00487{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00487{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m98_c00487{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m26_c00487{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m95_c00487{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00487{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m97_c00487{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00487{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00487{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m30_c00487{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00487{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00487{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00487{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m52_c00487{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00487{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00487{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m23_c00487{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m123_c00487{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00487{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00487{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00487{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00487{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m80_c00487{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m31_c00487{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00487{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m61_c00487{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m33_c00487{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00487{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m68_c00487{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00487{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00487{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00487{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m96_c00487{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf_c00487{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00487{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00487{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00487{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m99_c00487{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m6_c00487{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00487{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m24_c00487{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m64_c00487{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00487{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m25_c00487{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00487{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00487{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.md9_c00487{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mee_c00487{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m43_c00487{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00487{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00487{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m122_c00487{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00487{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m129_c00487{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m47_c00487{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m81_c00487{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m8_c00487{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m66_c00487{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m87_c00487{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00487{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00487{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00487{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md8_c00487{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00487{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m12_c00487{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mef_c00487{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m7_c00487{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00487{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00487{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m71_c00487{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mce_c00487{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00487{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m101_c00487{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3_c00487{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m17_c00487{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m59_c00487{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m9_c00487{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00487{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m126_c00487{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00487{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00487{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m34_c00487{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m57_c00487{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m22_c00487{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00487{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.med_c00487{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00487{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m82_c00487{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00487{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m127_c00487{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m60_c00487{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.md1_c00487{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m20_c00487{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00487{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mae_c00487{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11_c00487{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00487{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00487{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mec_c00487{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4_c00487{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00487{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00487{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m18_c00487{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m46_c00487{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m38_c00487{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m84_c00487{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00487{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00487{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00487{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00487{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me8_c00487{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m62_c00487{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00487{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00487{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m58_c00487{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m86_c00487{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m76_c00487{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mda_c00487{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.me7_c00487{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00487{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00487{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mff_c00487{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md3_c00487{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m77_c00487{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00487{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m65_c00487{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m124_c00487{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m45_c00487{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m35_c00487{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00487{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m41_c00487{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m113_c00487{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m105_c00487{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00487{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me1_c00487{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m85_c00487{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00487{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00487{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00487{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m0_c00487{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00487{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m32_c00487{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mea_c00487{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m10_c00487{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00487{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m36_c00487{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00487{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00487{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00487{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m118_c00487{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00487{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00487{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.md2_c00487{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00487{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00487{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00487{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m16_c00487{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mba_c00487{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00487{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00487{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00487{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00487{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m49_c00487{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00487{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.me2_c00487{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5_c00487{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00487{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me6_c00487{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m79_c00487{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00487{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me4_c00487{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m21_c00487{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m15_c00487{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md7_c00487{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.meb_c00487{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m42_c00487{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me_c00487{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00487{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00487{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mde_c00487{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.maa_c00487{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md5_c00487{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00487{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00487{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m55_c00487{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00487{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m29_c00487{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00487{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me3_c00487{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00487{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00487{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00487{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma_c00487{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m83_c00487{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m128_c00487{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m70_c00487{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00487{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.md_c00487{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00487{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00487{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mad_c00487{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.md0_c00487{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.maf_c00487{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m56_c00487{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m89_c00487{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00487{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m50_c00487{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00487{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00487{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00487{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m90_c00487{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.me0_c00487{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00487{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m48_c00487{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md4_c00487{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m94_c00487{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00487{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m19_c00487{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m93_c00487{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m72_c00487{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m114_c00487{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00487{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m75_c00487{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m102_c00487{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m125_c00487{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m115_c00487{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);}
.m11d_c00487{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m69_c00487{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m28_c00487{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00487{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m116_c00487{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m120_c00487{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m37_c00487{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m104_c00487{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00487{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mac_c00487{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m107_c00487{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md6_c00487{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m119_c00487{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m92_c00487{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00487{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m88_c00487{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00487{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m44_c00487{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00487{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m106_c00487{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.mb_c00487{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me5_c00487{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00487{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.me9_c00487{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00487{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00487{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00487{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m108_c00487{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m110_c00487{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00487{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m74_c00487{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00487{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mc_c00487{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00487{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m51_c00487{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00487{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00487{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m117_c00487{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m53_c00487{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00487{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00487{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00487{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00487{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00487{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m39_c00487{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m112_c00487{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m13_c00487{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m54_c00487{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00487{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m109_c00487{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00487{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00487{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m121_c00487{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m111_c00487{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m73_c00487{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m91_c00487{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m100_c00487{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m103_c00487{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00487{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00487{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m67_c00487{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00487{transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);}
.m63_c00487{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.mab_c00487{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00487{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00487{transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);}
.m40_c00487{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.mca_c00487{transform:matrix(0.578750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578750,0.000000,0.000000,0.250000,0,0);}
.m2_c00487{transform:matrix(0.711500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711500,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls0_c00487{letter-spacing:0.000000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{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__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00487{word-spacing:-6.250000px;}
.ws1_c00487{word-spacing:-4.407821px;}
.ws7_c00487{word-spacing:-1.657682px;}
.ws8_c00487{word-spacing:0.000000px;}
.ws6_c00487{word-spacing:4.062500px;}
.ws0_c00487{word-spacing:5.243902px;}
.ws5_c00487{word-spacing:11.388889px;}
.ws3_c00487{word-spacing:26.428954px;}
.ws2_c00487{word-spacing:36.000000px;}
._0_c00487{width:66.750000px;}
.fc0_c00487{color:transparent;}
.fs8_c00487{font-size:24.000000px;}
.fs9_c00487{font-size:30.000000px;}
.fs2_c00487{font-size:42.000000px;}
.fs7_c00487{font-size:54.000000px;}
.fs4_c00487{font-size:60.000000px;}
.fs3_c00487{font-size:66.000000px;}
.fs6_c00487{font-size:72.000000px;}
.fs1_c00487{font-size:78.000000px;}
.fs5_c00487{font-size:84.000000px;}
.fs0_c00487{font-size:90.000000px;}
.y0_c00487{bottom:0.000000px;}
.y3_c00487{bottom:15.450000px;}
.y6c_c00487{bottom:205.800000px;}
.y3a_c00487{bottom:206.250000px;}
.y39_c00487{bottom:220.650000px;}
.y6b_c00487{bottom:224.100000px;}
.y38_c00487{bottom:234.750000px;}
.y6a_c00487{bottom:241.800000px;}
.y37_c00487{bottom:249.150000px;}
.y69_c00487{bottom:259.500000px;}
.y68_c00487{bottom:284.700000px;}
.y33_c00487{bottom:291.600000px;}
.y67_c00487{bottom:299.100000px;}
.y32_c00487{bottom:309.300000px;}
.y66_c00487{bottom:313.500000px;}
.y31_c00487{bottom:327.000000px;}
.y65_c00487{bottom:334.500000px;}
.y30_c00487{bottom:344.700000px;}
.y64_c00487{bottom:352.050000px;}
.y2f_c00487{bottom:362.700000px;}
.y63_c00487{bottom:370.050000px;}
.y2e_c00487{bottom:380.400000px;}
.y62_c00487{bottom:388.050000px;}
.y2d_c00487{bottom:398.100000px;}
.y61_c00487{bottom:405.300000px;}
.y2c_c00487{bottom:416.400000px;}
.y60_c00487{bottom:423.000000px;}
.y2b_c00487{bottom:434.400000px;}
.y5f_c00487{bottom:441.000000px;}
.y2a_c00487{bottom:452.100000px;}
.y5e_c00487{bottom:462.900000px;}
.y29_c00487{bottom:469.800000px;}
.y5d_c00487{bottom:480.600000px;}
.y28_c00487{bottom:489.900000px;}
.y36_c00487{bottom:491.700000px;}
.y5c_c00487{bottom:498.900000px;}
.y27_c00487{bottom:505.050000px;}
.y35_c00487{bottom:515.550000px;}
.y5b_c00487{bottom:516.300000px;}
.y26_c00487{bottom:518.700000px;}
.y34_c00487{bottom:519.900000px;}
.y5a_c00487{bottom:533.850000px;}
.y25_c00487{bottom:534.900000px;}
.y24_c00487{bottom:548.250000px;}
.y59_c00487{bottom:555.900000px;}
.y23_c00487{bottom:562.200000px;}
.y58_c00487{bottom:573.900000px;}
.y22_c00487{bottom:575.850000px;}
.y21_c00487{bottom:591.750000px;}
.y20_c00487{bottom:604.050000px;}
.y57_c00487{bottom:604.500000px;}
.y1f_c00487{bottom:619.950000px;}
.y56_c00487{bottom:622.800000px;}
.y1e_c00487{bottom:636.150000px;}
.y55_c00487{bottom:640.050000px;}
.y1d_c00487{bottom:654.300000px;}
.y54_c00487{bottom:657.750000px;}
.y1c_c00487{bottom:672.000000px;}
.y53_c00487{bottom:680.100000px;}
.y1b_c00487{bottom:690.000000px;}
.y52_c00487{bottom:698.100000px;}
.y1a_c00487{bottom:707.700000px;}
.y51_c00487{bottom:715.650000px;}
.y19_c00487{bottom:725.400000px;}
.y50_c00487{bottom:736.950000px;}
.y18_c00487{bottom:746.850000px;}
.y4f_c00487{bottom:754.950000px;}
.y17_c00487{bottom:765.150000px;}
.y4e_c00487{bottom:772.650000px;}
.y16_c00487{bottom:782.850000px;}
.y4d_c00487{bottom:790.650000px;}
.y15_c00487{bottom:800.550000px;}
.y4c_c00487{bottom:808.350000px;}
.y14_c00487{bottom:818.250000px;}
.y4b_c00487{bottom:826.350000px;}
.y13_c00487{bottom:835.950000px;}
.y4a_c00487{bottom:843.600000px;}
.y12_c00487{bottom:853.950000px;}
.y49_c00487{bottom:861.600000px;}
.y11_c00487{bottom:871.650000px;}
.y48_c00487{bottom:879.600000px;}
.y10_c00487{bottom:889.350000px;}
.y47_c00487{bottom:897.600000px;}
.yf_c00487{bottom:907.350000px;}
.y46_c00487{bottom:914.850000px;}
.ye_c00487{bottom:924.600000px;}
.y45_c00487{bottom:932.850000px;}
.yd_c00487{bottom:942.900000px;}
.y44_c00487{bottom:950.850000px;}
.yc_c00487{bottom:964.800000px;}
.y43_c00487{bottom:968.550000px;}
.y42_c00487{bottom:986.250000px;}
.yb_c00487{bottom:992.850000px;}
.y41_c00487{bottom:1004.250000px;}
.ya_c00487{bottom:1012.350000px;}
.y40_c00487{bottom:1021.950000px;}
.y9_c00487{bottom:1038.600000px;}
.y3f_c00487{bottom:1039.650000px;}
.y8_c00487{bottom:1056.900000px;}
.y3e_c00487{bottom:1057.350000px;}
.y7_c00487{bottom:1074.600000px;}
.y3d_c00487{bottom:1075.050000px;}
.y6_c00487{bottom:1092.600000px;}
.y3c_c00487{bottom:1092.750000px;}
.y5_c00487{bottom:1110.300000px;}
.y3b_c00487{bottom:1111.050000px;}
.y4_c00487{bottom:1128.300000px;}
.y1_c00487{bottom:1152.300000px;}
.y2_c00487{bottom:1154.100000px;}
.ha_c00487{height:24.000000px;}
.hb_c00487{height:30.000000px;}
.h4_c00487{height:42.000000px;}
.h9_c00487{height:54.000000px;}
.h6_c00487{height:60.000000px;}
.h5_c00487{height:66.000000px;}
.h8_c00487{height:72.000000px;}
.h3_c00487{height:78.000000px;}
.h7_c00487{height:84.000000px;}
.h2_c00487{height:90.000000px;}
.h1_c00487{height:1276.500000px;}
.h0_c00487{height:1276.559967px;}
.w0_c00487{width:958.320007px;}
.w1_c00487{width:958.500000px;}
.x0_c00487{left:0.000000px;}
.x3_c00487{left:74.100000px;}
.x4_c00487{left:143.250000px;}
.x27_c00487{left:177.900000px;}
.x1_c00487{left:178.950000px;}
.x7a_c00487{left:181.350000px;}
.x6d_c00487{left:182.850000px;}
.x8a_c00487{left:184.650000px;}
.xa6_c00487{left:186.450000px;}
.x3b_c00487{left:196.800000px;}
.x45_c00487{left:198.000000px;}
.x5_c00487{left:199.050000px;}
.x6a_c00487{left:200.400000px;}
.x64_c00487{left:201.900000px;}
.x92_c00487{left:203.550000px;}
.x9e_c00487{left:204.750000px;}
.x65_c00487{left:210.150000px;}
.x7c_c00487{left:212.100000px;}
.x88_c00487{left:213.150000px;}
.x35_c00487{left:217.800000px;}
.x71_c00487{left:220.350000px;}
.x67_c00487{left:221.550000px;}
.x2e_c00487{left:223.200000px;}
.x85_c00487{left:226.350000px;}
.xd_c00487{left:227.700000px;}
.xa2_c00487{left:229.350000px;}
.x3f_c00487{left:231.600000px;}
.x7f_c00487{left:233.550000px;}
.x46_c00487{left:234.750000px;}
.x75_c00487{left:235.950000px;}
.x68_c00487{left:239.550000px;}
.x86_c00487{left:241.500000px;}
.x20_c00487{left:242.700000px;}
.x72_c00487{left:243.750000px;}
.x6f_c00487{left:245.100000px;}
.x28_c00487{left:248.400000px;}
.x52_c00487{left:249.750000px;}
.x25_c00487{left:251.850000px;}
.xe_c00487{left:252.900000px;}
.x40_c00487{left:255.000000px;}
.x2f_c00487{left:256.350000px;}
.x6_c00487{left:257.700000px;}
.x87_c00487{left:258.750000px;}
.x9c_c00487{left:260.700000px;}
.x21_c00487{left:262.800000px;}
.x47_c00487{left:264.600000px;}
.x5a_c00487{left:266.550000px;}
.x8d_c00487{left:267.900000px;}
.x56_c00487{left:269.550000px;}
.x99_c00487{left:270.900000px;}
.x9f_c00487{left:273.450000px;}
.x1b_c00487{left:276.150000px;}
.xac_c00487{left:277.350000px;}
.x29_c00487{left:280.500000px;}
.x80_c00487{left:283.200000px;}
.x4c_c00487{left:284.700000px;}
.x41_c00487{left:285.900000px;}
.x60_c00487{left:287.400000px;}
.x15_c00487{left:288.900000px;}
.x6b_c00487{left:290.400000px;}
.x7_c00487{left:293.700000px;}
.xf_c00487{left:295.350000px;}
.x9d_c00487{left:296.700000px;}
.x91_c00487{left:297.900000px;}
.xa3_c00487{left:300.600000px;}
.x36_c00487{left:301.950000px;}
.x22_c00487{left:307.500000px;}
.x93_c00487{left:310.500000px;}
.x5b_c00487{left:311.850000px;}
.x16_c00487{left:313.050000px;}
.xa1_c00487{left:314.250000px;}
.x4d_c00487{left:316.800000px;}
.x8_c00487{left:317.850000px;}
.x7d_c00487{left:319.350000px;}
.x3c_c00487{left:320.550000px;}
.x1c_c00487{left:323.250000px;}
.x48_c00487{left:324.750000px;}
.x37_c00487{left:327.450000px;}
.x76_c00487{left:329.100000px;}
.x10_c00487{left:331.350000px;}
.x8e_c00487{left:333.450000px;}
.x42_c00487{left:334.800000px;}
.x30_c00487{left:335.850000px;}
.x61_c00487{left:337.800000px;}
.x7e_c00487{left:338.850000px;}
.x82_c00487{left:342.300000px;}
.x4e_c00487{left:343.500000px;}
.x2a_c00487{left:345.300000px;}
.x49_c00487{left:348.450000px;}
.x1d_c00487{left:349.950000px;}
.xa9_c00487{left:352.500000px;}
.x38_c00487{left:354.150000px;}
.x43_c00487{left:355.650000px;}
.x8f_c00487{left:357.900000px;}
.xa4_c00487{left:358.950000px;}
.x62_c00487{left:360.150000px;}
.x3d_c00487{left:361.650000px;}
.x6e_c00487{left:364.350000px;}
.x53_c00487{left:367.800000px;}
.x2b_c00487{left:370.200000px;}
.x4f_c00487{left:374.100000px;}
.xaa_c00487{left:375.600000px;}
.x26_c00487{left:378.150000px;}
.x90_c00487{left:379.500000px;}
.x39_c00487{left:381.450000px;}
.x5c_c00487{left:382.650000px;}
.x17_c00487{left:384.750000px;}
.x31_c00487{left:387.750000px;}
.x6c_c00487{left:389.400000px;}
.x73_c00487{left:391.050000px;}
.x3e_c00487{left:393.000000px;}
.x94_c00487{left:394.050000px;}
.xa7_c00487{left:395.400000px;}
.x97_c00487{left:396.900000px;}
.x32_c00487{left:398.250000px;}
.x11_c00487{left:400.050000px;}
.x9_c00487{left:403.500000px;}
.x2c_c00487{left:405.450000px;}
.x81_c00487{left:406.500000px;}
.x33_c00487{left:407.550000px;}
.x4a_c00487{left:409.650000px;}
.x83_c00487{left:411.750000px;}
.x1e_c00487{left:414.000000px;}
.x44_c00487{left:415.800000px;}
.x12_c00487{left:417.750000px;}
.x66_c00487{left:419.250000px;}
.x70_c00487{left:420.450000px;}
.xa_c00487{left:421.800000px;}
.x69_c00487{left:423.900000px;}
.x2_c00487{left:425.550000px;}
.x18_c00487{left:426.900000px;}
.x2d_c00487{left:428.850000px;}
.x8b_c00487{left:430.200000px;}
.x9a_c00487{left:431.850000px;}
.x5d_c00487{left:433.050000px;}
.xa0_c00487{left:435.450000px;}
.xa5_c00487{left:436.950000px;}
.x77_c00487{left:438.750000px;}
.x54_c00487{left:440.550000px;}
.x50_c00487{left:441.750000px;}
.x98_c00487{left:444.000000px;}
.x96_c00487{left:445.800000px;}
.x7b_c00487{left:447.450000px;}
.x57_c00487{left:449.100000px;}
.x23_c00487{left:450.300000px;}
.xad_c00487{left:452.250000px;}
.x5e_c00487{left:457.950000px;}
.x34_c00487{left:460.050000px;}
.x55_c00487{left:462.900000px;}
.x19_c00487{left:465.450000px;}
.x24_c00487{left:468.000000px;}
.x78_c00487{left:469.350000px;}
.xb_c00487{left:470.700000px;}
.x51_c00487{left:474.450000px;}
.x58_c00487{left:476.100000px;}
.x13_c00487{left:477.900000px;}
.x89_c00487{left:479.550000px;}
.x1f_c00487{left:480.600000px;}
.x4b_c00487{left:481.650000px;}
.x3a_c00487{left:485.550000px;}
.x63_c00487{left:486.600000px;}
.xc_c00487{left:489.450000px;}
.x74_c00487{left:492.300000px;}
.xa8_c00487{left:493.350000px;}
.x8c_c00487{left:495.750000px;}
.x1a_c00487{left:497.550000px;}
.x14_c00487{left:499.500000px;}
.x84_c00487{left:501.000000px;}
.x79_c00487{left:503.250000px;}
.x5f_c00487{left:505.500000px;}
.x59_c00487{left:507.000000px;}
.x95_c00487{left:509.550000px;}
.xab_c00487{left:513.450000px;}
.x9b_c00487{left:517.200000px;}
.x11a_c00487{left:539.250000px;}
.x136_c00487{left:541.050000px;}
.x147_c00487{left:542.550000px;}
.x116_c00487{left:547.800000px;}
.xae_c00487{left:554.100000px;}
.xce_c00487{left:555.150000px;}
.xe7_c00487{left:556.950000px;}
.x12d_c00487{left:558.300000px;}
.x14b_c00487{left:559.950000px;}
.x12f_c00487{left:561.300000px;}
.xf2_c00487{left:574.650000px;}
.xe1_c00487{left:577.500000px;}
.xe8_c00487{left:578.850000px;}
.x10f_c00487{left:585.750000px;}
.x129_c00487{left:586.800000px;}
.x137_c00487{left:588.150000px;}
.x132_c00487{left:589.950000px;}
.xf8_c00487{left:592.350000px;}
.xd8_c00487{left:593.550000px;}
.xe9_c00487{left:595.350000px;}
.xf3_c00487{left:597.000000px;}
.xbb_c00487{left:598.500000px;}
.xaf_c00487{left:600.600000px;}
.x13c_c00487{left:601.650000px;}
.xcf_c00487{left:604.050000px;}
.xc2_c00487{left:607.650000px;}
.x128_c00487{left:608.700000px;}
.x11d_c00487{left:610.800000px;}
.xd9_c00487{left:612.300000px;}
.x11b_c00487{left:615.450000px;}
.x103_c00487{left:616.800000px;}
.x117_c00487{left:618.300000px;}
.xb4_c00487{left:619.500000px;}
.xfd_c00487{left:620.850000px;}
.xb0_c00487{left:622.500000px;}
.x107_c00487{left:624.000000px;}
.x148_c00487{left:625.050000px;}
.xd0_c00487{left:626.700000px;}
.x101_c00487{left:628.050000px;}
.xc7_c00487{left:629.100000px;}
.x143_c00487{left:631.800000px;}
.xd4_c00487{left:633.300000px;}
.xbc_c00487{left:635.250000px;}
.x14d_c00487{left:637.050000px;}
.x12e_c00487{left:638.250000px;}
.x133_c00487{left:640.050000px;}
.xb5_c00487{left:642.150000px;}
.x11e_c00487{left:645.450000px;}
.xc8_c00487{left:647.400000px;}
.x10a_c00487{left:650.250000px;}
.x11c_c00487{left:654.000000px;}
.xff_c00487{left:656.400000px;}
.x127_c00487{left:657.450000px;}
.xe2_c00487{left:659.100000px;}
.xd5_c00487{left:661.800000px;}
.xf9_c00487{left:663.300000px;}
.x104_c00487{left:665.400000px;}
.xdd_c00487{left:667.950000px;}
.x14c_c00487{left:669.000000px;}
.x102_c00487{left:671.250000px;}
.x123_c00487{left:672.750000px;}
.x13f_c00487{left:676.800000px;}
.x110_c00487{left:677.850000px;}
.xb6_c00487{left:679.200000px;}
.xd1_c00487{left:680.400000px;}
.xf4_c00487{left:681.600000px;}
.xfa_c00487{left:682.800000px;}
.xed_c00487{left:684.150000px;}
.x138_c00487{left:686.100000px;}
.xc3_c00487{left:688.650000px;}
.x112_c00487{left:691.800000px;}
.xbd_c00487{left:693.150000px;}
.xda_c00487{left:695.400000px;}
.xe3_c00487{left:696.600000px;}
.xc9_c00487{left:699.900000px;}
.x121_c00487{left:701.850000px;}
.x139_c00487{left:705.600000px;}
.x144_c00487{left:706.650000px;}
.x10b_c00487{left:708.150000px;}
.x12c_c00487{left:709.200000px;}
.xd2_c00487{left:710.700000px;}
.xc4_c00487{left:713.550000px;}
.xb1_c00487{left:715.350000px;}
.x13b_c00487{left:716.550000px;}
.xca_c00487{left:718.650000px;}
.x11f_c00487{left:720.750000px;}
.x149_c00487{left:723.000000px;}
.xee_c00487{left:724.800000px;}
.x141_c00487{left:725.850000px;}
.x124_c00487{left:729.150000px;}
.xe4_c00487{left:730.800000px;}
.xbe_c00487{left:732.450000px;}
.xea_c00487{left:733.500000px;}
.xef_c00487{left:735.300000px;}
.xb7_c00487{left:736.500000px;}
.x145_c00487{left:738.300000px;}
.x118_c00487{left:741.000000px;}
.xcb_c00487{left:742.350000px;}
.x120_c00487{left:743.400000px;}
.x14a_c00487{left:744.600000px;}
.x105_c00487{left:746.400000px;}
.x142_c00487{left:748.200000px;}
.x13d_c00487{left:751.350000px;}
.xf5_c00487{left:752.850000px;}
.x111_c00487{left:755.250000px;}
.xc5_c00487{left:756.450000px;}
.x140_c00487{left:757.500000px;}
.xd6_c00487{left:759.000000px;}
.x125_c00487{left:761.250000px;}
.x10c_c00487{left:762.450000px;}
.xde_c00487{left:764.100000px;}
.xe5_c00487{left:766.800000px;}
.xb2_c00487{left:769.650000px;}
.x113_c00487{left:771.000000px;}
.xbf_c00487{left:773.550000px;}
.xb8_c00487{left:774.600000px;}
.x146_c00487{left:778.650000px;}
.x108_c00487{left:780.600000px;}
.xd7_c00487{left:782.100000px;}
.x126_c00487{left:783.150000px;}
.xfe_c00487{left:785.700000px;}
.x119_c00487{left:787.500000px;}
.x12a_c00487{left:788.850000px;}
.xfb_c00487{left:790.800000px;}
.x100_c00487{left:791.850000px;}
.xd3_c00487{left:793.200000px;}
.xb9_c00487{left:798.300000px;}
.xdb_c00487{left:801.600000px;}
.xeb_c00487{left:802.650000px;}
.xf0_c00487{left:804.000000px;}
.xc0_c00487{left:807.000000px;}
.xb3_c00487{left:811.050000px;}
.x130_c00487{left:812.850000px;}
.x134_c00487{left:818.250000px;}
.x10d_c00487{left:820.050000px;}
.xcc_c00487{left:821.550000px;}
.x13a_c00487{left:823.350000px;}
.xf1_c00487{left:825.900000px;}
.xdf_c00487{left:828.450000px;}
.x106_c00487{left:830.550000px;}
.x114_c00487{left:831.900000px;}
.xec_c00487{left:832.950000px;}
.xba_c00487{left:837.900000px;}
.x14e_c00487{left:838.950000px;}
.xf6_c00487{left:840.000000px;}
.xe6_c00487{left:842.100000px;}
.xc6_c00487{left:843.600000px;}
.xe0_c00487{left:845.400000px;}
.x115_c00487{left:846.600000px;}
.x12b_c00487{left:848.550000px;}
.x122_c00487{left:849.900000px;}
.xc1_c00487{left:851.250000px;}
.xdc_c00487{left:852.300000px;}
.xcd_c00487{left:857.550000px;}
.x109_c00487{left:858.750000px;}
.xfc_c00487{left:862.500000px;}
.xf7_c00487{left:863.700000px;}
.x131_c00487{left:867.150000px;}
.x10e_c00487{left:868.650000px;}
.x13e_c00487{left:873.150000px;}
.x135_c00487{left:874.800000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws4_c00487{word-spacing:-5.555556pt;}
.ws1_c00487{word-spacing:-3.918063pt;}
.ws7_c00487{word-spacing:-1.473495pt;}
.ws8_c00487{word-spacing:0.000000pt;}
.ws6_c00487{word-spacing:3.611111pt;}
.ws0_c00487{word-spacing:4.661247pt;}
.ws5_c00487{word-spacing:10.123457pt;}
.ws3_c00487{word-spacing:23.492404pt;}
.ws2_c00487{word-spacing:32.000000pt;}
._0_c00487{width:59.333333pt;}
.fs8_c00487{font-size:21.333333pt;}
.fs9_c00487{font-size:26.666667pt;}
.fs2_c00487{font-size:37.333333pt;}
.fs7_c00487{font-size:48.000000pt;}
.fs4_c00487{font-size:53.333333pt;}
.fs3_c00487{font-size:58.666667pt;}
.fs6_c00487{font-size:64.000000pt;}
.fs1_c00487{font-size:69.333333pt;}
.fs5_c00487{font-size:74.666667pt;}
.fs0_c00487{font-size:80.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y3_c00487{bottom:13.733333pt;}
.y6c_c00487{bottom:182.933333pt;}
.y3a_c00487{bottom:183.333333pt;}
.y39_c00487{bottom:196.133333pt;}
.y6b_c00487{bottom:199.200000pt;}
.y38_c00487{bottom:208.666667pt;}
.y6a_c00487{bottom:214.933333pt;}
.y37_c00487{bottom:221.466667pt;}
.y69_c00487{bottom:230.666667pt;}
.y68_c00487{bottom:253.066667pt;}
.y33_c00487{bottom:259.200000pt;}
.y67_c00487{bottom:265.866667pt;}
.y32_c00487{bottom:274.933333pt;}
.y66_c00487{bottom:278.666667pt;}
.y31_c00487{bottom:290.666667pt;}
.y65_c00487{bottom:297.333333pt;}
.y30_c00487{bottom:306.400000pt;}
.y64_c00487{bottom:312.933333pt;}
.y2f_c00487{bottom:322.400000pt;}
.y63_c00487{bottom:328.933333pt;}
.y2e_c00487{bottom:338.133333pt;}
.y62_c00487{bottom:344.933333pt;}
.y2d_c00487{bottom:353.866667pt;}
.y61_c00487{bottom:360.266667pt;}
.y2c_c00487{bottom:370.133333pt;}
.y60_c00487{bottom:376.000000pt;}
.y2b_c00487{bottom:386.133333pt;}
.y5f_c00487{bottom:392.000000pt;}
.y2a_c00487{bottom:401.866667pt;}
.y5e_c00487{bottom:411.466667pt;}
.y29_c00487{bottom:417.600000pt;}
.y5d_c00487{bottom:427.200000pt;}
.y28_c00487{bottom:435.466667pt;}
.y36_c00487{bottom:437.066667pt;}
.y5c_c00487{bottom:443.466667pt;}
.y27_c00487{bottom:448.933333pt;}
.y35_c00487{bottom:458.266667pt;}
.y5b_c00487{bottom:458.933333pt;}
.y26_c00487{bottom:461.066667pt;}
.y34_c00487{bottom:462.133333pt;}
.y5a_c00487{bottom:474.533333pt;}
.y25_c00487{bottom:475.466667pt;}
.y24_c00487{bottom:487.333333pt;}
.y59_c00487{bottom:494.133333pt;}
.y23_c00487{bottom:499.733333pt;}
.y58_c00487{bottom:510.133333pt;}
.y22_c00487{bottom:511.866667pt;}
.y21_c00487{bottom:526.000000pt;}
.y20_c00487{bottom:536.933333pt;}
.y57_c00487{bottom:537.333333pt;}
.y1f_c00487{bottom:551.066667pt;}
.y56_c00487{bottom:553.600000pt;}
.y1e_c00487{bottom:565.466667pt;}
.y55_c00487{bottom:568.933333pt;}
.y1d_c00487{bottom:581.600000pt;}
.y54_c00487{bottom:584.666667pt;}
.y1c_c00487{bottom:597.333333pt;}
.y53_c00487{bottom:604.533333pt;}
.y1b_c00487{bottom:613.333333pt;}
.y52_c00487{bottom:620.533333pt;}
.y1a_c00487{bottom:629.066667pt;}
.y51_c00487{bottom:636.133333pt;}
.y19_c00487{bottom:644.800000pt;}
.y50_c00487{bottom:655.066667pt;}
.y18_c00487{bottom:663.866667pt;}
.y4f_c00487{bottom:671.066667pt;}
.y17_c00487{bottom:680.133333pt;}
.y4e_c00487{bottom:686.800000pt;}
.y16_c00487{bottom:695.866667pt;}
.y4d_c00487{bottom:702.800000pt;}
.y15_c00487{bottom:711.600000pt;}
.y4c_c00487{bottom:718.533333pt;}
.y14_c00487{bottom:727.333333pt;}
.y4b_c00487{bottom:734.533333pt;}
.y13_c00487{bottom:743.066667pt;}
.y4a_c00487{bottom:749.866667pt;}
.y12_c00487{bottom:759.066667pt;}
.y49_c00487{bottom:765.866667pt;}
.y11_c00487{bottom:774.800000pt;}
.y48_c00487{bottom:781.866667pt;}
.y10_c00487{bottom:790.533333pt;}
.y47_c00487{bottom:797.866667pt;}
.yf_c00487{bottom:806.533333pt;}
.y46_c00487{bottom:813.200000pt;}
.ye_c00487{bottom:821.866667pt;}
.y45_c00487{bottom:829.200000pt;}
.yd_c00487{bottom:838.133333pt;}
.y44_c00487{bottom:845.200000pt;}
.yc_c00487{bottom:857.600000pt;}
.y43_c00487{bottom:860.933333pt;}
.y42_c00487{bottom:876.666667pt;}
.yb_c00487{bottom:882.533333pt;}
.y41_c00487{bottom:892.666667pt;}
.ya_c00487{bottom:899.866667pt;}
.y40_c00487{bottom:908.400000pt;}
.y9_c00487{bottom:923.200000pt;}
.y3f_c00487{bottom:924.133333pt;}
.y8_c00487{bottom:939.466667pt;}
.y3e_c00487{bottom:939.866667pt;}
.y7_c00487{bottom:955.200000pt;}
.y3d_c00487{bottom:955.600000pt;}
.y6_c00487{bottom:971.200000pt;}
.y3c_c00487{bottom:971.333333pt;}
.y5_c00487{bottom:986.933333pt;}
.y3b_c00487{bottom:987.600000pt;}
.y4_c00487{bottom:1002.933333pt;}
.y1_c00487{bottom:1024.266667pt;}
.y2_c00487{bottom:1025.866667pt;}
.ha_c00487{height:21.333333pt;}
.hb_c00487{height:26.666667pt;}
.h4_c00487{height:37.333333pt;}
.h9_c00487{height:48.000000pt;}
.h6_c00487{height:53.333333pt;}
.h5_c00487{height:58.666667pt;}
.h8_c00487{height:64.000000pt;}
.h3_c00487{height:69.333333pt;}
.h7_c00487{height:74.666667pt;}
.h2_c00487{height:80.000000pt;}
.h1_c00487{height:1134.666667pt;}
.h0_c00487{height:1134.719971pt;}
.w0_c00487{width:851.840007pt;}
.w1_c00487{width:852.000000pt;}
.x0_c00487{left:0.000000pt;}
.x3_c00487{left:65.866667pt;}
.x4_c00487{left:127.333333pt;}
.x27_c00487{left:158.133333pt;}
.x1_c00487{left:159.066667pt;}
.x7a_c00487{left:161.200000pt;}
.x6d_c00487{left:162.533333pt;}
.x8a_c00487{left:164.133333pt;}
.xa6_c00487{left:165.733333pt;}
.x3b_c00487{left:174.933333pt;}
.x45_c00487{left:176.000000pt;}
.x5_c00487{left:176.933333pt;}
.x6a_c00487{left:178.133333pt;}
.x64_c00487{left:179.466667pt;}
.x92_c00487{left:180.933333pt;}
.x9e_c00487{left:182.000000pt;}
.x65_c00487{left:186.800000pt;}
.x7c_c00487{left:188.533333pt;}
.x88_c00487{left:189.466667pt;}
.x35_c00487{left:193.600000pt;}
.x71_c00487{left:195.866667pt;}
.x67_c00487{left:196.933333pt;}
.x2e_c00487{left:198.400000pt;}
.x85_c00487{left:201.200000pt;}
.xd_c00487{left:202.400000pt;}
.xa2_c00487{left:203.866667pt;}
.x3f_c00487{left:205.866667pt;}
.x7f_c00487{left:207.600000pt;}
.x46_c00487{left:208.666667pt;}
.x75_c00487{left:209.733333pt;}
.x68_c00487{left:212.933333pt;}
.x86_c00487{left:214.666667pt;}
.x20_c00487{left:215.733333pt;}
.x72_c00487{left:216.666667pt;}
.x6f_c00487{left:217.866667pt;}
.x28_c00487{left:220.800000pt;}
.x52_c00487{left:222.000000pt;}
.x25_c00487{left:223.866667pt;}
.xe_c00487{left:224.800000pt;}
.x40_c00487{left:226.666667pt;}
.x2f_c00487{left:227.866667pt;}
.x6_c00487{left:229.066667pt;}
.x87_c00487{left:230.000000pt;}
.x9c_c00487{left:231.733333pt;}
.x21_c00487{left:233.600000pt;}
.x47_c00487{left:235.200000pt;}
.x5a_c00487{left:236.933333pt;}
.x8d_c00487{left:238.133333pt;}
.x56_c00487{left:239.600000pt;}
.x99_c00487{left:240.800000pt;}
.x9f_c00487{left:243.066667pt;}
.x1b_c00487{left:245.466667pt;}
.xac_c00487{left:246.533333pt;}
.x29_c00487{left:249.333333pt;}
.x80_c00487{left:251.733333pt;}
.x4c_c00487{left:253.066667pt;}
.x41_c00487{left:254.133333pt;}
.x60_c00487{left:255.466667pt;}
.x15_c00487{left:256.800000pt;}
.x6b_c00487{left:258.133333pt;}
.x7_c00487{left:261.066667pt;}
.xf_c00487{left:262.533333pt;}
.x9d_c00487{left:263.733333pt;}
.x91_c00487{left:264.800000pt;}
.xa3_c00487{left:267.200000pt;}
.x36_c00487{left:268.400000pt;}
.x22_c00487{left:273.333333pt;}
.x93_c00487{left:276.000000pt;}
.x5b_c00487{left:277.200000pt;}
.x16_c00487{left:278.266667pt;}
.xa1_c00487{left:279.333333pt;}
.x4d_c00487{left:281.600000pt;}
.x8_c00487{left:282.533333pt;}
.x7d_c00487{left:283.866667pt;}
.x3c_c00487{left:284.933333pt;}
.x1c_c00487{left:287.333333pt;}
.x48_c00487{left:288.666667pt;}
.x37_c00487{left:291.066667pt;}
.x76_c00487{left:292.533333pt;}
.x10_c00487{left:294.533333pt;}
.x8e_c00487{left:296.400000pt;}
.x42_c00487{left:297.600000pt;}
.x30_c00487{left:298.533333pt;}
.x61_c00487{left:300.266667pt;}
.x7e_c00487{left:301.200000pt;}
.x82_c00487{left:304.266667pt;}
.x4e_c00487{left:305.333333pt;}
.x2a_c00487{left:306.933333pt;}
.x49_c00487{left:309.733333pt;}
.x1d_c00487{left:311.066667pt;}
.xa9_c00487{left:313.333333pt;}
.x38_c00487{left:314.800000pt;}
.x43_c00487{left:316.133333pt;}
.x8f_c00487{left:318.133333pt;}
.xa4_c00487{left:319.066667pt;}
.x62_c00487{left:320.133333pt;}
.x3d_c00487{left:321.466667pt;}
.x6e_c00487{left:323.866667pt;}
.x53_c00487{left:326.933333pt;}
.x2b_c00487{left:329.066667pt;}
.x4f_c00487{left:332.533333pt;}
.xaa_c00487{left:333.866667pt;}
.x26_c00487{left:336.133333pt;}
.x90_c00487{left:337.333333pt;}
.x39_c00487{left:339.066667pt;}
.x5c_c00487{left:340.133333pt;}
.x17_c00487{left:342.000000pt;}
.x31_c00487{left:344.666667pt;}
.x6c_c00487{left:346.133333pt;}
.x73_c00487{left:347.600000pt;}
.x3e_c00487{left:349.333333pt;}
.x94_c00487{left:350.266667pt;}
.xa7_c00487{left:351.466667pt;}
.x97_c00487{left:352.800000pt;}
.x32_c00487{left:354.000000pt;}
.x11_c00487{left:355.600000pt;}
.x9_c00487{left:358.666667pt;}
.x2c_c00487{left:360.400000pt;}
.x81_c00487{left:361.333333pt;}
.x33_c00487{left:362.266667pt;}
.x4a_c00487{left:364.133333pt;}
.x83_c00487{left:366.000000pt;}
.x1e_c00487{left:368.000000pt;}
.x44_c00487{left:369.600000pt;}
.x12_c00487{left:371.333333pt;}
.x66_c00487{left:372.666667pt;}
.x70_c00487{left:373.733333pt;}
.xa_c00487{left:374.933333pt;}
.x69_c00487{left:376.800000pt;}
.x2_c00487{left:378.266667pt;}
.x18_c00487{left:379.466667pt;}
.x2d_c00487{left:381.200000pt;}
.x8b_c00487{left:382.400000pt;}
.x9a_c00487{left:383.866667pt;}
.x5d_c00487{left:384.933333pt;}
.xa0_c00487{left:387.066667pt;}
.xa5_c00487{left:388.400000pt;}
.x77_c00487{left:390.000000pt;}
.x54_c00487{left:391.600000pt;}
.x50_c00487{left:392.666667pt;}
.x98_c00487{left:394.666667pt;}
.x96_c00487{left:396.266667pt;}
.x7b_c00487{left:397.733333pt;}
.x57_c00487{left:399.200000pt;}
.x23_c00487{left:400.266667pt;}
.xad_c00487{left:402.000000pt;}
.x5e_c00487{left:407.066667pt;}
.x34_c00487{left:408.933333pt;}
.x55_c00487{left:411.466667pt;}
.x19_c00487{left:413.733333pt;}
.x24_c00487{left:416.000000pt;}
.x78_c00487{left:417.200000pt;}
.xb_c00487{left:418.400000pt;}
.x51_c00487{left:421.733333pt;}
.x58_c00487{left:423.200000pt;}
.x13_c00487{left:424.800000pt;}
.x89_c00487{left:426.266667pt;}
.x1f_c00487{left:427.200000pt;}
.x4b_c00487{left:428.133333pt;}
.x3a_c00487{left:431.600000pt;}
.x63_c00487{left:432.533333pt;}
.xc_c00487{left:435.066667pt;}
.x74_c00487{left:437.600000pt;}
.xa8_c00487{left:438.533333pt;}
.x8c_c00487{left:440.666667pt;}
.x1a_c00487{left:442.266667pt;}
.x14_c00487{left:444.000000pt;}
.x84_c00487{left:445.333333pt;}
.x79_c00487{left:447.333333pt;}
.x5f_c00487{left:449.333333pt;}
.x59_c00487{left:450.666667pt;}
.x95_c00487{left:452.933333pt;}
.xab_c00487{left:456.400000pt;}
.x9b_c00487{left:459.733333pt;}
.x11a_c00487{left:479.333333pt;}
.x136_c00487{left:480.933333pt;}
.x147_c00487{left:482.266667pt;}
.x116_c00487{left:486.933333pt;}
.xae_c00487{left:492.533333pt;}
.xce_c00487{left:493.466667pt;}
.xe7_c00487{left:495.066667pt;}
.x12d_c00487{left:496.266667pt;}
.x14b_c00487{left:497.733333pt;}
.x12f_c00487{left:498.933333pt;}
.xf2_c00487{left:510.800000pt;}
.xe1_c00487{left:513.333333pt;}
.xe8_c00487{left:514.533333pt;}
.x10f_c00487{left:520.666667pt;}
.x129_c00487{left:521.600000pt;}
.x137_c00487{left:522.800000pt;}
.x132_c00487{left:524.400000pt;}
.xf8_c00487{left:526.533333pt;}
.xd8_c00487{left:527.600000pt;}
.xe9_c00487{left:529.200000pt;}
.xf3_c00487{left:530.666667pt;}
.xbb_c00487{left:532.000000pt;}
.xaf_c00487{left:533.866667pt;}
.x13c_c00487{left:534.800000pt;}
.xcf_c00487{left:536.933333pt;}
.xc2_c00487{left:540.133333pt;}
.x128_c00487{left:541.066667pt;}
.x11d_c00487{left:542.933333pt;}
.xd9_c00487{left:544.266667pt;}
.x11b_c00487{left:547.066667pt;}
.x103_c00487{left:548.266667pt;}
.x117_c00487{left:549.600000pt;}
.xb4_c00487{left:550.666667pt;}
.xfd_c00487{left:551.866667pt;}
.xb0_c00487{left:553.333333pt;}
.x107_c00487{left:554.666667pt;}
.x148_c00487{left:555.600000pt;}
.xd0_c00487{left:557.066667pt;}
.x101_c00487{left:558.266667pt;}
.xc7_c00487{left:559.200000pt;}
.x143_c00487{left:561.600000pt;}
.xd4_c00487{left:562.933333pt;}
.xbc_c00487{left:564.666667pt;}
.x14d_c00487{left:566.266667pt;}
.x12e_c00487{left:567.333333pt;}
.x133_c00487{left:568.933333pt;}
.xb5_c00487{left:570.800000pt;}
.x11e_c00487{left:573.733333pt;}
.xc8_c00487{left:575.466667pt;}
.x10a_c00487{left:578.000000pt;}
.x11c_c00487{left:581.333333pt;}
.xff_c00487{left:583.466667pt;}
.x127_c00487{left:584.400000pt;}
.xe2_c00487{left:585.866667pt;}
.xd5_c00487{left:588.266667pt;}
.xf9_c00487{left:589.600000pt;}
.x104_c00487{left:591.466667pt;}
.xdd_c00487{left:593.733333pt;}
.x14c_c00487{left:594.666667pt;}
.x102_c00487{left:596.666667pt;}
.x123_c00487{left:598.000000pt;}
.x13f_c00487{left:601.600000pt;}
.x110_c00487{left:602.533333pt;}
.xb6_c00487{left:603.733333pt;}
.xd1_c00487{left:604.800000pt;}
.xf4_c00487{left:605.866667pt;}
.xfa_c00487{left:606.933333pt;}
.xed_c00487{left:608.133333pt;}
.x138_c00487{left:609.866667pt;}
.xc3_c00487{left:612.133333pt;}
.x112_c00487{left:614.933333pt;}
.xbd_c00487{left:616.133333pt;}
.xda_c00487{left:618.133333pt;}
.xe3_c00487{left:619.200000pt;}
.xc9_c00487{left:622.133333pt;}
.x121_c00487{left:623.866667pt;}
.x139_c00487{left:627.200000pt;}
.x144_c00487{left:628.133333pt;}
.x10b_c00487{left:629.466667pt;}
.x12c_c00487{left:630.400000pt;}
.xd2_c00487{left:631.733333pt;}
.xc4_c00487{left:634.266667pt;}
.xb1_c00487{left:635.866667pt;}
.x13b_c00487{left:636.933333pt;}
.xca_c00487{left:638.800000pt;}
.x11f_c00487{left:640.666667pt;}
.x149_c00487{left:642.666667pt;}
.xee_c00487{left:644.266667pt;}
.x141_c00487{left:645.200000pt;}
.x124_c00487{left:648.133333pt;}
.xe4_c00487{left:649.600000pt;}
.xbe_c00487{left:651.066667pt;}
.xea_c00487{left:652.000000pt;}
.xef_c00487{left:653.600000pt;}
.xb7_c00487{left:654.666667pt;}
.x145_c00487{left:656.266667pt;}
.x118_c00487{left:658.666667pt;}
.xcb_c00487{left:659.866667pt;}
.x120_c00487{left:660.800000pt;}
.x14a_c00487{left:661.866667pt;}
.x105_c00487{left:663.466667pt;}
.x142_c00487{left:665.066667pt;}
.x13d_c00487{left:667.866667pt;}
.xf5_c00487{left:669.200000pt;}
.x111_c00487{left:671.333333pt;}
.xc5_c00487{left:672.400000pt;}
.x140_c00487{left:673.333333pt;}
.xd6_c00487{left:674.666667pt;}
.x125_c00487{left:676.666667pt;}
.x10c_c00487{left:677.733333pt;}
.xde_c00487{left:679.200000pt;}
.xe5_c00487{left:681.600000pt;}
.xb2_c00487{left:684.133333pt;}
.x113_c00487{left:685.333333pt;}
.xbf_c00487{left:687.600000pt;}
.xb8_c00487{left:688.533333pt;}
.x146_c00487{left:692.133333pt;}
.x108_c00487{left:693.866667pt;}
.xd7_c00487{left:695.200000pt;}
.x126_c00487{left:696.133333pt;}
.xfe_c00487{left:698.400000pt;}
.x119_c00487{left:700.000000pt;}
.x12a_c00487{left:701.200000pt;}
.xfb_c00487{left:702.933333pt;}
.x100_c00487{left:703.866667pt;}
.xd3_c00487{left:705.066667pt;}
.xb9_c00487{left:709.600000pt;}
.xdb_c00487{left:712.533333pt;}
.xeb_c00487{left:713.466667pt;}
.xf0_c00487{left:714.666667pt;}
.xc0_c00487{left:717.333333pt;}
.xb3_c00487{left:720.933333pt;}
.x130_c00487{left:722.533333pt;}
.x134_c00487{left:727.333333pt;}
.x10d_c00487{left:728.933333pt;}
.xcc_c00487{left:730.266667pt;}
.x13a_c00487{left:731.866667pt;}
.xf1_c00487{left:734.133333pt;}
.xdf_c00487{left:736.400000pt;}
.x106_c00487{left:738.266667pt;}
.x114_c00487{left:739.466667pt;}
.xec_c00487{left:740.400000pt;}
.xba_c00487{left:744.800000pt;}
.x14e_c00487{left:745.733333pt;}
.xf6_c00487{left:746.666667pt;}
.xe6_c00487{left:748.533333pt;}
.xc6_c00487{left:749.866667pt;}
.xe0_c00487{left:751.466667pt;}
.x115_c00487{left:752.533333pt;}
.x12b_c00487{left:754.266667pt;}
.x122_c00487{left:755.466667pt;}
.xc1_c00487{left:756.666667pt;}
.xdc_c00487{left:757.600000pt;}
.xcd_c00487{left:762.266667pt;}
.x109_c00487{left:763.333333pt;}
.xfc_c00487{left:766.666667pt;}
.xf7_c00487{left:767.733333pt;}
.x131_c00487{left:770.800000pt;}
.x10e_c00487{left:772.133333pt;}
.x13e_c00487{left:776.133333pt;}
.x135_c00487{left:777.600000pt;}
}





/* 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_c00488 {
    display:none;
  }
  .loading-indicator_c00488.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00488 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_c00488 { 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_c00488" -> "#page-container .classname_c00488")
 */
.pf_c00488 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00488 { /* 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_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00488 { /* 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_c00488 { /* 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_c00488 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00488 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00488 {overflow:visible;}
  }
}
.c_c00488 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00488 { /* 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_c00488:after { /* webkit #35443 */
  content: '';
}
.t_c00488:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00488 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 */
}
.__c00488 { /* 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_c00488 { /* info for Javascript */
  display:none;
}
.l_c00488 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00488 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00488 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00488: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_c00488 {
    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_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00488.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_c00488 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00488{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00488;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.000000;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;}
.mb1_c00488{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00488{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00488{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.md4_c00488{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m119_c00488{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m40_c00488{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m124_c00488{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00488{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00488{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00488{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m127_c00488{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m93_c00488{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00488{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m7_c00488{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00488{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.mca_c00488{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mde_c00488{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m116_c00488{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00488{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00488{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00488{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9_c00488{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m78_c00488{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00488{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00488{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m2_c00488{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00488{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m109_c00488{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00488{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00488{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00488{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00488{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m79_c00488{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00488{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m125_c00488{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m65_c00488{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc_c00488{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00488{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00488{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m51_c00488{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m69_c00488{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00488{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.me5_c00488{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00488{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m43_c00488{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00488{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m88_c00488{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m36_c00488{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1_c00488{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00488{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m82_c00488{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m29_c00488{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00488{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00488{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00488{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00488{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00488{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00488{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00488{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00488{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00488{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4_c00488{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00488{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m99_c00488{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m11_c00488{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00488{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00488{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m8_c00488{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m45_c00488{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m12_c00488{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00488{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m52_c00488{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00488{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m110_c00488{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mad_c00488{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00488{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m55_c00488{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00488{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m126_c00488{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m57_c00488{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m42_c00488{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m105_c00488{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m56_c00488{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mac_c00488{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m77_c00488{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.md3_c00488{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m16_c00488{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m89_c00488{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m83_c00488{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.me2_c00488{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00488{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.md5_c00488{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00488{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m98_c00488{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m107_c00488{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m87_c00488{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.md_c00488{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me1_c00488{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.md7_c00488{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00488{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mff_c00488{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mec_c00488{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m19_c00488{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00488{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m61_c00488{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m91_c00488{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00488{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00488{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00488{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m108_c00488{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00488{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m10_c00488{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m123_c00488{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m39_c00488{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m75_c00488{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00488{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00488{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6_c00488{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3_c00488{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mda_c00488{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00488{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00488{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m66_c00488{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m92_c00488{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m90_c00488{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00488{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00488{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mae_c00488{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf_c00488{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me_c00488{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00488{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m50_c00488{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00488{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00488{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m58_c00488{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00488{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00488{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m95_c00488{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m54_c00488{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m31_c00488{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00488{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00488{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m27_c00488{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00488{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m15_c00488{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5_c00488{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m33_c00488{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mef_c00488{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m72_c00488{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m38_c00488{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00488{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma_c00488{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m37_c00488{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m47_c00488{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m60_c00488{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m104_c00488{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00488{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00488{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00488{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00488{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00488{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md9_c00488{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m67_c00488{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m62_c00488{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m28_c00488{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00488{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m46_c00488{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m101_c00488{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00488{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00488{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00488{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00488{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00488{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m81_c00488{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00488{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m44_c00488{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00488{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00488{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.maa_c00488{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m96_c00488{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m13_c00488{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00488{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00488{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00488{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00488{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m97_c00488{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m94_c00488{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m86_c00488{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00488{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m100_c00488{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m34_c00488{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00488{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m48_c00488{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00488{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.maf_c00488{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m84_c00488{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m106_c00488{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00488{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00488{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m112_c00488{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m23_c00488{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mb_c00488{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m49_c00488{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m129_c00488{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00488{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00488{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00488{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00488{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m68_c00488{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m25_c00488{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mba_c00488{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00488{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m121_c00488{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m14_c00488{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m21_c00488{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m30_c00488{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md6_c00488{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mab_c00488{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mce_c00488{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m24_c00488{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m102_c00488{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m53_c00488{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m118_c00488{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m26_c00488{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00488{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00488{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00488{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00488{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m128_c00488{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00488{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m76_c00488{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md1_c00488{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.med_c00488{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md2_c00488{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m18_c00488{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.meb_c00488{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00488{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mee_c00488{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00488{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00488{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md8_c00488{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m22_c00488{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me9_c00488{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m85_c00488{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m120_c00488{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);}
.mb2_c00488{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00488{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00488{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m20_c00488{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m59_c00488{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00488{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00488{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m32_c00488{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m71_c00488{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00488{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00488{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m41_c00488{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00488{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m117_c00488{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00488{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m63_c00488{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me8_c00488{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00488{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00488{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m115_c00488{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mea_c00488{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00488{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m17_c00488{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m103_c00488{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00488{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00488{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00488{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00488{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00488{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m114_c00488{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.me4_c00488{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m122_c00488{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m111_c00488{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00488{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.me3_c00488{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00488{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m74_c00488{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m113_c00488{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00488{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m0_c00488{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00488{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.md0_c00488{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me0_c00488{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m64_c00488{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00488{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.me7_c00488{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00488{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.me6_c00488{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00488{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m73_c00488{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00488{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00488{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m70_c00488{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m80_c00488{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls0_c00488{letter-spacing:0.000000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{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__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00488{word-spacing:-11.052632px;}
.ws5_c00488{word-spacing:-8.288660px;}
.ws2_c00488{word-spacing:-8.031785px;}
.wsa_c00488{word-spacing:-6.770808px;}
.ws8_c00488{word-spacing:-5.193833px;}
.wsc_c00488{word-spacing:-3.735849px;}
.ws9_c00488{word-spacing:-3.151990px;}
.wsd_c00488{word-spacing:0.000000px;}
.ws6_c00488{word-spacing:1.055490px;}
.wsb_c00488{word-spacing:7.232143px;}
.ws0_c00488{word-spacing:8.026316px;}
.ws7_c00488{word-spacing:10.625000px;}
.ws3_c00488{word-spacing:11.105485px;}
.ws1_c00488{word-spacing:11.235849px;}
.fc0_c00488{color:transparent;}
.fs1_c00488{font-size:30.000000px;}
.fs6_c00488{font-size:36.000000px;}
.fs7_c00488{font-size:48.000000px;}
.fs4_c00488{font-size:54.000000px;}
.fs3_c00488{font-size:60.000000px;}
.fs2_c00488{font-size:66.000000px;}
.fs5_c00488{font-size:72.000000px;}
.fs0_c00488{font-size:114.000000px;}
.y0_c00488{bottom:0.000000px;}
.y69_c00488{bottom:197.700000px;}
.y68_c00488{bottom:210.900000px;}
.y37_c00488{bottom:214.650000px;}
.y67_c00488{bottom:225.000000px;}
.y36_c00488{bottom:232.650000px;}
.y66_c00488{bottom:239.700000px;}
.y35_c00488{bottom:250.350000px;}
.y65_c00488{bottom:253.800000px;}
.y34_c00488{bottom:268.050000px;}
.y64_c00488{bottom:268.950000px;}
.y63_c00488{bottom:282.300000px;}
.y33_c00488{bottom:286.050000px;}
.y62_c00488{bottom:296.700000px;}
.y32_c00488{bottom:303.750000px;}
.y61_c00488{bottom:311.100000px;}
.y31_c00488{bottom:321.450000px;}
.y60_c00488{bottom:325.800000px;}
.y30_c00488{bottom:339.750000px;}
.y5f_c00488{bottom:340.200000px;}
.y5e_c00488{bottom:354.300000px;}
.y2f_c00488{bottom:357.450000px;}
.y2e_c00488{bottom:375.450000px;}
.y5d_c00488{bottom:392.700000px;}
.y2d_c00488{bottom:393.150000px;}
.y5c_c00488{bottom:411.450000px;}
.y2c_c00488{bottom:411.600000px;}
.y2b_c00488{bottom:428.850000px;}
.y5b_c00488{bottom:442.500000px;}
.y2a_c00488{bottom:448.650000px;}
.y5a_c00488{bottom:460.500000px;}
.y29_c00488{bottom:464.100000px;}
.y59_c00488{bottom:478.200000px;}
.y28_c00488{bottom:482.100000px;}
.y58_c00488{bottom:496.950000px;}
.y27_c00488{bottom:501.900000px;}
.y26_c00488{bottom:504.000000px;}
.y57_c00488{bottom:514.200000px;}
.y25_c00488{bottom:516.600000px;}
.y56_c00488{bottom:531.900000px;}
.y24_c00488{bottom:535.650000px;}
.y55_c00488{bottom:550.200000px;}
.y23_c00488{bottom:557.550000px;}
.y54_c00488{bottom:567.900000px;}
.y22_c00488{bottom:573.750000px;}
.y53_c00488{bottom:585.900000px;}
.y21_c00488{bottom:591.000000px;}
.y52_c00488{bottom:603.600000px;}
.y20_c00488{bottom:608.700000px;}
.y51_c00488{bottom:621.300000px;}
.y1f_c00488{bottom:626.700000px;}
.y50_c00488{bottom:639.300000px;}
.y1e_c00488{bottom:644.100000px;}
.y4f_c00488{bottom:657.000000px;}
.y1d_c00488{bottom:665.250000px;}
.y4e_c00488{bottom:677.850000px;}
.y1c_c00488{bottom:683.250000px;}
.y4d_c00488{bottom:692.250000px;}
.y1b_c00488{bottom:700.950000px;}
.y4c_c00488{bottom:705.600000px;}
.y1a_c00488{bottom:718.950000px;}
.y4b_c00488{bottom:721.050000px;}
.y4a_c00488{bottom:735.900000px;}
.y19_c00488{bottom:736.650000px;}
.y49_c00488{bottom:754.500000px;}
.y18_c00488{bottom:754.650000px;}
.y17_c00488{bottom:771.900000px;}
.y48_c00488{bottom:772.500000px;}
.y47_c00488{bottom:790.500000px;}
.y16_c00488{bottom:793.800000px;}
.y15_c00488{bottom:808.200000px;}
.y14_c00488{bottom:827.250000px;}
.y46_c00488{bottom:830.100000px;}
.y13_c00488{bottom:846.300000px;}
.y45_c00488{bottom:848.100000px;}
.y12_c00488{bottom:867.600000px;}
.y44_c00488{bottom:877.350000px;}
.y43_c00488{bottom:887.400000px;}
.y11_c00488{bottom:889.950000px;}
.y42_c00488{bottom:905.700000px;}
.y10_c00488{bottom:907.650000px;}
.y3_c00488{bottom:911.550000px;}
.yf_c00488{bottom:926.700000px;}
.y41_c00488{bottom:936.000000px;}
.ye_c00488{bottom:944.700000px;}
.yd_c00488{bottom:962.400000px;}
.y40_c00488{bottom:971.700000px;}
.yc_c00488{bottom:980.100000px;}
.y3f_c00488{bottom:989.250000px;}
.yb_c00488{bottom:997.800000px;}
.y3e_c00488{bottom:1011.300000px;}
.ya_c00488{bottom:1015.800000px;}
.y3d_c00488{bottom:1029.300000px;}
.y9_c00488{bottom:1033.500000px;}
.y8_c00488{bottom:1051.200000px;}
.y3c_c00488{bottom:1051.500000px;}
.y7_c00488{bottom:1069.050000px;}
.y3b_c00488{bottom:1069.500000px;}
.y6_c00488{bottom:1086.750000px;}
.y3a_c00488{bottom:1087.500000px;}
.y39_c00488{bottom:1104.600000px;}
.y5_c00488{bottom:1104.750000px;}
.y4_c00488{bottom:1122.450000px;}
.y38_c00488{bottom:1122.900000px;}
.y1_c00488{bottom:1149.150000px;}
.y2_c00488{bottom:1150.200000px;}
.h3_c00488{height:30.000000px;}
.h8_c00488{height:36.000000px;}
.h9_c00488{height:48.000000px;}
.h6_c00488{height:54.000000px;}
.h5_c00488{height:60.000000px;}
.h4_c00488{height:66.000000px;}
.h7_c00488{height:72.000000px;}
.h2_c00488{height:114.000000px;}
.h1_c00488{height:1269.750000px;}
.h0_c00488{height:1270.080048px;}
.w0_c00488{width:958.320007px;}
.w1_c00488{width:958.500000px;}
.x0_c00488{left:0.000000px;}
.x3_c00488{left:77.700000px;}
.x4f_c00488{left:78.900000px;}
.x6d_c00488{left:81.300000px;}
.x1e_c00488{left:83.550000px;}
.x8d_c00488{left:91.500000px;}
.x68_c00488{left:92.550000px;}
.x4_c00488{left:93.600000px;}
.x18_c00488{left:95.100000px;}
.x4e_c00488{left:97.200000px;}
.x60_c00488{left:98.850000px;}
.x82_c00488{left:100.050000px;}
.xd_c00488{left:112.500000px;}
.x2b_c00488{left:115.800000px;}
.x95_c00488{left:118.650000px;}
.x3d_c00488{left:120.900000px;}
.x61_c00488{left:123.300000px;}
.x6e_c00488{left:124.800000px;}
.xe_c00488{left:126.900000px;}
.x1f_c00488{left:130.050000px;}
.x5_c00488{left:131.700000px;}
.x9b_c00488{left:133.950000px;}
.x47_c00488{left:138.300000px;}
.x26_c00488{left:140.400000px;}
.x35_c00488{left:141.900000px;}
.x92_c00488{left:142.950000px;}
.x69_c00488{left:144.450000px;}
.x19_c00488{left:146.250000px;}
.x77_c00488{left:147.450000px;}
.x6_c00488{left:148.650000px;}
.x72_c00488{left:150.450000px;}
.x36_c00488{left:154.200000px;}
.x8b_c00488{left:155.250000px;}
.x78_c00488{left:157.950000px;}
.x55_c00488{left:159.900000px;}
.x43_c00488{left:163.050000px;}
.xf_c00488{left:164.400000px;}
.x86_c00488{left:165.600000px;}
.x13_c00488{left:170.850000px;}
.x48_c00488{left:172.200000px;}
.x20_c00488{left:173.250000px;}
.x81_c00488{left:175.050000px;}
.x50_c00488{left:177.450000px;}
.x8e_c00488{left:179.700000px;}
.x93_c00488{left:180.750000px;}
.x83_c00488{left:181.800000px;}
.x9c_c00488{left:184.050000px;}
.x3e_c00488{left:185.700000px;}
.x37_c00488{left:189.150000px;}
.x7c_c00488{left:193.650000px;}
.x76_c00488{left:196.050000px;}
.x1a_c00488{left:198.450000px;}
.x6b_c00488{left:199.800000px;}
.x97_c00488{left:201.150000px;}
.x27_c00488{left:203.400000px;}
.x2c_c00488{left:204.750000px;}
.x14_c00488{left:208.350000px;}
.x56_c00488{left:209.550000px;}
.x58_c00488{left:211.350000px;}
.x21_c00488{left:212.850000px;}
.x54_c00488{left:213.900000px;}
.x84_c00488{left:214.950000px;}
.x7d_c00488{left:216.000000px;}
.x7_c00488{left:217.050000px;}
.x6a_c00488{left:219.000000px;}
.x88_c00488{left:221.100000px;}
.x3f_c00488{left:222.450000px;}
.x6c_c00488{left:225.300000px;}
.x33_c00488{left:227.250000px;}
.x49_c00488{left:229.500000px;}
.x15_c00488{left:231.750000px;}
.x1b_c00488{left:232.950000px;}
.x10_c00488{left:234.600000px;}
.x79_c00488{left:235.650000px;}
.x6f_c00488{left:237.150000px;}
.x51_c00488{left:239.400000px;}
.x28_c00488{left:240.900000px;}
.x44_c00488{left:241.950000px;}
.x2d_c00488{left:244.350000px;}
.x63_c00488{left:245.700000px;}
.x5b_c00488{left:246.900000px;}
.x94_c00488{left:249.150000px;}
.x40_c00488{left:251.550000px;}
.x8f_c00488{left:252.750000px;}
.x22_c00488{left:254.550000px;}
.x70_c00488{left:256.650000px;}
.x4a_c00488{left:258.300000px;}
.x8_c00488{left:260.550000px;}
.x59_c00488{left:263.550000px;}
.x38_c00488{left:266.550000px;}
.x52_c00488{left:267.900000px;}
.x9_c00488{left:269.850000px;}
.x85_c00488{left:272.550000px;}
.x7a_c00488{left:274.200000px;}
.x34_c00488{left:278.400000px;}
.x39_c00488{left:279.900000px;}
.x7e_c00488{left:281.850000px;}
.x41_c00488{left:283.650000px;}
.x2e_c00488{left:285.450000px;}
.x74_c00488{left:286.500000px;}
.x9d_c00488{left:288.750000px;}
.x8c_c00488{left:289.950000px;}
.x71_c00488{left:291.150000px;}
.x5a_c00488{left:293.400000px;}
.x3a_c00488{left:297.600000px;}
.x2f_c00488{left:299.550000px;}
.x1c_c00488{left:301.650000px;}
.x7b_c00488{left:302.700000px;}
.x23_c00488{left:306.000000px;}
.x4b_c00488{left:308.400000px;}
.x16_c00488{left:310.650000px;}
.x9a_c00488{left:311.700000px;}
.x64_c00488{left:313.050000px;}
.x87_c00488{left:315.750000px;}
.x57_c00488{left:317.250000px;}
.x1_c00488{left:318.300000px;}
.x5c_c00488{left:319.500000px;}
.x11_c00488{left:321.000000px;}
.xa_c00488{left:322.350000px;}
.x1d_c00488{left:325.050000px;}
.x42_c00488{left:326.850000px;}
.x89_c00488{left:328.350000px;}
.x65_c00488{left:332.850000px;}
.x31_c00488{left:334.050000px;}
.x30_c00488{left:335.550000px;}
.x90_c00488{left:337.050000px;}
.x137_c00488{left:338.550000px;}
.x24_c00488{left:339.900000px;}
.x98_c00488{left:340.950000px;}
.x17_c00488{left:343.050000px;}
.x3b_c00488{left:347.700000px;}
.x7f_c00488{left:349.950000px;}
.x29_c00488{left:351.900000px;}
.x5d_c00488{left:357.300000px;}
.x45_c00488{left:359.700000px;}
.x4c_c00488{left:362.400000px;}
.x75_c00488{left:363.450000px;}
.xb_c00488{left:366.600000px;}
.x66_c00488{left:368.550000px;}
.x3c_c00488{left:369.600000px;}
.x25_c00488{left:373.050000px;}
.x2a_c00488{left:374.250000px;}
.xc_c00488{left:376.350000px;}
.x5e_c00488{left:377.850000px;}
.x9e_c00488{left:379.500000px;}
.x80_c00488{left:380.550000px;}
.x32_c00488{left:383.700000px;}
.x91_c00488{left:384.900000px;}
.x73_c00488{left:386.250000px;}
.x8a_c00488{left:388.500000px;}
.x67_c00488{left:389.850000px;}
.x12_c00488{left:391.950000px;}
.x46_c00488{left:393.900000px;}
.x62_c00488{left:396.150000px;}
.x4d_c00488{left:398.100000px;}
.x53_c00488{left:399.300000px;}
.x5f_c00488{left:403.350000px;}
.x96_c00488{left:405.900000px;}
.x99_c00488{left:407.550000px;}
.x134_c00488{left:426.600000px;}
.xbc_c00488{left:432.000000px;}
.xd1_c00488{left:433.800000px;}
.xe5_c00488{left:434.850000px;}
.xfa_c00488{left:435.900000px;}
.x128_c00488{left:437.400000px;}
.x123_c00488{left:438.450000px;}
.xc0_c00488{left:441.750000px;}
.x9f_c00488{left:448.200000px;}
.xc1_c00488{left:449.700000px;}
.xd6_c00488{left:451.050000px;}
.xd7_c00488{left:452.850000px;}
.x107_c00488{left:454.650000px;}
.x116_c00488{left:456.300000px;}
.x131_c00488{left:459.300000px;}
.xf9_c00488{left:463.350000px;}
.xf5_c00488{left:464.850000px;}
.xa7_c00488{left:466.950000px;}
.xa8_c00488{left:468.750000px;}
.xd8_c00488{left:470.550000px;}
.xfe_c00488{left:473.100000px;}
.x125_c00488{left:474.750000px;}
.x135_c00488{left:476.700000px;}
.xd2_c00488{left:478.800000px;}
.x124_c00488{left:480.900000px;}
.xb0_c00488{left:484.800000px;}
.x126_c00488{left:487.350000px;}
.xb7_c00488{left:489.000000px;}
.x112_c00488{left:491.100000px;}
.xcc_c00488{left:492.450000px;}
.xb1_c00488{left:493.500000px;}
.x120_c00488{left:495.150000px;}
.xc3_c00488{left:498.600000px;}
.xc7_c00488{left:500.400000px;}
.xa0_c00488{left:502.950000px;}
.xb2_c00488{left:504.300000px;}
.x117_c00488{left:506.400000px;}
.xc2_c00488{left:508.350000px;}
.xe2_c00488{left:509.700000px;}
.xa9_c00488{left:510.900000px;}
.xd3_c00488{left:513.300000px;}
.xee_c00488{left:514.800000px;}
.xb8_c00488{left:517.050000px;}
.xc8_c00488{left:518.100000px;}
.xfb_c00488{left:519.750000px;}
.xe3_c00488{left:522.000000px;}
.xd4_c00488{left:526.650000px;}
.xb3_c00488{left:529.800000px;}
.xda_c00488{left:531.750000px;}
.xcd_c00488{left:534.150000px;}
.xff_c00488{left:535.800000px;}
.xaa_c00488{left:537.900000px;}
.xa1_c00488{left:538.950000px;}
.x108_c00488{left:540.450000px;}
.xe4_c00488{left:542.550000px;}
.x118_c00488{left:546.300000px;}
.x103_c00488{left:548.850000px;}
.xc9_c00488{left:551.550000px;}
.xb9_c00488{left:552.750000px;}
.x10a_c00488{left:553.950000px;}
.x121_c00488{left:555.600000px;}
.x10d_c00488{left:561.450000px;}
.xe8_c00488{left:564.450000px;}
.x10b_c00488{left:565.800000px;}
.xdb_c00488{left:568.050000px;}
.x12f_c00488{left:570.300000px;}
.xca_c00488{left:572.850000px;}
.x113_c00488{left:574.650000px;}
.xab_c00488{left:577.500000px;}
.x104_c00488{left:580.200000px;}
.xce_c00488{left:584.550000px;}
.x12e_c00488{left:585.900000px;}
.xc4_c00488{left:593.250000px;}
.x119_c00488{left:595.950000px;}
.xdc_c00488{left:597.600000px;}
.x12b_c00488{left:598.950000px;}
.x10c_c00488{left:600.300000px;}
.x114_c00488{left:602.400000px;}
.xba_c00488{left:603.900000px;}
.xbd_c00488{left:607.350000px;}
.xfc_c00488{left:610.200000px;}
.x12d_c00488{left:612.900000px;}
.xac_c00488{left:614.250000px;}
.xa2_c00488{left:615.300000px;}
.xc5_c00488{left:617.400000px;}
.x109_c00488{left:618.450000px;}
.x130_c00488{left:619.500000px;}
.x100_c00488{left:620.700000px;}
.xe9_c00488{left:623.850000px;}
.xbb_c00488{left:626.250000px;}
.xcb_c00488{left:627.900000px;}
.xa3_c00488{left:629.400000px;}
.xf0_c00488{left:630.450000px;}
.x136_c00488{left:632.100000px;}
.xad_c00488{left:634.350000px;}
.xbe_c00488{left:635.850000px;}
.x115_c00488{left:638.400000px;}
.xef_c00488{left:640.050000px;}
.x101_c00488{left:642.000000px;}
.xcf_c00488{left:643.950000px;}
.x11c_c00488{left:647.850000px;}
.xae_c00488{left:649.800000px;}
.xc6_c00488{left:653.400000px;}
.xdd_c00488{left:656.250000px;}
.x110_c00488{left:659.550000px;}
.xea_c00488{left:660.600000px;}
.xf6_c00488{left:661.800000px;}
.xe6_c00488{left:664.350000px;}
.xd0_c00488{left:665.550000px;}
.x105_c00488{left:667.650000px;}
.xb4_c00488{left:672.000000px;}
.xde_c00488{left:674.250000px;}
.xa4_c00488{left:676.500000px;}
.x10e_c00488{left:678.150000px;}
.xeb_c00488{left:679.350000px;}
.xdf_c00488{left:681.450000px;}
.x12a_c00488{left:683.250000px;}
.x102_c00488{left:685.950000px;}
.x11f_c00488{left:687.750000px;}
.xd9_c00488{left:688.950000px;}
.xf1_c00488{left:690.300000px;}
.x11d_c00488{left:695.400000px;}
.xe0_c00488{left:697.950000px;}
.xf7_c00488{left:699.150000px;}
.xb5_c00488{left:700.500000px;}
.x111_c00488{left:702.000000px;}
.x10f_c00488{left:703.050000px;}
.xfd_c00488{left:704.850000px;}
.xed_c00488{left:707.400000px;}
.x12c_c00488{left:711.150000px;}
.xa5_c00488{left:716.400000px;}
.x132_c00488{left:717.450000px;}
.xaf_c00488{left:718.500000px;}
.xf2_c00488{left:721.200000px;}
.xf8_c00488{left:722.850000px;}
.xa6_c00488{left:725.100000px;}
.xec_c00488{left:726.450000px;}
.x106_c00488{left:728.250000px;}
.xe1_c00488{left:729.600000px;}
.x129_c00488{left:731.100000px;}
.x122_c00488{left:735.000000px;}
.x133_c00488{left:736.500000px;}
.x2_c00488{left:738.450000px;}
.x11a_c00488{left:741.750000px;}
.xb6_c00488{left:744.000000px;}
.xd5_c00488{left:745.800000px;}
.xe7_c00488{left:748.950000px;}
.x127_c00488{left:750.750000px;}
.xbf_c00488{left:751.800000px;}
.xf3_c00488{left:755.400000px;}
.xf4_c00488{left:756.750000px;}
.x11e_c00488{left:760.500000px;}
.x11b_c00488{left:767.700000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws4_c00488{word-spacing:-9.824561pt;}
.ws5_c00488{word-spacing:-7.367698pt;}
.ws2_c00488{word-spacing:-7.139364pt;}
.wsa_c00488{word-spacing:-6.018496pt;}
.ws8_c00488{word-spacing:-4.616740pt;}
.wsc_c00488{word-spacing:-3.320755pt;}
.ws9_c00488{word-spacing:-2.801769pt;}
.wsd_c00488{word-spacing:0.000000pt;}
.ws6_c00488{word-spacing:0.938213pt;}
.wsb_c00488{word-spacing:6.428571pt;}
.ws0_c00488{word-spacing:7.134503pt;}
.ws7_c00488{word-spacing:9.444444pt;}
.ws3_c00488{word-spacing:9.871542pt;}
.ws1_c00488{word-spacing:9.987421pt;}
.fs1_c00488{font-size:26.666667pt;}
.fs6_c00488{font-size:32.000000pt;}
.fs7_c00488{font-size:42.666667pt;}
.fs4_c00488{font-size:48.000000pt;}
.fs3_c00488{font-size:53.333333pt;}
.fs2_c00488{font-size:58.666667pt;}
.fs5_c00488{font-size:64.000000pt;}
.fs0_c00488{font-size:101.333333pt;}
.y0_c00488{bottom:0.000000pt;}
.y69_c00488{bottom:175.733333pt;}
.y68_c00488{bottom:187.466667pt;}
.y37_c00488{bottom:190.800000pt;}
.y67_c00488{bottom:200.000000pt;}
.y36_c00488{bottom:206.800000pt;}
.y66_c00488{bottom:213.066667pt;}
.y35_c00488{bottom:222.533333pt;}
.y65_c00488{bottom:225.600000pt;}
.y34_c00488{bottom:238.266667pt;}
.y64_c00488{bottom:239.066667pt;}
.y63_c00488{bottom:250.933333pt;}
.y33_c00488{bottom:254.266667pt;}
.y62_c00488{bottom:263.733333pt;}
.y32_c00488{bottom:270.000000pt;}
.y61_c00488{bottom:276.533333pt;}
.y31_c00488{bottom:285.733333pt;}
.y60_c00488{bottom:289.600000pt;}
.y30_c00488{bottom:302.000000pt;}
.y5f_c00488{bottom:302.400000pt;}
.y5e_c00488{bottom:314.933333pt;}
.y2f_c00488{bottom:317.733333pt;}
.y2e_c00488{bottom:333.733333pt;}
.y5d_c00488{bottom:349.066667pt;}
.y2d_c00488{bottom:349.466667pt;}
.y5c_c00488{bottom:365.733333pt;}
.y2c_c00488{bottom:365.866667pt;}
.y2b_c00488{bottom:381.200000pt;}
.y5b_c00488{bottom:393.333333pt;}
.y2a_c00488{bottom:398.800000pt;}
.y5a_c00488{bottom:409.333333pt;}
.y29_c00488{bottom:412.533333pt;}
.y59_c00488{bottom:425.066667pt;}
.y28_c00488{bottom:428.533333pt;}
.y58_c00488{bottom:441.733333pt;}
.y27_c00488{bottom:446.133333pt;}
.y26_c00488{bottom:448.000000pt;}
.y57_c00488{bottom:457.066667pt;}
.y25_c00488{bottom:459.200000pt;}
.y56_c00488{bottom:472.800000pt;}
.y24_c00488{bottom:476.133333pt;}
.y55_c00488{bottom:489.066667pt;}
.y23_c00488{bottom:495.600000pt;}
.y54_c00488{bottom:504.800000pt;}
.y22_c00488{bottom:510.000000pt;}
.y53_c00488{bottom:520.800000pt;}
.y21_c00488{bottom:525.333333pt;}
.y52_c00488{bottom:536.533333pt;}
.y20_c00488{bottom:541.066667pt;}
.y51_c00488{bottom:552.266667pt;}
.y1f_c00488{bottom:557.066667pt;}
.y50_c00488{bottom:568.266667pt;}
.y1e_c00488{bottom:572.533333pt;}
.y4f_c00488{bottom:584.000000pt;}
.y1d_c00488{bottom:591.333333pt;}
.y4e_c00488{bottom:602.533333pt;}
.y1c_c00488{bottom:607.333333pt;}
.y4d_c00488{bottom:615.333333pt;}
.y1b_c00488{bottom:623.066667pt;}
.y4c_c00488{bottom:627.200000pt;}
.y1a_c00488{bottom:639.066667pt;}
.y4b_c00488{bottom:640.933333pt;}
.y4a_c00488{bottom:654.133333pt;}
.y19_c00488{bottom:654.800000pt;}
.y49_c00488{bottom:670.666667pt;}
.y18_c00488{bottom:670.800000pt;}
.y17_c00488{bottom:686.133333pt;}
.y48_c00488{bottom:686.666667pt;}
.y47_c00488{bottom:702.666667pt;}
.y16_c00488{bottom:705.600000pt;}
.y15_c00488{bottom:718.400000pt;}
.y14_c00488{bottom:735.333333pt;}
.y46_c00488{bottom:737.866667pt;}
.y13_c00488{bottom:752.266667pt;}
.y45_c00488{bottom:753.866667pt;}
.y12_c00488{bottom:771.200000pt;}
.y44_c00488{bottom:779.866667pt;}
.y43_c00488{bottom:788.800000pt;}
.y11_c00488{bottom:791.066667pt;}
.y42_c00488{bottom:805.066667pt;}
.y10_c00488{bottom:806.800000pt;}
.y3_c00488{bottom:810.266667pt;}
.yf_c00488{bottom:823.733333pt;}
.y41_c00488{bottom:832.000000pt;}
.ye_c00488{bottom:839.733333pt;}
.yd_c00488{bottom:855.466667pt;}
.y40_c00488{bottom:863.733333pt;}
.yc_c00488{bottom:871.200000pt;}
.y3f_c00488{bottom:879.333333pt;}
.yb_c00488{bottom:886.933333pt;}
.y3e_c00488{bottom:898.933333pt;}
.ya_c00488{bottom:902.933333pt;}
.y3d_c00488{bottom:914.933333pt;}
.y9_c00488{bottom:918.666667pt;}
.y8_c00488{bottom:934.400000pt;}
.y3c_c00488{bottom:934.666667pt;}
.y7_c00488{bottom:950.266667pt;}
.y3b_c00488{bottom:950.666667pt;}
.y6_c00488{bottom:966.000000pt;}
.y3a_c00488{bottom:966.666667pt;}
.y39_c00488{bottom:981.866667pt;}
.y5_c00488{bottom:982.000000pt;}
.y4_c00488{bottom:997.733333pt;}
.y38_c00488{bottom:998.133333pt;}
.y1_c00488{bottom:1021.466667pt;}
.y2_c00488{bottom:1022.400000pt;}
.h3_c00488{height:26.666667pt;}
.h8_c00488{height:32.000000pt;}
.h9_c00488{height:42.666667pt;}
.h6_c00488{height:48.000000pt;}
.h5_c00488{height:53.333333pt;}
.h4_c00488{height:58.666667pt;}
.h7_c00488{height:64.000000pt;}
.h2_c00488{height:101.333333pt;}
.h1_c00488{height:1128.666667pt;}
.h0_c00488{height:1128.960043pt;}
.w0_c00488{width:851.840007pt;}
.w1_c00488{width:852.000000pt;}
.x0_c00488{left:0.000000pt;}
.x3_c00488{left:69.066667pt;}
.x4f_c00488{left:70.133333pt;}
.x6d_c00488{left:72.266667pt;}
.x1e_c00488{left:74.266667pt;}
.x8d_c00488{left:81.333333pt;}
.x68_c00488{left:82.266667pt;}
.x4_c00488{left:83.200000pt;}
.x18_c00488{left:84.533333pt;}
.x4e_c00488{left:86.400000pt;}
.x60_c00488{left:87.866667pt;}
.x82_c00488{left:88.933333pt;}
.xd_c00488{left:100.000000pt;}
.x2b_c00488{left:102.933333pt;}
.x95_c00488{left:105.466667pt;}
.x3d_c00488{left:107.466667pt;}
.x61_c00488{left:109.600000pt;}
.x6e_c00488{left:110.933333pt;}
.xe_c00488{left:112.800000pt;}
.x1f_c00488{left:115.600000pt;}
.x5_c00488{left:117.066667pt;}
.x9b_c00488{left:119.066667pt;}
.x47_c00488{left:122.933333pt;}
.x26_c00488{left:124.800000pt;}
.x35_c00488{left:126.133333pt;}
.x92_c00488{left:127.066667pt;}
.x69_c00488{left:128.400000pt;}
.x19_c00488{left:130.000000pt;}
.x77_c00488{left:131.066667pt;}
.x6_c00488{left:132.133333pt;}
.x72_c00488{left:133.733333pt;}
.x36_c00488{left:137.066667pt;}
.x8b_c00488{left:138.000000pt;}
.x78_c00488{left:140.400000pt;}
.x55_c00488{left:142.133333pt;}
.x43_c00488{left:144.933333pt;}
.xf_c00488{left:146.133333pt;}
.x86_c00488{left:147.200000pt;}
.x13_c00488{left:151.866667pt;}
.x48_c00488{left:153.066667pt;}
.x20_c00488{left:154.000000pt;}
.x81_c00488{left:155.600000pt;}
.x50_c00488{left:157.733333pt;}
.x8e_c00488{left:159.733333pt;}
.x93_c00488{left:160.666667pt;}
.x83_c00488{left:161.600000pt;}
.x9c_c00488{left:163.600000pt;}
.x3e_c00488{left:165.066667pt;}
.x37_c00488{left:168.133333pt;}
.x7c_c00488{left:172.133333pt;}
.x76_c00488{left:174.266667pt;}
.x1a_c00488{left:176.400000pt;}
.x6b_c00488{left:177.600000pt;}
.x97_c00488{left:178.800000pt;}
.x27_c00488{left:180.800000pt;}
.x2c_c00488{left:182.000000pt;}
.x14_c00488{left:185.200000pt;}
.x56_c00488{left:186.266667pt;}
.x58_c00488{left:187.866667pt;}
.x21_c00488{left:189.200000pt;}
.x54_c00488{left:190.133333pt;}
.x84_c00488{left:191.066667pt;}
.x7d_c00488{left:192.000000pt;}
.x7_c00488{left:192.933333pt;}
.x6a_c00488{left:194.666667pt;}
.x88_c00488{left:196.533333pt;}
.x3f_c00488{left:197.733333pt;}
.x6c_c00488{left:200.266667pt;}
.x33_c00488{left:202.000000pt;}
.x49_c00488{left:204.000000pt;}
.x15_c00488{left:206.000000pt;}
.x1b_c00488{left:207.066667pt;}
.x10_c00488{left:208.533333pt;}
.x79_c00488{left:209.466667pt;}
.x6f_c00488{left:210.800000pt;}
.x51_c00488{left:212.800000pt;}
.x28_c00488{left:214.133333pt;}
.x44_c00488{left:215.066667pt;}
.x2d_c00488{left:217.200000pt;}
.x63_c00488{left:218.400000pt;}
.x5b_c00488{left:219.466667pt;}
.x94_c00488{left:221.466667pt;}
.x40_c00488{left:223.600000pt;}
.x8f_c00488{left:224.666667pt;}
.x22_c00488{left:226.266667pt;}
.x70_c00488{left:228.133333pt;}
.x4a_c00488{left:229.600000pt;}
.x8_c00488{left:231.600000pt;}
.x59_c00488{left:234.266667pt;}
.x38_c00488{left:236.933333pt;}
.x52_c00488{left:238.133333pt;}
.x9_c00488{left:239.866667pt;}
.x85_c00488{left:242.266667pt;}
.x7a_c00488{left:243.733333pt;}
.x34_c00488{left:247.466667pt;}
.x39_c00488{left:248.800000pt;}
.x7e_c00488{left:250.533333pt;}
.x41_c00488{left:252.133333pt;}
.x2e_c00488{left:253.733333pt;}
.x74_c00488{left:254.666667pt;}
.x9d_c00488{left:256.666667pt;}
.x8c_c00488{left:257.733333pt;}
.x71_c00488{left:258.800000pt;}
.x5a_c00488{left:260.800000pt;}
.x3a_c00488{left:264.533333pt;}
.x2f_c00488{left:266.266667pt;}
.x1c_c00488{left:268.133333pt;}
.x7b_c00488{left:269.066667pt;}
.x23_c00488{left:272.000000pt;}
.x4b_c00488{left:274.133333pt;}
.x16_c00488{left:276.133333pt;}
.x9a_c00488{left:277.066667pt;}
.x64_c00488{left:278.266667pt;}
.x87_c00488{left:280.666667pt;}
.x57_c00488{left:282.000000pt;}
.x1_c00488{left:282.933333pt;}
.x5c_c00488{left:284.000000pt;}
.x11_c00488{left:285.333333pt;}
.xa_c00488{left:286.533333pt;}
.x1d_c00488{left:288.933333pt;}
.x42_c00488{left:290.533333pt;}
.x89_c00488{left:291.866667pt;}
.x65_c00488{left:295.866667pt;}
.x31_c00488{left:296.933333pt;}
.x30_c00488{left:298.266667pt;}
.x90_c00488{left:299.600000pt;}
.x137_c00488{left:300.933333pt;}
.x24_c00488{left:302.133333pt;}
.x98_c00488{left:303.066667pt;}
.x17_c00488{left:304.933333pt;}
.x3b_c00488{left:309.066667pt;}
.x7f_c00488{left:311.066667pt;}
.x29_c00488{left:312.800000pt;}
.x5d_c00488{left:317.600000pt;}
.x45_c00488{left:319.733333pt;}
.x4c_c00488{left:322.133333pt;}
.x75_c00488{left:323.066667pt;}
.xb_c00488{left:325.866667pt;}
.x66_c00488{left:327.600000pt;}
.x3c_c00488{left:328.533333pt;}
.x25_c00488{left:331.600000pt;}
.x2a_c00488{left:332.666667pt;}
.xc_c00488{left:334.533333pt;}
.x5e_c00488{left:335.866667pt;}
.x9e_c00488{left:337.333333pt;}
.x80_c00488{left:338.266667pt;}
.x32_c00488{left:341.066667pt;}
.x91_c00488{left:342.133333pt;}
.x73_c00488{left:343.333333pt;}
.x8a_c00488{left:345.333333pt;}
.x67_c00488{left:346.533333pt;}
.x12_c00488{left:348.400000pt;}
.x46_c00488{left:350.133333pt;}
.x62_c00488{left:352.133333pt;}
.x4d_c00488{left:353.866667pt;}
.x53_c00488{left:354.933333pt;}
.x5f_c00488{left:358.533333pt;}
.x96_c00488{left:360.800000pt;}
.x99_c00488{left:362.266667pt;}
.x134_c00488{left:379.200000pt;}
.xbc_c00488{left:384.000000pt;}
.xd1_c00488{left:385.600000pt;}
.xe5_c00488{left:386.533333pt;}
.xfa_c00488{left:387.466667pt;}
.x128_c00488{left:388.800000pt;}
.x123_c00488{left:389.733333pt;}
.xc0_c00488{left:392.666667pt;}
.x9f_c00488{left:398.400000pt;}
.xc1_c00488{left:399.733333pt;}
.xd6_c00488{left:400.933333pt;}
.xd7_c00488{left:402.533333pt;}
.x107_c00488{left:404.133333pt;}
.x116_c00488{left:405.600000pt;}
.x131_c00488{left:408.266667pt;}
.xf9_c00488{left:411.866667pt;}
.xf5_c00488{left:413.200000pt;}
.xa7_c00488{left:415.066667pt;}
.xa8_c00488{left:416.666667pt;}
.xd8_c00488{left:418.266667pt;}
.xfe_c00488{left:420.533333pt;}
.x125_c00488{left:422.000000pt;}
.x135_c00488{left:423.733333pt;}
.xd2_c00488{left:425.600000pt;}
.x124_c00488{left:427.466667pt;}
.xb0_c00488{left:430.933333pt;}
.x126_c00488{left:433.200000pt;}
.xb7_c00488{left:434.666667pt;}
.x112_c00488{left:436.533333pt;}
.xcc_c00488{left:437.733333pt;}
.xb1_c00488{left:438.666667pt;}
.x120_c00488{left:440.133333pt;}
.xc3_c00488{left:443.200000pt;}
.xc7_c00488{left:444.800000pt;}
.xa0_c00488{left:447.066667pt;}
.xb2_c00488{left:448.266667pt;}
.x117_c00488{left:450.133333pt;}
.xc2_c00488{left:451.866667pt;}
.xe2_c00488{left:453.066667pt;}
.xa9_c00488{left:454.133333pt;}
.xd3_c00488{left:456.266667pt;}
.xee_c00488{left:457.600000pt;}
.xb8_c00488{left:459.600000pt;}
.xc8_c00488{left:460.533333pt;}
.xfb_c00488{left:462.000000pt;}
.xe3_c00488{left:464.000000pt;}
.xd4_c00488{left:468.133333pt;}
.xb3_c00488{left:470.933333pt;}
.xda_c00488{left:472.666667pt;}
.xcd_c00488{left:474.800000pt;}
.xff_c00488{left:476.266667pt;}
.xaa_c00488{left:478.133333pt;}
.xa1_c00488{left:479.066667pt;}
.x108_c00488{left:480.400000pt;}
.xe4_c00488{left:482.266667pt;}
.x118_c00488{left:485.600000pt;}
.x103_c00488{left:487.866667pt;}
.xc9_c00488{left:490.266667pt;}
.xb9_c00488{left:491.333333pt;}
.x10a_c00488{left:492.400000pt;}
.x121_c00488{left:493.866667pt;}
.x10d_c00488{left:499.066667pt;}
.xe8_c00488{left:501.733333pt;}
.x10b_c00488{left:502.933333pt;}
.xdb_c00488{left:504.933333pt;}
.x12f_c00488{left:506.933333pt;}
.xca_c00488{left:509.200000pt;}
.x113_c00488{left:510.800000pt;}
.xab_c00488{left:513.333333pt;}
.x104_c00488{left:515.733333pt;}
.xce_c00488{left:519.600000pt;}
.x12e_c00488{left:520.800000pt;}
.xc4_c00488{left:527.333333pt;}
.x119_c00488{left:529.733333pt;}
.xdc_c00488{left:531.200000pt;}
.x12b_c00488{left:532.400000pt;}
.x10c_c00488{left:533.600000pt;}
.x114_c00488{left:535.466667pt;}
.xba_c00488{left:536.800000pt;}
.xbd_c00488{left:539.866667pt;}
.xfc_c00488{left:542.400000pt;}
.x12d_c00488{left:544.800000pt;}
.xac_c00488{left:546.000000pt;}
.xa2_c00488{left:546.933333pt;}
.xc5_c00488{left:548.800000pt;}
.x109_c00488{left:549.733333pt;}
.x130_c00488{left:550.666667pt;}
.x100_c00488{left:551.733333pt;}
.xe9_c00488{left:554.533333pt;}
.xbb_c00488{left:556.666667pt;}
.xcb_c00488{left:558.133333pt;}
.xa3_c00488{left:559.466667pt;}
.xf0_c00488{left:560.400000pt;}
.x136_c00488{left:561.866667pt;}
.xad_c00488{left:563.866667pt;}
.xbe_c00488{left:565.200000pt;}
.x115_c00488{left:567.466667pt;}
.xef_c00488{left:568.933333pt;}
.x101_c00488{left:570.666667pt;}
.xcf_c00488{left:572.400000pt;}
.x11c_c00488{left:575.866667pt;}
.xae_c00488{left:577.600000pt;}
.xc6_c00488{left:580.800000pt;}
.xdd_c00488{left:583.333333pt;}
.x110_c00488{left:586.266667pt;}
.xea_c00488{left:587.200000pt;}
.xf6_c00488{left:588.266667pt;}
.xe6_c00488{left:590.533333pt;}
.xd0_c00488{left:591.600000pt;}
.x105_c00488{left:593.466667pt;}
.xb4_c00488{left:597.333333pt;}
.xde_c00488{left:599.333333pt;}
.xa4_c00488{left:601.333333pt;}
.x10e_c00488{left:602.800000pt;}
.xeb_c00488{left:603.866667pt;}
.xdf_c00488{left:605.733333pt;}
.x12a_c00488{left:607.333333pt;}
.x102_c00488{left:609.733333pt;}
.x11f_c00488{left:611.333333pt;}
.xd9_c00488{left:612.400000pt;}
.xf1_c00488{left:613.600000pt;}
.x11d_c00488{left:618.133333pt;}
.xe0_c00488{left:620.400000pt;}
.xf7_c00488{left:621.466667pt;}
.xb5_c00488{left:622.666667pt;}
.x111_c00488{left:624.000000pt;}
.x10f_c00488{left:624.933333pt;}
.xfd_c00488{left:626.533333pt;}
.xed_c00488{left:628.800000pt;}
.x12c_c00488{left:632.133333pt;}
.xa5_c00488{left:636.800000pt;}
.x132_c00488{left:637.733333pt;}
.xaf_c00488{left:638.666667pt;}
.xf2_c00488{left:641.066667pt;}
.xf8_c00488{left:642.533333pt;}
.xa6_c00488{left:644.533333pt;}
.xec_c00488{left:645.733333pt;}
.x106_c00488{left:647.333333pt;}
.xe1_c00488{left:648.533333pt;}
.x129_c00488{left:649.866667pt;}
.x122_c00488{left:653.333333pt;}
.x133_c00488{left:654.666667pt;}
.x2_c00488{left:656.400000pt;}
.x11a_c00488{left:659.333333pt;}
.xb6_c00488{left:661.333333pt;}
.xd5_c00488{left:662.933333pt;}
.xe7_c00488{left:665.733333pt;}
.x127_c00488{left:667.333333pt;}
.xbf_c00488{left:668.266667pt;}
.xf3_c00488{left:671.466667pt;}
.xf4_c00488{left:672.666667pt;}
.x11e_c00488{left:676.000000pt;}
.x11b_c00488{left:682.400000pt;}
}





/* 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_c00489 {
    display:none;
  }
  .loading-indicator_c00489.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00489 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_c00489 { 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_c00489" -> "#page-container .classname_c00489")
 */
.pf_c00489 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00489 { /* 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_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00489 { /* 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_c00489 { /* 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_c00489 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00489 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00489 {overflow:visible;}
  }
}
.c_c00489 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00489 { /* 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_c00489:after { /* webkit #35443 */
  content: '';
}
.t_c00489:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00489 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 */
}
.__c00489 { /* 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_c00489 { /* info for Javascript */
  display:none;
}
.l_c00489 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00489 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00489 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00489: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_c00489 {
    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_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00489.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_c00489 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00489{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00489;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.000000;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;}
.maf_c00489{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00489{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00489{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00489{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m89_c00489{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m114_c00489{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.md3_c00489{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00489{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m115_c00489{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m63_c00489{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00489{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00489{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m62_c00489{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m95_c00489{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00489{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m69_c00489{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m64_c00489{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00489{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00489{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me0_c00489{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m16_c00489{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m68_c00489{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m65_c00489{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m29_c00489{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m97_c00489{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m18_c00489{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.me_c00489{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m47_c00489{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m96_c00489{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00489{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00489{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00489{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00489{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m20_c00489{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m93_c00489{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m58_c00489{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md0_c00489{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.md4_c00489{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00489{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00489{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m54_c00489{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00489{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.md6_c00489{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00489{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mda_c00489{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00489{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00489{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mad_c00489{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m132_c00489{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00489{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00489{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00489{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m131_c00489{transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);}
.mc_c00489{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00489{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me5_c00489{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m91_c00489{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00489{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m81_c00489{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00489{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m125_c00489{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m130_c00489{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mae_c00489{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00489{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m107_c00489{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m83_c00489{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00489{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.me8_c00489{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00489{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m113_c00489{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m126_c00489{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m79_c00489{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m94_c00489{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m117_c00489{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00489{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m74_c00489{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00489{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m122_c00489{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m80_c00489{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00489{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m17_c00489{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m87_c00489{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00489{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me1_c00489{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m21_c00489{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m57_c00489{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00489{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m100_c00489{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m92_c00489{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m15_c00489{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m105_c00489{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m53_c00489{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00489{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00489{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00489{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mec_c00489{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.me4_c00489{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00489{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7_c00489{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m52_c00489{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m44_c00489{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00489{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00489{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00489{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m86_c00489{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m48_c00489{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00489{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00489{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m90_c00489{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00489{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m84_c00489{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mff_c00489{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m32_c00489{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00489{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m35_c00489{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m71_c00489{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00489{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m78_c00489{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md5_c00489{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00489{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md9_c00489{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00489{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m8_c00489{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00489{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00489{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m101_c00489{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m46_c00489{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00489{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.md_c00489{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md7_c00489{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.me6_c00489{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00489{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00489{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00489{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m108_c00489{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m19_c00489{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00489{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00489{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m40_c00489{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00489{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m76_c00489{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00489{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m33_c00489{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m88_c00489{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m116_c00489{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md8_c00489{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m28_c00489{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00489{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m23_c00489{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m39_c00489{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m123_c00489{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6_c00489{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m24_c00489{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m14_c00489{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mab_c00489{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m75_c00489{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m61_c00489{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5_c00489{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00489{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00489{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mca_c00489{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00489{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00489{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00489{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00489{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00489{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m103_c00489{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00489{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00489{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00489{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m56_c00489{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00489{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00489{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00489{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00489{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00489{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00489{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00489{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m9_c00489{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00489{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m37_c00489{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m11_c00489{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m110_c00489{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00489{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m102_c00489{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00489{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m36_c00489{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m31_c00489{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00489{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m43_c00489{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00489{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m41_c00489{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00489{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m42_c00489{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.med_c00489{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m82_c00489{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00489{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mce_c00489{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00489{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m26_c00489{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00489{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00489{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m34_c00489{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m45_c00489{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00489{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00489{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mee_c00489{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m25_c00489{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mea_c00489{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m127_c00489{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00489{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00489{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m60_c00489{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m55_c00489{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m77_c00489{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00489{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.meb_c00489{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m59_c00489{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m72_c00489{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00489{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.maa_c00489{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m128_c00489{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00489{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m98_c00489{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00489{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m10_c00489{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00489{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mf_c00489{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00489{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m106_c00489{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m99_c00489{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00489{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00489{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00489{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma_c00489{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mb_c00489{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me7_c00489{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m70_c00489{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00489{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00489{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00489{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00489{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m27_c00489{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m13_c00489{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m49_c00489{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00489{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mac_c00489{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00489{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00489{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00489{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00489{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00489{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md2_c00489{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m30_c00489{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00489{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);}
.m10f_c00489{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mba_c00489{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m38_c00489{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00489{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m50_c00489{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m85_c00489{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00489{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me3_c00489{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00489{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00489{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m66_c00489{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00489{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00489{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00489{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00489{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m118_c00489{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m129_c00489{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m12e_c00489{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m73_c00489{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m51_c00489{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m124_c00489{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00489{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00489{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.me9_c00489{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m4_c00489{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00489{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m67_c00489{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m111_c00489{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m120_c00489{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00489{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m12_c00489{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00489{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00489{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00489{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me2_c00489{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m119_c00489{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00489{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00489{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m104_c00489{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00489{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m112_c00489{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00489{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.md1_c00489{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00489{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m109_c00489{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.mef_c00489{transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);}
.m1_c00489{transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);}
.mde_c00489{transform:matrix(0.471750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471750,0.000000,0.000000,0.250000,0,0);}
.m121_c00489{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls0_c00489{letter-spacing:0.000000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{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__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00489{word-spacing:-16.250000px;}
.ws6_c00489{word-spacing:-4.872852px;}
.ws8_c00489{word-spacing:-3.750000px;}
.wsa_c00489{word-spacing:-1.366864px;}
.ws9_c00489{word-spacing:-1.250000px;}
.wsb_c00489{word-spacing:0.000000px;}
.ws5_c00489{word-spacing:3.048232px;}
.ws0_c00489{word-spacing:8.336624px;}
.ws1_c00489{word-spacing:11.875000px;}
.ws3_c00489{word-spacing:21.007238px;}
.ws4_c00489{word-spacing:29.166667px;}
.ws2_c00489{word-spacing:335.276139px;}
.fc0_c00489{color:transparent;}
.fs6_c00489{font-size:24.000000px;}
.fs8_c00489{font-size:36.000000px;}
.fs5_c00489{font-size:48.000000px;}
.fs0_c00489{font-size:54.000000px;}
.fs2_c00489{font-size:60.000000px;}
.fs4_c00489{font-size:66.000000px;}
.fs3_c00489{font-size:72.000000px;}
.fs1_c00489{font-size:84.000000px;}
.fs7_c00489{font-size:96.000000px;}
.y0_c00489{bottom:0.000000px;}
.y39_c00489{bottom:193.350000px;}
.y6a_c00489{bottom:196.500000px;}
.y38_c00489{bottom:208.050000px;}
.y69_c00489{bottom:211.650000px;}
.y68_c00489{bottom:228.150000px;}
.y37_c00489{bottom:236.550000px;}
.y67_c00489{bottom:241.050000px;}
.y36_c00489{bottom:254.550000px;}
.y66_c00489{bottom:255.150000px;}
.y65_c00489{bottom:269.250000px;}
.y35_c00489{bottom:272.550000px;}
.y34_c00489{bottom:283.650000px;}
.y33_c00489{bottom:292.350000px;}
.y64_c00489{bottom:304.200000px;}
.y32_c00489{bottom:311.100000px;}
.y3b_c00489{bottom:319.350000px;}
.y63_c00489{bottom:329.700000px;}
.y31_c00489{bottom:329.850000px;}
.y62_c00489{bottom:347.400000px;}
.y30_c00489{bottom:347.850000px;}
.y61_c00489{bottom:365.400000px;}
.y2f_c00489{bottom:365.850000px;}
.y60_c00489{bottom:383.400000px;}
.y2e_c00489{bottom:383.550000px;}
.y5f_c00489{bottom:401.100000px;}
.y2d_c00489{bottom:401.550000px;}
.y5e_c00489{bottom:419.400000px;}
.y2c_c00489{bottom:419.550000px;}
.y2b_c00489{bottom:437.550000px;}
.y5d_c00489{bottom:441.000000px;}
.y2a_c00489{bottom:455.250000px;}
.y5c_c00489{bottom:472.950000px;}
.y29_c00489{bottom:476.100000px;}
.y28_c00489{bottom:490.800000px;}
.y5b_c00489{bottom:493.500000px;}
.y27_c00489{bottom:508.800000px;}
.y5a_c00489{bottom:511.500000px;}
.y26_c00489{bottom:526.800000px;}
.y59_c00489{bottom:529.500000px;}
.y3a_c00489{bottom:543.600000px;}
.y25_c00489{bottom:544.800000px;}
.y58_c00489{bottom:547.200000px;}
.y24_c00489{bottom:562.800000px;}
.y57_c00489{bottom:564.900000px;}
.y23_c00489{bottom:580.500000px;}
.y22_c00489{bottom:598.200000px;}
.y56_c00489{bottom:598.650000px;}
.y21_c00489{bottom:616.200000px;}
.y55_c00489{bottom:618.150000px;}
.y20_c00489{bottom:634.200000px;}
.y54_c00489{bottom:638.400000px;}
.y1f_c00489{bottom:651.900000px;}
.y53_c00489{bottom:657.900000px;}
.y1e_c00489{bottom:669.600000px;}
.y52_c00489{bottom:676.200000px;}
.y1d_c00489{bottom:687.600000px;}
.y51_c00489{bottom:693.900000px;}
.y1c_c00489{bottom:705.600000px;}
.y50_c00489{bottom:711.600000px;}
.y1b_c00489{bottom:723.600000px;}
.y4f_c00489{bottom:729.600000px;}
.y1a_c00489{bottom:741.300000px;}
.y4e_c00489{bottom:747.300000px;}
.y19_c00489{bottom:759.300000px;}
.y4d_c00489{bottom:765.300000px;}
.y18_c00489{bottom:779.400000px;}
.y4c_c00489{bottom:783.300000px;}
.y17_c00489{bottom:795.300000px;}
.y4b_c00489{bottom:801.000000px;}
.y16_c00489{bottom:816.900000px;}
.y4a_c00489{bottom:818.700000px;}
.y15_c00489{bottom:831.600000px;}
.y49_c00489{bottom:836.700000px;}
.y14_c00489{bottom:845.700000px;}
.y13_c00489{bottom:858.600000px;}
.y48_c00489{bottom:860.100000px;}
.y12_c00489{bottom:871.500000px;}
.y47_c00489{bottom:884.550000px;}
.y11_c00489{bottom:890.550000px;}
.y46_c00489{bottom:903.900000px;}
.y10_c00489{bottom:908.550000px;}
.y45_c00489{bottom:921.900000px;}
.yf_c00489{bottom:936.600000px;}
.y44_c00489{bottom:939.600000px;}
.ye_c00489{bottom:944.100000px;}
.y43_c00489{bottom:957.300000px;}
.yd_c00489{bottom:961.800000px;}
.y42_c00489{bottom:978.450000px;}
.yc_c00489{bottom:979.800000px;}
.y41_c00489{bottom:997.200000px;}
.yb_c00489{bottom:997.500000px;}
.y40_c00489{bottom:1015.500000px;}
.ya_c00489{bottom:1019.100000px;}
.y3f_c00489{bottom:1036.800000px;}
.y9_c00489{bottom:1037.100000px;}
.y3e_c00489{bottom:1054.800000px;}
.y8_c00489{bottom:1057.650000px;}
.y7_c00489{bottom:1073.100000px;}
.y3d_c00489{bottom:1089.750000px;}
.y6_c00489{bottom:1090.800000px;}
.y5_c00489{bottom:1108.800000px;}
.y3c_c00489{bottom:1124.700000px;}
.y4_c00489{bottom:1126.500000px;}
.y2_c00489{bottom:1152.450000px;}
.y3_c00489{bottom:1155.300000px;}
.y1_c00489{bottom:1160.700000px;}
.h8_c00489{height:24.000000px;}
.ha_c00489{height:36.000000px;}
.h7_c00489{height:48.000000px;}
.h2_c00489{height:54.000000px;}
.h4_c00489{height:60.000000px;}
.h6_c00489{height:66.000000px;}
.h5_c00489{height:72.000000px;}
.h3_c00489{height:84.000000px;}
.h9_c00489{height:96.000000px;}
.h0_c00489{height:1276.920044px;}
.h1_c00489{height:1277.250000px;}
.w0_c00489{width:958.320007px;}
.w1_c00489{width:958.500000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:180.000000px;}
.x57_c00489{left:185.100000px;}
.x4_c00489{left:186.150000px;}
.xa2_c00489{left:187.950000px;}
.xb6_c00489{left:190.500000px;}
.x75_c00489{left:194.100000px;}
.x42_c00489{left:201.450000px;}
.x6e_c00489{left:202.800000px;}
.xa_c00489{left:203.850000px;}
.xb1_c00489{left:206.250000px;}
.x2a_c00489{left:210.150000px;}
.x5b_c00489{left:215.100000px;}
.x78_c00489{left:219.450000px;}
.x96_c00489{left:220.500000px;}
.x5_c00489{left:222.900000px;}
.x53_c00489{left:223.950000px;}
.x4c_c00489{left:225.450000px;}
.xb5_c00489{left:226.500000px;}
.x46_c00489{left:228.450000px;}
.x2b_c00489{left:229.650000px;}
.xb2_c00489{left:230.700000px;}
.x21_c00489{left:232.500000px;}
.x93_c00489{left:233.700000px;}
.xa1_c00489{left:237.000000px;}
.x76_c00489{left:238.350000px;}
.x2f_c00489{left:241.050000px;}
.x97_c00489{left:242.100000px;}
.x16_c00489{left:243.150000px;}
.xb_c00489{left:244.200000px;}
.x6a_c00489{left:246.150000px;}
.x43_c00489{left:248.550000px;}
.x3b_c00489{left:249.750000px;}
.x12_c00489{left:252.000000px;}
.x26_c00489{left:253.650000px;}
.x6f_c00489{left:255.000000px;}
.x86_c00489{left:256.650000px;}
.x94_c00489{left:261.150000px;}
.x17_c00489{left:262.650000px;}
.x9e_c00489{left:263.700000px;}
.x68_c00489{left:265.950000px;}
.x3c_c00489{left:268.500000px;}
.x6_c00489{left:270.000000px;}
.x4d_c00489{left:272.250000px;}
.x7d_c00489{left:273.300000px;}
.x66_c00489{left:274.650000px;}
.x73_c00489{left:279.750000px;}
.x4e_c00489{left:281.550000px;}
.x84_c00489{left:284.400000px;}
.x13_c00489{left:285.900000px;}
.x87_c00489{left:287.550000px;}
.x98_c00489{left:289.200000px;}
.x30_c00489{left:291.150000px;}
.xb4_c00489{left:292.200000px;}
.x2c_c00489{left:293.700000px;}
.x27_c00489{left:295.800000px;}
.x4f_c00489{left:297.450000px;}
.x18_c00489{left:299.700000px;}
.x1c_c00489{left:301.500000px;}
.x31_c00489{left:303.000000px;}
.x79_c00489{left:304.350000px;}
.x38_c00489{left:305.850000px;}
.x9c_c00489{left:308.100000px;}
.x6b_c00489{left:309.150000px;}
.xc_c00489{left:310.500000px;}
.x63_c00489{left:312.150000px;}
.x47_c00489{left:315.600000px;}
.x22_c00489{left:316.800000px;}
.x77_c00489{left:318.150000px;}
.x32_c00489{left:319.500000px;}
.x7_c00489{left:321.900000px;}
.x69_c00489{left:323.550000px;}
.x3d_c00489{left:325.800000px;}
.x7e_c00489{left:327.900000px;}
.x5c_c00489{left:329.250000px;}
.x8e_c00489{left:331.050000px;}
.x28_c00489{left:333.600000px;}
.x7a_c00489{left:334.950000px;}
.x5d_c00489{left:336.450000px;}
.x85_c00489{left:340.500000px;}
.x23_c00489{left:342.300000px;}
.x50_c00489{left:343.950000px;}
.x88_c00489{left:345.450000px;}
.x8c_c00489{left:346.500000px;}
.x8a_c00489{left:347.550000px;}
.x9f_c00489{left:348.750000px;}
.x33_c00489{left:349.800000px;}
.x48_c00489{left:351.300000px;}
.x81_c00489{left:355.200000px;}
.x19_c00489{left:356.550000px;}
.x5e_c00489{left:358.350000px;}
.x8_c00489{left:360.750000px;}
.x34_c00489{left:362.100000px;}
.x72_c00489{left:363.600000px;}
.x5f_c00489{left:365.250000px;}
.x8f_c00489{left:366.300000px;}
.x1d_c00489{left:368.400000px;}
.x60_c00489{left:372.750000px;}
.x82_c00489{left:375.300000px;}
.x49_c00489{left:376.500000px;}
.xd_c00489{left:377.850000px;}
.x61_c00489{left:379.650000px;}
.x3e_c00489{left:382.350000px;}
.xb7_c00489{left:383.850000px;}
.x7b_c00489{left:385.650000px;}
.x14_c00489{left:386.700000px;}
.xe_c00489{left:387.900000px;}
.x91_c00489{left:390.600000px;}
.x4a_c00489{left:391.650000px;}
.x29_c00489{left:392.700000px;}
.xf_c00489{left:395.400000px;}
.x51_c00489{left:397.200000px;}
.x99_c00489{left:398.700000px;}
.x1e_c00489{left:399.750000px;}
.x58_c00489{left:401.850000px;}
.x8d_c00489{left:403.050000px;}
.x35_c00489{left:405.300000px;}
.x44_c00489{left:406.500000px;}
.x52_c00489{left:407.700000px;}
.x1f_c00489{left:408.750000px;}
.x9b_c00489{left:414.150000px;}
.x92_c00489{left:415.500000px;}
.x20_c00489{left:417.000000px;}
.xb3_c00489{left:418.650000px;}
.x1a_c00489{left:420.600000px;}
.x59_c00489{left:423.750000px;}
.x2_c00489{left:425.550000px;}
.x70_c00489{left:427.200000px;}
.x64_c00489{left:428.700000px;}
.x62_c00489{left:430.800000px;}
.x9a_c00489{left:433.650000px;}
.xa0_c00489{left:435.600000px;}
.x36_c00489{left:436.950000px;}
.x9_c00489{left:438.900000px;}
.x54_c00489{left:441.450000px;}
.x2d_c00489{left:443.100000px;}
.x71_c00489{left:444.450000px;}
.x67_c00489{left:446.400000px;}
.x3f_c00489{left:449.250000px;}
.xa3_c00489{left:450.300000px;}
.x45_c00489{left:451.800000px;}
.x24_c00489{left:454.200000px;}
.x9d_c00489{left:455.250000px;}
.x39_c00489{left:457.050000px;}
.x83_c00489{left:458.550000px;}
.x10_c00489{left:460.500000px;}
.x4b_c00489{left:462.300000px;}
.x6c_c00489{left:465.000000px;}
.x40_c00489{left:468.300000px;}
.x2e_c00489{left:470.100000px;}
.x55_c00489{left:472.350000px;}
.x7c_c00489{left:475.200000px;}
.xa4_c00489{left:476.550000px;}
.x5a_c00489{left:478.950000px;}
.x15_c00489{left:480.000000px;}
.x65_c00489{left:483.000000px;}
.x6d_c00489{left:485.100000px;}
.x74_c00489{left:487.800000px;}
.x7f_c00489{left:489.600000px;}
.x8b_c00489{left:491.250000px;}
.x37_c00489{left:492.750000px;}
.x89_c00489{left:496.350000px;}
.x41_c00489{left:497.400000px;}
.x90_c00489{left:500.250000px;}
.x25_c00489{left:501.750000px;}
.x80_c00489{left:505.050000px;}
.x56_c00489{left:506.250000px;}
.x3a_c00489{left:508.200000px;}
.x11_c00489{left:511.650000px;}
.x1b_c00489{left:516.300000px;}
.xb8_c00489{left:526.650000px;}
.x95_c00489{left:528.300000px;}
.xa5_c00489{left:529.500000px;}
.x11c_c00489{left:540.750000px;}
.xa6_c00489{left:541.800000px;}
.xb9_c00489{left:543.300000px;}
.x12d_c00489{left:556.350000px;}
.x10e_c00489{left:557.850000px;}
.xf2_c00489{left:558.900000px;}
.xc4_c00489{left:561.300000px;}
.x130_c00489{left:563.100000px;}
.x141_c00489{left:569.850000px;}
.x122_c00489{left:574.200000px;}
.x111_c00489{left:575.700000px;}
.xa7_c00489{left:576.750000px;}
.x13e_c00489{left:577.800000px;}
.xc5_c00489{left:579.600000px;}
.x10b_c00489{left:580.650000px;}
.xf6_c00489{left:583.050000px;}
.xd4_c00489{left:584.700000px;}
.x143_c00489{left:586.200000px;}
.x136_c00489{left:587.700000px;}
.x102_c00489{left:589.800000px;}
.xe0_c00489{left:592.650000px;}
.x114_c00489{left:596.100000px;}
.xd9_c00489{left:597.750000px;}
.x10f_c00489{left:600.000000px;}
.xf3_c00489{left:601.350000px;}
.xca_c00489{left:602.400000px;}
.xd2_c00489{left:604.950000px;}
.xe1_c00489{left:606.300000px;}
.x11d_c00489{left:607.350000px;}
.xfd_c00489{left:609.450000px;}
.x125_c00489{left:612.450000px;}
.x103_c00489{left:613.950000px;}
.xa8_c00489{left:615.600000px;}
.x12f_c00489{left:617.100000px;}
.x115_c00489{left:619.200000px;}
.xc0_c00489{left:621.000000px;}
.xc6_c00489{left:622.500000px;}
.xe6_c00489{left:625.800000px;}
.xe2_c00489{left:629.400000px;}
.xd3_c00489{left:630.900000px;}
.xec_c00489{left:632.250000px;}
.x104_c00489{left:634.050000px;}
.xa9_c00489{left:635.700000px;}
.xcb_c00489{left:638.700000px;}
.x129_c00489{left:642.750000px;}
.x13f_c00489{left:643.950000px;}
.x121_c00489{left:645.750000px;}
.xbc_c00489{left:648.450000px;}
.x123_c00489{left:651.600000px;}
.xda_c00489{left:655.350000px;}
.xed_c00489{left:657.300000px;}
.xcc_c00489{left:658.800000px;}
.xbd_c00489{left:660.750000px;}
.xfa_c00489{left:662.550000px;}
.x112_c00489{left:664.950000px;}
.x124_c00489{left:666.150000px;}
.xf7_c00489{left:667.200000px;}
.x11e_c00489{left:668.850000px;}
.xfe_c00489{left:670.650000px;}
.xaa_c00489{left:671.700000px;}
.xcd_c00489{left:674.250000px;}
.x105_c00489{left:676.200000px;}
.xe7_c00489{left:677.700000px;}
.xab_c00489{left:679.950000px;}
.xc7_c00489{left:681.150000px;}
.xee_c00489{left:682.800000px;}
.x116_c00489{left:684.750000px;}
.x12a_c00489{left:689.550000px;}
.xbe_c00489{left:690.600000px;}
.x113_c00489{left:693.000000px;}
.x126_c00489{left:694.500000px;}
.xac_c00489{left:696.450000px;}
.xd5_c00489{left:697.800000px;}
.xf4_c00489{left:699.300000px;}
.xf8_c00489{left:700.650000px;}
.xc1_c00489{left:703.800000px;}
.x131_c00489{left:706.800000px;}
.x142_c00489{left:708.450000px;}
.xe3_c00489{left:710.100000px;}
.x106_c00489{left:714.300000px;}
.xff_c00489{left:717.150000px;}
.xad_c00489{left:719.850000px;}
.x13a_c00489{left:721.200000px;}
.xe8_c00489{left:722.400000px;}
.xf9_c00489{left:724.050000px;}
.x144_c00489{left:725.250000px;}
.xdb_c00489{left:728.850000px;}
.x10c_c00489{left:729.900000px;}
.xe9_c00489{left:732.900000px;}
.x134_c00489{left:735.150000px;}
.xd6_c00489{left:738.150000px;}
.xdc_c00489{left:739.650000px;}
.xae_c00489{left:740.700000px;}
.xbf_c00489{left:743.850000px;}
.x117_c00489{left:746.250000px;}
.xd7_c00489{left:747.900000px;}
.x12b_c00489{left:748.950000px;}
.x100_c00489{left:751.050000px;}
.xef_c00489{left:755.850000px;}
.x137_c00489{left:758.700000px;}
.xce_c00489{left:761.400000px;}
.x138_c00489{left:762.450000px;}
.x11f_c00489{left:763.800000px;}
.x145_c00489{left:764.850000px;}
.x110_c00489{left:766.650000px;}
.x118_c00489{left:768.150000px;}
.xcf_c00489{left:769.350000px;}
.x109_c00489{left:774.450000px;}
.xfb_c00489{left:775.500000px;}
.x127_c00489{left:776.550000px;}
.xd0_c00489{left:779.100000px;}
.x10d_c00489{left:780.300000px;}
.xe4_c00489{left:783.300000px;}
.xdd_c00489{left:784.650000px;}
.x128_c00489{left:785.850000px;}
.xd1_c00489{left:787.050000px;}
.x119_c00489{left:788.250000px;}
.xea_c00489{left:789.750000px;}
.x13b_c00489{left:792.000000px;}
.xaf_c00489{left:794.700000px;}
.xba_c00489{left:796.050000px;}
.xfc_c00489{left:799.650000px;}
.x135_c00489{left:803.850000px;}
.xf0_c00489{left:807.300000px;}
.x10a_c00489{left:814.050000px;}
.xc2_c00489{left:816.900000px;}
.x139_c00489{left:818.100000px;}
.x107_c00489{left:819.450000px;}
.x12e_c00489{left:820.800000px;}
.xc8_c00489{left:822.300000px;}
.x13c_c00489{left:823.950000px;}
.xb0_c00489{left:826.800000px;}
.xc3_c00489{left:829.500000px;}
.xc9_c00489{left:832.050000px;}
.xf5_c00489{left:833.250000px;}
.x132_c00489{left:834.600000px;}
.x3_c00489{left:837.000000px;}
.x140_c00489{left:839.100000px;}
.xd8_c00489{left:840.750000px;}
.xde_c00489{left:842.250000px;}
.x146_c00489{left:845.250000px;}
.xeb_c00489{left:847.050000px;}
.x133_c00489{left:848.250000px;}
.x11a_c00489{left:851.250000px;}
.xf1_c00489{left:853.350000px;}
.x13d_c00489{left:856.050000px;}
.x101_c00489{left:857.700000px;}
.x12c_c00489{left:860.550000px;}
.xdf_c00489{left:862.350000px;}
.x11b_c00489{left:863.850000px;}
.xbb_c00489{left:867.300000px;}
.x120_c00489{left:869.700000px;}
.x108_c00489{left:871.350000px;}
.xe5_c00489{left:874.650000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws7_c00489{word-spacing:-14.444444pt;}
.ws6_c00489{word-spacing:-4.331424pt;}
.ws8_c00489{word-spacing:-3.333333pt;}
.wsa_c00489{word-spacing:-1.214990pt;}
.ws9_c00489{word-spacing:-1.111111pt;}
.wsb_c00489{word-spacing:0.000000pt;}
.ws5_c00489{word-spacing:2.709539pt;}
.ws0_c00489{word-spacing:7.410332pt;}
.ws1_c00489{word-spacing:10.555556pt;}
.ws3_c00489{word-spacing:18.673100pt;}
.ws4_c00489{word-spacing:25.925926pt;}
.ws2_c00489{word-spacing:298.023235pt;}
.fs6_c00489{font-size:21.333333pt;}
.fs8_c00489{font-size:32.000000pt;}
.fs5_c00489{font-size:42.666667pt;}
.fs0_c00489{font-size:48.000000pt;}
.fs2_c00489{font-size:53.333333pt;}
.fs4_c00489{font-size:58.666667pt;}
.fs3_c00489{font-size:64.000000pt;}
.fs1_c00489{font-size:74.666667pt;}
.fs7_c00489{font-size:85.333333pt;}
.y0_c00489{bottom:0.000000pt;}
.y39_c00489{bottom:171.866667pt;}
.y6a_c00489{bottom:174.666667pt;}
.y38_c00489{bottom:184.933333pt;}
.y69_c00489{bottom:188.133333pt;}
.y68_c00489{bottom:202.800000pt;}
.y37_c00489{bottom:210.266667pt;}
.y67_c00489{bottom:214.266667pt;}
.y36_c00489{bottom:226.266667pt;}
.y66_c00489{bottom:226.800000pt;}
.y65_c00489{bottom:239.333333pt;}
.y35_c00489{bottom:242.266667pt;}
.y34_c00489{bottom:252.133333pt;}
.y33_c00489{bottom:259.866667pt;}
.y64_c00489{bottom:270.400000pt;}
.y32_c00489{bottom:276.533333pt;}
.y3b_c00489{bottom:283.866667pt;}
.y63_c00489{bottom:293.066667pt;}
.y31_c00489{bottom:293.200000pt;}
.y62_c00489{bottom:308.800000pt;}
.y30_c00489{bottom:309.200000pt;}
.y61_c00489{bottom:324.800000pt;}
.y2f_c00489{bottom:325.200000pt;}
.y60_c00489{bottom:340.800000pt;}
.y2e_c00489{bottom:340.933333pt;}
.y5f_c00489{bottom:356.533333pt;}
.y2d_c00489{bottom:356.933333pt;}
.y5e_c00489{bottom:372.800000pt;}
.y2c_c00489{bottom:372.933333pt;}
.y2b_c00489{bottom:388.933333pt;}
.y5d_c00489{bottom:392.000000pt;}
.y2a_c00489{bottom:404.666667pt;}
.y5c_c00489{bottom:420.400000pt;}
.y29_c00489{bottom:423.200000pt;}
.y28_c00489{bottom:436.266667pt;}
.y5b_c00489{bottom:438.666667pt;}
.y27_c00489{bottom:452.266667pt;}
.y5a_c00489{bottom:454.666667pt;}
.y26_c00489{bottom:468.266667pt;}
.y59_c00489{bottom:470.666667pt;}
.y3a_c00489{bottom:483.200000pt;}
.y25_c00489{bottom:484.266667pt;}
.y58_c00489{bottom:486.400000pt;}
.y24_c00489{bottom:500.266667pt;}
.y57_c00489{bottom:502.133333pt;}
.y23_c00489{bottom:516.000000pt;}
.y22_c00489{bottom:531.733333pt;}
.y56_c00489{bottom:532.133333pt;}
.y21_c00489{bottom:547.733333pt;}
.y55_c00489{bottom:549.466667pt;}
.y20_c00489{bottom:563.733333pt;}
.y54_c00489{bottom:567.466667pt;}
.y1f_c00489{bottom:579.466667pt;}
.y53_c00489{bottom:584.800000pt;}
.y1e_c00489{bottom:595.200000pt;}
.y52_c00489{bottom:601.066667pt;}
.y1d_c00489{bottom:611.200000pt;}
.y51_c00489{bottom:616.800000pt;}
.y1c_c00489{bottom:627.200000pt;}
.y50_c00489{bottom:632.533333pt;}
.y1b_c00489{bottom:643.200000pt;}
.y4f_c00489{bottom:648.533333pt;}
.y1a_c00489{bottom:658.933333pt;}
.y4e_c00489{bottom:664.266667pt;}
.y19_c00489{bottom:674.933333pt;}
.y4d_c00489{bottom:680.266667pt;}
.y18_c00489{bottom:692.800000pt;}
.y4c_c00489{bottom:696.266667pt;}
.y17_c00489{bottom:706.933333pt;}
.y4b_c00489{bottom:712.000000pt;}
.y16_c00489{bottom:726.133333pt;}
.y4a_c00489{bottom:727.733333pt;}
.y15_c00489{bottom:739.200000pt;}
.y49_c00489{bottom:743.733333pt;}
.y14_c00489{bottom:751.733333pt;}
.y13_c00489{bottom:763.200000pt;}
.y48_c00489{bottom:764.533333pt;}
.y12_c00489{bottom:774.666667pt;}
.y47_c00489{bottom:786.266667pt;}
.y11_c00489{bottom:791.600000pt;}
.y46_c00489{bottom:803.466667pt;}
.y10_c00489{bottom:807.600000pt;}
.y45_c00489{bottom:819.466667pt;}
.yf_c00489{bottom:832.533333pt;}
.y44_c00489{bottom:835.200000pt;}
.ye_c00489{bottom:839.200000pt;}
.y43_c00489{bottom:850.933333pt;}
.yd_c00489{bottom:854.933333pt;}
.y42_c00489{bottom:869.733333pt;}
.yc_c00489{bottom:870.933333pt;}
.y41_c00489{bottom:886.400000pt;}
.yb_c00489{bottom:886.666667pt;}
.y40_c00489{bottom:902.666667pt;}
.ya_c00489{bottom:905.866667pt;}
.y3f_c00489{bottom:921.600000pt;}
.y9_c00489{bottom:921.866667pt;}
.y3e_c00489{bottom:937.600000pt;}
.y8_c00489{bottom:940.133333pt;}
.y7_c00489{bottom:953.866667pt;}
.y3d_c00489{bottom:968.666667pt;}
.y6_c00489{bottom:969.600000pt;}
.y5_c00489{bottom:985.600000pt;}
.y3c_c00489{bottom:999.733333pt;}
.y4_c00489{bottom:1001.333333pt;}
.y2_c00489{bottom:1024.400000pt;}
.y3_c00489{bottom:1026.933333pt;}
.y1_c00489{bottom:1031.733333pt;}
.h8_c00489{height:21.333333pt;}
.ha_c00489{height:32.000000pt;}
.h7_c00489{height:42.666667pt;}
.h2_c00489{height:48.000000pt;}
.h4_c00489{height:53.333333pt;}
.h6_c00489{height:58.666667pt;}
.h5_c00489{height:64.000000pt;}
.h3_c00489{height:74.666667pt;}
.h9_c00489{height:85.333333pt;}
.h0_c00489{height:1135.040039pt;}
.h1_c00489{height:1135.333333pt;}
.w0_c00489{width:851.840007pt;}
.w1_c00489{width:852.000000pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:160.000000pt;}
.x57_c00489{left:164.533333pt;}
.x4_c00489{left:165.466667pt;}
.xa2_c00489{left:167.066667pt;}
.xb6_c00489{left:169.333333pt;}
.x75_c00489{left:172.533333pt;}
.x42_c00489{left:179.066667pt;}
.x6e_c00489{left:180.266667pt;}
.xa_c00489{left:181.200000pt;}
.xb1_c00489{left:183.333333pt;}
.x2a_c00489{left:186.800000pt;}
.x5b_c00489{left:191.200000pt;}
.x78_c00489{left:195.066667pt;}
.x96_c00489{left:196.000000pt;}
.x5_c00489{left:198.133333pt;}
.x53_c00489{left:199.066667pt;}
.x4c_c00489{left:200.400000pt;}
.xb5_c00489{left:201.333333pt;}
.x46_c00489{left:203.066667pt;}
.x2b_c00489{left:204.133333pt;}
.xb2_c00489{left:205.066667pt;}
.x21_c00489{left:206.666667pt;}
.x93_c00489{left:207.733333pt;}
.xa1_c00489{left:210.666667pt;}
.x76_c00489{left:211.866667pt;}
.x2f_c00489{left:214.266667pt;}
.x97_c00489{left:215.200000pt;}
.x16_c00489{left:216.133333pt;}
.xb_c00489{left:217.066667pt;}
.x6a_c00489{left:218.800000pt;}
.x43_c00489{left:220.933333pt;}
.x3b_c00489{left:222.000000pt;}
.x12_c00489{left:224.000000pt;}
.x26_c00489{left:225.466667pt;}
.x6f_c00489{left:226.666667pt;}
.x86_c00489{left:228.133333pt;}
.x94_c00489{left:232.133333pt;}
.x17_c00489{left:233.466667pt;}
.x9e_c00489{left:234.400000pt;}
.x68_c00489{left:236.400000pt;}
.x3c_c00489{left:238.666667pt;}
.x6_c00489{left:240.000000pt;}
.x4d_c00489{left:242.000000pt;}
.x7d_c00489{left:242.933333pt;}
.x66_c00489{left:244.133333pt;}
.x73_c00489{left:248.666667pt;}
.x4e_c00489{left:250.266667pt;}
.x84_c00489{left:252.800000pt;}
.x13_c00489{left:254.133333pt;}
.x87_c00489{left:255.600000pt;}
.x98_c00489{left:257.066667pt;}
.x30_c00489{left:258.800000pt;}
.xb4_c00489{left:259.733333pt;}
.x2c_c00489{left:261.066667pt;}
.x27_c00489{left:262.933333pt;}
.x4f_c00489{left:264.400000pt;}
.x18_c00489{left:266.400000pt;}
.x1c_c00489{left:268.000000pt;}
.x31_c00489{left:269.333333pt;}
.x79_c00489{left:270.533333pt;}
.x38_c00489{left:271.866667pt;}
.x9c_c00489{left:273.866667pt;}
.x6b_c00489{left:274.800000pt;}
.xc_c00489{left:276.000000pt;}
.x63_c00489{left:277.466667pt;}
.x47_c00489{left:280.533333pt;}
.x22_c00489{left:281.600000pt;}
.x77_c00489{left:282.800000pt;}
.x32_c00489{left:284.000000pt;}
.x7_c00489{left:286.133333pt;}
.x69_c00489{left:287.600000pt;}
.x3d_c00489{left:289.600000pt;}
.x7e_c00489{left:291.466667pt;}
.x5c_c00489{left:292.666667pt;}
.x8e_c00489{left:294.266667pt;}
.x28_c00489{left:296.533333pt;}
.x7a_c00489{left:297.733333pt;}
.x5d_c00489{left:299.066667pt;}
.x85_c00489{left:302.666667pt;}
.x23_c00489{left:304.266667pt;}
.x50_c00489{left:305.733333pt;}
.x88_c00489{left:307.066667pt;}
.x8c_c00489{left:308.000000pt;}
.x8a_c00489{left:308.933333pt;}
.x9f_c00489{left:310.000000pt;}
.x33_c00489{left:310.933333pt;}
.x48_c00489{left:312.266667pt;}
.x81_c00489{left:315.733333pt;}
.x19_c00489{left:316.933333pt;}
.x5e_c00489{left:318.533333pt;}
.x8_c00489{left:320.666667pt;}
.x34_c00489{left:321.866667pt;}
.x72_c00489{left:323.200000pt;}
.x5f_c00489{left:324.666667pt;}
.x8f_c00489{left:325.600000pt;}
.x1d_c00489{left:327.466667pt;}
.x60_c00489{left:331.333333pt;}
.x82_c00489{left:333.600000pt;}
.x49_c00489{left:334.666667pt;}
.xd_c00489{left:335.866667pt;}
.x61_c00489{left:337.466667pt;}
.x3e_c00489{left:339.866667pt;}
.xb7_c00489{left:341.200000pt;}
.x7b_c00489{left:342.800000pt;}
.x14_c00489{left:343.733333pt;}
.xe_c00489{left:344.800000pt;}
.x91_c00489{left:347.200000pt;}
.x4a_c00489{left:348.133333pt;}
.x29_c00489{left:349.066667pt;}
.xf_c00489{left:351.466667pt;}
.x51_c00489{left:353.066667pt;}
.x99_c00489{left:354.400000pt;}
.x1e_c00489{left:355.333333pt;}
.x58_c00489{left:357.200000pt;}
.x8d_c00489{left:358.266667pt;}
.x35_c00489{left:360.266667pt;}
.x44_c00489{left:361.333333pt;}
.x52_c00489{left:362.400000pt;}
.x1f_c00489{left:363.333333pt;}
.x9b_c00489{left:368.133333pt;}
.x92_c00489{left:369.333333pt;}
.x20_c00489{left:370.666667pt;}
.xb3_c00489{left:372.133333pt;}
.x1a_c00489{left:373.866667pt;}
.x59_c00489{left:376.666667pt;}
.x2_c00489{left:378.266667pt;}
.x70_c00489{left:379.733333pt;}
.x64_c00489{left:381.066667pt;}
.x62_c00489{left:382.933333pt;}
.x9a_c00489{left:385.466667pt;}
.xa0_c00489{left:387.200000pt;}
.x36_c00489{left:388.400000pt;}
.x9_c00489{left:390.133333pt;}
.x54_c00489{left:392.400000pt;}
.x2d_c00489{left:393.866667pt;}
.x71_c00489{left:395.066667pt;}
.x67_c00489{left:396.800000pt;}
.x3f_c00489{left:399.333333pt;}
.xa3_c00489{left:400.266667pt;}
.x45_c00489{left:401.600000pt;}
.x24_c00489{left:403.733333pt;}
.x9d_c00489{left:404.666667pt;}
.x39_c00489{left:406.266667pt;}
.x83_c00489{left:407.600000pt;}
.x10_c00489{left:409.333333pt;}
.x4b_c00489{left:410.933333pt;}
.x6c_c00489{left:413.333333pt;}
.x40_c00489{left:416.266667pt;}
.x2e_c00489{left:417.866667pt;}
.x55_c00489{left:419.866667pt;}
.x7c_c00489{left:422.400000pt;}
.xa4_c00489{left:423.600000pt;}
.x5a_c00489{left:425.733333pt;}
.x15_c00489{left:426.666667pt;}
.x65_c00489{left:429.333333pt;}
.x6d_c00489{left:431.200000pt;}
.x74_c00489{left:433.600000pt;}
.x7f_c00489{left:435.200000pt;}
.x8b_c00489{left:436.666667pt;}
.x37_c00489{left:438.000000pt;}
.x89_c00489{left:441.200000pt;}
.x41_c00489{left:442.133333pt;}
.x90_c00489{left:444.666667pt;}
.x25_c00489{left:446.000000pt;}
.x80_c00489{left:448.933333pt;}
.x56_c00489{left:450.000000pt;}
.x3a_c00489{left:451.733333pt;}
.x11_c00489{left:454.800000pt;}
.x1b_c00489{left:458.933333pt;}
.xb8_c00489{left:468.133333pt;}
.x95_c00489{left:469.600000pt;}
.xa5_c00489{left:470.666667pt;}
.x11c_c00489{left:480.666667pt;}
.xa6_c00489{left:481.600000pt;}
.xb9_c00489{left:482.933333pt;}
.x12d_c00489{left:494.533333pt;}
.x10e_c00489{left:495.866667pt;}
.xf2_c00489{left:496.800000pt;}
.xc4_c00489{left:498.933333pt;}
.x130_c00489{left:500.533333pt;}
.x141_c00489{left:506.533333pt;}
.x122_c00489{left:510.400000pt;}
.x111_c00489{left:511.733333pt;}
.xa7_c00489{left:512.666667pt;}
.x13e_c00489{left:513.600000pt;}
.xc5_c00489{left:515.200000pt;}
.x10b_c00489{left:516.133333pt;}
.xf6_c00489{left:518.266667pt;}
.xd4_c00489{left:519.733333pt;}
.x143_c00489{left:521.066667pt;}
.x136_c00489{left:522.400000pt;}
.x102_c00489{left:524.266667pt;}
.xe0_c00489{left:526.800000pt;}
.x114_c00489{left:529.866667pt;}
.xd9_c00489{left:531.333333pt;}
.x10f_c00489{left:533.333333pt;}
.xf3_c00489{left:534.533333pt;}
.xca_c00489{left:535.466667pt;}
.xd2_c00489{left:537.733333pt;}
.xe1_c00489{left:538.933333pt;}
.x11d_c00489{left:539.866667pt;}
.xfd_c00489{left:541.733333pt;}
.x125_c00489{left:544.400000pt;}
.x103_c00489{left:545.733333pt;}
.xa8_c00489{left:547.200000pt;}
.x12f_c00489{left:548.533333pt;}
.x115_c00489{left:550.400000pt;}
.xc0_c00489{left:552.000000pt;}
.xc6_c00489{left:553.333333pt;}
.xe6_c00489{left:556.266667pt;}
.xe2_c00489{left:559.466667pt;}
.xd3_c00489{left:560.800000pt;}
.xec_c00489{left:562.000000pt;}
.x104_c00489{left:563.600000pt;}
.xa9_c00489{left:565.066667pt;}
.xcb_c00489{left:567.733333pt;}
.x129_c00489{left:571.333333pt;}
.x13f_c00489{left:572.400000pt;}
.x121_c00489{left:574.000000pt;}
.xbc_c00489{left:576.400000pt;}
.x123_c00489{left:579.200000pt;}
.xda_c00489{left:582.533333pt;}
.xed_c00489{left:584.266667pt;}
.xcc_c00489{left:585.600000pt;}
.xbd_c00489{left:587.333333pt;}
.xfa_c00489{left:588.933333pt;}
.x112_c00489{left:591.066667pt;}
.x124_c00489{left:592.133333pt;}
.xf7_c00489{left:593.066667pt;}
.x11e_c00489{left:594.533333pt;}
.xfe_c00489{left:596.133333pt;}
.xaa_c00489{left:597.066667pt;}
.xcd_c00489{left:599.333333pt;}
.x105_c00489{left:601.066667pt;}
.xe7_c00489{left:602.400000pt;}
.xab_c00489{left:604.400000pt;}
.xc7_c00489{left:605.466667pt;}
.xee_c00489{left:606.933333pt;}
.x116_c00489{left:608.666667pt;}
.x12a_c00489{left:612.933333pt;}
.xbe_c00489{left:613.866667pt;}
.x113_c00489{left:616.000000pt;}
.x126_c00489{left:617.333333pt;}
.xac_c00489{left:619.066667pt;}
.xd5_c00489{left:620.266667pt;}
.xf4_c00489{left:621.600000pt;}
.xf8_c00489{left:622.800000pt;}
.xc1_c00489{left:625.600000pt;}
.x131_c00489{left:628.266667pt;}
.x142_c00489{left:629.733333pt;}
.xe3_c00489{left:631.200000pt;}
.x106_c00489{left:634.933333pt;}
.xff_c00489{left:637.466667pt;}
.xad_c00489{left:639.866667pt;}
.x13a_c00489{left:641.066667pt;}
.xe8_c00489{left:642.133333pt;}
.xf9_c00489{left:643.600000pt;}
.x144_c00489{left:644.666667pt;}
.xdb_c00489{left:647.866667pt;}
.x10c_c00489{left:648.800000pt;}
.xe9_c00489{left:651.466667pt;}
.x134_c00489{left:653.466667pt;}
.xd6_c00489{left:656.133333pt;}
.xdc_c00489{left:657.466667pt;}
.xae_c00489{left:658.400000pt;}
.xbf_c00489{left:661.200000pt;}
.x117_c00489{left:663.333333pt;}
.xd7_c00489{left:664.800000pt;}
.x12b_c00489{left:665.733333pt;}
.x100_c00489{left:667.600000pt;}
.xef_c00489{left:671.866667pt;}
.x137_c00489{left:674.400000pt;}
.xce_c00489{left:676.800000pt;}
.x138_c00489{left:677.733333pt;}
.x11f_c00489{left:678.933333pt;}
.x145_c00489{left:679.866667pt;}
.x110_c00489{left:681.466667pt;}
.x118_c00489{left:682.800000pt;}
.xcf_c00489{left:683.866667pt;}
.x109_c00489{left:688.400000pt;}
.xfb_c00489{left:689.333333pt;}
.x127_c00489{left:690.266667pt;}
.xd0_c00489{left:692.533333pt;}
.x10d_c00489{left:693.600000pt;}
.xe4_c00489{left:696.266667pt;}
.xdd_c00489{left:697.466667pt;}
.x128_c00489{left:698.533333pt;}
.xd1_c00489{left:699.600000pt;}
.x119_c00489{left:700.666667pt;}
.xea_c00489{left:702.000000pt;}
.x13b_c00489{left:704.000000pt;}
.xaf_c00489{left:706.400000pt;}
.xba_c00489{left:707.600000pt;}
.xfc_c00489{left:710.800000pt;}
.x135_c00489{left:714.533333pt;}
.xf0_c00489{left:717.600000pt;}
.x10a_c00489{left:723.600000pt;}
.xc2_c00489{left:726.133333pt;}
.x139_c00489{left:727.200000pt;}
.x107_c00489{left:728.400000pt;}
.x12e_c00489{left:729.600000pt;}
.xc8_c00489{left:730.933333pt;}
.x13c_c00489{left:732.400000pt;}
.xb0_c00489{left:734.933333pt;}
.xc3_c00489{left:737.333333pt;}
.xc9_c00489{left:739.600000pt;}
.xf5_c00489{left:740.666667pt;}
.x132_c00489{left:741.866667pt;}
.x3_c00489{left:744.000000pt;}
.x140_c00489{left:745.866667pt;}
.xd8_c00489{left:747.333333pt;}
.xde_c00489{left:748.666667pt;}
.x146_c00489{left:751.333333pt;}
.xeb_c00489{left:752.933333pt;}
.x133_c00489{left:754.000000pt;}
.x11a_c00489{left:756.666667pt;}
.xf1_c00489{left:758.533333pt;}
.x13d_c00489{left:760.933333pt;}
.x101_c00489{left:762.400000pt;}
.x12c_c00489{left:764.933333pt;}
.xdf_c00489{left:766.533333pt;}
.x11b_c00489{left:767.866667pt;}
.xbb_c00489{left:770.933333pt;}
.x120_c00489{left:773.066667pt;}
.x108_c00489{left:774.533333pt;}
.xe5_c00489{left:777.466667pt;}
}





/* 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_c00490 {
    display:none;
  }
  .loading-indicator_c00490.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00490 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_c00490 { 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_c00490" -> "#page-container .classname_c00490")
 */
.pf_c00490 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00490 { /* 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_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00490 { /* 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_c00490 { /* 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_c00490 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00490 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00490 {overflow:visible;}
  }
}
.c_c00490 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00490 { /* 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_c00490:after { /* webkit #35443 */
  content: '';
}
.t_c00490:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00490 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 */
}
.__c00490 { /* 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_c00490 { /* info for Javascript */
  display:none;
}
.l_c00490 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00490 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00490 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00490: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_c00490 {
    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_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00490.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_c00490 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00490{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00490;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.000000;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;}
.m116_c00490{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00490{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m5_c00490{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m36_c00490{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m37_c00490{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00490{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.ma_c00490{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00490{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00490{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m94_c00490{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m23_c00490{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mea_c00490{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00490{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m15_c00490{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m22_c00490{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m92_c00490{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00490{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md3_c00490{transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091000,0.000000,0.000000,0.250000,0,0);}
.me_c00490{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m21_c00490{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m58_c00490{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m107_c00490{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.mf_c00490{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m24_c00490{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00490{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m61_c00490{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m26_c00490{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00490{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m14_c00490{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00490{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m25_c00490{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m31_c00490{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m91_c00490{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m19_c00490{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m62_c00490{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m95_c00490{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00490{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00490{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00490{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00490{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m77_c00490{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m130_c00490{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00490{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m35_c00490{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00490{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.me2_c00490{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00490{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m109_c00490{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m108_c00490{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00490{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00490{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m143_c00490{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00490{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m101_c00490{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m93_c00490{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00490{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00490{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00490{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.me9_c00490{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m102_c00490{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m53_c00490{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00490{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00490{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00490{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m72_c00490{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00490{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m110_c00490{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m13d_c00490{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m133_c00490{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m113_c00490{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m104_c00490{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m103_c00490{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m13e_c00490{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m14d_c00490{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m33_c00490{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00490{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m14e_c00490{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m50_c00490{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00490{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00490{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m70_c00490{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00490{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00490{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00490{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00490{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m97_c00490{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00490{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m47_c00490{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00490{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00490{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md1_c00490{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00490{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00490{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m90_c00490{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mae_c00490{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m99_c00490{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00490{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m139_c00490{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00490{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mee_c00490{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00490{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m144_c00490{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me7_c00490{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m42_c00490{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m71_c00490{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.meb_c00490{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00490{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00490{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m8_c00490{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00490{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m105_c00490{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m111_c00490{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m43_c00490{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00490{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00490{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00490{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00490{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00490{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m122_c00490{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00490{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m32_c00490{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m49_c00490{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m115_c00490{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m75_c00490{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00490{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00490{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00490{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00490{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m100_c00490{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00490{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00490{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00490{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00490{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00490{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00490{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m60_c00490{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00490{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00490{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00490{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00490{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m63_c00490{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00490{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00490{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00490{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m80_c00490{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00490{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00490{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00490{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m14f_c00490{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m54_c00490{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.me0_c00490{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m112_c00490{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me8_c00490{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m55_c00490{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00490{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00490{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.md4_c00490{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00490{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00490{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m78_c00490{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2_c00490{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m20_c00490{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m131_c00490{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m69_c00490{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00490{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mff_c00490{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00490{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00490{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m39_c00490{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m14c_c00490{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m123_c00490{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md0_c00490{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m51_c00490{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m128_c00490{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mba_c00490{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00490{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mca_c00490{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00490{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m114_c00490{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m38_c00490{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m82_c00490{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m45_c00490{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00490{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md5_c00490{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m87_c00490{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00490{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00490{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m84_c00490{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00490{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m121_c00490{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mac_c00490{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m64_c00490{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00490{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m44_c00490{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00490{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00490{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m106_c00490{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00490{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00490{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m57_c00490{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.md8_c00490{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00490{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md2_c00490{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m88_c00490{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00490{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m28_c00490{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.maa_c00490{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m96_c00490{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m52_c00490{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00490{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00490{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00490{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00490{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00490{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m74_c00490{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m79_c00490{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m83_c00490{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mde_c00490{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m129_c00490{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m73_c00490{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00490{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00490{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00490{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00490{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m56_c00490{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m12_c00490{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00490{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m29_c00490{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m65_c00490{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m30_c00490{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m134_c00490{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m41_c00490{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m89_c00490{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00490{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m76_c00490{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m125_c00490{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00490{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m67_c00490{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mad_c00490{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m66_c00490{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mec_c00490{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00490{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m59_c00490{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00490{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00490{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md7_c00490{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.med_c00490{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00490{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00490{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m85_c00490{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.maf_c00490{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m27_c00490{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m17_c00490{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m140_c00490{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m14b_c00490{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m81_c00490{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00490{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00490{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00490{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mef_c00490{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mce_c00490{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m138_c00490{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00490{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00490{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00490{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m40_c00490{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00490{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m120_c00490{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00490{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc_c00490{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);}
.m132_c00490{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.md9_c00490{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00490{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m141_c00490{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m18_c00490{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00490{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m10_c00490{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m124_c00490{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m142_c00490{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m14a_c00490{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mb_c00490{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00490{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.mab_c00490{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13f_c00490{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m46_c00490{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m98_c00490{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m119_c00490{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00490{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m136_c00490{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3_c00490{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md6_c00490{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00490{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00490{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m135_c00490{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00490{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m86_c00490{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m9_c00490{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m117_c00490{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m137_c00490{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00490{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00490{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00490{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6_c00490{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m13_c00490{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m68_c00490{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.md_c00490{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00490{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m127_c00490{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00490{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00490{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00490{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00490{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00490{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m34_c00490{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00490{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m118_c00490{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00490{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mda_c00490{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m145_c00490{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00490{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m11_c00490{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.me6_c00490{transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);}
.m4_c00490{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);}
.m149_c00490{transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464000,0.000000,0.000000,0.250000,0,0);}
.m48_c00490{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.m146_c00490{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.me1_c00490{transform:matrix(0.512000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512000,0.000000,0.000000,0.250000,0,0);}
.me3_c00490{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m126_c00490{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00490{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m147_c00490{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m148_c00490{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.me4_c00490{transform:matrix(0.666000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666000,0.000000,0.000000,0.250000,0,0);}
.me5_c00490{transform:matrix(4.464000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.464000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.464000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls2_c00490{letter-spacing:0.000000px;}
.ls0_c00490{letter-spacing:40.447307px;}
.ls1_c00490{letter-spacing:55.714286px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{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__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00490{word-spacing:-85.714286px;}
.ws1_c00490{word-spacing:-67.447307px;}
.wsf_c00490{word-spacing:-9.609665px;}
.ws12_c00490{word-spacing:-3.843521px;}
.wse_c00490{word-spacing:-2.984436px;}
.ws17_c00490{word-spacing:0.000000px;}
.ws15_c00490{word-spacing:1.117509px;}
.ws14_c00490{word-spacing:2.500000px;}
.ws2_c00490{word-spacing:10.637002px;}
.wsb_c00490{word-spacing:12.184560px;}
.ws13_c00490{word-spacing:13.037801px;}
.ws10_c00490{word-spacing:13.083095px;}
.ws7_c00490{word-spacing:15.000000px;}
.ws11_c00490{word-spacing:16.785714px;}
.wsc_c00490{word-spacing:23.211796px;}
.ws16_c00490{word-spacing:25.714286px;}
.ws9_c00490{word-spacing:26.428954px;}
.ws6_c00490{word-spacing:29.285714px;}
.wsa_c00490{word-spacing:31.254692px;}
.ws3_c00490{word-spacing:32.250000px;}
.ws8_c00490{word-spacing:36.000000px;}
.ws4_c00490{word-spacing:40.000000px;}
.ws0_c00490{word-spacing:51.931818px;}
.wsd_c00490{word-spacing:67.631579px;}
._2_c00490{margin-left:-55.714286px;}
._0_c00490{margin-left:-40.447307px;}
._3_c00490{width:58.117479px;}
._1_c00490{width:63.000000px;}
.fc0_c00490{color:transparent;}
.fs8_c00490{font-size:24.000000px;}
.fs5_c00490{font-size:30.000000px;}
.fs3_c00490{font-size:54.000000px;}
.fs2_c00490{font-size:60.000000px;}
.fs4_c00490{font-size:66.000000px;}
.fs6_c00490{font-size:72.000000px;}
.fs0_c00490{font-size:84.000000px;}
.fs1_c00490{font-size:90.000000px;}
.fs7_c00490{font-size:102.000000px;}
.y0_c00490{bottom:0.000000px;}
.y3c_c00490{bottom:18.300000px;}
.y3b_c00490{bottom:37.800000px;}
.y72_c00490{bottom:194.700000px;}
.y3a_c00490{bottom:198.000000px;}
.y39_c00490{bottom:212.400000px;}
.y71_c00490{bottom:213.450000px;}
.y38_c00490{bottom:226.500000px;}
.y6b_c00490{bottom:235.950000px;}
.y6f_c00490{bottom:237.300000px;}
.y37_c00490{bottom:240.900000px;}
.y6a_c00490{bottom:247.500000px;}
.y6e_c00490{bottom:251.700000px;}
.y6d_c00490{bottom:252.750000px;}
.y70_c00490{bottom:253.050000px;}
.y6c_c00490{bottom:267.150000px;}
.y36_c00490{bottom:281.700000px;}
.y69_c00490{bottom:282.000000px;}
.y68_c00490{bottom:296.400000px;}
.y35_c00490{bottom:299.400000px;}
.y67_c00490{bottom:310.800000px;}
.y66_c00490{bottom:325.200000px;}
.y34_c00490{bottom:332.550000px;}
.y33_c00490{bottom:335.400000px;}
.y65_c00490{bottom:339.900000px;}
.y32_c00490{bottom:353.100000px;}
.y64_c00490{bottom:354.300000px;}
.y31_c00490{bottom:370.800000px;}
.y63_c00490{bottom:374.100000px;}
.y30_c00490{bottom:388.800000px;}
.y62_c00490{bottom:391.800000px;}
.y2f_c00490{bottom:406.800000px;}
.y61_c00490{bottom:409.500000px;}
.y2e_c00490{bottom:425.850000px;}
.y60_c00490{bottom:427.500000px;}
.y2d_c00490{bottom:442.050000px;}
.y5f_c00490{bottom:447.600000px;}
.y2c_c00490{bottom:459.600000px;}
.y5e_c00490{bottom:463.050000px;}
.y2b_c00490{bottom:477.300000px;}
.y5d_c00490{bottom:481.350000px;}
.y2a_c00490{bottom:495.000000px;}
.y5c_c00490{bottom:498.600000px;}
.yf_c00490{bottom:500.100000px;}
.y29_c00490{bottom:512.250000px;}
.y5b_c00490{bottom:516.300000px;}
.y28_c00490{bottom:533.400000px;}
.y5a_c00490{bottom:536.400000px;}
.y27_c00490{bottom:547.500000px;}
.y59_c00490{bottom:554.700000px;}
.y26_c00490{bottom:565.200000px;}
.y58_c00490{bottom:573.900000px;}
.ye_c00490{bottom:576.300000px;}
.yd_c00490{bottom:590.700000px;}
.y57_c00490{bottom:591.600000px;}
.yc_c00490{bottom:607.350000px;}
.y56_c00490{bottom:609.900000px;}
.yb_c00490{bottom:621.000000px;}
.y55_c00490{bottom:630.000000px;}
.ya_c00490{bottom:633.600000px;}
.y54_c00490{bottom:645.450000px;}
.y9_c00490{bottom:648.150000px;}
.y8_c00490{bottom:662.250000px;}
.y53_c00490{bottom:663.150000px;}
.y7_c00490{bottom:678.750000px;}
.y52_c00490{bottom:681.150000px;}
.y6_c00490{bottom:691.050000px;}
.y51_c00490{bottom:698.100000px;}
.y50_c00490{bottom:703.800000px;}
.y5_c00490{bottom:705.150000px;}
.y4_c00490{bottom:719.250000px;}
.y3_c00490{bottom:734.400000px;}
.y4f_c00490{bottom:738.300000px;}
.y2_c00490{bottom:749.100000px;}
.y4e_c00490{bottom:756.300000px;}
.y25_c00490{bottom:762.150000px;}
.y4d_c00490{bottom:774.300000px;}
.y24_c00490{bottom:776.550000px;}
.y23_c00490{bottom:791.250000px;}
.y4c_c00490{bottom:792.000000px;}
.y22_c00490{bottom:804.900000px;}
.y4b_c00490{bottom:814.350000px;}
.y21_c00490{bottom:819.300000px;}
.y4a_c00490{bottom:832.350000px;}
.y20_c00490{bottom:833.700000px;}
.y1f_c00490{bottom:849.600000px;}
.y49_c00490{bottom:850.200000px;}
.y1e_c00490{bottom:868.350000px;}
.y48_c00490{bottom:868.500000px;}
.y47_c00490{bottom:886.200000px;}
.y1d_c00490{bottom:886.350000px;}
.y46_c00490{bottom:903.900000px;}
.y1c_c00490{bottom:904.200000px;}
.y1b_c00490{bottom:921.900000px;}
.y45_c00490{bottom:939.600000px;}
.y1a_c00490{bottom:939.900000px;}
.y44_c00490{bottom:957.600000px;}
.y19_c00490{bottom:957.900000px;}
.y18_c00490{bottom:975.600000px;}
.y43_c00490{bottom:976.350000px;}
.y17_c00490{bottom:993.300000px;}
.y16_c00490{bottom:1014.600000px;}
.y42_c00490{bottom:1015.200000px;}
.y41_c00490{bottom:1033.200000px;}
.y15_c00490{bottom:1033.350000px;}
.y14_c00490{bottom:1050.600000px;}
.y40_c00490{bottom:1051.200000px;}
.y13_c00490{bottom:1067.850000px;}
.y3f_c00490{bottom:1068.900000px;}
.y3e_c00490{bottom:1086.600000px;}
.y12_c00490{bottom:1086.900000px;}
.y11_c00490{bottom:1103.850000px;}
.y3d_c00490{bottom:1104.900000px;}
.y10_c00490{bottom:1122.150000px;}
.y1_c00490{bottom:1148.700000px;}
.ha_c00490{height:24.000000px;}
.h7_c00490{height:30.000000px;}
.h5_c00490{height:54.000000px;}
.h4_c00490{height:60.000000px;}
.h6_c00490{height:66.000000px;}
.h8_c00490{height:72.000000px;}
.h2_c00490{height:84.000000px;}
.h3_c00490{height:90.000000px;}
.h9_c00490{height:102.000000px;}
.h1_c00490{height:1271.250000px;}
.h0_c00490{height:1271.519990px;}
.w0_c00490{width:958.320007px;}
.w1_c00490{width:958.500000px;}
.x0_c00490{left:0.000000px;}
.xa8_c00490{left:52.200000px;}
.x43_c00490{left:64.800000px;}
.x2a_c00490{left:68.400000px;}
.xa3_c00490{left:70.950000px;}
.x78_c00490{left:73.800000px;}
.x5d_c00490{left:74.850000px;}
.x38_c00490{left:77.700000px;}
.x3_c00490{left:84.600000px;}
.x9f_c00490{left:86.400000px;}
.x2e_c00490{left:87.450000px;}
.x76_c00490{left:88.950000px;}
.x3c_c00490{left:90.300000px;}
.x47_c00490{left:91.800000px;}
.x51_c00490{left:93.600000px;}
.x39_c00490{left:99.600000px;}
.x7_c00490{left:103.350000px;}
.x19_c00490{left:104.400000px;}
.x4c_c00490{left:110.850000px;}
.x77_c00490{left:112.650000px;}
.x90_c00490{left:115.950000px;}
.x67_c00490{left:119.550000px;}
.x5e_c00490{left:121.650000px;}
.x9b_c00490{left:123.300000px;}
.x3e_c00490{left:125.100000px;}
.x44_c00490{left:126.300000px;}
.x8f_c00490{left:127.350000px;}
.x2f_c00490{left:129.150000px;}
.x98_c00490{left:130.800000px;}
.x8c_c00490{left:135.000000px;}
.xb_c00490{left:136.050000px;}
.x6f_c00490{left:137.700000px;}
.x7c_c00490{left:139.350000px;}
.x3f_c00490{left:143.850000px;}
.x7b_c00490{left:145.050000px;}
.x68_c00490{left:146.100000px;}
.x93_c00490{left:147.900000px;}
.x52_c00490{left:149.700000px;}
.x99_c00490{left:151.350000px;}
.x5b_c00490{left:152.400000px;}
.x86_c00490{left:154.050000px;}
.x7d_c00490{left:156.300000px;}
.x4d_c00490{left:157.350000px;}
.x1c_c00490{left:158.400000px;}
.x30_c00490{left:160.800000px;}
.x89_c00490{left:162.750000px;}
.x25_c00490{left:167.400000px;}
.x7f_c00490{left:168.450000px;}
.x3a_c00490{left:171.300000px;}
.x88_c00490{left:173.100000px;}
.x70_c00490{left:175.650000px;}
.x1d_c00490{left:178.200000px;}
.x45_c00490{left:180.600000px;}
.x2b_c00490{left:182.550000px;}
.x63_c00490{left:184.800000px;}
.x26_c00490{left:186.900000px;}
.x9d_c00490{left:189.000000px;}
.x81_c00490{left:192.300000px;}
.x4e_c00490{left:193.650000px;}
.x48_c00490{left:195.600000px;}
.x82_c00490{left:197.250000px;}
.x53_c00490{left:200.400000px;}
.x69_c00490{left:202.650000px;}
.x8d_c00490{left:203.700000px;}
.x40_c00490{left:205.050000px;}
.x79_c00490{left:209.550000px;}
.x4f_c00490{left:210.900000px;}
.x6c_c00490{left:214.050000px;}
.x83_c00490{left:215.550000px;}
.x7e_c00490{left:216.750000px;}
.xc_c00490{left:219.900000px;}
.x54_c00490{left:220.950000px;}
.x50_c00490{left:223.500000px;}
.x5f_c00490{left:224.700000px;}
.x1e_c00490{left:227.250000px;}
.xa0_c00490{left:229.200000px;}
.x71_c00490{left:231.150000px;}
.x31_c00490{left:232.800000px;}
.x1f_c00490{left:234.150000px;}
.x94_c00490{left:236.850000px;}
.x5c_c00490{left:238.500000px;}
.x32_c00490{left:240.300000px;}
.x20_c00490{left:241.650000px;}
.x64_c00490{left:244.200000px;}
.x33_c00490{left:247.800000px;}
.x21_c00490{left:249.150000px;}
.x41_c00490{left:251.100000px;}
.x49_c00490{left:252.450000px;}
.x34_c00490{left:254.250000px;}
.x12_c00490{left:255.900000px;}
.x95_c00490{left:256.950000px;}
.xa6_c00490{left:260.250000px;}
.x3b_c00490{left:261.300000px;}
.x13_c00490{left:263.100000px;}
.x84_c00490{left:264.900000px;}
.x2c_c00490{left:266.100000px;}
.x42_c00490{left:267.600000px;}
.x35_c00490{left:269.400000px;}
.x14_c00490{left:270.600000px;}
.x55_c00490{left:273.900000px;}
.xd_c00490{left:277.500000px;}
.x6a_c00490{left:279.300000px;}
.x85_c00490{left:280.800000px;}
.x36_c00490{left:283.500000px;}
.xe_c00490{left:285.000000px;}
.x4a_c00490{left:286.950000px;}
.x87_c00490{left:290.850000px;}
.x27_c00490{left:293.100000px;}
.x96_c00490{left:295.050000px;}
.x15_c00490{left:299.400000px;}
.x74_c00490{left:302.100000px;}
.x60_c00490{left:303.900000px;}
.x16_c00490{left:305.100000px;}
.xf_c00490{left:306.900000px;}
.x28_c00490{left:308.250000px;}
.x65_c00490{left:310.800000px;}
.x22_c00490{left:312.900000px;}
.x1_c00490{left:314.250000px;}
.x8e_c00490{left:316.050000px;}
.x91_c00490{left:317.400000px;}
.x61_c00490{left:319.050000px;}
.x17_c00490{left:320.700000px;}
.x29_c00490{left:322.350000px;}
.x9e_c00490{left:323.700000px;}
.x8a_c00490{left:325.350000px;}
.x97_c00490{left:328.200000px;}
.x75_c00490{left:330.150000px;}
.x5a_c00490{left:331.800000px;}
.x7a_c00490{left:333.150000px;}
.x9c_c00490{left:334.950000px;}
.x18_c00490{left:337.650000px;}
.x4_c00490{left:339.150000px;}
.x10_c00490{left:340.800000px;}
.x8_c00490{left:342.750000px;}
.x72_c00490{left:343.800000px;}
.x9a_c00490{left:345.450000px;}
.x4b_c00490{left:347.400000px;}
.x92_c00490{left:350.100000px;}
.xa4_c00490{left:353.700000px;}
.xa7_c00490{left:357.450000px;}
.xa2_c00490{left:358.950000px;}
.x1a_c00490{left:361.050000px;}
.x6d_c00490{left:362.400000px;}
.x37_c00490{left:363.750000px;}
.x9_c00490{left:366.900000px;}
.x3d_c00490{left:369.150000px;}
.x80_c00490{left:370.500000px;}
.x23_c00490{left:371.850000px;}
.x73_c00490{left:372.900000px;}
.x56_c00490{left:374.700000px;}
.x8b_c00490{left:376.500000px;}
.x46_c00490{left:380.100000px;}
.x57_c00490{left:383.700000px;}
.x6b_c00490{left:385.500000px;}
.x66_c00490{left:387.750000px;}
.x6e_c00490{left:390.450000px;}
.x5_c00490{left:392.400000px;}
.x11_c00490{left:393.450000px;}
.x59_c00490{left:395.250000px;}
.x24_c00490{left:397.050000px;}
.xa_c00490{left:398.550000px;}
.x1b_c00490{left:400.350000px;}
.x58_c00490{left:401.700000px;}
.xa5_c00490{left:404.850000px;}
.xa1_c00490{left:405.900000px;}
.x62_c00490{left:407.250000px;}
.x2d_c00490{left:417.600000px;}
.x6_c00490{left:418.650000px;}
.x12e_c00490{left:428.100000px;}
.x112_c00490{left:429.600000px;}
.xd4_c00490{left:432.000000px;}
.x116_c00490{left:433.650000px;}
.x113_c00490{left:440.700000px;}
.x14d_c00490{left:444.450000px;}
.xf7_c00490{left:445.650000px;}
.xef_c00490{left:446.850000px;}
.xaa_c00490{left:447.900000px;}
.xb4_c00490{left:449.850000px;}
.xe3_c00490{left:451.500000px;}
.xdc_c00490{left:452.550000px;}
.x114_c00490{left:459.450000px;}
.xc0_c00490{left:463.650000px;}
.xab_c00490{left:466.950000px;}
.x118_c00490{left:468.750000px;}
.x123_c00490{left:472.050000px;}
.x12f_c00490{left:473.850000px;}
.x145_c00490{left:475.650000px;}
.xb9_c00490{left:476.700000px;}
.xc8_c00490{left:478.500000px;}
.x13a_c00490{left:479.550000px;}
.x13e_c00490{left:481.200000px;}
.xac_c00490{left:484.950000px;}
.x136_c00490{left:487.050000px;}
.x13c_c00490{left:488.250000px;}
.x132_c00490{left:489.600000px;}
.xfc_c00490{left:490.650000px;}
.xba_c00490{left:493.650000px;}
.x117_c00490{left:494.850000px;}
.xdd_c00490{left:498.300000px;}
.x128_c00490{left:499.500000px;}
.x144_c00490{left:502.650000px;}
.xd0_c00490{left:503.700000px;}
.x110_c00490{left:505.350000px;}
.xe4_c00490{left:508.800000px;}
.x106_c00490{left:510.750000px;}
.x139_c00490{left:512.550000px;}
.xb5_c00490{left:513.900000px;}
.xd5_c00490{left:516.000000px;}
.x126_c00490{left:517.500000px;}
.xde_c00490{left:519.600000px;}
.x150_c00490{left:520.650000px;}
.xc1_c00490{left:522.750000px;}
.x14b_c00490{left:524.400000px;}
.x101_c00490{left:526.950000px;}
.xc9_c00490{left:528.150000px;}
.xf8_c00490{left:529.200000px;}
.xe5_c00490{left:530.400000px;}
.x124_c00490{left:531.450000px;}
.x119_c00490{left:534.300000px;}
.x10c_c00490{left:535.350000px;}
.xf0_c00490{left:537.600000px;}
.xa9_c00490{left:539.700000px;}
.x14e_c00490{left:542.400000px;}
.xad_c00490{left:544.350000px;}
.x130_c00490{left:546.150000px;}
.xc2_c00490{left:547.650000px;}
.x151_c00490{left:548.700000px;}
.xb6_c00490{left:550.200000px;}
.xbb_c00490{left:552.300000px;}
.xf1_c00490{left:554.100000px;}
.x12c_c00490{left:556.200000px;}
.x10d_c00490{left:557.250000px;}
.x11a_c00490{left:558.750000px;}
.xd1_c00490{left:559.800000px;}
.x133_c00490{left:561.600000px;}
.x109_c00490{left:563.100000px;}
.x13b_c00490{left:564.450000px;}
.x107_c00490{left:565.500000px;}
.xcb_c00490{left:567.450000px;}
.x14c_c00490{left:568.650000px;}
.xdf_c00490{left:570.000000px;}
.xae_c00490{left:572.100000px;}
.x147_c00490{left:573.750000px;}
.x125_c00490{left:576.750000px;}
.x12d_c00490{left:577.800000px;}
.xf9_c00490{left:578.850000px;}
.xe6_c00490{left:581.550000px;}
.x13f_c00490{left:583.500000px;}
.x11b_c00490{left:589.350000px;}
.xc3_c00490{left:591.150000px;}
.xfe_c00490{left:593.700000px;}
.x111_c00490{left:595.350000px;}
.xf2_c00490{left:599.850000px;}
.xbc_c00490{left:600.900000px;}
.x102_c00490{left:602.550000px;}
.x127_c00490{left:604.200000px;}
.xaf_c00490{left:605.550000px;}
.xd9_c00490{left:609.150000px;}
.xe7_c00490{left:612.150000px;}
.xcc_c00490{left:613.200000px;}
.x10a_c00490{left:614.550000px;}
.x137_c00490{left:615.900000px;}
.x148_c00490{left:618.750000px;}
.xca_c00490{left:619.950000px;}
.x129_c00490{left:621.600000px;}
.xd6_c00490{left:622.650000px;}
.xf3_c00490{left:624.300000px;}
.x140_c00490{left:625.950000px;}
.xda_c00490{left:627.150000px;}
.x11c_c00490{left:628.950000px;}
.x134_c00490{left:630.300000px;}
.x141_c00490{left:631.800000px;}
.xcd_c00490{left:633.000000px;}
.xfd_c00490{left:635.850000px;}
.x11d_c00490{left:637.950000px;}
.x14f_c00490{left:639.000000px;}
.x103_c00490{left:640.650000px;}
.xfa_c00490{left:643.350000px;}
.xd2_c00490{left:644.400000px;}
.xb7_c00490{left:645.600000px;}
.xed_c00490{left:646.800000px;}
.xb0_c00490{left:648.000000px;}
.xf4_c00490{left:649.500000px;}
.xbd_c00490{left:650.550000px;}
.xff_c00490{left:654.600000px;}
.xc4_c00490{left:656.700000px;}
.xb1_c00490{left:660.900000px;}
.xe0_c00490{left:664.350000px;}
.x104_c00490{left:665.550000px;}
.xce_c00490{left:667.950000px;}
.xe8_c00490{left:669.450000px;}
.xbe_c00490{left:673.200000px;}
.x121_c00490{left:674.400000px;}
.x108_c00490{left:675.750000px;}
.xc5_c00490{left:678.000000px;}
.x10b_c00490{left:680.850000px;}
.xdb_c00490{left:683.250000px;}
.xe9_c00490{left:685.950000px;}
.xb8_c00490{left:687.000000px;}
.x10e_c00490{left:690.150000px;}
.x105_c00490{left:692.550000px;}
.x135_c00490{left:694.350000px;}
.x146_c00490{left:695.550000px;}
.x14a_c00490{left:697.200000px;}
.x12a_c00490{left:700.050000px;}
.xf5_c00490{left:702.750000px;}
.x138_c00490{left:705.300000px;}
.xd7_c00490{left:708.300000px;}
.x11f_c00490{left:710.100000px;}
.xfb_c00490{left:711.750000px;}
.xb2_c00490{left:713.400000px;}
.xea_c00490{left:714.750000px;}
.x142_c00490{left:716.100000px;}
.xbf_c00490{left:717.900000px;}
.xc6_c00490{left:719.400000px;}
.x11e_c00490{left:721.350000px;}
.x12b_c00490{left:722.400000px;}
.x115_c00490{left:723.750000px;}
.x149_c00490{left:724.950000px;}
.x122_c00490{left:726.300000px;}
.xc7_c00490{left:730.200000px;}
.xeb_c00490{left:732.450000px;}
.xd8_c00490{left:734.250000px;}
.x100_c00490{left:736.950000px;}
.x120_c00490{left:738.150000px;}
.xcf_c00490{left:739.200000px;}
.x2_c00490{left:740.550000px;}
.xe1_c00490{left:743.100000px;}
.xee_c00490{left:744.600000px;}
.xd3_c00490{left:749.100000px;}
.xec_c00490{left:750.150000px;}
.x143_c00490{left:751.800000px;}
.xf6_c00490{left:753.150000px;}
.x13d_c00490{left:756.150000px;}
.x10f_c00490{left:757.350000px;}
.xe2_c00490{left:758.550000px;}
.x131_c00490{left:763.200000px;}
.xb3_c00490{left:764.850000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls2_c00490{letter-spacing:0.000000pt;}
.ls0_c00490{letter-spacing:35.953162pt;}
.ls1_c00490{letter-spacing:49.523810pt;}
.ws5_c00490{word-spacing:-76.190476pt;}
.ws1_c00490{word-spacing:-59.953162pt;}
.wsf_c00490{word-spacing:-8.541925pt;}
.ws12_c00490{word-spacing:-3.416463pt;}
.wse_c00490{word-spacing:-2.652832pt;}
.ws17_c00490{word-spacing:0.000000pt;}
.ws15_c00490{word-spacing:0.993341pt;}
.ws14_c00490{word-spacing:2.222222pt;}
.ws2_c00490{word-spacing:9.455113pt;}
.wsb_c00490{word-spacing:10.830720pt;}
.ws13_c00490{word-spacing:11.589156pt;}
.ws10_c00490{word-spacing:11.629417pt;}
.ws7_c00490{word-spacing:13.333333pt;}
.ws11_c00490{word-spacing:14.920635pt;}
.wsc_c00490{word-spacing:20.632708pt;}
.ws16_c00490{word-spacing:22.857143pt;}
.ws9_c00490{word-spacing:23.492404pt;}
.ws6_c00490{word-spacing:26.031746pt;}
.wsa_c00490{word-spacing:27.781948pt;}
.ws3_c00490{word-spacing:28.666667pt;}
.ws8_c00490{word-spacing:32.000000pt;}
.ws4_c00490{word-spacing:35.555556pt;}
.ws0_c00490{word-spacing:46.161616pt;}
.wsd_c00490{word-spacing:60.116959pt;}
._2_c00490{margin-left:-49.523810pt;}
._0_c00490{margin-left:-35.953162pt;}
._3_c00490{width:51.659981pt;}
._1_c00490{width:56.000000pt;}
.fs8_c00490{font-size:21.333333pt;}
.fs5_c00490{font-size:26.666667pt;}
.fs3_c00490{font-size:48.000000pt;}
.fs2_c00490{font-size:53.333333pt;}
.fs4_c00490{font-size:58.666667pt;}
.fs6_c00490{font-size:64.000000pt;}
.fs0_c00490{font-size:74.666667pt;}
.fs1_c00490{font-size:80.000000pt;}
.fs7_c00490{font-size:90.666667pt;}
.y0_c00490{bottom:0.000000pt;}
.y3c_c00490{bottom:16.266667pt;}
.y3b_c00490{bottom:33.600000pt;}
.y72_c00490{bottom:173.066667pt;}
.y3a_c00490{bottom:176.000000pt;}
.y39_c00490{bottom:188.800000pt;}
.y71_c00490{bottom:189.733333pt;}
.y38_c00490{bottom:201.333333pt;}
.y6b_c00490{bottom:209.733333pt;}
.y6f_c00490{bottom:210.933333pt;}
.y37_c00490{bottom:214.133333pt;}
.y6a_c00490{bottom:220.000000pt;}
.y6e_c00490{bottom:223.733333pt;}
.y6d_c00490{bottom:224.666667pt;}
.y70_c00490{bottom:224.933333pt;}
.y6c_c00490{bottom:237.466667pt;}
.y36_c00490{bottom:250.400000pt;}
.y69_c00490{bottom:250.666667pt;}
.y68_c00490{bottom:263.466667pt;}
.y35_c00490{bottom:266.133333pt;}
.y67_c00490{bottom:276.266667pt;}
.y66_c00490{bottom:289.066667pt;}
.y34_c00490{bottom:295.600000pt;}
.y33_c00490{bottom:298.133333pt;}
.y65_c00490{bottom:302.133333pt;}
.y32_c00490{bottom:313.866667pt;}
.y64_c00490{bottom:314.933333pt;}
.y31_c00490{bottom:329.600000pt;}
.y63_c00490{bottom:332.533333pt;}
.y30_c00490{bottom:345.600000pt;}
.y62_c00490{bottom:348.266667pt;}
.y2f_c00490{bottom:361.600000pt;}
.y61_c00490{bottom:364.000000pt;}
.y2e_c00490{bottom:378.533333pt;}
.y60_c00490{bottom:380.000000pt;}
.y2d_c00490{bottom:392.933333pt;}
.y5f_c00490{bottom:397.866667pt;}
.y2c_c00490{bottom:408.533333pt;}
.y5e_c00490{bottom:411.600000pt;}
.y2b_c00490{bottom:424.266667pt;}
.y5d_c00490{bottom:427.866667pt;}
.y2a_c00490{bottom:440.000000pt;}
.y5c_c00490{bottom:443.200000pt;}
.yf_c00490{bottom:444.533333pt;}
.y29_c00490{bottom:455.333333pt;}
.y5b_c00490{bottom:458.933333pt;}
.y28_c00490{bottom:474.133333pt;}
.y5a_c00490{bottom:476.800000pt;}
.y27_c00490{bottom:486.666667pt;}
.y59_c00490{bottom:493.066667pt;}
.y26_c00490{bottom:502.400000pt;}
.y58_c00490{bottom:510.133333pt;}
.ye_c00490{bottom:512.266667pt;}
.yd_c00490{bottom:525.066667pt;}
.y57_c00490{bottom:525.866667pt;}
.yc_c00490{bottom:539.866667pt;}
.y56_c00490{bottom:542.133333pt;}
.yb_c00490{bottom:552.000000pt;}
.y55_c00490{bottom:560.000000pt;}
.ya_c00490{bottom:563.200000pt;}
.y54_c00490{bottom:573.733333pt;}
.y9_c00490{bottom:576.133333pt;}
.y8_c00490{bottom:588.666667pt;}
.y53_c00490{bottom:589.466667pt;}
.y7_c00490{bottom:603.333333pt;}
.y52_c00490{bottom:605.466667pt;}
.y6_c00490{bottom:614.266667pt;}
.y51_c00490{bottom:620.533333pt;}
.y50_c00490{bottom:625.600000pt;}
.y5_c00490{bottom:626.800000pt;}
.y4_c00490{bottom:639.333333pt;}
.y3_c00490{bottom:652.800000pt;}
.y4f_c00490{bottom:656.266667pt;}
.y2_c00490{bottom:665.866667pt;}
.y4e_c00490{bottom:672.266667pt;}
.y25_c00490{bottom:677.466667pt;}
.y4d_c00490{bottom:688.266667pt;}
.y24_c00490{bottom:690.266667pt;}
.y23_c00490{bottom:703.333333pt;}
.y4c_c00490{bottom:704.000000pt;}
.y22_c00490{bottom:715.466667pt;}
.y4b_c00490{bottom:723.866667pt;}
.y21_c00490{bottom:728.266667pt;}
.y4a_c00490{bottom:739.866667pt;}
.y20_c00490{bottom:741.066667pt;}
.y1f_c00490{bottom:755.200000pt;}
.y49_c00490{bottom:755.733333pt;}
.y1e_c00490{bottom:771.866667pt;}
.y48_c00490{bottom:772.000000pt;}
.y47_c00490{bottom:787.733333pt;}
.y1d_c00490{bottom:787.866667pt;}
.y46_c00490{bottom:803.466667pt;}
.y1c_c00490{bottom:803.733333pt;}
.y1b_c00490{bottom:819.466667pt;}
.y45_c00490{bottom:835.200000pt;}
.y1a_c00490{bottom:835.466667pt;}
.y44_c00490{bottom:851.200000pt;}
.y19_c00490{bottom:851.466667pt;}
.y18_c00490{bottom:867.200000pt;}
.y43_c00490{bottom:867.866667pt;}
.y17_c00490{bottom:882.933333pt;}
.y16_c00490{bottom:901.866667pt;}
.y42_c00490{bottom:902.400000pt;}
.y41_c00490{bottom:918.400000pt;}
.y15_c00490{bottom:918.533333pt;}
.y14_c00490{bottom:933.866667pt;}
.y40_c00490{bottom:934.400000pt;}
.y13_c00490{bottom:949.200000pt;}
.y3f_c00490{bottom:950.133333pt;}
.y3e_c00490{bottom:965.866667pt;}
.y12_c00490{bottom:966.133333pt;}
.y11_c00490{bottom:981.200000pt;}
.y3d_c00490{bottom:982.133333pt;}
.y10_c00490{bottom:997.466667pt;}
.y1_c00490{bottom:1021.066667pt;}
.ha_c00490{height:21.333333pt;}
.h7_c00490{height:26.666667pt;}
.h5_c00490{height:48.000000pt;}
.h4_c00490{height:53.333333pt;}
.h6_c00490{height:58.666667pt;}
.h8_c00490{height:64.000000pt;}
.h2_c00490{height:74.666667pt;}
.h3_c00490{height:80.000000pt;}
.h9_c00490{height:90.666667pt;}
.h1_c00490{height:1130.000000pt;}
.h0_c00490{height:1130.239991pt;}
.w0_c00490{width:851.840007pt;}
.w1_c00490{width:852.000000pt;}
.x0_c00490{left:0.000000pt;}
.xa8_c00490{left:46.400000pt;}
.x43_c00490{left:57.600000pt;}
.x2a_c00490{left:60.800000pt;}
.xa3_c00490{left:63.066667pt;}
.x78_c00490{left:65.600000pt;}
.x5d_c00490{left:66.533333pt;}
.x38_c00490{left:69.066667pt;}
.x3_c00490{left:75.200000pt;}
.x9f_c00490{left:76.800000pt;}
.x2e_c00490{left:77.733333pt;}
.x76_c00490{left:79.066667pt;}
.x3c_c00490{left:80.266667pt;}
.x47_c00490{left:81.600000pt;}
.x51_c00490{left:83.200000pt;}
.x39_c00490{left:88.533333pt;}
.x7_c00490{left:91.866667pt;}
.x19_c00490{left:92.800000pt;}
.x4c_c00490{left:98.533333pt;}
.x77_c00490{left:100.133333pt;}
.x90_c00490{left:103.066667pt;}
.x67_c00490{left:106.266667pt;}
.x5e_c00490{left:108.133333pt;}
.x9b_c00490{left:109.600000pt;}
.x3e_c00490{left:111.200000pt;}
.x44_c00490{left:112.266667pt;}
.x8f_c00490{left:113.200000pt;}
.x2f_c00490{left:114.800000pt;}
.x98_c00490{left:116.266667pt;}
.x8c_c00490{left:120.000000pt;}
.xb_c00490{left:120.933333pt;}
.x6f_c00490{left:122.400000pt;}
.x7c_c00490{left:123.866667pt;}
.x3f_c00490{left:127.866667pt;}
.x7b_c00490{left:128.933333pt;}
.x68_c00490{left:129.866667pt;}
.x93_c00490{left:131.466667pt;}
.x52_c00490{left:133.066667pt;}
.x99_c00490{left:134.533333pt;}
.x5b_c00490{left:135.466667pt;}
.x86_c00490{left:136.933333pt;}
.x7d_c00490{left:138.933333pt;}
.x4d_c00490{left:139.866667pt;}
.x1c_c00490{left:140.800000pt;}
.x30_c00490{left:142.933333pt;}
.x89_c00490{left:144.666667pt;}
.x25_c00490{left:148.800000pt;}
.x7f_c00490{left:149.733333pt;}
.x3a_c00490{left:152.266667pt;}
.x88_c00490{left:153.866667pt;}
.x70_c00490{left:156.133333pt;}
.x1d_c00490{left:158.400000pt;}
.x45_c00490{left:160.533333pt;}
.x2b_c00490{left:162.266667pt;}
.x63_c00490{left:164.266667pt;}
.x26_c00490{left:166.133333pt;}
.x9d_c00490{left:168.000000pt;}
.x81_c00490{left:170.933333pt;}
.x4e_c00490{left:172.133333pt;}
.x48_c00490{left:173.866667pt;}
.x82_c00490{left:175.333333pt;}
.x53_c00490{left:178.133333pt;}
.x69_c00490{left:180.133333pt;}
.x8d_c00490{left:181.066667pt;}
.x40_c00490{left:182.266667pt;}
.x79_c00490{left:186.266667pt;}
.x4f_c00490{left:187.466667pt;}
.x6c_c00490{left:190.266667pt;}
.x83_c00490{left:191.600000pt;}
.x7e_c00490{left:192.666667pt;}
.xc_c00490{left:195.466667pt;}
.x54_c00490{left:196.400000pt;}
.x50_c00490{left:198.666667pt;}
.x5f_c00490{left:199.733333pt;}
.x1e_c00490{left:202.000000pt;}
.xa0_c00490{left:203.733333pt;}
.x71_c00490{left:205.466667pt;}
.x31_c00490{left:206.933333pt;}
.x1f_c00490{left:208.133333pt;}
.x94_c00490{left:210.533333pt;}
.x5c_c00490{left:212.000000pt;}
.x32_c00490{left:213.600000pt;}
.x20_c00490{left:214.800000pt;}
.x64_c00490{left:217.066667pt;}
.x33_c00490{left:220.266667pt;}
.x21_c00490{left:221.466667pt;}
.x41_c00490{left:223.200000pt;}
.x49_c00490{left:224.400000pt;}
.x34_c00490{left:226.000000pt;}
.x12_c00490{left:227.466667pt;}
.x95_c00490{left:228.400000pt;}
.xa6_c00490{left:231.333333pt;}
.x3b_c00490{left:232.266667pt;}
.x13_c00490{left:233.866667pt;}
.x84_c00490{left:235.466667pt;}
.x2c_c00490{left:236.533333pt;}
.x42_c00490{left:237.866667pt;}
.x35_c00490{left:239.466667pt;}
.x14_c00490{left:240.533333pt;}
.x55_c00490{left:243.466667pt;}
.xd_c00490{left:246.666667pt;}
.x6a_c00490{left:248.266667pt;}
.x85_c00490{left:249.600000pt;}
.x36_c00490{left:252.000000pt;}
.xe_c00490{left:253.333333pt;}
.x4a_c00490{left:255.066667pt;}
.x87_c00490{left:258.533333pt;}
.x27_c00490{left:260.533333pt;}
.x96_c00490{left:262.266667pt;}
.x15_c00490{left:266.133333pt;}
.x74_c00490{left:268.533333pt;}
.x60_c00490{left:270.133333pt;}
.x16_c00490{left:271.200000pt;}
.xf_c00490{left:272.800000pt;}
.x28_c00490{left:274.000000pt;}
.x65_c00490{left:276.266667pt;}
.x22_c00490{left:278.133333pt;}
.x1_c00490{left:279.333333pt;}
.x8e_c00490{left:280.933333pt;}
.x91_c00490{left:282.133333pt;}
.x61_c00490{left:283.600000pt;}
.x17_c00490{left:285.066667pt;}
.x29_c00490{left:286.533333pt;}
.x9e_c00490{left:287.733333pt;}
.x8a_c00490{left:289.200000pt;}
.x97_c00490{left:291.733333pt;}
.x75_c00490{left:293.466667pt;}
.x5a_c00490{left:294.933333pt;}
.x7a_c00490{left:296.133333pt;}
.x9c_c00490{left:297.733333pt;}
.x18_c00490{left:300.133333pt;}
.x4_c00490{left:301.466667pt;}
.x10_c00490{left:302.933333pt;}
.x8_c00490{left:304.666667pt;}
.x72_c00490{left:305.600000pt;}
.x9a_c00490{left:307.066667pt;}
.x4b_c00490{left:308.800000pt;}
.x92_c00490{left:311.200000pt;}
.xa4_c00490{left:314.400000pt;}
.xa7_c00490{left:317.733333pt;}
.xa2_c00490{left:319.066667pt;}
.x1a_c00490{left:320.933333pt;}
.x6d_c00490{left:322.133333pt;}
.x37_c00490{left:323.333333pt;}
.x9_c00490{left:326.133333pt;}
.x3d_c00490{left:328.133333pt;}
.x80_c00490{left:329.333333pt;}
.x23_c00490{left:330.533333pt;}
.x73_c00490{left:331.466667pt;}
.x56_c00490{left:333.066667pt;}
.x8b_c00490{left:334.666667pt;}
.x46_c00490{left:337.866667pt;}
.x57_c00490{left:341.066667pt;}
.x6b_c00490{left:342.666667pt;}
.x66_c00490{left:344.666667pt;}
.x6e_c00490{left:347.066667pt;}
.x5_c00490{left:348.800000pt;}
.x11_c00490{left:349.733333pt;}
.x59_c00490{left:351.333333pt;}
.x24_c00490{left:352.933333pt;}
.xa_c00490{left:354.266667pt;}
.x1b_c00490{left:355.866667pt;}
.x58_c00490{left:357.066667pt;}
.xa5_c00490{left:359.866667pt;}
.xa1_c00490{left:360.800000pt;}
.x62_c00490{left:362.000000pt;}
.x2d_c00490{left:371.200000pt;}
.x6_c00490{left:372.133333pt;}
.x12e_c00490{left:380.533333pt;}
.x112_c00490{left:381.866667pt;}
.xd4_c00490{left:384.000000pt;}
.x116_c00490{left:385.466667pt;}
.x113_c00490{left:391.733333pt;}
.x14d_c00490{left:395.066667pt;}
.xf7_c00490{left:396.133333pt;}
.xef_c00490{left:397.200000pt;}
.xaa_c00490{left:398.133333pt;}
.xb4_c00490{left:399.866667pt;}
.xe3_c00490{left:401.333333pt;}
.xdc_c00490{left:402.266667pt;}
.x114_c00490{left:408.400000pt;}
.xc0_c00490{left:412.133333pt;}
.xab_c00490{left:415.066667pt;}
.x118_c00490{left:416.666667pt;}
.x123_c00490{left:419.600000pt;}
.x12f_c00490{left:421.200000pt;}
.x145_c00490{left:422.800000pt;}
.xb9_c00490{left:423.733333pt;}
.xc8_c00490{left:425.333333pt;}
.x13a_c00490{left:426.266667pt;}
.x13e_c00490{left:427.733333pt;}
.xac_c00490{left:431.066667pt;}
.x136_c00490{left:432.933333pt;}
.x13c_c00490{left:434.000000pt;}
.x132_c00490{left:435.200000pt;}
.xfc_c00490{left:436.133333pt;}
.xba_c00490{left:438.800000pt;}
.x117_c00490{left:439.866667pt;}
.xdd_c00490{left:442.933333pt;}
.x128_c00490{left:444.000000pt;}
.x144_c00490{left:446.800000pt;}
.xd0_c00490{left:447.733333pt;}
.x110_c00490{left:449.200000pt;}
.xe4_c00490{left:452.266667pt;}
.x106_c00490{left:454.000000pt;}
.x139_c00490{left:455.600000pt;}
.xb5_c00490{left:456.800000pt;}
.xd5_c00490{left:458.666667pt;}
.x126_c00490{left:460.000000pt;}
.xde_c00490{left:461.866667pt;}
.x150_c00490{left:462.800000pt;}
.xc1_c00490{left:464.666667pt;}
.x14b_c00490{left:466.133333pt;}
.x101_c00490{left:468.400000pt;}
.xc9_c00490{left:469.466667pt;}
.xf8_c00490{left:470.400000pt;}
.xe5_c00490{left:471.466667pt;}
.x124_c00490{left:472.400000pt;}
.x119_c00490{left:474.933333pt;}
.x10c_c00490{left:475.866667pt;}
.xf0_c00490{left:477.866667pt;}
.xa9_c00490{left:479.733333pt;}
.x14e_c00490{left:482.133333pt;}
.xad_c00490{left:483.866667pt;}
.x130_c00490{left:485.466667pt;}
.xc2_c00490{left:486.800000pt;}
.x151_c00490{left:487.733333pt;}
.xb6_c00490{left:489.066667pt;}
.xbb_c00490{left:490.933333pt;}
.xf1_c00490{left:492.533333pt;}
.x12c_c00490{left:494.400000pt;}
.x10d_c00490{left:495.333333pt;}
.x11a_c00490{left:496.666667pt;}
.xd1_c00490{left:497.600000pt;}
.x133_c00490{left:499.200000pt;}
.x109_c00490{left:500.533333pt;}
.x13b_c00490{left:501.733333pt;}
.x107_c00490{left:502.666667pt;}
.xcb_c00490{left:504.400000pt;}
.x14c_c00490{left:505.466667pt;}
.xdf_c00490{left:506.666667pt;}
.xae_c00490{left:508.533333pt;}
.x147_c00490{left:510.000000pt;}
.x125_c00490{left:512.666667pt;}
.x12d_c00490{left:513.600000pt;}
.xf9_c00490{left:514.533333pt;}
.xe6_c00490{left:516.933333pt;}
.x13f_c00490{left:518.666667pt;}
.x11b_c00490{left:523.866667pt;}
.xc3_c00490{left:525.466667pt;}
.xfe_c00490{left:527.733333pt;}
.x111_c00490{left:529.200000pt;}
.xf2_c00490{left:533.200000pt;}
.xbc_c00490{left:534.133333pt;}
.x102_c00490{left:535.600000pt;}
.x127_c00490{left:537.066667pt;}
.xaf_c00490{left:538.266667pt;}
.xd9_c00490{left:541.466667pt;}
.xe7_c00490{left:544.133333pt;}
.xcc_c00490{left:545.066667pt;}
.x10a_c00490{left:546.266667pt;}
.x137_c00490{left:547.466667pt;}
.x148_c00490{left:550.000000pt;}
.xca_c00490{left:551.066667pt;}
.x129_c00490{left:552.533333pt;}
.xd6_c00490{left:553.466667pt;}
.xf3_c00490{left:554.933333pt;}
.x140_c00490{left:556.400000pt;}
.xda_c00490{left:557.466667pt;}
.x11c_c00490{left:559.066667pt;}
.x134_c00490{left:560.266667pt;}
.x141_c00490{left:561.600000pt;}
.xcd_c00490{left:562.666667pt;}
.xfd_c00490{left:565.200000pt;}
.x11d_c00490{left:567.066667pt;}
.x14f_c00490{left:568.000000pt;}
.x103_c00490{left:569.466667pt;}
.xfa_c00490{left:571.866667pt;}
.xd2_c00490{left:572.800000pt;}
.xb7_c00490{left:573.866667pt;}
.xed_c00490{left:574.933333pt;}
.xb0_c00490{left:576.000000pt;}
.xf4_c00490{left:577.333333pt;}
.xbd_c00490{left:578.266667pt;}
.xff_c00490{left:581.866667pt;}
.xc4_c00490{left:583.733333pt;}
.xb1_c00490{left:587.466667pt;}
.xe0_c00490{left:590.533333pt;}
.x104_c00490{left:591.600000pt;}
.xce_c00490{left:593.733333pt;}
.xe8_c00490{left:595.066667pt;}
.xbe_c00490{left:598.400000pt;}
.x121_c00490{left:599.466667pt;}
.x108_c00490{left:600.666667pt;}
.xc5_c00490{left:602.666667pt;}
.x10b_c00490{left:605.200000pt;}
.xdb_c00490{left:607.333333pt;}
.xe9_c00490{left:609.733333pt;}
.xb8_c00490{left:610.666667pt;}
.x10e_c00490{left:613.466667pt;}
.x105_c00490{left:615.600000pt;}
.x135_c00490{left:617.200000pt;}
.x146_c00490{left:618.266667pt;}
.x14a_c00490{left:619.733333pt;}
.x12a_c00490{left:622.266667pt;}
.xf5_c00490{left:624.666667pt;}
.x138_c00490{left:626.933333pt;}
.xd7_c00490{left:629.600000pt;}
.x11f_c00490{left:631.200000pt;}
.xfb_c00490{left:632.666667pt;}
.xb2_c00490{left:634.133333pt;}
.xea_c00490{left:635.333333pt;}
.x142_c00490{left:636.533333pt;}
.xbf_c00490{left:638.133333pt;}
.xc6_c00490{left:639.466667pt;}
.x11e_c00490{left:641.200000pt;}
.x12b_c00490{left:642.133333pt;}
.x115_c00490{left:643.333333pt;}
.x149_c00490{left:644.400000pt;}
.x122_c00490{left:645.600000pt;}
.xc7_c00490{left:649.066667pt;}
.xeb_c00490{left:651.066667pt;}
.xd8_c00490{left:652.666667pt;}
.x100_c00490{left:655.066667pt;}
.x120_c00490{left:656.133333pt;}
.xcf_c00490{left:657.066667pt;}
.x2_c00490{left:658.266667pt;}
.xe1_c00490{left:660.533333pt;}
.xee_c00490{left:661.866667pt;}
.xd3_c00490{left:665.866667pt;}
.xec_c00490{left:666.800000pt;}
.x143_c00490{left:668.266667pt;}
.xf6_c00490{left:669.466667pt;}
.x13d_c00490{left:672.133333pt;}
.x10f_c00490{left:673.200000pt;}
.xe2_c00490{left:674.266667pt;}
.x131_c00490{left:678.400000pt;}
.xb3_c00490{left:679.866667pt;}
}





/* 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_c00491 {
    display:none;
  }
  .loading-indicator_c00491.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00491 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_c00491 { 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_c00491" -> "#page-container .classname_c00491")
 */
.pf_c00491 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00491 { /* 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_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00491 { /* 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_c00491 { /* 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_c00491 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00491 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00491 {overflow:visible;}
  }
}
.c_c00491 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00491 { /* 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_c00491:after { /* webkit #35443 */
  content: '';
}
.t_c00491:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00491 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 */
}
.__c00491 { /* 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_c00491 { /* info for Javascript */
  display:none;
}
.l_c00491 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00491 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00491 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00491: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_c00491 {
    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_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00491.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_c00491 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00491{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00491;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.000000;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;}
.m12b_c00491{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00491{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m53_c00491{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00491{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.me_c00491{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m106_c00491{transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00491{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m8_c00491{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb_c00491{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00491{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.mff_c00491{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m24_c00491{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m10_c00491{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00491{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.md4_c00491{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m105_c00491{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m94_c00491{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m4_c00491{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m107_c00491{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00491{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00491{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m108_c00491{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00491{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00491{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00491{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00491{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m68_c00491{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00491{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.md6_c00491{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00491{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00491{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00491{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m0_c00491{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00491{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00491{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.md7_c00491{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m110_c00491{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m70_c00491{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m40_c00491{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m99_c00491{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m55_c00491{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md0_c00491{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00491{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00491{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00491{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00491{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m129_c00491{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m67_c00491{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m65_c00491{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.me5_c00491{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m86_c00491{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m46_c00491{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mba_c00491{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m84_c00491{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m87_c00491{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me7_c00491{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m115_c00491{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m57_c00491{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m45_c00491{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m69_c00491{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m42_c00491{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m41_c00491{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mac_c00491{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.me6_c00491{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m50_c00491{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m31_c00491{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m123_c00491{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m113_c00491{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me2_c00491{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m80_c00491{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m59_c00491{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m104_c00491{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00491{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00491{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00491{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.md_c00491{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m72_c00491{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00491{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m66_c00491{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m25_c00491{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc_c00491{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m88_c00491{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m62_c00491{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00491{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00491{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m128_c00491{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m85_c00491{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m9_c00491{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m121_c00491{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md3_c00491{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00491{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00491{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m27_c00491{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m49_c00491{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00491{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00491{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00491{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00491{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m79_c00491{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m118_c00491{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00491{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m61_c00491{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.md9_c00491{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m7_c00491{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m96_c00491{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00491{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.meb_c00491{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00491{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m89_c00491{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m48_c00491{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00491{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00491{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m91_c00491{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m63_c00491{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00491{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m39_c00491{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00491{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md2_c00491{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m20_c00491{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00491{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m64_c00491{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00491{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m116_c00491{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00491{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00491{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m34_c00491{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00491{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m117_c00491{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00491{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00491{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00491{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m44_c00491{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00491{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m60_c00491{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00491{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m14_c00491{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m43_c00491{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m38_c00491{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00491{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00491{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00491{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00491{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.maa_c00491{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m81_c00491{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00491{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00491{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m47_c00491{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.md1_c00491{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00491{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00491{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m13_c00491{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mf_c00491{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mab_c00491{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00491{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00491{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m98_c00491{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00491{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m82_c00491{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mef_c00491{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m76_c00491{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00491{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m17_c00491{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00491{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00491{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m32_c00491{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mae_c00491{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m119_c00491{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m75_c00491{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00491{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00491{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m97_c00491{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00491{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m11_c00491{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00491{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00491{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m35_c00491{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma_c00491{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m77_c00491{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00491{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00491{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00491{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00491{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m23_c00491{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00491{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m36_c00491{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m126_c00491{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00491{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00491{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00491{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00491{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m95_c00491{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00491{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00491{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00491{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m73_c00491{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00491{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m29_c00491{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00491{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m26_c00491{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m51_c00491{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00491{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m52_c00491{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.md5_c00491{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00491{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m71_c00491{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00491{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m22_c00491{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m28_c00491{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00491{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00491{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00491{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m100_c00491{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00491{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m114_c00491{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m33_c00491{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m16_c00491{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00491{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m19_c00491{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mea_c00491{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00491{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00491{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m37_c00491{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mca_c00491{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00491{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m111_c00491{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mec_c00491{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00491{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00491{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m103_c00491{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00491{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00491{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m30_c00491{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mee_c00491{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m15_c00491{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m125_c00491{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m58_c00491{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m124_c00491{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00491{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m93_c00491{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00491{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00491{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m21_c00491{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00491{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mde_c00491{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00491{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00491{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00491{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00491{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00491{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);}
.mdf_c00491{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.med_c00491{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12_c00491{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00491{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mda_c00491{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mad_c00491{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mfb_c00491{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00491{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m54_c00491{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00491{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m18_c00491{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m90_c00491{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m83_c00491{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me1_c00491{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m92_c00491{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m122_c00491{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00491{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m101_c00491{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.maf_c00491{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6_c00491{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00491{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00491{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00491{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md8_c00491{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.me8_c00491{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mce_c00491{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m127_c00491{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.me4_c00491{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00491{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c00491{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00491{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00491{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.me9_c00491{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m120_c00491{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00491{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5_c00491{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m78_c00491{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00491{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00491{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.me3_c00491{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m102_c00491{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00491{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m112_c00491{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m74_c00491{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m56_c00491{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00491{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00491{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m109_c00491{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c00491{transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);}
.me0_c00491{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00491{transform:matrix(0.664000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{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__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00491{word-spacing:-6.388889px;}
.ws5_c00491{word-spacing:-5.212034px;}
.ws3_c00491{word-spacing:-1.585042px;}
.ws9_c00491{word-spacing:0.000000px;}
.ws4_c00491{word-spacing:1.710526px;}
.ws2_c00491{word-spacing:2.666667px;}
.ws0_c00491{word-spacing:4.759450px;}
.ws1_c00491{word-spacing:6.458515px;}
.ws8_c00491{word-spacing:15.000000px;}
.ws7_c00491{word-spacing:22.142857px;}
._0_c00491{width:48.125000px;}
.fc0_c00491{color:transparent;}
.fs2_c00491{font-size:30.000000px;}
.fs9_c00491{font-size:36.000000px;}
.fs7_c00491{font-size:42.000000px;}
.fs8_c00491{font-size:48.000000px;}
.fs6_c00491{font-size:54.000000px;}
.fs4_c00491{font-size:60.000000px;}
.fs3_c00491{font-size:66.000000px;}
.fs5_c00491{font-size:72.000000px;}
.fs1_c00491{font-size:84.000000px;}
.fs0_c00491{font-size:96.000000px;}
.y0_c00491{bottom:0.000000px;}
.y70_c00491{bottom:11.550000px;}
.y6f_c00491{bottom:111.900000px;}
.y6e_c00491{bottom:181.050000px;}
.y6d_c00491{bottom:199.200000px;}
.y36_c00491{bottom:203.400000px;}
.y4_c00491{bottom:210.600000px;}
.y3_c00491{bottom:214.500000px;}
.y6c_c00491{bottom:216.900000px;}
.y35_c00491{bottom:225.000000px;}
.y37_c00491{bottom:225.300000px;}
.y6b_c00491{bottom:234.900000px;}
.y34_c00491{bottom:243.000000px;}
.y6a_c00491{bottom:252.600000px;}
.y69_c00491{bottom:270.600000px;}
.y33_c00491{bottom:272.850000px;}
.y68_c00491{bottom:288.600000px;}
.y32_c00491{bottom:290.550000px;}
.y67_c00491{bottom:306.300000px;}
.y31_c00491{bottom:308.100000px;}
.y66_c00491{bottom:324.300000px;}
.y30_c00491{bottom:325.350000px;}
.y65_c00491{bottom:342.300000px;}
.y2f_c00491{bottom:343.050000px;}
.y64_c00491{bottom:360.000000px;}
.y2e_c00491{bottom:360.300000px;}
.y63_c00491{bottom:378.000000px;}
.y2d_c00491{bottom:395.400000px;}
.y62_c00491{bottom:395.700000px;}
.y2c_c00491{bottom:413.700000px;}
.y2b_c00491{bottom:431.700000px;}
.y61_c00491{bottom:449.700000px;}
.y2a_c00491{bottom:452.850000px;}
.y60_c00491{bottom:467.400000px;}
.y29_c00491{bottom:471.600000px;}
.y5f_c00491{bottom:485.400000px;}
.y28_c00491{bottom:489.900000px;}
.y5e_c00491{bottom:503.400000px;}
.y27_c00491{bottom:507.900000px;}
.y5d_c00491{bottom:521.100000px;}
.y26_c00491{bottom:525.600000px;}
.y5c_c00491{bottom:538.800000px;}
.y25_c00491{bottom:547.950000px;}
.y5b_c00491{bottom:556.800000px;}
.y24_c00491{bottom:565.950000px;}
.y5a_c00491{bottom:574.800000px;}
.y23_c00491{bottom:583.500000px;}
.y59_c00491{bottom:592.500000px;}
.y22_c00491{bottom:601.200000px;}
.y58_c00491{bottom:610.500000px;}
.y21_c00491{bottom:619.800000px;}
.y57_c00491{bottom:628.500000px;}
.y20_c00491{bottom:640.650000px;}
.y56_c00491{bottom:646.500000px;}
.y1f_c00491{bottom:658.650000px;}
.y55_c00491{bottom:664.200000px;}
.y1e_c00491{bottom:676.650000px;}
.y52_c00491{bottom:690.150000px;}
.y1d_c00491{bottom:694.350000px;}
.y51_c00491{bottom:704.550000px;}
.y1c_c00491{bottom:712.350000px;}
.y50_c00491{bottom:717.150000px;}
.y4f_c00491{bottom:730.800000px;}
.y1b_c00491{bottom:731.100000px;}
.y54_c00491{bottom:733.950000px;}
.y4e_c00491{bottom:745.950000px;}
.y1a_c00491{bottom:751.800000px;}
.y53_c00491{bottom:757.050000px;}
.y4d_c00491{bottom:760.050000px;}
.y19_c00491{bottom:770.550000px;}
.y4c_c00491{bottom:774.750000px;}
.y18_c00491{bottom:788.250000px;}
.y4b_c00491{bottom:790.650000px;}
.y4a_c00491{bottom:803.550000px;}
.y17_c00491{bottom:806.550000px;}
.y49_c00491{bottom:820.500000px;}
.y16_c00491{bottom:824.550000px;}
.y48_c00491{bottom:842.250000px;}
.y15_c00491{bottom:842.550000px;}
.y14_c00491{bottom:860.850000px;}
.y47_c00491{bottom:861.000000px;}
.y46_c00491{bottom:878.700000px;}
.y13_c00491{bottom:878.850000px;}
.y12_c00491{bottom:896.550000px;}
.y45_c00491{bottom:896.700000px;}
.y44_c00491{bottom:914.400000px;}
.y11_c00491{bottom:914.550000px;}
.y10_c00491{bottom:932.250000px;}
.y43_c00491{bottom:932.400000px;}
.y42_c00491{bottom:949.650000px;}
.yf_c00491{bottom:950.250000px;}
.ye_c00491{bottom:967.950000px;}
.y41_c00491{bottom:969.450000px;}
.yd_c00491{bottom:986.250000px;}
.y40_c00491{bottom:989.250000px;}
.yc_c00491{bottom:1003.950000px;}
.y3f_c00491{bottom:1007.400000px;}
.yb_c00491{bottom:1021.650000px;}
.y3e_c00491{bottom:1025.100000px;}
.ya_c00491{bottom:1038.900000px;}
.y3d_c00491{bottom:1042.800000px;}
.y9_c00491{bottom:1056.900000px;}
.y3c_c00491{bottom:1060.500000px;}
.y8_c00491{bottom:1074.600000px;}
.y3b_c00491{bottom:1078.500000px;}
.y7_c00491{bottom:1092.300000px;}
.y3a_c00491{bottom:1095.750000px;}
.y6_c00491{bottom:1109.550000px;}
.y39_c00491{bottom:1113.750000px;}
.y5_c00491{bottom:1127.550000px;}
.y38_c00491{bottom:1131.450000px;}
.y1_c00491{bottom:1150.500000px;}
.y2_c00491{bottom:1155.600000px;}
.h3_c00491{height:30.000000px;}
.ha_c00491{height:36.000000px;}
.h8_c00491{height:42.000000px;}
.h9_c00491{height:48.000000px;}
.h7_c00491{height:54.000000px;}
.h5_c00491{height:60.000000px;}
.h4_c00491{height:66.000000px;}
.h6_c00491{height:72.000000px;}
.h2_c00491{height:84.000000px;}
.h1_c00491{height:96.000000px;}
.h0_c00491{height:1278.000000px;}
.w0_c00491{width:958.320007px;}
.w1_c00491{width:958.500000px;}
.x0_c00491{left:0.000000px;}
.x155_c00491{left:82.800000px;}
.x1_c00491{left:181.500000px;}
.x4_c00491{left:195.450000px;}
.x97_c00491{left:196.500000px;}
.x9b_c00491{left:197.700000px;}
.xa5_c00491{left:201.300000px;}
.x6_c00491{left:202.650000px;}
.x19_c00491{left:204.300000px;}
.x3b_c00491{left:205.350000px;}
.x5a_c00491{left:206.550000px;}
.x67_c00491{left:207.750000px;}
.x74_c00491{left:208.800000px;}
.x7b_c00491{left:210.000000px;}
.x7_c00491{left:211.950000px;}
.x93_c00491{left:213.750000px;}
.x98_c00491{left:215.250000px;}
.xa3_c00491{left:216.750000px;}
.xa8_c00491{left:217.800000px;}
.x8_c00491{left:223.500000px;}
.x12_c00491{left:224.550000px;}
.x5_c00491{left:227.100000px;}
.x7c_c00491{left:228.750000px;}
.x3c_c00491{left:229.800000px;}
.x9_c00491{left:231.000000px;}
.x61_c00491{left:232.050000px;}
.x42_c00491{left:233.250000px;}
.x9f_c00491{left:234.300000px;}
.x54_c00491{left:235.350000px;}
.x24_c00491{left:237.000000px;}
.x7f_c00491{left:240.750000px;}
.x83_c00491{left:242.100000px;}
.xa6_c00491{left:243.450000px;}
.x32_c00491{left:244.950000px;}
.x76_c00491{left:246.300000px;}
.x62_c00491{left:248.250000px;}
.x1c_c00491{left:249.600000px;}
.x4d_c00491{left:255.600000px;}
.x95_c00491{left:257.400000px;}
.x68_c00491{left:258.900000px;}
.x4a_c00491{left:259.950000px;}
.x80_c00491{left:261.600000px;}
.x6a_c00491{left:263.850000px;}
.x3d_c00491{left:265.800000px;}
.x25_c00491{left:267.300000px;}
.x2d_c00491{left:269.400000px;}
.x5b_c00491{left:271.050000px;}
.x1a_c00491{left:274.500000px;}
.xa4_c00491{left:276.900000px;}
.x84_c00491{left:278.100000px;}
.x55_c00491{left:279.300000px;}
.x13_c00491{left:281.850000px;}
.x8e_c00491{left:283.500000px;}
.xa_c00491{left:285.300000px;}
.x88_c00491{left:286.500000px;}
.x45_c00491{left:289.650000px;}
.x77_c00491{left:292.050000px;}
.x6b_c00491{left:293.400000px;}
.xb_c00491{left:295.350000px;}
.x4b_c00491{left:296.700000px;}
.x6f_c00491{left:298.200000px;}
.x56_c00491{left:300.150000px;}
.x2e_c00491{left:301.500000px;}
.x8b_c00491{left:304.050000px;}
.x1d_c00491{left:305.100000px;}
.x4e_c00491{left:306.300000px;}
.x96_c00491{left:310.800000px;}
.x14_c00491{left:313.500000px;}
.x57_c00491{left:315.300000px;}
.x33_c00491{left:317.250000px;}
.x70_c00491{left:319.800000px;}
.x81_c00491{left:321.300000px;}
.x37_c00491{left:322.950000px;}
.xc_c00491{left:324.450000px;}
.x43_c00491{left:327.300000px;}
.x46_c00491{left:330.000000px;}
.x3e_c00491{left:331.650000px;}
.x51_c00491{left:333.450000px;}
.x38_c00491{left:334.500000px;}
.x15_c00491{left:336.600000px;}
.x82_c00491{left:337.800000px;}
.x78_c00491{left:340.650000px;}
.x1b_c00491{left:343.650000px;}
.x34_c00491{left:345.750000px;}
.x9e_c00491{left:346.950000px;}
.x26_c00491{left:348.600000px;}
.x44_c00491{left:350.400000px;}
.x85_c00491{left:354.750000px;}
.x27_c00491{left:359.700000px;}
.xa7_c00491{left:360.750000px;}
.x5c_c00491{left:362.400000px;}
.xd_c00491{left:364.050000px;}
.x63_c00491{left:366.300000px;}
.x1e_c00491{left:368.100000px;}
.x3f_c00491{left:369.450000px;}
.xe_c00491{left:372.000000px;}
.x39_c00491{left:374.100000px;}
.x2f_c00491{left:375.600000px;}
.x28_c00491{left:376.950000px;}
.x4f_c00491{left:378.300000px;}
.x71_c00491{left:380.400000px;}
.x47_c00491{left:384.000000px;}
.x16_c00491{left:385.950000px;}
.x89_c00491{left:387.300000px;}
.x5d_c00491{left:390.150000px;}
.x99_c00491{left:392.400000px;}
.x7d_c00491{left:393.900000px;}
.x1f_c00491{left:398.700000px;}
.xf_c00491{left:400.800000px;}
.xa0_c00491{left:402.450000px;}
.x17_c00491{left:405.000000px;}
.x29_c00491{left:407.550000px;}
.x40_c00491{left:409.350000px;}
.x58_c00491{left:414.750000px;}
.x2a_c00491{left:416.850000px;}
.x91_c00491{left:418.200000px;}
.x90_c00491{left:420.600000px;}
.x35_c00491{left:421.650000px;}
.x87_c00491{left:422.700000px;}
.x9c_c00491{left:424.950000px;}
.x5e_c00491{left:426.450000px;}
.x20_c00491{left:429.000000px;}
.x30_c00491{left:431.100000px;}
.x5f_c00491{left:434.400000px;}
.x8c_c00491{left:435.750000px;}
.x41_c00491{left:437.100000px;}
.x2b_c00491{left:438.150000px;}
.x2_c00491{left:440.400000px;}
.x18_c00491{left:444.300000px;}
.x64_c00491{left:446.550000px;}
.x52_c00491{left:447.900000px;}
.x79_c00491{left:449.400000px;}
.x3a_c00491{left:454.800000px;}
.x6c_c00491{left:456.150000px;}
.x31_c00491{left:458.100000px;}
.x10_c00491{left:459.450000px;}
.x8f_c00491{left:460.650000px;}
.x48_c00491{left:462.150000px;}
.x6e_c00491{left:464.550000px;}
.x92_c00491{left:465.750000px;}
.x11_c00491{left:468.150000px;}
.x65_c00491{left:471.000000px;}
.x2c_c00491{left:472.050000px;}
.x21_c00491{left:473.250000px;}
.x49_c00491{left:478.350000px;}
.x72_c00491{left:479.550000px;}
.x4c_c00491{left:480.600000px;}
.x22_c00491{left:482.550000px;}
.x86_c00491{left:484.050000px;}
.x94_c00491{left:486.000000px;}
.x60_c00491{left:487.350000px;}
.xa1_c00491{left:490.350000px;}
.x66_c00491{left:491.850000px;}
.x7e_c00491{left:494.250000px;}
.x59_c00491{left:496.050000px;}
.x50_c00491{left:498.450000px;}
.x23_c00491{left:499.800000px;}
.x36_c00491{left:508.050000px;}
.x6d_c00491{left:509.100000px;}
.x75_c00491{left:510.150000px;}
.x8d_c00491{left:511.800000px;}
.x69_c00491{left:513.000000px;}
.x73_c00491{left:514.050000px;}
.x9a_c00491{left:515.250000px;}
.x53_c00491{left:518.400000px;}
.x7a_c00491{left:521.100000px;}
.x9d_c00491{left:526.200000px;}
.xa2_c00491{left:527.400000px;}
.x8a_c00491{left:533.400000px;}
.xea_c00491{left:541.500000px;}
.x107_c00491{left:543.300000px;}
.x11d_c00491{left:545.700000px;}
.xa9_c00491{left:555.900000px;}
.xcb_c00491{left:557.550000px;}
.x117_c00491{left:559.050000px;}
.xf7_c00491{left:560.550000px;}
.x106_c00491{left:561.750000px;}
.x121_c00491{left:563.400000px;}
.x129_c00491{left:564.750000px;}
.x131_c00491{left:565.950000px;}
.x13b_c00491{left:567.450000px;}
.x143_c00491{left:569.700000px;}
.x151_c00491{left:571.050000px;}
.x10e_c00491{left:572.250000px;}
.x114_c00491{left:573.450000px;}
.xcc_c00491{left:576.300000px;}
.xe3_c00491{left:577.800000px;}
.xd9_c00491{left:578.850000px;}
.xeb_c00491{left:586.200000px;}
.xba_c00491{left:588.750000px;}
.xb2_c00491{left:590.100000px;}
.xc2_c00491{left:593.250000px;}
.xcd_c00491{left:594.300000px;}
.x12f_c00491{left:595.800000px;}
.xff_c00491{left:597.150000px;}
.xb3_c00491{left:599.100000px;}
.xaa_c00491{left:601.200000px;}
.x14e_c00491{left:604.200000px;}
.x108_c00491{left:605.550000px;}
.xb4_c00491{left:606.600000px;}
.x100_c00491{left:607.650000px;}
.x12a_c00491{left:609.450000px;}
.x149_c00491{left:610.650000px;}
.xab_c00491{left:611.700000px;}
.xef_c00491{left:615.300000px;}
.xe4_c00491{left:616.350000px;}
.x103_c00491{left:618.300000px;}
.x12b_c00491{left:619.950000px;}
.xf8_c00491{left:624.000000px;}
.xbb_c00491{left:625.800000px;}
.xda_c00491{left:627.750000px;}
.xc3_c00491{left:631.350000px;}
.xb5_c00491{left:632.550000px;}
.x101_c00491{left:633.600000px;}
.x112_c00491{left:635.400000px;}
.x13d_c00491{left:637.050000px;}
.xdb_c00491{left:638.850000px;}
.xf9_c00491{left:641.250000px;}
.xce_c00491{left:642.900000px;}
.xd6_c00491{left:644.100000px;}
.xbc_c00491{left:645.900000px;}
.x12d_c00491{left:647.250000px;}
.x142_c00491{left:649.050000px;}
.xac_c00491{left:651.600000px;}
.x125_c00491{left:653.700000px;}
.x118_c00491{left:655.650000px;}
.xe5_c00491{left:658.050000px;}
.xad_c00491{left:659.850000px;}
.x115_c00491{left:661.950000px;}
.x136_c00491{left:666.000000px;}
.x12c_c00491{left:667.050000px;}
.x102_c00491{left:669.300000px;}
.x119_c00491{left:670.800000px;}
.xf4_c00491{left:672.150000px;}
.x11e_c00491{left:674.850000px;}
.xbd_c00491{left:676.200000px;}
.xcf_c00491{left:678.150000px;}
.xf0_c00491{left:680.850000px;}
.x10c_c00491{left:682.500000px;}
.x153_c00491{left:683.700000px;}
.x122_c00491{left:685.800000px;}
.xb6_c00491{left:686.850000px;}
.xfa_c00491{left:689.100000px;}
.x126_c00491{left:690.450000px;}
.x147_c00491{left:692.100000px;}
.xae_c00491{left:694.350000px;}
.xc4_c00491{left:696.450000px;}
.xec_c00491{left:698.100000px;}
.xbe_c00491{left:699.900000px;}
.x137_c00491{left:701.400000px;}
.xfb_c00491{left:703.200000px;}
.xc5_c00491{left:705.150000px;}
.xdc_c00491{left:707.550000px;}
.xdf_c00491{left:711.150000px;}
.x109_c00491{left:713.100000px;}
.xd0_c00491{left:715.200000px;}
.xed_c00491{left:717.900000px;}
.x138_c00491{left:719.400000px;}
.xbf_c00491{left:721.800000px;}
.xc6_c00491{left:722.850000px;}
.xd1_c00491{left:723.900000px;}
.x130_c00491{left:725.400000px;}
.x11f_c00491{left:726.750000px;}
.xe6_c00491{left:732.150000px;}
.xd7_c00491{left:734.400000px;}
.x116_c00491{left:735.450000px;}
.x145_c00491{left:738.750000px;}
.x132_c00491{left:739.800000px;}
.x11a_c00491{left:742.050000px;}
.x14c_c00491{left:744.300000px;}
.x10f_c00491{left:745.500000px;}
.x13a_c00491{left:746.550000px;}
.xd2_c00491{left:749.100000px;}
.x13e_c00491{left:750.900000px;}
.xaf_c00491{left:751.950000px;}
.xe0_c00491{left:753.600000px;}
.xc7_c00491{left:755.550000px;}
.xf1_c00491{left:757.500000px;}
.xb7_c00491{left:759.600000px;}
.x10a_c00491{left:762.000000px;}
.x14a_c00491{left:763.650000px;}
.x113_c00491{left:764.700000px;}
.x110_c00491{left:767.850000px;}
.xb8_c00491{left:770.100000px;}
.xd3_c00491{left:772.200000px;}
.x127_c00491{left:774.000000px;}
.x104_c00491{left:775.200000px;}
.xf2_c00491{left:778.800000px;}
.xd8_c00491{left:783.000000px;}
.x14b_c00491{left:784.950000px;}
.xfc_c00491{left:786.000000px;}
.x120_c00491{left:787.500000px;}
.xc0_c00491{left:788.700000px;}
.xc8_c00491{left:790.050000px;}
.xb0_c00491{left:791.250000px;}
.xe7_c00491{left:793.050000px;}
.xdd_c00491{left:795.000000px;}
.xd4_c00491{left:797.100000px;}
.x133_c00491{left:798.150000px;}
.x10b_c00491{left:800.100000px;}
.xe8_c00491{left:802.350000px;}
.x12e_c00491{left:804.900000px;}
.x111_c00491{left:809.250000px;}
.xfd_c00491{left:810.900000px;}
.xf3_c00491{left:812.250000px;}
.xc1_c00491{left:813.600000px;}
.xf5_c00491{left:814.650000px;}
.xe1_c00491{left:816.600000px;}
.xd5_c00491{left:819.750000px;}
.x123_c00491{left:822.450000px;}
.x148_c00491{left:823.800000px;}
.x105_c00491{left:824.850000px;}
.x140_c00491{left:827.250000px;}
.x14f_c00491{left:829.650000px;}
.x3_c00491{left:831.300000px;}
.x139_c00491{left:832.500000px;}
.xb1_c00491{left:834.150000px;}
.x134_c00491{left:835.950000px;}
.xc9_c00491{left:837.300000px;}
.x11b_c00491{left:838.350000px;}
.xe9_c00491{left:839.850000px;}
.xee_c00491{left:842.100000px;}
.x128_c00491{left:844.050000px;}
.xb9_c00491{left:845.400000px;}
.xde_c00491{left:847.200000px;}
.x150_c00491{left:848.700000px;}
.xf6_c00491{left:850.350000px;}
.x144_c00491{left:851.550000px;}
.x13f_c00491{left:853.500000px;}
.x146_c00491{left:857.250000px;}
.x135_c00491{left:859.050000px;}
.xfe_c00491{left:860.550000px;}
.x13c_c00491{left:861.750000px;}
.x154_c00491{left:862.800000px;}
.x141_c00491{left:864.300000px;}
.xca_c00491{left:865.350000px;}
.x10d_c00491{left:867.150000px;}
.x11c_c00491{left:868.950000px;}
.xe2_c00491{left:872.700000px;}
.x152_c00491{left:877.050000px;}
.x124_c00491{left:878.250000px;}
.x14d_c00491{left:886.200000px;}
.x156_c00491{left:914.700000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws6_c00491{word-spacing:-5.679012pt;}
.ws5_c00491{word-spacing:-4.632919pt;}
.ws3_c00491{word-spacing:-1.408926pt;}
.ws9_c00491{word-spacing:0.000000pt;}
.ws4_c00491{word-spacing:1.520468pt;}
.ws2_c00491{word-spacing:2.370370pt;}
.ws0_c00491{word-spacing:4.230622pt;}
.ws1_c00491{word-spacing:5.740902pt;}
.ws8_c00491{word-spacing:13.333333pt;}
.ws7_c00491{word-spacing:19.682540pt;}
._0_c00491{width:42.777778pt;}
.fs2_c00491{font-size:26.666667pt;}
.fs9_c00491{font-size:32.000000pt;}
.fs7_c00491{font-size:37.333333pt;}
.fs8_c00491{font-size:42.666667pt;}
.fs6_c00491{font-size:48.000000pt;}
.fs4_c00491{font-size:53.333333pt;}
.fs3_c00491{font-size:58.666667pt;}
.fs5_c00491{font-size:64.000000pt;}
.fs1_c00491{font-size:74.666667pt;}
.fs0_c00491{font-size:85.333333pt;}
.y0_c00491{bottom:0.000000pt;}
.y70_c00491{bottom:10.266667pt;}
.y6f_c00491{bottom:99.466667pt;}
.y6e_c00491{bottom:160.933333pt;}
.y6d_c00491{bottom:177.066667pt;}
.y36_c00491{bottom:180.800000pt;}
.y4_c00491{bottom:187.200000pt;}
.y3_c00491{bottom:190.666667pt;}
.y6c_c00491{bottom:192.800000pt;}
.y35_c00491{bottom:200.000000pt;}
.y37_c00491{bottom:200.266667pt;}
.y6b_c00491{bottom:208.800000pt;}
.y34_c00491{bottom:216.000000pt;}
.y6a_c00491{bottom:224.533333pt;}
.y69_c00491{bottom:240.533333pt;}
.y33_c00491{bottom:242.533333pt;}
.y68_c00491{bottom:256.533333pt;}
.y32_c00491{bottom:258.266667pt;}
.y67_c00491{bottom:272.266667pt;}
.y31_c00491{bottom:273.866667pt;}
.y66_c00491{bottom:288.266667pt;}
.y30_c00491{bottom:289.200000pt;}
.y65_c00491{bottom:304.266667pt;}
.y2f_c00491{bottom:304.933333pt;}
.y64_c00491{bottom:320.000000pt;}
.y2e_c00491{bottom:320.266667pt;}
.y63_c00491{bottom:336.000000pt;}
.y2d_c00491{bottom:351.466667pt;}
.y62_c00491{bottom:351.733333pt;}
.y2c_c00491{bottom:367.733333pt;}
.y2b_c00491{bottom:383.733333pt;}
.y61_c00491{bottom:399.733333pt;}
.y2a_c00491{bottom:402.533333pt;}
.y60_c00491{bottom:415.466667pt;}
.y29_c00491{bottom:419.200000pt;}
.y5f_c00491{bottom:431.466667pt;}
.y28_c00491{bottom:435.466667pt;}
.y5e_c00491{bottom:447.466667pt;}
.y27_c00491{bottom:451.466667pt;}
.y5d_c00491{bottom:463.200000pt;}
.y26_c00491{bottom:467.200000pt;}
.y5c_c00491{bottom:478.933333pt;}
.y25_c00491{bottom:487.066667pt;}
.y5b_c00491{bottom:494.933333pt;}
.y24_c00491{bottom:503.066667pt;}
.y5a_c00491{bottom:510.933333pt;}
.y23_c00491{bottom:518.666667pt;}
.y59_c00491{bottom:526.666667pt;}
.y22_c00491{bottom:534.400000pt;}
.y58_c00491{bottom:542.666667pt;}
.y21_c00491{bottom:550.933333pt;}
.y57_c00491{bottom:558.666667pt;}
.y20_c00491{bottom:569.466667pt;}
.y56_c00491{bottom:574.666667pt;}
.y1f_c00491{bottom:585.466667pt;}
.y55_c00491{bottom:590.400000pt;}
.y1e_c00491{bottom:601.466667pt;}
.y52_c00491{bottom:613.466667pt;}
.y1d_c00491{bottom:617.200000pt;}
.y51_c00491{bottom:626.266667pt;}
.y1c_c00491{bottom:633.200000pt;}
.y50_c00491{bottom:637.466667pt;}
.y4f_c00491{bottom:649.600000pt;}
.y1b_c00491{bottom:649.866667pt;}
.y54_c00491{bottom:652.400000pt;}
.y4e_c00491{bottom:663.066667pt;}
.y1a_c00491{bottom:668.266667pt;}
.y53_c00491{bottom:672.933333pt;}
.y4d_c00491{bottom:675.600000pt;}
.y19_c00491{bottom:684.933333pt;}
.y4c_c00491{bottom:688.666667pt;}
.y18_c00491{bottom:700.666667pt;}
.y4b_c00491{bottom:702.800000pt;}
.y4a_c00491{bottom:714.266667pt;}
.y17_c00491{bottom:716.933333pt;}
.y49_c00491{bottom:729.333333pt;}
.y16_c00491{bottom:732.933333pt;}
.y48_c00491{bottom:748.666667pt;}
.y15_c00491{bottom:748.933333pt;}
.y14_c00491{bottom:765.200000pt;}
.y47_c00491{bottom:765.333333pt;}
.y46_c00491{bottom:781.066667pt;}
.y13_c00491{bottom:781.200000pt;}
.y12_c00491{bottom:796.933333pt;}
.y45_c00491{bottom:797.066667pt;}
.y44_c00491{bottom:812.800000pt;}
.y11_c00491{bottom:812.933333pt;}
.y10_c00491{bottom:828.666667pt;}
.y43_c00491{bottom:828.800000pt;}
.y42_c00491{bottom:844.133333pt;}
.yf_c00491{bottom:844.666667pt;}
.ye_c00491{bottom:860.400000pt;}
.y41_c00491{bottom:861.733333pt;}
.yd_c00491{bottom:876.666667pt;}
.y40_c00491{bottom:879.333333pt;}
.yc_c00491{bottom:892.400000pt;}
.y3f_c00491{bottom:895.466667pt;}
.yb_c00491{bottom:908.133333pt;}
.y3e_c00491{bottom:911.200000pt;}
.ya_c00491{bottom:923.466667pt;}
.y3d_c00491{bottom:926.933333pt;}
.y9_c00491{bottom:939.466667pt;}
.y3c_c00491{bottom:942.666667pt;}
.y8_c00491{bottom:955.200000pt;}
.y3b_c00491{bottom:958.666667pt;}
.y7_c00491{bottom:970.933333pt;}
.y3a_c00491{bottom:974.000000pt;}
.y6_c00491{bottom:986.266667pt;}
.y39_c00491{bottom:990.000000pt;}
.y5_c00491{bottom:1002.266667pt;}
.y38_c00491{bottom:1005.733333pt;}
.y1_c00491{bottom:1022.666667pt;}
.y2_c00491{bottom:1027.200000pt;}
.h3_c00491{height:26.666667pt;}
.ha_c00491{height:32.000000pt;}
.h8_c00491{height:37.333333pt;}
.h9_c00491{height:42.666667pt;}
.h7_c00491{height:48.000000pt;}
.h5_c00491{height:53.333333pt;}
.h4_c00491{height:58.666667pt;}
.h6_c00491{height:64.000000pt;}
.h2_c00491{height:74.666667pt;}
.h1_c00491{height:85.333333pt;}
.h0_c00491{height:1136.000000pt;}
.w0_c00491{width:851.840007pt;}
.w1_c00491{width:852.000000pt;}
.x0_c00491{left:0.000000pt;}
.x155_c00491{left:73.600000pt;}
.x1_c00491{left:161.333333pt;}
.x4_c00491{left:173.733333pt;}
.x97_c00491{left:174.666667pt;}
.x9b_c00491{left:175.733333pt;}
.xa5_c00491{left:178.933333pt;}
.x6_c00491{left:180.133333pt;}
.x19_c00491{left:181.600000pt;}
.x3b_c00491{left:182.533333pt;}
.x5a_c00491{left:183.600000pt;}
.x67_c00491{left:184.666667pt;}
.x74_c00491{left:185.600000pt;}
.x7b_c00491{left:186.666667pt;}
.x7_c00491{left:188.400000pt;}
.x93_c00491{left:190.000000pt;}
.x98_c00491{left:191.333333pt;}
.xa3_c00491{left:192.666667pt;}
.xa8_c00491{left:193.600000pt;}
.x8_c00491{left:198.666667pt;}
.x12_c00491{left:199.600000pt;}
.x5_c00491{left:201.866667pt;}
.x7c_c00491{left:203.333333pt;}
.x3c_c00491{left:204.266667pt;}
.x9_c00491{left:205.333333pt;}
.x61_c00491{left:206.266667pt;}
.x42_c00491{left:207.333333pt;}
.x9f_c00491{left:208.266667pt;}
.x54_c00491{left:209.200000pt;}
.x24_c00491{left:210.666667pt;}
.x7f_c00491{left:214.000000pt;}
.x83_c00491{left:215.200000pt;}
.xa6_c00491{left:216.400000pt;}
.x32_c00491{left:217.733333pt;}
.x76_c00491{left:218.933333pt;}
.x62_c00491{left:220.666667pt;}
.x1c_c00491{left:221.866667pt;}
.x4d_c00491{left:227.200000pt;}
.x95_c00491{left:228.800000pt;}
.x68_c00491{left:230.133333pt;}
.x4a_c00491{left:231.066667pt;}
.x80_c00491{left:232.533333pt;}
.x6a_c00491{left:234.533333pt;}
.x3d_c00491{left:236.266667pt;}
.x25_c00491{left:237.600000pt;}
.x2d_c00491{left:239.466667pt;}
.x5b_c00491{left:240.933333pt;}
.x1a_c00491{left:244.000000pt;}
.xa4_c00491{left:246.133333pt;}
.x84_c00491{left:247.200000pt;}
.x55_c00491{left:248.266667pt;}
.x13_c00491{left:250.533333pt;}
.x8e_c00491{left:252.000000pt;}
.xa_c00491{left:253.600000pt;}
.x88_c00491{left:254.666667pt;}
.x45_c00491{left:257.466667pt;}
.x77_c00491{left:259.600000pt;}
.x6b_c00491{left:260.800000pt;}
.xb_c00491{left:262.533333pt;}
.x4b_c00491{left:263.733333pt;}
.x6f_c00491{left:265.066667pt;}
.x56_c00491{left:266.800000pt;}
.x2e_c00491{left:268.000000pt;}
.x8b_c00491{left:270.266667pt;}
.x1d_c00491{left:271.200000pt;}
.x4e_c00491{left:272.266667pt;}
.x96_c00491{left:276.266667pt;}
.x14_c00491{left:278.666667pt;}
.x57_c00491{left:280.266667pt;}
.x33_c00491{left:282.000000pt;}
.x70_c00491{left:284.266667pt;}
.x81_c00491{left:285.600000pt;}
.x37_c00491{left:287.066667pt;}
.xc_c00491{left:288.400000pt;}
.x43_c00491{left:290.933333pt;}
.x46_c00491{left:293.333333pt;}
.x3e_c00491{left:294.800000pt;}
.x51_c00491{left:296.400000pt;}
.x38_c00491{left:297.333333pt;}
.x15_c00491{left:299.200000pt;}
.x82_c00491{left:300.266667pt;}
.x78_c00491{left:302.800000pt;}
.x1b_c00491{left:305.466667pt;}
.x34_c00491{left:307.333333pt;}
.x9e_c00491{left:308.400000pt;}
.x26_c00491{left:309.866667pt;}
.x44_c00491{left:311.466667pt;}
.x85_c00491{left:315.333333pt;}
.x27_c00491{left:319.733333pt;}
.xa7_c00491{left:320.666667pt;}
.x5c_c00491{left:322.133333pt;}
.xd_c00491{left:323.600000pt;}
.x63_c00491{left:325.600000pt;}
.x1e_c00491{left:327.200000pt;}
.x3f_c00491{left:328.400000pt;}
.xe_c00491{left:330.666667pt;}
.x39_c00491{left:332.533333pt;}
.x2f_c00491{left:333.866667pt;}
.x28_c00491{left:335.066667pt;}
.x4f_c00491{left:336.266667pt;}
.x71_c00491{left:338.133333pt;}
.x47_c00491{left:341.333333pt;}
.x16_c00491{left:343.066667pt;}
.x89_c00491{left:344.266667pt;}
.x5d_c00491{left:346.800000pt;}
.x99_c00491{left:348.800000pt;}
.x7d_c00491{left:350.133333pt;}
.x1f_c00491{left:354.400000pt;}
.xf_c00491{left:356.266667pt;}
.xa0_c00491{left:357.733333pt;}
.x17_c00491{left:360.000000pt;}
.x29_c00491{left:362.266667pt;}
.x40_c00491{left:363.866667pt;}
.x58_c00491{left:368.666667pt;}
.x2a_c00491{left:370.533333pt;}
.x91_c00491{left:371.733333pt;}
.x90_c00491{left:373.866667pt;}
.x35_c00491{left:374.800000pt;}
.x87_c00491{left:375.733333pt;}
.x9c_c00491{left:377.733333pt;}
.x5e_c00491{left:379.066667pt;}
.x20_c00491{left:381.333333pt;}
.x30_c00491{left:383.200000pt;}
.x5f_c00491{left:386.133333pt;}
.x8c_c00491{left:387.333333pt;}
.x41_c00491{left:388.533333pt;}
.x2b_c00491{left:389.466667pt;}
.x2_c00491{left:391.466667pt;}
.x18_c00491{left:394.933333pt;}
.x64_c00491{left:396.933333pt;}
.x52_c00491{left:398.133333pt;}
.x79_c00491{left:399.466667pt;}
.x3a_c00491{left:404.266667pt;}
.x6c_c00491{left:405.466667pt;}
.x31_c00491{left:407.200000pt;}
.x10_c00491{left:408.400000pt;}
.x8f_c00491{left:409.466667pt;}
.x48_c00491{left:410.800000pt;}
.x6e_c00491{left:412.933333pt;}
.x92_c00491{left:414.000000pt;}
.x11_c00491{left:416.133333pt;}
.x65_c00491{left:418.666667pt;}
.x2c_c00491{left:419.600000pt;}
.x21_c00491{left:420.666667pt;}
.x49_c00491{left:425.200000pt;}
.x72_c00491{left:426.266667pt;}
.x4c_c00491{left:427.200000pt;}
.x22_c00491{left:428.933333pt;}
.x86_c00491{left:430.266667pt;}
.x94_c00491{left:432.000000pt;}
.x60_c00491{left:433.200000pt;}
.xa1_c00491{left:435.866667pt;}
.x66_c00491{left:437.200000pt;}
.x7e_c00491{left:439.333333pt;}
.x59_c00491{left:440.933333pt;}
.x50_c00491{left:443.066667pt;}
.x23_c00491{left:444.266667pt;}
.x36_c00491{left:451.600000pt;}
.x6d_c00491{left:452.533333pt;}
.x75_c00491{left:453.466667pt;}
.x8d_c00491{left:454.933333pt;}
.x69_c00491{left:456.000000pt;}
.x73_c00491{left:456.933333pt;}
.x9a_c00491{left:458.000000pt;}
.x53_c00491{left:460.800000pt;}
.x7a_c00491{left:463.200000pt;}
.x9d_c00491{left:467.733333pt;}
.xa2_c00491{left:468.800000pt;}
.x8a_c00491{left:474.133333pt;}
.xea_c00491{left:481.333333pt;}
.x107_c00491{left:482.933333pt;}
.x11d_c00491{left:485.066667pt;}
.xa9_c00491{left:494.133333pt;}
.xcb_c00491{left:495.600000pt;}
.x117_c00491{left:496.933333pt;}
.xf7_c00491{left:498.266667pt;}
.x106_c00491{left:499.333333pt;}
.x121_c00491{left:500.800000pt;}
.x129_c00491{left:502.000000pt;}
.x131_c00491{left:503.066667pt;}
.x13b_c00491{left:504.400000pt;}
.x143_c00491{left:506.400000pt;}
.x151_c00491{left:507.600000pt;}
.x10e_c00491{left:508.666667pt;}
.x114_c00491{left:509.733333pt;}
.xcc_c00491{left:512.266667pt;}
.xe3_c00491{left:513.600000pt;}
.xd9_c00491{left:514.533333pt;}
.xeb_c00491{left:521.066667pt;}
.xba_c00491{left:523.333333pt;}
.xb2_c00491{left:524.533333pt;}
.xc2_c00491{left:527.333333pt;}
.xcd_c00491{left:528.266667pt;}
.x12f_c00491{left:529.600000pt;}
.xff_c00491{left:530.800000pt;}
.xb3_c00491{left:532.533333pt;}
.xaa_c00491{left:534.400000pt;}
.x14e_c00491{left:537.066667pt;}
.x108_c00491{left:538.266667pt;}
.xb4_c00491{left:539.200000pt;}
.x100_c00491{left:540.133333pt;}
.x12a_c00491{left:541.733333pt;}
.x149_c00491{left:542.800000pt;}
.xab_c00491{left:543.733333pt;}
.xef_c00491{left:546.933333pt;}
.xe4_c00491{left:547.866667pt;}
.x103_c00491{left:549.600000pt;}
.x12b_c00491{left:551.066667pt;}
.xf8_c00491{left:554.666667pt;}
.xbb_c00491{left:556.266667pt;}
.xda_c00491{left:558.000000pt;}
.xc3_c00491{left:561.200000pt;}
.xb5_c00491{left:562.266667pt;}
.x101_c00491{left:563.200000pt;}
.x112_c00491{left:564.800000pt;}
.x13d_c00491{left:566.266667pt;}
.xdb_c00491{left:567.866667pt;}
.xf9_c00491{left:570.000000pt;}
.xce_c00491{left:571.466667pt;}
.xd6_c00491{left:572.533333pt;}
.xbc_c00491{left:574.133333pt;}
.x12d_c00491{left:575.333333pt;}
.x142_c00491{left:576.933333pt;}
.xac_c00491{left:579.200000pt;}
.x125_c00491{left:581.066667pt;}
.x118_c00491{left:582.800000pt;}
.xe5_c00491{left:584.933333pt;}
.xad_c00491{left:586.533333pt;}
.x115_c00491{left:588.400000pt;}
.x136_c00491{left:592.000000pt;}
.x12c_c00491{left:592.933333pt;}
.x102_c00491{left:594.933333pt;}
.x119_c00491{left:596.266667pt;}
.xf4_c00491{left:597.466667pt;}
.x11e_c00491{left:599.866667pt;}
.xbd_c00491{left:601.066667pt;}
.xcf_c00491{left:602.800000pt;}
.xf0_c00491{left:605.200000pt;}
.x10c_c00491{left:606.666667pt;}
.x153_c00491{left:607.733333pt;}
.x122_c00491{left:609.600000pt;}
.xb6_c00491{left:610.533333pt;}
.xfa_c00491{left:612.533333pt;}
.x126_c00491{left:613.733333pt;}
.x147_c00491{left:615.200000pt;}
.xae_c00491{left:617.200000pt;}
.xc4_c00491{left:619.066667pt;}
.xec_c00491{left:620.533333pt;}
.xbe_c00491{left:622.133333pt;}
.x137_c00491{left:623.466667pt;}
.xfb_c00491{left:625.066667pt;}
.xc5_c00491{left:626.800000pt;}
.xdc_c00491{left:628.933333pt;}
.xdf_c00491{left:632.133333pt;}
.x109_c00491{left:633.866667pt;}
.xd0_c00491{left:635.733333pt;}
.xed_c00491{left:638.133333pt;}
.x138_c00491{left:639.466667pt;}
.xbf_c00491{left:641.600000pt;}
.xc6_c00491{left:642.533333pt;}
.xd1_c00491{left:643.466667pt;}
.x130_c00491{left:644.800000pt;}
.x11f_c00491{left:646.000000pt;}
.xe6_c00491{left:650.800000pt;}
.xd7_c00491{left:652.800000pt;}
.x116_c00491{left:653.733333pt;}
.x145_c00491{left:656.666667pt;}
.x132_c00491{left:657.600000pt;}
.x11a_c00491{left:659.600000pt;}
.x14c_c00491{left:661.600000pt;}
.x10f_c00491{left:662.666667pt;}
.x13a_c00491{left:663.600000pt;}
.xd2_c00491{left:665.866667pt;}
.x13e_c00491{left:667.466667pt;}
.xaf_c00491{left:668.400000pt;}
.xe0_c00491{left:669.866667pt;}
.xc7_c00491{left:671.600000pt;}
.xf1_c00491{left:673.333333pt;}
.xb7_c00491{left:675.200000pt;}
.x10a_c00491{left:677.333333pt;}
.x14a_c00491{left:678.800000pt;}
.x113_c00491{left:679.733333pt;}
.x110_c00491{left:682.533333pt;}
.xb8_c00491{left:684.533333pt;}
.xd3_c00491{left:686.400000pt;}
.x127_c00491{left:688.000000pt;}
.x104_c00491{left:689.066667pt;}
.xf2_c00491{left:692.266667pt;}
.xd8_c00491{left:696.000000pt;}
.x14b_c00491{left:697.733333pt;}
.xfc_c00491{left:698.666667pt;}
.x120_c00491{left:700.000000pt;}
.xc0_c00491{left:701.066667pt;}
.xc8_c00491{left:702.266667pt;}
.xb0_c00491{left:703.333333pt;}
.xe7_c00491{left:704.933333pt;}
.xdd_c00491{left:706.666667pt;}
.xd4_c00491{left:708.533333pt;}
.x133_c00491{left:709.466667pt;}
.x10b_c00491{left:711.200000pt;}
.xe8_c00491{left:713.200000pt;}
.x12e_c00491{left:715.466667pt;}
.x111_c00491{left:719.333333pt;}
.xfd_c00491{left:720.800000pt;}
.xf3_c00491{left:722.000000pt;}
.xc1_c00491{left:723.200000pt;}
.xf5_c00491{left:724.133333pt;}
.xe1_c00491{left:725.866667pt;}
.xd5_c00491{left:728.666667pt;}
.x123_c00491{left:731.066667pt;}
.x148_c00491{left:732.266667pt;}
.x105_c00491{left:733.200000pt;}
.x140_c00491{left:735.333333pt;}
.x14f_c00491{left:737.466667pt;}
.x3_c00491{left:738.933333pt;}
.x139_c00491{left:740.000000pt;}
.xb1_c00491{left:741.466667pt;}
.x134_c00491{left:743.066667pt;}
.xc9_c00491{left:744.266667pt;}
.x11b_c00491{left:745.200000pt;}
.xe9_c00491{left:746.533333pt;}
.xee_c00491{left:748.533333pt;}
.x128_c00491{left:750.266667pt;}
.xb9_c00491{left:751.466667pt;}
.xde_c00491{left:753.066667pt;}
.x150_c00491{left:754.400000pt;}
.xf6_c00491{left:755.866667pt;}
.x144_c00491{left:756.933333pt;}
.x13f_c00491{left:758.666667pt;}
.x146_c00491{left:762.000000pt;}
.x135_c00491{left:763.600000pt;}
.xfe_c00491{left:764.933333pt;}
.x13c_c00491{left:766.000000pt;}
.x154_c00491{left:766.933333pt;}
.x141_c00491{left:768.266667pt;}
.xca_c00491{left:769.200000pt;}
.x10d_c00491{left:770.800000pt;}
.x11c_c00491{left:772.400000pt;}
.xe2_c00491{left:775.733333pt;}
.x152_c00491{left:779.600000pt;}
.x124_c00491{left:780.666667pt;}
.x14d_c00491{left:787.733333pt;}
.x156_c00491{left:813.066667pt;}
}





/* 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_c00492 {
    display:none;
  }
  .loading-indicator_c00492.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00492 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_c00492 { 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_c00492" -> "#page-container .classname_c00492")
 */
.pf_c00492 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00492 { /* 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_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00492 { /* 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_c00492 { /* 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_c00492 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00492 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00492 {overflow:visible;}
  }
}
.c_c00492 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00492 { /* 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_c00492:after { /* webkit #35443 */
  content: '';
}
.t_c00492:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00492 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 */
}
.__c00492 { /* 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_c00492 { /* info for Javascript */
  display:none;
}
.l_c00492 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00492 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00492 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00492: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_c00492 {
    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_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00492.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_c00492 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00492{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00492;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.000000;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;}
.m139_c00492{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00492{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00492{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00492{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m87_c00492{transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00492{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00492{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m40_c00492{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m83_c00492{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00492{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m96_c00492{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m16_c00492{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8_c00492{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00492{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m55_c00492{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.m17_c00492{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00492{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00492{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00492{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m84_c00492{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m41_c00492{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00492{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m94_c00492{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00492{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00492{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m101_c00492{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m125_c00492{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m28_c00492{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00492{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m76_c00492{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m24_c00492{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m19_c00492{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00492{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00492{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00492{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00492{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00492{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.med_c00492{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m30_c00492{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m46_c00492{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00492{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m90_c00492{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.mea_c00492{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m15_c00492{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m95_c00492{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00492{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m119_c00492{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m79_c00492{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m10_c00492{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00492{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m38_c00492{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m75_c00492{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00492{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m25_c00492{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m133_c00492{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00492{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00492{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m118_c00492{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m21_c00492{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00492{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00492{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m37_c00492{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00492{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mf8_c00492{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00492{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m131_c00492{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00492{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00492{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.meb_c00492{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00492{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m9_c00492{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m81_c00492{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m85_c00492{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m47_c00492{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00492{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00492{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m5_c00492{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc_c00492{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m61_c00492{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m29_c00492{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m78_c00492{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m1_c00492{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m34_c00492{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mde_c00492{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mec_c00492{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.mb_c00492{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m89_c00492{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me0_c00492{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00492{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00492{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00492{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00492{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m98_c00492{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00492{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00492{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m23_c00492{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mca_c00492{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00492{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00492{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m36_c00492{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00492{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m60_c00492{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00492{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m39_c00492{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00492{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m35_c00492{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00492{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00492{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m52_c00492{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m26_c00492{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md9_c00492{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m31_c00492{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md3_c00492{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00492{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00492{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m80_c00492{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4_c00492{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md6_c00492{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m58_c00492{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m72_c00492{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma_c00492{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m49_c00492{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00492{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m6_c00492{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m57_c00492{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m92_c00492{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m91_c00492{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m134_c00492{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m27_c00492{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mae_c00492{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00492{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m99_c00492{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m121_c00492{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m44_c00492{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m18_c00492{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m45_c00492{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mab_c00492{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m77_c00492{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.md8_c00492{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m129_c00492{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mf_c00492{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00492{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me2_c00492{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.me6_c00492{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00492{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00492{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00492{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00492{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m56_c00492{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00492{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00492{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m22_c00492{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.me9_c00492{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m62_c00492{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.me7_c00492{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00492{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00492{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mce_c00492{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m122_c00492{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m14_c00492{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00492{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00492{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m66_c00492{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00492{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m64_c00492{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m33_c00492{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m71_c00492{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.md7_c00492{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mef_c00492{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00492{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.md2_c00492{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2_c00492{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m100_c00492{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mba_c00492{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00492{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m130_c00492{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00492{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m68_c00492{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.md1_c00492{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00492{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00492{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m86_c00492{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mda_c00492{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00492{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00492{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00492{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00492{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m102_c00492{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7_c00492{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00492{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00492{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m48_c00492{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00492{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00492{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00492{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00492{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00492{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m137_c00492{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mad_c00492{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00492{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00492{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md_c00492{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m108_c00492{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m104_c00492{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mac_c00492{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maa_c00492{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00492{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m93_c00492{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00492{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m88_c00492{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m51_c00492{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m12_c00492{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m32_c00492{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00492{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m50_c00492{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mff_c00492{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00492{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00492{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m63_c00492{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00492{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00492{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00492{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00492{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.maf_c00492{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me4_c00492{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mee_c00492{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00492{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00492{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00492{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.me8_c00492{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m97_c00492{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m132_c00492{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00492{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00492{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m105_c00492{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00492{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.me3_c00492{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md5_c00492{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m124_c00492{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00492{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00492{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.me_c00492{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00492{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m43_c00492{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m138_c00492{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00492{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00492{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00492{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m120_c00492{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00492{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00492{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.me1_c00492{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00492{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m123_c00492{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m69_c00492{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m103_c00492{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m65_c00492{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00492{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00492{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m20_c00492{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m11_c00492{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00492{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00492{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00492{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m42_c00492{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m107_c00492{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00492{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00492{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m70_c00492{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00492{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00492{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m115_c00492{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.md4_c00492{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00492{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00492{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m126_c00492{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m106_c00492{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00492{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md0_c00492{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m59_c00492{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m128_c00492{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.me5_c00492{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00492{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00492{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m13_c00492{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00492{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m82_c00492{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m67_c00492{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m135_c00492{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00492{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00492{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m54_c00492{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00492{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00492{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m136_c00492{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00492{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m73_c00492{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m53_c00492{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m116_c00492{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m112_c00492{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m117_c00492{transform:matrix(0.362750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362750,0.000000,0.000000,0.250000,0,0);}
.m13b_c00492{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.m113_c00492{transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364000,0.000000,0.000000,0.250000,0,0);}
.m127_c00492{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m110_c00492{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00492{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00492{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00492{transform:matrix(0.374250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374250,0.000000,0.000000,0.250000,0,0);}
.m111_c00492{transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00492{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m114_c00492{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);}
.m109_c00492{transform:matrix(0.423250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00492{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m74_c00492{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00492{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls2_c00492{letter-spacing:0.000000px;}
.ls0_c00492{letter-spacing:41.875000px;}
.ls1_c00492{letter-spacing:46.083095px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{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__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00492{word-spacing:-79.083095px;}
.ws2_c00492{word-spacing:-71.875000px;}
.ws1b_c00492{word-spacing:-12.423402px;}
.ws1a_c00492{word-spacing:-10.071429px;}
.ws19_c00492{word-spacing:-9.602620px;}
.wsf_c00492{word-spacing:-6.893471px;}
.ws15_c00492{word-spacing:-6.525836px;}
.ws13_c00492{word-spacing:-5.828080px;}
.wse_c00492{word-spacing:-1.911765px;}
.ws17_c00492{word-spacing:-1.297297px;}
.ws1e_c00492{word-spacing:0.000000px;}
.ws9_c00492{word-spacing:0.055046px;}
.ws18_c00492{word-spacing:1.107143px;}
.ws16_c00492{word-spacing:1.500000px;}
.ws0_c00492{word-spacing:2.424242px;}
.ws11_c00492{word-spacing:11.875000px;}
.ws6_c00492{word-spacing:16.521490px;}
.wsd_c00492{word-spacing:19.059299px;}
.ws10_c00492{word-spacing:22.142857px;}
.ws4_c00492{word-spacing:24.491803px;}
.ws1_c00492{word-spacing:25.714286px;}
.wsb_c00492{word-spacing:27.248408px;}
.ws5_c00492{word-spacing:28.426230px;}
.wsa_c00492{word-spacing:32.360656px;}
.ws12_c00492{word-spacing:65.000000px;}
.ws7_c00492{word-spacing:66.000000px;}
.ws3_c00492{word-spacing:67.333333px;}
.ws14_c00492{word-spacing:179.583333px;}
.wsc_c00492{word-spacing:311.142857px;}
.ws1c_c00492{word-spacing:1556.071429px;}
.ws1d_c00492{word-spacing:1614.916031px;}
._4_c00492{margin-left:-46.083095px;}
._0_c00492{margin-left:-41.875000px;}
._2_c00492{width:57.491803px;}
._5_c00492{width:59.285714px;}
._1_c00492{width:65.360656px;}
._3_c00492{width:71.262295px;}
.fc0_c00492{color:transparent;}
.fs7_c00492{font-size:24.000000px;}
.fs4_c00492{font-size:30.000000px;}
.fs5_c00492{font-size:36.000000px;}
.fs3_c00492{font-size:54.000000px;}
.fs2_c00492{font-size:60.000000px;}
.fs1_c00492{font-size:66.000000px;}
.fs6_c00492{font-size:72.000000px;}
.fs0_c00492{font-size:96.000000px;}
.y0_c00492{bottom:0.000000px;}
.y4a_c00492{bottom:6.600000px;}
.y49_c00492{bottom:8.700000px;}
.y48_c00492{bottom:172.800000px;}
.y47_c00492{bottom:191.100000px;}
.y46_c00492{bottom:209.100000px;}
.y45_c00492{bottom:226.800000px;}
.y44_c00492{bottom:234.000000px;}
.y43_c00492{bottom:248.400000px;}
.y42_c00492{bottom:262.800000px;}
.y41_c00492{bottom:280.500000px;}
.y40_c00492{bottom:290.100000px;}
.y3f_c00492{bottom:298.050000px;}
.y3e_c00492{bottom:307.350000px;}
.y3d_c00492{bottom:316.050000px;}
.y3c_c00492{bottom:319.650000px;}
.y3b_c00492{bottom:334.050000px;}
.y3a_c00492{bottom:351.000000px;}
.y39_c00492{bottom:369.000000px;}
.y38_c00492{bottom:376.950000px;}
.y37_c00492{bottom:386.700000px;}
.y36_c00492{bottom:391.350000px;}
.y35_c00492{bottom:405.300000px;}
.y34_c00492{bottom:421.800000px;}
.y33_c00492{bottom:439.500000px;}
.y32_c00492{bottom:446.400000px;}
.y31_c00492{bottom:448.200000px;}
.y30_c00492{bottom:457.200000px;}
.y2f_c00492{bottom:475.200000px;}
.y2e_c00492{bottom:494.550000px;}
.y2d_c00492{bottom:510.750000px;}
.y2c_c00492{bottom:528.450000px;}
.y2b_c00492{bottom:552.900000px;}
.y2a_c00492{bottom:567.300000px;}
.y28_c00492{bottom:581.700000px;}
.y27_c00492{bottom:587.250000px;}
.y26_c00492{bottom:605.550000px;}
.y25_c00492{bottom:617.100000px;}
.y24_c00492{bottom:623.100000px;}
.y23_c00492{bottom:640.800000px;}
.y22_c00492{bottom:658.500000px;}
.y21_c00492{bottom:676.050000px;}
.y20_c00492{bottom:693.750000px;}
.y1f_c00492{bottom:711.300000px;}
.y1e_c00492{bottom:723.600000px;}
.y1d_c00492{bottom:751.050000px;}
.y1c_c00492{bottom:759.300000px;}
.y1b_c00492{bottom:780.900000px;}
.y1a_c00492{bottom:804.300000px;}
.y19_c00492{bottom:812.550000px;}
.y18_c00492{bottom:822.300000px;}
.y17_c00492{bottom:830.250000px;}
.y29_c00492{bottom:839.850000px;}
.y16_c00492{bottom:848.250000px;}
.y15_c00492{bottom:860.100000px;}
.y14_c00492{bottom:865.800000px;}
.y13_c00492{bottom:883.500000px;}
.y12_c00492{bottom:901.500000px;}
.y11_c00492{bottom:909.000000px;}
.y10_c00492{bottom:919.050000px;}
.yf_c00492{bottom:936.750000px;}
.ye_c00492{bottom:954.600000px;}
.yd_c00492{bottom:962.100000px;}
.yc_c00492{bottom:975.000000px;}
.yb_c00492{bottom:989.700000px;}
.ya_c00492{bottom:1003.350000px;}
.y9_c00492{bottom:1020.900000px;}
.y8_c00492{bottom:1029.900000px;}
.y7_c00492{bottom:1042.500000px;}
.y6_c00492{bottom:1058.400000px;}
.y5_c00492{bottom:1077.450000px;}
.y4_c00492{bottom:1086.150000px;}
.y3_c00492{bottom:1100.250000px;}
.y2_c00492{bottom:1118.550000px;}
.y1_c00492{bottom:1141.200000px;}
.h9_c00492{height:24.000000px;}
.h6_c00492{height:30.000000px;}
.h7_c00492{height:36.000000px;}
.h5_c00492{height:54.000000px;}
.h4_c00492{height:60.000000px;}
.h3_c00492{height:66.000000px;}
.h8_c00492{height:72.000000px;}
.h2_c00492{height:96.000000px;}
.h1_c00492{height:1269.000000px;}
.h0_c00492{height:1269.359985px;}
.w0_c00492{width:958.320007px;}
.w1_c00492{width:958.500000px;}
.x0_c00492{left:0.000000px;}
.x2d_c00492{left:75.750000px;}
.x89_c00492{left:77.100000px;}
.xd2_c00492{left:79.200000px;}
.xfb_c00492{left:81.000000px;}
.x123_c00492{left:82.500000px;}
.x14b_c00492{left:84.150000px;}
.x3_c00492{left:93.600000px;}
.x59_c00492{left:94.650000px;}
.xb9_c00492{left:96.450000px;}
.x97_c00492{left:97.500000px;}
.x151_c00492{left:98.700000px;}
.xa1_c00492{left:101.850000px;}
.x94_c00492{left:103.050000px;}
.x12a_c00492{left:105.450000px;}
.x154_c00492{left:107.700000px;}
.x131_c00492{left:108.750000px;}
.x112_c00492{left:109.950000px;}
.x3b_c00492{left:111.150000px;}
.x66_c00492{left:113.100000px;}
.xfa_c00492{left:114.900000px;}
.x90_c00492{left:116.550000px;}
.x159_c00492{left:117.750000px;}
.x4e_c00492{left:119.250000px;}
.x7f_c00492{left:121.050000px;}
.x106_c00492{left:122.100000px;}
.x98_c00492{left:123.450000px;}
.x124_c00492{left:126.450000px;}
.xe_c00492{left:128.400000px;}
.x73_c00492{left:130.050000px;}
.xba_c00492{left:132.750000px;}
.x130_c00492{left:134.100000px;}
.x2e_c00492{left:135.900000px;}
.xf6_c00492{left:136.950000px;}
.x13a_c00492{left:140.400000px;}
.x20_c00492{left:141.750000px;}
.xe0_c00492{left:142.950000px;}
.x11d_c00492{left:144.300000px;}
.x8a_c00492{left:145.500000px;}
.x4_c00492{left:148.650000px;}
.xbb_c00492{left:150.000000px;}
.x67_c00492{left:152.400000px;}
.x5a_c00492{left:154.050000px;}
.xe4_c00492{left:155.550000px;}
.xf7_c00492{left:158.550000px;}
.x21_c00492{left:160.500000px;}
.xf_c00492{left:163.650000px;}
.x4f_c00492{left:166.350000px;}
.xeb_c00492{left:167.550000px;}
.x1c_c00492{left:169.050000px;}
.x125_c00492{left:171.000000px;}
.x136_c00492{left:172.650000px;}
.x113_c00492{left:173.700000px;}
.x3c_c00492{left:177.000000px;}
.xb0_c00492{left:178.350000px;}
.x8b_c00492{left:179.400000px;}
.xbc_c00492{left:180.600000px;}
.x102_c00492{left:181.650000px;}
.xd7_c00492{left:184.500000px;}
.x5b_c00492{left:185.700000px;}
.x22_c00492{left:188.250000px;}
.x2f_c00492{left:190.950000px;}
.x68_c00492{left:192.750000px;}
.x74_c00492{left:193.800000px;}
.xe5_c00492{left:195.900000px;}
.x3d_c00492{left:198.300000px;}
.x12b_c00492{left:200.100000px;}
.xfc_c00492{left:202.650000px;}
.xde_c00492{left:204.150000px;}
.x155_c00492{left:205.500000px;}
.x11b_c00492{left:207.150000px;}
.x5_c00492{left:208.800000px;}
.x23_c00492{left:210.150000px;}
.x120_c00492{left:211.950000px;}
.x95_c00492{left:213.900000px;}
.x10d_c00492{left:215.400000px;}
.x10_c00492{left:217.650000px;}
.xf1_c00492{left:220.950000px;}
.x50_c00492{left:222.600000px;}
.x13c_c00492{left:223.950000px;}
.x8c_c00492{left:225.450000px;}
.xfd_c00492{left:227.100000px;}
.x148_c00492{left:229.200000px;}
.x24_c00492{left:230.700000px;}
.x69_c00492{left:233.100000px;}
.x11c_c00492{left:235.200000px;}
.xf2_c00492{left:236.850000px;}
.x126_c00492{left:238.350000px;}
.xe6_c00492{left:239.850000px;}
.x75_c00492{left:242.400000px;}
.x99_c00492{left:243.750000px;}
.x1d_c00492{left:244.950000px;}
.x114_c00492{left:246.600000px;}
.x5c_c00492{left:250.800000px;}
.xbd_c00492{left:251.850000px;}
.x115_c00492{left:253.500000px;}
.x14c_c00492{left:254.850000px;}
.xfe_c00492{left:256.950000px;}
.x6a_c00492{left:259.350000px;}
.x6_c00492{left:261.000000px;}
.x10e_c00492{left:262.950000px;}
.x30_c00492{left:265.500000px;}
.xbe_c00492{left:266.700000px;}
.x13d_c00492{left:268.950000px;}
.x25_c00492{left:270.300000px;}
.x3e_c00492{left:271.800000px;}
.x14d_c00492{left:273.150000px;}
.x5d_c00492{left:274.200000px;}
.x116_c00492{left:275.400000px;}
.xd8_c00492{left:277.050000px;}
.x12c_c00492{left:279.750000px;}
.x7_c00492{left:281.550000px;}
.x149_c00492{left:282.900000px;}
.x31_c00492{left:285.000000px;}
.x3f_c00492{left:288.000000px;}
.xd3_c00492{left:289.050000px;}
.xf3_c00492{left:290.850000px;}
.x107_c00492{left:292.800000px;}
.x1e_c00492{left:296.400000px;}
.x6b_c00492{left:297.900000px;}
.x26_c00492{left:299.100000px;}
.x103_c00492{left:300.450000px;}
.x127_c00492{left:302.400000px;}
.x14e_c00492{left:303.450000px;}
.x11_c00492{left:306.150000px;}
.x40_c00492{left:308.550000px;}
.x5e_c00492{left:310.200000px;}
.xd9_c00492{left:313.350000px;}
.x32_c00492{left:314.850000px;}
.x10f_c00492{left:316.650000px;}
.xb1_c00492{left:318.000000px;}
.x1_c00492{left:319.650000px;}
.x121_c00492{left:321.300000px;}
.x51_c00492{left:323.400000px;}
.x76_c00492{left:325.200000px;}
.x117_c00492{left:326.550000px;}
.xe1_c00492{left:327.600000px;}
.x8_c00492{left:330.450000px;}
.x33_c00492{left:332.850000px;}
.x142_c00492{left:333.900000px;}
.xec_c00492{left:336.000000px;}
.x12_c00492{left:337.800000px;}
.xc8_c00492{left:340.350000px;}
.x11e_c00492{left:342.600000px;}
.x80_c00492{left:343.950000px;}
.x12e_c00492{left:345.450000px;}
.xd4_c00492{left:347.100000px;}
.xbf_c00492{left:348.300000px;}
.xc9_c00492{left:351.450000px;}
.x13_c00492{left:354.000000px;}
.xe2_c00492{left:355.350000px;}
.x41_c00492{left:358.200000px;}
.x5f_c00492{left:359.550000px;}
.x6c_c00492{left:361.650000px;}
.x52_c00492{left:365.100000px;}
.x104_c00492{left:366.450000px;}
.x156_c00492{left:368.250000px;}
.xed_c00492{left:370.950000px;}
.x146_c00492{left:372.600000px;}
.x9a_c00492{left:375.150000px;}
.xf4_c00492{left:376.800000px;}
.x150_c00492{left:378.750000px;}
.xb2_c00492{left:380.400000px;}
.x6d_c00492{left:382.200000px;}
.x42_c00492{left:384.450000px;}
.x8d_c00492{left:386.250000px;}
.xb4_c00492{left:388.500000px;}
.x13e_c00492{left:389.550000px;}
.x9_c00492{left:396.750000px;}
.x15a_c00492{left:398.400000px;}
.x105_c00492{left:400.650000px;}
.xb3_c00492{left:401.700000px;}
.x12d_c00492{left:402.900000px;}
.xee_c00492{left:410.250000px;}
.x6e_c00492{left:432.300000px;}
.x15d_c00492{left:439.800000px;}
.x34_c00492{left:444.750000px;}
.x77_c00492{left:449.400000px;}
.x60_c00492{left:451.050000px;}
.xa8_c00492{left:452.250000px;}
.xdf_c00492{left:453.300000px;}
.xff_c00492{left:454.350000px;}
.x14a_c00492{left:455.550000px;}
.x15b_c00492{left:457.050000px;}
.x14_c00492{left:458.700000px;}
.xa2_c00492{left:459.750000px;}
.x143_c00492{left:463.200000px;}
.x35_c00492{left:464.550000px;}
.xca_c00492{left:469.800000px;}
.xa4_c00492{left:472.650000px;}
.xd5_c00492{left:473.850000px;}
.x81_c00492{left:475.650000px;}
.xce_c00492{left:478.800000px;}
.x53_c00492{left:480.900000px;}
.x43_c00492{left:481.950000px;}
.x9b_c00492{left:483.900000px;}
.x132_c00492{left:484.950000px;}
.x78_c00492{left:487.200000px;}
.x8e_c00492{left:489.150000px;}
.xb5_c00492{left:490.650000px;}
.xda_c00492{left:498.000000px;}
.x54_c00492{left:499.650000px;}
.x85_c00492{left:502.350000px;}
.x96_c00492{left:504.450000px;}
.x44_c00492{left:506.100000px;}
.x91_c00492{left:508.800000px;}
.xac_c00492{left:510.750000px;}
.x15_c00492{left:512.400000px;}
.x55_c00492{left:514.350000px;}
.xc0_c00492{left:516.900000px;}
.xf5_c00492{left:518.550000px;}
.x9c_c00492{left:520.650000px;}
.x27_c00492{left:524.100000px;}
.x61_c00492{left:525.150000px;}
.x133_c00492{left:526.800000px;}
.xe7_c00492{left:529.050000px;}
.x118_c00492{left:530.550000px;}
.x15c_c00492{left:532.650000px;}
.x110_c00492{left:534.450000px;}
.xcb_c00492{left:536.400000px;}
.xb6_c00492{left:537.450000px;}
.x13f_c00492{left:540.000000px;}
.x6f_c00492{left:541.350000px;}
.x28_c00492{left:542.400000px;}
.x108_c00492{left:543.750000px;}
.x79_c00492{left:546.300000px;}
.xa_c00492{left:548.250000px;}
.x140_c00492{left:550.050000px;}
.x45_c00492{left:552.600000px;}
.xf8_c00492{left:554.400000px;}
.x29_c00492{left:555.750000px;}
.x100_c00492{left:558.450000px;}
.x36_c00492{left:560.400000px;}
.xdb_c00492{left:562.500000px;}
.x16_c00492{left:563.550000px;}
.xc1_c00492{left:565.500000px;}
.x56_c00492{left:567.300000px;}
.x9d_c00492{left:569.550000px;}
.x92_c00492{left:571.500000px;}
.x82_c00492{left:572.550000px;}
.x46_c00492{left:574.200000px;}
.x7a_c00492{left:576.900000px;}
.x37_c00492{left:578.400000px;}
.x128_c00492{left:580.650000px;}
.x47_c00492{left:582.150000px;}
.xa9_c00492{left:583.350000px;}
.x144_c00492{left:584.400000px;}
.xa5_c00492{left:585.750000px;}
.xad_c00492{left:587.400000px;}
.x48_c00492{left:589.050000px;}
.x109_c00492{left:590.550000px;}
.x2a_c00492{left:592.800000px;}
.x8f_c00492{left:595.050000px;}
.x49_c00492{left:596.550000px;}
.x7b_c00492{left:598.800000px;}
.x101_c00492{left:600.600000px;}
.x11f_c00492{left:601.800000px;}
.x4a_c00492{left:603.750000px;}
.xe3_c00492{left:605.250000px;}
.x141_c00492{left:607.650000px;}
.x38_c00492{left:610.050000px;}
.xc5_c00492{left:611.550000px;}
.x134_c00492{left:613.500000px;}
.x10a_c00492{left:616.500000px;}
.x57_c00492{left:617.700000px;}
.xf0_c00492{left:621.300000px;}
.x157_c00492{left:622.350000px;}
.x137_c00492{left:623.400000px;}
.x58_c00492{left:624.900000px;}
.x86_c00492{left:625.950000px;}
.xc2_c00492{left:627.000000px;}
.xdc_c00492{left:628.350000px;}
.x12f_c00492{left:630.000000px;}
.xb7_c00492{left:631.350000px;}
.x17_c00492{left:632.700000px;}
.x39_c00492{left:634.200000px;}
.x2b_c00492{left:636.300000px;}
.xaa_c00492{left:639.450000px;}
.x70_c00492{left:640.950000px;}
.x111_c00492{left:642.750000px;}
.xa6_c00492{left:644.100000px;}
.xc6_c00492{left:645.750000px;}
.x18_c00492{left:647.100000px;}
.x7c_c00492{left:649.500000px;}
.xe8_c00492{left:651.150000px;}
.x2c_c00492{left:652.800000px;}
.x62_c00492{left:654.750000px;}
.xef_c00492{left:656.550000px;}
.x71_c00492{left:658.950000px;}
.x87_c00492{left:660.150000px;}
.x19_c00492{left:662.250000px;}
.x9e_c00492{left:667.500000px;}
.x4b_c00492{left:669.300000px;}
.xcf_c00492{left:670.950000px;}
.x63_c00492{left:672.450000px;}
.x83_c00492{left:674.400000px;}
.x4c_c00492{left:676.500000px;}
.xae_c00492{left:677.700000px;}
.x10b_c00492{left:679.500000px;}
.x14f_c00492{left:681.450000px;}
.xc3_c00492{left:682.500000px;}
.x138_c00492{left:684.600000px;}
.x119_c00492{left:687.300000px;}
.x9f_c00492{left:688.350000px;}
.xb_c00492{left:689.400000px;}
.x135_c00492{left:690.600000px;}
.xdd_c00492{left:693.150000px;}
.x3a_c00492{left:695.100000px;}
.x1a_c00492{left:696.150000px;}
.xcc_c00492{left:699.150000px;}
.xa7_c00492{left:700.650000px;}
.x7d_c00492{left:702.750000px;}
.xd6_c00492{left:705.450000px;}
.x93_c00492{left:707.850000px;}
.x122_c00492{left:708.900000px;}
.x84_c00492{left:710.700000px;}
.x11a_c00492{left:711.750000px;}
.xa3_c00492{left:712.800000px;}
.x147_c00492{left:713.850000px;}
.x152_c00492{left:715.350000px;}
.xd0_c00492{left:717.000000px;}
.x4d_c00492{left:718.650000px;}
.xc_c00492{left:720.000000px;}
.x129_c00492{left:721.200000px;}
.xa0_c00492{left:722.550000px;}
.x1f_c00492{left:723.750000px;}
.x139_c00492{left:724.950000px;}
.x1b_c00492{left:726.000000px;}
.xaf_c00492{left:727.350000px;}
.xd1_c00492{left:728.850000px;}
.xc7_c00492{left:730.950000px;}
.xcd_c00492{left:733.050000px;}
.x64_c00492{left:734.400000px;}
.x88_c00492{left:735.450000px;}
.xe9_c00492{left:738.150000px;}
.x158_c00492{left:739.950000px;}
.x2_c00492{left:741.150000px;}
.x72_c00492{left:742.500000px;}
.x7e_c00492{left:744.150000px;}
.x10c_c00492{left:746.100000px;}
.xb8_c00492{left:747.300000px;}
.x145_c00492{left:749.250000px;}
.xab_c00492{left:751.950000px;}
.xd_c00492{left:753.450000px;}
.x65_c00492{left:755.700000px;}
.xc4_c00492{left:758.100000px;}
.xea_c00492{left:760.050000px;}
.xf9_c00492{left:766.500000px;}
.x13b_c00492{left:767.850000px;}
.x153_c00492{left:769.050000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls2_c00492{letter-spacing:0.000000pt;}
.ls0_c00492{letter-spacing:37.222222pt;}
.ls1_c00492{letter-spacing:40.962751pt;}
.ws8_c00492{word-spacing:-70.296084pt;}
.ws2_c00492{word-spacing:-63.888889pt;}
.ws1b_c00492{word-spacing:-11.043024pt;}
.ws1a_c00492{word-spacing:-8.952381pt;}
.ws19_c00492{word-spacing:-8.535662pt;}
.wsf_c00492{word-spacing:-6.127530pt;}
.ws15_c00492{word-spacing:-5.800743pt;}
.ws13_c00492{word-spacing:-5.180516pt;}
.wse_c00492{word-spacing:-1.699346pt;}
.ws17_c00492{word-spacing:-1.153153pt;}
.ws1e_c00492{word-spacing:0.000000pt;}
.ws9_c00492{word-spacing:0.048930pt;}
.ws18_c00492{word-spacing:0.984127pt;}
.ws16_c00492{word-spacing:1.333333pt;}
.ws0_c00492{word-spacing:2.154882pt;}
.ws11_c00492{word-spacing:10.555556pt;}
.ws6_c00492{word-spacing:14.685769pt;}
.wsd_c00492{word-spacing:16.941599pt;}
.ws10_c00492{word-spacing:19.682540pt;}
.ws4_c00492{word-spacing:21.770492pt;}
.ws1_c00492{word-spacing:22.857143pt;}
.wsb_c00492{word-spacing:24.220807pt;}
.ws5_c00492{word-spacing:25.267760pt;}
.wsa_c00492{word-spacing:28.765027pt;}
.ws12_c00492{word-spacing:57.777778pt;}
.ws7_c00492{word-spacing:58.666667pt;}
.ws3_c00492{word-spacing:59.851852pt;}
.ws14_c00492{word-spacing:159.629630pt;}
.wsc_c00492{word-spacing:276.571429pt;}
.ws1c_c00492{word-spacing:1383.174603pt;}
.ws1d_c00492{word-spacing:1435.480916pt;}
._4_c00492{margin-left:-40.962751pt;}
._0_c00492{margin-left:-37.222222pt;}
._2_c00492{width:51.103825pt;}
._5_c00492{width:52.698413pt;}
._1_c00492{width:58.098361pt;}
._3_c00492{width:63.344262pt;}
.fs7_c00492{font-size:21.333333pt;}
.fs4_c00492{font-size:26.666667pt;}
.fs5_c00492{font-size:32.000000pt;}
.fs3_c00492{font-size:48.000000pt;}
.fs2_c00492{font-size:53.333333pt;}
.fs1_c00492{font-size:58.666667pt;}
.fs6_c00492{font-size:64.000000pt;}
.fs0_c00492{font-size:85.333333pt;}
.y0_c00492{bottom:0.000000pt;}
.y4a_c00492{bottom:5.866667pt;}
.y49_c00492{bottom:7.733333pt;}
.y48_c00492{bottom:153.600000pt;}
.y47_c00492{bottom:169.866667pt;}
.y46_c00492{bottom:185.866667pt;}
.y45_c00492{bottom:201.600000pt;}
.y44_c00492{bottom:208.000000pt;}
.y43_c00492{bottom:220.800000pt;}
.y42_c00492{bottom:233.600000pt;}
.y41_c00492{bottom:249.333333pt;}
.y40_c00492{bottom:257.866667pt;}
.y3f_c00492{bottom:264.933333pt;}
.y3e_c00492{bottom:273.200000pt;}
.y3d_c00492{bottom:280.933333pt;}
.y3c_c00492{bottom:284.133333pt;}
.y3b_c00492{bottom:296.933333pt;}
.y3a_c00492{bottom:312.000000pt;}
.y39_c00492{bottom:328.000000pt;}
.y38_c00492{bottom:335.066667pt;}
.y37_c00492{bottom:343.733333pt;}
.y36_c00492{bottom:347.866667pt;}
.y35_c00492{bottom:360.266667pt;}
.y34_c00492{bottom:374.933333pt;}
.y33_c00492{bottom:390.666667pt;}
.y32_c00492{bottom:396.800000pt;}
.y31_c00492{bottom:398.400000pt;}
.y30_c00492{bottom:406.400000pt;}
.y2f_c00492{bottom:422.400000pt;}
.y2e_c00492{bottom:439.600000pt;}
.y2d_c00492{bottom:454.000000pt;}
.y2c_c00492{bottom:469.733333pt;}
.y2b_c00492{bottom:491.466667pt;}
.y2a_c00492{bottom:504.266667pt;}
.y28_c00492{bottom:517.066667pt;}
.y27_c00492{bottom:522.000000pt;}
.y26_c00492{bottom:538.266667pt;}
.y25_c00492{bottom:548.533333pt;}
.y24_c00492{bottom:553.866667pt;}
.y23_c00492{bottom:569.600000pt;}
.y22_c00492{bottom:585.333333pt;}
.y21_c00492{bottom:600.933333pt;}
.y20_c00492{bottom:616.666667pt;}
.y1f_c00492{bottom:632.266667pt;}
.y1e_c00492{bottom:643.200000pt;}
.y1d_c00492{bottom:667.600000pt;}
.y1c_c00492{bottom:674.933333pt;}
.y1b_c00492{bottom:694.133333pt;}
.y1a_c00492{bottom:714.933333pt;}
.y19_c00492{bottom:722.266667pt;}
.y18_c00492{bottom:730.933333pt;}
.y17_c00492{bottom:738.000000pt;}
.y29_c00492{bottom:746.533333pt;}
.y16_c00492{bottom:754.000000pt;}
.y15_c00492{bottom:764.533333pt;}
.y14_c00492{bottom:769.600000pt;}
.y13_c00492{bottom:785.333333pt;}
.y12_c00492{bottom:801.333333pt;}
.y11_c00492{bottom:808.000000pt;}
.y10_c00492{bottom:816.933333pt;}
.yf_c00492{bottom:832.666667pt;}
.ye_c00492{bottom:848.533333pt;}
.yd_c00492{bottom:855.200000pt;}
.yc_c00492{bottom:866.666667pt;}
.yb_c00492{bottom:879.733333pt;}
.ya_c00492{bottom:891.866667pt;}
.y9_c00492{bottom:907.466667pt;}
.y8_c00492{bottom:915.466667pt;}
.y7_c00492{bottom:926.666667pt;}
.y6_c00492{bottom:940.800000pt;}
.y5_c00492{bottom:957.733333pt;}
.y4_c00492{bottom:965.466667pt;}
.y3_c00492{bottom:978.000000pt;}
.y2_c00492{bottom:994.266667pt;}
.y1_c00492{bottom:1014.400000pt;}
.h9_c00492{height:21.333333pt;}
.h6_c00492{height:26.666667pt;}
.h7_c00492{height:32.000000pt;}
.h5_c00492{height:48.000000pt;}
.h4_c00492{height:53.333333pt;}
.h3_c00492{height:58.666667pt;}
.h8_c00492{height:64.000000pt;}
.h2_c00492{height:85.333333pt;}
.h1_c00492{height:1128.000000pt;}
.h0_c00492{height:1128.319987pt;}
.w0_c00492{width:851.840007pt;}
.w1_c00492{width:852.000000pt;}
.x0_c00492{left:0.000000pt;}
.x2d_c00492{left:67.333333pt;}
.x89_c00492{left:68.533333pt;}
.xd2_c00492{left:70.400000pt;}
.xfb_c00492{left:72.000000pt;}
.x123_c00492{left:73.333333pt;}
.x14b_c00492{left:74.800000pt;}
.x3_c00492{left:83.200000pt;}
.x59_c00492{left:84.133333pt;}
.xb9_c00492{left:85.733333pt;}
.x97_c00492{left:86.666667pt;}
.x151_c00492{left:87.733333pt;}
.xa1_c00492{left:90.533333pt;}
.x94_c00492{left:91.600000pt;}
.x12a_c00492{left:93.733333pt;}
.x154_c00492{left:95.733333pt;}
.x131_c00492{left:96.666667pt;}
.x112_c00492{left:97.733333pt;}
.x3b_c00492{left:98.800000pt;}
.x66_c00492{left:100.533333pt;}
.xfa_c00492{left:102.133333pt;}
.x90_c00492{left:103.600000pt;}
.x159_c00492{left:104.666667pt;}
.x4e_c00492{left:106.000000pt;}
.x7f_c00492{left:107.600000pt;}
.x106_c00492{left:108.533333pt;}
.x98_c00492{left:109.733333pt;}
.x124_c00492{left:112.400000pt;}
.xe_c00492{left:114.133333pt;}
.x73_c00492{left:115.600000pt;}
.xba_c00492{left:118.000000pt;}
.x130_c00492{left:119.200000pt;}
.x2e_c00492{left:120.800000pt;}
.xf6_c00492{left:121.733333pt;}
.x13a_c00492{left:124.800000pt;}
.x20_c00492{left:126.000000pt;}
.xe0_c00492{left:127.066667pt;}
.x11d_c00492{left:128.266667pt;}
.x8a_c00492{left:129.333333pt;}
.x4_c00492{left:132.133333pt;}
.xbb_c00492{left:133.333333pt;}
.x67_c00492{left:135.466667pt;}
.x5a_c00492{left:136.933333pt;}
.xe4_c00492{left:138.266667pt;}
.xf7_c00492{left:140.933333pt;}
.x21_c00492{left:142.666667pt;}
.xf_c00492{left:145.466667pt;}
.x4f_c00492{left:147.866667pt;}
.xeb_c00492{left:148.933333pt;}
.x1c_c00492{left:150.266667pt;}
.x125_c00492{left:152.000000pt;}
.x136_c00492{left:153.466667pt;}
.x113_c00492{left:154.400000pt;}
.x3c_c00492{left:157.333333pt;}
.xb0_c00492{left:158.533333pt;}
.x8b_c00492{left:159.466667pt;}
.xbc_c00492{left:160.533333pt;}
.x102_c00492{left:161.466667pt;}
.xd7_c00492{left:164.000000pt;}
.x5b_c00492{left:165.066667pt;}
.x22_c00492{left:167.333333pt;}
.x2f_c00492{left:169.733333pt;}
.x68_c00492{left:171.333333pt;}
.x74_c00492{left:172.266667pt;}
.xe5_c00492{left:174.133333pt;}
.x3d_c00492{left:176.266667pt;}
.x12b_c00492{left:177.866667pt;}
.xfc_c00492{left:180.133333pt;}
.xde_c00492{left:181.466667pt;}
.x155_c00492{left:182.666667pt;}
.x11b_c00492{left:184.133333pt;}
.x5_c00492{left:185.600000pt;}
.x23_c00492{left:186.800000pt;}
.x120_c00492{left:188.400000pt;}
.x95_c00492{left:190.133333pt;}
.x10d_c00492{left:191.466667pt;}
.x10_c00492{left:193.466667pt;}
.xf1_c00492{left:196.400000pt;}
.x50_c00492{left:197.866667pt;}
.x13c_c00492{left:199.066667pt;}
.x8c_c00492{left:200.400000pt;}
.xfd_c00492{left:201.866667pt;}
.x148_c00492{left:203.733333pt;}
.x24_c00492{left:205.066667pt;}
.x69_c00492{left:207.200000pt;}
.x11c_c00492{left:209.066667pt;}
.xf2_c00492{left:210.533333pt;}
.x126_c00492{left:211.866667pt;}
.xe6_c00492{left:213.200000pt;}
.x75_c00492{left:215.466667pt;}
.x99_c00492{left:216.666667pt;}
.x1d_c00492{left:217.733333pt;}
.x114_c00492{left:219.200000pt;}
.x5c_c00492{left:222.933333pt;}
.xbd_c00492{left:223.866667pt;}
.x115_c00492{left:225.333333pt;}
.x14c_c00492{left:226.533333pt;}
.xfe_c00492{left:228.400000pt;}
.x6a_c00492{left:230.533333pt;}
.x6_c00492{left:232.000000pt;}
.x10e_c00492{left:233.733333pt;}
.x30_c00492{left:236.000000pt;}
.xbe_c00492{left:237.066667pt;}
.x13d_c00492{left:239.066667pt;}
.x25_c00492{left:240.266667pt;}
.x3e_c00492{left:241.600000pt;}
.x14d_c00492{left:242.800000pt;}
.x5d_c00492{left:243.733333pt;}
.x116_c00492{left:244.800000pt;}
.xd8_c00492{left:246.266667pt;}
.x12c_c00492{left:248.666667pt;}
.x7_c00492{left:250.266667pt;}
.x149_c00492{left:251.466667pt;}
.x31_c00492{left:253.333333pt;}
.x3f_c00492{left:256.000000pt;}
.xd3_c00492{left:256.933333pt;}
.xf3_c00492{left:258.533333pt;}
.x107_c00492{left:260.266667pt;}
.x1e_c00492{left:263.466667pt;}
.x6b_c00492{left:264.800000pt;}
.x26_c00492{left:265.866667pt;}
.x103_c00492{left:267.066667pt;}
.x127_c00492{left:268.800000pt;}
.x14e_c00492{left:269.733333pt;}
.x11_c00492{left:272.133333pt;}
.x40_c00492{left:274.266667pt;}
.x5e_c00492{left:275.733333pt;}
.xd9_c00492{left:278.533333pt;}
.x32_c00492{left:279.866667pt;}
.x10f_c00492{left:281.466667pt;}
.xb1_c00492{left:282.666667pt;}
.x1_c00492{left:284.133333pt;}
.x121_c00492{left:285.600000pt;}
.x51_c00492{left:287.466667pt;}
.x76_c00492{left:289.066667pt;}
.x117_c00492{left:290.266667pt;}
.xe1_c00492{left:291.200000pt;}
.x8_c00492{left:293.733333pt;}
.x33_c00492{left:295.866667pt;}
.x142_c00492{left:296.800000pt;}
.xec_c00492{left:298.666667pt;}
.x12_c00492{left:300.266667pt;}
.xc8_c00492{left:302.533333pt;}
.x11e_c00492{left:304.533333pt;}
.x80_c00492{left:305.733333pt;}
.x12e_c00492{left:307.066667pt;}
.xd4_c00492{left:308.533333pt;}
.xbf_c00492{left:309.600000pt;}
.xc9_c00492{left:312.400000pt;}
.x13_c00492{left:314.666667pt;}
.xe2_c00492{left:315.866667pt;}
.x41_c00492{left:318.400000pt;}
.x5f_c00492{left:319.600000pt;}
.x6c_c00492{left:321.466667pt;}
.x52_c00492{left:324.533333pt;}
.x104_c00492{left:325.733333pt;}
.x156_c00492{left:327.333333pt;}
.xed_c00492{left:329.733333pt;}
.x146_c00492{left:331.200000pt;}
.x9a_c00492{left:333.466667pt;}
.xf4_c00492{left:334.933333pt;}
.x150_c00492{left:336.666667pt;}
.xb2_c00492{left:338.133333pt;}
.x6d_c00492{left:339.733333pt;}
.x42_c00492{left:341.733333pt;}
.x8d_c00492{left:343.333333pt;}
.xb4_c00492{left:345.333333pt;}
.x13e_c00492{left:346.266667pt;}
.x9_c00492{left:352.666667pt;}
.x15a_c00492{left:354.133333pt;}
.x105_c00492{left:356.133333pt;}
.xb3_c00492{left:357.066667pt;}
.x12d_c00492{left:358.133333pt;}
.xee_c00492{left:364.666667pt;}
.x6e_c00492{left:384.266667pt;}
.x15d_c00492{left:390.933333pt;}
.x34_c00492{left:395.333333pt;}
.x77_c00492{left:399.466667pt;}
.x60_c00492{left:400.933333pt;}
.xa8_c00492{left:402.000000pt;}
.xdf_c00492{left:402.933333pt;}
.xff_c00492{left:403.866667pt;}
.x14a_c00492{left:404.933333pt;}
.x15b_c00492{left:406.266667pt;}
.x14_c00492{left:407.733333pt;}
.xa2_c00492{left:408.666667pt;}
.x143_c00492{left:411.733333pt;}
.x35_c00492{left:412.933333pt;}
.xca_c00492{left:417.600000pt;}
.xa4_c00492{left:420.133333pt;}
.xd5_c00492{left:421.200000pt;}
.x81_c00492{left:422.800000pt;}
.xce_c00492{left:425.600000pt;}
.x53_c00492{left:427.466667pt;}
.x43_c00492{left:428.400000pt;}
.x9b_c00492{left:430.133333pt;}
.x132_c00492{left:431.066667pt;}
.x78_c00492{left:433.066667pt;}
.x8e_c00492{left:434.800000pt;}
.xb5_c00492{left:436.133333pt;}
.xda_c00492{left:442.666667pt;}
.x54_c00492{left:444.133333pt;}
.x85_c00492{left:446.533333pt;}
.x96_c00492{left:448.400000pt;}
.x44_c00492{left:449.866667pt;}
.x91_c00492{left:452.266667pt;}
.xac_c00492{left:454.000000pt;}
.x15_c00492{left:455.466667pt;}
.x55_c00492{left:457.200000pt;}
.xc0_c00492{left:459.466667pt;}
.xf5_c00492{left:460.933333pt;}
.x9c_c00492{left:462.800000pt;}
.x27_c00492{left:465.866667pt;}
.x61_c00492{left:466.800000pt;}
.x133_c00492{left:468.266667pt;}
.xe7_c00492{left:470.266667pt;}
.x118_c00492{left:471.600000pt;}
.x15c_c00492{left:473.466667pt;}
.x110_c00492{left:475.066667pt;}
.xcb_c00492{left:476.800000pt;}
.xb6_c00492{left:477.733333pt;}
.x13f_c00492{left:480.000000pt;}
.x6f_c00492{left:481.200000pt;}
.x28_c00492{left:482.133333pt;}
.x108_c00492{left:483.333333pt;}
.x79_c00492{left:485.600000pt;}
.xa_c00492{left:487.333333pt;}
.x140_c00492{left:488.933333pt;}
.x45_c00492{left:491.200000pt;}
.xf8_c00492{left:492.800000pt;}
.x29_c00492{left:494.000000pt;}
.x100_c00492{left:496.400000pt;}
.x36_c00492{left:498.133333pt;}
.xdb_c00492{left:500.000000pt;}
.x16_c00492{left:500.933333pt;}
.xc1_c00492{left:502.666667pt;}
.x56_c00492{left:504.266667pt;}
.x9d_c00492{left:506.266667pt;}
.x92_c00492{left:508.000000pt;}
.x82_c00492{left:508.933333pt;}
.x46_c00492{left:510.400000pt;}
.x7a_c00492{left:512.800000pt;}
.x37_c00492{left:514.133333pt;}
.x128_c00492{left:516.133333pt;}
.x47_c00492{left:517.466667pt;}
.xa9_c00492{left:518.533333pt;}
.x144_c00492{left:519.466667pt;}
.xa5_c00492{left:520.666667pt;}
.xad_c00492{left:522.133333pt;}
.x48_c00492{left:523.600000pt;}
.x109_c00492{left:524.933333pt;}
.x2a_c00492{left:526.933333pt;}
.x8f_c00492{left:528.933333pt;}
.x49_c00492{left:530.266667pt;}
.x7b_c00492{left:532.266667pt;}
.x101_c00492{left:533.866667pt;}
.x11f_c00492{left:534.933333pt;}
.x4a_c00492{left:536.666667pt;}
.xe3_c00492{left:538.000000pt;}
.x141_c00492{left:540.133333pt;}
.x38_c00492{left:542.266667pt;}
.xc5_c00492{left:543.600000pt;}
.x134_c00492{left:545.333333pt;}
.x10a_c00492{left:548.000000pt;}
.x57_c00492{left:549.066667pt;}
.xf0_c00492{left:552.266667pt;}
.x157_c00492{left:553.200000pt;}
.x137_c00492{left:554.133333pt;}
.x58_c00492{left:555.466667pt;}
.x86_c00492{left:556.400000pt;}
.xc2_c00492{left:557.333333pt;}
.xdc_c00492{left:558.533333pt;}
.x12f_c00492{left:560.000000pt;}
.xb7_c00492{left:561.200000pt;}
.x17_c00492{left:562.400000pt;}
.x39_c00492{left:563.733333pt;}
.x2b_c00492{left:565.600000pt;}
.xaa_c00492{left:568.400000pt;}
.x70_c00492{left:569.733333pt;}
.x111_c00492{left:571.333333pt;}
.xa6_c00492{left:572.533333pt;}
.xc6_c00492{left:574.000000pt;}
.x18_c00492{left:575.200000pt;}
.x7c_c00492{left:577.333333pt;}
.xe8_c00492{left:578.800000pt;}
.x2c_c00492{left:580.266667pt;}
.x62_c00492{left:582.000000pt;}
.xef_c00492{left:583.600000pt;}
.x71_c00492{left:585.733333pt;}
.x87_c00492{left:586.800000pt;}
.x19_c00492{left:588.666667pt;}
.x9e_c00492{left:593.333333pt;}
.x4b_c00492{left:594.933333pt;}
.xcf_c00492{left:596.400000pt;}
.x63_c00492{left:597.733333pt;}
.x83_c00492{left:599.466667pt;}
.x4c_c00492{left:601.333333pt;}
.xae_c00492{left:602.400000pt;}
.x10b_c00492{left:604.000000pt;}
.x14f_c00492{left:605.733333pt;}
.xc3_c00492{left:606.666667pt;}
.x138_c00492{left:608.533333pt;}
.x119_c00492{left:610.933333pt;}
.x9f_c00492{left:611.866667pt;}
.xb_c00492{left:612.800000pt;}
.x135_c00492{left:613.866667pt;}
.xdd_c00492{left:616.133333pt;}
.x3a_c00492{left:617.866667pt;}
.x1a_c00492{left:618.800000pt;}
.xcc_c00492{left:621.466667pt;}
.xa7_c00492{left:622.800000pt;}
.x7d_c00492{left:624.666667pt;}
.xd6_c00492{left:627.066667pt;}
.x93_c00492{left:629.200000pt;}
.x122_c00492{left:630.133333pt;}
.x84_c00492{left:631.733333pt;}
.x11a_c00492{left:632.666667pt;}
.xa3_c00492{left:633.600000pt;}
.x147_c00492{left:634.533333pt;}
.x152_c00492{left:635.866667pt;}
.xd0_c00492{left:637.333333pt;}
.x4d_c00492{left:638.800000pt;}
.xc_c00492{left:640.000000pt;}
.x129_c00492{left:641.066667pt;}
.xa0_c00492{left:642.266667pt;}
.x1f_c00492{left:643.333333pt;}
.x139_c00492{left:644.400000pt;}
.x1b_c00492{left:645.333333pt;}
.xaf_c00492{left:646.533333pt;}
.xd1_c00492{left:647.866667pt;}
.xc7_c00492{left:649.733333pt;}
.xcd_c00492{left:651.600000pt;}
.x64_c00492{left:652.800000pt;}
.x88_c00492{left:653.733333pt;}
.xe9_c00492{left:656.133333pt;}
.x158_c00492{left:657.733333pt;}
.x2_c00492{left:658.800000pt;}
.x72_c00492{left:660.000000pt;}
.x7e_c00492{left:661.466667pt;}
.x10c_c00492{left:663.200000pt;}
.xb8_c00492{left:664.266667pt;}
.x145_c00492{left:666.000000pt;}
.xab_c00492{left:668.400000pt;}
.xd_c00492{left:669.733333pt;}
.x65_c00492{left:671.733333pt;}
.xc4_c00492{left:673.866667pt;}
.xea_c00492{left:675.600000pt;}
.xf9_c00492{left:681.333333pt;}
.x13b_c00492{left:682.533333pt;}
.x153_c00492{left:683.600000pt;}
}





/* 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_c00493 {
    display:none;
  }
  .loading-indicator_c00493.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00493 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_c00493 { 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_c00493" -> "#page-container .classname_c00493")
 */
.pf_c00493 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00493 { /* 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_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00493 { /* 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_c00493 { /* 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_c00493 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00493 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00493 {overflow:visible;}
  }
}
.c_c00493 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00493 { /* 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_c00493:after { /* webkit #35443 */
  content: '';
}
.t_c00493:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00493 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 */
}
.__c00493 { /* 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_c00493 { /* info for Javascript */
  display:none;
}
.l_c00493 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00493 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00493 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00493: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_c00493 {
    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_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00493.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_c00493 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00493{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00493;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.000000;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;}
.m44_c00493{transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);}
.m39_c00493{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00493{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00493{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m24_c00493{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00493{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00493{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00493{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00493{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00493{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mac_c00493{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00493{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5_c00493{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.md7_c00493{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00493{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00493{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00493{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m70_c00493{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00493{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00493{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m68_c00493{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00493{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00493{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m110_c00493{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m114_c00493{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00493{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00493{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.med_c00493{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.mad_c00493{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m89_c00493{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m94_c00493{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00493{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00493{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m62_c00493{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m87_c00493{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00493{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00493{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00493{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mae_c00493{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00493{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00493{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m50_c00493{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m30_c00493{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m111_c00493{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00493{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m99_c00493{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00493{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m54_c00493{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00493{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m42_c00493{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00493{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00493{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md5_c00493{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m57_c00493{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m14_c00493{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m75_c00493{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00493{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mec_c00493{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00493{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m40_c00493{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m69_c00493{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m73_c00493{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00493{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m29_c00493{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00493{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00493{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00493{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m93_c00493{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m66_c00493{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00493{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m61_c00493{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00493{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3_c00493{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00493{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00493{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mce_c00493{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.me3_c00493{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.ma_c00493{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me6_c00493{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00493{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m53_c00493{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m115_c00493{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m105_c00493{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m77_c00493{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.md8_c00493{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m43_c00493{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me7_c00493{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m22_c00493{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m11_c00493{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00493{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m33_c00493{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mab_c00493{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m59_c00493{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m23_c00493{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00493{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00493{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.me1_c00493{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mda_c00493{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m9_c00493{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m63_c00493{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m74_c00493{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m41_c00493{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mef_c00493{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m60_c00493{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00493{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mff_c00493{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m28_c00493{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mee_c00493{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m47_c00493{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.md_c00493{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m31_c00493{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m37_c00493{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00493{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00493{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00493{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00493{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00493{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.me_c00493{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00493{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf_c00493{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m86_c00493{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md6_c00493{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mde_c00493{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m55_c00493{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m72_c00493{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00493{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00493{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00493{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m4_c00493{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m35_c00493{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m48_c00493{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00493{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00493{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00493{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m71_c00493{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m0_c00493{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mea_c00493{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00493{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m21_c00493{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m98_c00493{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00493{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00493{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb_c00493{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00493{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m52_c00493{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m113_c00493{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00493{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m17_c00493{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m101_c00493{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00493{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me2_c00493{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00493{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00493{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00493{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7_c00493{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me4_c00493{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00493{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m32_c00493{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m26_c00493{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m95_c00493{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m65_c00493{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00493{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m82_c00493{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m49_c00493{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m84_c00493{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m20_c00493{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m10_c00493{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00493{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m8_c00493{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m46_c00493{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6_c00493{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m51_c00493{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m83_c00493{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00493{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m56_c00493{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00493{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m85_c00493{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m38_c00493{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00493{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m34_c00493{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00493{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00493{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00493{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m67_c00493{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00493{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00493{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00493{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00493{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m16_c00493{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m91_c00493{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00493{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m19_c00493{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00493{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m106_c00493{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00493{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me0_c00493{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00493{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00493{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00493{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m64_c00493{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.maf_c00493{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m25_c00493{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00493{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mc_c00493{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.maa_c00493{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m88_c00493{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m90_c00493{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md3_c00493{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m116_c00493{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00493{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md0_c00493{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00493{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00493{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m12_c00493{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00493{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00493{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m79_c00493{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md2_c00493{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m103_c00493{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m13_c00493{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00493{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00493{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00493{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m45_c00493{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m36_c00493{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00493{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.md9_c00493{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m102_c00493{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00493{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00493{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m27_c00493{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00493{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00493{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00493{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m58_c00493{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00493{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00493{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m104_c00493{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m107_c00493{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00493{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00493{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00493{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00493{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mca_c00493{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me5_c00493{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m96_c00493{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m78_c00493{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00493{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m118_c00493{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00493{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m76_c00493{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00493{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.me8_c00493{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00493{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00493{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m117_c00493{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m108_c00493{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.me9_c00493{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00493{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00493{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m80_c00493{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00493{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m112_c00493{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m92_c00493{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.md4_c00493{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00493{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m100_c00493{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m109_c00493{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m81_c00493{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.meb_c00493{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mba_c00493{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00493{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.md1_c00493{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m97_c00493{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00493{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00493{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00493{transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00493{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00493{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{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__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00493{word-spacing:-12.203647px;}
.wsb_c00493{word-spacing:-4.676856px;}
.wsa_c00493{word-spacing:-4.046512px;}
.wse_c00493{word-spacing:0.000000px;}
.ws0_c00493{word-spacing:4.375000px;}
.ws9_c00493{word-spacing:9.342105px;}
.ws1_c00493{word-spacing:10.190476px;}
.ws5_c00493{word-spacing:10.637002px;}
.ws2_c00493{word-spacing:18.936652px;}
.ws4_c00493{word-spacing:19.994638px;}
.ws6_c00493{word-spacing:22.142857px;}
.wsc_c00493{word-spacing:34.500000px;}
.ws7_c00493{word-spacing:65.000000px;}
.ws8_c00493{word-spacing:117.000000px;}
.ws3_c00493{word-spacing:166.785714px;}
._1_c00493{width:40.447307px;}
._0_c00493{width:47.473068px;}
._2_c00493{width:236.071429px;}
.fc0_c00493{color:transparent;}
.fs7_c00493{font-size:18.000000px;}
.fs5_c00493{font-size:30.000000px;}
.fs9_c00493{font-size:42.000000px;}
.fs8_c00493{font-size:48.000000px;}
.fs6_c00493{font-size:54.000000px;}
.fs4_c00493{font-size:60.000000px;}
.fs3_c00493{font-size:66.000000px;}
.fs2_c00493{font-size:72.000000px;}
.fs1_c00493{font-size:84.000000px;}
.fs0_c00493{font-size:96.000000px;}
.y0_c00493{bottom:0.000000px;}
.y70_c00493{bottom:190.050000px;}
.y39_c00493{bottom:193.650000px;}
.y6f_c00493{bottom:204.900000px;}
.y38_c00493{bottom:211.950000px;}
.y6e_c00493{bottom:220.350000px;}
.y37_c00493{bottom:229.650000px;}
.y6d_c00493{bottom:233.250000px;}
.y36_c00493{bottom:246.900000px;}
.y6c_c00493{bottom:247.650000px;}
.y6b_c00493{bottom:262.050000px;}
.y35_c00493{bottom:264.900000px;}
.y6a_c00493{bottom:276.450000px;}
.y34_c00493{bottom:282.600000px;}
.y69_c00493{bottom:290.850000px;}
.y33_c00493{bottom:299.850000px;}
.y68_c00493{bottom:305.250000px;}
.y32_c00493{bottom:308.850000px;}
.y31_c00493{bottom:317.550000px;}
.y67_c00493{bottom:319.950000px;}
.y66_c00493{bottom:334.050000px;}
.y30_c00493{bottom:335.100000px;}
.y65_c00493{bottom:348.450000px;}
.y2f_c00493{bottom:357.000000px;}
.y64_c00493{bottom:362.850000px;}
.y2e_c00493{bottom:371.100000px;}
.y63_c00493{bottom:376.950000px;}
.y3b_c00493{bottom:383.100000px;}
.y2d_c00493{bottom:384.450000px;}
.y2c_c00493{bottom:399.900000px;}
.y2b_c00493{bottom:413.250000px;}
.y62_c00493{bottom:422.700000px;}
.y2a_c00493{bottom:429.900000px;}
.y61_c00493{bottom:441.000000px;}
.y29_c00493{bottom:442.800000px;}
.y60_c00493{bottom:459.000000px;}
.y28_c00493{bottom:462.900000px;}
.y27_c00493{bottom:480.900000px;}
.y5f_c00493{bottom:485.250000px;}
.y26_c00493{bottom:498.900000px;}
.y5e_c00493{bottom:502.950000px;}
.y25_c00493{bottom:506.550000px;}
.y24_c00493{bottom:510.150000px;}
.y23_c00493{bottom:516.000000px;}
.y5d_c00493{bottom:528.000000px;}
.y22_c00493{bottom:533.700000px;}
.y3a_c00493{bottom:534.600000px;}
.y5c_c00493{bottom:546.000000px;}
.y21_c00493{bottom:551.400000px;}
.y5b_c00493{bottom:563.700000px;}
.y20_c00493{bottom:569.100000px;}
.y5a_c00493{bottom:581.400000px;}
.y1f_c00493{bottom:589.950000px;}
.y59_c00493{bottom:599.400000px;}
.y1e_c00493{bottom:608.700000px;}
.y58_c00493{bottom:620.700000px;}
.y1d_c00493{bottom:626.400000px;}
.y57_c00493{bottom:638.700000px;}
.y1c_c00493{bottom:644.400000px;}
.y56_c00493{bottom:656.400000px;}
.y1b_c00493{bottom:662.250000px;}
.y55_c00493{bottom:674.400000px;}
.y1a_c00493{bottom:679.950000px;}
.y54_c00493{bottom:692.400000px;}
.y19_c00493{bottom:697.950000px;}
.y53_c00493{bottom:710.100000px;}
.y18_c00493{bottom:715.650000px;}
.y52_c00493{bottom:728.100000px;}
.y17_c00493{bottom:737.700000px;}
.y51_c00493{bottom:745.800000px;}
.y16_c00493{bottom:763.500000px;}
.y50_c00493{bottom:763.800000px;}
.y4f_c00493{bottom:781.500000px;}
.y15_c00493{bottom:782.250000px;}
.y4e_c00493{bottom:799.500000px;}
.y14_c00493{bottom:800.250000px;}
.y4d_c00493{bottom:817.200000px;}
.y13_c00493{bottom:821.400000px;}
.y4c_c00493{bottom:835.200000px;}
.y12_c00493{bottom:840.150000px;}
.y4b_c00493{bottom:852.900000px;}
.y11_c00493{bottom:857.850000px;}
.y4a_c00493{bottom:870.600000px;}
.y10_c00493{bottom:875.550000px;}
.y49_c00493{bottom:888.300000px;}
.yf_c00493{bottom:893.550000px;}
.y48_c00493{bottom:906.300000px;}
.ye_c00493{bottom:911.100000px;}
.y47_c00493{bottom:924.600000px;}
.yd_c00493{bottom:929.100000px;}
.y46_c00493{bottom:941.550000px;}
.yc_c00493{bottom:947.100000px;}
.y45_c00493{bottom:959.550000px;}
.yb_c00493{bottom:965.250000px;}
.y44_c00493{bottom:977.550000px;}
.ya_c00493{bottom:982.500000px;}
.y43_c00493{bottom:995.250000px;}
.y9_c00493{bottom:1004.100000px;}
.y42_c00493{bottom:1012.950000px;}
.y8_c00493{bottom:1025.550000px;}
.y41_c00493{bottom:1030.950000px;}
.y7_c00493{bottom:1044.300000px;}
.y40_c00493{bottom:1048.650000px;}
.y6_c00493{bottom:1062.000000px;}
.y3f_c00493{bottom:1066.650000px;}
.y5_c00493{bottom:1080.000000px;}
.y3e_c00493{bottom:1084.350000px;}
.y4_c00493{bottom:1101.900000px;}
.y3d_c00493{bottom:1102.050000px;}
.y3_c00493{bottom:1119.900000px;}
.y3c_c00493{bottom:1122.900000px;}
.y1_c00493{bottom:1140.450000px;}
.y2_c00493{bottom:1146.600000px;}
.h9_c00493{height:18.000000px;}
.h7_c00493{height:30.000000px;}
.hb_c00493{height:42.000000px;}
.ha_c00493{height:48.000000px;}
.h8_c00493{height:54.000000px;}
.h6_c00493{height:60.000000px;}
.h5_c00493{height:66.000000px;}
.h4_c00493{height:72.000000px;}
.h3_c00493{height:84.000000px;}
.h2_c00493{height:96.000000px;}
.h0_c00493{height:1266.480010px;}
.h1_c00493{height:1266.750000px;}
.w0_c00493{width:958.320007px;}
.w1_c00493{width:958.500000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:183.600000px;}
.x29_c00493{left:189.000000px;}
.x5d_c00493{left:190.050000px;}
.x9b_c00493{left:191.550000px;}
.x3_c00493{left:203.100000px;}
.xb_c00493{left:204.300000px;}
.x16_c00493{left:205.650000px;}
.x32_c00493{left:206.850000px;}
.x52_c00493{left:208.650000px;}
.xa1_c00493{left:209.850000px;}
.x8f_c00493{left:217.050000px;}
.x9a_c00493{left:218.550000px;}
.x96_c00493{left:220.050000px;}
.xc_c00493{left:222.300000px;}
.x24_c00493{left:224.700000px;}
.x6b_c00493{left:226.050000px;}
.x1c_c00493{left:228.750000px;}
.x8a_c00493{left:230.700000px;}
.x67_c00493{left:234.300000px;}
.x83_c00493{left:236.100000px;}
.x5c_c00493{left:238.500000px;}
.x57_c00493{left:240.600000px;}
.x79_c00493{left:242.700000px;}
.x3b_c00493{left:245.250000px;}
.x4_c00493{left:247.350000px;}
.x4b_c00493{left:249.000000px;}
.x23_c00493{left:252.600000px;}
.x9e_c00493{left:253.950000px;}
.x1d_c00493{left:256.500000px;}
.x33_c00493{left:257.550000px;}
.x3f_c00493{left:258.900000px;}
.x80_c00493{left:260.700000px;}
.x17_c00493{left:262.500000px;}
.x25_c00493{left:263.550000px;}
.x75_c00493{left:267.150000px;}
.x7a_c00493{left:268.200000px;}
.xa7_c00493{left:269.550000px;}
.x68_c00493{left:270.600000px;}
.x2a_c00493{left:274.050000px;}
.x42_c00493{left:275.100000px;}
.x8b_c00493{left:276.750000px;}
.x10_c00493{left:278.700000px;}
.x72_c00493{left:279.750000px;}
.x88_c00493{left:280.800000px;}
.x47_c00493{left:282.600000px;}
.x5_c00493{left:284.850000px;}
.x5e_c00493{left:286.200000px;}
.x6f_c00493{left:287.250000px;}
.xd_c00493{left:288.600000px;}
.x63_c00493{left:290.400000px;}
.x4c_c00493{left:294.000000px;}
.x34_c00493{left:295.050000px;}
.x84_c00493{left:297.450000px;}
.x26_c00493{left:300.300000px;}
.x64_c00493{left:301.500000px;}
.x76_c00493{left:303.150000px;}
.x18_c00493{left:304.650000px;}
.x99_c00493{left:305.850000px;}
.x7e_c00493{left:307.200000px;}
.xe_c00493{left:308.700000px;}
.x43_c00493{left:310.050000px;}
.x1e_c00493{left:312.300000px;}
.x6c_c00493{left:314.700000px;}
.x73_c00493{left:316.800000px;}
.x35_c00493{left:318.450000px;}
.x53_c00493{left:321.750000px;}
.x2b_c00493{left:326.250000px;}
.x9c_c00493{left:327.600000px;}
.x48_c00493{left:330.150000px;}
.x6_c00493{left:331.650000px;}
.x8e_c00493{left:333.450000px;}
.x44_c00493{left:336.300000px;}
.x11_c00493{left:338.400000px;}
.x7_c00493{left:340.950000px;}
.xa8_c00493{left:343.650000px;}
.x97_c00493{left:346.800000px;}
.x2c_c00493{left:347.850000px;}
.x91_c00493{left:350.250000px;}
.x69_c00493{left:353.700000px;}
.x1f_c00493{left:355.200000px;}
.x19_c00493{left:358.350000px;}
.xf_c00493{left:359.400000px;}
.x65_c00493{left:360.600000px;}
.xa3_c00493{left:361.650000px;}
.x8_c00493{left:362.850000px;}
.xa2_c00493{left:364.200000px;}
.x4d_c00493{left:366.300000px;}
.x36_c00493{left:367.350000px;}
.x6d_c00493{left:370.800000px;}
.x20_c00493{left:372.450000px;}
.x54_c00493{left:373.950000px;}
.x74_c00493{left:377.700000px;}
.x85_c00493{left:378.750000px;}
.x3c_c00493{left:380.250000px;}
.x27_c00493{left:382.650000px;}
.x2d_c00493{left:383.850000px;}
.x4e_c00493{left:386.850000px;}
.x7b_c00493{left:388.350000px;}
.x40_c00493{left:390.150000px;}
.x9_c00493{left:391.950000px;}
.x92_c00493{left:393.150000px;}
.x58_c00493{left:394.800000px;}
.x28_c00493{left:398.850000px;}
.x12_c00493{left:400.050000px;}
.x5f_c00493{left:401.850000px;}
.x2e_c00493{left:405.150000px;}
.x49_c00493{left:406.800000px;}
.x93_c00493{left:408.000000px;}
.x45_c00493{left:409.650000px;}
.x59_c00493{left:411.300000px;}
.xa9_c00493{left:412.800000px;}
.x70_c00493{left:414.000000px;}
.x55_c00493{left:417.900000px;}
.x21_c00493{left:419.250000px;}
.x86_c00493{left:420.600000px;}
.x94_c00493{left:422.400000px;}
.x60_c00493{left:423.450000px;}
.x37_c00493{left:425.700000px;}
.x9f_c00493{left:426.750000px;}
.x13_c00493{left:428.550000px;}
.x2_c00493{left:429.900000px;}
.x4f_c00493{left:433.950000px;}
.x2f_c00493{left:435.750000px;}
.x77_c00493{left:439.200000px;}
.xa5_c00493{left:441.000000px;}
.x71_c00493{left:442.500000px;}
.x41_c00493{left:444.450000px;}
.x38_c00493{left:445.800000px;}
.x14_c00493{left:448.650000px;}
.x98_c00493{left:451.950000px;}
.x8c_c00493{left:453.300000px;}
.x1a_c00493{left:454.500000px;}
.x61_c00493{left:455.550000px;}
.x7f_c00493{left:457.650000px;}
.x6a_c00493{left:459.450000px;}
.x30_c00493{left:462.450000px;}
.x66_c00493{left:463.950000px;}
.x5a_c00493{left:465.000000px;}
.x3d_c00493{left:466.650000px;}
.x8d_c00493{left:468.450000px;}
.x50_c00493{left:469.650000px;}
.xa4_c00493{left:472.200000px;}
.xa_c00493{left:474.000000px;}
.x62_c00493{left:476.850000px;}
.x39_c00493{left:478.200000px;}
.x4a_c00493{left:480.600000px;}
.x81_c00493{left:481.650000px;}
.x7c_c00493{left:483.000000px;}
.x95_c00493{left:484.350000px;}
.x5b_c00493{left:485.850000px;}
.x1b_c00493{left:488.700000px;}
.x87_c00493{left:490.050000px;}
.x82_c00493{left:493.500000px;}
.x51_c00493{left:495.600000px;}
.x56_c00493{left:497.100000px;}
.x3a_c00493{left:500.850000px;}
.x22_c00493{left:503.550000px;}
.x46_c00493{left:505.050000px;}
.x15_c00493{left:508.050000px;}
.x6e_c00493{left:509.100000px;}
.x90_c00493{left:510.450000px;}
.xa0_c00493{left:511.500000px;}
.x31_c00493{left:512.850000px;}
.x7d_c00493{left:514.050000px;}
.x78_c00493{left:515.250000px;}
.xa6_c00493{left:521.250000px;}
.x9d_c00493{left:522.750000px;}
.x89_c00493{left:525.150000px;}
.x3e_c00493{left:532.200000px;}
.x154_c00493{left:538.500000px;}
.x14d_c00493{left:544.950000px;}
.x135_c00493{left:546.900000px;}
.x150_c00493{left:549.750000px;}
.xaa_c00493{left:559.800000px;}
.xc1_c00493{left:561.300000px;}
.xc7_c00493{left:562.350000px;}
.xfd_c00493{left:563.700000px;}
.x13d_c00493{left:564.900000px;}
.x14a_c00493{left:574.050000px;}
.x151_c00493{left:577.800000px;}
.x119_c00493{left:580.050000px;}
.x12c_c00493{left:581.100000px;}
.x121_c00493{left:583.650000px;}
.xf7_c00493{left:585.450000px;}
.xbb_c00493{left:586.800000px;}
.x142_c00493{left:588.750000px;}
.xec_c00493{left:591.150000px;}
.xcf_c00493{left:593.700000px;}
.xb3_c00493{left:596.850000px;}
.xab_c00493{left:598.350000px;}
.xda_c00493{left:599.550000px;}
.x140_c00493{left:600.600000px;}
.xe1_c00493{left:602.850000px;}
.xc8_c00493{left:604.050000px;}
.xbc_c00493{left:605.100000px;}
.xe6_c00493{left:607.500000px;}
.x11f_c00493{left:609.600000px;}
.xfb_c00493{left:611.250000px;}
.xf1_c00493{left:612.750000px;}
.x13b_c00493{left:614.100000px;}
.x101_c00493{left:617.400000px;}
.x114_c00493{left:619.500000px;}
.xc2_c00493{left:621.000000px;}
.x122_c00493{left:625.050000px;}
.xe7_c00493{left:626.550000px;}
.x11a_c00493{left:629.700000px;}
.x112_c00493{left:632.850000px;}
.xb4_c00493{left:633.900000px;}
.xac_c00493{left:636.450000px;}
.xc9_c00493{left:637.500000px;}
.xf8_c00493{left:639.150000px;}
.x102_c00493{left:641.100000px;}
.xe8_c00493{left:643.050000px;}
.xad_c00493{left:645.750000px;}
.xfe_c00493{left:647.550000px;}
.xdb_c00493{left:650.250000px;}
.xc3_c00493{left:651.900000px;}
.x12d_c00493{left:654.150000px;}
.x11b_c00493{left:655.200000px;}
.xe2_c00493{left:656.550000px;}
.x149_c00493{left:659.100000px;}
.xca_c00493{left:660.600000px;}
.x105_c00493{left:661.650000px;}
.x14e_c00493{left:662.700000px;}
.xfc_c00493{left:664.950000px;}
.x136_c00493{left:667.050000px;}
.xd5_c00493{left:668.250000px;}
.xd0_c00493{left:670.800000px;}
.x139_c00493{left:672.750000px;}
.x14b_c00493{left:675.000000px;}
.x152_c00493{left:677.100000px;}
.xed_c00493{left:679.650000px;}
.xbd_c00493{left:681.750000px;}
.xb5_c00493{left:684.000000px;}
.xd6_c00493{left:685.200000px;}
.xdc_c00493{left:687.300000px;}
.xe9_c00493{left:688.350000px;}
.x10c_c00493{left:690.750000px;}
.x128_c00493{left:691.800000px;}
.x137_c00493{left:693.000000px;}
.xf9_c00493{left:695.250000px;}
.xc4_c00493{left:696.600000px;}
.x11c_c00493{left:697.950000px;}
.x141_c00493{left:699.600000px;}
.x134_c00493{left:700.650000px;}
.x153_c00493{left:703.050000px;}
.xd1_c00493{left:704.250000px;}
.x12a_c00493{left:705.600000px;}
.x126_c00493{left:707.550000px;}
.xf2_c00493{left:708.900000px;}
.x109_c00493{left:710.100000px;}
.x13e_c00493{left:712.500000px;}
.xff_c00493{left:714.150000px;}
.x12e_c00493{left:715.350000px;}
.xee_c00493{left:716.700000px;}
.x10e_c00493{left:718.500000px;}
.xae_c00493{left:720.300000px;}
.x100_c00493{left:722.100000px;}
.x115_c00493{left:724.350000px;}
.xe3_c00493{left:727.050000px;}
.xb6_c00493{left:730.800000px;}
.x106_c00493{left:732.900000px;}
.x10a_c00493{left:734.250000px;}
.x116_c00493{left:735.450000px;}
.xd7_c00493{left:736.650000px;}
.xcb_c00493{left:738.000000px;}
.xc5_c00493{left:739.500000px;}
.xdd_c00493{left:742.350000px;}
.xf3_c00493{left:744.600000px;}
.xd2_c00493{left:745.650000px;}
.xef_c00493{left:747.000000px;}
.xea_c00493{left:750.300000px;}
.xb7_c00493{left:754.200000px;}
.xbe_c00493{left:757.050000px;}
.x146_c00493{left:759.300000px;}
.xaf_c00493{left:762.450000px;}
.x123_c00493{left:765.150000px;}
.x103_c00493{left:766.350000px;}
.xcc_c00493{left:768.300000px;}
.x13f_c00493{left:769.350000px;}
.xd8_c00493{left:770.550000px;}
.x113_c00493{left:772.050000px;}
.x12f_c00493{left:773.700000px;}
.xde_c00493{left:775.050000px;}
.x131_c00493{left:777.750000px;}
.xb0_c00493{left:779.400000px;}
.x104_c00493{left:780.450000px;}
.xe4_c00493{left:782.850000px;}
.xf0_c00493{left:785.100000px;}
.x155_c00493{left:786.450000px;}
.x107_c00493{left:787.800000px;}
.x133_c00493{left:789.150000px;}
.xf4_c00493{left:790.350000px;}
.x129_c00493{left:792.900000px;}
.xb8_c00493{left:794.850000px;}
.x10f_c00493{left:795.900000px;}
.x143_c00493{left:796.950000px;}
.xb1_c00493{left:798.150000px;}
.xf5_c00493{left:800.100000px;}
.x13a_c00493{left:801.900000px;}
.x117_c00493{left:804.300000px;}
.x11d_c00493{left:805.350000px;}
.x147_c00493{left:806.400000px;}
.xd3_c00493{left:807.600000px;}
.xcd_c00493{left:808.650000px;}
.xdf_c00493{left:810.300000px;}
.xbf_c00493{left:812.550000px;}
.xb9_c00493{left:813.600000px;}
.x13c_c00493{left:815.400000px;}
.x124_c00493{left:816.900000px;}
.xc6_c00493{left:820.800000px;}
.x108_c00493{left:822.300000px;}
.xe5_c00493{left:823.500000px;}
.x10b_c00493{left:824.700000px;}
.x120_c00493{left:827.850000px;}
.x10d_c00493{left:830.400000px;}
.x130_c00493{left:831.750000px;}
.xe0_c00493{left:833.700000px;}
.xd9_c00493{left:835.350000px;}
.x144_c00493{left:839.700000px;}
.xce_c00493{left:842.100000px;}
.xb2_c00493{left:843.150000px;}
.xf6_c00493{left:844.350000px;}
.xba_c00493{left:845.700000px;}
.x110_c00493{left:847.800000px;}
.x125_c00493{left:849.000000px;}
.x132_c00493{left:850.800000px;}
.xeb_c00493{left:852.150000px;}
.x12b_c00493{left:854.250000px;}
.x145_c00493{left:856.200000px;}
.x11e_c00493{left:860.400000px;}
.x138_c00493{left:862.500000px;}
.x118_c00493{left:863.700000px;}
.xc0_c00493{left:864.750000px;}
.x127_c00493{left:866.400000px;}
.x148_c00493{left:867.600000px;}
.xd4_c00493{left:870.300000px;}
.x111_c00493{left:871.500000px;}
.xfa_c00493{left:876.150000px;}
.x14f_c00493{left:877.350000px;}
.x14c_c00493{left:881.850000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.wsd_c00493{word-spacing:-10.847687pt;}
.wsb_c00493{word-spacing:-4.157205pt;}
.wsa_c00493{word-spacing:-3.596899pt;}
.wse_c00493{word-spacing:0.000000pt;}
.ws0_c00493{word-spacing:3.888889pt;}
.ws9_c00493{word-spacing:8.304094pt;}
.ws1_c00493{word-spacing:9.058201pt;}
.ws5_c00493{word-spacing:9.455113pt;}
.ws2_c00493{word-spacing:16.832579pt;}
.ws4_c00493{word-spacing:17.773012pt;}
.ws6_c00493{word-spacing:19.682540pt;}
.wsc_c00493{word-spacing:30.666667pt;}
.ws7_c00493{word-spacing:57.777778pt;}
.ws8_c00493{word-spacing:104.000000pt;}
.ws3_c00493{word-spacing:148.253968pt;}
._1_c00493{width:35.953162pt;}
._0_c00493{width:42.198283pt;}
._2_c00493{width:209.841270pt;}
.fs7_c00493{font-size:16.000000pt;}
.fs5_c00493{font-size:26.666667pt;}
.fs9_c00493{font-size:37.333333pt;}
.fs8_c00493{font-size:42.666667pt;}
.fs6_c00493{font-size:48.000000pt;}
.fs4_c00493{font-size:53.333333pt;}
.fs3_c00493{font-size:58.666667pt;}
.fs2_c00493{font-size:64.000000pt;}
.fs1_c00493{font-size:74.666667pt;}
.fs0_c00493{font-size:85.333333pt;}
.y0_c00493{bottom:0.000000pt;}
.y70_c00493{bottom:168.933333pt;}
.y39_c00493{bottom:172.133333pt;}
.y6f_c00493{bottom:182.133333pt;}
.y38_c00493{bottom:188.400000pt;}
.y6e_c00493{bottom:195.866667pt;}
.y37_c00493{bottom:204.133333pt;}
.y6d_c00493{bottom:207.333333pt;}
.y36_c00493{bottom:219.466667pt;}
.y6c_c00493{bottom:220.133333pt;}
.y6b_c00493{bottom:232.933333pt;}
.y35_c00493{bottom:235.466667pt;}
.y6a_c00493{bottom:245.733333pt;}
.y34_c00493{bottom:251.200000pt;}
.y69_c00493{bottom:258.533333pt;}
.y33_c00493{bottom:266.533333pt;}
.y68_c00493{bottom:271.333333pt;}
.y32_c00493{bottom:274.533333pt;}
.y31_c00493{bottom:282.266667pt;}
.y67_c00493{bottom:284.400000pt;}
.y66_c00493{bottom:296.933333pt;}
.y30_c00493{bottom:297.866667pt;}
.y65_c00493{bottom:309.733333pt;}
.y2f_c00493{bottom:317.333333pt;}
.y64_c00493{bottom:322.533333pt;}
.y2e_c00493{bottom:329.866667pt;}
.y63_c00493{bottom:335.066667pt;}
.y3b_c00493{bottom:340.533333pt;}
.y2d_c00493{bottom:341.733333pt;}
.y2c_c00493{bottom:355.466667pt;}
.y2b_c00493{bottom:367.333333pt;}
.y62_c00493{bottom:375.733333pt;}
.y2a_c00493{bottom:382.133333pt;}
.y61_c00493{bottom:392.000000pt;}
.y29_c00493{bottom:393.600000pt;}
.y60_c00493{bottom:408.000000pt;}
.y28_c00493{bottom:411.466667pt;}
.y27_c00493{bottom:427.466667pt;}
.y5f_c00493{bottom:431.333333pt;}
.y26_c00493{bottom:443.466667pt;}
.y5e_c00493{bottom:447.066667pt;}
.y25_c00493{bottom:450.266667pt;}
.y24_c00493{bottom:453.466667pt;}
.y23_c00493{bottom:458.666667pt;}
.y5d_c00493{bottom:469.333333pt;}
.y22_c00493{bottom:474.400000pt;}
.y3a_c00493{bottom:475.200000pt;}
.y5c_c00493{bottom:485.333333pt;}
.y21_c00493{bottom:490.133333pt;}
.y5b_c00493{bottom:501.066667pt;}
.y20_c00493{bottom:505.866667pt;}
.y5a_c00493{bottom:516.800000pt;}
.y1f_c00493{bottom:524.400000pt;}
.y59_c00493{bottom:532.800000pt;}
.y1e_c00493{bottom:541.066667pt;}
.y58_c00493{bottom:551.733333pt;}
.y1d_c00493{bottom:556.800000pt;}
.y57_c00493{bottom:567.733333pt;}
.y1c_c00493{bottom:572.800000pt;}
.y56_c00493{bottom:583.466667pt;}
.y1b_c00493{bottom:588.666667pt;}
.y55_c00493{bottom:599.466667pt;}
.y1a_c00493{bottom:604.400000pt;}
.y54_c00493{bottom:615.466667pt;}
.y19_c00493{bottom:620.400000pt;}
.y53_c00493{bottom:631.200000pt;}
.y18_c00493{bottom:636.133333pt;}
.y52_c00493{bottom:647.200000pt;}
.y17_c00493{bottom:655.733333pt;}
.y51_c00493{bottom:662.933333pt;}
.y16_c00493{bottom:678.666667pt;}
.y50_c00493{bottom:678.933333pt;}
.y4f_c00493{bottom:694.666667pt;}
.y15_c00493{bottom:695.333333pt;}
.y4e_c00493{bottom:710.666667pt;}
.y14_c00493{bottom:711.333333pt;}
.y4d_c00493{bottom:726.400000pt;}
.y13_c00493{bottom:730.133333pt;}
.y4c_c00493{bottom:742.400000pt;}
.y12_c00493{bottom:746.800000pt;}
.y4b_c00493{bottom:758.133333pt;}
.y11_c00493{bottom:762.533333pt;}
.y4a_c00493{bottom:773.866667pt;}
.y10_c00493{bottom:778.266667pt;}
.y49_c00493{bottom:789.600000pt;}
.yf_c00493{bottom:794.266667pt;}
.y48_c00493{bottom:805.600000pt;}
.ye_c00493{bottom:809.866667pt;}
.y47_c00493{bottom:821.866667pt;}
.yd_c00493{bottom:825.866667pt;}
.y46_c00493{bottom:836.933333pt;}
.yc_c00493{bottom:841.866667pt;}
.y45_c00493{bottom:852.933333pt;}
.yb_c00493{bottom:858.000000pt;}
.y44_c00493{bottom:868.933333pt;}
.ya_c00493{bottom:873.333333pt;}
.y43_c00493{bottom:884.666667pt;}
.y9_c00493{bottom:892.533333pt;}
.y42_c00493{bottom:900.400000pt;}
.y8_c00493{bottom:911.600000pt;}
.y41_c00493{bottom:916.400000pt;}
.y7_c00493{bottom:928.266667pt;}
.y40_c00493{bottom:932.133333pt;}
.y6_c00493{bottom:944.000000pt;}
.y3f_c00493{bottom:948.133333pt;}
.y5_c00493{bottom:960.000000pt;}
.y3e_c00493{bottom:963.866667pt;}
.y4_c00493{bottom:979.466667pt;}
.y3d_c00493{bottom:979.600000pt;}
.y3_c00493{bottom:995.466667pt;}
.y3c_c00493{bottom:998.133333pt;}
.y1_c00493{bottom:1013.733333pt;}
.y2_c00493{bottom:1019.200000pt;}
.h9_c00493{height:16.000000pt;}
.h7_c00493{height:26.666667pt;}
.hb_c00493{height:37.333333pt;}
.ha_c00493{height:42.666667pt;}
.h8_c00493{height:48.000000pt;}
.h6_c00493{height:53.333333pt;}
.h5_c00493{height:58.666667pt;}
.h4_c00493{height:64.000000pt;}
.h3_c00493{height:74.666667pt;}
.h2_c00493{height:85.333333pt;}
.h0_c00493{height:1125.760009pt;}
.h1_c00493{height:1126.000000pt;}
.w0_c00493{width:851.840007pt;}
.w1_c00493{width:852.000000pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:163.200000pt;}
.x29_c00493{left:168.000000pt;}
.x5d_c00493{left:168.933333pt;}
.x9b_c00493{left:170.266667pt;}
.x3_c00493{left:180.533333pt;}
.xb_c00493{left:181.600000pt;}
.x16_c00493{left:182.800000pt;}
.x32_c00493{left:183.866667pt;}
.x52_c00493{left:185.466667pt;}
.xa1_c00493{left:186.533333pt;}
.x8f_c00493{left:192.933333pt;}
.x9a_c00493{left:194.266667pt;}
.x96_c00493{left:195.600000pt;}
.xc_c00493{left:197.600000pt;}
.x24_c00493{left:199.733333pt;}
.x6b_c00493{left:200.933333pt;}
.x1c_c00493{left:203.333333pt;}
.x8a_c00493{left:205.066667pt;}
.x67_c00493{left:208.266667pt;}
.x83_c00493{left:209.866667pt;}
.x5c_c00493{left:212.000000pt;}
.x57_c00493{left:213.866667pt;}
.x79_c00493{left:215.733333pt;}
.x3b_c00493{left:218.000000pt;}
.x4_c00493{left:219.866667pt;}
.x4b_c00493{left:221.333333pt;}
.x23_c00493{left:224.533333pt;}
.x9e_c00493{left:225.733333pt;}
.x1d_c00493{left:228.000000pt;}
.x33_c00493{left:228.933333pt;}
.x3f_c00493{left:230.133333pt;}
.x80_c00493{left:231.733333pt;}
.x17_c00493{left:233.333333pt;}
.x25_c00493{left:234.266667pt;}
.x75_c00493{left:237.466667pt;}
.x7a_c00493{left:238.400000pt;}
.xa7_c00493{left:239.600000pt;}
.x68_c00493{left:240.533333pt;}
.x2a_c00493{left:243.600000pt;}
.x42_c00493{left:244.533333pt;}
.x8b_c00493{left:246.000000pt;}
.x10_c00493{left:247.733333pt;}
.x72_c00493{left:248.666667pt;}
.x88_c00493{left:249.600000pt;}
.x47_c00493{left:251.200000pt;}
.x5_c00493{left:253.200000pt;}
.x5e_c00493{left:254.400000pt;}
.x6f_c00493{left:255.333333pt;}
.xd_c00493{left:256.533333pt;}
.x63_c00493{left:258.133333pt;}
.x4c_c00493{left:261.333333pt;}
.x34_c00493{left:262.266667pt;}
.x84_c00493{left:264.400000pt;}
.x26_c00493{left:266.933333pt;}
.x64_c00493{left:268.000000pt;}
.x76_c00493{left:269.466667pt;}
.x18_c00493{left:270.800000pt;}
.x99_c00493{left:271.866667pt;}
.x7e_c00493{left:273.066667pt;}
.xe_c00493{left:274.400000pt;}
.x43_c00493{left:275.600000pt;}
.x1e_c00493{left:277.600000pt;}
.x6c_c00493{left:279.733333pt;}
.x73_c00493{left:281.600000pt;}
.x35_c00493{left:283.066667pt;}
.x53_c00493{left:286.000000pt;}
.x2b_c00493{left:290.000000pt;}
.x9c_c00493{left:291.200000pt;}
.x48_c00493{left:293.466667pt;}
.x6_c00493{left:294.800000pt;}
.x8e_c00493{left:296.400000pt;}
.x44_c00493{left:298.933333pt;}
.x11_c00493{left:300.800000pt;}
.x7_c00493{left:303.066667pt;}
.xa8_c00493{left:305.466667pt;}
.x97_c00493{left:308.266667pt;}
.x2c_c00493{left:309.200000pt;}
.x91_c00493{left:311.333333pt;}
.x69_c00493{left:314.400000pt;}
.x1f_c00493{left:315.733333pt;}
.x19_c00493{left:318.533333pt;}
.xf_c00493{left:319.466667pt;}
.x65_c00493{left:320.533333pt;}
.xa3_c00493{left:321.466667pt;}
.x8_c00493{left:322.533333pt;}
.xa2_c00493{left:323.733333pt;}
.x4d_c00493{left:325.600000pt;}
.x36_c00493{left:326.533333pt;}
.x6d_c00493{left:329.600000pt;}
.x20_c00493{left:331.066667pt;}
.x54_c00493{left:332.400000pt;}
.x74_c00493{left:335.733333pt;}
.x85_c00493{left:336.666667pt;}
.x3c_c00493{left:338.000000pt;}
.x27_c00493{left:340.133333pt;}
.x2d_c00493{left:341.200000pt;}
.x4e_c00493{left:343.866667pt;}
.x7b_c00493{left:345.200000pt;}
.x40_c00493{left:346.800000pt;}
.x9_c00493{left:348.400000pt;}
.x92_c00493{left:349.466667pt;}
.x58_c00493{left:350.933333pt;}
.x28_c00493{left:354.533333pt;}
.x12_c00493{left:355.600000pt;}
.x5f_c00493{left:357.200000pt;}
.x2e_c00493{left:360.133333pt;}
.x49_c00493{left:361.600000pt;}
.x93_c00493{left:362.666667pt;}
.x45_c00493{left:364.133333pt;}
.x59_c00493{left:365.600000pt;}
.xa9_c00493{left:366.933333pt;}
.x70_c00493{left:368.000000pt;}
.x55_c00493{left:371.466667pt;}
.x21_c00493{left:372.666667pt;}
.x86_c00493{left:373.866667pt;}
.x94_c00493{left:375.466667pt;}
.x60_c00493{left:376.400000pt;}
.x37_c00493{left:378.400000pt;}
.x9f_c00493{left:379.333333pt;}
.x13_c00493{left:380.933333pt;}
.x2_c00493{left:382.133333pt;}
.x4f_c00493{left:385.733333pt;}
.x2f_c00493{left:387.333333pt;}
.x77_c00493{left:390.400000pt;}
.xa5_c00493{left:392.000000pt;}
.x71_c00493{left:393.333333pt;}
.x41_c00493{left:395.066667pt;}
.x38_c00493{left:396.266667pt;}
.x14_c00493{left:398.800000pt;}
.x98_c00493{left:401.733333pt;}
.x8c_c00493{left:402.933333pt;}
.x1a_c00493{left:404.000000pt;}
.x61_c00493{left:404.933333pt;}
.x7f_c00493{left:406.800000pt;}
.x6a_c00493{left:408.400000pt;}
.x30_c00493{left:411.066667pt;}
.x66_c00493{left:412.400000pt;}
.x5a_c00493{left:413.333333pt;}
.x3d_c00493{left:414.800000pt;}
.x8d_c00493{left:416.400000pt;}
.x50_c00493{left:417.466667pt;}
.xa4_c00493{left:419.733333pt;}
.xa_c00493{left:421.333333pt;}
.x62_c00493{left:423.866667pt;}
.x39_c00493{left:425.066667pt;}
.x4a_c00493{left:427.200000pt;}
.x81_c00493{left:428.133333pt;}
.x7c_c00493{left:429.333333pt;}
.x95_c00493{left:430.533333pt;}
.x5b_c00493{left:431.866667pt;}
.x1b_c00493{left:434.400000pt;}
.x87_c00493{left:435.600000pt;}
.x82_c00493{left:438.666667pt;}
.x51_c00493{left:440.533333pt;}
.x56_c00493{left:441.866667pt;}
.x3a_c00493{left:445.200000pt;}
.x22_c00493{left:447.600000pt;}
.x46_c00493{left:448.933333pt;}
.x15_c00493{left:451.600000pt;}
.x6e_c00493{left:452.533333pt;}
.x90_c00493{left:453.733333pt;}
.xa0_c00493{left:454.666667pt;}
.x31_c00493{left:455.866667pt;}
.x7d_c00493{left:456.933333pt;}
.x78_c00493{left:458.000000pt;}
.xa6_c00493{left:463.333333pt;}
.x9d_c00493{left:464.666667pt;}
.x89_c00493{left:466.800000pt;}
.x3e_c00493{left:473.066667pt;}
.x154_c00493{left:478.666667pt;}
.x14d_c00493{left:484.400000pt;}
.x135_c00493{left:486.133333pt;}
.x150_c00493{left:488.666667pt;}
.xaa_c00493{left:497.600000pt;}
.xc1_c00493{left:498.933333pt;}
.xc7_c00493{left:499.866667pt;}
.xfd_c00493{left:501.066667pt;}
.x13d_c00493{left:502.133333pt;}
.x14a_c00493{left:510.266667pt;}
.x151_c00493{left:513.600000pt;}
.x119_c00493{left:515.600000pt;}
.x12c_c00493{left:516.533333pt;}
.x121_c00493{left:518.800000pt;}
.xf7_c00493{left:520.400000pt;}
.xbb_c00493{left:521.600000pt;}
.x142_c00493{left:523.333333pt;}
.xec_c00493{left:525.466667pt;}
.xcf_c00493{left:527.733333pt;}
.xb3_c00493{left:530.533333pt;}
.xab_c00493{left:531.866667pt;}
.xda_c00493{left:532.933333pt;}
.x140_c00493{left:533.866667pt;}
.xe1_c00493{left:535.866667pt;}
.xc8_c00493{left:536.933333pt;}
.xbc_c00493{left:537.866667pt;}
.xe6_c00493{left:540.000000pt;}
.x11f_c00493{left:541.866667pt;}
.xfb_c00493{left:543.333333pt;}
.xf1_c00493{left:544.666667pt;}
.x13b_c00493{left:545.866667pt;}
.x101_c00493{left:548.800000pt;}
.x114_c00493{left:550.666667pt;}
.xc2_c00493{left:552.000000pt;}
.x122_c00493{left:555.600000pt;}
.xe7_c00493{left:556.933333pt;}
.x11a_c00493{left:559.733333pt;}
.x112_c00493{left:562.533333pt;}
.xb4_c00493{left:563.466667pt;}
.xac_c00493{left:565.733333pt;}
.xc9_c00493{left:566.666667pt;}
.xf8_c00493{left:568.133333pt;}
.x102_c00493{left:569.866667pt;}
.xe8_c00493{left:571.600000pt;}
.xad_c00493{left:574.000000pt;}
.xfe_c00493{left:575.600000pt;}
.xdb_c00493{left:578.000000pt;}
.xc3_c00493{left:579.466667pt;}
.x12d_c00493{left:581.466667pt;}
.x11b_c00493{left:582.400000pt;}
.xe2_c00493{left:583.600000pt;}
.x149_c00493{left:585.866667pt;}
.xca_c00493{left:587.200000pt;}
.x105_c00493{left:588.133333pt;}
.x14e_c00493{left:589.066667pt;}
.xfc_c00493{left:591.066667pt;}
.x136_c00493{left:592.933333pt;}
.xd5_c00493{left:594.000000pt;}
.xd0_c00493{left:596.266667pt;}
.x139_c00493{left:598.000000pt;}
.x14b_c00493{left:600.000000pt;}
.x152_c00493{left:601.866667pt;}
.xed_c00493{left:604.133333pt;}
.xbd_c00493{left:606.000000pt;}
.xb5_c00493{left:608.000000pt;}
.xd6_c00493{left:609.066667pt;}
.xdc_c00493{left:610.933333pt;}
.xe9_c00493{left:611.866667pt;}
.x10c_c00493{left:614.000000pt;}
.x128_c00493{left:614.933333pt;}
.x137_c00493{left:616.000000pt;}
.xf9_c00493{left:618.000000pt;}
.xc4_c00493{left:619.200000pt;}
.x11c_c00493{left:620.400000pt;}
.x141_c00493{left:621.866667pt;}
.x134_c00493{left:622.800000pt;}
.x153_c00493{left:624.933333pt;}
.xd1_c00493{left:626.000000pt;}
.x12a_c00493{left:627.200000pt;}
.x126_c00493{left:628.933333pt;}
.xf2_c00493{left:630.133333pt;}
.x109_c00493{left:631.200000pt;}
.x13e_c00493{left:633.333333pt;}
.xff_c00493{left:634.800000pt;}
.x12e_c00493{left:635.866667pt;}
.xee_c00493{left:637.066667pt;}
.x10e_c00493{left:638.666667pt;}
.xae_c00493{left:640.266667pt;}
.x100_c00493{left:641.866667pt;}
.x115_c00493{left:643.866667pt;}
.xe3_c00493{left:646.266667pt;}
.xb6_c00493{left:649.600000pt;}
.x106_c00493{left:651.466667pt;}
.x10a_c00493{left:652.666667pt;}
.x116_c00493{left:653.733333pt;}
.xd7_c00493{left:654.800000pt;}
.xcb_c00493{left:656.000000pt;}
.xc5_c00493{left:657.333333pt;}
.xdd_c00493{left:659.866667pt;}
.xf3_c00493{left:661.866667pt;}
.xd2_c00493{left:662.800000pt;}
.xef_c00493{left:664.000000pt;}
.xea_c00493{left:666.933333pt;}
.xb7_c00493{left:670.400000pt;}
.xbe_c00493{left:672.933333pt;}
.x146_c00493{left:674.933333pt;}
.xaf_c00493{left:677.733333pt;}
.x123_c00493{left:680.133333pt;}
.x103_c00493{left:681.200000pt;}
.xcc_c00493{left:682.933333pt;}
.x13f_c00493{left:683.866667pt;}
.xd8_c00493{left:684.933333pt;}
.x113_c00493{left:686.266667pt;}
.x12f_c00493{left:687.733333pt;}
.xde_c00493{left:688.933333pt;}
.x131_c00493{left:691.333333pt;}
.xb0_c00493{left:692.800000pt;}
.x104_c00493{left:693.733333pt;}
.xe4_c00493{left:695.866667pt;}
.xf0_c00493{left:697.866667pt;}
.x155_c00493{left:699.066667pt;}
.x107_c00493{left:700.266667pt;}
.x133_c00493{left:701.466667pt;}
.xf4_c00493{left:702.533333pt;}
.x129_c00493{left:704.800000pt;}
.xb8_c00493{left:706.533333pt;}
.x10f_c00493{left:707.466667pt;}
.x143_c00493{left:708.400000pt;}
.xb1_c00493{left:709.466667pt;}
.xf5_c00493{left:711.200000pt;}
.x13a_c00493{left:712.800000pt;}
.x117_c00493{left:714.933333pt;}
.x11d_c00493{left:715.866667pt;}
.x147_c00493{left:716.800000pt;}
.xd3_c00493{left:717.866667pt;}
.xcd_c00493{left:718.800000pt;}
.xdf_c00493{left:720.266667pt;}
.xbf_c00493{left:722.266667pt;}
.xb9_c00493{left:723.200000pt;}
.x13c_c00493{left:724.800000pt;}
.x124_c00493{left:726.133333pt;}
.xc6_c00493{left:729.600000pt;}
.x108_c00493{left:730.933333pt;}
.xe5_c00493{left:732.000000pt;}
.x10b_c00493{left:733.066667pt;}
.x120_c00493{left:735.866667pt;}
.x10d_c00493{left:738.133333pt;}
.x130_c00493{left:739.333333pt;}
.xe0_c00493{left:741.066667pt;}
.xd9_c00493{left:742.533333pt;}
.x144_c00493{left:746.400000pt;}
.xce_c00493{left:748.533333pt;}
.xb2_c00493{left:749.466667pt;}
.xf6_c00493{left:750.533333pt;}
.xba_c00493{left:751.733333pt;}
.x110_c00493{left:753.600000pt;}
.x125_c00493{left:754.666667pt;}
.x132_c00493{left:756.266667pt;}
.xeb_c00493{left:757.466667pt;}
.x12b_c00493{left:759.333333pt;}
.x145_c00493{left:761.066667pt;}
.x11e_c00493{left:764.800000pt;}
.x138_c00493{left:766.666667pt;}
.x118_c00493{left:767.733333pt;}
.xc0_c00493{left:768.666667pt;}
.x127_c00493{left:770.133333pt;}
.x148_c00493{left:771.200000pt;}
.xd4_c00493{left:773.600000pt;}
.x111_c00493{left:774.666667pt;}
.xfa_c00493{left:778.800000pt;}
.x14f_c00493{left:779.866667pt;}
.x14c_c00493{left:783.866667pt;}
}





/* 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_c00494 {
    display:none;
  }
  .loading-indicator_c00494.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00494 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_c00494 { 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_c00494" -> "#page-container .classname_c00494")
 */
.pf_c00494 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00494 { /* 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_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00494 { /* 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_c00494 { /* 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_c00494 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00494 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00494 {overflow:visible;}
  }
}
.c_c00494 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00494 { /* 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_c00494:after { /* webkit #35443 */
  content: '';
}
.t_c00494:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00494 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 */
}
.__c00494 { /* 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_c00494 { /* info for Javascript */
  display:none;
}
.l_c00494 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00494 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00494 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00494: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_c00494 {
    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_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00494.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_c00494 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00494;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.000000;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;}
.m1_c00494{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00494{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00494{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m91_c00494{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.me6_c00494{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00494{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m67_c00494{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00494{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.md3_c00494{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00494{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m66_c00494{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00494{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00494{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00494{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m103_c00494{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00494{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00494{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m122_c00494{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mad_c00494{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.md0_c00494{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00494{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00494{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m105_c00494{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m13_c00494{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m46_c00494{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mde_c00494{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m81_c00494{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md4_c00494{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m36_c00494{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00494{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00494{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m34_c00494{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00494{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00494{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m90_c00494{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m48_c00494{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m24_c00494{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00494{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m51_c00494{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00494{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m118_c00494{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m52_c00494{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00494{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.me0_c00494{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m59_c00494{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m26_c00494{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m6_c00494{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m98_c00494{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00494{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00494{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00494{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00494{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00494{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m38_c00494{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m58_c00494{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00494{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00494{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m42_c00494{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00494{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m23_c00494{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00494{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00494{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m101_c00494{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.me8_c00494{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00494{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m89_c00494{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00494{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m10_c00494{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00494{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mda_c00494{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7_c00494{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m117_c00494{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00494{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m109_c00494{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00494{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mab_c00494{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m55_c00494{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00494{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m87_c00494{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.med_c00494{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m119_c00494{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md2_c00494{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mce_c00494{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m11_c00494{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m15_c00494{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m12_c00494{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00494{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00494{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m102_c00494{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m62_c00494{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m88_c00494{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md_c00494{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00494{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.me5_c00494{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00494{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m60_c00494{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m4_c00494{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00494{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m96_c00494{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00494{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00494{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m27_c00494{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00494{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00494{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m37_c00494{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00494{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m70_c00494{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m56_c00494{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00494{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mac_c00494{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m5_c00494{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m31_c00494{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m115_c00494{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m104_c00494{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00494{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00494{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00494{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md6_c00494{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00494{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00494{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m29_c00494{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00494{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m8_c00494{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m85_c00494{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mea_c00494{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m116_c00494{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00494{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00494{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00494{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.me2_c00494{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00494{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00494{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m28_c00494{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m32_c00494{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m80_c00494{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00494{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00494{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m54_c00494{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.me3_c00494{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00494{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m43_c00494{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00494{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m35_c00494{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00494{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma_c00494{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00494{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00494{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.me9_c00494{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.me_c00494{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m20_c00494{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m82_c00494{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m65_c00494{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00494{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me1_c00494{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mff_c00494{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00494{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m57_c00494{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m107_c00494{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00494{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m93_c00494{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00494{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00494{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00494{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m71_c00494{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00494{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m86_c00494{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00494{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00494{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mca_c00494{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.me7_c00494{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m92_c00494{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00494{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m47_c00494{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00494{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m19_c00494{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00494{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00494{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m2_c00494{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00494{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m64_c00494{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m14_c00494{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mee_c00494{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00494{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m114_c00494{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m75_c00494{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m106_c00494{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m18_c00494{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00494{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m76_c00494{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc_c00494{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00494{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00494{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mba_c00494{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00494{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m22_c00494{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m69_c00494{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m84_c00494{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00494{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf_c00494{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00494{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00494{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m100_c00494{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m95_c00494{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00494{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me4_c00494{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m30_c00494{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m73_c00494{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00494{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m41_c00494{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00494{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m53_c00494{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00494{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00494{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m17_c00494{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3_c00494{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00494{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md9_c00494{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00494{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m33_c00494{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m99_c00494{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00494{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m79_c00494{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00494{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00494{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00494{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m83_c00494{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00494{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00494{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00494{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m16_c00494{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m112_c00494{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m108_c00494{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m49_c00494{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mae_c00494{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.md5_c00494{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00494{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00494{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00494{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00494{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00494{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m63_c00494{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md8_c00494{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00494{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m45_c00494{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00494{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);}
.m39_c00494{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m94_c00494{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00494{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m40_c00494{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00494{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00494{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mef_c00494{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb_c00494{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00494{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md7_c00494{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m25_c00494{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m21_c00494{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.maf_c00494{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00494{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00494{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m111_c00494{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00494{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00494{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00494{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m121_c00494{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00494{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.md1_c00494{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00494{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m78_c00494{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m113_c00494{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00494{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m61_c00494{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00494{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00494{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m97_c00494{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m9_c00494{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.mec_c00494{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m74_c00494{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m44_c00494{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m110_c00494{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00494{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00494{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m77_c00494{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m68_c00494{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.meb_c00494{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m50_c00494{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m120_c00494{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.m0_c00494{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.maa_c00494{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m72_c00494{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00494{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls0_c00494{letter-spacing:0.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{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__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00494{word-spacing:-7.656250px;}
.ws9_c00494{word-spacing:-6.052632px;}
.ws12_c00494{word-spacing:-6.008086px;}
.ws11_c00494{word-spacing:-3.166667px;}
.ws10_c00494{word-spacing:-1.366864px;}
.ws13_c00494{word-spacing:0.000000px;}
.ws2_c00494{word-spacing:0.181669px;}
.ws1_c00494{word-spacing:2.000000px;}
.wsf_c00494{word-spacing:3.333333px;}
.wse_c00494{word-spacing:4.151862px;}
.wsd_c00494{word-spacing:18.125000px;}
.ws3_c00494{word-spacing:22.142857px;}
.ws0_c00494{word-spacing:22.549618px;}
.ws6_c00494{word-spacing:25.714286px;}
.ws7_c00494{word-spacing:29.285714px;}
.ws5_c00494{word-spacing:35.833333px;}
.wsc_c00494{word-spacing:40.000000px;}
.ws4_c00494{word-spacing:44.166667px;}
.ws8_c00494{word-spacing:65.000000px;}
.wsa_c00494{word-spacing:76.805556px;}
._4_c00494{width:55.714286px;}
._0_c00494{width:65.833333px;}
._1_c00494{width:70.000000px;}
._2_c00494{width:74.166667px;}
._3_c00494{width:97.631579px;}
.fc0_c00494{color:transparent;}
.fs5_c00494{font-size:48.000000px;}
.fs6_c00494{font-size:54.000000px;}
.fs3_c00494{font-size:60.000000px;}
.fs1_c00494{font-size:66.000000px;}
.fs4_c00494{font-size:72.000000px;}
.fs2_c00494{font-size:78.000000px;}
.fs0_c00494{font-size:84.000000px;}
.y0_c00494{bottom:0.000000px;}
.y6c_c00494{bottom:176.700000px;}
.y39_c00494{bottom:194.250000px;}
.y6b_c00494{bottom:194.700000px;}
.y38_c00494{bottom:212.250000px;}
.y6a_c00494{bottom:212.700000px;}
.y37_c00494{bottom:230.250000px;}
.y69_c00494{bottom:230.400000px;}
.y36_c00494{bottom:247.950000px;}
.y68_c00494{bottom:248.400000px;}
.y35_c00494{bottom:265.950000px;}
.y67_c00494{bottom:266.400000px;}
.y34_c00494{bottom:283.650000px;}
.y66_c00494{bottom:284.100000px;}
.y33_c00494{bottom:301.650000px;}
.y65_c00494{bottom:306.000000px;}
.y32_c00494{bottom:319.350000px;}
.y64_c00494{bottom:332.100000px;}
.y31_c00494{bottom:337.200000px;}
.y63_c00494{bottom:350.100000px;}
.y30_c00494{bottom:354.900000px;}
.y62_c00494{bottom:367.800000px;}
.y2f_c00494{bottom:372.900000px;}
.y61_c00494{bottom:385.500000px;}
.y2e_c00494{bottom:390.600000px;}
.y60_c00494{bottom:403.200000px;}
.y2d_c00494{bottom:408.600000px;}
.y5f_c00494{bottom:420.900000px;}
.y2c_c00494{bottom:426.600000px;}
.y5e_c00494{bottom:447.150000px;}
.y2b_c00494{bottom:447.300000px;}
.y2a_c00494{bottom:462.450000px;}
.y5d_c00494{bottom:465.450000px;}
.y29_c00494{bottom:476.550000px;}
.y5c_c00494{bottom:482.700000px;}
.y28_c00494{bottom:490.650000px;}
.y27_c00494{bottom:503.250000px;}
.y5b_c00494{bottom:504.750000px;}
.y26_c00494{bottom:519.750000px;}
.y5a_c00494{bottom:522.750000px;}
.y25_c00494{bottom:533.850000px;}
.y59_c00494{bottom:540.450000px;}
.y24_c00494{bottom:554.400000px;}
.y58_c00494{bottom:558.150000px;}
.y23_c00494{bottom:562.650000px;}
.y22_c00494{bottom:575.250000px;}
.y57_c00494{bottom:576.150000px;}
.y21_c00494{bottom:591.150000px;}
.y56_c00494{bottom:593.850000px;}
.y20_c00494{bottom:603.750000px;}
.y55_c00494{bottom:611.850000px;}
.y1f_c00494{bottom:618.450000px;}
.y54_c00494{bottom:629.550000px;}
.y3_c00494{bottom:633.300000px;}
.y1e_c00494{bottom:634.350000px;}
.y53_c00494{bottom:647.250000px;}
.y1d_c00494{bottom:652.200000px;}
.y52_c00494{bottom:664.950000px;}
.y1c_c00494{bottom:670.500000px;}
.y51_c00494{bottom:687.000000px;}
.y1b_c00494{bottom:688.200000px;}
.y50_c00494{bottom:705.000000px;}
.y1a_c00494{bottom:706.200000px;}
.y4f_c00494{bottom:723.000000px;}
.y19_c00494{bottom:723.900000px;}
.y4e_c00494{bottom:740.700000px;}
.y18_c00494{bottom:741.600000px;}
.y4d_c00494{bottom:758.400000px;}
.y17_c00494{bottom:759.300000px;}
.y4c_c00494{bottom:776.400000px;}
.y16_c00494{bottom:776.850000px;}
.y4b_c00494{bottom:794.100000px;}
.y15_c00494{bottom:797.700000px;}
.y4a_c00494{bottom:812.100000px;}
.y14_c00494{bottom:816.300000px;}
.y49_c00494{bottom:829.800000px;}
.y13_c00494{bottom:834.600000px;}
.y48_c00494{bottom:847.800000px;}
.y12_c00494{bottom:851.850000px;}
.y47_c00494{bottom:865.500000px;}
.y11_c00494{bottom:869.850000px;}
.y46_c00494{bottom:883.500000px;}
.y10_c00494{bottom:887.850000px;}
.y45_c00494{bottom:905.100000px;}
.yf_c00494{bottom:905.550000px;}
.y44_c00494{bottom:923.400000px;}
.ye_c00494{bottom:923.550000px;}
.yd_c00494{bottom:941.250000px;}
.y43_c00494{bottom:944.700000px;}
.yc_c00494{bottom:959.250000px;}
.y42_c00494{bottom:963.750000px;}
.yb_c00494{bottom:976.950000px;}
.y41_c00494{bottom:981.750000px;}
.ya_c00494{bottom:994.650000px;}
.y40_c00494{bottom:999.750000px;}
.y9_c00494{bottom:1017.000000px;}
.y3f_c00494{bottom:1035.000000px;}
.y8_c00494{bottom:1047.900000px;}
.y3e_c00494{bottom:1052.550000px;}
.y7_c00494{bottom:1066.950000px;}
.y3d_c00494{bottom:1070.550000px;}
.y6_c00494{bottom:1084.950000px;}
.y3c_c00494{bottom:1088.250000px;}
.y5_c00494{bottom:1103.700000px;}
.y3b_c00494{bottom:1106.250000px;}
.y4_c00494{bottom:1120.650000px;}
.y3a_c00494{bottom:1124.250000px;}
.y2_c00494{bottom:1146.300000px;}
.y1_c00494{bottom:1153.500000px;}
.h7_c00494{height:48.000000px;}
.h8_c00494{height:54.000000px;}
.h5_c00494{height:60.000000px;}
.h3_c00494{height:66.000000px;}
.h6_c00494{height:72.000000px;}
.h4_c00494{height:78.000000px;}
.h2_c00494{height:84.000000px;}
.h0_c00494{height:1270.440033px;}
.h1_c00494{height:1270.500000px;}
.w0_c00494{width:958.320007px;}
.w1_c00494{width:958.500000px;}
.x0_c00494{left:0.000000px;}
.x4_c00494{left:80.700000px;}
.x7e_c00494{left:95.700000px;}
.xf_c00494{left:97.500000px;}
.x52_c00494{left:98.550000px;}
.x32_c00494{left:99.600000px;}
.x46_c00494{left:108.450000px;}
.x82_c00494{left:110.100000px;}
.x85_c00494{left:115.950000px;}
.x2b_c00494{left:117.300000px;}
.x9_c00494{left:120.300000px;}
.x50_c00494{left:122.400000px;}
.x65_c00494{left:124.200000px;}
.x17_c00494{left:125.250000px;}
.x47_c00494{left:127.500000px;}
.xa7_c00494{left:129.450000px;}
.x53_c00494{left:130.950000px;}
.x78_c00494{left:132.750000px;}
.x7a_c00494{left:135.900000px;}
.x23_c00494{left:137.250000px;}
.x73_c00494{left:138.450000px;}
.x63_c00494{left:139.950000px;}
.x5_c00494{left:141.600000px;}
.x48_c00494{left:142.650000px;}
.xa1_c00494{left:146.850000px;}
.x96_c00494{left:148.650000px;}
.xa5_c00494{left:151.050000px;}
.x54_c00494{left:152.550000px;}
.x3c_c00494{left:154.200000px;}
.x10_c00494{left:155.850000px;}
.x5e_c00494{left:157.950000px;}
.x28_c00494{left:160.500000px;}
.x83_c00494{left:162.600000px;}
.x18_c00494{left:165.600000px;}
.x64_c00494{left:166.650000px;}
.x9a_c00494{left:168.300000px;}
.xa3_c00494{left:169.350000px;}
.x55_c00494{left:171.300000px;}
.x6b_c00494{left:173.250000px;}
.x33_c00494{left:174.450000px;}
.x92_c00494{left:176.250000px;}
.x42_c00494{left:178.650000px;}
.x6f_c00494{left:180.150000px;}
.x24_c00494{left:182.250000px;}
.x6c_c00494{left:184.050000px;}
.x5f_c00494{left:186.000000px;}
.x97_c00494{left:187.950000px;}
.x6_c00494{left:190.200000px;}
.x7f_c00494{left:192.150000px;}
.x75_c00494{left:194.400000px;}
.x2c_c00494{left:195.450000px;}
.x25_c00494{left:197.400000px;}
.x93_c00494{left:198.750000px;}
.x49_c00494{left:200.550000px;}
.x34_c00494{left:203.550000px;}
.xa_c00494{left:206.400000px;}
.x58_c00494{left:208.050000px;}
.x8d_c00494{left:210.150000px;}
.x3d_c00494{left:211.800000px;}
.x84_c00494{left:213.000000px;}
.x5c_c00494{left:214.950000px;}
.x11_c00494{left:217.050000px;}
.x43_c00494{left:218.250000px;}
.x19_c00494{left:219.600000px;}
.x7_c00494{left:220.800000px;}
.x7b_c00494{left:223.350000px;}
.x60_c00494{left:224.850000px;}
.x9e_c00494{left:226.500000px;}
.x3e_c00494{left:229.050000px;}
.x8e_c00494{left:230.700000px;}
.xb_c00494{left:231.900000px;}
.x80_c00494{left:234.300000px;}
.x66_c00494{left:235.800000px;}
.x2d_c00494{left:236.850000px;}
.x4a_c00494{left:239.100000px;}
.x35_c00494{left:240.600000px;}
.x76_c00494{left:243.300000px;}
.x26_c00494{left:244.500000px;}
.x8_c00494{left:247.050000px;}
.xa8_c00494{left:249.300000px;}
.x79_c00494{left:250.800000px;}
.x56_c00494{left:251.850000px;}
.x61_c00494{left:252.900000px;}
.x9b_c00494{left:255.000000px;}
.x98_c00494{left:256.200000px;}
.x1e_c00494{left:257.550000px;}
.x86_c00494{left:259.050000px;}
.x1a_c00494{left:262.050000px;}
.x44_c00494{left:263.250000px;}
.x27_c00494{left:264.300000px;}
.x87_c00494{left:265.950000px;}
.x4b_c00494{left:268.650000px;}
.x67_c00494{left:270.300000px;}
.x2e_c00494{left:271.800000px;}
.xc_c00494{left:273.600000px;}
.x6d_c00494{left:274.800000px;}
.x9d_c00494{left:275.850000px;}
.x1f_c00494{left:277.050000px;}
.x12_c00494{left:279.750000px;}
.x88_c00494{left:280.800000px;}
.x70_c00494{left:282.750000px;}
.x1b_c00494{left:284.400000px;}
.xa4_c00494{left:286.050000px;}
.x89_c00494{left:288.000000px;}
.x2f_c00494{left:289.200000px;}
.x68_c00494{left:291.150000px;}
.x81_c00494{left:292.200000px;}
.x6e_c00494{left:294.600000px;}
.x94_c00494{left:295.950000px;}
.x36_c00494{left:297.150000px;}
.x9f_c00494{left:299.250000px;}
.x57_c00494{left:300.450000px;}
.xa9_c00494{left:302.100000px;}
.x3f_c00494{left:303.150000px;}
.x30_c00494{left:305.100000px;}
.x37_c00494{left:307.200000px;}
.x59_c00494{left:308.550000px;}
.x29_c00494{left:310.200000px;}
.x90_c00494{left:311.400000px;}
.x13_c00494{left:314.250000px;}
.x77_c00494{left:315.600000px;}
.x8a_c00494{left:317.100000px;}
.x91_c00494{left:318.600000px;}
.x71_c00494{left:320.250000px;}
.x99_c00494{left:321.750000px;}
.xd_c00494{left:323.700000px;}
.x51_c00494{left:324.750000px;}
.x1_c00494{left:325.800000px;}
.x20_c00494{left:327.150000px;}
.xab_c00494{left:329.100000px;}
.x38_c00494{left:330.600000px;}
.x14_c00494{left:333.000000px;}
.x62_c00494{left:334.200000px;}
.x40_c00494{left:337.650000px;}
.xac_c00494{left:339.600000px;}
.xa6_c00494{left:340.800000px;}
.x8b_c00494{left:344.550000px;}
.x8f_c00494{left:345.600000px;}
.x72_c00494{left:347.250000px;}
.x5a_c00494{left:349.200000px;}
.x4c_c00494{left:350.400000px;}
.x39_c00494{left:352.500000px;}
.x1c_c00494{left:353.550000px;}
.x21_c00494{left:355.650000px;}
.x45_c00494{left:358.650000px;}
.xa2_c00494{left:361.350000px;}
.x31_c00494{left:364.500000px;}
.x7c_c00494{left:366.000000px;}
.x2a_c00494{left:367.050000px;}
.x4d_c00494{left:368.400000px;}
.x95_c00494{left:369.600000px;}
.x69_c00494{left:371.400000px;}
.x3a_c00494{left:373.800000px;}
.xe_c00494{left:375.900000px;}
.x1d_c00494{left:376.950000px;}
.x15_c00494{left:379.500000px;}
.x74_c00494{left:381.900000px;}
.x5b_c00494{left:384.150000px;}
.x9c_c00494{left:386.400000px;}
.x5d_c00494{left:387.450000px;}
.x4e_c00494{left:388.500000px;}
.x16_c00494{left:389.550000px;}
.x41_c00494{left:396.000000px;}
.x3b_c00494{left:399.750000px;}
.x7d_c00494{left:400.950000px;}
.x8c_c00494{left:402.450000px;}
.x4f_c00494{left:405.000000px;}
.xaa_c00494{left:406.800000px;}
.x6a_c00494{left:411.750000px;}
.x22_c00494{left:412.950000px;}
.xa0_c00494{left:420.300000px;}
.x13c_c00494{left:436.350000px;}
.x11f_c00494{left:437.400000px;}
.x138_c00494{left:453.600000px;}
.xf1_c00494{left:454.650000px;}
.xb6_c00494{left:456.150000px;}
.xad_c00494{left:457.500000px;}
.x14d_c00494{left:458.700000px;}
.xd7_c00494{left:464.400000px;}
.xb7_c00494{left:472.350000px;}
.xf2_c00494{left:475.500000px;}
.x10d_c00494{left:477.300000px;}
.x145_c00494{left:478.800000px;}
.x110_c00494{left:481.650000px;}
.xe4_c00494{left:482.700000px;}
.x148_c00494{left:484.950000px;}
.xec_c00494{left:486.000000px;}
.xf9_c00494{left:487.950000px;}
.x11c_c00494{left:489.300000px;}
.x10b_c00494{left:491.400000px;}
.xcf_c00494{left:492.600000px;}
.xb8_c00494{left:493.650000px;}
.xae_c00494{left:498.150000px;}
.xe8_c00494{left:499.200000px;}
.x12d_c00494{left:501.600000px;}
.x114_c00494{left:502.650000px;}
.x150_c00494{left:503.700000px;}
.xc6_c00494{left:505.200000px;}
.x127_c00494{left:506.700000px;}
.xdf_c00494{left:507.900000px;}
.xfa_c00494{left:509.250000px;}
.xe5_c00494{left:510.750000px;}
.xd0_c00494{left:512.700000px;}
.x146_c00494{left:514.050000px;}
.x135_c00494{left:515.400000px;}
.xaf_c00494{left:518.250000px;}
.x102_c00494{left:519.600000px;}
.xed_c00494{left:520.950000px;}
.x104_c00494{left:522.450000px;}
.x128_c00494{left:523.950000px;}
.xc7_c00494{left:525.750000px;}
.xc0_c00494{left:528.900000px;}
.xd1_c00494{left:530.400000px;}
.x115_c00494{left:531.600000px;}
.x121_c00494{left:532.650000px;}
.xd8_c00494{left:534.600000px;}
.xb9_c00494{left:536.550000px;}
.xe0_c00494{left:538.200000px;}
.x10c_c00494{left:539.250000px;}
.x13e_c00494{left:540.300000px;}
.xe9_c00494{left:541.350000px;}
.x144_c00494{left:543.000000px;}
.x139_c00494{left:544.350000px;}
.x108_c00494{left:545.850000px;}
.x131_c00494{left:547.200000px;}
.xfd_c00494{left:550.050000px;}
.x116_c00494{left:551.700000px;}
.xc8_c00494{left:552.750000px;}
.xb0_c00494{left:553.950000px;}
.x125_c00494{left:556.500000px;}
.xf3_c00494{left:557.850000px;}
.x129_c00494{left:559.950000px;}
.x140_c00494{left:562.200000px;}
.x132_c00494{left:564.450000px;}
.xea_c00494{left:566.850000px;}
.xc9_c00494{left:569.700000px;}
.x109_c00494{left:570.750000px;}
.xba_c00494{left:574.050000px;}
.xd9_c00494{left:575.250000px;}
.x10e_c00494{left:578.400000px;}
.x117_c00494{left:580.200000px;}
.xb1_c00494{left:582.450000px;}
.xe1_c00494{left:583.500000px;}
.xd2_c00494{left:586.950000px;}
.x111_c00494{left:588.000000px;}
.xf4_c00494{left:589.200000px;}
.xca_c00494{left:590.550000px;}
.xbb_c00494{left:594.150000px;}
.x149_c00494{left:595.500000px;}
.xfe_c00494{left:596.550000px;}
.xb2_c00494{left:598.650000px;}
.xee_c00494{left:601.200000px;}
.x2_c00494{left:603.300000px;}
.xcb_c00494{left:606.750000px;}
.x124_c00494{left:608.400000px;}
.x12e_c00494{left:609.900000px;}
.xef_c00494{left:611.250000px;}
.xe6_c00494{left:615.900000px;}
.x105_c00494{left:618.450000px;}
.xc1_c00494{left:619.650000px;}
.x103_c00494{left:621.450000px;}
.xe2_c00494{left:623.100000px;}
.xda_c00494{left:625.650000px;}
.xbc_c00494{left:627.600000px;}
.xc2_c00494{left:629.400000px;}
.xf5_c00494{left:630.900000px;}
.x14e_c00494{left:633.300000px;}
.x133_c00494{left:634.650000px;}
.x12a_c00494{left:639.450000px;}
.x14a_c00494{left:643.050000px;}
.x11d_c00494{left:644.250000px;}
.xb3_c00494{left:645.450000px;}
.x10a_c00494{left:647.850000px;}
.x123_c00494{left:649.950000px;}
.xc3_c00494{left:651.000000px;}
.xdb_c00494{left:652.650000px;}
.x13d_c00494{left:654.750000px;}
.xd3_c00494{left:655.950000px;}
.xe3_c00494{left:658.800000px;}
.xcc_c00494{left:661.800000px;}
.x11a_c00494{left:662.850000px;}
.x12f_c00494{left:663.900000px;}
.x14b_c00494{left:666.450000px;}
.x151_c00494{left:667.500000px;}
.xdc_c00494{left:668.550000px;}
.x14f_c00494{left:669.600000px;}
.xcd_c00494{left:670.800000px;}
.xbd_c00494{left:672.600000px;}
.x120_c00494{left:673.950000px;}
.x13a_c00494{left:675.000000px;}
.xeb_c00494{left:676.350000px;}
.x136_c00494{left:679.050000px;}
.xf6_c00494{left:681.000000px;}
.x147_c00494{left:682.050000px;}
.xfb_c00494{left:683.400000px;}
.x152_c00494{left:684.450000px;}
.xd4_c00494{left:686.850000px;}
.x106_c00494{left:689.400000px;}
.xc4_c00494{left:691.350000px;}
.x142_c00494{left:693.750000px;}
.x112_c00494{left:695.250000px;}
.x118_c00494{left:697.350000px;}
.xe7_c00494{left:698.700000px;}
.xb4_c00494{left:700.500000px;}
.x130_c00494{left:701.700000px;}
.xf7_c00494{left:702.900000px;}
.x13b_c00494{left:704.550000px;}
.x10f_c00494{left:705.900000px;}
.x11e_c00494{left:708.000000px;}
.x122_c00494{left:709.350000px;}
.xce_c00494{left:710.400000px;}
.x141_c00494{left:711.600000px;}
.x137_c00494{left:713.550000px;}
.x12b_c00494{left:715.800000px;}
.x119_c00494{left:718.650000px;}
.xbe_c00494{left:719.700000px;}
.xdd_c00494{left:722.850000px;}
.xff_c00494{left:724.350000px;}
.xf8_c00494{left:727.350000px;}
.xd5_c00494{left:729.300000px;}
.xb5_c00494{left:730.350000px;}
.x11b_c00494{left:732.300000px;}
.x143_c00494{left:734.400000px;}
.x13f_c00494{left:737.400000px;}
.xf0_c00494{left:738.750000px;}
.x14c_c00494{left:740.250000px;}
.xde_c00494{left:742.650000px;}
.xbf_c00494{left:743.850000px;}
.xfc_c00494{left:744.900000px;}
.x3_c00494{left:746.250000px;}
.x134_c00494{left:747.900000px;}
.x12c_c00494{left:749.250000px;}
.x126_c00494{left:753.000000px;}
.x101_c00494{left:757.500000px;}
.xc5_c00494{left:759.000000px;}
.x107_c00494{left:760.350000px;}
.x100_c00494{left:761.400000px;}
.xd6_c00494{left:762.750000px;}
.x113_c00494{left:768.300000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.wsb_c00494{word-spacing:-6.805556pt;}
.ws9_c00494{word-spacing:-5.380117pt;}
.ws12_c00494{word-spacing:-5.340521pt;}
.ws11_c00494{word-spacing:-2.814815pt;}
.ws10_c00494{word-spacing:-1.214990pt;}
.ws13_c00494{word-spacing:0.000000pt;}
.ws2_c00494{word-spacing:0.161484pt;}
.ws1_c00494{word-spacing:1.777778pt;}
.wsf_c00494{word-spacing:2.962963pt;}
.wse_c00494{word-spacing:3.690544pt;}
.wsd_c00494{word-spacing:16.111111pt;}
.ws3_c00494{word-spacing:19.682540pt;}
.ws0_c00494{word-spacing:20.044105pt;}
.ws6_c00494{word-spacing:22.857143pt;}
.ws7_c00494{word-spacing:26.031746pt;}
.ws5_c00494{word-spacing:31.851852pt;}
.wsc_c00494{word-spacing:35.555556pt;}
.ws4_c00494{word-spacing:39.259259pt;}
.ws8_c00494{word-spacing:57.777778pt;}
.wsa_c00494{word-spacing:68.271605pt;}
._4_c00494{width:49.523810pt;}
._0_c00494{width:58.518519pt;}
._1_c00494{width:62.222222pt;}
._2_c00494{width:65.925926pt;}
._3_c00494{width:86.783626pt;}
.fs5_c00494{font-size:42.666667pt;}
.fs6_c00494{font-size:48.000000pt;}
.fs3_c00494{font-size:53.333333pt;}
.fs1_c00494{font-size:58.666667pt;}
.fs4_c00494{font-size:64.000000pt;}
.fs2_c00494{font-size:69.333333pt;}
.fs0_c00494{font-size:74.666667pt;}
.y0_c00494{bottom:0.000000pt;}
.y6c_c00494{bottom:157.066667pt;}
.y39_c00494{bottom:172.666667pt;}
.y6b_c00494{bottom:173.066667pt;}
.y38_c00494{bottom:188.666667pt;}
.y6a_c00494{bottom:189.066667pt;}
.y37_c00494{bottom:204.666667pt;}
.y69_c00494{bottom:204.800000pt;}
.y36_c00494{bottom:220.400000pt;}
.y68_c00494{bottom:220.800000pt;}
.y35_c00494{bottom:236.400000pt;}
.y67_c00494{bottom:236.800000pt;}
.y34_c00494{bottom:252.133333pt;}
.y66_c00494{bottom:252.533333pt;}
.y33_c00494{bottom:268.133333pt;}
.y65_c00494{bottom:272.000000pt;}
.y32_c00494{bottom:283.866667pt;}
.y64_c00494{bottom:295.200000pt;}
.y31_c00494{bottom:299.733333pt;}
.y63_c00494{bottom:311.200000pt;}
.y30_c00494{bottom:315.466667pt;}
.y62_c00494{bottom:326.933333pt;}
.y2f_c00494{bottom:331.466667pt;}
.y61_c00494{bottom:342.666667pt;}
.y2e_c00494{bottom:347.200000pt;}
.y60_c00494{bottom:358.400000pt;}
.y2d_c00494{bottom:363.200000pt;}
.y5f_c00494{bottom:374.133333pt;}
.y2c_c00494{bottom:379.200000pt;}
.y5e_c00494{bottom:397.466667pt;}
.y2b_c00494{bottom:397.600000pt;}
.y2a_c00494{bottom:411.066667pt;}
.y5d_c00494{bottom:413.733333pt;}
.y29_c00494{bottom:423.600000pt;}
.y5c_c00494{bottom:429.066667pt;}
.y28_c00494{bottom:436.133333pt;}
.y27_c00494{bottom:447.333333pt;}
.y5b_c00494{bottom:448.666667pt;}
.y26_c00494{bottom:462.000000pt;}
.y5a_c00494{bottom:464.666667pt;}
.y25_c00494{bottom:474.533333pt;}
.y59_c00494{bottom:480.400000pt;}
.y24_c00494{bottom:492.800000pt;}
.y58_c00494{bottom:496.133333pt;}
.y23_c00494{bottom:500.133333pt;}
.y22_c00494{bottom:511.333333pt;}
.y57_c00494{bottom:512.133333pt;}
.y21_c00494{bottom:525.466667pt;}
.y56_c00494{bottom:527.866667pt;}
.y20_c00494{bottom:536.666667pt;}
.y55_c00494{bottom:543.866667pt;}
.y1f_c00494{bottom:549.733333pt;}
.y54_c00494{bottom:559.600000pt;}
.y3_c00494{bottom:562.933333pt;}
.y1e_c00494{bottom:563.866667pt;}
.y53_c00494{bottom:575.333333pt;}
.y1d_c00494{bottom:579.733333pt;}
.y52_c00494{bottom:591.066667pt;}
.y1c_c00494{bottom:596.000000pt;}
.y51_c00494{bottom:610.666667pt;}
.y1b_c00494{bottom:611.733333pt;}
.y50_c00494{bottom:626.666667pt;}
.y1a_c00494{bottom:627.733333pt;}
.y4f_c00494{bottom:642.666667pt;}
.y19_c00494{bottom:643.466667pt;}
.y4e_c00494{bottom:658.400000pt;}
.y18_c00494{bottom:659.200000pt;}
.y4d_c00494{bottom:674.133333pt;}
.y17_c00494{bottom:674.933333pt;}
.y4c_c00494{bottom:690.133333pt;}
.y16_c00494{bottom:690.533333pt;}
.y4b_c00494{bottom:705.866667pt;}
.y15_c00494{bottom:709.066667pt;}
.y4a_c00494{bottom:721.866667pt;}
.y14_c00494{bottom:725.600000pt;}
.y49_c00494{bottom:737.600000pt;}
.y13_c00494{bottom:741.866667pt;}
.y48_c00494{bottom:753.600000pt;}
.y12_c00494{bottom:757.200000pt;}
.y47_c00494{bottom:769.333333pt;}
.y11_c00494{bottom:773.200000pt;}
.y46_c00494{bottom:785.333333pt;}
.y10_c00494{bottom:789.200000pt;}
.y45_c00494{bottom:804.533333pt;}
.yf_c00494{bottom:804.933333pt;}
.y44_c00494{bottom:820.800000pt;}
.ye_c00494{bottom:820.933333pt;}
.yd_c00494{bottom:836.666667pt;}
.y43_c00494{bottom:839.733333pt;}
.yc_c00494{bottom:852.666667pt;}
.y42_c00494{bottom:856.666667pt;}
.yb_c00494{bottom:868.400000pt;}
.y41_c00494{bottom:872.666667pt;}
.ya_c00494{bottom:884.133333pt;}
.y40_c00494{bottom:888.666667pt;}
.y9_c00494{bottom:904.000000pt;}
.y3f_c00494{bottom:920.000000pt;}
.y8_c00494{bottom:931.466667pt;}
.y3e_c00494{bottom:935.600000pt;}
.y7_c00494{bottom:948.400000pt;}
.y3d_c00494{bottom:951.600000pt;}
.y6_c00494{bottom:964.400000pt;}
.y3c_c00494{bottom:967.333333pt;}
.y5_c00494{bottom:981.066667pt;}
.y3b_c00494{bottom:983.333333pt;}
.y4_c00494{bottom:996.133333pt;}
.y3a_c00494{bottom:999.333333pt;}
.y2_c00494{bottom:1018.933333pt;}
.y1_c00494{bottom:1025.333333pt;}
.h7_c00494{height:42.666667pt;}
.h8_c00494{height:48.000000pt;}
.h5_c00494{height:53.333333pt;}
.h3_c00494{height:58.666667pt;}
.h6_c00494{height:64.000000pt;}
.h4_c00494{height:69.333333pt;}
.h2_c00494{height:74.666667pt;}
.h0_c00494{height:1129.280029pt;}
.h1_c00494{height:1129.333333pt;}
.w0_c00494{width:851.840007pt;}
.w1_c00494{width:852.000000pt;}
.x0_c00494{left:0.000000pt;}
.x4_c00494{left:71.733333pt;}
.x7e_c00494{left:85.066667pt;}
.xf_c00494{left:86.666667pt;}
.x52_c00494{left:87.600000pt;}
.x32_c00494{left:88.533333pt;}
.x46_c00494{left:96.400000pt;}
.x82_c00494{left:97.866667pt;}
.x85_c00494{left:103.066667pt;}
.x2b_c00494{left:104.266667pt;}
.x9_c00494{left:106.933333pt;}
.x50_c00494{left:108.800000pt;}
.x65_c00494{left:110.400000pt;}
.x17_c00494{left:111.333333pt;}
.x47_c00494{left:113.333333pt;}
.xa7_c00494{left:115.066667pt;}
.x53_c00494{left:116.400000pt;}
.x78_c00494{left:118.000000pt;}
.x7a_c00494{left:120.800000pt;}
.x23_c00494{left:122.000000pt;}
.x73_c00494{left:123.066667pt;}
.x63_c00494{left:124.400000pt;}
.x5_c00494{left:125.866667pt;}
.x48_c00494{left:126.800000pt;}
.xa1_c00494{left:130.533333pt;}
.x96_c00494{left:132.133333pt;}
.xa5_c00494{left:134.266667pt;}
.x54_c00494{left:135.600000pt;}
.x3c_c00494{left:137.066667pt;}
.x10_c00494{left:138.533333pt;}
.x5e_c00494{left:140.400000pt;}
.x28_c00494{left:142.666667pt;}
.x83_c00494{left:144.533333pt;}
.x18_c00494{left:147.200000pt;}
.x64_c00494{left:148.133333pt;}
.x9a_c00494{left:149.600000pt;}
.xa3_c00494{left:150.533333pt;}
.x55_c00494{left:152.266667pt;}
.x6b_c00494{left:154.000000pt;}
.x33_c00494{left:155.066667pt;}
.x92_c00494{left:156.666667pt;}
.x42_c00494{left:158.800000pt;}
.x6f_c00494{left:160.133333pt;}
.x24_c00494{left:162.000000pt;}
.x6c_c00494{left:163.600000pt;}
.x5f_c00494{left:165.333333pt;}
.x97_c00494{left:167.066667pt;}
.x6_c00494{left:169.066667pt;}
.x7f_c00494{left:170.800000pt;}
.x75_c00494{left:172.800000pt;}
.x2c_c00494{left:173.733333pt;}
.x25_c00494{left:175.466667pt;}
.x93_c00494{left:176.666667pt;}
.x49_c00494{left:178.266667pt;}
.x34_c00494{left:180.933333pt;}
.xa_c00494{left:183.466667pt;}
.x58_c00494{left:184.933333pt;}
.x8d_c00494{left:186.800000pt;}
.x3d_c00494{left:188.266667pt;}
.x84_c00494{left:189.333333pt;}
.x5c_c00494{left:191.066667pt;}
.x11_c00494{left:192.933333pt;}
.x43_c00494{left:194.000000pt;}
.x19_c00494{left:195.200000pt;}
.x7_c00494{left:196.266667pt;}
.x7b_c00494{left:198.533333pt;}
.x60_c00494{left:199.866667pt;}
.x9e_c00494{left:201.333333pt;}
.x3e_c00494{left:203.600000pt;}
.x8e_c00494{left:205.066667pt;}
.xb_c00494{left:206.133333pt;}
.x80_c00494{left:208.266667pt;}
.x66_c00494{left:209.600000pt;}
.x2d_c00494{left:210.533333pt;}
.x4a_c00494{left:212.533333pt;}
.x35_c00494{left:213.866667pt;}
.x76_c00494{left:216.266667pt;}
.x26_c00494{left:217.333333pt;}
.x8_c00494{left:219.600000pt;}
.xa8_c00494{left:221.600000pt;}
.x79_c00494{left:222.933333pt;}
.x56_c00494{left:223.866667pt;}
.x61_c00494{left:224.800000pt;}
.x9b_c00494{left:226.666667pt;}
.x98_c00494{left:227.733333pt;}
.x1e_c00494{left:228.933333pt;}
.x86_c00494{left:230.266667pt;}
.x1a_c00494{left:232.933333pt;}
.x44_c00494{left:234.000000pt;}
.x27_c00494{left:234.933333pt;}
.x87_c00494{left:236.400000pt;}
.x4b_c00494{left:238.800000pt;}
.x67_c00494{left:240.266667pt;}
.x2e_c00494{left:241.600000pt;}
.xc_c00494{left:243.200000pt;}
.x6d_c00494{left:244.266667pt;}
.x9d_c00494{left:245.200000pt;}
.x1f_c00494{left:246.266667pt;}
.x12_c00494{left:248.666667pt;}
.x88_c00494{left:249.600000pt;}
.x70_c00494{left:251.333333pt;}
.x1b_c00494{left:252.800000pt;}
.xa4_c00494{left:254.266667pt;}
.x89_c00494{left:256.000000pt;}
.x2f_c00494{left:257.066667pt;}
.x68_c00494{left:258.800000pt;}
.x81_c00494{left:259.733333pt;}
.x6e_c00494{left:261.866667pt;}
.x94_c00494{left:263.066667pt;}
.x36_c00494{left:264.133333pt;}
.x9f_c00494{left:266.000000pt;}
.x57_c00494{left:267.066667pt;}
.xa9_c00494{left:268.533333pt;}
.x3f_c00494{left:269.466667pt;}
.x30_c00494{left:271.200000pt;}
.x37_c00494{left:273.066667pt;}
.x59_c00494{left:274.266667pt;}
.x29_c00494{left:275.733333pt;}
.x90_c00494{left:276.800000pt;}
.x13_c00494{left:279.333333pt;}
.x77_c00494{left:280.533333pt;}
.x8a_c00494{left:281.866667pt;}
.x91_c00494{left:283.200000pt;}
.x71_c00494{left:284.666667pt;}
.x99_c00494{left:286.000000pt;}
.xd_c00494{left:287.733333pt;}
.x51_c00494{left:288.666667pt;}
.x1_c00494{left:289.600000pt;}
.x20_c00494{left:290.800000pt;}
.xab_c00494{left:292.533333pt;}
.x38_c00494{left:293.866667pt;}
.x14_c00494{left:296.000000pt;}
.x62_c00494{left:297.066667pt;}
.x40_c00494{left:300.133333pt;}
.xac_c00494{left:301.866667pt;}
.xa6_c00494{left:302.933333pt;}
.x8b_c00494{left:306.266667pt;}
.x8f_c00494{left:307.200000pt;}
.x72_c00494{left:308.666667pt;}
.x5a_c00494{left:310.400000pt;}
.x4c_c00494{left:311.466667pt;}
.x39_c00494{left:313.333333pt;}
.x1c_c00494{left:314.266667pt;}
.x21_c00494{left:316.133333pt;}
.x45_c00494{left:318.800000pt;}
.xa2_c00494{left:321.200000pt;}
.x31_c00494{left:324.000000pt;}
.x7c_c00494{left:325.333333pt;}
.x2a_c00494{left:326.266667pt;}
.x4d_c00494{left:327.466667pt;}
.x95_c00494{left:328.533333pt;}
.x69_c00494{left:330.133333pt;}
.x3a_c00494{left:332.266667pt;}
.xe_c00494{left:334.133333pt;}
.x1d_c00494{left:335.066667pt;}
.x15_c00494{left:337.333333pt;}
.x74_c00494{left:339.466667pt;}
.x5b_c00494{left:341.466667pt;}
.x9c_c00494{left:343.466667pt;}
.x5d_c00494{left:344.400000pt;}
.x4e_c00494{left:345.333333pt;}
.x16_c00494{left:346.266667pt;}
.x41_c00494{left:352.000000pt;}
.x3b_c00494{left:355.333333pt;}
.x7d_c00494{left:356.400000pt;}
.x8c_c00494{left:357.733333pt;}
.x4f_c00494{left:360.000000pt;}
.xaa_c00494{left:361.600000pt;}
.x6a_c00494{left:366.000000pt;}
.x22_c00494{left:367.066667pt;}
.xa0_c00494{left:373.600000pt;}
.x13c_c00494{left:387.866667pt;}
.x11f_c00494{left:388.800000pt;}
.x138_c00494{left:403.200000pt;}
.xf1_c00494{left:404.133333pt;}
.xb6_c00494{left:405.466667pt;}
.xad_c00494{left:406.666667pt;}
.x14d_c00494{left:407.733333pt;}
.xd7_c00494{left:412.800000pt;}
.xb7_c00494{left:419.866667pt;}
.xf2_c00494{left:422.666667pt;}
.x10d_c00494{left:424.266667pt;}
.x145_c00494{left:425.600000pt;}
.x110_c00494{left:428.133333pt;}
.xe4_c00494{left:429.066667pt;}
.x148_c00494{left:431.066667pt;}
.xec_c00494{left:432.000000pt;}
.xf9_c00494{left:433.733333pt;}
.x11c_c00494{left:434.933333pt;}
.x10b_c00494{left:436.800000pt;}
.xcf_c00494{left:437.866667pt;}
.xb8_c00494{left:438.800000pt;}
.xae_c00494{left:442.800000pt;}
.xe8_c00494{left:443.733333pt;}
.x12d_c00494{left:445.866667pt;}
.x114_c00494{left:446.800000pt;}
.x150_c00494{left:447.733333pt;}
.xc6_c00494{left:449.066667pt;}
.x127_c00494{left:450.400000pt;}
.xdf_c00494{left:451.466667pt;}
.xfa_c00494{left:452.666667pt;}
.xe5_c00494{left:454.000000pt;}
.xd0_c00494{left:455.733333pt;}
.x146_c00494{left:456.933333pt;}
.x135_c00494{left:458.133333pt;}
.xaf_c00494{left:460.666667pt;}
.x102_c00494{left:461.866667pt;}
.xed_c00494{left:463.066667pt;}
.x104_c00494{left:464.400000pt;}
.x128_c00494{left:465.733333pt;}
.xc7_c00494{left:467.333333pt;}
.xc0_c00494{left:470.133333pt;}
.xd1_c00494{left:471.466667pt;}
.x115_c00494{left:472.533333pt;}
.x121_c00494{left:473.466667pt;}
.xd8_c00494{left:475.200000pt;}
.xb9_c00494{left:476.933333pt;}
.xe0_c00494{left:478.400000pt;}
.x10c_c00494{left:479.333333pt;}
.x13e_c00494{left:480.266667pt;}
.xe9_c00494{left:481.200000pt;}
.x144_c00494{left:482.666667pt;}
.x139_c00494{left:483.866667pt;}
.x108_c00494{left:485.200000pt;}
.x131_c00494{left:486.400000pt;}
.xfd_c00494{left:488.933333pt;}
.x116_c00494{left:490.400000pt;}
.xc8_c00494{left:491.333333pt;}
.xb0_c00494{left:492.400000pt;}
.x125_c00494{left:494.666667pt;}
.xf3_c00494{left:495.866667pt;}
.x129_c00494{left:497.733333pt;}
.x140_c00494{left:499.733333pt;}
.x132_c00494{left:501.733333pt;}
.xea_c00494{left:503.866667pt;}
.xc9_c00494{left:506.400000pt;}
.x109_c00494{left:507.333333pt;}
.xba_c00494{left:510.266667pt;}
.xd9_c00494{left:511.333333pt;}
.x10e_c00494{left:514.133333pt;}
.x117_c00494{left:515.733333pt;}
.xb1_c00494{left:517.733333pt;}
.xe1_c00494{left:518.666667pt;}
.xd2_c00494{left:521.733333pt;}
.x111_c00494{left:522.666667pt;}
.xf4_c00494{left:523.733333pt;}
.xca_c00494{left:524.933333pt;}
.xbb_c00494{left:528.133333pt;}
.x149_c00494{left:529.333333pt;}
.xfe_c00494{left:530.266667pt;}
.xb2_c00494{left:532.133333pt;}
.xee_c00494{left:534.400000pt;}
.x2_c00494{left:536.266667pt;}
.xcb_c00494{left:539.333333pt;}
.x124_c00494{left:540.800000pt;}
.x12e_c00494{left:542.133333pt;}
.xef_c00494{left:543.333333pt;}
.xe6_c00494{left:547.466667pt;}
.x105_c00494{left:549.733333pt;}
.xc1_c00494{left:550.800000pt;}
.x103_c00494{left:552.400000pt;}
.xe2_c00494{left:553.866667pt;}
.xda_c00494{left:556.133333pt;}
.xbc_c00494{left:557.866667pt;}
.xc2_c00494{left:559.466667pt;}
.xf5_c00494{left:560.800000pt;}
.x14e_c00494{left:562.933333pt;}
.x133_c00494{left:564.133333pt;}
.x12a_c00494{left:568.400000pt;}
.x14a_c00494{left:571.600000pt;}
.x11d_c00494{left:572.666667pt;}
.xb3_c00494{left:573.733333pt;}
.x10a_c00494{left:575.866667pt;}
.x123_c00494{left:577.733333pt;}
.xc3_c00494{left:578.666667pt;}
.xdb_c00494{left:580.133333pt;}
.x13d_c00494{left:582.000000pt;}
.xd3_c00494{left:583.066667pt;}
.xe3_c00494{left:585.600000pt;}
.xcc_c00494{left:588.266667pt;}
.x11a_c00494{left:589.200000pt;}
.x12f_c00494{left:590.133333pt;}
.x14b_c00494{left:592.400000pt;}
.x151_c00494{left:593.333333pt;}
.xdc_c00494{left:594.266667pt;}
.x14f_c00494{left:595.200000pt;}
.xcd_c00494{left:596.266667pt;}
.xbd_c00494{left:597.866667pt;}
.x120_c00494{left:599.066667pt;}
.x13a_c00494{left:600.000000pt;}
.xeb_c00494{left:601.200000pt;}
.x136_c00494{left:603.600000pt;}
.xf6_c00494{left:605.333333pt;}
.x147_c00494{left:606.266667pt;}
.xfb_c00494{left:607.466667pt;}
.x152_c00494{left:608.400000pt;}
.xd4_c00494{left:610.533333pt;}
.x106_c00494{left:612.800000pt;}
.xc4_c00494{left:614.533333pt;}
.x142_c00494{left:616.666667pt;}
.x112_c00494{left:618.000000pt;}
.x118_c00494{left:619.866667pt;}
.xe7_c00494{left:621.066667pt;}
.xb4_c00494{left:622.666667pt;}
.x130_c00494{left:623.733333pt;}
.xf7_c00494{left:624.800000pt;}
.x13b_c00494{left:626.266667pt;}
.x10f_c00494{left:627.466667pt;}
.x11e_c00494{left:629.333333pt;}
.x122_c00494{left:630.533333pt;}
.xce_c00494{left:631.466667pt;}
.x141_c00494{left:632.533333pt;}
.x137_c00494{left:634.266667pt;}
.x12b_c00494{left:636.266667pt;}
.x119_c00494{left:638.800000pt;}
.xbe_c00494{left:639.733333pt;}
.xdd_c00494{left:642.533333pt;}
.xff_c00494{left:643.866667pt;}
.xf8_c00494{left:646.533333pt;}
.xd5_c00494{left:648.266667pt;}
.xb5_c00494{left:649.200000pt;}
.x11b_c00494{left:650.933333pt;}
.x143_c00494{left:652.800000pt;}
.x13f_c00494{left:655.466667pt;}
.xf0_c00494{left:656.666667pt;}
.x14c_c00494{left:658.000000pt;}
.xde_c00494{left:660.133333pt;}
.xbf_c00494{left:661.200000pt;}
.xfc_c00494{left:662.133333pt;}
.x3_c00494{left:663.333333pt;}
.x134_c00494{left:664.800000pt;}
.x12c_c00494{left:666.000000pt;}
.x126_c00494{left:669.333333pt;}
.x101_c00494{left:673.333333pt;}
.xc5_c00494{left:674.666667pt;}
.x107_c00494{left:675.866667pt;}
.x100_c00494{left:676.800000pt;}
.xd6_c00494{left:678.000000pt;}
.x113_c00494{left:682.933333pt;}
}





/* 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_c00495 {
    display:none;
  }
  .loading-indicator_c00495.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00495 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_c00495 { 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_c00495" -> "#page-container .classname_c00495")
 */
.pf_c00495 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00495 { /* 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_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00495 { /* 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_c00495 { /* 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_c00495 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00495 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00495 {overflow:visible;}
  }
}
.c_c00495 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00495 { /* 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_c00495:after { /* webkit #35443 */
  content: '';
}
.t_c00495:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00495 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 */
}
.__c00495 { /* 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_c00495 { /* info for Javascript */
  display:none;
}
.l_c00495 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00495 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00495 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00495: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_c00495 {
    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_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00495.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_c00495 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00495{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00495;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00495{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m123_c00495{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m81_c00495{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00495{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m117_c00495{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m75_c00495{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00495{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m116_c00495{transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);}
.m41_c00495{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.me3_c00495{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00495{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m74_c00495{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m36_c00495{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m12c_c00495{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m132_c00495{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m76_c00495{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00495{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.maa_c00495{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00495{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m133_c00495{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m122_c00495{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m84_c00495{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m136_c00495{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m72_c00495{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00495{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m125_c00495{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m70_c00495{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00495{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m78_c00495{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m127_c00495{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.me7_c00495{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m135_c00495{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m47_c00495{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00495{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00495{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m49_c00495{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c00495{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m35_c00495{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00495{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m16_c00495{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m5_c00495{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00495{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m18_c00495{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00495{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m9_c00495{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00495{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00495{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m95_c00495{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00495{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m88_c00495{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00495{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00495{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m121_c00495{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m21_c00495{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.me8_c00495{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00495{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m25_c00495{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m106_c00495{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00495{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m37_c00495{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb_c00495{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m118_c00495{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00495{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00495{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m7_c00495{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m15_c00495{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00495{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m65_c00495{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00495{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00495{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00495{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00495{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00495{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00495{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00495{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00495{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m34_c00495{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.md7_c00495{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.md9_c00495{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m114_c00495{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m29_c00495{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10_c00495{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00495{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m24_c00495{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00495{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m28_c00495{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00495{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m42_c00495{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00495{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m33_c00495{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4_c00495{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m44_c00495{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m86_c00495{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mba_c00495{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m26_c00495{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m94_c00495{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00495{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00495{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00495{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m52_c00495{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00495{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m11_c00495{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m67_c00495{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m68_c00495{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m73_c00495{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m50_c00495{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00495{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00495{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00495{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.me4_c00495{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.me_c00495{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00495{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00495{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00495{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m48_c00495{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mac_c00495{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00495{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m93_c00495{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mda_c00495{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00495{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00495{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m112_c00495{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m83_c00495{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00495{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00495{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mce_c00495{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me9_c00495{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00495{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m90_c00495{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m13_c00495{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mef_c00495{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00495{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00495{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.ma_c00495{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00495{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00495{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00495{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m51_c00495{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m69_c00495{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00495{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00495{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m87_c00495{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00495{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m40_c00495{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00495{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00495{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00495{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00495{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00495{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m104_c00495{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m115_c00495{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00495{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m20_c00495{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m57_c00495{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me6_c00495{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m119_c00495{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.med_c00495{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m27_c00495{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00495{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m58_c00495{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m14_c00495{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00495{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mca_c00495{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m80_c00495{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m22_c00495{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00495{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00495{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6_c00495{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00495{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m79_c00495{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md0_c00495{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00495{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00495{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00495{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m53_c00495{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m54_c00495{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m31_c00495{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00495{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00495{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m63_c00495{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m66_c00495{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00495{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m98_c00495{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m129_c00495{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00495{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.md4_c00495{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m55_c00495{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00495{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00495{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m97_c00495{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00495{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00495{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m59_c00495{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc_c00495{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m110_c00495{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.md3_c00495{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf_c00495{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m17_c00495{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00495{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00495{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mab_c00495{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mf5_c00495{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00495{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m89_c00495{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m12_c00495{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m131_c00495{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00495{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00495{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m92_c00495{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00495{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00495{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00495{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00495{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m56_c00495{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00495{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00495{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.maf_c00495{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00495{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mae_c00495{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00495{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.me1_c00495{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00495{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m61_c00495{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00495{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00495{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00495{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m102_c00495{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00495{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m103_c00495{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00495{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00495{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m101_c00495{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00495{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m62_c00495{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.me5_c00495{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m46_c00495{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m111_c00495{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00495{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00495{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00495{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m130_c00495{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.me2_c00495{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00495{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m23_c00495{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00495{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00495{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m91_c00495{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m45_c00495{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m99_c00495{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mde_c00495{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m85_c00495{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);}
.m71_c00495{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mad_c00495{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m77_c00495{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mea_c00495{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m105_c00495{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00495{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00495{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m39_c00495{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00495{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00495{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00495{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00495{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m108_c00495{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00495{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.meb_c00495{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00495{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00495{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m96_c00495{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m60_c00495{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me0_c00495{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m120_c00495{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md1_c00495{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00495{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m126_c00495{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m64_c00495{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00495{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.md6_c00495{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m30_c00495{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00495{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00495{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.md2_c00495{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md_c00495{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00495{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m109_c00495{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m134_c00495{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mff_c00495{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00495{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00495{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00495{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m113_c00495{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.mee_c00495{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00495{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.md8_c00495{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.md5_c00495{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mec_c00495{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m100_c00495{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00495{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00495{transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);}
.m43_c00495{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00495{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.m107_c00495{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m38_c00495{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m128_c00495{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m124_c00495{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{transform:matrix(0.445500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445500,0.000000,0.000000,0.250000,0,0);}
.m82_c00495{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00495{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m32_c00495{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls0_c00495{letter-spacing:0.000000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{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__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00495{word-spacing:-11.023502px;}
.ws0_c00495{word-spacing:-7.592920px;}
.ws8_c00495{word-spacing:-7.261905px;}
.wsf_c00495{word-spacing:-2.711864px;}
.ws15_c00495{word-spacing:0.000000px;}
.wsa_c00495{word-spacing:4.500000px;}
.ws9_c00495{word-spacing:7.418655px;}
.ws10_c00495{word-spacing:12.000000px;}
.ws12_c00495{word-spacing:13.428571px;}
.ws11_c00495{word-spacing:17.714286px;}
.ws5_c00495{word-spacing:22.142857px;}
.ws3_c00495{word-spacing:25.714286px;}
.ws13_c00495{word-spacing:26.428954px;}
.ws2_c00495{word-spacing:29.285714px;}
.wsd_c00495{word-spacing:35.833333px;}
.ws14_c00495{word-spacing:36.000000px;}
.wsc_c00495{word-spacing:40.000000px;}
.ws4_c00495{word-spacing:44.166667px;}
.wsb_c00495{word-spacing:65.000000px;}
.ws6_c00495{word-spacing:67.631579px;}
.ws7_c00495{word-spacing:72.962606px;}
.wse_c00495{word-spacing:146.904762px;}
._4_c00495{width:33.500000px;}
._5_c00495{width:44.142857px;}
._6_c00495{width:50.211796px;}
._2_c00495{width:52.142857px;}
._1_c00495{width:59.285714px;}
._0_c00495{width:64.642857px;}
._3_c00495{width:80.416667px;}
.fc0_c00495{color:transparent;}
.fs7_c00495{font-size:30.000000px;}
.fs2_c00495{font-size:48.000000px;}
.fs6_c00495{font-size:54.000000px;}
.fs5_c00495{font-size:60.000000px;}
.fs4_c00495{font-size:66.000000px;}
.fs3_c00495{font-size:72.000000px;}
.fs1_c00495{font-size:78.000000px;}
.fs0_c00495{font-size:90.000000px;}
.y0_c00495{bottom:0.000000px;}
.y3_c00495{bottom:38.550000px;}
.y6d_c00495{bottom:206.550000px;}
.y39_c00495{bottom:210.900000px;}
.y6e_c00495{bottom:213.450000px;}
.y6c_c00495{bottom:220.650000px;}
.y38_c00495{bottom:228.900000px;}
.y6b_c00495{bottom:235.050000px;}
.y37_c00495{bottom:246.900000px;}
.y6a_c00495{bottom:249.450000px;}
.y36_c00495{bottom:263.850000px;}
.y69_c00495{bottom:278.250000px;}
.y35_c00495{bottom:281.100000px;}
.y68_c00495{bottom:292.350000px;}
.y34_c00495{bottom:298.800000px;}
.y67_c00495{bottom:306.750000px;}
.y33_c00495{bottom:316.050000px;}
.y66_c00495{bottom:321.150000px;}
.y32_c00495{bottom:333.600000px;}
.y65_c00495{bottom:336.600000px;}
.y31_c00495{bottom:351.300000px;}
.y64_c00495{bottom:356.400000px;}
.y30_c00495{bottom:369.000000px;}
.y63_c00495{bottom:373.650000px;}
.y2f_c00495{bottom:387.000000px;}
.y62_c00495{bottom:391.950000px;}
.y2e_c00495{bottom:404.700000px;}
.y61_c00495{bottom:409.650000px;}
.y2d_c00495{bottom:422.400000px;}
.y60_c00495{bottom:427.650000px;}
.y2c_c00495{bottom:440.400000px;}
.y5f_c00495{bottom:444.900000px;}
.y2b_c00495{bottom:458.400000px;}
.y5e_c00495{bottom:462.600000px;}
.y2a_c00495{bottom:476.400000px;}
.y5d_c00495{bottom:484.350000px;}
.y29_c00495{bottom:494.100000px;}
.y5c_c00495{bottom:502.050000px;}
.y28_c00495{bottom:511.800000px;}
.y5b_c00495{bottom:520.050000px;}
.y27_c00495{bottom:529.800000px;}
.y5a_c00495{bottom:537.300000px;}
.y26_c00495{bottom:547.500000px;}
.y59_c00495{bottom:555.300000px;}
.y25_c00495{bottom:564.900000px;}
.y58_c00495{bottom:573.000000px;}
.y24_c00495{bottom:582.600000px;}
.y57_c00495{bottom:591.000000px;}
.y23_c00495{bottom:600.300000px;}
.y56_c00495{bottom:608.250000px;}
.y22_c00495{bottom:618.000000px;}
.y55_c00495{bottom:626.250000px;}
.y21_c00495{bottom:635.700000px;}
.y54_c00495{bottom:643.950000px;}
.y20_c00495{bottom:653.400000px;}
.y53_c00495{bottom:661.950000px;}
.y1e_c00495{bottom:679.350000px;}
.y52_c00495{bottom:679.950000px;}
.y1d_c00495{bottom:693.750000px;}
.y51_c00495{bottom:697.650000px;}
.y1c_c00495{bottom:706.650000px;}
.y50_c00495{bottom:715.350000px;}
.y1b_c00495{bottom:721.350000px;}
.y1a_c00495{bottom:736.500000px;}
.y4f_c00495{bottom:737.250000px;}
.y19_c00495{bottom:749.850000px;}
.y18_c00495{bottom:765.000000px;}
.y1f_c00495{bottom:766.050000px;}
.y4e_c00495{bottom:767.850000px;}
.y17_c00495{bottom:778.950000px;}
.y4d_c00495{bottom:785.850000px;}
.y16_c00495{bottom:794.850000px;}
.y4c_c00495{bottom:803.850000px;}
.y15_c00495{bottom:817.500000px;}
.y4b_c00495{bottom:821.550000px;}
.y14_c00495{bottom:835.200000px;}
.y4a_c00495{bottom:839.400000px;}
.y13_c00495{bottom:852.900000px;}
.y49_c00495{bottom:857.100000px;}
.y12_c00495{bottom:870.600000px;}
.y48_c00495{bottom:874.800000px;}
.y11_c00495{bottom:888.300000px;}
.y47_c00495{bottom:892.800000px;}
.y10_c00495{bottom:906.000000px;}
.y46_c00495{bottom:914.250000px;}
.yf_c00495{bottom:923.700000px;}
.y45_c00495{bottom:931.950000px;}
.ye_c00495{bottom:949.200000px;}
.y44_c00495{bottom:949.950000px;}
.yd_c00495{bottom:966.900000px;}
.y43_c00495{bottom:967.200000px;}
.yc_c00495{bottom:984.600000px;}
.y42_c00495{bottom:985.200000px;}
.yb_c00495{bottom:1002.300000px;}
.y41_c00495{bottom:1003.200000px;}
.ya_c00495{bottom:1020.300000px;}
.y40_c00495{bottom:1020.900000px;}
.y9_c00495{bottom:1038.000000px;}
.y3f_c00495{bottom:1038.600000px;}
.y8_c00495{bottom:1055.700000px;}
.y3e_c00495{bottom:1056.300000px;}
.y7_c00495{bottom:1073.400000px;}
.y3d_c00495{bottom:1078.050000px;}
.y6_c00495{bottom:1091.100000px;}
.y3c_c00495{bottom:1095.750000px;}
.y5_c00495{bottom:1112.850000px;}
.y3b_c00495{bottom:1113.450000px;}
.y4_c00495{bottom:1131.150000px;}
.y3a_c00495{bottom:1131.450000px;}
.y1_c00495{bottom:1157.100000px;}
.y2_c00495{bottom:1158.150000px;}
.h9_c00495{height:30.000000px;}
.h4_c00495{height:48.000000px;}
.h8_c00495{height:54.000000px;}
.h7_c00495{height:60.000000px;}
.h6_c00495{height:66.000000px;}
.h5_c00495{height:72.000000px;}
.h3_c00495{height:78.000000px;}
.h2_c00495{height:90.000000px;}
.h1_c00495{height:1277.250000px;}
.h0_c00495{height:1277.280030px;}
.w0_c00495{width:958.320007px;}
.w1_c00495{width:958.500000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:174.600000px;}
.x3_c00495{left:175.650000px;}
.x40_c00495{left:182.850000px;}
.x7a_c00495{left:185.100000px;}
.x8a_c00495{left:186.900000px;}
.x8b_c00495{left:195.900000px;}
.x5b_c00495{left:198.300000px;}
.x4_c00495{left:199.500000px;}
.x17_c00495{left:201.000000px;}
.x36_c00495{left:202.050000px;}
.x28_c00495{left:203.550000px;}
.x7d_c00495{left:205.650000px;}
.x85_c00495{left:206.700000px;}
.x41_c00495{left:208.050000px;}
.x8d_c00495{left:209.100000px;}
.x6b_c00495{left:214.200000px;}
.x6f_c00495{left:215.250000px;}
.x37_c00495{left:219.000000px;}
.x74_c00495{left:220.050000px;}
.x11_c00495{left:221.100000px;}
.xe_c00495{left:223.650000px;}
.xa3_c00495{left:225.300000px;}
.x42_c00495{left:226.350000px;}
.x4d_c00495{left:228.300000px;}
.x48_c00495{left:231.000000px;}
.x9a_c00495{left:232.500000px;}
.x18_c00495{left:236.700000px;}
.x5_c00495{left:239.100000px;}
.x49_c00495{left:241.500000px;}
.x65_c00495{left:244.500000px;}
.x93_c00495{left:246.000000px;}
.x38_c00495{left:247.050000px;}
.x60_c00495{left:248.850000px;}
.x2e_c00495{left:250.050000px;}
.x19_c00495{left:251.400000px;}
.x90_c00495{left:253.050000px;}
.x66_c00495{left:255.300000px;}
.x96_c00495{left:256.800000px;}
.x4e_c00495{left:257.850000px;}
.x20_c00495{left:259.650000px;}
.x39_c00495{left:261.750000px;}
.x7e_c00495{left:264.750000px;}
.x86_c00495{left:266.100000px;}
.xf_c00495{left:268.350000px;}
.x4f_c00495{left:269.400000px;}
.x80_c00495{left:271.650000px;}
.x29_c00495{left:273.000000px;}
.x6_c00495{left:274.350000px;}
.x4a_c00495{left:276.750000px;}
.xa1_c00495{left:277.950000px;}
.xa7_c00495{left:279.900000px;}
.x91_c00495{left:282.150000px;}
.x33_c00495{left:283.500000px;}
.x94_c00495{left:285.900000px;}
.x1a_c00495{left:287.700000px;}
.x2f_c00495{left:288.900000px;}
.x7_c00495{left:290.250000px;}
.x43_c00495{left:291.450000px;}
.x2a_c00495{left:295.350000px;}
.x70_c00495{left:296.700000px;}
.x97_c00495{left:298.500000px;}
.x6c_c00495{left:302.100000px;}
.x1b_c00495{left:303.150000px;}
.x67_c00495{left:306.000000px;}
.x81_c00495{left:307.350000px;}
.x12_c00495{left:309.300000px;}
.x3c_c00495{left:311.100000px;}
.x71_c00495{left:312.600000px;}
.x2b_c00495{left:314.850000px;}
.x56_c00495{left:316.800000px;}
.x9b_c00495{left:319.200000px;}
.x6d_c00495{left:321.150000px;}
.x10_c00495{left:322.650000px;}
.x24_c00495{left:326.700000px;}
.x4b_c00495{left:328.200000px;}
.x92_c00495{left:333.300000px;}
.x1c_c00495{left:334.500000px;}
.x57_c00495{left:335.850000px;}
.x53_c00495{left:338.100000px;}
.x2c_c00495{left:339.750000px;}
.x99_c00495{left:341.100000px;}
.x88_c00495{left:342.150000px;}
.x1d_c00495{left:344.250000px;}
.xa8_c00495{left:345.300000px;}
.x3d_c00495{left:347.100000px;}
.x50_c00495{left:348.300000px;}
.x72_c00495{left:349.650000px;}
.x75_c00495{left:351.000000px;}
.x7b_c00495{left:352.350000px;}
.x44_c00495{left:357.000000px;}
.x8_c00495{left:358.350000px;}
.x1e_c00495{left:360.450000px;}
.x30_c00495{left:363.750000px;}
.x25_c00495{left:364.800000px;}
.x6e_c00495{left:365.850000px;}
.x5c_c00495{left:369.600000px;}
.x13_c00495{left:372.000000px;}
.x5d_c00495{left:373.650000px;}
.x9c_c00495{left:375.750000px;}
.x82_c00495{left:377.250000px;}
.x68_c00495{left:378.300000px;}
.x8c_c00495{left:379.800000px;}
.x51_c00495{left:382.800000px;}
.x31_c00495{left:384.300000px;}
.x69_c00495{left:385.500000px;}
.x1f_c00495{left:390.300000px;}
.x45_c00495{left:391.950000px;}
.x6a_c00495{left:393.000000px;}
.x26_c00495{left:394.350000px;}
.x9_c00495{left:395.400000px;}
.xa5_c00495{left:396.900000px;}
.x52_c00495{left:400.050000px;}
.x78_c00495{left:401.400000px;}
.x54_c00495{left:402.900000px;}
.x73_c00495{left:406.800000px;}
.x58_c00495{left:407.850000px;}
.xa_c00495{left:409.800000px;}
.x9e_c00495{left:413.250000px;}
.x3e_c00495{left:415.050000px;}
.x14_c00495{left:417.300000px;}
.x5e_c00495{left:418.350000px;}
.x2_c00495{left:421.500000px;}
.x2d_c00495{left:422.850000px;}
.x3a_c00495{left:427.800000px;}
.x46_c00495{left:429.000000px;}
.x76_c00495{left:430.950000px;}
.x4c_c00495{left:434.400000px;}
.x59_c00495{left:435.900000px;}
.x21_c00495{left:438.900000px;}
.x61_c00495{left:440.250000px;}
.x3f_c00495{left:443.100000px;}
.x87_c00495{left:444.900000px;}
.xb_c00495{left:446.100000px;}
.xa2_c00495{left:447.150000px;}
.x64_c00495{left:449.250000px;}
.x79_c00495{left:450.300000px;}
.x77_c00495{left:451.500000px;}
.xa4_c00495{left:453.150000px;}
.x3b_c00495{left:454.800000px;}
.x15_c00495{left:456.900000px;}
.x8e_c00495{left:459.150000px;}
.x9d_c00495{left:461.250000px;}
.xc_c00495{left:463.350000px;}
.x55_c00495{left:468.450000px;}
.x62_c00495{left:470.850000px;}
.x22_c00495{left:472.050000px;}
.x5f_c00495{left:473.100000px;}
.x16_c00495{left:475.650000px;}
.x83_c00495{left:477.300000px;}
.x32_c00495{left:478.950000px;}
.x7c_c00495{left:481.800000px;}
.x98_c00495{left:482.850000px;}
.xd_c00495{left:483.900000px;}
.x8f_c00495{left:485.250000px;}
.x47_c00495{left:486.600000px;}
.xa6_c00495{left:488.700000px;}
.x27_c00495{left:491.550000px;}
.x34_c00495{left:494.250000px;}
.x9f_c00495{left:495.600000px;}
.x84_c00495{left:496.800000px;}
.x7f_c00495{left:498.450000px;}
.x95_c00495{left:501.000000px;}
.x63_c00495{left:505.050000px;}
.x23_c00495{left:507.000000px;}
.x35_c00495{left:511.950000px;}
.x5a_c00495{left:513.600000px;}
.x89_c00495{left:519.900000px;}
.xa0_c00495{left:521.250000px;}
.xca_c00495{left:537.900000px;}
.x100_c00495{left:538.950000px;}
.x10c_c00495{left:541.800000px;}
.x13a_c00495{left:544.650000px;}
.xa9_c00495{left:554.100000px;}
.xbb_c00495{left:555.150000px;}
.xd3_c00495{left:556.200000px;}
.xf1_c00495{left:557.400000px;}
.x11c_c00495{left:559.350000px;}
.x116_c00495{left:561.300000px;}
.x140_c00495{left:562.350000px;}
.x151_c00495{left:567.750000px;}
.xd4_c00495{left:572.100000px;}
.x14e_c00495{left:573.300000px;}
.xe6_c00495{left:575.850000px;}
.x118_c00495{left:577.800000px;}
.xfa_c00495{left:580.050000px;}
.xe0_c00495{left:581.550000px;}
.xed_c00495{left:585.000000px;}
.x10d_c00495{left:587.550000px;}
.x13b_c00495{left:591.150000px;}
.xb1_c00495{left:592.200000px;}
.x130_c00495{left:593.400000px;}
.x131_c00495{left:594.750000px;}
.xcb_c00495{left:596.250000px;}
.xe7_c00495{left:598.200000px;}
.x106_c00495{left:599.400000px;}
.x149_c00495{left:600.450000px;}
.xbc_c00495{left:601.650000px;}
.x10e_c00495{left:604.050000px;}
.xf2_c00495{left:606.000000px;}
.x138_c00495{left:607.350000px;}
.x143_c00495{left:608.400000px;}
.xb2_c00495{left:609.450000px;}
.xaa_c00495{left:612.000000px;}
.x127_c00495{left:613.800000px;}
.xee_c00495{left:614.850000px;}
.xdc_c00495{left:616.800000px;}
.x14a_c00495{left:618.450000px;}
.xcc_c00495{left:619.650000px;}
.x120_c00495{left:621.150000px;}
.xc4_c00495{left:624.600000px;}
.x134_c00495{left:626.100000px;}
.x14f_c00495{left:627.900000px;}
.x155_c00495{left:628.950000px;}
.xe1_c00495{left:630.150000px;}
.xbd_c00495{left:632.250000px;}
.x107_c00495{left:633.300000px;}
.x103_c00495{left:634.650000px;}
.xab_c00495{left:636.150000px;}
.xb3_c00495{left:637.200000px;}
.x139_c00495{left:638.700000px;}
.x119_c00495{left:641.100000px;}
.xf3_c00495{left:643.050000px;}
.x111_c00495{left:644.250000px;}
.xe8_c00495{left:646.500000px;}
.xd5_c00495{left:648.000000px;}
.xdd_c00495{left:649.950000px;}
.x135_c00495{left:651.000000px;}
.x104_c00495{left:652.350000px;}
.x11d_c00495{left:654.000000px;}
.xf8_c00495{left:655.950000px;}
.x115_c00495{left:657.900000px;}
.x126_c00495{left:660.450000px;}
.xe9_c00495{left:661.950000px;}
.xfb_c00495{left:663.150000px;}
.x146_c00495{left:664.350000px;}
.xc5_c00495{left:665.700000px;}
.xd6_c00495{left:667.800000px;}
.x141_c00495{left:669.000000px;}
.x123_c00495{left:670.050000px;}
.xfc_c00495{left:671.850000px;}
.xef_c00495{left:672.900000px;}
.xbe_c00495{left:674.400000px;}
.xb4_c00495{left:675.750000px;}
.xac_c00495{left:677.850000px;}
.xf9_c00495{left:679.650000px;}
.x128_c00495{left:682.200000px;}
.x132_c00495{left:683.250000px;}
.x12b_c00495{left:685.200000px;}
.x112_c00495{left:687.450000px;}
.xcd_c00495{left:688.500000px;}
.xd7_c00495{left:690.450000px;}
.x144_c00495{left:691.950000px;}
.x108_c00495{left:693.750000px;}
.xbf_c00495{left:695.250000px;}
.x156_c00495{left:696.750000px;}
.xfd_c00495{left:699.900000px;}
.xad_c00495{left:700.950000px;}
.x117_c00495{left:702.750000px;}
.x101_c00495{left:705.000000px;}
.xb5_c00495{left:706.350000px;}
.x14b_c00495{left:709.050000px;}
.x113_c00495{left:710.100000px;}
.xce_c00495{left:713.400000px;}
.xf4_c00495{left:715.500000px;}
.x12c_c00495{left:717.600000px;}
.xea_c00495{left:719.250000px;}
.x105_c00495{left:722.100000px;}
.x10f_c00495{left:723.600000px;}
.x11a_c00495{left:726.000000px;}
.x11e_c00495{left:727.800000px;}
.x121_c00495{left:729.450000px;}
.x14c_c00495{left:730.800000px;}
.xf5_c00495{left:732.000000px;}
.xc0_c00495{left:734.100000px;}
.xd8_c00495{left:735.450000px;}
.xc6_c00495{left:737.700000px;}
.xde_c00495{left:743.100000px;}
.x150_c00495{left:744.600000px;}
.x122_c00495{left:745.650000px;}
.xd9_c00495{left:747.000000px;}
.xb6_c00495{left:748.800000px;}
.xeb_c00495{left:750.600000px;}
.xae_c00495{left:752.100000px;}
.xe2_c00495{left:755.400000px;}
.x12d_c00495{left:756.450000px;}
.xc7_c00495{left:758.550000px;}
.x14d_c00495{left:759.600000px;}
.xdf_c00495{left:760.800000px;}
.x136_c00495{left:762.600000px;}
.x11b_c00495{left:764.250000px;}
.x109_c00495{left:766.500000px;}
.xc1_c00495{left:770.400000px;}
.xfe_c00495{left:772.350000px;}
.x154_c00495{left:773.700000px;}
.x129_c00495{left:774.750000px;}
.xda_c00495{left:776.550000px;}
.xc8_c00495{left:778.050000px;}
.x142_c00495{left:779.700000px;}
.xb7_c00495{left:780.900000px;}
.x11f_c00495{left:782.550000px;}
.xcf_c00495{left:784.050000px;}
.xaf_c00495{left:788.400000px;}
.xe3_c00495{left:790.350000px;}
.x13c_c00495{left:791.550000px;}
.x102_c00495{left:793.950000px;}
.x12f_c00495{left:796.050000px;}
.xb8_c00495{left:799.200000px;}
.x110_c00495{left:802.050000px;}
.xd0_c00495{left:804.600000px;}
.x124_c00495{left:805.800000px;}
.x157_c00495{left:807.600000px;}
.xff_c00495{left:808.650000px;}
.xe4_c00495{left:809.850000px;}
.x147_c00495{left:811.500000px;}
.x114_c00495{left:814.500000px;}
.x145_c00495{left:815.550000px;}
.x10b_c00495{left:817.350000px;}
.xc2_c00495{left:818.700000px;}
.xf6_c00495{left:821.400000px;}
.xb9_c00495{left:824.400000px;}
.xe5_c00495{left:827.550000px;}
.xd1_c00495{left:831.300000px;}
.x148_c00495{left:833.100000px;}
.xc9_c00495{left:834.600000px;}
.x13d_c00495{left:835.800000px;}
.xec_c00495{left:837.000000px;}
.x158_c00495{left:838.950000px;}
.x152_c00495{left:840.000000px;}
.x12a_c00495{left:841.050000px;}
.x12e_c00495{left:842.550000px;}
.xf0_c00495{left:846.150000px;}
.x133_c00495{left:847.650000px;}
.x10a_c00495{left:849.300000px;}
.xc3_c00495{left:851.400000px;}
.xba_c00495{left:852.450000px;}
.xb0_c00495{left:856.800000px;}
.x125_c00495{left:859.950000px;}
.xf7_c00495{left:861.000000px;}
.xdb_c00495{left:863.700000px;}
.x137_c00495{left:866.250000px;}
.xd2_c00495{left:870.150000px;}
.x153_c00495{left:871.350000px;}
.x13e_c00495{left:878.250000px;}
.x13f_c00495{left:891.150000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws1_c00495{word-spacing:-9.798668pt;}
.ws0_c00495{word-spacing:-6.749263pt;}
.ws8_c00495{word-spacing:-6.455026pt;}
.wsf_c00495{word-spacing:-2.410546pt;}
.ws15_c00495{word-spacing:0.000000pt;}
.wsa_c00495{word-spacing:4.000000pt;}
.ws9_c00495{word-spacing:6.594360pt;}
.ws10_c00495{word-spacing:10.666667pt;}
.ws12_c00495{word-spacing:11.936508pt;}
.ws11_c00495{word-spacing:15.746032pt;}
.ws5_c00495{word-spacing:19.682540pt;}
.ws3_c00495{word-spacing:22.857143pt;}
.ws13_c00495{word-spacing:23.492404pt;}
.ws2_c00495{word-spacing:26.031746pt;}
.wsd_c00495{word-spacing:31.851852pt;}
.ws14_c00495{word-spacing:32.000000pt;}
.wsc_c00495{word-spacing:35.555556pt;}
.ws4_c00495{word-spacing:39.259259pt;}
.wsb_c00495{word-spacing:57.777778pt;}
.ws6_c00495{word-spacing:60.116959pt;}
.ws7_c00495{word-spacing:64.855649pt;}
.wse_c00495{word-spacing:130.582011pt;}
._4_c00495{width:29.777778pt;}
._5_c00495{width:39.238095pt;}
._6_c00495{width:44.632708pt;}
._2_c00495{width:46.349206pt;}
._1_c00495{width:52.698413pt;}
._0_c00495{width:57.460317pt;}
._3_c00495{width:71.481481pt;}
.fs7_c00495{font-size:26.666667pt;}
.fs2_c00495{font-size:42.666667pt;}
.fs6_c00495{font-size:48.000000pt;}
.fs5_c00495{font-size:53.333333pt;}
.fs4_c00495{font-size:58.666667pt;}
.fs3_c00495{font-size:64.000000pt;}
.fs1_c00495{font-size:69.333333pt;}
.fs0_c00495{font-size:80.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y3_c00495{bottom:34.266667pt;}
.y6d_c00495{bottom:183.600000pt;}
.y39_c00495{bottom:187.466667pt;}
.y6e_c00495{bottom:189.733333pt;}
.y6c_c00495{bottom:196.133333pt;}
.y38_c00495{bottom:203.466667pt;}
.y6b_c00495{bottom:208.933333pt;}
.y37_c00495{bottom:219.466667pt;}
.y6a_c00495{bottom:221.733333pt;}
.y36_c00495{bottom:234.533333pt;}
.y69_c00495{bottom:247.333333pt;}
.y35_c00495{bottom:249.866667pt;}
.y68_c00495{bottom:259.866667pt;}
.y34_c00495{bottom:265.600000pt;}
.y67_c00495{bottom:272.666667pt;}
.y33_c00495{bottom:280.933333pt;}
.y66_c00495{bottom:285.466667pt;}
.y32_c00495{bottom:296.533333pt;}
.y65_c00495{bottom:299.200000pt;}
.y31_c00495{bottom:312.266667pt;}
.y64_c00495{bottom:316.800000pt;}
.y30_c00495{bottom:328.000000pt;}
.y63_c00495{bottom:332.133333pt;}
.y2f_c00495{bottom:344.000000pt;}
.y62_c00495{bottom:348.400000pt;}
.y2e_c00495{bottom:359.733333pt;}
.y61_c00495{bottom:364.133333pt;}
.y2d_c00495{bottom:375.466667pt;}
.y60_c00495{bottom:380.133333pt;}
.y2c_c00495{bottom:391.466667pt;}
.y5f_c00495{bottom:395.466667pt;}
.y2b_c00495{bottom:407.466667pt;}
.y5e_c00495{bottom:411.200000pt;}
.y2a_c00495{bottom:423.466667pt;}
.y5d_c00495{bottom:430.533333pt;}
.y29_c00495{bottom:439.200000pt;}
.y5c_c00495{bottom:446.266667pt;}
.y28_c00495{bottom:454.933333pt;}
.y5b_c00495{bottom:462.266667pt;}
.y27_c00495{bottom:470.933333pt;}
.y5a_c00495{bottom:477.600000pt;}
.y26_c00495{bottom:486.666667pt;}
.y59_c00495{bottom:493.600000pt;}
.y25_c00495{bottom:502.133333pt;}
.y58_c00495{bottom:509.333333pt;}
.y24_c00495{bottom:517.866667pt;}
.y57_c00495{bottom:525.333333pt;}
.y23_c00495{bottom:533.600000pt;}
.y56_c00495{bottom:540.666667pt;}
.y22_c00495{bottom:549.333333pt;}
.y55_c00495{bottom:556.666667pt;}
.y21_c00495{bottom:565.066667pt;}
.y54_c00495{bottom:572.400000pt;}
.y20_c00495{bottom:580.800000pt;}
.y53_c00495{bottom:588.400000pt;}
.y1e_c00495{bottom:603.866667pt;}
.y52_c00495{bottom:604.400000pt;}
.y1d_c00495{bottom:616.666667pt;}
.y51_c00495{bottom:620.133333pt;}
.y1c_c00495{bottom:628.133333pt;}
.y50_c00495{bottom:635.866667pt;}
.y1b_c00495{bottom:641.200000pt;}
.y1a_c00495{bottom:654.666667pt;}
.y4f_c00495{bottom:655.333333pt;}
.y19_c00495{bottom:666.533333pt;}
.y18_c00495{bottom:680.000000pt;}
.y1f_c00495{bottom:680.933333pt;}
.y4e_c00495{bottom:682.533333pt;}
.y17_c00495{bottom:692.400000pt;}
.y4d_c00495{bottom:698.533333pt;}
.y16_c00495{bottom:706.533333pt;}
.y4c_c00495{bottom:714.533333pt;}
.y15_c00495{bottom:726.666667pt;}
.y4b_c00495{bottom:730.266667pt;}
.y14_c00495{bottom:742.400000pt;}
.y4a_c00495{bottom:746.133333pt;}
.y13_c00495{bottom:758.133333pt;}
.y49_c00495{bottom:761.866667pt;}
.y12_c00495{bottom:773.866667pt;}
.y48_c00495{bottom:777.600000pt;}
.y11_c00495{bottom:789.600000pt;}
.y47_c00495{bottom:793.600000pt;}
.y10_c00495{bottom:805.333333pt;}
.y46_c00495{bottom:812.666667pt;}
.yf_c00495{bottom:821.066667pt;}
.y45_c00495{bottom:828.400000pt;}
.ye_c00495{bottom:843.733333pt;}
.y44_c00495{bottom:844.400000pt;}
.yd_c00495{bottom:859.466667pt;}
.y43_c00495{bottom:859.733333pt;}
.yc_c00495{bottom:875.200000pt;}
.y42_c00495{bottom:875.733333pt;}
.yb_c00495{bottom:890.933333pt;}
.y41_c00495{bottom:891.733333pt;}
.ya_c00495{bottom:906.933333pt;}
.y40_c00495{bottom:907.466667pt;}
.y9_c00495{bottom:922.666667pt;}
.y3f_c00495{bottom:923.200000pt;}
.y8_c00495{bottom:938.400000pt;}
.y3e_c00495{bottom:938.933333pt;}
.y7_c00495{bottom:954.133333pt;}
.y3d_c00495{bottom:958.266667pt;}
.y6_c00495{bottom:969.866667pt;}
.y3c_c00495{bottom:974.000000pt;}
.y5_c00495{bottom:989.200000pt;}
.y3b_c00495{bottom:989.733333pt;}
.y4_c00495{bottom:1005.466667pt;}
.y3a_c00495{bottom:1005.733333pt;}
.y1_c00495{bottom:1028.533333pt;}
.y2_c00495{bottom:1029.466667pt;}
.h9_c00495{height:26.666667pt;}
.h4_c00495{height:42.666667pt;}
.h8_c00495{height:48.000000pt;}
.h7_c00495{height:53.333333pt;}
.h6_c00495{height:58.666667pt;}
.h5_c00495{height:64.000000pt;}
.h3_c00495{height:69.333333pt;}
.h2_c00495{height:80.000000pt;}
.h1_c00495{height:1135.333333pt;}
.h0_c00495{height:1135.360027pt;}
.w0_c00495{width:851.840007pt;}
.w1_c00495{width:852.000000pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:155.200000pt;}
.x3_c00495{left:156.133333pt;}
.x40_c00495{left:162.533333pt;}
.x7a_c00495{left:164.533333pt;}
.x8a_c00495{left:166.133333pt;}
.x8b_c00495{left:174.133333pt;}
.x5b_c00495{left:176.266667pt;}
.x4_c00495{left:177.333333pt;}
.x17_c00495{left:178.666667pt;}
.x36_c00495{left:179.600000pt;}
.x28_c00495{left:180.933333pt;}
.x7d_c00495{left:182.800000pt;}
.x85_c00495{left:183.733333pt;}
.x41_c00495{left:184.933333pt;}
.x8d_c00495{left:185.866667pt;}
.x6b_c00495{left:190.400000pt;}
.x6f_c00495{left:191.333333pt;}
.x37_c00495{left:194.666667pt;}
.x74_c00495{left:195.600000pt;}
.x11_c00495{left:196.533333pt;}
.xe_c00495{left:198.800000pt;}
.xa3_c00495{left:200.266667pt;}
.x42_c00495{left:201.200000pt;}
.x4d_c00495{left:202.933333pt;}
.x48_c00495{left:205.333333pt;}
.x9a_c00495{left:206.666667pt;}
.x18_c00495{left:210.400000pt;}
.x5_c00495{left:212.533333pt;}
.x49_c00495{left:214.666667pt;}
.x65_c00495{left:217.333333pt;}
.x93_c00495{left:218.666667pt;}
.x38_c00495{left:219.600000pt;}
.x60_c00495{left:221.200000pt;}
.x2e_c00495{left:222.266667pt;}
.x19_c00495{left:223.466667pt;}
.x90_c00495{left:224.933333pt;}
.x66_c00495{left:226.933333pt;}
.x96_c00495{left:228.266667pt;}
.x4e_c00495{left:229.200000pt;}
.x20_c00495{left:230.800000pt;}
.x39_c00495{left:232.666667pt;}
.x7e_c00495{left:235.333333pt;}
.x86_c00495{left:236.533333pt;}
.xf_c00495{left:238.533333pt;}
.x4f_c00495{left:239.466667pt;}
.x80_c00495{left:241.466667pt;}
.x29_c00495{left:242.666667pt;}
.x6_c00495{left:243.866667pt;}
.x4a_c00495{left:246.000000pt;}
.xa1_c00495{left:247.066667pt;}
.xa7_c00495{left:248.800000pt;}
.x91_c00495{left:250.800000pt;}
.x33_c00495{left:252.000000pt;}
.x94_c00495{left:254.133333pt;}
.x1a_c00495{left:255.733333pt;}
.x2f_c00495{left:256.800000pt;}
.x7_c00495{left:258.000000pt;}
.x43_c00495{left:259.066667pt;}
.x2a_c00495{left:262.533333pt;}
.x70_c00495{left:263.733333pt;}
.x97_c00495{left:265.333333pt;}
.x6c_c00495{left:268.533333pt;}
.x1b_c00495{left:269.466667pt;}
.x67_c00495{left:272.000000pt;}
.x81_c00495{left:273.200000pt;}
.x12_c00495{left:274.933333pt;}
.x3c_c00495{left:276.533333pt;}
.x71_c00495{left:277.866667pt;}
.x2b_c00495{left:279.866667pt;}
.x56_c00495{left:281.600000pt;}
.x9b_c00495{left:283.733333pt;}
.x6d_c00495{left:285.466667pt;}
.x10_c00495{left:286.800000pt;}
.x24_c00495{left:290.400000pt;}
.x4b_c00495{left:291.733333pt;}
.x92_c00495{left:296.266667pt;}
.x1c_c00495{left:297.333333pt;}
.x57_c00495{left:298.533333pt;}
.x53_c00495{left:300.533333pt;}
.x2c_c00495{left:302.000000pt;}
.x99_c00495{left:303.200000pt;}
.x88_c00495{left:304.133333pt;}
.x1d_c00495{left:306.000000pt;}
.xa8_c00495{left:306.933333pt;}
.x3d_c00495{left:308.533333pt;}
.x50_c00495{left:309.600000pt;}
.x72_c00495{left:310.800000pt;}
.x75_c00495{left:312.000000pt;}
.x7b_c00495{left:313.200000pt;}
.x44_c00495{left:317.333333pt;}
.x8_c00495{left:318.533333pt;}
.x1e_c00495{left:320.400000pt;}
.x30_c00495{left:323.333333pt;}
.x25_c00495{left:324.266667pt;}
.x6e_c00495{left:325.200000pt;}
.x5c_c00495{left:328.533333pt;}
.x13_c00495{left:330.666667pt;}
.x5d_c00495{left:332.133333pt;}
.x9c_c00495{left:334.000000pt;}
.x82_c00495{left:335.333333pt;}
.x68_c00495{left:336.266667pt;}
.x8c_c00495{left:337.600000pt;}
.x51_c00495{left:340.266667pt;}
.x31_c00495{left:341.600000pt;}
.x69_c00495{left:342.666667pt;}
.x1f_c00495{left:346.933333pt;}
.x45_c00495{left:348.400000pt;}
.x6a_c00495{left:349.333333pt;}
.x26_c00495{left:350.533333pt;}
.x9_c00495{left:351.466667pt;}
.xa5_c00495{left:352.800000pt;}
.x52_c00495{left:355.600000pt;}
.x78_c00495{left:356.800000pt;}
.x54_c00495{left:358.133333pt;}
.x73_c00495{left:361.600000pt;}
.x58_c00495{left:362.533333pt;}
.xa_c00495{left:364.266667pt;}
.x9e_c00495{left:367.333333pt;}
.x3e_c00495{left:368.933333pt;}
.x14_c00495{left:370.933333pt;}
.x5e_c00495{left:371.866667pt;}
.x2_c00495{left:374.666667pt;}
.x2d_c00495{left:375.866667pt;}
.x3a_c00495{left:380.266667pt;}
.x46_c00495{left:381.333333pt;}
.x76_c00495{left:383.066667pt;}
.x4c_c00495{left:386.133333pt;}
.x59_c00495{left:387.466667pt;}
.x21_c00495{left:390.133333pt;}
.x61_c00495{left:391.333333pt;}
.x3f_c00495{left:393.866667pt;}
.x87_c00495{left:395.466667pt;}
.xb_c00495{left:396.533333pt;}
.xa2_c00495{left:397.466667pt;}
.x64_c00495{left:399.333333pt;}
.x79_c00495{left:400.266667pt;}
.x77_c00495{left:401.333333pt;}
.xa4_c00495{left:402.800000pt;}
.x3b_c00495{left:404.266667pt;}
.x15_c00495{left:406.133333pt;}
.x8e_c00495{left:408.133333pt;}
.x9d_c00495{left:410.000000pt;}
.xc_c00495{left:411.866667pt;}
.x55_c00495{left:416.400000pt;}
.x62_c00495{left:418.533333pt;}
.x22_c00495{left:419.600000pt;}
.x5f_c00495{left:420.533333pt;}
.x16_c00495{left:422.800000pt;}
.x83_c00495{left:424.266667pt;}
.x32_c00495{left:425.733333pt;}
.x7c_c00495{left:428.266667pt;}
.x98_c00495{left:429.200000pt;}
.xd_c00495{left:430.133333pt;}
.x8f_c00495{left:431.333333pt;}
.x47_c00495{left:432.533333pt;}
.xa6_c00495{left:434.400000pt;}
.x27_c00495{left:436.933333pt;}
.x34_c00495{left:439.333333pt;}
.x9f_c00495{left:440.533333pt;}
.x84_c00495{left:441.600000pt;}
.x7f_c00495{left:443.066667pt;}
.x95_c00495{left:445.333333pt;}
.x63_c00495{left:448.933333pt;}
.x23_c00495{left:450.666667pt;}
.x35_c00495{left:455.066667pt;}
.x5a_c00495{left:456.533333pt;}
.x89_c00495{left:462.133333pt;}
.xa0_c00495{left:463.333333pt;}
.xca_c00495{left:478.133333pt;}
.x100_c00495{left:479.066667pt;}
.x10c_c00495{left:481.600000pt;}
.x13a_c00495{left:484.133333pt;}
.xa9_c00495{left:492.533333pt;}
.xbb_c00495{left:493.466667pt;}
.xd3_c00495{left:494.400000pt;}
.xf1_c00495{left:495.466667pt;}
.x11c_c00495{left:497.200000pt;}
.x116_c00495{left:498.933333pt;}
.x140_c00495{left:499.866667pt;}
.x151_c00495{left:504.666667pt;}
.xd4_c00495{left:508.533333pt;}
.x14e_c00495{left:509.600000pt;}
.xe6_c00495{left:511.866667pt;}
.x118_c00495{left:513.600000pt;}
.xfa_c00495{left:515.600000pt;}
.xe0_c00495{left:516.933333pt;}
.xed_c00495{left:520.000000pt;}
.x10d_c00495{left:522.266667pt;}
.x13b_c00495{left:525.466667pt;}
.xb1_c00495{left:526.400000pt;}
.x130_c00495{left:527.466667pt;}
.x131_c00495{left:528.666667pt;}
.xcb_c00495{left:530.000000pt;}
.xe7_c00495{left:531.733333pt;}
.x106_c00495{left:532.800000pt;}
.x149_c00495{left:533.733333pt;}
.xbc_c00495{left:534.800000pt;}
.x10e_c00495{left:536.933333pt;}
.xf2_c00495{left:538.666667pt;}
.x138_c00495{left:539.866667pt;}
.x143_c00495{left:540.800000pt;}
.xb2_c00495{left:541.733333pt;}
.xaa_c00495{left:544.000000pt;}
.x127_c00495{left:545.600000pt;}
.xee_c00495{left:546.533333pt;}
.xdc_c00495{left:548.266667pt;}
.x14a_c00495{left:549.733333pt;}
.xcc_c00495{left:550.800000pt;}
.x120_c00495{left:552.133333pt;}
.xc4_c00495{left:555.200000pt;}
.x134_c00495{left:556.533333pt;}
.x14f_c00495{left:558.133333pt;}
.x155_c00495{left:559.066667pt;}
.xe1_c00495{left:560.133333pt;}
.xbd_c00495{left:562.000000pt;}
.x107_c00495{left:562.933333pt;}
.x103_c00495{left:564.133333pt;}
.xab_c00495{left:565.466667pt;}
.xb3_c00495{left:566.400000pt;}
.x139_c00495{left:567.733333pt;}
.x119_c00495{left:569.866667pt;}
.xf3_c00495{left:571.600000pt;}
.x111_c00495{left:572.666667pt;}
.xe8_c00495{left:574.666667pt;}
.xd5_c00495{left:576.000000pt;}
.xdd_c00495{left:577.733333pt;}
.x135_c00495{left:578.666667pt;}
.x104_c00495{left:579.866667pt;}
.x11d_c00495{left:581.333333pt;}
.xf8_c00495{left:583.066667pt;}
.x115_c00495{left:584.800000pt;}
.x126_c00495{left:587.066667pt;}
.xe9_c00495{left:588.400000pt;}
.xfb_c00495{left:589.466667pt;}
.x146_c00495{left:590.533333pt;}
.xc5_c00495{left:591.733333pt;}
.xd6_c00495{left:593.600000pt;}
.x141_c00495{left:594.666667pt;}
.x123_c00495{left:595.600000pt;}
.xfc_c00495{left:597.200000pt;}
.xef_c00495{left:598.133333pt;}
.xbe_c00495{left:599.466667pt;}
.xb4_c00495{left:600.666667pt;}
.xac_c00495{left:602.533333pt;}
.xf9_c00495{left:604.133333pt;}
.x128_c00495{left:606.400000pt;}
.x132_c00495{left:607.333333pt;}
.x12b_c00495{left:609.066667pt;}
.x112_c00495{left:611.066667pt;}
.xcd_c00495{left:612.000000pt;}
.xd7_c00495{left:613.733333pt;}
.x144_c00495{left:615.066667pt;}
.x108_c00495{left:616.666667pt;}
.xbf_c00495{left:618.000000pt;}
.x156_c00495{left:619.333333pt;}
.xfd_c00495{left:622.133333pt;}
.xad_c00495{left:623.066667pt;}
.x117_c00495{left:624.666667pt;}
.x101_c00495{left:626.666667pt;}
.xb5_c00495{left:627.866667pt;}
.x14b_c00495{left:630.266667pt;}
.x113_c00495{left:631.200000pt;}
.xce_c00495{left:634.133333pt;}
.xf4_c00495{left:636.000000pt;}
.x12c_c00495{left:637.866667pt;}
.xea_c00495{left:639.333333pt;}
.x105_c00495{left:641.866667pt;}
.x10f_c00495{left:643.200000pt;}
.x11a_c00495{left:645.333333pt;}
.x11e_c00495{left:646.933333pt;}
.x121_c00495{left:648.400000pt;}
.x14c_c00495{left:649.600000pt;}
.xf5_c00495{left:650.666667pt;}
.xc0_c00495{left:652.533333pt;}
.xd8_c00495{left:653.733333pt;}
.xc6_c00495{left:655.733333pt;}
.xde_c00495{left:660.533333pt;}
.x150_c00495{left:661.866667pt;}
.x122_c00495{left:662.800000pt;}
.xd9_c00495{left:664.000000pt;}
.xb6_c00495{left:665.600000pt;}
.xeb_c00495{left:667.200000pt;}
.xae_c00495{left:668.533333pt;}
.xe2_c00495{left:671.466667pt;}
.x12d_c00495{left:672.400000pt;}
.xc7_c00495{left:674.266667pt;}
.x14d_c00495{left:675.200000pt;}
.xdf_c00495{left:676.266667pt;}
.x136_c00495{left:677.866667pt;}
.x11b_c00495{left:679.333333pt;}
.x109_c00495{left:681.333333pt;}
.xc1_c00495{left:684.800000pt;}
.xfe_c00495{left:686.533333pt;}
.x154_c00495{left:687.733333pt;}
.x129_c00495{left:688.666667pt;}
.xda_c00495{left:690.266667pt;}
.xc8_c00495{left:691.600000pt;}
.x142_c00495{left:693.066667pt;}
.xb7_c00495{left:694.133333pt;}
.x11f_c00495{left:695.600000pt;}
.xcf_c00495{left:696.933333pt;}
.xaf_c00495{left:700.800000pt;}
.xe3_c00495{left:702.533333pt;}
.x13c_c00495{left:703.600000pt;}
.x102_c00495{left:705.733333pt;}
.x12f_c00495{left:707.600000pt;}
.xb8_c00495{left:710.400000pt;}
.x110_c00495{left:712.933333pt;}
.xd0_c00495{left:715.200000pt;}
.x124_c00495{left:716.266667pt;}
.x157_c00495{left:717.866667pt;}
.xff_c00495{left:718.800000pt;}
.xe4_c00495{left:719.866667pt;}
.x147_c00495{left:721.333333pt;}
.x114_c00495{left:724.000000pt;}
.x145_c00495{left:724.933333pt;}
.x10b_c00495{left:726.533333pt;}
.xc2_c00495{left:727.733333pt;}
.xf6_c00495{left:730.133333pt;}
.xb9_c00495{left:732.800000pt;}
.xe5_c00495{left:735.600000pt;}
.xd1_c00495{left:738.933333pt;}
.x148_c00495{left:740.533333pt;}
.xc9_c00495{left:741.866667pt;}
.x13d_c00495{left:742.933333pt;}
.xec_c00495{left:744.000000pt;}
.x158_c00495{left:745.733333pt;}
.x152_c00495{left:746.666667pt;}
.x12a_c00495{left:747.600000pt;}
.x12e_c00495{left:748.933333pt;}
.xf0_c00495{left:752.133333pt;}
.x133_c00495{left:753.466667pt;}
.x10a_c00495{left:754.933333pt;}
.xc3_c00495{left:756.800000pt;}
.xba_c00495{left:757.733333pt;}
.xb0_c00495{left:761.600000pt;}
.x125_c00495{left:764.400000pt;}
.xf7_c00495{left:765.333333pt;}
.xdb_c00495{left:767.733333pt;}
.x137_c00495{left:770.000000pt;}
.xd2_c00495{left:773.466667pt;}
.x153_c00495{left:774.533333pt;}
.x13e_c00495{left:780.666667pt;}
.x13f_c00495{left:792.133333pt;}
}





/* 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_c00496 {
    display:none;
  }
  .loading-indicator_c00496.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00496 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_c00496 { 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_c00496" -> "#page-container .classname_c00496")
 */
.pf_c00496 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00496 { /* 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_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00496 { /* 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_c00496 { /* 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_c00496 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00496 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00496 {overflow:visible;}
  }
}
.c_c00496 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00496 { /* 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_c00496:after { /* webkit #35443 */
  content: '';
}
.t_c00496:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00496 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 */
}
.__c00496 { /* 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_c00496 { /* info for Javascript */
  display:none;
}
.l_c00496 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00496 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00496 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00496: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_c00496 {
    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_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00496.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_c00496 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00496{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00496;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.000000;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;}
.mfd_c00496{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mee_c00496{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m107_c00496{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m51_c00496{transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);}
.m121_c00496{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m120_c00496{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mad_c00496{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00496{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me0_c00496{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m116_c00496{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1_c00496{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00496{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00496{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m85_c00496{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m19_c00496{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00496{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00496{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mec_c00496{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00496{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00496{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m100_c00496{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00496{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m13_c00496{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00496{transform:matrix(0.122000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00496{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00496{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.me5_c00496{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00496{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00496{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00496{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00496{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.ma_c00496{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00496{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00496{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00496{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m26_c00496{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00496{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m88_c00496{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00496{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m101_c00496{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.meb_c00496{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00496{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00496{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m8_c00496{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.me_c00496{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00496{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m118_c00496{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00496{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m45_c00496{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00496{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m77_c00496{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00496{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00496{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m127_c00496{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m114_c00496{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mce_c00496{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00496{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00496{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m11_c00496{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00496{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m39_c00496{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00496{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00496{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m37_c00496{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m95_c00496{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00496{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00496{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m109_c00496{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m76_c00496{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m79_c00496{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00496{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00496{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.md6_c00496{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m25_c00496{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00496{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m71_c00496{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00496{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00496{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m38_c00496{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m126_c00496{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00496{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m50_c00496{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m22_c00496{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m119_c00496{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00496{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00496{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00496{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m63_c00496{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00496{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m108_c00496{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m32_c00496{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00496{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m87_c00496{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00496{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mca_c00496{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m34_c00496{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00496{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00496{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m43_c00496{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m2_c00496{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m61_c00496{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m36_c00496{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m65_c00496{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m46_c00496{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m54_c00496{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m27_c00496{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00496{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mde_c00496{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.maf_c00496{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m28_c00496{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00496{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00496{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m102_c00496{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00496{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m80_c00496{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00496{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md5_c00496{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m68_c00496{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m89_c00496{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m72_c00496{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m60_c00496{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m93_c00496{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00496{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00496{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9_c00496{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m64_c00496{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00496{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00496{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mef_c00496{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mba_c00496{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00496{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m62_c00496{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m113_c00496{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00496{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m67_c00496{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m17_c00496{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m99_c00496{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00496{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m56_c00496{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00496{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00496{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00496{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m55_c00496{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00496{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m33_c00496{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m111_c00496{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00496{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00496{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mff_c00496{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m40_c00496{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m23_c00496{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.me1_c00496{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00496{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m47_c00496{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m90_c00496{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00496{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00496{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00496{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m91_c00496{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m103_c00496{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m18_c00496{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m70_c00496{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00496{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00496{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m58_c00496{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00496{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00496{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00496{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m74_c00496{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m75_c00496{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m49_c00496{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00496{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00496{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00496{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00496{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00496{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00496{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m69_c00496{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m129_c00496{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m53_c00496{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m115_c00496{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00496{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m125_c00496{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m35_c00496{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mab_c00496{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me2_c00496{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6_c00496{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00496{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00496{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00496{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m31_c00496{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00496{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m30_c00496{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me4_c00496{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m52_c00496{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m21_c00496{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m97_c00496{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00496{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7_c00496{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m42_c00496{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mae_c00496{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00496{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00496{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00496{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m48_c00496{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m92_c00496{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00496{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m128_c00496{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m82_c00496{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00496{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m105_c00496{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m41_c00496{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m106_c00496{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m86_c00496{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5_c00496{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m59_c00496{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m78_c00496{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m84_c00496{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md0_c00496{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m29_c00496{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00496{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m44_c00496{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00496{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m24_c00496{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m98_c00496{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md3_c00496{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m16_c00496{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m66_c00496{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00496{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md9_c00496{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m123_c00496{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00496{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00496{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m96_c00496{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m112_c00496{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00496{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00496{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md2_c00496{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m110_c00496{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m15_c00496{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00496{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00496{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m104_c00496{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m73_c00496{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00496{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10_c00496{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00496{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00496{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00496{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00496{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00496{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.md4_c00496{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);}
.m11e_c00496{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc_c00496{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00496{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me7_c00496{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00496{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md1_c00496{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3_c00496{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m122_c00496{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me6_c00496{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00496{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m81_c00496{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00496{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4_c00496{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00496{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.maa_c00496{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00496{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me9_c00496{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m12_c00496{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00496{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m83_c00496{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.md8_c00496{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mea_c00496{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.me3_c00496{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00496{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m94_c00496{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mac_c00496{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00496{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00496{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m117_c00496{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.md7_c00496{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00496{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m20_c00496{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.md_c00496{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb_c00496{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00496{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00496{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00496{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00496{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m57_c00496{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.med_c00496{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.mda_c00496{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.me8_c00496{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m124_c00496{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00496{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00496{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m0_c00496{transform:matrix(0.404250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404250,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls1_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:50.211796px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{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__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:-77.211796px;}
.ws1_c00496{word-spacing:-9.743935px;}
.ws5_c00496{word-spacing:-9.321678px;}
.ws7_c00496{word-spacing:-7.868852px;}
.ws8_c00496{word-spacing:-4.868421px;}
.ws6_c00496{word-spacing:-3.894231px;}
.ws9_c00496{word-spacing:0.000000px;}
.ws4_c00496{word-spacing:3.030303px;}
.ws2_c00496{word-spacing:10.951965px;}
.ws3_c00496{word-spacing:23.102426px;}
._1_c00496{margin-left:-50.211796px;}
._0_c00496{width:3.217158px;}
.fc0_c00496{color:transparent;}
.fs3_c00496{font-size:48.000000px;}
.fs2_c00496{font-size:54.000000px;}
.fs5_c00496{font-size:60.000000px;}
.fs4_c00496{font-size:66.000000px;}
.fs6_c00496{font-size:72.000000px;}
.fs0_c00496{font-size:84.000000px;}
.fs1_c00496{font-size:108.000000px;}
.y0_c00496{bottom:0.000000px;}
.y6c_c00496{bottom:199.050000px;}
.y6b_c00496{bottom:211.200000px;}
.y36_c00496{bottom:216.300000px;}
.y6a_c00496{bottom:225.300000px;}
.y35_c00496{bottom:234.000000px;}
.y69_c00496{bottom:241.500000px;}
.y34_c00496{bottom:251.700000px;}
.y68_c00496{bottom:253.800000px;}
.y67_c00496{bottom:268.200000px;}
.y33_c00496{bottom:269.700000px;}
.y66_c00496{bottom:282.900000px;}
.y32_c00496{bottom:287.700000px;}
.y65_c00496{bottom:297.000000px;}
.y31_c00496{bottom:304.500000px;}
.y64_c00496{bottom:311.400000px;}
.y30_c00496{bottom:322.200000px;}
.y63_c00496{bottom:325.800000px;}
.y62_c00496{bottom:339.900000px;}
.y2f_c00496{bottom:340.500000px;}
.y61_c00496{bottom:354.300000px;}
.y2e_c00496{bottom:358.800000px;}
.y60_c00496{bottom:368.550000px;}
.y2d_c00496{bottom:376.050000px;}
.y5f_c00496{bottom:382.950000px;}
.y2c_c00496{bottom:393.750000px;}
.y5e_c00496{bottom:397.050000px;}
.y5d_c00496{bottom:411.150000px;}
.y2b_c00496{bottom:411.750000px;}
.y5c_c00496{bottom:425.550000px;}
.y2a_c00496{bottom:429.450000px;}
.y5b_c00496{bottom:439.950000px;}
.y29_c00496{bottom:447.150000px;}
.y5a_c00496{bottom:454.350000px;}
.y28_c00496{bottom:464.850000px;}
.y59_c00496{bottom:468.000000px;}
.y27_c00496{bottom:482.100000px;}
.y58_c00496{bottom:482.700000px;}
.y57_c00496{bottom:497.100000px;}
.y26_c00496{bottom:499.800000px;}
.y56_c00496{bottom:511.200000px;}
.y25_c00496{bottom:517.800000px;}
.y55_c00496{bottom:529.350000px;}
.y24_c00496{bottom:535.500000px;}
.y54_c00496{bottom:540.450000px;}
.y23_c00496{bottom:553.500000px;}
.y53_c00496{bottom:554.550000px;}
.y22_c00496{bottom:571.500000px;}
.y52_c00496{bottom:571.800000px;}
.y51_c00496{bottom:582.900000px;}
.y21_c00496{bottom:589.200000px;}
.y20_c00496{bottom:607.200000px;}
.y1f_c00496{bottom:624.900000px;}
.y50_c00496{bottom:633.150000px;}
.y1e_c00496{bottom:642.900000px;}
.y4f_c00496{bottom:655.500000px;}
.y1d_c00496{bottom:660.600000px;}
.y1c_c00496{bottom:678.300000px;}
.y4e_c00496{bottom:686.100000px;}
.y1b_c00496{bottom:696.000000px;}
.y4d_c00496{bottom:700.200000px;}
.y1a_c00496{bottom:714.000000px;}
.y4c_c00496{bottom:718.200000px;}
.y19_c00496{bottom:731.700000px;}
.y4b_c00496{bottom:735.450000px;}
.y18_c00496{bottom:749.400000px;}
.y4a_c00496{bottom:753.450000px;}
.y17_c00496{bottom:767.700000px;}
.y49_c00496{bottom:770.700000px;}
.y16_c00496{bottom:785.400000px;}
.y48_c00496{bottom:788.700000px;}
.y15_c00496{bottom:803.100000px;}
.y14_c00496{bottom:820.800000px;}
.y47_c00496{bottom:824.100000px;}
.y13_c00496{bottom:838.800000px;}
.y46_c00496{bottom:842.400000px;}
.y12_c00496{bottom:856.500000px;}
.y45_c00496{bottom:867.750000px;}
.y11_c00496{bottom:873.750000px;}
.y44_c00496{bottom:886.050000px;}
.y10_c00496{bottom:891.750000px;}
.y43_c00496{bottom:906.150000px;}
.yf_c00496{bottom:909.450000px;}
.y42_c00496{bottom:922.050000px;}
.ye_c00496{bottom:927.450000px;}
.y41_c00496{bottom:939.750000px;}
.yd_c00496{bottom:945.150000px;}
.y40_c00496{bottom:957.450000px;}
.yc_c00496{bottom:962.850000px;}
.y3f_c00496{bottom:975.150000px;}
.yb_c00496{bottom:980.550000px;}
.y3e_c00496{bottom:992.850000px;}
.ya_c00496{bottom:998.550000px;}
.y3d_c00496{bottom:1010.850000px;}
.y9_c00496{bottom:1016.250000px;}
.y3c_c00496{bottom:1028.550000px;}
.y8_c00496{bottom:1033.950000px;}
.y3b_c00496{bottom:1050.150000px;}
.y7_c00496{bottom:1052.250000px;}
.y3a_c00496{bottom:1068.900000px;}
.y6_c00496{bottom:1078.200000px;}
.y39_c00496{bottom:1086.300000px;}
.y5_c00496{bottom:1092.600000px;}
.y38_c00496{bottom:1104.000000px;}
.y4_c00496{bottom:1108.800000px;}
.y37_c00496{bottom:1121.700000px;}
.y3_c00496{bottom:1122.150000px;}
.y1_c00496{bottom:1148.100000px;}
.y2_c00496{bottom:1148.400000px;}
.h5_c00496{height:48.000000px;}
.h4_c00496{height:54.000000px;}
.h7_c00496{height:60.000000px;}
.h6_c00496{height:66.000000px;}
.h8_c00496{height:72.000000px;}
.h2_c00496{height:84.000000px;}
.h3_c00496{height:108.000000px;}
.h0_c00496{height:1267.200073px;}
.h1_c00496{height:1267.500000px;}
.w0_c00496{width:958.320007px;}
.w1_c00496{width:958.500000px;}
.x0_c00496{left:0.000000px;}
.x1d_c00496{left:81.300000px;}
.x5e_c00496{left:86.100000px;}
.x94_c00496{left:93.300000px;}
.xc_c00496{left:94.650000px;}
.x99_c00496{left:96.600000px;}
.x29_c00496{left:98.250000px;}
.x23_c00496{left:99.300000px;}
.x6a_c00496{left:100.800000px;}
.x4_c00496{left:109.050000px;}
.x95_c00496{left:114.150000px;}
.x17_c00496{left:115.200000px;}
.x58_c00496{left:121.950000px;}
.x91_c00496{left:123.750000px;}
.x73_c00496{left:124.950000px;}
.x6b_c00496{left:126.300000px;}
.x41_c00496{left:128.100000px;}
.x8c_c00496{left:130.200000px;}
.x80_c00496{left:131.550000px;}
.x4b_c00496{left:134.250000px;}
.x47_c00496{left:136.050000px;}
.x5f_c00496{left:139.050000px;}
.x78_c00496{left:140.700000px;}
.x42_c00496{left:142.800000px;}
.x76_c00496{left:144.000000px;}
.xa3_c00496{left:145.500000px;}
.x35_c00496{left:147.000000px;}
.x2a_c00496{left:148.350000px;}
.x3b_c00496{left:150.750000px;}
.x84_c00496{left:151.800000px;}
.x4c_c00496{left:153.000000px;}
.x96_c00496{left:154.050000px;}
.x8f_c00496{left:156.150000px;}
.x18_c00496{left:158.100000px;}
.x89_c00496{left:159.450000px;}
.x24_c00496{left:163.800000px;}
.x62_c00496{left:165.000000px;}
.x1e_c00496{left:166.650000px;}
.x7e_c00496{left:169.050000px;}
.x79_c00496{left:170.250000px;}
.xa0_c00496{left:172.500000px;}
.x11_c00496{left:173.850000px;}
.x59_c00496{left:175.950000px;}
.x83_c00496{left:179.550000px;}
.x8d_c00496{left:181.350000px;}
.x2b_c00496{left:183.300000px;}
.x2f_c00496{left:187.350000px;}
.x5_c00496{left:190.050000px;}
.x19_c00496{left:192.000000px;}
.x74_c00496{left:195.150000px;}
.x12_c00496{left:197.550000px;}
.x5a_c00496{left:199.050000px;}
.x8e_c00496{left:200.850000px;}
.x36_c00496{left:202.500000px;}
.x30_c00496{left:207.150000px;}
.x1a_c00496{left:208.950000px;}
.x51_c00496{left:210.000000px;}
.x25_c00496{left:211.650000px;}
.x1f_c00496{left:212.700000px;}
.x13_c00496{left:214.500000px;}
.x6_c00496{left:216.000000px;}
.x6c_c00496{left:217.350000px;}
.x3c_c00496{left:219.150000px;}
.x48_c00496{left:220.950000px;}
.x7a_c00496{left:222.450000px;}
.x68_c00496{left:223.650000px;}
.x9e_c00496{left:226.050000px;}
.x37_c00496{left:228.000000px;}
.x4d_c00496{left:229.350000px;}
.x63_c00496{left:231.300000px;}
.x26_c00496{left:232.500000px;}
.x3d_c00496{left:234.600000px;}
.x43_c00496{left:236.400000px;}
.x52_c00496{left:237.750000px;}
.x6d_c00496{left:238.950000px;}
.x9c_c00496{left:240.150000px;}
.x86_c00496{left:241.350000px;}
.x64_c00496{left:242.400000px;}
.x7_c00496{left:245.850000px;}
.x31_c00496{left:247.050000px;}
.x5b_c00496{left:249.450000px;}
.x44_c00496{left:251.550000px;}
.x81_c00496{left:253.950000px;}
.x14_c00496{left:255.600000px;}
.x9b_c00496{left:258.600000px;}
.x88_c00496{left:260.100000px;}
.x20_c00496{left:261.300000px;}
.x7b_c00496{left:262.350000px;}
.x93_c00496{left:265.050000px;}
.x77_c00496{left:266.400000px;}
.x15_c00496{left:268.500000px;}
.x53_c00496{left:270.150000px;}
.x4e_c00496{left:272.550000px;}
.x32_c00496{left:274.050000px;}
.x98_c00496{left:276.750000px;}
.x27_c00496{left:278.250000px;}
.x2c_c00496{left:279.450000px;}
.x1b_c00496{left:280.950000px;}
.x54_c00496{left:282.450000px;}
.x16_c00496{left:284.400000px;}
.x6e_c00496{left:288.300000px;}
.x3e_c00496{left:289.350000px;}
.x5c_c00496{left:291.450000px;}
.x65_c00496{left:293.550000px;}
.x38_c00496{left:294.600000px;}
.x9a_c00496{left:295.800000px;}
.x8_c00496{left:297.000000px;}
.x55_c00496{left:299.700000px;}
.x3f_c00496{left:301.200000px;}
.xd_c00496{left:302.700000px;}
.x157_c00496{left:304.650000px;}
.x4f_c00496{left:306.750000px;}
.x7c_c00496{left:308.100000px;}
.xa1_c00496{left:312.450000px;}
.x33_c00496{left:314.400000px;}
.x60_c00496{left:315.750000px;}
.xa2_c00496{left:316.800000px;}
.x28_c00496{left:318.150000px;}
.x70_c00496{left:320.100000px;}
.x49_c00496{left:322.800000px;}
.x7f_c00496{left:324.150000px;}
.x1_c00496{left:325.500000px;}
.x39_c00496{left:327.750000px;}
.x9_c00496{left:330.900000px;}
.x45_c00496{left:332.250000px;}
.x2d_c00496{left:333.450000px;}
.x8a_c00496{left:335.100000px;}
.x97_c00496{left:337.050000px;}
.x4a_c00496{left:340.050000px;}
.x7d_c00496{left:341.850000px;}
.xe_c00496{left:343.800000px;}
.x21_c00496{left:345.600000px;}
.x34_c00496{left:347.550000px;}
.x92_c00496{left:349.050000px;}
.x71_c00496{left:351.450000px;}
.x56_c00496{left:352.950000px;}
.x50_c00496{left:355.050000px;}
.x9f_c00496{left:356.100000px;}
.x66_c00496{left:358.350000px;}
.x6f_c00496{left:359.550000px;}
.x3a_c00496{left:361.650000px;}
.xa_c00496{left:365.400000px;}
.x82_c00496{left:366.600000px;}
.x67_c00496{left:369.150000px;}
.x87_c00496{left:370.350000px;}
.x72_c00496{left:371.550000px;}
.x1c_c00496{left:373.050000px;}
.xf_c00496{left:374.400000px;}
.x75_c00496{left:375.450000px;}
.x40_c00496{left:376.800000px;}
.x57_c00496{left:378.150000px;}
.x90_c00496{left:379.650000px;}
.x85_c00496{left:380.700000px;}
.x69_c00496{left:384.150000px;}
.x8b_c00496{left:389.100000px;}
.x46_c00496{left:390.600000px;}
.x61_c00496{left:392.700000px;}
.x22_c00496{left:394.200000px;}
.x5d_c00496{left:395.550000px;}
.x9d_c00496{left:397.050000px;}
.xb_c00496{left:399.600000px;}
.x10_c00496{left:401.400000px;}
.x158_c00496{left:408.300000px;}
.x2e_c00496{left:412.350000px;}
.x143_c00496{left:433.050000px;}
.x129_c00496{left:434.400000px;}
.xf3_c00496{left:435.600000px;}
.xc3_c00496{left:437.400000px;}
.x13c_c00496{left:442.050000px;}
.xce_c00496{left:446.700000px;}
.x154_c00496{left:447.900000px;}
.x10e_c00496{left:449.550000px;}
.x103_c00496{left:451.350000px;}
.xfb_c00496{left:453.300000px;}
.xa4_c00496{left:454.650000px;}
.xc2_c00496{left:456.150000px;}
.x136_c00496{left:459.900000px;}
.x116_c00496{left:462.600000px;}
.x14b_c00496{left:463.950000px;}
.x11d_c00496{left:466.950000px;}
.x134_c00496{left:468.450000px;}
.x106_c00496{left:470.400000px;}
.x10f_c00496{left:472.650000px;}
.x144_c00496{left:473.700000px;}
.x124_c00496{left:475.200000px;}
.x14e_c00496{left:476.250000px;}
.x10c_c00496{left:479.250000px;}
.x137_c00496{left:480.300000px;}
.x117_c00496{left:482.100000px;}
.xd4_c00496{left:484.650000px;}
.xff_c00496{left:485.700000px;}
.xcf_c00496{left:487.050000px;}
.xe4_c00496{left:488.850000px;}
.x12a_c00496{left:490.200000px;}
.x123_c00496{left:493.050000px;}
.x100_c00496{left:495.000000px;}
.xc4_c00496{left:496.800000px;}
.x138_c00496{left:498.300000px;}
.x12e_c00496{left:500.550000px;}
.xe0_c00496{left:501.600000px;}
.xee_c00496{left:502.950000px;}
.x121_c00496{left:504.900000px;}
.xba_c00496{left:506.550000px;}
.xb2_c00496{left:508.200000px;}
.x112_c00496{left:510.750000px;}
.x139_c00496{left:511.950000px;}
.xe7_c00496{left:513.600000px;}
.x12f_c00496{left:514.800000px;}
.x107_c00496{left:517.950000px;}
.x135_c00496{left:520.050000px;}
.xab_c00496{left:521.550000px;}
.xc5_c00496{left:522.750000px;}
.xf7_c00496{left:523.950000px;}
.xbb_c00496{left:525.600000px;}
.xfc_c00496{left:527.400000px;}
.x155_c00496{left:528.450000px;}
.x150_c00496{left:529.500000px;}
.x148_c00496{left:530.700000px;}
.xd0_c00496{left:532.050000px;}
.x12b_c00496{left:535.500000px;}
.x13b_c00496{left:537.150000px;}
.xe5_c00496{left:539.550000px;}
.x130_c00496{left:541.800000px;}
.xb3_c00496{left:544.500000px;}
.xeb_c00496{left:545.550000px;}
.xd5_c00496{left:546.900000px;}
.x145_c00496{left:548.550000px;}
.x118_c00496{left:550.800000px;}
.x110_c00496{left:552.150000px;}
.xa5_c00496{left:553.350000px;}
.x13d_c00496{left:556.200000px;}
.x11e_c00496{left:559.500000px;}
.x125_c00496{left:560.550000px;}
.xbc_c00496{left:561.900000px;}
.xc6_c00496{left:563.100000px;}
.x113_c00496{left:564.750000px;}
.x140_c00496{left:565.950000px;}
.xef_c00496{left:568.800000px;}
.xf4_c00496{left:570.600000px;}
.x119_c00496{left:572.700000px;}
.x108_c00496{left:575.250000px;}
.xb4_c00496{left:577.200000px;}
.xf0_c00496{left:581.400000px;}
.xbd_c00496{left:582.750000px;}
.xfd_c00496{left:584.250000px;}
.xb5_c00496{left:585.900000px;}
.xec_c00496{left:587.250000px;}
.x13e_c00496{left:588.300000px;}
.xa6_c00496{left:589.350000px;}
.xd1_c00496{left:591.750000px;}
.xac_c00496{left:594.600000px;}
.x104_c00496{left:596.400000px;}
.xe1_c00496{left:598.200000px;}
.x111_c00496{left:602.550000px;}
.xdd_c00496{left:605.250000px;}
.xad_c00496{left:606.900000px;}
.xc7_c00496{left:609.600000px;}
.x13f_c00496{left:610.950000px;}
.xcb_c00496{left:612.000000px;}
.x152_c00496{left:613.650000px;}
.x122_c00496{left:614.700000px;}
.xd9_c00496{left:615.750000px;}
.xe2_c00496{left:618.000000px;}
.xe8_c00496{left:619.800000px;}
.xed_c00496{left:621.150000px;}
.x11f_c00496{left:622.800000px;}
.x156_c00496{left:623.850000px;}
.xbe_c00496{left:625.650000px;}
.xd2_c00496{left:627.450000px;}
.xf5_c00496{left:629.700000px;}
.xde_c00496{left:630.750000px;}
.x126_c00496{left:632.100000px;}
.x14c_c00496{left:633.150000px;}
.xae_c00496{left:635.700000px;}
.x101_c00496{left:637.200000px;}
.xc8_c00496{left:639.150000px;}
.xcc_c00496{left:641.850000px;}
.x114_c00496{left:642.900000px;}
.x109_c00496{left:644.700000px;}
.x14d_c00496{left:649.050000px;}
.x14a_c00496{left:650.100000px;}
.x2_c00496{left:652.350000px;}
.xd6_c00496{left:654.600000px;}
.xf1_c00496{left:658.200000px;}
.xcd_c00496{left:662.700000px;}
.x153_c00496{left:663.750000px;}
.x115_c00496{left:664.800000px;}
.x10a_c00496{left:666.000000px;}
.x131_c00496{left:668.550000px;}
.xa7_c00496{left:670.050000px;}
.xfe_c00496{left:672.150000px;}
.xb6_c00496{left:673.800000px;}
.xf8_c00496{left:675.150000px;}
.x127_c00496{left:677.100000px;}
.xbf_c00496{left:679.650000px;}
.xe9_c00496{left:681.000000px;}
.xd3_c00496{left:683.250000px;}
.x11a_c00496{left:684.300000px;}
.x102_c00496{left:685.800000px;}
.xaf_c00496{left:688.650000px;}
.xf9_c00496{left:689.850000px;}
.xd7_c00496{left:691.650000px;}
.xc9_c00496{left:694.200000px;}
.xdf_c00496{left:696.300000px;}
.x141_c00496{left:697.350000px;}
.xc0_c00496{left:698.400000px;}
.x151_c00496{left:699.600000px;}
.x132_c00496{left:700.950000px;}
.xda_c00496{left:702.900000px;}
.xa8_c00496{left:704.550000px;}
.xb0_c00496{left:706.950000px;}
.x12c_c00496{left:708.600000px;}
.x10d_c00496{left:709.800000px;}
.xb7_c00496{left:711.300000px;}
.xd8_c00496{left:715.050000px;}
.xca_c00496{left:717.300000px;}
.xf2_c00496{left:718.800000px;}
.x12d_c00496{left:722.700000px;}
.x133_c00496{left:724.350000px;}
.xa9_c00496{left:727.950000px;}
.xb1_c00496{left:729.600000px;}
.x11b_c00496{left:730.800000px;}
.x120_c00496{left:732.300000px;}
.xdb_c00496{left:733.800000px;}
.xe3_c00496{left:735.750000px;}
.x128_c00496{left:737.550000px;}
.xb8_c00496{left:739.350000px;}
.x10b_c00496{left:741.000000px;}
.xe6_c00496{left:742.200000px;}
.xc1_c00496{left:744.150000px;}
.x3_c00496{left:745.650000px;}
.x14f_c00496{left:747.000000px;}
.x105_c00496{left:748.650000px;}
.x142_c00496{left:750.300000px;}
.x149_c00496{left:751.950000px;}
.xf6_c00496{left:754.650000px;}
.xea_c00496{left:755.850000px;}
.xaa_c00496{left:757.050000px;}
.x146_c00496{left:758.550000px;}
.xdc_c00496{left:759.750000px;}
.xb9_c00496{left:761.250000px;}
.xfa_c00496{left:763.650000px;}
.x11c_c00496{left:765.000000px;}
.x147_c00496{left:777.600000px;}
.x13a_c00496{left:779.100000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls1_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:44.632708pt;}
.ws0_c00496{word-spacing:-68.632708pt;}
.ws1_c00496{word-spacing:-8.661276pt;}
.ws5_c00496{word-spacing:-8.285936pt;}
.ws7_c00496{word-spacing:-6.994536pt;}
.ws8_c00496{word-spacing:-4.327485pt;}
.ws6_c00496{word-spacing:-3.461538pt;}
.ws9_c00496{word-spacing:0.000000pt;}
.ws4_c00496{word-spacing:2.693603pt;}
.ws2_c00496{word-spacing:9.735080pt;}
.ws3_c00496{word-spacing:20.535490pt;}
._1_c00496{margin-left:-44.632708pt;}
._0_c00496{width:2.859696pt;}
.fs3_c00496{font-size:42.666667pt;}
.fs2_c00496{font-size:48.000000pt;}
.fs5_c00496{font-size:53.333333pt;}
.fs4_c00496{font-size:58.666667pt;}
.fs6_c00496{font-size:64.000000pt;}
.fs0_c00496{font-size:74.666667pt;}
.fs1_c00496{font-size:96.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y6c_c00496{bottom:176.933333pt;}
.y6b_c00496{bottom:187.733333pt;}
.y36_c00496{bottom:192.266667pt;}
.y6a_c00496{bottom:200.266667pt;}
.y35_c00496{bottom:208.000000pt;}
.y69_c00496{bottom:214.666667pt;}
.y34_c00496{bottom:223.733333pt;}
.y68_c00496{bottom:225.600000pt;}
.y67_c00496{bottom:238.400000pt;}
.y33_c00496{bottom:239.733333pt;}
.y66_c00496{bottom:251.466667pt;}
.y32_c00496{bottom:255.733333pt;}
.y65_c00496{bottom:264.000000pt;}
.y31_c00496{bottom:270.666667pt;}
.y64_c00496{bottom:276.800000pt;}
.y30_c00496{bottom:286.400000pt;}
.y63_c00496{bottom:289.600000pt;}
.y62_c00496{bottom:302.133333pt;}
.y2f_c00496{bottom:302.666667pt;}
.y61_c00496{bottom:314.933333pt;}
.y2e_c00496{bottom:318.933333pt;}
.y60_c00496{bottom:327.600000pt;}
.y2d_c00496{bottom:334.266667pt;}
.y5f_c00496{bottom:340.400000pt;}
.y2c_c00496{bottom:350.000000pt;}
.y5e_c00496{bottom:352.933333pt;}
.y5d_c00496{bottom:365.466667pt;}
.y2b_c00496{bottom:366.000000pt;}
.y5c_c00496{bottom:378.266667pt;}
.y2a_c00496{bottom:381.733333pt;}
.y5b_c00496{bottom:391.066667pt;}
.y29_c00496{bottom:397.466667pt;}
.y5a_c00496{bottom:403.866667pt;}
.y28_c00496{bottom:413.200000pt;}
.y59_c00496{bottom:416.000000pt;}
.y27_c00496{bottom:428.533333pt;}
.y58_c00496{bottom:429.066667pt;}
.y57_c00496{bottom:441.866667pt;}
.y26_c00496{bottom:444.266667pt;}
.y56_c00496{bottom:454.400000pt;}
.y25_c00496{bottom:460.266667pt;}
.y55_c00496{bottom:470.533333pt;}
.y24_c00496{bottom:476.000000pt;}
.y54_c00496{bottom:480.400000pt;}
.y23_c00496{bottom:492.000000pt;}
.y53_c00496{bottom:492.933333pt;}
.y22_c00496{bottom:508.000000pt;}
.y52_c00496{bottom:508.266667pt;}
.y51_c00496{bottom:518.133333pt;}
.y21_c00496{bottom:523.733333pt;}
.y20_c00496{bottom:539.733333pt;}
.y1f_c00496{bottom:555.466667pt;}
.y50_c00496{bottom:562.800000pt;}
.y1e_c00496{bottom:571.466667pt;}
.y4f_c00496{bottom:582.666667pt;}
.y1d_c00496{bottom:587.200000pt;}
.y1c_c00496{bottom:602.933333pt;}
.y4e_c00496{bottom:609.866667pt;}
.y1b_c00496{bottom:618.666667pt;}
.y4d_c00496{bottom:622.400000pt;}
.y1a_c00496{bottom:634.666667pt;}
.y4c_c00496{bottom:638.400000pt;}
.y19_c00496{bottom:650.400000pt;}
.y4b_c00496{bottom:653.733333pt;}
.y18_c00496{bottom:666.133333pt;}
.y4a_c00496{bottom:669.733333pt;}
.y17_c00496{bottom:682.400000pt;}
.y49_c00496{bottom:685.066667pt;}
.y16_c00496{bottom:698.133333pt;}
.y48_c00496{bottom:701.066667pt;}
.y15_c00496{bottom:713.866667pt;}
.y14_c00496{bottom:729.600000pt;}
.y47_c00496{bottom:732.533333pt;}
.y13_c00496{bottom:745.600000pt;}
.y46_c00496{bottom:748.800000pt;}
.y12_c00496{bottom:761.333333pt;}
.y45_c00496{bottom:771.333333pt;}
.y11_c00496{bottom:776.666667pt;}
.y44_c00496{bottom:787.600000pt;}
.y10_c00496{bottom:792.666667pt;}
.y43_c00496{bottom:805.466667pt;}
.yf_c00496{bottom:808.400000pt;}
.y42_c00496{bottom:819.600000pt;}
.ye_c00496{bottom:824.400000pt;}
.y41_c00496{bottom:835.333333pt;}
.yd_c00496{bottom:840.133333pt;}
.y40_c00496{bottom:851.066667pt;}
.yc_c00496{bottom:855.866667pt;}
.y3f_c00496{bottom:866.800000pt;}
.yb_c00496{bottom:871.600000pt;}
.y3e_c00496{bottom:882.533333pt;}
.ya_c00496{bottom:887.600000pt;}
.y3d_c00496{bottom:898.533333pt;}
.y9_c00496{bottom:903.333333pt;}
.y3c_c00496{bottom:914.266667pt;}
.y8_c00496{bottom:919.066667pt;}
.y3b_c00496{bottom:933.466667pt;}
.y7_c00496{bottom:935.333333pt;}
.y3a_c00496{bottom:950.133333pt;}
.y6_c00496{bottom:958.400000pt;}
.y39_c00496{bottom:965.600000pt;}
.y5_c00496{bottom:971.200000pt;}
.y38_c00496{bottom:981.333333pt;}
.y4_c00496{bottom:985.600000pt;}
.y37_c00496{bottom:997.066667pt;}
.y3_c00496{bottom:997.466667pt;}
.y1_c00496{bottom:1020.533333pt;}
.y2_c00496{bottom:1020.800000pt;}
.h5_c00496{height:42.666667pt;}
.h4_c00496{height:48.000000pt;}
.h7_c00496{height:53.333333pt;}
.h6_c00496{height:58.666667pt;}
.h8_c00496{height:64.000000pt;}
.h2_c00496{height:74.666667pt;}
.h3_c00496{height:96.000000pt;}
.h0_c00496{height:1126.400065pt;}
.h1_c00496{height:1126.666667pt;}
.w0_c00496{width:851.840007pt;}
.w1_c00496{width:852.000000pt;}
.x0_c00496{left:0.000000pt;}
.x1d_c00496{left:72.266667pt;}
.x5e_c00496{left:76.533333pt;}
.x94_c00496{left:82.933333pt;}
.xc_c00496{left:84.133333pt;}
.x99_c00496{left:85.866667pt;}
.x29_c00496{left:87.333333pt;}
.x23_c00496{left:88.266667pt;}
.x6a_c00496{left:89.600000pt;}
.x4_c00496{left:96.933333pt;}
.x95_c00496{left:101.466667pt;}
.x17_c00496{left:102.400000pt;}
.x58_c00496{left:108.400000pt;}
.x91_c00496{left:110.000000pt;}
.x73_c00496{left:111.066667pt;}
.x6b_c00496{left:112.266667pt;}
.x41_c00496{left:113.866667pt;}
.x8c_c00496{left:115.733333pt;}
.x80_c00496{left:116.933333pt;}
.x4b_c00496{left:119.333333pt;}
.x47_c00496{left:120.933333pt;}
.x5f_c00496{left:123.600000pt;}
.x78_c00496{left:125.066667pt;}
.x42_c00496{left:126.933333pt;}
.x76_c00496{left:128.000000pt;}
.xa3_c00496{left:129.333333pt;}
.x35_c00496{left:130.666667pt;}
.x2a_c00496{left:131.866667pt;}
.x3b_c00496{left:134.000000pt;}
.x84_c00496{left:134.933333pt;}
.x4c_c00496{left:136.000000pt;}
.x96_c00496{left:136.933333pt;}
.x8f_c00496{left:138.800000pt;}
.x18_c00496{left:140.533333pt;}
.x89_c00496{left:141.733333pt;}
.x24_c00496{left:145.600000pt;}
.x62_c00496{left:146.666667pt;}
.x1e_c00496{left:148.133333pt;}
.x7e_c00496{left:150.266667pt;}
.x79_c00496{left:151.333333pt;}
.xa0_c00496{left:153.333333pt;}
.x11_c00496{left:154.533333pt;}
.x59_c00496{left:156.400000pt;}
.x83_c00496{left:159.600000pt;}
.x8d_c00496{left:161.200000pt;}
.x2b_c00496{left:162.933333pt;}
.x2f_c00496{left:166.533333pt;}
.x5_c00496{left:168.933333pt;}
.x19_c00496{left:170.666667pt;}
.x74_c00496{left:173.466667pt;}
.x12_c00496{left:175.600000pt;}
.x5a_c00496{left:176.933333pt;}
.x8e_c00496{left:178.533333pt;}
.x36_c00496{left:180.000000pt;}
.x30_c00496{left:184.133333pt;}
.x1a_c00496{left:185.733333pt;}
.x51_c00496{left:186.666667pt;}
.x25_c00496{left:188.133333pt;}
.x1f_c00496{left:189.066667pt;}
.x13_c00496{left:190.666667pt;}
.x6_c00496{left:192.000000pt;}
.x6c_c00496{left:193.200000pt;}
.x3c_c00496{left:194.800000pt;}
.x48_c00496{left:196.400000pt;}
.x7a_c00496{left:197.733333pt;}
.x68_c00496{left:198.800000pt;}
.x9e_c00496{left:200.933333pt;}
.x37_c00496{left:202.666667pt;}
.x4d_c00496{left:203.866667pt;}
.x63_c00496{left:205.600000pt;}
.x26_c00496{left:206.666667pt;}
.x3d_c00496{left:208.533333pt;}
.x43_c00496{left:210.133333pt;}
.x52_c00496{left:211.333333pt;}
.x6d_c00496{left:212.400000pt;}
.x9c_c00496{left:213.466667pt;}
.x86_c00496{left:214.533333pt;}
.x64_c00496{left:215.466667pt;}
.x7_c00496{left:218.533333pt;}
.x31_c00496{left:219.600000pt;}
.x5b_c00496{left:221.733333pt;}
.x44_c00496{left:223.600000pt;}
.x81_c00496{left:225.733333pt;}
.x14_c00496{left:227.200000pt;}
.x9b_c00496{left:229.866667pt;}
.x88_c00496{left:231.200000pt;}
.x20_c00496{left:232.266667pt;}
.x7b_c00496{left:233.200000pt;}
.x93_c00496{left:235.600000pt;}
.x77_c00496{left:236.800000pt;}
.x15_c00496{left:238.666667pt;}
.x53_c00496{left:240.133333pt;}
.x4e_c00496{left:242.266667pt;}
.x32_c00496{left:243.600000pt;}
.x98_c00496{left:246.000000pt;}
.x27_c00496{left:247.333333pt;}
.x2c_c00496{left:248.400000pt;}
.x1b_c00496{left:249.733333pt;}
.x54_c00496{left:251.066667pt;}
.x16_c00496{left:252.800000pt;}
.x6e_c00496{left:256.266667pt;}
.x3e_c00496{left:257.200000pt;}
.x5c_c00496{left:259.066667pt;}
.x65_c00496{left:260.933333pt;}
.x38_c00496{left:261.866667pt;}
.x9a_c00496{left:262.933333pt;}
.x8_c00496{left:264.000000pt;}
.x55_c00496{left:266.400000pt;}
.x3f_c00496{left:267.733333pt;}
.xd_c00496{left:269.066667pt;}
.x157_c00496{left:270.800000pt;}
.x4f_c00496{left:272.666667pt;}
.x7c_c00496{left:273.866667pt;}
.xa1_c00496{left:277.733333pt;}
.x33_c00496{left:279.466667pt;}
.x60_c00496{left:280.666667pt;}
.xa2_c00496{left:281.600000pt;}
.x28_c00496{left:282.800000pt;}
.x70_c00496{left:284.533333pt;}
.x49_c00496{left:286.933333pt;}
.x7f_c00496{left:288.133333pt;}
.x1_c00496{left:289.333333pt;}
.x39_c00496{left:291.333333pt;}
.x9_c00496{left:294.133333pt;}
.x45_c00496{left:295.333333pt;}
.x2d_c00496{left:296.400000pt;}
.x8a_c00496{left:297.866667pt;}
.x97_c00496{left:299.600000pt;}
.x4a_c00496{left:302.266667pt;}
.x7d_c00496{left:303.866667pt;}
.xe_c00496{left:305.600000pt;}
.x21_c00496{left:307.200000pt;}
.x34_c00496{left:308.933333pt;}
.x92_c00496{left:310.266667pt;}
.x71_c00496{left:312.400000pt;}
.x56_c00496{left:313.733333pt;}
.x50_c00496{left:315.600000pt;}
.x9f_c00496{left:316.533333pt;}
.x66_c00496{left:318.533333pt;}
.x6f_c00496{left:319.600000pt;}
.x3a_c00496{left:321.466667pt;}
.xa_c00496{left:324.800000pt;}
.x82_c00496{left:325.866667pt;}
.x67_c00496{left:328.133333pt;}
.x87_c00496{left:329.200000pt;}
.x72_c00496{left:330.266667pt;}
.x1c_c00496{left:331.600000pt;}
.xf_c00496{left:332.800000pt;}
.x75_c00496{left:333.733333pt;}
.x40_c00496{left:334.933333pt;}
.x57_c00496{left:336.133333pt;}
.x90_c00496{left:337.466667pt;}
.x85_c00496{left:338.400000pt;}
.x69_c00496{left:341.466667pt;}
.x8b_c00496{left:345.866667pt;}
.x46_c00496{left:347.200000pt;}
.x61_c00496{left:349.066667pt;}
.x22_c00496{left:350.400000pt;}
.x5d_c00496{left:351.600000pt;}
.x9d_c00496{left:352.933333pt;}
.xb_c00496{left:355.200000pt;}
.x10_c00496{left:356.800000pt;}
.x158_c00496{left:362.933333pt;}
.x2e_c00496{left:366.533333pt;}
.x143_c00496{left:384.933333pt;}
.x129_c00496{left:386.133333pt;}
.xf3_c00496{left:387.200000pt;}
.xc3_c00496{left:388.800000pt;}
.x13c_c00496{left:392.933333pt;}
.xce_c00496{left:397.066667pt;}
.x154_c00496{left:398.133333pt;}
.x10e_c00496{left:399.600000pt;}
.x103_c00496{left:401.200000pt;}
.xfb_c00496{left:402.933333pt;}
.xa4_c00496{left:404.133333pt;}
.xc2_c00496{left:405.466667pt;}
.x136_c00496{left:408.800000pt;}
.x116_c00496{left:411.200000pt;}
.x14b_c00496{left:412.400000pt;}
.x11d_c00496{left:415.066667pt;}
.x134_c00496{left:416.400000pt;}
.x106_c00496{left:418.133333pt;}
.x10f_c00496{left:420.133333pt;}
.x144_c00496{left:421.066667pt;}
.x124_c00496{left:422.400000pt;}
.x14e_c00496{left:423.333333pt;}
.x10c_c00496{left:426.000000pt;}
.x137_c00496{left:426.933333pt;}
.x117_c00496{left:428.533333pt;}
.xd4_c00496{left:430.800000pt;}
.xff_c00496{left:431.733333pt;}
.xcf_c00496{left:432.933333pt;}
.xe4_c00496{left:434.533333pt;}
.x12a_c00496{left:435.733333pt;}
.x123_c00496{left:438.266667pt;}
.x100_c00496{left:440.000000pt;}
.xc4_c00496{left:441.600000pt;}
.x138_c00496{left:442.933333pt;}
.x12e_c00496{left:444.933333pt;}
.xe0_c00496{left:445.866667pt;}
.xee_c00496{left:447.066667pt;}
.x121_c00496{left:448.800000pt;}
.xba_c00496{left:450.266667pt;}
.xb2_c00496{left:451.733333pt;}
.x112_c00496{left:454.000000pt;}
.x139_c00496{left:455.066667pt;}
.xe7_c00496{left:456.533333pt;}
.x12f_c00496{left:457.600000pt;}
.x107_c00496{left:460.400000pt;}
.x135_c00496{left:462.266667pt;}
.xab_c00496{left:463.600000pt;}
.xc5_c00496{left:464.666667pt;}
.xf7_c00496{left:465.733333pt;}
.xbb_c00496{left:467.200000pt;}
.xfc_c00496{left:468.800000pt;}
.x155_c00496{left:469.733333pt;}
.x150_c00496{left:470.666667pt;}
.x148_c00496{left:471.733333pt;}
.xd0_c00496{left:472.933333pt;}
.x12b_c00496{left:476.000000pt;}
.x13b_c00496{left:477.466667pt;}
.xe5_c00496{left:479.600000pt;}
.x130_c00496{left:481.600000pt;}
.xb3_c00496{left:484.000000pt;}
.xeb_c00496{left:484.933333pt;}
.xd5_c00496{left:486.133333pt;}
.x145_c00496{left:487.600000pt;}
.x118_c00496{left:489.600000pt;}
.x110_c00496{left:490.800000pt;}
.xa5_c00496{left:491.866667pt;}
.x13d_c00496{left:494.400000pt;}
.x11e_c00496{left:497.333333pt;}
.x125_c00496{left:498.266667pt;}
.xbc_c00496{left:499.466667pt;}
.xc6_c00496{left:500.533333pt;}
.x113_c00496{left:502.000000pt;}
.x140_c00496{left:503.066667pt;}
.xef_c00496{left:505.600000pt;}
.xf4_c00496{left:507.200000pt;}
.x119_c00496{left:509.066667pt;}
.x108_c00496{left:511.333333pt;}
.xb4_c00496{left:513.066667pt;}
.xf0_c00496{left:516.800000pt;}
.xbd_c00496{left:518.000000pt;}
.xfd_c00496{left:519.333333pt;}
.xb5_c00496{left:520.800000pt;}
.xec_c00496{left:522.000000pt;}
.x13e_c00496{left:522.933333pt;}
.xa6_c00496{left:523.866667pt;}
.xd1_c00496{left:526.000000pt;}
.xac_c00496{left:528.533333pt;}
.x104_c00496{left:530.133333pt;}
.xe1_c00496{left:531.733333pt;}
.x111_c00496{left:535.600000pt;}
.xdd_c00496{left:538.000000pt;}
.xad_c00496{left:539.466667pt;}
.xc7_c00496{left:541.866667pt;}
.x13f_c00496{left:543.066667pt;}
.xcb_c00496{left:544.000000pt;}
.x152_c00496{left:545.466667pt;}
.x122_c00496{left:546.400000pt;}
.xd9_c00496{left:547.333333pt;}
.xe2_c00496{left:549.333333pt;}
.xe8_c00496{left:550.933333pt;}
.xed_c00496{left:552.133333pt;}
.x11f_c00496{left:553.600000pt;}
.x156_c00496{left:554.533333pt;}
.xbe_c00496{left:556.133333pt;}
.xd2_c00496{left:557.733333pt;}
.xf5_c00496{left:559.733333pt;}
.xde_c00496{left:560.666667pt;}
.x126_c00496{left:561.866667pt;}
.x14c_c00496{left:562.800000pt;}
.xae_c00496{left:565.066667pt;}
.x101_c00496{left:566.400000pt;}
.xc8_c00496{left:568.133333pt;}
.xcc_c00496{left:570.533333pt;}
.x114_c00496{left:571.466667pt;}
.x109_c00496{left:573.066667pt;}
.x14d_c00496{left:576.933333pt;}
.x14a_c00496{left:577.866667pt;}
.x2_c00496{left:579.866667pt;}
.xd6_c00496{left:581.866667pt;}
.xf1_c00496{left:585.066667pt;}
.xcd_c00496{left:589.066667pt;}
.x153_c00496{left:590.000000pt;}
.x115_c00496{left:590.933333pt;}
.x10a_c00496{left:592.000000pt;}
.x131_c00496{left:594.266667pt;}
.xa7_c00496{left:595.600000pt;}
.xfe_c00496{left:597.466667pt;}
.xb6_c00496{left:598.933333pt;}
.xf8_c00496{left:600.133333pt;}
.x127_c00496{left:601.866667pt;}
.xbf_c00496{left:604.133333pt;}
.xe9_c00496{left:605.333333pt;}
.xd3_c00496{left:607.333333pt;}
.x11a_c00496{left:608.266667pt;}
.x102_c00496{left:609.600000pt;}
.xaf_c00496{left:612.133333pt;}
.xf9_c00496{left:613.200000pt;}
.xd7_c00496{left:614.800000pt;}
.xc9_c00496{left:617.066667pt;}
.xdf_c00496{left:618.933333pt;}
.x141_c00496{left:619.866667pt;}
.xc0_c00496{left:620.800000pt;}
.x151_c00496{left:621.866667pt;}
.x132_c00496{left:623.066667pt;}
.xda_c00496{left:624.800000pt;}
.xa8_c00496{left:626.266667pt;}
.xb0_c00496{left:628.400000pt;}
.x12c_c00496{left:629.866667pt;}
.x10d_c00496{left:630.933333pt;}
.xb7_c00496{left:632.266667pt;}
.xd8_c00496{left:635.600000pt;}
.xca_c00496{left:637.600000pt;}
.xf2_c00496{left:638.933333pt;}
.x12d_c00496{left:642.400000pt;}
.x133_c00496{left:643.866667pt;}
.xa9_c00496{left:647.066667pt;}
.xb1_c00496{left:648.533333pt;}
.x11b_c00496{left:649.600000pt;}
.x120_c00496{left:650.933333pt;}
.xdb_c00496{left:652.266667pt;}
.xe3_c00496{left:654.000000pt;}
.x128_c00496{left:655.600000pt;}
.xb8_c00496{left:657.200000pt;}
.x10b_c00496{left:658.666667pt;}
.xe6_c00496{left:659.733333pt;}
.xc1_c00496{left:661.466667pt;}
.x3_c00496{left:662.800000pt;}
.x14f_c00496{left:664.000000pt;}
.x105_c00496{left:665.466667pt;}
.x142_c00496{left:666.933333pt;}
.x149_c00496{left:668.400000pt;}
.xf6_c00496{left:670.800000pt;}
.xea_c00496{left:671.866667pt;}
.xaa_c00496{left:672.933333pt;}
.x146_c00496{left:674.266667pt;}
.xdc_c00496{left:675.333333pt;}
.xb9_c00496{left:676.666667pt;}
.xfa_c00496{left:678.800000pt;}
.x11c_c00496{left:680.000000pt;}
.x147_c00496{left:691.200000pt;}
.x13a_c00496{left:692.533333pt;}
}





/* 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_c00497 {
    display:none;
  }
  .loading-indicator_c00497.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00497 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_c00497 { 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_c00497" -> "#page-container .classname_c00497")
 */
.pf_c00497 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00497 { /* 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_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00497 { /* 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_c00497 { /* 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_c00497 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00497 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00497 {overflow:visible;}
  }
}
.c_c00497 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00497 { /* 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_c00497:after { /* webkit #35443 */
  content: '';
}
.t_c00497:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00497 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 */
}
.__c00497 { /* 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_c00497 { /* info for Javascript */
  display:none;
}
.l_c00497 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00497 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00497 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00497: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_c00497 {
    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_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00497.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_c00497 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00497;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.000000;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;}
.m52_c00497{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00497{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m25_c00497{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.me5_c00497{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m139_c00497{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m76_c00497{transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00497{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mac_c00497{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00497{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.me9_c00497{transform:matrix(0.065750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065750,0.000000,0.000000,0.250000,0,0);}
.m13d_c00497{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m30_c00497{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00497{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mee_c00497{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m88_c00497{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.mab_c00497{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mea_c00497{transform:matrix(0.083250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00497{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00497{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.maa_c00497{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m134_c00497{transform:matrix(0.091500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091500,0.000000,0.000000,0.250000,0,0);}
.m80_c00497{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8_c00497{transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00497{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.mad_c00497{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.me0_c00497{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00497{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m36_c00497{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00497{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00497{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00497{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.me6_c00497{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.mae_c00497{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m17_c00497{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.meb_c00497{transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);}
.m148_c00497{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00497{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00497{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00497{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mef_c00497{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m75_c00497{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m112_c00497{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m133_c00497{transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);}
.me8_c00497{transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00497{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00497{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.me_c00497{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.mf_c00497{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb_c00497{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m56_c00497{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mba_c00497{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m3_c00497{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m14_c00497{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00497{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m142_c00497{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m145_c00497{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m117_c00497{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m83_c00497{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m115_c00497{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m6_c00497{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mec_c00497{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m127_c00497{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m13a_c00497{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m97_c00497{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m5_c00497{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00497{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00497{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00497{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m9_c00497{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m57_c00497{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00497{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00497{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4_c00497{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00497{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m48_c00497{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00497{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00497{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.md6_c00497{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m114_c00497{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m41_c00497{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m110_c00497{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.md5_c00497{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m67_c00497{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m7_c00497{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00497{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00497{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00497{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00497{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00497{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mca_c00497{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m118_c00497{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m78_c00497{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m16_c00497{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00497{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00497{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00497{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00497{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00497{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m120_c00497{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00497{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00497{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00497{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m84_c00497{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m128_c00497{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.me4_c00497{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m22_c00497{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m38_c00497{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m93_c00497{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m129_c00497{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma_c00497{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m10_c00497{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mc_c00497{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00497{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m96_c00497{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m107_c00497{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00497{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m32_c00497{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m11_c00497{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00497{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md2_c00497{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00497{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m85_c00497{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m82_c00497{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mde_c00497{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00497{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00497{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00497{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00497{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00497{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00497{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00497{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00497{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m51_c00497{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00497{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00497{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00497{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m72_c00497{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00497{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m116_c00497{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00497{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.md0_c00497{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m45_c00497{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m113_c00497{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m94_c00497{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m81_c00497{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m137_c00497{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m46_c00497{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00497{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md_c00497{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00497{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m101_c00497{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00497{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m68_c00497{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m49_c00497{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00497{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m37_c00497{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00497{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m105_c00497{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m66_c00497{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.maf_c00497{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m144_c00497{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00497{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00497{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00497{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m132_c00497{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m11a_c00497{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00497{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me3_c00497{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00497{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m136_c00497{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m111_c00497{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m130_c00497{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m124_c00497{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m40_c00497{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m100_c00497{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00497{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00497{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00497{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.me2_c00497{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m26_c00497{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00497{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m23_c00497{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m43_c00497{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m50_c00497{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00497{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00497{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m54_c00497{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m71_c00497{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00497{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m89_c00497{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me7_c00497{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00497{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m74_c00497{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00497{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00497{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.med_c00497{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m27_c00497{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00497{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md1_c00497{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00497{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m63_c00497{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m73_c00497{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00497{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m58_c00497{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m119_c00497{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m53_c00497{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m123_c00497{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me1_c00497{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.md4_c00497{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m131_c00497{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m98_c00497{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00497{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m21_c00497{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md9_c00497{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00497{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m121_c00497{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m102_c00497{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m90_c00497{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m12_c00497{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00497{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m108_c00497{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m13c_c00497{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf2_c00497{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m47_c00497{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00497{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00497{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.md8_c00497{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mce_c00497{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m91_c00497{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00497{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00497{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m126_c00497{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m19_c00497{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m140_c00497{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m138_c00497{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00497{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m59_c00497{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m42_c00497{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00497{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00497{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00497{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m106_c00497{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00497{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00497{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mda_c00497{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m147_c00497{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m13_c00497{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00497{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m13e_c00497{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.md3_c00497{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00497{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00497{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m77_c00497{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m64_c00497{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m69_c00497{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00497{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m104_c00497{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m55_c00497{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m20_c00497{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00497{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29_c00497{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m44_c00497{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m18_c00497{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m31_c00497{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00497{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00497{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m33_c00497{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00497{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m125_c00497{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00497{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00497{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00497{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00497{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00497{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00497{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m28_c00497{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00497{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m92_c00497{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m109_c00497{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m79_c00497{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m95_c00497{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00497{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00497{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m103_c00497{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m135_c00497{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00497{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00497{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00497{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00497{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mff_c00497{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m62_c00497{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m34_c00497{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00497{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m143_c00497{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m61_c00497{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m141_c00497{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00497{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m70_c00497{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00497{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00497{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00497{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00497{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00497{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00497{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m24_c00497{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.md7_c00497{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00497{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m65_c00497{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m99_c00497{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m15_c00497{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00497{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00497{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m146_c00497{transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);}
.m122_c00497{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00497{transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00497{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00497{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00497{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m60_c00497{transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00497{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m87_c00497{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m14a_c00497{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m86_c00497{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00497{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00497{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00497{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00497{transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696000,0.000000,0.000000,0.250000,0,0);}
.m149_c00497{transform:matrix(1.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.552000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls2_c00497{letter-spacing:0.000000px;}
.ls1_c00497{letter-spacing:45.000000px;}
.ls0_c00497{letter-spacing:55.714286px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{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__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00497{word-spacing:-85.714286px;}
.ws14_c00497{word-spacing:-75.000000px;}
.ws6_c00497{word-spacing:-8.340206px;}
.ws17_c00497{word-spacing:-6.898527px;}
.ws18_c00497{word-spacing:-2.200573px;}
.ws1a_c00497{word-spacing:0.000000px;}
.ws16_c00497{word-spacing:4.333333px;}
.ws4_c00497{word-spacing:8.000000px;}
.ws19_c00497{word-spacing:9.137931px;}
.ws11_c00497{word-spacing:11.875000px;}
.ws13_c00497{word-spacing:15.000000px;}
.ws1_c00497{word-spacing:15.323450px;}
.ws2_c00497{word-spacing:15.492958px;}
.wsc_c00497{word-spacing:16.521490px;}
.wsf_c00497{word-spacing:18.125000px;}
.ws12_c00497{word-spacing:22.142857px;}
.ws0_c00497{word-spacing:22.631300px;}
.wsa_c00497{word-spacing:24.491803px;}
.wse_c00497{word-spacing:25.714286px;}
.ws5_c00497{word-spacing:27.714286px;}
.ws8_c00497{word-spacing:28.426230px;}
.ws9_c00497{word-spacing:48.503817px;}
.ws3_c00497{word-spacing:60.000000px;}
.wsb_c00497{word-spacing:168.364261px;}
.ws7_c00497{word-spacing:648.815789px;}
.ws15_c00497{word-spacing:801.938931px;}
.wsd_c00497{word-spacing:1290.000000px;}
._5_c00497{margin-left:-55.714286px;}
._7_c00497{margin-left:-45.000000px;}
._6_c00497{width:3.571429px;}
._2_c00497{width:51.590164px;}
._0_c00497{width:57.491803px;}
._3_c00497{width:61.426230px;}
._1_c00497{width:65.360656px;}
._4_c00497{width:71.262295px;}
.fc0_c00497{color:transparent;}
.fs9_c00497{font-size:24.000000px;}
.fs8_c00497{font-size:30.000000px;}
.fs5_c00497{font-size:48.000000px;}
.fs6_c00497{font-size:54.000000px;}
.fs2_c00497{font-size:60.000000px;}
.fs4_c00497{font-size:66.000000px;}
.fs3_c00497{font-size:72.000000px;}
.fs1_c00497{font-size:84.000000px;}
.fs7_c00497{font-size:108.000000px;}
.fs0_c00497{font-size:132.000000px;}
.y0_c00497{bottom:0.000000px;}
.y5e_c00497{bottom:47.850000px;}
.y51_c00497{bottom:222.750000px;}
.y5c_c00497{bottom:230.100000px;}
.y50_c00497{bottom:240.750000px;}
.y5d_c00497{bottom:248.700000px;}
.y5b_c00497{bottom:249.150000px;}
.y4f_c00497{bottom:258.450000px;}
.y4e_c00497{bottom:275.400000px;}
.y5a_c00497{bottom:290.250000px;}
.y4d_c00497{bottom:293.700000px;}
.y59_c00497{bottom:308.550000px;}
.y4c_c00497{bottom:310.650000px;}
.y4b_c00497{bottom:326.550000px;}
.y58_c00497{bottom:326.850000px;}
.y56_c00497{bottom:328.350000px;}
.y49_c00497{bottom:336.600000px;}
.y4a_c00497{bottom:337.350000px;}
.y57_c00497{bottom:340.950000px;}
.y54_c00497{bottom:344.400000px;}
.y55_c00497{bottom:346.350000px;}
.y48_c00497{bottom:353.850000px;}
.y52_c00497{bottom:362.100000px;}
.y53_c00497{bottom:363.900000px;}
.y47_c00497{bottom:366.450000px;}
.y46_c00497{bottom:379.500000px;}
.y45_c00497{bottom:396.750000px;}
.y44_c00497{bottom:415.050000px;}
.y43_c00497{bottom:418.200000px;}
.y42_c00497{bottom:434.100000px;}
.y41_c00497{bottom:435.600000px;}
.y3c_c00497{bottom:450.000000px;}
.y40_c00497{bottom:452.550000px;}
.y3f_c00497{bottom:470.850000px;}
.y3b_c00497{bottom:472.650000px;}
.y3e_c00497{bottom:486.450000px;}
.y3a_c00497{bottom:491.400000px;}
.y3d_c00497{bottom:494.700000px;}
.y39_c00497{bottom:500.400000px;}
.y38_c00497{bottom:506.250000px;}
.y37_c00497{bottom:524.250000px;}
.y36_c00497{bottom:543.750000px;}
.y35_c00497{bottom:553.800000px;}
.y33_c00497{bottom:558.900000px;}
.y34_c00497{bottom:579.000000px;}
.y32_c00497{bottom:595.200000px;}
.y31_c00497{bottom:615.300000px;}
.y30_c00497{bottom:616.350000px;}
.y2f_c00497{bottom:654.150000px;}
.y2e_c00497{bottom:680.850000px;}
.y2d_c00497{bottom:700.350000px;}
.y2a_c00497{bottom:708.000000px;}
.y2c_c00497{bottom:718.050000px;}
.y2b_c00497{bottom:736.050000px;}
.y29_c00497{bottom:753.300000px;}
.y28_c00497{bottom:754.050000px;}
.y26_c00497{bottom:782.850000px;}
.y27_c00497{bottom:793.350000px;}
.y25_c00497{bottom:811.650000px;}
.y24_c00497{bottom:829.350000px;}
.y22_c00497{bottom:830.550000px;}
.y23_c00497{bottom:836.250000px;}
.y21_c00497{bottom:841.650000px;}
.y1f_c00497{bottom:846.300000px;}
.y20_c00497{bottom:851.700000px;}
.y1e_c00497{bottom:854.250000px;}
.y1d_c00497{bottom:871.200000px;}
.y1c_c00497{bottom:879.150000px;}
.y1b_c00497{bottom:886.200000px;}
.y1a_c00497{bottom:903.150000px;}
.y18_c00497{bottom:910.350000px;}
.y17_c00497{bottom:920.850000px;}
.y19_c00497{bottom:921.900000px;}
.y16_c00497{bottom:922.650000px;}
.y15_c00497{bottom:929.100000px;}
.y14_c00497{bottom:940.350000px;}
.y13_c00497{bottom:952.500000px;}
.y12_c00497{bottom:954.750000px;}
.y11_c00497{bottom:961.950000px;}
.yf_c00497{bottom:965.850000px;}
.y10_c00497{bottom:980.250000px;}
.yb_c00497{bottom:994.650000px;}
.yd_c00497{bottom:998.250000px;}
.ye_c00497{bottom:1002.150000px;}
.yc_c00497{bottom:1022.400000px;}
.ya_c00497{bottom:1033.500000px;}
.y9_c00497{bottom:1051.500000px;}
.y8_c00497{bottom:1069.200000px;}
.y6_c00497{bottom:1076.100000px;}
.y7_c00497{bottom:1081.500000px;}
.y5_c00497{bottom:1121.700000px;}
.y4_c00497{bottom:1140.450000px;}
.y3_c00497{bottom:1158.000000px;}
.y2_c00497{bottom:1174.950000px;}
.y1_c00497{bottom:1179.300000px;}
.ha_c00497{height:24.000000px;}
.h9_c00497{height:30.000000px;}
.h6_c00497{height:48.000000px;}
.h7_c00497{height:54.000000px;}
.h3_c00497{height:60.000000px;}
.h5_c00497{height:66.000000px;}
.h4_c00497{height:72.000000px;}
.h2_c00497{height:84.000000px;}
.h8_c00497{height:108.000000px;}
.h1_c00497{height:132.000000px;}
.h0_c00497{height:1323.000000px;}
.w0_c00497{width:958.320007px;}
.w1_c00497{width:958.500000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:136.500000px;}
.x6b_c00497{left:150.750000px;}
.x3_c00497{left:158.100000px;}
.x30_c00497{left:160.500000px;}
.xc1_c00497{left:162.750000px;}
.x37_c00497{left:163.800000px;}
.x3e_c00497{left:165.900000px;}
.x62_c00497{left:168.150000px;}
.x68_c00497{left:169.200000px;}
.x8a_c00497{left:170.250000px;}
.x94_c00497{left:172.500000px;}
.x8b_c00497{left:174.300000px;}
.x99_c00497{left:177.150000px;}
.xc3_c00497{left:178.650000px;}
.xbe_c00497{left:181.500000px;}
.xdd_c00497{left:184.350000px;}
.xd9_c00497{left:186.450000px;}
.x118_c00497{left:188.850000px;}
.xfd_c00497{left:189.900000px;}
.x3f_c00497{left:194.700000px;}
.x4_c00497{left:197.700000px;}
.x6c_c00497{left:199.050000px;}
.xde_c00497{left:201.600000px;}
.x63_c00497{left:202.650000px;}
.xf8_c00497{left:204.750000px;}
.x31_c00497{left:207.600000px;}
.xa0_c00497{left:208.650000px;}
.xbb_c00497{left:210.600000px;}
.x8c_c00497{left:212.400000px;}
.x114_c00497{left:215.250000px;}
.xc4_c00497{left:218.250000px;}
.xbf_c00497{left:219.600000px;}
.x69_c00497{left:220.650000px;}
.x64_c00497{left:222.150000px;}
.x95_c00497{left:224.400000px;}
.xf0_c00497{left:225.450000px;}
.x5_c00497{left:226.500000px;}
.x158_c00497{left:227.850000px;}
.x107_c00497{left:229.200000px;}
.x8d_c00497{left:230.400000px;}
.x40_c00497{left:232.200000px;}
.x123_c00497{left:233.550000px;}
.xdf_c00497{left:235.500000px;}
.x165_c00497{left:236.850000px;}
.x32_c00497{left:243.900000px;}
.x124_c00497{left:245.100000px;}
.x10e_c00497{left:247.200000px;}
.xc0_c00497{left:248.700000px;}
.x65_c00497{left:250.200000px;}
.xc5_c00497{left:251.400000px;}
.x6a_c00497{left:253.050000px;}
.x146_c00497{left:254.850000px;}
.xe0_c00497{left:256.050000px;}
.x96_c00497{left:258.300000px;}
.x157_c00497{left:259.800000px;}
.x66_c00497{left:262.050000px;}
.x6_c00497{left:264.000000px;}
.x6d_c00497{left:265.950000px;}
.xc6_c00497{left:267.900000px;}
.x156_c00497{left:269.550000px;}
.x143_c00497{left:271.500000px;}
.xeb_c00497{left:272.700000px;}
.x9a_c00497{left:274.350000px;}
.x33_c00497{left:276.000000px;}
.xa1_c00497{left:277.500000px;}
.x161_c00497{left:278.700000px;}
.x8e_c00497{left:281.550000px;}
.xc9_c00497{left:282.750000px;}
.x148_c00497{left:283.950000px;}
.x15a_c00497{left:285.450000px;}
.xf9_c00497{left:287.100000px;}
.x7_c00497{left:288.150000px;}
.x14d_c00497{left:289.800000px;}
.x34_c00497{left:292.200000px;}
.x13_c00497{left:294.150000px;}
.x11d_c00497{left:298.650000px;}
.xa2_c00497{left:301.950000px;}
.xfa_c00497{left:303.000000px;}
.xe1_c00497{left:304.950000px;}
.x108_c00497{left:307.200000px;}
.xe4_c00497{left:309.150000px;}
.x8_c00497{left:311.550000px;}
.x97_c00497{left:313.650000px;}
.x15f_c00497{left:314.850000px;}
.xe5_c00497{left:316.650000px;}
.x6e_c00497{left:318.450000px;}
.x67_c00497{left:319.950000px;}
.x109_c00497{left:321.300000px;}
.xa8_c00497{left:322.950000px;}
.x35_c00497{left:324.900000px;}
.xd3_c00497{left:327.150000px;}
.x10a_c00497{left:328.800000px;}
.x98_c00497{left:329.850000px;}
.xca_c00497{left:331.350000px;}
.x15d_c00497{left:333.600000px;}
.xfe_c00497{left:334.650000px;}
.xa3_c00497{left:336.450000px;}
.xcb_c00497{left:338.550000px;}
.xfb_c00497{left:339.750000px;}
.x4a_c00497{left:342.000000px;}
.xc2_c00497{left:343.350000px;}
.x8f_c00497{left:345.300000px;}
.x38_c00497{left:348.450000px;}
.x115_c00497{left:351.300000px;}
.x14_c00497{left:352.500000px;}
.xff_c00497{left:356.550000px;}
.x10b_c00497{left:357.600000px;}
.x6f_c00497{left:360.150000px;}
.x9_c00497{left:361.650000px;}
.x119_c00497{left:362.700000px;}
.x92_c00497{left:365.400000px;}
.x9b_c00497{left:368.250000px;}
.x75_c00497{left:369.750000px;}
.x159_c00497{left:370.800000px;}
.x41_c00497{left:372.000000px;}
.xec_c00497{left:373.500000px;}
.xcc_c00497{left:374.850000px;}
.xa4_c00497{left:376.800000px;}
.x15b_c00497{left:378.300000px;}
.x2_c00497{left:379.800000px;}
.xa_c00497{left:381.750000px;}
.xa9_c00497{left:385.350000px;}
.x90_c00497{left:386.700000px;}
.x147_c00497{left:387.900000px;}
.xf1_c00497{left:388.950000px;}
.x11a_c00497{left:392.250000px;}
.x4b_c00497{left:393.900000px;}
.x9c_c00497{left:395.550000px;}
.x91_c00497{left:398.250000px;}
.xc7_c00497{left:401.100000px;}
.x76_c00497{left:402.150000px;}
.xcd_c00497{left:403.950000px;}
.x144_c00497{left:405.150000px;}
.xe2_c00497{left:406.800000px;}
.xe6_c00497{left:409.800000px;}
.xce_c00497{left:410.850000px;}
.x39_c00497{left:414.000000px;}
.x16a_c00497{left:415.200000px;}
.xed_c00497{left:417.450000px;}
.x15_c00497{left:420.150000px;}
.x14e_c00497{left:421.500000px;}
.x160_c00497{left:422.850000px;}
.x116_c00497{left:424.050000px;}
.x42_c00497{left:426.000000px;}
.xb_c00497{left:427.050000px;}
.x162_c00497{left:428.550000px;}
.x16_c00497{left:430.200000px;}
.xcf_c00497{left:431.400000px;}
.x36_c00497{left:432.900000px;}
.x3a_c00497{left:434.850000px;}
.x145_c00497{left:436.500000px;}
.x163_c00497{left:437.550000px;}
.x70_c00497{left:438.600000px;}
.x14c_c00497{left:440.250000px;}
.x100_c00497{left:441.600000px;}
.xa5_c00497{left:442.800000px;}
.x10c_c00497{left:444.600000px;}
.x10f_c00497{left:446.250000px;}
.x17_c00497{left:447.450000px;}
.x77_c00497{left:448.950000px;}
.x43_c00497{left:450.450000px;}
.x149_c00497{left:453.900000px;}
.xc8_c00497{left:458.400000px;}
.x7d_c00497{left:460.050000px;}
.x93_c00497{left:461.100000px;}
.xc_c00497{left:463.050000px;}
.x16b_c00497{left:464.100000px;}
.x3b_c00497{left:465.450000px;}
.xee_c00497{left:466.800000px;}
.x101_c00497{left:469.350000px;}
.x14f_c00497{left:470.850000px;}
.x18_c00497{left:472.350000px;}
.x10d_c00497{left:473.400000px;}
.x78_c00497{left:475.200000px;}
.x12a_c00497{left:477.750000px;}
.x16c_c00497{left:478.800000px;}
.x117_c00497{left:480.450000px;}
.x9d_c00497{left:483.000000px;}
.x130_c00497{left:486.750000px;}
.xd0_c00497{left:488.250000px;}
.x61_c00497{left:493.200000px;}
.x126_c00497{left:494.250000px;}
.x12b_c00497{left:498.300000px;}
.x14a_c00497{left:501.150000px;}
.x164_c00497{left:505.350000px;}
.x15c_c00497{left:507.600000px;}
.xd_c00497{left:510.150000px;}
.x166_c00497{left:511.950000px;}
.x19_c00497{left:513.000000px;}
.x21_c00497{left:514.800000px;}
.x15e_c00497{left:515.850000px;}
.x3c_c00497{left:517.650000px;}
.x44_c00497{left:519.600000px;}
.x4c_c00497{left:520.650000px;}
.x56_c00497{left:522.300000px;}
.x71_c00497{left:525.000000px;}
.x81_c00497{left:527.550000px;}
.xf2_c00497{left:529.050000px;}
.x9f_c00497{left:531.300000px;}
.x1a_c00497{left:533.550000px;}
.xb1_c00497{left:535.650000px;}
.x9e_c00497{left:536.700000px;}
.xd4_c00497{left:541.950000px;}
.x4d_c00497{left:543.750000px;}
.xef_c00497{left:546.600000px;}
.x102_c00497{left:548.850000px;}
.x22_c00497{left:550.500000px;}
.x110_c00497{left:553.950000px;}
.xe7_c00497{left:557.400000px;}
.x4e_c00497{left:559.650000px;}
.x45_c00497{left:560.700000px;}
.xb7_c00497{left:562.950000px;}
.xaa_c00497{left:564.000000px;}
.x57_c00497{left:565.200000px;}
.x72_c00497{left:567.450000px;}
.xe_c00497{left:568.800000px;}
.x13b_c00497{left:573.300000px;}
.x14b_c00497{left:574.950000px;}
.x23_c00497{left:576.000000px;}
.x3d_c00497{left:577.350000px;}
.x79_c00497{left:578.850000px;}
.xd1_c00497{left:580.500000px;}
.xda_c00497{left:582.750000px;}
.x82_c00497{left:583.950000px;}
.x1b_c00497{left:585.000000px;}
.x103_c00497{left:586.350000px;}
.x173_c00497{left:587.850000px;}
.xf_c00497{left:590.100000px;}
.x137_c00497{left:591.150000px;}
.xa6_c00497{left:594.750000px;}
.xe3_c00497{left:595.800000px;}
.x4f_c00497{left:597.150000px;}
.xb2_c00497{left:599.100000px;}
.x11e_c00497{left:600.600000px;}
.x46_c00497{left:601.800000px;}
.xab_c00497{left:603.600000px;}
.x24_c00497{left:607.650000px;}
.xac_c00497{left:610.050000px;}
.x11f_c00497{left:611.700000px;}
.x50_c00497{left:613.050000px;}
.x7e_c00497{left:614.850000px;}
.x10_c00497{left:616.800000px;}
.x176_c00497{left:617.850000px;}
.x174_c00497{left:619.950000px;}
.x1c_c00497{left:621.750000px;}
.x73_c00497{left:624.000000px;}
.xd2_c00497{left:625.800000px;}
.x13c_c00497{left:627.000000px;}
.xf3_c00497{left:628.500000px;}
.xfc_c00497{left:630.150000px;}
.x170_c00497{left:631.350000px;}
.x12c_c00497{left:633.000000px;}
.x51_c00497{left:634.950000px;}
.x127_c00497{left:636.450000px;}
.xad_c00497{left:638.550000px;}
.x83_c00497{left:640.800000px;}
.x2b_c00497{left:642.900000px;}
.xdb_c00497{left:643.950000px;}
.x7f_c00497{left:645.750000px;}
.x111_c00497{left:647.850000px;}
.x74_c00497{left:650.250000px;}
.x11_c00497{left:651.300000px;}
.xf4_c00497{left:653.400000px;}
.x138_c00497{left:655.950000px;}
.x16d_c00497{left:659.100000px;}
.x80_c00497{left:661.200000px;}
.xae_c00497{left:662.700000px;}
.xe8_c00497{left:664.950000px;}
.x47_c00497{left:666.600000px;}
.xb3_c00497{left:671.550000px;}
.x84_c00497{left:673.500000px;}
.x1d_c00497{left:674.700000px;}
.x7a_c00497{left:676.050000px;}
.x25_c00497{left:677.100000px;}
.x104_c00497{left:679.650000px;}
.xb8_c00497{left:681.000000px;}
.x85_c00497{left:683.250000px;}
.x2c_c00497{left:686.850000px;}
.x52_c00497{left:689.700000px;}
.x150_c00497{left:691.500000px;}
.x58_c00497{left:692.550000px;}
.x5d_c00497{left:694.800000px;}
.x13d_c00497{left:696.150000px;}
.xb9_c00497{left:699.300000px;}
.x140_c00497{left:701.550000px;}
.x48_c00497{left:702.600000px;}
.x86_c00497{left:703.800000px;}
.x26_c00497{left:705.900000px;}
.xaf_c00497{left:706.950000px;}
.xb4_c00497{left:709.350000px;}
.x53_c00497{left:711.000000px;}
.xd5_c00497{left:712.350000px;}
.x105_c00497{left:713.850000px;}
.x1e_c00497{left:715.350000px;}
.x16e_c00497{left:716.700000px;}
.x59_c00497{left:718.050000px;}
.x11b_c00497{left:719.400000px;}
.x12d_c00497{left:720.450000px;}
.x88_c00497{left:722.100000px;}
.x113_c00497{left:723.300000px;}
.xba_c00497{left:725.250000px;}
.x27_c00497{left:727.200000px;}
.x171_c00497{left:728.550000px;}
.x2d_c00497{left:729.750000px;}
.x112_c00497{left:731.100000px;}
.x177_c00497{left:732.900000px;}
.x5a_c00497{left:736.050000px;}
.xb0_c00497{left:737.250000px;}
.xd6_c00497{left:738.300000px;}
.x141_c00497{left:739.950000px;}
.x139_c00497{left:741.300000px;}
.x89_c00497{left:743.700000px;}
.x178_c00497{left:745.200000px;}
.xf5_c00497{left:746.250000px;}
.x154_c00497{left:747.450000px;}
.x175_c00497{left:749.700000px;}
.x125_c00497{left:750.900000px;}
.x120_c00497{left:752.550000px;}
.x28_c00497{left:755.250000px;}
.x13a_c00497{left:757.200000px;}
.x151_c00497{left:758.850000px;}
.x49_c00497{left:759.900000px;}
.x29_c00497{left:761.400000px;}
.x11c_c00497{left:764.400000px;}
.x54_c00497{left:766.800000px;}
.x17a_c00497{left:768.000000px;}
.x1f_c00497{left:770.100000px;}
.x2e_c00497{left:771.900000px;}
.x17b_c00497{left:773.700000px;}
.x87_c00497{left:774.750000px;}
.x128_c00497{left:777.600000px;}
.xbc_c00497{left:778.650000px;}
.x5e_c00497{left:779.700000px;}
.xf6_c00497{left:782.550000px;}
.x131_c00497{left:784.200000px;}
.x12_c00497{left:785.250000px;}
.x121_c00497{left:788.250000px;}
.x13e_c00497{left:790.800000px;}
.x167_c00497{left:792.000000px;}
.x5f_c00497{left:793.050000px;}
.x55_c00497{left:795.300000px;}
.x16f_c00497{left:798.450000px;}
.x135_c00497{left:800.550000px;}
.x20_c00497{left:801.750000px;}
.x2f_c00497{left:802.800000px;}
.x5b_c00497{left:805.500000px;}
.xd7_c00497{left:807.450000px;}
.x12e_c00497{left:808.650000px;}
.x7b_c00497{left:810.750000px;}
.xe9_c00497{left:812.700000px;}
.xf7_c00497{left:815.700000px;}
.xa7_c00497{left:817.950000px;}
.x155_c00497{left:819.450000px;}
.x12f_c00497{left:821.250000px;}
.x2a_c00497{left:822.300000px;}
.x152_c00497{left:824.400000px;}
.x5c_c00497{left:825.600000px;}
.xb6_c00497{left:828.150000px;}
.xd8_c00497{left:829.350000px;}
.x60_c00497{left:832.950000px;}
.x7c_c00497{left:834.450000px;}
.x132_c00497{left:837.900000px;}
.x153_c00497{left:843.150000px;}
.xdc_c00497{left:846.750000px;}
.x168_c00497{left:847.800000px;}
.xea_c00497{left:849.450000px;}
.xb5_c00497{left:851.850000px;}
.x106_c00497{left:854.250000px;}
.xbd_c00497{left:856.800000px;}
.x169_c00497{left:859.350000px;}
.x122_c00497{left:861.750000px;}
.x133_c00497{left:866.700000px;}
.x13f_c00497{left:868.950000px;}
.x136_c00497{left:870.750000px;}
.x142_c00497{left:873.300000px;}
.x134_c00497{left:875.400000px;}
.x129_c00497{left:876.600000px;}
.x179_c00497{left:879.750000px;}
.x172_c00497{left:888.300000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls2_c00497{letter-spacing:0.000000pt;}
.ls1_c00497{letter-spacing:40.000000pt;}
.ls0_c00497{letter-spacing:49.523810pt;}
.ws10_c00497{word-spacing:-76.190476pt;}
.ws14_c00497{word-spacing:-66.666667pt;}
.ws6_c00497{word-spacing:-7.413517pt;}
.ws17_c00497{word-spacing:-6.132024pt;}
.ws18_c00497{word-spacing:-1.956065pt;}
.ws1a_c00497{word-spacing:0.000000pt;}
.ws16_c00497{word-spacing:3.851852pt;}
.ws4_c00497{word-spacing:7.111111pt;}
.ws19_c00497{word-spacing:8.122605pt;}
.ws11_c00497{word-spacing:10.555556pt;}
.ws13_c00497{word-spacing:13.333333pt;}
.ws1_c00497{word-spacing:13.620845pt;}
.ws2_c00497{word-spacing:13.771518pt;}
.wsc_c00497{word-spacing:14.685769pt;}
.wsf_c00497{word-spacing:16.111111pt;}
.ws12_c00497{word-spacing:19.682540pt;}
.ws0_c00497{word-spacing:20.116711pt;}
.wsa_c00497{word-spacing:21.770492pt;}
.wse_c00497{word-spacing:22.857143pt;}
.ws5_c00497{word-spacing:24.634921pt;}
.ws8_c00497{word-spacing:25.267760pt;}
.ws9_c00497{word-spacing:43.114504pt;}
.ws3_c00497{word-spacing:53.333333pt;}
.wsb_c00497{word-spacing:149.657121pt;}
.ws7_c00497{word-spacing:576.725146pt;}
.ws15_c00497{word-spacing:712.834606pt;}
.wsd_c00497{word-spacing:1146.666667pt;}
._5_c00497{margin-left:-49.523810pt;}
._7_c00497{margin-left:-40.000000pt;}
._6_c00497{width:3.174603pt;}
._2_c00497{width:45.857923pt;}
._0_c00497{width:51.103825pt;}
._3_c00497{width:54.601093pt;}
._1_c00497{width:58.098361pt;}
._4_c00497{width:63.344262pt;}
.fs9_c00497{font-size:21.333333pt;}
.fs8_c00497{font-size:26.666667pt;}
.fs5_c00497{font-size:42.666667pt;}
.fs6_c00497{font-size:48.000000pt;}
.fs2_c00497{font-size:53.333333pt;}
.fs4_c00497{font-size:58.666667pt;}
.fs3_c00497{font-size:64.000000pt;}
.fs1_c00497{font-size:74.666667pt;}
.fs7_c00497{font-size:96.000000pt;}
.fs0_c00497{font-size:117.333333pt;}
.y0_c00497{bottom:0.000000pt;}
.y5e_c00497{bottom:42.533333pt;}
.y51_c00497{bottom:198.000000pt;}
.y5c_c00497{bottom:204.533333pt;}
.y50_c00497{bottom:214.000000pt;}
.y5d_c00497{bottom:221.066667pt;}
.y5b_c00497{bottom:221.466667pt;}
.y4f_c00497{bottom:229.733333pt;}
.y4e_c00497{bottom:244.800000pt;}
.y5a_c00497{bottom:258.000000pt;}
.y4d_c00497{bottom:261.066667pt;}
.y59_c00497{bottom:274.266667pt;}
.y4c_c00497{bottom:276.133333pt;}
.y4b_c00497{bottom:290.266667pt;}
.y58_c00497{bottom:290.533333pt;}
.y56_c00497{bottom:291.866667pt;}
.y49_c00497{bottom:299.200000pt;}
.y4a_c00497{bottom:299.866667pt;}
.y57_c00497{bottom:303.066667pt;}
.y54_c00497{bottom:306.133333pt;}
.y55_c00497{bottom:307.866667pt;}
.y48_c00497{bottom:314.533333pt;}
.y52_c00497{bottom:321.866667pt;}
.y53_c00497{bottom:323.466667pt;}
.y47_c00497{bottom:325.733333pt;}
.y46_c00497{bottom:337.333333pt;}
.y45_c00497{bottom:352.666667pt;}
.y44_c00497{bottom:368.933333pt;}
.y43_c00497{bottom:371.733333pt;}
.y42_c00497{bottom:385.866667pt;}
.y41_c00497{bottom:387.200000pt;}
.y3c_c00497{bottom:400.000000pt;}
.y40_c00497{bottom:402.266667pt;}
.y3f_c00497{bottom:418.533333pt;}
.y3b_c00497{bottom:420.133333pt;}
.y3e_c00497{bottom:432.400000pt;}
.y3a_c00497{bottom:436.800000pt;}
.y3d_c00497{bottom:439.733333pt;}
.y39_c00497{bottom:444.800000pt;}
.y38_c00497{bottom:450.000000pt;}
.y37_c00497{bottom:466.000000pt;}
.y36_c00497{bottom:483.333333pt;}
.y35_c00497{bottom:492.266667pt;}
.y33_c00497{bottom:496.800000pt;}
.y34_c00497{bottom:514.666667pt;}
.y32_c00497{bottom:529.066667pt;}
.y31_c00497{bottom:546.933333pt;}
.y30_c00497{bottom:547.866667pt;}
.y2f_c00497{bottom:581.466667pt;}
.y2e_c00497{bottom:605.200000pt;}
.y2d_c00497{bottom:622.533333pt;}
.y2a_c00497{bottom:629.333333pt;}
.y2c_c00497{bottom:638.266667pt;}
.y2b_c00497{bottom:654.266667pt;}
.y29_c00497{bottom:669.600000pt;}
.y28_c00497{bottom:670.266667pt;}
.y26_c00497{bottom:695.866667pt;}
.y27_c00497{bottom:705.200000pt;}
.y25_c00497{bottom:721.466667pt;}
.y24_c00497{bottom:737.200000pt;}
.y22_c00497{bottom:738.266667pt;}
.y23_c00497{bottom:743.333333pt;}
.y21_c00497{bottom:748.133333pt;}
.y1f_c00497{bottom:752.266667pt;}
.y20_c00497{bottom:757.066667pt;}
.y1e_c00497{bottom:759.333333pt;}
.y1d_c00497{bottom:774.400000pt;}
.y1c_c00497{bottom:781.466667pt;}
.y1b_c00497{bottom:787.733333pt;}
.y1a_c00497{bottom:802.800000pt;}
.y18_c00497{bottom:809.200000pt;}
.y17_c00497{bottom:818.533333pt;}
.y19_c00497{bottom:819.466667pt;}
.y16_c00497{bottom:820.133333pt;}
.y15_c00497{bottom:825.866667pt;}
.y14_c00497{bottom:835.866667pt;}
.y13_c00497{bottom:846.666667pt;}
.y12_c00497{bottom:848.666667pt;}
.y11_c00497{bottom:855.066667pt;}
.yf_c00497{bottom:858.533333pt;}
.y10_c00497{bottom:871.333333pt;}
.yb_c00497{bottom:884.133333pt;}
.yd_c00497{bottom:887.333333pt;}
.ye_c00497{bottom:890.800000pt;}
.yc_c00497{bottom:908.800000pt;}
.ya_c00497{bottom:918.666667pt;}
.y9_c00497{bottom:934.666667pt;}
.y8_c00497{bottom:950.400000pt;}
.y6_c00497{bottom:956.533333pt;}
.y7_c00497{bottom:961.333333pt;}
.y5_c00497{bottom:997.066667pt;}
.y4_c00497{bottom:1013.733333pt;}
.y3_c00497{bottom:1029.333333pt;}
.y2_c00497{bottom:1044.400000pt;}
.y1_c00497{bottom:1048.266667pt;}
.ha_c00497{height:21.333333pt;}
.h9_c00497{height:26.666667pt;}
.h6_c00497{height:42.666667pt;}
.h7_c00497{height:48.000000pt;}
.h3_c00497{height:53.333333pt;}
.h5_c00497{height:58.666667pt;}
.h4_c00497{height:64.000000pt;}
.h2_c00497{height:74.666667pt;}
.h8_c00497{height:96.000000pt;}
.h1_c00497{height:117.333333pt;}
.h0_c00497{height:1176.000000pt;}
.w0_c00497{width:851.840007pt;}
.w1_c00497{width:852.000000pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:121.333333pt;}
.x6b_c00497{left:134.000000pt;}
.x3_c00497{left:140.533333pt;}
.x30_c00497{left:142.666667pt;}
.xc1_c00497{left:144.666667pt;}
.x37_c00497{left:145.600000pt;}
.x3e_c00497{left:147.466667pt;}
.x62_c00497{left:149.466667pt;}
.x68_c00497{left:150.400000pt;}
.x8a_c00497{left:151.333333pt;}
.x94_c00497{left:153.333333pt;}
.x8b_c00497{left:154.933333pt;}
.x99_c00497{left:157.466667pt;}
.xc3_c00497{left:158.800000pt;}
.xbe_c00497{left:161.333333pt;}
.xdd_c00497{left:163.866667pt;}
.xd9_c00497{left:165.733333pt;}
.x118_c00497{left:167.866667pt;}
.xfd_c00497{left:168.800000pt;}
.x3f_c00497{left:173.066667pt;}
.x4_c00497{left:175.733333pt;}
.x6c_c00497{left:176.933333pt;}
.xde_c00497{left:179.200000pt;}
.x63_c00497{left:180.133333pt;}
.xf8_c00497{left:182.000000pt;}
.x31_c00497{left:184.533333pt;}
.xa0_c00497{left:185.466667pt;}
.xbb_c00497{left:187.200000pt;}
.x8c_c00497{left:188.800000pt;}
.x114_c00497{left:191.333333pt;}
.xc4_c00497{left:194.000000pt;}
.xbf_c00497{left:195.200000pt;}
.x69_c00497{left:196.133333pt;}
.x64_c00497{left:197.466667pt;}
.x95_c00497{left:199.466667pt;}
.xf0_c00497{left:200.400000pt;}
.x5_c00497{left:201.333333pt;}
.x158_c00497{left:202.533333pt;}
.x107_c00497{left:203.733333pt;}
.x8d_c00497{left:204.800000pt;}
.x40_c00497{left:206.400000pt;}
.x123_c00497{left:207.600000pt;}
.xdf_c00497{left:209.333333pt;}
.x165_c00497{left:210.533333pt;}
.x32_c00497{left:216.800000pt;}
.x124_c00497{left:217.866667pt;}
.x10e_c00497{left:219.733333pt;}
.xc0_c00497{left:221.066667pt;}
.x65_c00497{left:222.400000pt;}
.xc5_c00497{left:223.466667pt;}
.x6a_c00497{left:224.933333pt;}
.x146_c00497{left:226.533333pt;}
.xe0_c00497{left:227.600000pt;}
.x96_c00497{left:229.600000pt;}
.x157_c00497{left:230.933333pt;}
.x66_c00497{left:232.933333pt;}
.x6_c00497{left:234.666667pt;}
.x6d_c00497{left:236.400000pt;}
.xc6_c00497{left:238.133333pt;}
.x156_c00497{left:239.600000pt;}
.x143_c00497{left:241.333333pt;}
.xeb_c00497{left:242.400000pt;}
.x9a_c00497{left:243.866667pt;}
.x33_c00497{left:245.333333pt;}
.xa1_c00497{left:246.666667pt;}
.x161_c00497{left:247.733333pt;}
.x8e_c00497{left:250.266667pt;}
.xc9_c00497{left:251.333333pt;}
.x148_c00497{left:252.400000pt;}
.x15a_c00497{left:253.733333pt;}
.xf9_c00497{left:255.200000pt;}
.x7_c00497{left:256.133333pt;}
.x14d_c00497{left:257.600000pt;}
.x34_c00497{left:259.733333pt;}
.x13_c00497{left:261.466667pt;}
.x11d_c00497{left:265.466667pt;}
.xa2_c00497{left:268.400000pt;}
.xfa_c00497{left:269.333333pt;}
.xe1_c00497{left:271.066667pt;}
.x108_c00497{left:273.066667pt;}
.xe4_c00497{left:274.800000pt;}
.x8_c00497{left:276.933333pt;}
.x97_c00497{left:278.800000pt;}
.x15f_c00497{left:279.866667pt;}
.xe5_c00497{left:281.466667pt;}
.x6e_c00497{left:283.066667pt;}
.x67_c00497{left:284.400000pt;}
.x109_c00497{left:285.600000pt;}
.xa8_c00497{left:287.066667pt;}
.x35_c00497{left:288.800000pt;}
.xd3_c00497{left:290.800000pt;}
.x10a_c00497{left:292.266667pt;}
.x98_c00497{left:293.200000pt;}
.xca_c00497{left:294.533333pt;}
.x15d_c00497{left:296.533333pt;}
.xfe_c00497{left:297.466667pt;}
.xa3_c00497{left:299.066667pt;}
.xcb_c00497{left:300.933333pt;}
.xfb_c00497{left:302.000000pt;}
.x4a_c00497{left:304.000000pt;}
.xc2_c00497{left:305.200000pt;}
.x8f_c00497{left:306.933333pt;}
.x38_c00497{left:309.733333pt;}
.x115_c00497{left:312.266667pt;}
.x14_c00497{left:313.333333pt;}
.xff_c00497{left:316.933333pt;}
.x10b_c00497{left:317.866667pt;}
.x6f_c00497{left:320.133333pt;}
.x9_c00497{left:321.466667pt;}
.x119_c00497{left:322.400000pt;}
.x92_c00497{left:324.800000pt;}
.x9b_c00497{left:327.333333pt;}
.x75_c00497{left:328.666667pt;}
.x159_c00497{left:329.600000pt;}
.x41_c00497{left:330.666667pt;}
.xec_c00497{left:332.000000pt;}
.xcc_c00497{left:333.200000pt;}
.xa4_c00497{left:334.933333pt;}
.x15b_c00497{left:336.266667pt;}
.x2_c00497{left:337.600000pt;}
.xa_c00497{left:339.333333pt;}
.xa9_c00497{left:342.533333pt;}
.x90_c00497{left:343.733333pt;}
.x147_c00497{left:344.800000pt;}
.xf1_c00497{left:345.733333pt;}
.x11a_c00497{left:348.666667pt;}
.x4b_c00497{left:350.133333pt;}
.x9c_c00497{left:351.600000pt;}
.x91_c00497{left:354.000000pt;}
.xc7_c00497{left:356.533333pt;}
.x76_c00497{left:357.466667pt;}
.xcd_c00497{left:359.066667pt;}
.x144_c00497{left:360.133333pt;}
.xe2_c00497{left:361.600000pt;}
.xe6_c00497{left:364.266667pt;}
.xce_c00497{left:365.200000pt;}
.x39_c00497{left:368.000000pt;}
.x16a_c00497{left:369.066667pt;}
.xed_c00497{left:371.066667pt;}
.x15_c00497{left:373.466667pt;}
.x14e_c00497{left:374.666667pt;}
.x160_c00497{left:375.866667pt;}
.x116_c00497{left:376.933333pt;}
.x42_c00497{left:378.666667pt;}
.xb_c00497{left:379.600000pt;}
.x162_c00497{left:380.933333pt;}
.x16_c00497{left:382.400000pt;}
.xcf_c00497{left:383.466667pt;}
.x36_c00497{left:384.800000pt;}
.x3a_c00497{left:386.533333pt;}
.x145_c00497{left:388.000000pt;}
.x163_c00497{left:388.933333pt;}
.x70_c00497{left:389.866667pt;}
.x14c_c00497{left:391.333333pt;}
.x100_c00497{left:392.533333pt;}
.xa5_c00497{left:393.600000pt;}
.x10c_c00497{left:395.200000pt;}
.x10f_c00497{left:396.666667pt;}
.x17_c00497{left:397.733333pt;}
.x77_c00497{left:399.066667pt;}
.x43_c00497{left:400.400000pt;}
.x149_c00497{left:403.466667pt;}
.xc8_c00497{left:407.466667pt;}
.x7d_c00497{left:408.933333pt;}
.x93_c00497{left:409.866667pt;}
.xc_c00497{left:411.600000pt;}
.x16b_c00497{left:412.533333pt;}
.x3b_c00497{left:413.733333pt;}
.xee_c00497{left:414.933333pt;}
.x101_c00497{left:417.200000pt;}
.x14f_c00497{left:418.533333pt;}
.x18_c00497{left:419.866667pt;}
.x10d_c00497{left:420.800000pt;}
.x78_c00497{left:422.400000pt;}
.x12a_c00497{left:424.666667pt;}
.x16c_c00497{left:425.600000pt;}
.x117_c00497{left:427.066667pt;}
.x9d_c00497{left:429.333333pt;}
.x130_c00497{left:432.666667pt;}
.xd0_c00497{left:434.000000pt;}
.x61_c00497{left:438.400000pt;}
.x126_c00497{left:439.333333pt;}
.x12b_c00497{left:442.933333pt;}
.x14a_c00497{left:445.466667pt;}
.x164_c00497{left:449.200000pt;}
.x15c_c00497{left:451.200000pt;}
.xd_c00497{left:453.466667pt;}
.x166_c00497{left:455.066667pt;}
.x19_c00497{left:456.000000pt;}
.x21_c00497{left:457.600000pt;}
.x15e_c00497{left:458.533333pt;}
.x3c_c00497{left:460.133333pt;}
.x44_c00497{left:461.866667pt;}
.x4c_c00497{left:462.800000pt;}
.x56_c00497{left:464.266667pt;}
.x71_c00497{left:466.666667pt;}
.x81_c00497{left:468.933333pt;}
.xf2_c00497{left:470.266667pt;}
.x9f_c00497{left:472.266667pt;}
.x1a_c00497{left:474.266667pt;}
.xb1_c00497{left:476.133333pt;}
.x9e_c00497{left:477.066667pt;}
.xd4_c00497{left:481.733333pt;}
.x4d_c00497{left:483.333333pt;}
.xef_c00497{left:485.866667pt;}
.x102_c00497{left:487.866667pt;}
.x22_c00497{left:489.333333pt;}
.x110_c00497{left:492.400000pt;}
.xe7_c00497{left:495.466667pt;}
.x4e_c00497{left:497.466667pt;}
.x45_c00497{left:498.400000pt;}
.xb7_c00497{left:500.400000pt;}
.xaa_c00497{left:501.333333pt;}
.x57_c00497{left:502.400000pt;}
.x72_c00497{left:504.400000pt;}
.xe_c00497{left:505.600000pt;}
.x13b_c00497{left:509.600000pt;}
.x14b_c00497{left:511.066667pt;}
.x23_c00497{left:512.000000pt;}
.x3d_c00497{left:513.200000pt;}
.x79_c00497{left:514.533333pt;}
.xd1_c00497{left:516.000000pt;}
.xda_c00497{left:518.000000pt;}
.x82_c00497{left:519.066667pt;}
.x1b_c00497{left:520.000000pt;}
.x103_c00497{left:521.200000pt;}
.x173_c00497{left:522.533333pt;}
.xf_c00497{left:524.533333pt;}
.x137_c00497{left:525.466667pt;}
.xa6_c00497{left:528.666667pt;}
.xe3_c00497{left:529.600000pt;}
.x4f_c00497{left:530.800000pt;}
.xb2_c00497{left:532.533333pt;}
.x11e_c00497{left:533.866667pt;}
.x46_c00497{left:534.933333pt;}
.xab_c00497{left:536.533333pt;}
.x24_c00497{left:540.133333pt;}
.xac_c00497{left:542.266667pt;}
.x11f_c00497{left:543.733333pt;}
.x50_c00497{left:544.933333pt;}
.x7e_c00497{left:546.533333pt;}
.x10_c00497{left:548.266667pt;}
.x176_c00497{left:549.200000pt;}
.x174_c00497{left:551.066667pt;}
.x1c_c00497{left:552.666667pt;}
.x73_c00497{left:554.666667pt;}
.xd2_c00497{left:556.266667pt;}
.x13c_c00497{left:557.333333pt;}
.xf3_c00497{left:558.666667pt;}
.xfc_c00497{left:560.133333pt;}
.x170_c00497{left:561.200000pt;}
.x12c_c00497{left:562.666667pt;}
.x51_c00497{left:564.400000pt;}
.x127_c00497{left:565.733333pt;}
.xad_c00497{left:567.600000pt;}
.x83_c00497{left:569.600000pt;}
.x2b_c00497{left:571.466667pt;}
.xdb_c00497{left:572.400000pt;}
.x7f_c00497{left:574.000000pt;}
.x111_c00497{left:575.866667pt;}
.x74_c00497{left:578.000000pt;}
.x11_c00497{left:578.933333pt;}
.xf4_c00497{left:580.800000pt;}
.x138_c00497{left:583.066667pt;}
.x16d_c00497{left:585.866667pt;}
.x80_c00497{left:587.733333pt;}
.xae_c00497{left:589.066667pt;}
.xe8_c00497{left:591.066667pt;}
.x47_c00497{left:592.533333pt;}
.xb3_c00497{left:596.933333pt;}
.x84_c00497{left:598.666667pt;}
.x1d_c00497{left:599.733333pt;}
.x7a_c00497{left:600.933333pt;}
.x25_c00497{left:601.866667pt;}
.x104_c00497{left:604.133333pt;}
.xb8_c00497{left:605.333333pt;}
.x85_c00497{left:607.333333pt;}
.x2c_c00497{left:610.533333pt;}
.x52_c00497{left:613.066667pt;}
.x150_c00497{left:614.666667pt;}
.x58_c00497{left:615.600000pt;}
.x5d_c00497{left:617.600000pt;}
.x13d_c00497{left:618.800000pt;}
.xb9_c00497{left:621.600000pt;}
.x140_c00497{left:623.600000pt;}
.x48_c00497{left:624.533333pt;}
.x86_c00497{left:625.600000pt;}
.x26_c00497{left:627.466667pt;}
.xaf_c00497{left:628.400000pt;}
.xb4_c00497{left:630.533333pt;}
.x53_c00497{left:632.000000pt;}
.xd5_c00497{left:633.200000pt;}
.x105_c00497{left:634.533333pt;}
.x1e_c00497{left:635.866667pt;}
.x16e_c00497{left:637.066667pt;}
.x59_c00497{left:638.266667pt;}
.x11b_c00497{left:639.466667pt;}
.x12d_c00497{left:640.400000pt;}
.x88_c00497{left:641.866667pt;}
.x113_c00497{left:642.933333pt;}
.xba_c00497{left:644.666667pt;}
.x27_c00497{left:646.400000pt;}
.x171_c00497{left:647.600000pt;}
.x2d_c00497{left:648.666667pt;}
.x112_c00497{left:649.866667pt;}
.x177_c00497{left:651.466667pt;}
.x5a_c00497{left:654.266667pt;}
.xb0_c00497{left:655.333333pt;}
.xd6_c00497{left:656.266667pt;}
.x141_c00497{left:657.733333pt;}
.x139_c00497{left:658.933333pt;}
.x89_c00497{left:661.066667pt;}
.x178_c00497{left:662.400000pt;}
.xf5_c00497{left:663.333333pt;}
.x154_c00497{left:664.400000pt;}
.x175_c00497{left:666.400000pt;}
.x125_c00497{left:667.466667pt;}
.x120_c00497{left:668.933333pt;}
.x28_c00497{left:671.333333pt;}
.x13a_c00497{left:673.066667pt;}
.x151_c00497{left:674.533333pt;}
.x49_c00497{left:675.466667pt;}
.x29_c00497{left:676.800000pt;}
.x11c_c00497{left:679.466667pt;}
.x54_c00497{left:681.600000pt;}
.x17a_c00497{left:682.666667pt;}
.x1f_c00497{left:684.533333pt;}
.x2e_c00497{left:686.133333pt;}
.x17b_c00497{left:687.733333pt;}
.x87_c00497{left:688.666667pt;}
.x128_c00497{left:691.200000pt;}
.xbc_c00497{left:692.133333pt;}
.x5e_c00497{left:693.066667pt;}
.xf6_c00497{left:695.600000pt;}
.x131_c00497{left:697.066667pt;}
.x12_c00497{left:698.000000pt;}
.x121_c00497{left:700.666667pt;}
.x13e_c00497{left:702.933333pt;}
.x167_c00497{left:704.000000pt;}
.x5f_c00497{left:704.933333pt;}
.x55_c00497{left:706.933333pt;}
.x16f_c00497{left:709.733333pt;}
.x135_c00497{left:711.600000pt;}
.x20_c00497{left:712.666667pt;}
.x2f_c00497{left:713.600000pt;}
.x5b_c00497{left:716.000000pt;}
.xd7_c00497{left:717.733333pt;}
.x12e_c00497{left:718.800000pt;}
.x7b_c00497{left:720.666667pt;}
.xe9_c00497{left:722.400000pt;}
.xf7_c00497{left:725.066667pt;}
.xa7_c00497{left:727.066667pt;}
.x155_c00497{left:728.400000pt;}
.x12f_c00497{left:730.000000pt;}
.x2a_c00497{left:730.933333pt;}
.x152_c00497{left:732.800000pt;}
.x5c_c00497{left:733.866667pt;}
.xb6_c00497{left:736.133333pt;}
.xd8_c00497{left:737.200000pt;}
.x60_c00497{left:740.400000pt;}
.x7c_c00497{left:741.733333pt;}
.x132_c00497{left:744.800000pt;}
.x153_c00497{left:749.466667pt;}
.xdc_c00497{left:752.666667pt;}
.x168_c00497{left:753.600000pt;}
.xea_c00497{left:755.066667pt;}
.xb5_c00497{left:757.200000pt;}
.x106_c00497{left:759.333333pt;}
.xbd_c00497{left:761.600000pt;}
.x169_c00497{left:763.866667pt;}
.x122_c00497{left:766.000000pt;}
.x133_c00497{left:770.400000pt;}
.x13f_c00497{left:772.400000pt;}
.x136_c00497{left:774.000000pt;}
.x142_c00497{left:776.266667pt;}
.x134_c00497{left:778.133333pt;}
.x129_c00497{left:779.200000pt;}
.x179_c00497{left:782.000000pt;}
.x172_c00497{left:789.600000pt;}
}





/* 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_c00498 {
    display:none;
  }
  .loading-indicator_c00498.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00498 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_c00498 { 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_c00498" -> "#page-container .classname_c00498")
 */
.pf_c00498 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00498 { /* 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_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00498 { /* 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_c00498 { /* 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_c00498 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00498 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00498 {overflow:visible;}
  }
}
.c_c00498 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00498 { /* 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_c00498:after { /* webkit #35443 */
  content: '';
}
.t_c00498:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00498 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 */
}
.__c00498 { /* 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_c00498 { /* info for Javascript */
  display:none;
}
.l_c00498 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00498 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00498 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00498: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_c00498 {
    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_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00498.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_c00498 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00498{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00498;src:url('chunks/assets/font_1a308f93dcfc51bf35b25491.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.000000;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;}
.m132_c00498{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00498{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00498{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00498{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00498{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00498{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00498{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.mef_c00498{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00498{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m121_c00498{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m73_c00498{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me6_c00498{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m129_c00498{transform:matrix(0.079000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079000,0.000000,0.000000,0.250000,0,0);}
.me7_c00498{transform:matrix(0.083750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00498{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.me5_c00498{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00498{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m16_c00498{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.md1_c00498{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.maa_c00498{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mde_c00498{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.me4_c00498{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m13b_c00498{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m94_c00498{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00498{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m46_c00498{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m47_c00498{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m138_c00498{transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);}
.m11_c00498{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mec_c00498{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00498{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00498{transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00498{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m137_c00498{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00498{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00498{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00498{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m59_c00498{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.mca_c00498{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00498{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m55_c00498{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m139_c00498{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00498{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m1_c00498{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00498{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m58_c00498{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.me3_c00498{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md8_c00498{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m35_c00498{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00498{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.me9_c00498{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m128_c00498{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00498{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00498{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00498{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m130_c00498{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m116_c00498{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00498{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m81_c00498{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00498{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m38_c00498{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m80_c00498{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00498{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.mff_c00498{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m30_c00498{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00498{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00498{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.me1_c00498{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m87_c00498{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m54_c00498{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m51_c00498{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m60_c00498{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m25_c00498{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00498{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m86_c00498{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m53_c00498{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m109_c00498{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mda_c00498{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m37_c00498{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m133_c00498{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00498{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m64_c00498{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.md5_c00498{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m28_c00498{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m100_c00498{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00498{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m131_c00498{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m56_c00498{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m102_c00498{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00498{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m34_c00498{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m111_c00498{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00498{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00498{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mea_c00498{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m71_c00498{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me2_c00498{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00498{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00498{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00498{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m31_c00498{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.md9_c00498{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00498{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m125_c00498{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m62_c00498{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.mc_c00498{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00498{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00498{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00498{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m39_c00498{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00498{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.mee_c00498{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m88_c00498{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m84_c00498{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m13_c00498{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me8_c00498{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00498{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00498{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m32_c00498{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00498{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00498{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m118_c00498{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00498{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m26_c00498{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m134_c00498{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m24_c00498{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00498{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m70_c00498{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00498{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00498{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00498{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00498{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m3_c00498{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m29_c00498{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m92_c00498{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m89_c00498{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6_c00498{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00498{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m75_c00498{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mad_c00498{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00498{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mab_c00498{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00498{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00498{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m18_c00498{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m66_c00498{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00498{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m27_c00498{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00498{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m23_c00498{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00498{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5_c00498{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00498{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00498{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m15_c00498{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00498{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m119_c00498{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00498{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.md7_c00498{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m110_c00498{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m44_c00498{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m104_c00498{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00498{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00498{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4_c00498{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mae_c00498{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00498{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00498{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2_c00498{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m65_c00498{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m52_c00498{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m21_c00498{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m19_c00498{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00498{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m115_c00498{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m63_c00498{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00498{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m20_c00498{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m82_c00498{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00498{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m8_c00498{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00498{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00498{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m72_c00498{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md6_c00498{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m11d_c00498{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m69_c00498{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00498{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00498{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00498{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00498{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma_c00498{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.me_c00498{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m108_c00498{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00498{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m33_c00498{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m103_c00498{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m91_c00498{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00498{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.md_c00498{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m85_c00498{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00498{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00498{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00498{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m48_c00498{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00498{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00498{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00498{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00498{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00498{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m107_c00498{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00498{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m45_c00498{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m126_c00498{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00498{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00498{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00498{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mb_c00498{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m74_c00498{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10_c00498{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00498{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.md4_c00498{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m43_c00498{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m41_c00498{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mac_c00498{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m101_c00498{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00498{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mce_c00498{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m42_c00498{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m79_c00498{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m14_c00498{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00498{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m122_c00498{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m117_c00498{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m90_c00498{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m95_c00498{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00498{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00498{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m112_c00498{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m9_c00498{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m78_c00498{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m17_c00498{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m77_c00498{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00498{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.meb_c00498{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00498{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00498{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m57_c00498{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00498{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7_c00498{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.med_c00498{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00498{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m106_c00498{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m12_c00498{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m96_c00498{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00498{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m68_c00498{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00498{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00498{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m22_c00498{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00498{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m99_c00498{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf_c00498{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00498{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00498{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.maf_c00498{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m120_c00498{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md2_c00498{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md0_c00498{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mba_c00498{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00498{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00498{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00498{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00498{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m93_c00498{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m61_c00498{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00498{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00498{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00498{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00498{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m113_c00498{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m124_c00498{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m97_c00498{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m49_c00498{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me0_c00498{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00498{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m83_c00498{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md3_c00498{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m76_c00498{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m50_c00498{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00498{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00498{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00498{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m40_c00498{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00498{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00498{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m67_c00498{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m135_c00498{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00498{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00498{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m36_c00498{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00498{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m127_c00498{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00498{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00498{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m136_c00498{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m123_c00498{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00498{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m98_c00498{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m105_c00498{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.m114_c00498{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00498{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m13a_c00498{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m0_c00498{transform:matrix(0.412250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00498{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00498{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls2_c00498{letter-spacing:0.000000px;}
.ls0_c00498{letter-spacing:45.000000px;}
.ls1_c00498{letter-spacing:55.714286px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{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__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00498{word-spacing:-85.714286px;}
.ws4_c00498{word-spacing:-75.000000px;}
.ws2_c00498{word-spacing:-13.924975px;}
.wsb_c00498{word-spacing:-13.055556px;}
.ws14_c00498{word-spacing:-12.142857px;}
.ws15_c00498{word-spacing:-11.891892px;}
.ws13_c00498{word-spacing:-7.184713px;}
.ws16_c00498{word-spacing:0.000000px;}
.ws0_c00498{word-spacing:2.235446px;}
.ws11_c00498{word-spacing:8.754098px;}
.wsa_c00498{word-spacing:11.875000px;}
.wsd_c00498{word-spacing:18.125000px;}
.ws5_c00498{word-spacing:22.142857px;}
.ws3_c00498{word-spacing:24.491803px;}
.wsf_c00498{word-spacing:25.117479px;}
.ws7_c00498{word-spacing:25.714286px;}
.ws10_c00498{word-spacing:28.426230px;}
.ws8_c00498{word-spacing:29.285714px;}
.wse_c00498{word-spacing:43.923664px;}
.ws6_c00498{word-spacing:44.166667px;}
.ws9_c00498{word-spacing:50.416667px;}
.ws12_c00498{word-spacing:117.068783px;}
.ws1_c00498{word-spacing:1748.333333px;}
._7_c00498{margin-left:-55.714286px;}
._2_c00498{margin-left:-45.000000px;}
._6_c00498{width:3.571429px;}
._8_c00498{width:48.373536px;}
._4_c00498{width:55.714286px;}
._3_c00498{width:59.285714px;}
._0_c00498{width:61.426230px;}
._5_c00498{width:64.642857px;}
._1_c00498{width:71.262295px;}
.fc0_c00498{color:transparent;}
.fs6_c00498{font-size:30.000000px;}
.fs8_c00498{font-size:48.000000px;}
.fs5_c00498{font-size:54.000000px;}
.fs4_c00498{font-size:60.000000px;}
.fs2_c00498{font-size:66.000000px;}
.fs3_c00498{font-size:72.000000px;}
.fs7_c00498{font-size:78.000000px;}
.fs0_c00498{font-size:84.000000px;}
.fs1_c00498{font-size:114.000000px;}
.y0_c00498{bottom:0.000000px;}
.y3a_c00498{bottom:29.100000px;}
.y6f_c00498{bottom:141.450000px;}
.y39_c00498{bottom:189.750000px;}
.y6e_c00498{bottom:190.500000px;}
.y38_c00498{bottom:205.200000px;}
.y6d_c00498{bottom:208.800000px;}
.y37_c00498{bottom:218.850000px;}
.y6c_c00498{bottom:226.800000px;}
.y36_c00498{bottom:233.250000px;}
.y6b_c00498{bottom:244.800000px;}
.y35_c00498{bottom:249.150000px;}
.y6a_c00498{bottom:262.800000px;}
.y34_c00498{bottom:263.550000px;}
.y33_c00498{bottom:276.450000px;}
.y69_c00498{bottom:280.500000px;}
.y32_c00498{bottom:290.850000px;}
.y68_c00498{bottom:298.500000px;}
.y31_c00498{bottom:304.950000px;}
.y30_c00498{bottom:319.350000px;}
.y67_c00498{bottom:320.100000px;}
.y2f_c00498{bottom:333.750000px;}
.y66_c00498{bottom:338.100000px;}
.y2e_c00498{bottom:348.150000px;}
.y2d_c00498{bottom:365.100000px;}
.y65_c00498{bottom:374.400000px;}
.y2c_c00498{bottom:376.950000px;}
.y64_c00498{bottom:391.650000px;}
.y2b_c00498{bottom:392.400000px;}
.y2a_c00498{bottom:406.050000px;}
.y63_c00498{bottom:412.200000px;}
.y29_c00498{bottom:420.150000px;}
.y62_c00498{bottom:427.350000px;}
.y28_c00498{bottom:434.550000px;}
.y27_c00498{bottom:448.200000px;}
.y61_c00498{bottom:462.900000px;}
.y26_c00498{bottom:465.150000px;}
.y25_c00498{bottom:476.700000px;}
.y60_c00498{bottom:480.900000px;}
.y24_c00498{bottom:493.200000px;}
.y5f_c00498{bottom:498.900000px;}
.y23_c00498{bottom:505.050000px;}
.y22_c00498{bottom:519.150000px;}
.y5e_c00498{bottom:521.250000px;}
.y21_c00498{bottom:533.850000px;}
.y5d_c00498{bottom:539.250000px;}
.y20_c00498{bottom:548.250000px;}
.y5c_c00498{bottom:560.100000px;}
.y1f_c00498{bottom:562.650000px;}
.y5b_c00498{bottom:578.850000px;}
.y5a_c00498{bottom:596.550000px;}
.y1e_c00498{bottom:607.950000px;}
.y59_c00498{bottom:614.250000px;}
.y1d_c00498{bottom:625.650000px;}
.y58_c00498{bottom:632.250000px;}
.y1c_c00498{bottom:645.150000px;}
.y57_c00498{bottom:649.950000px;}
.y1b_c00498{bottom:664.950000px;}
.y56_c00498{bottom:667.950000px;}
.y1a_c00498{bottom:683.250000px;}
.y55_c00498{bottom:686.700000px;}
.y19_c00498{bottom:700.500000px;}
.y54_c00498{bottom:703.200000px;}
.y18_c00498{bottom:718.200000px;}
.y53_c00498{bottom:721.200000px;}
.y17_c00498{bottom:735.900000px;}
.y52_c00498{bottom:738.900000px;}
.y16_c00498{bottom:753.900000px;}
.y51_c00498{bottom:756.600000px;}
.y15_c00498{bottom:775.050000px;}
.y50_c00498{bottom:776.700000px;}
.y4f_c00498{bottom:792.600000px;}
.y14_c00498{bottom:793.050000px;}
.y4e_c00498{bottom:810.600000px;}
.y13_c00498{bottom:819.300000px;}
.y4d_c00498{bottom:828.300000px;}
.y12_c00498{bottom:837.300000px;}
.y4c_c00498{bottom:848.550000px;}
.y11_c00498{bottom:855.300000px;}
.y4b_c00498{bottom:862.950000px;}
.y4a_c00498{bottom:877.650000px;}
.y49_c00498{bottom:892.050000px;}
.y10_c00498{bottom:894.300000px;}
.yf_c00498{bottom:899.250000px;}
.y48_c00498{bottom:906.450000px;}
.ye_c00498{bottom:917.250000px;}
.y47_c00498{bottom:920.850000px;}
.yd_c00498{bottom:934.950000px;}
.y46_c00498{bottom:935.250000px;}
.y45_c00498{bottom:949.650000px;}
.yc_c00498{bottom:952.950000px;}
.y44_c00498{bottom:964.050000px;}
.yb_c00498{bottom:974.700000px;}
.y43_c00498{bottom:978.450000px;}
.y42_c00498{bottom:992.550000px;}
.ya_c00498{bottom:992.700000px;}
.y41_c00498{bottom:1007.700000px;}
.y9_c00498{bottom:1010.700000px;}
.y40_c00498{bottom:1027.500000px;}
.y8_c00498{bottom:1028.400000px;}
.y3f_c00498{bottom:1045.500000px;}
.y7_c00498{bottom:1046.400000px;}
.y3e_c00498{bottom:1063.500000px;}
.y6_c00498{bottom:1064.100000px;}
.y3d_c00498{bottom:1081.050000px;}
.y5_c00498{bottom:1081.800000px;}
.y3c_c00498{bottom:1099.050000px;}
.y4_c00498{bottom:1099.800000px;}
.y3b_c00498{bottom:1116.300000px;}
.y3_c00498{bottom:1117.800000px;}
.y2_c00498{bottom:1140.900000px;}
.y1_c00498{bottom:1144.800000px;}
.h8_c00498{height:30.000000px;}
.ha_c00498{height:48.000000px;}
.h7_c00498{height:54.000000px;}
.h6_c00498{height:60.000000px;}
.h4_c00498{height:66.000000px;}
.h5_c00498{height:72.000000px;}
.h9_c00498{height:78.000000px;}
.h2_c00498{height:84.000000px;}
.h3_c00498{height:114.000000px;}
.h0_c00498{height:1267.200073px;}
.h1_c00498{height:1267.500000px;}
.w0_c00498{width:958.320007px;}
.w1_c00498{width:958.500000px;}
.x0_c00498{left:0.000000px;}
.xae_c00498{left:66.300000px;}
.x97_c00498{left:70.800000px;}
.x9e_c00498{left:72.000000px;}
.x4c_c00498{left:74.100000px;}
.xa3_c00498{left:75.300000px;}
.x95_c00498{left:76.350000px;}
.x4e_c00498{left:78.450000px;}
.xad_c00498{left:81.750000px;}
.xa1_c00498{left:92.400000px;}
.x83_c00498{left:93.600000px;}
.x3_c00498{left:95.100000px;}
.x25_c00498{left:96.150000px;}
.x59_c00498{left:97.650000px;}
.x70_c00498{left:98.850000px;}
.x7f_c00498{left:101.250000px;}
.x9c_c00498{left:104.100000px;}
.x8b_c00498{left:109.650000px;}
.x3c_c00498{left:110.700000px;}
.x91_c00498{left:111.900000px;}
.x34_c00498{left:113.400000px;}
.x44_c00498{left:116.100000px;}
.xf_c00498{left:117.450000px;}
.x56_c00498{left:121.350000px;}
.x4_c00498{left:123.900000px;}
.x8e_c00498{left:125.100000px;}
.x1b_c00498{left:127.200000px;}
.x84_c00498{left:129.300000px;}
.x6c_c00498{left:134.100000px;}
.x5f_c00498{left:136.200000px;}
.x17_c00498{left:138.600000px;}
.x4d_c00498{left:139.650000px;}
.x7b_c00498{left:140.700000px;}
.x3d_c00498{left:142.050000px;}
.x94_c00498{left:143.400000px;}
.x98_c00498{left:144.750000px;}
.x4f_c00498{left:146.100000px;}
.x8c_c00498{left:147.450000px;}
.x8f_c00498{left:149.550000px;}
.x9_c00498{left:151.050000px;}
.x99_c00498{left:152.700000px;}
.x1c_c00498{left:154.200000px;}
.x35_c00498{left:156.300000px;}
.x5a_c00498{left:158.100000px;}
.x6d_c00498{left:159.300000px;}
.x75_c00498{left:160.500000px;}
.x26_c00498{left:161.700000px;}
.x2d_c00498{left:163.050000px;}
.x49_c00498{left:166.200000px;}
.x60_c00498{left:168.900000px;}
.x9f_c00498{left:170.250000px;}
.x9d_c00498{left:171.450000px;}
.x10_c00498{left:175.050000px;}
.x36_c00498{left:178.650000px;}
.xa4_c00498{left:180.000000px;}
.x5_c00498{left:181.800000px;}
.x4a_c00498{left:183.900000px;}
.x11_c00498{left:185.100000px;}
.x65_c00498{left:187.650000px;}
.x7c_c00498{left:189.300000px;}
.x3e_c00498{left:190.350000px;}
.x76_c00498{left:192.450000px;}
.x71_c00498{left:196.500000px;}
.x53_c00498{left:198.750000px;}
.xa7_c00498{left:199.950000px;}
.x1d_c00498{left:201.300000px;}
.x18_c00498{left:203.100000px;}
.x2e_c00498{left:204.750000px;}
.x5b_c00498{left:206.700000px;}
.x61_c00498{left:207.750000px;}
.x92_c00498{left:208.950000px;}
.xac_c00498{left:211.050000px;}
.x86_c00498{left:213.450000px;}
.x21_c00498{left:214.650000px;}
.x27_c00498{left:216.450000px;}
.xa_c00498{left:217.650000px;}
.x50_c00498{left:220.200000px;}
.x9a_c00498{left:222.300000px;}
.x7d_c00498{left:223.500000px;}
.x80_c00498{left:226.500000px;}
.x78_c00498{left:227.850000px;}
.x2f_c00498{left:228.900000px;}
.x72_c00498{left:231.000000px;}
.x19_c00498{left:232.650000px;}
.x28_c00498{left:235.200000px;}
.x3f_c00498{left:236.400000px;}
.xb_c00498{left:237.750000px;}
.x57_c00498{left:239.850000px;}
.x5c_c00498{left:241.650000px;}
.x30_c00498{left:244.350000px;}
.x77_c00498{left:248.250000px;}
.x87_c00498{left:250.950000px;}
.x22_c00498{left:252.450000px;}
.x68_c00498{left:253.650000px;}
.x81_c00498{left:255.300000px;}
.x6_c00498{left:256.650000px;}
.x37_c00498{left:259.650000px;}
.x9b_c00498{left:261.150000px;}
.x51_c00498{left:262.650000px;}
.xa2_c00498{left:264.900000px;}
.x12_c00498{left:267.450000px;}
.x79_c00498{left:269.550000px;}
.x96_c00498{left:272.100000px;}
.x40_c00498{left:273.150000px;}
.x31_c00498{left:274.200000px;}
.xa5_c00498{left:275.700000px;}
.x85_c00498{left:276.900000px;}
.x1e_c00498{left:278.700000px;}
.x6e_c00498{left:279.900000px;}
.x73_c00498{left:281.100000px;}
.x8d_c00498{left:283.200000px;}
.x62_c00498{left:285.150000px;}
.x38_c00498{left:286.350000px;}
.x29_c00498{left:287.400000px;}
.x66_c00498{left:289.950000px;}
.x1a_c00498{left:291.000000px;}
.x45_c00498{left:292.200000px;}
.x82_c00498{left:295.650000px;}
.x23_c00498{left:299.250000px;}
.x7_c00498{left:301.950000px;}
.x90_c00498{left:303.300000px;}
.x33_c00498{left:304.500000px;}
.xc_c00498{left:306.150000px;}
.x69_c00498{left:307.950000px;}
.x5d_c00498{left:310.050000px;}
.x2a_c00498{left:311.100000px;}
.x63_c00498{left:312.150000px;}
.x13_c00498{left:313.200000px;}
.x2b_c00498{left:320.400000px;}
.x6a_c00498{left:323.100000px;}
.x4b_c00498{left:324.300000px;}
.x88_c00498{left:327.600000px;}
.x46_c00498{left:328.950000px;}
.x1_c00498{left:330.900000px;}
.x41_c00498{left:332.250000px;}
.xa8_c00498{left:333.300000px;}
.x74_c00498{left:334.800000px;}
.x14_c00498{left:338.700000px;}
.x54_c00498{left:342.150000px;}
.xd_c00498{left:346.050000px;}
.x47_c00498{left:347.250000px;}
.xa6_c00498{left:349.800000px;}
.xa9_c00498{left:351.000000px;}
.x39_c00498{left:352.200000px;}
.x7e_c00498{left:354.450000px;}
.x2c_c00498{left:355.650000px;}
.x42_c00498{left:357.750000px;}
.x64_c00498{left:358.950000px;}
.x55_c00498{left:361.200000px;}
.x1f_c00498{left:362.250000px;}
.x32_c00498{left:366.000000px;}
.x3a_c00498{left:368.100000px;}
.x6b_c00498{left:369.600000px;}
.x15_c00498{left:370.800000px;}
.x20_c00498{left:372.000000px;}
.x8_c00498{left:374.250000px;}
.x48_c00498{left:376.050000px;}
.xe_c00498{left:377.700000px;}
.xa0_c00498{left:379.350000px;}
.x6f_c00498{left:380.400000px;}
.x67_c00498{left:383.250000px;}
.x5e_c00498{left:385.050000px;}
.x43_c00498{left:386.550000px;}
.x24_c00498{left:391.050000px;}
.xaa_c00498{left:393.150000px;}
.x93_c00498{left:395.100000px;}
.x58_c00498{left:396.150000px;}
.x3b_c00498{left:397.950000px;}
.x7a_c00498{left:399.150000px;}
.x89_c00498{left:400.350000px;}
.xab_c00498{left:401.850000px;}
.x52_c00498{left:405.150000px;}
.x16_c00498{left:408.900000px;}
.x8a_c00498{left:410.250000px;}
.xdb_c00498{left:434.850000px;}
.x11c_c00498{left:436.350000px;}
.xca_c00498{left:446.100000px;}
.xff_c00498{left:449.100000px;}
.xaf_c00498{left:450.300000px;}
.xd4_c00498{left:451.800000px;}
.xc1_c00498{left:453.600000px;}
.x12a_c00498{left:454.650000px;}
.xed_c00498{left:459.750000px;}
.xf8_c00498{left:463.200000px;}
.x11a_c00498{left:464.700000px;}
.x100_c00498{left:468.900000px;}
.xb8_c00498{left:471.000000px;}
.x131_c00498{left:472.500000px;}
.xb0_c00498{left:475.500000px;}
.x121_c00498{left:478.350000px;}
.x13e_c00498{left:479.550000px;}
.x125_c00498{left:481.650000px;}
.xc2_c00498{left:485.250000px;}
.xcb_c00498{left:489.000000px;}
.x13f_c00498{left:491.400000px;}
.x154_c00498{left:492.450000px;}
.xb1_c00498{left:493.500000px;}
.x136_c00498{left:494.550000px;}
.xdc_c00498{left:496.050000px;}
.x11f_c00498{left:498.150000px;}
.x114_c00498{left:500.100000px;}
.xcc_c00498{left:501.600000px;}
.x14d_c00498{left:503.250000px;}
.xd5_c00498{left:504.300000px;}
.xb9_c00498{left:506.700000px;}
.x151_c00498{left:508.350000px;}
.x108_c00498{left:510.900000px;}
.x138_c00498{left:512.700000px;}
.xba_c00498{left:514.950000px;}
.xf9_c00498{left:517.200000px;}
.xcd_c00498{left:520.650000px;}
.xf1_c00498{left:522.000000px;}
.x11d_c00498{left:523.800000px;}
.xe4_c00498{left:524.850000px;}
.xee_c00498{left:526.650000px;}
.xb2_c00498{left:530.250000px;}
.x122_c00498{left:532.050000px;}
.xfa_c00498{left:533.700000px;}
.x120_c00498{left:535.200000px;}
.x12d_c00498{left:538.050000px;}
.x12b_c00498{left:539.550000px;}
.x109_c00498{left:541.200000px;}
.x110_c00498{left:544.500000px;}
.xc3_c00498{left:546.150000px;}
.x145_c00498{left:548.400000px;}
.xdd_c00498{left:550.350000px;}
.x115_c00498{left:551.550000px;}
.xce_c00498{left:552.750000px;}
.x106_c00498{left:554.100000px;}
.x101_c00498{left:555.300000px;}
.xbb_c00498{left:557.400000px;}
.xf2_c00498{left:558.750000px;}
.x102_c00498{left:562.800000px;}
.x152_c00498{left:563.850000px;}
.xf3_c00498{left:564.900000px;}
.x10a_c00498{left:566.100000px;}
.x133_c00498{left:567.150000px;}
.x123_c00498{left:569.100000px;}
.xde_c00498{left:570.450000px;}
.xf4_c00498{left:572.100000px;}
.xe5_c00498{left:574.200000px;}
.x11b_c00498{left:576.000000px;}
.xc4_c00498{left:577.800000px;}
.x116_c00498{left:580.050000px;}
.x111_c00498{left:581.550000px;}
.xfb_c00498{left:584.100000px;}
.xef_c00498{left:585.450000px;}
.x117_c00498{left:587.250000px;}
.x127_c00498{left:588.900000px;}
.xb3_c00498{left:589.950000px;}
.x140_c00498{left:591.900000px;}
.x143_c00498{left:592.950000px;}
.xe6_c00498{left:594.000000px;}
.x14e_c00498{left:595.350000px;}
.xbc_c00498{left:597.000000px;}
.x112_c00498{left:599.550000px;}
.xf5_c00498{left:600.900000px;}
.x118_c00498{left:601.950000px;}
.xc5_c00498{left:603.300000px;}
.x149_c00498{left:605.250000px;}
.xd6_c00498{left:607.350000px;}
.x155_c00498{left:608.400000px;}
.xb4_c00498{left:610.800000px;}
.xbd_c00498{left:612.450000px;}
.x103_c00498{left:614.400000px;}
.xf6_c00498{left:616.050000px;}
.xf0_c00498{left:618.150000px;}
.xdf_c00498{left:620.100000px;}
.x10c_c00498{left:621.300000px;}
.x153_c00498{left:623.850000px;}
.xb5_c00498{left:626.250000px;}
.xcf_c00498{left:628.800000px;}
.x104_c00498{left:629.850000px;}
.x124_c00498{left:631.350000px;}
.x119_c00498{left:632.850000px;}
.xe7_c00498{left:636.600000px;}
.x13c_c00498{left:639.300000px;}
.xc6_c00498{left:641.100000px;}
.xe8_c00498{left:643.800000px;}
.x107_c00498{left:644.850000px;}
.x141_c00498{left:645.900000px;}
.xd0_c00498{left:648.300000px;}
.x137_c00498{left:649.500000px;}
.xe9_c00498{left:651.000000px;}
.x128_c00498{left:652.650000px;}
.xbe_c00498{left:655.650000px;}
.xfc_c00498{left:656.850000px;}
.x10d_c00498{left:657.900000px;}
.x105_c00498{left:658.950000px;}
.x113_c00498{left:660.300000px;}
.xd7_c00498{left:663.900000px;}
.xbf_c00498{left:665.700000px;}
.xb6_c00498{left:667.950000px;}
.x150_c00498{left:669.150000px;}
.x146_c00498{left:670.950000px;}
.xe0_c00498{left:672.900000px;}
.xd1_c00498{left:674.250000px;}
.x144_c00498{left:677.250000px;}
.x10e_c00498{left:679.200000px;}
.xc7_c00498{left:680.700000px;}
.x14a_c00498{left:682.950000px;}
.x134_c00498{left:685.500000px;}
.xe1_c00498{left:688.050000px;}
.x126_c00498{left:689.100000px;}
.x139_c00498{left:690.600000px;}
.x147_c00498{left:692.550000px;}
.xd8_c00498{left:694.800000px;}
.x142_c00498{left:696.900000px;}
.x132_c00498{left:698.100000px;}
.xea_c00498{left:700.050000px;}
.xf7_c00498{left:701.250000px;}
.x14f_c00498{left:702.600000px;}
.x135_c00498{left:704.250000px;}
.xd2_c00498{left:709.200000px;}
.xd9_c00498{left:711.000000px;}
.x12e_c00498{left:712.650000px;}
.x13a_c00498{left:714.300000px;}
.xb7_c00498{left:715.800000px;}
.x130_c00498{left:718.500000px;}
.xe2_c00498{left:720.150000px;}
.xc0_c00498{left:721.500000px;}
.x129_c00498{left:722.850000px;}
.x14b_c00498{left:724.650000px;}
.x10f_c00498{left:727.350000px;}
.xeb_c00498{left:729.150000px;}
.x12f_c00498{left:731.700000px;}
.x148_c00498{left:732.900000px;}
.xd3_c00498{left:736.950000px;}
.x13d_c00498{left:740.100000px;}
.xc8_c00498{left:741.600000px;}
.x2_c00498{left:742.800000px;}
.x11e_c00498{left:748.950000px;}
.xfd_c00498{left:750.750000px;}
.xc9_c00498{left:752.100000px;}
.xe3_c00498{left:755.100000px;}
.x10b_c00498{left:757.050000px;}
.xec_c00498{left:758.250000px;}
.xda_c00498{left:759.600000px;}
.x14c_c00498{left:763.950000px;}
.x13b_c00498{left:766.500000px;}
.x12c_c00498{left:767.700000px;}
.xfe_c00498{left:775.200000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls2_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:40.000000pt;}
.ls1_c00498{letter-spacing:49.523810pt;}
.wsc_c00498{word-spacing:-76.190476pt;}
.ws4_c00498{word-spacing:-66.666667pt;}
.ws2_c00498{word-spacing:-12.377756pt;}
.wsb_c00498{word-spacing:-11.604938pt;}
.ws14_c00498{word-spacing:-10.793651pt;}
.ws15_c00498{word-spacing:-10.570571pt;}
.ws13_c00498{word-spacing:-6.386412pt;}
.ws16_c00498{word-spacing:0.000000pt;}
.ws0_c00498{word-spacing:1.987063pt;}
.ws11_c00498{word-spacing:7.781421pt;}
.wsa_c00498{word-spacing:10.555556pt;}
.wsd_c00498{word-spacing:16.111111pt;}
.ws5_c00498{word-spacing:19.682540pt;}
.ws3_c00498{word-spacing:21.770492pt;}
.wsf_c00498{word-spacing:22.326648pt;}
.ws7_c00498{word-spacing:22.857143pt;}
.ws10_c00498{word-spacing:25.267760pt;}
.ws8_c00498{word-spacing:26.031746pt;}
.wse_c00498{word-spacing:39.043257pt;}
.ws6_c00498{word-spacing:39.259259pt;}
.ws9_c00498{word-spacing:44.814815pt;}
.ws12_c00498{word-spacing:104.061141pt;}
.ws1_c00498{word-spacing:1554.074074pt;}
._7_c00498{margin-left:-49.523810pt;}
._2_c00498{margin-left:-40.000000pt;}
._6_c00498{width:3.174603pt;}
._8_c00498{width:42.998699pt;}
._4_c00498{width:49.523810pt;}
._3_c00498{width:52.698413pt;}
._0_c00498{width:54.601093pt;}
._5_c00498{width:57.460317pt;}
._1_c00498{width:63.344262pt;}
.fs6_c00498{font-size:26.666667pt;}
.fs8_c00498{font-size:42.666667pt;}
.fs5_c00498{font-size:48.000000pt;}
.fs4_c00498{font-size:53.333333pt;}
.fs2_c00498{font-size:58.666667pt;}
.fs3_c00498{font-size:64.000000pt;}
.fs7_c00498{font-size:69.333333pt;}
.fs0_c00498{font-size:74.666667pt;}
.fs1_c00498{font-size:101.333333pt;}
.y0_c00498{bottom:0.000000pt;}
.y3a_c00498{bottom:25.866667pt;}
.y6f_c00498{bottom:125.733333pt;}
.y39_c00498{bottom:168.666667pt;}
.y6e_c00498{bottom:169.333333pt;}
.y38_c00498{bottom:182.400000pt;}
.y6d_c00498{bottom:185.600000pt;}
.y37_c00498{bottom:194.533333pt;}
.y6c_c00498{bottom:201.600000pt;}
.y36_c00498{bottom:207.333333pt;}
.y6b_c00498{bottom:217.600000pt;}
.y35_c00498{bottom:221.466667pt;}
.y6a_c00498{bottom:233.600000pt;}
.y34_c00498{bottom:234.266667pt;}
.y33_c00498{bottom:245.733333pt;}
.y69_c00498{bottom:249.333333pt;}
.y32_c00498{bottom:258.533333pt;}
.y68_c00498{bottom:265.333333pt;}
.y31_c00498{bottom:271.066667pt;}
.y30_c00498{bottom:283.866667pt;}
.y67_c00498{bottom:284.533333pt;}
.y2f_c00498{bottom:296.666667pt;}
.y66_c00498{bottom:300.533333pt;}
.y2e_c00498{bottom:309.466667pt;}
.y2d_c00498{bottom:324.533333pt;}
.y65_c00498{bottom:332.800000pt;}
.y2c_c00498{bottom:335.066667pt;}
.y64_c00498{bottom:348.133333pt;}
.y2b_c00498{bottom:348.800000pt;}
.y2a_c00498{bottom:360.933333pt;}
.y63_c00498{bottom:366.400000pt;}
.y29_c00498{bottom:373.466667pt;}
.y62_c00498{bottom:379.866667pt;}
.y28_c00498{bottom:386.266667pt;}
.y27_c00498{bottom:398.400000pt;}
.y61_c00498{bottom:411.466667pt;}
.y26_c00498{bottom:413.466667pt;}
.y25_c00498{bottom:423.733333pt;}
.y60_c00498{bottom:427.466667pt;}
.y24_c00498{bottom:438.400000pt;}
.y5f_c00498{bottom:443.466667pt;}
.y23_c00498{bottom:448.933333pt;}
.y22_c00498{bottom:461.466667pt;}
.y5e_c00498{bottom:463.333333pt;}
.y21_c00498{bottom:474.533333pt;}
.y5d_c00498{bottom:479.333333pt;}
.y20_c00498{bottom:487.333333pt;}
.y5c_c00498{bottom:497.866667pt;}
.y1f_c00498{bottom:500.133333pt;}
.y5b_c00498{bottom:514.533333pt;}
.y5a_c00498{bottom:530.266667pt;}
.y1e_c00498{bottom:540.400000pt;}
.y59_c00498{bottom:546.000000pt;}
.y1d_c00498{bottom:556.133333pt;}
.y58_c00498{bottom:562.000000pt;}
.y1c_c00498{bottom:573.466667pt;}
.y57_c00498{bottom:577.733333pt;}
.y1b_c00498{bottom:591.066667pt;}
.y56_c00498{bottom:593.733333pt;}
.y1a_c00498{bottom:607.333333pt;}
.y55_c00498{bottom:610.400000pt;}
.y19_c00498{bottom:622.666667pt;}
.y54_c00498{bottom:625.066667pt;}
.y18_c00498{bottom:638.400000pt;}
.y53_c00498{bottom:641.066667pt;}
.y17_c00498{bottom:654.133333pt;}
.y52_c00498{bottom:656.800000pt;}
.y16_c00498{bottom:670.133333pt;}
.y51_c00498{bottom:672.533333pt;}
.y15_c00498{bottom:688.933333pt;}
.y50_c00498{bottom:690.400000pt;}
.y4f_c00498{bottom:704.533333pt;}
.y14_c00498{bottom:704.933333pt;}
.y4e_c00498{bottom:720.533333pt;}
.y13_c00498{bottom:728.266667pt;}
.y4d_c00498{bottom:736.266667pt;}
.y12_c00498{bottom:744.266667pt;}
.y4c_c00498{bottom:754.266667pt;}
.y11_c00498{bottom:760.266667pt;}
.y4b_c00498{bottom:767.066667pt;}
.y4a_c00498{bottom:780.133333pt;}
.y49_c00498{bottom:792.933333pt;}
.y10_c00498{bottom:794.933333pt;}
.yf_c00498{bottom:799.333333pt;}
.y48_c00498{bottom:805.733333pt;}
.ye_c00498{bottom:815.333333pt;}
.y47_c00498{bottom:818.533333pt;}
.yd_c00498{bottom:831.066667pt;}
.y46_c00498{bottom:831.333333pt;}
.y45_c00498{bottom:844.133333pt;}
.yc_c00498{bottom:847.066667pt;}
.y44_c00498{bottom:856.933333pt;}
.yb_c00498{bottom:866.400000pt;}
.y43_c00498{bottom:869.733333pt;}
.y42_c00498{bottom:882.266667pt;}
.ya_c00498{bottom:882.400000pt;}
.y41_c00498{bottom:895.733333pt;}
.y9_c00498{bottom:898.400000pt;}
.y40_c00498{bottom:913.333333pt;}
.y8_c00498{bottom:914.133333pt;}
.y3f_c00498{bottom:929.333333pt;}
.y7_c00498{bottom:930.133333pt;}
.y3e_c00498{bottom:945.333333pt;}
.y6_c00498{bottom:945.866667pt;}
.y3d_c00498{bottom:960.933333pt;}
.y5_c00498{bottom:961.600000pt;}
.y3c_c00498{bottom:976.933333pt;}
.y4_c00498{bottom:977.600000pt;}
.y3b_c00498{bottom:992.266667pt;}
.y3_c00498{bottom:993.600000pt;}
.y2_c00498{bottom:1014.133333pt;}
.y1_c00498{bottom:1017.600000pt;}
.h8_c00498{height:26.666667pt;}
.ha_c00498{height:42.666667pt;}
.h7_c00498{height:48.000000pt;}
.h6_c00498{height:53.333333pt;}
.h4_c00498{height:58.666667pt;}
.h5_c00498{height:64.000000pt;}
.h9_c00498{height:69.333333pt;}
.h2_c00498{height:74.666667pt;}
.h3_c00498{height:101.333333pt;}
.h0_c00498{height:1126.400065pt;}
.h1_c00498{height:1126.666667pt;}
.w0_c00498{width:851.840007pt;}
.w1_c00498{width:852.000000pt;}
.x0_c00498{left:0.000000pt;}
.xae_c00498{left:58.933333pt;}
.x97_c00498{left:62.933333pt;}
.x9e_c00498{left:64.000000pt;}
.x4c_c00498{left:65.866667pt;}
.xa3_c00498{left:66.933333pt;}
.x95_c00498{left:67.866667pt;}
.x4e_c00498{left:69.733333pt;}
.xad_c00498{left:72.666667pt;}
.xa1_c00498{left:82.133333pt;}
.x83_c00498{left:83.200000pt;}
.x3_c00498{left:84.533333pt;}
.x25_c00498{left:85.466667pt;}
.x59_c00498{left:86.800000pt;}
.x70_c00498{left:87.866667pt;}
.x7f_c00498{left:90.000000pt;}
.x9c_c00498{left:92.533333pt;}
.x8b_c00498{left:97.466667pt;}
.x3c_c00498{left:98.400000pt;}
.x91_c00498{left:99.466667pt;}
.x34_c00498{left:100.800000pt;}
.x44_c00498{left:103.200000pt;}
.xf_c00498{left:104.400000pt;}
.x56_c00498{left:107.866667pt;}
.x4_c00498{left:110.133333pt;}
.x8e_c00498{left:111.200000pt;}
.x1b_c00498{left:113.066667pt;}
.x84_c00498{left:114.933333pt;}
.x6c_c00498{left:119.200000pt;}
.x5f_c00498{left:121.066667pt;}
.x17_c00498{left:123.200000pt;}
.x4d_c00498{left:124.133333pt;}
.x7b_c00498{left:125.066667pt;}
.x3d_c00498{left:126.266667pt;}
.x94_c00498{left:127.466667pt;}
.x98_c00498{left:128.666667pt;}
.x4f_c00498{left:129.866667pt;}
.x8c_c00498{left:131.066667pt;}
.x8f_c00498{left:132.933333pt;}
.x9_c00498{left:134.266667pt;}
.x99_c00498{left:135.733333pt;}
.x1c_c00498{left:137.066667pt;}
.x35_c00498{left:138.933333pt;}
.x5a_c00498{left:140.533333pt;}
.x6d_c00498{left:141.600000pt;}
.x75_c00498{left:142.666667pt;}
.x26_c00498{left:143.733333pt;}
.x2d_c00498{left:144.933333pt;}
.x49_c00498{left:147.733333pt;}
.x60_c00498{left:150.133333pt;}
.x9f_c00498{left:151.333333pt;}
.x9d_c00498{left:152.400000pt;}
.x10_c00498{left:155.600000pt;}
.x36_c00498{left:158.800000pt;}
.xa4_c00498{left:160.000000pt;}
.x5_c00498{left:161.600000pt;}
.x4a_c00498{left:163.466667pt;}
.x11_c00498{left:164.533333pt;}
.x65_c00498{left:166.800000pt;}
.x7c_c00498{left:168.266667pt;}
.x3e_c00498{left:169.200000pt;}
.x76_c00498{left:171.066667pt;}
.x71_c00498{left:174.666667pt;}
.x53_c00498{left:176.666667pt;}
.xa7_c00498{left:177.733333pt;}
.x1d_c00498{left:178.933333pt;}
.x18_c00498{left:180.533333pt;}
.x2e_c00498{left:182.000000pt;}
.x5b_c00498{left:183.733333pt;}
.x61_c00498{left:184.666667pt;}
.x92_c00498{left:185.733333pt;}
.xac_c00498{left:187.600000pt;}
.x86_c00498{left:189.733333pt;}
.x21_c00498{left:190.800000pt;}
.x27_c00498{left:192.400000pt;}
.xa_c00498{left:193.466667pt;}
.x50_c00498{left:195.733333pt;}
.x9a_c00498{left:197.600000pt;}
.x7d_c00498{left:198.666667pt;}
.x80_c00498{left:201.333333pt;}
.x78_c00498{left:202.533333pt;}
.x2f_c00498{left:203.466667pt;}
.x72_c00498{left:205.333333pt;}
.x19_c00498{left:206.800000pt;}
.x28_c00498{left:209.066667pt;}
.x3f_c00498{left:210.133333pt;}
.xb_c00498{left:211.333333pt;}
.x57_c00498{left:213.200000pt;}
.x5c_c00498{left:214.800000pt;}
.x30_c00498{left:217.200000pt;}
.x77_c00498{left:220.666667pt;}
.x87_c00498{left:223.066667pt;}
.x22_c00498{left:224.400000pt;}
.x68_c00498{left:225.466667pt;}
.x81_c00498{left:226.933333pt;}
.x6_c00498{left:228.133333pt;}
.x37_c00498{left:230.800000pt;}
.x9b_c00498{left:232.133333pt;}
.x51_c00498{left:233.466667pt;}
.xa2_c00498{left:235.466667pt;}
.x12_c00498{left:237.733333pt;}
.x79_c00498{left:239.600000pt;}
.x96_c00498{left:241.866667pt;}
.x40_c00498{left:242.800000pt;}
.x31_c00498{left:243.733333pt;}
.xa5_c00498{left:245.066667pt;}
.x85_c00498{left:246.133333pt;}
.x1e_c00498{left:247.733333pt;}
.x6e_c00498{left:248.800000pt;}
.x73_c00498{left:249.866667pt;}
.x8d_c00498{left:251.733333pt;}
.x62_c00498{left:253.466667pt;}
.x38_c00498{left:254.533333pt;}
.x29_c00498{left:255.466667pt;}
.x66_c00498{left:257.733333pt;}
.x1a_c00498{left:258.666667pt;}
.x45_c00498{left:259.733333pt;}
.x82_c00498{left:262.800000pt;}
.x23_c00498{left:266.000000pt;}
.x7_c00498{left:268.400000pt;}
.x90_c00498{left:269.600000pt;}
.x33_c00498{left:270.666667pt;}
.xc_c00498{left:272.133333pt;}
.x69_c00498{left:273.733333pt;}
.x5d_c00498{left:275.600000pt;}
.x2a_c00498{left:276.533333pt;}
.x63_c00498{left:277.466667pt;}
.x13_c00498{left:278.400000pt;}
.x2b_c00498{left:284.800000pt;}
.x6a_c00498{left:287.200000pt;}
.x4b_c00498{left:288.266667pt;}
.x88_c00498{left:291.200000pt;}
.x46_c00498{left:292.400000pt;}
.x1_c00498{left:294.133333pt;}
.x41_c00498{left:295.333333pt;}
.xa8_c00498{left:296.266667pt;}
.x74_c00498{left:297.600000pt;}
.x14_c00498{left:301.066667pt;}
.x54_c00498{left:304.133333pt;}
.xd_c00498{left:307.600000pt;}
.x47_c00498{left:308.666667pt;}
.xa6_c00498{left:310.933333pt;}
.xa9_c00498{left:312.000000pt;}
.x39_c00498{left:313.066667pt;}
.x7e_c00498{left:315.066667pt;}
.x2c_c00498{left:316.133333pt;}
.x42_c00498{left:318.000000pt;}
.x64_c00498{left:319.066667pt;}
.x55_c00498{left:321.066667pt;}
.x1f_c00498{left:322.000000pt;}
.x32_c00498{left:325.333333pt;}
.x3a_c00498{left:327.200000pt;}
.x6b_c00498{left:328.533333pt;}
.x15_c00498{left:329.600000pt;}
.x20_c00498{left:330.666667pt;}
.x8_c00498{left:332.666667pt;}
.x48_c00498{left:334.266667pt;}
.xe_c00498{left:335.733333pt;}
.xa0_c00498{left:337.200000pt;}
.x6f_c00498{left:338.133333pt;}
.x67_c00498{left:340.666667pt;}
.x5e_c00498{left:342.266667pt;}
.x43_c00498{left:343.600000pt;}
.x24_c00498{left:347.600000pt;}
.xaa_c00498{left:349.466667pt;}
.x93_c00498{left:351.200000pt;}
.x58_c00498{left:352.133333pt;}
.x3b_c00498{left:353.733333pt;}
.x7a_c00498{left:354.800000pt;}
.x89_c00498{left:355.866667pt;}
.xab_c00498{left:357.200000pt;}
.x52_c00498{left:360.133333pt;}
.x16_c00498{left:363.466667pt;}
.x8a_c00498{left:364.666667pt;}
.xdb_c00498{left:386.533333pt;}
.x11c_c00498{left:387.866667pt;}
.xca_c00498{left:396.533333pt;}
.xff_c00498{left:399.200000pt;}
.xaf_c00498{left:400.266667pt;}
.xd4_c00498{left:401.600000pt;}
.xc1_c00498{left:403.200000pt;}
.x12a_c00498{left:404.133333pt;}
.xed_c00498{left:408.666667pt;}
.xf8_c00498{left:411.733333pt;}
.x11a_c00498{left:413.066667pt;}
.x100_c00498{left:416.800000pt;}
.xb8_c00498{left:418.666667pt;}
.x131_c00498{left:420.000000pt;}
.xb0_c00498{left:422.666667pt;}
.x121_c00498{left:425.200000pt;}
.x13e_c00498{left:426.266667pt;}
.x125_c00498{left:428.133333pt;}
.xc2_c00498{left:431.333333pt;}
.xcb_c00498{left:434.666667pt;}
.x13f_c00498{left:436.800000pt;}
.x154_c00498{left:437.733333pt;}
.xb1_c00498{left:438.666667pt;}
.x136_c00498{left:439.600000pt;}
.xdc_c00498{left:440.933333pt;}
.x11f_c00498{left:442.800000pt;}
.x114_c00498{left:444.533333pt;}
.xcc_c00498{left:445.866667pt;}
.x14d_c00498{left:447.333333pt;}
.xd5_c00498{left:448.266667pt;}
.xb9_c00498{left:450.400000pt;}
.x151_c00498{left:451.866667pt;}
.x108_c00498{left:454.133333pt;}
.x138_c00498{left:455.733333pt;}
.xba_c00498{left:457.733333pt;}
.xf9_c00498{left:459.733333pt;}
.xcd_c00498{left:462.800000pt;}
.xf1_c00498{left:464.000000pt;}
.x11d_c00498{left:465.600000pt;}
.xe4_c00498{left:466.533333pt;}
.xee_c00498{left:468.133333pt;}
.xb2_c00498{left:471.333333pt;}
.x122_c00498{left:472.933333pt;}
.xfa_c00498{left:474.400000pt;}
.x120_c00498{left:475.733333pt;}
.x12d_c00498{left:478.266667pt;}
.x12b_c00498{left:479.600000pt;}
.x109_c00498{left:481.066667pt;}
.x110_c00498{left:484.000000pt;}
.xc3_c00498{left:485.466667pt;}
.x145_c00498{left:487.466667pt;}
.xdd_c00498{left:489.200000pt;}
.x115_c00498{left:490.266667pt;}
.xce_c00498{left:491.333333pt;}
.x106_c00498{left:492.533333pt;}
.x101_c00498{left:493.600000pt;}
.xbb_c00498{left:495.466667pt;}
.xf2_c00498{left:496.666667pt;}
.x102_c00498{left:500.266667pt;}
.x152_c00498{left:501.200000pt;}
.xf3_c00498{left:502.133333pt;}
.x10a_c00498{left:503.200000pt;}
.x133_c00498{left:504.133333pt;}
.x123_c00498{left:505.866667pt;}
.xde_c00498{left:507.066667pt;}
.xf4_c00498{left:508.533333pt;}
.xe5_c00498{left:510.400000pt;}
.x11b_c00498{left:512.000000pt;}
.xc4_c00498{left:513.600000pt;}
.x116_c00498{left:515.600000pt;}
.x111_c00498{left:516.933333pt;}
.xfb_c00498{left:519.200000pt;}
.xef_c00498{left:520.400000pt;}
.x117_c00498{left:522.000000pt;}
.x127_c00498{left:523.466667pt;}
.xb3_c00498{left:524.400000pt;}
.x140_c00498{left:526.133333pt;}
.x143_c00498{left:527.066667pt;}
.xe6_c00498{left:528.000000pt;}
.x14e_c00498{left:529.200000pt;}
.xbc_c00498{left:530.666667pt;}
.x112_c00498{left:532.933333pt;}
.xf5_c00498{left:534.133333pt;}
.x118_c00498{left:535.066667pt;}
.xc5_c00498{left:536.266667pt;}
.x149_c00498{left:538.000000pt;}
.xd6_c00498{left:539.866667pt;}
.x155_c00498{left:540.800000pt;}
.xb4_c00498{left:542.933333pt;}
.xbd_c00498{left:544.400000pt;}
.x103_c00498{left:546.133333pt;}
.xf6_c00498{left:547.600000pt;}
.xf0_c00498{left:549.466667pt;}
.xdf_c00498{left:551.200000pt;}
.x10c_c00498{left:552.266667pt;}
.x153_c00498{left:554.533333pt;}
.xb5_c00498{left:556.666667pt;}
.xcf_c00498{left:558.933333pt;}
.x104_c00498{left:559.866667pt;}
.x124_c00498{left:561.200000pt;}
.x119_c00498{left:562.533333pt;}
.xe7_c00498{left:565.866667pt;}
.x13c_c00498{left:568.266667pt;}
.xc6_c00498{left:569.866667pt;}
.xe8_c00498{left:572.266667pt;}
.x107_c00498{left:573.200000pt;}
.x141_c00498{left:574.133333pt;}
.xd0_c00498{left:576.266667pt;}
.x137_c00498{left:577.333333pt;}
.xe9_c00498{left:578.666667pt;}
.x128_c00498{left:580.133333pt;}
.xbe_c00498{left:582.800000pt;}
.xfc_c00498{left:583.866667pt;}
.x10d_c00498{left:584.800000pt;}
.x105_c00498{left:585.733333pt;}
.x113_c00498{left:586.933333pt;}
.xd7_c00498{left:590.133333pt;}
.xbf_c00498{left:591.733333pt;}
.xb6_c00498{left:593.733333pt;}
.x150_c00498{left:594.800000pt;}
.x146_c00498{left:596.400000pt;}
.xe0_c00498{left:598.133333pt;}
.xd1_c00498{left:599.333333pt;}
.x144_c00498{left:602.000000pt;}
.x10e_c00498{left:603.733333pt;}
.xc7_c00498{left:605.066667pt;}
.x14a_c00498{left:607.066667pt;}
.x134_c00498{left:609.333333pt;}
.xe1_c00498{left:611.600000pt;}
.x126_c00498{left:612.533333pt;}
.x139_c00498{left:613.866667pt;}
.x147_c00498{left:615.600000pt;}
.xd8_c00498{left:617.600000pt;}
.x142_c00498{left:619.466667pt;}
.x132_c00498{left:620.533333pt;}
.xea_c00498{left:622.266667pt;}
.xf7_c00498{left:623.333333pt;}
.x14f_c00498{left:624.533333pt;}
.x135_c00498{left:626.000000pt;}
.xd2_c00498{left:630.400000pt;}
.xd9_c00498{left:632.000000pt;}
.x12e_c00498{left:633.466667pt;}
.x13a_c00498{left:634.933333pt;}
.xb7_c00498{left:636.266667pt;}
.x130_c00498{left:638.666667pt;}
.xe2_c00498{left:640.133333pt;}
.xc0_c00498{left:641.333333pt;}
.x129_c00498{left:642.533333pt;}
.x14b_c00498{left:644.133333pt;}
.x10f_c00498{left:646.533333pt;}
.xeb_c00498{left:648.133333pt;}
.x12f_c00498{left:650.400000pt;}
.x148_c00498{left:651.466667pt;}
.xd3_c00498{left:655.066667pt;}
.x13d_c00498{left:657.866667pt;}
.xc8_c00498{left:659.200000pt;}
.x2_c00498{left:660.266667pt;}
.x11e_c00498{left:665.733333pt;}
.xfd_c00498{left:667.333333pt;}
.xc9_c00498{left:668.533333pt;}
.xe3_c00498{left:671.200000pt;}
.x10b_c00498{left:672.933333pt;}
.xec_c00498{left:674.000000pt;}
.xda_c00498{left:675.200000pt;}
.x14c_c00498{left:679.066667pt;}
.x13b_c00498{left:681.333333pt;}
.x12c_c00498{left:682.400000pt;}
.xfe_c00498{left:689.066667pt;}
}





/* 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_c00499 {
    display:none;
  }
  .loading-indicator_c00499.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00499 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_c00499 { 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_c00499" -> "#page-container .classname_c00499")
 */
.pf_c00499 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00499 { /* 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_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00499 { /* 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_c00499 { /* 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_c00499 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00499 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00499 {overflow:visible;}
  }
}
.c_c00499 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00499 { /* 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_c00499:after { /* webkit #35443 */
  content: '';
}
.t_c00499:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00499 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 */
}
.__c00499 { /* 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_c00499 { /* info for Javascript */
  display:none;
}
.l_c00499 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00499 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00499 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00499: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_c00499 {
    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_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00499.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_c00499 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00499{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00499;src:url('chunks/assets/font_5aec4e4ec7f04c122dcf7fe0.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.000000;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;}
.mfc_c00499{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m76_c00499{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m59_c00499{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.md0_c00499{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m35_c00499{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m75_c00499{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00499{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00499{transform:matrix(0.081500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081500,0.000000,0.000000,0.250000,0,0);}
.m55_c00499{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m54_c00499{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m99_c00499{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00499{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m79_c00499{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00499{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.meb_c00499{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m64_c00499{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md2_c00499{transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00499{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00499{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md8_c00499{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.md3_c00499{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m102_c00499{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00499{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m80_c00499{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m111_c00499{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m44_c00499{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m106_c00499{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00499{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m67_c00499{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m108_c00499{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00499{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m123_c00499{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m31_c00499{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m23_c00499{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00499{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00499{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mea_c00499{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m40_c00499{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00499{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m51_c00499{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m84_c00499{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00499{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mac_c00499{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m110_c00499{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00499{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00499{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m93_c00499{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m49_c00499{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mab_c00499{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00499{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m104_c00499{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.me9_c00499{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.md1_c00499{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00499{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m60_c00499{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m26_c00499{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00499{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m57_c00499{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00499{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m42_c00499{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00499{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00499{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m66_c00499{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m52_c00499{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00499{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00499{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3_c00499{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00499{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m85_c00499{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00499{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00499{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00499{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m91_c00499{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m74_c00499{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00499{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m95_c00499{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me0_c00499{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00499{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00499{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00499{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00499{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00499{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00499{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m87_c00499{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mda_c00499{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00499{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.maf_c00499{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00499{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m109_c00499{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00499{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m90_c00499{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00499{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00499{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00499{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00499{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00499{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m78_c00499{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m37_c00499{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00499{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00499{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mff_c00499{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00499{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m48_c00499{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m24_c00499{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m58_c00499{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m63_c00499{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m43_c00499{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00499{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00499{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00499{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00499{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.me3_c00499{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m88_c00499{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m82_c00499{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m124_c00499{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m20_c00499{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me4_c00499{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m39_c00499{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00499{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m61_c00499{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m10_c00499{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m50_c00499{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m97_c00499{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00499{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00499{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00499{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6_c00499{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m92_c00499{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m25_c00499{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00499{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00499{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m27_c00499{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00499{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9_c00499{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m96_c00499{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m125_c00499{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m11_c00499{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m114_c00499{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md_c00499{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00499{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00499{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00499{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m21_c00499{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m53_c00499{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00499{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00499{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00499{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00499{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m28_c00499{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00499{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mec_c00499{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00499{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00499{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m73_c00499{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00499{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m86_c00499{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00499{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00499{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00499{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00499{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00499{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mae_c00499{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m33_c00499{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00499{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m8_c00499{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00499{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m19_c00499{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m22_c00499{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m29_c00499{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00499{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m122_c00499{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m34_c00499{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00499{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00499{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m45_c00499{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00499{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2_c00499{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00499{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m30_c00499{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m94_c00499{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me8_c00499{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m32_c00499{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m14_c00499{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me1_c00499{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00499{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00499{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m126_c00499{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m128_c00499{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00499{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00499{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00499{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m98_c00499{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m47_c00499{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00499{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00499{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m15_c00499{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m71_c00499{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m121_c00499{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m101_c00499{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma_c00499{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m105_c00499{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.maa_c00499{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00499{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00499{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00499{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mba_c00499{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m18_c00499{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00499{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m12_c00499{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m118_c00499{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00499{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00499{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m46_c00499{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mee_c00499{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00499{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00499{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00499{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf_c00499{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00499{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc_c00499{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00499{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00499{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00499{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00499{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00499{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m70_c00499{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.me7_c00499{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7_c00499{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m72_c00499{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00499{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00499{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me5_c00499{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m113_c00499{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m38_c00499{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m127_c00499{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00499{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m36_c00499{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00499{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);}
.mef_c00499{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00499{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m100_c00499{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00499{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m119_c00499{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m56_c00499{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00499{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.me6_c00499{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mb_c00499{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00499{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mad_c00499{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00499{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00499{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m89_c00499{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mde_c00499{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00499{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00499{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00499{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5_c00499{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m112_c00499{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m81_c00499{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m117_c00499{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m69_c00499{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m83_c00499{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00499{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00499{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00499{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m13_c00499{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00499{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00499{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m129_c00499{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00499{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m17_c00499{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m107_c00499{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00499{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m115_c00499{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m41_c00499{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00499{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00499{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00499{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.med_c00499{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00499{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00499{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.md7_c00499{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m120_c00499{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00499{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mca_c00499{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m103_c00499{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.md6_c00499{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00499{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m16_c00499{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00499{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me2_c00499{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md9_c00499{transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334750,0.000000,0.000000,0.250000,0,0);}
.m0_c00499{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);}
.md5_c00499{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mce_c00499{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.md4_c00499{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.m116_c00499{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m62_c00499{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m65_c00499{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m77_c00499{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.me_c00499{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m68_c00499{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls1_c00499{letter-spacing:0.000000px;}
.ls0_c00499{letter-spacing:55.714286px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{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__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00499{word-spacing:-85.714286px;}
.ws1_c00499{word-spacing:-6.773196px;}
.ws0_c00499{word-spacing:-3.170084px;}
.ws8_c00499{word-spacing:-2.809052px;}
.wsc_c00499{word-spacing:0.000000px;}
.wsa_c00499{word-spacing:1.666667px;}
.ws4_c00499{word-spacing:22.812500px;}
.ws3_c00499{word-spacing:25.714286px;}
.ws2_c00499{word-spacing:29.285714px;}
.ws7_c00499{word-spacing:31.053435px;}
.ws6_c00499{word-spacing:34.642857px;}
.ws5_c00499{word-spacing:50.416667px;}
.ws9_c00499{word-spacing:126.000000px;}
._0_c00499{margin-left:-55.714286px;}
.fc0_c00499{color:transparent;}
.fs9_c00499{font-size:18.000000px;}
.fs7_c00499{font-size:30.000000px;}
.fs8_c00499{font-size:36.000000px;}
.fs0_c00499{font-size:42.000000px;}
.fs5_c00499{font-size:48.000000px;}
.fs4_c00499{font-size:54.000000px;}
.fs3_c00499{font-size:60.000000px;}
.fs2_c00499{font-size:66.000000px;}
.fs6_c00499{font-size:72.000000px;}
.fs1_c00499{font-size:102.000000px;}
.y0_c00499{bottom:0.000000px;}
.y76_c00499{bottom:185.250000px;}
.y38_c00499{bottom:203.100000px;}
.y75_c00499{bottom:204.000000px;}
.y74_c00499{bottom:222.300000px;}
.y37_c00499{bottom:225.300000px;}
.y73_c00499{bottom:239.550000px;}
.y36_c00499{bottom:243.000000px;}
.y72_c00499{bottom:257.550000px;}
.y35_c00499{bottom:264.000000px;}
.y71_c00499{bottom:275.250000px;}
.y34_c00499{bottom:282.000000px;}
.y70_c00499{bottom:293.250000px;}
.y33_c00499{bottom:299.700000px;}
.y6f_c00499{bottom:313.050000px;}
.y32_c00499{bottom:317.700000px;}
.y6e_c00499{bottom:328.950000px;}
.y31_c00499{bottom:335.400000px;}
.y6d_c00499{bottom:347.250000px;}
.y30_c00499{bottom:353.400000px;}
.y6c_c00499{bottom:364.500000px;}
.y2f_c00499{bottom:371.400000px;}
.y6b_c00499{bottom:382.200000px;}
.y2e_c00499{bottom:389.100000px;}
.y6a_c00499{bottom:400.200000px;}
.y2d_c00499{bottom:406.800000px;}
.y69_c00499{bottom:417.900000px;}
.y2c_c00499{bottom:424.800000px;}
.y68_c00499{bottom:435.900000px;}
.y2b_c00499{bottom:442.500000px;}
.y2a_c00499{bottom:460.500000px;}
.y67_c00499{bottom:461.100000px;}
.y66_c00499{bottom:474.900000px;}
.y29_c00499{bottom:478.500000px;}
.y65_c00499{bottom:489.150000px;}
.y28_c00499{bottom:496.200000px;}
.y64_c00499{bottom:503.550000px;}
.y27_c00499{bottom:514.200000px;}
.y63_c00499{bottom:517.950000px;}
.y62_c00499{bottom:532.050000px;}
.y26_c00499{bottom:532.200000px;}
.y61_c00499{bottom:547.950000px;}
.y25_c00499{bottom:549.900000px;}
.y60_c00499{bottom:565.950000px;}
.y24_c00499{bottom:567.900000px;}
.y5f_c00499{bottom:584.700000px;}
.y23_c00499{bottom:585.600000px;}
.y5e_c00499{bottom:593.700000px;}
.y5d_c00499{bottom:602.700000px;}
.y22_c00499{bottom:603.300000px;}
.y5c_c00499{bottom:620.250000px;}
.y21_c00499{bottom:621.300000px;}
.y5b_c00499{bottom:637.950000px;}
.y20_c00499{bottom:639.000000px;}
.y5a_c00499{bottom:656.250000px;}
.y1f_c00499{bottom:658.500000px;}
.y1e_c00499{bottom:673.200000px;}
.y59_c00499{bottom:682.050000px;}
.y1d_c00499{bottom:687.900000px;}
.y58_c00499{bottom:700.050000px;}
.y1c_c00499{bottom:703.800000px;}
.y1b_c00499{bottom:715.350000px;}
.y42_c00499{bottom:716.100000px;}
.y57_c00499{bottom:717.750000px;}
.y1a_c00499{bottom:730.800000px;}
.y56_c00499{bottom:735.450000px;}
.y19_c00499{bottom:745.500000px;}
.y55_c00499{bottom:756.750000px;}
.y18_c00499{bottom:760.650000px;}
.y17_c00499{bottom:774.000000px;}
.y54_c00499{bottom:775.500000px;}
.y16_c00499{bottom:788.400000px;}
.y41_c00499{bottom:790.500000px;}
.y40_c00499{bottom:802.050000px;}
.y3f_c00499{bottom:802.500000px;}
.y3e_c00499{bottom:802.800000px;}
.y53_c00499{bottom:810.150000px;}
.y15_c00499{bottom:816.900000px;}
.y52_c00499{bottom:828.450000px;}
.y14_c00499{bottom:831.300000px;}
.y3d_c00499{bottom:832.650000px;}
.y13_c00499{bottom:845.700000px;}
.y51_c00499{bottom:846.750000px;}
.y3b_c00499{bottom:847.050000px;}
.y12_c00499{bottom:860.400000px;}
.y3a_c00499{bottom:861.150000px;}
.y50_c00499{bottom:868.200000px;}
.y11_c00499{bottom:874.050000px;}
.y4f_c00499{bottom:886.200000px;}
.y10_c00499{bottom:888.450000px;}
.y39_c00499{bottom:899.250000px;}
.yf_c00499{bottom:902.850000px;}
.y4e_c00499{bottom:904.200000px;}
.y3c_c00499{bottom:916.950000px;}
.ye_c00499{bottom:917.400000px;}
.y4d_c00499{bottom:921.900000px;}
.yd_c00499{bottom:932.100000px;}
.y4c_c00499{bottom:939.600000px;}
.yc_c00499{bottom:946.500000px;}
.y4b_c00499{bottom:957.600000px;}
.yb_c00499{bottom:961.950000px;}
.ya_c00499{bottom:980.550000px;}
.y4a_c00499{bottom:983.400000px;}
.y9_c00499{bottom:998.250000px;}
.y49_c00499{bottom:1002.150000px;}
.y8_c00499{bottom:1015.950000px;}
.y48_c00499{bottom:1019.850000px;}
.y7_c00499{bottom:1033.650000px;}
.y47_c00499{bottom:1037.850000px;}
.y6_c00499{bottom:1051.650000px;}
.y46_c00499{bottom:1055.850000px;}
.y5_c00499{bottom:1069.950000px;}
.y45_c00499{bottom:1073.550000px;}
.y4_c00499{bottom:1090.800000px;}
.y44_c00499{bottom:1091.550000px;}
.y3_c00499{bottom:1109.550000px;}
.y2_c00499{bottom:1126.500000px;}
.y43_c00499{bottom:1126.800000px;}
.y1_c00499{bottom:1152.300000px;}
.hb_c00499{height:18.000000px;}
.h9_c00499{height:30.000000px;}
.ha_c00499{height:36.000000px;}
.h2_c00499{height:42.000000px;}
.h7_c00499{height:48.000000px;}
.h6_c00499{height:54.000000px;}
.h5_c00499{height:60.000000px;}
.h4_c00499{height:66.000000px;}
.h8_c00499{height:72.000000px;}
.h3_c00499{height:102.000000px;}
.h0_c00499{height:1280.879975px;}
.h1_c00499{height:1281.000000px;}
.w0_c00499{width:958.320007px;}
.w1_c00499{width:958.500000px;}
.x0_c00499{left:0.000000px;}
.x16_c00499{left:191.100000px;}
.x1_c00499{left:192.900000px;}
.xa7_c00499{left:194.700000px;}
.x49_c00499{left:204.450000px;}
.x3f_c00499{left:206.700000px;}
.x3_c00499{left:207.750000px;}
.x2b_c00499{left:208.800000px;}
.xa_c00499{left:210.300000px;}
.x77_c00499{left:211.800000px;}
.x96_c00499{left:212.850000px;}
.x4b_c00499{left:221.100000px;}
.x5d_c00499{left:222.150000px;}
.x34_c00499{left:225.750000px;}
.x78_c00499{left:228.000000px;}
.x44_c00499{left:230.400000px;}
.x9e_c00499{left:235.050000px;}
.x17_c00499{left:236.400000px;}
.x45_c00499{left:237.600000px;}
.x80_c00499{left:238.950000px;}
.x64_c00499{left:240.150000px;}
.x51_c00499{left:243.150000px;}
.x5e_c00499{left:244.500000px;}
.x20_c00499{left:245.700000px;}
.x40_c00499{left:247.050000px;}
.x72_c00499{left:251.250000px;}
.xb_c00499{left:254.550000px;}
.x83_c00499{left:258.000000px;}
.x38_c00499{left:259.650000px;}
.x8a_c00499{left:262.350000px;}
.x4_c00499{left:263.550000px;}
.x73_c00499{left:264.600000px;}
.x1b_c00499{left:266.550000px;}
.x21_c00499{left:269.100000px;}
.x39_c00499{left:271.500000px;}
.x94_c00499{left:273.000000px;}
.x4c_c00499{left:275.100000px;}
.x4a_c00499{left:276.450000px;}
.x5f_c00499{left:278.400000px;}
.x2c_c00499{left:279.750000px;}
.x46_c00499{left:281.850000px;}
.x59_c00499{left:284.400000px;}
.x12_c00499{left:285.450000px;}
.x93_c00499{left:288.600000px;}
.x79_c00499{left:293.850000px;}
.x5_c00499{left:294.900000px;}
.x84_c00499{left:296.100000px;}
.x26_c00499{left:297.450000px;}
.x88_c00499{left:299.100000px;}
.x18_c00499{left:300.450000px;}
.x5a_c00499{left:302.400000px;}
.x9f_c00499{left:303.900000px;}
.x7e_c00499{left:304.950000px;}
.x65_c00499{left:306.150000px;}
.x13_c00499{left:307.800000px;}
.x41_c00499{left:309.600000px;}
.x8b_c00499{left:310.650000px;}
.xc_c00499{left:311.850000px;}
.x60_c00499{left:313.350000px;}
.x22_c00499{left:314.850000px;}
.x5b_c00499{left:316.500000px;}
.x7c_c00499{left:319.350000px;}
.x62_c00499{left:321.600000px;}
.x4d_c00499{left:325.500000px;}
.x6_c00499{left:326.550000px;}
.x3a_c00499{left:328.350000px;}
.x69_c00499{left:330.150000px;}
.x47_c00499{left:331.500000px;}
.x66_c00499{left:332.850000px;}
.x7b_c00499{left:334.800000px;}
.x63_c00499{left:336.000000px;}
.x86_c00499{left:337.050000px;}
.x1c_c00499{left:338.550000px;}
.x2d_c00499{left:339.750000px;}
.xd_c00499{left:341.700000px;}
.x14_c00499{left:343.050000px;}
.x4e_c00499{left:344.250000px;}
.xa3_c00499{left:346.200000px;}
.x7_c00499{left:348.150000px;}
.x19_c00499{left:350.100000px;}
.x2e_c00499{left:351.300000px;}
.x35_c00499{left:353.250000px;}
.x5c_c00499{left:354.600000px;}
.x9a_c00499{left:355.950000px;}
.x97_c00499{left:359.700000px;}
.x90_c00499{left:361.950000px;}
.x27_c00499{left:363.000000px;}
.xa0_c00499{left:364.050000px;}
.x52_c00499{left:365.250000px;}
.x15_c00499{left:366.750000px;}
.x6e_c00499{left:369.450000px;}
.x9c_c00499{left:371.100000px;}
.x53_c00499{left:372.150000px;}
.x6a_c00499{left:374.400000px;}
.x61_c00499{left:376.050000px;}
.x67_c00499{left:378.600000px;}
.x54_c00499{left:379.650000px;}
.x28_c00499{left:381.300000px;}
.x68_c00499{left:382.500000px;}
.x42_c00499{left:384.150000px;}
.xa1_c00499{left:385.650000px;}
.x55_c00499{left:386.850000px;}
.x2f_c00499{left:389.100000px;}
.x1d_c00499{left:390.450000px;}
.xa4_c00499{left:391.500000px;}
.x4f_c00499{left:392.850000px;}
.x56_c00499{left:394.350000px;}
.x3b_c00499{left:396.000000px;}
.x36_c00499{left:397.950000px;}
.x48_c00499{left:399.600000px;}
.x57_c00499{left:401.550000px;}
.x74_c00499{left:404.400000px;}
.xe_c00499{left:405.750000px;}
.x30_c00499{left:407.100000px;}
.x23_c00499{left:409.950000px;}
.x3c_c00499{left:411.900000px;}
.x6f_c00499{left:412.950000px;}
.x50_c00499{left:414.450000px;}
.x58_c00499{left:416.700000px;}
.xa5_c00499{left:418.800000px;}
.x29_c00499{left:421.200000px;}
.x1e_c00499{left:422.850000px;}
.x8c_c00499{left:424.050000px;}
.x9d_c00499{left:425.100000px;}
.x8_c00499{left:426.300000px;}
.xf_c00499{left:429.450000px;}
.x43_c00499{left:431.700000px;}
.x85_c00499{left:434.400000px;}
.x2_c00499{left:435.600000px;}
.x24_c00499{left:438.750000px;}
.x99_c00499{left:441.750000px;}
.x1a_c00499{left:444.000000px;}
.x3d_c00499{left:447.150000px;}
.xa6_c00499{left:448.350000px;}
.xa8_c00499{left:449.700000px;}
.x10_c00499{left:451.350000px;}
.x7f_c00499{left:453.600000px;}
.x31_c00499{left:455.400000px;}
.x6b_c00499{left:456.600000px;}
.x1f_c00499{left:457.800000px;}
.xab_c00499{left:459.300000px;}
.x75_c00499{left:462.300000px;}
.x95_c00499{left:464.550000px;}
.x32_c00499{left:465.900000px;}
.xa9_c00499{left:466.950000px;}
.x7d_c00499{left:469.500000px;}
.x98_c00499{left:471.300000px;}
.x81_c00499{left:472.950000px;}
.x7a_c00499{left:474.900000px;}
.x70_c00499{left:477.150000px;}
.x9_c00499{left:478.500000px;}
.x8d_c00499{left:481.350000px;}
.x76_c00499{left:482.400000px;}
.x91_c00499{left:484.650000px;}
.x6c_c00499{left:485.700000px;}
.x71_c00499{left:487.050000px;}
.x2a_c00499{left:488.550000px;}
.x87_c00499{left:489.900000px;}
.x33_c00499{left:491.100000px;}
.x37_c00499{left:492.600000px;}
.x82_c00499{left:494.550000px;}
.x89_c00499{left:496.050000px;}
.x11_c00499{left:499.200000px;}
.xa2_c00499{left:502.350000px;}
.x92_c00499{left:503.400000px;}
.x8f_c00499{left:506.400000px;}
.x25_c00499{left:508.200000px;}
.x8e_c00499{left:509.850000px;}
.x3e_c00499{left:511.950000px;}
.x9b_c00499{left:513.600000px;}
.x6d_c00499{left:515.550000px;}
.xaa_c00499{left:517.800000px;}
.xde_c00499{left:549.300000px;}
.xf8_c00499{left:565.950000px;}
.xac_c00499{left:567.300000px;}
.x145_c00499{left:568.500000px;}
.x127_c00499{left:577.350000px;}
.xc2_c00499{left:582.750000px;}
.x108_c00499{left:583.950000px;}
.xfe_c00499{left:585.000000px;}
.x102_c00499{left:587.700000px;}
.xf4_c00499{left:589.800000px;}
.xb9_c00499{left:592.650000px;}
.x105_c00499{left:594.750000px;}
.xee_c00499{left:597.450000px;}
.x12d_c00499{left:599.100000px;}
.x11a_c00499{left:600.900000px;}
.xb3_c00499{left:602.550000px;}
.x11e_c00499{left:604.200000px;}
.x111_c00499{left:605.550000px;}
.x117_c00499{left:607.650000px;}
.xc3_c00499{left:609.000000px;}
.x14c_c00499{left:610.200000px;}
.x144_c00499{left:611.250000px;}
.x103_c00499{left:613.650000px;}
.xdb_c00499{left:615.000000px;}
.x137_c00499{left:617.100000px;}
.xe7_c00499{left:618.750000px;}
.xce_c00499{left:620.850000px;}
.x10b_c00499{left:622.050000px;}
.x109_c00499{left:623.850000px;}
.x131_c00499{left:625.350000px;}
.xff_c00499{left:627.450000px;}
.xe3_c00499{left:628.950000px;}
.xdd_c00499{left:630.900000px;}
.xba_c00499{left:633.300000px;}
.x106_c00499{left:635.850000px;}
.x11f_c00499{left:636.900000px;}
.xad_c00499{left:639.300000px;}
.x112_c00499{left:641.550000px;}
.xbb_c00499{left:642.600000px;}
.xe8_c00499{left:644.700000px;}
.xef_c00499{left:646.800000px;}
.xc9_c00499{left:648.000000px;}
.xd3_c00499{left:649.500000px;}
.xb4_c00499{left:654.000000px;}
.xf9_c00499{left:655.200000px;}
.x121_c00499{left:658.350000px;}
.xdf_c00499{left:659.550000px;}
.xae_c00499{left:663.000000px;}
.xbc_c00499{left:664.200000px;}
.xf0_c00499{left:666.300000px;}
.x141_c00499{left:667.950000px;}
.x14b_c00499{left:669.900000px;}
.xd4_c00499{left:671.400000px;}
.x12e_c00499{left:672.450000px;}
.xb5_c00499{left:674.100000px;}
.x13a_c00499{left:675.450000px;}
.xc4_c00499{left:677.700000px;}
.xe4_c00499{left:680.400000px;}
.x132_c00499{left:681.450000px;}
.x10c_c00499{left:682.500000px;}
.x146_c00499{left:684.450000px;}
.x113_c00499{left:685.500000px;}
.x134_c00499{left:688.650000px;}
.xdc_c00499{left:690.750000px;}
.x11b_c00499{left:692.400000px;}
.xcf_c00499{left:693.600000px;}
.x129_c00499{left:696.150000px;}
.x140_c00499{left:698.100000px;}
.x133_c00499{left:699.750000px;}
.xe0_c00499{left:701.700000px;}
.xd5_c00499{left:703.500000px;}
.x115_c00499{left:704.850000px;}
.x10a_c00499{left:706.350000px;}
.x125_c00499{left:708.150000px;}
.xbd_c00499{left:709.200000px;}
.x118_c00499{left:711.150000px;}
.x12f_c00499{left:713.250000px;}
.xe9_c00499{left:714.600000px;}
.xc5_c00499{left:716.250000px;}
.x122_c00499{left:717.450000px;}
.xaf_c00499{left:720.300000px;}
.xb6_c00499{left:723.000000px;}
.x107_c00499{left:724.350000px;}
.xea_c00499{left:725.400000px;}
.xfa_c00499{left:727.200000px;}
.xca_c00499{left:729.300000px;}
.x12a_c00499{left:731.400000px;}
.xb7_c00499{left:733.800000px;}
.xbe_c00499{left:735.150000px;}
.xf1_c00499{left:736.800000px;}
.x126_c00499{left:740.250000px;}
.xc6_c00499{left:742.200000px;}
.xd0_c00499{left:745.500000px;}
.x104_c00499{left:746.850000px;}
.xe1_c00499{left:747.900000px;}
.xf5_c00499{left:749.250000px;}
.x10e_c00499{left:750.600000px;}
.x123_c00499{left:753.150000px;}
.xfb_c00499{left:755.700000px;}
.xf2_c00499{left:756.900000px;}
.x143_c00499{left:757.950000px;}
.x142_c00499{left:759.000000px;}
.x13b_c00499{left:761.400000px;}
.xd6_c00499{left:765.450000px;}
.x114_c00499{left:766.800000px;}
.xf6_c00499{left:768.000000px;}
.x130_c00499{left:772.650000px;}
.xb0_c00499{left:774.000000px;}
.x100_c00499{left:775.950000px;}
.x135_c00499{left:777.600000px;}
.x13e_c00499{left:781.950000px;}
.xbf_c00499{left:784.050000px;}
.x12b_c00499{left:786.150000px;}
.xd7_c00499{left:787.350000px;}
.x10f_c00499{left:788.400000px;}
.xe2_c00499{left:790.350000px;}
.xeb_c00499{left:793.050000px;}
.x136_c00499{left:795.600000px;}
.xfc_c00499{left:797.400000px;}
.x149_c00499{left:799.050000px;}
.xb1_c00499{left:800.250000px;}
.xcb_c00499{left:801.600000px;}
.xc7_c00499{left:804.150000px;}
.xd1_c00499{left:805.650000px;}
.x11c_c00499{left:809.400000px;}
.x120_c00499{left:811.050000px;}
.xec_c00499{left:813.150000px;}
.x128_c00499{left:814.200000px;}
.xd8_c00499{left:818.700000px;}
.xfd_c00499{left:820.500000px;}
.x147_c00499{left:822.750000px;}
.xcc_c00499{left:825.000000px;}
.x138_c00499{left:827.400000px;}
.xc8_c00499{left:828.600000px;}
.xe5_c00499{left:831.150000px;}
.xd9_c00499{left:832.350000px;}
.xd2_c00499{left:834.150000px;}
.xc0_c00499{left:835.950000px;}
.x110_c00499{left:837.000000px;}
.x11d_c00499{left:838.950000px;}
.xb8_c00499{left:841.500000px;}
.x124_c00499{left:842.700000px;}
.xf7_c00499{left:845.700000px;}
.x13c_c00499{left:847.050000px;}
.x116_c00499{left:848.550000px;}
.xed_c00499{left:850.200000px;}
.x14a_c00499{left:854.550000px;}
.xe6_c00499{left:855.600000px;}
.xc1_c00499{left:857.850000px;}
.x13f_c00499{left:859.050000px;}
.x13d_c00499{left:860.100000px;}
.x139_c00499{left:861.900000px;}
.xb2_c00499{left:863.550000px;}
.x14d_c00499{left:865.950000px;}
.xf3_c00499{left:868.050000px;}
.x119_c00499{left:869.550000px;}
.xda_c00499{left:870.900000px;}
.x12c_c00499{left:873.600000px;}
.x101_c00499{left:874.950000px;}
.x148_c00499{left:878.100000px;}
.xcd_c00499{left:879.300000px;}
.x10d_c00499{left:881.550000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls1_c00499{letter-spacing:0.000000pt;}
.ls0_c00499{letter-spacing:49.523810pt;}
.wsb_c00499{word-spacing:-76.190476pt;}
.ws1_c00499{word-spacing:-6.020619pt;}
.ws0_c00499{word-spacing:-2.817853pt;}
.ws8_c00499{word-spacing:-2.496935pt;}
.wsc_c00499{word-spacing:0.000000pt;}
.wsa_c00499{word-spacing:1.481481pt;}
.ws4_c00499{word-spacing:20.277778pt;}
.ws3_c00499{word-spacing:22.857143pt;}
.ws2_c00499{word-spacing:26.031746pt;}
.ws7_c00499{word-spacing:27.603053pt;}
.ws6_c00499{word-spacing:30.793651pt;}
.ws5_c00499{word-spacing:44.814815pt;}
.ws9_c00499{word-spacing:112.000000pt;}
._0_c00499{margin-left:-49.523810pt;}
.fs9_c00499{font-size:16.000000pt;}
.fs7_c00499{font-size:26.666667pt;}
.fs8_c00499{font-size:32.000000pt;}
.fs0_c00499{font-size:37.333333pt;}
.fs5_c00499{font-size:42.666667pt;}
.fs4_c00499{font-size:48.000000pt;}
.fs3_c00499{font-size:53.333333pt;}
.fs2_c00499{font-size:58.666667pt;}
.fs6_c00499{font-size:64.000000pt;}
.fs1_c00499{font-size:90.666667pt;}
.y0_c00499{bottom:0.000000pt;}
.y76_c00499{bottom:164.666667pt;}
.y38_c00499{bottom:180.533333pt;}
.y75_c00499{bottom:181.333333pt;}
.y74_c00499{bottom:197.600000pt;}
.y37_c00499{bottom:200.266667pt;}
.y73_c00499{bottom:212.933333pt;}
.y36_c00499{bottom:216.000000pt;}
.y72_c00499{bottom:228.933333pt;}
.y35_c00499{bottom:234.666667pt;}
.y71_c00499{bottom:244.666667pt;}
.y34_c00499{bottom:250.666667pt;}
.y70_c00499{bottom:260.666667pt;}
.y33_c00499{bottom:266.400000pt;}
.y6f_c00499{bottom:278.266667pt;}
.y32_c00499{bottom:282.400000pt;}
.y6e_c00499{bottom:292.400000pt;}
.y31_c00499{bottom:298.133333pt;}
.y6d_c00499{bottom:308.666667pt;}
.y30_c00499{bottom:314.133333pt;}
.y6c_c00499{bottom:324.000000pt;}
.y2f_c00499{bottom:330.133333pt;}
.y6b_c00499{bottom:339.733333pt;}
.y2e_c00499{bottom:345.866667pt;}
.y6a_c00499{bottom:355.733333pt;}
.y2d_c00499{bottom:361.600000pt;}
.y69_c00499{bottom:371.466667pt;}
.y2c_c00499{bottom:377.600000pt;}
.y68_c00499{bottom:387.466667pt;}
.y2b_c00499{bottom:393.333333pt;}
.y2a_c00499{bottom:409.333333pt;}
.y67_c00499{bottom:409.866667pt;}
.y66_c00499{bottom:422.133333pt;}
.y29_c00499{bottom:425.333333pt;}
.y65_c00499{bottom:434.800000pt;}
.y28_c00499{bottom:441.066667pt;}
.y64_c00499{bottom:447.600000pt;}
.y27_c00499{bottom:457.066667pt;}
.y63_c00499{bottom:460.400000pt;}
.y62_c00499{bottom:472.933333pt;}
.y26_c00499{bottom:473.066667pt;}
.y61_c00499{bottom:487.066667pt;}
.y25_c00499{bottom:488.800000pt;}
.y60_c00499{bottom:503.066667pt;}
.y24_c00499{bottom:504.800000pt;}
.y5f_c00499{bottom:519.733333pt;}
.y23_c00499{bottom:520.533333pt;}
.y5e_c00499{bottom:527.733333pt;}
.y5d_c00499{bottom:535.733333pt;}
.y22_c00499{bottom:536.266667pt;}
.y5c_c00499{bottom:551.333333pt;}
.y21_c00499{bottom:552.266667pt;}
.y5b_c00499{bottom:567.066667pt;}
.y20_c00499{bottom:568.000000pt;}
.y5a_c00499{bottom:583.333333pt;}
.y1f_c00499{bottom:585.333333pt;}
.y1e_c00499{bottom:598.400000pt;}
.y59_c00499{bottom:606.266667pt;}
.y1d_c00499{bottom:611.466667pt;}
.y58_c00499{bottom:622.266667pt;}
.y1c_c00499{bottom:625.600000pt;}
.y1b_c00499{bottom:635.866667pt;}
.y42_c00499{bottom:636.533333pt;}
.y57_c00499{bottom:638.000000pt;}
.y1a_c00499{bottom:649.600000pt;}
.y56_c00499{bottom:653.733333pt;}
.y19_c00499{bottom:662.666667pt;}
.y55_c00499{bottom:672.666667pt;}
.y18_c00499{bottom:676.133333pt;}
.y17_c00499{bottom:688.000000pt;}
.y54_c00499{bottom:689.333333pt;}
.y16_c00499{bottom:700.800000pt;}
.y41_c00499{bottom:702.666667pt;}
.y40_c00499{bottom:712.933333pt;}
.y3f_c00499{bottom:713.333333pt;}
.y3e_c00499{bottom:713.600000pt;}
.y53_c00499{bottom:720.133333pt;}
.y15_c00499{bottom:726.133333pt;}
.y52_c00499{bottom:736.400000pt;}
.y14_c00499{bottom:738.933333pt;}
.y3d_c00499{bottom:740.133333pt;}
.y13_c00499{bottom:751.733333pt;}
.y51_c00499{bottom:752.666667pt;}
.y3b_c00499{bottom:752.933333pt;}
.y12_c00499{bottom:764.800000pt;}
.y3a_c00499{bottom:765.466667pt;}
.y50_c00499{bottom:771.733333pt;}
.y11_c00499{bottom:776.933333pt;}
.y4f_c00499{bottom:787.733333pt;}
.y10_c00499{bottom:789.733333pt;}
.y39_c00499{bottom:799.333333pt;}
.yf_c00499{bottom:802.533333pt;}
.y4e_c00499{bottom:803.733333pt;}
.y3c_c00499{bottom:815.066667pt;}
.ye_c00499{bottom:815.466667pt;}
.y4d_c00499{bottom:819.466667pt;}
.yd_c00499{bottom:828.533333pt;}
.y4c_c00499{bottom:835.200000pt;}
.yc_c00499{bottom:841.333333pt;}
.y4b_c00499{bottom:851.200000pt;}
.yb_c00499{bottom:855.066667pt;}
.ya_c00499{bottom:871.600000pt;}
.y4a_c00499{bottom:874.133333pt;}
.y9_c00499{bottom:887.333333pt;}
.y49_c00499{bottom:890.800000pt;}
.y8_c00499{bottom:903.066667pt;}
.y48_c00499{bottom:906.533333pt;}
.y7_c00499{bottom:918.800000pt;}
.y47_c00499{bottom:922.533333pt;}
.y6_c00499{bottom:934.800000pt;}
.y46_c00499{bottom:938.533333pt;}
.y5_c00499{bottom:951.066667pt;}
.y45_c00499{bottom:954.266667pt;}
.y4_c00499{bottom:969.600000pt;}
.y44_c00499{bottom:970.266667pt;}
.y3_c00499{bottom:986.266667pt;}
.y2_c00499{bottom:1001.333333pt;}
.y43_c00499{bottom:1001.600000pt;}
.y1_c00499{bottom:1024.266667pt;}
.hb_c00499{height:16.000000pt;}
.h9_c00499{height:26.666667pt;}
.ha_c00499{height:32.000000pt;}
.h2_c00499{height:37.333333pt;}
.h7_c00499{height:42.666667pt;}
.h6_c00499{height:48.000000pt;}
.h5_c00499{height:53.333333pt;}
.h4_c00499{height:58.666667pt;}
.h8_c00499{height:64.000000pt;}
.h3_c00499{height:90.666667pt;}
.h0_c00499{height:1138.559977pt;}
.h1_c00499{height:1138.666667pt;}
.w0_c00499{width:851.840007pt;}
.w1_c00499{width:852.000000pt;}
.x0_c00499{left:0.000000pt;}
.x16_c00499{left:169.866667pt;}
.x1_c00499{left:171.466667pt;}
.xa7_c00499{left:173.066667pt;}
.x49_c00499{left:181.733333pt;}
.x3f_c00499{left:183.733333pt;}
.x3_c00499{left:184.666667pt;}
.x2b_c00499{left:185.600000pt;}
.xa_c00499{left:186.933333pt;}
.x77_c00499{left:188.266667pt;}
.x96_c00499{left:189.200000pt;}
.x4b_c00499{left:196.533333pt;}
.x5d_c00499{left:197.466667pt;}
.x34_c00499{left:200.666667pt;}
.x78_c00499{left:202.666667pt;}
.x44_c00499{left:204.800000pt;}
.x9e_c00499{left:208.933333pt;}
.x17_c00499{left:210.133333pt;}
.x45_c00499{left:211.200000pt;}
.x80_c00499{left:212.400000pt;}
.x64_c00499{left:213.466667pt;}
.x51_c00499{left:216.133333pt;}
.x5e_c00499{left:217.333333pt;}
.x20_c00499{left:218.400000pt;}
.x40_c00499{left:219.600000pt;}
.x72_c00499{left:223.333333pt;}
.xb_c00499{left:226.266667pt;}
.x83_c00499{left:229.333333pt;}
.x38_c00499{left:230.800000pt;}
.x8a_c00499{left:233.200000pt;}
.x4_c00499{left:234.266667pt;}
.x73_c00499{left:235.200000pt;}
.x1b_c00499{left:236.933333pt;}
.x21_c00499{left:239.200000pt;}
.x39_c00499{left:241.333333pt;}
.x94_c00499{left:242.666667pt;}
.x4c_c00499{left:244.533333pt;}
.x4a_c00499{left:245.733333pt;}
.x5f_c00499{left:247.466667pt;}
.x2c_c00499{left:248.666667pt;}
.x46_c00499{left:250.533333pt;}
.x59_c00499{left:252.800000pt;}
.x12_c00499{left:253.733333pt;}
.x93_c00499{left:256.533333pt;}
.x79_c00499{left:261.200000pt;}
.x5_c00499{left:262.133333pt;}
.x84_c00499{left:263.200000pt;}
.x26_c00499{left:264.400000pt;}
.x88_c00499{left:265.866667pt;}
.x18_c00499{left:267.066667pt;}
.x5a_c00499{left:268.800000pt;}
.x9f_c00499{left:270.133333pt;}
.x7e_c00499{left:271.066667pt;}
.x65_c00499{left:272.133333pt;}
.x13_c00499{left:273.600000pt;}
.x41_c00499{left:275.200000pt;}
.x8b_c00499{left:276.133333pt;}
.xc_c00499{left:277.200000pt;}
.x60_c00499{left:278.533333pt;}
.x22_c00499{left:279.866667pt;}
.x5b_c00499{left:281.333333pt;}
.x7c_c00499{left:283.866667pt;}
.x62_c00499{left:285.866667pt;}
.x4d_c00499{left:289.333333pt;}
.x6_c00499{left:290.266667pt;}
.x3a_c00499{left:291.866667pt;}
.x69_c00499{left:293.466667pt;}
.x47_c00499{left:294.666667pt;}
.x66_c00499{left:295.866667pt;}
.x7b_c00499{left:297.600000pt;}
.x63_c00499{left:298.666667pt;}
.x86_c00499{left:299.600000pt;}
.x1c_c00499{left:300.933333pt;}
.x2d_c00499{left:302.000000pt;}
.xd_c00499{left:303.733333pt;}
.x14_c00499{left:304.933333pt;}
.x4e_c00499{left:306.000000pt;}
.xa3_c00499{left:307.733333pt;}
.x7_c00499{left:309.466667pt;}
.x19_c00499{left:311.200000pt;}
.x2e_c00499{left:312.266667pt;}
.x35_c00499{left:314.000000pt;}
.x5c_c00499{left:315.200000pt;}
.x9a_c00499{left:316.400000pt;}
.x97_c00499{left:319.733333pt;}
.x90_c00499{left:321.733333pt;}
.x27_c00499{left:322.666667pt;}
.xa0_c00499{left:323.600000pt;}
.x52_c00499{left:324.666667pt;}
.x15_c00499{left:326.000000pt;}
.x6e_c00499{left:328.400000pt;}
.x9c_c00499{left:329.866667pt;}
.x53_c00499{left:330.800000pt;}
.x6a_c00499{left:332.800000pt;}
.x61_c00499{left:334.266667pt;}
.x67_c00499{left:336.533333pt;}
.x54_c00499{left:337.466667pt;}
.x28_c00499{left:338.933333pt;}
.x68_c00499{left:340.000000pt;}
.x42_c00499{left:341.466667pt;}
.xa1_c00499{left:342.800000pt;}
.x55_c00499{left:343.866667pt;}
.x2f_c00499{left:345.866667pt;}
.x1d_c00499{left:347.066667pt;}
.xa4_c00499{left:348.000000pt;}
.x4f_c00499{left:349.200000pt;}
.x56_c00499{left:350.533333pt;}
.x3b_c00499{left:352.000000pt;}
.x36_c00499{left:353.733333pt;}
.x48_c00499{left:355.200000pt;}
.x57_c00499{left:356.933333pt;}
.x74_c00499{left:359.466667pt;}
.xe_c00499{left:360.666667pt;}
.x30_c00499{left:361.866667pt;}
.x23_c00499{left:364.400000pt;}
.x3c_c00499{left:366.133333pt;}
.x6f_c00499{left:367.066667pt;}
.x50_c00499{left:368.400000pt;}
.x58_c00499{left:370.400000pt;}
.xa5_c00499{left:372.266667pt;}
.x29_c00499{left:374.400000pt;}
.x1e_c00499{left:375.866667pt;}
.x8c_c00499{left:376.933333pt;}
.x9d_c00499{left:377.866667pt;}
.x8_c00499{left:378.933333pt;}
.xf_c00499{left:381.733333pt;}
.x43_c00499{left:383.733333pt;}
.x85_c00499{left:386.133333pt;}
.x2_c00499{left:387.200000pt;}
.x24_c00499{left:390.000000pt;}
.x99_c00499{left:392.666667pt;}
.x1a_c00499{left:394.666667pt;}
.x3d_c00499{left:397.466667pt;}
.xa6_c00499{left:398.533333pt;}
.xa8_c00499{left:399.733333pt;}
.x10_c00499{left:401.200000pt;}
.x7f_c00499{left:403.200000pt;}
.x31_c00499{left:404.800000pt;}
.x6b_c00499{left:405.866667pt;}
.x1f_c00499{left:406.933333pt;}
.xab_c00499{left:408.266667pt;}
.x75_c00499{left:410.933333pt;}
.x95_c00499{left:412.933333pt;}
.x32_c00499{left:414.133333pt;}
.xa9_c00499{left:415.066667pt;}
.x7d_c00499{left:417.333333pt;}
.x98_c00499{left:418.933333pt;}
.x81_c00499{left:420.400000pt;}
.x7a_c00499{left:422.133333pt;}
.x70_c00499{left:424.133333pt;}
.x9_c00499{left:425.333333pt;}
.x8d_c00499{left:427.866667pt;}
.x76_c00499{left:428.800000pt;}
.x91_c00499{left:430.800000pt;}
.x6c_c00499{left:431.733333pt;}
.x71_c00499{left:432.933333pt;}
.x2a_c00499{left:434.266667pt;}
.x87_c00499{left:435.466667pt;}
.x33_c00499{left:436.533333pt;}
.x37_c00499{left:437.866667pt;}
.x82_c00499{left:439.600000pt;}
.x89_c00499{left:440.933333pt;}
.x11_c00499{left:443.733333pt;}
.xa2_c00499{left:446.533333pt;}
.x92_c00499{left:447.466667pt;}
.x8f_c00499{left:450.133333pt;}
.x25_c00499{left:451.733333pt;}
.x8e_c00499{left:453.200000pt;}
.x3e_c00499{left:455.066667pt;}
.x9b_c00499{left:456.533333pt;}
.x6d_c00499{left:458.266667pt;}
.xaa_c00499{left:460.266667pt;}
.xde_c00499{left:488.266667pt;}
.xf8_c00499{left:503.066667pt;}
.xac_c00499{left:504.266667pt;}
.x145_c00499{left:505.333333pt;}
.x127_c00499{left:513.200000pt;}
.xc2_c00499{left:518.000000pt;}
.x108_c00499{left:519.066667pt;}
.xfe_c00499{left:520.000000pt;}
.x102_c00499{left:522.400000pt;}
.xf4_c00499{left:524.266667pt;}
.xb9_c00499{left:526.800000pt;}
.x105_c00499{left:528.666667pt;}
.xee_c00499{left:531.066667pt;}
.x12d_c00499{left:532.533333pt;}
.x11a_c00499{left:534.133333pt;}
.xb3_c00499{left:535.600000pt;}
.x11e_c00499{left:537.066667pt;}
.x111_c00499{left:538.266667pt;}
.x117_c00499{left:540.133333pt;}
.xc3_c00499{left:541.333333pt;}
.x14c_c00499{left:542.400000pt;}
.x144_c00499{left:543.333333pt;}
.x103_c00499{left:545.466667pt;}
.xdb_c00499{left:546.666667pt;}
.x137_c00499{left:548.533333pt;}
.xe7_c00499{left:550.000000pt;}
.xce_c00499{left:551.866667pt;}
.x10b_c00499{left:552.933333pt;}
.x109_c00499{left:554.533333pt;}
.x131_c00499{left:555.866667pt;}
.xff_c00499{left:557.733333pt;}
.xe3_c00499{left:559.066667pt;}
.xdd_c00499{left:560.800000pt;}
.xba_c00499{left:562.933333pt;}
.x106_c00499{left:565.200000pt;}
.x11f_c00499{left:566.133333pt;}
.xad_c00499{left:568.266667pt;}
.x112_c00499{left:570.266667pt;}
.xbb_c00499{left:571.200000pt;}
.xe8_c00499{left:573.066667pt;}
.xef_c00499{left:574.933333pt;}
.xc9_c00499{left:576.000000pt;}
.xd3_c00499{left:577.333333pt;}
.xb4_c00499{left:581.333333pt;}
.xf9_c00499{left:582.400000pt;}
.x121_c00499{left:585.200000pt;}
.xdf_c00499{left:586.266667pt;}
.xae_c00499{left:589.333333pt;}
.xbc_c00499{left:590.400000pt;}
.xf0_c00499{left:592.266667pt;}
.x141_c00499{left:593.733333pt;}
.x14b_c00499{left:595.466667pt;}
.xd4_c00499{left:596.800000pt;}
.x12e_c00499{left:597.733333pt;}
.xb5_c00499{left:599.200000pt;}
.x13a_c00499{left:600.400000pt;}
.xc4_c00499{left:602.400000pt;}
.xe4_c00499{left:604.800000pt;}
.x132_c00499{left:605.733333pt;}
.x10c_c00499{left:606.666667pt;}
.x146_c00499{left:608.400000pt;}
.x113_c00499{left:609.333333pt;}
.x134_c00499{left:612.133333pt;}
.xdc_c00499{left:614.000000pt;}
.x11b_c00499{left:615.466667pt;}
.xcf_c00499{left:616.533333pt;}
.x129_c00499{left:618.800000pt;}
.x140_c00499{left:620.533333pt;}
.x133_c00499{left:622.000000pt;}
.xe0_c00499{left:623.733333pt;}
.xd5_c00499{left:625.333333pt;}
.x115_c00499{left:626.533333pt;}
.x10a_c00499{left:627.866667pt;}
.x125_c00499{left:629.466667pt;}
.xbd_c00499{left:630.400000pt;}
.x118_c00499{left:632.133333pt;}
.x12f_c00499{left:634.000000pt;}
.xe9_c00499{left:635.200000pt;}
.xc5_c00499{left:636.666667pt;}
.x122_c00499{left:637.733333pt;}
.xaf_c00499{left:640.266667pt;}
.xb6_c00499{left:642.666667pt;}
.x107_c00499{left:643.866667pt;}
.xea_c00499{left:644.800000pt;}
.xfa_c00499{left:646.400000pt;}
.xca_c00499{left:648.266667pt;}
.x12a_c00499{left:650.133333pt;}
.xb7_c00499{left:652.266667pt;}
.xbe_c00499{left:653.466667pt;}
.xf1_c00499{left:654.933333pt;}
.x126_c00499{left:658.000000pt;}
.xc6_c00499{left:659.733333pt;}
.xd0_c00499{left:662.666667pt;}
.x104_c00499{left:663.866667pt;}
.xe1_c00499{left:664.800000pt;}
.xf5_c00499{left:666.000000pt;}
.x10e_c00499{left:667.200000pt;}
.x123_c00499{left:669.466667pt;}
.xfb_c00499{left:671.733333pt;}
.xf2_c00499{left:672.800000pt;}
.x143_c00499{left:673.733333pt;}
.x142_c00499{left:674.666667pt;}
.x13b_c00499{left:676.800000pt;}
.xd6_c00499{left:680.400000pt;}
.x114_c00499{left:681.600000pt;}
.xf6_c00499{left:682.666667pt;}
.x130_c00499{left:686.800000pt;}
.xb0_c00499{left:688.000000pt;}
.x100_c00499{left:689.733333pt;}
.x135_c00499{left:691.200000pt;}
.x13e_c00499{left:695.066667pt;}
.xbf_c00499{left:696.933333pt;}
.x12b_c00499{left:698.800000pt;}
.xd7_c00499{left:699.866667pt;}
.x10f_c00499{left:700.800000pt;}
.xe2_c00499{left:702.533333pt;}
.xeb_c00499{left:704.933333pt;}
.x136_c00499{left:707.200000pt;}
.xfc_c00499{left:708.800000pt;}
.x149_c00499{left:710.266667pt;}
.xb1_c00499{left:711.333333pt;}
.xcb_c00499{left:712.533333pt;}
.xc7_c00499{left:714.800000pt;}
.xd1_c00499{left:716.133333pt;}
.x11c_c00499{left:719.466667pt;}
.x120_c00499{left:720.933333pt;}
.xec_c00499{left:722.800000pt;}
.x128_c00499{left:723.733333pt;}
.xd8_c00499{left:727.733333pt;}
.xfd_c00499{left:729.333333pt;}
.x147_c00499{left:731.333333pt;}
.xcc_c00499{left:733.333333pt;}
.x138_c00499{left:735.466667pt;}
.xc8_c00499{left:736.533333pt;}
.xe5_c00499{left:738.800000pt;}
.xd9_c00499{left:739.866667pt;}
.xd2_c00499{left:741.466667pt;}
.xc0_c00499{left:743.066667pt;}
.x110_c00499{left:744.000000pt;}
.x11d_c00499{left:745.733333pt;}
.xb8_c00499{left:748.000000pt;}
.x124_c00499{left:749.066667pt;}
.xf7_c00499{left:751.733333pt;}
.x13c_c00499{left:752.933333pt;}
.x116_c00499{left:754.266667pt;}
.xed_c00499{left:755.733333pt;}
.x14a_c00499{left:759.600000pt;}
.xe6_c00499{left:760.533333pt;}
.xc1_c00499{left:762.533333pt;}
.x13f_c00499{left:763.600000pt;}
.x13d_c00499{left:764.533333pt;}
.x139_c00499{left:766.133333pt;}
.xb2_c00499{left:767.600000pt;}
.x14d_c00499{left:769.733333pt;}
.xf3_c00499{left:771.600000pt;}
.x119_c00499{left:772.933333pt;}
.xda_c00499{left:774.133333pt;}
.x12c_c00499{left:776.533333pt;}
.x101_c00499{left:777.733333pt;}
.x148_c00499{left:780.533333pt;}
.xcd_c00499{left:781.600000pt;}
.x10d_c00499{left:783.600000pt;}
}





/* 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_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 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_c00001 { 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_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* 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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* 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_c00001 { /* 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_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* 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_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 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 */
}
.__c00001 { /* 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_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001: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_c00001 {
    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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.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_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_527e51c2293b25d2424a0897.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.000000;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;}
.m263_c00001{transform:matrix(0.005500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005500,0.000000,0.000000,0.250000,0,0);}
.m265_c00001{transform:matrix(0.006250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006250,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00001{transform:matrix(0.007750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007750,0.000000,0.000000,0.250000,0,0);}
.m264_c00001{transform:matrix(0.009000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009000,0.000000,0.000000,0.250000,0,0);}
.m366_c00001{transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010000,0.000000,0.000000,0.250000,0,0);}
.m284_c00001{transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011000,0.000000,0.000000,0.250000,0,0);}
.m1cc_c00001{transform:matrix(0.011500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011500,0.000000,0.000000,0.250000,0,0);}
.m262_c00001{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m473_c00001{transform:matrix(0.012750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012750,0.000000,0.000000,0.250000,0,0);}
.m3c0_c00001{transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m3a3_c00001{transform:matrix(0.016250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016250,0.000000,0.000000,0.250000,0,0);}
.m349_c00001{transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018500,0.000000,0.000000,0.250000,0,0);}
.m305_c00001{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00001{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m231_c00001{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m49d_c00001{transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025750,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00001{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m43e_c00001{transform:matrix(0.027250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027250,0.000000,0.000000,0.250000,0,0);}
.m320_c00001{transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027750,0.000000,0.000000,0.250000,0,0);}
.m220_c00001{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m2da_c00001{transform:matrix(0.031500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031500,0.000000,0.000000,0.250000,0,0);}
.m1af_c00001{transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032750,0.000000,0.000000,0.250000,0,0);}
.m436_c00001{transform:matrix(0.033250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033250,0.000000,0.000000,0.250000,0,0);}
.m36c_c00001{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.m18b_c00001{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m478_c00001{transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037000,0.000000,0.000000,0.250000,0,0);}
.m3cf_c00001{transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038250,0.000000,0.000000,0.250000,0,0);}
.m45b_c00001{transform:matrix(0.039500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039500,0.000000,0.000000,0.250000,0,0);}
.mde_c00001{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m459_c00001{transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);}
.m494_c00001{transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042500,0.000000,0.000000,0.250000,0,0);}
.m44a_c00001{transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00001{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m33c_c00001{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m31c_c00001{transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);}
.m15b_c00001{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m2c3_c00001{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m1d6_c00001{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m3c6_c00001{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.m24f_c00001{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m3b8_c00001{transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);}
.m68_c00001{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.m3e9_c00001{transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056750,0.000000,0.000000,0.250000,0,0);}
.m28_c00001{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m2d9_c00001{transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061750,0.000000,0.000000,0.250000,0,0);}
.m3e5_c00001{transform:matrix(0.063500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063500,0.000000,0.000000,0.250000,0,0);}
.m31b_c00001{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.m199_c00001{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m340_c00001{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m328_c00001{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m27c_c00001{transform:matrix(0.067250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067250,0.000000,0.000000,0.250000,0,0);}
.m419_c00001{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m414_c00001{transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068000,0.000000,0.000000,0.250000,0,0);}
.m453_c00001{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m40a_c00001{transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069000,0.000000,0.000000,0.250000,0,0);}
.m229_c00001{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m339_c00001{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00001{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1be_c00001{transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);}
.md4_c00001{transform:matrix(0.072750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072750,0.000000,0.000000,0.250000,0,0);}
.m333_c00001{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m270_c00001{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m75_c00001{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m40b_c00001{transform:matrix(0.077750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077750,0.000000,0.000000,0.250000,0,0);}
.m315_c00001{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m3ce_c00001{transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078500,0.000000,0.000000,0.250000,0,0);}
.m61_c00001{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m236_c00001{transform:matrix(0.081500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081500,0.000000,0.000000,0.250000,0,0);}
.m19f_c00001{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m462_c00001{transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00001{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2ee_c00001{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m2c2_c00001{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00001{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00001{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m33b_c00001{transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);}
.m3b2_c00001{transform:matrix(0.089250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089250,0.000000,0.000000,0.250000,0,0);}
.md7_c00001{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m413_c00001{transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00001{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m1da_c00001{transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00001{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m238_c00001{transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094250,0.000000,0.000000,0.250000,0,0);}
.m130_c00001{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00001{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m36e_c00001{transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096750,0.000000,0.000000,0.250000,0,0);}
.m2a2_c00001{transform:matrix(0.097000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097000,0.000000,0.000000,0.250000,0,0);}
.m465_c00001{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m448_c00001{transform:matrix(0.097750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097750,0.000000,0.000000,0.250000,0,0);}
.m65_c00001{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m44d_c00001{transform:matrix(0.098750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098750,0.000000,0.000000,0.250000,0,0);}
.mff_c00001{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m203_c00001{transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101500,0.000000,0.000000,0.250000,0,0);}
.m314_c00001{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00001{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m34d_c00001{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m30a_c00001{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m138_c00001{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m21c_c00001{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m2c6_c00001{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00001{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m435_c00001{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m40c_c00001{transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00001{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m45_c00001{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m137_c00001{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m279_c00001{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m2a7_c00001{transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);}
.m44e_c00001{transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);}
.m217_c00001{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00001{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m275_c00001{transform:matrix(0.113000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113000,0.000000,0.000000,0.250000,0,0);}
.m2df_c00001{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m3a0_c00001{transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113500,0.000000,0.000000,0.250000,0,0);}
.md2_c00001{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m134_c00001{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m480_c00001{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m31a_c00001{transform:matrix(0.115250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115250,0.000000,0.000000,0.250000,0,0);}
.m35b_c00001{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m3c1_c00001{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m26f_c00001{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m45f_c00001{transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);}
.m44f_c00001{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m472_c00001{transform:matrix(0.118250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118250,0.000000,0.000000,0.250000,0,0);}
.m27b_c00001{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00001{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3d6_c00001{transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);}
.m276_c00001{transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122250,0.000000,0.000000,0.250000,0,0);}
.m3d5_c00001{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m271_c00001{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m1d0_c00001{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m126_c00001{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m184_c00001{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m369_c00001{transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124250,0.000000,0.000000,0.250000,0,0);}
.m32a_c00001{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2c1_c00001{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m173_c00001{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m447_c00001{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.m2dd_c00001{transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);}
.m131_c00001{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00001{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m46a_c00001{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m47b_c00001{transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);}
.m2bd_c00001{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m273_c00001{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m3d3_c00001{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.m41a_c00001{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m3b9_c00001{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m148_c00001{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m49a_c00001{transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);}
.m3a7_c00001{transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);}
.maf_c00001{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m22d_c00001{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m3b0_c00001{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00001{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m3b1_c00001{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.m365_c00001{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m446_c00001{transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);}
.m44b_c00001{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m21b_c00001{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m402_c00001{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m490_c00001{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.m39c_c00001{transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);}
.m221_c00001{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m3d2_c00001{transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);}
.m18e_c00001{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m3b3_c00001{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m28b_c00001{transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);}
.m3df_c00001{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00001{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m298_c00001{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m2e3_c00001{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.m317_c00001{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m2fd_c00001{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m370_c00001{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m191_c00001{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m249_c00001{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m39e_c00001{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m3bf_c00001{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.m23b_c00001{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m388_c00001{transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);}
.m235_c00001{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m197_c00001{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m2e2_c00001{transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);}
.m445_c00001{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m47c_c00001{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.m20e_c00001{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m46f_c00001{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m56_c00001{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m469_c00001{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m359_c00001{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m25f_c00001{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m3b5_c00001{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m428_c00001{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00001{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m496_c00001{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m375_c00001{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m52_c00001{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3af_c00001{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.m89_c00001{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00001{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m29c_c00001{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m239_c00001{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m257_c00001{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m288_c00001{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m269_c00001{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m142_c00001{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00001{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00001{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m22a_c00001{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m327_c00001{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m178_c00001{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m2e9_c00001{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m347_c00001{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m32d_c00001{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m19a_c00001{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m37c_c00001{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m90_c00001{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m19c_c00001{transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);}
.m2f2_c00001{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m3f4_c00001{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00001{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m35a_c00001{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m3ca_c00001{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m35d_c00001{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00001{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m267_c00001{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m1ee_c00001{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m36_c00001{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m2c8_c00001{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m94_c00001{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m3f6_c00001{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m215_c00001{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m193_c00001{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m23a_c00001{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m277_c00001{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m36a_c00001{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m104_c00001{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m3a2_c00001{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m234_c00001{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m2e4_c00001{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.mce_c00001{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m63_c00001{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m141_c00001{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m253_c00001{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m155_c00001{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00001{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m17e_c00001{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m252_c00001{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.me9_c00001{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2be_c00001{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m259_c00001{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00001{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mad_c00001{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m169_c00001{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m70_c00001{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3dd_c00001{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m392_c00001{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m334_c00001{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m258_c00001{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00001{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m243_c00001{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m254_c00001{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m69_c00001{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m34b_c00001{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m99_c00001{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00001{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m397_c00001{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m23d_c00001{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m32_c00001{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m18f_c00001{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00001{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m192_c00001{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m294_c00001{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00001{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m237_c00001{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m151_c00001{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mae_c00001{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m1d1_c00001{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m15e_c00001{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00001{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m29e_c00001{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m13c_c00001{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.me7_c00001{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m87_c00001{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m22b_c00001{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m37_c00001{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m160_c00001{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m246_c00001{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m35_c00001{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00001{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m350_c00001{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m299_c00001{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00001{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00001{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m304_c00001{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m348_c00001{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m77_c00001{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m272_c00001{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00001{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00001{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00001{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00001{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m287_c00001{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00001{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mab_c00001{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m49_c00001{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m162_c00001{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m23c_c00001{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00001{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00001{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m72_c00001{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m194_c00001{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m149_c00001{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m167_c00001{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00001{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m19b_c00001{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00001{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m121_c00001{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m311_c00001{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00001{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m164_c00001{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m15_c00001{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00001{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m66_c00001{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m157_c00001{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mea_c00001{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m96_c00001{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00001{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m14_c00001{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m124_c00001{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m171_c00001{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00001{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3f5_c00001{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00001{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00001{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m102_c00001{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m227_c00001{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2a9_c00001{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m76_c00001{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m1d7_c00001{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m140_c00001{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m93_c00001{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00001{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m186_c00001{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00001{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m17a_c00001{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00001{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m86_c00001{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00001{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00001{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00001{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m156_c00001{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m181_c00001{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00001{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m268_c00001{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m11b_c00001{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m58_c00001{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00001{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m67_c00001{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00001{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00001{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m136_c00001{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m73_c00001{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.md0_c00001{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m112_c00001{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00001{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00001{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m54_c00001{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00001{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mfc_c00001{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.me5_c00001{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m91_c00001{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mba_c00001{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m122_c00001{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.me4_c00001{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00001{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00001{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m98_c00001{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00001{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.md_c00001{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1de_c00001{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m100_c00001{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00001{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m1e2_c00001{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00001{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1fb_c00001{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00001{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00001{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m17_c00001{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me1_c00001{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00001{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m146_c00001{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00001{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m180_c00001{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00001{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00001{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m22_c00001{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md9_c00001{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00001{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2c4_c00001{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00001{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m81_c00001{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m21_c00001{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma_c00001{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00001{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m30_c00001{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m129_c00001{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mac_c00001{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m177_c00001{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m107_c00001{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m14b_c00001{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m46_c00001{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m185_c00001{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.md1_c00001{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m55_c00001{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00001{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m103_c00001{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00001{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.maa_c00001{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m17b_c00001{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m213_c00001{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m47_c00001{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m216_c00001{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00001{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m101_c00001{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m2ec_c00001{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m19_c00001{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m127_c00001{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m39_c00001{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00001{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m57_c00001{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00001{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m16_c00001{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m128_c00001{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m20_c00001{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m38_c00001{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00001{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m16a_c00001{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mef_c00001{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m64_c00001{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m196_c00001{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00001{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mda_c00001{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00001{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m15f_c00001{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00001{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m80_c00001{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m195_c00001{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m120_c00001{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00001{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m51_c00001{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c4_c00001{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m133_c00001{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m119_c00001{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m34_c00001{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00001{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00001{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m82_c00001{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m62_c00001{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m43_c00001{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m17c_c00001{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m59_c00001{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m53_c00001{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00001{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m74_c00001{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m116_c00001{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00001{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00001{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m33_c00001{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00001{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m158_c00001{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00001{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m12_c00001{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1d3_c00001{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00001{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m114_c00001{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m41_c00001{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m144_c00001{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m109_c00001{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00001{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m85_c00001{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m163_c00001{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m18d_c00001{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00001{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m15c_c00001{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m170_c00001{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00001{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00001{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00001{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00001{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.me_c00001{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m25_c00001{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.me6_c00001{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m50_c00001{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m106_c00001{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m84_c00001{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m228_c00001{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00001{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00001{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m207_c00001{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m92_c00001{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me0_c00001{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1f8_c00001{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.med_c00001{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m190_c00001{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m31_c00001{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m95_c00001{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m111_c00001{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00001{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00001{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4_c00001{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m219_c00001{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00001{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m108_c00001{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m183_c00001{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m18_c00001{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1ff_c00001{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m154_c00001{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m159_c00001{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1d5_c00001{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m27_c00001{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m125_c00001{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m28f_c00001{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m26a_c00001{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2f4_c00001{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m13_c00001{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mec_c00001{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m15d_c00001{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00001{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m17d_c00001{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2a5_c00001{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mca_c00001{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00001{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00001{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00001{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m11_c00001{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m88_c00001{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00001{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m117_c00001{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m179_c00001{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00001{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m391_c00001{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00001{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00001{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m153_c00001{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.md5_c00001{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00001{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00001{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m20f_c00001{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m135_c00001{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc_c00001{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md8_c00001{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m115_c00001{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m113_c00001{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m21e_c00001{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m48_c00001{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m168_c00001{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md6_c00001{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00001{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me8_c00001{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m198_c00001{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1bb_c00001{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m78_c00001{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m261_c00001{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1e9_c00001{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m43f_c00001{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.mb_c00001{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m41c_c00001{transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00001{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m21d_c00001{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m274_c00001{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m15a_c00001{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00001{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m28e_c00001{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00001{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m24a_c00001{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m145_c00001{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00001{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m24e_c00001{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m226_c00001{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m40_c00001{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00001{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m232_c00001{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m16c_c00001{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1df_c00001{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1c8_c00001{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m182_c00001{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m79_c00001{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2d1_c00001{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m105_c00001{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1e4_c00001{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00001{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3ac_c00001{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m42_c00001{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00001{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1e5_c00001{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1fa_c00001{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1f9_c00001{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2f7_c00001{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1ea_c00001{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m17f_c00001{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1c5_c00001{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m22e_c00001{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m176_c00001{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m16b_c00001{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);}
.m1ad_c00001{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00001{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m22f_c00001{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m110_c00001{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1fc_c00001{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00001{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m189_c00001{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00001{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2f8_c00001{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1f5_c00001{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m256_c00001{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m143_c00001{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00001{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1f4_c00001{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m19e_c00001{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m443_c00001{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m13d_c00001{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m187_c00001{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m29_c00001{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m188_c00001{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m152_c00001{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00001{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mf_c00001{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00001{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2a6_c00001{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m21a_c00001{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m26d_c00001{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m24_c00001{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m14f_c00001{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1fe_c00001{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00001{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m14c_c00001{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m293_c00001{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m14e_c00001{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m208_c00001{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.meb_c00001{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2ca_c00001{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m13a_c00001{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00001{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1d8_c00001{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00001{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m3c8_c00001{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00001{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00001{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00001{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m1e1_c00001{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m147_c00001{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m21f_c00001{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m225_c00001{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m218_c00001{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m32c_c00001{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00001{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00001{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m23_c00001{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mee_c00001{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m383_c00001{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m26_c00001{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m332_c00001{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m1ed_c00001{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2d7_c00001{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m286_c00001{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m2ea_c00001{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m166_c00001{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m22c_c00001{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m1f2_c00001{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00001{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2b3_c00001{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00001{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m353_c00001{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m399_c00001{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m175_c00001{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00001{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m2b9_c00001{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m230_c00001{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m10f_c00001{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2ac_c00001{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m35e_c00001{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m479_c00001{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.mfe_c00001{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m410_c00001{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m28c_c00001{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m2f3_c00001{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m2cf_c00001{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m292_c00001{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m39d_c00001{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00001{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m241_c00001{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m319_c00001{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00001{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m296_c00001{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00001{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00001{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m429_c00001{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m201_c00001{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m20b_c00001{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m240_c00001{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m2e1_c00001{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m1e0_c00001{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m71_c00001{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m16e_c00001{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m398_c00001{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00001{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2b7_c00001{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m418_c00001{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00001{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m2b1_c00001{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m24d_c00001{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m209_c00001{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1e8_c00001{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m248_c00001{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m23f_c00001{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m2dc_c00001{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m433_c00001{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m23e_c00001{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m2c7_c00001{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m378_c00001{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m16d_c00001{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34c_c00001{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m10_c00001{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m2d6_c00001{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m2ce_c00001{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m331_c00001{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m26b_c00001{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m29f_c00001{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m3a1_c00001{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m33d_c00001{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f1_c00001{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m486_c00001{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m165_c00001{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m343_c00001{transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00001{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m255_c00001{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m202_c00001{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m242_c00001{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m83_c00001{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2ba_c00001{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m18c_c00001{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m33a_c00001{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m33e_c00001{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00001{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m16f_c00001{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m3ab_c00001{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m289_c00001{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m3d9_c00001{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3cc_c00001{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m174_c00001{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2fb_c00001{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m3c5_c00001{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m1dd_c00001{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m245_c00001{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00001{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m285_c00001{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00001{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m29b_c00001{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m321_c00001{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m358_c00001{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m2e7_c00001{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m3ae_c00001{transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00001{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m278_c00001{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00001{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m28a_c00001{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m325_c00001{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m150_c00001{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m2b6_c00001{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m172_c00001{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1ec_c00001{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m1f3_c00001{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m250_c00001{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m322_c00001{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m27d_c00001{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m20c_c00001{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m44_c00001{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m2fc_c00001{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m45c_c00001{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m210_c00001{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m161_c00001{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00001{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m20d_c00001{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m38f_c00001{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m260_c00001{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m1dc_c00001{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m34e_c00001{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m2bf_c00001{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m39f_c00001{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00001{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3bd_c00001{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.m440_c00001{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m487_c00001{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m313_c00001{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m2eb_c00001{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m24c_c00001{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m118_c00001{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00001{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m301_c00001{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m19d_c00001{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m42b_c00001{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m2d5_c00001{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m32f_c00001{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m48c_c00001{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m3e0_c00001{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m3e7_c00001{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m330_c00001{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1db_c00001{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m200_c00001{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1e3_c00001{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m2de_c00001{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m32e_c00001{transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);}
.m29a_c00001{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m463_c00001{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m461_c00001{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m396_c00001{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m132_c00001{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m60_c00001{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m3ec_c00001{transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00001{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m403_c00001{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.m451_c00001{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m25c_c00001{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m39a_c00001{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m46d_c00001{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m1eb_c00001{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m477_c00001{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m377_c00001{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00001{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m438_c00001{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m379_c00001{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m42a_c00001{transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);}
.m251_c00001{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m393_c00001{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.m2bc_c00001{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m318_c00001{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.m303_c00001{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m431_c00001{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.m352_c00001{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00001{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m467_c00001{transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);}
.m1fd_c00001{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m2cb_c00001{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m26c_c00001{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m18a_c00001{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m35c_c00001{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m3da_c00001{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m222_c00001{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m3c2_c00001{transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318500,0.000000,0.000000,0.250000,0,0);}
.m2b2_c00001{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m3d7_c00001{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.m2f0_c00001{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m28d_c00001{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m297_c00001{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.m389_c00001{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m368_c00001{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m139_c00001{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m2ed_c00001{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m3fb_c00001{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m2bb_c00001{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m310_c00001{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m280_c00001{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.m3bc_c00001{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m336_c00001{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m25b_c00001{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m3ba_c00001{transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);}
.m2c9_c00001{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m266_c00001{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35f_c00001{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m2c0_c00001{transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326500,0.000000,0.000000,0.250000,0,0);}
.m335_c00001{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m3eb_c00001{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m2ab_c00001{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m3a5_c00001{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3ad_c00001{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m2ef_c00001{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m2c5_c00001{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.m2a0_c00001{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m2f6_c00001{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m3f8_c00001{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.m2aa_c00001{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m37b_c00001{transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);}
.m3d4_c00001{transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);}
.m3a9_c00001{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m27a_c00001{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.m474_c00001{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m3f1_c00001{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.m30b_c00001{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m281_c00001{transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);}
.m2a8_c00001{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m2b5_c00001{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m29d_c00001{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m437_c00001{transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);}
.m337_c00001{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.m401_c00001{transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334000,0.000000,0.000000,0.250000,0,0);}
.m48d_c00001{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m302_c00001{transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334500,0.000000,0.000000,0.250000,0,0);}
.m312_c00001{transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);}
.m47e_c00001{transform:matrix(0.335750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335750,0.000000,0.000000,0.250000,0,0);}
.m1c7_c00001{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m3ee_c00001{transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336250,0.000000,0.000000,0.250000,0,0);}
.m422_c00001{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.m342_c00001{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1d2_c00001{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m380_c00001{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m434_c00001{transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);}
.m2d8_c00001{transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);}
.m2cc_c00001{transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);}
.m247_c00001{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m30c_c00001{transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);}
.m485_c00001{transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);}
.m326_c00001{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.m482_c00001{transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);}
.m24b_c00001{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m2ff_c00001{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00001{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m3e6_c00001{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m2e5_c00001{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m224_c00001{transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);}
.m412_c00001{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.m212_c00001{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m38b_c00001{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m2fe_c00001{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m45e_c00001{transform:matrix(0.347000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347000,0.000000,0.000000,0.250000,0,0);}
.m464_c00001{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m1f6_c00001{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m46c_c00001{transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);}
.m316_c00001{transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);}
.m2a4_c00001{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m492_c00001{transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);}
.m346_c00001{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3e1_c00001{transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);}
.m42e_c00001{transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);}
.m282_c00001{transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);}
.m373_c00001{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m493_c00001{transform:matrix(0.351250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351250,0.000000,0.000000,0.250000,0,0);}
.m444_c00001{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m244_c00001{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m470_c00001{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m406_c00001{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.m2fa_c00001{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m20a_c00001{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m456_c00001{transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);}
.m341_c00001{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00001{transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);}
.m49b_c00001{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m371_c00001{transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);}
.m3ff_c00001{transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);}
.m409_c00001{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.m432_c00001{transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);}
.m48e_c00001{transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);}
.me2_c00001{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m394_c00001{transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);}
.m361_c00001{transform:matrix(0.362750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362750,0.000000,0.000000,0.250000,0,0);}
.m499_c00001{transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);}
.m2e8_c00001{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.m308_c00001{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.m3f0_c00001{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.m483_c00001{transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);}
.m400_c00001{transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365500,0.000000,0.000000,0.250000,0,0);}
.m360_c00001{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m3ef_c00001{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m3fd_c00001{transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);}
.m43d_c00001{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e6_c00001{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.m41b_c00001{transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);}
.m442_c00001{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.m306_c00001{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.m3aa_c00001{transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369250,0.000000,0.000000,0.250000,0,0);}
.m40e_c00001{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3a4_c00001{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m3c9_c00001{transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);}
.m25a_c00001{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m43c_c00001{transform:matrix(0.373000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373000,0.000000,0.000000,0.250000,0,0);}
.m46e_c00001{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m3e2_c00001{transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);}
.m495_c00001{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3c7_c00001{transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);}
.m338_c00001{transform:matrix(0.375750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375750,0.000000,0.000000,0.250000,0,0);}
.m3ea_c00001{transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376000,0.000000,0.000000,0.250000,0,0);}
.m211_c00001{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m49c_c00001{transform:matrix(0.377750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377750,0.000000,0.000000,0.250000,0,0);}
.m283_c00001{transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);}
.m42f_c00001{transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);}
.m408_c00001{transform:matrix(0.379750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379750,0.000000,0.000000,0.250000,0,0);}
.m36b_c00001{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m36d_c00001{transform:matrix(0.381250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381250,0.000000,0.000000,0.250000,0,0);}
.m45d_c00001{transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);}
.m26e_c00001{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.m387_c00001{transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m324_c00001{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m30d_c00001{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m329_c00001{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m357_c00001{transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387250,0.000000,0.000000,0.250000,0,0);}
.m46b_c00001{transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);}
.m430_c00001{transform:matrix(0.388250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388250,0.000000,0.000000,0.250000,0,0);}
.m323_c00001{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m2af_c00001{transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);}
.m30f_c00001{transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);}
.m3bb_c00001{transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);}
.m3d1_c00001{transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);}
.m3db_c00001{transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);}
.m307_c00001{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.m385_c00001{transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);}
.m1f0_c00001{transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394000,0.000000,0.000000,0.250000,0,0);}
.m2b0_c00001{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m484_c00001{transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);}
.m1ef_c00001{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m3f3_c00001{transform:matrix(0.397000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397000,0.000000,0.000000,0.250000,0,0);}
.m497_c00001{transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);}
.m2d3_c00001{transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);}
.m43a_c00001{transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398250,0.000000,0.000000,0.250000,0,0);}
.m295_c00001{transform:matrix(0.398500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398500,0.000000,0.000000,0.250000,0,0);}
.m384_c00001{transform:matrix(0.399000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399000,0.000000,0.000000,0.250000,0,0);}
.m1cd_c00001{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m362_c00001{transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);}
.m458_c00001{transform:matrix(0.401500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401500,0.000000,0.000000,0.250000,0,0);}
.m2f1_c00001{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m363_c00001{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.m30e_c00001{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m27f_c00001{transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406250,0.000000,0.000000,0.250000,0,0);}
.m3b7_c00001{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m3f7_c00001{transform:matrix(0.408750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408750,0.000000,0.000000,0.250000,0,0);}
.m372_c00001{transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);}
.m32b_c00001{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m481_c00001{transform:matrix(0.410750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410750,0.000000,0.000000,0.250000,0,0);}
.m460_c00001{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.m427_c00001{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m455_c00001{transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412750,0.000000,0.000000,0.250000,0,0);}
.m498_c00001{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m407_c00001{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m356_c00001{transform:matrix(0.414750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414750,0.000000,0.000000,0.250000,0,0);}
.m405_c00001{transform:matrix(0.415250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415250,0.000000,0.000000,0.250000,0,0);}
.m27e_c00001{transform:matrix(0.415500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415500,0.000000,0.000000,0.250000,0,0);}
.m300_c00001{transform:matrix(0.416500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416500,0.000000,0.000000,0.250000,0,0);}
.me3_c00001{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m426_c00001{transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);}
.m38e_c00001{transform:matrix(0.422250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422250,0.000000,0.000000,0.250000,0,0);}
.m354_c00001{transform:matrix(0.424250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424250,0.000000,0.000000,0.250000,0,0);}
.m452_c00001{transform:matrix(0.424750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424750,0.000000,0.000000,0.250000,0,0);}
.m344_c00001{transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425500,0.000000,0.000000,0.250000,0,0);}
.m454_c00001{transform:matrix(0.427250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427250,0.000000,0.000000,0.250000,0,0);}
.m386_c00001{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m214_c00001{transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);}
.m44c_c00001{transform:matrix(0.429500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429500,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.430500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430500,0.000000,0.000000,0.250000,0,0);}
.m382_c00001{transform:matrix(0.430750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430750,0.000000,0.000000,0.250000,0,0);}
.m345_c00001{transform:matrix(0.431500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431500,0.000000,0.000000,0.250000,0,0);}
.m34a_c00001{transform:matrix(0.431750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431750,0.000000,0.000000,0.250000,0,0);}
.m2d4_c00001{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m3c3_c00001{transform:matrix(0.432250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432250,0.000000,0.000000,0.250000,0,0);}
.m457_c00001{transform:matrix(0.434750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434750,0.000000,0.000000,0.250000,0,0);}
.m2f9_c00001{transform:matrix(0.436000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436000,0.000000,0.000000,0.250000,0,0);}
.m14a_c00001{transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436250,0.000000,0.000000,0.250000,0,0);}
.m41d_c00001{transform:matrix(0.436750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436750,0.000000,0.000000,0.250000,0,0);}
.m25d_c00001{transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437250,0.000000,0.000000,0.250000,0,0);}
.m449_c00001{transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438000,0.000000,0.000000,0.250000,0,0);}
.m2d2_c00001{transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);}
.m42d_c00001{transform:matrix(0.439250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439250,0.000000,0.000000,0.250000,0,0);}
.m43b_c00001{transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439500,0.000000,0.000000,0.250000,0,0);}
.m3fe_c00001{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m233_c00001{transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440250,0.000000,0.000000,0.250000,0,0);}
.m45a_c00001{transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441000,0.000000,0.000000,0.250000,0,0);}
.m31f_c00001{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m34f_c00001{transform:matrix(0.445500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445500,0.000000,0.000000,0.250000,0,0);}
.m450_c00001{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m3b4_c00001{transform:matrix(0.446500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446500,0.000000,0.000000,0.250000,0,0);}
.m123_c00001{transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447250,0.000000,0.000000,0.250000,0,0);}
.m3b6_c00001{transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449500,0.000000,0.000000,0.250000,0,0);}
.m3d0_c00001{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m439_c00001{transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);}
.m3cb_c00001{transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);}
.m475_c00001{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.m421_c00001{transform:matrix(0.455750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455750,0.000000,0.000000,0.250000,0,0);}
.md3_c00001{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m404_c00001{transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);}
.m364_c00001{transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458250,0.000000,0.000000,0.250000,0,0);}
.m25e_c00001{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m3fa_c00001{transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463750,0.000000,0.000000,0.250000,0,0);}
.m2a1_c00001{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m395_c00001{transform:matrix(0.465750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465750,0.000000,0.000000,0.250000,0,0);}
.m2ae_c00001{transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466250,0.000000,0.000000,0.250000,0,0);}
.m31d_c00001{transform:matrix(0.466500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466500,0.000000,0.000000,0.250000,0,0);}
.m47f_c00001{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m31e_c00001{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m3dc_c00001{transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468250,0.000000,0.000000,0.250000,0,0);}
.m2f5_c00001{transform:matrix(0.468500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468500,0.000000,0.000000,0.250000,0,0);}
.m3e8_c00001{transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469000,0.000000,0.000000,0.250000,0,0);}
.m97_c00001{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1e7_c00001{transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471500,0.000000,0.000000,0.250000,0,0);}
.m2cd_c00001{transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473250,0.000000,0.000000,0.250000,0,0);}
.m3d8_c00001{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m2e6_c00001{transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478250,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00001{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2a3_c00001{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m37a_c00001{transform:matrix(0.483250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483250,0.000000,0.000000,0.250000,0,0);}
.m441_c00001{transform:matrix(0.483500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483500,0.000000,0.000000,0.250000,0,0);}
.m3c4_c00001{transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488000,0.000000,0.000000,0.250000,0,0);}
.m417_c00001{transform:matrix(0.489250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00001{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m3cd_c00001{transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491000,0.000000,0.000000,0.250000,0,0);}
.m3a8_c00001{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m3fc_c00001{transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);}
.m291_c00001{transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496000,0.000000,0.000000,0.250000,0,0);}
.m40d_c00001{transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);}
.m3be_c00001{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m14d_c00001{transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00001{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m374_c00001{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m37d_c00001{transform:matrix(0.508750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508750,0.000000,0.000000,0.250000,0,0);}
.m3a6_c00001{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m38a_c00001{transform:matrix(0.511000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00001{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m39b_c00001{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00001{transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523750,0.000000,0.000000,0.250000,0,0);}
.m48a_c00001{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m489_c00001{transform:matrix(0.526750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526750,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00001{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m3ed_c00001{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00001{transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534500,0.000000,0.000000,0.250000,0,0);}
.m3de_c00001{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m205_c00001{transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545500,0.000000,0.000000,0.250000,0,0);}
.m476_c00001{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m2ad_c00001{transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552000,0.000000,0.000000,0.250000,0,0);}
.m2db_c00001{transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556250,0.000000,0.000000,0.250000,0,0);}
.m471_c00001{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m206_c00001{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.m376_c00001{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m47a_c00001{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m290_c00001{transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576000,0.000000,0.000000,0.250000,0,0);}
.m367_c00001{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m351_c00001{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m41e_c00001{transform:matrix(0.584000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584000,0.000000,0.000000,0.250000,0,0);}
.m47d_c00001{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m48b_c00001{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.m2d0_c00001{transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588000,0.000000,0.000000,0.250000,0,0);}
.m36f_c00001{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m42c_c00001{transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);}
.m204_c00001{transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612000,0.000000,0.000000,0.250000,0,0);}
.m309_c00001{transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616000,0.000000,0.000000,0.250000,0,0);}
.m390_c00001{transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621750,0.000000,0.000000,0.250000,0,0);}
.m2e0_c00001{transform:matrix(0.626750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626750,0.000000,0.000000,0.250000,0,0);}
.m381_c00001{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m420_c00001{transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632750,0.000000,0.000000,0.250000,0,0);}
.m223_c00001{transform:matrix(0.636000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636000,0.000000,0.000000,0.250000,0,0);}
.m48f_c00001{transform:matrix(0.653250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653250,0.000000,0.000000,0.250000,0,0);}
.m38c_c00001{transform:matrix(0.654500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654500,0.000000,0.000000,0.250000,0,0);}
.m37e_c00001{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m488_c00001{transform:matrix(0.666750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666750,0.000000,0.000000,0.250000,0,0);}
.m3e3_c00001{transform:matrix(0.672000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672000,0.000000,0.000000,0.250000,0,0);}
.m40f_c00001{transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);}
.m466_c00001{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m2b4_c00001{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m1f7_c00001{transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708000,0.000000,0.000000,0.250000,0,0);}
.m41f_c00001{transform:matrix(0.744000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744000,0.000000,0.000000,0.250000,0,0);}
.m416_c00001{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m424_c00001{transform:matrix(0.768000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768000,0.000000,0.000000,0.250000,0,0);}
.m1ce_c00001{transform:matrix(0.792000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792000,0.000000,0.000000,0.250000,0,0);}
.m3f2_c00001{transform:matrix(0.796750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796750,0.000000,0.000000,0.250000,0,0);}
.m38d_c00001{transform:matrix(0.981750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.981750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.981750,0.000000,0.000000,0.250000,0,0);}
.m37f_c00001{transform:matrix(0.994250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.994250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.994250,0.000000,0.000000,0.250000,0,0);}
.m3e4_c00001{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.m415_c00001{transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);}
.m355_c00001{transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);}
.m3f9_c00001{transform:matrix(1.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.260000,0.000000,0.000000,0.250000,0,0);}
.m423_c00001{transform:matrix(1.584000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.584000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.584000,0.000000,0.000000,0.250000,0,0);}
.m33f_c00001{transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);}
.m425_c00001{transform:matrix(1.896000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.896000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.896000,0.000000,0.000000,0.250000,0,0);}
.m491_c00001{transform:matrix(7.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.104000,0.000000,0.000000,0.250000,0,0);}
.m2b8_c00001{transform:matrix(8.074250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.074250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.074250,0.000000,0.000000,0.250000,0,0);}
.m468_c00001{transform:matrix(14.544000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(14.544000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(14.544000,0.000000,0.000000,0.250000,0,0);}
.m411_c00001{transform:matrix(15.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(15.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(15.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:15.600000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.ls4_c00001{letter-spacing:44.571429px;}
.ls1_c00001{letter-spacing:55.714286px;}
.ls2_c00001{letter-spacing:59.285714px;}
.ls5_c00001{letter-spacing:61.426230px;}
.ls6_c00001{letter-spacing:63.000000px;}
.ls3_c00001{letter-spacing:70.000000px;}
.ls7_c00001{letter-spacing:1661.666667px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{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__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws91_c00001{word-spacing:-100.000000px;}
.ws1de_c00001{word-spacing:-94.426230px;}
.ws20d_c00001{word-spacing:-90.000000px;}
.ws26_c00001{word-spacing:-89.285714px;}
.ws1a_c00001{word-spacing:-85.714286px;}
.ws1b8_c00001{word-spacing:-68.571429px;}
.ws222_c00001{word-spacing:-42.000000px;}
.ws154_c00001{word-spacing:-22.534279px;}
.ws1b0_c00001{word-spacing:-21.000000px;}
.ws33_c00001{word-spacing:-18.714286px;}
.ws135_c00001{word-spacing:-18.125000px;}
.ws1fe_c00001{word-spacing:-17.980892px;}
.wsa4_c00001{word-spacing:-17.056769px;}
.ws17_c00001{word-spacing:-16.718750px;}
.ws123_c00001{word-spacing:-16.624204px;}
.ws14b_c00001{word-spacing:-16.250000px;}
.ws3f_c00001{word-spacing:-15.903930px;}
.ws15b_c00001{word-spacing:-15.595238px;}
.ws1f1_c00001{word-spacing:-15.386338px;}
.ws70_c00001{word-spacing:-15.370440px;}
.wsea_c00001{word-spacing:-15.202749px;}
.ws18b_c00001{word-spacing:-15.182131px;}
.ws16_c00001{word-spacing:-15.151203px;}
.wsb1_c00001{word-spacing:-15.090452px;}
.ws17b_c00001{word-spacing:-15.000000px;}
.ws119_c00001{word-spacing:-14.889992px;}
.ws23d_c00001{word-spacing:-14.789809px;}
.ws69_c00001{word-spacing:-14.729858px;}
.ws17f_c00001{word-spacing:-14.292994px;}
.ws184_c00001{word-spacing:-14.285714px;}
.ws1a6_c00001{word-spacing:-13.750000px;}
.ws92_c00001{word-spacing:-13.513514px;}
.ws110_c00001{word-spacing:-13.479876px;}
.ws1a8_c00001{word-spacing:-13.194444px;}
.wsf3_c00001{word-spacing:-13.160377px;}
.wscd_c00001{word-spacing:-13.156134px;}
.ws150_c00001{word-spacing:-13.031847px;}
.ws90_c00001{word-spacing:-12.948718px;}
.ws15c_c00001{word-spacing:-12.630573px;}
.wse9_c00001{word-spacing:-12.628821px;}
.ws183_c00001{word-spacing:-12.467049px;}
.ws160_c00001{word-spacing:-12.306991px;}
.ws1c5_c00001{word-spacing:-12.205882px;}
.ws245_c00001{word-spacing:-12.045455px;}
.wsa0_c00001{word-spacing:-11.991404px;}
.ws134_c00001{word-spacing:-11.944444px;}
.ws1b3_c00001{word-spacing:-11.862534px;}
.ws89_c00001{word-spacing:-11.837153px;}
.ws14d_c00001{word-spacing:-11.749004px;}
.ws43_c00001{word-spacing:-11.745704px;}
.ws12c_c00001{word-spacing:-11.666667px;}
.ws215_c00001{word-spacing:-11.562500px;}
.ws58_c00001{word-spacing:-11.326531px;}
.wsa1_c00001{word-spacing:-11.250000px;}
.ws66_c00001{word-spacing:-11.227074px;}
.wsce_c00001{word-spacing:-11.210526px;}
.ws243_c00001{word-spacing:-11.128492px;}
.ws15_c00001{word-spacing:-11.052632px;}
.ws4a_c00001{word-spacing:-10.833333px;}
.wsc3_c00001{word-spacing:-10.744186px;}
.ws25_c00001{word-spacing:-10.731707px;}
.ws1c1_c00001{word-spacing:-10.683091px;}
.wscf_c00001{word-spacing:-10.663755px;}
.ws194_c00001{word-spacing:-10.625000px;}
.ws195_c00001{word-spacing:-10.605096px;}
.ws202_c00001{word-spacing:-10.365079px;}
.wsaf_c00001{word-spacing:-10.333333px;}
.ws20_c00001{word-spacing:-10.277778px;}
.ws73_c00001{word-spacing:-10.250000px;}
.ws1c_c00001{word-spacing:-10.227273px;}
.ws1ac_c00001{word-spacing:-10.114596px;}
.ws61_c00001{word-spacing:-10.087420px;}
.ws221_c00001{word-spacing:-9.871795px;}
.ws17c_c00001{word-spacing:-9.818182px;}
.ws240_c00001{word-spacing:-9.736842px;}
.ws7c_c00001{word-spacing:-9.694158px;}
.ws1e4_c00001{word-spacing:-9.687500px;}
.ws1b9_c00001{word-spacing:-9.636780px;}
.ws112_c00001{word-spacing:-9.613396px;}
.ws116_c00001{word-spacing:-9.609665px;}
.wse5_c00001{word-spacing:-9.601719px;}
.wsfd_c00001{word-spacing:-9.584817px;}
.ws10f_c00001{word-spacing:-9.510917px;}
.ws158_c00001{word-spacing:-9.389313px;}
.wsc6_c00001{word-spacing:-9.353712px;}
.ws201_c00001{word-spacing:-9.318182px;}
.ws12b_c00001{word-spacing:-9.285714px;}
.ws1f2_c00001{word-spacing:-9.248408px;}
.ws20a_c00001{word-spacing:-9.230769px;}
.ws16c_c00001{word-spacing:-9.210526px;}
.wsec_c00001{word-spacing:-9.104803px;}
.ws155_c00001{word-spacing:-9.076433px;}
.ws106_c00001{word-spacing:-9.042802px;}
.ws65_c00001{word-spacing:-9.014218px;}
.wsc_c00001{word-spacing:-9.000000px;}
.ws1d_c00001{word-spacing:-8.891403px;}
.ws34_c00001{word-spacing:-8.875000px;}
.ws8a_c00001{word-spacing:-8.857143px;}
.ws1c8_c00001{word-spacing:-8.808917px;}
.wsbe_c00001{word-spacing:-8.750000px;}
.wsf8_c00001{word-spacing:-8.731844px;}
.wsa8_c00001{word-spacing:-8.714286px;}
.ws2f_c00001{word-spacing:-8.636943px;}
.ws45_c00001{word-spacing:-8.470588px;}
.ws82_c00001{word-spacing:-8.452381px;}
.ws121_c00001{word-spacing:-8.356336px;}
.ws13_c00001{word-spacing:-8.333333px;}
.ws9e_c00001{word-spacing:-8.329897px;}
.ws212_c00001{word-spacing:-8.298969px;}
.ws94_c00001{word-spacing:-8.292683px;}
.ws4d_c00001{word-spacing:-8.288660px;}
.ws6a_c00001{word-spacing:-8.278351px;}
.ws1d6_c00001{word-spacing:-8.214286px;}
.ws175_c00001{word-spacing:-8.181818px;}
.ws147_c00001{word-spacing:-8.168443px;}
.ws1d1_c00001{word-spacing:-8.055556px;}
.wsd7_c00001{word-spacing:-8.000000px;}
.wsb3_c00001{word-spacing:-7.984127px;}
.ws22_c00001{word-spacing:-7.951965px;}
.ws1b5_c00001{word-spacing:-7.853529px;}
.ws1e5_c00001{word-spacing:-7.778976px;}
.wsde_c00001{word-spacing:-7.777251px;}
.ws5f_c00001{word-spacing:-7.763158px;}
.wsf5_c00001{word-spacing:-7.750000px;}
.ws14e_c00001{word-spacing:-7.547771px;}
.ws18a_c00001{word-spacing:-7.500000px;}
.ws1d5_c00001{word-spacing:-7.498237px;}
.wsb2_c00001{word-spacing:-7.480349px;}
.ws16b_c00001{word-spacing:-7.367412px;}
.ws3d_c00001{word-spacing:-7.280255px;}
.ws5d_c00001{word-spacing:-7.219542px;}
.ws31_c00001{word-spacing:-7.156425px;}
.ws1f8_c00001{word-spacing:-7.099211px;}
.ws186_c00001{word-spacing:-7.058824px;}
.ws219_c00001{word-spacing:-7.051282px;}
.ws198_c00001{word-spacing:-7.050955px;}
.ws199_c00001{word-spacing:-6.968127px;}
.ws102_c00001{word-spacing:-6.924399px;}
.ws11_c00001{word-spacing:-6.914089px;}
.ws126_c00001{word-spacing:-6.895161px;}
.wsd1_c00001{word-spacing:-6.846626px;}
.wsb0_c00001{word-spacing:-6.805556px;}
.ws7a_c00001{word-spacing:-6.775967px;}
.ws12e_c00001{word-spacing:-6.705882px;}
.ws67_c00001{word-spacing:-6.666667px;}
.ws20f_c00001{word-spacing:-6.633293px;}
.ws1e6_c00001{word-spacing:-6.527778px;}
.ws1e8_c00001{word-spacing:-6.498567px;}
.ws113_c00001{word-spacing:-6.463415px;}
.ws19d_c00001{word-spacing:-6.447368px;}
.wsd9_c00001{word-spacing:-6.279070px;}
.ws17e_c00001{word-spacing:-6.250000px;}
.ws236_c00001{word-spacing:-6.184211px;}
.wsd8_c00001{word-spacing:-6.176471px;}
.ws7b_c00001{word-spacing:-6.161725px;}
.wsc0_c00001{word-spacing:-6.078603px;}
.wsab_c00001{word-spacing:-6.067797px;}
.ws78_c00001{word-spacing:-5.986900px;}
.wsf6_c00001{word-spacing:-5.875000px;}
.ws139_c00001{word-spacing:-5.854447px;}
.wsaa_c00001{word-spacing:-5.777887px;}
.wsa9_c00001{word-spacing:-5.648547px;}
.ws156_c00001{word-spacing:-5.632774px;}
.ws18d_c00001{word-spacing:-5.617834px;}
.wsf0_c00001{word-spacing:-5.540541px;}
.ws1cb_c00001{word-spacing:-5.516129px;}
.ws1ca_c00001{word-spacing:-5.478890px;}
.ws1_c00001{word-spacing:-5.476190px;}
.ws9c_c00001{word-spacing:-5.312500px;}
.ws16e_c00001{word-spacing:-5.285714px;}
.ws14f_c00001{word-spacing:-5.254777px;}
.wse3_c00001{word-spacing:-5.243902px;}
.ws197_c00001{word-spacing:-5.151751px;}
.wsee_c00001{word-spacing:-5.141852px;}
.ws191_c00001{word-spacing:-5.128205px;}
.ws1d2_c00001{word-spacing:-5.097800px;}
.ws205_c00001{word-spacing:-5.048251px;}
.ws4c_c00001{word-spacing:-5.044177px;}
.ws170_c00001{word-spacing:-5.012158px;}
.wsf9_c00001{word-spacing:-4.958805px;}
.ws1e3_c00001{word-spacing:-4.944444px;}
.ws72_c00001{word-spacing:-4.857143px;}
.ws105_c00001{word-spacing:-4.802956px;}
.wscb_c00001{word-spacing:-4.768559px;}
.ws124_c00001{word-spacing:-4.750000px;}
.ws1f6_c00001{word-spacing:-4.736842px;}
.ws149_c00001{word-spacing:-4.722222px;}
.wsd3_c00001{word-spacing:-4.500000px;}
.ws10_c00001{word-spacing:-4.444126px;}
.ws11e_c00001{word-spacing:-4.285714px;}
.ws235_c00001{word-spacing:-4.166667px;}
.ws167_c00001{word-spacing:-4.164524px;}
.ws8c_c00001{word-spacing:-4.083558px;}
.wsc7_c00001{word-spacing:-4.058824px;}
.ws1cc_c00001{word-spacing:-4.054054px;}
.ws1c9_c00001{word-spacing:-3.918919px;}
.ws249_c00001{word-spacing:-3.894737px;}
.ws174_c00001{word-spacing:-3.859873px;}
.ws130_c00001{word-spacing:-3.796353px;}
.ws83_c00001{word-spacing:-3.776280px;}
.ws9a_c00001{word-spacing:-3.764331px;}
.ws172_c00001{word-spacing:-3.593750px;}
.wsc2_c00001{word-spacing:-3.582210px;}
.ws1f4_c00001{word-spacing:-3.571429px;}
.ws1b1_c00001{word-spacing:-3.529210px;}
.ws107_c00001{word-spacing:-3.488038px;}
.ws189_c00001{word-spacing:-3.487973px;}
.ws24_c00001{word-spacing:-3.458599px;}
.ws47_c00001{word-spacing:-3.414634px;}
.ws6b_c00001{word-spacing:-3.333333px;}
.ws13f_c00001{word-spacing:-3.324841px;}
.ws188_c00001{word-spacing:-3.250000px;}
.ws169_c00001{word-spacing:-3.194444px;}
.ws52_c00001{word-spacing:-3.125000px;}
.ws5c_c00001{word-spacing:-3.095238px;}
.wsa5_c00001{word-spacing:-3.052402px;}
.ws1f3_c00001{word-spacing:-3.000000px;}
.wsc9_c00001{word-spacing:-2.978898px;}
.ws115_c00001{word-spacing:-2.953437px;}
.wsad_c00001{word-spacing:-2.926108px;}
.ws1f9_c00001{word-spacing:-2.878788px;}
.ws164_c00001{word-spacing:-2.857143px;}
.ws227_c00001{word-spacing:-2.758621px;}
.wsf7_c00001{word-spacing:-2.647059px;}
.ws4b_c00001{word-spacing:-2.608696px;}
.ws20c_c00001{word-spacing:-2.487805px;}
.ws193_c00001{word-spacing:-2.325581px;}
.ws148_c00001{word-spacing:-2.312668px;}
.ws204_c00001{word-spacing:-2.303725px;}
.wsbd_c00001{word-spacing:-2.267516px;}
.ws15a_c00001{word-spacing:-2.162162px;}
.ws179_c00001{word-spacing:-2.118598px;}
.ws1d7_c00001{word-spacing:-1.964960px;}
.ws230_c00001{word-spacing:-1.929936px;}
.ws60_c00001{word-spacing:-1.875000px;}
.ws1bc_c00001{word-spacing:-1.865330px;}
.ws74_c00001{word-spacing:-1.817401px;}
.ws1d8_c00001{word-spacing:-1.742358px;}
.wsa6_c00001{word-spacing:-1.722557px;}
.ws41_c00001{word-spacing:-1.718750px;}
.ws57_c00001{word-spacing:-1.666667px;}
.ws79_c00001{word-spacing:-1.657682px;}
.ws242_c00001{word-spacing:-1.571429px;}
.wsf2_c00001{word-spacing:-1.495039px;}
.ws36_c00001{word-spacing:-1.430318px;}
.ws87_c00001{word-spacing:-1.401747px;}
.ws5e_c00001{word-spacing:-1.290323px;}
.ws1eb_c00001{word-spacing:-1.250000px;}
.ws1f5_c00001{word-spacing:-1.244541px;}
.ws165_c00001{word-spacing:-1.062201px;}
.ws22c_c00001{word-spacing:-0.975610px;}
.ws10b_c00001{word-spacing:-0.957055px;}
.ws8b_c00001{word-spacing:-0.858736px;}
.ws200_c00001{word-spacing:-0.825688px;}
.ws10a_c00001{word-spacing:-0.803571px;}
.ws101_c00001{word-spacing:-0.769231px;}
.wsd_c00001{word-spacing:-0.754190px;}
.ws247_c00001{word-spacing:-0.714286px;}
.ws214_c00001{word-spacing:-0.517241px;}
.ws19e_c00001{word-spacing:-0.187500px;}
.ws15f_c00001{word-spacing:-0.146132px;}
.ws151_c00001{word-spacing:-0.142857px;}
.ws145_c00001{word-spacing:-0.061856px;}
.ws1ec_c00001{word-spacing:-0.051546px;}
.ws1e7_c00001{word-spacing:-0.041237px;}
.ws143_c00001{word-spacing:-0.030928px;}
.ws24b_c00001{word-spacing:-0.020619px;}
.wse_c00001{word-spacing:0.000000px;}
.ws6e_c00001{word-spacing:0.095541px;}
.ws244_c00001{word-spacing:0.138889px;}
.ws1c4_c00001{word-spacing:0.166667px;}
.ws1be_c00001{word-spacing:0.229299px;}
.wsf4_c00001{word-spacing:0.238095px;}
.ws55_c00001{word-spacing:0.277778px;}
.ws108_c00001{word-spacing:0.311218px;}
.ws1c2_c00001{word-spacing:0.324841px;}
.ws75_c00001{word-spacing:0.562061px;}
.ws216_c00001{word-spacing:0.853659px;}
.wsbf_c00001{word-spacing:0.888268px;}
.wsc4_c00001{word-spacing:1.000000px;}
.wsca_c00001{word-spacing:1.153846px;}
.ws1a1_c00001{word-spacing:1.250000px;}
.wse1_c00001{word-spacing:1.289593px;}
.ws63_c00001{word-spacing:1.312715px;}
.ws1fa_c00001{word-spacing:1.323024px;}
.ws129_c00001{word-spacing:1.343643px;}
.ws7d_c00001{word-spacing:1.473934px;}
.ws1d3_c00001{word-spacing:1.666667px;}
.wse4_c00001{word-spacing:1.710526px;}
.ws1fd_c00001{word-spacing:1.717557px;}
.ws23_c00001{word-spacing:1.757962px;}
.ws210_c00001{word-spacing:1.785714px;}
.ws7f_c00001{word-spacing:1.833333px;}
.ws16d_c00001{word-spacing:1.857143px;}
.ws3b_c00001{word-spacing:1.873362px;}
.ws16a_c00001{word-spacing:1.891125px;}
.ws86_c00001{word-spacing:1.904884px;}
.ws10d_c00001{word-spacing:1.944444px;}
.ws4f_c00001{word-spacing:2.229050px;}
.wsd6_c00001{word-spacing:2.278481px;}
.wsbc_c00001{word-spacing:2.307692px;}
.ws93_c00001{word-spacing:2.435897px;}
.ws238_c00001{word-spacing:2.526316px;}
.ws62_c00001{word-spacing:2.666667px;}
.ws50_c00001{word-spacing:2.875000px;}
.ws4_c00001{word-spacing:2.905232px;}
.ws12f_c00001{word-spacing:2.909091px;}
.ws104_c00001{word-spacing:3.000000px;}
.ws128_c00001{word-spacing:3.029740px;}
.ws20b_c00001{word-spacing:3.055556px;}
.ws137_c00001{word-spacing:3.071006px;}
.wsd4_c00001{word-spacing:3.091703px;}
.ws231_c00001{word-spacing:3.125000px;}
.ws120_c00001{word-spacing:3.183406px;}
.ws1a5_c00001{word-spacing:3.250000px;}
.ws56_c00001{word-spacing:3.289474px;}
.wse2_c00001{word-spacing:3.405498px;}
.ws1e1_c00001{word-spacing:3.541779px;}
.ws1e_c00001{word-spacing:3.554140px;}
.ws2d_c00001{word-spacing:3.589744px;}
.ws6f_c00001{word-spacing:3.695418px;}
.ws20e_c00001{word-spacing:3.750000px;}
.ws84_c00001{word-spacing:3.849057px;}
.ws24c_c00001{word-spacing:3.937720px;}
.ws1b2_c00001{word-spacing:3.938547px;}
.wseb_c00001{word-spacing:3.985075px;}
.ws23c_c00001{word-spacing:4.045410px;}
.ws88_c00001{word-spacing:4.058824px;}
.ws23f_c00001{word-spacing:4.062500px;}
.ws12d_c00001{word-spacing:4.094293px;}
.ws24d_c00001{word-spacing:4.107143px;}
.ws1e9_c00001{word-spacing:4.151862px;}
.ws19c_c00001{word-spacing:4.166667px;}
.ws21b_c00001{word-spacing:4.230769px;}
.ws22d_c00001{word-spacing:4.375000px;}
.wsdd_c00001{word-spacing:4.487106px;}
.ws6d_c00001{word-spacing:4.487662px;}
.ws178_c00001{word-spacing:4.511450px;}
.ws109_c00001{word-spacing:4.558952px;}
.ws122_c00001{word-spacing:4.696970px;}
.ws22e_c00001{word-spacing:4.736842px;}
.ws1c0_c00001{word-spacing:4.750000px;}
.ws138_c00001{word-spacing:4.817629px;}
.ws136_c00001{word-spacing:4.976808px;}
.ws22f_c00001{word-spacing:5.221954px;}
.ws3c_c00001{word-spacing:5.277778px;}
.wsa3_c00001{word-spacing:5.294118px;}
.ws10c_c00001{word-spacing:5.512821px;}
.wsdc_c00001{word-spacing:5.541401px;}
.ws131_c00001{word-spacing:5.579618px;}
.wse7_c00001{word-spacing:5.619946px;}
.ws32_c00001{word-spacing:5.648045px;}
.ws1a9_c00001{word-spacing:5.750000px;}
.ws229_c00001{word-spacing:5.945946px;}
.ws171_c00001{word-spacing:5.967423px;}
.ws38_c00001{word-spacing:5.976847px;}
.ws54_c00001{word-spacing:6.060606px;}
.ws3e_c00001{word-spacing:6.080863px;}
.ws35_c00001{word-spacing:6.117904px;}
.ws1f_c00001{word-spacing:6.164384px;}
.wsba_c00001{word-spacing:6.341463px;}
.ws146_c00001{word-spacing:6.444444px;}
.ws21a_c00001{word-spacing:6.445887px;}
.ws208_c00001{word-spacing:6.527778px;}
.ws248_c00001{word-spacing:6.537994px;}
.ws168_c00001{word-spacing:6.578947px;}
.ws1da_c00001{word-spacing:6.666667px;}
.ws13a_c00001{word-spacing:6.681223px;}
.ws125_c00001{word-spacing:6.764706px;}
.wsc5_c00001{word-spacing:6.833333px;}
.ws159_c00001{word-spacing:6.841924px;}
.wsb4_c00001{word-spacing:6.962606px;}
.ws22b_c00001{word-spacing:7.100121px;}
.ws76_c00001{word-spacing:7.189349px;}
.ws1c6_c00001{word-spacing:7.203822px;}
.ws42_c00001{word-spacing:7.247335px;}
.ws144_c00001{word-spacing:7.250000px;}
.ws185_c00001{word-spacing:7.500000px;}
.ws9d_c00001{word-spacing:7.584906px;}
.ws22a_c00001{word-spacing:7.625000px;}
.ws23e_c00001{word-spacing:7.763158px;}
.ws48_c00001{word-spacing:7.768559px;}
.ws1fc_c00001{word-spacing:7.833333px;}
.ws103_c00001{word-spacing:7.894737px;}
.wse0_c00001{word-spacing:7.925501px;}
.ws1ab_c00001{word-spacing:8.026316px;}
.ws12a_c00001{word-spacing:8.055556px;}
.ws3a_c00001{word-spacing:8.232409px;}
.ws187_c00001{word-spacing:8.387097px;}
.ws176_c00001{word-spacing:8.410133px;}
.ws181_c00001{word-spacing:8.472222px;}
.wsb6_c00001{word-spacing:8.481737px;}
.ws246_c00001{word-spacing:8.611111px;}
.wsdf_c00001{word-spacing:8.819026px;}
.ws196_c00001{word-spacing:8.823529px;}
.wsef_c00001{word-spacing:8.996381px;}
.ws13b_c00001{word-spacing:9.000000px;}
.ws203_c00001{word-spacing:9.032569px;}
.wsae_c00001{word-spacing:9.114625px;}
.ws1e2_c00001{word-spacing:9.355795px;}
.ws1f0_c00001{word-spacing:9.375423px;}
.wsfa_c00001{word-spacing:9.509434px;}
.ws207_c00001{word-spacing:9.560137px;}
.ws190_c00001{word-spacing:9.736842px;}
.ws0_c00001{word-spacing:9.756098px;}
.ws21_c00001{word-spacing:10.000000px;}
.ws1b4_c00001{word-spacing:10.010782px;}
.ws6c_c00001{word-spacing:10.150784px;}
.ws5a_c00001{word-spacing:10.169054px;}
.ws80_c00001{word-spacing:10.266525px;}
.ws1ea_c00001{word-spacing:10.361917px;}
.wsda_c00001{word-spacing:10.405405px;}
.ws153_c00001{word-spacing:10.428571px;}
.wsb_c00001{word-spacing:10.504298px;}
.ws97_c00001{word-spacing:10.637002px;}
.wsf_c00001{word-spacing:10.642458px;}
.ws40_c00001{word-spacing:10.764706px;}
.ws19b_c00001{word-spacing:10.857143px;}
.ws18f_c00001{word-spacing:11.043668px;}
.wsfb_c00001{word-spacing:11.052632px;}
.ws225_c00001{word-spacing:11.093750px;}
.ws49_c00001{word-spacing:11.197452px;}
.wsd0_c00001{word-spacing:11.250000px;}
.wsa7_c00001{word-spacing:11.621993px;}
.ws46_c00001{word-spacing:11.666667px;}
.ws166_c00001{word-spacing:11.848769px;}
.ws28_c00001{word-spacing:11.875000px;}
.ws44_c00001{word-spacing:11.935310px;}
.ws7e_c00001{word-spacing:11.941176px;}
.ws111_c00001{word-spacing:12.166466px;}
.wscc_c00001{word-spacing:12.176471px;}
.ws1e0_c00001{word-spacing:12.444444px;}
.ws5b_c00001{word-spacing:12.477684px;}
.ws77_c00001{word-spacing:12.818182px;}
.ws224_c00001{word-spacing:12.894737px;}
.ws127_c00001{word-spacing:13.124169px;}
.wsac_c00001{word-spacing:13.447307px;}
.ws157_c00001{word-spacing:13.472222px;}
.ws51_c00001{word-spacing:13.488372px;}
.wse8_c00001{word-spacing:13.632087px;}
.ws1bd_c00001{word-spacing:13.787696px;}
.ws8e_c00001{word-spacing:13.787879px;}
.ws15e_c00001{word-spacing:13.816514px;}
.ws21d_c00001{word-spacing:13.833333px;}
.ws14_c00001{word-spacing:13.947368px;}
.ws1c7_c00001{word-spacing:14.174785px;}
.ws64_c00001{word-spacing:14.467049px;}
.ws1b6_c00001{word-spacing:14.500000px;}
.ws19a_c00001{word-spacing:14.523732px;}
.ws16f_c00001{word-spacing:14.647059px;}
.ws13d_c00001{word-spacing:14.727273px;}
.wsf1_c00001{word-spacing:14.751592px;}
.ws114_c00001{word-spacing:14.838710px;}
.ws1b_c00001{word-spacing:15.000000px;}
.wsdb_c00001{word-spacing:15.079681px;}
.ws180_c00001{word-spacing:15.166667px;}
.ws68_c00001{word-spacing:15.215938px;}
.ws223_c00001{word-spacing:15.596859px;}
.ws192_c00001{word-spacing:15.707547px;}
.ws1fb_c00001{word-spacing:15.750000px;}
.ws59_c00001{word-spacing:15.833333px;}
.ws140_c00001{word-spacing:15.940893px;}
.ws3_c00001{word-spacing:16.000000px;}
.ws96_c00001{word-spacing:16.257611px;}
.ws81_c00001{word-spacing:16.395349px;}
.ws133_c00001{word-spacing:16.432990px;}
.wsed_c00001{word-spacing:16.500000px;}
.ws173_c00001{word-spacing:16.562500px;}
.ws9f_c00001{word-spacing:16.568807px;}
.ws1cf_c00001{word-spacing:16.785714px;}
.ws132_c00001{word-spacing:16.833333px;}
.ws209_c00001{word-spacing:16.875614px;}
.ws19f_c00001{word-spacing:16.921114px;}
.ws152_c00001{word-spacing:17.247978px;}
.ws1ad_c00001{word-spacing:17.250905px;}
.ws10e_c00001{word-spacing:17.294118px;}
.ws18c_c00001{word-spacing:17.647059px;}
.ws213_c00001{word-spacing:17.919040px;}
.wsfe_c00001{word-spacing:18.000000px;}
.ws18_c00001{word-spacing:18.125000px;}
.ws1ae_c00001{word-spacing:18.184049px;}
.ws17a_c00001{word-spacing:18.583658px;}
.ws1ed_c00001{word-spacing:18.802548px;}
.ws85_c00001{word-spacing:18.973462px;}
.ws13e_c00001{word-spacing:19.582915px;}
.ws4e_c00001{word-spacing:19.714286px;}
.wsc8_c00001{word-spacing:19.968153px;}
.ws29_c00001{word-spacing:19.994638px;}
.ws53_c00001{word-spacing:20.484241px;}
.ws9b_c00001{word-spacing:20.620087px;}
.ws1d4_c00001{word-spacing:21.162847px;}
.ws15d_c00001{word-spacing:21.226415px;}
.ws8f_c00001{word-spacing:21.470588px;}
.ws21c_c00001{word-spacing:21.485175px;}
.ws19_c00001{word-spacing:22.142857px;}
.ws1c3_c00001{word-spacing:22.505992px;}
.ws39_c00001{word-spacing:22.588595px;}
.ws1d9_c00001{word-spacing:22.812500px;}
.ws7_c00001{word-spacing:23.211796px;}
.ws1b7_c00001{word-spacing:23.428571px;}
.ws217_c00001{word-spacing:23.449541px;}
.ws233_c00001{word-spacing:23.472222px;}
.ws1af_c00001{word-spacing:24.975550px;}
.ws5_c00001{word-spacing:25.714286px;}
.ws220_c00001{word-spacing:25.750000px;}
.ws1d0_c00001{word-spacing:26.054983px;}
.ws18e_c00001{word-spacing:26.101473px;}
.ws226_c00001{word-spacing:26.181818px;}
.ws1bb_c00001{word-spacing:26.428954px;}
.ws1dc_c00001{word-spacing:28.426230px;}
.ws12_c00001{word-spacing:29.279855px;}
.ws2c_c00001{word-spacing:29.285714px;}
.wsb5_c00001{word-spacing:29.583333px;}
.wsb9_c00001{word-spacing:30.495340px;}
.ws71_c00001{word-spacing:31.055866px;}
.ws1ba_c00001{word-spacing:32.250000px;}
.ws118_c00001{word-spacing:33.057437px;}
.ws27_c00001{word-spacing:34.642857px;}
.ws1ce_c00001{word-spacing:35.333333px;}
.ws9_c00001{word-spacing:35.833333px;}
.ws117_c00001{word-spacing:35.925602px;}
.ws8_c00001{word-spacing:36.000000px;}
.ws8d_c00001{word-spacing:36.695418px;}
.ws11b_c00001{word-spacing:39.168317px;}
.wsa_c00001{word-spacing:39.750000px;}
.ws2b_c00001{word-spacing:40.000000px;}
.ws2_c00001{word-spacing:41.000000px;}
.ws6_c00001{word-spacing:44.166667px;}
.ws37_c00001{word-spacing:46.503979px;}
.ws1dd_c00001{word-spacing:48.503817px;}
.ws1db_c00001{word-spacing:50.416667px;}
.ws1a7_c00001{word-spacing:51.887574px;}
.wsfc_c00001{word-spacing:53.966261px;}
.wsbb_c00001{word-spacing:59.721619px;}
.wsb7_c00001{word-spacing:60.000000px;}
.ws1f7_c00001{word-spacing:61.710526px;}
.wsa2_c00001{word-spacing:66.000000px;}
.ws95_c00001{word-spacing:66.315789px;}
.ws239_c00001{word-spacing:67.000000px;}
.wsb8_c00001{word-spacing:67.380952px;}
.ws2a_c00001{word-spacing:67.631579px;}
.ws177_c00001{word-spacing:69.343788px;}
.ws99_c00001{word-spacing:69.605263px;}
.ws1cd_c00001{word-spacing:70.921053px;}
.ws30_c00001{word-spacing:71.944444px;}
.ws1df_c00001{word-spacing:84.573248px;}
.ws182_c00001{word-spacing:90.000000px;}
.ws234_c00001{word-spacing:120.647887px;}
.ws21e_c00001{word-spacing:135.125000px;}
.ws100_c00001{word-spacing:137.916667px;}
.ws211_c00001{word-spacing:140.000000px;}
.ws218_c00001{word-spacing:140.144330px;}
.ws161_c00001{word-spacing:140.437500px;}
.ws1ee_c00001{word-spacing:140.568182px;}
.ws98_c00001{word-spacing:142.252129px;}
.ws21f_c00001{word-spacing:151.821429px;}
.ws17d_c00001{word-spacing:160.833333px;}
.wsff_c00001{word-spacing:168.125000px;}
.ws24a_c00001{word-spacing:169.166667px;}
.ws228_c00001{word-spacing:171.138686px;}
.ws206_c00001{word-spacing:176.748092px;}
.ws23a_c00001{word-spacing:192.000000px;}
.ws163_c00001{word-spacing:193.250000px;}
.ws2e_c00001{word-spacing:193.947368px;}
.ws162_c00001{word-spacing:226.285714px;}
.ws11a_c00001{word-spacing:351.938931px;}
.ws11f_c00001{word-spacing:382.000000px;}
.ws11c_c00001{word-spacing:440.333333px;}
.ws13c_c00001{word-spacing:448.500000px;}
.ws1a3_c00001{word-spacing:457.857143px;}
.ws1ef_c00001{word-spacing:478.500000px;}
.wsd5_c00001{word-spacing:493.000000px;}
.ws232_c00001{word-spacing:703.055556px;}
.ws11d_c00001{word-spacing:737.714286px;}
.ws237_c00001{word-spacing:815.142857px;}
.ws241_c00001{word-spacing:840.000000px;}
.ws23b_c00001{word-spacing:860.018692px;}
.ws1aa_c00001{word-spacing:995.000000px;}
.ws1a2_c00001{word-spacing:1015.000000px;}
.ws14a_c00001{word-spacing:1209.428571px;}
.ws1a0_c00001{word-spacing:1285.145038px;}
.wsc1_c00001{word-spacing:1342.000000px;}
.ws1a4_c00001{word-spacing:1457.857143px;}
.ws14c_c00001{word-spacing:1791.070423px;}
.wsd2_c00001{word-spacing:2299.517241px;}
.ws1bf_c00001{word-spacing:2465.034483px;}
.ws142_c00001{word-spacing:2548.333333px;}
.ws141_c00001{word-spacing:2598.333333px;}
.wse6_c00001{word-spacing:4934.000000px;}
.ws1ff_c00001{word-spacing:13827.849057px;}
._a_c00001{margin-left:-70.000000px;}
._20_c00001{margin-left:-63.000000px;}
._1c_c00001{margin-left:-61.426230px;}
._4_c00001{margin-left:-59.285714px;}
._3_c00001{margin-left:-55.714286px;}
._1b_c00001{margin-left:-44.571429px;}
._19_c00001{margin-left:-21.875274px;}
._11_c00001{width:3.571429px;}
._21_c00001{width:12.313487px;}
._17_c00001{width:19.910653px;}
._1f_c00001{width:22.153846px;}
._8_c00001{width:24.721649px;}
._f_c00001{width:26.954774px;}
._16_c00001{width:28.916442px;}
._e_c00001{width:30.277778px;}
._1e_c00001{width:31.598253px;}
._c_c00001{width:34.624204px;}
._1d_c00001{width:36.052632px;}
._13_c00001{width:38.232558px;}
._b_c00001{width:43.257611px;}
._1a_c00001{width:44.280323px;}
._d_c00001{width:46.994638px;}
._7_c00001{width:50.211796px;}
._14_c00001{width:52.142857px;}
._5_c00001{width:55.937500px;}
._12_c00001{width:59.062500px;}
._2_c00001{width:64.642857px;}
._0_c00001{width:65.833333px;}
._1_c00001{width:70.000000px;}
._10_c00001{width:74.166667px;}
._15_c00001{width:170.000000px;}
._9_c00001{width:236.071429px;}
._6_c00001{width:285.064343px;}
._22_c00001{width:1811.571429px;}
._18_c00001{width:3245.000000px;}
.fc0_c00001{color:transparent;}
.fs15_c00001{font-size:18.000000px;}
.fsb_c00001{font-size:24.000000px;}
.fsa_c00001{font-size:30.000000px;}
.fs4_c00001{font-size:36.000000px;}
.fsd_c00001{font-size:42.000000px;}
.fsc_c00001{font-size:48.000000px;}
.fs3_c00001{font-size:54.000000px;}
.fs1_c00001{font-size:60.000000px;}
.fs2_c00001{font-size:66.000000px;}
.fs5_c00001{font-size:72.000000px;}
.fs8_c00001{font-size:78.000000px;}
.fs6_c00001{font-size:84.000000px;}
.fs9_c00001{font-size:90.000000px;}
.fs0_c00001{font-size:96.000000px;}
.fs7_c00001{font-size:102.000000px;}
.fs14_c00001{font-size:108.000000px;}
.fs16_c00001{font-size:114.000000px;}
.fs17_c00001{font-size:120.000000px;}
.fs18_c00001{font-size:126.000000px;}
.fs1d_c00001{font-size:138.000000px;}
.fs1a_c00001{font-size:144.000000px;}
.fs13_c00001{font-size:150.000000px;}
.fs1b_c00001{font-size:180.000000px;}
.fs19_c00001{font-size:198.000000px;}
.fs1c_c00001{font-size:234.000000px;}
.fsf_c00001{font-size:360.000000px;}
.fse_c00001{font-size:372.000000px;}
.fs11_c00001{font-size:396.000000px;}
.fs10_c00001{font-size:516.000000px;}
.fs12_c00001{font-size:696.000000px;}
.y0_c00001{bottom:0.000000px;}
.ye62_c00001{bottom:8.700000px;}
.ycd9_c00001{bottom:15.450000px;}
.y106c_c00001{bottom:20.100000px;}
.y3b8_c00001{bottom:25.200000px;}
.ye4d_c00001{bottom:54.000000px;}
.y106d_c00001{bottom:82.800000px;}
.yef5_c00001{bottom:137.100000px;}
.y106b_c00001{bottom:142.500000px;}
.y8d3_c00001{bottom:155.550000px;}
.yd3b_c00001{bottom:156.300000px;}
.yd6c_c00001{bottom:157.650000px;}
.ybb8_c00001{bottom:159.900000px;}
.yef4_c00001{bottom:162.300000px;}
.yeba_c00001{bottom:163.800000px;}
.y14a_c00001{bottom:166.350000px;}
.y8d2_c00001{bottom:166.650000px;}
.y84e_c00001{bottom:167.400000px;}
.yd93_c00001{bottom:168.900000px;}
.yc9a_c00001{bottom:170.700000px;}
.yafc_c00001{bottom:171.750000px;}
.y9ae_c00001{bottom:172.050000px;}
.y387_c00001{bottom:172.500000px;}
.yf6c_c00001{bottom:172.800000px;}
.y6c_c00001{bottom:173.100000px;}
.y813_c00001{bottom:173.550000px;}
.ya15_c00001{bottom:173.850000px;}
.y9e1_c00001{bottom:174.600000px;}
.y8ad_c00001{bottom:174.900000px;}
.y8ae_c00001{bottom:175.650000px;}
.y5c8_c00001{bottom:176.400000px;}
.y320_c00001{bottom:176.700000px;}
.yf1b_c00001{bottom:177.000000px;}
.y9ad_c00001{bottom:177.150000px;}
.yf42_c00001{bottom:178.500000px;}
.y9ac_c00001{bottom:178.650000px;}
.ye0c_c00001{bottom:178.950000px;}
.y105b_c00001{bottom:179.250000px;}
.yeaf_c00001{bottom:180.300000px;}
.y9cc_c00001{bottom:180.750000px;}
.ye9e_c00001{bottom:181.050000px;}
.y614_c00001{bottom:181.500000px;}
.y949_c00001{bottom:181.800000px;}
.y57b_c00001{bottom:182.100000px;}
.ycea_c00001{bottom:182.400000px;}
.yb5a_c00001{bottom:182.550000px;}
.y8d0_c00001{bottom:182.850000px;}
.y991_c00001{bottom:183.600000px;}
.y8d1_c00001{bottom:183.900000px;}
.yfad_c00001{bottom:184.050000px;}
.yeea_c00001{bottom:184.350000px;}
.y6b4_c00001{bottom:184.650000px;}
.y552_c00001{bottom:185.100000px;}
.yd3a_c00001{bottom:185.250000px;}
.y8ac_c00001{bottom:185.700000px;}
.y149_c00001{bottom:186.000000px;}
.y26a_c00001{bottom:186.150000px;}
.y924_c00001{bottom:186.300000px;}
.yc05_c00001{bottom:186.450000px;}
.ya6b_c00001{bottom:186.600000px;}
.yfd8_c00001{bottom:186.750000px;}
.y84d_c00001{bottom:186.900000px;}
.y1ac_c00001{bottom:187.200000px;}
.yc84_c00001{bottom:187.500000px;}
.yc99_c00001{bottom:187.650000px;}
.yf09_c00001{bottom:187.950000px;}
.ybe0_c00001{bottom:188.250000px;}
.yd62_c00001{bottom:188.400000px;}
.y26b_c00001{bottom:188.700000px;}
.y7c7_c00001{bottom:189.000000px;}
.y1032_c00001{bottom:189.450000px;}
.y114_c00001{bottom:189.750000px;}
.y4dd_c00001{bottom:189.900000px;}
.ybb7_c00001{bottom:190.050000px;}
.ydbe_c00001{bottom:190.200000px;}
.y213_c00001{bottom:190.500000px;}
.y812_c00001{bottom:190.800000px;}
.y35_c00001{bottom:190.950000px;}
.y2cb_c00001{bottom:191.100000px;}
.y4df_c00001{bottom:191.250000px;}
.y5c7_c00001{bottom:191.550000px;}
.y6b_c00001{bottom:191.850000px;}
.y71e_c00001{bottom:192.000000px;}
.y8f0_c00001{bottom:192.150000px;}
.y1e3_c00001{bottom:192.300000px;}
.y29c_c00001{bottom:192.600000px;}
.y9fb_c00001{bottom:192.750000px;}
.y767_c00001{bottom:192.900000px;}
.y73f_c00001{bottom:193.050000px;}
.y9cb_c00001{bottom:193.350000px;}
.y17b_c00001{bottom:193.650000px;}
.yb6e_c00001{bottom:193.800000px;}
.ycca_c00001{bottom:193.950000px;}
.y788_c00001{bottom:194.100000px;}
.y7a8_c00001{bottom:194.400000px;}
.yf6b_c00001{bottom:194.550000px;}
.y354_c00001{bottom:194.700000px;}
.yde2_c00001{bottom:194.850000px;}
.y436_c00001{bottom:195.000000px;}
.y40b_c00001{bottom:195.150000px;}
.y4fe_c00001{bottom:195.450000px;}
.yfbb_c00001{bottom:195.750000px;}
.ye86_c00001{bottom:195.900000px;}
.y29f_c00001{bottom:196.050000px;}
.yf5e_c00001{bottom:196.200000px;}
.ye0b_c00001{bottom:196.500000px;}
.yd9_c00001{bottom:196.650000px;}
.yf41_c00001{bottom:196.800000px;}
.ya1_c00001{bottom:196.950000px;}
.y31f_c00001{bottom:197.100000px;}
.y1044_c00001{bottom:197.250000px;}
.y8cf_c00001{bottom:197.700000px;}
.y496_c00001{bottom:198.150000px;}
.y52a_c00001{bottom:198.300000px;}
.y3dc_c00001{bottom:198.600000px;}
.ye38_c00001{bottom:198.750000px;}
.ye4a_c00001{bottom:199.050000px;}
.ydd6_c00001{bottom:199.350000px;}
.y2f6_c00001{bottom:199.500000px;}
.y467_c00001{bottom:199.650000px;}
.y551_c00001{bottom:199.800000px;}
.yad8_c00001{bottom:200.250000px;}
.yce9_c00001{bottom:200.400000px;}
.y613_c00001{bottom:200.550000px;}
.y57a_c00001{bottom:200.850000px;}
.yafb_c00001{bottom:201.000000px;}
.y269_c00001{bottom:201.300000px;}
.y1ab_c00001{bottom:201.600000px;}
.y101b_c00001{bottom:202.050000px;}
.y692_c00001{bottom:202.200000px;}
.ya2d_c00001{bottom:202.350000px;}
.yd1d_c00001{bottom:202.500000px;}
.y6b3_c00001{bottom:202.650000px;}
.yc98_c00001{bottom:202.800000px;}
.y979_c00001{bottom:202.950000px;}
.y1002_c00001{bottom:203.100000px;}
.y113_c00001{bottom:203.400000px;}
.yed6_c00001{bottom:203.700000px;}
.y148_c00001{bottom:204.000000px;}
.y3b7_c00001{bottom:204.450000px;}
.y4dc_c00001{bottom:204.600000px;}
.yef3_c00001{bottom:204.750000px;}
.y811_c00001{bottom:204.900000px;}
.y84c_c00001{bottom:205.200000px;}
.y1031_c00001{bottom:205.350000px;}
.y969_c00001{bottom:205.500000px;}
.y34_c00001{bottom:205.650000px;}
.yd6b_c00001{bottom:205.800000px;}
.y66c_c00001{bottom:205.950000px;}
.y766_c00001{bottom:206.250000px;}
.yd39_c00001{bottom:206.550000px;}
.yd61_c00001{bottom:206.700000px;}
.yb45_c00001{bottom:207.000000px;}
.y7c6_c00001{bottom:207.300000px;}
.y386_c00001{bottom:207.450000px;}
.y5c6_c00001{bottom:207.750000px;}
.ydbd_c00001{bottom:207.900000px;}
.y9ab_c00001{bottom:208.050000px;}
.y3dd_c00001{bottom:208.200000px;}
.yb29_c00001{bottom:208.350000px;}
.y17a_c00001{bottom:208.500000px;}
.y212_c00001{bottom:208.800000px;}
.y870_c00001{bottom:209.100000px;}
.yde1_c00001{bottom:209.250000px;}
.y66a_c00001{bottom:209.400000px;}
.yc44_c00001{bottom:209.550000px;}
.y6a_c00001{bottom:209.850000px;}
.y1e2_c00001{bottom:210.000000px;}
.yd8_c00001{bottom:210.300000px;}
.y5a5_c00001{bottom:210.600000px;}
.yf6a_c00001{bottom:210.750000px;}
.ye0a_c00001{bottom:210.900000px;}
.y9fa_c00001{bottom:211.050000px;}
.ybf1_c00001{bottom:211.350000px;}
.y29b_c00001{bottom:211.650000px;}
.yb6d_c00001{bottom:211.800000px;}
.y7a7_c00001{bottom:212.100000px;}
.y787_c00001{bottom:212.400000px;}
.y835_c00001{bottom:212.700000px;}
.y435_c00001{bottom:213.000000px;}
.y4de_c00001{bottom:213.150000px;}
.y550_c00001{bottom:213.450000px;}
.y3db_c00001{bottom:213.750000px;}
.ye85_c00001{bottom:213.900000px;}
.ye2b_c00001{bottom:214.200000px;}
.yf40_c00001{bottom:214.500000px;}
.y31e_c00001{bottom:214.800000px;}
.y5f3_c00001{bottom:214.950000px;}
.yf29_c00001{bottom:215.250000px;}
.y948_c00001{bottom:215.400000px;}
.ye1c_c00001{bottom:215.550000px;}
.ya0_c00001{bottom:215.700000px;}
.yb7b_c00001{bottom:216.000000px;}
.y1aa_c00001{bottom:216.300000px;}
.y2f5_c00001{bottom:216.450000px;}
.y529_c00001{bottom:216.750000px;}
.ybdf_c00001{bottom:217.050000px;}
.y40a_c00001{bottom:217.200000px;}
.yc6f_c00001{bottom:217.350000px;}
.y466_c00001{bottom:217.650000px;}
.y112_c00001{bottom:217.800000px;}
.ydf3_c00001{bottom:217.950000px;}
.ya3e_c00001{bottom:218.100000px;}
.y579_c00001{bottom:218.400000px;}
.yc2e_c00001{bottom:218.550000px;}
.y7e9_c00001{bottom:218.850000px;}
.y978_c00001{bottom:219.150000px;}
.y33_c00001{bottom:219.300000px;}
.y810_c00001{bottom:219.600000px;}
.ycf8_c00001{bottom:219.900000px;}
.y691_c00001{bottom:220.200000px;}
.yfe2_c00001{bottom:220.350000px;}
.y6b2_c00001{bottom:220.500000px;}
.yeb9_c00001{bottom:220.650000px;}
.yd1c_c00001{bottom:220.800000px;}
.yed5_c00001{bottom:220.950000px;}
.y765_c00001{bottom:221.400000px;}
.y147_c00001{bottom:221.700000px;}
.y923_c00001{bottom:221.850000px;}
.y385_c00001{bottom:222.150000px;}
.y9aa_c00001{bottom:222.450000px;}
.y5c5_c00001{bottom:222.600000px;}
.ya58_c00001{bottom:222.750000px;}
.y179_c00001{bottom:222.900000px;}
.y84b_c00001{bottom:223.200000px;}
.yd7f_c00001{bottom:223.500000px;}
.y669_c00001{bottom:223.800000px;}
.yde0_c00001{bottom:223.950000px;}
.yc43_c00001{bottom:224.250000px;}
.y66b_c00001{bottom:224.700000px;}
.ya93_c00001{bottom:225.000000px;}
.y1030_c00001{bottom:225.150000px;}
.yd7_c00001{bottom:225.300000px;}
.yb28_c00001{bottom:226.050000px;}
.ydbc_c00001{bottom:226.200000px;}
.y2ca_c00001{bottom:226.350000px;}
.y88e_c00001{bottom:226.500000px;}
.yf69_c00001{bottom:226.650000px;}
.y211_c00001{bottom:226.800000px;}
.yda9_c00001{bottom:227.100000px;}
.y353_c00001{bottom:227.550000px;}
.y1e1_c00001{bottom:227.700000px;}
.y69_c00001{bottom:227.850000px;}
.y71d_c00001{bottom:228.000000px;}
.y3da_c00001{bottom:228.150000px;}
.yf93_c00001{bottom:228.600000px;}
.yc59_c00001{bottom:228.900000px;}
.y9f9_c00001{bottom:229.050000px;}
.yd38_c00001{bottom:229.200000px;}
.ye2a_c00001{bottom:229.650000px;}
.y947_c00001{bottom:229.800000px;}
.yf68_c00001{bottom:229.950000px;}
.yba5_c00001{bottom:230.100000px;}
.y4b5_c00001{bottom:230.250000px;}
.y786_c00001{bottom:230.400000px;}
.y1a9_c00001{bottom:230.700000px;}
.y434_c00001{bottom:231.000000px;}
.y3b6_c00001{bottom:231.150000px;}
.y4fd_c00001{bottom:231.450000px;}
.y23f_c00001{bottom:231.900000px;}
.y111_c00001{bottom:232.200000px;}
.y31d_c00001{bottom:232.500000px;}
.y5f2_c00001{bottom:232.950000px;}
.y29a_c00001{bottom:233.250000px;}
.y9f_c00001{bottom:233.550000px;}
.y495_c00001{bottom:233.700000px;}
.yf92_c00001{bottom:233.850000px;}
.y32_c00001{bottom:234.000000px;}
.y968_c00001{bottom:234.300000px;}
.y2f4_c00001{bottom:234.750000px;}
.yb10_c00001{bottom:235.050000px;}
.y465_c00001{bottom:235.350000px;}
.y409_c00001{bottom:235.500000px;}
.ydf2_c00001{bottom:235.950000px;}
.y578_c00001{bottom:236.100000px;}
.yfe1_c00001{bottom:236.250000px;}
.y178_c00001{bottom:236.550000px;}
.yabe_c00001{bottom:236.850000px;}
.y764_c00001{bottom:237.000000px;}
.y9a9_c00001{bottom:237.150000px;}
.y5c4_c00001{bottom:237.300000px;}
.y5a4_c00001{bottom:237.600000px;}
.y668_c00001{bottom:237.900000px;}
.y101a_c00001{bottom:238.050000px;}
.y690_c00001{bottom:238.200000px;}
.yc42_c00001{bottom:238.350000px;}
.yd1b_c00001{bottom:238.500000px;}
.yddf_c00001{bottom:238.650000px;}
.yed4_c00001{bottom:238.950000px;}
.ye70_c00001{bottom:239.100000px;}
.yd6_c00001{bottom:239.400000px;}
.yc2d_c00001{bottom:239.700000px;}
.y6f7_c00001{bottom:239.850000px;}
.yb59_c00001{bottom:240.150000px;}
.y384_c00001{bottom:240.450000px;}
.ye61_c00001{bottom:240.750000px;}
.y612_c00001{bottom:240.900000px;}
.yefd_c00001{bottom:241.050000px;}
.y8ce_c00001{bottom:241.200000px;}
.y667_c00001{bottom:241.500000px;}
.y3d9_c00001{bottom:242.250000px;}
.y528_c00001{bottom:242.400000px;}
.ya92_c00001{bottom:242.700000px;}
.y102f_c00001{bottom:243.150000px;}
.y7c5_c00001{bottom:243.300000px;}
.ydbb_c00001{bottom:243.450000px;}
.yed8_c00001{bottom:243.750000px;}
.y946_c00001{bottom:244.200000px;}
.y146_c00001{bottom:244.350000px;}
.y210_c00001{bottom:244.500000px;}
.y9ca_c00001{bottom:244.800000px;}
.y2c9_c00001{bottom:245.100000px;}
.y1e0_c00001{bottom:245.400000px;}
.y352_c00001{bottom:245.700000px;}
.y68_c00001{bottom:245.850000px;}
.y71c_c00001{bottom:246.000000px;}
.y23e_c00001{bottom:246.300000px;}
.y110_c00001{bottom:246.600000px;}
.y977_c00001{bottom:246.900000px;}
.y7a6_c00001{bottom:247.050000px;}
.yb6c_c00001{bottom:247.350000px;}
.yd37_c00001{bottom:247.650000px;}
.yba4_c00001{bottom:247.800000px;}
.y7e8_c00001{bottom:247.950000px;}
.y31_c00001{bottom:248.100000px;}
.y80f_c00001{bottom:248.400000px;}
.y86f_c00001{bottom:248.700000px;}
.y433_c00001{bottom:249.000000px;}
.y3b5_c00001{bottom:249.150000px;}
.y907_c00001{bottom:249.300000px;}
.y4fc_c00001{bottom:249.450000px;}
.ya6a_c00001{bottom:249.600000px;}
.y299_c00001{bottom:249.750000px;}
.y763_c00001{bottom:249.900000px;}
.yc58_c00001{bottom:250.200000px;}
.y31c_c00001{bottom:250.500000px;}
.y177_c00001{bottom:250.800000px;}
.y73e_c00001{bottom:250.950000px;}
.y9e_c00001{bottom:251.250000px;}
.y494_c00001{bottom:251.400000px;}
.y4db_c00001{bottom:251.700000px;}
.yf91_c00001{bottom:251.850000px;}
.y2f3_c00001{bottom:252.000000px;}
.yc41_c00001{bottom:252.750000px;}
.y464_c00001{bottom:253.050000px;}
.y268_c00001{bottom:253.500000px;}
.y577_c00001{bottom:253.800000px;}
.yd5_c00001{bottom:254.100000px;}
.ya2c_c00001{bottom:254.400000px;}
.y5f1_c00001{bottom:254.700000px;}
.yfac_c00001{bottom:255.000000px;}
.y383_c00001{bottom:255.150000px;}
.y5a3_c00001{bottom:255.300000px;}
.y8cd_c00001{bottom:255.600000px;}
.y6b1_c00001{bottom:255.900000px;}
.ydf1_c00001{bottom:256.050000px;}
.y68f_c00001{bottom:256.200000px;}
.y54f_c00001{bottom:256.350000px;}
.y3d8_c00001{bottom:256.650000px;}
.y6dd_c00001{bottom:257.100000px;}
.y922_c00001{bottom:257.550000px;}
.ycd8_c00001{bottom:257.700000px;}
.yabd_c00001{bottom:257.850000px;}
.ybb6_c00001{bottom:258.000000px;}
.y990_c00001{bottom:258.150000px;}
.ye60_c00001{bottom:258.450000px;}
.y945_c00001{bottom:258.900000px;}
.yefc_c00001{bottom:259.050000px;}
.ybde_c00001{bottom:259.200000px;}
.yc97_c00001{bottom:259.500000px;}
.yee9_c00001{bottom:259.800000px;}
.ya91_c00001{bottom:259.950000px;}
.yd60_c00001{bottom:260.250000px;}
.y527_c00001{bottom:260.400000px;}
.y7a5_c00001{bottom:260.700000px;}
.y976_c00001{bottom:261.000000px;}
.y10f_c00001{bottom:261.300000px;}
.ya3d_c00001{bottom:261.450000px;}
.y88d_c00001{bottom:261.750000px;}
.y145_c00001{bottom:262.050000px;}
.y102e_c00001{bottom:262.200000px;}
.y20f_c00001{bottom:262.500000px;}
.y30_c00001{bottom:262.800000px;}
.y2c8_c00001{bottom:263.100000px;}
.y611_c00001{bottom:263.250000px;}
.y351_c00001{bottom:263.400000px;}
.y84a_c00001{bottom:263.550000px;}
.y1df_c00001{bottom:263.700000px;}
.y67_c00001{bottom:263.850000px;}
.yfcc_c00001{bottom:264.150000px;}
.y762_c00001{bottom:264.600000px;}
.yb44_c00001{bottom:264.900000px;}
.y176_c00001{bottom:265.200000px;}
.y640_c00001{bottom:265.350000px;}
.y73d_c00001{bottom:265.650000px;}
.yba3_c00001{bottom:265.800000px;}
.y5c3_c00001{bottom:266.100000px;}
.y86e_c00001{bottom:266.400000px;}
.y432_c00001{bottom:266.700000px;}
.yaeb_c00001{bottom:266.850000px;}
.y906_c00001{bottom:267.000000px;}
.y4fb_c00001{bottom:267.150000px;}
.yad7_c00001{bottom:267.450000px;}
.y298_c00001{bottom:267.750000px;}
.yc2c_c00001{bottom:267.900000px;}
.ye29_c00001{bottom:268.200000px;}
.yd4_c00001{bottom:268.500000px;}
.y493_c00001{bottom:269.100000px;}
.yd92_c00001{bottom:269.250000px;}
.y382_c00001{bottom:269.550000px;}
.y2f2_c00001{bottom:269.700000px;}
.y4da_c00001{bottom:270.000000px;}
.y3d7_c00001{bottom:270.300000px;}
.ydf0_c00001{bottom:270.450000px;}
.yf90_c00001{bottom:270.600000px;}
.y463_c00001{bottom:270.750000px;}
.yc6e_c00001{bottom:271.050000px;}
.y267_c00001{bottom:271.500000px;}
.yce8_c00001{bottom:271.800000px;}
.ya69_c00001{bottom:271.950000px;}
.ya2b_c00001{bottom:272.100000px;}
.yabc_c00001{bottom:272.250000px;}
.y5f0_c00001{bottom:272.400000px;}
.y9d_c00001{bottom:272.550000px;}
.yeae_c00001{bottom:272.700000px;}
.yfab_c00001{bottom:273.000000px;}
.y105a_c00001{bottom:273.150000px;}
.yc04_c00001{bottom:273.300000px;}
.y944_c00001{bottom:273.600000px;}
.y68e_c00001{bottom:273.900000px;}
.ye37_c00001{bottom:274.050000px;}
.y6b0_c00001{bottom:274.200000px;}
.y5a2_c00001{bottom:274.350000px;}
.ycc9_c00001{bottom:274.650000px;}
.y3b4_c00001{bottom:274.800000px;}
.yf5d_c00001{bottom:275.100000px;}
.y921_c00001{bottom:275.250000px;}
.y6dc_c00001{bottom:275.400000px;}
.y98f_c00001{bottom:275.700000px;}
.y7a4_c00001{bottom:275.850000px;}
.y10e_c00001{bottom:276.000000px;}
.ybf0_c00001{bottom:276.150000px;}
.yd7e_c00001{bottom:276.450000px;}
.ye84_c00001{bottom:276.750000px;}
.y2f_c00001{bottom:277.200000px;}
.yd6a_c00001{bottom:277.500000px;}
.yd5f_c00001{bottom:277.800000px;}
.yf28_c00001{bottom:278.250000px;}
.y526_c00001{bottom:278.400000px;}
.ye6f_c00001{bottom:278.550000px;}
.yeb8_c00001{bottom:278.700000px;}
.y101f_c00001{bottom:279.000000px;}
.y7c4_c00001{bottom:279.300000px;}
.y175_c00001{bottom:279.600000px;}
.y73c_c00001{bottom:279.750000px;}
.y9c9_c00001{bottom:279.900000px;}
.y88c_c00001{bottom:280.050000px;}
.ya3c_c00001{bottom:280.200000px;}
.ya98_c00001{bottom:280.350000px;}
.y20e_c00001{bottom:280.500000px;}
.y5c2_c00001{bottom:280.800000px;}
.y350_c00001{bottom:281.100000px;}
.y102d_c00001{bottom:281.250000px;}
.y1de_c00001{bottom:281.400000px;}
.y666_c00001{bottom:281.550000px;}
.y71b_c00001{bottom:281.700000px;}
.y9f8_c00001{bottom:281.850000px;}
.y66_c00001{bottom:282.150000px;}
.yb43_c00001{bottom:282.300000px;}
.yfcb_c00001{bottom:282.450000px;}
.yb6b_c00001{bottom:282.600000px;}
.y144_c00001{bottom:282.900000px;}
.y63f_c00001{bottom:283.350000px;}
.yba2_c00001{bottom:283.500000px;}
.y381_c00001{bottom:283.650000px;}
.ye94_c00001{bottom:283.950000px;}
.y86d_c00001{bottom:284.100000px;}
.y1001_c00001{bottom:284.400000px;}
.yaea_c00001{bottom:284.550000px;}
.y3d6_c00001{bottom:284.700000px;}
.y1a7_c00001{bottom:284.850000px;}
.y905_c00001{bottom:285.000000px;}
.y4fa_c00001{bottom:285.150000px;}
.y2c7_c00001{bottom:285.300000px;}
.y297_c00001{bottom:285.450000px;}
.y1043_c00001{bottom:285.750000px;}
.ye09_c00001{bottom:286.200000px;}
.y31b_c00001{bottom:286.500000px;}
.ydd5_c00001{bottom:286.950000px;}
.y492_c00001{bottom:287.100000px;}
.yd3_c00001{bottom:287.250000px;}
.yb89_c00001{bottom:287.550000px;}
.y4d9_c00001{bottom:287.700000px;}
.yc03_c00001{bottom:288.000000px;}
.yf8f_c00001{bottom:288.300000px;}
.y462_c00001{bottom:288.450000px;}
.y431_c00001{bottom:288.600000px;}
.y1019_c00001{bottom:288.750000px;}
.ya2a_c00001{bottom:289.350000px;}
.y266_c00001{bottom:289.500000px;}
.y54e_c00001{bottom:289.800000px;}
.y10d_c00001{bottom:290.100000px;}
.y5ef_c00001{bottom:290.400000px;}
.yabb_c00001{bottom:290.550000px;}
.y9c_c00001{bottom:290.850000px;}
.y2e_c00001{bottom:291.300000px;}
.y1059_c00001{bottom:291.450000px;}
.ycf7_c00001{bottom:291.600000px;}
.y68d_c00001{bottom:291.900000px;}
.ye36_c00001{bottom:292.050000px;}
.y6db_c00001{bottom:292.650000px;}
.y3b3_c00001{bottom:292.800000px;}
.yf27_c00001{bottom:293.400000px;}
.y920_c00001{bottom:293.550000px;}
.y174_c00001{bottom:293.700000px;}
.y98e_c00001{bottom:294.000000px;}
.y73b_c00001{bottom:294.150000px;}
.ya68_c00001{bottom:294.300000px;}
.ya90_c00001{bottom:294.450000px;}
.y576_c00001{bottom:294.750000px;}
.y5c1_c00001{bottom:295.200000px;}
.yd69_c00001{bottom:295.500000px;}
.yd5e_c00001{bottom:295.800000px;}
.yc40_c00001{bottom:295.950000px;}
.y525_c00001{bottom:296.100000px;}
.yd2_c00001{bottom:296.250000px;}
.yed3_c00001{bottom:296.400000px;}
.ye6e_c00001{bottom:296.550000px;}
.y23d_c00001{bottom:297.000000px;}
.y1a8_c00001{bottom:297.300000px;}
.yc6d_c00001{bottom:297.450000px;}
.y9c8_c00001{bottom:297.600000px;}
.y408_c00001{bottom:297.750000px;}
.y143_c00001{bottom:298.050000px;}
.y102c_c00001{bottom:298.200000px;}
.y88b_c00001{bottom:298.350000px;}
.y20d_c00001{bottom:298.500000px;}
.yfd7_c00001{bottom:298.800000px;}
.y1dd_c00001{bottom:299.100000px;}
.y665_c00001{bottom:299.250000px;}
.y1a6_c00001{bottom:299.550000px;}
.y71a_c00001{bottom:299.700000px;}
.y65_c00001{bottom:299.850000px;}
.y63e_c00001{bottom:300.300000px;}
.yd1a_c00001{bottom:300.600000px;}
.y101e_c00001{bottom:300.750000px;}
.yb6a_c00001{bottom:300.900000px;}
.y975_c00001{bottom:301.350000px;}
.yba1_c00001{bottom:301.500000px;}
.y8ab_c00001{bottom:301.650000px;}
.y943_c00001{bottom:302.100000px;}
.yae9_c00001{bottom:302.250000px;}
.y4b4_c00001{bottom:302.400000px;}
.y833_c00001{bottom:302.700000px;}
.y1008_c00001{bottom:302.850000px;}
.yad6_c00001{bottom:303.150000px;}
.yf08_c00001{bottom:303.300000px;}
.y34f_c00001{bottom:303.450000px;}
.y2c6_c00001{bottom:303.600000px;}
.y296_c00001{bottom:303.750000px;}
.y3d5_c00001{bottom:304.200000px;}
.y10c_c00001{bottom:304.500000px;}
.y491_c00001{bottom:305.100000px;}
.yb88_c00001{bottom:305.250000px;}
.y4d8_c00001{bottom:305.400000px;}
.y2d_c00001{bottom:305.700000px;}
.yc57_c00001{bottom:306.000000px;}
.y761_c00001{bottom:306.150000px;}
.y430_c00001{bottom:306.300000px;}
.y407_c00001{bottom:306.750000px;}
.y610_c00001{bottom:307.050000px;}
.y265_c00001{bottom:307.500000px;}
.ydd4_c00001{bottom:307.800000px;}
.y173_c00001{bottom:307.950000px;}
.y5ee_c00001{bottom:308.100000px;}
.yaba_c00001{bottom:308.250000px;}
.yead_c00001{bottom:308.400000px;}
.y73a_c00001{bottom:308.550000px;}
.y9b_c00001{bottom:308.850000px;}
.yb7a_c00001{bottom:309.000000px;}
.y1058_c00001{bottom:309.150000px;}
.y2f1_c00001{bottom:309.300000px;}
.yc3f_c00001{bottom:309.600000px;}
.y68c_c00001{bottom:309.900000px;}
.ye35_c00001{bottom:310.050000px;}
.y3b2_c00001{bottom:310.500000px;}
.y575_c00001{bottom:310.650000px;}
.ybb5_c00001{bottom:310.950000px;}
.y91f_c00001{bottom:311.250000px;}
.ye55_c00001{bottom:311.400000px;}
.yd1_c00001{bottom:311.700000px;}
.y54d_c00001{bottom:311.850000px;}
.ybef_c00001{bottom:312.150000px;}
.ycb2_c00001{bottom:312.450000px;}
.y102b_c00001{bottom:312.600000px;}
.y80e_c00001{bottom:312.750000px;}
.yd68_c00001{bottom:313.200000px;}
.yee8_c00001{bottom:313.500000px;}
.yd5d_c00001{bottom:313.800000px;}
.y524_c00001{bottom:314.100000px;}
.ye6d_c00001{bottom:314.250000px;}
.y1a5_c00001{bottom:314.400000px;}
.yed2_c00001{bottom:314.700000px;}
.y380_c00001{bottom:314.850000px;}
.y7c3_c00001{bottom:315.000000px;}
.y9c7_c00001{bottom:315.300000px;}
.yfe0_c00001{bottom:315.450000px;}
.y8ef_c00001{bottom:315.750000px;}
.y88a_c00001{bottom:316.050000px;}
.y942_c00001{bottom:316.500000px;}
.y8cc_c00001{bottom:316.800000px;}
.y1dc_c00001{bottom:317.100000px;}
.y664_c00001{bottom:317.250000px;}
.y719_c00001{bottom:317.400000px;}
.ya14_c00001{bottom:317.550000px;}
.y6af_c00001{bottom:317.700000px;}
.y64_c00001{bottom:317.850000px;}
.ya67_c00001{bottom:318.000000px;}
.y63d_c00001{bottom:318.300000px;}
.yfca_c00001{bottom:318.450000px;}
.y7e7_c00001{bottom:318.600000px;}
.y10b_c00001{bottom:318.900000px;}
.y101d_c00001{bottom:319.050000px;}
.y23c_c00001{bottom:319.350000px;}
.yba0_c00001{bottom:319.500000px;}
.y20c_c00001{bottom:319.650000px;}
.ycd7_c00001{bottom:319.800000px;}
.yae8_c00001{bottom:319.950000px;}
.ya57_c00001{bottom:320.100000px;}
.y142_c00001{bottom:320.400000px;}
.y834_c00001{bottom:320.700000px;}
.y2c5_c00001{bottom:320.850000px;}
.y29e_c00001{bottom:321.000000px;}
.y34e_c00001{bottom:321.150000px;}
.yf07_c00001{bottom:321.300000px;}
.y295_c00001{bottom:321.450000px;}
.yb58_c00001{bottom:321.900000px;}
.y172_c00001{bottom:322.050000px;}
.y2c_c00001{bottom:322.200000px;}
.y31a_c00001{bottom:322.500000px;}
.y739_c00001{bottom:322.950000px;}
.y490_c00001{bottom:323.100000px;}
.ye1b_c00001{bottom:323.250000px;}
.y4d7_c00001{bottom:323.400000px;}
.y461_c00001{bottom:324.000000px;}
.y9a8_c00001{bottom:324.300000px;}
.y42f_c00001{bottom:324.600000px;}
.y406_c00001{bottom:324.750000px;}
.y760_c00001{bottom:324.900000px;}
.yfba_c00001{bottom:325.050000px;}
.y4f9_c00001{bottom:325.200000px;}
.y264_c00001{bottom:325.500000px;}
.y5ed_c00001{bottom:325.800000px;}
.yab9_c00001{bottom:325.950000px;}
.yd0_c00001{bottom:326.100000px;}
.yc2b_c00001{bottom:326.250000px;}
.y2f0_c00001{bottom:326.550000px;}
.y9a_c00001{bottom:326.850000px;}
.yfaa_c00001{bottom:327.000000px;}
.yb79_c00001{bottom:327.300000px;}
.ycbb_c00001{bottom:327.450000px;}
.y5a1_c00001{bottom:327.600000px;}
.ye34_c00001{bottom:327.750000px;}
.y68b_c00001{bottom:327.900000px;}
.y3b1_c00001{bottom:328.200000px;}
.y8aa_c00001{bottom:328.350000px;}
.y6da_c00001{bottom:328.650000px;}
.ybb4_c00001{bottom:328.950000px;}
.y1a4_c00001{bottom:329.100000px;}
.y37f_c00001{bottom:329.250000px;}
.y574_c00001{bottom:329.400000px;}
.y54c_c00001{bottom:329.550000px;}
.y98d_c00001{bottom:329.700000px;}
.ybdd_c00001{bottom:329.850000px;}
.ybee_c00001{bottom:330.150000px;}
.y80d_c00001{bottom:330.750000px;}
.y941_c00001{bottom:330.900000px;}
.ycf6_c00001{bottom:331.200000px;}
.y102a_c00001{bottom:331.350000px;}
.yd91_c00001{bottom:331.500000px;}
.yed1_c00001{bottom:331.650000px;}
.yd5c_c00001{bottom:331.800000px;}
.yed7_c00001{bottom:331.950000px;}
.y523_c00001{bottom:332.100000px;}
.y7c2_c00001{bottom:332.250000px;}
.y3d4_c00001{bottom:332.550000px;}
.ydba_c00001{bottom:332.700000px;}
.y10a_c00001{bottom:333.000000px;}
.y20b_c00001{bottom:333.300000px;}
.y889_c00001{bottom:333.450000px;}
.y8ee_c00001{bottom:333.750000px;}
.y8cb_c00001{bottom:334.800000px;}
.y663_c00001{bottom:334.950000px;}
.y1db_c00001{bottom:335.100000px;}
.y718_c00001{bottom:335.400000px;}
.y63c_c00001{bottom:335.550000px;}
.y6ae_c00001{bottom:335.700000px;}
.y63_c00001{bottom:335.850000px;}
.y3af_c00001{bottom:336.150000px;}
.yc02_c00001{bottom:336.300000px;}
.y171_c00001{bottom:336.450000px;}
.yfeb_c00001{bottom:336.600000px;}
.y23b_c00001{bottom:336.900000px;}
.y101c_c00001{bottom:337.050000px;}
.y7e6_c00001{bottom:337.200000px;}
.yb9f_c00001{bottom:337.500000px;}
.ye1a_c00001{bottom:337.650000px;}
.ya56_c00001{bottom:337.800000px;}
.ya97_c00001{bottom:337.950000px;}
.y141_c00001{bottom:338.100000px;}
.y3b0_c00001{bottom:338.250000px;}
.y904_c00001{bottom:338.400000px;}
.ya66_c00001{bottom:338.550000px;}
.y832_c00001{bottom:338.700000px;}
.y2c4_c00001{bottom:338.850000px;}
.yf06_c00001{bottom:339.000000px;}
.y34d_c00001{bottom:339.150000px;}
.y294_c00001{bottom:339.450000px;}
.ye83_c00001{bottom:339.600000px;}
.ycf_c00001{bottom:339.900000px;}
.y319_c00001{bottom:340.500000px;}
.y2b_c00001{bottom:340.650000px;}
.y48f_c00001{bottom:340.800000px;}
.yc2a_c00001{bottom:340.950000px;}
.y460_c00001{bottom:341.250000px;}
.y4d6_c00001{bottom:341.700000px;}
.yc56_c00001{bottom:342.000000px;}
.y75f_c00001{bottom:342.150000px;}
.y42e_c00001{bottom:342.300000px;}
.y405_c00001{bottom:342.450000px;}
.yc83_c00001{bottom:342.750000px;}
.y1a3_c00001{bottom:343.050000px;}
.y37e_c00001{bottom:343.350000px;}
.y263_c00001{bottom:343.500000px;}
.y5ec_c00001{bottom:343.800000px;}
.yab8_c00001{bottom:343.950000px;}
.y2ef_c00001{bottom:344.100000px;}
.ybdc_c00001{bottom:344.250000px;}
.y104f_c00001{bottom:344.550000px;}
.yf10_c00001{bottom:344.850000px;}
.yfa9_c00001{bottom:345.000000px;}
.y940_c00001{bottom:345.300000px;}
.ycba_c00001{bottom:345.450000px;}
.y5a0_c00001{bottom:345.600000px;}
.y68a_c00001{bottom:345.900000px;}
.y3ae_c00001{bottom:346.200000px;}
.y6f6_c00001{bottom:346.350000px;}
.y6d9_c00001{bottom:346.650000px;}
.y7a3_c00001{bottom:346.950000px;}
.y60f_c00001{bottom:347.100000px;}
.y91e_c00001{bottom:347.250000px;}
.y109_c00001{bottom:347.400000px;}
.y54b_c00001{bottom:347.550000px;}
.y99_c00001{bottom:347.700000px;}
.yd7d_c00001{bottom:347.850000px;}
.yeac_c00001{bottom:348.000000px;}
.ybed_c00001{bottom:348.150000px;}
.y80c_c00001{bottom:348.750000px;}
.yf67_c00001{bottom:348.900000px;}
.y1057_c00001{bottom:349.050000px;}
.y967_c00001{bottom:349.200000px;}
.yd5b_c00001{bottom:349.500000px;}
.yed0_c00001{bottom:349.650000px;}
.y86c_c00001{bottom:349.950000px;}
.y522_c00001{bottom:350.100000px;}
.ydb9_c00001{bottom:350.400000px;}
.y170_c00001{bottom:350.550000px;}
.yda8_c00001{bottom:351.000000px;}
.yefb_c00001{bottom:351.150000px;}
.y974_c00001{bottom:351.300000px;}
.ybcb_c00001{bottom:351.600000px;}
.y8ed_c00001{bottom:351.750000px;}
.ye19_c00001{bottom:352.050000px;}
.y403_c00001{bottom:352.500000px;}
.y63b_c00001{bottom:352.800000px;}
.y1da_c00001{bottom:353.100000px;}
.y404_c00001{bottom:353.250000px;}
.yf1a_c00001{bottom:353.400000px;}
.y62_c00001{bottom:353.550000px;}
.y6ad_c00001{bottom:353.700000px;}
.y20a_c00001{bottom:353.850000px;}
.yad5_c00001{bottom:354.300000px;}
.y7e5_c00001{bottom:354.450000px;}
.yd19_c00001{bottom:354.600000px;}
.ye49_c00001{bottom:354.900000px;}
.yc29_c00001{bottom:355.050000px;}
.yb9e_c00001{bottom:355.200000px;}
.yce_c00001{bottom:355.350000px;}
.ya55_c00001{bottom:355.500000px;}
.ya96_c00001{bottom:355.650000px;}
.yb42_c00001{bottom:355.950000px;}
.y4b3_c00001{bottom:356.100000px;}
.y903_c00001{bottom:356.400000px;}
.y2c3_c00001{bottom:356.550000px;}
.y23a_c00001{bottom:356.700000px;}
.y34c_c00001{bottom:356.850000px;}
.y831_c00001{bottom:357.000000px;}
.y293_c00001{bottom:357.150000px;}
.ye82_c00001{bottom:357.300000px;}
.yf66_c00001{bottom:357.450000px;}
.y662_c00001{bottom:357.600000px;}
.y37d_c00001{bottom:357.750000px;}
.y318_c00001{bottom:358.200000px;}
.y2a_c00001{bottom:358.350000px;}
.y48e_c00001{bottom:358.800000px;}
.y4d5_c00001{bottom:359.100000px;}
.yb87_c00001{bottom:359.250000px;}
.y42d_c00001{bottom:359.550000px;}
.ydd3_c00001{bottom:359.700000px;}
.ya8f_c00001{bottom:360.000000px;}
.y75e_c00001{bottom:360.150000px;}
.y402_c00001{bottom:360.300000px;}
.ya65_c00001{bottom:360.450000px;}
.y1042_c00001{bottom:361.050000px;}
.y7a2_c00001{bottom:361.350000px;}
.y4f8_c00001{bottom:361.500000px;}
.yab7_c00001{bottom:361.650000px;}
.ycf5_c00001{bottom:361.800000px;}
.y2ee_c00001{bottom:362.100000px;}
.ye93_c00001{bottom:362.700000px;}
.y45f_c00001{bottom:362.850000px;}
.yfa8_c00001{bottom:363.000000px;}
.ycb9_c00001{bottom:363.150000px;}
.y59f_c00001{bottom:363.600000px;}
.y1a2_c00001{bottom:363.900000px;}
.y93f_c00001{bottom:364.050000px;}
.yc01_c00001{bottom:364.200000px;}
.y6d8_c00001{bottom:364.350000px;}
.y16f_c00001{bottom:364.650000px;}
.y91d_c00001{bottom:364.950000px;}
.y8a9_c00001{bottom:365.100000px;}
.y973_c00001{bottom:365.400000px;}
.y54a_c00001{bottom:365.550000px;}
.y9f7_c00001{bottom:365.700000px;}
.yf3f_c00001{bottom:366.300000px;}
.ye18_c00001{bottom:366.450000px;}
.y80b_c00001{bottom:366.750000px;}
.y98_c00001{bottom:366.900000px;}
.y108_c00001{bottom:367.200000px;}
.yd5a_c00001{bottom:367.500000px;}
.y521_c00001{bottom:367.800000px;}
.y785_c00001{bottom:367.950000px;}
.y3d3_c00001{bottom:368.250000px;}
.y8ec_c00001{bottom:368.400000px;}
.yc55_c00001{bottom:368.550000px;}
.yda7_c00001{bottom:368.700000px;}
.yecf_c00001{bottom:369.150000px;}
.y738_c00001{bottom:369.300000px;}
.ybca_c00001{bottom:369.600000px;}
.y140_c00001{bottom:369.750000px;}
.ycd_c00001{bottom:370.050000px;}
.y661_c00001{bottom:370.200000px;}
.y63a_c00001{bottom:370.500000px;}
.y1029_c00001{bottom:370.950000px;}
.y1d9_c00001{bottom:371.100000px;}
.ya13_c00001{bottom:371.250000px;}
.y61_c00001{bottom:371.400000px;}
.y209_c00001{bottom:371.850000px;}
.y37c_c00001{bottom:372.150000px;}
.ye48_c00001{bottom:372.300000px;}
.y239_c00001{bottom:372.600000px;}
.ybdb_c00001{bottom:372.750000px;}
.yfc9_c00001{bottom:372.900000px;}
.yb78_c00001{bottom:373.050000px;}
.yb9d_c00001{bottom:373.200000px;}
.y7c1_c00001{bottom:373.350000px;}
.ya54_c00001{bottom:373.500000px;}
.y262_c00001{bottom:373.650000px;}
.y1000_c00001{bottom:373.950000px;}
.y4b2_c00001{bottom:374.100000px;}
.y830_c00001{bottom:374.250000px;}
.y902_c00001{bottom:374.400000px;}
.y2c2_c00001{bottom:374.550000px;}
.ye5f_c00001{bottom:374.700000px;}
.y34b_c00001{bottom:374.850000px;}
.y7e4_c00001{bottom:375.000000px;}
.yf65_c00001{bottom:375.150000px;}
.ye81_c00001{bottom:375.300000px;}
.yf0f_c00001{bottom:375.450000px;}
.yd36_c00001{bottom:375.750000px;}
.y45e_c00001{bottom:376.200000px;}
.y29_c00001{bottom:376.350000px;}
.y48d_c00001{bottom:376.500000px;}
.yfb9_c00001{bottom:376.950000px;}
.y4d4_c00001{bottom:377.100000px;}
.y75d_c00001{bottom:377.400000px;}
.y42c_c00001{bottom:377.550000px;}
.y401_c00001{bottom:377.700000px;}
.yc6c_c00001{bottom:378.000000px;}
.y966_c00001{bottom:378.300000px;}
.y93e_c00001{bottom:378.750000px;}
.y16e_c00001{bottom:379.050000px;}
.y849_c00001{bottom:379.350000px;}
.y292_c00001{bottom:379.500000px;}
.ye08_c00001{bottom:379.650000px;}
.ycf4_c00001{bottom:379.800000px;}
.y1018_c00001{bottom:380.100000px;}
.y317_c00001{bottom:380.400000px;}
.yeb7_c00001{bottom:380.550000px;}
.ydef_c00001{bottom:380.850000px;}
.ye33_c00001{bottom:381.150000px;}
.y9a7_c00001{bottom:381.300000px;}
.y3ad_c00001{bottom:381.600000px;}
.y1a1_c00001{bottom:381.900000px;}
.ya64_c00001{bottom:382.050000px;}
.yc00_c00001{bottom:382.200000px;}
.y6d7_c00001{bottom:382.350000px;}
.ye92_c00001{bottom:382.500000px;}
.ya29_c00001{bottom:382.650000px;}
.yefa_c00001{bottom:382.800000px;}
.y7a1_c00001{bottom:382.950000px;}
.yafa_c00001{bottom:383.100000px;}
.y91c_c00001{bottom:383.250000px;}
.yf5c_c00001{bottom:383.400000px;}
.y549_c00001{bottom:383.550000px;}
.yc28_c00001{bottom:383.850000px;}
.yf3e_c00001{bottom:384.300000px;}
.yb57_c00001{bottom:384.450000px;}
.y80a_c00001{bottom:384.750000px;}
.yd90_c00001{bottom:384.900000px;}
.yd59_c00001{bottom:385.200000px;}
.yece_c00001{bottom:385.350000px;}
.ycc_c00001{bottom:385.500000px;}
.y784_c00001{bottom:385.650000px;}
.y520_c00001{bottom:385.800000px;}
.y107_c00001{bottom:385.950000px;}
.yda6_c00001{bottom:386.400000px;}
.y37b_c00001{bottom:386.550000px;}
.y8eb_c00001{bottom:386.700000px;}
.yad4_c00001{bottom:387.000000px;}
.y60e_c00001{bottom:387.300000px;}
.y13f_c00001{bottom:387.450000px;}
.y972_c00001{bottom:387.750000px;}
.y573_c00001{bottom:388.050000px;}
.y660_c00001{bottom:388.500000px;}
.yb27_c00001{bottom:388.800000px;}
.ya12_c00001{bottom:388.950000px;}
.y60_c00001{bottom:389.100000px;}
.y1028_c00001{bottom:389.250000px;}
.y208_c00001{bottom:389.550000px;}
.y888_c00001{bottom:389.850000px;}
.y7a0_c00001{bottom:390.150000px;}
.y3d2_c00001{bottom:390.300000px;}
.yef2_c00001{bottom:390.600000px;}
.ya53_c00001{bottom:391.200000px;}
.y238_c00001{bottom:391.350000px;}
.y45d_c00001{bottom:391.650000px;}
.y5c0_c00001{bottom:392.100000px;}
.y2c1_c00001{bottom:392.250000px;}
.ybec_c00001{bottom:392.400000px;}
.y965_c00001{bottom:392.700000px;}
.y34a_c00001{bottom:392.850000px;}
.yc82_c00001{bottom:393.000000px;}
.y16d_c00001{bottom:393.150000px;}
.yf64_c00001{bottom:393.450000px;}
.yd35_c00001{bottom:393.750000px;}
.yef9_c00001{bottom:393.900000px;}
.y28_c00001{bottom:394.050000px;}
.yc10_c00001{bottom:394.200000px;}
.y48c_c00001{bottom:394.500000px;}
.y4d3_c00001{bottom:394.800000px;}
.ya8e_c00001{bottom:394.950000px;}
.y42b_c00001{bottom:395.550000px;}
.y400_c00001{bottom:395.700000px;}
.y639_c00001{bottom:396.000000px;}
.yb86_c00001{bottom:396.600000px;}
.y8ca_c00001{bottom:396.750000px;}
.y97_c00001{bottom:396.900000px;}
.y848_c00001{bottom:397.050000px;}
.yab6_c00001{bottom:397.350000px;}
.y291_c00001{bottom:397.500000px;}
.ye07_c00001{bottom:397.650000px;}
.y2ed_c00001{bottom:397.800000px;}
.ycb_c00001{bottom:398.100000px;}
.y316_c00001{bottom:398.400000px;}
.ydee_c00001{bottom:398.850000px;}
.yfa7_c00001{bottom:399.000000px;}
.yc27_c00001{bottom:399.300000px;}
.y1a0_c00001{bottom:399.600000px;}
.y59e_c00001{bottom:399.900000px;}
.ye91_c00001{bottom:400.200000px;}
.y6d6_c00001{bottom:400.350000px;}
.y37a_c00001{bottom:400.950000px;}
.y106_c00001{bottom:401.100000px;}
.y548_c00001{bottom:401.550000px;}
.yf3d_c00001{bottom:402.000000px;}
.y9e0_c00001{bottom:402.150000px;}
.y809_c00001{bottom:402.450000px;}
.ybda_c00001{bottom:402.900000px;}
.yd58_c00001{bottom:403.200000px;}
.y783_c00001{bottom:403.350000px;}
.y29d_c00001{bottom:403.500000px;}
.y51f_c00001{bottom:403.800000px;}
.y6f5_c00001{bottom:403.950000px;}
.yda5_c00001{bottom:404.100000px;}
.y261_c00001{bottom:404.250000px;}
.ye17_c00001{bottom:404.700000px;}
.y79f_c00001{bottom:404.850000px;}
.y8ea_c00001{bottom:405.000000px;}
.y45c_c00001{bottom:405.300000px;}
.y13e_c00001{bottom:405.750000px;}
.y60d_c00001{bottom:406.050000px;}
.yb26_c00001{bottom:406.500000px;}
.y6ac_c00001{bottom:406.800000px;}
.ya11_c00001{bottom:406.950000px;}
.y5f_c00001{bottom:407.100000px;}
.y964_c00001{bottom:407.250000px;}
.y207_c00001{bottom:407.550000px;}
.y16c_c00001{bottom:407.850000px;}
.y3ac_c00001{bottom:408.300000px;}
.y7c0_c00001{bottom:408.600000px;}
.ya52_c00001{bottom:408.900000px;}
.y237_c00001{bottom:409.050000px;}
.y9a6_c00001{bottom:409.350000px;}
.y4b1_c00001{bottom:409.650000px;}
.y5bf_c00001{bottom:409.800000px;}
.y82f_c00001{bottom:409.950000px;}
.y971_c00001{bottom:410.100000px;}
.y7e3_c00001{bottom:410.250000px;}
.y638_c00001{bottom:410.400000px;}
.y2c0_c00001{bottom:410.550000px;}
.yc81_c00001{bottom:410.700000px;}
.y349_c00001{bottom:410.850000px;}
.yc3e_c00001{bottom:411.150000px;}
.y9a5_c00001{bottom:411.450000px;}
.yeb6_c00001{bottom:411.900000px;}
.y27_c00001{bottom:412.050000px;}
.ye47_c00001{bottom:412.200000px;}
.y48b_c00001{bottom:412.500000px;}
.yc26_c00001{bottom:412.650000px;}
.y4d2_c00001{bottom:412.800000px;}
.ye28_c00001{bottom:412.950000px;}
.yca_c00001{bottom:413.250000px;}
.y3ff_c00001{bottom:413.400000px;}
.y887_c00001{bottom:413.700000px;}
.y9c6_c00001{bottom:414.000000px;}
.yb85_c00001{bottom:414.300000px;}
.yfb8_c00001{bottom:414.450000px;}
.yb0f_c00001{bottom:414.600000px;}
.yc96_c00001{bottom:414.750000px;}
.y379_c00001{bottom:415.050000px;}
.y5eb_c00001{bottom:415.200000px;}
.ye06_c00001{bottom:415.350000px;}
.y2ec_c00001{bottom:415.800000px;}
.y60c_c00001{bottom:416.100000px;}
.ybd9_c00001{bottom:416.250000px;}
.y315_c00001{bottom:416.400000px;}
.yfa6_c00001{bottom:417.000000px;}
.y689_c00001{bottom:417.300000px;}
.ydd2_c00001{bottom:417.600000px;}
.y19f_c00001{bottom:417.900000px;}
.y96_c00001{bottom:418.200000px;}
.y6d5_c00001{bottom:418.350000px;}
.y79e_c00001{bottom:418.500000px;}
.y901_c00001{bottom:418.650000px;}
.y105_c00001{bottom:418.950000px;}
.y547_c00001{bottom:419.250000px;}
.y847_c00001{bottom:419.400000px;}
.yf3c_c00001{bottom:419.700000px;}
.y290_c00001{bottom:420.150000px;}
.yded_c00001{bottom:420.450000px;}
.y75c_c00001{bottom:420.600000px;}
.y45b_c00001{bottom:420.750000px;}
.yd67_c00001{bottom:420.900000px;}
.yd57_c00001{bottom:421.200000px;}
.yecd_c00001{bottom:421.350000px;}
.y51e_c00001{bottom:421.500000px;}
.y963_c00001{bottom:421.650000px;}
.yda4_c00001{bottom:421.800000px;}
.y86b_c00001{bottom:421.950000px;}
.y8e9_c00001{bottom:422.250000px;}
.yad3_c00001{bottom:422.700000px;}
.y16b_c00001{bottom:423.000000px;}
.ycf3_c00001{bottom:423.150000px;}
.ye16_c00001{bottom:423.450000px;}
.y4f7_c00001{bottom:423.600000px;}
.y13d_c00001{bottom:423.750000px;}
.yb56_c00001{bottom:424.050000px;}
.y782_c00001{bottom:424.200000px;}
.y6ab_c00001{bottom:424.500000px;}
.y206_c00001{bottom:424.800000px;}
.ya10_c00001{bottom:424.950000px;}
.y1d8_c00001{bottom:425.100000px;}
.y1027_c00001{bottom:425.550000px;}
.yd18_c00001{bottom:425.850000px;}
.y3ab_c00001{bottom:426.300000px;}
.ya51_c00001{bottom:426.600000px;}
.yc9_c00001{bottom:426.900000px;}
.y236_c00001{bottom:427.050000px;}
.y7bf_c00001{bottom:427.350000px;}
.y4b0_c00001{bottom:427.650000px;}
.y9f6_c00001{bottom:427.800000px;}
.y82e_c00001{bottom:427.950000px;}
.y65f_c00001{bottom:428.100000px;}
.y637_c00001{bottom:428.400000px;}
.y348_c00001{bottom:428.550000px;}
.yc80_c00001{bottom:428.700000px;}
.y7e2_c00001{bottom:429.000000px;}
.ybcc_c00001{bottom:429.150000px;}
.y5e_c00001{bottom:429.300000px;}
.y378_c00001{bottom:429.450000px;}
.yfff_c00001{bottom:429.750000px;}
.y5be_c00001{bottom:429.900000px;}
.y26_c00001{bottom:430.050000px;}
.y48a_c00001{bottom:430.200000px;}
.y4d1_c00001{bottom:430.500000px;}
.ybd8_c00001{bottom:430.650000px;}
.y42a_c00001{bottom:430.950000px;}
.y3fe_c00001{bottom:431.400000px;}
.yb9c_c00001{bottom:431.550000px;}
.y886_c00001{bottom:431.700000px;}
.y2bf_c00001{bottom:431.850000px;}
.y9c5_c00001{bottom:432.000000px;}
.y98c_c00001{bottom:432.300000px;}
.yc95_c00001{bottom:432.600000px;}
.yab5_c00001{bottom:432.750000px;}
.y5ea_c00001{bottom:432.900000px;}
.y8c9_c00001{bottom:433.050000px;}
.yfc8_c00001{bottom:433.200000px;}
.ye05_c00001{bottom:433.350000px;}
.y2eb_c00001{bottom:433.800000px;}
.y104_c00001{bottom:434.100000px;}
.y95_c00001{bottom:434.400000px;}
.yf85_c00001{bottom:434.700000px;}
.y45a_c00001{bottom:434.850000px;}
.yfa5_c00001{bottom:435.000000px;}
.y1017_c00001{bottom:435.150000px;}
.y688_c00001{bottom:435.300000px;}
.y19e_c00001{bottom:435.600000px;}
.ybc9_c00001{bottom:435.900000px;}
.y6d4_c00001{bottom:436.050000px;}
.y91b_c00001{bottom:436.350000px;}
.yaf9_c00001{bottom:436.650000px;}
.y546_c00001{bottom:436.950000px;}
.y16a_c00001{bottom:437.100000px;}
.yd7c_c00001{bottom:437.250000px;}
.ye27_c00001{bottom:437.400000px;}
.yd04_c00001{bottom:437.700000px;}
.y28f_c00001{bottom:438.150000px;}
.ydec_c00001{bottom:438.450000px;}
.yd8f_c00001{bottom:438.600000px;}
.y3d1_c00001{bottom:438.900000px;}
.yfaf_c00001{bottom:439.200000px;}
.y75b_c00001{bottom:439.350000px;}
.y51d_c00001{bottom:439.500000px;}
.yda3_c00001{bottom:439.800000px;}
.y86a_c00001{bottom:439.950000px;}
.y8a8_c00001{bottom:440.250000px;}
.yad2_c00001{bottom:440.400000px;}
.y260_c00001{bottom:440.700000px;}
.y4f6_c00001{bottom:441.300000px;}
.yc25_c00001{bottom:441.450000px;}
.yc8_c00001{bottom:441.600000px;}
.y572_c00001{bottom:441.750000px;}
.ycf2_c00001{bottom:441.900000px;}
.yb55_c00001{bottom:442.050000px;}
.ycb8_c00001{bottom:442.200000px;}
.y60b_c00001{bottom:442.500000px;}
.y808_c00001{bottom:442.650000px;}
.y1d7_c00001{bottom:442.800000px;}
.y1026_c00001{bottom:443.250000px;}
.yb41_c00001{bottom:443.550000px;}
.y377_c00001{bottom:443.850000px;}
.yc54_c00001{bottom:444.300000px;}
.y7be_c00001{bottom:444.600000px;}
.ye5e_c00001{bottom:444.900000px;}
.y235_c00001{bottom:445.050000px;}
.y4af_c00001{bottom:445.350000px;}
.y13c_c00001{bottom:445.650000px;}
.yfdf_c00001{bottom:445.800000px;}
.y5bd_c00001{bottom:446.100000px;}
.y347_c00001{bottom:446.250000px;}
.ybeb_c00001{bottom:446.400000px;}
.y636_c00001{bottom:446.700000px;}
.y79d_c00001{bottom:447.000000px;}
.y1007_c00001{bottom:447.150000px;}
.y5d_c00001{bottom:447.300000px;}
.y103_c00001{bottom:447.450000px;}
.y25_c00001{bottom:447.750000px;}
.yffe_c00001{bottom:448.050000px;}
.y6f4_c00001{bottom:448.200000px;}
.y489_c00001{bottom:448.500000px;}
.y429_c00001{bottom:448.950000px;}
.y3fd_c00001{bottom:449.100000px;}
.y459_c00001{bottom:449.250000px;}
.yb9b_c00001{bottom:449.550000px;}
.y885_c00001{bottom:449.700000px;}
.yce7_c00001{bottom:450.000000px;}
.yb84_c00001{bottom:450.300000px;}
.y5e9_c00001{bottom:450.600000px;}
.y93d_c00001{bottom:450.750000px;}
.y8c8_c00001{bottom:451.050000px;}
.y169_c00001{bottom:451.500000px;}
.y2ea_c00001{bottom:451.800000px;}
.y94_c00001{bottom:452.100000px;}
.ye24_c00001{bottom:452.550000px;}
.yf84_c00001{bottom:452.700000px;}
.yfa4_c00001{bottom:453.000000px;}
.y3aa_c00001{bottom:453.300000px;}
.y19d_c00001{bottom:453.600000px;}
.y59d_c00001{bottom:453.900000px;}
.y98b_c00001{bottom:454.050000px;}
.y6d3_c00001{bottom:454.350000px;}
.y545_c00001{bottom:454.650000px;}
.yd7b_c00001{bottom:454.950000px;}
.yf05_c00001{bottom:455.700000px;}
.y900_c00001{bottom:456.000000px;}
.y28e_c00001{bottom:456.150000px;}
.yd8e_c00001{bottom:456.300000px;}
.yd56_c00001{bottom:456.450000px;}
.y3d0_c00001{bottom:456.900000px;}
.y781_c00001{bottom:457.050000px;}
.y51c_c00001{bottom:457.200000px;}
.yecc_c00001{bottom:457.350000px;}
.ybff_c00001{bottom:457.500000px;}
.ydb8_c00001{bottom:457.800000px;}
.y376_c00001{bottom:457.950000px;}
.yc7_c00001{bottom:458.550000px;}
.yad1_c00001{bottom:458.700000px;}
.y4f5_c00001{bottom:459.300000px;}
.y846_c00001{bottom:459.450000px;}
.ycf1_c00001{bottom:459.600000px;}
.ybd7_c00001{bottom:459.750000px;}
.ya0f_c00001{bottom:459.900000px;}
.yb54_c00001{bottom:460.050000px;}
.y6aa_c00001{bottom:460.200000px;}
.yf26_c00001{bottom:460.500000px;}
.y1d6_c00001{bottom:460.800000px;}
.y807_c00001{bottom:460.950000px;}
.ydde_c00001{bottom:461.100000px;}
.y1056_c00001{bottom:461.250000px;}
.y79c_c00001{bottom:461.400000px;}
.yb40_c00001{bottom:461.550000px;}
.y102_c00001{bottom:461.850000px;}
.ycc8_c00001{bottom:462.300000px;}
.y869_c00001{bottom:462.450000px;}
.ya95_c00001{bottom:462.600000px;}
.y75a_c00001{bottom:462.750000px;}
.y25f_c00001{bottom:462.900000px;}
.yfde_c00001{bottom:463.050000px;}
.y13b_c00001{bottom:463.200000px;}
.y737_c00001{bottom:463.350000px;}
.y458_c00001{bottom:463.650000px;}
.y346_c00001{bottom:463.950000px;}
.y9f5_c00001{bottom:464.100000px;}
.y60a_c00001{bottom:464.400000px;}
.yb25_c00001{bottom:464.700000px;}
.y5c_c00001{bottom:465.000000px;}
.ydeb_c00001{bottom:465.150000px;}
.y24_c00001{bottom:465.450000px;}
.y234_c00001{bottom:465.900000px;}
.y2be_c00001{bottom:466.050000px;}
.y488_c00001{bottom:466.200000px;}
.yffd_c00001{bottom:466.350000px;}
.ye26_c00001{bottom:466.500000px;}
.y428_c00001{bottom:466.650000px;}
.y7bd_c00001{bottom:466.800000px;}
.ya63_c00001{bottom:466.950000px;}
.y3fc_c00001{bottom:467.100000px;}
.y82d_c00001{bottom:467.250000px;}
.y9c4_c00001{bottom:467.550000px;}
.y884_c00001{bottom:467.700000px;}
.y5bc_c00001{bottom:468.000000px;}
.ye80_c00001{bottom:468.150000px;}
.yab4_c00001{bottom:468.300000px;}
.ybea_c00001{bottom:468.450000px;}
.y5e8_c00001{bottom:468.600000px;}
.y8c7_c00001{bottom:468.750000px;}
.yc3d_c00001{bottom:469.050000px;}
.ya8d_c00001{bottom:469.350000px;}
.y2e9_c00001{bottom:469.800000px;}
.y93_c00001{bottom:470.100000px;}
.y687_c00001{bottom:470.550000px;}
.yf83_c00001{bottom:470.700000px;}
.y3a9_c00001{bottom:471.000000px;}
.ycd6_c00001{bottom:471.300000px;}
.ye90_c00001{bottom:471.600000px;}
.y59c_c00001{bottom:471.900000px;}
.y375_c00001{bottom:472.350000px;}
.y544_c00001{bottom:472.650000px;}
.y8ff_c00001{bottom:472.950000px;}
.y28d_c00001{bottom:473.400000px;}
.y9f4_c00001{bottom:473.700000px;}
.yd03_c00001{bottom:474.150000px;}
.yd8d_c00001{bottom:474.300000px;}
.ybd6_c00001{bottom:474.450000px;}
.y51b_c00001{bottom:474.900000px;}
.yecb_c00001{bottom:475.050000px;}
.yc6b_c00001{bottom:475.200000px;}
.y759_c00001{bottom:475.350000px;}
.y79b_c00001{bottom:475.500000px;}
.y19c_c00001{bottom:475.800000px;}
.y101_c00001{bottom:475.950000px;}
.y8e8_c00001{bottom:476.250000px;}
.yf5b_c00001{bottom:476.550000px;}
.y457_c00001{bottom:477.000000px;}
.y571_c00001{bottom:477.300000px;}
.yc0f_c00001{bottom:477.600000px;}
.y845_c00001{bottom:477.750000px;}
.y717_c00001{bottom:477.900000px;}
.y1d5_c00001{bottom:478.050000px;}
.y6a9_c00001{bottom:478.200000px;}
.y806_c00001{bottom:478.650000px;}
.y6d2_c00001{bottom:478.800000px;}
.yeab_c00001{bottom:479.400000px;}
.yc53_c00001{bottom:479.550000px;}
.y962_c00001{bottom:479.700000px;}
.ya94_c00001{bottom:480.300000px;}
.y868_c00001{bottom:480.450000px;}
.ycb1_c00001{bottom:480.600000px;}
.y25e_c00001{bottom:480.900000px;}
.y233_c00001{bottom:481.350000px;}
.y13a_c00001{bottom:481.500000px;}
.y345_c00001{bottom:481.650000px;}
.y9a4_c00001{bottom:481.800000px;}
.y635_c00001{bottom:481.950000px;}
.y609_c00001{bottom:482.400000px;}
.y5b_c00001{bottom:482.700000px;}
.y9df_c00001{bottom:483.000000px;}
.y205_c00001{bottom:483.450000px;}
.yf19_c00001{bottom:483.750000px;}
.y487_c00001{bottom:483.900000px;}
.yc6_c00001{bottom:484.200000px;}
.y427_c00001{bottom:484.650000px;}
.y3fb_c00001{bottom:484.800000px;}
.yb0e_c00001{bottom:484.950000px;}
.y82c_c00001{bottom:485.250000px;}
.y2bd_c00001{bottom:485.550000px;}
.ye7f_c00001{bottom:485.850000px;}
.y9f3_c00001{bottom:486.000000px;}
.y5e7_c00001{bottom:486.300000px;}
.y1006_c00001{bottom:486.600000px;}
.y374_c00001{bottom:486.750000px;}
.y8c6_c00001{bottom:487.050000px;}
.y2e8_c00001{bottom:487.500000px;}
.y314_c00001{bottom:488.100000px;}
.y23_c00001{bottom:488.250000px;}
.y686_c00001{bottom:488.550000px;}
.ybd5_c00001{bottom:488.850000px;}
.yfa3_c00001{bottom:489.000000px;}
.yb77_c00001{bottom:489.150000px;}
.y3a8_c00001{bottom:489.300000px;}
.yf82_c00001{bottom:489.450000px;}
.y98a_c00001{bottom:489.600000px;}
.yab3_c00001{bottom:489.750000px;}
.y59b_c00001{bottom:489.900000px;}
.y91a_c00001{bottom:490.050000px;}
.y65e_c00001{bottom:490.350000px;}
.y1016_c00001{bottom:490.500000px;}
.y8fe_c00001{bottom:490.650000px;}
.y28c_c00001{bottom:491.100000px;}
.yae7_c00001{bottom:491.400000px;}
.y92_c00001{bottom:491.700000px;}
.yd8c_c00001{bottom:492.000000px;}
.y456_c00001{bottom:492.150000px;}
.yd34_c00001{bottom:492.450000px;}
.y168_c00001{bottom:492.750000px;}
.y51a_c00001{bottom:492.900000px;}
.y758_c00001{bottom:493.050000px;}
.y6d1_c00001{bottom:493.200000px;}
.yc6a_c00001{bottom:493.500000px;}
.yad0_c00001{bottom:493.800000px;}
.y8e7_c00001{bottom:493.950000px;}
.y19b_c00001{bottom:494.100000px;}
.y93c_c00001{bottom:494.250000px;}
.y961_c00001{bottom:494.400000px;}
.yf5a_c00001{bottom:494.850000px;}
.y4f4_c00001{bottom:495.000000px;}
.y570_c00001{bottom:495.450000px;}
.y716_c00001{bottom:495.600000px;}
.y1d4_c00001{bottom:495.750000px;}
.y6a8_c00001{bottom:495.900000px;}
.yb53_c00001{bottom:496.050000px;}
.ye23_c00001{bottom:496.350000px;}
.ydb7_c00001{bottom:496.500000px;}
.y805_c00001{bottom:496.650000px;}
.ye46_c00001{bottom:496.800000px;}
.yeaa_c00001{bottom:497.100000px;}
.ye25_c00001{bottom:497.550000px;}
.yc3c_c00001{bottom:497.850000px;}
.yf25_c00001{bottom:498.300000px;}
.yc5_c00001{bottom:498.450000px;}
.y232_c00001{bottom:498.600000px;}
.y25d_c00001{bottom:498.900000px;}
.y139_c00001{bottom:499.200000px;}
.y344_c00001{bottom:499.350000px;}
.y634_c00001{bottom:499.650000px;}
.y7e1_c00001{bottom:500.100000px;}
.yfd6_c00001{bottom:500.400000px;}
.y9a3_c00001{bottom:500.550000px;}
.y5a_c00001{bottom:500.700000px;}
.y373_c00001{bottom:500.850000px;}
.y2bc_c00001{bottom:501.000000px;}
.yddd_c00001{bottom:501.150000px;}
.y204_c00001{bottom:501.450000px;}
.y6f3_c00001{bottom:501.600000px;}
.y867_c00001{bottom:501.750000px;}
.y486_c00001{bottom:501.900000px;}
.y4d0_c00001{bottom:502.200000px;}
.y426_c00001{bottom:502.350000px;}
.y3fa_c00001{bottom:502.500000px;}
.yb69_c00001{bottom:502.650000px;}
.y7bc_c00001{bottom:502.800000px;}
.y543_c00001{bottom:502.950000px;}
.y9c3_c00001{bottom:503.250000px;}
.yb9a_c00001{bottom:503.550000px;}
.ye5d_c00001{bottom:503.700000px;}
.ye7e_c00001{bottom:503.850000px;}
.y5e6_c00001{bottom:504.000000px;}
.yc94_c00001{bottom:504.300000px;}
.y1005_c00001{bottom:504.900000px;}
.y22_c00001{bottom:505.500000px;}
.ya50_c00001{bottom:505.800000px;}
.yef1_c00001{bottom:505.950000px;}
.y455_c00001{bottom:506.100000px;}
.y3a7_c00001{bottom:506.550000px;}
.y94c_c00001{bottom:506.850000px;}
.yf81_c00001{bottom:507.150000px;}
.y919_c00001{bottom:507.300000px;}
.yb76_c00001{bottom:507.450000px;}
.y59a_c00001{bottom:507.600000px;}
.yab2_c00001{bottom:507.750000px;}
.y6d0_c00001{bottom:508.350000px;}
.y8c5_c00001{bottom:508.650000px;}
.y960_c00001{bottom:508.800000px;}
.ye04_c00001{bottom:509.100000px;}
.yeb5_c00001{bottom:509.400000px;}
.y1015_c00001{bottom:509.550000px;}
.ya8c_c00001{bottom:509.700000px;}
.yd8b_c00001{bottom:510.000000px;}
.yd33_c00001{bottom:510.150000px;}
.y91_c00001{bottom:510.450000px;}
.y519_c00001{bottom:510.600000px;}
.y313_c00001{bottom:510.750000px;}
.y757_c00001{bottom:511.050000px;}
.y989_c00001{bottom:511.200000px;}
.y19a_c00001{bottom:511.350000px;}
.ybfe_c00001{bottom:511.500000px;}
.ye9d_c00001{bottom:511.800000px;}
.y8e6_c00001{bottom:511.950000px;}
.yf62_c00001{bottom:512.250000px;}
.y65d_c00001{bottom:512.550000px;}
.y56f_c00001{bottom:512.700000px;}
.y4f3_c00001{bottom:513.000000px;}
.ye6c_c00001{bottom:513.150000px;}
.y715_c00001{bottom:513.300000px;}
.y28b_c00001{bottom:513.450000px;}
.yc4_c00001{bottom:513.600000px;}
.y970_c00001{bottom:513.750000px;}
.y6a7_c00001{bottom:513.900000px;}
.yb52_c00001{bottom:514.050000px;}
.y1d3_c00001{bottom:514.500000px;}
.y804_c00001{bottom:514.650000px;}
.ycc7_c00001{bottom:514.950000px;}
.y167_c00001{bottom:515.100000px;}
.y372_c00001{bottom:515.250000px;}
.yc52_c00001{bottom:515.850000px;}
.y866_c00001{bottom:516.150000px;}
.ycb0_c00001{bottom:516.300000px;}
.y25c_c00001{bottom:516.600000px;}
.y343_c00001{bottom:516.900000px;}
.y138_c00001{bottom:517.200000px;}
.y633_c00001{bottom:517.350000px;}
.y9a2_c00001{bottom:517.500000px;}
.y685_c00001{bottom:517.650000px;}
.yb3f_c00001{bottom:517.950000px;}
.y7e0_c00001{bottom:518.100000px;}
.y82b_c00001{bottom:518.250000px;}
.y59_c00001{bottom:518.700000px;}
.y2bb_c00001{bottom:519.300000px;}
.y3cf_c00001{bottom:519.450000px;}
.y6f2_c00001{bottom:519.600000px;}
.y542_c00001{bottom:519.900000px;}
.y4cf_c00001{bottom:520.200000px;}
.y425_c00001{bottom:520.350000px;}
.y3f9_c00001{bottom:520.500000px;}
.yb68_c00001{bottom:520.650000px;}
.ydb6_c00001{bottom:520.800000px;}
.y94b_c00001{bottom:520.950000px;}
.y5bb_c00001{bottom:521.250000px;}
.ye7d_c00001{bottom:521.550000px;}
.y5e5_c00001{bottom:521.700000px;}
.ya3b_c00001{bottom:522.000000px;}
.y1041_c00001{bottom:522.150000px;}
.y454_c00001{bottom:522.300000px;}
.y1004_c00001{bottom:522.600000px;}
.yf8e_c00001{bottom:522.750000px;}
.ydd1_c00001{bottom:522.900000px;}
.y21_c00001{bottom:523.050000px;}
.y2e7_c00001{bottom:523.200000px;}
.y203_c00001{bottom:523.500000px;}
.y684_c00001{bottom:523.800000px;}
.y8a7_c00001{bottom:523.950000px;}
.yd17_c00001{bottom:524.100000px;}
.y3a6_c00001{bottom:524.550000px;}
.ye22_c00001{bottom:524.850000px;}
.y82a_c00001{bottom:525.150000px;}
.yfa2_c00001{bottom:525.300000px;}
.yab1_c00001{bottom:525.450000px;}
.y599_c00001{bottom:525.600000px;}
.y8b0_c00001{bottom:526.350000px;}
.y8c4_c00001{bottom:526.650000px;}
.ye03_c00001{bottom:526.800000px;}
.yb83_c00001{bottom:527.100000px;}
.yddc_c00001{bottom:527.400000px;}
.y485_c00001{bottom:527.550000px;}
.yc3_c00001{bottom:527.700000px;}
.yd32_c00001{bottom:528.150000px;}
.y90_c00001{bottom:528.450000px;}
.y518_c00001{bottom:528.600000px;}
.y312_c00001{bottom:528.750000px;}
.yee7_c00001{bottom:528.900000px;}
.y756_c00001{bottom:529.050000px;}
.y918_c00001{bottom:529.200000px;}
.y199_c00001{bottom:529.350000px;}
.yc69_c00001{bottom:529.500000px;}
.y371_c00001{bottom:529.650000px;}
.yfa_c00001{bottom:529.950000px;}
.y1014_c00001{bottom:530.400000px;}
.y65c_c00001{bottom:530.550000px;}
.y100_c00001{bottom:530.700000px;}
.y1d2_c00001{bottom:531.000000px;}
.ye6b_c00001{bottom:531.150000px;}
.y714_c00001{bottom:531.300000px;}
.y6a6_c00001{bottom:531.600000px;}
.y6cf_c00001{bottom:531.750000px;}
.ye32_c00001{bottom:532.050000px;}
.y28a_c00001{bottom:532.200000px;}
.y803_c00001{bottom:532.350000px;}
.yf50_c00001{bottom:532.650000px;}
.y79a_c00001{bottom:532.800000px;}
.ycc6_c00001{bottom:533.250000px;}
.yc51_c00001{bottom:533.550000px;}
.y865_c00001{bottom:533.850000px;}
.ycaf_c00001{bottom:534.000000px;}
.y988_c00001{bottom:534.150000px;}
.y231_c00001{bottom:534.300000px;}
.y4ae_c00001{bottom:534.600000px;}
.y342_c00001{bottom:534.900000px;}
.y137_c00001{bottom:535.200000px;}
.y844_c00001{bottom:535.350000px;}
.y9a1_c00001{bottom:535.500000px;}
.yb3e_c00001{bottom:535.650000px;}
.y7df_c00001{bottom:536.100000px;}
.yf24_c00001{bottom:536.250000px;}
.yeca_c00001{bottom:536.400000px;}
.y9de_c00001{bottom:536.700000px;}
.y166_c00001{bottom:537.150000px;}
.y2ba_c00001{bottom:537.300000px;}
.yf18_c00001{bottom:537.450000px;}
.y6f1_c00001{bottom:537.600000px;}
.yf61_c00001{bottom:537.900000px;}
.y58_c00001{bottom:538.200000px;}
.y424_c00001{bottom:538.350000px;}
.y25b_c00001{bottom:538.650000px;}
.y5e4_c00001{bottom:538.950000px;}
.yb99_c00001{bottom:539.250000px;}
.ydb5_c00001{bottom:539.550000px;}
.yf63_c00001{bottom:539.700000px;}
.yb24_c00001{bottom:540.000000px;}
.y1040_c00001{bottom:540.150000px;}
.yaf8_c00001{bottom:540.300000px;}
.yc24_c00001{bottom:540.600000px;}
.ydd0_c00001{bottom:540.900000px;}
.y20_c00001{bottom:541.050000px;}
.y202_c00001{bottom:541.500000px;}
.y8a6_c00001{bottom:541.650000px;}
.yc2_c00001{bottom:541.800000px;}
.yef0_c00001{bottom:541.950000px;}
.y3a5_c00001{bottom:542.100000px;}
.yee6_c00001{bottom:542.250000px;}
.y104e_c00001{bottom:542.550000px;}
.y829_c00001{bottom:542.850000px;}
.y5ba_c00001{bottom:543.150000px;}
.yff_c00001{bottom:543.300000px;}
.y883_c00001{bottom:543.600000px;}
.ya3a_c00001{bottom:543.900000px;}
.y370_c00001{bottom:544.050000px;}
.y6ce_c00001{bottom:544.350000px;}
.yf9_c00001{bottom:544.650000px;}
.ye02_c00001{bottom:544.800000px;}
.yd8a_c00001{bottom:545.400000px;}
.y453_c00001{bottom:545.550000px;}
.yfb7_c00001{bottom:545.700000px;}
.yae6_c00001{bottom:546.150000px;}
.y311_c00001{bottom:546.450000px;}
.y517_c00001{bottom:546.600000px;}
.y8f_c00001{bottom:546.750000px;}
.y799_c00001{bottom:546.900000px;}
.yacf_c00001{bottom:547.050000px;}
.y917_c00001{bottom:547.200000px;}
.y198_c00001{bottom:547.650000px;}
.ybc8_c00001{bottom:547.950000px;}
.y65b_c00001{bottom:548.250000px;}
.yf3b_c00001{bottom:548.400000px;}
.y9f2_c00001{bottom:548.700000px;}
.yf59_c00001{bottom:548.850000px;}
.ye6a_c00001{bottom:549.150000px;}
.y6a5_c00001{bottom:549.300000px;}
.ya0e_c00001{bottom:549.600000px;}
.yc7f_c00001{bottom:549.750000px;}
.y802_c00001{bottom:550.050000px;}
.y289_c00001{bottom:550.500000px;}
.yf4f_c00001{bottom:550.650000px;}
.yccb_c00001{bottom:550.800000px;}
.y1025_c00001{bottom:551.100000px;}
.yfc7_c00001{bottom:551.550000px;}
.y95f_c00001{bottom:551.700000px;}
.y987_c00001{bottom:551.850000px;}
.y93b_c00001{bottom:552.150000px;}
.ya8b_c00001{bottom:552.600000px;}
.y341_c00001{bottom:552.900000px;}
.y56e_c00001{bottom:553.050000px;}
.y136_c00001{bottom:553.200000px;}
.yce6_c00001{bottom:553.350000px;}
.yf23_c00001{bottom:553.500000px;}
.y8c3_c00001{bottom:553.650000px;}
.ye31_c00001{bottom:553.950000px;}
.ycae_c00001{bottom:554.100000px;}
.yec9_c00001{bottom:554.250000px;}
.y9dd_c00001{bottom:554.400000px;}
.ye45_c00001{bottom:554.700000px;}
.y57_c00001{bottom:555.150000px;}
.y2b9_c00001{bottom:555.300000px;}
.yc3b_c00001{bottom:555.450000px;}
.y4ce_c00001{bottom:555.600000px;}
.yb3d_c00001{bottom:555.750000px;}
.y423_c00001{bottom:556.050000px;}
.yc1_c00001{bottom:556.200000px;}
.y4ad_c00001{bottom:556.350000px;}
.y7de_c00001{bottom:556.500000px;}
.y25a_c00001{bottom:556.650000px;}
.y8fd_c00001{bottom:556.800000px;}
.y5e3_c00001{bottom:556.950000px;}
.y4f2_c00001{bottom:557.100000px;}
.ycf0_c00001{bottom:557.250000px;}
.yd02_c00001{bottom:557.550000px;}
.yfc_c00001{bottom:558.000000px;}
.y103f_c00001{bottom:558.150000px;}
.yaf7_c00001{bottom:558.300000px;}
.y36f_c00001{bottom:558.750000px;}
.ydcf_c00001{bottom:558.900000px;}
.y1f_c00001{bottom:559.050000px;}
.y2e6_c00001{bottom:559.200000px;}
.y165_c00001{bottom:559.500000px;}
.y8a5_c00001{bottom:559.650000px;}
.y3a4_c00001{bottom:559.800000px;}
.yb98_c00001{bottom:560.100000px;}
.y6cd_c00001{bottom:560.250000px;}
.yd16_c00001{bottom:560.400000px;}
.y3f8_c00001{bottom:560.550000px;}
.y632_c00001{bottom:560.700000px;}
.y828_c00001{bottom:560.850000px;}
.yab0_c00001{bottom:561.150000px;}
.y798_c00001{bottom:561.300000px;}
.y598_c00001{bottom:561.600000px;}
.yc93_c00001{bottom:562.050000px;}
.y608_c00001{bottom:562.350000px;}
.ybfd_c00001{bottom:562.650000px;}
.y452_c00001{bottom:562.800000px;}
.yd89_c00001{bottom:562.950000px;}
.ye21_c00001{bottom:563.100000px;}
.y484_c00001{bottom:563.250000px;}
.yae5_c00001{bottom:563.400000px;}
.y310_c00001{bottom:564.150000px;}
.y516_c00001{bottom:564.300000px;}
.y8e_c00001{bottom:564.450000px;}
.y755_c00001{bottom:564.750000px;}
.y916_c00001{bottom:564.900000px;}
.ybc7_c00001{bottom:565.200000px;}
.y197_c00001{bottom:565.350000px;}
.y5b9_c00001{bottom:565.500000px;}
.yf80_c00001{bottom:565.650000px;}
.y65a_c00001{bottom:566.250000px;}
.y95e_c00001{bottom:566.400000px;}
.yf58_c00001{bottom:566.550000px;}
.ye69_c00001{bottom:566.850000px;}
.y6a4_c00001{bottom:567.000000px;}
.y288_c00001{bottom:567.300000px;}
.yf3a_c00001{bottom:567.450000px;}
.y201_c00001{bottom:567.600000px;}
.ya0d_c00001{bottom:567.900000px;}
.y230_c00001{bottom:568.500000px;}
.yf4e_c00001{bottom:568.650000px;}
.ycd5_c00001{bottom:568.800000px;}
.yfc6_c00001{bottom:569.100000px;}
.ya83_c00001{bottom:569.250000px;}
.y1024_c00001{bottom:569.550000px;}
.yc3a_c00001{bottom:569.850000px;}
.y93a_c00001{bottom:570.150000px;}
.y9f1_c00001{bottom:570.300000px;}
.ye15_c00001{bottom:570.600000px;}
.yc0_c00001{bottom:570.900000px;}
.y801_c00001{bottom:571.050000px;}
.ya8a_c00001{bottom:571.200000px;}
.y56d_c00001{bottom:571.350000px;}
.y135_c00001{bottom:571.500000px;}
.yc7e_c00001{bottom:571.650000px;}
.y8c2_c00001{bottom:571.950000px;}
.yfe_c00001{bottom:572.100000px;}
.y7ba_c00001{bottom:572.400000px;}
.y2b8_c00001{bottom:572.550000px;}
.y56_c00001{bottom:572.700000px;}
.y6f0_c00001{bottom:573.000000px;}
.yea9_c00001{bottom:573.150000px;}
.yf8_c00001{bottom:573.450000px;}
.yffc_c00001{bottom:573.900000px;}
.y422_c00001{bottom:574.050000px;}
.yb0d_c00001{bottom:574.200000px;}
.y4ac_c00001{bottom:574.350000px;}
.y8fc_c00001{bottom:574.500000px;}
.y259_c00001{bottom:574.650000px;}
.yd55_c00001{bottom:574.800000px;}
.y340_c00001{bottom:574.950000px;}
.y4f1_c00001{bottom:575.100000px;}
.yd01_c00001{bottom:575.250000px;}
.y797_c00001{bottom:575.550000px;}
.yb23_c00001{bottom:575.700000px;}
.y103e_c00001{bottom:575.850000px;}
.y7dd_c00001{bottom:576.000000px;}
.y9dc_c00001{bottom:576.300000px;}
.ydce_c00001{bottom:576.600000px;}
.yf54_c00001{bottom:576.750000px;}
.ya4f_c00001{bottom:576.900000px;}
.y1e_c00001{bottom:577.050000px;}
.y2e5_c00001{bottom:577.200000px;}
.y3a3_c00001{bottom:577.500000px;}
.y8a4_c00001{bottom:577.650000px;}
.y683_c00001{bottom:577.800000px;}
.yd15_c00001{bottom:578.100000px;}
.y7bb_c00001{bottom:578.550000px;}
.y631_c00001{bottom:578.700000px;}
.yaaf_c00001{bottom:578.850000px;}
.yb75_c00001{bottom:579.150000px;}
.y3f7_c00001{bottom:579.300000px;}
.ya39_c00001{bottom:579.600000px;}
.ya38_c00001{bottom:579.900000px;}
.y607_c00001{bottom:580.050000px;}
.yb97_c00001{bottom:580.350000px;}
.ye01_c00001{bottom:580.500000px;}
.y843_c00001{bottom:580.650000px;}
.yd88_c00001{bottom:580.950000px;}
.y3ce_c00001{bottom:581.100000px;}
.y483_c00001{bottom:581.250000px;}
.y164_c00001{bottom:581.400000px;}
.ybd4_c00001{bottom:581.850000px;}
.y30f_c00001{bottom:582.000000px;}
.y515_c00001{bottom:582.300000px;}
.y8d_c00001{bottom:582.450000px;}
.yace_c00001{bottom:582.750000px;}
.y864_c00001{bottom:582.900000px;}
.y8e5_c00001{bottom:583.050000px;}
.y827_c00001{bottom:583.200000px;}
.y196_c00001{bottom:583.350000px;}
.yce5_c00001{bottom:583.800000px;}
.yf39_c00001{bottom:583.950000px;}
.y659_c00001{bottom:584.250000px;}
.yb3c_c00001{bottom:584.550000px;}
.ye54_c00001{bottom:584.700000px;}
.y1d1_c00001{bottom:585.000000px;}
.ybf_c00001{bottom:585.300000px;}
.y200_c00001{bottom:585.600000px;}
.yfb6_c00001{bottom:585.750000px;}
.yf4d_c00001{bottom:586.650000px;}
.ye9c_c00001{bottom:586.800000px;}
.y36e_c00001{bottom:587.100000px;}
.y6cc_c00001{bottom:587.550000px;}
.yf7_c00001{bottom:587.850000px;}
.y939_c00001{bottom:588.150000px;}
.y541_c00001{bottom:588.300000px;}
.y9f0_c00001{bottom:588.600000px;}
.y736_c00001{bottom:588.900000px;}
.y56c_c00001{bottom:589.050000px;}
.y800_c00001{bottom:589.350000px;}
.y796_c00001{bottom:589.650000px;}
.y8c1_c00001{bottom:589.950000px;}
.yd31_c00001{bottom:590.100000px;}
.y55_c00001{bottom:590.250000px;}
.yfd5_c00001{bottom:590.400000px;}
.y2b7_c00001{bottom:590.850000px;}
.y6ef_c00001{bottom:591.000000px;}
.yf60_c00001{bottom:591.150000px;}
.y134_c00001{bottom:591.300000px;}
.yffb_c00001{bottom:591.900000px;}
.y421_c00001{bottom:592.050000px;}
.y8fb_c00001{bottom:592.200000px;}
.y258_c00001{bottom:592.350000px;}
.y9c2_c00001{bottom:592.500000px;}
.y5e2_c00001{bottom:592.650000px;}
.y22f_c00001{bottom:592.800000px;}
.y33f_c00001{bottom:592.950000px;}
.y4cd_c00001{bottom:593.100000px;}
.ydea_c00001{bottom:593.250000px;}
.yb22_c00001{bottom:593.400000px;}
.y7dc_c00001{bottom:593.550000px;}
.yaf6_c00001{bottom:594.000000px;}
.y9db_c00001{bottom:594.300000px;}
.y1003_c00001{bottom:594.450000px;}
.yddb_c00001{bottom:594.600000px;}
.ybe9_c00001{bottom:594.750000px;}
.y2e4_c00001{bottom:594.900000px;}
.y1d_c00001{bottom:595.050000px;}
.y95d_c00001{bottom:595.200000px;}
.y8a3_c00001{bottom:595.350000px;}
.y682_c00001{bottom:595.500000px;}
.y630_c00001{bottom:595.650000px;}
.yc50_c00001{bottom:595.800000px;}
.yd14_c00001{bottom:596.100000px;}
.yb0c_c00001{bottom:596.400000px;}
.y104d_c00001{bottom:596.550000px;}
.yaae_c00001{bottom:596.850000px;}
.y1054_c00001{bottom:597.150000px;}
.y3f6_c00001{bottom:597.300000px;}
.yfd_c00001{bottom:597.600000px;}
.y606_c00001{bottom:597.750000px;}
.y451_c00001{bottom:597.900000px;}
.y9a0_c00001{bottom:598.050000px;}
.yb96_c00001{bottom:598.350000px;}
.ye00_c00001{bottom:598.500000px;}
.ycad_c00001{bottom:598.650000px;}
.y482_c00001{bottom:598.950000px;}
.y3cd_c00001{bottom:599.100000px;}
.y7b9_c00001{bottom:599.400000px;}
.y8c_c00001{bottom:599.700000px;}
.y514_c00001{bottom:600.000000px;}
.yacd_c00001{bottom:600.450000px;}
.ybfc_c00001{bottom:600.600000px;}
.y754_c00001{bottom:600.750000px;}
.y863_c00001{bottom:600.900000px;}
.y8e4_c00001{bottom:601.050000px;}
.y36d_c00001{bottom:601.200000px;}
.y658_c00001{bottom:601.500000px;}
.y195_c00001{bottom:601.650000px;}
.ya37_c00001{bottom:601.800000px;}
.yf38_c00001{bottom:601.950000px;}
.yfb_c00001{bottom:602.250000px;}
.yf6_c00001{bottom:602.400000px;}
.y1d0_c00001{bottom:602.700000px;}
.y287_c00001{bottom:602.850000px;}
.y6cb_c00001{bottom:603.000000px;}
.yd54_c00001{bottom:603.300000px;}
.y163_c00001{bottom:603.750000px;}
.y1ff_c00001{bottom:603.900000px;}
.y3a2_c00001{bottom:604.050000px;}
.yf57_c00001{bottom:604.350000px;}
.ye9b_c00001{bottom:604.500000px;}
.yd2f_c00001{bottom:604.650000px;}
.y915_c00001{bottom:605.100000px;}
.y540_c00001{bottom:605.850000px;}
.ybb3_c00001{bottom:606.150000px;}
.y9ef_c00001{bottom:606.300000px;}
.y842_c00001{bottom:606.600000px;}
.y56b_c00001{bottom:606.750000px;}
.y735_c00001{bottom:606.900000px;}
.ya62_c00001{bottom:607.050000px;}
.y133_c00001{bottom:607.200000px;}
.yc7d_c00001{bottom:607.350000px;}
.y8c0_c00001{bottom:607.650000px;}
.y2b6_c00001{bottom:608.100000px;}
.y54_c00001{bottom:608.250000px;}
.ycd4_c00001{bottom:608.400000px;}
.y6ee_c00001{bottom:608.700000px;}
.yea8_c00001{bottom:608.850000px;}
.y780_c00001{bottom:609.000000px;}
.yf5f_c00001{bottom:609.450000px;}
.yffa_c00001{bottom:609.600000px;}
.y420_c00001{bottom:609.750000px;}
.y95c_c00001{bottom:609.900000px;}
.y4ab_c00001{bottom:610.050000px;}
.y9c1_c00001{bottom:610.200000px;}
.y257_c00001{bottom:610.350000px;}
.y22e_c00001{bottom:610.500000px;}
.yfdd_c00001{bottom:610.950000px;}
.yaf5_c00001{bottom:611.250000px;}
.y7ff_c00001{bottom:611.400000px;}
.y7db_c00001{bottom:611.550000px;}
.yb82_c00001{bottom:611.700000px;}
.y9da_c00001{bottom:612.000000px;}
.ydcd_c00001{bottom:612.300000px;}
.y2e3_c00001{bottom:612.600000px;}
.y1c_c00001{bottom:612.750000px;}
.yb3b_c00001{bottom:613.050000px;}
.y8a2_c00001{bottom:613.350000px;}
.y62f_c00001{bottom:613.650000px;}
.yd13_c00001{bottom:613.800000px;}
.yc23_c00001{bottom:613.950000px;}
.ybe_c00001{bottom:614.100000px;}
.yaad_c00001{bottom:614.550000px;}
.yb51_c00001{bottom:614.850000px;}
.y33e_c00001{bottom:615.000000px;}
.y597_c00001{bottom:615.300000px;}
.y605_c00001{bottom:615.450000px;}
.y36c_c00001{bottom:615.600000px;}
.y99f_c00001{bottom:615.750000px;}
.yec5_c00001{bottom:615.900000px;}
.ydff_c00001{bottom:616.200000px;}
.y6ca_c00001{bottom:616.350000px;}
.y680_c00001{bottom:616.650000px;}
.y481_c00001{bottom:616.950000px;}
.yf5_c00001{bottom:617.100000px;}
.y753_c00001{bottom:617.250000px;}
.yc92_c00001{bottom:617.400000px;}
.y8b_c00001{bottom:617.700000px;}
.y30e_c00001{bottom:618.000000px;}
.y8fa_c00001{bottom:618.450000px;}
.ybfb_c00001{bottom:618.600000px;}
.y882_c00001{bottom:618.750000px;}
.y194_c00001{bottom:618.900000px;}
.y8e3_c00001{bottom:619.050000px;}
.y657_c00001{bottom:619.200000px;}
.ya36_c00001{bottom:619.500000px;}
.yf7f_c00001{bottom:619.650000px;}
.y450_c00001{bottom:619.800000px;}
.yd00_c00001{bottom:619.950000px;}
.ye68_c00001{bottom:620.250000px;}
.y286_c00001{bottom:620.550000px;}
.y713_c00001{bottom:620.700000px;}
.ya0c_c00001{bottom:620.850000px;}
.ya82_c00001{bottom:621.300000px;}
.y1fe_c00001{bottom:621.600000px;}
.y3a1_c00001{bottom:621.750000px;}
.yf4c_c00001{bottom:622.350000px;}
.ye9a_c00001{bottom:622.500000px;}
.yd2e_c00001{bottom:622.650000px;}
.yc0e_c00001{bottom:622.800000px;}
.y914_c00001{bottom:623.100000px;}
.ya28_c00001{bottom:623.850000px;}
.yda2_c00001{bottom:624.150000px;}
.y95b_c00001{bottom:624.300000px;}
.y734_c00001{bottom:624.600000px;}
.y56a_c00001{bottom:624.750000px;}
.y1cf_c00001{bottom:624.900000px;}
.y132_c00001{bottom:625.200000px;}
.ya61_c00001{bottom:625.350000px;}
.y8bf_c00001{bottom:625.650000px;}
.y162_c00001{bottom:626.100000px;}
.y53_c00001{bottom:626.250000px;}
.y2b5_c00001{bottom:626.400000px;}
.yea7_c00001{bottom:626.550000px;}
.y77f_c00001{bottom:626.700000px;}
.y9ee_c00001{bottom:626.850000px;}
.y41f_c00001{bottom:627.450000px;}
.yff9_c00001{bottom:627.600000px;}
.y4cc_c00001{bottom:627.750000px;}
.y4aa_c00001{bottom:628.050000px;}
.y9c0_c00001{bottom:628.200000px;}
.y5e1_c00001{bottom:628.350000px;}
.y22d_c00001{bottom:628.500000px;}
.y256_c00001{bottom:628.650000px;}
.y938_c00001{bottom:628.800000px;}
.y795_c00001{bottom:628.950000px;}
.ybd_c00001{bottom:629.250000px;}
.y7fe_c00001{bottom:629.400000px;}
.y7da_c00001{bottom:629.550000px;}
.yd30_c00001{bottom:629.700000px;}
.y103d_c00001{bottom:629.850000px;}
.y36b_c00001{bottom:630.000000px;}
.yee5_c00001{bottom:630.150000px;}
.y67f_c00001{bottom:630.300000px;}
.y2e2_c00001{bottom:630.600000px;}
.ybe8_c00001{bottom:630.750000px;}
.y7b8_c00001{bottom:631.050000px;}
.y62e_c00001{bottom:631.350000px;}
.y1b_c00001{bottom:631.500000px;}
.yb0b_c00001{bottom:631.800000px;}
.ye7c_c00001{bottom:632.100000px;}
.yaac_c00001{bottom:632.250000px;}
.ydb4_c00001{bottom:632.400000px;}
.ycc5_c00001{bottom:632.550000px;}
.y33d_c00001{bottom:632.700000px;}
.y5b8_c00001{bottom:632.850000px;}
.y3f5_c00001{bottom:633.000000px;}
.yde9_c00001{bottom:633.150000px;}
.y596_c00001{bottom:633.300000px;}
.y604_c00001{bottom:633.450000px;}
.yf4_c00001{bottom:633.600000px;}
.y99e_c00001{bottom:633.750000px;}
.yb50_c00001{bottom:633.900000px;}
.y480_c00001{bottom:634.650000px;}
.y752_c00001{bottom:635.250000px;}
.ya60_c00001{bottom:635.400000px;}
.y8a_c00001{bottom:635.700000px;}
.y193_c00001{bottom:636.150000px;}
.y8f9_c00001{bottom:636.450000px;}
.y826_c00001{bottom:636.600000px;}
.y881_c00001{bottom:636.750000px;}
.ybc6_c00001{bottom:636.900000px;}
.y656_c00001{bottom:637.200000px;}
.yf7e_c00001{bottom:637.350000px;}
.y96f_c00001{bottom:637.500000px;}
.y44f_c00001{bottom:637.800000px;}
.y285_c00001{bottom:638.250000px;}
.y712_c00001{bottom:638.400000px;}
.yda1_c00001{bottom:638.550000px;}
.y95a_c00001{bottom:638.700000px;}
.ya0b_c00001{bottom:638.850000px;}
.y1fd_c00001{bottom:639.300000px;}
.yd12_c00001{bottom:639.750000px;}
.yf4b_c00001{bottom:640.050000px;}
.yd2d_c00001{bottom:640.350000px;}
.yae4_c00001{bottom:640.650000px;}
.y913_c00001{bottom:640.800000px;}
.ycac_c00001{bottom:641.100000px;}
.ya27_c00001{bottom:641.550000px;}
.yf37_c00001{bottom:641.700000px;}
.ya35_c00001{bottom:641.850000px;}
.ya89_c00001{bottom:642.300000px;}
.y569_c00001{bottom:642.450000px;}
.y1ce_c00001{bottom:642.600000px;}
.y3cc_c00001{bottom:642.900000px;}
.y131_c00001{bottom:643.200000px;}
.ya5f_c00001{bottom:643.350000px;}
.y8be_c00001{bottom:643.650000px;}
.yfd4_c00001{bottom:644.100000px;}
.y52_c00001{bottom:644.250000px;}
.ybc_c00001{bottom:644.400000px;}
.yea6_c00001{bottom:644.550000px;}
.yb3a_c00001{bottom:644.700000px;}
.y9ed_c00001{bottom:644.850000px;}
.y41e_c00001{bottom:645.450000px;}
.y5e0_c00001{bottom:645.600000px;}
.y53f_c00001{bottom:645.750000px;}
.y4a9_c00001{bottom:646.050000px;}
.y9bf_c00001{bottom:646.200000px;}
.y255_c00001{bottom:646.350000px;}
.y4f0_c00001{bottom:646.500000px;}
.y6a3_c00001{bottom:646.650000px;}
.y1013_c00001{bottom:646.950000px;}
.yb21_c00001{bottom:647.100000px;}
.yfea_c00001{bottom:647.250000px;}
.y7fd_c00001{bottom:647.400000px;}
.y7d9_c00001{bottom:647.550000px;}
.y161_c00001{bottom:647.700000px;}
.y9d9_c00001{bottom:647.850000px;}
.ya4e_c00001{bottom:648.000000px;}
.y1a_c00001{bottom:648.300000px;}
.y2e1_c00001{bottom:648.600000px;}
.y8a1_c00001{bottom:648.750000px;}
.y7b7_c00001{bottom:649.050000px;}
.y62d_c00001{bottom:649.350000px;}
.ycff_c00001{bottom:649.500000px;}
.ybd3_c00001{bottom:649.800000px;}
.yaab_c00001{bottom:649.950000px;}
.yb0a_c00001{bottom:650.100000px;}
.yb81_c00001{bottom:650.400000px;}
.yd7a_c00001{bottom:650.550000px;}
.y22c_c00001{bottom:650.700000px;}
.yb74_c00001{bottom:650.850000px;}
.y33c_c00001{bottom:651.000000px;}
.y603_c00001{bottom:651.150000px;}
.y595_c00001{bottom:651.300000px;}
.yb95_c00001{bottom:651.600000px;}
.y99d_c00001{bottom:651.750000px;}
.y1053_c00001{bottom:651.900000px;}
.ycd3_c00001{bottom:652.650000px;}
.y751_c00001{bottom:652.950000px;}
.y77e_c00001{bottom:653.100000px;}
.yc91_c00001{bottom:653.400000px;}
.yee4_c00001{bottom:653.550000px;}
.y89_c00001{bottom:653.700000px;}
.y825_c00001{bottom:654.300000px;}
.y6c9_c00001{bottom:654.450000px;}
.y841_c00001{bottom:654.750000px;}
.y5b7_c00001{bottom:654.900000px;}
.y655_c00001{bottom:655.200000px;}
.yf7d_c00001{bottom:655.350000px;}
.y44e_c00001{bottom:655.500000px;}
.ye20_c00001{bottom:655.950000px;}
.y711_c00001{bottom:656.100000px;}
.y284_c00001{bottom:656.250000px;}
.ya0a_c00001{bottom:656.550000px;}
.y47f_c00001{bottom:656.700000px;}
.ybb_c00001{bottom:657.000000px;}
.yae3_c00001{bottom:657.150000px;}
.yf53_c00001{bottom:657.300000px;}
.y3a0_c00001{bottom:657.600000px;}
.yd66_c00001{bottom:657.750000px;}
.y513_c00001{bottom:658.050000px;}
.y192_c00001{bottom:658.500000px;}
.ycab_c00001{bottom:658.800000px;}
.y67e_c00001{bottom:659.100000px;}
.ya81_c00001{bottom:659.550000px;}
.yf36_c00001{bottom:659.700000px;}
.ye14_c00001{bottom:659.850000px;}
.ya88_c00001{bottom:660.000000px;}
.y568_c00001{bottom:660.150000px;}
.ye53_c00001{bottom:660.300000px;}
.y733_c00001{bottom:660.600000px;}
.y1cd_c00001{bottom:660.900000px;}
.y130_c00001{bottom:661.200000px;}
.yacc_c00001{bottom:661.650000px;}
.yea5_c00001{bottom:661.800000px;}
.yfd3_c00001{bottom:662.100000px;}
.y51_c00001{bottom:662.250000px;}
.y2b4_c00001{bottom:662.400000px;}
.yb39_c00001{bottom:662.700000px;}
.y9ec_c00001{bottom:663.150000px;}
.y5df_c00001{bottom:663.300000px;}
.y53e_c00001{bottom:663.450000px;}
.y4a8_c00001{bottom:663.750000px;}
.yff8_c00001{bottom:663.900000px;}
.y937_c00001{bottom:664.200000px;}
.y254_c00001{bottom:664.350000px;}
.y4ef_c00001{bottom:664.500000px;}
.y6a2_c00001{bottom:664.650000px;}
.ya5e_c00001{bottom:664.950000px;}
.yb20_c00001{bottom:665.100000px;}
.y3cb_c00001{bottom:665.250000px;}
.ye44_c00001{bottom:665.400000px;}
.y7d8_c00001{bottom:665.550000px;}
.y160_c00001{bottom:665.700000px;}
.y9d8_c00001{bottom:665.850000px;}
.ydda_c00001{bottom:666.000000px;}
.y19_c00001{bottom:666.300000px;}
.y62c_c00001{bottom:666.600000px;}
.y7b6_c00001{bottom:666.750000px;}
.y8f8_c00001{bottom:667.050000px;}
.yc39_c00001{bottom:667.350000px;}
.y959_c00001{bottom:667.500000px;}
.yaaa_c00001{bottom:667.650000px;}
.ycfe_c00001{bottom:667.800000px;}
.ybd2_c00001{bottom:668.100000px;}
.ycef_c00001{bottom:668.400000px;}
.yfdc_c00001{bottom:668.550000px;}
.y33b_c00001{bottom:668.700000px;}
.y594_c00001{bottom:668.850000px;}
.y22b_c00001{bottom:669.000000px;}
.y602_c00001{bottom:669.150000px;}
.y104c_c00001{bottom:669.300000px;}
.y99c_c00001{bottom:669.450000px;}
.yb73_c00001{bottom:669.600000px;}
.yec8_c00001{bottom:669.900000px;}
.yeb4_c00001{bottom:670.350000px;}
.yd78_c00001{bottom:670.500000px;}
.yb09_c00001{bottom:670.650000px;}
.y77d_c00001{bottom:670.800000px;}
.y750_c00001{bottom:670.950000px;}
.y986_c00001{bottom:671.100000px;}
.yc22_c00001{bottom:671.250000px;}
.y88_c00001{bottom:671.400000px;}
.y3f4_c00001{bottom:671.550000px;}
.y30d_c00001{bottom:671.700000px;}
.yee3_c00001{bottom:671.850000px;}
.y824_c00001{bottom:672.000000px;}
.yfe9_c00001{bottom:672.150000px;}
.y654_c00001{bottom:672.450000px;}
.y36a_c00001{bottom:672.600000px;}
.yd79_c00001{bottom:672.900000px;}
.y44d_c00001{bottom:673.050000px;}
.yc4f_c00001{bottom:673.200000px;}
.y96e_c00001{bottom:673.500000px;}
.yf7c_c00001{bottom:673.650000px;}
.y710_c00001{bottom:673.800000px;}
.yf3_c00001{bottom:673.950000px;}
.ya09_c00001{bottom:674.250000px;}
.y47e_c00001{bottom:674.700000px;}
.yae2_c00001{bottom:674.850000px;}
.ya4d_c00001{bottom:675.000000px;}
.y39f_c00001{bottom:675.300000px;}
.y283_c00001{bottom:675.750000px;}
.y512_c00001{bottom:676.050000px;}
.y912_c00001{bottom:676.200000px;}
.y862_c00001{bottom:676.350000px;}
.ybc5_c00001{bottom:676.650000px;}
.ycb7_c00001{bottom:676.800000px;}
.y5b6_c00001{bottom:677.100000px;}
.ya80_c00001{bottom:677.550000px;}
.yf35_c00001{bottom:677.700000px;}
.ye13_c00001{bottom:677.850000px;}
.y567_c00001{bottom:678.150000px;}
.y732_c00001{bottom:678.300000px;}
.y1cc_c00001{bottom:678.600000px;}
.y12f_c00001{bottom:678.900000px;}
.ya26_c00001{bottom:679.200000px;}
.y2b3_c00001{bottom:679.650000px;}
.yea4_c00001{bottom:679.800000px;}
.ybb2_c00001{bottom:680.100000px;}
.y50_c00001{bottom:680.250000px;}
.y9eb_c00001{bottom:680.400000px;}
.yc68_c00001{bottom:680.700000px;}
.y5de_c00001{bottom:681.000000px;}
.yd2c_c00001{bottom:681.150000px;}
.y4a7_c00001{bottom:681.450000px;}
.yacb_c00001{bottom:681.600000px;}
.yec7_c00001{bottom:681.750000px;}
.y958_c00001{bottom:681.900000px;}
.y794_c00001{bottom:682.050000px;}
.y4ee_c00001{bottom:682.200000px;}
.y253_c00001{bottom:682.350000px;}
.ya34_c00001{bottom:682.500000px;}
.yb1f_c00001{bottom:683.100000px;}
.y3ca_c00001{bottom:683.250000px;}
.ydcc_c00001{bottom:683.400000px;}
.y103c_c00001{bottom:683.550000px;}
.y7fc_c00001{bottom:683.700000px;}
.y9d7_c00001{bottom:683.850000px;}
.y2e0_c00001{bottom:684.000000px;}
.y18_c00001{bottom:684.300000px;}
.ycaa_c00001{bottom:684.450000px;}
.y62b_c00001{bottom:684.600000px;}
.yfc5_c00001{bottom:684.900000px;}
.y7b5_c00001{bottom:685.050000px;}
.yd77_c00001{bottom:685.200000px;}
.yaa9_c00001{bottom:685.350000px;}
.ye7b_c00001{bottom:685.500000px;}
.yba_c00001{bottom:685.800000px;}
.y53d_c00001{bottom:685.950000px;}
.yd87_c00001{bottom:686.100000px;}
.y33a_c00001{bottom:686.400000px;}
.y41d_c00001{bottom:686.550000px;}
.y22a_c00001{bottom:686.700000px;}
.y593_c00001{bottom:686.850000px;}
.y369_c00001{bottom:687.000000px;}
.y99b_c00001{bottom:687.150000px;}
.y67d_c00001{bottom:687.300000px;}
.y15f_c00001{bottom:687.600000px;}
.y191_c00001{bottom:687.900000px;}
.y104b_c00001{bottom:688.050000px;}
.yeb3_c00001{bottom:688.350000px;}
.y8a0_c00001{bottom:688.500000px;}
.y74f_c00001{bottom:688.650000px;}
.y77c_c00001{bottom:688.800000px;}
.yeef_c00001{bottom:688.950000px;}
.y985_c00001{bottom:689.100000px;}
.y87_c00001{bottom:689.400000px;}
.y823_c00001{bottom:689.700000px;}
.y3f3_c00001{bottom:689.850000px;}
.ybfa_c00001{bottom:690.000000px;}
.y840_c00001{bottom:690.150000px;}
.y8f7_c00001{bottom:690.450000px;}
.yb72_c00001{bottom:690.600000px;}
.yb08_c00001{bottom:690.750000px;}
.y44c_c00001{bottom:691.050000px;}
.yaf4_c00001{bottom:691.200000px;}
.yf7b_c00001{bottom:691.350000px;}
.y70f_c00001{bottom:691.500000px;}
.y8bd_c00001{bottom:691.650000px;}
.yf2_c00001{bottom:691.950000px;}
.y282_c00001{bottom:692.250000px;}
.yae1_c00001{bottom:692.550000px;}
.y47d_c00001{bottom:692.700000px;}
.y39e_c00001{bottom:693.300000px;}
.yf4a_c00001{bottom:693.750000px;}
.y911_c00001{bottom:693.900000px;}
.y511_c00001{bottom:694.050000px;}
.y861_c00001{bottom:694.350000px;}
.y653_c00001{bottom:694.500000px;}
.ya25_c00001{bottom:694.650000px;}
.ya7f_c00001{bottom:694.800000px;}
.yfb5_c00001{bottom:695.100000px;}
.yda0_c00001{bottom:695.400000px;}
.ycd2_c00001{bottom:695.550000px;}
.y1cb_c00001{bottom:696.000000px;}
.y566_c00001{bottom:696.150000px;}
.y731_c00001{bottom:696.300000px;}
.y1fc_c00001{bottom:696.600000px;}
.y12e_c00001{bottom:697.200000px;}
.yd65_c00001{bottom:697.350000px;}
.yb38_c00001{bottom:697.500000px;}
.yd11_c00001{bottom:697.650000px;}
.yc90_c00001{bottom:697.800000px;}
.y5b5_c00001{bottom:697.950000px;}
.y4f_c00001{bottom:698.250000px;}
.y5dd_c00001{bottom:699.000000px;}
.y4cb_c00001{bottom:699.150000px;}
.y4a6_c00001{bottom:699.450000px;}
.yaca_c00001{bottom:699.600000px;}
.y793_c00001{bottom:699.750000px;}
.yff7_c00001{bottom:699.900000px;}
.y252_c00001{bottom:700.050000px;}
.yb9_c00001{bottom:700.200000px;}
.y6a1_c00001{bottom:700.350000px;}
.yb1e_c00001{bottom:700.800000px;}
.ye43_c00001{bottom:701.100000px;}
.y7d7_c00001{bottom:701.250000px;}
.ydcb_c00001{bottom:701.400000px;}
.y17_c00001{bottom:701.550000px;}
.y2b2_c00001{bottom:701.700000px;}
.y2df_c00001{bottom:702.000000px;}
.yfc4_c00001{bottom:702.150000px;}
.y62a_c00001{bottom:702.300000px;}
.y7b4_c00001{bottom:702.750000px;}
.yd86_c00001{bottom:703.050000px;}
.yca9_c00001{bottom:703.200000px;}
.yaa8_c00001{bottom:703.350000px;}
.ye7a_c00001{bottom:703.500000px;}
.yb4f_c00001{bottom:703.800000px;}
.y339_c00001{bottom:704.100000px;}
.y53c_c00001{bottom:704.250000px;}
.y229_c00001{bottom:704.400000px;}
.y41c_c00001{bottom:704.550000px;}
.ye5c_c00001{bottom:704.700000px;}
.y592_c00001{bottom:704.850000px;}
.y3c9_c00001{bottom:705.300000px;}
.y1052_c00001{bottom:705.600000px;}
.y15e_c00001{bottom:705.900000px;}
.yc7c_c00001{bottom:706.050000px;}
.y89f_c00001{bottom:706.200000px;}
.y104a_c00001{bottom:706.350000px;}
.yc67_c00001{bottom:706.500000px;}
.yf04_c00001{bottom:706.650000px;}
.y77b_c00001{bottom:706.800000px;}
.yeee_c00001{bottom:707.250000px;}
.y30c_c00001{bottom:707.400000px;}
.y822_c00001{bottom:707.700000px;}
.y8e2_c00001{bottom:707.850000px;}
.ycc4_c00001{bottom:708.000000px;}
.y3f2_c00001{bottom:708.150000px;}
.yb07_c00001{bottom:708.450000px;}
.ya87_c00001{bottom:708.750000px;}
.yb71_c00001{bottom:708.900000px;}
.y44b_c00001{bottom:709.050000px;}
.yf7a_c00001{bottom:709.350000px;}
.yf1_c00001{bottom:709.500000px;}
.y70e_c00001{bottom:709.800000px;}
.y281_c00001{bottom:709.950000px;}
.y8bc_c00001{bottom:710.400000px;}
.y86_c00001{bottom:710.550000px;}
.y6c8_c00001{bottom:710.700000px;}
.y39d_c00001{bottom:711.000000px;}
.y984_c00001{bottom:711.300000px;}
.yd4d_c00001{bottom:711.750000px;}
.y8f6_c00001{bottom:711.900000px;}
.y510_c00001{bottom:712.050000px;}
.yce4_c00001{bottom:712.200000px;}
.y860_c00001{bottom:712.350000px;}
.y652_c00001{bottom:712.500000px;}
.ya24_c00001{bottom:712.650000px;}
.y880_c00001{bottom:712.800000px;}
.y5b4_c00001{bottom:713.100000px;}
.yd76_c00001{bottom:713.250000px;}
.yf34_c00001{bottom:713.400000px;}
.ye12_c00001{bottom:713.550000px;}
.y1ca_c00001{bottom:713.700000px;}
.yf0e_c00001{bottom:713.850000px;}
.y47c_c00001{bottom:714.150000px;}
.y1fb_c00001{bottom:714.300000px;}
.yb8_c00001{bottom:714.600000px;}
.yc21_c00001{bottom:714.900000px;}
.y12d_c00001{bottom:715.200000px;}
.y368_c00001{bottom:715.350000px;}
.yfd2_c00001{bottom:715.650000px;}
.yc8f_c00001{bottom:715.800000px;}
.y4e_c00001{bottom:715.950000px;}
.yf8d_c00001{bottom:716.400000px;}
.y67c_c00001{bottom:716.700000px;}
.y5dc_c00001{bottom:717.000000px;}
.y4ca_c00001{bottom:717.150000px;}
.yac9_c00001{bottom:717.300000px;}
.y936_c00001{bottom:717.450000px;}
.y792_c00001{bottom:717.750000px;}
.y730_c00001{bottom:717.900000px;}
.y251_c00001{bottom:718.050000px;}
.y4ed_c00001{bottom:718.200000px;}
.ybb1_c00001{bottom:718.350000px;}
.yff6_c00001{bottom:718.650000px;}
.yb1d_c00001{bottom:718.800000px;}
.ydca_c00001{bottom:719.100000px;}
.y7fb_c00001{bottom:719.250000px;}
.ydd9_c00001{bottom:719.400000px;}
.y16_c00001{bottom:719.550000px;}
.y2b1_c00001{bottom:719.700000px;}
.yfc3_c00001{bottom:719.850000px;}
.y2de_c00001{bottom:720.000000px;}
.y629_c00001{bottom:720.300000px;}
.yca8_c00001{bottom:720.900000px;}
.ye79_c00001{bottom:721.200000px;}
.yaa7_c00001{bottom:721.350000px;}
.y53b_c00001{bottom:721.500000px;}
.y41b_c00001{bottom:721.800000px;}
.y338_c00001{bottom:722.100000px;}
.y228_c00001{bottom:722.400000px;}
.y4a5_c00001{bottom:722.550000px;}
.y591_c00001{bottom:722.850000px;}
.y99a_c00001{bottom:723.150000px;}
.yd2b_c00001{bottom:723.300000px;}
.y7d6_c00001{bottom:723.600000px;}
.ye8f_c00001{bottom:723.900000px;}
.yf17_c00001{bottom:724.050000px;}
.y814_c00001{bottom:724.350000px;}
.y89e_c00001{bottom:724.500000px;}
.y74e_c00001{bottom:724.650000px;}
.y77a_c00001{bottom:724.800000px;}
.y30b_c00001{bottom:725.100000px;}
.y821_c00001{bottom:725.400000px;}
.ybf9_c00001{bottom:725.700000px;}
.yb4e_c00001{bottom:726.000000px;}
.y8e1_c00001{bottom:726.150000px;}
.ya86_c00001{bottom:726.450000px;}
.ya33_c00001{bottom:726.600000px;}
.y44a_c00001{bottom:726.750000px;}
.yc4e_c00001{bottom:726.900000px;}
.yf79_c00001{bottom:727.050000px;}
.yf0_c00001{bottom:727.200000px;}
.y70d_c00001{bottom:727.500000px;}
.y280_c00001{bottom:727.650000px;}
.y190_c00001{bottom:727.800000px;}
.ya08_c00001{bottom:727.950000px;}
.y8bb_c00001{bottom:728.400000px;}
.yb7_c00001{bottom:729.000000px;}
.y39c_c00001{bottom:729.300000px;}
.y85_c00001{bottom:729.600000px;}
.y367_c00001{bottom:729.750000px;}
.y8f5_c00001{bottom:729.900000px;}
.yd53_c00001{bottom:730.050000px;}
.yd9f_c00001{bottom:730.200000px;}
.y3f1_c00001{bottom:730.350000px;}
.y67b_c00001{bottom:730.500000px;}
.yf33_c00001{bottom:730.650000px;}
.ydfe_c00001{bottom:731.250000px;}
.y1c9_c00001{bottom:731.400000px;}
.ye11_c00001{bottom:731.550000px;}
.y47b_c00001{bottom:731.850000px;}
.y565_c00001{bottom:732.150000px;}
.y1fa_c00001{bottom:732.300000px;}
.y106a_c00001{bottom:732.600000px;}
.y12c_c00001{bottom:732.900000px;}
.yb37_c00001{bottom:733.200000px;}
.yc0d_c00001{bottom:733.650000px;}
.yc8e_c00001{bottom:733.800000px;}
.yfd1_c00001{bottom:733.950000px;}
.y4d_c00001{bottom:734.250000px;}
.y15d_c00001{bottom:734.400000px;}
.y5db_c00001{bottom:734.700000px;}
.yac8_c00001{bottom:735.000000px;}
.y4a4_c00001{bottom:735.150000px;}
.y4c9_c00001{bottom:735.450000px;}
.y250_c00001{bottom:735.750000px;}
.y72f_c00001{bottom:736.200000px;}
.ybb0_c00001{bottom:736.350000px;}
.yb1c_c00001{bottom:736.500000px;}
.yff5_c00001{bottom:736.650000px;}
.y7fa_c00001{bottom:736.800000px;}
.ydc9_c00001{bottom:737.100000px;}
.y15_c00001{bottom:737.250000px;}
.ydd8_c00001{bottom:737.400000px;}
.y2b0_c00001{bottom:737.700000px;}
.yc66_c00001{bottom:737.850000px;}
.y2dd_c00001{bottom:738.000000px;}
.y87f_c00001{bottom:738.150000px;}
.y628_c00001{bottom:738.300000px;}
.yca7_c00001{bottom:738.600000px;}
.yc65_c00001{bottom:738.900000px;}
.yaa6_c00001{bottom:739.050000px;}
.yd85_c00001{bottom:739.200000px;}
.y41a_c00001{bottom:739.800000px;}
.y935_c00001{bottom:739.950000px;}
.y337_c00001{bottom:740.100000px;}
.yd10_c00001{bottom:740.250000px;}
.y227_c00001{bottom:740.400000px;}
.y590_c00001{bottom:740.850000px;}
.yf16_c00001{bottom:741.300000px;}
.y7d5_c00001{bottom:741.600000px;}
.y1051_c00001{bottom:741.900000px;}
.yf8c_c00001{bottom:742.050000px;}
.y89d_c00001{bottom:742.200000px;}
.y74d_c00001{bottom:742.350000px;}
.y779_c00001{bottom:742.500000px;}
.ycb6_c00001{bottom:742.650000px;}
.yc20_c00001{bottom:742.950000px;}
.y30a_c00001{bottom:743.100000px;}
.yb6_c00001{bottom:743.400000px;}
.y53a_c00001{bottom:743.700000px;}
.y8e0_c00001{bottom:743.850000px;}
.yb06_c00001{bottom:744.150000px;}
.ya85_c00001{bottom:744.450000px;}
.yc4d_c00001{bottom:744.600000px;}
.y70c_c00001{bottom:744.750000px;}
.y1049_c00001{bottom:744.900000px;}
.yef_c00001{bottom:745.200000px;}
.yf78_c00001{bottom:745.350000px;}
.y18f_c00001{bottom:745.500000px;}
.y27f_c00001{bottom:745.650000px;}
.ye8e_c00001{bottom:745.950000px;}
.y9ea_c00001{bottom:746.100000px;}
.yc7b_c00001{bottom:746.250000px;}
.y8ba_c00001{bottom:746.400000px;}
.y449_c00001{bottom:746.550000px;}
.y39b_c00001{bottom:747.000000px;}
.y83f_c00001{bottom:747.300000px;}
.y651_c00001{bottom:747.450000px;}
.y84_c00001{bottom:747.600000px;}
.y50f_c00001{bottom:747.750000px;}
.yd9e_c00001{bottom:747.900000px;}
.y85f_c00001{bottom:748.050000px;}
.y3f0_c00001{bottom:748.350000px;}
.ya32_c00001{bottom:748.500000px;}
.yf32_c00001{bottom:748.650000px;}
.y67a_c00001{bottom:749.250000px;}
.y1c8_c00001{bottom:749.400000px;}
.y3c8_c00001{bottom:749.550000px;}
.y564_c00001{bottom:749.850000px;}
.y1f9_c00001{bottom:750.000000px;}
.yb36_c00001{bottom:750.900000px;}
.yee2_c00001{bottom:751.350000px;}
.y4c_c00001{bottom:751.500000px;}
.yc0c_c00001{bottom:751.650000px;}
.yc8d_c00001{bottom:751.800000px;}
.y5da_c00001{bottom:752.400000px;}
.y791_c00001{bottom:752.700000px;}
.y4a3_c00001{bottom:753.000000px;}
.y4c8_c00001{bottom:753.150000px;}
.y6a0_c00001{bottom:753.450000px;}
.y72e_c00001{bottom:753.600000px;}
.y24f_c00001{bottom:753.750000px;}
.y957_c00001{bottom:754.200000px;}
.ybaf_c00001{bottom:754.350000px;}
.y7f9_c00001{bottom:754.500000px;}
.yff4_c00001{bottom:754.650000px;}
.ydc8_c00001{bottom:754.800000px;}
.y12b_c00001{bottom:755.100000px;}
.y14_c00001{bottom:755.250000px;}
.y2af_c00001{bottom:755.700000px;}
.yfc2_c00001{bottom:755.850000px;}
.y627_c00001{bottom:756.000000px;}
.yd4c_c00001{bottom:756.300000px;}
.yde8_c00001{bottom:756.450000px;}
.yca6_c00001{bottom:756.600000px;}
.y87e_c00001{bottom:757.200000px;}
.y336_c00001{bottom:757.350000px;}
.y419_c00001{bottom:757.500000px;}
.y934_c00001{bottom:757.650000px;}
.yb5_c00001{bottom:757.800000px;}
.yb70_c00001{bottom:758.100000px;}
.yd0f_c00001{bottom:758.250000px;}
.y226_c00001{bottom:758.400000px;}
.yaa5_c00001{bottom:758.550000px;}
.ya31_c00001{bottom:758.850000px;}
.yf8b_c00001{bottom:759.000000px;}
.y2dc_c00001{bottom:759.150000px;}
.y58f_c00001{bottom:759.300000px;}
.y7d4_c00001{bottom:759.600000px;}
.y89c_c00001{bottom:759.900000px;}
.yc64_c00001{bottom:760.200000px;}
.y15c_c00001{bottom:760.350000px;}
.y778_c00001{bottom:760.500000px;}
.yc38_c00001{bottom:760.650000px;}
.yeb2_c00001{bottom:760.950000px;}
.yd84_c00001{bottom:761.100000px;}
.y309_c00001{bottom:761.400000px;}
.y8df_c00001{bottom:761.550000px;}
.ybe7_c00001{bottom:761.700000px;}
.yf22_c00001{bottom:762.000000px;}
.y601_c00001{bottom:762.150000px;}
.y448_c00001{bottom:762.450000px;}
.y70b_c00001{bottom:762.750000px;}
.y679_c00001{bottom:762.900000px;}
.ya4c_c00001{bottom:763.200000px;}
.ya07_c00001{bottom:763.350000px;}
.yb4d_c00001{bottom:763.500000px;}
.y27e_c00001{bottom:763.650000px;}
.y18e_c00001{bottom:763.800000px;}
.ybf8_c00001{bottom:763.950000px;}
.y9e9_c00001{bottom:764.100000px;}
.yc7a_c00001{bottom:764.250000px;}
.y8b9_c00001{bottom:764.400000px;}
.y1069_c00001{bottom:764.550000px;}
.yee_c00001{bottom:765.000000px;}
.y83e_c00001{bottom:765.300000px;}
.y650_c00001{bottom:765.450000px;}
.y83_c00001{bottom:765.600000px;}
.y820_c00001{bottom:765.750000px;}
.y3ef_c00001{bottom:766.050000px;}
.ybc4_c00001{bottom:766.350000px;}
.yf15_c00001{bottom:766.500000px;}
.yf31_c00001{bottom:766.650000px;}
.yaf3_c00001{bottom:766.800000px;}
.ydfd_c00001{bottom:766.950000px;}
.y47a_c00001{bottom:767.250000px;}
.y1c7_c00001{bottom:767.400000px;}
.y563_c00001{bottom:767.850000px;}
.y1f8_c00001{bottom:768.000000px;}
.y956_c00001{bottom:768.600000px;}
.yfb4_c00001{bottom:768.900000px;}
.y58e_c00001{bottom:769.350000px;}
.y4b_c00001{bottom:769.500000px;}
.yc0b_c00001{bottom:769.650000px;}
.yc8c_c00001{bottom:769.800000px;}
.y5d9_c00001{bottom:770.100000px;}
.yd43_c00001{bottom:770.250000px;}
.y4c7_c00001{bottom:770.400000px;}
.y4a2_c00001{bottom:770.700000px;}
.y1064_c00001{bottom:770.850000px;}
.y9be_c00001{bottom:771.150000px;}
.y4ec_c00001{bottom:771.450000px;}
.ybae_c00001{bottom:771.600000px;}
.y24e_c00001{bottom:771.750000px;}
.y3c7_c00001{bottom:771.900000px;}
.yc1f_c00001{bottom:772.050000px;}
.yb4_c00001{bottom:772.200000px;}
.ydc7_c00001{bottom:772.500000px;}
.ye99_c00001{bottom:772.650000px;}
.ydd7_c00001{bottom:772.800000px;}
.yd2a_c00001{bottom:772.950000px;}
.y12a_c00001{bottom:773.100000px;}
.y5b3_c00001{bottom:773.250000px;}
.y6ed_c00001{bottom:773.400000px;}
.y2ae_c00001{bottom:773.700000px;}
.yfc1_c00001{bottom:773.850000px;}
.yff0_c00001{bottom:774.000000px;}
.y50e_c00001{bottom:774.300000px;}
.ye30_c00001{bottom:774.750000px;}
.y335_c00001{bottom:775.350000px;}
.y418_c00001{bottom:775.500000px;}
.y933_c00001{bottom:775.950000px;}
.y13_c00001{bottom:776.100000px;}
.yd0e_c00001{bottom:776.250000px;}
.y225_c00001{bottom:776.400000px;}
.y58d_c00001{bottom:776.550000px;}
.y7f8_c00001{bottom:776.850000px;}
.yf14_c00001{bottom:777.000000px;}
.y7d3_c00001{bottom:777.600000px;}
.y1012_c00001{bottom:777.750000px;}
.y2db_c00001{bottom:777.900000px;}
.y626_c00001{bottom:778.050000px;}
.y777_c00001{bottom:778.200000px;}
.y74c_c00001{bottom:778.350000px;}
.yfa1_c00001{bottom:778.500000px;}
.y308_c00001{bottom:778.650000px;}
.y366_c00001{bottom:778.800000px;}
.yd83_c00001{bottom:779.100000px;}
.ya5d_c00001{bottom:779.250000px;}
.y539_c00001{bottom:779.400000px;}
.y8de_c00001{bottom:779.550000px;}
.y447_c00001{bottom:779.700000px;}
.y600_c00001{bottom:780.150000px;}
.ye8d_c00001{bottom:780.450000px;}
.y70a_c00001{bottom:780.750000px;}
.ya4b_c00001{bottom:780.900000px;}
.y5b2_c00001{bottom:781.200000px;}
.ya06_c00001{bottom:781.350000px;}
.y18d_c00001{bottom:781.500000px;}
.y9e8_c00001{bottom:781.800000px;}
.y8b8_c00001{bottom:782.100000px;}
.yc79_c00001{bottom:782.250000px;}
.y1023_c00001{bottom:782.700000px;}
.y39a_c00001{bottom:783.000000px;}
.y83d_c00001{bottom:783.300000px;}
.y27d_c00001{bottom:783.450000px;}
.y82_c00001{bottom:783.600000px;}
.y3ee_c00001{bottom:783.750000px;}
.yce3_c00001{bottom:784.050000px;}
.ybc3_c00001{bottom:784.350000px;}
.ydfc_c00001{bottom:784.650000px;}
.yd64_c00001{bottom:784.800000px;}
.ye10_c00001{bottom:784.950000px;}
.yed_c00001{bottom:785.100000px;}
.y479_c00001{bottom:785.250000px;}
.y562_c00001{bottom:785.850000px;}
.y1f7_c00001{bottom:786.000000px;}
.yc1e_c00001{bottom:786.150000px;}
.yf49_c00001{bottom:786.750000px;}
.yb3_c00001{bottom:786.900000px;}
.yfb3_c00001{bottom:787.200000px;}
.yde7_c00001{bottom:787.350000px;}
.y4a_c00001{bottom:787.500000px;}
.yfd0_c00001{bottom:787.650000px;}
.y5d8_c00001{bottom:787.800000px;}
.y85e_c00001{bottom:787.950000px;}
.y6c7_c00001{bottom:788.100000px;}
.ybe6_c00001{bottom:788.400000px;}
.y4a1_c00001{bottom:788.700000px;}
.y69f_c00001{bottom:789.000000px;}
.y9bd_c00001{bottom:789.150000px;}
.y9d6_c00001{bottom:789.450000px;}
.y72d_c00001{bottom:789.600000px;}
.y24d_c00001{bottom:789.750000px;}
.y3c6_c00001{bottom:789.900000px;}
.yef8_c00001{bottom:790.050000px;}
.yb1b_c00001{bottom:790.200000px;}
.yb35_c00001{bottom:790.500000px;}
.yd29_c00001{bottom:790.650000px;}
.y983_c00001{bottom:790.950000px;}
.y129_c00001{bottom:791.100000px;}
.y15b_c00001{bottom:791.250000px;}
.y6ec_c00001{bottom:791.400000px;}
.yff3_c00001{bottom:791.550000px;}
.y2ad_c00001{bottom:791.700000px;}
.y50d_c00001{bottom:792.000000px;}
.ye98_c00001{bottom:792.150000px;}
.ydb3_c00001{bottom:792.300000px;}
.y334_c00001{bottom:793.050000px;}
.y87d_c00001{bottom:793.200000px;}
.yaa4_c00001{bottom:793.350000px;}
.y417_c00001{bottom:793.500000px;}
.y932_c00001{bottom:793.650000px;}
.yb6f_c00001{bottom:793.800000px;}
.yf03_c00001{bottom:793.950000px;}
.y224_c00001{bottom:794.100000px;}
.yf13_c00001{bottom:794.700000px;}
.y7f7_c00001{bottom:794.850000px;}
.yf8a_c00001{bottom:795.300000px;}
.y12_c00001{bottom:795.600000px;}
.y625_c00001{bottom:795.750000px;}
.y2da_c00001{bottom:795.900000px;}
.y776_c00001{bottom:796.200000px;}
.ycb5_c00001{bottom:796.350000px;}
.yfa0_c00001{bottom:796.500000px;}
.y365_c00001{bottom:796.800000px;}
.y790_c00001{bottom:796.950000px;}
.y538_c00001{bottom:797.100000px;}
.y8dd_c00001{bottom:797.250000px;}
.y74b_c00001{bottom:797.400000px;}
.y446_c00001{bottom:797.700000px;}
.ya5c_c00001{bottom:798.000000px;}
.yfe8_c00001{bottom:798.150000px;}
.y709_c00001{bottom:798.450000px;}
.ya4a_c00001{bottom:798.600000px;}
.y27c_c00001{bottom:798.900000px;}
.ya05_c00001{bottom:799.050000px;}
.y7d2_c00001{bottom:799.200000px;}
.y18c_c00001{bottom:799.500000px;}
.yae0_c00001{bottom:799.800000px;}
.y8b7_c00001{bottom:800.100000px;}
.yc77_c00001{bottom:800.250000px;}
.yc1d_c00001{bottom:800.550000px;}
.y399_c00001{bottom:800.700000px;}
.yb2_c00001{bottom:801.000000px;}
.yf77_c00001{bottom:801.150000px;}
.y307_c00001{bottom:801.300000px;}
.y64f_c00001{bottom:801.450000px;}
.y58c_c00001{bottom:801.600000px;}
.ya23_c00001{bottom:801.750000px;}
.y81_c00001{bottom:801.900000px;}
.ybc2_c00001{bottom:802.050000px;}
.yf30_c00001{bottom:802.350000px;}
.yd75_c00001{bottom:802.500000px;}
.ydfb_c00001{bottom:802.650000px;}
.y1c6_c00001{bottom:802.800000px;}
.y478_c00001{bottom:802.950000px;}
.yd4b_c00001{bottom:803.100000px;}
.y561_c00001{bottom:803.850000px;}
.y1f6_c00001{bottom:804.000000px;}
.y96d_c00001{bottom:804.150000px;}
.ya7e_c00001{bottom:804.600000px;}
.ycc3_c00001{bottom:804.750000px;}
.yff2_c00001{bottom:804.900000px;}
.yf48_c00001{bottom:805.050000px;}
.y81f_c00001{bottom:805.200000px;}
.y3ed_c00001{bottom:805.350000px;}
.y49_c00001{bottom:805.500000px;}
.yfcf_c00001{bottom:805.650000px;}
.yd42_c00001{bottom:805.950000px;}
.y5d7_c00001{bottom:806.100000px;}
.yc4c_c00001{bottom:806.250000px;}
.yec_c00001{bottom:806.400000px;}
.y85d_c00001{bottom:806.700000px;}
.y6c6_c00001{bottom:806.850000px;}
.y69e_c00001{bottom:807.000000px;}
.yfb2_c00001{bottom:807.300000px;}
.y4eb_c00001{bottom:807.450000px;}
.y24c_c00001{bottom:807.750000px;}
.y72c_c00001{bottom:807.900000px;}
.yef7_c00001{bottom:808.050000px;}
.yb1a_c00001{bottom:808.200000px;}
.yd28_c00001{bottom:808.350000px;}
.yb34_c00001{bottom:808.500000px;}
.y128_c00001{bottom:809.100000px;}
.y2ac_c00001{bottom:809.250000px;}
.y103b_c00001{bottom:809.400000px;}
.yde6_c00001{bottom:809.700000px;}
.y50c_c00001{bottom:809.850000px;}
.y982_c00001{bottom:810.000000px;}
.ydb2_c00001{bottom:810.300000px;}
.ye2f_c00001{bottom:810.600000px;}
.y4c6_c00001{bottom:810.750000px;}
.y87c_c00001{bottom:810.900000px;}
.y333_c00001{bottom:811.050000px;}
.ye42_c00001{bottom:811.350000px;}
.ycee_c00001{bottom:811.500000px;}
.y931_c00001{bottom:811.650000px;}
.y955_c00001{bottom:811.800000px;}
.yf02_c00001{bottom:811.950000px;}
.y223_c00001{bottom:812.100000px;}
.yf89_c00001{bottom:812.550000px;}
.y7f6_c00001{bottom:812.850000px;}
.yca5_c00001{bottom:813.000000px;}
.y15a_c00001{bottom:813.600000px;}
.y624_c00001{bottom:813.750000px;}
.y775_c00001{bottom:813.900000px;}
.yf21_c00001{bottom:814.200000px;}
.yd82_c00001{bottom:814.350000px;}
.y364_c00001{bottom:814.500000px;}
.ycb4_c00001{bottom:814.650000px;}
.yf9f_c00001{bottom:814.800000px;}
.y78f_c00001{bottom:814.950000px;}
.yb1_c00001{bottom:815.100000px;}
.y8dc_c00001{bottom:815.250000px;}
.y416_c00001{bottom:815.400000px;}
.y445_c00001{bottom:815.700000px;}
.y9d5_c00001{bottom:816.150000px;}
.y708_c00001{bottom:816.450000px;}
.ya49_c00001{bottom:816.600000px;}
.ya04_c00001{bottom:816.750000px;}
.y27b_c00001{bottom:816.900000px;}
.y18b_c00001{bottom:817.200000px;}
.yf76_c00001{bottom:817.350000px;}
.y7d1_c00001{bottom:817.500000px;}
.yb80_c00001{bottom:817.800000px;}
.y8b6_c00001{bottom:818.100000px;}
.yce2_c00001{bottom:818.250000px;}
.yc76_c00001{bottom:818.550000px;}
.y398_c00001{bottom:818.700000px;}
.y64e_c00001{bottom:819.150000px;}
.y306_c00001{bottom:819.300000px;}
.ya22_c00001{bottom:819.450000px;}
.y80_c00001{bottom:819.600000px;}
.ybc1_c00001{bottom:820.050000px;}
.yf2f_c00001{bottom:820.350000px;}
.y678_c00001{bottom:820.500000px;}
.y477_c00001{bottom:820.650000px;}
.y1c5_c00001{bottom:820.800000px;}
.y58b_c00001{bottom:821.100000px;}
.y1068_c00001{bottom:821.550000px;}
.y1f5_c00001{bottom:821.700000px;}
.y560_c00001{bottom:821.850000px;}
.ya84_c00001{bottom:822.300000px;}
.yc37_c00001{bottom:822.600000px;}
.yff1_c00001{bottom:822.900000px;}
.y81e_c00001{bottom:823.200000px;}
.yc8b_c00001{bottom:823.350000px;}
.y48_c00001{bottom:823.500000px;}
.yd41_c00001{bottom:823.650000px;}
.y5d6_c00001{bottom:823.800000px;}
.y3ec_c00001{bottom:824.100000px;}
.yc4b_c00001{bottom:824.250000px;}
.y85c_c00001{bottom:824.400000px;}
.y6c5_c00001{bottom:824.550000px;}
.yeb_c00001{bottom:824.700000px;}
.y9bc_c00001{bottom:824.850000px;}
.y69d_c00001{bottom:825.000000px;}
.ybad_c00001{bottom:825.150000px;}
.y24b_c00001{bottom:825.450000px;}
.yb19_c00001{bottom:825.750000px;}
.yef6_c00001{bottom:826.050000px;}
.yb33_c00001{bottom:826.200000px;}
.y954_c00001{bottom:826.500000px;}
.yd27_c00001{bottom:826.650000px;}
.y6eb_c00001{bottom:827.100000px;}
.y100f_c00001{bottom:827.250000px;}
.y127_c00001{bottom:827.400000px;}
.yd9d_c00001{bottom:827.550000px;}
.y50b_c00001{bottom:827.850000px;}
.y332_c00001{bottom:828.000000px;}
.yd4a_c00001{bottom:828.300000px;}
.y87b_c00001{bottom:828.600000px;}
.y4c5_c00001{bottom:828.750000px;}
.yac7_c00001{bottom:828.900000px;}
.yaf2_c00001{bottom:829.050000px;}
.y1022_c00001{bottom:829.200000px;}
.yc1c_c00001{bottom:829.350000px;}
.y1048_c00001{bottom:829.500000px;}
.y930_c00001{bottom:829.650000px;}
.yb0_c00001{bottom:829.800000px;}
.yf01_c00001{bottom:829.950000px;}
.y11_c00001{bottom:830.100000px;}
.y7f5_c00001{bottom:830.550000px;}
.yee1_c00001{bottom:830.700000px;}
.ybf7_c00001{bottom:830.850000px;}
.yca4_c00001{bottom:831.300000px;}
.y623_c00001{bottom:831.450000px;}
.ybd1_c00001{bottom:831.600000px;}
.y2ab_c00001{bottom:831.750000px;}
.y7b3_c00001{bottom:831.900000px;}
.y774_c00001{bottom:832.200000px;}
.yced_c00001{bottom:832.350000px;}
.y363_c00001{bottom:832.500000px;}
.y4ea_c00001{bottom:832.650000px;}
.yf9e_c00001{bottom:832.800000px;}
.y8db_c00001{bottom:832.950000px;}
.y415_c00001{bottom:833.100000px;}
.y78e_c00001{bottom:833.250000px;}
.y444_c00001{bottom:833.400000px;}
.y707_c00001{bottom:834.150000px;}
.ya48_c00001{bottom:834.300000px;}
.y1055_c00001{bottom:834.450000px;}
.ya03_c00001{bottom:834.750000px;}
.y27a_c00001{bottom:834.900000px;}
.yf75_c00001{bottom:835.050000px;}
.y18a_c00001{bottom:835.200000px;}
.y159_c00001{bottom:835.500000px;}
.y2d9_c00001{bottom:835.650000px;}
.y8b5_c00001{bottom:835.800000px;}
.y89b_c00001{bottom:835.950000px;}
.yc0a_c00001{bottom:836.250000px;}
.y397_c00001{bottom:836.400000px;}
.yb05_c00001{bottom:836.700000px;}
.y64d_c00001{bottom:836.850000px;}
.y305_c00001{bottom:837.000000px;}
.y8f4_c00001{bottom:837.300000px;}
.ya21_c00001{bottom:837.450000px;}
.y7f_c00001{bottom:837.600000px;}
.yf2e_c00001{bottom:838.050000px;}
.yb67_c00001{bottom:838.200000px;}
.ydfa_c00001{bottom:838.350000px;}
.y1c4_c00001{bottom:838.500000px;}
.y476_c00001{bottom:838.650000px;}
.y5b1_c00001{bottom:838.800000px;}
.y58a_c00001{bottom:839.100000px;}
.y222_c00001{bottom:839.400000px;}
.y1f4_c00001{bottom:839.700000px;}
.y55f_c00001{bottom:839.850000px;}
.yf47_c00001{bottom:840.150000px;}
.y953_c00001{bottom:840.600000px;}
.y81d_c00001{bottom:840.900000px;}
.y47_c00001{bottom:841.500000px;}
.yc36_c00001{bottom:841.650000px;}
.y3eb_c00001{bottom:841.800000px;}
.y4a0_c00001{bottom:842.100000px;}
.y6c4_c00001{bottom:842.250000px;}
.y85b_c00001{bottom:842.400000px;}
.y9bb_c00001{bottom:842.550000px;}
.yea_c00001{bottom:842.700000px;}
.y69c_c00001{bottom:843.000000px;}
.ybac_c00001{bottom:843.150000px;}
.y24a_c00001{bottom:843.450000px;}
.yc1b_c00001{bottom:843.750000px;}
.yd26_c00001{bottom:843.900000px;}
.yec6_c00001{bottom:844.200000px;}
.y6ea_c00001{bottom:844.800000px;}
.yaf_c00001{bottom:844.950000px;}
.y126_c00001{bottom:845.100000px;}
.ye97_c00001{bottom:845.250000px;}
.yc8a_c00001{bottom:845.400000px;}
.yd9c_c00001{bottom:845.550000px;}
.ya7b_c00001{bottom:845.700000px;}
.ya30_c00001{bottom:845.850000px;}
.ydb1_c00001{bottom:846.000000px;}
.y50a_c00001{bottom:846.150000px;}
.y87a_c00001{bottom:846.300000px;}
.y4c4_c00001{bottom:846.450000px;}
.yd49_c00001{bottom:846.600000px;}
.yaa3_c00001{bottom:846.900000px;}
.yb18_c00001{bottom:847.050000px;}
.y1021_c00001{bottom:847.200000px;}
.y92f_c00001{bottom:847.350000px;}
.y3c5_c00001{bottom:847.500000px;}
.yf00_c00001{bottom:847.650000px;}
.yea3_c00001{bottom:847.800000px;}
.yb32_c00001{bottom:848.100000px;}
.yf12_c00001{bottom:848.400000px;}
.y7f4_c00001{bottom:848.550000px;}
.y677_c00001{bottom:849.000000px;}
.y622_c00001{bottom:849.150000px;}
.y2aa_c00001{bottom:849.450000px;}
.y10_c00001{bottom:849.600000px;}
.y7b2_c00001{bottom:849.900000px;}
.y362_c00001{bottom:850.200000px;}
.y331_c00001{bottom:850.350000px;}
.yf9d_c00001{bottom:850.500000px;}
.y8da_c00001{bottom:850.650000px;}
.y414_c00001{bottom:850.950000px;}
.y4e9_c00001{bottom:851.400000px;}
.ybd0_c00001{bottom:851.700000px;}
.yf0d_c00001{bottom:851.850000px;}
.y221_c00001{bottom:852.000000px;}
.ya02_c00001{bottom:852.750000px;}
.y9e7_c00001{bottom:852.900000px;}
.yf74_c00001{bottom:853.050000px;}
.y279_c00001{bottom:853.200000px;}
.y189_c00001{bottom:853.500000px;}
.y7d0_c00001{bottom:853.800000px;}
.y2d8_c00001{bottom:853.950000px;}
.yc09_c00001{bottom:854.250000px;}
.y396_c00001{bottom:854.400000px;}
.y443_c00001{bottom:854.550000px;}
.y304_c00001{bottom:854.700000px;}
.y64c_c00001{bottom:854.850000px;}
.y83c_c00001{bottom:855.000000px;}
.yd0d_c00001{bottom:855.150000px;}
.y537_c00001{bottom:855.300000px;}
.y7e_c00001{bottom:855.600000px;}
.ya20_c00001{bottom:855.750000px;}
.ya5b_c00001{bottom:856.050000px;}
.y1c3_c00001{bottom:856.350000px;}
.yb66_c00001{bottom:856.500000px;}
.ydf9_c00001{bottom:856.650000px;}
.yd74_c00001{bottom:856.800000px;}
.yadf_c00001{bottom:857.100000px;}
.y1f3_c00001{bottom:857.400000px;}
.y158_c00001{bottom:857.850000px;}
.y589_c00001{bottom:858.300000px;}
.ycc2_c00001{bottom:858.450000px;}
.yae_c00001{bottom:858.600000px;}
.ybc0_c00001{bottom:858.900000px;}
.y46_c00001{bottom:859.200000px;}
.yd40_c00001{bottom:859.350000px;}
.y5d5_c00001{bottom:859.500000px;}
.yb04_c00001{bottom:859.650000px;}
.y3ea_c00001{bottom:859.800000px;}
.yc4a_c00001{bottom:859.950000px;}
.yfdb_c00001{bottom:860.100000px;}
.y69b_c00001{bottom:860.250000px;}
.y85a_c00001{bottom:860.400000px;}
.y9ba_c00001{bottom:860.550000px;}
.ye9_c00001{bottom:860.700000px;}
.y72b_c00001{bottom:861.450000px;}
.yec4_c00001{bottom:861.600000px;}
.y249_c00001{bottom:861.750000px;}
.y55e_c00001{bottom:861.900000px;}
.y89a_c00001{bottom:862.200000px;}
.yc35_c00001{bottom:862.500000px;}
.y125_c00001{bottom:862.800000px;}
.ya7a_c00001{bottom:862.950000px;}
.yd9b_c00001{bottom:863.250000px;}
.ya2f_c00001{bottom:863.550000px;}
.yac6_c00001{bottom:863.700000px;}
.y509_c00001{bottom:863.850000px;}
.yd48_c00001{bottom:864.300000px;}
.yfef_c00001{bottom:864.450000px;}
.y4c3_c00001{bottom:864.750000px;}
.yaa2_c00001{bottom:864.900000px;}
.y71f_c00001{bottom:865.050000px;}
.y92e_c00001{bottom:865.350000px;}
.yd25_c00001{bottom:865.500000px;}
.yeff_c00001{bottom:865.650000px;}
.ye2e_c00001{bottom:865.800000px;}
.y999_c00001{bottom:866.100000px;}
.y7f3_c00001{bottom:866.550000px;}
.y2a9_c00001{bottom:866.700000px;}
.yf_c00001{bottom:866.850000px;}
.yee0_c00001{bottom:867.000000px;}
.y621_c00001{bottom:867.150000px;}
.ydc6_c00001{bottom:867.300000px;}
.yc63_c00001{bottom:867.600000px;}
.y773_c00001{bottom:867.900000px;}
.y361_c00001{bottom:868.200000px;}
.yb60_c00001{bottom:868.350000px;}
.y706_c00001{bottom:868.500000px;}
.y8d9_c00001{bottom:868.650000px;}
.yf9c_c00001{bottom:868.800000px;}
.y413_c00001{bottom:868.950000px;}
.y4e8_c00001{bottom:869.400000px;}
.y3c4_c00001{bottom:869.700000px;}
.yb94_c00001{bottom:869.850000px;}
.y220_c00001{bottom:870.000000px;}
.yf0c_c00001{bottom:870.150000px;}
.y278_c00001{bottom:870.450000px;}
.y188_c00001{bottom:871.200000px;}
.y7cf_c00001{bottom:871.500000px;}
.y2d7_c00001{bottom:871.650000px;}
.yf73_c00001{bottom:871.800000px;}
.y981_c00001{bottom:871.950000px;}
.yc1a_c00001{bottom:872.250000px;}
.y64b_c00001{bottom:872.550000px;}
.ya1f_c00001{bottom:872.700000px;}
.yd0c_c00001{bottom:872.850000px;}
.y588_c00001{bottom:873.000000px;}
.y7d_c00001{bottom:873.300000px;}
.y330_c00001{bottom:873.750000px;}
.y1c2_c00001{bottom:874.050000px;}
.y475_c00001{bottom:874.350000px;}
.yb65_c00001{bottom:874.500000px;}
.y9e6_c00001{bottom:874.800000px;}
.y303_c00001{bottom:875.100000px;}
.y1f2_c00001{bottom:875.700000px;}
.y157_c00001{bottom:875.850000px;}
.ycc1_c00001{bottom:876.150000px;}
.y49f_c00001{bottom:876.300000px;}
.yb03_c00001{bottom:876.600000px;}
.y676_c00001{bottom:876.750000px;}
.y910_c00001{bottom:876.900000px;}
.y45_c00001{bottom:877.200000px;}
.y83b_c00001{bottom:877.350000px;}
.y3e9_c00001{bottom:877.500000px;}
.y6c3_c00001{bottom:877.800000px;}
.yc49_c00001{bottom:877.950000px;}
.y859_c00001{bottom:878.100000px;}
.y675_c00001{bottom:878.250000px;}
.ye8_c00001{bottom:878.400000px;}
.y9b9_c00001{bottom:878.550000px;}
.yb31_c00001{bottom:878.700000px;}
.y587_c00001{bottom:879.150000px;}
.yec3_c00001{bottom:879.300000px;}
.y248_c00001{bottom:879.450000px;}
.y55d_c00001{bottom:879.900000px;}
.y899_c00001{bottom:880.200000px;}
.yce1_c00001{bottom:880.350000px;}
.y6e9_c00001{bottom:880.500000px;}
.y124_c00001{bottom:881.100000px;}
.y879_c00001{bottom:881.250000px;}
.y508_c00001{bottom:881.550000px;}
.ydb0_c00001{bottom:881.700000px;}
.yfc0_c00001{bottom:881.850000px;}
.y1011_c00001{bottom:882.000000px;}
.y4c2_c00001{bottom:882.300000px;}
.yaa1_c00001{bottom:882.600000px;}
.yfee_c00001{bottom:882.750000px;}
.ye41_c00001{bottom:883.050000px;}
.y705_c00001{bottom:883.200000px;}
.y92d_c00001{bottom:883.350000px;}
.yd24_c00001{bottom:883.500000px;}
.ybab_c00001{bottom:883.650000px;}
.y952_c00001{bottom:884.100000px;}
.yedf_c00001{bottom:884.250000px;}
.y620_c00001{bottom:884.400000px;}
.y7f2_c00001{bottom:884.550000px;}
.y2a8_c00001{bottom:884.700000px;}
.ye_c00001{bottom:884.850000px;}
.yc32_c00001{bottom:885.150000px;}
.yd9a_c00001{bottom:885.300000px;}
.y7b1_c00001{bottom:885.450000px;}
.yc62_c00001{bottom:885.600000px;}
.y360_c00001{bottom:885.900000px;}
.yac5_c00001{bottom:886.050000px;}
.y78d_c00001{bottom:886.200000px;}
.y8d8_c00001{bottom:886.350000px;}
.y536_c00001{bottom:886.650000px;}
.yf9b_c00001{bottom:886.800000px;}
.yf20_c00001{bottom:886.950000px;}
.ye67_c00001{bottom:887.100000px;}
.y412_c00001{bottom:887.250000px;}
.ye78_c00001{bottom:887.400000px;}
.y21f_c00001{bottom:887.700000px;}
.yb93_c00001{bottom:888.150000px;}
.y277_c00001{bottom:888.450000px;}
.y187_c00001{bottom:889.200000px;}
.yeed_c00001{bottom:889.350000px;}
.ye8c_c00001{bottom:889.500000px;}
.y2d6_c00001{bottom:889.650000px;}
.y395_c00001{bottom:889.950000px;}
.y980_c00001{bottom:890.250000px;}
.ya1e_c00001{bottom:890.400000px;}
.y64a_c00001{bottom:890.550000px;}
.y32f_c00001{bottom:890.700000px;}
.yd0b_c00001{bottom:890.850000px;}
.y7c_c00001{bottom:891.300000px;}
.yb4c_c00001{bottom:891.450000px;}
.y9d4_c00001{bottom:891.600000px;}
.ye0f_c00001{bottom:891.750000px;}
.y1c1_c00001{bottom:892.050000px;}
.yd73_c00001{bottom:892.500000px;}
.y674_c00001{bottom:892.650000px;}
.y5ff_c00001{bottom:892.800000px;}
.y8af_c00001{bottom:893.100000px;}
.y1f1_c00001{bottom:893.400000px;}
.y8b4_c00001{bottom:893.550000px;}
.y74a_c00001{bottom:893.700000px;}
.ycc0_c00001{bottom:893.850000px;}
.yc75_c00001{bottom:894.000000px;}
.y302_c00001{bottom:894.150000px;}
.ya7d_c00001{bottom:894.600000px;}
.y44_c00001{bottom:894.900000px;}
.y6c2_c00001{bottom:895.050000px;}
.y5d4_c00001{bottom:895.200000px;}
.y535_c00001{bottom:895.350000px;}
.y442_c00001{bottom:895.650000px;}
.y3e8_c00001{bottom:895.800000px;}
.y69a_c00001{bottom:895.950000px;}
.y72a_c00001{bottom:896.100000px;}
.y9b8_c00001{bottom:896.250000px;}
.ye7_c00001{bottom:896.400000px;}
.yd23_c00001{bottom:896.850000px;}
.y586_c00001{bottom:897.150000px;}
.yec2_c00001{bottom:897.300000px;}
.y55c_c00001{bottom:897.600000px;}
.y6e8_c00001{bottom:898.200000px;}
.y96c_c00001{bottom:898.500000px;}
.yb64_c00001{bottom:898.650000px;}
.y123_c00001{bottom:898.800000px;}
.ybcf_c00001{bottom:898.950000px;}
.yce0_c00001{bottom:899.100000px;}
.ya2e_c00001{bottom:899.250000px;}
.y507_c00001{bottom:899.550000px;}
.y898_c00001{bottom:899.700000px;}
.yfbf_c00001{bottom:899.850000px;}
.y5b0_c00001{bottom:900.000000px;}
.yaa0_c00001{bottom:900.300000px;}
.ye40_c00001{bottom:900.750000px;}
.yc19_c00001{bottom:901.050000px;}
.ybbf_c00001{bottom:901.200000px;}
.y729_c00001{bottom:901.350000px;}
.yb30_c00001{bottom:901.500000px;}
.y247_c00001{bottom:901.800000px;}
.y61f_c00001{bottom:902.100000px;}
.yede_c00001{bottom:902.250000px;}
.y2a7_c00001{bottom:902.400000px;}
.y7f1_c00001{bottom:902.550000px;}
.yd_c00001{bottom:902.850000px;}
.ydc3_c00001{bottom:903.000000px;}
.y7b0_c00001{bottom:903.150000px;}
.yac4_c00001{bottom:903.300000px;}
.yf88_c00001{bottom:903.450000px;}
.yc61_c00001{bottom:903.600000px;}
.yb5f_c00001{bottom:903.750000px;}
.y35f_c00001{bottom:903.900000px;}
.y4c1_c00001{bottom:904.200000px;}
.yb02_c00001{bottom:904.350000px;}
.y411_c00001{bottom:904.500000px;}
.ye66_c00001{bottom:904.650000px;}
.yf9a_c00001{bottom:904.800000px;}
.yad_c00001{bottom:904.950000px;}
.y1047_c00001{bottom:905.100000px;}
.ya47_c00001{bottom:905.250000px;}
.y4e7_c00001{bottom:905.400000px;}
.ydc5_c00001{bottom:906.150000px;}
.y673_c00001{bottom:906.300000px;}
.y276_c00001{bottom:906.450000px;}
.y21e_c00001{bottom:906.750000px;}
.y156_c00001{bottom:906.900000px;}
.yeec_c00001{bottom:907.050000px;}
.y394_c00001{bottom:907.200000px;}
.y7ce_c00001{bottom:907.500000px;}
.y32e_c00001{bottom:907.950000px;}
.y649_c00001{bottom:908.250000px;}
.ya1d_c00001{bottom:908.400000px;}
.yd0a_c00001{bottom:908.850000px;}
.y5fe_c00001{bottom:909.000000px;}
.y7b_c00001{bottom:909.300000px;}
.y1c0_c00001{bottom:909.750000px;}
.y474_c00001{bottom:910.050000px;}
.yb92_c00001{bottom:910.200000px;}
.yade_c00001{bottom:910.500000px;}
.y1f0_c00001{bottom:911.100000px;}
.yaf1_c00001{bottom:911.400000px;}
.y186_c00001{bottom:911.550000px;}
.yc08_c00001{bottom:911.850000px;}
.y704_c00001{bottom:912.000000px;}
.yc74_c00001{bottom:912.300000px;}
.ya7c_c00001{bottom:912.600000px;}
.y6c1_c00001{bottom:912.750000px;}
.y5d3_c00001{bottom:912.900000px;}
.y3e7_c00001{bottom:913.050000px;}
.y43_c00001{bottom:913.200000px;}
.yb63_c00001{bottom:913.350000px;}
.y90f_c00001{bottom:913.500000px;}
.y301_c00001{bottom:913.650000px;}
.ybe5_c00001{bottom:913.950000px;}
.yfe5_c00001{bottom:914.100000px;}
.y9b7_c00001{bottom:914.250000px;}
.ye6_c00001{bottom:914.400000px;}
.y1063_c00001{bottom:914.700000px;}
.yec1_c00001{bottom:915.000000px;}
.y3c3_c00001{bottom:915.150000px;}
.y55b_c00001{bottom:915.300000px;}
.yc18_c00001{bottom:915.450000px;}
.y585_c00001{bottom:915.600000px;}
.yca3_c00001{bottom:915.900000px;}
.y6e7_c00001{bottom:916.200000px;}
.y81c_c00001{bottom:916.500000px;}
.y8f3_c00001{bottom:916.800000px;}
.y122_c00001{bottom:917.100000px;}
.y506_c00001{bottom:917.250000px;}
.yd47_c00001{bottom:917.550000px;}
.ye77_c00001{bottom:918.000000px;}
.y858_c00001{bottom:918.300000px;}
.yd22_c00001{bottom:918.450000px;}
.y5af_c00001{bottom:919.050000px;}
.ybbe_c00001{bottom:919.200000px;}
.y728_c00001{bottom:919.350000px;}
.ya79_c00001{bottom:919.500000px;}
.y246_c00001{bottom:919.800000px;}
.yedd_c00001{bottom:919.950000px;}
.y2a6_c00001{bottom:920.400000px;}
.ye52_c00001{bottom:920.550000px;}
.y7af_c00001{bottom:920.850000px;}
.y441_c00001{bottom:921.000000px;}
.y672_c00001{bottom:921.450000px;}
.y35e_c00001{bottom:921.600000px;}
.yf87_c00001{bottom:921.750000px;}
.y8d7_c00001{bottom:921.900000px;}
.yb5e_c00001{bottom:922.050000px;}
.y410_c00001{bottom:922.200000px;}
.yc89_c00001{bottom:922.350000px;}
.y878_c00001{bottom:922.500000px;}
.y3c2_c00001{bottom:922.650000px;}
.ya01_c00001{bottom:922.800000px;}
.ydaf_c00001{bottom:922.950000px;}
.y4e6_c00001{bottom:923.100000px;}
.yf0b_c00001{bottom:923.400000px;}
.ya46_c00001{bottom:923.550000px;}
.y21d_c00001{bottom:923.700000px;}
.y1046_c00001{bottom:923.850000px;}
.y275_c00001{bottom:924.150000px;}
.y61e_c00001{bottom:924.300000px;}
.ybf6_c00001{bottom:924.450000px;}
.ye8b_c00001{bottom:924.750000px;}
.ydc2_c00001{bottom:924.900000px;}
.y7f0_c00001{bottom:925.050000px;}
.y7cd_c00001{bottom:925.200000px;}
.yac3_c00001{bottom:925.500000px;}
.y32d_c00001{bottom:925.950000px;}
.ya1c_c00001{bottom:926.100000px;}
.y97f_c00001{bottom:926.250000px;}
.yd09_c00001{bottom:926.550000px;}
.y5fd_c00001{bottom:926.700000px;}
.y7a_c00001{bottom:927.000000px;}
.yac_c00001{bottom:927.300000px;}
.y473_c00001{bottom:927.750000px;}
.yb91_c00001{bottom:928.200000px;}
.y703_c00001{bottom:928.500000px;}
.y300_c00001{bottom:928.800000px;}
.y1ef_c00001{bottom:929.100000px;}
.y1062_c00001{bottom:929.400000px;}
.y185_c00001{bottom:929.550000px;}
.yb4b_c00001{bottom:929.850000px;}
.y749_c00001{bottom:930.000000px;}
.y49e_c00001{bottom:930.150000px;}
.yeb1_c00001{bottom:930.300000px;}
.y5d2_c00001{bottom:930.600000px;}
.y6c0_c00001{bottom:930.750000px;}
.y42_c00001{bottom:930.900000px;}
.y3e6_c00001{bottom:931.050000px;}
.y3c1_c00001{bottom:931.350000px;}
.y90e_c00001{bottom:931.500000px;}
.ybe4_c00001{bottom:931.650000px;}
.yc48_c00001{bottom:931.950000px;}
.y9b6_c00001{bottom:932.250000px;}
.ye5_c00001{bottom:932.400000px;}
.ycd1_c00001{bottom:932.700000px;}
.yec0_c00001{bottom:933.000000px;}
.ycbf_c00001{bottom:933.150000px;}
.y55a_c00001{bottom:933.300000px;}
.yca2_c00001{bottom:933.450000px;}
.y897_c00001{bottom:933.600000px;}
.yb62_c00001{bottom:933.750000px;}
.y393_c00001{bottom:933.900000px;}
.y681_c00001{bottom:934.200000px;}
.y81b_c00001{bottom:934.500000px;}
.y121_c00001{bottom:934.800000px;}
.ycdf_c00001{bottom:935.100000px;}
.y505_c00001{bottom:935.250000px;}
.yd46_c00001{bottom:935.550000px;}
.y1bc_c00001{bottom:936.000000px;}
.y857_c00001{bottom:936.300000px;}
.yd52_c00001{bottom:936.600000px;}
.y92c_c00001{bottom:936.750000px;}
.ybbd_c00001{bottom:936.900000px;}
.y5ae_c00001{bottom:937.050000px;}
.yc_c00001{bottom:937.500000px;}
.y245_c00001{bottom:937.800000px;}
.yb17_c00001{bottom:938.100000px;}
.yedc_c00001{bottom:938.250000px;}
.y2a5_c00001{bottom:938.400000px;}
.y7ae_c00001{bottom:938.850000px;}
.y35d_c00001{bottom:939.300000px;}
.y772_c00001{bottom:939.600000px;}
.ya9f_c00001{bottom:939.750000px;}
.y40f_c00001{bottom:939.900000px;}
.y440_c00001{bottom:940.050000px;}
.y4c0_c00001{bottom:940.200000px;}
.ybaa_c00001{bottom:940.350000px;}
.ye51_c00001{bottom:940.650000px;}
.ya45_c00001{bottom:940.800000px;}
.ya78_c00001{bottom:941.100000px;}
.y4e5_c00001{bottom:941.400000px;}
.y951_c00001{bottom:942.000000px;}
.y274_c00001{bottom:942.150000px;}
.y6e6_c00001{bottom:942.300000px;}
.ye8a_c00001{bottom:942.450000px;}
.ydc1_c00001{bottom:942.900000px;}
.y7ef_c00001{bottom:943.050000px;}
.y3c0_c00001{bottom:943.200000px;}
.y32c_c00001{bottom:943.500000px;}
.yf72_c00001{bottom:943.650000px;}
.y648_c00001{bottom:943.800000px;}
.yb01_c00001{bottom:943.950000px;}
.ya1b_c00001{bottom:944.100000px;}
.yd08_c00001{bottom:944.250000px;}
.y5fc_c00001{bottom:944.400000px;}
.y9d3_c00001{bottom:944.700000px;}
.y79_c00001{bottom:945.000000px;}
.yd51_c00001{bottom:945.300000px;}
.y472_c00001{bottom:945.450000px;}
.ydf8_c00001{bottom:945.750000px;}
.y21c_c00001{bottom:946.050000px;}
.y61d_c00001{bottom:946.200000px;}
.y1bf_c00001{bottom:946.500000px;}
.y2d5_c00001{bottom:946.800000px;}
.y998_c00001{bottom:946.950000px;}
.y1ee_c00001{bottom:947.100000px;}
.y1061_c00001{bottom:947.400000px;}
.y155_c00001{bottom:947.550000px;}
.y748_c00001{bottom:947.700000px;}
.y49d_c00001{bottom:947.850000px;}
.y3e5_c00001{bottom:948.300000px;}
.y6bf_c00001{bottom:948.450000px;}
.y534_c00001{bottom:948.750000px;}
.y41_c00001{bottom:948.900000px;}
.y90d_c00001{bottom:949.200000px;}
.y1bb_c00001{bottom:949.350000px;}
.yab_c00001{bottom:949.500000px;}
.yc47_c00001{bottom:949.650000px;}
.yfda_c00001{bottom:950.100000px;}
.y9b5_c00001{bottom:950.250000px;}
.ycd0_c00001{bottom:950.700000px;}
.yd50_c00001{bottom:951.000000px;}
.y702_c00001{bottom:951.150000px;}
.y559_c00001{bottom:951.300000px;}
.y184_c00001{bottom:951.450000px;}
.y392_c00001{bottom:951.600000px;}
.yd99_c00001{bottom:951.900000px;}
.y81a_c00001{bottom:952.200000px;}
.y120_c00001{bottom:952.800000px;}
.y504_c00001{bottom:952.950000px;}
.yd45_c00001{bottom:953.250000px;}
.ya5a_c00001{bottom:953.400000px;}
.ybe3_c00001{bottom:953.700000px;}
.ye4_c00001{bottom:954.000000px;}
.yfed_c00001{bottom:954.300000px;}
.ye5b_c00001{bottom:954.450000px;}
.y92b_c00001{bottom:954.600000px;}
.yd21_c00001{bottom:954.750000px;}
.y584_c00001{bottom:955.050000px;}
.y103a_c00001{bottom:955.200000px;}
.yb_c00001{bottom:955.500000px;}
.yc34_c00001{bottom:955.800000px;}
.y78c_c00001{bottom:956.100000px;}
.ya77_c00001{bottom:956.400000px;}
.y7ad_c00001{bottom:956.850000px;}
.yc60_c00001{bottom:957.000000px;}
.y647_c00001{bottom:957.150000px;}
.yb5d_c00001{bottom:957.300000px;}
.y8d6_c00001{bottom:957.600000px;}
.ya9e_c00001{bottom:957.750000px;}
.y2a4_c00001{bottom:957.900000px;}
.ye65_c00001{bottom:958.050000px;}
.y4bf_c00001{bottom:958.200000px;}
.y43f_c00001{bottom:958.350000px;}
.yb2f_c00001{bottom:958.650000px;}
.ya44_c00001{bottom:958.800000px;}
.y4e4_c00001{bottom:959.100000px;}
.y5ad_c00001{bottom:959.400000px;}
.y727_c00001{bottom:959.550000px;}
.y950_c00001{bottom:959.700000px;}
.y1be_c00001{bottom:960.150000px;}
.y6e5_c00001{bottom:960.300000px;}
.ye89_c00001{bottom:960.450000px;}
.y7ee_c00001{bottom:961.050000px;}
.y35c_c00001{bottom:961.200000px;}
.yf71_c00001{bottom:961.350000px;}
.y32b_c00001{bottom:961.500000px;}
.ya1a_c00001{bottom:961.800000px;}
.yd3f_c00001{bottom:961.950000px;}
.y5fb_c00001{bottom:962.100000px;}
.ye3f_c00001{bottom:962.250000px;}
.yd07_c00001{bottom:962.550000px;}
.yf2d_c00001{bottom:962.700000px;}
.y78_c00001{bottom:963.000000px;}
.y214_c00001{bottom:963.300000px;}
.y471_c00001{bottom:963.450000px;}
.y1ba_c00001{bottom:963.750000px;}
.y21b_c00001{bottom:964.050000px;}
.yb90_c00001{bottom:964.200000px;}
.y2ff_c00001{bottom:964.350000px;}
.y671_c00001{bottom:964.500000px;}
.y1ed_c00001{bottom:964.800000px;}
.yb4a_c00001{bottom:965.100000px;}
.y997_c00001{bottom:965.250000px;}
.yb00_c00001{bottom:965.400000px;}
.y6be_c00001{bottom:965.700000px;}
.y49c_c00001{bottom:965.850000px;}
.yfb1_c00001{bottom:966.300000px;}
.y533_c00001{bottom:966.450000px;}
.y40_c00001{bottom:966.600000px;}
.yf46_c00001{bottom:966.900000px;}
.yc46_c00001{bottom:967.350000px;}
.yaa_c00001{bottom:967.500000px;}
.y9b4_c00001{bottom:967.950000px;}
.y61c_c00001{bottom:968.100000px;}
.yc33_c00001{bottom:968.400000px;}
.yebe_c00001{bottom:968.550000px;}
.y3e4_c00001{bottom:968.700000px;}
.y558_c00001{bottom:969.000000px;}
.y701_c00001{bottom:969.150000px;}
.y391_c00001{bottom:969.300000px;}
.y896_c00001{bottom:969.600000px;}
.y154_c00001{bottom:969.750000px;}
.y819_c00001{bottom:969.900000px;}
.y11f_c00001{bottom:970.500000px;}
.y503_c00001{bottom:970.650000px;}
.ycde_c00001{bottom:970.800000px;}
.y97e_c00001{bottom:971.100000px;}
.ya00_c00001{bottom:971.250000px;}
.y9d2_c00001{bottom:971.400000px;}
.yfbe_c00001{bottom:971.550000px;}
.yfec_c00001{bottom:971.700000px;}
.ye3_c00001{bottom:972.000000px;}
.ye5a_c00001{bottom:972.150000px;}
.ye76_c00001{bottom:972.450000px;}
.y92a_c00001{bottom:972.600000px;}
.yc17_c00001{bottom:972.750000px;}
.y1039_c00001{bottom:972.900000px;}
.yc88_c00001{bottom:973.050000px;}
.ya_c00001{bottom:973.200000px;}
.ybce_c00001{bottom:973.500000px;}
.y2a3_c00001{bottom:974.100000px;}
.y3bf_c00001{bottom:974.250000px;}
.y7ac_c00001{bottom:974.550000px;}
.y583_c00001{bottom:974.850000px;}
.yc5f_c00001{bottom:975.000000px;}
.y244_c00001{bottom:975.300000px;}
.y699_c00001{bottom:975.450000px;}
.y5d1_c00001{bottom:975.600000px;}
.y43e_c00001{bottom:975.900000px;}
.yd4f_c00001{bottom:976.050000px;}
.yc31_c00001{bottom:976.350000px;}
.y4be_c00001{bottom:976.500000px;}
.yadd_c00001{bottom:976.650000px;}
.yf99_c00001{bottom:976.800000px;}
.y4e3_c00001{bottom:977.100000px;}
.y5ac_c00001{bottom:977.400000px;}
.y94f_c00001{bottom:977.700000px;}
.y1b9_c00001{bottom:978.150000px;}
.y6e4_c00001{bottom:978.300000px;}
.yc73_c00001{bottom:978.450000px;}
.y771_c00001{bottom:978.600000px;}
.y7ed_c00001{bottom:978.750000px;}
.y32a_c00001{bottom:979.200000px;}
.yb5c_c00001{bottom:979.350000px;}
.y83a_c00001{bottom:979.500000px;}
.y1045_c00001{bottom:979.950000px;}
.y5fa_c00001{bottom:980.100000px;}
.y273_c00001{bottom:980.250000px;}
.ye1f_c00001{bottom:980.400000px;}
.y877_c00001{bottom:980.700000px;}
.y77_c00001{bottom:981.000000px;}
.y470_c00001{bottom:981.150000px;}
.yd81_c00001{bottom:981.300000px;}
.y646_c00001{bottom:981.900000px;}
.ybf5_c00001{bottom:982.050000px;}
.y726_c00001{bottom:982.200000px;}
.y2fe_c00001{bottom:982.350000px;}
.ycbe_c00001{bottom:982.650000px;}
.y1ec_c00001{bottom:982.800000px;}
.yb7f_c00001{bottom:983.100000px;}
.y996_c00001{bottom:983.250000px;}
.y747_c00001{bottom:983.400000px;}
.y49b_c00001{bottom:983.550000px;}
.y6bd_c00001{bottom:983.700000px;}
.y532_c00001{bottom:984.150000px;}
.yb49_c00001{bottom:984.300000px;}
.y1060_c00001{bottom:984.450000px;}
.y3f_c00001{bottom:984.600000px;}
.yfce_c00001{bottom:984.900000px;}
.ya9_c00001{bottom:985.200000px;}
.yba9_c00001{bottom:985.350000px;}
.yfe4_c00001{bottom:985.650000px;}
.y9b3_c00001{bottom:985.950000px;}
.y9e5_c00001{bottom:986.250000px;}
.yccf_c00001{bottom:986.400000px;}
.yebd_c00001{bottom:986.550000px;}
.y557_c00001{bottom:986.700000px;}
.y895_c00001{bottom:986.850000px;}
.y8b3_c00001{bottom:987.000000px;}
.y1067_c00001{bottom:987.150000px;}
.y390_c00001{bottom:987.300000px;}
.y183_c00001{bottom:987.450000px;}
.y153_c00001{bottom:987.750000px;}
.ycfd_c00001{bottom:987.900000px;}
.yaf0_c00001{bottom:988.050000px;}
.y3e3_c00001{bottom:988.200000px;}
.y11e_c00001{bottom:988.500000px;}
.y97d_c00001{bottom:988.800000px;}
.y502_c00001{bottom:988.950000px;}
.y9d1_c00001{bottom:989.100000px;}
.y700_c00001{bottom:989.250000px;}
.y9ff_c00001{bottom:989.550000px;}
.ye75_c00001{bottom:989.700000px;}
.ye59_c00001{bottom:989.850000px;}
.y856_c00001{bottom:990.000000px;}
.y61b_c00001{bottom:990.300000px;}
.yd4e_c00001{bottom:990.750000px;}
.y21a_c00001{bottom:990.900000px;}
.yf56_c00001{bottom:991.050000px;}
.y1038_c00001{bottom:991.200000px;}
.y9_c00001{bottom:991.500000px;}
.y2a2_c00001{bottom:991.800000px;}
.y1b8_c00001{bottom:992.250000px;}
.y7ab_c00001{bottom:992.400000px;}
.y78b_c00001{bottom:992.550000px;}
.y5d0_c00001{bottom:992.850000px;}
.y770_c00001{bottom:993.000000px;}
.ya9d_c00001{bottom:993.150000px;}
.yc5e_c00001{bottom:993.300000px;}
.y698_c00001{bottom:993.450000px;}
.y43d_c00001{bottom:993.600000px;}
.y4bd_c00001{bottom:993.750000px;}
.yd63_c00001{bottom:993.900000px;}
.ya43_c00001{bottom:994.200000px;}
.yca1_c00001{bottom:994.350000px;}
.y725_c00001{bottom:995.100000px;}
.y582_c00001{bottom:995.250000px;}
.y5ab_c00001{bottom:995.400000px;}
.yb16_c00001{bottom:995.550000px;}
.y272_c00001{bottom:995.700000px;}
.yf98_c00001{bottom:995.850000px;}
.y645_c00001{bottom:996.000000px;}
.y3be_c00001{bottom:996.150000px;}
.ye96_c00001{bottom:996.450000px;}
.y7ec_c00001{bottom:996.750000px;}
.y329_c00001{bottom:996.900000px;}
.y4e2_c00001{bottom:997.050000px;}
.y839_c00001{bottom:997.200000px;}
.yf70_c00001{bottom:997.350000px;}
.y1010_c00001{bottom:997.500000px;}
.y5f9_c00001{bottom:997.800000px;}
.yd06_c00001{bottom:997.950000px;}
.ye1e_c00001{bottom:998.100000px;}
.ye3e_c00001{bottom:998.250000px;}
.yf2c_c00001{bottom:998.400000px;}
.ydae_c00001{bottom:998.700000px;}
.y46f_c00001{bottom:998.850000px;}
.y76_c00001{bottom:999.000000px;}
.ydf7_c00001{bottom:999.150000px;}
.yb8f_c00001{bottom:1000.200000px;}
.y2fd_c00001{bottom:1000.350000px;}
.y2d4_c00001{bottom:1000.500000px;}
.ydc0_c00001{bottom:1000.800000px;}
.yac2_c00001{bottom:1000.950000px;}
.y746_c00001{bottom:1001.100000px;}
.yb7e_c00001{bottom:1001.400000px;}
.yd72_c00001{bottom:1001.550000px;}
.y6bc_c00001{bottom:1001.700000px;}
.y531_c00001{bottom:1001.850000px;}
.y995_c00001{bottom:1002.000000px;}
.y3e_c00001{bottom:1002.600000px;}
.y105f_c00001{bottom:1002.750000px;}
.y90c_c00001{bottom:1002.900000px;}
.ya8_c00001{bottom:1003.200000px;}
.yb48_c00001{bottom:1003.350000px;}
.yba8_c00001{bottom:1003.650000px;}
.y9b2_c00001{bottom:1003.950000px;}
.ycce_c00001{bottom:1004.100000px;}
.yea2_c00001{bottom:1004.250000px;}
.y6ff_c00001{bottom:1004.400000px;}
.y894_c00001{bottom:1004.550000px;}
.y556_c00001{bottom:1004.700000px;}
.y1eb_c00001{bottom:1005.000000px;}
.y49a_c00001{bottom:1005.150000px;}
.y152_c00001{bottom:1005.450000px;}
.y1066_c00001{bottom:1005.900000px;}
.y501_c00001{bottom:1006.200000px;}
.y11d_c00001{bottom:1006.500000px;}
.y1b7_c00001{bottom:1006.650000px;}
.y876_c00001{bottom:1006.800000px;}
.ye2_c00001{bottom:1006.950000px;}
.y9d0_c00001{bottom:1007.100000px;}
.y76f_c00001{bottom:1007.400000px;}
.y9fe_c00001{bottom:1007.550000px;}
.y855_c00001{bottom:1007.700000px;}
.ye58_c00001{bottom:1007.850000px;}
.ye74_c00001{bottom:1008.000000px;}
.y61a_c00001{bottom:1008.300000px;}
.yc87_c00001{bottom:1008.600000px;}
.ye3d_c00001{bottom:1008.750000px;}
.y8_c00001{bottom:1009.050000px;}
.y219_c00001{bottom:1009.200000px;}
.y243_c00001{bottom:1009.500000px;}
.y182_c00001{bottom:1009.800000px;}
.y7aa_c00001{bottom:1010.100000px;}
.y5cf_c00001{bottom:1010.400000px;}
.y78a_c00001{bottom:1010.550000px;}
.y8d5_c00001{bottom:1010.850000px;}
.yc5d_c00001{bottom:1011.000000px;}
.y697_c00001{bottom:1011.150000px;}
.y43c_c00001{bottom:1011.300000px;}
.y4bc_c00001{bottom:1011.450000px;}
.ye3c_c00001{bottom:1011.600000px;}
.ya42_c00001{bottom:1011.900000px;}
.y105e_c00001{bottom:1012.050000px;}
.yca0_c00001{bottom:1012.650000px;}
.ydc4_c00001{bottom:1012.800000px;}
.y581_c00001{bottom:1012.950000px;}
.y5aa_c00001{bottom:1013.100000px;}
.yadc_c00001{bottom:1013.400000px;}
.yb15_c00001{bottom:1013.550000px;}
.y271_c00001{bottom:1013.700000px;}
.y6e3_c00001{bottom:1014.000000px;}
.yeb0_c00001{bottom:1014.150000px;}
.y328_c00001{bottom:1014.450000px;}
.y35b_c00001{bottom:1014.600000px;}
.y7eb_c00001{bottom:1014.750000px;}
.yf52_c00001{bottom:1014.900000px;}
.y724_c00001{bottom:1015.200000px;}
.yf6f_c00001{bottom:1015.350000px;}
.ye50_c00001{bottom:1015.500000px;}
.y5f8_c00001{bottom:1015.800000px;}
.ydad_c00001{bottom:1015.950000px;}
.y4e1_c00001{bottom:1016.100000px;}
.yf2b_c00001{bottom:1016.400000px;}
.y1020_c00001{bottom:1016.700000px;}
.y46e_c00001{bottom:1016.850000px;}
.y75_c00001{bottom:1017.000000px;}
.ydf6_c00001{bottom:1017.150000px;}
.y97c_c00001{bottom:1017.300000px;}
.y100e_c00001{bottom:1017.600000px;}
.yb8e_c00001{bottom:1017.900000px;}
.y2fc_c00001{bottom:1018.050000px;}
.y94e_c00001{bottom:1018.350000px;}
.y2d3_c00001{bottom:1018.500000px;}
.yaff_c00001{bottom:1018.650000px;}
.y3bd_c00001{bottom:1018.800000px;}
.yac1_c00001{bottom:1018.950000px;}
.y745_c00001{bottom:1019.100000px;}
.y994_c00001{bottom:1019.250000px;}
.y6bb_c00001{bottom:1019.400000px;}
.yd05_c00001{bottom:1019.550000px;}
.y530_c00001{bottom:1019.850000px;}
.yd3e_c00001{bottom:1020.300000px;}
.ya7_c00001{bottom:1020.900000px;}
.y1b6_c00001{bottom:1021.050000px;}
.yfb0_c00001{bottom:1021.200000px;}
.yfcd_c00001{bottom:1021.350000px;}
.y670_c00001{bottom:1021.650000px;}
.ycec_c00001{bottom:1021.950000px;}
.y76e_c00001{bottom:1022.100000px;}
.yea1_c00001{bottom:1022.250000px;}
.y6fe_c00001{bottom:1022.400000px;}
.y893_c00001{bottom:1022.550000px;}
.y555_c00001{bottom:1022.700000px;}
.y1ea_c00001{bottom:1023.000000px;}
.y3d_c00001{bottom:1023.150000px;}
.yc07_c00001{bottom:1023.450000px;}
.yd71_c00001{bottom:1023.600000px;}
.y151_c00001{bottom:1023.750000px;}
.y499_c00001{bottom:1023.900000px;}
.y3e2_c00001{bottom:1024.200000px;}
.y40e_c00001{bottom:1024.500000px;}
.y11c_c00001{bottom:1024.800000px;}
.ye73_c00001{bottom:1024.950000px;}
.yaef_c00001{bottom:1025.100000px;}
.yccd_c00001{bottom:1025.550000px;}
.ye1_c00001{bottom:1025.700000px;}
.y644_c00001{bottom:1025.850000px;}
.y929_c00001{bottom:1026.000000px;}
.y9cf_c00001{bottom:1026.600000px;}
.yd98_c00001{bottom:1026.750000px;}
.y7_c00001{bottom:1027.050000px;}
.y218_c00001{bottom:1027.200000px;}
.ybe2_c00001{bottom:1027.350000px;}
.y242_c00001{bottom:1027.500000px;}
.y2a1_c00001{bottom:1027.800000px;}
.y181_c00001{bottom:1028.100000px;}
.y5ce_c00001{bottom:1028.400000px;}
.y1037_c00001{bottom:1028.550000px;}
.yc5c_c00001{bottom:1028.700000px;}
.y696_c00001{bottom:1028.850000px;}
.y854_c00001{bottom:1029.150000px;}
.ye2d_c00001{bottom:1029.300000px;}
.y4bb_c00001{bottom:1029.450000px;}
.ya41_c00001{bottom:1029.600000px;}
.y619_c00001{bottom:1029.900000px;}
.yf11_c00001{bottom:1030.050000px;}
.y723_c00001{bottom:1030.650000px;}
.yb2e_c00001{bottom:1030.800000px;}
.y580_c00001{bottom:1030.950000px;}
.ybbc_c00001{bottom:1031.100000px;}
.y270_c00001{bottom:1031.400000px;}
.yb14_c00001{bottom:1031.550000px;}
.y6e2_c00001{bottom:1031.700000px;}
.y327_c00001{bottom:1032.450000px;}
.y35a_c00001{bottom:1032.600000px;}
.y7cc_c00001{bottom:1032.900000px;}
.ya75_c00001{bottom:1033.200000px;}
.y96b_c00001{bottom:1033.500000px;}
.yf6e_c00001{bottom:1033.650000px;}
.y5f7_c00001{bottom:1033.800000px;}
.ye1d_c00001{bottom:1034.100000px;}
.yb5b_c00001{bottom:1034.250000px;}
.y4e0_c00001{bottom:1034.400000px;}
.y74_c00001{bottom:1034.700000px;}
.y46d_c00001{bottom:1034.850000px;}
.y66f_c00001{bottom:1035.000000px;}
.y100d_c00001{bottom:1035.300000px;}
.yb8d_c00001{bottom:1035.600000px;}
.y3bc_c00001{bottom:1035.750000px;}
.y94d_c00001{bottom:1036.050000px;}
.y76d_c00001{bottom:1036.200000px;}
.yafe_c00001{bottom:1036.350000px;}
.y1b5_c00001{bottom:1036.500000px;}
.yac0_c00001{bottom:1036.650000px;}
.yfe7_c00001{bottom:1036.800000px;}
.y52f_c00001{bottom:1037.100000px;}
.ya59_c00001{bottom:1037.250000px;}
.yd44_c00001{bottom:1037.550000px;}
.yd3d_c00001{bottom:1038.000000px;}
.yf97_c00001{bottom:1038.150000px;}
.ydac_c00001{bottom:1038.300000px;}
.y3c_c00001{bottom:1038.600000px;}
.ya6_c00001{bottom:1038.900000px;}
.yceb_c00001{bottom:1039.200000px;}
.yf55_c00001{bottom:1039.350000px;}
.y9e4_c00001{bottom:1039.650000px;}
.y105d_c00001{bottom:1039.800000px;}
.y643_c00001{bottom:1039.950000px;}
.y6fd_c00001{bottom:1040.100000px;}
.y892_c00001{bottom:1040.250000px;}
.y8b2_c00001{bottom:1040.400000px;}
.y1e9_c00001{bottom:1040.700000px;}
.y38f_c00001{bottom:1041.000000px;}
.yc70_c00001{bottom:1041.150000px;}
.y150_c00001{bottom:1041.450000px;}
.y8f2_c00001{bottom:1041.750000px;}
.y498_c00001{bottom:1041.900000px;}
.y3e1_c00001{bottom:1042.200000px;}
.yd70_c00001{bottom:1042.350000px;}
.y875_c00001{bottom:1042.500000px;}
.y11b_c00001{bottom:1042.800000px;}
.y97b_c00001{bottom:1042.950000px;}
.ye57_c00001{bottom:1043.250000px;}
.yd20_c00001{bottom:1043.400000px;}
.y2fb_c00001{bottom:1043.550000px;}
.ye0_c00001{bottom:1043.700000px;}
.y8d4_c00001{bottom:1044.000000px;}
.yccc_c00001{bottom:1044.300000px;}
.ya9c_c00001{bottom:1044.600000px;}
.y818_c00001{bottom:1044.750000px;}
.ya76_c00001{bottom:1045.050000px;}
.y217_c00001{bottom:1045.200000px;}
.y2a0_c00001{bottom:1045.500000px;}
.y1bd_c00001{bottom:1045.800000px;}
.y180_c00001{bottom:1046.100000px;}
.yc5b_c00001{bottom:1046.400000px;}
.ye3b_c00001{bottom:1046.850000px;}
.ye72_c00001{bottom:1047.000000px;}
.y4ba_c00001{bottom:1047.150000px;}
.ya40_c00001{bottom:1047.600000px;}
.y618_c00001{bottom:1047.900000px;}
.y6_c00001{bottom:1048.200000px;}
.y722_c00001{bottom:1048.350000px;}
.yb2d_c00001{bottom:1048.500000px;}
.y57f_c00001{bottom:1048.650000px;}
.ye64_c00001{bottom:1048.800000px;}
.ybcd_c00001{bottom:1048.950000px;}
.ye88_c00001{bottom:1049.100000px;}
.yb13_c00001{bottom:1049.250000px;}
.y1b4_c00001{bottom:1049.400000px;}
.y1036_c00001{bottom:1049.700000px;}
.y326_c00001{bottom:1050.000000px;}
.yc16_c00001{bottom:1050.150000px;}
.y695_c00001{bottom:1050.450000px;}
.y359_c00001{bottom:1050.600000px;}
.y43b_c00001{bottom:1050.750000px;}
.y76c_c00001{bottom:1050.900000px;}
.yc9f_c00001{bottom:1051.200000px;}
.ya74_c00001{bottom:1051.800000px;}
.y3b_c00001{bottom:1051.950000px;}
.y46c_c00001{bottom:1052.100000px;}
.ybf4_c00001{bottom:1052.250000px;}
.yf2a_c00001{bottom:1052.400000px;}
.ydf5_c00001{bottom:1052.550000px;}
.y73_c00001{bottom:1052.700000px;}
.y5f6_c00001{bottom:1052.850000px;}
.yd97_c00001{bottom:1053.000000px;}
.ycbd_c00001{bottom:1053.300000px;}
.yc78_c00001{bottom:1053.750000px;}
.yb8c_c00001{bottom:1053.900000px;}
.yafd_c00001{bottom:1054.050000px;}
.yc72_c00001{bottom:1054.200000px;}
.y2fa_c00001{bottom:1054.350000px;}
.y2d2_c00001{bottom:1054.500000px;}
.ya19_c00001{bottom:1054.650000px;}
.y744_c00001{bottom:1054.800000px;}
.y96a_c00001{bottom:1055.100000px;}
.yfe6_c00001{bottom:1055.550000px;}
.yf96_c00001{bottom:1056.150000px;}
.ydab_c00001{bottom:1056.300000px;}
.yd1f_c00001{bottom:1056.750000px;}
.ya5_c00001{bottom:1056.900000px;}
.yfe3_c00001{bottom:1057.350000px;}
.y9b1_c00001{bottom:1057.650000px;}
.y6e1_c00001{bottom:1057.950000px;}
.y38e_c00001{bottom:1058.250000px;}
.y100c_c00001{bottom:1058.400000px;}
.y1e8_c00001{bottom:1058.700000px;}
.y6fc_c00001{bottom:1058.850000px;}
.y14f_c00001{bottom:1059.150000px;}
.y3e0_c00001{bottom:1059.450000px;}
.y90b_c00001{bottom:1059.750000px;}
.y500_c00001{bottom:1059.900000px;}
.yd6f_c00001{bottom:1060.050000px;}
.yfd9_c00001{bottom:1060.200000px;}
.yaee_c00001{bottom:1060.500000px;}
.y11a_c00001{bottom:1060.800000px;}
.y838_c00001{bottom:1060.950000px;}
.ydf_c00001{bottom:1061.250000px;}
.yc15_c00001{bottom:1061.700000px;}
.y928_c00001{bottom:1062.000000px;}
.y497_c00001{bottom:1062.300000px;}
.ya73_c00001{bottom:1062.600000px;}
.yb47_c00001{bottom:1062.750000px;}
.y817_c00001{bottom:1063.050000px;}
.y216_c00001{bottom:1063.200000px;}
.y6ba_c00001{bottom:1063.500000px;}
.y1b3_c00001{bottom:1063.800000px;}
.y40d_c00001{bottom:1064.100000px;}
.y874_c00001{bottom:1064.250000px;}
.yc5a_c00001{bottom:1064.400000px;}
.yc06_c00001{bottom:1064.550000px;}
.ye63_c00001{bottom:1064.700000px;}
.ye87_c00001{bottom:1064.850000px;}
.y4b9_c00001{bottom:1065.150000px;}
.y76b_c00001{bottom:1065.300000px;}
.y853_c00001{bottom:1065.600000px;}
.y1035_c00001{bottom:1065.900000px;}
.yb2c_c00001{bottom:1066.200000px;}
.y57e_c00001{bottom:1066.350000px;}
.y9e3_c00001{bottom:1066.650000px;}
.y5_c00001{bottom:1066.950000px;}
.y3a_c00001{bottom:1067.100000px;}
.ycdd_c00001{bottom:1067.400000px;}
.ya72_c00001{bottom:1067.700000px;}
.y17f_c00001{bottom:1067.850000px;}
.y325_c00001{bottom:1068.000000px;}
.yc14_c00001{bottom:1068.150000px;}
.y358_c00001{bottom:1068.300000px;}
.y7cb_c00001{bottom:1068.450000px;}
.yf1f_c00001{bottom:1068.600000px;}
.y694_c00001{bottom:1068.750000px;}
.y66e_c00001{bottom:1068.900000px;}
.y43a_c00001{bottom:1069.050000px;}
.ye2c_c00001{bottom:1069.200000px;}
.y617_c00001{bottom:1069.500000px;}
.ye0e_c00001{bottom:1069.950000px;}
.y46b_c00001{bottom:1070.100000px;}
.y3bb_c00001{bottom:1070.250000px;}
.yf86_c00001{bottom:1070.400000px;}
.y72_c00001{bottom:1070.700000px;}
.yde5_c00001{bottom:1070.850000px;}
.yd96_c00001{bottom:1071.000000px;}
.y5a9_c00001{bottom:1071.150000px;}
.ye95_c00001{bottom:1071.300000px;}
.yb12_c00001{bottom:1071.600000px;}
.y2d1_c00001{bottom:1071.750000px;}
.ycfc_c00001{bottom:1071.900000px;}
.y2f9_c00001{bottom:1072.050000px;}
.yabf_c00001{bottom:1072.350000px;}
.ya18_c00001{bottom:1072.650000px;}
.y743_c00001{bottom:1072.800000px;}
.ye3a_c00001{bottom:1073.250000px;}
.yc2f_c00001{bottom:1073.850000px;}
.yc45_c00001{bottom:1074.300000px;}
.yeeb_c00001{bottom:1074.600000px;}
.yd1e_c00001{bottom:1074.750000px;}
.ya4_c00001{bottom:1074.900000px;}
.yebf_c00001{bottom:1075.050000px;}
.y6fb_c00001{bottom:1075.350000px;}
.ye4f_c00001{bottom:1075.650000px;}
.y6e0_c00001{bottom:1075.950000px;}
.yd80_c00001{bottom:1076.100000px;}
.y38d_c00001{bottom:1076.250000px;}
.y1e7_c00001{bottom:1076.400000px;}
.y554_c00001{bottom:1076.700000px;}
.y105c_c00001{bottom:1076.850000px;}
.y52e_c00001{bottom:1077.450000px;}
.yd6e_c00001{bottom:1077.750000px;}
.y9b0_c00001{bottom:1077.900000px;}
.y1b2_c00001{bottom:1078.200000px;}
.y9ce_c00001{bottom:1078.500000px;}
.y119_c00001{bottom:1079.100000px;}
.yde_c00001{bottom:1079.250000px;}
.y76a_c00001{bottom:1079.400000px;}
.y90a_c00001{bottom:1079.550000px;}
.y927_c00001{bottom:1080.000000px;}
.y39_c00001{bottom:1080.600000px;}
.y816_c00001{bottom:1080.750000px;}
.y9fd_c00001{bottom:1081.050000px;}
.y14e_c00001{bottom:1081.200000px;}
.y3df_c00001{bottom:1081.500000px;}
.y115_c00001{bottom:1081.800000px;}
.y4ff_c00001{bottom:1082.100000px;}
.y873_c00001{bottom:1082.250000px;}
.y642_c00001{bottom:1082.400000px;}
.ye71_c00001{bottom:1082.550000px;}
.y4b8_c00001{bottom:1083.150000px;}
.y852_c00001{bottom:1083.600000px;}
.yb61_c00001{bottom:1083.900000px;}
.yadb_c00001{bottom:1084.050000px;}
.yb2b_c00001{bottom:1084.200000px;}
.y57d_c00001{bottom:1084.350000px;}
.ybbb_c00001{bottom:1084.500000px;}
.yc86_c00001{bottom:1084.650000px;}
.y4_c00001{bottom:1084.950000px;}
.y26f_c00001{bottom:1085.100000px;}
.y5cd_c00001{bottom:1085.400000px;}
.y324_c00001{bottom:1085.700000px;}
.y357_c00001{bottom:1086.000000px;}
.ya6f_c00001{bottom:1086.150000px;}
.y7ca_c00001{bottom:1086.450000px;}
.y5f5_c00001{bottom:1086.750000px;}
.yf1e_c00001{bottom:1086.900000px;}
.y439_c00001{bottom:1087.050000px;}
.y616_c00001{bottom:1087.500000px;}
.y46a_c00001{bottom:1087.800000px;}
.ydf4_c00001{bottom:1087.950000px;}
.y1034_c00001{bottom:1088.250000px;}
.yde4_c00001{bottom:1088.550000px;}
.yd95_c00001{bottom:1088.700000px;}
.ya71_c00001{bottom:1089.000000px;}
.y5a8_c00001{bottom:1089.150000px;}
.yb11_c00001{bottom:1089.300000px;}
.yb8b_c00001{bottom:1089.600000px;}
.y2d0_c00001{bottom:1089.750000px;}
.ycfb_c00001{bottom:1089.900000px;}
.y2f8_c00001{bottom:1090.050000px;}
.ya17_c00001{bottom:1090.350000px;}
.y17e_c00001{bottom:1090.500000px;}
.y742_c00001{bottom:1091.100000px;}
.y71_c00001{bottom:1091.400000px;}
.yedb_c00001{bottom:1091.850000px;}
.ycb3_c00001{bottom:1092.150000px;}
.y6b9_c00001{bottom:1092.300000px;}
.y1b1_c00001{bottom:1092.600000px;}
.ya3_c00001{bottom:1092.900000px;}
.yebc_c00001{bottom:1093.350000px;}
.y891_c00001{bottom:1093.650000px;}
.y6df_c00001{bottom:1093.950000px;}
.y769_c00001{bottom:1094.100000px;}
.y38c_c00001{bottom:1094.250000px;}
.y553_c00001{bottom:1094.400000px;}
.y993_c00001{bottom:1094.700000px;}
.yc9e_c00001{bottom:1094.850000px;}
.y100b_c00001{bottom:1095.150000px;}
.y52d_c00001{bottom:1095.450000px;}
.ye39_c00001{bottom:1095.900000px;}
.yaed_c00001{bottom:1096.200000px;}
.y38_c00001{bottom:1096.500000px;}
.y118_c00001{bottom:1096.800000px;}
.y1065_c00001{bottom:1096.950000px;}
.ydd_c00001{bottom:1097.250000px;}
.yefe_c00001{bottom:1097.700000px;}
.y926_c00001{bottom:1098.000000px;}
.ya70_c00001{bottom:1098.300000px;}
.y1e6_c00001{bottom:1098.600000px;}
.y241_c00001{bottom:1099.200000px;}
.y14d_c00001{bottom:1099.500000px;}
.y7a9_c00001{bottom:1099.800000px;}
.y9fc_c00001{bottom:1100.100000px;}
.y872_c00001{bottom:1100.250000px;}
.ydaa_c00001{bottom:1100.400000px;}
.y6fa_c00001{bottom:1100.550000px;}
.y815_c00001{bottom:1100.850000px;}
.y4b7_c00001{bottom:1101.150000px;}
.y851_c00001{bottom:1101.600000px;}
.yb2a_c00001{bottom:1101.900000px;}
.ybba_c00001{bottom:1102.200000px;}
.yc85_c00001{bottom:1102.650000px;}
.yada_c00001{bottom:1102.800000px;}
.y3_c00001{bottom:1102.950000px;}
.y26e_c00001{bottom:1103.100000px;}
.y323_c00001{bottom:1103.400000px;}
.yc71_c00001{bottom:1103.700000px;}
.y356_c00001{bottom:1104.000000px;}
.y721_c00001{bottom:1104.150000px;}
.y5f4_c00001{bottom:1104.450000px;}
.y438_c00001{bottom:1104.750000px;}
.yf0a_c00001{bottom:1104.900000px;}
.y5cc_c00001{bottom:1105.200000px;}
.ybf3_c00001{bottom:1105.500000px;}
.y469_c00001{bottom:1105.800000px;}
.yc9d_c00001{bottom:1105.950000px;}
.y1050_c00001{bottom:1106.250000px;}
.y5a7_c00001{bottom:1106.400000px;}
.yde3_c00001{bottom:1106.550000px;}
.y1b0_c00001{bottom:1106.700000px;}
.yc13_c00001{bottom:1107.150000px;}
.yb8a_c00001{bottom:1107.300000px;}
.ycfa_c00001{bottom:1107.600000px;}
.y2cf_c00001{bottom:1107.750000px;}
.y768_c00001{bottom:1108.050000px;}
.y741_c00001{bottom:1108.350000px;}
.ya9b_c00001{bottom:1108.500000px;}
.ycdc_c00001{bottom:1108.800000px;}
.yf51_c00001{bottom:1109.100000px;}
.yf95_c00001{bottom:1109.400000px;}
.yb7d_c00001{bottom:1109.550000px;}
.y3ba_c00001{bottom:1109.850000px;}
.y100a_c00001{bottom:1110.300000px;}
.y37_c00001{bottom:1110.600000px;}
.y70_c00001{bottom:1110.900000px;}
.y641_c00001{bottom:1111.200000px;}
.y97a_c00001{bottom:1111.350000px;}
.y6b8_c00001{bottom:1111.650000px;}
.y38b_c00001{bottom:1111.950000px;}
.y8b1_c00001{bottom:1112.100000px;}
.y17d_c00001{bottom:1112.400000px;}
.y992_c00001{bottom:1112.700000px;}
.y52c_c00001{bottom:1113.150000px;}
.yfbd_c00001{bottom:1113.450000px;}
.ye56_c00001{bottom:1113.900000px;}
.yf45_c00001{bottom:1114.200000px;}
.y117_c00001{bottom:1114.500000px;}
.y7ea_c00001{bottom:1114.650000px;}
.ydc_c00001{bottom:1114.950000px;}
.y909_c00001{bottom:1115.250000px;}
.y925_c00001{bottom:1115.700000px;}
.ya99_c00001{bottom:1116.000000px;}
.y1e5_c00001{bottom:1116.300000px;}
.ya6e_c00001{bottom:1116.450000px;}
.y837_c00001{bottom:1117.050000px;}
.y17c_c00001{bottom:1117.500000px;}
.y8f1_c00001{bottom:1117.800000px;}
.yaec_c00001{bottom:1118.100000px;}
.y9cd_c00001{bottom:1118.550000px;}
.y4b6_c00001{bottom:1118.850000px;}
.y240_c00001{bottom:1119.300000px;}
.y6f9_c00001{bottom:1119.600000px;}
.ybb9_c00001{bottom:1119.900000px;}
.y871_c00001{bottom:1120.350000px;}
.y2_c00001{bottom:1120.650000px;}
.y1af_c00001{bottom:1121.100000px;}
.y5cb_c00001{bottom:1121.400000px;}
.y355_c00001{bottom:1121.700000px;}
.y693_c00001{bottom:1122.150000px;}
.y437_c00001{bottom:1122.450000px;}
.y720_c00001{bottom:1122.900000px;}
.ybe1_c00001{bottom:1123.200000px;}
.y468_c00001{bottom:1123.500000px;}
.y57c_c00001{bottom:1123.950000px;}
.yb46_c00001{bottom:1124.250000px;}
.y5a6_c00001{bottom:1124.700000px;}
.ycdb_c00001{bottom:1125.000000px;}
.y2ce_c00001{bottom:1125.300000px;}
.y2f7_c00001{bottom:1125.750000px;}
.y740_c00001{bottom:1126.050000px;}
.yc12_c00001{bottom:1126.200000px;}
.y36_c00001{bottom:1126.500000px;}
.yc30_c00001{bottom:1126.800000px;}
.yf94_c00001{bottom:1127.100000px;}
.y3b9_c00001{bottom:1128.300000px;}
.ye4e_c00001{bottom:1128.600000px;}
.y6f_c00001{bottom:1128.900000px;}
.y6de_c00001{bottom:1129.350000px;}
.y38a_c00001{bottom:1129.650000px;}
.y6b7_c00001{bottom:1130.400000px;}
.yf1c_c00001{bottom:1130.700000px;}
.ya2_c00001{bottom:1131.150000px;}
.y1033_c00001{bottom:1131.750000px;}
.yd3c_c00001{bottom:1131.900000px;}
.yf1d_c00001{bottom:1132.800000px;}
.yc9c_c00001{bottom:1132.950000px;}
.y40c_c00001{bottom:1133.700000px;}
.yed9_c00001{bottom:1134.000000px;}
.yc9b_c00001{bottom:1134.750000px;}
.y1009_c00001{bottom:1135.050000px;}
.yeda_c00001{bottom:1135.500000px;}
.ycda_c00001{bottom:1136.100000px;}
.ydb_c00001{bottom:1137.300000px;}
.y890_c00001{bottom:1137.600000px;}
.yebb_c00001{bottom:1137.900000px;}
.yea0_c00001{bottom:1138.050000px;}
.ye9f_c00001{bottom:1138.350000px;}
.yd6d_c00001{bottom:1138.650000px;}
.yf44_c00001{bottom:1138.800000px;}
.y88f_c00001{bottom:1139.100000px;}
.ya6d_c00001{bottom:1139.400000px;}
.y52b_c00001{bottom:1139.700000px;}
.yfbc_c00001{bottom:1139.850000px;}
.y789_c00001{bottom:1140.450000px;}
.yba7_c00001{bottom:1140.750000px;}
.yf43_c00001{bottom:1140.900000px;}
.yd94_c00001{bottom:1141.200000px;}
.y1ae_c00001{bottom:1141.650000px;}
.y6f8_c00001{bottom:1141.950000px;}
.y908_c00001{bottom:1142.250000px;}
.ycbc_c00001{bottom:1142.550000px;}
.yda_c00001{bottom:1142.700000px;}
.y14b_c00001{bottom:1143.000000px;}
.y9e2_c00001{bottom:1143.300000px;}
.y14c_c00001{bottom:1143.750000px;}
.y5ca_c00001{bottom:1144.050000px;}
.y1ad_c00001{bottom:1144.500000px;}
.y3de_c00001{bottom:1144.800000px;}
.y215_c00001{bottom:1145.100000px;}
.y94a_c00001{bottom:1145.550000px;}
.y26d_c00001{bottom:1145.850000px;}
.y84f_c00001{bottom:1146.300000px;}
.ybf2_c00001{bottom:1146.600000px;}
.yba6_c00001{bottom:1146.900000px;}
.ydbf_c00001{bottom:1147.350000px;}
.y26c_c00001{bottom:1147.650000px;}
.y321_c00001{bottom:1148.100000px;}
.y322_c00001{bottom:1148.400000px;}
.y5c9_c00001{bottom:1148.700000px;}
.y7c9_c00001{bottom:1148.850000px;}
.ya9a_c00001{bottom:1149.000000px;}
.y66d_c00001{bottom:1149.150000px;}
.y1_c00001{bottom:1149.450000px;}
.y7c8_c00001{bottom:1149.900000px;}
.y615_c00001{bottom:1150.200000px;}
.yad9_c00001{bottom:1150.500000px;}
.y2cc_c00001{bottom:1150.950000px;}
.yf6d_c00001{bottom:1151.250000px;}
.ycf9_c00001{bottom:1151.700000px;}
.y9af_c00001{bottom:1152.000000px;}
.ya3f_c00001{bottom:1152.300000px;}
.yc11_c00001{bottom:1152.600000px;}
.y2cd_c00001{bottom:1152.750000px;}
.yb7c_c00001{bottom:1153.050000px;}
.y6d_c00001{bottom:1153.500000px;}
.yfae_c00001{bottom:1153.800000px;}
.y6b5_c00001{bottom:1154.100000px;}
.ye4b_c00001{bottom:1154.550000px;}
.y389_c00001{bottom:1154.850000px;}
.y388_c00001{bottom:1155.900000px;}
.y6e_c00001{bottom:1156.050000px;}
.y6b6_c00001{bottom:1156.200000px;}
.ye0d_c00001{bottom:1156.350000px;}
.ye4c_c00001{bottom:1158.450000px;}
.y836_c00001{bottom:1160.250000px;}
.ya6c_c00001{bottom:1161.000000px;}
.y850_c00001{bottom:1162.500000px;}
.y106e_c00001{bottom:1167.900000px;}
.ya16_c00001{bottom:1169.700000px;}
.y1e4_c00001{bottom:1261.500000px;}
.y116_c00001{bottom:1267.200000px;}
.h20_c00001{height:18.000000px;}
.hf_c00001{height:24.000000px;}
.he_c00001{height:30.000000px;}
.h6_c00001{height:36.000000px;}
.h11_c00001{height:42.000000px;}
.h10_c00001{height:48.000000px;}
.h5_c00001{height:54.000000px;}
.h3_c00001{height:60.000000px;}
.h4_c00001{height:66.000000px;}
.h7_c00001{height:72.000000px;}
.h5a_c00001{height:75.600000px;}
.hc_c00001{height:78.000000px;}
.h8_c00001{height:84.000000px;}
.hd_c00001{height:90.000000px;}
.h2_c00001{height:96.000000px;}
.hb_c00001{height:102.000000px;}
.h1c_c00001{height:108.000000px;}
.h25_c00001{height:114.000000px;}
.h35_c00001{height:120.000000px;}
.h3a_c00001{height:126.000000px;}
.h5b_c00001{height:138.000000px;}
.h4e_c00001{height:144.000000px;}
.h1b_c00001{height:150.000000px;}
.h4f_c00001{height:180.000000px;}
.h49_c00001{height:198.000000px;}
.h59_c00001{height:234.000000px;}
.h17_c00001{height:360.000000px;}
.h12_c00001{height:372.000000px;}
.h19_c00001{height:396.000000px;}
.h18_c00001{height:516.000000px;}
.h1a_c00001{height:696.000000px;}
.h60_c00001{height:1224.000000px;}
.h5d_c00001{height:1230.750000px;}
.h5c_c00001{height:1230.839997px;}
.h5f_c00001{height:1237.500000px;}
.h5e_c00001{height:1237.679993px;}
.h54_c00001{height:1242.000000px;}
.h56_c00001{height:1244.250000px;}
.h55_c00001{height:1244.519990px;}
.h62_c00001{height:1245.750000px;}
.h61_c00001{height:1245.960022px;}
.h58_c00001{height:1247.250000px;}
.h57_c00001{height:1247.400056px;}
.h53_c00001{height:1254.750000px;}
.h52_c00001{height:1254.960022px;}
.h28_c00001{height:1263.599944px;}
.h29_c00001{height:1263.750000px;}
.h47_c00001{height:1264.320007px;}
.h24_c00001{height:1264.500000px;}
.h23_c00001{height:1264.679993px;}
.h4c_c00001{height:1265.039977px;}
.h4d_c00001{height:1265.250000px;}
.h31_c00001{height:1265.760040px;}
.h32_c00001{height:1266.000000px;}
.h45_c00001{height:1266.480010px;}
.h46_c00001{height:1266.750000px;}
.h48_c00001{height:1266.839905px;}
.h39_c00001{height:1267.200073px;}
.h34_c00001{height:1267.500000px;}
.h33_c00001{height:1267.559967px;}
.h1f_c00001{height:1267.919952px;}
.h16_c00001{height:1268.250000px;}
.h15_c00001{height:1268.279937px;}
.h13_c00001{height:1268.640015px;}
.h14_c00001{height:1269.000000px;}
.h42_c00001{height:1269.359985px;}
.h3c_c00001{height:1269.750000px;}
.h3b_c00001{height:1270.080048px;}
.h3f_c00001{height:1270.440033px;}
.h1_c00001{height:1270.500000px;}
.h0_c00001{height:1270.799927px;}
.h2b_c00001{height:1271.160094px;}
.h2c_c00001{height:1271.250000px;}
.h2d_c00001{height:1271.519990px;}
.h43_c00001{height:1271.879975px;}
.h44_c00001{height:1272.000000px;}
.h36_c00001{height:1272.600036px;}
.h37_c00001{height:1272.750000px;}
.h38_c00001{height:1272.960022px;}
.h40_c00001{height:1273.320007px;}
.h27_c00001{height:1273.500000px;}
.h26_c00001{height:1273.679993px;}
.h21_c00001{height:1274.040069px;}
.h22_c00001{height:1274.250000px;}
.h2e_c00001{height:1274.400056px;}
.h30_c00001{height:1275.000000px;}
.h2f_c00001{height:1275.119934px;}
.h41_c00001{height:1275.480010px;}
.h1e_c00001{height:1275.750000px;}
.h1d_c00001{height:1275.839997px;}
.h4a_c00001{height:1276.199982px;}
.h4b_c00001{height:1276.500000px;}
.h2a_c00001{height:1276.920044px;}
.ha_c00001{height:1277.250000px;}
.h9_c00001{height:1277.280030px;}
.h50_c00001{height:1278.719970px;}
.h51_c00001{height:1278.750000px;}
.h3e_c00001{height:1290.000000px;}
.h3d_c00001{height:1290.240051px;}
.w2_c00001{width:951.480010px;}
.w3_c00001{width:951.750000px;}
.w0_c00001{width:958.320007px;}
.w1_c00001{width:958.500000px;}
.x0_c00001{left:0.000000px;}
.x26c_c00001{left:6.450000px;}
.x273_c00001{left:47.550000px;}
.x26e_c00001{left:57.600000px;}
.x252_c00001{left:60.150000px;}
.x253_c00001{left:61.950000px;}
.x251_c00001{left:63.000000px;}
.x249_c00001{left:64.050000px;}
.x263_c00001{left:65.100000px;}
.x265_c00001{left:66.300000px;}
.x264_c00001{left:68.400000px;}
.x26a_c00001{left:70.200000px;}
.x262_c00001{left:71.250000px;}
.x25d_c00001{left:72.300000px;}
.x25c_c00001{left:73.800000px;}
.x27_c00001{left:75.600000px;}
.x23_c00001{left:77.100000px;}
.x42_c00001{left:78.150000px;}
.x1eb_c00001{left:79.350000px;}
.x5a_c00001{left:80.700000px;}
.x1e1_c00001{left:81.750000px;}
.x1d4_c00001{left:82.800000px;}
.x95_c00001{left:84.600000px;}
.xa3_c00001{left:86.100000px;}
.x3a_c00001{left:87.450000px;}
.x1ee_c00001{left:89.250000px;}
.x223_c00001{left:90.300000px;}
.x220_c00001{left:91.500000px;}
.x1d7_c00001{left:92.550000px;}
.x21e_c00001{left:93.600000px;}
.x4_c00001{left:95.100000px;}
.x32_c00001{left:96.150000px;}
.x47_c00001{left:97.200000px;}
.x248_c00001{left:98.250000px;}
.x65_c00001{left:99.300000px;}
.x78_c00001{left:100.650000px;}
.x83_c00001{left:101.850000px;}
.x87_c00001{left:102.900000px;}
.x98_c00001{left:104.100000px;}
.x24c_c00001{left:105.300000px;}
.x24a_c00001{left:106.350000px;}
.x1e6_c00001{left:108.300000px;}
.x1e7_c00001{left:109.800000px;}
.x260_c00001{left:110.850000px;}
.x1f1_c00001{left:111.900000px;}
.x43_c00001{left:113.400000px;}
.x235_c00001{left:114.450000px;}
.x2c_c00001{left:115.500000px;}
.x5d_c00001{left:117.300000px;}
.x4b_c00001{left:118.350000px;}
.x1f4_c00001{left:119.400000px;}
.x1f3_c00001{left:120.450000px;}
.x53_c00001{left:121.650000px;}
.x1e0_c00001{left:122.850000px;}
.x5b_c00001{left:123.900000px;}
.x33_c00001{left:125.700000px;}
.x224_c00001{left:126.750000px;}
.x7c_c00001{left:127.800000px;}
.x24b_c00001{left:128.850000px;}
.x3b_c00001{left:129.900000px;}
.x28_c00001{left:131.400000px;}
.x243_c00001{left:132.450000px;}
.x19_c00001{left:133.500000px;}
.x5_c00001{left:135.450000px;}
.x254_c00001{left:136.500000px;}
.x56_c00001{left:137.700000px;}
.x21_c00001{left:138.900000px;}
.x88_c00001{left:140.700000px;}
.x1e3_c00001{left:142.500000px;}
.x48_c00001{left:144.300000px;}
.xa4_c00001{left:145.500000px;}
.x9e_c00001{left:146.850000px;}
.x57_c00001{left:148.500000px;}
.x81_c00001{left:150.150000px;}
.x4c_c00001{left:151.800000px;}
.x1d6_c00001{left:153.150000px;}
.x3c_c00001{left:155.100000px;}
.x6d_c00001{left:156.450000px;}
.x221_c00001{left:158.100000px;}
.x24_c00001{left:159.450000px;}
.x2d_c00001{left:160.500000px;}
.x1e2_c00001{left:161.700000px;}
.x1a_c00001{left:163.050000px;}
.x266_c00001{left:164.100000px;}
.x89_c00001{left:165.150000px;}
.x3f_c00001{left:167.100000px;}
.x234_c00001{left:168.150000px;}
.x79_c00001{left:169.350000px;}
.x13_c00001{left:171.150000px;}
.x1ef_c00001{left:172.350000px;}
.x21c_c00001{left:173.850000px;}
.x77_c00001{left:175.050000px;}
.x222_c00001{left:176.100000px;}
.x34_c00001{left:177.600000px;}
.x21d_c00001{left:178.950000px;}
.x5e_c00001{left:180.000000px;}
.x1f2_c00001{left:181.200000px;}
.x66_c00001{left:182.400000px;}
.xc_c00001{left:184.050000px;}
.x1de_c00001{left:185.400000px;}
.x208_c00001{left:186.450000px;}
.x58_c00001{left:187.800000px;}
.x245_c00001{left:188.850000px;}
.xa9_c00001{left:189.900000px;}
.x1e8_c00001{left:191.100000px;}
.x73_c00001{left:192.750000px;}
.x35_c00001{left:194.550000px;}
.xaa_c00001{left:195.900000px;}
.x4d_c00001{left:197.850000px;}
.x6_c00001{left:199.500000px;}
.x44_c00001{left:201.300000px;}
.x205_c00001{left:202.350000px;}
.x99_c00001{left:203.400000px;}
.x59_c00001{left:205.050000px;}
.xa1_c00001{left:206.700000px;}
.xd_c00001{left:207.750000px;}
.xad_c00001{left:208.800000px;}
.x1df_c00001{left:209.850000px;}
.x5f_c00001{left:211.350000px;}
.x1db_c00001{left:213.000000px;}
.x7_c00001{left:214.950000px;}
.x16f_c00001{left:216.150000px;}
.x1b_c00001{left:218.100000px;}
.x67_c00001{left:219.150000px;}
.x9b_c00001{left:220.950000px;}
.x7a_c00001{left:222.900000px;}
.x6e_c00001{left:224.550000px;}
.x54_c00001{left:226.350000px;}
.x40_c00001{left:228.000000px;}
.x25_c00001{left:229.350000px;}
.x2e_c00001{left:230.400000px;}
.x7d_c00001{left:231.600000px;}
.x8_c00001{left:232.950000px;}
.x8f_c00001{left:234.300000px;}
.x36_c00001{left:235.500000px;}
.x14_c00001{left:236.700000px;}
.x4e_c00001{left:238.200000px;}
.x29_c00001{left:239.400000px;}
.x7e_c00001{left:240.600000px;}
.x49_c00001{left:242.550000px;}
.x1c_c00001{left:243.600000px;}
.x5c_c00001{left:245.100000px;}
.x161_c00001{left:246.750000px;}
.x24e_c00001{left:247.800000px;}
.x92_c00001{left:248.850000px;}
.x9f_c00001{left:249.900000px;}
.x246_c00001{left:250.950000px;}
.xe_c00001{left:252.000000px;}
.x60_c00001{left:253.500000px;}
.x41_c00001{left:255.300000px;}
.x1d5_c00001{left:256.350000px;}
.x22a_c00001{left:257.400000px;}
.x15_c00001{left:258.600000px;}
.x22_c00001{left:260.250000px;}
.x96_c00001{left:261.600000px;}
.x182_c00001{left:263.100000px;}
.x3d_c00001{left:264.150000px;}
.x2a_c00001{left:265.350000px;}
.xa6_c00001{left:266.400000px;}
.x17b_c00001{left:267.900000px;}
.x82_c00001{left:269.250000px;}
.x9c_c00001{left:271.050000px;}
.x8a_c00001{left:272.100000px;}
.x61_c00001{left:273.300000px;}
.xf_c00001{left:274.650000px;}
.x1d_c00001{left:276.000000px;}
.x21f_c00001{left:277.200000px;}
.x6f_c00001{left:278.550000px;}
.x1da_c00001{left:279.600000px;}
.x166_c00001{left:281.250000px;}
.x37_c00001{left:282.600000px;}
.x90_c00001{left:283.650000px;}
.x2f_c00001{left:285.150000px;}
.xa0_c00001{left:286.200000px;}
.x84_c00001{left:287.400000px;}
.x7f_c00001{left:288.450000px;}
.x68_c00001{left:289.800000px;}
.x45_c00001{left:291.000000px;}
.x93_c00001{left:292.800000px;}
.x16_c00001{left:293.850000px;}
.x8b_c00001{left:295.500000px;}
.x9_c00001{left:296.700000px;}
.x38_c00001{left:298.050000px;}
.x74_c00001{left:299.250000px;}
.x97_c00001{left:301.050000px;}
.x70_c00001{left:303.000000px;}
.x1e4_c00001{left:304.500000px;}
.x91_c00001{left:306.000000px;}
.x17d_c00001{left:307.500000px;}
.x30_c00001{left:308.550000px;}
.x1e_c00001{left:310.200000px;}
.x10_c00001{left:311.400000px;}
.x85_c00001{left:312.750000px;}
.x4f_c00001{left:314.250000px;}
.x69_c00001{left:315.750000px;}
.x209_c00001{left:316.800000px;}
.x1_c00001{left:318.300000px;}
.x180_c00001{left:319.500000px;}
.xa5_c00001{left:321.300000px;}
.x71_c00001{left:322.800000px;}
.x50_c00001{left:324.300000px;}
.x17_c00001{left:325.500000px;}
.x172_c00001{left:327.000000px;}
.x31_c00001{left:328.650000px;}
.x163_c00001{left:330.150000px;}
.x7b_c00001{left:331.950000px;}
.x233_c00001{left:333.000000px;}
.xa2_c00001{left:334.050000px;}
.x9a_c00001{left:335.400000px;}
.x62_c00001{left:336.600000px;}
.x15e_c00001{left:337.800000px;}
.x23a_c00001{left:338.850000px;}
.x11_c00001{left:339.900000px;}
.x8c_c00001{left:341.100000px;}
.x8e_c00001{left:342.600000px;}
.x51_c00001{left:343.800000px;}
.x178_c00001{left:345.600000px;}
.x1e5_c00001{left:346.650000px;}
.x16d_c00001{left:348.150000px;}
.x1f0_c00001{left:349.350000px;}
.xa_c00001{left:350.400000px;}
.x8d_c00001{left:352.200000px;}
.xac_c00001{left:353.250000px;}
.x26_c00001{left:354.300000px;}
.x15f_c00001{left:355.500000px;}
.x1f_c00001{left:356.700000px;}
.x2b_c00001{left:358.200000px;}
.x6a_c00001{left:359.250000px;}
.x63_c00001{left:361.050000px;}
.x1d9_c00001{left:362.250000px;}
.x52_c00001{left:363.600000px;}
.x176_c00001{left:364.650000px;}
.x168_c00001{left:366.150000px;}
.x46_c00001{left:367.200000px;}
.x75_c00001{left:368.700000px;}
.x1ec_c00001{left:370.050000px;}
.x12_c00001{left:372.000000px;}
.x80_c00001{left:373.800000px;}
.x18_c00001{left:375.150000px;}
.x25e_c00001{left:376.200000px;}
.x6b_c00001{left:377.250000px;}
.x72_c00001{left:379.200000px;}
.xa7_c00001{left:380.250000px;}
.x39_c00001{left:381.900000px;}
.x9d_c00001{left:383.400000px;}
.x1ea_c00001{left:385.050000px;}
.x4a_c00001{left:386.550000px;}
.x17c_c00001{left:387.900000px;}
.x20_c00001{left:389.850000px;}
.x55_c00001{left:391.500000px;}
.x170_c00001{left:392.550000px;}
.x169_c00001{left:393.600000px;}
.x86_c00001{left:395.250000px;}
.x1dd_c00001{left:396.450000px;}
.x25f_c00001{left:397.500000px;}
.x3e_c00001{left:398.550000px;}
.x6c_c00001{left:399.900000px;}
.x94_c00001{left:401.100000px;}
.xb_c00001{left:402.300000px;}
.x1e9_c00001{left:403.500000px;}
.x16b_c00001{left:404.700000px;}
.x1ed_c00001{left:406.050000px;}
.x76_c00001{left:407.250000px;}
.x1d8_c00001{left:408.750000px;}
.xa8_c00001{left:409.800000px;}
.xab_c00001{left:411.150000px;}
.x239_c00001{left:412.350000px;}
.xae_c00001{left:413.550000px;}
.x1dc_c00001{left:415.350000px;}
.x174_c00001{left:416.550000px;}
.x167_c00001{left:417.600000px;}
.x202_c00001{left:418.650000px;}
.x179_c00001{left:419.850000px;}
.x15d_c00001{left:420.900000px;}
.x204_c00001{left:422.400000px;}
.x64_c00001{left:424.050000px;}
.x164_c00001{left:426.000000px;}
.x15c_c00001{left:427.350000px;}
.x160_c00001{left:428.550000px;}
.x207_c00001{left:429.600000px;}
.x171_c00001{left:430.650000px;}
.x1f5_c00001{left:431.700000px;}
.x16a_c00001{left:432.900000px;}
.xe1_c00001{left:434.100000px;}
.x1fd_c00001{left:435.600000px;}
.x173_c00001{left:437.100000px;}
.x238_c00001{left:438.300000px;}
.x17f_c00001{left:439.500000px;}
.x203_c00001{left:440.850000px;}
.x181_c00001{left:442.200000px;}
.x206_c00001{left:443.250000px;}
.x17a_c00001{left:444.300000px;}
.x177_c00001{left:446.100000px;}
.x17e_c00001{left:447.300000px;}
.xb5_c00001{left:448.650000px;}
.x162_c00001{left:450.300000px;}
.x1ff_c00001{left:451.350000px;}
.xe7_c00001{left:452.550000px;}
.x101_c00001{left:453.600000px;}
.x10e_c00001{left:454.950000px;}
.x127_c00001{left:456.300000px;}
.x132_c00001{left:457.950000px;}
.x13d_c00001{left:459.150000px;}
.x14b_c00001{left:460.200000px;}
.x14e_c00001{left:461.400000px;}
.xd9_c00001{left:462.600000px;}
.xaf_c00001{left:464.100000px;}
.x10f_c00001{left:466.050000px;}
.x226_c00001{left:467.850000px;}
.x16c_c00001{left:469.200000px;}
.x247_c00001{left:470.250000px;}
.x165_c00001{left:471.300000px;}
.x112_c00001{left:473.100000px;}
.xd7_c00001{left:474.450000px;}
.x12c_c00001{left:475.650000px;}
.x148_c00001{left:477.300000px;}
.x1fe_c00001{left:478.800000px;}
.x16e_c00001{left:480.150000px;}
.x1f6_c00001{left:481.350000px;}
.xfd_c00001{left:482.700000px;}
.xda_c00001{left:484.200000px;}
.xcb_c00001{left:485.250000px;}
.x1f9_c00001{left:486.600000px;}
.x125_c00001{left:488.250000px;}
.xb6_c00001{left:489.750000px;}
.x22b_c00001{left:490.800000px;}
.xec_c00001{left:492.000000px;}
.xf3_c00001{left:493.800000px;}
.x12d_c00001{left:495.150000px;}
.x110_c00001{left:496.650000px;}
.x116_c00001{left:498.450000px;}
.x22c_c00001{left:499.800000px;}
.x175_c00001{left:500.850000px;}
.x13a_c00001{left:501.900000px;}
.x201_c00001{left:502.950000px;}
.xdb_c00001{left:504.000000px;}
.xfa_c00001{left:505.350000px;}
.x11b_c00001{left:507.150000px;}
.x142_c00001{left:508.350000px;}
.x228_c00001{left:509.700000px;}
.xed_c00001{left:510.750000px;}
.x14f_c00001{left:512.550000px;}
.x133_c00001{left:514.500000px;}
.x255_c00001{left:515.550000px;}
.x113_c00001{left:516.600000px;}
.xe2_c00001{left:518.400000px;}
.x227_c00001{left:519.900000px;}
.x128_c00001{left:521.100000px;}
.x237_c00001{left:522.450000px;}
.x102_c00001{left:523.500000px;}
.x12a_c00001{left:524.700000px;}
.xd2_c00001{left:525.900000px;}
.x11c_c00001{left:526.950000px;}
.xb0_c00001{left:528.900000px;}
.x11f_c00001{left:530.250000px;}
.xcc_c00001{left:531.750000px;}
.xfe_c00001{left:533.100000px;}
.x13e_c00001{left:534.300000px;}
.x1d2_c00001{left:535.350000px;}
.x1c4_c00001{left:536.400000px;}
.x149_c00001{left:537.750000px;}
.x14c_c00001{left:539.250000px;}
.x20b_c00001{left:540.300000px;}
.xf4_c00001{left:541.350000px;}
.xb7_c00001{left:542.700000px;}
.xdc_c00001{left:543.900000px;}
.xd3_c00001{left:544.950000px;}
.x236_c00001{left:546.750000px;}
.x134_c00001{left:547.950000px;}
.x2_c00001{left:549.750000px;}
.xee_c00001{left:551.400000px;}
.xcd_c00001{left:552.600000px;}
.x1d1_c00001{left:554.250000px;}
.xe3_c00001{left:556.200000px;}
.x104_c00001{left:557.400000px;}
.xd4_c00001{left:558.600000px;}
.x1f7_c00001{left:560.550000px;}
.x13f_c00001{left:562.350000px;}
.xd8_c00001{left:563.850000px;}
.xfb_c00001{left:565.500000px;}
.x150_c00001{left:567.000000px;}
.xdd_c00001{left:568.050000px;}
.x12f_c00001{left:569.100000px;}
.x106_c00001{left:571.050000px;}
.x1ae_c00001{left:572.400000px;}
.x109_c00001{left:573.600000px;}
.x12e_c00001{left:575.100000px;}
.xe8_c00001{left:576.750000px;}
.xce_c00001{left:578.550000px;}
.xf5_c00001{left:579.900000px;}
.x1bb_c00001{left:581.100000px;}
.x10a_c00001{left:582.900000px;}
.x1ba_c00001{left:583.950000px;}
.x15b_c00001{left:585.150000px;}
.x1ca_c00001{left:586.650000px;}
.x13b_c00001{left:588.000000px;}
.x130_c00001{left:589.650000px;}
.x11d_c00001{left:591.000000px;}
.xf6_c00001{left:592.500000px;}
.xe4_c00001{left:594.300000px;}
.x1a1_c00001{left:595.500000px;}
.x183_c00001{left:596.850000px;}
.x159_c00001{left:598.650000px;}
.x199_c00001{left:599.850000px;}
.xb8_c00001{left:601.050000px;}
.x111_c00001{left:602.100000px;}
.x114_c00001{left:603.300000px;}
.xde_c00001{left:604.350000px;}
.x153_c00001{left:606.150000px;}
.xd5_c00001{left:607.500000px;}
.x1c1_c00001{left:608.700000px;}
.x1ac_c00001{left:609.900000px;}
.x138_c00001{left:610.950000px;}
.x135_c00001{left:612.450000px;}
.x107_c00001{left:613.500000px;}
.xb9_c00001{left:615.150000px;}
.x1fc_c00001{left:616.200000px;}
.xfc_c00001{left:618.000000px;}
.xe9_c00001{left:619.200000px;}
.xcf_c00001{left:620.700000px;}
.xba_c00001{left:622.350000px;}
.xdf_c00001{left:624.150000px;}
.x145_c00001{left:625.650000px;}
.xef_c00001{left:627.000000px;}
.x1c6_c00001{left:628.050000px;}
.xc6_c00001{left:629.400000px;}
.xbb_c00001{left:630.600000px;}
.x105_c00001{left:631.800000px;}
.xb1_c00001{left:632.850000px;}
.x120_c00001{left:634.200000px;}
.xc7_c00001{left:635.850000px;}
.xbc_c00001{left:637.800000px;}
.x14d_c00001{left:639.300000px;}
.xea_c00001{left:641.100000px;}
.x154_c00001{left:642.150000px;}
.xc8_c00001{left:643.350000px;}
.xbd_c00001{left:644.700000px;}
.x23c_c00001{left:645.750000px;}
.x158_c00001{left:646.800000px;}
.x1b5_c00001{left:647.850000px;}
.x14a_c00001{left:648.900000px;}
.xd6_c00001{left:650.700000px;}
.xbe_c00001{left:652.200000px;}
.x143_c00001{left:653.700000px;}
.x1c0_c00001{left:654.750000px;}
.x140_c00001{left:655.950000px;}
.x11e_c00001{left:657.600000px;}
.x24d_c00001{left:658.650000px;}
.xbf_c00001{left:659.700000px;}
.x131_c00001{left:660.900000px;}
.xf7_c00001{left:662.700000px;}
.x232_c00001{left:663.900000px;}
.x117_c00001{left:665.100000px;}
.xc0_c00001{left:666.150000px;}
.xff_c00001{left:667.800000px;}
.x151_c00001{left:668.850000px;}
.x185_c00001{left:670.350000px;}
.x19b_c00001{left:671.400000px;}
.x10b_c00001{left:672.600000px;}
.xc1_c00001{left:673.650000px;}
.xb2_c00001{left:675.000000px;}
.xf0_c00001{left:676.350000px;}
.x1a6_c00001{left:678.000000px;}
.x100_c00001{left:679.350000px;}
.xc2_c00001{left:680.550000px;}
.x10c_c00001{left:682.350000px;}
.x18c_c00001{left:683.700000px;}
.x155_c00001{left:685.050000px;}
.x103_c00001{left:686.250000px;}
.x193_c00001{left:687.300000px;}
.x136_c00001{left:689.250000px;}
.x146_c00001{left:690.750000px;}
.xb3_c00001{left:691.950000px;}
.x139_c00001{left:693.750000px;}
.x118_c00001{left:695.400000px;}
.x261_c00001{left:696.450000px;}
.x12b_c00001{left:697.500000px;}
.xc9_c00001{left:699.150000px;}
.xc3_c00001{left:700.650000px;}
.x15a_c00001{left:701.700000px;}
.x121_c00001{left:702.900000px;}
.x115_c00001{left:704.100000px;}
.x1d3_c00001{left:706.050000px;}
.x141_c00001{left:707.100000px;}
.x1fa_c00001{left:708.600000px;}
.x19a_c00001{left:709.650000px;}
.x1b4_c00001{left:710.700000px;}
.xf8_c00001{left:712.350000px;}
.x20a_c00001{left:713.550000px;}
.x108_c00001{left:714.750000px;}
.xe5_c00001{left:716.100000px;}
.x119_c00001{left:717.300000px;}
.x126_c00001{left:718.650000px;}
.xca_c00001{left:720.000000px;}
.x1fb_c00001{left:721.200000px;}
.xb4_c00001{left:722.550000px;}
.xe0_c00001{left:724.200000px;}
.x13c_c00001{left:725.850000px;}
.xd0_c00001{left:727.800000px;}
.xc4_c00001{left:729.150000px;}
.x200_c00001{left:730.500000px;}
.x129_c00001{left:731.700000px;}
.x1f8_c00001{left:732.750000px;}
.x123_c00001{left:733.800000px;}
.x10d_c00001{left:735.300000px;}
.xeb_c00001{left:737.100000px;}
.xf1_c00001{left:738.600000px;}
.xe6_c00001{left:740.250000px;}
.x156_c00001{left:741.750000px;}
.x1a2_c00001{left:743.400000px;}
.x144_c00001{left:744.450000px;}
.x157_c00001{left:745.500000px;}
.x147_c00001{left:746.550000px;}
.x19c_c00001{left:747.900000px;}
.x225_c00001{left:749.850000px;}
.xd1_c00001{left:750.900000px;}
.x152_c00001{left:752.250000px;}
.x229_c00001{left:753.300000px;}
.xf9_c00001{left:754.800000px;}
.x3_c00001{left:756.450000px;}
.xc5_c00001{left:757.950000px;}
.xf2_c00001{left:759.150000px;}
.x23d_c00001{left:760.350000px;}
.x19f_c00001{left:761.400000px;}
.x124_c00001{left:762.600000px;}
.x210_c00001{left:763.650000px;}
.x196_c00001{left:765.600000px;}
.x1cf_c00001{left:766.950000px;}
.x122_c00001{left:768.000000px;}
.x11a_c00001{left:769.200000px;}
.x1b7_c00001{left:770.550000px;}
.x1cc_c00001{left:772.200000px;}
.x188_c00001{left:773.400000px;}
.x1d0_c00001{left:774.900000px;}
.x18d_c00001{left:776.850000px;}
.x1bc_c00001{left:777.900000px;}
.x1c7_c00001{left:778.950000px;}
.x1a7_c00001{left:780.600000px;}
.x1a8_c00001{left:781.650000px;}
.x137_c00001{left:783.600000px;}
.x1b3_c00001{left:784.650000px;}
.x1af_c00001{left:786.450000px;}
.x22d_c00001{left:787.950000px;}
.x23b_c00001{left:789.000000px;}
.x21b_c00001{left:790.500000px;}
.x1c2_c00001{left:791.550000px;}
.x184_c00001{left:792.600000px;}
.x1cd_c00001{left:794.400000px;}
.x1c5_c00001{left:796.050000px;}
.x186_c00001{left:797.250000px;}
.x240_c00001{left:798.300000px;}
.x18e_c00001{left:799.950000px;}
.x217_c00001{left:801.000000px;}
.x1ad_c00001{left:802.200000px;}
.x194_c00001{left:803.700000px;}
.x22f_c00001{left:805.050000px;}
.x241_c00001{left:806.250000px;}
.x1be_c00001{left:807.750000px;}
.x1c3_c00001{left:809.250000px;}
.x219_c00001{left:810.450000px;}
.x1aa_c00001{left:811.500000px;}
.x1bd_c00001{left:812.850000px;}
.x189_c00001{left:814.500000px;}
.x19d_c00001{left:816.300000px;}
.x197_c00001{left:818.100000px;}
.x192_c00001{left:819.750000px;}
.x187_c00001{left:821.700000px;}
.x191_c00001{left:823.350000px;}
.x20d_c00001{left:824.700000px;}
.x231_c00001{left:825.900000px;}
.x1bf_c00001{left:827.550000px;}
.x18b_c00001{left:828.750000px;}
.x211_c00001{left:830.250000px;}
.x1ce_c00001{left:831.450000px;}
.x213_c00001{left:832.500000px;}
.x1b8_c00001{left:833.550000px;}
.x244_c00001{left:834.600000px;}
.x1a4_c00001{left:835.650000px;}
.x198_c00001{left:837.450000px;}
.x23f_c00001{left:839.100000px;}
.x1a3_c00001{left:840.300000px;}
.x20f_c00001{left:841.350000px;}
.x1c8_c00001{left:842.550000px;}
.x1b2_c00001{left:843.600000px;}
.x18f_c00001{left:844.650000px;}
.x230_c00001{left:845.700000px;}
.x1b0_c00001{left:847.350000px;}
.x1a0_c00001{left:849.300000px;}
.x214_c00001{left:851.100000px;}
.x1cb_c00001{left:852.900000px;}
.x1a5_c00001{left:854.400000px;}
.x1b9_c00001{left:855.750000px;}
.x1b6_c00001{left:857.250000px;}
.x1b1_c00001{left:858.450000px;}
.x216_c00001{left:859.500000px;}
.x1a9_c00001{left:861.150000px;}
.x195_c00001{left:862.800000px;}
.x19e_c00001{left:864.600000px;}
.x20c_c00001{left:866.100000px;}
.x1c9_c00001{left:867.750000px;}
.x20e_c00001{left:868.800000px;}
.x24f_c00001{left:870.150000px;}
.x218_c00001{left:871.650000px;}
.x1ab_c00001{left:873.000000px;}
.x18a_c00001{left:874.650000px;}
.x190_c00001{left:876.000000px;}
.x212_c00001{left:877.800000px;}
.x22e_c00001{left:879.450000px;}
.x21a_c00001{left:880.500000px;}
.x215_c00001{left:882.000000px;}
.x242_c00001{left:883.050000px;}
.x256_c00001{left:884.100000px;}
.x267_c00001{left:885.150000px;}
.x23e_c00001{left:886.500000px;}
.x269_c00001{left:887.850000px;}
.x25a_c00001{left:889.950000px;}
.x257_c00001{left:891.600000px;}
.x258_c00001{left:893.850000px;}
.x250_c00001{left:894.900000px;}
.x268_c00001{left:900.150000px;}
.x259_c00001{left:902.100000px;}
.x25b_c00001{left:905.100000px;}
.x26b_c00001{left:917.250000px;}
.x271_c00001{left:928.800000px;}
.x272_c00001{left:935.250000px;}
.x26f_c00001{left:938.850000px;}
.x270_c00001{left:941.400000px;}
.x26d_c00001{left:942.450000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:13.866667pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ls4_c00001{letter-spacing:39.619048pt;}
.ls1_c00001{letter-spacing:49.523810pt;}
.ls2_c00001{letter-spacing:52.698413pt;}
.ls5_c00001{letter-spacing:54.601093pt;}
.ls6_c00001{letter-spacing:56.000000pt;}
.ls3_c00001{letter-spacing:62.222222pt;}
.ls7_c00001{letter-spacing:1477.037037pt;}
.ws91_c00001{word-spacing:-88.888889pt;}
.ws1de_c00001{word-spacing:-83.934426pt;}
.ws20d_c00001{word-spacing:-80.000000pt;}
.ws26_c00001{word-spacing:-79.365079pt;}
.ws1a_c00001{word-spacing:-76.190476pt;}
.ws1b8_c00001{word-spacing:-60.952381pt;}
.ws222_c00001{word-spacing:-37.333333pt;}
.ws154_c00001{word-spacing:-20.030470pt;}
.ws1b0_c00001{word-spacing:-18.666667pt;}
.ws33_c00001{word-spacing:-16.634921pt;}
.ws135_c00001{word-spacing:-16.111111pt;}
.ws1fe_c00001{word-spacing:-15.983015pt;}
.wsa4_c00001{word-spacing:-15.161572pt;}
.ws17_c00001{word-spacing:-14.861111pt;}
.ws123_c00001{word-spacing:-14.777070pt;}
.ws14b_c00001{word-spacing:-14.444444pt;}
.ws3f_c00001{word-spacing:-14.136827pt;}
.ws15b_c00001{word-spacing:-13.862434pt;}
.ws1f1_c00001{word-spacing:-13.676745pt;}
.ws70_c00001{word-spacing:-13.662613pt;}
.wsea_c00001{word-spacing:-13.513555pt;}
.ws18b_c00001{word-spacing:-13.495227pt;}
.ws16_c00001{word-spacing:-13.467736pt;}
.wsb1_c00001{word-spacing:-13.413735pt;}
.ws17b_c00001{word-spacing:-13.333333pt;}
.ws119_c00001{word-spacing:-13.235549pt;}
.ws23d_c00001{word-spacing:-13.146497pt;}
.ws69_c00001{word-spacing:-13.093207pt;}
.ws17f_c00001{word-spacing:-12.704883pt;}
.ws184_c00001{word-spacing:-12.698413pt;}
.ws1a6_c00001{word-spacing:-12.222222pt;}
.ws92_c00001{word-spacing:-12.012012pt;}
.ws110_c00001{word-spacing:-11.982112pt;}
.ws1a8_c00001{word-spacing:-11.728395pt;}
.wsf3_c00001{word-spacing:-11.698113pt;}
.wscd_c00001{word-spacing:-11.694341pt;}
.ws150_c00001{word-spacing:-11.583864pt;}
.ws90_c00001{word-spacing:-11.509972pt;}
.ws15c_c00001{word-spacing:-11.227176pt;}
.wse9_c00001{word-spacing:-11.225619pt;}
.ws183_c00001{word-spacing:-11.081821pt;}
.ws160_c00001{word-spacing:-10.939547pt;}
.ws1c5_c00001{word-spacing:-10.849673pt;}
.ws245_c00001{word-spacing:-10.707071pt;}
.wsa0_c00001{word-spacing:-10.659026pt;}
.ws134_c00001{word-spacing:-10.617284pt;}
.ws1b3_c00001{word-spacing:-10.544474pt;}
.ws89_c00001{word-spacing:-10.521914pt;}
.ws14d_c00001{word-spacing:-10.443559pt;}
.ws43_c00001{word-spacing:-10.440626pt;}
.ws12c_c00001{word-spacing:-10.370370pt;}
.ws215_c00001{word-spacing:-10.277778pt;}
.ws58_c00001{word-spacing:-10.068027pt;}
.wsa1_c00001{word-spacing:-10.000000pt;}
.ws66_c00001{word-spacing:-9.979622pt;}
.wsce_c00001{word-spacing:-9.964912pt;}
.ws243_c00001{word-spacing:-9.891993pt;}
.ws15_c00001{word-spacing:-9.824561pt;}
.ws4a_c00001{word-spacing:-9.629630pt;}
.wsc3_c00001{word-spacing:-9.550388pt;}
.ws25_c00001{word-spacing:-9.539295pt;}
.ws1c1_c00001{word-spacing:-9.496081pt;}
.wscf_c00001{word-spacing:-9.478894pt;}
.ws194_c00001{word-spacing:-9.444444pt;}
.ws195_c00001{word-spacing:-9.426752pt;}
.ws202_c00001{word-spacing:-9.213404pt;}
.wsaf_c00001{word-spacing:-9.185185pt;}
.ws20_c00001{word-spacing:-9.135802pt;}
.ws73_c00001{word-spacing:-9.111111pt;}
.ws1c_c00001{word-spacing:-9.090909pt;}
.ws1ac_c00001{word-spacing:-8.990752pt;}
.ws61_c00001{word-spacing:-8.966596pt;}
.ws221_c00001{word-spacing:-8.774929pt;}
.ws17c_c00001{word-spacing:-8.727273pt;}
.ws240_c00001{word-spacing:-8.654971pt;}
.ws7c_c00001{word-spacing:-8.617029pt;}
.ws1e4_c00001{word-spacing:-8.611111pt;}
.ws1b9_c00001{word-spacing:-8.566026pt;}
.ws112_c00001{word-spacing:-8.545241pt;}
.ws116_c00001{word-spacing:-8.541925pt;}
.wse5_c00001{word-spacing:-8.534862pt;}
.wsfd_c00001{word-spacing:-8.519838pt;}
.ws10f_c00001{word-spacing:-8.454148pt;}
.ws158_c00001{word-spacing:-8.346056pt;}
.wsc6_c00001{word-spacing:-8.314410pt;}
.ws201_c00001{word-spacing:-8.282828pt;}
.ws12b_c00001{word-spacing:-8.253968pt;}
.ws1f2_c00001{word-spacing:-8.220807pt;}
.ws20a_c00001{word-spacing:-8.205128pt;}
.ws16c_c00001{word-spacing:-8.187135pt;}
.wsec_c00001{word-spacing:-8.093159pt;}
.ws155_c00001{word-spacing:-8.067941pt;}
.ws106_c00001{word-spacing:-8.038046pt;}
.ws65_c00001{word-spacing:-8.012638pt;}
.wsc_c00001{word-spacing:-8.000000pt;}
.ws1d_c00001{word-spacing:-7.903469pt;}
.ws34_c00001{word-spacing:-7.888889pt;}
.ws8a_c00001{word-spacing:-7.873016pt;}
.ws1c8_c00001{word-spacing:-7.830149pt;}
.wsbe_c00001{word-spacing:-7.777778pt;}
.wsf8_c00001{word-spacing:-7.761639pt;}
.wsa8_c00001{word-spacing:-7.746032pt;}
.ws2f_c00001{word-spacing:-7.677282pt;}
.ws45_c00001{word-spacing:-7.529412pt;}
.ws82_c00001{word-spacing:-7.513228pt;}
.ws121_c00001{word-spacing:-7.427854pt;}
.ws13_c00001{word-spacing:-7.407407pt;}
.ws9e_c00001{word-spacing:-7.404353pt;}
.ws212_c00001{word-spacing:-7.376861pt;}
.ws94_c00001{word-spacing:-7.371274pt;}
.ws4d_c00001{word-spacing:-7.367698pt;}
.ws6a_c00001{word-spacing:-7.358534pt;}
.ws1d6_c00001{word-spacing:-7.301587pt;}
.ws175_c00001{word-spacing:-7.272727pt;}
.ws147_c00001{word-spacing:-7.260839pt;}
.ws1d1_c00001{word-spacing:-7.160494pt;}
.wsd7_c00001{word-spacing:-7.111111pt;}
.wsb3_c00001{word-spacing:-7.097002pt;}
.ws22_c00001{word-spacing:-7.068413pt;}
.ws1b5_c00001{word-spacing:-6.980914pt;}
.ws1e5_c00001{word-spacing:-6.914645pt;}
.wsde_c00001{word-spacing:-6.913112pt;}
.ws5f_c00001{word-spacing:-6.900585pt;}
.wsf5_c00001{word-spacing:-6.888889pt;}
.ws14e_c00001{word-spacing:-6.709130pt;}
.ws18a_c00001{word-spacing:-6.666667pt;}
.ws1d5_c00001{word-spacing:-6.665100pt;}
.wsb2_c00001{word-spacing:-6.649199pt;}
.ws16b_c00001{word-spacing:-6.548811pt;}
.ws3d_c00001{word-spacing:-6.471338pt;}
.ws5d_c00001{word-spacing:-6.417370pt;}
.ws31_c00001{word-spacing:-6.361266pt;}
.ws1f8_c00001{word-spacing:-6.310410pt;}
.ws186_c00001{word-spacing:-6.274510pt;}
.ws219_c00001{word-spacing:-6.267806pt;}
.ws198_c00001{word-spacing:-6.267516pt;}
.ws199_c00001{word-spacing:-6.193891pt;}
.ws102_c00001{word-spacing:-6.155021pt;}
.ws11_c00001{word-spacing:-6.145857pt;}
.ws126_c00001{word-spacing:-6.129032pt;}
.wsd1_c00001{word-spacing:-6.085890pt;}
.wsb0_c00001{word-spacing:-6.049383pt;}
.ws7a_c00001{word-spacing:-6.023082pt;}
.ws12e_c00001{word-spacing:-5.960784pt;}
.ws67_c00001{word-spacing:-5.925926pt;}
.ws20f_c00001{word-spacing:-5.896261pt;}
.ws1e6_c00001{word-spacing:-5.802469pt;}
.ws1e8_c00001{word-spacing:-5.776504pt;}
.ws113_c00001{word-spacing:-5.745257pt;}
.ws19d_c00001{word-spacing:-5.730994pt;}
.wsd9_c00001{word-spacing:-5.581395pt;}
.ws17e_c00001{word-spacing:-5.555556pt;}
.ws236_c00001{word-spacing:-5.497076pt;}
.wsd8_c00001{word-spacing:-5.490196pt;}
.ws7b_c00001{word-spacing:-5.477089pt;}
.wsc0_c00001{word-spacing:-5.403202pt;}
.wsab_c00001{word-spacing:-5.393597pt;}
.ws78_c00001{word-spacing:-5.321689pt;}
.wsf6_c00001{word-spacing:-5.222222pt;}
.ws139_c00001{word-spacing:-5.203953pt;}
.wsaa_c00001{word-spacing:-5.135900pt;}
.wsa9_c00001{word-spacing:-5.020931pt;}
.ws156_c00001{word-spacing:-5.006910pt;}
.ws18d_c00001{word-spacing:-4.993631pt;}
.wsf0_c00001{word-spacing:-4.924925pt;}
.ws1cb_c00001{word-spacing:-4.903226pt;}
.ws1ca_c00001{word-spacing:-4.870125pt;}
.ws1_c00001{word-spacing:-4.867725pt;}
.ws9c_c00001{word-spacing:-4.722222pt;}
.ws16e_c00001{word-spacing:-4.698413pt;}
.ws14f_c00001{word-spacing:-4.670913pt;}
.wse3_c00001{word-spacing:-4.661247pt;}
.ws197_c00001{word-spacing:-4.579334pt;}
.wsee_c00001{word-spacing:-4.570535pt;}
.ws191_c00001{word-spacing:-4.558405pt;}
.ws1d2_c00001{word-spacing:-4.531377pt;}
.ws205_c00001{word-spacing:-4.487334pt;}
.ws4c_c00001{word-spacing:-4.483713pt;}
.ws170_c00001{word-spacing:-4.455252pt;}
.wsf9_c00001{word-spacing:-4.407827pt;}
.ws1e3_c00001{word-spacing:-4.395062pt;}
.ws72_c00001{word-spacing:-4.317460pt;}
.ws105_c00001{word-spacing:-4.269294pt;}
.wscb_c00001{word-spacing:-4.238719pt;}
.ws124_c00001{word-spacing:-4.222222pt;}
.ws1f6_c00001{word-spacing:-4.210526pt;}
.ws149_c00001{word-spacing:-4.197531pt;}
.wsd3_c00001{word-spacing:-4.000000pt;}
.ws10_c00001{word-spacing:-3.950334pt;}
.ws11e_c00001{word-spacing:-3.809524pt;}
.ws235_c00001{word-spacing:-3.703704pt;}
.ws167_c00001{word-spacing:-3.701799pt;}
.ws8c_c00001{word-spacing:-3.629829pt;}
.wsc7_c00001{word-spacing:-3.607843pt;}
.ws1cc_c00001{word-spacing:-3.603604pt;}
.ws1c9_c00001{word-spacing:-3.483483pt;}
.ws249_c00001{word-spacing:-3.461988pt;}
.ws174_c00001{word-spacing:-3.430998pt;}
.ws130_c00001{word-spacing:-3.374536pt;}
.ws83_c00001{word-spacing:-3.356694pt;}
.ws9a_c00001{word-spacing:-3.346072pt;}
.ws172_c00001{word-spacing:-3.194444pt;}
.wsc2_c00001{word-spacing:-3.184187pt;}
.ws1f4_c00001{word-spacing:-3.174603pt;}
.ws1b1_c00001{word-spacing:-3.137075pt;}
.ws107_c00001{word-spacing:-3.100478pt;}
.ws189_c00001{word-spacing:-3.100420pt;}
.ws24_c00001{word-spacing:-3.074310pt;}
.ws47_c00001{word-spacing:-3.035230pt;}
.ws6b_c00001{word-spacing:-2.962963pt;}
.ws13f_c00001{word-spacing:-2.955414pt;}
.ws188_c00001{word-spacing:-2.888889pt;}
.ws169_c00001{word-spacing:-2.839506pt;}
.ws52_c00001{word-spacing:-2.777778pt;}
.ws5c_c00001{word-spacing:-2.751323pt;}
.wsa5_c00001{word-spacing:-2.713246pt;}
.ws1f3_c00001{word-spacing:-2.666667pt;}
.wsc9_c00001{word-spacing:-2.647909pt;}
.ws115_c00001{word-spacing:-2.625277pt;}
.wsad_c00001{word-spacing:-2.600985pt;}
.ws1f9_c00001{word-spacing:-2.558923pt;}
.ws164_c00001{word-spacing:-2.539683pt;}
.ws227_c00001{word-spacing:-2.452107pt;}
.wsf7_c00001{word-spacing:-2.352941pt;}
.ws4b_c00001{word-spacing:-2.318841pt;}
.ws20c_c00001{word-spacing:-2.211382pt;}
.ws193_c00001{word-spacing:-2.067183pt;}
.ws148_c00001{word-spacing:-2.055705pt;}
.ws204_c00001{word-spacing:-2.047755pt;}
.wsbd_c00001{word-spacing:-2.015570pt;}
.ws15a_c00001{word-spacing:-1.921922pt;}
.ws179_c00001{word-spacing:-1.883199pt;}
.ws1d7_c00001{word-spacing:-1.746631pt;}
.ws230_c00001{word-spacing:-1.715499pt;}
.ws60_c00001{word-spacing:-1.666667pt;}
.ws1bc_c00001{word-spacing:-1.658071pt;}
.ws74_c00001{word-spacing:-1.615467pt;}
.ws1d8_c00001{word-spacing:-1.548763pt;}
.wsa6_c00001{word-spacing:-1.531162pt;}
.ws41_c00001{word-spacing:-1.527778pt;}
.ws57_c00001{word-spacing:-1.481481pt;}
.ws79_c00001{word-spacing:-1.473495pt;}
.ws242_c00001{word-spacing:-1.396825pt;}
.wsf2_c00001{word-spacing:-1.328923pt;}
.ws36_c00001{word-spacing:-1.271394pt;}
.ws87_c00001{word-spacing:-1.245997pt;}
.ws5e_c00001{word-spacing:-1.146953pt;}
.ws1eb_c00001{word-spacing:-1.111111pt;}
.ws1f5_c00001{word-spacing:-1.106259pt;}
.ws165_c00001{word-spacing:-0.944179pt;}
.ws22c_c00001{word-spacing:-0.867209pt;}
.ws10b_c00001{word-spacing:-0.850716pt;}
.ws8b_c00001{word-spacing:-0.763321pt;}
.ws200_c00001{word-spacing:-0.733945pt;}
.ws10a_c00001{word-spacing:-0.714286pt;}
.ws101_c00001{word-spacing:-0.683761pt;}
.wsd_c00001{word-spacing:-0.670391pt;}
.ws247_c00001{word-spacing:-0.634921pt;}
.ws214_c00001{word-spacing:-0.459770pt;}
.ws19e_c00001{word-spacing:-0.166667pt;}
.ws15f_c00001{word-spacing:-0.129895pt;}
.ws151_c00001{word-spacing:-0.126984pt;}
.ws145_c00001{word-spacing:-0.054983pt;}
.ws1ec_c00001{word-spacing:-0.045819pt;}
.ws1e7_c00001{word-spacing:-0.036655pt;}
.ws143_c00001{word-spacing:-0.027491pt;}
.ws24b_c00001{word-spacing:-0.018328pt;}
.wse_c00001{word-spacing:0.000000pt;}
.ws6e_c00001{word-spacing:0.084926pt;}
.ws244_c00001{word-spacing:0.123457pt;}
.ws1c4_c00001{word-spacing:0.148148pt;}
.ws1be_c00001{word-spacing:0.203822pt;}
.wsf4_c00001{word-spacing:0.211640pt;}
.ws55_c00001{word-spacing:0.246914pt;}
.ws108_c00001{word-spacing:0.276639pt;}
.ws1c2_c00001{word-spacing:0.288747pt;}
.ws75_c00001{word-spacing:0.499610pt;}
.ws216_c00001{word-spacing:0.758808pt;}
.wsbf_c00001{word-spacing:0.789572pt;}
.wsc4_c00001{word-spacing:0.888889pt;}
.wsca_c00001{word-spacing:1.025641pt;}
.ws1a1_c00001{word-spacing:1.111111pt;}
.wse1_c00001{word-spacing:1.146305pt;}
.ws63_c00001{word-spacing:1.166858pt;}
.ws1fa_c00001{word-spacing:1.176021pt;}
.ws129_c00001{word-spacing:1.194349pt;}
.ws7d_c00001{word-spacing:1.310163pt;}
.ws1d3_c00001{word-spacing:1.481481pt;}
.wse4_c00001{word-spacing:1.520468pt;}
.ws1fd_c00001{word-spacing:1.526718pt;}
.ws23_c00001{word-spacing:1.562633pt;}
.ws210_c00001{word-spacing:1.587302pt;}
.ws7f_c00001{word-spacing:1.629630pt;}
.ws16d_c00001{word-spacing:1.650794pt;}
.ws3b_c00001{word-spacing:1.665211pt;}
.ws16a_c00001{word-spacing:1.681000pt;}
.ws86_c00001{word-spacing:1.693231pt;}
.ws10d_c00001{word-spacing:1.728395pt;}
.ws4f_c00001{word-spacing:1.981378pt;}
.wsd6_c00001{word-spacing:2.025316pt;}
.wsbc_c00001{word-spacing:2.051282pt;}
.ws93_c00001{word-spacing:2.165242pt;}
.ws238_c00001{word-spacing:2.245614pt;}
.ws62_c00001{word-spacing:2.370370pt;}
.ws50_c00001{word-spacing:2.555556pt;}
.ws4_c00001{word-spacing:2.582428pt;}
.ws12f_c00001{word-spacing:2.585859pt;}
.ws104_c00001{word-spacing:2.666667pt;}
.ws128_c00001{word-spacing:2.693102pt;}
.ws20b_c00001{word-spacing:2.716049pt;}
.ws137_c00001{word-spacing:2.729783pt;}
.wsd4_c00001{word-spacing:2.748180pt;}
.ws231_c00001{word-spacing:2.777778pt;}
.ws120_c00001{word-spacing:2.829694pt;}
.ws1a5_c00001{word-spacing:2.888889pt;}
.ws56_c00001{word-spacing:2.923977pt;}
.wse2_c00001{word-spacing:3.027110pt;}
.ws1e1_c00001{word-spacing:3.148248pt;}
.ws1e_c00001{word-spacing:3.159236pt;}
.ws2d_c00001{word-spacing:3.190883pt;}
.ws6f_c00001{word-spacing:3.284816pt;}
.ws20e_c00001{word-spacing:3.333333pt;}
.ws84_c00001{word-spacing:3.421384pt;}
.ws24c_c00001{word-spacing:3.500196pt;}
.ws1b2_c00001{word-spacing:3.500931pt;}
.wseb_c00001{word-spacing:3.542289pt;}
.ws23c_c00001{word-spacing:3.595920pt;}
.ws88_c00001{word-spacing:3.607843pt;}
.ws23f_c00001{word-spacing:3.611111pt;}
.ws12d_c00001{word-spacing:3.639371pt;}
.ws24d_c00001{word-spacing:3.650794pt;}
.ws1e9_c00001{word-spacing:3.690544pt;}
.ws19c_c00001{word-spacing:3.703704pt;}
.ws21b_c00001{word-spacing:3.760684pt;}
.ws22d_c00001{word-spacing:3.888889pt;}
.wsdd_c00001{word-spacing:3.988539pt;}
.ws6d_c00001{word-spacing:3.989033pt;}
.ws178_c00001{word-spacing:4.010178pt;}
.ws109_c00001{word-spacing:4.052402pt;}
.ws122_c00001{word-spacing:4.175084pt;}
.ws22e_c00001{word-spacing:4.210526pt;}
.ws1c0_c00001{word-spacing:4.222222pt;}
.ws138_c00001{word-spacing:4.282337pt;}
.ws136_c00001{word-spacing:4.423829pt;}
.ws22f_c00001{word-spacing:4.641737pt;}
.ws3c_c00001{word-spacing:4.691358pt;}
.wsa3_c00001{word-spacing:4.705882pt;}
.ws10c_c00001{word-spacing:4.900285pt;}
.wsdc_c00001{word-spacing:4.925690pt;}
.ws131_c00001{word-spacing:4.959660pt;}
.wse7_c00001{word-spacing:4.995508pt;}
.ws32_c00001{word-spacing:5.020484pt;}
.ws1a9_c00001{word-spacing:5.111111pt;}
.ws229_c00001{word-spacing:5.285285pt;}
.ws171_c00001{word-spacing:5.304376pt;}
.ws38_c00001{word-spacing:5.312753pt;}
.ws54_c00001{word-spacing:5.387205pt;}
.ws3e_c00001{word-spacing:5.405211pt;}
.ws35_c00001{word-spacing:5.438137pt;}
.ws1f_c00001{word-spacing:5.479452pt;}
.wsba_c00001{word-spacing:5.636856pt;}
.ws146_c00001{word-spacing:5.728395pt;}
.ws21a_c00001{word-spacing:5.729678pt;}
.ws208_c00001{word-spacing:5.802469pt;}
.ws248_c00001{word-spacing:5.811550pt;}
.ws168_c00001{word-spacing:5.847953pt;}
.ws1da_c00001{word-spacing:5.925926pt;}
.ws13a_c00001{word-spacing:5.938865pt;}
.ws125_c00001{word-spacing:6.013072pt;}
.wsc5_c00001{word-spacing:6.074074pt;}
.ws159_c00001{word-spacing:6.081711pt;}
.wsb4_c00001{word-spacing:6.188983pt;}
.ws22b_c00001{word-spacing:6.311218pt;}
.ws76_c00001{word-spacing:6.390533pt;}
.ws1c6_c00001{word-spacing:6.403397pt;}
.ws42_c00001{word-spacing:6.442075pt;}
.ws144_c00001{word-spacing:6.444444pt;}
.ws185_c00001{word-spacing:6.666667pt;}
.ws9d_c00001{word-spacing:6.742138pt;}
.ws22a_c00001{word-spacing:6.777778pt;}
.ws23e_c00001{word-spacing:6.900585pt;}
.ws48_c00001{word-spacing:6.905386pt;}
.ws1fc_c00001{word-spacing:6.962963pt;}
.ws103_c00001{word-spacing:7.017544pt;}
.wse0_c00001{word-spacing:7.044890pt;}
.ws1ab_c00001{word-spacing:7.134503pt;}
.ws12a_c00001{word-spacing:7.160494pt;}
.ws3a_c00001{word-spacing:7.317697pt;}
.ws187_c00001{word-spacing:7.455197pt;}
.ws176_c00001{word-spacing:7.475674pt;}
.ws181_c00001{word-spacing:7.530864pt;}
.wsb6_c00001{word-spacing:7.539322pt;}
.ws246_c00001{word-spacing:7.654321pt;}
.wsdf_c00001{word-spacing:7.839134pt;}
.ws196_c00001{word-spacing:7.843137pt;}
.wsef_c00001{word-spacing:7.996783pt;}
.ws13b_c00001{word-spacing:8.000000pt;}
.ws203_c00001{word-spacing:8.028951pt;}
.wsae_c00001{word-spacing:8.101888pt;}
.ws1e2_c00001{word-spacing:8.316262pt;}
.ws1f0_c00001{word-spacing:8.333709pt;}
.wsfa_c00001{word-spacing:8.452830pt;}
.ws207_c00001{word-spacing:8.497900pt;}
.ws190_c00001{word-spacing:8.654971pt;}
.ws0_c00001{word-spacing:8.672087pt;}
.ws21_c00001{word-spacing:8.888889pt;}
.ws1b4_c00001{word-spacing:8.898473pt;}
.ws6c_c00001{word-spacing:9.022919pt;}
.ws5a_c00001{word-spacing:9.039160pt;}
.ws80_c00001{word-spacing:9.125800pt;}
.ws1ea_c00001{word-spacing:9.210593pt;}
.wsda_c00001{word-spacing:9.249249pt;}
.ws153_c00001{word-spacing:9.269841pt;}
.wsb_c00001{word-spacing:9.337154pt;}
.ws97_c00001{word-spacing:9.455113pt;}
.wsf_c00001{word-spacing:9.459963pt;}
.ws40_c00001{word-spacing:9.568627pt;}
.ws19b_c00001{word-spacing:9.650794pt;}
.ws18f_c00001{word-spacing:9.816594pt;}
.wsfb_c00001{word-spacing:9.824561pt;}
.ws225_c00001{word-spacing:9.861111pt;}
.ws49_c00001{word-spacing:9.953291pt;}
.wsd0_c00001{word-spacing:10.000000pt;}
.wsa7_c00001{word-spacing:10.330661pt;}
.ws46_c00001{word-spacing:10.370370pt;}
.ws166_c00001{word-spacing:10.532239pt;}
.ws28_c00001{word-spacing:10.555556pt;}
.ws44_c00001{word-spacing:10.609164pt;}
.ws7e_c00001{word-spacing:10.614379pt;}
.ws111_c00001{word-spacing:10.814636pt;}
.wscc_c00001{word-spacing:10.823529pt;}
.ws1e0_c00001{word-spacing:11.061728pt;}
.ws5b_c00001{word-spacing:11.091275pt;}
.ws77_c00001{word-spacing:11.393939pt;}
.ws224_c00001{word-spacing:11.461988pt;}
.ws127_c00001{word-spacing:11.665928pt;}
.wsac_c00001{word-spacing:11.953162pt;}
.ws157_c00001{word-spacing:11.975309pt;}
.ws51_c00001{word-spacing:11.989664pt;}
.wse8_c00001{word-spacing:12.117411pt;}
.ws1bd_c00001{word-spacing:12.255730pt;}
.ws8e_c00001{word-spacing:12.255892pt;}
.ws15e_c00001{word-spacing:12.281346pt;}
.ws21d_c00001{word-spacing:12.296296pt;}
.ws14_c00001{word-spacing:12.397661pt;}
.ws1c7_c00001{word-spacing:12.599809pt;}
.ws64_c00001{word-spacing:12.859599pt;}
.ws1b6_c00001{word-spacing:12.888889pt;}
.ws19a_c00001{word-spacing:12.909984pt;}
.ws16f_c00001{word-spacing:13.019608pt;}
.ws13d_c00001{word-spacing:13.090909pt;}
.wsf1_c00001{word-spacing:13.112527pt;}
.ws114_c00001{word-spacing:13.189964pt;}
.ws1b_c00001{word-spacing:13.333333pt;}
.wsdb_c00001{word-spacing:13.404161pt;}
.ws180_c00001{word-spacing:13.481481pt;}
.ws68_c00001{word-spacing:13.525278pt;}
.ws223_c00001{word-spacing:13.863874pt;}
.ws192_c00001{word-spacing:13.962264pt;}
.ws1fb_c00001{word-spacing:14.000000pt;}
.ws59_c00001{word-spacing:14.074074pt;}
.ws140_c00001{word-spacing:14.169682pt;}
.ws3_c00001{word-spacing:14.222222pt;}
.ws96_c00001{word-spacing:14.451210pt;}
.ws81_c00001{word-spacing:14.573643pt;}
.ws133_c00001{word-spacing:14.607102pt;}
.wsed_c00001{word-spacing:14.666667pt;}
.ws173_c00001{word-spacing:14.722222pt;}
.ws9f_c00001{word-spacing:14.727829pt;}
.ws1cf_c00001{word-spacing:14.920635pt;}
.ws132_c00001{word-spacing:14.962963pt;}
.ws209_c00001{word-spacing:15.000546pt;}
.ws19f_c00001{word-spacing:15.040990pt;}
.ws152_c00001{word-spacing:15.331536pt;}
.ws1ad_c00001{word-spacing:15.334138pt;}
.ws10e_c00001{word-spacing:15.372549pt;}
.ws18c_c00001{word-spacing:15.686275pt;}
.ws213_c00001{word-spacing:15.928036pt;}
.wsfe_c00001{word-spacing:16.000000pt;}
.ws18_c00001{word-spacing:16.111111pt;}
.ws1ae_c00001{word-spacing:16.163599pt;}
.ws17a_c00001{word-spacing:16.518807pt;}
.ws1ed_c00001{word-spacing:16.713376pt;}
.ws85_c00001{word-spacing:16.865300pt;}
.ws13e_c00001{word-spacing:17.407035pt;}
.ws4e_c00001{word-spacing:17.523810pt;}
.wsc8_c00001{word-spacing:17.749469pt;}
.ws29_c00001{word-spacing:17.773012pt;}
.ws53_c00001{word-spacing:18.208214pt;}
.ws9b_c00001{word-spacing:18.328967pt;}
.ws1d4_c00001{word-spacing:18.811419pt;}
.ws15d_c00001{word-spacing:18.867925pt;}
.ws8f_c00001{word-spacing:19.084967pt;}
.ws21c_c00001{word-spacing:19.097934pt;}
.ws19_c00001{word-spacing:19.682540pt;}
.ws1c3_c00001{word-spacing:20.005326pt;}
.ws39_c00001{word-spacing:20.078751pt;}
.ws1d9_c00001{word-spacing:20.277778pt;}
.ws7_c00001{word-spacing:20.632708pt;}
.ws1b7_c00001{word-spacing:20.825397pt;}
.ws217_c00001{word-spacing:20.844037pt;}
.ws233_c00001{word-spacing:20.864198pt;}
.ws1af_c00001{word-spacing:22.200489pt;}
.ws5_c00001{word-spacing:22.857143pt;}
.ws220_c00001{word-spacing:22.888889pt;}
.ws1d0_c00001{word-spacing:23.159985pt;}
.ws18e_c00001{word-spacing:23.201309pt;}
.ws226_c00001{word-spacing:23.272727pt;}
.ws1bb_c00001{word-spacing:23.492404pt;}
.ws1dc_c00001{word-spacing:25.267760pt;}
.ws12_c00001{word-spacing:26.026538pt;}
.ws2c_c00001{word-spacing:26.031746pt;}
.wsb5_c00001{word-spacing:26.296296pt;}
.wsb9_c00001{word-spacing:27.106968pt;}
.ws71_c00001{word-spacing:27.605214pt;}
.ws1ba_c00001{word-spacing:28.666667pt;}
.ws118_c00001{word-spacing:29.384389pt;}
.ws27_c00001{word-spacing:30.793651pt;}
.ws1ce_c00001{word-spacing:31.407407pt;}
.ws9_c00001{word-spacing:31.851852pt;}
.ws117_c00001{word-spacing:31.933868pt;}
.ws8_c00001{word-spacing:32.000000pt;}
.ws8d_c00001{word-spacing:32.618149pt;}
.ws11b_c00001{word-spacing:34.816282pt;}
.wsa_c00001{word-spacing:35.333333pt;}
.ws2b_c00001{word-spacing:35.555556pt;}
.ws2_c00001{word-spacing:36.444444pt;}
.ws6_c00001{word-spacing:39.259259pt;}
.ws37_c00001{word-spacing:41.336870pt;}
.ws1dd_c00001{word-spacing:43.114504pt;}
.ws1db_c00001{word-spacing:44.814815pt;}
.ws1a7_c00001{word-spacing:46.122288pt;}
.wsfc_c00001{word-spacing:47.970009pt;}
.wsbb_c00001{word-spacing:53.085884pt;}
.wsb7_c00001{word-spacing:53.333333pt;}
.ws1f7_c00001{word-spacing:54.853801pt;}
.wsa2_c00001{word-spacing:58.666667pt;}
.ws95_c00001{word-spacing:58.947368pt;}
.ws239_c00001{word-spacing:59.555556pt;}
.wsb8_c00001{word-spacing:59.894180pt;}
.ws2a_c00001{word-spacing:60.116959pt;}
.ws177_c00001{word-spacing:61.638922pt;}
.ws99_c00001{word-spacing:61.871345pt;}
.ws1cd_c00001{word-spacing:63.040936pt;}
.ws30_c00001{word-spacing:63.950617pt;}
.ws1df_c00001{word-spacing:75.176221pt;}
.ws182_c00001{word-spacing:80.000000pt;}
.ws234_c00001{word-spacing:107.242567pt;}
.ws21e_c00001{word-spacing:120.111111pt;}
.ws100_c00001{word-spacing:122.592593pt;}
.ws211_c00001{word-spacing:124.444444pt;}
.ws218_c00001{word-spacing:124.572738pt;}
.ws161_c00001{word-spacing:124.833333pt;}
.ws1ee_c00001{word-spacing:124.949495pt;}
.ws98_c00001{word-spacing:126.446337pt;}
.ws21f_c00001{word-spacing:134.952381pt;}
.ws17d_c00001{word-spacing:142.962963pt;}
.wsff_c00001{word-spacing:149.444444pt;}
.ws24a_c00001{word-spacing:150.370370pt;}
.ws228_c00001{word-spacing:152.123277pt;}
.ws206_c00001{word-spacing:157.109415pt;}
.ws23a_c00001{word-spacing:170.666667pt;}
.ws163_c00001{word-spacing:171.777778pt;}
.ws2e_c00001{word-spacing:172.397661pt;}
.ws162_c00001{word-spacing:201.142857pt;}
.ws11a_c00001{word-spacing:312.834606pt;}
.ws11f_c00001{word-spacing:339.555556pt;}
.ws11c_c00001{word-spacing:391.407407pt;}
.ws13c_c00001{word-spacing:398.666667pt;}
.ws1a3_c00001{word-spacing:406.984127pt;}
.ws1ef_c00001{word-spacing:425.333333pt;}
.wsd5_c00001{word-spacing:438.222222pt;}
.ws232_c00001{word-spacing:624.938272pt;}
.ws11d_c00001{word-spacing:655.746032pt;}
.ws237_c00001{word-spacing:724.571429pt;}
.ws241_c00001{word-spacing:746.666667pt;}
.ws23b_c00001{word-spacing:764.461059pt;}
.ws1aa_c00001{word-spacing:884.444444pt;}
.ws1a2_c00001{word-spacing:902.222222pt;}
.ws14a_c00001{word-spacing:1075.047619pt;}
.ws1a0_c00001{word-spacing:1142.351145pt;}
.wsc1_c00001{word-spacing:1192.888889pt;}
.ws1a4_c00001{word-spacing:1295.873016pt;}
.ws14c_c00001{word-spacing:1592.062598pt;}
.wsd2_c00001{word-spacing:2044.015326pt;}
.ws1bf_c00001{word-spacing:2191.141762pt;}
.ws142_c00001{word-spacing:2265.185185pt;}
.ws141_c00001{word-spacing:2309.629630pt;}
.wse6_c00001{word-spacing:4385.777778pt;}
.ws1ff_c00001{word-spacing:12291.421384pt;}
._a_c00001{margin-left:-62.222222pt;}
._20_c00001{margin-left:-56.000000pt;}
._1c_c00001{margin-left:-54.601093pt;}
._4_c00001{margin-left:-52.698413pt;}
._3_c00001{margin-left:-49.523810pt;}
._1b_c00001{margin-left:-39.619048pt;}
._19_c00001{margin-left:-19.444688pt;}
._11_c00001{width:3.174603pt;}
._21_c00001{width:10.945322pt;}
._17_c00001{width:17.698358pt;}
._1f_c00001{width:19.692308pt;}
._8_c00001{width:21.974800pt;}
._f_c00001{width:23.959799pt;}
._16_c00001{width:25.703504pt;}
._e_c00001{width:26.913580pt;}
._1e_c00001{width:28.087336pt;}
._c_c00001{width:30.777070pt;}
._1d_c00001{width:32.046784pt;}
._13_c00001{width:33.984496pt;}
._b_c00001{width:38.451210pt;}
._1a_c00001{width:39.360288pt;}
._d_c00001{width:41.773012pt;}
._7_c00001{width:44.632708pt;}
._14_c00001{width:46.349206pt;}
._5_c00001{width:49.722222pt;}
._12_c00001{width:52.500000pt;}
._2_c00001{width:57.460317pt;}
._0_c00001{width:58.518519pt;}
._1_c00001{width:62.222222pt;}
._10_c00001{width:65.925926pt;}
._15_c00001{width:151.111111pt;}
._9_c00001{width:209.841270pt;}
._6_c00001{width:253.390527pt;}
._22_c00001{width:1610.285714pt;}
._18_c00001{width:2884.444444pt;}
.fs15_c00001{font-size:16.000000pt;}
.fsb_c00001{font-size:21.333333pt;}
.fsa_c00001{font-size:26.666667pt;}
.fs4_c00001{font-size:32.000000pt;}
.fsd_c00001{font-size:37.333333pt;}
.fsc_c00001{font-size:42.666667pt;}
.fs3_c00001{font-size:48.000000pt;}
.fs1_c00001{font-size:53.333333pt;}
.fs2_c00001{font-size:58.666667pt;}
.fs5_c00001{font-size:64.000000pt;}
.fs8_c00001{font-size:69.333333pt;}
.fs6_c00001{font-size:74.666667pt;}
.fs9_c00001{font-size:80.000000pt;}
.fs0_c00001{font-size:85.333333pt;}
.fs7_c00001{font-size:90.666667pt;}
.fs14_c00001{font-size:96.000000pt;}
.fs16_c00001{font-size:101.333333pt;}
.fs17_c00001{font-size:106.666667pt;}
.fs18_c00001{font-size:112.000000pt;}
.fs1d_c00001{font-size:122.666667pt;}
.fs1a_c00001{font-size:128.000000pt;}
.fs13_c00001{font-size:133.333333pt;}
.fs1b_c00001{font-size:160.000000pt;}
.fs19_c00001{font-size:176.000000pt;}
.fs1c_c00001{font-size:208.000000pt;}
.fsf_c00001{font-size:320.000000pt;}
.fse_c00001{font-size:330.666667pt;}
.fs11_c00001{font-size:352.000000pt;}
.fs10_c00001{font-size:458.666667pt;}
.fs12_c00001{font-size:618.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.ye62_c00001{bottom:7.733333pt;}
.ycd9_c00001{bottom:13.733333pt;}
.y106c_c00001{bottom:17.866667pt;}
.y3b8_c00001{bottom:22.400000pt;}
.ye4d_c00001{bottom:48.000000pt;}
.y106d_c00001{bottom:73.600000pt;}
.yef5_c00001{bottom:121.866667pt;}
.y106b_c00001{bottom:126.666667pt;}
.y8d3_c00001{bottom:138.266667pt;}
.yd3b_c00001{bottom:138.933333pt;}
.yd6c_c00001{bottom:140.133333pt;}
.ybb8_c00001{bottom:142.133333pt;}
.yef4_c00001{bottom:144.266667pt;}
.yeba_c00001{bottom:145.600000pt;}
.y14a_c00001{bottom:147.866667pt;}
.y8d2_c00001{bottom:148.133333pt;}
.y84e_c00001{bottom:148.800000pt;}
.yd93_c00001{bottom:150.133333pt;}
.yc9a_c00001{bottom:151.733333pt;}
.yafc_c00001{bottom:152.666667pt;}
.y9ae_c00001{bottom:152.933333pt;}
.y387_c00001{bottom:153.333333pt;}
.yf6c_c00001{bottom:153.600000pt;}
.y6c_c00001{bottom:153.866667pt;}
.y813_c00001{bottom:154.266667pt;}
.ya15_c00001{bottom:154.533333pt;}
.y9e1_c00001{bottom:155.200000pt;}
.y8ad_c00001{bottom:155.466667pt;}
.y8ae_c00001{bottom:156.133333pt;}
.y5c8_c00001{bottom:156.800000pt;}
.y320_c00001{bottom:157.066667pt;}
.yf1b_c00001{bottom:157.333333pt;}
.y9ad_c00001{bottom:157.466667pt;}
.yf42_c00001{bottom:158.666667pt;}
.y9ac_c00001{bottom:158.800000pt;}
.ye0c_c00001{bottom:159.066667pt;}
.y105b_c00001{bottom:159.333333pt;}
.yeaf_c00001{bottom:160.266667pt;}
.y9cc_c00001{bottom:160.666667pt;}
.ye9e_c00001{bottom:160.933333pt;}
.y614_c00001{bottom:161.333333pt;}
.y949_c00001{bottom:161.600000pt;}
.y57b_c00001{bottom:161.866667pt;}
.ycea_c00001{bottom:162.133333pt;}
.yb5a_c00001{bottom:162.266667pt;}
.y8d0_c00001{bottom:162.533333pt;}
.y991_c00001{bottom:163.200000pt;}
.y8d1_c00001{bottom:163.466667pt;}
.yfad_c00001{bottom:163.600000pt;}
.yeea_c00001{bottom:163.866667pt;}
.y6b4_c00001{bottom:164.133333pt;}
.y552_c00001{bottom:164.533333pt;}
.yd3a_c00001{bottom:164.666667pt;}
.y8ac_c00001{bottom:165.066667pt;}
.y149_c00001{bottom:165.333333pt;}
.y26a_c00001{bottom:165.466667pt;}
.y924_c00001{bottom:165.600000pt;}
.yc05_c00001{bottom:165.733333pt;}
.ya6b_c00001{bottom:165.866667pt;}
.yfd8_c00001{bottom:166.000000pt;}
.y84d_c00001{bottom:166.133333pt;}
.y1ac_c00001{bottom:166.400000pt;}
.yc84_c00001{bottom:166.666667pt;}
.yc99_c00001{bottom:166.800000pt;}
.yf09_c00001{bottom:167.066667pt;}
.ybe0_c00001{bottom:167.333333pt;}
.yd62_c00001{bottom:167.466667pt;}
.y26b_c00001{bottom:167.733333pt;}
.y7c7_c00001{bottom:168.000000pt;}
.y1032_c00001{bottom:168.400000pt;}
.y114_c00001{bottom:168.666667pt;}
.y4dd_c00001{bottom:168.800000pt;}
.ybb7_c00001{bottom:168.933333pt;}
.ydbe_c00001{bottom:169.066667pt;}
.y213_c00001{bottom:169.333333pt;}
.y812_c00001{bottom:169.600000pt;}
.y35_c00001{bottom:169.733333pt;}
.y2cb_c00001{bottom:169.866667pt;}
.y4df_c00001{bottom:170.000000pt;}
.y5c7_c00001{bottom:170.266667pt;}
.y6b_c00001{bottom:170.533333pt;}
.y71e_c00001{bottom:170.666667pt;}
.y8f0_c00001{bottom:170.800000pt;}
.y1e3_c00001{bottom:170.933333pt;}
.y29c_c00001{bottom:171.200000pt;}
.y9fb_c00001{bottom:171.333333pt;}
.y767_c00001{bottom:171.466667pt;}
.y73f_c00001{bottom:171.600000pt;}
.y9cb_c00001{bottom:171.866667pt;}
.y17b_c00001{bottom:172.133333pt;}
.yb6e_c00001{bottom:172.266667pt;}
.ycca_c00001{bottom:172.400000pt;}
.y788_c00001{bottom:172.533333pt;}
.y7a8_c00001{bottom:172.800000pt;}
.yf6b_c00001{bottom:172.933333pt;}
.y354_c00001{bottom:173.066667pt;}
.yde2_c00001{bottom:173.200000pt;}
.y436_c00001{bottom:173.333333pt;}
.y40b_c00001{bottom:173.466667pt;}
.y4fe_c00001{bottom:173.733333pt;}
.yfbb_c00001{bottom:174.000000pt;}
.ye86_c00001{bottom:174.133333pt;}
.y29f_c00001{bottom:174.266667pt;}
.yf5e_c00001{bottom:174.400000pt;}
.ye0b_c00001{bottom:174.666667pt;}
.yd9_c00001{bottom:174.800000pt;}
.yf41_c00001{bottom:174.933333pt;}
.ya1_c00001{bottom:175.066667pt;}
.y31f_c00001{bottom:175.200000pt;}
.y1044_c00001{bottom:175.333333pt;}
.y8cf_c00001{bottom:175.733333pt;}
.y496_c00001{bottom:176.133333pt;}
.y52a_c00001{bottom:176.266667pt;}
.y3dc_c00001{bottom:176.533333pt;}
.ye38_c00001{bottom:176.666667pt;}
.ye4a_c00001{bottom:176.933333pt;}
.ydd6_c00001{bottom:177.200000pt;}
.y2f6_c00001{bottom:177.333333pt;}
.y467_c00001{bottom:177.466667pt;}
.y551_c00001{bottom:177.600000pt;}
.yad8_c00001{bottom:178.000000pt;}
.yce9_c00001{bottom:178.133333pt;}
.y613_c00001{bottom:178.266667pt;}
.y57a_c00001{bottom:178.533333pt;}
.yafb_c00001{bottom:178.666667pt;}
.y269_c00001{bottom:178.933333pt;}
.y1ab_c00001{bottom:179.200000pt;}
.y101b_c00001{bottom:179.600000pt;}
.y692_c00001{bottom:179.733333pt;}
.ya2d_c00001{bottom:179.866667pt;}
.yd1d_c00001{bottom:180.000000pt;}
.y6b3_c00001{bottom:180.133333pt;}
.yc98_c00001{bottom:180.266667pt;}
.y979_c00001{bottom:180.400000pt;}
.y1002_c00001{bottom:180.533333pt;}
.y113_c00001{bottom:180.800000pt;}
.yed6_c00001{bottom:181.066667pt;}
.y148_c00001{bottom:181.333333pt;}
.y3b7_c00001{bottom:181.733333pt;}
.y4dc_c00001{bottom:181.866667pt;}
.yef3_c00001{bottom:182.000000pt;}
.y811_c00001{bottom:182.133333pt;}
.y84c_c00001{bottom:182.400000pt;}
.y1031_c00001{bottom:182.533333pt;}
.y969_c00001{bottom:182.666667pt;}
.y34_c00001{bottom:182.800000pt;}
.yd6b_c00001{bottom:182.933333pt;}
.y66c_c00001{bottom:183.066667pt;}
.y766_c00001{bottom:183.333333pt;}
.yd39_c00001{bottom:183.600000pt;}
.yd61_c00001{bottom:183.733333pt;}
.yb45_c00001{bottom:184.000000pt;}
.y7c6_c00001{bottom:184.266667pt;}
.y386_c00001{bottom:184.400000pt;}
.y5c6_c00001{bottom:184.666667pt;}
.ydbd_c00001{bottom:184.800000pt;}
.y9ab_c00001{bottom:184.933333pt;}
.y3dd_c00001{bottom:185.066667pt;}
.yb29_c00001{bottom:185.200000pt;}
.y17a_c00001{bottom:185.333333pt;}
.y212_c00001{bottom:185.600000pt;}
.y870_c00001{bottom:185.866667pt;}
.yde1_c00001{bottom:186.000000pt;}
.y66a_c00001{bottom:186.133333pt;}
.yc44_c00001{bottom:186.266667pt;}
.y6a_c00001{bottom:186.533333pt;}
.y1e2_c00001{bottom:186.666667pt;}
.yd8_c00001{bottom:186.933333pt;}
.y5a5_c00001{bottom:187.200000pt;}
.yf6a_c00001{bottom:187.333333pt;}
.ye0a_c00001{bottom:187.466667pt;}
.y9fa_c00001{bottom:187.600000pt;}
.ybf1_c00001{bottom:187.866667pt;}
.y29b_c00001{bottom:188.133333pt;}
.yb6d_c00001{bottom:188.266667pt;}
.y7a7_c00001{bottom:188.533333pt;}
.y787_c00001{bottom:188.800000pt;}
.y835_c00001{bottom:189.066667pt;}
.y435_c00001{bottom:189.333333pt;}
.y4de_c00001{bottom:189.466667pt;}
.y550_c00001{bottom:189.733333pt;}
.y3db_c00001{bottom:190.000000pt;}
.ye85_c00001{bottom:190.133333pt;}
.ye2b_c00001{bottom:190.400000pt;}
.yf40_c00001{bottom:190.666667pt;}
.y31e_c00001{bottom:190.933333pt;}
.y5f3_c00001{bottom:191.066667pt;}
.yf29_c00001{bottom:191.333333pt;}
.y948_c00001{bottom:191.466667pt;}
.ye1c_c00001{bottom:191.600000pt;}
.ya0_c00001{bottom:191.733333pt;}
.yb7b_c00001{bottom:192.000000pt;}
.y1aa_c00001{bottom:192.266667pt;}
.y2f5_c00001{bottom:192.400000pt;}
.y529_c00001{bottom:192.666667pt;}
.ybdf_c00001{bottom:192.933333pt;}
.y40a_c00001{bottom:193.066667pt;}
.yc6f_c00001{bottom:193.200000pt;}
.y466_c00001{bottom:193.466667pt;}
.y112_c00001{bottom:193.600000pt;}
.ydf3_c00001{bottom:193.733333pt;}
.ya3e_c00001{bottom:193.866667pt;}
.y579_c00001{bottom:194.133333pt;}
.yc2e_c00001{bottom:194.266667pt;}
.y7e9_c00001{bottom:194.533333pt;}
.y978_c00001{bottom:194.800000pt;}
.y33_c00001{bottom:194.933333pt;}
.y810_c00001{bottom:195.200000pt;}
.ycf8_c00001{bottom:195.466667pt;}
.y691_c00001{bottom:195.733333pt;}
.yfe2_c00001{bottom:195.866667pt;}
.y6b2_c00001{bottom:196.000000pt;}
.yeb9_c00001{bottom:196.133333pt;}
.yd1c_c00001{bottom:196.266667pt;}
.yed5_c00001{bottom:196.400000pt;}
.y765_c00001{bottom:196.800000pt;}
.y147_c00001{bottom:197.066667pt;}
.y923_c00001{bottom:197.200000pt;}
.y385_c00001{bottom:197.466667pt;}
.y9aa_c00001{bottom:197.733333pt;}
.y5c5_c00001{bottom:197.866667pt;}
.ya58_c00001{bottom:198.000000pt;}
.y179_c00001{bottom:198.133333pt;}
.y84b_c00001{bottom:198.400000pt;}
.yd7f_c00001{bottom:198.666667pt;}
.y669_c00001{bottom:198.933333pt;}
.yde0_c00001{bottom:199.066667pt;}
.yc43_c00001{bottom:199.333333pt;}
.y66b_c00001{bottom:199.733333pt;}
.ya93_c00001{bottom:200.000000pt;}
.y1030_c00001{bottom:200.133333pt;}
.yd7_c00001{bottom:200.266667pt;}
.yb28_c00001{bottom:200.933333pt;}
.ydbc_c00001{bottom:201.066667pt;}
.y2ca_c00001{bottom:201.200000pt;}
.y88e_c00001{bottom:201.333333pt;}
.yf69_c00001{bottom:201.466667pt;}
.y211_c00001{bottom:201.600000pt;}
.yda9_c00001{bottom:201.866667pt;}
.y353_c00001{bottom:202.266667pt;}
.y1e1_c00001{bottom:202.400000pt;}
.y69_c00001{bottom:202.533333pt;}
.y71d_c00001{bottom:202.666667pt;}
.y3da_c00001{bottom:202.800000pt;}
.yf93_c00001{bottom:203.200000pt;}
.yc59_c00001{bottom:203.466667pt;}
.y9f9_c00001{bottom:203.600000pt;}
.yd38_c00001{bottom:203.733333pt;}
.ye2a_c00001{bottom:204.133333pt;}
.y947_c00001{bottom:204.266667pt;}
.yf68_c00001{bottom:204.400000pt;}
.yba5_c00001{bottom:204.533333pt;}
.y4b5_c00001{bottom:204.666667pt;}
.y786_c00001{bottom:204.800000pt;}
.y1a9_c00001{bottom:205.066667pt;}
.y434_c00001{bottom:205.333333pt;}
.y3b6_c00001{bottom:205.466667pt;}
.y4fd_c00001{bottom:205.733333pt;}
.y23f_c00001{bottom:206.133333pt;}
.y111_c00001{bottom:206.400000pt;}
.y31d_c00001{bottom:206.666667pt;}
.y5f2_c00001{bottom:207.066667pt;}
.y29a_c00001{bottom:207.333333pt;}
.y9f_c00001{bottom:207.600000pt;}
.y495_c00001{bottom:207.733333pt;}
.yf92_c00001{bottom:207.866667pt;}
.y32_c00001{bottom:208.000000pt;}
.y968_c00001{bottom:208.266667pt;}
.y2f4_c00001{bottom:208.666667pt;}
.yb10_c00001{bottom:208.933333pt;}
.y465_c00001{bottom:209.200000pt;}
.y409_c00001{bottom:209.333333pt;}
.ydf2_c00001{bottom:209.733333pt;}
.y578_c00001{bottom:209.866667pt;}
.yfe1_c00001{bottom:210.000000pt;}
.y178_c00001{bottom:210.266667pt;}
.yabe_c00001{bottom:210.533333pt;}
.y764_c00001{bottom:210.666667pt;}
.y9a9_c00001{bottom:210.800000pt;}
.y5c4_c00001{bottom:210.933333pt;}
.y5a4_c00001{bottom:211.200000pt;}
.y668_c00001{bottom:211.466667pt;}
.y101a_c00001{bottom:211.600000pt;}
.y690_c00001{bottom:211.733333pt;}
.yc42_c00001{bottom:211.866667pt;}
.yd1b_c00001{bottom:212.000000pt;}
.yddf_c00001{bottom:212.133333pt;}
.yed4_c00001{bottom:212.400000pt;}
.ye70_c00001{bottom:212.533333pt;}
.yd6_c00001{bottom:212.800000pt;}
.yc2d_c00001{bottom:213.066667pt;}
.y6f7_c00001{bottom:213.200000pt;}
.yb59_c00001{bottom:213.466667pt;}
.y384_c00001{bottom:213.733333pt;}
.ye61_c00001{bottom:214.000000pt;}
.y612_c00001{bottom:214.133333pt;}
.yefd_c00001{bottom:214.266667pt;}
.y8ce_c00001{bottom:214.400000pt;}
.y667_c00001{bottom:214.666667pt;}
.y3d9_c00001{bottom:215.333333pt;}
.y528_c00001{bottom:215.466667pt;}
.ya92_c00001{bottom:215.733333pt;}
.y102f_c00001{bottom:216.133333pt;}
.y7c5_c00001{bottom:216.266667pt;}
.ydbb_c00001{bottom:216.400000pt;}
.yed8_c00001{bottom:216.666667pt;}
.y946_c00001{bottom:217.066667pt;}
.y146_c00001{bottom:217.200000pt;}
.y210_c00001{bottom:217.333333pt;}
.y9ca_c00001{bottom:217.600000pt;}
.y2c9_c00001{bottom:217.866667pt;}
.y1e0_c00001{bottom:218.133333pt;}
.y352_c00001{bottom:218.400000pt;}
.y68_c00001{bottom:218.533333pt;}
.y71c_c00001{bottom:218.666667pt;}
.y23e_c00001{bottom:218.933333pt;}
.y110_c00001{bottom:219.200000pt;}
.y977_c00001{bottom:219.466667pt;}
.y7a6_c00001{bottom:219.600000pt;}
.yb6c_c00001{bottom:219.866667pt;}
.yd37_c00001{bottom:220.133333pt;}
.yba4_c00001{bottom:220.266667pt;}
.y7e8_c00001{bottom:220.400000pt;}
.y31_c00001{bottom:220.533333pt;}
.y80f_c00001{bottom:220.800000pt;}
.y86f_c00001{bottom:221.066667pt;}
.y433_c00001{bottom:221.333333pt;}
.y3b5_c00001{bottom:221.466667pt;}
.y907_c00001{bottom:221.600000pt;}
.y4fc_c00001{bottom:221.733333pt;}
.ya6a_c00001{bottom:221.866667pt;}
.y299_c00001{bottom:222.000000pt;}
.y763_c00001{bottom:222.133333pt;}
.yc58_c00001{bottom:222.400000pt;}
.y31c_c00001{bottom:222.666667pt;}
.y177_c00001{bottom:222.933333pt;}
.y73e_c00001{bottom:223.066667pt;}
.y9e_c00001{bottom:223.333333pt;}
.y494_c00001{bottom:223.466667pt;}
.y4db_c00001{bottom:223.733333pt;}
.yf91_c00001{bottom:223.866667pt;}
.y2f3_c00001{bottom:224.000000pt;}
.yc41_c00001{bottom:224.666667pt;}
.y464_c00001{bottom:224.933333pt;}
.y268_c00001{bottom:225.333333pt;}
.y577_c00001{bottom:225.600000pt;}
.yd5_c00001{bottom:225.866667pt;}
.ya2c_c00001{bottom:226.133333pt;}
.y5f1_c00001{bottom:226.400000pt;}
.yfac_c00001{bottom:226.666667pt;}
.y383_c00001{bottom:226.800000pt;}
.y5a3_c00001{bottom:226.933333pt;}
.y8cd_c00001{bottom:227.200000pt;}
.y6b1_c00001{bottom:227.466667pt;}
.ydf1_c00001{bottom:227.600000pt;}
.y68f_c00001{bottom:227.733333pt;}
.y54f_c00001{bottom:227.866667pt;}
.y3d8_c00001{bottom:228.133333pt;}
.y6dd_c00001{bottom:228.533333pt;}
.y922_c00001{bottom:228.933333pt;}
.ycd8_c00001{bottom:229.066667pt;}
.yabd_c00001{bottom:229.200000pt;}
.ybb6_c00001{bottom:229.333333pt;}
.y990_c00001{bottom:229.466667pt;}
.ye60_c00001{bottom:229.733333pt;}
.y945_c00001{bottom:230.133333pt;}
.yefc_c00001{bottom:230.266667pt;}
.ybde_c00001{bottom:230.400000pt;}
.yc97_c00001{bottom:230.666667pt;}
.yee9_c00001{bottom:230.933333pt;}
.ya91_c00001{bottom:231.066667pt;}
.yd60_c00001{bottom:231.333333pt;}
.y527_c00001{bottom:231.466667pt;}
.y7a5_c00001{bottom:231.733333pt;}
.y976_c00001{bottom:232.000000pt;}
.y10f_c00001{bottom:232.266667pt;}
.ya3d_c00001{bottom:232.400000pt;}
.y88d_c00001{bottom:232.666667pt;}
.y145_c00001{bottom:232.933333pt;}
.y102e_c00001{bottom:233.066667pt;}
.y20f_c00001{bottom:233.333333pt;}
.y30_c00001{bottom:233.600000pt;}
.y2c8_c00001{bottom:233.866667pt;}
.y611_c00001{bottom:234.000000pt;}
.y351_c00001{bottom:234.133333pt;}
.y84a_c00001{bottom:234.266667pt;}
.y1df_c00001{bottom:234.400000pt;}
.y67_c00001{bottom:234.533333pt;}
.yfcc_c00001{bottom:234.800000pt;}
.y762_c00001{bottom:235.200000pt;}
.yb44_c00001{bottom:235.466667pt;}
.y176_c00001{bottom:235.733333pt;}
.y640_c00001{bottom:235.866667pt;}
.y73d_c00001{bottom:236.133333pt;}
.yba3_c00001{bottom:236.266667pt;}
.y5c3_c00001{bottom:236.533333pt;}
.y86e_c00001{bottom:236.800000pt;}
.y432_c00001{bottom:237.066667pt;}
.yaeb_c00001{bottom:237.200000pt;}
.y906_c00001{bottom:237.333333pt;}
.y4fb_c00001{bottom:237.466667pt;}
.yad7_c00001{bottom:237.733333pt;}
.y298_c00001{bottom:238.000000pt;}
.yc2c_c00001{bottom:238.133333pt;}
.ye29_c00001{bottom:238.400000pt;}
.yd4_c00001{bottom:238.666667pt;}
.y493_c00001{bottom:239.200000pt;}
.yd92_c00001{bottom:239.333333pt;}
.y382_c00001{bottom:239.600000pt;}
.y2f2_c00001{bottom:239.733333pt;}
.y4da_c00001{bottom:240.000000pt;}
.y3d7_c00001{bottom:240.266667pt;}
.ydf0_c00001{bottom:240.400000pt;}
.yf90_c00001{bottom:240.533333pt;}
.y463_c00001{bottom:240.666667pt;}
.yc6e_c00001{bottom:240.933333pt;}
.y267_c00001{bottom:241.333333pt;}
.yce8_c00001{bottom:241.600000pt;}
.ya69_c00001{bottom:241.733333pt;}
.ya2b_c00001{bottom:241.866667pt;}
.yabc_c00001{bottom:242.000000pt;}
.y5f0_c00001{bottom:242.133333pt;}
.y9d_c00001{bottom:242.266667pt;}
.yeae_c00001{bottom:242.400000pt;}
.yfab_c00001{bottom:242.666667pt;}
.y105a_c00001{bottom:242.800000pt;}
.yc04_c00001{bottom:242.933333pt;}
.y944_c00001{bottom:243.200000pt;}
.y68e_c00001{bottom:243.466667pt;}
.ye37_c00001{bottom:243.600000pt;}
.y6b0_c00001{bottom:243.733333pt;}
.y5a2_c00001{bottom:243.866667pt;}
.ycc9_c00001{bottom:244.133333pt;}
.y3b4_c00001{bottom:244.266667pt;}
.yf5d_c00001{bottom:244.533333pt;}
.y921_c00001{bottom:244.666667pt;}
.y6dc_c00001{bottom:244.800000pt;}
.y98f_c00001{bottom:245.066667pt;}
.y7a4_c00001{bottom:245.200000pt;}
.y10e_c00001{bottom:245.333333pt;}
.ybf0_c00001{bottom:245.466667pt;}
.yd7e_c00001{bottom:245.733333pt;}
.ye84_c00001{bottom:246.000000pt;}
.y2f_c00001{bottom:246.400000pt;}
.yd6a_c00001{bottom:246.666667pt;}
.yd5f_c00001{bottom:246.933333pt;}
.yf28_c00001{bottom:247.333333pt;}
.y526_c00001{bottom:247.466667pt;}
.ye6f_c00001{bottom:247.600000pt;}
.yeb8_c00001{bottom:247.733333pt;}
.y101f_c00001{bottom:248.000000pt;}
.y7c4_c00001{bottom:248.266667pt;}
.y175_c00001{bottom:248.533333pt;}
.y73c_c00001{bottom:248.666667pt;}
.y9c9_c00001{bottom:248.800000pt;}
.y88c_c00001{bottom:248.933333pt;}
.ya3c_c00001{bottom:249.066667pt;}
.ya98_c00001{bottom:249.200000pt;}
.y20e_c00001{bottom:249.333333pt;}
.y5c2_c00001{bottom:249.600000pt;}
.y350_c00001{bottom:249.866667pt;}
.y102d_c00001{bottom:250.000000pt;}
.y1de_c00001{bottom:250.133333pt;}
.y666_c00001{bottom:250.266667pt;}
.y71b_c00001{bottom:250.400000pt;}
.y9f8_c00001{bottom:250.533333pt;}
.y66_c00001{bottom:250.800000pt;}
.yb43_c00001{bottom:250.933333pt;}
.yfcb_c00001{bottom:251.066667pt;}
.yb6b_c00001{bottom:251.200000pt;}
.y144_c00001{bottom:251.466667pt;}
.y63f_c00001{bottom:251.866667pt;}
.yba2_c00001{bottom:252.000000pt;}
.y381_c00001{bottom:252.133333pt;}
.ye94_c00001{bottom:252.400000pt;}
.y86d_c00001{bottom:252.533333pt;}
.y1001_c00001{bottom:252.800000pt;}
.yaea_c00001{bottom:252.933333pt;}
.y3d6_c00001{bottom:253.066667pt;}
.y1a7_c00001{bottom:253.200000pt;}
.y905_c00001{bottom:253.333333pt;}
.y4fa_c00001{bottom:253.466667pt;}
.y2c7_c00001{bottom:253.600000pt;}
.y297_c00001{bottom:253.733333pt;}
.y1043_c00001{bottom:254.000000pt;}
.ye09_c00001{bottom:254.400000pt;}
.y31b_c00001{bottom:254.666667pt;}
.ydd5_c00001{bottom:255.066667pt;}
.y492_c00001{bottom:255.200000pt;}
.yd3_c00001{bottom:255.333333pt;}
.yb89_c00001{bottom:255.600000pt;}
.y4d9_c00001{bottom:255.733333pt;}
.yc03_c00001{bottom:256.000000pt;}
.yf8f_c00001{bottom:256.266667pt;}
.y462_c00001{bottom:256.400000pt;}
.y431_c00001{bottom:256.533333pt;}
.y1019_c00001{bottom:256.666667pt;}
.ya2a_c00001{bottom:257.200000pt;}
.y266_c00001{bottom:257.333333pt;}
.y54e_c00001{bottom:257.600000pt;}
.y10d_c00001{bottom:257.866667pt;}
.y5ef_c00001{bottom:258.133333pt;}
.yabb_c00001{bottom:258.266667pt;}
.y9c_c00001{bottom:258.533333pt;}
.y2e_c00001{bottom:258.933333pt;}
.y1059_c00001{bottom:259.066667pt;}
.ycf7_c00001{bottom:259.200000pt;}
.y68d_c00001{bottom:259.466667pt;}
.ye36_c00001{bottom:259.600000pt;}
.y6db_c00001{bottom:260.133333pt;}
.y3b3_c00001{bottom:260.266667pt;}
.yf27_c00001{bottom:260.800000pt;}
.y920_c00001{bottom:260.933333pt;}
.y174_c00001{bottom:261.066667pt;}
.y98e_c00001{bottom:261.333333pt;}
.y73b_c00001{bottom:261.466667pt;}
.ya68_c00001{bottom:261.600000pt;}
.ya90_c00001{bottom:261.733333pt;}
.y576_c00001{bottom:262.000000pt;}
.y5c1_c00001{bottom:262.400000pt;}
.yd69_c00001{bottom:262.666667pt;}
.yd5e_c00001{bottom:262.933333pt;}
.yc40_c00001{bottom:263.066667pt;}
.y525_c00001{bottom:263.200000pt;}
.yd2_c00001{bottom:263.333333pt;}
.yed3_c00001{bottom:263.466667pt;}
.ye6e_c00001{bottom:263.600000pt;}
.y23d_c00001{bottom:264.000000pt;}
.y1a8_c00001{bottom:264.266667pt;}
.yc6d_c00001{bottom:264.400000pt;}
.y9c8_c00001{bottom:264.533333pt;}
.y408_c00001{bottom:264.666667pt;}
.y143_c00001{bottom:264.933333pt;}
.y102c_c00001{bottom:265.066667pt;}
.y88b_c00001{bottom:265.200000pt;}
.y20d_c00001{bottom:265.333333pt;}
.yfd7_c00001{bottom:265.600000pt;}
.y1dd_c00001{bottom:265.866667pt;}
.y665_c00001{bottom:266.000000pt;}
.y1a6_c00001{bottom:266.266667pt;}
.y71a_c00001{bottom:266.400000pt;}
.y65_c00001{bottom:266.533333pt;}
.y63e_c00001{bottom:266.933333pt;}
.yd1a_c00001{bottom:267.200000pt;}
.y101e_c00001{bottom:267.333333pt;}
.yb6a_c00001{bottom:267.466667pt;}
.y975_c00001{bottom:267.866667pt;}
.yba1_c00001{bottom:268.000000pt;}
.y8ab_c00001{bottom:268.133333pt;}
.y943_c00001{bottom:268.533333pt;}
.yae9_c00001{bottom:268.666667pt;}
.y4b4_c00001{bottom:268.800000pt;}
.y833_c00001{bottom:269.066667pt;}
.y1008_c00001{bottom:269.200000pt;}
.yad6_c00001{bottom:269.466667pt;}
.yf08_c00001{bottom:269.600000pt;}
.y34f_c00001{bottom:269.733333pt;}
.y2c6_c00001{bottom:269.866667pt;}
.y296_c00001{bottom:270.000000pt;}
.y3d5_c00001{bottom:270.400000pt;}
.y10c_c00001{bottom:270.666667pt;}
.y491_c00001{bottom:271.200000pt;}
.yb88_c00001{bottom:271.333333pt;}
.y4d8_c00001{bottom:271.466667pt;}
.y2d_c00001{bottom:271.733333pt;}
.yc57_c00001{bottom:272.000000pt;}
.y761_c00001{bottom:272.133333pt;}
.y430_c00001{bottom:272.266667pt;}
.y407_c00001{bottom:272.666667pt;}
.y610_c00001{bottom:272.933333pt;}
.y265_c00001{bottom:273.333333pt;}
.ydd4_c00001{bottom:273.600000pt;}
.y173_c00001{bottom:273.733333pt;}
.y5ee_c00001{bottom:273.866667pt;}
.yaba_c00001{bottom:274.000000pt;}
.yead_c00001{bottom:274.133333pt;}
.y73a_c00001{bottom:274.266667pt;}
.y9b_c00001{bottom:274.533333pt;}
.yb7a_c00001{bottom:274.666667pt;}
.y1058_c00001{bottom:274.800000pt;}
.y2f1_c00001{bottom:274.933333pt;}
.yc3f_c00001{bottom:275.200000pt;}
.y68c_c00001{bottom:275.466667pt;}
.ye35_c00001{bottom:275.600000pt;}
.y3b2_c00001{bottom:276.000000pt;}
.y575_c00001{bottom:276.133333pt;}
.ybb5_c00001{bottom:276.400000pt;}
.y91f_c00001{bottom:276.666667pt;}
.ye55_c00001{bottom:276.800000pt;}
.yd1_c00001{bottom:277.066667pt;}
.y54d_c00001{bottom:277.200000pt;}
.ybef_c00001{bottom:277.466667pt;}
.ycb2_c00001{bottom:277.733333pt;}
.y102b_c00001{bottom:277.866667pt;}
.y80e_c00001{bottom:278.000000pt;}
.yd68_c00001{bottom:278.400000pt;}
.yee8_c00001{bottom:278.666667pt;}
.yd5d_c00001{bottom:278.933333pt;}
.y524_c00001{bottom:279.200000pt;}
.ye6d_c00001{bottom:279.333333pt;}
.y1a5_c00001{bottom:279.466667pt;}
.yed2_c00001{bottom:279.733333pt;}
.y380_c00001{bottom:279.866667pt;}
.y7c3_c00001{bottom:280.000000pt;}
.y9c7_c00001{bottom:280.266667pt;}
.yfe0_c00001{bottom:280.400000pt;}
.y8ef_c00001{bottom:280.666667pt;}
.y88a_c00001{bottom:280.933333pt;}
.y942_c00001{bottom:281.333333pt;}
.y8cc_c00001{bottom:281.600000pt;}
.y1dc_c00001{bottom:281.866667pt;}
.y664_c00001{bottom:282.000000pt;}
.y719_c00001{bottom:282.133333pt;}
.ya14_c00001{bottom:282.266667pt;}
.y6af_c00001{bottom:282.400000pt;}
.y64_c00001{bottom:282.533333pt;}
.ya67_c00001{bottom:282.666667pt;}
.y63d_c00001{bottom:282.933333pt;}
.yfca_c00001{bottom:283.066667pt;}
.y7e7_c00001{bottom:283.200000pt;}
.y10b_c00001{bottom:283.466667pt;}
.y101d_c00001{bottom:283.600000pt;}
.y23c_c00001{bottom:283.866667pt;}
.yba0_c00001{bottom:284.000000pt;}
.y20c_c00001{bottom:284.133333pt;}
.ycd7_c00001{bottom:284.266667pt;}
.yae8_c00001{bottom:284.400000pt;}
.ya57_c00001{bottom:284.533333pt;}
.y142_c00001{bottom:284.800000pt;}
.y834_c00001{bottom:285.066667pt;}
.y2c5_c00001{bottom:285.200000pt;}
.y29e_c00001{bottom:285.333333pt;}
.y34e_c00001{bottom:285.466667pt;}
.yf07_c00001{bottom:285.600000pt;}
.y295_c00001{bottom:285.733333pt;}
.yb58_c00001{bottom:286.133333pt;}
.y172_c00001{bottom:286.266667pt;}
.y2c_c00001{bottom:286.400000pt;}
.y31a_c00001{bottom:286.666667pt;}
.y739_c00001{bottom:287.066667pt;}
.y490_c00001{bottom:287.200000pt;}
.ye1b_c00001{bottom:287.333333pt;}
.y4d7_c00001{bottom:287.466667pt;}
.y461_c00001{bottom:288.000000pt;}
.y9a8_c00001{bottom:288.266667pt;}
.y42f_c00001{bottom:288.533333pt;}
.y406_c00001{bottom:288.666667pt;}
.y760_c00001{bottom:288.800000pt;}
.yfba_c00001{bottom:288.933333pt;}
.y4f9_c00001{bottom:289.066667pt;}
.y264_c00001{bottom:289.333333pt;}
.y5ed_c00001{bottom:289.600000pt;}
.yab9_c00001{bottom:289.733333pt;}
.yd0_c00001{bottom:289.866667pt;}
.yc2b_c00001{bottom:290.000000pt;}
.y2f0_c00001{bottom:290.266667pt;}
.y9a_c00001{bottom:290.533333pt;}
.yfaa_c00001{bottom:290.666667pt;}
.yb79_c00001{bottom:290.933333pt;}
.ycbb_c00001{bottom:291.066667pt;}
.y5a1_c00001{bottom:291.200000pt;}
.ye34_c00001{bottom:291.333333pt;}
.y68b_c00001{bottom:291.466667pt;}
.y3b1_c00001{bottom:291.733333pt;}
.y8aa_c00001{bottom:291.866667pt;}
.y6da_c00001{bottom:292.133333pt;}
.ybb4_c00001{bottom:292.400000pt;}
.y1a4_c00001{bottom:292.533333pt;}
.y37f_c00001{bottom:292.666667pt;}
.y574_c00001{bottom:292.800000pt;}
.y54c_c00001{bottom:292.933333pt;}
.y98d_c00001{bottom:293.066667pt;}
.ybdd_c00001{bottom:293.200000pt;}
.ybee_c00001{bottom:293.466667pt;}
.y80d_c00001{bottom:294.000000pt;}
.y941_c00001{bottom:294.133333pt;}
.ycf6_c00001{bottom:294.400000pt;}
.y102a_c00001{bottom:294.533333pt;}
.yd91_c00001{bottom:294.666667pt;}
.yed1_c00001{bottom:294.800000pt;}
.yd5c_c00001{bottom:294.933333pt;}
.yed7_c00001{bottom:295.066667pt;}
.y523_c00001{bottom:295.200000pt;}
.y7c2_c00001{bottom:295.333333pt;}
.y3d4_c00001{bottom:295.600000pt;}
.ydba_c00001{bottom:295.733333pt;}
.y10a_c00001{bottom:296.000000pt;}
.y20b_c00001{bottom:296.266667pt;}
.y889_c00001{bottom:296.400000pt;}
.y8ee_c00001{bottom:296.666667pt;}
.y8cb_c00001{bottom:297.600000pt;}
.y663_c00001{bottom:297.733333pt;}
.y1db_c00001{bottom:297.866667pt;}
.y718_c00001{bottom:298.133333pt;}
.y63c_c00001{bottom:298.266667pt;}
.y6ae_c00001{bottom:298.400000pt;}
.y63_c00001{bottom:298.533333pt;}
.y3af_c00001{bottom:298.800000pt;}
.yc02_c00001{bottom:298.933333pt;}
.y171_c00001{bottom:299.066667pt;}
.yfeb_c00001{bottom:299.200000pt;}
.y23b_c00001{bottom:299.466667pt;}
.y101c_c00001{bottom:299.600000pt;}
.y7e6_c00001{bottom:299.733333pt;}
.yb9f_c00001{bottom:300.000000pt;}
.ye1a_c00001{bottom:300.133333pt;}
.ya56_c00001{bottom:300.266667pt;}
.ya97_c00001{bottom:300.400000pt;}
.y141_c00001{bottom:300.533333pt;}
.y3b0_c00001{bottom:300.666667pt;}
.y904_c00001{bottom:300.800000pt;}
.ya66_c00001{bottom:300.933333pt;}
.y832_c00001{bottom:301.066667pt;}
.y2c4_c00001{bottom:301.200000pt;}
.yf06_c00001{bottom:301.333333pt;}
.y34d_c00001{bottom:301.466667pt;}
.y294_c00001{bottom:301.733333pt;}
.ye83_c00001{bottom:301.866667pt;}
.ycf_c00001{bottom:302.133333pt;}
.y319_c00001{bottom:302.666667pt;}
.y2b_c00001{bottom:302.800000pt;}
.y48f_c00001{bottom:302.933333pt;}
.yc2a_c00001{bottom:303.066667pt;}
.y460_c00001{bottom:303.333333pt;}
.y4d6_c00001{bottom:303.733333pt;}
.yc56_c00001{bottom:304.000000pt;}
.y75f_c00001{bottom:304.133333pt;}
.y42e_c00001{bottom:304.266667pt;}
.y405_c00001{bottom:304.400000pt;}
.yc83_c00001{bottom:304.666667pt;}
.y1a3_c00001{bottom:304.933333pt;}
.y37e_c00001{bottom:305.200000pt;}
.y263_c00001{bottom:305.333333pt;}
.y5ec_c00001{bottom:305.600000pt;}
.yab8_c00001{bottom:305.733333pt;}
.y2ef_c00001{bottom:305.866667pt;}
.ybdc_c00001{bottom:306.000000pt;}
.y104f_c00001{bottom:306.266667pt;}
.yf10_c00001{bottom:306.533333pt;}
.yfa9_c00001{bottom:306.666667pt;}
.y940_c00001{bottom:306.933333pt;}
.ycba_c00001{bottom:307.066667pt;}
.y5a0_c00001{bottom:307.200000pt;}
.y68a_c00001{bottom:307.466667pt;}
.y3ae_c00001{bottom:307.733333pt;}
.y6f6_c00001{bottom:307.866667pt;}
.y6d9_c00001{bottom:308.133333pt;}
.y7a3_c00001{bottom:308.400000pt;}
.y60f_c00001{bottom:308.533333pt;}
.y91e_c00001{bottom:308.666667pt;}
.y109_c00001{bottom:308.800000pt;}
.y54b_c00001{bottom:308.933333pt;}
.y99_c00001{bottom:309.066667pt;}
.yd7d_c00001{bottom:309.200000pt;}
.yeac_c00001{bottom:309.333333pt;}
.ybed_c00001{bottom:309.466667pt;}
.y80c_c00001{bottom:310.000000pt;}
.yf67_c00001{bottom:310.133333pt;}
.y1057_c00001{bottom:310.266667pt;}
.y967_c00001{bottom:310.400000pt;}
.yd5b_c00001{bottom:310.666667pt;}
.yed0_c00001{bottom:310.800000pt;}
.y86c_c00001{bottom:311.066667pt;}
.y522_c00001{bottom:311.200000pt;}
.ydb9_c00001{bottom:311.466667pt;}
.y170_c00001{bottom:311.600000pt;}
.yda8_c00001{bottom:312.000000pt;}
.yefb_c00001{bottom:312.133333pt;}
.y974_c00001{bottom:312.266667pt;}
.ybcb_c00001{bottom:312.533333pt;}
.y8ed_c00001{bottom:312.666667pt;}
.ye19_c00001{bottom:312.933333pt;}
.y403_c00001{bottom:313.333333pt;}
.y63b_c00001{bottom:313.600000pt;}
.y1da_c00001{bottom:313.866667pt;}
.y404_c00001{bottom:314.000000pt;}
.yf1a_c00001{bottom:314.133333pt;}
.y62_c00001{bottom:314.266667pt;}
.y6ad_c00001{bottom:314.400000pt;}
.y20a_c00001{bottom:314.533333pt;}
.yad5_c00001{bottom:314.933333pt;}
.y7e5_c00001{bottom:315.066667pt;}
.yd19_c00001{bottom:315.200000pt;}
.ye49_c00001{bottom:315.466667pt;}
.yc29_c00001{bottom:315.600000pt;}
.yb9e_c00001{bottom:315.733333pt;}
.yce_c00001{bottom:315.866667pt;}
.ya55_c00001{bottom:316.000000pt;}
.ya96_c00001{bottom:316.133333pt;}
.yb42_c00001{bottom:316.400000pt;}
.y4b3_c00001{bottom:316.533333pt;}
.y903_c00001{bottom:316.800000pt;}
.y2c3_c00001{bottom:316.933333pt;}
.y23a_c00001{bottom:317.066667pt;}
.y34c_c00001{bottom:317.200000pt;}
.y831_c00001{bottom:317.333333pt;}
.y293_c00001{bottom:317.466667pt;}
.ye82_c00001{bottom:317.600000pt;}
.yf66_c00001{bottom:317.733333pt;}
.y662_c00001{bottom:317.866667pt;}
.y37d_c00001{bottom:318.000000pt;}
.y318_c00001{bottom:318.400000pt;}
.y2a_c00001{bottom:318.533333pt;}
.y48e_c00001{bottom:318.933333pt;}
.y4d5_c00001{bottom:319.200000pt;}
.yb87_c00001{bottom:319.333333pt;}
.y42d_c00001{bottom:319.600000pt;}
.ydd3_c00001{bottom:319.733333pt;}
.ya8f_c00001{bottom:320.000000pt;}
.y75e_c00001{bottom:320.133333pt;}
.y402_c00001{bottom:320.266667pt;}
.ya65_c00001{bottom:320.400000pt;}
.y1042_c00001{bottom:320.933333pt;}
.y7a2_c00001{bottom:321.200000pt;}
.y4f8_c00001{bottom:321.333333pt;}
.yab7_c00001{bottom:321.466667pt;}
.ycf5_c00001{bottom:321.600000pt;}
.y2ee_c00001{bottom:321.866667pt;}
.ye93_c00001{bottom:322.400000pt;}
.y45f_c00001{bottom:322.533333pt;}
.yfa8_c00001{bottom:322.666667pt;}
.ycb9_c00001{bottom:322.800000pt;}
.y59f_c00001{bottom:323.200000pt;}
.y1a2_c00001{bottom:323.466667pt;}
.y93f_c00001{bottom:323.600000pt;}
.yc01_c00001{bottom:323.733333pt;}
.y6d8_c00001{bottom:323.866667pt;}
.y16f_c00001{bottom:324.133333pt;}
.y91d_c00001{bottom:324.400000pt;}
.y8a9_c00001{bottom:324.533333pt;}
.y973_c00001{bottom:324.800000pt;}
.y54a_c00001{bottom:324.933333pt;}
.y9f7_c00001{bottom:325.066667pt;}
.yf3f_c00001{bottom:325.600000pt;}
.ye18_c00001{bottom:325.733333pt;}
.y80b_c00001{bottom:326.000000pt;}
.y98_c00001{bottom:326.133333pt;}
.y108_c00001{bottom:326.400000pt;}
.yd5a_c00001{bottom:326.666667pt;}
.y521_c00001{bottom:326.933333pt;}
.y785_c00001{bottom:327.066667pt;}
.y3d3_c00001{bottom:327.333333pt;}
.y8ec_c00001{bottom:327.466667pt;}
.yc55_c00001{bottom:327.600000pt;}
.yda7_c00001{bottom:327.733333pt;}
.yecf_c00001{bottom:328.133333pt;}
.y738_c00001{bottom:328.266667pt;}
.ybca_c00001{bottom:328.533333pt;}
.y140_c00001{bottom:328.666667pt;}
.ycd_c00001{bottom:328.933333pt;}
.y661_c00001{bottom:329.066667pt;}
.y63a_c00001{bottom:329.333333pt;}
.y1029_c00001{bottom:329.733333pt;}
.y1d9_c00001{bottom:329.866667pt;}
.ya13_c00001{bottom:330.000000pt;}
.y61_c00001{bottom:330.133333pt;}
.y209_c00001{bottom:330.533333pt;}
.y37c_c00001{bottom:330.800000pt;}
.ye48_c00001{bottom:330.933333pt;}
.y239_c00001{bottom:331.200000pt;}
.ybdb_c00001{bottom:331.333333pt;}
.yfc9_c00001{bottom:331.466667pt;}
.yb78_c00001{bottom:331.600000pt;}
.yb9d_c00001{bottom:331.733333pt;}
.y7c1_c00001{bottom:331.866667pt;}
.ya54_c00001{bottom:332.000000pt;}
.y262_c00001{bottom:332.133333pt;}
.y1000_c00001{bottom:332.400000pt;}
.y4b2_c00001{bottom:332.533333pt;}
.y830_c00001{bottom:332.666667pt;}
.y902_c00001{bottom:332.800000pt;}
.y2c2_c00001{bottom:332.933333pt;}
.ye5f_c00001{bottom:333.066667pt;}
.y34b_c00001{bottom:333.200000pt;}
.y7e4_c00001{bottom:333.333333pt;}
.yf65_c00001{bottom:333.466667pt;}
.ye81_c00001{bottom:333.600000pt;}
.yf0f_c00001{bottom:333.733333pt;}
.yd36_c00001{bottom:334.000000pt;}
.y45e_c00001{bottom:334.400000pt;}
.y29_c00001{bottom:334.533333pt;}
.y48d_c00001{bottom:334.666667pt;}
.yfb9_c00001{bottom:335.066667pt;}
.y4d4_c00001{bottom:335.200000pt;}
.y75d_c00001{bottom:335.466667pt;}
.y42c_c00001{bottom:335.600000pt;}
.y401_c00001{bottom:335.733333pt;}
.yc6c_c00001{bottom:336.000000pt;}
.y966_c00001{bottom:336.266667pt;}
.y93e_c00001{bottom:336.666667pt;}
.y16e_c00001{bottom:336.933333pt;}
.y849_c00001{bottom:337.200000pt;}
.y292_c00001{bottom:337.333333pt;}
.ye08_c00001{bottom:337.466667pt;}
.ycf4_c00001{bottom:337.600000pt;}
.y1018_c00001{bottom:337.866667pt;}
.y317_c00001{bottom:338.133333pt;}
.yeb7_c00001{bottom:338.266667pt;}
.ydef_c00001{bottom:338.533333pt;}
.ye33_c00001{bottom:338.800000pt;}
.y9a7_c00001{bottom:338.933333pt;}
.y3ad_c00001{bottom:339.200000pt;}
.y1a1_c00001{bottom:339.466667pt;}
.ya64_c00001{bottom:339.600000pt;}
.yc00_c00001{bottom:339.733333pt;}
.y6d7_c00001{bottom:339.866667pt;}
.ye92_c00001{bottom:340.000000pt;}
.ya29_c00001{bottom:340.133333pt;}
.yefa_c00001{bottom:340.266667pt;}
.y7a1_c00001{bottom:340.400000pt;}
.yafa_c00001{bottom:340.533333pt;}
.y91c_c00001{bottom:340.666667pt;}
.yf5c_c00001{bottom:340.800000pt;}
.y549_c00001{bottom:340.933333pt;}
.yc28_c00001{bottom:341.200000pt;}
.yf3e_c00001{bottom:341.600000pt;}
.yb57_c00001{bottom:341.733333pt;}
.y80a_c00001{bottom:342.000000pt;}
.yd90_c00001{bottom:342.133333pt;}
.yd59_c00001{bottom:342.400000pt;}
.yece_c00001{bottom:342.533333pt;}
.ycc_c00001{bottom:342.666667pt;}
.y784_c00001{bottom:342.800000pt;}
.y520_c00001{bottom:342.933333pt;}
.y107_c00001{bottom:343.066667pt;}
.yda6_c00001{bottom:343.466667pt;}
.y37b_c00001{bottom:343.600000pt;}
.y8eb_c00001{bottom:343.733333pt;}
.yad4_c00001{bottom:344.000000pt;}
.y60e_c00001{bottom:344.266667pt;}
.y13f_c00001{bottom:344.400000pt;}
.y972_c00001{bottom:344.666667pt;}
.y573_c00001{bottom:344.933333pt;}
.y660_c00001{bottom:345.333333pt;}
.yb27_c00001{bottom:345.600000pt;}
.ya12_c00001{bottom:345.733333pt;}
.y60_c00001{bottom:345.866667pt;}
.y1028_c00001{bottom:346.000000pt;}
.y208_c00001{bottom:346.266667pt;}
.y888_c00001{bottom:346.533333pt;}
.y7a0_c00001{bottom:346.800000pt;}
.y3d2_c00001{bottom:346.933333pt;}
.yef2_c00001{bottom:347.200000pt;}
.ya53_c00001{bottom:347.733333pt;}
.y238_c00001{bottom:347.866667pt;}
.y45d_c00001{bottom:348.133333pt;}
.y5c0_c00001{bottom:348.533333pt;}
.y2c1_c00001{bottom:348.666667pt;}
.ybec_c00001{bottom:348.800000pt;}
.y965_c00001{bottom:349.066667pt;}
.y34a_c00001{bottom:349.200000pt;}
.yc82_c00001{bottom:349.333333pt;}
.y16d_c00001{bottom:349.466667pt;}
.yf64_c00001{bottom:349.733333pt;}
.yd35_c00001{bottom:350.000000pt;}
.yef9_c00001{bottom:350.133333pt;}
.y28_c00001{bottom:350.266667pt;}
.yc10_c00001{bottom:350.400000pt;}
.y48c_c00001{bottom:350.666667pt;}
.y4d3_c00001{bottom:350.933333pt;}
.ya8e_c00001{bottom:351.066667pt;}
.y42b_c00001{bottom:351.600000pt;}
.y400_c00001{bottom:351.733333pt;}
.y639_c00001{bottom:352.000000pt;}
.yb86_c00001{bottom:352.533333pt;}
.y8ca_c00001{bottom:352.666667pt;}
.y97_c00001{bottom:352.800000pt;}
.y848_c00001{bottom:352.933333pt;}
.yab6_c00001{bottom:353.200000pt;}
.y291_c00001{bottom:353.333333pt;}
.ye07_c00001{bottom:353.466667pt;}
.y2ed_c00001{bottom:353.600000pt;}
.ycb_c00001{bottom:353.866667pt;}
.y316_c00001{bottom:354.133333pt;}
.ydee_c00001{bottom:354.533333pt;}
.yfa7_c00001{bottom:354.666667pt;}
.yc27_c00001{bottom:354.933333pt;}
.y1a0_c00001{bottom:355.200000pt;}
.y59e_c00001{bottom:355.466667pt;}
.ye91_c00001{bottom:355.733333pt;}
.y6d6_c00001{bottom:355.866667pt;}
.y37a_c00001{bottom:356.400000pt;}
.y106_c00001{bottom:356.533333pt;}
.y548_c00001{bottom:356.933333pt;}
.yf3d_c00001{bottom:357.333333pt;}
.y9e0_c00001{bottom:357.466667pt;}
.y809_c00001{bottom:357.733333pt;}
.ybda_c00001{bottom:358.133333pt;}
.yd58_c00001{bottom:358.400000pt;}
.y783_c00001{bottom:358.533333pt;}
.y29d_c00001{bottom:358.666667pt;}
.y51f_c00001{bottom:358.933333pt;}
.y6f5_c00001{bottom:359.066667pt;}
.yda5_c00001{bottom:359.200000pt;}
.y261_c00001{bottom:359.333333pt;}
.ye17_c00001{bottom:359.733333pt;}
.y79f_c00001{bottom:359.866667pt;}
.y8ea_c00001{bottom:360.000000pt;}
.y45c_c00001{bottom:360.266667pt;}
.y13e_c00001{bottom:360.666667pt;}
.y60d_c00001{bottom:360.933333pt;}
.yb26_c00001{bottom:361.333333pt;}
.y6ac_c00001{bottom:361.600000pt;}
.ya11_c00001{bottom:361.733333pt;}
.y5f_c00001{bottom:361.866667pt;}
.y964_c00001{bottom:362.000000pt;}
.y207_c00001{bottom:362.266667pt;}
.y16c_c00001{bottom:362.533333pt;}
.y3ac_c00001{bottom:362.933333pt;}
.y7c0_c00001{bottom:363.200000pt;}
.ya52_c00001{bottom:363.466667pt;}
.y237_c00001{bottom:363.600000pt;}
.y9a6_c00001{bottom:363.866667pt;}
.y4b1_c00001{bottom:364.133333pt;}
.y5bf_c00001{bottom:364.266667pt;}
.y82f_c00001{bottom:364.400000pt;}
.y971_c00001{bottom:364.533333pt;}
.y7e3_c00001{bottom:364.666667pt;}
.y638_c00001{bottom:364.800000pt;}
.y2c0_c00001{bottom:364.933333pt;}
.yc81_c00001{bottom:365.066667pt;}
.y349_c00001{bottom:365.200000pt;}
.yc3e_c00001{bottom:365.466667pt;}
.y9a5_c00001{bottom:365.733333pt;}
.yeb6_c00001{bottom:366.133333pt;}
.y27_c00001{bottom:366.266667pt;}
.ye47_c00001{bottom:366.400000pt;}
.y48b_c00001{bottom:366.666667pt;}
.yc26_c00001{bottom:366.800000pt;}
.y4d2_c00001{bottom:366.933333pt;}
.ye28_c00001{bottom:367.066667pt;}
.yca_c00001{bottom:367.333333pt;}
.y3ff_c00001{bottom:367.466667pt;}
.y887_c00001{bottom:367.733333pt;}
.y9c6_c00001{bottom:368.000000pt;}
.yb85_c00001{bottom:368.266667pt;}
.yfb8_c00001{bottom:368.400000pt;}
.yb0f_c00001{bottom:368.533333pt;}
.yc96_c00001{bottom:368.666667pt;}
.y379_c00001{bottom:368.933333pt;}
.y5eb_c00001{bottom:369.066667pt;}
.ye06_c00001{bottom:369.200000pt;}
.y2ec_c00001{bottom:369.600000pt;}
.y60c_c00001{bottom:369.866667pt;}
.ybd9_c00001{bottom:370.000000pt;}
.y315_c00001{bottom:370.133333pt;}
.yfa6_c00001{bottom:370.666667pt;}
.y689_c00001{bottom:370.933333pt;}
.ydd2_c00001{bottom:371.200000pt;}
.y19f_c00001{bottom:371.466667pt;}
.y96_c00001{bottom:371.733333pt;}
.y6d5_c00001{bottom:371.866667pt;}
.y79e_c00001{bottom:372.000000pt;}
.y901_c00001{bottom:372.133333pt;}
.y105_c00001{bottom:372.400000pt;}
.y547_c00001{bottom:372.666667pt;}
.y847_c00001{bottom:372.800000pt;}
.yf3c_c00001{bottom:373.066667pt;}
.y290_c00001{bottom:373.466667pt;}
.yded_c00001{bottom:373.733333pt;}
.y75c_c00001{bottom:373.866667pt;}
.y45b_c00001{bottom:374.000000pt;}
.yd67_c00001{bottom:374.133333pt;}
.yd57_c00001{bottom:374.400000pt;}
.yecd_c00001{bottom:374.533333pt;}
.y51e_c00001{bottom:374.666667pt;}
.y963_c00001{bottom:374.800000pt;}
.yda4_c00001{bottom:374.933333pt;}
.y86b_c00001{bottom:375.066667pt;}
.y8e9_c00001{bottom:375.333333pt;}
.yad3_c00001{bottom:375.733333pt;}
.y16b_c00001{bottom:376.000000pt;}
.ycf3_c00001{bottom:376.133333pt;}
.ye16_c00001{bottom:376.400000pt;}
.y4f7_c00001{bottom:376.533333pt;}
.y13d_c00001{bottom:376.666667pt;}
.yb56_c00001{bottom:376.933333pt;}
.y782_c00001{bottom:377.066667pt;}
.y6ab_c00001{bottom:377.333333pt;}
.y206_c00001{bottom:377.600000pt;}
.ya10_c00001{bottom:377.733333pt;}
.y1d8_c00001{bottom:377.866667pt;}
.y1027_c00001{bottom:378.266667pt;}
.yd18_c00001{bottom:378.533333pt;}
.y3ab_c00001{bottom:378.933333pt;}
.ya51_c00001{bottom:379.200000pt;}
.yc9_c00001{bottom:379.466667pt;}
.y236_c00001{bottom:379.600000pt;}
.y7bf_c00001{bottom:379.866667pt;}
.y4b0_c00001{bottom:380.133333pt;}
.y9f6_c00001{bottom:380.266667pt;}
.y82e_c00001{bottom:380.400000pt;}
.y65f_c00001{bottom:380.533333pt;}
.y637_c00001{bottom:380.800000pt;}
.y348_c00001{bottom:380.933333pt;}
.yc80_c00001{bottom:381.066667pt;}
.y7e2_c00001{bottom:381.333333pt;}
.ybcc_c00001{bottom:381.466667pt;}
.y5e_c00001{bottom:381.600000pt;}
.y378_c00001{bottom:381.733333pt;}
.yfff_c00001{bottom:382.000000pt;}
.y5be_c00001{bottom:382.133333pt;}
.y26_c00001{bottom:382.266667pt;}
.y48a_c00001{bottom:382.400000pt;}
.y4d1_c00001{bottom:382.666667pt;}
.ybd8_c00001{bottom:382.800000pt;}
.y42a_c00001{bottom:383.066667pt;}
.y3fe_c00001{bottom:383.466667pt;}
.yb9c_c00001{bottom:383.600000pt;}
.y886_c00001{bottom:383.733333pt;}
.y2bf_c00001{bottom:383.866667pt;}
.y9c5_c00001{bottom:384.000000pt;}
.y98c_c00001{bottom:384.266667pt;}
.yc95_c00001{bottom:384.533333pt;}
.yab5_c00001{bottom:384.666667pt;}
.y5ea_c00001{bottom:384.800000pt;}
.y8c9_c00001{bottom:384.933333pt;}
.yfc8_c00001{bottom:385.066667pt;}
.ye05_c00001{bottom:385.200000pt;}
.y2eb_c00001{bottom:385.600000pt;}
.y104_c00001{bottom:385.866667pt;}
.y95_c00001{bottom:386.133333pt;}
.yf85_c00001{bottom:386.400000pt;}
.y45a_c00001{bottom:386.533333pt;}
.yfa5_c00001{bottom:386.666667pt;}
.y1017_c00001{bottom:386.800000pt;}
.y688_c00001{bottom:386.933333pt;}
.y19e_c00001{bottom:387.200000pt;}
.ybc9_c00001{bottom:387.466667pt;}
.y6d4_c00001{bottom:387.600000pt;}
.y91b_c00001{bottom:387.866667pt;}
.yaf9_c00001{bottom:388.133333pt;}
.y546_c00001{bottom:388.400000pt;}
.y16a_c00001{bottom:388.533333pt;}
.yd7c_c00001{bottom:388.666667pt;}
.ye27_c00001{bottom:388.800000pt;}
.yd04_c00001{bottom:389.066667pt;}
.y28f_c00001{bottom:389.466667pt;}
.ydec_c00001{bottom:389.733333pt;}
.yd8f_c00001{bottom:389.866667pt;}
.y3d1_c00001{bottom:390.133333pt;}
.yfaf_c00001{bottom:390.400000pt;}
.y75b_c00001{bottom:390.533333pt;}
.y51d_c00001{bottom:390.666667pt;}
.yda3_c00001{bottom:390.933333pt;}
.y86a_c00001{bottom:391.066667pt;}
.y8a8_c00001{bottom:391.333333pt;}
.yad2_c00001{bottom:391.466667pt;}
.y260_c00001{bottom:391.733333pt;}
.y4f6_c00001{bottom:392.266667pt;}
.yc25_c00001{bottom:392.400000pt;}
.yc8_c00001{bottom:392.533333pt;}
.y572_c00001{bottom:392.666667pt;}
.ycf2_c00001{bottom:392.800000pt;}
.yb55_c00001{bottom:392.933333pt;}
.ycb8_c00001{bottom:393.066667pt;}
.y60b_c00001{bottom:393.333333pt;}
.y808_c00001{bottom:393.466667pt;}
.y1d7_c00001{bottom:393.600000pt;}
.y1026_c00001{bottom:394.000000pt;}
.yb41_c00001{bottom:394.266667pt;}
.y377_c00001{bottom:394.533333pt;}
.yc54_c00001{bottom:394.933333pt;}
.y7be_c00001{bottom:395.200000pt;}
.ye5e_c00001{bottom:395.466667pt;}
.y235_c00001{bottom:395.600000pt;}
.y4af_c00001{bottom:395.866667pt;}
.y13c_c00001{bottom:396.133333pt;}
.yfdf_c00001{bottom:396.266667pt;}
.y5bd_c00001{bottom:396.533333pt;}
.y347_c00001{bottom:396.666667pt;}
.ybeb_c00001{bottom:396.800000pt;}
.y636_c00001{bottom:397.066667pt;}
.y79d_c00001{bottom:397.333333pt;}
.y1007_c00001{bottom:397.466667pt;}
.y5d_c00001{bottom:397.600000pt;}
.y103_c00001{bottom:397.733333pt;}
.y25_c00001{bottom:398.000000pt;}
.yffe_c00001{bottom:398.266667pt;}
.y6f4_c00001{bottom:398.400000pt;}
.y489_c00001{bottom:398.666667pt;}
.y429_c00001{bottom:399.066667pt;}
.y3fd_c00001{bottom:399.200000pt;}
.y459_c00001{bottom:399.333333pt;}
.yb9b_c00001{bottom:399.600000pt;}
.y885_c00001{bottom:399.733333pt;}
.yce7_c00001{bottom:400.000000pt;}
.yb84_c00001{bottom:400.266667pt;}
.y5e9_c00001{bottom:400.533333pt;}
.y93d_c00001{bottom:400.666667pt;}
.y8c8_c00001{bottom:400.933333pt;}
.y169_c00001{bottom:401.333333pt;}
.y2ea_c00001{bottom:401.600000pt;}
.y94_c00001{bottom:401.866667pt;}
.ye24_c00001{bottom:402.266667pt;}
.yf84_c00001{bottom:402.400000pt;}
.yfa4_c00001{bottom:402.666667pt;}
.y3aa_c00001{bottom:402.933333pt;}
.y19d_c00001{bottom:403.200000pt;}
.y59d_c00001{bottom:403.466667pt;}
.y98b_c00001{bottom:403.600000pt;}
.y6d3_c00001{bottom:403.866667pt;}
.y545_c00001{bottom:404.133333pt;}
.yd7b_c00001{bottom:404.400000pt;}
.yf05_c00001{bottom:405.066667pt;}
.y900_c00001{bottom:405.333333pt;}
.y28e_c00001{bottom:405.466667pt;}
.yd8e_c00001{bottom:405.600000pt;}
.yd56_c00001{bottom:405.733333pt;}
.y3d0_c00001{bottom:406.133333pt;}
.y781_c00001{bottom:406.266667pt;}
.y51c_c00001{bottom:406.400000pt;}
.yecc_c00001{bottom:406.533333pt;}
.ybff_c00001{bottom:406.666667pt;}
.ydb8_c00001{bottom:406.933333pt;}
.y376_c00001{bottom:407.066667pt;}
.yc7_c00001{bottom:407.600000pt;}
.yad1_c00001{bottom:407.733333pt;}
.y4f5_c00001{bottom:408.266667pt;}
.y846_c00001{bottom:408.400000pt;}
.ycf1_c00001{bottom:408.533333pt;}
.ybd7_c00001{bottom:408.666667pt;}
.ya0f_c00001{bottom:408.800000pt;}
.yb54_c00001{bottom:408.933333pt;}
.y6aa_c00001{bottom:409.066667pt;}
.yf26_c00001{bottom:409.333333pt;}
.y1d6_c00001{bottom:409.600000pt;}
.y807_c00001{bottom:409.733333pt;}
.ydde_c00001{bottom:409.866667pt;}
.y1056_c00001{bottom:410.000000pt;}
.y79c_c00001{bottom:410.133333pt;}
.yb40_c00001{bottom:410.266667pt;}
.y102_c00001{bottom:410.533333pt;}
.ycc8_c00001{bottom:410.933333pt;}
.y869_c00001{bottom:411.066667pt;}
.ya95_c00001{bottom:411.200000pt;}
.y75a_c00001{bottom:411.333333pt;}
.y25f_c00001{bottom:411.466667pt;}
.yfde_c00001{bottom:411.600000pt;}
.y13b_c00001{bottom:411.733333pt;}
.y737_c00001{bottom:411.866667pt;}
.y458_c00001{bottom:412.133333pt;}
.y346_c00001{bottom:412.400000pt;}
.y9f5_c00001{bottom:412.533333pt;}
.y60a_c00001{bottom:412.800000pt;}
.yb25_c00001{bottom:413.066667pt;}
.y5c_c00001{bottom:413.333333pt;}
.ydeb_c00001{bottom:413.466667pt;}
.y24_c00001{bottom:413.733333pt;}
.y234_c00001{bottom:414.133333pt;}
.y2be_c00001{bottom:414.266667pt;}
.y488_c00001{bottom:414.400000pt;}
.yffd_c00001{bottom:414.533333pt;}
.ye26_c00001{bottom:414.666667pt;}
.y428_c00001{bottom:414.800000pt;}
.y7bd_c00001{bottom:414.933333pt;}
.ya63_c00001{bottom:415.066667pt;}
.y3fc_c00001{bottom:415.200000pt;}
.y82d_c00001{bottom:415.333333pt;}
.y9c4_c00001{bottom:415.600000pt;}
.y884_c00001{bottom:415.733333pt;}
.y5bc_c00001{bottom:416.000000pt;}
.ye80_c00001{bottom:416.133333pt;}
.yab4_c00001{bottom:416.266667pt;}
.ybea_c00001{bottom:416.400000pt;}
.y5e8_c00001{bottom:416.533333pt;}
.y8c7_c00001{bottom:416.666667pt;}
.yc3d_c00001{bottom:416.933333pt;}
.ya8d_c00001{bottom:417.200000pt;}
.y2e9_c00001{bottom:417.600000pt;}
.y93_c00001{bottom:417.866667pt;}
.y687_c00001{bottom:418.266667pt;}
.yf83_c00001{bottom:418.400000pt;}
.y3a9_c00001{bottom:418.666667pt;}
.ycd6_c00001{bottom:418.933333pt;}
.ye90_c00001{bottom:419.200000pt;}
.y59c_c00001{bottom:419.466667pt;}
.y375_c00001{bottom:419.866667pt;}
.y544_c00001{bottom:420.133333pt;}
.y8ff_c00001{bottom:420.400000pt;}
.y28d_c00001{bottom:420.800000pt;}
.y9f4_c00001{bottom:421.066667pt;}
.yd03_c00001{bottom:421.466667pt;}
.yd8d_c00001{bottom:421.600000pt;}
.ybd6_c00001{bottom:421.733333pt;}
.y51b_c00001{bottom:422.133333pt;}
.yecb_c00001{bottom:422.266667pt;}
.yc6b_c00001{bottom:422.400000pt;}
.y759_c00001{bottom:422.533333pt;}
.y79b_c00001{bottom:422.666667pt;}
.y19c_c00001{bottom:422.933333pt;}
.y101_c00001{bottom:423.066667pt;}
.y8e8_c00001{bottom:423.333333pt;}
.yf5b_c00001{bottom:423.600000pt;}
.y457_c00001{bottom:424.000000pt;}
.y571_c00001{bottom:424.266667pt;}
.yc0f_c00001{bottom:424.533333pt;}
.y845_c00001{bottom:424.666667pt;}
.y717_c00001{bottom:424.800000pt;}
.y1d5_c00001{bottom:424.933333pt;}
.y6a9_c00001{bottom:425.066667pt;}
.y806_c00001{bottom:425.466667pt;}
.y6d2_c00001{bottom:425.600000pt;}
.yeab_c00001{bottom:426.133333pt;}
.yc53_c00001{bottom:426.266667pt;}
.y962_c00001{bottom:426.400000pt;}
.ya94_c00001{bottom:426.933333pt;}
.y868_c00001{bottom:427.066667pt;}
.ycb1_c00001{bottom:427.200000pt;}
.y25e_c00001{bottom:427.466667pt;}
.y233_c00001{bottom:427.866667pt;}
.y13a_c00001{bottom:428.000000pt;}
.y345_c00001{bottom:428.133333pt;}
.y9a4_c00001{bottom:428.266667pt;}
.y635_c00001{bottom:428.400000pt;}
.y609_c00001{bottom:428.800000pt;}
.y5b_c00001{bottom:429.066667pt;}
.y9df_c00001{bottom:429.333333pt;}
.y205_c00001{bottom:429.733333pt;}
.yf19_c00001{bottom:430.000000pt;}
.y487_c00001{bottom:430.133333pt;}
.yc6_c00001{bottom:430.400000pt;}
.y427_c00001{bottom:430.800000pt;}
.y3fb_c00001{bottom:430.933333pt;}
.yb0e_c00001{bottom:431.066667pt;}
.y82c_c00001{bottom:431.333333pt;}
.y2bd_c00001{bottom:431.600000pt;}
.ye7f_c00001{bottom:431.866667pt;}
.y9f3_c00001{bottom:432.000000pt;}
.y5e7_c00001{bottom:432.266667pt;}
.y1006_c00001{bottom:432.533333pt;}
.y374_c00001{bottom:432.666667pt;}
.y8c6_c00001{bottom:432.933333pt;}
.y2e8_c00001{bottom:433.333333pt;}
.y314_c00001{bottom:433.866667pt;}
.y23_c00001{bottom:434.000000pt;}
.y686_c00001{bottom:434.266667pt;}
.ybd5_c00001{bottom:434.533333pt;}
.yfa3_c00001{bottom:434.666667pt;}
.yb77_c00001{bottom:434.800000pt;}
.y3a8_c00001{bottom:434.933333pt;}
.yf82_c00001{bottom:435.066667pt;}
.y98a_c00001{bottom:435.200000pt;}
.yab3_c00001{bottom:435.333333pt;}
.y59b_c00001{bottom:435.466667pt;}
.y91a_c00001{bottom:435.600000pt;}
.y65e_c00001{bottom:435.866667pt;}
.y1016_c00001{bottom:436.000000pt;}
.y8fe_c00001{bottom:436.133333pt;}
.y28c_c00001{bottom:436.533333pt;}
.yae7_c00001{bottom:436.800000pt;}
.y92_c00001{bottom:437.066667pt;}
.yd8c_c00001{bottom:437.333333pt;}
.y456_c00001{bottom:437.466667pt;}
.yd34_c00001{bottom:437.733333pt;}
.y168_c00001{bottom:438.000000pt;}
.y51a_c00001{bottom:438.133333pt;}
.y758_c00001{bottom:438.266667pt;}
.y6d1_c00001{bottom:438.400000pt;}
.yc6a_c00001{bottom:438.666667pt;}
.yad0_c00001{bottom:438.933333pt;}
.y8e7_c00001{bottom:439.066667pt;}
.y19b_c00001{bottom:439.200000pt;}
.y93c_c00001{bottom:439.333333pt;}
.y961_c00001{bottom:439.466667pt;}
.yf5a_c00001{bottom:439.866667pt;}
.y4f4_c00001{bottom:440.000000pt;}
.y570_c00001{bottom:440.400000pt;}
.y716_c00001{bottom:440.533333pt;}
.y1d4_c00001{bottom:440.666667pt;}
.y6a8_c00001{bottom:440.800000pt;}
.yb53_c00001{bottom:440.933333pt;}
.ye23_c00001{bottom:441.200000pt;}
.ydb7_c00001{bottom:441.333333pt;}
.y805_c00001{bottom:441.466667pt;}
.ye46_c00001{bottom:441.600000pt;}
.yeaa_c00001{bottom:441.866667pt;}
.ye25_c00001{bottom:442.266667pt;}
.yc3c_c00001{bottom:442.533333pt;}
.yf25_c00001{bottom:442.933333pt;}
.yc5_c00001{bottom:443.066667pt;}
.y232_c00001{bottom:443.200000pt;}
.y25d_c00001{bottom:443.466667pt;}
.y139_c00001{bottom:443.733333pt;}
.y344_c00001{bottom:443.866667pt;}
.y634_c00001{bottom:444.133333pt;}
.y7e1_c00001{bottom:444.533333pt;}
.yfd6_c00001{bottom:444.800000pt;}
.y9a3_c00001{bottom:444.933333pt;}
.y5a_c00001{bottom:445.066667pt;}
.y373_c00001{bottom:445.200000pt;}
.y2bc_c00001{bottom:445.333333pt;}
.yddd_c00001{bottom:445.466667pt;}
.y204_c00001{bottom:445.733333pt;}
.y6f3_c00001{bottom:445.866667pt;}
.y867_c00001{bottom:446.000000pt;}
.y486_c00001{bottom:446.133333pt;}
.y4d0_c00001{bottom:446.400000pt;}
.y426_c00001{bottom:446.533333pt;}
.y3fa_c00001{bottom:446.666667pt;}
.yb69_c00001{bottom:446.800000pt;}
.y7bc_c00001{bottom:446.933333pt;}
.y543_c00001{bottom:447.066667pt;}
.y9c3_c00001{bottom:447.333333pt;}
.yb9a_c00001{bottom:447.600000pt;}
.ye5d_c00001{bottom:447.733333pt;}
.ye7e_c00001{bottom:447.866667pt;}
.y5e6_c00001{bottom:448.000000pt;}
.yc94_c00001{bottom:448.266667pt;}
.y1005_c00001{bottom:448.800000pt;}
.y22_c00001{bottom:449.333333pt;}
.ya50_c00001{bottom:449.600000pt;}
.yef1_c00001{bottom:449.733333pt;}
.y455_c00001{bottom:449.866667pt;}
.y3a7_c00001{bottom:450.266667pt;}
.y94c_c00001{bottom:450.533333pt;}
.yf81_c00001{bottom:450.800000pt;}
.y919_c00001{bottom:450.933333pt;}
.yb76_c00001{bottom:451.066667pt;}
.y59a_c00001{bottom:451.200000pt;}
.yab2_c00001{bottom:451.333333pt;}
.y6d0_c00001{bottom:451.866667pt;}
.y8c5_c00001{bottom:452.133333pt;}
.y960_c00001{bottom:452.266667pt;}
.ye04_c00001{bottom:452.533333pt;}
.yeb5_c00001{bottom:452.800000pt;}
.y1015_c00001{bottom:452.933333pt;}
.ya8c_c00001{bottom:453.066667pt;}
.yd8b_c00001{bottom:453.333333pt;}
.yd33_c00001{bottom:453.466667pt;}
.y91_c00001{bottom:453.733333pt;}
.y519_c00001{bottom:453.866667pt;}
.y313_c00001{bottom:454.000000pt;}
.y757_c00001{bottom:454.266667pt;}
.y989_c00001{bottom:454.400000pt;}
.y19a_c00001{bottom:454.533333pt;}
.ybfe_c00001{bottom:454.666667pt;}
.ye9d_c00001{bottom:454.933333pt;}
.y8e6_c00001{bottom:455.066667pt;}
.yf62_c00001{bottom:455.333333pt;}
.y65d_c00001{bottom:455.600000pt;}
.y56f_c00001{bottom:455.733333pt;}
.y4f3_c00001{bottom:456.000000pt;}
.ye6c_c00001{bottom:456.133333pt;}
.y715_c00001{bottom:456.266667pt;}
.y28b_c00001{bottom:456.400000pt;}
.yc4_c00001{bottom:456.533333pt;}
.y970_c00001{bottom:456.666667pt;}
.y6a7_c00001{bottom:456.800000pt;}
.yb52_c00001{bottom:456.933333pt;}
.y1d3_c00001{bottom:457.333333pt;}
.y804_c00001{bottom:457.466667pt;}
.ycc7_c00001{bottom:457.733333pt;}
.y167_c00001{bottom:457.866667pt;}
.y372_c00001{bottom:458.000000pt;}
.yc52_c00001{bottom:458.533333pt;}
.y866_c00001{bottom:458.800000pt;}
.ycb0_c00001{bottom:458.933333pt;}
.y25c_c00001{bottom:459.200000pt;}
.y343_c00001{bottom:459.466667pt;}
.y138_c00001{bottom:459.733333pt;}
.y633_c00001{bottom:459.866667pt;}
.y9a2_c00001{bottom:460.000000pt;}
.y685_c00001{bottom:460.133333pt;}
.yb3f_c00001{bottom:460.400000pt;}
.y7e0_c00001{bottom:460.533333pt;}
.y82b_c00001{bottom:460.666667pt;}
.y59_c00001{bottom:461.066667pt;}
.y2bb_c00001{bottom:461.600000pt;}
.y3cf_c00001{bottom:461.733333pt;}
.y6f2_c00001{bottom:461.866667pt;}
.y542_c00001{bottom:462.133333pt;}
.y4cf_c00001{bottom:462.400000pt;}
.y425_c00001{bottom:462.533333pt;}
.y3f9_c00001{bottom:462.666667pt;}
.yb68_c00001{bottom:462.800000pt;}
.ydb6_c00001{bottom:462.933333pt;}
.y94b_c00001{bottom:463.066667pt;}
.y5bb_c00001{bottom:463.333333pt;}
.ye7d_c00001{bottom:463.600000pt;}
.y5e5_c00001{bottom:463.733333pt;}
.ya3b_c00001{bottom:464.000000pt;}
.y1041_c00001{bottom:464.133333pt;}
.y454_c00001{bottom:464.266667pt;}
.y1004_c00001{bottom:464.533333pt;}
.yf8e_c00001{bottom:464.666667pt;}
.ydd1_c00001{bottom:464.800000pt;}
.y21_c00001{bottom:464.933333pt;}
.y2e7_c00001{bottom:465.066667pt;}
.y203_c00001{bottom:465.333333pt;}
.y684_c00001{bottom:465.600000pt;}
.y8a7_c00001{bottom:465.733333pt;}
.yd17_c00001{bottom:465.866667pt;}
.y3a6_c00001{bottom:466.266667pt;}
.ye22_c00001{bottom:466.533333pt;}
.y82a_c00001{bottom:466.800000pt;}
.yfa2_c00001{bottom:466.933333pt;}
.yab1_c00001{bottom:467.066667pt;}
.y599_c00001{bottom:467.200000pt;}
.y8b0_c00001{bottom:467.866667pt;}
.y8c4_c00001{bottom:468.133333pt;}
.ye03_c00001{bottom:468.266667pt;}
.yb83_c00001{bottom:468.533333pt;}
.yddc_c00001{bottom:468.800000pt;}
.y485_c00001{bottom:468.933333pt;}
.yc3_c00001{bottom:469.066667pt;}
.yd32_c00001{bottom:469.466667pt;}
.y90_c00001{bottom:469.733333pt;}
.y518_c00001{bottom:469.866667pt;}
.y312_c00001{bottom:470.000000pt;}
.yee7_c00001{bottom:470.133333pt;}
.y756_c00001{bottom:470.266667pt;}
.y918_c00001{bottom:470.400000pt;}
.y199_c00001{bottom:470.533333pt;}
.yc69_c00001{bottom:470.666667pt;}
.y371_c00001{bottom:470.800000pt;}
.yfa_c00001{bottom:471.066667pt;}
.y1014_c00001{bottom:471.466667pt;}
.y65c_c00001{bottom:471.600000pt;}
.y100_c00001{bottom:471.733333pt;}
.y1d2_c00001{bottom:472.000000pt;}
.ye6b_c00001{bottom:472.133333pt;}
.y714_c00001{bottom:472.266667pt;}
.y6a6_c00001{bottom:472.533333pt;}
.y6cf_c00001{bottom:472.666667pt;}
.ye32_c00001{bottom:472.933333pt;}
.y28a_c00001{bottom:473.066667pt;}
.y803_c00001{bottom:473.200000pt;}
.yf50_c00001{bottom:473.466667pt;}
.y79a_c00001{bottom:473.600000pt;}
.ycc6_c00001{bottom:474.000000pt;}
.yc51_c00001{bottom:474.266667pt;}
.y865_c00001{bottom:474.533333pt;}
.ycaf_c00001{bottom:474.666667pt;}
.y988_c00001{bottom:474.800000pt;}
.y231_c00001{bottom:474.933333pt;}
.y4ae_c00001{bottom:475.200000pt;}
.y342_c00001{bottom:475.466667pt;}
.y137_c00001{bottom:475.733333pt;}
.y844_c00001{bottom:475.866667pt;}
.y9a1_c00001{bottom:476.000000pt;}
.yb3e_c00001{bottom:476.133333pt;}
.y7df_c00001{bottom:476.533333pt;}
.yf24_c00001{bottom:476.666667pt;}
.yeca_c00001{bottom:476.800000pt;}
.y9de_c00001{bottom:477.066667pt;}
.y166_c00001{bottom:477.466667pt;}
.y2ba_c00001{bottom:477.600000pt;}
.yf18_c00001{bottom:477.733333pt;}
.y6f1_c00001{bottom:477.866667pt;}
.yf61_c00001{bottom:478.133333pt;}
.y58_c00001{bottom:478.400000pt;}
.y424_c00001{bottom:478.533333pt;}
.y25b_c00001{bottom:478.800000pt;}
.y5e4_c00001{bottom:479.066667pt;}
.yb99_c00001{bottom:479.333333pt;}
.ydb5_c00001{bottom:479.600000pt;}
.yf63_c00001{bottom:479.733333pt;}
.yb24_c00001{bottom:480.000000pt;}
.y1040_c00001{bottom:480.133333pt;}
.yaf8_c00001{bottom:480.266667pt;}
.yc24_c00001{bottom:480.533333pt;}
.ydd0_c00001{bottom:480.800000pt;}
.y20_c00001{bottom:480.933333pt;}
.y202_c00001{bottom:481.333333pt;}
.y8a6_c00001{bottom:481.466667pt;}
.yc2_c00001{bottom:481.600000pt;}
.yef0_c00001{bottom:481.733333pt;}
.y3a5_c00001{bottom:481.866667pt;}
.yee6_c00001{bottom:482.000000pt;}
.y104e_c00001{bottom:482.266667pt;}
.y829_c00001{bottom:482.533333pt;}
.y5ba_c00001{bottom:482.800000pt;}
.yff_c00001{bottom:482.933333pt;}
.y883_c00001{bottom:483.200000pt;}
.ya3a_c00001{bottom:483.466667pt;}
.y370_c00001{bottom:483.600000pt;}
.y6ce_c00001{bottom:483.866667pt;}
.yf9_c00001{bottom:484.133333pt;}
.ye02_c00001{bottom:484.266667pt;}
.yd8a_c00001{bottom:484.800000pt;}
.y453_c00001{bottom:484.933333pt;}
.yfb7_c00001{bottom:485.066667pt;}
.yae6_c00001{bottom:485.466667pt;}
.y311_c00001{bottom:485.733333pt;}
.y517_c00001{bottom:485.866667pt;}
.y8f_c00001{bottom:486.000000pt;}
.y799_c00001{bottom:486.133333pt;}
.yacf_c00001{bottom:486.266667pt;}
.y917_c00001{bottom:486.400000pt;}
.y198_c00001{bottom:486.800000pt;}
.ybc8_c00001{bottom:487.066667pt;}
.y65b_c00001{bottom:487.333333pt;}
.yf3b_c00001{bottom:487.466667pt;}
.y9f2_c00001{bottom:487.733333pt;}
.yf59_c00001{bottom:487.866667pt;}
.ye6a_c00001{bottom:488.133333pt;}
.y6a5_c00001{bottom:488.266667pt;}
.ya0e_c00001{bottom:488.533333pt;}
.yc7f_c00001{bottom:488.666667pt;}
.y802_c00001{bottom:488.933333pt;}
.y289_c00001{bottom:489.333333pt;}
.yf4f_c00001{bottom:489.466667pt;}
.yccb_c00001{bottom:489.600000pt;}
.y1025_c00001{bottom:489.866667pt;}
.yfc7_c00001{bottom:490.266667pt;}
.y95f_c00001{bottom:490.400000pt;}
.y987_c00001{bottom:490.533333pt;}
.y93b_c00001{bottom:490.800000pt;}
.ya8b_c00001{bottom:491.200000pt;}
.y341_c00001{bottom:491.466667pt;}
.y56e_c00001{bottom:491.600000pt;}
.y136_c00001{bottom:491.733333pt;}
.yce6_c00001{bottom:491.866667pt;}
.yf23_c00001{bottom:492.000000pt;}
.y8c3_c00001{bottom:492.133333pt;}
.ye31_c00001{bottom:492.400000pt;}
.ycae_c00001{bottom:492.533333pt;}
.yec9_c00001{bottom:492.666667pt;}
.y9dd_c00001{bottom:492.800000pt;}
.ye45_c00001{bottom:493.066667pt;}
.y57_c00001{bottom:493.466667pt;}
.y2b9_c00001{bottom:493.600000pt;}
.yc3b_c00001{bottom:493.733333pt;}
.y4ce_c00001{bottom:493.866667pt;}
.yb3d_c00001{bottom:494.000000pt;}
.y423_c00001{bottom:494.266667pt;}
.yc1_c00001{bottom:494.400000pt;}
.y4ad_c00001{bottom:494.533333pt;}
.y7de_c00001{bottom:494.666667pt;}
.y25a_c00001{bottom:494.800000pt;}
.y8fd_c00001{bottom:494.933333pt;}
.y5e3_c00001{bottom:495.066667pt;}
.y4f2_c00001{bottom:495.200000pt;}
.ycf0_c00001{bottom:495.333333pt;}
.yd02_c00001{bottom:495.600000pt;}
.yfc_c00001{bottom:496.000000pt;}
.y103f_c00001{bottom:496.133333pt;}
.yaf7_c00001{bottom:496.266667pt;}
.y36f_c00001{bottom:496.666667pt;}
.ydcf_c00001{bottom:496.800000pt;}
.y1f_c00001{bottom:496.933333pt;}
.y2e6_c00001{bottom:497.066667pt;}
.y165_c00001{bottom:497.333333pt;}
.y8a5_c00001{bottom:497.466667pt;}
.y3a4_c00001{bottom:497.600000pt;}
.yb98_c00001{bottom:497.866667pt;}
.y6cd_c00001{bottom:498.000000pt;}
.yd16_c00001{bottom:498.133333pt;}
.y3f8_c00001{bottom:498.266667pt;}
.y632_c00001{bottom:498.400000pt;}
.y828_c00001{bottom:498.533333pt;}
.yab0_c00001{bottom:498.800000pt;}
.y798_c00001{bottom:498.933333pt;}
.y598_c00001{bottom:499.200000pt;}
.yc93_c00001{bottom:499.600000pt;}
.y608_c00001{bottom:499.866667pt;}
.ybfd_c00001{bottom:500.133333pt;}
.y452_c00001{bottom:500.266667pt;}
.yd89_c00001{bottom:500.400000pt;}
.ye21_c00001{bottom:500.533333pt;}
.y484_c00001{bottom:500.666667pt;}
.yae5_c00001{bottom:500.800000pt;}
.y310_c00001{bottom:501.466667pt;}
.y516_c00001{bottom:501.600000pt;}
.y8e_c00001{bottom:501.733333pt;}
.y755_c00001{bottom:502.000000pt;}
.y916_c00001{bottom:502.133333pt;}
.ybc7_c00001{bottom:502.400000pt;}
.y197_c00001{bottom:502.533333pt;}
.y5b9_c00001{bottom:502.666667pt;}
.yf80_c00001{bottom:502.800000pt;}
.y65a_c00001{bottom:503.333333pt;}
.y95e_c00001{bottom:503.466667pt;}
.yf58_c00001{bottom:503.600000pt;}
.ye69_c00001{bottom:503.866667pt;}
.y6a4_c00001{bottom:504.000000pt;}
.y288_c00001{bottom:504.266667pt;}
.yf3a_c00001{bottom:504.400000pt;}
.y201_c00001{bottom:504.533333pt;}
.ya0d_c00001{bottom:504.800000pt;}
.y230_c00001{bottom:505.333333pt;}
.yf4e_c00001{bottom:505.466667pt;}
.ycd5_c00001{bottom:505.600000pt;}
.yfc6_c00001{bottom:505.866667pt;}
.ya83_c00001{bottom:506.000000pt;}
.y1024_c00001{bottom:506.266667pt;}
.yc3a_c00001{bottom:506.533333pt;}
.y93a_c00001{bottom:506.800000pt;}
.y9f1_c00001{bottom:506.933333pt;}
.ye15_c00001{bottom:507.200000pt;}
.yc0_c00001{bottom:507.466667pt;}
.y801_c00001{bottom:507.600000pt;}
.ya8a_c00001{bottom:507.733333pt;}
.y56d_c00001{bottom:507.866667pt;}
.y135_c00001{bottom:508.000000pt;}
.yc7e_c00001{bottom:508.133333pt;}
.y8c2_c00001{bottom:508.400000pt;}
.yfe_c00001{bottom:508.533333pt;}
.y7ba_c00001{bottom:508.800000pt;}
.y2b8_c00001{bottom:508.933333pt;}
.y56_c00001{bottom:509.066667pt;}
.y6f0_c00001{bottom:509.333333pt;}
.yea9_c00001{bottom:509.466667pt;}
.yf8_c00001{bottom:509.733333pt;}
.yffc_c00001{bottom:510.133333pt;}
.y422_c00001{bottom:510.266667pt;}
.yb0d_c00001{bottom:510.400000pt;}
.y4ac_c00001{bottom:510.533333pt;}
.y8fc_c00001{bottom:510.666667pt;}
.y259_c00001{bottom:510.800000pt;}
.yd55_c00001{bottom:510.933333pt;}
.y340_c00001{bottom:511.066667pt;}
.y4f1_c00001{bottom:511.200000pt;}
.yd01_c00001{bottom:511.333333pt;}
.y797_c00001{bottom:511.600000pt;}
.yb23_c00001{bottom:511.733333pt;}
.y103e_c00001{bottom:511.866667pt;}
.y7dd_c00001{bottom:512.000000pt;}
.y9dc_c00001{bottom:512.266667pt;}
.ydce_c00001{bottom:512.533333pt;}
.yf54_c00001{bottom:512.666667pt;}
.ya4f_c00001{bottom:512.800000pt;}
.y1e_c00001{bottom:512.933333pt;}
.y2e5_c00001{bottom:513.066667pt;}
.y3a3_c00001{bottom:513.333333pt;}
.y8a4_c00001{bottom:513.466667pt;}
.y683_c00001{bottom:513.600000pt;}
.yd15_c00001{bottom:513.866667pt;}
.y7bb_c00001{bottom:514.266667pt;}
.y631_c00001{bottom:514.400000pt;}
.yaaf_c00001{bottom:514.533333pt;}
.yb75_c00001{bottom:514.800000pt;}
.y3f7_c00001{bottom:514.933333pt;}
.ya39_c00001{bottom:515.200000pt;}
.ya38_c00001{bottom:515.466667pt;}
.y607_c00001{bottom:515.600000pt;}
.yb97_c00001{bottom:515.866667pt;}
.ye01_c00001{bottom:516.000000pt;}
.y843_c00001{bottom:516.133333pt;}
.yd88_c00001{bottom:516.400000pt;}
.y3ce_c00001{bottom:516.533333pt;}
.y483_c00001{bottom:516.666667pt;}
.y164_c00001{bottom:516.800000pt;}
.ybd4_c00001{bottom:517.200000pt;}
.y30f_c00001{bottom:517.333333pt;}
.y515_c00001{bottom:517.600000pt;}
.y8d_c00001{bottom:517.733333pt;}
.yace_c00001{bottom:518.000000pt;}
.y864_c00001{bottom:518.133333pt;}
.y8e5_c00001{bottom:518.266667pt;}
.y827_c00001{bottom:518.400000pt;}
.y196_c00001{bottom:518.533333pt;}
.yce5_c00001{bottom:518.933333pt;}
.yf39_c00001{bottom:519.066667pt;}
.y659_c00001{bottom:519.333333pt;}
.yb3c_c00001{bottom:519.600000pt;}
.ye54_c00001{bottom:519.733333pt;}
.y1d1_c00001{bottom:520.000000pt;}
.ybf_c00001{bottom:520.266667pt;}
.y200_c00001{bottom:520.533333pt;}
.yfb6_c00001{bottom:520.666667pt;}
.yf4d_c00001{bottom:521.466667pt;}
.ye9c_c00001{bottom:521.600000pt;}
.y36e_c00001{bottom:521.866667pt;}
.y6cc_c00001{bottom:522.266667pt;}
.yf7_c00001{bottom:522.533333pt;}
.y939_c00001{bottom:522.800000pt;}
.y541_c00001{bottom:522.933333pt;}
.y9f0_c00001{bottom:523.200000pt;}
.y736_c00001{bottom:523.466667pt;}
.y56c_c00001{bottom:523.600000pt;}
.y800_c00001{bottom:523.866667pt;}
.y796_c00001{bottom:524.133333pt;}
.y8c1_c00001{bottom:524.400000pt;}
.yd31_c00001{bottom:524.533333pt;}
.y55_c00001{bottom:524.666667pt;}
.yfd5_c00001{bottom:524.800000pt;}
.y2b7_c00001{bottom:525.200000pt;}
.y6ef_c00001{bottom:525.333333pt;}
.yf60_c00001{bottom:525.466667pt;}
.y134_c00001{bottom:525.600000pt;}
.yffb_c00001{bottom:526.133333pt;}
.y421_c00001{bottom:526.266667pt;}
.y8fb_c00001{bottom:526.400000pt;}
.y258_c00001{bottom:526.533333pt;}
.y9c2_c00001{bottom:526.666667pt;}
.y5e2_c00001{bottom:526.800000pt;}
.y22f_c00001{bottom:526.933333pt;}
.y33f_c00001{bottom:527.066667pt;}
.y4cd_c00001{bottom:527.200000pt;}
.ydea_c00001{bottom:527.333333pt;}
.yb22_c00001{bottom:527.466667pt;}
.y7dc_c00001{bottom:527.600000pt;}
.yaf6_c00001{bottom:528.000000pt;}
.y9db_c00001{bottom:528.266667pt;}
.y1003_c00001{bottom:528.400000pt;}
.yddb_c00001{bottom:528.533333pt;}
.ybe9_c00001{bottom:528.666667pt;}
.y2e4_c00001{bottom:528.800000pt;}
.y1d_c00001{bottom:528.933333pt;}
.y95d_c00001{bottom:529.066667pt;}
.y8a3_c00001{bottom:529.200000pt;}
.y682_c00001{bottom:529.333333pt;}
.y630_c00001{bottom:529.466667pt;}
.yc50_c00001{bottom:529.600000pt;}
.yd14_c00001{bottom:529.866667pt;}
.yb0c_c00001{bottom:530.133333pt;}
.y104d_c00001{bottom:530.266667pt;}
.yaae_c00001{bottom:530.533333pt;}
.y1054_c00001{bottom:530.800000pt;}
.y3f6_c00001{bottom:530.933333pt;}
.yfd_c00001{bottom:531.200000pt;}
.y606_c00001{bottom:531.333333pt;}
.y451_c00001{bottom:531.466667pt;}
.y9a0_c00001{bottom:531.600000pt;}
.yb96_c00001{bottom:531.866667pt;}
.ye00_c00001{bottom:532.000000pt;}
.ycad_c00001{bottom:532.133333pt;}
.y482_c00001{bottom:532.400000pt;}
.y3cd_c00001{bottom:532.533333pt;}
.y7b9_c00001{bottom:532.800000pt;}
.y8c_c00001{bottom:533.066667pt;}
.y514_c00001{bottom:533.333333pt;}
.yacd_c00001{bottom:533.733333pt;}
.ybfc_c00001{bottom:533.866667pt;}
.y754_c00001{bottom:534.000000pt;}
.y863_c00001{bottom:534.133333pt;}
.y8e4_c00001{bottom:534.266667pt;}
.y36d_c00001{bottom:534.400000pt;}
.y658_c00001{bottom:534.666667pt;}
.y195_c00001{bottom:534.800000pt;}
.ya37_c00001{bottom:534.933333pt;}
.yf38_c00001{bottom:535.066667pt;}
.yfb_c00001{bottom:535.333333pt;}
.yf6_c00001{bottom:535.466667pt;}
.y1d0_c00001{bottom:535.733333pt;}
.y287_c00001{bottom:535.866667pt;}
.y6cb_c00001{bottom:536.000000pt;}
.yd54_c00001{bottom:536.266667pt;}
.y163_c00001{bottom:536.666667pt;}
.y1ff_c00001{bottom:536.800000pt;}
.y3a2_c00001{bottom:536.933333pt;}
.yf57_c00001{bottom:537.200000pt;}
.ye9b_c00001{bottom:537.333333pt;}
.yd2f_c00001{bottom:537.466667pt;}
.y915_c00001{bottom:537.866667pt;}
.y540_c00001{bottom:538.533333pt;}
.ybb3_c00001{bottom:538.800000pt;}
.y9ef_c00001{bottom:538.933333pt;}
.y842_c00001{bottom:539.200000pt;}
.y56b_c00001{bottom:539.333333pt;}
.y735_c00001{bottom:539.466667pt;}
.ya62_c00001{bottom:539.600000pt;}
.y133_c00001{bottom:539.733333pt;}
.yc7d_c00001{bottom:539.866667pt;}
.y8c0_c00001{bottom:540.133333pt;}
.y2b6_c00001{bottom:540.533333pt;}
.y54_c00001{bottom:540.666667pt;}
.ycd4_c00001{bottom:540.800000pt;}
.y6ee_c00001{bottom:541.066667pt;}
.yea8_c00001{bottom:541.200000pt;}
.y780_c00001{bottom:541.333333pt;}
.yf5f_c00001{bottom:541.733333pt;}
.yffa_c00001{bottom:541.866667pt;}
.y420_c00001{bottom:542.000000pt;}
.y95c_c00001{bottom:542.133333pt;}
.y4ab_c00001{bottom:542.266667pt;}
.y9c1_c00001{bottom:542.400000pt;}
.y257_c00001{bottom:542.533333pt;}
.y22e_c00001{bottom:542.666667pt;}
.yfdd_c00001{bottom:543.066667pt;}
.yaf5_c00001{bottom:543.333333pt;}
.y7ff_c00001{bottom:543.466667pt;}
.y7db_c00001{bottom:543.600000pt;}
.yb82_c00001{bottom:543.733333pt;}
.y9da_c00001{bottom:544.000000pt;}
.ydcd_c00001{bottom:544.266667pt;}
.y2e3_c00001{bottom:544.533333pt;}
.y1c_c00001{bottom:544.666667pt;}
.yb3b_c00001{bottom:544.933333pt;}
.y8a2_c00001{bottom:545.200000pt;}
.y62f_c00001{bottom:545.466667pt;}
.yd13_c00001{bottom:545.600000pt;}
.yc23_c00001{bottom:545.733333pt;}
.ybe_c00001{bottom:545.866667pt;}
.yaad_c00001{bottom:546.266667pt;}
.yb51_c00001{bottom:546.533333pt;}
.y33e_c00001{bottom:546.666667pt;}
.y597_c00001{bottom:546.933333pt;}
.y605_c00001{bottom:547.066667pt;}
.y36c_c00001{bottom:547.200000pt;}
.y99f_c00001{bottom:547.333333pt;}
.yec5_c00001{bottom:547.466667pt;}
.ydff_c00001{bottom:547.733333pt;}
.y6ca_c00001{bottom:547.866667pt;}
.y680_c00001{bottom:548.133333pt;}
.y481_c00001{bottom:548.400000pt;}
.yf5_c00001{bottom:548.533333pt;}
.y753_c00001{bottom:548.666667pt;}
.yc92_c00001{bottom:548.800000pt;}
.y8b_c00001{bottom:549.066667pt;}
.y30e_c00001{bottom:549.333333pt;}
.y8fa_c00001{bottom:549.733333pt;}
.ybfb_c00001{bottom:549.866667pt;}
.y882_c00001{bottom:550.000000pt;}
.y194_c00001{bottom:550.133333pt;}
.y8e3_c00001{bottom:550.266667pt;}
.y657_c00001{bottom:550.400000pt;}
.ya36_c00001{bottom:550.666667pt;}
.yf7f_c00001{bottom:550.800000pt;}
.y450_c00001{bottom:550.933333pt;}
.yd00_c00001{bottom:551.066667pt;}
.ye68_c00001{bottom:551.333333pt;}
.y286_c00001{bottom:551.600000pt;}
.y713_c00001{bottom:551.733333pt;}
.ya0c_c00001{bottom:551.866667pt;}
.ya82_c00001{bottom:552.266667pt;}
.y1fe_c00001{bottom:552.533333pt;}
.y3a1_c00001{bottom:552.666667pt;}
.yf4c_c00001{bottom:553.200000pt;}
.ye9a_c00001{bottom:553.333333pt;}
.yd2e_c00001{bottom:553.466667pt;}
.yc0e_c00001{bottom:553.600000pt;}
.y914_c00001{bottom:553.866667pt;}
.ya28_c00001{bottom:554.533333pt;}
.yda2_c00001{bottom:554.800000pt;}
.y95b_c00001{bottom:554.933333pt;}
.y734_c00001{bottom:555.200000pt;}
.y56a_c00001{bottom:555.333333pt;}
.y1cf_c00001{bottom:555.466667pt;}
.y132_c00001{bottom:555.733333pt;}
.ya61_c00001{bottom:555.866667pt;}
.y8bf_c00001{bottom:556.133333pt;}
.y162_c00001{bottom:556.533333pt;}
.y53_c00001{bottom:556.666667pt;}
.y2b5_c00001{bottom:556.800000pt;}
.yea7_c00001{bottom:556.933333pt;}
.y77f_c00001{bottom:557.066667pt;}
.y9ee_c00001{bottom:557.200000pt;}
.y41f_c00001{bottom:557.733333pt;}
.yff9_c00001{bottom:557.866667pt;}
.y4cc_c00001{bottom:558.000000pt;}
.y4aa_c00001{bottom:558.266667pt;}
.y9c0_c00001{bottom:558.400000pt;}
.y5e1_c00001{bottom:558.533333pt;}
.y22d_c00001{bottom:558.666667pt;}
.y256_c00001{bottom:558.800000pt;}
.y938_c00001{bottom:558.933333pt;}
.y795_c00001{bottom:559.066667pt;}
.ybd_c00001{bottom:559.333333pt;}
.y7fe_c00001{bottom:559.466667pt;}
.y7da_c00001{bottom:559.600000pt;}
.yd30_c00001{bottom:559.733333pt;}
.y103d_c00001{bottom:559.866667pt;}
.y36b_c00001{bottom:560.000000pt;}
.yee5_c00001{bottom:560.133333pt;}
.y67f_c00001{bottom:560.266667pt;}
.y2e2_c00001{bottom:560.533333pt;}
.ybe8_c00001{bottom:560.666667pt;}
.y7b8_c00001{bottom:560.933333pt;}
.y62e_c00001{bottom:561.200000pt;}
.y1b_c00001{bottom:561.333333pt;}
.yb0b_c00001{bottom:561.600000pt;}
.ye7c_c00001{bottom:561.866667pt;}
.yaac_c00001{bottom:562.000000pt;}
.ydb4_c00001{bottom:562.133333pt;}
.ycc5_c00001{bottom:562.266667pt;}
.y33d_c00001{bottom:562.400000pt;}
.y5b8_c00001{bottom:562.533333pt;}
.y3f5_c00001{bottom:562.666667pt;}
.yde9_c00001{bottom:562.800000pt;}
.y596_c00001{bottom:562.933333pt;}
.y604_c00001{bottom:563.066667pt;}
.yf4_c00001{bottom:563.200000pt;}
.y99e_c00001{bottom:563.333333pt;}
.yb50_c00001{bottom:563.466667pt;}
.y480_c00001{bottom:564.133333pt;}
.y752_c00001{bottom:564.666667pt;}
.ya60_c00001{bottom:564.800000pt;}
.y8a_c00001{bottom:565.066667pt;}
.y193_c00001{bottom:565.466667pt;}
.y8f9_c00001{bottom:565.733333pt;}
.y826_c00001{bottom:565.866667pt;}
.y881_c00001{bottom:566.000000pt;}
.ybc6_c00001{bottom:566.133333pt;}
.y656_c00001{bottom:566.400000pt;}
.yf7e_c00001{bottom:566.533333pt;}
.y96f_c00001{bottom:566.666667pt;}
.y44f_c00001{bottom:566.933333pt;}
.y285_c00001{bottom:567.333333pt;}
.y712_c00001{bottom:567.466667pt;}
.yda1_c00001{bottom:567.600000pt;}
.y95a_c00001{bottom:567.733333pt;}
.ya0b_c00001{bottom:567.866667pt;}
.y1fd_c00001{bottom:568.266667pt;}
.yd12_c00001{bottom:568.666667pt;}
.yf4b_c00001{bottom:568.933333pt;}
.yd2d_c00001{bottom:569.200000pt;}
.yae4_c00001{bottom:569.466667pt;}
.y913_c00001{bottom:569.600000pt;}
.ycac_c00001{bottom:569.866667pt;}
.ya27_c00001{bottom:570.266667pt;}
.yf37_c00001{bottom:570.400000pt;}
.ya35_c00001{bottom:570.533333pt;}
.ya89_c00001{bottom:570.933333pt;}
.y569_c00001{bottom:571.066667pt;}
.y1ce_c00001{bottom:571.200000pt;}
.y3cc_c00001{bottom:571.466667pt;}
.y131_c00001{bottom:571.733333pt;}
.ya5f_c00001{bottom:571.866667pt;}
.y8be_c00001{bottom:572.133333pt;}
.yfd4_c00001{bottom:572.533333pt;}
.y52_c00001{bottom:572.666667pt;}
.ybc_c00001{bottom:572.800000pt;}
.yea6_c00001{bottom:572.933333pt;}
.yb3a_c00001{bottom:573.066667pt;}
.y9ed_c00001{bottom:573.200000pt;}
.y41e_c00001{bottom:573.733333pt;}
.y5e0_c00001{bottom:573.866667pt;}
.y53f_c00001{bottom:574.000000pt;}
.y4a9_c00001{bottom:574.266667pt;}
.y9bf_c00001{bottom:574.400000pt;}
.y255_c00001{bottom:574.533333pt;}
.y4f0_c00001{bottom:574.666667pt;}
.y6a3_c00001{bottom:574.800000pt;}
.y1013_c00001{bottom:575.066667pt;}
.yb21_c00001{bottom:575.200000pt;}
.yfea_c00001{bottom:575.333333pt;}
.y7fd_c00001{bottom:575.466667pt;}
.y7d9_c00001{bottom:575.600000pt;}
.y161_c00001{bottom:575.733333pt;}
.y9d9_c00001{bottom:575.866667pt;}
.ya4e_c00001{bottom:576.000000pt;}
.y1a_c00001{bottom:576.266667pt;}
.y2e1_c00001{bottom:576.533333pt;}
.y8a1_c00001{bottom:576.666667pt;}
.y7b7_c00001{bottom:576.933333pt;}
.y62d_c00001{bottom:577.200000pt;}
.ycff_c00001{bottom:577.333333pt;}
.ybd3_c00001{bottom:577.600000pt;}
.yaab_c00001{bottom:577.733333pt;}
.yb0a_c00001{bottom:577.866667pt;}
.yb81_c00001{bottom:578.133333pt;}
.yd7a_c00001{bottom:578.266667pt;}
.y22c_c00001{bottom:578.400000pt;}
.yb74_c00001{bottom:578.533333pt;}
.y33c_c00001{bottom:578.666667pt;}
.y603_c00001{bottom:578.800000pt;}
.y595_c00001{bottom:578.933333pt;}
.yb95_c00001{bottom:579.200000pt;}
.y99d_c00001{bottom:579.333333pt;}
.y1053_c00001{bottom:579.466667pt;}
.ycd3_c00001{bottom:580.133333pt;}
.y751_c00001{bottom:580.400000pt;}
.y77e_c00001{bottom:580.533333pt;}
.yc91_c00001{bottom:580.800000pt;}
.yee4_c00001{bottom:580.933333pt;}
.y89_c00001{bottom:581.066667pt;}
.y825_c00001{bottom:581.600000pt;}
.y6c9_c00001{bottom:581.733333pt;}
.y841_c00001{bottom:582.000000pt;}
.y5b7_c00001{bottom:582.133333pt;}
.y655_c00001{bottom:582.400000pt;}
.yf7d_c00001{bottom:582.533333pt;}
.y44e_c00001{bottom:582.666667pt;}
.ye20_c00001{bottom:583.066667pt;}
.y711_c00001{bottom:583.200000pt;}
.y284_c00001{bottom:583.333333pt;}
.ya0a_c00001{bottom:583.600000pt;}
.y47f_c00001{bottom:583.733333pt;}
.ybb_c00001{bottom:584.000000pt;}
.yae3_c00001{bottom:584.133333pt;}
.yf53_c00001{bottom:584.266667pt;}
.y3a0_c00001{bottom:584.533333pt;}
.yd66_c00001{bottom:584.666667pt;}
.y513_c00001{bottom:584.933333pt;}
.y192_c00001{bottom:585.333333pt;}
.ycab_c00001{bottom:585.600000pt;}
.y67e_c00001{bottom:585.866667pt;}
.ya81_c00001{bottom:586.266667pt;}
.yf36_c00001{bottom:586.400000pt;}
.ye14_c00001{bottom:586.533333pt;}
.ya88_c00001{bottom:586.666667pt;}
.y568_c00001{bottom:586.800000pt;}
.ye53_c00001{bottom:586.933333pt;}
.y733_c00001{bottom:587.200000pt;}
.y1cd_c00001{bottom:587.466667pt;}
.y130_c00001{bottom:587.733333pt;}
.yacc_c00001{bottom:588.133333pt;}
.yea5_c00001{bottom:588.266667pt;}
.yfd3_c00001{bottom:588.533333pt;}
.y51_c00001{bottom:588.666667pt;}
.y2b4_c00001{bottom:588.800000pt;}
.yb39_c00001{bottom:589.066667pt;}
.y9ec_c00001{bottom:589.466667pt;}
.y5df_c00001{bottom:589.600000pt;}
.y53e_c00001{bottom:589.733333pt;}
.y4a8_c00001{bottom:590.000000pt;}
.yff8_c00001{bottom:590.133333pt;}
.y937_c00001{bottom:590.400000pt;}
.y254_c00001{bottom:590.533333pt;}
.y4ef_c00001{bottom:590.666667pt;}
.y6a2_c00001{bottom:590.800000pt;}
.ya5e_c00001{bottom:591.066667pt;}
.yb20_c00001{bottom:591.200000pt;}
.y3cb_c00001{bottom:591.333333pt;}
.ye44_c00001{bottom:591.466667pt;}
.y7d8_c00001{bottom:591.600000pt;}
.y160_c00001{bottom:591.733333pt;}
.y9d8_c00001{bottom:591.866667pt;}
.ydda_c00001{bottom:592.000000pt;}
.y19_c00001{bottom:592.266667pt;}
.y62c_c00001{bottom:592.533333pt;}
.y7b6_c00001{bottom:592.666667pt;}
.y8f8_c00001{bottom:592.933333pt;}
.yc39_c00001{bottom:593.200000pt;}
.y959_c00001{bottom:593.333333pt;}
.yaaa_c00001{bottom:593.466667pt;}
.ycfe_c00001{bottom:593.600000pt;}
.ybd2_c00001{bottom:593.866667pt;}
.ycef_c00001{bottom:594.133333pt;}
.yfdc_c00001{bottom:594.266667pt;}
.y33b_c00001{bottom:594.400000pt;}
.y594_c00001{bottom:594.533333pt;}
.y22b_c00001{bottom:594.666667pt;}
.y602_c00001{bottom:594.800000pt;}
.y104c_c00001{bottom:594.933333pt;}
.y99c_c00001{bottom:595.066667pt;}
.yb73_c00001{bottom:595.200000pt;}
.yec8_c00001{bottom:595.466667pt;}
.yeb4_c00001{bottom:595.866667pt;}
.yd78_c00001{bottom:596.000000pt;}
.yb09_c00001{bottom:596.133333pt;}
.y77d_c00001{bottom:596.266667pt;}
.y750_c00001{bottom:596.400000pt;}
.y986_c00001{bottom:596.533333pt;}
.yc22_c00001{bottom:596.666667pt;}
.y88_c00001{bottom:596.800000pt;}
.y3f4_c00001{bottom:596.933333pt;}
.y30d_c00001{bottom:597.066667pt;}
.yee3_c00001{bottom:597.200000pt;}
.y824_c00001{bottom:597.333333pt;}
.yfe9_c00001{bottom:597.466667pt;}
.y654_c00001{bottom:597.733333pt;}
.y36a_c00001{bottom:597.866667pt;}
.yd79_c00001{bottom:598.133333pt;}
.y44d_c00001{bottom:598.266667pt;}
.yc4f_c00001{bottom:598.400000pt;}
.y96e_c00001{bottom:598.666667pt;}
.yf7c_c00001{bottom:598.800000pt;}
.y710_c00001{bottom:598.933333pt;}
.yf3_c00001{bottom:599.066667pt;}
.ya09_c00001{bottom:599.333333pt;}
.y47e_c00001{bottom:599.733333pt;}
.yae2_c00001{bottom:599.866667pt;}
.ya4d_c00001{bottom:600.000000pt;}
.y39f_c00001{bottom:600.266667pt;}
.y283_c00001{bottom:600.666667pt;}
.y512_c00001{bottom:600.933333pt;}
.y912_c00001{bottom:601.066667pt;}
.y862_c00001{bottom:601.200000pt;}
.ybc5_c00001{bottom:601.466667pt;}
.ycb7_c00001{bottom:601.600000pt;}
.y5b6_c00001{bottom:601.866667pt;}
.ya80_c00001{bottom:602.266667pt;}
.yf35_c00001{bottom:602.400000pt;}
.ye13_c00001{bottom:602.533333pt;}
.y567_c00001{bottom:602.800000pt;}
.y732_c00001{bottom:602.933333pt;}
.y1cc_c00001{bottom:603.200000pt;}
.y12f_c00001{bottom:603.466667pt;}
.ya26_c00001{bottom:603.733333pt;}
.y2b3_c00001{bottom:604.133333pt;}
.yea4_c00001{bottom:604.266667pt;}
.ybb2_c00001{bottom:604.533333pt;}
.y50_c00001{bottom:604.666667pt;}
.y9eb_c00001{bottom:604.800000pt;}
.yc68_c00001{bottom:605.066667pt;}
.y5de_c00001{bottom:605.333333pt;}
.yd2c_c00001{bottom:605.466667pt;}
.y4a7_c00001{bottom:605.733333pt;}
.yacb_c00001{bottom:605.866667pt;}
.yec7_c00001{bottom:606.000000pt;}
.y958_c00001{bottom:606.133333pt;}
.y794_c00001{bottom:606.266667pt;}
.y4ee_c00001{bottom:606.400000pt;}
.y253_c00001{bottom:606.533333pt;}
.ya34_c00001{bottom:606.666667pt;}
.yb1f_c00001{bottom:607.200000pt;}
.y3ca_c00001{bottom:607.333333pt;}
.ydcc_c00001{bottom:607.466667pt;}
.y103c_c00001{bottom:607.600000pt;}
.y7fc_c00001{bottom:607.733333pt;}
.y9d7_c00001{bottom:607.866667pt;}
.y2e0_c00001{bottom:608.000000pt;}
.y18_c00001{bottom:608.266667pt;}
.ycaa_c00001{bottom:608.400000pt;}
.y62b_c00001{bottom:608.533333pt;}
.yfc5_c00001{bottom:608.800000pt;}
.y7b5_c00001{bottom:608.933333pt;}
.yd77_c00001{bottom:609.066667pt;}
.yaa9_c00001{bottom:609.200000pt;}
.ye7b_c00001{bottom:609.333333pt;}
.yba_c00001{bottom:609.600000pt;}
.y53d_c00001{bottom:609.733333pt;}
.yd87_c00001{bottom:609.866667pt;}
.y33a_c00001{bottom:610.133333pt;}
.y41d_c00001{bottom:610.266667pt;}
.y22a_c00001{bottom:610.400000pt;}
.y593_c00001{bottom:610.533333pt;}
.y369_c00001{bottom:610.666667pt;}
.y99b_c00001{bottom:610.800000pt;}
.y67d_c00001{bottom:610.933333pt;}
.y15f_c00001{bottom:611.200000pt;}
.y191_c00001{bottom:611.466667pt;}
.y104b_c00001{bottom:611.600000pt;}
.yeb3_c00001{bottom:611.866667pt;}
.y8a0_c00001{bottom:612.000000pt;}
.y74f_c00001{bottom:612.133333pt;}
.y77c_c00001{bottom:612.266667pt;}
.yeef_c00001{bottom:612.400000pt;}
.y985_c00001{bottom:612.533333pt;}
.y87_c00001{bottom:612.800000pt;}
.y823_c00001{bottom:613.066667pt;}
.y3f3_c00001{bottom:613.200000pt;}
.ybfa_c00001{bottom:613.333333pt;}
.y840_c00001{bottom:613.466667pt;}
.y8f7_c00001{bottom:613.733333pt;}
.yb72_c00001{bottom:613.866667pt;}
.yb08_c00001{bottom:614.000000pt;}
.y44c_c00001{bottom:614.266667pt;}
.yaf4_c00001{bottom:614.400000pt;}
.yf7b_c00001{bottom:614.533333pt;}
.y70f_c00001{bottom:614.666667pt;}
.y8bd_c00001{bottom:614.800000pt;}
.yf2_c00001{bottom:615.066667pt;}
.y282_c00001{bottom:615.333333pt;}
.yae1_c00001{bottom:615.600000pt;}
.y47d_c00001{bottom:615.733333pt;}
.y39e_c00001{bottom:616.266667pt;}
.yf4a_c00001{bottom:616.666667pt;}
.y911_c00001{bottom:616.800000pt;}
.y511_c00001{bottom:616.933333pt;}
.y861_c00001{bottom:617.200000pt;}
.y653_c00001{bottom:617.333333pt;}
.ya25_c00001{bottom:617.466667pt;}
.ya7f_c00001{bottom:617.600000pt;}
.yfb5_c00001{bottom:617.866667pt;}
.yda0_c00001{bottom:618.133333pt;}
.ycd2_c00001{bottom:618.266667pt;}
.y1cb_c00001{bottom:618.666667pt;}
.y566_c00001{bottom:618.800000pt;}
.y731_c00001{bottom:618.933333pt;}
.y1fc_c00001{bottom:619.200000pt;}
.y12e_c00001{bottom:619.733333pt;}
.yd65_c00001{bottom:619.866667pt;}
.yb38_c00001{bottom:620.000000pt;}
.yd11_c00001{bottom:620.133333pt;}
.yc90_c00001{bottom:620.266667pt;}
.y5b5_c00001{bottom:620.400000pt;}
.y4f_c00001{bottom:620.666667pt;}
.y5dd_c00001{bottom:621.333333pt;}
.y4cb_c00001{bottom:621.466667pt;}
.y4a6_c00001{bottom:621.733333pt;}
.yaca_c00001{bottom:621.866667pt;}
.y793_c00001{bottom:622.000000pt;}
.yff7_c00001{bottom:622.133333pt;}
.y252_c00001{bottom:622.266667pt;}
.yb9_c00001{bottom:622.400000pt;}
.y6a1_c00001{bottom:622.533333pt;}
.yb1e_c00001{bottom:622.933333pt;}
.ye43_c00001{bottom:623.200000pt;}
.y7d7_c00001{bottom:623.333333pt;}
.ydcb_c00001{bottom:623.466667pt;}
.y17_c00001{bottom:623.600000pt;}
.y2b2_c00001{bottom:623.733333pt;}
.y2df_c00001{bottom:624.000000pt;}
.yfc4_c00001{bottom:624.133333pt;}
.y62a_c00001{bottom:624.266667pt;}
.y7b4_c00001{bottom:624.666667pt;}
.yd86_c00001{bottom:624.933333pt;}
.yca9_c00001{bottom:625.066667pt;}
.yaa8_c00001{bottom:625.200000pt;}
.ye7a_c00001{bottom:625.333333pt;}
.yb4f_c00001{bottom:625.600000pt;}
.y339_c00001{bottom:625.866667pt;}
.y53c_c00001{bottom:626.000000pt;}
.y229_c00001{bottom:626.133333pt;}
.y41c_c00001{bottom:626.266667pt;}
.ye5c_c00001{bottom:626.400000pt;}
.y592_c00001{bottom:626.533333pt;}
.y3c9_c00001{bottom:626.933333pt;}
.y1052_c00001{bottom:627.200000pt;}
.y15e_c00001{bottom:627.466667pt;}
.yc7c_c00001{bottom:627.600000pt;}
.y89f_c00001{bottom:627.733333pt;}
.y104a_c00001{bottom:627.866667pt;}
.yc67_c00001{bottom:628.000000pt;}
.yf04_c00001{bottom:628.133333pt;}
.y77b_c00001{bottom:628.266667pt;}
.yeee_c00001{bottom:628.666667pt;}
.y30c_c00001{bottom:628.800000pt;}
.y822_c00001{bottom:629.066667pt;}
.y8e2_c00001{bottom:629.200000pt;}
.ycc4_c00001{bottom:629.333333pt;}
.y3f2_c00001{bottom:629.466667pt;}
.yb07_c00001{bottom:629.733333pt;}
.ya87_c00001{bottom:630.000000pt;}
.yb71_c00001{bottom:630.133333pt;}
.y44b_c00001{bottom:630.266667pt;}
.yf7a_c00001{bottom:630.533333pt;}
.yf1_c00001{bottom:630.666667pt;}
.y70e_c00001{bottom:630.933333pt;}
.y281_c00001{bottom:631.066667pt;}
.y8bc_c00001{bottom:631.466667pt;}
.y86_c00001{bottom:631.600000pt;}
.y6c8_c00001{bottom:631.733333pt;}
.y39d_c00001{bottom:632.000000pt;}
.y984_c00001{bottom:632.266667pt;}
.yd4d_c00001{bottom:632.666667pt;}
.y8f6_c00001{bottom:632.800000pt;}
.y510_c00001{bottom:632.933333pt;}
.yce4_c00001{bottom:633.066667pt;}
.y860_c00001{bottom:633.200000pt;}
.y652_c00001{bottom:633.333333pt;}
.ya24_c00001{bottom:633.466667pt;}
.y880_c00001{bottom:633.600000pt;}
.y5b4_c00001{bottom:633.866667pt;}
.yd76_c00001{bottom:634.000000pt;}
.yf34_c00001{bottom:634.133333pt;}
.ye12_c00001{bottom:634.266667pt;}
.y1ca_c00001{bottom:634.400000pt;}
.yf0e_c00001{bottom:634.533333pt;}
.y47c_c00001{bottom:634.800000pt;}
.y1fb_c00001{bottom:634.933333pt;}
.yb8_c00001{bottom:635.200000pt;}
.yc21_c00001{bottom:635.466667pt;}
.y12d_c00001{bottom:635.733333pt;}
.y368_c00001{bottom:635.866667pt;}
.yfd2_c00001{bottom:636.133333pt;}
.yc8f_c00001{bottom:636.266667pt;}
.y4e_c00001{bottom:636.400000pt;}
.yf8d_c00001{bottom:636.800000pt;}
.y67c_c00001{bottom:637.066667pt;}
.y5dc_c00001{bottom:637.333333pt;}
.y4ca_c00001{bottom:637.466667pt;}
.yac9_c00001{bottom:637.600000pt;}
.y936_c00001{bottom:637.733333pt;}
.y792_c00001{bottom:638.000000pt;}
.y730_c00001{bottom:638.133333pt;}
.y251_c00001{bottom:638.266667pt;}
.y4ed_c00001{bottom:638.400000pt;}
.ybb1_c00001{bottom:638.533333pt;}
.yff6_c00001{bottom:638.800000pt;}
.yb1d_c00001{bottom:638.933333pt;}
.ydca_c00001{bottom:639.200000pt;}
.y7fb_c00001{bottom:639.333333pt;}
.ydd9_c00001{bottom:639.466667pt;}
.y16_c00001{bottom:639.600000pt;}
.y2b1_c00001{bottom:639.733333pt;}
.yfc3_c00001{bottom:639.866667pt;}
.y2de_c00001{bottom:640.000000pt;}
.y629_c00001{bottom:640.266667pt;}
.yca8_c00001{bottom:640.800000pt;}
.ye79_c00001{bottom:641.066667pt;}
.yaa7_c00001{bottom:641.200000pt;}
.y53b_c00001{bottom:641.333333pt;}
.y41b_c00001{bottom:641.600000pt;}
.y338_c00001{bottom:641.866667pt;}
.y228_c00001{bottom:642.133333pt;}
.y4a5_c00001{bottom:642.266667pt;}
.y591_c00001{bottom:642.533333pt;}
.y99a_c00001{bottom:642.800000pt;}
.yd2b_c00001{bottom:642.933333pt;}
.y7d6_c00001{bottom:643.200000pt;}
.ye8f_c00001{bottom:643.466667pt;}
.yf17_c00001{bottom:643.600000pt;}
.y814_c00001{bottom:643.866667pt;}
.y89e_c00001{bottom:644.000000pt;}
.y74e_c00001{bottom:644.133333pt;}
.y77a_c00001{bottom:644.266667pt;}
.y30b_c00001{bottom:644.533333pt;}
.y821_c00001{bottom:644.800000pt;}
.ybf9_c00001{bottom:645.066667pt;}
.yb4e_c00001{bottom:645.333333pt;}
.y8e1_c00001{bottom:645.466667pt;}
.ya86_c00001{bottom:645.733333pt;}
.ya33_c00001{bottom:645.866667pt;}
.y44a_c00001{bottom:646.000000pt;}
.yc4e_c00001{bottom:646.133333pt;}
.yf79_c00001{bottom:646.266667pt;}
.yf0_c00001{bottom:646.400000pt;}
.y70d_c00001{bottom:646.666667pt;}
.y280_c00001{bottom:646.800000pt;}
.y190_c00001{bottom:646.933333pt;}
.ya08_c00001{bottom:647.066667pt;}
.y8bb_c00001{bottom:647.466667pt;}
.yb7_c00001{bottom:648.000000pt;}
.y39c_c00001{bottom:648.266667pt;}
.y85_c00001{bottom:648.533333pt;}
.y367_c00001{bottom:648.666667pt;}
.y8f5_c00001{bottom:648.800000pt;}
.yd53_c00001{bottom:648.933333pt;}
.yd9f_c00001{bottom:649.066667pt;}
.y3f1_c00001{bottom:649.200000pt;}
.y67b_c00001{bottom:649.333333pt;}
.yf33_c00001{bottom:649.466667pt;}
.ydfe_c00001{bottom:650.000000pt;}
.y1c9_c00001{bottom:650.133333pt;}
.ye11_c00001{bottom:650.266667pt;}
.y47b_c00001{bottom:650.533333pt;}
.y565_c00001{bottom:650.800000pt;}
.y1fa_c00001{bottom:650.933333pt;}
.y106a_c00001{bottom:651.200000pt;}
.y12c_c00001{bottom:651.466667pt;}
.yb37_c00001{bottom:651.733333pt;}
.yc0d_c00001{bottom:652.133333pt;}
.yc8e_c00001{bottom:652.266667pt;}
.yfd1_c00001{bottom:652.400000pt;}
.y4d_c00001{bottom:652.666667pt;}
.y15d_c00001{bottom:652.800000pt;}
.y5db_c00001{bottom:653.066667pt;}
.yac8_c00001{bottom:653.333333pt;}
.y4a4_c00001{bottom:653.466667pt;}
.y4c9_c00001{bottom:653.733333pt;}
.y250_c00001{bottom:654.000000pt;}
.y72f_c00001{bottom:654.400000pt;}
.ybb0_c00001{bottom:654.533333pt;}
.yb1c_c00001{bottom:654.666667pt;}
.yff5_c00001{bottom:654.800000pt;}
.y7fa_c00001{bottom:654.933333pt;}
.ydc9_c00001{bottom:655.200000pt;}
.y15_c00001{bottom:655.333333pt;}
.ydd8_c00001{bottom:655.466667pt;}
.y2b0_c00001{bottom:655.733333pt;}
.yc66_c00001{bottom:655.866667pt;}
.y2dd_c00001{bottom:656.000000pt;}
.y87f_c00001{bottom:656.133333pt;}
.y628_c00001{bottom:656.266667pt;}
.yca7_c00001{bottom:656.533333pt;}
.yc65_c00001{bottom:656.800000pt;}
.yaa6_c00001{bottom:656.933333pt;}
.yd85_c00001{bottom:657.066667pt;}
.y41a_c00001{bottom:657.600000pt;}
.y935_c00001{bottom:657.733333pt;}
.y337_c00001{bottom:657.866667pt;}
.yd10_c00001{bottom:658.000000pt;}
.y227_c00001{bottom:658.133333pt;}
.y590_c00001{bottom:658.533333pt;}
.yf16_c00001{bottom:658.933333pt;}
.y7d5_c00001{bottom:659.200000pt;}
.y1051_c00001{bottom:659.466667pt;}
.yf8c_c00001{bottom:659.600000pt;}
.y89d_c00001{bottom:659.733333pt;}
.y74d_c00001{bottom:659.866667pt;}
.y779_c00001{bottom:660.000000pt;}
.ycb6_c00001{bottom:660.133333pt;}
.yc20_c00001{bottom:660.400000pt;}
.y30a_c00001{bottom:660.533333pt;}
.yb6_c00001{bottom:660.800000pt;}
.y53a_c00001{bottom:661.066667pt;}
.y8e0_c00001{bottom:661.200000pt;}
.yb06_c00001{bottom:661.466667pt;}
.ya85_c00001{bottom:661.733333pt;}
.yc4d_c00001{bottom:661.866667pt;}
.y70c_c00001{bottom:662.000000pt;}
.y1049_c00001{bottom:662.133333pt;}
.yef_c00001{bottom:662.400000pt;}
.yf78_c00001{bottom:662.533333pt;}
.y18f_c00001{bottom:662.666667pt;}
.y27f_c00001{bottom:662.800000pt;}
.ye8e_c00001{bottom:663.066667pt;}
.y9ea_c00001{bottom:663.200000pt;}
.yc7b_c00001{bottom:663.333333pt;}
.y8ba_c00001{bottom:663.466667pt;}
.y449_c00001{bottom:663.600000pt;}
.y39b_c00001{bottom:664.000000pt;}
.y83f_c00001{bottom:664.266667pt;}
.y651_c00001{bottom:664.400000pt;}
.y84_c00001{bottom:664.533333pt;}
.y50f_c00001{bottom:664.666667pt;}
.yd9e_c00001{bottom:664.800000pt;}
.y85f_c00001{bottom:664.933333pt;}
.y3f0_c00001{bottom:665.200000pt;}
.ya32_c00001{bottom:665.333333pt;}
.yf32_c00001{bottom:665.466667pt;}
.y67a_c00001{bottom:666.000000pt;}
.y1c8_c00001{bottom:666.133333pt;}
.y3c8_c00001{bottom:666.266667pt;}
.y564_c00001{bottom:666.533333pt;}
.y1f9_c00001{bottom:666.666667pt;}
.yb36_c00001{bottom:667.466667pt;}
.yee2_c00001{bottom:667.866667pt;}
.y4c_c00001{bottom:668.000000pt;}
.yc0c_c00001{bottom:668.133333pt;}
.yc8d_c00001{bottom:668.266667pt;}
.y5da_c00001{bottom:668.800000pt;}
.y791_c00001{bottom:669.066667pt;}
.y4a3_c00001{bottom:669.333333pt;}
.y4c8_c00001{bottom:669.466667pt;}
.y6a0_c00001{bottom:669.733333pt;}
.y72e_c00001{bottom:669.866667pt;}
.y24f_c00001{bottom:670.000000pt;}
.y957_c00001{bottom:670.400000pt;}
.ybaf_c00001{bottom:670.533333pt;}
.y7f9_c00001{bottom:670.666667pt;}
.yff4_c00001{bottom:670.800000pt;}
.ydc8_c00001{bottom:670.933333pt;}
.y12b_c00001{bottom:671.200000pt;}
.y14_c00001{bottom:671.333333pt;}
.y2af_c00001{bottom:671.733333pt;}
.yfc2_c00001{bottom:671.866667pt;}
.y627_c00001{bottom:672.000000pt;}
.yd4c_c00001{bottom:672.266667pt;}
.yde8_c00001{bottom:672.400000pt;}
.yca6_c00001{bottom:672.533333pt;}
.y87e_c00001{bottom:673.066667pt;}
.y336_c00001{bottom:673.200000pt;}
.y419_c00001{bottom:673.333333pt;}
.y934_c00001{bottom:673.466667pt;}
.yb5_c00001{bottom:673.600000pt;}
.yb70_c00001{bottom:673.866667pt;}
.yd0f_c00001{bottom:674.000000pt;}
.y226_c00001{bottom:674.133333pt;}
.yaa5_c00001{bottom:674.266667pt;}
.ya31_c00001{bottom:674.533333pt;}
.yf8b_c00001{bottom:674.666667pt;}
.y2dc_c00001{bottom:674.800000pt;}
.y58f_c00001{bottom:674.933333pt;}
.y7d4_c00001{bottom:675.200000pt;}
.y89c_c00001{bottom:675.466667pt;}
.yc64_c00001{bottom:675.733333pt;}
.y15c_c00001{bottom:675.866667pt;}
.y778_c00001{bottom:676.000000pt;}
.yc38_c00001{bottom:676.133333pt;}
.yeb2_c00001{bottom:676.400000pt;}
.yd84_c00001{bottom:676.533333pt;}
.y309_c00001{bottom:676.800000pt;}
.y8df_c00001{bottom:676.933333pt;}
.ybe7_c00001{bottom:677.066667pt;}
.yf22_c00001{bottom:677.333333pt;}
.y601_c00001{bottom:677.466667pt;}
.y448_c00001{bottom:677.733333pt;}
.y70b_c00001{bottom:678.000000pt;}
.y679_c00001{bottom:678.133333pt;}
.ya4c_c00001{bottom:678.400000pt;}
.ya07_c00001{bottom:678.533333pt;}
.yb4d_c00001{bottom:678.666667pt;}
.y27e_c00001{bottom:678.800000pt;}
.y18e_c00001{bottom:678.933333pt;}
.ybf8_c00001{bottom:679.066667pt;}
.y9e9_c00001{bottom:679.200000pt;}
.yc7a_c00001{bottom:679.333333pt;}
.y8b9_c00001{bottom:679.466667pt;}
.y1069_c00001{bottom:679.600000pt;}
.yee_c00001{bottom:680.000000pt;}
.y83e_c00001{bottom:680.266667pt;}
.y650_c00001{bottom:680.400000pt;}
.y83_c00001{bottom:680.533333pt;}
.y820_c00001{bottom:680.666667pt;}
.y3ef_c00001{bottom:680.933333pt;}
.ybc4_c00001{bottom:681.200000pt;}
.yf15_c00001{bottom:681.333333pt;}
.yf31_c00001{bottom:681.466667pt;}
.yaf3_c00001{bottom:681.600000pt;}
.ydfd_c00001{bottom:681.733333pt;}
.y47a_c00001{bottom:682.000000pt;}
.y1c7_c00001{bottom:682.133333pt;}
.y563_c00001{bottom:682.533333pt;}
.y1f8_c00001{bottom:682.666667pt;}
.y956_c00001{bottom:683.200000pt;}
.yfb4_c00001{bottom:683.466667pt;}
.y58e_c00001{bottom:683.866667pt;}
.y4b_c00001{bottom:684.000000pt;}
.yc0b_c00001{bottom:684.133333pt;}
.yc8c_c00001{bottom:684.266667pt;}
.y5d9_c00001{bottom:684.533333pt;}
.yd43_c00001{bottom:684.666667pt;}
.y4c7_c00001{bottom:684.800000pt;}
.y4a2_c00001{bottom:685.066667pt;}
.y1064_c00001{bottom:685.200000pt;}
.y9be_c00001{bottom:685.466667pt;}
.y4ec_c00001{bottom:685.733333pt;}
.ybae_c00001{bottom:685.866667pt;}
.y24e_c00001{bottom:686.000000pt;}
.y3c7_c00001{bottom:686.133333pt;}
.yc1f_c00001{bottom:686.266667pt;}
.yb4_c00001{bottom:686.400000pt;}
.ydc7_c00001{bottom:686.666667pt;}
.ye99_c00001{bottom:686.800000pt;}
.ydd7_c00001{bottom:686.933333pt;}
.yd2a_c00001{bottom:687.066667pt;}
.y12a_c00001{bottom:687.200000pt;}
.y5b3_c00001{bottom:687.333333pt;}
.y6ed_c00001{bottom:687.466667pt;}
.y2ae_c00001{bottom:687.733333pt;}
.yfc1_c00001{bottom:687.866667pt;}
.yff0_c00001{bottom:688.000000pt;}
.y50e_c00001{bottom:688.266667pt;}
.ye30_c00001{bottom:688.666667pt;}
.y335_c00001{bottom:689.200000pt;}
.y418_c00001{bottom:689.333333pt;}
.y933_c00001{bottom:689.733333pt;}
.y13_c00001{bottom:689.866667pt;}
.yd0e_c00001{bottom:690.000000pt;}
.y225_c00001{bottom:690.133333pt;}
.y58d_c00001{bottom:690.266667pt;}
.y7f8_c00001{bottom:690.533333pt;}
.yf14_c00001{bottom:690.666667pt;}
.y7d3_c00001{bottom:691.200000pt;}
.y1012_c00001{bottom:691.333333pt;}
.y2db_c00001{bottom:691.466667pt;}
.y626_c00001{bottom:691.600000pt;}
.y777_c00001{bottom:691.733333pt;}
.y74c_c00001{bottom:691.866667pt;}
.yfa1_c00001{bottom:692.000000pt;}
.y308_c00001{bottom:692.133333pt;}
.y366_c00001{bottom:692.266667pt;}
.yd83_c00001{bottom:692.533333pt;}
.ya5d_c00001{bottom:692.666667pt;}
.y539_c00001{bottom:692.800000pt;}
.y8de_c00001{bottom:692.933333pt;}
.y447_c00001{bottom:693.066667pt;}
.y600_c00001{bottom:693.466667pt;}
.ye8d_c00001{bottom:693.733333pt;}
.y70a_c00001{bottom:694.000000pt;}
.ya4b_c00001{bottom:694.133333pt;}
.y5b2_c00001{bottom:694.400000pt;}
.ya06_c00001{bottom:694.533333pt;}
.y18d_c00001{bottom:694.666667pt;}
.y9e8_c00001{bottom:694.933333pt;}
.y8b8_c00001{bottom:695.200000pt;}
.yc79_c00001{bottom:695.333333pt;}
.y1023_c00001{bottom:695.733333pt;}
.y39a_c00001{bottom:696.000000pt;}
.y83d_c00001{bottom:696.266667pt;}
.y27d_c00001{bottom:696.400000pt;}
.y82_c00001{bottom:696.533333pt;}
.y3ee_c00001{bottom:696.666667pt;}
.yce3_c00001{bottom:696.933333pt;}
.ybc3_c00001{bottom:697.200000pt;}
.ydfc_c00001{bottom:697.466667pt;}
.yd64_c00001{bottom:697.600000pt;}
.ye10_c00001{bottom:697.733333pt;}
.yed_c00001{bottom:697.866667pt;}
.y479_c00001{bottom:698.000000pt;}
.y562_c00001{bottom:698.533333pt;}
.y1f7_c00001{bottom:698.666667pt;}
.yc1e_c00001{bottom:698.800000pt;}
.yf49_c00001{bottom:699.333333pt;}
.yb3_c00001{bottom:699.466667pt;}
.yfb3_c00001{bottom:699.733333pt;}
.yde7_c00001{bottom:699.866667pt;}
.y4a_c00001{bottom:700.000000pt;}
.yfd0_c00001{bottom:700.133333pt;}
.y5d8_c00001{bottom:700.266667pt;}
.y85e_c00001{bottom:700.400000pt;}
.y6c7_c00001{bottom:700.533333pt;}
.ybe6_c00001{bottom:700.800000pt;}
.y4a1_c00001{bottom:701.066667pt;}
.y69f_c00001{bottom:701.333333pt;}
.y9bd_c00001{bottom:701.466667pt;}
.y9d6_c00001{bottom:701.733333pt;}
.y72d_c00001{bottom:701.866667pt;}
.y24d_c00001{bottom:702.000000pt;}
.y3c6_c00001{bottom:702.133333pt;}
.yef8_c00001{bottom:702.266667pt;}
.yb1b_c00001{bottom:702.400000pt;}
.yb35_c00001{bottom:702.666667pt;}
.yd29_c00001{bottom:702.800000pt;}
.y983_c00001{bottom:703.066667pt;}
.y129_c00001{bottom:703.200000pt;}
.y15b_c00001{bottom:703.333333pt;}
.y6ec_c00001{bottom:703.466667pt;}
.yff3_c00001{bottom:703.600000pt;}
.y2ad_c00001{bottom:703.733333pt;}
.y50d_c00001{bottom:704.000000pt;}
.ye98_c00001{bottom:704.133333pt;}
.ydb3_c00001{bottom:704.266667pt;}
.y334_c00001{bottom:704.933333pt;}
.y87d_c00001{bottom:705.066667pt;}
.yaa4_c00001{bottom:705.200000pt;}
.y417_c00001{bottom:705.333333pt;}
.y932_c00001{bottom:705.466667pt;}
.yb6f_c00001{bottom:705.600000pt;}
.yf03_c00001{bottom:705.733333pt;}
.y224_c00001{bottom:705.866667pt;}
.yf13_c00001{bottom:706.400000pt;}
.y7f7_c00001{bottom:706.533333pt;}
.yf8a_c00001{bottom:706.933333pt;}
.y12_c00001{bottom:707.200000pt;}
.y625_c00001{bottom:707.333333pt;}
.y2da_c00001{bottom:707.466667pt;}
.y776_c00001{bottom:707.733333pt;}
.ycb5_c00001{bottom:707.866667pt;}
.yfa0_c00001{bottom:708.000000pt;}
.y365_c00001{bottom:708.266667pt;}
.y790_c00001{bottom:708.400000pt;}
.y538_c00001{bottom:708.533333pt;}
.y8dd_c00001{bottom:708.666667pt;}
.y74b_c00001{bottom:708.800000pt;}
.y446_c00001{bottom:709.066667pt;}
.ya5c_c00001{bottom:709.333333pt;}
.yfe8_c00001{bottom:709.466667pt;}
.y709_c00001{bottom:709.733333pt;}
.ya4a_c00001{bottom:709.866667pt;}
.y27c_c00001{bottom:710.133333pt;}
.ya05_c00001{bottom:710.266667pt;}
.y7d2_c00001{bottom:710.400000pt;}
.y18c_c00001{bottom:710.666667pt;}
.yae0_c00001{bottom:710.933333pt;}
.y8b7_c00001{bottom:711.200000pt;}
.yc77_c00001{bottom:711.333333pt;}
.yc1d_c00001{bottom:711.600000pt;}
.y399_c00001{bottom:711.733333pt;}
.yb2_c00001{bottom:712.000000pt;}
.yf77_c00001{bottom:712.133333pt;}
.y307_c00001{bottom:712.266667pt;}
.y64f_c00001{bottom:712.400000pt;}
.y58c_c00001{bottom:712.533333pt;}
.ya23_c00001{bottom:712.666667pt;}
.y81_c00001{bottom:712.800000pt;}
.ybc2_c00001{bottom:712.933333pt;}
.yf30_c00001{bottom:713.200000pt;}
.yd75_c00001{bottom:713.333333pt;}
.ydfb_c00001{bottom:713.466667pt;}
.y1c6_c00001{bottom:713.600000pt;}
.y478_c00001{bottom:713.733333pt;}
.yd4b_c00001{bottom:713.866667pt;}
.y561_c00001{bottom:714.533333pt;}
.y1f6_c00001{bottom:714.666667pt;}
.y96d_c00001{bottom:714.800000pt;}
.ya7e_c00001{bottom:715.200000pt;}
.ycc3_c00001{bottom:715.333333pt;}
.yff2_c00001{bottom:715.466667pt;}
.yf48_c00001{bottom:715.600000pt;}
.y81f_c00001{bottom:715.733333pt;}
.y3ed_c00001{bottom:715.866667pt;}
.y49_c00001{bottom:716.000000pt;}
.yfcf_c00001{bottom:716.133333pt;}
.yd42_c00001{bottom:716.400000pt;}
.y5d7_c00001{bottom:716.533333pt;}
.yc4c_c00001{bottom:716.666667pt;}
.yec_c00001{bottom:716.800000pt;}
.y85d_c00001{bottom:717.066667pt;}
.y6c6_c00001{bottom:717.200000pt;}
.y69e_c00001{bottom:717.333333pt;}
.yfb2_c00001{bottom:717.600000pt;}
.y4eb_c00001{bottom:717.733333pt;}
.y24c_c00001{bottom:718.000000pt;}
.y72c_c00001{bottom:718.133333pt;}
.yef7_c00001{bottom:718.266667pt;}
.yb1a_c00001{bottom:718.400000pt;}
.yd28_c00001{bottom:718.533333pt;}
.yb34_c00001{bottom:718.666667pt;}
.y128_c00001{bottom:719.200000pt;}
.y2ac_c00001{bottom:719.333333pt;}
.y103b_c00001{bottom:719.466667pt;}
.yde6_c00001{bottom:719.733333pt;}
.y50c_c00001{bottom:719.866667pt;}
.y982_c00001{bottom:720.000000pt;}
.ydb2_c00001{bottom:720.266667pt;}
.ye2f_c00001{bottom:720.533333pt;}
.y4c6_c00001{bottom:720.666667pt;}
.y87c_c00001{bottom:720.800000pt;}
.y333_c00001{bottom:720.933333pt;}
.ye42_c00001{bottom:721.200000pt;}
.ycee_c00001{bottom:721.333333pt;}
.y931_c00001{bottom:721.466667pt;}
.y955_c00001{bottom:721.600000pt;}
.yf02_c00001{bottom:721.733333pt;}
.y223_c00001{bottom:721.866667pt;}
.yf89_c00001{bottom:722.266667pt;}
.y7f6_c00001{bottom:722.533333pt;}
.yca5_c00001{bottom:722.666667pt;}
.y15a_c00001{bottom:723.200000pt;}
.y624_c00001{bottom:723.333333pt;}
.y775_c00001{bottom:723.466667pt;}
.yf21_c00001{bottom:723.733333pt;}
.yd82_c00001{bottom:723.866667pt;}
.y364_c00001{bottom:724.000000pt;}
.ycb4_c00001{bottom:724.133333pt;}
.yf9f_c00001{bottom:724.266667pt;}
.y78f_c00001{bottom:724.400000pt;}
.yb1_c00001{bottom:724.533333pt;}
.y8dc_c00001{bottom:724.666667pt;}
.y416_c00001{bottom:724.800000pt;}
.y445_c00001{bottom:725.066667pt;}
.y9d5_c00001{bottom:725.466667pt;}
.y708_c00001{bottom:725.733333pt;}
.ya49_c00001{bottom:725.866667pt;}
.ya04_c00001{bottom:726.000000pt;}
.y27b_c00001{bottom:726.133333pt;}
.y18b_c00001{bottom:726.400000pt;}
.yf76_c00001{bottom:726.533333pt;}
.y7d1_c00001{bottom:726.666667pt;}
.yb80_c00001{bottom:726.933333pt;}
.y8b6_c00001{bottom:727.200000pt;}
.yce2_c00001{bottom:727.333333pt;}
.yc76_c00001{bottom:727.600000pt;}
.y398_c00001{bottom:727.733333pt;}
.y64e_c00001{bottom:728.133333pt;}
.y306_c00001{bottom:728.266667pt;}
.ya22_c00001{bottom:728.400000pt;}
.y80_c00001{bottom:728.533333pt;}
.ybc1_c00001{bottom:728.933333pt;}
.yf2f_c00001{bottom:729.200000pt;}
.y678_c00001{bottom:729.333333pt;}
.y477_c00001{bottom:729.466667pt;}
.y1c5_c00001{bottom:729.600000pt;}
.y58b_c00001{bottom:729.866667pt;}
.y1068_c00001{bottom:730.266667pt;}
.y1f5_c00001{bottom:730.400000pt;}
.y560_c00001{bottom:730.533333pt;}
.ya84_c00001{bottom:730.933333pt;}
.yc37_c00001{bottom:731.200000pt;}
.yff1_c00001{bottom:731.466667pt;}
.y81e_c00001{bottom:731.733333pt;}
.yc8b_c00001{bottom:731.866667pt;}
.y48_c00001{bottom:732.000000pt;}
.yd41_c00001{bottom:732.133333pt;}
.y5d6_c00001{bottom:732.266667pt;}
.y3ec_c00001{bottom:732.533333pt;}
.yc4b_c00001{bottom:732.666667pt;}
.y85c_c00001{bottom:732.800000pt;}
.y6c5_c00001{bottom:732.933333pt;}
.yeb_c00001{bottom:733.066667pt;}
.y9bc_c00001{bottom:733.200000pt;}
.y69d_c00001{bottom:733.333333pt;}
.ybad_c00001{bottom:733.466667pt;}
.y24b_c00001{bottom:733.733333pt;}
.yb19_c00001{bottom:734.000000pt;}
.yef6_c00001{bottom:734.266667pt;}
.yb33_c00001{bottom:734.400000pt;}
.y954_c00001{bottom:734.666667pt;}
.yd27_c00001{bottom:734.800000pt;}
.y6eb_c00001{bottom:735.200000pt;}
.y100f_c00001{bottom:735.333333pt;}
.y127_c00001{bottom:735.466667pt;}
.yd9d_c00001{bottom:735.600000pt;}
.y50b_c00001{bottom:735.866667pt;}
.y332_c00001{bottom:736.000000pt;}
.yd4a_c00001{bottom:736.266667pt;}
.y87b_c00001{bottom:736.533333pt;}
.y4c5_c00001{bottom:736.666667pt;}
.yac7_c00001{bottom:736.800000pt;}
.yaf2_c00001{bottom:736.933333pt;}
.y1022_c00001{bottom:737.066667pt;}
.yc1c_c00001{bottom:737.200000pt;}
.y1048_c00001{bottom:737.333333pt;}
.y930_c00001{bottom:737.466667pt;}
.yb0_c00001{bottom:737.600000pt;}
.yf01_c00001{bottom:737.733333pt;}
.y11_c00001{bottom:737.866667pt;}
.y7f5_c00001{bottom:738.266667pt;}
.yee1_c00001{bottom:738.400000pt;}
.ybf7_c00001{bottom:738.533333pt;}
.yca4_c00001{bottom:738.933333pt;}
.y623_c00001{bottom:739.066667pt;}
.ybd1_c00001{bottom:739.200000pt;}
.y2ab_c00001{bottom:739.333333pt;}
.y7b3_c00001{bottom:739.466667pt;}
.y774_c00001{bottom:739.733333pt;}
.yced_c00001{bottom:739.866667pt;}
.y363_c00001{bottom:740.000000pt;}
.y4ea_c00001{bottom:740.133333pt;}
.yf9e_c00001{bottom:740.266667pt;}
.y8db_c00001{bottom:740.400000pt;}
.y415_c00001{bottom:740.533333pt;}
.y78e_c00001{bottom:740.666667pt;}
.y444_c00001{bottom:740.800000pt;}
.y707_c00001{bottom:741.466667pt;}
.ya48_c00001{bottom:741.600000pt;}
.y1055_c00001{bottom:741.733333pt;}
.ya03_c00001{bottom:742.000000pt;}
.y27a_c00001{bottom:742.133333pt;}
.yf75_c00001{bottom:742.266667pt;}
.y18a_c00001{bottom:742.400000pt;}
.y159_c00001{bottom:742.666667pt;}
.y2d9_c00001{bottom:742.800000pt;}
.y8b5_c00001{bottom:742.933333pt;}
.y89b_c00001{bottom:743.066667pt;}
.yc0a_c00001{bottom:743.333333pt;}
.y397_c00001{bottom:743.466667pt;}
.yb05_c00001{bottom:743.733333pt;}
.y64d_c00001{bottom:743.866667pt;}
.y305_c00001{bottom:744.000000pt;}
.y8f4_c00001{bottom:744.266667pt;}
.ya21_c00001{bottom:744.400000pt;}
.y7f_c00001{bottom:744.533333pt;}
.yf2e_c00001{bottom:744.933333pt;}
.yb67_c00001{bottom:745.066667pt;}
.ydfa_c00001{bottom:745.200000pt;}
.y1c4_c00001{bottom:745.333333pt;}
.y476_c00001{bottom:745.466667pt;}
.y5b1_c00001{bottom:745.600000pt;}
.y58a_c00001{bottom:745.866667pt;}
.y222_c00001{bottom:746.133333pt;}
.y1f4_c00001{bottom:746.400000pt;}
.y55f_c00001{bottom:746.533333pt;}
.yf47_c00001{bottom:746.800000pt;}
.y953_c00001{bottom:747.200000pt;}
.y81d_c00001{bottom:747.466667pt;}
.y47_c00001{bottom:748.000000pt;}
.yc36_c00001{bottom:748.133333pt;}
.y3eb_c00001{bottom:748.266667pt;}
.y4a0_c00001{bottom:748.533333pt;}
.y6c4_c00001{bottom:748.666667pt;}
.y85b_c00001{bottom:748.800000pt;}
.y9bb_c00001{bottom:748.933333pt;}
.yea_c00001{bottom:749.066667pt;}
.y69c_c00001{bottom:749.333333pt;}
.ybac_c00001{bottom:749.466667pt;}
.y24a_c00001{bottom:749.733333pt;}
.yc1b_c00001{bottom:750.000000pt;}
.yd26_c00001{bottom:750.133333pt;}
.yec6_c00001{bottom:750.400000pt;}
.y6ea_c00001{bottom:750.933333pt;}
.yaf_c00001{bottom:751.066667pt;}
.y126_c00001{bottom:751.200000pt;}
.ye97_c00001{bottom:751.333333pt;}
.yc8a_c00001{bottom:751.466667pt;}
.yd9c_c00001{bottom:751.600000pt;}
.ya7b_c00001{bottom:751.733333pt;}
.ya30_c00001{bottom:751.866667pt;}
.ydb1_c00001{bottom:752.000000pt;}
.y50a_c00001{bottom:752.133333pt;}
.y87a_c00001{bottom:752.266667pt;}
.y4c4_c00001{bottom:752.400000pt;}
.yd49_c00001{bottom:752.533333pt;}
.yaa3_c00001{bottom:752.800000pt;}
.yb18_c00001{bottom:752.933333pt;}
.y1021_c00001{bottom:753.066667pt;}
.y92f_c00001{bottom:753.200000pt;}
.y3c5_c00001{bottom:753.333333pt;}
.yf00_c00001{bottom:753.466667pt;}
.yea3_c00001{bottom:753.600000pt;}
.yb32_c00001{bottom:753.866667pt;}
.yf12_c00001{bottom:754.133333pt;}
.y7f4_c00001{bottom:754.266667pt;}
.y677_c00001{bottom:754.666667pt;}
.y622_c00001{bottom:754.800000pt;}
.y2aa_c00001{bottom:755.066667pt;}
.y10_c00001{bottom:755.200000pt;}
.y7b2_c00001{bottom:755.466667pt;}
.y362_c00001{bottom:755.733333pt;}
.y331_c00001{bottom:755.866667pt;}
.yf9d_c00001{bottom:756.000000pt;}
.y8da_c00001{bottom:756.133333pt;}
.y414_c00001{bottom:756.400000pt;}
.y4e9_c00001{bottom:756.800000pt;}
.ybd0_c00001{bottom:757.066667pt;}
.yf0d_c00001{bottom:757.200000pt;}
.y221_c00001{bottom:757.333333pt;}
.ya02_c00001{bottom:758.000000pt;}
.y9e7_c00001{bottom:758.133333pt;}
.yf74_c00001{bottom:758.266667pt;}
.y279_c00001{bottom:758.400000pt;}
.y189_c00001{bottom:758.666667pt;}
.y7d0_c00001{bottom:758.933333pt;}
.y2d8_c00001{bottom:759.066667pt;}
.yc09_c00001{bottom:759.333333pt;}
.y396_c00001{bottom:759.466667pt;}
.y443_c00001{bottom:759.600000pt;}
.y304_c00001{bottom:759.733333pt;}
.y64c_c00001{bottom:759.866667pt;}
.y83c_c00001{bottom:760.000000pt;}
.yd0d_c00001{bottom:760.133333pt;}
.y537_c00001{bottom:760.266667pt;}
.y7e_c00001{bottom:760.533333pt;}
.ya20_c00001{bottom:760.666667pt;}
.ya5b_c00001{bottom:760.933333pt;}
.y1c3_c00001{bottom:761.200000pt;}
.yb66_c00001{bottom:761.333333pt;}
.ydf9_c00001{bottom:761.466667pt;}
.yd74_c00001{bottom:761.600000pt;}
.yadf_c00001{bottom:761.866667pt;}
.y1f3_c00001{bottom:762.133333pt;}
.y158_c00001{bottom:762.533333pt;}
.y589_c00001{bottom:762.933333pt;}
.ycc2_c00001{bottom:763.066667pt;}
.yae_c00001{bottom:763.200000pt;}
.ybc0_c00001{bottom:763.466667pt;}
.y46_c00001{bottom:763.733333pt;}
.yd40_c00001{bottom:763.866667pt;}
.y5d5_c00001{bottom:764.000000pt;}
.yb04_c00001{bottom:764.133333pt;}
.y3ea_c00001{bottom:764.266667pt;}
.yc4a_c00001{bottom:764.400000pt;}
.yfdb_c00001{bottom:764.533333pt;}
.y69b_c00001{bottom:764.666667pt;}
.y85a_c00001{bottom:764.800000pt;}
.y9ba_c00001{bottom:764.933333pt;}
.ye9_c00001{bottom:765.066667pt;}
.y72b_c00001{bottom:765.733333pt;}
.yec4_c00001{bottom:765.866667pt;}
.y249_c00001{bottom:766.000000pt;}
.y55e_c00001{bottom:766.133333pt;}
.y89a_c00001{bottom:766.400000pt;}
.yc35_c00001{bottom:766.666667pt;}
.y125_c00001{bottom:766.933333pt;}
.ya7a_c00001{bottom:767.066667pt;}
.yd9b_c00001{bottom:767.333333pt;}
.ya2f_c00001{bottom:767.600000pt;}
.yac6_c00001{bottom:767.733333pt;}
.y509_c00001{bottom:767.866667pt;}
.yd48_c00001{bottom:768.266667pt;}
.yfef_c00001{bottom:768.400000pt;}
.y4c3_c00001{bottom:768.666667pt;}
.yaa2_c00001{bottom:768.800000pt;}
.y71f_c00001{bottom:768.933333pt;}
.y92e_c00001{bottom:769.200000pt;}
.yd25_c00001{bottom:769.333333pt;}
.yeff_c00001{bottom:769.466667pt;}
.ye2e_c00001{bottom:769.600000pt;}
.y999_c00001{bottom:769.866667pt;}
.y7f3_c00001{bottom:770.266667pt;}
.y2a9_c00001{bottom:770.400000pt;}
.yf_c00001{bottom:770.533333pt;}
.yee0_c00001{bottom:770.666667pt;}
.y621_c00001{bottom:770.800000pt;}
.ydc6_c00001{bottom:770.933333pt;}
.yc63_c00001{bottom:771.200000pt;}
.y773_c00001{bottom:771.466667pt;}
.y361_c00001{bottom:771.733333pt;}
.yb60_c00001{bottom:771.866667pt;}
.y706_c00001{bottom:772.000000pt;}
.y8d9_c00001{bottom:772.133333pt;}
.yf9c_c00001{bottom:772.266667pt;}
.y413_c00001{bottom:772.400000pt;}
.y4e8_c00001{bottom:772.800000pt;}
.y3c4_c00001{bottom:773.066667pt;}
.yb94_c00001{bottom:773.200000pt;}
.y220_c00001{bottom:773.333333pt;}
.yf0c_c00001{bottom:773.466667pt;}
.y278_c00001{bottom:773.733333pt;}
.y188_c00001{bottom:774.400000pt;}
.y7cf_c00001{bottom:774.666667pt;}
.y2d7_c00001{bottom:774.800000pt;}
.yf73_c00001{bottom:774.933333pt;}
.y981_c00001{bottom:775.066667pt;}
.yc1a_c00001{bottom:775.333333pt;}
.y64b_c00001{bottom:775.600000pt;}
.ya1f_c00001{bottom:775.733333pt;}
.yd0c_c00001{bottom:775.866667pt;}
.y588_c00001{bottom:776.000000pt;}
.y7d_c00001{bottom:776.266667pt;}
.y330_c00001{bottom:776.666667pt;}
.y1c2_c00001{bottom:776.933333pt;}
.y475_c00001{bottom:777.200000pt;}
.yb65_c00001{bottom:777.333333pt;}
.y9e6_c00001{bottom:777.600000pt;}
.y303_c00001{bottom:777.866667pt;}
.y1f2_c00001{bottom:778.400000pt;}
.y157_c00001{bottom:778.533333pt;}
.ycc1_c00001{bottom:778.800000pt;}
.y49f_c00001{bottom:778.933333pt;}
.yb03_c00001{bottom:779.200000pt;}
.y676_c00001{bottom:779.333333pt;}
.y910_c00001{bottom:779.466667pt;}
.y45_c00001{bottom:779.733333pt;}
.y83b_c00001{bottom:779.866667pt;}
.y3e9_c00001{bottom:780.000000pt;}
.y6c3_c00001{bottom:780.266667pt;}
.yc49_c00001{bottom:780.400000pt;}
.y859_c00001{bottom:780.533333pt;}
.y675_c00001{bottom:780.666667pt;}
.ye8_c00001{bottom:780.800000pt;}
.y9b9_c00001{bottom:780.933333pt;}
.yb31_c00001{bottom:781.066667pt;}
.y587_c00001{bottom:781.466667pt;}
.yec3_c00001{bottom:781.600000pt;}
.y248_c00001{bottom:781.733333pt;}
.y55d_c00001{bottom:782.133333pt;}
.y899_c00001{bottom:782.400000pt;}
.yce1_c00001{bottom:782.533333pt;}
.y6e9_c00001{bottom:782.666667pt;}
.y124_c00001{bottom:783.200000pt;}
.y879_c00001{bottom:783.333333pt;}
.y508_c00001{bottom:783.600000pt;}
.ydb0_c00001{bottom:783.733333pt;}
.yfc0_c00001{bottom:783.866667pt;}
.y1011_c00001{bottom:784.000000pt;}
.y4c2_c00001{bottom:784.266667pt;}
.yaa1_c00001{bottom:784.533333pt;}
.yfee_c00001{bottom:784.666667pt;}
.ye41_c00001{bottom:784.933333pt;}
.y705_c00001{bottom:785.066667pt;}
.y92d_c00001{bottom:785.200000pt;}
.yd24_c00001{bottom:785.333333pt;}
.ybab_c00001{bottom:785.466667pt;}
.y952_c00001{bottom:785.866667pt;}
.yedf_c00001{bottom:786.000000pt;}
.y620_c00001{bottom:786.133333pt;}
.y7f2_c00001{bottom:786.266667pt;}
.y2a8_c00001{bottom:786.400000pt;}
.ye_c00001{bottom:786.533333pt;}
.yc32_c00001{bottom:786.800000pt;}
.yd9a_c00001{bottom:786.933333pt;}
.y7b1_c00001{bottom:787.066667pt;}
.yc62_c00001{bottom:787.200000pt;}
.y360_c00001{bottom:787.466667pt;}
.yac5_c00001{bottom:787.600000pt;}
.y78d_c00001{bottom:787.733333pt;}
.y8d8_c00001{bottom:787.866667pt;}
.y536_c00001{bottom:788.133333pt;}
.yf9b_c00001{bottom:788.266667pt;}
.yf20_c00001{bottom:788.400000pt;}
.ye67_c00001{bottom:788.533333pt;}
.y412_c00001{bottom:788.666667pt;}
.ye78_c00001{bottom:788.800000pt;}
.y21f_c00001{bottom:789.066667pt;}
.yb93_c00001{bottom:789.466667pt;}
.y277_c00001{bottom:789.733333pt;}
.y187_c00001{bottom:790.400000pt;}
.yeed_c00001{bottom:790.533333pt;}
.ye8c_c00001{bottom:790.666667pt;}
.y2d6_c00001{bottom:790.800000pt;}
.y395_c00001{bottom:791.066667pt;}
.y980_c00001{bottom:791.333333pt;}
.ya1e_c00001{bottom:791.466667pt;}
.y64a_c00001{bottom:791.600000pt;}
.y32f_c00001{bottom:791.733333pt;}
.yd0b_c00001{bottom:791.866667pt;}
.y7c_c00001{bottom:792.266667pt;}
.yb4c_c00001{bottom:792.400000pt;}
.y9d4_c00001{bottom:792.533333pt;}
.ye0f_c00001{bottom:792.666667pt;}
.y1c1_c00001{bottom:792.933333pt;}
.yd73_c00001{bottom:793.333333pt;}
.y674_c00001{bottom:793.466667pt;}
.y5ff_c00001{bottom:793.600000pt;}
.y8af_c00001{bottom:793.866667pt;}
.y1f1_c00001{bottom:794.133333pt;}
.y8b4_c00001{bottom:794.266667pt;}
.y74a_c00001{bottom:794.400000pt;}
.ycc0_c00001{bottom:794.533333pt;}
.yc75_c00001{bottom:794.666667pt;}
.y302_c00001{bottom:794.800000pt;}
.ya7d_c00001{bottom:795.200000pt;}
.y44_c00001{bottom:795.466667pt;}
.y6c2_c00001{bottom:795.600000pt;}
.y5d4_c00001{bottom:795.733333pt;}
.y535_c00001{bottom:795.866667pt;}
.y442_c00001{bottom:796.133333pt;}
.y3e8_c00001{bottom:796.266667pt;}
.y69a_c00001{bottom:796.400000pt;}
.y72a_c00001{bottom:796.533333pt;}
.y9b8_c00001{bottom:796.666667pt;}
.ye7_c00001{bottom:796.800000pt;}
.yd23_c00001{bottom:797.200000pt;}
.y586_c00001{bottom:797.466667pt;}
.yec2_c00001{bottom:797.600000pt;}
.y55c_c00001{bottom:797.866667pt;}
.y6e8_c00001{bottom:798.400000pt;}
.y96c_c00001{bottom:798.666667pt;}
.yb64_c00001{bottom:798.800000pt;}
.y123_c00001{bottom:798.933333pt;}
.ybcf_c00001{bottom:799.066667pt;}
.yce0_c00001{bottom:799.200000pt;}
.ya2e_c00001{bottom:799.333333pt;}
.y507_c00001{bottom:799.600000pt;}
.y898_c00001{bottom:799.733333pt;}
.yfbf_c00001{bottom:799.866667pt;}
.y5b0_c00001{bottom:800.000000pt;}
.yaa0_c00001{bottom:800.266667pt;}
.ye40_c00001{bottom:800.666667pt;}
.yc19_c00001{bottom:800.933333pt;}
.ybbf_c00001{bottom:801.066667pt;}
.y729_c00001{bottom:801.200000pt;}
.yb30_c00001{bottom:801.333333pt;}
.y247_c00001{bottom:801.600000pt;}
.y61f_c00001{bottom:801.866667pt;}
.yede_c00001{bottom:802.000000pt;}
.y2a7_c00001{bottom:802.133333pt;}
.y7f1_c00001{bottom:802.266667pt;}
.yd_c00001{bottom:802.533333pt;}
.ydc3_c00001{bottom:802.666667pt;}
.y7b0_c00001{bottom:802.800000pt;}
.yac4_c00001{bottom:802.933333pt;}
.yf88_c00001{bottom:803.066667pt;}
.yc61_c00001{bottom:803.200000pt;}
.yb5f_c00001{bottom:803.333333pt;}
.y35f_c00001{bottom:803.466667pt;}
.y4c1_c00001{bottom:803.733333pt;}
.yb02_c00001{bottom:803.866667pt;}
.y411_c00001{bottom:804.000000pt;}
.ye66_c00001{bottom:804.133333pt;}
.yf9a_c00001{bottom:804.266667pt;}
.yad_c00001{bottom:804.400000pt;}
.y1047_c00001{bottom:804.533333pt;}
.ya47_c00001{bottom:804.666667pt;}
.y4e7_c00001{bottom:804.800000pt;}
.ydc5_c00001{bottom:805.466667pt;}
.y673_c00001{bottom:805.600000pt;}
.y276_c00001{bottom:805.733333pt;}
.y21e_c00001{bottom:806.000000pt;}
.y156_c00001{bottom:806.133333pt;}
.yeec_c00001{bottom:806.266667pt;}
.y394_c00001{bottom:806.400000pt;}
.y7ce_c00001{bottom:806.666667pt;}
.y32e_c00001{bottom:807.066667pt;}
.y649_c00001{bottom:807.333333pt;}
.ya1d_c00001{bottom:807.466667pt;}
.yd0a_c00001{bottom:807.866667pt;}
.y5fe_c00001{bottom:808.000000pt;}
.y7b_c00001{bottom:808.266667pt;}
.y1c0_c00001{bottom:808.666667pt;}
.y474_c00001{bottom:808.933333pt;}
.yb92_c00001{bottom:809.066667pt;}
.yade_c00001{bottom:809.333333pt;}
.y1f0_c00001{bottom:809.866667pt;}
.yaf1_c00001{bottom:810.133333pt;}
.y186_c00001{bottom:810.266667pt;}
.yc08_c00001{bottom:810.533333pt;}
.y704_c00001{bottom:810.666667pt;}
.yc74_c00001{bottom:810.933333pt;}
.ya7c_c00001{bottom:811.200000pt;}
.y6c1_c00001{bottom:811.333333pt;}
.y5d3_c00001{bottom:811.466667pt;}
.y3e7_c00001{bottom:811.600000pt;}
.y43_c00001{bottom:811.733333pt;}
.yb63_c00001{bottom:811.866667pt;}
.y90f_c00001{bottom:812.000000pt;}
.y301_c00001{bottom:812.133333pt;}
.ybe5_c00001{bottom:812.400000pt;}
.yfe5_c00001{bottom:812.533333pt;}
.y9b7_c00001{bottom:812.666667pt;}
.ye6_c00001{bottom:812.800000pt;}
.y1063_c00001{bottom:813.066667pt;}
.yec1_c00001{bottom:813.333333pt;}
.y3c3_c00001{bottom:813.466667pt;}
.y55b_c00001{bottom:813.600000pt;}
.yc18_c00001{bottom:813.733333pt;}
.y585_c00001{bottom:813.866667pt;}
.yca3_c00001{bottom:814.133333pt;}
.y6e7_c00001{bottom:814.400000pt;}
.y81c_c00001{bottom:814.666667pt;}
.y8f3_c00001{bottom:814.933333pt;}
.y122_c00001{bottom:815.200000pt;}
.y506_c00001{bottom:815.333333pt;}
.yd47_c00001{bottom:815.600000pt;}
.ye77_c00001{bottom:816.000000pt;}
.y858_c00001{bottom:816.266667pt;}
.yd22_c00001{bottom:816.400000pt;}
.y5af_c00001{bottom:816.933333pt;}
.ybbe_c00001{bottom:817.066667pt;}
.y728_c00001{bottom:817.200000pt;}
.ya79_c00001{bottom:817.333333pt;}
.y246_c00001{bottom:817.600000pt;}
.yedd_c00001{bottom:817.733333pt;}
.y2a6_c00001{bottom:818.133333pt;}
.ye52_c00001{bottom:818.266667pt;}
.y7af_c00001{bottom:818.533333pt;}
.y441_c00001{bottom:818.666667pt;}
.y672_c00001{bottom:819.066667pt;}
.y35e_c00001{bottom:819.200000pt;}
.yf87_c00001{bottom:819.333333pt;}
.y8d7_c00001{bottom:819.466667pt;}
.yb5e_c00001{bottom:819.600000pt;}
.y410_c00001{bottom:819.733333pt;}
.yc89_c00001{bottom:819.866667pt;}
.y878_c00001{bottom:820.000000pt;}
.y3c2_c00001{bottom:820.133333pt;}
.ya01_c00001{bottom:820.266667pt;}
.ydaf_c00001{bottom:820.400000pt;}
.y4e6_c00001{bottom:820.533333pt;}
.yf0b_c00001{bottom:820.800000pt;}
.ya46_c00001{bottom:820.933333pt;}
.y21d_c00001{bottom:821.066667pt;}
.y1046_c00001{bottom:821.200000pt;}
.y275_c00001{bottom:821.466667pt;}
.y61e_c00001{bottom:821.600000pt;}
.ybf6_c00001{bottom:821.733333pt;}
.ye8b_c00001{bottom:822.000000pt;}
.ydc2_c00001{bottom:822.133333pt;}
.y7f0_c00001{bottom:822.266667pt;}
.y7cd_c00001{bottom:822.400000pt;}
.yac3_c00001{bottom:822.666667pt;}
.y32d_c00001{bottom:823.066667pt;}
.ya1c_c00001{bottom:823.200000pt;}
.y97f_c00001{bottom:823.333333pt;}
.yd09_c00001{bottom:823.600000pt;}
.y5fd_c00001{bottom:823.733333pt;}
.y7a_c00001{bottom:824.000000pt;}
.yac_c00001{bottom:824.266667pt;}
.y473_c00001{bottom:824.666667pt;}
.yb91_c00001{bottom:825.066667pt;}
.y703_c00001{bottom:825.333333pt;}
.y300_c00001{bottom:825.600000pt;}
.y1ef_c00001{bottom:825.866667pt;}
.y1062_c00001{bottom:826.133333pt;}
.y185_c00001{bottom:826.266667pt;}
.yb4b_c00001{bottom:826.533333pt;}
.y749_c00001{bottom:826.666667pt;}
.y49e_c00001{bottom:826.800000pt;}
.yeb1_c00001{bottom:826.933333pt;}
.y5d2_c00001{bottom:827.200000pt;}
.y6c0_c00001{bottom:827.333333pt;}
.y42_c00001{bottom:827.466667pt;}
.y3e6_c00001{bottom:827.600000pt;}
.y3c1_c00001{bottom:827.866667pt;}
.y90e_c00001{bottom:828.000000pt;}
.ybe4_c00001{bottom:828.133333pt;}
.yc48_c00001{bottom:828.400000pt;}
.y9b6_c00001{bottom:828.666667pt;}
.ye5_c00001{bottom:828.800000pt;}
.ycd1_c00001{bottom:829.066667pt;}
.yec0_c00001{bottom:829.333333pt;}
.ycbf_c00001{bottom:829.466667pt;}
.y55a_c00001{bottom:829.600000pt;}
.yca2_c00001{bottom:829.733333pt;}
.y897_c00001{bottom:829.866667pt;}
.yb62_c00001{bottom:830.000000pt;}
.y393_c00001{bottom:830.133333pt;}
.y681_c00001{bottom:830.400000pt;}
.y81b_c00001{bottom:830.666667pt;}
.y121_c00001{bottom:830.933333pt;}
.ycdf_c00001{bottom:831.200000pt;}
.y505_c00001{bottom:831.333333pt;}
.yd46_c00001{bottom:831.600000pt;}
.y1bc_c00001{bottom:832.000000pt;}
.y857_c00001{bottom:832.266667pt;}
.yd52_c00001{bottom:832.533333pt;}
.y92c_c00001{bottom:832.666667pt;}
.ybbd_c00001{bottom:832.800000pt;}
.y5ae_c00001{bottom:832.933333pt;}
.yc_c00001{bottom:833.333333pt;}
.y245_c00001{bottom:833.600000pt;}
.yb17_c00001{bottom:833.866667pt;}
.yedc_c00001{bottom:834.000000pt;}
.y2a5_c00001{bottom:834.133333pt;}
.y7ae_c00001{bottom:834.533333pt;}
.y35d_c00001{bottom:834.933333pt;}
.y772_c00001{bottom:835.200000pt;}
.ya9f_c00001{bottom:835.333333pt;}
.y40f_c00001{bottom:835.466667pt;}
.y440_c00001{bottom:835.600000pt;}
.y4c0_c00001{bottom:835.733333pt;}
.ybaa_c00001{bottom:835.866667pt;}
.ye51_c00001{bottom:836.133333pt;}
.ya45_c00001{bottom:836.266667pt;}
.ya78_c00001{bottom:836.533333pt;}
.y4e5_c00001{bottom:836.800000pt;}
.y951_c00001{bottom:837.333333pt;}
.y274_c00001{bottom:837.466667pt;}
.y6e6_c00001{bottom:837.600000pt;}
.ye8a_c00001{bottom:837.733333pt;}
.ydc1_c00001{bottom:838.133333pt;}
.y7ef_c00001{bottom:838.266667pt;}
.y3c0_c00001{bottom:838.400000pt;}
.y32c_c00001{bottom:838.666667pt;}
.yf72_c00001{bottom:838.800000pt;}
.y648_c00001{bottom:838.933333pt;}
.yb01_c00001{bottom:839.066667pt;}
.ya1b_c00001{bottom:839.200000pt;}
.yd08_c00001{bottom:839.333333pt;}
.y5fc_c00001{bottom:839.466667pt;}
.y9d3_c00001{bottom:839.733333pt;}
.y79_c00001{bottom:840.000000pt;}
.yd51_c00001{bottom:840.266667pt;}
.y472_c00001{bottom:840.400000pt;}
.ydf8_c00001{bottom:840.666667pt;}
.y21c_c00001{bottom:840.933333pt;}
.y61d_c00001{bottom:841.066667pt;}
.y1bf_c00001{bottom:841.333333pt;}
.y2d5_c00001{bottom:841.600000pt;}
.y998_c00001{bottom:841.733333pt;}
.y1ee_c00001{bottom:841.866667pt;}
.y1061_c00001{bottom:842.133333pt;}
.y155_c00001{bottom:842.266667pt;}
.y748_c00001{bottom:842.400000pt;}
.y49d_c00001{bottom:842.533333pt;}
.y3e5_c00001{bottom:842.933333pt;}
.y6bf_c00001{bottom:843.066667pt;}
.y534_c00001{bottom:843.333333pt;}
.y41_c00001{bottom:843.466667pt;}
.y90d_c00001{bottom:843.733333pt;}
.y1bb_c00001{bottom:843.866667pt;}
.yab_c00001{bottom:844.000000pt;}
.yc47_c00001{bottom:844.133333pt;}
.yfda_c00001{bottom:844.533333pt;}
.y9b5_c00001{bottom:844.666667pt;}
.ycd0_c00001{bottom:845.066667pt;}
.yd50_c00001{bottom:845.333333pt;}
.y702_c00001{bottom:845.466667pt;}
.y559_c00001{bottom:845.600000pt;}
.y184_c00001{bottom:845.733333pt;}
.y392_c00001{bottom:845.866667pt;}
.yd99_c00001{bottom:846.133333pt;}
.y81a_c00001{bottom:846.400000pt;}
.y120_c00001{bottom:846.933333pt;}
.y504_c00001{bottom:847.066667pt;}
.yd45_c00001{bottom:847.333333pt;}
.ya5a_c00001{bottom:847.466667pt;}
.ybe3_c00001{bottom:847.733333pt;}
.ye4_c00001{bottom:848.000000pt;}
.yfed_c00001{bottom:848.266667pt;}
.ye5b_c00001{bottom:848.400000pt;}
.y92b_c00001{bottom:848.533333pt;}
.yd21_c00001{bottom:848.666667pt;}
.y584_c00001{bottom:848.933333pt;}
.y103a_c00001{bottom:849.066667pt;}
.yb_c00001{bottom:849.333333pt;}
.yc34_c00001{bottom:849.600000pt;}
.y78c_c00001{bottom:849.866667pt;}
.ya77_c00001{bottom:850.133333pt;}
.y7ad_c00001{bottom:850.533333pt;}
.yc60_c00001{bottom:850.666667pt;}
.y647_c00001{bottom:850.800000pt;}
.yb5d_c00001{bottom:850.933333pt;}
.y8d6_c00001{bottom:851.200000pt;}
.ya9e_c00001{bottom:851.333333pt;}
.y2a4_c00001{bottom:851.466667pt;}
.ye65_c00001{bottom:851.600000pt;}
.y4bf_c00001{bottom:851.733333pt;}
.y43f_c00001{bottom:851.866667pt;}
.yb2f_c00001{bottom:852.133333pt;}
.ya44_c00001{bottom:852.266667pt;}
.y4e4_c00001{bottom:852.533333pt;}
.y5ad_c00001{bottom:852.800000pt;}
.y727_c00001{bottom:852.933333pt;}
.y950_c00001{bottom:853.066667pt;}
.y1be_c00001{bottom:853.466667pt;}
.y6e5_c00001{bottom:853.600000pt;}
.ye89_c00001{bottom:853.733333pt;}
.y7ee_c00001{bottom:854.266667pt;}
.y35c_c00001{bottom:854.400000pt;}
.yf71_c00001{bottom:854.533333pt;}
.y32b_c00001{bottom:854.666667pt;}
.ya1a_c00001{bottom:854.933333pt;}
.yd3f_c00001{bottom:855.066667pt;}
.y5fb_c00001{bottom:855.200000pt;}
.ye3f_c00001{bottom:855.333333pt;}
.yd07_c00001{bottom:855.600000pt;}
.yf2d_c00001{bottom:855.733333pt;}
.y78_c00001{bottom:856.000000pt;}
.y214_c00001{bottom:856.266667pt;}
.y471_c00001{bottom:856.400000pt;}
.y1ba_c00001{bottom:856.666667pt;}
.y21b_c00001{bottom:856.933333pt;}
.yb90_c00001{bottom:857.066667pt;}
.y2ff_c00001{bottom:857.200000pt;}
.y671_c00001{bottom:857.333333pt;}
.y1ed_c00001{bottom:857.600000pt;}
.yb4a_c00001{bottom:857.866667pt;}
.y997_c00001{bottom:858.000000pt;}
.yb00_c00001{bottom:858.133333pt;}
.y6be_c00001{bottom:858.400000pt;}
.y49c_c00001{bottom:858.533333pt;}
.yfb1_c00001{bottom:858.933333pt;}
.y533_c00001{bottom:859.066667pt;}
.y40_c00001{bottom:859.200000pt;}
.yf46_c00001{bottom:859.466667pt;}
.yc46_c00001{bottom:859.866667pt;}
.yaa_c00001{bottom:860.000000pt;}
.y9b4_c00001{bottom:860.400000pt;}
.y61c_c00001{bottom:860.533333pt;}
.yc33_c00001{bottom:860.800000pt;}
.yebe_c00001{bottom:860.933333pt;}
.y3e4_c00001{bottom:861.066667pt;}
.y558_c00001{bottom:861.333333pt;}
.y701_c00001{bottom:861.466667pt;}
.y391_c00001{bottom:861.600000pt;}
.y896_c00001{bottom:861.866667pt;}
.y154_c00001{bottom:862.000000pt;}
.y819_c00001{bottom:862.133333pt;}
.y11f_c00001{bottom:862.666667pt;}
.y503_c00001{bottom:862.800000pt;}
.ycde_c00001{bottom:862.933333pt;}
.y97e_c00001{bottom:863.200000pt;}
.ya00_c00001{bottom:863.333333pt;}
.y9d2_c00001{bottom:863.466667pt;}
.yfbe_c00001{bottom:863.600000pt;}
.yfec_c00001{bottom:863.733333pt;}
.ye3_c00001{bottom:864.000000pt;}
.ye5a_c00001{bottom:864.133333pt;}
.ye76_c00001{bottom:864.400000pt;}
.y92a_c00001{bottom:864.533333pt;}
.yc17_c00001{bottom:864.666667pt;}
.y1039_c00001{bottom:864.800000pt;}
.yc88_c00001{bottom:864.933333pt;}
.ya_c00001{bottom:865.066667pt;}
.ybce_c00001{bottom:865.333333pt;}
.y2a3_c00001{bottom:865.866667pt;}
.y3bf_c00001{bottom:866.000000pt;}
.y7ac_c00001{bottom:866.266667pt;}
.y583_c00001{bottom:866.533333pt;}
.yc5f_c00001{bottom:866.666667pt;}
.y244_c00001{bottom:866.933333pt;}
.y699_c00001{bottom:867.066667pt;}
.y5d1_c00001{bottom:867.200000pt;}
.y43e_c00001{bottom:867.466667pt;}
.yd4f_c00001{bottom:867.600000pt;}
.yc31_c00001{bottom:867.866667pt;}
.y4be_c00001{bottom:868.000000pt;}
.yadd_c00001{bottom:868.133333pt;}
.yf99_c00001{bottom:868.266667pt;}
.y4e3_c00001{bottom:868.533333pt;}
.y5ac_c00001{bottom:868.800000pt;}
.y94f_c00001{bottom:869.066667pt;}
.y1b9_c00001{bottom:869.466667pt;}
.y6e4_c00001{bottom:869.600000pt;}
.yc73_c00001{bottom:869.733333pt;}
.y771_c00001{bottom:869.866667pt;}
.y7ed_c00001{bottom:870.000000pt;}
.y32a_c00001{bottom:870.400000pt;}
.yb5c_c00001{bottom:870.533333pt;}
.y83a_c00001{bottom:870.666667pt;}
.y1045_c00001{bottom:871.066667pt;}
.y5fa_c00001{bottom:871.200000pt;}
.y273_c00001{bottom:871.333333pt;}
.ye1f_c00001{bottom:871.466667pt;}
.y877_c00001{bottom:871.733333pt;}
.y77_c00001{bottom:872.000000pt;}
.y470_c00001{bottom:872.133333pt;}
.yd81_c00001{bottom:872.266667pt;}
.y646_c00001{bottom:872.800000pt;}
.ybf5_c00001{bottom:872.933333pt;}
.y726_c00001{bottom:873.066667pt;}
.y2fe_c00001{bottom:873.200000pt;}
.ycbe_c00001{bottom:873.466667pt;}
.y1ec_c00001{bottom:873.600000pt;}
.yb7f_c00001{bottom:873.866667pt;}
.y996_c00001{bottom:874.000000pt;}
.y747_c00001{bottom:874.133333pt;}
.y49b_c00001{bottom:874.266667pt;}
.y6bd_c00001{bottom:874.400000pt;}
.y532_c00001{bottom:874.800000pt;}
.yb49_c00001{bottom:874.933333pt;}
.y1060_c00001{bottom:875.066667pt;}
.y3f_c00001{bottom:875.200000pt;}
.yfce_c00001{bottom:875.466667pt;}
.ya9_c00001{bottom:875.733333pt;}
.yba9_c00001{bottom:875.866667pt;}
.yfe4_c00001{bottom:876.133333pt;}
.y9b3_c00001{bottom:876.400000pt;}
.y9e5_c00001{bottom:876.666667pt;}
.yccf_c00001{bottom:876.800000pt;}
.yebd_c00001{bottom:876.933333pt;}
.y557_c00001{bottom:877.066667pt;}
.y895_c00001{bottom:877.200000pt;}
.y8b3_c00001{bottom:877.333333pt;}
.y1067_c00001{bottom:877.466667pt;}
.y390_c00001{bottom:877.600000pt;}
.y183_c00001{bottom:877.733333pt;}
.y153_c00001{bottom:878.000000pt;}
.ycfd_c00001{bottom:878.133333pt;}
.yaf0_c00001{bottom:878.266667pt;}
.y3e3_c00001{bottom:878.400000pt;}
.y11e_c00001{bottom:878.666667pt;}
.y97d_c00001{bottom:878.933333pt;}
.y502_c00001{bottom:879.066667pt;}
.y9d1_c00001{bottom:879.200000pt;}
.y700_c00001{bottom:879.333333pt;}
.y9ff_c00001{bottom:879.600000pt;}
.ye75_c00001{bottom:879.733333pt;}
.ye59_c00001{bottom:879.866667pt;}
.y856_c00001{bottom:880.000000pt;}
.y61b_c00001{bottom:880.266667pt;}
.yd4e_c00001{bottom:880.666667pt;}
.y21a_c00001{bottom:880.800000pt;}
.yf56_c00001{bottom:880.933333pt;}
.y1038_c00001{bottom:881.066667pt;}
.y9_c00001{bottom:881.333333pt;}
.y2a2_c00001{bottom:881.600000pt;}
.y1b8_c00001{bottom:882.000000pt;}
.y7ab_c00001{bottom:882.133333pt;}
.y78b_c00001{bottom:882.266667pt;}
.y5d0_c00001{bottom:882.533333pt;}
.y770_c00001{bottom:882.666667pt;}
.ya9d_c00001{bottom:882.800000pt;}
.yc5e_c00001{bottom:882.933333pt;}
.y698_c00001{bottom:883.066667pt;}
.y43d_c00001{bottom:883.200000pt;}
.y4bd_c00001{bottom:883.333333pt;}
.yd63_c00001{bottom:883.466667pt;}
.ya43_c00001{bottom:883.733333pt;}
.yca1_c00001{bottom:883.866667pt;}
.y725_c00001{bottom:884.533333pt;}
.y582_c00001{bottom:884.666667pt;}
.y5ab_c00001{bottom:884.800000pt;}
.yb16_c00001{bottom:884.933333pt;}
.y272_c00001{bottom:885.066667pt;}
.yf98_c00001{bottom:885.200000pt;}
.y645_c00001{bottom:885.333333pt;}
.y3be_c00001{bottom:885.466667pt;}
.ye96_c00001{bottom:885.733333pt;}
.y7ec_c00001{bottom:886.000000pt;}
.y329_c00001{bottom:886.133333pt;}
.y4e2_c00001{bottom:886.266667pt;}
.y839_c00001{bottom:886.400000pt;}
.yf70_c00001{bottom:886.533333pt;}
.y1010_c00001{bottom:886.666667pt;}
.y5f9_c00001{bottom:886.933333pt;}
.yd06_c00001{bottom:887.066667pt;}
.ye1e_c00001{bottom:887.200000pt;}
.ye3e_c00001{bottom:887.333333pt;}
.yf2c_c00001{bottom:887.466667pt;}
.ydae_c00001{bottom:887.733333pt;}
.y46f_c00001{bottom:887.866667pt;}
.y76_c00001{bottom:888.000000pt;}
.ydf7_c00001{bottom:888.133333pt;}
.yb8f_c00001{bottom:889.066667pt;}
.y2fd_c00001{bottom:889.200000pt;}
.y2d4_c00001{bottom:889.333333pt;}
.ydc0_c00001{bottom:889.600000pt;}
.yac2_c00001{bottom:889.733333pt;}
.y746_c00001{bottom:889.866667pt;}
.yb7e_c00001{bottom:890.133333pt;}
.yd72_c00001{bottom:890.266667pt;}
.y6bc_c00001{bottom:890.400000pt;}
.y531_c00001{bottom:890.533333pt;}
.y995_c00001{bottom:890.666667pt;}
.y3e_c00001{bottom:891.200000pt;}
.y105f_c00001{bottom:891.333333pt;}
.y90c_c00001{bottom:891.466667pt;}
.ya8_c00001{bottom:891.733333pt;}
.yb48_c00001{bottom:891.866667pt;}
.yba8_c00001{bottom:892.133333pt;}
.y9b2_c00001{bottom:892.400000pt;}
.ycce_c00001{bottom:892.533333pt;}
.yea2_c00001{bottom:892.666667pt;}
.y6ff_c00001{bottom:892.800000pt;}
.y894_c00001{bottom:892.933333pt;}
.y556_c00001{bottom:893.066667pt;}
.y1eb_c00001{bottom:893.333333pt;}
.y49a_c00001{bottom:893.466667pt;}
.y152_c00001{bottom:893.733333pt;}
.y1066_c00001{bottom:894.133333pt;}
.y501_c00001{bottom:894.400000pt;}
.y11d_c00001{bottom:894.666667pt;}
.y1b7_c00001{bottom:894.800000pt;}
.y876_c00001{bottom:894.933333pt;}
.ye2_c00001{bottom:895.066667pt;}
.y9d0_c00001{bottom:895.200000pt;}
.y76f_c00001{bottom:895.466667pt;}
.y9fe_c00001{bottom:895.600000pt;}
.y855_c00001{bottom:895.733333pt;}
.ye58_c00001{bottom:895.866667pt;}
.ye74_c00001{bottom:896.000000pt;}
.y61a_c00001{bottom:896.266667pt;}
.yc87_c00001{bottom:896.533333pt;}
.ye3d_c00001{bottom:896.666667pt;}
.y8_c00001{bottom:896.933333pt;}
.y219_c00001{bottom:897.066667pt;}
.y243_c00001{bottom:897.333333pt;}
.y182_c00001{bottom:897.600000pt;}
.y7aa_c00001{bottom:897.866667pt;}
.y5cf_c00001{bottom:898.133333pt;}
.y78a_c00001{bottom:898.266667pt;}
.y8d5_c00001{bottom:898.533333pt;}
.yc5d_c00001{bottom:898.666667pt;}
.y697_c00001{bottom:898.800000pt;}
.y43c_c00001{bottom:898.933333pt;}
.y4bc_c00001{bottom:899.066667pt;}
.ye3c_c00001{bottom:899.200000pt;}
.ya42_c00001{bottom:899.466667pt;}
.y105e_c00001{bottom:899.600000pt;}
.yca0_c00001{bottom:900.133333pt;}
.ydc4_c00001{bottom:900.266667pt;}
.y581_c00001{bottom:900.400000pt;}
.y5aa_c00001{bottom:900.533333pt;}
.yadc_c00001{bottom:900.800000pt;}
.yb15_c00001{bottom:900.933333pt;}
.y271_c00001{bottom:901.066667pt;}
.y6e3_c00001{bottom:901.333333pt;}
.yeb0_c00001{bottom:901.466667pt;}
.y328_c00001{bottom:901.733333pt;}
.y35b_c00001{bottom:901.866667pt;}
.y7eb_c00001{bottom:902.000000pt;}
.yf52_c00001{bottom:902.133333pt;}
.y724_c00001{bottom:902.400000pt;}
.yf6f_c00001{bottom:902.533333pt;}
.ye50_c00001{bottom:902.666667pt;}
.y5f8_c00001{bottom:902.933333pt;}
.ydad_c00001{bottom:903.066667pt;}
.y4e1_c00001{bottom:903.200000pt;}
.yf2b_c00001{bottom:903.466667pt;}
.y1020_c00001{bottom:903.733333pt;}
.y46e_c00001{bottom:903.866667pt;}
.y75_c00001{bottom:904.000000pt;}
.ydf6_c00001{bottom:904.133333pt;}
.y97c_c00001{bottom:904.266667pt;}
.y100e_c00001{bottom:904.533333pt;}
.yb8e_c00001{bottom:904.800000pt;}
.y2fc_c00001{bottom:904.933333pt;}
.y94e_c00001{bottom:905.200000pt;}
.y2d3_c00001{bottom:905.333333pt;}
.yaff_c00001{bottom:905.466667pt;}
.y3bd_c00001{bottom:905.600000pt;}
.yac1_c00001{bottom:905.733333pt;}
.y745_c00001{bottom:905.866667pt;}
.y994_c00001{bottom:906.000000pt;}
.y6bb_c00001{bottom:906.133333pt;}
.yd05_c00001{bottom:906.266667pt;}
.y530_c00001{bottom:906.533333pt;}
.yd3e_c00001{bottom:906.933333pt;}
.ya7_c00001{bottom:907.466667pt;}
.y1b6_c00001{bottom:907.600000pt;}
.yfb0_c00001{bottom:907.733333pt;}
.yfcd_c00001{bottom:907.866667pt;}
.y670_c00001{bottom:908.133333pt;}
.ycec_c00001{bottom:908.400000pt;}
.y76e_c00001{bottom:908.533333pt;}
.yea1_c00001{bottom:908.666667pt;}
.y6fe_c00001{bottom:908.800000pt;}
.y893_c00001{bottom:908.933333pt;}
.y555_c00001{bottom:909.066667pt;}
.y1ea_c00001{bottom:909.333333pt;}
.y3d_c00001{bottom:909.466667pt;}
.yc07_c00001{bottom:909.733333pt;}
.yd71_c00001{bottom:909.866667pt;}
.y151_c00001{bottom:910.000000pt;}
.y499_c00001{bottom:910.133333pt;}
.y3e2_c00001{bottom:910.400000pt;}
.y40e_c00001{bottom:910.666667pt;}
.y11c_c00001{bottom:910.933333pt;}
.ye73_c00001{bottom:911.066667pt;}
.yaef_c00001{bottom:911.200000pt;}
.yccd_c00001{bottom:911.600000pt;}
.ye1_c00001{bottom:911.733333pt;}
.y644_c00001{bottom:911.866667pt;}
.y929_c00001{bottom:912.000000pt;}
.y9cf_c00001{bottom:912.533333pt;}
.yd98_c00001{bottom:912.666667pt;}
.y7_c00001{bottom:912.933333pt;}
.y218_c00001{bottom:913.066667pt;}
.ybe2_c00001{bottom:913.200000pt;}
.y242_c00001{bottom:913.333333pt;}
.y2a1_c00001{bottom:913.600000pt;}
.y181_c00001{bottom:913.866667pt;}
.y5ce_c00001{bottom:914.133333pt;}
.y1037_c00001{bottom:914.266667pt;}
.yc5c_c00001{bottom:914.400000pt;}
.y696_c00001{bottom:914.533333pt;}
.y854_c00001{bottom:914.800000pt;}
.ye2d_c00001{bottom:914.933333pt;}
.y4bb_c00001{bottom:915.066667pt;}
.ya41_c00001{bottom:915.200000pt;}
.y619_c00001{bottom:915.466667pt;}
.yf11_c00001{bottom:915.600000pt;}
.y723_c00001{bottom:916.133333pt;}
.yb2e_c00001{bottom:916.266667pt;}
.y580_c00001{bottom:916.400000pt;}
.ybbc_c00001{bottom:916.533333pt;}
.y270_c00001{bottom:916.800000pt;}
.yb14_c00001{bottom:916.933333pt;}
.y6e2_c00001{bottom:917.066667pt;}
.y327_c00001{bottom:917.733333pt;}
.y35a_c00001{bottom:917.866667pt;}
.y7cc_c00001{bottom:918.133333pt;}
.ya75_c00001{bottom:918.400000pt;}
.y96b_c00001{bottom:918.666667pt;}
.yf6e_c00001{bottom:918.800000pt;}
.y5f7_c00001{bottom:918.933333pt;}
.ye1d_c00001{bottom:919.200000pt;}
.yb5b_c00001{bottom:919.333333pt;}
.y4e0_c00001{bottom:919.466667pt;}
.y74_c00001{bottom:919.733333pt;}
.y46d_c00001{bottom:919.866667pt;}
.y66f_c00001{bottom:920.000000pt;}
.y100d_c00001{bottom:920.266667pt;}
.yb8d_c00001{bottom:920.533333pt;}
.y3bc_c00001{bottom:920.666667pt;}
.y94d_c00001{bottom:920.933333pt;}
.y76d_c00001{bottom:921.066667pt;}
.yafe_c00001{bottom:921.200000pt;}
.y1b5_c00001{bottom:921.333333pt;}
.yac0_c00001{bottom:921.466667pt;}
.yfe7_c00001{bottom:921.600000pt;}
.y52f_c00001{bottom:921.866667pt;}
.ya59_c00001{bottom:922.000000pt;}
.yd44_c00001{bottom:922.266667pt;}
.yd3d_c00001{bottom:922.666667pt;}
.yf97_c00001{bottom:922.800000pt;}
.ydac_c00001{bottom:922.933333pt;}
.y3c_c00001{bottom:923.200000pt;}
.ya6_c00001{bottom:923.466667pt;}
.yceb_c00001{bottom:923.733333pt;}
.yf55_c00001{bottom:923.866667pt;}
.y9e4_c00001{bottom:924.133333pt;}
.y105d_c00001{bottom:924.266667pt;}
.y643_c00001{bottom:924.400000pt;}
.y6fd_c00001{bottom:924.533333pt;}
.y892_c00001{bottom:924.666667pt;}
.y8b2_c00001{bottom:924.800000pt;}
.y1e9_c00001{bottom:925.066667pt;}
.y38f_c00001{bottom:925.333333pt;}
.yc70_c00001{bottom:925.466667pt;}
.y150_c00001{bottom:925.733333pt;}
.y8f2_c00001{bottom:926.000000pt;}
.y498_c00001{bottom:926.133333pt;}
.y3e1_c00001{bottom:926.400000pt;}
.yd70_c00001{bottom:926.533333pt;}
.y875_c00001{bottom:926.666667pt;}
.y11b_c00001{bottom:926.933333pt;}
.y97b_c00001{bottom:927.066667pt;}
.ye57_c00001{bottom:927.333333pt;}
.yd20_c00001{bottom:927.466667pt;}
.y2fb_c00001{bottom:927.600000pt;}
.ye0_c00001{bottom:927.733333pt;}
.y8d4_c00001{bottom:928.000000pt;}
.yccc_c00001{bottom:928.266667pt;}
.ya9c_c00001{bottom:928.533333pt;}
.y818_c00001{bottom:928.666667pt;}
.ya76_c00001{bottom:928.933333pt;}
.y217_c00001{bottom:929.066667pt;}
.y2a0_c00001{bottom:929.333333pt;}
.y1bd_c00001{bottom:929.600000pt;}
.y180_c00001{bottom:929.866667pt;}
.yc5b_c00001{bottom:930.133333pt;}
.ye3b_c00001{bottom:930.533333pt;}
.ye72_c00001{bottom:930.666667pt;}
.y4ba_c00001{bottom:930.800000pt;}
.ya40_c00001{bottom:931.200000pt;}
.y618_c00001{bottom:931.466667pt;}
.y6_c00001{bottom:931.733333pt;}
.y722_c00001{bottom:931.866667pt;}
.yb2d_c00001{bottom:932.000000pt;}
.y57f_c00001{bottom:932.133333pt;}
.ye64_c00001{bottom:932.266667pt;}
.ybcd_c00001{bottom:932.400000pt;}
.ye88_c00001{bottom:932.533333pt;}
.yb13_c00001{bottom:932.666667pt;}
.y1b4_c00001{bottom:932.800000pt;}
.y1036_c00001{bottom:933.066667pt;}
.y326_c00001{bottom:933.333333pt;}
.yc16_c00001{bottom:933.466667pt;}
.y695_c00001{bottom:933.733333pt;}
.y359_c00001{bottom:933.866667pt;}
.y43b_c00001{bottom:934.000000pt;}
.y76c_c00001{bottom:934.133333pt;}
.yc9f_c00001{bottom:934.400000pt;}
.ya74_c00001{bottom:934.933333pt;}
.y3b_c00001{bottom:935.066667pt;}
.y46c_c00001{bottom:935.200000pt;}
.ybf4_c00001{bottom:935.333333pt;}
.yf2a_c00001{bottom:935.466667pt;}
.ydf5_c00001{bottom:935.600000pt;}
.y73_c00001{bottom:935.733333pt;}
.y5f6_c00001{bottom:935.866667pt;}
.yd97_c00001{bottom:936.000000pt;}
.ycbd_c00001{bottom:936.266667pt;}
.yc78_c00001{bottom:936.666667pt;}
.yb8c_c00001{bottom:936.800000pt;}
.yafd_c00001{bottom:936.933333pt;}
.yc72_c00001{bottom:937.066667pt;}
.y2fa_c00001{bottom:937.200000pt;}
.y2d2_c00001{bottom:937.333333pt;}
.ya19_c00001{bottom:937.466667pt;}
.y744_c00001{bottom:937.600000pt;}
.y96a_c00001{bottom:937.866667pt;}
.yfe6_c00001{bottom:938.266667pt;}
.yf96_c00001{bottom:938.800000pt;}
.ydab_c00001{bottom:938.933333pt;}
.yd1f_c00001{bottom:939.333333pt;}
.ya5_c00001{bottom:939.466667pt;}
.yfe3_c00001{bottom:939.866667pt;}
.y9b1_c00001{bottom:940.133333pt;}
.y6e1_c00001{bottom:940.400000pt;}
.y38e_c00001{bottom:940.666667pt;}
.y100c_c00001{bottom:940.800000pt;}
.y1e8_c00001{bottom:941.066667pt;}
.y6fc_c00001{bottom:941.200000pt;}
.y14f_c00001{bottom:941.466667pt;}
.y3e0_c00001{bottom:941.733333pt;}
.y90b_c00001{bottom:942.000000pt;}
.y500_c00001{bottom:942.133333pt;}
.yd6f_c00001{bottom:942.266667pt;}
.yfd9_c00001{bottom:942.400000pt;}
.yaee_c00001{bottom:942.666667pt;}
.y11a_c00001{bottom:942.933333pt;}
.y838_c00001{bottom:943.066667pt;}
.ydf_c00001{bottom:943.333333pt;}
.yc15_c00001{bottom:943.733333pt;}
.y928_c00001{bottom:944.000000pt;}
.y497_c00001{bottom:944.266667pt;}
.ya73_c00001{bottom:944.533333pt;}
.yb47_c00001{bottom:944.666667pt;}
.y817_c00001{bottom:944.933333pt;}
.y216_c00001{bottom:945.066667pt;}
.y6ba_c00001{bottom:945.333333pt;}
.y1b3_c00001{bottom:945.600000pt;}
.y40d_c00001{bottom:945.866667pt;}
.y874_c00001{bottom:946.000000pt;}
.yc5a_c00001{bottom:946.133333pt;}
.yc06_c00001{bottom:946.266667pt;}
.ye63_c00001{bottom:946.400000pt;}
.ye87_c00001{bottom:946.533333pt;}
.y4b9_c00001{bottom:946.800000pt;}
.y76b_c00001{bottom:946.933333pt;}
.y853_c00001{bottom:947.200000pt;}
.y1035_c00001{bottom:947.466667pt;}
.yb2c_c00001{bottom:947.733333pt;}
.y57e_c00001{bottom:947.866667pt;}
.y9e3_c00001{bottom:948.133333pt;}
.y5_c00001{bottom:948.400000pt;}
.y3a_c00001{bottom:948.533333pt;}
.ycdd_c00001{bottom:948.800000pt;}
.ya72_c00001{bottom:949.066667pt;}
.y17f_c00001{bottom:949.200000pt;}
.y325_c00001{bottom:949.333333pt;}
.yc14_c00001{bottom:949.466667pt;}
.y358_c00001{bottom:949.600000pt;}
.y7cb_c00001{bottom:949.733333pt;}
.yf1f_c00001{bottom:949.866667pt;}
.y694_c00001{bottom:950.000000pt;}
.y66e_c00001{bottom:950.133333pt;}
.y43a_c00001{bottom:950.266667pt;}
.ye2c_c00001{bottom:950.400000pt;}
.y617_c00001{bottom:950.666667pt;}
.ye0e_c00001{bottom:951.066667pt;}
.y46b_c00001{bottom:951.200000pt;}
.y3bb_c00001{bottom:951.333333pt;}
.yf86_c00001{bottom:951.466667pt;}
.y72_c00001{bottom:951.733333pt;}
.yde5_c00001{bottom:951.866667pt;}
.yd96_c00001{bottom:952.000000pt;}
.y5a9_c00001{bottom:952.133333pt;}
.ye95_c00001{bottom:952.266667pt;}
.yb12_c00001{bottom:952.533333pt;}
.y2d1_c00001{bottom:952.666667pt;}
.ycfc_c00001{bottom:952.800000pt;}
.y2f9_c00001{bottom:952.933333pt;}
.yabf_c00001{bottom:953.200000pt;}
.ya18_c00001{bottom:953.466667pt;}
.y743_c00001{bottom:953.600000pt;}
.ye3a_c00001{bottom:954.000000pt;}
.yc2f_c00001{bottom:954.533333pt;}
.yc45_c00001{bottom:954.933333pt;}
.yeeb_c00001{bottom:955.200000pt;}
.yd1e_c00001{bottom:955.333333pt;}
.ya4_c00001{bottom:955.466667pt;}
.yebf_c00001{bottom:955.600000pt;}
.y6fb_c00001{bottom:955.866667pt;}
.ye4f_c00001{bottom:956.133333pt;}
.y6e0_c00001{bottom:956.400000pt;}
.yd80_c00001{bottom:956.533333pt;}
.y38d_c00001{bottom:956.666667pt;}
.y1e7_c00001{bottom:956.800000pt;}
.y554_c00001{bottom:957.066667pt;}
.y105c_c00001{bottom:957.200000pt;}
.y52e_c00001{bottom:957.733333pt;}
.yd6e_c00001{bottom:958.000000pt;}
.y9b0_c00001{bottom:958.133333pt;}
.y1b2_c00001{bottom:958.400000pt;}
.y9ce_c00001{bottom:958.666667pt;}
.y119_c00001{bottom:959.200000pt;}
.yde_c00001{bottom:959.333333pt;}
.y76a_c00001{bottom:959.466667pt;}
.y90a_c00001{bottom:959.600000pt;}
.y927_c00001{bottom:960.000000pt;}
.y39_c00001{bottom:960.533333pt;}
.y816_c00001{bottom:960.666667pt;}
.y9fd_c00001{bottom:960.933333pt;}
.y14e_c00001{bottom:961.066667pt;}
.y3df_c00001{bottom:961.333333pt;}
.y115_c00001{bottom:961.600000pt;}
.y4ff_c00001{bottom:961.866667pt;}
.y873_c00001{bottom:962.000000pt;}
.y642_c00001{bottom:962.133333pt;}
.ye71_c00001{bottom:962.266667pt;}
.y4b8_c00001{bottom:962.800000pt;}
.y852_c00001{bottom:963.200000pt;}
.yb61_c00001{bottom:963.466667pt;}
.yadb_c00001{bottom:963.600000pt;}
.yb2b_c00001{bottom:963.733333pt;}
.y57d_c00001{bottom:963.866667pt;}
.ybbb_c00001{bottom:964.000000pt;}
.yc86_c00001{bottom:964.133333pt;}
.y4_c00001{bottom:964.400000pt;}
.y26f_c00001{bottom:964.533333pt;}
.y5cd_c00001{bottom:964.800000pt;}
.y324_c00001{bottom:965.066667pt;}
.y357_c00001{bottom:965.333333pt;}
.ya6f_c00001{bottom:965.466667pt;}
.y7ca_c00001{bottom:965.733333pt;}
.y5f5_c00001{bottom:966.000000pt;}
.yf1e_c00001{bottom:966.133333pt;}
.y439_c00001{bottom:966.266667pt;}
.y616_c00001{bottom:966.666667pt;}
.y46a_c00001{bottom:966.933333pt;}
.ydf4_c00001{bottom:967.066667pt;}
.y1034_c00001{bottom:967.333333pt;}
.yde4_c00001{bottom:967.600000pt;}
.yd95_c00001{bottom:967.733333pt;}
.ya71_c00001{bottom:968.000000pt;}
.y5a8_c00001{bottom:968.133333pt;}
.yb11_c00001{bottom:968.266667pt;}
.yb8b_c00001{bottom:968.533333pt;}
.y2d0_c00001{bottom:968.666667pt;}
.ycfb_c00001{bottom:968.800000pt;}
.y2f8_c00001{bottom:968.933333pt;}
.ya17_c00001{bottom:969.200000pt;}
.y17e_c00001{bottom:969.333333pt;}
.y742_c00001{bottom:969.866667pt;}
.y71_c00001{bottom:970.133333pt;}
.yedb_c00001{bottom:970.533333pt;}
.ycb3_c00001{bottom:970.800000pt;}
.y6b9_c00001{bottom:970.933333pt;}
.y1b1_c00001{bottom:971.200000pt;}
.ya3_c00001{bottom:971.466667pt;}
.yebc_c00001{bottom:971.866667pt;}
.y891_c00001{bottom:972.133333pt;}
.y6df_c00001{bottom:972.400000pt;}
.y769_c00001{bottom:972.533333pt;}
.y38c_c00001{bottom:972.666667pt;}
.y553_c00001{bottom:972.800000pt;}
.y993_c00001{bottom:973.066667pt;}
.yc9e_c00001{bottom:973.200000pt;}
.y100b_c00001{bottom:973.466667pt;}
.y52d_c00001{bottom:973.733333pt;}
.ye39_c00001{bottom:974.133333pt;}
.yaed_c00001{bottom:974.400000pt;}
.y38_c00001{bottom:974.666667pt;}
.y118_c00001{bottom:974.933333pt;}
.y1065_c00001{bottom:975.066667pt;}
.ydd_c00001{bottom:975.333333pt;}
.yefe_c00001{bottom:975.733333pt;}
.y926_c00001{bottom:976.000000pt;}
.ya70_c00001{bottom:976.266667pt;}
.y1e6_c00001{bottom:976.533333pt;}
.y241_c00001{bottom:977.066667pt;}
.y14d_c00001{bottom:977.333333pt;}
.y7a9_c00001{bottom:977.600000pt;}
.y9fc_c00001{bottom:977.866667pt;}
.y872_c00001{bottom:978.000000pt;}
.ydaa_c00001{bottom:978.133333pt;}
.y6fa_c00001{bottom:978.266667pt;}
.y815_c00001{bottom:978.533333pt;}
.y4b7_c00001{bottom:978.800000pt;}
.y851_c00001{bottom:979.200000pt;}
.yb2a_c00001{bottom:979.466667pt;}
.ybba_c00001{bottom:979.733333pt;}
.yc85_c00001{bottom:980.133333pt;}
.yada_c00001{bottom:980.266667pt;}
.y3_c00001{bottom:980.400000pt;}
.y26e_c00001{bottom:980.533333pt;}
.y323_c00001{bottom:980.800000pt;}
.yc71_c00001{bottom:981.066667pt;}
.y356_c00001{bottom:981.333333pt;}
.y721_c00001{bottom:981.466667pt;}
.y5f4_c00001{bottom:981.733333pt;}
.y438_c00001{bottom:982.000000pt;}
.yf0a_c00001{bottom:982.133333pt;}
.y5cc_c00001{bottom:982.400000pt;}
.ybf3_c00001{bottom:982.666667pt;}
.y469_c00001{bottom:982.933333pt;}
.yc9d_c00001{bottom:983.066667pt;}
.y1050_c00001{bottom:983.333333pt;}
.y5a7_c00001{bottom:983.466667pt;}
.yde3_c00001{bottom:983.600000pt;}
.y1b0_c00001{bottom:983.733333pt;}
.yc13_c00001{bottom:984.133333pt;}
.yb8a_c00001{bottom:984.266667pt;}
.ycfa_c00001{bottom:984.533333pt;}
.y2cf_c00001{bottom:984.666667pt;}
.y768_c00001{bottom:984.933333pt;}
.y741_c00001{bottom:985.200000pt;}
.ya9b_c00001{bottom:985.333333pt;}
.ycdc_c00001{bottom:985.600000pt;}
.yf51_c00001{bottom:985.866667pt;}
.yf95_c00001{bottom:986.133333pt;}
.yb7d_c00001{bottom:986.266667pt;}
.y3ba_c00001{bottom:986.533333pt;}
.y100a_c00001{bottom:986.933333pt;}
.y37_c00001{bottom:987.200000pt;}
.y70_c00001{bottom:987.466667pt;}
.y641_c00001{bottom:987.733333pt;}
.y97a_c00001{bottom:987.866667pt;}
.y6b8_c00001{bottom:988.133333pt;}
.y38b_c00001{bottom:988.400000pt;}
.y8b1_c00001{bottom:988.533333pt;}
.y17d_c00001{bottom:988.800000pt;}
.y992_c00001{bottom:989.066667pt;}
.y52c_c00001{bottom:989.466667pt;}
.yfbd_c00001{bottom:989.733333pt;}
.ye56_c00001{bottom:990.133333pt;}
.yf45_c00001{bottom:990.400000pt;}
.y117_c00001{bottom:990.666667pt;}
.y7ea_c00001{bottom:990.800000pt;}
.ydc_c00001{bottom:991.066667pt;}
.y909_c00001{bottom:991.333333pt;}
.y925_c00001{bottom:991.733333pt;}
.ya99_c00001{bottom:992.000000pt;}
.y1e5_c00001{bottom:992.266667pt;}
.ya6e_c00001{bottom:992.400000pt;}
.y837_c00001{bottom:992.933333pt;}
.y17c_c00001{bottom:993.333333pt;}
.y8f1_c00001{bottom:993.600000pt;}
.yaec_c00001{bottom:993.866667pt;}
.y9cd_c00001{bottom:994.266667pt;}
.y4b6_c00001{bottom:994.533333pt;}
.y240_c00001{bottom:994.933333pt;}
.y6f9_c00001{bottom:995.200000pt;}
.ybb9_c00001{bottom:995.466667pt;}
.y871_c00001{bottom:995.866667pt;}
.y2_c00001{bottom:996.133333pt;}
.y1af_c00001{bottom:996.533333pt;}
.y5cb_c00001{bottom:996.800000pt;}
.y355_c00001{bottom:997.066667pt;}
.y693_c00001{bottom:997.466667pt;}
.y437_c00001{bottom:997.733333pt;}
.y720_c00001{bottom:998.133333pt;}
.ybe1_c00001{bottom:998.400000pt;}
.y468_c00001{bottom:998.666667pt;}
.y57c_c00001{bottom:999.066667pt;}
.yb46_c00001{bottom:999.333333pt;}
.y5a6_c00001{bottom:999.733333pt;}
.ycdb_c00001{bottom:1000.000000pt;}
.y2ce_c00001{bottom:1000.266667pt;}
.y2f7_c00001{bottom:1000.666667pt;}
.y740_c00001{bottom:1000.933333pt;}
.yc12_c00001{bottom:1001.066667pt;}
.y36_c00001{bottom:1001.333333pt;}
.yc30_c00001{bottom:1001.600000pt;}
.yf94_c00001{bottom:1001.866667pt;}
.y3b9_c00001{bottom:1002.933333pt;}
.ye4e_c00001{bottom:1003.200000pt;}
.y6f_c00001{bottom:1003.466667pt;}
.y6de_c00001{bottom:1003.866667pt;}
.y38a_c00001{bottom:1004.133333pt;}
.y6b7_c00001{bottom:1004.800000pt;}
.yf1c_c00001{bottom:1005.066667pt;}
.ya2_c00001{bottom:1005.466667pt;}
.y1033_c00001{bottom:1006.000000pt;}
.yd3c_c00001{bottom:1006.133333pt;}
.yf1d_c00001{bottom:1006.933333pt;}
.yc9c_c00001{bottom:1007.066667pt;}
.y40c_c00001{bottom:1007.733333pt;}
.yed9_c00001{bottom:1008.000000pt;}
.yc9b_c00001{bottom:1008.666667pt;}
.y1009_c00001{bottom:1008.933333pt;}
.yeda_c00001{bottom:1009.333333pt;}
.ycda_c00001{bottom:1009.866667pt;}
.ydb_c00001{bottom:1010.933333pt;}
.y890_c00001{bottom:1011.200000pt;}
.yebb_c00001{bottom:1011.466667pt;}
.yea0_c00001{bottom:1011.600000pt;}
.ye9f_c00001{bottom:1011.866667pt;}
.yd6d_c00001{bottom:1012.133333pt;}
.yf44_c00001{bottom:1012.266667pt;}
.y88f_c00001{bottom:1012.533333pt;}
.ya6d_c00001{bottom:1012.800000pt;}
.y52b_c00001{bottom:1013.066667pt;}
.yfbc_c00001{bottom:1013.200000pt;}
.y789_c00001{bottom:1013.733333pt;}
.yba7_c00001{bottom:1014.000000pt;}
.yf43_c00001{bottom:1014.133333pt;}
.yd94_c00001{bottom:1014.400000pt;}
.y1ae_c00001{bottom:1014.800000pt;}
.y6f8_c00001{bottom:1015.066667pt;}
.y908_c00001{bottom:1015.333333pt;}
.ycbc_c00001{bottom:1015.600000pt;}
.yda_c00001{bottom:1015.733333pt;}
.y14b_c00001{bottom:1016.000000pt;}
.y9e2_c00001{bottom:1016.266667pt;}
.y14c_c00001{bottom:1016.666667pt;}
.y5ca_c00001{bottom:1016.933333pt;}
.y1ad_c00001{bottom:1017.333333pt;}
.y3de_c00001{bottom:1017.600000pt;}
.y215_c00001{bottom:1017.866667pt;}
.y94a_c00001{bottom:1018.266667pt;}
.y26d_c00001{bottom:1018.533333pt;}
.y84f_c00001{bottom:1018.933333pt;}
.ybf2_c00001{bottom:1019.200000pt;}
.yba6_c00001{bottom:1019.466667pt;}
.ydbf_c00001{bottom:1019.866667pt;}
.y26c_c00001{bottom:1020.133333pt;}
.y321_c00001{bottom:1020.533333pt;}
.y322_c00001{bottom:1020.800000pt;}
.y5c9_c00001{bottom:1021.066667pt;}
.y7c9_c00001{bottom:1021.200000pt;}
.ya9a_c00001{bottom:1021.333333pt;}
.y66d_c00001{bottom:1021.466667pt;}
.y1_c00001{bottom:1021.733333pt;}
.y7c8_c00001{bottom:1022.133333pt;}
.y615_c00001{bottom:1022.400000pt;}
.yad9_c00001{bottom:1022.666667pt;}
.y2cc_c00001{bottom:1023.066667pt;}
.yf6d_c00001{bottom:1023.333333pt;}
.ycf9_c00001{bottom:1023.733333pt;}
.y9af_c00001{bottom:1024.000000pt;}
.ya3f_c00001{bottom:1024.266667pt;}
.yc11_c00001{bottom:1024.533333pt;}
.y2cd_c00001{bottom:1024.666667pt;}
.yb7c_c00001{bottom:1024.933333pt;}
.y6d_c00001{bottom:1025.333333pt;}
.yfae_c00001{bottom:1025.600000pt;}
.y6b5_c00001{bottom:1025.866667pt;}
.ye4b_c00001{bottom:1026.266667pt;}
.y389_c00001{bottom:1026.533333pt;}
.y388_c00001{bottom:1027.466667pt;}
.y6e_c00001{bottom:1027.600000pt;}
.y6b6_c00001{bottom:1027.733333pt;}
.ye0d_c00001{bottom:1027.866667pt;}
.ye4c_c00001{bottom:1029.733333pt;}
.y836_c00001{bottom:1031.333333pt;}
.ya6c_c00001{bottom:1032.000000pt;}
.y850_c00001{bottom:1033.333333pt;}
.y106e_c00001{bottom:1038.133333pt;}
.ya16_c00001{bottom:1039.733333pt;}
.y1e4_c00001{bottom:1121.333333pt;}
.y116_c00001{bottom:1126.400000pt;}
.h20_c00001{height:16.000000pt;}
.hf_c00001{height:21.333333pt;}
.he_c00001{height:26.666667pt;}
.h6_c00001{height:32.000000pt;}
.h11_c00001{height:37.333333pt;}
.h10_c00001{height:42.666667pt;}
.h5_c00001{height:48.000000pt;}
.h3_c00001{height:53.333333pt;}
.h4_c00001{height:58.666667pt;}
.h7_c00001{height:64.000000pt;}
.h5a_c00001{height:67.200000pt;}
.hc_c00001{height:69.333333pt;}
.h8_c00001{height:74.666667pt;}
.hd_c00001{height:80.000000pt;}
.h2_c00001{height:85.333333pt;}
.hb_c00001{height:90.666667pt;}
.h1c_c00001{height:96.000000pt;}
.h25_c00001{height:101.333333pt;}
.h35_c00001{height:106.666667pt;}
.h3a_c00001{height:112.000000pt;}
.h5b_c00001{height:122.666667pt;}
.h4e_c00001{height:128.000000pt;}
.h1b_c00001{height:133.333333pt;}
.h4f_c00001{height:160.000000pt;}
.h49_c00001{height:176.000000pt;}
.h59_c00001{height:208.000000pt;}
.h17_c00001{height:320.000000pt;}
.h12_c00001{height:330.666667pt;}
.h19_c00001{height:352.000000pt;}
.h18_c00001{height:458.666667pt;}
.h1a_c00001{height:618.666667pt;}
.h60_c00001{height:1088.000000pt;}
.h5d_c00001{height:1094.000000pt;}
.h5c_c00001{height:1094.079997pt;}
.h5f_c00001{height:1100.000000pt;}
.h5e_c00001{height:1100.159993pt;}
.h54_c00001{height:1104.000000pt;}
.h56_c00001{height:1106.000000pt;}
.h55_c00001{height:1106.239991pt;}
.h62_c00001{height:1107.333333pt;}
.h61_c00001{height:1107.520020pt;}
.h58_c00001{height:1108.666667pt;}
.h57_c00001{height:1108.800049pt;}
.h53_c00001{height:1115.333333pt;}
.h52_c00001{height:1115.520020pt;}
.h28_c00001{height:1123.199951pt;}
.h29_c00001{height:1123.333333pt;}
.h47_c00001{height:1123.840007pt;}
.h24_c00001{height:1124.000000pt;}
.h23_c00001{height:1124.159993pt;}
.h4c_c00001{height:1124.479980pt;}
.h4d_c00001{height:1124.666667pt;}
.h31_c00001{height:1125.120036pt;}
.h32_c00001{height:1125.333333pt;}
.h45_c00001{height:1125.760009pt;}
.h46_c00001{height:1126.000000pt;}
.h48_c00001{height:1126.079916pt;}
.h39_c00001{height:1126.400065pt;}
.h34_c00001{height:1126.666667pt;}
.h33_c00001{height:1126.719971pt;}
.h1f_c00001{height:1127.039957pt;}
.h16_c00001{height:1127.333333pt;}
.h15_c00001{height:1127.359944pt;}
.h13_c00001{height:1127.680013pt;}
.h14_c00001{height:1128.000000pt;}
.h42_c00001{height:1128.319987pt;}
.h3c_c00001{height:1128.666667pt;}
.h3b_c00001{height:1128.960043pt;}
.h3f_c00001{height:1129.280029pt;}
.h1_c00001{height:1129.333333pt;}
.h0_c00001{height:1129.599935pt;}
.h2b_c00001{height:1129.920084pt;}
.h2c_c00001{height:1130.000000pt;}
.h2d_c00001{height:1130.239991pt;}
.h43_c00001{height:1130.559977pt;}
.h44_c00001{height:1130.666667pt;}
.h36_c00001{height:1131.200032pt;}
.h37_c00001{height:1131.333333pt;}
.h38_c00001{height:1131.520020pt;}
.h40_c00001{height:1131.840007pt;}
.h27_c00001{height:1132.000000pt;}
.h26_c00001{height:1132.159993pt;}
.h21_c00001{height:1132.480061pt;}
.h22_c00001{height:1132.666667pt;}
.h2e_c00001{height:1132.800049pt;}
.h30_c00001{height:1133.333333pt;}
.h2f_c00001{height:1133.439941pt;}
.h41_c00001{height:1133.760009pt;}
.h1e_c00001{height:1134.000000pt;}
.h1d_c00001{height:1134.079997pt;}
.h4a_c00001{height:1134.399984pt;}
.h4b_c00001{height:1134.666667pt;}
.h2a_c00001{height:1135.040039pt;}
.ha_c00001{height:1135.333333pt;}
.h9_c00001{height:1135.360027pt;}
.h50_c00001{height:1136.639973pt;}
.h51_c00001{height:1136.666667pt;}
.h3e_c00001{height:1146.666667pt;}
.h3d_c00001{height:1146.880045pt;}
.w2_c00001{width:845.760009pt;}
.w3_c00001{width:846.000000pt;}
.w0_c00001{width:851.840007pt;}
.w1_c00001{width:852.000000pt;}
.x0_c00001{left:0.000000pt;}
.x26c_c00001{left:5.733333pt;}
.x273_c00001{left:42.266667pt;}
.x26e_c00001{left:51.200000pt;}
.x252_c00001{left:53.466667pt;}
.x253_c00001{left:55.066667pt;}
.x251_c00001{left:56.000000pt;}
.x249_c00001{left:56.933333pt;}
.x263_c00001{left:57.866667pt;}
.x265_c00001{left:58.933333pt;}
.x264_c00001{left:60.800000pt;}
.x26a_c00001{left:62.400000pt;}
.x262_c00001{left:63.333333pt;}
.x25d_c00001{left:64.266667pt;}
.x25c_c00001{left:65.600000pt;}
.x27_c00001{left:67.200000pt;}
.x23_c00001{left:68.533333pt;}
.x42_c00001{left:69.466667pt;}
.x1eb_c00001{left:70.533333pt;}
.x5a_c00001{left:71.733333pt;}
.x1e1_c00001{left:72.666667pt;}
.x1d4_c00001{left:73.600000pt;}
.x95_c00001{left:75.200000pt;}
.xa3_c00001{left:76.533333pt;}
.x3a_c00001{left:77.733333pt;}
.x1ee_c00001{left:79.333333pt;}
.x223_c00001{left:80.266667pt;}
.x220_c00001{left:81.333333pt;}
.x1d7_c00001{left:82.266667pt;}
.x21e_c00001{left:83.200000pt;}
.x4_c00001{left:84.533333pt;}
.x32_c00001{left:85.466667pt;}
.x47_c00001{left:86.400000pt;}
.x248_c00001{left:87.333333pt;}
.x65_c00001{left:88.266667pt;}
.x78_c00001{left:89.466667pt;}
.x83_c00001{left:90.533333pt;}
.x87_c00001{left:91.466667pt;}
.x98_c00001{left:92.533333pt;}
.x24c_c00001{left:93.600000pt;}
.x24a_c00001{left:94.533333pt;}
.x1e6_c00001{left:96.266667pt;}
.x1e7_c00001{left:97.600000pt;}
.x260_c00001{left:98.533333pt;}
.x1f1_c00001{left:99.466667pt;}
.x43_c00001{left:100.800000pt;}
.x235_c00001{left:101.733333pt;}
.x2c_c00001{left:102.666667pt;}
.x5d_c00001{left:104.266667pt;}
.x4b_c00001{left:105.200000pt;}
.x1f4_c00001{left:106.133333pt;}
.x1f3_c00001{left:107.066667pt;}
.x53_c00001{left:108.133333pt;}
.x1e0_c00001{left:109.200000pt;}
.x5b_c00001{left:110.133333pt;}
.x33_c00001{left:111.733333pt;}
.x224_c00001{left:112.666667pt;}
.x7c_c00001{left:113.600000pt;}
.x24b_c00001{left:114.533333pt;}
.x3b_c00001{left:115.466667pt;}
.x28_c00001{left:116.800000pt;}
.x243_c00001{left:117.733333pt;}
.x19_c00001{left:118.666667pt;}
.x5_c00001{left:120.400000pt;}
.x254_c00001{left:121.333333pt;}
.x56_c00001{left:122.400000pt;}
.x21_c00001{left:123.466667pt;}
.x88_c00001{left:125.066667pt;}
.x1e3_c00001{left:126.666667pt;}
.x48_c00001{left:128.266667pt;}
.xa4_c00001{left:129.333333pt;}
.x9e_c00001{left:130.533333pt;}
.x57_c00001{left:132.000000pt;}
.x81_c00001{left:133.466667pt;}
.x4c_c00001{left:134.933333pt;}
.x1d6_c00001{left:136.133333pt;}
.x3c_c00001{left:137.866667pt;}
.x6d_c00001{left:139.066667pt;}
.x221_c00001{left:140.533333pt;}
.x24_c00001{left:141.733333pt;}
.x2d_c00001{left:142.666667pt;}
.x1e2_c00001{left:143.733333pt;}
.x1a_c00001{left:144.933333pt;}
.x266_c00001{left:145.866667pt;}
.x89_c00001{left:146.800000pt;}
.x3f_c00001{left:148.533333pt;}
.x234_c00001{left:149.466667pt;}
.x79_c00001{left:150.533333pt;}
.x13_c00001{left:152.133333pt;}
.x1ef_c00001{left:153.200000pt;}
.x21c_c00001{left:154.533333pt;}
.x77_c00001{left:155.600000pt;}
.x222_c00001{left:156.533333pt;}
.x34_c00001{left:157.866667pt;}
.x21d_c00001{left:159.066667pt;}
.x5e_c00001{left:160.000000pt;}
.x1f2_c00001{left:161.066667pt;}
.x66_c00001{left:162.133333pt;}
.xc_c00001{left:163.600000pt;}
.x1de_c00001{left:164.800000pt;}
.x208_c00001{left:165.733333pt;}
.x58_c00001{left:166.933333pt;}
.x245_c00001{left:167.866667pt;}
.xa9_c00001{left:168.800000pt;}
.x1e8_c00001{left:169.866667pt;}
.x73_c00001{left:171.333333pt;}
.x35_c00001{left:172.933333pt;}
.xaa_c00001{left:174.133333pt;}
.x4d_c00001{left:175.866667pt;}
.x6_c00001{left:177.333333pt;}
.x44_c00001{left:178.933333pt;}
.x205_c00001{left:179.866667pt;}
.x99_c00001{left:180.800000pt;}
.x59_c00001{left:182.266667pt;}
.xa1_c00001{left:183.733333pt;}
.xd_c00001{left:184.666667pt;}
.xad_c00001{left:185.600000pt;}
.x1df_c00001{left:186.533333pt;}
.x5f_c00001{left:187.866667pt;}
.x1db_c00001{left:189.333333pt;}
.x7_c00001{left:191.066667pt;}
.x16f_c00001{left:192.133333pt;}
.x1b_c00001{left:193.866667pt;}
.x67_c00001{left:194.800000pt;}
.x9b_c00001{left:196.400000pt;}
.x7a_c00001{left:198.133333pt;}
.x6e_c00001{left:199.600000pt;}
.x54_c00001{left:201.200000pt;}
.x40_c00001{left:202.666667pt;}
.x25_c00001{left:203.866667pt;}
.x2e_c00001{left:204.800000pt;}
.x7d_c00001{left:205.866667pt;}
.x8_c00001{left:207.066667pt;}
.x8f_c00001{left:208.266667pt;}
.x36_c00001{left:209.333333pt;}
.x14_c00001{left:210.400000pt;}
.x4e_c00001{left:211.733333pt;}
.x29_c00001{left:212.800000pt;}
.x7e_c00001{left:213.866667pt;}
.x49_c00001{left:215.600000pt;}
.x1c_c00001{left:216.533333pt;}
.x5c_c00001{left:217.866667pt;}
.x161_c00001{left:219.333333pt;}
.x24e_c00001{left:220.266667pt;}
.x92_c00001{left:221.200000pt;}
.x9f_c00001{left:222.133333pt;}
.x246_c00001{left:223.066667pt;}
.xe_c00001{left:224.000000pt;}
.x60_c00001{left:225.333333pt;}
.x41_c00001{left:226.933333pt;}
.x1d5_c00001{left:227.866667pt;}
.x22a_c00001{left:228.800000pt;}
.x15_c00001{left:229.866667pt;}
.x22_c00001{left:231.333333pt;}
.x96_c00001{left:232.533333pt;}
.x182_c00001{left:233.866667pt;}
.x3d_c00001{left:234.800000pt;}
.x2a_c00001{left:235.866667pt;}
.xa6_c00001{left:236.800000pt;}
.x17b_c00001{left:238.133333pt;}
.x82_c00001{left:239.333333pt;}
.x9c_c00001{left:240.933333pt;}
.x8a_c00001{left:241.866667pt;}
.x61_c00001{left:242.933333pt;}
.xf_c00001{left:244.133333pt;}
.x1d_c00001{left:245.333333pt;}
.x21f_c00001{left:246.400000pt;}
.x6f_c00001{left:247.600000pt;}
.x1da_c00001{left:248.533333pt;}
.x166_c00001{left:250.000000pt;}
.x37_c00001{left:251.200000pt;}
.x90_c00001{left:252.133333pt;}
.x2f_c00001{left:253.466667pt;}
.xa0_c00001{left:254.400000pt;}
.x84_c00001{left:255.466667pt;}
.x7f_c00001{left:256.400000pt;}
.x68_c00001{left:257.600000pt;}
.x45_c00001{left:258.666667pt;}
.x93_c00001{left:260.266667pt;}
.x16_c00001{left:261.200000pt;}
.x8b_c00001{left:262.666667pt;}
.x9_c00001{left:263.733333pt;}
.x38_c00001{left:264.933333pt;}
.x74_c00001{left:266.000000pt;}
.x97_c00001{left:267.600000pt;}
.x70_c00001{left:269.333333pt;}
.x1e4_c00001{left:270.666667pt;}
.x91_c00001{left:272.000000pt;}
.x17d_c00001{left:273.333333pt;}
.x30_c00001{left:274.266667pt;}
.x1e_c00001{left:275.733333pt;}
.x10_c00001{left:276.800000pt;}
.x85_c00001{left:278.000000pt;}
.x4f_c00001{left:279.333333pt;}
.x69_c00001{left:280.666667pt;}
.x209_c00001{left:281.600000pt;}
.x1_c00001{left:282.933333pt;}
.x180_c00001{left:284.000000pt;}
.xa5_c00001{left:285.600000pt;}
.x71_c00001{left:286.933333pt;}
.x50_c00001{left:288.266667pt;}
.x17_c00001{left:289.333333pt;}
.x172_c00001{left:290.666667pt;}
.x31_c00001{left:292.133333pt;}
.x163_c00001{left:293.466667pt;}
.x7b_c00001{left:295.066667pt;}
.x233_c00001{left:296.000000pt;}
.xa2_c00001{left:296.933333pt;}
.x9a_c00001{left:298.133333pt;}
.x62_c00001{left:299.200000pt;}
.x15e_c00001{left:300.266667pt;}
.x23a_c00001{left:301.200000pt;}
.x11_c00001{left:302.133333pt;}
.x8c_c00001{left:303.200000pt;}
.x8e_c00001{left:304.533333pt;}
.x51_c00001{left:305.600000pt;}
.x178_c00001{left:307.200000pt;}
.x1e5_c00001{left:308.133333pt;}
.x16d_c00001{left:309.466667pt;}
.x1f0_c00001{left:310.533333pt;}
.xa_c00001{left:311.466667pt;}
.x8d_c00001{left:313.066667pt;}
.xac_c00001{left:314.000000pt;}
.x26_c00001{left:314.933333pt;}
.x15f_c00001{left:316.000000pt;}
.x1f_c00001{left:317.066667pt;}
.x2b_c00001{left:318.400000pt;}
.x6a_c00001{left:319.333333pt;}
.x63_c00001{left:320.933333pt;}
.x1d9_c00001{left:322.000000pt;}
.x52_c00001{left:323.200000pt;}
.x176_c00001{left:324.133333pt;}
.x168_c00001{left:325.466667pt;}
.x46_c00001{left:326.400000pt;}
.x75_c00001{left:327.733333pt;}
.x1ec_c00001{left:328.933333pt;}
.x12_c00001{left:330.666667pt;}
.x80_c00001{left:332.266667pt;}
.x18_c00001{left:333.466667pt;}
.x25e_c00001{left:334.400000pt;}
.x6b_c00001{left:335.333333pt;}
.x72_c00001{left:337.066667pt;}
.xa7_c00001{left:338.000000pt;}
.x39_c00001{left:339.466667pt;}
.x9d_c00001{left:340.800000pt;}
.x1ea_c00001{left:342.266667pt;}
.x4a_c00001{left:343.600000pt;}
.x17c_c00001{left:344.800000pt;}
.x20_c00001{left:346.533333pt;}
.x55_c00001{left:348.000000pt;}
.x170_c00001{left:348.933333pt;}
.x169_c00001{left:349.866667pt;}
.x86_c00001{left:351.333333pt;}
.x1dd_c00001{left:352.400000pt;}
.x25f_c00001{left:353.333333pt;}
.x3e_c00001{left:354.266667pt;}
.x6c_c00001{left:355.466667pt;}
.x94_c00001{left:356.533333pt;}
.xb_c00001{left:357.600000pt;}
.x1e9_c00001{left:358.666667pt;}
.x16b_c00001{left:359.733333pt;}
.x1ed_c00001{left:360.933333pt;}
.x76_c00001{left:362.000000pt;}
.x1d8_c00001{left:363.333333pt;}
.xa8_c00001{left:364.266667pt;}
.xab_c00001{left:365.466667pt;}
.x239_c00001{left:366.533333pt;}
.xae_c00001{left:367.600000pt;}
.x1dc_c00001{left:369.200000pt;}
.x174_c00001{left:370.266667pt;}
.x167_c00001{left:371.200000pt;}
.x202_c00001{left:372.133333pt;}
.x179_c00001{left:373.200000pt;}
.x15d_c00001{left:374.133333pt;}
.x204_c00001{left:375.466667pt;}
.x64_c00001{left:376.933333pt;}
.x164_c00001{left:378.666667pt;}
.x15c_c00001{left:379.866667pt;}
.x160_c00001{left:380.933333pt;}
.x207_c00001{left:381.866667pt;}
.x171_c00001{left:382.800000pt;}
.x1f5_c00001{left:383.733333pt;}
.x16a_c00001{left:384.800000pt;}
.xe1_c00001{left:385.866667pt;}
.x1fd_c00001{left:387.200000pt;}
.x173_c00001{left:388.533333pt;}
.x238_c00001{left:389.600000pt;}
.x17f_c00001{left:390.666667pt;}
.x203_c00001{left:391.866667pt;}
.x181_c00001{left:393.066667pt;}
.x206_c00001{left:394.000000pt;}
.x17a_c00001{left:394.933333pt;}
.x177_c00001{left:396.533333pt;}
.x17e_c00001{left:397.600000pt;}
.xb5_c00001{left:398.800000pt;}
.x162_c00001{left:400.266667pt;}
.x1ff_c00001{left:401.200000pt;}
.xe7_c00001{left:402.266667pt;}
.x101_c00001{left:403.200000pt;}
.x10e_c00001{left:404.400000pt;}
.x127_c00001{left:405.600000pt;}
.x132_c00001{left:407.066667pt;}
.x13d_c00001{left:408.133333pt;}
.x14b_c00001{left:409.066667pt;}
.x14e_c00001{left:410.133333pt;}
.xd9_c00001{left:411.200000pt;}
.xaf_c00001{left:412.533333pt;}
.x10f_c00001{left:414.266667pt;}
.x226_c00001{left:415.866667pt;}
.x16c_c00001{left:417.066667pt;}
.x247_c00001{left:418.000000pt;}
.x165_c00001{left:418.933333pt;}
.x112_c00001{left:420.533333pt;}
.xd7_c00001{left:421.733333pt;}
.x12c_c00001{left:422.800000pt;}
.x148_c00001{left:424.266667pt;}
.x1fe_c00001{left:425.600000pt;}
.x16e_c00001{left:426.800000pt;}
.x1f6_c00001{left:427.866667pt;}
.xfd_c00001{left:429.066667pt;}
.xda_c00001{left:430.400000pt;}
.xcb_c00001{left:431.333333pt;}
.x1f9_c00001{left:432.533333pt;}
.x125_c00001{left:434.000000pt;}
.xb6_c00001{left:435.333333pt;}
.x22b_c00001{left:436.266667pt;}
.xec_c00001{left:437.333333pt;}
.xf3_c00001{left:438.933333pt;}
.x12d_c00001{left:440.133333pt;}
.x110_c00001{left:441.466667pt;}
.x116_c00001{left:443.066667pt;}
.x22c_c00001{left:444.266667pt;}
.x175_c00001{left:445.200000pt;}
.x13a_c00001{left:446.133333pt;}
.x201_c00001{left:447.066667pt;}
.xdb_c00001{left:448.000000pt;}
.xfa_c00001{left:449.200000pt;}
.x11b_c00001{left:450.800000pt;}
.x142_c00001{left:451.866667pt;}
.x228_c00001{left:453.066667pt;}
.xed_c00001{left:454.000000pt;}
.x14f_c00001{left:455.600000pt;}
.x133_c00001{left:457.333333pt;}
.x255_c00001{left:458.266667pt;}
.x113_c00001{left:459.200000pt;}
.xe2_c00001{left:460.800000pt;}
.x227_c00001{left:462.133333pt;}
.x128_c00001{left:463.200000pt;}
.x237_c00001{left:464.400000pt;}
.x102_c00001{left:465.333333pt;}
.x12a_c00001{left:466.400000pt;}
.xd2_c00001{left:467.466667pt;}
.x11c_c00001{left:468.400000pt;}
.xb0_c00001{left:470.133333pt;}
.x11f_c00001{left:471.333333pt;}
.xcc_c00001{left:472.666667pt;}
.xfe_c00001{left:473.866667pt;}
.x13e_c00001{left:474.933333pt;}
.x1d2_c00001{left:475.866667pt;}
.x1c4_c00001{left:476.800000pt;}
.x149_c00001{left:478.000000pt;}
.x14c_c00001{left:479.333333pt;}
.x20b_c00001{left:480.266667pt;}
.xf4_c00001{left:481.200000pt;}
.xb7_c00001{left:482.400000pt;}
.xdc_c00001{left:483.466667pt;}
.xd3_c00001{left:484.400000pt;}
.x236_c00001{left:486.000000pt;}
.x134_c00001{left:487.066667pt;}
.x2_c00001{left:488.666667pt;}
.xee_c00001{left:490.133333pt;}
.xcd_c00001{left:491.200000pt;}
.x1d1_c00001{left:492.666667pt;}
.xe3_c00001{left:494.400000pt;}
.x104_c00001{left:495.466667pt;}
.xd4_c00001{left:496.533333pt;}
.x1f7_c00001{left:498.266667pt;}
.x13f_c00001{left:499.866667pt;}
.xd8_c00001{left:501.200000pt;}
.xfb_c00001{left:502.666667pt;}
.x150_c00001{left:504.000000pt;}
.xdd_c00001{left:504.933333pt;}
.x12f_c00001{left:505.866667pt;}
.x106_c00001{left:507.600000pt;}
.x1ae_c00001{left:508.800000pt;}
.x109_c00001{left:509.866667pt;}
.x12e_c00001{left:511.200000pt;}
.xe8_c00001{left:512.666667pt;}
.xce_c00001{left:514.266667pt;}
.xf5_c00001{left:515.466667pt;}
.x1bb_c00001{left:516.533333pt;}
.x10a_c00001{left:518.133333pt;}
.x1ba_c00001{left:519.066667pt;}
.x15b_c00001{left:520.133333pt;}
.x1ca_c00001{left:521.466667pt;}
.x13b_c00001{left:522.666667pt;}
.x130_c00001{left:524.133333pt;}
.x11d_c00001{left:525.333333pt;}
.xf6_c00001{left:526.666667pt;}
.xe4_c00001{left:528.266667pt;}
.x1a1_c00001{left:529.333333pt;}
.x183_c00001{left:530.533333pt;}
.x159_c00001{left:532.133333pt;}
.x199_c00001{left:533.200000pt;}
.xb8_c00001{left:534.266667pt;}
.x111_c00001{left:535.200000pt;}
.x114_c00001{left:536.266667pt;}
.xde_c00001{left:537.200000pt;}
.x153_c00001{left:538.800000pt;}
.xd5_c00001{left:540.000000pt;}
.x1c1_c00001{left:541.066667pt;}
.x1ac_c00001{left:542.133333pt;}
.x138_c00001{left:543.066667pt;}
.x135_c00001{left:544.400000pt;}
.x107_c00001{left:545.333333pt;}
.xb9_c00001{left:546.800000pt;}
.x1fc_c00001{left:547.733333pt;}
.xfc_c00001{left:549.333333pt;}
.xe9_c00001{left:550.400000pt;}
.xcf_c00001{left:551.733333pt;}
.xba_c00001{left:553.200000pt;}
.xdf_c00001{left:554.800000pt;}
.x145_c00001{left:556.133333pt;}
.xef_c00001{left:557.333333pt;}
.x1c6_c00001{left:558.266667pt;}
.xc6_c00001{left:559.466667pt;}
.xbb_c00001{left:560.533333pt;}
.x105_c00001{left:561.600000pt;}
.xb1_c00001{left:562.533333pt;}
.x120_c00001{left:563.733333pt;}
.xc7_c00001{left:565.200000pt;}
.xbc_c00001{left:566.933333pt;}
.x14d_c00001{left:568.266667pt;}
.xea_c00001{left:569.866667pt;}
.x154_c00001{left:570.800000pt;}
.xc8_c00001{left:571.866667pt;}
.xbd_c00001{left:573.066667pt;}
.x23c_c00001{left:574.000000pt;}
.x158_c00001{left:574.933333pt;}
.x1b5_c00001{left:575.866667pt;}
.x14a_c00001{left:576.800000pt;}
.xd6_c00001{left:578.400000pt;}
.xbe_c00001{left:579.733333pt;}
.x143_c00001{left:581.066667pt;}
.x1c0_c00001{left:582.000000pt;}
.x140_c00001{left:583.066667pt;}
.x11e_c00001{left:584.533333pt;}
.x24d_c00001{left:585.466667pt;}
.xbf_c00001{left:586.400000pt;}
.x131_c00001{left:587.466667pt;}
.xf7_c00001{left:589.066667pt;}
.x232_c00001{left:590.133333pt;}
.x117_c00001{left:591.200000pt;}
.xc0_c00001{left:592.133333pt;}
.xff_c00001{left:593.600000pt;}
.x151_c00001{left:594.533333pt;}
.x185_c00001{left:595.866667pt;}
.x19b_c00001{left:596.800000pt;}
.x10b_c00001{left:597.866667pt;}
.xc1_c00001{left:598.800000pt;}
.xb2_c00001{left:600.000000pt;}
.xf0_c00001{left:601.200000pt;}
.x1a6_c00001{left:602.666667pt;}
.x100_c00001{left:603.866667pt;}
.xc2_c00001{left:604.933333pt;}
.x10c_c00001{left:606.533333pt;}
.x18c_c00001{left:607.733333pt;}
.x155_c00001{left:608.933333pt;}
.x103_c00001{left:610.000000pt;}
.x193_c00001{left:610.933333pt;}
.x136_c00001{left:612.666667pt;}
.x146_c00001{left:614.000000pt;}
.xb3_c00001{left:615.066667pt;}
.x139_c00001{left:616.666667pt;}
.x118_c00001{left:618.133333pt;}
.x261_c00001{left:619.066667pt;}
.x12b_c00001{left:620.000000pt;}
.xc9_c00001{left:621.466667pt;}
.xc3_c00001{left:622.800000pt;}
.x15a_c00001{left:623.733333pt;}
.x121_c00001{left:624.800000pt;}
.x115_c00001{left:625.866667pt;}
.x1d3_c00001{left:627.600000pt;}
.x141_c00001{left:628.533333pt;}
.x1fa_c00001{left:629.866667pt;}
.x19a_c00001{left:630.800000pt;}
.x1b4_c00001{left:631.733333pt;}
.xf8_c00001{left:633.200000pt;}
.x20a_c00001{left:634.266667pt;}
.x108_c00001{left:635.333333pt;}
.xe5_c00001{left:636.533333pt;}
.x119_c00001{left:637.600000pt;}
.x126_c00001{left:638.800000pt;}
.xca_c00001{left:640.000000pt;}
.x1fb_c00001{left:641.066667pt;}
.xb4_c00001{left:642.266667pt;}
.xe0_c00001{left:643.733333pt;}
.x13c_c00001{left:645.200000pt;}
.xd0_c00001{left:646.933333pt;}
.xc4_c00001{left:648.133333pt;}
.x200_c00001{left:649.333333pt;}
.x129_c00001{left:650.400000pt;}
.x1f8_c00001{left:651.333333pt;}
.x123_c00001{left:652.266667pt;}
.x10d_c00001{left:653.600000pt;}
.xeb_c00001{left:655.200000pt;}
.xf1_c00001{left:656.533333pt;}
.xe6_c00001{left:658.000000pt;}
.x156_c00001{left:659.333333pt;}
.x1a2_c00001{left:660.800000pt;}
.x144_c00001{left:661.733333pt;}
.x157_c00001{left:662.666667pt;}
.x147_c00001{left:663.600000pt;}
.x19c_c00001{left:664.800000pt;}
.x225_c00001{left:666.533333pt;}
.xd1_c00001{left:667.466667pt;}
.x152_c00001{left:668.666667pt;}
.x229_c00001{left:669.600000pt;}
.xf9_c00001{left:670.933333pt;}
.x3_c00001{left:672.400000pt;}
.xc5_c00001{left:673.733333pt;}
.xf2_c00001{left:674.800000pt;}
.x23d_c00001{left:675.866667pt;}
.x19f_c00001{left:676.800000pt;}
.x124_c00001{left:677.866667pt;}
.x210_c00001{left:678.800000pt;}
.x196_c00001{left:680.533333pt;}
.x1cf_c00001{left:681.733333pt;}
.x122_c00001{left:682.666667pt;}
.x11a_c00001{left:683.733333pt;}
.x1b7_c00001{left:684.933333pt;}
.x1cc_c00001{left:686.400000pt;}
.x188_c00001{left:687.466667pt;}
.x1d0_c00001{left:688.800000pt;}
.x18d_c00001{left:690.533333pt;}
.x1bc_c00001{left:691.466667pt;}
.x1c7_c00001{left:692.400000pt;}
.x1a7_c00001{left:693.866667pt;}
.x1a8_c00001{left:694.800000pt;}
.x137_c00001{left:696.533333pt;}
.x1b3_c00001{left:697.466667pt;}
.x1af_c00001{left:699.066667pt;}
.x22d_c00001{left:700.400000pt;}
.x23b_c00001{left:701.333333pt;}
.x21b_c00001{left:702.666667pt;}
.x1c2_c00001{left:703.600000pt;}
.x184_c00001{left:704.533333pt;}
.x1cd_c00001{left:706.133333pt;}
.x1c5_c00001{left:707.600000pt;}
.x186_c00001{left:708.666667pt;}
.x240_c00001{left:709.600000pt;}
.x18e_c00001{left:711.066667pt;}
.x217_c00001{left:712.000000pt;}
.x1ad_c00001{left:713.066667pt;}
.x194_c00001{left:714.400000pt;}
.x22f_c00001{left:715.600000pt;}
.x241_c00001{left:716.666667pt;}
.x1be_c00001{left:718.000000pt;}
.x1c3_c00001{left:719.333333pt;}
.x219_c00001{left:720.400000pt;}
.x1aa_c00001{left:721.333333pt;}
.x1bd_c00001{left:722.533333pt;}
.x189_c00001{left:724.000000pt;}
.x19d_c00001{left:725.600000pt;}
.x197_c00001{left:727.200000pt;}
.x192_c00001{left:728.666667pt;}
.x187_c00001{left:730.400000pt;}
.x191_c00001{left:731.866667pt;}
.x20d_c00001{left:733.066667pt;}
.x231_c00001{left:734.133333pt;}
.x1bf_c00001{left:735.600000pt;}
.x18b_c00001{left:736.666667pt;}
.x211_c00001{left:738.000000pt;}
.x1ce_c00001{left:739.066667pt;}
.x213_c00001{left:740.000000pt;}
.x1b8_c00001{left:740.933333pt;}
.x244_c00001{left:741.866667pt;}
.x1a4_c00001{left:742.800000pt;}
.x198_c00001{left:744.400000pt;}
.x23f_c00001{left:745.866667pt;}
.x1a3_c00001{left:746.933333pt;}
.x20f_c00001{left:747.866667pt;}
.x1c8_c00001{left:748.933333pt;}
.x1b2_c00001{left:749.866667pt;}
.x18f_c00001{left:750.800000pt;}
.x230_c00001{left:751.733333pt;}
.x1b0_c00001{left:753.200000pt;}
.x1a0_c00001{left:754.933333pt;}
.x214_c00001{left:756.533333pt;}
.x1cb_c00001{left:758.133333pt;}
.x1a5_c00001{left:759.466667pt;}
.x1b9_c00001{left:760.666667pt;}
.x1b6_c00001{left:762.000000pt;}
.x1b1_c00001{left:763.066667pt;}
.x216_c00001{left:764.000000pt;}
.x1a9_c00001{left:765.466667pt;}
.x195_c00001{left:766.933333pt;}
.x19e_c00001{left:768.533333pt;}
.x20c_c00001{left:769.866667pt;}
.x1c9_c00001{left:771.333333pt;}
.x20e_c00001{left:772.266667pt;}
.x24f_c00001{left:773.466667pt;}
.x218_c00001{left:774.800000pt;}
.x1ab_c00001{left:776.000000pt;}
.x18a_c00001{left:777.466667pt;}
.x190_c00001{left:778.666667pt;}
.x212_c00001{left:780.266667pt;}
.x22e_c00001{left:781.733333pt;}
.x21a_c00001{left:782.666667pt;}
.x215_c00001{left:784.000000pt;}
.x242_c00001{left:784.933333pt;}
.x256_c00001{left:785.866667pt;}
.x267_c00001{left:786.800000pt;}
.x23e_c00001{left:788.000000pt;}
.x269_c00001{left:789.200000pt;}
.x25a_c00001{left:791.066667pt;}
.x257_c00001{left:792.533333pt;}
.x258_c00001{left:794.533333pt;}
.x250_c00001{left:795.466667pt;}
.x268_c00001{left:800.133333pt;}
.x259_c00001{left:801.866667pt;}
.x25b_c00001{left:804.533333pt;}
.x26b_c00001{left:815.333333pt;}
.x271_c00001{left:825.600000pt;}
.x272_c00001{left:831.333333pt;}
.x26f_c00001{left:834.533333pt;}
.x270_c00001{left:836.800000pt;}
.x26d_c00001{left:837.733333pt;}
}




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